mstflint-4.26.0/0000755000175000017500000000000014522641741013703 5ustar tzafrirctzafrircmstflint-4.26.0/libmfa/0000755000175000017500000000000014522641737015142 5ustar tzafrirctzafrircmstflint-4.26.0/libmfa/mfa.h0000644000175000017500000000533314522641732016055 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MFA_H_ #define _MFA_H_ #include #ifdef __cplusplus extern "C" { #endif #include "mfa_section.h" enum mfa_image_types { MFA_NO_IMAGE = 0, MFA_FW_IMAGE = 1, MFA_EXPROM_IMAGE = 2 }; typedef struct mfa_desc mfa_desc; void mfa_init(); // Must be called before any MFA function to perform one time initializations int mfa_open_buf(mfa_desc**, u_int8_t* arbuf, int size); int mfa_open_file(mfa_desc**, char* fname); int mfa_close(mfa_desc* mfa_d); ssize_t mfa_get_image(mfa_desc* mfa_d, char* board_type_id, u_int8_t type, char* selector_tag, u_int8_t** buffer); char* mfa_get_board_metadata(mfa_desc* mfa_d, char* board_type_id, char* key); void mfa_release_image(u_int8_t* buffer); const char* mfa_get_last_error(mfa_desc* mfa_d); int mfa_get_crc32(u_int8_t* arbuf, long sz, u_int32_t* ar_crc, u_int32_t* calc_crc); char* mfa_get_map_entry_metadata(map_entry_hdr* map_entry, char* key); map_entry_hdr* mfa_get_next_mentry(mfa_desc* mfa_d, map_entry_hdr* curr_me); map_image_entry* mfa_get_map_image(map_entry_hdr* me, int image_index); toc_entry* mfa_get_image_toc(mfa_desc* mfa_d, map_image_entry* img_e); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/libmfa/mfa_section.h0000644000175000017500000000732614522641732017605 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MFA_SECTION_H_ #define _MFA_SECTION_H_ #include #include "xz_io_ops.h" enum { MFA_SEC_OK = 0, MFA_SEC_ERR_GENERIC = 1, MFA_SEC_ERR_MEM_ALLOC, MFA_SEC_ERR_TAR_OPEN, MFA_SEC_ERR_DECODER_INIT, MFA_SEC_ERR_READ_BUF, MFA_SEC_ERR_FILE_NOT_FOUND, MFA_SEC_ERR_EXTRACT_FILE }; enum mfa_section_types { MFA_MAP_SECTION = 1, MFA_TOC_SECTION = 2, MFA_DATA_SECTION = 3, MFA_NUM_SECTIONS }; enum image_types { IT_FW_IMAGE = 1, IT_N_IMAGE_TYPES }; enum subimage_types { SIT_PADDING = 0, SIT_FW = 1, SIT_CLP = 0x101, SIT_PXE = 0x110, SIT_UEFI = 0x111, SIT_FCODE = 0x121 }; enum section_flags { SFLAG_XZ_COMPRESSED = 1 }; typedef struct section_hdr { u_int8_t type; u_int8_t reserved[2]; u_int8_t flags; u_int32_t size; } section_hdr; typedef struct map_entry_hdr { char board_type_id[32]; u_int8_t nimages; u_int8_t reserved; u_int16_t metadata_size; } map_entry_hdr; // This struct is followed by the metadata unless metadata_size is zero typedef struct map_image_entry { u_int32_t toc_offset; u_int16_t image_type; u_int8_t reserved; u_int8_t group_id; char select_tag[32]; } map_image_entry; typedef struct toc_entry { u_int32_t data_offset; u_int32_t data_size; u_int16_t subimage_type; u_int8_t reserved0; u_int8_t num_ver_fields; u_int16_t version[4]; u_int16_t data_offset_msb; u_int16_t metadata_size; } toc_entry; enum metadata_type { MDT_RAW = 0, MDT_KEY_VALUE_PAIR = 1 }; // MDT_KEY_VALUE_PAIR => modifier is number of pairs typedef struct metadata_hdr { u_int8_t type; u_int8_t reserved; u_int16_t modifier; } metadata_hdr; void mfasec_init(); u_int32_t mfasec_crc32(const u_int8_t* buf, size_t size, u_int32_t crc); ssize_t mfasec_get_map(u_int8_t* inbuf, size_t inbufsz, u_int8_t** outbuf); ssize_t mfasec_get_toc(u_int8_t* inbuf, size_t inbufsz, u_int8_t** outbuf); int mfasec_get_data_chunk(u_int8_t* data_sec_ptr, size_t data_sec_len, u_int64_t chunk_offset, size_t length, u_int8_t* outbuf); char* mfasec_get_sub_image_type_str(int t); #endif mstflint-4.26.0/libmfa/test.c0000644000175000017500000000401214522641732016255 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include "mfa.h" int main(int argc, char* argv[]) { mfa_desc* md; u_int8_t* buf = NULL; mfa_init(); int rc = mfa_open_file(&md, argv[1]); if (rc) { printf("Error!\n"); } ssize_t res = mfa_get_image(md, argv[2], 1, "", &buf); printf("RES=%d\n", res); if (res < 0) { printf("ERR = %s\n", mfa_get_last_error(md)); } else { printf("DATA: %s\n", buf); } if (res > 0) { free(buf); } mfa_close(md); return 0; } mstflint-4.26.0/libmfa/xz_io_ops_llzma.c0000644000175000017500000002017114522641732020512 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "txz.h" #include #include #include #include #include #include #include #include tbuf_t* xzopen_frontend(char* pathname, int oflags, int mode); int xzread(tbuf_t* tbuf, void* buf, size_t len); int xzwrite(tbuf_t* tbuf, const void* buf, size_t len); void xz_init() {} uint32_t xz_io_crc32(const uint8_t* buf, size_t size, uint32_t crc) { return lzma_crc32(buf, size, crc); } void* xz_decoder_init(int* status_code) { lzma_stream* strm; lzma_stream tmp = LZMA_STREAM_INIT; *status_code = 0; strm = (lzma_stream*)malloc(sizeof(lzma_stream)); if (strm == NULL) { *status_code = _ERR(TXZ_ERR_MEM_ALLOC); return NULL; } *strm = tmp; if (init_decoder(strm)) { // Decoder initialization failed. There's no point // to retry it so we need to exit. *status_code = _ERR(TXZ_ERR_DECODER_INIT); goto err_clean_up; } strm->next_in = NULL; strm->avail_in = 0; return strm; err_clean_up: free(strm); return NULL; } void xz_close(void* strm) { lzma_end((lzma_stream*)strm); } int init_decoder(lzma_stream* strm) { lzma_ret ret = lzma_stream_decoder(strm, UINT64_MAX, LZMA_CONCATENATED); if (ret == LZMA_OK) { return 0; } const char* msg; switch (ret) { case LZMA_MEM_ERROR: msg = "Memory allocation failed"; break; case LZMA_OPTIONS_ERROR: msg = "Unsupported decompressor flags"; break; default: msg = "Unknown error, possibly a bug"; break; } printf("Error initializing the decoder: %s (error code %u)\n", msg, ret); return -1; } int lzma_code_ret(lzma_ret ret); int xzread(tbuf_t* tbuf, void* buf, size_t len) { lzma_stream* strm; lzma_action action = LZMA_RUN; strm = (lzma_stream*)tbuf->envptr; strm->next_out = (uint8_t*)buf; strm->avail_out = len; while (1) { if (strm->avail_in == 0 && action != LZMA_FINISH) { int chunksz = tbuf->size - tbuf->pos; if (chunksz > BUFSIZ) { chunksz = BUFSIZ; } strm->next_in = &tbuf->buf[tbuf->pos]; tbuf->pos += chunksz; strm->avail_in = chunksz; // Once the end of the input file has been reached, // we need to tell lzma_code() that no more input // will be coming. As said before, this isn't required // if the LZMA_CONATENATED flag isn't used when // initializing the decoder. if (!strm->avail_in) { action = LZMA_FINISH; } } lzma_ret ret = lzma_code(strm, action); if (lzma_code_ret(ret)) { return -1; } if (strm->avail_out == 0 || ret == LZMA_STREAM_END) { size_t write_size = len - strm->avail_out; return write_size; } } return 0; } tbuf_t* xzopen_frontend(char* pathname, int oflags, int mode) { if (pathname || oflags || mode) { // omits compiler warnings return NULL; } return NULL; } int xzclose(tbuf_t* tbuf) { if (tbuf) { // omits compiler warnings return 0; } return 0; } int xzwrite(tbuf_t* tbuf, const void* buf, size_t len) { if (tbuf || buf || len) { // omits compiler warnings return 0; } return 0; } int lzma_code_ret(lzma_ret ret) { if (ret != LZMA_OK) { // Once everything has been decoded successfully, the // return value of lzma_code() will be LZMA_STREAM_END. // // It is important to check for LZMA_STREAM_END. Do not // assume that getting ret != LZMA_OK would mean that // everything has gone well or that when you aren't // getting more output it must have successfully // decoded everything. if (ret == LZMA_STREAM_END) { return 0; } // It's not LZMA_OK nor LZMA_STREAM_END, // so it must be an error code. See lzma/base.h // (src/liblzma/api/lzma/base.h in the source package // or e.g. /usr/include/lzma/base.h depending on the // install prefix) for the list and documentation of // possible values. Many values listen in lzma_ret // enumeration aren't possible in this example, but // can be made possible by enabling memory usage limit // or adding flags to the decoder initialization. const char* msg; switch (ret) { case LZMA_MEM_ERROR: msg = "Memory allocation failed"; break; case LZMA_FORMAT_ERROR: // .xz magic bytes weren't found. msg = "The input is not in the .xz format"; break; case LZMA_OPTIONS_ERROR: // For example, the headers specify a filter // that isn't supported by this liblzma // version (or it hasn't been enabled when // building liblzma, but no-one sane does // that unless building liblzma for an // embedded system). Upgrading to a newer // liblzma might help. // // Note that it is unlikely that the file has // accidentally became corrupt if you get this // error. The integrity of the .xz headers is // always verified with a CRC32, so // unintentionally corrupt files can be // distinguished from unsupported files. msg = "Unsupported compression options"; break; case LZMA_DATA_ERROR: msg = "Compressed file is corrupt"; break; case LZMA_BUF_ERROR: // Typically this error means that a valid // file has got truncated, but it might also // be a damaged part in the file that makes // the decoder think the file is truncated. // If you prefer, you can use the same error // message for this as for LZMA_DATA_ERROR. msg = "Compressed file is truncated or " "otherwise corrupt"; break; default: // This is most likely LZMA_PROG_ERROR. msg = "Unknown error, possibly a bug"; break; } printf("Decoder error: " "%s (error code %u)\n", msg, ret); return -1; } return 0; } mstflint-4.26.0/libmfa/mfaerr.h0000644000175000017500000000372114522641732016565 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MFA_ERR_H_ #define _MFA_ERR_H_ enum { MFA_OK = 0, MFA_ERR_GENERIC, MFA_ERR_MEM_ALLOC, MFA_ERR_ARCHV_SIGNATURE, MFA_ERR_ARCHV_VER_UNSUPP, MFA_ERR_ARCHV_CRC, MFA_ERR_ARCHV_FORMAT, MFA_ERR_FILE_OPEN, MFA_ERR_FILE_READ, MFA_ERR_IMG_GETSZ, MFA_ERR_IMG_GET, MFA_ERR_UNKNOWN_TYPE, MFA_ERR_NO_ENTRY, MFA_ERR_FIELD_NOT_FOUND, MFA_ERR_DECOMPRESSION, MFA_ERR_FSEEK, MFA_ERR_FTELL, MFA_ERR_BUFF_SIZE }; #endif mstflint-4.26.0/libmfa/mfa.c0000644000175000017500000003512614522641732016053 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mfa.h" #include "mfa_section.h" #include "mfaerr.h" #include #include #include #include #include // 0x(major)(minor) // 0x00000001; #0x(0000)(0001) #define MLXA_VERSION 0x00000001 #define MFA_HDR_SZ 16 #define MAP_SECTION_OFFSET MFA_HDR_SZ #define CHECK_PTR(p) \ do \ { \ if (p == NULL) \ { \ return _ERR(MFA_ERR_MEM_ALLOC); \ } \ } while (0) #define CHECK_RC(rc) \ do \ { \ if (rc < 0) \ { \ return rc; \ } \ } while (0) #define _ERR(errcode) (-errcode) #define _ERR_STR(des, errcode, ...) (sprintf((des->err_str), __VA_ARGS__), -errcode) struct mfa_desc { int bufsz; u_int8_t* buffer; u_int8_t* map; u_int8_t* toc; u_int8_t* data_ptr; int open_method; char err_str[256]; }; enum mfa_open_methods { MFA_OPEN_BUF, MFA_OPEN_FILE }; enum header_types { IMAGES_HEADER, PSID_HEADER }; int mfa_verify_archive(u_int8_t* buf, long sz); int mfa_read_map(mfa_desc* mfa_d); int parse_section_header(char* buf, int len, int* header_type, int* nrecs); int mfa_read_toc(struct mfa_desc* mfa_d); static int _mfa_open_buf(mfa_desc** mfa_d, u_int8_t* arbuf, int size) { int res = 0; *mfa_d = (mfa_desc*)malloc(sizeof(mfa_desc)); if (!(*mfa_d)) { return _ERR(MFA_ERR_MEM_ALLOC); } memset(*mfa_d, 0, sizeof(mfa_desc)); if ((res = mfa_verify_archive(arbuf, size))) { goto clean_up; } (*mfa_d)->buffer = arbuf; (*mfa_d)->bufsz = size; if ((res = mfa_read_map(*mfa_d)) < 0) { goto clean_up; } if ((res = mfa_read_toc(*mfa_d)) < 0) { goto clean_up_map; } return MFA_OK; clean_up_map: free((*mfa_d)->map); clean_up: free(*mfa_d); return res; } void mfa_init() { mfasec_init(); } int mfa_open_buf(mfa_desc** mfa_d, u_int8_t* arbuf, int size) { int res; res = _mfa_open_buf(mfa_d, arbuf, size); if (res == MFA_OK) { (*mfa_d)->open_method = MFA_OPEN_BUF; } return res; } int mfa_open_file(mfa_desc** mfa_d, char* fname) { int res = MFA_OK; FILE* fp; u_int8_t *buf = NULL, *tmp_buf; long int fsize; long int sz; if ((fp = fopen(fname, "rb")) == NULL) { return _ERR(MFA_ERR_FILE_OPEN); } if (fseek(fp, 0L, SEEK_END)) { res = _ERR(MFA_ERR_FSEEK); goto err_clean_up; } if ((fsize = ftell(fp)) <= 0) { res = _ERR(MFA_ERR_FTELL); goto err_clean_up; } rewind(fp); buf = (u_int8_t*)malloc(fsize * sizeof(u_int8_t)); if (buf == NULL) { res = _ERR(MFA_ERR_MEM_ALLOC); goto err_clean_up; } memset(buf, 0, fsize); tmp_buf = buf; sz = fread(tmp_buf, 1, fsize, fp); if (sz != fsize || sz <= 0 || tmp_buf == NULL) { res = _ERR(MFA_ERR_FILE_READ); goto err_clean_up; } if ((res = _mfa_open_buf(mfa_d, buf, fsize)) != MFA_OK) { goto err_clean_up; } fclose(fp); (*mfa_d)->open_method = MFA_OPEN_FILE; return MFA_OK; err_clean_up: fclose(fp); if (buf != NULL) { free(buf); } return res; } int mfa_close(struct mfa_desc* mfa_d) { if (mfa_d->map != NULL) { free(mfa_d->map); mfa_d->map = NULL; } if (mfa_d->open_method == MFA_OPEN_FILE) { free(mfa_d->buffer); mfa_d->buffer = NULL; } if (mfa_d->toc != NULL) { free(mfa_d->toc); mfa_d->toc = NULL; } free(mfa_d); return MFA_OK; } int mfa_verify_archive(u_int8_t* buf, long sz) { int i; u_int32_t crc; u_int32_t ar_crc; u_int32_t ver; u_int32_t major; u_int32_t minor; u_int32_t mlx_major = (MLXA_VERSION & 0xFFFF0000) >> 16; u_int32_t mlx_minor = (MLXA_VERSION & 0x0000FFFF); char signature[] = {'M', 'F', 'A', 'R'}; if (sz < 16) { return _ERR(MFA_ERR_ARCHV_FORMAT); } // Check signature for (i = 0; i < 4; i++) { if (signature[i] != buf[i]) { return _ERR(MFA_ERR_ARCHV_SIGNATURE); } } // Check version ver = *((u_int32_t*)&buf[4]); ver = __be32_to_cpu(ver); major = (ver & 0xFFFF0000) >> 16; minor = (ver & 0x0000FFFF); (void)mlx_minor; (void)minor; if (major > mlx_major) { return _ERR(MFA_ERR_ARCHV_VER_UNSUPP); } // Archive CRC ar_crc = *((u_int32_t*)&buf[sz - 4]); ar_crc = __be32_to_cpu(ar_crc); crc = mfasec_crc32(buf, sz - 4, 0); if (crc != ar_crc) { // printf("CRC32 = %08x expected = %08x\n", crc, ar_crc); return _ERR(MFA_ERR_ARCHV_CRC); } return MFA_OK; } int mfa_get_crc32(u_int8_t* arbuf, long sz, u_int32_t* ar_crc, u_int32_t* calc_crc) { *ar_crc = *((u_int32_t*)&arbuf[sz - 4]); *ar_crc = __be32_to_cpu(*ar_crc); *calc_crc = mfasec_crc32(arbuf, sz - 4, 0); return MFA_OK; } int mfa_read_map(struct mfa_desc* mfa_d) { u_int8_t* buf; int res; section_hdr* map_hdr = (section_hdr*)&mfa_d->buffer[MAP_SECTION_OFFSET]; res = mfasec_get_map(&mfa_d->buffer[MAP_SECTION_OFFSET], __be32_to_cpu(map_hdr->size) + sizeof(section_hdr), &buf); if (res < 0) { goto clean_up; } mfa_d->map = buf; clean_up: if (res < 0) { free(buf); } return res; } int mfa_read_toc(struct mfa_desc* mfa_d) { u_int8_t* buf; int res; section_hdr* map_hdr = (section_hdr*)&mfa_d->buffer[MAP_SECTION_OFFSET]; section_hdr* toc_hdr = (section_hdr*)&mfa_d->buffer[MAP_SECTION_OFFSET + __be32_to_cpu(map_hdr->size) + sizeof(section_hdr)]; mfa_d->data_ptr = &mfa_d->buffer[MAP_SECTION_OFFSET + __be32_to_cpu(map_hdr->size) + 2 * sizeof(section_hdr) + __be32_to_cpu(toc_hdr->size)]; res = mfasec_get_toc((u_int8_t*)toc_hdr, __be32_to_cpu(toc_hdr->size) + sizeof(section_hdr), &buf); if (res < 0) { goto clean_up; } mfa_d->toc = buf; clean_up: if (res < 0) { free(buf); } return res; } int mfa_map_get_num_images(map_entry_hdr* me) { return me->nimages; } const char* mfa_map_get_metadata(map_entry_hdr* me) { if (me->metadata_size == 0) { return ""; } char* ptr = (char*)me; ptr += sizeof(map_entry_hdr); return ptr; } map_image_entry* mfa_get_map_image(map_entry_hdr* me, int image_index) { u_int8_t* ptr = (u_int8_t*)me; if (image_index >= me->nimages) { return NULL; } ptr += sizeof(map_entry_hdr); ptr += me->metadata_size; map_image_entry* img_e = (map_image_entry*)ptr; return (map_image_entry*)&img_e[image_index]; } toc_entry* mfa_get_image_toc(mfa_desc* mfa_d, map_image_entry* img_e) { toc_entry* toc_e = (toc_entry*)&mfa_d->toc[img_e->toc_offset + sizeof(section_hdr)]; return (toc_entry*)toc_e; } map_entry_hdr* mfa_get_map_entry(mfa_desc* mfa_d, char* board_type_id) { u_int8_t* map = mfa_d->map; section_hdr* map_hdr = (section_hdr*)map; ssize_t pos = sizeof(section_hdr); ssize_t total = sizeof(section_hdr) + map_hdr->size; while (pos < total) { map_entry_hdr* map_entry = (map_entry_hdr*)&map[pos]; int n = map_entry->nimages; if (strcmp(map_entry->board_type_id, board_type_id) != 0) { pos += sizeof(map_entry_hdr); pos += map_entry->metadata_size; // metadata length pos += n * sizeof(map_image_entry); continue; } return map_entry; } return NULL; } map_entry_hdr* mfa_get_next_mentry(mfa_desc* mfa_d, map_entry_hdr* curr_me) { ssize_t pos; ssize_t total; int n; map_entry_hdr* next_me = NULL; u_int8_t* map = mfa_d->map; section_hdr* map_hdr = (section_hdr*)map; total = sizeof(section_hdr) + map_hdr->size; if (curr_me == NULL) { pos = sizeof(section_hdr); next_me = (map_entry_hdr*)&map[pos]; return next_me; } pos = (ssize_t)(((u_int8_t*)curr_me) - map); n = curr_me->nimages; pos += sizeof(map_entry_hdr); pos += curr_me->metadata_size; // metadata length pos += n * sizeof(map_image_entry); if (pos < total) { next_me = (map_entry_hdr*)&map[pos]; } return next_me; } char* mfa_get_map_entry_metadata(map_entry_hdr* map_entry, char* key) { u_int16_t count; u_int16_t i; char* ptr; metadata_hdr* md_hdr; char* val; ptr = (char*)map_entry; ptr += sizeof(map_entry_hdr); // ptr points at beginning of metadata section md_hdr = (metadata_hdr*)ptr; ptr += sizeof(metadata_hdr); if (map_entry->metadata_size == 0) { return NULL; } if (md_hdr->type != MDT_KEY_VALUE_PAIR) { return NULL; } count = md_hdr->modifier; for (i = 0; i < count; i++) { if (strcmp(ptr, key) == 0) { break; } if (i == (count - 1)) { return NULL; } ptr += strlen(ptr) + 1; ptr += strlen(ptr) + 1; } ptr += strlen(ptr) + 1; val = strdup(ptr); return val; } char* mfa_get_board_metadata(mfa_desc* mfa_d, char* board_type_id, char* key) { map_entry_hdr* map_entry = mfa_get_map_entry(mfa_d, board_type_id); if (map_entry == NULL) { return NULL; } return mfa_get_map_entry_metadata(map_entry, key); } ssize_t mfa_get_image(mfa_desc* mfa_d, char* board_type_id, u_int8_t type, char* selector_tag, u_int8_t** buffer) { int i; ssize_t res; ssize_t accum_size; int last_group_id = -1; map_image_entry* map_img; map_entry_hdr* map_entry = mfa_get_map_entry(mfa_d, board_type_id); if (map_entry == NULL) { return _ERR_STR(mfa_d, MFA_ERR_NO_ENTRY, "Entry not found for Board Type ID = %s", board_type_id); } *buffer = NULL; int n = mfa_map_get_num_images(map_entry); ssize_t total_size = 0; toc_entry** toce_ar; int toce_num = 0; if (n > 0) { toce_ar = (toc_entry**)malloc(sizeof(toc_entry*) * n); if (toce_ar == NULL) { return _ERR_STR(mfa_d, MFA_ERR_MEM_ALLOC, "Failed to allocate %u bytes of memory", (unsigned)(sizeof(toc_entry) * n)); } } else { return _ERR_STR(mfa_d, MFA_ERR_ARCHV_FORMAT, "Didn't expect zero images for board type ID=%s", board_type_id); } for (i = 0; i < n; i++) { map_img = mfa_get_map_image(map_entry, i); if (map_img->image_type == type) { if (map_img->select_tag[0] != 0) { if (selector_tag == NULL) { continue; } if (strncmp(map_img->select_tag, selector_tag, 32) != 0) { continue; } } if (last_group_id == map_img->group_id) { continue; } last_group_id = map_img->group_id; toc_entry* toc_e = mfa_get_image_toc(mfa_d, map_img); toce_ar[toce_num] = toc_e; toce_num++; total_size += toc_e->data_size; } } if (toce_num == 0) { res = _ERR_STR(mfa_d, MFA_ERR_NO_ENTRY, "Image not found for board type ID=%s with type=%d and selector_tag=%s", board_type_id, type, selector_tag); goto img_alloc_clean_up; } else { *buffer = (u_int8_t*)malloc(total_size); if (*buffer == NULL) { res = _ERR_STR(mfa_d, MFA_ERR_MEM_ALLOC, "Failed to allocate %u memory", (unsigned)total_size); goto clean_up; } memset(*buffer, 0, total_size * sizeof(u_int8_t)); } accum_size = 0; for (i = 0; i < toce_num; i++) { if (toce_ar[i]->data_size == 0) { continue; } // Since toce_ar[i]->data_offset is only 32bits we can't reach images on larger offsets so we // make use of another 16bits from toce_ar[i]->data_offset_msb field u_int64_t data_offset = toce_ar[i]->data_offset_msb; data_offset = data_offset << 32; data_offset += toce_ar[i]->data_offset; int rc = mfasec_get_data_chunk(mfa_d->data_ptr, (mfa_d->buffer + mfa_d->bufsz) - mfa_d->data_ptr, data_offset, toce_ar[i]->data_size, &((*buffer)[accum_size])); if (rc < 0) { res = _ERR_STR(mfa_d, -rc, "Failed to get image"); goto img_alloc_clean_up; } accum_size += toce_ar[i]->data_size; } res = total_size; goto clean_up; img_alloc_clean_up: free(*buffer); clean_up: free(toce_ar); return res; } void mfa_release_image(u_int8_t* buffer) { free(buffer); } const char* mfa_get_last_error(mfa_desc* mfa_d) { return mfa_d->err_str; } mstflint-4.26.0/libmfa/xz_io_ops.c0000644000175000017500000001517314522641732017321 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "xz_io_ops.h" #include #include #include #include #include #ifndef _MSC_VER #include #endif #include #include #define XZ_IOBUF_SIZE 4096 #define _ERR(errcode) (-errcode) #define MXZ_ERR_MEM_ALLOC 1 #define MXZ_ERR_DECODER_INIT 2 typedef struct { struct xz_dec* s; struct xz_buf b; } xz_env; static uint8_t xz_has_init = 0; struct xzhandle_t { const u_int8_t* buf; ssize_t size; ssize_t pos; xz_env* envptr; }; void xz_init() { if (xz_has_init) { return; } xz_crc32_init(); xz_has_init = 1; } uint32_t xz_io_crc32(const uint8_t* buf, size_t size, uint32_t crc) { xz_init(); return xz_crc32(buf, size, crc); } static xz_env* xz_decoder_init(int* status_code) { xz_env* env; struct xz_dec* s; *status_code = 0; struct xz_buf b; env = (xz_env*)malloc(sizeof(xz_env)); if (env == NULL) { *status_code = _ERR(MXZ_ERR_MEM_ALLOC); return NULL; } s = xz_dec_init(XZ_DYNALLOC, (uint32_t)-1); if (s == NULL) { *status_code = _ERR(MXZ_ERR_DECODER_INIT); goto err_clean_up; } b.in_pos = 0; b.in_size = 0; b.in = NULL; b.out_pos = 0; b.out_size = 0; b.out = NULL; env->s = s; env->b = b; return env; err_clean_up: free(env); return NULL; } static size_t decode_xz_num(const u_int8_t buf[], size_t size_max, u_int64_t* num) { if (size_max == 0) { return 0; } if (size_max > 9) { size_max = 9; } *num = buf[0] & 0x7F; size_t i = 0; while (buf[i++] & 0x80) { if (i >= size_max || buf[i] == 0x00) { return 0; } *num |= (u_int64_t)(buf[i] & 0x7F) << (i * 7); } return i; } ssize_t xz_stream_len(u_int8_t* buffer, ssize_t len) { // long sz = 0; ssize_t pos = len - 1; unsigned i; while (buffer[pos] == 0) { pos--; } if ((buffer[pos] != 'Z') || (buffer[pos - 1] != 'Y')) { return -1; } pos -= 7; u_int32_t backward_size = *((u_int32_t*)&buffer[pos]); // TODO: Must use le2cpu function here backward_size = __le32_to_cpu(backward_size); backward_size = (backward_size + 1) * 4; pos -= 4; // CRC32 pos -= backward_size - 1; // pos will point at number of records field inside Index u_int64_t num_blocks = 0; int idx = decode_xz_num(&buffer[pos], len - pos, &num_blocks); // printf("idx: %d\n", idx); // sz = num_blocks; pos += idx; ssize_t total_unpadded = 0; ssize_t total_uncompressed = 0; for (i = 0; i < num_blocks; i++) { u_int64_t unpadded = 0; u_int64_t uncompressed = 0; idx = decode_xz_num(&buffer[pos], len - pos, &unpadded); pos += idx; idx = decode_xz_num(&buffer[pos], len - pos, &uncompressed); pos += idx; // printf("Block #%3d: Unpadded: %8u Uncompressed: %8u\n", i, unpadded, uncompressed); total_unpadded += unpadded; total_uncompressed += uncompressed; } (void)total_unpadded; (void)total_uncompressed; // printf("Totals: Unpadded: %8u Uncompressed: %8u\n", total_unpadded, total_uncompressed); return total_uncompressed; } xzhandle_t* xz_open_buf(const u_int8_t* buf, size_t size) { xzhandle_t* xzh; int res; xz_env* env = xz_decoder_init(&res); if (env == NULL) { return NULL; } if (res) { return NULL; } xzh = (xzhandle_t*)malloc(sizeof(xzhandle_t)); if (xzh == NULL) { xz_dec_end(env->s); free(env); return NULL; } xzh->buf = buf; xzh->size = size; xzh->pos = 0; xzh->envptr = env; return xzh; } void xz_close(xzhandle_t* xzh) { xz_env* e = xzh->envptr; xz_dec_end(e->s); free(e); free(xzh); } int xz_read(xzhandle_t* xzh, u_int8_t* buf, size_t len) { xz_env* e; enum xz_ret ret; e = xzh->envptr; if (e->b.in == NULL) { e->b.in = (uint8_t*)&xzh->buf[xzh->pos]; e->b.in_size = xzh->size; e->b.in_pos = 0; } e->b.out = buf; e->b.out_size = len; e->b.out_pos = 0; do { ret = xz_dec_run(e->s, &e->b); if (e->b.out_pos == e->b.out_size) { return e->b.out_pos; } else if (ret == XZ_STREAM_END) { break; } } while (ret == XZ_OK); switch (ret) { case XZ_STREAM_END: return e->b.out_pos; case XZ_MEM_ERROR: // This can occur only in multi-call mode. XZ decompressor ran out of memory break; case XZ_FORMAT_ERROR: // Input is not in the XZ format (wrong magic bytes) break; case XZ_OPTIONS_ERROR: // Input was encoded with settings that are not supported by this XZ decoder break; case XZ_DATA_ERROR: case XZ_BUF_ERROR: // XZ-compressed data is corrupt; break; default: // Bug in the XZ decompressor; break; } return -1; } mstflint-4.26.0/libmfa/xz_io_ops.h0000644000175000017500000000361714522641732017326 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __XZ_IO_OPS_H__ #define __XZ_IO_OPS_H__ #include typedef struct xzhandle_t xzhandle_t; void xz_init(); u_int32_t xz_io_crc32(const u_int8_t* buf, size_t size, u_int32_t crc); ssize_t xz_stream_len(u_int8_t* buffer, ssize_t len); xzhandle_t* xz_open_buf(const u_int8_t* buf, size_t size); void xz_close(xzhandle_t* xzh); int xz_read(xzhandle_t* xzh, u_int8_t* buf, size_t len); #endif mstflint-4.26.0/libmfa/mfa_section.c0000644000175000017500000002254314522641732017576 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mfaerr.h" #include "mfa_section.h" #include #include #include #include //#include #include #include "xz_io_ops.h" #include #define _ERR(errcode) (-errcode) void mfasec_init() { xz_init(); } u_int32_t mfasec_crc32(const u_int8_t* buf, size_t size, u_int32_t crc) { return xz_io_crc32(buf, size, crc); } ssize_t mfasec_get_section(u_int8_t* inbuf, size_t inbufsz, u_int8_t** outbuf) { int res = 0; int rc; xzhandle_t* xzh; u_int8_t* buf; section_hdr* hdr = (section_hdr*)inbuf; if (hdr->flags & SFLAG_XZ_COMPRESSED) { ssize_t sz; sz = xz_stream_len(&inbuf[sizeof(section_hdr)], __be32_to_cpu(hdr->size)); if (sz <= 0) { return _ERR(MFA_ERR_DECOMPRESSION); } ssize_t msize = sz + sizeof(section_hdr); buf = (u_int8_t*)malloc(msize); if (buf == NULL) { return _ERR(MFA_ERR_MEM_ALLOC); } memcpy(buf, inbuf, sizeof(section_hdr)); // Read section into buffer xzh = xz_open_buf(&inbuf[sizeof(section_hdr)], inbufsz - sizeof(section_hdr)); if (xzh == NULL) { res = _ERR(MFA_ERR_DECOMPRESSION); goto clean_up; } rc = xz_read(xzh, &buf[sizeof(section_hdr)], sz); xz_close(xzh); if (rc != sz) { res = _ERR(MFA_ERR_ARCHV_FORMAT); goto clean_up; } section_hdr* hdr = (section_hdr*)buf; hdr->flags &= (u_int8_t)(~SFLAG_XZ_COMPRESSED); hdr->size = __cpu_to_be32(((u_int32_t)sz)); } else { ssize_t msize = __be32_to_cpu(hdr->size) + sizeof(section_hdr); buf = (u_int8_t*)malloc(msize); if (buf == NULL) { return _ERR(MFA_ERR_MEM_ALLOC); } memcpy(buf, inbuf, __be32_to_cpu(hdr->size) + sizeof(section_hdr)); } hdr = (section_hdr*)buf; hdr->size = __be32_to_cpu(hdr->size); *outbuf = buf; res = hdr->size + sizeof(section_hdr); clean_up: if (res < 0) { free(buf); } return res; } ssize_t mfasec_get_map(u_int8_t* inbuf, size_t inbufsz, u_int8_t** outbuf) { int res = 0; int j; res = mfasec_get_section(inbuf, inbufsz, outbuf); if (res < 0) { return res; } ssize_t pos = sizeof(section_hdr); ssize_t total = res; while (pos < total) { map_entry_hdr* map_entry = (map_entry_hdr*)&((*outbuf)[pos]); int n = map_entry->nimages; map_entry->metadata_size = __be16_to_cpu(map_entry->metadata_size); // printf("%s %d\n", map_entry->board_type_id, n); pos += sizeof(map_entry_hdr); if (pos >= total) { break; } if (map_entry->metadata_size > 0) { metadata_hdr* md_hdr = (metadata_hdr*)&((*outbuf)[pos]); md_hdr->modifier = __be16_to_cpu(md_hdr->modifier); } pos += map_entry->metadata_size; if (pos >= total) { break; } for (j = 0; j < n; j++) { map_image_entry* img_entry = (map_image_entry*)&((*outbuf)[pos]); img_entry->toc_offset = __be32_to_cpu(img_entry->toc_offset); img_entry->image_type = __be16_to_cpu(img_entry->image_type); // printf("Image #%d Offset: %08x\n", j, img_entry->toc_offset); pos += sizeof(map_image_entry); } } return res; } ssize_t mfasec_get_toc(u_int8_t* inbuf, size_t inbufsz, u_int8_t** outbuf) { int res = 0; int i; res = mfasec_get_section(inbuf, inbufsz, outbuf); if (res < 0) { return res; } ssize_t pos = sizeof(section_hdr); ssize_t total = res; if (((total - pos) % sizeof(toc_entry)) != 0) { printf("Error while parsing MFA file. Total %d entry %d\n", (int)total, (int)sizeof(toc_entry)); return -1; } while (pos < total) { toc_entry* toc_e = (toc_entry*)&((*outbuf)[pos]); toc_e->data_offset = __be32_to_cpu(toc_e->data_offset); toc_e->data_size = __be32_to_cpu(toc_e->data_size); toc_e->subimage_type = __be16_to_cpu(toc_e->subimage_type); for (i = 0; i < 4; i++) { toc_e->version[i] = __be16_to_cpu(toc_e->version[i]); } toc_e->data_offset_msb = __be16_to_cpu(toc_e->data_offset_msb); toc_e->metadata_size = __be16_to_cpu(toc_e->metadata_size); pos += sizeof(toc_entry); pos += toc_e->metadata_size; } return res; } #define BUF_SIZE 1024 enum read_states { SEEK, COPY }; int mfasec_get_data_chunk(u_int8_t* data_sec_ptr, size_t data_sec_len, u_int64_t chunk_offset, size_t length, u_int8_t* outbuf) { int res = 0; int rc; xzhandle_t* xzh; u_int8_t* buf = NULL; size_t src_sz; u_int8_t* ptr = data_sec_ptr; if (data_sec_len < sizeof(section_hdr)) { return _ERR(MFA_ERR_BUFF_SIZE); } ptr += sizeof(section_hdr); data_sec_len -= sizeof(section_hdr); section_hdr* hdr = (section_hdr*)data_sec_ptr; src_sz = __be32_to_cpu(hdr->size); if (hdr->flags & SFLAG_XZ_COMPRESSED) { size_t sz; buf = (u_int8_t*)malloc(BUF_SIZE); if (buf == NULL) { return _ERR(MFA_ERR_MEM_ALLOC); } if (data_sec_len < src_sz) { res = _ERR(MFA_ERR_BUFF_SIZE); goto clean_up; } sz = xz_stream_len(ptr, src_sz); if (sz <= 0) { res = _ERR(MFA_ERR_DECOMPRESSION); goto clean_up; } if (sz < (chunk_offset + length)) { res = _ERR(MFA_ERR_DECOMPRESSION); goto clean_up; } // Read section into buffer xzh = xz_open_buf(ptr, src_sz); if (xzh == NULL) { res = _ERR(MFA_ERR_DECOMPRESSION); goto clean_up; } size_t index = 0; size_t rlen = 0; int state = SEEK; do { rc = xz_read(xzh, buf, BUF_SIZE); if (rc > 0) { index += rc; } else { break; } if (state == SEEK) { if (index > chunk_offset) { rlen += index - chunk_offset; memcpy(outbuf, &buf[rc - (rlen)], rlen); state = COPY; } } else if (state == COPY) { size_t delta = rc; if ((rlen + rc) > length) { delta = length - rlen; } memcpy(&outbuf[rlen], buf, delta); rlen += delta; } if (rlen == length) { break; } } while (rc == BUF_SIZE); xz_close(xzh); if (rlen != length) { res = _ERR(MFA_ERR_DECOMPRESSION); goto clean_up; } } else { ptr += chunk_offset; memcpy(outbuf, ptr, length); } clean_up: if (buf != NULL) { free(buf); } return res; } char* mfasec_get_sub_image_type_str(int t) { char* tstr; switch (t) { case SIT_PADDING: tstr = ""; break; case SIT_FW: tstr = "FW"; break; case SIT_CLP: tstr = "CLP"; break; case SIT_PXE: tstr = "PXE"; break; case SIT_UEFI: tstr = "UEFI"; break; case SIT_FCODE: tstr = "FCODE"; break; default: tstr = NULL; break; } return tstr; } mstflint-4.26.0/libmfa/Makefile.am0000644000175000017500000000352114522641732017172 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/ext_libs/minixz AM_CFLAGS = -MD -pipe -Wall -W -g $(COMPILER_FPIC) noinst_LTLIBRARIES = libmfa.la libmfa_la_SOURCES = \ mfa.c \ mfa.h \ mfa_section.c \ mfa_section.h \ mfaerr.h \ xz_io_ops.c \ xz_io_ops.h mstflint-4.26.0/libmfa/Makefile.in0000644000175000017500000004745414522641737017225 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = libmfa DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmfa_la_LIBADD = am_libmfa_la_OBJECTS = mfa.lo mfa_section.lo xz_io_ops.lo libmfa_la_OBJECTS = $(am_libmfa_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmfa_la_SOURCES) DIST_SOURCES = $(libmfa_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ USER_DIR = $(top_srcdir) AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/ext_libs/minixz AM_CFLAGS = -MD -pipe -Wall -W -g $(COMPILER_FPIC) noinst_LTLIBRARIES = libmfa.la libmfa_la_SOURCES = \ mfa.c \ mfa.h \ mfa_section.c \ mfa_section.h \ mfaerr.h \ xz_io_ops.c \ xz_io_ops.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libmfa/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libmfa/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmfa.la: $(libmfa_la_OBJECTS) $(libmfa_la_DEPENDENCIES) $(EXTRA_libmfa_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libmfa_la_OBJECTS) $(libmfa_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mfa.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mfa_section.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xz_io_ops.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/flint/0000755000175000017500000000000014522641737015024 5ustar tzafrirctzafrircmstflint-4.26.0/flint/flint.cpp0000644000175000017500000002156214522641732016645 0ustar tzafrirctzafrirc/* * * flint.cpp - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #include #include #include "flint.h" // Globals: Flint* gFlint = NULL; extern FILE* flint_log_fh; // signal handler section #define BURN_INTERRUPTED 0x1234 void TerminationHandler(int signum); #ifdef __WIN__ #include static BOOL CtrlHandler(DWORD fdwCtrlType) { switch (fdwCtrlType) { // Handle the CTRL-C signal. case CTRL_C_EVENT: // CTRL-CLOSE: confirm that the user wants to exit. case CTRL_CLOSE_EVENT: // Pass other signals to the next handler. case CTRL_BREAK_EVENT: case CTRL_LOGOFF_EVENT: case CTRL_SHUTDOWN_EVENT: TerminationHandler(SIGINT); return TRUE; default: return FALSE; } } #endif void TerminationHandler(int signum) { static volatile sig_atomic_t fatal_error_in_progress = 0; if (fatal_error_in_progress) { raise(signum); } fatal_error_in_progress = 1; write_result_to_log(BURN_INTERRUPTED, ""); close_log(); if (gFlint != NULL) { printf("\n Received signal %d. Cleaning up ...\n", signum); fflush(stdout); // sleep(1); // Legacy from the Old Flint gFlint->GetSubCommands()[gFlint->GetFlintParams().cmd]->cleanInterruptedCommand(); delete gFlint; gFlint = NULL; printf(" Done.\n"); } signal(signum, SIG_DFL); raise(signum); } #ifdef __WIN__ #define SIGNAL_NUM 3 static int signalList[SIGNAL_NUM] = {SIGINT, SIGTERM, SIGABRT}; #else #define SIGNAL_NUM 4 static int signalList[SIGNAL_NUM] = {SIGINT, SIGTERM, SIGPIPE, SIGHUP}; #endif void initHandler() { #ifdef __WIN__ SetConsoleCtrlHandler((PHANDLER_ROUTINE)CtrlHandler, true); #endif // set the signal handler for (int i = 0; i < SIGNAL_NUM; i++) { void (*prevFunc)(int); prevFunc = signal(signalList[i], TerminationHandler); if (prevFunc == SIG_ERR) { printf("-E- failed to set signal Handler."); exit(FLINT_FAILED); } } } void ignoreSignals() { for (int i = 0; i < SIGNAL_NUM; i++) { signal(signalList[i], SIG_IGN); } } // End of signal handler section. map_sub_cmd_t_to_subcommand Flint::initSubcommandMap() { map_sub_cmd_t_to_subcommand cmdMap; cmdMap[SC_Burn] = new BurnSubCommand(); cmdMap[SC_Query] = new QuerySubCommand(); cmdMap[SC_Verify] = new VerifySubCommand(); cmdMap[SC_Swreset] = new SwResetSubCommand(); cmdMap[SC_ResetCfg] = new ResetCfgSubCommand(); cmdMap[SC_Brom] = new BromSubCommand(); cmdMap[SC_Drom] = new DromSubCommand(); cmdMap[SC_Rrom] = new RromSubCommand(); cmdMap[SC_Qrom] = new RomQuerySubCommand(); cmdMap[SC_Bb] = new BbSubCommand(); cmdMap[SC_Sg] = new SgSubCommand(); #ifndef EXTERNAL cmdMap[SC_Smg] = new SmgSubCommand(); cmdMap[SC_Set_Vpd] = new SetVpdSubCommand(); cmdMap[SC_Set_Cert_Chain] = new SetCertChainSubCommand(); cmdMap[SC_Fix_Img] = new FiSubCommand(); cmdMap[SC_Extract_4MB_Image] = new Extract4MBImageSubCommand(); #endif cmdMap[SC_Sv] = new SvSubCommand(); cmdMap[SC_Ri] = new RiSubCommand(); cmdMap[SC_Dc] = new DcSubCommand(); cmdMap[SC_Dh] = new DhSubCommand(); cmdMap[SC_Set_Key] = new SetKeySubCommand(); cmdMap[SC_Hw_Access] = new HwAccessSubCommand(); cmdMap[SC_Hw] = new HwSubCommand(); cmdMap[SC_Erase] = new EraseSubCommand(); cmdMap[SC_Rw] = new RwSubCommand(); cmdMap[SC_Ww] = new WwSubCommand(); cmdMap[SC_Wwne] = new WwneSubCommand(); cmdMap[SC_Wbne] = new WbneSubCommand(); cmdMap[SC_Wb] = new WbSubCommand(); cmdMap[SC_Rb] = new RbSubCommand(); cmdMap[SC_Clear_Sem] = new ClearSemSubCommand(); cmdMap[SC_Check_Sum] = new CheckSumSubCommand(); cmdMap[SC_Time_Stamp] = new TimeStampSubCommand(); cmdMap[SC_Cache_Image] = new CacheImageSubCommand(); cmdMap[SC_Sign] = new SignSubCommand(); cmdMap[SC_Add_Hmac] = new AddHmacSubCommand(); cmdMap[SC_Set_Public_Keys] = new SetPublicKeysSubCommand(); cmdMap[SC_Set_Forbidden_Versions] = new SetForbiddenVersionsSubCommand(); cmdMap[SC_Image_Reactivation] = new ImageReactivationSubCommand(); cmdMap[SC_RSA_Sign] = new SignRSASubCommand(); cmdMap[SC_Binary_Compare] = new BinaryCompareSubCommand(); #ifndef NO_OPEN_SSL cmdMap[SC_Export_Public_Key] = new ExportPublicSubCommand(); #endif cmdMap[SC_Query_Components] = new QueryComponentSubCommand(); return cmdMap; } void Flint::deInitSubcommandMap(map_sub_cmd_t_to_subcommand cmdMap) { for (map_sub_cmd_t_to_subcommand::iterator it = cmdMap.begin(); it != cmdMap.end(); ++it) delete it->second; } Flint::Flint() : CommandLineRequester(FLINT_DISPLAY_NAME " [OPTIONS] [Parameters]"), _flintParams(), _cmdParser(FLINT_DISPLAY_NAME " - Flash Interface"), _subcommands(initSubcommandMap()) { initCmdParser(); } Flint::~Flint() { deInitSubcommandMap(_subcommands); } FlintStatus Flint::run(int argc, char* argv[]) { // Step1 parse input // There are some memory allocations parseCmdLine ParseStatus status; try { status = this->parseCmdLine(argc, argv); } catch (exception& e) { cout << "-E- " << e.what() << endl; return FLINT_FAILED; } if (status == PARSE_OK_WITH_EXIT) { return FLINT_SUCCESS; } else if (status == PARSE_ERROR || status == PARSE_ERROR_SHOW_USAGE) { if (string(_cmdParser.GetErrDesc()).length() > 0) { cout << "-E- " << this->_cmdParser.GetErrDesc() << endl; } return FLINT_FAILED; } if (_flintParams.cmd == SC_No_Cmd && !_flintParams.clear_semaphore) { cout << FLINT_NO_COMMAND_ERROR << endl; return FLINT_FAILED; } if (_flintParams.clear_semaphore) { if (_flintParams.cmd != SC_No_Cmd) { printf(FLINT_CLEAR_SEM_CMD_ERROR); return FLINT_FAILED; } _flintParams.cmd = SC_Clear_Sem; } // TODO: adrianc: remove use_fw flag and this condition before MFT-4.1.0 if (_flintParams.use_fw && _flintParams.override_cache_replacement) { printf("-E- flags --use_fw and --override_cache_replacement/-ocr cannot be specified simultaneously"); return FLINT_FAILED; } // Step 2 save argv as a single cmd string in flint params for the log functionality for (int i = 0; i < argc; i++) { _flintParams.fullCmd = _flintParams.fullCmd + argv[i] + " "; } // TODO: Step 3 check flintParams for contradictions? // Step 4 execute command from the correct subcommand class if (_subcommands.count(_flintParams.cmd) == 0) { // should not be reached printf("-E- FATAL: command object not found.\n"); return FLINT_FAILED; } _subcommands[_flintParams.cmd]->setParams(_flintParams); return _subcommands[_flintParams.cmd]->executeCommand(); } int main(int argc, char* argv[]) { initHandler(); try { gFlint = new Flint(); FlintStatus rc = gFlint->run(argc, argv); if (gFlint) { ignoreSignals(); // clean-up should be signal free, prevent possible clean-up re-entry delete gFlint; gFlint = NULL; } return rc; } catch (std::exception& e) { cout << "-E- " << e.what() << endl; return FLINT_FAILED; } } mstflint-4.26.0/flint/subcommands_linkx.cpp0000644000175000017500000003376414522641732021260 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Created on: oCT , 2020 */ #include #include #include #include #include #include #include #include #include "mtcr.h" #include "common/compatibility.h" #include "fw_comps_mgr/fw_comps_mgr.h" #include "fw_comps_mgr/fw_comps_mgr_dma_access.h" #include "mlxfwops/lib/fw_version.h" #include "subcommands.h" #include "tools_layouts/cx4fw_layouts.h" using namespace std; const char* ImageAState[] = { "Image A is running", "Image A is committed, module boots from image A", "Image A is erased / empty", "Reserved", "Image B is running", "Image B is committed, module boots from image B", "Image B is erased / empty", "Reserved"}; const char* FwImageBitmap[] = {"FW image A is present", "FW image B is present", "Factory/boot image is present", "Reserved", "Reserved", "Reserved", "Reserved", "Reserved"}; const char* SupportedProtocol[] = { "Does not support either one of the FW update procedures", "SFF-8636 management interface and pseudo-CMIS FW. Update is supported", "CMIS 4.0 is implemented", "Reserved", "Reserved", "Reserved", "Reserved", "Reserved", }; const char* ActivationType[] = { "HW reset is required. Host should be prepared to power cycle a cable after sending a Run FW Image command.", "Self-activation with HW reset contained in the Run FW Image command. No additional actions required from the host.", "Self-activation with hitless reset contained in the Run FW Image command. No additional actions required from the host.", "Reserved", "Reserved", "Reserved", "Reserved", "Reserved"}; const char* ComponentStatusName[16] = {"NOT_PRESENT", "PRESENT", "IN_USE", "DOWNSTREAM_DEVICE_PRESENT", "Reserved"}; const char* ComponentUpdateStateName[16] = {"IDLE", "IN_PROGRESS", "APPLIED", "ACTIVE", "ACTIVE_PENDING_RESET", "FAILED", "CANCELED", "BUSY", "RESERVED"}; void QuerySubCommand::AddTableHeaderForCSVFormat(string& outputString) { outputString += "Host,Device index,Component Index,Component Status,Component Update State"; outputString += ",Running state,Information block"; outputString += ",FW A Version,FW B Version,FW Factory Version,SupportedProtocol,Activation type,Serial number\n"; } bool QuerySubCommand::PrintLinkXQuery(string& outPutString, const string& host, int deviceIndex, const comp_status_st& ComponentStatus, const component_linkx_st& linkx_data, char* delimeter, bool isCSV) { char buffer[4096] = {0}; sprintf(buffer, isCSV ? "%s%s%d%s%d%s%s%s%s%s" : "Host : %s%s Device index %d%s Component Index %d%s Component Status %s%s Component Update State %s%s ", host.c_str(), delimeter, deviceIndex, delimeter, ComponentStatus.component_index, delimeter, ComponentStatusName[ComponentStatus.component_status], delimeter, ComponentUpdateStateName[ComponentStatus.component_update_state], delimeter); outPutString += buffer; if (linkx_data.fw_image_status_bitmap != 0) { if (!isCSV) { sprintf(buffer, "Running state is : "); outPutString += buffer; } for (int i = 0; i < 8; i++) { if (linkx_data.fw_image_status_bitmap & (1 << i)) { sprintf(buffer, isCSV ? "%s" : " %s ", ImageAState[i]); outPutString += buffer; } } outPutString += delimeter; } else { if (isCSV) { outPutString += delimeter; } } if (linkx_data.fw_image_info_bitmap != 0) { if (!isCSV) { sprintf(buffer, "Information block is : "); outPutString += buffer; } for (int i = 0; i < 8; i++) { if (linkx_data.fw_image_info_bitmap & (1 << i)) { sprintf(buffer, isCSV ? "%s" : " %s ", FwImageBitmap[i]); outPutString += buffer; } } outPutString += delimeter; } else { if (isCSV) { outPutString += delimeter; } } sprintf(buffer, isCSV ? "%02d.%02d.%04d%s" : "FW A Version : %02d.%02d.%04d%s", linkx_data.image_a_major, linkx_data.image_a_minor, linkx_data.image_a_subminor, delimeter); outPutString += buffer; sprintf(buffer, isCSV ? "%02d.%02d.%04d%s" : "FW B Version : %02d.%02d.%04d%s", linkx_data.image_b_major, linkx_data.image_b_minor, linkx_data.image_b_subminor, delimeter); outPutString += buffer; sprintf(buffer, isCSV ? "%02d.%02d.%04d%s" : "FW Factory Version : %02d.%02d.%04d%s", linkx_data.factory_image_major, linkx_data.factory_image_minor, linkx_data.factory_image_subminor, delimeter); outPutString += buffer; sprintf(buffer, isCSV ? "%s%s" : "SupportedProtocol: %s%s", SupportedProtocol[linkx_data.management_interface_protocol], delimeter); outPutString += buffer; sprintf(buffer, isCSV ? "%s%s" : "Activation type: %s%s", ActivationType[linkx_data.activation_type], delimeter); outPutString += buffer; sprintf(buffer, isCSV ? "%d" : "Serial number is %d", linkx_data.vendor_sn); outPutString += buffer; outPutString += "\n"; return true; } FlintStatus QuerySubCommand::QueryLinkX(string deviceName, string outputFile, std::vector deviceIds) { if (preFwOps() == FLINT_FAILED) { reportErr(true, FLINT_OPEN_FWOPS_DEVICE_ERROR_1, deviceName.c_str()); return FLINT_FAILED; } if (_fwOps->IsCableQuerySupported() == false) { reportErr(true, LINKX_QUERY_DEVICE_NOT_SUPPORTED, deviceName.c_str()); return FLINT_FAILED; } FwComponent bootImageComponent; std::vector compsToBurn; for (unsigned int i = 0; i < deviceIds.size(); i++) { if (deviceIds[i] < 0) { printf("-E- Downstream device id's must be non-negative integers.\n"); return FLINT_FAILED; } } mfile* mfile = mopen_adv((const char*)deviceName.c_str(), (MType)(MST_DEFAULT)); if (!mfile) { reportErr(true, "-E- Failed to open device.\n"); return FLINT_FAILED; } string outPutString; bool isCSV = false; bool finalResult = true; char* delimeter = (char*)"\n"; if (outputFile.empty() == false) { isCSV = true; delimeter = (char*)","; AddTableHeaderForCSVFormat(outPutString); } FwCompsMgr fwCompsAccess(mfile, FwCompsMgr::DEVICE_HCA_SWITCH, 0); for (unsigned int i = 0; i < deviceIds.size(); i++) { int deviceIndex = deviceIds[i] + 1; fwCompsAccess.SetIndexAndSize(deviceIndex, 1); comp_status_st ComponentStatus; if (!fwCompsAccess.RefreshComponentsStatus(&ComponentStatus)) { printf("-E- Refresh components failed, error is %s.\n", fwCompsAccess.getLastErrMsg()); finalResult = false; continue; } component_linkx_st linkx_data; if (!fwCompsAccess.GetComponentLinkxProperties(FwComponent::COMPID_LINKX, &linkx_data)) { printf("-E- Cable query failed, the error is %s.\n", fwCompsAccess.getLastErrMsg()); finalResult = false; continue; } if (PrintLinkXQuery(outPutString, deviceName, deviceIndex - 1, ComponentStatus, linkx_data, delimeter, isCSV) == false) { printf("-E- Query function failed.\n"); finalResult = false; } } if (outputFile.empty() == true) { printf("%s\n", outPutString.c_str()); } else { FILE* f = fopen(outputFile.c_str(), "w"); if (f == NULL) { printf("-E- Can not open output file %s.\n", outputFile.c_str()); return FLINT_FAILED; } fprintf(f, "%s", outPutString.c_str()); fclose(f); } if (finalResult == false) { return FLINT_FAILED; } return FLINT_SUCCESS; } FlintStatus BurnSubCommand::BurnLinkX(string deviceName, int deviceIndex, int deviceSize, string binaryFileName, bool linkx_auto_update, bool activationNeeded, bool downloadTransferNeeded, int activate_delay_sec, ProgressCallBackAdvSt* funcAdv) { if (preFwOps() == FLINT_FAILED) { reportErr(true, FLINT_OPEN_FWOPS_DEVICE_ERROR_1, deviceName.c_str()); return FLINT_FAILED; } if (_fwOps->IsCableQuerySupported() == false) { reportErr(true, LINKX_BURN_DEVICE_NOT_SUPPORTED, deviceName.c_str()); return FLINT_FAILED; } vector binaryData(8, 0xff); if (downloadTransferNeeded) { if (!readFromFile(binaryFileName, binaryData)) { reportErr(true, "Cannot read data from file %s\n.", binaryFileName.c_str()); return FLINT_FAILED; } } mfile* mfile = mopen_adv((const char*)deviceName.c_str(), (MType)(MST_DEFAULT)); if (!mfile) { reportErr(true, "Cannot open device %s\n.", deviceName.c_str()); return FLINT_FAILED; } if (linkx_auto_update && activationNeeded && activate_delay_sec == 0 && (mfile->flags & MDEVS_IB) != 0) { // IB device if (!askUser( "The autoupdate activation process may cause a disconnection from the InBand connection, do you want to continue?")) { mclose(mfile); return FLINT_FAILED; } } FwComponent bootImageComponent; std::vector compsToBurn; FwCompsMgr fwCompsAccess(mfile, FwCompsMgr::DEVICE_HCA_SWITCH, 0); fwCompsAccess.GenerateHandle(); bool isSecondary = false; if (/*(mfile->flags & MDEVS_IB) && */ !fwCompsAccess.IsSecondaryHost(isSecondary)) // TODO - check if limitation // applicable to IB only { printf("-E- Failed to query if device is secondary\n"); return FLINT_FAILED; } if (isSecondary) { printf("-E- LinkX burn is not supported by secondary.\n"); return FLINT_FAILED; } fwCompsAccess.SetIndexAndSize(deviceIndex + 1, deviceSize, linkx_auto_update, activationNeeded, downloadTransferNeeded, activate_delay_sec); if (!fwCompsAccess.RefreshComponentsStatus()) { printf("-E- Refresh components failed, error is %s.\n", fwCompsAccess.getLastErrMsg()); return FLINT_FAILED; } bootImageComponent.init(binaryData, binaryData.size(), FwComponent::COMPID_LINKX); compsToBurn.push_back(bootImageComponent); if (downloadTransferNeeded) { printf("-I- Downloading FW ...\n"); if (fwCompsAccess.isMCDDSupported()) { // Checking if BME is disabled to print indication to user bool isBmeSet = DMAComponentAccess::isBMESet(fwCompsAccess.getMfileObj()); if (!isBmeSet) { DPRINTF(("-W- DMA access is not supported due to BME is unset (Bus Master Enable).\n")); } } } if (!fwCompsAccess.burnComponents(compsToBurn, funcAdv)) { char* err_msg = (char*)fwCompsAccess.getLastErrMsg(); bool IbError = (strcmp("Unknown MAD error", err_msg) == 0); if (linkx_auto_update && activationNeeded && activate_delay_sec == 0 && ((mfile->flags & MDEVS_IB) != 0) && IbError) { // IB device printf( "-W- The activation process caused a disconnection from the InBand connection for a few minutes, please wait for reconnection. The error is %s \n", fwCompsAccess.getLastErrMsg()); return FLINT_SUCCESS; } else { printf("-E- Cable burn failed, error is %s.\n", fwCompsAccess.getLastErrMsg()); return FLINT_FAILED; } } else { printf("-I- Cable burn finished successfully.\n"); } return FLINT_SUCCESS; } mstflint-4.26.0/flint/err_msgs.h0000644000175000017500000002663314522641732017023 0ustar tzafrirctzafrirc/* * * err_msgs.h - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #ifndef __ERR_MSGS_H__ #define __ERR_MSGS_H__ /********************** * Flint Status Code *********************/ typedef enum { FLINT_SUCCESS = 0, FLINT_FAILED = 1, FLINT_QUERY_ERROR = 2, FLINT_BURN_ABORTED = 7 } FlintStatus; /*********************** * Flint Error Messages **********************/ #define FLINT_CLEAR_SEM_CMD_ERROR "No command is allowed when -clear_semaphore flag is given.\n" #define FLINT_COMMAND_FLAGS_ERROR "For %s command, Please specify %s.\n" #define FLINT_COMMAND_INCORRECT_FLAGS_ERROR "For %s command, %s.\n" #define FLINT_NO_OPTIONS_FOUND_ERROR "No options found. " #define FLINT_INVALID_COMMAD_ERROR "Invalid command: %s\n" #define FLINT_TOO_MANY_ARGS_ERROR "Too many arguments. Expected: %d , Received: %d\n" #define FLINT_TOO_FEW_ARGS_ERROR "Too few arguments. Expected: %d , Received: %d\n" #define FLINT_TOO_FEW_MINIMUM_ARGS_ERROR "Too few arguments. Expected at least: %d , Received: %d\n" #define FLINT_NO_COMMAND_ERROR "No command found." #define FLINT_OPEN_FWOPS_DEVICE_ERROR "Cannot open Device: %s. %s\n" #define FLINT_OPEN_FWOPS_DEVICE_ERROR_1 "Cannot open Device: %s.\n" #define FLINT_OPEN_FWOPS_IMAGE_ERROR "Cannot open Image: %s. %s\n" #define FLINT_DEVICE_AND_IMAGE_ERROR "Please specify either Device or Image.\n" #define FLINT_NO_DEVICE_ERROR "Please specify Device.\n" #define FLINT_NO_IMAGE_ERROR "Please specify Image file.\n" #define FLINT_MISSED_ARG_ERROR "Missed %s parameter after \"%s\" command.\n" #define FLINT_CMD_ARGS_ERROR "Command \"%s\" requires %d arguments, but %d arguments were given\n" #define FLINT_CMD_ARGS_ERROR2 "Command \"%s\" requires at most %d arguments, but %d arguments were given\n" #define FLINT_CMD_ARGS_ERROR3 "Command \"%s\" requires at least %d arguments, but %d arguments were given\n" #define FLINT_CMD_ARGS_ERROR4 "Command \"%s\" requires %d or %d arguments, but %d arguments were given\n" #define FLINT_CMD_ARGS_ERROR5 "Command \"%s\" does not require arguments\n" #define FLINT_INVALID_OPTION_ERROR "Unknown option \"%s\" for the \"%s\" command. you can use %s.\n" #define FLINT_INVALID_FLAG_ERROR "Invalid switch \"%s\" is specified.\n" #define FLINT_INVALID_FLAG_ERROR_5TH_GEN "Invalid switch \"%s\" is specified for 5th gen device.\n" #define FLINT_INVALID_FLAG_WITH_FLAG_ERROR "Cannot specify \"%s\" flag with \"%s\" flag.\n" #define FLINT_INVALID_FLAG_WITHOUT_FLAG_ERROR "\"%s\" flag must be specified with \"%s\" flag.\n" #define FLINT_INVALID_FLAG_WITH_CMD_ERROR "Cannot specify flag: %s with Command: %s\n" #define FLINT_CMD_VERIFY_ERROR "FW image verification failed: %s. AN HCA DEVICE CAN NOT BOOT FROM THIS IMAGE.\n" #define FLINT_CMD_VERIFY_ERROR_1 \ "FW image verification failed: No valid FS4 image found.Check the flash parameters, if specified..AN HCA DEVICE " \ "CAN NOT BOOT FROM THIS IMAGE" #define FLINT_CMD_VERIFY_ERROR_2 "FW image verification failed. AN HCA DEVICE CAN NOT BOOT FROM THIS IMAGE.\n" #define FLINT_FAILED_QUERY_ERROR "Failed to query %s: %s. %s\n" #define FLINT_COMMAND_DEVICE_IMAGE_ERROR "Command \"%s\" requires both image and device to be specified.\n" #define FLINT_COMMAND_DEVICE_ERROR "Command \"%s\" requires device, but an image file was given.\n" #define FLINT_COMMAND_IMAGE_ERROR "Command \"%s\" requires an image file, but device was given.\n" #define FLINT_COMMAND_DEVICE_ERROR2 "Command \"%s\" requires device, but both an image file and a device are given.\n" #define FLINT_COMMAND_IMAGE_ERROR2 "Command \"%s\" requires an image, but both an image file and a device are given.\n" #define FLINT_HW_SET_ARGS_ERROR "bad argument of hw set command : %s, it should be in the format PARAM_NAME=VALUE\n" #define FLINT_HW_COMMAND_ERROR "HW %s failed. %s\n" #define FLINT_SWRESET_ERROR "Software reset failed. %s\n" #define FLINT_ERASE_SEC_ERROR "Erase sector failed. %s\n" #define FLINT_INVALID_ADDR_ERROR "Invalid address \"%s\"\n" #define FLINT_FLASH_READ_ERROR "Flash read failed. %s\n" #define FLINT_FLASH_WRITE_ERROR "Flash write failed. %s\n" #define FLINT_INVALID_DATA_ERROR "Invalid data \"%s\"\n" #define FLINT_INVALID_SIZE_ERROR "Invalid size \"%s\", Length should be 4-bytes aligned.\n" #define FLINT_INVALID_ARG_ERROR "Invalid argument \"%s\"\n" #define FLINT_OPEN_FILE_ERROR "Cannot open %s: %s\n" #define FLINT_WRITE_FILE_ERROR "Failed to write to %s: %s\n" #define FLINT_IO_OPEN_ERROR "Failed to open %s: %s\n" #define FLINT_IMAGE_READ_ERROR "Failed to read image. %s\n" #define FLINT_READ_ERROR "Failed to read from %s. %s\n" #define FLINT_READ_FILE_ERROR "Failed to read from %s.\n" #define FLINT_WIN_ONLY_SUPP_ERROR "Command \"%s\" is supported only in windows.\n" #define FLINT_GEN_COMMAND_ERROR "Failed to execute command %s. %s\n" #define FLINT_FS3_BB_ERROR \ "bb command is not supported anymore in FS3/FS4 images, please use b for burning FS3/FS4 images.\n" #define FLINT_FSX_BURN_ERROR "Burning %s image failed: %s\n" #define FLINT_FS2_BURN_ERROR "Burning FS2 image failed: %s\n" #define FLINT_PSID_ERROR "PSID mismatch. The PSID on flash (%s) differs from the PSID in the given image (%s).\n" #define FLINT_FS2_STRIPED_ERROR "The -striped_image cannot be used with the burn command\n" #define FLINT_IMG_DEV_COMPAT_ERROR \ "The given device requires an %s image type, but the given image file does not contain an %s FW image\n" #define FLINT_UNKNOWN_FW_TYPE_ERROR "Unknown Firmware Type.\n" #define FLINT_READ_ROM_ERROR "Read ROM failed. %s\n" #define FLINT_SG_GUID_ERROR "Cannot set GUIDs: %s\n" #define FLINT_SG_UID_ERROR "Failed to set UID: %s\n" #define FLINT_MFG_ERROR "Failed to set manufacture guids: %s\n" #define FLINT_VSD_ERROR "Failed to set the VSD: %s\n" #define FLINT_VPD_ERROR "Failed to set VPD: %s\n" #define FLINT_CERT_CHAIN_ERROR "Failed to set attestation certificate chain: %s\n" #define FLINT_SET_KEY_ERROR "Failed to set the HW access key: %s\n" #define FLINT_RESET_CFG_ERROR "Failed to reset Configuration: %s\n" #define FLINT_FIX_IMG_ERROR "Failed to fix device image: %s\n" #define FLINT_DROM_ERROR "Remove ROM failed: %s\n" #define FLINT_BROM_ERROR "Burn ROM failed: %s\n" #define FLINT_DUMP_ERROR "Failed dumping %s : %s\n" #define FLINT_ROM_QUERY_ERROR "Image file rom (%s) query failed. %s\n" #define FLINT_WB_FILE_ERROR "failed to open file: %s. %s\n" #define FLINT_WB_ERROR "write Block Failed. %s\n" #define FLINT_NO_ZLIB_ERROR "Executable was compiled with \"dump files\" option disabled.\n" #define FLINT_INVALID_PASSWORD "Invalid Password.\n" #define FLINT_NO_GUID_MAC_FLAGS_ERROR "Can not set GUIDs/MACs: please run with -uid/-guid/-mac flag.\n" #define FLINT_NOT_SUPP_UID_FLAG_ERROR \ "Can not set GUIDs/MACs: %s flag is not supported for this device.\nPlease run with -uid/-guid/-mac flag.\n" #define FLINT_NO_UID_FLAG_ERROR "Can not set GUIDs/MACs: uid is not specified, please run with -uid flag.\n" #define FLINT_CHECKSUM_ERROR "Failed to calculate checksum on %s: %s\n" #define FLINT_CHECKSUM_PARSE_ERROR "Failed to parse given checksum.\n" #define FLINT_CHECKSUM_LEN_ERROR "MD5 checksum should be exactly 16 bytes long.\n" #define FLINT_CHECKSUM_HEX_ERROR "MD5 checksum should contain only hexadecimal digits.\n" #define FLINT_CACHE_IMAGE_ERROR \ "Failed to issue image cache request to driver. %s. make sure Mellanox driver is loaded and working properly.\n" #define FLINT_SET_PUBLIC_KEYS_ERROR "Failed to set the public keys: %s\n" #define FLINT_SET_FORBIDDEN_VERSIONS_ERROR "Failed to set the forbidden versions: %s\n" #define FLINT_SIGN_ERROR "Failed to sign the image: %s\n" #define FLINT_HMAC_ERROR "Failed to add HMAC: %s\n" #define FLINT_FAILED_IMAGE_REACTIVATION_ERROR "Failed to execute image reactivation on device %s. Error: %s.\n" #define FLINT_NO_MFA2 "MFA2 funcionality is not supported" #define FLINT_NO_HSM "HSM funcionality is not supported" #define FLINT_ILLEGAL_CPU_VALUE \ "Illegal value for CPU utilization. Values must be between 1 (low CPU) and 5 (high CPU).\n" #define FLINT_FILE_SIZE_ERROR "Can not get file size for \"%s\".\n" #define FAILED_TO_VERIFY_PARAMS "Failed to verify params(internal error)." #define INVALID_GUID_SYNTAX "Invalid GUID syntax (%s) %s\n" #define FAILED_GET_CONSOLE_MODE "Failed to get console mode.\n" #define USER_ABORT "Aborted by user\n" #define SECTION_NOT_FOUNT "%s section not found in the given image." #define UNCOMPRESSS_ERROR "Failed uncompressing FW configuration section. uncompress returns %d" #define OPEN_WRITE_FILE_ERROR "Can not open file %s for write: %s." #define IMAGE_SIGN_TYPE_ERROR "Image signing is applicable only for selected FW images. Please check your image type.\n" #define SIGN_PRIVATE_KEY_NOT_FOUND "Can't find private key file %s \n" #define SIGN_PUBLIC_KEY_NOT_FOUND "Can't find public key file %s \n" #define LINKX_QUERY_DEVICE_NOT_SUPPORTED "Linkx query for device %s is not supported.\n" #define LINKX_BURN_DEVICE_NOT_SUPPORTED "Linkx burn for device %s is not supported.\n" /************************** * Flint Warning Messages *************************/ #define FLINT_NOT_MLNX_FW_WARNING "-W- Not a Mellanox FW image (vendor_id = 0x%04x). VSD and PSID are not displayed.\n" #define FLINT_BLANK_GUIDS_WARNING "-W- GUIDs/MACs values and their CRC are not set.\n" #define FLINT_MULTI_BIT_WARNING "Multicast bit (bit 40) is set." #define FLINT_MORE_48_BITS_WARNING "More than 48 bits are used." #define FLINT_BAD_MAC_ADRESS_WARNING "\n-W- Bad mac address ( %4.4x%8.8x ): %s\n" #define FLINT_MAC_ENTRIES_WARNING \ "-W- Cannot get MAC address: Expecting %d entries in guid section, got %d. Probably an old FW image. Please " \ "update.\n" #define FLINT_SET_GUIDS_WARRNING "-W- GUIDs are already set, re-burning image with the new GUIDs ...\n" #define FLINT_OCR_WARRNING \ "\n-W- Firmware flash cache access is enabled. Running in this mode may cause the firmware to hang.\n" #define FLINT_OPEN_LOG_FILE_WARNING "-W- Failed to open log file \"%s\": %s. No logs will be saved\n" #endif mstflint-4.26.0/flint/subcommands.h0000644000175000017500000004776214522641732017523 0ustar tzafrirctzafrirc/* * * subcommands.h - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #ifndef __SUBCOMMANDS_H__ #define __SUBCOMMANDS_H__ #define MAX_PASSWORD_LEN 256 #include #include #include #include "tools_layouts/image_layout_layouts.h" #include "flint_params.h" #include "mlxfwops/lib/fw_ops.h" #include "mlxfwops/lib/fs_checks.h" #include "err_msgs.h" using namespace std; #ifndef NO_MSTARCHIVE #include "mlxarchive/mlxarchive_mfa2_package_gen.h" #include "mlxarchive/mlxarchive_mfa2_utils.h" using namespace mfa2; #endif // we might need to close the log from the main program in case of interrupt void close_log(); void print_time_to_log(); int print_line_to_log(const char* format, ...); int write_cmd_to_log(char* av[], int ac, CommandType cmd, bool write = true); int write_result_to_log(int is_failed, const char* err_msg, bool write = true); typedef enum what_to_ver { Wtv_Img, Wtv_Dev, Wtv_Dev_And_Img, Wtv_Dev_Or_Img, Wtv_Uninitilized } what_to_ver_t; /*Subcommand classes:*/ #define FLINT_ERR_LEN 1024 class SubCommand { protected: FwOperations* _fwOps; FwOperations* _imgOps; FBase* _io; what_to_ver_t _v; int _maxCmdParamNum; int _minCmdParamNum; FlintParams _flintParams; // info about the Subcommand string _name; string _desc; string _extendedDesc; string _flagLong; string _flagShort; string _param; string _paramExp; string _example; char _errBuff[FLINT_ERR_LEN]; sub_cmd_t _cmdType; bool _mccSupported; bool _imageReactivation; #ifndef NO_MSTARCHIVE MFA2* _mfa2Pkg; #endif // Methods that are commonly used in the various subcommands: // TODO: add middle classes and segregate as much of these common methods between these classes virtual bool verifyParams() { return true; }; bool basicVerifyParams(); void initDeviceFwParams(char* errBuff, FwOperations::fw_ops_params_t& fwParams); FlintStatus openOps(bool ignoreSecurityAttributes = false, bool ignoreDToc = false); FlintStatus openIo(); virtual FlintStatus preFwOps(bool ignoreSecurityAttributes = false, bool ignoreDToc = false); virtual FlintStatus preFwAccess(); bool getRomsInfo(FBase* io, roms_info_t& romsInfo); void displayOneExpRomInfo(const rom_info_t& info); void displayExpRomInfo(const roms_info_t& romsInfo, const char* preStr); string getExpRomVerStr(const rom_info_t& info); string getRomProtocolStr(u_int8_t proto); string getRomSuppCpuStr(u_int8_t suppCpu); u_int32_t getUserChoice(u_int32_t maximumValue); static int verifyCbFunc(char* str); static int CbCommon(int completion, char* preStr, char* endStr = NULL); static int burnCbFs2Func(int completion); static int burnCbFs3Func(int completion); static int advProgressFunc(int completion, const char* stage, prog_t type, int* unknownProgress); static int burnBCbFunc(int completion); static int vsdCbFunc(int completion); static int setKeyCbFunc(int completion); static int bromCbFunc(int completion); static int dromCbFunc(int completion); static int wbCbFunc(int completion); static int resetCfgCbFunc(int completion); bool printGuidLine(guid_t* new_guids, guid_t* old_guids, int guid_index); bool printMacLine(guid_t* new_guids, guid_t* old_guids, int mac_index); bool printGUIDsFunc(guid_t guids[GUIDS], guid_t macs[MACS], guid_t old_guids[GUIDS], guid_t old_macs[MACS], bool print_guids, bool print_macs, int portNum, bool old_guid_fmt); bool reportGuidChanges(guid_t* new_guids, guid_t* new_macs, guid_t* old_guids, guid_t* old_macs, bool printGuids, bool printMacs, int guidNum); bool checkGuidsFlags(u_int16_t devType, u_int8_t fwType, bool guidsSpecified, bool macsSpecified, bool uidSpecified, bool ibDev, bool ethDev); void printMissingGuidErr(bool ibDev, bool ethDev); bool extractUIDArgs(std::vector& cmdArgs, u_int16_t numOfGuids[2], u_int8_t stepSize[2]); bool extractValuesFromString(string valStr, u_int16_t values[2], string origArg); bool extractValuesFromString(string valStr, u_int8_t values[2], string origArg); bool extractValuesFromStringAux(string valStr, u_int32_t values[2], string origArg); bool getGUIDFromStr(string str, guid_t& guid, string prefixErr = ""); bool getPasswordFromUser(const char* preStr, char buffer[MAX_PASSWORD_LEN + 1]); bool askUser(const char* question = NULL, bool printAbrtMsg = true); bool isCmdSupportLog(); void openLog(); inline void closeLog() { close_log(); } // print errors to an err buff, log if needed and stdout void reportErr(bool shouldPrint, const char* format, ...); bool readFromFile(const string& filePath, std::vector& buff); bool getFileSize(const string& filePath, long& fileSize); bool writeToFile(string filePath, const std::vector& buff); FlintStatus writeImageToFile(const char* file_name, u_int8_t* data, u_int32_t length); bool dumpFile(const char* confFile, std::vector& data, const char* sectionName); bool unzipDataFile(std::vector data, std::vector& newData, const char* sectionName); const char* fwImgTypeToStr(u_int8_t fwImgType); FlintStatus UnlockDevice(FwOperations*); FlintStatus LockDevice(FwOperations*); void ClearGuidStruct(FwOperations::sg_params_t& sgParams); bool stringsCommaSplit(string str, std::vector& deviceIds); public: SubCommand() : _fwOps(NULL), _imgOps(NULL), _io(NULL), _v(Wtv_Uninitilized), _maxCmdParamNum(-1), _minCmdParamNum(-1), _mccSupported(false), _imageReactivation(false) #ifndef NO_MSTARCHIVE , _mfa2Pkg(NULL) #endif { _cmdType = SC_No_Cmd; memset(_errBuff, 0, sizeof(_errBuff)); } virtual ~SubCommand(); virtual FlintStatus executeCommand() = 0; virtual void cleanInterruptedCommand() {} // by default do nothing inline void setParams(const FlintParams& flintParams) { _flintParams = flintParams; } inline string& getName() { return this->_name; } inline string& getDesc() { return this->_desc; } inline string& getExtDesc() { return this->_extendedDesc; } inline string& getFlagL() { return this->_flagLong; } inline string& getFlagS() { return this->_flagShort; } inline string& getParam() { return this->_param; } inline string& getParamExp() { return this->_paramExp; } inline string& getExample() { return this->_example; } }; class BurnSubCommand : public SubCommand { private: u_int8_t _fwType; fw_info_t _devInfo; fw_info_t _imgInfo; FwOperations::ExtBurnParams _burnParams; bool _devQueryRes; int _unknownProgress; // used to trace the progress of unknown progress. FwCompsMgr* fwCompsAccess; FlintStatus burnFs3(); FlintStatus burnFs2(); bool checkFwVersion(bool CreateFromImgInfo = true, u_int16_t fw_ver0 = 0, u_int16_t fw_ver1 = 0, u_int16_t fw_ver2 = 0); bool checkPSID(); void updateBurnParams(); bool dealWithExpRom(); bool checkMatchingExpRomDevId(const fw_info_t& info); bool dealWithGuids(); bool dealWithVSD(); FlintStatus burnMFA2(); FlintStatus burnMFA2LiveFish(dm_dev_id_t devid_t); FlintStatus burnCongestionControl(); bool verifyMFA2Params(bool IsLiveFish); FlintStatus BurnLinkX(string deviceName, int deviceIndex, int deviceSize, string binaryFileName, bool linkx_auto_update, bool activationNeeded, bool downloadTransferNeeded, int activate_delay_sec, ProgressCallBackAdvSt* ProgressFuncAdv); public: BurnSubCommand(); ~BurnSubCommand(); FlintStatus executeCommand(); virtual void cleanInterruptedCommand(); bool verifyParams(); }; class BinaryCompareSubCommand : public SubCommand { private: fw_info_t _devInfo; fw_info_t _imgInfo; FwOperations::ExtBurnParams _burnParams; bool _devQueryRes; int _unknownProgress; // used to trace the progress of unknown progress. FlintStatus compareMFA2(); bool ReadFwOpsImageData(vector& deviceBuff, vector& imgBuff); bool CompareEncryptedFwOpsViaDirectAccess(bool& res); bool CompareEncryptedFwOpsViaMCC(bool& res); bool CompareEncryptedFwOps(bool& res); bool CompareFwOps(bool& res); public: BinaryCompareSubCommand(); ~BinaryCompareSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class QuerySubCommand : public SubCommand { private: fw_info_t _imgInfo; FlintStatus printImageInfo(const fw_info_t& fwInfo); string printSecurityAttrInfo(u_int32_t m); FlintStatus printInfo(const fw_info_t& fwInfo, bool fullQuery); bool displayFs4Uids(const fw_info_t& fwInfo); bool displayFs3Uids(const fw_info_t& fwInfo); bool displayFs2Uids(const fw_info_t& fwInfo); bool checkMac(u_int64_t mac, string& warrStr); FlintStatus queryMFA2(); void AddTableHeaderForCSVFormat(string& outputString); bool PrintLinkXQuery(string& outputString, const string& host, int deviceIndex, const comp_status_st& ComponentStatus, const component_linkx_st& linkx_data, char* delimeter, bool isCSV); FlintStatus QueryLinkX(string deviceName, string outputFile, std::vector deviceIds); public: QuerySubCommand(); ~QuerySubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class QueryComponentSubCommand : public SubCommand { public: QueryComponentSubCommand(); ~QueryComponentSubCommand(); FlintStatus executeCommand() override; bool verifyParams() override; FlintStatus querySyncE(); }; class Extract4MBImageSubCommand : public SubCommand { private: public: Extract4MBImageSubCommand(); ~Extract4MBImageSubCommand(); FlintStatus executeCommand(); }; class AddHmacSubCommand : public SubCommand { private: public: AddHmacSubCommand(); ~AddHmacSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class SignSubCommand : public SubCommand { private: public: SignSubCommand(); ~SignSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class ExportPublicSubCommand : public SubCommand { public: ExportPublicSubCommand(); ~ExportPublicSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class SignRSASubCommand : public SubCommand { private: public: SignRSASubCommand(); ~SignRSASubCommand(); FlintStatus executeCommand(); bool verifyParams(); protected: unique_ptr createSigner(); }; class SetPublicKeysSubCommand : public SubCommand { private: public: SetPublicKeysSubCommand(); ~SetPublicKeysSubCommand(); FlintStatus executeCommand(); }; class SetForbiddenVersionsSubCommand : public SubCommand { private: public: SetForbiddenVersionsSubCommand(); ~SetForbiddenVersionsSubCommand(); FlintStatus executeCommand(); }; class VerifySubCommand : public SubCommand { private: public: VerifySubCommand(); ~VerifySubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class ImageReactivationSubCommand : public SubCommand { public: ImageReactivationSubCommand(); virtual ~ImageReactivationSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class SwResetSubCommand : public SubCommand { private: bool IsDeviceSupported(dm_dev_id_t dev_id); public: SwResetSubCommand(); ~SwResetSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class BromSubCommand : public SubCommand { private: fw_info_t _info; roms_info_t _romsInfo; FImage _fRom; public: BromSubCommand(); ~BromSubCommand(); inline FlintStatus executeCommand(); bool getExpRomStrVer(roms_info_t& roms_info, char* version); }; class DromSubCommand : public SubCommand { public: DromSubCommand(); ~DromSubCommand(); FlintStatus executeCommand(); inline bool verifyParams(); }; class RromSubCommand : public SubCommand { private: public: RromSubCommand(); ~RromSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class BbSubCommand : public SubCommand { private: public: BbSubCommand(); ~BbSubCommand(); FlintStatus executeCommand(); inline bool verifyParams(); }; class SgSubCommand : public SubCommand { private: fw_info_t _info; FwOperations* _ops; FwOperations::sg_params_t _sgParams; FlintStatus sgFs2(); FlintStatus sgFs3(); void setUserGuidsAndMacs(); bool CheckSetGuidsFlags(); public: SgSubCommand(); ~SgSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class SmgSubCommand : public SubCommand { private: fs3_uid_t _baseGuid; fw_info_t _info; FwOperations* _ops; public: SmgSubCommand(); ~SmgSubCommand(); inline FlintStatus executeCommand(); inline bool verifyParams(); }; class SetCertChainSubCommand : public SubCommand { public: SetCertChainSubCommand(); ~SetCertChainSubCommand(){}; FlintStatus executeCommand(); }; class SetVpdSubCommand : public SubCommand { public: SetVpdSubCommand(); ~SetVpdSubCommand(){}; FlintStatus executeCommand(); }; class SvSubCommand : public SubCommand { private: public: SvSubCommand(); ~SvSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class RiSubCommand : public SubCommand { public: RiSubCommand(); ~RiSubCommand(); FlintStatus executeCommand(); }; class DcSubCommand : public SubCommand { private: std::vector _sect; public: DcSubCommand(); ~DcSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class DhSubCommand : public SubCommand { private: std::vector _sect; public: DhSubCommand(); ~DhSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class SetKeySubCommand : public SubCommand { private: hw_key_t _userKey; bool _getKeyInter; bool getKeyInteractively(); public: SetKeySubCommand(); ~SetKeySubCommand(); inline FlintStatus executeCommand(); inline bool verifyParams(); }; class HwAccessSubCommand : public SubCommand { private: FlintStatus disableHwAccess(); FlintStatus enableHwAccess(); public: HwAccessSubCommand(); ~HwAccessSubCommand(); FlintStatus executeCommand(); bool verifyParams(); }; class HwSubCommand : public SubCommand { private: FlintStatus printAttr(const ext_flash_attr_t& attr); public: HwSubCommand(); ~HwSubCommand(); inline FlintStatus executeCommand(); inline bool verifyParams(); }; class EraseSubCommand : public SubCommand { private: public: EraseSubCommand(); ~EraseSubCommand(); inline FlintStatus executeCommand(); }; class RwSubCommand : public SubCommand { private: public: RwSubCommand(); ~RwSubCommand(); inline FlintStatus executeCommand(); }; class WwSubCommand : public SubCommand { private: public: WwSubCommand(); ~WwSubCommand(); inline FlintStatus executeCommand(); }; class WwneSubCommand : public SubCommand { private: public: WwneSubCommand(); ~WwneSubCommand(); inline FlintStatus executeCommand(); }; class WbSubCommand : public SubCommand { private: bool extractData(const std::vector& cmdParams, u_int32_t* addr, std::vector& data); public: WbSubCommand(); ~WbSubCommand(); FlintStatus executeCommand(); }; class WbneSubCommand : public SubCommand { private: bool extractData(const std::vector& cmdParams, u_int32_t* addr, std::vector& data); bool writeBlock(u_int32_t addr, std::vector dataVec); public: WbneSubCommand(); ~WbneSubCommand(); FlintStatus executeCommand(); }; class RbSubCommand : public SubCommand { private: bool printToScreen(const std::vector& buff, bool hexdump_format); bool readBlock(u_int32_t addr, std::vector& buff, bool isFlash); public: RbSubCommand(); ~RbSubCommand(); FlintStatus executeCommand(); }; class ClearSemSubCommand : public SubCommand { private: public: ClearSemSubCommand(); ~ClearSemSubCommand(); FlintStatus executeCommand(); }; class RomQuerySubCommand : public SubCommand { private: roms_info_t _romsInfo; public: RomQuerySubCommand(); ~RomQuerySubCommand(); FlintStatus executeCommand(); }; class ResetCfgSubCommand : public SubCommand { public: ResetCfgSubCommand(); ~ResetCfgSubCommand(); FlintStatus executeCommand(); }; class FiSubCommand : public SubCommand { public: FiSubCommand(); ~FiSubCommand(); FlintStatus executeCommand(); }; class CheckSumSubCommand : public SubCommand { public: CheckSumSubCommand(); ~CheckSumSubCommand(); FlintStatus executeCommand(); private: bool extractChecksumFromStr(string str, u_int8_t checkSum[16]); string checkSum2Str(u_int8_t checkSum[16]); u_int8_t _checkSum[16]; }; class TimeStampSubCommand : public SubCommand { public: TimeStampSubCommand(); ~TimeStampSubCommand(); FlintStatus executeCommand(); private: enum { TS_No_Command, TS_Query, TS_Set, TS_Reset }; bool verifyParams(); bool parseTimeStamp(string tsStr); bool parseFwVersion(string verStr); inline u_int8_t getDaysInMonth(u_int16_t year, u_int8_t month); inline void printTsAndFwVer(string prefix, struct tools_open_ts_entry& tsEntry, struct tools_open_fw_version& fwVer); void getMachineUTCTime(); bool queryTs(); bool setTs(); bool resetTs(); int _operation; FwOperations* _ops; struct tools_open_ts_entry _userTsEntry; struct tools_open_fw_version _userFwVer; }; class CacheImageSubCommand : public SubCommand { public: CacheImageSubCommand(); ~CacheImageSubCommand(); FlintStatus executeCommand(); }; #endif mstflint-4.26.0/flint/cmd_line_parser.cpp0000644000175000017500000014032614522641732020657 0ustar tzafrirctzafrirc/* * * cmd_line_parser.cpp - FLash INTerface * * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #include #include #include // Flint includes #include "flint.h" #include #include "mlxfwops/lib/flint_io.h" #ifndef FLINT_NAME #ifdef __GNUC__ #define FLINT_NAME "flint" #else #define FLINT_NAME "flint" #endif #endif using namespace std; /****************************** * Data structures containing * Meta data about subcommands * and flags ******************************/ class SubCmdMetaData { private: class SubCmd { public: SubCmd(string s, string l, sub_cmd_t n) : shortf(s), longf(l), cmdNum(n) {} ~SubCmd() {} string shortf; string longf; sub_cmd_t cmdNum; }; vector _sCmds; public: SubCmdMetaData(); ~SubCmdMetaData(); sub_cmd_t getCmdNum(string flag); }; SubCmdMetaData::SubCmdMetaData() { _sCmds.push_back(new SubCmd("b", "burn", SC_Burn)); _sCmds.push_back(new SubCmd("q", "query", SC_Query)); _sCmds.push_back(new SubCmd("v", "verify", SC_Verify)); _sCmds.push_back(new SubCmd("", "swreset", SC_Swreset)); _sCmds.push_back(new SubCmd("", "reset_cfg", SC_ResetCfg)); _sCmds.push_back(new SubCmd("", "brom", SC_Brom)); _sCmds.push_back(new SubCmd("", "drom", SC_Drom)); _sCmds.push_back(new SubCmd("", "rrom", SC_Rrom)); _sCmds.push_back(new SubCmd("", "qrom", SC_Qrom)); _sCmds.push_back(new SubCmd("", "bb", SC_Bb)); _sCmds.push_back(new SubCmd("", "sg", SC_Sg)); #ifndef EXTERNAL _sCmds.push_back(new SubCmd("", "smg", SC_Smg)); _sCmds.push_back(new SubCmd("", "set_vpd", SC_Set_Vpd)); _sCmds.push_back(new SubCmd("", "set_attestation_cert_chain", SC_Set_Cert_Chain)); #endif _sCmds.push_back(new SubCmd("", "sv", SC_Sv)); _sCmds.push_back(new SubCmd("", "ri", SC_Ri)); _sCmds.push_back(new SubCmd("", "dc", SC_Dc)); _sCmds.push_back(new SubCmd("", "dh", SC_Dh)); _sCmds.push_back(new SubCmd("", "set_key", SC_Set_Key)); _sCmds.push_back(new SubCmd("", "hw_access", SC_Hw_Access)); _sCmds.push_back(new SubCmd("", "hw", SC_Hw)); _sCmds.push_back(new SubCmd("e", "erase", SC_Erase)); _sCmds.push_back(new SubCmd("", "rw", SC_Rw)); _sCmds.push_back(new SubCmd("", "ww", SC_Ww)); _sCmds.push_back(new SubCmd("", "wwne", SC_Wwne)); _sCmds.push_back(new SubCmd("", "wbne", SC_Wbne)); _sCmds.push_back(new SubCmd("", "wb", SC_Wb)); _sCmds.push_back(new SubCmd("", "rb", SC_Rb)); _sCmds.push_back(new SubCmd("", "clear_semaphore", SC_Clear_Sem)); _sCmds.push_back(new SubCmd("", "fi", SC_Fix_Img)); _sCmds.push_back(new SubCmd("cs", "checksum", SC_Check_Sum)); _sCmds.push_back(new SubCmd("ts", "timestamp", SC_Time_Stamp)); _sCmds.push_back(new SubCmd("ci", "cache_image", SC_Cache_Image)); _sCmds.push_back(new SubCmd("", "sign", SC_Sign)); _sCmds.push_back(new SubCmd("", "sign_with_hmac", SC_Add_Hmac)); _sCmds.push_back(new SubCmd("", "extract_fw_data", SC_Extract_4MB_Image)); _sCmds.push_back(new SubCmd("", "set_public_keys", SC_Set_Public_Keys)); _sCmds.push_back(new SubCmd("", "set_forbidden_versions", SC_Set_Forbidden_Versions)); _sCmds.push_back(new SubCmd("ir", "image_reactivation", SC_Image_Reactivation)); _sCmds.push_back(new SubCmd("bc", "binary_compare", SC_Binary_Compare)); _sCmds.push_back(new SubCmd("", "rsa_sign", SC_RSA_Sign)); _sCmds.push_back(new SubCmd("", "export_public_key", SC_Export_Public_Key)); _sCmds.push_back(new SubCmd("qc", "query_components", SC_Query_Components)); } SubCmdMetaData::~SubCmdMetaData() { for (vector::iterator it = _sCmds.begin(); it != _sCmds.end(); ++it) { delete *it; } } sub_cmd_t SubCmdMetaData::getCmdNum(string flag) { for (vector::iterator it = _sCmds.begin(); it != _sCmds.end(); ++it) { if (((*it)->shortf == flag) || ((*it)->longf == flag)) { return (*it)->cmdNum; } } return SC_No_Cmd; } class FlagMetaData { private: class Flag { public: Flag(string s, string l, int n) : shortf(s), longf(l), argNum(n) {} ~Flag() {} string shortf; string longf; int argNum; }; vector _flags; public: FlagMetaData(); ~FlagMetaData(); int getNumOfArgs(string flag); }; FlagMetaData::FlagMetaData() { _flags.push_back(new Flag("d", "device", 1)); _flags.push_back(new Flag("", "guid", 1)); _flags.push_back(new Flag("", "guids", GUIDS)); _flags.push_back(new Flag("", "mac", 1)); _flags.push_back(new Flag("", "macs", MACS)); _flags.push_back(new Flag("", "uid", 1)); _flags.push_back(new Flag("", "blank_guids", 0)); _flags.push_back(new Flag("", "clear_semaphore", 0)); _flags.push_back(new Flag("h", "help", 0)); _flags.push_back(new Flag("", "hh", 0)); _flags.push_back(new Flag("i", "image", 1)); _flags.push_back(new Flag("", "qq", 0)); _flags.push_back(new Flag("", "low_cpu", 0)); _flags.push_back(new Flag("", "next_boot_fw_ver", 0)); _flags.push_back(new Flag("", "flashed_version", 0)); _flags.push_back(new Flag("", "nofs", 0)); _flags.push_back(new Flag("", "allow_psid_change", 0)); _flags.push_back(new Flag("", "apc", 0)); _flags.push_back(new Flag("", "allow_rom_change", 0)); _flags.push_back(new Flag("", "override_cache_replacement", 0)); _flags.push_back(new Flag("", "ocr", 0)); _flags.push_back(new Flag("", "no_flash_verify", 0)); _flags.push_back(new Flag("s", "silent", 0)); _flags.push_back(new Flag("y", "yes", 0)); _flags.push_back(new Flag("", "no", 0)); _flags.push_back(new Flag("", "vsd", 1)); _flags.push_back(new Flag("", "use_image_ps", 0)); _flags.push_back(new Flag("", "use_image_guids", 0)); _flags.push_back(new Flag("", "use_image_rom", 0)); _flags.push_back(new Flag("", "ignore_dev_data", 0)); _flags.push_back(new Flag("", "dual_image", 0)); _flags.push_back(new Flag("", "striped_image", 0)); _flags.push_back(new Flag("", "banks", 1)); _flags.push_back(new Flag("", "log", 1)); _flags.push_back(new Flag("", "flash_params", 1)); // its actually 3 but separated by comma so we refer to them as // one _flags.push_back(new Flag("v", "version", 0)); _flags.push_back(new Flag("", "no_devid_check", 0)); _flags.push_back(new Flag("", "use_fw", 0)); _flags.push_back(new Flag("", "use_dev_img_info", 0)); _flags.push_back(new Flag("", "ignore_crc_check", 0)); _flags.push_back(new Flag("", "hexdump_format", 0)); _flags.push_back(new Flag("", "skip_ci_req", 0)); _flags.push_back(new Flag("", "use_dev_rom", 0)); _flags.push_back(new Flag("", "private_key", 1)); _flags.push_back(new Flag("", "public_key", 1)); _flags.push_back(new Flag("", "key_uuid", 1)); _flags.push_back(new Flag("", "private_key2", 1)); _flags.push_back(new Flag("", "hmac_key", 1)); _flags.push_back(new Flag("", "key_uuid2", 1)); _flags.push_back(new Flag("", "no_fw_ctrl", 0)); _flags.push_back(new Flag("", "ir", 0)); _flags.push_back(new Flag("", "latest_fw", 0)); _flags.push_back(new Flag("", "psid", 1)); _flags.push_back(new Flag("", "cc", 1)); _flags.push_back(new Flag("", "linkx", 0)); _flags.push_back(new Flag("", "downstream_device_id_start_index", 1)); _flags.push_back(new Flag("", "num_of_downstream_devices", 1)); _flags.push_back(new Flag("", "linkx_auto_update", 0)); _flags.push_back(new Flag("", "activate", 0)); _flags.push_back(new Flag("", "activate_delay_sec", 1)); _flags.push_back(new Flag("", "downstream_device_ids", 1)); _flags.push_back(new Flag("", "download_transfer", 0)); _flags.push_back(new Flag("", "openssl_engine", 1)); _flags.push_back(new Flag("", "openssl_key_id", 1)); #ifdef __WIN__ _flags.push_back(new Flag("", "cpu_util", 1)); #endif _flags.push_back(new Flag("", "output_file", 1)); _flags.push_back(new Flag("", "user_password", 1)); _flags.push_back(new Flag("", "cert_chain_index", 1)); _flags.push_back(new Flag("", "component_type", 1)); } FlagMetaData::~FlagMetaData() { for (vector::iterator it = _flags.begin(); it != _flags.end(); ++it) { delete *it; } } int FlagMetaData::getNumOfArgs(string flag) { for (vector::iterator it = _flags.begin(); it != _flags.end(); ++it) { if (((*it)->shortf == flag) || ((*it)->longf == flag)) { return (*it)->argNum; } } return -1; } /******************** * Helper Functions: *******************/ // NOTE : number of parameters extracted in the container should be checked. static void splitByDelimiters(std::vector& container, string str, const char* delimiters) { if (str.size() == 0) { return; } char* cStr = strcpy(new char[str.size() + 1], str.c_str()); char* ptr; ptr = strtok(cStr, delimiters); while (ptr != NULL) { container.push_back(ptr); ptr = strtok(NULL, delimiters); } delete[] cStr; return; } char* stripFlag(char* flag) { char* strippedFlagStart = NULL; if (flag[0] != '-') { // not a flag return flag; }; if ((flag[0] == '-') && (flag[1] == '-')) { strippedFlagStart = &flag[2]; } else { strippedFlagStart = &flag[1]; } return strippedFlagStart; } int countArgs(string args) { if (args.size() == 0) { return 0; } int count = 1; for (string::iterator it = args.begin(); it < args.end(); ++it) { if (*it == ',') { count++; } } return count; } bool verifyNumOfArgs(string name, string value) { // HACK : we don't check device numOfArgs because image device format might contain "," if ((name == "device") || (name == "d")) { return true; } if ((name == "image") || (name == "i")) { return true; } // Hack : VSD can be empty or contain "," so we shouldnt count its args if (name == "vsd") { return true; } if (name == "output_file") { return true; } int expected = FlagMetaData().getNumOfArgs(name); if (expected < 0) { printf(FLINT_INVALID_FLAG_ERROR, name.c_str()); return false; } // HACK : flash_params is 3 argument but given with comma separated instead of spaces like the rest // so flag_arg_num gives a wrong value if (name == "flash_params") { expected = 3; } int actual = countArgs(value); if (name == "downstream_device_ids") { if (actual < 1) { printf(FLINT_TOO_FEW_MINIMUM_ARGS_ERROR, 1, actual); return false; } return true; } if (actual < expected) { printf(FLINT_TOO_FEW_ARGS_ERROR, expected, actual); return false; } else if (actual > expected) { printf(FLINT_TOO_MANY_ARGS_ERROR, expected, actual); return false; } return true; } bool strToInt(string str, int& num, int base = 0) { char* endp; char* numStr = strcpy(new char[str.size() + 1], str.c_str()); num = strtol(numStr, &endp, base); if (*endp) { delete[] numStr; return false; } delete[] numStr; return true; } bool strToNum(string str, u_int64_t& num, int base = 0) { char* endp; char* numStr = strcpy(new char[str.size() + 1], str.c_str()); num = strtoul(numStr, &endp, base); if (*endp) { delete[] numStr; return false; } delete[] numStr; return true; } // this function is used in extracting both guids and macs from user bool getGUIDFromStr(string str, guid_t& guid, string prefixErr = "") { char* endp; u_int64_t g; g = strtoull(str.c_str(), &endp, 16); if (*endp || (g == 0xffffffffffffffffULL && errno == ERANGE)) { if (prefixErr.size() == 0) { printf("-E- Invalid Guid/Mac/Uid syntax (%s) %s \n", str.c_str(), errno ? strerror(errno) : ""); } else { printf("%s\n", prefixErr.c_str()); } return false; } guid.h = (u_int32_t)(g >> 32); guid.l = (u_int32_t)(g & 0xffffffff); return true; } bool isElementPresent(vector strv, string str) //* should be renamed to isStrPresent, since it's not generic { for (vector::iterator it = strv.begin(); it < strv.end(); it++) { if (*it == str) { return true; } } return false; } bool stringsCommaSplit(string str, std::vector& deviceIds) //* Should be renamed to something like { //* getIntsFromCommaSplitString size_t pos; std::vector strv; bool res = true; while ((pos = str.find(',')) != string::npos) { string tmp = str.substr(0, pos); if (!isElementPresent(strv, tmp)) { //* Can be changed to: std::find(strv.begin(), strv.end(), tmp) != strv.end() strv.push_back((string)tmp); //* So we can remove isElementPresent function } str = str.substr(pos + 1); } if (str != "") { if (!isElementPresent(strv, str)) { //* Same as above strv.push_back((string)str); } } for (std::vector::iterator it = strv.begin(); it < strv.end(); it++) { int num; if (false == strToInt((*it).c_str(), num)) { return false; } if (num < 0 || num > 255) { printf("Index value should be between 0 and 255.\n"); return false; } deviceIds.push_back(num); } return res; } guid_t incrGuid(guid_t baseGuid, unsigned int incrVal) { u_int64_t g = baseGuid.h; g = (g << 32) | baseGuid.l; g += incrVal; guid_t userGuid; userGuid.h = (u_int32_t)(g >> 32); userGuid.l = (u_int32_t)g; return userGuid; } guid_t GetBaseMac(guid_t baseGuid) { guid_t baseMac; baseMac.l = (baseGuid.l & 0x00ffffff) | ((baseGuid.h & 0xff00) << 16); baseMac.h = baseGuid.h >> 16; return baseMac; } bool parseFlashParams(string params, flash_params_t& fp) { // Step 1 split by "," std::vector paramVec; splitByDelimiters(paramVec, params, ","); if (paramVec.size() != 3) { return false; } // Step 2 extract params size_t length = paramVec[0].length(); const char* paramStr = paramVec[0].c_str(); memset(fp.type_name, 0, MAX_FLASH_NAME); strncpy(fp.type_name, paramStr, length); u_int64_t tmp; if (!strToNum(paramVec[1], tmp)) { return false; } fp.log2size = (int)tmp; if (!strToNum(paramVec[2], tmp)) { return false; } fp.num_of_flashes = (int)tmp; return true; } /************************************ * Implementation of the Command line * Parsing part of the Flint class ************************************/ #define FLASH_LIST_SZ 256 void Flint::initCmdParser() { bool isExternal = false; #ifdef EXTERNAL isExternal = true; #endif AddDescription("flint is a FW (firmware) burning and flash memory operations tool for Mellanox Infiniband HCAs," "Ethernet NIC cards, and switch devices."); AddOptions("device", 'd', "", "Device flash is connected to.\n" "Commands affected: all"); AddOptions("image", 'i', "", "Binary image file.\n" "Commands affected: burn, verify"); AddOptions("latest_fw", ' ', "", "Commands affected: burn"); AddOptions("ir", ' ', "", "Commands affected: burn"); AddOptions("help", 'h', "", "Prints this message and exits"); AddOptions("hh", ' ', "", "Prints extended command help"); AddOptions("yes", 'y', "", "Non interactive mode - assume answer \"yes\" to all questions.\n" "Commands affected: all"); AddOptions("no", ' ', "", "Non interactive mode - assume answer \"no\" to all questions.\n" "Commands affected: all"); AddOptions("guid", ' ', "", "GUID base value. 4 GUIDs are automatically assigned to the following values:\n\n" "guid -> node GUID\n" "guid+1 -> port1\n" "guid+2 -> port2\n" "guid+3 -> system image GUID.\n\n" "Note: port2 guid will be assigned even for a single port HCA - The HCA ignores this value.\n\n" "Commands affected: burn, sg"); AddOptions("guids", ' ', "", "4 GUIDs must be specified here.\n" "The specified GUIDs are assigned to the following fields, respectively:\n" "node, port1, port2 and system image GUID.\n\n" "Note: port2 guid must be specified even for a single port HCA - The HCA ignores this value.\n" "It can be set to 0x0.\n\n" "Commands affected: burn, sg"); AddOptions("mac", ' ', "", "MAC address base value. 2 MACs are automatically assigned to the following values:\n\n" "mac -> port1\n" "mac+1 -> port2\n\n" "Commands affected: burn, sg"); AddOptions("macs", ' ', "", "2 MACs must be specified here.\n" "The specified MACs are assigned to port1, port2, respectively.\n" "Commands affected: burn, sg\n\n" "Note: -mac/-macs flags are applicable only for Mellanox\n" "\tTechnologies ethernet products."); AddOptions("uid", ' ', "", "ConnectIB/SwitchIB only. Derive and set the device UIDs (GUIDs, MACs, WWNs).\n" "UIDs are derived from the given base UID according to Mellanox Methodology\n" "Commands affected: burn, sg"); AddOptions("blank_guids", ' ', "", "Burn the image with blank GUIDs and MACs (where applicable). These values can be set later using the" " \"sg\" command (see details below).\n\n" "Commands affected: burn"); AddOptions("clear_semaphore", ' ', "", "Force clear the flash semaphore on the device.\n" "No command is allowed when this flag is used.\n" "NOTE: May result in system instability or flash corruption if the device or another application is" " currently using the flash.\n" "Exercise caution.\n"); AddOptions("qq", ' ', "", "Run a quick query. When specified, flint will not perform full image integrity checks during the query" " operation. This may shorten execution time when running over slow interfaces (e.g., I2C, MTUSB-1).\n" "Commands affected: query"); AddOptions("low_cpu", ' ', "", "When specified, cpu usage will be reduced. Run time might be increased\n" "Commands affected: query"); AddOptions("next_boot_fw_ver", ' ', "", "When specified, only next boot fw version is fetched\n" "Commands affected: query", true); AddOptions("flashed_version", ' ', "", "When specified, only flashed fw version is fetched\n" "Commands affected: query"); AddOptions("nofs", ' ', "", "Burn image in a non failsafe manner."); AddOptions("allow_psid_change", ' ', "", "Allow burning a FW image with a different PSID (Parameter Set ID)than the one currently on flash. Note" " that changing a PSID may cause the device to malfunction. Use only if you know what you are doing", isExternal); AddOptions("apc", ' ', "", "another flag for allow psid change", isExternal); AddOptions("allow_rom_change", ' ', "", "Allow burning/removing a ROM to/from FW image when product version is present.\n" "Use only if you know what you are doing"); AddOptions("override_cache_replacement", ' ', "", "On SwitchX/ConnectIB devices:\n" "Allow accessing the flash even if the cache replacement mode is enabled.\n" "NOTE: This flag is intended for advanced users only.\n" "Running in this mode may cause the firmware to hang.\n"); AddOptions("no_flash_verify", ' ', "", "Do not verify each write on the flash."); AddOptions("use_fw", ' ', "", "Flash access will be done using FW (ConnectX-3/ConnectX-3Pro only)."); AddOptions("silent", 's', "", "Do not print burn progress flyer.\n" "Commands affected: burn"); AddOptions("vsd", ' ', "", "Write this string, of up to 208 characters, to VSD when burn."); AddOptions("use_image_ps", ' ', "", "Burn vsd as appears in the given image - do not keep existing VSD on flash.\n" "Commands affected: burn"); AddOptions("use_image_guids", ' ', "", "Burn (guids/macs) as appears in the given image.\n" "Commands affected: burn"); AddOptions("use_image_rom", ' ', "", "Do not save the ROM which exists in the device.\n" "Commands affected: burn"); AddOptions("use_dev_rom", ' ', "", "Save the ROM which exists in the device.\n" "Commands affected: burn"); AddOptions("ignore_dev_data", ' ', "", "Do not attempt to take device data sections from device(sections will be taken from the image. FS3" " Only).\n" "Commands affected: burn"); AddOptions("no_fw_ctrl", ' ', "", "Do not attempt to work with the FW Ctrl update commands"); AddOptions("use_dev_img_info", ' ', "", "preserve select image info fields from the device upon FW update (FS3 Only).\n" "Commands affected: burn", true); AddOptions("ignore_crc_check", ' ', "", "Prevents flint from failing due to CRC check", true); // hidden AddOptions("hexdump_format", ' ', "", "Prints rb command output in hexdump format", true); // hidden AddOptions("dual_image", ' ', "", "Make the burn process burn two images on flash (previously default algorithm). Current default" " failsafe burn process burns a single image (in alternating locations).\n" "Commands affected: burn"); AddOptions("striped_image", ' ', "", "Use this flag to indicate that the given image file is in a \"striped image\" format.\n" "Commands affected: query verify"); AddOptions("banks", ' ', "", "Set the number of attached flash devices (banks)"); AddOptions("log", ' ', "", "Print the burning status to the specified log file"); char flashList[FLASH_LIST_SZ] = {0}; char flashParDesc[FLASH_LIST_SZ * 2]; Flash::get_flash_list(flashList, FLASH_LIST_SZ); snprintf(flashParDesc, FLASH_LIST_SZ * 2, "Use the given parameters to access the flash instead of reading them from " "the flash.\n" "Supported parameters:\n" "Type: The type of the flash, such as:%s.\n" "log2size: The log2 of the flash size." "num_of_flashes: the number of the flashes connected to the device.", flashList); AddOptions("flash_params", ' ', "", flashParDesc); AddOptions("version", 'v', "", "Version info."); AddOptions("no_devid_check", ' ', "", "ignore device_id checks", true); AddOptions("skip_ci_req", ' ', "", "skip sending cache image request to driver(windows)", true); AddOptions("ocr", ' ', "", "another flag for override cache replacement", true); AddOptions("private_key", ' ', "", "path to PEM formatted private key to be used by the sign command"); AddOptions("public_key", ' ', "", "path to PEM formatted public key to be used by the sign command"); AddOptions("key_uuid", ' ', "", "UUID matching the given private key to be used by the sign command"); AddOptions("private_key2", ' ', "", "path to PEM formatted private key to be used by the sign command"); AddOptions("hmac_key", ' ', "", "path to file containing key (For FS4 image only)."); AddOptions("key_uuid2", ' ', "", "UUID matching the given private key to be used by the sign command"); AddOptions("psid", ' ', "", "Use this PSID while burning livefish device using MFA2 archive"); AddOptions("cc", ' ', "", "Use this flag while burning to device a Congestion Control Component"); AddOptions("linkx", ' ', "", "Use this flag while burning to device a LinkX Component"); AddOptions("downstream_device_id_start_index", ' ', "", "Use this flag while burning to device a LinkX Component. Begin from 0", false, false, 1); AddOptions("num_of_downstream_devices", ' ', "", "Use this flag while burning to device a LinkX Component to specify the number of devices to burn", false, false, 1); AddOptions("linkx_auto_update", ' ', "", "Use this flag while burning all cable devices connected to host.", false, false, 1); AddOptions("activate", ' ', "", "Use this flag to apply the activation of all cable devices connected to host. By default, the " "activation is not performed.", false, false, 1); AddOptions( "activate_delay_sec", ' ', "", "Use this flag to activate all cable devices connected to host with delay, acceptable values are between 0 and " "255 (default - 1). Important: 'activate' flag must be set. This flag is relevant only for cable components.", false, false, 1); AddOptions("download_transfer", ' ', "", "Use this flag to perform the download and transfer of all cable data for cables. By default, the " "download and transfer are not performed . This flag is relevant only for cable components.", false, false, 1); AddOptions("downstream_device_ids", ' ', "", "Use this flag to specify the LNKX ports to perform query. List must be only comma-separated numbers, " "without spaces.", false, false, 1); AddOptions( "openssl_engine", ' ', "", "Name of the OpenSSL engine to used by the sign/rsa_sign commands to work with the HSM hardware via OpenSSL API"); AddOptions("openssl_key_id", ' ', "", "Key identification string to be used by the sign/rsa_sign commands to work with the HSM hardware via " "OpenSSL API"); AddOptions("output_file", ' ', "", "output file name for exporting the public key from PEM/BIN"); AddOptions("user_password", ' ', "", "the HSM user password string in order to work with HSM device"); #ifdef __WIN__ AddOptions("cpu_util", ' ', "", "Use this flag to reduce CPU utilization while burning, Windows only. Legal values are from 1 (lowest " "CPU) to 5 (highest CPU)"); #endif AddOptions( "cert_chain_index", ' ', "", "Use this flag to specify the certificate location, acceptable values are between 0 and 7 (default - 0). " "In case index=0 certificate chain will be stored at CERT_CHAIN_0 section, otherwise at DIGITAL_CERT_RW " "section according to given index.\n" "This flag is relevant only for set_attestation_cert_chain command."); AddOptions("component_type", ' ', "", "component to query, currently only \"sync_clock\" supported."); for (map_sub_cmd_t_to_subcommand::iterator it = _subcommands.begin(); it != _subcommands.end(); it++) { if (it->first == SC_ResetCfg) { // hidden command so "forget" mentioning it continue; } string str1 = it->second->getFlagL() + ((it->second->getFlagS() == "") ? (" ") : ("|")) + it->second->getFlagS() + " " + it->second->getParam(); string str2 = it->second->getDesc(); AddOptionalSectionData("COMMANDS SUMMARY", str1, str2); } AddOptionalSectionData("RETURN VALUES", "0", "Successful completion."); AddOptionalSectionData("RETURN VALUES", "1", "An error has occurred."); AddOptionalSectionData("RETURN VALUES", "7", "For burn command - burning new firmware option was not chosen by the user when prompted, " "thus the firmware burning process was aborted."); for (map_sub_cmd_t_to_subcommand::iterator it = _subcommands.begin(); it != _subcommands.end(); it++) { if (it->first == SC_ResetCfg) { // hidden command so "forget" mentioning it continue; } string str = "Name:\n" "\t" + it->second->getName() + "\n" + "Description:\n" "\t" + it->second->getExtDesc() + "\n" + "Command:\n" "\t" + it->second->getFlagL() + ((it->second->getFlagS() == "") ? (" ") : ("|")) + it->second->getFlagS() + " " + it->second->getParam() + "\n" + "Parameters:\n" "\t" + it->second->getParamExp() + "\n" + "Examples:\n" "\t" + it->second->getExample() + "\n\n\n"; AddOptionalSectionData("COMMANDS DESCRIPTION", str); } _cmdParser.AddRequester(this); } ParseStatus Flint::HandleOption(string name, string value) { // TODO: consider verifying num of args inside each if statements that needs its arg num verified // thus we will be able to get rid of the hacks inside the function in the expense of a longer code. if (!(verifyNumOfArgs(name, value))) { return PARSE_ERROR; } int delta = 1; if (name == "device" || name == "d") { _flintParams.device_specified = true; _flintParams.device = value; } else if (name == "help" || name == "h") { vector excluded_sections; excluded_sections.push_back("COMMANDS DESCRIPTION"); cout << _cmdParser.GetUsage(false, excluded_sections); return PARSE_OK_WITH_EXIT; } else if (name == "version" || name == "v") { #ifdef EXTERNAL print_version_string(FLINT_NAME, ""); #else print_version_string(FLINT_NAME "(oem)", ""); #endif return PARSE_OK_WITH_EXIT; } else if (name == "hh") { cout << _cmdParser.GetUsage(); return PARSE_OK_WITH_EXIT; } else if (name == "no_devid_check") { _flintParams.no_devid_check = true; } else if (name == "skip_ci_req") { _flintParams.skip_ci_req = true; } else if (name == "guid") { _flintParams.guid_specified = true; guid_t g; if (!getGUIDFromStr(value, g)) { return PARSE_ERROR; } for (int i = 0; i < GUIDS; i++) { _flintParams.user_guids.push_back(incrGuid(g, i)); } // for (std::vector::iterator it=_flintParams.user_guids.begin();it != _flintParams.user_guids.end(); // it++){ // printf("%8.8x%8.8x\n",it->h,it->l); // } } else if (name == "guids") { _flintParams.guids_specified = true; std::vector strs; splitByDelimiters(strs, value, ","); if (strs.size() != GUIDS) { return PARSE_ERROR; } for (int i = 0; i < GUIDS; i++) { guid_t g; if (!getGUIDFromStr(strs[i], g)) { return PARSE_ERROR; } else { _flintParams.user_guids.push_back(g); } } } else if (name == "mac") { _flintParams.mac_specified = true; guid_t m; if (!getGUIDFromStr(value, m)) { return PARSE_ERROR; } for (int i = 0; i < MACS; i++) { _flintParams.user_macs.push_back(incrGuid(m, i)); } } else if (name == "macs") { _flintParams.macs_specified = true; std::vector strs; splitByDelimiters(strs, value, ","); if (strs.size() != MACS) { return PARSE_ERROR; } for (int i = 0; i < MACS; i++) { guid_t m; if (!getGUIDFromStr(strs[i], m)) { return PARSE_ERROR; } else { _flintParams.user_macs.push_back(m); } } } else if (name == "uid") { _flintParams.uid_specified = true; if (!getGUIDFromStr(value, _flintParams.baseUid)) { return PARSE_ERROR; } } else if (name == "blank_guids") { _flintParams.blank_guids = true; } else if (name == "clear_semaphore") { _flintParams.clear_semaphore = true; } else if (name == "image" || name == "i") { _flintParams.image_specified = true; _flintParams.image = value; } else if (name == "qq") { _flintParams.quick_query = true; _flintParams.skip_rom_query = true; delta = 2; } else if (name == "low_cpu") { _flintParams.low_cpu = true; } else if (name == "next_boot_fw_ver" || name == "flashed_version") { _flintParams.next_boot_fw_ver = true; } else if (name == "nofs") { _flintParams.nofs = true; } else if (name == "allow_psid_change" || name == "apc") { _flintParams.allow_psid_change = true; } else if (name == "allow_rom_change") { _flintParams.allow_rom_change = true; } else if (name == "override_cache_replacement" || name == "ocr") { _flintParams.override_cache_replacement = true; } else if (name == "use_fw") { _flintParams.use_fw = true; } else if (name == "no_flash_verify") { _flintParams.no_flash_verify = true; } else if (name == "silent" || name == "s") { _flintParams.silent = true; } else if (name == "yes" || name == "y") { _flintParams.yes = true; } else if (name == "no") { _flintParams.no = true; } else if (name == "vsd") { _flintParams.vsd_specified = true; _flintParams.vsd = value; } else if (name == "use_image_ps") { _flintParams.use_image_ps = true; } else if (name == "use_image_guids") { _flintParams.use_image_guids = true; } else if (name == "use_image_rom") { _flintParams.use_image_rom = true; } else if (name == "use_dev_rom") { _flintParams.use_dev_rom = true; } else if (name == "ignore_dev_data") { _flintParams.ignore_dev_data = true; } else if (name == "no_fw_ctrl") { _flintParams.no_fw_ctrl = true; } else if (name == "dual_image") { _flintParams.dual_image = true; } else if (name == "striped_image") { _flintParams.striped_image = true; } else if (name == "use_dev_img_info") { _flintParams.use_dev_img_info = true; } else if (name == "ignore_crc_check") { _flintParams.ignore_crc_check = true; } else if (name == "hexdump_format") { _flintParams.hexdump_format = true; } else if (name == "ir") { _flintParams.image_reactivation = true; } else if (name == "banks") { _flintParams.banks_specified = true; u_int64_t banksNum; if (!strToNum(value, banksNum)) { return PARSE_ERROR; } _flintParams.banks = (int)banksNum; } else if (name == "log") { _flintParams.log_specified = true; _flintParams.log = value; } else if (name == "flash_params") { _flintParams.flash_params_specified = true; if (!parseFlashParams(value, _flintParams.flash_params)) { return PARSE_ERROR; } // printf("-D- flashType=%s , log2size = %d , numOfBanks = %d\n", _flintParams.flash_params.type_name, // _flintParams.flash_params.log2size, _flintParams.flash_params.num_of_flashes); } else if (name == "private_key") { _flintParams.privkey_file = value; } else if (name == "public_key") { _flintParams.pubkey_file = value; } else if (name == "key_uuid") { _flintParams.privkey_uuid = value; } else if (name == "hmac_key") { _flintParams.key_specified = true; _flintParams.key = value; } else if (name == "private_key2") { _flintParams.privkey2_specified = true; _flintParams.privkey2_file = value; } else if (name == "key_uuid2") { _flintParams.uuid2_specified = true; _flintParams.privkey2_uuid = value; } else if (name == "latest_fw") { _flintParams.use_latest_fw_version = true; } else if (name == "psid") { _flintParams.use_psid = true; _flintParams.psid = value; } else if (name == "cc") { _flintParams.congestion_control = true; _flintParams.congestion_control_param = value; } else if (name == "linkx") { _flintParams.linkx_control = true; } else if (name == "cpu_util") { _flintParams.use_cpu_utilization = true; u_int64_t cpu_percent = 0; if (!strToNum(value, cpu_percent)) { return PARSE_ERROR; } _flintParams.cpu_percent = (int)cpu_percent; } else if (name == "openssl_engine") { _flintParams.openssl_engine_usage_specified = true; _flintParams.openssl_engine = value; } else if (name == "openssl_key_id") { _flintParams.openssl_engine_usage_specified = true; _flintParams.openssl_key_id = value; } else if (name == "output_file") { _flintParams.output_file_specified = true; _flintParams.output_file = value; } else if (name == "user_password") { _flintParams.hsm_password_specified = true; _flintParams.hsm_password = value; } else if (name == "downstream_device_id_start_index") { _flintParams.cable_device_index_specified = true; int device_index = 0; if (!strToInt(value, device_index)) { return PARSE_ERROR; } if (device_index < 0) { return PARSE_ERROR; } _flintParams.cableDeviceIndex = device_index; } else if (name == "activate") { _flintParams.activate = true; } else if (name == "activate_delay_sec") { u_int64_t activate_delay_sec = 0; if (!strToNum(value, activate_delay_sec)) { return PARSE_ERROR; } if (activate_delay_sec > 255) { printf("Activation_delay_sec should be between 0 and 255.\n"); return PARSE_ERROR; } _flintParams.activate_delay_sec = activate_delay_sec; } else if (name == "linkx_auto_update") { _flintParams.linkx_auto_update = true; } else if (name == "download_transfer") { _flintParams.download_transfer = true; } else if (name == "downstream_device_ids") { if (value == "all") { _flintParams.linkx_auto_update = true; } else { _flintParams.downstream_device_ids_specified = true; std::vector deviceIds; if (!stringsCommaSplit(value, deviceIds)) { return PARSE_ERROR; } _flintParams.downstream_device_ids = deviceIds; } } else if (name == "num_of_downstream_devices") { int cableDeviceSize = 0; if (!strToInt(value, cableDeviceSize)) { return PARSE_ERROR; } if (cableDeviceSize <= 0 || cableDeviceSize > 255) { printf("Cable size should be between 1 and 255.\n"); return PARSE_ERROR; } _flintParams.cableDeviceSize = cableDeviceSize; _flintParams.cable_device_size_specified = true; } else if (name == "cert_chain_index") { int cert_chain_index = 0; if (!strToInt(value, cert_chain_index)) { return PARSE_ERROR; } if (cert_chain_index < 0 || cert_chain_index > 7) { printf("certificate chain index should be between 0 and 7.\n"); return PARSE_ERROR; } _flintParams.cert_chain_index = cert_chain_index; } else if (name == "component_type") { _flintParams.component_type = value; } else { cout << "Unknown Flag: " << name; cout << _cmdParser.GetSynopsis(); return PARSE_ERROR; } _flintParams.num_of_args += delta; return PARSE_OK; } #define IS_NUM(cha) (((cha) >= '0') && ((cha) <= '9')) ParseStatus Flint::parseCmdLine(int argc, char* argv[]) { // Step1 separate between option section and cmd section SubCmdMetaData subCmds; FlagMetaData flags; char** argvCmd = NULL; char** argvOpt = NULL; int argcCmd = 0, argcOpt = 0; bool foundOptionWhenLookingForCmd = false; ParseStatus rc; char** newArgv = NULL; int newArgc = 0; int i = 1, j = 1, argStart = 1, argEnd = 1; for (int k = (argc - 1); k > 0; k--) { // Parsing command line from end to start if ((subCmds.getCmdNum(argv[k])) != SC_No_Cmd) { // i.e we found a subcommand if (foundOptionWhenLookingForCmd) { cout << "Specifying options flags after command is not allowed.\n\n"; rc = PARSE_ERROR_SHOW_USAGE; goto clean_up; } argcOpt = k; argvOpt = argv; argcCmd = argc - k; argvCmd = &argv[k]; } else if (argv[k][0] == '-' && !IS_NUM(argv[k][1])) { foundOptionWhenLookingForCmd = true; } } if (argcCmd == 0) { // no subcommand found argcOpt = argc; argvOpt = argv; } // printf("-D- argcOpt:%d argvOpt:%s argcCmd:%d argvCmd:%s\n", argcOpt, argvOpt[0], argcCmd, argvCmd[0]); //_cmdparser should deal with the case of no arguments in argv except the program. // Step2 unite with comma multiple args in the options section newArgv = new char*[argcOpt]; // first arg is the flint command we can copy as is newArgv[0] = strcpy(new char[strlen(argvOpt[0]) + 1], argvOpt[0]); while (i < argcOpt) { if (argvOpt[i][0] == '-' && !IS_NUM(argvOpt[i][1])) { // its a flag (and not a number) so we copy to new_argv as is newArgv[j] = strcpy(new char[strlen(argvOpt[i]) + 1], argvOpt[i]); i++; j++; } else { // its an argument // find next flag if exsists argStart = i; argEnd = i; int argsSize = 0; while (argEnd < argcOpt && (argvOpt[argEnd][0] != '-' || IS_NUM(argvOpt[argEnd][1]))) { argsSize += strlen(argvOpt[argEnd]) + 1; // for the comma argEnd++; } i = argEnd; // concatenate all the args with comma between them to a single string newArgv[j] = new char[argsSize + 1]; newArgv[j][0] = '\0'; while (argStart < argEnd) { if (argStart == argEnd - 1) { // no need to add comma to the last arg strcat(newArgv[j], argvOpt[argStart]); } else { strcat(newArgv[j], argvOpt[argStart]); strcat(newArgv[j], ","); } argStart++; } j++; } } newArgc = j; // Step3 set the command and its args in the FlintParams struct if present if (argcCmd > 0) { this->_flintParams.cmd = subCmds.getCmdNum(argvCmd[0]); for (int i = 1; i < argcCmd; ++i) { this->_flintParams.cmd_params.push_back(string(argvCmd[i])); } } else { // no command found deal with either missing/invalid command // find last flag int lastFlagPos; char* strippedFlag; for (lastFlagPos = argc - 1; lastFlagPos > 0; lastFlagPos--) { if (argv[lastFlagPos][0] == '-' && !IS_NUM(argv[lastFlagPos][1])) { break; } } if (lastFlagPos == 0) { cout << FLINT_NO_OPTIONS_FOUND_ERROR << endl; rc = PARSE_ERROR; goto clean_up; } strippedFlag = stripFlag(argv[lastFlagPos]); // check how many args it needs int numOfArgs = flags.getNumOfArgs(strippedFlag); // if too many args return arg in pos num_of_args+1 as the invalid command. if ((argc - 1 - lastFlagPos) > numOfArgs) { printf(FLINT_INVALID_COMMAD_ERROR, argv[argc - 1]); rc = PARSE_ERROR_SHOW_USAGE; goto clean_up; } } // Step5 parse option section using _cmdParser rc = this->_cmdParser.ParseOptions(newArgc, newArgv); // Step 6 Delete allocated memory clean_up: for (int i = 0; i < newArgc; i++) { delete[] newArgv[i]; } delete[] newArgv; if (rc == PARSE_ERROR_SHOW_USAGE) { cout << _cmdParser.GetSynopsis(); } return rc; } mstflint-4.26.0/flint/flint_params.h0000644000175000017500000001171414522641732017653 0ustar tzafrirctzafrirc/* * * flint_params.h - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #ifndef __FLINTPARAMS__ #define __FLINTPARAMS__ #include #include #include "mlxfwops/lib/mlxfwops_com.h" #include "mflash/mflash.h" using namespace std; typedef enum { SC_No_Cmd = 0, SC_Burn, SC_Query, SC_Verify, SC_Swreset, SC_ResetCfg, SC_Brom, SC_Drom, SC_Rrom, SC_Bb, SC_Sg, SC_Smg, SC_Set_Vpd, SC_Set_Cert_Chain, SC_Sv, SC_Ri, SC_Dc, SC_Dh, SC_Set_Key, SC_Hw_Access, SC_Hw, SC_Erase, SC_Rw, SC_Ww, SC_Wwne, SC_Wbne, SC_Wb, SC_Rb, SC_Clear_Sem, SC_Fix_Img, SC_Qrom, SC_Check_Sum, SC_Time_Stamp, SC_Cache_Image, SC_Sign, SC_Add_Hmac, SC_Extract_4MB_Image, SC_Set_Public_Keys, SC_Set_Forbidden_Versions, SC_Image_Reactivation, SC_RSA_Sign, SC_Binary_Compare, SC_Export_Public_Key, SC_Query_Components } sub_cmd_t; class FlintParams { public: // add more params FlintParams(); ~FlintParams(); bool device_specified; string device; bool guids_specified; bool guid_specified; std::vector user_guids; bool mac_specified; bool macs_specified; std::vector user_macs; bool uid_specified; guid_t baseUid; bool help; bool version; bool extended_help; bool blank_guids; bool clear_semaphore; bool quick_query; bool low_cpu; bool next_boot_fw_ver; bool skip_rom_query; bool image_specified; bool nonencrypted_image_specified; bool mfa2_specified; string image; string nonencrypted_image; bool nofs; bool allow_psid_change; bool allow_rom_change; bool override_cache_replacement; bool use_fw; bool no_flash_verify; bool silent; bool yes; bool no; bool vsd_specified; string vsd; bool use_image_ps; bool use_image_guids; bool use_image_rom; bool dual_image; bool striped_image; bool ignore_dev_data; bool banks_specified; int banks; bool log_specified; string log; bool flash_params_specified; flash_params_t flash_params; bool no_devid_check; sub_cmd_t cmd; vector cmd_params; string fullCmd; bool use_dev_img_info; bool ignore_crc_check; bool hexdump_format; bool skip_ci_req; bool use_dev_rom; string privkey_file; string pubkey_file; string privkey_uuid; bool privkey2_specified; bool key_specified; string key; string privkey2_file; bool uuid2_specified; string privkey2_uuid; bool no_fw_ctrl; bool image_reactivation; int num_of_args; bool use_latest_fw_version; string psid; bool use_psid; bool congestion_control; string congestion_control_param; bool use_cpu_utilization; int cpu_percent; bool output_file_specified; string output_file; bool hsm_password_specified; string hsm_password; bool linkx_control; int cableDeviceIndex; int cableDeviceSize; bool cable_device_index_specified; bool cable_device_size_specified; bool linkx_auto_update; bool activate; bool download_downstream_specified; bool downstream_device_ids_specified; std::vector downstream_device_ids; bool download_transfer; u_int8_t activate_delay_sec; string openssl_engine; string openssl_key_id; bool openssl_engine_usage_specified; u_int32_t cert_chain_index; string component_type; }; #endif mstflint-4.26.0/flint/Makefile.am0000644000175000017500000001013214522641732017050 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mflash \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mft_utils/hsmclient/inc \ -I$(top_srcdir)/mft_utils/hsmclient/inc/rsa \ -I$(top_srcdir)/tools_layouts bin_PROGRAMS = mstflint mstflint_SOURCES = \ cmd_line_parser.cpp \ err_msgs.h \ flint.cpp \ flint.h \ flint_params.cpp \ flint_params.h \ subcommands.cpp \ subcommands.h \ subcommands_linkx.cpp mstflint_CXXFLAGS = -Wall -W -g -MP -MD -pipe -DEXTERNAL $(COMPILER_FPIC) \ -DUNIX -DOS_UNIX -DOS_LINUX mstflint_DEPENDENCIES = \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/mft_utils/hsmclient/libhsmclient.a LDADD_mstflint = ${LDL} mstflint_LDFLAGS = -static if ENABLE_DC LDADD_mstflint += -lz else mstflint_CXXFLAGS += -DNO_ZLIB endif if ENABLE_CS mstflint_DEPENDENCIES += $(top_builddir)/tools_crypto/libtools_crypto.a LDADD_mstflint += -lcrypto else endif if ENABLE_INBAND mstflint_DEPENDENCIES += $(top_builddir)/mad_ifc/libmad_ifc.la else endif if ENABLE_OPENSSL mstflint_DEPENDENCIES += $(top_builddir)/mlxsign_lib/libmlxsign.la LDADD_mstflint += -lcrypto -lssl else mstflint_CXXFLAGS += -DNO_OPEN_SSL endif if ENABLE_FWMGR mstflint_DEPENDENCIES += \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/mlxarchive/libmstarchive.la \ $(top_builddir)/tools_layouts/libmlxarchive_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la LDADD_mstflint += -llzma -lm else mstflint_CXXFLAGS += -DNO_MSTARCHIVE endif if ENABLE_DPA mstflint_CXXFLAGS += -DENABLE_DPA mstflint_DEPENDENCIES += $(top_builddir)/mlxdpa/libmstdpa.a endif mstflint_LDADD = $(mstflint_DEPENDENCIES) $(LDADD_mstflint) # get mst device examples and tool name from makefile mstflint_CXXFLAGS += -DFLINT_NAME=\"mstflint\" -DFLINT_DISPLAY_NAME=\"MstFlint\" mstflint_CXXFLAGS += -DMST_DEV_EXAMPLE1=\"03:00.0\" -DMST_DEV_EXAMPLE2=\"mlx4_0\" -DMST_DEV_EXAMPLE3=\"03:00.0\" -DMST_DEV_EXAMPLE4=\"04:00.0\" mstflint-4.26.0/flint/flint.h0000644000175000017500000000536014522641732016310 0ustar tzafrirctzafrirc/* * * flint2.h - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #ifndef __FLINT_H__ #define __FLINT_H__ #include #include "flint_params.h" #include "subcommands.h" #include #include "err_msgs.h" using namespace std; typedef map map_sub_cmd_t_to_subcommand; typedef map map_string_to_string; typedef map map_string_to_int; map_string_to_string initShortToLongFlagMap(); map_string_to_int initLongFlagToNumOfArgsMap(); void deInitSubcommandMap(map_sub_cmd_t_to_subcommand cmdMap); map_sub_cmd_t_to_subcommand initSubcommandMap(); class Flint : public CommandLineRequester { private: FlintParams _flintParams; CommandLineParser _cmdParser; map_sub_cmd_t_to_subcommand _subcommands; // methods map_sub_cmd_t_to_subcommand initSubcommandMap(); void deInitSubcommandMap(map_sub_cmd_t_to_subcommand cmdMap); public: Flint(); ~Flint(); void initCmdParser(); virtual ParseStatus HandleOption(string name, string value); ParseStatus parseCmdLine(int argc, char* argv[]); FlintStatus run(int argc, char* argv[]); FlintParams& GetFlintParams() { return _flintParams; } map_sub_cmd_t_to_subcommand& GetSubCommands() { return _subcommands; } }; #endif mstflint-4.26.0/flint/subcommands.cpp0000644000175000017500000077341514522641732020057 0ustar tzafrirctzafrirc/* * * subcommands.cpp - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include "mtcr.h" #include #include #include #include "mlxfwops/lib/components/fs_synce_ops.h" #ifndef NO_ZLIB #include #endif #if !defined(NO_OPEN_SSL) #include #endif #include "hex64.h" #define MAX_IMG_TYPE_LEN 20 #define MODULUS_SIZE 512 #define TOTAL_PUBLIC_KEY_SIZE 532 #define MODULUS_OFFSET 38 #if !defined(__WIN__) && !defined(__DJGPP__) && !defined(UEFI_BUILD) && defined(HAVE_TERMIOS_H) // used in mygetchar #include #endif #ifdef __WIN__ #include #include #include #endif // WIN #include "subcommands.h" #include "tools_layouts/cx4fw_layouts.h" #include "tools_layouts/image_layout_layouts.h" using namespace std; #ifndef NO_MSTARCHIVE using namespace mfa2; #endif /*********************************** * Log file writing implementation ************************************/ // global log file header FILE* flint_log_fh = NULL; #define BURN_INTERRUPTED 0x1234 static int is_arm() { #if defined(MST_CPU_arm64) return 1; #else return 0; #endif } void close_log() { if (flint_log_fh != NULL) { fclose(flint_log_fh); flint_log_fh = NULL; } return; } static const char* life_cycle_strings[NUM_OF_LIFE_CYCLES] = {"PRODUCTION", "GA SECURED", "GA NON SECURED", "RMA"}; #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0])) const char* month_2monstr(int month) { static const char* month_2monstr_arr[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", }; int arr_size = (int)ARRAY_SIZE(month_2monstr_arr); return month < arr_size ? month_2monstr_arr[month] : "???"; } void print_time_to_log() { time_t rawtime; struct tm* timeinfo; if (flint_log_fh == NULL) { return; } time(&rawtime); timeinfo = localtime(&rawtime); if (!timeinfo) { printf("localtime returned NULL. Can't print time.\n"); return; } fprintf(flint_log_fh, "%-3s %2d %02d:%02d:%02d ", month_2monstr(timeinfo->tm_mon), timeinfo->tm_mday, timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec); return; } int print_line_to_log(const char* format, ...) { va_list args; if (flint_log_fh == NULL) { return 0; } print_time_to_log(); va_start(args, format); vfprintf(flint_log_fh, format, args); va_end(args); return 0; } int write_cmd_to_log(string fullCmd, sub_cmd_t cmd, bool write) { if (!write) { return 0; } char pre_str[50]; if (flint_log_fh == NULL) { return 0; } if (cmd == SC_Brom) { snprintf(pre_str, 50, "ROM"); } else { snprintf(pre_str, 50, "FW"); } print_time_to_log(); fprintf(flint_log_fh, "Start %s burning: ", pre_str); fprintf(flint_log_fh, "%s ", fullCmd.c_str()); fprintf(flint_log_fh, "\n"); return 0; } int write_result_to_log(int is_failed, const char* err_msg, bool write) { if (!write) { return 0; } char msg[MAX_ERR_STR_LEN + 1] = {0}; strncpy(msg, err_msg, MAX_ERR_STR_LEN); if (is_failed == 0) { print_line_to_log("Burn completed successfully\n"); } else if (is_failed == BURN_INTERRUPTED) { print_line_to_log("Burn interrupted by user\n"); } else { int msg_len = strlen(msg); // cleanup the msg for (int i = 0; i < msg_len; i++) { if (msg[i] == '\n') { if (i == msg_len - 1) { msg[i] = '\0'; } else { msg[i] = ' '; } } } print_line_to_log("Burn failed: %s\n", msg); } return 0; } bool is_file_exists(const string filename) { /* Check for existence */ #ifdef __WIN__ if (_access(filename.c_str(), F_OK) != -1) { return true; } #else if (access(filename.c_str(), F_OK) != -1) { return true; } #endif return false; } bool is_file_exists(const char* filename) { /* Check for existence */ #ifdef __WIN__ if (_access(filename, F_OK) != -1) { return true; } #else if (access(filename, F_OK) != -1) { return true; } #endif return false; } /******************* * Static functions ******************/ static bool str2Num(const char* str, u_int32_t& num) { char* endp; u_int32_t tempNum; if (!str) { return false; } tempNum = strtoul(str, &endp, 0); if (*endp) { return false; } num = tempNum; return true; } /******************* * Class: Subcommand ******************/ #define MAX_ERR_STR_LEN 1024 #define PRE_ERR_MSG "-E-" bool SubCommand::isCmdSupportLog() { // a subcommand supports Logging if: A & B where: // A. it is either Burn, Burn Block or Burn ROM. // B. log flag was given in the cmd line. switch (_cmdType) { case SC_Burn: case SC_Bb: case SC_Brom: return _flintParams.log_specified; default: return false; } return false; } void SubCommand::reportErr(bool shouldPrint, const char* format, ...) { va_list args; va_start(args, format); if (vsnprintf(_errBuff, FLINT_ERR_LEN, format, args) >= FLINT_ERR_LEN) { strcpy(&_errBuff[FLINT_ERR_LEN - 5], "...\n"); } // print to the user and to the log if needed if (shouldPrint) { fprintf(stdout, PRE_ERR_MSG " %s", _errBuff); } write_result_to_log(FLINT_FAILED, _errBuff, isCmdSupportLog()); va_end(args); return; } bool SubCommand::getFileSize(const string& filePath, long& fileSize) { FILE* fd = fopen(filePath.c_str(), "rb"); if (fd == NULL) { reportErr(true, FLINT_OPEN_FILE_ERROR, filePath.c_str(), strerror(errno)); return false; } if (fseek(fd, 0, SEEK_END) < 0) { fclose(fd); reportErr(true, FLINT_FILE_SIZE_ERROR, filePath.c_str()); return false; } long FileSize = ftell(fd); if (FileSize < 0) { fclose(fd); reportErr(true, FLINT_FILE_SIZE_ERROR, filePath.c_str()); return false; } fileSize = FileSize; fclose(fd); return true; } bool SubCommand::readFromFile(const string& filePath, std::vector& buff) { FILE* fd = fopen(filePath.c_str(), "rb"); if (fd == NULL) { reportErr(true, FLINT_OPEN_FILE_ERROR, filePath.c_str(), strerror(errno)); return false; } if (fseek(fd, 0, SEEK_END) < 0) { fclose(fd); reportErr(true, FLINT_FILE_SIZE_ERROR, filePath.c_str()); return false; } long fileSize = ftell(fd); if (fileSize < 0) { fclose(fd); reportErr(true, FLINT_FILE_SIZE_ERROR, filePath.c_str()); return false; } rewind(fd); int currentSize = buff.size(); // default 0 buff.resize(currentSize + fileSize, 0xff); // Read long read_res = (long)fread(&buff[currentSize], 1, fileSize, fd); if (read_res < 0) { fclose(fd); reportErr(true, FLINT_READ_FILE_ERROR, filePath.c_str()); return false; } fclose(fd); return true; } bool SubCommand::writeToFile(string filePath, const std::vector& buff) { FILE* fh = fopen(filePath.c_str(), "wb"); if (fh == NULL) { reportErr(true, FLINT_OPEN_FILE_ERROR, filePath.c_str(), strerror(errno)); return false; } // Write if (fwrite(&buff[0], 1, buff.size(), fh) != buff.size()) { fclose(fh); reportErr(true, FLINT_WRITE_FILE_ERROR, filePath.c_str(), strerror(errno)); return false; } fclose(fh); return true; } FlintStatus SubCommand::writeImageToFile(const char* file_name, u_int8_t* data, u_int32_t length) { FILE* fh = fopen(file_name, "wb"); if (fh == NULL) { reportErr(true, FLINT_OPEN_FILE_ERROR, file_name, strerror(errno)); return FLINT_FAILED; } // Write output if (fwrite(data, 1, length, fh) != length) { fclose(fh); reportErr(true, FLINT_WRITE_FILE_ERROR, file_name, strerror(errno)); return FLINT_FAILED; } fclose(fh); return FLINT_SUCCESS; } void SubCommand::openLog() { if (isCmdSupportLog()) { flint_log_fh = fopen(_flintParams.log.c_str(), "a+"); if (flint_log_fh == NULL) { printf(FLINT_OPEN_LOG_FILE_WARNING, _flintParams.log.c_str(), strerror(errno)); } write_cmd_to_log(_flintParams.fullCmd, _flintParams.cmd, _flintParams.log_specified); } } int SubCommand::verifyCbFunc(char* str) { printf("%s", str); return 0; } int SubCommand::CbCommon(int completion, char* preStr, char* endStr) { if (completion < 100) { printf("\r%s%3d%%", preStr, completion); } else if (completion == 100) { printf("\r%sOK \n", preStr); } else { // printing endStr if (endStr) { printf("\r%s\n", endStr); } } fflush(stdout); return 0; } // HACK: the endStr is printed when we reach 101% this is for backward compat with the original flint // output. thus in subcommands that use these callbacks you will see we manually call them at the end with the 101 arg int SubCommand::burnCbFs3Func(int completion) { char* message = (char*)"Burning FW image without signatures - "; char* endStr = (char*)"Restoring signature - OK"; return CbCommon(completion, message, endStr); } int SubCommand::advProgressFunc(int completion, const char* stage, prog_t type, int* unknownProgress) { switch (type) { case PROG_WITH_PRECENTAGE: printf("\r%s - %3d%%", stage, completion); break; case PROG_OK: printf("\r%s - OK\n", stage); break; case PROG_STRING_ONLY: printf("%s\n", stage); break; case PROG_WITHOUT_PRECENTAGE: if (unknownProgress) { static const char* progStr[] = {"[. ]", "[.. ]", "[... ]", "[.... ]", "[.....]", "[ ....]", "[ ...]", "[ ..]", "[ .]", "[ ]"}; int size = sizeof(progStr) / sizeof(progStr[0]); printf("\r%s - %s", stage, progStr[(*unknownProgress) % size]); (*unknownProgress)++; } break; } fflush(stdout); return 0; } int SubCommand::burnCbFs2Func(int completion) { char* message = (char*)"Burning FS2 FW image without signatures - "; char* endStr = (char*)"Restoring signature - OK"; if (completion == 102) { endStr = (char*)"Image was successfully cached by driver."; } return CbCommon(completion, message, endStr); } int SubCommand::bromCbFunc(int completion) { char* message = (char*)"Burning ROM image - "; char* endStr = (char*)"Restoring signature - OK"; return CbCommon(completion, message, endStr); } int SubCommand::dromCbFunc(int completion) { char* message = (char*)"Removing ROM image - "; char* endStr = (char*)"Restoring signature - OK"; return CbCommon(completion, message, endStr); } int SubCommand::resetCfgCbFunc(int completion) { char* message = (char*)"Resetting NV configuration - "; char* endStr = (char*)"Restoring signature - OK"; return CbCommon(completion, message, endStr); } int SubCommand::burnBCbFunc(int completion) { return CbCommon(completion, (char*)""); } int SubCommand::vsdCbFunc(int completion) { char* message = (char*)"Setting the VSD - "; char* endStr = (char*)"Restoring signature - OK"; return CbCommon(completion, message, endStr); } int SubCommand::setKeyCbFunc(int completion) { char* message = (char*)"Setting the HW Key - "; char* endStr = (char*)"Restoring signature - OK"; return CbCommon(completion, message, endStr); } int SubCommand::wbCbFunc(int completion) { char* message = (char*)"Writing Block: - "; return CbCommon(completion, message, NULL); } #define ERR_BUFF_SIZE 1024 void SubCommand::initDeviceFwParams(char* errBuff, FwOperations::fw_ops_params_t& fwParams) { memset(&fwParams, 0, sizeof(FwOperations::fw_ops_params_t)); fwParams.errBuff = errBuff; fwParams.errBuffSize = ERR_BUFF_SIZE; fwParams.flashParams = _flintParams.flash_params_specified ? &_flintParams.flash_params : NULL; fwParams.forceLock = _flintParams.clear_semaphore; fwParams.hndlType = FHT_MST_DEV; fwParams.ignoreCacheRep = _flintParams.override_cache_replacement ? 1 : 0; fwParams.mstHndl = strcpy(new char[_flintParams.device.length() + 1], _flintParams.device.c_str()); fwParams.numOfBanks = _flintParams.banks; fwParams.readOnly = false; fwParams.noFlashVerify = _flintParams.no_flash_verify; fwParams.cx3FwAccess = _flintParams.use_fw; fwParams.noFwCtrl = _flintParams.no_fw_ctrl; fwParams.mccUnsupported = !_mccSupported; fwParams.ignoreCrcCheck = _flintParams.ignore_crc_check; } FlintStatus SubCommand::openOps(bool ignoreSecurityAttributes, bool ignoreDToc) { DPRINTF(("SubCommand::openOps\n")); char errBuff[ERR_BUFF_SIZE] = {0}; if (_flintParams.device_specified) { // fillup the fw_ops_params_t struct FwOperations::fw_ops_params_t fwParams; initDeviceFwParams(errBuff, fwParams); if (_flintParams.image_specified) { FwOperations::fw_ops_params_t imgFwParams; memset(&imgFwParams, 0, sizeof(imgFwParams)); imgFwParams.psid = NULL; imgFwParams.hndlType = FHT_FW_FILE; imgFwParams.errBuff = errBuff; imgFwParams.errBuffSize = 1024; imgFwParams.shortErrors = true; imgFwParams.fileHndl = (char*)_flintParams.image.c_str(); imgFwParams.ignoreCrcCheck = _flintParams.ignore_crc_check; if (!FwOperations::imageDevOperationsCreate(fwParams, imgFwParams, &_fwOps, &_imgOps, ignoreSecurityAttributes, ignoreDToc)) { /* * Error are being handled after */ } } else { _fwOps = FwOperations::FwOperationsCreate(fwParams); } delete[] fwParams.mstHndl; } if (_flintParams.image_specified && !_flintParams.device_specified) { _imgOps = FwOperations::FwOperationsCreate((void*)_flintParams.image.c_str(), NULL, NULL, FHT_FW_FILE, errBuff, 1024); } if (_flintParams.image_specified && _imgOps == NULL) { reportErr(true, FLINT_OPEN_FWOPS_IMAGE_ERROR, _flintParams.image.c_str(), strlen(errBuff) != 0 ? errBuff : ""); return FLINT_FAILED; } if (_flintParams.device_specified && _fwOps == NULL) { if (_flintParams.silent == false) { reportErr(true, FLINT_OPEN_FWOPS_DEVICE_ERROR, _flintParams.device.c_str(), strlen(errBuff) != 0 ? errBuff : ""); } return FLINT_FAILED; } return FLINT_SUCCESS; } FlintStatus SubCommand::openIo() { // TODO: consider adding a parameter for when image/device will be opened as "readOnly" in the open routine. if (_flintParams.device_specified && _flintParams.image_specified) { // should not arrive here as we verify params at each subcommand. reportErr(true, FLINT_DEVICE_AND_IMAGE_ERROR); return FLINT_FAILED; } if (_flintParams.device_specified) { _io = new Flash; if (!((Flash*)_io) ->open(_flintParams.device.c_str(), _flintParams.clear_semaphore, false, _flintParams.banks, _flintParams.flash_params_specified ? &_flintParams.flash_params : NULL, _flintParams.override_cache_replacement, true, _flintParams.use_fw)) { // if we have Hw_Access command we dont fail straght away u_int8_t lockedCrSpace = ((Flash*)_io)->get_cr_space_locked(); if (lockedCrSpace && (_flintParams.cmd == SC_Hw_Access || (_flintParams.cmd == SC_Set_Key && ((Flash*)_io)->is_fifth_gen()))) { return FLINT_SUCCESS; } reportErr(true, FLINT_IO_OPEN_ERROR, "Device", (_io)->err()); delete _io; _io = NULL; return FLINT_FAILED; } // we have successfully opened a Flash Obj // set no flash verify if needed (default =false) ((Flash*)_io)->set_no_flash_verify(_flintParams.no_flash_verify); } else if (_flintParams.image_specified) { _io = new FImage; if (!((FImage*)_io)->open(_flintParams.image.c_str())) { reportErr(true, FLINT_IO_OPEN_ERROR, "Image", (_io)->err()); delete _io; _io = NULL; return FLINT_FAILED; } } return FLINT_SUCCESS; } bool SubCommand::basicVerifyParams() { if (!_flintParams.log_specified) { char* logFile; logFile = getenv(FLINT_LOG_ENV); if (logFile) { _flintParams.log = logFile; _flintParams.log_specified = true; } } // open log if needed openLog(); if (_maxCmdParamNum == _minCmdParamNum && _maxCmdParamNum != -1 && (int)_flintParams.cmd_params.size() != _maxCmdParamNum) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), _maxCmdParamNum, _flintParams.cmd_params.size()); return false; } else if (_maxCmdParamNum != -1 && (int)_flintParams.cmd_params.size() > _maxCmdParamNum) { // _maxCmdParamNum == -1 means ignore this check if (_maxCmdParamNum) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), _maxCmdParamNum, (int)_flintParams.cmd_params.size()); } else { reportErr(true, FLINT_CMD_ARGS_ERROR5, _name.c_str()); } return false; } else if (_minCmdParamNum != -1 && (int)_flintParams.cmd_params.size() < _minCmdParamNum) { // _minCmdParamNum == -1 means ignore this check reportErr(true, FLINT_CMD_ARGS_ERROR3, _name.c_str(), _minCmdParamNum, _flintParams.cmd_params.size()); return false; } switch (_v) { case Wtv_Img: if (_flintParams.device_specified == true) { _flintParams.image_specified ? reportErr(true, FLINT_COMMAND_IMAGE_ERROR2, _name.c_str()) : reportErr(true, FLINT_COMMAND_IMAGE_ERROR, _name.c_str()); return false; } if (_flintParams.image_specified == false) { reportErr(true, FLINT_NO_IMAGE_ERROR); return false; } break; case Wtv_Dev: if (_flintParams.image_specified == true) { _flintParams.device_specified ? reportErr(true, FLINT_COMMAND_DEVICE_ERROR2, _name.c_str()) : reportErr(true, FLINT_COMMAND_DEVICE_ERROR, _name.c_str()); return false; } if (_flintParams.device_specified == false) { reportErr(true, FLINT_NO_DEVICE_ERROR); return false; } break; case Wtv_Dev_And_Img: if (_flintParams.linkx_control == false) { if ((_flintParams.image_specified == false) || (_flintParams.device_specified == false)) { reportErr(true, FLINT_COMMAND_DEVICE_IMAGE_ERROR, _name.c_str()); return false; } } break; case Wtv_Dev_Or_Img: if (_flintParams.image_specified == true && _flintParams.device_specified == true) { reportErr(true, FLINT_DEVICE_AND_IMAGE_ERROR); return false; } if (_flintParams.device_specified == false && _flintParams.image_specified == false) { reportErr(true, FLINT_DEVICE_AND_IMAGE_ERROR); return false; } break; case Wtv_Uninitilized: return true; default: reportErr(true, FAILED_TO_VERIFY_PARAMS); return false; } if (_flintParams.device_specified && _flintParams.striped_image) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-device", "-striped_image"); return false; } if (_flintParams.override_cache_replacement) { printf(FLINT_OCR_WARRNING); } return true; } FlintStatus SubCommand::preFwOps(bool ignoreSecurityAttributes, bool ignoreDToc) { DPRINTF(("SubCommand::preFwOps\n")); if (!basicVerifyParams()) { return FLINT_FAILED; } if (_flintParams.linkx_control != true) { if (!verifyParams()) { return FLINT_FAILED; } } if (_flintParams.mfa2_specified || _flintParams.congestion_control || _flintParams.linkx_control == true) { bool saved_value = _flintParams.image_specified; _flintParams.image_specified = false; FlintStatus result = openOps(true); _flintParams.image_specified = saved_value; return result; } else { return openOps(ignoreSecurityAttributes, ignoreDToc); } } FlintStatus SubCommand::preFwAccess() { if (!basicVerifyParams()) { return FLINT_FAILED; } if (!verifyParams()) { return FLINT_FAILED; } return openIo(); } SubCommand::~SubCommand() { if (_fwOps != NULL) { _fwOps->FwCleanUp(); delete _fwOps; } if (_imgOps != NULL) { _imgOps->FwCleanUp(); delete _imgOps; } if (_io != NULL) { _io->close(); delete _io; } } // matanel - TODO: duplicated, use same function from fw_ops.cpp bool SubCommand::getRomsInfo(FBase* io, roms_info_t& romsInfo) { std::vector romSector; romSector.clear(); romSector.resize(io->get_effective_size()); if (!io->read(0, &romSector[0], io->get_effective_size())) { reportErr(true, FLINT_READ_ERROR, _flintParams.image.c_str(), io->err()); return false; } FwOperations::RomInfo info(romSector, false); info.ParseInfo(); info.initRomsInfo(&romsInfo); return true; } bool SubCommand::getGUIDFromStr(string str, guid_t& guid, string prefixErr) { char* endp; u_int64_t g; g = strtoull(str.c_str(), &endp, 16); if (*endp || (g == 0xffffffffffffffffULL && errno == ERANGE)) { if (prefixErr.size() == 0) { reportErr(true, INVALID_GUID_SYNTAX, str.c_str(), errno ? strerror(errno) : ""); } else { reportErr(true, "%s\n", prefixErr.c_str()); } return false; } guid.h = (u_int32_t)(g >> 32); guid.l = (u_int32_t)(g & 0xffffffff); return true; } #if !defined(__WIN__) && !defined(__DJGPP__) && !defined(UEFI_BUILD) && defined(HAVE_TERMIOS_H) static int mygetch(void) { struct termios oldt; struct termios newt; int ch; tcgetattr(STDIN_FILENO, &oldt); newt = oldt; newt.c_lflag &= ~(ICANON | ECHO); tcsetattr(STDIN_FILENO, TCSANOW, &newt); ch = getchar(); tcsetattr(STDIN_FILENO, TCSANOW, &oldt); return ch; } bool SubCommand::getPasswordFromUser(const char* preStr, char buffer[MAX_PASSWORD_LEN + 1]) { char c; int pos = 0; printf("%s: ", preStr); do { c = mygetch(); if (((pos < MAX_PASSWORD_LEN)) && isprint(c)) { buffer[pos++] = c; printf("%c", '*'); } else if ((c == 8 || c == 127) && pos) { buffer[pos--] = '\0'; printf("%s", "\b \b"); } } while (c != '\n'); printf("\n"); buffer[pos] = '\0'; return true; } #else bool SubCommand::getPasswordFromUser(const char* preStr, char buffer[MAX_PASSWORD_LEN + 1]) { static HANDLE stdinHndl = NULL; DWORD numOfBytesRead = 0; DWORD oldConsoleMode, consoleMode; BOOL status = FALSE; char ch; int i; if (!stdinHndl) { // adrianc: this might be problematic if called and stdout was alreading overridden use CIN$ instead stdinHndl = GetStdHandle(STD_INPUT_HANDLE); } printf("%s:", preStr); // disable console echoing if (!GetConsoleMode(stdinHndl, &oldConsoleMode)) { reportErr(true, FAILED_GET_CONSOLE_MODE); return false; } consoleMode = oldConsoleMode & ~(ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT); if (!SetConsoleMode(stdinHndl, consoleMode)) { reportErr(true, FAILED_GET_CONSOLE_MODE); return 1; } // read chars from stdin and print * to stdout using putchar for (i = 0;;) { status = ReadFile(stdinHndl, &ch, sizeof(char), &numOfBytesRead, NULL); if (!status || numOfBytesRead != sizeof(char) || ch == '\n' || ch == '\r' || i == (MAX_PASSWORD_LEN - 1)) { // user finished giving the pw if (!SetConsoleMode(stdinHndl, oldConsoleMode)) { reportErr(true, FAILED_GET_CONSOLE_MODE); return false; } if (!status || numOfBytesRead != sizeof(char)) { reportErr(true, FAILED_GET_CONSOLE_MODE); return false; } break; } if (isalpha(ch) || isdigit(ch)) { putchar('*'); buffer[i++] = ch; } else if (ch == '\b' && i) { // delete last astrix and set correct position printf("\b \b"); i--; } } buffer[i] = '\0'; putchar('\n'); return true; } #endif // // Asks user a yes/no question. // Returns true if user chose Y, false if user chose N. // bool SubCommand::askUser(const char* question, bool printAbrtMsg) { if (question == NULL) { printf("\n Do you want to continue ? (y/n) [n] : "); } else { printf("\n %s ? (y/n) [n] : ", question); } if (_flintParams.yes) { printf("y\n"); } else { if (_flintParams.no) { printf("n\n"); reportErr(false, "-no flag is set\n"); return false; } fflush(stdout); std::string answer; std::getline(std::cin, answer); // fgets(ansbuff, 30, stdin); // if (!fscanf(stdin, "%[^\n]30s", ansbuff)) { // return false; //} if (strcasecmp(answer.c_str(), "y") && strcasecmp(answer.c_str(), "yes")) { if (printAbrtMsg) { reportErr(true, USER_ABORT); } return false; } } return true; } string SubCommand::getRomProtocolStr(u_int8_t proto) { string result; switch (proto) { case ER_IB: result = "IB"; break; case ER_ETH: result = "ETH"; break; case ER_VPI: result = "VPI"; break; default: result = "N/A"; } return result; } string SubCommand::getRomSuppCpuStr(u_int8_t suppCpu) { string result; switch (suppCpu) { case ERC_AMD64: result = "AMD64"; break; case ERC_AARCH64: result = "AARCH64"; break; case ERC_AMD64_AARCH64: result = "AMD64,AARCH64"; break; case ERC_IA32: result = "IA32"; break; default: result = "N/A"; } return result; } string SubCommand::getExpRomVerStr(const rom_info_t& info) { stringstream verStream; if (info.exp_rom_num_ver_fields) { for (int i = 0; i < info.exp_rom_num_ver_fields; i++) { verStream << info.exp_rom_ver[i]; if (i + 1 < info.exp_rom_num_ver_fields) { verStream << "."; } } } return verStream.str(); } void SubCommand::displayOneExpRomInfo(const rom_info_t& info) { const char* typeStr = FwOperations::expRomType2Str(info.exp_rom_product_id); if (info.exp_rom_product_id == 0xf) { // version id in this case is the freeStr that was moved to exp_rom_ver[0] in mlxfwops printf("version_id=%s type=%s ", getExpRomVerStr(info).c_str(), typeStr); } else { if (typeStr) { printf("type=%s ", typeStr); } else { printf("0x%x - Unknown ROM product ID\n", info.exp_rom_product_id); return; } printf("version=%s", getExpRomVerStr(info).c_str()); if (info.exp_rom_product_id >= 0x10) { if (info.exp_rom_port) { // Do not display if 0 - port independent printf(" port=%d", info.exp_rom_port); } if (info.exp_rom_product_id != 0x12 && info.exp_rom_proto != 0xff) { // on CLP(0x12) there is no meaning to protocol printf(" proto=%s", getRomProtocolStr(info.exp_rom_proto).c_str()); } if (info.exp_rom_supp_cpu_arch) { printf(" cpu=%s", getRomSuppCpuStr(info.exp_rom_supp_cpu_arch).c_str()); } } } return; } void SubCommand::displayExpRomInfo(const roms_info_t& romsInfo, const char* preStr) { int i; int strLen = strlen(preStr); if (romsInfo.num_of_exp_rom > 0) { for (i = 0; i < romsInfo.num_of_exp_rom; i++) { // Print the pre string or spaces if (i == 0) { printf("%s", preStr); } else { int j; for (j = 0; j < strLen; j++) { printf("%s", " "); } } // Display a ROM info displayOneExpRomInfo(romsInfo.rom_info[i]); if (i != romsInfo.num_of_exp_rom - 1) { // Don't print new line after the info of the last ROM printf("\n"); } } if (romsInfo.exp_rom_warning) { printf(" (-W- %s)", romsInfo.exp_rom_warning_msg); } printf("\n"); } else { printf("%s", preStr); printf("N/A"); if (romsInfo.exp_rom_err_msg_valid) { printf(" (-E- %s)", romsInfo.exp_rom_err_msg); } printf("\n"); } return; } bool SubCommand::printGuidLine(guid_t* new_guids, guid_t* old_guids, int guid_index) { printf(GUID_FORMAT GUID_SPACES, new_guids[guid_index].h, new_guids[guid_index].l); if (old_guids != NULL) { printf(GUID_FORMAT, old_guids[guid_index].h, old_guids[guid_index].l); } else { printf(" N/A"); } printf("\n"); return true; } bool SubCommand::printMacLine(guid_t* new_guids, guid_t* old_guids, int mac_index) { printf(" " MAC_FORMAT MAC_SPACES, new_guids[mac_index].h, new_guids[mac_index].l); if (old_guids != NULL) { printf(MAC_FORMAT, old_guids[mac_index].h, old_guids[mac_index].l); } else { printf(" N/A"); } printf("\n"); return true; } bool SubCommand::printGUIDsFunc(guid_t guids[GUIDS], guid_t macs[MACS], guid_t old_guids[GUIDS], guid_t old_macs[MACS], bool print_guids, bool print_macs, int portNum, bool old_guid_fmt) { if (print_guids) { printf(" Node GUID: "); printGuidLine(guids, old_guids, 0); if (portNum > 0) { printf(" Port1 GUID: "); printGuidLine(guids, old_guids, 1); } if (portNum > 1) { printf(" Port2 GUID: "); printGuidLine(guids, old_guids, 2); } if (!old_guid_fmt) { printf(" Sys.Image GUID: "); printGuidLine(guids, old_guids, 3); } } if (print_macs) { printf(" Port1 MAC: "); printMacLine(macs, old_macs, 0); printf(" Port2 MAC: "); printMacLine(macs, old_macs, 1); } return true; } bool SubCommand::reportGuidChanges(guid_t* new_guids, guid_t* new_macs, guid_t* old_guids, guid_t* old_macs, bool printGuids, bool printMacs, int guidNum) { // should be used ONLY on FS2 in current implementation printf(" You are about to change the Guids/Macs/Uids on the %s:\n\n", _flintParams.device_specified ? "device" : "image"); printf(" New Values " GUID_SPACES "Current Values\n"); printGUIDsFunc(new_guids, new_macs, old_guids, old_macs, printGuids, printMacs, guidNum, guidNum < GUIDS); if (!askUser()) { return false; } return true; } // used for dc and dh subcommands bool SubCommand::unzipDataFile(std::vector data, std::vector& newData, const char* sectionName) { #ifndef NO_ZLIB int rc; if (data.empty()) { reportErr(true, SECTION_NOT_FOUNT, sectionName); return false; } // restore endianess. TOCPUn(&(data[0]), data.size() / 4); // uncompress: uLongf destLen = data.size(); destLen *= 40; // Assuming this is the best compression ratio vector dest(destLen); for (int i = 0; i < 32; i++) { rc = uncompress((Bytef*)&(dest[0]), &destLen, (const Bytef*)&(data[0]), data.size()); if (rc != Z_BUF_ERROR) { break; } destLen *= 2; dest.resize(destLen); } if (rc != Z_OK) { reportErr(true, UNCOMPRESSS_ERROR, rc); return false; } // printf("%s", (char*)&(dest[0])); newData = dest; newData[destLen] = 0; // Terminating NULL newData.resize(destLen + 1); return true; #else // avoid warnings (void)data; (void)newData; (void)sectionName; reportErr(true, FLINT_NO_ZLIB_ERROR); return false; #endif } bool SubCommand::dumpFile(const char* confFile, std::vector& data, const char* sectionName) { FILE* out; vector dest; if (confFile == NULL) { out = stdout; } else { out = fopen(confFile, "w"); if (out == NULL) { reportErr(true, OPEN_WRITE_FILE_ERROR, confFile, strerror(errno)); return false; } } if (unzipDataFile(data, dest, sectionName) == false) { if (confFile != NULL) { fclose(out); } return false; } fprintf(out, "%s", (char*)&(dest[0])); if (confFile != NULL) { fclose(out); } return true; } bool SubCommand::checkGuidsFlags(u_int16_t devType, u_int8_t fwType, bool guidsSpecified, bool macsSpecified, bool uidSpecified, bool ibDev, bool ethDev) { (void)ibDev; if (guidsSpecified || macsSpecified || uidSpecified) { if (uidSpecified && fwType != FIT_FS3 && fwType != FIT_FS4 && fwType != FIT_FS5 && fwType != FIT_FSCTRL) { reportErr(true, "-uid flag is applicable only for FS3/FS4/FS5 FW Only.\n"); return false; } else if (fwType != FIT_FS2 && !ethDev && macsSpecified) { reportErr(true, "-mac(s) flag is not applicable for IB MT%d device.\n", devType); return false; } } return true; } void SubCommand::printMissingGuidErr(bool ibDev, bool ethDev) { const char* missingInfo; const char* missingFlags; if (ibDev && ethDev) { missingInfo = "GUIDs / MACs"; missingFlags = "-guid(s) / -mac(s)"; } else if (ibDev) { missingInfo = "GUIDs"; missingFlags = "-guid(s)"; } else { missingInfo = "MACs"; missingFlags = "-mac(s)"; } printf("Please specify %s (using command line flags %s ).\n", missingInfo, missingFlags); return; } bool SubCommand::extractValuesFromString(string valStr, u_int8_t values[2], string origArg) { u_int32_t tempValues[2] = {0, 0}; if (!extractValuesFromStringAux(valStr, tempValues, origArg)) { return false; } // perform checks if (tempValues[0] > 255 || tempValues[1] > 255) { reportErr(true, "Invalid argument values for %s, values can't be larger than 255.\n", origArg.c_str()); return false; } values[0] = tempValues[0]; values[1] = tempValues[1]; return true; } bool SubCommand::extractValuesFromString(string valStr, u_int16_t values[2], string origArg) { u_int32_t tempValues[2] = {0, 0}; if (!extractValuesFromStringAux(valStr, tempValues, origArg)) { return false; } // perform checks if (tempValues[0] > 1024 || tempValues[1] > 1024) { reportErr(true, "Invalid argument values for %s, values can't be larger than 1024.\n", origArg.c_str()); return false; } values[0] = tempValues[0]; values[1] = tempValues[1]; return true; } bool SubCommand::extractValuesFromStringAux(string valStr, u_int32_t values[2], string origArg) { string tempNumStr; // check if we need to extract 2 values or 1 if (valStr.find(',') != string::npos) { std::stringstream ss((valStr.c_str())); // get first value if (!std::getline(ss, tempNumStr, ',')) { reportErr(true, FLINT_INVALID_ARG_ERROR, origArg.c_str()); return false; } if (!str2Num(tempNumStr.c_str(), values[0])) { reportErr(true, FLINT_INVALID_ARG_ERROR, origArg.c_str()); return false; } // get second value if (!std::getline(ss, tempNumStr, ',')) { reportErr(true, FLINT_INVALID_ARG_ERROR, origArg.c_str()); return false; } if (!str2Num(tempNumStr.c_str(), values[1])) { reportErr(true, FLINT_INVALID_ARG_ERROR, origArg.c_str()); return false; } // make sure no other tokens are present if (!(!std::getline(ss, tempNumStr, ','))) { reportErr(true, FLINT_INVALID_ARG_ERROR, origArg.c_str()); return false; } } else { if (!str2Num(valStr.c_str(), values[0])) { reportErr(true, FLINT_INVALID_ARG_ERROR, origArg.c_str()); return false; } values[1] = values[0]; } return true; } bool SubCommand::extractUIDArgs(std::vector& cmdArgs, u_int16_t numOfGuids[2], u_int8_t stepSize[2]) { // extract num_of_guids and step_size from numGuidsStr, stepStr string tag, valStr; for (std::vector::iterator it = cmdArgs.begin(); it != cmdArgs.end(); it++) { std::stringstream ss((it->c_str())); // get the tag if (!std::getline(ss, tag, '=')) { reportErr(true, FLINT_INVALID_ARG_ERROR, it->c_str()); return false; } // get the val if (!std::getline(ss, valStr, '=')) { reportErr(true, FLINT_INVALID_ARG_ERROR, it->c_str()); return false; } // make sure no other tokens are present if (!(!std::getline(ss, valStr, '='))) { reportErr(true, FLINT_INVALID_ARG_ERROR, it->c_str()); return false; } if (tag == "guids_num") { if (!extractValuesFromString(valStr, numOfGuids, *it)) { return false; } } else if (tag == "step_size") { if (!extractValuesFromString(valStr, stepSize, *it)) { return false; } } else { reportErr(true, FLINT_INVALID_ARG_ERROR, it->c_str()); return false; } } return true; } const char* SubCommand::fwImgTypeToStr(u_int8_t fwImgType) { switch (fwImgType) { case FIT_FS2: return "FS2"; break; case FIT_FS3: return "FS3"; break; case FIT_FS4: return "FS4"; break; case FIT_FS5: return "FS5"; break; case FIT_FSCTRL: return "FSCTRL"; break; case FIT_COMPS: return "COMPS"; break; default: return "Unknown"; break; } } /*************************** * Extract4MBImageSubCommand ***********************/ Extract4MBImageSubCommand::Extract4MBImageSubCommand() { _name = "extract_fw_data"; _desc = "Extract firmware data for firmware controlled updates"; _extendedDesc = "Extract 4MB firmware image file for firmware controlled updates. " "The extracted data will have the image signature and the device ToCs " "overwritten with 0xFF"; _flagLong = "extract_fw_data"; _param = ""; _paramExp = "file - filename to write the extracted data"; _example = FLINT_NAME " -i fw_image.bin extract_fw_data outputfile.bin"; _v = Wtv_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Extract_4MB_Image; } Extract4MBImageSubCommand::~Extract4MBImageSubCommand() {} FlintStatus Extract4MBImageSubCommand::executeCommand() { vector img; if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_imgOps->FwType() == FIT_FS2) { reportErr(true, "Extracting FW Data is applicable only for FS3/FS4 FW.\n"); return FLINT_FAILED; } if (!_imgOps->FwExtract4MBImage(img, true)) { reportErr(true, "Extracting FW Data failed: %s.\n", _imgOps->err()); return FLINT_FAILED; } if (!writeToFile(_flintParams.cmd_params[0], img)) { return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * * Class: AddHmacSubCommand * ***********************/ AddHmacSubCommand::AddHmacSubCommand() { _name = "sign_with_hmac"; _desc = "Sign image with HMAC"; _extendedDesc = "Sign image with HMAC"; _flagLong = "sign_with_hmac"; _flagShort = ""; _paramExp = "None"; _example = FLINT_NAME " -i fw_image.bin --hmac_key hmac_key_file sign_with_hmac"; _v = Wtv_Img; _maxCmdParamNum = 0; _cmdType = SC_Add_Hmac; } AddHmacSubCommand::~AddHmacSubCommand() {} FlintStatus AddHmacSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_imgOps->FwType() != FIT_FS4) { reportErr(true, "Signing with HMAC is applicable only for FS4 FW.\n"); return FLINT_FAILED; } if (!_imgOps->FwSignWithHmac(_flintParams.key.c_str())) { reportErr(true, FLINT_HMAC_ERROR, _imgOps->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } bool AddHmacSubCommand::verifyParams() { if (!_flintParams.key_specified) { reportErr(true, "To sign with HMAC, you must provide a key \n"); return false; } if (_flintParams.cmd_params.size() > 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } return true; } /*********************** * Class: SignSubCommand ***********************/ SignSubCommand::SignSubCommand() { _name = "sign"; _desc = "Sign firmware image file"; _extendedDesc = "Sign firmware image file"; _flagLong = "sign"; _flagShort = ""; _paramExp = "None"; _example = FLINT_NAME " -i fw_image.bin [--private_key file.pem --key_uuid uuid_string] OR [--openssl_engine " "engine --openssl_key_id identifier --key_uuid uuid_string] sign"; _v = Wtv_Img; _maxCmdParamNum = 0; _cmdType = SC_Sign; } SignSubCommand::~SignSubCommand() {} FlintStatus SignSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_imgOps->FwType() != FIT_FS3 && _imgOps->FwType() != FIT_FS4) { reportErr(true, IMAGE_SIGN_TYPE_ERROR); return FLINT_FAILED; } if (_flintParams.openssl_engine_usage_specified) { #if !defined(NO_OPEN_SSL) && !defined(NO_DYNAMIC_ENGINE) //* Init Signer MlxSign::MlxSignRSAViaHSM signer(_flintParams.openssl_engine, _flintParams.openssl_key_id); int rc = signer.Init(); if (rc) { reportErr(true, "Open SSL dynamic engine functionality is not supported.\n"); return FLINT_FAILED; } if (!_imgOps->SignForFwUpdate(_flintParams.privkey_uuid.c_str(), signer, MlxSign::SHA512, &verifyCbFunc)) { reportErr(true, FLINT_SIGN_ERROR, _imgOps->err()); return FLINT_FAILED; } #else reportErr(true, "Open SSL functionality is not supported.\n"); return FLINT_FAILED; #endif } else if (!_flintParams.privkey_file.empty() && !_flintParams.privkey_uuid.empty()) { if (_flintParams.privkey2_specified && _flintParams.uuid2_specified) { if (!_imgOps->FwSignWithTwoRSAKeys(_flintParams.privkey_file.c_str(), _flintParams.privkey_uuid.c_str(), _flintParams.privkey2_file.c_str(), _flintParams.privkey2_uuid.c_str(), &verifyCbFunc)) { reportErr(true, FLINT_SIGN_ERROR, _imgOps->err()); return FLINT_FAILED; } } else { #if !defined(NO_OPEN_SSL) && !defined(NO_DYNAMIC_ENGINE) //* Init Signer MlxSign::MlxSignRSAViaOpenssl signer(_flintParams.privkey_file.c_str()); int rc = signer.Init(); if (rc) { return FLINT_FAILED; } if (!_imgOps->SignForFwUpdate(_flintParams.privkey_uuid.c_str(), signer, signer.GetShaType(), &verifyCbFunc)) { reportErr(true, FLINT_SIGN_ERROR, _imgOps->err()); return FLINT_FAILED; } #else reportErr(true, "Open SSL functionality is not supported.\n"); return FLINT_FAILED; #endif } } else { if (!_imgOps->FwInsertSHA256(&verifyCbFunc)) { reportErr(true, FLINT_SIGN_ERROR, _imgOps->err()); return FLINT_FAILED; } } return FLINT_SUCCESS; } bool SignSubCommand::verifyParams() { if (_flintParams.openssl_engine_usage_specified) { if (_flintParams.privkey_uuid.empty()) { reportErr(true, "To Sign the image with OpenSSL you must provide UUID string.\n"); return false; } if (_flintParams.openssl_engine.empty() || _flintParams.openssl_key_id.empty()) { reportErr(true, "To Sign the image with OpenSSL you must provide the engine and the key identifier.\n"); return false; } if (_flintParams.openssl_key_id.find("type=public", 0) != std::string::npos) { reportErr(true, "The Sign command with --openssl_key_id flag does not accept public keys\n"); return false; } if (!_flintParams.privkey_file.empty()) { reportErr(true, "The Sign command does not accept --private_key flag with the following flags: " "--openssl_engine, --openssl_key_id\n"); return false; } } else { if (_flintParams.privkey_file.empty() != _flintParams.privkey_uuid.empty()) { reportErr(true, "To Sign the image with RSA you must provide " "private key and uuid.\n"); return false; } if (_flintParams.privkey_file.empty() && _flintParams.privkey2_specified) { reportErr(true, "Use --private_key if you want to sign with only one key.\n"); return false; } if (_flintParams.privkey2_specified != _flintParams.uuid2_specified) { reportErr(true, "To Sign the image with two RSA keys you must provide " "two private keys and two uuid.\n"); return false; } if (_flintParams.cmd_params.size() > 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } } return true; } /*********************** * Class: BinaryCompareSubCommand **********************/ BinaryCompareSubCommand::BinaryCompareSubCommand() { _name = "Binary compare"; _desc = "Binary compare between device firmware and given BIN file. If there is a silent mode, no progress is displayed."; _extendedDesc = _desc; _flagLong = "binary_compare"; _flagShort = "bc"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -i image1.bin <-silent>/<-s> (optional) bc \n"; _v = Wtv_Dev_And_Img; _maxCmdParamNum = 1; _minCmdParamNum = 0; _cmdType = SC_Binary_Compare; _devQueryRes = 0; _mccSupported = false; memset(&_devInfo, 0, sizeof(_devInfo)); memset(&_imgInfo, 0, sizeof(_imgInfo)); _unknownProgress = 0; } BinaryCompareSubCommand::~BinaryCompareSubCommand() { #ifndef NO_MSTARCHIVE if (_mfa2Pkg != NULL) { delete _mfa2Pkg; } #endif } bool BinaryCompareSubCommand::verifyParams() { if (_flintParams.num_of_args == 2) { return true; } else if (_flintParams.num_of_args == 3 && _flintParams.silent == true) { return true; } else { fprintf(stdout, "The binary comparison command doesn't accept any flags, except device, image and silent mode.\n"); return false; } } FlintStatus BinaryCompareSubCommand::compareMFA2() { #ifndef NO_MSTARCHIVE if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } mfile* mf = _fwOps->getMfileObj(); int is_livefish_mode = dm_is_livefish_mode(mf); if (is_livefish_mode == 1) { _flintParams.override_cache_replacement = true; } if (!_fwOps->FwQuery(&_devInfo, true, false, true, false, (_flintParams.silent == false))) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Device", _flintParams.device.c_str(), _fwOps->err()); return FLINT_FAILED; } vector componentBuffer; map_string_to_component matchingComponentsMap = _mfa2Pkg->getMatchingComponents((char*)_devInfo.fw_info.psid, _devInfo.fw_info.fw_ver); u_int32_t matchingSize = matchingComponentsMap.size(); if (matchingSize == 0) { printf("\33[2K\r"); // clear the current line reportErr(true, "CompareMFA2 : No matching component found for device.\n"); return FLINT_FAILED; } std::vector imgBuffInFile; if (!_fwOps->FwExtract4MBImage(imgBuffInFile, true, (_flintParams.silent == false), true)) { reportErr(true, FLINT_IMAGE_READ_ERROR, _fwOps->err()); return FLINT_FAILED; } for (u_int32_t choice = 0; choice < matchingSize; choice++) { if (_mfa2Pkg->unzipComponent(matchingComponentsMap, choice, componentBuffer) == false) { reportErr(true, "CompareMFA2 : Error occurred while extracting MFA2\n"); return FLINT_FAILED; } unsigned int i = 0; for (; i < imgBuffInFile.size(); i++) { if (componentBuffer[i] != imgBuffInFile[i]) { break; } } if (i == imgBuffInFile.size()) { printf("\33[2K\r"); // clear the current line printf("Binary comparison success.\n"); return FLINT_SUCCESS; } } printf("\33[2K\r"); // clear the current line reportErr(true, "Binary comparison failed.\n"); return FLINT_FAILED; #else reportErr(true, FLINT_NO_MFA2); return FLINT_FAILED; #endif } bool BinaryCompareSubCommand::ReadFwOpsImageData(vector& deviceBuff, vector& imgBuff) { u_int32_t imgSize = 0; // on first call we get the image size if (!_fwOps->FwReadData(NULL, &imgSize)) { reportErr(true, FLINT_IMAGE_READ_ERROR, _fwOps->err()); return false; } deviceBuff.resize(imgSize); // on second call we fill it if (!_fwOps->FwReadData((void*)(&deviceBuff[0]), &imgSize, _flintParams.silent == false)) { reportErr(true, FLINT_IMAGE_READ_ERROR, _fwOps->err()); return false; } if (!_imgOps->FwExtract4MBImage(imgBuff, false, (_flintParams.silent == false))) { reportErr(true, FLINT_IMAGE_READ_ERROR, _imgOps->err()); return false; } return true; } bool BinaryCompareSubCommand::CompareEncryptedFwOpsViaDirectAccess(bool& res) { //* Compare image res = false; std::vector deviceBuff; std::vector imgBuff; if (!ReadFwOpsImageData(deviceBuff, imgBuff)) { return false; } if (deviceBuff == imgBuff) { res = true; } return true; } bool BinaryCompareSubCommand::CompareEncryptedFwOpsViaMCC(bool& res) { //* Compare hashes table res = false; std::vector deviceBuff; std::vector imgBuff; if (!_fwOps->GetHashesTableData(deviceBuff)) { return false; } if (!_imgOps->GetHashesTableData(imgBuff)) { return false; } if (deviceBuff == imgBuff) { res = true; } return true; } bool BinaryCompareSubCommand::CompareEncryptedFwOps(bool& res) { if (_fwOps->IsFsCtrlOperations()) { return CompareEncryptedFwOpsViaMCC(res); } else { return CompareEncryptedFwOpsViaDirectAccess(res); } } bool BinaryCompareSubCommand::CompareFwOps(bool& res) { //* Legacy binary compare flow for non encrypted images res = false; std::vector deviceBuff; std::vector imgBuff; if (!ReadFwOpsImageData(deviceBuff, imgBuff)) // This call initializes fwops objects with the image data before // calling to PrepItocSectionsForCompare { return false; } vector device_critical; vector device_non_critical; vector image_critical; vector image_non_critical; _imgOps->PrepItocSectionsForCompare(image_critical, image_non_critical); _fwOps->PrepItocSectionsForCompare(device_critical, device_non_critical); if (image_critical == device_critical && image_non_critical == device_non_critical) { res = true; } return true; } FlintStatus BinaryCompareSubCommand::executeCommand() { #ifndef NO_MSTARCHIVE string mfa2file = _flintParams.image; _mfa2Pkg = MFA2::LoadMFA2Package(mfa2file); if (_mfa2Pkg != NULL) { _flintParams.mfa2_specified = true; return compareMFA2(); } #endif if (preFwOps() == FLINT_FAILED) { if (_imgOps) { const char* errMessage = _imgOps->err(); if (errMessage != NULL && strlen(errMessage) > 0) { reportErr(true, "Error occurred while executing flint initialization : %s\n", errMessage); } } return FLINT_FAILED; } mfile* mf = _fwOps->getMfileObj(); int is_livefish_mode = dm_is_livefish_mode(mf); if (is_livefish_mode == 1) { _flintParams.override_cache_replacement = true; } // query both image and device if (!_fwOps->FwQuery(&_devInfo, true, false, true, false, (_flintParams.silent == false))) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Device", _flintParams.device.c_str(), _fwOps->err()); return FLINT_FAILED; } if (!_imgOps->FwQuery(&_imgInfo)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Image", _flintParams.image.c_str(), _imgOps->err()); return FLINT_FAILED; } if (strcmp((char*)_imgInfo.fw_info.psid, (char*)_devInfo.fw_info.psid)) { printf("\33[2K\r"); // clear the current line reportErr(true, "Binary comparison failed - PSID mismatch.\n"); return FLINT_FAILED; } FwVersion img_version = FwOperations::createFwVersion(&_imgInfo.fw_info); FwVersion dev_version = FwOperations::createFwVersion(&_devInfo.fw_info); if (img_version != dev_version) { printf("\33[2K\r"); // clear the current line reportErr(true, "Binary comparison failed - versions mismatch.\n"); return FLINT_FAILED; } bool device_encrypted = false; bool image_encrypted = false; if (!_fwOps->isEncrypted(device_encrypted)) { reportErr(true, "Failed to identify if device is encrypted.\n"); return FLINT_FAILED; } if (!_imgOps->isEncrypted(image_encrypted)) { reportErr(true, "Failed to identify if image is encrypted.\n"); return FLINT_FAILED; } if (device_encrypted != image_encrypted) { reportErr(true, "Binary comparison failed - encryption mismatch.\n"); return FLINT_FAILED; } bool compare_res = false; if (device_encrypted) { if (!CompareEncryptedFwOps(compare_res)) { return FLINT_FAILED; } } else { if (!CompareFwOps(compare_res)) { return FLINT_FAILED; } } if (compare_res == false) { reportErr(true, "Binary comparison failed - binary mismatch.\n"); return FLINT_FAILED; } else { printf("\33[2K\r"); // clear the current line printf("Binary comparison success.\n"); return FLINT_SUCCESS; } } /*********************** * Class: SignRSASubCommand ***********************/ SignRSASubCommand::SignRSASubCommand() { _name = "rsa_sign"; _desc = "Sign firmware image file with RSA"; _extendedDesc = "Sign firmware image file with RSA"; _flagLong = "rsa_sign"; _flagShort = ""; _paramExp = "None"; _example = FLINT_NAME " -i fw_image.bin --private_key file.pem" " --public_key file.pub --key_uuid rsa_sign"; _v = Wtv_Img; _maxCmdParamNum = 0; _cmdType = SC_RSA_Sign; } SignRSASubCommand::~SignRSASubCommand() {} // TODO - consider moving this functionality to a factory in mlxsign lib unique_ptr SignRSASubCommand::createSigner() { unique_ptr signer = nullptr; #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) if (_flintParams.openssl_engine_usage_specified) { #if !defined(NO_DYNAMIC_ENGINE) //* Init openssl engine for signing signer = unique_ptr( new MlxSign::MlxSignRSAViaHSM(_flintParams.openssl_engine, _flintParams.openssl_key_id)); #else reportErr(true, "Open SSL functionality is not supported.\n"); #endif } else { signer = unique_ptr(new MlxSign::MlxSignRSAViaOpenssl(_flintParams.privkey_file.c_str())); } #else reportErr(true, "RSA sign is not supported.\n"); #endif if (signer != nullptr && signer->Init() != MlxSign::MLX_SIGN_SUCCESS) { signer.reset(); reportErr(true, "Failed to initialize signer.\n"); } return signer; } FlintStatus SignRSASubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_imgOps->FwType() != FIT_FS4) { reportErr(true, IMAGE_SIGN_TYPE_ERROR); return FLINT_FAILED; } unique_ptr signer_ptr = createSigner(); if (signer_ptr == nullptr) { return FLINT_FAILED; } if (!_imgOps->SignForSecureBoot(_flintParams.pubkey_file.c_str(), _flintParams.privkey_uuid.c_str(), *signer_ptr)) { reportErr(true, FLINT_SIGN_ERROR, _imgOps->err()); return FLINT_FAILED; } if (!_imgOps->SignForFwUpdate(_flintParams.privkey_uuid.c_str(), *signer_ptr, MlxSign::SHA512, &verifyCbFunc)) { reportErr(true, FLINT_SIGN_ERROR, _imgOps->err()); return FLINT_FAILED; } //* Fill image_signature section with 0xff vector signature256Data(IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE, 0xff); _imgOps->UpdateSection(signature256Data.data(), FS3_IMAGE_SIGNATURE_256, true, CMD_SET_SIGNATURE, NULL); return FLINT_SUCCESS; } bool SignRSASubCommand::verifyParams() { if (_flintParams.cmd_params.size() > 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } if (_flintParams.pubkey_file.empty()) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "\"--public_key\""); return false; } else if (!is_file_exists(_flintParams.pubkey_file.c_str())) { reportErr(true, SIGN_PUBLIC_KEY_NOT_FOUND, _flintParams.pubkey_file.c_str()); return false; } if (_flintParams.privkey_uuid.empty()) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "\"--key_uuid\""); return false; } if (_flintParams.openssl_engine_usage_specified) { if (_flintParams.openssl_engine.empty() || _flintParams.openssl_key_id.empty()) { reportErr(true, "To use OpenSSL engine you must provide the engine and the key identifier.\n"); return false; } if (_flintParams.openssl_key_id.find("type=public", 0) != std::string::npos) { reportErr(true, "The %s command with --openssl_key_id flag does not accept public keys\n", _name.c_str()); return false; } if (!_flintParams.privkey_file.empty()) { reportErr(true, "The %s command does not accept --private_key flag with the following flags: " "--openssl_engine, --openssl_key_id\n", _name.c_str()); return false; } } else { if (_flintParams.privkey_file.empty()) { reportErr(true, "To sign the image with RSA you must provide private key.\n"); return false; } else if (!is_file_exists(_flintParams.privkey_file.c_str())) { reportErr(true, SIGN_PRIVATE_KEY_NOT_FOUND, _flintParams.privkey_file.c_str()); return false; } } return true; } /*********************** * Class: BurnSubCommand **********************/ BurnSubCommand::BurnSubCommand() { _name = "burn"; _desc = "Burn flash. Use \"-ir burn\" flag to perform image reactivation prior burning."; _extendedDesc = "Burn flash \n" "Performs failsafe FW update from a raw binary image."; _flagLong = "burn"; _flagShort = "b"; _param = "[-ir]"; _paramExp = "If supplied, perform image reactivation before burning."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -i image1.bin -ir burn\n" FLINT_NAME " -d " MST_DEV_EXAMPLE2 " -guid 0x2c9000100d050 -i image1.bin b"; _v = Wtv_Dev_And_Img; _maxCmdParamNum = 1; _cmdType = SC_Burn; _fwType = 0; _devQueryRes = 0; _mccSupported = true; memset(&_devInfo, 0, sizeof(_devInfo)); memset(&_imgInfo, 0, sizeof(_imgInfo)); _unknownProgress = 0; fwCompsAccess = NULL; } BurnSubCommand::~BurnSubCommand() { closeLog(); if (fwCompsAccess != NULL) { delete fwCompsAccess; } if (_burnParams.userVsd != NULL) { delete[] _burnParams.userVsd; } #ifndef NO_MSTARCHIVE if (_mfa2Pkg != NULL) { delete _mfa2Pkg; } #endif } bool BurnSubCommand::verifyMFA2Params(bool IsLiveFish) { if (IsLiveFish) { if (_flintParams.use_psid == false) { reportErr(true, FLINT_COMMAND_INCORRECT_FLAGS_ERROR, "Burn MFA2", "PSID must be supplied in livefish mode"); return false; } if (_flintParams.use_latest_fw_version == true && _flintParams.num_of_args != 4) { reportErr(true, FLINT_COMMAND_INCORRECT_FLAGS_ERROR, "Burn MFA2", "incorrect flag combination is supplied"); return false; } if (_flintParams.use_latest_fw_version == false && _flintParams.num_of_args != 3) { reportErr(true, FLINT_COMMAND_INCORRECT_FLAGS_ERROR, "Burn MFA2", "incorrect flag combination is supplied"); return false; } return true; } else { if (_flintParams.use_latest_fw_version == true && _flintParams.num_of_args != 3) { reportErr(true, FLINT_COMMAND_INCORRECT_FLAGS_ERROR, "Burn MFA2", "incorrect flag combination is supplied"); return false; } if (_flintParams.use_latest_fw_version == false && _flintParams.num_of_args != 2) { reportErr(true, FLINT_COMMAND_INCORRECT_FLAGS_ERROR, "Burn MFA2", "incorrect flag combination is supplied"); return false; } return true; } } bool BurnSubCommand::verifyParams() { if (_flintParams.mfa2_specified) { return true; } else if (_flintParams.linkx_control == true) { if (_flintParams.device_specified == false) { reportErr(true, "Must supply the device (and image, if not only activation required) for cables burn.\n"); return false; } if (_flintParams.activate == false && _flintParams.download_transfer == false) { reportErr(true, "Must supply the download_transfer and/or activation flags for cables burn.\n"); return false; } else if (_flintParams.activate == true && _flintParams.download_transfer == false) { // the image is not necessary if only activation is required if (_flintParams.linkx_auto_update == false) { if (_flintParams.cable_device_index_specified == false || _flintParams.cable_device_size_specified == false) { reportErr(true, "Must supply the linkx or for activate " "cables, but not both simultaneously!\n"); return false; } } else { if (_flintParams.cable_device_index_specified == true || _flintParams.cable_device_size_specified == true) { reportErr(true, "Must supply the linkx or for activate " "cables, bot not both simultaneously!\n"); return false; } } return true; } else { if (_flintParams.linkx_auto_update == false) { if (_flintParams.cable_device_index_specified == false || _flintParams.cable_device_size_specified == false) { reportErr(true, "Must supply the linkx device index and size / or autoupdate for burn cables!\n"); return false; } } else { if (_flintParams.cable_device_index_specified == true || _flintParams.cable_device_size_specified == true) { reportErr(true, "Must supply the linkx device index and size / or autoupdate for burn cables!\n"); return false; } } if (_flintParams.image_specified == false) { reportErr(true, "Must supply the device and image for cables burn.\n"); return false; } string image = _flintParams.image; if (!is_file_exists(image.c_str())) { reportErr(true, "The supplied image for cables burn doesn't exist.\n"); return false; } long fileSize = 0; if (getFileSize(image, fileSize) == false) { reportErr(true, "Can't get the file size from the supplied image for cables burn.\n"); return false; } if (fileSize < 8) { reportErr(true, "The supplied image for cables is not valid.\n"); return false; } } return true; } else { if (_flintParams.cable_device_index_specified == true || _flintParams.cable_device_size_specified == true) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "Flags 'cable_device_size'/'cable_device_index' relevant only for cable components."); return false; } if (_flintParams.activate == true || _flintParams.download_transfer == true || _flintParams.activate_delay_sec != 1) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "Flags 'activate'/'download_transfer'/'activate_delay_sec' relevant only for cable components."); return false; } if ((_flintParams.guid_specified || _flintParams.guids_specified) && (_flintParams.uid_specified)) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "either GUIDs / UID (using command line flags -guid(s) / -uid )"); return false; } if ((_flintParams.mac_specified || _flintParams.macs_specified) && (_flintParams.uid_specified)) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "either MACs / UID (using command line flags -mac(s) / -uid )"); return false; } bool GuidsFromUser = _flintParams.guid_specified || _flintParams.guids_specified || _flintParams.uid_specified || _flintParams.mac_specified || _flintParams.macs_specified; if (GuidsFromUser && _flintParams.use_image_guids) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "GUIDs/UIDs/MACs", "-use_image_guids"); return false; } if ((GuidsFromUser || _flintParams.use_image_guids) && _flintParams.blank_guids) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, _flintParams.use_image_guids ? "-use_image_guids" : "GUIDs/UIDs/MACs", "-blank_guids"); return false; } if (_flintParams.guid_specified && _flintParams.guids_specified) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-guids", "-guid"); return false; } if (_flintParams.mac_specified && _flintParams.macs_specified) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-macs", "-mac"); return false; } if (_flintParams.use_image_ps && _flintParams.vsd_specified) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-use_image_ps", "-vsd"); return false; } if (_flintParams.ignore_dev_data && !_flintParams.nofs) { reportErr(true, FLINT_INVALID_FLAG_WITHOUT_FLAG_ERROR, "-nofs", "-ignore_dev_data"); return false; } if (_flintParams.use_dev_rom && _flintParams.use_image_rom) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "--use_dev_rom", "--use_image_rom"); return false; } if (_flintParams.nofs || _flintParams.allow_psid_change || _flintParams.use_dev_rom) { // attempt to fallback to legacy flow (direct flash access via FW) _mccSupported = false; } if (_flintParams.image_reactivation && _flintParams.no_fw_ctrl) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-image_reactivation", "-no_fw_ctrl"); return false; } if (_flintParams.image_reactivation && _flintParams.override_cache_replacement) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-image_reactivation", "-ocr"); return false; } } return true; } void BurnSubCommand::updateBurnParams() { _burnParams.progressFunc = _flintParams.silent == true ? (ProgressCallBack)NULL : _fwType == FIT_FS2 ? &burnCbFs2Func : &burnCbFs3Func; _burnParams.ProgressFuncAdv.func = _flintParams.silent == true ? (f_prog_func_adv)NULL : (f_prog_func_adv)&advProgressFunc; _burnParams.ProgressFuncAdv.opaque = &_unknownProgress; _burnParams.userGuidsSpecified = _flintParams.guids_specified || _flintParams.guid_specified; _burnParams.userMacsSpecified = _flintParams.macs_specified || _flintParams.mac_specified; _burnParams.userUidSpecified = _flintParams.uid_specified; _burnParams.vsdSpecified = _flintParams.vsd_specified; _burnParams.blankGuids = _flintParams.blank_guids; _burnParams.burnFailsafe = !_flintParams.nofs; _burnParams.allowPsidChange = _flintParams.allow_psid_change; _burnParams.useDevImgInfo = _flintParams.use_dev_img_info; _burnParams.useImagePs = _flintParams.use_image_ps; _burnParams.burnRomOptions = _flintParams.use_image_rom ? FwOperations::ExtBurnParams::BRO_ONLY_FROM_IMG : FwOperations::ExtBurnParams::BRO_DEFAULT; _burnParams.useImageGuids = _flintParams.use_image_guids; _burnParams.singleImageBurn = !_flintParams.dual_image; _burnParams.noDevidCheck = _flintParams.no_devid_check; _burnParams.skipCiReq = _flintParams.skip_ci_req; _burnParams.useImgDevData = _flintParams.ignore_dev_data; if (_burnParams.userGuidsSpecified) { _burnParams.userUids = _flintParams.user_guids; } if (_burnParams.userUidSpecified) { _burnParams.userUids.resize(0); _burnParams.userUids.push_back(_flintParams.baseUid); } if (_burnParams.userMacsSpecified) { if (!_burnParams.userGuidsSpecified) { // we dont care about the first 4 values _burnParams.userUids.resize(GUIDS); } _burnParams.userUids.push_back(_flintParams.user_macs[0]); _burnParams.userUids.push_back(_flintParams.user_macs[1]); } if (_burnParams.vsdSpecified) { _burnParams.userVsd = strcpy(new char[_flintParams.vsd.size() + 1], _flintParams.vsd.c_str()); } // make sure its of max size and fill the rest with 0xffff guid_t tmpGuid; tmpGuid.h = 0xffffffff; tmpGuid.l = 0xffffffff; _burnParams.userUids.resize(MAX_GUIDS, tmpGuid); _burnParams.cpu_utilization = _flintParams.cpu_percent; _burnParams.use_cpu_utilization = _flintParams.use_cpu_utilization; } #define VERSION_FORMAT(minor) minor < 100 ? "%d.%d.%04d" : "%d.%04d.%04d" bool BurnSubCommand::checkFwVersion(bool CreateFromImgInfo, u_int16_t fw_ver0, u_int16_t fw_ver1, u_int16_t fw_ver2) { FwVersion current = FwOperations::createFwVersion(&_devInfo.fw_info); FwVersion new_version; if (CreateFromImgInfo) { new_version = FwOperations::createFwVersion(&_imgInfo.fw_info); } else { new_version = FwOperations::createFwVersion(fw_ver0, fw_ver1, fw_ver2); } const string current_version_str = current.get_fw_version(VERSION_FORMAT(_devInfo.fw_info.fw_ver[1]), false, "N/A"); printf("\n Current FW version on flash: %s\n", current_version_str.c_str()); const string next_version_str = new_version.get_fw_version( VERSION_FORMAT((CreateFromImgInfo ? _imgInfo.fw_info.fw_ver[1] : fw_ver1)), false, "N/A"); printf(" New FW version: %s\n", next_version_str.c_str()); if (_flintParams.log_specified) { print_line_to_log("Current FW version on flash: %s, New FW version: %s\n", current_version_str.c_str(), next_version_str.c_str()); } if (current.is_set() && new_version.is_set()) { if (!current.are_same_branch(new_version)) { printf("\n Note: The new FW version is on a different branch" " then the current FW version on flash.\n"); } else if (current >= new_version) { printf("\n Note: The new FW version is %s the current FW" " version on flash.\n", current == new_version ? "the same as" : "older than"); if (!askUser()) { return false; } } } printf("\n"); _burnParams.ignoreVersionCheck = true; return true; } bool BurnSubCommand::checkPSID() { if (strlen(_imgInfo.fw_info.psid) != 0 && strlen(_devInfo.fw_info.psid) != 0 && strncmp(_imgInfo.fw_info.psid, _devInfo.fw_info.psid, PSID_LEN)) { if (_flintParams.allow_psid_change) { printf("\n You are about to replace current PSID on flash - \"%s\" with a different PSID - \"%s\".\n" " Note: It is highly recommended not to change the PSID.\n", _devInfo.fw_info.psid, _imgInfo.fw_info.psid); if (!askUser()) { return false; } } else { printf("\n"); reportErr(true, FLINT_PSID_ERROR, _devInfo.fw_info.psid, _imgInfo.fw_info.psid); return false; } } return true; } FlintStatus BurnSubCommand::burnFs3() { bool printPreparing = false; if (_devQueryRes) { char errBuff[ERR_BUFF_SIZE] = {0}; FwOperations::fw_ops_params_t fwParams; initDeviceFwParams(errBuff, fwParams); FsChecks fsChecks(_devInfo, _fwOps, _imgOps, _burnParams, fwParams); if (fsChecks.ExecuteChecks(&_fwOps, _burnParams, _devInfo)) { vector questions; fsChecks.GetUserQuestions(questions, " "); delete[] fwParams.mstHndl; for (unsigned int i = 0; i < questions.size(); i++) { printf("\n%s\n", questions[i].c_str()); if (!askUser()) { return FLINT_FAILED; } } } else { delete[] fwParams.mstHndl; reportErr(true, "Fixes is needed for Flash layout, an error occurred while preparing the operation"); return FLINT_FAILED; } printPreparing = fsChecks._isTimeConsumingFixesNeeded; } // Here we want to burn FS3 device so we check if the image is indeed FS3 image if (_imgInfo.fw_type != FIT_FS3 && _imgInfo.fw_type != FIT_FS4) { reportErr(true, FLINT_IMG_DEV_COMPAT_ERROR, "FS3", "FS3"); return FLINT_FAILED; } const char* imgTypeStr = fwImgTypeToStr(_imgInfo.fw_type); // on FS3 burn we require query to pass if (!_devQueryRes && _burnParams.burnFailsafe) { reportErr(true, FLINT_FSX_BURN_ERROR, imgTypeStr, _fwOps->err()); return FLINT_FAILED; } // check FwVersion if (!checkFwVersion()) { return FLINT_BURN_ABORTED; } // check Psid if (_devQueryRes && !checkPSID()) { return FLINT_FAILED; } // deal with rom if (!dealWithExpRom()) { return FLINT_FAILED; } bool getRomFromDev = (_burnParams.burnRomOptions == FwOperations::ExtBurnParams::BRO_FROM_DEV_IF_EXIST); if (!getRomFromDev && !checkMatchingExpRomDevId(_imgInfo)) { printf("Image file ROM: FW is for device %d, but Exp-ROM is for device %d\n", _imgInfo.fw_info.dev_type, _imgInfo.fw_info.roms_info.exp_rom_com_devid); if (!askUser()) { return FLINT_FAILED; } } if (!_burnParams.burnFailsafe) { printf("Burn process will not be failsafe. No checks will be performed.\n"); if (_burnParams.useImgDevData) { printf("ALL flash, including the device data sections will be overwritten.\n"); } printf("If this process fails, computer may remain in an inoperable state.\n"); if (!askUser()) { return FLINT_FAILED; } } if (printPreparing) { printf(" Preparing...\n"); } bool device_encrypted = false; bool image_encrypted = false; if (!_fwOps->isEncrypted(device_encrypted)) { reportErr(true, "Failed to identify if device is encrypted.\n"); return FLINT_FAILED; } if (!_imgOps->isEncrypted(image_encrypted)) { reportErr(true, "Failed to identify if image is encrypted.\n"); return FLINT_FAILED; } if (device_encrypted && image_encrypted) { if (!_fwOps->burnEncryptedImage(_imgOps, _burnParams)) { reportErr(true, FLINT_FSX_BURN_ERROR, imgTypeStr, _fwOps->err()); return FLINT_FAILED; } } else { if (!_fwOps->FwBurnAdvanced(_imgOps, _burnParams)) { reportErr(true, FLINT_FSX_BURN_ERROR, imgTypeStr, _fwOps->err()); return FLINT_FAILED; } } PRINT_PROGRESS(_burnParams.progressFunc, 101); write_result_to_log(FLINT_SUCCESS, "", _flintParams.log_specified); const char* resetRec = _fwOps->FwGetResetRecommandationStr(); if (resetRec) { printf("-I- %s\n", resetRec); } return FLINT_SUCCESS; } FlintStatus BurnSubCommand::burnFs2() { if (_flintParams.striped_image) { reportErr(true, FLINT_FS2_STRIPED_ERROR); return FLINT_FAILED; } if (_imgInfo.fw_type != FIT_FS2) { reportErr(true, FLINT_IMG_DEV_COMPAT_ERROR, "FS2", "FS2"); return FLINT_FAILED; } if (_burnParams.use_cpu_utilization) { if (_burnParams.cpu_utilization < 1 || _burnParams.cpu_utilization > 5) { reportErr(true, FLINT_ILLEGAL_CPU_VALUE); return FLINT_FAILED; } } // CheckMatchingHwDevId is done in mlxfwops burn routine. // CheckMatchingDevId is done in mlxfwops burn routine. (void)dealWithExpRom(); bool getRomFromDev = _burnParams.burnRomOptions == FwOperations::ExtBurnParams::BRO_FROM_DEV_IF_EXIST; if (!getRomFromDev && !checkMatchingExpRomDevId(_imgInfo)) { printf("Image file ROM: FW is for device %d, but Exp-ROM is for device %d\n", _imgInfo.fw_info.dev_type, _imgInfo.fw_info.roms_info.exp_rom_com_devid); if (!askUser()) { return FLINT_FAILED; } } // deal with guids if (!dealWithGuids()) { return FLINT_FAILED; } // deal with failsifity should be made in fwops as we dont know if image/device fw is failsafe if (_burnParams.burnFailsafe & (!_imgInfo.fw_info.is_failsafe || !_devInfo.fw_info.is_failsafe)) { if ((!_imgInfo.fw_info.is_failsafe && !_devInfo.fw_info.is_failsafe)) { // When both image and flash are non-failsafe, flint will burn in a non-failsafe mode _burnParams.burnFailsafe = false; } else { // when only one of image and flash is non-failsafe, flint will fail with appropriate message reportErr(true, "Failsafe burn failed: FW image in the %s is non failsafe.\n" " you cannot burn a%s failsafe image over a%s failsafe image in a failsafe mode.\n" " If you want to burn in non failsafe mode, use the \"-nofs\" switch.\n", _imgInfo.fw_info.is_failsafe ? "flash" : "given file", _imgInfo.fw_info.is_failsafe ? "" : " non", _devInfo.fw_info.is_failsafe ? "" : " non"); return FLINT_FAILED; } } // deal with vsd if (!dealWithVSD()) { return FLINT_FAILED; } // check versions if (!checkFwVersion()) { return FLINT_BURN_ABORTED; } // check Psid if (_devQueryRes && !checkPSID()) { return FLINT_FAILED; } // Warn if a fw which does not support config is burnt over fw that does support config // The other way (new fw with config, old fw w/o config) is a normal update flow. // Update: all fw should now support config sectors, so we just check any mismatch in the config pads // Verify config offset. Should never be different between image and flash (unless changing PSID). if (_imgInfo.fs2_info.config_pad != _devInfo.fs2_info.config_pad) { printf("\n"); printf("-W- Configuration section offset on flash (%u sectors) differs from the" " Configuration section offset in the given image (%u sectors)." " Current device configuration (if exists) will be deleted.\n", _devInfo.fs2_info.config_pad, _imgInfo.fs2_info.config_pad); if (_burnParams.allowPsidChange) { if (!askUser()) { return FLINT_FAILED; } } else { reportErr(true, "Use the '-allow_psid_change' flag to force this change.\n"); return FLINT_FAILED; } } if (!_burnParams.burnFailsafe) { printf("Burn process will not be failsafe. No checks will be performed.\n"); printf("ALL flash, including the Invariant Sector will be overwritten.\n"); printf("If this process fails, computer may remain in an inoperable state.\n"); if (!askUser()) { return FLINT_FAILED; } } // Finally we can burn if (!_fwOps->FwBurnAdvanced(_imgOps, _burnParams)) { reportErr(true, FLINT_FS2_BURN_ERROR, _fwOps->err()); return FLINT_FAILED; } PRINT_PROGRESS(_burnParams.progressFunc, 101); write_result_to_log(FLINT_SUCCESS, "", _flintParams.log_specified); if (_burnParams.burnStatus.imageCachedSuccessfully) { PRINT_PROGRESS(_burnParams.progressFunc, 102); } return FLINT_SUCCESS; } bool BurnSubCommand::dealWithVSD() { if (!(_burnParams.vsdSpecified || _burnParams.useImagePs) && !((strlen(_devInfo.fw_info.psid) != 0 && _devInfo.fw_info.vsd_sect_found))) { printf("\n"); if (_burnParams.burnFailsafe) { reportErr( true, "Can not extract VSD/PSID info from flash.\n" " Can not burn in a failsafe mode. Please use \"-nofs\" flag to burn in a non failsafe mode.\n"); return false; } else { printf("-W- Can not extract VSD/PSID info from flash.\n\n" " To use a specific VSD, abort and re-burn specifying the\n" " needed info (using command line flags -vsd / -use_image_ps).\n" " You can also continue burn using blank VSD.\n"); if (!askUser()) { return false; } } } return true; } bool BurnSubCommand::dealWithGuids() { bool read_guids = true; bool ib_dev; bool eth_dev; // Get the FW types FwOperations::SetDevFlags(_imgInfo.fw_info.chip_type, _imgInfo.fw_info.dev_type, (fw_img_type)_imgInfo.fw_type, ib_dev, eth_dev); // setDevFlags(_imgInfo, ib_dev, eth_dev); // Check if there is a need to read guids if (_burnParams.useImageGuids || _burnParams.blankGuids || (_burnParams.userGuidsSpecified && ib_dev) || (_burnParams.userMacsSpecified)) { read_guids = false; } // Check if the burnt FW is ok and readable in order to get the GUIDs later if (read_guids && !_devQueryRes) { // printMissingGuidErr(ib_dev, eth_dev); if (_burnParams.burnFailsafe) { reportErr(true, "Can not extract GUIDs/MACs info from flash, %s\n" " Can not burn in a failsafe mode.\n" " If you want to burn in non failsafe mode, use the \"-nofs\" switch.\n", _fwOps->err()); } else { reportErr(true, "Can not extract GUIDs/MACs info from flash, %s", _fwOps->err()); printMissingGuidErr(ib_dev, eth_dev); } return false; } // Check guids flag to ensure correct patching of guids in mlxfwops bool is_guids_specified = _burnParams.userGuidsSpecified || _burnParams.userMacsSpecified || _burnParams.userUidSpecified; if (is_guids_specified) { if (!checkGuidsFlags(_imgInfo.fw_info.dev_type, _fwType, _burnParams.userGuidsSpecified, _burnParams.userMacsSpecified, _burnParams.userUidSpecified, ib_dev, eth_dev)) { return false; } } // report guid changes if needed. and update the user_guids vector in _burnParams if (is_guids_specified || _flintParams.use_image_guids) { guid_t* new_guids = (_burnParams.userGuidsSpecified || _burnParams.userUidSpecified) ? &_burnParams.userUids[0] : _devInfo.fs2_info.guids; guid_t* new_macs = _burnParams.userMacsSpecified != 0 ? &_burnParams.userUids[GUIDS] : &_devInfo.fs2_info.guids[GUIDS]; guid_t* old_guids = !_devQueryRes ? NULL : _devInfo.fs2_info.guids; guid_t* old_macs = old_guids != NULL ? &old_guids[GUIDS] : NULL; if (!is_guids_specified && _flintParams.use_image_guids) { new_guids = _imgInfo.fs2_info.guids; new_macs = &_imgInfo.fs2_info.guids[GUIDS]; } // printf("-D- l=%d, h=%d\n", new_macs->l, new_macs->h); if (!reportGuidChanges(new_guids, new_macs, old_guids, old_macs, ib_dev, eth_dev, _imgInfo.fs2_info.guid_num)) { return false; } } return true; } bool BurnSubCommand::dealWithExpRom() { bool getRomFromDev = false; // Check exp rom: bool fs2Cond; if (_fwType != FIT_FS2) { _burnParams.burnRomOptions = FwOperations::ExtBurnParams::BRO_ONLY_FROM_IMG; bool cond = _devQueryRes && IS_HCA(_devInfo.fw_info.chip_type); if (cond && _flintParams.use_dev_rom) { if (_devInfo.fw_info.roms_info.num_of_exp_rom > 0) { if (!strcmp(_devInfo.fw_info.product_ver, "") && !strcmp(_imgInfo.fw_info.product_ver, "")) { _burnParams.burnRomOptions = FwOperations::ExtBurnParams::BRO_FROM_DEV_IF_EXIST; } else if (_flintParams.allow_rom_change) { _burnParams.burnRomOptions = FwOperations::ExtBurnParams::BRO_FROM_DEV_IF_EXIST; } else { // error, please use allow_rom_change flag reportErr(true, "The device FW contains common FW/ROM Product Version - " "The ROM cannot be updated separately.\n"); return false; } } else { if (_imgInfo.fw_info.roms_info.num_of_exp_rom > 0) { if (!askUser("No Expansion ROM found in the device, " "Do you want to use the ROM from the image file", false)) { return false; } } else { if (!askUser("No Expansion ROM found in the device" ", Do you want to continue")) { return false; } } } } return true; } FwVersion dev_version = FwOperations::createFwVersion(&_devInfo.fw_info); bool rom_condition = (FwOperations::IsFwSupportingRomModify(dev_version) || (_imgInfo.fw_info.roms_info.num_of_exp_rom > 0)); fs2Cond = (_devQueryRes && IS_HCA(_devInfo.fw_info.chip_type) && rom_condition && !_flintParams.use_image_rom && !strcmp(_devInfo.fw_info.product_ver, "") && !strcmp(_imgInfo.fw_info.product_ver, "")); if (fs2Cond) { // Enter here when: // The fw on the flash is OK (passed query, and it should pass verify in mlxfwops) && // ( The device is connectx || connectib )&& // The image fw supports modifying ROM OR it contains ROM &&. // The user didn't ask to burn the image rom. && // The fw on the flash doesn't contain product version if (_imgInfo.fw_info.roms_info.num_of_exp_rom > 0 && _devInfo.fw_info.roms_info.num_of_exp_rom > 0) { printf("\n Note: Both the image file and the flash contain a ROM image.\n" " Select \"yes\" to use the ROM from the given image file.\n" " Select \"no\" to keep the existing ROM in the flash\n"); displayExpRomInfo(_devInfo.fw_info.roms_info, " Current ROM info on flash: "); displayExpRomInfo(_imgInfo.fw_info.roms_info, " ROM info from image file : "); if (!askUser("Use the ROM from the image file", false)) { getRomFromDev = true; } else { getRomFromDev = false; } } else if (!(_imgInfo.fw_info.roms_info.num_of_exp_rom > 0) && _devInfo.fw_info.roms_info.num_of_exp_rom > 0) { getRomFromDev = true; } } if (getRomFromDev) { _burnParams.burnRomOptions = FwOperations::ExtBurnParams::BRO_FROM_DEV_IF_EXIST; } return true; } bool BurnSubCommand::checkMatchingExpRomDevId(const fw_info_t& info) { if ((info.fw_info.roms_info.num_of_exp_rom > 0) && (info.fw_info.dev_type) && (info.fw_info.roms_info.exp_rom_com_devid != EXP_ROM_GEN_DEVID) && (info.fw_info.roms_info.exp_rom_com_devid != MISS_MATCH_DEV_ID) && (info.fw_info.dev_type != info.fw_info.roms_info.exp_rom_com_devid)) { return false; } return true; } void BurnSubCommand::cleanInterruptedCommand() { if (_flintParams.device_specified) { UnlockDevice(_fwOps); } } FlintStatus BurnSubCommand::executeCommand() { if (_flintParams.linkx_control == true) { if (!verifyParams()) { return FLINT_FAILED; } int opaque = 0; ProgressCallBackAdvSt ProgressFuncAdv; ProgressFuncAdv.func = (f_prog_func_adv)&advProgressFunc; ProgressFuncAdv.opaque = &opaque; return BurnLinkX(_flintParams.device, _flintParams.cableDeviceIndex, _flintParams.cableDeviceSize, _flintParams.image, _flintParams.linkx_auto_update, _flintParams.activate, _flintParams.download_transfer, _flintParams.activate_delay_sec, &ProgressFuncAdv); } #ifndef NO_MSTARCHIVE string mfa2file = _flintParams.image; _mfa2Pkg = MFA2::LoadMFA2Package(mfa2file); if (_mfa2Pkg != NULL) { _flintParams.mfa2_specified = true; } #endif if (_flintParams.image_reactivation) { if (preFwOps(true) == FLINT_FAILED) { return FLINT_FAILED; } if (!_fwOps->FwReactivateImage()) { reportErr(true, FLINT_FAILED_IMAGE_REACTIVATION_ERROR, _flintParams.device.c_str(), _fwOps->err()); return FLINT_FAILED; } printf("\n-I- FW Image Reactivation succeeded.\n\n"); _fwOps = _imgOps = NULL; if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } } else if (_flintParams.mfa2_specified) { bool saved_value = _flintParams.silent; _flintParams.silent = true; FlintStatus res = preFwOps(); _flintParams.silent = saved_value; if (res == FLINT_FAILED) { _flintParams.override_cache_replacement = true; if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } } mfile* mf = _fwOps->getMfileObj(); int is_livefish_mode = dm_is_livefish_mode(mf); if (verifyMFA2Params(is_livefish_mode == 1) == false) { return FLINT_FAILED; } // check if the device is in FW control mode ("mcc flow"). Other flow is unsupported. if (is_livefish_mode) { /*reportErr(true, "Burning MFA2 is not supported in Livefish mode.\n"); return FLINT_FAILED;*/ dm_dev_id_t devid_t; u_int32_t devid; u_int32_t revid; int rc = dm_get_device_id(mf, &devid_t, &devid, &revid); if (rc != 0) { reportErr(true, "Burning MFA2: can't get device Id"); return FLINT_FAILED; } return burnMFA2LiveFish(devid_t); } bool is_fw_ctrl = _fwOps->IsFsCtrlOperations(); if (!is_fw_ctrl) { reportErr(true, "Burning MFA2 is not supported without FW control.\n"); return FLINT_FAILED; } else { updateBurnParams(); if (_flintParams.use_psid == true) { reportErr(true, FLINT_COMMAND_INCORRECT_FLAGS_ERROR, "Burn MFA2", "incorrect flag combination is supplied"); return FLINT_FAILED; } if (LockDevice(_fwOps) == FLINT_FAILED) { return FLINT_FAILED; } FlintStatus burnResult = burnMFA2(); if (UnlockDevice(_fwOps) == FLINT_FAILED) { return FLINT_FAILED; } return burnResult; } } else if (_flintParams.congestion_control) { return burnCongestionControl(); } else { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } } if (LockDevice(_fwOps) == FLINT_FAILED) { return FLINT_FAILED; } // set fw type // updateBurnParams with input given by user _fwType = _fwOps->FwType(); updateBurnParams(); if (_imgOps->FwType() == FIT_COMPS) { FsCompsOperations* compsOps = dynamic_cast(_imgOps); if (_flintParams.yes) { _burnParams.ignoreVersionCheck = true; } if (!_fwOps->FwBurnAdvanced(_imgOps, _burnParams, compsOps->GetComponentID())) { reportErr(true, FLINT_FSX_BURN_ERROR, "FIT_COMPS", _fwOps->err()); return FLINT_FAILED; } else { cout << "-I- Component FW burn finished successfully." << endl; const char* resetRec = _imgOps->FwGetResetRecommandationStr(); if (resetRec) { printf("-I- %s\n", resetRec); } return FLINT_SUCCESS; } } if (_fwOps->IsFifthGen()) { if (_flintParams.mac_specified || _flintParams.macs_specified) { UnlockDevice(_fwOps); reportErr(true, FLINT_INVALID_FLAG_ERROR_5TH_GEN, _flintParams.macs_specified ? "-macs" : "-mac"); return FLINT_FAILED; } if (_flintParams.guid_specified || _flintParams.guids_specified) { UnlockDevice(_fwOps); reportErr(true, FLINT_INVALID_FLAG_ERROR_5TH_GEN, _flintParams.guids_specified ? "-guids" : "-guid"); return FLINT_FAILED; } } bool device_encrypted = false; bool image_encrypted = false; if (!_fwOps->isEncrypted(device_encrypted)) { reportErr(true, "Failed to identify if device is encrypted.\n"); return FLINT_FAILED; } if (!_imgOps->isEncrypted(image_encrypted)) { reportErr(true, "Failed to identify if image is encrypted.\n"); return FLINT_FAILED; } if (device_encrypted != image_encrypted) { reportErr(true, "Burning %sencrypted image on %sencrypted device is not allowed.\n", image_encrypted ? "" : "non-", device_encrypted ? "" : "non-"); return FLINT_FAILED; } // query both image and device (deviceQuery can fail but we save rc) _devQueryRes = _fwOps->FwQuery(&_devInfo, true, false, true, false, (_flintParams.silent == false)); if (!_imgOps->FwQuery(&_imgInfo)) { UnlockDevice(_fwOps); reportErr(true, FLINT_FAILED_QUERY_ERROR, "image", _flintParams.image.c_str(), _imgOps->err()); return FLINT_FAILED; } // Abort if the image is restricted according to the Security-Version if (_fwOps->IsSecurityVersionViolated(_imgInfo.fs3_info.image_security_version)) { reportErr(true, "The image you're trying to burn is restricted. Aborting ... \n"); return FLINT_FAILED; } if (_flintParams.use_image_guids && _fwType != FIT_FS2) { UnlockDevice(_fwOps); reportErr(true, "The \"--use_image_guids\" flag is supported only for GEN4 devices.\n"); return FLINT_FAILED; } if (_fwType == FIT_FS3 || _fwType == FIT_FS4 || _fwType == FIT_FSCTRL) { u_int32_t devid = 0; mfile* mf = _fwOps->getMfileObj(); if (mf != NULL) { // Patch for BF1 int is_livefish_mode = dm_is_livefish_mode(mf); if (is_livefish_mode == 1) { if (mread4(mf, 0xf0014, &devid) != 4) { devid = 0; } else { devid &= 0xffff; // remove revid (BF1-rev1 is 0x00010211) if (devid == BF_HW_ID && is_arm()) { // for Bluefield need also check the life cycle, but only on ARM side! string bf_lifecycle_file = "/sys/bus/platform/drivers/mlx-bootctl/lifecycle_state"; bool IsHmacAllowed = true; if (is_file_exists(bf_lifecycle_file)) { std::vector buff; if (readFromFile(bf_lifecycle_file, buff)) { if (buff.size() >= 10) { // LIFE_CYCLE should not be GA Secured if (buff[0] == 'G' && buff[1] == 'A' && buff[2] == ' ' && buff[3] == 'S' && buff[4] == 'e' && buff[5] == 'c' && buff[6] == 'u' && buff[7] == 'r' && buff[8] == 'e' && buff[9] == 'd') { IsHmacAllowed = false; } if (IsHmacAllowed == true) { _burnParams.use_chip_type = true; _burnParams.chip_type = FwOperations::getChipType(devid); } } } } } } } } FlintStatus res = burnFs3(); UnlockDevice(_fwOps); return res; } else if (_fwType == FIT_FS2) { FlintStatus res = burnFs2(); UnlockDevice(_fwOps); return res; } // unknown fw type reportErr(true, FLINT_UNKNOWN_FW_TYPE_ERROR); if (UnlockDevice(_fwOps) == FLINT_FAILED) { return FLINT_FAILED; } return FLINT_SUCCESS; } u_int32_t SubCommand::getUserChoice(u_int32_t maximumValue) { u_int32_t choice = 0xffff; while (true) { int res = scanf("%d", &choice); if (res != 1) { while (getchar() != '\n') ; printf("Invalid data entered, try again!\n"); continue; } if (choice > maximumValue) { printf("Please choose the version or 0 to exit:\n"); continue; } break; } if (choice == 0) { exit(0); } return choice; } FlintStatus BurnSubCommand::burnMFA2LiveFish(dm_dev_id_t devid_t) { #ifndef NO_MSTARCHIVE int deviceMajorVer = 0; if (DeviceConnectX4 == devid_t) { deviceMajorVer = 12; } else if (DeviceConnectX4LX == devid_t) { deviceMajorVer = 14; } else if (DeviceConnectX5 == devid_t) { deviceMajorVer = 16; } else if (DeviceConnectX6 == devid_t) { deviceMajorVer = 20; } else if (DeviceConnectX6DX == devid_t) { deviceMajorVer = 22; } else if (DeviceConnectX6LX == devid_t) { deviceMajorVer = 26; } else { reportErr(true, "The MFA2 burning is not supported in livefish for current device %d", (int)devid_t); return FLINT_FAILED; } vector componentBuffer; if (_flintParams.use_psid == false) { reportErr(true, "Must supply \"--psid\" flag while burning device in the livefish mode with MFA2\n"); return FLINT_FAILED; } char* psid = (char*)_flintParams.psid.c_str(); u_int16_t fw_ver[3]; fw_ver[0] = deviceMajorVer; fw_ver[1] = 0xff; fw_ver[2] = 0xffff; map_string_to_component matchingComponentsMap = _mfa2Pkg->getMatchingComponents(psid, fw_ver); u_int32_t matchingSize = matchingComponentsMap.size(); if (matchingSize == 0) { reportErr(true, "No matching binaries found for device %s\n", _flintParams.device.c_str()); return FLINT_FAILED; } else { if (matchingSize == 1) { _mfa2Pkg->unzipComponent(matchingComponentsMap, 0, componentBuffer); } else { if (_flintParams.use_latest_fw_version == true) { if (_mfa2Pkg->unzipLatestVersionComponent(matchingComponentsMap, componentBuffer) == false) { return FLINT_FAILED; } } else { int i = 1; printf("------FW Version Selection for %s------\n", _flintParams.device.c_str()); for (map_string_to_component::iterator it = matchingComponentsMap.begin(); it != matchingComponentsMap.end(); it++) { printf("%d. %s\n", i++, it->first.c_str()); } printf("-I- Please choose the version or 0 to exit:\n"); u_int32_t choice = getUserChoice(matchingSize) - 1; if (_mfa2Pkg->unzipComponent(matchingComponentsMap, choice, componentBuffer) == false) { return FLINT_FAILED; } while (getchar() != '\n') ; // clean the stdin buffer } } } _flintParams.override_cache_replacement = true; _flintParams.image_specified = false; if (openOps(true, true) == FLINT_FAILED) { return FLINT_FAILED; } struct image_layout_uid_entry base_guid = {0, 0, 0, 0}; struct image_layout_uid_entry base_mac = {0, 0, 0, 0}; bool NeedToSetMacManually = true; if (_fwOps->FwQuery(&_devInfo, true, false, true, false, (_flintParams.silent == false))) { if (_devInfo.fs3_info.fs3_uids_info.valid_field == 1) { base_guid.num_allocated = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_guid.num_allocated; base_guid.num_allocated_msb = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_guid.num_allocated_msb; base_guid.step = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_guid.step; base_guid.uid = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_guid.uid; base_mac.num_allocated = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_mac.num_allocated; base_mac.num_allocated_msb = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_mac.num_allocated_msb; base_mac.step = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_mac.step; base_mac.uid = _devInfo.fs3_info.fs3_uids_info.image_layout_uids.base_mac.uid; NeedToSetMacManually = false; } } u_int8_t fs4_image_signature[] = {0x4D, 0x54, 0x46, 0x57, 0xAB, 0xCD, 0xEF, 0x00, 0xFA, 0xDE, 0x12, 0x34, 0x56, 0x78, 0xDE, 0xAD}; u_int8_t fs3_image_signature[] = {0x4D, 0x54, 0x46, 0x57, 0x8C, 0xDF, 0xD0, 0x00, 0xDE, 0xAD, 0x92, 0x70, 0x41, 0x54, 0xBE, 0xEF}; _fwType = _fwOps->FwType(); if (_fwType == FIT_FS4 || _fwType == FIT_FSCTRL) { for (u_int8_t i = 0; i < sizeof(fs4_image_signature); i++) { componentBuffer[i] = fs4_image_signature[i]; } } else if (_fwType == FIT_FS3) { for (u_int8_t i = 0; i < sizeof(fs3_image_signature); i++) { componentBuffer[i] = fs3_image_signature[i]; } } string fileName = "/tmp/temp.bin"; // Get temp name writeImageToFile(fileName.c_str(), componentBuffer.data(), componentBuffer.size()); _flintParams.image_specified = true; _flintParams.image = fileName; if (openOps(true, true) == FLINT_FAILED) { return FLINT_FAILED; } if (_fwOps->RemoveWriteProtection() == false) { reportErr(true, "Failed to disable flash write protection: %s", _fwOps->err()); return FLINT_FAILED; } if (_imgOps->RestoreDevToc(componentBuffer, psid, devid_t, base_guid, base_mac) == false) { reportErr(true, "Failed to restore DTOCs for device %s: %s.\n", _flintParams.device.c_str(), _imgOps->err()); return FLINT_FAILED; } writeImageToFile(fileName.c_str(), componentBuffer.data(), componentBuffer.size()); if (openOps(true, false) == FLINT_FAILED) { return FLINT_FAILED; } if (!_imgOps->FwQuery(&_imgInfo)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Image", _flintParams.image.c_str(), _imgOps->err()); return FLINT_FAILED; } _flintParams.nofs = true; _flintParams.ignore_dev_data = true; _flintParams.override_cache_replacement = true; _flintParams.guid_specified = true; if (NeedToSetMacManually) { printf("Warning: No valid GUID/MAC found on the device flash. You will need to set it manually.\n"); } updateBurnParams(); _burnParams.allowPsidChange = true; return burnFs3(); #else (void)devid_t; reportErr(true, FLINT_NO_MFA2); return FLINT_FAILED; #endif } FlintStatus BurnSubCommand::burnCongestionControl() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (!_fwOps->FwQuery(&_devInfo)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Device", _flintParams.device.c_str(), _fwOps->err()); return FLINT_FAILED; } bool is_fw_ctrl = _fwOps->IsFsCtrlOperations(); if (!is_fw_ctrl) { reportErr(true, "Burning CongestionControl is not supported without FW control.\n"); return FLINT_FAILED; } vector componentBuffer; if (!readFromFile(_flintParams.image, componentBuffer)) { return FLINT_FAILED; } int sig = FwOperations::getFileSignature(_flintParams.image.c_str()); if (sig != FwOperations::IMG_SIG_TYPE_CC) { // i.e we failed to check the magic pattern of the file reportErr(true, "Burning CC image failed: Wrong Image signature\n"); return FLINT_FAILED; } updateBurnParams(); componentBuffer[0] = 0xff; // due the FW needs. componentBuffer[1] = 0xff; // due the FW needs. componentBuffer[2] = 0xff; // due the FW needs. componentBuffer[3] = 0xff; // due the FW needs. bool res = _fwOps->FwBurnAdvanced(componentBuffer, _burnParams, FwComponent::COMPID_CONGESTION_CONTROL); if (!res) { reportErr(true, "Burning CC image failed: %s, FW error\n", _fwOps->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } FlintStatus BurnSubCommand::burnMFA2() { #ifndef NO_MSTARCHIVE vector componentBuffer; map_string_to_component matchingComponentsMap; if (!_fwOps->FwQuery(&_devInfo, true, false, true, false, (_flintParams.silent == false))) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Device", _flintParams.device.c_str(), _fwOps->err()); return FLINT_FAILED; } printf("-I- Fetching FW versions from MFA2 image, this operation may take a minute, please wait..\n"); u_int16_t fw_ver[3]; fw_ver[0] = _devInfo.fw_info.fw_ver[0]; fw_ver[1] = 0xff; fw_ver[2] = 0xffff; matchingComponentsMap = _mfa2Pkg->getMatchingComponents((char*)_devInfo.fw_info.psid, fw_ver); u_int32_t matchingSize = matchingComponentsMap.size(); if (matchingSize == 0) { reportErr(true, "No matching binaries found for device %s\n", _flintParams.device.c_str()); return FLINT_FAILED; } else { // If there is only one matching FW binary, unzip it if (matchingSize == 1) { _mfa2Pkg->unzipComponent(matchingComponentsMap, 0, componentBuffer); } else { // user wants the latest version automatically if (_flintParams.use_latest_fw_version == true) { if (_mfa2Pkg->unzipLatestVersionComponent(matchingComponentsMap, componentBuffer) == false) { return FLINT_FAILED; } } // otherwise, user must supply required version else { int i = 1; printf("------FW Version Selection for %s------\n", _flintParams.device.c_str()); for (map_string_to_component::iterator it = matchingComponentsMap.begin(); it != matchingComponentsMap.end(); it++) { printf("%d. %s\n", i++, it->first.c_str()); } printf("-I- Please choose the version or 0 to exit:\n"); u_int32_t choice = getUserChoice(matchingSize) - 1; if (_mfa2Pkg->unzipComponent(matchingComponentsMap, choice, componentBuffer) == false) { return FLINT_FAILED; } while (getchar() != '\n') ; // clean the stdin buffer map_string_to_component::iterator itAtOffset = matchingComponentsMap.begin(); std::advance(itAtOffset, choice); Component* requiredComponent = &itAtOffset->second; VersionExtension version = requiredComponent->getComponentDescriptor().getVersionExtension(); // check FwVersion u_int32_t fw_ver0 = version.getMajor(); u_int32_t fw_ver1 = version.getMinor(); u_int32_t fw_ver2 = version.getSubMinor(); if (!checkFwVersion(false, fw_ver0, fw_ver1, fw_ver2)) { return FLINT_BURN_ABORTED; } } } } const char* imgTypeStr = fwImgTypeToStr(_devInfo.fw_type); bool res = _fwOps->FwBurnAdvanced(componentBuffer, _burnParams); if (!res) { reportErr(true, FLINT_FSX_BURN_ERROR, imgTypeStr, _fwOps->err()); return FLINT_FAILED; } else { PRINT_PROGRESS(_burnParams.progressFunc, 101); write_result_to_log(FLINT_SUCCESS, "", _flintParams.log_specified); const char* resetRec = _fwOps->FwGetResetRecommandationStr(); if (resetRec) { printf("-I- %s\n", resetRec); } return FLINT_SUCCESS; } #else reportErr(true, FLINT_NO_MFA2); return FLINT_FAILED; #endif } /*********************** * Class: QuerySubCommand **********************/ bool QuerySubCommand::verifyParams() { if (_flintParams.cmd_params.size() > 1) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } if ((_flintParams.cmd_params.size() == 1) && _flintParams.cmd_params[0] != "full") { reportErr(true, FLINT_INVALID_OPTION_ERROR, _flintParams.cmd_params[0].c_str(), _name.c_str(), "full"); return false; } return true; } bool QuerySubCommand::checkMac(u_int64_t mac, string& warrStr) { if ((mac >> 40) & 0x1) { warrStr = FLINT_MULTI_BIT_WARNING; return false; } if (mac >> 48) { warrStr = FLINT_MORE_48_BITS_WARNING; return false; } return true; } bool QuerySubCommand::displayFs2Uids(const fw_info_t& fwInfo) { const char* mac_indent = ""; bool ibDev; bool ethDev; FwOperations::SetDevFlags(fwInfo.fw_info.chip_type, fwInfo.fw_info.dev_type, (fw_img_type)fwInfo.fw_type, ibDev, ethDev); // setDevFlags(fwInfo, ibDev, ethDev); int numPorts = 2; // we do not support cards with one port anymore. // GUIDS: if (ibDev) { // report("GUID Des: Node Port1 "); printf("Description: Node "); if (numPorts > 0) { printf("Port1 "); } if (numPorts > 1) { printf("Port2 "); } printf("Sys image\n"); printf("GUIDs: "); for (u_int32_t i = 0; i < GUIDS; i++) { if ((i == 1 && numPorts < 1) || (i == 2 && numPorts < 2)) { continue; } printf(GUID_FORMAT " ", fwInfo.fs2_info.guids[i].h, fwInfo.fs2_info.guids[i].l); } if (numPorts > 0) { mac_indent = " "; } } // MACS: if (ethDev) { if (fwInfo.fs2_info.guid_num == 6) { if (!ibDev) { printf("Description: %s Port1 Port2\n", mac_indent); } else { printf("\n"); } printf("MACs: %s ", mac_indent); for (u_int32_t i = GUIDS; i < 6; i++) { printf(" " MAC_FORMAT, fwInfo.fs2_info.guids[i].h, fwInfo.fs2_info.guids[i].l); } for (u_int32_t i = GUIDS; i < 6; i++) { u_int64_t mac = (((u_int64_t)fwInfo.fs2_info.guids[i].h) << 32) | fwInfo.fs2_info.guids[i].l; string warrStr; if (!fwInfo.fs2_info.blank_guids && !checkMac(mac, warrStr)) { if (i == GUIDS) { printf("\n\n"); } printf(FLINT_BAD_MAC_ADRESS_WARNING, fwInfo.fs2_info.guids[i].h, fwInfo.fs2_info.guids[i].l, warrStr.c_str()); } } } else { printf(FLINT_MAC_ENTRIES_WARNING, 6, fwInfo.fs2_info.guid_num); } } printf("\n"); return true; } #define NA_STR "N/A" #define BASE_STR "Base" #define PRINT_FS3_OR_NEWER_UID(uid1, str, printStep, isGuid) \ if (uid1.uid) \ { \ if (isGuid) \ { \ printf("%-18s %016" U64H_FMT_GEN, str, uid1.uid); \ } \ else \ { \ printf("%-18s %012" U64H_FMT_GEN " ", str, uid1.uid); \ } \ } \ else \ { \ printf("%-18s %-16s", str, NA_STR); \ } \ if (uid1.num_allocated) \ { \ printf(" %d", uid1.num_allocated); \ } \ else \ { \ printf(" %s", NA_STR); \ } \ if (printStep) \ { \ if (uid1.step) \ { \ printf(" %d", uid1.step); \ } \ else \ { \ printf(" %s", NA_STR); \ } \ } \ printf("\n"); #define PRINT_FS4_OR_NEWER_UID(uid1, str, printStep, isGuid) \ if (uid1.uid) \ { \ if (isGuid) \ { \ printf("%-18s %016" U64H_FMT_GEN, str, uid1.uid); \ } \ else \ { \ printf("%-18s %012" U64H_FMT_GEN " ", str, uid1.uid); \ } \ } \ else \ { \ printf("%-18s %-16s", str, NA_STR); \ } \ if (uid1.num_allocated || uid1.num_allocated_msb) \ { \ printf(" %d", uid1.num_allocated + (uid1.num_allocated_msb << 8)); \ } \ else \ { \ printf(" %s", NA_STR); \ } \ if (printStep) \ { \ if (uid1.step) \ { \ printf(" %d", uid1.step); \ } \ else \ { \ printf(" %s", NA_STR); \ } \ } \ printf("\n"); static inline void printFs3OrNewerUids(struct fs3_uid_entry uid, struct fs3_uid_entry orig_uid, string guidMac, bool printStep) { string prefix = BASE_STR + string(" ") + guidMac + ":"; bool isGuid = guidMac.find("GUID") != string::npos ? true : false; PRINT_FS3_OR_NEWER_UID(uid, prefix.c_str(), printStep, isGuid); if (uid.uid != orig_uid.uid || uid.num_allocated != orig_uid.num_allocated || (printStep && uid.step != orig_uid.step)) { // Print MFG UIDs as well prefix = "Orig " + prefix; PRINT_FS3_OR_NEWER_UID(orig_uid, prefix.c_str(), printStep, isGuid); } } static inline void printFs4OrNewerUids(struct fs4_uid_entry uid, struct fs4_uid_entry orig_uid, string guidMac, bool printStep) { string prefix = BASE_STR + string(" ") + guidMac + ":"; bool isGuid = guidMac.find("GUID") != string::npos ? true : false; PRINT_FS4_OR_NEWER_UID(uid, prefix.c_str(), printStep, isGuid); if (uid.uid != orig_uid.uid || uid.num_allocated != orig_uid.num_allocated || uid.num_allocated_msb != orig_uid.num_allocated_msb || (printStep && uid.step != orig_uid.step)) { // Print MFG UIDs as well prefix = "Orig " + prefix; PRINT_FS4_OR_NEWER_UID(orig_uid, prefix.c_str(), printStep, isGuid); } } bool QuerySubCommand::displayFs3Uids(const fw_info_t& fwInfo) { if (fwInfo.fs3_info.fs3_uids_info.valid_field) { // new GUIDs format printf("Description: UID GuidsNumber\n"); printFs4OrNewerUids(fwInfo.fs3_info.fs3_uids_info.image_layout_uids.base_guid, fwInfo.fs3_info.orig_fs3_uids_info.image_layout_uids.base_guid, "GUID", false); printFs4OrNewerUids(fwInfo.fs3_info.fs3_uids_info.image_layout_uids.base_mac, fwInfo.fs3_info.orig_fs3_uids_info.image_layout_uids.base_mac, "MAC", false); } else { printf("Description: UID GuidsNumber Step\n"); string firstGuid = (fwInfo.fw_info.chip_type != CT_SWITCH_IB) ? "GUID1" : "GUID"; string firstMac = (fwInfo.fw_info.chip_type != CT_SWITCH_IB) ? "MAC1" : "MAC"; printFs3OrNewerUids(fwInfo.fs3_info.fs3_uids_info.cib_uids.guids[0], fwInfo.fs3_info.orig_fs3_uids_info.cib_uids.guids[0], firstGuid, true); if (fwInfo.fw_info.chip_type != CT_SWITCH_IB) { printFs3OrNewerUids(fwInfo.fs3_info.fs3_uids_info.cib_uids.guids[1], fwInfo.fs3_info.orig_fs3_uids_info.cib_uids.guids[1], "GUID2", true); } printFs3OrNewerUids(fwInfo.fs3_info.fs3_uids_info.cib_uids.macs[0], fwInfo.fs3_info.orig_fs3_uids_info.cib_uids.macs[0], firstMac, true); if (fwInfo.fw_info.chip_type != CT_SWITCH_IB) { printFs3OrNewerUids(fwInfo.fs3_info.fs3_uids_info.cib_uids.macs[1], fwInfo.fs3_info.orig_fs3_uids_info.cib_uids.macs[1], "MAC2", true); } } return true; } string QuerySubCommand::printSecurityAttrInfo(u_int32_t m) { string attr = ""; if (m & SMM_SECURE_FW) { attr += "secure-fw"; } else if (m & SMM_SIGNED_FW) { attr += "signed-fw"; } else { attr += NA_STR; return attr; } if (m & SMM_DEBUG_FW) { attr += ", debug"; } if (m & SMM_DEV_FW) { attr += ", dev"; } if (m & SMM_CS_TOKEN) { attr += ", cs-token"; } if (m & SMM_DBG_TOKEN) { attr += ", dbg-token"; } if (m & SMM_CRYTO_TO_COMMISSIONING) { attr += ", crypto-to-commissioning"; } if (m & SMM_RMCS_TOKEN) { attr += ", rmcs-token"; } if (m & SMM_RMDT_TOKEN) { attr += ", rmdt-token"; } return attr; } FlintStatus QuerySubCommand::printImageInfo(const fw_info_t& fwInfo) { bool isFs4 = (fwInfo.fw_type == FIT_FS4 || fwInfo.fw_type == FIT_FS5) ? true : false; FwVersion image_version = FwOperations::createFwVersion(&fwInfo.fw_info); printf("Image type: %s\n", fwImgTypeToStr(fwInfo.fw_type)); if (fwInfo.fw_info.isfu_major) { printf("FW ISSU Version: %d\n", fwInfo.fw_info.isfu_major); } if (image_version.is_set()) { printf("FW Version: %s\n", image_version.get_fw_version(VERSION_FORMAT(fwInfo.fw_info.fw_ver[1])).c_str()); } if (fwInfo.fw_info.fw_rel_date[0] || fwInfo.fw_info.fw_rel_date[1] || fwInfo.fw_info.fw_rel_date[2]) { printf("FW Release Date: %x.%x.%x\n", fwInfo.fw_info.fw_rel_date[0], fwInfo.fw_info.fw_rel_date[1], fwInfo.fw_info.fw_rel_date[2]); } if (fwInfo.fw_info.min_fit_ver[0] || fwInfo.fw_info.min_fit_ver[1] || fwInfo.fw_info.min_fit_ver[2] || fwInfo.fw_info.min_fit_ver[3]) { printf("Min FIT Version: %d.%d.%d.%d\n", fwInfo.fw_info.min_fit_ver[0], fwInfo.fw_info.min_fit_ver[1], fwInfo.fw_info.min_fit_ver[2], fwInfo.fw_info.min_fit_ver[3]); } if ((fwInfo.fw_info.mic_ver[0] || fwInfo.fw_info.mic_ver[1] || fwInfo.fw_info.mic_ver[2])) { printf("MIC Version: %d.%d.%d\n", fwInfo.fw_info.mic_ver[0], fwInfo.fw_info.mic_ver[1], fwInfo.fw_info.mic_ver[2]); } if (strlen(fwInfo.fw_info.product_ver)) { printf("Product Version: %s\n", fwInfo.fw_info.product_ver); } if (fwInfo.fw_info.roms_info.exp_rom_found) { displayExpRomInfo(fwInfo.fw_info.roms_info, "Rom Info: "); } char* imageVSD = (char*)fwInfo.fs3_info.image_vsd; char* deviceVSD = NULL; if (isFs4) { deviceVSD = (char*)fwInfo.fs3_info.deviceVsd; } else { deviceVSD = (char*)fwInfo.fw_info.vsd; } if (strlen(imageVSD) == 0) { if (deviceVSD == NULL || strlen(deviceVSD) == 0) { imageVSD = (char*)NA_STR; } else { imageVSD = deviceVSD; } } printf("Image VSD: %s\n", imageVSD); printf("PSID: %s\n", fwInfo.fw_info.psid); printf("Security Attributes: %s\n", printSecurityAttrInfo(fwInfo.fs3_info.security_mode).c_str()); if (isFs4) { // Security Version is supported in Connectx-6dx and up printf("Security Ver: %d\n", fwInfo.fs3_info.image_security_version); } string updateMethod = "Legacy"; if (fwInfo.fs3_info.security_mode & SMM_MCC_EN) { updateMethod = "fw_ctrl"; } printf("Default Update Method: %s\n", updateMethod.c_str()); return FLINT_SUCCESS; } FlintStatus QuerySubCommand::printInfo(const fw_info_t& fwInfo, bool fullQuery) { DPRINTF(("QuerySubCommand::printInfo fullQuery=%d\n", fullQuery)); bool isFs2 = (fwInfo.fw_type == FIT_FS2) ? true : false; bool isFs3 = (fwInfo.fw_type == FIT_FS3) ? true : false; bool isFs4 = (fwInfo.fw_type == FIT_FS4 || fwInfo.fw_type == FIT_FS5) ? true : false; bool isFsCtrl = (fwInfo.fw_type == FIT_FSCTRL) ? true : false; FwOperations* ops = (_flintParams.device_specified) ? _fwOps : _imgOps; FwVersion image_version = FwOperations::createFwVersion(&fwInfo.fw_info); FwVersion running_version = FwOperations::createRunningFwVersion(&fwInfo.fw_info); printf("Image type: %s\n", fwImgTypeToStr(fwInfo.fw_type)); if (fwInfo.fw_info.isfu_major) { printf("FW ISSU Version: %d\n", fwInfo.fw_info.isfu_major); } if (image_version.is_set()) { printf("FW Version: %s\n", image_version.get_fw_version(VERSION_FORMAT(fwInfo.fw_info.fw_ver[1])).c_str()); if (nextBootFwVer) { // if nextBootFwVer is true, no need to print all the other values. return FLINT_SUCCESS; } if (image_version != running_version && running_version.is_set()) { printf("FW Version(Running): %s\n", running_version.get_fw_version(VERSION_FORMAT(fwInfo.fw_info.running_fw_ver[1])).c_str()); } } else if (nextBootFwVer) { if (_flintParams.device_specified) { mfile* mf = _fwOps->getMfileObj(); if (mf != NULL) { if ((mf->flags & MDEVS_IB) == 0) { // not IB device // if nextBootFwVer is true, and no next boot fw version, print running version (this version is // next_boot_fw_ver as well) printf("FW Version: %s\n", running_version.get_fw_version(VERSION_FORMAT(fwInfo.fw_info.running_fw_ver[1])).c_str()); } } } return FLINT_SUCCESS; } if (fwInfo.fw_info.fw_rel_date[0] || fwInfo.fw_info.fw_rel_date[1] || fwInfo.fw_info.fw_rel_date[2]) { printf("FW Release Date: %x.%x.%x\n", fwInfo.fw_info.fw_rel_date[0], fwInfo.fw_info.fw_rel_date[1], fwInfo.fw_info.fw_rel_date[2]); } if (fullQuery) { // there is no full query atm just quick query if (fwInfo.fw_info.min_fit_ver[0] || fwInfo.fw_info.min_fit_ver[1] || fwInfo.fw_info.min_fit_ver[2] || fwInfo.fw_info.min_fit_ver[3]) { printf("Min FIT Version: %d.%d.%d.%d\n", fwInfo.fw_info.min_fit_ver[0], fwInfo.fw_info.min_fit_ver[1], fwInfo.fw_info.min_fit_ver[2], fwInfo.fw_info.min_fit_ver[3]); } if ((fwInfo.fw_info.mic_ver[0] || fwInfo.fw_info.mic_ver[1] || fwInfo.fw_info.mic_ver[2])) { printf("MIC Version: %d.%d.%d\n", fwInfo.fw_info.mic_ver[0], fwInfo.fw_info.mic_ver[1], fwInfo.fw_info.mic_ver[2]); } if (isFs2) { if (fwInfo.fs2_info.config_sectors) { printf("Config Sectors: %d\n", fwInfo.fs2_info.config_sectors); } if (fwInfo.fs2_info.config_pad) { printf("Config Pad: %d\n", fwInfo.fs2_info.config_pad); } if (strlen(fwInfo.fs2_info.prs_name)) { printf("PRS Name: %s\n", fwInfo.fs2_info.prs_name); } } else { // FS3 if (strlen(fwInfo.fs3_info.prs_name)) { printf("PRS Name: %s\n", fwInfo.fs3_info.prs_name); } if (strlen(fwInfo.fs3_info.orig_prs_name)) { printf("Orig PRS Name: %s\n", fwInfo.fs3_info.orig_prs_name); } if (strlen(fwInfo.fs3_info.name)) { printf("Part Number: %s\n", fwInfo.fs3_info.name); } if (strlen(fwInfo.fs3_info.description)) { printf("Description: %s\n", fwInfo.fs3_info.description); } } } if (strlen(fwInfo.fw_info.product_ver)) { printf("Product Version: %s\n", fwInfo.fw_info.product_ver); } if (fwInfo.fw_info.roms_info.exp_rom_found) { displayExpRomInfo(fwInfo.fw_info.roms_info, "Rom Info: "); } else if (_flintParams.skip_rom_query) { printf("Rom Info: type=UEFI version=skipped cpu=skipped\n"); printf(" type=PXE version=skipped devid=skipped cpu=skipped\n"); printf(" type=NVMe version=skipped devid=skipped cpu=skipped\n"); } if (isFs2) { printf("Device ID: %d\n", fwInfo.fw_info.dev_type); } if (isFs2 && fwInfo.fs2_info.access_key_exists) { printf("HW Access Key: "); if (fwInfo.fs2_info.access_key_value.l || fwInfo.fs2_info.access_key_value.h) { printf("Enabled\n"); } else { printf("Disabled\n"); } } if (!isFs2) { /*i.e its fs3/fs4*/ if (!displayFs3Uids(fwInfo)) { return FLINT_FAILED; } } else { if (!displayFs2Uids(fwInfo)) { return FLINT_FAILED; } } // VSD, PSID if (!fwInfo.fw_info.vsd_vendor_id || fwInfo.fw_info.vsd_vendor_id == MELLANOX_VENDOR_ID) { if (!isFs2) { char* imageVSD = (char*)fwInfo.fs3_info.image_vsd; char* deviceVSD = NULL; if (_flintParams.device_specified == false && _flintParams.image_specified == true) { // we're making query on BIN file only deviceVSD = (char*)fwInfo.fw_info.vsd; } else if (isFs4 && !_flintParams.no_fw_ctrl && !_flintParams.override_cache_replacement) { deviceVSD = (char*)fwInfo.fs3_info.deviceVsd; } else { deviceVSD = (char*)fwInfo.fw_info.vsd; } if (strlen(imageVSD) == 0) { imageVSD = (char*)NA_STR; } if (strlen(deviceVSD) == 0) { deviceVSD = (char*)NA_STR; } printf("Image VSD: %s\n", imageVSD); printf("Device VSD: %s\n", deviceVSD); printf("PSID: %s\n", fwInfo.fw_info.psid); if (strncmp(fwInfo.fw_info.psid, fwInfo.fs3_info.orig_psid, 13) != 0) { if (strlen(fwInfo.fs3_info.orig_psid)) { printf("Orig PSID: %s\n", fwInfo.fs3_info.orig_psid); } else { printf("Orig PSID: %s\n", NA_STR); } } } else { printf("VSD: %s\n", fwInfo.fw_info.vsd); printf("PSID: %s\n", fwInfo.fw_info.psid); } } else { printf(FLINT_NOT_MLNX_FW_WARNING, fwInfo.fw_info.vsd_vendor_id); } if (isFs3 || isFs4 || isFsCtrl) { printf("Security Attributes: %s\n", printSecurityAttrInfo(fwInfo.fs3_info.security_mode).c_str()); } if (isFs4 && _flintParams.image_specified) { // Security Version is supported in Connectx-6dx and up printf("Security Ver: %d\n", fwInfo.fs3_info.image_security_version); } if ((isFs3 || isFs4 || isFsCtrl) && fullQuery) { string updateMethod = "Legacy"; if (fwInfo.fs3_info.security_mode & SMM_MCC_EN) { updateMethod = "fw_ctrl"; } printf("Default Update Method: %s\n", updateMethod.c_str()); } if (fullQuery && _flintParams.device_specified) { if (ops->IsFsCtrlOperations()) { // working only on devices with FW control if (ops->IsLifeCycleSupported()) { // from CX6 and above unsigned int index = (unsigned int)fwInfo.fs3_info.life_cycle; if (index >= NUM_OF_LIFE_CYCLES) { reportErr(true, "The life cycle value is out of range: %u", index); } else { printf("Life cycle: %s\n", life_cycle_strings[index]); } } if (ops->IsSecureBootSupported()) { // from CX6DX and above printf("Secure Boot Capable: %s\n", fwInfo.fs3_info.sec_boot == 1 ? "Enabled" : "Disabled"); if (fwInfo.fs3_info.device_security_version_access_method == MFSV) { printf("EFUSE Security Ver: %d\n", fwInfo.fs3_info.device_security_version_mfsv.efuses_sec_ver); printf("Image Security Ver: %d\n", fwInfo.fs3_info.device_security_version_mfsv.img_sec_ver); string efuses_programming_info; if (fwInfo.fs3_info.device_security_version_mfsv.efuses_prog_method == 0) { if (fwInfo.fs3_info.device_security_version_mfsv.efuses_prog_en == 0) { efuses_programming_info = "Manually ; Disabled"; // disabled } else { efuses_programming_info = "Manually ; Enabled"; // next boot only } } else { efuses_programming_info = "Automatically"; // every boot } printf("Security Ver Program: %s\n", efuses_programming_info.c_str()); } if (ops->IsEncryptionSupported()) { printf("Encryption: %s\n", fwInfo.fs3_info.encryption == 1 ? "Enabled" : "Disabled"); } } } else { // No fw control if (ops->IsSecureBootSupported()) { // CX6DX onwards if (ops->IsLifeCycleAccessible(fwInfo.fw_info.chip_type)) { printf("Image Boot Status: %d\n", fwInfo.fs3_info.global_image_status); unsigned int index = (unsigned int)fwInfo.fs3_info.life_cycle; if (index >= NUM_OF_LIFE_CYCLES) { reportErr(true, "The life cycle value is out of range: %u", index); } else { printf("Life cycle: %s\n", life_cycle_strings[index]); } if (fwInfo.fs3_info.life_cycle == GA_SECURED && fwInfo.fs3_info.device_security_version_access_method == DIRECT_ACCESS) { printf("EFUSE Security Ver: %d\n", fwInfo.fs3_info.device_security_version_gw); } } } } } if (isFs2 && fwInfo.fs2_info.blank_guids) { // blankGuids only exsists in FS2 image type in mlxfwops why? printf(FLINT_BLANK_GUIDS_WARNING); } return FLINT_SUCCESS; } QuerySubCommand::QuerySubCommand() { _name = "query"; _desc = "Query misc. flash/firmware characteristics, use \"full\" to get more information."; _extendedDesc = "Query miscellaneous FW and flash parameters \n" "Display FW Version, GUIDs, PSID, and other info"; _flagLong = "query"; _flagShort = "q"; _param = "[full]"; _paramExp = "None"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " query"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _cmdType = SC_Query; _mccSupported = true; } QuerySubCommand::~QuerySubCommand() {} FlintStatus QuerySubCommand::queryMFA2() { #ifndef NO_MSTARCHIVE if (_flintParams.use_psid == false) { reportErr(true, "Must supply \"--psid\" flag while querying MFA2 archive\n"); return FLINT_FAILED; } char* psid = (char*)_flintParams.psid.c_str(); u_int16_t fw_ver[3]; fw_ver[0] = 0xff; fw_ver[1] = 0xff; fw_ver[2] = 0xffff; map_string_to_component matchingComponentsMap = _mfa2Pkg->getMatchingComponents(psid, fw_ver); u_int32_t matchingSize = matchingComponentsMap.size(); if (matchingSize == 0) { reportErr(true, "No matching binaries found for MFA2 %s\n", _flintParams.image.c_str()); return FLINT_FAILED; } else { int i = 1; u_int8_t fs4_image_signature[] = {0x4D, 0x54, 0x46, 0x57, 0xAB, 0xCD, 0xEF, 0x00, 0xFA, 0xDE, 0x12, 0x34, 0x56, 0x78, 0xDE, 0xAD}; u_int8_t fs3_image_signature[] = {0x4D, 0x54, 0x46, 0x57, 0x8C, 0xDF, 0xD0, 0x00, 0xDE, 0xAD, 0x92, 0x70, 0x41, 0x54, 0xBE, 0xEF}; map_string_to_component::iterator it = matchingComponentsMap.begin(); printf("\n*******************************\n"); for (u_int32_t index = 0; index < matchingSize && it != matchingComponentsMap.end(); index++, it++) { const ComponentDescriptor& compDescr = it->second.getComponentDescriptor(); u_int8_t deviceMajorVer = compDescr.getVersionExtension().getMajor(); vector componentBuffer; _mfa2Pkg->unzipComponent(matchingComponentsMap, index, componentBuffer); char errBuff[ERR_BUFF_SIZE] = {0}; string fileName = "/tmp/temp.bin"; // Get temp name if (deviceMajorVer >= 16) { for (u_int8_t i = 0; i < sizeof(fs4_image_signature); i++) { componentBuffer[i] = fs4_image_signature[i]; } } else { for (u_int8_t i = 0; i < sizeof(fs3_image_signature); i++) { componentBuffer[i] = fs3_image_signature[i]; } } writeImageToFile(fileName.c_str(), componentBuffer.data(), componentBuffer.size()); _flintParams.image_specified = true; _flintParams.image = fileName; _imgOps = FwOperations::FwOperationsCreate((void*)_flintParams.image.c_str(), NULL, NULL, FHT_FW_FILE, errBuff, ERR_BUFF_SIZE, _flintParams.ignore_crc_check); fw_info_t fwInfo; if (!_imgOps->FwQuery(&fwInfo, true, false, true, true)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "image", _flintParams.image.c_str(), _imgOps->err()); return FLINT_FAILED; } printf("Component %d\n", i++); if (printImageInfo(fwInfo) == FLINT_FAILED) { return FLINT_FAILED; } printf("*******************************\n"); } } #endif return FLINT_SUCCESS; } FlintStatus QuerySubCommand::executeCommand() { DPRINTF(("QuerySubCommand::executeCommand\n")); if (_flintParams.linkx_control == true) { if (_flintParams.device_specified == false) { reportErr(true, FLINT_NO_DEVICE_ERROR); return FLINT_FAILED; } if (_flintParams.downstream_device_ids.size() == 0) { reportErr(true, "Flag \"--downstream_device_ids\" with values should be provided.\n"); return FLINT_FAILED; } return QueryLinkX(_flintParams.device, _flintParams.output_file, _flintParams.downstream_device_ids); } if (_flintParams.image_specified) { #ifndef NO_MSTARCHIVE string mfa2file = _flintParams.image; _mfa2Pkg = MFA2::LoadMFA2Package(mfa2file); if (_mfa2Pkg != NULL) { _flintParams.mfa2_specified = true; return queryMFA2(); } #endif } if (_flintParams.low_cpu) { set_increase_poll_time(1); } if (_flintParams.next_boot_fw_ver) { nextBootFwVer = true; } if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } fw_info_t fwInfo; FwOperations* ops; bool fullQuery = false; // check on what we are working ops = (_flintParams.device_specified) ? _fwOps : _imgOps; if (!ops->FwQuery(&fwInfo, !_flintParams.skip_rom_query, _flintParams.striped_image)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, _flintParams.device_specified ? "Device" : "image", _flintParams.device_specified ? _flintParams.device.c_str() : _flintParams.image.c_str(), ops->err()); return FLINT_FAILED; } if (ops->FwType() == FIT_COMPS) { ops->PrintQuery(); return FLINT_SUCCESS; } // print fw_info nicely to the user // we actually dont use "regular" query , just quick // ORENK - no use to display quick query message to the user if we dont do it in any other way if (_flintParams.cmd_params.size() == 1) { fullQuery = true; } FlintStatus queryResult = printInfo(fwInfo, fullQuery); return queryResult; } /*********************** * Class: QueryComponentSubCommand **********************/ QueryComponentSubCommand::QueryComponentSubCommand() { _name = "query components"; _desc = "Queries components on a given device via FW."; _extendedDesc = ""; _flagLong = "query_components"; _flagShort = "qc"; _param = ""; _paramExp = "None"; _example = FLINT_NAME " -d /dev/mst/mt53100_pciconf0 --component_type sync_clock query_components"; _v = Wtv_Dev; _maxCmdParamNum = 0; _cmdType = SC_Query_Components; _mccSupported = true; } QueryComponentSubCommand::~QueryComponentSubCommand() {} FlintStatus QueryComponentSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_fwOps->IsFsCtrlOperations()) { bool rc = true; FwComponent::comps_ids_t comp = FwComponent::getCompId(_flintParams.component_type); switch (comp) { case FwComponent::COMPID_CLOCK_SYNC_EEPROM: rc = querySyncE(); break; case FwComponent::COMPID_UNKNOWN: default: reportErr(true, "Unknown component type given.\n"); return FLINT_FAILED; } if (!rc) { return FLINT_FAILED; } } else { reportErr(true, "Command is not supported in the current state of this device.\n"); return FLINT_FAILED; } return FLINT_SUCCESS; } bool QueryComponentSubCommand::verifyParams() { if (_flintParams.component_type.empty()) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "\"--component_type\""); return false; } return true; } FlintStatus QueryComponentSubCommand::querySyncE() { vector firstDeviceData, secondDeviceData; if (!_fwOps->QueryComponentData(FwComponent::COMPID_CLOCK_SYNC_EEPROM, 1, firstDeviceData)) { reportErr(true, "%s\n", _fwOps->err()); return FLINT_FAILED; } if (!_fwOps->QueryComponentData(FwComponent::COMPID_CLOCK_SYNC_EEPROM, 2, secondDeviceData)) { reportErr(true, "%s\n", _fwOps->err()); return FLINT_FAILED; } if (firstDeviceData.empty() && secondDeviceData.empty()) { reportErr(true, "failed getting info from the device.\n"); return FLINT_FAILED; } FsSyncEOperations::PrintComponentData(firstDeviceData, 1); FsSyncEOperations::PrintComponentData(secondDeviceData, 2); return FLINT_SUCCESS; } /*********************** * Class: ImageReactivationSubCommand ***********************/ ImageReactivationSubCommand::ImageReactivationSubCommand() { _name = "image_reactivation"; _desc = "Reactivate previous flash image. For FW controlled devices only."; _extendedDesc = "Reactivate previous flash image by moving the magic pattern."; _flagLong = "image_reactivate"; _flagShort = "ir"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " image_reactivate"; _v = Wtv_Dev; _maxCmdParamNum = 0; _cmdType = SC_Image_Reactivation; _mccSupported = true; } bool ImageReactivationSubCommand::verifyParams() { if (_flintParams.cmd_params.size() != 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 0, (int)_flintParams.cmd_params.size()); return false; } if (_flintParams.no_fw_ctrl) { reportErr(true, FLINT_INVALID_FLAG_WITH_CMD_ERROR, "-no_fw_ctrl", "image_reactivation"); return false; } if (_flintParams.override_cache_replacement) { reportErr(true, FLINT_INVALID_FLAG_WITH_CMD_ERROR, "-ocr", "image_reactivation"); return false; } return true; } ImageReactivationSubCommand::~ImageReactivationSubCommand() {} FlintStatus ImageReactivationSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } fw_info_t fwInfo; FwOperations* ops = _fwOps; if (!ops->FwQuery(&fwInfo)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Device", _flintParams.device.c_str(), ops->err()); return FLINT_FAILED; } if (!_fwOps->FwReactivateImage()) { reportErr(true, FLINT_FAILED_IMAGE_REACTIVATION_ERROR, _flintParams.device.c_str(), ops->err()); return FLINT_FAILED; } printf("\n-I- FW Image Reactivation succeeded.\n\n"); return FLINT_SUCCESS; } /*********************** * Class: VerifySubCommand ***********************/ VerifySubCommand::VerifySubCommand() { _name = "verify"; _desc = "Verify entire flash, use \"showitoc\" to see ITOC headers in FS3/FS4 image only."; _extendedDesc = "Verify entire flash."; _flagLong = "verify"; _flagShort = "v"; _param = "[showitoc]"; _paramExp = "None"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " v"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _cmdType = SC_Verify; } VerifySubCommand::~VerifySubCommand() {} bool VerifySubCommand::verifyParams() { if (_flintParams.cmd_params.size() > 1) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 0, (int)_flintParams.cmd_params.size()); return false; } if ((_flintParams.cmd_params.size() == 1) && _flintParams.cmd_params[0] != "showitoc") { reportErr(true, FLINT_INVALID_OPTION_ERROR, _flintParams.cmd_params[0].c_str(), _name.c_str(), "showitoc"); return false; } return true; } FlintStatus VerifySubCommand::executeCommand() { if (_flintParams.image_specified == true && _flintParams.device_specified == true) { // Verify based on binary compare BinaryCompareSubCommand bc; _flintParams.silent = true; bc.setParams(_flintParams); FlintStatus bc_res = bc.executeCommand(); if (bc_res == FLINT_SUCCESS) { printf("\n-I- FW image verification succeeded. Image is bootable.\n\n"); } else { reportErr(true, FLINT_CMD_VERIFY_ERROR_2); } return bc_res; } if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops; bool showItoc = (_flintParams.cmd_params.size() == 1) ? true : false; // check on what we are wroking int opaque = 0; ProgressCallBackAdvSt advProgress; advProgress.func = (f_prog_func_adv)&advProgressFunc; advProgress.opaque = &opaque; ops = (_flintParams.device_specified) ? _fwOps : _imgOps; FwOperations::ExtVerifyParams verifyParams(&verifyCbFunc); verifyParams.isStripedImage = _flintParams.striped_image; verifyParams.showItoc = showItoc; verifyParams.progressFuncAdv = &advProgress; if (!ops->FwVerifyAdv(verifyParams)) { reportErr(true, FLINT_CMD_VERIFY_ERROR, ops->err()); return FLINT_FAILED; } // get status of blank guids in fs2 only can either bring from FwVerify as another parameter. ask mohammad if (ops->FwType() == FIT_FS2) { fw_info_t fwInfo; if (!ops->FwQuery(&fwInfo, true, _flintParams.striped_image)) { printf("\n\n"); reportErr(true, "Failed to get Guids status. %s\n", ops->err()); return FLINT_FAILED; } if (fwInfo.fs2_info.blank_guids) { printf("\n\n"); reportErr(true, FLINT_CMD_VERIFY_ERROR, "BLANK GUIDS"); return FLINT_FAILED; } } printf("\n-I- FW image verification succeeded. Image is bootable.\n\n"); return FLINT_SUCCESS; } /*********************** * Class: SwResetSubCommand **********************/ SwResetSubCommand::SwResetSubCommand() { _name = "swreset"; _desc = "SW reset the target switch device." "This command is supported only in the In-Band access method."; _extendedDesc = "SW reset the target switch device. This command is supported only in the In-Band" " access method."; _flagLong = "swreset"; _flagShort = ""; _param = ""; _paramExp = "None"; _example = "None"; _v = Wtv_Dev; _maxCmdParamNum = 0; _cmdType = SC_Swreset; } SwResetSubCommand::~SwResetSubCommand() {} bool SwResetSubCommand::verifyParams() { if (_flintParams.cmd_params.size() != 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 0, (int)_flintParams.cmd_params.size()); return false; } return true; } FlintStatus SwResetSubCommand::executeCommand() { mfile* mf = NULL; dm_dev_id_t devid_type; u_int32_t devid, revid; if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } mf = _fwOps->getMfileObj(); int rc = dm_get_device_id(mf, &devid_type, &devid, &revid); if (rc != 0) { reportErr(true, "can't get device Id.\n"); return FLINT_FAILED; } (void)devid; (void)revid; if (!IsDeviceSupported(devid_type)) { return FLINT_FAILED; } printf("-I- Sending reset command to device %s ...\n", _flintParams.device.c_str()); if (!_fwOps->FwSwReset()) { reportErr(true, FLINT_SWRESET_ERROR, _fwOps->err()); return FLINT_FAILED; } printf("-I- Reset command accepted by the device.\n"); return FLINT_SUCCESS; } bool SwResetSubCommand::IsDeviceSupported(dm_dev_id_t dev_id) { if (dm_dev_is_ib_switch(dev_id)) { return true; } reportErr(true, "Device %s doesn't support swreset command.\n", dm_dev_type2str(dev_id)); return false; } /*********************** * Class: BromSubCommand **********************/ BromSubCommand::BromSubCommand() { _name = "brom"; _desc = "Burn the specified ROM file on the flash."; _extendedDesc = "Burn the specified exp-ROM on the flash."; _flagLong = "brom"; _flagShort = ""; _param = ""; _paramExp = "file: The exp-ROM file."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " brom exp-rom.rom"; _v = Wtv_Dev_Or_Img; _cmdType = SC_Brom; _maxCmdParamNum = 1; _minCmdParamNum = 1; memset(&_info, 0, sizeof(_info)); memset(&_romsInfo, 0, sizeof(_romsInfo)); } BromSubCommand::~BromSubCommand() { closeLog(); _fRom.close(); } FlintStatus BromSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _flintParams.device_specified ? _fwOps : _imgOps; // query device if (!ops->FwQuery(&_info)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, "Device", _flintParams.device.c_str(), ops->err()); return FLINT_FAILED; } // get roms info if (!_fRom.open(_flintParams.cmd_params[0].c_str())) { reportErr(true, FLINT_BROM_ERROR, _fRom.err()); return FLINT_FAILED; } if (!getRomsInfo(&_fRom, _romsInfo)) { return FLINT_FAILED; } // check devids if ((_romsInfo.num_of_exp_rom > 0) && (_info.fw_info.dev_type) && (_romsInfo.exp_rom_com_devid != EXP_ROM_GEN_DEVID) && (_romsInfo.exp_rom_com_devid != MISS_MATCH_DEV_ID) && (_info.fw_info.dev_type != _romsInfo.exp_rom_com_devid)) { printf("-W- Image file ROM: FW is for device %d, but Exp-ROM is for device %d\n", _info.fw_info.dev_type, _romsInfo.exp_rom_com_devid); if (!askUser()) { return FLINT_FAILED; } } char romVer1[50], romVer2[50]; printf("\n"); const char* infoStr = " Current ROM info on flash: "; const char* infoStr2 = " New ROM info: "; if (_info.fw_info.roms_info.num_of_exp_rom > 0) { displayExpRomInfo(_info.fw_info.roms_info, infoStr); sprintf(romVer1, "%s", getExpRomVerStr(_info.fw_info.roms_info.rom_info[0]).c_str()); } else { printf("%s", infoStr); snprintf(romVer1, 50, "N/A"); printf("%s\n", romVer1); } displayExpRomInfo(_romsInfo, infoStr2); sprintf(romVer2, "%s", getExpRomVerStr(_romsInfo.rom_info[0]).c_str()); // add new line to space up before showing burn precentage printf("\n"); // print correct msg to log if (_info.fw_info.roms_info.num_of_exp_rom != 0) { print_line_to_log("Current ROM version on flash (1st ROM of %d): %s, New ROM version (1st ROM of %d): %s\n", _info.fw_info.roms_info.num_of_exp_rom, romVer1, _romsInfo.num_of_exp_rom, romVer2); } else { print_line_to_log("Current ROM version on flash: %s, New ROM version(1st ROM of %d): %s\n", romVer1, _romsInfo.num_of_exp_rom, romVer2); } // burn the rom printf("-I- Preparing to burn ROM ...\n"); if (!ops->FwBurnRom(&_fRom, _flintParams.allow_rom_change, true, bromCbFunc)) { reportErr(true, FLINT_BROM_ERROR, ops->err()); return FLINT_FAILED; } bromCbFunc(101); printf("\n"); const char* resignStr = ops->FwGetReSignMsgStr(); if (resignStr) { printf("%s", resignStr); } write_result_to_log(FLINT_SUCCESS, "", _flintParams.log_specified); return FLINT_SUCCESS; } /*********************** * Class: Delete ROM **********************/ DromSubCommand::DromSubCommand() { _name = "drom"; _desc = "Remove the ROM section from the flash."; _extendedDesc = "Remove the exp-ROM from the flash if it is existing."; _flagLong = "drom"; _flagShort = ""; _param = ""; _paramExp = "None"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " drom"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 0; _cmdType = SC_Drom; } DromSubCommand::~DromSubCommand() {} bool DromSubCommand::verifyParams() { if (_flintParams.cmd_params.size() != 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 0, (int)_flintParams.cmd_params.size()); return false; } return true; } FlintStatus DromSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } // leave an empty line before printing from callback FwOperations* ops = _flintParams.device_specified ? _fwOps : _imgOps; printf("\n"); printf("-I- Preparing to remove ROM ...\n"); if (!ops->FwDeleteRom(_flintParams.allow_rom_change, dromCbFunc)) { reportErr(true, FLINT_DROM_ERROR, ops->err()); return FLINT_FAILED; } dromCbFunc(101); const char* resignStr = ops->FwGetReSignMsgStr(); if (resignStr) { printf("%s", resignStr); } return FLINT_SUCCESS; } /*********************** * Class: Read ROM **********************/ RromSubCommand::RromSubCommand() { _name = "rrom"; _desc = "Read the ROM section from the flash."; _extendedDesc = "Read the exp-ROM from the flash if it is existing."; _flagLong = "rrom"; _flagShort = ""; _param = ""; _paramExp = "file: filename to write the exp-ROM to."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " rrom exp-rom.rom"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Rrom; } RromSubCommand::~RromSubCommand() {} bool RromSubCommand::verifyParams() { FILE* file; if ((file = fopen(_flintParams.cmd_params[0].c_str(), "r")) != NULL) { fclose(file); printf("\n-W- The given ROM file is existing, you are going to overwrite it.\n"); if (!askUser()) { return false; } } return true; } FlintStatus RromSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } // get the rom sector if present. std::vector romSect; FwOperations* ops = _flintParams.device_specified ? _fwOps : _imgOps; if (!ops->FwReadRom(romSect)) { reportErr(true, FLINT_READ_ROM_ERROR, ops->err()); return FLINT_FAILED; } // TOCPUn(&(romSect[0]), romSect.size()/4); if (!writeToFile(_flintParams.cmd_params[0], romSect)) { return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: **********************/ BbSubCommand::BbSubCommand() { _name = "bb"; _desc = "Burn Block - Burns the given image as is. No checks are done."; _extendedDesc = "Burns entire flash verbatim from raw binary image. No checks are done on the flash or on the" " given image file. No fields (such as VSD or Guids) are read from flash."; _flagLong = "bb"; _flagShort = ""; _param = ""; _paramExp = "None"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -i image1.bin bb"; _v = Wtv_Dev_And_Img; _maxCmdParamNum = 0; _cmdType = SC_Bb; } BbSubCommand::~BbSubCommand() { closeLog(); } bool BbSubCommand::verifyParams() { if (_flintParams.cmd_params.size() != 0) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 0, (int)(_flintParams.cmd_params.size())); return false; } printf("\n Note: This option is only recommended for advanced users. Press Yes to continue"); if (!askUser()) { return false; } return true; } FlintStatus BbSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_fwOps->FwType() == FIT_FS3 || _fwOps->FwType() == FIT_FS4 || _fwOps->FwType() == FIT_FSCTRL) { reportErr(true, FLINT_FS3_BB_ERROR); return FLINT_FAILED; } printf("\n"); printf("Block burn: The given image will be burnt as is. No fields (such\n"); printf("as GUIDS,VSD) are taken from current image on flash.\n"); printf("Burn process will not be failsafe. No checks will be performed.\n"); printf("ALL flash, including the Invariant Sector will be overwritten.\n"); printf("If this process fails, computer may remain in an inoperable state.\n"); if (!askUser()) { return FLINT_FAILED; } ProgressCallBack progressFunc = _flintParams.silent == true ? (ProgressCallBack)NULL : &burnBCbFunc; if (!_fwOps->FwBurnBlock(_imgOps, progressFunc)) { reportErr(true, "Non failsafe burn failed: %s\n", _fwOps->err()); return FLINT_FAILED; } printf("\n"); write_result_to_log(FLINT_SUCCESS, "", _flintParams.log_specified); return FLINT_SUCCESS; } /*********************** * Class: **********************/ SgSubCommand::SgSubCommand() { _name = "sg"; _desc = "guids_num= step_size= Set GUIDs."; _extendedDesc = "Set GUIDs/MACs/UIDs in the given device/image.\n" "Use -guid(s), -mac(s) and -uid(s) flags to set the desired values.\n" "- On pre-ConnectX devices, the sg command is used in production to apply GUIDs/MACs values to" " cards that were pre-burnt with blank GUIDs. It is not meant for use in field.\n" "- On 4th generation devices, this command can operate on both image file and image on flash.\n" "If the GUIDs/MACs/UIDs in the image on flash are non-blank, flint will re-burn the current" " image using the given GUIDs/MACs/UIDs."; _flagLong = "sg"; _flagShort = ""; _param = "[nocrc]"; _paramExp = "nocrc: (optional) When specified the flint would not update the full image crc after changing the guids\n" "guids_num: (optional) number of GUIDs to be allocated per physical port (FS3 Only)\n" "step_size: (optional) step size between GUIDs (FS3 Only)\n" "Note: guids_num/step_size values can be specified per port or for both ports"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -guid 0x0002c9000100d050 sg" "\n" FLINT_NAME " -d " MST_DEV_EXAMPLE4 " -guid 0x0002c9000100d050 -mac 0x0002c900d050 sg"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 2; _cmdType = SC_Sg; _ops = NULL; _mccSupported = true; memset(&_info, 0, sizeof(_info)); ClearGuidStruct(_sgParams); _sgParams.usePPAttr = true; } void SubCommand::ClearGuidStruct(FwOperations::sg_params_t& sgParams) { sgParams.updateCrc = false; // default should be set to true sgParams.stripedImage = false; // default shuold be set to false unless working on striped image file sgParams.macsSpecified = false; sgParams.guidsSpecified = false; sgParams.uidSpecified = false; // valid for ConnectIB only sgParams.userGuids.resize(0); sgParams.numOfGUIDs = 0; // number of GUIDs to allocate for each port. keep zero for default. (FS3 image Only) sgParams.stepSize = 0; // step size between GUIDs. keep zero for default. (FS3 Image Only) sgParams.usePPAttr = false; // if set, use the per port attributes below (FS3 Image Only) memset(&(sgParams.numOfGUIDsPP), 0xff, sizeof(sgParams.numOfGUIDsPP)); memset(&(sgParams.stepSizePP), 0xff, sizeof(sgParams.stepSizePP)); } SgSubCommand::~SgSubCommand() {} bool SgSubCommand::verifyParams() { if ((_flintParams.cmd_params.size() == 1 && _flintParams.cmd_params[0] != "nocrc") || (_flintParams.cmd_params.size() == 2 && !extractUIDArgs(_flintParams.cmd_params, _sgParams.numOfGUIDsPP, _sgParams.stepSizePP))) { reportErr(true, "The sg parameter should be \"nocrc\", \"guids_num= step_size=\" or nothing\n"); return false; } if (_flintParams.cmd_params.size() > 2) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } if (!(_flintParams.guid_specified || _flintParams.guids_specified || _flintParams.uid_specified || _flintParams.mac_specified || _flintParams.macs_specified)) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "GUIDs / MACs / UID (using command line flags -guid(s) / -mac(s) / -uid)"); return false; } if ((_flintParams.guid_specified || _flintParams.guids_specified) && (_flintParams.uid_specified)) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "either GUIDs / UIDs (using command line flags -guid(s) / -uid)"); return false; } if ((_flintParams.mac_specified || _flintParams.macs_specified) && (_flintParams.uid_specified)) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "either MACs / UIDs (using command line flags -mac(s) / -uid)"); return false; } if (_flintParams.guid_specified && _flintParams.guids_specified) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-guids", "-guid"); return false; } if (_flintParams.mac_specified && _flintParams.macs_specified) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "-macs", "-mac"); return false; } _sgParams.guidsSpecified = _flintParams.guid_specified || _flintParams.guids_specified; _sgParams.macsSpecified = _flintParams.mac_specified || _flintParams.macs_specified; _sgParams.uidSpecified = _flintParams.uid_specified; _sgParams.updateCrc = !(_flintParams.cmd_params.size() == 1); _sgParams.stripedImage = _flintParams.striped_image; return true; } void SgSubCommand::setUserGuidsAndMacs() { // _sgParams.userGuids contains either guids and macs (or just guids) or just uids // we are required to specifiy to mlxfwops a guid vector of MAX_GUIDS size regardless if user gives only guids // or only macs or uids if (_sgParams.guidsSpecified) { _sgParams.userGuids = _flintParams.user_guids; } if (_sgParams.macsSpecified) { if (!_sgParams.guidsSpecified) { // it inits the guids with zeroes but mlxfwops will set them to 0xffff // can set default init if needed _sgParams.userGuids.resize(GUIDS); } _sgParams.userGuids.push_back(_flintParams.user_macs[0]); _sgParams.userGuids.push_back(_flintParams.user_macs[1]); } if (_sgParams.uidSpecified) { _sgParams.userGuids.resize(0); _sgParams.userGuids.push_back(_flintParams.baseUid); } _sgParams.userGuids.resize(MAX_GUIDS); } bool SgSubCommand::CheckSetGuidsFlags() { bool ibDev; bool ethDev; FwOperations::SetDevFlags(_info.fw_info.chip_type, _info.fw_info.dev_type, (fw_img_type)_info.fw_type, ibDev, ethDev); // setDevFlags(_info, ibDev,ethDev); if (_sgParams.macsSpecified || _sgParams.guidsSpecified || _sgParams.uidSpecified) { if (!checkGuidsFlags(_info.fw_info.dev_type, _info.fw_type, _sgParams.guidsSpecified, _sgParams.macsSpecified, _sgParams.uidSpecified, ibDev, ethDev)) { return false; } } else { printf("-E- "); printMissingGuidErr(ibDev, ethDev); printf("\n"); return false; } return true; } FlintStatus SgSubCommand::sgFs2() { // different behaviours for fs2 device with blank guids and fs2 device with guids or image // different behaviour if isfailesafe or not if (_flintParams.cmd_params.size() > 1) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); } if (_flintParams.device_specified && !_info.fs2_info.blank_guids) { // 2- FS2 device with no blank Guids printf(FLINT_SET_GUIDS_WARRNING); } if (!CheckSetGuidsFlags()) { return FLINT_FAILED; } if (_flintParams.image_specified || !_info.fs2_info.blank_guids) { // report guid changes bool ethDev; bool ibDev; FwOperations::SetDevFlags(_info.fw_info.chip_type, _info.fw_info.dev_type, (fw_img_type)_info.fw_type, ibDev, ethDev); // setDevFlags(_info, ibDev, ethDev); // decide what are our new guids/macs guid_t* new_guids = (_sgParams.guidsSpecified || _sgParams.uidSpecified) ? &_sgParams.userGuids[0] : &_info.fs2_info.guids[0]; guid_t* new_macs = _sgParams.macsSpecified ? &_sgParams.userGuids[GUIDS] : &_info.fs2_info.guids[GUIDS]; if (!reportGuidChanges(new_guids, new_macs, &_info.fs2_info.guids[0], &_info.fs2_info.guids[GUIDS], ibDev, ethDev, _info.fs2_info.guid_num)) { return FLINT_FAILED; } } if (!_ops->FwSetGuids(_sgParams, &verifyCbFunc, &burnCbFs2Func)) { reportErr(true, FLINT_SG_GUID_ERROR, _ops->err()); return FLINT_FAILED; } burnCbFs2Func(101); return FLINT_SUCCESS; } #define FW_RESET_MSG "To load new configuration run mlxfwreset or reboot machine" FlintStatus SgSubCommand::sgFs3() { if (!CheckSetGuidsFlags()) { return FLINT_FAILED; } if (_flintParams.guids_specified || _flintParams.macs_specified) { string flag = _flintParams.guids_specified ? "-guids" : "-macs"; reportErr(true, FLINT_NOT_SUPP_UID_FLAG_ERROR, flag.c_str()); return FLINT_FAILED; } // TODO: create method that checks the flags for FS3/FS2 if (_info.fw_info.chip_type == CT_CONNECT_IB || _info.fw_info.chip_type == CT_SWITCH_IB) { if (!_flintParams.uid_specified) { reportErr(true, FLINT_NO_UID_FLAG_ERROR); return FLINT_FAILED; } // for connectib we just need the base guid so we put it in the first location. _sgParams.userGuids.resize(1); _sgParams.userGuids[0] = _flintParams.baseUid; } else { if (!_flintParams.uid_specified && !_flintParams.guid_specified && !_flintParams.mac_specified) { reportErr(true, FLINT_NO_GUID_MAC_FLAGS_ERROR); return FLINT_FAILED; } if (_flintParams.uid_specified) { _sgParams.userGuids.resize(1); _sgParams.userGuids[0] = _flintParams.baseUid; } else { // guids and/or macs were specified guid_t tmpGuid; tmpGuid.h = 0; tmpGuid.l = 0; _sgParams.userGuids.resize(2); _sgParams.userGuids[0] = _sgParams.guidsSpecified ? _flintParams.user_guids[0] : tmpGuid; _sgParams.userGuids[1] = _sgParams.macsSpecified ? _flintParams.user_macs[0] : tmpGuid; } } if (!_ops->FwSetGuids(_sgParams, &verifyCbFunc)) { reportErr(true, FLINT_SG_UID_ERROR, _ops->err()); return FLINT_FAILED; } if (_flintParams.device_specified) { printf("-I- %s\n", FW_RESET_MSG); } return FLINT_SUCCESS; } FlintStatus SgSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } // query device _ops = _flintParams.device_specified ? _fwOps : _imgOps; bool stripedImage = _flintParams.striped_image && _flintParams.image_specified; if (!_ops->FwQuery(&_info, true, stripedImage)) { reportErr(true, FLINT_SG_GUID_ERROR, _ops->err()); return FLINT_FAILED; } setUserGuidsAndMacs(); if (_info.fw_type == FIT_FS2) { return sgFs2(); } FlintStatus setGuidResult = sgFs3(); return setGuidResult; } /***************************** * Class: Set Manufacture GUIDs *****************************/ SmgSubCommand::SmgSubCommand() { _name = "smg"; _desc = "Set manufacture GUIDs (For FS3/FS4 image only)."; _extendedDesc = "Set manufacture GUID, Set manufacture GUIDs in the given FS3/FS4 image.\n" "Use -uid flag to set the desired GUIDs, intended for production use only."; _flagLong = "smg"; _flagShort = ""; _param = "guids_num= step_size="; _paramExp = "guids_num: (optional) number of GUIDs to be allocated per physical port\n" "step_size: (optional) step size between GUIDs\n" "Note: guids_num/step_size values can be specified per port or for both ports"; _example = FLINT_NAME " -i fw_image.bin -uid 0x0002c9000100d050 smg" #ifndef __WIN__ "\n" FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -uid 0x0002c9000100d050 smg (should be used when device is idle)" #endif "\n" FLINT_NAME " -d " MST_DEV_EXAMPLE4 " -guid 0x0002c9000100d050 -mac 0x0002c900d050 smg (should be used when device is idle)"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 2; _cmdType = SC_Smg; _ops = NULL; memset(&_baseGuid, 0, sizeof(_baseGuid)); memset(&_info, 0, sizeof(_info)); memset(&(_baseGuid.num_of_guids_pp), 0xff, sizeof(_baseGuid.num_of_guids_pp)); memset(&(_baseGuid.step_size_pp), 0xff, sizeof(_baseGuid.step_size_pp)); _baseGuid.use_pp_attr = 1; } SmgSubCommand::~SmgSubCommand() {} bool SmgSubCommand::verifyParams() { if (!_flintParams.uid_specified && !_flintParams.guid_specified && !_flintParams.mac_specified) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "\"-uid or -guid/-mac\" flags"); return false; } if (_flintParams.guids_specified) { reportErr(true, FLINT_INVALID_OPTION_ERROR, "\"-guids\"", _name.c_str(), "\"-guid\""); return false; } if (_flintParams.macs_specified) { reportErr(true, FLINT_INVALID_OPTION_ERROR, "\"-macs\"", _name.c_str(), "\"-mac\""); return false; } if (_flintParams.uid_specified && (_flintParams.guid_specified || _flintParams.mac_specified)) { reportErr(true, FLINT_INVALID_FLAG_WITH_FLAG_ERROR, "\"-uid\"", "\"-guid\"/-mac\""); return false; } if (_flintParams.cmd_params.size() != 0 && _flintParams.cmd_params.size() != 2) { reportErr(true, FLINT_CMD_ARGS_ERROR4, _name.c_str(), 0, 2, (int)_flintParams.cmd_params.size()); return false; } if (_flintParams.cmd_params.size() == 2 && !extractUIDArgs(_flintParams.cmd_params, _baseGuid.num_of_guids_pp, _baseGuid.step_size_pp)) { return false; } if (_flintParams.uid_specified) { _baseGuid.set_mac_from_guid = true; } _baseGuid.base_guid_specified = _flintParams.uid_specified || _flintParams.guid_specified; if (_baseGuid.base_guid_specified) { _baseGuid.base_guid = _flintParams.uid_specified ? _flintParams.baseUid : _flintParams.user_guids[0]; } _baseGuid.base_mac_specified = _flintParams.mac_specified; if (_baseGuid.base_mac_specified) { _baseGuid.base_mac = _flintParams.user_macs[0]; } // printf("-D-"GUID_FORMAT"\n", _baseGuid.h, _baseGuid.l); return true; } FlintStatus SmgSubCommand::executeCommand() { if (preFwOps()) { return FLINT_FAILED; } _ops = _flintParams.device_specified ? _fwOps : _imgOps; // TODO: dispaly MFG guid changes bool stripedImage = _flintParams.striped_image && _flintParams.image_specified; if (!_ops->FwQuery(&_info, true, stripedImage)) { reportErr(true, FLINT_MFG_ERROR, _ops->err()); return FLINT_FAILED; } if (_info.fw_info.chip_type == CT_CONNECT_IB || _info.fw_info.chip_type == CT_SWITCH_IB) { if (!_flintParams.uid_specified) { reportErr(true, "Can not set GUIDs/MACs: uid is not specified, please run with -uid flag.\n"); return FLINT_FAILED; } } else { if (!_flintParams.uid_specified && !_flintParams.guid_specified && !_flintParams.mac_specified) { reportErr(true, "Can not set GUIDs/MACs: GUIDs/MACs are not specified, please run with -uid/-guid/-mac flags.\n"); return FLINT_FAILED; } } bool ret; ret = _ops->FwSetMFG(_baseGuid, &verifyCbFunc); if (!ret) { reportErr(true, FLINT_MFG_ERROR, _ops->err()); return FLINT_FAILED; } if (_flintParams.device_specified && _info.fw_type != FIT_FS2) { printf("-I- %s\n", FW_RESET_MSG); } return FLINT_SUCCESS; } /*********************** * Class: Set Attestation Cert Chain Subcommand **********************/ SetCertChainSubCommand::SetCertChainSubCommand() { _name = "set attestation certificate chain"; _desc = "Set read-only attestation certificate chain (For FS4 image only)."; _extendedDesc = "Set Read-only attestation certificate chain, Set attestation certificate chain in the given FS4 " "image, intended for production use only."; _flagLong = "set_attestation_cert_chain"; _flagShort = ""; _param = ""; _paramExp = "Certificate chain file: bin file containing the certificate chain data"; _example = FLINT_NAME " -i fw_image.bin set_attestation_cert_chain cert_chain.bin" #ifndef __WIN__ "\n" FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -override_cache_replacement set_attestation_cert_chain cert_chain.bin (should be used when device is idle)" #endif ; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Set_Cert_Chain; } FlintStatus SetCertChainSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _flintParams.device_specified ? _fwOps : _imgOps; if (!ops->FwSetCertChain((char*)_flintParams.cmd_params[0].c_str(), _flintParams.cert_chain_index, &verifyCbFunc)) { reportErr(true, FLINT_CERT_CHAIN_ERROR, ops->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: Set Vpd Subcommand **********************/ SetVpdSubCommand::SetVpdSubCommand() { _name = "set vpd"; _desc = "Set read-only VPD (For FS3/FS4 image only)."; _extendedDesc = "Set Read-only VPD, Set VPD in the given FS3/FS4 image, intended for production use only."; _flagLong = "set_vpd"; _flagShort = ""; _param = ""; _paramExp = "vpd file: bin file containing the vpd data"; _example = FLINT_NAME " -i fw_image.bin set_vpd vpd.bin" #ifndef __WIN__ "\n" FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -override_cache_replacement set_vpd vpd.bin (should be used when device is idle)" #endif ; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Set_Vpd; } FlintStatus SetVpdSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _flintParams.device_specified ? _fwOps : _imgOps; if (!ops->FwSetVPD((char*)_flintParams.cmd_params[0].c_str(), &verifyCbFunc)) { reportErr(true, FLINT_VPD_ERROR, ops->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: SetPublicKeysSubcommand **********************/ SetPublicKeysSubCommand::SetPublicKeysSubCommand() { _name = "set public keys"; _desc = "Set Public Keys (For FS3/FS4 image only)."; _extendedDesc = "Set Public Keys in the given FS3/FS4 image."; _flagLong = "set_public_keys"; _flagShort = ""; _param = ""; _paramExp = "public keys file: bin file containing the public keys data"; _example = FLINT_NAME " -i fw_image.bin set_public_keys publickeys.bin"; _v = Wtv_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Set_Public_Keys; } SetPublicKeysSubCommand::~SetPublicKeysSubCommand() {} FlintStatus SetPublicKeysSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _imgOps; if (!ops->FwSetPublicKeys((char*)_flintParams.cmd_params[0].c_str(), &verifyCbFunc)) { reportErr(true, FLINT_SET_PUBLIC_KEYS_ERROR, ops->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: SetForbiddenVersionsSubcommand **********************/ SetForbiddenVersionsSubCommand::SetForbiddenVersionsSubCommand() { _name = "set forbidden versions"; _desc = "Set Forbidden Versions (For FS3/FS4 image only)."; _extendedDesc = "Set Forbidden Versions in the given FS3/FS4 image."; _flagLong = "set_forbidden_versions"; _flagShort = ""; _param = "[forbidden versions binary file]"; _paramExp = "forbidden versions file: bin file containing the forbidden versions data"; _example = FLINT_NAME " -i fw_image.bin set_forbidden_versions forbidden_versions.bin"; _v = Wtv_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Set_Forbidden_Versions; } SetForbiddenVersionsSubCommand::~SetForbiddenVersionsSubCommand() {} FlintStatus SetForbiddenVersionsSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _imgOps; if (!ops->FwSetForbiddenVersions((char*)_flintParams.cmd_params[0].c_str(), &verifyCbFunc)) { reportErr(true, FLINT_SET_FORBIDDEN_VERSIONS_ERROR, ops->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: Set VSD **********************/ SvSubCommand::SvSubCommand() { _name = "sv"; _desc = "Set the VSD."; _extendedDesc = "Set VSD in the given device/image.\n" "Use -vsd flag to set the desired VSD string."; _flagLong = "sv"; _flagShort = ""; _param = ""; _paramExp = "None"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -vsd VSD_STRING sv" #ifndef __WIN__ "\n" FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -vsd VSD_STRING -override_cache_replacement sv (should be used when device is idle)\n" #endif ; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 0; _cmdType = SC_Sv; } SvSubCommand::~SvSubCommand() {} bool SvSubCommand::verifyParams() { if (!_flintParams.vsd_specified) { reportErr(true, FLINT_COMMAND_FLAGS_ERROR, _name.c_str(), "\"-vsd\""); return false; } // we verify that -vsd has a parameter in the cmd parser return true; } FlintStatus SvSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _flintParams.device_specified ? _fwOps : _imgOps; if (!ops->FwSetVSD((char*)_flintParams.vsd.c_str(), &vsdCbFunc, &verifyCbFunc)) { reportErr(true, FLINT_VSD_ERROR, ops->err()); return FLINT_FAILED; } if (ops->FwType() == FIT_FS2) { // print "restoring signature" on FS2 to be consistent with FS3 output vsdCbFunc(101); } return FLINT_SUCCESS; } /******************************* * Class: Read Image SubCommand ******************************/ RiSubCommand::RiSubCommand() { _name = "ri"; _desc = "Read the fw image on the flash."; _extendedDesc = "Read the FW image from flash and write it to a file."; _flagLong = "ri"; _flagShort = ""; _param = ""; _paramExp = "file: filename to write the image to (raw binary)."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " ri file.bin"; _v = Wtv_Dev; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Ri; _mccSupported = false; // Read image isn't supported by MCC flow since it can't read Device area (DTOC and its sections) } RiSubCommand::~RiSubCommand() {} FlintStatus RiSubCommand::executeCommand() { // init fw operation object if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } // Check if we have permission to write to file FILE* fh; if ((fh = fopen(_flintParams.cmd_params[0].c_str(), "wb")) == NULL) { reportErr(true, "Can not open %s: %s\n", _flintParams.cmd_params[0].c_str(), strerror(errno)); return FLINT_FAILED; } else { fclose(fh); } u_int32_t imgSize; // on first call we get the image size if (!_fwOps->FwReadData(NULL, &imgSize)) { reportErr(true, FLINT_IMAGE_READ_ERROR, _fwOps->err()); return FLINT_FAILED; } std::vector imgBuff(imgSize); // on second call we fill it if (!_fwOps->FwReadData((void*)(&imgBuff[0]), &imgSize)) { reportErr(true, FLINT_IMAGE_READ_ERROR, _fwOps->err()); return FLINT_FAILED; } FlintStatus writeImageRes = writeImageToFile(_flintParams.cmd_params[0].c_str(), &(imgBuff[0]), imgSize); return writeImageRes; } /*********************** * Class: Dump Conf SubCommand **********************/ DcSubCommand::DcSubCommand() { _name = "dc"; _desc = "Dump Configuration: print fw configuration file for the given image."; _extendedDesc = "Print (to screen or to a file) the FW configuration text file used by the image generation process.\n" "This command would fail if the image does not contain a FW configuration section." " Existence of this section depends on the version of the image generation tool."; _flagLong = "dc"; _flagShort = ""; _param = ""; _paramExp = "file: (optional) filename to write the dumped configuration to. If not given," " the data is printed to screen"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " dc"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _cmdType = SC_Dc; } DcSubCommand::~DcSubCommand() {} bool DcSubCommand::verifyParams() { if (_flintParams.cmd_params.size() > 1) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } return true; } FlintStatus DcSubCommand::executeCommand() { FwOperations* ops; // init fw operation object if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } // check on what we are wroking ops = (_flintParams.device_specified) ? _fwOps : _imgOps; const char* file = _flintParams.cmd_params.size() == 1 ? _flintParams.cmd_params[0].c_str() : (const char*)NULL; if (!ops->FwGetSection((ops->FwType() == FIT_FS2) ? (int)H_FW_CONF : (int)FS3_DBG_FW_INI, _sect, _flintParams.striped_image)) { reportErr(true, FLINT_DUMP_ERROR, "Fw Configuration", ops->err()); return FLINT_FAILED; } if (!dumpFile(file, _sect, "Fw Configuration")) { return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class:Dump Hash SubCommand **********************/ DhSubCommand::DhSubCommand() { _name = "dh"; _desc = "Dump Hash: dump the hash if it is integrated in the FW image"; _extendedDesc = "Print (to screen or to a file) the HASH text file used by the FW.\n" "This command would fail if the image does not contain a Hash file."; _flagLong = "dh"; _flagShort = ""; _param = ""; _paramExp = "file - (optional) filename to write the dumped tracer hash file to. If not given," " the data is printed to screen"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " dh hash.csv"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _cmdType = SC_Dh; } DhSubCommand::~DhSubCommand() {} bool DhSubCommand::verifyParams() { if (_flintParams.cmd_params.size() > 1) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } return true; } FlintStatus DhSubCommand::executeCommand() { FwOperations* ops; // init fw operation object if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } // check on what we are wroking ops = (_flintParams.device_specified) ? _fwOps : _imgOps; const char* file = _flintParams.cmd_params.size() == 1 ? _flintParams.cmd_params[0].c_str() : (const char*)NULL; if (!ops->FwGetSection(H_HASH_FILE, _sect, _flintParams.striped_image)) { reportErr(true, FLINT_DUMP_ERROR, "Hash file", ops->err()); return FLINT_FAILED; } if (!dumpFile(file, _sect, "Fw Configuration")) { return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class:Set Key SubCommand **********************/ SetKeySubCommand::SetKeySubCommand() { _name = "set_key"; _desc = "Set/Update the HW access key which is used to enable/disable access to HW.\n" "The key can be provided in the command line or interactively typed after the command is given\n" "NOTE: The new key is activated only after the device is reset."; _extendedDesc = "Set/Update the HW access key which is used to enable/disable access to HW."; _flagLong = "set_key"; _flagShort = ""; _param = ""; _paramExp = "key: (optional) The new key you intend to set (in hex)."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " set_key 1234deaf5678"; _v = Wtv_Dev; _maxCmdParamNum = 1; _cmdType = SC_Set_Key; _getKeyInter = false; memset(&_userKey, 0, sizeof(_userKey)); } SetKeySubCommand::~SetKeySubCommand() {} bool SetKeySubCommand::verifyParams() { if (_flintParams.cmd_params.size() > 1) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } _getKeyInter = (_flintParams.cmd_params.size() == 0); return true; } bool SetKeySubCommand::getKeyInteractively() { char keyArr[MAX_PASSWORD_LEN + 1] = {0}; getPasswordFromUser("Enter Key ", keyArr); if (strlen(keyArr) == 0) { reportErr(true, FLINT_INVALID_PASSWORD); return false; } if (!getGUIDFromStr(keyArr, _userKey, "Invalid Key syntax, it should contain only hexa numbers and of appropriate length.")) { return false; } // verify key hw_key_t verKey; getPasswordFromUser("Verify Key ", keyArr); if (!getGUIDFromStr(keyArr, verKey, "Invalid Key syntax, it should contain only hexa numbers and of appropriate length.")) { return false; } if (_userKey.h != verKey.h || _userKey.l != verKey.l) { reportErr(true, FLINT_SET_KEY_ERROR, "The keys you entered did not match."); return false; } return true; } FlintStatus SetKeySubCommand::executeCommand() { if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } if (_getKeyInter) { if (!getKeyInteractively()) { return FLINT_FAILED; } } else { if (!getGUIDFromStr(_flintParams.cmd_params[0], _userKey, "Invalid Key syntax, it should contain only hexa numbers and of appropriate length.")) { return FLINT_FAILED; } } if (((Flash*)_io)->is_fifth_gen()) { if (((Flash*)_io)->get_cr_space_locked()) { printf("-I- HW access already disabled\n"); return FLINT_SUCCESS; } // In 5th gen treat set as disable hw access u_int64_t key = ((u_int64_t)_userKey.h << 32) | _userKey.l; if (!((Flash*)_io)->disable_hw_access(key)) { reportErr(true, FLINT_GEN_COMMAND_ERROR, _name.c_str(), _io->err()); return FLINT_FAILED; } printf("-I- Secure Host was enabled successfully on the device.\n"); } else { _io->close(); delete _io; _io = NULL; if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (!_fwOps->FwSetAccessKey(_userKey, &setKeyCbFunc)) { reportErr(true, FLINT_SET_KEY_ERROR, _fwOps->err()); return FLINT_FAILED; } setKeyCbFunc(101); printf("\n-I- New key was updated successfully in the flash. " "In order to activate the new key you should reboot or restart the driver.\n"); } return FLINT_SUCCESS; } /*********************** * Class:HwAccess SubCommand **********************/ HwAccessSubCommand::HwAccessSubCommand() { _name = "hw_access"; _desc = "Enable/disable the access to the HW.\n" "The key can be provided in the command line or interactively typed after the command is given"; _extendedDesc = "Enable/disable the access to the HW."; _flagLong = "hw_access"; _flagShort = ""; _param = "[enable/disable] "; _paramExp = ": Specify if you intend to disable or enable the HW access.\n" "You will be asked to type a key when you try to enable HW access.\n" "key: The key you intend to use for enabling the HW access, or disabling it in 5th Gen devices.\n" "Key format consists of at most 16 Hexadecimal digits."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " hw_access enable"; _v = Wtv_Dev; _maxCmdParamNum = 2; _cmdType = SC_Hw_Access; } HwAccessSubCommand::~HwAccessSubCommand() {} bool HwAccessSubCommand::verifyParams() { if (_flintParams.cmd_params.size() == 0) { reportErr(true, FLINT_MISSED_ARG_ERROR, "", _name.c_str()); return false; } if (_flintParams.cmd_params.size() > 2) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 2, (int)_flintParams.cmd_params.size()); return false; } if (_flintParams.cmd_params[0] != "enable" && _flintParams.cmd_params[0] != "disable") { reportErr(true, FLINT_INVALID_OPTION_ERROR, _flintParams.cmd_params[0].c_str(), _name.c_str(), "enable or disable"); return false; } return true; } FlintStatus HwAccessSubCommand::disableHwAccess() { if (((Flash*)_io)->get_cr_space_locked()) { printf("-I- HW access already disabled\n"); } else { if (((Flash*)_io)->is_fifth_gen()) { SubCommand* setKey = new SetKeySubCommand(); _flintParams.cmd_params.erase(_flintParams.cmd_params.begin()); setKey->setParams(_flintParams); FlintStatus rc = setKey->executeCommand(); delete setKey; return rc; } else { if (!((Flash*)_io)->disable_hw_access()) { printf(FLINT_GEN_COMMAND_ERROR, _name.c_str(), _io->err()); return FLINT_FAILED; } } } return FLINT_SUCCESS; } FlintStatus HwAccessSubCommand::enableHwAccess() { u_int64_t key; if (((Flash*)_io)->get_cr_space_locked() == 0) { printf("-I- HW access already enabled\n"); } else { hw_key_t keyStruct; // now we need to get the key from the user (either given in the parameters or we get it during runtime) if (_flintParams.cmd_params.size() == 2) { if (!getGUIDFromStr(_flintParams.cmd_params[1], keyStruct, "Invalid Key syntax, it should contain only hexa numbers and of appropriate length.")) { return FLINT_FAILED; } } else { // we need to get the key from user during runtime char keyArr[MAX_PASSWORD_LEN + 1] = {0}; getPasswordFromUser("Enter Key ", keyArr); if (strlen(keyArr) == 0) { reportErr(true, FLINT_INVALID_PASSWORD); return FLINT_FAILED; } if (!getGUIDFromStr(keyArr, keyStruct, "Invalid Key syntax, it should contain only hexa numbers and of appropriate length.")) { return FLINT_FAILED; } } key = ((u_int64_t)keyStruct.h << 32) | keyStruct.l; if (!((Flash*)_io)->enable_hw_access(key)) { reportErr(true, FLINT_GEN_COMMAND_ERROR, _name.c_str(), _io->err()); return FLINT_FAILED; } printf("-I- The Secure Host was disabled successfully on the device.\n"); } return FLINT_SUCCESS; } FlintStatus HwAccessSubCommand::executeCommand() { if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } if (_flintParams.cmd_params[0] == "disable") { return disableHwAccess(); } // else its enable hw access return enableHwAccess(); } /*********************** * Class: Hw SubCommand **********************/ HwSubCommand::HwSubCommand() { #ifndef EXTERNAL _name = "hw"; _desc = "Set/query HW info and flash attributes."; _extendedDesc = "Access HW info and flash attributes."; _flagLong = "hw"; _flagShort = ""; _param = "[query/set] "; _paramExp = "query: query HW info\n" "set [ATTR=VAL]: set flash attribure\n" "Supported attributes:\n" " QuadEn: can be 0 or 1\n" " DummyCycles: can be [1..15]\n" " Flash[0|1|2|3].WriteProtected can be:\n" " ,<1|2|4|8|16|32|64>-" " DriverStrength: can be [25,50,75,100]\n"; _example = "flint -d " MST_DEV_EXAMPLE1 " hw query\n" FLINT_NAME " -d " MST_DEV_EXAMPLE1 " hw set QuadEn=1\n" FLINT_NAME " -d " MST_DEV_EXAMPLE1 " hw set Flash1.WriteProtected=Top,1-SubSectors"; #else _name = "Hw"; _desc = "Query HW info and flash attributes."; _extendedDesc = "Query HW info and flash attributes."; _flagLong = "hw"; _flagShort = ""; _param = "query"; _paramExp = "query"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " hw query"; #endif _v = Wtv_Dev; _maxCmdParamNum = 2; _minCmdParamNum = 1; _cmdType = SC_Hw; } HwSubCommand::~HwSubCommand() {} bool HwSubCommand::verifyParams() { #ifdef EXTERNAL if (_flintParams.cmd_params[0] != "query") { reportErr(true, FLINT_INVALID_OPTION_ERROR, _flintParams.cmd_params[0].c_str(), _name.c_str(), "query"); return false; } if (_flintParams.cmd_params.size() != 1) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 1, (int)_flintParams.cmd_params.size()); return false; } #else if (_flintParams.cmd_params.size() > 2 || _flintParams.cmd_params.size() == 0) { reportErr(true, FLINT_CMD_ARGS_ERROR2, _name.c_str(), 2, (int)_flintParams.cmd_params.size()); return false; } if ((_flintParams.cmd_params[0] != "query") && (_flintParams.cmd_params[0] != "set")) { reportErr(true, FLINT_INVALID_OPTION_ERROR, _flintParams.cmd_params[0].c_str(), _name.c_str(), "query or set"); return false; } if ((_flintParams.cmd_params[0] == "set") && (_flintParams.cmd_params.size() != 2)) { reportErr(true, FLINT_CMD_ARGS_ERROR, _name.c_str(), 2, (int)_flintParams.cmd_params.size()); return false; } #endif return true; } FlintStatus HwSubCommand::printAttr(const ext_flash_attr_t& attr) { printf("HW Info:\n"); printf(" HwDevId %d\n", attr.hw_dev_id); printf(" HwRevId 0x%x\n", attr.rev_id); printf("Flash Info:\n"); if (attr.type_str != NULL) { // we don't print the flash type in old devices printf(" Type %s\n", attr.type_str); } printf(" TotalSize 0x%x\n", attr.size); printf(" Banks 0x%x\n", attr.banks_num); printf(" SectorSize 0x%x\n", attr.sector_size); printf(" WriteBlockSize 0x%x\n", attr.block_write); printf(" CmdSet 0x%x\n", attr.command_set); // Quad EN query if (attr.quad_en_support) { switch (attr.mf_get_quad_en_rc) { case MFE_OK: printf(" " QUAD_EN_PARAM " %d\n", attr.quad_en); break; case MFE_MISMATCH_PARAM: printf("-E- There is a mismatch in the " QUAD_EN_PARAM " attribute between the flashes attached to the device\n"); break; case MFE_NOT_SUPPORTED_OPERATION: printf("Quad En not supported operation.\n"); break; case MFE_NOT_IMPLEMENTED: printf("Quad En not implemented.\n"); break; default: printf("Failed to get " QUAD_EN_PARAM " attribute: %s (%s)", errno == 0 ? "" : strerror(errno), mf_err2str(attr.mf_get_quad_en_rc)); return FLINT_FAILED; } } // Dummy Cycles query if (attr.dummy_cycles_support) { switch (attr.mf_get_dummy_cycles_rc) { case MFE_OK: printf(" " DUMMY_CYCLES_PARAM " %d\n", attr.dummy_cycles); break; case MFE_MISMATCH_PARAM: printf("-E- There is a mismatch in the " DUMMY_CYCLES_PARAM " attribute between the flashes attached to the device\n"); break; case MFE_NOT_SUPPORTED_OPERATION: break; default: printf("Failed to get " DUMMY_CYCLES_PARAM " attribute: %s (%s)", errno == 0 ? "" : strerror(errno), mf_err2str(attr.mf_get_dummy_cycles_rc)); return FLINT_FAILED; } } // Flash write protected info query if (attr.write_protect_support) { int bank; int rc; for (bank = 0; bank < attr.banks_num; bank++) { write_protect_info_t protect_info = attr.protect_info_array[bank]; rc = attr.mf_get_write_protect_rc_array[bank]; if (rc == MFE_OK) { printf(" " FLASH_NAME "%d." WRITE_PROTECT " ", bank); if (protect_info.sectors_num != 0) { printf("%s,", (protect_info.is_bottom ? WP_BOTTOM_STR : WP_TOP_STR)); printf("%d-", protect_info.sectors_num); printf("%s\n", (protect_info.is_subsector ? WP_SUBSEC_STR : WP_SEC_STR)); } else { printf(WP_DISABLED_STR "\n"); } } else { if (rc != MFE_NOT_SUPPORTED_OPERATION) { // We ignore the read when operation is not supported! printf("Failed to get write_protected info: %s (%s)", errno == 0 ? "" : strerror(errno), mf_err2str(rc)); return FLINT_FAILED; } } } } // Driver-strength query if (attr.driver_strength_support) { switch (attr.mf_get_driver_strength_rc) { case MFE_OK: printf(" " DRIVER_STRENGTH_PARAM " %d\n", attr.driver_strength); break; case MFE_MISMATCH_PARAM: printf("-E- There is a mismatch in the " DRIVER_STRENGTH_PARAM " attribute between the flashes attached to the device\n"); break; case MFE_NOT_SUPPORTED_OPERATION: printf("Driver-strength not supported operation.\n"); break; case MFE_NOT_IMPLEMENTED: printf("Driver-strength not implemented.\n"); break; case MFE_REG_ACCESS_METHOD_NOT_SUPP: printf("Driver-strength not supported by FW, retry with -ocr.\n"); break; default: printf("Failed to get " DRIVER_STRENGTH_PARAM " attribute: %s (%s)", errno == 0 ? "" : strerror(errno), mf_err2str(attr.mf_get_driver_strength_rc)); return FLINT_FAILED; } } printf(" JEDEC_ID 0x%06x\n", attr.jedec_id & 0xffffff); // JEDEC_ID is built from 3B, so we mask last byte return FLINT_SUCCESS; } FlintStatus HwSubCommand::executeCommand() { // init fw operation object if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } dm_dev_id_t devid_t; u_int32_t devid; u_int32_t revid; mfile* mf = ((Flash*)_io)->getMfileObj(); int rc = dm_get_device_id(mf, &devid_t, &devid, &revid); (void)devid; (void)revid; if (rc != 0) { reportErr(true, "HW command: can't get device Id"); return FLINT_FAILED; } if (_flintParams.cmd_params[0] == "set") { char* cmdParam = strcpy(new char[_flintParams.cmd_params[1].size() + 1], _flintParams.cmd_params[1].c_str()); char *paramName, *paramValStr; paramName = strtok(cmdParam, "="); paramValStr = strtok(NULL, "="); // printf("-D- param_name = %s, param_val_str=%s, cmdParam=%s\n", paramName, paramValStr, cmdParam); if (paramName == NULL || paramValStr == NULL) { delete[] cmdParam; reportErr(true, FLINT_HW_SET_ARGS_ERROR, _flintParams.cmd_params[1].c_str()); return FLINT_FAILED; } if (!((Flash*)_io)->set_attr(paramName, paramValStr)) { delete[] cmdParam; reportErr(true, FLINT_HW_COMMAND_ERROR, "set", _io->err()); return FLINT_FAILED; } printf("-I- %s parameter was set successfully\n", paramName); delete[] cmdParam; } else { ext_flash_attr_t attr; attr.type_str = (char*)NULL; if (!((Flash*)_io)->get_attr(attr)) { reportErr(true, FLINT_HW_COMMAND_ERROR, "query", _io->err()); if (attr.type_str) { delete[] attr.type_str; } return FLINT_FAILED; } FlintStatus rc = printAttr(attr); // str is allocated in get_attr if (attr.type_str) { delete[] attr.type_str; } if (rc == FLINT_FAILED) { return FLINT_FAILED; } } return FLINT_SUCCESS; } /************************** * Class: Erase SubCommand *************************/ EraseSubCommand::EraseSubCommand() { _name = "erase"; _desc = "Erases sector."; _extendedDesc = "Erases a sector that contains specified address."; _flagLong = "erase"; _flagShort = "e"; _param = ""; _paramExp = "addr - address of word in sector that you want to erase."; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " erase 0x10000"; _v = Wtv_Dev; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Erase; } EraseSubCommand::~EraseSubCommand() {} FlintStatus EraseSubCommand::executeCommand() { if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } u_int32_t addr; char* addrStr = strcpy(new char[_flintParams.cmd_params[0].size() + 1], _flintParams.cmd_params[0].c_str()); char* endp; // Address of sector to erase addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, _flintParams.cmd_params[0].c_str()); delete[] addrStr; return FLINT_FAILED; } delete[] addrStr; // Erase if (!((Flash*)_io)->erase_sector(addr)) { reportErr(true, FLINT_ERASE_SEC_ERROR, _io->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } /***************************** * Class: Read Dword SubCommand *****************************/ RwSubCommand::RwSubCommand() { _name = "rw"; _desc = "Read one dword from flash"; _extendedDesc = "Read one dword from flash."; _flagLong = "rw"; _flagShort = ""; _param = ""; _paramExp = "addr - address of word to read"; _example = "flint -d " MST_DEV_EXAMPLE1 " rw 0x20"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 1; _minCmdParamNum = 1; _cmdType = SC_Rw; } RwSubCommand::~RwSubCommand() {} FlintStatus RwSubCommand::executeCommand() { if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } u_int32_t addr; u_int32_t data; char* addrStr = strcpy(new char[_flintParams.cmd_params[0].size() + 1], _flintParams.cmd_params[0].c_str()); char* endp; addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, _flintParams.cmd_params[0].c_str()); delete[] addrStr; return FLINT_FAILED; } delete[] addrStr; if (_flintParams.device_specified ? !((Flash*)_io)->read(addr, &data) : !((FImage*)_io)->read(addr, &data)) { reportErr(true, FLINT_FLASH_READ_ERROR, _io->err()); return FLINT_FAILED; } printf("0x%08x\n", (unsigned int)__cpu_to_be32(data)); return FLINT_SUCCESS; } /****************************** * Class: Write Dword Subcommand ******************************/ WwSubCommand::WwSubCommand() { _name = "ww"; _desc = "Write one dword to flash"; _extendedDesc = "Write one dword to flash.\n" "Note that the utility will read an entire flash sector," " modify one word and write the sector back. This may take a few seconds."; _flagLong = "ww"; _flagShort = ""; _param = " "; _paramExp = "addr - address of word\n" "data - value of word"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " ww 0x10008 0x5a445a44"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 2; _minCmdParamNum = 2; _cmdType = SC_Ww; } WwSubCommand::~WwSubCommand() {} FlintStatus WwSubCommand::executeCommand() { // init fw operation object if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } u_int32_t addr; u_int32_t data; char* addrStr = strcpy(new char[_flintParams.cmd_params[0].size() + 1], _flintParams.cmd_params[0].c_str()); char* dataStr = strcpy(new char[_flintParams.cmd_params[1].size() + 1], _flintParams.cmd_params[1].c_str()); char* endp; addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, _flintParams.cmd_params[0].c_str()); delete[] addrStr; delete[] dataStr; return FLINT_FAILED; } data = strtoul(dataStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_DATA_ERROR, _flintParams.cmd_params[1].c_str()); delete[] addrStr; delete[] dataStr; return FLINT_FAILED; } delete[] addrStr; delete[] dataStr; data = __cpu_to_be32(data); // TODO - align below write function for Flash and FImage classes if (_io->is_flash()) { if (!((Flash*)_io)->write(addr, data)) { reportErr(true, FLINT_FLASH_WRITE_ERROR, _io->err()); return FLINT_FAILED; } } else { if (!_io->write(addr, &data, 0x4)) { reportErr(true, FLINT_FLASH_WRITE_ERROR, _io->err()); return FLINT_FAILED; } } return FLINT_SUCCESS; } /*************************************** * Class: Write Dword No Erase SubCommand ***************************************/ WwneSubCommand::WwneSubCommand() { _name = "wwne"; _desc = "Write one dword to flash without sector erase"; _extendedDesc = "Write one dword to flash without sector erase.\n" "Note that the result of operation is undefined and depends on flash type." " Usually \"bitwise AND\" (&) between specified word and previous flash contents will be" " written to specified address."; _flagLong = "wwne"; _flagShort = ""; _param = " "; _paramExp = "addr - address of word\n" "data - value of word"; _example = "flint -d " MST_DEV_EXAMPLE1 " wwne 0x10008 0x5a445a44"; _v = Wtv_Dev; _maxCmdParamNum = 2; _minCmdParamNum = 2; _cmdType = SC_Wwne; } WwneSubCommand::~WwneSubCommand() {} FlintStatus WwneSubCommand::executeCommand() { // init fw operation object if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } u_int32_t addr; u_int32_t data; char* addrStr = strcpy(new char[_flintParams.cmd_params[0].size() + 1], _flintParams.cmd_params[0].c_str()); char* dataStr = strcpy(new char[_flintParams.cmd_params[1].size() + 1], _flintParams.cmd_params[1].c_str()); char* endp; addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, _flintParams.cmd_params[0].c_str()); delete[] addrStr; delete[] dataStr; return FLINT_FAILED; } data = strtoul(dataStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_DATA_ERROR, _flintParams.cmd_params[1].c_str()); delete[] addrStr; delete[] dataStr; return FLINT_FAILED; } delete[] addrStr; delete[] dataStr; data = __cpu_to_be32(data); if (!((Flash*)_io)->write(addr, &data, 4, true)) { reportErr(true, FLINT_FLASH_WRITE_ERROR, _io->err()); return FLINT_FAILED; } return FLINT_SUCCESS; } /************************************** * Class:Write Block SubCommand **************************************/ WbSubCommand::WbSubCommand() { _name = "wb"; _desc = "Write a data block to flash."; _extendedDesc = "Write a block of data to the flash."; _flagLong = "wb"; _flagShort = ""; _param = " "; _paramExp = "data-file - file that contains the data to be written\n" "addr - address to write the block to\n"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " wb myData.bin 0x0"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 2; _minCmdParamNum = 2; _cmdType = SC_Wb; } WbSubCommand::~WbSubCommand() {} bool WbSubCommand::extractData(const std::vector& cmdParams, u_int32_t* addr, std::vector& data) { // get address char* endp; char* addrStr = strcpy(new char[cmdParams[1].size() + 1], cmdParams[1].c_str()); *addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, cmdParams[1].c_str()); delete[] addrStr; return false; } delete[] addrStr; // get data FImage img; if (!img.open(cmdParams[0].c_str())) { reportErr(true, FLINT_WB_FILE_ERROR, cmdParams[0].c_str(), img.err()); return false; } // copy data to vector data.resize(img.getBufLength()); if (!img.getBuf()) { reportErr(true, FLINT_IMAGE_READ_ERROR, img.err()); return false; } memcpy(&data[0], img.getBuf(), img.getBufLength()); return true; } FlintStatus WbSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } u_int32_t addr; std::vector data; if (!extractData(_flintParams.cmd_params, &addr, data)) { return FLINT_FAILED; } // printf("-D- writing to addr:0x%08x %lu bytes\n",addr , data.size()); FwOperations* ops; ops = (_flintParams.device_specified) ? _fwOps : _imgOps; if (!ops->FwWriteBlock(addr, data, wbCbFunc)) { reportErr(true, FLINT_WB_ERROR, ops->err()); return FLINT_FAILED; } wbCbFunc(101); return FLINT_SUCCESS; } /************************************** * Class:Write Block No Erase SubCommand **************************************/ WbneSubCommand::WbneSubCommand() { _name = "wbne"; _desc = "Write a data block to flash without sector erase."; _extendedDesc = "Write a block of data to the flash without erasing."; _flagLong = "wbne"; _flagShort = ""; _param = " "; _paramExp = "addr - address of block\n" "size - size of data to write in bytes\n" "data - data to write - space separated dwords"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " wbne 0x10000 12 0x30000 0x76800 0x5a445a44"; _v = Wtv_Dev; _minCmdParamNum = 3; _cmdType = SC_Wbne; } WbneSubCommand::~WbneSubCommand() {} bool WbneSubCommand::writeBlock(u_int32_t addr, std::vector dataVec) { // we should work only on flash. // check if flash is big enough if (addr + (dataVec.size() * 4) > ((Flash*)_io)->get_effective_size()) { reportErr(true, "Writing %#x bytes from address %#x is out of flash limits (%#x bytes)\n", (unsigned int)(dataVec.size() * 4), (unsigned int)addr, (unsigned int)_io->get_effective_size()); return false; } if (!((Flash*)_io)->write(addr, &dataVec[0], (dataVec.size() * 4), true)) { reportErr(true, FLINT_FLASH_WRITE_ERROR, _io->err()); return false; } return true; } bool WbneSubCommand::extractData(const std::vector& cmdParams, u_int32_t* addr, std::vector& data) { char* endp; char* addrStr = strcpy(new char[cmdParams[0].size() + 1], cmdParams[0].c_str()); *addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, cmdParams[0].c_str()); delete[] addrStr; return false; } delete[] addrStr; char* sizeStr = strcpy(new char[cmdParams[1].size() + 1], cmdParams[1].c_str()); u_int32_t size = strtoul(sizeStr, &endp, 0); if (*endp || size % 4 || size / 4 != (cmdParams.size() - 2)) { reportErr(true, FLINT_INVALID_SIZE_ERROR, sizeStr); delete[] sizeStr; return false; } delete[] sizeStr; for (u_int32_t i = 2; i < cmdParams.size(); i++) { char* dataStr = strcpy(new char[cmdParams[i].size() + 1], cmdParams[i].c_str()); data.push_back(__cpu_to_be32(strtoul(dataStr, &endp, 0))); if (*endp) { reportErr(true, FLINT_INVALID_DATA_ERROR, dataStr); delete[] dataStr; return false; } delete[] dataStr; } return true; } FlintStatus WbneSubCommand::executeCommand() { if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } u_int32_t addr; std::vector data; if (!extractData(_flintParams.cmd_params, &addr, data)) { return FLINT_FAILED; } // printf("-D- writing to addr:0x%08x %lu bytes\n",addr , data.size()*4); if (!writeBlock(addr, data)) { return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: ReadBlock **********************/ RbSubCommand::RbSubCommand() { _name = "rb"; _desc = "Read a data block from flash"; _extendedDesc = "Read a data block from the flash and write it to a file or to screen."; _flagLong = "rb"; _flagShort = ""; _param = " "; _paramExp = "addr - address of block\n" "size - size of data to read in bytes\n" "file - filename to write the block (raw binary). If not given, the data is printed to screen"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " rb 0x10000 100 file.bin"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 3; _minCmdParamNum = 2; _cmdType = SC_Rb; } RbSubCommand::~RbSubCommand() {} bool RbSubCommand::readBlock(u_int32_t addr, std::vector& buff, bool isFlash) { FwOperations* ops = isFlash ? _fwOps : _imgOps; if (!ops->FwReadBlock(addr, buff.size(), buff)) { reportErr(true, FLINT_IMAGE_READ_ERROR, ops->err()); return false; } return true; } bool RbSubCommand::printToScreen(const std::vector& buff, bool hexdump_format) { if (hexdump_format) { for (u_int32_t i = 0; i < buff.size(); i += 16) { // Print addr printf("%08x ", i); // Print bytes for (u_int32_t j = 0; (j < 16) && (i + j < buff.size()); j++) { printf("%02x ", buff[i + j]); if (j == 7) printf(" "); } // Print ASCII printf(" |"); for (u_int32_t j = 0; (j < 16) && (i + j < buff.size()); j++) { printf("%c", isprint(buff[i + j]) ? buff[i + j] : '.'); } // Print new line printf("|\n"); } } else { for (u_int32_t i = 0; i < buff.size(); i += 4) { u_int32_t word = *((u_int32_t*)(&buff[0] + i)); word = __be32_to_cpu(word); printf("0x%08x ", word); } } printf("\n"); return true; } FlintStatus RbSubCommand::executeCommand() { // init fw operation object if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } bool wTF = _flintParams.cmd_params.size() == 3 ? true : false; // extract address and size to read from cmdline u_int32_t addr; u_int32_t size; char* endp; char* addrStr = strcpy(new char[_flintParams.cmd_params[0].size() + 1], _flintParams.cmd_params[0].c_str()); addr = strtoul(addrStr, &endp, 0); if (*endp) { reportErr(true, FLINT_INVALID_ADDR_ERROR, _flintParams.cmd_params[0].c_str()); delete[] addrStr; return FLINT_FAILED; } delete[] addrStr; char* sizeStr = strcpy(new char[_flintParams.cmd_params[1].size() + 1], _flintParams.cmd_params[1].c_str()); size = strtoul(sizeStr, &endp, 0); if (*endp || size % 4) { reportErr(true, FLINT_INVALID_SIZE_ERROR, sizeStr); delete[] sizeStr; return FLINT_FAILED; } delete[] sizeStr; // init byte vector and fill it with data std::vector data(size); if (!readBlock(addr, data, _flintParams.device_specified)) { return FLINT_FAILED; } // print either to file or to screen FlintStatus rc; if (wTF) { rc = writeToFile(_flintParams.cmd_params[2], data) == true ? FLINT_SUCCESS : FLINT_FAILED; } else { rc = printToScreen(data, _flintParams.hexdump_format) == true ? FLINT_SUCCESS : FLINT_FAILED; } return rc; } /*********************** * Class: ClearSemaphore **********************/ ClearSemSubCommand::ClearSemSubCommand() { _name = "clear_semaphore"; _desc = "Clear flash semaphore."; _extendedDesc = "Clear flash semaphore."; _flagLong = "clear_semaphore"; _flagShort = ""; _param = ""; _paramExp = ""; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -clear_semaphore"; _v = Wtv_Dev; _maxCmdParamNum = 0; _cmdType = SC_Clear_Sem; } ClearSemSubCommand::~ClearSemSubCommand() {} FlintStatus ClearSemSubCommand::executeCommand() { _flintParams.clear_semaphore = true; return preFwAccess(); } /*********************** * Class: RomQuery **********************/ RomQuerySubCommand::RomQuerySubCommand() { _name = "qrom"; _desc = "query ROM image."; _extendedDesc = "query ROM image."; _flagLong = "qrom"; _flagShort = ""; _param = ""; _paramExp = ""; _example = FLINT_NAME " -i ROM_image.bin qrom "; _v = Wtv_Img; _maxCmdParamNum = 0; _cmdType = SC_Qrom; memset(&_romsInfo, 0, sizeof(_romsInfo)); } RomQuerySubCommand::~RomQuerySubCommand() {} FlintStatus RomQuerySubCommand::executeCommand() { if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } getRomsInfo(_io, _romsInfo); if (_romsInfo.exp_rom_err_msg_valid != 0) { reportErr(true, FLINT_ROM_QUERY_ERROR, _flintParams.image.c_str(), _romsInfo.exp_rom_err_msg); return FLINT_FAILED; } displayExpRomInfo(_romsInfo, "Rom Info: "); return FLINT_SUCCESS; } /*********************** * Class: ResetCfg **********************/ ResetCfgSubCommand::ResetCfgSubCommand() { _name = "reset_cfg"; _desc = "reset non-volatile configuration."; _extendedDesc = "reset non-volatile configuration to their default value."; _flagLong = "reset_cfg"; _flagShort = "r"; _param = ""; _paramExp = ""; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " reset_cfg"; _v = Wtv_Dev; _maxCmdParamNum = 0; _cmdType = SC_ResetCfg; } ResetCfgSubCommand::~ResetCfgSubCommand() {} FlintStatus ResetCfgSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } printf("-W- Resetting device configuration using Flint should be done as a last resort.\n"); printf("-W- Please attempt to reset configuration via mlxconfig tool if possible.\n"); printf("-W- Only proceed if you know what you are doing.\n"); if (!askUser("reset non-volatile configuration")) { return FLINT_FAILED; } printf("Resetting..."); if (!_fwOps->FwResetNvData()) { printf(" Failed!\n"); reportErr(true, FLINT_RESET_CFG_ERROR, _fwOps->err()); return FLINT_FAILED; } printf(" SUCCESS!\n"); printf("\n-I- Configuration were successfully reset. reboot or restart the driver is required.\n"); return FLINT_SUCCESS; } /*********************** * Class: FixImage **********************/ FiSubCommand::FiSubCommand() { _name = "fix image"; _desc = "fix image on N25Q0XX flash."; _extendedDesc = "fix image on N25Q0XX flash.(shifting all device data sectors)"; _flagLong = "fi"; _flagShort = ""; _param = ""; _paramExp = ""; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " fi"; _v = Wtv_Dev; _maxCmdParamNum = 0; _cmdType = SC_Fix_Img; } FiSubCommand::~FiSubCommand() {} FlintStatus FiSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (!askUser("Fix device fw?")) { return FLINT_FAILED; } if (!_fwOps->FwShiftDevData(&verifyCbFunc)) { reportErr(true, FLINT_FIX_IMG_ERROR, _fwOps->err()); return FLINT_FAILED; } printf("\n-I- Fw was successfully fixed. reboot or restart the driver is required.\n"); return FLINT_SUCCESS; } /*********************** * Class: CheckSum **********************/ CheckSumSubCommand::CheckSumSubCommand() { _name = "checksum"; _desc = "perform MD5 checksum on FW."; _extendedDesc = "perform an MD5 checksum on relevant(non-persistent between FW upgrades) data on device/image."; _flagLong = "checksum"; _flagShort = "cs"; _param = ""; _paramExp = ""; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " checksum"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 0; _cmdType = SC_Check_Sum; memset(_checkSum, 0, sizeof(_checkSum)); } CheckSumSubCommand::~CheckSumSubCommand() {} bool CheckSumSubCommand::extractChecksumFromStr(string str, u_int8_t checkSum[16]) { char ptr[2]; int i = 15; if (str.size() < 2) { reportErr(true, FLINT_CHECKSUM_LEN_ERROR); return false; } if (!strncasecmp(str.c_str(), "0x", 2)) { // str starts with 0x or 0X, remove prefix str = &(str.c_str()[2]); } if (str.size() != 32) { reportErr(true, FLINT_CHECKSUM_LEN_ERROR); return false; } stringstream ss(str); while (i >= 0) { ss.read(ptr, 2); if (!isxdigit(ptr[0]) || !isxdigit(ptr[1])) { reportErr(true, FLINT_CHECKSUM_HEX_ERROR); return false; } checkSum[i] = (u_int8_t)strtoul(ptr, NULL, 16); if (!checkSum[i] && strncmp(ptr, "00", 2)) { reportErr(true, FLINT_CHECKSUM_PARSE_ERROR); return false; } i--; } return true; } string CheckSumSubCommand::checkSum2Str(u_int8_t chksm[16]) { stringstream ss; for (int i = 15; i >= 0; i--) { char chunk[3]; snprintf(chunk, 3, "%02x", chksm[i]); ss << chunk; } string s = ss.str(); return s; } FlintStatus CheckSumSubCommand::executeCommand() { if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } FwOperations* ops = _fwOps ? _fwOps : _imgOps; printf("-I- Calculating Checksum ...\n"); if (!ops->FwCalcMD5(_checkSum)) { reportErr(true, FLINT_CHECKSUM_ERROR, (_flintParams.device_specified ? "device" : "image"), ops->err()); return FLINT_FAILED; } // just print it! printf("Checksum: %s\n", checkSum2Str(_checkSum).c_str()); return FLINT_SUCCESS; } /*********************** * Class: TimeStamp **********************/ TimeStampSubCommand::TimeStampSubCommand() { _name = "time stamp"; _desc = " FW time stamping."; _extendedDesc = "set/query/reset time stamp on device/image."; _flagLong = "timestamp"; _flagShort = "ts"; _param = "[set/query/reset] "; _paramExp = "set [FW version] : set the specified timestamp. if set on device FW version must be specified\n" "timestamp should comply with ISO 8601 format and provided with UTC timezone: YYYY-MM-DDThh:mm:ssZ\n" "query : query device/image to view the timestamp\n" "reset : reset the timestamp, remove the timestamp from device/image.\n"; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE4 " ts set 2015-12-24T14:52:33Z 14.12.1100\n" FLINT_NAME " -d " MST_DEV_EXAMPLE4 " ts reset\n" FLINT_NAME " -i ./fw4115.bin ts set\n" FLINT_NAME " -i ./fw4115.bin ts query"; _v = Wtv_Dev_Or_Img; _maxCmdParamNum = 3; _minCmdParamNum = 1; _cmdType = SC_Time_Stamp; memset(&_userFwVer, 0, sizeof(_userFwVer)); memset(&_userTsEntry, 0, sizeof(_userTsEntry)); _operation = TS_No_Command; _ops = (FwOperations*)NULL; _mccSupported = true; } TimeStampSubCommand::~TimeStampSubCommand() {} bool TimeStampSubCommand::parseFwVersion(string verStr) { unsigned int major = 0; unsigned int minor = 0; unsigned int subminor = 0; int count = sscanf(verStr.c_str(), "%02d.%02d.%04d", &major, &minor, &subminor); if (count != 3) { count = sscanf(verStr.c_str(), "%02d.%04d.%04d", &major, &minor, &subminor); if (count != 3) { reportErr(true, "Failed to parse FW version. expected format: MM.mm.ssss\n"); return false; } } _userFwVer.fw_ver_major = major; _userFwVer.fw_ver_minor = minor; _userFwVer.fw_ver_subminor = subminor; // printf("-D- Fw version: %d.%d.%d\n", _userFwVer.fw_ver_major, _userFwVer.fw_ver_minor, // _userFwVer.fw_ver_subminor); return true; } #define BCD2_TO_NUM(bcd) ((((bcd) >> 4 & 0xf) * 10) + ((bcd)&0xf)) #define BCD4_TO_NUM(bcd) ((BCD2_TO_NUM((bcd) >> 8 & 0xff) * 100) + (BCD2_TO_NUM((bcd)&0xff))) #define NUM2_TO_BCD(num) ((((num) / 10) * 16) + ((num) % 10)) #define NUM4_TO_BCD(num) ((NUM2_TO_BCD((num) / 100) * 256) + NUM2_TO_BCD((num) % 100)) u_int8_t TimeStampSubCommand::getDaysInMonth(u_int16_t year, u_int8_t month) { u_int8_t days = 0; bool isLeapYear = year % 4 == 0; // evenly divisible by 4 isLeapYear &= (year % 100 != 0) || (year % 400 == 0); // not evenly divided by 100 or evenly divisible by 400 switch (month) { case 2: days = isLeapYear ? 29 : 28; break; case 4: case 6: case 9: case 11: days = 30; break; case 1: case 3: case 5: case 7: case 8: case 10: case 12: days = 31; break; default: break; } return days; } void TimeStampSubCommand::getMachineUTCTime() { time_t rawTime; struct tm* timeInfo; time(&rawTime); timeInfo = gmtime(&rawTime); if (!timeInfo) { reportErr(true, "gmtime returned NULL. Can't get machine's UTC time."); return; } _userTsEntry.ts_year = NUM4_TO_BCD(timeInfo->tm_year + 1900); _userTsEntry.ts_month = NUM2_TO_BCD(timeInfo->tm_mon + 1); _userTsEntry.ts_day = NUM2_TO_BCD(timeInfo->tm_mday); _userTsEntry.ts_hour = NUM2_TO_BCD(timeInfo->tm_hour); _userTsEntry.ts_minutes = NUM2_TO_BCD(timeInfo->tm_min); _userTsEntry.ts_seconds = NUM2_TO_BCD(timeInfo->tm_sec); // printf("-D- timestamp: %04x-%02x-%02xT%02x:%02x:%02x\n", _userTsEntry.ts_year, _userTsEntry.ts_month, // _userTsEntry.ts_day, _userTsEntry.ts_hour, // _userTsEntry.ts_minutes, _userTsEntry.ts_seconds); return; } bool TimeStampSubCommand::parseTimeStamp(string tsStr) { unsigned int year = 0; unsigned int month = 0; unsigned int day = 0; unsigned int hour = 0; unsigned int minutes = 0; unsigned int seconds = 0; if (*tsStr.rbegin() != 'Z') { reportErr( true, "Failed to parse timestamp: Timestamp timezone must be UTC. format should be: YYYY-MM-DDThh:mm:ssZ\n"); return false; } // scan and store int count = sscanf(tsStr.c_str(), "%04d-%02d-%02dT%02d:%02d:%02dZ", &year, &month, &day, &hour, &minutes, &seconds); if (count != 6) { reportErr(true, "Failed to parse timestamp: input should be compliant to the following ISO 8601 format: " "YYYY-MM-DDThh:mm:ssZ\n"); return false; } // check time args if (month == 0 || month > 12) { reportErr(true, "Failed to parse timestamp: illegal month value (%d)\n", month); return false; } if (day > getDaysInMonth(year, month)) { reportErr(true, "Failed to parse timestamp: illegal day value (%d)\n", day); return false; } if (hour > 23 || minutes > 59 || seconds > 59) { reportErr(true, "Failed to parse timestamp: illegal time value (%02d:%02d:%02d)\n", hour, minutes, seconds); return false; } // store as BCD _userTsEntry.ts_year = NUM4_TO_BCD(year); _userTsEntry.ts_month = NUM2_TO_BCD(month); _userTsEntry.ts_day = NUM2_TO_BCD(day); _userTsEntry.ts_hour = NUM2_TO_BCD(hour); _userTsEntry.ts_minutes = NUM2_TO_BCD(minutes); _userTsEntry.ts_seconds = NUM2_TO_BCD(seconds); // printf("-D- timestamp: %04x-%02x-%02xT%02x:%02x:%02x\n", _userTsEntry.ts_year, _userTsEntry.ts_month, // _userTsEntry.ts_day, _userTsEntry.ts_hour, // _userTsEntry.ts_minutes, _userTsEntry.ts_seconds); return true; } bool TimeStampSubCommand::verifyParams() { if (_flintParams.cmd_params[0] == "query") { if (_flintParams.cmd_params.size() > 1) { reportErr(true, "query operation requires no arguments.\n"); return false; } _operation = TimeStampSubCommand::TS_Query; } else if (_flintParams.cmd_params[0] == "set") { if (_flintParams.image_specified && _flintParams.cmd_params.size() > 2) { reportErr(true, "too many arguments for set operation on image.\n"); return false; } else if (_flintParams.device_specified && _flintParams.cmd_params.size() != 3) { reportErr(true, "set operation on device requires timestamp and FW version arguments.\n\n"); return false; } _operation = TimeStampSubCommand::TS_Set; // attempt to parse timestamp and fw version if (_flintParams.image_specified && _flintParams.cmd_params.size() == 1) { // take time from machine getMachineUTCTime(); } else if (!parseTimeStamp(_flintParams.cmd_params[1])) { return false; } if (_flintParams.device_specified && !parseFwVersion(_flintParams.cmd_params[2])) { return false; } } else if (_flintParams.cmd_params[0] == "reset") { if (_flintParams.cmd_params.size() > 1) { reportErr(true, "erase operation requires no arguments.\n"); return false; } _operation = TimeStampSubCommand::TS_Reset; } else { reportErr(true, "Unknown operation, allowed operations: query/set/reset.\n"); return false; } return true; } void TimeStampSubCommand::printTsAndFwVer(string prefix, struct tools_open_ts_entry& tsEntry, struct tools_open_fw_version& fwVer) { printf("%-24s: %04x-%02x-%02xT%02x:%02x:%02xZ %02d.%02d.%04d\n", prefix.c_str(), tsEntry.ts_year, tsEntry.ts_month, tsEntry.ts_day, tsEntry.ts_hour, tsEntry.ts_minutes, tsEntry.ts_seconds, fwVer.fw_ver_major, fwVer.fw_ver_minor, fwVer.fw_ver_subminor); } bool TimeStampSubCommand::queryTs() { struct tools_open_ts_entry tsEntry; struct tools_open_fw_version fwVer; memset(&tsEntry, 0, sizeof(tsEntry)); memset(&fwVer, 0, sizeof(fwVer)); // get and Print Current Running FW TS in case of device if (_flintParams.device_specified) { if (!_ops->FwQueryTimeStamp(tsEntry, fwVer, true)) { printf("%-24s: N/A. %s\n", "Current timestamp", _ops->err()); } else { printTsAndFwVer("Current timestamp", tsEntry, fwVer); } } // get and print next FW timestamp if (!_ops->FwQueryTimeStamp(tsEntry, fwVer, false)) { printf("%-24s: N/A. %s\n", "Next timestamp", _ops->err()); } else { printTsAndFwVer("Next timestamp", tsEntry, fwVer); } return true; } bool TimeStampSubCommand::setTs() { if (!_ops->FwSetTimeStamp(_userTsEntry, _userFwVer)) { reportErr(false, "%s", _ops->err()); return false; } return true; } bool TimeStampSubCommand::resetTs() { if (!_ops->FwResetTimeStamp()) { reportErr(false, "%s", _ops->err()); return false; } return true; } FlintStatus TimeStampSubCommand::executeCommand() { bool rc; if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } _ops = _flintParams.device_specified ? _fwOps : _imgOps; fw_info_t fwInfo; if (!_ops->FwQuery(&fwInfo)) { reportErr(true, FLINT_FAILED_QUERY_ERROR, _flintParams.device_specified ? "Device" : "Image", _flintParams.device_specified ? _flintParams.device.c_str() : _flintParams.image.c_str(), _ops->err()); return FLINT_FAILED; } chip_type_t chip = fwInfo.fw_info.chip_type; bool IsValidDevice = (chip == CT_CONNECTX4 || chip == CT_CONNECTX4_LX); switch (_operation) { case TimeStampSubCommand::TS_Set: if (!IsValidDevice) { reportErr(true, "Failed to perform timestamp set operation. Failed to set timestamp. Time stamping not " "supported by FW.\n"); return FLINT_FAILED; } rc = setTs(); break; case TimeStampSubCommand::TS_Query: if (!IsValidDevice) { printf("Current timestamp : N/A. Failed to query timestamp. Time stamping not supported by FW.\n"); printf("Next timestamp : N/A. Failed to query timestamp. Time stamping not supported by FW.\n"); return FLINT_FAILED; } rc = queryTs(); break; case TimeStampSubCommand::TS_Reset: if (!IsValidDevice) { reportErr(true, "Failed to perform timestamp reset operation. Failed to reset timestamp. Time stamping " "not supported by FW.\n"); return FLINT_FAILED; } rc = resetTs(); break; default: // should not be reached reportErr(true, "Failed to perform timestamp operation: Unknown Error\n"); return FLINT_FAILED; } if (!rc) { printf("-E- Failed to perform timestamp %s operation. %s\n", _flintParams.cmd_params[0].c_str(), _errBuff); return FLINT_FAILED; } return FLINT_SUCCESS; } /*********************** * Class: CacheImage **********************/ CacheImageSubCommand::CacheImageSubCommand() { _name = "cache image"; _desc = "cache FW image(Windows only)."; _extendedDesc = "cache the FW image using Mellanox driver to allow faster FW load time upon loading the driver(Windows only)."; _flagLong = "cache_image"; _flagShort = "ci"; _param = ""; _paramExp = ""; _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " cache_image"; _v = Wtv_Dev; _maxCmdParamNum = 0; _minCmdParamNum = 0; _cmdType = SC_Cache_Image; } CacheImageSubCommand::~CacheImageSubCommand() {} FlintStatus CacheImageSubCommand::executeCommand() { #ifdef __WIN__ int rc; if (preFwAccess() == FLINT_FAILED) { return FLINT_FAILED; } rc = wdcif_send_image_cache_request(((Flash*)_io)->getMfileObj()); if (rc) { reportErr(true, FLINT_CACHE_IMAGE_ERROR, wdcif_err_str(rc)); return FLINT_FAILED; } printf("\n-I- FW was successfully cached by driver.\n"); return FLINT_SUCCESS; #else reportErr(true, FLINT_WIN_ONLY_SUPP_ERROR, _name.c_str()); return FLINT_FAILED; #endif } FlintStatus SubCommand::LockDevice(FwOperations* fwOps) { #ifdef __WIN__ // relevant only on devices if (_flintParams.device_specified) { if (fwOps->FwType() == FIT_FS3 || fwOps->FwType() == FIT_FS4 || fwOps->FwType() == FIT_FSCTRL) { mfile* mFile = fwOps->getMfileObj(); if (m_ToolsSync.init(mFile) != TOOLS_SYNC_OK) { reportErr(true, "Flint can't continue - prevention issue. Please try again later."); return FLINT_FAILED; } } } #else (void)fwOps; #endif return FLINT_SUCCESS; } FlintStatus SubCommand::UnlockDevice(FwOperations* fwOps) { #ifdef __WIN__ // relevant only on devices if (_flintParams.device_specified) { if (fwOps->FwType() == FIT_FS3 || fwOps->FwType() == FIT_FS4 || fwOps->FwType() == FIT_FSCTRL) { if (m_ToolsSync.close() != NAMED_SYNC_OK) { reportErr(true, "Prevention cannot unlock device."); return FLINT_FAILED; } } } #else (void)fwOps; #endif return FLINT_SUCCESS; } #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) /*********************** * Class: ExportPublicSubCommand ***********************/ ExportPublicSubCommand::ExportPublicSubCommand() { _name = "export_public_key"; _desc = "Export public key from PEM file or BIN file"; _extendedDesc = "Export public key from PEM file or BIN file"; _flagLong = "export_public_key"; _flagShort = ""; _paramExp = "None"; _example = FLINT_NAME "[--private_key file.pem --key_uuid uuid string] OR -i --output_file "; _v = Wtv_Uninitilized; _maxCmdParamNum = 0; _cmdType = SC_Sign; } ExportPublicSubCommand::~ExportPublicSubCommand() {} bool ExportPublicSubCommand::verifyParams() { if (_flintParams.privkey_file.empty() && _flintParams.image_specified == false) { reportErr(true, "Incorrect input. To export the public key you must provide private key PEM file OR BIN file.\n"); return false; } if (!_flintParams.privkey_file.empty() && _flintParams.image_specified == true) { reportErr(true, "Incorrect input. To export the public key you must provide private key [PEM file AND UUID " "string] OR BIN file.\n"); return false; } if (_flintParams.output_file_specified == false) { reportErr(true, "Incorrect input. To export the public key you must provide output file name.\n"); return false; } if (!_flintParams.privkey_file.empty()) { if (!is_file_exists(_flintParams.privkey_file.c_str())) { reportErr(true, "Incorrect input. Can't find private key file %s \n", _flintParams.privkey_file.c_str()); return false; } if (_flintParams.privkey_uuid.empty()) { reportErr(true, "Incorrect input. To export the public key you must provide [private key PEM file AND UUID " "string].UUID string is missing.\n"); return false; } for (string::const_iterator it = _flintParams.privkey_uuid.begin(); it != _flintParams.privkey_uuid.end(); ++it) { if (!isxdigit(*it)) { reportErr(true, "Bad UUID format. UUID string must contain hexadecimal digits only.\n"); return false; } } if (_flintParams.privkey_uuid.size() != UUID_LEN * 2) { reportErr(true, "Incorrect input. The size of UUID string must be exactly %u bytes.\n", UUID_LEN * 2); return false; } } else if (_flintParams.image_specified == true) { if (!is_file_exists(_flintParams.image.c_str())) { reportErr(true, "Can't find BIN file %s \n", _flintParams.image.c_str()); return false; } if (!_flintParams.privkey_uuid.empty()) { reportErr(true, "To export the public key from the BIN you should not provide [UUID string].UUID string is " "extracted from the BIN file.\n"); return false; } } return true; } FlintStatus ExportPublicSubCommand::executeCommand() { vector resultBuffer; if (!_flintParams.privkey_file.empty()) { // working with PEM file if (!verifyParams()) { return FLINT_FAILED; } vector outputBuffer; bool IsPemFile8Format = false; u_int32_t keySize = 0; string PemFile = _flintParams.privkey_file; if (!FwOperations::CheckPemKeySize(PemFile, keySize)) { reportErr(true, "Cannot parse the PEM file!\n"); return FLINT_FAILED; } if (keySize != 512) { reportErr(true, "The PEM file has to be 4096 bit!\n"); return FLINT_FAILED; } Hex64Manipulations hex64; if (hex64.ParsePemFile(PemFile, outputBuffer, IsPemFile8Format) == false) { reportErr(true, "Cannot parse the PEM file!\n"); return FLINT_FAILED; } resultBuffer.resize(TOTAL_PUBLIC_KEY_SIZE); if (IsPemFile8Format) { for (unsigned int i = MODULUS_OFFSET; i < MODULUS_OFFSET + MODULUS_SIZE; i++) { resultBuffer[i - MODULUS_OFFSET + 20] = outputBuffer[i]; } } else { for (unsigned int i = 12; i < 524; i++) { resultBuffer[i + 8] = outputBuffer[i]; } } resultBuffer[0] = 0; resultBuffer[1] = 1; resultBuffer[2] = 0; resultBuffer[3] = 1; string strData = _flintParams.privkey_uuid; for (size_t i = 0; i < UUID_LEN * 2; i += 2) { char tmpBuf[3] = {0}; tmpBuf[0] = strData[i]; tmpBuf[1] = strData[i + 1]; unsigned int dwData = 0; sscanf(tmpBuf, "%x", &dwData); resultBuffer[i / 2 + 4] = (u_int8_t)dwData; } } else { // working with the BIN file if (preFwOps() == FLINT_FAILED) { return FLINT_FAILED; } if (_imgOps->FwType() != FIT_FS4) { reportErr(true, "Extracting public key is applicable only for FS4 FW.\n"); return FLINT_FAILED; } if (!_imgOps->GetRSAPublicKey(resultBuffer)) { reportErr(true, "Extracting public key failed - %s.\n", _imgOps->err()); return FLINT_FAILED; } resultBuffer.resize(TOTAL_PUBLIC_KEY_SIZE); } writeToFile(_flintParams.output_file, resultBuffer); return FLINT_SUCCESS; } #endif mstflint-4.26.0/flint/flint_params.cpp0000644000175000017500000000754614522641732020216 0ustar tzafrirctzafrirc/* * * flint_params.cpp - FLash INTerface * * Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id$ * */ #include "flint_params.h" #include FlintParams::FlintParams() { help = false; version = false; extended_help = false; guids_specified = false; guid_specified = false; mac_specified = false; macs_specified = false; uid_specified = false; device_specified = false; blank_guids = false; clear_semaphore = false; quick_query = true; // should now be true by default next_boot_fw_ver = false; low_cpu = false; skip_rom_query = false; image_specified = false; nonencrypted_image_specified = false; mfa2_specified = false; nofs = false; allow_psid_change = false; allow_rom_change = false; override_cache_replacement = false; use_fw = false; // access flash via FW on CX3/CX3Pro no_flash_verify = false; silent = false; yes = false; no = false; vsd_specified = false; use_image_ps = false; use_image_guids = false; use_image_rom = false; dual_image = false; striped_image = false; ignore_dev_data = false; banks_specified = false; banks = -1; // must be -1 for mflash to get default num of flash log_specified = false; flash_params_specified = false; memset(flash_params.type_name, 0, MAX_FLASH_NAME); no_devid_check = false; cmd = SC_No_Cmd; baseUid.h = 0; baseUid.l = 0; flash_params.num_of_flashes = 0; flash_params.log2size = 0; use_dev_img_info = false; ignore_crc_check = false; hexdump_format = false; skip_ci_req = false; use_dev_rom = false; privkey2_specified = false; uuid2_specified = false; no_fw_ctrl = false; image_reactivation = false; num_of_args = 0; use_latest_fw_version = false; use_psid = false; congestion_control = false; use_cpu_utilization = false; hsm_password_specified = false; linkx_control = false; cableDeviceIndex = -1; cableDeviceSize = -1; cable_device_size_specified = false; cable_device_index_specified = false; linkx_auto_update = false; activate = false; downstream_device_ids_specified = false; download_transfer = false; // if no delay specified, use minimal delay to avoid disconnection in case of activating the connect port activate_delay_sec = 1; openssl_engine_usage_specified = false; } FlintParams::~FlintParams() {} mstflint-4.26.0/flint/Makefile.in0000644000175000017500000010647514522641737017106 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstflint$(EXEEXT) @ENABLE_DC_TRUE@am__append_1 = -lz @ENABLE_DC_FALSE@am__append_2 = -DNO_ZLIB @ENABLE_CS_TRUE@am__append_3 = $(top_builddir)/tools_crypto/libtools_crypto.a @ENABLE_CS_TRUE@am__append_4 = -lcrypto @ENABLE_INBAND_TRUE@am__append_5 = $(top_builddir)/mad_ifc/libmad_ifc.la @ENABLE_OPENSSL_TRUE@am__append_6 = $(top_builddir)/mlxsign_lib/libmlxsign.la @ENABLE_OPENSSL_TRUE@am__append_7 = -lcrypto -lssl @ENABLE_OPENSSL_FALSE@am__append_8 = -DNO_OPEN_SSL @ENABLE_FWMGR_TRUE@am__append_9 = \ @ENABLE_FWMGR_TRUE@ $(top_builddir)/libmfa/libmfa.la \ @ENABLE_FWMGR_TRUE@ $(top_builddir)/ext_libs/minixz/libminixz.la \ @ENABLE_FWMGR_TRUE@ $(top_builddir)/mlxarchive/libmstarchive.la \ @ENABLE_FWMGR_TRUE@ $(top_builddir)/tools_layouts/libmlxarchive_layouts.la \ @ENABLE_FWMGR_TRUE@ $(top_builddir)/xz_utils/libxz_utils.la @ENABLE_FWMGR_TRUE@am__append_10 = -llzma -lm @ENABLE_FWMGR_FALSE@am__append_11 = -DNO_MSTARCHIVE @ENABLE_DPA_TRUE@am__append_12 = -DENABLE_DPA @ENABLE_DPA_TRUE@am__append_13 = $(top_builddir)/mlxdpa/libmstdpa.a subdir = flint DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_mstflint_OBJECTS = mstflint-cmd_line_parser.$(OBJEXT) \ mstflint-flint.$(OBJEXT) mstflint-flint_params.$(OBJEXT) \ mstflint-subcommands.$(OBJEXT) \ mstflint-subcommands_linkx.$(OBJEXT) mstflint_OBJECTS = $(am_mstflint_OBJECTS) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstflint_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(mstflint_CXXFLAGS) \ $(CXXFLAGS) $(mstflint_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(mstflint_SOURCES) DIST_SOURCES = $(mstflint_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mflash \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mft_utils/hsmclient/inc \ -I$(top_srcdir)/mft_utils/hsmclient/inc/rsa \ -I$(top_srcdir)/tools_layouts mstflint_SOURCES = \ cmd_line_parser.cpp \ err_msgs.h \ flint.cpp \ flint.h \ flint_params.cpp \ flint_params.h \ subcommands.cpp \ subcommands.h \ subcommands_linkx.cpp # get mst device examples and tool name from makefile mstflint_CXXFLAGS = -Wall -W -g -MP -MD -pipe -DEXTERNAL \ $(COMPILER_FPIC) -DUNIX -DOS_UNIX -DOS_LINUX $(am__append_2) \ $(am__append_8) $(am__append_11) $(am__append_12) \ -DFLINT_NAME=\"mstflint\" -DFLINT_DISPLAY_NAME=\"MstFlint\" \ -DMST_DEV_EXAMPLE1=\"03:00.0\" -DMST_DEV_EXAMPLE2=\"mlx4_0\" \ -DMST_DEV_EXAMPLE3=\"03:00.0\" -DMST_DEV_EXAMPLE4=\"04:00.0\" mstflint_DEPENDENCIES = $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/mft_utils/hsmclient/libhsmclient.a \ $(am__append_3) $(am__append_5) $(am__append_6) \ $(am__append_9) $(am__append_13) LDADD_mstflint = ${LDL} $(am__append_1) $(am__append_4) \ $(am__append_7) $(am__append_10) mstflint_LDFLAGS = -static mstflint_LDADD = $(mstflint_DEPENDENCIES) $(LDADD_mstflint) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign flint/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign flint/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstflint$(EXEEXT): $(mstflint_OBJECTS) $(mstflint_DEPENDENCIES) $(EXTRA_mstflint_DEPENDENCIES) @rm -f mstflint$(EXEEXT) $(AM_V_CXXLD)$(mstflint_LINK) $(mstflint_OBJECTS) $(mstflint_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstflint-cmd_line_parser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstflint-flint.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstflint-flint_params.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstflint-subcommands.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstflint-subcommands_linkx.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mstflint-cmd_line_parser.o: cmd_line_parser.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-cmd_line_parser.o -MD -MP -MF $(DEPDIR)/mstflint-cmd_line_parser.Tpo -c -o mstflint-cmd_line_parser.o `test -f 'cmd_line_parser.cpp' || echo '$(srcdir)/'`cmd_line_parser.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-cmd_line_parser.Tpo $(DEPDIR)/mstflint-cmd_line_parser.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cmd_line_parser.cpp' object='mstflint-cmd_line_parser.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-cmd_line_parser.o `test -f 'cmd_line_parser.cpp' || echo '$(srcdir)/'`cmd_line_parser.cpp mstflint-cmd_line_parser.obj: cmd_line_parser.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-cmd_line_parser.obj -MD -MP -MF $(DEPDIR)/mstflint-cmd_line_parser.Tpo -c -o mstflint-cmd_line_parser.obj `if test -f 'cmd_line_parser.cpp'; then $(CYGPATH_W) 'cmd_line_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/cmd_line_parser.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-cmd_line_parser.Tpo $(DEPDIR)/mstflint-cmd_line_parser.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cmd_line_parser.cpp' object='mstflint-cmd_line_parser.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-cmd_line_parser.obj `if test -f 'cmd_line_parser.cpp'; then $(CYGPATH_W) 'cmd_line_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/cmd_line_parser.cpp'; fi` mstflint-flint.o: flint.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-flint.o -MD -MP -MF $(DEPDIR)/mstflint-flint.Tpo -c -o mstflint-flint.o `test -f 'flint.cpp' || echo '$(srcdir)/'`flint.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-flint.Tpo $(DEPDIR)/mstflint-flint.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='flint.cpp' object='mstflint-flint.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-flint.o `test -f 'flint.cpp' || echo '$(srcdir)/'`flint.cpp mstflint-flint.obj: flint.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-flint.obj -MD -MP -MF $(DEPDIR)/mstflint-flint.Tpo -c -o mstflint-flint.obj `if test -f 'flint.cpp'; then $(CYGPATH_W) 'flint.cpp'; else $(CYGPATH_W) '$(srcdir)/flint.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-flint.Tpo $(DEPDIR)/mstflint-flint.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='flint.cpp' object='mstflint-flint.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-flint.obj `if test -f 'flint.cpp'; then $(CYGPATH_W) 'flint.cpp'; else $(CYGPATH_W) '$(srcdir)/flint.cpp'; fi` mstflint-flint_params.o: flint_params.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-flint_params.o -MD -MP -MF $(DEPDIR)/mstflint-flint_params.Tpo -c -o mstflint-flint_params.o `test -f 'flint_params.cpp' || echo '$(srcdir)/'`flint_params.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-flint_params.Tpo $(DEPDIR)/mstflint-flint_params.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='flint_params.cpp' object='mstflint-flint_params.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-flint_params.o `test -f 'flint_params.cpp' || echo '$(srcdir)/'`flint_params.cpp mstflint-flint_params.obj: flint_params.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-flint_params.obj -MD -MP -MF $(DEPDIR)/mstflint-flint_params.Tpo -c -o mstflint-flint_params.obj `if test -f 'flint_params.cpp'; then $(CYGPATH_W) 'flint_params.cpp'; else $(CYGPATH_W) '$(srcdir)/flint_params.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-flint_params.Tpo $(DEPDIR)/mstflint-flint_params.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='flint_params.cpp' object='mstflint-flint_params.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-flint_params.obj `if test -f 'flint_params.cpp'; then $(CYGPATH_W) 'flint_params.cpp'; else $(CYGPATH_W) '$(srcdir)/flint_params.cpp'; fi` mstflint-subcommands.o: subcommands.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-subcommands.o -MD -MP -MF $(DEPDIR)/mstflint-subcommands.Tpo -c -o mstflint-subcommands.o `test -f 'subcommands.cpp' || echo '$(srcdir)/'`subcommands.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-subcommands.Tpo $(DEPDIR)/mstflint-subcommands.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='subcommands.cpp' object='mstflint-subcommands.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-subcommands.o `test -f 'subcommands.cpp' || echo '$(srcdir)/'`subcommands.cpp mstflint-subcommands.obj: subcommands.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-subcommands.obj -MD -MP -MF $(DEPDIR)/mstflint-subcommands.Tpo -c -o mstflint-subcommands.obj `if test -f 'subcommands.cpp'; then $(CYGPATH_W) 'subcommands.cpp'; else $(CYGPATH_W) '$(srcdir)/subcommands.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-subcommands.Tpo $(DEPDIR)/mstflint-subcommands.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='subcommands.cpp' object='mstflint-subcommands.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-subcommands.obj `if test -f 'subcommands.cpp'; then $(CYGPATH_W) 'subcommands.cpp'; else $(CYGPATH_W) '$(srcdir)/subcommands.cpp'; fi` mstflint-subcommands_linkx.o: subcommands_linkx.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-subcommands_linkx.o -MD -MP -MF $(DEPDIR)/mstflint-subcommands_linkx.Tpo -c -o mstflint-subcommands_linkx.o `test -f 'subcommands_linkx.cpp' || echo '$(srcdir)/'`subcommands_linkx.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-subcommands_linkx.Tpo $(DEPDIR)/mstflint-subcommands_linkx.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='subcommands_linkx.cpp' object='mstflint-subcommands_linkx.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-subcommands_linkx.o `test -f 'subcommands_linkx.cpp' || echo '$(srcdir)/'`subcommands_linkx.cpp mstflint-subcommands_linkx.obj: subcommands_linkx.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -MT mstflint-subcommands_linkx.obj -MD -MP -MF $(DEPDIR)/mstflint-subcommands_linkx.Tpo -c -o mstflint-subcommands_linkx.obj `if test -f 'subcommands_linkx.cpp'; then $(CYGPATH_W) 'subcommands_linkx.cpp'; else $(CYGPATH_W) '$(srcdir)/subcommands_linkx.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstflint-subcommands_linkx.Tpo $(DEPDIR)/mstflint-subcommands_linkx.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='subcommands_linkx.cpp' object='mstflint-subcommands_linkx.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstflint_CXXFLAGS) $(CXXFLAGS) -c -o mstflint-subcommands_linkx.obj `if test -f 'subcommands_linkx.cpp'; then $(CYGPATH_W) 'subcommands_linkx.cpp'; else $(CYGPATH_W) '$(srcdir)/subcommands_linkx.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/WORKSPACE0000644000175000017500000000577114522641732015176 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Please note, MSTflint code base is still supposed to be built by automake. # At this moment we are using Bazel for unit testing purposes only. # Please use Bazelisk (https://github.com/bazelbuild/bazelisk) to make sure # supported version of Bazel is used. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "bazel_skylib", sha256 = "c6966ec828da198c5d9adbaa94c05e3a1c7f21bd012a0b29ba8ddbccb2c93b0d", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", "https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", ], ) load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") bazel_skylib_workspace() load("@bazel_skylib//lib:versions.bzl", "versions") versions.check( maximum_bazel_version = "6.9.9", minimum_bazel_version = "4.0.0", ) http_archive( name = "com_google_googletest", sha256 = "755f9a39bc7205f5a0c428e920ddad092c33c8a1b46997def3f1d4a82aded6e1", urls = ["https://github.com/google/googletest/archive/5ab508a01f9eb089207ee87fd547d290da39d015.zip"], strip_prefix = "googletest-5ab508a01f9eb089207ee87fd547d290da39d015", ) http_archive( name = "com_github_nelhage_rules_boost", sha256 = "5ea00abc70cdf396a23fb53201db19ebce2837d28887a08544429d27783309ed", strip_prefix = "rules_boost-96e9b631f104b43a53c21c87b01ac538ad6f3b48", url = "https://github.com/nelhage/rules_boost/archive/96e9b631f104b43a53c21c87b01ac538ad6f3b48.tar.gz", ) load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps") boost_deps() mstflint-4.26.0/fw_comps_mgr/0000755000175000017500000000000014522641737016372 5ustar tzafrirctzafrircmstflint-4.26.0/fw_comps_mgr/fw_comps_mgr.cpp0000644000175000017500000026777214522641732021600 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * fw_comps_mgr.cpp * * Created on: Jul 31, 2016 * Author: adham */ #include "fw_comps_mgr.h" #include "fw_comps_mgr_abstract_access.h" #include "fw_comps_mgr_dma_access.h" #include "bit_slice.h" #include #include "mflash/mflash_access_layer.h" #include "dev_mgt/tools_dev_types.h" #include #ifndef UEFI_BUILD #include #include "mad_ifc/mad_ifc.h" #else /* no signal handling. */ static void mft_signal_set_handling(int isOn) { return; } #endif #include #include "mft_utils.h" static mfile* mopen_fw_ctx(void* fw_cmd_context, void* fw_cmd_func, void* dma_func, void* extra_data) { if ((fw_cmd_context == NULL) || (fw_cmd_func == NULL) || (extra_data == NULL)) { errno = EINVAL; return NULL; } mfile* mf = (mfile*)malloc(sizeof(mfile)); if (!mf) { errno = ENOMEM; return NULL; } memset(mf, 0, sizeof(mfile)); mf->flags = MDEVS_FWCTX; mf->tp = MST_FWCTX; mf->context.fw_cmd_context = fw_cmd_context; mf->context.fw_cmd_func = fw_cmd_func; mf->context.fw_cmd_dma = dma_func; mf->sock = -1; /* we are not opening remotely */ return mf; } const char* StateNames[256] = {"FSMST_IDLE", "FSMST_LOCKED", "FSMST_INITIALIZE", "FSMST_DOWNLOAD", "FSMST_VERIFY", "FSMST_APPLY", "FSMST_ACTIVATE", "FSMST_UPLOAD", "FSMST_UPLOAD_PENDING", "FSMST_DOWNSTREAM_DEVICE_TRANSFER", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT", "FSMST_NOT_IMPORTANT"}; const char* CommandsName[256] = {"QUERY", "CMD_LOCK_UPDATE_HANDLE", "CMD_RELEASE_UPDATE_HANDLE", "CMD_UPDATE_COMPONENT", "CMD_VERIFY_COMPONENT", "CMD_ACTIVATE_COMPONENET", "CMD_ACTIVATE_ALL", "CMD_READ_COMPONENT", "CMD_CANCEL", "CMD_CHECK_UPDATE_HANDLE", "CMD_FORCE_HANDLE_RELEASE", "CMD_READ_PENDING_COMPONENT", "CMD_DOWNSTREAM_DEVICE_TRANSFER", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND", "NO_COMMAND"}; #define DEFAULT_SIZE 64 #define MAX_TOUT 3000 #define REG_ACCESS_TOUT 100 #define SLEEP_TIME 80 #define MAX_SLEEP_TIME 800 #define INIT_PARTITION_SLEEP_TIME 240 #define MTCR_IB_TIMEOUT_VAR "MTCR_IB_TIMEOUT" #define MTCR_IB_TIMEOUT_VAL "30000" #define NV_BASE_MAC_GUID_IDX 0x02 #define NV_BASE_MAC_GUID_CAP_IDX 0x03 /* * Wrapper to call the NVDA command */ bool FwCompsMgr::runMNVDA(std::vector < u_int8_t >& buff, u_int16_t len, u_int32_t tlvType, reg_access_method_t method, bool queryDefault) { struct tools_open_mnvda mnvdaTlv; memset(&mnvdaTlv, 0, sizeof(tools_open_mnvda)); mnvdaTlv.nv_hdr.length = len; if (queryDefault) { mnvdaTlv.nv_hdr.default_ = 1; } /* tlvType should be in the correct endianess */ mnvdaTlv.nv_hdr.type.tlv_type_dw.tlv_type_dw = tlvType; if (method == REG_ACCESS_METHOD_SET) { memcpy(mnvdaTlv.data, buff.data(), len); } MError rc; /* "suspend" signals as we are going to take semaphores */ mft_signal_set_handling(1); rc = reg_access_mnvda(_mf, method, &mnvdaTlv); deal_with_signal(); if (rc) { _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); return false; } if (buff.size() < mnvdaTlv.nv_hdr.length) { buff.resize(mnvdaTlv.nv_hdr.length); } memcpy(buff.data(), mnvdaTlv.data, mnvdaTlv.nv_hdr.length); return true; } bool FwCompsMgr::accessComponent(u_int32_t offset, u_int32_t size, u_int32_t data[], access_type_t access, ProgressCallBackAdvSt* progressFuncAdv, control_fsm_args_t * lastFsmCommandArgs) { bool bRes = _accessObj->accessComponent(_updateHandle, offset, size, data, access, _currComponentStr, progressFuncAdv); if (!bRes && (lastFsmCommandArgs != NULL) && isDMAAccess()) { printf("\nDMA access has failed, switching to Register-Access burn.\n"); bRes = fallbackToRegisterAccess(); if (bRes) { if (!controlFsm(FSM_CMD_CANCEL, FSMST_LOCKED)) { DPRINTF(("Cancel instruction to FW component has failed!\n")); return false; } if (!controlFsm(lastFsmCommandArgs->command, lastFsmCommandArgs->expectedState, lastFsmCommandArgs->size, lastFsmCommandArgs->currentState, lastFsmCommandArgs->progressFuncAdv, lastFsmCommandArgs->reg_access_timeout)) { DPRINTF(("FSM reinitialize for fallback has failed!\n")); return false; } bRes = _accessObj->accessComponent(_updateHandle, offset, size, data, access, _currComponentStr, progressFuncAdv); } } setLastFirmwareError(_accessObj->getLastFirmwareError()); setLastRegisterAccessStatus(_accessObj->getLastRegisterAccessStatus()); return bRes; } bool FwCompsMgr::isDMAAccess() { return (dynamic_cast < DMAComponentAccess * > (_accessObj) != NULL); } bool FwCompsMgr::fallbackToRegisterAccess() { bool bRes = false; AbstractComponentAccess* newAccessObj = NULL; ComponentAccessFactory * factory = ComponentAccessFactory::GetInstance(); newAccessObj = factory->createDataAccessObject(this, _mf, false); if (newAccessObj != NULL) { delete _accessObj; _accessObj = newAccessObj; bRes = true; } return bRes; } const char* FwCompsMgr::stateToStr(fsm_state_t st) { switch (st) { case FSMST_INITIALIZE: return "Initializing image partition"; case FSMST_DOWNSTREAM_DEVICE_TRANSFER: return "Transferring data do LNKX device"; default: return "Progress"; } } const char* FwCompsMgr::commandToStr(fsm_command_t cmd) { switch (cmd) { case FSM_CMD_VERIFY_COMPONENT: return "Verifying component"; case FSM_CMD_UPDATE_COMPONENT: return "Updating component"; default: return "Unknown Command"; } } bool FwCompsMgr::controlFsm(fsm_command_t command, fsm_state_t expectedState, u_int32_t size, fsm_state_t currentState, ProgressCallBackAdvSt* progressFuncAdv, u_int32_t reg_access_timeout) { reg_access_status_t rc = ME_OK; reg_access_method_t method = REG_ACCESS_METHOD_SET; if (!reg_access_timeout) { reg_access_timeout = MAX_TOUT; } DPRINTF(("controlFsm : command %s current state %s expected state %s\n", CommandsName[command], StateNames[currentState], StateNames[expectedState])); unsigned int count = 0; do{ unsigned sleep_time = SLEEP_TIME; if (((currentState == FSMST_DOWNSTREAM_DEVICE_TRANSFER) && (expectedState == FSMST_LOCKED)) || (_linkXFlow && (currentState == FSMST_ACTIVATE))) { sleep_time = MAX_SLEEP_TIME; } if (count) { msleep(sleep_time); } method = REG_ACCESS_METHOD_SET; if (command == FSM_QUERY) { method = REG_ACCESS_METHOD_GET; } mft_signal_set_handling(1); memset(&_lastFsmCtrl, 0, sizeof(_lastFsmCtrl)); _lastFsmCtrl.instruction = command; _lastFsmCtrl.device_type = _deviceType; _lastFsmCtrl.device_index = _deviceIndex; _lastFsmCtrl.component_index = _componentIndex; _lastFsmCtrl.component_size = size; _lastFsmCtrl.update_handle = _updateHandle; if (_linkXFlow && (command == FSM_CMD_DOWNSTREAM_DEVICE_TRANSFER || command == FSM_CMD_ACTIVATE_ALL)) { _lastFsmCtrl.component_index = 0; /* This the FW need - for downstream need to work with 0/device_id or auto_update */ if (_autoUpdate) { _lastFsmCtrl.auto_update = 1; _lastFsmCtrl.device_index_size = 0; } else { _lastFsmCtrl.auto_update = 0; _lastFsmCtrl.device_index_size = _linkXDeviceSize; _lastFsmCtrl.device_index = _linkXDeviceIndex; } if (_linkXFlow && (command == FSM_CMD_ACTIVATE_ALL)) { _lastFsmCtrl.activation_delay_sec = _activation_delay_sec; _isDelayedActivationCommandSent = _activation_delay_sec > 0; } } rc = reg_access_mcc(_mf, method, &_lastFsmCtrl); /* add here auto_update + device_index_size */ deal_with_signal(); } while (rc == ME_REG_ACCESS_RES_NOT_AVLBL && count++ < reg_access_timeout); if (rc) { if (_lastFsmCtrl.error_code) { _lastError = mccErrTrans(_lastFsmCtrl.error_code); if (((currentState == FSMST_LOCKED) && (expectedState == FSMST_DOWNSTREAM_DEVICE_TRANSFER)) || (_linkXFlow && (currentState == FSMST_LOCKED) && (expectedState == FSMST_ACTIVATE))) { _rejectedIndex = _lastFsmCtrl.rejected_device_index; DPRINTF(("\nGot _rejectedIndex = %d\n", _rejectedIndex)); } } else { _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); } /* if mcc failed, FSM should be unlocked and handle released */ _isDelayedActivationCommandSent = false; return false; } if (expectedState == FSMST_NA && currentState == FSMST_NA) { return true; } count = 0; /* initialization longer then other states */ unsigned sleep_time = SLEEP_TIME; if (currentState == FSMST_INITIALIZE) { sleep_time = INIT_PARTITION_SLEEP_TIME; } if (((currentState == FSMST_DOWNSTREAM_DEVICE_TRANSFER) && (expectedState == FSMST_LOCKED)) || (_linkXFlow && (currentState == FSMST_ACTIVATE))) { sleep_time = MAX_SLEEP_TIME; } while (currentState != FSMST_NA && _lastFsmCtrl.control_state == currentState && count < MAX_TOUT) { if (count) { msleep(sleep_time); } if (progressFuncAdv && progressFuncAdv->func) { if ((command == FSM_QUERY) && (currentState == FSMST_DOWNSTREAM_DEVICE_TRANSFER) && (expectedState == FSMST_LOCKED)) { if (progressFuncAdv->func(_lastFsmCtrl.control_progress, StateNames[currentState], PROG_WITH_PRECENTAGE, progressFuncAdv->opaque)) { _lastError = FWCOMPS_ABORTED; return false; } } else { if (progressFuncAdv->func(0, StateNames[currentState], PROG_WITHOUT_PRECENTAGE, progressFuncAdv->opaque)) { _lastError = FWCOMPS_ABORTED; return false; } } } if (!controlFsm(FSM_QUERY)) { if ((command == FSM_QUERY) && (currentState == FSMST_DOWNSTREAM_DEVICE_TRANSFER) && (expectedState == FSMST_LOCKED)) { /* we are in the middle of downstream, but failed */ _rejectedIndex = _lastFsmCtrl.rejected_device_index; DPRINTF(("\nGot _rejectedIndex = %d\n", _rejectedIndex)); } else if (_linkXFlow && (command == FSM_QUERY) && (currentState == FSMST_ACTIVATE) && (expectedState == FSMST_LOCKED)) { /* we are in the middle of activaation, but failed */ _rejectedIndex = _lastFsmCtrl.rejected_device_index; DPRINTF(("\nGot _rejectedIndex = %d\n", _rejectedIndex)); } return false; } count++; } if (count >= MAX_TOUT) { _lastError = FWCOMPS_MCC_TOUT; return false; } if ((expectedState != FSMST_NA) && (_lastFsmCtrl.control_state != expectedState)) { DPRINTF(("controlFsm : control_state FW %s expected %s\n", StateNames[_lastFsmCtrl.control_state], StateNames[expectedState])); _lastError = FWCOMPS_MCC_UNEXPECTED_STATE; return false; } if (progressFuncAdv && progressFuncAdv->func && (currentState != FSMST_NA)) { if (progressFuncAdv->func(100, StateNames[currentState], PROG_OK, progressFuncAdv->opaque)) { _lastError = FWCOMPS_ABORTED; return false; } } return true; } bool FwCompsMgr::runMCQI(u_int32_t componentIndex, u_int8_t readPending, u_int32_t infoType, u_int32_t dataSize, u_int32_t offset, u_int32_t* data) { bool ret = true; mft_signal_set_handling(1); memset(&_currCompInfo, 0, sizeof(_currCompInfo)); _currCompInfo.read_pending_component = readPending; _currCompInfo.info_type = infoType; _currCompInfo.offset = offset; _currCompInfo.data_size = dataSize; _currCompInfo.component_index = componentIndex; _currCompInfo.device_index = _deviceIndex; _currCompInfo.device_type = _deviceType; DPRINTF(( "-D- MCQI: read_pending_component %u infoType %u offset %u dataSize %u, componentIndex %u _deviceIndex %u " "\n", readPending, infoType, offset, dataSize, componentIndex, _deviceIndex)); reg_access_status_t rc = reg_access_mcqi(_mf, REG_ACCESS_METHOD_GET, &_currCompInfo); deal_with_signal(); if (rc) { _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); ret = false; } if (data && dataSize) { if (!rc) { memcpy(data, &_currCompInfo.data, _currCompInfo.info_size); } } return ret; } bool FwCompsMgr::getDeviceHWInfo(FwCompsMgr::MQISDeviceDescriptionT op, vector < u_int8_t >& infoString) { mqisReg mqisRegister; mfile * mf; mf = getMfileObj(); if (!mf) { return false; } reg_access_status_t rc; int maxDataSize = sizeof(mqisRegister.info_string); memset(&mqisRegister, 0, sizeof(mqisReg)); if ((op < MQIS_REGISTER_FIRST_VALUE) || (op > MQIS_REGISTER_LAST_VALUE)) { return false; } mqisRegister.info_type = (u_int8_t)op; mqisRegister.read_length = maxDataSize; mft_signal_set_handling(1); rc = reg_access_mqis(mf, REG_ACCESS_METHOD_GET, &mqisRegister); deal_with_signal(); if (rc) { return false; } /* reg_access_hca_mqis_reg_print(&mqisRegister, stdout, 4); */ int infoSize = mqisRegister.info_length; if (infoSize == 0) { return false; } infoString.resize(infoSize + 1, '\0'); /* copy the output */ memcpy(infoString.data(), mqisRegister.info_string, mqisRegister.read_length); if (infoSize > mqisRegister.read_length) { int leftSize = infoSize - mqisRegister.read_length; while (leftSize > 0) { mqisRegister.read_offset = infoSize - leftSize; mqisRegister.read_length = leftSize > maxDataSize ? maxDataSize : leftSize; mft_signal_set_handling(1); rc = reg_access_mqis(mf, REG_ACCESS_METHOD_GET, &mqisRegister); deal_with_signal(); if (rc) { return false; } /* reg_access_hca_mqis_reg_print(&mqisRegister, stdout, 4); */ memcpy(infoString.data() + mqisRegister.read_offset, (mqisRegister.info_string), mqisRegister.read_length); leftSize -= mqisRegister.read_length; } } return true; } bool FwCompsMgr::queryComponentInfo(u_int32_t componentIndex, u_int8_t readPending, u_int32_t infoType, u_int32_t dataSize, u_int32_t* data) { u_int32_t maxDataSize = mget_max_reg_size(_mf, MACCESS_REG_METHOD_GET) - sizeof(_currCompInfo); if (maxDataSize > MAX_REG_DATA) { maxDataSize = MAX_REG_DATA; } if (!runMCQI(componentIndex, readPending, infoType, maxDataSize, 0, data)) { return false; } u_int32_t compInfoSize = _currCompInfo.info_size; u_int32_t tOffset = maxDataSize; if (tOffset >= compInfoSize) { return true; } if (dataSize < compInfoSize) { compInfoSize = dataSize; } while (tOffset < compInfoSize) { u_int32_t toRead = compInfoSize - tOffset > maxDataSize ? maxDataSize : compInfoSize - tOffset; if (!runMCQI(componentIndex, readPending, infoType, toRead, tOffset, data + tOffset)) { return false; } tOffset += maxDataSize; } return true; } reg_access_status_t FwCompsMgr::getGI(mfile* mf, mgirReg* gi) { reg_access_status_t rc = ME_REG_ACCESS_OK; u_int32_t tp = 0; mget_mdevs_type(mf, &tp); mft_signal_set_handling(1); #if !defined(UEFI_BUILD) && !defined(NO_INBAND) if ((tp == MST_IB) && !supports_reg_access_gmp(mf, MACCESS_REG_METHOD_GET)) { rc = (reg_access_status_t)mad_ifc_general_info_hw(mf, &gi->hw_info); if (rc) { goto cleanup; } rc = (reg_access_status_t)mad_ifc_general_info_fw(mf, &gi->fw_info); if (rc) { goto cleanup; } rc = (reg_access_status_t)mad_ifc_general_info_sw(mf, &gi->sw_info); } else { rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, gi); goto cleanup; } #else rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, gi); goto cleanup; #endif cleanup: deal_with_signal(); return rc; } bool FwComponent::init(const std::vector < u_int8_t >& buff, u_int32_t size, comps_ids_t type, u_int32_t idx) { if (_initialized) { return false; } _type = type; _size = size; _data = buff; _componentIndex = idx; _initialized = true; return true; } void FwCompsMgr::initialize(mfile* mf) { _mf = mf; memset(&_lastFsmCtrl, 0, sizeof(fsm_control_st)); _lastError = FWCOMPS_SUCCESS; _componentIndex = 0; _lastRegAccessStatus = ME_OK; _updateHandle = 0; if (getFwSupport()) { GenerateHandle(); } ComponentAccessFactory* factory = ComponentAccessFactory::GetInstance(); _accessObj = factory->createDataAccessObject(this, mf, _isDmaSupported); _refreshed = false; } void FwCompsMgr::SetIndexAndSize(int deviceIndex, int deviceSize, bool autoUpdate, bool activationNeeded, bool downloadTransferNeeded, int activate_delay_sec) { _linkXDeviceSize = deviceSize; _linkXDeviceIndex = deviceIndex; _autoUpdate = autoUpdate; _linkXFlow = true; _activationNeeded = activationNeeded; _downloadTransferNeeded = downloadTransferNeeded; _activation_delay_sec = activate_delay_sec; _rejectedIndex = -1; } FwCompsMgr::FwCompsMgr(mfile* mf, DeviceTypeT devType, int deviceIndex) { _clearSetEnv = false; _openedMfile = false; _hwDevId = 0; _deviceType = devType; _deviceIndex = deviceIndex; _accessObj = NULL; _mircCaps = false; #ifndef UEFI_BUILD _trm = NULL; #endif _linkXDeviceSize = 0; _linkXDeviceIndex = 0; _autoUpdate = false; _linkXFlow = false; _activationNeeded = true; _downloadTransferNeeded = true; _activation_delay_sec = 0; _rejectedIndex = -1; _isDelayedActivationCommandSent = false; initialize(mf); } FwCompsMgr::FwCompsMgr(const char* devname, DeviceTypeT devType, int deviceIndex) { _mf = NULL; _openedMfile = false; _clearSetEnv = false; _accessObj = NULL; _deviceType = devType; _deviceIndex = deviceIndex; _linkXDeviceSize = 0; _linkXDeviceIndex = 0; _autoUpdate = false; _linkXFlow = false; _activationNeeded = true; _downloadTransferNeeded = true; _activation_delay_sec = 0; _rejectedIndex = -1; _isDelayedActivationCommandSent = false; #ifndef UEFI_BUILD if (getenv(MTCR_IB_TIMEOUT_VAR) == NULL) { _clearSetEnv = true; #if defined(_WIN32) || defined(_WIN64) || defined(__MINGW64__) || defined(__MINGW32__) putenv(MTCR_IB_TIMEOUT_VAR "=" MTCR_IB_TIMEOUT_VAL); #else setenv(MTCR_IB_TIMEOUT_VAR, MTCR_IB_TIMEOUT_VAL, 1); #endif } #endif _hwDevId = 0; _mircCaps = false; #ifndef UEFI_BUILD _trm = NULL; #endif _lastError = FWCOMPS_SUCCESS; mfile* mf = mopen(devname); if (!mf) { _lastError = FWCOMPS_BAD_PARAM; return; } _openedMfile = true; initialize(mf); } FwCompsMgr::FwCompsMgr(uefi_Dev_t* uefi_dev, uefi_dev_extra_t* uefi_extra) { _mf = NULL; _accessObj = NULL; _openedMfile = false; _clearSetEnv = false; _mircCaps = false; mfile* mf = mopen_fw_ctx((void*)uefi_dev, (void*)uefi_extra->fw_cmd_func, (void*)uefi_extra->dma_func, (void*)&uefi_extra->dev_info); if (!mf) { _lastError = FWCOMPS_MEM_ALLOC_FAILED; return; } _hwDevId = uefi_extra->dev_info.hw_dev_id; _openedMfile = true; _autoUpdate = false; _linkXFlow = false; _activationNeeded = true; _downloadTransferNeeded = true; _activation_delay_sec = 0; _rejectedIndex = -1; _isDelayedActivationCommandSent = false; _deviceType = FwCompsMgr::DEVICE_UNKNOWN; _deviceIndex = 0; #ifndef UEFI_BUILD _trm = NULL; #endif initialize(mf); } FwCompsMgr::~FwCompsMgr() { #ifndef UEFI_BUILD unlock_flash_semaphore(); if (_clearSetEnv) { #if defined(_WIN32) || defined(_WIN64) || defined(__MINGW64__) || defined(__MINGW32__) putenv(MTCR_IB_TIMEOUT_VAR "="); #else unsetenv(MTCR_IB_TIMEOUT_VAR); #endif } #endif if (_mf) { if (!_isDelayedActivationCommandSent) { if (_lastFsmCtrl.control_state != FSMST_IDLE) { controlFsm(FSM_CMD_CANCEL, FSMST_LOCKED); controlFsm(FSM_CMD_RELEASE_UPDATE_HANDLE, FSMST_IDLE); } } } if (_openedMfile) { if (_mf) { mclose(_mf); } } if (_accessObj != NULL) { delete _accessObj; _accessObj = NULL; } } bool FwCompsMgr::forceRelease() { return controlFsm(FSM_CMD_FORCE_HANDLE_RELEASE); } void FwCompsMgr::GenerateHandle() { if (!controlFsm(FSM_QUERY, FSMST_NA, 0, FSMST_NA, NULL, REG_ACCESS_TOUT)) { _updateHandle = 0; return; } _updateHandle = _lastFsmCtrl.update_handle & 0xffffff; } const char* CompNames[] = {"NO_COMPONENT 1", "COMPID_BOOT_IMG", "COMPID_RUNTIME_IMG", "COMPID_USER_NVCONFIG", "COMPID_OEM_NVCONFIG", "COMPID_MLNX_NVCONFIG", "COMPID_CS_TOKEN", "COMPID_DBG_TOKEN", "COMPID_DEV_INFO", "NO_COMPONENT 2", "COMPID_GEARBOX", "COMPID_CONGESTION_CONTROL", "COMPID_LINKX_PROPERTIES", "COMPID_CRYPTO_TO_COMMISSIONING", "COMPID_RMCS_TOKEN", "COMPID_RMDT_TOKEN", "COMPID_CRCS_TOKEN", "COMPID_CRDT_TOKEN", "COMPID_CLOCK_SYNC_EEPROM"}; bool FwCompsMgr::RefreshComponentsStatus(comp_status_st* ComponentStatus) { u_int16_t compIdx = 0; int last_index_flag = 0; comp_query_st compStatus; if (_refreshed) { return true; } if (_compsQueryMap.size()) { _compsQueryMap.clear(); } _compsQueryMap.resize((unsigned)(FwComponent::COMPID_UNKNOWN)); while (!last_index_flag) { memset(&compStatus, 0, sizeof(comp_query_st)); if (queryComponentStatus(compIdx, &(compStatus.comp_status))) { compStatus.comp_status.component_index = compIdx; if ((ComponentStatus != NULL) && (compStatus.comp_status.identifier == FwComponent::COMPID_LINKX)) { memcpy(ComponentStatus, &compStatus.comp_status, sizeof(compStatus.comp_status)); } /* */ u_int32_t capSt[DEFAULT_SIZE] = {0}; if (queryComponentInfo(compIdx, 1, COMPINFO_CAPABILITIES, DEFAULT_SIZE, capSt) == false) { if (queryComponentInfo(compIdx, 0, COMPINFO_CAPABILITIES, DEFAULT_SIZE, capSt) == false) { /*_lastError = FWCOMPS_REG_FAILED; */ DPRINTF(("-D- Found component: %#x name %s MCQI failed \n", compStatus.comp_status.identifier, CompNames[compStatus.comp_status.identifier])); return false; } } compStatus.valid = 1; compStatus.comp_cap.supported_info_bitmask = _currCompInfo.data.mcqi_cap_ext.supported_info_bitmask; compStatus.comp_cap.component_size = _currCompInfo.data.mcqi_cap_ext.component_size; compStatus.comp_cap.max_component_size = _currCompInfo.data.mcqi_cap_ext.max_component_size; compStatus.comp_cap.mcda_max_write_size = _currCompInfo.data.mcqi_cap_ext.mcda_max_write_size; compStatus.comp_cap.log_mcda_word_size = _currCompInfo.data.mcqi_cap_ext.log_mcda_word_size; compStatus.comp_cap.match_base_guid_mac = _currCompInfo.data.mcqi_cap_ext.match_base_guid_mac; compStatus.comp_cap.check_user_timestamp = _currCompInfo.data.mcqi_cap_ext.check_user_timestamp; compStatus.comp_cap.match_psid = _currCompInfo.data.mcqi_cap_ext.match_psid; compStatus.comp_cap.match_chip_id = _currCompInfo.data.mcqi_cap_ext.match_chip_id; compStatus.comp_cap.signed_updates_only = _currCompInfo.data.mcqi_cap_ext.signed_updates_only; compStatus.comp_cap.rd_en = _currCompInfo.data.mcqi_cap_ext.rd_en; memcpy(&(_compsQueryMap[compStatus.comp_status.identifier]), &compStatus, sizeof(compStatus)); // reg_access_hca_mcqi_cap_ext_ext_print(&(compStatus.comp_cap), stdout, 3); last_index_flag = compStatus.comp_status.last_index_flag; DPRINTF(("-D- Found component with identifier=%#x index=%u name=%s supported_info_bitmask=0x%x \n", compStatus.comp_status.identifier, compIdx, CompNames[compStatus.comp_status.identifier], compStatus.comp_cap.supported_info_bitmask)); } else { DPRINTF(("-D- queryComponentStatus failed for component index %d !!\n", compIdx)); return false; } compIdx++; } _refreshed = true; return true; } bool FwCompsMgr::IsSecondaryHost(bool& isSecondary) { reg_access_switch_pmaos_reg_ext pmaos; memset(&pmaos, 0, sizeof(pmaos)); mft_signal_set_handling(1); reg_access_status_t rc = reg_access_pmaos(_mf, REG_ACCESS_METHOD_GET, &pmaos); deal_with_signal(); if (rc) { _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); return false; } isSecondary = (pmaos.secondary != 0); return true; } bool FwCompsMgr::readComponent(FwComponent::comps_ids_t compType, FwComponent& fwComp, bool readPending, ProgressCallBackAdvSt * progressFuncAdv) { if (!RefreshComponentsStatus()) { return false; } _currCompQuery = &(_compsQueryMap[compType]); _componentIndex = _currCompQuery->comp_status.component_index; std::vector < u_int8_t > data; u_int32_t compSize = _currCompQuery->comp_cap.component_size; if (_currCompQuery->comp_cap.rd_en) { data.resize(compSize); if (!controlFsm(FSM_CMD_LOCK_UPDATE_HANDLE, FSMST_LOCKED)) { return false; } if (!controlFsm(readPending ? FSM_CMD_READ_PENDING_COMPONENT : FSM_CMD_READ_COMPONENT, FSMST_UPLOAD)) { controlFsm(FSM_CMD_RELEASE_UPDATE_HANDLE); return false; } _currComponentStr = FwComponent::getCompIdStr(compType); control_fsm_args_t fsmReadCommand; fsmReadCommand.command = readPending ? FSM_CMD_READ_PENDING_COMPONENT : FSM_CMD_READ_COMPONENT; fsmReadCommand.expectedState = FSMST_UPLOAD; if (!accessComponent(0, compSize, (u_int32_t*)(data.data()), MCC_READ_COMP, progressFuncAdv, &fsmReadCommand)) { return false; } if (!controlFsm(FSM_CMD_RELEASE_UPDATE_HANDLE)) { return false; } } else { DPRINTF(("readComponent : RD EN is 0 for component index %u compId %s \n", _componentIndex, FwComponent::getCompIdStr(compType))); _lastError = FWCOMPS_READ_COMP_NOT_SUPPORTED; return false; } fwComp.init(data, compSize, (FwComponent::comps_ids_t)_currCompInfo.info_type, _componentIndex); return true; } bool FwCompsMgr::readComponentInfo(FwComponent::comps_ids_t compType, comp_info_t infoType, std::vector < u_int32_t >& retData, bool readPending) { if (!RefreshComponentsStatus()) { return false; } _currCompQuery = &(_compsQueryMap[compType]); _componentIndex = _currCompQuery->comp_status.component_index; if (!queryComponentInfo(_componentIndex, (readPending == true), infoType, 0, 0)) { return false; } if (_currCompQuery->comp_cap.supported_info_bitmask & (1 << infoType)) { u_int32_t size = _currCompInfo.info_size; retData.resize(size); queryComponentInfo(_componentIndex, readPending == true, infoType, size, (u_int32_t*)(retData.data())); return true; } else { _lastError = FWCOMPS_INFO_TYPE_NOT_SUPPORTED; return false; } /* return true; */ } bool FwCompsMgr::queryComponentStatus(u_int32_t componentIndex, comp_status_st* query) { mft_signal_set_handling(1); query->component_index = componentIndex; query->device_index = _deviceIndex; query->device_type = _deviceType; reg_access_status_t rc = reg_access_mcqs(_mf, REG_ACCESS_METHOD_GET, query); deal_with_signal(); if (rc) { _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); return false; } return true; } bool FwCompsMgr::burnComponents(std::vector < FwComponent >& comps, ProgressCallBackAdvSt* progressFuncAdv) { unsigned i = 0; if (!RefreshComponentsStatus()) { return false; } if (!controlFsm(FSM_CMD_LOCK_UPDATE_HANDLE, FSMST_LOCKED)) { DPRINTF(("Cannot lock the handle!\n")); if (forceRelease() == false) { printf("FSM is locked.\n"); } return false; } if (_downloadTransferNeeded == true) { for (i = 0; i < comps.size(); i++) { int component = comps[i].getType(); _currCompQuery = &(_compsQueryMap[component]); if (!_currCompQuery->valid) { _lastError = FWCOMPS_COMP_NOT_SUPPORTED; DPRINTF(("MCC flow for component %d is not supported!\n", component)); return false; } _componentIndex = _currCompQuery->comp_status.component_index; if (!controlFsm(FSM_CMD_UPDATE_COMPONENT, FSMST_DOWNLOAD, comps[i].getSize(), FSMST_INITIALIZE, progressFuncAdv)) { DPRINTF(("Initializing downloading FW component has failed!\n")); return false; } _currComponentStr = FwComponent::getCompIdStr(comps[i].getType()); control_fsm_args_t fsmUpdateCommand; fsmUpdateCommand.command = FSM_CMD_UPDATE_COMPONENT; fsmUpdateCommand.expectedState = FSMST_DOWNLOAD; fsmUpdateCommand.size = comps[i].getSize(); fsmUpdateCommand.currentState = FSMST_INITIALIZE; fsmUpdateCommand.progressFuncAdv = progressFuncAdv; if (!accessComponent(0, comps[i].getSize(), (u_int32_t*)(comps[i].getData().data()), MCC_WRITE_COMP, progressFuncAdv, &fsmUpdateCommand)) { DPRINTF(("Downloading FW component has failed!\n")); return false; } if (!controlFsm(FSM_CMD_VERIFY_COMPONENT, FSMST_LOCKED, 0, FSMST_NA, progressFuncAdv)) { DPRINTF(("Verifying FW component has failed!\n")); return false; } if (comps[i].getType() == FwComponent::COMPID_LINKX || comps[i].getType() == FwComponent::COMPID_CLOCK_SYNC_EEPROM) { if (!controlFsm(FSM_CMD_DOWNSTREAM_DEVICE_TRANSFER, FSMST_DOWNSTREAM_DEVICE_TRANSFER, 0, FSMST_LOCKED, progressFuncAdv)) { DPRINTF(("Downstream LinkX begin has failed!\n")); return false; } if (!controlFsm(FSM_QUERY, FSMST_LOCKED, 0, FSMST_DOWNSTREAM_DEVICE_TRANSFER, progressFuncAdv)) { DPRINTF(("Downstream LinkX ending has failed!\n")); return false; } } } } if (_activationNeeded == true) { if (_linkXFlow) { if (!controlFsm(FSM_CMD_ACTIVATE_ALL, FSMST_ACTIVATE, 0, FSMST_LOCKED, progressFuncAdv)) { DPRINTF(("Moving to ACTIVATE state has failed!\n")); return false; } // In case of activation delay, FW will set FSM to LOCKED if (!_isDelayedActivationCommandSent) { printf("Please wait while activating the transceiver(s) FW ...\n"); if (!controlFsm(FSM_QUERY, FSMST_LOCKED, 0, FSMST_ACTIVATE, progressFuncAdv)) { DPRINTF(("Moving from activate state to locked state has failed!\n")); return false; } } } else { if (!controlFsm(FSM_CMD_ACTIVATE_ALL)) { DPRINTF(("Activating FW component has failed!\n")); return false; } } } /* In case of activation delay, FW will release the update handle */ if (!_isDelayedActivationCommandSent) { if (!controlFsm(FSM_CMD_RELEASE_UPDATE_HANDLE)) { DPRINTF(("Release FW handle has failed!\n")); return false; } } _refreshed = false; return true; } bool FwCompsMgr::getFwComponents(std::vector < FwComponent >& compsMap, bool readEn) { if (!RefreshComponentsStatus()) { return false; } for (std::vector < comp_query_st > ::iterator it = _compsQueryMap.begin(); it != _compsQueryMap.end(); it++) { if (!it->valid) { continue; } FwComponent fwCmp((FwComponent::comps_ids_t)it->comp_status. identifier, (FwComponent::comps_status_t)it->comp_status.component_status); if (readEn && !readComponent((FwComponent::comps_ids_t)it->comp_status.identifier, fwCmp, 0)) { return false; } else { fwCmp.setSize(it->comp_cap.component_size); } compsMap.push_back(fwCmp); } return true; } FwComponent::comps_ids_t FwComponent::getCompId(string compId) { mft_utils::to_lowercase(compId); if (compId == "sync_clock") { return COMPID_CLOCK_SYNC_EEPROM; } return COMPID_UNKNOWN; } const char* FwComponent::getCompIdStr(comps_ids_t compId) { switch (compId) { case COMPID_BOOT_IMG: return "Boot image"; case COMPID_RUNTIME_IMG: return "RUNTIME_IMAGE"; case COMPID_CS_TOKEN: return "CS_TOKEN"; case COMPID_MLNX_NVCONFIG: return "MLNX_NVCONFIG"; case COMPID_OEM_NVCONFIG: return "OEM_NVCONFIG"; case COMPID_DBG_TOKEN: return "DBG_TOKEN"; case COMPID_GEARBOX: return "GEARBOX"; case COMPID_CONGESTION_CONTROL: return "CONGESTION_CONTROL"; case COMPID_LINKX: return "COMPID_LINKX"; case COMPID_CRYPTO_TO_COMMISSIONING: return "COMPID_CRYPTO_TO_COMMISSIONING"; case COMPID_RMCS_TOKEN: return "COMPID_RMCS_TOKEN"; case COMPID_RMDT_TOKEN: return "COMPID_RMDT_TOKEN"; case COMPID_CRCS_TOKEN: return "COMPID_CRCS_TOKEN"; case COMPID_CRDT_TOKEN: return "COMPID_CRDT_TOKEN"; case COMPID_CLOCK_SYNC_EEPROM: return "COMPID_CLOCK_SYNC_EEPROM"; case DIGITAL_CACERT: return "DIGITAL_CACERT"; case DIGITAL_CACERT_CHAIN: return "DIGITAL_CACERT_CHAIN"; case DIGITAL_CACERT_REMOVAL: return "DIGITAL_CACERT_REMOVAL"; case DIGITAL_CACERT_CHAIN_REMOVAL: return "DIGITAL_CACERT_CHAIN_REMOVAL"; default: return "UNKNOWN_COMPONENT"; } } u_int32_t FwCompsMgr::getFwSupport() { u_int32_t devid = 0; _isDmaSupported = false; #ifndef UEFI_BUILD if (getenv("FW_CTRL") != NULL) { return 1; } if (mread4(_mf, 0xf0014, &devid) != 4) { /* * Best effort to check MCAM */ devid = 0; } #else devid = _hwDevId; #endif devid = EXTRACT(devid, 0, 16); /* * If 4TH gen nic or switch with no MCAM reg return not supported */ if ((devid == CX3_HW_ID) || (devid == CX3_PRO_HW_ID) || (devid == SWITCH_IB_HW_ID) || (devid == SWITCH_IB2_HW_ID)) { _lastError = FWCOMPS_UNSUPPORTED_DEVICE; return 0; } reg_access_hca_mcam_reg_ext mcam; memset(&mcam, 0, sizeof(mcam)); reg_access_status_t rc = reg_access_mcam(_mf, REG_ACCESS_METHOD_GET, &mcam); if (rc) { DPRINTF(("getFwSupport MCAM not supported! rc = %d\n", rc)); _lastError = FWCOMPS_UNSUPPORTED_DEVICE; return 0; } /* * MCQS in bit 0x60 * MCQI in bit 0x61 * MCC in bit 0x62 * MCDA in bit 0x63 * MQIS in bit 0x64 * MCDD in bit 0x5C * MGIR in bit 0x20 */ u_int8_t mcqsCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 3], 0, 1); u_int8_t mcqiCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 3], 1, 1); u_int8_t mccCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 3], 2, 1); u_int8_t mcdaCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 3], 3, 1); // DWORD select logic: 3 - (0x63 / 0x20); bit select logic: 0x63 % 0x20 u_int8_t mqisCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 3], 4, 1); u_int8_t mcddCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 2], 28, 1); u_int8_t mgirCap = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 1], 0, 1); _isDmaSupported = (mcddCap == 1); memset(&mcam, 0, sizeof(mcam)); mcam.access_reg_group = 2; // for MIRC register rc = reg_access_mcam(_mf, REG_ACCESS_METHOD_GET, &mcam); if (rc) { _lastError = FWCOMPS_UNSUPPORTED_DEVICE; return 0; } _mircCaps = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 3], 2, 1); DPRINTF(( "getFwSupport _mircCaps = %d mcqsCap = %d mcqiCap = %d mccCap = %d mcdaCap = %d mqisCap = %d mcddCap = %d mgirCap = %d\n", _mircCaps, mcqsCap, mcqiCap, mccCap, mcdaCap, mqisCap, mcddCap, mgirCap)); if (mcqsCap && mcqiCap && mccCap && mcdaCap && mqisCap && mgirCap) { return 1; } _lastError = FWCOMPS_UNSUPPORTED_DEVICE; return 0; } #define UID_EXTRACT(INT64, INT32ARR) INT64 = ((u_int64_t)INT32ARR[0] << 32) | INT32ARR[1]; bool FwCompsMgr::extractMacsGuids(fwInfoT* fwQuery) { std::vector < u_int8_t > nvBaseMacGuidData; std::vector < u_int8_t > nvBaseMacGuidDataOrig; std::vector < u_int8_t > nvBaseMacGuidCap; std::vector < u_int8_t > nvBaseMacGuidCapOrig; struct tools_open_nv_base_mac_guid currMacGuid; struct tools_open_nv_base_mac_guid origMacGuid; struct tools_open_nv_base_mac_guid_cap currMacGuidCap; struct tools_open_nv_base_mac_guid_cap origMacGuidCap; memset(&currMacGuid, 0, sizeof(currMacGuid)); memset(&origMacGuid, 0, sizeof(origMacGuid)); memset(&currMacGuidCap, 0, sizeof(currMacGuidCap)); memset(&origMacGuidCap, 0, sizeof(origMacGuidCap)); if (!runMNVDA(nvBaseMacGuidData, 64, NV_BASE_MAC_GUID_IDX, REG_ACCESS_METHOD_GET, false)) { return false; } if (!runMNVDA(nvBaseMacGuidDataOrig, 64, NV_BASE_MAC_GUID_IDX, REG_ACCESS_METHOD_GET, true)) { return false; } if (!runMNVDA(nvBaseMacGuidCap, 64, NV_BASE_MAC_GUID_CAP_IDX, REG_ACCESS_METHOD_GET, false)) { return false; } if (!runMNVDA(nvBaseMacGuidCapOrig, 64, NV_BASE_MAC_GUID_CAP_IDX, REG_ACCESS_METHOD_GET, true)) { return false; } tools_open_nv_base_mac_guid_unpack(&currMacGuid, nvBaseMacGuidData.data()); tools_open_nv_base_mac_guid_unpack(&origMacGuid, nvBaseMacGuidDataOrig.data()); tools_open_nv_base_mac_guid_cap_unpack(&currMacGuidCap, nvBaseMacGuidCap.data()); tools_open_nv_base_mac_guid_cap_unpack(&origMacGuidCap, nvBaseMacGuidCapOrig.data()); UID_EXTRACT(fwQuery->base_mac.uid, currMacGuid.base_mac); UID_EXTRACT(fwQuery->base_guid.uid, currMacGuid.base_guid); UID_EXTRACT(fwQuery->base_guid_orig.uid, origMacGuid.base_guid); fwQuery->base_mac.num_allocated = currMacGuidCap.num_of_allocated_macs; fwQuery->base_guid.num_allocated = currMacGuidCap.num_of_allocated_guids; fwQuery->base_mac_orig.num_allocated = origMacGuidCap.num_of_allocated_macs; fwQuery->base_guid_orig.num_allocated = origMacGuidCap.num_of_allocated_guids; return true; } bool FwCompsMgr::setMacsGuids(mac_guid_t macGuid) { std::vector macsGuidsBuff(16, 0); struct tools_open_nv_base_mac_guid baseMacGuid; baseMacGuid.base_guid[0] = macGuid.guid.h; baseMacGuid.base_guid[1] = macGuid.guid.l; baseMacGuid.base_mac[0] = macGuid.mac.h; baseMacGuid.base_mac[1] = macGuid.mac.l; tools_open_nv_base_mac_guid_pack(&baseMacGuid, macsGuidsBuff.data()); return runMNVDA(macsGuidsBuff, 16, NV_BASE_MAC_GUID_IDX, REG_ACCESS_METHOD_SET, false); } u_int8_t transRomType(u_int8_t mgirRomType) { switch (mgirRomType) { case 0x1: /* FLEXBOOT */ return 0x10; case 0x2: /* UEFI */ return 0x11; case 0x3: /* UEFI_CLP */ return 0x12; case 0x4: /* NVMe */ return 0x13; case 0x5: /* FCODE */ return 0x21; case 0x6: /* UEFI Virtio net */ return 0x14; case 0x7: /* UEFI Virtio blk */ return 0x15; case 0x8: /* PXE Virtio net */ return 0x16; default: return mgirRomType; } } void FwCompsMgr::extractRomInfo(mgirReg* mgir, fwInfoT* fwQuery) { if (!fwQuery || !mgir) { return; } fwQuery->nRoms = 0; if (mgir->sw_info.rom3_type) { fwQuery->roms[fwQuery->nRoms].arch = mgir->sw_info.rom3_arch; fwQuery->roms[fwQuery->nRoms].type = transRomType(mgir->sw_info.rom3_type); fwQuery->roms[fwQuery->nRoms].version = mgir->sw_info.rom3_version; fwQuery->nRoms++; } if (mgir->sw_info.rom2_type) { fwQuery->roms[fwQuery->nRoms].arch = mgir->sw_info.rom2_arch; fwQuery->roms[fwQuery->nRoms].type = transRomType(mgir->sw_info.rom2_type); fwQuery->roms[fwQuery->nRoms].version = mgir->sw_info.rom2_version; fwQuery->nRoms++; } if (mgir->sw_info.rom1_type) { fwQuery->roms[fwQuery->nRoms].arch = mgir->sw_info.rom1_arch; fwQuery->roms[fwQuery->nRoms].type = transRomType(mgir->sw_info.rom1_type); fwQuery->roms[fwQuery->nRoms].version = mgir->sw_info.rom1_version; fwQuery->nRoms++; } if (mgir->sw_info.rom0_type) { fwQuery->roms[fwQuery->nRoms].arch = mgir->sw_info.rom0_arch; fwQuery->roms[fwQuery->nRoms].type = transRomType(mgir->sw_info.rom0_type); fwQuery->roms[fwQuery->nRoms].version = mgir->sw_info.rom0_version; fwQuery->nRoms++; } } bool FwCompsMgr::queryFwInfo(fwInfoT* query, bool next_boot_fw_ver) { if (!query) { _lastError = FWCOMPS_BAD_PARAM; return false; } /* * MGIR */ reg_access_status_t rc; mgirReg mgir; memset(&mgir, 0, sizeof(mgir)); memset(query, 0, sizeof(fwInfoT)); if (getComponentVersion(FwComponent::COMPID_BOOT_IMG, true, &query->pending_fw_version)) { query->pending_fw_valid = 1; } if (!getComponentVersion(FwComponent::COMPID_BOOT_IMG, false, &query->running_fw_version)) { return false; } if (next_boot_fw_ver) { /* query next_boot_fw_ver only. enough to query pending, running versions and device_id. */ rc = getGI(_mf, &mgir); if (rc) { _lastError = FWCOMPS_QUERY_FAILED; return false; } query->hw_dev_id = mgir.hw_info.hw_dev_id; query->dev_id = mgir.hw_info.device_id; query->rev_id = mgir.hw_info.device_hw_revision; return true; } if (query->running_fw_version.version_string_length && (query->running_fw_version.version_string_length <= PRODUCT_VER_LEN)) { strcpy(query->product_ver, (char*)_productVerStr.data()); } rc = getGI(_mf, &mgir); if (rc) { _lastError = FWCOMPS_QUERY_FAILED; return false; } /* tools_open_mgir_print(&mgir, stdout, 1); */ memcpy(query->psid, mgir.fw_info.psid, PSID_LEN); query->hw_dev_id = mgir.hw_info.hw_dev_id; query->dev_id = mgir.hw_info.device_id; query->rev_id = mgir.hw_info.device_hw_revision; query->security_type.secure_fw = mgir.fw_info.secured; query->security_type.signed_fw = mgir.fw_info.signed_fw; query->security_type.debug_fw = mgir.fw_info.debug; query->security_type.dev_fw = mgir.fw_info.dev; query->life_cycle = (life_cycle_t)mgir.fw_info.life_cycle; query->sec_boot = mgir.fw_info.sec_boot; query->encryption = mgir.fw_info.encryption; query->signed_fw = _compsQueryMap[FwComponent::COMPID_BOOT_IMG].comp_cap.signed_updates_only; /* Since in switches MGIR 'dev' field is used to indicate dev-branch instead of the original purpose for dev-secure, */ /* we now read from a new field called 'dev_sc' to determine if the switch is dev-secure */ dm_dev_id_t dm_device_id = DeviceUnknown; if (dm_get_device_id_offline(query->hw_dev_id, query->rev_id, &dm_device_id) == ME_OK) { if (dm_dev_is_switch(dm_device_id)) { query->security_type.dev_fw = mgir.fw_info.dev_sc; } } else { _lastError = FWCOMPS_UNSUPPORTED_DEVICE; return false; } query->base_mac_orig.uid = ((u_int64_t)mgir.hw_info.manufacturing_base_mac_47_32 << 32 | mgir.hw_info.manufacturing_base_mac_31_0); if (!extractMacsGuids(query)) { /* * We don't fail, it will show NA in the query */ } extractRomInfo(&mgir, query); /* * MQIS */ vector < u_int8_t > nameInfoString; vector < u_int8_t > descriptionInfoString; vector < u_int8_t > imageVsd; vector < u_int8_t > deviceVsd; if (getDeviceHWInfo(FwCompsMgr::MQIS_REGISTER_DEVICE_NAME, nameInfoString)) { strncpy(query->name, (char*)nameInfoString.data(), NAME_LEN - 1); } if (getDeviceHWInfo(FwCompsMgr::MQIS_REGISTER_DEVICE_DESCRIPTION_INFO, descriptionInfoString)) { strncpy(query->description, (char*)descriptionInfoString.data(), DESCRIPTION_LEN - 1); } if (getDeviceHWInfo(FwCompsMgr::MQIS_REGISTER_IMAGE_VSD, imageVsd)) { strncpy(query->imageVsd, (char*)imageVsd.data(), VSD_LEN); } if (getDeviceHWInfo(FwCompsMgr::MQIS_REGISTER_DEVICE_VSD, deviceVsd)) { strncpy(query->deviceVsd, (char*)deviceVsd.data(), VSD_LEN); } return true; } unsigned char* FwCompsMgr::getLastErrMsg() { static unsigned char bufferErr[512] = {0}; memset(bufferErr, 0, sizeof(bufferErr)); switch (_lastError) { case FWCOMPS_ABORTED: return (unsigned char*)"Aborting ... received interrupt signal"; case FWCOMPS_MCC_ERR_ERROR: return (unsigned char*)"MCC error"; case FWCOMPS_MCC_ERR_REJECTED_DIGEST_ERR: return (unsigned char*)"The Digest in the signature is wrong"; case FWCOMPS_MCC_ERR_REJECTED_UNSIGNED: return (unsigned char*)"The component is not signed"; case FWCOMPS_MCC_ERR_BLOCKED_PENDING_RESET: return (unsigned char*)"The firmware image was already updated on flash, pending reset."; case FWCOMPS_MCC_ERR_REJECTED_NOT_APPLICABLE: return (unsigned char*)"Component is not applicable"; case FWCOMPS_MCC_ERR_REJECTED_AUTH_FAILED: return (unsigned char*)"Rejected authentication"; case FWCOMPS_MCC_ERR_REJECTED_KEY_NOT_APPLICABLE: return (unsigned char*)"The key is not applicable"; case FWCOMPS_READ_COMP_NOT_SUPPORTED: return (unsigned char*)"Reading component is not supported"; case FWCOMPS_COMP_NOT_SUPPORTED: return (unsigned char*)"Component not supported"; case FWCOMPS_VERIFY_FAILED: return (unsigned char*)"Firmware verifying failed!"; case FWCOMPS_CR_ERR: return (unsigned char*)"Failed to access CR-Space"; case FWCOMPS_MCC_REJECTED_NOT_A_SECURED_FW: return (unsigned char*)"The firmware image is not secured"; case FWCOMPS_MCC_REJECTED_MFG_BASE_MAC_NOT_LISTED: return (unsigned char*)"The manufacturing base MAC was not listed"; case FWCOMPS_MCC_REJECTED_NO_DEBUG_TOKEN: return (unsigned char*)"There is no Debug Token installed"; case FWCOMPS_MCC_REJECTED_VERSION_NUM_MISMATCH: return (unsigned char*)"Firmware version mismatch"; case FWCOMPS_MCC_REJECTED_USER_TIMESTAMP_MISMATCH: return (unsigned char*)"User timestamp mismatch"; case FWCOMPS_MCC_REJECTED_FORBIDDEN_VERSION: return (unsigned char*)"Forbidden version rejected"; case FWCOMPS_MCC_FLASH_ERASE_ERROR: return (unsigned char*)"Error while erasing the flash"; case FWCOMPS_MCC_UNEXPECTED_STATE: return (unsigned char*)"Unexpected state"; case FWCOMPS_MCC_TOUT: return (unsigned char*)"Time-out reached while waiting for the FSM to be updated"; case FWCOMPS_MCC_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION: return (unsigned char*)"Image cannot boot from partition."; case FWCOMPS_MCC_REJECTED_LINKX_TYPE_NOT_SUPPORTED: if (_rejectedIndex != -1) { sprintf((char*)bufferErr, "LinkX type not supported for device index %d\n", _rejectedIndex); return bufferErr; } else { return (unsigned char*)"LinkX type not supported"; } case FWCOMPS_MCC_REJECTED_HOST_STORAGE_IN_USE: return (unsigned char*)"Host storage is in use"; case FWCOMPS_MCC_REJECTED_LINKX_TRANSFER: if (_rejectedIndex != -1) { sprintf((char*)bufferErr, "LinkX downstream transfer failed for device index %d\n", _rejectedIndex); return bufferErr; } else { return (unsigned char*)"LinkX downstream transfer failed"; } case FWCOMPS_MCC_REJECTED_LINKX_ACTIVATE: if (_rejectedIndex != -1) { sprintf((char*)bufferErr, "LinkX activation failed for device index %d\n", _rejectedIndex); return bufferErr; } else { return (unsigned char*)"LinkX activation failed"; } case FWCOMPS_MCC_REJECTED_INCOMPATIBLE_FLASH: return (unsigned char*)"The image does not support the device's flash type"; case FWCOMPS_MCC_REJECTED_TOKEN_ALREADY_APPLIED: return (unsigned char*)"Token already applied"; case FWCOMPS_MCC_REJECTED_FW_BURN_DRAM_NOT_AVAILABLE: return (unsigned char*)"DRAM not available"; case FWCOMPS_UNSUPPORTED_DEVICE: return (unsigned char*)"Unsupported device"; case FWCOMPS_MTCR_OPEN_DEVICE_ERROR: return (unsigned char*)"Failed to open device"; case FWCOMPS_FAIL_TO_LOCK_FLASH_SEMAPHORE: return (unsigned char*)"Failed to lock flash semaphore"; case FWCOMPS_FAIL_TO_CREATE_TRM_CONTEXT: return (unsigned char*)"Failed to create TRM context"; case FWCOMPS_REG_ACCESS_BAD_STATUS_ERR: case FWCOMPS_REG_ACCESS_BAD_METHOD: case FWCOMPS_REG_ACCESS_NOT_SUPPORTED: case FWCOMPS_REG_ACCESS_DEV_BUSY: case FWCOMPS_REG_ACCESS_VER_NOT_SUPP: case FWCOMPS_REG_ACCESS_UNKNOWN_TLV: case FWCOMPS_REG_ACCESS_REG_NOT_SUPP: case FWCOMPS_REG_ACCESS_CLASS_NOT_SUPP: case FWCOMPS_REG_ACCESS_METHOD_NOT_SUPP: case FWCOMPS_REG_ACCESS_BAD_PARAM: case FWCOMPS_REG_ACCESS_RES_NOT_AVLBL: case FWCOMPS_REG_ACCESS_MSG_RECPT_ACK: case FWCOMPS_REG_ACCESS_UNKNOWN_ERR: case FWCOMPS_REG_ACCESS_SIZE_EXCCEEDS_LIMIT: case FWCOMPS_REG_ACCESS_CONF_CORRUPT: case FWCOMPS_REG_ACCESS_LEN_TOO_SMALL: case FWCOMPS_REG_ACCESS_BAD_CONFIG: case FWCOMPS_REG_ACCESS_ERASE_EXEEDED: case FWCOMPS_REG_ACCESS_INTERNAL_ERROR: return (unsigned char*)reg_access_err2str(_lastRegAccessStatus); default: if (_lastRegAccessStatus) { return (unsigned char*)reg_access_err2str(_lastRegAccessStatus); } return (unsigned char*)"GENERAL ERROR"; } } bool FwCompsMgr::lock_flash_semaphore() { #ifndef UEFI_BUILD int rc = 0; trm_sts trm_rc = trm_create(&_trm, _mf); if (trm_rc) { _lastError = FWCOMPS_FAIL_TO_CREATE_TRM_CONTEXT; return false; } rc = trm_lock(_trm, TRM_RES_FLASH_PROGRAMING, MAX_FLASH_PROG_SEM_RETRY_CNT); if (rc && (rc != TRM_STS_RES_NOT_SUPPORTED)) { _lastError = FWCOMPS_FAIL_TO_LOCK_FLASH_SEMAPHORE; return false; } #endif return true; } void FwCompsMgr::unlock_flash_semaphore() { #ifndef UEFI_BUILD if (_trm != NULL) { trm_unlock(_trm, TRM_RES_FLASH_PROGRAMING); trm_destroy(_trm); _trm = NULL; } #endif } void FwCompsMgr::deal_with_signal() { #ifndef UEFI_BUILD int sig; sig = mft_signal_is_fired(); if (sig) { unlock_flash_semaphore(); /* reset received signal */ mft_signal_set_fired(0); /* retore prev handler */ mft_signal_set_handling(0); /* raise signal to let the previous handle deal with it. */ raise(sig); } mft_signal_set_handling(0); #endif return; } bool FwCompsMgr::getComponentVersion(FwComponent::comps_ids_t compType, bool pending, component_version_st* cmpVer) { std::vector < u_int32_t > imageInfoData; if (!cmpVer) { _lastError = FWCOMPS_BAD_PARAM; return false; } if (!readComponentInfo(compType, COMPINFO_VERSIONS, imageInfoData, pending)) { return false; } memset(cmpVer, 0, sizeof(component_version_st)); cmpVer->version_string_length = _currCompInfo.data.mcqi_version_ext.version_string_length; cmpVer->user_defined_time_valid = _currCompInfo.data.mcqi_version_ext.user_defined_time_valid; cmpVer->build_time_valid = _currCompInfo.data.mcqi_version_ext.build_time_valid; cmpVer->version = _currCompInfo.data.mcqi_version_ext.version; cmpVer->build_time = _currCompInfo.data.mcqi_version_ext.build_time; cmpVer->user_defined_time = _currCompInfo.data.mcqi_version_ext.user_defined_time; cmpVer->build_tool_version = _currCompInfo.data.mcqi_version_ext.build_tool_version; if (_currCompInfo.data.mcqi_version_ext.version_string_length) { memcpy(cmpVer->version_string, _currCompInfo.data.mcqi_version_ext.version_string, _currCompInfo.data.mcqi_version_ext.version_string_length); _productVerStr.resize(_currCompInfo.data.mcqi_version_ext.version_string_length); memcpy(_productVerStr.data(), _currCompInfo.data.mcqi_version_ext.version_string, _currCompInfo.data.mcqi_version_ext.version_string_length); } return true; } bool FwCompsMgr::GetComponentInfo(FwComponent::comps_ids_t compType, u_int32_t deviceIndex, vector& data) { u_int32_t tmpDeviceIndex = _deviceIndex; bool rc; _deviceIndex = deviceIndex; rc = GetComponentInfo(compType, data); _deviceIndex = tmpDeviceIndex; return rc; } bool FwCompsMgr::GetComponentInfo(FwComponent::comps_ids_t compType, vector& data) { std::vector imageInfoData; comp_info_t infoType; switch (compType) { case FwComponent::COMPID_CLOCK_SYNC_EEPROM: infoType = COMPINFO_CLOCK_SOURCE_PROPERTIES; break; case FwComponent::COMPID_UNKNOWN: default: _lastError = FWCOMPS_COMP_NOT_SUPPORTED; return false; } if (!IsDevicePresent(compType) && _lastError != FWCOMPS_DEVICE_NOT_PRESENT) { return false; } if (!readComponentInfo(compType, infoType, imageInfoData, false)) { return false; } data.resize(imageInfoData.size() * 4); memcpy(data.data(), imageInfoData.data(), data.size()); return true; } bool FwCompsMgr::IsDevicePresent(FwComponent::comps_ids_t compType) { comp_status_st query; memset(&query, 0, sizeof(query)); if (_compsQueryMap[compType].valid) { if (!queryComponentStatus(_compsQueryMap[compType].comp_status.component_index, &query)) { return false; } if (query.component_status == 0) { _lastError = FWCOMPS_DEVICE_NOT_PRESENT; return false; } } else { _lastError = FWCOMPS_COMP_NOT_SUPPORTED; return false; } return true; } bool FwCompsMgr::GetComponentSyncEProperties(component_synce_st& cmpSyncE) { std::vector imageInfoData; if (!readComponentInfo(FwComponent::COMPID_CLOCK_SYNC_EEPROM, COMPINFO_CLOCK_SOURCE_PROPERTIES, imageInfoData, false)) { return false; } reg_access_hca_mcqi_clock_source_properties_ext_unpack(&cmpSyncE, (u_int8_t*)imageInfoData.data()); return true; } bool FwCompsMgr::GetComponentLinkxProperties(FwComponent::comps_ids_t compType, component_linkx_st* cmpLinkX) { std::vector < u_int32_t > imageInfoData; if (!cmpLinkX) { _lastError = FWCOMPS_BAD_PARAM; return false; } _deviceIndex = _linkXDeviceIndex; /* make MCQS first of all to check if device is present */ comp_query_st* currCompQuery = &(_compsQueryMap[compType]); u_int32_t componentIndex = currCompQuery->comp_status.component_index; comp_status_st query; memset(&query, 0, sizeof(query)); if (!queryComponentStatus(componentIndex, &query)) { return false; } if (query.component_status == 0) { printf("Cable %d is not found, please check that cable connected.\n", _deviceIndex - 1); _lastError = FWCOMPS_MCC_ERR_REJECTED_NOT_APPLICABLE; return false; } if (!readComponentInfo(compType, COMPINFO_LINKX_PROPERTIES, imageInfoData, false)) { return false; } memset(cmpLinkX, 0, sizeof(component_linkx_st)); cmpLinkX->fw_image_status_bitmap = _currCompInfo.data.mcqi_linkx_properties_ext.fw_image_status_bitmap; cmpLinkX->fw_image_info_bitmap = _currCompInfo.data.mcqi_linkx_properties_ext.fw_image_info_bitmap; cmpLinkX->image_a_minor = _currCompInfo.data.mcqi_linkx_properties_ext.image_a_minor; cmpLinkX->image_a_major = _currCompInfo.data.mcqi_linkx_properties_ext.image_a_major; cmpLinkX->image_a_subminor = _currCompInfo.data.mcqi_linkx_properties_ext.image_a_subminor; cmpLinkX->image_b_minor = _currCompInfo.data.mcqi_linkx_properties_ext.image_b_minor; cmpLinkX->image_b_major = _currCompInfo.data.mcqi_linkx_properties_ext.image_b_major; cmpLinkX->image_b_subminor = _currCompInfo.data.mcqi_linkx_properties_ext.image_b_subminor; cmpLinkX->factory_image_minor = _currCompInfo.data.mcqi_linkx_properties_ext.factory_image_minor; cmpLinkX->factory_image_major = _currCompInfo.data.mcqi_linkx_properties_ext.factory_image_major; cmpLinkX->factory_image_subminor = _currCompInfo.data.mcqi_linkx_properties_ext.factory_image_subminor; cmpLinkX->management_interface_protocol = _currCompInfo.data.mcqi_linkx_properties_ext.management_interface_protocol; cmpLinkX->activation_type = _currCompInfo.data.mcqi_linkx_properties_ext.activation_type; cmpLinkX->vendor_sn = _currCompInfo.data.mcqi_linkx_properties_ext.vendor_sn; return true; } bool FwCompsMgr::readBlockFromComponent(FwComponent::comps_ids_t compId, u_int32_t offset, u_int32_t size, std::vector < u_int8_t >& data) { if (!RefreshComponentsStatus()) { return false; } _currCompQuery = &(_compsQueryMap[compId]); _componentIndex = _currCompQuery->comp_status.component_index; u_int32_t compSize = _currCompQuery->comp_cap.component_size; if (offset + size > compSize) { _lastError = FWCOMPS_READ_OUTSIDE_IMAGE_RANGE; return false; } if (_currCompQuery->comp_cap.rd_en) { data.resize(size); if (!controlFsm(FSM_CMD_LOCK_UPDATE_HANDLE, FSMST_LOCKED)) { return false; } control_fsm_args_t fsmReadCommand; fsmReadCommand.command = FSM_CMD_READ_PENDING_COMPONENT; fsmReadCommand.expectedState = FSMST_UPLOAD; if (!controlFsm(FSM_CMD_READ_PENDING_COMPONENT, FSMST_UPLOAD)) { fsmReadCommand.command = FSM_CMD_READ_COMPONENT; if (!controlFsm(FSM_CMD_READ_COMPONENT, FSMST_UPLOAD)) { _lastError = FWCOMPS_READ_COMP_FAILED; return false; } } if (!accessComponent(offset, size, (u_int32_t*)(data.data()), MCC_READ_COMP, NULL, &fsmReadCommand)) { return false; } if (!controlFsm(FSM_CMD_RELEASE_UPDATE_HANDLE)) { return false; } } else { _lastError = FWCOMPS_READ_COMP_NOT_SUPPORTED; DPRINTF(("readBlockFromComponent : RD EN is 0 for component index %u compId %s \n", _componentIndex, FwComponent::getCompIdStr(compId))); return false; } return true; } bool FwCompsMgr::fwReactivateImage() { tools_open_mirc_reg mirc; mirc.status_code = 0; int currentIteration = 0; int sleepTimeMs = 50; int maxWaitingTime = 30000; /* 30 sec is enough time */ int maxNumOfIterations = maxWaitingTime / sleepTimeMs; /* 600 iterations */ if (_mircCaps == false) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FW_NOT_SUPPORTED; setLastRegisterAccessStatus(ME_REG_ACCESS_NOT_SUPPORTED); return false; } reg_access_status_t rc = ME_OK; memset(&mirc, 0, sizeof(mirc)); rc = reg_access_mirc(_mf, REG_ACCESS_METHOD_SET, &mirc); /* send trigger to FW */ deal_with_signal(); if (rc) { DPRINTF(("1 reg_access_mirc failed rc = %d\n", rc)); _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); return false; } memset(&mirc, 0, sizeof(mirc)); msleep(sleepTimeMs); rc = reg_access_mirc(_mf, REG_ACCESS_METHOD_GET, &mirc); if (rc) { DPRINTF(("2 reg_access_mirc failed rc = %d\n", rc)); _lastError = regErrTrans(rc); return false; } DPRINTF(("1 mirc.status_code = %d\n", mirc.status_code)); while (mirc.status_code == IMAGE_REACTIVATION_BUSY) { msleep(sleepTimeMs); rc = reg_access_mirc(_mf, REG_ACCESS_METHOD_GET, &mirc); deal_with_signal(); if (rc) { _lastError = regErrTrans(rc); setLastRegisterAccessStatus(rc); DPRINTF(("3 reg_access_mirc failed rc = %d\n", rc)); return false; } DPRINTF(("2 iteration %d mirc.status_code = %d\n", currentIteration++, mirc.status_code)); if (currentIteration >= maxNumOfIterations) { _lastError = FWCOMPS_IMAGE_REACTIVATION_WAITING_TIME_EXPIRED; return false; } } if (mirc.status_code == IMAGE_REACTIVATION_SUCCESS) { return true; } else if (mirc.status_code == IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR) { _lastError = FWCOMPS_IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR; } else if (mirc.status_code == IMAGE_REACTIVATION_FIRST_PAGE_COPY_FAILED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_COPY_FAILED; } else if (mirc.status_code == IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED; } else if (mirc.status_code == IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED; } else if (mirc.status_code == IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED; } else if (mirc.status_code == IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED; } else if (mirc.status_code == IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED; } else if (mirc.status_code == IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED) { _lastError = FWCOMPS_IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED; } else { _lastError = FWCOMPS_IMAGE_REACTIVATION_UNKNOWN_ERROR; } return false; } void FwCompsMgr::setLastFirmwareError(fw_comps_error_t fw_error) { _lastError = fw_error; } void FwCompsMgr::setLastRegisterAccessStatus(reg_access_status_t err) { _lastRegAccessStatus = err; } fw_comps_error_t FwCompsMgr::regErrTrans(reg_access_status_t err) { if (err != ME_REG_ACCESS_OK) { DPRINTF(("%s error - %d\n", __FUNCTION__, err)); } switch (err) { case ME_REG_ACCESS_OK: return FWCOMPS_REG_ACCESS_OK; case ME_REG_ACCESS_BAD_STATUS_ERR: return FWCOMPS_REG_ACCESS_BAD_STATUS_ERR; case ME_REG_ACCESS_BAD_METHOD: return FWCOMPS_REG_ACCESS_BAD_STATUS_ERR; case ME_REG_ACCESS_NOT_SUPPORTED: return FWCOMPS_REG_ACCESS_NOT_SUPPORTED; case ME_REG_ACCESS_DEV_BUSY: return FWCOMPS_REG_ACCESS_DEV_BUSY; case ME_REG_ACCESS_VER_NOT_SUPP: return FWCOMPS_REG_ACCESS_VER_NOT_SUPP; case ME_REG_ACCESS_UNKNOWN_TLV: return FWCOMPS_REG_ACCESS_UNKNOWN_TLV; case ME_REG_ACCESS_REG_NOT_SUPP: return FWCOMPS_REG_ACCESS_REG_NOT_SUPP; case ME_REG_ACCESS_CLASS_NOT_SUPP: return FWCOMPS_REG_ACCESS_CLASS_NOT_SUPP; case ME_REG_ACCESS_METHOD_NOT_SUPP: return FWCOMPS_REG_ACCESS_METHOD_NOT_SUPP; case ME_REG_ACCESS_BAD_PARAM: return FWCOMPS_REG_ACCESS_BAD_PARAM; case ME_REG_ACCESS_RES_NOT_AVLBL: return FWCOMPS_REG_ACCESS_RES_NOT_AVLBL; case ME_REG_ACCESS_MSG_RECPT_ACK: return FWCOMPS_REG_ACCESS_MSG_RECPT_ACK; case ME_REG_ACCESS_UNKNOWN_ERR: return FWCOMPS_REG_ACCESS_UNKNOWN_ERR; case ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT: return FWCOMPS_REG_ACCESS_SIZE_EXCCEEDS_LIMIT; case ME_REG_ACCESS_CONF_CORRUPT: return FWCOMPS_REG_ACCESS_CONF_CORRUPT; case ME_REG_ACCESS_LEN_TOO_SMALL: return FWCOMPS_REG_ACCESS_CONF_CORRUPT; case ME_REG_ACCESS_BAD_CONFIG: return FWCOMPS_REG_ACCESS_BAD_CONFIG; case ME_REG_ACCESS_ERASE_EXEEDED: return FWCOMPS_REG_ACCESS_ERASE_EXEEDED; case ME_REG_ACCESS_INTERNAL_ERROR: return FWCOMPS_REG_ACCESS_INTERNAL_ERROR; default: return FWCOMPS_GENERAL_ERR; } } fw_comps_error_t FwCompsMgr::mccErrTrans(u_int8_t err) { if (err != MCC_ERRCODE_OK) { DPRINTF(("\nMCC ERROR: %x\n", err)); } switch (err) { case MCC_ERRCODE_OK: return FWCOMPS_SUCCESS; case MCC_ERRCODE_ERROR: return FWCOMPS_MCC_ERR_ERROR; case MCC_ERRCODE_REJECTED_DIGEST_ERR: return FWCOMPS_MCC_ERR_REJECTED_DIGEST_ERR; case MCC_ERRCODE_REJECTED_NOT_APPLICABLE: return FWCOMPS_MCC_ERR_REJECTED_NOT_APPLICABLE; case MCC_ERRCODE_REJECTED_UNKNOWN_KEY: return FWCOMPS_MCC_ERR_REJECTED_UNKNOWN_KEY; case MCC_ERRCODE_REJECTED_AUTH_FAILED: return FWCOMPS_MCC_ERR_REJECTED_AUTH_FAILED; case MCC_ERRCODE_REJECTED_UNSIGNED: return FWCOMPS_MCC_ERR_REJECTED_UNSIGNED; case MCC_ERRCODE_REJECTED_KEY_NOT_APPLICABLE: return FWCOMPS_MCC_ERR_REJECTED_KEY_NOT_APPLICABLE; case MCC_ERRCODE_REJECTED_BAD_FORMAT: return FWCOMPS_MCC_ERR_REJECTED_BAD_FORMAT; case MCC_ERRCODE_BLOCKED_PENDING_RESET: return FWCOMPS_MCC_ERR_BLOCKED_PENDING_RESET; case MCC_ERRCODE_REJECTED_NOT_A_SECURED_FW: return FWCOMPS_MCC_REJECTED_NOT_A_SECURED_FW; case MCC_ERRCODE_REJECTED_MFG_BASE_MAC_NOT_LISTED: return FWCOMPS_MCC_REJECTED_MFG_BASE_MAC_NOT_LISTED; case MCC_ERRCODE_REJECTED_NO_DEBUG_TOKEN: return FWCOMPS_MCC_REJECTED_NO_DEBUG_TOKEN; case MCC_ERRCODE_REJECTED_VERSION_NUM_MISMATCH: return FWCOMPS_MCC_REJECTED_VERSION_NUM_MISMATCH; case MCC_ERRCODE_REJECTED_USER_TIMESTAMP_MISMATCH: return FWCOMPS_MCC_REJECTED_USER_TIMESTAMP_MISMATCH; case MCC_ERRCODE_REJECTED_FORBIDDEN_VERSION: return FWCOMPS_MCC_REJECTED_FORBIDDEN_VERSION; case MCC_ERRCODE_FLASH_ERASE_ERROR: return FWCOMPS_MCC_FLASH_ERASE_ERROR; case MCC_ERRCODE_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION: return FWCOMPS_MCC_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION; case MCC_ERRCODE_REJECTED_LINKX_TYPE_NOT_SUPPORTED: return FWCOMPS_MCC_REJECTED_LINKX_TYPE_NOT_SUPPORTED; case MCC_ERRCODE_REJECTED_HOST_STORAGE_IN_USE: return FWCOMPS_MCC_REJECTED_HOST_STORAGE_IN_USE; case MCC_ERRCODE_REJECTED_LINKX_TRANSFER: return FWCOMPS_MCC_REJECTED_LINKX_TRANSFER; case MCC_ERRCODE_REJECTED_LINKX_ACTIVATE: return FWCOMPS_MCC_REJECTED_LINKX_ACTIVATE; case MCC_ERRCODE_REJECTED_INCOMPATIBLE_FLASH: return FWCOMPS_MCC_REJECTED_INCOMPATIBLE_FLASH; case MCC_ERRCODE_REJECTED_TOKEN_ALREADY_APPLIED: return FWCOMPS_MCC_REJECTED_TOKEN_ALREADY_APPLIED; case MCC_ERRCODE_REJECTED_FW_BURN_DRAM_NOT_AVAILABLE: return FWCOMPS_MCC_REJECTED_FW_BURN_DRAM_NOT_AVAILABLE; default: return FWCOMPS_GENERAL_ERR; } } mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr.h0000644000175000017500000005071714522641732021232 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * fw_comps_mgr.h * * * Created on: Jul 31, 2016 * Author: adham */ #ifndef USER_MLXFWOPS_LIB_FW_COMPS_MGR_H_ #define USER_MLXFWOPS_LIB_FW_COMPS_MGR_H_ #include #include #include "reg_access/reg_access.h" #include "mlxfwops/uefi_c/mft_uefi_common.h" #include "mlxfwops/lib/mlxfwops_com.h" #ifndef UEFI_BUILD #include "tools_res_mgmt/tools_res_mgmt.h" #endif using namespace std; #define PSID_LEN 16 #define MAX_ROM_NUM 4 #define PRODUCT_VER_LEN 16 #define MAX_MSG_SIZE 128 #define MAX_REG_DATA 128 #ifndef UEFI_BUILD #define DPRINTF(args) \ do \ { \ char* reacDebug = getenv("FW_COMPS_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("%s:%d: ", __FILE__, __LINE__); \ printf args; \ fflush(stdout); \ } \ } while (0) #else #define DPRINTF(...) #endif typedef struct reg_access_hca_mqis_reg_ext mqisReg; typedef struct reg_access_hca_mcqs_reg_ext comp_status_st; typedef struct reg_access_hca_mcqi_reg_ext comp_info_st; typedef struct reg_access_hca_mcc_reg_ext fsm_control_st; typedef struct reg_access_hca_mcqi_cap_ext comp_cap_st; typedef struct reg_access_hca_mgir_ext mgirReg; typedef struct reg_access_hca_mcqi_version_ext component_version_st; typedef struct reg_access_hca_mcqi_linkx_properties_ext component_linkx_st; typedef struct reg_access_hca_mcqi_clock_source_properties_ext component_synce_st; typedef int (*ProgressFunc)(int completion); typedef f_prog_func_adv_st ProgressCallBackAdvSt; struct uid_entry { u_int16_t num_allocated; u_int64_t uid; }; typedef struct { u_int8_t type; u_int8_t arch; reg_access_hca_rom_version_ext version; } mgirRomInfo; typedef struct { u_int8_t secure_fw; u_int8_t signed_fw; u_int8_t debug_fw; u_int8_t dev_fw; } security_fw_t; typedef struct { component_version_st pending_fw_version; component_version_st running_fw_version; component_linkx_st linkx_data; security_fw_t security_type; char psid[PSID_LEN + 1]; char product_ver[PRODUCT_VER_LEN + 1]; uid_entry base_guid; uid_entry base_mac; uid_entry base_guid_orig; uid_entry base_mac_orig; u_int16_t dev_id; u_int16_t hw_dev_id; u_int16_t rev_id; u_int8_t signed_fw; u_int8_t pending_fw_valid; mgirRomInfo roms[MAX_ROM_NUM]; int nRoms; char name[NAME_LEN]; char description[DESCRIPTION_LEN]; char deviceVsd[VSD_LEN + 1]; char imageVsd[VSD_LEN + 1]; bool sec_boot; life_cycle_t life_cycle; bool encryption; } fwInfoT; typedef struct { comp_status_st comp_status; comp_cap_st comp_cap; int valid; } comp_query_st; typedef enum { MCC_READ_COMP = 0x0, MCC_WRITE_COMP } access_type_t; typedef struct mac_guid { guid_t mac; guid_t guid; } mac_guid_t; typedef enum { COMPINFO_CAPABILITIES = 0, COMPINFO_VERSIONS = 1, COMPINFO_PUBLIC_KEYS = 2, COMPINFO_FORBIDDEN_VERSION = 3, COMPINFO_ACTIVATION_METHOD = 5, COMPINFO_LINKX_PROPERTIES = 6, COMPINFO_CLOCK_SOURCE_PROPERTIES = 7 } comp_info_t; class FwComponent { public: typedef enum { COMPID_BOOT_IMG = 0x1, COMPID_RUNTIME_IMG = 0x2, COMPID_USER_NVCONFIG = 0x3, COMPID_OEM_NVCONFIG = 0x4, COMPID_MLNX_NVCONFIG = 0x5, COMPID_CS_TOKEN = 0x6, COMPID_DBG_TOKEN = 0x7, COMPID_DEV_INFO = 0x8, COMPID_GEARBOX = 0xA, COMPID_CONGESTION_CONTROL = 0xB, COMPID_LINKX = 0xC, COMPID_CRYPTO_TO_COMMISSIONING = 0xD, COMPID_RMCS_TOKEN = 0xE, COMPID_RMDT_TOKEN = 0xF, COMPID_CRCS_TOKEN = 0x10, COMPID_CRDT_TOKEN = 0x11, COMPID_CLOCK_SYNC_EEPROM = 0x12, DIGITAL_CACERT = 0x15, DIGITAL_CACERT_CHAIN = 0x16, DIGITAL_CACERT_REMOVAL = 0x17, DIGITAL_CACERT_CHAIN_REMOVAL = 0x18, COMPID_UNKNOWN = 0xff, } comps_ids_t; typedef enum { COMPSTAT_NOT_PRESENT = 0x0, COMPSTAT_PRESENT = 0x1, COMPSTAT_IN_USE = 0x2, COMPSTAT_UNKNOWN = 0xff } comps_status_t; FwComponent() : _size(0), _type(COMPID_UNKNOWN), _componentIndex(0xffffffff), _initialized(false), _status(COMPSTAT_UNKNOWN){}; FwComponent(comps_ids_t compId) : _size(0), _type(compId), _componentIndex(0xffffffff), _initialized(false), _status(COMPSTAT_UNKNOWN){}; FwComponent(comps_ids_t compId, comps_status_t compStat) : _size(0), _type(compId), _componentIndex(0xffffffff), _initialized(false), _status(compStat){}; ~FwComponent(){}; bool init(const std::vector& buff, u_int32_t size, comps_ids_t type, u_int32_t idx = 0xffffffff); std::vector& getData() { return _data; }; u_int32_t getSize() { return _size; }; comps_ids_t getType() { return _type; }; comps_status_t getStatus() { return _status; }; void setData(const std::vector& buff) { _data = buff; }; void setSize(u_int32_t size) { _size = size; }; void setType(comps_ids_t compId) { _type = compId; }; void setStatus(comps_status_t compStat) { _status = compStat; }; static const char* getCompIdStr(comps_ids_t compId); static comps_ids_t getCompId(string compId); private: std::vector _data; u_int32_t _size; comps_ids_t _type; u_int32_t _componentIndex; bool _initialized; comps_status_t _status; }; typedef enum { FWCOMPS_SUCCESS = 0x0, FWCOMPS_INFO_TYPE_NOT_SUPPORTED, FWCOMPS_COMP_NOT_SUPPORTED, FWCOMPS_REG_FAILED, FWCOMPS_READ_COMP_FAILED, FWCOMPS_QUERY_FAILED, FWCOMPS_MEM_ALLOC_FAILED, FWCOMPS_DOWNLOAD_FAILED, FWCOMPS_MCC_TOUT, FWCOMPS_ABORTED, FWCOMPS_READ_COMP_NOT_SUPPORTED, FWCOMPS_BAD_PARAM, FWCOMPS_GENERAL_ERR, FWCOMPS_CR_ERR, FWCOMPS_READ_OUTSIDE_IMAGE_RANGE, FWCOMPS_UNSUPPORTED_DEVICE, FWCOMPS_MTCR_OPEN_DEVICE_ERROR, FWCOMPS_FAIL_TO_CREATE_TRM_CONTEXT, FWCOMPS_FAIL_TO_LOCK_FLASH_SEMAPHORE, FWCOMPS_VERIFY_FAILED, FWCOMPS_DEVICE_NOT_PRESENT, // MCC Return codes FWCOMPS_MCC_ERR_CODES = 0x100, FWCOMPS_MCC_ERR_ERROR = 0x101, FWCOMPS_MCC_ERR_REJECTED_DIGEST_ERR = 0x102, FWCOMPS_MCC_ERR_REJECTED_NOT_APPLICABLE = 0x103, FWCOMPS_MCC_ERR_REJECTED_UNKNOWN_KEY = 0x104, FWCOMPS_MCC_ERR_REJECTED_AUTH_FAILED = 0x105, FWCOMPS_MCC_ERR_REJECTED_UNSIGNED = 0x106, FWCOMPS_MCC_ERR_REJECTED_KEY_NOT_APPLICABLE = 0x107, FWCOMPS_MCC_ERR_REJECTED_BAD_FORMAT = 0x108, FWCOMPS_MCC_ERR_BLOCKED_PENDING_RESET = 0x109, FWCOMPS_MCC_UNEXPECTED_STATE = 0x10A, FWCOMPS_MCC_REJECTED_NOT_A_SECURED_FW = 0x10B, FWCOMPS_MCC_REJECTED_MFG_BASE_MAC_NOT_LISTED = 0x10C, FWCOMPS_MCC_REJECTED_NO_DEBUG_TOKEN = 0x10D, FWCOMPS_MCC_REJECTED_VERSION_NUM_MISMATCH = 0x10E, FWCOMPS_MCC_REJECTED_USER_TIMESTAMP_MISMATCH = 0x10F, FWCOMPS_MCC_REJECTED_FORBIDDEN_VERSION = 0x110, FWCOMPS_MCC_FLASH_ERASE_ERROR = 0x111, FWCOMPS_MCC_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION = 0x112, FWCOMPS_MCC_REJECTED_LINKX_TYPE_NOT_SUPPORTED = 0x113, FWCOMPS_MCC_REJECTED_HOST_STORAGE_IN_USE = 0x114, FWCOMPS_MCC_REJECTED_LINKX_TRANSFER = 0x115, FWCOMPS_MCC_REJECTED_LINKX_ACTIVATE = 0x116, FWCOMPS_MCC_REJECTED_INCOMPATIBLE_FLASH = 0x117, FWCOMPS_MCC_REJECTED_TOKEN_ALREADY_APPLIED = 0x118, FWCOMPS_MCC_REJECTED_FW_BURN_DRAM_NOT_AVAILABLE = 0x119, // errors regarding REG_ACCESS FWCOMPS_REG_ACCESS_OK = 0, FWCOMPS_REG_ACCESS_BAD_STATUS_ERR = 0x200, FWCOMPS_REG_ACCESS_BAD_METHOD, FWCOMPS_REG_ACCESS_NOT_SUPPORTED, FWCOMPS_REG_ACCESS_DEV_BUSY, FWCOMPS_REG_ACCESS_VER_NOT_SUPP, FWCOMPS_REG_ACCESS_UNKNOWN_TLV, FWCOMPS_REG_ACCESS_REG_NOT_SUPP, FWCOMPS_REG_ACCESS_CLASS_NOT_SUPP, FWCOMPS_REG_ACCESS_METHOD_NOT_SUPP, FWCOMPS_REG_ACCESS_BAD_PARAM, FWCOMPS_REG_ACCESS_RES_NOT_AVLBL, FWCOMPS_REG_ACCESS_MSG_RECPT_ACK, FWCOMPS_REG_ACCESS_UNKNOWN_ERR, FWCOMPS_REG_ACCESS_SIZE_EXCCEEDS_LIMIT, FWCOMPS_REG_ACCESS_CONF_CORRUPT, FWCOMPS_REG_ACCESS_LEN_TOO_SMALL, FWCOMPS_REG_ACCESS_BAD_CONFIG, FWCOMPS_REG_ACCESS_ERASE_EXEEDED, FWCOMPS_REG_ACCESS_INTERNAL_ERROR, FWCOMPS_IMAGE_REACTIVATION_SUCCESS = 0x300, FWCOMPS_IMAGE_REACTIVATION_BUSY, FWCOMPS_IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR, FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_COPY_FAILED, FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED, FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED, FWCOMPS_IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED, FWCOMPS_IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED, FWCOMPS_IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED, FWCOMPS_IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED, FWCOMPS_IMAGE_REACTIVATION_FW_NOT_SUPPORTED, FWCOMPS_IMAGE_REACTIVATION_UNKNOWN_ERROR, FWCOMPS_IMAGE_REACTIVATION_WAITING_TIME_EXPIRED } fw_comps_error_t; typedef enum { FSM_QUERY = 0, FSM_CMD_LOCK_UPDATE_HANDLE = 0x1, FSM_CMD_RELEASE_UPDATE_HANDLE = 0x2, FSM_CMD_UPDATE_COMPONENT = 0x3, FSM_CMD_VERIFY_COMPONENT = 0x4, FSM_CMD_ACTIVATE_COMPONENET = 0x5, FSM_CMD_ACTIVATE_ALL = 0x6, FSM_CMD_READ_COMPONENT = 0x7, FSM_CMD_CANCEL = 0x8, FSM_CMD_CHECK_UPDATE_HANDLE = 0x9, FSM_CMD_FORCE_HANDLE_RELEASE = 0xA, FSM_CMD_READ_PENDING_COMPONENT = 0xB, FSM_CMD_DOWNSTREAM_DEVICE_TRANSFER = 0xC, FSM_CMD_UNDEFINED = 0xFF, } fsm_command_t; typedef enum { FMPT_FIRST_PAGE = 0, FMPT_SECOND_PAGE, FMPT_MAILBOX_PAGE, FMPT_ALLOCATED_LIST_LENGTH } fsm_memory_page_index_t; typedef enum { FFS_FW_UNKNOWN = 0, FFS_FW_BUSY = 1, FFS_FW_OK, FFS_FW_ERROR } fsm_fw_status_t; class AbstractComponentAccess; class FwCompsMgr { public: typedef enum { MQIS_REGISTER_FIRST_VALUE = 1, MQIS_REGISTER_DEVICE_NAME = MQIS_REGISTER_FIRST_VALUE, MQIS_REGISTER_DEVICE_DESCRIPTION_INFO = 2, MQIS_REGISTER_IMAGE_VSD = 3, MQIS_REGISTER_DEVICE_VSD = 4, MQIS_REGISTER_ROM_INFO = 5, MQIS_REGISTER_LAST_VALUE = MQIS_REGISTER_ROM_INFO } MQISDeviceDescriptionT; typedef enum { DEVICE_HCA_SWITCH = 0, DEVICE_GEARBOX = 1, DEVICE_UNKNOWN } DeviceTypeT; FwCompsMgr(const char* devname, DeviceTypeT devType = DEVICE_HCA_SWITCH, int deviceIndex = 0); FwCompsMgr(mfile* mf, DeviceTypeT devType = DEVICE_HCA_SWITCH, int deviceIndex = 0); FwCompsMgr(uefi_Dev_t* uefi_dev, uefi_dev_extra_t* uefi_extra); virtual ~FwCompsMgr(); u_int32_t getFwSupport(); mfile* getMfileObj() { return _mf; }; bool fwReactivateImage(); bool burnComponents(std::vector& comps, ProgressCallBackAdvSt* progressFuncAdv = (ProgressCallBackAdvSt*)NULL); bool getFwComponents(std::vector& comps, bool readEn = false); bool readComponent(FwComponent::comps_ids_t compType, FwComponent& fwComp, bool readPending = false, ProgressCallBackAdvSt* progressFuncAdv = (ProgressCallBackAdvSt*)NULL); bool queryFwInfo(fwInfoT* query, bool next_boot_fw_ver = false); bool forceRelease(); fw_comps_error_t getLastError() { return _lastError; }; unsigned char* getLastErrMsg(); bool readBlockFromComponent(FwComponent::comps_ids_t compId, u_int32_t offset, u_int32_t size, std::vector& data); bool setMacsGuids(mac_guid_t macGuid); bool getDeviceHWInfo(FwCompsMgr::MQISDeviceDescriptionT op, vector& infoString); void deal_with_signal(); void setLastFirmwareError(fw_comps_error_t fw_error); void setLastRegisterAccessStatus(reg_access_status_t err); fw_comps_error_t mccErrTrans(u_int8_t err); fw_comps_error_t regErrTrans(reg_access_status_t err); bool lock_flash_semaphore(); void unlock_flash_semaphore(); void SetIndexAndSize(int deviceIndex, int deviceSize, bool autoUpdate = false, bool activationNeeded = true, bool downloadTransferNeeded = true, int activate_delay_sec = 0); void SetActivationStep(bool activationNeeded) { _activationNeeded = activationNeeded; } bool RefreshComponentsStatus(comp_status_st* ComponentStatus = NULL); bool GetComponentLinkxProperties(FwComponent::comps_ids_t compType, component_linkx_st* cmpLinkX); bool GetComponentSyncEProperties(component_synce_st& cmpSyncE); bool GetComponentInfo(FwComponent::comps_ids_t compType, vector& data); bool GetComponentInfo(FwComponent::comps_ids_t compType, u_int32_t deviceIndex, vector& data); void GenerateHandle(); bool isMCDDSupported() { return _isDmaSupported; }; bool IsSecondaryHost(bool& isSecondary); private: typedef enum { FSMST_IDLE = 0x0, FSMST_LOCKED = 0x1, FSMST_INITIALIZE = 0x2, FSMST_DOWNLOAD = 0x3, FSMST_VERIFY = 0x4, FSMST_APPLY = 0x5, FSMST_ACTIVATE = 0x6, FSMST_UPLOAD = 0x7, FSMST_UPLOAD_PENDING = 0x8, FSMST_DOWNSTREAM_DEVICE_TRANSFER = 0x9, FSMST_NA = 0xFF, } fsm_state_t; typedef struct control_fsm_args { control_fsm_args() : command(FSM_CMD_UNDEFINED), expectedState(FSMST_NA), size(0), currentState(FSMST_NA), progressFuncAdv(NULL), reg_access_timeout(0) { } fsm_command_t command; fsm_state_t expectedState; u_int32_t size; fsm_state_t currentState; ProgressCallBackAdvSt* progressFuncAdv; u_int32_t reg_access_timeout; } control_fsm_args_t; typedef enum { MCC_ERRCODE_OK = 0x0, MCC_ERRCODE_ERROR = 0x1, MCC_ERRCODE_REJECTED_DIGEST_ERR = 0x2, MCC_ERRCODE_REJECTED_NOT_APPLICABLE = 0x3, MCC_ERRCODE_REJECTED_UNKNOWN_KEY = 0x4, MCC_ERRCODE_REJECTED_AUTH_FAILED = 0x5, MCC_ERRCODE_REJECTED_UNSIGNED = 0x6, MCC_ERRCODE_REJECTED_KEY_NOT_APPLICABLE = 0x7, MCC_ERRCODE_REJECTED_BAD_FORMAT = 0x8, MCC_ERRCODE_BLOCKED_PENDING_RESET = 0x9, MCC_ERRCODE_REJECTED_NOT_A_SECURED_FW = 0xA, MCC_ERRCODE_REJECTED_MFG_BASE_MAC_NOT_LISTED = 0xB, MCC_ERRCODE_REJECTED_NO_DEBUG_TOKEN = 0xC, MCC_ERRCODE_REJECTED_VERSION_NUM_MISMATCH = 0xD, MCC_ERRCODE_REJECTED_USER_TIMESTAMP_MISMATCH = 0xE, MCC_ERRCODE_REJECTED_FORBIDDEN_VERSION = 0xF, MCC_ERRCODE_FLASH_ERASE_ERROR = 0x10, MCC_ERRCODE_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION = 0x11, MCC_ERRCODE_REJECTED_LINKX_TYPE_NOT_SUPPORTED = 0x12, MCC_ERRCODE_REJECTED_HOST_STORAGE_IN_USE = 0x13, MCC_ERRCODE_REJECTED_LINKX_TRANSFER = 0x14, MCC_ERRCODE_REJECTED_LINKX_ACTIVATE = 0x15, MCC_ERRCODE_REJECTED_INCOMPATIBLE_FLASH = 0x16, MCC_ERRCODE_REJECTED_TOKEN_ALREADY_APPLIED = 0x17, MCC_ERRCODE_REJECTED_FW_BURN_DRAM_NOT_AVAILABLE = 0x18 } mcc_command_error_t; typedef enum { IMAGE_REACTIVATION_SUCCESS = 0, IMAGE_REACTIVATION_BUSY = 1, IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR = 2, IMAGE_REACTIVATION_FIRST_PAGE_COPY_FAILED = 3, IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED = 4, IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED = 5, IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED = 6, IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED = 7, IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED = 8, IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED = 9 } image_reactivation_command_error_t; const char* stateToStr(fsm_state_t); const char* commandToStr(fsm_command_t cmd); void initialize(mfile* mf); bool accessComponent(u_int32_t offset, u_int32_t size, u_int32_t data[], access_type_t access, ProgressCallBackAdvSt* progressFuncAdv = (ProgressCallBackAdvSt*)NULL, control_fsm_args_t* lastFsmCommandArgs = NULL); bool queryComponentStatus(u_int32_t componentIndex, comp_status_st* query); bool getComponentVersion(FwComponent::comps_ids_t compType, bool pending, component_version_st* cmpVer); bool controlFsm(fsm_command_t command, fsm_state_t expectedState = FSMST_NA, u_int32_t size = 0, fsm_state_t currentState = FSMST_NA, ProgressCallBackAdvSt* progressFuncAdv = (ProgressCallBackAdvSt*)NULL, u_int32_t reg_access_timeout = 0); bool queryComponentInfo(u_int32_t componentIndex, u_int8_t readPending, u_int32_t infoType, u_int32_t dataSize, u_int32_t* data); bool runMCQI(u_int32_t componentIndex, u_int8_t readPending, u_int32_t infoType, u_int32_t dataSize, u_int32_t offset, u_int32_t* data); bool runMNVDA(std::vector& buff, u_int16_t len, u_int32_t tlvType, reg_access_method_t method, bool queryDefault); bool readComponentInfo(FwComponent::comps_ids_t compType, comp_info_t infoType, std::vector& retData, bool readPending = false); void getInfoAsVersion(std::vector& infoData, component_version_st* cmpVer); reg_access_status_t getGI(mfile* mf, mgirReg* gi); bool extractMacsGuids(fwInfoT* fwQuery); void extractRomInfo(mgirReg* mgir, fwInfoT* fwQuery); bool isDMAAccess(); bool fallbackToRegisterAccess(); bool IsDevicePresent(FwComponent::comps_ids_t compType); std::vector _compsQueryMap; bool _refreshed; bool _clearSetEnv; bool _openedMfile; comp_query_st* _currCompQuery; comp_info_st _currCompInfo; u_int32_t _updateHandle; fsm_control_st _lastFsmCtrl; u_int32_t _componentIndex; u_int32_t _deviceIndex; u_int8_t _deviceType; u_int8_t _mircCaps; fw_comps_error_t _lastError; reg_access_status_t _lastRegAccessStatus; u_int32_t _hwDevId; mfile* _mf; const char* _currComponentStr; std::vector _productVerStr; bool _isDmaSupported; AbstractComponentAccess* _accessObj; int _linkXDeviceSize; int _linkXDeviceIndex; bool _autoUpdate; bool _linkXFlow; bool _activationNeeded; bool _downloadTransferNeeded; u_int8_t _activation_delay_sec; int _rejectedIndex; bool _isDelayedActivationCommandSent; #ifndef UEFI_BUILD trm_ctx _trm; #endif }; #endif /* USER_MLXFWOPS_LIB_FW_COMPS_MGR_H_ */ mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr_direct_access.h0000644000175000017500000000513714522641732024101 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * fw_comps_mgr_direct_access.h * * * Created on: Dec 31, 2018 * Author: eddy */ #ifndef USER_MLXFWOPS_LIB_FW_COMPS_MGR_DIRECT_ACCESS_H_ #define USER_MLXFWOPS_LIB_FW_COMPS_MGR_DIRECT_ACCESS_H_ #include "fw_comps_mgr_abstract_access.h" class DirectComponentAccess : public AbstractComponentAccess { public: DirectComponentAccess(FwCompsMgr* Manager, mfile* Mf) : AbstractComponentAccess(Manager, Mf) {} virtual ~DirectComponentAccess() {} virtual bool accessComponent(u_int32_t updateHandle, u_int32_t offset, u_int32_t size, u_int32_t data[], access_type_t access, const char* currComponentStr, ProgressCallBackAdvSt* progressFuncAdv); virtual fw_comps_error_t getLastFirmwareError() { return _lastFwError; } virtual reg_access_status_t getLastRegisterAccessStatus() { return _lastRegisterAccessStatus; } private: void setLastFwError(fw_comps_error_t error) { _lastFwError = error; } }; #endif mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr_dma_access.h0000644000175000017500000000654114522641732023370 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * fw_comps_mgr_dma_access.h * * * Created on: Dec 31, 2018 * Author: eddy */ #ifndef USER_MLXFWOPS_LIB_FW_COMPS_MGR_DMA_ACCESS_H_ #define USER_MLXFWOPS_LIB_FW_COMPS_MGR_DMA_ACCESS_H_ #include "fw_comps_mgr_abstract_access.h" typedef struct tools_open_mcdd_reg mcddReg; class DMAComponentAccess : public AbstractComponentAccess { public: DMAComponentAccess(FwCompsMgr* Manager, mfile* Mf) : AbstractComponentAccess(Manager, Mf) {} virtual ~DMAComponentAccess() {} virtual bool accessComponent(u_int32_t updateHandle, u_int32_t offset, u_int32_t size, u_int32_t* data, access_type_t access, const char* currComponentStr, ProgressCallBackAdvSt* progressFuncAdv); bool allocateMemory(); static bool isBMESet(mfile* mf); virtual fw_comps_error_t getLastFirmwareError() { return _lastFwError; } virtual reg_access_status_t getLastRegisterAccessStatus() { return _lastRegisterAccessStatus; } private: bool prepareParameters(u_int32_t _updateHandle, mcddReg* accessData, int offset, u_int32_t* data, int data_size, int access, int leftSize, mtcr_page_addresses page, mtcr_page_addresses mailbox_page); bool readFromDataPage(mcddReg* accessData, mtcr_page_addresses page, u_int32_t* data, int data_size, int leftSize); std::vector _allocatedListVect; fw_comps_error_t _lastFwError; reg_access_status_t _lastRegisterAccessStatus; void setLastError(fw_comps_error_t error) { _lastFwError = error; } }; #endif mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr_dma_access.cpp0000644000175000017500000003753014522641732023725 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * fw_comps_mgr_dma_access.cpp * * Created on: Dec 31, 2018 * Author: eddy */ #include #include "fw_comps_mgr_dma_access.h" #include "bit_slice.h" #ifndef UEFI_BUILD #include #include "mad_ifc/mad_ifc.h" #else #include #include // no signal handling. static void mft_signal_set_handling(int isOn) { return; } static int allocate_uefi_dma_memory_page(mfile* mf, mtcr_alloc_page* user_alloc_page) { u_int32_t rc = 0; u_int64_t pa; u_int64_t va; rc = ((f_dma_alloc)((mf->context).fw_cmd_dma))((uefi_Dev_t*)(mf->context.fw_cmd_context), &pa, &va); if (rc) { return rc; } user_alloc_page->pa = pa; user_alloc_page->va = va; return rc; } #endif #ifndef PAGE_SIZE #define PAGE_SIZE 0x1000 #endif #define FLASH_WRITE_SPEED (640 * 1024) // 640 kB/sec #define TIMETOSLEEP (1000 * PAGE_SIZE / FLASH_WRITE_SPEED) // 6 msec #define MAXIMUM_SLEEP_TIME_MS 20000 #define _MCDD_DEBUG_ 0 #if _MCDD_DEBUG_ void printData(u_int32_t* data, int data_size, int format) { for (int i = 0; i < data_size / 4; i++) { if (format == 0) { DPRINTF("\n DWORD[%04x]: 0x%08x\n", (i), (data[i])); } else { u_int32_t x1 = (data[i] & 0xff) << 24; u_int32_t x2 = (data[i] & 0xff00) >> 8; u_int32_t x3 = (data[i] & 0xff0000) >> 16; u_int32_t x4 = (data[i] & 0xff000000) >> 24; u_int32_t tmp = x1 + x4 + (x2 << 16) + (x3 << 8); DPRINTF("\n DWORD[%04x]: 0x%08x\n", (i), tmp); } } } #endif bool DMAComponentAccess::prepareParameters(u_int32_t updateHandle, mcddReg* accessData, int offset, u_int32_t* data, int data_size, int access, int leftSize, mtcr_page_addresses page, mtcr_page_addresses mailbox_page) { accessData->update_handle = updateHandle; accessData->offset = offset; accessData->size = leftSize > PAGE_SIZE ? PAGE_SIZE : leftSize; accessData->data_page_phys_addr_lsb = EXTRACT64(page.dma_address, 0, 32); accessData->data_page_phys_addr_msb = EXTRACT64(page.dma_address, 32, 32); accessData->mailbox_page_phys_addr_lsb = EXTRACT64(mailbox_page.dma_address, 0, 32); accessData->mailbox_page_phys_addr_msb = EXTRACT64(mailbox_page.dma_address, 32, 32); int currentOffset = data_size - leftSize; if (access == MCC_WRITE_COMP) { u_int32_t* data_ptr = (u_int32_t*)page.virtual_address; for (int i = 0; i < accessData->size / 4; i++) { *data_ptr = ___my_swab32(data[(currentOffset) / 4 + i]); data_ptr++; } } return true; } bool DMAComponentAccess::allocateMemory() { mtcr_page_info page_info; #ifndef UEFI_BUILD if (get_dma_pages(_mf, &page_info, FMPT_ALLOCATED_LIST_LENGTH)) { return false; } #else return false; #endif for (int page_counter = 0; page_counter < FMPT_ALLOCATED_LIST_LENGTH; page_counter++) { #if _MCDD_DEBUG_ u_int32_t va_lsb = EXTRACT64(page_info.page_addresses_array[page_counter]->virtual_address, 0, 32); u_int32_t va_msb = EXTRACT64(page_info.page_addresses_array[page_counter]->virtual_address, 32, 32); u_int32_t pa_lsb = EXTRACT64(page_info.page_addresses_array[page_counter]->dma_address, 0, 32); u_int32_t pa_msb = EXTRACT64(page_info.page_addresses_array[page_counter]->dma_address, 32, 32); DPRINTF(("Allocated for page %d data PA 0x%08x%08x VA 0x%08x%08x \r\n", i, pa_msb, pa_lsb, va_msb, va_lsb)); #endif _allocatedListVect.push_back(page_info.page_addresses_array[page_counter]); } return true; } bool DMAComponentAccess::isBMESet(mfile* mf) { bool res = false; #ifdef __WIN__ (void)mf; res = true; // mst64 (system service that is loaded in mtcr::open()) will set the BME #else int COMMAND_REG_OFFSET = 0x4; int BME_MASK = 0x00000004; u_int32_t bme_dword = 0; int rc = read_dword_from_conf_space(mf, COMMAND_REG_OFFSET, &bme_dword); if ((rc == 0) && (bme_dword & BME_MASK)) { res = true; } #endif DPRINTF(("DMAComponentAccess::isBMESet res = %s\n", res ? "TRUE" : "FALSE")); return res; } bool DMAComponentAccess::readFromDataPage(mcddReg* accessData, mtcr_page_addresses page, u_int32_t* data, int data_size, int leftSize) { u_int32_t* data_ptr = (u_int32_t*)page.virtual_address; int currentOffset = (data_size - leftSize) / 4; for (int i = 0; i < accessData->size / 4; i++) { data[currentOffset + i] = ___my_swab32(*data_ptr); data_ptr++; #if _MCDD_DEBUG_ if (i % 100 == 0) DPRINTF(("\nReading data[%#02x]: %#08x\n", (i)*4, data[(data_size - leftSize) / 4 + i])); #endif } return true; } bool DMAComponentAccess::accessComponent(u_int32_t updateHandle, u_int32_t offset, u_int32_t data_size, u_int32_t* data, access_type_t access, const char* currComponentStr, ProgressCallBackAdvSt* progressFuncAdv) { #ifndef UEFI_BUILD try { #endif //* Allocating memory on first access only (lazy allocation) if (_allocatedListVect.empty()) { DPRINTF(("DMAComponentAccess::AccessComponent allocating memory for DMA\n")); if (!allocateMemory()) { DPRINTF(("DMAComponentAccess::AccessComponent memory allocation for DMA failed\n")); setLastError(FWCOMPS_MEM_ALLOC_FAILED); return false; // this will trigger a fallback to direct_access instead of dma_access } } int leftSize = (int)data_size; int CurrentPage = FMPT_FIRST_PAGE; char stage[MAX_MSG_SIZE] = {0}; int progressPercentage = -1; int currentOffset = 0; int nMaximumSleepTime = 0; tools_open_mcdd_descriptor mailboxVirtPtr_1; if (progressFuncAdv && progressFuncAdv->func) { snprintf(stage, MAX_MSG_SIZE, "%s %s component", (access == MCC_READ_COMP) ? "Reading" : "Writing", currComponentStr); } // updateHandle &= ~0xff000000; DPRINTF(("DMAComponentAccess::AccessComponent BEGIN size %d access %s\n", data_size, (access == MCC_READ_COMP) ? "READ" : "WRITE")); mcddReg accessData; mtcr_page_addresses page = _allocatedListVect[CurrentPage]; mtcr_page_addresses mailboxPage = _allocatedListVect[FMPT_MAILBOX_PAGE]; // tools_open_mcdd_descriptor* mailboxVirtPtr = (tools_open_mcdd_descriptor*)mailboxPage.va; int maxDataSize = data_size > PAGE_SIZE ? PAGE_SIZE : data_size; memset(&accessData, 0, TOOLS_OPEN_MCDD_REG_SIZE); if (access == MCC_READ_COMP) { memset(data, 0, data_size); } prepareParameters(updateHandle, &accessData, offset + (data_size - leftSize), data, data_size, access, leftSize, page, mailboxPage); int nIteration = 0; while (leftSize > 0) { DPRINTF(("0x%x bytes left to %s\n", leftSize, access == MCC_READ_COMP ? "read" : "burn")); memset((u_int8_t*)mailboxPage.virtual_address, 0, TOOLS_OPEN_MCDD_DESCRIPTOR_SIZE); memset(&mailboxVirtPtr_1, 0, TOOLS_OPEN_MCDD_DESCRIPTOR_SIZE); // set zero before each transaction maxDataSize = leftSize > PAGE_SIZE ? PAGE_SIZE : leftSize; mft_signal_set_handling(1); reg_access_status_t rc = reg_access_mcdd( _mf, (access == MCC_READ_COMP) ? REG_ACCESS_METHOD_GET : REG_ACCESS_METHOD_SET, &accessData); _manager->deal_with_signal(); if (rc) { DPRINTF(("CRITICAL : DMAComponentAccess::AccessComponent reg_access_mcdd ERROR: %#x\n", rc)); setLastError(_manager->regErrTrans(rc)); _lastRegisterAccessStatus = rc; return false; } // if we write a data, meawhile use a time for prepare next data page if (access == MCC_WRITE_COMP) { leftSize -= maxDataSize; if (leftSize > 0) { if (FMPT_FIRST_PAGE == CurrentPage) CurrentPage = FMPT_SECOND_PAGE; else CurrentPage = FMPT_FIRST_PAGE; page = _allocatedListVect[CurrentPage]; currentOffset = offset + (data_size - leftSize); prepareParameters(updateHandle, &accessData, currentOffset, data, data_size, access, leftSize, page, mailboxPage); } } // This is because the FW will change the status from 0 to BUSY, when it starts the reading/writing // operation. meanwhile, the SW has to wait until FW is really starting. It's possible, though, that we will // not enter to this loop at all or only sometimes. tools_open_mcdd_descriptor_unpack(&mailboxVirtPtr_1, (const u_int8_t*)mailboxPage.virtual_address); DPRINTF(("AccessComponent1 status %d err %d reserved3 %d\n", mailboxVirtPtr_1.status, mailboxVirtPtr_1.error, mailboxVirtPtr_1.reserved3)); nMaximumSleepTime = 0; while (mailboxVirtPtr_1.status == FFS_FW_UNKNOWN) { msleep(TIMETOSLEEP); tools_open_mcdd_descriptor_unpack(&mailboxVirtPtr_1, (const u_int8_t*)mailboxPage.virtual_address); nMaximumSleepTime += TIMETOSLEEP; if (nMaximumSleepTime >= MAXIMUM_SLEEP_TIME_MS) { setLastError(FWCOMPS_ABORTED); return false; } } // here the FW started to work msleep(TIMETOSLEEP); tools_open_mcdd_descriptor_unpack(&mailboxVirtPtr_1, (const u_int8_t*)mailboxPage.virtual_address); DPRINTF(("AccessComponent2 status %d err %d reserved3 %d\n", mailboxVirtPtr_1.status, mailboxVirtPtr_1.error, mailboxVirtPtr_1.reserved3)); nMaximumSleepTime = 0; while (mailboxVirtPtr_1.status == FFS_FW_BUSY) { msleep(TIMETOSLEEP); tools_open_mcdd_descriptor_unpack(&mailboxVirtPtr_1, (const u_int8_t*)mailboxPage.virtual_address); nMaximumSleepTime += TIMETOSLEEP; if (nMaximumSleepTime >= MAXIMUM_SLEEP_TIME_MS) { setLastError(FWCOMPS_ABORTED); return false; } } tools_open_mcdd_descriptor_unpack(&mailboxVirtPtr_1, (const u_int8_t*)mailboxPage.virtual_address); DPRINTF(("AccessComponent3 status %d err %d reserved3 %d\n", mailboxVirtPtr_1.status, mailboxVirtPtr_1.error, mailboxVirtPtr_1.reserved3)); if (mailboxVirtPtr_1.status == FFS_FW_ERROR) { fw_comps_error_t fw_err = (fw_comps_error_t)(mailboxVirtPtr_1.error + FWCOMPS_MCC_ERR_CODES); // return error to high level app. // Errors are defined as MCC errors setLastError(fw_err); DPRINTF(("CRITICAL : DMAComponentAccess::AccessComponent status %d err %d FW ERROR: %#x\n", mailboxVirtPtr_1.status, mailboxVirtPtr_1.error, fw_err)); return false; } // read the data from FW (from page.virtual_address -> to 'data' array) if (access == MCC_READ_COMP) { DPRINTF(("READ mailboxVirtPtr->status = %d\r\n", mailboxVirtPtr_1.status)); readFromDataPage(&accessData, page, data, data_size, leftSize); leftSize -= maxDataSize; if (leftSize > 0) { CurrentPage == FMPT_FIRST_PAGE ? CurrentPage = FMPT_SECOND_PAGE : CurrentPage = FMPT_FIRST_PAGE; page = _allocatedListVect[CurrentPage]; // change the page prepareParameters(updateHandle, &accessData, offset + (data_size - leftSize), data, data_size, access, leftSize, page, mailboxPage); // prepare auxilary data for next iteration } } nIteration++; int newPercentage = (((data_size - leftSize) * 100) / data_size); #ifdef UEFI_BUILD if (newPercentage > progressPercentage && progressFuncAdv && progressFuncAdv->uefi_func) { progressPercentage = newPercentage; if (progressFuncAdv->uefi_func((int)newPercentage)) { setLastError(FWCOMPS_ABORTED); return false; } } #else if (newPercentage > progressPercentage && progressFuncAdv && progressFuncAdv->func) { progressPercentage = newPercentage; if (progressFuncAdv->func(progressPercentage, stage, PROG_WITH_PRECENTAGE, progressFuncAdv->opaque)) { setLastError(FWCOMPS_ABORTED); return false; } } #endif } if (progressFuncAdv && progressFuncAdv->func) { if (progressFuncAdv->func(0, stage, PROG_OK, progressFuncAdv->opaque)) { setLastError(FWCOMPS_ABORTED); return false; } } DPRINTF(("DMAComponentAccess::AccessComponent END \n")); return true; #ifndef UEFI_BUILD } catch (std::exception& e) { DPRINTF(("DMAComponentAccess::Exception occurred %s\n", e.what())); return false; } #endif } mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr_abstract_access.cpp0000644000175000017500000000456014522641732024764 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "fw_comps_mgr_abstract_access.h" #include "fw_comps_mgr_direct_access.h" #include "fw_comps_mgr_dma_access.h" AbstractComponentAccess* ComponentAccessFactory::createDataAccessObject(FwCompsMgr* manager, mfile* mf, bool isMCDDRegisterSupported) { #ifndef UEFI_BUILD if (getenv("DISABLE_DMA_ACCESS") != NULL) { return new DirectComponentAccess(manager, mf); } #endif // DMA is supported only when COMMAND[BME] is set in PCI configuration bool isBmeSet = false; if (isMCDDRegisterSupported) { isBmeSet = DMAComponentAccess::isBMESet(mf); } AbstractComponentAccess* component_access = NULL; if (isMCDDRegisterSupported && isBmeSet) { component_access = new DMAComponentAccess(manager, mf); } else { component_access = new DirectComponentAccess(manager, mf); } return component_access; } mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr_abstract_access.h0000644000175000017500000000545714522641732024437 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef USER_MLXFWOPS_LIB_FW_ABSTRACT_COMP_ACCESS_H_ #define USER_MLXFWOPS_LIB_FW_ABSTRACT_COMP_ACCESS_H_ #include "fw_comps_mgr.h" class AbstractComponentAccess { public: virtual bool accessComponent(u_int32_t updateHandle, u_int32_t offset, u_int32_t size, u_int32_t data[], access_type_t access, const char* currComponentStr, ProgressCallBackAdvSt* progressFuncAdv) = 0; virtual fw_comps_error_t getLastFirmwareError() = 0; virtual reg_access_status_t getLastRegisterAccessStatus() = 0; AbstractComponentAccess(FwCompsMgr* manager, mfile* mf) { _mf = mf; _manager = manager; _lastFwError = FWCOMPS_SUCCESS; } virtual ~AbstractComponentAccess() {} protected: mfile* _mf; FwCompsMgr* _manager; fw_comps_error_t _lastFwError; reg_access_status_t _lastRegisterAccessStatus; }; class ComponentAccessFactory { public: AbstractComponentAccess* createDataAccessObject(FwCompsMgr* manager, mfile* mf, bool isMCDDRegisterSupported); static ComponentAccessFactory* GetInstance() { static ComponentAccessFactory myObj; return &myObj; } }; #endif mstflint-4.26.0/fw_comps_mgr/Makefile.am0000755000175000017500000000531114522641732020424 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/cmdif \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/reg_access \ -I$(top_srcdir)/tools_layouts \ -I$(top_srcdir)/tools_res_mgmt AM_CFLAGS = -MD -pipe -Wall -W $(COMPILER_FPIC) AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) noinst_LTLIBRARIES = libfw_comps_mgr.la libfw_comps_mgr_la_SOURCES = \ fw_comps_mgr.cpp \ fw_comps_mgr.h \ fw_comps_mgr_abstract_access.cpp \ fw_comps_mgr_abstract_access.h \ fw_comps_mgr_direct_access.cpp \ fw_comps_mgr_direct_access.h \ fw_comps_mgr_dma_access.cpp \ fw_comps_mgr_dma_access.h if ENABLE_INBAND else AM_CXXFLAGS += "-DNO_INBAND" endif libfw_comps_mgr_la_DEPENDENCIES = \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/mft_utils/libmftutils.la if ENABLE_INBAND libfw_comps_mgr_la_DEPENDENCIES += $(top_builddir)/mad_ifc/libmad_ifc.la endif libfw_comps_mgr_la_LIBADD = $(libfw_comps_mgr_la_DEPENDENCIES) mstflint-4.26.0/fw_comps_mgr/fw_comps_mgr_direct_access.cpp0000644000175000017500000001335414522641732024434 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * fw_comps_mgr_direct_access.cpp * * Created on: Dec 31, 2018 * Author: eddy */ #include "fw_comps_mgr_direct_access.h" #ifndef UEFI_BUILD #include #else // no signal handling. static void mft_signal_set_handling(int isOn) { return; } #endif typedef struct reg_access_hca_mcda_reg_ext mcdaReg; bool DirectComponentAccess::accessComponent(u_int32_t updateHandle, u_int32_t offset, u_int32_t size, u_int32_t* data, access_type_t access, const char* currComponentStr, ProgressCallBackAdvSt* progressFuncAdv) { int leftSize = (int)size; u_int32_t i = 0; mcdaReg accessData; char stage[MAX_MSG_SIZE] = {0}; int progressPercentage = -1; if (progressFuncAdv && progressFuncAdv->func) { snprintf(stage, MAX_MSG_SIZE, "%s %s component", (access == MCC_READ_COMP) ? "Reading" : "Writing", currComponentStr); } int maxDataSize = mget_max_reg_size(_mf, (access == MCC_READ_COMP) ? MACCESS_REG_METHOD_GET : MACCESS_REG_METHOD_SET) - sizeof(accessData); if (maxDataSize > MAX_REG_DATA) { maxDataSize = MAX_REG_DATA; } if (_mf->flags & MDEVS_IB && _mf->tp == MST_IB && maxDataSize > INBAND_MAX_REG_SIZE) { maxDataSize = INBAND_MAX_REG_SIZE - MCDA_REG_HEADER; } std::vector dataToRW(maxDataSize, 0); while (leftSize > 0) { DPRINTF(("0x%x bytes left to %s\n", leftSize, access == MCC_READ_COMP ? "read" : "burn")); memset(&accessData, 0, sizeof(mcdaReg)); memcpy(accessData.data, dataToRW.data(), sizeof(accessData.data)); accessData.update_handle = updateHandle; accessData.offset = offset + (size - leftSize); accessData.size = leftSize > maxDataSize ? maxDataSize : leftSize; mft_signal_set_handling(1); if (access == MCC_READ_COMP) { reg_access_status_t rc = reg_access_mcda(_mf, REG_ACCESS_METHOD_GET, &accessData); _manager->deal_with_signal(); if (rc) { setLastFwError(_manager->regErrTrans(rc)); _lastRegisterAccessStatus = rc; return false; } for (i = 0; i < accessData.size / 4; i++) { data[(size - leftSize) / 4 + i] = __le32_to_cpu(accessData.data[i]); } // printf("data[%#02x]: %#08x\n", (i-1)*4, data[(size - leftSize)/4 + i-1]); } else { for (i = 0; i < accessData.size / 4; i++) { accessData.data[i] = __cpu_to_le32(data[(size - leftSize) / 4 + i]); } reg_access_status_t rc = reg_access_mcda(_mf, REG_ACCESS_METHOD_SET, &accessData); _manager->deal_with_signal(); if (rc) { setLastFwError(_manager->regErrTrans(rc)); _lastRegisterAccessStatus = rc; return false; } } int newPercentage = (((size - leftSize) * 100) / size); #ifdef UEFI_BUILD if (newPercentage > progressPercentage && progressFuncAdv && progressFuncAdv->uefi_func) { progressPercentage = newPercentage; if (progressFuncAdv->uefi_func((int)newPercentage)) { setLastFwError(FWCOMPS_ABORTED); return false; } } #else if (newPercentage > progressPercentage && progressFuncAdv && progressFuncAdv->func) { progressPercentage = newPercentage; if (progressFuncAdv->func(progressPercentage, stage, PROG_WITH_PRECENTAGE, progressFuncAdv->opaque)) { setLastFwError(FWCOMPS_ABORTED); return false; } } #endif leftSize -= maxDataSize; } if (progressFuncAdv && progressFuncAdv->func) { if (progressFuncAdv->func(0, stage, PROG_OK, progressFuncAdv->opaque)) { setLastFwError(FWCOMPS_ABORTED); return false; } } return true; } mstflint-4.26.0/fw_comps_mgr/Makefile.in0000644000175000017500000005337714522641737020456 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @ENABLE_INBAND_FALSE@am__append_1 = "-DNO_INBAND" @ENABLE_INBAND_TRUE@am__append_2 = $(top_builddir)/mad_ifc/libmad_ifc.la subdir = fw_comps_mgr DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libfw_comps_mgr_la_OBJECTS = fw_comps_mgr.lo \ fw_comps_mgr_abstract_access.lo fw_comps_mgr_direct_access.lo \ fw_comps_mgr_dma_access.lo libfw_comps_mgr_la_OBJECTS = $(am_libfw_comps_mgr_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libfw_comps_mgr_la_SOURCES) DIST_SOURCES = $(libfw_comps_mgr_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/cmdif \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/reg_access \ -I$(top_srcdir)/tools_layouts \ -I$(top_srcdir)/tools_res_mgmt AM_CFLAGS = -MD -pipe -Wall -W $(COMPILER_FPIC) AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) \ $(am__append_1) noinst_LTLIBRARIES = libfw_comps_mgr.la libfw_comps_mgr_la_SOURCES = \ fw_comps_mgr.cpp \ fw_comps_mgr.h \ fw_comps_mgr_abstract_access.cpp \ fw_comps_mgr_abstract_access.h \ fw_comps_mgr_direct_access.cpp \ fw_comps_mgr_direct_access.h \ fw_comps_mgr_dma_access.cpp \ fw_comps_mgr_dma_access.h libfw_comps_mgr_la_DEPENDENCIES = \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/mft_utils/libmftutils.la $(am__append_2) libfw_comps_mgr_la_LIBADD = $(libfw_comps_mgr_la_DEPENDENCIES) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fw_comps_mgr/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign fw_comps_mgr/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libfw_comps_mgr.la: $(libfw_comps_mgr_la_OBJECTS) $(libfw_comps_mgr_la_DEPENDENCIES) $(EXTRA_libfw_comps_mgr_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libfw_comps_mgr_la_OBJECTS) $(libfw_comps_mgr_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fw_comps_mgr.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fw_comps_mgr_abstract_access.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fw_comps_mgr_direct_access.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fw_comps_mgr_dma_access.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tracers/0000755000175000017500000000000014522641741015346 5ustar tzafrirctzafrircmstflint-4.26.0/tracers/Makefile.am0000644000175000017500000000276214522641732017411 0ustar tzafrirctzafrirc#-- # # Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = fwtrace mstflint-4.26.0/tracers/fwtrace/0000755000175000017500000000000014522641741017001 5ustar tzafrirctzafrircmstflint-4.26.0/tracers/fwtrace/fw_trace_utilities.py0000755000175000017500000001743214522641732023252 0ustar tzafrirctzafrirc# Copyright (c) Sep 2019 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import sys import os import string import subprocess import re import platform import regaccess import time class FwTraceUtilities(object): @classmethod def _cmd_exec(self, cmd): """ Execute a command line and return the state and the output of the command """ p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=False, shell=True) output = p.communicate() stat = p.wait() return (stat, output[0].decode('utf-8'), output[1].decode('utf-8')) # RC, Stdout, Stderr @classmethod def _is_dev_dbdf_format(self, dev): """ Check if the input has a bdf format with domain If bdf format with domain format return True, otherwise return False """ pat = r"[0-9,A-F,a-f]{4}:[0-9,A-F,a-f]{2}:[0-9,A-F,a-f]{2}\.[0-9,A-F,a-f]{1,2}" if re.match(pat, dev): return True return False @classmethod def _is_dev_bdf_format(self, dev): """ Check if the input has a bdf format If bdf format return True, otherwise return False """ pat = r"[0-9,A-F,a-f]{2}:[0-9,A-F,a-f]{2}\.[0-9,A-F,a-f]{1,2}" if re.match(pat, dev): return True return False @classmethod def _add_domain_to_address(self, dev_addr): """ Add the domain "0000:" to the given address """ if len(dev_addr.split(":")) == 2: return "0000:" + dev_addr return dev_addr @staticmethod def get_dev_dbdf(device_name): """ retrieve the BDF according to the device name """ if FwTraceUtilities._is_dev_dbdf_format(device_name): return device_name if FwTraceUtilities._is_dev_bdf_format(device_name): return FwTraceUtilities._add_domain_to_address(device_name) operatingSys = platform.system() if operatingSys == "FreeBSD": if not(device_name.startswith("pci")): raise RuntimeError("Unexpected device name format") return device_name[3:] elif operatingSys == "Linux": cmd = "mdevices_info -vv" (rc, out, _) = FwTraceUtilities._cmd_exec(cmd) if rc != 0: raise RuntimeError("Failed to get device PCI address") # extract bdf bdf = None for line in out.split('\n'): if device_name in line: if len(line.split()) > 2: bdf = line.split()[2] if not bdf: raise RuntimeError("Failed to get device PCI Address") return FwTraceUtilities._add_domain_to_address(bdf) elif operatingSys == "Windows": cmd = "mdevices status -vv" (rc, out, _) = FwTraceUtilities._cmd_exec(cmd) if rc != 0: raise RuntimeError("Failed to get device PCI address") # extract bdf bdf = None for line in out.split('\n'): l = line.split() if (len(l) > 1) and (device_name in l[0]) and ("seg:bus:dev.fn" in l[1]): bdf = line.split('=')[1] if not bdf: raise RuntimeError("Failed to get device PCI Address") return bdf else: raise RuntimeError("Unsupported OS") @staticmethod def is_driver_mem_mode_supported(): """ Check if driver mem mode is suported If supported return True, otherwise return False """ is_supported = False if os.name == "nt": # future capability - windows pass else: if os.path.exists("/sys/kernel/debug/tracing/events/mlx5/fw_tracer/") or \ os.path.exists("/sys/kernel/debug/tracing/events/mlx5/mlx5_fw/"): is_supported = True return is_supported @staticmethod def is_secure_fw(mst_device): """ Check if the firmware is secure or not If secure return True, otherwise return False """ is_secure = False if mst_device is None: return is_secure # in case that reg access fail, we cant determain a secure fw and return false try: reg_access_obj = regaccess.RegAccess(mst_device) is_secure = reg_access_obj.getSecureFWStatus() except BaseException: is_secure = False return is_secure @staticmethod def ts_to_real_ts(ts, freq): """ The method calculate a real time stamp and return is as [hh:mm:ss:nsec] format """ if freq <= 0: raise RuntimeError("device frequency is not above Zero - can't calc real time stamp") nano_seconds = int(1000 / freq) * ts # calc hours time_in_seconds = int(nano_seconds / 1000000000) hours = int(time_in_seconds / 3600) # calc minutes time_in_seconds = time_in_seconds - (hours * 3600) minutes = int(time_in_seconds / 60) # calc seconds time_in_seconds = time_in_seconds - (minutes * 60) seconds = time_in_seconds # calc the reminder in nano seconds nsecs = nano_seconds - int(nano_seconds / 1000000000) * 1000000000 return "{:02d}:{:02d}:{:02d}:{:09d}".format(hours, minutes, seconds, nsecs) @staticmethod def get_device_frequency(device): """ The method call mlxuptime, parse the device frequency and return it as integer (mlxuptime can take 1 sec) """ cmd = "mlxuptime -d" + device (rc, out, _) = FwTraceUtilities._cmd_exec(cmd) freq_num = 0 if rc != 0: raise RuntimeError("Failed to get device frequency (necessary for real ts calculation)") else: for line in out.split('\n'): if "Measured core frequency" in line: freq_str = line.split(": ")[1].split(" ")[0] freq_num = int(round(float(freq_str))) break return freq_num ########################################## if __name__ == "__main__": sys.exit(ExtractStrings()) mstflint-4.26.0/tracers/fwtrace/mstfwtrace.py0000755000175000017500000003654114522641732021546 0ustar tzafrirctzafrirc# Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import sys import os # Clear LD_LIBRARY_PATH to prevent pyinstaller compatibility issues library_path_var = "LD_LIBRARY_PATH" is_pyinstaller = getattr(sys, 'frozen', False) if is_pyinstaller and library_path_var in os.environ: os.environ[library_path_var] = "" import signal import argparse from secure_fw_trace import SecureFwTrace from fw_trace_utilities import FwTraceUtilities import tools_version # MFT imports sys.path.append(os.path.join("..", "..", "common")) sys.path.append(os.path.join("..", "..", "mtcr_py")) sys.path.append(os.path.join("..", "..", "cmdif")) import mtcr # noqa import cmdif # noqa class UnbufferedStream(object): def __init__(self, stream): self.stream = stream def write(self, data): self.stream.write(data) self.stream.flush() def writelines(self, datas): self.stream.writelines(datas) self.stream.flush() def __getattr__(self, attr): return getattr(self.stream, attr) sys.stdout = UnbufferedStream(sys.stdout) EXEC_NAME = "mstfwtrace" proc = None # Exception class class TracerException(Exception): pass # Constants ####################################################### HCA_MASK_CLASSES = [ ("DEBUG_INIT", 0), ("INIT", 1), ("ICM", 2), ("ICM_FREE_LIST", 3), ("HOST_MNG", 4), ("CMD_IF", 5), ("PHY_IB", 6), ("PHY_RX_ADAP", 7), ("LIBFHI", 8), ("PHY_COMMON", 9), ("PHY_MANAGER", 10), ("PWR", 11), ("FLR", 12), ("ICM_ACCESS", 13), ("MAD", 14), ("RXT_CHECKS", 15), ("I2C", 16), ("TRANSPORT", 17), ("FW_LL", 18), ("RX_ERRORS", 19), ("CMD_DRIVER", 20), ("PROFILING", 21), ("MANAGEMENT", 22), ("FLASH", 23), ("STEERING", 24), ("IFARM", 25), ("ICMD", 26), ("PCI", 27), ("DC_CLEANUP", 28), ("PHY_ETH", 29), ("VIRT", 30)] # list of (trace type name, start_bit) DEV_INFO_DB = [ # we use list instead of dict to keep order, # new devices should be at head of the list { "name": "ConnectIB", "dev_id": [0x1ff], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "SwitchIB", "dev_id": [0x247], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "ConnectX4", "dev_id": [0x209], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "ConnectX5", "dev_id": [0x20d], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "BlueField", "dev_id": [0x211], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "BlueField2", "dev_id": [0x214], "chip_rev":-1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), "default_tracer_mode": "MEM" }, { "name": "BlueField3", "dev_id": [0x21c], "chip_rev":-1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), "default_tracer_mode": "MEM" }, { "name": "ConnectX6", "dev_id": [0x20f], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "ConnectX6DX", "dev_id": [0x212], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "Spectrum", "dev_id": [0x249], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "ConnectX4LX", "dev_id": [0x20b], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "SwitchIB2", "dev_id": [0x24B], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "Quantum", "dev_id": [0x24D], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "Spectrum2", "dev_id": [0x24E], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "Spectrum3", "dev_id": [0x250], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "Spectrum4", "dev_id": [0x254], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, { "name": "ConnectX6LX", "dev_id": [0x216], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "ConnectX7", "dev_id": [0x218], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": list(HCA_MASK_CLASSES), }, { "name": "Quantum2", "dev_id": [0x257], "chip_rev": -1, "maskable": True, "mask_addr": None, # list of (trace type name, start_bit) "mask_classes": [("class1", 0), ("class2", 1)], }, ] MST_DEVICE = None CMDIFDEV = None DEV_NAME = None IRISC_NAME = None MASK = None LEVEL = None STRAMING_MODE = False TRACER_MODE = None REAL_TS = False IGNORE_OLD_EVENTS = False def add_args(): """ Adding tool arguments and options """ parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter, prog=EXEC_NAME, epilog=get_epilog(), usage="%s -d|--device DEVICE [options]" % EXEC_NAME) parser.add_argument("-v", "--version", '-v', help='Print tool version.', action="version", version=tools_version.GetVersionString(EXEC_NAME, None)) options_group = parser.add_argument_group('Options') options_group.add_argument("-d", "--device", dest="device", help="PCI device name", default=None) options_group.add_argument("--tracer_mode", dest="tracer_mode", help="Tracer mode [MEM]", default="MEM") options_group.add_argument("--real_ts", action="store_true", dest="real_ts", help="Print real timestamps in [hh:mm:ss:nsec]", default=False) options_group.add_argument("--ignore_old_events", action="store_true", dest="ignore_old_events", help="Ignore collecting old events", default=False) format_group = parser.add_argument_group('Format') format_group.add_argument("-i", "--irisc", dest="irisc", help="Irisc name [all]", default="all") format_group.add_argument("-s", "--stream", action="store_true", dest="stream", help="Run in streaming mode", default=False) format_group.add_argument("-m", "--mask", dest="mask", help="Trace class mask, use \"+\" to enable multiple classes or use integer format, e.g: -m " "class1+class2+... or 0xff00ff00", default=None) format_group.add_argument("-l", "--level", dest="level", help="Trace level", default=None) return parser def parse_cmd_line_args(): args = add_args().parse_args() global DEV_NAME global IRISC_NAME global MASK global LEVEL global STRAMING_MODE global TRACER_MODE global REAL_TS global IGNORE_OLD_EVENTS DEV_NAME = args.device IRISC_NAME = args.irisc MASK = args.mask LEVEL = args.level STRAMING_MODE = args.stream TRACER_MODE = args.tracer_mode REAL_TS = args.real_ts IGNORE_OLD_EVENTS = args.ignore_old_events if IRISC_NAME != "all": raise TracerException("Only 'all' irisc is compatible with this tracer version") if TRACER_MODE != "MEM": raise TracerException("Only 'MEM' tracer mode is compatible with this tracer version") def check_secure_fw_args(devInfo): maskable = devInfo["maskable"] if maskable is None or maskable is False: if MASK is not None: raise TracerException("This device traces can't be masked") if MASK and not is_int_or_hex(MASK): classes = MASK.split("+") for klass in classes: valid_class = False for mask_cls in devInfo["mask_classes"]: if mask_cls[0] == klass: valid_class = True if not valid_class: raise TracerException("Unknown trace class: %s" % klass) if (MASK and LEVEL is None) or (LEVEL and MASK is None): raise TracerException("Both --mask and --level must be provided") def get_device_info(dev): # check if livefish mode before continue to work with the device CMDIFDEV.getFwInfo() devIdChipRev = dev.read4(0xf0014) devId = devIdChipRev & 0xffff chipRev = (devIdChipRev >> 16) & 0xf for devInfo in DEV_INFO_DB: if devId in devInfo["dev_id"] and \ (devInfo["chip_rev"] == -1 or devInfo["chip_rev"] == chipRev): return devInfo raise TracerException( "Unknown/Unsupported device with DevId: 0x%x and ChipRev: 0x%x" % (devId, chipRev)) def get_epilog(): classes_info = "Device Specific Info:\n====================\n" for devInfo in DEV_INFO_DB: classes_info = "%s\n %s:" % (classes_info, devInfo["name"]) # Print itrace classes if devInfo['maskable']: trace_levels = [] for m in devInfo["mask_classes"]: trace_levels.append(m[0]) classes_info = "%s\n Trace classes:" % classes_info for i in range(0, len(trace_levels), 5): classes_info = "%s\n %s" % (classes_info, ", ".join(trace_levels[i: i + 5])) return classes_info def is_int_or_hex(string): try: int(string) return True except ValueError: try: int(string, base=16) return True except ValueError: return False def is_int_or_hex_test(): test_cases = ['123', 'quetzalcoatl', '456', 'k1a2l2imba', '789', '0xFF', '0x1A3B'] print([is_int_or_hex(x) for x in test_cases]) def apply_mask(devInfo, dev, cmdifdev): if not MASK: return 0 maskAddr = devInfo["mask_addr"] try: level = int(LEVEL) except ValueError: raise ValueError("Trace level is expected to be a numeric") if is_int_or_hex(MASK): try: mask = int(MASK) except ValueError: try: mask = int(MASK, base=16) except ValueError: raise ValueError("Internal error") else: maskClasses = devInfo["mask_classes"] reqClasses = MASK.split("+") mask = 0 for reqClass in reqClasses: found = False for c in maskClasses: if c[0] == reqClass: mask += 1 << c[1] found = True break if not found: raise TracerException("Unknown trace class: %s" % reqClass) if maskAddr: dev.write4(maskAddr[0], mask) dev.write(maskAddr[0] + 4, level) elif cmdifdev: cmdifdev.setItrace(mask, level) def open_mst_dev(): global MST_DEVICE global CMDIFDEV if MST_DEVICE is None: MST_DEVICE = mtcr.MstDevice(DEV_NAME) if CMDIFDEV is not None: CMDIFDEV = cmdif.CmdIf(MST_DEVICE) def start_tracer(): try: parse_cmd_line_args() if not DEV_NAME: raise TracerException("Missing device name, please provide device name. Check help [--help]") global MST_DEVICE global CMDIFDEV MST_DEVICE = mtcr.MstDevice(DEV_NAME) CMDIFDEV = cmdif.CmdIf(MST_DEVICE) devInfo = get_device_info(MST_DEVICE) if FwTraceUtilities.is_driver_mem_mode_supported(): try: check_secure_fw_args(devInfo) secure_fw_tracer = SecureFwTrace(MST_DEVICE, DEV_NAME, IGNORE_OLD_EVENTS, REAL_TS) open_mst_dev() apply_mask(devInfo, MST_DEVICE, CMDIFDEV) secure_fw_tracer.parse_driver_mem() except Exception as exp: print("-E- %s" % exp) else: raise TracerException("Driver mem mode is not supported") except Exception as exp: print("-E- %s" % exp) return 1 return 0 def signal_handler(signal, frame): print("\nInterrupted, exiting ...") global proc if proc is not None: proc.terminate() proc.wait() proc = None sys.exit(0) if __name__ == "__main__": try: signal.signal(signal.SIGINT, signal_handler) rc = start_tracer() except Exception as exp: try: print("-E- %s" % str(exp)) except BaseException: pass rc = 1 sys.exit(rc) mstflint-4.26.0/tracers/fwtrace/secure_fw_trace.py0000755000175000017500000001406114522641732022520 0ustar tzafrirctzafrirc# Copyright (c) Sep 2019 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import sys import os import string import time from fw_trace_utilities import FwTraceUtilities class SecureFwTrace(object): OPEN_CLOSE_FILE_DELAY_SEC = 1 LINUX_TRACER_FILE = "/sys/kernel/debug/tracing/trace" WINDOWS_TRACER_FILE = "" def __init__(self, mst_device, device_name, ignore_old_events=False, real_ts=False): self._mst_device = mst_device self._device_name = device_name self._ignore_old_events = ignore_old_events self._real_ts = real_ts self._MAX_TIME_STAMP = 0 self._TRACER_FILE = "" self._device_freq = 0 if os.name == "nt": # future capability - windows # self._TRACER_FILE = self.WINDOWS_TRACER_FILE pass else: self._TRACER_FILE = self.LINUX_TRACER_FILE if real_ts: self._device_freq = FwTraceUtilities.get_device_frequency(device_name) def _prepare_and_print_event(self, event): """ The method responsible for adjusting the event according the given flags (real_ts and future formating and flags) """ # if real time stamp is needed if self._real_ts: event_suffix = event.split("]", 1)[1] event_prefix = FwTraceUtilities.ts_to_real_ts(self._MAX_TIME_STAMP, self._device_freq) event = "[{0}]{1}".format(event_prefix, event_suffix) print(event) def _parse_driver_mem_line_to_event(self, line, bdf="", print_event=True): """ The method responsible for checking filtering and parsing the events, store the max time stamp and sending the event for printing if needed """ # check if the event line belong to the fw trace and contain the bdf address if (("fw_tracer: " in line) or ("mlx5_fw: " in line)) and (bdf in line): if "fw_tracer: " in line: tracer_str = line.split("fw_tracer: ")[1] else: tracer_str = line.split("mlx5_fw: ")[1] tracer_str = tracer_str.split("\n")[0] tracer_str = tracer_str[len(bdf + " "):] # isolate the time stamp and store it for the next time we will # read the file (prevent duplication and present the most updated events) time_stamp = int(tracer_str.split("]")[0].replace("[", "").replace("]", ""), 16) if time_stamp > self._MAX_TIME_STAMP: self._MAX_TIME_STAMP = time_stamp if print_event: self._prepare_and_print_event(tracer_str) def parse_driver_mem(self): """ The method responsible for parsing the events file that filled by the mellanox driver """ self._MAX_TIME_STAMP = 0 first_run = True second_run = False print_event = True if os.path.exists(self._TRACER_FILE): bdf = FwTraceUtilities.get_dev_dbdf(self._device_name) try: while True: # first run is the first time we open the file. # in that case we need to print that we read old event and # apply the logic of the ignore old event if needed if first_run: first_run = False second_run = True if self._ignore_old_events: print_event = False else: print_event = True print("Read old events:") # we need to print 'read new event' only one time and only # at the second time we open the file (new events arrive) elif second_run: print_event = True second_run = False print("Read new events:") fd = open(self._TRACER_FILE, "rt") # go over all the file lines on each iteration # in order to overcome a case that the file has some # corruptions while being written for line in fd: self._parse_driver_mem_line_to_event(line, bdf, print_event) fd.close() time.sleep(self.OPEN_CLOSE_FILE_DELAY_SEC) except KeyboardInterrupt: print("\nStopping... ") else: print("no trace file to parse") ########################################## if __name__ == "__main__": sys.exit(ExtractStrings()) mstflint-4.26.0/tracers/fwtrace/Makefile.am0000755000175000017500000000363114522641732021043 0ustar tzafrirctzafrirc#-- # # Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in bin_SCRIPTS=mstfwtrace PYTHON_WRAPPER=mstfwtrace PYTHON_WRAPPER_SCRIPT=../../common/python_wrapper ${PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ CLEANFILES=${PYTHON_WRAPPER} pythonlibdir=$(libdir)/mstflint/python_tools/$(PYTHON_WRAPPER) pythonlib_DATA = mstfwtrace.py fw_trace_utilities.py secure_fw_trace.py EXTRA_DIST = $(PYTHON_WRAPPER).py clean: myclean myclean: rm -rf $(bin_SCRIPTS) dist build *.spec mstflint-4.26.0/tracers/fwtrace/Makefile.in0000644000175000017500000004407214522641741021055 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # # Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tracers/fwtrace DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pythonlibdir)" SCRIPTS = $(bin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(pythonlib_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ bin_SCRIPTS = mstfwtrace PYTHON_WRAPPER = mstfwtrace PYTHON_WRAPPER_SCRIPT = ../../common/python_wrapper CLEANFILES = ${PYTHON_WRAPPER} pythonlibdir = $(libdir)/mstflint/python_tools/$(PYTHON_WRAPPER) pythonlib_DATA = mstfwtrace.py fw_trace_utilities.py secure_fw_trace.py EXTRA_DIST = $(PYTHON_WRAPPER).py all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tracers/fwtrace/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tracers/fwtrace/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-pythonlibDATA: $(pythonlib_DATA) @$(NORMAL_INSTALL) @list='$(pythonlib_DATA)'; test -n "$(pythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pythonlibdir)" || exit $$?; \ done uninstall-pythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(pythonlib_DATA)'; test -n "$(pythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pythonlibdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(SCRIPTS) $(DATA) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pythonlibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-pythonlibDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binSCRIPTS uninstall-pythonlibDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-binSCRIPTS install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-pythonlibDATA install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-binSCRIPTS uninstall-pythonlibDATA ${PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ clean: myclean myclean: rm -rf $(bin_SCRIPTS) dist build *.spec # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tracers/Makefile.in0000644000175000017500000005004414522641741017416 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # # Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tracers DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = fwtrace all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tracers/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tracers/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/.bazeliskrc0000644000175000017500000000276014522641732016042 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. USE_BAZEL_VERSION=6.3.2 BAZELISK_VERIFY_SHA256=e78fc3394deae5408d6f49a15c7b1e615901969ecf6e50d55ef899996b0b8458 mstflint-4.26.0/tools_layouts/0000755000175000017500000000000014522641740016622 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/register_access_sib_layouts.h0000644000175000017500000004040114522641732024555 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2019-03-23 21:38:49" *** by: *** > [REDACTED]/adb2pack.py --input *adb/register_access/register_access_sib.adb --file-prefix register_access_sib --prefix register_access_sib_ ***/ #ifndef REGISTER_ACCESS_SIB_LAYOUTS_H #define REGISTER_ACCESS_SIB_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 16 */ struct register_access_sib_IB_PSID_ { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - PS - ID */ /* 0x0.0 - 0xc.31 */ u_int32_t PS_ID[4]; }; /* Description - Development Info */ /* Size in bytes - 28 */ struct register_access_sib_IB_DEVInfo_ { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - FW version as string characters */ /* 0x0.0 - 0x18.31 */ u_int32_t dev_branch_tag[7]; }; /* Description - FW Info */ /* Size in bytes - 64 */ struct register_access_sib_IB_FWInfo_ { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t SubMinor; /* Description - */ /* 0x0.8 - 0x0.15 */ u_int8_t Minor; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t Major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t BuildID; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.15 */ u_int16_t Year; /* Description - */ /* 0x8.16 - 0x8.23 */ u_int8_t Day; /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t Month; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.15 */ u_int16_t Hour; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x1c.31 */ struct register_access_sib_IB_PSID_ PSID; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x20.31 */ u_int32_t INIFileNum; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - */ /* 0x24.0 - 0x24.31 */ u_int32_t extended_major; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x28.31 */ u_int32_t extended_minor; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - */ /* 0x2c.0 - 0x2c.31 */ u_int32_t extended_subminor; }; /* Description - HW Info */ /* Size in bytes - 32 */ struct register_access_sib_IB_HWInfo_ { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t DEVID; /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t REVID; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Maximum supported V_CORE voltage for the device. (in 50mV increments). */ /* 0x4.0 - 0x4.4 */ u_int8_t pvs; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - the device_id in HW, used by tools */ /* 0x8.0 - 0x8.15 */ u_int16_t hw_dev_id; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Time (in sec) since last reset */ /* 0x1c.0 - 0x1c.31 */ u_int32_t UpTime; }; /* Description - SW Info */ /* Size in bytes - 32 */ struct register_access_sib_IB_SWInfo_ { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t VerSubMinor; /* Description - */ /* 0x0.8 - 0x0.15 */ u_int8_t VerMinor; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t VerMajor; }; /* Description - */ /* Size in bytes - 160 */ struct register_access_sib_mgir { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x1c.31 */ struct register_access_sib_IB_HWInfo_ HWInfo; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct register_access_sib_IB_FWInfo_ FWInfo; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - */ /* 0x60.0 - 0x7c.31 */ struct register_access_sib_IB_SWInfo_ SWInfo; /*---------------- DWORD[32] (Offset 0x80) ----------------*/ /* Description - */ /* 0x80.0 - 0x98.31 */ struct register_access_sib_IB_DEVInfo_ DEVInfo; }; /* Description - */ /* Size in bytes - 32 */ struct register_access_sib_mtmp { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Sensors index to access */ /* 0x0.0 - 0x0.11 */ u_int16_t sensor_index; /* Description - query the internal diodes */ /* 0x0.31 - 0x0.31 */ u_int8_t internal_diodes_query; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Temperature reading from the sensor. Reading in 0.125 Celsius degrees. */ /* 0x4.0 - 0x4.15 */ u_int16_t temperature; /* Description - Module Sensor Supported:; 0: The module is not connected, or the module sensor is not * supported; 1: The module sensor is supported */ /* 0x4.31 - 0x4.31 */ u_int8_t mss; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The highest measured temperature from the sensor. */ /* 0x8.0 - 0x8.15 */ u_int16_t max_temperture; /* Description - Max Temperature Reset - clears the value of the max temperature register */ /* 0x8.30 - 0x8.30 */ u_int8_t mtr; /* Description - Max Temperature Enable - enables measuring the max temperature on a sensor */ /* 0x8.31 - 0x8.31 */ u_int8_t mte; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - If the sensor temperature measurement is above the threshold (and events are enabled), an event will be generated */ /* 0xc.0 - 0xc.15 */ u_int16_t temperature_threshold_hi; /* Description - Temperature Event Enable 00 - Do not generate event 01 - Generate Event 10 - Generate single event */ /* 0xc.30 - 0xc.31 */ u_int8_t tee; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.15 */ u_int16_t temperature_threshold_lo; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x18.31 */ u_int32_t name_hi; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.31 */ u_int32_t name_lo; }; /* Description - */ /* Size in bytes - 12 */ struct register_access_sib_pmaos { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Port operational state 0001 - up 0010 - down */ /* 0x0.0 - 0x0.3 */ u_int8_t oper_status; /* Description - Port administrative state (the desired state of the interface) 0001 - up 0010 - down by configuration (default) */ /* 0x0.8 - 0x0.11 */ u_int8_t admin_status; /* Description - Local port number */ /* 0x0.16 - 0x0.23 */ u_int8_t module; /* Description - Module Reset toggle */ /* 0x0.31 - 0x0.31 */ u_int8_t rst; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Event Generation on operational state change 00 - Do not generate event 01 - Generate Unacknowledged Event 10 - Generate Acknowledged Event */ /* 0x4.0 - 0x4.1 */ u_int8_t e; /* Description - module error type. valid only when oper_status=0011 */ /* 0x4.8 - 0x4.11 */ u_int8_t error_type; /* Description - Event Update Enable. If this bit is set, Event Generation will be updated based on the e field. Only relevant on Set operations */ /* 0x4.30 - 0x4.30 */ u_int8_t ee; /* Description - Admin State Update Enable. If this bit is set, Admin State will be updated based on admin_state field. Only relevant on Set operations */ /* 0x4.31 - 0x4.31 */ u_int8_t ase; }; /* Description - */ /* Size in bytes - 160 */ union register_access_sib_register_access_sib_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x1c.31 */ struct register_access_sib_mtmp mtmp; /* Description - */ /* 0x0.0 - 0x8.31 */ struct register_access_sib_pmaos pmaos; /* Description - */ /* 0x0.0 - 0x9c.31 */ struct register_access_sib_mgir mgir; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* IB_PSID_ */ void register_access_sib_IB_PSID__pack(const struct register_access_sib_IB_PSID_* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_IB_PSID__unpack(struct register_access_sib_IB_PSID_* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_IB_PSID__print(const struct register_access_sib_IB_PSID_* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_IB_PSID__size(void); #define REGISTER_ACCESS_SIB_IB_PSID__SIZE (0x10) void register_access_sib_IB_PSID__dump(const struct register_access_sib_IB_PSID_* ptr_struct, FILE* fd); /* IB_DEVInfo_ */ void register_access_sib_IB_DEVInfo__pack(const struct register_access_sib_IB_DEVInfo_* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_IB_DEVInfo__unpack(struct register_access_sib_IB_DEVInfo_* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_IB_DEVInfo__print(const struct register_access_sib_IB_DEVInfo_* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_IB_DEVInfo__size(void); #define REGISTER_ACCESS_SIB_IB_DEVINFO__SIZE (0x1c) void register_access_sib_IB_DEVInfo__dump(const struct register_access_sib_IB_DEVInfo_* ptr_struct, FILE* fd); /* IB_FWInfo_ */ void register_access_sib_IB_FWInfo__pack(const struct register_access_sib_IB_FWInfo_* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_IB_FWInfo__unpack(struct register_access_sib_IB_FWInfo_* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_IB_FWInfo__print(const struct register_access_sib_IB_FWInfo_* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_IB_FWInfo__size(void); #define REGISTER_ACCESS_SIB_IB_FWINFO__SIZE (0x40) void register_access_sib_IB_FWInfo__dump(const struct register_access_sib_IB_FWInfo_* ptr_struct, FILE* fd); /* IB_HWInfo_ */ void register_access_sib_IB_HWInfo__pack(const struct register_access_sib_IB_HWInfo_* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_IB_HWInfo__unpack(struct register_access_sib_IB_HWInfo_* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_IB_HWInfo__print(const struct register_access_sib_IB_HWInfo_* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_IB_HWInfo__size(void); #define REGISTER_ACCESS_SIB_IB_HWINFO__SIZE (0x20) void register_access_sib_IB_HWInfo__dump(const struct register_access_sib_IB_HWInfo_* ptr_struct, FILE* fd); /* IB_SWInfo_ */ void register_access_sib_IB_SWInfo__pack(const struct register_access_sib_IB_SWInfo_* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_IB_SWInfo__unpack(struct register_access_sib_IB_SWInfo_* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_IB_SWInfo__print(const struct register_access_sib_IB_SWInfo_* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_IB_SWInfo__size(void); #define REGISTER_ACCESS_SIB_IB_SWINFO__SIZE (0x20) void register_access_sib_IB_SWInfo__dump(const struct register_access_sib_IB_SWInfo_* ptr_struct, FILE* fd); /* mgir */ void register_access_sib_mgir_pack(const struct register_access_sib_mgir* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_mgir_unpack(struct register_access_sib_mgir* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_mgir_print(const struct register_access_sib_mgir* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_mgir_size(void); #define REGISTER_ACCESS_SIB_MGIR_SIZE (0xa0) void register_access_sib_mgir_dump(const struct register_access_sib_mgir* ptr_struct, FILE* fd); /* mtmp */ void register_access_sib_mtmp_pack(const struct register_access_sib_mtmp* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_mtmp_unpack(struct register_access_sib_mtmp* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_mtmp_print(const struct register_access_sib_mtmp* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_mtmp_size(void); #define REGISTER_ACCESS_SIB_MTMP_SIZE (0x20) void register_access_sib_mtmp_dump(const struct register_access_sib_mtmp* ptr_struct, FILE* fd); /* pmaos */ void register_access_sib_pmaos_pack(const struct register_access_sib_pmaos* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_pmaos_unpack(struct register_access_sib_pmaos* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_pmaos_print(const struct register_access_sib_pmaos* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_pmaos_size(void); #define REGISTER_ACCESS_SIB_PMAOS_SIZE (0xc) void register_access_sib_pmaos_dump(const struct register_access_sib_pmaos* ptr_struct, FILE* fd); /* register_access_sib_Nodes */ void register_access_sib_register_access_sib_Nodes_pack(const union register_access_sib_register_access_sib_Nodes* ptr_struct, u_int8_t* ptr_buff); void register_access_sib_register_access_sib_Nodes_unpack(union register_access_sib_register_access_sib_Nodes* ptr_struct, const u_int8_t* ptr_buff); void register_access_sib_register_access_sib_Nodes_print(const union register_access_sib_register_access_sib_Nodes* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_sib_register_access_sib_Nodes_size(void); #define REGISTER_ACCESS_SIB_REGISTER_ACCESS_SIB_NODES_SIZE (0xa0) void register_access_sib_register_access_sib_Nodes_dump(const union register_access_sib_register_access_sib_Nodes* ptr_struct, FILE* fd); #ifdef __cplusplus } #endif #endif // REGISTER_ACCESS_SIB_LAYOUTS_H mstflint-4.26.0/tools_layouts/register_access_open_layouts.h0000644000175000017500000001764114522641732024753 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2018-05-12 08:07:49" *** by: *** > [REDACTED]/adb2pack.py --input *adb/register_access_open/register_access_open.adb --file-prefix register_access_open --prefix register_access_ ***/ #ifndef REGISTER_ACCESS_OPEN_LAYOUTS_H #define REGISTER_ACCESS_OPEN_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 268 */ struct register_access_mfba { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash Select */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /* Description - Parallel */ /* 0x0.8 - 0x0.8 */ u_int8_t p; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Transaction size */ /* 0x4.0 - 0x4.8 */ u_int16_t size; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - address in bytes */ /* 0x8.0 - 0x8.31 */ u_int32_t address; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - data */ /* 0xc.0 - 0x108.31 */ u_int32_t data[64]; }; /* Description - */ /* Size in bytes - 12 */ struct register_access_mfbe { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash Select */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /* Description - Parallel */ /* 0x0.8 - 0x0.8 */ u_int8_t p; /* Description - Erase a 64KB flash area in one bulk operation. */ /* 0x0.29 - 0x0.29 */ u_int8_t bulk_64kb_erase; /* Description - Erase a 32KB flash area in one bulk operation. */ /* 0x0.30 - 0x0.30 */ u_int8_t bulk_32kb_erase; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - address in bytes */ /* 0x8.0 - 0x8.31 */ u_int32_t address; }; /* Description - */ /* Size in bytes - 32 */ struct register_access_mfpa { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash Select */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /* Description - Parallel */ /* 0x0.8 - 0x0.8 */ u_int8_t p; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - address in bytes */ /* 0x4.0 - 0x4.31 */ u_int32_t boot_address; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - number of flash devices connected */ /* 0x10.0 - 0x10.3 */ u_int8_t flash_num; /* Description - If set, MFBE register supports 64KB bulk erase operation. */ /* 0x10.29 - 0x10.29 */ u_int8_t bulk_64kb_erase_en; /* Description - If set, MFBE register supports 32KB bulk erase operation. */ /* 0x10.30 - 0x10.30 */ u_int8_t bulk_32kb_erase_en; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Flash JEDEC ID */ /* 0x14.0 - 0x14.23 */ u_int32_t jedec_id; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Flash sectore size */ /* 0x18.0 - 0x18.9 */ u_int16_t sector_size; /* Description - */ /* 0x18.16 - 0x18.23 */ u_int8_t block_allignment; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - capability mask ;bit 0:Parallel flash Support;else:Reserved */ /* 0x1c.0 - 0x1c.31 */ u_int32_t capability_mask; }; /* Description - */ /* Size in bytes - 268 */ union register_access_register_access_open_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x8.31 */ struct register_access_mfbe mfbe; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct register_access_mfpa mfpa; /* Description - */ /* 0x0.0 - 0x108.31 */ struct register_access_mfba mfba; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* mfba */ void register_access_mfba_pack(const struct register_access_mfba* ptr_struct, u_int8_t* ptr_buff); void register_access_mfba_unpack(struct register_access_mfba* ptr_struct, const u_int8_t* ptr_buff); void register_access_mfba_print(const struct register_access_mfba* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_mfba_size(void); #define REGISTER_ACCESS_MFBA_SIZE (0x10c) void register_access_mfba_dump(const struct register_access_mfba* ptr_struct, FILE* fd); /* mfbe */ void register_access_mfbe_pack(const struct register_access_mfbe* ptr_struct, u_int8_t* ptr_buff); void register_access_mfbe_unpack(struct register_access_mfbe* ptr_struct, const u_int8_t* ptr_buff); void register_access_mfbe_print(const struct register_access_mfbe* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_mfbe_size(void); #define REGISTER_ACCESS_MFBE_SIZE (0xc) void register_access_mfbe_dump(const struct register_access_mfbe* ptr_struct, FILE* fd); /* mfpa */ void register_access_mfpa_pack(const struct register_access_mfpa* ptr_struct, u_int8_t* ptr_buff); void register_access_mfpa_unpack(struct register_access_mfpa* ptr_struct, const u_int8_t* ptr_buff); void register_access_mfpa_print(const struct register_access_mfpa* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_mfpa_size(void); #define REGISTER_ACCESS_MFPA_SIZE (0x20) void register_access_mfpa_dump(const struct register_access_mfpa* ptr_struct, FILE* fd); /* register_access_open_Nodes */ void register_access_register_access_open_Nodes_pack(const union register_access_register_access_open_Nodes* ptr_struct, u_int8_t* ptr_buff); void register_access_register_access_open_Nodes_unpack(union register_access_register_access_open_Nodes* ptr_struct, const u_int8_t* ptr_buff); void register_access_register_access_open_Nodes_print(const union register_access_register_access_open_Nodes* ptr_struct, FILE* fd, int indent_level); unsigned int register_access_register_access_open_Nodes_size(void); #define REGISTER_ACCESS_REGISTER_ACCESS_OPEN_NODES_SIZE (0x10c) void register_access_register_access_open_Nodes_dump(const union register_access_register_access_open_Nodes* ptr_struct, FILE* fd); #ifdef __cplusplus } #endif #endif // REGISTER_ACCESS_OPEN_LAYOUTS_H mstflint-4.26.0/tools_layouts/tools_open_layouts.h0000644000175000017500000013477214522641732022753 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef TOOLS_OPEN_LAYOUTS_H #define TOOLS_OPEN_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 4 */ struct tools_open_bmc_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.12 */ u_int16_t param_idx; /* Description - */ /* 0x0.13 - 0x0.17 */ u_int8_t channel; /* Description - */ /* 0x0.18 - 0x0.23 */ u_int8_t host; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t param_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_configuration_item_type_class_module { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.13 */ u_int16_t parameter_index; /* Description - Module Index */ /* 0x0.14 - 0x0.23 */ u_int16_t module_index; /* Description - type_class = 0x9 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_eswitch_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t param_idx; /* Description - */ /* 0x0.16 - 0x0.17 */ u_int8_t port; /* Description - */ /* 0x0.18 - 0x0.23 */ u_int8_t host; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t param_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_global_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.23 */ u_int32_t param_idx; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t param_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_host_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.17 */ u_int32_t param_idx; /* Description - */ /* 0x0.18 - 0x0.23 */ u_int8_t host; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t param_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_per_host_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.9 */ u_int16_t param_idx; /* Description - */ /* 0x0.10 - 0x0.17 */ u_int8_t function; /* Description - */ /* 0x0.18 - 0x0.23 */ u_int8_t host; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t param_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_per_port_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t param_idx; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t port; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t param_class; }; /* Description - */ /* Size in bytes - 4 */ struct tools_open_tlv_type_dw { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ u_int32_t tlv_type_dw; }; /* Description - */ /* Size in bytes - 8 */ struct tools_open_fw_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - fw_version_major */ /* 0x0.16 - 0x0.31 */ u_int16_t fw_ver_major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - fw version subminor */ /* 0x4.0 - 0x4.15 */ u_int16_t fw_ver_subminor; /* Description - fw_version_minor */ /* 0x4.16 - 0x4.31 */ u_int16_t fw_ver_minor; }; /* Description - */ /* Size in bytes - 4 */ union tools_open_tlv_type { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_global_type global; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_eswitch_type eswitch; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_per_host_type per_host; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_bmc_type bmc; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_per_port_type per_port; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_configuration_item_type_class_module per_module; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_host_type host; /* Description - */ /* 0x0.0 - 0x0.31 */ struct tools_open_tlv_type_dw tlv_type_dw; }; /* Description - */ /* Size in bytes - 8 */ struct tools_open_ts_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Timestamp day - 2 packed BCD */ /* 0x0.0 - 0x0.7 */ u_int8_t ts_day; /* Description - Timestamp month - 2 packed BCD */ /* 0x0.8 - 0x0.15 */ u_int8_t ts_month; /* Description - Timestamp year - 4 packed BCD */ /* 0x0.16 - 0x0.31 */ u_int16_t ts_year; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Timestamp seconds - 2 packed BCD */ /* 0x4.8 - 0x4.15 */ u_int8_t ts_seconds; /* Description - Timestamp minotes - 2 packed BCD */ /* 0x4.16 - 0x4.23 */ u_int8_t ts_minutes; /* Description - Timestamp hour - 2 packed BCD */ /* 0x4.24 - 0x4.31 */ u_int8_t ts_hour; }; /* Description - */ /* Size in bytes - 12 */ struct tools_open_nv_hdr_fifth_gen { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Size of configuration item data in bytes between 0..256 */ /* 0x0.0 - 0x0.8 */ u_int16_t length; /* Description - tlv writer host index */ /* 0x0.9 - 0x0.11 */ u_int8_t writer_host_id; /* Description - Configuration item version */ /* 0x0.12 - 0x0.15 */ u_int8_t version; /* Description - Writer ID */ /* 0x0.16 - 0x0.20 */ u_int8_t writer_id; /* Description - Choose - read current values or user defined values: 0x0 - u ser defined values 0x1 - current values ( values that are loaded in last boot) */ /* 0x0.22 - 0x0.22 */ u_int8_t read_current; /* Description - when set in query , will display the default configuration */ /* 0x0.23 - 0x0.23 */ u_int8_t default_; /* Description - enables reading the TLV by lower priorities 0 - TLV can be read by the subsequent lifecycle priorities. 1 - TLV cannot be read by the subsequent lifecycle priorities. */ /* 0x0.24 - 0x0.24 */ u_int8_t rd_en; /* Description - enables overwriting the TLV by lower priorities 0 - Can only be overwritten by the current lifecycle priority 1 - Allowed to be overwritten by subsequent lifecycle priorities */ /* 0x0.25 - 0x0.25 */ u_int8_t over_en; /*The priority is set by either: 1. When using MNVDA, the TLV will have user priority 2. When using NVCONFIG, each TLV has its own priority */ /* 0x0.28 - 0x0.29 */ u_int8_t priority; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ union tools_open_tlv_type type; }; /* Description - */ /* Size in bytes - 16 */ struct tools_open_timestamp { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - fw_version */ /* 0x0.0 - 0x4.31 */ struct tools_open_fw_version fw_version; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Timestamp */ /* 0x8.0 - 0xc.31 */ struct tools_open_ts_entry ts_entry; }; /* Description - */ /* Size in bytes - 8 */ struct tools_open_uint64 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int64_t uint64; }; /* Description - */ /* Size in bytes - 20 */ struct tools_open_aux_tlv_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t minor_version; /* Description - */ /* 0x0.8 - 0x0.15 */ u_int8_t major_version; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t type; /* Description - */ /* 0x0.28 - 0x0.31 */ u_int8_t header_type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t length; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.15 */ u_int16_t crc; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ u_int32_t reserved0; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.31 */ u_int32_t reserved1; }; /* Description - */ /* Size in bytes - 172 */ struct tools_open_mgnle { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Pointer to the log entry (see description above for more information) */ /* 0x0.0 - 0x0.31 */ u_int32_t le_pointer; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The number of events that the system failed to log since the previous log entry. 15 should be interpreted as '15 or more events were lost' */ /* 0x4.24 - 0x4.27 */ u_int8_t lost_events; /* Description - 0x0: Boot - time is measured since NIC bootup. 0x1: Synced - time was synced by the host. */ /* 0x4.31 - 0x4.31 */ u_int8_t synced_time; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The 32 MSB of the 64bit timestamp. In microseconds When "time_synced" bit is set this is the time passed since the 1/1/1970 epoch. When "time_synced" is cleared this is the NIC uptime. */ /* 0x8.0 - 0x8.31 */ u_int32_t time_h; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - The 32 LSB of the 64bit timestamp. In microseconds */ /* 0xc.0 - 0xc.31 */ u_int32_t time_l; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x18.31 */ struct tools_open_nv_hdr_fifth_gen nv_hdr; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - */ /* 0x2c.24 - 0xac.23 */ u_int8_t log_data[128]; }; /* Description - */ /* Size in bytes - 16 */ struct tools_open_mlock { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - operation: 0 unlocked, 1 locked, other RESERVED. */ /* 0x0.0 - 0x0.7 */ u_int8_t operation; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Key */ /* 0x8.0 - 0xc.31 */ u_int64_t key; }; /* Description - */ /* Size in bytes - 268 */ struct tools_open_mnvda { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x8.31 */ struct tools_open_nv_hdr_fifth_gen nv_hdr; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.24 - 0x10c.23 */ u_int8_t data[256]; }; /* Description - */ /* Size in bytes - 156 */ struct tools_open_mnvgn { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Pointer to the NV parameter */ /* 0x0.0 - 0x0.31 */ u_int32_t nv_pointer; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x18.31 */ struct tools_open_nv_hdr_fifth_gen nv_hdr; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.24 - 0x9c.23 */ u_int8_t nv_data[128]; }; /* Description - */ /* Size in bytes - 20 */ struct tools_open_mvts { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - A SET operation with this flag set will only check if the new timestamp can be configured without upda ting NVRAM */ /* 0x0.29 - 0x0.29 */ u_int8_t check_timestamp_flag; /* Description - A GET operation with this flag set, will return the running FW version instead */ /* 0x0.30 - 0x0.30 */ u_int8_t running_flag; /* Description - A SET operation with this flag on will clear the running and other bank timestamps */ /* 0x0.31 - 0x0.31 */ u_int8_t clear_all_ts_flag; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Timestamp entry */ /* 0x4.0 - 0x10.31 */ struct tools_open_timestamp timestamp; }; /* Description - */ /* Size in bytes - 256 */ struct tools_open_aux_tlv { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10.31 */ struct tools_open_aux_tlv_header aux_tlv_header; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - tlv data */ /* 0x14.24 - 0x94.23 */ u_int8_t data[128]; }; /* Description - */ /* Size in bytes - 1024 */ struct tools_open_image_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - IMAGE_INFO section minor version */ /* 0x0.16 - 0x0.23 */ u_int8_t minor_version; /* Description - IMAGE_INFO section major version */ /* 0x0.24 - 0x0.31 */ u_int8_t major_version; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - */ /* 0x24.24 - 0x34.23 */ char psid[17]; /*---------------- DWORD[116] (Offset 0x1d0) ----------------*/ /* Description - Product description */ /* 0x1d0.24 - 0x2d0.23 */ char description[257]; /*---------------- DWORD[208] (Offset 0x340) ----------------*/ /* Description - Product name */ /* 0x340.24 - 0x380.23 */ char name[65]; /*---------------- DWORD[224] (Offset 0x380) ----------------*/ /* Description - PRS used to generate the FW binary */ /* 0x380.24 - 0x3e0.23 */ char prs_name[97]; }; /* Description - */ /* Size in bytes - 320 */ struct tools_open_mfg_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.24 - 0x10.23 */ char psid[17]; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - MFG_INFO section minor version */ /* 0x1c.16 - 0x1c.23 */ u_int8_t minor_version; /* Description - MFG_INFO section major version */ /* 0x1c.24 - 0x1c.31 */ u_int8_t major_version; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - original PRS used to generate the FW binary */ /* 0x60.24 - 0xc0.23 */ char orig_prs_name[97]; }; /* Description - */ /* Size in bytes - 364 */ union tools_open_mnv_cfg { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10.31 */ struct tools_open_mvts mvts; /* Description - */ /* 0x0.0 - 0xc.31 */ struct tools_open_mlock mlock; /* Description - */ /* 0x0.0 - 0x108.31 */ struct tools_open_mnvda mnvda; /* Description - */ /* 0x0.0 - 0x98.31 */ struct tools_open_mnvgn mnvgn; /* Description - */ /* 0x0.0 - 0xa8.31 */ struct tools_open_mgnle mgnle; }; /* Description - */ /* Size in bytes - 16 */ struct tools_open_nv_base_mac_guid { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int32_t base_mac[2]; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ u_int32_t base_guid[2]; }; /* Description - */ /* Size in bytes - 8 */ struct tools_open_nv_base_mac_guid_cap { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.30 - 0x0.30 */ u_int8_t guid_en; /* Description - */ /* 0x0.31 - 0x0.31 */ u_int8_t mac_en; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t num_of_allocated_macs; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t num_of_allocated_guids; }; /* Description - */ /* Size in bytes - 20 */ struct tools_open_query_def_params_global { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - When set, indicating mapping of internal clock to user space can be configured by CX3_GLOBAL_CONF.clock_map_to_user */ /* 0x0.14 - 0x0.14 */ u_int8_t nv_config_clock_map_to_user; /* Description - When set, PHY parameters mode can be configured by GLOBAL_CONF.phy_param_mode */ /* 0x0.15 - 0x0.15 */ u_int8_t nv_config_phy_param_mode; /* Description - When set, CX3_GLOBAL_CONF.steer_force_vlan bit is supported */ /* 0x0.16 - 0x0.16 */ u_int8_t nv_steer_force_vlan_supported; /* Description - When set, CX3_GLOBAL_CONF.cq_timestamp bit is supported */ /* 0x0.17 - 0x0.17 */ u_int8_t nv_cq_timestamp_supported; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t fw_default_config_payload_version; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - default number of virtual functions */ /* 0x4.0 - 0x4.7 */ u_int8_t num_vfs; /* Description - default uar bar size (log2 format) */ /* 0x4.8 - 0x4.11 */ u_int8_t uar_bar_size; /* Description - maximum value allowed for the uar bar size (log2 base) */ /* 0x4.12 - 0x4.15 */ u_int8_t max_uar_bar_size; /* Description - */ /* 0x4.21 - 0x4.21 */ u_int8_t boot_ip_ver; /* Description - default value of phy_param_mode in GLOBAL_CONF */ /* 0x4.22 - 0x4.23 */ u_int8_t default_phy_param_mode; /* Description - default value for clock_map_to_user in CX3_GLOBAL_CONF */ /* 0x4.27 - 0x4.27 */ u_int8_t default_clock_map_to_user; /* Description - The value reported by QUERY_DEV_CAP.steer_force_vlan when a CX3_GLOBAL_CONF TLV is not present */ /* 0x4.28 - 0x4.28 */ u_int8_t default_steer_force_vlan; /* Description - The value reported by QUERY_DEV_CAP.cq_timestamp when a CX3_GLOBAL_CONF TLV is not present */ /* 0x4.29 - 0x4.29 */ u_int8_t default_cq_timestamp; /* Description - default value of sriov (enabled or disabled) */ /* 0x4.31 - 0x4.31 */ u_int8_t sriov_en; }; /* Description - */ /* Size in bytes - 28 */ struct tools_open_query_def_params_per_port { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.17 - 0x0.17 */ u_int8_t nv_config_vpi_force_mode; /* Description - Firmware supports NV config settings 0x12 on the given port. */ /* 0x0.18 - 0x0.18 */ u_int8_t nv_config_vpi; /* Description - Firmware supports NV config settings 0x10 on the given port. */ /* 0x0.19 - 0x0.19 */ u_int8_t nv_config_wol; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t fw_default_config_payload_version; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.11 */ u_int16_t default_boot_vlan; /* Description - */ /* 0x4.16 - 0x4.19 */ u_int8_t default_boot_protocol; /* Description - */ /* 0x4.20 - 0x4.23 */ u_int8_t default_boot_retry_cnt; /* Description - */ /* 0x4.25 - 0x4.26 */ u_int8_t default_network_link_type; /* Description - */ /* 0x4.27 - 0x4.27 */ u_int8_t default_en_wol_magic; /* Description - */ /* 0x4.28 - 0x4.28 */ u_int8_t default_boot_vlan_en; /* Description - */ /* 0x4.29 - 0x4.29 */ u_int8_t default_boot_option_rom_en; /* Description - */ /* 0x4.30 - 0x4.30 */ u_int8_t default_pprx; /* Description - */ /* 0x4.31 - 0x4.31 */ u_int8_t default_pptx; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.15 */ u_int16_t default_boot_pkey; /* Description - */ /* 0x8.24 - 0x8.25 */ u_int8_t boot_ip_ver; /* Description - Legacy option ROM supports NV config setting 0x2023. */ /* 0x8.27 - 0x8.27 */ u_int8_t nv_config_infiniband_dhcp_settings; /* Description - Legacy option ROM supports NV config setting 0x2022. */ /* 0x8.28 - 0x8.28 */ u_int8_t nv_config_infiniband_boot_settings; /* Description - */ /* 0x8.29 - 0x8.29 */ u_int8_t nv_config_dhcp_iscsi_parameters; /* Description - */ /* 0x8.30 - 0x8.30 */ u_int8_t nv_config_iscsi_parameters; /* Description - */ /* 0x8.31 - 0x8.31 */ u_int8_t nv_config_boot_parameters; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.9 - 0xc.9 */ u_int8_t default_vpi_force_mode; /* Description - */ /* 0xc.10 - 0xc.11 */ u_int8_t default_vpi_xfi_mode; /* Description - */ /* 0xc.12 - 0xc.13 */ u_int8_t default_vpi_phy_type; /* Description - */ /* 0xc.22 - 0xc.23 */ u_int8_t iscsi_boot_to_target; /* Description - */ /* 0xc.26 - 0xc.26 */ u_int8_t iscsi_vlan_en; /* Description - */ /* 0xc.27 - 0xc.27 */ u_int8_t iscsi_tcp_timestamps_en; /* Description - */ /* 0xc.28 - 0xc.28 */ u_int8_t iscsi_chap_mutual_auth_en; /* Description - */ /* 0xc.29 - 0xc.29 */ u_int8_t iscsi_chap_auth_en; /* Description - */ /* 0xc.30 - 0xc.30 */ u_int8_t iscsi_dhcp_params_en; /* Description - */ /* 0xc.31 - 0xc.31 */ u_int8_t iscsi_ipv4_dhcp_en; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.7 */ u_int8_t iscsi_lun_busy_retry_cnt; /* Description - */ /* 0x10.8 - 0x10.15 */ u_int8_t iscsi_link_up_delay_time; }; /* Description - */ /* Size in bytes - 512 */ union tools_open_access_registers { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Misc NV Registers, this is temporary untill we integrate with fw db */ /* 0x0.0 - 0x168.31 */ union tools_open_mnv_cfg MNVReg; }; /* Description - */ /* Size in bytes - 256 */ union tools_open_aux_img_data { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - image tlv entry */ /* 0x0.0 - 0xfc.31 */ struct tools_open_aux_tlv aux_tlv; }; /* Description - */ /* Size in bytes - 264 */ union tools_open_hcr_cmds { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10.31 */ struct tools_open_query_def_params_global query_def_params_global; /* Description - */ /* 0x0.0 - 0x18.31 */ struct tools_open_query_def_params_per_port query_def_params_per_port; }; /* Description - */ /* Size in bytes - 36 */ struct tools_open_mcdd_descriptor { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Update handle registered when the FSM was activated. */ /* 0x0.0 - 0x0.23 */ u_int32_t update_handle; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Offset of accessed address relative to component start. */ /* 0x4.0 - 0x4.31 */ u_int32_t offset; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Size of the data accessed, given in bytes */ /* 0x8.0 - 0x8.15 */ u_int16_t size; /* Description - Reserved */ /* 0x8.16 - 0x8.31 */ u_int16_t reserved1; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Reserved */ /* 0xc.0 - 0xc.31 */ u_int32_t reserved2; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x10.0 - 0x10.31 */ u_int32_t data_page_phys_addr_msb; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x14.0 - 0x14.31 */ u_int32_t data_page_phys_addr_lsb; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x18.0 - 0x18.31 */ u_int32_t mailbox_page_phys_addr_msb; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x1c.0 - 0x1c.31 */ u_int32_t mailbox_page_phys_addr_lsb; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - Status of current operation that FW sends to host. */ /* 0x20.0 - 0x20.7 */ u_int8_t status; /* Description - Last error index, if occured. */ /* 0x20.8 - 0x20.15 */ u_int8_t error; /* Description - Reserved. */ /* 0x20.16 - 0x20.31 */ u_int16_t reserved3; }; /* Description - */ /* Size in bytes - 32 */ struct tools_open_mcdd_reg { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Update handle registered when the FSM was activated. */ /* 0x0.0 - 0x0.23 */ u_int32_t update_handle; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Offset of accessed address relative to component start. */ /* 0x4.0 - 0x4.31 */ u_int32_t offset; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Size of the data accessed, given in bytes */ /* 0x8.0 - 0x8.15 */ u_int16_t size; /* Description - Reserved */ /* 0x8.16 - 0x8.31 */ u_int16_t reserved1; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Reserved */ /* 0xc.0 - 0xc.31 */ u_int32_t reserved2; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x10.0 - 0x10.31 */ u_int32_t data_page_phys_addr_msb; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x14.0 - 0x14.31 */ u_int32_t data_page_phys_addr_lsb; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x18.0 - 0x18.31 */ u_int32_t mailbox_page_phys_addr_msb; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Physical address of the FW component data page */ /* 0x1c.0 - 0x1c.31 */ u_int32_t mailbox_page_phys_addr_lsb; }; /* Description - MIRC register */ /* Size in bytes - 8 */ struct tools_open_mirc_reg { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Statuses: 0 success, 1 busy, etc. */ /* 0x0.0 - 0x0.7 */ u_int8_t status_code; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t reserved; }; /* Description - */ /* Size in bytes - 1024 */ union tools_open_misc_structs { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x3fc.31 */ struct tools_open_image_info image_info; /* Description - */ /* 0x0.0 - 0x13c.31 */ struct tools_open_mfg_info mfg_info; }; /* Description - */ /* Size in bytes - 256 */ union tools_open_nv_cfg { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0xc.31 */ struct tools_open_nv_base_mac_guid nv_base_mac_guid; /* Description - */ /* 0x0.0 - 0x4.31 */ struct tools_open_nv_base_mac_guid_cap nv_base_mac_guid_cap; }; /* Description - */ /* Size in bytes - 1048576 */ union tools_open_tools_open { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Non-Volatile Cfg Tlvs */ /* 0x0.0 - 0xfc.31 */ union tools_open_nv_cfg NVConfig; /* Description - various registers in specific use by the tools */ /* 0x0.0 - 0x1fc.31 */ union tools_open_access_registers AceessRegisters; /* Description - Tools HCR commands structs */ /* 0x0.0 - 0x104.31 */ union tools_open_hcr_cmds HcrCmds; /* Description - aux image data layout */ /* 0x0.0 - 0xfc.31 */ union tools_open_aux_img_data AuxImgData; /* Description - Misc structs needed for integration on new FW features */ /* 0x0.0 - 0x3fc.31 */ union tools_open_misc_structs MiscStructs; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct tools_open_mcdd_reg mcdd_reg; /* Description - */ /* 0x0.0 - 0x20.31 */ struct tools_open_mcdd_descriptor mcdd_descriptor; /* Description - */ /* 0x0.0 - 0x4.31 */ struct tools_open_mirc_reg mirc_reg; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* bmc_type */ void tools_open_bmc_type_pack(const struct tools_open_bmc_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_bmc_type_unpack(struct tools_open_bmc_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_bmc_type_print(const struct tools_open_bmc_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_bmc_type_size(void); #define TOOLS_OPEN_BMC_TYPE_SIZE (0x4) void tools_open_bmc_type_dump(const struct tools_open_bmc_type *ptr_struct, FILE *fd); /* configuration_item_type_class_module */ void tools_open_configuration_item_type_class_module_pack(const struct tools_open_configuration_item_type_class_module *ptr_struct, u_int8_t *ptr_buff); void tools_open_configuration_item_type_class_module_unpack(struct tools_open_configuration_item_type_class_module *ptr_struct, const u_int8_t *ptr_buff); void tools_open_configuration_item_type_class_module_print(const struct tools_open_configuration_item_type_class_module *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_configuration_item_type_class_module_size(void); #define TOOLS_OPEN_CONFIGURATION_ITEM_TYPE_CLASS_MODULE_SIZE (0x4) void tools_open_configuration_item_type_class_module_dump(const struct tools_open_configuration_item_type_class_module *ptr_struct, FILE *fd); /* eswitch_type */ void tools_open_eswitch_type_pack(const struct tools_open_eswitch_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_eswitch_type_unpack(struct tools_open_eswitch_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_eswitch_type_print(const struct tools_open_eswitch_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_eswitch_type_size(void); #define TOOLS_OPEN_ESWITCH_TYPE_SIZE (0x4) void tools_open_eswitch_type_dump(const struct tools_open_eswitch_type *ptr_struct, FILE *fd); /* global_type */ void tools_open_global_type_pack(const struct tools_open_global_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_global_type_unpack(struct tools_open_global_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_global_type_print(const struct tools_open_global_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_global_type_size(void); #define TOOLS_OPEN_GLOBAL_TYPE_SIZE (0x4) void tools_open_global_type_dump(const struct tools_open_global_type *ptr_struct, FILE *fd); /* host_type */ void tools_open_host_type_pack(const struct tools_open_host_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_host_type_unpack(struct tools_open_host_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_host_type_print(const struct tools_open_host_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_host_type_size(void); #define TOOLS_OPEN_HOST_TYPE_SIZE (0x4) void tools_open_host_type_dump(const struct tools_open_host_type *ptr_struct, FILE *fd); /* per_host_type */ void tools_open_per_host_type_pack(const struct tools_open_per_host_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_per_host_type_unpack(struct tools_open_per_host_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_per_host_type_print(const struct tools_open_per_host_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_per_host_type_size(void); #define TOOLS_OPEN_PER_HOST_TYPE_SIZE (0x4) void tools_open_per_host_type_dump(const struct tools_open_per_host_type *ptr_struct, FILE *fd); /* per_port_type */ void tools_open_per_port_type_pack(const struct tools_open_per_port_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_per_port_type_unpack(struct tools_open_per_port_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_per_port_type_print(const struct tools_open_per_port_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_per_port_type_size(void); #define TOOLS_OPEN_PER_PORT_TYPE_SIZE (0x4) void tools_open_per_port_type_dump(const struct tools_open_per_port_type *ptr_struct, FILE *fd); /* tlv_type_dw */ void tools_open_tlv_type_dw_pack(const struct tools_open_tlv_type_dw *ptr_struct, u_int8_t *ptr_buff); void tools_open_tlv_type_dw_unpack(struct tools_open_tlv_type_dw *ptr_struct, const u_int8_t *ptr_buff); void tools_open_tlv_type_dw_print(const struct tools_open_tlv_type_dw *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_tlv_type_dw_size(void); #define TOOLS_OPEN_TLV_TYPE_DW_SIZE (0x4) void tools_open_tlv_type_dw_dump(const struct tools_open_tlv_type_dw *ptr_struct, FILE *fd); /* fw_version */ void tools_open_fw_version_pack(const struct tools_open_fw_version *ptr_struct, u_int8_t *ptr_buff); void tools_open_fw_version_unpack(struct tools_open_fw_version *ptr_struct, const u_int8_t *ptr_buff); void tools_open_fw_version_print(const struct tools_open_fw_version *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_fw_version_size(void); #define TOOLS_OPEN_FW_VERSION_SIZE (0x8) void tools_open_fw_version_dump(const struct tools_open_fw_version *ptr_struct, FILE *fd); /* tlv_type */ void tools_open_tlv_type_pack(const union tools_open_tlv_type *ptr_struct, u_int8_t *ptr_buff); void tools_open_tlv_type_unpack(union tools_open_tlv_type *ptr_struct, const u_int8_t *ptr_buff); void tools_open_tlv_type_print(const union tools_open_tlv_type *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_tlv_type_size(void); #define TOOLS_OPEN_TLV_TYPE_SIZE (0x4) void tools_open_tlv_type_dump(const union tools_open_tlv_type *ptr_struct, FILE *fd); /* ts_entry */ void tools_open_ts_entry_pack(const struct tools_open_ts_entry *ptr_struct, u_int8_t *ptr_buff); void tools_open_ts_entry_unpack(struct tools_open_ts_entry *ptr_struct, const u_int8_t *ptr_buff); void tools_open_ts_entry_print(const struct tools_open_ts_entry *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_ts_entry_size(void); #define TOOLS_OPEN_TS_ENTRY_SIZE (0x8) void tools_open_ts_entry_dump(const struct tools_open_ts_entry *ptr_struct, FILE *fd); /* nv_hdr_fifth_gen */ void tools_open_nv_hdr_fifth_gen_pack(const struct tools_open_nv_hdr_fifth_gen *ptr_struct, u_int8_t *ptr_buff); void tools_open_nv_hdr_fifth_gen_unpack(struct tools_open_nv_hdr_fifth_gen *ptr_struct, const u_int8_t *ptr_buff); void tools_open_nv_hdr_fifth_gen_print(const struct tools_open_nv_hdr_fifth_gen *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_nv_hdr_fifth_gen_size(void); #define TOOLS_OPEN_NV_HDR_FIFTH_GEN_SIZE (0xc) void tools_open_nv_hdr_fifth_gen_dump(const struct tools_open_nv_hdr_fifth_gen *ptr_struct, FILE *fd); /* timestamp */ void tools_open_timestamp_pack(const struct tools_open_timestamp *ptr_struct, u_int8_t *ptr_buff); void tools_open_timestamp_unpack(struct tools_open_timestamp *ptr_struct, const u_int8_t *ptr_buff); void tools_open_timestamp_print(const struct tools_open_timestamp *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_timestamp_size(void); #define TOOLS_OPEN_TIMESTAMP_SIZE (0x10) void tools_open_timestamp_dump(const struct tools_open_timestamp *ptr_struct, FILE *fd); /* uint64 */ void tools_open_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff); void tools_open_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff); void tools_open_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_uint64_size(void); #define TOOLS_OPEN_UINT64_SIZE (0x8) void tools_open_uint64_dump(const u_int64_t *ptr_struct, FILE *fd); /* aux_tlv_header */ void tools_open_aux_tlv_header_pack(const struct tools_open_aux_tlv_header *ptr_struct, u_int8_t *ptr_buff); void tools_open_aux_tlv_header_unpack(struct tools_open_aux_tlv_header *ptr_struct, const u_int8_t *ptr_buff); void tools_open_aux_tlv_header_print(const struct tools_open_aux_tlv_header *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_aux_tlv_header_size(void); #define TOOLS_OPEN_AUX_TLV_HEADER_SIZE (0x14) void tools_open_aux_tlv_header_dump(const struct tools_open_aux_tlv_header *ptr_struct, FILE *fd); /* mgnle */ void tools_open_mgnle_pack(const struct tools_open_mgnle *ptr_struct, u_int8_t *ptr_buff); void tools_open_mgnle_unpack(struct tools_open_mgnle *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mgnle_print(const struct tools_open_mgnle *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mgnle_size(void); #define TOOLS_OPEN_MGNLE_SIZE (0xac) void tools_open_mgnle_dump(const struct tools_open_mgnle *ptr_struct, FILE *fd); /* mlock */ void tools_open_mlock_pack(const struct tools_open_mlock *ptr_struct, u_int8_t *ptr_buff); void tools_open_mlock_unpack(struct tools_open_mlock *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mlock_print(const struct tools_open_mlock *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mlock_size(void); #define TOOLS_OPEN_MLOCK_SIZE (0x10) void tools_open_mlock_dump(const struct tools_open_mlock *ptr_struct, FILE *fd); /* mnvda */ void tools_open_mnvda_pack(const struct tools_open_mnvda *ptr_struct, u_int8_t *ptr_buff); void tools_open_mnvda_unpack(struct tools_open_mnvda *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mnvda_print(const struct tools_open_mnvda *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mnvda_size(void); #define TOOLS_OPEN_MNVDA_SIZE (0x10c) void tools_open_mnvda_dump(const struct tools_open_mnvda *ptr_struct, FILE *fd); /* mnvgn */ void tools_open_mnvgn_pack(const struct tools_open_mnvgn *ptr_struct, u_int8_t *ptr_buff); void tools_open_mnvgn_unpack(struct tools_open_mnvgn *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mnvgn_print(const struct tools_open_mnvgn *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mnvgn_size(void); #define TOOLS_OPEN_MNVGN_SIZE (0x9c) void tools_open_mnvgn_dump(const struct tools_open_mnvgn *ptr_struct, FILE *fd); /* mvts */ void tools_open_mvts_pack(const struct tools_open_mvts *ptr_struct, u_int8_t *ptr_buff); void tools_open_mvts_unpack(struct tools_open_mvts *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mvts_print(const struct tools_open_mvts *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mvts_size(void); #define TOOLS_OPEN_MVTS_SIZE (0x14) void tools_open_mvts_dump(const struct tools_open_mvts *ptr_struct, FILE *fd); /* aux_tlv */ void tools_open_aux_tlv_pack(const struct tools_open_aux_tlv *ptr_struct, u_int8_t *ptr_buff); void tools_open_aux_tlv_unpack(struct tools_open_aux_tlv *ptr_struct, const u_int8_t *ptr_buff); void tools_open_aux_tlv_print(const struct tools_open_aux_tlv *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_aux_tlv_size(void); #define TOOLS_OPEN_AUX_TLV_SIZE (0x100) void tools_open_aux_tlv_dump(const struct tools_open_aux_tlv *ptr_struct, FILE *fd); /* image_info */ void tools_open_image_info_pack(const struct tools_open_image_info *ptr_struct, u_int8_t *ptr_buff); void tools_open_image_info_unpack(struct tools_open_image_info *ptr_struct, const u_int8_t *ptr_buff); void tools_open_image_info_print(const struct tools_open_image_info *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_image_info_size(void); #define TOOLS_OPEN_IMAGE_INFO_SIZE (0x400) void tools_open_image_info_dump(const struct tools_open_image_info *ptr_struct, FILE *fd); /* mfg_info */ void tools_open_mfg_info_pack(const struct tools_open_mfg_info *ptr_struct, u_int8_t *ptr_buff); void tools_open_mfg_info_unpack(struct tools_open_mfg_info *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mfg_info_print(const struct tools_open_mfg_info *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mfg_info_size(void); #define TOOLS_OPEN_MFG_INFO_SIZE (0x140) void tools_open_mfg_info_dump(const struct tools_open_mfg_info *ptr_struct, FILE *fd); /* mnv_cfg */ void tools_open_mnv_cfg_pack(const union tools_open_mnv_cfg *ptr_struct, u_int8_t *ptr_buff); void tools_open_mnv_cfg_unpack(union tools_open_mnv_cfg *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mnv_cfg_print(const union tools_open_mnv_cfg *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mnv_cfg_size(void); #define TOOLS_OPEN_MNV_CFG_SIZE (0x16c) void tools_open_mnv_cfg_dump(const union tools_open_mnv_cfg *ptr_struct, FILE *fd); /* nv_base_mac_guid */ void tools_open_nv_base_mac_guid_pack(const struct tools_open_nv_base_mac_guid *ptr_struct, u_int8_t *ptr_buff); void tools_open_nv_base_mac_guid_unpack(struct tools_open_nv_base_mac_guid *ptr_struct, const u_int8_t *ptr_buff); void tools_open_nv_base_mac_guid_print(const struct tools_open_nv_base_mac_guid *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_nv_base_mac_guid_size(void); #define TOOLS_OPEN_NV_BASE_MAC_GUID_SIZE (0x10) void tools_open_nv_base_mac_guid_dump(const struct tools_open_nv_base_mac_guid *ptr_struct, FILE *fd); /* nv_base_mac_guid_cap */ void tools_open_nv_base_mac_guid_cap_pack(const struct tools_open_nv_base_mac_guid_cap *ptr_struct, u_int8_t *ptr_buff); void tools_open_nv_base_mac_guid_cap_unpack(struct tools_open_nv_base_mac_guid_cap *ptr_struct, const u_int8_t *ptr_buff); void tools_open_nv_base_mac_guid_cap_print(const struct tools_open_nv_base_mac_guid_cap *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_nv_base_mac_guid_cap_size(void); #define TOOLS_OPEN_NV_BASE_MAC_GUID_CAP_SIZE (0x8) void tools_open_nv_base_mac_guid_cap_dump(const struct tools_open_nv_base_mac_guid_cap *ptr_struct, FILE *fd); /* query_def_params_global */ void tools_open_query_def_params_global_pack(const struct tools_open_query_def_params_global *ptr_struct, u_int8_t *ptr_buff); void tools_open_query_def_params_global_unpack(struct tools_open_query_def_params_global *ptr_struct, const u_int8_t *ptr_buff); void tools_open_query_def_params_global_print(const struct tools_open_query_def_params_global *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_query_def_params_global_size(void); #define TOOLS_OPEN_QUERY_DEF_PARAMS_GLOBAL_SIZE (0x14) void tools_open_query_def_params_global_dump(const struct tools_open_query_def_params_global *ptr_struct, FILE *fd); /* query_def_params_per_port */ void tools_open_query_def_params_per_port_pack(const struct tools_open_query_def_params_per_port *ptr_struct, u_int8_t *ptr_buff); void tools_open_query_def_params_per_port_unpack(struct tools_open_query_def_params_per_port *ptr_struct, const u_int8_t *ptr_buff); void tools_open_query_def_params_per_port_print(const struct tools_open_query_def_params_per_port *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_query_def_params_per_port_size(void); #define TOOLS_OPEN_QUERY_DEF_PARAMS_PER_PORT_SIZE (0x1c) void tools_open_query_def_params_per_port_dump(const struct tools_open_query_def_params_per_port *ptr_struct, FILE *fd); /* access_registers */ void tools_open_access_registers_pack(const union tools_open_access_registers *ptr_struct, u_int8_t *ptr_buff); void tools_open_access_registers_unpack(union tools_open_access_registers *ptr_struct, const u_int8_t *ptr_buff); void tools_open_access_registers_print(const union tools_open_access_registers *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_access_registers_size(void); #define TOOLS_OPEN_ACCESS_REGISTERS_SIZE (0x200) void tools_open_access_registers_dump(const union tools_open_access_registers *ptr_struct, FILE *fd); /* aux_img_data */ void tools_open_aux_img_data_pack(const union tools_open_aux_img_data *ptr_struct, u_int8_t *ptr_buff); void tools_open_aux_img_data_unpack(union tools_open_aux_img_data *ptr_struct, const u_int8_t *ptr_buff); void tools_open_aux_img_data_print(const union tools_open_aux_img_data *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_aux_img_data_size(void); #define TOOLS_OPEN_AUX_IMG_DATA_SIZE (0x100) void tools_open_aux_img_data_dump(const union tools_open_aux_img_data *ptr_struct, FILE *fd); /* hcr_cmds */ void tools_open_hcr_cmds_pack(const union tools_open_hcr_cmds *ptr_struct, u_int8_t *ptr_buff); void tools_open_hcr_cmds_unpack(union tools_open_hcr_cmds *ptr_struct, const u_int8_t *ptr_buff); void tools_open_hcr_cmds_print(const union tools_open_hcr_cmds *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_hcr_cmds_size(void); #define TOOLS_OPEN_HCR_CMDS_SIZE (0x108) void tools_open_hcr_cmds_dump(const union tools_open_hcr_cmds *ptr_struct, FILE *fd); /* mcdd_descriptor */ void tools_open_mcdd_descriptor_pack(const struct tools_open_mcdd_descriptor *ptr_struct, u_int8_t *ptr_buff); void tools_open_mcdd_descriptor_unpack(struct tools_open_mcdd_descriptor *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mcdd_descriptor_print(const struct tools_open_mcdd_descriptor *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mcdd_descriptor_size(void); #define TOOLS_OPEN_MCDD_DESCRIPTOR_SIZE (0x24) void tools_open_mcdd_descriptor_dump(const struct tools_open_mcdd_descriptor *ptr_struct, FILE *fd); /* mcdd_reg */ void tools_open_mcdd_reg_pack(const struct tools_open_mcdd_reg *ptr_struct, u_int8_t *ptr_buff); void tools_open_mcdd_reg_unpack(struct tools_open_mcdd_reg *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mcdd_reg_print(const struct tools_open_mcdd_reg *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mcdd_reg_size(void); #define TOOLS_OPEN_MCDD_REG_SIZE (0x20) void tools_open_mcdd_reg_dump(const struct tools_open_mcdd_reg *ptr_struct, FILE *fd); /* mirc_reg */ void tools_open_mirc_reg_pack(const struct tools_open_mirc_reg *ptr_struct, u_int8_t *ptr_buff); void tools_open_mirc_reg_unpack(struct tools_open_mirc_reg *ptr_struct, const u_int8_t *ptr_buff); void tools_open_mirc_reg_print(const struct tools_open_mirc_reg *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_mirc_reg_size(void); #define TOOLS_OPEN_MIRC_REG_SIZE (0x8) void tools_open_mirc_reg_dump(const struct tools_open_mirc_reg *ptr_struct, FILE *fd); /* misc_structs */ void tools_open_misc_structs_pack(const union tools_open_misc_structs *ptr_struct, u_int8_t *ptr_buff); void tools_open_misc_structs_unpack(union tools_open_misc_structs *ptr_struct, const u_int8_t *ptr_buff); void tools_open_misc_structs_print(const union tools_open_misc_structs *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_misc_structs_size(void); #define TOOLS_OPEN_MISC_STRUCTS_SIZE (0x400) void tools_open_misc_structs_dump(const union tools_open_misc_structs *ptr_struct, FILE *fd); /* nv_cfg */ void tools_open_nv_cfg_pack(const union tools_open_nv_cfg *ptr_struct, u_int8_t *ptr_buff); void tools_open_nv_cfg_unpack(union tools_open_nv_cfg *ptr_struct, const u_int8_t *ptr_buff); void tools_open_nv_cfg_print(const union tools_open_nv_cfg *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_nv_cfg_size(void); #define TOOLS_OPEN_NV_CFG_SIZE (0x100) void tools_open_nv_cfg_dump(const union tools_open_nv_cfg *ptr_struct, FILE *fd); /* tools_open */ void tools_open_tools_open_pack(const union tools_open_tools_open *ptr_struct, u_int8_t *ptr_buff); void tools_open_tools_open_unpack(union tools_open_tools_open *ptr_struct, const u_int8_t *ptr_buff); void tools_open_tools_open_print(const union tools_open_tools_open *ptr_struct, FILE *fd, int indent_level); unsigned int tools_open_tools_open_size(void); #define TOOLS_OPEN_TOOLS_OPEN_SIZE (0x100000) void tools_open_tools_open_dump(const union tools_open_tools_open *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // TOOLS_OPEN_LAYOUTS_H mstflint-4.26.0/tools_layouts/mlxarchive_layouts.h0000755000175000017500000002675514522641732022740 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-01-05 14:52:46" *** by: *** > [REDACTED]/adb2pack.py --input adb/tools_open/mlxarchive.adb *--file-prefix mlxarchive --prefix mlxarchive_ --no-adb-utils ***/ #ifndef MLXARCHIVE_LAYOUTS_H #define MLXARCHIVE_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 4 */ struct mlxarchive_common_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t length; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t type; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t version; }; /* Description - */ /* Size in bytes - 16 */ struct mlxarchive_component_desciptor { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t identifier; /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t pldm_classification; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t cb_offset_h; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ u_int32_t cb_offset_l; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ u_int32_t size; }; /* Description - */ /* Size in bytes - 8 */ struct mlxarchive_component_ptr { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t component_index; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t storage_id; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t storage_address; }; /* Description - */ /* Size in bytes - 4 */ struct mlxarchive_multi_part { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t total_length; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t number_of_extensions; }; /* Description - */ /* Size in bytes - 28 */ struct mlxarchive_package_descriptor { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t num_of_devices; /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t num_of_components; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t cb_offset; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ u_int32_t cb_archive_size; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ u_int32_t cb_size_h; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.31 */ u_int32_t cb_size_l; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.24 - 0x14.31 */ u_int8_t cb_compression; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x18.31 */ u_int32_t user_data_offset; }; /* Description - */ /* Size in bytes - 12 */ struct mlxarchive_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t version_sub_minor; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t version_minor; /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t version_major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.7 */ u_int8_t day; /* Description - */ /* 0x4.8 - 0x4.15 */ u_int8_t month; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t year; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.8 - 0x8.15 */ u_int8_t seconds; /* Description - */ /* 0x8.16 - 0x8.23 */ u_int8_t minutes; /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t hour; }; /* Description - Mellanox Firmware Archiver 2 */ /* Size in bytes - 32 */ union mlxarchive_mlxarchive_nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ struct mlxarchive_common_header common_header; /* Description - */ /* 0x0.0 - 0x0.31 */ struct mlxarchive_multi_part multi_part; /* Description - */ /* 0x0.0 - 0x18.31 */ struct mlxarchive_package_descriptor package_descriptor; /* Description - */ /* 0x0.0 - 0xc.31 */ struct mlxarchive_component_desciptor component_desciptor; /* Description - */ /* 0x0.0 - 0x8.31 */ struct mlxarchive_version version; /* Description - */ /* 0x0.0 - 0x4.31 */ struct mlxarchive_component_ptr component_ptr; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* common_header */ void mlxarchive_common_header_pack(const struct mlxarchive_common_header* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_common_header_unpack(struct mlxarchive_common_header* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_common_header_print(const struct mlxarchive_common_header* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_common_header_size(void); #define MLXARCHIVE_COMMON_HEADER_SIZE (0x4) void mlxarchive_common_header_dump(const struct mlxarchive_common_header* ptr_struct, FILE* fd); /* component_desciptor */ void mlxarchive_component_desciptor_pack(const struct mlxarchive_component_desciptor* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_component_desciptor_unpack(struct mlxarchive_component_desciptor* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_component_desciptor_print(const struct mlxarchive_component_desciptor* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_component_desciptor_size(void); #define MLXARCHIVE_COMPONENT_DESCIPTOR_SIZE (0x10) void mlxarchive_component_desciptor_dump(const struct mlxarchive_component_desciptor* ptr_struct, FILE* fd); /* component_ptr */ void mlxarchive_component_ptr_pack(const struct mlxarchive_component_ptr* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_component_ptr_unpack(struct mlxarchive_component_ptr* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_component_ptr_print(const struct mlxarchive_component_ptr* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_component_ptr_size(void); #define MLXARCHIVE_COMPONENT_PTR_SIZE (0x8) void mlxarchive_component_ptr_dump(const struct mlxarchive_component_ptr* ptr_struct, FILE* fd); /* multi_part */ void mlxarchive_multi_part_pack(const struct mlxarchive_multi_part* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_multi_part_unpack(struct mlxarchive_multi_part* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_multi_part_print(const struct mlxarchive_multi_part* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_multi_part_size(void); #define MLXARCHIVE_MULTI_PART_SIZE (0x4) void mlxarchive_multi_part_dump(const struct mlxarchive_multi_part* ptr_struct, FILE* fd); /* package_descriptor */ void mlxarchive_package_descriptor_pack(const struct mlxarchive_package_descriptor* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_package_descriptor_unpack(struct mlxarchive_package_descriptor* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_package_descriptor_print(const struct mlxarchive_package_descriptor* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_package_descriptor_size(void); #define MLXARCHIVE_PACKAGE_DESCRIPTOR_SIZE (0x1c) void mlxarchive_package_descriptor_dump(const struct mlxarchive_package_descriptor* ptr_struct, FILE* fd); /* version */ void mlxarchive_version_pack(const struct mlxarchive_version* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_version_unpack(struct mlxarchive_version* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_version_print(const struct mlxarchive_version* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_version_size(void); #define MLXARCHIVE_VERSION_SIZE (0xc) void mlxarchive_version_dump(const struct mlxarchive_version* ptr_struct, FILE* fd); /* mlxarchive_nodes */ void mlxarchive_mlxarchive_nodes_pack(const union mlxarchive_mlxarchive_nodes* ptr_struct, u_int8_t* ptr_buff); void mlxarchive_mlxarchive_nodes_unpack(union mlxarchive_mlxarchive_nodes* ptr_struct, const u_int8_t* ptr_buff); void mlxarchive_mlxarchive_nodes_print(const union mlxarchive_mlxarchive_nodes* ptr_struct, FILE* fd, int indent_level); unsigned int mlxarchive_mlxarchive_nodes_size(void); #define MLXARCHIVE_MLXARCHIVE_NODES_SIZE (0x20) void mlxarchive_mlxarchive_nodes_dump(const union mlxarchive_mlxarchive_nodes* ptr_struct, FILE* fd); #ifdef __cplusplus } #endif #endif // MLXARCHIVE_LAYOUTS_H mstflint-4.26.0/tools_layouts/icmd_hca_layouts.h0000755000175000017500000005565114522641732022322 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-07-19 14:43:13" *** by: *** > [REDACTED]/adb2pack.py --input adb/tools/icmd_hca.adb --file-prefix icmd_hca --prefix icmd_hca_ --no-adb-utils ***/ #ifndef ICMD_HCA_LAYOUTS_H #define ICMD_HCA_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 4 */ struct icmd_hca_counter_id { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t counter_id; }; /* Description - */ /* Size in bytes - 4 */ struct icmd_hca_diagnostic_cntr_layout { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Diagnostic counter identifier. */ /* 0x0.0 - 0x0.15 */ u_int16_t counter_id; /* Description - The counter might be used as Synced Start Diagnostics Counters */ /* 0x0.31 - 0x0.31 */ u_int8_t sync; }; /* Description - */ /* Size in bytes - 24 */ struct icmd_hca_diagnostic_params_context { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The number of samples to store on the device's sampling buffer is 2^ log_number_of_samples. Range is 1 floor(DIAG_CNT_CAP. log_max_samples_mul_counters /DIAG_CNT_SET. num_of_counters) Note that modifying this field will cause resetting the sampling buffer. */ /* 0x0.0 - 0x0.7 */ u_int8_t log_num_of_samples; /* Description - Number of valid counters to be captured in the list below. */ /* 0x0.16 - 0x0.31 */ u_int16_t num_of_counters; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The sample_period is 2^ log_sample_period in device clocks. Range is diagnostic Capabilities Layout.Min_sample_period 35 (85 sec in 400 MHz clock) */ /* 0x4.0 - 0x4.7 */ u_int8_t log_sample_period; /* Description - If set, the diagnostic counter report will be logged in the tracer buffer. */ /* 0x4.25 - 0x4.25 */ u_int8_t tracer_dump; /* Description - 0x1: Enable - enables diagnostic counting. 0x0: Disable - disables diagnostic counting. */ /* 0x4.26 - 0x4.26 */ u_int8_t enable; /* Description - If set, the device does not collect samples. Upon QUERY_DIAGNOSTIC command, the device will fetch current sample. "on demand" mode is mutually exclusive with "repetitive", "clear" and "sync" modes and cannot be set together */ /* 0x4.27 - 0x4.27 */ u_int8_t on_demand; /* Description - Clear counters at the beginning of each period. Valid only for Synched Start Diagnostic Counters, only when sync is set to '1'. Clear is mutually exclusive with "on demand". */ /* 0x4.28 - 0x4.28 */ u_int8_t clear; /* Description - Use Synched Start counting on Diagnostics Counters that support sync operation. Sync is mutually exclusive with "on demand". */ /* 0x4.29 - 0x4.29 */ u_int8_t sync; /* Description - Repetitive sampling mode. Available only when HCA-CAP.repetitive is '1' Mutually exclusive with "single" mode and on_demand mode. */ /* 0x4.30 - 0x4.30 */ u_int8_t repetitive; /* Description - Single sampling mode. Available only when HCA_CAP.single is '1'. Mutually exclusive with "repetitive" mode. */ /* 0x4.31 - 0x4.31 */ u_int8_t single; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Counter ids to capture. */ /* 0x18.0 - 0x18.31 */ struct icmd_hca_counter_id *counter_id; }; /* Description - */ /* Size in bytes - 64 */ struct icmd_hca_debug_cap { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The maximum number of samples that can be stored on the device's sampling buffer is 2^ log_max_samples in counters unit (i.e. 100 will represent the ability to store 100 samples of single counter, 50 samples of 2 counters, etc). */ /* 0x0.0 - 0x0.7 */ u_int8_t log_max_samples; /* Description - Log(base 2) of the the recommended minimal size of eq to handle the resource_dump_event */ /* 0x0.16 - 0x0.20 */ u_int8_t log_min_resource_dump_eq; /* Description - If set, Resource_dump register is supported. See Table 1383, "RESOURCE_DUMP Register Layout," on page 1853 */ /* 0x0.22 - 0x0.22 */ u_int8_t resource_dump; /* Description - Log(base 2) of the size in granularity of 4KB to be allocated by host in order to accommodate cr_dump. 0 means feature is not supported. See Table 1381, "CORE_DUMP Register Layout," on page 1851 */ /* 0x0.23 - 0x0.27 */ u_int8_t log_cr_dump_to_mem_size; /* Description - If set, Core dump of type of specific QP is supported. */ /* 0x0.30 - 0x0.30 */ u_int8_t core_dump_qp; /* Description - If set, Core dump of type "General" is supported. */ /* 0x0.31 - 0x0.31 */ u_int8_t core_dump_general; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The minimal sample period is 2^ log_min_smaple_period in device clocks. Clock rate of the device is reported by HCA_CAP.device_frequency_khz. */ /* 0x4.0 - 0x4.7 */ u_int8_t log_min_sample_period; /* Description - If set, the device supports dumping the diagnostic counters reports into the tracer buffer. */ /* 0x4.28 - 0x4.28 */ u_int8_t diag_counter_tracer_dump; /* Description - If set, health monitoring for rx path activity is supported. See Section 26.5.1, "RX Path Activity," on page 988 */ /* 0x4.29 - 0x4.29 */ u_int8_t health_mon_rx_activity; /* Description - Repetitive sampling mode is supported */ /* 0x4.30 - 0x4.30 */ u_int8_t repetitive; /* Description - Single sampling mode is supported */ /* 0x4.31 - 0x4.31 */ u_int8_t single; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - List of counters supported. Number of counters reported by num_of_counters. */ /* 0x40.0 - 0x40.31 */ struct icmd_hca_diagnostic_cntr_layout *diagnostic_counter; }; /* Description - */ /* Size in bytes - 4 */ struct icmd_hca_icmd_mh_sync_in { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Next state for the synchronization state machine: 0x0: IDLE 0x1: GET_READY 0x2: GO Other values are reserved */ /* 0x0.0 - 0x0.3 */ u_int8_t state; /* Description - The operation currently being synchronized: 0x1: FW_RESET other values are reserved */ /* 0x0.8 - 0x0.15 */ u_int8_t sync_type; /* Description - When set, hosts in reset state (PERST# low) are ignored (not synchronized) */ /* 0x0.31 - 0x0.31 */ u_int8_t ignore_inactive_host; }; /* Description - */ /* Size in bytes - 12 */ struct icmd_hca_icmd_mh_sync_out { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Current state of the synchronization state machine: 0x0: IDLE 0x1: GET_READY 0x2: GO Other values are reserved */ /* 0x0.0 - 0x0.3 */ u_int8_t state; /* Description - The operation currently being synchronized: 0x1: FW_RESET other values are reserved */ /* 0x0.8 - 0x0.15 */ u_int8_t sync_type; /* Description - When set, hosts in reset state (PERST# low) are ignored (not synchronized) */ /* 0x0.31 - 0x0.31 */ u_int8_t ignore_inactive_host; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Current state of the host acknowledgement process 0x0: IDLE - no host ack 0x1: READY - sync in progress 0xF: GO - all hosts ack Other values are reserved */ /* 0x4.0 - 0x4.3 */ u_int8_t host_ready; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - NIC uptime (time since last reset) in microseconds, at the moment the synchronization state machine entered the GET_READY state. */ /* 0x8.0 - 0x8.31 */ u_int32_t start_uptime; }; /* Description - */ /* Size in bytes - 8 */ struct icmd_hca_icmd_query_cap_general { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - If set, NIC_CAP_REG register is supported. */ /* 0x0.13 - 0x0.13 */ u_int8_t nic_cap_reg; /* Description - If set, port_state_behavior register is supported. See Section 26.2.27, "PORT_STATE_BEHAVIOR Register", on page 1864 */ /* 0x0.14 - 0x0.14 */ u_int8_t port_state_behavior; /* Description - When set, virtual node GUID can be set/queried using ICMD_SET/QUERY_VIRTUAL_MAC */ /* 0x0.15 - 0x0.15 */ u_int8_t virt_node_guid; /* Description - If set, NCFG register is supported. */ /* 0x0.16 - 0x0.16 */ u_int8_t ncfg_reg; /* Description - If set, CWCAM register is supported. Table 1993, "CWCAM - Congestion WRED Capabilities Mask Register Layout," on page 2545 */ /* 0x0.17 - 0x0.17 */ u_int8_t cwcam_reg; /* Description - If set, SBCAM register is supported. See Table 2051, "SBCAM - Shared Buffer Capabilities Mask Register Layout," on page 2591 */ /* 0x0.18 - 0x0.18 */ u_int8_t sbcam_reg; /* Description - When set, the command supports capability groups in addition to the General Capability group */ /* 0x0.20 - 0x0.20 */ u_int8_t capability_groups; /* Description - When set, the device supports emulating link down for all the associated functions using "ICMD_SET_VIRTUAL_PARAMETERS - Set Device Virtual Parameters" */ /* 0x0.22 - 0x0.22 */ u_int8_t virtual_link_down; /* Description - When set, the device supports using a memory buffer as a mailbox for the ICMD, instead of the normal ICMD Mailbox. */ /* 0x0.23 - 0x0.23 */ u_int8_t icmd_exmb; /* Description - If set, CAPI is supported. */ /* 0x0.24 - 0x0.24 */ u_int8_t capi; /* Description - If set, QCAM register is supported. Table 980, "QCAM - QoS Capabilities Mask Register Layout," on page 1341. */ /* 0x0.25 - 0x0.25 */ u_int8_t qcam_reg; /* Description - If set, MCAM register is supported. Table 2264, "MCAM - Management Capabilities Mask Register Layout," on page 2768. */ /* 0x0.26 - 0x0.26 */ u_int8_t mcam_reg; /* Description - If set, PCAM register is supported. Table 1434, "PCAM - Ports Capabilities Mask Register Layout," on page 1897 */ /* 0x0.27 - 0x0.27 */ u_int8_t pcam_reg; /* Description - When set, multi-host synchronization through the device is supported. Section 28.4.3, "ICMD_MH_SYNC - Multi-Host Synchronization," on page 3749. */ /* 0x0.28 - 0x0.28 */ u_int8_t mh_sync; /* Description - If set, ICMD_ACCESS_REGISTER supports every register. (in the past it supported some of them). */ /* 0x0.29 - 0x0.29 */ u_int8_t allow_icmd_access_reg_on_all_registers; /* Description - */ /* 0x0.30 - 0x0.30 */ u_int8_t fw_info_psid; /* Description - When set, ICMD_ACCESS_REGISTER supports the following registers: NVDA NVDI NVIA NVQC */ /* 0x0.31 - 0x0.31 */ u_int8_t nv_access; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - If set, wake on phy activity is supported. */ /* 0x4.0 - 0x4.0 */ u_int8_t wol_p; /* Description - If set, wake on unicast packet is supported. */ /* 0x4.1 - 0x4.1 */ u_int8_t wol_u; /* Description - If set, wake on multicast packet is supported. */ /* 0x4.2 - 0x4.2 */ u_int8_t wol_m; /* Description - If set, wake on broadcast packet is supported. */ /* 0x4.3 - 0x4.3 */ u_int8_t wol_b; /* Description - If set, wake on ARP is supported. */ /* 0x4.4 - 0x4.4 */ u_int8_t wol_a; /* Description - If set, wake on magic packet is supported. */ /* 0x4.5 - 0x4.5 */ u_int8_t wol_g; /* Description - If set, wake on secured magic packet is supported. */ /* 0x4.6 - 0x4.6 */ u_int8_t wol_s; /* Description - If set, reset on magic packet is supported. */ /* 0x4.8 - 0x4.8 */ u_int8_t rol_g; /* Description - If set, reset on secured magic packet is supported. */ /* 0x4.9 - 0x4.9 */ u_int8_t rol_s; /* Description - If set, FPGA device is supported by the device. See TBD */ /* 0x4.10 - 0x4.10 */ u_int8_t fpga; /* Description - Indicates number of diagnostic counters supported by device. See Debug Capabilities for more information */ /* 0x4.16 - 0x4.31 */ u_int16_t num_of_diagnostic_counters; }; /* Description - */ /* Size in bytes - 4 */ struct icmd_hca_icmd_query_cap_in { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Group of capabilities. 0x0: General_capability 0x1: Debug_Capability other values are reserved. */ /* 0x0.0 - 0x0.15 */ u_int16_t capability_group; }; /* Description - */ /* Size in bytes - 16 */ struct icmd_hca_icmd_query_diagnostic_cntrs_in { /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The sample_index is the first sample index. The sample index shall be in the range of 0 2^HCA_CAP.log_number_of_samples. See Section 27.3.4.11, "Debug Capabilities", on page 3048. */ /* 0x8.0 - 0x8.15 */ u_int16_t sample_index; /* Description - The number of samples to return. Device might return up to the configured value HCA_CAP.log_number_of_samples. (See Section 27.3.4.11, "Debug Capabilities", on page 3048). Note that the device can perform roll over when reaching number_of_samples. For example: if the user asks for 256 samples starting from index 128, the result will be: 128, ,255,0, ,127. */ /* 0x8.16 - 0x8.31 */ u_int16_t num_of_samples; }; /* Description - */ /* Size in bytes - 36 */ struct icmd_hca_icmd_query_diagnostic_params_out { /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Diagnostic parameters context. Table 3605, "DIAGNOSTIC_PARAMS_CONTEXT Input Structure Layout," on page 3626 */ /* 0x8.0 - 0x20.31 */ struct icmd_hca_diagnostic_params_context diagnostic_params_context; }; /* Description - */ /* Size in bytes - 36 */ struct icmd_hca_icmd_set_diagnostic_params_in { /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Diagnostic parameters context. Table 3605, "DIAGNOSTIC_PARAMS_CONTEXT Input Structure Layout," on page 3626 */ /* 0x8.0 - 0x20.31 */ struct icmd_hca_diagnostic_params_context diagnostic_params_context; }; /* Description - */ /* Size in bytes - 68 */ union icmd_hca_icmd_hca_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ struct icmd_hca_icmd_query_cap_general icmd_query_cap_general; /* Description - */ /* 0x0.0 - 0x20.31 */ struct icmd_hca_icmd_set_diagnostic_params_in icmd_set_diagnostic_params_in; /* Description - */ /* 0x0.0 - 0x0.31 */ struct icmd_hca_icmd_query_cap_in icmd_query_cap_in; /* Description - */ /* 0x0.0 - 0x20.31 */ struct icmd_hca_icmd_query_diagnostic_params_out icmd_query_diagnostic_params_out; /* Description - */ /* 0x0.0 - 0x40.31 */ struct icmd_hca_debug_cap debug_cap; /* Description - */ /* 0x0.0 - 0xc.31 */ struct icmd_hca_icmd_query_diagnostic_cntrs_in icmd_query_diagnostic_cntrs_in; /* Description - */ /* 0x0.0 - 0x8.31 */ struct icmd_hca_icmd_mh_sync_out icmd_mh_sync_out; /* Description - */ /* 0x0.0 - 0x0.31 */ struct icmd_hca_icmd_mh_sync_in icmd_mh_sync_in; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* counter_id */ void icmd_hca_counter_id_pack(const struct icmd_hca_counter_id *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_counter_id_unpack(struct icmd_hca_counter_id *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_counter_id_print(const struct icmd_hca_counter_id *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_counter_id_size(void); #define ICMD_HCA_COUNTER_ID_SIZE (0x4) void icmd_hca_counter_id_dump(const struct icmd_hca_counter_id *ptr_struct, FILE *fd); /* diagnostic_cntr_layout */ void icmd_hca_diagnostic_cntr_layout_pack(const struct icmd_hca_diagnostic_cntr_layout *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_diagnostic_cntr_layout_unpack(struct icmd_hca_diagnostic_cntr_layout *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_diagnostic_cntr_layout_print(const struct icmd_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_diagnostic_cntr_layout_size(void); #define ICMD_HCA_DIAGNOSTIC_CNTR_LAYOUT_SIZE (0x4) void icmd_hca_diagnostic_cntr_layout_dump(const struct icmd_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd); /* diagnostic_params_context */ void icmd_hca_diagnostic_params_context_pack(const struct icmd_hca_diagnostic_params_context *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_diagnostic_params_context_unpack(struct icmd_hca_diagnostic_params_context *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_diagnostic_params_context_print(const struct icmd_hca_diagnostic_params_context *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_diagnostic_params_context_size(void); #define ICMD_HCA_DIAGNOSTIC_PARAMS_CONTEXT_SIZE (0x18) void icmd_hca_diagnostic_params_context_dump(const struct icmd_hca_diagnostic_params_context *ptr_struct, FILE *fd); /* debug_cap */ void icmd_hca_debug_cap_pack(const struct icmd_hca_debug_cap *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_debug_cap_unpack(struct icmd_hca_debug_cap *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_debug_cap_print(const struct icmd_hca_debug_cap *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_debug_cap_size(void); #define ICMD_HCA_DEBUG_CAP_SIZE (0x40) void icmd_hca_debug_cap_dump(const struct icmd_hca_debug_cap *ptr_struct, FILE *fd); /* icmd_mh_sync_in */ void icmd_hca_icmd_mh_sync_in_pack(const struct icmd_hca_icmd_mh_sync_in *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_mh_sync_in_unpack(struct icmd_hca_icmd_mh_sync_in *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_mh_sync_in_print(const struct icmd_hca_icmd_mh_sync_in *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_mh_sync_in_size(void); #define ICMD_HCA_ICMD_MH_SYNC_IN_SIZE (0x4) void icmd_hca_icmd_mh_sync_in_dump(const struct icmd_hca_icmd_mh_sync_in *ptr_struct, FILE *fd); /* icmd_mh_sync_out */ void icmd_hca_icmd_mh_sync_out_pack(const struct icmd_hca_icmd_mh_sync_out *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_mh_sync_out_unpack(struct icmd_hca_icmd_mh_sync_out *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_mh_sync_out_print(const struct icmd_hca_icmd_mh_sync_out *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_mh_sync_out_size(void); #define ICMD_HCA_ICMD_MH_SYNC_OUT_SIZE (0xc) void icmd_hca_icmd_mh_sync_out_dump(const struct icmd_hca_icmd_mh_sync_out *ptr_struct, FILE *fd); /* icmd_query_cap_general */ void icmd_hca_icmd_query_cap_general_pack(const struct icmd_hca_icmd_query_cap_general *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_query_cap_general_unpack(struct icmd_hca_icmd_query_cap_general *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_query_cap_general_print(const struct icmd_hca_icmd_query_cap_general *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_query_cap_general_size(void); #define ICMD_HCA_ICMD_QUERY_CAP_GENERAL_SIZE (0x8) void icmd_hca_icmd_query_cap_general_dump(const struct icmd_hca_icmd_query_cap_general *ptr_struct, FILE *fd); /* icmd_query_cap_in */ void icmd_hca_icmd_query_cap_in_pack(const struct icmd_hca_icmd_query_cap_in *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_query_cap_in_unpack(struct icmd_hca_icmd_query_cap_in *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_query_cap_in_print(const struct icmd_hca_icmd_query_cap_in *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_query_cap_in_size(void); #define ICMD_HCA_ICMD_QUERY_CAP_IN_SIZE (0x4) void icmd_hca_icmd_query_cap_in_dump(const struct icmd_hca_icmd_query_cap_in *ptr_struct, FILE *fd); /* icmd_query_diagnostic_cntrs_in */ void icmd_hca_icmd_query_diagnostic_cntrs_in_pack(const struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_query_diagnostic_cntrs_in_unpack(struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_query_diagnostic_cntrs_in_print(const struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_query_diagnostic_cntrs_in_size(void); #define ICMD_HCA_ICMD_QUERY_DIAGNOSTIC_CNTRS_IN_SIZE (0x10) void icmd_hca_icmd_query_diagnostic_cntrs_in_dump(const struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, FILE *fd); /* icmd_query_diagnostic_params_out */ void icmd_hca_icmd_query_diagnostic_params_out_pack(const struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_query_diagnostic_params_out_unpack(struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_query_diagnostic_params_out_print(const struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_query_diagnostic_params_out_size(void); #define ICMD_HCA_ICMD_QUERY_DIAGNOSTIC_PARAMS_OUT_SIZE (0x24) void icmd_hca_icmd_query_diagnostic_params_out_dump(const struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, FILE *fd); /* icmd_set_diagnostic_params_in */ void icmd_hca_icmd_set_diagnostic_params_in_pack(const struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_set_diagnostic_params_in_unpack(struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_set_diagnostic_params_in_print(const struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_set_diagnostic_params_in_size(void); #define ICMD_HCA_ICMD_SET_DIAGNOSTIC_PARAMS_IN_SIZE (0x24) void icmd_hca_icmd_set_diagnostic_params_in_dump(const struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, FILE *fd); /* icmd_hca_Nodes */ void icmd_hca_icmd_hca_Nodes_pack(const union icmd_hca_icmd_hca_Nodes *ptr_struct, u_int8_t *ptr_buff); void icmd_hca_icmd_hca_Nodes_unpack(union icmd_hca_icmd_hca_Nodes *ptr_struct, const u_int8_t *ptr_buff); void icmd_hca_icmd_hca_Nodes_print(const union icmd_hca_icmd_hca_Nodes *ptr_struct, FILE *fd, int indent_level); unsigned int icmd_hca_icmd_hca_Nodes_size(void); #define ICMD_HCA_ICMD_HCA_NODES_SIZE (0x44) void icmd_hca_icmd_hca_Nodes_dump(const union icmd_hca_icmd_hca_Nodes *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // ICMD_HCA_LAYOUTS_H mstflint-4.26.0/tools_layouts/icmd_layouts.h0000644000175000017500000004052214522641732021473 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef ICMD_LAYOUTS_H #define ICMD_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 16 */ struct connectib_FW_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.8 - 0x8.15 */ u_int8_t Hour; /* Description - */ /* 0x8.16 - 0x8.23 */ u_int8_t Minutes; /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t Seconds; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.7 */ u_int8_t Day; /* Description - */ /* 0xc.8 - 0xc.15 */ u_int8_t Month; /* Description - */ /* 0xc.16 - 0xc.31 */ u_int16_t Year; }; /* Description - */ /* Size in bytes - 16 */ struct connectib_icmd_set_port_sniffer { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t gvmi; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.0 */ u_int8_t sx_rx_; /* Description - */ /* 0x4.16 - 0x4.16 */ u_int8_t attach_detach_; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t port; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.23 */ u_int32_t sniffer_qpn; }; /* Description - */ /* Size in bytes - 36 */ struct connectib_icmd_get_fw_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10.31 */ struct connectib_FW_VERSION fw_version; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Hash gen file signature */ /* 0x10.0 - 0x10.15 */ u_int16_t hash_signature; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.24 - 0x24.23 */ char psid[17]; }; struct connectib_itrace_ctrl { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - threashhold of logging to print from: * 0 - LOG_DEBUG * 1 - LOG_INFO * 2 - LOG_WARNING * 3 - LOG_ERROR */ /* 0x0.0 - 0x0.7 */ u_int8_t log_level; /* Description - added delay (usec) to prevent log event lost */ /* 0x0.16 - 0x0.31 */ u_int16_t log_delay; }; struct connectib_itrace { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - bit numbers: * 0=DEBUG_INIT * 1=INIT * 2=ICM * 3=ICM_FREE_LIST * 4=LOG_MOD_HOST_MNG * 5=CMD_IF * 6=PHY_IB * 7=PHY_RX_ADAP * 8=PHY_EYE_OPN * 9=PHY_GENERAL * 10=PHY_MANAGER * 11=PWR * 12=FLR * 13=ICM_ACCESS * 14=MAD * 15=RXT_CHECKS * 16=I2C * 17=TRANSPORT * 18=FW_LL * 19=RX_ERRORS * 20=CMDIF_DRIVER * 21=PROFILING * 22=MANAGEMENT * 23=FLASH * 24=STEERING * 25=IFARM * 26=ICMD * 27=PCI * 28=DC_CLEANUP * 29=PHY_ETH * 30=VIRT */ /* 0x0.0 - 0x4.31 */ u_int32_t unit_mask; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x8.31 */ struct connectib_itrace_ctrl ctrl; }; /* Description - */ /* Size in bytes - 4 */ struct connectx4_component_authentication_configuration { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0-NULL, 1-SHA256Digest, 3-2048 bit RSA */ /* 0x0.0 - 0x0.7 */ u_int8_t auth_type; /* Description - used for authenticating Factory Re-COnfiguration Responses */ /* 0x0.27 - 0x0.27 */ u_int8_t frc_en; /* Description - used for signing NVCONFIG at MLNX level */ /* 0x0.28 - 0x0.28 */ u_int8_t mlnx_nvconfig_en; /* Description - used for authenticating NVCONFIG at OEM level */ /* 0x0.29 - 0x0.29 */ u_int8_t vendor_nvconfig_en; /* Description - used for authenticating CS tokens at OEM level */ /* 0x0.30 - 0x0.30 */ u_int8_t cs_token_en; /* Description - Used for authenticating firmware, DBG_FW, DBG Tokens */ /* 0x0.31 - 0x0.31 */ u_int8_t fw_en; }; /* Description - */ /* Size in bytes - 544 */ struct connectx4_file_public_keys_3 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - public key exponent, FW should use an exponent of 65537 */ /* 0x0.0 - 0x0.31 */ u_int32_t keypair_exp; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - UUID of this key created by server when it generates a keypair */ /* 0x4.0 - 0x10.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - 4096 bit public-key */ /* 0x14.0 - 0x210.31 */ u_int32_t key[128]; /*---------------- DWORD[133] (Offset 0x214) ----------------*/ /* Description - configuration bits to enable authentication for each component */ /* 0x214.0 - 0x214.31 */ struct connectx4_component_authentication_configuration component_authentication_configuration; }; /* Description - */ /* Size in bytes - 4352 */ struct connectx4_public_keys_3 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10fc.31 */ struct connectx4_file_public_keys_3 file_public_keys_3[8]; }; /* Description - */ /* Size in bytes - 1536 */ struct connectx4_secure_boot_signatures { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - boot signature of itocs: */ /* 0x0.0 - 0x1fc.31 */ u_int32_t boot_signature[128]; /*---------------- DWORD[128] (Offset 0x200) ----------------*/ /* Description - fw critical signature of itcos: HW_BOOT_INI, PCIE_PHY_UC_COMMANDS, PCIE_LINK_CODE */ /* 0x200.0 - 0x3fc.31 */ u_int32_t critical_signature[128]; /*---------------- DWORD[256] (Offset 0x400) ----------------*/ /* Description - fw non critical signatures of all other itocs */ /* 0x400.0 - 0x5fc.31 */ u_int32_t non_critical_signature[128]; }; /* Description - HW pointer entry */ /* Size in bytes - 8 */ struct connectx4_hw_pointer_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - pointer */ /* 0x0.0 - 0x0.31 */ u_int32_t ptr; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - crc16 as calculated by HW */ /* 0x4.0 - 0x4.15 */ u_int16_t crc; }; /* Description - HW pointers */ /* Size in bytes - 128 */ struct connectx4_hw_pointers_arava { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ struct connectx4_hw_pointer_entry boot_record_ptr; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ struct connectx4_hw_pointer_entry boot2_ptr; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x14.31 */ struct connectx4_hw_pointer_entry toc_ptr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x1c.31 */ struct connectx4_hw_pointer_entry tools_ptr; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x24.31 */ struct connectx4_hw_pointer_entry authentication_start_pointer; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x2c.31 */ struct connectx4_hw_pointer_entry authentication_end_pointer; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - */ /* 0x30.0 - 0x34.31 */ struct connectx4_hw_pointer_entry digest_pointer; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.0 - 0x3c.31 */ struct connectx4_hw_pointer_entry digest_recovery_key_pointer; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - */ /* 0x40.0 - 0x44.31 */ struct connectx4_hw_pointer_entry fw_window_start_pointer; /*---------------- DWORD[18] (Offset 0x48) ----------------*/ /* Description - */ /* 0x48.0 - 0x4c.31 */ struct connectx4_hw_pointer_entry fw_window_end_pointer; /*---------------- DWORD[20] (Offset 0x50) ----------------*/ /* Description - */ /* 0x50.0 - 0x54.31 */ struct connectx4_hw_pointer_entry hmac_start_pointer; /*---------------- DWORD[22] (Offset 0x58) ----------------*/ /* Description - */ /* 0x58.0 - 0x5c.31 */ struct connectx4_hw_pointer_entry hmac_end_pointer; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - */ /* 0x60.0 - 0x64.31 */ struct connectx4_hw_pointer_entry public_key_pointer; /*---------------- DWORD[26] (Offset 0x68) ----------------*/ /* Description - */ /* 0x68.0 - 0x6c.31 */ struct connectx4_hw_pointer_entry reserved_ptr13_pointer; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.0 - 0x74.31 */ struct connectx4_hw_pointer_entry reserved_ptr14_pointer; /*---------------- DWORD[30] (Offset 0x78) ----------------*/ /* Description - */ /* 0x78.0 - 0x7c.31 */ struct connectx4_hw_pointer_entry reserved_ptr15_pointer; }; /* FW_VERSION */ void connectib_FW_VERSION_pack(const struct connectib_FW_VERSION* ptr_struct, u_int8_t* ptr_buff); void connectib_FW_VERSION_unpack(struct connectib_FW_VERSION* ptr_struct, const u_int8_t* ptr_buff); void connectib_FW_VERSION_print(const struct connectib_FW_VERSION* ptr_struct, FILE* file, int indent_level); int connectib_FW_VERSION_size(void); #define CONNECTIB_FW_VERSION_SIZE (0x10) void connectib_FW_VERSION_dump(const struct connectib_FW_VERSION* ptr_struct, FILE* file); /* icmd_get_fw_info */ void connectib_icmd_get_fw_info_pack(const struct connectib_icmd_get_fw_info* ptr_struct, u_int8_t* ptr_buff); void connectib_icmd_get_fw_info_unpack(struct connectib_icmd_get_fw_info* ptr_struct, const u_int8_t* ptr_buff); void connectib_icmd_get_fw_info_print(const struct connectib_icmd_get_fw_info* ptr_struct, FILE* file, int indent_level); int connectib_icmd_get_fw_info_size(void); #define CONNECTIB_ICMD_GET_FW_INFO_SIZE (0x24) void connectib_icmd_get_fw_info_dump(const struct connectib_icmd_get_fw_info* ptr_struct, FILE* file); /* itrace */ void connectib_itrace_pack(const struct connectib_itrace* ptr_struct, u_int8_t* ptr_buff); void connectib_itrace_unpack(struct connectib_itrace* ptr_struct, const u_int8_t* ptr_buff); void connectib_itrace_print(const struct connectib_itrace* ptr_struct, FILE* file, int indent_level); int connectib_itrace_size(void); #define CONNECTIB_ITRACE_SIZE (0x10) void connectib_itrace_dump(const struct connectib_itrace* ptr_struct, FILE* file); /* itrace_ctrl */ void connectib_itrace_ctrl_pack(const struct connectib_itrace_ctrl* ptr_struct, u_int8_t* ptr_buff); void connectib_itrace_ctrl_unpack(struct connectib_itrace_ctrl* ptr_struct, const u_int8_t* ptr_buff); void connectib_itrace_ctrl_print(const struct connectib_itrace_ctrl* ptr_struct, FILE* file, int indent_level); int connectib_itrace_ctrl_size(void); #define CONNECTIB_ITRACE_CTRL_SIZE (0x4) void connectib_itrace_ctrl_dump(const struct connectib_itrace_ctrl* ptr_struct, FILE* file); int connectib_icmd_set_port_sniffer_size(void); void connectib_icmd_set_port_sniffer_unpack(struct connectib_icmd_set_port_sniffer* ptr_struct, const u_int8_t * ptr_buff); void connectib_icmd_set_port_sniffer_pack(const struct connectib_icmd_set_port_sniffer* ptr_struct, u_int8_t * ptr_buff); void connectx4_public_keys_3_pack(const struct connectx4_public_keys_3* ptr_struct, u_int8_t* ptr_buff); void connectx4_public_keys_3_unpack(struct connectx4_public_keys_3* ptr_struct, const u_int8_t* ptr_buff); void connectx4_public_keys_3_print(const struct connectx4_public_keys_3* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_public_keys_3_size(void); #define CONNECTX4_PUBLIC_KEYS_3_SIZE (0x1100) void connectx4_public_keys_3_dump(const struct connectx4_public_keys_3* ptr_struct, FILE* fd); /* secure_boot_signatures */ void connectx4_secure_boot_signatures_pack(const struct connectx4_secure_boot_signatures* ptr_struct, u_int8_t * ptr_buff); void connectx4_secure_boot_signatures_unpack(struct connectx4_secure_boot_signatures* ptr_struct, const u_int8_t * ptr_buff); void connectx4_secure_boot_signatures_print(const struct connectx4_secure_boot_signatures* ptr_struct, FILE * fd, int indent_level); unsigned int connectx4_secure_boot_signatures_size(void); #define CONNECTX4_SECURE_BOOT_SIGNATURES_SIZE (0x600) void connectx4_secure_boot_signatures_dump(const struct connectx4_secure_boot_signatures* ptr_struct, FILE* fd); /* file_public_keys_3 */ void connectx4_file_public_keys_3_pack(const struct connectx4_file_public_keys_3* ptr_struct, u_int8_t* ptr_buff); void connectx4_file_public_keys_3_unpack(struct connectx4_file_public_keys_3* ptr_struct, const u_int8_t* ptr_buff); void connectx4_file_public_keys_3_print(const struct connectx4_file_public_keys_3* ptr_struct, FILE * fd, int indent_level); unsigned int connectx4_file_public_keys_3_size(void); #define CONNECTX4_FILE_PUBLIC_KEYS_3_SIZE (0x220) void connectx4_file_public_keys_3_dump(const struct connectx4_file_public_keys_3* ptr_struct, FILE* fd); void connectx4_hw_pointers_arava_pack(const struct connectx4_hw_pointers_arava* ptr_struct, u_int8_t* ptr_buff); void connectx4_hw_pointers_arava_unpack(struct connectx4_hw_pointers_arava* ptr_struct, const u_int8_t* ptr_buff); void connectx4_hw_pointers_arava_print(const struct connectx4_hw_pointers_arava* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_hw_pointers_arava_size(void); #define CONNECTX4_HW_POINTERS_ARAVA_SIZE (0x80) void connectx4_hw_pointers_arava_dump(const struct connectx4_hw_pointers_arava* ptr_struct, FILE* fd); #define CONNECTX5_NV_DATA_SIZE (0x10000) #ifdef __cplusplus } #endif #endif /* ifndef ICMD_LAYOUTS_H */ mstflint-4.26.0/tools_layouts/cx6fw_layouts.c0000644000175000017500000002612414522641732021611 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2018-08-29 13:02:13" *** by: *** > [REDACTED]/adb2pack.py --input adb/cx6fw/cx6fw.adb *--file-prefix cx6fw --prefix cx6fw_ ***/ #include "cx6fw_layouts.h" void cx6fw_hw_pointer_entry_pack(const struct cx6fw_hw_pointer_entry* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ptr); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void cx6fw_hw_pointer_entry_unpack(struct cx6fw_hw_pointer_entry* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; ptr_struct->ptr = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void cx6fw_hw_pointer_entry_print(const struct cx6fw_hw_pointer_entry* ptr_struct, FILE* fd, int indent_level) { int i = 0; (void)i; (void)ptr_struct; (void)fd; (void)indent_level; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx6fw_hw_pointer_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ptr : " U32H_FMT "\n", ptr_struct->ptr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int cx6fw_hw_pointer_entry_size(void) { return CX6FW_HW_POINTER_ENTRY_SIZE; } void cx6fw_hw_pointer_entry_dump(const struct cx6fw_hw_pointer_entry* ptr_struct, FILE* fd) { cx6fw_hw_pointer_entry_print(ptr_struct, fd, 0); } void cx6fw_hw_pointers_pack(const struct cx6fw_hw_pointers* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; cx6fw_hw_pointer_entry_pack(&(ptr_struct->boot_record_ptr), ptr_buff + offset / 8); offset = 64; cx6fw_hw_pointer_entry_pack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; cx6fw_hw_pointer_entry_pack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; cx6fw_hw_pointer_entry_pack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; cx6fw_hw_pointer_entry_pack(&(ptr_struct->authentication_start_ptr), ptr_buff + offset / 8); offset = 320; cx6fw_hw_pointer_entry_pack(&(ptr_struct->authentication_end_ptr), ptr_buff + offset / 8); offset = 384; cx6fw_hw_pointer_entry_pack(&(ptr_struct->digest_mdk_ptr), ptr_buff + offset / 8); offset = 448; cx6fw_hw_pointer_entry_pack(&(ptr_struct->digest_recovery_key_ptr), ptr_buff + offset / 8); offset = 512; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr8), ptr_buff + offset / 8); offset = 576; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr9), ptr_buff + offset / 8); offset = 640; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr10), ptr_buff + offset / 8); offset = 704; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr11), ptr_buff + offset / 8); offset = 768; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr12), ptr_buff + offset / 8); offset = 832; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr13), ptr_buff + offset / 8); offset = 896; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr14), ptr_buff + offset / 8); offset = 960; cx6fw_hw_pointer_entry_pack(&(ptr_struct->reserved_ptr15), ptr_buff + offset / 8); } void cx6fw_hw_pointers_unpack(struct cx6fw_hw_pointers* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->boot_record_ptr), ptr_buff + offset / 8); offset = 64; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->authentication_start_ptr), ptr_buff + offset / 8); offset = 320; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->authentication_end_ptr), ptr_buff + offset / 8); offset = 384; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->digest_mdk_ptr), ptr_buff + offset / 8); offset = 448; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->digest_recovery_key_ptr), ptr_buff + offset / 8); offset = 512; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr8), ptr_buff + offset / 8); offset = 576; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr9), ptr_buff + offset / 8); offset = 640; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr10), ptr_buff + offset / 8); offset = 704; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr11), ptr_buff + offset / 8); offset = 768; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr12), ptr_buff + offset / 8); offset = 832; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr13), ptr_buff + offset / 8); offset = 896; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr14), ptr_buff + offset / 8); offset = 960; cx6fw_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr15), ptr_buff + offset / 8); } void cx6fw_hw_pointers_print(const struct cx6fw_hw_pointers* ptr_struct, FILE* fd, int indent_level) { int i = 0; (void)i; (void)ptr_struct; (void)fd; (void)indent_level; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx6fw_hw_pointers ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_record_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->boot_record_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot2_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->boot2_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "toc_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->toc_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tools_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->tools_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "authentication_start_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->authentication_start_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "authentication_end_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->authentication_end_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "digest_mdk_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->digest_mdk_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "digest_recovery_key_ptr:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->digest_recovery_key_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr8:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr8), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr9:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr9), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr10:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr10), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr11:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr11), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr12:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr12), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr13:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr13), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr14:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr14), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_ptr15:\n"); cx6fw_hw_pointer_entry_print(&(ptr_struct->reserved_ptr15), fd, indent_level + 1); } unsigned int cx6fw_hw_pointers_size(void) { return CX6FW_HW_POINTERS_SIZE; } void cx6fw_hw_pointers_dump(const struct cx6fw_hw_pointers* ptr_struct, FILE* fd) { cx6fw_hw_pointers_print(ptr_struct, fd, 0); } void cx6fw_cx6fw_Nodes_pack(const union cx6fw_cx6fw_Nodes* ptr_struct, u_int8_t* ptr_buff) { cx6fw_hw_pointers_pack(&(ptr_struct->hw_pointers), ptr_buff); } void cx6fw_cx6fw_Nodes_unpack(union cx6fw_cx6fw_Nodes* ptr_struct, const u_int8_t* ptr_buff) { cx6fw_hw_pointers_unpack(&(ptr_struct->hw_pointers), ptr_buff); } void cx6fw_cx6fw_Nodes_print(const union cx6fw_cx6fw_Nodes* ptr_struct, FILE* fd, int indent_level) { int i = 0; (void)i; (void)ptr_struct; (void)fd; (void)indent_level; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx6fw_cx6fw_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_pointers:\n"); cx6fw_hw_pointers_print(&(ptr_struct->hw_pointers), fd, indent_level + 1); } unsigned int cx6fw_cx6fw_Nodes_size(void) { return CX6FW_CX6FW_NODES_SIZE; } void cx6fw_cx6fw_Nodes_dump(const union cx6fw_cx6fw_Nodes* ptr_struct, FILE* fd) { cx6fw_cx6fw_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/cibfw_layouts.c0000644000175000017500000014740514522641732021654 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2021-09-14 12:07:15" *** by: *** > [REDACTED]/adb2pack.py --input adb/cibfw/cibfw.adb --file-prefix *cibfw --prefix cibfw_ --no-adb-utils ***/ #include "cibfw_layouts.h" void cibfw_uint64_pack(const u_int64_t* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 8, *ptr_struct); } void cibfw_uint64_unpack(u_int64_t* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; *ptr_struct = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void cibfw_uint64_print(const u_int64_t* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_uint64 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uint64 : " U64H_FMT "\n", (u_int64_t)*ptr_struct); } unsigned int cibfw_uint64_size(void) { return CIBFW_UINT64_SIZE; } void cibfw_uint64_dump(const u_int64_t* ptr_struct, FILE* fd) { cibfw_uint64_print(ptr_struct, fd, 0); } void cibfw_reset_version_pack(const struct cibfw_reset_version* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->major); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor); } void cibfw_reset_version_unpack(struct cibfw_reset_version* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->major = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 56; ptr_struct->minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void cibfw_reset_version_print(const struct cibfw_reset_version* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_reset_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " U32H_FMT "\n", ptr_struct->major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); } unsigned int cibfw_reset_version_size(void) { return CIBFW_RESET_VERSION_SIZE; } void cibfw_reset_version_dump(const struct cibfw_reset_version* ptr_struct, FILE* fd) { cibfw_reset_version_print(ptr_struct, fd, 0); } void cibfw_uid_entry_pack(const struct cibfw_uid_entry* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_allocated); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->step); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->uid); } void cibfw_uid_entry_unpack(struct cibfw_uid_entry* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->num_allocated = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->step = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->uid = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void cibfw_uid_entry_print(const struct cibfw_uid_entry* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_uid_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_allocated : " UH_FMT "\n", ptr_struct->num_allocated); adb2c_add_indentation(fd, indent_level); fprintf(fd, "step : " UH_FMT "\n", ptr_struct->step); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uid : " U64H_FMT "\n", ptr_struct->uid); } unsigned int cibfw_uid_entry_size(void) { return CIBFW_UID_ENTRY_SIZE; } void cibfw_uid_entry_dump(const struct cibfw_uid_entry* ptr_struct, FILE* fd) { cibfw_uid_entry_print(ptr_struct, fd, 0); } void cibfw_FW_VERSION_pack(const struct cibfw_FW_VERSION* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Hour); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Minutes); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Seconds); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Day); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Month); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->Year); } void cibfw_FW_VERSION_unpack(struct cibfw_FW_VERSION* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->Hour = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 72; ptr_struct->Minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->Seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 120; ptr_struct->Day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->Month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 96; ptr_struct->Year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void cibfw_FW_VERSION_print(const struct cibfw_FW_VERSION* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_FW_VERSION ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Hour : " UH_FMT "\n", ptr_struct->Hour); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Minutes : " UH_FMT "\n", ptr_struct->Minutes); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Seconds : " UH_FMT "\n", ptr_struct->Seconds); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Day : " UH_FMT "\n", ptr_struct->Day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Month : " UH_FMT "\n", ptr_struct->Month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Year : " UH_FMT "\n", ptr_struct->Year); } unsigned int cibfw_FW_VERSION_size(void) { return CIBFW_FW_VERSION_SIZE; } void cibfw_FW_VERSION_dump(const struct cibfw_FW_VERSION* ptr_struct, FILE* fd) { cibfw_FW_VERSION_print(ptr_struct, fd, 0); } void cibfw_TRIPPLE_VERSION_pack(const struct cibfw_TRIPPLE_VERSION* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); } void cibfw_TRIPPLE_VERSION_unpack(struct cibfw_TRIPPLE_VERSION* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void cibfw_TRIPPLE_VERSION_print(const struct cibfw_TRIPPLE_VERSION* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_TRIPPLE_VERSION ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); } unsigned int cibfw_TRIPPLE_VERSION_size(void) { return CIBFW_TRIPPLE_VERSION_SIZE; } void cibfw_TRIPPLE_VERSION_dump(const struct cibfw_TRIPPLE_VERSION* ptr_struct, FILE* fd) { cibfw_TRIPPLE_VERSION_print(ptr_struct, fd, 0); } void cibfw_guids_pack(const struct cibfw_guids* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(0, 128, i, 512, 1); cibfw_uid_entry_pack(&(ptr_struct->guids[i]), ptr_buff + offset / 8); } for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(256, 128, i, 512, 1); cibfw_uid_entry_pack(&(ptr_struct->macs[i]), ptr_buff + offset / 8); } } void cibfw_guids_unpack(struct cibfw_guids* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(0, 128, i, 512, 1); cibfw_uid_entry_unpack(&(ptr_struct->guids[i]), ptr_buff + offset / 8); } for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(256, 128, i, 512, 1); cibfw_uid_entry_unpack(&(ptr_struct->macs[i]), ptr_buff + offset / 8); } } void cibfw_guids_print(const struct cibfw_guids* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_guids ========\n"); for (i = 0; i < 2; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids_%03d:\n", i); cibfw_uid_entry_print(&(ptr_struct->guids[i]), fd, indent_level + 1); } for (i = 0; i < 2; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "macs_%03d:\n", i); cibfw_uid_entry_print(&(ptr_struct->macs[i]), fd, indent_level + 1); } } unsigned int cibfw_guids_size(void) { return CIBFW_GUIDS_SIZE; } void cibfw_guids_dump(const struct cibfw_guids* ptr_struct, FILE* fd) { cibfw_guids_print(ptr_struct, fd, 0); } void cibfw_image_size_pack(const struct cibfw_image_size* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_step); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->run_from_any); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->max_size); } void cibfw_image_size_unpack(struct cibfw_image_size* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->log_step = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->run_from_any = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->max_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void cibfw_image_size_print(const struct cibfw_image_size* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_image_size ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_step : " UH_FMT "\n", ptr_struct->log_step); adb2c_add_indentation(fd, indent_level); fprintf(fd, "run_from_any : " UH_FMT "\n", ptr_struct->run_from_any); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_size : " U32H_FMT "\n", ptr_struct->max_size); } unsigned int cibfw_image_size_size(void) { return CIBFW_IMAGE_SIZE_SIZE; } void cibfw_image_size_dump(const struct cibfw_image_size* ptr_struct, FILE* fd) { cibfw_image_size_print(ptr_struct, fd, 0); } void cibfw_lfwp_version_vector_pack(const struct cibfw_lfwp_version_vector* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; cibfw_reset_version_pack(&(ptr_struct->scratchpad), ptr_buff + offset / 8); offset = 64; cibfw_reset_version_pack(&(ptr_struct->icm_context), ptr_buff + offset / 8); offset = 128; cibfw_reset_version_pack(&(ptr_struct->pci_code), ptr_buff + offset / 8); offset = 192; cibfw_reset_version_pack(&(ptr_struct->phy_code), ptr_buff + offset / 8); offset = 256; cibfw_reset_version_pack(&(ptr_struct->ini), ptr_buff + offset / 8); offset = 320; cibfw_reset_version_pack(&(ptr_struct->reserved1), ptr_buff + offset / 8); offset = 384; cibfw_reset_version_pack(&(ptr_struct->reserved2), ptr_buff + offset / 8); offset = 448; cibfw_reset_version_pack(&(ptr_struct->reserved3), ptr_buff + offset / 8); } void cibfw_lfwp_version_vector_unpack(struct cibfw_lfwp_version_vector* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; cibfw_reset_version_unpack(&(ptr_struct->scratchpad), ptr_buff + offset / 8); offset = 64; cibfw_reset_version_unpack(&(ptr_struct->icm_context), ptr_buff + offset / 8); offset = 128; cibfw_reset_version_unpack(&(ptr_struct->pci_code), ptr_buff + offset / 8); offset = 192; cibfw_reset_version_unpack(&(ptr_struct->phy_code), ptr_buff + offset / 8); offset = 256; cibfw_reset_version_unpack(&(ptr_struct->ini), ptr_buff + offset / 8); offset = 320; cibfw_reset_version_unpack(&(ptr_struct->reserved1), ptr_buff + offset / 8); offset = 384; cibfw_reset_version_unpack(&(ptr_struct->reserved2), ptr_buff + offset / 8); offset = 448; cibfw_reset_version_unpack(&(ptr_struct->reserved3), ptr_buff + offset / 8); } void cibfw_lfwp_version_vector_print(const struct cibfw_lfwp_version_vector* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_lfwp_version_vector ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "scratchpad:\n"); cibfw_reset_version_print(&(ptr_struct->scratchpad), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icm_context:\n"); cibfw_reset_version_print(&(ptr_struct->icm_context), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_code:\n"); cibfw_reset_version_print(&(ptr_struct->pci_code), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "phy_code:\n"); cibfw_reset_version_print(&(ptr_struct->phy_code), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini:\n"); cibfw_reset_version_print(&(ptr_struct->ini), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved1:\n"); cibfw_reset_version_print(&(ptr_struct->reserved1), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved2:\n"); cibfw_reset_version_print(&(ptr_struct->reserved2), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved3:\n"); cibfw_reset_version_print(&(ptr_struct->reserved3), fd, indent_level + 1); } unsigned int cibfw_lfwp_version_vector_size(void) { return CIBFW_LFWP_VERSION_VECTOR_SIZE; } void cibfw_lfwp_version_vector_dump(const struct cibfw_lfwp_version_vector* ptr_struct, FILE* fd) { cibfw_lfwp_version_vector_print(ptr_struct, fd, 0); } void cibfw_module_version_pack(const struct cibfw_module_version* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->branch); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->minor); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->major); } void cibfw_module_version_unpack(struct cibfw_module_version* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->branch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 12; ptr_struct->minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 0; ptr_struct->major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); } void cibfw_module_version_print(const struct cibfw_module_version* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_module_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "branch : " UH_FMT "\n", ptr_struct->branch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); } unsigned int cibfw_module_version_size(void) { return CIBFW_MODULE_VERSION_SIZE; } void cibfw_module_version_dump(const struct cibfw_module_version* ptr_struct, FILE* fd) { cibfw_module_version_print(ptr_struct, fd, 0); } void cibfw_operation_key_pack(const struct cibfw_operation_key* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->key_modifier); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->key); } void cibfw_operation_key_unpack(struct cibfw_operation_key* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->key_modifier = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->key = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void cibfw_operation_key_print(const struct cibfw_operation_key* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_operation_key ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key_modifier : " UH_FMT "\n", ptr_struct->key_modifier); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key : " U64H_FMT "\n", ptr_struct->key); } unsigned int cibfw_operation_key_size(void) { return CIBFW_OPERATION_KEY_SIZE; } void cibfw_operation_key_dump(const struct cibfw_operation_key* ptr_struct, FILE* fd) { cibfw_operation_key_print(ptr_struct, fd, 0); } void cibfw_device_info_pack(const struct cibfw_device_info* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature0); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature1); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature2); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature3); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 143; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->major_version); offset = 256; cibfw_guids_pack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 880; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vsd_vendor_id); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(920, 8, i, 4096, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vsd[i]); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2816, 128, i, 4096, 1); cibfw_operation_key_pack(&(ptr_struct->keys[i]), ptr_buff + offset / 8); } } void cibfw_device_info_unpack(struct cibfw_device_info* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->signature0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->signature1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->signature2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->signature3 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 152; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 143; ptr_struct->major_version = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 256; cibfw_guids_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 880; ptr_struct->vsd_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(920, 8, i, 4096, 1); ptr_struct->vsd[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->vsd[208] = '\0'; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2816, 128, i, 4096, 1); cibfw_operation_key_unpack(&(ptr_struct->keys[i]), ptr_buff + offset / 8); } } void cibfw_device_info_print(const struct cibfw_device_info* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_device_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature0 : " U32H_FMT "\n", ptr_struct->signature0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature1 : " U32H_FMT "\n", ptr_struct->signature1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature2 : " U32H_FMT "\n", ptr_struct->signature2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature3 : " U32H_FMT "\n", ptr_struct->signature3); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cibfw_guids_print(&(ptr_struct->guids), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vsd_vendor_id : " UH_FMT "\n", ptr_struct->vsd_vendor_id); fprintf(fd, "vsd : \"%s\"\n", ptr_struct->vsd); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keys_%03d:\n", i); cibfw_operation_key_print(&(ptr_struct->keys[i]), fd, indent_level + 1); } } unsigned int cibfw_device_info_size(void) { return CIBFW_DEVICE_INFO_SIZE; } void cibfw_device_info_dump(const struct cibfw_device_info* ptr_struct, FILE* fd) { cibfw_device_info_print(ptr_struct, fd, 0); } void cibfw_image_info_pack(const struct cibfw_image_info* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 27; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->encrypted_fw); offset = 25; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->long_keys); offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug_fw_tokens_supported); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mcc_en); offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_vendor_nvconfig_files); offset = 21; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_mlnx_nvconfig_files); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->frc_supported); offset = 19; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cs_tokens_supported); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug_fw); offset = 17; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_fw); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secure_fw); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 32; cibfw_FW_VERSION_pack(&(ptr_struct->FW_VERSION), ptr_buff + offset / 8); offset = 160; cibfw_TRIPPLE_VERSION_pack(&(ptr_struct->mic_version), ptr_buff + offset / 8); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_vendor_id); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_device_id); offset = 272; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_sub_vendor_id); offset = 256; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_subsystem_id); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 432; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vsd_vendor_id); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(472, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vsd[i]); } offset = 2112; cibfw_image_size_pack(&(ptr_struct->image_size), ptr_buff + offset / 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2240, 32, i, 8192, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->supported_hw_id[i]); } offset = 2368; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ini_file_num); offset = 2432; cibfw_lfwp_version_vector_pack(&(ptr_struct->lfwp_version_vector), ptr_buff + offset / 8); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(3608, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prod_ver[i]); } for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->description[i]); } offset = 6304; cibfw_module_version_pack(&(ptr_struct->isfu), ptr_buff + offset / 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->name[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prs_name[i]); } } void cibfw_image_info_unpack(struct cibfw_image_info* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 27; ptr_struct->encrypted_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 25; ptr_struct->long_keys = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 24; ptr_struct->debug_fw_tokens_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 23; ptr_struct->mcc_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 22; ptr_struct->signed_vendor_nvconfig_files = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 21; ptr_struct->signed_mlnx_nvconfig_files = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 20; ptr_struct->frc_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 19; ptr_struct->cs_tokens_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 18; ptr_struct->debug_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 17; ptr_struct->signed_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->secure_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 8; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; cibfw_FW_VERSION_unpack(&(ptr_struct->FW_VERSION), ptr_buff + offset / 8); offset = 160; cibfw_TRIPPLE_VERSION_unpack(&(ptr_struct->mic_version), ptr_buff + offset / 8); offset = 240; ptr_struct->pci_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 224; ptr_struct->pci_device_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 272; ptr_struct->pci_sub_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 256; ptr_struct->pci_subsystem_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 432; ptr_struct->vsd_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(472, 8, i, 8192, 1); ptr_struct->vsd[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->vsd[208] = '\0'; offset = 2112; cibfw_image_size_unpack(&(ptr_struct->image_size), ptr_buff + offset / 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2240, 32, i, 8192, 1); ptr_struct->supported_hw_id[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 2368; ptr_struct->ini_file_num = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 2432; cibfw_lfwp_version_vector_unpack(&(ptr_struct->lfwp_version_vector), ptr_buff + offset / 8); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(3608, 8, i, 8192, 1); ptr_struct->prod_ver[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prod_ver[16] = '\0'; for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); ptr_struct->description[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->description[256] = '\0'; offset = 6304; cibfw_module_version_unpack(&(ptr_struct->isfu), ptr_buff + offset / 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); ptr_struct->name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->name[64] = '\0'; for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); ptr_struct->prs_name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prs_name[128] = '\0'; } void cibfw_image_info_print(const struct cibfw_image_info* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_image_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "encrypted_fw : " UH_FMT "\n", ptr_struct->encrypted_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "long_keys : " UH_FMT "\n", ptr_struct->long_keys); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_fw_tokens_supported : " UH_FMT "\n", ptr_struct->debug_fw_tokens_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcc_en : " UH_FMT "\n", ptr_struct->mcc_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_vendor_nvconfig_files : " UH_FMT "\n", ptr_struct->signed_vendor_nvconfig_files); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_mlnx_nvconfig_files : " UH_FMT "\n", ptr_struct->signed_mlnx_nvconfig_files); adb2c_add_indentation(fd, indent_level); fprintf(fd, "frc_supported : " UH_FMT "\n", ptr_struct->frc_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cs_tokens_supported : " UH_FMT "\n", ptr_struct->cs_tokens_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_fw : " UH_FMT "\n", ptr_struct->debug_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_fw : " UH_FMT "\n", ptr_struct->signed_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secure_fw : " UH_FMT "\n", ptr_struct->secure_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FW_VERSION:\n"); cibfw_FW_VERSION_print(&(ptr_struct->FW_VERSION), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mic_version:\n"); cibfw_TRIPPLE_VERSION_print(&(ptr_struct->mic_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_vendor_id : " UH_FMT "\n", ptr_struct->pci_vendor_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_device_id : " UH_FMT "\n", ptr_struct->pci_device_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_sub_vendor_id : " UH_FMT "\n", ptr_struct->pci_sub_vendor_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_subsystem_id : " UH_FMT "\n", ptr_struct->pci_subsystem_id); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vsd_vendor_id : " UH_FMT "\n", ptr_struct->vsd_vendor_id); fprintf(fd, "vsd : \"%s\"\n", ptr_struct->vsd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_size:\n"); cibfw_image_size_print(&(ptr_struct->image_size), fd, indent_level + 1); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "supported_hw_id_%03d : " U32H_FMT "\n", i, ptr_struct->supported_hw_id[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini_file_num : " U32H_FMT "\n", ptr_struct->ini_file_num); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lfwp_version_vector:\n"); cibfw_lfwp_version_vector_print(&(ptr_struct->lfwp_version_vector), fd, indent_level + 1); fprintf(fd, "prod_ver : \"%s\"\n", ptr_struct->prod_ver); fprintf(fd, "description : \"%s\"\n", ptr_struct->description); adb2c_add_indentation(fd, indent_level); fprintf(fd, "isfu:\n"); cibfw_module_version_print(&(ptr_struct->isfu), fd, indent_level + 1); fprintf(fd, "name : \"%s\"\n", ptr_struct->name); fprintf(fd, "prs_name : \"%s\"\n", ptr_struct->prs_name); } unsigned int cibfw_image_info_size(void) { return CIBFW_IMAGE_INFO_SIZE; } void cibfw_image_info_dump(const struct cibfw_image_info* ptr_struct, FILE* fd) { cibfw_image_info_print(ptr_struct, fd, 0); } void cibfw_itoc_entry_pack(const struct cibfw_itoc_entry* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 22, (u_int32_t)ptr_struct->size); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 30, (u_int32_t)ptr_struct->param0); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cache_line_crc); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->zipped_image); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->param1); offset = 161; adb2c_push_bits_to_buff(ptr_buff, offset, 29, (u_int32_t)ptr_struct->flash_addr); offset = 160; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->relative_addr); offset = 208; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->section_crc); offset = 207; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->no_crc); offset = 206; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->device_data); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->itoc_entry_crc); } void cibfw_itoc_entry_unpack(struct cibfw_itoc_entry* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->size = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 22); offset = 0; ptr_struct->type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 34; ptr_struct->param0 = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 30); offset = 33; ptr_struct->cache_line_crc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->zipped_image = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->param1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 161; ptr_struct->flash_addr = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 29); offset = 160; ptr_struct->relative_addr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 208; ptr_struct->section_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 207; ptr_struct->no_crc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 206; ptr_struct->device_data = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 240; ptr_struct->itoc_entry_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void cibfw_itoc_entry_print(const struct cibfw_itoc_entry* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_itoc_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : " UH_FMT "\n", ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param0 : " UH_FMT "\n", ptr_struct->param0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cache_line_crc : " UH_FMT "\n", ptr_struct->cache_line_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "zipped_image : " UH_FMT "\n", ptr_struct->zipped_image); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param1 : " U32H_FMT "\n", ptr_struct->param1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_addr : " UH_FMT "\n", ptr_struct->flash_addr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "relative_addr : " UH_FMT "\n", ptr_struct->relative_addr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "section_crc : " UH_FMT "\n", ptr_struct->section_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "no_crc : " UH_FMT "\n", ptr_struct->no_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_data : " UH_FMT "\n", ptr_struct->device_data); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry_crc : " UH_FMT "\n", ptr_struct->itoc_entry_crc); } unsigned int cibfw_itoc_entry_size(void) { return CIBFW_ITOC_ENTRY_SIZE; } void cibfw_itoc_entry_dump(const struct cibfw_itoc_entry* ptr_struct, FILE* fd) { cibfw_itoc_entry_print(ptr_struct, fd, 0); } void cibfw_itoc_header_pack(const struct cibfw_itoc_header* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature0); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature1); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature2); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature3); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->itoc_entry_crc); } void cibfw_itoc_header_unpack(struct cibfw_itoc_header* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->signature0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->signature1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->signature2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->signature3 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 152; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 240; ptr_struct->itoc_entry_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void cibfw_itoc_header_print(const struct cibfw_itoc_header* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_itoc_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature0 : " U32H_FMT "\n", ptr_struct->signature0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature1 : " U32H_FMT "\n", ptr_struct->signature1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature2 : " U32H_FMT "\n", ptr_struct->signature2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature3 : " U32H_FMT "\n", ptr_struct->signature3); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry_crc : " UH_FMT "\n", ptr_struct->itoc_entry_crc); } unsigned int cibfw_itoc_header_size(void) { return CIBFW_ITOC_HEADER_SIZE; } void cibfw_itoc_header_dump(const struct cibfw_itoc_header* ptr_struct, FILE* fd) { cibfw_itoc_header_print(ptr_struct, fd, 0); } void cibfw_mfg_info_pack(const struct cibfw_mfg_info* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 255; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->guids_override_en); offset = 232; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 256; cibfw_guids_pack(&(ptr_struct->guids), ptr_buff + offset / 8); } void cibfw_mfg_info_unpack(struct cibfw_mfg_info* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 255; ptr_struct->guids_override_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 232; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 224; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 256; cibfw_guids_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); } void cibfw_mfg_info_print(const struct cibfw_mfg_info* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_mfg_info ========\n"); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids_override_en : " UH_FMT "\n", ptr_struct->guids_override_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cibfw_guids_print(&(ptr_struct->guids), fd, indent_level + 1); } unsigned int cibfw_mfg_info_size(void) { return CIBFW_MFG_INFO_SIZE; } void cibfw_mfg_info_dump(const struct cibfw_mfg_info* ptr_struct, FILE* fd) { cibfw_mfg_info_print(ptr_struct, fd, 0); } void cibfw_register_mfai_pack(const struct cibfw_register_mfai* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->address); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->permanent); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->use_address); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->use_image_id); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->image_id); } void cibfw_register_mfai_unpack(struct cibfw_register_mfai* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->address = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 2; ptr_struct->permanent = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->use_address = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->use_image_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 56; ptr_struct->image_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void cibfw_register_mfai_print(const struct cibfw_register_mfai* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_register_mfai ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " UH_FMT "\n", ptr_struct->address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "permanent : " UH_FMT "\n", ptr_struct->permanent); adb2c_add_indentation(fd, indent_level); fprintf(fd, "use_address : " UH_FMT "\n", ptr_struct->use_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "use_image_id : " UH_FMT "\n", ptr_struct->use_image_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_id : " UH_FMT "\n", ptr_struct->image_id); } unsigned int cibfw_register_mfai_size(void) { return CIBFW_REGISTER_MFAI_SIZE; } void cibfw_register_mfai_dump(const struct cibfw_register_mfai* ptr_struct, FILE* fd) { cibfw_register_mfai_print(ptr_struct, fd, 0); } void cibfw_register_mfrl_pack(const struct cibfw_register_mfrl* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->reset_level); } void cibfw_register_mfrl_unpack(struct cibfw_register_mfrl* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 56; ptr_struct->reset_level = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void cibfw_register_mfrl_print(const struct cibfw_register_mfrl* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_register_mfrl ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_level : " UH_FMT "\n", ptr_struct->reset_level); } unsigned int cibfw_register_mfrl_size(void) { return CIBFW_REGISTER_MFRL_SIZE; } void cibfw_register_mfrl_dump(const struct cibfw_register_mfrl* ptr_struct, FILE* fd) { cibfw_register_mfrl_print(ptr_struct, fd, 0); } void cibfw_cibfw_Nodes_pack(const union cibfw_cibfw_Nodes* ptr_struct, u_int8_t* ptr_buff) { cibfw_image_info_pack(&(ptr_struct->image_info), ptr_buff); } void cibfw_cibfw_Nodes_unpack(union cibfw_cibfw_Nodes* ptr_struct, const u_int8_t* ptr_buff) { cibfw_image_info_unpack(&(ptr_struct->image_info), ptr_buff); } void cibfw_cibfw_Nodes_print(const union cibfw_cibfw_Nodes* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cibfw_cibfw_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "register_mfai:\n"); cibfw_register_mfai_print(&(ptr_struct->register_mfai), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry:\n"); cibfw_itoc_entry_print(&(ptr_struct->itoc_entry), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cibfw_guids_print(&(ptr_struct->guids), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_header:\n"); cibfw_itoc_header_print(&(ptr_struct->itoc_header), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "register_mfrl:\n"); cibfw_register_mfrl_print(&(ptr_struct->register_mfrl), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_info:\n"); cibfw_device_info_print(&(ptr_struct->device_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfg_info:\n"); cibfw_mfg_info_print(&(ptr_struct->mfg_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_info:\n"); cibfw_image_info_print(&(ptr_struct->image_info), fd, indent_level + 1); } unsigned int cibfw_cibfw_Nodes_size(void) { return CIBFW_CIBFW_NODES_SIZE; } void cibfw_cibfw_Nodes_dump(const union cibfw_cibfw_Nodes* ptr_struct, FILE* fd) { cibfw_cibfw_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/fs5_image_layout_layouts.h0000644000175000017500000003370514522641732024020 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-06-01 20:24:55" *** by: *** > [REDACTED]/adb2pack.py --input adb/fs5_image_layout/fs5_image_layout.adb --file-prefix fs5_image_layout --prefix fs5_image_layout_ --no-adb-utils ***/ #ifndef FS5_IMAGE_LAYOUT_LAYOUTS_H #define FS5_IMAGE_LAYOUT_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 4 */ struct fs5_image_layout_bch_boot_component_flags { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.30 */ u_int32_t res; /* Description - */ /* 0x0.31 - 0x0.31 */ u_int8_t is_encrypted; }; /* Description - HW pointer entry */ /* Size in bytes - 8 */ struct fs5_image_layout_hw_pointer_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - pointer */ /* 0x0.0 - 0x0.31 */ u_int32_t ptr; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - crc16 as calculated by HW */ /* 0x4.0 - 0x4.15 */ u_int16_t crc; }; /* Description - */ /* Size in bytes - 64 */ struct fs5_image_layout_u8_digest { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x3c.31 */ u_int32_t digest[16]; }; /* Description - */ /* Size in bytes - 144 */ struct fs5_image_layout_u8_stage1_component { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - served for PSC use,indicate component type */ /* 0x0.24 - 0x4.23 */ u_int8_t u8_binary_magic[4]; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - length[bytes] */ /* 0x4.0 - 0x4.31 */ u_int32_t u32_binary_len; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - the destination of the component to be copied to */ /* 0x8.0 - 0x8.31 */ u_int32_t u32_load_dest; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - the entry_point (absolute value) to start (jump address) */ /* 0xc.0 - 0xc.31 */ u_int32_t u32_entry_point; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x14.31 */ u_int32_t boot_component_ver; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.24 - 0x20.23 */ u_int8_t u8_res[8]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x20.31 */ struct fs5_image_layout_bch_boot_component_flags flags; }; /* Description - */ /* Size in bytes - 1068 */ struct fs5_image_layout_u8_stage1_res { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Reserved for PSC use */ /* 0x0.0 - 0x0.31 */ u_int32_t reserved; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Offset relative to load address of the starting location of the HASH table (for NCORE.FMC use) */ /* 0x10.0 - 0x10.31 */ u_int32_t hash_offset; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Version of PSC.BL1 to be bind with this NCORE.FMC version (will be compared to BL1 version as specified in PSC.BL1.BCH) */ /* 0x14.0 - 0x14.31 */ u_int32_t BL1_bind_version; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Version of PSC.FW to be bind with this NCORE.FMC version (will be compared to FW version as specified in PSC.FW.BCH) */ /* 0x18.0 - 0x18.31 */ u_int32_t FW_bind_version; }; /* Description - BCH - boot component header */ /* Size in bytes - 8192 */ struct fs5_image_layout_boot_component_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ u_int32_t u8_header_magic; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x40.31 */ struct fs5_image_layout_u8_digest u8_digest; /*---------------- DWORD[1705] (Offset 0x1aa4) ----------------*/ /* Description - */ /* 0x1aa4.0 - 0x1ecc.31 */ struct fs5_image_layout_u8_stage1_res u8_stage1_res; /*---------------- DWORD[1976] (Offset 0x1ee0) ----------------*/ /* Description - */ /* 0x1ee0.0 - 0x1f6c.31 */ struct fs5_image_layout_u8_stage1_component u8_stage1_component; }; /* Description - HW pointers */ /* Size in bytes - 128 */ struct fs5_image_layout_hw_pointers_gilboa { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ struct fs5_image_layout_hw_pointer_entry psc_bct_pointer; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ struct fs5_image_layout_hw_pointer_entry boot2_ptr; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x14.31 */ struct fs5_image_layout_hw_pointer_entry toc_ptr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x1c.31 */ struct fs5_image_layout_hw_pointer_entry tools_ptr; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x24.31 */ struct fs5_image_layout_hw_pointer_entry psc_bl1_bch_pointer; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x2c.31 */ struct fs5_image_layout_hw_pointer_entry psc_bl1_pointer; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - */ /* 0x30.0 - 0x34.31 */ struct fs5_image_layout_hw_pointer_entry ncore_bch_pointer; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.0 - 0x3c.31 */ struct fs5_image_layout_hw_pointer_entry reserved; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - */ /* 0x40.0 - 0x44.31 */ struct fs5_image_layout_hw_pointer_entry psc_fw_bch_pointer; /*---------------- DWORD[18] (Offset 0x48) ----------------*/ /* Description - */ /* 0x48.0 - 0x4c.31 */ struct fs5_image_layout_hw_pointer_entry psc_fw_pointer; /*---------------- DWORD[20] (Offset 0x50) ----------------*/ /* Description - */ /* 0x50.0 - 0x54.31 */ struct fs5_image_layout_hw_pointer_entry image_info_section_pointer; /*---------------- DWORD[22] (Offset 0x58) ----------------*/ /* Description - */ /* 0x58.0 - 0x5c.31 */ struct fs5_image_layout_hw_pointer_entry image_signature_pointer; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - */ /* 0x60.0 - 0x64.31 */ struct fs5_image_layout_hw_pointer_entry public_key_pointer; /*---------------- DWORD[26] (Offset 0x68) ----------------*/ /* Description - */ /* 0x68.0 - 0x6c.31 */ struct fs5_image_layout_hw_pointer_entry fw_security_version_pointer; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.0 - 0x74.31 */ struct fs5_image_layout_hw_pointer_entry gcm_iv_delta_pointer; /*---------------- DWORD[30] (Offset 0x78) ----------------*/ /* Description - */ /* 0x78.0 - 0x7c.31 */ struct fs5_image_layout_hw_pointer_entry ncore_hashes_pointer; }; /* Description - */ /* Size in bytes - 8192 */ union fs5_image_layout_fs5_image_layout_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x1ffc.31 */ struct fs5_image_layout_boot_component_header boot_component_header; /* Description - */ /* 0x0.0 - 0x7c.31 */ struct fs5_image_layout_hw_pointers_gilboa hw_pointers_gilboa; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* bch_boot_component_flags */ void fs5_image_layout_bch_boot_component_flags_pack(const struct fs5_image_layout_bch_boot_component_flags *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_bch_boot_component_flags_unpack(struct fs5_image_layout_bch_boot_component_flags *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_bch_boot_component_flags_print(const struct fs5_image_layout_bch_boot_component_flags *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_bch_boot_component_flags_size(void); #define FS5_IMAGE_LAYOUT_BCH_BOOT_COMPONENT_FLAGS_SIZE (0x4) void fs5_image_layout_bch_boot_component_flags_dump(const struct fs5_image_layout_bch_boot_component_flags *ptr_struct, FILE *fd); /* hw_pointer_entry */ void fs5_image_layout_hw_pointer_entry_pack(const struct fs5_image_layout_hw_pointer_entry *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_hw_pointer_entry_unpack(struct fs5_image_layout_hw_pointer_entry *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_hw_pointer_entry_print(const struct fs5_image_layout_hw_pointer_entry *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_hw_pointer_entry_size(void); #define FS5_IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE (0x8) void fs5_image_layout_hw_pointer_entry_dump(const struct fs5_image_layout_hw_pointer_entry *ptr_struct, FILE *fd); /* u8_digest */ void fs5_image_layout_u8_digest_pack(const struct fs5_image_layout_u8_digest *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_u8_digest_unpack(struct fs5_image_layout_u8_digest *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_u8_digest_print(const struct fs5_image_layout_u8_digest *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_u8_digest_size(void); #define FS5_IMAGE_LAYOUT_U8_DIGEST_SIZE (0x40) void fs5_image_layout_u8_digest_dump(const struct fs5_image_layout_u8_digest *ptr_struct, FILE *fd); /* u8_stage1_component */ void fs5_image_layout_u8_stage1_component_pack(const struct fs5_image_layout_u8_stage1_component *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_u8_stage1_component_unpack(struct fs5_image_layout_u8_stage1_component *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_u8_stage1_component_print(const struct fs5_image_layout_u8_stage1_component *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_u8_stage1_component_size(void); #define FS5_IMAGE_LAYOUT_U8_STAGE1_COMPONENT_SIZE (0x90) void fs5_image_layout_u8_stage1_component_dump(const struct fs5_image_layout_u8_stage1_component *ptr_struct, FILE *fd); /* u8_stage1_res */ void fs5_image_layout_u8_stage1_res_pack(const struct fs5_image_layout_u8_stage1_res *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_u8_stage1_res_unpack(struct fs5_image_layout_u8_stage1_res *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_u8_stage1_res_print(const struct fs5_image_layout_u8_stage1_res *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_u8_stage1_res_size(void); #define FS5_IMAGE_LAYOUT_U8_STAGE1_RES_SIZE (0x42c) void fs5_image_layout_u8_stage1_res_dump(const struct fs5_image_layout_u8_stage1_res *ptr_struct, FILE *fd); /* boot_component_header */ void fs5_image_layout_boot_component_header_pack(const struct fs5_image_layout_boot_component_header *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_boot_component_header_unpack(struct fs5_image_layout_boot_component_header *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_boot_component_header_print(const struct fs5_image_layout_boot_component_header *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_boot_component_header_size(void); #define FS5_IMAGE_LAYOUT_BOOT_COMPONENT_HEADER_SIZE (0x2000) void fs5_image_layout_boot_component_header_dump(const struct fs5_image_layout_boot_component_header *ptr_struct, FILE *fd); /* hw_pointers_gilboa */ void fs5_image_layout_hw_pointers_gilboa_pack(const struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_hw_pointers_gilboa_unpack(struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_hw_pointers_gilboa_print(const struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_hw_pointers_gilboa_size(void); #define FS5_IMAGE_LAYOUT_HW_POINTERS_GILBOA_SIZE (0x80) void fs5_image_layout_hw_pointers_gilboa_dump(const struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, FILE *fd); /* fs5_image_layout_Nodes */ void fs5_image_layout_fs5_image_layout_Nodes_pack(const union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, u_int8_t *ptr_buff); void fs5_image_layout_fs5_image_layout_Nodes_unpack(union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, const u_int8_t *ptr_buff); void fs5_image_layout_fs5_image_layout_Nodes_print(const union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, FILE *fd, int indent_level); unsigned int fs5_image_layout_fs5_image_layout_Nodes_size(void); #define FS5_IMAGE_LAYOUT_FS5_IMAGE_LAYOUT_NODES_SIZE (0x2000) void fs5_image_layout_fs5_image_layout_Nodes_dump(const union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // FS5_IMAGE_LAYOUT_LAYOUTS_H mstflint-4.26.0/tools_layouts/icmd_hca_layouts.c0000755000175000017500000010273614522641732022312 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-07-19 14:43:13" *** by: *** > [REDACTED]/adb2pack.py --input adb/tools/icmd_hca.adb --file-prefix icmd_hca --prefix icmd_hca_ --no-adb-utils ***/ #include "icmd_hca_layouts.h" void icmd_hca_counter_id_pack(const struct icmd_hca_counter_id *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->counter_id); } void icmd_hca_counter_id_unpack(struct icmd_hca_counter_id *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->counter_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void icmd_hca_counter_id_print(const struct icmd_hca_counter_id *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_counter_id ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "counter_id : " UH_FMT "\n", ptr_struct->counter_id); } unsigned int icmd_hca_counter_id_size(void) { return ICMD_HCA_COUNTER_ID_SIZE; } void icmd_hca_counter_id_dump(const struct icmd_hca_counter_id *ptr_struct, FILE *fd) { icmd_hca_counter_id_print(ptr_struct, fd, 0); } void icmd_hca_diagnostic_cntr_layout_pack(const struct icmd_hca_diagnostic_cntr_layout *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->counter_id); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sync); } void icmd_hca_diagnostic_cntr_layout_unpack(struct icmd_hca_diagnostic_cntr_layout *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->counter_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 0; ptr_struct->sync = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void icmd_hca_diagnostic_cntr_layout_print(const struct icmd_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_diagnostic_cntr_layout ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "counter_id : " UH_FMT "\n", ptr_struct->counter_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sync : " UH_FMT "\n", ptr_struct->sync); } unsigned int icmd_hca_diagnostic_cntr_layout_size(void) { return ICMD_HCA_DIAGNOSTIC_CNTR_LAYOUT_SIZE; } void icmd_hca_diagnostic_cntr_layout_dump(const struct icmd_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd) { icmd_hca_diagnostic_cntr_layout_print(ptr_struct, fd, 0); } void icmd_hca_diagnostic_params_context_pack(const struct icmd_hca_diagnostic_params_context *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_num_of_samples); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_counters); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_sample_period); offset = 38; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->tracer_dump); offset = 37; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->enable); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->on_demand); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->clear); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sync); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->repetitive); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->single); } void icmd_hca_diagnostic_params_context_unpack(struct icmd_hca_diagnostic_params_context *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->log_num_of_samples = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->num_of_counters = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 56; ptr_struct->log_sample_period = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 38; ptr_struct->tracer_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 37; ptr_struct->enable = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 36; ptr_struct->on_demand = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 35; ptr_struct->clear = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->sync = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->repetitive = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->single = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void icmd_hca_diagnostic_params_context_print(const struct icmd_hca_diagnostic_params_context *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_diagnostic_params_context ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_num_of_samples : " UH_FMT "\n", ptr_struct->log_num_of_samples); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_counters : " UH_FMT "\n", ptr_struct->num_of_counters); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_sample_period : " UH_FMT "\n", ptr_struct->log_sample_period); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tracer_dump : " UH_FMT "\n", ptr_struct->tracer_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "enable : %s (" UH_FMT ")\n", (ptr_struct->enable == 1 ? ("Enable") : ((ptr_struct->enable == 0 ? ("Disable") : ("unknown")))), ptr_struct->enable); adb2c_add_indentation(fd, indent_level); fprintf(fd, "on_demand : " UH_FMT "\n", ptr_struct->on_demand); adb2c_add_indentation(fd, indent_level); fprintf(fd, "clear : " UH_FMT "\n", ptr_struct->clear); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sync : " UH_FMT "\n", ptr_struct->sync); adb2c_add_indentation(fd, indent_level); fprintf(fd, "repetitive : " UH_FMT "\n", ptr_struct->repetitive); adb2c_add_indentation(fd, indent_level); fprintf(fd, "single : " UH_FMT "\n", ptr_struct->single); adb2c_add_indentation(fd, indent_level); fprintf(fd, "unlimited array subnode: (counter_id)\n"); } unsigned int icmd_hca_diagnostic_params_context_size(void) { return ICMD_HCA_DIAGNOSTIC_PARAMS_CONTEXT_SIZE; } void icmd_hca_diagnostic_params_context_dump(const struct icmd_hca_diagnostic_params_context *ptr_struct, FILE *fd) { icmd_hca_diagnostic_params_context_print(ptr_struct, fd, 0); } void icmd_hca_debug_cap_pack(const struct icmd_hca_debug_cap *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_max_samples); offset = 11; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->log_min_resource_dump_eq); offset = 9; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->resource_dump); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->log_cr_dump_to_mem_size); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->core_dump_qp); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->core_dump_general); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_min_sample_period); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->diag_counter_tracer_dump); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->health_mon_rx_activity); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->repetitive); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->single); } void icmd_hca_debug_cap_unpack(struct icmd_hca_debug_cap *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->log_max_samples = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 11; ptr_struct->log_min_resource_dump_eq = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 9; ptr_struct->resource_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 4; ptr_struct->log_cr_dump_to_mem_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 1; ptr_struct->core_dump_qp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->core_dump_general = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 56; ptr_struct->log_min_sample_period = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 35; ptr_struct->diag_counter_tracer_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->health_mon_rx_activity = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->repetitive = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->single = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void icmd_hca_debug_cap_print(const struct icmd_hca_debug_cap *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_debug_cap ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_max_samples : " UH_FMT "\n", ptr_struct->log_max_samples); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_min_resource_dump_eq : " UH_FMT "\n", ptr_struct->log_min_resource_dump_eq); adb2c_add_indentation(fd, indent_level); fprintf(fd, "resource_dump : " UH_FMT "\n", ptr_struct->resource_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_cr_dump_to_mem_size : " UH_FMT "\n", ptr_struct->log_cr_dump_to_mem_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "core_dump_qp : " UH_FMT "\n", ptr_struct->core_dump_qp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "core_dump_general : " UH_FMT "\n", ptr_struct->core_dump_general); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_min_sample_period : " UH_FMT "\n", ptr_struct->log_min_sample_period); adb2c_add_indentation(fd, indent_level); fprintf(fd, "diag_counter_tracer_dump : " UH_FMT "\n", ptr_struct->diag_counter_tracer_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "health_mon_rx_activity : " UH_FMT "\n", ptr_struct->health_mon_rx_activity); adb2c_add_indentation(fd, indent_level); fprintf(fd, "repetitive : " UH_FMT "\n", ptr_struct->repetitive); adb2c_add_indentation(fd, indent_level); fprintf(fd, "single : " UH_FMT "\n", ptr_struct->single); adb2c_add_indentation(fd, indent_level); fprintf(fd, "unlimited array subnode: (diagnostic_counter)\n"); } unsigned int icmd_hca_debug_cap_size(void) { return ICMD_HCA_DEBUG_CAP_SIZE; } void icmd_hca_debug_cap_dump(const struct icmd_hca_debug_cap *ptr_struct, FILE *fd) { icmd_hca_debug_cap_print(ptr_struct, fd, 0); } void icmd_hca_icmd_mh_sync_in_pack(const struct icmd_hca_icmd_mh_sync_in *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->state); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->sync_type); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ignore_inactive_host); } void icmd_hca_icmd_mh_sync_in_unpack(struct icmd_hca_icmd_mh_sync_in *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->state = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 16; ptr_struct->sync_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->ignore_inactive_host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void icmd_hca_icmd_mh_sync_in_print(const struct icmd_hca_icmd_mh_sync_in *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_mh_sync_in ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "state : " UH_FMT "\n", ptr_struct->state); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sync_type : " UH_FMT "\n", ptr_struct->sync_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ignore_inactive_host : " UH_FMT "\n", ptr_struct->ignore_inactive_host); } unsigned int icmd_hca_icmd_mh_sync_in_size(void) { return ICMD_HCA_ICMD_MH_SYNC_IN_SIZE; } void icmd_hca_icmd_mh_sync_in_dump(const struct icmd_hca_icmd_mh_sync_in *ptr_struct, FILE *fd) { icmd_hca_icmd_mh_sync_in_print(ptr_struct, fd, 0); } void icmd_hca_icmd_mh_sync_out_pack(const struct icmd_hca_icmd_mh_sync_out *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->state); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->sync_type); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ignore_inactive_host); offset = 60; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->host_ready); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->start_uptime); } void icmd_hca_icmd_mh_sync_out_unpack(struct icmd_hca_icmd_mh_sync_out *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->state = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 16; ptr_struct->sync_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->ignore_inactive_host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 60; ptr_struct->host_ready = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->start_uptime = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void icmd_hca_icmd_mh_sync_out_print(const struct icmd_hca_icmd_mh_sync_out *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_mh_sync_out ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "state : " UH_FMT "\n", ptr_struct->state); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sync_type : " UH_FMT "\n", ptr_struct->sync_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ignore_inactive_host : " UH_FMT "\n", ptr_struct->ignore_inactive_host); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host_ready : %s (" UH_FMT ")\n", (ptr_struct->host_ready == 0 ? ("IDLE") : ((ptr_struct->host_ready == 1 ? ("READY") : ((ptr_struct->host_ready == 15 ? ("GO") : ("unknown")))))), ptr_struct->host_ready); adb2c_add_indentation(fd, indent_level); fprintf(fd, "start_uptime : " U32H_FMT "\n", ptr_struct->start_uptime); } unsigned int icmd_hca_icmd_mh_sync_out_size(void) { return ICMD_HCA_ICMD_MH_SYNC_OUT_SIZE; } void icmd_hca_icmd_mh_sync_out_dump(const struct icmd_hca_icmd_mh_sync_out *ptr_struct, FILE *fd) { icmd_hca_icmd_mh_sync_out_print(ptr_struct, fd, 0); } void icmd_hca_icmd_query_cap_general_pack(const struct icmd_hca_icmd_query_cap_general *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nic_cap_reg); offset = 17; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->port_state_behavior); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->virt_node_guid); offset = 15; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ncfg_reg); offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cwcam_reg); offset = 13; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sbcam_reg); offset = 11; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->capability_groups); offset = 9; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->virtual_link_down); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->icmd_exmb); offset = 7; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->capi); offset = 6; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->qcam_reg); offset = 5; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mcam_reg); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pcam_reg); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mh_sync); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->allow_icmd_access_reg_on_all_registers); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->fw_info_psid); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_access); offset = 63; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_p); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_u); offset = 61; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_m); offset = 60; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_b); offset = 59; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_a); offset = 58; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_g); offset = 57; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wol_s); offset = 55; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rol_g); offset = 54; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rol_s); offset = 53; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->fpga); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_diagnostic_counters); } void icmd_hca_icmd_query_cap_general_unpack(struct icmd_hca_icmd_query_cap_general *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 18; ptr_struct->nic_cap_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 17; ptr_struct->port_state_behavior = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->virt_node_guid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 15; ptr_struct->ncfg_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 14; ptr_struct->cwcam_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 13; ptr_struct->sbcam_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 11; ptr_struct->capability_groups = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 9; ptr_struct->virtual_link_down = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 8; ptr_struct->icmd_exmb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 7; ptr_struct->capi = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 6; ptr_struct->qcam_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 5; ptr_struct->mcam_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 4; ptr_struct->pcam_reg = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 3; ptr_struct->mh_sync = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->allow_icmd_access_reg_on_all_registers = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->fw_info_psid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->nv_access = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 63; ptr_struct->wol_p = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 62; ptr_struct->wol_u = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 61; ptr_struct->wol_m = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 60; ptr_struct->wol_b = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 59; ptr_struct->wol_a = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 58; ptr_struct->wol_g = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 57; ptr_struct->wol_s = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 55; ptr_struct->rol_g = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 54; ptr_struct->rol_s = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 53; ptr_struct->fpga = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->num_of_diagnostic_counters = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void icmd_hca_icmd_query_cap_general_print(const struct icmd_hca_icmd_query_cap_general *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_query_cap_general ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nic_cap_reg : " UH_FMT "\n", ptr_struct->nic_cap_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "port_state_behavior : " UH_FMT "\n", ptr_struct->port_state_behavior); adb2c_add_indentation(fd, indent_level); fprintf(fd, "virt_node_guid : " UH_FMT "\n", ptr_struct->virt_node_guid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ncfg_reg : " UH_FMT "\n", ptr_struct->ncfg_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cwcam_reg : " UH_FMT "\n", ptr_struct->cwcam_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sbcam_reg : " UH_FMT "\n", ptr_struct->sbcam_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "capability_groups : " UH_FMT "\n", ptr_struct->capability_groups); adb2c_add_indentation(fd, indent_level); fprintf(fd, "virtual_link_down : " UH_FMT "\n", ptr_struct->virtual_link_down); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_exmb : " UH_FMT "\n", ptr_struct->icmd_exmb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "capi : " UH_FMT "\n", ptr_struct->capi); adb2c_add_indentation(fd, indent_level); fprintf(fd, "qcam_reg : " UH_FMT "\n", ptr_struct->qcam_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcam_reg : " UH_FMT "\n", ptr_struct->mcam_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pcam_reg : " UH_FMT "\n", ptr_struct->pcam_reg); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mh_sync : " UH_FMT "\n", ptr_struct->mh_sync); adb2c_add_indentation(fd, indent_level); fprintf(fd, "allow_icmd_access_reg_on_all_registers : " UH_FMT "\n", ptr_struct->allow_icmd_access_reg_on_all_registers); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_info_psid : " UH_FMT "\n", ptr_struct->fw_info_psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_access : " UH_FMT "\n", ptr_struct->nv_access); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_p : " UH_FMT "\n", ptr_struct->wol_p); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_u : " UH_FMT "\n", ptr_struct->wol_u); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_m : " UH_FMT "\n", ptr_struct->wol_m); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_b : " UH_FMT "\n", ptr_struct->wol_b); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_a : " UH_FMT "\n", ptr_struct->wol_a); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_g : " UH_FMT "\n", ptr_struct->wol_g); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wol_s : " UH_FMT "\n", ptr_struct->wol_s); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rol_g : " UH_FMT "\n", ptr_struct->rol_g); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rol_s : " UH_FMT "\n", ptr_struct->rol_s); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fpga : " UH_FMT "\n", ptr_struct->fpga); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_diagnostic_counters : " UH_FMT "\n", ptr_struct->num_of_diagnostic_counters); } unsigned int icmd_hca_icmd_query_cap_general_size(void) { return ICMD_HCA_ICMD_QUERY_CAP_GENERAL_SIZE; } void icmd_hca_icmd_query_cap_general_dump(const struct icmd_hca_icmd_query_cap_general *ptr_struct, FILE *fd) { icmd_hca_icmd_query_cap_general_print(ptr_struct, fd, 0); } void icmd_hca_icmd_query_cap_in_pack(const struct icmd_hca_icmd_query_cap_in *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->capability_group); } void icmd_hca_icmd_query_cap_in_unpack(struct icmd_hca_icmd_query_cap_in *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->capability_group = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void icmd_hca_icmd_query_cap_in_print(const struct icmd_hca_icmd_query_cap_in *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_query_cap_in ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "capability_group : %s (" UH_FMT ")\n", (ptr_struct->capability_group == 0 ? ("General_capability") : ((ptr_struct->capability_group == 1 ? ("Debug_Capability") : ("unknown")))), ptr_struct->capability_group); } unsigned int icmd_hca_icmd_query_cap_in_size(void) { return ICMD_HCA_ICMD_QUERY_CAP_IN_SIZE; } void icmd_hca_icmd_query_cap_in_dump(const struct icmd_hca_icmd_query_cap_in *ptr_struct, FILE *fd) { icmd_hca_icmd_query_cap_in_print(ptr_struct, fd, 0); } void icmd_hca_icmd_query_diagnostic_cntrs_in_pack(const struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->sample_index); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_samples); } void icmd_hca_icmd_query_diagnostic_cntrs_in_unpack(struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 80; ptr_struct->sample_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->num_of_samples = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void icmd_hca_icmd_query_diagnostic_cntrs_in_print(const struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_query_diagnostic_cntrs_in ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sample_index : " UH_FMT "\n", ptr_struct->sample_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_samples : " UH_FMT "\n", ptr_struct->num_of_samples); } unsigned int icmd_hca_icmd_query_diagnostic_cntrs_in_size(void) { return ICMD_HCA_ICMD_QUERY_DIAGNOSTIC_CNTRS_IN_SIZE; } void icmd_hca_icmd_query_diagnostic_cntrs_in_dump(const struct icmd_hca_icmd_query_diagnostic_cntrs_in *ptr_struct, FILE *fd) { icmd_hca_icmd_query_diagnostic_cntrs_in_print(ptr_struct, fd, 0); } void icmd_hca_icmd_query_diagnostic_params_out_pack(const struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 64; icmd_hca_diagnostic_params_context_pack(&(ptr_struct->diagnostic_params_context), ptr_buff + offset / 8); } void icmd_hca_icmd_query_diagnostic_params_out_unpack(struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 64; icmd_hca_diagnostic_params_context_unpack(&(ptr_struct->diagnostic_params_context), ptr_buff + offset / 8); } void icmd_hca_icmd_query_diagnostic_params_out_print(const struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_query_diagnostic_params_out ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "diagnostic_params_context:\n"); icmd_hca_diagnostic_params_context_print(&(ptr_struct->diagnostic_params_context), fd, indent_level + 1); } unsigned int icmd_hca_icmd_query_diagnostic_params_out_size(void) { return ICMD_HCA_ICMD_QUERY_DIAGNOSTIC_PARAMS_OUT_SIZE; } void icmd_hca_icmd_query_diagnostic_params_out_dump(const struct icmd_hca_icmd_query_diagnostic_params_out *ptr_struct, FILE *fd) { icmd_hca_icmd_query_diagnostic_params_out_print(ptr_struct, fd, 0); } void icmd_hca_icmd_set_diagnostic_params_in_pack(const struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 64; icmd_hca_diagnostic_params_context_pack(&(ptr_struct->diagnostic_params_context), ptr_buff + offset / 8); } void icmd_hca_icmd_set_diagnostic_params_in_unpack(struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 64; icmd_hca_diagnostic_params_context_unpack(&(ptr_struct->diagnostic_params_context), ptr_buff + offset / 8); } void icmd_hca_icmd_set_diagnostic_params_in_print(const struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_set_diagnostic_params_in ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "diagnostic_params_context:\n"); icmd_hca_diagnostic_params_context_print(&(ptr_struct->diagnostic_params_context), fd, indent_level + 1); } unsigned int icmd_hca_icmd_set_diagnostic_params_in_size(void) { return ICMD_HCA_ICMD_SET_DIAGNOSTIC_PARAMS_IN_SIZE; } void icmd_hca_icmd_set_diagnostic_params_in_dump(const struct icmd_hca_icmd_set_diagnostic_params_in *ptr_struct, FILE *fd) { icmd_hca_icmd_set_diagnostic_params_in_print(ptr_struct, fd, 0); } void icmd_hca_icmd_hca_Nodes_pack(const union icmd_hca_icmd_hca_Nodes *ptr_struct, u_int8_t *ptr_buff) { icmd_hca_debug_cap_pack(&(ptr_struct->debug_cap), ptr_buff); } void icmd_hca_icmd_hca_Nodes_unpack(union icmd_hca_icmd_hca_Nodes *ptr_struct, const u_int8_t *ptr_buff) { icmd_hca_debug_cap_unpack(&(ptr_struct->debug_cap), ptr_buff); } void icmd_hca_icmd_hca_Nodes_print(const union icmd_hca_icmd_hca_Nodes *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== icmd_hca_icmd_hca_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_query_cap_general:\n"); icmd_hca_icmd_query_cap_general_print(&(ptr_struct->icmd_query_cap_general), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_set_diagnostic_params_in:\n"); icmd_hca_icmd_set_diagnostic_params_in_print(&(ptr_struct->icmd_set_diagnostic_params_in), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_query_cap_in:\n"); icmd_hca_icmd_query_cap_in_print(&(ptr_struct->icmd_query_cap_in), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_query_diagnostic_params_out:\n"); icmd_hca_icmd_query_diagnostic_params_out_print(&(ptr_struct->icmd_query_diagnostic_params_out), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_cap:\n"); icmd_hca_debug_cap_print(&(ptr_struct->debug_cap), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_query_diagnostic_cntrs_in:\n"); icmd_hca_icmd_query_diagnostic_cntrs_in_print(&(ptr_struct->icmd_query_diagnostic_cntrs_in), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_mh_sync_out:\n"); icmd_hca_icmd_mh_sync_out_print(&(ptr_struct->icmd_mh_sync_out), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icmd_mh_sync_in:\n"); icmd_hca_icmd_mh_sync_in_print(&(ptr_struct->icmd_mh_sync_in), fd, indent_level + 1); } unsigned int icmd_hca_icmd_hca_Nodes_size(void) { return ICMD_HCA_ICMD_HCA_NODES_SIZE; } void icmd_hca_icmd_hca_Nodes_dump(const union icmd_hca_icmd_hca_Nodes *ptr_struct, FILE *fd) { icmd_hca_icmd_hca_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/prm_adb_db.h0000644000175000017500000000453314522641732021052 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2019 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * prm_adb_db.h * * Created on: Feb 27, 2019 * Author: diaedinrim */ #ifndef PRMADBDB #define PRMADBDB #include #include class PrmAdbDB { public: static std::string prm_adb_db_trim(const std::string& s); static std::string prm_adb_db_rtrim(const std::string& s); static std::string prm_adb_db_ltrim(const std::string& s); static std::string getDefaultDBName(bool isSwitch); }; class PrmDBException : public std::exception { public: // Methods PrmDBException(); PrmDBException(const char* msg, ...) __attribute__((format(__printf__, 2, 3))); PrmDBException(std::string msg); virtual ~PrmDBException() throw(); virtual const char* what() const throw(); virtual std::string what_s() const; private: std::string _msg; }; #endif mstflint-4.26.0/tools_layouts/reg_access_switch_layouts.c0000644000175000017500000017146614522641732024245 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-07-16 15:06:38" *** by: *** > [REDACTED]/adb2pack.py --input adb/prm/switch/ext/reg_access_switch.adb --file-prefix reg_access_switch --prefix reg_access_switch_ --no-adb-utils ***/ #include "reg_access_switch_layouts.h" void reg_access_switch_command_payload_ext_pack(const struct reg_access_switch_command_payload_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 65; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 2080, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data[i]); } } void reg_access_switch_command_payload_ext_unpack(struct reg_access_switch_command_payload_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 65; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 2080, 1); ptr_struct->data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_command_payload_ext_print(const struct reg_access_switch_command_payload_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_command_payload_ext ========\n"); for (i = 0; i < 65; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " U32H_FMT "\n", i, ptr_struct->data[i]); } } unsigned int reg_access_switch_command_payload_ext_size(void) { return REG_ACCESS_SWITCH_COMMAND_PAYLOAD_EXT_SIZE; } void reg_access_switch_command_payload_ext_dump(const struct reg_access_switch_command_payload_ext *ptr_struct, FILE *fd) { reg_access_switch_command_payload_ext_print(ptr_struct, fd, 0); } void reg_access_switch_crspace_access_payload_ext_pack(const struct reg_access_switch_crspace_access_payload_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->address); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 2080, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data[i]); } } void reg_access_switch_crspace_access_payload_ext_unpack(struct reg_access_switch_crspace_access_payload_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 2080, 1); ptr_struct->data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_crspace_access_payload_ext_print(const struct reg_access_switch_crspace_access_payload_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_crspace_access_payload_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " U32H_FMT "\n", ptr_struct->address); for (i = 0; i < 64; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " U32H_FMT "\n", i, ptr_struct->data[i]); } } unsigned int reg_access_switch_crspace_access_payload_ext_size(void) { return REG_ACCESS_SWITCH_CRSPACE_ACCESS_PAYLOAD_EXT_SIZE; } void reg_access_switch_crspace_access_payload_ext_dump(const struct reg_access_switch_crspace_access_payload_ext *ptr_struct, FILE *fd) { reg_access_switch_crspace_access_payload_ext_print(ptr_struct, fd, 0); } void reg_access_switch_device_info_ext_pack(const struct reg_access_switch_device_info_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->device_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->flash_id); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->lc_pwr_on); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->thermal_sd); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->flash_owner); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->uses_flash); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->device_type); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->fw_major); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->fw_sub_minor); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->fw_minor); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->max_cmd_write_size_supp); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->max_cmd_read_size_supp); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(152, 8, i, 256, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->device_type_name[i]); } } void reg_access_switch_device_info_ext_unpack(struct reg_access_switch_device_info_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->device_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->flash_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 3; ptr_struct->lc_pwr_on = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->thermal_sd = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->flash_owner = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->uses_flash = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->device_type = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->fw_major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->fw_sub_minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->fw_minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 120; ptr_struct->max_cmd_write_size_supp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->max_cmd_read_size_supp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(152, 8, i, 256, 1); ptr_struct->device_type_name[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void reg_access_switch_device_info_ext_print(const struct reg_access_switch_device_info_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_device_info_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index : " UH_FMT "\n", ptr_struct->device_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_id : " UH_FMT "\n", ptr_struct->flash_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lc_pwr_on : " UH_FMT "\n", ptr_struct->lc_pwr_on); adb2c_add_indentation(fd, indent_level); fprintf(fd, "thermal_sd : " UH_FMT "\n", ptr_struct->thermal_sd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_owner : " UH_FMT "\n", ptr_struct->flash_owner); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uses_flash : " UH_FMT "\n", ptr_struct->uses_flash); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_type : " UH_FMT "\n", ptr_struct->device_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_major : " UH_FMT "\n", ptr_struct->fw_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_sub_minor : " UH_FMT "\n", ptr_struct->fw_sub_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_minor : " UH_FMT "\n", ptr_struct->fw_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_cmd_write_size_supp : " UH_FMT "\n", ptr_struct->max_cmd_write_size_supp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_cmd_read_size_supp : " UH_FMT "\n", ptr_struct->max_cmd_read_size_supp); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_type_name_%03d : " UH_FMT "\n", i, ptr_struct->device_type_name[i]); } } unsigned int reg_access_switch_device_info_ext_size(void) { return REG_ACCESS_SWITCH_DEVICE_INFO_EXT_SIZE; } void reg_access_switch_device_info_ext_dump(const struct reg_access_switch_device_info_ext *ptr_struct, FILE *fd) { reg_access_switch_device_info_ext_print(ptr_struct, fd, 0); } void reg_access_switch_prm_register_payload_ext_pack(const struct reg_access_switch_prm_register_payload_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->register_id); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->method); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->status); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 2080, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->register_data[i]); } } void reg_access_switch_prm_register_payload_ext_unpack(struct reg_access_switch_prm_register_payload_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; ptr_struct->register_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->method = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 0; ptr_struct->status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 2080, 1); ptr_struct->register_data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_prm_register_payload_ext_print(const struct reg_access_switch_prm_register_payload_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_prm_register_payload_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "register_id : " UH_FMT "\n", ptr_struct->register_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "method : " UH_FMT "\n", ptr_struct->method); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status : " UH_FMT "\n", ptr_struct->status); for (i = 0; i < 64; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "register_data_%03d : " U32H_FMT "\n", i, ptr_struct->register_data[i]); } } unsigned int reg_access_switch_prm_register_payload_ext_size(void) { return REG_ACCESS_SWITCH_PRM_REGISTER_PAYLOAD_EXT_SIZE; } void reg_access_switch_prm_register_payload_ext_dump(const struct reg_access_switch_prm_register_payload_ext *ptr_struct, FILE *fd) { reg_access_switch_prm_register_payload_ext_print(ptr_struct, fd, 0); } void reg_access_switch_slot_info_ext_pack(const struct reg_access_switch_slot_info_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->active); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->lc_ready); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sr_valid); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->provisioned); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ini_file_version); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hw_revision); offset = 88; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->card_type); } void reg_access_switch_slot_info_ext_unpack(struct reg_access_switch_slot_info_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 4; ptr_struct->active = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->lc_ready = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 1; ptr_struct->sr_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->provisioned = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->ini_file_version = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->hw_revision = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 88; ptr_struct->card_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_switch_slot_info_ext_print(const struct reg_access_switch_slot_info_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_slot_info_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "active : " UH_FMT "\n", ptr_struct->active); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lc_ready : " UH_FMT "\n", ptr_struct->lc_ready); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sr_valid : " UH_FMT "\n", ptr_struct->sr_valid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "provisioned : " UH_FMT "\n", ptr_struct->provisioned); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini_file_version : " UH_FMT "\n", ptr_struct->ini_file_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_revision : " UH_FMT "\n", ptr_struct->hw_revision); adb2c_add_indentation(fd, indent_level); fprintf(fd, "card_type : " UH_FMT "\n", ptr_struct->card_type); } unsigned int reg_access_switch_slot_info_ext_size(void) { return REG_ACCESS_SWITCH_SLOT_INFO_EXT_SIZE; } void reg_access_switch_slot_info_ext_dump(const struct reg_access_switch_slot_info_ext *ptr_struct, FILE *fd) { reg_access_switch_slot_info_ext_print(ptr_struct, fd, 0); } void reg_access_switch_slot_name_ext_pack(const struct reg_access_switch_slot_name_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 20; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 256, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->slot_ascii_name[i]); } } void reg_access_switch_slot_name_ext_unpack(struct reg_access_switch_slot_name_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 20; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 256, 1); ptr_struct->slot_ascii_name[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void reg_access_switch_slot_name_ext_print(const struct reg_access_switch_slot_name_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_slot_name_ext ========\n"); for (i = 0; i < 20; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_ascii_name_%03d : " UH_FMT "\n", i, ptr_struct->slot_ascii_name[i]); } } unsigned int reg_access_switch_slot_name_ext_size(void) { return REG_ACCESS_SWITCH_SLOT_NAME_EXT_SIZE; } void reg_access_switch_slot_name_ext_dump(const struct reg_access_switch_slot_name_ext *ptr_struct, FILE *fd) { reg_access_switch_slot_name_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mddq_data_auto_ext_pack(const union reg_access_switch_mddq_data_auto_ext *ptr_struct, u_int8_t *ptr_buff) { reg_access_switch_slot_name_ext_pack(&(ptr_struct->slot_name_ext), ptr_buff); } void reg_access_switch_mddq_data_auto_ext_unpack(union reg_access_switch_mddq_data_auto_ext *ptr_struct, const u_int8_t *ptr_buff) { reg_access_switch_slot_name_ext_unpack(&(ptr_struct->slot_name_ext), ptr_buff); } void reg_access_switch_mddq_data_auto_ext_print(const union reg_access_switch_mddq_data_auto_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mddq_data_auto_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_info_ext:\n"); reg_access_switch_slot_info_ext_print(&(ptr_struct->slot_info_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_info_ext:\n"); reg_access_switch_device_info_ext_print(&(ptr_struct->device_info_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_name_ext:\n"); reg_access_switch_slot_name_ext_print(&(ptr_struct->slot_name_ext), fd, indent_level + 1); } unsigned int reg_access_switch_mddq_data_auto_ext_size(void) { return REG_ACCESS_SWITCH_MDDQ_DATA_AUTO_EXT_SIZE; } void reg_access_switch_mddq_data_auto_ext_dump(const union reg_access_switch_mddq_data_auto_ext *ptr_struct, FILE *fd) { reg_access_switch_mddq_data_auto_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mddt_reg_payload_auto_ext_pack(const union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, u_int8_t *ptr_buff) { reg_access_switch_crspace_access_payload_ext_pack(&(ptr_struct->crspace_access_payload_ext), ptr_buff); } void reg_access_switch_mddt_reg_payload_auto_ext_unpack(union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, const u_int8_t *ptr_buff) { reg_access_switch_crspace_access_payload_ext_unpack(&(ptr_struct->crspace_access_payload_ext), ptr_buff); } void reg_access_switch_mddt_reg_payload_auto_ext_print(const union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mddt_reg_payload_auto_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "prm_register_payload_ext:\n"); reg_access_switch_prm_register_payload_ext_print(&(ptr_struct->prm_register_payload_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "command_payload_ext:\n"); reg_access_switch_command_payload_ext_print(&(ptr_struct->command_payload_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crspace_access_payload_ext:\n"); reg_access_switch_crspace_access_payload_ext_print(&(ptr_struct->crspace_access_payload_ext), fd, indent_level + 1); } unsigned int reg_access_switch_mddt_reg_payload_auto_ext_size(void) { return REG_ACCESS_SWITCH_MDDT_REG_PAYLOAD_AUTO_EXT_SIZE; } void reg_access_switch_mddt_reg_payload_auto_ext_dump(const union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, FILE *fd) { reg_access_switch_mddt_reg_payload_auto_ext_print(ptr_struct, fd, 0); } void reg_access_switch_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 8, *ptr_struct); } void reg_access_switch_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; *ptr_struct = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void reg_access_switch_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_uint64 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uint64 : " U64H_FMT "\n", (u_int64_t) *ptr_struct); } unsigned int reg_access_switch_uint64_size(void) { return REG_ACCESS_SWITCH_UINT64_SIZE; } void reg_access_switch_uint64_dump(const u_int64_t *ptr_struct, FILE *fd) { reg_access_switch_uint64_print(ptr_struct, fd, 0); } void reg_access_switch_icam_reg_ext_pack(const struct reg_access_switch_icam_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->access_reg_group); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, 192, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->infr_access_reg_cap_mask[i]); } } void reg_access_switch_icam_reg_ext_unpack(struct reg_access_switch_icam_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->access_reg_group = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, 192, 1); ptr_struct->infr_access_reg_cap_mask[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_icam_reg_ext_print(const struct reg_access_switch_icam_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_icam_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "access_reg_group : " UH_FMT "\n", ptr_struct->access_reg_group); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "infr_access_reg_cap_mask_%03d : " U32H_FMT "\n", i, ptr_struct->infr_access_reg_cap_mask[i]); } } unsigned int reg_access_switch_icam_reg_ext_size(void) { return REG_ACCESS_SWITCH_ICAM_REG_EXT_SIZE; } void reg_access_switch_icam_reg_ext_dump(const struct reg_access_switch_icam_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_icam_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_icsr_ext_pack(const struct reg_access_switch_icsr_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->base_address); offset = 87; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->num_reads); for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 8320, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data[i]); } } void reg_access_switch_icsr_ext_unpack(struct reg_access_switch_icsr_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 32; ptr_struct->base_address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 87; ptr_struct->num_reads = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 8320, 1); ptr_struct->data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_icsr_ext_print(const struct reg_access_switch_icsr_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_icsr_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "base_address : " U32H_FMT "\n", ptr_struct->base_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_reads : " UH_FMT "\n", ptr_struct->num_reads); for (i = 0; i < 256; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " U32H_FMT "\n", i, ptr_struct->data[i]); } } unsigned int reg_access_switch_icsr_ext_size(void) { return REG_ACCESS_SWITCH_ICSR_EXT_SIZE; } void reg_access_switch_icsr_ext_dump(const struct reg_access_switch_icsr_ext *ptr_struct, FILE *fd) { reg_access_switch_icsr_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mddq_ext_pack(const struct reg_access_switch_mddq_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->query_type); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sie); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->request_message_sequence); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->response_message_sequence); offset = 88; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->query_index); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->data_valid); offset = 128; switch (ptr_struct->query_type) { case 0x1: offset = 128; reg_access_switch_slot_info_ext_pack(&(ptr_struct->data.slot_info_ext), ptr_buff + offset / 8); break; case 0x2: offset = 128; reg_access_switch_device_info_ext_pack(&(ptr_struct->data.device_info_ext), ptr_buff + offset / 8); break; case 0x3: offset = 128; reg_access_switch_slot_name_ext_pack(&(ptr_struct->data.slot_name_ext), ptr_buff + offset / 8); break; default: break; } } void reg_access_switch_mddq_ext_unpack(struct reg_access_switch_mddq_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 8; ptr_struct->query_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->sie = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 56; ptr_struct->request_message_sequence = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 40; ptr_struct->response_message_sequence = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 88; ptr_struct->query_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->data_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 128; switch (ptr_struct->query_type) { case 0x1: offset = 128; reg_access_switch_slot_info_ext_unpack(&(ptr_struct->data.slot_info_ext), ptr_buff + offset / 8); break; case 0x2: offset = 128; reg_access_switch_device_info_ext_unpack(&(ptr_struct->data.device_info_ext), ptr_buff + offset / 8); break; case 0x3: offset = 128; reg_access_switch_slot_name_ext_unpack(&(ptr_struct->data.slot_name_ext), ptr_buff + offset / 8); break; default: break; } } void reg_access_switch_mddq_ext_print(const struct reg_access_switch_mddq_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mddq_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "query_type : %s (" UH_FMT ")\n", (ptr_struct->query_type == 0 ? ("Reserved") : ((ptr_struct->query_type == 1 ? ("slot_info") : ((ptr_struct->query_type == 2 ? ("device_info") : ((ptr_struct->query_type == 3 ? ("slot_name") : ("unknown")))))))), ptr_struct->query_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sie : " UH_FMT "\n", ptr_struct->sie); adb2c_add_indentation(fd, indent_level); fprintf(fd, "request_message_sequence : " UH_FMT "\n", ptr_struct->request_message_sequence); adb2c_add_indentation(fd, indent_level); fprintf(fd, "response_message_sequence : " UH_FMT "\n", ptr_struct->response_message_sequence); adb2c_add_indentation(fd, indent_level); fprintf(fd, "query_index : " UH_FMT "\n", ptr_struct->query_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_valid : " UH_FMT "\n", ptr_struct->data_valid); switch (ptr_struct->query_type) { case 0x1: adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_info_ext:\n"); reg_access_switch_slot_info_ext_print(&(ptr_struct->data.slot_info_ext), fd, indent_level + 1); break; case 0x2: adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_info_ext:\n"); reg_access_switch_device_info_ext_print(&(ptr_struct->data.device_info_ext), fd, indent_level + 1); break; case 0x3: adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_name_ext:\n"); reg_access_switch_slot_name_ext_print(&(ptr_struct->data.slot_name_ext), fd, indent_level + 1); break; default: break; } } unsigned int reg_access_switch_mddq_ext_size(void) { return REG_ACCESS_SWITCH_MDDQ_EXT_SIZE; } void reg_access_switch_mddq_ext_dump(const struct reg_access_switch_mddq_ext *ptr_struct, FILE *fd) { reg_access_switch_mddq_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mddt_reg_ext_pack(const struct reg_access_switch_mddt_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->device_index); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->type); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->write_size); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->read_size); offset = 96; switch (ptr_struct->type) { case 0x0: offset = 96; reg_access_switch_prm_register_payload_ext_pack(&(ptr_struct->payload.prm_register_payload_ext), ptr_buff + offset / 8); break; case 0x1: offset = 96; reg_access_switch_command_payload_ext_pack(&(ptr_struct->payload.command_payload_ext), ptr_buff + offset / 8); break; case 0x2: offset = 96; reg_access_switch_crspace_access_payload_ext_pack(&(ptr_struct->payload.crspace_access_payload_ext), ptr_buff + offset / 8); break; default: break; } } void reg_access_switch_mddt_reg_ext_unpack(struct reg_access_switch_mddt_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->device_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 20; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 62; ptr_struct->type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 40; ptr_struct->write_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->read_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 96; switch (ptr_struct->type) { case 0x0: offset = 96; reg_access_switch_prm_register_payload_ext_unpack(&(ptr_struct->payload.prm_register_payload_ext), ptr_buff + offset / 8); break; case 0x1: offset = 96; reg_access_switch_command_payload_ext_unpack(&(ptr_struct->payload.command_payload_ext), ptr_buff + offset / 8); break; case 0x2: offset = 96; reg_access_switch_crspace_access_payload_ext_unpack(&(ptr_struct->payload.crspace_access_payload_ext), ptr_buff + offset / 8); break; default: break; } } void reg_access_switch_mddt_reg_ext_print(const struct reg_access_switch_mddt_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mddt_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index : " UH_FMT "\n", ptr_struct->device_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : %s (" UH_FMT ")\n", (ptr_struct->type == 0 ? ("PRM_Register") : ((ptr_struct->type == 1 ? ("Command") : ((ptr_struct->type == 2 ? ("CrSpace_access") : ("unknown")))))), ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "write_size : " UH_FMT "\n", ptr_struct->write_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "read_size : " UH_FMT "\n", ptr_struct->read_size); switch (ptr_struct->type) { case 0x0: adb2c_add_indentation(fd, indent_level); fprintf(fd, "prm_register_payload_ext:\n"); reg_access_switch_prm_register_payload_ext_print(&(ptr_struct->payload.prm_register_payload_ext), fd, indent_level + 1); break; case 0x1: adb2c_add_indentation(fd, indent_level); fprintf(fd, "command_payload_ext:\n"); reg_access_switch_command_payload_ext_print(&(ptr_struct->payload.command_payload_ext), fd, indent_level + 1); break; case 0x2: adb2c_add_indentation(fd, indent_level); fprintf(fd, "crspace_access_payload_ext:\n"); reg_access_switch_crspace_access_payload_ext_print(&(ptr_struct->payload.crspace_access_payload_ext), fd, indent_level + 1); break; default: break; } } unsigned int reg_access_switch_mddt_reg_ext_size(void) { return REG_ACCESS_SWITCH_MDDT_REG_EXT_SIZE; } void reg_access_switch_mddt_reg_ext_dump(const struct reg_access_switch_mddt_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_mddt_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mdsr_reg_ext_pack(const struct reg_access_switch_mdsr_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->status); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->additional_info); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_of_token); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->end); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->time_left); } void reg_access_switch_mdsr_reg_ext_unpack(struct reg_access_switch_mdsr_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 18; ptr_struct->additional_info = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 0; ptr_struct->type_of_token = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->end = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->time_left = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_switch_mdsr_reg_ext_print(const struct reg_access_switch_mdsr_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mdsr_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status : " UH_FMT "\n", ptr_struct->status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "additional_info : " UH_FMT "\n", ptr_struct->additional_info); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_of_token : " UH_FMT "\n", ptr_struct->type_of_token); adb2c_add_indentation(fd, indent_level); fprintf(fd, "end : " UH_FMT "\n", ptr_struct->end); adb2c_add_indentation(fd, indent_level); fprintf(fd, "time_left : " U32H_FMT "\n", ptr_struct->time_left); } unsigned int reg_access_switch_mdsr_reg_ext_size(void) { return REG_ACCESS_SWITCH_MDSR_REG_EXT_SIZE; } void reg_access_switch_mdsr_reg_ext_dump(const struct reg_access_switch_mdsr_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_mdsr_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mfmc_reg_ext_pack(const struct reg_access_switch_mfmc_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->wrp_block_count); offset = 46; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->block_size); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wrp_en); offset = 90; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->sub_sector_protect_size); offset = 82; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->sector_protect_size); offset = 135; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->quad_en); offset = 220; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->dummy_clock_cycles); } void reg_access_switch_mfmc_reg_ext_unpack(struct reg_access_switch_mfmc_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 56; ptr_struct->wrp_block_count = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 46; ptr_struct->block_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 32; ptr_struct->wrp_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 90; ptr_struct->sub_sector_protect_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 82; ptr_struct->sector_protect_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 135; ptr_struct->quad_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 220; ptr_struct->dummy_clock_cycles = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); } void reg_access_switch_mfmc_reg_ext_print(const struct reg_access_switch_mfmc_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mfmc_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wrp_block_count : " UH_FMT "\n", ptr_struct->wrp_block_count); adb2c_add_indentation(fd, indent_level); fprintf(fd, "block_size : " UH_FMT "\n", ptr_struct->block_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wrp_en : " UH_FMT "\n", ptr_struct->wrp_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sub_sector_protect_size : " UH_FMT "\n", ptr_struct->sub_sector_protect_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sector_protect_size : " UH_FMT "\n", ptr_struct->sector_protect_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "quad_en : " UH_FMT "\n", ptr_struct->quad_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dummy_clock_cycles : " UH_FMT "\n", ptr_struct->dummy_clock_cycles); } unsigned int reg_access_switch_mfmc_reg_ext_size(void) { return REG_ACCESS_SWITCH_MFMC_REG_EXT_SIZE; } void reg_access_switch_mfmc_reg_ext_dump(const struct reg_access_switch_mfmc_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_mfmc_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mkdc_reg_ext_pack(const struct reg_access_switch_mkdc_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->error_code); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->session_id); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->current_keep_alive_counter); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->next_keep_alive_counter); } void reg_access_switch_mkdc_reg_ext_unpack(struct reg_access_switch_mkdc_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->error_code = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 0; ptr_struct->session_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->current_keep_alive_counter = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->next_keep_alive_counter = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_switch_mkdc_reg_ext_print(const struct reg_access_switch_mkdc_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mkdc_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "error_code : %s (" UH_FMT ")\n", (ptr_struct->error_code == 0 ? ("OK") : ((ptr_struct->error_code == 1 ? ("BAD_SESSION_ID") : ((ptr_struct->error_code == 2 ? ("BAD_KEEP_ALIVE_COUNTER") : ((ptr_struct->error_code == 3 ? ("BAD_SOURCE_ADDRESS") : ((ptr_struct->error_code == 4 ? ("SESSION_TIMEOUT") : ("unknown")))))))))), ptr_struct->error_code); adb2c_add_indentation(fd, indent_level); fprintf(fd, "session_id : " UH_FMT "\n", ptr_struct->session_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "current_keep_alive_counter : " U32H_FMT "\n", ptr_struct->current_keep_alive_counter); adb2c_add_indentation(fd, indent_level); fprintf(fd, "next_keep_alive_counter : " U32H_FMT "\n", ptr_struct->next_keep_alive_counter); } unsigned int reg_access_switch_mkdc_reg_ext_size(void) { return REG_ACCESS_SWITCH_MKDC_REG_EXT_SIZE; } void reg_access_switch_mkdc_reg_ext_dump(const struct reg_access_switch_mkdc_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_mkdc_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mrsr_ext_pack(const struct reg_access_switch_mrsr_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->command); } void reg_access_switch_mrsr_ext_unpack(struct reg_access_switch_mrsr_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->command = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); } void reg_access_switch_mrsr_ext_print(const struct reg_access_switch_mrsr_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mrsr_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "command : " UH_FMT "\n", ptr_struct->command); } unsigned int reg_access_switch_mrsr_ext_size(void) { return REG_ACCESS_SWITCH_MRSR_EXT_SIZE; } void reg_access_switch_mrsr_ext_dump(const struct reg_access_switch_mrsr_ext *ptr_struct, FILE *fd) { reg_access_switch_mrsr_ext_print(ptr_struct, fd, 0); } void reg_access_switch_msgi_ext_pack(const struct reg_access_switch_msgi_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 6; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 1024, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->serial_number[i]); } for (i = 0; i < 5; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 1024, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->part_number[i]); } offset = 448; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->revision); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(512, 32, i, 1024, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->product_name[i]); } } void reg_access_switch_msgi_ext_unpack(struct reg_access_switch_msgi_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 6; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 1024, 1); ptr_struct->serial_number[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 5; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 1024, 1); ptr_struct->part_number[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 448; ptr_struct->revision = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(512, 32, i, 1024, 1); ptr_struct->product_name[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_msgi_ext_print(const struct reg_access_switch_msgi_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_msgi_ext ========\n"); for (i = 0; i < 6; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "serial_number_%03d : " U32H_FMT "\n", i, ptr_struct->serial_number[i]); } for (i = 0; i < 5; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "part_number_%03d : " U32H_FMT "\n", i, ptr_struct->part_number[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "revision : " U32H_FMT "\n", ptr_struct->revision); for (i = 0; i < 16; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "product_name_%03d : " U32H_FMT "\n", i, ptr_struct->product_name[i]); } } unsigned int reg_access_switch_msgi_ext_size(void) { return REG_ACCESS_SWITCH_MSGI_EXT_SIZE; } void reg_access_switch_msgi_ext_dump(const struct reg_access_switch_msgi_ext *ptr_struct, FILE *fd) { reg_access_switch_msgi_ext_print(ptr_struct, fd, 0); } void reg_access_switch_mtcq_reg_ext_pack(const struct reg_access_switch_mtcq_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->device_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->status); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->token_opcode); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 896, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->base_mac); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(224, 32, i, 896, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->psid[i]); } offset = 376; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->fw_version_39_32); offset = 384; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->fw_version_31_0); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(416, 32, i, 896, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->source_address[i]); } offset = 560; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->session_id); offset = 544; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->challenge_version); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(576, 32, i, 896, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->challenge[i]); } } void reg_access_switch_mtcq_reg_ext_unpack(struct reg_access_switch_mtcq_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 20; ptr_struct->device_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 8; ptr_struct->status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->token_opcode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 896, 1); ptr_struct->keypair_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 160; ptr_struct->base_mac = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(224, 32, i, 896, 1); ptr_struct->psid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 376; ptr_struct->fw_version_39_32 = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 384; ptr_struct->fw_version_31_0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(416, 32, i, 896, 1); ptr_struct->source_address[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 560; ptr_struct->session_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 544; ptr_struct->challenge_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(576, 32, i, 896, 1); ptr_struct->challenge[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_switch_mtcq_reg_ext_print(const struct reg_access_switch_mtcq_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_mtcq_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index : " UH_FMT "\n", ptr_struct->device_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status : " UH_FMT "\n", ptr_struct->status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "token_opcode : " UH_FMT "\n", ptr_struct->token_opcode); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->keypair_uuid[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "base_mac : " U64H_FMT "\n", ptr_struct->base_mac); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "psid_%03d : " U32H_FMT "\n", i, ptr_struct->psid[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_version_39_32 : " UH_FMT "\n", ptr_struct->fw_version_39_32); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_version_31_0 : " U32H_FMT "\n", ptr_struct->fw_version_31_0); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "source_address_%03d : " U32H_FMT "\n", i, ptr_struct->source_address[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "session_id : " UH_FMT "\n", ptr_struct->session_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "challenge_version : " UH_FMT "\n", ptr_struct->challenge_version); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "challenge_%03d : " U32H_FMT "\n", i, ptr_struct->challenge[i]); } } unsigned int reg_access_switch_mtcq_reg_ext_size(void) { return REG_ACCESS_SWITCH_MTCQ_REG_EXT_SIZE; } void reg_access_switch_mtcq_reg_ext_dump(const struct reg_access_switch_mtcq_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_mtcq_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_plib_reg_ext_pack(const struct reg_access_switch_plib_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->ib_port); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->lp_msb); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->local_port); offset = 60; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->split_num); } void reg_access_switch_plib_reg_ext_unpack(struct reg_access_switch_plib_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 22; ptr_struct->ib_port = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 18; ptr_struct->lp_msb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 8; ptr_struct->local_port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 60; ptr_struct->split_num = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); } void reg_access_switch_plib_reg_ext_print(const struct reg_access_switch_plib_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_plib_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_port : " UH_FMT "\n", ptr_struct->ib_port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lp_msb : " UH_FMT "\n", ptr_struct->lp_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "local_port : " UH_FMT "\n", ptr_struct->local_port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "split_num : " UH_FMT "\n", ptr_struct->split_num); } unsigned int reg_access_switch_plib_reg_ext_size(void) { return REG_ACCESS_SWITCH_PLIB_REG_EXT_SIZE; } void reg_access_switch_plib_reg_ext_dump(const struct reg_access_switch_plib_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_plib_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_pmaos_reg_ext_pack(const struct reg_access_switch_pmaos_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->oper_status); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->admin_status); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->module); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rst); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->e); offset = 51; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->error_type); offset = 44; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->operational_notification); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rev_incompatible); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secondary); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ee); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ase); } void reg_access_switch_pmaos_reg_ext_unpack(struct reg_access_switch_pmaos_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->oper_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 20; ptr_struct->admin_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 8; ptr_struct->module = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 4; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 0; ptr_struct->rst = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 62; ptr_struct->e = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 51; ptr_struct->error_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 44; ptr_struct->operational_notification = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 35; ptr_struct->rev_incompatible = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->secondary = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->ee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->ase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_switch_pmaos_reg_ext_print(const struct reg_access_switch_pmaos_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_pmaos_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "oper_status : %s (" UH_FMT ")\n", (ptr_struct->oper_status == 0 ? ("initializing") : ((ptr_struct->oper_status == 1 ? ("plugged_enabled") : ((ptr_struct->oper_status == 2 ? ("unplugged") : ((ptr_struct->oper_status == 3 ? ("module_plugged_with_error") : ((ptr_struct->oper_status == 5 ? ("unknown") : ("unknown")))))))))), ptr_struct->oper_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "admin_status : %s (" UH_FMT ")\n", (ptr_struct->admin_status == 1 ? ("enabled") : ((ptr_struct->admin_status == 2 ? ("disabled_by_configuration") : ((ptr_struct->admin_status == 3 ? ("enabled_once") : ("unknown")))))), ptr_struct->admin_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module : " UH_FMT "\n", ptr_struct->module); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rst : " UH_FMT "\n", ptr_struct->rst); adb2c_add_indentation(fd, indent_level); fprintf(fd, "e : %s (" UH_FMT ")\n", (ptr_struct->e == 0 ? ("Do_not_generate_event") : ((ptr_struct->e == 1 ? ("Generate_Event") : ((ptr_struct->e == 2 ? ("Generate_Single_Event") : ("unknown")))))), ptr_struct->e); adb2c_add_indentation(fd, indent_level); fprintf(fd, "error_type : %s (" UH_FMT ")\n", (ptr_struct->error_type == 0 ? ("Power_Budget_Exceeded") : ((ptr_struct->error_type == 1 ? ("Long_Range_for_non_MLNX_cable_or_module") : ((ptr_struct->error_type == 2 ? ("Bus_stuck") : ((ptr_struct->error_type == 3 ? ("bad_or_unsupported_EEPROM") : ((ptr_struct->error_type == 4 ? ("Enforce_part_number_list") : ((ptr_struct->error_type == 5 ? ("unsupported_cable") : ((ptr_struct->error_type == 6 ? ("High_Temperature") : ((ptr_struct->error_type == 7 ? ("bad_cable") : ((ptr_struct->error_type == 8 ? ("PMD_type_is_not_enabled") : ((ptr_struct->error_type == 12 ? ("pcie_system_power_slot_Exceeded") : ("unknown")))))))))))))))))))), ptr_struct->error_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operational_notification : " UH_FMT "\n", ptr_struct->operational_notification); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rev_incompatible : " UH_FMT "\n", ptr_struct->rev_incompatible); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secondary : " UH_FMT "\n", ptr_struct->secondary); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ee : " UH_FMT "\n", ptr_struct->ee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ase : " UH_FMT "\n", ptr_struct->ase); } unsigned int reg_access_switch_pmaos_reg_ext_size(void) { return REG_ACCESS_SWITCH_PMAOS_REG_EXT_SIZE; } void reg_access_switch_pmaos_reg_ext_dump(const struct reg_access_switch_pmaos_reg_ext *ptr_struct, FILE *fd) { reg_access_switch_pmaos_reg_ext_print(ptr_struct, fd, 0); } void reg_access_switch_reg_access_switch_Nodes_pack(const union reg_access_switch_reg_access_switch_Nodes *ptr_struct, u_int8_t *ptr_buff) { reg_access_switch_icsr_ext_pack(&(ptr_struct->icsr_ext), ptr_buff); } void reg_access_switch_reg_access_switch_Nodes_unpack(union reg_access_switch_reg_access_switch_Nodes *ptr_struct, const u_int8_t *ptr_buff) { reg_access_switch_icsr_ext_unpack(&(ptr_struct->icsr_ext), ptr_buff); } void reg_access_switch_reg_access_switch_Nodes_print(const union reg_access_switch_reg_access_switch_Nodes *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_switch_reg_access_switch_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mddt_reg_ext:\n"); reg_access_switch_mddt_reg_ext_print(&(ptr_struct->mddt_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icam_reg_ext:\n"); reg_access_switch_icam_reg_ext_print(&(ptr_struct->icam_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mrsr_ext:\n"); reg_access_switch_mrsr_ext_print(&(ptr_struct->mrsr_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pmaos_reg_ext:\n"); reg_access_switch_pmaos_reg_ext_print(&(ptr_struct->pmaos_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "plib_reg_ext:\n"); reg_access_switch_plib_reg_ext_print(&(ptr_struct->plib_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mdsr_reg_ext:\n"); reg_access_switch_mdsr_reg_ext_print(&(ptr_struct->mdsr_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mkdc_reg_ext:\n"); reg_access_switch_mkdc_reg_ext_print(&(ptr_struct->mkdc_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfmc_reg_ext:\n"); reg_access_switch_mfmc_reg_ext_print(&(ptr_struct->mfmc_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtcq_reg_ext:\n"); reg_access_switch_mtcq_reg_ext_print(&(ptr_struct->mtcq_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mddq_ext:\n"); reg_access_switch_mddq_ext_print(&(ptr_struct->mddq_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "msgi_ext:\n"); reg_access_switch_msgi_ext_print(&(ptr_struct->msgi_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icsr_ext:\n"); reg_access_switch_icsr_ext_print(&(ptr_struct->icsr_ext), fd, indent_level + 1); } unsigned int reg_access_switch_reg_access_switch_Nodes_size(void) { return REG_ACCESS_SWITCH_REG_ACCESS_SWITCH_NODES_SIZE; } void reg_access_switch_reg_access_switch_Nodes_dump(const union reg_access_switch_reg_access_switch_Nodes *ptr_struct, FILE *fd) { reg_access_switch_reg_access_switch_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/register_access_open_layouts.c0000644000175000017500000002762314522641732024747 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2018-05-12 08:07:49" *** by: *** > [REDACTED]/adb2pack.py --input *adb/register_access_open/register_access_open.adb --file-prefix register_access_open --prefix register_access_ ***/ #include "register_access_open_layouts.h" void register_access_mfba_pack(const struct register_access_mfba* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->p); offset = 55; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->size); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->address); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(96, 32, i, 2144, 0); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data[i]); } } void register_access_mfba_unpack(struct register_access_mfba* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 23; ptr_struct->p = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 55; ptr_struct->size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 64; ptr_struct->address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(96, 32, i, 2144, 0); ptr_struct->data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void register_access_mfba_print(const struct register_access_mfba* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_mfba ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "p : " UH_FMT "\n", ptr_struct->p); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " U32H_FMT "\n", ptr_struct->address); for (i = 0; i < 64; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " U32H_FMT "\n", i, ptr_struct->data[i]); } } unsigned int register_access_mfba_size(void) { return REGISTER_ACCESS_MFBA_SIZE; } void register_access_mfba_dump(const struct register_access_mfba* ptr_struct, FILE* fd) { register_access_mfba_print(ptr_struct, fd, 0); } void register_access_mfbe_pack(const struct register_access_mfbe* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->p); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_64kb_erase); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_32kb_erase); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->address); } void register_access_mfbe_unpack(struct register_access_mfbe* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 23; ptr_struct->p = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->bulk_64kb_erase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->bulk_32kb_erase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void register_access_mfbe_print(const struct register_access_mfbe* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_mfbe ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "p : " UH_FMT "\n", ptr_struct->p); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_64kb_erase : " UH_FMT "\n", ptr_struct->bulk_64kb_erase); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_32kb_erase : " UH_FMT "\n", ptr_struct->bulk_32kb_erase); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " U32H_FMT "\n", ptr_struct->address); } unsigned int register_access_mfbe_size(void) { return REGISTER_ACCESS_MFBE_SIZE; } void register_access_mfbe_dump(const struct register_access_mfbe* ptr_struct, FILE* fd) { register_access_mfbe_print(ptr_struct, fd, 0); } void register_access_mfpa_pack(const struct register_access_mfpa* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->p); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->boot_address); offset = 156; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->flash_num); offset = 130; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_64kb_erase_en); offset = 129; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_32kb_erase_en); offset = 168; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->jedec_id); offset = 214; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->sector_size); offset = 200; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->block_allignment); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->capability_mask); } void register_access_mfpa_unpack(struct register_access_mfpa* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 23; ptr_struct->p = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->boot_address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 156; ptr_struct->flash_num = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 130; ptr_struct->bulk_64kb_erase_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 129; ptr_struct->bulk_32kb_erase_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 168; ptr_struct->jedec_id = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 214; ptr_struct->sector_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 200; ptr_struct->block_allignment = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 224; ptr_struct->capability_mask = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void register_access_mfpa_print(const struct register_access_mfpa* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_mfpa ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "p : " UH_FMT "\n", ptr_struct->p); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_address : " U32H_FMT "\n", ptr_struct->boot_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_num : " UH_FMT "\n", ptr_struct->flash_num); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_64kb_erase_en : " UH_FMT "\n", ptr_struct->bulk_64kb_erase_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_32kb_erase_en : " UH_FMT "\n", ptr_struct->bulk_32kb_erase_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "jedec_id : " UH_FMT "\n", ptr_struct->jedec_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sector_size : " UH_FMT "\n", ptr_struct->sector_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "block_allignment : " UH_FMT "\n", ptr_struct->block_allignment); adb2c_add_indentation(fd, indent_level); fprintf(fd, "capability_mask : " U32H_FMT "\n", ptr_struct->capability_mask); } unsigned int register_access_mfpa_size(void) { return REGISTER_ACCESS_MFPA_SIZE; } void register_access_mfpa_dump(const struct register_access_mfpa* ptr_struct, FILE* fd) { register_access_mfpa_print(ptr_struct, fd, 0); } void register_access_register_access_open_Nodes_pack(const union register_access_register_access_open_Nodes* ptr_struct, u_int8_t* ptr_buff) { register_access_mfba_pack(&(ptr_struct->mfba), ptr_buff); } void register_access_register_access_open_Nodes_unpack(union register_access_register_access_open_Nodes* ptr_struct, const u_int8_t* ptr_buff) { register_access_mfba_unpack(&(ptr_struct->mfba), ptr_buff); } void register_access_register_access_open_Nodes_print(const union register_access_register_access_open_Nodes* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_register_access_open_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfbe:\n"); register_access_mfbe_print(&(ptr_struct->mfbe), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfpa:\n"); register_access_mfpa_print(&(ptr_struct->mfpa), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfba:\n"); register_access_mfba_print(&(ptr_struct->mfba), fd, indent_level + 1); } unsigned int register_access_register_access_open_Nodes_size(void) { return REGISTER_ACCESS_REGISTER_ACCESS_OPEN_NODES_SIZE; } void register_access_register_access_open_Nodes_dump(const union register_access_register_access_open_Nodes* ptr_struct, FILE* fd) { register_access_register_access_open_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/cx4fw_layouts.c0000644000175000017500000003351714522641732021613 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-01-24 14:29:07" *** by: *** > [REDACTED]/adb2pack.py --input adb/cx4fw/cx4fw.adb --file-prefix cx4fw --prefix cx4fw_ --no-adb-utils ***/ #include "cx4fw_layouts.h" void cx4fw_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 8, *ptr_struct); } void cx4fw_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; *ptr_struct = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void cx4fw_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_uint64 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uint64 : " U64H_FMT "\n", (u_int64_t) *ptr_struct); } unsigned int cx4fw_uint64_size(void) { return CX4FW_UINT64_SIZE; } void cx4fw_uint64_dump(const u_int64_t *ptr_struct, FILE *fd) { cx4fw_uint64_print(ptr_struct, fd, 0); } void cx4fw_uid_entry_pack(const struct cx4fw_uid_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_allocated); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->step); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->uid); } void cx4fw_uid_entry_unpack(struct cx4fw_uid_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->num_allocated = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->step = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->uid = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void cx4fw_uid_entry_print(const struct cx4fw_uid_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_uid_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_allocated : " UH_FMT "\n", ptr_struct->num_allocated); adb2c_add_indentation(fd, indent_level); fprintf(fd, "step : " UH_FMT "\n", ptr_struct->step); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uid : " U64H_FMT "\n", ptr_struct->uid); } unsigned int cx4fw_uid_entry_size(void) { return CX4FW_UID_ENTRY_SIZE; } void cx4fw_uid_entry_dump(const struct cx4fw_uid_entry *ptr_struct, FILE *fd) { cx4fw_uid_entry_print(ptr_struct, fd, 0); } void cx4fw_guids_pack(const struct cx4fw_guids *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; cx4fw_uid_entry_pack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 128; cx4fw_uid_entry_pack(&(ptr_struct->macs), ptr_buff + offset / 8); } void cx4fw_guids_unpack(struct cx4fw_guids *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; cx4fw_uid_entry_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 128; cx4fw_uid_entry_unpack(&(ptr_struct->macs), ptr_buff + offset / 8); } void cx4fw_guids_print(const struct cx4fw_guids *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_guids ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cx4fw_uid_entry_print(&(ptr_struct->guids), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "macs:\n"); cx4fw_uid_entry_print(&(ptr_struct->macs), fd, indent_level + 1); } unsigned int cx4fw_guids_size(void) { return CX4FW_GUIDS_SIZE; } void cx4fw_guids_dump(const struct cx4fw_guids *ptr_struct, FILE *fd) { cx4fw_guids_print(ptr_struct, fd, 0); } void cx4fw_operation_key_pack(const struct cx4fw_operation_key *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->key_modifier); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->key); } void cx4fw_operation_key_unpack(struct cx4fw_operation_key *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->key_modifier = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->key = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void cx4fw_operation_key_print(const struct cx4fw_operation_key *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_operation_key ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key_modifier : " UH_FMT "\n", ptr_struct->key_modifier); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key : " U64H_FMT "\n", ptr_struct->key); } unsigned int cx4fw_operation_key_size(void) { return CX4FW_OPERATION_KEY_SIZE; } void cx4fw_operation_key_dump(const struct cx4fw_operation_key *ptr_struct, FILE *fd) { cx4fw_operation_key_print(ptr_struct, fd, 0); } void cx4fw_device_info_pack(const struct cx4fw_device_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature0); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature1); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature2); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature3); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 143; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->major_version); offset = 256; cx4fw_guids_pack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 880; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vsd_vendor_id); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(920, 8, i, 4096, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vsd[i]); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2816, 128, i, 4096, 1); cx4fw_operation_key_pack(&(ptr_struct->keys[i]), ptr_buff + offset / 8); } } void cx4fw_device_info_unpack(struct cx4fw_device_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->signature0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->signature1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->signature2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->signature3 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 152; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 143; ptr_struct->major_version = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 256; cx4fw_guids_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 880; ptr_struct->vsd_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(920, 8, i, 4096, 1); ptr_struct->vsd[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->vsd[208] = '\0'; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2816, 128, i, 4096, 1); cx4fw_operation_key_unpack(&(ptr_struct->keys[i]), ptr_buff + offset / 8); } } void cx4fw_device_info_print(const struct cx4fw_device_info *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_device_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature0 : " U32H_FMT "\n", ptr_struct->signature0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature1 : " U32H_FMT "\n", ptr_struct->signature1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature2 : " U32H_FMT "\n", ptr_struct->signature2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature3 : " U32H_FMT "\n", ptr_struct->signature3); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cx4fw_guids_print(&(ptr_struct->guids), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vsd_vendor_id : " UH_FMT "\n", ptr_struct->vsd_vendor_id); fprintf(fd, "vsd : \"%s\"\n", ptr_struct->vsd); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keys_%03d:\n", i); cx4fw_operation_key_print(&(ptr_struct->keys[i]), fd, indent_level + 1); } } unsigned int cx4fw_device_info_size(void) { return CX4FW_DEVICE_INFO_SIZE; } void cx4fw_device_info_dump(const struct cx4fw_device_info *ptr_struct, FILE *fd) { cx4fw_device_info_print(ptr_struct, fd, 0); } void cx4fw_mfg_info_pack(const struct cx4fw_mfg_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 255; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->guids_override_en); offset = 232; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 256; cx4fw_guids_pack(&(ptr_struct->guids), ptr_buff + offset / 8); } void cx4fw_mfg_info_unpack(struct cx4fw_mfg_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 255; ptr_struct->guids_override_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 232; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 224; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 256; cx4fw_guids_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); } void cx4fw_mfg_info_print(const struct cx4fw_mfg_info *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_mfg_info ========\n"); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids_override_en : " UH_FMT "\n", ptr_struct->guids_override_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cx4fw_guids_print(&(ptr_struct->guids), fd, indent_level + 1); } unsigned int cx4fw_mfg_info_size(void) { return CX4FW_MFG_INFO_SIZE; } void cx4fw_mfg_info_dump(const struct cx4fw_mfg_info *ptr_struct, FILE *fd) { cx4fw_mfg_info_print(ptr_struct, fd, 0); } void cx4fw_cx4fw_Nodes_pack(const union cx4fw_cx4fw_Nodes *ptr_struct, u_int8_t *ptr_buff) { cx4fw_device_info_pack(&(ptr_struct->device_info), ptr_buff); } void cx4fw_cx4fw_Nodes_unpack(union cx4fw_cx4fw_Nodes *ptr_struct, const u_int8_t *ptr_buff) { cx4fw_device_info_unpack(&(ptr_struct->device_info), ptr_buff); } void cx4fw_cx4fw_Nodes_print(const union cx4fw_cx4fw_Nodes *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== cx4fw_cx4fw_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfg_info:\n"); cx4fw_mfg_info_print(&(ptr_struct->mfg_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_info:\n"); cx4fw_device_info_print(&(ptr_struct->device_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); cx4fw_guids_print(&(ptr_struct->guids), fd, indent_level + 1); } unsigned int cx4fw_cx4fw_Nodes_size(void) { return CX4FW_CX4FW_NODES_SIZE; } void cx4fw_cx4fw_Nodes_dump(const union cx4fw_cx4fw_Nodes *ptr_struct, FILE *fd) { cx4fw_cx4fw_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/image_info_layouts.c0000644000175000017500000010060114522641732022642 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2018-06-25 13:22:56" *** by: *** > [REDACTED]/adb2pack.py --input adb/connectx4/connectx4.adb *--file-prefix connectx4 --prefix connectx4_ ***/ #include "image_info_layouts.h" void connectx4_FW_VERSION_pack(const struct connectx4_FW_VERSION* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Hour); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Minutes); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Seconds); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Day); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Month); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->Year); } void connectx4_FW_VERSION_unpack(struct connectx4_FW_VERSION* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->Hour = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 72; ptr_struct->Minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->Seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 120; ptr_struct->Day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->Month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 96; ptr_struct->Year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectx4_FW_VERSION_print(const struct connectx4_FW_VERSION* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_FW_VERSION ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Hour : " UH_FMT "\n", ptr_struct->Hour); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Minutes : " UH_FMT "\n", ptr_struct->Minutes); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Seconds : " UH_FMT "\n", ptr_struct->Seconds); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Day : " UH_FMT "\n", ptr_struct->Day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Month : " UH_FMT "\n", ptr_struct->Month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Year : " UH_FMT "\n", ptr_struct->Year); } unsigned int connectx4_FW_VERSION_size(void) { return CONNECTX4_FW_VERSION_SIZE; } void connectx4_FW_VERSION_dump(const struct connectx4_FW_VERSION* ptr_struct, FILE* fd) { connectx4_FW_VERSION_print(ptr_struct, fd, 0); } void connectx4_module_version_pack(const struct connectx4_module_version* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->branch); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->minor); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->major); } void connectx4_module_version_unpack(struct connectx4_module_version* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->branch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 12; ptr_struct->minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 0; ptr_struct->major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); } void connectx4_module_version_print(const struct connectx4_module_version* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_module_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "branch : " UH_FMT "\n", ptr_struct->branch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); } unsigned int connectx4_module_version_size(void) { return CONNECTX4_MODULE_VERSION_SIZE; } void connectx4_module_version_dump(const struct connectx4_module_version* ptr_struct, FILE* fd) { connectx4_module_version_print(ptr_struct, fd, 0); } void connectx4_TRIPPLE_VERSION_pack(const struct connectx4_TRIPPLE_VERSION* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); } void connectx4_TRIPPLE_VERSION_unpack(struct connectx4_TRIPPLE_VERSION* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectx4_TRIPPLE_VERSION_print(const struct connectx4_TRIPPLE_VERSION* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_TRIPPLE_VERSION ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); } unsigned int connectx4_TRIPPLE_VERSION_size(void) { return CONNECTX4_TRIPPLE_VERSION_SIZE; } void connectx4_TRIPPLE_VERSION_dump(const struct connectx4_TRIPPLE_VERSION* ptr_struct, FILE* fd) { connectx4_TRIPPLE_VERSION_print(ptr_struct, fd, 0); } void connectx4_image_size_pack(const struct connectx4_image_size* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_step); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->run_from_any); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->max_size); } void connectx4_image_size_unpack(struct connectx4_image_size* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->log_step = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->run_from_any = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->max_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void connectx4_image_size_print(const struct connectx4_image_size* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_image_size ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_step : " UH_FMT "\n", ptr_struct->log_step); adb2c_add_indentation(fd, indent_level); fprintf(fd, "run_from_any : " UH_FMT "\n", ptr_struct->run_from_any); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_size : " U32H_FMT "\n", ptr_struct->max_size); } unsigned int connectx4_image_size_size(void) { return CONNECTX4_IMAGE_SIZE_SIZE; } void connectx4_image_size_dump(const struct connectx4_image_size* ptr_struct, FILE* fd) { connectx4_image_size_print(ptr_struct, fd, 0); } void connectx4_module_versions_pack(const struct connectx4_module_versions* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; connectx4_module_version_pack(&(ptr_struct->core), ptr_buff + offset / 8); offset = 32; connectx4_module_version_pack(&(ptr_struct->phy), ptr_buff + offset / 8); offset = 64; connectx4_module_version_pack(&(ptr_struct->kernel), ptr_buff + offset / 8); offset = 96; connectx4_module_version_pack(&(ptr_struct->iron_image), ptr_buff + offset / 8); offset = 128; connectx4_module_version_pack(&(ptr_struct->host_management), ptr_buff + offset / 8); offset = 160; connectx4_module_version_pack(&(ptr_struct->mad), ptr_buff + offset / 8); } void connectx4_module_versions_unpack(struct connectx4_module_versions* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; connectx4_module_version_unpack(&(ptr_struct->core), ptr_buff + offset / 8); offset = 32; connectx4_module_version_unpack(&(ptr_struct->phy), ptr_buff + offset / 8); offset = 64; connectx4_module_version_unpack(&(ptr_struct->kernel), ptr_buff + offset / 8); offset = 96; connectx4_module_version_unpack(&(ptr_struct->iron_image), ptr_buff + offset / 8); offset = 128; connectx4_module_version_unpack(&(ptr_struct->host_management), ptr_buff + offset / 8); offset = 160; connectx4_module_version_unpack(&(ptr_struct->mad), ptr_buff + offset / 8); } void connectx4_module_versions_print(const struct connectx4_module_versions* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_module_versions ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "core:\n"); connectx4_module_version_print(&(ptr_struct->core), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "phy:\n"); connectx4_module_version_print(&(ptr_struct->phy), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "kernel:\n"); connectx4_module_version_print(&(ptr_struct->kernel), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iron_image:\n"); connectx4_module_version_print(&(ptr_struct->iron_image), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host_management:\n"); connectx4_module_version_print(&(ptr_struct->host_management), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mad:\n"); connectx4_module_version_print(&(ptr_struct->mad), fd, indent_level + 1); } unsigned int connectx4_module_versions_size(void) { return CONNECTX4_MODULE_VERSIONS_SIZE; } void connectx4_module_versions_dump(const struct connectx4_module_versions* ptr_struct, FILE* fd) { connectx4_module_versions_print(ptr_struct, fd, 0); } void connectx4_image_info_pack(const struct connectx4_image_info* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 25; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->long_keys); offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug_fw_tokens_supported); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mcc_en); offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_vendor_nvconfig_files); offset = 21; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_mlnx_nvconfig_files); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->frc_supported); offset = 19; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cs_tokens_supported); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug_fw); offset = 17; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_fw); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secure_fw); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 32; connectx4_FW_VERSION_pack(&(ptr_struct->FW_VERSION), ptr_buff + offset / 8); offset = 160; connectx4_TRIPPLE_VERSION_pack(&(ptr_struct->mic_version), ptr_buff + offset / 8); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_vendor_id); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_device_id); offset = 272; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_sub_vendor_id); offset = 256; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_subsystem_id); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 432; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vsd_vendor_id); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(472, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vsd[i]); } offset = 2112; connectx4_image_size_pack(&(ptr_struct->image_size), ptr_buff + offset / 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2240, 32, i, 8192, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->supported_hw_id[i]); } offset = 2368; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ini_file_num); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(3608, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prod_ver[i]); } for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->description[i]); } offset = 6144; connectx4_module_versions_pack(&(ptr_struct->module_versions), ptr_buff + offset / 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->name[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prs_name[i]); } } void connectx4_image_info_unpack(struct connectx4_image_info* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 25; ptr_struct->long_keys = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 24; ptr_struct->debug_fw_tokens_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 23; ptr_struct->mcc_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 22; ptr_struct->signed_vendor_nvconfig_files = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 21; ptr_struct->signed_mlnx_nvconfig_files = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 20; ptr_struct->frc_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 19; ptr_struct->cs_tokens_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 18; ptr_struct->debug_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 17; ptr_struct->signed_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->secure_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 8; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; connectx4_FW_VERSION_unpack(&(ptr_struct->FW_VERSION), ptr_buff + offset / 8); offset = 160; connectx4_TRIPPLE_VERSION_unpack(&(ptr_struct->mic_version), ptr_buff + offset / 8); offset = 240; ptr_struct->pci_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 224; ptr_struct->pci_device_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 272; ptr_struct->pci_sub_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 256; ptr_struct->pci_subsystem_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 432; ptr_struct->vsd_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(472, 8, i, 8192, 1); ptr_struct->vsd[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->vsd[208] = '\0'; offset = 2112; connectx4_image_size_unpack(&(ptr_struct->image_size), ptr_buff + offset / 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2240, 32, i, 8192, 1); ptr_struct->supported_hw_id[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 2368; ptr_struct->ini_file_num = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(3608, 8, i, 8192, 1); ptr_struct->prod_ver[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prod_ver[16] = '\0'; for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); ptr_struct->description[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->description[256] = '\0'; offset = 6144; connectx4_module_versions_unpack(&(ptr_struct->module_versions), ptr_buff + offset / 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); ptr_struct->name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->name[64] = '\0'; for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); ptr_struct->prs_name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prs_name[128] = '\0'; } void connectx4_image_info_print(const struct connectx4_image_info* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_image_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "long_keys : " UH_FMT "\n", ptr_struct->long_keys); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_fw_tokens_supported : " UH_FMT "\n", ptr_struct->debug_fw_tokens_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcc_en : " UH_FMT "\n", ptr_struct->mcc_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_vendor_nvconfig_files : " UH_FMT "\n", ptr_struct->signed_vendor_nvconfig_files); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_mlnx_nvconfig_files : " UH_FMT "\n", ptr_struct->signed_mlnx_nvconfig_files); adb2c_add_indentation(fd, indent_level); fprintf(fd, "frc_supported : " UH_FMT "\n", ptr_struct->frc_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cs_tokens_supported : " UH_FMT "\n", ptr_struct->cs_tokens_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_fw : " UH_FMT "\n", ptr_struct->debug_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_fw : " UH_FMT "\n", ptr_struct->signed_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secure_fw : " UH_FMT "\n", ptr_struct->secure_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FW_VERSION:\n"); connectx4_FW_VERSION_print(&(ptr_struct->FW_VERSION), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mic_version:\n"); connectx4_TRIPPLE_VERSION_print(&(ptr_struct->mic_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_vendor_id : " UH_FMT "\n", ptr_struct->pci_vendor_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_device_id : " UH_FMT "\n", ptr_struct->pci_device_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_sub_vendor_id : " UH_FMT "\n", ptr_struct->pci_sub_vendor_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_subsystem_id : " UH_FMT "\n", ptr_struct->pci_subsystem_id); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vsd_vendor_id : " UH_FMT "\n", ptr_struct->vsd_vendor_id); fprintf(fd, "vsd : \"%s\"\n", ptr_struct->vsd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_size:\n"); connectx4_image_size_print(&(ptr_struct->image_size), fd, indent_level + 1); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "supported_hw_id_%03d : " U32H_FMT "\n", i, ptr_struct->supported_hw_id[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini_file_num : " U32H_FMT "\n", ptr_struct->ini_file_num); fprintf(fd, "prod_ver : \"%s\"\n", ptr_struct->prod_ver); fprintf(fd, "description : \"%s\"\n", ptr_struct->description); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module_versions:\n"); connectx4_module_versions_print(&(ptr_struct->module_versions), fd, indent_level + 1); fprintf(fd, "name : \"%s\"\n", ptr_struct->name); fprintf(fd, "prs_name : \"%s\"\n", ptr_struct->prs_name); } unsigned int connectx4_image_info_size(void) { return CONNECTX4_IMAGE_INFO_SIZE; } void connectx4_image_info_dump(const struct connectx4_image_info* ptr_struct, FILE* fd) { connectx4_image_info_print(ptr_struct, fd, 0); } void connectx4_itoc_entry_pack(const struct connectx4_itoc_entry* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 22, (u_int32_t)ptr_struct->size); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 30, (u_int32_t)ptr_struct->param0); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cache_line_crc); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->zipped_image); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->param1); offset = 161; adb2c_push_bits_to_buff(ptr_buff, offset, 29, (u_int32_t)ptr_struct->flash_addr); offset = 160; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->relative_addr); offset = 208; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->section_crc); offset = 207; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->no_crc); offset = 206; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->device_data); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->itoc_entry_crc); } void connectx4_itoc_entry_unpack(struct connectx4_itoc_entry* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->size = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 22); offset = 0; ptr_struct->type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 34; ptr_struct->param0 = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 30); offset = 33; ptr_struct->cache_line_crc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->zipped_image = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->param1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 161; ptr_struct->flash_addr = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 29); offset = 160; ptr_struct->relative_addr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 208; ptr_struct->section_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 207; ptr_struct->no_crc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 206; ptr_struct->device_data = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 240; ptr_struct->itoc_entry_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectx4_itoc_entry_print(const struct connectx4_itoc_entry* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_itoc_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : " UH_FMT "\n", ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param0 : " UH_FMT "\n", ptr_struct->param0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cache_line_crc : " UH_FMT "\n", ptr_struct->cache_line_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "zipped_image : " UH_FMT "\n", ptr_struct->zipped_image); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param1 : " U32H_FMT "\n", ptr_struct->param1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_addr : " UH_FMT "\n", ptr_struct->flash_addr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "relative_addr : " UH_FMT "\n", ptr_struct->relative_addr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "section_crc : " UH_FMT "\n", ptr_struct->section_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "no_crc : " UH_FMT "\n", ptr_struct->no_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_data : " UH_FMT "\n", ptr_struct->device_data); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry_crc : " UH_FMT "\n", ptr_struct->itoc_entry_crc); } unsigned int connectx4_itoc_entry_size(void) { return CONNECTX4_ITOC_ENTRY_SIZE; } void connectx4_itoc_entry_dump(const struct connectx4_itoc_entry* ptr_struct, FILE* fd) { connectx4_itoc_entry_print(ptr_struct, fd, 0); } void connectx4_itoc_header_pack(const struct connectx4_itoc_header* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature0); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature1); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature2); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature3); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->flash_layout_version); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->itoc_entry_crc); } void connectx4_itoc_header_unpack(struct connectx4_itoc_header* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->signature0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->signature1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->signature2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->signature3 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 152; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 128; ptr_struct->flash_layout_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 240; ptr_struct->itoc_entry_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectx4_itoc_header_print(const struct connectx4_itoc_header* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== connectx4_itoc_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature0 : " U32H_FMT "\n", ptr_struct->signature0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature1 : " U32H_FMT "\n", ptr_struct->signature1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature2 : " U32H_FMT "\n", ptr_struct->signature2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature3 : " U32H_FMT "\n", ptr_struct->signature3); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_layout_version : " UH_FMT "\n", ptr_struct->flash_layout_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry_crc : " UH_FMT "\n", ptr_struct->itoc_entry_crc); } unsigned int connectx4_itoc_header_size(void) { return CONNECTX4_ITOC_HEADER_SIZE; } void connectx4_itoc_header_dump(const struct connectx4_itoc_header* ptr_struct, FILE* fd) { connectx4_itoc_header_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/adb/0000755000175000017500000000000014522641740017350 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/adb/Makefile.am0000755000175000017500000000300614522641732021407 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = prm mstflint-4.26.0/tools_layouts/adb/prm/0000755000175000017500000000000014522641740020146 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/adb/prm/hca/0000755000175000017500000000000014522641741020702 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/adb/prm/hca/ext/0000755000175000017500000000000014522641741021502 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/adb/prm/hca/ext/register_access_table.adb0000644000175000017500000200401214522641732026465 0ustar tzafrirctzafrirc mstflint-4.26.0/tools_layouts/adb/prm/hca/ext/Makefile.am0000755000175000017500000000311214522641732023536 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in docdir = $(pkgdatadir)/prm_dbs/hca/ext dist_doc_DATA = register_access_table.adb mstflint-4.26.0/tools_layouts/adb/prm/hca/ext/Makefile.in0000644000175000017500000004013114522641741023546 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts/adb/prm/hca/ext DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_doc_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(docdir)" DATA = $(dist_doc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = $(pkgdatadir)/prm_dbs/hca/ext dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_doc_DATA = register_access_table.adb all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/adb/prm/hca/ext/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/adb/prm/hca/ext/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_docDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_docDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_layouts/adb/prm/hca/Makefile.am0000755000175000017500000000300614522641732022740 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = ext mstflint-4.26.0/tools_layouts/adb/prm/hca/Makefile.in0000644000175000017500000005011514522641741022751 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts/adb/prm/hca DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = ext all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/adb/prm/hca/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/adb/prm/hca/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_layouts/adb/prm/Makefile.am0000755000175000017500000000301514522641732022205 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = hca switch mstflint-4.26.0/tools_layouts/adb/prm/switch/0000755000175000017500000000000014522641741021450 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/adb/prm/switch/ext/0000755000175000017500000000000014522641741022250 5ustar tzafrirctzafrircmstflint-4.26.0/tools_layouts/adb/prm/switch/ext/register_access_table.adb0000644000175000017500000501263714522641732027252 0ustar tzafrirctzafrirc mstflint-4.26.0/tools_layouts/adb/prm/switch/ext/Makefile.am0000755000175000017500000000300214522641732024302 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- docdir = $(pkgdatadir)/prm_dbs/switch/ext dist_doc_DATA = register_access_table.adb mstflint-4.26.0/tools_layouts/adb/prm/switch/ext/Makefile.in0000644000175000017500000004003414522641741024316 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts/adb/prm/switch/ext DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_doc_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(docdir)" DATA = $(dist_doc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = $(pkgdatadir)/prm_dbs/switch/ext dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_doc_DATA = register_access_table.adb all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/adb/prm/switch/ext/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/adb/prm/switch/ext/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_docDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_docDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_layouts/adb/prm/switch/Makefile.am0000755000175000017500000000300714522641732023507 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = ext mstflint-4.26.0/tools_layouts/adb/prm/switch/Makefile.in0000644000175000017500000005012714522641741023522 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts/adb/prm/switch DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = ext all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/adb/prm/switch/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/adb/prm/switch/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_layouts/adb/prm/Makefile.in0000644000175000017500000005011014522641740022210 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts/adb/prm DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = hca switch all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/adb/prm/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/adb/prm/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_layouts/adb/Makefile.in0000644000175000017500000005006514522641740021423 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts/adb DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = prm all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/adb/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/adb/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_layouts/reg_access_hca_layouts.c0000644000175000017500000072531014522641732023470 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "reg_access_hca_layouts.h" void reg_access_hca_configuration_item_type_class_file_ext_pack(const struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->parameter_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_file_ext_unpack(struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->parameter_index = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_file_ext_print(const struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_file_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_file_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_FILE_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_file_ext_dump(const struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_file_ext_print(ptr_struct, fd, 0); } void reg_access_hca_configuration_item_type_class_global_ext_pack(const struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->parameter_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_global_ext_unpack(struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->parameter_index = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_global_ext_print(const struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_global_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_global_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_GLOBAL_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_global_ext_dump(const struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_global_ext_print(ptr_struct, fd, 0); } void reg_access_hca_configuration_item_type_class_host_ext_pack(const struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 18, (u_int32_t)ptr_struct->parameter_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_host_ext_unpack(struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 14; ptr_struct->parameter_index = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 18); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_host_ext_print(const struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_host_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_host_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_HOST_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_host_ext_dump(const struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_host_ext_print(ptr_struct, fd, 0); } void reg_access_hca_configuration_item_type_class_log_ext_pack(const struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->parameter_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_log_ext_unpack(struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->parameter_index = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_log_ext_print(const struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_log_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_log_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_LOG_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_log_ext_dump(const struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_log_ext_print(ptr_struct, fd, 0); } void reg_access_hca_configuration_item_type_class_module_ext_pack(const struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 14, (u_int32_t)ptr_struct->parameter_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->module_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_module_ext_unpack(struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 18; ptr_struct->parameter_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 14); offset = 8; ptr_struct->module_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_module_ext_print(const struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_module_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module_index : " UH_FMT "\n", ptr_struct->module_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_module_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_MODULE_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_module_ext_dump(const struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_module_ext_print(ptr_struct, fd, 0); } void reg_access_hca_configuration_item_type_class_per_host_pf_ext_pack(const struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->parameter_index); offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->pci_bus_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->pf_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_per_host_pf_ext_unpack(struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 22; ptr_struct->parameter_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 14; ptr_struct->pci_bus_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->pf_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_per_host_pf_ext_print(const struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_per_host_pf_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_bus_index : " UH_FMT "\n", ptr_struct->pci_bus_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pf_index : " UH_FMT "\n", ptr_struct->pf_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_per_host_pf_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_PER_HOST_PF_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_per_host_pf_ext_dump(const struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_per_host_pf_ext_print(ptr_struct, fd, 0); } void reg_access_hca_configuration_item_type_class_physical_port_ext_pack(const struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->parameter_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->port); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void reg_access_hca_configuration_item_type_class_physical_port_ext_unpack(struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->parameter_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_configuration_item_type_class_physical_port_ext_print(const struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_configuration_item_type_class_physical_port_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "port : " UH_FMT "\n", ptr_struct->port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int reg_access_hca_configuration_item_type_class_physical_port_ext_size(void) { return REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_PHYSICAL_PORT_EXT_SIZE; } void reg_access_hca_configuration_item_type_class_physical_port_ext_dump(const struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, FILE *fd) { reg_access_hca_configuration_item_type_class_physical_port_ext_print(ptr_struct, fd, 0); } void reg_access_hca_date_time_layout_ext_pack(const struct reg_access_hca_date_time_layout_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->hours); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minutes); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->seconds); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->day); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->month); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->year); } void reg_access_hca_date_time_layout_ext_unpack(struct reg_access_hca_date_time_layout_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->hours = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 56; ptr_struct->day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void reg_access_hca_date_time_layout_ext_print(const struct reg_access_hca_date_time_layout_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_date_time_layout_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hours : " UH_FMT "\n", ptr_struct->hours); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minutes : " UH_FMT "\n", ptr_struct->minutes); adb2c_add_indentation(fd, indent_level); fprintf(fd, "seconds : " UH_FMT "\n", ptr_struct->seconds); adb2c_add_indentation(fd, indent_level); fprintf(fd, "day : " UH_FMT "\n", ptr_struct->day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "month : " UH_FMT "\n", ptr_struct->month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "year : " UH_FMT "\n", ptr_struct->year); } unsigned int reg_access_hca_date_time_layout_ext_size(void) { return REG_ACCESS_HCA_DATE_TIME_LAYOUT_EXT_SIZE; } void reg_access_hca_date_time_layout_ext_dump(const struct reg_access_hca_date_time_layout_ext *ptr_struct, FILE *fd) { reg_access_hca_date_time_layout_ext_print(ptr_struct, fd, 0); } void reg_access_hca_config_item_type_auto_ext_pack(const union reg_access_hca_config_item_type_auto_ext *ptr_struct, u_int8_t *ptr_buff) { reg_access_hca_configuration_item_type_class_module_ext_pack(&(ptr_struct->configuration_item_type_class_module_ext), ptr_buff); } void reg_access_hca_config_item_type_auto_ext_unpack(union reg_access_hca_config_item_type_auto_ext *ptr_struct, const u_int8_t *ptr_buff) { reg_access_hca_configuration_item_type_class_module_ext_unpack(&(ptr_struct->configuration_item_type_class_module_ext), ptr_buff); } void reg_access_hca_config_item_type_auto_ext_print(const union reg_access_hca_config_item_type_auto_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_config_item_type_auto_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_global_ext:\n"); reg_access_hca_configuration_item_type_class_global_ext_print(&(ptr_struct->configuration_item_type_class_global_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_physical_port_ext:\n"); reg_access_hca_configuration_item_type_class_physical_port_ext_print(&(ptr_struct->configuration_item_type_class_physical_port_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_per_host_pf_ext:\n"); reg_access_hca_configuration_item_type_class_per_host_pf_ext_print(&(ptr_struct->configuration_item_type_class_per_host_pf_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_log_ext:\n"); reg_access_hca_configuration_item_type_class_log_ext_print(&(ptr_struct->configuration_item_type_class_log_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_file_ext:\n"); reg_access_hca_configuration_item_type_class_file_ext_print(&(ptr_struct->configuration_item_type_class_file_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_host_ext:\n"); reg_access_hca_configuration_item_type_class_host_ext_print(&(ptr_struct->configuration_item_type_class_host_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_type_class_module_ext:\n"); reg_access_hca_configuration_item_type_class_module_ext_print(&(ptr_struct->configuration_item_type_class_module_ext), fd, indent_level + 1); } unsigned int reg_access_hca_config_item_type_auto_ext_size(void) { return REG_ACCESS_HCA_CONFIG_ITEM_TYPE_AUTO_EXT_SIZE; } void reg_access_hca_config_item_type_auto_ext_dump(const union reg_access_hca_config_item_type_auto_ext *ptr_struct, FILE *fd) { reg_access_hca_config_item_type_auto_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_activation_method_ext_pack(const struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->all_hosts_sync); offset = 30; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->auto_activate); offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pending_fw_reset); offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pending_server_reboot); offset = 27; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pending_server_dc_power_cycle); offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pending_server_ac_power_cycle); offset = 25; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->self_activation); } void reg_access_hca_mcqi_activation_method_ext_unpack(struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; ptr_struct->all_hosts_sync = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 30; ptr_struct->auto_activate = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 29; ptr_struct->pending_fw_reset = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 28; ptr_struct->pending_server_reboot = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 27; ptr_struct->pending_server_dc_power_cycle = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 26; ptr_struct->pending_server_ac_power_cycle = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 25; ptr_struct->self_activation = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_mcqi_activation_method_ext_print(const struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_activation_method_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "all_hosts_sync : " UH_FMT "\n", ptr_struct->all_hosts_sync); adb2c_add_indentation(fd, indent_level); fprintf(fd, "auto_activate : " UH_FMT "\n", ptr_struct->auto_activate); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pending_fw_reset : " UH_FMT "\n", ptr_struct->pending_fw_reset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pending_server_reboot : " UH_FMT "\n", ptr_struct->pending_server_reboot); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pending_server_dc_power_cycle : " UH_FMT "\n", ptr_struct->pending_server_dc_power_cycle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pending_server_ac_power_cycle : " UH_FMT "\n", ptr_struct->pending_server_ac_power_cycle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "self_activation : " UH_FMT "\n", ptr_struct->self_activation); } unsigned int reg_access_hca_mcqi_activation_method_ext_size(void) { return REG_ACCESS_HCA_MCQI_ACTIVATION_METHOD_EXT_SIZE; } void reg_access_hca_mcqi_activation_method_ext_dump(const struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_activation_method_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_cap_ext_pack(const struct reg_access_hca_mcqi_cap_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->supported_info_bitmask); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->component_size); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->max_component_size); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->mcda_max_write_size); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->log_mcda_word_size); offset = 133; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->match_base_guid_mac); offset = 132; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->check_user_timestamp); offset = 131; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->match_psid); offset = 130; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->match_chip_id); offset = 129; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_updates_only); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rd_en); } void reg_access_hca_mcqi_cap_ext_unpack(struct reg_access_hca_mcqi_cap_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->supported_info_bitmask = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->component_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->max_component_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 112; ptr_struct->mcda_max_write_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 96; ptr_struct->log_mcda_word_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 133; ptr_struct->match_base_guid_mac = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 132; ptr_struct->check_user_timestamp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 131; ptr_struct->match_psid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 130; ptr_struct->match_chip_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 129; ptr_struct->signed_updates_only = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 128; ptr_struct->rd_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_mcqi_cap_ext_print(const struct reg_access_hca_mcqi_cap_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_cap_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "supported_info_bitmask : " U32H_FMT "\n", ptr_struct->supported_info_bitmask); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_size : " U32H_FMT "\n", ptr_struct->component_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_component_size : " U32H_FMT "\n", ptr_struct->max_component_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcda_max_write_size : " UH_FMT "\n", ptr_struct->mcda_max_write_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_mcda_word_size : " UH_FMT "\n", ptr_struct->log_mcda_word_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "match_base_guid_mac : " UH_FMT "\n", ptr_struct->match_base_guid_mac); adb2c_add_indentation(fd, indent_level); fprintf(fd, "check_user_timestamp : " UH_FMT "\n", ptr_struct->check_user_timestamp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "match_psid : " UH_FMT "\n", ptr_struct->match_psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "match_chip_id : " UH_FMT "\n", ptr_struct->match_chip_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_updates_only : " UH_FMT "\n", ptr_struct->signed_updates_only); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rd_en : " UH_FMT "\n", ptr_struct->rd_en); } unsigned int reg_access_hca_mcqi_cap_ext_size(void) { return REG_ACCESS_HCA_MCQI_CAP_EXT_SIZE; } void reg_access_hca_mcqi_cap_ext_dump(const struct reg_access_hca_mcqi_cap_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_cap_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_clock_source_properties_ext_pack(const struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->image_version_minor); offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->image_version_major); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vendor_id); } void reg_access_hca_mcqi_clock_source_properties_ext_unpack(struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->image_version_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 24; ptr_struct->image_version_major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 8; ptr_struct->vendor_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_mcqi_clock_source_properties_ext_print(const struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_clock_source_properties_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_version_minor : " UH_FMT "\n", ptr_struct->image_version_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_version_major : " UH_FMT "\n", ptr_struct->image_version_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vendor_id : " UH_FMT "\n", ptr_struct->vendor_id); } unsigned int reg_access_hca_mcqi_clock_source_properties_ext_size(void) { return REG_ACCESS_HCA_MCQI_CLOCK_SOURCE_PROPERTIES_EXT_SIZE; } void reg_access_hca_mcqi_clock_source_properties_ext_dump(const struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_clock_source_properties_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_linkx_properties_ext_pack(const struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->fw_image_status_bitmap); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->fw_image_info_bitmap); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->image_a_minor); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->image_a_major); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->image_a_subminor); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->image_b_minor); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->image_b_major); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->image_b_subminor); offset = 184; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->factory_image_minor); offset = 176; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->factory_image_major); offset = 208; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->factory_image_subminor); offset = 250; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->management_interface_protocol); offset = 242; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->activation_type); offset = 272; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vendor_sn); } void reg_access_hca_mcqi_linkx_properties_ext_unpack(struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->fw_image_status_bitmap = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->fw_image_info_bitmap = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 56; ptr_struct->image_a_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->image_a_major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 80; ptr_struct->image_a_subminor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 120; ptr_struct->image_b_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->image_b_major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 144; ptr_struct->image_b_subminor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 184; ptr_struct->factory_image_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 176; ptr_struct->factory_image_major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 208; ptr_struct->factory_image_subminor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 250; ptr_struct->management_interface_protocol = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 242; ptr_struct->activation_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 272; ptr_struct->vendor_sn = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void reg_access_hca_mcqi_linkx_properties_ext_print(const struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_linkx_properties_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_image_status_bitmap : " UH_FMT "\n", ptr_struct->fw_image_status_bitmap); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_image_info_bitmap : " UH_FMT "\n", ptr_struct->fw_image_info_bitmap); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_a_minor : " UH_FMT "\n", ptr_struct->image_a_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_a_major : " UH_FMT "\n", ptr_struct->image_a_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_a_subminor : " UH_FMT "\n", ptr_struct->image_a_subminor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_b_minor : " UH_FMT "\n", ptr_struct->image_b_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_b_major : " UH_FMT "\n", ptr_struct->image_b_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_b_subminor : " UH_FMT "\n", ptr_struct->image_b_subminor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "factory_image_minor : " UH_FMT "\n", ptr_struct->factory_image_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "factory_image_major : " UH_FMT "\n", ptr_struct->factory_image_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "factory_image_subminor : " UH_FMT "\n", ptr_struct->factory_image_subminor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "management_interface_protocol : " UH_FMT "\n", ptr_struct->management_interface_protocol); adb2c_add_indentation(fd, indent_level); fprintf(fd, "activation_type : " UH_FMT "\n", ptr_struct->activation_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vendor_sn : " UH_FMT "\n", ptr_struct->vendor_sn); } unsigned int reg_access_hca_mcqi_linkx_properties_ext_size(void) { return REG_ACCESS_HCA_MCQI_LINKX_PROPERTIES_EXT_SIZE; } void reg_access_hca_mcqi_linkx_properties_ext_dump(const struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_linkx_properties_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_version_ext_pack(const struct reg_access_hca_mcqi_version_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version_string_length); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->user_defined_time_valid); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->build_time_valid); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->version); offset = 64; reg_access_hca_date_time_layout_ext_pack(&(ptr_struct->build_time), ptr_buff + offset / 8); offset = 128; reg_access_hca_date_time_layout_ext_pack(&(ptr_struct->user_defined_time), ptr_buff + offset / 8); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->build_tool_version); for (i = 0; i < 92; ++i) { offset = adb2c_calc_array_field_address(280, 8, i, 992, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version_string[i]); } } void reg_access_hca_mcqi_version_ext_unpack(struct reg_access_hca_mcqi_version_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->version_string_length = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 3; ptr_struct->user_defined_time_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->build_time_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->version = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; reg_access_hca_date_time_layout_ext_unpack(&(ptr_struct->build_time), ptr_buff + offset / 8); offset = 128; reg_access_hca_date_time_layout_ext_unpack(&(ptr_struct->user_defined_time), ptr_buff + offset / 8); offset = 192; ptr_struct->build_tool_version = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 92; ++i) { offset = adb2c_calc_array_field_address(280, 8, i, 992, 1); ptr_struct->version_string[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void reg_access_hca_mcqi_version_ext_print(const struct reg_access_hca_mcqi_version_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_version_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_string_length : " UH_FMT "\n", ptr_struct->version_string_length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "user_defined_time_valid : " UH_FMT "\n", ptr_struct->user_defined_time_valid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "build_time_valid : " UH_FMT "\n", ptr_struct->build_time_valid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " U32H_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "build_time:\n"); reg_access_hca_date_time_layout_ext_print(&(ptr_struct->build_time), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "user_defined_time:\n"); reg_access_hca_date_time_layout_ext_print(&(ptr_struct->user_defined_time), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "build_tool_version : " U32H_FMT "\n", ptr_struct->build_tool_version); for (i = 0; i < 92; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_string_%03d : " UH_FMT "\n", i, ptr_struct->version_string[i]); } } unsigned int reg_access_hca_mcqi_version_ext_size(void) { return REG_ACCESS_HCA_MCQI_VERSION_EXT_SIZE; } void reg_access_hca_mcqi_version_ext_dump(const struct reg_access_hca_mcqi_version_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_version_ext_print(ptr_struct, fd, 0); } void reg_access_hca_rom_version_ext_pack(const struct reg_access_hca_rom_version_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->build); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major); } void reg_access_hca_rom_version_ext_unpack(struct reg_access_hca_rom_version_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->build = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_rom_version_ext_print(const struct reg_access_hca_rom_version_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_rom_version_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "build : " UH_FMT "\n", ptr_struct->build); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); } unsigned int reg_access_hca_rom_version_ext_size(void) { return REG_ACCESS_HCA_ROM_VERSION_EXT_SIZE; } void reg_access_hca_rom_version_ext_dump(const struct reg_access_hca_rom_version_ext *ptr_struct, FILE *fd) { reg_access_hca_rom_version_ext_print(ptr_struct, fd, 0); } void reg_access_hca_config_item_ext_pack(const struct reg_access_hca_config_item_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->length); offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->host_id_valid); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->version); offset = 11; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->writer_id); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->access_mode); offset = 7; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rd_en); offset = 6; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ovr_en); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->priority); offset = 32; reg_access_hca_config_item_type_auto_ext_pack(&(ptr_struct->type), ptr_buff + offset / 8); } void reg_access_hca_config_item_ext_unpack(struct reg_access_hca_config_item_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 23; ptr_struct->length = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 22; ptr_struct->host_id_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 11; ptr_struct->writer_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 8; ptr_struct->access_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 7; ptr_struct->rd_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 6; ptr_struct->ovr_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->priority = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 32; reg_access_hca_config_item_type_auto_ext_unpack(&(ptr_struct->type), ptr_buff + offset / 8); } void reg_access_hca_config_item_ext_print(const struct reg_access_hca_config_item_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_config_item_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "length : " UH_FMT "\n", ptr_struct->length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host_id_valid : " UH_FMT "\n", ptr_struct->host_id_valid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "writer_id : %s (" UH_FMT ")\n", (ptr_struct->writer_id == 0 ? ("UNSPECIFIED") : ((ptr_struct->writer_id == 1 ? ("CHASSIS_BMC") : ((ptr_struct->writer_id == 2 ? ("MAD") : ((ptr_struct->writer_id == 3 ? ("BMC") : ((ptr_struct->writer_id == 4 ? ("COMMAND_INTERFACE") : ((ptr_struct->writer_id == 5 ? ("ICMD") : ((ptr_struct->writer_id == 6 ? ("ICMD_UEFI_HII") : ((ptr_struct->writer_id == 7 ? ("ICMD_UEFI_CLP") : ((ptr_struct->writer_id == 8 ? ("ICMD_Flexboot") : ((ptr_struct->writer_id == 9 ? ("ICMD_mlxconfig") : ((ptr_struct->writer_id == 10 ? ("ICMD_USER1") : ((ptr_struct->writer_id == 11 ? ("ICMD_USER2") : ((ptr_struct->writer_id == 12 ? ("ICMD_MLXCONFIG_SET_RAW") : ((ptr_struct->writer_id == 13 ? ("ICMD_FLEXBOOT_CLP") : ((ptr_struct->writer_id == 16 ? ("BMC_APP1") : ((ptr_struct->writer_id == 17 ? ("BMC_APP2") : ((ptr_struct->writer_id == 18 ? ("BMP_APP3") : ((ptr_struct->writer_id == 31 ? ("OTHER") : ("unknown")))))))))))))))))))))))))))))))))))), ptr_struct->writer_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "access_mode : %s (" UH_FMT ")\n", (ptr_struct->access_mode == 0 ? ("NEXT") : ("unknown")), ptr_struct->access_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rd_en : " UH_FMT "\n", ptr_struct->rd_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ovr_en : " UH_FMT "\n", ptr_struct->ovr_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "priority : " UH_FMT "\n", ptr_struct->priority); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type:\n"); reg_access_hca_config_item_type_auto_ext_print(&(ptr_struct->type), fd, indent_level + 1); } unsigned int reg_access_hca_config_item_ext_size(void) { return REG_ACCESS_HCA_CONFIG_ITEM_EXT_SIZE; } void reg_access_hca_config_item_ext_dump(const struct reg_access_hca_config_item_ext *ptr_struct, FILE *fd) { reg_access_hca_config_item_ext_print(ptr_struct, fd, 0); } void reg_access_hca_default_timeout_ext_pack(const struct reg_access_hca_default_timeout_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 20, (u_int32_t)ptr_struct->to_value); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->to_multiplier); } void reg_access_hca_default_timeout_ext_unpack(struct reg_access_hca_default_timeout_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 12; ptr_struct->to_value = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 20); offset = 0; ptr_struct->to_multiplier = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); } void reg_access_hca_default_timeout_ext_print(const struct reg_access_hca_default_timeout_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_default_timeout_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "to_value : " UH_FMT "\n", ptr_struct->to_value); adb2c_add_indentation(fd, indent_level); fprintf(fd, "to_multiplier : " UH_FMT "\n", ptr_struct->to_multiplier); } unsigned int reg_access_hca_default_timeout_ext_size(void) { return REG_ACCESS_HCA_DEFAULT_TIMEOUT_EXT_SIZE; } void reg_access_hca_default_timeout_ext_dump(const struct reg_access_hca_default_timeout_ext *ptr_struct, FILE *fd) { reg_access_hca_default_timeout_ext_print(ptr_struct, fd, 0); } void reg_access_hca_diagnostic_cntr_layout_pack(const struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->counter_id); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sync); } void reg_access_hca_diagnostic_cntr_layout_unpack(struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->counter_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 0; ptr_struct->sync = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_diagnostic_cntr_layout_print(const struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_diagnostic_cntr_layout ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "counter_id : " UH_FMT "\n", ptr_struct->counter_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sync : " UH_FMT "\n", ptr_struct->sync); } unsigned int reg_access_hca_diagnostic_cntr_layout_size(void) { return REG_ACCESS_HCA_DIAGNOSTIC_CNTR_LAYOUT_SIZE; } void reg_access_hca_diagnostic_cntr_layout_dump(const struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd) { reg_access_hca_diagnostic_cntr_layout_print(ptr_struct, fd, 0); } void reg_access_hca_lane_2_module_mapping_ext_pack(const struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->module); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->tx_lane); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rx_lane); } void reg_access_hca_lane_2_module_mapping_ext_unpack(struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->module = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 20; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 12; ptr_struct->tx_lane = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 4; ptr_struct->rx_lane = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); } void reg_access_hca_lane_2_module_mapping_ext_print(const struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_lane_2_module_mapping_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module : " UH_FMT "\n", ptr_struct->module); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tx_lane : " UH_FMT "\n", ptr_struct->tx_lane); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rx_lane : " UH_FMT "\n", ptr_struct->rx_lane); } unsigned int reg_access_hca_lane_2_module_mapping_ext_size(void) { return REG_ACCESS_HCA_LANE_2_MODULE_MAPPING_EXT_SIZE; } void reg_access_hca_lane_2_module_mapping_ext_dump(const struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, FILE *fd) { reg_access_hca_lane_2_module_mapping_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_reg_data_auto_ext_pack(const union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, u_int8_t *ptr_buff) { reg_access_hca_mcqi_cap_ext_pack(&(ptr_struct->mcqi_cap_ext), ptr_buff); } void reg_access_hca_mcqi_reg_data_auto_ext_unpack(union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, const u_int8_t *ptr_buff) { reg_access_hca_mcqi_cap_ext_unpack(&(ptr_struct->mcqi_cap_ext), ptr_buff); } void reg_access_hca_mcqi_reg_data_auto_ext_print(const union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_reg_data_auto_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_cap_ext:\n"); reg_access_hca_mcqi_cap_ext_print(&(ptr_struct->mcqi_cap_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_version_ext:\n"); reg_access_hca_mcqi_version_ext_print(&(ptr_struct->mcqi_version_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_activation_method_ext:\n"); reg_access_hca_mcqi_activation_method_ext_print(&(ptr_struct->mcqi_activation_method_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_linkx_properties_ext:\n"); reg_access_hca_mcqi_linkx_properties_ext_print(&(ptr_struct->mcqi_linkx_properties_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_clock_source_properties_ext:\n"); reg_access_hca_mcqi_clock_source_properties_ext_print(&(ptr_struct->mcqi_clock_source_properties_ext), fd, indent_level + 1); } unsigned int reg_access_hca_mcqi_reg_data_auto_ext_size(void) { return REG_ACCESS_HCA_MCQI_REG_DATA_AUTO_EXT_SIZE; } void reg_access_hca_mcqi_reg_data_auto_ext_dump(const union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_reg_data_auto_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mgir_dev_info_ext_pack(const struct reg_access_hca_mgir_dev_info_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 224, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->dev_branch_tag[i]); } } void reg_access_hca_mgir_dev_info_ext_unpack(struct reg_access_hca_mgir_dev_info_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 224, 1); ptr_struct->dev_branch_tag[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void reg_access_hca_mgir_dev_info_ext_print(const struct reg_access_hca_mgir_dev_info_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mgir_dev_info_ext ========\n"); for (i = 0; i < 28; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "dev_branch_tag_%03d : " UH_FMT "\n", i, ptr_struct->dev_branch_tag[i]); } } unsigned int reg_access_hca_mgir_dev_info_ext_size(void) { return REG_ACCESS_HCA_MGIR_DEV_INFO_EXT_SIZE; } void reg_access_hca_mgir_dev_info_ext_dump(const struct reg_access_hca_mgir_dev_info_ext *ptr_struct, FILE *fd) { reg_access_hca_mgir_dev_info_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mgir_fw_info_ext_pack(const struct reg_access_hca_mgir_fw_info_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->sub_minor); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major); offset = 7; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secured); offset = 6; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_fw); offset = 5; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->dev); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->string_tlv); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->dev_sc); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->build_id); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->year); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->day); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->month); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hour); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(152, 8, i, 512, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 256; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ini_file_version); offset = 288; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->extended_major); offset = 320; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->extended_minor); offset = 352; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->extended_sub_minor); offset = 400; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->isfu_major); offset = 384; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->disabled_tiles_bitmap); offset = 446; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->life_cycle); offset = 445; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sec_boot); offset = 444; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->encryption); } void reg_access_hca_mgir_fw_info_ext_unpack(struct reg_access_hca_mgir_fw_info_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->sub_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 7; ptr_struct->secured = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 6; ptr_struct->signed_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 5; ptr_struct->debug = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 4; ptr_struct->dev = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 3; ptr_struct->string_tlv = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->dev_sc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->build_id = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 72; ptr_struct->day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->hour = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(152, 8, i, 512, 1); ptr_struct->psid[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } offset = 256; ptr_struct->ini_file_version = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 288; ptr_struct->extended_major = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 320; ptr_struct->extended_minor = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 352; ptr_struct->extended_sub_minor = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 400; ptr_struct->isfu_major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 384; ptr_struct->disabled_tiles_bitmap = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 446; ptr_struct->life_cycle = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 445; ptr_struct->sec_boot = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 444; ptr_struct->encryption = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_mgir_fw_info_ext_print(const struct reg_access_hca_mgir_fw_info_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mgir_fw_info_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sub_minor : " UH_FMT "\n", ptr_struct->sub_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secured : " UH_FMT "\n", ptr_struct->secured); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_fw : " UH_FMT "\n", ptr_struct->signed_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug : " UH_FMT "\n", ptr_struct->debug); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dev : " UH_FMT "\n", ptr_struct->dev); adb2c_add_indentation(fd, indent_level); fprintf(fd, "string_tlv : " UH_FMT "\n", ptr_struct->string_tlv); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dev_sc : " UH_FMT "\n", ptr_struct->dev_sc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "build_id : " U32H_FMT "\n", ptr_struct->build_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "year : " UH_FMT "\n", ptr_struct->year); adb2c_add_indentation(fd, indent_level); fprintf(fd, "day : " UH_FMT "\n", ptr_struct->day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "month : " UH_FMT "\n", ptr_struct->month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hour : " UH_FMT "\n", ptr_struct->hour); for (i = 0; i < 16; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "psid_%03d : " UH_FMT "\n", i, ptr_struct->psid[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini_file_version : " U32H_FMT "\n", ptr_struct->ini_file_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "extended_major : " U32H_FMT "\n", ptr_struct->extended_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "extended_minor : " U32H_FMT "\n", ptr_struct->extended_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "extended_sub_minor : " U32H_FMT "\n", ptr_struct->extended_sub_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "isfu_major : " UH_FMT "\n", ptr_struct->isfu_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "disabled_tiles_bitmap : " UH_FMT "\n", ptr_struct->disabled_tiles_bitmap); adb2c_add_indentation(fd, indent_level); fprintf(fd, "life_cycle : " UH_FMT "\n", ptr_struct->life_cycle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sec_boot : " UH_FMT "\n", ptr_struct->sec_boot); adb2c_add_indentation(fd, indent_level); fprintf(fd, "encryption : " UH_FMT "\n", ptr_struct->encryption); } unsigned int reg_access_hca_mgir_fw_info_ext_size(void) { return REG_ACCESS_HCA_MGIR_FW_INFO_EXT_SIZE; } void reg_access_hca_mgir_fw_info_ext_dump(const struct reg_access_hca_mgir_fw_info_ext *ptr_struct, FILE *fd) { reg_access_hca_mgir_fw_info_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mgir_hardware_info_ext_pack(const struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->device_id); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->device_hw_revision); offset = 59; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->pvs); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->technology); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_ports); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hw_dev_id); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->manufacturing_base_mac_47_32); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->manufacturing_base_mac_31_0); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->uptime); } void reg_access_hca_mgir_hardware_info_ext_unpack(struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->device_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 0; ptr_struct->device_hw_revision = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 59; ptr_struct->pvs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 48; ptr_struct->technology = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 40; ptr_struct->num_ports = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 80; ptr_struct->hw_dev_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 144; ptr_struct->manufacturing_base_mac_47_32 = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 160; ptr_struct->manufacturing_base_mac_31_0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 224; ptr_struct->uptime = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mgir_hardware_info_ext_print(const struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mgir_hardware_info_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_id : " UH_FMT "\n", ptr_struct->device_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_hw_revision : " UH_FMT "\n", ptr_struct->device_hw_revision); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pvs : " UH_FMT "\n", ptr_struct->pvs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "technology : " UH_FMT "\n", ptr_struct->technology); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_ports : " UH_FMT "\n", ptr_struct->num_ports); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_dev_id : " UH_FMT "\n", ptr_struct->hw_dev_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "manufacturing_base_mac_47_32 : " UH_FMT "\n", ptr_struct->manufacturing_base_mac_47_32); adb2c_add_indentation(fd, indent_level); fprintf(fd, "manufacturing_base_mac_31_0 : " U32H_FMT "\n", ptr_struct->manufacturing_base_mac_31_0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uptime : " U32H_FMT "\n", ptr_struct->uptime); } unsigned int reg_access_hca_mgir_hardware_info_ext_size(void) { return REG_ACCESS_HCA_MGIR_HARDWARE_INFO_EXT_SIZE; } void reg_access_hca_mgir_hardware_info_ext_dump(const struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, FILE *fd) { reg_access_hca_mgir_hardware_info_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mgir_sw_info_ext_pack(const struct reg_access_hca_mgir_sw_info_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->sub_minor); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major); offset = 60; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom3_type); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom3_arch); offset = 52; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom2_type); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom2_arch); offset = 44; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom1_type); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom1_arch); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom0_type); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->rom0_arch); offset = 64; reg_access_hca_rom_version_ext_pack(&(ptr_struct->rom0_version), ptr_buff + offset / 8); offset = 96; reg_access_hca_rom_version_ext_pack(&(ptr_struct->rom1_version), ptr_buff + offset / 8); offset = 128; reg_access_hca_rom_version_ext_pack(&(ptr_struct->rom2_version), ptr_buff + offset / 8); offset = 160; reg_access_hca_rom_version_ext_pack(&(ptr_struct->rom3_version), ptr_buff + offset / 8); } void reg_access_hca_mgir_sw_info_ext_unpack(struct reg_access_hca_mgir_sw_info_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->sub_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 60; ptr_struct->rom3_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 56; ptr_struct->rom3_arch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 52; ptr_struct->rom2_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->rom2_arch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 44; ptr_struct->rom1_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 40; ptr_struct->rom1_arch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 36; ptr_struct->rom0_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->rom0_arch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 64; reg_access_hca_rom_version_ext_unpack(&(ptr_struct->rom0_version), ptr_buff + offset / 8); offset = 96; reg_access_hca_rom_version_ext_unpack(&(ptr_struct->rom1_version), ptr_buff + offset / 8); offset = 128; reg_access_hca_rom_version_ext_unpack(&(ptr_struct->rom2_version), ptr_buff + offset / 8); offset = 160; reg_access_hca_rom_version_ext_unpack(&(ptr_struct->rom3_version), ptr_buff + offset / 8); } void reg_access_hca_mgir_sw_info_ext_print(const struct reg_access_hca_mgir_sw_info_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mgir_sw_info_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sub_minor : " UH_FMT "\n", ptr_struct->sub_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom3_type : " UH_FMT "\n", ptr_struct->rom3_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom3_arch : " UH_FMT "\n", ptr_struct->rom3_arch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom2_type : " UH_FMT "\n", ptr_struct->rom2_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom2_arch : " UH_FMT "\n", ptr_struct->rom2_arch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom1_type : " UH_FMT "\n", ptr_struct->rom1_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom1_arch : " UH_FMT "\n", ptr_struct->rom1_arch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom0_type : " UH_FMT "\n", ptr_struct->rom0_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom0_arch : " UH_FMT "\n", ptr_struct->rom0_arch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom0_version:\n"); reg_access_hca_rom_version_ext_print(&(ptr_struct->rom0_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom1_version:\n"); reg_access_hca_rom_version_ext_print(&(ptr_struct->rom1_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom2_version:\n"); reg_access_hca_rom_version_ext_print(&(ptr_struct->rom2_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rom3_version:\n"); reg_access_hca_rom_version_ext_print(&(ptr_struct->rom3_version), fd, indent_level + 1); } unsigned int reg_access_hca_mgir_sw_info_ext_size(void) { return REG_ACCESS_HCA_MGIR_SW_INFO_EXT_SIZE; } void reg_access_hca_mgir_sw_info_ext_dump(const struct reg_access_hca_mgir_sw_info_ext *ptr_struct, FILE *fd) { reg_access_hca_mgir_sw_info_ext_print(ptr_struct, fd, 0); } void reg_access_hca_string_db_parameters_ext_pack(const struct reg_access_hca_string_db_parameters_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->string_db_base_address); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->string_db_size); } void reg_access_hca_string_db_parameters_ext_unpack(struct reg_access_hca_string_db_parameters_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->string_db_base_address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 40; ptr_struct->string_db_size = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); } void reg_access_hca_string_db_parameters_ext_print(const struct reg_access_hca_string_db_parameters_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_string_db_parameters_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "string_db_base_address : " U32H_FMT "\n", ptr_struct->string_db_base_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "string_db_size : " UH_FMT "\n", ptr_struct->string_db_size); } unsigned int reg_access_hca_string_db_parameters_ext_size(void) { return REG_ACCESS_HCA_STRING_DB_PARAMETERS_EXT_SIZE; } void reg_access_hca_string_db_parameters_ext_dump(const struct reg_access_hca_string_db_parameters_ext *ptr_struct, FILE *fd) { reg_access_hca_string_db_parameters_ext_print(ptr_struct, fd, 0); } void reg_access_hca_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 8, *ptr_struct); } void reg_access_hca_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; *ptr_struct = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void reg_access_hca_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_uint64 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uint64 : " U64H_FMT "\n", (u_int64_t) *ptr_struct); } unsigned int reg_access_hca_uint64_size(void) { return REG_ACCESS_HCA_UINT64_SIZE; } void reg_access_hca_uint64_dump(const u_int64_t *ptr_struct, FILE *fd) { reg_access_hca_uint64_print(ptr_struct, fd, 0); } void reg_access_hca_debug_cap_pack(const struct reg_access_hca_debug_cap *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_max_samples); offset = 11; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->log_min_resource_dump_eq); offset = 9; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->resource_dump); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->log_cr_dump_to_mem_size); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->core_dump_qp); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->core_dump_general); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_min_sample_period); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->diag_counter_tracer_dump); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->health_mon_rx_activity); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->repetitive); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->single); } void reg_access_hca_debug_cap_unpack(struct reg_access_hca_debug_cap *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->log_max_samples = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 11; ptr_struct->log_min_resource_dump_eq = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 9; ptr_struct->resource_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 4; ptr_struct->log_cr_dump_to_mem_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 1; ptr_struct->core_dump_qp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->core_dump_general = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 56; ptr_struct->log_min_sample_period = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 35; ptr_struct->diag_counter_tracer_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->health_mon_rx_activity = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->repetitive = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->single = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_debug_cap_print(const struct reg_access_hca_debug_cap *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_debug_cap ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_max_samples : " UH_FMT "\n", ptr_struct->log_max_samples); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_min_resource_dump_eq : " UH_FMT "\n", ptr_struct->log_min_resource_dump_eq); adb2c_add_indentation(fd, indent_level); fprintf(fd, "resource_dump : " UH_FMT "\n", ptr_struct->resource_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_cr_dump_to_mem_size : " UH_FMT "\n", ptr_struct->log_cr_dump_to_mem_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "core_dump_qp : " UH_FMT "\n", ptr_struct->core_dump_qp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "core_dump_general : " UH_FMT "\n", ptr_struct->core_dump_general); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_min_sample_period : " UH_FMT "\n", ptr_struct->log_min_sample_period); adb2c_add_indentation(fd, indent_level); fprintf(fd, "diag_counter_tracer_dump : " UH_FMT "\n", ptr_struct->diag_counter_tracer_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "health_mon_rx_activity : " UH_FMT "\n", ptr_struct->health_mon_rx_activity); adb2c_add_indentation(fd, indent_level); fprintf(fd, "repetitive : " UH_FMT "\n", ptr_struct->repetitive); adb2c_add_indentation(fd, indent_level); fprintf(fd, "single : " UH_FMT "\n", ptr_struct->single); adb2c_add_indentation(fd, indent_level); fprintf(fd, "unlimited array subnode: (diagnostic_counter)\n"); } unsigned int reg_access_hca_debug_cap_size(void) { return REG_ACCESS_HCA_DEBUG_CAP_SIZE; } void reg_access_hca_debug_cap_dump(const struct reg_access_hca_debug_cap *ptr_struct, FILE *fd) { reg_access_hca_debug_cap_print(ptr_struct, fd, 0); } void reg_access_hca_dtor_reg_ext_pack(const struct reg_access_hca_dtor_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 32; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->PCIE_TOGGLE_TO), ptr_buff + offset / 8); offset = 160; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->HEALTH_POLL_TO), ptr_buff + offset / 8); offset = 192; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->FULL_CRDUMP_TO), ptr_buff + offset / 8); offset = 224; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->FW_RESET_TO), ptr_buff + offset / 8); offset = 256; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->FLUSH_ON_ERR_TO), ptr_buff + offset / 8); offset = 288; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->PCI_SYNC_UPDATE_TO), ptr_buff + offset / 8); offset = 320; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->TEAR_DOWN_TO), ptr_buff + offset / 8); offset = 352; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->FSM_REACTIVATE_TO), ptr_buff + offset / 8); offset = 384; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->RECLAIM_PAGES_TO), ptr_buff + offset / 8); offset = 416; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->RECLAIM_VFS_PAGES_TO), ptr_buff + offset / 8); offset = 448; reg_access_hca_default_timeout_ext_pack(&(ptr_struct->DRIVER_UNLOAD_AND_RESET_TO), ptr_buff + offset / 8); } void reg_access_hca_dtor_reg_ext_unpack(struct reg_access_hca_dtor_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 32; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->PCIE_TOGGLE_TO), ptr_buff + offset / 8); offset = 160; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->HEALTH_POLL_TO), ptr_buff + offset / 8); offset = 192; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->FULL_CRDUMP_TO), ptr_buff + offset / 8); offset = 224; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->FW_RESET_TO), ptr_buff + offset / 8); offset = 256; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->FLUSH_ON_ERR_TO), ptr_buff + offset / 8); offset = 288; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->PCI_SYNC_UPDATE_TO), ptr_buff + offset / 8); offset = 320; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->TEAR_DOWN_TO), ptr_buff + offset / 8); offset = 352; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->FSM_REACTIVATE_TO), ptr_buff + offset / 8); offset = 384; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->RECLAIM_PAGES_TO), ptr_buff + offset / 8); offset = 416; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->RECLAIM_VFS_PAGES_TO), ptr_buff + offset / 8); offset = 448; reg_access_hca_default_timeout_ext_unpack(&(ptr_struct->DRIVER_UNLOAD_AND_RESET_TO), ptr_buff + offset / 8); } void reg_access_hca_dtor_reg_ext_print(const struct reg_access_hca_dtor_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_dtor_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "PCIE_TOGGLE_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->PCIE_TOGGLE_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "HEALTH_POLL_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->HEALTH_POLL_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FULL_CRDUMP_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->FULL_CRDUMP_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FW_RESET_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->FW_RESET_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FLUSH_ON_ERR_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->FLUSH_ON_ERR_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "PCI_SYNC_UPDATE_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->PCI_SYNC_UPDATE_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "TEAR_DOWN_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->TEAR_DOWN_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FSM_REACTIVATE_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->FSM_REACTIVATE_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "RECLAIM_PAGES_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->RECLAIM_PAGES_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "RECLAIM_VFS_PAGES_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->RECLAIM_VFS_PAGES_TO), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "DRIVER_UNLOAD_AND_RESET_TO:\n"); reg_access_hca_default_timeout_ext_print(&(ptr_struct->DRIVER_UNLOAD_AND_RESET_TO), fd, indent_level + 1); } unsigned int reg_access_hca_dtor_reg_ext_size(void) { return REG_ACCESS_HCA_DTOR_REG_EXT_SIZE; } void reg_access_hca_dtor_reg_ext_dump(const struct reg_access_hca_dtor_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_dtor_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcam_reg_ext_pack(const struct reg_access_hca_mcam_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->access_reg_group); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->feature_group); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, 576, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mng_access_reg_cap_mask[i]); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(320, 32, i, 576, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mng_feature_cap_mask[i]); } } void reg_access_hca_mcam_reg_ext_unpack(struct reg_access_hca_mcam_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->access_reg_group = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->feature_group = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, 576, 1); ptr_struct->mng_access_reg_cap_mask[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(320, 32, i, 576, 1); ptr_struct->mng_feature_cap_mask[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_mcam_reg_ext_print(const struct reg_access_hca_mcam_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcam_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "access_reg_group : %s (" UH_FMT ")\n", (ptr_struct->access_reg_group == 0 ? ("First_128_REG_ID") : ((ptr_struct->access_reg_group == 1 ? ("Register_IDs_0x9080") : ((ptr_struct->access_reg_group == 2 ? ("Register_IDs_0x9100") : ("unknown")))))), ptr_struct->access_reg_group); adb2c_add_indentation(fd, indent_level); fprintf(fd, "feature_group : %s (" UH_FMT ")\n", (ptr_struct->feature_group == 0 ? ("enhanced_features") : ("unknown")), ptr_struct->feature_group); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "mng_access_reg_cap_mask_%03d : %s (" U32H_FMT ")\n", i, (ptr_struct->mng_access_reg_cap_mask[i] == 2 ? ("MFCR_0x9001") : ((ptr_struct->mng_access_reg_cap_mask[i] == 4 ? ("MFSC_0x9002") : ((ptr_struct->mng_access_reg_cap_mask[i] == 8 ? ("MFSM_0x9003") : ((ptr_struct->mng_access_reg_cap_mask[i] == 16 ? ("MFSL_0x9004") : ((ptr_struct->mng_access_reg_cap_mask[i] == 67108864 ? ("MGCR_0x903A") : ((ptr_struct->mng_access_reg_cap_mask[i] == 512 ? ("MPPF_0x9049") : ((ptr_struct->mng_access_reg_cap_mask[i] == 2147483648 ? ("MCAP_0x907F") : ("unknown")))))))))))))), ptr_struct->mng_access_reg_cap_mask[i]); } for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "mng_feature_cap_mask_%03d : " U32H_FMT "\n", i, ptr_struct->mng_feature_cap_mask[i]); } } unsigned int reg_access_hca_mcam_reg_ext_size(void) { return REG_ACCESS_HCA_MCAM_REG_EXT_SIZE; } void reg_access_hca_mcam_reg_ext_dump(const struct reg_access_hca_mcam_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mcam_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcc_reg_ext_pack(const struct reg_access_hca_mcc_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->instruction); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->activation_delay_sec); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->time_elapsed_since_last_cmd); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->component_index); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->update_handle); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->auto_update); offset = 124; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->control_state); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->error_code); offset = 105; adb2c_push_bits_to_buff(ptr_buff, offset, 7, (u_int32_t)ptr_struct->control_progress); offset = 100; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->handle_owner_host_id); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->handle_owner_type); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->component_size); offset = 184; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->device_type); offset = 164; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->device_index); offset = 212; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->device_index_size); offset = 196; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->rejected_device_index); } void reg_access_hca_mcc_reg_ext_unpack(struct reg_access_hca_mcc_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->instruction = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->activation_delay_sec = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 4; ptr_struct->time_elapsed_since_last_cmd = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 48; ptr_struct->component_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 72; ptr_struct->update_handle = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 64; ptr_struct->auto_update = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 124; ptr_struct->control_state = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 112; ptr_struct->error_code = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 105; ptr_struct->control_progress = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 7); offset = 100; ptr_struct->handle_owner_host_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->handle_owner_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->component_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 184; ptr_struct->device_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 164; ptr_struct->device_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 212; ptr_struct->device_index_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 196; ptr_struct->rejected_device_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); } void reg_access_hca_mcc_reg_ext_print(const struct reg_access_hca_mcc_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcc_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "instruction : %s (" UH_FMT ")\n", (ptr_struct->instruction == 1 ? ("LOCK_UPDATE_HANDLE") : ((ptr_struct->instruction == 2 ? ("RELEASE_UPDATE_HANDLE") : ((ptr_struct->instruction == 3 ? ("UPDATE_COMPONENT") : ((ptr_struct->instruction == 4 ? ("VERIFY_COMPONENT") : ((ptr_struct->instruction == 6 ? ("ACTIVATE") : ((ptr_struct->instruction == 7 ? ("READ_COMPONENT") : ((ptr_struct->instruction == 8 ? ("CANCEL") : ((ptr_struct->instruction == 9 ? ("CHECK_UPDATE_HANDLE") : ((ptr_struct->instruction == 10 ? ("FORCE_HANDLE_RELEASE") : ((ptr_struct->instruction == 11 ? ("READ_PENDING_COMPONENT") : ((ptr_struct->instruction == 12 ? ("DOWNSRTEAM_DEVICE_TRANSFER") : ("unknown")))))))))))))))))))))), ptr_struct->instruction); adb2c_add_indentation(fd, indent_level); fprintf(fd, "activation_delay_sec : " UH_FMT "\n", ptr_struct->activation_delay_sec); adb2c_add_indentation(fd, indent_level); fprintf(fd, "time_elapsed_since_last_cmd : " UH_FMT "\n", ptr_struct->time_elapsed_since_last_cmd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_index : " UH_FMT "\n", ptr_struct->component_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "update_handle : " UH_FMT "\n", ptr_struct->update_handle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "auto_update : " UH_FMT "\n", ptr_struct->auto_update); adb2c_add_indentation(fd, indent_level); fprintf(fd, "control_state : %s (" UH_FMT ")\n", (ptr_struct->control_state == 0 ? ("IDLE") : ((ptr_struct->control_state == 1 ? ("LOCKED") : ((ptr_struct->control_state == 2 ? ("INITIALIZE") : ((ptr_struct->control_state == 3 ? ("DOWNLOAD") : ((ptr_struct->control_state == 4 ? ("VERIFY") : ((ptr_struct->control_state == 5 ? ("APPLY") : ((ptr_struct->control_state == 6 ? ("ACTIVATE") : ((ptr_struct->control_state == 7 ? ("UPLOAD") : ((ptr_struct->control_state == 8 ? ("UPLOAD_PENDING") : ((ptr_struct->control_state == 9 ? ("DOWNSRTEAM_DEVICE_TRANSFER") : ("unknown")))))))))))))))))))), ptr_struct->control_state); adb2c_add_indentation(fd, indent_level); fprintf(fd, "error_code : " UH_FMT "\n", ptr_struct->error_code); adb2c_add_indentation(fd, indent_level); fprintf(fd, "control_progress : " UH_FMT "\n", ptr_struct->control_progress); adb2c_add_indentation(fd, indent_level); fprintf(fd, "handle_owner_host_id : " UH_FMT "\n", ptr_struct->handle_owner_host_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "handle_owner_type : " UH_FMT "\n", ptr_struct->handle_owner_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_size : " U32H_FMT "\n", ptr_struct->component_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_type : %s (" UH_FMT ")\n", (ptr_struct->device_type == 0 ? ("Switch_or_NIC") : ((ptr_struct->device_type == 1 ? ("Gearbox") : ("unknown")))), ptr_struct->device_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index : " UH_FMT "\n", ptr_struct->device_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index_size : " UH_FMT "\n", ptr_struct->device_index_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rejected_device_index : " UH_FMT "\n", ptr_struct->rejected_device_index); } unsigned int reg_access_hca_mcc_reg_ext_size(void) { return REG_ACCESS_HCA_MCC_REG_EXT_SIZE; } void reg_access_hca_mcc_reg_ext_dump(const struct reg_access_hca_mcc_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mcc_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcda_reg_ext_pack(const struct reg_access_hca_mcda_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->update_handle); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->offset); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->size); for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 1152, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data[i]); } } void reg_access_hca_mcda_reg_ext_unpack(struct reg_access_hca_mcda_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 8; ptr_struct->update_handle = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 32; ptr_struct->offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 1152, 1); ptr_struct->data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_mcda_reg_ext_print(const struct reg_access_hca_mcda_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcda_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "update_handle : " UH_FMT "\n", ptr_struct->update_handle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "offset : " U32H_FMT "\n", ptr_struct->offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); for (i = 0; i < 32; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " U32H_FMT "\n", i, ptr_struct->data[i]); } } unsigned int reg_access_hca_mcda_reg_ext_size(void) { return REG_ACCESS_HCA_MCDA_REG_EXT_SIZE; } void reg_access_hca_mcda_reg_ext_dump(const struct reg_access_hca_mcda_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mcda_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcia_ext_pack(const struct reg_access_hca_mcia_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->status); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->module); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->l); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->device_address); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->page_number); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->i2c_device_address); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->size); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->bank_number); offset = 67; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->passwd_length); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->password); for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 1184, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->dword[i]); } offset = 1152; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->password_msb); } void reg_access_hca_mcia_ext_unpack(struct reg_access_hca_mcia_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 8; ptr_struct->module = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->l = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->device_address = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 40; ptr_struct->page_number = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->i2c_device_address = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 80; ptr_struct->size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 72; ptr_struct->bank_number = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 67; ptr_struct->passwd_length = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 96; ptr_struct->password = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 1184, 1); ptr_struct->dword[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 1152; ptr_struct->password_msb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mcia_ext_print(const struct reg_access_hca_mcia_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcia_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status : " UH_FMT "\n", ptr_struct->status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module : " UH_FMT "\n", ptr_struct->module); adb2c_add_indentation(fd, indent_level); fprintf(fd, "l : " UH_FMT "\n", ptr_struct->l); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_address : " UH_FMT "\n", ptr_struct->device_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "page_number : " UH_FMT "\n", ptr_struct->page_number); adb2c_add_indentation(fd, indent_level); fprintf(fd, "i2c_device_address : " UH_FMT "\n", ptr_struct->i2c_device_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bank_number : " UH_FMT "\n", ptr_struct->bank_number); adb2c_add_indentation(fd, indent_level); fprintf(fd, "passwd_length : " UH_FMT "\n", ptr_struct->passwd_length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "password : " U32H_FMT "\n", ptr_struct->password); for (i = 0; i < 32; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "dword_%03d : " U32H_FMT "\n", i, ptr_struct->dword[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "password_msb : " U32H_FMT "\n", ptr_struct->password_msb); } unsigned int reg_access_hca_mcia_ext_size(void) { return REG_ACCESS_HCA_MCIA_EXT_SIZE; } void reg_access_hca_mcia_ext_dump(const struct reg_access_hca_mcia_ext *ptr_struct, FILE *fd) { reg_access_hca_mcia_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqi_reg_ext_pack(const struct reg_access_hca_mcqi_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->component_index); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->device_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->read_pending_component); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->device_type); offset = 91; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->info_type); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->info_size); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->offset); offset = 176; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->data_size); offset = 192; switch (ptr_struct->info_type) { case 0x0: offset = 192; reg_access_hca_mcqi_cap_ext_pack(&(ptr_struct->data.mcqi_cap_ext), ptr_buff + offset / 8); break; case 0x1: offset = 192; reg_access_hca_mcqi_version_ext_pack(&(ptr_struct->data.mcqi_version_ext), ptr_buff + offset / 8); break; case 0x5: offset = 192; reg_access_hca_mcqi_activation_method_ext_pack(&(ptr_struct->data.mcqi_activation_method_ext), ptr_buff + offset / 8); break; case 0x6: offset = 192; reg_access_hca_mcqi_linkx_properties_ext_pack(&(ptr_struct->data.mcqi_linkx_properties_ext), ptr_buff + offset / 8); break; case 0x7: offset = 192; reg_access_hca_mcqi_clock_source_properties_ext_pack(&(ptr_struct->data.mcqi_clock_source_properties_ext), ptr_buff + offset / 8); break; default: break; } } void reg_access_hca_mcqi_reg_ext_unpack(struct reg_access_hca_mcqi_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->component_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 4; ptr_struct->device_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 0; ptr_struct->read_pending_component = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 56; ptr_struct->device_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 91; ptr_struct->info_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 96; ptr_struct->info_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 176; ptr_struct->data_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 192; switch (ptr_struct->info_type) { case 0x0: offset = 192; reg_access_hca_mcqi_cap_ext_unpack(&(ptr_struct->data.mcqi_cap_ext), ptr_buff + offset / 8); break; case 0x1: offset = 192; reg_access_hca_mcqi_version_ext_unpack(&(ptr_struct->data.mcqi_version_ext), ptr_buff + offset / 8); break; case 0x5: offset = 192; reg_access_hca_mcqi_activation_method_ext_unpack(&(ptr_struct->data.mcqi_activation_method_ext), ptr_buff + offset / 8); break; case 0x6: offset = 192; reg_access_hca_mcqi_linkx_properties_ext_unpack(&(ptr_struct->data.mcqi_linkx_properties_ext), ptr_buff + offset / 8); break; case 0x7: offset = 192; reg_access_hca_mcqi_clock_source_properties_ext_unpack(&(ptr_struct->data.mcqi_clock_source_properties_ext), ptr_buff + offset / 8); break; default: break; } } void reg_access_hca_mcqi_reg_ext_print(const struct reg_access_hca_mcqi_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqi_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_index : " UH_FMT "\n", ptr_struct->component_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index : " UH_FMT "\n", ptr_struct->device_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "read_pending_component : " UH_FMT "\n", ptr_struct->read_pending_component); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_type : " UH_FMT "\n", ptr_struct->device_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "info_type : %s (" UH_FMT ")\n", (ptr_struct->info_type == 0 ? ("CAPABILITIES") : ((ptr_struct->info_type == 1 ? ("VERSION") : ((ptr_struct->info_type == 5 ? ("ACTIVATION_METHOD") : ((ptr_struct->info_type == 6 ? ("LINKX_PROPERTIES") : ((ptr_struct->info_type == 7 ? ("CLOCK_SOURCE_PROPERTIES") : ("unknown")))))))))), ptr_struct->info_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "info_size : " U32H_FMT "\n", ptr_struct->info_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "offset : " U32H_FMT "\n", ptr_struct->offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_size : " UH_FMT "\n", ptr_struct->data_size); switch (ptr_struct->info_type) { case 0x0: adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_cap_ext:\n"); reg_access_hca_mcqi_cap_ext_print(&(ptr_struct->data.mcqi_cap_ext), fd, indent_level + 1); break; case 0x1: adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_version_ext:\n"); reg_access_hca_mcqi_version_ext_print(&(ptr_struct->data.mcqi_version_ext), fd, indent_level + 1); break; case 0x5: adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_activation_method_ext:\n"); reg_access_hca_mcqi_activation_method_ext_print(&(ptr_struct->data.mcqi_activation_method_ext), fd, indent_level + 1); break; case 0x6: adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_linkx_properties_ext:\n"); reg_access_hca_mcqi_linkx_properties_ext_print(&(ptr_struct->data.mcqi_linkx_properties_ext), fd, indent_level + 1); break; case 0x7: adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_clock_source_properties_ext:\n"); reg_access_hca_mcqi_clock_source_properties_ext_print(&(ptr_struct->data.mcqi_clock_source_properties_ext), fd, indent_level + 1); break; default: break; } } unsigned int reg_access_hca_mcqi_reg_ext_size(void) { return REG_ACCESS_HCA_MCQI_REG_EXT_SIZE; } void reg_access_hca_mcqi_reg_ext_dump(const struct reg_access_hca_mcqi_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqi_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mcqs_reg_ext_pack(const struct reg_access_hca_mcqs_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->component_index); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->device_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->last_index_flag); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->identifier); offset = 92; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->component_update_state); offset = 87; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->component_status); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 7, (u_int32_t)ptr_struct->progress); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->device_type); offset = 100; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->last_update_state_changer_host_id); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->last_update_state_changer_type); } void reg_access_hca_mcqs_reg_ext_unpack(struct reg_access_hca_mcqs_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->component_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 4; ptr_struct->device_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 0; ptr_struct->last_index_flag = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->identifier = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 92; ptr_struct->component_update_state = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 87; ptr_struct->component_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 80; ptr_struct->progress = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 7); offset = 120; ptr_struct->device_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 100; ptr_struct->last_update_state_changer_host_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->last_update_state_changer_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mcqs_reg_ext_print(const struct reg_access_hca_mcqs_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mcqs_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_index : " UH_FMT "\n", ptr_struct->component_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_index : " UH_FMT "\n", ptr_struct->device_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "last_index_flag : " UH_FMT "\n", ptr_struct->last_index_flag); adb2c_add_indentation(fd, indent_level); fprintf(fd, "identifier : %s (" UH_FMT ")\n", (ptr_struct->identifier == 1 ? ("BOOT_IMG") : ((ptr_struct->identifier == 4 ? ("OEM_NVCONFIG") : ((ptr_struct->identifier == 5 ? ("MLNX_NVCONFIG") : ((ptr_struct->identifier == 6 ? ("CS_TOKEN") : ((ptr_struct->identifier == 7 ? ("DBG_TOKEN") : ((ptr_struct->identifier == 10 ? ("Gearbox") : ((ptr_struct->identifier == 11 ? ("CC_ALGO") : ((ptr_struct->identifier == 12 ? ("LINKX_IMG") : ((ptr_struct->identifier == 13 ? ("CRYPTO_TO_COMMISSIONING") : ((ptr_struct->identifier == 14 ? ("RMCS_TOKEN") : ((ptr_struct->identifier == 15 ? ("RMDT_TOKEN") : ((ptr_struct->identifier == 16 ? ("CRCS_TOKEN_") : ((ptr_struct->identifier == 17 ? ("CRDT_TOKEN_") : ((ptr_struct->identifier == 18 ? ("CLOCK_SYNC_EEPROM_") : ("unknown")))))))))))))))))))))))))))), ptr_struct->identifier); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_update_state : %s (" UH_FMT ")\n", (ptr_struct->component_update_state == 0 ? ("IDLE") : ((ptr_struct->component_update_state == 1 ? ("IN_PROGRESS") : ((ptr_struct->component_update_state == 2 ? ("APPLIED") : ((ptr_struct->component_update_state == 3 ? ("ACTIVE") : ((ptr_struct->component_update_state == 4 ? ("ACTIVE_PENDING_RESET") : ((ptr_struct->component_update_state == 5 ? ("FAILED") : ((ptr_struct->component_update_state == 6 ? ("CANCELED") : ((ptr_struct->component_update_state == 7 ? ("BUSY") : ("unknown")))))))))))))))), ptr_struct->component_update_state); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_status : %s (" UH_FMT ")\n", (ptr_struct->component_status == 0 ? ("NOT_PRESENT") : ((ptr_struct->component_status == 1 ? ("PRESENT") : ((ptr_struct->component_status == 2 ? ("IN_USE") : ("unknown")))))), ptr_struct->component_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "progress : " UH_FMT "\n", ptr_struct->progress); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_type : " UH_FMT "\n", ptr_struct->device_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "last_update_state_changer_host_id : " UH_FMT "\n", ptr_struct->last_update_state_changer_host_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "last_update_state_changer_type : %s (" UH_FMT ")\n", (ptr_struct->last_update_state_changer_type == 0 ? ("unspecified") : ((ptr_struct->last_update_state_changer_type == 1 ? ("Chassis_BMC") : ((ptr_struct->last_update_state_changer_type == 2 ? ("MAD") : ((ptr_struct->last_update_state_changer_type == 3 ? ("BMC") : ((ptr_struct->last_update_state_changer_type == 4 ? ("command_interface") : ((ptr_struct->last_update_state_changer_type == 5 ? ("ICMD") : ("unknown")))))))))))), ptr_struct->last_update_state_changer_type); } unsigned int reg_access_hca_mcqs_reg_ext_size(void) { return REG_ACCESS_HCA_MCQS_REG_EXT_SIZE; } void reg_access_hca_mcqs_reg_ext_dump(const struct reg_access_hca_mcqs_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mcqs_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mfba_reg_ext_pack(const struct reg_access_hca_mfba_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->add_cap_32b); offset = 55; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->size); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->address); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(96, 32, i, 2144, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data[i]); } } void reg_access_hca_mfba_reg_ext_unpack(struct reg_access_hca_mfba_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 0; ptr_struct->add_cap_32b = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 55; ptr_struct->size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 64; ptr_struct->address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(96, 32, i, 2144, 1); ptr_struct->data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_mfba_reg_ext_print(const struct reg_access_hca_mfba_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mfba_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "add_cap_32b : " UH_FMT "\n", ptr_struct->add_cap_32b); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " U32H_FMT "\n", ptr_struct->address); for (i = 0; i < 64; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " U32H_FMT "\n", i, ptr_struct->data[i]); } } unsigned int reg_access_hca_mfba_reg_ext_size(void) { return REG_ACCESS_HCA_MFBA_REG_EXT_SIZE; } void reg_access_hca_mfba_reg_ext_dump(const struct reg_access_hca_mfba_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mfba_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mfbe_reg_ext_pack(const struct reg_access_hca_mfbe_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_64kb_erase); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_32kb_erase); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->add_cap_32b); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->address); } void reg_access_hca_mfbe_reg_ext_unpack(struct reg_access_hca_mfbe_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 2; ptr_struct->bulk_64kb_erase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->bulk_32kb_erase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->add_cap_32b = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mfbe_reg_ext_print(const struct reg_access_hca_mfbe_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mfbe_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_64kb_erase : " UH_FMT "\n", ptr_struct->bulk_64kb_erase); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_32kb_erase : " UH_FMT "\n", ptr_struct->bulk_32kb_erase); adb2c_add_indentation(fd, indent_level); fprintf(fd, "add_cap_32b : " UH_FMT "\n", ptr_struct->add_cap_32b); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " U32H_FMT "\n", ptr_struct->address); } unsigned int reg_access_hca_mfbe_reg_ext_size(void) { return REG_ACCESS_HCA_MFBE_REG_EXT_SIZE; } void reg_access_hca_mfbe_reg_ext_dump(const struct reg_access_hca_mfbe_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mfbe_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mfpa_reg_ext_pack(const struct reg_access_hca_mfpa_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fs); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->add_cap_32b); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->boot_address); offset = 156; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->flash_num); offset = 143; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sub_sector_wrp_en); offset = 142; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sector_wrp_en); offset = 130; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_64kb_erase_en); offset = 129; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->bulk_32kb_erase_en); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->wip); offset = 168; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->jedec_id); offset = 214; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->sector_size); offset = 200; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->block_alignment); offset = 192; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->block_size); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->capability_mask); } void reg_access_hca_mfpa_reg_ext_unpack(struct reg_access_hca_mfpa_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 26; ptr_struct->fs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 0; ptr_struct->add_cap_32b = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->boot_address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 156; ptr_struct->flash_num = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 143; ptr_struct->sub_sector_wrp_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 142; ptr_struct->sector_wrp_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 130; ptr_struct->bulk_64kb_erase_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 129; ptr_struct->bulk_32kb_erase_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 128; ptr_struct->wip = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 168; ptr_struct->jedec_id = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 214; ptr_struct->sector_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 200; ptr_struct->block_alignment = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 192; ptr_struct->block_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 224; ptr_struct->capability_mask = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mfpa_reg_ext_print(const struct reg_access_hca_mfpa_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mfpa_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fs : " UH_FMT "\n", ptr_struct->fs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "add_cap_32b : " UH_FMT "\n", ptr_struct->add_cap_32b); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_address : " U32H_FMT "\n", ptr_struct->boot_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_num : " UH_FMT "\n", ptr_struct->flash_num); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sub_sector_wrp_en : " UH_FMT "\n", ptr_struct->sub_sector_wrp_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sector_wrp_en : " UH_FMT "\n", ptr_struct->sector_wrp_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_64kb_erase_en : " UH_FMT "\n", ptr_struct->bulk_64kb_erase_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bulk_32kb_erase_en : " UH_FMT "\n", ptr_struct->bulk_32kb_erase_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "wip : " UH_FMT "\n", ptr_struct->wip); adb2c_add_indentation(fd, indent_level); fprintf(fd, "jedec_id : " UH_FMT "\n", ptr_struct->jedec_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sector_size : " UH_FMT "\n", ptr_struct->sector_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "block_alignment : " UH_FMT "\n", ptr_struct->block_alignment); adb2c_add_indentation(fd, indent_level); fprintf(fd, "block_size : " UH_FMT "\n", ptr_struct->block_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "capability_mask : " U32H_FMT "\n", ptr_struct->capability_mask); } unsigned int reg_access_hca_mfpa_reg_ext_size(void) { return REG_ACCESS_HCA_MFPA_REG_EXT_SIZE; } void reg_access_hca_mfpa_reg_ext_dump(const struct reg_access_hca_mfpa_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mfpa_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mfrl_reg_ext_pack(const struct reg_access_hca_mfrl_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->reset_trigger); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->reset_type); offset = 44; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reset_state); offset = 43; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pci_leaf_dsp_exist); offset = 42; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pci_leaf_dsp_traffic_dis_commited); offset = 37; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->rst_type_sel); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->pci_sync_for_fw_update_resp); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pci_sync_for_fw_update_start); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->pci_rescan_required); } void reg_access_hca_mfrl_reg_ext_unpack(struct reg_access_hca_mfrl_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 56; ptr_struct->reset_trigger = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->reset_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 44; ptr_struct->reset_state = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 43; ptr_struct->pci_leaf_dsp_exist = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 42; ptr_struct->pci_leaf_dsp_traffic_dis_commited = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 37; ptr_struct->rst_type_sel = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 35; ptr_struct->pci_sync_for_fw_update_resp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 34; ptr_struct->pci_sync_for_fw_update_start = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->pci_rescan_required = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_mfrl_reg_ext_print(const struct reg_access_hca_mfrl_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mfrl_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_trigger : " UH_FMT "\n", ptr_struct->reset_trigger); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_type : " UH_FMT "\n", ptr_struct->reset_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_state : " UH_FMT "\n", ptr_struct->reset_state); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_leaf_dsp_exist : " UH_FMT "\n", ptr_struct->pci_leaf_dsp_exist); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_leaf_dsp_traffic_dis_commited : " UH_FMT "\n", ptr_struct->pci_leaf_dsp_traffic_dis_commited); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rst_type_sel : " UH_FMT "\n", ptr_struct->rst_type_sel); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_sync_for_fw_update_resp : %s (" UH_FMT ")\n", (ptr_struct->pci_sync_for_fw_update_resp == 1 ? ("Acknowledgment") : ((ptr_struct->pci_sync_for_fw_update_resp == 2 ? ("Dis") : ((ptr_struct->pci_sync_for_fw_update_resp == 3 ? ("Reserved") : ("unknown")))))), ptr_struct->pci_sync_for_fw_update_resp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_sync_for_fw_update_start : " UH_FMT "\n", ptr_struct->pci_sync_for_fw_update_start); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_rescan_required : " UH_FMT "\n", ptr_struct->pci_rescan_required); } unsigned int reg_access_hca_mfrl_reg_ext_size(void) { return REG_ACCESS_HCA_MFRL_REG_EXT_SIZE; } void reg_access_hca_mfrl_reg_ext_dump(const struct reg_access_hca_mfrl_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mfrl_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mfsv_reg_ext_pack(const struct reg_access_hca_mfsv_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->efuses_prog_en); offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->fw_sec_ver_stat); offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->efuses_prog_method); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->img_sec_ver); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->efuses_sec_ver); } void reg_access_hca_mfsv_reg_ext_unpack(struct reg_access_hca_mfsv_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; ptr_struct->efuses_prog_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 29; ptr_struct->fw_sec_ver_stat = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 28; ptr_struct->efuses_prog_method = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->img_sec_ver = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->efuses_sec_ver = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mfsv_reg_ext_print(const struct reg_access_hca_mfsv_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mfsv_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "efuses_prog_en : " UH_FMT "\n", ptr_struct->efuses_prog_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_sec_ver_stat : " UH_FMT "\n", ptr_struct->fw_sec_ver_stat); adb2c_add_indentation(fd, indent_level); fprintf(fd, "efuses_prog_method : " UH_FMT "\n", ptr_struct->efuses_prog_method); adb2c_add_indentation(fd, indent_level); fprintf(fd, "img_sec_ver : " U32H_FMT "\n", ptr_struct->img_sec_ver); adb2c_add_indentation(fd, indent_level); fprintf(fd, "efuses_sec_ver : " U32H_FMT "\n", ptr_struct->efuses_sec_ver); } unsigned int reg_access_hca_mfsv_reg_ext_size(void) { return REG_ACCESS_HCA_MFSV_REG_EXT_SIZE; } void reg_access_hca_mfsv_reg_ext_dump(const struct reg_access_hca_mfsv_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mfsv_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mgir_ext_pack(const struct reg_access_hca_mgir_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; reg_access_hca_mgir_hardware_info_ext_pack(&(ptr_struct->hw_info), ptr_buff + offset / 8); offset = 256; reg_access_hca_mgir_fw_info_ext_pack(&(ptr_struct->fw_info), ptr_buff + offset / 8); offset = 768; reg_access_hca_mgir_sw_info_ext_pack(&(ptr_struct->sw_info), ptr_buff + offset / 8); offset = 1024; reg_access_hca_mgir_dev_info_ext_pack(&(ptr_struct->dev_info), ptr_buff + offset / 8); } void reg_access_hca_mgir_ext_unpack(struct reg_access_hca_mgir_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; reg_access_hca_mgir_hardware_info_ext_unpack(&(ptr_struct->hw_info), ptr_buff + offset / 8); offset = 256; reg_access_hca_mgir_fw_info_ext_unpack(&(ptr_struct->fw_info), ptr_buff + offset / 8); offset = 768; reg_access_hca_mgir_sw_info_ext_unpack(&(ptr_struct->sw_info), ptr_buff + offset / 8); offset = 1024; reg_access_hca_mgir_dev_info_ext_unpack(&(ptr_struct->dev_info), ptr_buff + offset / 8); } void reg_access_hca_mgir_ext_print(const struct reg_access_hca_mgir_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mgir_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_info:\n"); reg_access_hca_mgir_hardware_info_ext_print(&(ptr_struct->hw_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_info:\n"); reg_access_hca_mgir_fw_info_ext_print(&(ptr_struct->fw_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sw_info:\n"); reg_access_hca_mgir_sw_info_ext_print(&(ptr_struct->sw_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dev_info:\n"); reg_access_hca_mgir_dev_info_ext_print(&(ptr_struct->dev_info), fd, indent_level + 1); } unsigned int reg_access_hca_mgir_ext_size(void) { return REG_ACCESS_HCA_MGIR_EXT_SIZE; } void reg_access_hca_mgir_ext_dump(const struct reg_access_hca_mgir_ext *ptr_struct, FILE *fd) { reg_access_hca_mgir_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mmdio_ext_pack(const struct reg_access_hca_mmdio_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->operation); offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->clause); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mdio_index); offset = 59; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->reg_adr); offset = 51; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->phy_adr); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->data); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->address); } void reg_access_hca_mmdio_ext_unpack(struct reg_access_hca_mmdio_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 29; ptr_struct->operation = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 22; ptr_struct->clause = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 12; ptr_struct->mdio_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 59; ptr_struct->reg_adr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 51; ptr_struct->phy_adr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 80; ptr_struct->data = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->address = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void reg_access_hca_mmdio_ext_print(const struct reg_access_hca_mmdio_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mmdio_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operation : " UH_FMT "\n", ptr_struct->operation); adb2c_add_indentation(fd, indent_level); fprintf(fd, "clause : " UH_FMT "\n", ptr_struct->clause); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mdio_index : " UH_FMT "\n", ptr_struct->mdio_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reg_adr : " UH_FMT "\n", ptr_struct->reg_adr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "phy_adr : " UH_FMT "\n", ptr_struct->phy_adr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data : " UH_FMT "\n", ptr_struct->data); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " UH_FMT "\n", ptr_struct->address); } unsigned int reg_access_hca_mmdio_ext_size(void) { return REG_ACCESS_HCA_MMDIO_EXT_SIZE; } void reg_access_hca_mmdio_ext_dump(const struct reg_access_hca_mmdio_ext *ptr_struct, FILE *fd) { reg_access_hca_mmdio_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mnvdi_reg_ext_pack(const struct reg_access_hca_mnvdi_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; reg_access_hca_config_item_ext_pack(&(ptr_struct->configuration_item_header), ptr_buff + offset / 8); } void reg_access_hca_mnvdi_reg_ext_unpack(struct reg_access_hca_mnvdi_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; reg_access_hca_config_item_ext_unpack(&(ptr_struct->configuration_item_header), ptr_buff + offset / 8); } void reg_access_hca_mnvdi_reg_ext_print(const struct reg_access_hca_mnvdi_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mnvdi_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "configuration_item_header:\n"); reg_access_hca_config_item_ext_print(&(ptr_struct->configuration_item_header), fd, indent_level + 1); } unsigned int reg_access_hca_mnvdi_reg_ext_size(void) { return REG_ACCESS_HCA_MNVDI_REG_EXT_SIZE; } void reg_access_hca_mnvdi_reg_ext_dump(const struct reg_access_hca_mnvdi_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mnvdi_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mnvgc_reg_ext_pack(const struct reg_access_hca_mnvgc_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nvda_read_factory_settings); offset = 30; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nvda_read_current_settings); offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->priv_nv_other_host); } void reg_access_hca_mnvgc_reg_ext_unpack(struct reg_access_hca_mnvgc_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; ptr_struct->nvda_read_factory_settings = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 30; ptr_struct->nvda_read_current_settings = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 29; ptr_struct->priv_nv_other_host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_mnvgc_reg_ext_print(const struct reg_access_hca_mnvgc_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mnvgc_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nvda_read_factory_settings : " UH_FMT "\n", ptr_struct->nvda_read_factory_settings); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nvda_read_current_settings : " UH_FMT "\n", ptr_struct->nvda_read_current_settings); adb2c_add_indentation(fd, indent_level); fprintf(fd, "priv_nv_other_host : " UH_FMT "\n", ptr_struct->priv_nv_other_host); } unsigned int reg_access_hca_mnvgc_reg_ext_size(void) { return REG_ACCESS_HCA_MNVGC_REG_EXT_SIZE; } void reg_access_hca_mnvgc_reg_ext_dump(const struct reg_access_hca_mnvgc_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mnvgc_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mnvia_reg_ext_pack(const struct reg_access_hca_mnvia_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->target); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->writer_id); } void reg_access_hca_mnvia_reg_ext_unpack(struct reg_access_hca_mnvia_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 29; ptr_struct->target = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 23; ptr_struct->writer_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); } void reg_access_hca_mnvia_reg_ext_print(const struct reg_access_hca_mnvia_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mnvia_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "target : " UH_FMT "\n", ptr_struct->target); adb2c_add_indentation(fd, indent_level); fprintf(fd, "writer_id : " UH_FMT "\n", ptr_struct->writer_id); } unsigned int reg_access_hca_mnvia_reg_ext_size(void) { return REG_ACCESS_HCA_MNVIA_REG_EXT_SIZE; } void reg_access_hca_mnvia_reg_ext_dump(const struct reg_access_hca_mnvia_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mnvia_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mnvqc_reg_ext_pack(const struct reg_access_hca_mnvqc_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->type); offset = 63; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->support_rd); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->support_wr); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->version); } void reg_access_hca_mnvqc_reg_ext_unpack(struct reg_access_hca_mnvqc_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->type = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 63; ptr_struct->support_rd = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 62; ptr_struct->support_wr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 56; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mnvqc_reg_ext_print(const struct reg_access_hca_mnvqc_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mnvqc_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : " U32H_FMT "\n", ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "support_rd : " UH_FMT "\n", ptr_struct->support_rd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "support_wr : " UH_FMT "\n", ptr_struct->support_wr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); } unsigned int reg_access_hca_mnvqc_reg_ext_size(void) { return REG_ACCESS_HCA_MNVQC_REG_EXT_SIZE; } void reg_access_hca_mnvqc_reg_ext_dump(const struct reg_access_hca_mnvqc_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mnvqc_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mpcir_ext_pack(const struct reg_access_hca_mpcir_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->all); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->ports); offset = 126; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->ports_stat); } void reg_access_hca_mpcir_ext_unpack(struct reg_access_hca_mpcir_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->all = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 62; ptr_struct->ports = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 126; ptr_struct->ports_stat = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); } void reg_access_hca_mpcir_ext_print(const struct reg_access_hca_mpcir_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mpcir_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "all : " UH_FMT "\n", ptr_struct->all); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ports : " UH_FMT "\n", ptr_struct->ports); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ports_stat : " UH_FMT "\n", ptr_struct->ports_stat); } unsigned int reg_access_hca_mpcir_ext_size(void) { return REG_ACCESS_HCA_MPCIR_EXT_SIZE; } void reg_access_hca_mpcir_ext_dump(const struct reg_access_hca_mpcir_ext *ptr_struct, FILE *fd) { reg_access_hca_mpcir_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mpegc_reg_ext_pack(const struct reg_access_hca_mpegc_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->node); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->pcie_index); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->depth); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->field_select); offset = 94; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->tx_lossy_overflow_oper); offset = 66; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mark_cnp); offset = 65; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mark_cqe); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->tx_overflow_sense); offset = 121; adb2c_push_bits_to_buff(ptr_buff, offset, 7, (u_int32_t)ptr_struct->outbound_stalled_writes_th); offset = 113; adb2c_push_bits_to_buff(ptr_buff, offset, 7, (u_int32_t)ptr_struct->outbound_stalled_reads_th); offset = 140; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->operation); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->status); } void reg_access_hca_mpegc_reg_ext_unpack(struct reg_access_hca_mpegc_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->node = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->pcie_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 2; ptr_struct->depth = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 48; ptr_struct->field_select = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 94; ptr_struct->tx_lossy_overflow_oper = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 66; ptr_struct->mark_cnp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 65; ptr_struct->mark_cqe = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->tx_overflow_sense = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 121; ptr_struct->outbound_stalled_writes_th = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 7); offset = 113; ptr_struct->outbound_stalled_reads_th = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 7); offset = 140; ptr_struct->operation = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void reg_access_hca_mpegc_reg_ext_print(const struct reg_access_hca_mpegc_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mpegc_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "node : " UH_FMT "\n", ptr_struct->node); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pcie_index : " UH_FMT "\n", ptr_struct->pcie_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "depth : " UH_FMT "\n", ptr_struct->depth); adb2c_add_indentation(fd, indent_level); fprintf(fd, "field_select : " UH_FMT "\n", ptr_struct->field_select); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tx_lossy_overflow_oper : " UH_FMT "\n", ptr_struct->tx_lossy_overflow_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mark_cnp : " UH_FMT "\n", ptr_struct->mark_cnp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mark_cqe : " UH_FMT "\n", ptr_struct->mark_cqe); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tx_overflow_sense : " UH_FMT "\n", ptr_struct->tx_overflow_sense); adb2c_add_indentation(fd, indent_level); fprintf(fd, "outbound_stalled_writes_th : " UH_FMT "\n", ptr_struct->outbound_stalled_writes_th); adb2c_add_indentation(fd, indent_level); fprintf(fd, "outbound_stalled_reads_th : " UH_FMT "\n", ptr_struct->outbound_stalled_reads_th); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operation : " UH_FMT "\n", ptr_struct->operation); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status : " UH_FMT "\n", ptr_struct->status); } unsigned int reg_access_hca_mpegc_reg_ext_size(void) { return REG_ACCESS_HCA_MPEGC_REG_EXT_SIZE; } void reg_access_hca_mpegc_reg_ext_dump(const struct reg_access_hca_mpegc_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mpegc_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mqis_reg_ext_pack(const struct reg_access_hca_mqis_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->info_type); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->info_length); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->read_length); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->read_offset); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(152, 8, i, 192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->info_string[i]); } } void reg_access_hca_mqis_reg_ext_unpack(struct reg_access_hca_mqis_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->info_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->info_length = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->read_length = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->read_offset = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(152, 8, i, 192, 1); ptr_struct->info_string[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void reg_access_hca_mqis_reg_ext_print(const struct reg_access_hca_mqis_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mqis_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "info_type : %s (" UH_FMT ")\n", (ptr_struct->info_type == 1 ? ("MODEL_NAME") : ((ptr_struct->info_type == 2 ? ("MODEL_DESCRIPTION") : ((ptr_struct->info_type == 3 ? ("IMAGE_VSD") : ((ptr_struct->info_type == 4 ? ("DEVICE_VSD") : ((ptr_struct->info_type == 5 ? ("ROM_INFO") : ("unknown")))))))))), ptr_struct->info_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "info_length : " UH_FMT "\n", ptr_struct->info_length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "read_length : " UH_FMT "\n", ptr_struct->read_length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "read_offset : " UH_FMT "\n", ptr_struct->read_offset); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "info_string_%03d : " UH_FMT "\n", i, ptr_struct->info_string[i]); } } unsigned int reg_access_hca_mqis_reg_ext_size(void) { return REG_ACCESS_HCA_MQIS_REG_EXT_SIZE; } void reg_access_hca_mqis_reg_ext_dump(const struct reg_access_hca_mqis_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mqis_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mrsi_ext_pack(const struct reg_access_hca_mrsi_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->device); offset = 60; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reset_reason); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->crts); } void reg_access_hca_mrsi_ext_unpack(struct reg_access_hca_mrsi_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->device = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 60; ptr_struct->reset_reason = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->crts = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void reg_access_hca_mrsi_ext_print(const struct reg_access_hca_mrsi_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mrsi_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device : " UH_FMT "\n", ptr_struct->device); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_reason : " UH_FMT "\n", ptr_struct->reset_reason); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crts : " U64H_FMT "\n", ptr_struct->crts); } unsigned int reg_access_hca_mrsi_ext_size(void) { return REG_ACCESS_HCA_MRSI_EXT_SIZE; } void reg_access_hca_mrsi_ext_dump(const struct reg_access_hca_mrsi_ext *ptr_struct, FILE *fd) { reg_access_hca_mrsi_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtcap_ext_pack(const struct reg_access_hca_mtcap_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 25; adb2c_push_bits_to_buff(ptr_buff, offset, 7, (u_int32_t)ptr_struct->sensor_count); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 57; adb2c_push_bits_to_buff(ptr_buff, offset, 7, (u_int32_t)ptr_struct->internal_sensor_count); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->sensor_map); } void reg_access_hca_mtcap_ext_unpack(struct reg_access_hca_mtcap_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 25; ptr_struct->sensor_count = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 7); offset = 12; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 57; ptr_struct->internal_sensor_count = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 7); offset = 64; ptr_struct->sensor_map = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void reg_access_hca_mtcap_ext_print(const struct reg_access_hca_mtcap_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtcap_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sensor_count : " UH_FMT "\n", ptr_struct->sensor_count); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "internal_sensor_count : " UH_FMT "\n", ptr_struct->internal_sensor_count); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sensor_map : " U64H_FMT "\n", ptr_struct->sensor_map); } unsigned int reg_access_hca_mtcap_ext_size(void) { return REG_ACCESS_HCA_MTCAP_EXT_SIZE; } void reg_access_hca_mtcap_ext_dump(const struct reg_access_hca_mtcap_ext *ptr_struct, FILE *fd) { reg_access_hca_mtcap_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtdc_ext_pack(const struct reg_access_hca_mtdc_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 30; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->tracer_limit_en); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->tlb_addr_msb); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 20, (u_int32_t)ptr_struct->tlb_addr_lsb); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->hw_pointer); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->sw_pointer); } void reg_access_hca_mtdc_ext_unpack(struct reg_access_hca_mtdc_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 30; ptr_struct->tracer_limit_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 64; ptr_struct->tlb_addr_msb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->tlb_addr_lsb = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 20); offset = 128; ptr_struct->hw_pointer = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 160; ptr_struct->sw_pointer = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mtdc_ext_print(const struct reg_access_hca_mtdc_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtdc_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tracer_limit_en : " UH_FMT "\n", ptr_struct->tracer_limit_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tlb_addr_msb : " U32H_FMT "\n", ptr_struct->tlb_addr_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tlb_addr_lsb : " UH_FMT "\n", ptr_struct->tlb_addr_lsb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_pointer : " U32H_FMT "\n", ptr_struct->hw_pointer); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sw_pointer : " U32H_FMT "\n", ptr_struct->sw_pointer); } unsigned int reg_access_hca_mtdc_ext_size(void) { return REG_ACCESS_HCA_MTDC_EXT_SIZE; } void reg_access_hca_mtdc_ext_dump(const struct reg_access_hca_mtdc_ext *ptr_struct, FILE *fd) { reg_access_hca_mtdc_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mteim_reg_ext_pack(const struct reg_access_hca_mteim_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->cap_core_tile); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->cap_core_main); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->cap_core_dpa); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->cap_num_of_tile); offset = 60; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->type_core_tile); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->type_core_main); offset = 52; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->type_core_dpa); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->is_phy_uc_supported); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->is_dwsn_msb_supported); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->first_dpa_core_event_id); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->first_main_core_event_id); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(120, 8, i, 384, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->first_tile_core_event_id[i]); } } void reg_access_hca_mteim_reg_ext_unpack(struct reg_access_hca_mteim_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->cap_core_tile = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->cap_core_main = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->cap_core_dpa = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->cap_num_of_tile = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 60; ptr_struct->type_core_tile = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 56; ptr_struct->type_core_main = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 52; ptr_struct->type_core_dpa = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 33; ptr_struct->is_phy_uc_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->is_dwsn_msb_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 72; ptr_struct->first_dpa_core_event_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->first_main_core_event_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(120, 8, i, 384, 1); ptr_struct->first_tile_core_event_id[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void reg_access_hca_mteim_reg_ext_print(const struct reg_access_hca_mteim_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mteim_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cap_core_tile : " UH_FMT "\n", ptr_struct->cap_core_tile); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cap_core_main : " UH_FMT "\n", ptr_struct->cap_core_main); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cap_core_dpa : " UH_FMT "\n", ptr_struct->cap_core_dpa); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cap_num_of_tile : " UH_FMT "\n", ptr_struct->cap_num_of_tile); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_core_tile : " UH_FMT "\n", ptr_struct->type_core_tile); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_core_main : " UH_FMT "\n", ptr_struct->type_core_main); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_core_dpa : " UH_FMT "\n", ptr_struct->type_core_dpa); adb2c_add_indentation(fd, indent_level); fprintf(fd, "is_phy_uc_supported : " UH_FMT "\n", ptr_struct->is_phy_uc_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "is_dwsn_msb_supported : " UH_FMT "\n", ptr_struct->is_dwsn_msb_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "first_dpa_core_event_id : " UH_FMT "\n", ptr_struct->first_dpa_core_event_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "first_main_core_event_id : " UH_FMT "\n", ptr_struct->first_main_core_event_id); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "first_tile_core_event_id_%03d : " UH_FMT "\n", i, ptr_struct->first_tile_core_event_id[i]); } } unsigned int reg_access_hca_mteim_reg_ext_size(void) { return REG_ACCESS_HCA_MTEIM_REG_EXT_SIZE; } void reg_access_hca_mteim_reg_ext_dump(const struct reg_access_hca_mteim_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mteim_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtie_ext_pack(const struct reg_access_hca_mtie_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 30; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->enable_all); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->log_delay); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 384, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->source_id_bitmask[i]); } } void reg_access_hca_mtie_ext_unpack(struct reg_access_hca_mtie_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 30; ptr_struct->enable_all = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 48; ptr_struct->log_delay = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 384, 1); ptr_struct->source_id_bitmask[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_mtie_ext_print(const struct reg_access_hca_mtie_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtie_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "enable_all : " UH_FMT "\n", ptr_struct->enable_all); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_delay : " UH_FMT "\n", ptr_struct->log_delay); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "source_id_bitmask_%03d : " U32H_FMT "\n", i, ptr_struct->source_id_bitmask[i]); } } unsigned int reg_access_hca_mtie_ext_size(void) { return REG_ACCESS_HCA_MTIE_EXT_SIZE; } void reg_access_hca_mtie_ext_dump(const struct reg_access_hca_mtie_ext *ptr_struct, FILE *fd) { reg_access_hca_mtie_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtim_ext_pack(const struct reg_access_hca_mtim_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->log_level); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->log_bit_mask); } void reg_access_hca_mtim_ext_unpack(struct reg_access_hca_mtim_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->log_level = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->log_bit_mask = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mtim_ext_print(const struct reg_access_hca_mtim_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtim_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_level : " UH_FMT "\n", ptr_struct->log_level); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_bit_mask : " U32H_FMT "\n", ptr_struct->log_bit_mask); } unsigned int reg_access_hca_mtim_ext_size(void) { return REG_ACCESS_HCA_MTIM_EXT_SIZE; } void reg_access_hca_mtim_ext_dump(const struct reg_access_hca_mtim_ext *ptr_struct, FILE *fd) { reg_access_hca_mtim_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtmp_ext_pack(const struct reg_access_hca_mtmp_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->sensor_index); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->temperature); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->max_temperature); offset = 67; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sdme); offset = 66; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->weme); offset = 65; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mtr); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mte); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->temperature_threshold_hi); offset = 98; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->sdee); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->tee); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->temperature_threshold_lo); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->sensor_name_hi); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->sensor_name_lo); } void reg_access_hca_mtmp_ext_unpack(struct reg_access_hca_mtmp_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 20; ptr_struct->sensor_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 12; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->temperature = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->max_temperature = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 67; ptr_struct->sdme = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 66; ptr_struct->weme = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 65; ptr_struct->mtr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->mte = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 112; ptr_struct->temperature_threshold_hi = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 98; ptr_struct->sdee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 96; ptr_struct->tee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 144; ptr_struct->temperature_threshold_lo = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 192; ptr_struct->sensor_name_hi = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 224; ptr_struct->sensor_name_lo = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mtmp_ext_print(const struct reg_access_hca_mtmp_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtmp_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sensor_index : " UH_FMT "\n", ptr_struct->sensor_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "temperature : " UH_FMT "\n", ptr_struct->temperature); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_temperature : " UH_FMT "\n", ptr_struct->max_temperature); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sdme : " UH_FMT "\n", ptr_struct->sdme); adb2c_add_indentation(fd, indent_level); fprintf(fd, "weme : " UH_FMT "\n", ptr_struct->weme); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtr : " UH_FMT "\n", ptr_struct->mtr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mte : " UH_FMT "\n", ptr_struct->mte); adb2c_add_indentation(fd, indent_level); fprintf(fd, "temperature_threshold_hi : " UH_FMT "\n", ptr_struct->temperature_threshold_hi); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sdee : " UH_FMT "\n", ptr_struct->sdee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tee : %s (" UH_FMT ")\n", (ptr_struct->tee == 0 ? ("do_not_generate_event") : ((ptr_struct->tee == 1 ? ("generate_event") : ((ptr_struct->tee == 2 ? ("generate_single_event") : ("unknown")))))), ptr_struct->tee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "temperature_threshold_lo : " UH_FMT "\n", ptr_struct->temperature_threshold_lo); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sensor_name_hi : " U32H_FMT "\n", ptr_struct->sensor_name_hi); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sensor_name_lo : " U32H_FMT "\n", ptr_struct->sensor_name_lo); } unsigned int reg_access_hca_mtmp_ext_size(void) { return REG_ACCESS_HCA_MTMP_EXT_SIZE; } void reg_access_hca_mtmp_ext_dump(const struct reg_access_hca_mtmp_ext *ptr_struct, FILE *fd) { reg_access_hca_mtmp_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtrc_cap_reg_ext_pack(const struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->num_string_db); offset = 6; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->trc_ver); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->trace_to_memory); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->trace_owner); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_string_trace); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->first_string_trace); offset = 88; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_max_trace_buffer_size); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->tracer_capabilities); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(128, 64, i, 1056, 1); reg_access_hca_string_db_parameters_ext_pack(&(ptr_struct->string_db_param[i]), ptr_buff + offset / 8); } } void reg_access_hca_mtrc_cap_reg_ext_unpack(struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 28; ptr_struct->num_string_db = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 6; ptr_struct->trc_ver = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 1; ptr_struct->trace_to_memory = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->trace_owner = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 40; ptr_struct->num_string_trace = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->first_string_trace = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 88; ptr_struct->log_max_trace_buffer_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->tracer_capabilities = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(128, 64, i, 1056, 1); reg_access_hca_string_db_parameters_ext_unpack(&(ptr_struct->string_db_param[i]), ptr_buff + offset / 8); } } void reg_access_hca_mtrc_cap_reg_ext_print(const struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtrc_cap_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_string_db : " UH_FMT "\n", ptr_struct->num_string_db); adb2c_add_indentation(fd, indent_level); fprintf(fd, "trc_ver : " UH_FMT "\n", ptr_struct->trc_ver); adb2c_add_indentation(fd, indent_level); fprintf(fd, "trace_to_memory : " UH_FMT "\n", ptr_struct->trace_to_memory); adb2c_add_indentation(fd, indent_level); fprintf(fd, "trace_owner : " UH_FMT "\n", ptr_struct->trace_owner); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_string_trace : " UH_FMT "\n", ptr_struct->num_string_trace); adb2c_add_indentation(fd, indent_level); fprintf(fd, "first_string_trace : " UH_FMT "\n", ptr_struct->first_string_trace); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_max_trace_buffer_size : " UH_FMT "\n", ptr_struct->log_max_trace_buffer_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tracer_capabilities : " UH_FMT "\n", ptr_struct->tracer_capabilities); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "string_db_param_%03d:\n", i); reg_access_hca_string_db_parameters_ext_print(&(ptr_struct->string_db_param[i]), fd, indent_level + 1); } } unsigned int reg_access_hca_mtrc_cap_reg_ext_size(void) { return REG_ACCESS_HCA_MTRC_CAP_REG_EXT_SIZE; } void reg_access_hca_mtrc_cap_reg_ext_dump(const struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mtrc_cap_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtrc_conf_reg_ext_pack(const struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->trace_mode); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_trace_buffer_size); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->trace_mkey); } void reg_access_hca_mtrc_conf_reg_ext_unpack(struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->trace_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 56; ptr_struct->log_trace_buffer_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->trace_mkey = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mtrc_conf_reg_ext_print(const struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtrc_conf_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "trace_mode : " UH_FMT "\n", ptr_struct->trace_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_trace_buffer_size : " UH_FMT "\n", ptr_struct->log_trace_buffer_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "trace_mkey : " U32H_FMT "\n", ptr_struct->trace_mkey); } unsigned int reg_access_hca_mtrc_conf_reg_ext_size(void) { return REG_ACCESS_HCA_MTRC_CONF_REG_EXT_SIZE; } void reg_access_hca_mtrc_conf_reg_ext_dump(const struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mtrc_conf_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtrc_ctrl_reg_ext_pack(const struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->modify_field_select); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->arm_event); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->trace_status); offset = 75; adb2c_push_bits_to_buff(ptr_buff, offset, 21, (u_int32_t)ptr_struct->current_timestamp_52_32); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->current_timestamp_31_0); } void reg_access_hca_mtrc_ctrl_reg_ext_unpack(struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->modify_field_select = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 4; ptr_struct->arm_event = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->trace_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 75; ptr_struct->current_timestamp_52_32 = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 21); offset = 96; ptr_struct->current_timestamp_31_0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void reg_access_hca_mtrc_ctrl_reg_ext_print(const struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtrc_ctrl_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "modify_field_select : " UH_FMT "\n", ptr_struct->modify_field_select); adb2c_add_indentation(fd, indent_level); fprintf(fd, "arm_event : " UH_FMT "\n", ptr_struct->arm_event); adb2c_add_indentation(fd, indent_level); fprintf(fd, "trace_status : " UH_FMT "\n", ptr_struct->trace_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "current_timestamp_52_32 : " UH_FMT "\n", ptr_struct->current_timestamp_52_32); adb2c_add_indentation(fd, indent_level); fprintf(fd, "current_timestamp_31_0 : " U32H_FMT "\n", ptr_struct->current_timestamp_31_0); } unsigned int reg_access_hca_mtrc_ctrl_reg_ext_size(void) { return REG_ACCESS_HCA_MTRC_CTRL_REG_EXT_SIZE; } void reg_access_hca_mtrc_ctrl_reg_ext_dump(const struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mtrc_ctrl_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_mtrc_stdb_reg_ext_pack(const struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->read_size); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->string_db_index); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->start_offset); int item_size_in_bytes = 4; int num_of_items_in_array = (int)ptr_struct->read_size / item_size_in_bytes; for (i = 0; i < num_of_items_in_array; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, (item_size_in_bytes * num_of_items_in_array) + (reg_access_hca_mtrc_stdb_reg_ext_size() * 8), 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->string_db_data[i]); } } void reg_access_hca_mtrc_stdb_reg_ext_unpack(struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 8; ptr_struct->read_size = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 0; ptr_struct->string_db_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->start_offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); int item_size_in_bytes = 4; int num_of_items_in_array = (int)ptr_struct->read_size / item_size_in_bytes; for (i = 0; i < num_of_items_in_array; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, (item_size_in_bytes * num_of_items_in_array) + (reg_access_hca_mtrc_stdb_reg_ext_size() * 8), 1); ptr_struct->string_db_data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_mtrc_stdb_reg_ext_print(const struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_mtrc_stdb_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "read_size : " UH_FMT "\n", ptr_struct->read_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "string_db_index : " UH_FMT "\n", ptr_struct->string_db_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "start_offset : " U32H_FMT "\n", ptr_struct->start_offset); int item_size_in_bytes = 4; int num_of_items_in_array = (int)ptr_struct->read_size / item_size_in_bytes; for (i = 0; i < num_of_items_in_array; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "string_db_data_%03d : " U32H_FMT "\n", i, ptr_struct->string_db_data[i]); } } unsigned int reg_access_hca_mtrc_stdb_reg_ext_size(void) { return REG_ACCESS_HCA_MTRC_STDB_REG_EXT_SIZE; } void reg_access_hca_mtrc_stdb_reg_ext_dump(const struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_mtrc_stdb_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_nic_cap_ext_reg_ext_pack(const struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->cap_group); for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 1024, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cap_data[i]); } } void reg_access_hca_nic_cap_ext_reg_ext_unpack(struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->cap_group = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 1024, 1); ptr_struct->cap_data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_nic_cap_ext_reg_ext_print(const struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_nic_cap_ext_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cap_group : %s (" UH_FMT ")\n", (ptr_struct->cap_group == 1 ? ("DPA_CAP") : ("unknown")), ptr_struct->cap_group); for (i = 0; i < 28; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "cap_data_%03d : " U32H_FMT "\n", i, ptr_struct->cap_data[i]); } } unsigned int reg_access_hca_nic_cap_ext_reg_ext_size(void) { return REG_ACCESS_HCA_NIC_CAP_EXT_REG_EXT_SIZE; } void reg_access_hca_nic_cap_ext_reg_ext_dump(const struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_nic_cap_ext_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_nic_dpa_eu_partition_reg_ext_pack(const struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->eu_partition_id); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->operation); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->modify_field_select); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->max_num_eug); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_vhca_id); for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(512, 32, i, 6144, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->member_mask[i]); } for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(1552, 16, i, 6144, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vhca_id[i]); } } void reg_access_hca_nic_dpa_eu_partition_reg_ext_unpack(struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; ptr_struct->eu_partition_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 1; ptr_struct->operation = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 32; ptr_struct->modify_field_select = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->max_num_eug = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 72; ptr_struct->num_vhca_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(512, 32, i, 6144, 1); ptr_struct->member_mask[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(1552, 16, i, 6144, 1); ptr_struct->vhca_id[i] = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } } void reg_access_hca_nic_dpa_eu_partition_reg_ext_print(const struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_nic_dpa_eu_partition_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "eu_partition_id : " UH_FMT "\n", ptr_struct->eu_partition_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operation : %s (" UH_FMT ")\n", (ptr_struct->operation == 0 ? ("CRETAE") : ((ptr_struct->operation == 1 ? ("MODIFY") : ((ptr_struct->operation == 2 ? ("DESTROY") : ("unknown")))))), ptr_struct->operation); adb2c_add_indentation(fd, indent_level); fprintf(fd, "modify_field_select : %s (" U32H_FMT ")\n", (ptr_struct->modify_field_select == 1 ? ("member_mask") : ((ptr_struct->modify_field_select == 2 ? ("max_num_eug") : ((ptr_struct->modify_field_select == 4 ? ("num_vhca_id_and_vhca_id") : ("unknown")))))), ptr_struct->modify_field_select); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_num_eug : " UH_FMT "\n", ptr_struct->max_num_eug); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_vhca_id : " UH_FMT "\n", ptr_struct->num_vhca_id); for (i = 0; i < 32; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "member_mask_%03d : " U32H_FMT "\n", i, ptr_struct->member_mask[i]); } for (i = 0; i < 256; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "vhca_id_%03d : " UH_FMT "\n", i, ptr_struct->vhca_id[i]); } } unsigned int reg_access_hca_nic_dpa_eu_partition_reg_ext_size(void) { return REG_ACCESS_HCA_NIC_DPA_EU_PARTITION_REG_EXT_SIZE; } void reg_access_hca_nic_dpa_eu_partition_reg_ext_dump(const struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_nic_dpa_eu_partition_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_nic_dpa_eug_reg_ext_pack(const struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->eug_id); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->operation); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->modify_field_select); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 2048, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->eug_name[i]); } for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(512, 32, i, 2048, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->member_mask[i]); } } void reg_access_hca_nic_dpa_eug_reg_ext_unpack(struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; ptr_struct->eug_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 1; ptr_struct->operation = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 32; ptr_struct->modify_field_select = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 2048, 1); ptr_struct->eug_name[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 32; ++i) { offset = adb2c_calc_array_field_address(512, 32, i, 2048, 1); ptr_struct->member_mask[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_nic_dpa_eug_reg_ext_print(const struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_nic_dpa_eug_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "eug_id : " UH_FMT "\n", ptr_struct->eug_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operation : %s (" UH_FMT ")\n", (ptr_struct->operation == 0 ? ("CRETAE") : ((ptr_struct->operation == 1 ? ("MODIFY") : ((ptr_struct->operation == 2 ? ("DESTROY") : ("unknown")))))), ptr_struct->operation); adb2c_add_indentation(fd, indent_level); fprintf(fd, "modify_field_select : %s (" U32H_FMT ")\n", (ptr_struct->modify_field_select == 1 ? ("member_mask") : ("unknown")), ptr_struct->modify_field_select); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "eug_name_%03d : " U32H_FMT "\n", i, ptr_struct->eug_name[i]); } for (i = 0; i < 32; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "member_mask_%03d : " U32H_FMT "\n", i, ptr_struct->member_mask[i]); } } unsigned int reg_access_hca_nic_dpa_eug_reg_ext_size(void) { return REG_ACCESS_HCA_NIC_DPA_EUG_REG_EXT_SIZE; } void reg_access_hca_nic_dpa_eug_reg_ext_dump(const struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_nic_dpa_eug_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_pack(const struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->dpa_process_id); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->other_vhca_id); offset = 37; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->sample_type); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->other_vhca_id_valid); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->count_state); } void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_unpack(struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->dpa_process_id = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->other_vhca_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 37; ptr_struct->sample_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 36; ptr_struct->other_vhca_id_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->count_state = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); } void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_print(const struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_nic_dpa_perf_ctrl_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dpa_process_id : " U32H_FMT "\n", ptr_struct->dpa_process_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "other_vhca_id : " UH_FMT "\n", ptr_struct->other_vhca_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sample_type : %s (" UH_FMT ")\n", (ptr_struct->sample_type == 0 ? ("CUMMULATIVE_EVENT") : ((ptr_struct->sample_type == 1 ? ("EVENT_TRACER") : ("unknown")))), ptr_struct->sample_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "other_vhca_id_valid : " UH_FMT "\n", ptr_struct->other_vhca_id_valid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "count_state : %s (" UH_FMT ")\n", (ptr_struct->count_state == 0 ? ("UNCHANGED") : ((ptr_struct->count_state == 1 ? ("ACTIVE") : ((ptr_struct->count_state == 2 ? ("INACTIVE") : ((ptr_struct->count_state == 3 ? ("RESET_COUNTERS") : ("unknown")))))))), ptr_struct->count_state); } unsigned int reg_access_hca_nic_dpa_perf_ctrl_reg_ext_size(void) { return REG_ACCESS_HCA_NIC_DPA_PERF_CTRL_REG_EXT_SIZE; } void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_dump(const struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_nic_dpa_perf_ctrl_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_paos_reg_ext_pack(const struct reg_access_hca_paos_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->oper_status); offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->plane_ind); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->admin_status); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->lp_msb); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->local_port); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->swid); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->e); offset = 55; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->fd); offset = 54; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sleep_cap); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ee); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ase); offset = 66; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->lock_mode); } void reg_access_hca_paos_reg_ext_unpack(struct reg_access_hca_paos_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->oper_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 24; ptr_struct->plane_ind = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 20; ptr_struct->admin_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 18; ptr_struct->lp_msb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 8; ptr_struct->local_port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->swid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 62; ptr_struct->e = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 55; ptr_struct->fd = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 54; ptr_struct->sleep_cap = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->ee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->ase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 66; ptr_struct->lock_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); } void reg_access_hca_paos_reg_ext_print(const struct reg_access_hca_paos_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_paos_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "oper_status : %s (" UH_FMT ")\n", (ptr_struct->oper_status == 1 ? ("up") : ((ptr_struct->oper_status == 2 ? ("down") : ((ptr_struct->oper_status == 4 ? ("down_by_port_failure") : ("unknown")))))), ptr_struct->oper_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "plane_ind : " UH_FMT "\n", ptr_struct->plane_ind); adb2c_add_indentation(fd, indent_level); fprintf(fd, "admin_status : %s (" UH_FMT ")\n", (ptr_struct->admin_status == 1 ? ("up") : ((ptr_struct->admin_status == 2 ? ("down_by_configuration") : ((ptr_struct->admin_status == 3 ? ("up_once") : ((ptr_struct->admin_status == 4 ? ("disabled_by_system") : ((ptr_struct->admin_status == 6 ? ("sleep") : ("unknown")))))))))), ptr_struct->admin_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lp_msb : " UH_FMT "\n", ptr_struct->lp_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "local_port : " UH_FMT "\n", ptr_struct->local_port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "swid : " UH_FMT "\n", ptr_struct->swid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "e : %s (" UH_FMT ")\n", (ptr_struct->e == 0 ? ("Do_not_generate_event") : ((ptr_struct->e == 1 ? ("Generate_Event") : ((ptr_struct->e == 2 ? ("Generate_Single_Event") : ("unknown")))))), ptr_struct->e); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fd : " UH_FMT "\n", ptr_struct->fd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sleep_cap : " UH_FMT "\n", ptr_struct->sleep_cap); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ee : " UH_FMT "\n", ptr_struct->ee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ase : " UH_FMT "\n", ptr_struct->ase); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lock_mode : %s (" UH_FMT ")\n", (ptr_struct->lock_mode == 1 ? ("Force_down_by_fuse") : ((ptr_struct->lock_mode == 2 ? ("Force_down_by_hard_wire") : ((ptr_struct->lock_mode == 4 ? ("Force_down_by_config") : ((ptr_struct->lock_mode == 8 ? ("Locked_after_down") : ((ptr_struct->lock_mode == 16 ? ("Locked_by_system") : ("unknown")))))))))), ptr_struct->lock_mode); } unsigned int reg_access_hca_paos_reg_ext_size(void) { return REG_ACCESS_HCA_PAOS_REG_EXT_SIZE; } void reg_access_hca_paos_reg_ext_dump(const struct reg_access_hca_paos_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_paos_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_pcnr_reg_ext_pack(const struct reg_access_hca_pcnr_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->tuning_override); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->lp_msb); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->local_port); offset = 63; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->keep_phy_setting); } void reg_access_hca_pcnr_reg_ext_unpack(struct reg_access_hca_pcnr_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; ptr_struct->tuning_override = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 18; ptr_struct->lp_msb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 8; ptr_struct->local_port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 63; ptr_struct->keep_phy_setting = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_pcnr_reg_ext_print(const struct reg_access_hca_pcnr_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_pcnr_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tuning_override : " UH_FMT "\n", ptr_struct->tuning_override); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lp_msb : " UH_FMT "\n", ptr_struct->lp_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "local_port : " UH_FMT "\n", ptr_struct->local_port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "keep_phy_setting : " UH_FMT "\n", ptr_struct->keep_phy_setting); } unsigned int reg_access_hca_pcnr_reg_ext_size(void) { return REG_ACCESS_HCA_PCNR_REG_EXT_SIZE; } void reg_access_hca_pcnr_reg_ext_dump(const struct reg_access_hca_pcnr_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_pcnr_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_pmaos_reg_ext_pack(const struct reg_access_hca_pmaos_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->oper_status); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->admin_status); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->module); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->slot_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rst); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->e); offset = 51; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->error_type); offset = 44; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->operational_notification); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rev_incompatible); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secondary); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ee); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ase); } void reg_access_hca_pmaos_reg_ext_unpack(struct reg_access_hca_pmaos_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->oper_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 20; ptr_struct->admin_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 8; ptr_struct->module = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 4; ptr_struct->slot_index = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 0; ptr_struct->rst = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 62; ptr_struct->e = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 51; ptr_struct->error_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 44; ptr_struct->operational_notification = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 35; ptr_struct->rev_incompatible = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->secondary = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->ee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->ase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_pmaos_reg_ext_print(const struct reg_access_hca_pmaos_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_pmaos_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "oper_status : %s (" UH_FMT ")\n", (ptr_struct->oper_status == 0 ? ("initializing") : ((ptr_struct->oper_status == 1 ? ("plugged_enabled") : ((ptr_struct->oper_status == 2 ? ("unplugged") : ((ptr_struct->oper_status == 3 ? ("module_plugged_with_error") : ((ptr_struct->oper_status == 5 ? ("unknown") : ("unknown")))))))))), ptr_struct->oper_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "admin_status : %s (" UH_FMT ")\n", (ptr_struct->admin_status == 1 ? ("enabled") : ((ptr_struct->admin_status == 2 ? ("disabled_by_configuration") : ((ptr_struct->admin_status == 3 ? ("enabled_once") : ("unknown")))))), ptr_struct->admin_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module : " UH_FMT "\n", ptr_struct->module); adb2c_add_indentation(fd, indent_level); fprintf(fd, "slot_index : " UH_FMT "\n", ptr_struct->slot_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rst : " UH_FMT "\n", ptr_struct->rst); adb2c_add_indentation(fd, indent_level); fprintf(fd, "e : %s (" UH_FMT ")\n", (ptr_struct->e == 0 ? ("Do_not_generate_event") : ((ptr_struct->e == 1 ? ("Generate_Event") : ((ptr_struct->e == 2 ? ("Generate_Single_Event") : ("unknown")))))), ptr_struct->e); adb2c_add_indentation(fd, indent_level); fprintf(fd, "error_type : %s (" UH_FMT ")\n", (ptr_struct->error_type == 0 ? ("Power_Budget_Exceeded") : ((ptr_struct->error_type == 1 ? ("Long_Range_for_non_MLNX_cable_or_module") : ((ptr_struct->error_type == 2 ? ("Bus_stuck") : ((ptr_struct->error_type == 3 ? ("bad_or_unsupported_EEPROM") : ((ptr_struct->error_type == 4 ? ("Enforce_part_number_list") : ((ptr_struct->error_type == 5 ? ("unsupported_cable") : ((ptr_struct->error_type == 6 ? ("High_Temperature") : ((ptr_struct->error_type == 7 ? ("bad_cable") : ((ptr_struct->error_type == 8 ? ("PMD_type_is_not_enabled") : ((ptr_struct->error_type == 12 ? ("pcie_system_power_slot_Exceeded") : ("unknown")))))))))))))))))))), ptr_struct->error_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operational_notification : " UH_FMT "\n", ptr_struct->operational_notification); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rev_incompatible : " UH_FMT "\n", ptr_struct->rev_incompatible); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secondary : " UH_FMT "\n", ptr_struct->secondary); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ee : " UH_FMT "\n", ptr_struct->ee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ase : " UH_FMT "\n", ptr_struct->ase); } unsigned int reg_access_hca_pmaos_reg_ext_size(void) { return REG_ACCESS_HCA_PMAOS_REG_EXT_SIZE; } void reg_access_hca_pmaos_reg_ext_dump(const struct reg_access_hca_pmaos_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_pmaos_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_pmlp_reg_ext_pack(const struct reg_access_hca_pmlp_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->width); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->plane_ind); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->lp_msb); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->local_port); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->m_lane_m); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rxtx); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 512, 1); reg_access_hca_lane_2_module_mapping_ext_pack(&(ptr_struct->lane_module_mapping[i]), ptr_buff + offset / 8); } } void reg_access_hca_pmlp_reg_ext_unpack(struct reg_access_hca_pmlp_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 24; ptr_struct->width = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 20; ptr_struct->plane_ind = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 18; ptr_struct->lp_msb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 8; ptr_struct->local_port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 3; ptr_struct->m_lane_m = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->rxtx = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 512, 1); reg_access_hca_lane_2_module_mapping_ext_unpack(&(ptr_struct->lane_module_mapping[i]), ptr_buff + offset / 8); } } void reg_access_hca_pmlp_reg_ext_print(const struct reg_access_hca_pmlp_reg_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_pmlp_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "width : %s (" UH_FMT ")\n", (ptr_struct->width == 0 ? ("unmap_local_port") : ((ptr_struct->width == 1 ? ("x1") : ((ptr_struct->width == 2 ? ("x2") : ((ptr_struct->width == 4 ? ("x4") : ((ptr_struct->width == 8 ? ("x8") : ("unknown")))))))))), ptr_struct->width); adb2c_add_indentation(fd, indent_level); fprintf(fd, "plane_ind : " UH_FMT "\n", ptr_struct->plane_ind); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lp_msb : " UH_FMT "\n", ptr_struct->lp_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "local_port : " UH_FMT "\n", ptr_struct->local_port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "m_lane_m : " UH_FMT "\n", ptr_struct->m_lane_m); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rxtx : " UH_FMT "\n", ptr_struct->rxtx); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "lane_module_mapping_%03d:\n", i); reg_access_hca_lane_2_module_mapping_ext_print(&(ptr_struct->lane_module_mapping[i]), fd, indent_level + 1); } } unsigned int reg_access_hca_pmlp_reg_ext_size(void) { return REG_ACCESS_HCA_PMLP_REG_EXT_SIZE; } void reg_access_hca_pmlp_reg_ext_dump(const struct reg_access_hca_pmlp_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_pmlp_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_ptys_reg_ext_pack(const struct reg_access_hca_ptys_reg_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->proto_mask); offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->transmit_allowed); offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->plane_ind); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->port_type); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->lp_msb); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->local_port); offset = 7; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->force_tx_aba_param); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->tx_ready_e); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ee_tx_ready); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->an_disable_cap); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->an_disable_admin); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->reserved_high); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->data_rate_oper); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->max_port_rate); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->an_status); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ext_eth_proto_capability); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->eth_proto_capability); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ib_proto_capability); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ib_link_width_capability); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ext_eth_proto_admin); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->eth_proto_admin); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ib_proto_admin); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ib_link_width_admin); offset = 256; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ext_eth_proto_oper); offset = 288; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->eth_proto_oper); offset = 336; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ib_proto_oper); offset = 320; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ib_link_width_oper); offset = 380; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->connector_type); offset = 360; adb2c_push_bits_to_buff(ptr_buff, offset, 20, (u_int32_t)ptr_struct->lane_rate_oper); offset = 359; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->xdr_2x_slow_active); offset = 358; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->xdr_2x_slow_admin); offset = 354; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->force_lt_frames_admin); offset = 353; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->force_lt_frames_cap); offset = 352; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->xdr_2x_slow_cap); } void reg_access_hca_ptys_reg_ext_unpack(struct reg_access_hca_ptys_reg_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 29; ptr_struct->proto_mask = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 28; ptr_struct->transmit_allowed = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 24; ptr_struct->plane_ind = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 20; ptr_struct->port_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 18; ptr_struct->lp_msb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 8; ptr_struct->local_port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 7; ptr_struct->force_tx_aba_param = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 4; ptr_struct->tx_ready_e = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 3; ptr_struct->ee_tx_ready = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->an_disable_cap = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->an_disable_admin = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->reserved_high = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->data_rate_oper = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 36; ptr_struct->max_port_rate = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 32; ptr_struct->an_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->ext_eth_proto_capability = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->eth_proto_capability = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 144; ptr_struct->ib_proto_capability = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 128; ptr_struct->ib_link_width_capability = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 160; ptr_struct->ext_eth_proto_admin = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 192; ptr_struct->eth_proto_admin = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 240; ptr_struct->ib_proto_admin = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 224; ptr_struct->ib_link_width_admin = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 256; ptr_struct->ext_eth_proto_oper = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 288; ptr_struct->eth_proto_oper = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 336; ptr_struct->ib_proto_oper = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 320; ptr_struct->ib_link_width_oper = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 380; ptr_struct->connector_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 360; ptr_struct->lane_rate_oper = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 20); offset = 359; ptr_struct->xdr_2x_slow_active = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 358; ptr_struct->xdr_2x_slow_admin = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 354; ptr_struct->force_lt_frames_admin = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 353; ptr_struct->force_lt_frames_cap = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 352; ptr_struct->xdr_2x_slow_cap = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void reg_access_hca_ptys_reg_ext_print(const struct reg_access_hca_ptys_reg_ext *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_ptys_reg_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "proto_mask : %s (" UH_FMT ")\n", (ptr_struct->proto_mask == 1 ? ("InfiniBand") : ((ptr_struct->proto_mask == 4 ? ("Ethernet") : ("unknown")))), ptr_struct->proto_mask); adb2c_add_indentation(fd, indent_level); fprintf(fd, "transmit_allowed : %s (" UH_FMT ")\n", (ptr_struct->transmit_allowed == 0 ? ("transmit_not_allowed") : ((ptr_struct->transmit_allowed == 1 ? ("transmit_allowed") : ("unknown")))), ptr_struct->transmit_allowed); adb2c_add_indentation(fd, indent_level); fprintf(fd, "plane_ind : " UH_FMT "\n", ptr_struct->plane_ind); adb2c_add_indentation(fd, indent_level); fprintf(fd, "port_type : %s (" UH_FMT ")\n", (ptr_struct->port_type == 0 ? ("Network_Port") : ((ptr_struct->port_type == 1 ? ("Near") : ((ptr_struct->port_type == 2 ? ("Internal_IC_Port") : ((ptr_struct->port_type == 3 ? ("Far") : ("unknown")))))))), ptr_struct->port_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lp_msb : " UH_FMT "\n", ptr_struct->lp_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "local_port : " UH_FMT "\n", ptr_struct->local_port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "force_tx_aba_param : " UH_FMT "\n", ptr_struct->force_tx_aba_param); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tx_ready_e : " UH_FMT "\n", ptr_struct->tx_ready_e); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ee_tx_ready : " UH_FMT "\n", ptr_struct->ee_tx_ready); adb2c_add_indentation(fd, indent_level); fprintf(fd, "an_disable_cap : " UH_FMT "\n", ptr_struct->an_disable_cap); adb2c_add_indentation(fd, indent_level); fprintf(fd, "an_disable_admin : " UH_FMT "\n", ptr_struct->an_disable_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved_high : " UH_FMT "\n", ptr_struct->reserved_high); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_rate_oper : " UH_FMT "\n", ptr_struct->data_rate_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_port_rate : " UH_FMT "\n", ptr_struct->max_port_rate); adb2c_add_indentation(fd, indent_level); fprintf(fd, "an_status : %s (" UH_FMT ")\n", (ptr_struct->an_status == 0 ? ("Status_is_unavailable") : ((ptr_struct->an_status == 1 ? ("AN_completed_successfully") : ((ptr_struct->an_status == 2 ? ("AN_performed_but_failed") : ((ptr_struct->an_status == 3 ? ("AN_was_not_performed_link_is_up") : ((ptr_struct->an_status == 4 ? ("AN_was_not_performed_link_is_down") : ("unknown")))))))))), ptr_struct->an_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ext_eth_proto_capability : " U32H_FMT "\n", ptr_struct->ext_eth_proto_capability); adb2c_add_indentation(fd, indent_level); fprintf(fd, "eth_proto_capability : " U32H_FMT "\n", ptr_struct->eth_proto_capability); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_proto_capability : %s (" UH_FMT ")\n", (ptr_struct->ib_proto_capability == 1 ? ("SDR") : ((ptr_struct->ib_proto_capability == 2 ? ("DDR") : ((ptr_struct->ib_proto_capability == 4 ? ("QDR") : ((ptr_struct->ib_proto_capability == 8 ? ("FDR10") : ((ptr_struct->ib_proto_capability == 16 ? ("FDR") : ((ptr_struct->ib_proto_capability == 32 ? ("EDR") : ((ptr_struct->ib_proto_capability == 64 ? ("HDR") : ((ptr_struct->ib_proto_capability == 128 ? ("NDR") : ((ptr_struct->ib_proto_capability == 256 ? ("XDR") : ("unknown")))))))))))))))))), ptr_struct->ib_proto_capability); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_link_width_capability : " UH_FMT "\n", ptr_struct->ib_link_width_capability); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ext_eth_proto_admin : " U32H_FMT "\n", ptr_struct->ext_eth_proto_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "eth_proto_admin : " U32H_FMT "\n", ptr_struct->eth_proto_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_proto_admin : " UH_FMT "\n", ptr_struct->ib_proto_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_link_width_admin : " UH_FMT "\n", ptr_struct->ib_link_width_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ext_eth_proto_oper : " U32H_FMT "\n", ptr_struct->ext_eth_proto_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "eth_proto_oper : " U32H_FMT "\n", ptr_struct->eth_proto_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_proto_oper : " UH_FMT "\n", ptr_struct->ib_proto_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ib_link_width_oper : " UH_FMT "\n", ptr_struct->ib_link_width_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "connector_type : %s (" UH_FMT ")\n", (ptr_struct->connector_type == 0 ? ("No_connector_or_unknown") : ((ptr_struct->connector_type == 1 ? ("PORT_NONE") : ((ptr_struct->connector_type == 2 ? ("PORT_TP") : ((ptr_struct->connector_type == 3 ? ("PORT_AUI") : ((ptr_struct->connector_type == 4 ? ("PORT_BNC") : ((ptr_struct->connector_type == 5 ? ("PORT_MII") : ((ptr_struct->connector_type == 6 ? ("PORT_FIBRE") : ((ptr_struct->connector_type == 7 ? ("PORT_DA") : ((ptr_struct->connector_type == 8 ? ("PORT_OTHER") : ("unknown")))))))))))))))))), ptr_struct->connector_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lane_rate_oper : " UH_FMT "\n", ptr_struct->lane_rate_oper); adb2c_add_indentation(fd, indent_level); fprintf(fd, "xdr_2x_slow_active : " UH_FMT "\n", ptr_struct->xdr_2x_slow_active); adb2c_add_indentation(fd, indent_level); fprintf(fd, "xdr_2x_slow_admin : " UH_FMT "\n", ptr_struct->xdr_2x_slow_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "force_lt_frames_admin : " UH_FMT "\n", ptr_struct->force_lt_frames_admin); adb2c_add_indentation(fd, indent_level); fprintf(fd, "force_lt_frames_cap : " UH_FMT "\n", ptr_struct->force_lt_frames_cap); adb2c_add_indentation(fd, indent_level); fprintf(fd, "xdr_2x_slow_cap : " UH_FMT "\n", ptr_struct->xdr_2x_slow_cap); } unsigned int reg_access_hca_ptys_reg_ext_size(void) { return REG_ACCESS_HCA_PTYS_REG_EXT_SIZE; } void reg_access_hca_ptys_reg_ext_dump(const struct reg_access_hca_ptys_reg_ext *ptr_struct, FILE *fd) { reg_access_hca_ptys_reg_ext_print(ptr_struct, fd, 0); } void reg_access_hca_resource_dump_ext_pack(const struct reg_access_hca_resource_dump_ext *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->segment_type); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->seq_num); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->vhca_id_valid); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->inline_dump); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->more_dump); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vhca_id); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->index1); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->index2); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_obj2); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_obj1); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->device_opaque); offset = 256; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mkey); offset = 288; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->size); offset = 320; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->address); for (i = 0; i < 52; ++i) { offset = adb2c_calc_array_field_address(384, 32, i, 2048, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->inline_data[i]); } } void reg_access_hca_resource_dump_ext_unpack(struct reg_access_hca_resource_dump_ext *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 16; ptr_struct->segment_type = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 12; ptr_struct->seq_num = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 2; ptr_struct->vhca_id_valid = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->inline_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->more_dump = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->vhca_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->index1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->index2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 144; ptr_struct->num_of_obj2 = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 128; ptr_struct->num_of_obj1 = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 192; ptr_struct->device_opaque = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); offset = 256; ptr_struct->mkey = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 288; ptr_struct->size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 320; ptr_struct->address = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); for (i = 0; i < 52; ++i) { offset = adb2c_calc_array_field_address(384, 32, i, 2048, 1); ptr_struct->inline_data[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void reg_access_hca_resource_dump_ext_print(const struct reg_access_hca_resource_dump_ext *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_resource_dump_ext ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "segment_type : " UH_FMT "\n", ptr_struct->segment_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "seq_num : " UH_FMT "\n", ptr_struct->seq_num); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vhca_id_valid : " UH_FMT "\n", ptr_struct->vhca_id_valid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "inline_dump : " UH_FMT "\n", ptr_struct->inline_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "more_dump : " UH_FMT "\n", ptr_struct->more_dump); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vhca_id : " UH_FMT "\n", ptr_struct->vhca_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "index1 : " U32H_FMT "\n", ptr_struct->index1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "index2 : " U32H_FMT "\n", ptr_struct->index2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_obj2 : " UH_FMT "\n", ptr_struct->num_of_obj2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_obj1 : " UH_FMT "\n", ptr_struct->num_of_obj1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_opaque : " U64H_FMT "\n", ptr_struct->device_opaque); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mkey : " U32H_FMT "\n", ptr_struct->mkey); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " U32H_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "address : " U64H_FMT "\n", ptr_struct->address); for (i = 0; i < 52; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "inline_data_%03d : " U32H_FMT "\n", i, ptr_struct->inline_data[i]); } } unsigned int reg_access_hca_resource_dump_ext_size(void) { return REG_ACCESS_HCA_RESOURCE_DUMP_EXT_SIZE; } void reg_access_hca_resource_dump_ext_dump(const struct reg_access_hca_resource_dump_ext *ptr_struct, FILE *fd) { reg_access_hca_resource_dump_ext_print(ptr_struct, fd, 0); } void reg_access_hca_reg_access_hca_Nodes_pack(const union reg_access_hca_reg_access_hca_Nodes *ptr_struct, u_int8_t *ptr_buff) { reg_access_hca_nic_dpa_eu_partition_reg_ext_pack(&(ptr_struct->nic_dpa_eu_partition_reg_ext), ptr_buff); } void reg_access_hca_reg_access_hca_Nodes_unpack(union reg_access_hca_reg_access_hca_Nodes *ptr_struct, const u_int8_t *ptr_buff) { reg_access_hca_nic_dpa_eu_partition_reg_ext_unpack(&(ptr_struct->nic_dpa_eu_partition_reg_ext), ptr_buff); } void reg_access_hca_reg_access_hca_Nodes_print(const union reg_access_hca_reg_access_hca_Nodes *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== reg_access_hca_reg_access_hca_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_linkx_properties_ext:\n"); reg_access_hca_mcqi_linkx_properties_ext_print(&(ptr_struct->mcqi_linkx_properties_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mrsi_ext:\n"); reg_access_hca_mrsi_ext_print(&(ptr_struct->mrsi_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nic_dpa_eu_partition_reg_ext:\n"); reg_access_hca_nic_dpa_eu_partition_reg_ext_print(&(ptr_struct->nic_dpa_eu_partition_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfba_reg_ext:\n"); reg_access_hca_mfba_reg_ext_print(&(ptr_struct->mfba_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pmaos_reg_ext:\n"); reg_access_hca_pmaos_reg_ext_print(&(ptr_struct->pmaos_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtrc_stdb_reg_ext:\n"); reg_access_hca_mtrc_stdb_reg_ext_print(&(ptr_struct->mtrc_stdb_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pcnr_reg_ext:\n"); reg_access_hca_pcnr_reg_ext_print(&(ptr_struct->pcnr_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqs_reg_ext:\n"); reg_access_hca_mcqs_reg_ext_print(&(ptr_struct->mcqs_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtcap_ext:\n"); reg_access_hca_mtcap_ext_print(&(ptr_struct->mtcap_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_activation_method_ext:\n"); reg_access_hca_mcqi_activation_method_ext_print(&(ptr_struct->mcqi_activation_method_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcc_reg_ext:\n"); reg_access_hca_mcc_reg_ext_print(&(ptr_struct->mcc_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nic_cap_ext_reg_ext:\n"); reg_access_hca_nic_cap_ext_reg_ext_print(&(ptr_struct->nic_cap_ext_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nic_dpa_eug_reg_ext:\n"); reg_access_hca_nic_dpa_eug_reg_ext_print(&(ptr_struct->nic_dpa_eug_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcda_reg_ext:\n"); reg_access_hca_mcda_reg_ext_print(&(ptr_struct->mcda_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtim_ext:\n"); reg_access_hca_mtim_ext_print(&(ptr_struct->mtim_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtdc_ext:\n"); reg_access_hca_mtdc_ext_print(&(ptr_struct->mtdc_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcam_reg_ext:\n"); reg_access_hca_mcam_reg_ext_print(&(ptr_struct->mcam_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pmlp_reg_ext:\n"); reg_access_hca_pmlp_reg_ext_print(&(ptr_struct->pmlp_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfbe_reg_ext:\n"); reg_access_hca_mfbe_reg_ext_print(&(ptr_struct->mfbe_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfrl_reg_ext:\n"); reg_access_hca_mfrl_reg_ext_print(&(ptr_struct->mfrl_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_version_ext:\n"); reg_access_hca_mcqi_version_ext_print(&(ptr_struct->mcqi_version_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "paos_reg_ext:\n"); reg_access_hca_paos_reg_ext_print(&(ptr_struct->paos_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ptys_reg_ext:\n"); reg_access_hca_ptys_reg_ext_print(&(ptr_struct->ptys_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mpegc_reg_ext:\n"); reg_access_hca_mpegc_reg_ext_print(&(ptr_struct->mpegc_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfpa_reg_ext:\n"); reg_access_hca_mfpa_reg_ext_print(&(ptr_struct->mfpa_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_reg_ext:\n"); reg_access_hca_mcqi_reg_ext_print(&(ptr_struct->mcqi_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtmp_ext:\n"); reg_access_hca_mtmp_ext_print(&(ptr_struct->mtmp_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mmdio_ext:\n"); reg_access_hca_mmdio_ext_print(&(ptr_struct->mmdio_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mgir_ext:\n"); reg_access_hca_mgir_ext_print(&(ptr_struct->mgir_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtie_ext:\n"); reg_access_hca_mtie_ext_print(&(ptr_struct->mtie_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mpcir_ext:\n"); reg_access_hca_mpcir_ext_print(&(ptr_struct->mpcir_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcia_ext:\n"); reg_access_hca_mcia_ext_print(&(ptr_struct->mcia_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtrc_conf_reg_ext:\n"); reg_access_hca_mtrc_conf_reg_ext_print(&(ptr_struct->mtrc_conf_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtrc_ctrl_reg_ext:\n"); reg_access_hca_mtrc_ctrl_reg_ext_print(&(ptr_struct->mtrc_ctrl_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfsv_reg_ext:\n"); reg_access_hca_mfsv_reg_ext_print(&(ptr_struct->mfsv_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_cap:\n"); reg_access_hca_debug_cap_print(&(ptr_struct->debug_cap), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mnvdi_reg_ext:\n"); reg_access_hca_mnvdi_reg_ext_print(&(ptr_struct->mnvdi_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcqi_cap_ext:\n"); reg_access_hca_mcqi_cap_ext_print(&(ptr_struct->mcqi_cap_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "resource_dump_ext:\n"); reg_access_hca_resource_dump_ext_print(&(ptr_struct->resource_dump_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mnvqc_reg_ext:\n"); reg_access_hca_mnvqc_reg_ext_print(&(ptr_struct->mnvqc_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mnvgc_reg_ext:\n"); reg_access_hca_mnvgc_reg_ext_print(&(ptr_struct->mnvgc_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtrc_cap_reg_ext:\n"); reg_access_hca_mtrc_cap_reg_ext_print(&(ptr_struct->mtrc_cap_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dtor_reg_ext:\n"); reg_access_hca_dtor_reg_ext_print(&(ptr_struct->dtor_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mnvia_reg_ext:\n"); reg_access_hca_mnvia_reg_ext_print(&(ptr_struct->mnvia_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mteim_reg_ext:\n"); reg_access_hca_mteim_reg_ext_print(&(ptr_struct->mteim_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nic_dpa_perf_ctrl_reg_ext:\n"); reg_access_hca_nic_dpa_perf_ctrl_reg_ext_print(&(ptr_struct->nic_dpa_perf_ctrl_reg_ext), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mqis_reg_ext:\n"); reg_access_hca_mqis_reg_ext_print(&(ptr_struct->mqis_reg_ext), fd, indent_level + 1); } unsigned int reg_access_hca_reg_access_hca_Nodes_size(void) { return REG_ACCESS_HCA_REG_ACCESS_HCA_NODES_SIZE; } void reg_access_hca_reg_access_hca_Nodes_dump(const union reg_access_hca_reg_access_hca_Nodes *ptr_struct, FILE *fd) { reg_access_hca_reg_access_hca_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/icmd_layouts.c0000644000175000017500000004314514522641732021472 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "icmd_layouts.h" void connectib_FW_VERSION_pack(const struct connectib_FW_VERSION* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Hour); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Minutes); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Seconds); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Day); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Month); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->Year); } void connectib_FW_VERSION_unpack(struct connectib_FW_VERSION* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->Hour = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 72; ptr_struct->Minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->Seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 120; ptr_struct->Day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->Month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 96; ptr_struct->Year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectib_FW_VERSION_print(const struct connectib_FW_VERSION* ptr_struct, FILE* file, int indent_level) { adb2c_add_indentation(file, indent_level); fprintf(file, "======== connectib_FW_VERSION ========\n"); int i = 0; (void)i; (void)ptr_struct; (void)file; (void)indent_level; adb2c_add_indentation(file, indent_level); fprintf(file, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(file, indent_level); fprintf(file, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(file, indent_level); fprintf(file, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); adb2c_add_indentation(file, indent_level); fprintf(file, "Hour : " UH_FMT "\n", ptr_struct->Hour); adb2c_add_indentation(file, indent_level); fprintf(file, "Minutes : " UH_FMT "\n", ptr_struct->Minutes); adb2c_add_indentation(file, indent_level); fprintf(file, "Seconds : " UH_FMT "\n", ptr_struct->Seconds); adb2c_add_indentation(file, indent_level); fprintf(file, "Day : " UH_FMT "\n", ptr_struct->Day); adb2c_add_indentation(file, indent_level); fprintf(file, "Month : " UH_FMT "\n", ptr_struct->Month); adb2c_add_indentation(file, indent_level); fprintf(file, "Year : " UH_FMT "\n", ptr_struct->Year); } int connectib_FW_VERSION_size(void) { return 16; } void connectib_FW_VERSION_dump(const struct connectib_FW_VERSION* ptr_struct, FILE* file) { connectib_FW_VERSION_print(ptr_struct, file, 0); } void connectib_icmd_get_fw_info_pack(const struct connectib_icmd_get_fw_info* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; connectib_FW_VERSION_pack(&(ptr_struct->fw_version), ptr_buff + offset / 8); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hash_signature); for (i = 0; i < 16; i++) { offset = adb2c_calc_array_field_address(184, 8, i, 288, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } } void connectib_icmd_get_fw_info_unpack(struct connectib_icmd_get_fw_info* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; connectib_FW_VERSION_unpack(&(ptr_struct->fw_version), ptr_buff + offset / 8); offset = 144; ptr_struct->hash_signature = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 16; i++) { offset = adb2c_calc_array_field_address(184, 8, i, 288, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; } void connectib_icmd_get_fw_info_print(const struct connectib_icmd_get_fw_info* ptr_struct, FILE* file, int indent_level) { adb2c_add_indentation(file, indent_level); fprintf(file, "======== connectib_icmd_get_fw_info ========\n"); int i = 0; (void)i; (void)ptr_struct; (void)file; (void)indent_level; adb2c_add_indentation(file, indent_level); fprintf(file, "fw_version:\n"); connectib_FW_VERSION_print(&(ptr_struct->fw_version), file, indent_level + 1); adb2c_add_indentation(file, indent_level); fprintf(file, "hash_signature : " UH_FMT "\n", ptr_struct->hash_signature); fprintf(file, "psid : \"%s\"\n", ptr_struct->psid); } int connectib_icmd_get_fw_info_size(void) { return 36; } void connectib_icmd_get_fw_info_dump(const struct connectib_icmd_get_fw_info* ptr_struct, FILE* file) { connectib_icmd_get_fw_info_print(ptr_struct, file, 0); } void connectib_itrace_ctrl_pack(const struct connectib_itrace_ctrl* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_level); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->log_delay); } void connectib_itrace_ctrl_unpack(struct connectib_itrace_ctrl* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 24; ptr_struct->log_level = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->log_delay = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectib_itrace_ctrl_print(const struct connectib_itrace_ctrl* ptr_struct, FILE* file, int indent_level) { adb2c_add_indentation(file, indent_level); fprintf(file, "======== connectib_itrace_ctrl ========\n"); int i = 0; (void)i; (void)ptr_struct; (void)file; (void)indent_level; adb2c_add_indentation(file, indent_level); fprintf(file, "log_level : " UH_FMT "\n", ptr_struct->log_level); adb2c_add_indentation(file, indent_level); fprintf(file, "log_delay : " UH_FMT "\n", ptr_struct->log_delay); } int connectib_itrace_ctrl_size(void) { return 4; } void connectib_itrace_ctrl_dump(const struct connectib_itrace_ctrl* ptr_struct, FILE* file) { connectib_itrace_ctrl_print(ptr_struct, file, 0); } void connectib_itrace_pack(const struct connectib_itrace* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->unit_mask); offset = 32; connectib_itrace_ctrl_pack(&(ptr_struct->ctrl), ptr_buff + offset / 8); } void connectib_itrace_unpack(struct connectib_itrace* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 0; ptr_struct->unit_mask = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; connectib_itrace_ctrl_unpack(&(ptr_struct->ctrl), ptr_buff + offset / 8); } void connectib_itrace_print(const struct connectib_itrace* ptr_struct, FILE* file, int indent_level) { adb2c_add_indentation(file, indent_level); fprintf(file, "======== connectib_itrace ========\n"); int i = 0; (void)i; (void)ptr_struct; (void)file; (void)indent_level; adb2c_add_indentation(file, indent_level); fprintf(file, "unit_mask : " U32H_FMT "\n", ptr_struct->unit_mask); adb2c_add_indentation(file, indent_level); fprintf(file, "ctrl:\n"); connectib_itrace_ctrl_print(&(ptr_struct->ctrl), file, indent_level + 1); } int connectib_itrace_size(void) { return 16; } void connectib_itrace_dump(const struct connectib_itrace* ptr_struct, FILE* file) { connectib_itrace_print(ptr_struct, file, 0); } int connectib_icmd_set_port_sniffer_size(void) { return 16; } void connectib_icmd_set_port_sniffer_pack(const struct connectib_icmd_set_port_sniffer* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->gvmi); offset = 63; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sx_rx_); offset = 47; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->attach_detach_); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->port); offset = 104; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->sniffer_qpn); } void connectib_icmd_set_port_sniffer_unpack(struct connectib_icmd_set_port_sniffer* ptr_struct, const u_int8_t * ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 16; ptr_struct->gvmi = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 63; ptr_struct->sx_rx_ = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 47; ptr_struct->attach_detach_ = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 104; ptr_struct->sniffer_qpn = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); } void connectx4_hw_pointer_entry_unpack(struct connectx4_hw_pointer_entry* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->ptr = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void connectx4_hw_pointers_arava_unpack(struct connectx4_hw_pointers_arava* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; connectx4_hw_pointer_entry_unpack(&(ptr_struct->boot_record_ptr), ptr_buff + offset / 8); offset = 64; connectx4_hw_pointer_entry_unpack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; connectx4_hw_pointer_entry_unpack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; connectx4_hw_pointer_entry_unpack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; connectx4_hw_pointer_entry_unpack(&(ptr_struct->authentication_start_pointer), ptr_buff + offset / 8); offset = 320; connectx4_hw_pointer_entry_unpack(&(ptr_struct->authentication_end_pointer), ptr_buff + offset / 8); offset = 384; connectx4_hw_pointer_entry_unpack(&(ptr_struct->digest_pointer), ptr_buff + offset / 8); offset = 448; connectx4_hw_pointer_entry_unpack(&(ptr_struct->digest_recovery_key_pointer), ptr_buff + offset / 8); offset = 512; connectx4_hw_pointer_entry_unpack(&(ptr_struct->fw_window_start_pointer), ptr_buff + offset / 8); offset = 576; connectx4_hw_pointer_entry_unpack(&(ptr_struct->fw_window_end_pointer), ptr_buff + offset / 8); offset = 640; connectx4_hw_pointer_entry_unpack(&(ptr_struct->hmac_start_pointer), ptr_buff + offset / 8); offset = 704; connectx4_hw_pointer_entry_unpack(&(ptr_struct->hmac_end_pointer), ptr_buff + offset / 8); offset = 768; connectx4_hw_pointer_entry_unpack(&(ptr_struct->public_key_pointer), ptr_buff + offset / 8); offset = 832; connectx4_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr13_pointer), ptr_buff + offset / 8); offset = 896; connectx4_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr14_pointer), ptr_buff + offset / 8); offset = 960; connectx4_hw_pointer_entry_unpack(&(ptr_struct->reserved_ptr15_pointer), ptr_buff + offset / 8); } unsigned int connectx4_public_keys_3_size(void) { return CONNECTX4_PUBLIC_KEYS_3_SIZE; } unsigned int connectx4_secure_boot_signatures_size(void) { return CONNECTX4_SECURE_BOOT_SIGNATURES_SIZE; } void connectx4_secure_boot_signatures_pack(const struct connectx4_secure_boot_signatures* ptr_struct, u_int8_t * ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 12288, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->boot_signature[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(4096, 32, i, 12288, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->critical_signature[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(8192, 32, i, 12288, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->non_critical_signature[i]); } } void connectx4_component_authentication_configuration_pack( const struct connectx4_component_authentication_configuration* ptr_struct, u_int8_t * ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->auth_type); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->frc_en); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mlnx_nvconfig_en); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->vendor_nvconfig_en); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cs_token_en); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->fw_en); } void connectx4_file_public_keys_3_pack(const struct connectx4_file_public_keys_3* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 4352, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(160, 32, i, 4352, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->key[i]); } offset = 4256; connectx4_component_authentication_configuration_pack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); } void connectx4_public_keys_3_pack(const struct connectx4_public_keys_3* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 4352, i, 34816, 1); connectx4_file_public_keys_3_pack(&(ptr_struct->file_public_keys_3[i]), ptr_buff + offset / 8); } } mstflint-4.26.0/tools_layouts/mlxarchive_layouts.c0000755000175000017500000004372714522641732022731 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-01-05 14:52:46" *** by: *** > [REDACTED]/adb2pack.py --input adb/tools_open/mlxarchive.adb *--file-prefix mlxarchive --prefix mlxarchive_ --no-adb-utils ***/ #include "mlxarchive_layouts.h" void mlxarchive_common_header_pack(const struct mlxarchive_common_header* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->length); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version); } void mlxarchive_common_header_unpack(struct mlxarchive_common_header* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->length = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void mlxarchive_common_header_print(const struct mlxarchive_common_header* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_common_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "length : " UH_FMT "\n", ptr_struct->length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : " UH_FMT "\n", ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); } unsigned int mlxarchive_common_header_size(void) { return MLXARCHIVE_COMMON_HEADER_SIZE; } void mlxarchive_common_header_dump(const struct mlxarchive_common_header* ptr_struct, FILE* fd) { mlxarchive_common_header_print(ptr_struct, fd, 0); } void mlxarchive_component_desciptor_pack(const struct mlxarchive_component_desciptor* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->identifier); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pldm_classification); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cb_offset_h); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cb_offset_l); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->size); } void mlxarchive_component_desciptor_unpack(struct mlxarchive_component_desciptor* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->identifier = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 0; ptr_struct->pldm_classification = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->cb_offset_h = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->cb_offset_l = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void mlxarchive_component_desciptor_print(const struct mlxarchive_component_desciptor* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_component_desciptor ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "identifier : " UH_FMT "\n", ptr_struct->identifier); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pldm_classification : " UH_FMT "\n", ptr_struct->pldm_classification); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_offset_h : " U32H_FMT "\n", ptr_struct->cb_offset_h); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_offset_l : " U32H_FMT "\n", ptr_struct->cb_offset_l); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " U32H_FMT "\n", ptr_struct->size); } unsigned int mlxarchive_component_desciptor_size(void) { return MLXARCHIVE_COMPONENT_DESCIPTOR_SIZE; } void mlxarchive_component_desciptor_dump(const struct mlxarchive_component_desciptor* ptr_struct, FILE* fd) { mlxarchive_component_desciptor_print(ptr_struct, fd, 0); } void mlxarchive_component_ptr_pack(const struct mlxarchive_component_ptr* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->component_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->storage_id); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->storage_address); } void mlxarchive_component_ptr_unpack(struct mlxarchive_component_ptr* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->component_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->storage_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->storage_address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void mlxarchive_component_ptr_print(const struct mlxarchive_component_ptr* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_component_ptr ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_index : " UH_FMT "\n", ptr_struct->component_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "storage_id : " UH_FMT "\n", ptr_struct->storage_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "storage_address : " U32H_FMT "\n", ptr_struct->storage_address); } unsigned int mlxarchive_component_ptr_size(void) { return MLXARCHIVE_COMPONENT_PTR_SIZE; } void mlxarchive_component_ptr_dump(const struct mlxarchive_component_ptr* ptr_struct, FILE* fd) { mlxarchive_component_ptr_print(ptr_struct, fd, 0); } void mlxarchive_multi_part_pack(const struct mlxarchive_multi_part* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->total_length); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->number_of_extensions); } void mlxarchive_multi_part_unpack(struct mlxarchive_multi_part* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->total_length = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->number_of_extensions = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void mlxarchive_multi_part_print(const struct mlxarchive_multi_part* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_multi_part ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "total_length : " UH_FMT "\n", ptr_struct->total_length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "number_of_extensions : " UH_FMT "\n", ptr_struct->number_of_extensions); } unsigned int mlxarchive_multi_part_size(void) { return MLXARCHIVE_MULTI_PART_SIZE; } void mlxarchive_multi_part_dump(const struct mlxarchive_multi_part* ptr_struct, FILE* fd) { mlxarchive_multi_part_print(ptr_struct, fd, 0); } void mlxarchive_package_descriptor_pack(const struct mlxarchive_package_descriptor* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_devices); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_components); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cb_offset); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cb_archive_size); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cb_size_h); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->cb_size_l); offset = 160; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->cb_compression); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->user_data_offset); } void mlxarchive_package_descriptor_unpack(struct mlxarchive_package_descriptor* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->num_of_devices = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 0; ptr_struct->num_of_components = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->cb_offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->cb_archive_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->cb_size_h = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->cb_size_l = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 160; ptr_struct->cb_compression = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 192; ptr_struct->user_data_offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void mlxarchive_package_descriptor_print(const struct mlxarchive_package_descriptor* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_package_descriptor ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_devices : " UH_FMT "\n", ptr_struct->num_of_devices); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_components : " UH_FMT "\n", ptr_struct->num_of_components); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_offset : " U32H_FMT "\n", ptr_struct->cb_offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_archive_size : " U32H_FMT "\n", ptr_struct->cb_archive_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_size_h : " U32H_FMT "\n", ptr_struct->cb_size_h); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_size_l : " U32H_FMT "\n", ptr_struct->cb_size_l); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cb_compression : " UH_FMT "\n", ptr_struct->cb_compression); adb2c_add_indentation(fd, indent_level); fprintf(fd, "user_data_offset : " U32H_FMT "\n", ptr_struct->user_data_offset); } unsigned int mlxarchive_package_descriptor_size(void) { return MLXARCHIVE_PACKAGE_DESCRIPTOR_SIZE; } void mlxarchive_package_descriptor_dump(const struct mlxarchive_package_descriptor* ptr_struct, FILE* fd) { mlxarchive_package_descriptor_print(ptr_struct, fd, 0); } void mlxarchive_version_pack(const struct mlxarchive_version* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->version_sub_minor); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version_minor); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version_major); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->day); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->month); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->year); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->seconds); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minutes); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->hour); } void mlxarchive_version_unpack(struct mlxarchive_version* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->version_sub_minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->version_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->version_major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 56; ptr_struct->day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 72; ptr_struct->minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->hour = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void mlxarchive_version_print(const struct mlxarchive_version* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_sub_minor : " UH_FMT "\n", ptr_struct->version_sub_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_minor : " UH_FMT "\n", ptr_struct->version_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_major : " UH_FMT "\n", ptr_struct->version_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "day : " UH_FMT "\n", ptr_struct->day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "month : " UH_FMT "\n", ptr_struct->month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "year : " UH_FMT "\n", ptr_struct->year); adb2c_add_indentation(fd, indent_level); fprintf(fd, "seconds : " UH_FMT "\n", ptr_struct->seconds); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minutes : " UH_FMT "\n", ptr_struct->minutes); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hour : " UH_FMT "\n", ptr_struct->hour); } unsigned int mlxarchive_version_size(void) { return MLXARCHIVE_VERSION_SIZE; } void mlxarchive_version_dump(const struct mlxarchive_version* ptr_struct, FILE* fd) { mlxarchive_version_print(ptr_struct, fd, 0); } void mlxarchive_mlxarchive_nodes_pack(const union mlxarchive_mlxarchive_nodes* ptr_struct, u_int8_t* ptr_buff) { mlxarchive_package_descriptor_pack(&(ptr_struct->package_descriptor), ptr_buff); } void mlxarchive_mlxarchive_nodes_unpack(union mlxarchive_mlxarchive_nodes* ptr_struct, const u_int8_t* ptr_buff) { mlxarchive_package_descriptor_unpack(&(ptr_struct->package_descriptor), ptr_buff); } void mlxarchive_mlxarchive_nodes_print(const union mlxarchive_mlxarchive_nodes* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== mlxarchive_mlxarchive_nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "common_header:\n"); mlxarchive_common_header_print(&(ptr_struct->common_header), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "multi_part:\n"); mlxarchive_multi_part_print(&(ptr_struct->multi_part), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "package_descriptor:\n"); mlxarchive_package_descriptor_print(&(ptr_struct->package_descriptor), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_desciptor:\n"); mlxarchive_component_desciptor_print(&(ptr_struct->component_desciptor), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version:\n"); mlxarchive_version_print(&(ptr_struct->version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_ptr:\n"); mlxarchive_component_ptr_print(&(ptr_struct->component_ptr), fd, indent_level + 1); } unsigned int mlxarchive_mlxarchive_nodes_size(void) { return MLXARCHIVE_MLXARCHIVE_NODES_SIZE; } void mlxarchive_mlxarchive_nodes_dump(const union mlxarchive_mlxarchive_nodes* ptr_struct, FILE* fd) { mlxarchive_mlxarchive_nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/cx6fw_layouts.h0000644000175000017500000001601614522641732021615 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2018-08-29 13:02:13" *** by: *** > [REDACTED]/adb2pack.py --input adb/cx6fw/cx6fw.adb *--file-prefix cx6fw --prefix cx6fw_ ***/ #ifndef CX6FW_LAYOUTS_H #define CX6FW_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - HW pointer entry */ /* Size in bytes - 8 */ struct cx6fw_hw_pointer_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - pointer */ /* 0x0.0 - 0x0.31 */ u_int32_t ptr; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - crc16 as calculated by HW */ /* 0x4.0 - 0x4.15 */ u_int16_t crc; }; /* Description - HW pointers */ /* Size in bytes - 128 */ struct cx6fw_hw_pointers { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ struct cx6fw_hw_pointer_entry boot_record_ptr; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ struct cx6fw_hw_pointer_entry boot2_ptr; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x14.31 */ struct cx6fw_hw_pointer_entry toc_ptr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x1c.31 */ struct cx6fw_hw_pointer_entry tools_ptr; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x24.31 */ struct cx6fw_hw_pointer_entry authentication_start_ptr; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x2c.31 */ struct cx6fw_hw_pointer_entry authentication_end_ptr; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - */ /* 0x30.0 - 0x34.31 */ struct cx6fw_hw_pointer_entry digest_mdk_ptr; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.0 - 0x3c.31 */ struct cx6fw_hw_pointer_entry digest_recovery_key_ptr; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - */ /* 0x40.0 - 0x44.31 */ struct cx6fw_hw_pointer_entry reserved_ptr8; /*---------------- DWORD[18] (Offset 0x48) ----------------*/ /* Description - */ /* 0x48.0 - 0x4c.31 */ struct cx6fw_hw_pointer_entry reserved_ptr9; /*---------------- DWORD[20] (Offset 0x50) ----------------*/ /* Description - */ /* 0x50.0 - 0x54.31 */ struct cx6fw_hw_pointer_entry reserved_ptr10; /*---------------- DWORD[22] (Offset 0x58) ----------------*/ /* Description - */ /* 0x58.0 - 0x5c.31 */ struct cx6fw_hw_pointer_entry reserved_ptr11; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - */ /* 0x60.0 - 0x64.31 */ struct cx6fw_hw_pointer_entry reserved_ptr12; /*---------------- DWORD[26] (Offset 0x68) ----------------*/ /* Description - */ /* 0x68.0 - 0x6c.31 */ struct cx6fw_hw_pointer_entry reserved_ptr13; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.0 - 0x74.31 */ struct cx6fw_hw_pointer_entry reserved_ptr14; /*---------------- DWORD[30] (Offset 0x78) ----------------*/ /* Description - */ /* 0x78.0 - 0x7c.31 */ struct cx6fw_hw_pointer_entry reserved_ptr15; }; /* Description - */ /* Size in bytes - 512 */ union cx6fw_cx6fw_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x7c.31 */ struct cx6fw_hw_pointers hw_pointers; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* hw_pointer_entry */ void cx6fw_hw_pointer_entry_pack(const struct cx6fw_hw_pointer_entry* ptr_struct, u_int8_t* ptr_buff); void cx6fw_hw_pointer_entry_unpack(struct cx6fw_hw_pointer_entry* ptr_struct, const u_int8_t* ptr_buff); void cx6fw_hw_pointer_entry_print(const struct cx6fw_hw_pointer_entry* ptr_struct, FILE* fd, int indent_level); unsigned int cx6fw_hw_pointer_entry_size(void); #define CX6FW_HW_POINTER_ENTRY_SIZE (0x8) void cx6fw_hw_pointer_entry_dump(const struct cx6fw_hw_pointer_entry* ptr_struct, FILE* fd); /* hw_pointers */ void cx6fw_hw_pointers_pack(const struct cx6fw_hw_pointers* ptr_struct, u_int8_t* ptr_buff); void cx6fw_hw_pointers_unpack(struct cx6fw_hw_pointers* ptr_struct, const u_int8_t* ptr_buff); void cx6fw_hw_pointers_print(const struct cx6fw_hw_pointers* ptr_struct, FILE* fd, int indent_level); unsigned int cx6fw_hw_pointers_size(void); #define CX6FW_HW_POINTERS_SIZE (0x80) void cx6fw_hw_pointers_dump(const struct cx6fw_hw_pointers* ptr_struct, FILE* fd); /* cx6fw_Nodes */ void cx6fw_cx6fw_Nodes_pack(const union cx6fw_cx6fw_Nodes* ptr_struct, u_int8_t* ptr_buff); void cx6fw_cx6fw_Nodes_unpack(union cx6fw_cx6fw_Nodes* ptr_struct, const u_int8_t* ptr_buff); void cx6fw_cx6fw_Nodes_print(const union cx6fw_cx6fw_Nodes* ptr_struct, FILE* fd, int indent_level); unsigned int cx6fw_cx6fw_Nodes_size(void); #define CX6FW_CX6FW_NODES_SIZE (0x200) void cx6fw_cx6fw_Nodes_dump(const union cx6fw_cx6fw_Nodes* ptr_struct, FILE* fd); #ifdef __cplusplus } #endif #endif // CX6FW_LAYOUTS_H mstflint-4.26.0/tools_layouts/cx4fw_layouts.h0000644000175000017500000002246014522641732021613 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-01-24 14:29:07" *** by: *** > [REDACTED]/adb2pack.py --input adb/cx4fw/cx4fw.adb --file-prefix cx4fw --prefix cx4fw_ --no-adb-utils ***/ #ifndef CX4FW_LAYOUTS_H #define CX4FW_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 8 */ struct cx4fw_uint64 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int64_t uint64; }; /* Description - */ /* Size in bytes - 16 */ struct cx4fw_uid_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Number of allocated UIDs in this entry */ /* 0x0.0 - 0x0.7 */ u_int8_t num_allocated; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Step size by which to derive the UIDs for this entry See struct description */ /* 0x0.8 - 0x0.15 */ u_int8_t step; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - For MACs, the upper 16 bits in the 'hi' dword are reserved */ /* 0x8.0 - 0xc.31 */ u_int64_t uid; }; /* Description - */ /* Size in bytes - 64 */ struct cx4fw_guids { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - UIDs (MACs and GUIDs) Allocation Entry. guids, is used for system GUID, node GUID and port GUID of port 0. ;/Multiple UIDs can be assigned to a single port, to be used for multiple virtual guests, multi host and managment */ /* 0x0.0 - 0xc.31 */ struct cx4fw_uid_entry guids; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x1c.31 */ struct cx4fw_uid_entry macs; }; /* Description - */ /* Size in bytes - 16 */ struct cx4fw_operation_key { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t key_modifier; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ u_int64_t key; }; /* Description - */ /* Size in bytes - 512 */ struct cx4fw_device_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ u_int32_t signature0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t signature1; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ u_int32_t signature2; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ u_int32_t signature3; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Format version for this struct */ /* 0x10.0 - 0x10.7 */ u_int8_t minor_version; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Format version for this struct */ /* 0x10.8 - 0x10.16 */ u_int16_t major_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct cx4fw_guids guids; /*---------------- DWORD[27] (Offset 0x6c) ----------------*/ /* Description - */ /* 0x6c.0 - 0x6c.15 */ u_int16_t vsd_vendor_id; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.24 - 0x140.23 */ char vsd[209]; /*---------------- DWORD[88] (Offset 0x160) ----------------*/ /* Description - */ /* 0x160.0 - 0x19c.31 */ struct cx4fw_operation_key keys[4]; }; /* Description - */ /* Size in bytes - 320 */ struct cx4fw_mfg_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.24 - 0x10.23 */ char psid[17]; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - When this bit is set, the GUIDs should be taken from the device_info node. When this bit is cleared, the GUIDs should be taken from the mfg_info node. */ /* 0x1c.0 - 0x1c.0 */ u_int8_t guids_override_en; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - MFG_INFO section minor version */ /* 0x1c.16 - 0x1c.23 */ u_int8_t minor_version; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - MFG_INFO section major version */ /* 0x1c.24 - 0x1c.31 */ u_int8_t major_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct cx4fw_guids guids; }; /* Description - */ /* Size in bytes - 512 */ union cx4fw_cx4fw_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x13c.31 */ struct cx4fw_mfg_info mfg_info; /* Description - */ /* 0x0.0 - 0x1fc.31 */ struct cx4fw_device_info device_info; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct cx4fw_guids guids; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* uint64 */ void cx4fw_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff); void cx4fw_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_uint64_size(void); #define CX4FW_UINT64_SIZE (0x8) void cx4fw_uint64_dump(const u_int64_t *ptr_struct, FILE *fd); /* uid_entry */ void cx4fw_uid_entry_pack(const struct cx4fw_uid_entry *ptr_struct, u_int8_t *ptr_buff); void cx4fw_uid_entry_unpack(struct cx4fw_uid_entry *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_uid_entry_print(const struct cx4fw_uid_entry *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_uid_entry_size(void); #define CX4FW_UID_ENTRY_SIZE (0x10) void cx4fw_uid_entry_dump(const struct cx4fw_uid_entry *ptr_struct, FILE *fd); /* guids */ void cx4fw_guids_pack(const struct cx4fw_guids *ptr_struct, u_int8_t *ptr_buff); void cx4fw_guids_unpack(struct cx4fw_guids *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_guids_print(const struct cx4fw_guids *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_guids_size(void); #define CX4FW_GUIDS_SIZE (0x40) void cx4fw_guids_dump(const struct cx4fw_guids *ptr_struct, FILE *fd); /* operation_key */ void cx4fw_operation_key_pack(const struct cx4fw_operation_key *ptr_struct, u_int8_t *ptr_buff); void cx4fw_operation_key_unpack(struct cx4fw_operation_key *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_operation_key_print(const struct cx4fw_operation_key *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_operation_key_size(void); #define CX4FW_OPERATION_KEY_SIZE (0x10) void cx4fw_operation_key_dump(const struct cx4fw_operation_key *ptr_struct, FILE *fd); /* device_info */ void cx4fw_device_info_pack(const struct cx4fw_device_info *ptr_struct, u_int8_t *ptr_buff); void cx4fw_device_info_unpack(struct cx4fw_device_info *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_device_info_print(const struct cx4fw_device_info *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_device_info_size(void); #define CX4FW_DEVICE_INFO_SIZE (0x200) void cx4fw_device_info_dump(const struct cx4fw_device_info *ptr_struct, FILE *fd); /* mfg_info */ void cx4fw_mfg_info_pack(const struct cx4fw_mfg_info *ptr_struct, u_int8_t *ptr_buff); void cx4fw_mfg_info_unpack(struct cx4fw_mfg_info *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_mfg_info_print(const struct cx4fw_mfg_info *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_mfg_info_size(void); #define CX4FW_MFG_INFO_SIZE (0x140) void cx4fw_mfg_info_dump(const struct cx4fw_mfg_info *ptr_struct, FILE *fd); /* cx4fw_Nodes */ void cx4fw_cx4fw_Nodes_pack(const union cx4fw_cx4fw_Nodes *ptr_struct, u_int8_t *ptr_buff); void cx4fw_cx4fw_Nodes_unpack(union cx4fw_cx4fw_Nodes *ptr_struct, const u_int8_t *ptr_buff); void cx4fw_cx4fw_Nodes_print(const union cx4fw_cx4fw_Nodes *ptr_struct, FILE *fd, int indent_level); unsigned int cx4fw_cx4fw_Nodes_size(void); #define CX4FW_CX4FW_NODES_SIZE (0x200) void cx4fw_cx4fw_Nodes_dump(const union cx4fw_cx4fw_Nodes *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // CX4FW_LAYOUTS_H mstflint-4.26.0/tools_layouts/tools_open_layouts.c0000644000175000017500000025426614522641732022747 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-01-15 15:00:18" *** by: *** > [REDACTED]/adb2pack.py --input adb/tools_open/tools_open.adb --file-prefix tools_open --prefix tools_open_ --no-adb-utils ***/ #include "tools_open_layouts.h" void tools_open_bmc_type_pack(const struct tools_open_bmc_type *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 19; adb2c_push_bits_to_buff(ptr_buff, offset, 13, (u_int32_t)ptr_struct->param_idx); offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->channel); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->host); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->param_class); } void tools_open_bmc_type_unpack(struct tools_open_bmc_type *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 19; ptr_struct->param_idx = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 13); offset = 14; ptr_struct->channel = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 8; ptr_struct->host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 0; ptr_struct->param_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_bmc_type_print(const struct tools_open_bmc_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_bmc_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_idx : " UH_FMT "\n", ptr_struct->param_idx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "channel : " UH_FMT "\n", ptr_struct->channel); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host : " UH_FMT "\n", ptr_struct->host); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_class : " UH_FMT "\n", ptr_struct->param_class); } unsigned int tools_open_bmc_type_size(void) { return TOOLS_OPEN_BMC_TYPE_SIZE; } void tools_open_bmc_type_dump(const struct tools_open_bmc_type *ptr_struct, FILE *fd) { tools_open_bmc_type_print(ptr_struct, fd, 0); } void tools_open_configuration_item_type_class_module_pack(const struct tools_open_configuration_item_type_class_module *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 14, (u_int32_t)ptr_struct->parameter_index); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->module_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type_class); } void tools_open_configuration_item_type_class_module_unpack(struct tools_open_configuration_item_type_class_module *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 18; ptr_struct->parameter_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 14); offset = 8; ptr_struct->module_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 0; ptr_struct->type_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_configuration_item_type_class_module_print(const struct tools_open_configuration_item_type_class_module *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_configuration_item_type_class_module ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "parameter_index : " UH_FMT "\n", ptr_struct->parameter_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module_index : " UH_FMT "\n", ptr_struct->module_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type_class : " UH_FMT "\n", ptr_struct->type_class); } unsigned int tools_open_configuration_item_type_class_module_size(void) { return TOOLS_OPEN_CONFIGURATION_ITEM_TYPE_CLASS_MODULE_SIZE; } void tools_open_configuration_item_type_class_module_dump(const struct tools_open_configuration_item_type_class_module *ptr_struct, FILE *fd) { tools_open_configuration_item_type_class_module_print(ptr_struct, fd, 0); } void tools_open_eswitch_type_pack(const struct tools_open_eswitch_type *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->param_idx); offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->port); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->host); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->param_class); } void tools_open_eswitch_type_unpack(struct tools_open_eswitch_type *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->param_idx = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 14; ptr_struct->port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 8; ptr_struct->host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 0; ptr_struct->param_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_eswitch_type_print(const struct tools_open_eswitch_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_eswitch_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_idx : " UH_FMT "\n", ptr_struct->param_idx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "port : " UH_FMT "\n", ptr_struct->port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host : " UH_FMT "\n", ptr_struct->host); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_class : " UH_FMT "\n", ptr_struct->param_class); } unsigned int tools_open_eswitch_type_size(void) { return TOOLS_OPEN_ESWITCH_TYPE_SIZE; } void tools_open_eswitch_type_dump(const struct tools_open_eswitch_type *ptr_struct, FILE *fd) { tools_open_eswitch_type_print(ptr_struct, fd, 0); } void tools_open_global_type_pack(const struct tools_open_global_type *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->param_idx); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->param_class); } void tools_open_global_type_unpack(struct tools_open_global_type *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->param_idx = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 0; ptr_struct->param_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_global_type_print(const struct tools_open_global_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_global_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_idx : " UH_FMT "\n", ptr_struct->param_idx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_class : " UH_FMT "\n", ptr_struct->param_class); } unsigned int tools_open_global_type_size(void) { return TOOLS_OPEN_GLOBAL_TYPE_SIZE; } void tools_open_global_type_dump(const struct tools_open_global_type *ptr_struct, FILE *fd) { tools_open_global_type_print(ptr_struct, fd, 0); } void tools_open_host_type_pack(const struct tools_open_host_type *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 18, (u_int32_t)ptr_struct->param_idx); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->host); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->param_class); } void tools_open_host_type_unpack(struct tools_open_host_type *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 14; ptr_struct->param_idx = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 18); offset = 8; ptr_struct->host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 0; ptr_struct->param_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_host_type_print(const struct tools_open_host_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_host_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_idx : " UH_FMT "\n", ptr_struct->param_idx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host : " UH_FMT "\n", ptr_struct->host); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_class : " UH_FMT "\n", ptr_struct->param_class); } unsigned int tools_open_host_type_size(void) { return TOOLS_OPEN_HOST_TYPE_SIZE; } void tools_open_host_type_dump(const struct tools_open_host_type *ptr_struct, FILE *fd) { tools_open_host_type_print(ptr_struct, fd, 0); } void tools_open_per_host_type_pack(const struct tools_open_per_host_type *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 10, (u_int32_t)ptr_struct->param_idx); offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->function); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 6, (u_int32_t)ptr_struct->host); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->param_class); } void tools_open_per_host_type_unpack(struct tools_open_per_host_type *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 22; ptr_struct->param_idx = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 10); offset = 14; ptr_struct->function = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->host = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 6); offset = 0; ptr_struct->param_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_per_host_type_print(const struct tools_open_per_host_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_per_host_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_idx : " UH_FMT "\n", ptr_struct->param_idx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "function : " UH_FMT "\n", ptr_struct->function); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host : " UH_FMT "\n", ptr_struct->host); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_class : " UH_FMT "\n", ptr_struct->param_class); } unsigned int tools_open_per_host_type_size(void) { return TOOLS_OPEN_PER_HOST_TYPE_SIZE; } void tools_open_per_host_type_dump(const struct tools_open_per_host_type *ptr_struct, FILE *fd) { tools_open_per_host_type_print(ptr_struct, fd, 0); } void tools_open_per_port_type_pack(const struct tools_open_per_port_type *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->param_idx); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->port); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->param_class); } void tools_open_per_port_type_unpack(struct tools_open_per_port_type *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->param_idx = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->port = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->param_class = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_per_port_type_print(const struct tools_open_per_port_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_per_port_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_idx : " UH_FMT "\n", ptr_struct->param_idx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "port : " UH_FMT "\n", ptr_struct->port); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param_class : " UH_FMT "\n", ptr_struct->param_class); } unsigned int tools_open_per_port_type_size(void) { return TOOLS_OPEN_PER_PORT_TYPE_SIZE; } void tools_open_per_port_type_dump(const struct tools_open_per_port_type *ptr_struct, FILE *fd) { tools_open_per_port_type_print(ptr_struct, fd, 0); } void tools_open_tlv_type_dw_pack(const struct tools_open_tlv_type_dw *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->tlv_type_dw); } void tools_open_tlv_type_dw_unpack(struct tools_open_tlv_type_dw *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->tlv_type_dw = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void tools_open_tlv_type_dw_print(const struct tools_open_tlv_type_dw *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_tlv_type_dw ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tlv_type_dw : " U32H_FMT "\n", ptr_struct->tlv_type_dw); } unsigned int tools_open_tlv_type_dw_size(void) { return TOOLS_OPEN_TLV_TYPE_DW_SIZE; } void tools_open_tlv_type_dw_dump(const struct tools_open_tlv_type_dw *ptr_struct, FILE *fd) { tools_open_tlv_type_dw_print(ptr_struct, fd, 0); } void tools_open_fw_version_pack(const struct tools_open_fw_version *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->fw_ver_major); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->fw_ver_subminor); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->fw_ver_minor); } void tools_open_fw_version_unpack(struct tools_open_fw_version *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->fw_ver_major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->fw_ver_subminor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->fw_ver_minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void tools_open_fw_version_print(const struct tools_open_fw_version *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_fw_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_ver_major : " UH_FMT "\n", ptr_struct->fw_ver_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_ver_subminor : " UH_FMT "\n", ptr_struct->fw_ver_subminor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_ver_minor : " UH_FMT "\n", ptr_struct->fw_ver_minor); } unsigned int tools_open_fw_version_size(void) { return TOOLS_OPEN_FW_VERSION_SIZE; } void tools_open_fw_version_dump(const struct tools_open_fw_version *ptr_struct, FILE *fd) { tools_open_fw_version_print(ptr_struct, fd, 0); } void tools_open_tlv_type_pack(const union tools_open_tlv_type *ptr_struct, u_int8_t *ptr_buff) { tools_open_tlv_type_dw_pack(&(ptr_struct->tlv_type_dw), ptr_buff); } void tools_open_tlv_type_unpack(union tools_open_tlv_type *ptr_struct, const u_int8_t *ptr_buff) { tools_open_tlv_type_dw_unpack(&(ptr_struct->tlv_type_dw), ptr_buff); } void tools_open_tlv_type_print(const union tools_open_tlv_type *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_tlv_type ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "global:\n"); tools_open_global_type_print(&(ptr_struct->global), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "eswitch:\n"); tools_open_eswitch_type_print(&(ptr_struct->eswitch), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "per_host:\n"); tools_open_per_host_type_print(&(ptr_struct->per_host), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bmc:\n"); tools_open_bmc_type_print(&(ptr_struct->bmc), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "per_port:\n"); tools_open_per_port_type_print(&(ptr_struct->per_port), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "per_module:\n"); tools_open_configuration_item_type_class_module_print(&(ptr_struct->per_module), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host:\n"); tools_open_host_type_print(&(ptr_struct->host), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tlv_type_dw:\n"); tools_open_tlv_type_dw_print(&(ptr_struct->tlv_type_dw), fd, indent_level + 1); } unsigned int tools_open_tlv_type_size(void) { return TOOLS_OPEN_TLV_TYPE_SIZE; } void tools_open_tlv_type_dump(const union tools_open_tlv_type *ptr_struct, FILE *fd) { tools_open_tlv_type_print(ptr_struct, fd, 0); } void tools_open_ts_entry_pack(const struct tools_open_ts_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->ts_day); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->ts_month); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->ts_year); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->ts_seconds); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->ts_minutes); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->ts_hour); } void tools_open_ts_entry_unpack(struct tools_open_ts_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->ts_day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->ts_month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->ts_year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->ts_seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 40; ptr_struct->ts_minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->ts_hour = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_ts_entry_print(const struct tools_open_ts_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_ts_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_day : " UH_FMT "\n", ptr_struct->ts_day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_month : " UH_FMT "\n", ptr_struct->ts_month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_year : " UH_FMT "\n", ptr_struct->ts_year); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_seconds : " UH_FMT "\n", ptr_struct->ts_seconds); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_minutes : " UH_FMT "\n", ptr_struct->ts_minutes); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_hour : " UH_FMT "\n", ptr_struct->ts_hour); } unsigned int tools_open_ts_entry_size(void) { return TOOLS_OPEN_TS_ENTRY_SIZE; } void tools_open_ts_entry_dump(const struct tools_open_ts_entry *ptr_struct, FILE *fd) { tools_open_ts_entry_print(ptr_struct, fd, 0); } void tools_open_nv_hdr_fifth_gen_pack(const struct tools_open_nv_hdr_fifth_gen *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->length); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->writer_host_id); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->version); offset = 11; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->writer_id); offset = 9; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->read_current); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_); offset = 7; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rd_en); offset = 6; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->over_en); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->priority); offset = 32; tools_open_tlv_type_pack(&(ptr_struct->type), ptr_buff + offset / 8); } void tools_open_nv_hdr_fifth_gen_unpack(struct tools_open_nv_hdr_fifth_gen *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 23; ptr_struct->length = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 20; ptr_struct->writer_host_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 16; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 11; ptr_struct->writer_id = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 9; ptr_struct->read_current = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 8; ptr_struct->default_ = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 7; ptr_struct->rd_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 6; ptr_struct->over_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->priority = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 32; tools_open_tlv_type_unpack(&(ptr_struct->type), ptr_buff + offset / 8); } void tools_open_nv_hdr_fifth_gen_print(const struct tools_open_nv_hdr_fifth_gen *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_nv_hdr_fifth_gen ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "length : " UH_FMT "\n", ptr_struct->length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "writer_host_id : " UH_FMT "\n", ptr_struct->writer_host_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "writer_id : %s (" UH_FMT ")\n", (ptr_struct->writer_id == 0 ? ("NV_WRITER_ID_UNSPECIFIED") : ((ptr_struct->writer_id == 1 ? ("NV_WRITER_ID_CHASSIS_BMC") : ((ptr_struct->writer_id == 2 ? ("NV_WRITER_ID_MAD") : ((ptr_struct->writer_id == 3 ? ("NV_WRITER_ID_BMC") : ((ptr_struct->writer_id == 4 ? ("NV_WRITER_ID_CMD_IF") : ((ptr_struct->writer_id == 5 ? ("NV_WRITER_ID_ICMD") : ((ptr_struct->writer_id == 6 ? ("NV_WRITER_ID_ICMD_UEFI_HII") : ((ptr_struct->writer_id == 7 ? ("NV_WRITER_ID_ICMD_UEFI_CLP") : ((ptr_struct->writer_id == 8 ? ("NV_WRITER_ID_ICMD_FLEXBOOT") : ((ptr_struct->writer_id == 9 ? ("NV_WRITER_ID_ICMD_MLXCONFIG") : ((ptr_struct->writer_id == 10 ? ("NV_WRITER_ID_ICMD_USER1") : ((ptr_struct->writer_id == 11 ? ("NV_WRITER_ID_ICMD_USER2") : ((ptr_struct->writer_id == 31 ? ("NV_WRITER_ID_OTHER") : ("unknown")))))))))))))))))))))))))), ptr_struct->writer_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "read_current : " UH_FMT "\n", ptr_struct->read_current); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_ : " UH_FMT "\n", ptr_struct->default_); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rd_en : " UH_FMT "\n", ptr_struct->rd_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "over_en : " UH_FMT "\n", ptr_struct->over_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "priority : " UH_FMT "\n", ptr_struct->priority); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type:\n"); tools_open_tlv_type_print(&(ptr_struct->type), fd, indent_level + 1); } unsigned int tools_open_nv_hdr_fifth_gen_size(void) { return TOOLS_OPEN_NV_HDR_FIFTH_GEN_SIZE; } void tools_open_nv_hdr_fifth_gen_dump(const struct tools_open_nv_hdr_fifth_gen *ptr_struct, FILE *fd) { tools_open_nv_hdr_fifth_gen_print(ptr_struct, fd, 0); } void tools_open_timestamp_pack(const struct tools_open_timestamp *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; tools_open_fw_version_pack(&(ptr_struct->fw_version), ptr_buff + offset / 8); offset = 64; tools_open_ts_entry_pack(&(ptr_struct->ts_entry), ptr_buff + offset / 8); } void tools_open_timestamp_unpack(struct tools_open_timestamp *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; tools_open_fw_version_unpack(&(ptr_struct->fw_version), ptr_buff + offset / 8); offset = 64; tools_open_ts_entry_unpack(&(ptr_struct->ts_entry), ptr_buff + offset / 8); } void tools_open_timestamp_print(const struct tools_open_timestamp *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_timestamp ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_version:\n"); tools_open_fw_version_print(&(ptr_struct->fw_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ts_entry:\n"); tools_open_ts_entry_print(&(ptr_struct->ts_entry), fd, indent_level + 1); } unsigned int tools_open_timestamp_size(void) { return TOOLS_OPEN_TIMESTAMP_SIZE; } void tools_open_timestamp_dump(const struct tools_open_timestamp *ptr_struct, FILE *fd) { tools_open_timestamp_print(ptr_struct, fd, 0); } void tools_open_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 8, *ptr_struct); } void tools_open_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; *ptr_struct = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void tools_open_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_uint64 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uint64 : " U64H_FMT "\n", (u_int64_t) *ptr_struct); } unsigned int tools_open_uint64_size(void) { return TOOLS_OPEN_UINT64_SIZE; } void tools_open_uint64_dump(const u_int64_t *ptr_struct, FILE *fd) { tools_open_uint64_print(ptr_struct, fd, 0); } void tools_open_aux_tlv_header_pack(const struct tools_open_aux_tlv_header *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->header_type); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->length); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reserved0); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reserved1); } void tools_open_aux_tlv_header_unpack(struct tools_open_aux_tlv_header *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->header_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->length = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 96; ptr_struct->reserved0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->reserved1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void tools_open_aux_tlv_header_print(const struct tools_open_aux_tlv_header *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_aux_tlv_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : " UH_FMT "\n", ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "header_type : " UH_FMT "\n", ptr_struct->header_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "length : " U32H_FMT "\n", ptr_struct->length); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved0 : " U32H_FMT "\n", ptr_struct->reserved0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved1 : " U32H_FMT "\n", ptr_struct->reserved1); } unsigned int tools_open_aux_tlv_header_size(void) { return TOOLS_OPEN_AUX_TLV_HEADER_SIZE; } void tools_open_aux_tlv_header_dump(const struct tools_open_aux_tlv_header *ptr_struct, FILE *fd) { tools_open_aux_tlv_header_print(ptr_struct, fd, 0); } void tools_open_mgnle_pack(const struct tools_open_mgnle *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->le_pointer); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->lost_events); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->synced_time); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->time_h); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->time_l); offset = 128; tools_open_nv_hdr_fifth_gen_pack(&(ptr_struct->nv_hdr), ptr_buff + offset / 8); for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(376, 8, i, 1376, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_data[i]); } } void tools_open_mgnle_unpack(struct tools_open_mgnle *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->le_pointer = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 36; ptr_struct->lost_events = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->synced_time = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->time_h = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->time_l = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; tools_open_nv_hdr_fifth_gen_unpack(&(ptr_struct->nv_hdr), ptr_buff + offset / 8); for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(376, 8, i, 1376, 1); ptr_struct->log_data[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void tools_open_mgnle_print(const struct tools_open_mgnle *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mgnle ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "le_pointer : " U32H_FMT "\n", ptr_struct->le_pointer); adb2c_add_indentation(fd, indent_level); fprintf(fd, "lost_events : " UH_FMT "\n", ptr_struct->lost_events); adb2c_add_indentation(fd, indent_level); fprintf(fd, "synced_time : " UH_FMT "\n", ptr_struct->synced_time); adb2c_add_indentation(fd, indent_level); fprintf(fd, "time_h : " U32H_FMT "\n", ptr_struct->time_h); adb2c_add_indentation(fd, indent_level); fprintf(fd, "time_l : " U32H_FMT "\n", ptr_struct->time_l); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_hdr:\n"); tools_open_nv_hdr_fifth_gen_print(&(ptr_struct->nv_hdr), fd, indent_level + 1); for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_data_%03d : " UH_FMT "\n", i, ptr_struct->log_data[i]); } } unsigned int tools_open_mgnle_size(void) { return TOOLS_OPEN_MGNLE_SIZE; } void tools_open_mgnle_dump(const struct tools_open_mgnle *ptr_struct, FILE *fd) { tools_open_mgnle_print(ptr_struct, fd, 0); } void tools_open_mlock_pack(const struct tools_open_mlock *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->operation); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->key); } void tools_open_mlock_unpack(struct tools_open_mlock *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->operation = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->key = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void tools_open_mlock_print(const struct tools_open_mlock *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mlock ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "operation : " UH_FMT "\n", ptr_struct->operation); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key : " U64H_FMT "\n", ptr_struct->key); } unsigned int tools_open_mlock_size(void) { return TOOLS_OPEN_MLOCK_SIZE; } void tools_open_mlock_dump(const struct tools_open_mlock *ptr_struct, FILE *fd) { tools_open_mlock_print(ptr_struct, fd, 0); } void tools_open_mnvda_pack(const struct tools_open_mnvda *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; tools_open_nv_hdr_fifth_gen_pack(&(ptr_struct->nv_hdr), ptr_buff + offset / 8); for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(120, 8, i, 2144, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->data[i]); } } void tools_open_mnvda_unpack(struct tools_open_mnvda *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; tools_open_nv_hdr_fifth_gen_unpack(&(ptr_struct->nv_hdr), ptr_buff + offset / 8); for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(120, 8, i, 2144, 1); ptr_struct->data[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void tools_open_mnvda_print(const struct tools_open_mnvda *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mnvda ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_hdr:\n"); tools_open_nv_hdr_fifth_gen_print(&(ptr_struct->nv_hdr), fd, indent_level + 1); for (i = 0; i < 256; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " UH_FMT "\n", i, ptr_struct->data[i]); } } unsigned int tools_open_mnvda_size(void) { return TOOLS_OPEN_MNVDA_SIZE; } void tools_open_mnvda_dump(const struct tools_open_mnvda *ptr_struct, FILE *fd) { tools_open_mnvda_print(ptr_struct, fd, 0); } void tools_open_mnvgn_pack(const struct tools_open_mnvgn *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->nv_pointer); offset = 128; tools_open_nv_hdr_fifth_gen_pack(&(ptr_struct->nv_hdr), ptr_buff + offset / 8); for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(248, 8, i, 1248, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->nv_data[i]); } } void tools_open_mnvgn_unpack(struct tools_open_mnvgn *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->nv_pointer = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; tools_open_nv_hdr_fifth_gen_unpack(&(ptr_struct->nv_hdr), ptr_buff + offset / 8); for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(248, 8, i, 1248, 1); ptr_struct->nv_data[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void tools_open_mnvgn_print(const struct tools_open_mnvgn *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mnvgn ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_pointer : " U32H_FMT "\n", ptr_struct->nv_pointer); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_hdr:\n"); tools_open_nv_hdr_fifth_gen_print(&(ptr_struct->nv_hdr), fd, indent_level + 1); for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_data_%03d : " UH_FMT "\n", i, ptr_struct->nv_data[i]); } } unsigned int tools_open_mnvgn_size(void) { return TOOLS_OPEN_MNVGN_SIZE; } void tools_open_mnvgn_dump(const struct tools_open_mnvgn *ptr_struct, FILE *fd) { tools_open_mnvgn_print(ptr_struct, fd, 0); } void tools_open_mvts_pack(const struct tools_open_mvts *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->check_timestamp_flag); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->running_flag); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->clear_all_ts_flag); offset = 32; tools_open_timestamp_pack(&(ptr_struct->timestamp), ptr_buff + offset / 8); } void tools_open_mvts_unpack(struct tools_open_mvts *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 2; ptr_struct->check_timestamp_flag = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->running_flag = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->clear_all_ts_flag = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; tools_open_timestamp_unpack(&(ptr_struct->timestamp), ptr_buff + offset / 8); } void tools_open_mvts_print(const struct tools_open_mvts *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mvts ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "check_timestamp_flag : " UH_FMT "\n", ptr_struct->check_timestamp_flag); adb2c_add_indentation(fd, indent_level); fprintf(fd, "running_flag : " UH_FMT "\n", ptr_struct->running_flag); adb2c_add_indentation(fd, indent_level); fprintf(fd, "clear_all_ts_flag : " UH_FMT "\n", ptr_struct->clear_all_ts_flag); adb2c_add_indentation(fd, indent_level); fprintf(fd, "timestamp:\n"); tools_open_timestamp_print(&(ptr_struct->timestamp), fd, indent_level + 1); } unsigned int tools_open_mvts_size(void) { return TOOLS_OPEN_MVTS_SIZE; } void tools_open_mvts_dump(const struct tools_open_mvts *ptr_struct, FILE *fd) { tools_open_mvts_print(ptr_struct, fd, 0); } void tools_open_aux_tlv_pack(const struct tools_open_aux_tlv *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; tools_open_aux_tlv_header_pack(&(ptr_struct->aux_tlv_header), ptr_buff + offset / 8); for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(184, 8, i, 2048, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->data[i]); } } void tools_open_aux_tlv_unpack(struct tools_open_aux_tlv *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; tools_open_aux_tlv_header_unpack(&(ptr_struct->aux_tlv_header), ptr_buff + offset / 8); for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(184, 8, i, 2048, 1); ptr_struct->data[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } } void tools_open_aux_tlv_print(const struct tools_open_aux_tlv *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_aux_tlv ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "aux_tlv_header:\n"); tools_open_aux_tlv_header_print(&(ptr_struct->aux_tlv_header), fd, indent_level + 1); for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_%03d : " UH_FMT "\n", i, ptr_struct->data[i]); } } unsigned int tools_open_aux_tlv_size(void) { return TOOLS_OPEN_AUX_TLV_SIZE; } void tools_open_aux_tlv_dump(const struct tools_open_aux_tlv *ptr_struct, FILE *fd) { tools_open_aux_tlv_print(ptr_struct, fd, 0); } void tools_open_image_info_pack(const struct tools_open_image_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->description[i]); } for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->name[i]); } for (i = 0; i < 96; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prs_name[i]); } } void tools_open_image_info_unpack(struct tools_open_image_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 8; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); ptr_struct->description[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->description[256] = '\0'; for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); ptr_struct->name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->name[64] = '\0'; for (i = 0; i < 96; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); ptr_struct->prs_name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prs_name[96] = '\0'; } void tools_open_image_info_print(const struct tools_open_image_info *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_image_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); fprintf(fd, "description : \"%s\"\n", ptr_struct->description); fprintf(fd, "name : \"%s\"\n", ptr_struct->name); fprintf(fd, "prs_name : \"%s\"\n", ptr_struct->prs_name); } unsigned int tools_open_image_info_size(void) { return TOOLS_OPEN_IMAGE_INFO_SIZE; } void tools_open_image_info_dump(const struct tools_open_image_info *ptr_struct, FILE *fd) { tools_open_image_info_print(ptr_struct, fd, 0); } void tools_open_mfg_info_pack(const struct tools_open_mfg_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 232; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); for (i = 0; i < 96; ++i) { offset = adb2c_calc_array_field_address(792, 8, i, 2560, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->orig_prs_name[i]); } } void tools_open_mfg_info_unpack(struct tools_open_mfg_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 232; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 224; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); for (i = 0; i < 96; ++i) { offset = adb2c_calc_array_field_address(792, 8, i, 2560, 1); ptr_struct->orig_prs_name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->orig_prs_name[96] = '\0'; } void tools_open_mfg_info_print(const struct tools_open_mfg_info *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mfg_info ========\n"); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); fprintf(fd, "orig_prs_name : \"%s\"\n", ptr_struct->orig_prs_name); } unsigned int tools_open_mfg_info_size(void) { return TOOLS_OPEN_MFG_INFO_SIZE; } void tools_open_mfg_info_dump(const struct tools_open_mfg_info *ptr_struct, FILE *fd) { tools_open_mfg_info_print(ptr_struct, fd, 0); } void tools_open_mnv_cfg_pack(const union tools_open_mnv_cfg *ptr_struct, u_int8_t *ptr_buff) { tools_open_mnvda_pack(&(ptr_struct->mnvda), ptr_buff); } void tools_open_mnv_cfg_unpack(union tools_open_mnv_cfg *ptr_struct, const u_int8_t *ptr_buff) { tools_open_mnvda_unpack(&(ptr_struct->mnvda), ptr_buff); } void tools_open_mnv_cfg_print(const union tools_open_mnv_cfg *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mnv_cfg ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mvts:\n"); tools_open_mvts_print(&(ptr_struct->mvts), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mlock:\n"); tools_open_mlock_print(&(ptr_struct->mlock), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mnvda:\n"); tools_open_mnvda_print(&(ptr_struct->mnvda), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mnvgn:\n"); tools_open_mnvgn_print(&(ptr_struct->mnvgn), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mgnle:\n"); tools_open_mgnle_print(&(ptr_struct->mgnle), fd, indent_level + 1); } unsigned int tools_open_mnv_cfg_size(void) { return TOOLS_OPEN_MNV_CFG_SIZE; } void tools_open_mnv_cfg_dump(const union tools_open_mnv_cfg *ptr_struct, FILE *fd) { tools_open_mnv_cfg_print(ptr_struct, fd, 0); } void tools_open_nv_base_mac_guid_pack(const struct tools_open_nv_base_mac_guid *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 128, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->base_mac[i]); } for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, 128, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->base_guid[i]); } } void tools_open_nv_base_mac_guid_unpack(struct tools_open_nv_base_mac_guid *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 128, 1); ptr_struct->base_mac[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 2; ++i) { offset = adb2c_calc_array_field_address(64, 32, i, 128, 1); ptr_struct->base_guid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void tools_open_nv_base_mac_guid_print(const struct tools_open_nv_base_mac_guid *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_nv_base_mac_guid ========\n"); for (i = 0; i < 2; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "base_mac_%03d : " U32H_FMT "\n", i, ptr_struct->base_mac[i]); } for (i = 0; i < 2; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "base_guid_%03d : " U32H_FMT "\n", i, ptr_struct->base_guid[i]); } } unsigned int tools_open_nv_base_mac_guid_size(void) { return TOOLS_OPEN_NV_BASE_MAC_GUID_SIZE; } void tools_open_nv_base_mac_guid_dump(const struct tools_open_nv_base_mac_guid *ptr_struct, FILE *fd) { tools_open_nv_base_mac_guid_print(ptr_struct, fd, 0); } void tools_open_nv_base_mac_guid_cap_pack(const struct tools_open_nv_base_mac_guid_cap *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->guid_en); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mac_en); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_allocated_macs); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->num_of_allocated_guids); } void tools_open_nv_base_mac_guid_cap_unpack(struct tools_open_nv_base_mac_guid_cap *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 1; ptr_struct->guid_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->mac_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->num_of_allocated_macs = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->num_of_allocated_guids = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void tools_open_nv_base_mac_guid_cap_print(const struct tools_open_nv_base_mac_guid_cap *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_nv_base_mac_guid_cap ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guid_en : " UH_FMT "\n", ptr_struct->guid_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mac_en : " UH_FMT "\n", ptr_struct->mac_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_allocated_macs : " UH_FMT "\n", ptr_struct->num_of_allocated_macs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_allocated_guids : " UH_FMT "\n", ptr_struct->num_of_allocated_guids); } unsigned int tools_open_nv_base_mac_guid_cap_size(void) { return TOOLS_OPEN_NV_BASE_MAC_GUID_CAP_SIZE; } void tools_open_nv_base_mac_guid_cap_dump(const struct tools_open_nv_base_mac_guid_cap *ptr_struct, FILE *fd) { tools_open_nv_base_mac_guid_cap_print(ptr_struct, fd, 0); } void tools_open_query_def_params_global_pack(const struct tools_open_query_def_params_global *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 17; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_clock_map_to_user); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_phy_param_mode); offset = 15; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_steer_force_vlan_supported); offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_cq_timestamp_supported); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->fw_default_config_payload_version); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_vfs); offset = 52; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->uar_bar_size); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->max_uar_bar_size); offset = 42; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->boot_ip_ver); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->default_phy_param_mode); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_clock_map_to_user); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_steer_force_vlan); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_cq_timestamp); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->sriov_en); } void tools_open_query_def_params_global_unpack(struct tools_open_query_def_params_global *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 17; ptr_struct->nv_config_clock_map_to_user = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->nv_config_phy_param_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 15; ptr_struct->nv_steer_force_vlan_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 14; ptr_struct->nv_cq_timestamp_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->fw_default_config_payload_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 56; ptr_struct->num_vfs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 52; ptr_struct->uar_bar_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->max_uar_bar_size = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 42; ptr_struct->boot_ip_ver = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 40; ptr_struct->default_phy_param_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 36; ptr_struct->default_clock_map_to_user = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 35; ptr_struct->default_steer_force_vlan = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->default_cq_timestamp = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->sriov_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void tools_open_query_def_params_global_print(const struct tools_open_query_def_params_global *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_query_def_params_global ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_clock_map_to_user : " UH_FMT "\n", ptr_struct->nv_config_clock_map_to_user); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_phy_param_mode : " UH_FMT "\n", ptr_struct->nv_config_phy_param_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_steer_force_vlan_supported : " UH_FMT "\n", ptr_struct->nv_steer_force_vlan_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_cq_timestamp_supported : " UH_FMT "\n", ptr_struct->nv_cq_timestamp_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_default_config_payload_version : " UH_FMT "\n", ptr_struct->fw_default_config_payload_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_vfs : " UH_FMT "\n", ptr_struct->num_vfs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uar_bar_size : " UH_FMT "\n", ptr_struct->uar_bar_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_uar_bar_size : " UH_FMT "\n", ptr_struct->max_uar_bar_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_ip_ver : " UH_FMT "\n", ptr_struct->boot_ip_ver); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_phy_param_mode : " UH_FMT "\n", ptr_struct->default_phy_param_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_clock_map_to_user : " UH_FMT "\n", ptr_struct->default_clock_map_to_user); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_steer_force_vlan : " UH_FMT "\n", ptr_struct->default_steer_force_vlan); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_cq_timestamp : " UH_FMT "\n", ptr_struct->default_cq_timestamp); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sriov_en : " UH_FMT "\n", ptr_struct->sriov_en); } unsigned int tools_open_query_def_params_global_size(void) { return TOOLS_OPEN_QUERY_DEF_PARAMS_GLOBAL_SIZE; } void tools_open_query_def_params_global_dump(const struct tools_open_query_def_params_global *ptr_struct, FILE *fd) { tools_open_query_def_params_global_print(ptr_struct, fd, 0); } void tools_open_query_def_params_per_port_pack(const struct tools_open_query_def_params_per_port *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 14; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_vpi_force_mode); offset = 13; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_vpi); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_wol); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->fw_default_config_payload_version); offset = 52; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->default_boot_vlan); offset = 44; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->default_boot_protocol); offset = 40; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->default_boot_retry_cnt); offset = 37; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->default_network_link_type); offset = 36; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_en_wol_magic); offset = 35; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_boot_vlan_en); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_boot_option_rom_en); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_pprx); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_pptx); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->default_boot_pkey); offset = 70; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->boot_ip_ver); offset = 68; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_infiniband_dhcp_settings); offset = 67; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_infiniband_boot_settings); offset = 66; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_dhcp_iscsi_parameters); offset = 65; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_iscsi_parameters); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->nv_config_boot_parameters); offset = 118; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->default_vpi_force_mode); offset = 116; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->default_vpi_xfi_mode); offset = 114; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->default_vpi_phy_type); offset = 104; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->iscsi_boot_to_target); offset = 101; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->iscsi_vlan_en); offset = 100; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->iscsi_tcp_timestamps_en); offset = 99; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->iscsi_chap_mutual_auth_en); offset = 98; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->iscsi_chap_auth_en); offset = 97; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->iscsi_dhcp_params_en); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->iscsi_ipv4_dhcp_en); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->iscsi_lun_busy_retry_cnt); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->iscsi_link_up_delay_time); } void tools_open_query_def_params_per_port_unpack(struct tools_open_query_def_params_per_port *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 14; ptr_struct->nv_config_vpi_force_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 13; ptr_struct->nv_config_vpi = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 12; ptr_struct->nv_config_wol = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->fw_default_config_payload_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 52; ptr_struct->default_boot_vlan = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 44; ptr_struct->default_boot_protocol = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 40; ptr_struct->default_boot_retry_cnt = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 37; ptr_struct->default_network_link_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 36; ptr_struct->default_en_wol_magic = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 35; ptr_struct->default_boot_vlan_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 34; ptr_struct->default_boot_option_rom_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 33; ptr_struct->default_pprx = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->default_pptx = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 80; ptr_struct->default_boot_pkey = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 70; ptr_struct->boot_ip_ver = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 68; ptr_struct->nv_config_infiniband_dhcp_settings = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 67; ptr_struct->nv_config_infiniband_boot_settings = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 66; ptr_struct->nv_config_dhcp_iscsi_parameters = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 65; ptr_struct->nv_config_iscsi_parameters = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->nv_config_boot_parameters = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 118; ptr_struct->default_vpi_force_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 116; ptr_struct->default_vpi_xfi_mode = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 114; ptr_struct->default_vpi_phy_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 104; ptr_struct->iscsi_boot_to_target = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 101; ptr_struct->iscsi_vlan_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 100; ptr_struct->iscsi_tcp_timestamps_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 99; ptr_struct->iscsi_chap_mutual_auth_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 98; ptr_struct->iscsi_chap_auth_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 97; ptr_struct->iscsi_dhcp_params_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 96; ptr_struct->iscsi_ipv4_dhcp_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 152; ptr_struct->iscsi_lun_busy_retry_cnt = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 144; ptr_struct->iscsi_link_up_delay_time = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void tools_open_query_def_params_per_port_print(const struct tools_open_query_def_params_per_port *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_query_def_params_per_port ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_vpi_force_mode : " UH_FMT "\n", ptr_struct->nv_config_vpi_force_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_vpi : " UH_FMT "\n", ptr_struct->nv_config_vpi); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_wol : " UH_FMT "\n", ptr_struct->nv_config_wol); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_default_config_payload_version : " UH_FMT "\n", ptr_struct->fw_default_config_payload_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_boot_vlan : " UH_FMT "\n", ptr_struct->default_boot_vlan); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_boot_protocol : " UH_FMT "\n", ptr_struct->default_boot_protocol); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_boot_retry_cnt : " UH_FMT "\n", ptr_struct->default_boot_retry_cnt); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_network_link_type : " UH_FMT "\n", ptr_struct->default_network_link_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_en_wol_magic : " UH_FMT "\n", ptr_struct->default_en_wol_magic); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_boot_vlan_en : " UH_FMT "\n", ptr_struct->default_boot_vlan_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_boot_option_rom_en : " UH_FMT "\n", ptr_struct->default_boot_option_rom_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_pprx : " UH_FMT "\n", ptr_struct->default_pprx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_pptx : " UH_FMT "\n", ptr_struct->default_pptx); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_boot_pkey : " UH_FMT "\n", ptr_struct->default_boot_pkey); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_ip_ver : " UH_FMT "\n", ptr_struct->boot_ip_ver); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_infiniband_dhcp_settings : " UH_FMT "\n", ptr_struct->nv_config_infiniband_dhcp_settings); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_infiniband_boot_settings : " UH_FMT "\n", ptr_struct->nv_config_infiniband_boot_settings); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_dhcp_iscsi_parameters : " UH_FMT "\n", ptr_struct->nv_config_dhcp_iscsi_parameters); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_iscsi_parameters : " UH_FMT "\n", ptr_struct->nv_config_iscsi_parameters); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_config_boot_parameters : " UH_FMT "\n", ptr_struct->nv_config_boot_parameters); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_vpi_force_mode : " UH_FMT "\n", ptr_struct->default_vpi_force_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_vpi_xfi_mode : " UH_FMT "\n", ptr_struct->default_vpi_xfi_mode); adb2c_add_indentation(fd, indent_level); fprintf(fd, "default_vpi_phy_type : " UH_FMT "\n", ptr_struct->default_vpi_phy_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_boot_to_target : " UH_FMT "\n", ptr_struct->iscsi_boot_to_target); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_vlan_en : " UH_FMT "\n", ptr_struct->iscsi_vlan_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_tcp_timestamps_en : " UH_FMT "\n", ptr_struct->iscsi_tcp_timestamps_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_chap_mutual_auth_en : " UH_FMT "\n", ptr_struct->iscsi_chap_mutual_auth_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_chap_auth_en : " UH_FMT "\n", ptr_struct->iscsi_chap_auth_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_dhcp_params_en : " UH_FMT "\n", ptr_struct->iscsi_dhcp_params_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_ipv4_dhcp_en : " UH_FMT "\n", ptr_struct->iscsi_ipv4_dhcp_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_lun_busy_retry_cnt : " UH_FMT "\n", ptr_struct->iscsi_lun_busy_retry_cnt); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iscsi_link_up_delay_time : " UH_FMT "\n", ptr_struct->iscsi_link_up_delay_time); } unsigned int tools_open_query_def_params_per_port_size(void) { return TOOLS_OPEN_QUERY_DEF_PARAMS_PER_PORT_SIZE; } void tools_open_query_def_params_per_port_dump(const struct tools_open_query_def_params_per_port *ptr_struct, FILE *fd) { tools_open_query_def_params_per_port_print(ptr_struct, fd, 0); } void tools_open_access_registers_pack(const union tools_open_access_registers *ptr_struct, u_int8_t *ptr_buff) { tools_open_mnv_cfg_pack(&(ptr_struct->MNVReg), ptr_buff); } void tools_open_access_registers_unpack(union tools_open_access_registers *ptr_struct, const u_int8_t *ptr_buff) { tools_open_mnv_cfg_unpack(&(ptr_struct->MNVReg), ptr_buff); } void tools_open_access_registers_print(const union tools_open_access_registers *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_access_registers ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MNVReg:\n"); tools_open_mnv_cfg_print(&(ptr_struct->MNVReg), fd, indent_level + 1); } unsigned int tools_open_access_registers_size(void) { return TOOLS_OPEN_ACCESS_REGISTERS_SIZE; } void tools_open_access_registers_dump(const union tools_open_access_registers *ptr_struct, FILE *fd) { tools_open_access_registers_print(ptr_struct, fd, 0); } void tools_open_aux_img_data_pack(const union tools_open_aux_img_data *ptr_struct, u_int8_t *ptr_buff) { tools_open_aux_tlv_pack(&(ptr_struct->aux_tlv), ptr_buff); } void tools_open_aux_img_data_unpack(union tools_open_aux_img_data *ptr_struct, const u_int8_t *ptr_buff) { tools_open_aux_tlv_unpack(&(ptr_struct->aux_tlv), ptr_buff); } void tools_open_aux_img_data_print(const union tools_open_aux_img_data *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_aux_img_data ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "aux_tlv:\n"); tools_open_aux_tlv_print(&(ptr_struct->aux_tlv), fd, indent_level + 1); } unsigned int tools_open_aux_img_data_size(void) { return TOOLS_OPEN_AUX_IMG_DATA_SIZE; } void tools_open_aux_img_data_dump(const union tools_open_aux_img_data *ptr_struct, FILE *fd) { tools_open_aux_img_data_print(ptr_struct, fd, 0); } void tools_open_hcr_cmds_pack(const union tools_open_hcr_cmds *ptr_struct, u_int8_t *ptr_buff) { tools_open_query_def_params_per_port_pack(&(ptr_struct->query_def_params_per_port), ptr_buff); } void tools_open_hcr_cmds_unpack(union tools_open_hcr_cmds *ptr_struct, const u_int8_t *ptr_buff) { tools_open_query_def_params_per_port_unpack(&(ptr_struct->query_def_params_per_port), ptr_buff); } void tools_open_hcr_cmds_print(const union tools_open_hcr_cmds *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_hcr_cmds ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "query_def_params_global:\n"); tools_open_query_def_params_global_print(&(ptr_struct->query_def_params_global), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "query_def_params_per_port:\n"); tools_open_query_def_params_per_port_print(&(ptr_struct->query_def_params_per_port), fd, indent_level + 1); } unsigned int tools_open_hcr_cmds_size(void) { return TOOLS_OPEN_HCR_CMDS_SIZE; } void tools_open_hcr_cmds_dump(const union tools_open_hcr_cmds *ptr_struct, FILE *fd) { tools_open_hcr_cmds_print(ptr_struct, fd, 0); } void tools_open_mcdd_descriptor_pack(const struct tools_open_mcdd_descriptor *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->update_handle); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->offset); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->size); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->reserved1); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reserved2); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data_page_phys_addr_msb); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data_page_phys_addr_lsb); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mailbox_page_phys_addr_msb); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mailbox_page_phys_addr_lsb); offset = 280; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->status); offset = 272; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->error); offset = 256; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->reserved3); } void tools_open_mcdd_descriptor_unpack(struct tools_open_mcdd_descriptor *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->update_handle = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 32; ptr_struct->offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->reserved1 = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 96; ptr_struct->reserved2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->data_page_phys_addr_msb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 160; ptr_struct->data_page_phys_addr_lsb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 192; ptr_struct->mailbox_page_phys_addr_msb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 224; ptr_struct->mailbox_page_phys_addr_lsb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 280; ptr_struct->status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 272; ptr_struct->error = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 256; ptr_struct->reserved3 = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void tools_open_mcdd_descriptor_print(const struct tools_open_mcdd_descriptor *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mcdd_descriptor ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "update_handle : " UH_FMT "\n", ptr_struct->update_handle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "offset : " U32H_FMT "\n", ptr_struct->offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved1 : " UH_FMT "\n", ptr_struct->reserved1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved2 : " U32H_FMT "\n", ptr_struct->reserved2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_page_phys_addr_msb : " U32H_FMT "\n", ptr_struct->data_page_phys_addr_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_page_phys_addr_lsb : " U32H_FMT "\n", ptr_struct->data_page_phys_addr_lsb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mailbox_page_phys_addr_msb : " U32H_FMT "\n", ptr_struct->mailbox_page_phys_addr_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mailbox_page_phys_addr_lsb : " U32H_FMT "\n", ptr_struct->mailbox_page_phys_addr_lsb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status : " UH_FMT "\n", ptr_struct->status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "error : " UH_FMT "\n", ptr_struct->error); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved3 : " UH_FMT "\n", ptr_struct->reserved3); } unsigned int tools_open_mcdd_descriptor_size(void) { return TOOLS_OPEN_MCDD_DESCRIPTOR_SIZE; } void tools_open_mcdd_descriptor_dump(const struct tools_open_mcdd_descriptor *ptr_struct, FILE *fd) { tools_open_mcdd_descriptor_print(ptr_struct, fd, 0); } void tools_open_mcdd_reg_pack(const struct tools_open_mcdd_reg *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 24, (u_int32_t)ptr_struct->update_handle); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->offset); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->size); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->reserved1); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reserved2); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data_page_phys_addr_msb); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->data_page_phys_addr_lsb); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mailbox_page_phys_addr_msb); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->mailbox_page_phys_addr_lsb); } void tools_open_mcdd_reg_unpack(struct tools_open_mcdd_reg *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->update_handle = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 24); offset = 32; ptr_struct->offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->reserved1 = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 96; ptr_struct->reserved2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->data_page_phys_addr_msb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 160; ptr_struct->data_page_phys_addr_lsb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 192; ptr_struct->mailbox_page_phys_addr_msb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 224; ptr_struct->mailbox_page_phys_addr_lsb = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void tools_open_mcdd_reg_print(const struct tools_open_mcdd_reg *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mcdd_reg ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "update_handle : " UH_FMT "\n", ptr_struct->update_handle); adb2c_add_indentation(fd, indent_level); fprintf(fd, "offset : " U32H_FMT "\n", ptr_struct->offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved1 : " UH_FMT "\n", ptr_struct->reserved1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved2 : " U32H_FMT "\n", ptr_struct->reserved2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_page_phys_addr_msb : " U32H_FMT "\n", ptr_struct->data_page_phys_addr_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "data_page_phys_addr_lsb : " U32H_FMT "\n", ptr_struct->data_page_phys_addr_lsb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mailbox_page_phys_addr_msb : " U32H_FMT "\n", ptr_struct->mailbox_page_phys_addr_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mailbox_page_phys_addr_lsb : " U32H_FMT "\n", ptr_struct->mailbox_page_phys_addr_lsb); } unsigned int tools_open_mcdd_reg_size(void) { return TOOLS_OPEN_MCDD_REG_SIZE; } void tools_open_mcdd_reg_dump(const struct tools_open_mcdd_reg *ptr_struct, FILE *fd) { tools_open_mcdd_reg_print(ptr_struct, fd, 0); } void tools_open_mirc_reg_pack(const struct tools_open_mirc_reg *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->status_code); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reserved); } void tools_open_mirc_reg_unpack(struct tools_open_mirc_reg *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->status_code = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->reserved = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void tools_open_mirc_reg_print(const struct tools_open_mirc_reg *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_mirc_reg ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "status_code : " UH_FMT "\n", ptr_struct->status_code); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved : " U32H_FMT "\n", ptr_struct->reserved); } unsigned int tools_open_mirc_reg_size(void) { return TOOLS_OPEN_MIRC_REG_SIZE; } void tools_open_mirc_reg_dump(const struct tools_open_mirc_reg *ptr_struct, FILE *fd) { tools_open_mirc_reg_print(ptr_struct, fd, 0); } void tools_open_misc_structs_pack(const union tools_open_misc_structs *ptr_struct, u_int8_t *ptr_buff) { tools_open_image_info_pack(&(ptr_struct->image_info), ptr_buff); } void tools_open_misc_structs_unpack(union tools_open_misc_structs *ptr_struct, const u_int8_t *ptr_buff) { tools_open_image_info_unpack(&(ptr_struct->image_info), ptr_buff); } void tools_open_misc_structs_print(const union tools_open_misc_structs *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_misc_structs ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_info:\n"); tools_open_image_info_print(&(ptr_struct->image_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mfg_info:\n"); tools_open_mfg_info_print(&(ptr_struct->mfg_info), fd, indent_level + 1); } unsigned int tools_open_misc_structs_size(void) { return TOOLS_OPEN_MISC_STRUCTS_SIZE; } void tools_open_misc_structs_dump(const union tools_open_misc_structs *ptr_struct, FILE *fd) { tools_open_misc_structs_print(ptr_struct, fd, 0); } void tools_open_nv_cfg_pack(const union tools_open_nv_cfg *ptr_struct, u_int8_t *ptr_buff) { tools_open_nv_base_mac_guid_pack(&(ptr_struct->nv_base_mac_guid), ptr_buff); } void tools_open_nv_cfg_unpack(union tools_open_nv_cfg *ptr_struct, const u_int8_t *ptr_buff) { tools_open_nv_base_mac_guid_unpack(&(ptr_struct->nv_base_mac_guid), ptr_buff); } void tools_open_nv_cfg_print(const union tools_open_nv_cfg *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_nv_cfg ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_base_mac_guid:\n"); tools_open_nv_base_mac_guid_print(&(ptr_struct->nv_base_mac_guid), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "nv_base_mac_guid_cap:\n"); tools_open_nv_base_mac_guid_cap_print(&(ptr_struct->nv_base_mac_guid_cap), fd, indent_level + 1); } unsigned int tools_open_nv_cfg_size(void) { return TOOLS_OPEN_NV_CFG_SIZE; } void tools_open_nv_cfg_dump(const union tools_open_nv_cfg *ptr_struct, FILE *fd) { tools_open_nv_cfg_print(ptr_struct, fd, 0); } void tools_open_tools_open_pack(const union tools_open_tools_open *ptr_struct, u_int8_t *ptr_buff) { tools_open_misc_structs_pack(&(ptr_struct->MiscStructs), ptr_buff); } void tools_open_tools_open_unpack(union tools_open_tools_open *ptr_struct, const u_int8_t *ptr_buff) { tools_open_misc_structs_unpack(&(ptr_struct->MiscStructs), ptr_buff); } void tools_open_tools_open_print(const union tools_open_tools_open *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== tools_open_tools_open ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "NVConfig:\n"); tools_open_nv_cfg_print(&(ptr_struct->NVConfig), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "AceessRegisters:\n"); tools_open_access_registers_print(&(ptr_struct->AceessRegisters), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "HcrCmds:\n"); tools_open_hcr_cmds_print(&(ptr_struct->HcrCmds), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "AuxImgData:\n"); tools_open_aux_img_data_print(&(ptr_struct->AuxImgData), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MiscStructs:\n"); tools_open_misc_structs_print(&(ptr_struct->MiscStructs), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcdd_reg:\n"); tools_open_mcdd_reg_print(&(ptr_struct->mcdd_reg), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcdd_descriptor:\n"); tools_open_mcdd_descriptor_print(&(ptr_struct->mcdd_descriptor), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mirc_reg:\n"); tools_open_mirc_reg_print(&(ptr_struct->mirc_reg), fd, indent_level + 1); } unsigned int tools_open_tools_open_size(void) { return TOOLS_OPEN_TOOLS_OPEN_SIZE; } void tools_open_tools_open_dump(const union tools_open_tools_open *ptr_struct, FILE *fd) { tools_open_tools_open_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/image_layout_layouts.h0000644000175000017500000017143614522641732023247 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-01-25 19:38:33" *** by: *** > [REDACTED]/adb2pack.py --input adb/image_layout/image_layout.adb --file-prefix image_layout --prefix image_layout_ --no-adb-utils ***/ #ifndef IMAGE_LAYOUT_LAYOUTS_H #define IMAGE_LAYOUT_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 8 */ struct image_layout_uint64 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int64_t uint64; }; /* Description - */ /* Size in bytes - 4 */ struct image_layout_component_authentication_configuration { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0-FW_BURN_NONE, 1-FW_BURN_SHA256_DIGEST, 2-FW_BURN_SHA512_DIGEST,3-FW_BURN_2048BIT_RSASSA_PKCS1_V1_5_WITH_SHA256, 4-FW_BURN_4096BIT_RSASSA_PKCS1_V1_5_WITH_SHA512 */ /* 0x0.0 - 0x0.7 */ u_int8_t auth_type; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - used for authenticating challenge-response based tokens */ /* 0x0.25 - 0x0.25 */ u_int8_t c_r_token_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - used for authenticating Back to commissioning tokens */ /* 0x0.26 - 0x0.26 */ u_int8_t btc_token_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - used for authenticating Factory Re-COnfiguration Responses */ /* 0x0.27 - 0x0.27 */ u_int8_t frc_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - used for signing NVCONFIG at MLNX level */ /* 0x0.28 - 0x0.28 */ u_int8_t mlnx_nvconfig_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - used for authenticating NVCONFIG at OEM level */ /* 0x0.29 - 0x0.29 */ u_int8_t vendor_nvconfig_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - used for authenticating CS tokens at OEM level */ /* 0x0.30 - 0x0.30 */ u_int8_t cs_token_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Used for authenticating firmware, DBG_FW, DBG Tokens */ /* 0x0.31 - 0x0.31 */ u_int8_t fw_en; }; /* Description - */ /* Size in bytes - 8 */ struct image_layout_htoc_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t hash_offset; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t section_type; }; /* Description - */ /* Size in bytes - 16 */ struct image_layout_htoc_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ u_int32_t version; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.7 */ u_int8_t num_of_entries; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.8 - 0x4.15 */ u_int8_t hash_type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t hash_size; }; /* Description - */ /* Size in bytes - 4 */ struct image_layout_module_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t branch; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.8 - 0x0.19 */ u_int16_t minor; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.20 - 0x0.31 */ u_int16_t major; }; /* Description - */ /* Size in bytes - 4 */ struct image_layout_reset_capabilities { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Initial capability for reset level */ /* 0x0.0 - 0x0.0 */ u_int8_t reset_ver_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Version field used for the version vector. The firmware cannot peform Live-Patch from different version_vector_ver. Note: Different major values are not supported. */ /* 0x0.8 - 0x0.15 */ u_int8_t version_vector_ver; }; /* Description - */ /* Size in bytes - 4 */ struct image_layout_reset_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - major must be supported in order to support lfwp */ /* 0x0.0 - 0x0.15 */ u_int16_t major; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - branch must be supported in order to support lfwp */ /* 0x0.16 - 0x0.19 */ u_int8_t branch; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - determines which transfer function to run */ /* 0x0.20 - 0x0.27 */ u_int8_t minor; }; /* Description - */ /* Size in bytes - 16 */ struct image_layout_uid_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Number of allocated UIDs in this entry */ /* 0x0.0 - 0x0.7 */ u_int8_t num_allocated; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Step size by which to derive the UIDs for this entry See struct description */ /* 0x0.8 - 0x0.15 */ u_int8_t step; /* Description - MSB of number of allocated UIDs in this entry */ /* 0x0.16 - 0x0.23 */ u_int8_t num_allocated_msb; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - For MACs, the upper 16 bits in the 'hi' dword are reserved */ /* 0x8.0 - 0xc.31 */ u_int64_t uid; }; /* Description - */ /* Size in bytes - 16 */ struct image_layout_FW_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.8 - 0x8.15 */ u_int8_t Hour; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.16 - 0x8.23 */ u_int8_t Minutes; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t Seconds; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.7 */ u_int8_t Day; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.8 - 0xc.15 */ u_int8_t Month; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.16 - 0xc.31 */ u_int16_t Year; }; /* Description - */ /* Size in bytes - 8 */ struct image_layout_TRIPPLE_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; }; /* Description - */ /* Size in bytes - 288 */ struct image_layout_file_public_keys { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - configuration bits to enable authentication for each component */ /* 0x0.0 - 0x0.31 */ struct image_layout_component_authentication_configuration component_authentication_configuration; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - public key exponent, FW should use an exponent of 65537 */ /* 0xc.0 - 0xc.31 */ u_int32_t keypair_exp; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - UUID of this key created by server when it generates a keypair */ /* 0x10.0 - 0x1c.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - 2048 bit public-key */ /* 0x20.0 - 0x11c.31 */ u_int32_t key[64]; }; /* Description - */ /* Size in bytes - 544 */ struct image_layout_file_public_keys_2 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - configuration bits to enable authentication for each component */ /* 0x0.0 - 0x0.31 */ struct image_layout_component_authentication_configuration component_authentication_configuration; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - public key exponent, FW should use an exponent of 65537 */ /* 0xc.0 - 0xc.31 */ u_int32_t keypair_exp; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - UUID of this key created by server when it generates a keypair */ /* 0x10.0 - 0x1c.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - 4096 bit public-key */ /* 0x20.0 - 0x21c.31 */ u_int32_t key[128]; }; /* Description - */ /* Size in bytes - 544 */ struct image_layout_file_public_keys_3 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - public key exponent, FW should use an exponent of 65537 */ /* 0x0.0 - 0x0.31 */ u_int32_t keypair_exp; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - UUID of this key created by server when it generates a keypair */ /* 0x4.0 - 0x10.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - 4096 bit public-key */ /* 0x14.0 - 0x210.31 */ u_int32_t key[128]; /*---------------- DWORD[133] (Offset 0x214) ----------------*/ /* Description - configuration bits to enable authentication for each component */ /* 0x214.0 - 0x214.31 */ struct image_layout_component_authentication_configuration component_authentication_configuration; }; /* Description - */ /* Size in bytes - 64 */ struct image_layout_guids { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - UIDs (MACs and GUIDs) Allocation Entry. guids, is used for system GUID, node GUID and port GUID of port 0. ;/Multiple UIDs can be assigned to a single port, to be used for multiple virtual guests, multi host and managment */ /* 0x0.0 - 0xc.31 */ struct image_layout_uid_entry guids; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x1c.31 */ struct image_layout_uid_entry macs; }; /* Description - */ /* Size in bytes - 12 */ struct image_layout_hashes_table_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Hard-coded to 0 */ /* 0x0.0 - 0x0.31 */ u_int32_t load_address; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Num of payload DWs + 1 */ /* 0x4.0 - 0x4.31 */ u_int32_t dw_size; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Calculated over the first 2 DWs */ /* 0x8.0 - 0x8.15 */ u_int16_t crc; }; /* Description - */ /* Size in bytes - 240 */ struct image_layout_htoc { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0xc.31 */ struct image_layout_htoc_header header; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0xec.31 */ struct image_layout_htoc_entry entry[28]; }; /* Description - */ /* Size in bytes - 64 */ struct image_layout_htoc_hash { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x3c.31 */ u_int32_t hash_val[16]; }; /* Description - HW pointer entry */ /* Size in bytes - 8 */ struct image_layout_hw_pointer_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - pointer */ /* 0x0.0 - 0x0.31 */ u_int32_t ptr; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - crc16 as calculated by HW */ /* 0x4.0 - 0x4.15 */ u_int16_t crc; }; /* Description - */ /* Size in bytes - 8 */ struct image_layout_image_size { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - log of next address in bytes to search for an image. Address in bytes is 2^log_step */ /* 0x0.0 - 0x0.7 */ u_int8_t log_step; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - this image can run from any partition starting at address 0x0000000, 0x4000000, 0x800000. The code supports only two partitions. */ /* 0x0.31 - 0x0.31 */ u_int8_t run_from_any; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Max possible size in bytes of image. Image read / write should not occure beyond this address */ /* 0x4.0 - 0x4.31 */ u_int32_t max_size; }; /* Description - */ /* Size in bytes - 64 */ struct image_layout_module_versions { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ struct image_layout_module_version core; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ struct image_layout_module_version phy; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ struct image_layout_module_version kernel; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ struct image_layout_module_version iron_image; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.31 */ struct image_layout_module_version host_management; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x14.31 */ struct image_layout_module_version mad; }; /* Description - */ /* Size in bytes - 16 */ struct image_layout_operation_key { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t key_modifier; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ u_int64_t key; }; /* Description - */ /* Size in bytes - 48 */ struct image_layout_version_vector { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ struct image_layout_reset_capabilities reset_capabilities; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - cores SP */ /* 0x4.0 - 0x4.31 */ struct image_layout_reset_version scratchpad; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ struct image_layout_reset_version icm_context; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - PCI domain */ /* 0xc.0 - 0xc.31 */ struct image_layout_reset_version pci; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - PHY domain */ /* 0x10.0 - 0x10.31 */ struct image_layout_reset_version phy; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x14.31 */ struct image_layout_reset_version ini; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x18.31 */ struct image_layout_reset_version reserved1; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.31 */ struct image_layout_reset_version reserved2; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x20.31 */ struct image_layout_reset_version reserved3; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - */ /* 0x24.0 - 0x24.31 */ struct image_layout_reset_version reserved4; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x28.31 */ struct image_layout_reset_version reserved5; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - */ /* 0x2c.0 - 0x2c.31 */ struct image_layout_reset_version reserved6; }; /* Description - */ /* Size in bytes - 4 */ struct image_layout_boot_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t minor_version; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.8 - 0x0.15 */ u_int8_t major_version; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.24 - 0x0.31 */ u_int8_t image_format_version; }; /* Description - */ /* Size in bytes - 512 */ struct image_layout_device_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ u_int32_t signature0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t signature1; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ u_int32_t signature2; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ u_int32_t signature3; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Format version for this struct */ /* 0x10.0 - 0x10.7 */ u_int8_t minor_version; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Format version for this struct */ /* 0x10.8 - 0x10.16 */ u_int16_t major_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct image_layout_guids guids; /*---------------- DWORD[27] (Offset 0x6c) ----------------*/ /* Description - */ /* 0x6c.0 - 0x6c.15 */ u_int16_t vsd_vendor_id; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.24 - 0x140.23 */ char vsd[209]; /*---------------- DWORD[88] (Offset 0x160) ----------------*/ /* Description - */ /* 0x160.0 - 0x19c.31 */ struct image_layout_operation_key keys[4]; /*---------------- DWORD[127] (Offset 0x1fc) ----------------*/ /* Description - */ /* 0x1fc.0 - 0x1fc.15 */ u_int16_t crc; }; /* Description - */ /* Size in bytes - 2052 */ struct image_layout_hashes_table { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x8.31 */ struct image_layout_hashes_table_header header; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xf8.31 */ struct image_layout_htoc htoc; /*---------------- DWORD[63] (Offset 0xfc) ----------------*/ /* Description - */ /* 0xfc.0 - 0x7f8.31 */ struct image_layout_htoc_hash hash[28]; /*---------------- DWORD[512] (Offset 0x800) ----------------*/ /* Description - */ /* 0x800.0 - 0x800.15 */ u_int16_t crc; }; /* Description - HW pointers */ /* Size in bytes - 128 */ struct image_layout_hw_pointers_carmel { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ struct image_layout_hw_pointer_entry boot_record_ptr; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ struct image_layout_hw_pointer_entry boot2_ptr; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x14.31 */ struct image_layout_hw_pointer_entry toc_ptr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x1c.31 */ struct image_layout_hw_pointer_entry tools_ptr; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x24.31 */ struct image_layout_hw_pointer_entry authentication_start_pointer; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x2c.31 */ struct image_layout_hw_pointer_entry authentication_end_pointer; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - */ /* 0x30.0 - 0x34.31 */ struct image_layout_hw_pointer_entry digest_pointer; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.0 - 0x3c.31 */ struct image_layout_hw_pointer_entry digest_recovery_key_pointer; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - */ /* 0x40.0 - 0x44.31 */ struct image_layout_hw_pointer_entry fw_window_start_pointer; /*---------------- DWORD[18] (Offset 0x48) ----------------*/ /* Description - */ /* 0x48.0 - 0x4c.31 */ struct image_layout_hw_pointer_entry fw_window_end_pointer; /*---------------- DWORD[20] (Offset 0x50) ----------------*/ /* Description - */ /* 0x50.0 - 0x54.31 */ struct image_layout_hw_pointer_entry image_info_section_pointer; /*---------------- DWORD[22] (Offset 0x58) ----------------*/ /* Description - */ /* 0x58.0 - 0x5c.31 */ struct image_layout_hw_pointer_entry image_signature_pointer; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - */ /* 0x60.0 - 0x64.31 */ struct image_layout_hw_pointer_entry public_key_pointer; /*---------------- DWORD[26] (Offset 0x68) ----------------*/ /* Description - */ /* 0x68.0 - 0x6c.31 */ struct image_layout_hw_pointer_entry fw_security_version_pointer; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.0 - 0x74.31 */ struct image_layout_hw_pointer_entry gcm_iv_delta_pointer; /*---------------- DWORD[30] (Offset 0x78) ----------------*/ /* Description - */ /* 0x78.0 - 0x7c.31 */ struct image_layout_hw_pointer_entry hashes_table_pointer; }; /* Description - */ /* Size in bytes - 1024 */ struct image_layout_image_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.1 - 0x0.1 */ u_int8_t toc_header_duplication; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Indicate that this binary intended for secure boot enabled devices */ /* 0x0.2 - 0x0.2 */ u_int8_t secure_boot; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0x0 - not encrypted; 0x1 - encryption before signature; 0x2 - encryption after signature. */ /* 0x0.3 - 0x0.4 */ u_int8_t encrypted_fw; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Indicate that this binary support windbond flash */ /* 0x0.5 - 0x0.5 */ u_int8_t windbond_flash_support; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Indicate that this binary support long keys (up to 4096bits) */ /* 0x0.6 - 0x0.6 */ u_int8_t long_keys; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - when set, debug-fw tokens are enabled. */ /* 0x0.7 - 0x0.7 */ u_int8_t debug_fw_tokens_supported; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The image can be updated using the MCC/MCDA commands */ /* 0x0.8 - 0x0.8 */ u_int8_t mcc_en; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - OEM lifecycle NVCONFIG files are signed */ /* 0x0.9 - 0x0.9 */ u_int8_t signed_vendor_nvconfig_files; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Mellanox lifecycle NVCONFIG files are signed */ /* 0x0.10 - 0x0.10 */ u_int8_t signed_mlnx_nvconfig_files; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Factory re-customizationflow is supported */ /* 0x0.11 - 0x0.11 */ u_int8_t frc_supported; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Customer Support Tokens are supported */ /* 0x0.12 - 0x0.12 */ u_int8_t cs_tokens_supported; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - This is a debug firmware */ /* 0x0.13 - 0x0.13 */ u_int8_t debug_fw; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - [MCC/MCDA flow] if set, the SHA 256 digest is encrypted - enabled by default for secure_fw - cr-space not closed */ /* 0x0.14 - 0x0.14 */ u_int8_t signed_fw; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - [MCC/MCDA flow] cr-space closed */ /* 0x0.15 - 0x0.15 */ u_int8_t secure_fw; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - IMAGE_INFO section minor version */ /* 0x0.16 - 0x0.23 */ u_int8_t minor_version; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - IMAGE_INFO section major version */ /* 0x0.24 - 0x0.31 */ u_int8_t major_version; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x10.31 */ struct image_layout_FW_VERSION FW_VERSION; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x18.31 */ struct image_layout_TRIPPLE_VERSION mic_version; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - PCI device ID of the device */ /* 0x1c.0 - 0x1c.15 */ u_int16_t pci_vendor_id; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - PCI device ID of the device */ /* 0x1c.16 - 0x1c.31 */ u_int16_t pci_device_id; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - PCI device ID of the device */ /* 0x20.0 - 0x20.15 */ u_int16_t pci_sub_vendor_id; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - PCI device ID of the device */ /* 0x20.16 - 0x20.31 */ u_int16_t pci_subsystem_id; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - */ /* 0x24.24 - 0x34.23 */ char psid[17]; /*---------------- DWORD[13] (Offset 0x34) ----------------*/ /* Description - */ /* 0x34.0 - 0x34.15 */ u_int16_t vsd_vendor_id; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.24 - 0x108.23 */ char vsd[209]; /*---------------- DWORD[66] (Offset 0x108) ----------------*/ /* Description - image size parameters */ /* 0x108.0 - 0x10c.31 */ struct image_layout_image_size image_size; /*---------------- DWORD[68] (Offset 0x110) ----------------*/ /* Description - The needed 10s of ms timeout between the PCI link disable and PCI link enable. */ /* 0x110.0 - 0x110.7 */ u_int8_t synced_reset_downtime; /*---------------- DWORD[68] (Offset 0x110) ----------------*/ /* Description - indication for tool where to locate toc header copy */ /* 0x110.16 - 0x110.31 */ u_int16_t toc_copy_ofst; /*---------------- DWORD[70] (Offset 0x118) ----------------*/ /* Description - HW device(s) supported by this FW image. 0 means invalid entry. For Golan A0, first entry should be 0x1ff */ /* 0x118.0 - 0x124.31 */ u_int32_t supported_hw_id[4]; /*---------------- DWORD[74] (Offset 0x128) ----------------*/ /* Description - */ /* 0x128.0 - 0x128.31 */ u_int32_t ini_file_num; /*---------------- DWORD[75] (Offset 0x12c) ----------------*/ /* Description - */ /* 0x12c.0 - 0x12c.31 */ u_int32_t burn_image_size; /*---------------- DWORD[100] (Offset 0x190) ----------------*/ /* Description - */ /* 0x190.0 - 0x1bc.31 */ struct image_layout_version_vector version_vector; /*---------------- DWORD[112] (Offset 0x1c0) ----------------*/ /* Description - Product Version is the unified version of the FW and expansion ROM. Format is defined by the packager. When set to a non-empty string the FW update tool burns the image as a monolythic entity and refuses to update rom only or FW only. */ /* 0x1c0.24 - 0x1d0.23 */ char prod_ver[17]; /*---------------- DWORD[116] (Offset 0x1d0) ----------------*/ /* Description - Product description */ /* 0x1d0.24 - 0x2d0.23 */ char description[257]; /*---------------- DWORD[192] (Offset 0x300) ----------------*/ /* Description - */ /* 0x300.0 - 0x33c.31 */ struct image_layout_module_versions module_versions; /*---------------- DWORD[208] (Offset 0x340) ----------------*/ /* Description - Product name */ /* 0x340.24 - 0x380.23 */ char name[65]; /*---------------- DWORD[224] (Offset 0x380) ----------------*/ /* Description - PRS used to generate the FW binary */ /* 0x380.24 - 0x400.23 */ char prs_name[129]; }; /* Description - */ /* Size in bytes - 320 */ struct image_layout_image_signature { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - time based UUID for this signature */ /* 0x0.0 - 0xc.31 */ u_int32_t signature_uuid[4]; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The UUID of the keypair used for signing this file */ /* 0x10.0 - 0x1c.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - The signature itself */ /* 0x20.0 - 0x11c.31 */ u_int32_t signature[64]; }; /* Description - */ /* Size in bytes - 576 */ struct image_layout_image_signature_2 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - time based UUID for this signature */ /* 0x0.0 - 0xc.31 */ u_int32_t signature_uuid[4]; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The UUID of the keypair used for signing this file */ /* 0x10.0 - 0x1c.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - The signature itself */ /* 0x20.0 - 0x21c.31 */ u_int32_t signature[128]; }; /* Description - */ /* Size in bytes - 32 */ struct image_layout_itoc_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.2 - 0x0.23 */ u_int32_t size; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Section ID Section Type DESCRIPTION 0x1 BOOT_CODE FW loader code 0x2 PCI_CODE Code that is required to raise PCIe link. 0x3 MAIN_CODE All non-PCIe FW code 0x8 HW_BOOT_CFG Initial values for the PCI related registers 0x9 HW_MAIN_CFG Initial values for all other registers 0x10 IMAGE_INFO Management data for the burning tool. See 'Image Info Section' chapter in the Mellanox Flash Programming Application Note 0x11 FW_BOOT_CFG Initial values for user set-able hi level non-hardware related settings, such as number of physical functions (optional) 0x12 FW_MAIN_CFG Initial values for user set-able hi level non-hardware related settings. (optional) 0x18 ROM_CODE PXE/Boot over IB code. 0x30 DBG_LOG_MAP FW logger 'index to string' map. The map is in ASCI text. Format is TBD. PARAM0 in the iTOC specifies the compression method of this sector: 0. Uncompressed 1. Zlib compress2() 2. LZMA Others - Reserved 0x31 DBG_FW_INI The Ini file used in the image generation. The PARAM0 applies the same as in DBG_LOG_MAP section type. 0x32 DBG_FW_PARAMS FW settable parameters. ASCII text. Format is TBD. The PARAM0 applies the same as in DBG_LOG_MAP section type. 0xff END_MARKER A type of 0xff marks the end of the iTOC entries array. It is recommended to leave the unused part of the iTOC section blank (that is, 0xff in all unused bytes) All other values Reserved */ /* 0x0.24 - 0x0.31 */ u_int8_t type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - if partition type is code or ini then the load address is in here */ /* 0x4.0 - 0x4.29 */ u_int32_t param0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - When this bit is set, Data within the section is protected by per-line crc. See yu.flash.replacement.crc_en */ /* 0x4.30 - 0x4.30 */ u_int8_t cache_line_crc; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - When this bit is set, image is zipped */ /* 0x4.31 - 0x4.31 */ u_int8_t zipped_image; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - if partition type is code then the jump address is in here */ /* 0x8.0 - 0x8.31 */ u_int32_t param1; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.15 */ u_int16_t version; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.2 - 0x14.30 */ u_int32_t flash_addr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x18.15 */ u_int16_t section_crc; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.16 - 0x18.18 */ u_int8_t crc; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - indicates whether the section referenced by the ITOC is encrypted */ /* 0x18.31 - 0x18.31 */ u_int8_t encrypted_section; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t itoc_entry_crc; }; /* Description - */ /* Size in bytes - 32 */ struct image_layout_itoc_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - for itoc 49 54 4f 43 for dtoc 44 54 4f 43 */ /* 0x0.0 - 0x0.31 */ u_int32_t signature0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - 04 08 15 16 */ /* 0x4.0 - 0x4.31 */ u_int32_t signature1; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - 23 42 ca fa */ /* 0x8.0 - 0x8.31 */ u_int32_t signature2; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - ba ca fe 00 */ /* 0xc.0 - 0xc.31 */ u_int32_t signature3; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Current version: 1 */ /* 0x10.0 - 0x10.7 */ u_int8_t version; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - itoc_header: Represents the minimal layout version expected on the flash: 1. dtoc_header: Represents the layout version depicted by the dTOC: 1. */ /* 0x10.24 - 0x10.31 */ u_int8_t flash_layout_version; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - indicates the number of ITOC entries in the image */ /* 0x14.0 - 0x14.7 */ u_int8_t num_of_entries; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t itoc_entry_crc; }; /* Description - */ /* Size in bytes - 2304 */ struct image_layout_public_keys { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x8fc.31 */ struct image_layout_file_public_keys file_public_keys[8]; }; /* Description - */ /* Size in bytes - 320 */ struct image_layout_mfg_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.24 - 0x10.23 */ char psid[17]; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - When this bit is set, the GUIDs should be taken from the device_info node. When this bit is cleared, the GUIDs should be taken from the mfg_info node. */ /* 0x1c.0 - 0x1c.0 */ u_int8_t guids_override_en; /* Description - MFG_INFO section minor version */ /* 0x1c.16 - 0x1c.23 */ u_int8_t minor_version; /* Description - MFG_INFO section major version */ /* 0x1c.24 - 0x1c.31 */ u_int8_t major_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct image_layout_guids guids; }; /* Description - */ /* Size in bytes - 4352 */ struct image_layout_public_keys_2 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10fc.31 */ struct image_layout_file_public_keys_2 file_public_keys_2[8]; }; /* Description - */ /* Size in bytes - 4352 */ struct image_layout_public_keys_3 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10fc.31 */ struct image_layout_file_public_keys_3 file_public_keys_3[8]; }; /* Description - */ /* Size in bytes - 1536 */ struct image_layout_secure_boot_signatures { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - boot signature of data: image signature, hw pointers, boot record, table of content, boot2 */ /* 0x0.0 - 0x1fc.31 */ u_int32_t boot_signature[128]; /*---------------- DWORD[128] (Offset 0x200) ----------------*/ /* Description - fw critical signature of itcos: HW_BOOT_INI, PCIE_PHY_UC_COMMANDS, PCIE_LINK_CODE */ /* 0x200.0 - 0x3fc.31 */ u_int32_t critical_signature[128]; /*---------------- DWORD[256] (Offset 0x400) ----------------*/ /* Description - fw non critical signatures of all other itocs */ /* 0x400.0 - 0x5fc.31 */ u_int32_t non_critical_signature[128]; }; /* Description - tools speific section */ /* Size in bytes - 64 */ struct image_layout_tools_area { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - tools area minor version */ /* 0x0.0 - 0x0.7 */ u_int8_t minor; /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - tools area major version */ /* 0x0.8 - 0x0.15 */ u_int8_t major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - binary version minor set by image generation tool */ /* 0x4.0 - 0x4.7 */ u_int8_t bin_ver_minor; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - binary version major set by image generation tool */ /* 0x4.8 - 0x4.15 */ u_int8_t bin_ver_major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - log2 image slot size */ /* 0x4.16 - 0x4.31 */ u_int16_t log2_img_slot_size; /*---------------- DWORD[15] (Offset 0x3c) ----------------*/ /* Description - */ /* 0x3c.0 - 0x3c.15 */ u_int16_t crc; }; /* Description - */ /* Size in bytes - 4352 */ union image_layout_image_layout_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x23c.31 */ struct image_layout_image_signature_2 image_signature_2; /* Description - */ /* 0x0.0 - 0x5fc.31 */ struct image_layout_secure_boot_signatures secure_boot_signatures; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct image_layout_itoc_header itoc_header; /* Description - */ /* 0x0.0 - 0x1fc.31 */ struct image_layout_device_info device_info; /* Description - */ /* 0x0.0 - 0x10fc.31 */ struct image_layout_public_keys_3 public_keys_3; /* Description - */ /* 0x0.0 - 0x0.31 */ struct image_layout_boot_version boot_version; /* Description - */ /* 0x0.0 - 0x13c.31 */ struct image_layout_image_signature image_signature; /* Description - */ /* 0x0.0 - 0x800.31 */ struct image_layout_hashes_table hashes_table; /* Description - */ /* 0x0.0 - 0x8fc.31 */ struct image_layout_public_keys public_keys; /* Description - */ /* 0x0.0 - 0x3fc.31 */ struct image_layout_image_info image_info; /* Description - */ /* 0x0.0 - 0x7c.31 */ struct image_layout_hw_pointers_carmel hw_pointers_carmel; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct image_layout_tools_area tools_area; /* Description - */ /* 0x0.0 - 0x10fc.31 */ struct image_layout_public_keys_2 public_keys_2; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct image_layout_itoc_entry itoc_entry; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* uint64 */ void image_layout_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff); void image_layout_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff); void image_layout_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_uint64_size(void); #define IMAGE_LAYOUT_UINT64_SIZE (0x8) void image_layout_uint64_dump(const u_int64_t *ptr_struct, FILE *fd); /* component_authentication_configuration */ void image_layout_component_authentication_configuration_pack(const struct image_layout_component_authentication_configuration *ptr_struct, u_int8_t *ptr_buff); void image_layout_component_authentication_configuration_unpack(struct image_layout_component_authentication_configuration *ptr_struct, const u_int8_t *ptr_buff); void image_layout_component_authentication_configuration_print(const struct image_layout_component_authentication_configuration *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_component_authentication_configuration_size(void); #define IMAGE_LAYOUT_COMPONENT_AUTHENTICATION_CONFIGURATION_SIZE (0x4) void image_layout_component_authentication_configuration_dump(const struct image_layout_component_authentication_configuration *ptr_struct, FILE *fd); /* htoc_entry */ void image_layout_htoc_entry_pack(const struct image_layout_htoc_entry *ptr_struct, u_int8_t *ptr_buff); void image_layout_htoc_entry_unpack(struct image_layout_htoc_entry *ptr_struct, const u_int8_t *ptr_buff); void image_layout_htoc_entry_print(const struct image_layout_htoc_entry *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_htoc_entry_size(void); #define IMAGE_LAYOUT_HTOC_ENTRY_SIZE (0x8) void image_layout_htoc_entry_dump(const struct image_layout_htoc_entry *ptr_struct, FILE *fd); /* htoc_header */ void image_layout_htoc_header_pack(const struct image_layout_htoc_header *ptr_struct, u_int8_t *ptr_buff); void image_layout_htoc_header_unpack(struct image_layout_htoc_header *ptr_struct, const u_int8_t *ptr_buff); void image_layout_htoc_header_print(const struct image_layout_htoc_header *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_htoc_header_size(void); #define IMAGE_LAYOUT_HTOC_HEADER_SIZE (0x10) void image_layout_htoc_header_dump(const struct image_layout_htoc_header *ptr_struct, FILE *fd); /* module_version */ void image_layout_module_version_pack(const struct image_layout_module_version *ptr_struct, u_int8_t *ptr_buff); void image_layout_module_version_unpack(struct image_layout_module_version *ptr_struct, const u_int8_t *ptr_buff); void image_layout_module_version_print(const struct image_layout_module_version *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_module_version_size(void); #define IMAGE_LAYOUT_MODULE_VERSION_SIZE (0x4) void image_layout_module_version_dump(const struct image_layout_module_version *ptr_struct, FILE *fd); /* reset_capabilities */ void image_layout_reset_capabilities_pack(const struct image_layout_reset_capabilities *ptr_struct, u_int8_t *ptr_buff); void image_layout_reset_capabilities_unpack(struct image_layout_reset_capabilities *ptr_struct, const u_int8_t *ptr_buff); void image_layout_reset_capabilities_print(const struct image_layout_reset_capabilities *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_reset_capabilities_size(void); #define IMAGE_LAYOUT_RESET_CAPABILITIES_SIZE (0x4) void image_layout_reset_capabilities_dump(const struct image_layout_reset_capabilities *ptr_struct, FILE *fd); /* reset_version */ void image_layout_reset_version_pack(const struct image_layout_reset_version *ptr_struct, u_int8_t *ptr_buff); void image_layout_reset_version_unpack(struct image_layout_reset_version *ptr_struct, const u_int8_t *ptr_buff); void image_layout_reset_version_print(const struct image_layout_reset_version *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_reset_version_size(void); #define IMAGE_LAYOUT_RESET_VERSION_SIZE (0x4) void image_layout_reset_version_dump(const struct image_layout_reset_version *ptr_struct, FILE *fd); /* uid_entry */ void image_layout_uid_entry_pack(const struct image_layout_uid_entry *ptr_struct, u_int8_t *ptr_buff); void image_layout_uid_entry_unpack(struct image_layout_uid_entry *ptr_struct, const u_int8_t *ptr_buff); void image_layout_uid_entry_print(const struct image_layout_uid_entry *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_uid_entry_size(void); #define IMAGE_LAYOUT_UID_ENTRY_SIZE (0x10) void image_layout_uid_entry_dump(const struct image_layout_uid_entry *ptr_struct, FILE *fd); /* FW_VERSION */ void image_layout_FW_VERSION_pack(const struct image_layout_FW_VERSION *ptr_struct, u_int8_t *ptr_buff); void image_layout_FW_VERSION_unpack(struct image_layout_FW_VERSION *ptr_struct, const u_int8_t *ptr_buff); void image_layout_FW_VERSION_print(const struct image_layout_FW_VERSION *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_FW_VERSION_size(void); #define IMAGE_LAYOUT_FW_VERSION_SIZE (0x10) void image_layout_FW_VERSION_dump(const struct image_layout_FW_VERSION *ptr_struct, FILE *fd); /* TRIPPLE_VERSION */ void image_layout_TRIPPLE_VERSION_pack(const struct image_layout_TRIPPLE_VERSION *ptr_struct, u_int8_t *ptr_buff); void image_layout_TRIPPLE_VERSION_unpack(struct image_layout_TRIPPLE_VERSION *ptr_struct, const u_int8_t *ptr_buff); void image_layout_TRIPPLE_VERSION_print(const struct image_layout_TRIPPLE_VERSION *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_TRIPPLE_VERSION_size(void); #define IMAGE_LAYOUT_TRIPPLE_VERSION_SIZE (0x8) void image_layout_TRIPPLE_VERSION_dump(const struct image_layout_TRIPPLE_VERSION *ptr_struct, FILE *fd); /* file_public_keys */ void image_layout_file_public_keys_pack(const struct image_layout_file_public_keys *ptr_struct, u_int8_t *ptr_buff); void image_layout_file_public_keys_unpack(struct image_layout_file_public_keys *ptr_struct, const u_int8_t *ptr_buff); void image_layout_file_public_keys_print(const struct image_layout_file_public_keys *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_file_public_keys_size(void); #define IMAGE_LAYOUT_FILE_PUBLIC_KEYS_SIZE (0x120) void image_layout_file_public_keys_dump(const struct image_layout_file_public_keys *ptr_struct, FILE *fd); /* file_public_keys_2 */ void image_layout_file_public_keys_2_pack(const struct image_layout_file_public_keys_2 *ptr_struct, u_int8_t *ptr_buff); void image_layout_file_public_keys_2_unpack(struct image_layout_file_public_keys_2 *ptr_struct, const u_int8_t *ptr_buff); void image_layout_file_public_keys_2_print(const struct image_layout_file_public_keys_2 *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_file_public_keys_2_size(void); #define IMAGE_LAYOUT_FILE_PUBLIC_KEYS_2_SIZE (0x220) void image_layout_file_public_keys_2_dump(const struct image_layout_file_public_keys_2 *ptr_struct, FILE *fd); /* file_public_keys_3 */ void image_layout_file_public_keys_3_pack(const struct image_layout_file_public_keys_3 *ptr_struct, u_int8_t *ptr_buff); void image_layout_file_public_keys_3_unpack(struct image_layout_file_public_keys_3 *ptr_struct, const u_int8_t *ptr_buff); void image_layout_file_public_keys_3_print(const struct image_layout_file_public_keys_3 *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_file_public_keys_3_size(void); #define IMAGE_LAYOUT_FILE_PUBLIC_KEYS_3_SIZE (0x220) void image_layout_file_public_keys_3_dump(const struct image_layout_file_public_keys_3 *ptr_struct, FILE *fd); /* guids */ void image_layout_guids_pack(const struct image_layout_guids *ptr_struct, u_int8_t *ptr_buff); void image_layout_guids_unpack(struct image_layout_guids *ptr_struct, const u_int8_t *ptr_buff); void image_layout_guids_print(const struct image_layout_guids *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_guids_size(void); #define IMAGE_LAYOUT_GUIDS_SIZE (0x40) void image_layout_guids_dump(const struct image_layout_guids *ptr_struct, FILE *fd); /* hashes_table_header */ void image_layout_hashes_table_header_pack(const struct image_layout_hashes_table_header *ptr_struct, u_int8_t *ptr_buff); void image_layout_hashes_table_header_unpack(struct image_layout_hashes_table_header *ptr_struct, const u_int8_t *ptr_buff); void image_layout_hashes_table_header_print(const struct image_layout_hashes_table_header *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_hashes_table_header_size(void); #define IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE (0xc) void image_layout_hashes_table_header_dump(const struct image_layout_hashes_table_header *ptr_struct, FILE *fd); /* htoc */ void image_layout_htoc_pack(const struct image_layout_htoc *ptr_struct, u_int8_t *ptr_buff); void image_layout_htoc_unpack(struct image_layout_htoc *ptr_struct, const u_int8_t *ptr_buff); void image_layout_htoc_print(const struct image_layout_htoc *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_htoc_size(void); #define IMAGE_LAYOUT_HTOC_SIZE (0xf0) void image_layout_htoc_dump(const struct image_layout_htoc *ptr_struct, FILE *fd); /* htoc_hash */ void image_layout_htoc_hash_pack(const struct image_layout_htoc_hash *ptr_struct, u_int8_t *ptr_buff); void image_layout_htoc_hash_unpack(struct image_layout_htoc_hash *ptr_struct, const u_int8_t *ptr_buff); void image_layout_htoc_hash_print(const struct image_layout_htoc_hash *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_htoc_hash_size(void); #define IMAGE_LAYOUT_HTOC_HASH_SIZE (0x40) void image_layout_htoc_hash_dump(const struct image_layout_htoc_hash *ptr_struct, FILE *fd); /* hw_pointer_entry */ void image_layout_hw_pointer_entry_pack(const struct image_layout_hw_pointer_entry *ptr_struct, u_int8_t *ptr_buff); void image_layout_hw_pointer_entry_unpack(struct image_layout_hw_pointer_entry *ptr_struct, const u_int8_t *ptr_buff); void image_layout_hw_pointer_entry_print(const struct image_layout_hw_pointer_entry *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_hw_pointer_entry_size(void); #define IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE (0x8) void image_layout_hw_pointer_entry_dump(const struct image_layout_hw_pointer_entry *ptr_struct, FILE *fd); /* image_size */ void image_layout_image_size_pack(const struct image_layout_image_size *ptr_struct, u_int8_t *ptr_buff); void image_layout_image_size_unpack(struct image_layout_image_size *ptr_struct, const u_int8_t *ptr_buff); void image_layout_image_size_print(const struct image_layout_image_size *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_image_size_size(void); #define IMAGE_LAYOUT_IMAGE_SIZE_SIZE (0x8) void image_layout_image_size_dump(const struct image_layout_image_size *ptr_struct, FILE *fd); /* module_versions */ void image_layout_module_versions_pack(const struct image_layout_module_versions *ptr_struct, u_int8_t *ptr_buff); void image_layout_module_versions_unpack(struct image_layout_module_versions *ptr_struct, const u_int8_t *ptr_buff); void image_layout_module_versions_print(const struct image_layout_module_versions *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_module_versions_size(void); #define IMAGE_LAYOUT_MODULE_VERSIONS_SIZE (0x40) void image_layout_module_versions_dump(const struct image_layout_module_versions *ptr_struct, FILE *fd); /* operation_key */ void image_layout_operation_key_pack(const struct image_layout_operation_key *ptr_struct, u_int8_t *ptr_buff); void image_layout_operation_key_unpack(struct image_layout_operation_key *ptr_struct, const u_int8_t *ptr_buff); void image_layout_operation_key_print(const struct image_layout_operation_key *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_operation_key_size(void); #define IMAGE_LAYOUT_OPERATION_KEY_SIZE (0x10) void image_layout_operation_key_dump(const struct image_layout_operation_key *ptr_struct, FILE *fd); /* version_vector */ void image_layout_version_vector_pack(const struct image_layout_version_vector *ptr_struct, u_int8_t *ptr_buff); void image_layout_version_vector_unpack(struct image_layout_version_vector *ptr_struct, const u_int8_t *ptr_buff); void image_layout_version_vector_print(const struct image_layout_version_vector *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_version_vector_size(void); #define IMAGE_LAYOUT_VERSION_VECTOR_SIZE (0x30) void image_layout_version_vector_dump(const struct image_layout_version_vector *ptr_struct, FILE *fd); /* boot_version */ void image_layout_boot_version_pack(const struct image_layout_boot_version *ptr_struct, u_int8_t *ptr_buff); void image_layout_boot_version_unpack(struct image_layout_boot_version *ptr_struct, const u_int8_t *ptr_buff); void image_layout_boot_version_print(const struct image_layout_boot_version *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_boot_version_size(void); #define IMAGE_LAYOUT_BOOT_VERSION_SIZE (0x4) void image_layout_boot_version_dump(const struct image_layout_boot_version *ptr_struct, FILE *fd); /* device_info */ void image_layout_device_info_pack(const struct image_layout_device_info *ptr_struct, u_int8_t *ptr_buff); void image_layout_device_info_unpack(struct image_layout_device_info *ptr_struct, const u_int8_t *ptr_buff); void image_layout_device_info_print(const struct image_layout_device_info *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_device_info_size(void); #define IMAGE_LAYOUT_DEVICE_INFO_SIZE (0x200) void image_layout_device_info_dump(const struct image_layout_device_info *ptr_struct, FILE *fd); /* hashes_table */ void image_layout_hashes_table_pack(const struct image_layout_hashes_table *ptr_struct, u_int8_t *ptr_buff); void image_layout_hashes_table_unpack(struct image_layout_hashes_table *ptr_struct, const u_int8_t *ptr_buff); void image_layout_hashes_table_print(const struct image_layout_hashes_table *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_hashes_table_size(void); #define IMAGE_LAYOUT_HASHES_TABLE_SIZE (0x804) void image_layout_hashes_table_dump(const struct image_layout_hashes_table *ptr_struct, FILE *fd); /* hw_pointers_carmel */ void image_layout_hw_pointers_carmel_pack(const struct image_layout_hw_pointers_carmel *ptr_struct, u_int8_t *ptr_buff); void image_layout_hw_pointers_carmel_unpack(struct image_layout_hw_pointers_carmel *ptr_struct, const u_int8_t *ptr_buff); void image_layout_hw_pointers_carmel_print(const struct image_layout_hw_pointers_carmel *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_hw_pointers_carmel_size(void); #define IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE (0x80) void image_layout_hw_pointers_carmel_dump(const struct image_layout_hw_pointers_carmel *ptr_struct, FILE *fd); /* image_info */ void image_layout_image_info_pack(const struct image_layout_image_info *ptr_struct, u_int8_t *ptr_buff); void image_layout_image_info_unpack(struct image_layout_image_info *ptr_struct, const u_int8_t *ptr_buff); void image_layout_image_info_print(const struct image_layout_image_info *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_image_info_size(void); #define IMAGE_LAYOUT_IMAGE_INFO_SIZE (0x400) void image_layout_image_info_dump(const struct image_layout_image_info *ptr_struct, FILE *fd); /* image_signature */ void image_layout_image_signature_pack(const struct image_layout_image_signature *ptr_struct, u_int8_t *ptr_buff); void image_layout_image_signature_unpack(struct image_layout_image_signature *ptr_struct, const u_int8_t *ptr_buff); void image_layout_image_signature_print(const struct image_layout_image_signature *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_image_signature_size(void); #define IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE (0x140) void image_layout_image_signature_dump(const struct image_layout_image_signature *ptr_struct, FILE *fd); /* image_signature_2 */ void image_layout_image_signature_2_pack(const struct image_layout_image_signature_2 *ptr_struct, u_int8_t *ptr_buff); void image_layout_image_signature_2_unpack(struct image_layout_image_signature_2 *ptr_struct, const u_int8_t *ptr_buff); void image_layout_image_signature_2_print(const struct image_layout_image_signature_2 *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_image_signature_2_size(void); #define IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE (0x240) void image_layout_image_signature_2_dump(const struct image_layout_image_signature_2 *ptr_struct, FILE *fd); /* itoc_entry */ void image_layout_itoc_entry_pack(const struct image_layout_itoc_entry *ptr_struct, u_int8_t *ptr_buff); void image_layout_itoc_entry_unpack(struct image_layout_itoc_entry *ptr_struct, const u_int8_t *ptr_buff); void image_layout_itoc_entry_print(const struct image_layout_itoc_entry *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_itoc_entry_size(void); #define IMAGE_LAYOUT_ITOC_ENTRY_SIZE (0x20) void image_layout_itoc_entry_dump(const struct image_layout_itoc_entry *ptr_struct, FILE *fd); /* itoc_header */ void image_layout_itoc_header_pack(const struct image_layout_itoc_header *ptr_struct, u_int8_t *ptr_buff); void image_layout_itoc_header_unpack(struct image_layout_itoc_header *ptr_struct, const u_int8_t *ptr_buff); void image_layout_itoc_header_print(const struct image_layout_itoc_header *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_itoc_header_size(void); #define IMAGE_LAYOUT_ITOC_HEADER_SIZE (0x20) void image_layout_itoc_header_dump(const struct image_layout_itoc_header *ptr_struct, FILE *fd); /* public_keys */ void image_layout_public_keys_pack(const struct image_layout_public_keys *ptr_struct, u_int8_t *ptr_buff); void image_layout_public_keys_unpack(struct image_layout_public_keys *ptr_struct, const u_int8_t *ptr_buff); void image_layout_public_keys_print(const struct image_layout_public_keys *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_public_keys_size(void); #define IMAGE_LAYOUT_PUBLIC_KEYS_SIZE (0x900) void image_layout_public_keys_dump(const struct image_layout_public_keys *ptr_struct, FILE *fd); /* mfg_info */ void image_layout_mfg_info_pack(const struct image_layout_mfg_info *ptr_struct, u_int8_t *ptr_buff); void image_layout_mfg_info_unpack(struct image_layout_mfg_info *ptr_struct, const u_int8_t *ptr_buff); void image_layout_mfg_info_print(const struct image_layout_mfg_info *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_mfg_info_size(void); #define IMAGE_LAYOUT_MFG_INFO_SIZE (0x140) void image_layout_mfg_info_dump(const struct image_layout_mfg_info *ptr_struct, FILE *fd); /* public_keys_2 */ void image_layout_public_keys_2_pack(const struct image_layout_public_keys_2 *ptr_struct, u_int8_t *ptr_buff); void image_layout_public_keys_2_unpack(struct image_layout_public_keys_2 *ptr_struct, const u_int8_t *ptr_buff); void image_layout_public_keys_2_print(const struct image_layout_public_keys_2 *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_public_keys_2_size(void); #define IMAGE_LAYOUT_PUBLIC_KEYS_2_SIZE (0x1100) void image_layout_public_keys_2_dump(const struct image_layout_public_keys_2 *ptr_struct, FILE *fd); /* public_keys_3 */ void image_layout_public_keys_3_pack(const struct image_layout_public_keys_3 *ptr_struct, u_int8_t *ptr_buff); void image_layout_public_keys_3_unpack(struct image_layout_public_keys_3 *ptr_struct, const u_int8_t *ptr_buff); void image_layout_public_keys_3_print(const struct image_layout_public_keys_3 *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_public_keys_3_size(void); #define IMAGE_LAYOUT_PUBLIC_KEYS_3_SIZE (0x1100) void image_layout_public_keys_3_dump(const struct image_layout_public_keys_3 *ptr_struct, FILE *fd); /* secure_boot_signatures */ void image_layout_secure_boot_signatures_pack(const struct image_layout_secure_boot_signatures *ptr_struct, u_int8_t *ptr_buff); void image_layout_secure_boot_signatures_unpack(struct image_layout_secure_boot_signatures *ptr_struct, const u_int8_t *ptr_buff); void image_layout_secure_boot_signatures_print(const struct image_layout_secure_boot_signatures *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_secure_boot_signatures_size(void); #define IMAGE_LAYOUT_SECURE_BOOT_SIGNATURES_SIZE (0x600) void image_layout_secure_boot_signatures_dump(const struct image_layout_secure_boot_signatures *ptr_struct, FILE *fd); /* tools_area */ void image_layout_tools_area_pack(const struct image_layout_tools_area *ptr_struct, u_int8_t *ptr_buff); void image_layout_tools_area_unpack(struct image_layout_tools_area *ptr_struct, const u_int8_t *ptr_buff); void image_layout_tools_area_print(const struct image_layout_tools_area *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_tools_area_size(void); #define IMAGE_LAYOUT_TOOLS_AREA_SIZE (0x40) void image_layout_tools_area_dump(const struct image_layout_tools_area *ptr_struct, FILE *fd); /* image_layout_Nodes */ void image_layout_image_layout_Nodes_pack(const union image_layout_image_layout_Nodes *ptr_struct, u_int8_t *ptr_buff); void image_layout_image_layout_Nodes_unpack(union image_layout_image_layout_Nodes *ptr_struct, const u_int8_t *ptr_buff); void image_layout_image_layout_Nodes_print(const union image_layout_image_layout_Nodes *ptr_struct, FILE *fd, int indent_level); unsigned int image_layout_image_layout_Nodes_size(void); #define IMAGE_LAYOUT_IMAGE_LAYOUT_NODES_SIZE (0x1100) void image_layout_image_layout_Nodes_dump(const union image_layout_image_layout_Nodes *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // IMAGE_LAYOUT_LAYOUTS_H mstflint-4.26.0/tools_layouts/prm_adb_db.cpp0000644000175000017500000001166714522641732021413 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * prm_adb_db.cpp * * Created on: Feb 27, 2019 * Author: diaedinrim */ #include #include #include "prm_adb_db.h" #include "compatibility.h" using namespace std; string PrmAdbDB::prm_adb_db_ltrim(const string& s) { const char* cs = s.c_str(); while (isspace(*cs)) { cs++; } return string(cs); } string PrmAdbDB::prm_adb_db_rtrim(const string& s) { // todo rewrite it unsigned int i = s.size(); if (i == 0) { return s; } while (--i > 0 && isspace(s[i])) { ; } if (i == 0 && isspace(s[i])) { return ""; } return s.substr(0, i + 1); } string PrmAdbDB::prm_adb_db_trim(const string& s) { return prm_adb_db_rtrim(prm_adb_db_ltrim(s)); } string PrmAdbDB::getDefaultDBName(bool isSwitch) { const string dbDirName = "prm_dbs"; const string dbFileName = "register_access_table.adb"; const string hcaOrSwitch = isSwitch ? "switch" : "hca"; string dbPathName = ""; #ifdef __WIN__ char execFilePathCStr[1024] = {0x0}; GetModuleFileName(GetModuleHandle("libmtcr-1.dll"), execFilePathCStr, 1024); dbPathName = execFilePathCStr; dbPathName = dbPathName.substr(0, dbPathName.rfind("\\") + 1); dbPathName += dbDirName + "\\" + hcaOrSwitch + "\\ext\\" + dbFileName; #elif defined MST_UL dbPathName = DATA_PATH "/" + dbDirName + "/" + hcaOrSwitch + "/ext/" + dbFileName; #else char line[1024] = {0}; string confFile = string(ROOT_PATH) + string("etc/mft/mft.conf"); FILE* fd = fopen(confFile.c_str(), "r"); if (!fd) { throw PrmDBException("Failed to open conf file : %s\n", confFile.c_str()); } string prefix = "", dataPath = ""; while ((fgets(line, 1024, fd))) { string l = line; if (l.find(dbDirName) != string::npos) { size_t eqPos = l.find("="); if (eqPos != string::npos) { dataPath = l.substr(eqPos + 1); dataPath = prm_adb_db_trim(dataPath); } } else if (l.find("mft_prefix_location") != string::npos) { size_t eqPos = l.find("="); if (eqPos != string::npos) { prefix = l.substr(eqPos + 1); prefix = prm_adb_db_trim(prefix); } } } if (!prefix.empty() && !dataPath.empty()) { dbPathName = prefix + dataPath + "/" + hcaOrSwitch + "/ext/" + dbFileName; } fclose(fd); #endif return dbPathName; } /*************************** PrmDBException Implementation ***************************/ PrmDBException::PrmDBException() {} /** * Function: PrmDBException::PrmDBException **/ PrmDBException::PrmDBException(const char* fmt, ...) { char tmp[1024]; va_list args; va_start(args, fmt); vsprintf(tmp, fmt, args); va_end(args); _msg = tmp; } /** * Function: PrmDBException::PrmDBException **/ PrmDBException::PrmDBException(string msg) : _msg(msg) {} /** * Function: PrmDBException::~PrmDBException **/ PrmDBException::~PrmDBException() throw() {} /** * Function: PrmDBException::what **/ const char* PrmDBException::what() const throw() { return _msg.c_str(); } /** * Function: PrmDBException::what_s **/ string PrmDBException::what_s() const { return _msg; } mstflint-4.26.0/tools_layouts/fs5_image_layout_layouts.c0000644000175000017500000005470114522641732024012 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-06-01 20:24:55" *** by: *** > [REDACTED]/adb2pack.py --input adb/fs5_image_layout/fs5_image_layout.adb --file-prefix fs5_image_layout --prefix fs5_image_layout_ --no-adb-utils ***/ #include "fs5_image_layout_layouts.h" void fs5_image_layout_bch_boot_component_flags_pack(const struct fs5_image_layout_bch_boot_component_flags *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 31, (u_int32_t)ptr_struct->res); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->is_encrypted); } void fs5_image_layout_bch_boot_component_flags_unpack(struct fs5_image_layout_bch_boot_component_flags *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 1; ptr_struct->res = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 31); offset = 0; ptr_struct->is_encrypted = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void fs5_image_layout_bch_boot_component_flags_print(const struct fs5_image_layout_bch_boot_component_flags *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_bch_boot_component_flags ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "res : " UH_FMT "\n", ptr_struct->res); adb2c_add_indentation(fd, indent_level); fprintf(fd, "is_encrypted : " UH_FMT "\n", ptr_struct->is_encrypted); } unsigned int fs5_image_layout_bch_boot_component_flags_size(void) { return FS5_IMAGE_LAYOUT_BCH_BOOT_COMPONENT_FLAGS_SIZE; } void fs5_image_layout_bch_boot_component_flags_dump(const struct fs5_image_layout_bch_boot_component_flags *ptr_struct, FILE *fd) { fs5_image_layout_bch_boot_component_flags_print(ptr_struct, fd, 0); } void fs5_image_layout_hw_pointer_entry_pack(const struct fs5_image_layout_hw_pointer_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ptr); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void fs5_image_layout_hw_pointer_entry_unpack(struct fs5_image_layout_hw_pointer_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->ptr = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void fs5_image_layout_hw_pointer_entry_print(const struct fs5_image_layout_hw_pointer_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_hw_pointer_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ptr : " U32H_FMT "\n", ptr_struct->ptr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int fs5_image_layout_hw_pointer_entry_size(void) { return FS5_IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE; } void fs5_image_layout_hw_pointer_entry_dump(const struct fs5_image_layout_hw_pointer_entry *ptr_struct, FILE *fd) { fs5_image_layout_hw_pointer_entry_print(ptr_struct, fd, 0); } void fs5_image_layout_u8_digest_pack(const struct fs5_image_layout_u8_digest *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 512, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->digest[i]); } } void fs5_image_layout_u8_digest_unpack(struct fs5_image_layout_u8_digest *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 512, 1); ptr_struct->digest[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void fs5_image_layout_u8_digest_print(const struct fs5_image_layout_u8_digest *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_u8_digest ========\n"); for (i = 0; i < 16; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "digest_%03d : " U32H_FMT "\n", i, ptr_struct->digest[i]); } } unsigned int fs5_image_layout_u8_digest_size(void) { return FS5_IMAGE_LAYOUT_U8_DIGEST_SIZE; } void fs5_image_layout_u8_digest_dump(const struct fs5_image_layout_u8_digest *ptr_struct, FILE *fd) { fs5_image_layout_u8_digest_print(ptr_struct, fd, 0); } void fs5_image_layout_u8_stage1_component_pack(const struct fs5_image_layout_u8_stage1_component *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 1152, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->u8_binary_magic[i]); } offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->u32_binary_len); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->u32_load_dest); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->u32_entry_point); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->boot_component_ver); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(216, 8, i, 1152, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->u8_res[i]); } offset = 256; fs5_image_layout_bch_boot_component_flags_pack(&(ptr_struct->flags), ptr_buff + offset / 8); } void fs5_image_layout_u8_stage1_component_unpack(struct fs5_image_layout_u8_stage1_component *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 1152, 1); ptr_struct->u8_binary_magic[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } offset = 32; ptr_struct->u32_binary_len = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->u32_load_dest = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->u32_entry_point = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 160; ptr_struct->boot_component_ver = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(216, 8, i, 1152, 1); ptr_struct->u8_res[i] = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } offset = 256; fs5_image_layout_bch_boot_component_flags_unpack(&(ptr_struct->flags), ptr_buff + offset / 8); } void fs5_image_layout_u8_stage1_component_print(const struct fs5_image_layout_u8_stage1_component *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_u8_stage1_component ========\n"); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "u8_binary_magic_%03d : " UH_FMT "\n", i, ptr_struct->u8_binary_magic[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "u32_binary_len : " U32H_FMT "\n", ptr_struct->u32_binary_len); adb2c_add_indentation(fd, indent_level); fprintf(fd, "u32_load_dest : " U32H_FMT "\n", ptr_struct->u32_load_dest); adb2c_add_indentation(fd, indent_level); fprintf(fd, "u32_entry_point : " U32H_FMT "\n", ptr_struct->u32_entry_point); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_component_ver : " U32H_FMT "\n", ptr_struct->boot_component_ver); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "u8_res_%03d : " UH_FMT "\n", i, ptr_struct->u8_res[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "flags:\n"); fs5_image_layout_bch_boot_component_flags_print(&(ptr_struct->flags), fd, indent_level + 1); } unsigned int fs5_image_layout_u8_stage1_component_size(void) { return FS5_IMAGE_LAYOUT_U8_STAGE1_COMPONENT_SIZE; } void fs5_image_layout_u8_stage1_component_dump(const struct fs5_image_layout_u8_stage1_component *ptr_struct, FILE *fd) { fs5_image_layout_u8_stage1_component_print(ptr_struct, fd, 0); } void fs5_image_layout_u8_stage1_res_pack(const struct fs5_image_layout_u8_stage1_res *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->reserved); offset = 128; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->hash_offset); offset = 160; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->BL1_bind_version); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->FW_bind_version); } void fs5_image_layout_u8_stage1_res_unpack(struct fs5_image_layout_u8_stage1_res *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->reserved = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 128; ptr_struct->hash_offset = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 160; ptr_struct->BL1_bind_version = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 192; ptr_struct->FW_bind_version = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void fs5_image_layout_u8_stage1_res_print(const struct fs5_image_layout_u8_stage1_res *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_u8_stage1_res ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved : " U32H_FMT "\n", ptr_struct->reserved); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hash_offset : " U32H_FMT "\n", ptr_struct->hash_offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "BL1_bind_version : " U32H_FMT "\n", ptr_struct->BL1_bind_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FW_bind_version : " U32H_FMT "\n", ptr_struct->FW_bind_version); } unsigned int fs5_image_layout_u8_stage1_res_size(void) { return FS5_IMAGE_LAYOUT_U8_STAGE1_RES_SIZE; } void fs5_image_layout_u8_stage1_res_dump(const struct fs5_image_layout_u8_stage1_res *ptr_struct, FILE *fd) { fs5_image_layout_u8_stage1_res_print(ptr_struct, fd, 0); } void fs5_image_layout_boot_component_header_pack(const struct fs5_image_layout_boot_component_header *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->u8_header_magic); offset = 32; fs5_image_layout_u8_digest_pack(&(ptr_struct->u8_digest), ptr_buff + offset / 8); offset = 54560; fs5_image_layout_u8_stage1_res_pack(&(ptr_struct->u8_stage1_res), ptr_buff + offset / 8); offset = 63232; fs5_image_layout_u8_stage1_component_pack(&(ptr_struct->u8_stage1_component), ptr_buff + offset / 8); } void fs5_image_layout_boot_component_header_unpack(struct fs5_image_layout_boot_component_header *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->u8_header_magic = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; fs5_image_layout_u8_digest_unpack(&(ptr_struct->u8_digest), ptr_buff + offset / 8); offset = 54560; fs5_image_layout_u8_stage1_res_unpack(&(ptr_struct->u8_stage1_res), ptr_buff + offset / 8); offset = 63232; fs5_image_layout_u8_stage1_component_unpack(&(ptr_struct->u8_stage1_component), ptr_buff + offset / 8); } void fs5_image_layout_boot_component_header_print(const struct fs5_image_layout_boot_component_header *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_boot_component_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "u8_header_magic : " U32H_FMT "\n", ptr_struct->u8_header_magic); adb2c_add_indentation(fd, indent_level); fprintf(fd, "u8_digest:\n"); fs5_image_layout_u8_digest_print(&(ptr_struct->u8_digest), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "u8_stage1_res:\n"); fs5_image_layout_u8_stage1_res_print(&(ptr_struct->u8_stage1_res), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "u8_stage1_component:\n"); fs5_image_layout_u8_stage1_component_print(&(ptr_struct->u8_stage1_component), fd, indent_level + 1); } unsigned int fs5_image_layout_boot_component_header_size(void) { return FS5_IMAGE_LAYOUT_BOOT_COMPONENT_HEADER_SIZE; } void fs5_image_layout_boot_component_header_dump(const struct fs5_image_layout_boot_component_header *ptr_struct, FILE *fd) { fs5_image_layout_boot_component_header_print(ptr_struct, fd, 0); } void fs5_image_layout_hw_pointers_gilboa_pack(const struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->psc_bct_pointer), ptr_buff + offset / 8); offset = 64; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->psc_bl1_bch_pointer), ptr_buff + offset / 8); offset = 320; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->psc_bl1_pointer), ptr_buff + offset / 8); offset = 384; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->ncore_bch_pointer), ptr_buff + offset / 8); offset = 448; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->reserved), ptr_buff + offset / 8); offset = 512; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->psc_fw_bch_pointer), ptr_buff + offset / 8); offset = 576; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->psc_fw_pointer), ptr_buff + offset / 8); offset = 640; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->image_info_section_pointer), ptr_buff + offset / 8); offset = 704; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->image_signature_pointer), ptr_buff + offset / 8); offset = 768; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->public_key_pointer), ptr_buff + offset / 8); offset = 832; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->fw_security_version_pointer), ptr_buff + offset / 8); offset = 896; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->gcm_iv_delta_pointer), ptr_buff + offset / 8); offset = 960; fs5_image_layout_hw_pointer_entry_pack(&(ptr_struct->ncore_hashes_pointer), ptr_buff + offset / 8); } void fs5_image_layout_hw_pointers_gilboa_unpack(struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->psc_bct_pointer), ptr_buff + offset / 8); offset = 64; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->psc_bl1_bch_pointer), ptr_buff + offset / 8); offset = 320; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->psc_bl1_pointer), ptr_buff + offset / 8); offset = 384; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->ncore_bch_pointer), ptr_buff + offset / 8); offset = 448; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->reserved), ptr_buff + offset / 8); offset = 512; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->psc_fw_bch_pointer), ptr_buff + offset / 8); offset = 576; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->psc_fw_pointer), ptr_buff + offset / 8); offset = 640; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->image_info_section_pointer), ptr_buff + offset / 8); offset = 704; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->image_signature_pointer), ptr_buff + offset / 8); offset = 768; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->public_key_pointer), ptr_buff + offset / 8); offset = 832; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->fw_security_version_pointer), ptr_buff + offset / 8); offset = 896; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->gcm_iv_delta_pointer), ptr_buff + offset / 8); offset = 960; fs5_image_layout_hw_pointer_entry_unpack(&(ptr_struct->ncore_hashes_pointer), ptr_buff + offset / 8); } void fs5_image_layout_hw_pointers_gilboa_print(const struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_hw_pointers_gilboa ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "psc_bct_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->psc_bct_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot2_ptr:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->boot2_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "toc_ptr:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->toc_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tools_ptr:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->tools_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "psc_bl1_bch_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->psc_bl1_bch_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "psc_bl1_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->psc_bl1_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ncore_bch_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->ncore_bch_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->reserved), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "psc_fw_bch_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->psc_fw_bch_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "psc_fw_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->psc_fw_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_info_section_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->image_info_section_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_signature_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->image_signature_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "public_key_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->public_key_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_security_version_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->fw_security_version_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "gcm_iv_delta_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->gcm_iv_delta_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ncore_hashes_pointer:\n"); fs5_image_layout_hw_pointer_entry_print(&(ptr_struct->ncore_hashes_pointer), fd, indent_level + 1); } unsigned int fs5_image_layout_hw_pointers_gilboa_size(void) { return FS5_IMAGE_LAYOUT_HW_POINTERS_GILBOA_SIZE; } void fs5_image_layout_hw_pointers_gilboa_dump(const struct fs5_image_layout_hw_pointers_gilboa *ptr_struct, FILE *fd) { fs5_image_layout_hw_pointers_gilboa_print(ptr_struct, fd, 0); } void fs5_image_layout_fs5_image_layout_Nodes_pack(const union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, u_int8_t *ptr_buff) { fs5_image_layout_boot_component_header_pack(&(ptr_struct->boot_component_header), ptr_buff); } void fs5_image_layout_fs5_image_layout_Nodes_unpack(union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, const u_int8_t *ptr_buff) { fs5_image_layout_boot_component_header_unpack(&(ptr_struct->boot_component_header), ptr_buff); } void fs5_image_layout_fs5_image_layout_Nodes_print(const union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== fs5_image_layout_fs5_image_layout_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_component_header:\n"); fs5_image_layout_boot_component_header_print(&(ptr_struct->boot_component_header), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_pointers_gilboa:\n"); fs5_image_layout_hw_pointers_gilboa_print(&(ptr_struct->hw_pointers_gilboa), fd, indent_level + 1); } unsigned int fs5_image_layout_fs5_image_layout_Nodes_size(void) { return FS5_IMAGE_LAYOUT_FS5_IMAGE_LAYOUT_NODES_SIZE; } void fs5_image_layout_fs5_image_layout_Nodes_dump(const union fs5_image_layout_fs5_image_layout_Nodes *ptr_struct, FILE *fd) { fs5_image_layout_fs5_image_layout_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/adb_to_c_utils.c0000644000175000017500000003164214522641732021747 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2017-03-24 22:07:56" ***/ #include #include "adb_to_c_utils.h" /************************************ * Function: adb2c_calc_array_field_address ************************************/ u_int32_t adb2c_calc_array_field_address(u_int32_t start_bit_offset, u_int32_t arr_elemnt_size, int arr_idx, u_int32_t parent_node_size, int is_big_endian_arr) { u_int32_t offs; if (arr_elemnt_size > 32) { assert(!(arr_elemnt_size % 32)); start_bit_offset += arr_elemnt_size * (u_int32_t)arr_idx; return start_bit_offset; } if (is_big_endian_arr) { u_int32_t dword_delta; offs = start_bit_offset - arr_elemnt_size * (u_int32_t)arr_idx; dword_delta = (((start_bit_offset >> 5) << 2) - ((offs >> 5) << 2)) / 4; if (dword_delta) { offs += 64 * dword_delta; } } else { offs = start_bit_offset + arr_elemnt_size * (u_int32_t)arr_idx; } // printf("==> %d\n", MIN(32, parent_node_size) - (offs%32) - arr_elemnt_size + ((offs>>5)<<5)); return ADB2C_MIN(32, parent_node_size) - (offs % 32) - arr_elemnt_size + ((offs >> 5) << 5); } /************************************ * Function: adb2c_push_integer_to_buff ************************************/ void adb2c_push_integer_to_buff(u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size, u_int64_t field_value) { field_value = ADB2C_CPU_TO_BE64(field_value); memcpy(buff + bit_offset / 8, (u_int8_t*)&field_value + (8 - byte_size), (size_t)byte_size); } /************************************ * Function: adb2c_push_integer_to_buff_le ************************************/ // little endian version of the function void adb2c_push_integer_to_buff_le(u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size, u_int64_t field_value) { field_value = ADB2C_CPU_TO_LE64(field_value); memcpy(buff + bit_offset / 8, (u_int8_t*)&field_value, (size_t)byte_size); } /************************************ * Function: adb2c_push_bits_to_buff ************************************/ // the next function will push the field into the buffer by inserting it's MSB bits first // and therefore by doing it we save the CPU_TO_BE operation void adb2c_push_bits_to_buff(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int32_t field_value) { u_int32_t i = 0; u_int32_t byte_n = bit_offset / 8; u_int32_t byte_n_offset = bit_offset % 8; u_int32_t to_push; // going over all bits in field while (i < field_size) { to_push = ADB2C_MIN(8 - byte_n_offset, field_size - i); i += to_push; ADB2C_INSERTF_8(ADB2C_BYTE_N(buff, byte_n), 8U - to_push - byte_n_offset, field_value, field_size - i, to_push); byte_n_offset = 0; //(byte_n_offset + to_push) % 8U; byte_n++; } } /************************************ * Function: adb2c_push_bits_to_buff_le ************************************/ // the next function will push the field into the buffer by inserting it's LSB bits first // and therefore by doing it we save the CPU_TO_LE operation void adb2c_push_bits_to_buff_le(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int32_t field_value) { u_int32_t i = 0; u_int32_t byte_n = (bit_offset / 8) + (field_size / 8) - 1; u_int32_t byte_n_offset = bit_offset % 8; u_int32_t to_push; byte_n += (field_size % 8) ? 1 : 0; // going over all bits in field while (i < field_size) { to_push = ADB2C_MIN(8 - byte_n_offset, (field_size - i) % 8); if (to_push == 0) to_push += 8; i += to_push; ADB2C_INSERTF_8(ADB2C_BYTE_N(buff, byte_n), 8U - to_push - byte_n_offset, field_value, field_size - i, to_push); byte_n_offset = 0; //(byte_n_offset + to_push) % 8U; byte_n--; } } /************************************ * Function: adb2c_push_to_buf ************************************/ void adb2c_push_to_buf(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int64_t field_value) { bit_offset = adb2c_calc_array_field_address(bit_offset, field_size, 0, field_size + 32, 0); if (field_size <= 32) adb2c_push_bits_to_buff(buff, bit_offset, field_size, (u_int32_t)field_value); else adb2c_push_integer_to_buff(buff, bit_offset, field_size / 8, field_value); } /************************************ * Function: adb2c_push_to_buf_le ************************************/ void adb2c_push_to_buf_le(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int64_t field_value) { bit_offset = adb2c_calc_array_field_address(bit_offset, field_size, 0, field_size + 32, 0); if (field_size <= 32) adb2c_push_bits_to_buff_le(buff, bit_offset, field_size, (u_int32_t)field_value); else adb2c_push_integer_to_buff_le(buff, bit_offset, field_size / 8, field_value); } /************************************ * Function: adb2c_pop_integer_from_buff ************************************/ u_int64_t adb2c_pop_integer_from_buff(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size) { u_int64_t val = 0; memcpy((u_int8_t*)&val + (8 - byte_size), buff + bit_offset / 8, (size_t)byte_size); return ADB2C_BE64_TO_CPU(val); } /************************************ * Function: adb2c_pop_integer_from_buff_le ************************************/ u_int64_t adb2c_pop_integer_from_buff_le(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size) { u_int64_t val = 0; memcpy((u_int8_t*)&val, buff + bit_offset / 8, (size_t)byte_size); return ADB2C_LE64_TO_CPU(val); } /************************************ * Function: adb2c_pop_bits_from_buff ************************************/ // the next function will pop the field into the buffer by removing it's MSB bits first // and therefore by doing it we save the BE_TO_CPU operation u_int32_t adb2c_pop_bits_from_buff(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size) { u_int32_t i = 0; u_int32_t byte_n = bit_offset / 8; u_int32_t byte_n_offset = bit_offset % 8; u_int32_t field_32 = 0; u_int32_t to_pop; // going over all bits in field while (i < field_size) { to_pop = ADB2C_MIN(8 - byte_n_offset, field_size - i); i += to_pop; ADB2C_INSERTF_8(field_32, field_size - i, ADB2C_BYTE_N(buff, byte_n), 8 - to_pop - byte_n_offset, to_pop); byte_n_offset = 0; //(byte_n_offset + to_pop) % 8; byte_n++; } return field_32; } /************************************ * Function: adb2c_pop_bits_from_buff_le ************************************/ // the next function will pop the field into the buffer by removing it's LSB bits first // and therefore by doing it we save the BE_TO_CPU operation u_int32_t adb2c_pop_bits_from_buff_le(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size) { u_int32_t i = 0; u_int32_t byte_n = bit_offset / 8 + (field_size / 8) - 1; u_int32_t byte_n_offset = bit_offset % 8; u_int32_t field_32 = 0; u_int32_t to_pop; byte_n += (field_size % 8) ? 1 : 0; // going over all bits in field while (i < field_size) { to_pop = ADB2C_MIN(8 - byte_n_offset, (field_size - i) % 8); if (to_pop == 0) to_pop += 8; i += to_pop; ADB2C_INSERTF_8(field_32, field_size - i, ADB2C_BYTE_N(buff, byte_n), 8 - to_pop - byte_n_offset, to_pop); byte_n_offset = 0; //(byte_n_offset + to_pop) % 8; byte_n--; } return field_32; } /************************************ * Function: adb2c_pop_from_buf ************************************/ u_int64_t adb2c_pop_from_buf(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size) { bit_offset = adb2c_calc_array_field_address(bit_offset, field_size, 0, field_size + 32, 0); if (field_size <= 32) return adb2c_pop_bits_from_buff(buff, bit_offset, field_size); else return adb2c_pop_integer_from_buff(buff, bit_offset, field_size / 8); } /************************************ * Function: adb2c_pop_from_buf_le ************************************/ u_int64_t adb2c_pop_from_buf_le(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size) { bit_offset = adb2c_calc_array_field_address(bit_offset, field_size, 0, field_size + 32, 0); if (field_size <= 32) return adb2c_pop_bits_from_buff_le(buff, bit_offset, field_size); else return adb2c_pop_integer_from_buff_le(buff, bit_offset, field_size / 8); } /************************************ * Function: adb2c_db_get_field_enum_name ************************************/ const char* adb2c_db_get_field_enum_name(struct adb2c_field_format* field, int val) { int i; for (i = 0; i < field->enums_len; i++) { if (field->enums[i].val == val) return field->enums[i].name; } return "Unknown Enum Value"; } /************************************ * Function: adb2c_db_get_field_enum_val ************************************/ int adb2c_db_get_field_enum_val(struct adb2c_field_format* field, const char* name) { int i; for (i = 0; i < field->enums_len; i++) { if (!strcmp(field->enums[i].name, name)) return field->enums[i].val; } return -1; } /************************************ * Function: adb2c_db_get_field_attr ************************************/ const char* adb2c_db_get_field_attr(struct adb2c_field_format* field, const char* attr_name) { int i; for (i = 0; i < field->attrs_len; i++) { if (!strcmp(attr_name, field->attrs[i].name)) return field->attrs[i].val; } return NULL; } /************************************ * Function: adb2c_db_get_node_attr ************************************/ const char* adb2c_db_get_node_attr(struct adb2c_node_format* node, const char* attr_name) { int i; for (i = 0; i < node->attrs_len; i++) { if (!strcmp(attr_name, node->attrs[i].name)) return node->attrs[i].val; } return NULL; } /************************************ * Function: adb2c_db_find_node ************************************/ struct adb2c_node_format* adb2c_db_find_node(struct adb2c_node_db* db, const char* node_name) { int i; for (i = 0; i < db->nodes_len; i++) { if (!strcmp(node_name, db->nodes[i].name)) return &db->nodes[i]; } return NULL; } /************************************ * Function: adb2c_db_find_field ************************************/ struct adb2c_field_format* adb2c_db_find_field(struct adb2c_node_format* node, const char* field_name) { int i; for (i = 0; i < node->fields_len; i++) { if (!strcmp(field_name, node->fields[i].full_name)) return &node->fields[i]; } return NULL; } /************************************ * Function: adb2c_add_indentation ************************************/ void adb2c_add_indentation(FILE* file, int indent_level) { while (indent_level) { fprintf(file, "\t"); indent_level--; } } /************************************ * Function: adb2c_print_raw ************************************/ void adb2c_print_raw(FILE* file, void* buff, int buff_len) { u_int8_t* data = (u_int8_t*)buff; int i; adb2c_add_indentation(file, 0); for (i = 0; i < buff_len; i++) { if (!(i % 4)) { fprintf(file, "\n0x%08x: ", i); } fprintf(file, " 0x%02x", data[i]); } fprintf(file, "\n"); } mstflint-4.26.0/tools_layouts/cibfw_layouts.h0000644000175000017500000007777114522641732021671 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2019-08-11 16:47:37" *** by: *** > [REDACTED]/adb2pack.py --input adb/cibfw/cibfw.adb --file-prefix *cibfw --prefix cibfw_ ***/ #ifndef CIBFW_LAYOUTS_H #define CIBFW_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 8 */ struct cibfw_uint64 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int64_t uint64; }; /* Description - */ /* Size in bytes - 8 */ struct cibfw_reset_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Match means upgrade supported, mismatch implies reset not supported */ /* 0x0.0 - 0x0.31 */ u_int32_t major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - If Major matches. Match means seamless reset. Greater means reset supported. Less then upgrade * not supported */ /* 0x4.0 - 0x4.7 */ u_int8_t minor; }; /* Description - */ /* Size in bytes - 16 */ struct cibfw_uid_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Number of allocated UIDs in this entry */ /* 0x0.0 - 0x0.7 */ u_int8_t num_allocated; /* Description - Step size by which to derive the UIDs for this entry See struct description */ /* 0x0.8 - 0x0.15 */ u_int8_t step; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - For MACs, the upper 16 bits in the 'hi' dword are reserved */ /* 0x8.0 - 0xc.31 */ u_int64_t uid; }; /* Description - */ /* Size in bytes - 16 */ struct cibfw_FW_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.8 - 0x8.15 */ u_int8_t Hour; /* Description - */ /* 0x8.16 - 0x8.23 */ u_int8_t Minutes; /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t Seconds; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.7 */ u_int8_t Day; /* Description - */ /* 0xc.8 - 0xc.15 */ u_int8_t Month; /* Description - */ /* 0xc.16 - 0xc.31 */ u_int16_t Year; }; /* Description - */ /* Size in bytes - 8 */ struct cibfw_TRIPPLE_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; }; /* Description - */ /* Size in bytes - 64 */ struct cibfw_guids { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - UIDs (MACs and GUIDs) Allocation Entry. guids[0], is used for system GUID, node GUID and port GUID of port 0. guids[1], is used for port GUID of port 1.;/Multiple UIDs can be assigned to a single port, to be used for multiple virtual guests. Allocation Example: For a port GUID, if the UID = 0x2c9030001000 num_allocated = 4, step = 8 Then the GUIDs for this port would be: 0x2c9030001000 0x2c9030001008 0x2c9030001010 0x2c9030001018 */ /* 0x0.0 - 0x1c.31 */ struct cibfw_uid_entry guids[2]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x3c.31 */ struct cibfw_uid_entry macs[2]; }; /* Description - */ /* Size in bytes - 8 */ struct cibfw_image_size { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - log of next address in bytes to search for an image. Address in bytes is 2^log_step */ /* 0x0.0 - 0x0.7 */ u_int8_t log_step; /* Description - this image can run from any partition starting at address 0x0000000, 0x4000000, 0x800000. The * code supports only two partitions. */ /* 0x0.31 - 0x0.31 */ u_int8_t run_from_any; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Max possible size in bytes of image. Image read / write should not occure beyond this address */ /* 0x4.0 - 0x4.31 */ u_int32_t max_size; }; /* Description - */ /* Size in bytes - 64 */ struct cibfw_lfwp_version_vector { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ struct cibfw_reset_version scratchpad; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ struct cibfw_reset_version icm_context; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x14.31 */ struct cibfw_reset_version pci_code; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x1c.31 */ struct cibfw_reset_version phy_code; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x24.31 */ struct cibfw_reset_version ini; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - */ /* 0x28.0 - 0x2c.31 */ struct cibfw_reset_version reserved1; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - */ /* 0x30.0 - 0x34.31 */ struct cibfw_reset_version reserved2; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.0 - 0x3c.31 */ struct cibfw_reset_version reserved3; }; /* Description - */ /* Size in bytes - 4 */ struct cibfw_module_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t branch; /* Description - */ /* 0x0.8 - 0x0.19 */ u_int16_t minor; /* Description - */ /* 0x0.20 - 0x0.31 */ u_int16_t major; }; /* Description - */ /* Size in bytes - 16 */ struct cibfw_operation_key { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t key_modifier; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0xc.31 */ u_int64_t key; }; /* Description - */ /* Size in bytes - 512 */ struct cibfw_device_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ u_int32_t signature0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ u_int32_t signature1; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ u_int32_t signature2; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ u_int32_t signature3; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Format version for this struct */ /* 0x10.0 - 0x10.7 */ u_int8_t minor_version; /* Description - Format version for this struct */ /* 0x10.8 - 0x10.16 */ u_int16_t major_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct cibfw_guids guids; /*---------------- DWORD[27] (Offset 0x6c) ----------------*/ /* Description - */ /* 0x6c.0 - 0x6c.15 */ u_int16_t vsd_vendor_id; /*---------------- DWORD[28] (Offset 0x70) ----------------*/ /* Description - */ /* 0x70.24 - 0x140.23 */ char vsd[209]; /*---------------- DWORD[88] (Offset 0x160) ----------------*/ /* Description - */ /* 0x160.0 - 0x19c.31 */ struct cibfw_operation_key keys[4]; }; /* Description - */ /* Size in bytes - 1024 */ struct cibfw_image_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0x0 - not encrypted; 0x1 - encryption before signature; 0x2 - encryption after signature. */ /* 0x0.3 - 0x0.4 */ u_int8_t encrypted_fw; /* Description - Indicate that this binary support long keys (up to 4096bits) */ /* 0x0.6 - 0x0.6 */ u_int8_t long_keys; /* Description - when set, debug-fw tokens are enabled. */ /* 0x0.7 - 0x0.7 */ u_int8_t debug_fw_tokens_supported; /* Description - The image can be updated using the MCC/MCDA commands */ /* 0x0.8 - 0x0.8 */ u_int8_t mcc_en; /* Description - OEM lifecycle NVCONFIG files are signed */ /* 0x0.9 - 0x0.9 */ u_int8_t signed_vendor_nvconfig_files; /* Description - Mellanox lifecycle NVCONFIG files are signed */ /* 0x0.10 - 0x0.10 */ u_int8_t signed_mlnx_nvconfig_files; /* Description - Factory re-customizationflow is supported */ /* 0x0.11 - 0x0.11 */ u_int8_t frc_supported; /* Description - Customer Support Tokens are supported */ /* 0x0.12 - 0x0.12 */ u_int8_t cs_tokens_supported; /* Description - This is a debug firmware */ /* 0x0.13 - 0x0.13 */ u_int8_t debug_fw; /* Description - [MCC/MCDA flow] if set, the SHA 256 digest is encrypted - enabled by default for secure_fw - * cr-space not closed */ /* 0x0.14 - 0x0.14 */ u_int8_t signed_fw; /* Description - [MCC/MCDA flow] cr-space closed */ /* 0x0.15 - 0x0.15 */ u_int8_t secure_fw; /* Description - IMAGE_INFO section minor version */ /* 0x0.16 - 0x0.23 */ u_int8_t minor_version; /* Description - IMAGE_INFO section major version */ /* 0x0.24 - 0x0.31 */ u_int8_t major_version; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x10.31 */ struct cibfw_FW_VERSION FW_VERSION; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x18.31 */ struct cibfw_TRIPPLE_VERSION mic_version; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t pci_vendor_id; /* Description - */ /* 0x1c.16 - 0x1c.31 */ u_int16_t pci_device_id; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x20.15 */ u_int16_t pci_sub_vendor_id; /* Description - */ /* 0x20.16 - 0x20.31 */ u_int16_t pci_subsystem_id; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - */ /* 0x24.24 - 0x34.23 */ char psid[17]; /*---------------- DWORD[13] (Offset 0x34) ----------------*/ /* Description - */ /* 0x34.0 - 0x34.15 */ u_int16_t vsd_vendor_id; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.24 - 0x108.23 */ char vsd[209]; /*---------------- DWORD[66] (Offset 0x108) ----------------*/ /* Description - image size parameters */ /* 0x108.0 - 0x10c.31 */ struct cibfw_image_size image_size; /*---------------- DWORD[70] (Offset 0x118) ----------------*/ /* Description - HW device(s) supported by this FW image. 0 means invalid entry. For Golan A0, first entry should be 0x1ff */ /* 0x118.0 - 0x124.31 */ u_int32_t supported_hw_id[4]; /*---------------- DWORD[74] (Offset 0x128) ----------------*/ /* Description - */ /* 0x128.0 - 0x128.31 */ u_int32_t ini_file_num; /*---------------- DWORD[76] (Offset 0x130) ----------------*/ /* Description - */ /* 0x130.0 - 0x16c.31 */ struct cibfw_lfwp_version_vector lfwp_version_vector; /*---------------- DWORD[112] (Offset 0x1c0) ----------------*/ /* Description - Product Version is the unified version of the FW and expansion ROM. Format is defined by the packager. When set to a non-empty string the FW update tool burns the image as a monolythic entity and refuses to update rom only or FW only. */ /* 0x1c0.24 - 0x1d0.23 */ char prod_ver[17]; /*---------------- DWORD[116] (Offset 0x1d0) ----------------*/ /* Description - Product description */ /* 0x1d0.24 - 0x2d0.23 */ char description[257]; /*---------------- DWORD[197] (Offset 0x314) ----------------*/ /* Description - */ /* 0x314.0 - 0x314.31 */ struct cibfw_module_version isfu; /*---------------- DWORD[208] (Offset 0x340) ----------------*/ /* Description - Product name */ /* 0x340.24 - 0x380.23 */ char name[65]; /*---------------- DWORD[224] (Offset 0x380) ----------------*/ /* Description - PRS used to generate the FW binary */ /* 0x380.24 - 0x400.23 */ char prs_name[129]; }; /* Description - */ /* Size in bytes - 32 */ struct cibfw_itoc_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.2 - 0x0.23 */ u_int32_t size; /* Description - Section ID Section Type DESCRIPTION 0x1 BOOT_CODE FW loader code 0x2 PCI_CODE Code that is required to raise PCIe link. 0x3 MAIN_CODE All non-PCIe FW code 0x8 HW_BOOT_CFG Initial values for the PCI related registers 0x9 HW_MAIN_CFG Initial values for all other registers 0x10 IMAGE_INFO Management data for the burning tool. See 'Image Info Section' chapter in the Mellanox Flash Programming Application Note 0x11 FW_BOOT_CFG Initial values for user set-able hi level non-hardware related settings, such as number of physical functions (optional) 0x12 FW_MAIN_CFG Initial values for user set-able hi level non-hardware related settings. (optional) 0x18 ROM_CODE PXE/Boot over IB code. 0x30 DBG_LOG_MAP FW logger 'index to string' map. The map is in ASCI text. Format is TBD. PARAM0 in the iTOC specifies the compression method of this sector: 0. Uncompressed 1. Zlib compress2() 2. LZMA Others - Reserved 0x31 DBG_FW_INI The Ini file used in the image generation. The PARAM0 applies the same as in DBG_LOG_MAP section type. 0x32 DBG_FW_PARAMS FW settable parameters. ASCII text. Format is TBD. The PARAM0 applies the same as in DBG_LOG_MAP section type. 0xff END_MARKER A type of 0xff marks the end of the iTOC entries array. It is recommended to leave the unused part of the iTOC section blank (that is, 0xff in all unused bytes) All other values Reserved */ /* 0x0.24 - 0x0.31 */ u_int8_t type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - if partition type is code or ini then the load address is in here */ /* 0x4.0 - 0x4.29 */ u_int32_t param0; /* Description - When this bit is set, Data within the section is protected by per-line crc. See * yu.flash.replacement.crc_en */ /* 0x4.30 - 0x4.30 */ u_int8_t cache_line_crc; /* Description - When this bit is set, image is zipped */ /* 0x4.31 - 0x4.31 */ u_int8_t zipped_image; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - if partition type is code then the jump address is in here */ /* 0x8.0 - 0x8.31 */ u_int32_t param1; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.2 - 0x14.30 */ u_int32_t flash_addr; /* Description - */ /* 0x14.31 - 0x14.31 */ u_int8_t relative_addr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x18.15 */ u_int16_t section_crc; /* Description - */ /* 0x18.16 - 0x18.16 */ u_int8_t no_crc; /* Description - When this bit is set, the section pointed by this entry in belongs to teh device tather than to teh FW image. A device_data section should not be updated in a regular FW update. Example for device_data section: VPD_R, GUIDs. */ /* 0x18.17 - 0x18.17 */ u_int8_t device_data; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t itoc_entry_crc; }; /* Description - */ /* Size in bytes - 32 */ struct cibfw_itoc_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 49 54 4f 43 */ /* 0x0.0 - 0x0.31 */ u_int32_t signature0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - 04 08 15 16 */ /* 0x4.0 - 0x4.31 */ u_int32_t signature1; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - 23 42 ca fa */ /* 0x8.0 - 0x8.31 */ u_int32_t signature2; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - ba ca fe 00 */ /* 0xc.0 - 0xc.31 */ u_int32_t signature3; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Current version: 1 */ /* 0x10.0 - 0x10.7 */ u_int8_t version; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t itoc_entry_crc; }; /* Description - */ /* Size in bytes - 320 */ struct cibfw_mfg_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.24 - 0x10.23 */ char psid[17]; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - When this bit is set, the GUIDs should be taken from the device_info node. When this bit is cleared, the GUIDs should be taken from the mfg_info node. */ /* 0x1c.0 - 0x1c.0 */ u_int8_t guids_override_en; /* Description - MFG_INFO section minor version */ /* 0x1c.16 - 0x1c.23 */ u_int8_t minor_version; /* Description - MFG_INFO section major version */ /* 0x1c.24 - 0x1c.31 */ u_int8_t major_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x5c.31 */ struct cibfw_guids guids; }; /* Description - */ /* Size in bytes - 16 */ struct cibfw_register_mfai { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.23 */ u_int32_t address; /* Description - if set make image permamnent */ /* 0x0.29 - 0x0.29 */ u_int8_t permanent; /* Description - if set use address */ /* 0x0.30 - 0x0.30 */ u_int8_t use_address; /* Description - if set use image id and not address */ /* 0x0.31 - 0x0.31 */ u_int8_t use_image_id; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.7 */ u_int8_t image_id; }; /* Description - */ /* Size in bytes - 16 */ struct cibfw_register_mfrl { /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - on Read, required reset level. On write, minimum requested reset level 0-Full ISFU 1-Driver down but link is up 2-driver and link down 3-driver down, link down pci disable/enable 7-server warm reboot 8-server cold reboot */ /* 0x4.0 - 0x4.7 */ u_int8_t reset_level; }; /* Description - */ /* Size in bytes - 1024 */ union cibfw_cibfw_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0xc.31 */ struct cibfw_register_mfai register_mfai; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct cibfw_itoc_entry itoc_entry; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct cibfw_guids guids; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct cibfw_itoc_header itoc_header; /* Description - */ /* 0x0.0 - 0xc.31 */ struct cibfw_register_mfrl register_mfrl; /* Description - */ /* 0x0.0 - 0x1fc.31 */ struct cibfw_device_info device_info; /* Description - */ /* 0x0.0 - 0x13c.31 */ struct cibfw_mfg_info mfg_info; /* Description - */ /* 0x0.0 - 0x3fc.31 */ struct cibfw_image_info image_info; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* uint64 */ void cibfw_uint64_pack(const u_int64_t* ptr_struct, u_int8_t* ptr_buff); void cibfw_uint64_unpack(u_int64_t* ptr_struct, const u_int8_t* ptr_buff); void cibfw_uint64_print(const u_int64_t* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_uint64_size(void); #define CIBFW_UINT64_SIZE (0x8) void cibfw_uint64_dump(const u_int64_t* ptr_struct, FILE* fd); /* reset_version */ void cibfw_reset_version_pack(const struct cibfw_reset_version* ptr_struct, u_int8_t* ptr_buff); void cibfw_reset_version_unpack(struct cibfw_reset_version* ptr_struct, const u_int8_t* ptr_buff); void cibfw_reset_version_print(const struct cibfw_reset_version* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_reset_version_size(void); #define CIBFW_RESET_VERSION_SIZE (0x8) void cibfw_reset_version_dump(const struct cibfw_reset_version* ptr_struct, FILE* fd); /* uid_entry */ void cibfw_uid_entry_pack(const struct cibfw_uid_entry* ptr_struct, u_int8_t* ptr_buff); void cibfw_uid_entry_unpack(struct cibfw_uid_entry* ptr_struct, const u_int8_t* ptr_buff); void cibfw_uid_entry_print(const struct cibfw_uid_entry* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_uid_entry_size(void); #define CIBFW_UID_ENTRY_SIZE (0x10) void cibfw_uid_entry_dump(const struct cibfw_uid_entry* ptr_struct, FILE* fd); /* FW_VERSION */ void cibfw_FW_VERSION_pack(const struct cibfw_FW_VERSION* ptr_struct, u_int8_t* ptr_buff); void cibfw_FW_VERSION_unpack(struct cibfw_FW_VERSION* ptr_struct, const u_int8_t* ptr_buff); void cibfw_FW_VERSION_print(const struct cibfw_FW_VERSION* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_FW_VERSION_size(void); #define CIBFW_FW_VERSION_SIZE (0x10) void cibfw_FW_VERSION_dump(const struct cibfw_FW_VERSION* ptr_struct, FILE* fd); /* TRIPPLE_VERSION */ void cibfw_TRIPPLE_VERSION_pack(const struct cibfw_TRIPPLE_VERSION* ptr_struct, u_int8_t* ptr_buff); void cibfw_TRIPPLE_VERSION_unpack(struct cibfw_TRIPPLE_VERSION* ptr_struct, const u_int8_t* ptr_buff); void cibfw_TRIPPLE_VERSION_print(const struct cibfw_TRIPPLE_VERSION* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_TRIPPLE_VERSION_size(void); #define CIBFW_TRIPPLE_VERSION_SIZE (0x8) void cibfw_TRIPPLE_VERSION_dump(const struct cibfw_TRIPPLE_VERSION* ptr_struct, FILE* fd); /* guids */ void cibfw_guids_pack(const struct cibfw_guids* ptr_struct, u_int8_t* ptr_buff); void cibfw_guids_unpack(struct cibfw_guids* ptr_struct, const u_int8_t* ptr_buff); void cibfw_guids_print(const struct cibfw_guids* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_guids_size(void); #define CIBFW_GUIDS_SIZE (0x40) void cibfw_guids_dump(const struct cibfw_guids* ptr_struct, FILE* fd); /* image_size */ void cibfw_image_size_pack(const struct cibfw_image_size* ptr_struct, u_int8_t* ptr_buff); void cibfw_image_size_unpack(struct cibfw_image_size* ptr_struct, const u_int8_t* ptr_buff); void cibfw_image_size_print(const struct cibfw_image_size* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_image_size_size(void); #define CIBFW_IMAGE_SIZE_SIZE (0x8) void cibfw_image_size_dump(const struct cibfw_image_size* ptr_struct, FILE* fd); /* lfwp_version_vector */ void cibfw_lfwp_version_vector_pack(const struct cibfw_lfwp_version_vector* ptr_struct, u_int8_t* ptr_buff); void cibfw_lfwp_version_vector_unpack(struct cibfw_lfwp_version_vector* ptr_struct, const u_int8_t* ptr_buff); void cibfw_lfwp_version_vector_print(const struct cibfw_lfwp_version_vector* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_lfwp_version_vector_size(void); #define CIBFW_LFWP_VERSION_VECTOR_SIZE (0x40) void cibfw_lfwp_version_vector_dump(const struct cibfw_lfwp_version_vector* ptr_struct, FILE* fd); /* module_version */ void cibfw_module_version_pack(const struct cibfw_module_version* ptr_struct, u_int8_t* ptr_buff); void cibfw_module_version_unpack(struct cibfw_module_version* ptr_struct, const u_int8_t* ptr_buff); void cibfw_module_version_print(const struct cibfw_module_version* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_module_version_size(void); #define CIBFW_MODULE_VERSION_SIZE (0x4) void cibfw_module_version_dump(const struct cibfw_module_version* ptr_struct, FILE* fd); /* operation_key */ void cibfw_operation_key_pack(const struct cibfw_operation_key* ptr_struct, u_int8_t* ptr_buff); void cibfw_operation_key_unpack(struct cibfw_operation_key* ptr_struct, const u_int8_t* ptr_buff); void cibfw_operation_key_print(const struct cibfw_operation_key* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_operation_key_size(void); #define CIBFW_OPERATION_KEY_SIZE (0x10) void cibfw_operation_key_dump(const struct cibfw_operation_key* ptr_struct, FILE* fd); /* device_info */ void cibfw_device_info_pack(const struct cibfw_device_info* ptr_struct, u_int8_t* ptr_buff); void cibfw_device_info_unpack(struct cibfw_device_info* ptr_struct, const u_int8_t* ptr_buff); void cibfw_device_info_print(const struct cibfw_device_info* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_device_info_size(void); #define CIBFW_DEVICE_INFO_SIZE (0x200) void cibfw_device_info_dump(const struct cibfw_device_info* ptr_struct, FILE* fd); /* image_info */ void cibfw_image_info_pack(const struct cibfw_image_info* ptr_struct, u_int8_t* ptr_buff); void cibfw_image_info_unpack(struct cibfw_image_info* ptr_struct, const u_int8_t* ptr_buff); void cibfw_image_info_print(const struct cibfw_image_info* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_image_info_size(void); #define CIBFW_IMAGE_INFO_SIZE (0x400) void cibfw_image_info_dump(const struct cibfw_image_info* ptr_struct, FILE* fd); /* itoc_entry */ void cibfw_itoc_entry_pack(const struct cibfw_itoc_entry* ptr_struct, u_int8_t* ptr_buff); void cibfw_itoc_entry_unpack(struct cibfw_itoc_entry* ptr_struct, const u_int8_t* ptr_buff); void cibfw_itoc_entry_print(const struct cibfw_itoc_entry* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_itoc_entry_size(void); #define CIBFW_ITOC_ENTRY_SIZE (0x20) void cibfw_itoc_entry_dump(const struct cibfw_itoc_entry* ptr_struct, FILE* fd); /* itoc_header */ void cibfw_itoc_header_pack(const struct cibfw_itoc_header* ptr_struct, u_int8_t* ptr_buff); void cibfw_itoc_header_unpack(struct cibfw_itoc_header* ptr_struct, const u_int8_t* ptr_buff); void cibfw_itoc_header_print(const struct cibfw_itoc_header* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_itoc_header_size(void); #define CIBFW_ITOC_HEADER_SIZE (0x20) void cibfw_itoc_header_dump(const struct cibfw_itoc_header* ptr_struct, FILE* fd); /* mfg_info */ void cibfw_mfg_info_pack(const struct cibfw_mfg_info* ptr_struct, u_int8_t* ptr_buff); void cibfw_mfg_info_unpack(struct cibfw_mfg_info* ptr_struct, const u_int8_t* ptr_buff); void cibfw_mfg_info_print(const struct cibfw_mfg_info* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_mfg_info_size(void); #define CIBFW_MFG_INFO_SIZE (0x140) void cibfw_mfg_info_dump(const struct cibfw_mfg_info* ptr_struct, FILE* fd); /* register_mfai */ void cibfw_register_mfai_pack(const struct cibfw_register_mfai* ptr_struct, u_int8_t* ptr_buff); void cibfw_register_mfai_unpack(struct cibfw_register_mfai* ptr_struct, const u_int8_t* ptr_buff); void cibfw_register_mfai_print(const struct cibfw_register_mfai* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_register_mfai_size(void); #define CIBFW_REGISTER_MFAI_SIZE (0x10) void cibfw_register_mfai_dump(const struct cibfw_register_mfai* ptr_struct, FILE* fd); /* register_mfrl */ void cibfw_register_mfrl_pack(const struct cibfw_register_mfrl* ptr_struct, u_int8_t* ptr_buff); void cibfw_register_mfrl_unpack(struct cibfw_register_mfrl* ptr_struct, const u_int8_t* ptr_buff); void cibfw_register_mfrl_print(const struct cibfw_register_mfrl* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_register_mfrl_size(void); #define CIBFW_REGISTER_MFRL_SIZE (0x10) void cibfw_register_mfrl_dump(const struct cibfw_register_mfrl* ptr_struct, FILE* fd); /* cibfw_Nodes */ void cibfw_cibfw_Nodes_pack(const union cibfw_cibfw_Nodes* ptr_struct, u_int8_t* ptr_buff); void cibfw_cibfw_Nodes_unpack(union cibfw_cibfw_Nodes* ptr_struct, const u_int8_t* ptr_buff); void cibfw_cibfw_Nodes_print(const union cibfw_cibfw_Nodes* ptr_struct, FILE* fd, int indent_level); unsigned int cibfw_cibfw_Nodes_size(void); #define CIBFW_CIBFW_NODES_SIZE (0x400) void cibfw_cibfw_Nodes_dump(const union cibfw_cibfw_Nodes* ptr_struct, FILE* fd); #ifdef __cplusplus } #endif #endif // CIBFW_LAYOUTS_H mstflint-4.26.0/tools_layouts/reg_access_hca_layouts.h0000644000175000017500000051144214522641732023474 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-07-19 14:43:11" *** by: *** > [REDACTED]/adb2pack.py --input adb/prm/hca/ext/reg_access_hca.adb --file-prefix reg_access_hca --prefix reg_access_hca_ --no-adb-utils ***/ #ifndef REG_ACCESS_HCA_LAYOUTS_H #define REG_ACCESS_HCA_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_file_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.23 */ u_int32_t parameter_index; /* Description - type_class = 0x6 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_global_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.23 */ u_int32_t parameter_index; /* Description - type_class = 0x0 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_host_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.17 */ u_int32_t parameter_index; /* Description - type_class = 0x7 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_log_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.23 */ u_int32_t parameter_index; /* Description - type_class = 0x5 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_module_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.13 */ u_int16_t parameter_index; /* Description - Module Index */ /* 0x0.14 - 0x0.23 */ u_int16_t module_index; /* Description - type_class = 0x9 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_per_host_pf_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.9 */ u_int16_t parameter_index; /* Description - */ /* 0x0.10 - 0x0.17 */ u_int8_t pci_bus_index; /* Description - */ /* 0x0.18 - 0x0.23 */ u_int8_t pf_index; /* Description - type_class = 0x3 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_configuration_item_type_class_physical_port_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.15 */ u_int16_t parameter_index; /* Description - */ /* 0x0.16 - 0x0.23 */ u_int8_t port; /* Description - type_class = 0x1 */ /* 0x0.24 - 0x0.31 */ u_int8_t type_class; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_date_time_layout_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - hour (UTC) - 2 packed BCD digits */ /* 0x0.8 - 0x0.15 */ u_int8_t hours; /* Description - minutes - 2 packed BCD digits */ /* 0x0.16 - 0x0.23 */ u_int8_t minutes; /* Description - seconds - 2 packed BCD digits */ /* 0x0.24 - 0x0.31 */ u_int8_t seconds; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - day - 2 packed BCD digits */ /* 0x4.0 - 0x4.7 */ u_int8_t day; /* Description - month - 2 packed BCD digits */ /* 0x4.8 - 0x4.15 */ u_int8_t month; /* Description - year - 4 packed BCD digits */ /* 0x4.16 - 0x4.31 */ u_int16_t year; }; /* Description - */ /* Size in bytes - 4 */ union reg_access_hca_config_item_type_auto_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_global_ext configuration_item_type_class_global_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_physical_port_ext configuration_item_type_class_physical_port_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_per_host_pf_ext configuration_item_type_class_per_host_pf_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_log_ext configuration_item_type_class_log_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_file_ext configuration_item_type_class_file_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_host_ext configuration_item_type_class_host_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_configuration_item_type_class_module_ext configuration_item_type_class_module_ext; }; /* Description - */ /* Size in bytes - 124 */ struct reg_access_hca_mcqi_activation_method_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - When set, the operation needed to move the component form ACTIVE_PENDING_RESET to ACTIVE should happen simultaneously on all hosts. */ /* 0x0.0 - 0x0.0 */ u_int8_t all_hosts_sync; /* Description - This component will be ACTIVE or ACTIVE_PENDING_RESET after the APPLY state. */ /* 0x0.1 - 0x0.1 */ u_int8_t auto_activate; /* Description - This component goes to ACTIVE_PENDING_RESET after activation. A FW reset will move it to ACTIVE state. */ /* 0x0.2 - 0x0.2 */ u_int8_t pending_fw_reset; /* Description - This component goes to ACTIVE_PENDING_RESET state after activation. A server reset (PCIe PERST#), will move it ACTIVE state. */ /* 0x0.3 - 0x0.3 */ u_int8_t pending_server_reboot; /* Description - This component goes to ACTIVE_PENDING_RESET state after activation. DC power cycle (power cycle of PCI power rails), will move it ACTIVE state. */ /* 0x0.4 - 0x0.4 */ u_int8_t pending_server_dc_power_cycle; /* Description - This component goes to ACTIVE_PENDING_RESET state after activation. AC power cycle (power cycle for both PCI power rails and AUX power), will move it ACTIVE state. */ /* 0x0.5 - 0x0.5 */ u_int8_t pending_server_ac_power_cycle; /* Description - When set, the component supports self activation. For cables, please refer to activation_type in LINKX_PROPERTIES data for more details. */ /* 0x0.6 - 0x0.6 */ u_int8_t self_activation; }; /* Description - */ /* Size in bytes - 124 */ struct reg_access_hca_mcqi_cap_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Bitmask indicating which info_type(s) are supported for this component. Set bit indicates the property set is supported bit 1: VERSION bit 5: ACTIVATION_METHOD Other bits are reserved. CAPABILITIES set is always supported. bit 6: LinkX bit 7: Clock Synchronizer */ /* 0x0.0 - 0x0.31 */ u_int32_t supported_info_bitmask; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The size of the component given in bytes. Value 0x0 indicates that the size in unknown. For some components, size may only be available in the READ_COMPONENT state. */ /* 0x4.0 - 0x4.31 */ u_int32_t component_size; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Maximum size for this component, given in bytes. */ /* 0x8.0 - 0x8.31 */ u_int32_t max_component_size; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Maximal write size for MCDA */ /* 0xc.0 - 0xc.15 */ u_int16_t mcda_max_write_size; /* Description - Log 2 of the access word size in bytes. Read and write access must be aligned to the word size. Write access must be done for an integer number of words. */ /* 0xc.28 - 0xc.31 */ u_int8_t log_mcda_word_size; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The device only accepts updates for this component that explicitly lists its base MAC and/or base GUID */ /* 0x10.26 - 0x10.26 */ u_int8_t match_base_guid_mac; /* Description - A user defined timestamp (MVTS) is active for this component. */ /* 0x10.27 - 0x10.27 */ u_int8_t check_user_timestamp; /* Description - PSID is validated for this component update. */ /* 0x10.28 - 0x10.28 */ u_int8_t match_psid; /* Description - Chip ID (device_hw_revision) is validated for this component update. */ /* 0x10.29 - 0x10.29 */ u_int8_t match_chip_id; /* Description - Only signed components are accepted. */ /* 0x10.30 - 0x10.30 */ u_int8_t signed_updates_only; /* Description - When set, this components may be read, see Section 10.3.4, "Read Flow", on page 873. */ /* 0x10.31 - 0x10.31 */ u_int8_t rd_en; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_mcqi_clock_source_properties_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Image Version Minor Number */ /* 0x0.0 - 0x0.3 */ u_int8_t image_version_minor; /* Description - Image Version Major Number */ /* 0x0.4 - 0x0.7 */ u_int8_t image_version_major; /* Description - Clock Source Device Vendor Id 0: Renesas 1: SiTime 148 2: SiTime 348 3: TI 4-255: Reserved */ /* 0x0.16 - 0x0.23 */ u_int8_t vendor_id; }; /* Description - */ /* Size in bytes - 124 */ struct reg_access_hca_mcqi_linkx_properties_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Bit 0: Image A is running Bit 1: Image A is committed, module boots from image A Bit 2: Image A is erased / empty Bit 3: Reserved Bit 4: Image B is running Bit 5: Image B is committed, module boots from image B Bit 6: Image B is erased / empty Bit 7: Reserved */ /* 0x0.0 - 0x0.7 */ u_int8_t fw_image_status_bitmap; /* Description - Bit 0: FW image A is present Bit 1: FW image B is present Bit 2: Factory / boot image is present Bits 3-7: Reserved */ /* 0x0.16 - 0x0.23 */ u_int8_t fw_image_info_bitmap; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Image A FW minor version */ /* 0x4.0 - 0x4.7 */ u_int8_t image_a_minor; /* Description - Image A FW major version */ /* 0x4.8 - 0x4.15 */ u_int8_t image_a_major; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Image A FW subminor number */ /* 0x8.0 - 0x8.15 */ u_int16_t image_a_subminor; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Image B FW minor version */ /* 0xc.0 - 0xc.7 */ u_int8_t image_b_minor; /* Description - Image B FW major version */ /* 0xc.8 - 0xc.15 */ u_int8_t image_b_major; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Image B FW subminor number */ /* 0x10.0 - 0x10.15 */ u_int16_t image_b_subminor; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Factory / boot image FW minor version */ /* 0x14.0 - 0x14.7 */ u_int8_t factory_image_minor; /* Description - Factory / boot image FW major version */ /* 0x14.8 - 0x14.15 */ u_int8_t factory_image_major; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Factory / boot image FW subminor number */ /* 0x18.0 - 0x18.15 */ u_int16_t factory_image_subminor; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - 0: Does not support either one of the FW update procedures defined below 1: SFF-8636 management interface and pseudo-CMIS FW. Update is supported 2: CMIS 4.0 is implemented */ /* 0x1c.0 - 0x1c.5 */ u_int8_t management_interface_protocol; /* Description - 0: HW reset is required. Host should be prepared to power cycle a cable after sending a RunFWImage command. 1: Self-activation with HW reset contained in the RunFWImage command. No additional actions required from the host. 2:Self-activation with hitless reset contained in the RunFWImage command. No additional actions required from the host. 3-15: Reserved */ /* 0x1c.10 - 0x1c.13 */ u_int8_t activation_type; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - Vendor Serial Number */ /* 0x20.0 - 0x20.15 */ u_int16_t vendor_sn; }; /* Description - */ /* Size in bytes - 124 */ struct reg_access_hca_mcqi_version_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t version_string_length; /* Description - When set, the component has a valid user-defined version time-stamp in user_defined_time */ /* 0x0.28 - 0x0.28 */ u_int8_t user_defined_time_valid; /* Description - When set, the component has a valid creation time-stamp in build_time */ /* 0x0.29 - 0x0.29 */ u_int8_t build_time_valid; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Version number */ /* 0x4.0 - 0x4.31 */ u_int32_t version; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Time of component creation. Valid only if build_time_valid is set. See Table 2256, "Date-Time Layout," on page 2613 */ /* 0x8.0 - 0xc.31 */ struct reg_access_hca_date_time_layout_ext build_time; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - User-defined time assigned to the component version. Valid only if user_defined_time_valid is set. See Table 2256, "Date-Time Layout," on page 2613 */ /* 0x10.0 - 0x14.31 */ struct reg_access_hca_date_time_layout_ext user_defined_time; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Build tool version number. Valid only when not equal to 0 */ /* 0x18.0 - 0x18.31 */ u_int32_t build_tool_version; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - NULL terminated string representing the version. */ /* 0x20.24 - 0x7c.23 */ u_int8_t version_string[92]; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_rom_version_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Build version */ /* 0x0.0 - 0x0.15 */ u_int16_t build; /* Description - Minor version */ /* 0x0.16 - 0x0.23 */ u_int8_t minor; /* Description - Major version */ /* 0x0.24 - 0x0.31 */ u_int8_t major; }; /* Description - */ /* Size in bytes - 12 */ struct reg_access_hca_config_item_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Length of configuration item data in bytes (not including header). Must be between 0 and 256. */ /* 0x0.0 - 0x0.8 */ u_int16_t length; /* Description - Host ID valid: 1: the type_index.host_id field is valid Valid only when MNVGC.priv_nv_other_host=1 and the type_class is a Host */ /* 0x0.9 - 0x0.9 */ u_int8_t host_id_valid; /* Description - Configuration item version - defines the data structure following the header (together with the type field). */ /* 0x0.12 - 0x0.15 */ u_int8_t version; /* Description - The entity which configured this parameter 0x0: UNSPECIFIED 0x1: CHASSIS_BMC 0x2: MAD 0x3: BMC 0x4: COMMAND_INTERFACE 0x5: ICMD - with unspecified source 0x6: ICMD_UEFI_HII - configured by the NIC's UEFI expansion ROM"s HII menu. 0x7: ICMD_UEFI_CLP - configured by the NIC's expansion ROM"s CLP. 0x8: ICMD_Flexboot - configured by the NIC"s legacy expansion ROM. 0x9: ICMD_mlxconfig - configured by Mellanox mlxconfig tool 0xA: ICMD_USER1 - value available for customer created tools that uses the ICMD interface for writing TLVs. 0xB: ICMD_USER2 - value available for customer created tools that uses the ICMD interface for writing TLVs. 0xC: ICMD_MLXCONFIG_SET_RAW - configures by mlxconfig set raw operation. 0xD: ICMD_FLEXBOOT_CLP - configured by Legacy Expansion ROM CLP 0x10: BMC_APP1 - Configuration was done over the BMC by application #1 (application name is OEM specific) 0x11: BMC_APP2 - Configuration was done over the BMC by application #2 (application name is OEM specific) 0x12: BMP_APP3 - Configuration was done over the BMC by application #3 (application name is OEM specific) 0x1F: OTHER - the parameter was written by the NIC due to other reasons. Note - This field is writeable only when using the ICMD interface. The only value that are valid for writes are 0x6 through 0xB. Other values will be replaced by 0x5ICMD. */ /* 0x0.16 - 0x0.20 */ u_int8_t writer_id; /* Description - Defines which value of the Configuration Item will be accessed. 0: NEXT - Next value to be applied 1: CURRENT - Currently set values (only valid for Query operation) Supported only if NVGC.nvda_read_current_settings==1.2: FACTORY - Default factory values (only valid for Query operation). Supported only if NVGC.nvda_read_factory_settings==1. */ /* 0x0.22 - 0x0.23 */ u_int8_t access_mode; /* Description - Read Enable Controls the read operation during different life-cycle stages. 0: TLV cannot be read by the subsequent life-cycle priorities. 1: TLV can be read by the subsequent life-cycle priorities. */ /* 0x0.24 - 0x0.24 */ u_int8_t rd_en; /* Description - Override Enable 0: Can only be overwritten by the current life-cycle priority. 1: Allowed to be over-written by the subsequent life-cycle priorities. */ /* 0x0.25 - 0x0.25 */ u_int8_t ovr_en; /* Description - The life-cycle priority of this configuration. 0x0: USER, 0x1: OEM, 0x2: Reserved 0x3: MLNX The priority is set by either: 1. When using MNVDA, the TLV will have user priority 2. When using NVCONFIG, each TLV has its own priority */ /* 0x0.28 - 0x0.29 */ u_int8_t priority; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Configuration item index according to its type_class. Table 2337, "Configuration Item Data Type Class Global Layout," on page 2675 Table 2339, "Configuration Item Data Type Class Physical Port Layout," on page 2675 Table 2341, "Configuration Item Data Type Class Per Host-PF Layout," on page 2676 Table 2343, "Configuration Item Data Type Class Log Layout," on page 2676 Table 2345, "Configuration Item Data Type Class File Layout," on page 2677 Table 2347, "Configuration Item Data Type Class Host Layout," on page 2677 Table 2349, "Configuration Item Data Type Class Module Layout," on page 2678 */ /* 0x4.0 - 0x4.31 */ union reg_access_hca_config_item_type_auto_ext type; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_default_timeout_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Timeout value */ /* 0x0.0 - 0x0.19 */ u_int32_t to_value; /* Description - 0x0: millisecond 0x1: seconds 0x2: minutes 0x3: hours */ /* 0x0.29 - 0x0.31 */ u_int8_t to_multiplier; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_diagnostic_cntr_layout { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Diagnostic counter identifier. */ /* 0x0.0 - 0x0.15 */ u_int16_t counter_id; /* Description - The counter might be used as Synced Start Diagnostics Counters */ /* 0x0.31 - 0x0.31 */ u_int8_t sync; }; /* Description - */ /* Size in bytes - 4 */ struct reg_access_hca_lane_2_module_mapping_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Module number */ /* 0x0.0 - 0x0.7 */ u_int8_t module; /* Description - Reserved for HCA Slot_index Slot_index = 0 represent the onboard (motherboard). In case of non modular system only slot_index = 0 is available. */ /* 0x0.8 - 0x0.11 */ u_int8_t slot_index; /* Description - TX lane. When m_lane_m field is set, this field is ignored (Reserved). When rxtx field is cleared, this field is used for RX as well. */ /* 0x0.16 - 0x0.19 */ u_int8_t tx_lane; /* Description - RX lane. When m_lane_m field is set, this field is ignored (Reserved). When rxtx field is cleared, this field is ignored and RX lane is equal to TX lane. */ /* 0x0.24 - 0x0.27 */ u_int8_t rx_lane; }; /* Description - */ /* Size in bytes - 124 */ union reg_access_hca_mcqi_reg_data_auto_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_cap_ext mcqi_cap_ext; /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_version_ext mcqi_version_ext; /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_activation_method_ext mcqi_activation_method_ext; /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_linkx_properties_ext mcqi_linkx_properties_ext; /* Description - */ /* 0x0.0 - 0x0.31 */ struct reg_access_hca_mcqi_clock_source_properties_ext mcqi_clock_source_properties_ext; }; /* Description - */ /* Size in bytes - 28 */ struct reg_access_hca_mgir_dev_info_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The format of the string represented by ASCII. */ /* 0x0.24 - 0x1c.23 */ u_int8_t dev_branch_tag[28]; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_mgir_fw_info_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Sub-minor firmware version number. Deprecated and returns '0'. Refer to extended_sub_minor. */ /* 0x0.0 - 0x0.7 */ u_int8_t sub_minor; /* Description - Minor firmware version number. Deprecated and returns '0'. Refer to extended_minor. */ /* 0x0.8 - 0x0.15 */ u_int8_t minor; /* Description - Major firmware version number. Deprecated and returns '0'. Refer to extended_major. */ /* 0x0.16 - 0x0.23 */ u_int8_t major; /* Description - When set, the device is running firmware with secure-firmware updates capabilities. */ /* 0x0.24 - 0x0.24 */ u_int8_t secured; /* Description - When set the device is running a signed FW binaries. */ /* 0x0.25 - 0x0.25 */ u_int8_t signed_fw; /* Description - When set, the device is running a debug firmware. 'debug' binary can only be installed on specific devices (identified by their 'Factory base MAC'), which currently run a specific firmware version. These restrictions are expressed by a signed 'debug' token that must be loaded to the device before installing the debug binary. */ /* 0x0.26 - 0x0.26 */ u_int8_t debug; /* Description - *NOTE* this field has diff meaning for Switch vs. NIC NIC: The device is running: 0: a regular-secure firmware version 1: a development-secure firmware version */ /* 0x0.27 - 0x0.27 */ u_int8_t dev; /* Description - When set, string-TLV is supported. For Retimer - always return 0 (not supported). */ /* 0x0.28 - 0x0.28 */ u_int8_t string_tlv; /* Description - *NOTE* for NICs same as dev field Development-secure: The device is running: 0: a regular-secure firmware version 1: a development-secure firmware version */ /* 0x0.30 - 0x0.30 */ u_int8_t dev_sc; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Firmware Build ID. Optional. . */ /* 0x4.0 - 0x4.31 */ u_int32_t build_id; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Firmware installation date. For example: 3 May 2004 will be coded as Month= 0x05, Day= 0x03, and Year= 0x04 */ /* 0x8.0 - 0x8.15 */ u_int16_t year; /* Description - Firmware installation date. For example: 3 May 2004 will be coded as Month= 0x05, Day= 0x03, and Year= 0x04 */ /* 0x8.16 - 0x8.23 */ u_int8_t day; /* Description - Firmware installation date. For example: 3 May 2004 will be coded as Month= 0x05, Day= 0x03, and Year= 0x04 */ /* 0x8.24 - 0x8.31 */ u_int8_t month; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Firmware installation hour. For example 17:43 will be coded as 0x1743 */ /* 0xc.0 - 0xc.15 */ u_int16_t hour; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - FW PSID */ /* 0x10.24 - 0x20.23 */ u_int8_t psid[16]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - User-configured version number of the current INI file. */ /* 0x20.0 - 0x20.31 */ u_int32_t ini_file_version; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - FW version's Major field in extended (32b) format. */ /* 0x24.0 - 0x24.31 */ u_int32_t extended_major; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - FW version's Minor field in extended (32b) format. */ /* 0x28.0 - 0x28.31 */ u_int32_t extended_minor; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - FW version's SubMinor field in extended (32b) format. */ /* 0x2c.0 - 0x2c.31 */ u_int32_t extended_sub_minor; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - incremented by one when version is not ISSUable */ /* 0x30.0 - 0x30.15 */ u_int16_t isfu_major; /* Description - Bitmap representing the disabled tiles in the ASIC. Tile '0' is represented by the msb bit. 0: tile is enabled 1: tile is disabled The total number of tiles can be derived through MGPIR register. */ /* 0x30.16 - 0x30.31 */ u_int16_t disabled_tiles_bitmap; /*---------------- DWORD[13] (Offset 0x34) ----------------*/ /* Description - 0: Production 1: GA Secured 2: GA Non-Secured 3: RMA */ /* 0x34.0 - 0x34.1 */ u_int8_t life_cycle; /* Description - 0: Disable 1: Enable */ /* 0x34.2 - 0x34.2 */ u_int8_t sec_boot; /* Description - 0: Disable 1: Enable */ /* 0x34.3 - 0x34.3 */ u_int8_t encryption; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_hca_mgir_hardware_info_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - PCI device ID. */ /* 0x0.0 - 0x0.15 */ u_int16_t device_id; /* Description - See Table 2278, "Device HW Revision Descriptions," on page 2629 */ /* 0x0.16 - 0x0.31 */ u_int16_t device_hw_revision; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Process Voltage Scaling Supported nominal V_CORE voltage (in 50mV units) for the device. */ /* 0x4.0 - 0x4.4 */ u_int8_t pvs; /* Description - Process technology 0: N/A 1: 40nm 2: 28nm 3: 16nm 4: 7nm 5: 5nm 6-31: Reserved */ /* 0x4.11 - 0x4.15 */ u_int8_t technology; /* Description - Number of physical port the device supports. For Retimer: returns the number of data path */ /* 0x4.16 - 0x4.23 */ u_int8_t num_ports; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The PCI device-ID of the NIC/HCA in recovery (Livefish) mode. */ /* 0x8.0 - 0x8.15 */ u_int16_t hw_dev_id; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - MSB of the "base" MAC address of the NIC that was allocate during manufacturing. The NIC derives the MAC addresses for the different PCI PFs from this MAC address. This parameter can be used as a canonical unique identifier of the NIC. manufacturing_base_mac of value 0 means field is not supported. */ /* 0x10.0 - 0x10.15 */ u_int16_t manufacturing_base_mac_47_32; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - LSB of the "base" MAC address of the NIC that was allocate during manufacturing. The NIC derives the MAC addresses for the different PCI PFs from this MAC address. This parameter can be used as a canonical unique identifier of the NIC. manufacturing_base_mac of value 0 means field is not supported. */ /* 0x14.0 - 0x14.31 */ u_int32_t manufacturing_base_mac_31_0; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Time (in secs.) since last reset0 */ /* 0x1c.0 - 0x1c.31 */ u_int32_t uptime; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_hca_mgir_sw_info_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Sub-minor Driver version number. */ /* 0x0.0 - 0x0.7 */ u_int8_t sub_minor; /* Description - Minor Driver version number. */ /* 0x0.8 - 0x0.15 */ u_int8_t minor; /* Description - Major Driver version number. */ /* 0x0.16 - 0x0.23 */ u_int8_t major; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - ROM 3 type: 0x0: none 0x1: Flexboot 0x2: UEFI 0x3: UEFI-CLP 0x4: NVME 0x5: FCODE 0x6: UEFI Virtio net 0x7: UEFI Virtio blk 0x8: PXE Virtio net 0x9-0xF: Reserved */ /* 0x4.0 - 0x4.3 */ u_int8_t rom3_type; /* Description - Arch type of ROM 3: 0x0: unspecified 0x1: AMD64 - x86 64bit architecture 0x2: AARCH64 - ARM Architecture 64 bits 0x3: AMD64_AARCH64 - ROM code supporting both AMD64 and AARCH64 architectures 0x4: IA32 - Intel Architecture 32 bits */ /* 0x4.4 - 0x4.7 */ u_int8_t rom3_arch; /* Description - ROM 2type: 0x0: none 0x1: Flexboot 0x2: UEFI 0x3: UEFI-CLP 0x4: NVME 0x5: FCODE 0x6: UEFI Virtio net 0x7: UEFI Virtio blk 0x8: PXE Virtio net 0x9-0xF: Reserved */ /* 0x4.8 - 0x4.11 */ u_int8_t rom2_type; /* Description - Arch type of ROM 2: 0x0: unspecified 0x1: AMD64 - x86 64bit architecture 0x2: AARCH64 - ARM Architecture 64 bits 0x3: AMD64_AARCH64 - ROM code supporting both AMD64 and AARCH64 architectures 0x4: IA32 - Intel Architecture 32 bits */ /* 0x4.12 - 0x4.15 */ u_int8_t rom2_arch; /* Description - ROM 1type: 0x0: none 0x1: Flexboot 0x2: UEFI 0x3: UEFI-CLP 0x4: NVME 0x5: FCODE 0x6: UEFI Virtio net 0x7: UEFI Virtio blk 0x8: PXE Virtio net 0x9-0xF: Reserved */ /* 0x4.16 - 0x4.19 */ u_int8_t rom1_type; /* Description - Arch type of ROM 1: 0x0: unspecified 0x1: AMD64 - x86 64bit architecture 0x2: AARCH64 - ARM Architecture 64 bits 0x3: AMD64_AARCH64 - ROM code supporting both AMD64 and AARCH64 architectures 0x4: IA32 - Intel Architecture 32 bits */ /* 0x4.20 - 0x4.23 */ u_int8_t rom1_arch; /* Description - ROM 0 type: 0x0: none 0x1: Flexboot 0x2: UEFI 0x3: UEFI-CLP 0x4: NVME 0x5: FCODE 0x6: UEFI Virtio net 0x7: UEFI Virtio blk 0x8: PXE Virtio net 0x9-0xF: Reserved */ /* 0x4.24 - 0x4.27 */ u_int8_t rom0_type; /* Description - Arch type of ROM 0: 0x0: unspecified 0x1: AMD64 - x86 64bit architecture 0x2: AARCH64 - ARM Architecture 64 bits 0x3: AMD64_AARCH64 - ROM code supporting both AMD64 and AARCH64 architectures 0x4: IA32 - Intel Architecture 32 bits */ /* 0x4.28 - 0x4.31 */ u_int8_t rom0_arch; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - ROM 0 version. */ /* 0x8.0 - 0x8.31 */ struct reg_access_hca_rom_version_ext rom0_version; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - ROM 1 version. */ /* 0xc.0 - 0xc.31 */ struct reg_access_hca_rom_version_ext rom1_version; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - ROM 2version. */ /* 0x10.0 - 0x10.31 */ struct reg_access_hca_rom_version_ext rom2_version; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - ROM 3 version. */ /* 0x14.0 - 0x14.31 */ struct reg_access_hca_rom_version_ext rom3_version; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_string_db_parameters_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Offset of the first string of the section, relative to the entire string data base, given in bytes. */ /* 0x0.0 - 0x0.31 */ u_int32_t string_db_base_address; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Size of string database section, given in bytes */ /* 0x4.0 - 0x4.23 */ u_int32_t string_db_size; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_uint64 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int64_t uint64; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_debug_cap { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The maximum number of samples that can be stored on the device's sampling buffer is 2^ log_max_samples in counters unit (i.e. 100 will represent the ability to store 100 samples of single counter, 50 samples of 2 counters, etc). */ /* 0x0.0 - 0x0.7 */ u_int8_t log_max_samples; /* Description - Log(base 2) of the the recommended minimal size of eq to handle the resource_dump_event */ /* 0x0.16 - 0x0.20 */ u_int8_t log_min_resource_dump_eq; /* Description - If set, Resource_dump register is supported. See Table 1406, "RESOURCE_DUMP Register Layout," on page 1698 */ /* 0x0.22 - 0x0.22 */ u_int8_t resource_dump; /* Description - Log(base 2) of the size in granularity of 4KB to be allocated by host in order to accommodate cr_dump. 0 means feature is not supported. See Table 1404, "CORE_DUMP Register Layout," on page 1696 */ /* 0x0.23 - 0x0.27 */ u_int8_t log_cr_dump_to_mem_size; /* Description - If set, Core dump of type of specific QP is supported. */ /* 0x0.30 - 0x0.30 */ u_int8_t core_dump_qp; /* Description - If set, Core dump of type "General" is supported. */ /* 0x0.31 - 0x0.31 */ u_int8_t core_dump_general; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The minimal sample period is 2^ log_min_smaple_period in device clocks. Clock rate of the device is reported by HCA_CAP.device_frequency_khz. */ /* 0x4.0 - 0x4.7 */ u_int8_t log_min_sample_period; /* Description - If set, the device supports dumping the diagnostic counters reports into the tracer buffer. */ /* 0x4.28 - 0x4.28 */ u_int8_t diag_counter_tracer_dump; /* Description - If set, health monitoring for rx path activity is supported. See Section 26.5.1, "RX Path Activity," on page 988 */ /* 0x4.29 - 0x4.29 */ u_int8_t health_mon_rx_activity; /* Description - Repetitive sampling mode is supported */ /* 0x4.30 - 0x4.30 */ u_int8_t repetitive; /* Description - Single sampling mode is supported */ /* 0x4.31 - 0x4.31 */ u_int8_t single; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - List of counters supported. Number of counters reported by num_of_counters. */ /* 0x40.0 - 0x40.31 */ struct reg_access_hca_diagnostic_cntr_layout *diagnostic_counter; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_dtor_reg_ext { /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Maximum period for PCIe to be alive after toggle. */ /* 0x4.0 - 0x4.31 */ struct reg_access_hca_default_timeout_ext PCIE_TOGGLE_TO; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Interval for checking if FW health counter incremented. */ /* 0x14.0 - 0x14.31 */ struct reg_access_hca_default_timeout_ext HEALTH_POLL_TO; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - On a multi-function device, in case of error, one function dump the CRspace, the other should not do reset till dump is finished. */ /* 0x18.0 - 0x18.31 */ struct reg_access_hca_default_timeout_ext FULL_CRDUMP_TO; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Maximum period to wait for nic_interface reset. */ /* 0x1c.0 - 0x1c.31 */ struct reg_access_hca_default_timeout_ext FW_RESET_TO; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - Maximum period to flush an errored SQ\RQ. */ /* 0x20.0 - 0x20.31 */ struct reg_access_hca_default_timeout_ext FLUSH_ON_ERR_TO; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - Maximum period for pci_sync_for_fw_update_start. */ /* 0x24.0 - 0x24.31 */ struct reg_access_hca_default_timeout_ext PCI_SYNC_UPDATE_TO; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - Maximum period for TEARDOWN_HCA. */ /* 0x28.0 - 0x28.31 */ struct reg_access_hca_default_timeout_ext TEAR_DOWN_TO; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - The time that takes to do FW FSM reactivate. */ /* 0x2c.0 - 0x2c.31 */ struct reg_access_hca_default_timeout_ext FSM_REACTIVATE_TO; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - Maximum period for PF to reclaim own function pages. */ /* 0x30.0 - 0x30.31 */ struct reg_access_hca_default_timeout_ext RECLAIM_PAGES_TO; /*---------------- DWORD[13] (Offset 0x34) ----------------*/ /* Description - Maximum period for PF to reclaim VF function pages. */ /* 0x34.0 - 0x34.31 */ struct reg_access_hca_default_timeout_ext RECLAIM_VFS_PAGES_TO; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - Maximum period for Reset FSM to move from UNLOAD ACCEPTED to LINK_TOGGLE_REQUEST */ /* 0x38.0 - 0x38.31 */ struct reg_access_hca_default_timeout_ext DRIVER_UNLOAD_AND_RESET_TO; }; /* Description - */ /* Size in bytes - 72 */ struct reg_access_hca_mcam_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Access Register ID groups 0: First_128_REG_ID - Register IDs 0x9001 - 0x907F) 1: Register_IDs_0x9080 - 0x90FF (bit 0 in mng_access_reg_cap_mask represent register ID 0x9080 while bit 127 represents register ID 0x90FF). 2: Register_IDs_0x9100 - 0x917F (bit 0 in mng_access_reg_cap_mask represent register ID 0x9100 while bit 127 represents register ID 0x917F). */ /* 0x0.0 - 0x0.7 */ u_int8_t access_reg_group; /* Description - Feature list mask index: 0: enhanced_features */ /* 0x0.16 - 0x0.23 */ u_int8_t feature_group; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Supported management's access register bitmask. Based on access_reg_group index. When bit is set, the register is supported in the device. For example: Bit 1: MFCR_0x9001 Bit 2: MFSC_0x9002 Bit 3: MFSM_0x9003 Bit 4: MFSL_0x9004 Bit 58: MGCR_0x903A Bit 73: MPPF_0x9049 Bit 127: MCAP_0x907F */ /* 0x8.0 - 0x14.31 */ u_int32_t mng_access_reg_cap_mask[4]; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - Supported port's enhanced features.Based on feature_group index. When bit is set, The feature is supported in the device: Bit 0: MPCNT counter group- PCIE performance counters supported Bit 1: mtpps_fs - If set, field_select field in MTPPS register is supported. Bit 2: mtpps_enhanced_out_periodic_adjustment - If set, enhanced_out_periodic_adjustment field in MTPPS register is supported. Bit 3: tx_lossy_overflow_oper - If set, tx_overflow_buffer_pkt counter in MPCNT register is supported. Bit 4: pcie_outbound_stalled - if set, outbound_stalled_reads, outbound_stalled_writes, outbound_stalled_reads_events and outbound_stalled_writes_events counters in MPCNT are supported. Bit 5: Management pass through is supported Bit 6: sensor_map - If set, sensor_map is supported in MTCAP register. Bit 7: if set, module_status bit 8 (Module Low Power) in MCION register is supported. Bit 8: beacon_capability_disable - If set, beacon feature, as appears in MLCR register, in not supported by the device. Bit 9: dynamic_tx_overflow - If set, tx_overflow_sense field is supported in MPEGC register. Bit 10: mark_tx_action_cqe is supported if set to '1'. Bit 11: mark_tx_action_cnp is supported if set to '1'. Bit 12: dev_info is supported in register is set to '1'. Bit 13: sensor_count field is 12bit size in MTMP and MTBR Bit 14: cs_tokens_supported is supported Bit 15: debug_fw_tokens_supported Bit 16: long_keys is supported Bit 17: pwr_status and pci_power are supported in MPEIN Bit 18: If set, accessing through device_type and device_index is supported in MCC, MCQI and MCQS Bit 19: pcie_sync_for_fw_update_supported is set to '1' Bit 20: ptpCyc2Realtime_modify - If set, the cycle to realtime translation offload is supported Bit 21: If set to '1', reset_state in MFRL is supported Bit 22: If set to '1', link_peer_max_speed is supported in MPEIN Register Bit 23: If set to '1', slot_index field is supported in: MCIA, MCAS, MCION, MQSP, MTCAP, MTECR, MTMP, MTEWE, MTBR, MVCAP, MVCR, MGPIR, MDDT, MDCR. Bit 24: If set, transceiver burn flow is supported in MCC, MCQI and MCQS. Bit 26: If set, progress field is supported in MCQS Bit 28: If set, number_of_slots field is supported in MGPIR. Bit 29: If set, virtual hot plug / unplug is supported in MPEGC. Bit 30: If set, my_pf_number is supported in MPPF. Bit 31: If set, sdee is supported in MTMP Bit 32: If set, npps_period is supported in MTPPS. Bit 33: If set, out_pulse_duration_ns is supported in MTPPS. Bit 34: If set, MCIA supports 32 D-words. Otherwise, 12 D-words. Bit 35: If set, MGIR.hw_info.technology is supported. Bit 37: If set, lp_msb is supported for MLCR, MPIR Bit 39: If set, MRCS and RMDT tokens are supported in MCQS Bit 40: If set, 'encryption' field in MGIR is supported Bit 43: If set, MFCR supports tacho_active_msb field Bit 44: If set, FORE supports fan_under_limit_msb and fan_over_limit_msb fields Bit 45: If set, MFRL.pci_rescan_required is supported Bit 46: time_adjust_range_extended - if set, the MTUTC.time_adjustment range is extended to -200,000 to +200,000 Bit 47: If set, MTUTC.freq_adj_units=1 is supported Bit 48: If set, MRSR.command=6 is supported Bit 49: If set, MCQS.identifier support CRCS and CRDT tokens Bit 51: If set, MTUTC.freq_adj_units=2 is supported Bit 53: If set, Mlx mlxfwreset with downstream port is supported by FW [Internal]: NIC only, FW rejects reset till user committed that traffic is disabled */ /* 0x28.0 - 0x34.31 */ u_int32_t mng_feature_cap_mask[4]; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_hca_mcc_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Command to be executed by the FSM 0x1: LOCK_UPDATE_HANDLE 0x2: RELEASE_UPDATE_HANDLE 0x3: UPDATE_COMPONENT 0x4: VERIFY_COMPONENT 0x6: ACTIVATE 0x7: READ_COMPONENT 0x8: CANCEL 0x9: CHECK_UPDATE_HANDLE 0xA: FORCE_HANDLE_RELEASE 0xB: READ_PENDING_COMPONENT 0xC: DOWNSRTEAM_DEVICE_TRANSFER Other values are reserved. Applicable for write operation only. */ /* 0x0.0 - 0x0.7 */ u_int8_t instruction; /* Description - This is a configuration that delays the activation of the component in seconds. Relevant only for activate command. This configuration is volatile. */ /* 0x0.8 - 0x0.15 */ u_int8_t activation_delay_sec; /* Description - The number of seconds elapsed since the update_handle owner last issued a command. The time saturates at 0xFFF. */ /* 0x0.16 - 0x0.27 */ u_int16_t time_elapsed_since_last_cmd; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Index of the accessed component. Value from MCQS.component_index Valid for UPDATE_COMPONENT, ACTIVATE_COMPONENET, READ_COMPONENT and READ_PENDING_COMPONENT instructions. Otherwise, this field is reserved. */ /* 0x4.0 - 0x4.15 */ u_int16_t component_index; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Token representing the current flow executed by the FSM. See Section 10.2.1, "Component Update State", on page 870. */ /* 0x8.0 - 0x8.23 */ u_int32_t update_handle; /* Description - Auto-update to all matching downstream devices is requested. */ /* 0x8.31 - 0x8.31 */ u_int8_t auto_update; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Current Update FSM state, see Section 10.3.8, "FSM States," on page 874 0x0: IDLE 0x1: LOCKED 0x2: INITIALIZE 0x3: DOWNLOAD 0x4: VERIFY 0x5: APPLY 0x6: ACTIVATE 0x7: UPLOAD 0x8: UPLOAD_PENDING 0x9: DOWNSRTEAM_DEVICE_TRANSFER Other values are reserved */ /* 0xc.0 - 0xc.3 */ u_int8_t control_state; /* Description - Indicates the successful completion of the instruction, or the reason it failed. See Section 10.3.7, "Error Handling," on page 873 0x0: OK 0x1: ERROR 0x2: REJECTED_DIGEST_ERR 0x3: REJECTED_NOT_APPLICABLE 0x4: REJECTED_UNKNOWN_KEY 0x5: REJECTED_AUTH_FAILED 0x6: REJECTED_UNSIGNED 0x7: REJECTED_KEY_NOT_APPLICABLE 0x8: REJECTED_BAD_FORMAT 0x9: BLOCKED_PENDING_RESET 0xA: REJECTED_NOT_A_SECURED_FW 0xB: REJECTED_MFG_BASE_MAC_NOT_LISTED 0xC: REJECTED_NO_DEBUG_TOKEN 0xD: REJECTED_VERSION_NUM_MISMATCH 0xE: REJECTED_USER_TIMESTAMP_MISMATCH 0xF: REJECTED_FORBIDDEN_VERSION 0x10: FLASH_ERASE_ERROR 0x11: REJECTED_REBURN_RUNNING_AND_RETRY 0x12: REJECTED_LINKX_TYPE_NOT_SUPPORTED 0x13: REJECTED_HOST_STORAGE_IN_USE 0x14: REJECTED_LINKX_TRANSFER (see module index in rejected_device_index) 0x15: REJECTED_LINKX_ACTIVATE (see module index in rejected_device_index) 0x16: REJECTED_INCOMPATIBLE_FLASH 0x17: REJECTED_TOKEN_ALREADY_APPLIED 0x18: REJECTED_FW_BURN_DRAM_NOT_AVAILABLE Other values should be treated as an unknown error. */ /* 0xc.8 - 0xc.15 */ u_int8_t error_code; /* Description - Indicates the estimated progress status of the current operation executed by the FSM. Valid values are 0..100. 101 indicates that progress reporting is not supported for this update state. */ /* 0xc.16 - 0xc.22 */ u_int8_t control_progress; /* Description - For handle_owner_type BMC, command-interface and ICMD, indicates the identifier of the host of the handle owner. Otherwise reserved */ /* 0xc.24 - 0xc.27 */ u_int8_t handle_owner_host_id; /* Description - Type of entity holding the update handle: 0x0: unspecified 0x1: Chassis BMC 0x2: MAD 0x3: BMC 0x4: command interface 0x5: ICMD Other values are reserved. */ /* 0xc.28 - 0xc.31 */ u_int8_t handle_owner_type; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Component size in bytes. Valid for UPDATE_COMPONENT instruction. Specifying the size may shorten the update time. Value 0x0 means that size is unspecified. */ /* 0x10.0 - 0x10.31 */ u_int32_t component_size; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Peripheral device type: 0: Switch_or_NIC 1: Gearbox */ /* 0x14.0 - 0x14.7 */ u_int8_t device_type; /* Description - Device number. For gearboxes, the index represents the gearbox die. For cables, the index represents the module index starting at index 1. Index 0 indicates the host device. */ /* 0x14.16 - 0x14.27 */ u_int16_t device_index; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - In multiple downstream devices action, the action will be executed starting on device_index and ending on device_index + device_index_size - 1. */ /* 0x18.0 - 0x18.11 */ u_int16_t device_index_size; /* Description - The device index that the action has been rejected to. */ /* 0x18.16 - 0x18.27 */ u_int16_t rejected_device_index; }; /* Description - */ /* Size in bytes - 144 */ struct reg_access_hca_mcda_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Update handle registered when the FSM was activated. */ /* 0x0.0 - 0x0.23 */ u_int32_t update_handle; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Offset of accessed address relative to component start. Accesses must be in accordance to log_mcda_word_size in Table 2252, "MCQI CAPABILITIES Info Layout," on page 2610 */ /* 0x4.0 - 0x4.31 */ u_int32_t offset; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Size of the data accessed, given in bytes */ /* 0x8.0 - 0x8.15 */ u_int16_t size; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Data block accessed */ /* 0x10.0 - 0x8c.31 */ u_int32_t data[32]; }; /* Description - */ /* Size in bytes - 148 */ struct reg_access_hca_mcia_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Module Status 0: SUCCESS 1: NO_EEPROM_MODULE. No response from module's EEPROM. 2: MODULE_NOT_SUPPORTED. Module type not supported by the device. 3: MODULE_NOT_CONNECTED. No module present indication. 4: MODULE_TYPE_INVALID - module is not supported by INI. 9: I2C_ERROR. Error occurred while trying to access the module's EEPROM using I2C. 16: MODULE_DISABLED - module is disabled */ /* 0x0.0 - 0x0.7 */ u_int8_t status; /* Description - Slot index 0: Main board */ /* 0x0.12 - 0x0.15 */ u_int8_t slot_index; /* Description - Module number NIC: Range 0 .. MGPIR.num_of_modules -1 */ /* 0x0.16 - 0x0.23 */ u_int8_t module; /* Description - Lock Page bit. When bit is set, FW can access the last accessed page. After boot and ISSU, default value is 0. */ /* 0x0.31 - 0x0.31 */ u_int8_t l; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Device address */ /* 0x4.0 - 0x4.15 */ u_int16_t device_address; /* Description - Page number Reserved when MCIA.l = 1 */ /* 0x4.16 - 0x4.23 */ u_int8_t page_number; /* Description - I2C device address */ /* 0x4.24 - 0x4.31 */ u_int8_t i2c_device_address; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Number of bytes to read/write (up to 128 bytes) */ /* 0x8.0 - 0x8.15 */ u_int16_t size; /* Description - Bank number */ /* 0x8.16 - 0x8.23 */ u_int8_t bank_number; /* Description - 0: password length is 4B (password_msb is reserved) 1: password length is 8B (password_msb is used) */ /* 0x8.28 - 0x8.28 */ u_int8_t passwd_length; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - The password that is written to the module password field. This field is reserved when passwd_cap is not set to 1. Reserved when module is in SW control. */ /* 0xc.0 - 0xc.31 */ u_int32_t password; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Bytes to read/write Note: some FW versions support only 12*4B See MCAM bit34 */ /* 0x10.0 - 0x8c.31 */ u_int32_t dword[32]; /*---------------- DWORD[36] (Offset 0x90) ----------------*/ /* Description - password msb Supported only when MCAM bit34 is set Supported only when passwd_cap is set Reserved when passwd_length = 0 */ /* 0x90.0 - 0x90.31 */ u_int32_t password_msb; }; /* Description - */ /* Size in bytes - 148 */ struct reg_access_hca_mcqi_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Component index gathered by "MCQS - Management Component Query Status" */ /* 0x0.0 - 0x0.15 */ u_int16_t component_index; /* Description - Device number. For gearboxes, the index represents the gearbox die. For cables, the index represents the module index starting at index 1. Index 0 indicates the host device. For Clock Source EEPROM, the index represents the Clock Source Index, starting from 1 */ /* 0x0.16 - 0x0.27 */ u_int16_t device_index; /* Description - When set, the register will return information about the pending component (if available) */ /* 0x0.31 - 0x0.31 */ u_int8_t read_pending_component; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Peripheral device type: 0: Switch / NIC 1: Gearbox */ /* 0x4.0 - 0x4.7 */ u_int8_t device_type; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Component properties set. 0x0: CAPABILITIES 0x1: VERSION 0x5: ACTIVATION_METHOD 0x6: LINKX_PROPERTIES 0x7: CLOCK_SOURCE_PROPERTIES Other values are reserved */ /* 0x8.0 - 0x8.4 */ u_int8_t info_type; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Properties set structure size, given in bytes. */ /* 0xc.0 - 0xc.31 */ u_int32_t info_size; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The requested/returned data offset from the section start, given in bytes. Must be DWORD aligned. If offset is invalid, FW will return an error. */ /* 0x10.0 - 0x10.31 */ u_int32_t offset; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - The requested/returned data size, given in bytes. If data_size is not DWORD aligned, the last bytes are zero padded. If size is invalid, FW will return an error. */ /* 0x14.0 - 0x14.15 */ u_int16_t data_size; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Properties set structure according to info_type. CAPABILITIES - See Table 2252, "MCQI CAPABILITIES Info Layout," on page 2610 VERSION - See Table 2254, "MCQI VERSION Info Layout," on page 2612 ACTIVATION_METHOD - See Table 2258, "MCQI ACTIVATION_METHOD Info Layout," on page 2614 LINKX_PROPERTIES - See Table 2260, "MCQI LINKX_PROPERTIES Info Layout," on page 2615 CLOCK_SOURCE_PROPERTIES - See Table 2262, "MCQI CLOCK_SOURCE_PROPERTIES Layout," on page 2617 */ /* 0x18.0 - 0x90.31 */ union reg_access_hca_mcqi_reg_data_auto_ext data; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_mcqs_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Component Index. Values range from 1 to the last component indicated by last_index_flag. */ /* 0x0.0 - 0x0.15 */ u_int16_t component_index; /* Description - Device number. For gearboxes, the index represents the gearbox die. For cables, the index represents the module index starting at index 1. Index 0 indicates the host device. For Clock synchronizer, index is used to represent the clock sync' device index. Starting from 1. */ /* 0x0.16 - 0x0.27 */ u_int16_t device_index; /* Description - When set, this component is the last component (highest component_index). */ /* 0x0.31 - 0x0.31 */ u_int8_t last_index_flag; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - This field uniquely identifies a specific component type. 0x1: BOOT_IMG 0x4: OEM_NVCONFIG 0x5: MLNX_NVCONFIG 0x6: CS_TOKEN 0x7: DBG_TOKEN 0xA: Gearbox 0xB: CC_ALGO - Congestion Control Algorithm 0xC: LINKX_IMG 0xD: CRYPTO_TO_COMMISSIONING 0xE: RMCS_TOKEN 0xF: RMDT_TOKEN 0x10: CRCS_TOKEN. 0x11: CRDT_TOKEN. 0x12: CLOCK_SYNC_EEPROM. Other values are reserved */ /* 0x4.0 - 0x4.15 */ u_int16_t identifier; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Component state in update flow, see Section 10.2.1, "Component Update State," on page 870: 0x0: IDLE 0x1: IN_PROGRESS 0x2: APPLIED 0x3: ACTIVE 0x4: ACTIVE_PENDING_RESET 0x5: FAILED 0x6: CANCELED 0x7: BUSY Other values are reserved */ /* 0x8.0 - 0x8.3 */ u_int8_t component_update_state; /* Description - The status of the component: 0x0: NOT_PRESENT - The component is supported by the device but, currently not present 0x1: PRESENT - This component is present. For downstream devices link LinkX component, this is an indication that the binary image is present at the host device memory. 0x2: IN_USE - The component is present and currently in use. */ /* 0x8.4 - 0x8.8 */ u_int8_t component_status; /* Description - Progress in percentage (from 0 to 100). This field is only relevant for cables. */ /* 0x8.9 - 0x8.15 */ u_int8_t progress; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Peripheral device type: 0: Switch_or_NIC 1: Gearbox */ /* 0xc.0 - 0xc.7 */ u_int8_t device_type; /* Description - For last_update_state_changer_type BMC, command-interface and ICMD, indicates the identifier of the host of the handle owner. Otherwise reserved. */ /* 0xc.24 - 0xc.27 */ u_int8_t last_update_state_changer_host_id; /* Description - Indicates which entity was the last to change the component_update_state of this component. 0x0: unspecified 0x1: Chassis_BMC 0x2: MAD 0x3: BMC 0x4: command_interface 0x5: ICMD Other values are reserved */ /* 0xc.28 - 0xc.31 */ u_int8_t last_update_state_changer_type; }; /* Description - */ /* Size in bytes - 268 */ struct reg_access_hca_mfba_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash select - selects the flash device. Only zero is supported for NICs with a single flash device Range between 0 .. MFPA.flash_num -1 */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /* Description - Capability bit - If set to '1', address field is 32 bit length. */ /* 0x0.31 - 0x0.31 */ u_int8_t add_cap_32b; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The size of the data to be written or read in bytes Should comply with block_size and block_alignment fields in MFPA. */ /* 0x4.0 - 0x4.8 */ u_int16_t size; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The start address of this read or write access in bytes. Should comply with block_size and block_alignment fields in MFPA. */ /* 0x8.0 - 0x8.31 */ u_int32_t address; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - The data to be written or read data. */ /* 0xc.0 - 0x108.31 */ u_int32_t data[64]; }; /* Description - */ /* Size in bytes - 12 */ struct reg_access_hca_mfbe_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash select - selects the flash device. Only zero is supported for NICs with a single flash device. Range between 0 .. MFPA.flash_num -1 */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /* Description - Erase a 64KB flash area in one bulk operation. */ /* 0x0.29 - 0x0.29 */ u_int8_t bulk_64kb_erase; /* Description - Erase a 32KB flash area in one bulk operation. */ /* 0x0.30 - 0x0.30 */ u_int8_t bulk_32kb_erase; /* Description - Capability bit - If set to '1', address field is 32 bit length. */ /* 0x0.31 - 0x0.31 */ u_int8_t add_cap_32b; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The start address (in bytes) of this erase operation. Must be aligned with the selected erase size (sector, 32KB or 64KB). */ /* 0x8.0 - 0x8.31 */ u_int32_t address; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_hca_mfpa_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash select - selects the flash device. Only zero is supported for NICs with a single flash device. Range between 0 .. flash_num -1 */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /* Description - Capability bit - If set to '1', boot_address field is 32 bit length. */ /* 0x0.31 - 0x0.31 */ u_int8_t add_cap_32b; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The flash address from which the firmware will boot in the next reset (warm start). */ /* 0x4.0 - 0x4.31 */ u_int32_t boot_address; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The number of flash devices1: there is 1 flash device, etc. */ /* 0x10.0 - 0x10.3 */ u_int8_t flash_num; /* Description - If set, MFMC register supports setting write protect with sub-sector- blocks Sub-sector block size is available in MFMC.sub_sector_protect_size */ /* 0x10.16 - 0x10.16 */ u_int8_t sub_sector_wrp_en; /* Description - If set, MFMC register supports setting write protect with sector blocks. Sector block size is available in MFMC.sector_protect_size */ /* 0x10.17 - 0x10.17 */ u_int8_t sector_wrp_en; /* Description - If set, MFBE register supports 64KB bulk erase operation. */ /* 0x10.29 - 0x10.29 */ u_int8_t bulk_64kb_erase_en; /* Description - If set, MFBE register supports 32KB bulk erase operation. */ /* 0x10.30 - 0x10.30 */ u_int8_t bulk_32kb_erase_en; /* Description - Work In Progress. Indicates that the flash is currently busy. */ /* 0x10.31 - 0x10.31 */ u_int8_t wip; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Return the flash JEDEC ID value returned by the standard Read JEDEC ID command that is available in most flash devices. */ /* 0x14.0 - 0x14.23 */ u_int32_t jedec_id; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - The minimal unit that can be erased with and MFBE command (in bytes). */ /* 0x18.0 - 0x18.9 */ u_int16_t sector_size; /* Description - Log 2 of the requested write alignment in bytes. Write access to the flash must not cross this alignment. Read and write access must be aligned to this value. */ /* 0x18.16 - 0x18.23 */ u_int8_t block_alignment; /* Description - The block size in byes of the flash device, max read size for MFBA (typically 128 bytes). */ /* 0x18.24 - 0x18.31 */ u_int8_t block_size; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Bitmask indicates which capabilities are supported. Bit 15..0: reserved Bit 16: Set write protect supported (register MFMC supports setting write protection) Bit 17: quad enable read write is supported (register MFMC supports setting quad enable) Bit 18: set dummy cycle supported (register MFMC supports setting dummy cycles) */ /* 0x1c.0 - 0x1c.31 */ u_int32_t capability_mask; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_mfrl_reg_ext { /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The firmware reset trigger. Only a single bit may be set. Bit 0: TRIGGER0 (live-patch, embedded CPU shut down/reset) Bit 3: TRIGGER3 (PCIe link toggle) Bit 6: TRIGGER6 (PERST) Other bits are reserved. */ /* 0x4.0 - 0x4.7 */ u_int8_t reset_trigger; /* Description - Each bit represents a chip reset type. If set to '1', the reset is supported. Bit 0: Full chip reset Bit 1: Keep network port active during reset Bit 3: ARM only reset [DWIP] Bit 4: ARM OS shut down [DWIP] */ /* 0x4.8 - 0x4.15 */ u_int8_t reset_type; /* Description - Reset state. 0: IDLE 1: Negotiation in progress 2: Reset in progress 3: Error - Negotiation timeout 4: Error - Negotiation dis-acknowledgment 5: Error- driver unload timeout [DWIP] 6: Error- ARM OS is up, please shut down 7: ARM OS shut down in progress 8-15: Reserved */ /* 0x4.16 - 0x4.19 */ u_int8_t reset_state; /* Description - [DWIP]: Pcie Bridge has leaf DSP */ /* 0x4.20 - 0x4.20 */ u_int8_t pci_leaf_dsp_exist; /* Description - When set the host commits all drivers, traffic and flow through the Pcie-switch were removed, by the Host. This field is valid only at Single Host Topology. */ /* 0x4.21 - 0x4.21 */ u_int8_t pci_leaf_dsp_traffic_dis_commited; /* Description - The requested reset type. */ /* 0x4.24 - 0x4.26 */ u_int8_t rst_type_sel; /* Description - Response of the driver for the reset request. 1: Acknowledgment 2: Dis-acknowledgment 3: Reserved */ /* 0x4.27 - 0x4.28 */ u_int8_t pci_sync_for_fw_update_resp; /* Description - Setting this bit to '1' will request a synced driver flow and '0' for the legacy flow. Synced driver flow will not require to issue MFRL command from other hosts (x86 / ARM for SoC) */ /* 0x4.29 - 0x4.29 */ u_int8_t pci_sync_for_fw_update_start; /* Description - Setting this bit to 1 indicates a need of rescan for the corresponding PCI slot */ /* 0x4.31 - 0x4.31 */ u_int8_t pci_rescan_required; }; /* Description - */ /* Size in bytes - 48 */ struct reg_access_hca_mfsv_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - When this bit is set, it indicates that it is allowed for the boot FW to program the FW security version related EFUSEs if needed. This bit is not relevant in case the FW operates in an automatically EFUSEs programming approach (set in the INI file). Once set to 1, this configuration will be relevant only for the upcoming boot, thus this configuration will be set back to 0 upon next boot. In addition, once this bit was set to 1 there is no option to clear it. option to clear it. In addition, once this bit was set to 1, there is no option to clear it. */ /* 0x0.0 - 0x0.0 */ u_int8_t efuses_prog_en; /* Description - Firmware security version status.0: EFUSEs value is equal to the currently running FW image value. No change is needed.1: EFUSEs value is smaller than the currently running FW image value. An update to the EFUSEs is required.2-3: Reserved */ /* 0x0.1 - 0x0.2 */ u_int8_t fw_sec_ver_stat; /* Description - EFUSEs programming method.0: manually. Upon boot, if FW indicates that FW_sec_ver_stat is 1 and only if EFUSEs_prog_en is 1, it will program the EFUSEs as needed.1: automatically. Upon boot, if FW indicates that FW_sec_ver_stat is 1, it will program the EFUSEs as needed. */ /* 0x0.3 - 0x0.3 */ u_int8_t efuses_prog_method; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Image security version value */ /* 0x4.0 - 0x4.31 */ u_int32_t img_sec_ver; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - EFUSEs security version value */ /* 0x8.0 - 0x8.31 */ u_int32_t efuses_sec_ver; }; /* Description - */ /* Size in bytes - 160 */ struct reg_access_hca_mgir_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Hardware Information, see Table 2276, "Hardware Info Layout," on page 2628 */ /* 0x0.0 - 0x1c.31 */ struct reg_access_hca_mgir_hardware_info_ext hw_info; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - Firmware Information, see Table 2279, "Firmware Info Layout," on page 2631 */ /* 0x20.0 - 0x5c.31 */ struct reg_access_hca_mgir_fw_info_ext fw_info; /*---------------- DWORD[24] (Offset 0x60) ----------------*/ /* Description - Software Information, see Table 2281, "Software Info Layout," on page 2633 This field indicates the oldest software version compatible with the current firmware */ /* 0x60.0 - 0x7c.31 */ struct reg_access_hca_mgir_sw_info_ext sw_info; /*---------------- DWORD[32] (Offset 0x80) ----------------*/ /* Description - Development Information, see Table 2285, "Development Info Layout," on page 2637 */ /* 0x80.0 - 0x98.31 */ struct reg_access_hca_mgir_dev_info_ext dev_info; }; /* Description - */ /* Size in bytes - 12 */ struct reg_access_hca_mmdio_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0 - NOP 1 - Address (reserved for Clause 22) 2 - Read 3 - Write 4 - Post Read Increment Address (reserved for Clause 22) 6 - Address + Read - Generates Address cycle and then Read cycle in Clause 45 (reserved for Clause 22) 7 - Address + Write - Generates Address cycle and then Write cycle in Clause 45 (reserved for Clause 22) */ /* 0x0.0 - 0x0.2 */ u_int8_t operation; /* Description - MDIO Definition: 0 - Clause 22 1 - Clause 45 */ /* 0x0.8 - 0x0.9 */ u_int8_t clause; /* Description - Selection of the MDIO interface */ /* 0x0.16 - 0x0.19 */ u_int8_t mdio_index; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Reg Address (Clause 22) / Dev Type (Clause 45) */ /* 0x4.0 - 0x4.4 */ u_int8_t reg_adr; /* Description - PHY Address (PHYAD) */ /* 0x4.8 - 0x4.12 */ u_int8_t phy_adr; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Data (Clause 22) / Address/Data (Clause 45) */ /* 0x8.0 - 0x8.15 */ u_int16_t data; /* Description - Address (Clause 45) This field is only valid for Address + Read and Address + Write operations, providing the address. For other Clause 45 operations the data field provides the address when appropriate. */ /* 0x8.16 - 0x8.31 */ u_int16_t address; }; /* Description - */ /* Size in bytes - 12 */ struct reg_access_hca_mnvdi_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x8.31 */ struct reg_access_hca_config_item_ext configuration_item_header; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_mnvgc_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0:unsupported 1: supported */ /* 0x0.0 - 0x0.0 */ u_int8_t nvda_read_factory_settings; /* Description - NVDA Read current settings. Indicates if reading the current settings by NVDA is supported. 0: unsupported 1: supported */ /* 0x0.1 - 0x0.1 */ u_int8_t nvda_read_current_settings; /* Description - When set, TLVs of other hosts may be modified. */ /* 0x0.2 - 0x0.2 */ u_int8_t priv_nv_other_host; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_mnvia_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Information targeted for invalidation 0: ALL - all NVRAM parameters. All other values are reserved. */ /* 0x0.0 - 0x0.2 */ u_int8_t target; /* Description - The entity which perform the invalidate. The encoding same as writer_id in Configuration Item register (See Table 2335, "Configuration Item Header Layout," on page 2671). */ /* 0x0.4 - 0x0.8 */ u_int8_t writer_id; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_mnvqc_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Configuration item type according to its class. Table 2337, "Configuration Item Data Type Class Global Layout," on page 2675 Table 2339, "Configuration Item Data Type Class Physical Port Layout," on page 2675 Table 2341, "Configuration Item Data Type Class Per Host-PF Layout," on page 2676 Table 2343, "Configuration Item Data Type Class Log Layout," on page 2676 Table 2345, "Configuration Item Data Type Class File Layout," on page 2677 Table 2347, "Configuration Item Data Type Class Host Layout," on page 2677 Table 2349, "Configuration Item Data Type Class Module Layout," on page 2678 */ /* 0x0.0 - 0x0.31 */ u_int32_t type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The configuration item is supported and can be read */ /* 0x4.0 - 0x4.0 */ u_int8_t support_rd; /* Description - The configuration item is supported and can be updated */ /* 0x4.1 - 0x4.1 */ u_int8_t support_wr; /* Description - The maximal version of the configuration item supported by the device */ /* 0x4.4 - 0x4.7 */ u_int8_t version; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_mpcir_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - If set to '01', activates the flow of preparation for FW ISSU, on all services. The values in op-codes for "per-service" are ignored. If set to '10', returns to operational state on all services. The values in op-codes for "per-service" are ignored. 11 - Reserved */ /* 0x0.30 - 0x0.31 */ u_int8_t all; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - For each of the services, the following operations are available: 0: N/A (no action) 1: start preparation flow for FW ISSU 2: return to operational service (end of FW ISSU flow) 3: get status When set to '3', the current status will appear in corresponding _stat fields. */ /* 0x4.0 - 0x4.1 */ u_int8_t ports; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Status for each of the services. 0: not in FW ISSU flow state (FW ISSU flow is not initiated) 1: done with preparations for FW ISSU flow 2: Preparation for FW ISSU flow started but FW still not done service handling [Internal]: busy with some other critical flow). */ /* 0xc.0 - 0xc.1 */ u_int8_t ports_stat; }; /* Description - */ /* Size in bytes - 44 */ struct reg_access_hca_mpegc_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - the node within each depth. */ /* 0x0.8 - 0x0.15 */ u_int8_t node; /* Description - PCIe index number (Internal domain index) Reserved when access is from the host */ /* 0x0.16 - 0x0.23 */ u_int8_t pcie_index; /* Description - depth level of the DUT of some hierarchy */ /* 0x0.24 - 0x0.29 */ u_int8_t depth; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Field select indicated which writable fields to modify. Bit 0: tx_lossy_overflow_oper Bit 1 : outbound_stalled_reads_th Bit 2 :outbound_stalled_writes_th Bit 3 : tx_overflow_sense Bit 4 : mark_tx_action_cqe Bit 5 : mark_tx_action_cnp Bit 6: virtual_hot_plug_unplug (supported only for internal host) */ /* 0x4.0 - 0x4.15 */ u_int16_t field_select; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - When overflow encountered for lossy packets, it will be dropped or marked and will be counted in "tx_overflow_buffer_dropped_pkt" or "tx_overflow_buffer_marked_pkt" counter. 00 - Disabled 01 - drop - overflow traffic will be dropped. 10 - mark - overflow traffic will be marked in the CE field in the CqE. Supported only when MCAM.mark_tx_action_cqe or MCAM.mark_tx_action_cnp are '1'. */ /* 0x8.0 - 0x8.1 */ u_int8_t tx_lossy_overflow_oper; /* Description - When this bit is set, the marking action will be generating a CNP for RoCE traffic. Supported only when MCAM.mark_tx_action_cnp is '1'. */ /* 0x8.29 - 0x8.29 */ u_int8_t mark_cnp; /* Description - When this bit is set, the marking action will be set in the CqE for TCP traffic. Supported only when MCAM.mark_tx_action_cqe is '1'. */ /* 0x8.30 - 0x8.30 */ u_int8_t mark_cqe; /* Description - Set the sensibility level of the tx overflow mechanism. 0 - Aggressive 1 - Dynamic adjustment. When tx_lossy_overflow_oper is disabled, tx_overflow_sense must be disabled. Supported only when MCAM.dynamic_tx_oveflow is '1'. */ /* 0x8.31 - 0x8.31 */ u_int8_t tx_overflow_sense; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Each time that the counter outbound_stalled_writes will exceed this threshold, will be counted in the counter outbound_stalled_writes_events - range 0 100. */ /* 0xc.0 - 0xc.6 */ u_int8_t outbound_stalled_writes_th; /* Description - Each time that the counter outbound_stalled_reads will exceed this threshold, will be counted in the counter outbound_stalled_reads_events - range 0 100. */ /* 0xc.8 - 0xc.14 */ u_int8_t outbound_stalled_reads_th; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Operation to perform 0: Idle - no operation required (default) 1: Emulate hot removal 2: Emulate hot insertion 3-15: Reserved */ /* 0x10.16 - 0x10.19 */ u_int8_t operation; /* Description - Operation completion status 0: Operation in process 1: Unplugged 2: Plugged 3: Warning - disconnecting an already disconnected bus cannot be performed 4: Warning - connecting an already connected bus cannot be performed 5: Error - unknown bus number or no device installed on selected bus */ /* 0x10.24 - 0x10.31 */ u_int8_t status; }; /* Description - */ /* Size in bytes - 24 */ struct reg_access_hca_mqis_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Type of information string to be queried: 0x0: VPD - Read the PCI Vital Product Data capability content. 0x1: MODEL_NAME 0x2: MODEL_DESCRIPTION 0x3: IMAGE_VSD 0x4: DEVICE_VSD 0x5: ROM_INFO other values are reserved. */ /* 0x0.0 - 0x0.7 */ u_int8_t info_type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Total size of the information string, according to info_type. Value given in bytes. */ /* 0x4.0 - 0x4.15 */ u_int16_t info_length; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Number of bytes requested. The device returns the number of bytes actually read. */ /* 0x8.0 - 0x8.15 */ u_int16_t read_length; /* Description - Offset in bytes of the first byte requested to read. */ /* 0x8.16 - 0x8.31 */ u_int16_t read_offset; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Information string accessed, according to info_type. If the information is not available, a NULL string is returned. */ /* 0x10.24 - 0x18.23 */ u_int8_t info_string[8]; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_mrsi_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - [NIC_Only] 0: Main 1: Embedded CPU Reserved when Switches */ /* 0x0.0 - 0x0.3 */ u_int8_t device; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Reset/shutdown reason 0: cold reset - A reset triggered following application of power to the component. 1: warm reset - A reset triggered without removal and re-application of power to the device */ /* 0x4.0 - 0x4.3 */ u_int8_t reset_reason; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Timestamp (number of clock cycles) since last cold reset */ /* 0x8.0 - 0xc.31 */ u_int64_t crts; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_mtcap_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Number of ASIC+platform sensors supported by the device This includes the ASIC and the ambient sensors. Module sensors are not included. This actually is equal to sum of all '1' in sensor_map Range 1..64 Known sensors: 0: current asic temp, FW exposes current max(all diode temp sensors) 1..63: ambient, supported only for unmanaged switch, defined by ini 64..127: modules (not exposed by this field) */ /* 0x0.0 - 0x0.6 */ u_int8_t sensor_count; /* Description - Slot index 0: Main board */ /* 0x0.16 - 0x0.19 */ u_int8_t slot_index; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Number of sensors supported by the device that are on the ASIC. Exposes how many ASIC diodes exist. The FW exposes all of them as sensor[0] */ /* 0x4.0 - 0x4.6 */ u_int8_t internal_sensor_count; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Mapping of system sensors supported by the device. Only ASIC and ambient sensors are supported. Each bit represents a sensor. Per bit: 0: Not_connected_or_not_supported 1: Supports_temperature_measurements */ /* 0x8.0 - 0xc.31 */ u_int64_t sensor_map; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_hca_mtdc_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Tracer writing to PCI is limited.When this mode is enable, the hw tracer pointer cannot override the software read index pointer.If software will not update the read index pointer, new events will fall and will not be sent. 0: NA - ignored, does not perform any operation 1: Enable 2: Disable */ /* 0x0.0 - 0x0.1 */ u_int8_t tracer_limit_en; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The lsb of the address for the cyclic buffer in the host memory. */ /* 0x8.0 - 0x8.31 */ u_int32_t tlb_addr_msb; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - The lsb of the for the cyclic buffer address in the host memory. */ /* 0xc.12 - 0xc.31 */ u_int32_t tlb_addr_lsb; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Pointer of the current hw index the tracer is writing to. */ /* 0x10.0 - 0x10.31 */ u_int32_t hw_pointer; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Pointer to the last tracer event index that the software consumed. */ /* 0x14.0 - 0x14.31 */ u_int32_t sw_pointer; }; /* Description - */ /* Size in bytes - 48 */ struct reg_access_hca_mteim_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Number of processors per tile ASIC. */ /* 0x0.0 - 0x0.7 */ u_int8_t cap_core_tile; /* Description - Number of processors in the main ASIC. */ /* 0x0.8 - 0x0.15 */ u_int8_t cap_core_main; /* Description - Number of processors in the DPA unit. */ /* 0x0.16 - 0x0.23 */ u_int8_t cap_core_dpa; /* Description - Number of tiles per device. For devices without tiles (only main ASIC), this field should be '0'. */ /* 0x0.24 - 0x0.31 */ u_int8_t cap_num_of_tile; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Processor type. 0: N/A 1: IRISC 2: RISC5 Else: Reserved */ /* 0x4.0 - 0x4.3 */ u_int8_t type_core_tile; /* Description - Processor type. 0: N/A 1: IRISC 2: RISC5 Else: Reserved */ /* 0x4.4 - 0x4.7 */ u_int8_t type_core_main; /* Description - Processor type. 0: N/A 1: IRISC 2: RISC5 Else: Reserved */ /* 0x4.8 - 0x4.11 */ u_int8_t type_core_dpa; /* Description - Indicates wether Phy_UC tracers mapping are supported by the device FW. When set, The event_id of the Phy UC of the instance will be calculated by first_tile/main _core _event_id[i] + cap_core_tile/main. When clear the Phy UC will be ignored. */ /* 0x4.30 - 0x4.30 */ u_int8_t is_phy_uc_supported; /* Description - When set to '1', the device supports dwsn_msb bit within the FW trace layout. */ /* 0x4.31 - 0x4.31 */ u_int8_t is_dwsn_msb_supported; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The mapping for the rest of the DPA ASIC processors are sequential and the mapping is defined as: processor[x]=first_dpacore_event_id+x */ /* 0x8.16 - 0x8.23 */ u_int8_t first_dpa_core_event_id; /* Description - The mapping for the rest of the main ASIC processors are sequential and the mapping is defined as: processor[x]=first_main_core_event_id+x */ /* 0x8.24 - 0x8.31 */ u_int8_t first_main_core_event_id; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - The mapping for the rest of the tile[y] ASIC processors are sequential and the mapping is defined as: processor[x]=first_tile_core_event_id[y]+x */ /* 0xc.24 - 0x14.23 */ u_int8_t first_tile_core_event_id[8]; }; /* Description - */ /* Size in bytes - 48 */ struct reg_access_hca_mtie_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Enable/Disable all FW tracer initiator and ignore mask. Starts from bit 0. 0: Use bit mask 1: Enable all 2: Disable all */ /* 0x0.0 - 0x0.1 */ u_int8_t enable_all; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Adding delay to log events in usecs */ /* 0x4.0 - 0x4.15 */ u_int16_t log_delay; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Bit mask of all the possible tracer initiators. Reserved when enable_all != 0. The mapping of source id to HW unit is unique per device and can be fetched from FW code. */ /* 0x10.0 - 0x2c.31 */ u_int32_t source_id_bitmask[8]; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_mtim_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The verbosity of the log. 0: LOG_DEBUG 1: LOG_INFO 2: LOG_WARNING 3: LOG_ERROR The lower value reflects higher verbosity than higher value. e.g: LOG_INFO contains LOG_WARNING and LOG_ERROR */ /* 0x0.0 - 0x0.3 */ u_int8_t log_level; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Bit mask of the different FW units that can be activated for the FW log. The mapping of source id to FW unit is unique per device and can be fetched from FW code. */ /* 0x4.0 - 0x4.31 */ u_int32_t log_bit_mask; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_hca_mtmp_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Sensors index 0: current asic temp, FW exposes current max(all diode temp sensors) 1..62: ambient, supported only for unmanaged switch, defined by ini 64..255: modules 256..288: Gearbox 289..704: reserved for future */ /* 0x0.0 - 0x0.11 */ u_int16_t sensor_index; /* Description - Slot index 0: Main board */ /* 0x0.16 - 0x0.19 */ u_int8_t slot_index; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Temperature reading from the sensor. Units of 0.125 Celsius degrees. For negative values 2's complement is used (for example: -3.25 Celsius will read as 0xFFE6) */ /* 0x4.0 - 0x4.15 */ u_int16_t temperature; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The highest measured temperature from the sensor. Reserved when mte = 0 Cleared by mtr = 1 Valid only when i = 0 */ /* 0x8.0 - 0x8.15 */ u_int16_t max_temperature; /* Description - Shut Down Events Modify Set Enable: 0: all fields are set 1: only sdee field is set, all other fields reserved */ /* 0x8.28 - 0x8.28 */ u_int8_t sdme; /* Description - Warning Events Modify Set Enable: 0: all fields are set 1: only tee field is set, all other fields reserved */ /* 0x8.29 - 0x8.29 */ u_int8_t weme; /* Description - Max Temperature Reset: 0: do not modify the value of the max temperature register 1: clear the value of the max temperature register */ /* 0x8.30 - 0x8.30 */ u_int8_t mtr; /* Description - Max Temperature Enable: 0: disable measuring the max temperature on a sensor 1: enables measuring the max temperature on a sensor */ /* 0x8.31 - 0x8.31 */ u_int8_t mte; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - temperature_threshold_hi refers to the high threshold of Warning Event. If the sensor temperature measurement is above the threshold (and events are enabled), an event will be generated. threshold_hi and threshold_lo implements hysteresis mechanism of the threshold preventing toggling of the indication. Note that temperature_threshold_hi must be equal or lower than the system requirement. System requirement for module is the module warning temperature. System requirement for board/silicon sensors is according to product information parameters Note that the temperature threshold can be used to generate an event message or an interrupt using GPIO */ /* 0xc.0 - 0xc.15 */ u_int16_t temperature_threshold_hi; /* Description - Temperature Shut Down Event Enable (MTSDE Register) 0: do_not_generate_event 1: generate_event 2: generate_single_event Supported in downstream devices (devices on slots). */ /* 0xc.28 - 0xc.29 */ u_int8_t sdee; /* Description - Temperature Warning Event Enable (MTEWE Register) 0: do_not_generate_event 1: generate_event 2: generate_single_event */ /* 0xc.30 - 0xc.31 */ u_int8_t tee; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - temperature_threshold_lo refers to the low threshold of Warning Event. The offset threshold_lo implements the lower threshold for the hysteresis mechanism of over temperature alert. Once alert is set, if the temperature goes below this threshold, the alert is cleared. Note that temperature_threshold_lo must be at least 5 degrees lower than temperature_threshold_hi */ /* 0x10.0 - 0x10.15 */ u_int16_t temperature_threshold_lo; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Sensor Name 8 character long sensor name */ /* 0x18.0 - 0x18.31 */ u_int32_t sensor_name_hi; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Sensor Name 8 character long sensor name */ /* 0x1c.0 - 0x1c.31 */ u_int32_t sensor_name_lo; }; /* Description - */ /* Size in bytes - 132 */ struct reg_access_hca_mtrc_cap_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Number of different string sections building the database */ /* 0x0.0 - 0x0.3 */ u_int8_t num_string_db; /* Description - Indicates the version of the tracing mechanism. See Section 25.3.4.1, "Timestamp Event Traces", on page 1598 0x0: VER_0 0x1: VER_1 Other values are reserved. Reserved in Switch */ /* 0x0.24 - 0x0.25 */ u_int8_t trc_ver; /* Description - When set the device supports logging traces to memory 0: FIFO Mode 1: Host Memory Mode */ /* 0x0.30 - 0x0.30 */ u_int8_t trace_to_memory; /* Description - Write 0x1 to register for tracer ownership, write 0x0 to de-register. Read value 0x1 indicates tracer ownership is granted. Reserved in Switch */ /* 0x0.31 - 0x0.31 */ u_int8_t trace_owner; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The number of consecutive event_id that should be interpreted as a string trace */ /* 0x4.16 - 0x4.23 */ u_int8_t num_string_trace; /* Description - The lowest event_id that should be interpreted as a string trace */ /* 0x4.24 - 0x4.31 */ u_int8_t first_string_trace; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Log 2 of the maximal size of the trace buffer given in units of 4KB */ /* 0x8.0 - 0x8.7 */ u_int8_t log_max_trace_buffer_size; /* Description - Tracer suppported capbailities bitmask: 0: FIFO. 1: MEM mode. else, reserved. */ /* 0x8.30 - 0x8.31 */ u_int8_t tracer_capabilities; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - String DB section parameters. */ /* 0x10.0 - 0x4c.31 */ struct reg_access_hca_string_db_parameters_ext string_db_param[8]; }; /* Description - */ /* Size in bytes - 128 */ struct reg_access_hca_mtrc_conf_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Tracing mode 0x0: FIFO 0x1: TRACE_TO_MEMORY Other values are reserved. */ /* 0x0.0 - 0x0.3 */ u_int8_t trace_mode; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Log 2 of the Size of the trace buffer, given in units of 4KB. Value should not exceed log_max_trace_buffer_size. Valid only for trace_mode TRACE_TO_MEMORY. Modifying this parameter after the tracer was active may cause loss of sync regarding the location of the next trace. */ /* 0x4.0 - 0x4.7 */ u_int8_t log_trace_buffer_size; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - MKey registered for the trace buffer access. Valid only for trace_mode TRACE_TO_MEMORY. Modifying this parameter after the tracer was active may cause loss of sync regarding the location of the next trace. Reserved for Switches. */ /* 0x8.0 - 0x8.31 */ u_int32_t trace_mkey; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_mtrc_ctrl_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Field select indicated which writable fields to modify bit 0: trace_status Other bits are reserved. */ /* 0x0.0 - 0x0.15 */ u_int16_t modify_field_select; /* Description - When set, an event will be generated if new Tracer events were logged since last event. Reserved in Switches. */ /* 0x0.27 - 0x0.27 */ u_int8_t arm_event; /* Description - Current status of the tracer 0x0: DISABLED - logging traces is stopped 0x1: ACTIVE - logging traces is active */ /* 0x0.30 - 0x0.31 */ u_int8_t trace_status; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - MSB of the current timesatmp counter */ /* 0x8.0 - 0x8.20 */ u_int32_t current_timestamp_52_32; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - LSB of the current timesatmp counter */ /* 0xc.0 - 0xc.31 */ u_int32_t current_timestamp_31_0; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_hca_mtrc_stdb_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The number of bytes to read from the String DB. The number of bytes must: Be a multiple of 64B Not exceed the String DB section (with start_offset) Not exceed the limitations defined by the medium carrying the Register. */ /* 0x0.0 - 0x0.23 */ u_int32_t read_size; /* Description - The section of the String DB being accessed */ /* 0x0.28 - 0x0.31 */ u_int8_t string_db_index; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The offset in the String DB to read from, given in Bytes. The offset must: Be a multiple of 64B Not exceed the String DB section (with read_size) */ /* 0x4.0 - 0x4.31 */ u_int32_t start_offset; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Strings from the database. The size of this field is defined by read_size */ /* 0x8.0 - 0x8.31 */ u_int32_t *string_db_data; }; /* Description - */ /* Size in bytes - 128 */ struct reg_access_hca_nic_cap_ext_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Indicates which capabiltiy group is accessed. 0x1: DPA_CAP */ /* 0x0.16 - 0x0.31 */ u_int16_t cap_group; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Capability information according to cap_group. For DPA_CAP See Table 1440, "DPA_CAP Capability Layout," on page 1722 */ /* 0x10.0 - 0x7c.31 */ u_int32_t cap_data[28]; }; /* Description - */ /* Size in bytes - 768 */ struct reg_access_hca_nic_dpa_eu_partition_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - DPA EU partition id For WRITE method with operation CREATE this field is RO and provides the newly created EU partition ID. For other method/operation, this field is an index to a valid EU partition */ /* 0x0.0 - 0x0.15 */ u_int16_t eu_partition_id; /* Description - Operation performed for WRITE method: 0x0: CRETAE - create a new partition 0x1: MODIFY - change the parameters of an existing partition, absed on modify_field_select 0x2: DESTROY - destroy an existing partition other values are reserved. */ /* 0x0.28 - 0x0.30 */ u_int8_t operation; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Bitmask indicating which parameter is modified by MODIFY operation. Set bit indicates the field should be updated. bit 0: member_mask bit 1: max_num_eug bit 2: num_vhca_id_and_vhca_id other bits are reserved. For Query method, set bit indicates the relevant modification is supported */ /* 0x4.0 - 0x4.31 */ u_int32_t modify_field_select; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - The maximal number of groups allowed for EUs in the partition */ /* 0x8.0 - 0x8.15 */ u_int16_t max_num_eug; /* Description - The number of valid entries in vhca_id array. Value must not exceed DPA_CAP,max_num_partition_vhca_id */ /* 0x8.16 - 0x8.23 */ u_int8_t num_vhca_id; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - Bitmask indicating which EUs are members of the partition. Set bit indicates the respective EU is a member. EU partitions may not overlap, and EUs beyond DPA_CAP.max_num_dpa_eu are reserved. */ /* 0x40.0 - 0xbc.31 */ u_int32_t member_mask[32]; /*---------------- DWORD[48] (Offset 0xc0) ----------------*/ /* Description - Array of VHCA IDs indicating which functions are allowed to use this partition. Array size is determined by num_vhca_id, entries with index num_vhca_id or higher are reserved. */ /* 0xc0.16 - 0x2c0.15 */ u_int16_t vhca_id[256]; }; /* Description - */ /* Size in bytes - 256 */ struct reg_access_hca_nic_dpa_eug_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - DPA EUG id For WRITE method with operation CREATE this field is RO and provides the newly created EUG. For other method/operation, this field is an index to a valid EUG */ /* 0x0.0 - 0x0.15 */ u_int16_t eug_id; /* Description - Operation performed for WRITE method: 0x0: CRETAE - create a new DPA EUG 0x1: MODIFY - change the members of an existing DPA EUG 0x2: DESTROY - destroy an existing DPA EUG other values are reserved. */ /* 0x0.28 - 0x0.30 */ u_int8_t operation; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Bitmask indicating which parameter is modified by MODIFY operation. Set bit indicates the field should be updated. bit 0: member_mask other bits are reserved. For Query method, set bit indicates the relevant modification is supported */ /* 0x4.0 - 0x4.31 */ u_int32_t modify_field_select; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - EUG name (ASCII string) */ /* 0x10.0 - 0x1c.31 */ u_int32_t eug_name[4]; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - Bitmask indicating which EUs are members of the group. Set bit indicates the respective EU is a member. EUGs may not overlap, and EUs beyond NIC_CAP_EXT_REG.max_num_dpa_eu are reserved. */ /* 0x40.0 - 0xbc.31 */ u_int32_t member_mask[32]; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - dpa_process object id. 0xffffffff: Applies to all processes (all processes are not valid in read) */ /* 0x0.0 - 0x0.31 */ u_int32_t dpa_process_id; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - vhca_id where the process is created */ /* 0x4.0 - 0x4.15 */ u_int16_t other_vhca_id; /* Description - Selects the sampling type. Supported types are indicated byNIC_CAP_EXT.dpa_perf_sample_type 0x0: CUMMULATIVE_EVENT 0x1: EVENT_TRACER Other values are reserved */ /* 0x4.24 - 0x4.26 */ u_int8_t sample_type; /* Description - If set, other_vhca_id field is valid. Otherwise, use the process on my vhca_id */ /* 0x4.27 - 0x4.27 */ u_int8_t other_vhca_id_valid; /* Description - Process performance counting state. 0x0: UNCHANGED 0x1: ACTIVE 0x2: INACTIVE 0x3: RESET_COUNTERS - reset saved counters. After reset, sampler will switch to inactive state. Other values are reserved */ /* 0x4.30 - 0x4.31 */ u_int8_t count_state; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_paos_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Port operational state: 1: up 2: down 4: down_by_port_failure - (transitioned by the hardware) */ /* 0x0.0 - 0x0.3 */ u_int8_t oper_status; /* Description - Reserved for non-planarized port. Plane port index of the aggregated port. A value of 0 refers to the aggregated port only. */ /* 0x0.4 - 0x0.7 */ u_int8_t plane_ind; /* Description - Port administrative state (the desired state of the interface): 1: up 2: down_by_configuration 3: up_once - if the port goes up and then down, the operational status should go to "down by port failure" and can only go back up upon explicit command 4: disabled_by_system - this mode cannot be set by the software, only by the hardware. 6: sleep - can be configured only if sleep_cap is set [Internal] opcode 5 is used only in NIC, for fast link up drivers after device boot. For most usecase the rate will be SDR, lowest rate support in IB systems. [Internal] - up_once shall not be used for GPU case. In order to define link down state set PLDS register */ /* 0x0.8 - 0x0.11 */ u_int8_t admin_status; /* Description - Local port number [9:8] */ /* 0x0.12 - 0x0.13 */ u_int8_t lp_msb; /* Description - Local port number. */ /* 0x0.16 - 0x0.23 */ u_int8_t local_port; /* Description - For HCA: must always be 0. Switch partition ID with which to associate the port. Switch partitions are numbered from 0 to 7 inclusively. The swid field is only valid when the local_port is the router port. In this case, the swid indicates which of the router ports to configure/query. */ /* 0x0.24 - 0x0.31 */ u_int8_t swid; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Event generation on operational state change (oper_status): 0: Do_not_generate_event 1: Generate_Event 2: Generate_Single_Event Not Supported for HCA. */ /* 0x4.0 - 0x4.1 */ u_int8_t e; /* Description - Force down. Supported only when indicated in PCAM Can be set only with admin_status = 2 ('down_by_configuration'), will force link to be down. */ /* 0x4.8 - 0x4.8 */ u_int8_t fd; /* Description - Sleep capability: 0: Sleep state is not supported 1: Sleep state supported */ /* 0x4.9 - 0x4.9 */ u_int8_t sleep_cap; /* Description - Event update enable. If this bit is set, event generation will be updated based on the e field. Only relevant on Set operations. Not Supported for HCA. */ /* 0x4.30 - 0x4.30 */ u_int8_t ee; /* Description - Admin state update enable. If this bit is set, admin state will be updated based on admin_state field. Only relevant on Set() operations. */ /* 0x4.31 - 0x4.31 */ u_int8_t ase; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - When port is forced down, indicates the lock mode of the port. Bit 0: Force_down_by_fuse Bit 1: Force_down_by_hard_wire Bit 2: Force_down_by_config Bit 3: Locked_after_down Bit 4: Locked_by_system Note - value of 0x0 indicates not locked [internal] - GPU supports bits 0-3 QM3 - supports bits 2,3 */ /* 0x8.24 - 0x8.29 */ u_int8_t lock_mode; }; /* Description - */ /* Size in bytes - 12 */ struct reg_access_hca_pcnr_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - When set, port will override tuning process upon following link-up command (PAOS.admin_status = UP). Cleared by FW once PAOS.admin_status = UP command is set. The tuning_override is recommended to be set when port operational status is UP (PAOS.oper_status=0x1). If the field is set while operational status is DOWN (PAOS.oper_status=0x2), port will do best effort of fast linkup on the possible parts of the link (that is, known internal links that cannot change). */ /* 0x0.0 - 0x0.0 */ u_int8_t tuning_override; /* Description - Local port number [9:8] */ /* 0x0.12 - 0x0.13 */ u_int8_t lp_msb; /* Description - Local port number. */ /* 0x0.16 - 0x0.23 */ u_int8_t local_port; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - When Set, The port will keep the same phy setting upon link down event that occurs only upon link down command of peer port. In the event of Down command/cable disconnect, entire link up flow will be initialized. NOTE: This mode can be configured only when PTYS.an_disable_admin is set (i.e. AN is disabled). NOTE: if physical environment was changed (i.e. replacement of module, temp change, etc) there is a possibility that link won't be established or will be established with high BER */ /* 0x4.0 - 0x4.0 */ u_int8_t keep_phy_setting; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_hca_pmaos_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Module state (reserved while admin_status is disabled): 0: initializing 1: plugged_enabled 2: unplugged 3: module_plugged_with_error - (details in error_type). 5: unknown */ /* 0x0.0 - 0x0.3 */ u_int8_t oper_status; /* Description - Module administrative state (the desired state of the module): 1: enabled 2: disabled_by_configuration 3: enabled_once - if the module is active and then unplugged, or module experienced an error event, the operational status should go to "disabled" and can only be enabled upon explicit enable command. Note - To disable a module, all ports associated with the port must be disabled first. */ /* 0x0.8 - 0x0.11 */ u_int8_t admin_status; /* Description - Module number. */ /* 0x0.16 - 0x0.23 */ u_int8_t module; /* Description - Reserved for HCA Slot_index Slot_index = 0 represent the onboard (motherboard). In case of non modular system only slot_index = 0 is available. */ /* 0x0.24 - 0x0.27 */ u_int8_t slot_index; /* Description - Module Reset toggle NOTE: setting reset while module is plugged-in will result in transition of oper_status to initialization. */ /* 0x0.31 - 0x0.31 */ u_int8_t rst; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Event Generation on operational state change: 0: Do_not_generate_event 1: Generate_Event 2: Generate_Single_Event */ /* 0x4.0 - 0x4.1 */ u_int8_t e; /* Description - Module error details: 0x0: Power_Budget_Exceeded 0x1: Long_Range_for_non_MLNX_cable_or_module 0x2: Bus_stuck - (I2C Data or clock shorted) 0x3: bad_or_unsupported_EEPROM 0x4: Enforce_part_number_list 0x5: unsupported_cable 0x6: High_Temperature 0x7: bad_cable - (Module/Cable is shorted) 0x8: PMD_type_is_not_enabled - (see PMTPS) 0xc: pcie_system_power_slot_Exceeded [DWIP] 0xf: Boot_error [DWIP] 0x10: Recovery_error Valid only when oper_status = 4'b0011 */ /* 0x4.8 - 0x4.12 */ u_int8_t error_type; /* Description - This notification can occur only if module passed initialization process 0x0: No notifications. 0x1: Speed degradation - the module is not enabled in its full speed due to incompatible transceiver/cable Valid only when oper_status = 4'b0001. */ /* 0x4.16 - 0x4.19 */ u_int8_t operational_notification; /* Description - When in multi ASIC module sharing systems, This flag will be asserted in case primary and secondary FW versions are not compatible. */ /* 0x4.28 - 0x4.28 */ u_int8_t rev_incompatible; /* Description - Indicates whether the ASIC serves as a the modules secondary (=1) or primary (=0) device. */ /* 0x4.29 - 0x4.29 */ u_int8_t secondary; /* Description - Event update enable. If this bit is set, event generation will be updated based on the e field. Only relevant on Set operations. */ /* 0x4.30 - 0x4.30 */ u_int8_t ee; /* Description - Admin state update enable. If this bit is set, admin state will be updated based on admin_state field. Only relevant on Set() operations. */ /* 0x4.31 - 0x4.31 */ u_int8_t ase; }; /* Description - */ /* Size in bytes - 64 */ struct reg_access_hca_pmlp_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0: unmap_local_port 1: x1 - lane 0 is used 2: x2 - lanes 0,1 are used 4: x4 - lanes 0,1,2 and 3 are used 8: x8 - lanes 0-7 are used Other - reserved */ /* 0x0.0 - 0x0.7 */ u_int8_t width; /* Description - Reserved for non-planarized port. Plane port index of the aggregated port. A value of 0 refers to the aggregated port only. */ /* 0x0.8 - 0x0.11 */ u_int8_t plane_ind; /* Description - Local port number [9:8] */ /* 0x0.12 - 0x0.13 */ u_int8_t lp_msb; /* Description - Local port number. */ /* 0x0.16 - 0x0.23 */ u_int8_t local_port; /* Description - Module lane mapping: 0 - Local to Module mapping include module lanes mapping 1 - Local to Module mapping only, without lane mapping When this operational is set ('1'), the following fields are ignored in SET command and should return the value "0" in GET commands: PMLP.rxtx PMLP.lane_module_mapping.tx_lane PMLP.lane_module_mapping.rx_lane */ /* 0x0.28 - 0x0.28 */ u_int8_t m_lane_m; /* Description - Use different configuration for RX and TX. If this bit is cleared, the TX value is used for both RX and TX. When set, the RX configuration is taken from the separate field. This is to enable backward compatible implementation. */ /* 0x0.31 - 0x0.31 */ u_int8_t rxtx; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Module SerDes for lane Up to 8 SerDeses in a module can be mapped to a local port. */ /* 0x4.0 - 0x20.31 */ struct reg_access_hca_lane_2_module_mapping_ext lane_module_mapping[8]; }; /* Description - */ /* Size in bytes - 68 */ struct reg_access_hca_ptys_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Protocol Mask. Indicates which of the protocol data is valid Bit 0: InfiniBand Bit 2: Ethernet */ /* 0x0.0 - 0x0.2 */ u_int8_t proto_mask; /* Description - Valid only when port is mapped to SW controlled module, otherwise ignored. module control can be queried via MMCR register. 0: transmit_not_allowed - Transmitter is not allowed to transmit signal on output 1: transmit_allowed - Transmitter is allowed to transmit signal on output. for enabling transmitter, PAOS.admin_status must be up as well. */ /* 0x0.3 - 0x0.3 */ u_int8_t transmit_allowed; /* Description - Reserved for non-planarized port. Plane port index of the aggregated port. A value of 0 refers to the aggregated port only. */ /* 0x0.4 - 0x0.7 */ u_int8_t plane_ind; /* Description - Supported only when indicated by PCAM 0: Network_Port 1: Near-End_Port - (For Gearbox - Host side) 2: Internal_IC_Port 3: Far-End_Port - (For Gearbox - Line side) Other values are reserved. */ /* 0x0.8 - 0x0.11 */ u_int8_t port_type; /* Description - Local port number [9:8] */ /* 0x0.12 - 0x0.13 */ u_int8_t lp_msb; /* Description - Local port number */ /* 0x0.16 - 0x0.23 */ u_int8_t local_port; /* Description - When AN is disabled, use aba TX set. */ /* 0x0.24 - 0x0.24 */ u_int8_t force_tx_aba_param; /* Description - Valid only when ee_tx_ready is set, otherwise field is ignored. 0: do_not_generate_event Bit 0: generate_tx_ready_event - When set, PTSE register will generate event when Transmitter is generating valid signal on the line Bit 1: generate_tx_not_ready_event - when set, PTSE will generate event when the transmitter stopped transmitting after Tx_ready was set. */ /* 0x0.26 - 0x0.27 */ u_int8_t tx_ready_e; /* Description - Event Enable for tx_ready_e. when bit is not set, tx_teady_e write value will be ignored */ /* 0x0.28 - 0x0.28 */ u_int8_t ee_tx_ready; /* Description - Auto Negotiation disable capability: 0 - Device does not support AN disable 1 - Device Supports AN disable */ /* 0x0.29 - 0x0.29 */ u_int8_t an_disable_cap; /* Description - Auto Negotiation disable: 0 - Normal operation 1 - Disable AN. Note: In Ethernet port, when Disabling AN, the "eth_proto_admin" bit mask must comply to single speed rate set. In IB port, when Disabling AN, the "ib_proto_admin" bit mask must comply to single speed rate set. It's recommended to validate the FEC override bits in PPLM when operating with AN. */ /* 0x0.30 - 0x0.30 */ u_int8_t an_disable_admin; /* Description - */ /* 0x0.31 - 0x0.31 */ u_int8_t reserved_high; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Port data rate in resolution of 100 Mb/s (data_rate_oper * 100 Mb/s) Value 0x0 indicates this field is not supported. */ /* 0x4.0 - 0x4.15 */ u_int16_t data_rate_oper; /* Description - Port maxium data rate in resolution of 1 Gb/s (data_rate_oper * 1 Gb/s) Value 0x0 indicates this field is not supported. */ /* 0x4.16 - 0x4.27 */ u_int16_t max_port_rate; /* Description - Auto Negotiation status: 0: Status_is_unavailable 1: AN_completed_successfully 2: AN_performed_but_failed 3: AN_was_not_performed_link_is_up 4: AN_was_not_performed_link_is_down */ /* 0x4.28 - 0x4.31 */ u_int8_t an_status; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - For HCA: See also PCAM.feature_cap_mask bit 13 for Extended Ethernet protocol support. Extended Ethernet port speed/protocols supported (bitmask): Bit 0: SGMII_100M Bit 1: 1000BASE-X / SGMII Bit 3: 5GBASE-R Bit 4: XFI / XAUI-1 // 10G Bit 5: XLAUI-4/XLPPI-4 // 40G Bit 6: 25GAUI-1/ 25GBASE-CR / KR Bit 7: 50GAUI-2 / LAUI-2/ 50GBASE-CR2/KR2 Bit 8: 50GAUI-1 /50GBASE-CR / KR Bit 9: CAUI-4 / 100GBASE-CR4 / KR4 Bit 10: 100GAUI-2 / 100GBASE-CR2 / KR2 Bit 11: 100GAUI-1 / 100GBASE-CR / KR Bit 12: 200GAUI-4 / 200GBASE-CR4/KR4 Bit 13: 200GAUI-2 / 200GBASE-CR2/KR2 Bit 14: Reserved [internal] Placeholder for 200GAUI-1 Bit 15: 400GAUI-8/ 400GBASE-CR8 Bit 16: 400GAUI-4/ 400GBASE-CR4 Bit 17: Reserved [internal] Placeholder for 400GAUI-2 Bit 18: Reserved [internal] Placeholder for 400GAUI-1 Bit 19: 800GAUI-8 / 800GBASE-CR8 / KR8 Bit 31: SGMII_10M Other - Reserved */ /* 0x8.0 - 0x8.31 */ u_int32_t ext_eth_proto_capability; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Ethernet port speed/protocols supported (bitmask) Bit 31 - 50GBase-KR2 Bit 30 - 50GBase-CR2 Bit 29 - 25GBase-SR Bit 28 - 25GBase-KR Bit 27 - 25GBase-CR Bit 26 - 10GBase-T Bit 25 - 1000Base-T Bit 24 - 100Base-TX Bit 23 - 100GBase LR4/ER4 Bit 22 - 100GBase KR4 Bit 21 - 100GBase SR4 Bit 20 - 100GBase CR4 Bit 18 - 50GBase-SR2 Bit 16 - 40GBase LR4/ER4 Bit 15 - 40GBase SR4 Bit 14 - 10GBase ER/LR Bit 13 - 10GBase SR Bit 12 - 10GBase CR Bit 10 - 10Base-T Bit 9 - SGMII_100Base Bit 7 - 40GBase KR4 Bit 6 - 40GBase CR4 Bit 4 - 10GBase KR Bit 3 - 10GBase KX4 Bit 2 - 10GBase-CX4 Bit 1 - 1000Base KX Bit 0 - SGMII */ /* 0xc.0 - 0xc.31 */ u_int32_t eth_proto_capability; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - InfiniBand port speed supported (bitmask) ib_link_speed <= ib_proto_capability[7:0] Bit 0: SDR Bit 1: DDR Bit 2: QDR Bit 3: FDR10 Bit 4: FDR Bit 5: EDR Bit 6: HDR Bit 7: NDR Bit 8: XDR */ /* 0x10.0 - 0x10.15 */ u_int16_t ib_proto_capability; /* Description - ib_link_width <= ib_proto_capability Bit 0 - 1x Bit 1 - 2x Bit 2 - 4x */ /* 0x10.16 - 0x10.31 */ u_int16_t ib_link_width_capability; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Ethernet port extended speed/protocols bitmask NOTE: This field and "eth_proto_admin" are mutual exclusive, meaning that only one of the field can be set on write command. */ /* 0x14.0 - 0x14.31 */ u_int32_t ext_eth_proto_admin; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - Ethernet port speed/protocols bitmask */ /* 0x18.0 - 0x18.31 */ u_int32_t eth_proto_admin; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - InfiniBand port speed bitmask */ /* 0x1c.0 - 0x1c.15 */ u_int16_t ib_proto_admin; /* Description - InfiniBand port link width bitmask */ /* 0x1c.16 - 0x1c.31 */ u_int16_t ib_link_width_admin; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - Ethernet port extended speed/protocols bitmask */ /* 0x20.0 - 0x20.31 */ u_int32_t ext_eth_proto_oper; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - Ethernet port speed/protocols bitmask */ /* 0x24.0 - 0x24.31 */ u_int32_t eth_proto_oper; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - InfiniBand port speed bitmask */ /* 0x28.0 - 0x28.15 */ u_int16_t ib_proto_oper; /* Description - InfiniBand port link width bitmask */ /* 0x28.16 - 0x28.31 */ u_int16_t ib_link_width_oper; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - Connector type indication 0: No_connector_or_unknown 1: PORT_NONE - None 2: PORT_TP - Twisted Pair 3: PORT_AUI - AUI 4: PORT_BNC - BNC 5: PORT_MII - MII 6: PORT_FIBRE - FIBRE 7: PORT_DA - Direct Attach Copper 8: PORT_OTHER - Other */ /* 0x2c.0 - 0x2c.3 */ u_int8_t connector_type; /* Description - For active link, Indicates the lane data rate passed per physical lane including the overhead due to FEC. resolution of 10 Mb/s (lane_rate_oper * 10Mb/s). */ /* 0x2c.4 - 0x2c.23 */ u_int32_t lane_rate_oper; /* Description - When set and link active, indicates link speed is xdr_2x slow. */ /* 0x2c.24 - 0x2c.24 */ u_int8_t xdr_2x_slow_active; /* Description - When set, along with ib protocol xdr_2x, XDR_2x slow will be allowed instead of xdr_2x. Note: in GB100, set by default only with ini and cannot be changed. */ /* 0x2c.25 - 0x2c.25 */ u_int8_t xdr_2x_slow_admin; /* Description - Ethernet Force mode options when AN disable is set. 0 - auto, keep normal operation 1 - Do Force LT (KR Startup) flow 2 - Do not do LT (KR Startup) flow Note: Ignored when an_disable_admin is not set In Ethernet port, when setting force LT flow, the "eth_proto_ext_admin" bit mask must comply to single speed rate set. */ /* 0x2c.28 - 0x2c.29 */ u_int8_t force_lt_frames_admin; /* Description - 0 - device does not support Force LT (KR Startup) flow 1 - device supports Force LT (KR Startup) flow Note: Ignored when an_disable_admin is not set */ /* 0x2c.30 - 0x2c.30 */ u_int8_t force_lt_frames_cap; /* Description - capability for XDR_2x slow is support (200G) */ /* 0x2c.31 - 0x2c.31 */ u_int8_t xdr_2x_slow_cap; }; /* Description - */ /* Size in bytes - 256 */ struct reg_access_hca_resource_dump_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - See Section 25.10, "Resource Dump", on page 1609. */ /* 0x0.0 - 0x0.15 */ u_int16_t segment_type; /* Description - Sequence number. 0 on first call of dump and incremented on each more dump. */ /* 0x0.16 - 0x0.19 */ u_int8_t seq_num; /* Description - If set, then vhca_id field is valid. Otherwise dump resources on my vhca_id. */ /* 0x0.29 - 0x0.29 */ u_int8_t vhca_id_valid; /* Description - If set, data is dumped in the register in inline_data field. otherwise dump to mkey. */ /* 0x0.30 - 0x0.30 */ u_int8_t inline_dump; /* Description - If set, the device has additional information that has not been dumped yet. */ /* 0x0.31 - 0x0.31 */ u_int8_t more_dump; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - vhca_id where the resource is allocated. */ /* 0x4.0 - 0x4.15 */ u_int16_t vhca_id; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - First object index to be dumped when supported by the object. SW shall read this field upon command done and shall provide it on the next call in case dump_more==1. */ /* 0x8.0 - 0x8.31 */ u_int32_t index1; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Second object index to be dumped when supported by the object. SW shall read this field upon command done and shall provide it on the next call in case dump_more==1. */ /* 0xc.0 - 0xc.31 */ u_int32_t index2; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The amount of objects to dump starting for index 2. SW shall read this field upon command done and shall provide it on the next call in case dump_more==1. Range is 0..0xfff0. When the segment's num_of_obj2_supports_all is set, the special value of 0xffff represents "all". When the segment's num_of_objx_supports_active is set, the special value of 0xfffe represents "active". The value of 0x0 and 0x1 are allowed even if the supported_num_of_obj2 is "0". */ /* 0x10.0 - 0x10.15 */ u_int16_t num_of_obj2; /* Description - The amount of objects to dump starting for index 1 SW shall read this field upon command done and shall provide it on the next call in case dump_more==1. Range is 0..0xfff0. When the segment's num_of_obj1_supports_all is set, the special value of 0xffff represents "all". When the segment's num_of_objx_supports_active is set, the special value of 0xfffe represents "active". The value of 0x0 and 0x1 are allowed even if the supported_num_of_obj1 is "0". */ /* 0x10.16 - 0x10.31 */ u_int16_t num_of_obj1; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - An opaque provided by the device. SW shall read the device_opaque upon command done and shall provide it on the next call in case dump_more==1. On first call, device_opaque shall be 0. */ /* 0x18.0 - 0x1c.31 */ u_int64_t device_opaque; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - Memory key to dump to. Valid when inline_dump==0. */ /* 0x20.0 - 0x20.31 */ u_int32_t mkey; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - In write, the size of maximum allocated buffer that the device can use. In read, the actual written size. In granularity of Bytes. */ /* 0x24.0 - 0x24.31 */ u_int32_t size; /*---------------- DWORD[10] (Offset 0x28) ----------------*/ /* Description - VA address (absolute address) of memory where to start dumping. Valid when inline_dump==0. */ /* 0x28.0 - 0x2c.31 */ u_int64_t address; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - Data that is dumped in case of inline mode. Valid when inline_dump==1. */ /* 0x30.0 - 0xfc.31 */ u_int32_t inline_data[52]; }; /* Description - */ /* Size in bytes - 768 */ union reg_access_hca_reg_access_hca_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_linkx_properties_ext mcqi_linkx_properties_ext; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct reg_access_hca_mrsi_ext mrsi_ext; /* Description - */ /* 0x0.0 - 0x2fc.31 */ struct reg_access_hca_nic_dpa_eu_partition_reg_ext nic_dpa_eu_partition_reg_ext; /* Description - */ /* 0x0.0 - 0x108.31 */ struct reg_access_hca_mfba_reg_ext mfba_reg_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_pmaos_reg_ext pmaos_reg_ext; /* Description - */ /* 0x0.0 - 0x8.31 */ struct reg_access_hca_mtrc_stdb_reg_ext mtrc_stdb_reg_ext; /* Description - */ /* 0x0.0 - 0x8.31 */ struct reg_access_hca_pcnr_reg_ext pcnr_reg_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_mcqs_reg_ext mcqs_reg_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_mtcap_ext mtcap_ext; /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_activation_method_ext mcqi_activation_method_ext; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_hca_mcc_reg_ext mcc_reg_ext; /* Description - */ /* 0x0.0 - 0x7c.31 */ struct reg_access_hca_nic_cap_ext_reg_ext nic_cap_ext_reg_ext; /* Description - */ /* 0x0.0 - 0xfc.31 */ struct reg_access_hca_nic_dpa_eug_reg_ext nic_dpa_eug_reg_ext; /* Description - */ /* 0x0.0 - 0x8c.31 */ struct reg_access_hca_mcda_reg_ext mcda_reg_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_mtim_ext mtim_ext; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_hca_mtdc_ext mtdc_ext; /* Description - */ /* 0x0.0 - 0x44.31 */ struct reg_access_hca_mcam_reg_ext mcam_reg_ext; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct reg_access_hca_pmlp_reg_ext pmlp_reg_ext; /* Description - */ /* 0x0.0 - 0x8.31 */ struct reg_access_hca_mfbe_reg_ext mfbe_reg_ext; /* Description - */ /* 0x0.0 - 0x4.31 */ struct reg_access_hca_mfrl_reg_ext mfrl_reg_ext; /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_version_ext mcqi_version_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_paos_reg_ext paos_reg_ext; /* Description - */ /* 0x0.0 - 0x40.31 */ struct reg_access_hca_ptys_reg_ext ptys_reg_ext; /* Description - */ /* 0x0.0 - 0x28.31 */ struct reg_access_hca_mpegc_reg_ext mpegc_reg_ext; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_hca_mfpa_reg_ext mfpa_reg_ext; /* Description - */ /* 0x0.0 - 0x90.31 */ struct reg_access_hca_mcqi_reg_ext mcqi_reg_ext; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_hca_mtmp_ext mtmp_ext; /* Description - */ /* 0x0.0 - 0x8.31 */ struct reg_access_hca_mmdio_ext mmdio_ext; /* Description - */ /* 0x0.0 - 0x9c.31 */ struct reg_access_hca_mgir_ext mgir_ext; /* Description - */ /* 0x0.0 - 0x2c.31 */ struct reg_access_hca_mtie_ext mtie_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_mpcir_ext mpcir_ext; /* Description - */ /* 0x0.0 - 0x90.31 */ struct reg_access_hca_mcia_ext mcia_ext; /* Description - */ /* 0x0.0 - 0x7c.31 */ struct reg_access_hca_mtrc_conf_reg_ext mtrc_conf_reg_ext; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct reg_access_hca_mtrc_ctrl_reg_ext mtrc_ctrl_reg_ext; /* Description - */ /* 0x0.0 - 0x2c.31 */ struct reg_access_hca_mfsv_reg_ext mfsv_reg_ext; /* Description - */ /* 0x0.0 - 0x40.31 */ struct reg_access_hca_debug_cap debug_cap; /* Description - */ /* 0x0.0 - 0x8.31 */ struct reg_access_hca_mnvdi_reg_ext mnvdi_reg_ext; /* Description - */ /* 0x0.0 - 0x78.31 */ struct reg_access_hca_mcqi_cap_ext mcqi_cap_ext; /* Description - */ /* 0x0.0 - 0xfc.31 */ struct reg_access_hca_resource_dump_ext resource_dump_ext; /* Description - */ /* 0x0.0 - 0x4.31 */ struct reg_access_hca_mnvqc_reg_ext mnvqc_reg_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_hca_mnvgc_reg_ext mnvgc_reg_ext; /* Description - */ /* 0x0.0 - 0x80.31 */ struct reg_access_hca_mtrc_cap_reg_ext mtrc_cap_reg_ext; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct reg_access_hca_dtor_reg_ext dtor_reg_ext; /* Description - */ /* 0x0.0 - 0x4.31 */ struct reg_access_hca_mnvia_reg_ext mnvia_reg_ext; /* Description - */ /* 0x0.0 - 0x2c.31 */ struct reg_access_hca_mteim_reg_ext mteim_reg_ext; /* Description - */ /* 0x0.0 - 0x3c.31 */ struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext nic_dpa_perf_ctrl_reg_ext; /* Description - */ /* 0x0.0 - 0x14.31 */ struct reg_access_hca_mqis_reg_ext mqis_reg_ext; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* configuration_item_type_class_file_ext */ void reg_access_hca_configuration_item_type_class_file_ext_pack(const struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_file_ext_unpack(struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_file_ext_print(const struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_file_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_FILE_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_file_ext_dump(const struct reg_access_hca_configuration_item_type_class_file_ext *ptr_struct, FILE *fd); /* configuration_item_type_class_global_ext */ void reg_access_hca_configuration_item_type_class_global_ext_pack(const struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_global_ext_unpack(struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_global_ext_print(const struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_global_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_GLOBAL_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_global_ext_dump(const struct reg_access_hca_configuration_item_type_class_global_ext *ptr_struct, FILE *fd); /* configuration_item_type_class_host_ext */ void reg_access_hca_configuration_item_type_class_host_ext_pack(const struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_host_ext_unpack(struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_host_ext_print(const struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_host_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_HOST_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_host_ext_dump(const struct reg_access_hca_configuration_item_type_class_host_ext *ptr_struct, FILE *fd); /* configuration_item_type_class_log_ext */ void reg_access_hca_configuration_item_type_class_log_ext_pack(const struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_log_ext_unpack(struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_log_ext_print(const struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_log_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_LOG_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_log_ext_dump(const struct reg_access_hca_configuration_item_type_class_log_ext *ptr_struct, FILE *fd); /* configuration_item_type_class_module_ext */ void reg_access_hca_configuration_item_type_class_module_ext_pack(const struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_module_ext_unpack(struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_module_ext_print(const struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_module_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_MODULE_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_module_ext_dump(const struct reg_access_hca_configuration_item_type_class_module_ext *ptr_struct, FILE *fd); /* configuration_item_type_class_per_host_pf_ext */ void reg_access_hca_configuration_item_type_class_per_host_pf_ext_pack(const struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_per_host_pf_ext_unpack(struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_per_host_pf_ext_print(const struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_per_host_pf_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_PER_HOST_PF_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_per_host_pf_ext_dump(const struct reg_access_hca_configuration_item_type_class_per_host_pf_ext *ptr_struct, FILE *fd); /* configuration_item_type_class_physical_port_ext */ void reg_access_hca_configuration_item_type_class_physical_port_ext_pack(const struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_physical_port_ext_unpack(struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_configuration_item_type_class_physical_port_ext_print(const struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_configuration_item_type_class_physical_port_ext_size(void); #define REG_ACCESS_HCA_CONFIGURATION_ITEM_TYPE_CLASS_PHYSICAL_PORT_EXT_SIZE (0x4) void reg_access_hca_configuration_item_type_class_physical_port_ext_dump(const struct reg_access_hca_configuration_item_type_class_physical_port_ext *ptr_struct, FILE *fd); /* date_time_layout_ext */ void reg_access_hca_date_time_layout_ext_pack(const struct reg_access_hca_date_time_layout_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_date_time_layout_ext_unpack(struct reg_access_hca_date_time_layout_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_date_time_layout_ext_print(const struct reg_access_hca_date_time_layout_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_date_time_layout_ext_size(void); #define REG_ACCESS_HCA_DATE_TIME_LAYOUT_EXT_SIZE (0x8) void reg_access_hca_date_time_layout_ext_dump(const struct reg_access_hca_date_time_layout_ext *ptr_struct, FILE *fd); /* config_item_type_auto_ext */ void reg_access_hca_config_item_type_auto_ext_pack(const union reg_access_hca_config_item_type_auto_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_config_item_type_auto_ext_unpack(union reg_access_hca_config_item_type_auto_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_config_item_type_auto_ext_print(const union reg_access_hca_config_item_type_auto_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_config_item_type_auto_ext_size(void); #define REG_ACCESS_HCA_CONFIG_ITEM_TYPE_AUTO_EXT_SIZE (0x4) void reg_access_hca_config_item_type_auto_ext_dump(const union reg_access_hca_config_item_type_auto_ext *ptr_struct, FILE *fd); /* mcqi_activation_method_ext */ void reg_access_hca_mcqi_activation_method_ext_pack(const struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_activation_method_ext_unpack(struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_activation_method_ext_print(const struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_activation_method_ext_size(void); #define REG_ACCESS_HCA_MCQI_ACTIVATION_METHOD_EXT_SIZE (0x7c) void reg_access_hca_mcqi_activation_method_ext_dump(const struct reg_access_hca_mcqi_activation_method_ext *ptr_struct, FILE *fd); /* mcqi_cap_ext */ void reg_access_hca_mcqi_cap_ext_pack(const struct reg_access_hca_mcqi_cap_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_cap_ext_unpack(struct reg_access_hca_mcqi_cap_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_cap_ext_print(const struct reg_access_hca_mcqi_cap_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_cap_ext_size(void); #define REG_ACCESS_HCA_MCQI_CAP_EXT_SIZE (0x7c) void reg_access_hca_mcqi_cap_ext_dump(const struct reg_access_hca_mcqi_cap_ext *ptr_struct, FILE *fd); /* mcqi_clock_source_properties_ext */ void reg_access_hca_mcqi_clock_source_properties_ext_pack(const struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_clock_source_properties_ext_unpack(struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_clock_source_properties_ext_print(const struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_clock_source_properties_ext_size(void); #define REG_ACCESS_HCA_MCQI_CLOCK_SOURCE_PROPERTIES_EXT_SIZE (0x4) void reg_access_hca_mcqi_clock_source_properties_ext_dump(const struct reg_access_hca_mcqi_clock_source_properties_ext *ptr_struct, FILE *fd); /* mcqi_linkx_properties_ext */ void reg_access_hca_mcqi_linkx_properties_ext_pack(const struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_linkx_properties_ext_unpack(struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_linkx_properties_ext_print(const struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_linkx_properties_ext_size(void); #define REG_ACCESS_HCA_MCQI_LINKX_PROPERTIES_EXT_SIZE (0x7c) void reg_access_hca_mcqi_linkx_properties_ext_dump(const struct reg_access_hca_mcqi_linkx_properties_ext *ptr_struct, FILE *fd); /* mcqi_version_ext */ void reg_access_hca_mcqi_version_ext_pack(const struct reg_access_hca_mcqi_version_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_version_ext_unpack(struct reg_access_hca_mcqi_version_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_version_ext_print(const struct reg_access_hca_mcqi_version_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_version_ext_size(void); #define REG_ACCESS_HCA_MCQI_VERSION_EXT_SIZE (0x7c) void reg_access_hca_mcqi_version_ext_dump(const struct reg_access_hca_mcqi_version_ext *ptr_struct, FILE *fd); /* rom_version_ext */ void reg_access_hca_rom_version_ext_pack(const struct reg_access_hca_rom_version_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_rom_version_ext_unpack(struct reg_access_hca_rom_version_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_rom_version_ext_print(const struct reg_access_hca_rom_version_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_rom_version_ext_size(void); #define REG_ACCESS_HCA_ROM_VERSION_EXT_SIZE (0x4) void reg_access_hca_rom_version_ext_dump(const struct reg_access_hca_rom_version_ext *ptr_struct, FILE *fd); /* config_item_ext */ void reg_access_hca_config_item_ext_pack(const struct reg_access_hca_config_item_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_config_item_ext_unpack(struct reg_access_hca_config_item_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_config_item_ext_print(const struct reg_access_hca_config_item_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_config_item_ext_size(void); #define REG_ACCESS_HCA_CONFIG_ITEM_EXT_SIZE (0xc) void reg_access_hca_config_item_ext_dump(const struct reg_access_hca_config_item_ext *ptr_struct, FILE *fd); /* default_timeout_ext */ void reg_access_hca_default_timeout_ext_pack(const struct reg_access_hca_default_timeout_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_default_timeout_ext_unpack(struct reg_access_hca_default_timeout_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_default_timeout_ext_print(const struct reg_access_hca_default_timeout_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_default_timeout_ext_size(void); #define REG_ACCESS_HCA_DEFAULT_TIMEOUT_EXT_SIZE (0x4) void reg_access_hca_default_timeout_ext_dump(const struct reg_access_hca_default_timeout_ext *ptr_struct, FILE *fd); /* diagnostic_cntr_layout */ void reg_access_hca_diagnostic_cntr_layout_pack(const struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_diagnostic_cntr_layout_unpack(struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_diagnostic_cntr_layout_print(const struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_diagnostic_cntr_layout_size(void); #define REG_ACCESS_HCA_DIAGNOSTIC_CNTR_LAYOUT_SIZE (0x4) void reg_access_hca_diagnostic_cntr_layout_dump(const struct reg_access_hca_diagnostic_cntr_layout *ptr_struct, FILE *fd); /* lane_2_module_mapping_ext */ void reg_access_hca_lane_2_module_mapping_ext_pack(const struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_lane_2_module_mapping_ext_unpack(struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_lane_2_module_mapping_ext_print(const struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_lane_2_module_mapping_ext_size(void); #define REG_ACCESS_HCA_LANE_2_MODULE_MAPPING_EXT_SIZE (0x4) void reg_access_hca_lane_2_module_mapping_ext_dump(const struct reg_access_hca_lane_2_module_mapping_ext *ptr_struct, FILE *fd); /* mcqi_reg_data_auto_ext */ void reg_access_hca_mcqi_reg_data_auto_ext_pack(const union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_reg_data_auto_ext_unpack(union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_reg_data_auto_ext_print(const union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_reg_data_auto_ext_size(void); #define REG_ACCESS_HCA_MCQI_REG_DATA_AUTO_EXT_SIZE (0x7c) void reg_access_hca_mcqi_reg_data_auto_ext_dump(const union reg_access_hca_mcqi_reg_data_auto_ext *ptr_struct, FILE *fd); /* mgir_dev_info_ext */ void reg_access_hca_mgir_dev_info_ext_pack(const struct reg_access_hca_mgir_dev_info_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mgir_dev_info_ext_unpack(struct reg_access_hca_mgir_dev_info_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mgir_dev_info_ext_print(const struct reg_access_hca_mgir_dev_info_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mgir_dev_info_ext_size(void); #define REG_ACCESS_HCA_MGIR_DEV_INFO_EXT_SIZE (0x1c) void reg_access_hca_mgir_dev_info_ext_dump(const struct reg_access_hca_mgir_dev_info_ext *ptr_struct, FILE *fd); /* mgir_fw_info_ext */ void reg_access_hca_mgir_fw_info_ext_pack(const struct reg_access_hca_mgir_fw_info_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mgir_fw_info_ext_unpack(struct reg_access_hca_mgir_fw_info_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mgir_fw_info_ext_print(const struct reg_access_hca_mgir_fw_info_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mgir_fw_info_ext_size(void); #define REG_ACCESS_HCA_MGIR_FW_INFO_EXT_SIZE (0x40) void reg_access_hca_mgir_fw_info_ext_dump(const struct reg_access_hca_mgir_fw_info_ext *ptr_struct, FILE *fd); /* mgir_hardware_info_ext */ void reg_access_hca_mgir_hardware_info_ext_pack(const struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mgir_hardware_info_ext_unpack(struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mgir_hardware_info_ext_print(const struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mgir_hardware_info_ext_size(void); #define REG_ACCESS_HCA_MGIR_HARDWARE_INFO_EXT_SIZE (0x20) void reg_access_hca_mgir_hardware_info_ext_dump(const struct reg_access_hca_mgir_hardware_info_ext *ptr_struct, FILE *fd); /* mgir_sw_info_ext */ void reg_access_hca_mgir_sw_info_ext_pack(const struct reg_access_hca_mgir_sw_info_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mgir_sw_info_ext_unpack(struct reg_access_hca_mgir_sw_info_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mgir_sw_info_ext_print(const struct reg_access_hca_mgir_sw_info_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mgir_sw_info_ext_size(void); #define REG_ACCESS_HCA_MGIR_SW_INFO_EXT_SIZE (0x20) void reg_access_hca_mgir_sw_info_ext_dump(const struct reg_access_hca_mgir_sw_info_ext *ptr_struct, FILE *fd); /* string_db_parameters_ext */ void reg_access_hca_string_db_parameters_ext_pack(const struct reg_access_hca_string_db_parameters_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_string_db_parameters_ext_unpack(struct reg_access_hca_string_db_parameters_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_string_db_parameters_ext_print(const struct reg_access_hca_string_db_parameters_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_string_db_parameters_ext_size(void); #define REG_ACCESS_HCA_STRING_DB_PARAMETERS_EXT_SIZE (0x8) void reg_access_hca_string_db_parameters_ext_dump(const struct reg_access_hca_string_db_parameters_ext *ptr_struct, FILE *fd); /* uint64 */ void reg_access_hca_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_uint64_size(void); #define REG_ACCESS_HCA_UINT64_SIZE (0x8) void reg_access_hca_uint64_dump(const u_int64_t *ptr_struct, FILE *fd); /* debug_cap */ void reg_access_hca_debug_cap_pack(const struct reg_access_hca_debug_cap *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_debug_cap_unpack(struct reg_access_hca_debug_cap *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_debug_cap_print(const struct reg_access_hca_debug_cap *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_debug_cap_size(void); #define REG_ACCESS_HCA_DEBUG_CAP_SIZE (0x40) void reg_access_hca_debug_cap_dump(const struct reg_access_hca_debug_cap *ptr_struct, FILE *fd); /* dtor_reg_ext */ void reg_access_hca_dtor_reg_ext_pack(const struct reg_access_hca_dtor_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_dtor_reg_ext_unpack(struct reg_access_hca_dtor_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_dtor_reg_ext_print(const struct reg_access_hca_dtor_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_dtor_reg_ext_size(void); #define REG_ACCESS_HCA_DTOR_REG_EXT_SIZE (0x40) void reg_access_hca_dtor_reg_ext_dump(const struct reg_access_hca_dtor_reg_ext *ptr_struct, FILE *fd); /* mcam_reg_ext */ void reg_access_hca_mcam_reg_ext_pack(const struct reg_access_hca_mcam_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcam_reg_ext_unpack(struct reg_access_hca_mcam_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcam_reg_ext_print(const struct reg_access_hca_mcam_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcam_reg_ext_size(void); #define REG_ACCESS_HCA_MCAM_REG_EXT_SIZE (0x48) void reg_access_hca_mcam_reg_ext_dump(const struct reg_access_hca_mcam_reg_ext *ptr_struct, FILE *fd); /* mcc_reg_ext */ void reg_access_hca_mcc_reg_ext_pack(const struct reg_access_hca_mcc_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcc_reg_ext_unpack(struct reg_access_hca_mcc_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcc_reg_ext_print(const struct reg_access_hca_mcc_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcc_reg_ext_size(void); #define REG_ACCESS_HCA_MCC_REG_EXT_SIZE (0x20) void reg_access_hca_mcc_reg_ext_dump(const struct reg_access_hca_mcc_reg_ext *ptr_struct, FILE *fd); /* mcda_reg_ext */ void reg_access_hca_mcda_reg_ext_pack(const struct reg_access_hca_mcda_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcda_reg_ext_unpack(struct reg_access_hca_mcda_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcda_reg_ext_print(const struct reg_access_hca_mcda_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcda_reg_ext_size(void); #define REG_ACCESS_HCA_MCDA_REG_EXT_SIZE (0x90) void reg_access_hca_mcda_reg_ext_dump(const struct reg_access_hca_mcda_reg_ext *ptr_struct, FILE *fd); /* mcia_ext */ void reg_access_hca_mcia_ext_pack(const struct reg_access_hca_mcia_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcia_ext_unpack(struct reg_access_hca_mcia_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcia_ext_print(const struct reg_access_hca_mcia_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcia_ext_size(void); #define REG_ACCESS_HCA_MCIA_EXT_SIZE (0x94) void reg_access_hca_mcia_ext_dump(const struct reg_access_hca_mcia_ext *ptr_struct, FILE *fd); /* mcqi_reg_ext */ void reg_access_hca_mcqi_reg_ext_pack(const struct reg_access_hca_mcqi_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqi_reg_ext_unpack(struct reg_access_hca_mcqi_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqi_reg_ext_print(const struct reg_access_hca_mcqi_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqi_reg_ext_size(void); #define REG_ACCESS_HCA_MCQI_REG_EXT_SIZE (0x94) void reg_access_hca_mcqi_reg_ext_dump(const struct reg_access_hca_mcqi_reg_ext *ptr_struct, FILE *fd); /* mcqs_reg_ext */ void reg_access_hca_mcqs_reg_ext_pack(const struct reg_access_hca_mcqs_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mcqs_reg_ext_unpack(struct reg_access_hca_mcqs_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mcqs_reg_ext_print(const struct reg_access_hca_mcqs_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mcqs_reg_ext_size(void); #define REG_ACCESS_HCA_MCQS_REG_EXT_SIZE (0x10) void reg_access_hca_mcqs_reg_ext_dump(const struct reg_access_hca_mcqs_reg_ext *ptr_struct, FILE *fd); /* mfba_reg_ext */ void reg_access_hca_mfba_reg_ext_pack(const struct reg_access_hca_mfba_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mfba_reg_ext_unpack(struct reg_access_hca_mfba_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mfba_reg_ext_print(const struct reg_access_hca_mfba_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mfba_reg_ext_size(void); #define REG_ACCESS_HCA_MFBA_REG_EXT_SIZE (0x10c) void reg_access_hca_mfba_reg_ext_dump(const struct reg_access_hca_mfba_reg_ext *ptr_struct, FILE *fd); /* mfbe_reg_ext */ void reg_access_hca_mfbe_reg_ext_pack(const struct reg_access_hca_mfbe_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mfbe_reg_ext_unpack(struct reg_access_hca_mfbe_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mfbe_reg_ext_print(const struct reg_access_hca_mfbe_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mfbe_reg_ext_size(void); #define REG_ACCESS_HCA_MFBE_REG_EXT_SIZE (0xc) void reg_access_hca_mfbe_reg_ext_dump(const struct reg_access_hca_mfbe_reg_ext *ptr_struct, FILE *fd); /* mfpa_reg_ext */ void reg_access_hca_mfpa_reg_ext_pack(const struct reg_access_hca_mfpa_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mfpa_reg_ext_unpack(struct reg_access_hca_mfpa_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mfpa_reg_ext_print(const struct reg_access_hca_mfpa_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mfpa_reg_ext_size(void); #define REG_ACCESS_HCA_MFPA_REG_EXT_SIZE (0x20) void reg_access_hca_mfpa_reg_ext_dump(const struct reg_access_hca_mfpa_reg_ext *ptr_struct, FILE *fd); /* mfrl_reg_ext */ void reg_access_hca_mfrl_reg_ext_pack(const struct reg_access_hca_mfrl_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mfrl_reg_ext_unpack(struct reg_access_hca_mfrl_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mfrl_reg_ext_print(const struct reg_access_hca_mfrl_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mfrl_reg_ext_size(void); #define REG_ACCESS_HCA_MFRL_REG_EXT_SIZE (0x8) void reg_access_hca_mfrl_reg_ext_dump(const struct reg_access_hca_mfrl_reg_ext *ptr_struct, FILE *fd); /* mfsv_reg_ext */ void reg_access_hca_mfsv_reg_ext_pack(const struct reg_access_hca_mfsv_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mfsv_reg_ext_unpack(struct reg_access_hca_mfsv_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mfsv_reg_ext_print(const struct reg_access_hca_mfsv_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mfsv_reg_ext_size(void); #define REG_ACCESS_HCA_MFSV_REG_EXT_SIZE (0x30) void reg_access_hca_mfsv_reg_ext_dump(const struct reg_access_hca_mfsv_reg_ext *ptr_struct, FILE *fd); /* mgir_ext */ void reg_access_hca_mgir_ext_pack(const struct reg_access_hca_mgir_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mgir_ext_unpack(struct reg_access_hca_mgir_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mgir_ext_print(const struct reg_access_hca_mgir_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mgir_ext_size(void); #define REG_ACCESS_HCA_MGIR_EXT_SIZE (0xa0) void reg_access_hca_mgir_ext_dump(const struct reg_access_hca_mgir_ext *ptr_struct, FILE *fd); /* mmdio_ext */ void reg_access_hca_mmdio_ext_pack(const struct reg_access_hca_mmdio_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mmdio_ext_unpack(struct reg_access_hca_mmdio_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mmdio_ext_print(const struct reg_access_hca_mmdio_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mmdio_ext_size(void); #define REG_ACCESS_HCA_MMDIO_EXT_SIZE (0xc) void reg_access_hca_mmdio_ext_dump(const struct reg_access_hca_mmdio_ext *ptr_struct, FILE *fd); /* mnvdi_reg_ext */ void reg_access_hca_mnvdi_reg_ext_pack(const struct reg_access_hca_mnvdi_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mnvdi_reg_ext_unpack(struct reg_access_hca_mnvdi_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mnvdi_reg_ext_print(const struct reg_access_hca_mnvdi_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mnvdi_reg_ext_size(void); #define REG_ACCESS_HCA_MNVDI_REG_EXT_SIZE (0xc) void reg_access_hca_mnvdi_reg_ext_dump(const struct reg_access_hca_mnvdi_reg_ext *ptr_struct, FILE *fd); /* mnvgc_reg_ext */ void reg_access_hca_mnvgc_reg_ext_pack(const struct reg_access_hca_mnvgc_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mnvgc_reg_ext_unpack(struct reg_access_hca_mnvgc_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mnvgc_reg_ext_print(const struct reg_access_hca_mnvgc_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mnvgc_reg_ext_size(void); #define REG_ACCESS_HCA_MNVGC_REG_EXT_SIZE (0x10) void reg_access_hca_mnvgc_reg_ext_dump(const struct reg_access_hca_mnvgc_reg_ext *ptr_struct, FILE *fd); /* mnvia_reg_ext */ void reg_access_hca_mnvia_reg_ext_pack(const struct reg_access_hca_mnvia_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mnvia_reg_ext_unpack(struct reg_access_hca_mnvia_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mnvia_reg_ext_print(const struct reg_access_hca_mnvia_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mnvia_reg_ext_size(void); #define REG_ACCESS_HCA_MNVIA_REG_EXT_SIZE (0x8) void reg_access_hca_mnvia_reg_ext_dump(const struct reg_access_hca_mnvia_reg_ext *ptr_struct, FILE *fd); /* mnvqc_reg_ext */ void reg_access_hca_mnvqc_reg_ext_pack(const struct reg_access_hca_mnvqc_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mnvqc_reg_ext_unpack(struct reg_access_hca_mnvqc_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mnvqc_reg_ext_print(const struct reg_access_hca_mnvqc_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mnvqc_reg_ext_size(void); #define REG_ACCESS_HCA_MNVQC_REG_EXT_SIZE (0x8) void reg_access_hca_mnvqc_reg_ext_dump(const struct reg_access_hca_mnvqc_reg_ext *ptr_struct, FILE *fd); /* mpcir_ext */ void reg_access_hca_mpcir_ext_pack(const struct reg_access_hca_mpcir_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mpcir_ext_unpack(struct reg_access_hca_mpcir_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mpcir_ext_print(const struct reg_access_hca_mpcir_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mpcir_ext_size(void); #define REG_ACCESS_HCA_MPCIR_EXT_SIZE (0x10) void reg_access_hca_mpcir_ext_dump(const struct reg_access_hca_mpcir_ext *ptr_struct, FILE *fd); /* mpegc_reg_ext */ void reg_access_hca_mpegc_reg_ext_pack(const struct reg_access_hca_mpegc_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mpegc_reg_ext_unpack(struct reg_access_hca_mpegc_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mpegc_reg_ext_print(const struct reg_access_hca_mpegc_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mpegc_reg_ext_size(void); #define REG_ACCESS_HCA_MPEGC_REG_EXT_SIZE (0x2c) void reg_access_hca_mpegc_reg_ext_dump(const struct reg_access_hca_mpegc_reg_ext *ptr_struct, FILE *fd); /* mqis_reg_ext */ void reg_access_hca_mqis_reg_ext_pack(const struct reg_access_hca_mqis_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mqis_reg_ext_unpack(struct reg_access_hca_mqis_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mqis_reg_ext_print(const struct reg_access_hca_mqis_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mqis_reg_ext_size(void); #define REG_ACCESS_HCA_MQIS_REG_EXT_SIZE (0x18) void reg_access_hca_mqis_reg_ext_dump(const struct reg_access_hca_mqis_reg_ext *ptr_struct, FILE *fd); /* mrsi_ext */ void reg_access_hca_mrsi_ext_pack(const struct reg_access_hca_mrsi_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mrsi_ext_unpack(struct reg_access_hca_mrsi_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mrsi_ext_print(const struct reg_access_hca_mrsi_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mrsi_ext_size(void); #define REG_ACCESS_HCA_MRSI_EXT_SIZE (0x40) void reg_access_hca_mrsi_ext_dump(const struct reg_access_hca_mrsi_ext *ptr_struct, FILE *fd); /* mtcap_ext */ void reg_access_hca_mtcap_ext_pack(const struct reg_access_hca_mtcap_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtcap_ext_unpack(struct reg_access_hca_mtcap_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtcap_ext_print(const struct reg_access_hca_mtcap_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtcap_ext_size(void); #define REG_ACCESS_HCA_MTCAP_EXT_SIZE (0x10) void reg_access_hca_mtcap_ext_dump(const struct reg_access_hca_mtcap_ext *ptr_struct, FILE *fd); /* mtdc_ext */ void reg_access_hca_mtdc_ext_pack(const struct reg_access_hca_mtdc_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtdc_ext_unpack(struct reg_access_hca_mtdc_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtdc_ext_print(const struct reg_access_hca_mtdc_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtdc_ext_size(void); #define REG_ACCESS_HCA_MTDC_EXT_SIZE (0x20) void reg_access_hca_mtdc_ext_dump(const struct reg_access_hca_mtdc_ext *ptr_struct, FILE *fd); /* mteim_reg_ext */ void reg_access_hca_mteim_reg_ext_pack(const struct reg_access_hca_mteim_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mteim_reg_ext_unpack(struct reg_access_hca_mteim_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mteim_reg_ext_print(const struct reg_access_hca_mteim_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mteim_reg_ext_size(void); #define REG_ACCESS_HCA_MTEIM_REG_EXT_SIZE (0x30) void reg_access_hca_mteim_reg_ext_dump(const struct reg_access_hca_mteim_reg_ext *ptr_struct, FILE *fd); /* mtie_ext */ void reg_access_hca_mtie_ext_pack(const struct reg_access_hca_mtie_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtie_ext_unpack(struct reg_access_hca_mtie_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtie_ext_print(const struct reg_access_hca_mtie_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtie_ext_size(void); #define REG_ACCESS_HCA_MTIE_EXT_SIZE (0x30) void reg_access_hca_mtie_ext_dump(const struct reg_access_hca_mtie_ext *ptr_struct, FILE *fd); /* mtim_ext */ void reg_access_hca_mtim_ext_pack(const struct reg_access_hca_mtim_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtim_ext_unpack(struct reg_access_hca_mtim_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtim_ext_print(const struct reg_access_hca_mtim_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtim_ext_size(void); #define REG_ACCESS_HCA_MTIM_EXT_SIZE (0x10) void reg_access_hca_mtim_ext_dump(const struct reg_access_hca_mtim_ext *ptr_struct, FILE *fd); /* mtmp_ext */ void reg_access_hca_mtmp_ext_pack(const struct reg_access_hca_mtmp_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtmp_ext_unpack(struct reg_access_hca_mtmp_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtmp_ext_print(const struct reg_access_hca_mtmp_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtmp_ext_size(void); #define REG_ACCESS_HCA_MTMP_EXT_SIZE (0x20) void reg_access_hca_mtmp_ext_dump(const struct reg_access_hca_mtmp_ext *ptr_struct, FILE *fd); /* mtrc_cap_reg_ext */ void reg_access_hca_mtrc_cap_reg_ext_pack(const struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtrc_cap_reg_ext_unpack(struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtrc_cap_reg_ext_print(const struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtrc_cap_reg_ext_size(void); #define REG_ACCESS_HCA_MTRC_CAP_REG_EXT_SIZE (0x84) void reg_access_hca_mtrc_cap_reg_ext_dump(const struct reg_access_hca_mtrc_cap_reg_ext *ptr_struct, FILE *fd); /* mtrc_conf_reg_ext */ void reg_access_hca_mtrc_conf_reg_ext_pack(const struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtrc_conf_reg_ext_unpack(struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtrc_conf_reg_ext_print(const struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtrc_conf_reg_ext_size(void); #define REG_ACCESS_HCA_MTRC_CONF_REG_EXT_SIZE (0x80) void reg_access_hca_mtrc_conf_reg_ext_dump(const struct reg_access_hca_mtrc_conf_reg_ext *ptr_struct, FILE *fd); /* mtrc_ctrl_reg_ext */ void reg_access_hca_mtrc_ctrl_reg_ext_pack(const struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtrc_ctrl_reg_ext_unpack(struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtrc_ctrl_reg_ext_print(const struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtrc_ctrl_reg_ext_size(void); #define REG_ACCESS_HCA_MTRC_CTRL_REG_EXT_SIZE (0x40) void reg_access_hca_mtrc_ctrl_reg_ext_dump(const struct reg_access_hca_mtrc_ctrl_reg_ext *ptr_struct, FILE *fd); /* mtrc_stdb_reg_ext */ void reg_access_hca_mtrc_stdb_reg_ext_pack(const struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_mtrc_stdb_reg_ext_unpack(struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_mtrc_stdb_reg_ext_print(const struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_mtrc_stdb_reg_ext_size(void); #define REG_ACCESS_HCA_MTRC_STDB_REG_EXT_SIZE (0x8) void reg_access_hca_mtrc_stdb_reg_ext_dump(const struct reg_access_hca_mtrc_stdb_reg_ext *ptr_struct, FILE *fd); /* nic_cap_ext_reg_ext */ void reg_access_hca_nic_cap_ext_reg_ext_pack(const struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_nic_cap_ext_reg_ext_unpack(struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_nic_cap_ext_reg_ext_print(const struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_nic_cap_ext_reg_ext_size(void); #define REG_ACCESS_HCA_NIC_CAP_EXT_REG_EXT_SIZE (0x80) void reg_access_hca_nic_cap_ext_reg_ext_dump(const struct reg_access_hca_nic_cap_ext_reg_ext *ptr_struct, FILE *fd); /* nic_dpa_eu_partition_reg_ext */ void reg_access_hca_nic_dpa_eu_partition_reg_ext_pack(const struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_nic_dpa_eu_partition_reg_ext_unpack(struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_nic_dpa_eu_partition_reg_ext_print(const struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_nic_dpa_eu_partition_reg_ext_size(void); #define REG_ACCESS_HCA_NIC_DPA_EU_PARTITION_REG_EXT_SIZE (0x300) void reg_access_hca_nic_dpa_eu_partition_reg_ext_dump(const struct reg_access_hca_nic_dpa_eu_partition_reg_ext *ptr_struct, FILE *fd); /* nic_dpa_eug_reg_ext */ void reg_access_hca_nic_dpa_eug_reg_ext_pack(const struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_nic_dpa_eug_reg_ext_unpack(struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_nic_dpa_eug_reg_ext_print(const struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_nic_dpa_eug_reg_ext_size(void); #define REG_ACCESS_HCA_NIC_DPA_EUG_REG_EXT_SIZE (0x100) void reg_access_hca_nic_dpa_eug_reg_ext_dump(const struct reg_access_hca_nic_dpa_eug_reg_ext *ptr_struct, FILE *fd); /* nic_dpa_perf_ctrl_reg_ext */ void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_pack(const struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_unpack(struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_print(const struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_nic_dpa_perf_ctrl_reg_ext_size(void); #define REG_ACCESS_HCA_NIC_DPA_PERF_CTRL_REG_EXT_SIZE (0x40) void reg_access_hca_nic_dpa_perf_ctrl_reg_ext_dump(const struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext *ptr_struct, FILE *fd); /* paos_reg_ext */ void reg_access_hca_paos_reg_ext_pack(const struct reg_access_hca_paos_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_paos_reg_ext_unpack(struct reg_access_hca_paos_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_paos_reg_ext_print(const struct reg_access_hca_paos_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_paos_reg_ext_size(void); #define REG_ACCESS_HCA_PAOS_REG_EXT_SIZE (0x10) void reg_access_hca_paos_reg_ext_dump(const struct reg_access_hca_paos_reg_ext *ptr_struct, FILE *fd); /* pcnr_reg_ext */ void reg_access_hca_pcnr_reg_ext_pack(const struct reg_access_hca_pcnr_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_pcnr_reg_ext_unpack(struct reg_access_hca_pcnr_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_pcnr_reg_ext_print(const struct reg_access_hca_pcnr_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_pcnr_reg_ext_size(void); #define REG_ACCESS_HCA_PCNR_REG_EXT_SIZE (0xc) void reg_access_hca_pcnr_reg_ext_dump(const struct reg_access_hca_pcnr_reg_ext *ptr_struct, FILE *fd); /* pmaos_reg_ext */ void reg_access_hca_pmaos_reg_ext_pack(const struct reg_access_hca_pmaos_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_pmaos_reg_ext_unpack(struct reg_access_hca_pmaos_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_pmaos_reg_ext_print(const struct reg_access_hca_pmaos_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_pmaos_reg_ext_size(void); #define REG_ACCESS_HCA_PMAOS_REG_EXT_SIZE (0x10) void reg_access_hca_pmaos_reg_ext_dump(const struct reg_access_hca_pmaos_reg_ext *ptr_struct, FILE *fd); /* pmlp_reg_ext */ void reg_access_hca_pmlp_reg_ext_pack(const struct reg_access_hca_pmlp_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_pmlp_reg_ext_unpack(struct reg_access_hca_pmlp_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_pmlp_reg_ext_print(const struct reg_access_hca_pmlp_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_pmlp_reg_ext_size(void); #define REG_ACCESS_HCA_PMLP_REG_EXT_SIZE (0x40) void reg_access_hca_pmlp_reg_ext_dump(const struct reg_access_hca_pmlp_reg_ext *ptr_struct, FILE *fd); /* ptys_reg_ext */ void reg_access_hca_ptys_reg_ext_pack(const struct reg_access_hca_ptys_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_ptys_reg_ext_unpack(struct reg_access_hca_ptys_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_ptys_reg_ext_print(const struct reg_access_hca_ptys_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_ptys_reg_ext_size(void); #define REG_ACCESS_HCA_PTYS_REG_EXT_SIZE (0x44) void reg_access_hca_ptys_reg_ext_dump(const struct reg_access_hca_ptys_reg_ext *ptr_struct, FILE *fd); /* resource_dump_ext */ void reg_access_hca_resource_dump_ext_pack(const struct reg_access_hca_resource_dump_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_resource_dump_ext_unpack(struct reg_access_hca_resource_dump_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_resource_dump_ext_print(const struct reg_access_hca_resource_dump_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_resource_dump_ext_size(void); #define REG_ACCESS_HCA_RESOURCE_DUMP_EXT_SIZE (0x100) void reg_access_hca_resource_dump_ext_dump(const struct reg_access_hca_resource_dump_ext *ptr_struct, FILE *fd); /* reg_access_hca_Nodes */ void reg_access_hca_reg_access_hca_Nodes_pack(const union reg_access_hca_reg_access_hca_Nodes *ptr_struct, u_int8_t *ptr_buff); void reg_access_hca_reg_access_hca_Nodes_unpack(union reg_access_hca_reg_access_hca_Nodes *ptr_struct, const u_int8_t *ptr_buff); void reg_access_hca_reg_access_hca_Nodes_print(const union reg_access_hca_reg_access_hca_Nodes *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_hca_reg_access_hca_Nodes_size(void); #define REG_ACCESS_HCA_REG_ACCESS_HCA_NODES_SIZE (0x300) void reg_access_hca_reg_access_hca_Nodes_dump(const union reg_access_hca_reg_access_hca_Nodes *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // REG_ACCESS_HCA_LAYOUTS_H mstflint-4.26.0/tools_layouts/Makefile.am0000644000175000017500000000571014522641732020662 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir)/${MTCR_CONFIG_DIR} -I$(top_srcdir)/common AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) AM_CXXFLAGS = -DDATA_PATH=\"$(pkgdatadir)\" SUBDIRS = ${ADABE_DBS} noinst_LTLIBRARIES = libadb_utils.la libtools_layouts.la libmlxarchive_layouts.la toolslayoutsincludedir = $(includedir)/mstflint/tools_layouts/ toolslayoutsinclude_HEADERS = icmd_layouts.h icmd_hca_layouts.h adb_to_c_utils.h libadb_utils_la_SOURCES = adb_to_c_utils.c libtools_layouts_la_SOURCES = prm_adb_db.cpp prm_adb_db.h \ adb_to_c_utils.c adb_to_c_utils.h\ cibfw_layouts.c cibfw_layouts.h \ register_access_open_layouts.h register_access_open_layouts.c \ tools_open_layouts.c tools_open_layouts.h\ register_access_sib_layouts.h register_access_sib_layouts.c \ cx4fw_layouts.c cx4fw_layouts.h \ image_layout_layouts.c image_layout_layouts.h\ cx6fw_layouts.c cx6fw_layouts.h\ icmd_layouts.c icmd_layouts.h \ icmd_hca_layouts.c icmd_hca_layouts.h \ reg_access_hca_layouts.c reg_access_hca_layouts.h\ image_info_layouts.c image_info_layouts.h \ reg_access_switch_layouts.c reg_access_switch_layouts.h \ fs5_image_layout_layouts.h fs5_image_layout_layouts.c libtools_layouts_la_DEPENDENCIES = libadb_utils.la libmlxarchive_layouts_la_DEPENDENCIES = $(libtools_layouts_la_DEPENDENCIES) libmlxarchive_layouts_la_LIBADD = $(libtools_layouts_la_LIBADD) libmlxarchive_layouts_la_SOURCES = mlxarchive_layouts.h mlxarchive_layouts.c EXTRA_DIST = ${ADABE_DBS_EXTRA_DIST} mstflint-4.26.0/tools_layouts/adb_to_c_utils.h0000644000175000017500000002612714522641732021756 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2016-10-19 23:52:08" *** by: *** > [REDACTED]/adb2pack.py --input adb/connectx5/connectx5.adb *--file-prefix connectx5 --prefix connectx5_ ***/ #ifndef ADABE_TO_C_UTILS #define ADABE_TO_C_UTILS #include #include #include // for htonl etc... #if defined(_WIN32) || defined(_WIN64) #include #else /* Linux */ #include #endif /* Windows */ #ifdef __cplusplus extern "C" { #endif /************************************/ /************************************/ /************************************/ /* Endianess Defines */ #if __BYTE_ORDER == __LITTLE_ENDIAN #define PLATFORM_MEM "Little Endianess" #define _LITTLE_ENDIANESS #else /* __BYTE_ORDER == __BIG_ENDIAN */ #define PLATFORM_MEM "Big Endianess" #define _BIG_ENDIANESS #endif /* Bit manipulation macros */ /* MASK generate a bit mask S bits width */ //#define ADB2C_MASK32(S) ( ((u_int32_t) ~0L) >> (32-(S)) ) #define ADB2C_MASK8(S) (((u_int8_t)~0) >> (8 - (S))) /* BITS generate a bit mask with bits O+S..O set (assumes 32 / 8 bit integer) */ //#define ADB2C_BITS32(O,S) ( ADB2C_MASK32(S) << (O) ) #define ADB2C_BITS8(O, S) (ADB2C_MASK8(S) << (O)) /* EXTRACT32/8 macro extracts S bits from (u_int32_t/u_int8_t)W with offset O * and shifts them O places to the right (right justifies the field extracted) */ //#define ADB2C_EXTRACT32(W,O,S) ( ((W)>>(O)) & ADB2C_MASK32(S) ) #define ADB2C_EXTRACT8(W, O, S) (((W) >> (O)) & ADB2C_MASK8(S)) /* INSERT32/8 macro inserts S bits with offset O from field F into word W (u_int32_t/u_int8_t) */ //#define ADB2C_INSERT32(W,F,O,S) ((W)= ( ( (W) & (~ADB2C_BITS32(O,S)) ) | (((F) & ADB2C_MASK32(S))<<(O)) )) #define ADB2C_INSERT8(W, F, O, S) ((W) = (((W) & (~ADB2C_BITS8(O, S))) | (((F)&ADB2C_MASK8(S)) << (O)))) //#define ADB2C_INSERTF_32(W,O1,F,O2,S) (ADB2C_INSERT32(W, ADB2C_EXTRACT32(F, O2, S), O1, S) ) #define ADB2C_INSERTF_8(W, O1, F, O2, S) (ADB2C_INSERT8(W, ADB2C_EXTRACT8(F, O2, S), O1, S)) #define ADB2C_PTR_64_OF_BUFF(buf, offset) ((u_int64_t*)((u_int8_t*)(buf) + (offset))) #define ADB2C_PTR_32_OF_BUFF(buf, offset) ((u_int32_t*)((u_int8_t*)(buf) + (offset))) #define ADB2C_PTR_8_OF_BUFF(buf, offset) ((u_int8_t*)((u_int8_t*)(buf) + (offset))) #define ADB2C_FIELD_64_OF_BUFF(buf, offset) (*ADB2C_PTR_64_OF_BUFF(buf, offset)) #define ADB2C_FIELD_32_OF_BUFF(buf, offset) (*ADB2C_PTR_32_OF_BUFF(buf, offset)) #define ADB2C_FIELD_8_OF_BUFF(buf, offset) (*ADB2C_PTR_8_OF_BUFF(buf, offset)) #define ADB2C_DWORD_N(buf, n) ADB2C_FIELD_32_OF_BUFF((buf), (n)*4) #define ADB2C_BYTE_N(buf, n) ADB2C_FIELD_8_OF_BUFF((buf), (n)) #define ADB2C_MIN(a, b) ((a) < (b) ? (a) : (b)) #define ADB2C_CPU_TO_BE32(x) htonl(x) #define ADB2C_BE32_TO_CPU(x) ntohl(x) #define ADB2C_CPU_TO_BE16(x) htons(x) #define ADB2C_BE16_TO_CPU(x) ntohs(x) #ifdef _LITTLE_ENDIANESS #define ADB2C_CPU_TO_BE64(x) \ (((u_int64_t)htonl((u_int32_t)((x)&0xffffffff)) << 32) | ((u_int64_t)htonl((u_int32_t)((x >> 32) & 0xffffffff)))) #define ADB2C_BE64_TO_CPU(x) \ (((u_int64_t)ntohl((u_int32_t)((x)&0xffffffff)) << 32) | ((u_int64_t)ntohl((u_int32_t)((x >> 32) & 0xffffffff)))) #define ADB2C_LE64_TO_CPU(x) (x) #define ADB2C_CPU_TO_LE64(x) (x) #else #define ADB2C_CPU_TO_BE64(x) (x) #define ADB2C_BE64_TO_CPU(x) (x) #define ADB2C_LE64_TO_CPU(x) \ (((u_int64_t)ntohl((u_int32_t)((x)&0xffffffff)) << 32) | ((u_int64_t)ntohl((u_int32_t)((x >> 32) & 0xffffffff)))) #define ADB2C_CPU_TO_LE64(x) \ (((u_int64_t)ntohl((u_int32_t)((x)&0xffffffff)) << 32) | ((u_int64_t)ntohl((u_int32_t)((x >> 32) & 0xffffffff)))) #endif /* define macros to the architecture of the CPU */ #if defined(__linux__) || defined(__FreeBSD__) /* __linux || __FreeBSD__ */ #if defined(__i386__) #define ARCH_x86 #elif defined(__x86_64__) #define ARCH_x86_64 #elif defined(__ia64__) #define ARCH_ia64 #elif defined(__m68k__) #define ARCH_m68k #elif defined(__hppa__) #define ARCH_hppa #elif defined(__PPC64__) || defined(__s390x__) #define ARCH_ppc64 #elif defined(__PPC__) #define ARCH_ppc #elif defined(__aarch64__) #define ARCH_arm64 #elif defined(__arm__) #define ARCH_arm6l #elif defined(__riscv) #define ARCH_riscv #elif defined(__loongarch_lp64) #define ARCH_loongarch64 #elif defined(__e2k__) #define ARCH_e2k #else #error Unknown CPU architecture using the linux OS #endif #elif defined(__MINGW32__) || defined(__MINGW64__) /* Windows MINGW */ #if defined(__MINGW32__) #define ARCH_x86 #elif defined(__MINGW64__) #define ARCH_x86_64 #else #error Unknown CPU architecture using the windows-mingw OS #endif #elif defined(_WIN32) || defined(_WIN64) /* Windows */ #if defined(_WIN32) #define ARCH_x86 #elif defined(_WIN64) #define ARCH_x86_64 #else #error Unknown CPU architecture using the windows OS #endif #else /* Unknown */ #error Unknown OS #endif /* define macros for print fields */ #define U32D_FMT "%u" #define U32H_FMT "0x%08x" #define UH_FMT "0x%x" #define STR_FMT "%s" #define U16H_FMT "0x%04x" #define U8H_FMT "0x%02x" #if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_arm6l) || defined(ARCH_m68k) || defined(ARCH_hppa) #if defined(__MINGW32__) || defined(__MINGW64__) #include #define U64D_FMT "0x%" PRId64 #define U64H_FMT "0x%" PRIx64 #define U48H_FMT "0x%" PRIx64 #else #define U64D_FMT "%llu" #define U64H_FMT "0x%016llx" #define U48H_FMT "0x%012llx" #endif #elif defined(ARCH_ia64) || defined(ARCH_x86_64) || defined(ARCH_ppc64) || defined(ARCH_arm64) || defined(ARCH_riscv) || defined(ARCH_loongarch64) || defined(ARCH_e2k) #define U64D_FMT "%lu" #define U64H_FMT "0x%016lx" #define U48H_FMT "0x%012lx" #else #error Unknown architecture #endif /* ARCH */ #if !defined(_WIN32) && !defined(_WIN64) /* Linux */ #include #elif defined(__MINGW32__) || defined(__MINGW64__) || defined(_MSC_VER) /* windows - mingw */ #include #ifndef MFT_TOOLS_VARS #define MFT_TOOLS_VARS typedef uint8_t u_int8_t; typedef uint16_t u_int16_t; typedef uint32_t u_int32_t; typedef uint64_t u_int64_t; #endif #else /* Windows */ typedef __int8 int8_t; typedef unsigned __int8 u_int8_t; typedef __int16 int16_t; typedef unsigned __int16 u_int16_t; typedef __int32 int32_t; typedef unsigned __int32 u_int32_t; typedef __int64 int64_t; typedef unsigned __int64 u_int64_t; #endif /************************************/ /************************************/ /************************************/ struct adb2c_attr_format { const char* name; const char* val; }; struct adb2c_enum_format { int val; const char* name; }; struct adb2c_field_format { const char* full_name; const char* desc; int offs; int size; int enums_len; struct adb2c_enum_format* enums; int attrs_len; struct adb2c_attr_format* attrs; }; struct adb2c_node_format { const char* name; const char* desc; int size; int is_union; int attrs_len; struct adb2c_attr_format* attrs; int fields_len; struct adb2c_field_format* fields; }; struct adb2c_node_db { int nodes_len; struct adb2c_node_format* nodes; }; /************************************/ /************************************/ /************************************/ u_int32_t adb2c_calc_array_field_address(u_int32_t start_bit_offset, u_int32_t arr_elemnt_size, int arr_idx, u_int32_t parent_node_size, int is_big_endian_arr); /* Big Endian Functions */ void adb2c_push_integer_to_buff(u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size, u_int64_t field_value); void adb2c_push_bits_to_buff(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int32_t field_value); void adb2c_push_to_buf(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int64_t field_value); u_int64_t adb2c_pop_integer_from_buff(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size); u_int32_t adb2c_pop_bits_from_buff(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size); u_int64_t adb2c_pop_from_buf(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size); /* Little Endian Functions */ void adb2c_push_integer_to_buff_le(u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size, u_int64_t field_value); void adb2c_push_bits_to_buff_le(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int32_t field_value); void adb2c_push_to_buf_le(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int64_t field_value); u_int64_t adb2c_pop_integer_from_buff_le(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t byte_size); u_int32_t adb2c_pop_bits_from_buff_le(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size); u_int64_t adb2c_pop_from_buf_le(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size); void adb2c_add_indentation(FILE* file, int indent_level); void adb2c_print_raw(FILE* file, void* buff, int buff_len); const char* adb2c_db_get_field_enum_name(struct adb2c_field_format* field, int val); int adb2c_db_get_field_enum_val(struct adb2c_field_format* field, const char* name); const char* adb2c_db_get_field_attr(struct adb2c_field_format* field, const char* attr_name); const char* adb2c_db_get_node_attr(struct adb2c_node_format* node, const char* attr_name); struct adb2c_node_format* adb2c_db_find_node(struct adb2c_node_db* db, const char* node_name); struct adb2c_field_format* adb2c_db_find_field(struct adb2c_node_format*, const char* field_name); #ifdef __cplusplus } #endif #endif // ADABE_TO_C_UTILS mstflint-4.26.0/tools_layouts/image_info_layouts.h0000644000175000017500000004722414522641732022662 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2018-06-25 13:22:56" *** by: *** > [REDACTED]/adb2pack.py --input adb/connectx4/connectx4.adb *--file-prefix connectx4 --prefix connectx4_ ***/ #ifndef IMAGE_INFO_LAYOUTS_H #define IMAGE_INFO_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 16 */ struct connectx4_FW_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.8 - 0x8.15 */ u_int8_t Hour; /* Description - */ /* 0x8.16 - 0x8.23 */ u_int8_t Minutes; /* Description - */ /* 0x8.24 - 0x8.31 */ u_int8_t Seconds; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.7 */ u_int8_t Day; /* Description - */ /* 0xc.8 - 0xc.15 */ u_int8_t Month; /* Description - */ /* 0xc.16 - 0xc.31 */ u_int16_t Year; }; /* Description - */ /* Size in bytes - 8 */ struct connectx4_TRIPPLE_VERSION { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.16 - 0x0.31 */ u_int16_t MAJOR; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.15 */ u_int16_t SUBMINOR; /* Description - */ /* 0x4.16 - 0x4.31 */ u_int16_t MINOR; }; /* Description - */ /* Size in bytes - 4 */ struct connectx4_module_version { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.7 */ u_int8_t branch; /* Description - */ /* 0x0.8 - 0x0.19 */ u_int16_t minor; /* Description - */ /* 0x0.20 - 0x0.31 */ u_int16_t major; }; /* Description - */ /* Size in bytes - 8 */ struct connectx4_image_size { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - log of next address in bytes to search for an image. Address in bytes is 2^log_step */ /* 0x0.0 - 0x0.7 */ u_int8_t log_step; /* Description - this image can run from any partition starting at address 0x0000000, 0x4000000, 0x800000. The * code supports only two partitions. */ /* 0x0.31 - 0x0.31 */ u_int8_t run_from_any; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Max possible size in bytes of image. Image read / write should not occure beyond this address */ /* 0x4.0 - 0x4.31 */ u_int32_t max_size; }; /* Description - */ /* Size in bytes - 64 */ struct connectx4_module_versions { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x0.31 */ struct connectx4_module_version core; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x4.31 */ struct connectx4_module_version phy; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - */ /* 0x8.0 - 0x8.31 */ struct connectx4_module_version kernel; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - */ /* 0xc.0 - 0xc.31 */ struct connectx4_module_version iron_image; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - */ /* 0x10.0 - 0x10.31 */ struct connectx4_module_version host_management; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x14.31 */ struct connectx4_module_version mad; }; /* Description - */ /* Size in bytes - 1024 */ struct connectx4_image_info { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Indicate that this binary support long keys (up to 4096bits) */ /* 0x0.6 - 0x0.6 */ u_int8_t long_keys; /* Description - when set, debug-fw tokens are enabled. */ /* 0x0.7 - 0x0.7 */ u_int8_t debug_fw_tokens_supported; /* Description - The image can be updated using the MCC/MCDA commands */ /* 0x0.8 - 0x0.8 */ u_int8_t mcc_en; /* Description - OEM lifecycle NVCONFIG files are signed */ /* 0x0.9 - 0x0.9 */ u_int8_t signed_vendor_nvconfig_files; /* Description - Mellanox lifecycle NVCONFIG files are signed */ /* 0x0.10 - 0x0.10 */ u_int8_t signed_mlnx_nvconfig_files; /* Description - Factory re-customizationflow is supported */ /* 0x0.11 - 0x0.11 */ u_int8_t frc_supported; /* Description - Customer Support Tokens are supported */ /* 0x0.12 - 0x0.12 */ u_int8_t cs_tokens_supported; /* Description - This is a debug firmware */ /* 0x0.13 - 0x0.13 */ u_int8_t debug_fw; /* Description - [MCC/MCDA flow] if set, the SHA 256 digest is encrypted - enabled by default for secure_fw - * cr-space not closed */ /* 0x0.14 - 0x0.14 */ u_int8_t signed_fw; /* Description - [MCC/MCDA flow] cr-space closed */ /* 0x0.15 - 0x0.15 */ u_int8_t secure_fw; /* Description - IMAGE_INFO section minor version */ /* 0x0.16 - 0x0.23 */ u_int8_t minor_version; /* Description - IMAGE_INFO section major version */ /* 0x0.24 - 0x0.31 */ u_int8_t major_version; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - */ /* 0x4.0 - 0x10.31 */ struct connectx4_FW_VERSION FW_VERSION; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.0 - 0x18.31 */ struct connectx4_TRIPPLE_VERSION mic_version; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t pci_vendor_id; /* Description - */ /* 0x1c.16 - 0x1c.31 */ u_int16_t pci_device_id; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - */ /* 0x20.0 - 0x20.15 */ u_int16_t pci_sub_vendor_id; /* Description - */ /* 0x20.16 - 0x20.31 */ u_int16_t pci_subsystem_id; /*---------------- DWORD[9] (Offset 0x24) ----------------*/ /* Description - */ /* 0x24.24 - 0x34.23 */ char psid[17]; /*---------------- DWORD[13] (Offset 0x34) ----------------*/ /* Description - */ /* 0x34.0 - 0x34.15 */ u_int16_t vsd_vendor_id; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - */ /* 0x38.24 - 0x108.23 */ char vsd[209]; /*---------------- DWORD[66] (Offset 0x108) ----------------*/ /* Description - image size parameters */ /* 0x108.0 - 0x10c.31 */ struct connectx4_image_size image_size; /*---------------- DWORD[70] (Offset 0x118) ----------------*/ /* Description - HW device(s) supported by this FW image. 0 means invalid entry. For Golan A0, first entry should be 0x1ff */ /* 0x118.0 - 0x124.31 */ u_int32_t supported_hw_id[4]; /*---------------- DWORD[74] (Offset 0x128) ----------------*/ /* Description - */ /* 0x128.0 - 0x128.31 */ u_int32_t ini_file_num; /*---------------- DWORD[112] (Offset 0x1c0) ----------------*/ /* Description - Product Version is the unified version of the FW and expansion ROM. Format is defined by the packager. When set to a non-empty string the FW update tool burns the image as a monolythic entity and refuses to update rom only or FW only. */ /* 0x1c0.24 - 0x1d0.23 */ char prod_ver[17]; /*---------------- DWORD[116] (Offset 0x1d0) ----------------*/ /* Description - Product description */ /* 0x1d0.24 - 0x2d0.23 */ char description[257]; /*---------------- DWORD[192] (Offset 0x300) ----------------*/ /* Description - */ /* 0x300.0 - 0x33c.31 */ struct connectx4_module_versions module_versions; /*---------------- DWORD[208] (Offset 0x340) ----------------*/ /* Description - Product name */ /* 0x340.24 - 0x380.23 */ char name[65]; /*---------------- DWORD[224] (Offset 0x380) ----------------*/ /* Description - PRS used to generate the FW binary */ /* 0x380.24 - 0x400.23 */ char prs_name[129]; }; /* Description - */ /* Size in bytes - 32 */ struct connectx4_itoc_entry { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.2 - 0x0.23 */ u_int32_t size; /* Description - Section ID Section Type DESCRIPTION 0x1 BOOT_CODE FW loader code 0x2 PCI_CODE Code that is required to raise PCIe link. 0x3 MAIN_CODE All non-PCIe FW code 0x8 HW_BOOT_CFG Initial values for the PCI related registers 0x9 HW_MAIN_CFG Initial values for all other registers 0x10 IMAGE_INFO Management data for the burning tool. See 'Image Info Section' chapter in the Mellanox Flash Programming Application Note 0x11 FW_BOOT_CFG Initial values for user set-able hi level non-hardware related settings, such as number of physical functions (optional) 0x12 FW_MAIN_CFG Initial values for user set-able hi level non-hardware related settings. (optional) 0x18 ROM_CODE PXE/Boot over IB code. 0x30 DBG_LOG_MAP FW logger 'index to string' map. The map is in ASCI text. Format is TBD. PARAM0 in the iTOC specifies the compression method of this sector: 0. Uncompressed 1. Zlib compress2() 2. LZMA Others - Reserved 0x31 DBG_FW_INI The Ini file used in the image generation. The PARAM0 applies the same as in DBG_LOG_MAP section type. 0x32 DBG_FW_PARAMS FW settable parameters. ASCII text. Format is TBD. The PARAM0 applies the same as in DBG_LOG_MAP section type. 0xff END_MARKER A type of 0xff marks the end of the iTOC entries array. It is recommended to leave the unused part of the iTOC section blank (that is, 0xff in all unused bytes) All other values Reserved */ /* 0x0.24 - 0x0.31 */ u_int8_t type; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - if partition type is code or ini then the load address is in here */ /* 0x4.0 - 0x4.29 */ u_int32_t param0; /* Description - When this bit is set, Data within the section is protected by per-line crc. See * yu.flash.replacement.crc_en */ /* 0x4.30 - 0x4.30 */ u_int8_t cache_line_crc; /* Description - When this bit is set, image is zipped */ /* 0x4.31 - 0x4.31 */ u_int8_t zipped_image; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - if partition type is code then the jump address is in here */ /* 0x8.0 - 0x8.31 */ u_int32_t param1; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - */ /* 0x14.2 - 0x14.30 */ u_int32_t flash_addr; /* Description - */ /* 0x14.31 - 0x14.31 */ u_int8_t relative_addr; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - */ /* 0x18.0 - 0x18.15 */ u_int16_t section_crc; /* Description - */ /* 0x18.16 - 0x18.16 */ u_int8_t no_crc; /* Description - When this bit is set, the section pointed by this entry in belongs to teh device tather than to teh FW image. A device_data section should not be updated in a regular FW update. Example for device_data section: VPD_R, GUIDs. */ /* 0x18.17 - 0x18.17 */ u_int8_t device_data; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t itoc_entry_crc; }; /* Description - */ /* Size in bytes - 32 */ struct connectx4_itoc_header { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 49 54 4f 43 */ /* 0x0.0 - 0x0.31 */ u_int32_t signature0; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - 04 08 15 16 */ /* 0x4.0 - 0x4.31 */ u_int32_t signature1; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - 23 42 ca fa */ /* 0x8.0 - 0x8.31 */ u_int32_t signature2; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - ba ca fe 00 */ /* 0xc.0 - 0xc.31 */ u_int32_t signature3; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Current version: 1 */ /* 0x10.0 - 0x10.7 */ u_int8_t version; /* Description - itoc_header: Represents the minimal layout version expected on the flash: 0. */ /* 0x10.24 - 0x10.31 */ u_int8_t flash_layout_version; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - */ /* 0x1c.0 - 0x1c.15 */ u_int16_t itoc_entry_crc; }; /* FW_VERSION */ void connectx4_FW_VERSION_pack(const struct connectx4_FW_VERSION* ptr_struct, u_int8_t* ptr_buff); void connectx4_FW_VERSION_unpack(struct connectx4_FW_VERSION* ptr_struct, const u_int8_t* ptr_buff); void connectx4_FW_VERSION_print(const struct connectx4_FW_VERSION* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_FW_VERSION_size(void); #define CONNECTX4_FW_VERSION_SIZE (0x10) void connectx4_FW_VERSION_dump(const struct connectx4_FW_VERSION* ptr_struct, FILE* fd); /* module_version */ void connectx4_module_version_pack(const struct connectx4_module_version* ptr_struct, u_int8_t* ptr_buff); void connectx4_module_version_unpack(struct connectx4_module_version* ptr_struct, const u_int8_t* ptr_buff); void connectx4_module_version_print(const struct connectx4_module_version* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_module_version_size(void); #define CONNECTX4_MODULE_VERSION_SIZE (0x4) void connectx4_module_version_dump(const struct connectx4_module_version* ptr_struct, FILE* fd); /* TRIPPLE_VERSION */ void connectx4_TRIPPLE_VERSION_pack(const struct connectx4_TRIPPLE_VERSION* ptr_struct, u_int8_t* ptr_buff); void connectx4_TRIPPLE_VERSION_unpack(struct connectx4_TRIPPLE_VERSION* ptr_struct, const u_int8_t* ptr_buff); void connectx4_TRIPPLE_VERSION_print(const struct connectx4_TRIPPLE_VERSION* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_TRIPPLE_VERSION_size(void); #define CONNECTX4_TRIPPLE_VERSION_SIZE (0x8) void connectx4_TRIPPLE_VERSION_dump(const struct connectx4_TRIPPLE_VERSION* ptr_struct, FILE* fd); /* image_size */ void connectx4_image_size_pack(const struct connectx4_image_size* ptr_struct, u_int8_t* ptr_buff); void connectx4_image_size_unpack(struct connectx4_image_size* ptr_struct, const u_int8_t* ptr_buff); void connectx4_image_size_print(const struct connectx4_image_size* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_image_size_size(void); #define CONNECTX4_IMAGE_SIZE_SIZE (0x8) void connectx4_image_size_dump(const struct connectx4_image_size* ptr_struct, FILE* fd); /* module_versions */ void connectx4_module_versions_pack(const struct connectx4_module_versions* ptr_struct, u_int8_t* ptr_buff); void connectx4_module_versions_unpack(struct connectx4_module_versions* ptr_struct, const u_int8_t* ptr_buff); void connectx4_module_versions_print(const struct connectx4_module_versions* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_module_versions_size(void); #define CONNECTX4_MODULE_VERSIONS_SIZE (0x40) void connectx4_module_versions_dump(const struct connectx4_module_versions* ptr_struct, FILE* fd); /* image_info */ void connectx4_image_info_pack(const struct connectx4_image_info* ptr_struct, u_int8_t* ptr_buff); void connectx4_image_info_unpack(struct connectx4_image_info* ptr_struct, const u_int8_t* ptr_buff); void connectx4_image_info_print(const struct connectx4_image_info* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_image_info_size(void); #define CONNECTX4_IMAGE_INFO_SIZE (0x400) void connectx4_image_info_dump(const struct connectx4_image_info* ptr_struct, FILE* fd); /* itoc_entry */ void connectx4_itoc_entry_pack(const struct connectx4_itoc_entry* ptr_struct, u_int8_t* ptr_buff); void connectx4_itoc_entry_unpack(struct connectx4_itoc_entry* ptr_struct, const u_int8_t* ptr_buff); void connectx4_itoc_entry_print(const struct connectx4_itoc_entry* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_itoc_entry_size(void); #define CONNECTX4_ITOC_ENTRY_SIZE (0x20) void connectx4_itoc_entry_dump(const struct connectx4_itoc_entry* ptr_struct, FILE* fd); /* itoc_header */ void connectx4_itoc_header_pack(const struct connectx4_itoc_header* ptr_struct, u_int8_t* ptr_buff); void connectx4_itoc_header_unpack(struct connectx4_itoc_header* ptr_struct, const u_int8_t* ptr_buff); void connectx4_itoc_header_print(const struct connectx4_itoc_header* ptr_struct, FILE* fd, int indent_level); unsigned int connectx4_itoc_header_size(void); #define CONNECTX4_ITOC_HEADER_SIZE (0x20) void connectx4_itoc_header_dump(const struct connectx4_itoc_header* ptr_struct, FILE* fd); #ifdef __cplusplus } #endif #endif // IMAGE_INFO_LAYOUTS_H mstflint-4.26.0/tools_layouts/register_access_sib_layouts.c0000644000175000017500000006240314522641732024556 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2019-03-23 21:38:49" *** by: *** > [REDACTED]/adb2pack.py --input *adb/register_access/register_access_sib.adb --file-prefix register_access_sib --prefix register_access_sib_ ***/ #include "register_access_sib_layouts.h" void register_access_sib_IB_PSID__pack(const struct register_access_sib_IB_PSID_* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 128, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->PS_ID[i]); } } void register_access_sib_IB_PSID__unpack(struct register_access_sib_IB_PSID_* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 128, 1); ptr_struct->PS_ID[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void register_access_sib_IB_PSID__print(const struct register_access_sib_IB_PSID_* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_IB_PSID_ ========\n"); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "PS_ID_%03d : " U32H_FMT "\n", i, ptr_struct->PS_ID[i]); } } unsigned int register_access_sib_IB_PSID__size(void) { return REGISTER_ACCESS_SIB_IB_PSID__SIZE; } void register_access_sib_IB_PSID__dump(const struct register_access_sib_IB_PSID_* ptr_struct, FILE* fd) { register_access_sib_IB_PSID__print(ptr_struct, fd, 0); } void register_access_sib_IB_DEVInfo__pack(const struct register_access_sib_IB_DEVInfo_* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 7; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 224, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->dev_branch_tag[i]); } } void register_access_sib_IB_DEVInfo__unpack(struct register_access_sib_IB_DEVInfo_* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 7; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 224, 1); ptr_struct->dev_branch_tag[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void register_access_sib_IB_DEVInfo__print(const struct register_access_sib_IB_DEVInfo_* ptr_struct, FILE* fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_IB_DEVInfo_ ========\n"); for (i = 0; i < 7; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "dev_branch_tag_%03d : " U32H_FMT "\n", i, ptr_struct->dev_branch_tag[i]); } } unsigned int register_access_sib_IB_DEVInfo__size(void) { return REGISTER_ACCESS_SIB_IB_DEVINFO__SIZE; } void register_access_sib_IB_DEVInfo__dump(const struct register_access_sib_IB_DEVInfo_* ptr_struct, FILE* fd) { register_access_sib_IB_DEVInfo__print(ptr_struct, fd, 0); } void register_access_sib_IB_FWInfo__pack(const struct register_access_sib_IB_FWInfo_* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->SubMinor); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Minor); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Major); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->BuildID); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->Year); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Day); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Month); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->Hour); offset = 128; register_access_sib_IB_PSID__pack(&(ptr_struct->PSID), ptr_buff + offset / 8); offset = 256; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->INIFileNum); offset = 288; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->extended_major); offset = 320; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->extended_minor); offset = 352; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->extended_subminor); } void register_access_sib_IB_FWInfo__unpack(struct register_access_sib_IB_FWInfo_* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->SubMinor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->Minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->Major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->BuildID = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->Year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 72; ptr_struct->Day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->Month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->Hour = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 128; register_access_sib_IB_PSID__unpack(&(ptr_struct->PSID), ptr_buff + offset / 8); offset = 256; ptr_struct->INIFileNum = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 288; ptr_struct->extended_major = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 320; ptr_struct->extended_minor = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 352; ptr_struct->extended_subminor = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void register_access_sib_IB_FWInfo__print(const struct register_access_sib_IB_FWInfo_* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_IB_FWInfo_ ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SubMinor : " UH_FMT "\n", ptr_struct->SubMinor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Minor : " UH_FMT "\n", ptr_struct->Minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Major : " UH_FMT "\n", ptr_struct->Major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "BuildID : " U32H_FMT "\n", ptr_struct->BuildID); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Year : " UH_FMT "\n", ptr_struct->Year); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Day : " UH_FMT "\n", ptr_struct->Day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Month : " UH_FMT "\n", ptr_struct->Month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Hour : " UH_FMT "\n", ptr_struct->Hour); adb2c_add_indentation(fd, indent_level); fprintf(fd, "PSID:\n"); register_access_sib_IB_PSID__print(&(ptr_struct->PSID), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "INIFileNum : " U32H_FMT "\n", ptr_struct->INIFileNum); adb2c_add_indentation(fd, indent_level); fprintf(fd, "extended_major : " U32H_FMT "\n", ptr_struct->extended_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "extended_minor : " U32H_FMT "\n", ptr_struct->extended_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "extended_subminor : " U32H_FMT "\n", ptr_struct->extended_subminor); } unsigned int register_access_sib_IB_FWInfo__size(void) { return REGISTER_ACCESS_SIB_IB_FWINFO__SIZE; } void register_access_sib_IB_FWInfo__dump(const struct register_access_sib_IB_FWInfo_* ptr_struct, FILE* fd) { register_access_sib_IB_FWInfo__print(ptr_struct, fd, 0); } void register_access_sib_IB_HWInfo__pack(const struct register_access_sib_IB_HWInfo_* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->DEVID); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->REVID); offset = 59; adb2c_push_bits_to_buff(ptr_buff, offset, 5, (u_int32_t)ptr_struct->pvs); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hw_dev_id); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->UpTime); } void register_access_sib_IB_HWInfo__unpack(struct register_access_sib_IB_HWInfo_* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->DEVID = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 0; ptr_struct->REVID = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 59; ptr_struct->pvs = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 5); offset = 80; ptr_struct->hw_dev_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 224; ptr_struct->UpTime = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void register_access_sib_IB_HWInfo__print(const struct register_access_sib_IB_HWInfo_* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_IB_HWInfo_ ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "DEVID : " UH_FMT "\n", ptr_struct->DEVID); adb2c_add_indentation(fd, indent_level); fprintf(fd, "REVID : " UH_FMT "\n", ptr_struct->REVID); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pvs : " UH_FMT "\n", ptr_struct->pvs); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_dev_id : " UH_FMT "\n", ptr_struct->hw_dev_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "UpTime : " U32H_FMT "\n", ptr_struct->UpTime); } unsigned int register_access_sib_IB_HWInfo__size(void) { return REGISTER_ACCESS_SIB_IB_HWINFO__SIZE; } void register_access_sib_IB_HWInfo__dump(const struct register_access_sib_IB_HWInfo_* ptr_struct, FILE* fd) { register_access_sib_IB_HWInfo__print(ptr_struct, fd, 0); } void register_access_sib_IB_SWInfo__pack(const struct register_access_sib_IB_SWInfo_* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->VerSubMinor); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->VerMinor); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->VerMajor); } void register_access_sib_IB_SWInfo__unpack(struct register_access_sib_IB_SWInfo_* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->VerSubMinor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->VerMinor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->VerMajor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void register_access_sib_IB_SWInfo__print(const struct register_access_sib_IB_SWInfo_* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_IB_SWInfo_ ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "VerSubMinor : " UH_FMT "\n", ptr_struct->VerSubMinor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "VerMinor : " UH_FMT "\n", ptr_struct->VerMinor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "VerMajor : " UH_FMT "\n", ptr_struct->VerMajor); } unsigned int register_access_sib_IB_SWInfo__size(void) { return REGISTER_ACCESS_SIB_IB_SWINFO__SIZE; } void register_access_sib_IB_SWInfo__dump(const struct register_access_sib_IB_SWInfo_* ptr_struct, FILE* fd) { register_access_sib_IB_SWInfo__print(ptr_struct, fd, 0); } void register_access_sib_mgir_pack(const struct register_access_sib_mgir* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; register_access_sib_IB_HWInfo__pack(&(ptr_struct->HWInfo), ptr_buff + offset / 8); offset = 256; register_access_sib_IB_FWInfo__pack(&(ptr_struct->FWInfo), ptr_buff + offset / 8); offset = 768; register_access_sib_IB_SWInfo__pack(&(ptr_struct->SWInfo), ptr_buff + offset / 8); offset = 1024; register_access_sib_IB_DEVInfo__pack(&(ptr_struct->DEVInfo), ptr_buff + offset / 8); } void register_access_sib_mgir_unpack(struct register_access_sib_mgir* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 0; register_access_sib_IB_HWInfo__unpack(&(ptr_struct->HWInfo), ptr_buff + offset / 8); offset = 256; register_access_sib_IB_FWInfo__unpack(&(ptr_struct->FWInfo), ptr_buff + offset / 8); offset = 768; register_access_sib_IB_SWInfo__unpack(&(ptr_struct->SWInfo), ptr_buff + offset / 8); offset = 1024; register_access_sib_IB_DEVInfo__unpack(&(ptr_struct->DEVInfo), ptr_buff + offset / 8); } void register_access_sib_mgir_print(const struct register_access_sib_mgir* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_mgir ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "HWInfo:\n"); register_access_sib_IB_HWInfo__print(&(ptr_struct->HWInfo), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FWInfo:\n"); register_access_sib_IB_FWInfo__print(&(ptr_struct->FWInfo), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SWInfo:\n"); register_access_sib_IB_SWInfo__print(&(ptr_struct->SWInfo), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "DEVInfo:\n"); register_access_sib_IB_DEVInfo__print(&(ptr_struct->DEVInfo), fd, indent_level + 1); } unsigned int register_access_sib_mgir_size(void) { return REGISTER_ACCESS_SIB_MGIR_SIZE; } void register_access_sib_mgir_dump(const struct register_access_sib_mgir* ptr_struct, FILE* fd) { register_access_sib_mgir_print(ptr_struct, fd, 0); } void register_access_sib_mtmp_pack(const struct register_access_sib_mtmp* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->sensor_index); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->internal_diodes_query); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->temperature); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mss); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->max_temperture); offset = 65; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mtr); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mte); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->temperature_threshold_hi); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->tee); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->temperature_threshold_lo); offset = 192; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->name_hi); offset = 224; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->name_lo); } void register_access_sib_mtmp_unpack(struct register_access_sib_mtmp* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 20; ptr_struct->sensor_index = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 0; ptr_struct->internal_diodes_query = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->temperature = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->mss = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 80; ptr_struct->max_temperture = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 65; ptr_struct->mtr = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->mte = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 112; ptr_struct->temperature_threshold_hi = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 96; ptr_struct->tee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 144; ptr_struct->temperature_threshold_lo = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 192; ptr_struct->name_hi = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 224; ptr_struct->name_lo = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void register_access_sib_mtmp_print(const struct register_access_sib_mtmp* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_mtmp ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "sensor_index : " UH_FMT "\n", ptr_struct->sensor_index); adb2c_add_indentation(fd, indent_level); fprintf(fd, "internal_diodes_query : " UH_FMT "\n", ptr_struct->internal_diodes_query); adb2c_add_indentation(fd, indent_level); fprintf(fd, "temperature : " UH_FMT "\n", ptr_struct->temperature); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mss : " UH_FMT "\n", ptr_struct->mss); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_temperture : " UH_FMT "\n", ptr_struct->max_temperture); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtr : " UH_FMT "\n", ptr_struct->mtr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mte : " UH_FMT "\n", ptr_struct->mte); adb2c_add_indentation(fd, indent_level); fprintf(fd, "temperature_threshold_hi : " UH_FMT "\n", ptr_struct->temperature_threshold_hi); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tee : " UH_FMT "\n", ptr_struct->tee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "temperature_threshold_lo : " UH_FMT "\n", ptr_struct->temperature_threshold_lo); adb2c_add_indentation(fd, indent_level); fprintf(fd, "name_hi : " U32H_FMT "\n", ptr_struct->name_hi); adb2c_add_indentation(fd, indent_level); fprintf(fd, "name_lo : " U32H_FMT "\n", ptr_struct->name_lo); } unsigned int register_access_sib_mtmp_size(void) { return REGISTER_ACCESS_SIB_MTMP_SIZE; } void register_access_sib_mtmp_dump(const struct register_access_sib_mtmp* ptr_struct, FILE* fd) { register_access_sib_mtmp_print(ptr_struct, fd, 0); } void register_access_sib_pmaos_pack(const struct register_access_sib_pmaos* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; offset = 28; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->oper_status); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->admin_status); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->module); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->rst); offset = 62; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->e); offset = 52; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->error_type); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ee); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->ase); } void register_access_sib_pmaos_unpack(struct register_access_sib_pmaos* ptr_struct, const u_int8_t* ptr_buff) { u_int32_t offset; offset = 28; ptr_struct->oper_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 20; ptr_struct->admin_status = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 8; ptr_struct->module = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->rst = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 62; ptr_struct->e = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 52; ptr_struct->error_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 33; ptr_struct->ee = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->ase = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void register_access_sib_pmaos_print(const struct register_access_sib_pmaos* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_pmaos ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "oper_status : " UH_FMT "\n", ptr_struct->oper_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "admin_status : " UH_FMT "\n", ptr_struct->admin_status); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module : " UH_FMT "\n", ptr_struct->module); adb2c_add_indentation(fd, indent_level); fprintf(fd, "rst : " UH_FMT "\n", ptr_struct->rst); adb2c_add_indentation(fd, indent_level); fprintf(fd, "e : " UH_FMT "\n", ptr_struct->e); adb2c_add_indentation(fd, indent_level); fprintf(fd, "error_type : " UH_FMT "\n", ptr_struct->error_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ee : " UH_FMT "\n", ptr_struct->ee); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ase : " UH_FMT "\n", ptr_struct->ase); } unsigned int register_access_sib_pmaos_size(void) { return REGISTER_ACCESS_SIB_PMAOS_SIZE; } void register_access_sib_pmaos_dump(const struct register_access_sib_pmaos* ptr_struct, FILE* fd) { register_access_sib_pmaos_print(ptr_struct, fd, 0); } void register_access_sib_register_access_sib_Nodes_pack(const union register_access_sib_register_access_sib_Nodes* ptr_struct, u_int8_t* ptr_buff) { register_access_sib_mgir_pack(&(ptr_struct->mgir), ptr_buff); } void register_access_sib_register_access_sib_Nodes_unpack(union register_access_sib_register_access_sib_Nodes* ptr_struct, const u_int8_t* ptr_buff) { register_access_sib_mgir_unpack(&(ptr_struct->mgir), ptr_buff); } void register_access_sib_register_access_sib_Nodes_print(const union register_access_sib_register_access_sib_Nodes* ptr_struct, FILE* fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== register_access_sib_register_access_sib_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mtmp:\n"); register_access_sib_mtmp_print(&(ptr_struct->mtmp), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pmaos:\n"); register_access_sib_pmaos_print(&(ptr_struct->pmaos), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mgir:\n"); register_access_sib_mgir_print(&(ptr_struct->mgir), fd, indent_level + 1); } unsigned int register_access_sib_register_access_sib_Nodes_size(void) { return REGISTER_ACCESS_SIB_REGISTER_ACCESS_SIB_NODES_SIZE; } void register_access_sib_register_access_sib_Nodes_dump(const union register_access_sib_register_access_sib_Nodes* ptr_struct, FILE* fd) { register_access_sib_register_access_sib_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/reg_access_switch_layouts.h0000644000175000017500000011747114522641732024246 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-07-16 15:06:38" *** by: *** > [REDACTED]/adb2pack.py --input adb/prm/switch/ext/reg_access_switch.adb --file-prefix reg_access_switch --prefix reg_access_switch_ --no-adb-utils ***/ #ifndef REG_ACCESS_SWITCH_LAYOUTS_H #define REG_ACCESS_SWITCH_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif #include "adb_to_c_utils.h" /* Description - */ /* Size in bytes - 260 */ struct reg_access_switch_command_payload_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Command data. It may be a request or a response data. */ /* 0x0.0 - 0x100.31 */ u_int32_t data[65]; }; /* Description - */ /* Size in bytes - 260 */ struct reg_access_switch_crspace_access_payload_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Starting address */ /* 0x0.0 - 0x0.31 */ u_int32_t address; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - CrSpace data */ /* 0x4.0 - 0x100.31 */ u_int32_t data[64]; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_switch_device_info_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Device index The first device should number 0 */ /* 0x0.0 - 0x0.7 */ u_int8_t device_index; /* Description - The flash ID that the device is using. */ /* 0x0.16 - 0x0.23 */ u_int8_t flash_id; /* Description - If set to '1', the fields related to the device are valid since the line-card is powered on and plugged and matching the INI version. Note: this bit is not an indication to validity of the fields related to the specific FW capabilities and version. */ /* 0x0.28 - 0x0.28 */ u_int8_t lc_pwr_on; /* Description - Thermal Shutdown. If set, the device was shut down due to thermal event. */ /* 0x0.29 - 0x0.29 */ u_int8_t thermal_sd; /* Description - If set to '1', the device is the flash owner. Otherwise, a shared flash is used by this device (another device is the flash owner). */ /* 0x0.30 - 0x0.30 */ u_int8_t flash_owner; /* Description - If set, the device uses a flash */ /* 0x0.31 - 0x0.31 */ u_int8_t uses_flash; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - 0: Amos Gearbox 1: Abir Gearbox */ /* 0x4.0 - 0x4.15 */ u_int16_t device_type; /* Description - Major FW version number. Valid only after the FW is burnt. Otherwise, the value should be '0'. */ /* 0x4.16 - 0x4.31 */ u_int16_t fw_major; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Sub-minor FW version number. Valid only after the FW is burnt. Otherwise, the value should be '0'. */ /* 0x8.0 - 0x8.15 */ u_int16_t fw_sub_minor; /* Description - Minor FW version number. Valid only after the FW is burnt. Otherwise, the value should be '0'. */ /* 0x8.16 - 0x8.31 */ u_int16_t fw_minor; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Maximum write size (in D-Words) that the device supports for its PRM commands. */ /* 0xc.0 - 0xc.7 */ u_int8_t max_cmd_write_size_supp; /* Description - Maximum read size (in D-Words) that the device supports for its PRM commands. */ /* 0xc.8 - 0xc.15 */ u_int8_t max_cmd_read_size_supp; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Device type ASCII name. Up to 8 chars */ /* 0x10.24 - 0x18.23 */ u_int8_t device_type_name[8]; }; /* Description - */ /* Size in bytes - 260 */ struct reg_access_switch_prm_register_payload_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Register ID */ /* 0x0.0 - 0x0.15 */ u_int16_t register_id; /* Description - 0: Query 1: Write */ /* 0x0.22 - 0x0.23 */ u_int8_t method; /* Description - Return code of the Downstream Device to the register that was sent. 0x0: OK - Operation was successfully executed 0x1: BUSY 0x4: NOT_SUPP_REG - The Switch register requested is not supported on that device 0x7: BAD_PARAM - Incomplete or erroneous parameter set 0x70: INTERNAL_ERR - Internal error */ /* 0x0.24 - 0x0.31 */ u_int8_t status; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Register data */ /* 0x4.0 - 0x100.31 */ u_int32_t register_data[64]; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_switch_slot_info_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - If set, the FW has completed the MDDC.device_enable command */ /* 0x0.27 - 0x0.27 */ u_int8_t active; /* Description - If set, the LC is powered on, matching the INI version and a new FW version can be burnt (if necessary) 0: Not ready 1: Ready 2: Error 3: Reserved */ /* 0x0.28 - 0x0.29 */ u_int8_t lc_ready; /* Description - If set, Shift Register is valid (after being provisioned) and data can be sent from the switch ASIC to the line-card CPLD over Shift-Register. */ /* 0x0.30 - 0x0.30 */ u_int8_t sr_valid; /* Description - If set, the INI file is ready and the card is provisioned */ /* 0x0.31 - 0x0.31 */ u_int8_t provisioned; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - User-configured version number of the current INI file. Valid only when active or lc_ready are '1'. */ /* 0x4.0 - 0x4.15 */ u_int16_t ini_file_version; /* Description - HW revision of the line-card as it appears in the current INI file. Valid only when active or lc_ready are '1'. */ /* 0x4.16 - 0x4.31 */ u_int16_t hw_revision; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Card type 0x00: Buffalo 4x400G 0x01: Buffalo 8x200G 0x02: Buffalo 16x100G */ /* 0x8.0 - 0x8.7 */ u_int8_t card_type; }; /* Description - */ /* Size in bytes - 32 */ struct reg_access_switch_slot_name_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Slot's ASCII name. Up to 20 chars */ /* 0x0.24 - 0x14.23 */ u_int8_t slot_ascii_name[20]; }; /* Description - */ /* Size in bytes - 32 */ union reg_access_switch_mddq_data_auto_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_switch_slot_info_ext slot_info_ext; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_switch_device_info_ext device_info_ext; /* Description - */ /* 0x0.0 - 0x1c.31 */ struct reg_access_switch_slot_name_ext slot_name_ext; }; /* Description - */ /* Size in bytes - 260 */ union reg_access_switch_mddt_reg_payload_auto_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x100.31 */ struct reg_access_switch_prm_register_payload_ext prm_register_payload_ext; /* Description - */ /* 0x0.0 - 0x100.31 */ struct reg_access_switch_command_payload_ext command_payload_ext; /* Description - */ /* 0x0.0 - 0x100.31 */ struct reg_access_switch_crspace_access_payload_ext crspace_access_payload_ext; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_switch_uint64 { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x4.31 */ u_int64_t uint64; }; /* Description - */ /* Size in bytes - 24 */ struct reg_access_switch_icam_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Access Register ID groups 0: REG_IDs 0x3800 to 0x387F 1: REG_IDs 0x3880 to 0x38FF */ /* 0x0.0 - 0x0.7 */ u_int8_t access_reg_group; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Supported infrastructure's access register bitmask. Based on access_reg_group index. When bit is set to '1', The register is supported in the device. For example, when access_reg_group == 1: Bit 112: ICSR Bit0 is at 08h.bit0 Bit 127 is at 14h.bit31 */ /* 0x8.0 - 0x14.31 */ u_int32_t infr_access_reg_cap_mask[4]; }; /* Description - */ /* Size in bytes - 1040 */ struct reg_access_switch_icsr_ext { /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Base cr-space address for reading */ /* 0x4.0 - 0x4.31 */ u_int32_t base_address; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Number of cr-space consecutive reads. Each read is 4B (DWord) Range 1..256 */ /* 0x8.0 - 0x8.8 */ u_int16_t num_reads; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - The cr-space read data */ /* 0x10.0 - 0x40c.31 */ u_int32_t data[256]; }; /* Description - */ /* Size in bytes - 48 */ struct reg_access_switch_mddq_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Slot index 0: Reserved */ /* 0x0.0 - 0x0.3 */ u_int8_t slot_index; /* Description - 0: Reserved 1: slot_info 2: device_info - for a device on the slot. If there are no devices on the slot, data_valid will be '0'. 3: slot_name - Name of the slot (string) */ /* 0x0.16 - 0x0.23 */ u_int8_t query_type; /* Description - Slot info event enable When set to '1', each change in the MDDQ.slot_info.provisioned / sr_valid / active / ready will generate an DSDSC event. */ /* 0x0.31 - 0x0.31 */ u_int8_t sie; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Request message sequential number. The first message number should be 0 */ /* 0x4.0 - 0x4.7 */ u_int8_t request_message_sequence; /* Description - Response message sequential number. For a specific request, the response message sequential number is the following one. In addition, the last message should be 0. */ /* 0x4.16 - 0x4.23 */ u_int8_t response_message_sequence; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Index related to the specific query_type. For query_type = 1,2,3 this field is neglected. */ /* 0x8.0 - 0x8.7 */ u_int8_t query_index; /* Description - If set, the data in the data field is valid and contain the information for the queried index. Note: This field is not reflecting any validity of the data while accessing a non-existing query entity. Querying with an out of range index will lead to BAD_PARAM status of the register. */ /* 0x8.31 - 0x8.31 */ u_int8_t data_valid; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Properties of that field are based on query_type. For slot information query_type data - see Table 483, "MDDQ slot_info Layout," on page 719 For devices on slot query_type data - see Table 485, "MDDQ device_info Register Layout," on page 720 For slot name query_type data - see Table 487, "MDDQ slot_name Layout," on page 722 */ /* 0x10.0 - 0x2c.31 */ union reg_access_switch_mddq_data_auto_ext data; }; /* Description - */ /* Size in bytes - 272 */ struct reg_access_switch_mddt_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Device index */ /* 0x0.0 - 0x0.7 */ u_int8_t device_index; /* Description - Slot index */ /* 0x0.8 - 0x0.11 */ u_int8_t slot_index; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - 0: PRM_Register 1: Command 2: CrSpace_access */ /* 0x4.0 - 0x4.1 */ u_int8_t type; /* Description - Write size in D-Words. */ /* 0x4.16 - 0x4.23 */ u_int8_t write_size; /* Description - Read size in D-Words. */ /* 0x4.24 - 0x4.31 */ u_int8_t read_size; /*---------------- DWORD[3] (Offset 0xc) ----------------*/ /* Description - Payload For PRM Register type payload - See Table 475, "PRM Register Payload Layout," on page 715 For Command type payload - See Table 477, "Command Payload Layout," on page 715 For CrSpace type payload - See Table 479, "CrSpace access Payload Layout," on page 716 */ /* 0xc.0 - 0x10c.31 */ union reg_access_switch_mddt_reg_payload_auto_ext payload; }; /* Description - */ /* Size in bytes - 48 */ struct reg_access_switch_mdsr_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - 0: The debug session ended successfully 1: Failed to execute the operation. See additional_info for more details. 2: Debug session active. See type_of_token for more details. 3: No token applied 4: Challenge provided, no token installed yet, see type_of_token for details. 5: Timeout before token installed, see type_of_token for details 6: Timeout of active token. 7-15: Reserved Note: Status might be '0' even when debug query is not allowed and additional_info field will expose the reason. */ /* 0x0.0 - 0x0.3 */ u_int8_t status; /* Description - 0: No additional information available 1: There is no debug session in progress 2: FW is not secured, debug session cannot be ended 3: Fail - Debug end request cannot be accepted. 4: Fail - Host is not allowed to query debug session 5: Debug session active */ /* 0x0.8 - 0x0.13 */ u_int8_t additional_info; /* Description - 0: CS token 1: Debug FW token 2: FRC token 3: RMCS token 4: RMDT token 5: CRCS token 6: CRDT token */ /* 0x0.24 - 0x0.31 */ u_int8_t type_of_token; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Set to '1' to end debug session. Setting to '0' will not trigger any operation. */ /* 0x4.31 - 0x4.31 */ u_int8_t end; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Time left in seconds. In case that status is 2 (debug session active) - time left for token operation In case that status is 4 (challenge provided, no token installed yet) - time left for token installation For any other status, field should be zero */ /* 0x8.0 - 0x8.31 */ u_int32_t time_left; }; /* Description - */ /* Size in bytes - 28 */ struct reg_access_switch_mfmc_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Flash select - selects the flash device. Only zero is supported for NICs with a single flash device. Range between 0 .. MFPA.flash_num -1 */ /* 0x0.4 - 0x0.5 */ u_int8_t fs; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Power of 2 of the write protect block count 0: 1 block 1: 2 blocks 2: 4 blocks 3: 8 blocks etc. Range 0..5 Note that per flash device there may be invalid configurations Reserved when wrp_en = 0 */ /* 0x4.0 - 0x4.7 */ u_int8_t wrp_block_count; /* Description - Block size 0: write protect sub-sector blocks 1: write protect sector blocks Reserved when wrp_en = 0 Note that not all block sizes are supported on all flash device, need to check MFPA capabilities */ /* 0x4.16 - 0x4.17 */ u_int8_t block_size; /* Description - Write protect enable Set write protect of flash device */ /* 0x4.31 - 0x4.31 */ u_int8_t wrp_en; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Power of 2 for sub_sector size in 4Kbytes. 0: 4Kbyte. 1: 8 Kbyte 2: 16Kbyte. Etc. */ /* 0x8.0 - 0x8.5 */ u_int8_t sub_sector_protect_size; /* Description - Power of 2 for sector size in 4Kbytes. 0: 4Kbyte. 1: 8 Kbyte 2: 16Kbyte. Etc. */ /* 0x8.8 - 0x8.13 */ u_int8_t sector_protect_size; /*---------------- DWORD[4] (Offset 0x10) ----------------*/ /* Description - Quad enable IO bit in the device status register */ /* 0x10.24 - 0x10.24 */ u_int8_t quad_en; /*---------------- DWORD[6] (Offset 0x18) ----------------*/ /* Description - The number of dummy clock cycles subsequent to all FAST READ commands. Reserved if not supported by the device */ /* 0x18.0 - 0x18.3 */ u_int8_t dummy_clock_cycles; }; /* Description - */ /* Size in bytes - 44 */ struct reg_access_switch_mkdc_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Indicates the successful completion of the instruction or the reason it failed: 0: OK 1: BAD_SESSION_ID 2: BAD_KEEP_ALIVE_COUNTER 3: BAD_SOURCE_ADDRESS 4: SESSION_TIMEOUT Other values are Reserved. */ /* 0x0.0 - 0x0.3 */ u_int8_t error_code; /* Description - Unique debug session identifier. */ /* 0x0.16 - 0x0.31 */ u_int16_t session_id; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Running counter that states the current sequence number of each keep-alive session. */ /* 0x4.0 - 0x4.31 */ u_int32_t current_keep_alive_counter; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - Running counter that states the expected next sequence number of each keep-alive session. */ /* 0x8.0 - 0x8.31 */ u_int32_t next_keep_alive_counter; }; /* Description - */ /* Size in bytes - 8 */ struct reg_access_switch_mrsr_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Reset/shutdown command 0: clear state of reset_at_pci_disable 1: software reset (switch soft reset). From Quantum-3 (IB) and on must not be used for managed switches. Also must not be used from Spectrum-4 and on (ETH). 6: reset_at_pci_disable - reset will be done at PCI_DISABLE. See MCAM bit48 For Retimer: only command = 1 is supported. */ /* 0x0.0 - 0x0.3 */ u_int8_t command; }; /* Description - */ /* Size in bytes - 128 */ struct reg_access_switch_msgi_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - System serial number (ASCII string) */ /* 0x0.0 - 0x14.31 */ u_int32_t serial_number[6]; /*---------------- DWORD[8] (Offset 0x20) ----------------*/ /* Description - System part number (ASCII string) */ /* 0x20.0 - 0x30.31 */ u_int32_t part_number[5]; /*---------------- DWORD[14] (Offset 0x38) ----------------*/ /* Description - Revision (ASCII string) */ /* 0x38.0 - 0x38.31 */ u_int32_t revision; /*---------------- DWORD[16] (Offset 0x40) ----------------*/ /* Description - Product Name (ASCII string) */ /* 0x40.0 - 0x7c.31 */ u_int32_t product_name[16]; }; /* Description - */ /* Size in bytes - 112 */ struct reg_access_switch_mtcq_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Device number. For gearboxes, the index represents the gearbox die. For cables, the index represents the module index starting at index 1 while index 0 indicates the host device. */ /* 0x0.0 - 0x0.11 */ u_int16_t device_index; /* Description - Indicates the status of the desired token we are generating the challenge for. 0x0 - OK 0x1 - TOKEN_ALREADY_APPLIED 0x2 - TOKEN_NOT_SUPPORTED 0x3 - NO_KEY_CONFIGURED (there is no public_key that can be used for this token) 0x4 - INTERFACE_NOT_ALLOWED (asking for local token from remote interface, or remote token from local interface) */ /* 0x0.16 - 0x0.23 */ u_int8_t status; /* Description - The token which a challenge is generated for. 0: RMCS 1: RMDT 2: CRCS - supported from Spectrum-4 and above 3: CRDT - supported from Spectrum-4 and above Other: Reserved */ /* 0x0.24 - 0x0.31 */ u_int8_t token_opcode; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The UUID of the key used to generate the challenge. */ /* 0x4.0 - 0x10.31 */ u_int32_t keypair_uuid[4]; /*---------------- DWORD[5] (Offset 0x14) ----------------*/ /* Description - Device base MAC address / unique identifier. */ /* 0x14.0 - 0x18.31 */ u_int64_t base_mac; /*---------------- DWORD[7] (Offset 0x1c) ----------------*/ /* Description - Device PSID */ /* 0x1c.0 - 0x28.31 */ u_int32_t psid[4]; /*---------------- DWORD[11] (Offset 0x2c) ----------------*/ /* Description - Device FW version */ /* 0x2c.0 - 0x2c.7 */ u_int8_t fw_version_39_32; /*---------------- DWORD[12] (Offset 0x30) ----------------*/ /* Description - Device FW version */ /* 0x30.0 - 0x30.31 */ u_int32_t fw_version_31_0; /*---------------- DWORD[13] (Offset 0x34) ----------------*/ /* Description - Source address of debug requester. DLID for Infiniband, ETH / IBg2 - TBD. Valid only for RMCS/RMDT. */ /* 0x34.0 - 0x40.31 */ u_int32_t source_address[4]; /*---------------- DWORD[17] (Offset 0x44) ----------------*/ /* Description - Unique debug session identifier. See details in REMOTE_DEBUG_KEEP_ALIVE. Valid only for RMCS. */ /* 0x44.0 - 0x44.15 */ u_int16_t session_id; /* Description - Version of the challenge format. */ /* 0x44.24 - 0x44.31 */ u_int8_t challenge_version; /*---------------- DWORD[18] (Offset 0x48) ----------------*/ /* Description - Random generated field. Used for randomness and replay-protection. */ /* 0x48.0 - 0x64.31 */ u_int32_t challenge[8]; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_switch_plib_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - In IB port: InfiniBand port remapping for local_port In Ethernet port: Label port remapping for local_port Note: ib_port number can only be updated when a port admin state is DISABLED. */ /* 0x0.0 - 0x0.9 */ u_int16_t ib_port; /* Description - Local port number [9:8] */ /* 0x0.12 - 0x0.13 */ u_int8_t lp_msb; /* Description - Local port number. */ /* 0x0.16 - 0x0.23 */ u_int8_t local_port; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Valid only for Ethernet Switches. Label split mapping for local_port */ /* 0x4.0 - 0x4.3 */ u_int8_t split_num; }; /* Description - */ /* Size in bytes - 16 */ struct reg_access_switch_pmaos_reg_ext { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - Module state (reserved while admin_status is disabled): 0: initializing 1: plugged_enabled 2: unplugged 3: module_plugged_with_error - (details in error_type). 5: unknown */ /* 0x0.0 - 0x0.3 */ u_int8_t oper_status; /* Description - Module administrative state (the desired state of the module): 1: enabled 2: disabled_by_configuration 3: enabled_once - if the module is active and then unplugged, or module experienced an error event, the operational status should go to "disabled" and can only be enabled upon explicit enable command. Note - To disable a module, all ports associated with the port must be disabled first. */ /* 0x0.8 - 0x0.11 */ u_int8_t admin_status; /* Description - Module number. */ /* 0x0.16 - 0x0.23 */ u_int8_t module; /* Description - Reserved for HCA Slot_index Slot_index = 0 represent the onboard (motherboard). In case of non modular system only slot_index = 0 is available. */ /* 0x0.24 - 0x0.27 */ u_int8_t slot_index; /* Description - Module Reset toggle NOTE: setting reset while module is plugged-in will result in transition of oper_status to initialization. */ /* 0x0.31 - 0x0.31 */ u_int8_t rst; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - Event Generation on operational state change: 0: Do_not_generate_event 1: Generate_Event 2: Generate_Single_Event */ /* 0x4.0 - 0x4.1 */ u_int8_t e; /* Description - Module error details: 0x0: Power_Budget_Exceeded 0x1: Long_Range_for_non_MLNX_cable_or_module 0x2: Bus_stuck - (I2C Data or clock shorted) 0x3: bad_or_unsupported_EEPROM 0x4: Enforce_part_number_list 0x5: unsupported_cable 0x6: High_Temperature 0x7: bad_cable - (Module/Cable is shorted) 0x8: PMD_type_is_not_enabled - (see PMTPS) 0xc: pcie_system_power_slot_Exceeded [DWIP] 0xf: Boot_error [DWIP] 0x10: Recovery_error Valid only when oper_status = 4'b0011 */ /* 0x4.8 - 0x4.12 */ u_int8_t error_type; /* Description - This notification can occur only if module passed initialization process 0x0: No notifications. 0x1: Speed degradation - the module is not enabled in its full speed due to incompatible transceiver/cable Valid only when oper_status = 4'b0001. */ /* 0x4.16 - 0x4.19 */ u_int8_t operational_notification; /* Description - When in multi ASIC module sharing systems, This flag will be asserted in case primary and secondary FW versions are not compatible. */ /* 0x4.28 - 0x4.28 */ u_int8_t rev_incompatible; /* Description - Indicates whether the ASIC serves as a the modules secondary (=1) or primary (=0) device. */ /* 0x4.29 - 0x4.29 */ u_int8_t secondary; /* Description - Event update enable. If this bit is set, event generation will be updated based on the e field. Only relevant on Set operations. */ /* 0x4.30 - 0x4.30 */ u_int8_t ee; /* Description - Admin state update enable. If this bit is set, admin state will be updated based on admin_state field. Only relevant on Set() operations. */ /* 0x4.31 - 0x4.31 */ u_int8_t ase; }; /* Description - */ /* Size in bytes - 1040 */ union reg_access_switch_reg_access_switch_Nodes { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - */ /* 0x0.0 - 0x10c.31 */ struct reg_access_switch_mddt_reg_ext mddt_reg_ext; /* Description - */ /* 0x0.0 - 0x14.31 */ struct reg_access_switch_icam_reg_ext icam_reg_ext; /* Description - */ /* 0x0.0 - 0x4.31 */ struct reg_access_switch_mrsr_ext mrsr_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_switch_pmaos_reg_ext pmaos_reg_ext; /* Description - */ /* 0x0.0 - 0xc.31 */ struct reg_access_switch_plib_reg_ext plib_reg_ext; /* Description - */ /* 0x0.0 - 0x2c.31 */ struct reg_access_switch_mdsr_reg_ext mdsr_reg_ext; /* Description - */ /* 0x0.0 - 0x28.31 */ struct reg_access_switch_mkdc_reg_ext mkdc_reg_ext; /* Description - */ /* 0x0.0 - 0x18.31 */ struct reg_access_switch_mfmc_reg_ext mfmc_reg_ext; /* Description - */ /* 0x0.0 - 0x6c.31 */ struct reg_access_switch_mtcq_reg_ext mtcq_reg_ext; /* Description - */ /* 0x0.0 - 0x2c.31 */ struct reg_access_switch_mddq_ext mddq_ext; /* Description - */ /* 0x0.0 - 0x7c.31 */ struct reg_access_switch_msgi_ext msgi_ext; /* Description - */ /* 0x0.0 - 0x40c.31 */ struct reg_access_switch_icsr_ext icsr_ext; }; /*================= PACK/UNPACK/PRINT FUNCTIONS ======================*/ /* command_payload_ext */ void reg_access_switch_command_payload_ext_pack(const struct reg_access_switch_command_payload_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_command_payload_ext_unpack(struct reg_access_switch_command_payload_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_command_payload_ext_print(const struct reg_access_switch_command_payload_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_command_payload_ext_size(void); #define REG_ACCESS_SWITCH_COMMAND_PAYLOAD_EXT_SIZE (0x104) void reg_access_switch_command_payload_ext_dump(const struct reg_access_switch_command_payload_ext *ptr_struct, FILE *fd); /* crspace_access_payload_ext */ void reg_access_switch_crspace_access_payload_ext_pack(const struct reg_access_switch_crspace_access_payload_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_crspace_access_payload_ext_unpack(struct reg_access_switch_crspace_access_payload_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_crspace_access_payload_ext_print(const struct reg_access_switch_crspace_access_payload_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_crspace_access_payload_ext_size(void); #define REG_ACCESS_SWITCH_CRSPACE_ACCESS_PAYLOAD_EXT_SIZE (0x104) void reg_access_switch_crspace_access_payload_ext_dump(const struct reg_access_switch_crspace_access_payload_ext *ptr_struct, FILE *fd); /* device_info_ext */ void reg_access_switch_device_info_ext_pack(const struct reg_access_switch_device_info_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_device_info_ext_unpack(struct reg_access_switch_device_info_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_device_info_ext_print(const struct reg_access_switch_device_info_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_device_info_ext_size(void); #define REG_ACCESS_SWITCH_DEVICE_INFO_EXT_SIZE (0x20) void reg_access_switch_device_info_ext_dump(const struct reg_access_switch_device_info_ext *ptr_struct, FILE *fd); /* prm_register_payload_ext */ void reg_access_switch_prm_register_payload_ext_pack(const struct reg_access_switch_prm_register_payload_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_prm_register_payload_ext_unpack(struct reg_access_switch_prm_register_payload_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_prm_register_payload_ext_print(const struct reg_access_switch_prm_register_payload_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_prm_register_payload_ext_size(void); #define REG_ACCESS_SWITCH_PRM_REGISTER_PAYLOAD_EXT_SIZE (0x104) void reg_access_switch_prm_register_payload_ext_dump(const struct reg_access_switch_prm_register_payload_ext *ptr_struct, FILE *fd); /* slot_info_ext */ void reg_access_switch_slot_info_ext_pack(const struct reg_access_switch_slot_info_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_slot_info_ext_unpack(struct reg_access_switch_slot_info_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_slot_info_ext_print(const struct reg_access_switch_slot_info_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_slot_info_ext_size(void); #define REG_ACCESS_SWITCH_SLOT_INFO_EXT_SIZE (0x20) void reg_access_switch_slot_info_ext_dump(const struct reg_access_switch_slot_info_ext *ptr_struct, FILE *fd); /* slot_name_ext */ void reg_access_switch_slot_name_ext_pack(const struct reg_access_switch_slot_name_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_slot_name_ext_unpack(struct reg_access_switch_slot_name_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_slot_name_ext_print(const struct reg_access_switch_slot_name_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_slot_name_ext_size(void); #define REG_ACCESS_SWITCH_SLOT_NAME_EXT_SIZE (0x20) void reg_access_switch_slot_name_ext_dump(const struct reg_access_switch_slot_name_ext *ptr_struct, FILE *fd); /* mddq_data_auto_ext */ void reg_access_switch_mddq_data_auto_ext_pack(const union reg_access_switch_mddq_data_auto_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mddq_data_auto_ext_unpack(union reg_access_switch_mddq_data_auto_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mddq_data_auto_ext_print(const union reg_access_switch_mddq_data_auto_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mddq_data_auto_ext_size(void); #define REG_ACCESS_SWITCH_MDDQ_DATA_AUTO_EXT_SIZE (0x20) void reg_access_switch_mddq_data_auto_ext_dump(const union reg_access_switch_mddq_data_auto_ext *ptr_struct, FILE *fd); /* mddt_reg_payload_auto_ext */ void reg_access_switch_mddt_reg_payload_auto_ext_pack(const union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mddt_reg_payload_auto_ext_unpack(union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mddt_reg_payload_auto_ext_print(const union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mddt_reg_payload_auto_ext_size(void); #define REG_ACCESS_SWITCH_MDDT_REG_PAYLOAD_AUTO_EXT_SIZE (0x104) void reg_access_switch_mddt_reg_payload_auto_ext_dump(const union reg_access_switch_mddt_reg_payload_auto_ext *ptr_struct, FILE *fd); /* uint64 */ void reg_access_switch_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_uint64_size(void); #define REG_ACCESS_SWITCH_UINT64_SIZE (0x8) void reg_access_switch_uint64_dump(const u_int64_t *ptr_struct, FILE *fd); /* icam_reg_ext */ void reg_access_switch_icam_reg_ext_pack(const struct reg_access_switch_icam_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_icam_reg_ext_unpack(struct reg_access_switch_icam_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_icam_reg_ext_print(const struct reg_access_switch_icam_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_icam_reg_ext_size(void); #define REG_ACCESS_SWITCH_ICAM_REG_EXT_SIZE (0x18) void reg_access_switch_icam_reg_ext_dump(const struct reg_access_switch_icam_reg_ext *ptr_struct, FILE *fd); /* icsr_ext */ void reg_access_switch_icsr_ext_pack(const struct reg_access_switch_icsr_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_icsr_ext_unpack(struct reg_access_switch_icsr_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_icsr_ext_print(const struct reg_access_switch_icsr_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_icsr_ext_size(void); #define REG_ACCESS_SWITCH_ICSR_EXT_SIZE (0x410) void reg_access_switch_icsr_ext_dump(const struct reg_access_switch_icsr_ext *ptr_struct, FILE *fd); /* mddq_ext */ void reg_access_switch_mddq_ext_pack(const struct reg_access_switch_mddq_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mddq_ext_unpack(struct reg_access_switch_mddq_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mddq_ext_print(const struct reg_access_switch_mddq_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mddq_ext_size(void); #define REG_ACCESS_SWITCH_MDDQ_EXT_SIZE (0x30) void reg_access_switch_mddq_ext_dump(const struct reg_access_switch_mddq_ext *ptr_struct, FILE *fd); /* mddt_reg_ext */ void reg_access_switch_mddt_reg_ext_pack(const struct reg_access_switch_mddt_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mddt_reg_ext_unpack(struct reg_access_switch_mddt_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mddt_reg_ext_print(const struct reg_access_switch_mddt_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mddt_reg_ext_size(void); #define REG_ACCESS_SWITCH_MDDT_REG_EXT_SIZE (0x110) void reg_access_switch_mddt_reg_ext_dump(const struct reg_access_switch_mddt_reg_ext *ptr_struct, FILE *fd); /* mdsr_reg_ext */ void reg_access_switch_mdsr_reg_ext_pack(const struct reg_access_switch_mdsr_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mdsr_reg_ext_unpack(struct reg_access_switch_mdsr_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mdsr_reg_ext_print(const struct reg_access_switch_mdsr_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mdsr_reg_ext_size(void); #define REG_ACCESS_SWITCH_MDSR_REG_EXT_SIZE (0x30) void reg_access_switch_mdsr_reg_ext_dump(const struct reg_access_switch_mdsr_reg_ext *ptr_struct, FILE *fd); /* mfmc_reg_ext */ void reg_access_switch_mfmc_reg_ext_pack(const struct reg_access_switch_mfmc_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mfmc_reg_ext_unpack(struct reg_access_switch_mfmc_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mfmc_reg_ext_print(const struct reg_access_switch_mfmc_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mfmc_reg_ext_size(void); #define REG_ACCESS_SWITCH_MFMC_REG_EXT_SIZE (0x1c) void reg_access_switch_mfmc_reg_ext_dump(const struct reg_access_switch_mfmc_reg_ext *ptr_struct, FILE *fd); /* mkdc_reg_ext */ void reg_access_switch_mkdc_reg_ext_pack(const struct reg_access_switch_mkdc_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mkdc_reg_ext_unpack(struct reg_access_switch_mkdc_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mkdc_reg_ext_print(const struct reg_access_switch_mkdc_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mkdc_reg_ext_size(void); #define REG_ACCESS_SWITCH_MKDC_REG_EXT_SIZE (0x2c) void reg_access_switch_mkdc_reg_ext_dump(const struct reg_access_switch_mkdc_reg_ext *ptr_struct, FILE *fd); /* mrsr_ext */ void reg_access_switch_mrsr_ext_pack(const struct reg_access_switch_mrsr_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mrsr_ext_unpack(struct reg_access_switch_mrsr_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mrsr_ext_print(const struct reg_access_switch_mrsr_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mrsr_ext_size(void); #define REG_ACCESS_SWITCH_MRSR_EXT_SIZE (0x8) void reg_access_switch_mrsr_ext_dump(const struct reg_access_switch_mrsr_ext *ptr_struct, FILE *fd); /* msgi_ext */ void reg_access_switch_msgi_ext_pack(const struct reg_access_switch_msgi_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_msgi_ext_unpack(struct reg_access_switch_msgi_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_msgi_ext_print(const struct reg_access_switch_msgi_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_msgi_ext_size(void); #define REG_ACCESS_SWITCH_MSGI_EXT_SIZE (0x80) void reg_access_switch_msgi_ext_dump(const struct reg_access_switch_msgi_ext *ptr_struct, FILE *fd); /* mtcq_reg_ext */ void reg_access_switch_mtcq_reg_ext_pack(const struct reg_access_switch_mtcq_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_mtcq_reg_ext_unpack(struct reg_access_switch_mtcq_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_mtcq_reg_ext_print(const struct reg_access_switch_mtcq_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_mtcq_reg_ext_size(void); #define REG_ACCESS_SWITCH_MTCQ_REG_EXT_SIZE (0x70) void reg_access_switch_mtcq_reg_ext_dump(const struct reg_access_switch_mtcq_reg_ext *ptr_struct, FILE *fd); /* plib_reg_ext */ void reg_access_switch_plib_reg_ext_pack(const struct reg_access_switch_plib_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_plib_reg_ext_unpack(struct reg_access_switch_plib_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_plib_reg_ext_print(const struct reg_access_switch_plib_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_plib_reg_ext_size(void); #define REG_ACCESS_SWITCH_PLIB_REG_EXT_SIZE (0x10) void reg_access_switch_plib_reg_ext_dump(const struct reg_access_switch_plib_reg_ext *ptr_struct, FILE *fd); /* pmaos_reg_ext */ void reg_access_switch_pmaos_reg_ext_pack(const struct reg_access_switch_pmaos_reg_ext *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_pmaos_reg_ext_unpack(struct reg_access_switch_pmaos_reg_ext *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_pmaos_reg_ext_print(const struct reg_access_switch_pmaos_reg_ext *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_pmaos_reg_ext_size(void); #define REG_ACCESS_SWITCH_PMAOS_REG_EXT_SIZE (0x10) void reg_access_switch_pmaos_reg_ext_dump(const struct reg_access_switch_pmaos_reg_ext *ptr_struct, FILE *fd); /* reg_access_switch_Nodes */ void reg_access_switch_reg_access_switch_Nodes_pack(const union reg_access_switch_reg_access_switch_Nodes *ptr_struct, u_int8_t *ptr_buff); void reg_access_switch_reg_access_switch_Nodes_unpack(union reg_access_switch_reg_access_switch_Nodes *ptr_struct, const u_int8_t *ptr_buff); void reg_access_switch_reg_access_switch_Nodes_print(const union reg_access_switch_reg_access_switch_Nodes *ptr_struct, FILE *fd, int indent_level); unsigned int reg_access_switch_reg_access_switch_Nodes_size(void); #define REG_ACCESS_SWITCH_REG_ACCESS_SWITCH_NODES_SIZE (0x410) void reg_access_switch_reg_access_switch_Nodes_dump(const union reg_access_switch_reg_access_switch_Nodes *ptr_struct, FILE *fd); #ifdef __cplusplus } #endif #endif // REG_ACCESS_SWITCH_LAYOUTS_H mstflint-4.26.0/tools_layouts/image_layout_layouts.c0000644000175000017500000031562214522641732023237 0ustar tzafrirctzafrirc /* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /*** *** This file was generated at "2023-03-07 14:03:35" *** by: *** > [REDACTED]/adb2pack.py --input adb/image_layout/image_layout.adb --file-prefix image_layout --prefix image_layout_ --no-adb-utils ***/ #include "image_layout_layouts.h" void image_layout_uint64_pack(const u_int64_t *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 8, *ptr_struct); } void image_layout_uint64_unpack(u_int64_t *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; *ptr_struct = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void image_layout_uint64_print(const u_int64_t *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_uint64 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uint64 : " U64H_FMT "\n", (u_int64_t) *ptr_struct); } unsigned int image_layout_uint64_size(void) { return IMAGE_LAYOUT_UINT64_SIZE; } void image_layout_uint64_dump(const u_int64_t *ptr_struct, FILE *fd) { image_layout_uint64_print(ptr_struct, fd, 0); } void image_layout_component_authentication_configuration_pack(const struct image_layout_component_authentication_configuration *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->auth_type); offset = 6; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->c_r_token_en); offset = 5; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->btc_token_en); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->frc_en); offset = 3; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mlnx_nvconfig_en); offset = 2; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->vendor_nvconfig_en); offset = 1; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cs_token_en); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->fw_en); } void image_layout_component_authentication_configuration_unpack(struct image_layout_component_authentication_configuration *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->auth_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 6; ptr_struct->c_r_token_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 5; ptr_struct->btc_token_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 4; ptr_struct->frc_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 3; ptr_struct->mlnx_nvconfig_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 2; ptr_struct->vendor_nvconfig_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 1; ptr_struct->cs_token_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 0; ptr_struct->fw_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); } void image_layout_component_authentication_configuration_print(const struct image_layout_component_authentication_configuration *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_component_authentication_configuration ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "auth_type : " UH_FMT "\n", ptr_struct->auth_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "c_r_token_en : " UH_FMT "\n", ptr_struct->c_r_token_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "btc_token_en : " UH_FMT "\n", ptr_struct->btc_token_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "frc_en : " UH_FMT "\n", ptr_struct->frc_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mlnx_nvconfig_en : " UH_FMT "\n", ptr_struct->mlnx_nvconfig_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vendor_nvconfig_en : " UH_FMT "\n", ptr_struct->vendor_nvconfig_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cs_token_en : " UH_FMT "\n", ptr_struct->cs_token_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_en : " UH_FMT "\n", ptr_struct->fw_en); } unsigned int image_layout_component_authentication_configuration_size(void) { return IMAGE_LAYOUT_COMPONENT_AUTHENTICATION_CONFIGURATION_SIZE; } void image_layout_component_authentication_configuration_dump(const struct image_layout_component_authentication_configuration *ptr_struct, FILE *fd) { image_layout_component_authentication_configuration_print(ptr_struct, fd, 0); } void image_layout_htoc_entry_pack(const struct image_layout_htoc_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hash_offset); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->section_type); } void image_layout_htoc_entry_unpack(struct image_layout_htoc_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->hash_offset = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 8; ptr_struct->section_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void image_layout_htoc_entry_print(const struct image_layout_htoc_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_htoc_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hash_offset : " UH_FMT "\n", ptr_struct->hash_offset); adb2c_add_indentation(fd, indent_level); fprintf(fd, "section_type : " UH_FMT "\n", ptr_struct->section_type); } unsigned int image_layout_htoc_entry_size(void) { return IMAGE_LAYOUT_HTOC_ENTRY_SIZE; } void image_layout_htoc_entry_dump(const struct image_layout_htoc_entry *ptr_struct, FILE *fd) { image_layout_htoc_entry_print(ptr_struct, fd, 0); } void image_layout_htoc_header_pack(const struct image_layout_htoc_header *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->version); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_of_entries); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->hash_type); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->hash_size); } void image_layout_htoc_header_unpack(struct image_layout_htoc_header *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->version = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 56; ptr_struct->num_of_entries = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->hash_type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->hash_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_htoc_header_print(const struct image_layout_htoc_header *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_htoc_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " U32H_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_entries : " UH_FMT "\n", ptr_struct->num_of_entries); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hash_type : " UH_FMT "\n", ptr_struct->hash_type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hash_size : " UH_FMT "\n", ptr_struct->hash_size); } unsigned int image_layout_htoc_header_size(void) { return IMAGE_LAYOUT_HTOC_HEADER_SIZE; } void image_layout_htoc_header_dump(const struct image_layout_htoc_header *ptr_struct, FILE *fd) { image_layout_htoc_header_print(ptr_struct, fd, 0); } void image_layout_module_version_pack(const struct image_layout_module_version *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->branch); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->minor); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 12, (u_int32_t)ptr_struct->major); } void image_layout_module_version_unpack(struct image_layout_module_version *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->branch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 12; ptr_struct->minor = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); offset = 0; ptr_struct->major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 12); } void image_layout_module_version_print(const struct image_layout_module_version *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_module_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "branch : " UH_FMT "\n", ptr_struct->branch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); } unsigned int image_layout_module_version_size(void) { return IMAGE_LAYOUT_MODULE_VERSION_SIZE; } void image_layout_module_version_dump(const struct image_layout_module_version *ptr_struct, FILE *fd) { image_layout_module_version_print(ptr_struct, fd, 0); } void image_layout_reset_capabilities_pack(const struct image_layout_reset_capabilities *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->reset_ver_en); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version_vector_ver); } void image_layout_reset_capabilities_unpack(struct image_layout_reset_capabilities *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 31; ptr_struct->reset_ver_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->version_vector_ver = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void image_layout_reset_capabilities_print(const struct image_layout_reset_capabilities *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_reset_capabilities ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_ver_en : " UH_FMT "\n", ptr_struct->reset_ver_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_vector_ver : " UH_FMT "\n", ptr_struct->version_vector_ver); } unsigned int image_layout_reset_capabilities_size(void) { return IMAGE_LAYOUT_RESET_CAPABILITIES_SIZE; } void image_layout_reset_capabilities_dump(const struct image_layout_reset_capabilities *ptr_struct, FILE *fd) { image_layout_reset_capabilities_print(ptr_struct, fd, 0); } void image_layout_reset_version_pack(const struct image_layout_reset_version *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->major); offset = 12; adb2c_push_bits_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->branch); offset = 4; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor); } void image_layout_reset_version_unpack(struct image_layout_reset_version *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->major = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 12; ptr_struct->branch = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 4); offset = 4; ptr_struct->minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void image_layout_reset_version_print(const struct image_layout_reset_version *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_reset_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "branch : " UH_FMT "\n", ptr_struct->branch); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); } unsigned int image_layout_reset_version_size(void) { return IMAGE_LAYOUT_RESET_VERSION_SIZE; } void image_layout_reset_version_dump(const struct image_layout_reset_version *ptr_struct, FILE *fd) { image_layout_reset_version_print(ptr_struct, fd, 0); } void image_layout_uid_entry_pack(const struct image_layout_uid_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_allocated); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->step); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_allocated_msb); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->uid); } void image_layout_uid_entry_unpack(struct image_layout_uid_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->num_allocated = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->step = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->num_allocated_msb = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->uid = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void image_layout_uid_entry_print(const struct image_layout_uid_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_uid_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_allocated : " UH_FMT "\n", ptr_struct->num_allocated); adb2c_add_indentation(fd, indent_level); fprintf(fd, "step : " UH_FMT "\n", ptr_struct->step); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_allocated_msb : " UH_FMT "\n", ptr_struct->num_allocated_msb); adb2c_add_indentation(fd, indent_level); fprintf(fd, "uid : " U64H_FMT "\n", ptr_struct->uid); } unsigned int image_layout_uid_entry_size(void) { return IMAGE_LAYOUT_UID_ENTRY_SIZE; } void image_layout_uid_entry_dump(const struct image_layout_uid_entry *ptr_struct, FILE *fd) { image_layout_uid_entry_print(ptr_struct, fd, 0); } void image_layout_FW_VERSION_pack(const struct image_layout_FW_VERSION *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Hour); offset = 72; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Minutes); offset = 64; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Seconds); offset = 120; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Day); offset = 112; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->Month); offset = 96; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->Year); } void image_layout_FW_VERSION_unpack(struct image_layout_FW_VERSION *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 80; ptr_struct->Hour = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 72; ptr_struct->Minutes = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 64; ptr_struct->Seconds = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 120; ptr_struct->Day = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 112; ptr_struct->Month = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 96; ptr_struct->Year = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_FW_VERSION_print(const struct image_layout_FW_VERSION *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_FW_VERSION ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Hour : " UH_FMT "\n", ptr_struct->Hour); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Minutes : " UH_FMT "\n", ptr_struct->Minutes); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Seconds : " UH_FMT "\n", ptr_struct->Seconds); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Day : " UH_FMT "\n", ptr_struct->Day); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Month : " UH_FMT "\n", ptr_struct->Month); adb2c_add_indentation(fd, indent_level); fprintf(fd, "Year : " UH_FMT "\n", ptr_struct->Year); } unsigned int image_layout_FW_VERSION_size(void) { return IMAGE_LAYOUT_FW_VERSION_SIZE; } void image_layout_FW_VERSION_dump(const struct image_layout_FW_VERSION *ptr_struct, FILE *fd) { image_layout_FW_VERSION_print(ptr_struct, fd, 0); } void image_layout_TRIPPLE_VERSION_pack(const struct image_layout_TRIPPLE_VERSION *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MAJOR); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->SUBMINOR); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->MINOR); } void image_layout_TRIPPLE_VERSION_unpack(struct image_layout_TRIPPLE_VERSION *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->MAJOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 48; ptr_struct->SUBMINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 32; ptr_struct->MINOR = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_TRIPPLE_VERSION_print(const struct image_layout_TRIPPLE_VERSION *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_TRIPPLE_VERSION ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MAJOR : " UH_FMT "\n", ptr_struct->MAJOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "SUBMINOR : " UH_FMT "\n", ptr_struct->SUBMINOR); adb2c_add_indentation(fd, indent_level); fprintf(fd, "MINOR : " UH_FMT "\n", ptr_struct->MINOR); } unsigned int image_layout_TRIPPLE_VERSION_size(void) { return IMAGE_LAYOUT_TRIPPLE_VERSION_SIZE; } void image_layout_TRIPPLE_VERSION_dump(const struct image_layout_TRIPPLE_VERSION *ptr_struct, FILE *fd) { image_layout_TRIPPLE_VERSION_print(ptr_struct, fd, 0); } void image_layout_file_public_keys_pack(const struct image_layout_file_public_keys *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_component_authentication_configuration_pack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 2304, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 2304, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->key[i]); } } void image_layout_file_public_keys_unpack(struct image_layout_file_public_keys *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_component_authentication_configuration_unpack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); offset = 96; ptr_struct->keypair_exp = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 2304, 1); ptr_struct->keypair_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 2304, 1); ptr_struct->key[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void image_layout_file_public_keys_print(const struct image_layout_file_public_keys *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_file_public_keys ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_authentication_configuration:\n"); image_layout_component_authentication_configuration_print(&(ptr_struct->component_authentication_configuration), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_exp : " U32H_FMT "\n", ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->keypair_uuid[i]); } for (i = 0; i < 64; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "key_%03d : " U32H_FMT "\n", i, ptr_struct->key[i]); } } unsigned int image_layout_file_public_keys_size(void) { return IMAGE_LAYOUT_FILE_PUBLIC_KEYS_SIZE; } void image_layout_file_public_keys_dump(const struct image_layout_file_public_keys *ptr_struct, FILE *fd) { image_layout_file_public_keys_print(ptr_struct, fd, 0); } void image_layout_file_public_keys_2_pack(const struct image_layout_file_public_keys_2 *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_component_authentication_configuration_pack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 4352, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 4352, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->key[i]); } } void image_layout_file_public_keys_2_unpack(struct image_layout_file_public_keys_2 *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_component_authentication_configuration_unpack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); offset = 96; ptr_struct->keypair_exp = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 4352, 1); ptr_struct->keypair_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 4352, 1); ptr_struct->key[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void image_layout_file_public_keys_2_print(const struct image_layout_file_public_keys_2 *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_file_public_keys_2 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_authentication_configuration:\n"); image_layout_component_authentication_configuration_print(&(ptr_struct->component_authentication_configuration), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_exp : " U32H_FMT "\n", ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "key_%03d : " U32H_FMT "\n", i, ptr_struct->key[i]); } } unsigned int image_layout_file_public_keys_2_size(void) { return IMAGE_LAYOUT_FILE_PUBLIC_KEYS_2_SIZE; } void image_layout_file_public_keys_2_dump(const struct image_layout_file_public_keys_2 *ptr_struct, FILE *fd) { image_layout_file_public_keys_2_print(ptr_struct, fd, 0); } void image_layout_file_public_keys_3_pack(const struct image_layout_file_public_keys_3 *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 4352, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(160, 32, i, 4352, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->key[i]); } offset = 4256; image_layout_component_authentication_configuration_pack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); } void image_layout_file_public_keys_3_unpack(struct image_layout_file_public_keys_3 *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->keypair_exp = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(32, 32, i, 4352, 1); ptr_struct->keypair_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(160, 32, i, 4352, 1); ptr_struct->key[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 4256; image_layout_component_authentication_configuration_unpack(&(ptr_struct->component_authentication_configuration), ptr_buff + offset / 8); } void image_layout_file_public_keys_3_print(const struct image_layout_file_public_keys_3 *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_file_public_keys_3 ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_exp : " U32H_FMT "\n", ptr_struct->keypair_exp); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "key_%03d : " U32H_FMT "\n", i, ptr_struct->key[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "component_authentication_configuration:\n"); image_layout_component_authentication_configuration_print(&(ptr_struct->component_authentication_configuration), fd, indent_level + 1); } unsigned int image_layout_file_public_keys_3_size(void) { return IMAGE_LAYOUT_FILE_PUBLIC_KEYS_3_SIZE; } void image_layout_file_public_keys_3_dump(const struct image_layout_file_public_keys_3 *ptr_struct, FILE *fd) { image_layout_file_public_keys_3_print(ptr_struct, fd, 0); } void image_layout_guids_pack(const struct image_layout_guids *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_uid_entry_pack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 128; image_layout_uid_entry_pack(&(ptr_struct->macs), ptr_buff + offset / 8); } void image_layout_guids_unpack(struct image_layout_guids *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_uid_entry_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 128; image_layout_uid_entry_unpack(&(ptr_struct->macs), ptr_buff + offset / 8); } void image_layout_guids_print(const struct image_layout_guids *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_guids ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); image_layout_uid_entry_print(&(ptr_struct->guids), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "macs:\n"); image_layout_uid_entry_print(&(ptr_struct->macs), fd, indent_level + 1); } unsigned int image_layout_guids_size(void) { return IMAGE_LAYOUT_GUIDS_SIZE; } void image_layout_guids_dump(const struct image_layout_guids *ptr_struct, FILE *fd) { image_layout_guids_print(ptr_struct, fd, 0); } void image_layout_hashes_table_header_pack(const struct image_layout_hashes_table_header *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->load_address); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->dw_size); offset = 80; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void image_layout_hashes_table_header_unpack(struct image_layout_hashes_table_header *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->load_address = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->dw_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 80; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_hashes_table_header_print(const struct image_layout_hashes_table_header *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_hashes_table_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "load_address : " U32H_FMT "\n", ptr_struct->load_address); adb2c_add_indentation(fd, indent_level); fprintf(fd, "dw_size : " U32H_FMT "\n", ptr_struct->dw_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int image_layout_hashes_table_header_size(void) { return IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE; } void image_layout_hashes_table_header_dump(const struct image_layout_hashes_table_header *ptr_struct, FILE *fd) { image_layout_hashes_table_header_print(ptr_struct, fd, 0); } void image_layout_htoc_pack(const struct image_layout_htoc *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_htoc_header_pack(&(ptr_struct->header), ptr_buff + offset / 8); for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(128, 64, i, 1920, 1); image_layout_htoc_entry_pack(&(ptr_struct->entry[i]), ptr_buff + offset / 8); } } void image_layout_htoc_unpack(struct image_layout_htoc *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_htoc_header_unpack(&(ptr_struct->header), ptr_buff + offset / 8); for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(128, 64, i, 1920, 1); image_layout_htoc_entry_unpack(&(ptr_struct->entry[i]), ptr_buff + offset / 8); } } void image_layout_htoc_print(const struct image_layout_htoc *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_htoc ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "header:\n"); image_layout_htoc_header_print(&(ptr_struct->header), fd, indent_level + 1); for (i = 0; i < 28; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "entry_%03d:\n", i); image_layout_htoc_entry_print(&(ptr_struct->entry[i]), fd, indent_level + 1); } } unsigned int image_layout_htoc_size(void) { return IMAGE_LAYOUT_HTOC_SIZE; } void image_layout_htoc_dump(const struct image_layout_htoc *ptr_struct, FILE *fd) { image_layout_htoc_print(ptr_struct, fd, 0); } void image_layout_htoc_hash_pack(const struct image_layout_htoc_hash *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 512, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->hash_val[i]); } } void image_layout_htoc_hash_unpack(struct image_layout_htoc_hash *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 512, 1); ptr_struct->hash_val[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void image_layout_htoc_hash_print(const struct image_layout_htoc_hash *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_htoc_hash ========\n"); for (i = 0; i < 16; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "hash_val_%03d : " U32H_FMT "\n", i, ptr_struct->hash_val[i]); } } unsigned int image_layout_htoc_hash_size(void) { return IMAGE_LAYOUT_HTOC_HASH_SIZE; } void image_layout_htoc_hash_dump(const struct image_layout_htoc_hash *ptr_struct, FILE *fd) { image_layout_htoc_hash_print(ptr_struct, fd, 0); } void image_layout_hw_pointer_entry_pack(const struct image_layout_hw_pointer_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ptr); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void image_layout_hw_pointer_entry_unpack(struct image_layout_hw_pointer_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->ptr = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 48; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_hw_pointer_entry_print(const struct image_layout_hw_pointer_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_hw_pointer_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ptr : " U32H_FMT "\n", ptr_struct->ptr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int image_layout_hw_pointer_entry_size(void) { return IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE; } void image_layout_hw_pointer_entry_dump(const struct image_layout_hw_pointer_entry *ptr_struct, FILE *fd) { image_layout_hw_pointer_entry_print(ptr_struct, fd, 0); } void image_layout_image_size_pack(const struct image_layout_image_size *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->log_step); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->run_from_any); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->max_size); } void image_layout_image_size_unpack(struct image_layout_image_size *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->log_step = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->run_from_any = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->max_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } void image_layout_image_size_print(const struct image_layout_image_size *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_image_size ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log_step : " UH_FMT "\n", ptr_struct->log_step); adb2c_add_indentation(fd, indent_level); fprintf(fd, "run_from_any : " UH_FMT "\n", ptr_struct->run_from_any); adb2c_add_indentation(fd, indent_level); fprintf(fd, "max_size : " U32H_FMT "\n", ptr_struct->max_size); } unsigned int image_layout_image_size_size(void) { return IMAGE_LAYOUT_IMAGE_SIZE_SIZE; } void image_layout_image_size_dump(const struct image_layout_image_size *ptr_struct, FILE *fd) { image_layout_image_size_print(ptr_struct, fd, 0); } void image_layout_module_versions_pack(const struct image_layout_module_versions *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_module_version_pack(&(ptr_struct->core), ptr_buff + offset / 8); offset = 32; image_layout_module_version_pack(&(ptr_struct->phy), ptr_buff + offset / 8); offset = 64; image_layout_module_version_pack(&(ptr_struct->kernel), ptr_buff + offset / 8); offset = 96; image_layout_module_version_pack(&(ptr_struct->iron_image), ptr_buff + offset / 8); offset = 128; image_layout_module_version_pack(&(ptr_struct->host_management), ptr_buff + offset / 8); offset = 160; image_layout_module_version_pack(&(ptr_struct->mad), ptr_buff + offset / 8); } void image_layout_module_versions_unpack(struct image_layout_module_versions *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_module_version_unpack(&(ptr_struct->core), ptr_buff + offset / 8); offset = 32; image_layout_module_version_unpack(&(ptr_struct->phy), ptr_buff + offset / 8); offset = 64; image_layout_module_version_unpack(&(ptr_struct->kernel), ptr_buff + offset / 8); offset = 96; image_layout_module_version_unpack(&(ptr_struct->iron_image), ptr_buff + offset / 8); offset = 128; image_layout_module_version_unpack(&(ptr_struct->host_management), ptr_buff + offset / 8); offset = 160; image_layout_module_version_unpack(&(ptr_struct->mad), ptr_buff + offset / 8); } void image_layout_module_versions_print(const struct image_layout_module_versions *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_module_versions ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "core:\n"); image_layout_module_version_print(&(ptr_struct->core), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "phy:\n"); image_layout_module_version_print(&(ptr_struct->phy), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "kernel:\n"); image_layout_module_version_print(&(ptr_struct->kernel), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "iron_image:\n"); image_layout_module_version_print(&(ptr_struct->iron_image), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "host_management:\n"); image_layout_module_version_print(&(ptr_struct->host_management), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mad:\n"); image_layout_module_version_print(&(ptr_struct->mad), fd, indent_level + 1); } unsigned int image_layout_module_versions_size(void) { return IMAGE_LAYOUT_MODULE_VERSIONS_SIZE; } void image_layout_module_versions_dump(const struct image_layout_module_versions *ptr_struct, FILE *fd) { image_layout_module_versions_print(ptr_struct, fd, 0); } void image_layout_operation_key_pack(const struct image_layout_operation_key *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->key_modifier); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 8, ptr_struct->key); } void image_layout_operation_key_unpack(struct image_layout_operation_key *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 16; ptr_struct->key_modifier = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 64; ptr_struct->key = adb2c_pop_integer_from_buff(ptr_buff, offset, 8); } void image_layout_operation_key_print(const struct image_layout_operation_key *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_operation_key ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key_modifier : " UH_FMT "\n", ptr_struct->key_modifier); adb2c_add_indentation(fd, indent_level); fprintf(fd, "key : " U64H_FMT "\n", ptr_struct->key); } unsigned int image_layout_operation_key_size(void) { return IMAGE_LAYOUT_OPERATION_KEY_SIZE; } void image_layout_operation_key_dump(const struct image_layout_operation_key *ptr_struct, FILE *fd) { image_layout_operation_key_print(ptr_struct, fd, 0); } void image_layout_version_vector_pack(const struct image_layout_version_vector *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_reset_capabilities_pack(&(ptr_struct->reset_capabilities), ptr_buff + offset / 8); offset = 32; image_layout_reset_version_pack(&(ptr_struct->scratchpad), ptr_buff + offset / 8); offset = 64; image_layout_reset_version_pack(&(ptr_struct->icm_context), ptr_buff + offset / 8); offset = 96; image_layout_reset_version_pack(&(ptr_struct->pci), ptr_buff + offset / 8); offset = 128; image_layout_reset_version_pack(&(ptr_struct->phy), ptr_buff + offset / 8); offset = 160; image_layout_reset_version_pack(&(ptr_struct->ini), ptr_buff + offset / 8); offset = 192; image_layout_reset_version_pack(&(ptr_struct->reserved1), ptr_buff + offset / 8); offset = 224; image_layout_reset_version_pack(&(ptr_struct->reserved2), ptr_buff + offset / 8); offset = 256; image_layout_reset_version_pack(&(ptr_struct->reserved3), ptr_buff + offset / 8); offset = 288; image_layout_reset_version_pack(&(ptr_struct->reserved4), ptr_buff + offset / 8); offset = 320; image_layout_reset_version_pack(&(ptr_struct->reserved5), ptr_buff + offset / 8); offset = 352; image_layout_reset_version_pack(&(ptr_struct->reserved6), ptr_buff + offset / 8); } void image_layout_version_vector_unpack(struct image_layout_version_vector *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_reset_capabilities_unpack(&(ptr_struct->reset_capabilities), ptr_buff + offset / 8); offset = 32; image_layout_reset_version_unpack(&(ptr_struct->scratchpad), ptr_buff + offset / 8); offset = 64; image_layout_reset_version_unpack(&(ptr_struct->icm_context), ptr_buff + offset / 8); offset = 96; image_layout_reset_version_unpack(&(ptr_struct->pci), ptr_buff + offset / 8); offset = 128; image_layout_reset_version_unpack(&(ptr_struct->phy), ptr_buff + offset / 8); offset = 160; image_layout_reset_version_unpack(&(ptr_struct->ini), ptr_buff + offset / 8); offset = 192; image_layout_reset_version_unpack(&(ptr_struct->reserved1), ptr_buff + offset / 8); offset = 224; image_layout_reset_version_unpack(&(ptr_struct->reserved2), ptr_buff + offset / 8); offset = 256; image_layout_reset_version_unpack(&(ptr_struct->reserved3), ptr_buff + offset / 8); offset = 288; image_layout_reset_version_unpack(&(ptr_struct->reserved4), ptr_buff + offset / 8); offset = 320; image_layout_reset_version_unpack(&(ptr_struct->reserved5), ptr_buff + offset / 8); offset = 352; image_layout_reset_version_unpack(&(ptr_struct->reserved6), ptr_buff + offset / 8); } void image_layout_version_vector_print(const struct image_layout_version_vector *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_version_vector ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reset_capabilities:\n"); image_layout_reset_capabilities_print(&(ptr_struct->reset_capabilities), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "scratchpad:\n"); image_layout_reset_version_print(&(ptr_struct->scratchpad), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "icm_context:\n"); image_layout_reset_version_print(&(ptr_struct->icm_context), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci:\n"); image_layout_reset_version_print(&(ptr_struct->pci), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "phy:\n"); image_layout_reset_version_print(&(ptr_struct->phy), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini:\n"); image_layout_reset_version_print(&(ptr_struct->ini), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved1:\n"); image_layout_reset_version_print(&(ptr_struct->reserved1), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved2:\n"); image_layout_reset_version_print(&(ptr_struct->reserved2), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved3:\n"); image_layout_reset_version_print(&(ptr_struct->reserved3), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved4:\n"); image_layout_reset_version_print(&(ptr_struct->reserved4), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved5:\n"); image_layout_reset_version_print(&(ptr_struct->reserved5), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "reserved6:\n"); image_layout_reset_version_print(&(ptr_struct->reserved6), fd, indent_level + 1); } unsigned int image_layout_version_vector_size(void) { return IMAGE_LAYOUT_VERSION_VECTOR_SIZE; } void image_layout_version_vector_dump(const struct image_layout_version_vector *ptr_struct, FILE *fd) { image_layout_version_vector_print(ptr_struct, fd, 0); } void image_layout_boot_version_pack(const struct image_layout_boot_version *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->image_format_version); } void image_layout_boot_version_unpack(struct image_layout_boot_version *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->image_format_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } void image_layout_boot_version_print(const struct image_layout_boot_version *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_boot_version ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_format_version : " UH_FMT "\n", ptr_struct->image_format_version); } unsigned int image_layout_boot_version_size(void) { return IMAGE_LAYOUT_BOOT_VERSION_SIZE; } void image_layout_boot_version_dump(const struct image_layout_boot_version *ptr_struct, FILE *fd) { image_layout_boot_version_print(ptr_struct, fd, 0); } void image_layout_device_info_pack(const struct image_layout_device_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature0); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature1); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature2); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature3); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 143; adb2c_push_bits_to_buff(ptr_buff, offset, 9, (u_int32_t)ptr_struct->major_version); offset = 256; image_layout_guids_pack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 880; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vsd_vendor_id); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(920, 8, i, 4096, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vsd[i]); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2816, 128, i, 4096, 1); image_layout_operation_key_pack(&(ptr_struct->keys[i]), ptr_buff + offset / 8); } offset = 4080; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void image_layout_device_info_unpack(struct image_layout_device_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; ptr_struct->signature0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->signature1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->signature2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->signature3 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 152; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 143; ptr_struct->major_version = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 9); offset = 256; image_layout_guids_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); offset = 880; ptr_struct->vsd_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(920, 8, i, 4096, 1); ptr_struct->vsd[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->vsd[208] = '\0'; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2816, 128, i, 4096, 1); image_layout_operation_key_unpack(&(ptr_struct->keys[i]), ptr_buff + offset / 8); } offset = 4080; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_device_info_print(const struct image_layout_device_info *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_device_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature0 : " U32H_FMT "\n", ptr_struct->signature0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature1 : " U32H_FMT "\n", ptr_struct->signature1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature2 : " U32H_FMT "\n", ptr_struct->signature2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature3 : " U32H_FMT "\n", ptr_struct->signature3); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); image_layout_guids_print(&(ptr_struct->guids), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vsd_vendor_id : " UH_FMT "\n", ptr_struct->vsd_vendor_id); fprintf(fd, "vsd : \"%s\"\n", ptr_struct->vsd); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keys_%03d:\n", i); image_layout_operation_key_print(&(ptr_struct->keys[i]), fd, indent_level + 1); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int image_layout_device_info_size(void) { return IMAGE_LAYOUT_DEVICE_INFO_SIZE; } void image_layout_device_info_dump(const struct image_layout_device_info *ptr_struct, FILE *fd) { image_layout_device_info_print(ptr_struct, fd, 0); } void image_layout_hashes_table_pack(const struct image_layout_hashes_table *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_hashes_table_header_pack(&(ptr_struct->header), ptr_buff + offset / 8); offset = 96; image_layout_htoc_pack(&(ptr_struct->htoc), ptr_buff + offset / 8); for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(2016, 512, i, 16416, 1); image_layout_htoc_hash_pack(&(ptr_struct->hash[i]), ptr_buff + offset / 8); } offset = 16400; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void image_layout_hashes_table_unpack(struct image_layout_hashes_table *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 0; image_layout_hashes_table_header_unpack(&(ptr_struct->header), ptr_buff + offset / 8); offset = 96; image_layout_htoc_unpack(&(ptr_struct->htoc), ptr_buff + offset / 8); for (i = 0; i < 28; ++i) { offset = adb2c_calc_array_field_address(2016, 512, i, 16416, 1); image_layout_htoc_hash_unpack(&(ptr_struct->hash[i]), ptr_buff + offset / 8); } offset = 16400; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_hashes_table_print(const struct image_layout_hashes_table *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_hashes_table ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "header:\n"); image_layout_hashes_table_header_print(&(ptr_struct->header), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "htoc:\n"); image_layout_htoc_print(&(ptr_struct->htoc), fd, indent_level + 1); for (i = 0; i < 28; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "hash_%03d:\n", i); image_layout_htoc_hash_print(&(ptr_struct->hash[i]), fd, indent_level + 1); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int image_layout_hashes_table_size(void) { return IMAGE_LAYOUT_HASHES_TABLE_SIZE; } void image_layout_hashes_table_dump(const struct image_layout_hashes_table *ptr_struct, FILE *fd) { image_layout_hashes_table_print(ptr_struct, fd, 0); } void image_layout_hw_pointers_carmel_pack(const struct image_layout_hw_pointers_carmel *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_hw_pointer_entry_pack(&(ptr_struct->boot_record_ptr), ptr_buff + offset / 8); offset = 64; image_layout_hw_pointer_entry_pack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; image_layout_hw_pointer_entry_pack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; image_layout_hw_pointer_entry_pack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; image_layout_hw_pointer_entry_pack(&(ptr_struct->authentication_start_pointer), ptr_buff + offset / 8); offset = 320; image_layout_hw_pointer_entry_pack(&(ptr_struct->authentication_end_pointer), ptr_buff + offset / 8); offset = 384; image_layout_hw_pointer_entry_pack(&(ptr_struct->digest_pointer), ptr_buff + offset / 8); offset = 448; image_layout_hw_pointer_entry_pack(&(ptr_struct->digest_recovery_key_pointer), ptr_buff + offset / 8); offset = 512; image_layout_hw_pointer_entry_pack(&(ptr_struct->fw_window_start_pointer), ptr_buff + offset / 8); offset = 576; image_layout_hw_pointer_entry_pack(&(ptr_struct->fw_window_end_pointer), ptr_buff + offset / 8); offset = 640; image_layout_hw_pointer_entry_pack(&(ptr_struct->image_info_section_pointer), ptr_buff + offset / 8); offset = 704; image_layout_hw_pointer_entry_pack(&(ptr_struct->image_signature_pointer), ptr_buff + offset / 8); offset = 768; image_layout_hw_pointer_entry_pack(&(ptr_struct->public_key_pointer), ptr_buff + offset / 8); offset = 832; image_layout_hw_pointer_entry_pack(&(ptr_struct->fw_security_version_pointer), ptr_buff + offset / 8); offset = 896; image_layout_hw_pointer_entry_pack(&(ptr_struct->gcm_iv_delta_pointer), ptr_buff + offset / 8); offset = 960; image_layout_hw_pointer_entry_pack(&(ptr_struct->hashes_table_pointer), ptr_buff + offset / 8); } void image_layout_hw_pointers_carmel_unpack(struct image_layout_hw_pointers_carmel *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; image_layout_hw_pointer_entry_unpack(&(ptr_struct->boot_record_ptr), ptr_buff + offset / 8); offset = 64; image_layout_hw_pointer_entry_unpack(&(ptr_struct->boot2_ptr), ptr_buff + offset / 8); offset = 128; image_layout_hw_pointer_entry_unpack(&(ptr_struct->toc_ptr), ptr_buff + offset / 8); offset = 192; image_layout_hw_pointer_entry_unpack(&(ptr_struct->tools_ptr), ptr_buff + offset / 8); offset = 256; image_layout_hw_pointer_entry_unpack(&(ptr_struct->authentication_start_pointer), ptr_buff + offset / 8); offset = 320; image_layout_hw_pointer_entry_unpack(&(ptr_struct->authentication_end_pointer), ptr_buff + offset / 8); offset = 384; image_layout_hw_pointer_entry_unpack(&(ptr_struct->digest_pointer), ptr_buff + offset / 8); offset = 448; image_layout_hw_pointer_entry_unpack(&(ptr_struct->digest_recovery_key_pointer), ptr_buff + offset / 8); offset = 512; image_layout_hw_pointer_entry_unpack(&(ptr_struct->fw_window_start_pointer), ptr_buff + offset / 8); offset = 576; image_layout_hw_pointer_entry_unpack(&(ptr_struct->fw_window_end_pointer), ptr_buff + offset / 8); offset = 640; image_layout_hw_pointer_entry_unpack(&(ptr_struct->image_info_section_pointer), ptr_buff + offset / 8); offset = 704; image_layout_hw_pointer_entry_unpack(&(ptr_struct->image_signature_pointer), ptr_buff + offset / 8); offset = 768; image_layout_hw_pointer_entry_unpack(&(ptr_struct->public_key_pointer), ptr_buff + offset / 8); offset = 832; image_layout_hw_pointer_entry_unpack(&(ptr_struct->fw_security_version_pointer), ptr_buff + offset / 8); offset = 896; image_layout_hw_pointer_entry_unpack(&(ptr_struct->gcm_iv_delta_pointer), ptr_buff + offset / 8); offset = 960; image_layout_hw_pointer_entry_unpack(&(ptr_struct->hashes_table_pointer), ptr_buff + offset / 8); } void image_layout_hw_pointers_carmel_print(const struct image_layout_hw_pointers_carmel *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_hw_pointers_carmel ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_record_ptr:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->boot_record_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot2_ptr:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->boot2_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "toc_ptr:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->toc_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tools_ptr:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->tools_ptr), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "authentication_start_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->authentication_start_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "authentication_end_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->authentication_end_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "digest_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->digest_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "digest_recovery_key_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->digest_recovery_key_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_window_start_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->fw_window_start_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_window_end_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->fw_window_end_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_info_section_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->image_info_section_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_signature_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->image_signature_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "public_key_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->public_key_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "fw_security_version_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->fw_security_version_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "gcm_iv_delta_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->gcm_iv_delta_pointer), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hashes_table_pointer:\n"); image_layout_hw_pointer_entry_print(&(ptr_struct->hashes_table_pointer), fd, indent_level + 1); } unsigned int image_layout_hw_pointers_carmel_size(void) { return IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE; } void image_layout_hw_pointers_carmel_dump(const struct image_layout_hw_pointers_carmel *ptr_struct, FILE *fd) { image_layout_hw_pointers_carmel_print(ptr_struct, fd, 0); } void image_layout_image_info_pack(const struct image_layout_image_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 30; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->toc_header_duplication); offset = 29; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secure_boot); offset = 27; adb2c_push_bits_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->encrypted_fw); offset = 26; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->windbond_flash_support); offset = 25; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->long_keys); offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug_fw_tokens_supported); offset = 23; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->mcc_en); offset = 22; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_vendor_nvconfig_files); offset = 21; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_mlnx_nvconfig_files); offset = 20; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->frc_supported); offset = 19; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cs_tokens_supported); offset = 18; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->debug_fw); offset = 17; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->signed_fw); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->secure_fw); offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 32; image_layout_FW_VERSION_pack(&(ptr_struct->FW_VERSION), ptr_buff + offset / 8); offset = 160; image_layout_TRIPPLE_VERSION_pack(&(ptr_struct->mic_version), ptr_buff + offset / 8); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_vendor_id); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_device_id); offset = 272; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_sub_vendor_id); offset = 256; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->pci_subsystem_id); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 432; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->vsd_vendor_id); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(472, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->vsd[i]); } offset = 2112; image_layout_image_size_pack(&(ptr_struct->image_size), ptr_buff + offset / 8); offset = 2200; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->synced_reset_downtime); offset = 2176; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->toc_copy_ofst); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2240, 32, i, 8192, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->supported_hw_id[i]); } offset = 2368; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->ini_file_num); offset = 2400; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->burn_image_size); offset = 3200; image_layout_version_vector_pack(&(ptr_struct->version_vector), ptr_buff + offset / 8); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(3608, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prod_ver[i]); } for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->description[i]); } offset = 6144; image_layout_module_versions_pack(&(ptr_struct->module_versions), ptr_buff + offset / 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->name[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->prs_name[i]); } } void image_layout_image_info_unpack(struct image_layout_image_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; offset = 30; ptr_struct->toc_header_duplication = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 29; ptr_struct->secure_boot = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 27; ptr_struct->encrypted_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 2); offset = 26; ptr_struct->windbond_flash_support = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 25; ptr_struct->long_keys = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 24; ptr_struct->debug_fw_tokens_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 23; ptr_struct->mcc_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 22; ptr_struct->signed_vendor_nvconfig_files = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 21; ptr_struct->signed_mlnx_nvconfig_files = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 20; ptr_struct->frc_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 19; ptr_struct->cs_tokens_supported = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 18; ptr_struct->debug_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 17; ptr_struct->signed_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 16; ptr_struct->secure_fw = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 8; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; image_layout_FW_VERSION_unpack(&(ptr_struct->FW_VERSION), ptr_buff + offset / 8); offset = 160; image_layout_TRIPPLE_VERSION_unpack(&(ptr_struct->mic_version), ptr_buff + offset / 8); offset = 240; ptr_struct->pci_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 224; ptr_struct->pci_device_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 272; ptr_struct->pci_sub_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 256; ptr_struct->pci_subsystem_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(312, 8, i, 8192, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 432; ptr_struct->vsd_vendor_id = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 208; ++i) { offset = adb2c_calc_array_field_address(472, 8, i, 8192, 1); ptr_struct->vsd[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->vsd[208] = '\0'; offset = 2112; image_layout_image_size_unpack(&(ptr_struct->image_size), ptr_buff + offset / 8); offset = 2200; ptr_struct->synced_reset_downtime = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 2176; ptr_struct->toc_copy_ofst = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(2240, 32, i, 8192, 1); ptr_struct->supported_hw_id[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } offset = 2368; ptr_struct->ini_file_num = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 2400; ptr_struct->burn_image_size = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 3200; image_layout_version_vector_unpack(&(ptr_struct->version_vector), ptr_buff + offset / 8); for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(3608, 8, i, 8192, 1); ptr_struct->prod_ver[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prod_ver[16] = '\0'; for (i = 0; i < 256; ++i) { offset = adb2c_calc_array_field_address(3736, 8, i, 8192, 1); ptr_struct->description[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->description[256] = '\0'; offset = 6144; image_layout_module_versions_unpack(&(ptr_struct->module_versions), ptr_buff + offset / 8); for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(6680, 8, i, 8192, 1); ptr_struct->name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->name[64] = '\0'; for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(7192, 8, i, 8192, 1); ptr_struct->prs_name[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->prs_name[128] = '\0'; } void image_layout_image_info_print(const struct image_layout_image_info *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_image_info ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "toc_header_duplication : " UH_FMT "\n", ptr_struct->toc_header_duplication); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secure_boot : " UH_FMT "\n", ptr_struct->secure_boot); adb2c_add_indentation(fd, indent_level); fprintf(fd, "encrypted_fw : " UH_FMT "\n", ptr_struct->encrypted_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "windbond_flash_support : " UH_FMT "\n", ptr_struct->windbond_flash_support); adb2c_add_indentation(fd, indent_level); fprintf(fd, "long_keys : " UH_FMT "\n", ptr_struct->long_keys); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_fw_tokens_supported : " UH_FMT "\n", ptr_struct->debug_fw_tokens_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mcc_en : " UH_FMT "\n", ptr_struct->mcc_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_vendor_nvconfig_files : " UH_FMT "\n", ptr_struct->signed_vendor_nvconfig_files); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_mlnx_nvconfig_files : " UH_FMT "\n", ptr_struct->signed_mlnx_nvconfig_files); adb2c_add_indentation(fd, indent_level); fprintf(fd, "frc_supported : " UH_FMT "\n", ptr_struct->frc_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cs_tokens_supported : " UH_FMT "\n", ptr_struct->cs_tokens_supported); adb2c_add_indentation(fd, indent_level); fprintf(fd, "debug_fw : " UH_FMT "\n", ptr_struct->debug_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signed_fw : " UH_FMT "\n", ptr_struct->signed_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secure_fw : " UH_FMT "\n", ptr_struct->secure_fw); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "FW_VERSION:\n"); image_layout_FW_VERSION_print(&(ptr_struct->FW_VERSION), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "mic_version:\n"); image_layout_TRIPPLE_VERSION_print(&(ptr_struct->mic_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_vendor_id : " UH_FMT "\n", ptr_struct->pci_vendor_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_device_id : " UH_FMT "\n", ptr_struct->pci_device_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_sub_vendor_id : " UH_FMT "\n", ptr_struct->pci_sub_vendor_id); adb2c_add_indentation(fd, indent_level); fprintf(fd, "pci_subsystem_id : " UH_FMT "\n", ptr_struct->pci_subsystem_id); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "vsd_vendor_id : " UH_FMT "\n", ptr_struct->vsd_vendor_id); fprintf(fd, "vsd : \"%s\"\n", ptr_struct->vsd); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_size:\n"); image_layout_image_size_print(&(ptr_struct->image_size), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "synced_reset_downtime : " UH_FMT "\n", ptr_struct->synced_reset_downtime); adb2c_add_indentation(fd, indent_level); fprintf(fd, "toc_copy_ofst : " UH_FMT "\n", ptr_struct->toc_copy_ofst); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "supported_hw_id_%03d : " U32H_FMT "\n", i, ptr_struct->supported_hw_id[i]); } adb2c_add_indentation(fd, indent_level); fprintf(fd, "ini_file_num : " U32H_FMT "\n", ptr_struct->ini_file_num); adb2c_add_indentation(fd, indent_level); fprintf(fd, "burn_image_size : " U32H_FMT "\n", ptr_struct->burn_image_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version_vector:\n"); image_layout_version_vector_print(&(ptr_struct->version_vector), fd, indent_level + 1); fprintf(fd, "prod_ver : \"%s\"\n", ptr_struct->prod_ver); fprintf(fd, "description : \"%s\"\n", ptr_struct->description); adb2c_add_indentation(fd, indent_level); fprintf(fd, "module_versions:\n"); image_layout_module_versions_print(&(ptr_struct->module_versions), fd, indent_level + 1); fprintf(fd, "name : \"%s\"\n", ptr_struct->name); fprintf(fd, "prs_name : \"%s\"\n", ptr_struct->prs_name); } unsigned int image_layout_image_info_size(void) { return IMAGE_LAYOUT_IMAGE_INFO_SIZE; } void image_layout_image_info_dump(const struct image_layout_image_info *ptr_struct, FILE *fd) { image_layout_image_info_print(ptr_struct, fd, 0); } void image_layout_image_signature_pack(const struct image_layout_image_signature *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 2560, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature_uuid[i]); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 2560, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 2560, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature[i]); } } void image_layout_image_signature_unpack(struct image_layout_image_signature *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 2560, 1); ptr_struct->signature_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 2560, 1); ptr_struct->keypair_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 64; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 2560, 1); ptr_struct->signature[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void image_layout_image_signature_print(const struct image_layout_image_signature *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_image_signature ========\n"); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->signature_uuid[i]); } for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->keypair_uuid[i]); } for (i = 0; i < 64; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature_%03d : " U32H_FMT "\n", i, ptr_struct->signature[i]); } } unsigned int image_layout_image_signature_size(void) { return IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE; } void image_layout_image_signature_dump(const struct image_layout_image_signature *ptr_struct, FILE *fd) { image_layout_image_signature_print(ptr_struct, fd, 0); } void image_layout_image_signature_2_pack(const struct image_layout_image_signature_2 *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 4608, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature_uuid[i]); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 4608, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 4608, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature[i]); } } void image_layout_image_signature_2_unpack(struct image_layout_image_signature_2 *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 4608, 1); ptr_struct->signature_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 4; ++i) { offset = adb2c_calc_array_field_address(128, 32, i, 4608, 1); ptr_struct->keypair_uuid[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(256, 32, i, 4608, 1); ptr_struct->signature[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void image_layout_image_signature_2_print(const struct image_layout_image_signature_2 *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_image_signature_2 ========\n"); for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->signature_uuid[i]); } for (i = 0; i < 4; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "keypair_uuid_%03d : " U32H_FMT "\n", i, ptr_struct->keypair_uuid[i]); } for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature_%03d : " U32H_FMT "\n", i, ptr_struct->signature[i]); } } unsigned int image_layout_image_signature_2_size(void) { return IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE; } void image_layout_image_signature_2_dump(const struct image_layout_image_signature_2 *ptr_struct, FILE *fd) { image_layout_image_signature_2_print(ptr_struct, fd, 0); } void image_layout_itoc_entry_pack(const struct image_layout_itoc_entry *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; adb2c_push_bits_to_buff(ptr_buff, offset, 22, (u_int32_t)ptr_struct->size); offset = 0; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->type); offset = 34; adb2c_push_bits_to_buff(ptr_buff, offset, 30, (u_int32_t)ptr_struct->param0); offset = 33; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->cache_line_crc); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->zipped_image); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->param1); offset = 144; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->version); offset = 161; adb2c_push_bits_to_buff(ptr_buff, offset, 29, (u_int32_t)ptr_struct->flash_addr); offset = 208; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->section_crc); offset = 205; adb2c_push_bits_to_buff(ptr_buff, offset, 3, (u_int32_t)ptr_struct->crc); offset = 192; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->encrypted_section); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->itoc_entry_crc); } void image_layout_itoc_entry_unpack(struct image_layout_itoc_entry *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 8; ptr_struct->size = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 22); offset = 0; ptr_struct->type = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 34; ptr_struct->param0 = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 30); offset = 33; ptr_struct->cache_line_crc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 32; ptr_struct->zipped_image = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 64; ptr_struct->param1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 144; ptr_struct->version = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 161; ptr_struct->flash_addr = (u_int32_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 29); offset = 208; ptr_struct->section_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 205; ptr_struct->crc = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 3); offset = 192; ptr_struct->encrypted_section = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 240; ptr_struct->itoc_entry_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_itoc_entry_print(const struct image_layout_itoc_entry *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_itoc_entry ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "size : " UH_FMT "\n", ptr_struct->size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "type : " UH_FMT "\n", ptr_struct->type); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param0 : " UH_FMT "\n", ptr_struct->param0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "cache_line_crc : " UH_FMT "\n", ptr_struct->cache_line_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "zipped_image : " UH_FMT "\n", ptr_struct->zipped_image); adb2c_add_indentation(fd, indent_level); fprintf(fd, "param1 : " U32H_FMT "\n", ptr_struct->param1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_addr : " UH_FMT "\n", ptr_struct->flash_addr); adb2c_add_indentation(fd, indent_level); fprintf(fd, "section_crc : " UH_FMT "\n", ptr_struct->section_crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); adb2c_add_indentation(fd, indent_level); fprintf(fd, "encrypted_section : " UH_FMT "\n", ptr_struct->encrypted_section); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry_crc : " UH_FMT "\n", ptr_struct->itoc_entry_crc); } unsigned int image_layout_itoc_entry_size(void) { return IMAGE_LAYOUT_ITOC_ENTRY_SIZE; } void image_layout_itoc_entry_dump(const struct image_layout_itoc_entry *ptr_struct, FILE *fd) { image_layout_itoc_entry_print(ptr_struct, fd, 0); } void image_layout_itoc_header_pack(const struct image_layout_itoc_header *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature0); offset = 32; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature1); offset = 64; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature2); offset = 96; adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->signature3); offset = 152; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->version); offset = 128; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->flash_layout_version); offset = 184; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->num_of_entries); offset = 240; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->itoc_entry_crc); } void image_layout_itoc_header_unpack(struct image_layout_itoc_header *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 0; ptr_struct->signature0 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 32; ptr_struct->signature1 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 64; ptr_struct->signature2 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 96; ptr_struct->signature3 = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); offset = 152; ptr_struct->version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 128; ptr_struct->flash_layout_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 184; ptr_struct->num_of_entries = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 240; ptr_struct->itoc_entry_crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_itoc_header_print(const struct image_layout_itoc_header *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_itoc_header ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature0 : " U32H_FMT "\n", ptr_struct->signature0); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature1 : " U32H_FMT "\n", ptr_struct->signature1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature2 : " U32H_FMT "\n", ptr_struct->signature2); adb2c_add_indentation(fd, indent_level); fprintf(fd, "signature3 : " U32H_FMT "\n", ptr_struct->signature3); adb2c_add_indentation(fd, indent_level); fprintf(fd, "version : " UH_FMT "\n", ptr_struct->version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "flash_layout_version : " UH_FMT "\n", ptr_struct->flash_layout_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "num_of_entries : " UH_FMT "\n", ptr_struct->num_of_entries); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry_crc : " UH_FMT "\n", ptr_struct->itoc_entry_crc); } unsigned int image_layout_itoc_header_size(void) { return IMAGE_LAYOUT_ITOC_HEADER_SIZE; } void image_layout_itoc_header_dump(const struct image_layout_itoc_header *ptr_struct, FILE *fd) { image_layout_itoc_header_print(ptr_struct, fd, 0); } void image_layout_mfg_info_pack(const struct image_layout_mfg_info *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->psid[i]); } offset = 255; adb2c_push_bits_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->guids_override_en); offset = 232; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor_version); offset = 224; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major_version); offset = 256; image_layout_guids_pack(&(ptr_struct->guids), ptr_buff + offset / 8); } void image_layout_mfg_info_unpack(struct image_layout_mfg_info *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 16; ++i) { offset = adb2c_calc_array_field_address(24, 8, i, 2560, 1); ptr_struct->psid[i] = (char)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); } ptr_struct->psid[16] = '\0'; offset = 255; ptr_struct->guids_override_en = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 1); offset = 232; ptr_struct->minor_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 224; ptr_struct->major_version = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 256; image_layout_guids_unpack(&(ptr_struct->guids), ptr_buff + offset / 8); } void image_layout_mfg_info_print(const struct image_layout_mfg_info *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_mfg_info ========\n"); fprintf(fd, "psid : \"%s\"\n", ptr_struct->psid); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids_override_en : " UH_FMT "\n", ptr_struct->guids_override_en); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor_version : " UH_FMT "\n", ptr_struct->minor_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major_version : " UH_FMT "\n", ptr_struct->major_version); adb2c_add_indentation(fd, indent_level); fprintf(fd, "guids:\n"); image_layout_guids_print(&(ptr_struct->guids), fd, indent_level + 1); } unsigned int image_layout_mfg_info_size(void) { return IMAGE_LAYOUT_MFG_INFO_SIZE; } void image_layout_mfg_info_dump(const struct image_layout_mfg_info *ptr_struct, FILE *fd) { image_layout_mfg_info_print(ptr_struct, fd, 0); } void image_layout_public_keys_pack(const struct image_layout_public_keys *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 2304, i, 18432, 1); image_layout_file_public_keys_pack(&(ptr_struct->file_public_keys[i]), ptr_buff + offset / 8); } } void image_layout_public_keys_unpack(struct image_layout_public_keys *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 2304, i, 18432, 1); image_layout_file_public_keys_unpack(&(ptr_struct->file_public_keys[i]), ptr_buff + offset / 8); } } void image_layout_public_keys_print(const struct image_layout_public_keys *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_public_keys ========\n"); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "file_public_keys_%03d:\n", i); image_layout_file_public_keys_print(&(ptr_struct->file_public_keys[i]), fd, indent_level + 1); } } unsigned int image_layout_public_keys_size(void) { return IMAGE_LAYOUT_PUBLIC_KEYS_SIZE; } void image_layout_public_keys_dump(const struct image_layout_public_keys *ptr_struct, FILE *fd) { image_layout_public_keys_print(ptr_struct, fd, 0); } void image_layout_public_keys_2_pack(const struct image_layout_public_keys_2 *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 4352, i, 34816, 1); image_layout_file_public_keys_2_pack(&(ptr_struct->file_public_keys_2[i]), ptr_buff + offset / 8); } } void image_layout_public_keys_2_unpack(struct image_layout_public_keys_2 *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 4352, i, 34816, 1); image_layout_file_public_keys_2_unpack(&(ptr_struct->file_public_keys_2[i]), ptr_buff + offset / 8); } } void image_layout_public_keys_2_print(const struct image_layout_public_keys_2 *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_public_keys_2 ========\n"); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "file_public_keys_2_%03d:\n", i); image_layout_file_public_keys_2_print(&(ptr_struct->file_public_keys_2[i]), fd, indent_level + 1); } } unsigned int image_layout_public_keys_2_size(void) { return IMAGE_LAYOUT_PUBLIC_KEYS_2_SIZE; } void image_layout_public_keys_2_dump(const struct image_layout_public_keys_2 *ptr_struct, FILE *fd) { image_layout_public_keys_2_print(ptr_struct, fd, 0); } void image_layout_public_keys_3_pack(const struct image_layout_public_keys_3 *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 4352, i, 34816, 1); image_layout_file_public_keys_3_pack(&(ptr_struct->file_public_keys_3[i]), ptr_buff + offset / 8); } } void image_layout_public_keys_3_unpack(struct image_layout_public_keys_3 *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 8; ++i) { offset = adb2c_calc_array_field_address(0, 4352, i, 34816, 1); image_layout_file_public_keys_3_unpack(&(ptr_struct->file_public_keys_3[i]), ptr_buff + offset / 8); } } void image_layout_public_keys_3_print(const struct image_layout_public_keys_3 *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_public_keys_3 ========\n"); for (i = 0; i < 8; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "file_public_keys_3_%03d:\n", i); image_layout_file_public_keys_3_print(&(ptr_struct->file_public_keys_3[i]), fd, indent_level + 1); } } unsigned int image_layout_public_keys_3_size(void) { return IMAGE_LAYOUT_PUBLIC_KEYS_3_SIZE; } void image_layout_public_keys_3_dump(const struct image_layout_public_keys_3 *ptr_struct, FILE *fd) { image_layout_public_keys_3_print(ptr_struct, fd, 0); } void image_layout_secure_boot_signatures_pack(const struct image_layout_secure_boot_signatures *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 12288, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->boot_signature[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(4096, 32, i, 12288, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->critical_signature[i]); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(8192, 32, i, 12288, 1); adb2c_push_integer_to_buff(ptr_buff, offset, 4, (u_int32_t)ptr_struct->non_critical_signature[i]); } } void image_layout_secure_boot_signatures_unpack(struct image_layout_secure_boot_signatures *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; int i; for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(0, 32, i, 12288, 1); ptr_struct->boot_signature[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(4096, 32, i, 12288, 1); ptr_struct->critical_signature[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } for (i = 0; i < 128; ++i) { offset = adb2c_calc_array_field_address(8192, 32, i, 12288, 1); ptr_struct->non_critical_signature[i] = (u_int32_t)adb2c_pop_integer_from_buff(ptr_buff, offset, 4); } } void image_layout_secure_boot_signatures_print(const struct image_layout_secure_boot_signatures *ptr_struct, FILE *fd, int indent_level) { int i; adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_secure_boot_signatures ========\n"); for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_signature_%03d : " U32H_FMT "\n", i, ptr_struct->boot_signature[i]); } for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "critical_signature_%03d : " U32H_FMT "\n", i, ptr_struct->critical_signature[i]); } for (i = 0; i < 128; ++i) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "non_critical_signature_%03d : " U32H_FMT "\n", i, ptr_struct->non_critical_signature[i]); } } unsigned int image_layout_secure_boot_signatures_size(void) { return IMAGE_LAYOUT_SECURE_BOOT_SIGNATURES_SIZE; } void image_layout_secure_boot_signatures_dump(const struct image_layout_secure_boot_signatures *ptr_struct, FILE *fd) { image_layout_secure_boot_signatures_print(ptr_struct, fd, 0); } void image_layout_tools_area_pack(const struct image_layout_tools_area *ptr_struct, u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->minor); offset = 16; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->major); offset = 56; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->bin_ver_minor); offset = 48; adb2c_push_bits_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->bin_ver_major); offset = 32; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->log2_img_slot_size); offset = 496; adb2c_push_bits_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->crc); } void image_layout_tools_area_unpack(struct image_layout_tools_area *ptr_struct, const u_int8_t *ptr_buff) { u_int32_t offset; offset = 24; ptr_struct->minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 16; ptr_struct->major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 56; ptr_struct->bin_ver_minor = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 48; ptr_struct->bin_ver_major = (u_int8_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 8); offset = 32; ptr_struct->log2_img_slot_size = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); offset = 496; ptr_struct->crc = (u_int16_t)adb2c_pop_bits_from_buff(ptr_buff, offset, 16); } void image_layout_tools_area_print(const struct image_layout_tools_area *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_tools_area ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "minor : " UH_FMT "\n", ptr_struct->minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "major : " UH_FMT "\n", ptr_struct->major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bin_ver_minor : " UH_FMT "\n", ptr_struct->bin_ver_minor); adb2c_add_indentation(fd, indent_level); fprintf(fd, "bin_ver_major : " UH_FMT "\n", ptr_struct->bin_ver_major); adb2c_add_indentation(fd, indent_level); fprintf(fd, "log2_img_slot_size : " UH_FMT "\n", ptr_struct->log2_img_slot_size); adb2c_add_indentation(fd, indent_level); fprintf(fd, "crc : " UH_FMT "\n", ptr_struct->crc); } unsigned int image_layout_tools_area_size(void) { return IMAGE_LAYOUT_TOOLS_AREA_SIZE; } void image_layout_tools_area_dump(const struct image_layout_tools_area *ptr_struct, FILE *fd) { image_layout_tools_area_print(ptr_struct, fd, 0); } void image_layout_image_layout_Nodes_pack(const union image_layout_image_layout_Nodes *ptr_struct, u_int8_t *ptr_buff) { image_layout_public_keys_3_pack(&(ptr_struct->public_keys_3), ptr_buff); } void image_layout_image_layout_Nodes_unpack(union image_layout_image_layout_Nodes *ptr_struct, const u_int8_t *ptr_buff) { image_layout_public_keys_3_unpack(&(ptr_struct->public_keys_3), ptr_buff); } void image_layout_image_layout_Nodes_print(const union image_layout_image_layout_Nodes *ptr_struct, FILE *fd, int indent_level) { adb2c_add_indentation(fd, indent_level); fprintf(fd, "======== image_layout_image_layout_Nodes ========\n"); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_signature_2:\n"); image_layout_image_signature_2_print(&(ptr_struct->image_signature_2), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "secure_boot_signatures:\n"); image_layout_secure_boot_signatures_print(&(ptr_struct->secure_boot_signatures), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_header:\n"); image_layout_itoc_header_print(&(ptr_struct->itoc_header), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "device_info:\n"); image_layout_device_info_print(&(ptr_struct->device_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "public_keys_3:\n"); image_layout_public_keys_3_print(&(ptr_struct->public_keys_3), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "boot_version:\n"); image_layout_boot_version_print(&(ptr_struct->boot_version), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_signature:\n"); image_layout_image_signature_print(&(ptr_struct->image_signature), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hashes_table:\n"); image_layout_hashes_table_print(&(ptr_struct->hashes_table), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "public_keys:\n"); image_layout_public_keys_print(&(ptr_struct->public_keys), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "image_info:\n"); image_layout_image_info_print(&(ptr_struct->image_info), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "hw_pointers_carmel:\n"); image_layout_hw_pointers_carmel_print(&(ptr_struct->hw_pointers_carmel), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "tools_area:\n"); image_layout_tools_area_print(&(ptr_struct->tools_area), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "public_keys_2:\n"); image_layout_public_keys_2_print(&(ptr_struct->public_keys_2), fd, indent_level + 1); adb2c_add_indentation(fd, indent_level); fprintf(fd, "itoc_entry:\n"); image_layout_itoc_entry_print(&(ptr_struct->itoc_entry), fd, indent_level + 1); } unsigned int image_layout_image_layout_Nodes_size(void) { return IMAGE_LAYOUT_IMAGE_LAYOUT_NODES_SIZE; } void image_layout_image_layout_Nodes_dump(const union image_layout_image_layout_Nodes *ptr_struct, FILE *fd) { image_layout_image_layout_Nodes_print(ptr_struct, fd, 0); } mstflint-4.26.0/tools_layouts/Makefile.in0000644000175000017500000010043314522641740020670 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_layouts DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(toolslayoutsinclude_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libadb_utils_la_LIBADD = am_libadb_utils_la_OBJECTS = adb_to_c_utils.lo libadb_utils_la_OBJECTS = $(am_libadb_utils_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = am_libmlxarchive_layouts_la_OBJECTS = mlxarchive_layouts.lo libmlxarchive_layouts_la_OBJECTS = \ $(am_libmlxarchive_layouts_la_OBJECTS) libtools_layouts_la_LIBADD = am_libtools_layouts_la_OBJECTS = prm_adb_db.lo adb_to_c_utils.lo \ cibfw_layouts.lo register_access_open_layouts.lo \ tools_open_layouts.lo register_access_sib_layouts.lo \ cx4fw_layouts.lo image_layout_layouts.lo cx6fw_layouts.lo \ icmd_layouts.lo icmd_hca_layouts.lo reg_access_hca_layouts.lo \ image_info_layouts.lo reg_access_switch_layouts.lo \ fs5_image_layout_layouts.lo libtools_layouts_la_OBJECTS = $(am_libtools_layouts_la_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libadb_utils_la_SOURCES) \ $(libmlxarchive_layouts_la_SOURCES) \ $(libtools_layouts_la_SOURCES) DIST_SOURCES = $(libadb_utils_la_SOURCES) \ $(libmlxarchive_layouts_la_SOURCES) \ $(libtools_layouts_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(toolslayoutsincludedir)" HEADERS = $(toolslayoutsinclude_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir)/${MTCR_CONFIG_DIR} -I$(top_srcdir)/common AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) AM_CXXFLAGS = -DDATA_PATH=\"$(pkgdatadir)\" SUBDIRS = ${ADABE_DBS} noinst_LTLIBRARIES = libadb_utils.la libtools_layouts.la libmlxarchive_layouts.la toolslayoutsincludedir = $(includedir)/mstflint/tools_layouts/ toolslayoutsinclude_HEADERS = icmd_layouts.h icmd_hca_layouts.h adb_to_c_utils.h libadb_utils_la_SOURCES = adb_to_c_utils.c libtools_layouts_la_SOURCES = prm_adb_db.cpp prm_adb_db.h \ adb_to_c_utils.c adb_to_c_utils.h\ cibfw_layouts.c cibfw_layouts.h \ register_access_open_layouts.h register_access_open_layouts.c \ tools_open_layouts.c tools_open_layouts.h\ register_access_sib_layouts.h register_access_sib_layouts.c \ cx4fw_layouts.c cx4fw_layouts.h \ image_layout_layouts.c image_layout_layouts.h\ cx6fw_layouts.c cx6fw_layouts.h\ icmd_layouts.c icmd_layouts.h \ icmd_hca_layouts.c icmd_hca_layouts.h \ reg_access_hca_layouts.c reg_access_hca_layouts.h\ image_info_layouts.c image_info_layouts.h \ reg_access_switch_layouts.c reg_access_switch_layouts.h \ fs5_image_layout_layouts.h fs5_image_layout_layouts.c libtools_layouts_la_DEPENDENCIES = libadb_utils.la libmlxarchive_layouts_la_DEPENDENCIES = $(libtools_layouts_la_DEPENDENCIES) libmlxarchive_layouts_la_LIBADD = $(libtools_layouts_la_LIBADD) libmlxarchive_layouts_la_SOURCES = mlxarchive_layouts.h mlxarchive_layouts.c EXTRA_DIST = ${ADABE_DBS_EXTRA_DIST} all: all-recursive .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_layouts/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_layouts/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libadb_utils.la: $(libadb_utils_la_OBJECTS) $(libadb_utils_la_DEPENDENCIES) $(EXTRA_libadb_utils_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libadb_utils_la_OBJECTS) $(libadb_utils_la_LIBADD) $(LIBS) libmlxarchive_layouts.la: $(libmlxarchive_layouts_la_OBJECTS) $(libmlxarchive_layouts_la_DEPENDENCIES) $(EXTRA_libmlxarchive_layouts_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libmlxarchive_layouts_la_OBJECTS) $(libmlxarchive_layouts_la_LIBADD) $(LIBS) libtools_layouts.la: $(libtools_layouts_la_OBJECTS) $(libtools_layouts_la_DEPENDENCIES) $(EXTRA_libtools_layouts_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libtools_layouts_la_OBJECTS) $(libtools_layouts_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/adb_to_c_utils.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cibfw_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cx4fw_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cx6fw_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fs5_image_layout_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icmd_hca_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icmd_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/image_info_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/image_layout_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/prm_adb_db.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reg_access_hca_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reg_access_switch_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/register_access_open_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/register_access_sib_layouts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools_open_layouts.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-toolslayoutsincludeHEADERS: $(toolslayoutsinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(toolslayoutsinclude_HEADERS)'; test -n "$(toolslayoutsincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(toolslayoutsincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(toolslayoutsincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(toolslayoutsincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(toolslayoutsincludedir)" || exit $$?; \ done uninstall-toolslayoutsincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(toolslayoutsinclude_HEADERS)'; test -n "$(toolslayoutsincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(toolslayoutsincludedir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(toolslayoutsincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-toolslayoutsincludeHEADERS install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-toolslayoutsincludeHEADERS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip install-toolslayoutsincludeHEADERS installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am \ uninstall-toolslayoutsincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/cmdif/0000755000175000017500000000000014522641736014771 5ustar tzafrirctzafrircmstflint-4.26.0/cmdif/tools_cif.h0000644000175000017500000001142114522641732017116 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * Created on: Nov 5, 2014 * Author: adrianc */ #ifndef TOOLS_CIF_H #define TOOLS_CIF_H #ifdef __cplusplus extern "C" { #endif #include #include /** * tcif_query_dev_cap: * @param[in] dev A pointer to a device context. * @param[in] offs offset in even dword to read from the DEV_CAP vector * @param[out] data Quad-word read from the device capabilities vector from offset: offs * @return One of the MError* values, or a raw **/ MError tcif_query_dev_cap(mfile* dev, u_int32_t offs, u_int64_t* data); /** * tcif_query_global_def_params: * @param[in] dev A pointer to a device context. * @param[in/out] global_params pointer to global params struct * @return One of the MError* values, or a raw **/ MError tcif_query_global_def_params(mfile* dev, struct tools_open_query_def_params_global* global_params); /** * tcif_query_per_port_def_params: * @param[in] dev A pointer to a device context. * @param[in] port Port that the query will be performed on (1 or 2) * @param[in/out] port_params Pointer to port params struct * @return One of the MError* values, or a raw **/ MError tcif_query_per_port_def_params(mfile* dev, u_int8_t port, struct tools_open_query_def_params_per_port* port_params); /** * tcif_qpc_context_read: * @param[in] dev A pointer to a device context. * @param[in] qpn QP Number * @param[in] source QP Source * @param[in] data Data that was read * * @return One of the MError* values, or a raw **/ MError tcif_qpc_context_read(mfile* dev, u_int32_t qpn, u_int32_t source, u_int8_t* data, u_int32_t len); /** * tcif_qpc_context_write: * @param[in] dev A pointer to a device context. * @param[in] qpn QP Number * @param[in] source QP Source * @param[in] data Data to be written * * @return One of the MError* values, or a raw **/ MError tcif_qpc_context_write(mfile* dev, u_int32_t qpn, u_int32_t source, u_int8_t* data, u_int32_t len); /** * tcif_hw_access: * @param[in] dev A pointer to a device context. * @param[in] key key with which we attempt to lock/unlock the cr-space (should be 0 for locking) * @param[out] lock_unlock 1-lock , 0-unlock * @return One of the MError* values, or a raw **/ MError tcif_hw_access(mfile* dev, u_int64_t key, int lock_unlock); /** * tcif_cr_mailbox_supported: * @param[in] dev A pointer to a device context. * @return ME_OK - cr mailbox supported * ME_SEM_LOCKED - tools HCR semaphore locked * ME_CMDIF_NOT_SUPP - cr mailbox not supported **/ MError tcif_cr_mbox_supported(mfile* dev); /** * tcif_err2str: * @param[in] rc return code from one of the above functions * @return string describing the error occurred. **/ const char* tcif_err2str(MError rc); #ifdef __cplusplus } #endif #endif /* TOOLS_CIF_H */ mstflint-4.26.0/cmdif/icmd_cif_open.h0000644000175000017500000000536414522641732017724 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _ICMD_OPEN_LIB /* guard */ #define _ICMD_OPEN_LIB #ifdef __cplusplus extern "C" { #endif #include #include #include #ifdef MST_UL #include #else #include #include #include #include "cib_cif.h" #endif #include "icmd_cif_common.h" #ifndef IN #define IN #define OUT #define INOUT #endif enum { GET_FW_INFO = 0x8007, FLASH_REG_ACCESS = 0x9001, }; #ifdef MST_UL // instead of cib_cif.h in mstflint enum { GET_ICMD_QUERY_CAP = 0x8400, SET_ITRACE = 0xf003, SET_PORT_SNIFFER = 0xc002, }; #endif int gcif_get_fw_info(mfile* mf, OUT struct connectib_icmd_get_fw_info* fw_info); int get_icmd_query_cap(mfile* mf, struct icmd_hca_icmd_query_cap_general* icmd_query_caps); int gcif_mh_sync(mfile* mf, struct icmd_hca_icmd_mh_sync_in* mh_sync_in, struct icmd_hca_icmd_mh_sync_out* mh_sync_out); int gcif_mh_sync_status(mfile* mf, struct icmd_hca_icmd_mh_sync_in* mh_sync_in, struct icmd_hca_icmd_mh_sync_out* mh_sync_out); int gcif_set_port_sniffer(mfile* mf, struct connectib_icmd_set_port_sniffer* set_port_sniffer); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/cmdif/icmd_cif_open.c0000644000175000017500000000556614522641732017723 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include "icmd_cif_common.h" #include "icmd_cif_open.h" #include "icmd_cif_macros.h" #define MH_SYNC_OPCODE 0x8402 #define MH_SYNC_STATUS_OPCODE 0x8403 /* * gcif_get_fw_info */ int gcif_get_fw_info(mfile* mf, OUT struct connectib_icmd_get_fw_info* fw_info) { SEND_ICMD_FLOW(mf, GET_FW_INFO, connectib_icmd_get_fw_info, fw_info, 0, 1); } /* * get_icmd_query_cap */ int get_icmd_query_cap(mfile* mf, struct icmd_hca_icmd_query_cap_general* icmd_query_caps) { SEND_ICMD_FLOW(mf, GET_ICMD_QUERY_CAP, icmd_hca_icmd_query_cap_general, icmd_query_caps, 1, 0); } int gcif_mh_sync(mfile* mf, struct icmd_hca_icmd_mh_sync_in* mh_sync_in, struct icmd_hca_icmd_mh_sync_out* mh_sync_out) { SEND_IN_OUT_ICMD_FLOW(mf, MH_SYNC_OPCODE, icmd_hca_icmd_mh_sync, mh_sync_in, mh_sync_out, 1, 0); } int gcif_mh_sync_status(mfile* mf, struct icmd_hca_icmd_mh_sync_in* mh_sync_in, struct icmd_hca_icmd_mh_sync_out* mh_sync_out) { memset(mh_sync_out, 0x0, sizeof(*mh_sync_out)); SEND_IN_OUT_ICMD_FLOW(mf, MH_SYNC_STATUS_OPCODE, icmd_hca_icmd_mh_sync, mh_sync_in, mh_sync_out, 1, 0); } int gcif_set_itrace(mfile* mf, struct connectib_itrace* itrace) { SEND_ICMD_FLOW(mf, SET_ITRACE, connectib_itrace, itrace, 1, 0); } int gcif_set_port_sniffer(mfile* mf, struct connectib_icmd_set_port_sniffer* set_port_sniffer) { SEND_ICMD_FLOW(mf, SET_PORT_SNIFFER, connectib_icmd_set_port_sniffer, set_port_sniffer, 1, 0); } mstflint-4.26.0/cmdif/icmd_cif_macros.h0000644000175000017500000004110514522641732020240 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _ICMD_MACROS /* guard */ #define _ICMD_MACROS int convert_rc(int rc); /* * SEND_ICMD_FLOW macro is designed for the most common icmd flow * basically every command that simply packs a struct sends icmd and unpacks it should use * this to save code. * TODO: Adrianc- if needed separate struct_name to prefix+name in case we need to separate between different * 5th gen icmd structures i.e connectib/switchib/connectx4 (use ## to paste them together in the macro) */ #define SEND_ICMD_FLOW_GENERIC(mf, op, struct_name, cmd_struct, should_pack, skip_write, pack_func, unpack_func) \ int _rc; \ int _cmd_size = struct_name ## _size(); \ u_int8_t* _data = (u_int8_t*)malloc(sizeof(u_int8_t) * _cmd_size); \ if (!_data) \ { \ return GCIF_STATUS_NO_MEM; \ } \ memset(_data, 0, sizeof(u_int8_t) * _cmd_size); \ if (should_pack) \ { \ pack_func(cmd_struct, _data); \ } \ _rc = icmd_send_command(mf, op, _data, _cmd_size, skip_write); \ if (_rc) \ { \ free(_data); \ return convert_rc(_rc); \ } \ unpack_func(cmd_struct, _data); \ free(_data); \ return GCIF_STATUS_SUCCESS #define SEND_ICMD_FLOW(mf, op, struct_name, cmd_struct, should_pack, skip_write) \ SEND_ICMD_FLOW_GENERIC(mf, op, struct_name, cmd_struct, should_pack, skip_write, struct_name ## _pack, \ struct_name ## _unpack) #define SEND_UNION_ICMD_FLOW(mf, op, struct_name, cmd_struct, should_pack, skip_write) \ int _rc; \ int _cmd_size = struct_name ## _size(); \ u_int8_t* _data = (u_int8_t*)malloc(sizeof(u_int8_t) * _cmd_size); \ if (!_data) \ { \ return GCIF_STATUS_NO_MEM; \ } \ memset(_data, 0, sizeof(u_int8_t) * _cmd_size); \ if (should_pack) \ { \ struct_name ## _in_pack(&(cmd_struct->in), _data); \ } \ _rc = icmd_send_command(mf, op, _data, _cmd_size, skip_write); \ if (_rc) \ { \ free(_data); \ return convert_rc(_rc); \ } \ struct_name ## _out_unpack(&(cmd_struct->out), _data); \ free(_data); \ return GCIF_STATUS_SUCCESS #define SEND_IN_OUT_ICMD_FLOW(mf, op, base_struct_name, cmd_struct_in, cmd_struct_out, should_pack, skip_write) \ int _rc; \ int _cmd_in_size = base_struct_name ## _in_size(); \ int _cmd_out_size = base_struct_name ## _out_size(); \ int _cmd_size = _cmd_in_size + _cmd_out_size; \ u_int8_t* _data = (u_int8_t*)malloc(sizeof(u_int8_t) * _cmd_size); \ if (!_data) \ { \ return GCIF_STATUS_NO_MEM; \ } \ memset(_data, 0, sizeof(u_int8_t) * _cmd_size); \ if (should_pack) \ { \ base_struct_name ## _in_pack(cmd_struct_in, _data); \ } \ _rc = icmd_send_command(mf, op, _data, _cmd_size, skip_write); \ if (_rc) \ { \ free(_data); \ return convert_rc(_rc); \ } \ base_struct_name ## _out_unpack(cmd_struct_out, _data + sizeof(u_int8_t) * _cmd_in_size); \ free(_data); \ return GCIF_STATUS_SUCCESS #define SEND_GEARBOX_FLOW(mf, \ method, \ request_struct_name, \ request_cmd_struct, \ response_struct_name, \ response_cmd_struct, \ should_pack, \ skip_write) \ SEND_GEARBOX_FLOW_GENERIC(mf, \ method, \ request_struct_name, \ request_cmd_struct, \ response_struct_name, \ response_cmd_struct, \ should_pack, \ skip_write, \ request_struct_name ## _pack, \ response_struct_name ## _unpack) #define SEND_GEARBOX_FLOW_GENERIC(mf, \ method, \ request_struct_name, \ request_cmd_struct, \ response_struct_name, \ response_cmd_struct, \ should_pack, \ skip_write, \ pack_func, \ unpack_func) \ int _rc; \ int _cmd_request_size = request_struct_name ## _size(); \ int _cmd_response_size = response_struct_name ## _size(); \ u_int8_t *_request_data = (u_int8_t*)malloc(sizeof(u_int8_t) * _cmd_request_size); \ u_int8_t *_response_data = (u_int8_t*)malloc(sizeof(u_int8_t) * _cmd_response_size); \ if (!_request_data || !_response_data) { \ /* coverity: In case only 1 malloc successed we need to free it before exit, try free both since free has null check inside anyway*/ \ free(_request_data); \ free(_response_data); \ return GCIF_STATUS_NO_MEM; \ } \ memset(_request_data, 0, sizeof(u_int8_t) * _cmd_request_size); \ memset(_response_data, 0, sizeof(u_int8_t) * _cmd_response_size); \ if (should_pack) { \ pack_func(request_cmd_struct, _request_data); \ } \ if (mf->gb_info.gb_conn_type == GEARBPX_OVER_SWITCH) { \ _rc = create_mddt_wrapper_for_cmd_payload(mf, \ method, \ _request_data, \ _response_data, \ _cmd_request_size, \ _cmd_response_size); \ } \ else { \ _rc = 0; \ /*_rc = icmd_send_gbox_command_com(mf, _request_data, _cmd_request_size, _response_data, _cmd_response_size, skip_write); */ \ } \ if (_rc) { \ free(_request_data); \ free(_response_data); \ return convert_rc(_rc); \ } \ unpack_func(response_cmd_struct, _response_data); \ free(_request_data); \ free(_response_data); \ return GCIF_STATUS_SUCCESS #endif /* ifndef _ICMD_MACROS */ mstflint-4.26.0/cmdif/tools_cif.c0000644000175000017500000001150014522641732017107 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * tools_cif.c * * Created on: Nov 5, 2014 * Author: adrianc */ #include #include #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) #include #endif #include "tools_cif.h" #define TOOLS_HCR_MAX_MBOX 288 #define QUERY_DEV_CAP_OP 0x3 #define QUERY_DEF_PARAMS_OP 0x73 #define HW_ACCESS_OP 0x60 #define QPC_READ_OP 0x67 #define QPC_WRITE_OP 0x69 #define CHECK_RC(rc) \ if (rc) \ { \ return (MError)rc; \ } #define BE32_TO_CPU(s, n) \ do \ { \ u_int32_t i; \ u_int32_t* p = (u_int32_t*)(s); \ for (i = 0; i < (n); i++, p++) \ *p = __be32_to_cpu(*p); \ } while (0) #if __BYTE_ORDER == __BIG_ENDIAN #define SWAP_DW_BE(uint64_num) (((uint64_num)&0xffffffffULL) << 32) | (((uint64_num) >> 32) & 0xffffffffULL) #else #define SWAP_DW_BE(uint64_num) (uint64_num) #endif // TODO: adrianc: if we find ourselves adding more and more commands consider using a macro to save code. // TODO: adrianc: when library expands consider returning its own error code MError tcif_query_dev_cap(mfile* dev, u_int32_t offset, u_int64_t* data) { int rc = tools_cmdif_send_mbox_command(dev, 0, QUERY_DEV_CAP_OP, 0, offset, (u_int32_t*)data, 8, 1); CHECK_RC(rc); BE32_TO_CPU(data, 2); *data = SWAP_DW_BE(*data); return ME_OK; } MError tcif_query_global_def_params(mfile* dev, struct tools_open_query_def_params_global* global_params) { u_int8_t data[TOOLS_OPEN_QUERY_DEF_PARAMS_GLOBAL_SIZE] = {0}; int rc = tools_cmdif_send_mbox_command(dev, 0, QUERY_DEF_PARAMS_OP, 0, 0, data, sizeof(data), 0); CHECK_RC(rc); tools_open_query_def_params_global_unpack(global_params, data); return ME_OK; } MError tcif_query_per_port_def_params(mfile* dev, u_int8_t port, struct tools_open_query_def_params_per_port* port_params) { u_int8_t data[TOOLS_OPEN_QUERY_DEF_PARAMS_PER_PORT_SIZE] = {0}; int rc = tools_cmdif_send_mbox_command(dev, 0, QUERY_DEF_PARAMS_OP, port, 0, data, sizeof(data), 0); CHECK_RC(rc); tools_open_query_def_params_per_port_unpack(port_params, data); return ME_OK; } MError tcif_qpc_context_read(mfile* dev, u_int32_t qpn, u_int32_t source, u_int8_t* data, u_int32_t len) { u_int32_t input_mod = 0; input_mod = MERGE(input_mod, source, 24, 8); input_mod = MERGE(input_mod, qpn, 0, 24); int rc = tools_cmdif_send_mbox_command(dev, input_mod, QPC_READ_OP, 0, 0, data, len, 1); CHECK_RC(rc); return ME_OK; } MError tcif_qpc_context_write(mfile* dev, u_int32_t qpn, u_int32_t source, u_int8_t* data, u_int32_t len) { u_int32_t input_mod = 0; input_mod = MERGE(input_mod, source, 24, 8); input_mod = MERGE(input_mod, qpn, 0, 24); int rc = tools_cmdif_send_mbox_command(dev, input_mod, QPC_WRITE_OP, 0, 0, data, len, 0); CHECK_RC(rc); return ME_OK; } MError tcif_hw_access(mfile* dev, u_int64_t key, int lock_unlock) { return (MError)tools_cmdif_send_inline_cmd(dev, key, NULL, 0, HW_ACCESS_OP, lock_unlock); } const char* tcif_err2str(MError rc) { return m_err2str(rc); } MError tcif_cr_mbox_supported(mfile* dev) { #if defined(__FreeBSD__) || defined(UEFI_BUILD) (void)dev; return ME_NOT_IMPLEMENTED; #else return (MError)tools_cmdif_is_cr_mbox_supported(dev); #endif } mstflint-4.26.0/cmdif/icmd_cif_common.c0000644000175000017500000001157214522641732020244 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include "icmd_cif_common.h" /* * get_last_err */ char* gcif_get_last_err() { return "Deprecated: General Error"; } /* * gcif_err_str */ char* gcif_err_str(int rc) { switch (rc) { case GCIF_STATUS_SUCCESS: return "OK"; case GCIF_STATUS_INVALID_OPCODE: return "Invalid opcode"; case GCIF_STATUS_INVALID_CMD: return "Invalid cmd"; case GCIF_STATUS_OPERATIONAL_ERROR: return "Operational error"; case GCIF_STATUS_CR_FAIL: return "cr-space access failure"; case GCIF_STATUS_BAD_OPCODE: return "unsupported opcode was used"; case GCIF_STATUS_SEMAPHORE_TO: return "timed out while trying to take semaphore"; case GCIF_STATUS_EXECUTE_TO: return "timed out while waiting for command to execute"; case GCIF_STATUS_IFC_BUSY: return "command-interface is busy executing another command"; case GCIF_STATUS_BAD_PARAMETERS: return "bad parameter"; case GCIF_STATUS_ICMD_NOT_READY: return "command interface not ready"; case GCIF_STATUS_BAD_PARAM: return "command interface bad param"; case GCIF_STATUS_UNSUPPORTED_ICMD_VERSION: return "Unsupported icmd version"; case GCIF_STATUS_UNKNOWN_STATUS: return "Unknown ICMD Status."; case GCIF_STATUS_GENERAL_ERROR: return "General error"; case GCIF_SIZE_EXCEEDS_LIMIT: return "Size exceeds limit"; case GCIF_ICMD_NOT_SUPPORTED: return "icmd not supported"; case GCIF_ICMD_INIT_FAILED: return "icmd initialization failed"; case GCIF_ICMD_BUSY: return "icmd busy"; case GCIF_STATUS_ICM_NOT_AVAIL: return "ICM not available"; default: return "Unknown error"; } } /* * convert_rc */ int convert_rc(int rc) { switch (rc) { case ME_ICMD_STATUS_CR_FAIL: return GCIF_STATUS_CR_FAIL; case ME_ICMD_STATUS_SEMAPHORE_TO: return GCIF_STATUS_SEMAPHORE_TO; case ME_ICMD_STATUS_EXECUTE_TO: return GCIF_STATUS_EXECUTE_TO; case ME_ICMD_STATUS_IFC_BUSY: return GCIF_STATUS_IFC_BUSY; case ME_ICMD_STATUS_ICMD_NOT_READY: return GCIF_STATUS_ICMD_NOT_READY; case ME_ICMD_UNSUPPORTED_ICMD_VERSION: return GCIF_STATUS_UNSUPPORTED_ICMD_VERSION; case ME_ICMD_INVALID_OPCODE: return GCIF_STATUS_INVALID_OPCODE; case ME_ICMD_INVALID_CMD: return GCIF_STATUS_INVALID_CMD; case ME_ICMD_OPERATIONAL_ERROR: return GCIF_STATUS_OPERATIONAL_ERROR; case ME_ICMD_BAD_PARAM: return GCIF_STATUS_BAD_PARAM; case ME_ICMD_ICM_NOT_AVAIL: return GCIF_STATUS_ICM_NOT_AVAIL; case ME_ICMD_WRITE_PROTECT: return GCIF_STATUS_WRITE_PROTECT; case ME_ICMD_UNKNOWN_STATUS: return GCIF_STATUS_UNKNOWN_STATUS; case ME_ICMD_SIZE_EXCEEDS_LIMIT: return GCIF_SIZE_EXCEEDS_LIMIT; case ME_ICMD_NOT_SUPPORTED: return GCIF_ICMD_NOT_SUPPORTED; case ME_ICMD_INIT_FAILED: return GCIF_ICMD_INIT_FAILED; case ME_ICMD_BUSY: return GCIF_ICMD_BUSY; default: break; } return GCIF_STATUS_GENERAL_ERROR; } mstflint-4.26.0/cmdif/Makefile.am0000644000175000017500000000447514522641732017033 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common\ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/tools_layouts CCMDIF_SO = ccmdif.so AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) -DCMDIF_EXPORTS noinst_LTLIBRARIES = libcmdif.la cmdifincludedir = $(includedir)/mstflint/cmdif/ cmdifinclude_HEADERS = icmd_cif_common.h icmd_cif_open.h libcmdif_la_SOURCES = tools_cif.c tools_cif.h icmd_cif_common.c icmd_cif_common.h icmd_cif_open.c icmd_cif_open.h cmdif_pylibdir = $(libdir)/mstflint/python_tools/ cmdif_pylib_DATA = ${CCMDIF_SO} cmdif.py ${CCMDIF_SO}: libcmdif.la $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${CCMDIF_SO} \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a CLEANFILES = ${CCMDIF_SO} mstflint-4.26.0/cmdif/cmdif.py0000755000175000017500000002153714522641732016434 0ustar tzafrirctzafrirc # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import os import sys import platform import ctypes import mtcr def ones(n): return (1 << n) - 1 def extractField(val, start, size): return (val & (ones(size) << start)) >> start def insertField(val1, start1, val2, start2, size): return val1 & ~(ones(size) << start1) | (extractField(val2, start2, size) << start1) class CmdIfException(Exception): pass ########################## CMDIF = None try: from ctypes import * if platform.system() == "Windows" or os.name == "nt": try: CMDIF = CDLL("libcmdif-1.dll") except BaseException: CMDIF = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "libcmdif-1.dll")) else: try: CMDIF = CDLL("ccmdif.so") except BaseException: CMDIF = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "ccmdif.so")) except Exception as exp: raise CmdIfException("Failed to load shared library ccmdif.so/libcmdif-1.dll: %s" % exp) if CMDIF: class CmdIf: ########################## def __init__(self, dev): self.mstDev = dev self.getLastErrFunc = CMDIF.gcif_get_last_err self.getLastErrFunc.restype = c_char_p self.setItraceFunc = CMDIF.gcif_set_itrace self.getFwInfoFunc = CMDIF.gcif_get_fw_info self.multiHostSyncFunc = CMDIF.gcif_mh_sync self.multiHostSyncStatusFunc = CMDIF.gcif_mh_sync_status self.getIcmdQueryCap = CMDIF.get_icmd_query_cap def errStrFunc(self, rc): errStrFunc_ = CMDIF.gcif_err_str errStrFunc_.restype = c_char_p return errStrFunc_(rc).decode("utf-8") ########################## def close(self): self.mstDev = None ########################## def __del__(self): if self.mstDev: self.close() ########################## def sendCmd(self, opcode, data, skipWrite): self.mstDev.icmdSendCmd(opcode, data, skipWrite) ########################## def setItrace(self, mask, level, log_delay=0): class ITRACE_ST(Structure): _fields_ = [("unit_mask", c_uint32), ("log_level", c_uint8), ("log_delay", c_uint16)] setItraceStruct = pointer(ITRACE_ST(mask, level, log_delay)) rc = self.setItraceFunc(self.mstDev.mf, setItraceStruct) if rc: raise CmdIfException("Failed to set itrace mask: %s (%d)" % (self.errStrFunc(rc), rc)) ########################## def getFwInfo(self): class FW_INFO_ST(Structure): _fields_ = [("MAJOR", c_uint16), ("SUBMINOR", c_uint16), ("MINOR", c_uint16), ("Hour", c_uint8), ("Minutes", c_uint8), ("Seconds", c_uint8), ("Day", c_uint8), ("Month", c_uint8), ("Year", c_uint16), ("hash_signature", c_uint16), ("psid", c_char_p * 17)] getFwInfoStruct = FW_INFO_ST() getFwInfoStructPtr = pointer(getFwInfoStruct) rc = self.getFwInfoFunc(self.mstDev.mf, getFwInfoStructPtr) if rc: raise CmdIfException("Failed to get FW INFO: %s, device maybe in livefish mode." % (self.errStrFunc(rc))) return getFwInfoStruct class MH_SYNC_IN_ST(Structure): _fields_ = [("state", c_uint8), ("sync_type", c_uint8), ("ignore_inactive_host", c_uint8)] class MH_SYNC_OUT_ST(Structure): _fields_ = [("state", c_uint8), ("sync_type", c_uint8), ("ignore_inactive_host", c_uint8), ("host_ready", c_uint8), ("start_uptime", c_uint32)] ########################## def multiHostSync(self, state, syncType, ignoreInactiveHost=0x0): multiHostSyncInStruct = self.MH_SYNC_IN_ST() multiHostSyncInStructPtr = pointer(multiHostSyncInStruct) multiHostSyncInStructPtr.contents.ignore_inactive_host = c_uint8(ignoreInactiveHost) multiHostSyncInStructPtr.contents.state = c_uint8(state) multiHostSyncInStructPtr.contents.sync_type = c_uint8(syncType) multiHostSyncOutStruct = self.MH_SYNC_OUT_ST() multiHostSyncOutStructPtr = pointer(multiHostSyncOutStruct) rc = self.multiHostSyncFunc(self.mstDev.mf, multiHostSyncInStructPtr, multiHostSyncOutStructPtr) if rc: raise CmdIfException("Failed to run multi host icmd: %s (%d)" % (self.errStrFunc(rc), rc)) return multiHostSyncOutStruct ########################## def multiHostSyncStatus(self): multiHostSyncInStruct = self.MH_SYNC_IN_ST() multiHostSyncInStructPtr = pointer(multiHostSyncInStruct) multiHostSyncOutStruct = self.MH_SYNC_OUT_ST() multiHostSyncOutStructPtr = pointer(multiHostSyncOutStruct) rc = self.multiHostSyncStatusFunc(self.mstDev.mf, multiHostSyncInStructPtr, multiHostSyncOutStructPtr) if rc: raise CmdIfException("Failed to run multi host icmd: %s (%d)" % (self.errStrFunc(rc), rc)) return multiHostSyncOutStruct ########################## class QUERY_CAP_ST(Structure): _fields_ = [("nic_cap_reg", c_uint8), ("port_state_behavior", c_uint8), ("virt_node_guid", c_uint8), ("ncfg_reg", c_uint8), ("cwcam_reg", c_uint8), ("sbcam_reg", c_uint8), ("capability_groups", c_uint8), ("virtual_link_down", c_uint8), ("icmd_exmb", c_uint8), ("capi", c_uint8), ("qcam_reg", c_uint8), ("mcam_reg", c_uint8), ("pcam_reg", c_uint8), ("mh_sync", c_uint8), ("allow_icmd_access_reg_on_all_registers", c_uint8), ("fw_info_psid", c_uint8), ("nv_access", c_uint8), ("wol_p", c_uint8), ("wol_u", c_uint8), ("wol_m", c_uint8), ("wol_b", c_uint8), ("wol_a", c_uint8), ("wol_g", c_uint8), ("wol_s", c_uint8), ("rol_g", c_uint8), ("rol_s", c_uint8), ("fpga", c_uint8), ("num_of_diagnostic_counters", c_uint16)] ########################## def isMultiHostSyncSupported(self): queryCapStruct = self.QUERY_CAP_ST() queryCapStructPtr = pointer(queryCapStruct) rc = self.getIcmdQueryCap(self.mstDev.mf, queryCapStructPtr) if rc: raise CmdIfException("Failed to run query cap icmd: %s (%d)" % (self.errStrFunc(rc), rc)) return (queryCapStruct.mh_sync == 0x1) else: raise CmdIfException("Failed to load cmdif.so/cmdif.dll") #################################################################################### if __name__ == "__main__": mstdev = mtcr.MstDevice("/dev/mst/mt4113_pciconf0") cmdif = CmdIf(mstdev) cmdif.setItrace(0x1001, 8) mstflint-4.26.0/cmdif/icmd_cif_common.h0000644000175000017500000000643514522641732020253 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _ICMD_COMMON_ #define _ICMD_COMMON_ #ifdef __cplusplus extern "C" { #endif #ifndef IN #define IN #endif #ifndef OUT #define OUT #endif #ifndef INOUT #define INOUT #endif /* --------- Typedefs & Constants ---------------------------------- */ /** * Possible status values returned by the API functions. * In some cases the status indicated in the cr-space may not fit * any of the below enumeration values, in which case the raw status * value will be returned. **/ enum { GCIF_STATUS_SUCCESS = 0, GCIF_STATUS_INVALID_OPCODE, GCIF_STATUS_INVALID_CMD, GCIF_STATUS_OPERATIONAL_ERROR, GCIF_STATUS_BAD_PARAM, GCIF_STATUS_CR_FAIL, // cr-space access failure GCIF_STATUS_BAD_OPCODE, // unsupported opcode was used GCIF_STATUS_SEMAPHORE_TO, // timed out while trying to take semaphore GCIF_STATUS_EXECUTE_TO, // timed out while waiting for command to execute GCIF_STATUS_IFC_BUSY, // command-interface is busy executing another command GCIF_STATUS_BAD_PARAMETERS, GCIF_STATUS_GENERAL_ERROR, GCIF_STATUS_ICMD_NOT_READY, GCIF_STATUS_UNSUPPORTED_ICMD_VERSION, GCIF_STATUS_ICM_NOT_AVAIL, GCIF_STATUS_WRITE_PROTECT, GCIF_STATUS_NO_MEM, GCIF_SIZE_EXCEEDS_LIMIT, GCIF_ICMD_NOT_SUPPORTED, GCIF_ICMD_INIT_FAILED, GCIF_ICMD_BUSY, GCIF_STATUS_UNKNOWN_STATUS }; enum { RW_READ = 0x1, RW_WRITE = 0x0 }; /* --------- Functional API ---------------------------------------- */ /** * Returns the last error message recorded by the library **/ char* gcif_get_last_err(); /** * Returns the error message associated with the provided return code **/ char* gcif_err_str(int rc); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/cmdif/Makefile.in0000644000175000017500000005735014522641736017050 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = cmdif DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(cmdifinclude_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libcmdif_la_LIBADD = am_libcmdif_la_OBJECTS = tools_cif.lo icmd_cif_common.lo \ icmd_cif_open.lo libcmdif_la_OBJECTS = $(am_libcmdif_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libcmdif_la_SOURCES) DIST_SOURCES = $(libcmdif_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(cmdif_pylibdir)" \ "$(DESTDIR)$(cmdifincludedir)" DATA = $(cmdif_pylib_DATA) HEADERS = $(cmdifinclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common\ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/tools_layouts CCMDIF_SO = ccmdif.so AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) -DCMDIF_EXPORTS noinst_LTLIBRARIES = libcmdif.la cmdifincludedir = $(includedir)/mstflint/cmdif/ cmdifinclude_HEADERS = icmd_cif_common.h icmd_cif_open.h libcmdif_la_SOURCES = tools_cif.c tools_cif.h icmd_cif_common.c icmd_cif_common.h icmd_cif_open.c icmd_cif_open.h cmdif_pylibdir = $(libdir)/mstflint/python_tools/ cmdif_pylib_DATA = ${CCMDIF_SO} cmdif.py CLEANFILES = ${CCMDIF_SO} all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign cmdif/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign cmdif/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libcmdif.la: $(libcmdif_la_OBJECTS) $(libcmdif_la_DEPENDENCIES) $(EXTRA_libcmdif_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libcmdif_la_OBJECTS) $(libcmdif_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icmd_cif_common.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icmd_cif_open.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools_cif.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-cmdif_pylibDATA: $(cmdif_pylib_DATA) @$(NORMAL_INSTALL) @list='$(cmdif_pylib_DATA)'; test -n "$(cmdif_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(cmdif_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(cmdif_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(cmdif_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(cmdif_pylibdir)" || exit $$?; \ done uninstall-cmdif_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(cmdif_pylib_DATA)'; test -n "$(cmdif_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(cmdif_pylibdir)'; $(am__uninstall_files_from_dir) install-cmdifincludeHEADERS: $(cmdifinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(cmdifinclude_HEADERS)'; test -n "$(cmdifincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(cmdifincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(cmdifincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(cmdifincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(cmdifincludedir)" || exit $$?; \ done uninstall-cmdifincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(cmdifinclude_HEADERS)'; test -n "$(cmdifincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(cmdifincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(cmdif_pylibdir)" "$(DESTDIR)$(cmdifincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-cmdif_pylibDATA install-cmdifincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-cmdif_pylibDATA uninstall-cmdifincludeHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am \ install-cmdif_pylibDATA install-cmdifincludeHEADERS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-cmdif_pylibDATA \ uninstall-cmdifincludeHEADERS ${CCMDIF_SO}: libcmdif.la $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${CCMDIF_SO} \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mstdump/0000755000175000017500000000000014522641740015373 5ustar tzafrirctzafrircmstflint-4.26.0/mstdump/crd_main/0000755000175000017500000000000014522641740017147 5ustar tzafrirctzafrircmstflint-4.26.0/mstdump/crd_main/Makefile.am0000755000175000017500000000373014522641732021212 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir)/../crd_lib -I$(top_srcdir)/include/mtcr_ul $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -g -Wall -W $(COMPILER_FPIC) bin_PROGRAMS = mstregdump mstregdump_SOURCES = mstdump.c mstregdump_LDADD = ../crd_lib/libcrdump.a ../../dev_mgt/libdev_mgt.la ../../reg_access/libreg_access.la ../../tools_layouts/libtools_layouts.la \ ../../${MTCR_CONF_DIR}/libmtcr_ul.la -lm ${LDL} mstregdump_LDFLAGS = -static mstregdump_CFLAGS = -DMSTDUMP_NAME=\"mstregdump\" -DDEV_EXAMPLE=\"0b:00.0\" mstflint-4.26.0/mstdump/crd_main/Makefile.in0000644000175000017500000005752014522641740021225 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstregdump$(EXEEXT) subdir = mstdump/crd_main DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_mstregdump_OBJECTS = mstregdump-mstdump.$(OBJEXT) mstregdump_OBJECTS = $(am_mstregdump_OBJECTS) am__DEPENDENCIES_1 = mstregdump_DEPENDENCIES = ../crd_lib/libcrdump.a \ ../../dev_mgt/libdev_mgt.la ../../reg_access/libreg_access.la \ ../../tools_layouts/libtools_layouts.la \ ../../${MTCR_CONF_DIR}/libmtcr_ul.la $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstregdump_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(mstregdump_CFLAGS) \ $(CFLAGS) $(mstregdump_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(mstregdump_SOURCES) DIST_SOURCES = $(mstregdump_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir)/../crd_lib -I$(top_srcdir)/include/mtcr_ul $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -g -Wall -W $(COMPILER_FPIC) mstregdump_SOURCES = mstdump.c mstregdump_LDADD = ../crd_lib/libcrdump.a ../../dev_mgt/libdev_mgt.la ../../reg_access/libreg_access.la ../../tools_layouts/libtools_layouts.la \ ../../${MTCR_CONF_DIR}/libmtcr_ul.la -lm ${LDL} mstregdump_LDFLAGS = -static mstregdump_CFLAGS = -DMSTDUMP_NAME=\"mstregdump\" -DDEV_EXAMPLE=\"0b:00.0\" all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mstdump/crd_main/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mstdump/crd_main/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstregdump$(EXEEXT): $(mstregdump_OBJECTS) $(mstregdump_DEPENDENCIES) $(EXTRA_mstregdump_DEPENDENCIES) @rm -f mstregdump$(EXEEXT) $(AM_V_CCLD)$(mstregdump_LINK) $(mstregdump_OBJECTS) $(mstregdump_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstregdump-mstdump.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mstregdump-mstdump.o: mstdump.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstregdump_CFLAGS) $(CFLAGS) -MT mstregdump-mstdump.o -MD -MP -MF $(DEPDIR)/mstregdump-mstdump.Tpo -c -o mstregdump-mstdump.o `test -f 'mstdump.c' || echo '$(srcdir)/'`mstdump.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstregdump-mstdump.Tpo $(DEPDIR)/mstregdump-mstdump.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mstdump.c' object='mstregdump-mstdump.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstregdump_CFLAGS) $(CFLAGS) -c -o mstregdump-mstdump.o `test -f 'mstdump.c' || echo '$(srcdir)/'`mstdump.c mstregdump-mstdump.obj: mstdump.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstregdump_CFLAGS) $(CFLAGS) -MT mstregdump-mstdump.obj -MD -MP -MF $(DEPDIR)/mstregdump-mstdump.Tpo -c -o mstregdump-mstdump.obj `if test -f 'mstdump.c'; then $(CYGPATH_W) 'mstdump.c'; else $(CYGPATH_W) '$(srcdir)/mstdump.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstregdump-mstdump.Tpo $(DEPDIR)/mstregdump-mstdump.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mstdump.c' object='mstregdump-mstdump.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstregdump_CFLAGS) $(CFLAGS) -c -o mstregdump-mstdump.obj `if test -f 'mstdump.c'; then $(CYGPATH_W) 'mstdump.c'; else $(CYGPATH_W) '$(srcdir)/mstdump.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mstdump/crd_main/mstdump.c0000644000175000017500000001433614522641732021014 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ //#include #include #include #include #include #define CAUSE_FLAG "--cause" #define MAX_DEV_LEN 512 #ifndef MSTDUMP_NAME #define MSTDUMP_NAME "mstdump" #endif #ifndef DEV_EXAMPLE #define DEV_EXAMPLE "/dev/mst/mt4099_pci_cr0" #endif // string explaining the cmd-line structure char correct_cmdline[] = " Mellanox " MSTDUMP_NAME " utility, dumps device internal configuration data\n\ Usage: " MSTDUMP_NAME " [-full] [i2c-slave] [-v[ersion] [-h[elp]]]\n\n\ -full : Dump more expanded list of addresses\n\ Note : be careful when using this flag, None safe addresses might be read.\n\ -v | --version : Display version info\n\ -h | --help : Print this help message\n\ i2c_slave : I2C slave [0-127]\n\ Example :\n\ " MSTDUMP_NAME " " DEV_EXAMPLE "\n"; void print_dword(crd_dword_t* dword) { printf("0x%8.8x 0x%8.8x\n", dword->addr, dword->data); } bool check_device_name(const char* device) { if (device == NULL) { return false; } unsigned int dev_len = strlen(device); if (dev_len == 0 || dev_len > MAX_DEV_LEN) { return false; } return true; } int main(int argc, char* argv[]) { int i; mfile* mf; int rc; int full = 0; int cause_addr = -1, cause_off = -1; crd_ctxt_t* context = NULL; u_int32_t arr_size = 0; char* endptr; u_int8_t new_i2c_slave = 0; char device[MAX_DEV_LEN] = {0}; #if defined(__linux__) || defined(__FreeBSD__) if (geteuid() != 0) { printf("-E- Permission denied: User is not root\n"); return 1; } #endif if (argc < 2 || argc > 4) { fprintf(stderr, "%s", correct_cmdline); return 2; } for (i = 1; i < argc; ++i) { /* check position-independent flags */ if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "-help") || !strcmp(argv[i], "--help")) { fprintf(stdout, "%s", correct_cmdline); exit(0); } else if (!strcmp(argv[i], "-v") || !strcmp(argv[i], "-version") || !strcmp(argv[i], "--version")) { print_version_string(MSTDUMP_NAME, ""); exit(0); } else if (!strncmp(argv[i], CAUSE_FLAG, strlen(CAUSE_FLAG))) { if (sscanf(argv[i], CAUSE_FLAG "=%i.%d", &cause_addr, &cause_off) != 2) { fprintf(stderr, "Invalid parameters to " CAUSE_FLAG " flag\n"); fprintf(stdout, "%s", correct_cmdline); exit(1); } if (cause_addr < 0 || cause_off < 0) { fprintf(stderr, "Parameters to " CAUSE_FLAG " flag must be non-negative values\n"); exit(1); } } } i = 1; // i points to the current command line argument if (i < argc && !strcasecmp(argv[i], "-full")) { full = 1; ++i; } if (i >= argc) { fprintf(stderr, "Device is not specified in command line. Exiting.\n"); fprintf(stdout, "%s", correct_cmdline); return 1; } strncpy(device, argv[i], MAX_DEV_LEN - 1); if (!check_device_name(device)) { fprintf(stderr, "Invalid device format, %s. Exiting\n", device); return 1; } if (!(mf = mopen_adv((const char*)device, (MType)(MST_DEFAULT | MST_CABLE)))) { fprintf(stderr, "Unable to open device %s. Exiting.\n", argv[i]); return 1; } ++i; // move past the device parameter if (i < argc && !strncmp(argv[i], CAUSE_FLAG, strlen(CAUSE_FLAG))) { i++; } if (i < argc) { new_i2c_slave = (u_int8_t)strtoul(argv[i], &endptr, 0); if (*endptr || !*argv[i]) { fprintf(stderr, "Invalid i2c-slave %s\n", argv[i]); mclose(mf); return 1; } mset_i2c_slave(mf, new_i2c_slave); i++; } if (i < argc) { if (i < argc) { fprintf(stderr, "Unknown argument: %s.\n", argv[i]); fprintf(stderr, "%s", correct_cmdline); mclose(mf); return 1; } } rc = CRD_OK; rc = crd_init(&context, mf, full, cause_addr, cause_off, NULL, ""); if (rc) { mclose(mf); goto error; } // printf("Number of blocks : 0x%d\n",(context)->block_count); rc = crd_get_dword_num(context, &arr_size); if (rc) { crd_free(context); mclose(mf); goto error; } rc = crd_dump_data(context, NULL, print_dword); if (rc) { crd_free(context); mclose(mf); goto error; } crd_free(context); mclose(mf); return 0; error: printf("-E- %s\n", crd_err_str(rc)); return rc; } mstflint-4.26.0/mstdump/Makefile.am0000644000175000017500000000277614522641732017444 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = crd_lib crd_main mstdump_dbs mstflint-4.26.0/mstdump/mstdump_dbs/0000755000175000017500000000000014522641740017714 5ustar tzafrirctzafrircmstflint-4.26.0/mstdump/mstdump_dbs/ConnectIB.csv0000755000175000017500000006566414522641732022262 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16385, 0x010010,8, 0x010104,1, 0x01010c,4, 0x010200,1, 0x010210,4, 0x010300,4, 0x010400,3, 0x010410,1, 0x010444,1, 0x01044c,4, 0x010480,2, 0x010500,35, 0x010590,1, 0x010600,32, 0x010704,1, 0x01070c,1, 0x010804,2, 0x010814,3, 0x010824,2, 0x010834,3, 0x010844,2, 0x010854,5, 0x010a00,6, 0x011004,1, 0x01100c,4, 0x011204,1, 0x011214,4, 0x011228,1, 0x011244,1, 0x011250,4, 0x011264,1, 0x011274,1, 0x01127c,1, 0x0112a4,1, 0x011300,4, 0x011314,1, 0x01131c,3, 0x011404,2, 0x011430,20, 0x011484,2, 0x011498,5, 0x0114bc,1, 0x0114c8,1, 0x0114d4,2, 0x01150c,3, 0x011524,3, 0x011608,3, 0x011618,4, 0x011680,16, 0x011704,2, 0x011730,20, 0x011784,3, 0x011794,3, 0x0117c0,6, 0x011800,35, 0x0118a4,1, 0x0118ac,1, 0x0118c4,3, 0x0118d4,1, 0x0118dc,2, 0x011900,35, 0x011b04,2, 0x011b14,3, 0x011b24,2, 0x011b38,6, 0x011b60,5, 0x011c04,1, 0x011cb8,18, 0x011d98,1, 0x011e00,1, 0x011e08,1, 0x011e10,1, 0x012000,32, 0x012200,32, 0x012400,32, 0x012600,32, 0x012800,20, 0x012888,22, 0x012900,18, 0x012a00,36, 0x012b00,3, 0x012b10,1, 0x012b20,1, 0x012b30,1, 0x012b40,1, 0x012b50,1, 0x012b60,1, 0x012c00,1, 0x012c08,1, 0x012c10,1, 0x012c18,1, 0x012c20,1, 0x012c28,1, 0x012c30,1, 0x012c38,1, 0x012c50,1, 0x012c58,1, 0x012c60,1, 0x012c68,1, 0x012c70,1, 0x012c78,1, 0x012c80,1, 0x012c88,1, 0x012d00,5, 0x012d20,2, 0x012e00,6, 0x012e20,6, 0x012e80,5, 0x013000,4, 0x013084,1, 0x01308c,2, 0x013180,5, 0x01319c,5, 0x013304,1, 0x0133bc,52, 0x013500,35, 0x013604,1, 0x01360c,1, 0x013624,1, 0x01362c,1, 0x013644,1, 0x01364c,3, 0x013800,1, 0x013808,2, 0x013a04,1, 0x013a0c,4, 0x015000,32, 0x015100,2, 0x015110,3, 0x015120,2, 0x015144,3, 0x015204,1, 0x01520c,1, 0x015224,1, 0x01522c,1, 0x015234,1, 0x01523c,1, 0x015244,1, 0x01524c,1, 0x015254,1, 0x01525c,2, 0x015270,1, 0x015280,1, 0x015290,1, 0x0152a0,1, 0x0152b0,1, 0x0152c0,1, 0x0152d0,1, 0x0152e0,1, 0x0152f0,1, 0x015300,1, 0x015310,1, 0x015320,1, 0x015330,1, 0x016800,3, 0x016820,8, 0x017800,1, 0x017818,1, 0x017834,1, 0x017904,4, 0x017934,1, 0x01794c,1, 0x017970,2, 0x017a00,6, 0x017c00,6, 0x017c20,6, 0x017c40,6, 0x017c60,6, 0x017c80,6, 0x017ca0,6, 0x017cc0,6, 0x017ce0,6, 0x017d00,3, 0x017d10,4, 0x018400,11, 0x018430,2, 0x018440,4, 0x018604,1, 0x018618,2, 0x018640,4, 0x018800,1, 0x018810,4, 0x018c04,1, 0x018c0c,4, 0x01a400,7, 0x01a420,2, 0x01a444,1, 0x01a44c,1, 0x01a800,1, 0x01a814,3, 0x01ac04,1, 0x01ac0c,4, 0x01c400,7, 0x01c500,8, 0x01c544,1, 0x01c554,3, 0x01c564,3, 0x01c574,3, 0x01c604,1, 0x01c60c,3, 0x01c800,1, 0x01c814,3, 0x01cc04,1, 0x01cc0c,4, 0x01f400,1, 0x01f408,4, 0x01f41c,3, 0x01f500,2, 0x01f800,1, 0x01f814,3, 0x01fc04,1, 0x01fc0c,4, 0x020004,1, 0x02000c,4, 0x020080,9, 0x021004,1, 0x02100c,4, 0x021400,5, 0x021418,1, 0x021480,1, 0x021704,2, 0x02173c,17, 0x021804,1, 0x02180c,4, 0x021a00,2, 0x022000,131, 0x022220,4, 0x022408,6, 0x022444,1, 0x022454,3, 0x022504,1, 0x02250c,4, 0x022624,1, 0x02262c,3, 0x02263c,1, 0x022804,1, 0x02280c,4, 0x022904,4, 0x022924,4, 0x024000,5, 0x024020,1, 0x024030,8, 0x024058,1, 0x024060,1, 0x024070,9, 0x0240a0,1, 0x0240b0,4, 0x024100,24, 0x024200,5, 0x024218,3, 0x0243a0,6, 0x0243bc,26, 0x024428,3, 0x024440,3, 0x024464,1, 0x02446c,1, 0x024474,3, 0x024484,1, 0x02448c,4, 0x024500,1, 0x02450c,7, 0x024530,1, 0x024544,4, 0x024560,1, 0x024570,1, 0x024580,4, 0x0245a4,2, 0x0245b4,3, 0x0245c4,2, 0x0245d4,3, 0x024600,2, 0x02460c,1, 0x024624,3, 0x024674,1, 0x02467c,1, 0x024684,1, 0x02468c,4, 0x024704,1, 0x02470c,4, 0x024780,32, 0x024824,4, 0x024864,6, 0x024888,10, 0x0248b4,3, 0x0248c4,1, 0x0248cc,1, 0x0248d4,1, 0x0248dc,7, 0x024908,6, 0x024928,6, 0x024968,6, 0x024984,3, 0x024994,1, 0x02499c,6, 0x025004,6, 0x025800,2, 0x026000,99, 0x028000,2, 0x028404,1, 0x02840c,4, 0x028800,2, 0x028c04,1, 0x028c0c,4, 0x029004,1, 0x02900c,5, 0x029b20,2, 0x029b30,4, 0x029b50,5, 0x02a004,1, 0x02a00c,4, 0x02a200,1, 0x02a210,9, 0x02a3fc,1, 0x02a484,16, 0x02a504,16, 0x02a584,16, 0x02a604,16, 0x02a6fc,34, 0x02a790,4, 0x02a7c4,1, 0x02a7d4,11, 0x02a900,1, 0x02aa04,1, 0x02aa0c,4, 0x02ab00,40, 0x02aba4,1, 0x02abac,1, 0x02abb4,1, 0x02abbc,1, 0x02abc4,1, 0x02abcc,9, 0x02ac00,2, 0x02ac10,3, 0x02ac44,3, 0x02ad00,1, 0x02ad08,1, 0x02ad10,1, 0x02ad18,1, 0x02ad20,1, 0x02ad28,1, 0x02ad30,1, 0x02ad38,1, 0x02ad40,1, 0x02ad48,1, 0x02ad50,1, 0x02ad58,1, 0x02ad60,1, 0x02ad68,1, 0x02ad70,1, 0x02ad78,1, 0x02ad80,1, 0x02ad88,1, 0x02ad90,1, 0x02ad98,1, 0x02ada0,1, 0x02ada8,1, 0x02adb0,1, 0x02adb8,1, 0x02adc0,1, 0x02adc8,1, 0x02add0,1, 0x02add8,1, 0x02ade0,1, 0x02ade8,1, 0x02adf0,1, 0x02adf8,1, 0x02c000,6, 0x02c100,5, 0x02c204,1, 0x02c214,3, 0x02c224,1, 0x02c22c,4, 0x02c244,2, 0x02c400,2, 0x02c418,2, 0x02c434,2, 0x02c504,6, 0x02c534,2, 0x02c54c,1, 0x02c570,3, 0x02c600,6, 0x02c620,6, 0x02c800,3, 0x02c820,6, 0x02c840,6, 0x02c860,6, 0x02c880,6, 0x02c8a0,6, 0x02c8c0,6, 0x02c8e0,6, 0x02c900,6, 0x02c920,6, 0x02c940,6, 0x02c960,6, 0x02c980,6, 0x02c9a0,6, 0x02c9c0,6, 0x02c9e0,6, 0x02ca00,6, 0x02ca20,6, 0x02ca40,6, 0x02ca60,6, 0x02cc00,3, 0x02cc20,9, 0x02cc48,4, 0x030004,2, 0x030034,19, 0x030084,2, 0x0300bc,17, 0x030104,2, 0x030138,18, 0x030300,6, 0x030340,1, 0x03034c,1, 0x030384,1, 0x0303c0,16, 0x030404,1, 0x03040c,4, 0x030804,1, 0x03080c,4, 0x030c04,1, 0x030c0c,4, 0x030e00,1, 0x031000,6, 0x031100,6, 0x031200,17, 0x031400,6, 0x031420,1, 0x031444,2, 0x031454,3, 0x031464,2, 0x031474,3, 0x034104,2, 0x034118,12, 0x034180,2, 0x034200,19, 0x034254,21, 0x0342ac,1, 0x0342c0,6, 0x0342f0,4, 0x034504,2, 0x034518,12, 0x034580,2, 0x034600,19, 0x034654,21, 0x0346ac,1, 0x0346c0,6, 0x0346f0,4, 0x034800,1, 0x034904,2, 0x034918,12, 0x034980,2, 0x034c00,12, 0x034c40,9, 0x034c80,9, 0x034e04,3, 0x034e44,1, 0x034e4c,4, 0x034e80,5, 0x034ea4,1, 0x034eac,1, 0x034f04,1, 0x034f20,9, 0x034f80,1, 0x035000,2, 0x035010,3, 0x035044,3, 0x035100,66, 0x035210,3, 0x035244,3, 0x035300,64, 0x037000,5, 0x03702c,7, 0x037080,4, 0x037094,1, 0x037100,2, 0x037200,2, 0x037210,3, 0x037244,3, 0x037300,69, 0x03742c,7, 0x037480,4, 0x037494,1, 0x037500,2, 0x037600,2, 0x037610,3, 0x037644,3, 0x037700,69, 0x038000,3, 0x038104,2, 0x03813c,4, 0x038400,1, 0x038418,1, 0x038434,1, 0x038504,4, 0x038534,1, 0x03854c,1, 0x038570,2, 0x038600,6, 0x038800,3, 0x038820,6, 0x038840,6, 0x038860,6, 0x038880,6, 0x038900,20, 0x038958,1, 0x038980,3, 0x0389a0,25, 0x03c000,3, 0x03c010,3, 0x03c020,3, 0x03c040,9, 0x03c068,6, 0x03c090,2, 0x03c0a0,3, 0x03c0c0,12, 0x03c0f4,1, 0x03c100,2, 0x03c110,3, 0x03c120,1, 0x03c130,11, 0x03c160,2, 0x03c180,4, 0x03c194,3, 0x03c1a4,2, 0x03c1b0,4, 0x03c2e0,5, 0x03c2f8,2, 0x03c30c,13, 0x03c34c,77, 0x03c48c,18, 0x03c500,32, 0x03c800,16, 0x03c84c,18, 0x03c8e0,2, 0x03c8ec,3, 0x03c900,1, 0x03c910,5, 0x03c930,5, 0x03c950,5, 0x03c970,5, 0x03c990,1, 0x03c9a4,3, 0x03ca78,34, 0x03cb3c,18, 0x03cb94,3, 0x03cba4,3, 0x03cbf0,1, 0x03cbf8,10, 0x03cc30,1, 0x03cc44,4, 0x03cc60,1, 0x03cc80,1, 0x03cc90,1, 0x03d004,6, 0x03e004,1, 0x03e00c,4, 0x03e404,1, 0x03e40c,4, 0x03e604,1, 0x03e60c,4, 0x03e800,1, 0x03f034,19, 0x03f084,2, 0x03f0c0,16, 0x03f200,1, 0x03f210,1, 0x03f300,6, 0x03f320,6, 0x03f340,3, 0x03f360,8, 0x050000,1, 0x050008,2, 0x051004,8, 0x052004,1, 0x052078,34, 0x052104,1, 0x05210c,1, 0x052114,1, 0x052124,1, 0x05212c,1, 0x052134,1, 0x05213c,1, 0x052144,1, 0x05214c,1, 0x052154,1, 0x052160,4, 0x05217c,17, 0x0521c4,3, 0x0521d4,3, 0x0521e4,3, 0x0521f4,1, 0x0521fc,1, 0x052204,1, 0x05220c,1, 0x052214,1, 0x05221c,1, 0x052234,1, 0x05223c,2, 0x052260,9, 0x0522c4,3, 0x0522d4,3, 0x0522e4,3, 0x0522f4,4, 0x052310,5, 0x052330,5, 0x052350,4, 0x052364,4, 0x052380,33, 0x052410,2, 0x05241c,1, 0x052424,1, 0x05242c,23, 0x052490,16, 0x0524d4,1, 0x0524dc,9, 0x05251c,9, 0x05255c,9, 0x0525dc,9, 0x052604,1, 0x052640,33, 0x0526d0,1, 0x0526e4,1, 0x0526ec,1, 0x0526f4,1, 0x052710,14, 0x0527ec,1, 0x0527fc,40, 0x052c00,3, 0x052c20,6, 0x052c40,6, 0x052c60,6, 0x052c80,6, 0x052ca0,6, 0x052cc0,6, 0x052ce0,6, 0x052d00,6, 0x052d20,6, 0x052e00,32, 0x052e84,1, 0x052e8c,1, 0x052e94,1, 0x052e9c,1, 0x052ea4,1, 0x052eac,1, 0x052eb4,4, 0x052ed0,1, 0x052ee0,1, 0x052ef0,1, 0x052f00,1, 0x052f10,1, 0x052f20,1, 0x052f30,1, 0x052f40,1, 0x052f50,1, 0x052f60,1, 0x052f70,1, 0x052f80,1, 0x052f90,1, 0x052fa0,1, 0x052fb0,1, 0x052fc0,1, 0x052fd0,1, 0x052fe0,1, 0x052ff0,1, 0x054004,1, 0x05400c,4, 0x054200,1, 0x054210,6, 0x054244,1, 0x054254,11, 0x054404,16, 0x054484,16, 0x054504,16, 0x054584,16, 0x054604,11, 0x054680,24, 0x054700,4, 0x05477c,34, 0x055000,6, 0x055020,6, 0x055100,13, 0x055140,11, 0x055400,3, 0x055420,6, 0x055440,6, 0x055460,6, 0x055480,6, 0x0554a0,6, 0x0554c0,6, 0x0554e0,6, 0x055500,6, 0x055520,6, 0x055540,6, 0x055560,6, 0x055580,6, 0x056000,2, 0x056404,1, 0x05640c,4, 0x056800,2, 0x056c04,1, 0x056c0c,4, 0x057004,1, 0x05700c,5, 0x057b20,2, 0x057b30,4, 0x057b50,5, 0x058004,1, 0x05800c,4, 0x058800,7, 0x058820,6, 0x058844,2, 0x058850,9, 0x058880,1, 0x058890,1, 0x0588a0,1, 0x0588b0,1, 0x0588c0,1, 0x058904,3, 0x058978,66, 0x058a84,1, 0x058a8c,1, 0x058a94,1, 0x058aa0,2, 0x058ff0,4, 0x059004,1, 0x05900c,4, 0x059080,39, 0x059120,1, 0x059130,1, 0x059140,1, 0x059150,1, 0x059800,1, 0x059810,1, 0x059820,1, 0x059830,1, 0x059840,1, 0x059850,1, 0x059860,1, 0x059870,1, 0x059880,1, 0x059890,1, 0x0598c4,2, 0x059900,3, 0x059940,3, 0x059960,40, 0x059c00,1, 0x059c18,1, 0x059c34,1, 0x059d04,4, 0x059d34,1, 0x059d4c,1, 0x059d70,2, 0x059e00,6, 0x05a000,4, 0x05a020,2, 0x05a030,1, 0x05a040,1, 0x05a04c,2, 0x05a080,5, 0x05a0a0,1, 0x05a0b0,1, 0x05a0c0,1, 0x060004,11, 0x060120,4, 0x060144,2, 0x060154,7, 0x060174,1, 0x06017c,3, 0x06018c,1, 0x0601a0,4, 0x0601b8,2, 0x060204,1, 0x06020c,4, 0x060400,2, 0x060420,3, 0x060430,1, 0x060440,1, 0x060484,2, 0x0604b8,18, 0x060504,1, 0x06050c,1, 0x060514,1, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,1, 0x060a8c,1, 0x060a94,1, 0x060a9c,1, 0x060bf0,3, 0x060c00,11, 0x060c30,3, 0x061004,1, 0x061010,1, 0x061018,1, 0x061020,2, 0x061044,2, 0x061054,3, 0x061100,32, 0x061200,1, 0x061404,1, 0x06140c,4, 0x06180c,8, 0x061904,3, 0x061914,3, 0x061934,3, 0x061a00,4, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062080,2, 0x062094,1, 0x06209c,2, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x062404,1, 0x06240c,4, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,1, 0x062900,3, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,2, 0x063000,1, 0x063010,4, 0x063024,1, 0x06302c,1, 0x063034,1, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,3, 0x063100,2, 0x063144,1, 0x06314c,1, 0x063154,1, 0x063164,1, 0x06316c,1, 0x063174,1, 0x063208,1, 0x063210,1, 0x063218,1, 0x063224,3, 0x063240,10, 0x063300,8, 0x064004,1, 0x06400c,4, 0x064200,3, 0x064300,1, 0x064308,6, 0x064324,2, 0x064338,2, 0x064380,2, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,3, 0x064430,1, 0x064440,1, 0x064484,2, 0x0644b8,18, 0x064504,1, 0x06450c,1, 0x064514,1, 0x064804,1, 0x064884,2, 0x0648c8,14, 0x065018,2, 0x065040,3, 0x065060,8, 0x065104,5, 0x065200,3, 0x065220,6, 0x065240,6, 0x065260,6, 0x065280,6, 0x065f00,2, 0x066000,2, 0x066018,2, 0x066034,2, 0x066104,6, 0x066134,2, 0x06614c,1, 0x066170,3, 0x066200,6, 0x066220,6, 0x0662c0,1, 0x066400,8, 0x066500,14, 0x066550,8, 0x066574,3, 0x070004,1, 0x07000c,4, 0x070400,7, 0x070420,11, 0x070500,5, 0x070524,1, 0x07052c,1, 0x070534,1, 0x070600,142, 0x070884,2, 0x0708c4,15, 0x070904,1, 0x070940,16, 0x071000,1, 0x071094,1, 0x071104,2, 0x071140,16, 0x071204,1, 0x07120c,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071504,1, 0x071540,16, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,3, 0x072804,1, 0x07280c,4, 0x072880,1, 0x072888,3, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x074830,7, 0x074860,8, 0x074884,2, 0x074890,4, 0x074900,6, 0x074920,6, 0x074a00,3, 0x074c00,1, 0x074c18,1, 0x074c34,1, 0x074d04,3, 0x074d34,1, 0x074d4c,1, 0x074d70,2, 0x074e00,6, 0x075000,3, 0x075010,2, 0x075020,3, 0x075100,2, 0x078000,20, 0x078054,9, 0x07807c,3, 0x07808c,2, 0x078098,4, 0x078100,5, 0x078118,4, 0x078130,2, 0x078204,2, 0x078244,15, 0x078284,2, 0x0782c4,22, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,1, 0x078404,1, 0x07840c,4, 0x078804,18, 0x078850,4, 0x078884,1, 0x07889c,1, 0x0788ac,21, 0x079804,2, 0x079828,6, 0x079844,2, 0x079868,6, 0x079884,2, 0x0798a8,7, 0x0798d0,8, 0x079904,1, 0x07990c,1, 0x079914,1, 0x079a04,2, 0x079a40,16, 0x079a84,2, 0x079a90,2, 0x079a9c,13, 0x079b04,2, 0x079b3c,17, 0x079c04,2, 0x079c40,16, 0x079c84,2, 0x079c98,2, 0x079cc4,13, 0x079cfc,4, 0x079d10,2, 0x079d24,1, 0x079d2c,2, 0x079d80,2, 0x079d8c,1, 0x079f00,6, 0x079f20,6, 0x079f40,6, 0x079f60,6, 0x079fa0,3, 0x079fb0,1, 0x079fc0,3, 0x079fe0,11, 0x07a010,3, 0x07a020,3, 0x07a040,9, 0x07a068,6, 0x07a090,2, 0x07a0a0,3, 0x07a0c0,12, 0x07a0f4,1, 0x07a100,2, 0x07a110,3, 0x07a120,1, 0x07a130,11, 0x07a160,2, 0x07a180,4, 0x07a194,3, 0x07a1a4,2, 0x07a1b0,4, 0x07a2e0,5, 0x07a2f8,2, 0x07a30c,13, 0x07a34c,77, 0x07a48c,18, 0x07a500,32, 0x07a800,16, 0x07a84c,18, 0x07a8e0,2, 0x07a8ec,3, 0x07a900,1, 0x07a910,5, 0x07a930,5, 0x07a950,5, 0x07a970,5, 0x07a990,1, 0x07a9a4,3, 0x07aa78,34, 0x07ab3c,18, 0x07ab94,3, 0x07aba4,3, 0x07abf0,1, 0x07abf8,10, 0x07ac30,1, 0x07ac44,4, 0x07ac60,1, 0x07ac80,1, 0x07ac90,1, 0x07b004,6, 0x080000,29, 0x080340,14, 0x08037c,3, 0x08038c,1, 0x080404,6, 0x080804,2, 0x080874,35, 0x081000,129, 0x081210,4, 0x081224,4, 0x081240,3, 0x081264,2, 0x081274,3, 0x081284,2, 0x081298,2, 0x081300,2, 0x081310,8, 0x081344,1, 0x08134c,1, 0x081354,1, 0x081364,2, 0x081370,4, 0x081384,2, 0x081390,4, 0x081404,2, 0x081474,35, 0x081504,2, 0x081518,12, 0x082000,29, 0x082340,14, 0x08237c,3, 0x08238c,1, 0x082404,1, 0x08240c,4, 0x082804,2, 0x082874,35, 0x082904,2, 0x082974,35, 0x083000,129, 0x083210,7, 0x083244,2, 0x083254,7, 0x083284,1, 0x08328c,1, 0x083294,1, 0x083304,2, 0x083310,4, 0x083324,2, 0x083330,14, 0x084000,29, 0x084340,14, 0x08437c,3, 0x08438c,1, 0x084404,1, 0x08440c,4, 0x084804,2, 0x084874,35, 0x084904,2, 0x084974,35, 0x085000,32, 0x085200,1, 0x085210,7, 0x085240,12, 0x085280,2, 0x085304,1, 0x08530c,1, 0x085314,1, 0x085324,2, 0x085334,3, 0x085344,2, 0x085358,2, 0x085364,2, 0x085378,2, 0x085384,2, 0x085398,2, 0x085400,7, 0x086000,2, 0x086020,2, 0x086040,1, 0x086400,11, 0x086800,3, 0x086820,6, 0x086840,6, 0x086860,6, 0x086880,6, 0x0868a0,6, 0x0868c0,6, 0x0868e0,6, 0x086980,3, 0x0869a0,9, 0x0869c8,1, 0x0869d0,3, 0x087000,26, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b0,9, 0x090000,17, 0x090060,2, 0x09006c,1, 0x090104,1, 0x090110,12, 0x090180,9, 0x0901a8,2, 0x0901c0,9, 0x0901e8,2, 0x090204,1, 0x090220,24, 0x090300,6, 0x090320,9, 0x090348,1, 0x090400,6, 0x090420,9, 0x090448,1, 0x090500,6, 0x090520,2, 0x090540,1, 0x090564,2, 0x090578,3, 0x091004,3, 0x091800,8, 0x091824,2, 0x091830,10, 0x091860,6, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,3, 0x093404,1, 0x093410,12, 0x093504,1, 0x09353c,28, 0x0935b0,2, 0x0935c0,3, 0x094040,3, 0x094080,3, 0x0940a0,9, 0x094800,1, 0x094818,1, 0x094834,1, 0x094904,3, 0x094934,1, 0x09494c,1, 0x094970,2, 0x094a00,6, 0x096000,1, 0x096010,4, 0x096024,4, 0x096104,1, 0x09610c,5, 0x096204,1, 0x09620c,4, 0x096488,1, 0x096498,3, 0x0964b0,6, 0x096504,1, 0x09650c,4, 0x096584,3, 0x096600,16, 0x096644,2, 0x096658,3, 0x096684,2, 0x0966bc,51, 0x096800,11, 0x096884,3, 0x0968a0,12, 0x097100,6, 0x097120,1, 0x0a0000,1, 0x0a0008,3, 0x0a0018,4, 0x0a0030,2, 0x0a003c,1, 0x0a0080,1, 0x0a0090,1, 0x0a0804,1, 0x0a080c,4, 0x0a0c00,2, 0x0a0c0c,5, 0x0a0c40,1, 0x0a0c50,4, 0x0a0c64,1, 0x0a0c70,1, 0x0a0c80,1, 0x0a0ca0,21, 0x0a1004,1, 0x0a100c,4, 0x0a1400,2, 0x0a140c,2, 0x0a1440,1, 0x0a1450,4, 0x0a1464,1, 0x0a1470,1, 0x0a1480,4, 0x0a14f0,1, 0x0a1804,1, 0x0a180c,4, 0x0a1a00,9, 0x0a1a30,2, 0x0a1a3c,2, 0x0a1a48,4, 0x0a1c00,32, 0x0a1c84,1, 0x0a1d04,1, 0x0a1d18,26, 0x0a2000,32, 0x0a2100,3, 0x0a2110,6, 0x0a212c,4, 0x0a2140,1, 0x0a2200,1, 0x0a2304,1, 0x0a231c,9, 0x0a2804,1, 0x0a280c,4, 0x0a2c04,2, 0x0a2c10,2, 0x0a2c1c,6, 0x0a2c38,14, 0x0a2c78,9, 0x0a2d04,2, 0x0a2d40,20, 0x0a2da4,1, 0x0a2dac,1, 0x0a2db4,1, 0x0a2dc0,1, 0x0a4000,14, 0x0a5000,2, 0x0a5018,2, 0x0a5034,2, 0x0a5104,6, 0x0a5134,2, 0x0a514c,1, 0x0a5170,3, 0x0a5200,6, 0x0a5220,6, 0x0a52c0,2, 0x0a6000,3, 0x0a6020,6, 0x0a6040,6, 0x0a6060,6, 0x0a6080,6, 0x0a7000,2, 0x0a7040,3, 0x0a7060,10, 0x0a8000,10, 0x0a802c,15, 0x0a806c,5, 0x0a8408,5, 0x0a8424,3, 0x0a8434,6, 0x0a8450,2, 0x0a845c,5, 0x0a8480,1, 0x0a84c4,1, 0x0a84cc,4, 0x0a8604,1, 0x0a860c,4, 0x0a8700,17, 0x0a8750,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,4, 0x0a8994,1, 0x0a899c,1, 0x0a89a4,3, 0x0a89c0,1, 0x0a8a00,3, 0x0a8aa4,1, 0x0a8aac,1, 0x0a8ab4,1, 0x0a8ad4,10, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,6, 0x0a9000,3, 0x0a9010,21, 0x0a9080,4, 0x0a9100,10, 0x0a91f4,3, 0x0a920c,35, 0x0a92a4,7, 0x0a930c,39, 0x0a940c,35, 0x0a949c,9, 0x0a9500,2, 0x0a950c,3, 0x0a951c,3, 0x0a954c,13, 0x0a9804,1, 0x0a980c,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,2, 0x0a9c28,1, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d44,4, 0x0a9d80,1, 0x0a9dc4,3, 0x0a9dd4,3, 0x0a9de4,3, 0x0a9df4,4, 0x0a9e20,8, 0x0a9e44,4, 0x0a9e84,1, 0x0a9e98,1, 0x0a9ea0,8, 0x0a9f00,6, 0x0a9f20,6, 0x0a9f40,6, 0x0a9f60,6, 0x0a9f80,3, 0x0a9fa0,23, 0x0aa004,1, 0x0aa00c,4, 0x0b0000,2, 0x0b0010,4, 0x0b0800,5, 0x0b0820,10, 0x0b0880,20, 0x0b0900,2, 0x0b0910,2, 0x0b0920,2, 0x0b0960,2, 0x0b096c,1, 0x0b0980,3, 0x0b0990,3, 0x0b09a0,3, 0x0b09e0,2, 0x0b09ec,1, 0x0b0a00,2, 0x0b0a10,2, 0x0b0a60,2, 0x0b0a6c,1, 0x0b0a80,3, 0x0b0a90,3, 0x0b0ae0,2, 0x0b0aec,1, 0x0b0b00,2, 0x0b0b10,2, 0x0b0b20,2, 0x0b0b60,2, 0x0b0b6c,1, 0x0b0b80,3, 0x0b0b90,3, 0x0b0be0,2, 0x0b0bec,1, 0x0b0c00,3, 0x0b0c10,3, 0x0b0c60,2, 0x0b0c6c,1, 0x0b0c80,3, 0x0b0c90,7, 0x0b0cb0,4, 0x0b0ce0,2, 0x0b0cec,1, 0x0b0d00,2, 0x0b0d10,2, 0x0b0d60,2, 0x0b0d6c,1, 0x0b0d80,3, 0x0b0d90,3, 0x0b0de0,2, 0x0b0dec,1, 0x0b0e00,3, 0x0b0e10,3, 0x0b0e60,2, 0x0b0e6c,1, 0x0b0e80,8, 0x0b0ee0,2, 0x0b0eec,1, 0x0b0f00,3, 0x0b0f20,8, 0x0b1000,3, 0x0b1010,8, 0x0b1080,3, 0x0b10a0,8, 0x0b1100,3, 0x0b1110,8, 0x0b1180,3, 0x0b11a0,8, 0x0b1200,3, 0x0b1210,8, 0x0b1280,3, 0x0b12a0,8, 0x0b1300,3, 0x0b1310,8, 0x0b1380,3, 0x0b13a0,8, 0x0b1400,3, 0x0b1410,8, 0x0b1480,3, 0x0b14a0,8, 0x0b1500,3, 0x0b1510,8, 0x0b1580,3, 0x0b15a0,8, 0x0b1600,3, 0x0b1610,8, 0x0b1680,3, 0x0b16a0,8, 0x0b1700,3, 0x0b1710,8, 0x0b1780,3, 0x0b17a0,8, 0x0b1900,1, 0x0b1910,1, 0x0b2000,38, 0x0b2100,3, 0x0b2120,13, 0x0b2160,4, 0x0b2184,5, 0x0b2200,1, 0x0b2220,12, 0x0b2404,1, 0x0b240c,4, 0x0b2800,64, 0x0b3004,1, 0x0b3010,12, 0x0b3100,3, 0x0b3120,8, 0x0b4000,1, 0x0b4018,1, 0x0b4034,1, 0x0b4104,2, 0x0b4134,1, 0x0b414c,1, 0x0b4170,2, 0x0b4200,6, 0x0b4800,3, 0x0b4820,6, 0x0b4840,6, 0x0b4860,6, 0x0b4880,6, 0x0b48a0,6, 0x0b48c0,6, 0x0b48e0,6, 0x0b4900,6, 0x0c0000,4, 0x0c0058,2, 0x0c0064,1, 0x0c0120,2, 0x0c0130,2, 0x0c0140,1, 0x0c0184,11, 0x0c01c4,3, 0x0c01dc,3, 0x0c0280,13, 0x0c02c0,3, 0x0c0400,16, 0x0c0500,3, 0x0c0804,1, 0x0c080c,4, 0x0c0a7c,1, 0x0c0ae8,6, 0x0c0b20,24, 0x0c0ba0,28, 0x0c0c80,20, 0x0c0d00,3, 0x0c0d20,6, 0x0c0d80,4, 0x0c0da0,1, 0x0c0da8,12, 0x0c0e00,17, 0x0c0e80,4, 0x0c0ec0,6, 0x0c0ee0,6, 0x0c1000,32, 0x0c1084,5, 0x0c10f8,3, 0x0c1108,3, 0x0c1118,7, 0x0c1144,2, 0x0c1160,11, 0x0c1200,13, 0x0c1244,2, 0x0c1268,6, 0x0c12a0,1, 0x0c12c8,6, 0x0c12e8,6, 0x0c1310,1, 0x0c1340,4, 0x0c13e8,8, 0x0c140c,14, 0x0c147c,1, 0x0c1700,2, 0x0c1720,8, 0x0c1800,3, 0x0c1810,3, 0x0c1820,3, 0x0c1830,3, 0x0c1840,3, 0x0c1850,3, 0x0c1860,3, 0x0c1870,3, 0x0c1880,3, 0x0c1890,3, 0x0c18a0,3, 0x0c18b0,3, 0x0c18c0,3, 0x0c18d0,3, 0x0c18e0,3, 0x0c18f0,3, 0x0c1900,68, 0x0c1c00,34, 0x0c1d00,3, 0x0c1d40,4, 0x0c1d84,1, 0x0c1d90,4, 0x0c1e00,3, 0x0c1e20,6, 0x0c1e40,6, 0x0c1e60,6, 0x0c1f80,3, 0x0c1fa0,8, 0x0c2000,1, 0x0c2018,1, 0x0c2034,1, 0x0c2104,1, 0x0c2134,1, 0x0c214c,1, 0x0c2170,2, 0x0c2200,6, 0x0c2400,36, 0x0c24a0,8, 0x0c2500,1, 0x0c2584,7, 0x0c2604,1, 0x0c26f0,70, 0x0c8000,25, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c8,6, 0x0c8180,6, 0x0c81a0,6, 0x0c9000,1, 0x0c9018,1, 0x0c9034,1, 0x0c9104,1, 0x0c9134,1, 0x0c914c,1, 0x0c9170,2, 0x0c9200,6, 0x0c9400,3, 0x0c9500,3, 0x0c9520,10, 0x0ca000,3, 0x0ca010,36, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca100,14, 0x0ca140,5, 0x0ca160,4, 0x0ca180,13, 0x0ca1b8,11, 0x0ca1e8,3, 0x0ca1f8,8, 0x0ca220,6, 0x0ca240,6, 0x0ca260,6, 0x0ca280,6, 0x0ca2a0,6, 0x0ca2c0,6, 0x0ca2e0,6, 0x0ca300,6, 0x0ca320,6, 0x0ca340,6, 0x0ca360,6, 0x0ca400,6, 0x0ca420,6, 0x0ca440,6, 0x0ca460,6, 0x0ca480,6, 0x0ca4a0,6, 0x0ca4c0,6, 0x0ca4e0,6, 0x0ca500,6, 0x0ca520,6, 0x0ca540,6, 0x0ca560,6, 0x0ca580,6, 0x0ca5a0,6, 0x0ca5c0,6, 0x0ca5e0,6, 0x0ca6fc,1, 0x0ca704,1, 0x0ca72c,17, 0x0ca780,16, 0x0ca800,8, 0x0ca824,5, 0x0ca840,8, 0x0ca864,5, 0x0ca880,8, 0x0ca8a4,5, 0x0ca8c0,8, 0x0ca8e4,5, 0x0ca900,8, 0x0ca924,5, 0x0ca940,8, 0x0ca964,5, 0x0ca980,8, 0x0ca9a4,5, 0x0ca9c0,8, 0x0ca9e4,5, 0x0caa00,8, 0x0caa24,5, 0x0caa40,8, 0x0caa64,5, 0x0caa80,8, 0x0caaa4,5, 0x0caac0,8, 0x0caae4,5, 0x0cab00,8, 0x0cab24,5, 0x0cab40,8, 0x0cab64,5, 0x0cab80,8, 0x0caba4,5, 0x0cabc0,8, 0x0cabe4,5, 0x0cac04,6, 0x0cac20,2, 0x0cac30,2, 0x0cac40,2, 0x0cac50,2, 0x0cb000,16, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,16, 0x0cb1f0,6, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,2, 0x0cb290,3, 0x0cb2a0,2, 0x0cb2b0,3, 0x0cb2c0,2, 0x0cb2d0,3, 0x0cb2e0,2, 0x0cb2f0,3, 0x0cb300,2, 0x0cb310,3, 0x0cb320,2, 0x0cb330,3, 0x0cb340,2, 0x0cb350,3, 0x0cb360,2, 0x0cb370,3, 0x0cb380,2, 0x0cb390,3, 0x0cb3a0,2, 0x0cb3b0,3, 0x0cb3c0,2, 0x0cb3d0,3, 0x0cb3e0,2, 0x0cb3f0,3, 0x0cb400,17, 0x0cb59c,25, 0x0cb700,11, 0x0cb74c,2, 0x0cb760,24, 0x0cb800,19, 0x0cb850,16, 0x0cb89c,1, 0x0cb8b0,9, 0x0cb8e0,1, 0x0cb8f0,3, 0x0cb900,17, 0x0cb958,1, 0x0cb980,1, 0x0cb994,2, 0x0cb9ac,11, 0x0cb9ec,4, 0x0cba00,19, 0x0cba50,16, 0x0cba9c,1, 0x0cbab0,9, 0x0cbae0,1, 0x0cbaf0,3, 0x0cbb00,17, 0x0cbb58,1, 0x0cbb80,1, 0x0cbb94,2, 0x0cbbac,11, 0x0cbbec,4, 0x0cbc00,19, 0x0cbc50,16, 0x0cbc9c,1, 0x0cbcb0,9, 0x0cbce0,1, 0x0cbcf0,3, 0x0cbd00,17, 0x0cbd58,1, 0x0cbd80,1, 0x0cbd94,2, 0x0cbdac,11, 0x0cbdec,4, 0x0cbe00,19, 0x0cbe50,16, 0x0cbe9c,1, 0x0cbeb0,9, 0x0cbee0,1, 0x0cbef0,3, 0x0cbf00,17, 0x0cbf58,1, 0x0cbf80,1, 0x0cbf94,2, 0x0cbfac,11, 0x0cbfec,4, 0x0d0000,7, 0x0d002c,18, 0x0d1000,2, 0x0d100c,1, 0x0d1020,13, 0x0d1058,1, 0x0d1060,6, 0x0d1080,1, 0x0d10a0,6, 0x0d1100,2, 0x0d110c,1, 0x0d1120,13, 0x0d1158,1, 0x0d1160,6, 0x0d1180,1, 0x0d11a0,6, 0x0d1200,2, 0x0d120c,1, 0x0d1220,13, 0x0d1258,1, 0x0d1260,6, 0x0d1280,1, 0x0d12a0,6, 0x0d1300,2, 0x0d130c,1, 0x0d1320,13, 0x0d1358,1, 0x0d1360,6, 0x0d1380,1, 0x0d13a0,6, 0x0d1400,14, 0x0d1448,1, 0x0d1450,5, 0x0d1480,6, 0x0d1500,10, 0x0d152c,4, 0x0d1800,4, 0x0d1820,3, 0x0d1830,3, 0x0d1a00,1, 0x0d1a08,13, 0x0d1a40,9, 0x0d1c00,24, 0x0d1c64,1, 0x0d1c80,6, 0x0d1ca0,3, 0x0d1cb0,2, 0x0d1d00,6, 0x0d1d40,12, 0x0d2000,2, 0x0d200c,1, 0x0d2020,13, 0x0d2058,1, 0x0d2060,6, 0x0d2080,1, 0x0d20a0,6, 0x0d2100,2, 0x0d210c,1, 0x0d2120,13, 0x0d2158,1, 0x0d2160,6, 0x0d2180,1, 0x0d21a0,6, 0x0d2200,2, 0x0d220c,1, 0x0d2220,13, 0x0d2258,1, 0x0d2260,6, 0x0d2280,1, 0x0d22a0,6, 0x0d2300,2, 0x0d230c,1, 0x0d2320,13, 0x0d2358,1, 0x0d2360,6, 0x0d2380,1, 0x0d23a0,6, 0x0d2400,14, 0x0d2448,1, 0x0d2450,5, 0x0d2480,6, 0x0d2500,10, 0x0d252c,4, 0x0d2800,4, 0x0d2820,3, 0x0d2830,3, 0x0d2a00,1, 0x0d2a08,13, 0x0d2a40,9, 0x0d2c00,24, 0x0d2c64,1, 0x0d2c80,6, 0x0d2ca0,3, 0x0d2cb0,2, 0x0d2d00,6, 0x0d2d40,12, 0x0d3000,8, 0x0d3024,5, 0x0d3040,8, 0x0d3064,5, 0x0d3080,8, 0x0d30a4,5, 0x0d30c0,8, 0x0d30e4,5, 0x0d3100,8, 0x0d3124,5, 0x0d3140,8, 0x0d3164,5, 0x0d3180,8, 0x0d31a4,5, 0x0d31c0,8, 0x0d31e4,5, 0x0d3204,5, 0x0d3220,2, 0x0d3230,2, 0x0d3240,2, 0x0d3400,1, 0x0d3418,1, 0x0d3434,1, 0x0d3504,1, 0x0d3534,1, 0x0d354c,1, 0x0d3570,2, 0x0d3600,6, 0x0d3800,19, 0x0d3850,16, 0x0d389c,1, 0x0d38b0,9, 0x0d38e0,1, 0x0d38f0,3, 0x0d3900,17, 0x0d3958,1, 0x0d3980,1, 0x0d3994,2, 0x0d39ac,11, 0x0d39ec,4, 0x0d3a00,19, 0x0d3a50,16, 0x0d3a9c,1, 0x0d3ab0,9, 0x0d3ae0,1, 0x0d3af0,3, 0x0d3b00,17, 0x0d3b58,1, 0x0d3b80,1, 0x0d3b94,2, 0x0d3bac,11, 0x0d3bec,4, 0x0d3c00,11, 0x0d3c4c,2, 0x0d3c60,40, 0x0d3d04,1, 0x0d3d2c,17, 0x0d3d80,16, 0x0d3e00,6, 0x0d3e20,6, 0x0d3e40,3, 0x0d3e50,1, 0x0d8000,6, 0x0d8020,3, 0x0d8030,3, 0x0d8040,6, 0x0d8060,4, 0x0d8100,28, 0x0d8400,2, 0x0d8418,2, 0x0d8434,2, 0x0d8504,4, 0x0d8534,2, 0x0d854c,1, 0x0d8570,2, 0x0d8600,6, 0x0d8620,6, 0x0d8800,1, 0x0d8820,13, 0x0d8858,8, 0x0d8900,12, 0x0d8984,1, 0x0d89bc,18, 0x0d8a20,13, 0x0d8a58,8, 0x0d8b00,12, 0x0d8b84,1, 0x0d8bbc,17, 0x0d9000,6, 0x0d9020,6, 0x0d9048,3, 0x0d9080,6, 0x0d909c,1, 0x0d90a4,2, 0x0d90b8,3, 0x0d9200,12, 0x0d9234,11, 0x0d9280,26, 0x0d9300,2, 0x0d9320,1, 0x0d9404,4, 0x0d9418,16, 0x0d9460,3, 0x0d9600,5, 0x0d9618,1, 0x0d9644,9, 0x0d9680,6, 0x0d96a0,2, 0x0d9800,6, 0x0d9820,6, 0x0d9848,3, 0x0d9880,6, 0x0d989c,1, 0x0d98a4,2, 0x0d98b8,3, 0x0d9a00,12, 0x0d9a34,11, 0x0d9a80,26, 0x0d9b00,2, 0x0d9b20,1, 0x0d9c04,4, 0x0d9c18,16, 0x0d9c60,3, 0x0d9e00,5, 0x0d9e18,1, 0x0d9e44,9, 0x0d9e80,6, 0x0d9ea0,2, 0x0db000,4, 0x0db018,18, 0x0db100,4, 0x0db118,18, 0x0db200,8, 0x0db300,6, 0x0db320,5, 0x0db340,6, 0x0db360,5, 0x0db380,6, 0x0db400,3, 0x0db420,8, 0x0db500,10, 0x0db544,2, 0x0db55c,9, 0x0db584,7, 0x0db5a4,2, 0x0db5b8,3, 0x0db600,2, 0x0dbfc4,13, 0x0dc000,366, 0x0dc800,366, 0x0e0000,3, 0x0e001c,2, 0x0e0030,1, 0x0e0048,2, 0x0e0058,2, 0x0e0068,31, 0x0e0180,2, 0x0e01e0,1, 0x0e01e8,3, 0x0e01f8,1, 0x0e0200,3, 0x0e021c,2, 0x0e0230,1, 0x0e0248,2, 0x0e0258,2, 0x0e0268,31, 0x0e0380,2, 0x0e03e0,1, 0x0e03e8,3, 0x0e03f8,1, 0x0e0400,3, 0x0e041c,2, 0x0e0430,1, 0x0e0448,2, 0x0e0458,2, 0x0e0468,31, 0x0e0580,2, 0x0e05e0,1, 0x0e05e8,3, 0x0e05f8,1, 0x0e0600,3, 0x0e061c,2, 0x0e0630,1, 0x0e0648,2, 0x0e0658,2, 0x0e0668,31, 0x0e0780,2, 0x0e07e0,1, 0x0e07e8,3, 0x0e07f8,1, 0x0e0800,3, 0x0e081c,2, 0x0e0830,1, 0x0e0848,2, 0x0e0858,2, 0x0e0868,31, 0x0e0980,2, 0x0e09e0,1, 0x0e09e8,3, 0x0e09f8,1, 0x0e0a00,3, 0x0e0a1c,2, 0x0e0a30,1, 0x0e0a48,2, 0x0e0a58,2, 0x0e0a68,31, 0x0e0b80,2, 0x0e0be0,1, 0x0e0be8,3, 0x0e0bf8,1, 0x0e0c00,3, 0x0e0c1c,2, 0x0e0c30,1, 0x0e0c48,2, 0x0e0c58,2, 0x0e0c68,31, 0x0e0d80,2, 0x0e0de0,1, 0x0e0de8,3, 0x0e0df8,1, 0x0e0e00,3, 0x0e0e1c,2, 0x0e0e30,1, 0x0e0e48,2, 0x0e0e58,2, 0x0e0e68,31, 0x0e0f80,2, 0x0e0fe0,1, 0x0e0fe8,3, 0x0e0ff8,1, 0x0e1400,8, 0x0e1450,3, 0x0e1460,3, 0x0e1474,5, 0x0e14a0,8, 0x0e14e0,7, 0x0e1504,1, 0x0e1540,16, 0x0e15f0,3, 0x0e1604,1, 0x0e1640,16, 0x0e1700,16, 0x0e1a00,4, 0x0e2000,1, 0x0e2018,1, 0x0e2034,1, 0x0e2104,1, 0x0e2134,1, 0x0e214c,1, 0x0e2170,2, 0x0e2200,6, 0x0e2420,2, 0x0e2430,10, 0x0e2460,6, 0x0e2480,6, 0x0e24a0,3, 0x0e2504,4, 0x0e2600,16, 0x0e2644,5, 0x0e2660,6, 0x0e2804,8, 0x0e2828,5, 0x0e2844,3, 0x0e2854,5, 0x0e2880,4, 0x0e28a0,6, 0x0e2a04,3, 0x0e2b00,33, 0x0e2c40,3, 0x0e2c60,11, 0x0e8000,9, 0x0e8050,1, 0x0e8064,6, 0x0e8080,1, 0x0e8088,2, 0x0f0000,3, 0x0f0014,8, 0x0f0040,3, 0x0f0050,4, 0x0f0080,12, 0x0f00f0,2, 0x0f0100,3, 0x0f0118,5, 0x0f0130,6, 0x0f015c,13, 0x0f01a0,3, 0x0f01c0,2, 0x0f01d0,10, 0x0f0200,61, 0x0f0404,8, 0x0f0440,4, 0x0f0460,1, 0x0f0468,3, 0x0f0480,6, 0x0f04a0,8, 0x0f04e0,6, 0x0f0500,6, 0x0f0520,8, 0x0f0560,6, 0x0f05dc,73, 0x0f0704,1, 0x0f0714,10, 0x0f0800,17, 0x0f0850,9, 0x0f0880,4, 0x0f089c,5, 0x0f08bc,5, 0x0f08dc,1, 0x0f0900,6, 0x0f0920,6, 0x0f0940,6, 0x0f0980,3, 0x0f0990,1, 0x0f0ffc,1, mstflint-4.26.0/mstdump/mstdump_dbs/AmosGearBoxManager.csv0000644000175000017500000000246714522641732024105 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,3, 0x000010,1, 0x000020,6, 0x000040,1, 0x000048,1, 0x000050,1, 0x000060,2, 0x000080,2, 0x000140,5, 0x00015c,1, 0x000180,2, 0x0001a0,1, 0x0001a8,1, 0x0001e0,1, 0x000200,2, 0x000244,1, 0x000260,5, 0x000280,5, 0x0002a0,2, 0x000304,1, 0x000400,3, 0x000410,1, 0x000420,6, 0x000440,1, 0x000448,1, 0x000450,1, 0x000460,2, 0x000480,2, 0x000540,5, 0x00055c,1, 0x000580,2, 0x0005a0,1, 0x0005a8,1, 0x0005e0,1, 0x000600,2, 0x000644,1, 0x000660,5, 0x000680,5, 0x0006a0,2, 0x000704,1, 0x000800,3, 0x000810,1, 0x000820,6, 0x000840,1, 0x000848,1, 0x000850,1, 0x000860,2, 0x000880,2, 0x000940,5, 0x00095c,1, 0x000980,2, 0x0009a0,1, 0x0009a8,1, 0x0009e0,1, 0x000a00,2, 0x000a44,1, 0x000a60,5, 0x000a80,5, 0x000aa0,2, 0x000b04,1, 0x000c00,3, 0x000c10,1, 0x000c20,6, 0x000c40,1, 0x000c48,1, 0x000c50,1, 0x000c60,2, 0x000c80,2, 0x000d40,5, 0x000d5c,1, 0x000d80,2, 0x000da0,1, 0x000da8,1, 0x000de0,1, 0x000e00,2, 0x000e44,1, 0x000e60,5, 0x000e80,5, 0x000ea0,2, 0x000f04,1, 0x001000,1, 0x001040,13, 0x002004,1, 0x002010,6, 0x002030,2, 0x002040,3, 0x002050,5, 0x002080,1, 0x002088,20, 0x0020dc,1, 0x002100,3, 0x002110,3, 0x002120,3, 0x002130,3, 0x002140,3, 0x002150,3, 0x002160,6, 0x002180,4, 0x0021d0,1, 0x0021e0,2, 0x0021f0,3, 0x002204,1, 0x00220c,2, 0x002218,1, 0x004000,3, 0x004010,1, 0x004100,2, 0x00f014,2, 0x0f0014,1, mstflint-4.26.0/mstdump/mstdump_dbs/Spectrum.csv0000644000175000017500000102632414522641732022244 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000800,1, 0x000808,14, 0x000880,1, 0x000888,16, 0x000900,11, 0x000940,3, 0x000950,12, 0x000984,13, 0x0009c0,8, 0x000a00,1, 0x000a18,8, 0x000a3c,9, 0x000a84,1, 0x000a90,4, 0x000aa4,1, 0x000aac,7, 0x000ae0,2, 0x000aec,2, 0x000b00,8, 0x000b40,6, 0x000b60,3, 0x000b80,8, 0x000bb0,21, 0x000c08,14, 0x000c80,1, 0x000c88,16, 0x000d00,11, 0x000d40,3, 0x000d50,12, 0x000d84,13, 0x000dc0,8, 0x000e00,1, 0x000e18,8, 0x000e3c,9, 0x000e84,1, 0x000e90,4, 0x000ea4,1, 0x000eac,7, 0x000ee0,2, 0x000eec,2, 0x000f00,8, 0x000f40,6, 0x000f60,3, 0x000f80,8, 0x000fb0,21, 0x001008,14, 0x001080,1, 0x001088,16, 0x001100,11, 0x001140,3, 0x001150,12, 0x001184,13, 0x0011c0,8, 0x001200,1, 0x001218,8, 0x00123c,9, 0x001284,1, 0x001290,4, 0x0012a4,1, 0x0012ac,7, 0x0012e0,2, 0x0012ec,2, 0x001300,8, 0x001340,6, 0x001360,3, 0x001380,8, 0x0013b0,21, 0x001408,14, 0x001480,1, 0x001488,16, 0x001500,11, 0x001540,3, 0x001550,12, 0x001584,13, 0x0015c0,8, 0x001600,1, 0x001618,8, 0x00163c,9, 0x001684,1, 0x001690,4, 0x0016a4,1, 0x0016ac,7, 0x0016e0,2, 0x0016ec,2, 0x001700,8, 0x001740,6, 0x001760,3, 0x001780,8, 0x0017b0,21, 0x001808,14, 0x001880,1, 0x001888,16, 0x001900,11, 0x001940,3, 0x001950,12, 0x001984,13, 0x0019c0,8, 0x001a00,1, 0x001a18,8, 0x001a3c,9, 0x001a84,1, 0x001a90,4, 0x001aa4,1, 0x001aac,7, 0x001ae0,2, 0x001aec,2, 0x001b00,8, 0x001b40,6, 0x001b60,3, 0x001b80,8, 0x001bb0,21, 0x001c08,14, 0x001c80,1, 0x001c88,16, 0x001d00,11, 0x001d40,3, 0x001d50,12, 0x001d84,13, 0x001dc0,8, 0x001e00,1, 0x001e18,8, 0x001e3c,9, 0x001e84,1, 0x001e90,4, 0x001ea4,1, 0x001eac,7, 0x001ee0,2, 0x001eec,2, 0x001f00,8, 0x001f40,6, 0x001f60,3, 0x001f80,8, 0x001fb0,21, 0x002008,14, 0x002080,1, 0x002088,16, 0x002100,11, 0x002140,3, 0x002150,12, 0x002184,13, 0x0021c0,8, 0x002200,1, 0x002218,8, 0x00223c,9, 0x002284,1, 0x002290,4, 0x0022a4,1, 0x0022ac,7, 0x0022e0,2, 0x0022ec,2, 0x002300,8, 0x002340,6, 0x002360,3, 0x002380,8, 0x0023b0,21, 0x002408,14, 0x002480,1, 0x002488,16, 0x002500,11, 0x002540,3, 0x002550,12, 0x002584,13, 0x0025c0,8, 0x002600,1, 0x002618,8, 0x00263c,9, 0x002684,1, 0x002690,4, 0x0026a4,1, 0x0026ac,7, 0x0026e0,2, 0x0026ec,2, 0x002700,8, 0x002740,6, 0x002760,3, 0x002780,8, 0x0027b0,21, 0x002808,14, 0x002880,1, 0x002888,16, 0x002900,11, 0x002940,3, 0x002950,12, 0x002984,13, 0x0029c0,8, 0x002a00,1, 0x002a18,8, 0x002a3c,9, 0x002a84,1, 0x002a90,4, 0x002aa4,1, 0x002aac,7, 0x002ae0,2, 0x002aec,2, 0x002b00,8, 0x002b40,6, 0x002b60,3, 0x002b80,8, 0x002bb0,21, 0x002c08,14, 0x002c80,1, 0x002c88,16, 0x002d00,11, 0x002d40,3, 0x002d50,12, 0x002d84,13, 0x002dc0,8, 0x002e00,1, 0x002e18,8, 0x002e3c,9, 0x002e84,1, 0x002e90,4, 0x002ea4,1, 0x002eac,7, 0x002ee0,2, 0x002eec,2, 0x002f00,8, 0x002f40,6, 0x002f60,3, 0x002f80,8, 0x002fb0,21, 0x003008,14, 0x003080,1, 0x003088,16, 0x003100,11, 0x003140,3, 0x003150,12, 0x003184,13, 0x0031c0,8, 0x003200,1, 0x003218,8, 0x00323c,9, 0x003284,1, 0x003290,4, 0x0032a4,1, 0x0032ac,7, 0x0032e0,2, 0x0032ec,2, 0x003300,8, 0x003340,6, 0x003360,3, 0x003380,8, 0x0033b0,21, 0x003408,14, 0x003480,1, 0x003488,16, 0x003500,11, 0x003540,3, 0x003550,12, 0x003584,13, 0x0035c0,8, 0x003600,1, 0x003618,8, 0x00363c,9, 0x003684,1, 0x003690,4, 0x0036a4,1, 0x0036ac,7, 0x0036e0,2, 0x0036ec,2, 0x003700,8, 0x003740,6, 0x003760,3, 0x003780,8, 0x0037b0,21, 0x003808,14, 0x003880,1, 0x003888,16, 0x003900,11, 0x003940,3, 0x003950,12, 0x003984,13, 0x0039c0,8, 0x003a00,1, 0x003a18,8, 0x003a3c,9, 0x003a84,1, 0x003a90,4, 0x003aa4,1, 0x003aac,7, 0x003ae0,2, 0x003aec,2, 0x003b00,8, 0x003b40,6, 0x003b60,3, 0x003b80,8, 0x003bb0,21, 0x003c08,14, 0x003c80,1, 0x003c88,16, 0x003d00,11, 0x003d40,3, 0x003d50,12, 0x003d84,13, 0x003dc0,8, 0x003e00,1, 0x003e18,8, 0x003e3c,9, 0x003e84,1, 0x003e90,4, 0x003ea4,1, 0x003eac,7, 0x003ee0,2, 0x003eec,2, 0x003f00,8, 0x003f40,6, 0x003f60,3, 0x003f80,8, 0x003fb0,21, 0x004008,14, 0x004080,1, 0x004088,16, 0x004100,11, 0x004140,3, 0x004150,12, 0x004184,13, 0x0041c0,8, 0x004200,1, 0x004218,8, 0x00423c,9, 0x004284,1, 0x004290,4, 0x0042a4,1, 0x0042ac,7, 0x0042e0,2, 0x0042ec,2, 0x004300,8, 0x004340,6, 0x004360,3, 0x004380,8, 0x0043b0,21, 0x004408,14, 0x004480,1, 0x004488,16, 0x004500,11, 0x004540,3, 0x004550,12, 0x004584,13, 0x0045c0,8, 0x004600,1, 0x004618,8, 0x00463c,9, 0x004684,1, 0x004690,4, 0x0046a4,1, 0x0046ac,7, 0x0046e0,2, 0x0046ec,2, 0x004700,8, 0x004740,6, 0x004760,3, 0x004780,8, 0x0047b0,21, 0x004808,14, 0x004880,1, 0x004888,16, 0x004900,11, 0x004940,3, 0x004950,12, 0x004984,13, 0x0049c0,8, 0x004a00,1, 0x004a18,8, 0x004a3c,9, 0x004a84,1, 0x004a90,4, 0x004aa4,1, 0x004aac,7, 0x004ae0,2, 0x004aec,2, 0x004b00,8, 0x004b40,6, 0x004b60,3, 0x004b80,8, 0x004bb0,21, 0x004c08,14, 0x004c80,1, 0x004c88,16, 0x004d00,11, 0x004d40,3, 0x004d50,12, 0x004d84,13, 0x004dc0,8, 0x004e00,1, 0x004e18,8, 0x004e3c,9, 0x004e84,1, 0x004e90,4, 0x004ea4,1, 0x004eac,7, 0x004ee0,2, 0x004eec,2, 0x004f00,8, 0x004f40,6, 0x004f60,3, 0x004f80,8, 0x004fb0,21, 0x005008,14, 0x005080,1, 0x005088,16, 0x005100,11, 0x005140,3, 0x005150,12, 0x005184,13, 0x0051c0,8, 0x005200,1, 0x005218,8, 0x00523c,9, 0x005284,1, 0x005290,4, 0x0052a4,1, 0x0052ac,7, 0x0052e0,2, 0x0052ec,2, 0x005300,8, 0x005340,6, 0x005360,3, 0x005380,8, 0x0053b0,21, 0x005408,14, 0x005480,1, 0x005488,16, 0x005500,11, 0x005540,3, 0x005550,12, 0x005584,13, 0x0055c0,8, 0x005600,1, 0x005618,8, 0x00563c,9, 0x005684,1, 0x005690,4, 0x0056a4,1, 0x0056ac,7, 0x0056e0,2, 0x0056ec,2, 0x005700,8, 0x005740,6, 0x005760,3, 0x005780,8, 0x0057b0,21, 0x005808,14, 0x005880,1, 0x005888,16, 0x005900,11, 0x005940,3, 0x005950,12, 0x005984,13, 0x0059c0,8, 0x005a00,1, 0x005a18,8, 0x005a3c,9, 0x005a84,1, 0x005a90,4, 0x005aa4,1, 0x005aac,7, 0x005ae0,2, 0x005aec,2, 0x005b00,8, 0x005b40,6, 0x005b60,3, 0x005b80,8, 0x005bb0,21, 0x005c08,14, 0x005c80,1, 0x005c88,16, 0x005d00,11, 0x005d40,3, 0x005d50,12, 0x005d84,13, 0x005dc0,8, 0x005e00,1, 0x005e18,8, 0x005e3c,9, 0x005e84,1, 0x005e90,4, 0x005ea4,1, 0x005eac,7, 0x005ee0,2, 0x005eec,2, 0x005f00,8, 0x005f40,6, 0x005f60,3, 0x005f80,8, 0x005fb0,21, 0x006008,14, 0x006080,1, 0x006088,16, 0x006100,11, 0x006140,3, 0x006150,12, 0x006184,13, 0x0061c0,8, 0x006200,1, 0x006218,8, 0x00623c,9, 0x006284,1, 0x006290,4, 0x0062a4,1, 0x0062ac,7, 0x0062e0,2, 0x0062ec,2, 0x006300,8, 0x006340,6, 0x006360,3, 0x006380,8, 0x0063b0,21, 0x006408,14, 0x006480,1, 0x006488,16, 0x006500,11, 0x006540,3, 0x006550,12, 0x006584,13, 0x0065c0,8, 0x006600,1, 0x006618,8, 0x00663c,9, 0x006684,1, 0x006690,4, 0x0066a4,1, 0x0066ac,7, 0x0066e0,2, 0x0066ec,2, 0x006700,8, 0x006740,6, 0x006760,3, 0x006780,8, 0x0067b0,21, 0x006808,14, 0x006880,1, 0x006888,16, 0x006900,11, 0x006940,3, 0x006950,12, 0x006984,13, 0x0069c0,8, 0x006a00,1, 0x006a18,8, 0x006a3c,9, 0x006a84,1, 0x006a90,4, 0x006aa4,1, 0x006aac,7, 0x006ae0,2, 0x006aec,2, 0x006b00,8, 0x006b40,6, 0x006b60,3, 0x006b80,8, 0x006bb0,21, 0x006c08,14, 0x006c80,1, 0x006c88,16, 0x006d00,11, 0x006d40,3, 0x006d50,12, 0x006d84,13, 0x006dc0,8, 0x006e00,1, 0x006e18,8, 0x006e3c,9, 0x006e84,1, 0x006e90,4, 0x006ea4,1, 0x006eac,7, 0x006ee0,2, 0x006eec,2, 0x006f00,8, 0x006f40,6, 0x006f60,3, 0x006f80,8, 0x006fb0,21, 0x007008,14, 0x007080,1, 0x007088,16, 0x007100,11, 0x007140,3, 0x007150,12, 0x007184,13, 0x0071c0,8, 0x007200,1, 0x007218,8, 0x00723c,9, 0x007284,1, 0x007290,4, 0x0072a4,1, 0x0072ac,7, 0x0072e0,2, 0x0072ec,2, 0x007300,8, 0x007340,6, 0x007360,3, 0x007380,8, 0x0073b0,21, 0x007408,14, 0x007480,1, 0x007488,16, 0x007500,11, 0x007540,3, 0x007550,12, 0x007584,13, 0x0075c0,8, 0x007600,1, 0x007618,8, 0x00763c,9, 0x007684,1, 0x007690,4, 0x0076a4,1, 0x0076ac,7, 0x0076e0,2, 0x0076ec,2, 0x007700,8, 0x007740,6, 0x007760,3, 0x007780,8, 0x0077b0,21, 0x007808,14, 0x007880,1, 0x007888,16, 0x007900,11, 0x007940,3, 0x007950,12, 0x007984,13, 0x0079c0,8, 0x007a00,1, 0x007a18,8, 0x007a3c,9, 0x007a84,1, 0x007a90,4, 0x007aa4,1, 0x007aac,7, 0x007ae0,2, 0x007aec,2, 0x007b00,8, 0x007b40,6, 0x007b60,3, 0x007b80,8, 0x007bb0,21, 0x007c08,14, 0x007c80,1, 0x007c88,16, 0x007d00,11, 0x007d40,3, 0x007d50,12, 0x007d84,13, 0x007dc0,8, 0x007e00,1, 0x007e18,8, 0x007e3c,9, 0x007e84,1, 0x007e90,4, 0x007ea4,1, 0x007eac,7, 0x007ee0,2, 0x007eec,2, 0x007f00,8, 0x007f40,6, 0x007f60,3, 0x007f80,8, 0x007fb0,21, 0x008008,14, 0x008080,1, 0x008088,16, 0x008100,11, 0x008140,3, 0x008150,12, 0x008184,13, 0x0081c0,8, 0x008200,1, 0x008218,8, 0x00823c,9, 0x008284,1, 0x008290,4, 0x0082a4,1, 0x0082ac,7, 0x0082e0,2, 0x0082ec,2, 0x008300,8, 0x008340,6, 0x008360,3, 0x008380,8, 0x0083b0,21, 0x008408,14, 0x008480,1, 0x008488,16, 0x008500,11, 0x008540,3, 0x008550,12, 0x008584,13, 0x0085c0,8, 0x008600,1, 0x008618,8, 0x00863c,9, 0x008684,1, 0x008690,4, 0x0086a4,1, 0x0086ac,7, 0x0086e0,2, 0x0086ec,2, 0x008700,8, 0x008740,6, 0x008760,3, 0x008780,8, 0x0087b0,21, 0x008808,14, 0x008880,1, 0x008888,16, 0x008900,11, 0x008940,3, 0x008950,12, 0x008984,13, 0x0089c0,8, 0x008a00,1, 0x008a18,8, 0x008a3c,9, 0x008a84,1, 0x008a90,4, 0x008aa4,1, 0x008aac,7, 0x008ae0,2, 0x008aec,2, 0x008b00,8, 0x008b40,6, 0x008b60,3, 0x008b80,8, 0x008bb0,21, 0x008c08,14, 0x008c80,1, 0x008c88,16, 0x008d00,11, 0x008d40,3, 0x008d50,12, 0x008d84,13, 0x008dc0,8, 0x008e00,1, 0x008e18,8, 0x008e3c,9, 0x008e84,1, 0x008e90,4, 0x008ea4,1, 0x008eac,7, 0x008ee0,2, 0x008eec,2, 0x008f00,8, 0x008f40,6, 0x008f60,3, 0x008f80,8, 0x008fb0,21, 0x009028,1, 0x009050,1, 0x009078,1, 0x0090a0,1, 0x0091ac,1, 0x0091d8,4, 0x009200,6, 0x009220,6, 0x009240,3, 0x009400,6, 0x009420,6, 0x009440,6, 0x009460,3, 0x009480,13, 0x0094c0,3, 0x0094d0,3, 0x0094e0,5, 0x009500,2, 0x00950c,5, 0x010800,1, 0x010808,14, 0x010880,1, 0x010888,16, 0x010900,11, 0x010940,3, 0x010950,12, 0x010984,13, 0x0109c0,8, 0x010a00,1, 0x010a18,8, 0x010a3c,9, 0x010a84,1, 0x010a90,4, 0x010aa4,1, 0x010aac,7, 0x010ae0,2, 0x010aec,2, 0x010b00,8, 0x010b40,6, 0x010b60,3, 0x010b80,8, 0x010bb0,21, 0x010c08,14, 0x010c80,1, 0x010c88,16, 0x010d00,11, 0x010d40,3, 0x010d50,12, 0x010d84,13, 0x010dc0,8, 0x010e00,1, 0x010e18,8, 0x010e3c,9, 0x010e84,1, 0x010e90,4, 0x010ea4,1, 0x010eac,7, 0x010ee0,2, 0x010eec,2, 0x010f00,8, 0x010f40,6, 0x010f60,3, 0x010f80,8, 0x010fb0,21, 0x011008,14, 0x011080,1, 0x011088,16, 0x011100,11, 0x011140,3, 0x011150,12, 0x011184,13, 0x0111c0,8, 0x011200,1, 0x011218,8, 0x01123c,9, 0x011284,1, 0x011290,4, 0x0112a4,1, 0x0112ac,7, 0x0112e0,2, 0x0112ec,2, 0x011300,8, 0x011340,6, 0x011360,3, 0x011380,8, 0x0113b0,21, 0x011408,14, 0x011480,1, 0x011488,16, 0x011500,11, 0x011540,3, 0x011550,12, 0x011584,13, 0x0115c0,8, 0x011600,1, 0x011618,8, 0x01163c,9, 0x011684,1, 0x011690,4, 0x0116a4,1, 0x0116ac,7, 0x0116e0,2, 0x0116ec,2, 0x011700,8, 0x011740,6, 0x011760,3, 0x011780,8, 0x0117b0,21, 0x011808,14, 0x011880,1, 0x011888,16, 0x011900,11, 0x011940,3, 0x011950,12, 0x011984,13, 0x0119c0,8, 0x011a00,1, 0x011a18,8, 0x011a3c,9, 0x011a84,1, 0x011a90,4, 0x011aa4,1, 0x011aac,7, 0x011ae0,2, 0x011aec,2, 0x011b00,8, 0x011b40,6, 0x011b60,3, 0x011b80,8, 0x011bb0,21, 0x011c08,14, 0x011c80,1, 0x011c88,16, 0x011d00,11, 0x011d40,3, 0x011d50,12, 0x011d84,13, 0x011dc0,8, 0x011e00,1, 0x011e18,8, 0x011e3c,9, 0x011e84,1, 0x011e90,4, 0x011ea4,1, 0x011eac,7, 0x011ee0,2, 0x011eec,2, 0x011f00,8, 0x011f40,6, 0x011f60,3, 0x011f80,8, 0x011fb0,21, 0x012008,14, 0x012080,1, 0x012088,16, 0x012100,11, 0x012140,3, 0x012150,12, 0x012184,13, 0x0121c0,8, 0x012200,1, 0x012218,8, 0x01223c,9, 0x012284,1, 0x012290,4, 0x0122a4,1, 0x0122ac,7, 0x0122e0,2, 0x0122ec,2, 0x012300,8, 0x012340,6, 0x012360,3, 0x012380,8, 0x0123b0,21, 0x012408,14, 0x012480,1, 0x012488,16, 0x012500,11, 0x012540,3, 0x012550,12, 0x012584,13, 0x0125c0,8, 0x012600,1, 0x012618,8, 0x01263c,9, 0x012684,1, 0x012690,4, 0x0126a4,1, 0x0126ac,7, 0x0126e0,2, 0x0126ec,2, 0x012700,8, 0x012740,6, 0x012760,3, 0x012780,8, 0x0127b0,21, 0x012808,14, 0x012880,1, 0x012888,16, 0x012900,11, 0x012940,3, 0x012950,12, 0x012984,13, 0x0129c0,8, 0x012a00,1, 0x012a18,8, 0x012a3c,9, 0x012a84,1, 0x012a90,4, 0x012aa4,1, 0x012aac,7, 0x012ae0,2, 0x012aec,2, 0x012b00,8, 0x012b40,6, 0x012b60,3, 0x012b80,8, 0x012bb0,21, 0x012c08,14, 0x012c80,1, 0x012c88,16, 0x012d00,11, 0x012d40,3, 0x012d50,12, 0x012d84,13, 0x012dc0,8, 0x012e00,1, 0x012e18,8, 0x012e3c,9, 0x012e84,1, 0x012e90,4, 0x012ea4,1, 0x012eac,7, 0x012ee0,2, 0x012eec,2, 0x012f00,8, 0x012f40,6, 0x012f60,3, 0x012f80,8, 0x012fb0,21, 0x013008,14, 0x013080,1, 0x013088,16, 0x013100,11, 0x013140,3, 0x013150,12, 0x013184,13, 0x0131c0,8, 0x013200,1, 0x013218,8, 0x01323c,9, 0x013284,1, 0x013290,4, 0x0132a4,1, 0x0132ac,7, 0x0132e0,2, 0x0132ec,2, 0x013300,8, 0x013340,6, 0x013360,3, 0x013380,8, 0x0133b0,21, 0x013408,14, 0x013480,1, 0x013488,16, 0x013500,11, 0x013540,3, 0x013550,12, 0x013584,13, 0x0135c0,8, 0x013600,1, 0x013618,8, 0x01363c,9, 0x013684,1, 0x013690,4, 0x0136a4,1, 0x0136ac,7, 0x0136e0,2, 0x0136ec,2, 0x013700,8, 0x013740,6, 0x013760,3, 0x013780,8, 0x0137b0,21, 0x013808,14, 0x013880,1, 0x013888,16, 0x013900,11, 0x013940,3, 0x013950,12, 0x013984,13, 0x0139c0,8, 0x013a00,1, 0x013a18,8, 0x013a3c,9, 0x013a84,1, 0x013a90,4, 0x013aa4,1, 0x013aac,7, 0x013ae0,2, 0x013aec,2, 0x013b00,8, 0x013b40,6, 0x013b60,3, 0x013b80,8, 0x013bb0,21, 0x013c08,14, 0x013c80,1, 0x013c88,16, 0x013d00,11, 0x013d40,3, 0x013d50,12, 0x013d84,13, 0x013dc0,8, 0x013e00,1, 0x013e18,8, 0x013e3c,9, 0x013e84,1, 0x013e90,4, 0x013ea4,1, 0x013eac,7, 0x013ee0,2, 0x013eec,2, 0x013f00,8, 0x013f40,6, 0x013f60,3, 0x013f80,8, 0x013fb0,21, 0x014008,14, 0x014080,1, 0x014088,16, 0x014100,11, 0x014140,3, 0x014150,12, 0x014184,13, 0x0141c0,8, 0x014200,1, 0x014218,8, 0x01423c,9, 0x014284,1, 0x014290,4, 0x0142a4,1, 0x0142ac,7, 0x0142e0,2, 0x0142ec,2, 0x014300,8, 0x014340,6, 0x014360,3, 0x014380,8, 0x0143b0,21, 0x014408,14, 0x014480,1, 0x014488,16, 0x014500,11, 0x014540,3, 0x014550,12, 0x014584,13, 0x0145c0,8, 0x014600,1, 0x014618,8, 0x01463c,9, 0x014684,1, 0x014690,4, 0x0146a4,1, 0x0146ac,7, 0x0146e0,2, 0x0146ec,2, 0x014700,8, 0x014740,6, 0x014760,3, 0x014780,8, 0x0147b0,21, 0x014808,14, 0x014880,1, 0x014888,16, 0x014900,11, 0x014940,3, 0x014950,12, 0x014984,13, 0x0149c0,8, 0x014a00,1, 0x014a18,8, 0x014a3c,9, 0x014a84,1, 0x014a90,4, 0x014aa4,1, 0x014aac,7, 0x014ae0,2, 0x014aec,2, 0x014b00,8, 0x014b40,6, 0x014b60,3, 0x014b80,8, 0x014bb0,21, 0x014c08,14, 0x014c80,1, 0x014c88,16, 0x014d00,11, 0x014d40,3, 0x014d50,12, 0x014d84,13, 0x014dc0,8, 0x014e00,1, 0x014e18,8, 0x014e3c,9, 0x014e84,1, 0x014e90,4, 0x014ea4,1, 0x014eac,7, 0x014ee0,2, 0x014eec,2, 0x014f00,8, 0x014f40,6, 0x014f60,3, 0x014f80,8, 0x014fb0,21, 0x015008,14, 0x015080,1, 0x015088,16, 0x015100,11, 0x015140,3, 0x015150,12, 0x015184,13, 0x0151c0,8, 0x015200,1, 0x015218,8, 0x01523c,9, 0x015284,1, 0x015290,4, 0x0152a4,1, 0x0152ac,7, 0x0152e0,2, 0x0152ec,2, 0x015300,8, 0x015340,6, 0x015360,3, 0x015380,8, 0x0153b0,21, 0x015408,14, 0x015480,1, 0x015488,16, 0x015500,11, 0x015540,3, 0x015550,12, 0x015584,13, 0x0155c0,8, 0x015600,1, 0x015618,8, 0x01563c,9, 0x015684,1, 0x015690,4, 0x0156a4,1, 0x0156ac,7, 0x0156e0,2, 0x0156ec,2, 0x015700,8, 0x015740,6, 0x015760,3, 0x015780,8, 0x0157b0,21, 0x015808,14, 0x015880,1, 0x015888,16, 0x015900,11, 0x015940,3, 0x015950,12, 0x015984,13, 0x0159c0,8, 0x015a00,1, 0x015a18,8, 0x015a3c,9, 0x015a84,1, 0x015a90,4, 0x015aa4,1, 0x015aac,7, 0x015ae0,2, 0x015aec,2, 0x015b00,8, 0x015b40,6, 0x015b60,3, 0x015b80,8, 0x015bb0,21, 0x015c08,14, 0x015c80,1, 0x015c88,16, 0x015d00,11, 0x015d40,3, 0x015d50,12, 0x015d84,13, 0x015dc0,8, 0x015e00,1, 0x015e18,8, 0x015e3c,9, 0x015e84,1, 0x015e90,4, 0x015ea4,1, 0x015eac,7, 0x015ee0,2, 0x015eec,2, 0x015f00,8, 0x015f40,6, 0x015f60,3, 0x015f80,8, 0x015fb0,21, 0x016008,14, 0x016080,1, 0x016088,16, 0x016100,11, 0x016140,3, 0x016150,12, 0x016184,13, 0x0161c0,8, 0x016200,1, 0x016218,8, 0x01623c,9, 0x016284,1, 0x016290,4, 0x0162a4,1, 0x0162ac,7, 0x0162e0,2, 0x0162ec,2, 0x016300,8, 0x016340,6, 0x016360,3, 0x016380,8, 0x0163b0,21, 0x016408,14, 0x016480,1, 0x016488,16, 0x016500,11, 0x016540,3, 0x016550,12, 0x016584,13, 0x0165c0,8, 0x016600,1, 0x016618,8, 0x01663c,9, 0x016684,1, 0x016690,4, 0x0166a4,1, 0x0166ac,7, 0x0166e0,2, 0x0166ec,2, 0x016700,8, 0x016740,6, 0x016760,3, 0x016780,8, 0x0167b0,21, 0x016808,14, 0x016880,1, 0x016888,16, 0x016900,11, 0x016940,3, 0x016950,12, 0x016984,13, 0x0169c0,8, 0x016a00,1, 0x016a18,8, 0x016a3c,9, 0x016a84,1, 0x016a90,4, 0x016aa4,1, 0x016aac,7, 0x016ae0,2, 0x016aec,2, 0x016b00,8, 0x016b40,6, 0x016b60,3, 0x016b80,8, 0x016bb0,21, 0x016c08,14, 0x016c80,1, 0x016c88,16, 0x016d00,11, 0x016d40,3, 0x016d50,12, 0x016d84,13, 0x016dc0,8, 0x016e00,1, 0x016e18,8, 0x016e3c,9, 0x016e84,1, 0x016e90,4, 0x016ea4,1, 0x016eac,7, 0x016ee0,2, 0x016eec,2, 0x016f00,8, 0x016f40,6, 0x016f60,3, 0x016f80,8, 0x016fb0,21, 0x017008,14, 0x017080,1, 0x017088,16, 0x017100,11, 0x017140,3, 0x017150,12, 0x017184,13, 0x0171c0,8, 0x017200,1, 0x017218,8, 0x01723c,9, 0x017284,1, 0x017290,4, 0x0172a4,1, 0x0172ac,7, 0x0172e0,2, 0x0172ec,2, 0x017300,8, 0x017340,6, 0x017360,3, 0x017380,8, 0x0173b0,21, 0x017408,14, 0x017480,1, 0x017488,16, 0x017500,11, 0x017540,3, 0x017550,12, 0x017584,13, 0x0175c0,8, 0x017600,1, 0x017618,8, 0x01763c,9, 0x017684,1, 0x017690,4, 0x0176a4,1, 0x0176ac,7, 0x0176e0,2, 0x0176ec,2, 0x017700,8, 0x017740,6, 0x017760,3, 0x017780,8, 0x0177b0,21, 0x017808,14, 0x017880,1, 0x017888,16, 0x017900,11, 0x017940,3, 0x017950,12, 0x017984,13, 0x0179c0,8, 0x017a00,1, 0x017a18,8, 0x017a3c,9, 0x017a84,1, 0x017a90,4, 0x017aa4,1, 0x017aac,7, 0x017ae0,2, 0x017aec,2, 0x017b00,8, 0x017b40,6, 0x017b60,3, 0x017b80,8, 0x017bb0,21, 0x017c08,14, 0x017c80,1, 0x017c88,16, 0x017d00,11, 0x017d40,3, 0x017d50,12, 0x017d84,13, 0x017dc0,8, 0x017e00,1, 0x017e18,8, 0x017e3c,9, 0x017e84,1, 0x017e90,4, 0x017ea4,1, 0x017eac,7, 0x017ee0,2, 0x017eec,2, 0x017f00,8, 0x017f40,6, 0x017f60,3, 0x017f80,8, 0x017fb0,21, 0x018008,14, 0x018080,1, 0x018088,16, 0x018100,11, 0x018140,3, 0x018150,12, 0x018184,13, 0x0181c0,8, 0x018200,1, 0x018218,8, 0x01823c,9, 0x018284,1, 0x018290,4, 0x0182a4,1, 0x0182ac,7, 0x0182e0,2, 0x0182ec,2, 0x018300,8, 0x018340,6, 0x018360,3, 0x018380,8, 0x0183b0,21, 0x018408,14, 0x018480,1, 0x018488,16, 0x018500,11, 0x018540,3, 0x018550,12, 0x018584,13, 0x0185c0,8, 0x018600,1, 0x018618,8, 0x01863c,9, 0x018684,1, 0x018690,4, 0x0186a4,1, 0x0186ac,7, 0x0186e0,2, 0x0186ec,2, 0x018700,8, 0x018740,6, 0x018760,3, 0x018780,8, 0x0187b0,21, 0x018808,14, 0x018880,1, 0x018888,16, 0x018900,11, 0x018940,3, 0x018950,12, 0x018984,13, 0x0189c0,8, 0x018a00,1, 0x018a18,8, 0x018a3c,9, 0x018a84,1, 0x018a90,4, 0x018aa4,1, 0x018aac,7, 0x018ae0,2, 0x018aec,2, 0x018b00,8, 0x018b40,6, 0x018b60,3, 0x018b80,8, 0x018bb0,21, 0x018c08,14, 0x018c80,1, 0x018c88,16, 0x018d00,11, 0x018d40,3, 0x018d50,12, 0x018d84,13, 0x018dc0,8, 0x018e00,1, 0x018e18,8, 0x018e3c,9, 0x018e84,1, 0x018e90,4, 0x018ea4,1, 0x018eac,7, 0x018ee0,2, 0x018eec,2, 0x018f00,8, 0x018f40,6, 0x018f60,3, 0x018f80,8, 0x018fb0,21, 0x019028,1, 0x019050,1, 0x019078,1, 0x0190a0,1, 0x0191ac,1, 0x0191d8,4, 0x019200,6, 0x019220,6, 0x019240,3, 0x019400,6, 0x019420,6, 0x019440,6, 0x019460,3, 0x019480,13, 0x0194c0,3, 0x0194d0,3, 0x0194e0,5, 0x019500,2, 0x01950c,5, 0x020000,65, 0x020110,2, 0x020120,6, 0x020140,6, 0x020164,3, 0x020174,7, 0x020194,2, 0x0201c0,49, 0x020288,1, 0x020290,17, 0x0202d8,1, 0x0202e0,17, 0x020328,1, 0x020330,17, 0x020378,1, 0x020380,3, 0x020390,3, 0x0203a4,1, 0x0203ac,3, 0x0203c0,4, 0x0203d4,7, 0x0203f4,68, 0x020510,2, 0x020520,6, 0x020540,6, 0x020564,3, 0x020574,7, 0x020594,2, 0x0205c0,49, 0x020688,1, 0x020690,17, 0x0206d8,1, 0x0206e0,17, 0x020728,1, 0x020730,17, 0x020778,1, 0x020780,3, 0x020790,3, 0x0207a4,1, 0x0207ac,3, 0x0207c0,4, 0x0207d4,7, 0x0207f4,68, 0x020910,2, 0x020920,6, 0x020940,6, 0x020964,3, 0x020974,7, 0x020994,2, 0x0209c0,49, 0x020a88,1, 0x020a90,17, 0x020ad8,1, 0x020ae0,17, 0x020b28,1, 0x020b30,17, 0x020b78,1, 0x020b80,3, 0x020b90,3, 0x020ba4,1, 0x020bac,3, 0x020bc0,4, 0x020bd4,7, 0x020bf4,68, 0x020d10,2, 0x020d20,6, 0x020d40,6, 0x020d64,3, 0x020d74,7, 0x020d94,2, 0x020dc0,49, 0x020e88,1, 0x020e90,17, 0x020ed8,1, 0x020ee0,17, 0x020f28,1, 0x020f30,17, 0x020f78,1, 0x020f80,3, 0x020f90,3, 0x020fa4,1, 0x020fac,3, 0x020fc0,4, 0x020fd4,7, 0x020ff4,68, 0x021110,2, 0x021120,6, 0x021140,6, 0x021164,3, 0x021174,7, 0x021194,2, 0x0211c0,49, 0x021288,1, 0x021290,17, 0x0212d8,1, 0x0212e0,17, 0x021328,1, 0x021330,17, 0x021378,1, 0x021380,3, 0x021390,3, 0x0213a4,1, 0x0213ac,3, 0x0213c0,4, 0x0213d4,7, 0x0213f4,68, 0x021510,2, 0x021520,6, 0x021540,6, 0x021564,3, 0x021574,7, 0x021594,2, 0x0215c0,49, 0x021688,1, 0x021690,17, 0x0216d8,1, 0x0216e0,17, 0x021728,1, 0x021730,17, 0x021778,1, 0x021780,3, 0x021790,3, 0x0217a4,1, 0x0217ac,3, 0x0217c0,4, 0x0217d4,7, 0x0217f4,68, 0x021910,2, 0x021920,6, 0x021940,6, 0x021964,3, 0x021974,7, 0x021994,2, 0x0219c0,49, 0x021a88,1, 0x021a90,17, 0x021ad8,1, 0x021ae0,17, 0x021b28,1, 0x021b30,17, 0x021b78,1, 0x021b80,3, 0x021b90,3, 0x021ba4,1, 0x021bac,3, 0x021bc0,4, 0x021bd4,7, 0x021bf4,68, 0x021d10,2, 0x021d20,6, 0x021d40,6, 0x021d64,3, 0x021d74,7, 0x021d94,2, 0x021dc0,49, 0x021e88,1, 0x021e90,17, 0x021ed8,1, 0x021ee0,17, 0x021f28,1, 0x021f30,17, 0x021f78,1, 0x021f80,3, 0x021f90,3, 0x021fa4,1, 0x021fac,3, 0x021fc0,4, 0x021fd4,7, 0x021ff4,68, 0x022110,2, 0x022120,6, 0x022140,6, 0x022164,3, 0x022174,7, 0x022194,2, 0x0221c0,49, 0x022288,1, 0x022290,17, 0x0222d8,1, 0x0222e0,17, 0x022328,1, 0x022330,17, 0x022378,1, 0x022380,3, 0x022390,3, 0x0223a4,1, 0x0223ac,3, 0x0223c0,4, 0x0223d4,7, 0x0223f4,68, 0x022510,2, 0x022520,6, 0x022540,6, 0x022564,3, 0x022574,7, 0x022594,2, 0x0225c0,49, 0x022688,1, 0x022690,17, 0x0226d8,1, 0x0226e0,17, 0x022728,1, 0x022730,17, 0x022778,1, 0x022780,3, 0x022790,3, 0x0227a4,1, 0x0227ac,3, 0x0227c0,4, 0x0227d4,7, 0x0227f4,68, 0x022910,2, 0x022920,6, 0x022940,6, 0x022964,3, 0x022974,7, 0x022994,2, 0x0229c0,49, 0x022a88,1, 0x022a90,17, 0x022ad8,1, 0x022ae0,17, 0x022b28,1, 0x022b30,17, 0x022b78,1, 0x022b80,3, 0x022b90,3, 0x022ba4,1, 0x022bac,3, 0x022bc0,4, 0x022bd4,7, 0x022bf4,68, 0x022d10,2, 0x022d20,6, 0x022d40,6, 0x022d64,3, 0x022d74,7, 0x022d94,2, 0x022dc0,49, 0x022e88,1, 0x022e90,17, 0x022ed8,1, 0x022ee0,17, 0x022f28,1, 0x022f30,17, 0x022f78,1, 0x022f80,3, 0x022f90,3, 0x022fa4,1, 0x022fac,3, 0x022fc0,4, 0x022fd4,7, 0x022ff4,68, 0x023110,2, 0x023120,6, 0x023140,6, 0x023164,3, 0x023174,7, 0x023194,2, 0x0231c0,49, 0x023288,1, 0x023290,17, 0x0232d8,1, 0x0232e0,17, 0x023328,1, 0x023330,17, 0x023378,1, 0x023380,3, 0x023390,3, 0x0233a4,1, 0x0233ac,3, 0x0233c0,4, 0x0233d4,7, 0x0233f4,68, 0x023510,2, 0x023520,6, 0x023540,6, 0x023564,3, 0x023574,7, 0x023594,2, 0x0235c0,49, 0x023688,1, 0x023690,17, 0x0236d8,1, 0x0236e0,17, 0x023728,1, 0x023730,17, 0x023778,1, 0x023780,3, 0x023790,3, 0x0237a4,1, 0x0237ac,3, 0x0237c0,4, 0x0237d4,7, 0x0237f4,68, 0x023910,2, 0x023920,6, 0x023940,6, 0x023964,3, 0x023974,7, 0x023994,2, 0x0239c0,49, 0x023a88,1, 0x023a90,17, 0x023ad8,1, 0x023ae0,17, 0x023b28,1, 0x023b30,17, 0x023b78,1, 0x023b80,3, 0x023b90,3, 0x023ba4,1, 0x023bac,3, 0x023bc0,4, 0x023bd4,7, 0x023bf4,68, 0x023d10,2, 0x023d20,6, 0x023d40,6, 0x023d64,3, 0x023d74,7, 0x023d94,2, 0x023dc0,49, 0x023e88,1, 0x023e90,17, 0x023ed8,1, 0x023ee0,17, 0x023f28,1, 0x023f30,17, 0x023f78,1, 0x023f80,3, 0x023f90,3, 0x023fa4,1, 0x023fac,3, 0x023fc0,4, 0x023fd4,7, 0x023ff4,7, 0x024020,37, 0x0240b8,64, 0x024200,11, 0x024230,3, 0x024240,130, 0x024450,2, 0x024468,3, 0x02447c,1, 0x024484,1, 0x02448c,3, 0x024500,40, 0x0245a8,4, 0x0245e0,4, 0x0245fc,20, 0x024700,6, 0x024720,6, 0x024740,6, 0x024760,2, 0x024770,2, 0x024780,1, 0x025000,5, 0x025028,5, 0x025050,5, 0x025078,5, 0x0250a0,7, 0x0251ac,1, 0x0251d8,4, 0x025200,6, 0x025220,6, 0x025240,6, 0x025260,6, 0x025280,6, 0x0252a0,6, 0x0252c0,6, 0x0252e0,6, 0x025300,6, 0x025320,6, 0x025340,3, 0x025440,3, 0x025500,13, 0x025540,2, 0x025560,3, 0x025570,3, 0x025580,6, 0x0255a0,6, 0x0255c0,3, 0x025900,1, 0x028000,65, 0x028110,2, 0x028120,6, 0x028140,6, 0x028164,3, 0x028174,7, 0x028194,2, 0x0281c0,49, 0x028288,1, 0x028290,17, 0x0282d8,1, 0x0282e0,17, 0x028328,1, 0x028330,17, 0x028378,1, 0x028380,3, 0x028390,3, 0x0283a4,1, 0x0283ac,3, 0x0283c0,4, 0x0283d4,7, 0x0283f4,68, 0x028510,2, 0x028520,6, 0x028540,6, 0x028564,3, 0x028574,7, 0x028594,2, 0x0285c0,49, 0x028688,1, 0x028690,17, 0x0286d8,1, 0x0286e0,17, 0x028728,1, 0x028730,17, 0x028778,1, 0x028780,3, 0x028790,3, 0x0287a4,1, 0x0287ac,3, 0x0287c0,4, 0x0287d4,7, 0x0287f4,68, 0x028910,2, 0x028920,6, 0x028940,6, 0x028964,3, 0x028974,7, 0x028994,2, 0x0289c0,49, 0x028a88,1, 0x028a90,17, 0x028ad8,1, 0x028ae0,17, 0x028b28,1, 0x028b30,17, 0x028b78,1, 0x028b80,3, 0x028b90,3, 0x028ba4,1, 0x028bac,3, 0x028bc0,4, 0x028bd4,7, 0x028bf4,68, 0x028d10,2, 0x028d20,6, 0x028d40,6, 0x028d64,3, 0x028d74,7, 0x028d94,2, 0x028dc0,49, 0x028e88,1, 0x028e90,17, 0x028ed8,1, 0x028ee0,17, 0x028f28,1, 0x028f30,17, 0x028f78,1, 0x028f80,3, 0x028f90,3, 0x028fa4,1, 0x028fac,3, 0x028fc0,4, 0x028fd4,7, 0x028ff4,68, 0x029110,2, 0x029120,6, 0x029140,6, 0x029164,3, 0x029174,7, 0x029194,2, 0x0291c0,49, 0x029288,1, 0x029290,17, 0x0292d8,1, 0x0292e0,17, 0x029328,1, 0x029330,17, 0x029378,1, 0x029380,3, 0x029390,3, 0x0293a4,1, 0x0293ac,3, 0x0293c0,4, 0x0293d4,7, 0x0293f4,68, 0x029510,2, 0x029520,6, 0x029540,6, 0x029564,3, 0x029574,7, 0x029594,2, 0x0295c0,49, 0x029688,1, 0x029690,17, 0x0296d8,1, 0x0296e0,17, 0x029728,1, 0x029730,17, 0x029778,1, 0x029780,3, 0x029790,3, 0x0297a4,1, 0x0297ac,3, 0x0297c0,4, 0x0297d4,7, 0x0297f4,68, 0x029910,2, 0x029920,6, 0x029940,6, 0x029964,3, 0x029974,7, 0x029994,2, 0x0299c0,49, 0x029a88,1, 0x029a90,17, 0x029ad8,1, 0x029ae0,17, 0x029b28,1, 0x029b30,17, 0x029b78,1, 0x029b80,3, 0x029b90,3, 0x029ba4,1, 0x029bac,3, 0x029bc0,4, 0x029bd4,7, 0x029bf4,68, 0x029d10,2, 0x029d20,6, 0x029d40,6, 0x029d64,3, 0x029d74,7, 0x029d94,2, 0x029dc0,49, 0x029e88,1, 0x029e90,17, 0x029ed8,1, 0x029ee0,17, 0x029f28,1, 0x029f30,17, 0x029f78,1, 0x029f80,3, 0x029f90,3, 0x029fa4,1, 0x029fac,3, 0x029fc0,4, 0x029fd4,7, 0x029ff4,68, 0x02a110,2, 0x02a120,6, 0x02a140,6, 0x02a164,3, 0x02a174,7, 0x02a194,2, 0x02a1c0,49, 0x02a288,1, 0x02a290,17, 0x02a2d8,1, 0x02a2e0,17, 0x02a328,1, 0x02a330,17, 0x02a378,1, 0x02a380,3, 0x02a390,3, 0x02a3a4,1, 0x02a3ac,3, 0x02a3c0,4, 0x02a3d4,7, 0x02a3f4,68, 0x02a510,2, 0x02a520,6, 0x02a540,6, 0x02a564,3, 0x02a574,7, 0x02a594,2, 0x02a5c0,49, 0x02a688,1, 0x02a690,17, 0x02a6d8,1, 0x02a6e0,17, 0x02a728,1, 0x02a730,17, 0x02a778,1, 0x02a780,3, 0x02a790,3, 0x02a7a4,1, 0x02a7ac,3, 0x02a7c0,4, 0x02a7d4,7, 0x02a7f4,68, 0x02a910,2, 0x02a920,6, 0x02a940,6, 0x02a964,3, 0x02a974,7, 0x02a994,2, 0x02a9c0,49, 0x02aa88,1, 0x02aa90,17, 0x02aad8,1, 0x02aae0,17, 0x02ab28,1, 0x02ab30,17, 0x02ab78,1, 0x02ab80,3, 0x02ab90,3, 0x02aba4,1, 0x02abac,3, 0x02abc0,4, 0x02abd4,7, 0x02abf4,68, 0x02ad10,2, 0x02ad20,6, 0x02ad40,6, 0x02ad64,3, 0x02ad74,7, 0x02ad94,2, 0x02adc0,49, 0x02ae88,1, 0x02ae90,17, 0x02aed8,1, 0x02aee0,17, 0x02af28,1, 0x02af30,17, 0x02af78,1, 0x02af80,3, 0x02af90,3, 0x02afa4,1, 0x02afac,3, 0x02afc0,4, 0x02afd4,7, 0x02aff4,68, 0x02b110,2, 0x02b120,6, 0x02b140,6, 0x02b164,3, 0x02b174,7, 0x02b194,2, 0x02b1c0,49, 0x02b288,1, 0x02b290,17, 0x02b2d8,1, 0x02b2e0,17, 0x02b328,1, 0x02b330,17, 0x02b378,1, 0x02b380,3, 0x02b390,3, 0x02b3a4,1, 0x02b3ac,3, 0x02b3c0,4, 0x02b3d4,7, 0x02b3f4,68, 0x02b510,2, 0x02b520,6, 0x02b540,6, 0x02b564,3, 0x02b574,7, 0x02b594,2, 0x02b5c0,49, 0x02b688,1, 0x02b690,17, 0x02b6d8,1, 0x02b6e0,17, 0x02b728,1, 0x02b730,17, 0x02b778,1, 0x02b780,3, 0x02b790,3, 0x02b7a4,1, 0x02b7ac,3, 0x02b7c0,4, 0x02b7d4,7, 0x02b7f4,68, 0x02b910,2, 0x02b920,6, 0x02b940,6, 0x02b964,3, 0x02b974,7, 0x02b994,2, 0x02b9c0,49, 0x02ba88,1, 0x02ba90,17, 0x02bad8,1, 0x02bae0,17, 0x02bb28,1, 0x02bb30,17, 0x02bb78,1, 0x02bb80,3, 0x02bb90,3, 0x02bba4,1, 0x02bbac,3, 0x02bbc0,4, 0x02bbd4,7, 0x02bbf4,68, 0x02bd10,2, 0x02bd20,6, 0x02bd40,6, 0x02bd64,3, 0x02bd74,7, 0x02bd94,2, 0x02bdc0,49, 0x02be88,1, 0x02be90,17, 0x02bed8,1, 0x02bee0,17, 0x02bf28,1, 0x02bf30,17, 0x02bf78,1, 0x02bf80,3, 0x02bf90,3, 0x02bfa4,1, 0x02bfac,3, 0x02bfc0,4, 0x02bfd4,7, 0x02bff4,7, 0x02c020,37, 0x02c0b8,64, 0x02c200,11, 0x02c230,3, 0x02c240,130, 0x02c450,2, 0x02c468,3, 0x02c47c,1, 0x02c484,1, 0x02c48c,3, 0x02c500,40, 0x02c5a8,4, 0x02c5e0,4, 0x02c5fc,20, 0x02c700,6, 0x02c720,6, 0x02c740,6, 0x02c760,2, 0x02c770,2, 0x02c780,1, 0x02d000,5, 0x02d028,5, 0x02d050,5, 0x02d078,5, 0x02d0a0,7, 0x02d1ac,1, 0x02d1d8,4, 0x02d200,6, 0x02d220,6, 0x02d240,6, 0x02d260,6, 0x02d280,6, 0x02d2a0,6, 0x02d2c0,6, 0x02d2e0,6, 0x02d300,6, 0x02d320,6, 0x02d340,3, 0x02d440,3, 0x02d500,13, 0x02d540,2, 0x02d560,3, 0x02d570,3, 0x02d580,6, 0x02d5a0,6, 0x02d5c0,3, 0x02d900,1, 0x030000,38, 0x030100,38, 0x030200,38, 0x030300,38, 0x030400,38, 0x030500,38, 0x030600,38, 0x030700,38, 0x030800,38, 0x030900,38, 0x030a00,38, 0x030b00,38, 0x030c00,38, 0x030d00,38, 0x030e00,38, 0x030f00,38, 0x031000,38, 0x031100,38, 0x031200,38, 0x031300,38, 0x031400,38, 0x031500,38, 0x031600,38, 0x031700,38, 0x031800,38, 0x031900,38, 0x031a00,38, 0x031b00,38, 0x031c00,38, 0x031d00,38, 0x031e00,38, 0x031f00,38, 0x032000,6, 0x032020,7, 0x032040,4, 0x032054,3, 0x032064,1, 0x03206c,1, 0x032080,6, 0x0320a0,7, 0x0320c0,4, 0x0320d4,3, 0x0320e4,1, 0x0320ec,1, 0x032100,6, 0x032120,7, 0x032140,4, 0x032154,3, 0x032164,1, 0x03216c,1, 0x032180,6, 0x0321a0,7, 0x0321c0,4, 0x0321d4,3, 0x0321e4,1, 0x0321ec,1, 0x032200,6, 0x032220,7, 0x032240,4, 0x032254,3, 0x032264,1, 0x03226c,1, 0x032280,6, 0x0322a0,7, 0x0322c0,4, 0x0322d4,3, 0x0322e4,1, 0x0322ec,1, 0x032300,6, 0x032320,7, 0x032340,4, 0x032354,3, 0x032364,1, 0x03236c,1, 0x032380,6, 0x0323a0,7, 0x0323c0,4, 0x0323d4,3, 0x0323e4,1, 0x0323ec,1, 0x032400,6, 0x032420,7, 0x032440,4, 0x032454,3, 0x032464,1, 0x03246c,1, 0x032480,6, 0x0324a0,7, 0x0324c0,4, 0x0324d4,3, 0x0324e4,1, 0x0324ec,1, 0x032500,6, 0x032520,7, 0x032540,4, 0x032554,3, 0x032564,1, 0x03256c,1, 0x032580,6, 0x0325a0,7, 0x0325c0,4, 0x0325d4,3, 0x0325e4,1, 0x0325ec,1, 0x032600,6, 0x032620,7, 0x032640,4, 0x032654,3, 0x032664,1, 0x03266c,1, 0x032680,6, 0x0326a0,7, 0x0326c0,4, 0x0326d4,3, 0x0326e4,1, 0x0326ec,1, 0x032700,6, 0x032720,7, 0x032740,4, 0x032754,3, 0x032764,1, 0x03276c,1, 0x032780,6, 0x0327a0,7, 0x0327c0,4, 0x0327d4,3, 0x0327e4,1, 0x0327ec,1, 0x032800,6, 0x032820,7, 0x032840,4, 0x032854,3, 0x032864,1, 0x03286c,1, 0x032880,6, 0x0328a0,7, 0x0328c0,4, 0x0328d4,3, 0x0328e4,1, 0x0328ec,1, 0x032900,6, 0x032920,7, 0x032940,4, 0x032954,3, 0x032964,1, 0x03296c,1, 0x032980,6, 0x0329a0,7, 0x0329c0,4, 0x0329d4,3, 0x0329e4,1, 0x0329ec,1, 0x032a00,6, 0x032a20,7, 0x032a40,4, 0x032a54,3, 0x032a64,1, 0x032a6c,1, 0x032a80,6, 0x032aa0,7, 0x032ac0,4, 0x032ad4,3, 0x032ae4,1, 0x032aec,1, 0x032b00,6, 0x032b20,7, 0x032b40,4, 0x032b54,3, 0x032b64,1, 0x032b6c,1, 0x032b80,6, 0x032ba0,7, 0x032bc0,4, 0x032bd4,3, 0x032be4,1, 0x032bec,1, 0x032c00,6, 0x032c20,7, 0x032c40,4, 0x032c54,3, 0x032c64,1, 0x032c6c,1, 0x032c80,6, 0x032ca0,7, 0x032cc0,4, 0x032cd4,3, 0x032ce4,1, 0x032cec,1, 0x032d00,6, 0x032d20,7, 0x032d40,4, 0x032d54,3, 0x032d64,1, 0x032d6c,1, 0x032d80,6, 0x032da0,7, 0x032dc0,4, 0x032dd4,3, 0x032de4,1, 0x032dec,1, 0x032e00,6, 0x032e20,7, 0x032e40,4, 0x032e54,3, 0x032e64,1, 0x032e6c,1, 0x032e80,6, 0x032ea0,7, 0x032ec0,4, 0x032ed4,3, 0x032ee4,1, 0x032eec,1, 0x032f00,6, 0x032f20,7, 0x032f40,4, 0x032f54,3, 0x032f64,1, 0x032f6c,1, 0x032f80,6, 0x032fa0,7, 0x032fc0,4, 0x032fd4,3, 0x032fe4,1, 0x032fec,1, 0x033000,6, 0x033020,7, 0x033040,4, 0x033054,3, 0x033064,1, 0x03306c,1, 0x033080,6, 0x0330a0,7, 0x0330c0,4, 0x0330d4,3, 0x0330e4,1, 0x0330ec,1, 0x033100,38, 0x033200,6, 0x033220,6, 0x033240,3, 0x033280,13, 0x0332c0,3, 0x0332d0,3, 0x0332e0,2, 0x033300,7, 0x0333f8,2, 0x033500,33, 0x033600,2, 0x033800,6, 0x033820,6, 0x033840,6, 0x033860,6, 0x033880,6, 0x0338a0,6, 0x0338c0,6, 0x0338e0,6, 0x033900,6, 0x033920,6, 0x033940,6, 0x033960,6, 0x033980,6, 0x0339a0,6, 0x0339c0,6, 0x0339e0,6, 0x033a00,3, 0x033c00,6, 0x033c20,6, 0x033c40,6, 0x033c60,6, 0x033c80,6, 0x033ca0,6, 0x033cc0,6, 0x033ce0,6, 0x033d00,6, 0x033d20,6, 0x033d40,6, 0x033d60,6, 0x033d80,6, 0x033da0,6, 0x033dc0,6, 0x033de0,6, 0x033e00,6, 0x033e20,3, 0x034000,22, 0x034060,7, 0x034080,22, 0x0340e0,7, 0x034100,22, 0x034160,7, 0x034180,22, 0x0341e0,7, 0x034200,22, 0x034260,7, 0x034280,22, 0x0342e0,7, 0x034300,22, 0x034360,7, 0x034380,22, 0x0343e0,7, 0x034400,22, 0x034460,7, 0x034480,22, 0x0344e0,7, 0x034500,22, 0x034560,7, 0x034580,22, 0x0345e0,7, 0x034600,22, 0x034660,7, 0x034680,22, 0x0346e0,7, 0x034700,22, 0x034760,7, 0x034780,22, 0x0347e0,7, 0x034800,22, 0x034860,7, 0x034880,22, 0x0348e0,7, 0x034900,22, 0x034960,7, 0x034980,22, 0x0349e0,7, 0x034a00,22, 0x034a60,7, 0x034a80,22, 0x034ae0,7, 0x034b00,22, 0x034b60,7, 0x034b80,22, 0x034be0,7, 0x034c00,22, 0x034c60,7, 0x034c80,22, 0x034ce0,7, 0x034d00,22, 0x034d60,7, 0x034d80,22, 0x034de0,7, 0x034e00,22, 0x034e60,7, 0x034e80,22, 0x034ee0,7, 0x034f00,22, 0x034f60,7, 0x034f80,22, 0x034fe0,7, 0x035000,4, 0x035020,6, 0x035100,4, 0x035120,6, 0x035200,4, 0x035220,6, 0x035300,4, 0x035320,6, 0x035400,4, 0x035420,6, 0x035500,4, 0x035520,6, 0x035600,4, 0x035620,6, 0x035700,4, 0x035720,6, 0x035800,4, 0x035820,6, 0x035900,4, 0x035920,6, 0x035a00,4, 0x035a20,6, 0x035b00,4, 0x035b20,6, 0x035c00,4, 0x035c20,6, 0x035d00,4, 0x035d20,6, 0x035e00,4, 0x035e20,6, 0x035f00,4, 0x035f20,6, 0x036000,4, 0x036020,6, 0x037400,2, 0x037410,2, 0x037448,1, 0x03745c,1, 0x037500,6, 0x037520,6, 0x037540,6, 0x037560,3, 0x037580,3, 0x037590,3, 0x037800,6, 0x037828,6, 0x037850,6, 0x037878,6, 0x0378a0,5, 0x0379ac,1, 0x0379d8,4, 0x037a00,6, 0x037a20,6, 0x037a40,6, 0x037a60,6, 0x037a80,6, 0x037aa0,6, 0x037ac0,6, 0x037ae0,6, 0x037b00,6, 0x037b20,6, 0x037b40,6, 0x037b60,6, 0x037b80,3, 0x037c40,1, 0x037c80,6, 0x037ca0,6, 0x037cc0,3, 0x037d00,3, 0x037d40,16, 0x037ff8,4, 0x03800c,3, 0x03801c,3, 0x03802c,3, 0x03803c,3, 0x03804c,3, 0x03805c,3, 0x03806c,3, 0x03807c,3, 0x03808c,3, 0x03809c,3, 0x0380ac,3, 0x0380bc,3, 0x0380cc,3, 0x0380dc,3, 0x0380ec,3, 0x0380fc,3, 0x03810c,3, 0x03811c,3, 0x03812c,3, 0x03813c,3, 0x03814c,3, 0x03815c,3, 0x03816c,3, 0x03817c,3, 0x03818c,3, 0x03819c,3, 0x0381ac,3, 0x0381bc,3, 0x0381cc,3, 0x0381dc,3, 0x0381ec,3, 0x0381fc,1, 0x0383fc,3, 0x03840c,3, 0x03841c,3, 0x03842c,3, 0x03843c,3, 0x03844c,3, 0x03845c,3, 0x03846c,3, 0x03847c,3, 0x03848c,3, 0x03849c,3, 0x0384ac,3, 0x0384bc,3, 0x0384cc,3, 0x0384dc,3, 0x0384ec,3, 0x0384fc,3, 0x03850c,3, 0x03851c,3, 0x03852c,3, 0x03853c,3, 0x03854c,3, 0x03855c,3, 0x03856c,3, 0x03857c,3, 0x03858c,3, 0x03859c,3, 0x0385ac,3, 0x0385bc,3, 0x0385cc,3, 0x0385dc,3, 0x0385ec,3, 0x0385fc,1, 0x0387f0,1, 0x038800,134, 0x038a20,6, 0x038a40,6, 0x038a60,6, 0x038a80,6, 0x038aa0,6, 0x038ac0,6, 0x038ae0,6, 0x038b00,6, 0x038b20,6, 0x038b40,6, 0x038b60,3, 0x038c00,130, 0x038f08,2, 0x038ff8,8, 0x039020,6, 0x039040,6, 0x039060,6, 0x039080,3, 0x039100,82, 0x03924c,1, 0x039290,74, 0x0397f8,8, 0x039820,2, 0x039900,4, 0x039914,6, 0x039930,4, 0x039944,4, 0x0399ec,11, 0x039a20,6, 0x039a40,3, 0x039a80,7, 0x039aa0,2, 0x039ab0,1, 0x057000,2, 0x05700c,3, 0x057028,2, 0x057038,2, 0x057080,29, 0x0570f8,1, 0x057100,13, 0x057140,13, 0x057500,6, 0x057520,6, 0x057540,3, 0x057580,10, 0x0575c0,15, 0x057600,2, 0x057618,5, 0x057630,1, 0x057800,6, 0x057820,3, 0x057840,2, 0x058000,1, 0x058008,1, 0x058010,14, 0x058100,1, 0x058108,1, 0x058110,14, 0x058200,32, 0x0582e0,2, 0x058300,32, 0x0583e0,2, 0x058800,6, 0x05881c,6, 0x058a00,3, 0x058a10,3, 0x058a40,3, 0x058a50,3, 0x058b00,3, 0x058c04,3, 0x058c14,16, 0x058c84,1, 0x058c8c,1, 0x058e00,31, 0x058e80,1, 0x058e88,3, 0x058f00,31, 0x058f80,1, 0x058f88,3, 0x059000,22, 0x059100,26, 0x059200,10, 0x059244,5, 0x0595f8,3, 0x059608,3, 0x0596f4,45, 0x059800,31, 0x059a00,6, 0x059a20,6, 0x059a40,6, 0x059a60,6, 0x059a80,6, 0x059aa0,6, 0x059ac0,6, 0x059ae0,6, 0x059b00,3, 0x059c00,20, 0x059c74,1, 0x059c80,20, 0x059cf4,1, 0x059d00,20, 0x059d74,1, 0x059d80,20, 0x059df4,1, 0x059e00,17, 0x05a800,3, 0x05a814,50, 0x05a8e0,3, 0x05a8f0,1, 0x05a900,6, 0x05a920,6, 0x05a940,6, 0x05a960,6, 0x05a980,6, 0x05a9a0,6, 0x05a9c0,3, 0x05aa00,12, 0x05aa34,22, 0x05aac0,7, 0x05aae0,3, 0x05aaf0,1, 0x05ab00,6, 0x05ab20,6, 0x05ab40,6, 0x05ab60,6, 0x05ab80,6, 0x05aba0,3, 0x05ac00,13, 0x05ac40,11, 0x05ac80,1, 0x05b000,6, 0x05b020,6, 0x05b040,3, 0x05b060,4, 0x05b0f0,3, 0x05b100,6, 0x05b120,6, 0x05b140,3, 0x05b160,4, 0x05b1f0,3, 0x05b200,8, 0x05b240,13, 0x05b3f8,2, 0x05b804,1, 0x05b820,10, 0x05b880,2, 0x05b904,1, 0x05b90c,1, 0x05b914,1, 0x05b91c,1, 0x05b924,1, 0x05b92c,1, 0x05ba20,9, 0x05bb00,6, 0x05bb20,6, 0x05bb40,6, 0x05bb60,6, 0x05bb80,6, 0x05bba0,3, 0x05bc00,16, 0x05bd00,30, 0x05bd80,1, 0x05bd88,5, 0x05bda0,1, 0x05bda8,2, 0x05bdc0,10, 0x05be00,8, 0x05be40,1, 0x05be48,2, 0x05bf00,24, 0x05bf84,5, 0x05bfa0,5, 0x05bff8,7, 0x05c018,3, 0x05c028,3, 0x05c038,63, 0x05c140,11, 0x05c184,10, 0x05c1c0,22, 0x05c220,1, 0x05c228,2, 0x05c240,1, 0x05c248,7, 0x05c268,7, 0x05c288,3, 0x05c298,2, 0x05c2f4,46, 0x05c3b4,1, 0x05c3bc,1, 0x05c3c4,1, 0x05c3cc,1, 0x05c3d4,1, 0x05c3dc,1, 0x05c3e4,1, 0x05c3ec,15, 0x05c7a0,4, 0x05c7b8,14, 0x05d004,1, 0x05d00c,3, 0x05d020,5, 0x05d038,3, 0x05d048,43, 0x05d118,24, 0x05d200,32, 0x05d284,3, 0x05d294,3, 0x05d2a4,11, 0x05d400,6, 0x05d420,6, 0x05d440,6, 0x05d460,6, 0x05d480,6, 0x05d4a0,6, 0x05d4c0,6, 0x05d4e0,6, 0x05d500,6, 0x05d520,6, 0x05d540,6, 0x05d560,6, 0x05d580,6, 0x05d5a0,6, 0x05d5c0,6, 0x05d5e0,6, 0x05d600,6, 0x05d620,3, 0x05d800,4, 0x05d840,15, 0x05d8a0,13, 0x05d8e0,2, 0x05d8ec,4, 0x05d9c0,1, 0x05d9cc,10, 0x05dab8,10, 0x05db04,1, 0x05db14,3, 0x05db24,1, 0x05db34,3, 0x05db44,1, 0x05db54,3, 0x05db64,1, 0x05db74,3, 0x05db94,1, 0x05dba0,2, 0x05dc00,26, 0x05dc80,14, 0x05dcc0,27, 0x05dd40,11, 0x05dd80,5, 0x05dda0,7, 0x05ddc0,7, 0x05dde0,6, 0x05de00,14, 0x05de40,13, 0x05de80,7, 0x05dea0,6, 0x05e400,6, 0x05e420,6, 0x05e440,3, 0x05e480,4, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c20,11, 0x060f80,6, 0x060fa0,7, 0x060fd8,2, 0x060fe4,1, 0x060ff0,10, 0x061020,16, 0x061084,1, 0x0610c0,16, 0x061204,1, 0x061220,8, 0x061250,3, 0x061260,5, 0x061280,6, 0x0612a0,6, 0x061300,3, 0x061310,2, 0x061320,2, 0x061330,1, 0x061340,3, 0x062000,16, 0x062060,13, 0x062100,2, 0x06210c,2, 0x062118,1, 0x062120,1, 0x062180,10, 0x0621b0,2, 0x0621c0,2, 0x0621d0,5, 0x062200,3, 0x062210,3, 0x062280,4, 0x0622b8,2, 0x063600,6, 0x063620,14, 0x063660,5, 0x063684,1, 0x063698,15, 0x063700,1, 0x063800,6, 0x063820,12, 0x063860,5, 0x063884,1, 0x063898,15, 0x063904,1, 0x06390c,5, 0x063940,1, 0x063950,2, 0x0639fc,1, 0x064000,5, 0x064020,1, 0x064030,1, 0x064040,1, 0x064050,1, 0x064060,1, 0x064070,1, 0x064080,1, 0x064090,1, 0x0640a0,1, 0x0640b0,1, 0x0640c0,1, 0x0640d0,1, 0x0640e0,1, 0x0640f0,1, 0x064100,1, 0x064110,1, 0x064120,1, 0x064130,1, 0x064140,1, 0x064150,1, 0x064160,1, 0x064170,1, 0x064180,1, 0x064190,1, 0x0641a0,1, 0x0641b0,1, 0x0641c0,1, 0x0641d0,1, 0x0641e0,1, 0x0641f0,1, 0x064200,1, 0x064210,1, 0x064220,1, 0x064230,1, 0x064240,1, 0x064250,1, 0x064260,1, 0x064270,1, 0x064280,1, 0x064290,1, 0x0642a0,1, 0x0642b0,1, 0x0642c0,1, 0x0642d0,1, 0x0642e0,1, 0x0642f0,1, 0x064300,1, 0x064310,1, 0x064320,1, 0x064330,1, 0x064340,1, 0x064350,1, 0x064360,1, 0x064370,1, 0x064380,1, 0x064390,1, 0x0643a0,1, 0x0643b0,1, 0x0643c0,1, 0x0643d0,1, 0x0643e0,1, 0x0643f0,1, 0x064400,1, 0x064410,1, 0x064420,1, 0x064430,1, 0x064440,1, 0x064450,1, 0x064460,1, 0x064470,1, 0x064480,1, 0x064490,1, 0x0644a0,1, 0x0644b0,1, 0x0644c0,1, 0x0644d0,1, 0x0644e0,1, 0x0644f0,1, 0x064500,1, 0x064510,1, 0x064520,1, 0x064530,1, 0x064540,1, 0x064550,1, 0x064560,1, 0x064570,1, 0x064580,1, 0x064590,1, 0x0645a0,1, 0x0645b0,1, 0x0645c0,1, 0x0645d0,1, 0x0645e0,1, 0x0645f0,1, 0x064600,1, 0x064610,1, 0x064620,1, 0x064630,1, 0x064640,1, 0x064650,1, 0x064660,1, 0x064670,1, 0x064680,1, 0x064690,1, 0x0646a0,1, 0x0646b0,1, 0x0646c0,1, 0x0646d0,1, 0x0646e0,1, 0x0646f0,1, 0x064700,1, 0x064710,1, 0x064720,1, 0x064730,1, 0x064740,1, 0x064750,1, 0x064760,1, 0x064770,1, 0x064780,1, 0x064790,1, 0x0647a0,1, 0x0647b0,1, 0x0647c0,1, 0x0647d0,1, 0x0647e0,1, 0x0647f0,1, 0x064800,1, 0x064810,1, 0x064820,1, 0x064830,1, 0x064840,1, 0x064850,1, 0x064860,1, 0x064870,1, 0x064880,1, 0x064890,1, 0x0648a0,1, 0x0648b0,1, 0x0648c0,1, 0x0648d0,1, 0x0648e0,1, 0x0648f0,1, 0x064900,1, 0x064910,1, 0x064920,1, 0x064930,1, 0x064940,1, 0x064950,1, 0x064960,1, 0x064970,1, 0x064980,1, 0x064990,1, 0x0649a0,1, 0x0649b0,1, 0x0649c0,1, 0x0649d0,1, 0x0649e0,1, 0x0649f0,1, 0x064a00,1, 0x064a10,1, 0x064a20,1, 0x064a30,1, 0x064a40,1, 0x064a50,1, 0x064a60,1, 0x064a70,1, 0x064a80,1, 0x064a90,1, 0x064aa0,1, 0x064ab0,1, 0x064ac0,1, 0x064ad0,1, 0x064ae0,1, 0x064af0,1, 0x064b00,1, 0x064b10,1, 0x064b20,1, 0x064b30,1, 0x064b40,1, 0x064b50,1, 0x064b60,1, 0x064b70,1, 0x064b80,1, 0x064b90,1, 0x064ba0,1, 0x064bb0,1, 0x064bc0,1, 0x064bd0,1, 0x064be0,1, 0x064bf0,1, 0x064c00,1, 0x064c10,1, 0x064c20,1, 0x064c30,1, 0x064c40,1, 0x064c50,1, 0x064c60,1, 0x064c70,1, 0x064c80,1, 0x064c90,1, 0x064ca0,1, 0x064cb0,1, 0x064cc0,1, 0x064cd0,1, 0x064ce0,1, 0x064cf0,1, 0x064d00,1, 0x064d10,1, 0x064d20,1, 0x064d30,1, 0x064d40,1, 0x064d50,1, 0x064d60,1, 0x064d70,1, 0x064d80,1, 0x064d90,1, 0x064da0,1, 0x064db0,1, 0x064dc0,1, 0x064dd0,1, 0x064de0,1, 0x064df0,1, 0x064e00,1, 0x064e10,1, 0x064e20,1, 0x064e30,1, 0x064e40,1, 0x064e50,1, 0x064e60,1, 0x064e70,1, 0x064e80,1, 0x064e90,1, 0x064ea0,1, 0x064eb0,1, 0x064ec0,1, 0x064ed0,1, 0x064ee0,1, 0x064ef0,1, 0x064f00,1, 0x064f10,1, 0x064f20,1, 0x064f30,1, 0x064f40,1, 0x064f50,1, 0x064f60,1, 0x064f70,1, 0x064f80,1, 0x064f90,1, 0x064fa0,1, 0x064fb0,1, 0x064fc0,1, 0x064fd0,1, 0x064fe0,1, 0x064ff0,1, 0x065000,8, 0x066000,5, 0x066020,1, 0x066030,1, 0x066040,1, 0x066050,1, 0x066060,1, 0x066070,1, 0x066080,1, 0x066090,1, 0x0660a0,1, 0x0660b0,1, 0x0660c0,1, 0x0660d0,1, 0x0660e0,1, 0x0660f0,1, 0x066100,1, 0x066110,1, 0x066120,1, 0x066130,1, 0x066140,1, 0x066150,1, 0x066160,1, 0x066170,1, 0x066180,1, 0x066190,1, 0x0661a0,1, 0x0661b0,1, 0x0661c0,1, 0x0661d0,1, 0x0661e0,1, 0x0661f0,1, 0x066200,1, 0x066210,1, 0x066220,1, 0x066230,1, 0x066240,1, 0x066250,1, 0x066260,1, 0x066270,1, 0x066280,1, 0x066290,1, 0x0662a0,1, 0x0662b0,1, 0x0662c0,1, 0x0662d0,1, 0x0662e0,1, 0x0662f0,1, 0x066300,1, 0x066310,1, 0x066320,1, 0x066330,1, 0x066340,1, 0x066350,1, 0x066360,1, 0x066370,1, 0x066380,1, 0x066390,1, 0x0663a0,1, 0x0663b0,1, 0x0663c0,1, 0x0663d0,1, 0x0663e0,1, 0x0663f0,1, 0x066400,1, 0x066410,1, 0x066420,1, 0x066430,1, 0x066440,1, 0x066450,1, 0x066460,1, 0x066470,1, 0x066480,1, 0x066490,1, 0x0664a0,1, 0x0664b0,1, 0x0664c0,1, 0x0664d0,1, 0x0664e0,1, 0x0664f0,1, 0x066500,1, 0x066510,1, 0x066520,1, 0x066530,1, 0x066540,1, 0x066550,1, 0x066560,1, 0x066570,1, 0x066580,1, 0x066590,1, 0x0665a0,1, 0x0665b0,1, 0x0665c0,1, 0x0665d0,1, 0x0665e0,1, 0x0665f0,1, 0x066600,1, 0x066610,1, 0x066620,1, 0x066630,1, 0x066640,1, 0x066650,1, 0x066660,1, 0x066670,1, 0x066680,1, 0x066690,1, 0x0666a0,1, 0x0666b0,1, 0x0666c0,1, 0x0666d0,1, 0x0666e0,1, 0x0666f0,1, 0x066700,1, 0x066710,1, 0x066720,1, 0x066730,1, 0x066740,1, 0x066750,1, 0x066760,1, 0x066770,1, 0x066780,1, 0x066790,1, 0x0667a0,1, 0x0667b0,1, 0x0667c0,1, 0x0667d0,1, 0x0667e0,1, 0x0667f0,1, 0x066800,1, 0x066810,1, 0x066820,1, 0x066830,1, 0x066840,1, 0x066850,1, 0x066860,1, 0x066870,1, 0x066880,1, 0x066890,1, 0x0668a0,1, 0x0668b0,1, 0x0668c0,1, 0x0668d0,1, 0x0668e0,1, 0x0668f0,1, 0x066900,1, 0x066910,1, 0x066920,1, 0x066930,1, 0x066940,1, 0x066950,1, 0x066960,1, 0x066970,1, 0x066980,1, 0x066990,1, 0x0669a0,1, 0x0669b0,1, 0x0669c0,1, 0x0669d0,1, 0x0669e0,1, 0x0669f0,1, 0x066a00,1, 0x066a10,1, 0x066a20,1, 0x066a30,1, 0x066a40,1, 0x066a50,1, 0x066a60,1, 0x066a70,1, 0x066a80,1, 0x066a90,1, 0x066aa0,1, 0x066ab0,1, 0x066ac0,1, 0x066ad0,1, 0x066ae0,1, 0x066af0,1, 0x066b00,1, 0x066b10,1, 0x066b20,1, 0x066b30,1, 0x066b40,1, 0x066b50,1, 0x066b60,1, 0x066b70,1, 0x066b80,1, 0x066b90,1, 0x066ba0,1, 0x066bb0,1, 0x066bc0,1, 0x066bd0,1, 0x066be0,1, 0x066bf0,1, 0x066c00,1, 0x066c10,1, 0x066c20,1, 0x066c30,1, 0x066c40,1, 0x066c50,1, 0x066c60,1, 0x066c70,1, 0x066c80,1, 0x066c90,1, 0x066ca0,1, 0x066cb0,1, 0x066cc0,1, 0x066cd0,1, 0x066ce0,1, 0x066cf0,1, 0x066d00,1, 0x066d10,1, 0x066d20,1, 0x066d30,1, 0x066d40,1, 0x066d50,1, 0x066d60,1, 0x066d70,1, 0x066d80,1, 0x066d90,1, 0x066da0,1, 0x066db0,1, 0x066dc0,1, 0x066dd0,1, 0x066de0,1, 0x066df0,1, 0x066e00,1, 0x066e10,1, 0x066e20,1, 0x066e30,1, 0x066e40,1, 0x066e50,1, 0x066e60,1, 0x066e70,1, 0x066e80,1, 0x066e90,1, 0x066ea0,1, 0x066eb0,1, 0x066ec0,1, 0x066ed0,1, 0x066ee0,1, 0x066ef0,1, 0x066f00,1, 0x066f10,1, 0x066f20,1, 0x066f30,1, 0x066f40,1, 0x066f50,1, 0x066f60,1, 0x066f70,1, 0x066f80,1, 0x066f90,1, 0x066fa0,1, 0x066fb0,1, 0x066fc0,1, 0x066fd0,1, 0x066fe0,1, 0x066ff0,1, 0x067000,16, 0x067100,8, 0x067124,7, 0x067144,7, 0x067200,3, 0x0677f8,2, 0x068000,6, 0x068020,20, 0x068080,10, 0x0680b0,1, 0x0680c0,3, 0x0680d0,3, 0x068100,2, 0x068110,8, 0x068140,15, 0x068180,3, 0x068190,1, 0x068200,6, 0x068220,20, 0x068280,10, 0x0682b0,1, 0x0682c0,3, 0x0682d0,3, 0x068300,2, 0x068310,8, 0x068340,15, 0x068380,3, 0x068390,1, 0x068400,6, 0x068420,20, 0x068480,10, 0x0684b0,1, 0x0684c0,3, 0x0684d0,3, 0x068500,2, 0x068510,8, 0x068540,15, 0x068580,3, 0x068590,1, 0x068608,2, 0x068620,1, 0x068648,2, 0x068660,1, 0x068688,2, 0x0686a0,1, 0x0686c8,2, 0x0686e0,1, 0x068708,2, 0x068720,1, 0x068748,2, 0x068760,1, 0x068788,2, 0x0687a0,1, 0x0687c8,2, 0x0687e0,1, 0x068804,1, 0x06880c,1, 0x068814,1, 0x06881c,26, 0x068890,2, 0x0688b0,8, 0x068900,1, 0x068a00,13, 0x068a40,2, 0x068a4c,4, 0x068a60,12, 0x069000,19, 0x069050,8, 0x0690a0,11, 0x0690d0,7, 0x069300,13, 0x069340,7, 0x069360,8, 0x069800,65, 0x069b00,2, 0x069b20,2, 0x06a000,12, 0x06a040,10, 0x06a080,12, 0x06a0c0,10, 0x06a100,6, 0x06a120,6, 0x06a140,3, 0x06a184,1, 0x06a190,11, 0x06a1e0,7, 0x06a200,10, 0x06a240,10, 0x06a280,16, 0x06a2d8,9, 0x06a800,6, 0x06a820,6, 0x06a840,6, 0x06a860,6, 0x06a880,6, 0x06a8a0,6, 0x06a8c0,6, 0x06a8e0,3, 0x06aa00,6, 0x06ab00,6, 0x06ab20,6, 0x06ab40,6, 0x06ab60,6, 0x06ab80,6, 0x06aba0,6, 0x06abc0,3, 0x070b00,14, 0x070b40,14, 0x070b84,1, 0x070c00,1, 0x070c10,3, 0x070c3c,3, 0x070c50,8, 0x071000,7, 0x072000,7, 0x073000,114, 0x0731d0,3, 0x0731e0,3, 0x0731f0,3, 0x073200,2, 0x073210,7, 0x073230,1, 0x073240,7, 0x073260,40, 0x073338,15, 0x074000,4, 0x074044,3, 0x074060,4, 0x074080,9, 0x074100,48, 0x075000,1024, 0x07e080,16, 0x07fa00,6, 0x07fa80,3, 0x07fa90,2, 0x07fb00,7, 0x07fb20,17, 0x07fb70,1, 0x07fb80,7, 0x07fc00,3, 0x07fc28,3, 0x07fc50,3, 0x07fc78,3, 0x07fca0,45, 0x07fdac,1, 0x07fdd8,4, 0x07fe00,6, 0x07fe20,6, 0x07fe40,6, 0x07fe60,6, 0x07fe80,6, 0x07fea0,6, 0x07fec0,3, 0x080000,32771, 0x0a0010,2, 0x0a001c,6, 0x0a0038,2, 0x0a0048,2, 0x0a0058,35, 0x0a00f0,1, 0x0a00fc,35, 0x0a01e0,1, 0x0a01e8,5, 0x0a0200,3, 0x0a0210,2, 0x0a021c,6, 0x0a0238,2, 0x0a0248,2, 0x0a0258,35, 0x0a02f0,1, 0x0a02fc,35, 0x0a03e0,1, 0x0a03e8,5, 0x0a0400,3, 0x0a0410,2, 0x0a041c,6, 0x0a0438,2, 0x0a0448,2, 0x0a0458,35, 0x0a04f0,1, 0x0a04fc,35, 0x0a05e0,1, 0x0a05e8,5, 0x0a0600,3, 0x0a0610,2, 0x0a061c,6, 0x0a0638,2, 0x0a0648,2, 0x0a0658,35, 0x0a06f0,1, 0x0a06fc,35, 0x0a07e0,1, 0x0a07e8,5, 0x0a0800,3, 0x0a0810,2, 0x0a081c,6, 0x0a0838,2, 0x0a0848,2, 0x0a0858,35, 0x0a08f0,1, 0x0a08fc,35, 0x0a09e0,1, 0x0a09e8,5, 0x0a0a00,3, 0x0a0a10,2, 0x0a0a1c,6, 0x0a0a38,2, 0x0a0a48,2, 0x0a0a58,35, 0x0a0af0,1, 0x0a0afc,35, 0x0a0be0,1, 0x0a0be8,5, 0x0a0c00,3, 0x0a0c10,2, 0x0a0c1c,6, 0x0a0c38,2, 0x0a0c48,2, 0x0a0c58,35, 0x0a0cf0,1, 0x0a0cfc,35, 0x0a0de0,1, 0x0a0de8,5, 0x0a0e00,3, 0x0a0e10,2, 0x0a0e1c,6, 0x0a0e38,2, 0x0a0e48,2, 0x0a0e58,35, 0x0a0ef0,1, 0x0a0efc,35, 0x0a0fe0,1, 0x0a0fe8,5, 0x0a1000,128, 0x0a1208,2, 0x0a1218,2, 0x0a1404,17, 0x0a1484,1, 0x0a14a0,17, 0x0a1504,1, 0x0a1540,17, 0x0a15e0,8, 0x0a1604,3, 0x0a1700,33, 0x0a1800,6, 0x0a1820,10, 0x0a1870,1, 0x0a1c00,2, 0x0a1c28,2, 0x0a1c50,2, 0x0a1c78,2, 0x0a1ca0,7, 0x0a1dac,1, 0x0a1dd8,4, 0x0a1e00,6, 0x0a1e20,6, 0x0a1e40,6, 0x0a1e60,6, 0x0a1e80,3, 0x0a2010,2, 0x0a201c,1, 0x0a2028,2, 0x0a2040,8, 0x0a2064,5, 0x0a20a0,14, 0x0a20f4,16, 0x0a2138,5, 0x0a2150,3, 0x0a2160,8, 0x0a2184,3, 0x0a21a0,16, 0x0a2200,4, 0x0a2218,50, 0x0a2300,8, 0x0a2330,3, 0x0a2600,1, 0x0a2800,6, 0x0a2820,6, 0x0a2840,6, 0x0a2860,6, 0x0a2880,3, 0x0a2900,6, 0x0a2920,6, 0x0a2940,3, 0x0a2980,6, 0x0a29a0,6, 0x0a29c0,6, 0x0a29e0,3, 0x0a2a00,6, 0x0a2a20,3, 0x0a2a30,1, 0x0a3120,6, 0x0a3140,6, 0x0a3160,6, 0x0a3180,6, 0x0a31a0,6, 0x0a31c0,6, 0x0a31e0,6, 0x0a3200,6, 0x0a3220,6, 0x0a3604,2, 0x0a3700,16, 0x0a3a00,1, 0x0a3b00,8, 0x0a8000,8192, 0x0c1000,1, 0x0c1028,1, 0x0c1050,1, 0x0c1078,1, 0x0c10a0,7, 0x0c11ac,1, 0x0c11d8,4, 0x0c1200,6, 0x0c1220,6, 0x0c1240,3, 0x0c1400,6, 0x0c1420,3, 0x0c1430,4, 0x0c1500,13, 0x0c1540,3, 0x0c2000,14, 0x0c2040,6, 0x0c2060,6, 0x0c2080,6, 0x0c20a0,3, 0x0c2100,9, 0x0c2204,1, 0x0c220c,6, 0x0c2240,13, 0x0c2280,16, 0x0c2400,8, 0x0c2424,15, 0x0c2464,15, 0x0c24a4,15, 0x0c24e4,30, 0x0c2580,10, 0x0c25ac,1, 0x0c25b4,5, 0x0c25cc,1, 0x0c25d4,5, 0x0c25ec,1, 0x0c25f4,13, 0x0c2680,4, 0x0c2694,2, 0x0c26a0,5, 0x0c26c0,5, 0x0c26e0,4, 0x0c2800,19, 0x0c2850,10, 0x0c2880,19, 0x0c28d0,10, 0x0c2900,19, 0x0c2950,10, 0x0c2980,19, 0x0c29d0,10, 0x0c2a00,19, 0x0c2a50,10, 0x0c2a80,19, 0x0c2ad0,10, 0x0c2b00,19, 0x0c2b50,10, 0x0c2b80,19, 0x0c2bd0,10, 0x0c2c00,19, 0x0c2c60,6, 0x0c2c84,1, 0x0c2c94,8, 0x0c2cb8,14, 0x0c3000,29, 0x0c3078,4, 0x0c3090,2, 0x0c30a0,7, 0x0c30c0,11, 0x0c3100,14, 0x0c3140,14, 0x0c3180,61, 0x0c3278,4, 0x0c3290,2, 0x0c32a0,7, 0x0c32c0,11, 0x0c3300,14, 0x0c3340,14, 0x0c3380,61, 0x0c3478,4, 0x0c3490,2, 0x0c34a0,7, 0x0c34c0,11, 0x0c3500,14, 0x0c3540,14, 0x0c3580,61, 0x0c3678,4, 0x0c3690,2, 0x0c36a0,7, 0x0c36c0,11, 0x0c3700,14, 0x0c3740,14, 0x0c3780,69, 0x0c3c00,6, 0x0c3c40,14, 0x0c3c80,9, 0x0c3d00,9, 0x0c3d2c,1, 0x0c3d40,3, 0x0c3d60,1, 0x0c3d80,3, 0x0c3e00,2, 0x0c3e0c,1, 0x0c3e14,5, 0x0c3e2c,1, 0x0c3e34,5, 0x0c3e4c,1, 0x0c3e54,5, 0x0c3e6c,1, 0x0c3e74,5, 0x0c3e8c,1, 0x0c3e94,5, 0x0c3eac,1, 0x0c3eb4,3, 0x0c8000,25, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c8,6, 0x0c8180,6, 0x0ca000,3, 0x0ca010,21, 0x0ca068,14, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca100,14, 0x0ca140,4, 0x0ca160,1, 0x0ca184,1, 0x0ca194,2, 0x0ca1b8,3, 0x0ca1d0,5, 0x0ca1e8,3, 0x0ca1f8,8, 0x0ca220,6, 0x0ca240,3, 0x0ca280,6, 0x0ca2a0,6, 0x0ca2c0,3, 0x0ca300,6, 0x0ca320,6, 0x0ca340,6, 0x0ca360,6, 0x0ca380,6, 0x0ca3a0,6, 0x0ca3c0,6, 0x0ca3e0,6, 0x0ca400,6, 0x0ca6fc,1, 0x0ca800,72, 0x0cb000,4, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,8, 0x0cb1f0,6, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,1, 0x0cb400,5, 0x0cb59c,1, 0x0cb5ac,9, 0x0d0000,4, 0x0d0014,1, 0x0d0020,3, 0x0d0040,8, 0x0d007c,2, 0x0d00a0,6, 0x0d00c0,6, 0x0d00e0,6, 0x0d0100,4, 0x0d0114,1, 0x0d0120,3, 0x0d0130,3, 0x0d0140,8, 0x0d017c,2, 0x0d01a0,6, 0x0d01c0,6, 0x0d01e0,6, 0x0d0200,4, 0x0d0214,1, 0x0d0220,3, 0x0d0230,3, 0x0d0240,8, 0x0d027c,2, 0x0d02a0,6, 0x0d02c0,6, 0x0d02e0,6, 0x0d0300,4, 0x0d0314,1, 0x0d0320,3, 0x0d0330,3, 0x0d0340,8, 0x0d037c,2, 0x0d03a0,6, 0x0d03c0,6, 0x0d03e0,6, 0x0d0400,6, 0x0d0440,6, 0x0d0480,3, 0x0d04c0,3, 0x0d0500,2, 0x0d050c,4, 0x0d0520,2, 0x0d052c,4, 0x0d0540,2, 0x0d0c00,13, 0x0d0c40,12, 0x0d0c80,13, 0x0d0cc0,12, 0x0d0d00,14, 0x0d0d40,6, 0x0d0d80,14, 0x0d0dc0,6, 0x0d0e00,11, 0x0d0e40,6, 0x0d0e60,6, 0x0d0e80,6, 0x0d0ea0,6, 0x0d1000,2, 0x0d1014,4, 0x0d1040,3, 0x0d1050,3, 0x0d1080,43, 0x0d1140,11, 0x0d1180,1, 0x0d119c,15, 0x0d1200,12, 0x0d1300,1, 0x0d1308,6, 0x0d1324,10, 0x0d1380,1, 0x0d1388,6, 0x0d13a4,10, 0x0d1400,7, 0x0d1420,7, 0x0d1500,12, 0x0d1540,12, 0x0d1580,4, 0x0d1800,14, 0x0d183c,9, 0x0d1864,6, 0x0d1880,2, 0x0d1890,4, 0x0d1900,14, 0x0d193c,9, 0x0d1964,6, 0x0d1980,2, 0x0d1990,4, 0x0d1a00,16, 0x0d1a50,4, 0x0d1a80,16, 0x0d1ad0,4, 0x0d1b00,6, 0x0d1b20,6, 0x0d1b40,3, 0x0d1b80,6, 0x0d1ba0,6, 0x0d1bc0,3, 0x0d1c00,6, 0x0d1c20,6, 0x0d1c40,3, 0x0d1c80,6, 0x0d1ca0,6, 0x0d1cc0,3, 0x0d1d10,2, 0x0d1d1c,1, 0x0d1d50,2, 0x0d1d5c,1, 0x0d1d80,1, 0x0d1da0,1, 0x0d1da8,4, 0x0d1dc0,1, 0x0d1de0,1, 0x0d1de8,4, 0x0d1e00,13, 0x0d1e40,6, 0x0d1e60,6, 0x0d1e80,6, 0x0d1ea0,6, 0x0d1ec0,7, 0x0d1ee0,7, 0x0d1f00,12, 0x0d1f34,2, 0x0d1f40,3, 0x0d1f50,8, 0x0d7400,1, 0x0d7408,3, 0x0d7438,1, 0x0d7444,1, 0x0d7450,6, 0x0d7540,6, 0x0d7600,1, 0x0d8000,6, 0x0d8020,3, 0x0d8030,1, 0x0d8038,4, 0x0d8100,6, 0x0d8120,10, 0x0d8150,10, 0x0d8180,10, 0x0d81b0,6, 0x0d81d0,6, 0x0d81f0,2, 0x0d8800,6, 0x0d8820,3, 0x0d8830,4, 0x0d8918,2, 0x0d8924,1, 0x0d8934,3, 0x0d8958,2, 0x0d8964,1, 0x0d8974,3, 0x0d9020,4, 0x0d9040,11, 0x0d9074,2, 0x0d9080,4, 0x0d90b0,22, 0x0d9110,2, 0x0d9120,22, 0x0d9180,2, 0x0d91a0,6, 0x0d91c0,9, 0x0d9200,42, 0x0d92c0,1, 0x0d92c8,13, 0x0d9300,25, 0x0d936c,4, 0x0d9380,2, 0x0d93a0,1, 0x0d93c0,11, 0x0d9404,3, 0x0d9420,11, 0x0d9480,6, 0x0d9500,1, 0x0d9520,6, 0x0d9540,3, 0x0d9550,7, 0x0d9570,18, 0x0d95bc,5, 0x0d9800,480, 0x0da020,4, 0x0da040,11, 0x0da074,2, 0x0da080,4, 0x0da0b0,22, 0x0da110,2, 0x0da120,22, 0x0da180,2, 0x0da1a0,6, 0x0da1c0,9, 0x0da200,42, 0x0da2c0,1, 0x0da2c8,13, 0x0da300,25, 0x0da36c,4, 0x0da380,2, 0x0da3a0,1, 0x0da3c0,11, 0x0da404,3, 0x0da420,11, 0x0da480,6, 0x0da500,1, 0x0da520,6, 0x0da540,3, 0x0da550,7, 0x0da570,18, 0x0da5bc,5, 0x0da800,480, 0x0df800,5, 0x0df818,1, 0x0df854,6, 0x0df880,4, 0x0df8a4,1, 0x0df8ac,2, 0x0df900,5, 0x0df918,1, 0x0df954,6, 0x0df980,4, 0x0df9a4,1, 0x0df9ac,2, 0x0e8000,1, 0x0e8008,2, 0x0e8058,3, 0x0e8120,2, 0x0e8130,2, 0x0e8140,1, 0x0e8184,11, 0x0e81c4,3, 0x0e81dc,3, 0x0e8280,13, 0x0e8400,16, 0x0e8444,7, 0x0e8500,4, 0x0e8804,1, 0x0e8824,7, 0x0e8844,1, 0x0e884c,27, 0x0e88d4,2, 0x0e8c00,1, 0x0e8c08,3, 0x0e8c80,20, 0x0e8d00,3, 0x0e8d20,6, 0x0e8d80,4, 0x0e8da0,6, 0x0e8dbc,7, 0x0e8e00,21, 0x0e8e80,6, 0x0e8ea0,6, 0x0e8ec0,3, 0x0e9000,35, 0x0e9090,2, 0x0e90f0,1, 0x0e90f8,1, 0x0e9100,1, 0x0e9108,5, 0x0e9138,2, 0x0e9144,1, 0x0e9160,13, 0x0e91a0,3, 0x0e9200,2, 0x0e9214,11, 0x0e9244,7, 0x0e92b8,2, 0x0e92c4,7, 0x0e9310,1, 0x0e9340,4, 0x0e9380,7, 0x0e9400,14, 0x0e9440,10, 0x0e947c,1, 0x0e9700,2, 0x0e9720,8, 0x0e9800,3, 0x0e9810,3, 0x0e9820,3, 0x0e9830,3, 0x0e9840,3, 0x0e9850,3, 0x0e9860,3, 0x0e9870,3, 0x0e9880,3, 0x0e9890,3, 0x0e98a0,3, 0x0e98b0,3, 0x0e98c0,3, 0x0e98d0,3, 0x0e98e0,3, 0x0e98f0,3, 0x0e9900,68, 0x0e9c00,36, 0x0e9d00,3, 0x0e9d40,2, 0x0e9d4c,1, 0x0e9d84,1, 0x0e9d90,4, 0x0e9e00,6, 0x0e9e20,6, 0x0e9e40,6, 0x0e9e60,3, 0x0e9e80,6, 0x0e9ea0,3, 0x0e9f70,17, 0x0e9fc0,2, 0x0ea000,1, 0x0ea028,1, 0x0ea050,1, 0x0ea078,1, 0x0ea0a0,3, 0x0ea1ac,1, 0x0ea1d8,4, 0x0ea200,6, 0x0ea220,6, 0x0ea240,3, 0x0ea400,6, 0x0ea420,2, 0x0ea430,2, 0x0ea440,2, 0x0ea450,6, 0x0ea470,2, 0x0ea490,24, 0x0ea520,8, 0x0ea604,1, 0x0ea6f0,72, 0x0f0000,3, 0x0f0014,27, 0x0f00f0,3, 0x0f0100,5, 0x0f0118,1, 0x0f0130,4, 0x0f0180,3, 0x0f0190,2, 0x0f01a8,2, 0x0f01c0,2, 0x0f01d0,10, 0x0f0200,62, 0x0f0404,9, 0x0f0440,12, 0x0f0480,5, 0x0f04b8,18, 0x0f0580,4, 0x0f05a0,1, 0x0f05c0,8, 0x0f0800,17, 0x0f0850,9, 0x0f0880,9, 0x0f08b0,9, 0x0f08e0,9, 0x0f0920,4, 0x0f093c,5, 0x0f095c,5, 0x0f097c,5, 0x0f099c,5, 0x0f09bc,5, 0x0f09dc,1, 0x0f0a90,3, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,6, 0x0f1028,4, 0x0f1040,2, 0x0f104c,2, 0x0f1080,10, 0x0f10c0,1, 0x0f10e0,2, 0x0f10ec,1, 0x0f10f4,3, 0x0f1400,6, 0x0f1420,6, 0x0f1440,6, 0x0f1460,6, 0x0f1480,6, 0x0f14a0,6, 0x0f14c0,6, 0x0f14e0,6, 0x0f1500,6, 0x0f1520,6, 0x0f1540,6, 0x0f1560,6, 0x0f1580,6, 0x0f15a0,6, 0x0f15c0,6, 0x0f15e0,6, 0x0f1600,6, 0x0f1620,3, 0x0f1800,3, 0x0f1880,22, 0x0f2000,2, 0x0f200c,3, 0x0f2020,10, 0x0f2060,6, 0x0f2080,2, 0x0f208c,3, 0x0f20a0,10, 0x0f20e0,6, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f8000,9, 0x0f8100,6, 0x0f8120,6, 0x0f8140,3, 0x0f8180,14, 0x0f81c0,3, 0x0f81d0,2, 0x0f8400,9, 0x0f8500,6, 0x0f8520,6, 0x0f8540,3, 0x0f8580,14, 0x0f85c0,3, 0x0f85d0,2, 0x0f8800,9, 0x0f8900,6, 0x0f8920,6, 0x0f8940,3, 0x0f8980,14, 0x0f89c0,3, 0x0f89d0,2, 0x0f8c00,9, 0x0f8d00,6, 0x0f8d20,6, 0x0f8d40,3, 0x0f8d80,14, 0x0f8dc0,3, 0x0f8dd0,2, 0x0f9000,9, 0x0f9100,6, 0x0f9120,6, 0x0f9140,3, 0x0f9180,14, 0x0f91c0,3, 0x0f91d0,2, 0x0f9400,9, 0x0f9500,6, 0x0f9520,6, 0x0f9540,3, 0x0f9580,14, 0x0f95c0,3, 0x0f95d0,2, 0x0f9800,9, 0x0f9900,6, 0x0f9920,6, 0x0f9940,3, 0x0f9980,14, 0x0f99c0,3, 0x0f99d0,2, 0x0f9c00,9, 0x0f9d00,6, 0x0f9d20,6, 0x0f9d40,3, 0x0f9d80,14, 0x0f9dc0,3, 0x0f9dd0,2, 0x0fa000,9, 0x0fa100,6, 0x0fa120,6, 0x0fa140,3, 0x0fa180,14, 0x0fa1c0,3, 0x0fa1d0,2, 0x0fa400,9, 0x0fa500,6, 0x0fa520,6, 0x0fa540,3, 0x0fa580,14, 0x0fa5c0,3, 0x0fa5d0,2, 0x0fa800,9, 0x0fa900,6, 0x0fa920,6, 0x0fa940,3, 0x0fa980,14, 0x0fa9c0,3, 0x0fa9d0,2, 0x0fac00,9, 0x0fad00,6, 0x0fad20,6, 0x0fad40,3, 0x0fad80,14, 0x0fadc0,3, 0x0fadd0,2, 0x0fb000,9, 0x0fb100,6, 0x0fb120,6, 0x0fb140,3, 0x0fb180,14, 0x0fb1c0,3, 0x0fb1d0,2, 0x0fb400,9, 0x0fb500,6, 0x0fb520,6, 0x0fb540,3, 0x0fb580,14, 0x0fb5c0,3, 0x0fb5d0,2, 0x0fb800,9, 0x0fb900,6, 0x0fb920,6, 0x0fb940,3, 0x0fb980,14, 0x0fb9c0,3, 0x0fb9d0,2, 0x0fbc00,9, 0x0fbd00,6, 0x0fbd20,6, 0x0fbd40,3, 0x0fbd80,14, 0x0fbdc0,3, 0x0fbdd0,2, 0x0fc000,9, 0x0fc080,10, 0x0fc0c0,1, 0x0fc0e0,2, 0x0fc0ec,1, 0x0fc0f4,9, 0x0fc120,6, 0x0fc140,3, 0x0fc180,10, 0x0fc1c0,3, 0x0fc1d0,10, 0x0fc400,9, 0x0fc500,6, 0x0fc520,6, 0x0fc540,3, 0x0fc580,8, 0x0fc5c0,3, 0x0fc5d0,2, 0x0fc800,9, 0x0fc900,6, 0x0fc920,6, 0x0fc940,3, 0x0fc980,8, 0x0fc9c0,3, 0x0fc9d0,2, 0x0fcc00,9, 0x0fcc80,10, 0x0fccc0,1, 0x0fcce0,2, 0x0fccec,1, 0x0fccf4,9, 0x0fcd20,6, 0x0fcd40,3, 0x0fcd80,12, 0x0fcdc0,3, 0x0fcdd0,2, 0x0fd000,9, 0x0fd100,6, 0x0fd120,6, 0x0fd140,3, 0x0fd180,8, 0x0fd1c0,3, 0x0fd1d0,2, 0x0fd400,9, 0x0fd500,6, 0x0fd520,6, 0x0fd540,3, 0x0fd580,8, 0x0fd5c0,3, 0x0fd5d0,2, 0x0fd800,9, 0x0fd880,10, 0x0fd8c0,1, 0x0fd8e0,2, 0x0fd8ec,1, 0x0fd8f4,9, 0x0fd920,6, 0x0fd940,3, 0x0fd980,14, 0x0fd9c0,3, 0x0fd9d0,2, 0x0fdc00,9, 0x0fdc80,10, 0x0fdcc0,1, 0x0fdce0,2, 0x0fdcec,1, 0x0fdcf4,9, 0x0fdd20,6, 0x0fdd40,3, 0x0fdd80,14, 0x0fddc0,3, 0x0fddd0,2, 0x100000,1, 0x100008,1, 0x100010,14, 0x100100,1, 0x100108,1, 0x100110,14, 0x100200,32, 0x1002e0,2, 0x100300,32, 0x1003e0,2, 0x100400,1, 0x100408,1, 0x100410,14, 0x100500,1, 0x100508,1, 0x100510,14, 0x100600,32, 0x1006e0,2, 0x100700,32, 0x1007e0,2, 0x100800,6, 0x10081c,6, 0x100a00,3, 0x100a10,3, 0x100a40,3, 0x100a50,3, 0x100a80,3, 0x100a90,3, 0x100ac0,3, 0x100ad0,3, 0x100b00,3, 0x100c04,3, 0x100c14,16, 0x100c84,1, 0x100c8c,1, 0x100e00,31, 0x100e80,1, 0x100e88,3, 0x100f00,31, 0x100f80,1, 0x100f88,3, 0x101000,22, 0x101100,26, 0x101200,10, 0x101244,5, 0x1015f8,3, 0x101608,4, 0x1016f4,45, 0x101800,31, 0x101900,31, 0x101a00,6, 0x101a20,6, 0x101a40,6, 0x101a60,6, 0x101a80,6, 0x101aa0,6, 0x101ac0,6, 0x101ae0,6, 0x101b00,3, 0x101c00,20, 0x101c74,1, 0x101c80,20, 0x101cf4,1, 0x101d00,20, 0x101d74,1, 0x101d80,20, 0x101df4,1, 0x101e00,17, 0x102000,3, 0x102010,35, 0x1020a0,5, 0x1020b8,1, 0x1020c0,19, 0x102110,35, 0x1021a0,5, 0x1021b8,1, 0x1021c0,16, 0x102204,1, 0x102270,36, 0x102400,4, 0x102418,1, 0x102420,9, 0x102464,1, 0x102474,9, 0x1024a0,6, 0x1024c0,6, 0x1024e0,3, 0x102504,1, 0x10250c,29, 0x102600,3, 0x102800,3, 0x102814,50, 0x1028e0,3, 0x1028f0,1, 0x102900,6, 0x102920,6, 0x102940,6, 0x102960,6, 0x102980,6, 0x1029a0,6, 0x1029c0,3, 0x102a00,12, 0x102a34,22, 0x102ac0,7, 0x102ae0,3, 0x102af0,1, 0x102b00,6, 0x102b20,6, 0x102b40,6, 0x102b60,6, 0x102b80,6, 0x102ba0,3, 0x102c00,13, 0x102c40,11, 0x102c80,1, 0x103000,6, 0x103020,6, 0x103040,3, 0x103060,4, 0x1030f0,3, 0x103100,6, 0x103120,6, 0x103140,3, 0x103160,4, 0x1031f0,3, 0x103200,8, 0x103240,13, 0x1033f8,8, 0x103420,6, 0x103440,3, 0x103460,4, 0x1034f0,3, 0x103500,6, 0x103520,6, 0x103540,3, 0x103560,4, 0x1035f0,3, 0x103600,8, 0x103640,13, 0x1037f8,2, 0x103804,1, 0x103820,10, 0x103880,2, 0x103904,1, 0x10390c,1, 0x103914,1, 0x10391c,1, 0x103924,1, 0x10392c,1, 0x103a20,9, 0x103b00,6, 0x103b20,6, 0x103b40,6, 0x103b60,6, 0x103b80,6, 0x103ba0,3, 0x103c00,16, 0x103d00,30, 0x103d80,1, 0x103d88,5, 0x103da0,1, 0x103da8,2, 0x103dc0,10, 0x103e00,9, 0x103e28,2, 0x103e40,9, 0x103e68,2, 0x103f00,25, 0x103f70,4, 0x103f84,5, 0x103fa0,6, 0x103ff8,7, 0x104018,3, 0x104028,3, 0x104038,63, 0x104140,11, 0x104184,10, 0x1041c0,22, 0x104220,1, 0x104228,2, 0x104240,1, 0x104248,7, 0x104268,7, 0x104288,3, 0x104298,2, 0x1042f4,46, 0x1043b4,1, 0x1043bc,1, 0x1043c4,1, 0x1043cc,1, 0x1043d4,1, 0x1043dc,1, 0x1043e4,1, 0x1043ec,15, 0x104440,10, 0x1047a0,4, 0x1047b8,14, 0x104800,5, 0x104818,3, 0x104828,3, 0x104838,63, 0x104940,11, 0x104984,10, 0x1049c0,22, 0x104a20,1, 0x104a28,2, 0x104a40,1, 0x104a48,7, 0x104a68,7, 0x104a88,3, 0x104a98,2, 0x104af4,46, 0x104bb4,1, 0x104bbc,1, 0x104bc4,1, 0x104bcc,1, 0x104bd4,1, 0x104bdc,1, 0x104be4,1, 0x104bec,15, 0x104c40,10, 0x104fa0,4, 0x104fb8,14, 0x105004,1, 0x10500c,3, 0x105020,5, 0x105038,3, 0x105048,43, 0x105118,24, 0x105200,32, 0x105284,3, 0x105294,3, 0x1052a4,11, 0x105400,6, 0x105420,6, 0x105440,6, 0x105460,6, 0x105480,6, 0x1054a0,6, 0x1054c0,6, 0x1054e0,6, 0x105500,6, 0x105520,6, 0x105540,6, 0x105560,6, 0x105580,6, 0x1055a0,6, 0x1055c0,6, 0x1055e0,6, 0x105600,6, 0x105620,3, 0x105800,4, 0x105840,15, 0x105880,7, 0x1058a0,13, 0x1058e0,7, 0x105ab8,14, 0x105b04,1, 0x105b14,3, 0x105b24,1, 0x105b34,3, 0x105b44,1, 0x105b54,3, 0x105b64,1, 0x105b74,3, 0x105b94,1, 0x105ba0,2, 0x105c00,26, 0x105c80,14, 0x105cc0,27, 0x105d40,11, 0x105d80,5, 0x105da0,7, 0x105dc0,7, 0x105de0,6, 0x105e00,14, 0x105e40,13, 0x105e80,7, 0x105ea0,6, 0x106000,2, 0x106028,2, 0x106050,2, 0x106078,2, 0x1060a0,8, 0x1060c4,14, 0x1061ac,1, 0x1061d8,4, 0x106200,6, 0x106220,6, 0x106240,6, 0x106260,6, 0x106280,3, 0x106400,6, 0x106420,6, 0x106440,3, 0x106480,4, 0x108000,1, 0x108008,1, 0x108010,14, 0x108100,1, 0x108108,1, 0x108110,14, 0x108200,32, 0x1082e0,2, 0x108300,32, 0x1083e0,2, 0x108400,1, 0x108408,1, 0x108410,14, 0x108500,1, 0x108508,1, 0x108510,14, 0x108600,32, 0x1086e0,2, 0x108700,32, 0x1087e0,2, 0x108800,6, 0x10881c,6, 0x108a00,3, 0x108a10,3, 0x108a40,3, 0x108a50,3, 0x108a80,3, 0x108a90,3, 0x108ac0,3, 0x108ad0,3, 0x108b00,3, 0x108c04,3, 0x108c14,16, 0x108c84,1, 0x108c8c,1, 0x108e00,31, 0x108e80,1, 0x108e88,3, 0x108f00,31, 0x108f80,1, 0x108f88,3, 0x109000,22, 0x109100,26, 0x109200,10, 0x109244,5, 0x1095f8,3, 0x109608,4, 0x1096f4,45, 0x109800,31, 0x109900,31, 0x109a00,6, 0x109a20,6, 0x109a40,6, 0x109a60,6, 0x109a80,6, 0x109aa0,6, 0x109ac0,6, 0x109ae0,6, 0x109b00,3, 0x109c00,20, 0x109c74,1, 0x109c80,20, 0x109cf4,1, 0x109d00,20, 0x109d74,1, 0x109d80,20, 0x109df4,1, 0x109e00,17, 0x10a000,3, 0x10a010,35, 0x10a0a0,5, 0x10a0b8,1, 0x10a0c0,19, 0x10a110,35, 0x10a1a0,5, 0x10a1b8,1, 0x10a1c0,16, 0x10a204,1, 0x10a270,36, 0x10a400,4, 0x10a418,1, 0x10a420,9, 0x10a464,1, 0x10a474,9, 0x10a4a0,6, 0x10a4c0,6, 0x10a4e0,3, 0x10a504,1, 0x10a50c,29, 0x10a600,3, 0x10a800,3, 0x10a814,50, 0x10a8e0,3, 0x10a8f0,1, 0x10a900,6, 0x10a920,6, 0x10a940,6, 0x10a960,6, 0x10a980,6, 0x10a9a0,6, 0x10a9c0,3, 0x10aa00,12, 0x10aa34,22, 0x10aac0,7, 0x10aae0,3, 0x10aaf0,1, 0x10ab00,6, 0x10ab20,6, 0x10ab40,6, 0x10ab60,6, 0x10ab80,6, 0x10aba0,3, 0x10ac00,13, 0x10ac40,11, 0x10ac80,1, 0x10b000,6, 0x10b020,6, 0x10b040,3, 0x10b060,4, 0x10b0f0,3, 0x10b100,6, 0x10b120,6, 0x10b140,3, 0x10b160,4, 0x10b1f0,3, 0x10b200,8, 0x10b240,13, 0x10b3f8,8, 0x10b420,6, 0x10b440,3, 0x10b460,4, 0x10b4f0,3, 0x10b500,6, 0x10b520,6, 0x10b540,3, 0x10b560,4, 0x10b5f0,3, 0x10b600,8, 0x10b640,13, 0x10b7f8,2, 0x10b804,1, 0x10b820,10, 0x10b880,2, 0x10b904,1, 0x10b90c,1, 0x10b914,1, 0x10b91c,1, 0x10b924,1, 0x10b92c,1, 0x10ba20,9, 0x10bb00,6, 0x10bb20,6, 0x10bb40,6, 0x10bb60,6, 0x10bb80,6, 0x10bba0,3, 0x10bc00,16, 0x10bd00,30, 0x10bd80,1, 0x10bd88,5, 0x10bda0,1, 0x10bda8,2, 0x10bdc0,10, 0x10be00,9, 0x10be28,2, 0x10be40,9, 0x10be68,2, 0x10bf00,25, 0x10bf70,4, 0x10bf84,5, 0x10bfa0,6, 0x10bff8,7, 0x10c018,3, 0x10c028,3, 0x10c038,63, 0x10c140,11, 0x10c184,10, 0x10c1c0,22, 0x10c220,1, 0x10c228,2, 0x10c240,1, 0x10c248,7, 0x10c268,7, 0x10c288,3, 0x10c298,2, 0x10c2f4,46, 0x10c3b4,1, 0x10c3bc,1, 0x10c3c4,1, 0x10c3cc,1, 0x10c3d4,1, 0x10c3dc,1, 0x10c3e4,1, 0x10c3ec,15, 0x10c440,10, 0x10c7a0,4, 0x10c7b8,14, 0x10c800,5, 0x10c818,3, 0x10c828,3, 0x10c838,63, 0x10c940,11, 0x10c984,10, 0x10c9c0,22, 0x10ca20,1, 0x10ca28,2, 0x10ca40,1, 0x10ca48,7, 0x10ca68,7, 0x10ca88,3, 0x10ca98,2, 0x10caf4,46, 0x10cbb4,1, 0x10cbbc,1, 0x10cbc4,1, 0x10cbcc,1, 0x10cbd4,1, 0x10cbdc,1, 0x10cbe4,1, 0x10cbec,15, 0x10cc40,10, 0x10cfa0,4, 0x10cfb8,14, 0x10d004,1, 0x10d00c,3, 0x10d020,5, 0x10d038,3, 0x10d048,43, 0x10d118,24, 0x10d200,32, 0x10d284,3, 0x10d294,3, 0x10d2a4,11, 0x10d400,6, 0x10d420,6, 0x10d440,6, 0x10d460,6, 0x10d480,6, 0x10d4a0,6, 0x10d4c0,6, 0x10d4e0,6, 0x10d500,6, 0x10d520,6, 0x10d540,6, 0x10d560,6, 0x10d580,6, 0x10d5a0,6, 0x10d5c0,6, 0x10d5e0,6, 0x10d600,6, 0x10d620,3, 0x10d800,4, 0x10d840,15, 0x10d880,7, 0x10d8a0,13, 0x10d8e0,7, 0x10dab8,14, 0x10db04,1, 0x10db14,3, 0x10db24,1, 0x10db34,3, 0x10db44,1, 0x10db54,3, 0x10db64,1, 0x10db74,3, 0x10db94,1, 0x10dba0,2, 0x10dc00,26, 0x10dc80,14, 0x10dcc0,27, 0x10dd40,11, 0x10dd80,5, 0x10dda0,7, 0x10ddc0,7, 0x10dde0,6, 0x10de00,14, 0x10de40,13, 0x10de80,7, 0x10dea0,6, 0x10e000,2, 0x10e028,2, 0x10e050,2, 0x10e078,2, 0x10e0a0,8, 0x10e0c4,14, 0x10e1ac,1, 0x10e1d8,4, 0x10e200,6, 0x10e220,6, 0x10e240,6, 0x10e260,6, 0x10e280,3, 0x10e400,6, 0x10e420,6, 0x10e440,3, 0x10e480,4, 0x110000,1, 0x110008,1, 0x110010,14, 0x110100,1, 0x110108,1, 0x110110,14, 0x110200,32, 0x1102e0,2, 0x110300,32, 0x1103e0,2, 0x110400,1, 0x110408,1, 0x110410,14, 0x110500,1, 0x110508,1, 0x110510,14, 0x110600,32, 0x1106e0,2, 0x110700,32, 0x1107e0,2, 0x110800,6, 0x11081c,6, 0x110a00,3, 0x110a10,3, 0x110a40,3, 0x110a50,3, 0x110a80,3, 0x110a90,3, 0x110ac0,3, 0x110ad0,3, 0x110b00,3, 0x110c04,3, 0x110c14,16, 0x110c84,1, 0x110c8c,1, 0x110e00,31, 0x110e80,1, 0x110e88,3, 0x110f00,31, 0x110f80,1, 0x110f88,3, 0x111000,22, 0x111100,26, 0x111200,10, 0x111244,5, 0x1115f8,3, 0x111608,4, 0x1116f4,45, 0x111800,31, 0x111900,31, 0x111a00,6, 0x111a20,6, 0x111a40,6, 0x111a60,6, 0x111a80,6, 0x111aa0,6, 0x111ac0,6, 0x111ae0,6, 0x111b00,3, 0x111c00,20, 0x111c74,1, 0x111c80,20, 0x111cf4,1, 0x111d00,20, 0x111d74,1, 0x111d80,20, 0x111df4,1, 0x111e00,17, 0x112000,3, 0x112010,35, 0x1120a0,5, 0x1120b8,1, 0x1120c0,19, 0x112110,35, 0x1121a0,5, 0x1121b8,1, 0x1121c0,16, 0x112204,1, 0x112270,36, 0x112400,4, 0x112418,1, 0x112420,9, 0x112464,1, 0x112474,9, 0x1124a0,6, 0x1124c0,6, 0x1124e0,3, 0x112504,1, 0x11250c,29, 0x112600,3, 0x112800,3, 0x112814,50, 0x1128e0,3, 0x1128f0,1, 0x112900,6, 0x112920,6, 0x112940,6, 0x112960,6, 0x112980,6, 0x1129a0,6, 0x1129c0,3, 0x112a00,12, 0x112a34,22, 0x112ac0,7, 0x112ae0,3, 0x112af0,1, 0x112b00,6, 0x112b20,6, 0x112b40,6, 0x112b60,6, 0x112b80,6, 0x112ba0,3, 0x112c00,13, 0x112c40,11, 0x112c80,1, 0x113000,6, 0x113020,6, 0x113040,3, 0x113060,4, 0x1130f0,3, 0x113100,6, 0x113120,6, 0x113140,3, 0x113160,4, 0x1131f0,3, 0x113200,8, 0x113240,13, 0x1133f8,8, 0x113420,6, 0x113440,3, 0x113460,4, 0x1134f0,3, 0x113500,6, 0x113520,6, 0x113540,3, 0x113560,4, 0x1135f0,3, 0x113600,8, 0x113640,13, 0x1137f8,2, 0x113804,1, 0x113820,10, 0x113880,2, 0x113904,1, 0x11390c,1, 0x113914,1, 0x11391c,1, 0x113924,1, 0x11392c,1, 0x113a20,9, 0x113b00,6, 0x113b20,6, 0x113b40,6, 0x113b60,6, 0x113b80,6, 0x113ba0,3, 0x113c00,16, 0x113d00,30, 0x113d80,1, 0x113d88,5, 0x113da0,1, 0x113da8,2, 0x113dc0,10, 0x113e00,9, 0x113e28,2, 0x113e40,9, 0x113e68,2, 0x113f00,25, 0x113f70,4, 0x113f84,5, 0x113fa0,6, 0x113ff8,7, 0x114018,3, 0x114028,3, 0x114038,63, 0x114140,11, 0x114184,10, 0x1141c0,22, 0x114220,1, 0x114228,2, 0x114240,1, 0x114248,7, 0x114268,7, 0x114288,3, 0x114298,2, 0x1142f4,46, 0x1143b4,1, 0x1143bc,1, 0x1143c4,1, 0x1143cc,1, 0x1143d4,1, 0x1143dc,1, 0x1143e4,1, 0x1143ec,15, 0x114440,10, 0x1147a0,4, 0x1147b8,14, 0x114800,5, 0x114818,3, 0x114828,3, 0x114838,63, 0x114940,11, 0x114984,10, 0x1149c0,22, 0x114a20,1, 0x114a28,2, 0x114a40,1, 0x114a48,7, 0x114a68,7, 0x114a88,3, 0x114a98,2, 0x114af4,46, 0x114bb4,1, 0x114bbc,1, 0x114bc4,1, 0x114bcc,1, 0x114bd4,1, 0x114bdc,1, 0x114be4,1, 0x114bec,15, 0x114c40,10, 0x114fa0,4, 0x114fb8,14, 0x115004,1, 0x11500c,3, 0x115020,5, 0x115038,3, 0x115048,43, 0x115118,24, 0x115200,32, 0x115284,3, 0x115294,3, 0x1152a4,11, 0x115400,6, 0x115420,6, 0x115440,6, 0x115460,6, 0x115480,6, 0x1154a0,6, 0x1154c0,6, 0x1154e0,6, 0x115500,6, 0x115520,6, 0x115540,6, 0x115560,6, 0x115580,6, 0x1155a0,6, 0x1155c0,6, 0x1155e0,6, 0x115600,6, 0x115620,3, 0x115800,4, 0x115840,15, 0x115880,7, 0x1158a0,13, 0x1158e0,7, 0x115ab8,14, 0x115b04,1, 0x115b14,3, 0x115b24,1, 0x115b34,3, 0x115b44,1, 0x115b54,3, 0x115b64,1, 0x115b74,3, 0x115b94,1, 0x115ba0,2, 0x115c00,26, 0x115c80,14, 0x115cc0,27, 0x115d40,11, 0x115d80,5, 0x115da0,7, 0x115dc0,7, 0x115de0,6, 0x115e00,14, 0x115e40,13, 0x115e80,7, 0x115ea0,6, 0x116000,2, 0x116028,2, 0x116050,2, 0x116078,2, 0x1160a0,8, 0x1160c4,14, 0x1161ac,1, 0x1161d8,4, 0x116200,6, 0x116220,6, 0x116240,6, 0x116260,6, 0x116280,3, 0x116400,6, 0x116420,6, 0x116440,3, 0x116480,4, 0x118000,1, 0x118008,1, 0x118010,14, 0x118100,1, 0x118108,1, 0x118110,14, 0x118200,32, 0x1182e0,2, 0x118300,32, 0x1183e0,2, 0x118400,1, 0x118408,1, 0x118410,14, 0x118500,1, 0x118508,1, 0x118510,14, 0x118600,32, 0x1186e0,2, 0x118700,32, 0x1187e0,2, 0x118800,6, 0x11881c,6, 0x118a00,3, 0x118a10,3, 0x118a40,3, 0x118a50,3, 0x118a80,3, 0x118a90,3, 0x118ac0,3, 0x118ad0,3, 0x118b00,3, 0x118c04,3, 0x118c14,16, 0x118c84,1, 0x118c8c,1, 0x118e00,31, 0x118e80,1, 0x118e88,3, 0x118f00,31, 0x118f80,1, 0x118f88,3, 0x119000,22, 0x119100,26, 0x119200,10, 0x119244,5, 0x1195f8,3, 0x119608,4, 0x1196f4,45, 0x119800,31, 0x119900,31, 0x119a00,6, 0x119a20,6, 0x119a40,6, 0x119a60,6, 0x119a80,6, 0x119aa0,6, 0x119ac0,6, 0x119ae0,6, 0x119b00,3, 0x119c00,20, 0x119c74,1, 0x119c80,20, 0x119cf4,1, 0x119d00,20, 0x119d74,1, 0x119d80,20, 0x119df4,1, 0x119e00,17, 0x11a000,3, 0x11a010,35, 0x11a0a0,5, 0x11a0b8,1, 0x11a0c0,19, 0x11a110,35, 0x11a1a0,5, 0x11a1b8,1, 0x11a1c0,16, 0x11a204,1, 0x11a270,36, 0x11a400,4, 0x11a418,1, 0x11a420,9, 0x11a464,1, 0x11a474,9, 0x11a4a0,6, 0x11a4c0,6, 0x11a4e0,3, 0x11a504,1, 0x11a50c,29, 0x11a600,3, 0x11a800,3, 0x11a814,50, 0x11a8e0,3, 0x11a8f0,1, 0x11a900,6, 0x11a920,6, 0x11a940,6, 0x11a960,6, 0x11a980,6, 0x11a9a0,6, 0x11a9c0,3, 0x11aa00,12, 0x11aa34,22, 0x11aac0,7, 0x11aae0,3, 0x11aaf0,1, 0x11ab00,6, 0x11ab20,6, 0x11ab40,6, 0x11ab60,6, 0x11ab80,6, 0x11aba0,3, 0x11ac00,13, 0x11ac40,11, 0x11ac80,1, 0x11b000,6, 0x11b020,6, 0x11b040,3, 0x11b060,4, 0x11b0f0,3, 0x11b100,6, 0x11b120,6, 0x11b140,3, 0x11b160,4, 0x11b1f0,3, 0x11b200,8, 0x11b240,13, 0x11b3f8,8, 0x11b420,6, 0x11b440,3, 0x11b460,4, 0x11b4f0,3, 0x11b500,6, 0x11b520,6, 0x11b540,3, 0x11b560,4, 0x11b5f0,3, 0x11b600,8, 0x11b640,13, 0x11b7f8,2, 0x11b804,1, 0x11b820,10, 0x11b880,2, 0x11b904,1, 0x11b90c,1, 0x11b914,1, 0x11b91c,1, 0x11b924,1, 0x11b92c,1, 0x11ba20,9, 0x11bb00,6, 0x11bb20,6, 0x11bb40,6, 0x11bb60,6, 0x11bb80,6, 0x11bba0,3, 0x11bc00,16, 0x11bd00,30, 0x11bd80,1, 0x11bd88,5, 0x11bda0,1, 0x11bda8,2, 0x11bdc0,10, 0x11be00,9, 0x11be28,2, 0x11be40,9, 0x11be68,2, 0x11bf00,25, 0x11bf70,4, 0x11bf84,5, 0x11bfa0,6, 0x11bff8,7, 0x11c018,3, 0x11c028,3, 0x11c038,63, 0x11c140,11, 0x11c184,10, 0x11c1c0,22, 0x11c220,1, 0x11c228,2, 0x11c240,1, 0x11c248,7, 0x11c268,7, 0x11c288,3, 0x11c298,2, 0x11c2f4,46, 0x11c3b4,1, 0x11c3bc,1, 0x11c3c4,1, 0x11c3cc,1, 0x11c3d4,1, 0x11c3dc,1, 0x11c3e4,1, 0x11c3ec,15, 0x11c440,10, 0x11c7a0,4, 0x11c7b8,14, 0x11c800,5, 0x11c818,3, 0x11c828,3, 0x11c838,63, 0x11c940,11, 0x11c984,10, 0x11c9c0,22, 0x11ca20,1, 0x11ca28,2, 0x11ca40,1, 0x11ca48,7, 0x11ca68,7, 0x11ca88,3, 0x11ca98,2, 0x11caf4,46, 0x11cbb4,1, 0x11cbbc,1, 0x11cbc4,1, 0x11cbcc,1, 0x11cbd4,1, 0x11cbdc,1, 0x11cbe4,1, 0x11cbec,15, 0x11cc40,10, 0x11cfa0,4, 0x11cfb8,14, 0x11d004,1, 0x11d00c,3, 0x11d020,5, 0x11d038,3, 0x11d048,43, 0x11d118,24, 0x11d200,32, 0x11d284,3, 0x11d294,3, 0x11d2a4,11, 0x11d400,6, 0x11d420,6, 0x11d440,6, 0x11d460,6, 0x11d480,6, 0x11d4a0,6, 0x11d4c0,6, 0x11d4e0,6, 0x11d500,6, 0x11d520,6, 0x11d540,6, 0x11d560,6, 0x11d580,6, 0x11d5a0,6, 0x11d5c0,6, 0x11d5e0,6, 0x11d600,6, 0x11d620,3, 0x11d800,4, 0x11d840,15, 0x11d880,7, 0x11d8a0,13, 0x11d8e0,7, 0x11dab8,14, 0x11db04,1, 0x11db14,3, 0x11db24,1, 0x11db34,3, 0x11db44,1, 0x11db54,3, 0x11db64,1, 0x11db74,3, 0x11db94,1, 0x11dba0,2, 0x11dc00,26, 0x11dc80,14, 0x11dcc0,27, 0x11dd40,11, 0x11dd80,5, 0x11dda0,7, 0x11ddc0,7, 0x11dde0,6, 0x11de00,14, 0x11de40,13, 0x11de80,7, 0x11dea0,6, 0x11e000,2, 0x11e028,2, 0x11e050,2, 0x11e078,2, 0x11e0a0,8, 0x11e0c4,14, 0x11e1ac,1, 0x11e1d8,4, 0x11e200,6, 0x11e220,6, 0x11e240,6, 0x11e260,6, 0x11e280,3, 0x11e400,6, 0x11e420,6, 0x11e440,3, 0x11e480,4, 0x120000,1, 0x120008,1, 0x120010,14, 0x120100,1, 0x120108,1, 0x120110,14, 0x120200,32, 0x1202e0,2, 0x120300,32, 0x1203e0,2, 0x120400,1, 0x120408,1, 0x120410,14, 0x120500,1, 0x120508,1, 0x120510,14, 0x120600,32, 0x1206e0,2, 0x120700,32, 0x1207e0,2, 0x120800,6, 0x12081c,6, 0x120a00,3, 0x120a10,3, 0x120a40,3, 0x120a50,3, 0x120a80,3, 0x120a90,3, 0x120ac0,3, 0x120ad0,3, 0x120b00,3, 0x120c04,3, 0x120c14,16, 0x120c84,1, 0x120c8c,1, 0x120e00,31, 0x120e80,1, 0x120e88,3, 0x120f00,31, 0x120f80,1, 0x120f88,3, 0x121000,22, 0x121100,26, 0x121200,10, 0x121244,5, 0x1215f8,3, 0x121608,4, 0x1216f4,45, 0x121800,31, 0x121900,31, 0x121a00,6, 0x121a20,6, 0x121a40,6, 0x121a60,6, 0x121a80,6, 0x121aa0,6, 0x121ac0,6, 0x121ae0,6, 0x121b00,3, 0x121c00,20, 0x121c74,1, 0x121c80,20, 0x121cf4,1, 0x121d00,20, 0x121d74,1, 0x121d80,20, 0x121df4,1, 0x121e00,17, 0x122000,3, 0x122010,35, 0x1220a0,5, 0x1220b8,1, 0x1220c0,19, 0x122110,35, 0x1221a0,5, 0x1221b8,1, 0x1221c0,16, 0x122204,1, 0x122270,36, 0x122400,4, 0x122418,1, 0x122420,9, 0x122464,1, 0x122474,9, 0x1224a0,6, 0x1224c0,6, 0x1224e0,3, 0x122504,1, 0x12250c,29, 0x122600,3, 0x122800,3, 0x122814,50, 0x1228e0,3, 0x1228f0,1, 0x122900,6, 0x122920,6, 0x122940,6, 0x122960,6, 0x122980,6, 0x1229a0,6, 0x1229c0,3, 0x122a00,12, 0x122a34,22, 0x122ac0,7, 0x122ae0,3, 0x122af0,1, 0x122b00,6, 0x122b20,6, 0x122b40,6, 0x122b60,6, 0x122b80,6, 0x122ba0,3, 0x122c00,13, 0x122c40,11, 0x122c80,1, 0x123000,6, 0x123020,6, 0x123040,3, 0x123060,4, 0x1230f0,3, 0x123100,6, 0x123120,6, 0x123140,3, 0x123160,4, 0x1231f0,3, 0x123200,8, 0x123240,13, 0x1233f8,8, 0x123420,6, 0x123440,3, 0x123460,4, 0x1234f0,3, 0x123500,6, 0x123520,6, 0x123540,3, 0x123560,4, 0x1235f0,3, 0x123600,8, 0x123640,13, 0x1237f8,2, 0x123804,1, 0x123820,10, 0x123880,2, 0x123904,1, 0x12390c,1, 0x123914,1, 0x12391c,1, 0x123924,1, 0x12392c,1, 0x123a20,9, 0x123b00,6, 0x123b20,6, 0x123b40,6, 0x123b60,6, 0x123b80,6, 0x123ba0,3, 0x123c00,16, 0x123d00,30, 0x123d80,1, 0x123d88,5, 0x123da0,1, 0x123da8,2, 0x123dc0,10, 0x123e00,9, 0x123e28,2, 0x123e40,9, 0x123e68,2, 0x123f00,25, 0x123f70,4, 0x123f84,5, 0x123fa0,6, 0x123ff8,7, 0x124018,3, 0x124028,3, 0x124038,63, 0x124140,11, 0x124184,10, 0x1241c0,22, 0x124220,1, 0x124228,2, 0x124240,1, 0x124248,7, 0x124268,7, 0x124288,3, 0x124298,2, 0x1242f4,46, 0x1243b4,1, 0x1243bc,1, 0x1243c4,1, 0x1243cc,1, 0x1243d4,1, 0x1243dc,1, 0x1243e4,1, 0x1243ec,15, 0x124440,10, 0x1247a0,4, 0x1247b8,14, 0x124800,5, 0x124818,3, 0x124828,3, 0x124838,63, 0x124940,11, 0x124984,10, 0x1249c0,22, 0x124a20,1, 0x124a28,2, 0x124a40,1, 0x124a48,7, 0x124a68,7, 0x124a88,3, 0x124a98,2, 0x124af4,46, 0x124bb4,1, 0x124bbc,1, 0x124bc4,1, 0x124bcc,1, 0x124bd4,1, 0x124bdc,1, 0x124be4,1, 0x124bec,15, 0x124c40,10, 0x124fa0,4, 0x124fb8,14, 0x125004,1, 0x12500c,3, 0x125020,5, 0x125038,3, 0x125048,43, 0x125118,24, 0x125200,32, 0x125284,3, 0x125294,3, 0x1252a4,11, 0x125400,6, 0x125420,6, 0x125440,6, 0x125460,6, 0x125480,6, 0x1254a0,6, 0x1254c0,6, 0x1254e0,6, 0x125500,6, 0x125520,6, 0x125540,6, 0x125560,6, 0x125580,6, 0x1255a0,6, 0x1255c0,6, 0x1255e0,6, 0x125600,6, 0x125620,3, 0x125800,4, 0x125840,15, 0x125880,7, 0x1258a0,13, 0x1258e0,7, 0x125ab8,14, 0x125b04,1, 0x125b14,3, 0x125b24,1, 0x125b34,3, 0x125b44,1, 0x125b54,3, 0x125b64,1, 0x125b74,3, 0x125b94,1, 0x125ba0,2, 0x125c00,26, 0x125c80,14, 0x125cc0,27, 0x125d40,11, 0x125d80,5, 0x125da0,7, 0x125dc0,7, 0x125de0,6, 0x125e00,14, 0x125e40,13, 0x125e80,7, 0x125ea0,6, 0x126000,2, 0x126028,2, 0x126050,2, 0x126078,2, 0x1260a0,8, 0x1260c4,14, 0x1261ac,1, 0x1261d8,4, 0x126200,6, 0x126220,6, 0x126240,6, 0x126260,6, 0x126280,3, 0x126400,6, 0x126420,6, 0x126440,3, 0x126480,4, 0x128000,1, 0x128008,1, 0x128010,14, 0x128100,1, 0x128108,1, 0x128110,14, 0x128200,32, 0x1282e0,2, 0x128300,32, 0x1283e0,2, 0x128400,1, 0x128408,1, 0x128410,14, 0x128500,1, 0x128508,1, 0x128510,14, 0x128600,32, 0x1286e0,2, 0x128700,32, 0x1287e0,2, 0x128800,6, 0x12881c,6, 0x128a00,3, 0x128a10,3, 0x128a40,3, 0x128a50,3, 0x128a80,3, 0x128a90,3, 0x128ac0,3, 0x128ad0,3, 0x128b00,3, 0x128c04,3, 0x128c14,16, 0x128c84,1, 0x128c8c,1, 0x128e00,31, 0x128e80,1, 0x128e88,3, 0x128f00,31, 0x128f80,1, 0x128f88,3, 0x129000,22, 0x129100,26, 0x129200,10, 0x129244,5, 0x1295f8,3, 0x129608,4, 0x1296f4,45, 0x129800,31, 0x129900,31, 0x129a00,6, 0x129a20,6, 0x129a40,6, 0x129a60,6, 0x129a80,6, 0x129aa0,6, 0x129ac0,6, 0x129ae0,6, 0x129b00,3, 0x129c00,20, 0x129c74,1, 0x129c80,20, 0x129cf4,1, 0x129d00,20, 0x129d74,1, 0x129d80,20, 0x129df4,1, 0x129e00,17, 0x12a000,3, 0x12a010,35, 0x12a0a0,5, 0x12a0b8,1, 0x12a0c0,19, 0x12a110,35, 0x12a1a0,5, 0x12a1b8,1, 0x12a1c0,16, 0x12a204,1, 0x12a270,36, 0x12a400,4, 0x12a418,1, 0x12a420,9, 0x12a464,1, 0x12a474,9, 0x12a4a0,6, 0x12a4c0,6, 0x12a4e0,3, 0x12a504,1, 0x12a50c,29, 0x12a600,3, 0x12a800,3, 0x12a814,50, 0x12a8e0,3, 0x12a8f0,1, 0x12a900,6, 0x12a920,6, 0x12a940,6, 0x12a960,6, 0x12a980,6, 0x12a9a0,6, 0x12a9c0,3, 0x12aa00,12, 0x12aa34,22, 0x12aac0,7, 0x12aae0,3, 0x12aaf0,1, 0x12ab00,6, 0x12ab20,6, 0x12ab40,6, 0x12ab60,6, 0x12ab80,6, 0x12aba0,3, 0x12ac00,13, 0x12ac40,11, 0x12ac80,1, 0x12b000,6, 0x12b020,6, 0x12b040,3, 0x12b060,4, 0x12b0f0,3, 0x12b100,6, 0x12b120,6, 0x12b140,3, 0x12b160,4, 0x12b1f0,3, 0x12b200,8, 0x12b240,13, 0x12b3f8,8, 0x12b420,6, 0x12b440,3, 0x12b460,4, 0x12b4f0,3, 0x12b500,6, 0x12b520,6, 0x12b540,3, 0x12b560,4, 0x12b5f0,3, 0x12b600,8, 0x12b640,13, 0x12b7f8,2, 0x12b804,1, 0x12b820,10, 0x12b880,2, 0x12b904,1, 0x12b90c,1, 0x12b914,1, 0x12b91c,1, 0x12b924,1, 0x12b92c,1, 0x12ba20,9, 0x12bb00,6, 0x12bb20,6, 0x12bb40,6, 0x12bb60,6, 0x12bb80,6, 0x12bba0,3, 0x12bc00,16, 0x12bd00,30, 0x12bd80,1, 0x12bd88,5, 0x12bda0,1, 0x12bda8,2, 0x12bdc0,10, 0x12be00,9, 0x12be28,2, 0x12be40,9, 0x12be68,2, 0x12bf00,25, 0x12bf70,4, 0x12bf84,5, 0x12bfa0,6, 0x12bff8,7, 0x12c018,3, 0x12c028,3, 0x12c038,63, 0x12c140,11, 0x12c184,10, 0x12c1c0,22, 0x12c220,1, 0x12c228,2, 0x12c240,1, 0x12c248,7, 0x12c268,7, 0x12c288,3, 0x12c298,2, 0x12c2f4,46, 0x12c3b4,1, 0x12c3bc,1, 0x12c3c4,1, 0x12c3cc,1, 0x12c3d4,1, 0x12c3dc,1, 0x12c3e4,1, 0x12c3ec,15, 0x12c440,10, 0x12c7a0,4, 0x12c7b8,14, 0x12c800,5, 0x12c818,3, 0x12c828,3, 0x12c838,63, 0x12c940,11, 0x12c984,10, 0x12c9c0,22, 0x12ca20,1, 0x12ca28,2, 0x12ca40,1, 0x12ca48,7, 0x12ca68,7, 0x12ca88,3, 0x12ca98,2, 0x12caf4,46, 0x12cbb4,1, 0x12cbbc,1, 0x12cbc4,1, 0x12cbcc,1, 0x12cbd4,1, 0x12cbdc,1, 0x12cbe4,1, 0x12cbec,15, 0x12cc40,10, 0x12cfa0,4, 0x12cfb8,14, 0x12d004,1, 0x12d00c,3, 0x12d020,5, 0x12d038,3, 0x12d048,43, 0x12d118,24, 0x12d200,32, 0x12d284,3, 0x12d294,3, 0x12d2a4,11, 0x12d400,6, 0x12d420,6, 0x12d440,6, 0x12d460,6, 0x12d480,6, 0x12d4a0,6, 0x12d4c0,6, 0x12d4e0,6, 0x12d500,6, 0x12d520,6, 0x12d540,6, 0x12d560,6, 0x12d580,6, 0x12d5a0,6, 0x12d5c0,6, 0x12d5e0,6, 0x12d600,6, 0x12d620,3, 0x12d800,4, 0x12d840,15, 0x12d880,7, 0x12d8a0,13, 0x12d8e0,7, 0x12dab8,14, 0x12db04,1, 0x12db14,3, 0x12db24,1, 0x12db34,3, 0x12db44,1, 0x12db54,3, 0x12db64,1, 0x12db74,3, 0x12db94,1, 0x12dba0,2, 0x12dc00,26, 0x12dc80,14, 0x12dcc0,27, 0x12dd40,11, 0x12dd80,5, 0x12dda0,7, 0x12ddc0,7, 0x12dde0,6, 0x12de00,14, 0x12de40,13, 0x12de80,7, 0x12dea0,6, 0x12e000,2, 0x12e028,2, 0x12e050,2, 0x12e078,2, 0x12e0a0,8, 0x12e0c4,14, 0x12e1ac,1, 0x12e1d8,4, 0x12e200,6, 0x12e220,6, 0x12e240,6, 0x12e260,6, 0x12e280,3, 0x12e400,6, 0x12e420,6, 0x12e440,3, 0x12e480,4, 0x130000,1, 0x130008,1, 0x130010,14, 0x130100,1, 0x130108,1, 0x130110,14, 0x130200,32, 0x1302e0,2, 0x130300,32, 0x1303e0,2, 0x130400,1, 0x130408,1, 0x130410,14, 0x130500,1, 0x130508,1, 0x130510,14, 0x130600,32, 0x1306e0,2, 0x130700,32, 0x1307e0,2, 0x130800,6, 0x13081c,6, 0x130a00,3, 0x130a10,3, 0x130a40,3, 0x130a50,3, 0x130a80,3, 0x130a90,3, 0x130ac0,3, 0x130ad0,3, 0x130b00,3, 0x130c04,3, 0x130c14,16, 0x130c84,1, 0x130c8c,1, 0x130e00,31, 0x130e80,1, 0x130e88,3, 0x130f00,31, 0x130f80,1, 0x130f88,3, 0x131000,22, 0x131100,26, 0x131200,10, 0x131244,5, 0x1315f8,3, 0x131608,4, 0x1316f4,45, 0x131800,31, 0x131900,31, 0x131a00,6, 0x131a20,6, 0x131a40,6, 0x131a60,6, 0x131a80,6, 0x131aa0,6, 0x131ac0,6, 0x131ae0,6, 0x131b00,3, 0x131c00,20, 0x131c74,1, 0x131c80,20, 0x131cf4,1, 0x131d00,20, 0x131d74,1, 0x131d80,20, 0x131df4,1, 0x131e00,17, 0x132000,3, 0x132010,35, 0x1320a0,5, 0x1320b8,1, 0x1320c0,19, 0x132110,35, 0x1321a0,5, 0x1321b8,1, 0x1321c0,16, 0x132204,1, 0x132270,36, 0x132400,4, 0x132418,1, 0x132420,9, 0x132464,1, 0x132474,9, 0x1324a0,6, 0x1324c0,6, 0x1324e0,3, 0x132504,1, 0x13250c,29, 0x132600,3, 0x132800,3, 0x132814,50, 0x1328e0,3, 0x1328f0,1, 0x132900,6, 0x132920,6, 0x132940,6, 0x132960,6, 0x132980,6, 0x1329a0,6, 0x1329c0,3, 0x132a00,12, 0x132a34,22, 0x132ac0,7, 0x132ae0,3, 0x132af0,1, 0x132b00,6, 0x132b20,6, 0x132b40,6, 0x132b60,6, 0x132b80,6, 0x132ba0,3, 0x132c00,13, 0x132c40,11, 0x132c80,1, 0x133000,6, 0x133020,6, 0x133040,3, 0x133060,4, 0x1330f0,3, 0x133100,6, 0x133120,6, 0x133140,3, 0x133160,4, 0x1331f0,3, 0x133200,8, 0x133240,13, 0x1333f8,8, 0x133420,6, 0x133440,3, 0x133460,4, 0x1334f0,3, 0x133500,6, 0x133520,6, 0x133540,3, 0x133560,4, 0x1335f0,3, 0x133600,8, 0x133640,13, 0x1337f8,2, 0x133804,1, 0x133820,10, 0x133880,2, 0x133904,1, 0x13390c,1, 0x133914,1, 0x13391c,1, 0x133924,1, 0x13392c,1, 0x133a20,9, 0x133b00,6, 0x133b20,6, 0x133b40,6, 0x133b60,6, 0x133b80,6, 0x133ba0,3, 0x133c00,16, 0x133d00,30, 0x133d80,1, 0x133d88,5, 0x133da0,1, 0x133da8,2, 0x133dc0,10, 0x133e00,9, 0x133e28,2, 0x133e40,9, 0x133e68,2, 0x133f00,25, 0x133f70,4, 0x133f84,5, 0x133fa0,6, 0x133ff8,7, 0x134018,3, 0x134028,3, 0x134038,63, 0x134140,11, 0x134184,10, 0x1341c0,22, 0x134220,1, 0x134228,2, 0x134240,1, 0x134248,7, 0x134268,7, 0x134288,3, 0x134298,2, 0x1342f4,46, 0x1343b4,1, 0x1343bc,1, 0x1343c4,1, 0x1343cc,1, 0x1343d4,1, 0x1343dc,1, 0x1343e4,1, 0x1343ec,15, 0x134440,10, 0x1347a0,4, 0x1347b8,14, 0x134800,5, 0x134818,3, 0x134828,3, 0x134838,63, 0x134940,11, 0x134984,10, 0x1349c0,22, 0x134a20,1, 0x134a28,2, 0x134a40,1, 0x134a48,7, 0x134a68,7, 0x134a88,3, 0x134a98,2, 0x134af4,46, 0x134bb4,1, 0x134bbc,1, 0x134bc4,1, 0x134bcc,1, 0x134bd4,1, 0x134bdc,1, 0x134be4,1, 0x134bec,15, 0x134c40,10, 0x134fa0,4, 0x134fb8,14, 0x135004,1, 0x13500c,3, 0x135020,5, 0x135038,3, 0x135048,43, 0x135118,24, 0x135200,32, 0x135284,3, 0x135294,3, 0x1352a4,11, 0x135400,6, 0x135420,6, 0x135440,6, 0x135460,6, 0x135480,6, 0x1354a0,6, 0x1354c0,6, 0x1354e0,6, 0x135500,6, 0x135520,6, 0x135540,6, 0x135560,6, 0x135580,6, 0x1355a0,6, 0x1355c0,6, 0x1355e0,6, 0x135600,6, 0x135620,3, 0x135800,4, 0x135840,15, 0x135880,7, 0x1358a0,13, 0x1358e0,7, 0x135ab8,14, 0x135b04,1, 0x135b14,3, 0x135b24,1, 0x135b34,3, 0x135b44,1, 0x135b54,3, 0x135b64,1, 0x135b74,3, 0x135b94,1, 0x135ba0,2, 0x135c00,26, 0x135c80,14, 0x135cc0,27, 0x135d40,11, 0x135d80,5, 0x135da0,7, 0x135dc0,7, 0x135de0,6, 0x135e00,14, 0x135e40,13, 0x135e80,7, 0x135ea0,6, 0x136000,2, 0x136028,2, 0x136050,2, 0x136078,2, 0x1360a0,8, 0x1360c4,14, 0x1361ac,1, 0x1361d8,4, 0x136200,6, 0x136220,6, 0x136240,6, 0x136260,6, 0x136280,3, 0x136400,6, 0x136420,6, 0x136440,3, 0x136480,4, 0x138000,1, 0x138008,1, 0x138010,14, 0x138100,1, 0x138108,1, 0x138110,14, 0x138200,32, 0x1382e0,2, 0x138300,32, 0x1383e0,2, 0x138400,1, 0x138408,1, 0x138410,14, 0x138500,1, 0x138508,1, 0x138510,14, 0x138600,32, 0x1386e0,2, 0x138700,32, 0x1387e0,2, 0x138800,6, 0x13881c,6, 0x138a00,3, 0x138a10,3, 0x138a40,3, 0x138a50,3, 0x138a80,3, 0x138a90,3, 0x138ac0,3, 0x138ad0,3, 0x138b00,3, 0x138c04,3, 0x138c14,16, 0x138c84,1, 0x138c8c,1, 0x138e00,31, 0x138e80,1, 0x138e88,3, 0x138f00,31, 0x138f80,1, 0x138f88,3, 0x139000,22, 0x139100,26, 0x139200,10, 0x139244,5, 0x1395f8,3, 0x139608,4, 0x1396f4,45, 0x139800,31, 0x139900,31, 0x139a00,6, 0x139a20,6, 0x139a40,6, 0x139a60,6, 0x139a80,6, 0x139aa0,6, 0x139ac0,6, 0x139ae0,6, 0x139b00,3, 0x139c00,20, 0x139c74,1, 0x139c80,20, 0x139cf4,1, 0x139d00,20, 0x139d74,1, 0x139d80,20, 0x139df4,1, 0x139e00,17, 0x13a000,3, 0x13a010,35, 0x13a0a0,5, 0x13a0b8,1, 0x13a0c0,19, 0x13a110,35, 0x13a1a0,5, 0x13a1b8,1, 0x13a1c0,16, 0x13a204,1, 0x13a270,36, 0x13a400,4, 0x13a418,1, 0x13a420,9, 0x13a464,1, 0x13a474,9, 0x13a4a0,6, 0x13a4c0,6, 0x13a4e0,3, 0x13a504,1, 0x13a50c,29, 0x13a600,3, 0x13a800,3, 0x13a814,50, 0x13a8e0,3, 0x13a8f0,1, 0x13a900,6, 0x13a920,6, 0x13a940,6, 0x13a960,6, 0x13a980,6, 0x13a9a0,6, 0x13a9c0,3, 0x13aa00,12, 0x13aa34,22, 0x13aac0,7, 0x13aae0,3, 0x13aaf0,1, 0x13ab00,6, 0x13ab20,6, 0x13ab40,6, 0x13ab60,6, 0x13ab80,6, 0x13aba0,3, 0x13ac00,13, 0x13ac40,11, 0x13ac80,1, 0x13b000,6, 0x13b020,6, 0x13b040,3, 0x13b060,4, 0x13b0f0,3, 0x13b100,6, 0x13b120,6, 0x13b140,3, 0x13b160,4, 0x13b1f0,3, 0x13b200,8, 0x13b240,13, 0x13b3f8,8, 0x13b420,6, 0x13b440,3, 0x13b460,4, 0x13b4f0,3, 0x13b500,6, 0x13b520,6, 0x13b540,3, 0x13b560,4, 0x13b5f0,3, 0x13b600,8, 0x13b640,13, 0x13b7f8,2, 0x13b804,1, 0x13b820,10, 0x13b880,2, 0x13b904,1, 0x13b90c,1, 0x13b914,1, 0x13b91c,1, 0x13b924,1, 0x13b92c,1, 0x13ba20,9, 0x13bb00,6, 0x13bb20,6, 0x13bb40,6, 0x13bb60,6, 0x13bb80,6, 0x13bba0,3, 0x13bc00,16, 0x13bd00,30, 0x13bd80,1, 0x13bd88,5, 0x13bda0,1, 0x13bda8,2, 0x13bdc0,10, 0x13be00,9, 0x13be28,2, 0x13be40,9, 0x13be68,2, 0x13bf00,25, 0x13bf70,4, 0x13bf84,5, 0x13bfa0,6, 0x13bff8,7, 0x13c018,3, 0x13c028,3, 0x13c038,63, 0x13c140,11, 0x13c184,10, 0x13c1c0,22, 0x13c220,1, 0x13c228,2, 0x13c240,1, 0x13c248,7, 0x13c268,7, 0x13c288,3, 0x13c298,2, 0x13c2f4,46, 0x13c3b4,1, 0x13c3bc,1, 0x13c3c4,1, 0x13c3cc,1, 0x13c3d4,1, 0x13c3dc,1, 0x13c3e4,1, 0x13c3ec,15, 0x13c440,10, 0x13c7a0,4, 0x13c7b8,14, 0x13c800,5, 0x13c818,3, 0x13c828,3, 0x13c838,63, 0x13c940,11, 0x13c984,10, 0x13c9c0,22, 0x13ca20,1, 0x13ca28,2, 0x13ca40,1, 0x13ca48,7, 0x13ca68,7, 0x13ca88,3, 0x13ca98,2, 0x13caf4,46, 0x13cbb4,1, 0x13cbbc,1, 0x13cbc4,1, 0x13cbcc,1, 0x13cbd4,1, 0x13cbdc,1, 0x13cbe4,1, 0x13cbec,15, 0x13cc40,10, 0x13cfa0,4, 0x13cfb8,14, 0x13d004,1, 0x13d00c,3, 0x13d020,5, 0x13d038,3, 0x13d048,43, 0x13d118,24, 0x13d200,32, 0x13d284,3, 0x13d294,3, 0x13d2a4,11, 0x13d400,6, 0x13d420,6, 0x13d440,6, 0x13d460,6, 0x13d480,6, 0x13d4a0,6, 0x13d4c0,6, 0x13d4e0,6, 0x13d500,6, 0x13d520,6, 0x13d540,6, 0x13d560,6, 0x13d580,6, 0x13d5a0,6, 0x13d5c0,6, 0x13d5e0,6, 0x13d600,6, 0x13d620,3, 0x13d800,4, 0x13d840,15, 0x13d880,7, 0x13d8a0,13, 0x13d8e0,7, 0x13dab8,14, 0x13db04,1, 0x13db14,3, 0x13db24,1, 0x13db34,3, 0x13db44,1, 0x13db54,3, 0x13db64,1, 0x13db74,3, 0x13db94,1, 0x13dba0,2, 0x13dc00,26, 0x13dc80,14, 0x13dcc0,27, 0x13dd40,11, 0x13dd80,5, 0x13dda0,7, 0x13ddc0,7, 0x13dde0,6, 0x13de00,14, 0x13de40,13, 0x13de80,7, 0x13dea0,6, 0x13e000,2, 0x13e028,2, 0x13e050,2, 0x13e078,2, 0x13e0a0,8, 0x13e0c4,14, 0x13e1ac,1, 0x13e1d8,4, 0x13e200,6, 0x13e220,6, 0x13e240,6, 0x13e260,6, 0x13e280,3, 0x13e400,6, 0x13e420,6, 0x13e440,3, 0x13e480,4, 0x140000,1, 0x140008,1, 0x140010,14, 0x140100,1, 0x140108,1, 0x140110,14, 0x140200,32, 0x1402e0,2, 0x140300,32, 0x1403e0,2, 0x140400,1, 0x140408,1, 0x140410,14, 0x140500,1, 0x140508,1, 0x140510,14, 0x140600,32, 0x1406e0,2, 0x140700,32, 0x1407e0,2, 0x140800,6, 0x14081c,6, 0x140a00,3, 0x140a10,3, 0x140a40,3, 0x140a50,3, 0x140a80,3, 0x140a90,3, 0x140ac0,3, 0x140ad0,3, 0x140b00,3, 0x140c04,3, 0x140c14,16, 0x140c84,1, 0x140c8c,1, 0x140e00,31, 0x140e80,1, 0x140e88,3, 0x140f00,31, 0x140f80,1, 0x140f88,3, 0x141000,22, 0x141100,26, 0x141200,10, 0x141244,5, 0x1415f8,3, 0x141608,4, 0x1416f4,45, 0x141800,31, 0x141900,31, 0x141a00,6, 0x141a20,6, 0x141a40,6, 0x141a60,6, 0x141a80,6, 0x141aa0,6, 0x141ac0,6, 0x141ae0,6, 0x141b00,3, 0x141c00,20, 0x141c74,1, 0x141c80,20, 0x141cf4,1, 0x141d00,20, 0x141d74,1, 0x141d80,20, 0x141df4,1, 0x141e00,17, 0x142000,3, 0x142010,35, 0x1420a0,5, 0x1420b8,1, 0x1420c0,19, 0x142110,35, 0x1421a0,5, 0x1421b8,1, 0x1421c0,16, 0x142204,1, 0x142270,36, 0x142400,4, 0x142418,1, 0x142420,9, 0x142464,1, 0x142474,9, 0x1424a0,6, 0x1424c0,6, 0x1424e0,3, 0x142504,1, 0x14250c,29, 0x142600,3, 0x142800,3, 0x142814,50, 0x1428e0,3, 0x1428f0,1, 0x142900,6, 0x142920,6, 0x142940,6, 0x142960,6, 0x142980,6, 0x1429a0,6, 0x1429c0,3, 0x142a00,12, 0x142a34,22, 0x142ac0,7, 0x142ae0,3, 0x142af0,1, 0x142b00,6, 0x142b20,6, 0x142b40,6, 0x142b60,6, 0x142b80,6, 0x142ba0,3, 0x142c00,13, 0x142c40,11, 0x142c80,1, 0x143000,6, 0x143020,6, 0x143040,3, 0x143060,4, 0x1430f0,3, 0x143100,6, 0x143120,6, 0x143140,3, 0x143160,4, 0x1431f0,3, 0x143200,8, 0x143240,13, 0x1433f8,8, 0x143420,6, 0x143440,3, 0x143460,4, 0x1434f0,3, 0x143500,6, 0x143520,6, 0x143540,3, 0x143560,4, 0x1435f0,3, 0x143600,8, 0x143640,13, 0x1437f8,2, 0x143804,1, 0x143820,10, 0x143880,2, 0x143904,1, 0x14390c,1, 0x143914,1, 0x14391c,1, 0x143924,1, 0x14392c,1, 0x143a20,9, 0x143b00,6, 0x143b20,6, 0x143b40,6, 0x143b60,6, 0x143b80,6, 0x143ba0,3, 0x143c00,16, 0x143d00,30, 0x143d80,1, 0x143d88,5, 0x143da0,1, 0x143da8,2, 0x143dc0,10, 0x143e00,9, 0x143e28,2, 0x143e40,9, 0x143e68,2, 0x143f00,25, 0x143f70,4, 0x143f84,5, 0x143fa0,6, 0x143ff8,7, 0x144018,3, 0x144028,3, 0x144038,63, 0x144140,11, 0x144184,10, 0x1441c0,22, 0x144220,1, 0x144228,2, 0x144240,1, 0x144248,7, 0x144268,7, 0x144288,3, 0x144298,2, 0x1442f4,46, 0x1443b4,1, 0x1443bc,1, 0x1443c4,1, 0x1443cc,1, 0x1443d4,1, 0x1443dc,1, 0x1443e4,1, 0x1443ec,15, 0x144440,10, 0x1447a0,4, 0x1447b8,14, 0x144800,5, 0x144818,3, 0x144828,3, 0x144838,63, 0x144940,11, 0x144984,10, 0x1449c0,22, 0x144a20,1, 0x144a28,2, 0x144a40,1, 0x144a48,7, 0x144a68,7, 0x144a88,3, 0x144a98,2, 0x144af4,46, 0x144bb4,1, 0x144bbc,1, 0x144bc4,1, 0x144bcc,1, 0x144bd4,1, 0x144bdc,1, 0x144be4,1, 0x144bec,15, 0x144c40,10, 0x144fa0,4, 0x144fb8,14, 0x145004,1, 0x14500c,3, 0x145020,5, 0x145038,3, 0x145048,43, 0x145118,24, 0x145200,32, 0x145284,3, 0x145294,3, 0x1452a4,11, 0x145400,6, 0x145420,6, 0x145440,6, 0x145460,6, 0x145480,6, 0x1454a0,6, 0x1454c0,6, 0x1454e0,6, 0x145500,6, 0x145520,6, 0x145540,6, 0x145560,6, 0x145580,6, 0x1455a0,6, 0x1455c0,6, 0x1455e0,6, 0x145600,6, 0x145620,3, 0x145800,4, 0x145840,15, 0x145880,7, 0x1458a0,13, 0x1458e0,7, 0x145ab8,14, 0x145b04,1, 0x145b14,3, 0x145b24,1, 0x145b34,3, 0x145b44,1, 0x145b54,3, 0x145b64,1, 0x145b74,3, 0x145b94,1, 0x145ba0,2, 0x145c00,26, 0x145c80,14, 0x145cc0,27, 0x145d40,11, 0x145d80,5, 0x145da0,7, 0x145dc0,7, 0x145de0,6, 0x145e00,14, 0x145e40,13, 0x145e80,7, 0x145ea0,6, 0x146000,2, 0x146028,2, 0x146050,2, 0x146078,2, 0x1460a0,8, 0x1460c4,14, 0x1461ac,1, 0x1461d8,4, 0x146200,6, 0x146220,6, 0x146240,6, 0x146260,6, 0x146280,3, 0x146400,6, 0x146420,6, 0x146440,3, 0x146480,4, 0x148000,1, 0x148008,1, 0x148010,14, 0x148100,1, 0x148108,1, 0x148110,14, 0x148200,32, 0x1482e0,2, 0x148300,32, 0x1483e0,2, 0x148400,1, 0x148408,1, 0x148410,14, 0x148500,1, 0x148508,1, 0x148510,14, 0x148600,32, 0x1486e0,2, 0x148700,32, 0x1487e0,2, 0x148800,6, 0x14881c,6, 0x148a00,3, 0x148a10,3, 0x148a40,3, 0x148a50,3, 0x148a80,3, 0x148a90,3, 0x148ac0,3, 0x148ad0,3, 0x148b00,3, 0x148c04,3, 0x148c14,16, 0x148c84,1, 0x148c8c,1, 0x148e00,31, 0x148e80,1, 0x148e88,3, 0x148f00,31, 0x148f80,1, 0x148f88,3, 0x149000,22, 0x149100,26, 0x149200,10, 0x149244,5, 0x1495f8,3, 0x149608,4, 0x1496f4,45, 0x149800,31, 0x149900,31, 0x149a00,6, 0x149a20,6, 0x149a40,6, 0x149a60,6, 0x149a80,6, 0x149aa0,6, 0x149ac0,6, 0x149ae0,6, 0x149b00,3, 0x149c00,20, 0x149c74,1, 0x149c80,20, 0x149cf4,1, 0x149d00,20, 0x149d74,1, 0x149d80,20, 0x149df4,1, 0x149e00,17, 0x14a000,3, 0x14a010,35, 0x14a0a0,5, 0x14a0b8,1, 0x14a0c0,19, 0x14a110,35, 0x14a1a0,5, 0x14a1b8,1, 0x14a1c0,16, 0x14a204,1, 0x14a270,36, 0x14a400,4, 0x14a418,1, 0x14a420,9, 0x14a464,1, 0x14a474,9, 0x14a4a0,6, 0x14a4c0,6, 0x14a4e0,3, 0x14a504,1, 0x14a50c,29, 0x14a600,3, 0x14a800,3, 0x14a814,50, 0x14a8e0,3, 0x14a8f0,1, 0x14a900,6, 0x14a920,6, 0x14a940,6, 0x14a960,6, 0x14a980,6, 0x14a9a0,6, 0x14a9c0,3, 0x14aa00,12, 0x14aa34,22, 0x14aac0,7, 0x14aae0,3, 0x14aaf0,1, 0x14ab00,6, 0x14ab20,6, 0x14ab40,6, 0x14ab60,6, 0x14ab80,6, 0x14aba0,3, 0x14ac00,13, 0x14ac40,11, 0x14ac80,1, 0x14b000,6, 0x14b020,6, 0x14b040,3, 0x14b060,4, 0x14b0f0,3, 0x14b100,6, 0x14b120,6, 0x14b140,3, 0x14b160,4, 0x14b1f0,3, 0x14b200,8, 0x14b240,13, 0x14b3f8,8, 0x14b420,6, 0x14b440,3, 0x14b460,4, 0x14b4f0,3, 0x14b500,6, 0x14b520,6, 0x14b540,3, 0x14b560,4, 0x14b5f0,3, 0x14b600,8, 0x14b640,13, 0x14b7f8,2, 0x14b804,1, 0x14b820,10, 0x14b880,2, 0x14b904,1, 0x14b90c,1, 0x14b914,1, 0x14b91c,1, 0x14b924,1, 0x14b92c,1, 0x14ba20,9, 0x14bb00,6, 0x14bb20,6, 0x14bb40,6, 0x14bb60,6, 0x14bb80,6, 0x14bba0,3, 0x14bc00,16, 0x14bd00,30, 0x14bd80,1, 0x14bd88,5, 0x14bda0,1, 0x14bda8,2, 0x14bdc0,10, 0x14be00,9, 0x14be28,2, 0x14be40,9, 0x14be68,2, 0x14bf00,25, 0x14bf70,4, 0x14bf84,5, 0x14bfa0,6, 0x14bff8,7, 0x14c018,3, 0x14c028,3, 0x14c038,63, 0x14c140,11, 0x14c184,10, 0x14c1c0,22, 0x14c220,1, 0x14c228,2, 0x14c240,1, 0x14c248,7, 0x14c268,7, 0x14c288,3, 0x14c298,2, 0x14c2f4,46, 0x14c3b4,1, 0x14c3bc,1, 0x14c3c4,1, 0x14c3cc,1, 0x14c3d4,1, 0x14c3dc,1, 0x14c3e4,1, 0x14c3ec,15, 0x14c440,10, 0x14c7a0,4, 0x14c7b8,14, 0x14c800,5, 0x14c818,3, 0x14c828,3, 0x14c838,63, 0x14c940,11, 0x14c984,10, 0x14c9c0,22, 0x14ca20,1, 0x14ca28,2, 0x14ca40,1, 0x14ca48,7, 0x14ca68,7, 0x14ca88,3, 0x14ca98,2, 0x14caf4,46, 0x14cbb4,1, 0x14cbbc,1, 0x14cbc4,1, 0x14cbcc,1, 0x14cbd4,1, 0x14cbdc,1, 0x14cbe4,1, 0x14cbec,15, 0x14cc40,10, 0x14cfa0,4, 0x14cfb8,14, 0x14d004,1, 0x14d00c,3, 0x14d020,5, 0x14d038,3, 0x14d048,43, 0x14d118,24, 0x14d200,32, 0x14d284,3, 0x14d294,3, 0x14d2a4,11, 0x14d400,6, 0x14d420,6, 0x14d440,6, 0x14d460,6, 0x14d480,6, 0x14d4a0,6, 0x14d4c0,6, 0x14d4e0,6, 0x14d500,6, 0x14d520,6, 0x14d540,6, 0x14d560,6, 0x14d580,6, 0x14d5a0,6, 0x14d5c0,6, 0x14d5e0,6, 0x14d600,6, 0x14d620,3, 0x14d800,4, 0x14d840,15, 0x14d880,7, 0x14d8a0,13, 0x14d8e0,7, 0x14dab8,14, 0x14db04,1, 0x14db14,3, 0x14db24,1, 0x14db34,3, 0x14db44,1, 0x14db54,3, 0x14db64,1, 0x14db74,3, 0x14db94,1, 0x14dba0,2, 0x14dc00,26, 0x14dc80,14, 0x14dcc0,27, 0x14dd40,11, 0x14dd80,5, 0x14dda0,7, 0x14ddc0,7, 0x14dde0,6, 0x14de00,14, 0x14de40,13, 0x14de80,7, 0x14dea0,6, 0x14e000,2, 0x14e028,2, 0x14e050,2, 0x14e078,2, 0x14e0a0,8, 0x14e0c4,14, 0x14e1ac,1, 0x14e1d8,4, 0x14e200,6, 0x14e220,6, 0x14e240,6, 0x14e260,6, 0x14e280,3, 0x14e400,6, 0x14e420,6, 0x14e440,3, 0x14e480,4, 0x150000,1, 0x150008,1, 0x150010,14, 0x150100,1, 0x150108,1, 0x150110,14, 0x150200,32, 0x1502e0,2, 0x150300,32, 0x1503e0,2, 0x150400,1, 0x150408,1, 0x150410,14, 0x150500,1, 0x150508,1, 0x150510,14, 0x150600,32, 0x1506e0,2, 0x150700,32, 0x1507e0,2, 0x150800,6, 0x15081c,6, 0x150a00,3, 0x150a10,3, 0x150a40,3, 0x150a50,3, 0x150a80,3, 0x150a90,3, 0x150ac0,3, 0x150ad0,3, 0x150b00,3, 0x150c04,3, 0x150c14,16, 0x150c84,1, 0x150c8c,1, 0x150e00,31, 0x150e80,1, 0x150e88,3, 0x150f00,31, 0x150f80,1, 0x150f88,3, 0x151000,22, 0x151100,26, 0x151200,10, 0x151244,5, 0x1515f8,3, 0x151608,4, 0x1516f4,45, 0x151800,31, 0x151900,31, 0x151a00,6, 0x151a20,6, 0x151a40,6, 0x151a60,6, 0x151a80,6, 0x151aa0,6, 0x151ac0,6, 0x151ae0,6, 0x151b00,3, 0x151c00,20, 0x151c74,1, 0x151c80,20, 0x151cf4,1, 0x151d00,20, 0x151d74,1, 0x151d80,20, 0x151df4,1, 0x151e00,17, 0x152000,3, 0x152010,35, 0x1520a0,5, 0x1520b8,1, 0x1520c0,19, 0x152110,35, 0x1521a0,5, 0x1521b8,1, 0x1521c0,16, 0x152204,1, 0x152270,36, 0x152400,4, 0x152418,1, 0x152420,9, 0x152464,1, 0x152474,9, 0x1524a0,6, 0x1524c0,6, 0x1524e0,3, 0x152504,1, 0x15250c,29, 0x152600,3, 0x152800,3, 0x152814,50, 0x1528e0,3, 0x1528f0,1, 0x152900,6, 0x152920,6, 0x152940,6, 0x152960,6, 0x152980,6, 0x1529a0,6, 0x1529c0,3, 0x152a00,12, 0x152a34,22, 0x152ac0,7, 0x152ae0,3, 0x152af0,1, 0x152b00,6, 0x152b20,6, 0x152b40,6, 0x152b60,6, 0x152b80,6, 0x152ba0,3, 0x152c00,13, 0x152c40,11, 0x152c80,1, 0x153000,6, 0x153020,6, 0x153040,3, 0x153060,4, 0x1530f0,3, 0x153100,6, 0x153120,6, 0x153140,3, 0x153160,4, 0x1531f0,3, 0x153200,8, 0x153240,13, 0x1533f8,8, 0x153420,6, 0x153440,3, 0x153460,4, 0x1534f0,3, 0x153500,6, 0x153520,6, 0x153540,3, 0x153560,4, 0x1535f0,3, 0x153600,8, 0x153640,13, 0x1537f8,2, 0x153804,1, 0x153820,10, 0x153880,2, 0x153904,1, 0x15390c,1, 0x153914,1, 0x15391c,1, 0x153924,1, 0x15392c,1, 0x153a20,9, 0x153b00,6, 0x153b20,6, 0x153b40,6, 0x153b60,6, 0x153b80,6, 0x153ba0,3, 0x153c00,16, 0x153d00,30, 0x153d80,1, 0x153d88,5, 0x153da0,1, 0x153da8,2, 0x153dc0,10, 0x153e00,9, 0x153e28,2, 0x153e40,9, 0x153e68,2, 0x153f00,25, 0x153f70,4, 0x153f84,5, 0x153fa0,6, 0x153ff8,7, 0x154018,3, 0x154028,3, 0x154038,63, 0x154140,11, 0x154184,10, 0x1541c0,22, 0x154220,1, 0x154228,2, 0x154240,1, 0x154248,7, 0x154268,7, 0x154288,3, 0x154298,2, 0x1542f4,46, 0x1543b4,1, 0x1543bc,1, 0x1543c4,1, 0x1543cc,1, 0x1543d4,1, 0x1543dc,1, 0x1543e4,1, 0x1543ec,15, 0x154440,10, 0x1547a0,4, 0x1547b8,14, 0x154800,5, 0x154818,3, 0x154828,3, 0x154838,63, 0x154940,11, 0x154984,10, 0x1549c0,22, 0x154a20,1, 0x154a28,2, 0x154a40,1, 0x154a48,7, 0x154a68,7, 0x154a88,3, 0x154a98,2, 0x154af4,46, 0x154bb4,1, 0x154bbc,1, 0x154bc4,1, 0x154bcc,1, 0x154bd4,1, 0x154bdc,1, 0x154be4,1, 0x154bec,15, 0x154c40,10, 0x154fa0,4, 0x154fb8,14, 0x155004,1, 0x15500c,3, 0x155020,5, 0x155038,3, 0x155048,43, 0x155118,24, 0x155200,32, 0x155284,3, 0x155294,3, 0x1552a4,11, 0x155400,6, 0x155420,6, 0x155440,6, 0x155460,6, 0x155480,6, 0x1554a0,6, 0x1554c0,6, 0x1554e0,6, 0x155500,6, 0x155520,6, 0x155540,6, 0x155560,6, 0x155580,6, 0x1555a0,6, 0x1555c0,6, 0x1555e0,6, 0x155600,6, 0x155620,3, 0x155800,4, 0x155840,15, 0x155880,7, 0x1558a0,13, 0x1558e0,7, 0x155ab8,14, 0x155b04,1, 0x155b14,3, 0x155b24,1, 0x155b34,3, 0x155b44,1, 0x155b54,3, 0x155b64,1, 0x155b74,3, 0x155b94,1, 0x155ba0,2, 0x155c00,26, 0x155c80,14, 0x155cc0,27, 0x155d40,11, 0x155d80,5, 0x155da0,7, 0x155dc0,7, 0x155de0,6, 0x155e00,14, 0x155e40,13, 0x155e80,7, 0x155ea0,6, 0x156000,2, 0x156028,2, 0x156050,2, 0x156078,2, 0x1560a0,8, 0x1560c4,14, 0x1561ac,1, 0x1561d8,4, 0x156200,6, 0x156220,6, 0x156240,6, 0x156260,6, 0x156280,3, 0x156400,6, 0x156420,6, 0x156440,3, 0x156480,4, 0x158000,1, 0x158008,1, 0x158010,14, 0x158100,1, 0x158108,1, 0x158110,14, 0x158200,32, 0x1582e0,2, 0x158300,32, 0x1583e0,2, 0x158400,1, 0x158408,1, 0x158410,14, 0x158500,1, 0x158508,1, 0x158510,14, 0x158600,32, 0x1586e0,2, 0x158700,32, 0x1587e0,2, 0x158800,6, 0x15881c,6, 0x158a00,3, 0x158a10,3, 0x158a40,3, 0x158a50,3, 0x158a80,3, 0x158a90,3, 0x158ac0,3, 0x158ad0,3, 0x158b00,3, 0x158c04,3, 0x158c14,16, 0x158c84,1, 0x158c8c,1, 0x158e00,31, 0x158e80,1, 0x158e88,3, 0x158f00,31, 0x158f80,1, 0x158f88,3, 0x159000,22, 0x159100,26, 0x159200,10, 0x159244,5, 0x1595f8,3, 0x159608,4, 0x1596f4,45, 0x159800,31, 0x159900,31, 0x159a00,6, 0x159a20,6, 0x159a40,6, 0x159a60,6, 0x159a80,6, 0x159aa0,6, 0x159ac0,6, 0x159ae0,6, 0x159b00,3, 0x159c00,20, 0x159c74,1, 0x159c80,20, 0x159cf4,1, 0x159d00,20, 0x159d74,1, 0x159d80,20, 0x159df4,1, 0x159e00,17, 0x15a000,3, 0x15a010,35, 0x15a0a0,5, 0x15a0b8,1, 0x15a0c0,19, 0x15a110,35, 0x15a1a0,5, 0x15a1b8,1, 0x15a1c0,16, 0x15a204,1, 0x15a270,36, 0x15a400,4, 0x15a418,1, 0x15a420,9, 0x15a464,1, 0x15a474,9, 0x15a4a0,6, 0x15a4c0,6, 0x15a4e0,3, 0x15a504,1, 0x15a50c,29, 0x15a600,3, 0x15a800,3, 0x15a814,50, 0x15a8e0,3, 0x15a8f0,1, 0x15a900,6, 0x15a920,6, 0x15a940,6, 0x15a960,6, 0x15a980,6, 0x15a9a0,6, 0x15a9c0,3, 0x15aa00,12, 0x15aa34,22, 0x15aac0,7, 0x15aae0,3, 0x15aaf0,1, 0x15ab00,6, 0x15ab20,6, 0x15ab40,6, 0x15ab60,6, 0x15ab80,6, 0x15aba0,3, 0x15ac00,13, 0x15ac40,11, 0x15ac80,1, 0x15b000,6, 0x15b020,6, 0x15b040,3, 0x15b060,4, 0x15b0f0,3, 0x15b100,6, 0x15b120,6, 0x15b140,3, 0x15b160,4, 0x15b1f0,3, 0x15b200,8, 0x15b240,13, 0x15b3f8,8, 0x15b420,6, 0x15b440,3, 0x15b460,4, 0x15b4f0,3, 0x15b500,6, 0x15b520,6, 0x15b540,3, 0x15b560,4, 0x15b5f0,3, 0x15b600,8, 0x15b640,13, 0x15b7f8,2, 0x15b804,1, 0x15b820,10, 0x15b880,2, 0x15b904,1, 0x15b90c,1, 0x15b914,1, 0x15b91c,1, 0x15b924,1, 0x15b92c,1, 0x15ba20,9, 0x15bb00,6, 0x15bb20,6, 0x15bb40,6, 0x15bb60,6, 0x15bb80,6, 0x15bba0,3, 0x15bc00,16, 0x15bd00,30, 0x15bd80,1, 0x15bd88,5, 0x15bda0,1, 0x15bda8,2, 0x15bdc0,10, 0x15be00,9, 0x15be28,2, 0x15be40,9, 0x15be68,2, 0x15bf00,25, 0x15bf70,4, 0x15bf84,5, 0x15bfa0,6, 0x15bff8,7, 0x15c018,3, 0x15c028,3, 0x15c038,63, 0x15c140,11, 0x15c184,10, 0x15c1c0,22, 0x15c220,1, 0x15c228,2, 0x15c240,1, 0x15c248,7, 0x15c268,7, 0x15c288,3, 0x15c298,2, 0x15c2f4,46, 0x15c3b4,1, 0x15c3bc,1, 0x15c3c4,1, 0x15c3cc,1, 0x15c3d4,1, 0x15c3dc,1, 0x15c3e4,1, 0x15c3ec,15, 0x15c440,10, 0x15c7a0,4, 0x15c7b8,14, 0x15c800,5, 0x15c818,3, 0x15c828,3, 0x15c838,63, 0x15c940,11, 0x15c984,10, 0x15c9c0,22, 0x15ca20,1, 0x15ca28,2, 0x15ca40,1, 0x15ca48,7, 0x15ca68,7, 0x15ca88,3, 0x15ca98,2, 0x15caf4,46, 0x15cbb4,1, 0x15cbbc,1, 0x15cbc4,1, 0x15cbcc,1, 0x15cbd4,1, 0x15cbdc,1, 0x15cbe4,1, 0x15cbec,15, 0x15cc40,10, 0x15cfa0,4, 0x15cfb8,14, 0x15d004,1, 0x15d00c,3, 0x15d020,5, 0x15d038,3, 0x15d048,43, 0x15d118,24, 0x15d200,32, 0x15d284,3, 0x15d294,3, 0x15d2a4,11, 0x15d400,6, 0x15d420,6, 0x15d440,6, 0x15d460,6, 0x15d480,6, 0x15d4a0,6, 0x15d4c0,6, 0x15d4e0,6, 0x15d500,6, 0x15d520,6, 0x15d540,6, 0x15d560,6, 0x15d580,6, 0x15d5a0,6, 0x15d5c0,6, 0x15d5e0,6, 0x15d600,6, 0x15d620,3, 0x15d800,4, 0x15d840,15, 0x15d880,7, 0x15d8a0,13, 0x15d8e0,7, 0x15dab8,14, 0x15db04,1, 0x15db14,3, 0x15db24,1, 0x15db34,3, 0x15db44,1, 0x15db54,3, 0x15db64,1, 0x15db74,3, 0x15db94,1, 0x15dba0,2, 0x15dc00,26, 0x15dc80,14, 0x15dcc0,27, 0x15dd40,11, 0x15dd80,5, 0x15dda0,7, 0x15ddc0,7, 0x15dde0,6, 0x15de00,14, 0x15de40,13, 0x15de80,7, 0x15dea0,6, 0x15e000,2, 0x15e028,2, 0x15e050,2, 0x15e078,2, 0x15e0a0,8, 0x15e0c4,14, 0x15e1ac,1, 0x15e1d8,4, 0x15e200,6, 0x15e220,6, 0x15e240,6, 0x15e260,6, 0x15e280,3, 0x15e400,6, 0x15e420,6, 0x15e440,3, 0x15e480,4, 0x160000,1, 0x160008,1, 0x160010,14, 0x160100,1, 0x160108,1, 0x160110,14, 0x160200,32, 0x1602e0,2, 0x160300,32, 0x1603e0,2, 0x160400,1, 0x160408,1, 0x160410,14, 0x160500,1, 0x160508,1, 0x160510,14, 0x160600,32, 0x1606e0,2, 0x160700,32, 0x1607e0,2, 0x160800,6, 0x16081c,6, 0x160a00,3, 0x160a10,3, 0x160a40,3, 0x160a50,3, 0x160a80,3, 0x160a90,3, 0x160ac0,3, 0x160ad0,3, 0x160b00,3, 0x160c04,3, 0x160c14,16, 0x160c84,1, 0x160c8c,1, 0x160e00,31, 0x160e80,1, 0x160e88,3, 0x160f00,31, 0x160f80,1, 0x160f88,3, 0x161000,22, 0x161100,26, 0x161200,10, 0x161244,5, 0x1615f8,3, 0x161608,4, 0x1616f4,45, 0x161800,31, 0x161900,31, 0x161a00,6, 0x161a20,6, 0x161a40,6, 0x161a60,6, 0x161a80,6, 0x161aa0,6, 0x161ac0,6, 0x161ae0,6, 0x161b00,3, 0x161c00,20, 0x161c74,1, 0x161c80,20, 0x161cf4,1, 0x161d00,20, 0x161d74,1, 0x161d80,20, 0x161df4,1, 0x161e00,17, 0x162000,3, 0x162010,35, 0x1620a0,5, 0x1620b8,1, 0x1620c0,19, 0x162110,35, 0x1621a0,5, 0x1621b8,1, 0x1621c0,16, 0x162204,1, 0x162270,36, 0x162400,4, 0x162418,1, 0x162420,9, 0x162464,1, 0x162474,9, 0x1624a0,6, 0x1624c0,6, 0x1624e0,3, 0x162504,1, 0x16250c,29, 0x162600,3, 0x162800,3, 0x162814,50, 0x1628e0,3, 0x1628f0,1, 0x162900,6, 0x162920,6, 0x162940,6, 0x162960,6, 0x162980,6, 0x1629a0,6, 0x1629c0,3, 0x162a00,12, 0x162a34,22, 0x162ac0,7, 0x162ae0,3, 0x162af0,1, 0x162b00,6, 0x162b20,6, 0x162b40,6, 0x162b60,6, 0x162b80,6, 0x162ba0,3, 0x162c00,13, 0x162c40,11, 0x162c80,1, 0x163000,6, 0x163020,6, 0x163040,3, 0x163060,4, 0x1630f0,3, 0x163100,6, 0x163120,6, 0x163140,3, 0x163160,4, 0x1631f0,3, 0x163200,8, 0x163240,13, 0x1633f8,8, 0x163420,6, 0x163440,3, 0x163460,4, 0x1634f0,3, 0x163500,6, 0x163520,6, 0x163540,3, 0x163560,4, 0x1635f0,3, 0x163600,8, 0x163640,13, 0x1637f8,2, 0x163804,1, 0x163820,10, 0x163880,2, 0x163904,1, 0x16390c,1, 0x163914,1, 0x16391c,1, 0x163924,1, 0x16392c,1, 0x163a20,9, 0x163b00,6, 0x163b20,6, 0x163b40,6, 0x163b60,6, 0x163b80,6, 0x163ba0,3, 0x163c00,16, 0x163d00,30, 0x163d80,1, 0x163d88,5, 0x163da0,1, 0x163da8,2, 0x163dc0,10, 0x163e00,9, 0x163e28,2, 0x163e40,9, 0x163e68,2, 0x163f00,25, 0x163f70,4, 0x163f84,5, 0x163fa0,6, 0x163ff8,7, 0x164018,3, 0x164028,3, 0x164038,63, 0x164140,11, 0x164184,10, 0x1641c0,22, 0x164220,1, 0x164228,2, 0x164240,1, 0x164248,7, 0x164268,7, 0x164288,3, 0x164298,2, 0x1642f4,46, 0x1643b4,1, 0x1643bc,1, 0x1643c4,1, 0x1643cc,1, 0x1643d4,1, 0x1643dc,1, 0x1643e4,1, 0x1643ec,15, 0x164440,10, 0x1647a0,4, 0x1647b8,14, 0x164800,5, 0x164818,3, 0x164828,3, 0x164838,63, 0x164940,11, 0x164984,10, 0x1649c0,22, 0x164a20,1, 0x164a28,2, 0x164a40,1, 0x164a48,7, 0x164a68,7, 0x164a88,3, 0x164a98,2, 0x164af4,46, 0x164bb4,1, 0x164bbc,1, 0x164bc4,1, 0x164bcc,1, 0x164bd4,1, 0x164bdc,1, 0x164be4,1, 0x164bec,15, 0x164c40,10, 0x164fa0,4, 0x164fb8,14, 0x165004,1, 0x16500c,3, 0x165020,5, 0x165038,3, 0x165048,43, 0x165118,24, 0x165200,32, 0x165284,3, 0x165294,3, 0x1652a4,11, 0x165400,6, 0x165420,6, 0x165440,6, 0x165460,6, 0x165480,6, 0x1654a0,6, 0x1654c0,6, 0x1654e0,6, 0x165500,6, 0x165520,6, 0x165540,6, 0x165560,6, 0x165580,6, 0x1655a0,6, 0x1655c0,6, 0x1655e0,6, 0x165600,6, 0x165620,3, 0x165800,4, 0x165840,15, 0x165880,7, 0x1658a0,13, 0x1658e0,7, 0x165ab8,14, 0x165b04,1, 0x165b14,3, 0x165b24,1, 0x165b34,3, 0x165b44,1, 0x165b54,3, 0x165b64,1, 0x165b74,3, 0x165b94,1, 0x165ba0,2, 0x165c00,26, 0x165c80,14, 0x165cc0,27, 0x165d40,11, 0x165d80,5, 0x165da0,7, 0x165dc0,7, 0x165de0,6, 0x165e00,14, 0x165e40,13, 0x165e80,7, 0x165ea0,6, 0x166000,2, 0x166028,2, 0x166050,2, 0x166078,2, 0x1660a0,8, 0x1660c4,14, 0x1661ac,1, 0x1661d8,4, 0x166200,6, 0x166220,6, 0x166240,6, 0x166260,6, 0x166280,3, 0x166400,6, 0x166420,6, 0x166440,3, 0x166480,4, 0x168000,1, 0x168008,1, 0x168010,14, 0x168100,1, 0x168108,1, 0x168110,14, 0x168200,32, 0x1682e0,2, 0x168300,32, 0x1683e0,2, 0x168400,1, 0x168408,1, 0x168410,14, 0x168500,1, 0x168508,1, 0x168510,14, 0x168600,32, 0x1686e0,2, 0x168700,32, 0x1687e0,2, 0x168800,6, 0x16881c,6, 0x168a00,3, 0x168a10,3, 0x168a40,3, 0x168a50,3, 0x168a80,3, 0x168a90,3, 0x168ac0,3, 0x168ad0,3, 0x168b00,3, 0x168c04,3, 0x168c14,16, 0x168c84,1, 0x168c8c,1, 0x168e00,31, 0x168e80,1, 0x168e88,3, 0x168f00,31, 0x168f80,1, 0x168f88,3, 0x169000,22, 0x169100,26, 0x169200,10, 0x169244,5, 0x1695f8,3, 0x169608,4, 0x1696f4,45, 0x169800,31, 0x169900,31, 0x169a00,6, 0x169a20,6, 0x169a40,6, 0x169a60,6, 0x169a80,6, 0x169aa0,6, 0x169ac0,6, 0x169ae0,6, 0x169b00,3, 0x169c00,20, 0x169c74,1, 0x169c80,20, 0x169cf4,1, 0x169d00,20, 0x169d74,1, 0x169d80,20, 0x169df4,1, 0x169e00,17, 0x16a000,3, 0x16a010,35, 0x16a0a0,5, 0x16a0b8,1, 0x16a0c0,19, 0x16a110,35, 0x16a1a0,5, 0x16a1b8,1, 0x16a1c0,16, 0x16a204,1, 0x16a270,36, 0x16a400,4, 0x16a418,1, 0x16a420,9, 0x16a464,1, 0x16a474,9, 0x16a4a0,6, 0x16a4c0,6, 0x16a4e0,3, 0x16a504,1, 0x16a50c,29, 0x16a600,3, 0x16a800,3, 0x16a814,50, 0x16a8e0,3, 0x16a8f0,1, 0x16a900,6, 0x16a920,6, 0x16a940,6, 0x16a960,6, 0x16a980,6, 0x16a9a0,6, 0x16a9c0,3, 0x16aa00,12, 0x16aa34,22, 0x16aac0,7, 0x16aae0,3, 0x16aaf0,1, 0x16ab00,6, 0x16ab20,6, 0x16ab40,6, 0x16ab60,6, 0x16ab80,6, 0x16aba0,3, 0x16ac00,13, 0x16ac40,11, 0x16ac80,1, 0x16b000,6, 0x16b020,6, 0x16b040,3, 0x16b060,4, 0x16b0f0,3, 0x16b100,6, 0x16b120,6, 0x16b140,3, 0x16b160,4, 0x16b1f0,3, 0x16b200,8, 0x16b240,13, 0x16b3f8,8, 0x16b420,6, 0x16b440,3, 0x16b460,4, 0x16b4f0,3, 0x16b500,6, 0x16b520,6, 0x16b540,3, 0x16b560,4, 0x16b5f0,3, 0x16b600,8, 0x16b640,13, 0x16b7f8,2, 0x16b804,1, 0x16b820,10, 0x16b880,2, 0x16b904,1, 0x16b90c,1, 0x16b914,1, 0x16b91c,1, 0x16b924,1, 0x16b92c,1, 0x16ba20,9, 0x16bb00,6, 0x16bb20,6, 0x16bb40,6, 0x16bb60,6, 0x16bb80,6, 0x16bba0,3, 0x16bc00,16, 0x16bd00,30, 0x16bd80,1, 0x16bd88,5, 0x16bda0,1, 0x16bda8,2, 0x16bdc0,10, 0x16be00,9, 0x16be28,2, 0x16be40,9, 0x16be68,2, 0x16bf00,25, 0x16bf70,4, 0x16bf84,5, 0x16bfa0,6, 0x16bff8,7, 0x16c018,3, 0x16c028,3, 0x16c038,63, 0x16c140,11, 0x16c184,10, 0x16c1c0,22, 0x16c220,1, 0x16c228,2, 0x16c240,1, 0x16c248,7, 0x16c268,7, 0x16c288,3, 0x16c298,2, 0x16c2f4,46, 0x16c3b4,1, 0x16c3bc,1, 0x16c3c4,1, 0x16c3cc,1, 0x16c3d4,1, 0x16c3dc,1, 0x16c3e4,1, 0x16c3ec,15, 0x16c440,10, 0x16c7a0,4, 0x16c7b8,14, 0x16c800,5, 0x16c818,3, 0x16c828,3, 0x16c838,63, 0x16c940,11, 0x16c984,10, 0x16c9c0,22, 0x16ca20,1, 0x16ca28,2, 0x16ca40,1, 0x16ca48,7, 0x16ca68,7, 0x16ca88,3, 0x16ca98,2, 0x16caf4,46, 0x16cbb4,1, 0x16cbbc,1, 0x16cbc4,1, 0x16cbcc,1, 0x16cbd4,1, 0x16cbdc,1, 0x16cbe4,1, 0x16cbec,15, 0x16cc40,10, 0x16cfa0,4, 0x16cfb8,14, 0x16d004,1, 0x16d00c,3, 0x16d020,5, 0x16d038,3, 0x16d048,43, 0x16d118,24, 0x16d200,32, 0x16d284,3, 0x16d294,3, 0x16d2a4,11, 0x16d400,6, 0x16d420,6, 0x16d440,6, 0x16d460,6, 0x16d480,6, 0x16d4a0,6, 0x16d4c0,6, 0x16d4e0,6, 0x16d500,6, 0x16d520,6, 0x16d540,6, 0x16d560,6, 0x16d580,6, 0x16d5a0,6, 0x16d5c0,6, 0x16d5e0,6, 0x16d600,6, 0x16d620,3, 0x16d800,4, 0x16d840,15, 0x16d880,7, 0x16d8a0,13, 0x16d8e0,7, 0x16dab8,14, 0x16db04,1, 0x16db14,3, 0x16db24,1, 0x16db34,3, 0x16db44,1, 0x16db54,3, 0x16db64,1, 0x16db74,3, 0x16db94,1, 0x16dba0,2, 0x16dc00,26, 0x16dc80,14, 0x16dcc0,27, 0x16dd40,11, 0x16dd80,5, 0x16dda0,7, 0x16ddc0,7, 0x16dde0,6, 0x16de00,14, 0x16de40,13, 0x16de80,7, 0x16dea0,6, 0x16e000,2, 0x16e028,2, 0x16e050,2, 0x16e078,2, 0x16e0a0,8, 0x16e0c4,14, 0x16e1ac,1, 0x16e1d8,4, 0x16e200,6, 0x16e220,6, 0x16e240,6, 0x16e260,6, 0x16e280,3, 0x16e400,6, 0x16e420,6, 0x16e440,3, 0x16e480,4, 0x170000,1, 0x170008,1, 0x170010,14, 0x170100,1, 0x170108,1, 0x170110,14, 0x170200,32, 0x1702e0,2, 0x170300,32, 0x1703e0,2, 0x170400,1, 0x170408,1, 0x170410,14, 0x170500,1, 0x170508,1, 0x170510,14, 0x170600,32, 0x1706e0,2, 0x170700,32, 0x1707e0,2, 0x170800,6, 0x17081c,6, 0x170a00,3, 0x170a10,3, 0x170a40,3, 0x170a50,3, 0x170a80,3, 0x170a90,3, 0x170ac0,3, 0x170ad0,3, 0x170b00,3, 0x170c04,3, 0x170c14,16, 0x170c84,1, 0x170c8c,1, 0x170e00,31, 0x170e80,1, 0x170e88,3, 0x170f00,31, 0x170f80,1, 0x170f88,3, 0x171000,22, 0x171100,26, 0x171200,10, 0x171244,5, 0x1715f8,3, 0x171608,4, 0x1716f4,45, 0x171800,31, 0x171900,31, 0x171a00,6, 0x171a20,6, 0x171a40,6, 0x171a60,6, 0x171a80,6, 0x171aa0,6, 0x171ac0,6, 0x171ae0,6, 0x171b00,3, 0x171c00,20, 0x171c74,1, 0x171c80,20, 0x171cf4,1, 0x171d00,20, 0x171d74,1, 0x171d80,20, 0x171df4,1, 0x171e00,17, 0x172000,3, 0x172010,35, 0x1720a0,5, 0x1720b8,1, 0x1720c0,19, 0x172110,35, 0x1721a0,5, 0x1721b8,1, 0x1721c0,16, 0x172204,1, 0x172270,36, 0x172400,4, 0x172418,1, 0x172420,9, 0x172464,1, 0x172474,9, 0x1724a0,6, 0x1724c0,6, 0x1724e0,3, 0x172504,1, 0x17250c,29, 0x172600,3, 0x172800,3, 0x172814,50, 0x1728e0,3, 0x1728f0,1, 0x172900,6, 0x172920,6, 0x172940,6, 0x172960,6, 0x172980,6, 0x1729a0,6, 0x1729c0,3, 0x172a00,12, 0x172a34,22, 0x172ac0,7, 0x172ae0,3, 0x172af0,1, 0x172b00,6, 0x172b20,6, 0x172b40,6, 0x172b60,6, 0x172b80,6, 0x172ba0,3, 0x172c00,13, 0x172c40,11, 0x172c80,1, 0x173000,6, 0x173020,6, 0x173040,3, 0x173060,4, 0x1730f0,3, 0x173100,6, 0x173120,6, 0x173140,3, 0x173160,4, 0x1731f0,3, 0x173200,8, 0x173240,13, 0x1733f8,8, 0x173420,6, 0x173440,3, 0x173460,4, 0x1734f0,3, 0x173500,6, 0x173520,6, 0x173540,3, 0x173560,4, 0x1735f0,3, 0x173600,8, 0x173640,13, 0x1737f8,2, 0x173804,1, 0x173820,10, 0x173880,2, 0x173904,1, 0x17390c,1, 0x173914,1, 0x17391c,1, 0x173924,1, 0x17392c,1, 0x173a20,9, 0x173b00,6, 0x173b20,6, 0x173b40,6, 0x173b60,6, 0x173b80,6, 0x173ba0,3, 0x173c00,16, 0x173d00,30, 0x173d80,1, 0x173d88,5, 0x173da0,1, 0x173da8,2, 0x173dc0,10, 0x173e00,9, 0x173e28,2, 0x173e40,9, 0x173e68,2, 0x173f00,25, 0x173f70,4, 0x173f84,5, 0x173fa0,6, 0x173ff8,7, 0x174018,3, 0x174028,3, 0x174038,63, 0x174140,11, 0x174184,10, 0x1741c0,22, 0x174220,1, 0x174228,2, 0x174240,1, 0x174248,7, 0x174268,7, 0x174288,3, 0x174298,2, 0x1742f4,46, 0x1743b4,1, 0x1743bc,1, 0x1743c4,1, 0x1743cc,1, 0x1743d4,1, 0x1743dc,1, 0x1743e4,1, 0x1743ec,15, 0x174440,10, 0x1747a0,4, 0x1747b8,14, 0x174800,5, 0x174818,3, 0x174828,3, 0x174838,63, 0x174940,11, 0x174984,10, 0x1749c0,22, 0x174a20,1, 0x174a28,2, 0x174a40,1, 0x174a48,7, 0x174a68,7, 0x174a88,3, 0x174a98,2, 0x174af4,46, 0x174bb4,1, 0x174bbc,1, 0x174bc4,1, 0x174bcc,1, 0x174bd4,1, 0x174bdc,1, 0x174be4,1, 0x174bec,15, 0x174c40,10, 0x174fa0,4, 0x174fb8,14, 0x175004,1, 0x17500c,3, 0x175020,5, 0x175038,3, 0x175048,43, 0x175118,24, 0x175200,32, 0x175284,3, 0x175294,3, 0x1752a4,11, 0x175400,6, 0x175420,6, 0x175440,6, 0x175460,6, 0x175480,6, 0x1754a0,6, 0x1754c0,6, 0x1754e0,6, 0x175500,6, 0x175520,6, 0x175540,6, 0x175560,6, 0x175580,6, 0x1755a0,6, 0x1755c0,6, 0x1755e0,6, 0x175600,6, 0x175620,3, 0x175800,4, 0x175840,15, 0x175880,7, 0x1758a0,13, 0x1758e0,7, 0x175ab8,14, 0x175b04,1, 0x175b14,3, 0x175b24,1, 0x175b34,3, 0x175b44,1, 0x175b54,3, 0x175b64,1, 0x175b74,3, 0x175b94,1, 0x175ba0,2, 0x175c00,26, 0x175c80,14, 0x175cc0,27, 0x175d40,11, 0x175d80,5, 0x175da0,7, 0x175dc0,7, 0x175de0,6, 0x175e00,14, 0x175e40,13, 0x175e80,7, 0x175ea0,6, 0x176000,2, 0x176028,2, 0x176050,2, 0x176078,2, 0x1760a0,8, 0x1760c4,14, 0x1761ac,1, 0x1761d8,4, 0x176200,6, 0x176220,6, 0x176240,6, 0x176260,6, 0x176280,3, 0x176400,6, 0x176420,6, 0x176440,3, 0x176480,4, 0x178000,1, 0x178008,1, 0x178010,14, 0x178100,1, 0x178108,1, 0x178110,14, 0x178200,32, 0x1782e0,2, 0x178300,32, 0x1783e0,2, 0x178400,1, 0x178408,1, 0x178410,14, 0x178500,1, 0x178508,1, 0x178510,14, 0x178600,32, 0x1786e0,2, 0x178700,32, 0x1787e0,2, 0x178800,6, 0x17881c,6, 0x178a00,3, 0x178a10,3, 0x178a40,3, 0x178a50,3, 0x178a80,3, 0x178a90,3, 0x178ac0,3, 0x178ad0,3, 0x178b00,3, 0x178c04,3, 0x178c14,16, 0x178c84,1, 0x178c8c,1, 0x178e00,31, 0x178e80,1, 0x178e88,3, 0x178f00,31, 0x178f80,1, 0x178f88,3, 0x179000,22, 0x179100,26, 0x179200,10, 0x179244,5, 0x1795f8,3, 0x179608,4, 0x1796f4,45, 0x179800,31, 0x179900,31, 0x179a00,6, 0x179a20,6, 0x179a40,6, 0x179a60,6, 0x179a80,6, 0x179aa0,6, 0x179ac0,6, 0x179ae0,6, 0x179b00,3, 0x179c00,20, 0x179c74,1, 0x179c80,20, 0x179cf4,1, 0x179d00,20, 0x179d74,1, 0x179d80,20, 0x179df4,1, 0x179e00,17, 0x17a000,3, 0x17a010,35, 0x17a0a0,5, 0x17a0b8,1, 0x17a0c0,19, 0x17a110,35, 0x17a1a0,5, 0x17a1b8,1, 0x17a1c0,16, 0x17a204,1, 0x17a270,36, 0x17a400,4, 0x17a418,1, 0x17a420,9, 0x17a464,1, 0x17a474,9, 0x17a4a0,6, 0x17a4c0,6, 0x17a4e0,3, 0x17a504,1, 0x17a50c,29, 0x17a600,3, 0x17a800,3, 0x17a814,50, 0x17a8e0,3, 0x17a8f0,1, 0x17a900,6, 0x17a920,6, 0x17a940,6, 0x17a960,6, 0x17a980,6, 0x17a9a0,6, 0x17a9c0,3, 0x17aa00,12, 0x17aa34,22, 0x17aac0,7, 0x17aae0,3, 0x17aaf0,1, 0x17ab00,6, 0x17ab20,6, 0x17ab40,6, 0x17ab60,6, 0x17ab80,6, 0x17aba0,3, 0x17ac00,13, 0x17ac40,11, 0x17ac80,1, 0x17b000,6, 0x17b020,6, 0x17b040,3, 0x17b060,4, 0x17b0f0,3, 0x17b100,6, 0x17b120,6, 0x17b140,3, 0x17b160,4, 0x17b1f0,3, 0x17b200,8, 0x17b240,13, 0x17b3f8,8, 0x17b420,6, 0x17b440,3, 0x17b460,4, 0x17b4f0,3, 0x17b500,6, 0x17b520,6, 0x17b540,3, 0x17b560,4, 0x17b5f0,3, 0x17b600,8, 0x17b640,13, 0x17b7f8,2, 0x17b804,1, 0x17b820,10, 0x17b880,2, 0x17b904,1, 0x17b90c,1, 0x17b914,1, 0x17b91c,1, 0x17b924,1, 0x17b92c,1, 0x17ba20,9, 0x17bb00,6, 0x17bb20,6, 0x17bb40,6, 0x17bb60,6, 0x17bb80,6, 0x17bba0,3, 0x17bc00,16, 0x17bd00,30, 0x17bd80,1, 0x17bd88,5, 0x17bda0,1, 0x17bda8,2, 0x17bdc0,10, 0x17be00,9, 0x17be28,2, 0x17be40,9, 0x17be68,2, 0x17bf00,25, 0x17bf70,4, 0x17bf84,5, 0x17bfa0,6, 0x17bff8,7, 0x17c018,3, 0x17c028,3, 0x17c038,63, 0x17c140,11, 0x17c184,10, 0x17c1c0,22, 0x17c220,1, 0x17c228,2, 0x17c240,1, 0x17c248,7, 0x17c268,7, 0x17c288,3, 0x17c298,2, 0x17c2f4,46, 0x17c3b4,1, 0x17c3bc,1, 0x17c3c4,1, 0x17c3cc,1, 0x17c3d4,1, 0x17c3dc,1, 0x17c3e4,1, 0x17c3ec,15, 0x17c440,10, 0x17c7a0,4, 0x17c7b8,14, 0x17c800,5, 0x17c818,3, 0x17c828,3, 0x17c838,63, 0x17c940,11, 0x17c984,10, 0x17c9c0,22, 0x17ca20,1, 0x17ca28,2, 0x17ca40,1, 0x17ca48,7, 0x17ca68,7, 0x17ca88,3, 0x17ca98,2, 0x17caf4,46, 0x17cbb4,1, 0x17cbbc,1, 0x17cbc4,1, 0x17cbcc,1, 0x17cbd4,1, 0x17cbdc,1, 0x17cbe4,1, 0x17cbec,15, 0x17cc40,10, 0x17cfa0,4, 0x17cfb8,14, 0x17d004,1, 0x17d00c,3, 0x17d020,5, 0x17d038,3, 0x17d048,43, 0x17d118,24, 0x17d200,32, 0x17d284,3, 0x17d294,3, 0x17d2a4,11, 0x17d400,6, 0x17d420,6, 0x17d440,6, 0x17d460,6, 0x17d480,6, 0x17d4a0,6, 0x17d4c0,6, 0x17d4e0,6, 0x17d500,6, 0x17d520,6, 0x17d540,6, 0x17d560,6, 0x17d580,6, 0x17d5a0,6, 0x17d5c0,6, 0x17d5e0,6, 0x17d600,6, 0x17d620,3, 0x17d800,4, 0x17d840,15, 0x17d880,7, 0x17d8a0,13, 0x17d8e0,7, 0x17dab8,14, 0x17db04,1, 0x17db14,3, 0x17db24,1, 0x17db34,3, 0x17db44,1, 0x17db54,3, 0x17db64,1, 0x17db74,3, 0x17db94,1, 0x17dba0,2, 0x17dc00,26, 0x17dc80,14, 0x17dcc0,27, 0x17dd40,11, 0x17dd80,5, 0x17dda0,7, 0x17ddc0,7, 0x17dde0,6, 0x17de00,14, 0x17de40,13, 0x17de80,7, 0x17dea0,6, 0x17e000,2, 0x17e028,2, 0x17e050,2, 0x17e078,2, 0x17e0a0,8, 0x17e0c4,14, 0x17e1ac,1, 0x17e1d8,4, 0x17e200,6, 0x17e220,6, 0x17e240,6, 0x17e260,6, 0x17e280,3, 0x17e400,6, 0x17e420,6, 0x17e440,3, 0x17e480,4, 0x1c0000,4, 0x1c0028,4, 0x1c0050,4, 0x1c0078,4, 0x1c00a0,3, 0x1c01ac,1, 0x1c01d8,4, 0x1c0200,6, 0x1c0220,6, 0x1c0240,6, 0x1c0260,6, 0x1c0280,6, 0x1c02a0,6, 0x1c02c0,6, 0x1c02e0,6, 0x1c0300,3, 0x1c0400,6, 0x1c0420,6, 0x1c0440,6, 0x1c0460,6, 0x1c0480,6, 0x1c04a0,6, 0x1c04c0,6, 0x1c04e0,3, 0x1c0500,10, 0x1c0540,10, 0x1c0580,10, 0x1c05c0,10, 0x1c0600,10, 0x1c0640,10, 0x1c0680,10, 0x1c06c0,10, 0x1c0700,6, 0x1c0730,7, 0x1c0750,1, 0x1c0758,2, 0x1c0840,1, 0x1c0850,3, 0x1c0864,1, 0x1c0870,1, 0x1c0880,11, 0x1c08b0,3, 0x1c08c0,3, 0x1c08d0,5, 0x1c08f0,1, 0x1c0900,16, 0x1c0980,60, 0x1c0a80,3, 0x1c0ab8,13, 0x1c0b00,9, 0x1c0b40,11, 0x1c0b80,11, 0x1c0bc0,11, 0x1c0c00,6, 0x1c0c1c,7, 0x1c0c40,6, 0x1c0c5c,7, 0x1c0c80,6, 0x1c0c9c,7, 0x1c0cc0,6, 0x1c0cdc,7, 0x1c0d00,6, 0x1c0d1c,7, 0x1c0d40,6, 0x1c0d5c,7, 0x1c0d80,6, 0x1c0d9c,7, 0x1c0dc0,6, 0x1c0ddc,7, 0x1c0e00,21, 0x1c0e60,5, 0x1c0e80,1, 0x1c0e90,15, 0x1c0ed4,3, 0x1c0f04,3, 0x1c0f14,3, 0x1c0f24,3, 0x1c0f34,3, 0x1c0f44,3, 0x1c0f54,3, 0x1c0f64,3, 0x1c0f74,3, 0x1c1004,4, 0x1c1018,2, 0x1c1028,3, 0x1c1040,10, 0x1c1080,10, 0x1c10c0,10, 0x1c1100,10, 0x1c1140,10, 0x1c1184,5, 0x1c119c,2, 0x1c1204,4, 0x1c1218,2, 0x1c1228,3, 0x1c1240,10, 0x1c1280,10, 0x1c12c0,10, 0x1c1300,10, 0x1c1340,10, 0x1c1384,5, 0x1c139c,2, 0x1c1404,4, 0x1c1418,2, 0x1c1428,3, 0x1c1440,10, 0x1c1480,10, 0x1c14c0,10, 0x1c1500,10, 0x1c1540,10, 0x1c1584,5, 0x1c159c,2, 0x1c1604,4, 0x1c1618,2, 0x1c1628,3, 0x1c1640,10, 0x1c1680,10, 0x1c16c0,10, 0x1c1700,10, 0x1c1740,10, 0x1c1784,5, 0x1c179c,2, 0x1c1804,4, 0x1c1818,2, 0x1c1828,3, 0x1c1840,10, 0x1c1880,10, 0x1c18c0,10, 0x1c1900,10, 0x1c1940,10, 0x1c1984,5, 0x1c199c,2, 0x1c1a04,4, 0x1c1a18,2, 0x1c1a28,3, 0x1c1a40,10, 0x1c1a80,10, 0x1c1ac0,10, 0x1c1b00,10, 0x1c1b40,10, 0x1c1b84,5, 0x1c1b9c,2, 0x1c1c04,4, 0x1c1c18,2, 0x1c1c28,3, 0x1c1c40,10, 0x1c1c80,10, 0x1c1cc0,10, 0x1c1d00,10, 0x1c1d40,10, 0x1c1d84,5, 0x1c1d9c,2, 0x1c1e04,4, 0x1c1e18,2, 0x1c1e28,3, 0x1c1e40,10, 0x1c1e80,10, 0x1c1ec0,10, 0x1c1f00,10, 0x1c1f40,10, 0x1c1f84,5, 0x1c1f9c,2, 0x1c2000,75, 0x1c2130,3, 0x1c2140,3, 0x1c2150,5, 0x1c2170,1, 0x1c2180,14, 0x1c21c0,12, 0x1c2200,37, 0x1c22a0,5, 0x1c22bc,3, 0x1c22cc,6, 0x1c22e8,4, 0x1c2300,5, 0x1c2320,3, 0x1c2400,75, 0x1c2530,3, 0x1c2540,3, 0x1c2550,5, 0x1c2570,1, 0x1c2580,14, 0x1c25c0,12, 0x1c2600,37, 0x1c26a0,5, 0x1c26bc,3, 0x1c26cc,6, 0x1c26e8,4, 0x1c2700,5, 0x1c2720,3, 0x1c2800,75, 0x1c2930,3, 0x1c2940,3, 0x1c2950,5, 0x1c2970,1, 0x1c2980,14, 0x1c29c0,12, 0x1c2a00,37, 0x1c2aa0,5, 0x1c2abc,3, 0x1c2acc,6, 0x1c2ae8,4, 0x1c2b00,5, 0x1c2b20,3, 0x1c2c00,75, 0x1c2d30,3, 0x1c2d40,3, 0x1c2d50,5, 0x1c2d70,1, 0x1c2d80,14, 0x1c2dc0,12, 0x1c2e00,37, 0x1c2ea0,5, 0x1c2ebc,3, 0x1c2ecc,6, 0x1c2ee8,4, 0x1c2f00,5, 0x1c2f20,3, 0x1c3000,75, 0x1c3130,3, 0x1c3140,3, 0x1c3150,5, 0x1c3170,1, 0x1c3180,14, 0x1c31c0,12, 0x1c3200,37, 0x1c32a0,5, 0x1c32bc,3, 0x1c32cc,6, 0x1c32e8,4, 0x1c3300,5, 0x1c3320,3, 0x1c3400,75, 0x1c3530,3, 0x1c3540,3, 0x1c3550,5, 0x1c3570,1, 0x1c3580,14, 0x1c35c0,12, 0x1c3600,37, 0x1c36a0,5, 0x1c36bc,3, 0x1c36cc,6, 0x1c36e8,4, 0x1c3700,5, 0x1c3720,3, 0x1c3800,75, 0x1c3930,3, 0x1c3940,3, 0x1c3950,5, 0x1c3970,1, 0x1c3980,14, 0x1c39c0,12, 0x1c3a00,37, 0x1c3aa0,5, 0x1c3abc,3, 0x1c3acc,6, 0x1c3ae8,4, 0x1c3b00,5, 0x1c3b20,3, 0x1c3c00,75, 0x1c3d30,3, 0x1c3d40,3, 0x1c3d50,5, 0x1c3d70,1, 0x1c3d80,14, 0x1c3dc0,12, 0x1c3e00,37, 0x1c3ea0,5, 0x1c3ebc,3, 0x1c3ecc,6, 0x1c3ee8,4, 0x1c3f00,5, 0x1c3f20,3, 0x1c4000,4, 0x1c4028,4, 0x1c4050,4, 0x1c4078,4, 0x1c40a0,3, 0x1c41ac,1, 0x1c41d8,4, 0x1c4200,6, 0x1c4220,6, 0x1c4240,6, 0x1c4260,6, 0x1c4280,6, 0x1c42a0,6, 0x1c42c0,6, 0x1c42e0,6, 0x1c4300,3, 0x1c4400,6, 0x1c4420,6, 0x1c4440,6, 0x1c4460,6, 0x1c4480,6, 0x1c44a0,6, 0x1c44c0,6, 0x1c44e0,3, 0x1c4500,10, 0x1c4540,10, 0x1c4580,10, 0x1c45c0,10, 0x1c4600,10, 0x1c4640,10, 0x1c4680,10, 0x1c46c0,10, 0x1c4700,6, 0x1c4730,7, 0x1c4750,1, 0x1c4758,2, 0x1c4840,1, 0x1c4850,3, 0x1c4864,1, 0x1c4870,1, 0x1c4880,11, 0x1c48b0,3, 0x1c48c0,3, 0x1c48d0,5, 0x1c48f0,1, 0x1c4900,16, 0x1c4980,60, 0x1c4a80,3, 0x1c4ab8,13, 0x1c4b00,9, 0x1c4b40,11, 0x1c4b80,11, 0x1c4bc0,11, 0x1c4c00,6, 0x1c4c1c,7, 0x1c4c40,6, 0x1c4c5c,7, 0x1c4c80,6, 0x1c4c9c,7, 0x1c4cc0,6, 0x1c4cdc,7, 0x1c4d00,6, 0x1c4d1c,7, 0x1c4d40,6, 0x1c4d5c,7, 0x1c4d80,6, 0x1c4d9c,7, 0x1c4dc0,6, 0x1c4ddc,7, 0x1c4e00,21, 0x1c4e60,5, 0x1c4e80,1, 0x1c4e90,15, 0x1c4ed4,3, 0x1c4f04,3, 0x1c4f14,3, 0x1c4f24,3, 0x1c4f34,3, 0x1c4f44,3, 0x1c4f54,3, 0x1c4f64,3, 0x1c4f74,3, 0x1c5004,4, 0x1c5018,2, 0x1c5028,3, 0x1c5040,10, 0x1c5080,10, 0x1c50c0,10, 0x1c5100,10, 0x1c5140,10, 0x1c5184,5, 0x1c519c,2, 0x1c5204,4, 0x1c5218,2, 0x1c5228,3, 0x1c5240,10, 0x1c5280,10, 0x1c52c0,10, 0x1c5300,10, 0x1c5340,10, 0x1c5384,5, 0x1c539c,2, 0x1c5404,4, 0x1c5418,2, 0x1c5428,3, 0x1c5440,10, 0x1c5480,10, 0x1c54c0,10, 0x1c5500,10, 0x1c5540,10, 0x1c5584,5, 0x1c559c,2, 0x1c5604,4, 0x1c5618,2, 0x1c5628,3, 0x1c5640,10, 0x1c5680,10, 0x1c56c0,10, 0x1c5700,10, 0x1c5740,10, 0x1c5784,5, 0x1c579c,2, 0x1c5804,4, 0x1c5818,2, 0x1c5828,3, 0x1c5840,10, 0x1c5880,10, 0x1c58c0,10, 0x1c5900,10, 0x1c5940,10, 0x1c5984,5, 0x1c599c,2, 0x1c5a04,4, 0x1c5a18,2, 0x1c5a28,3, 0x1c5a40,10, 0x1c5a80,10, 0x1c5ac0,10, 0x1c5b00,10, 0x1c5b40,10, 0x1c5b84,5, 0x1c5b9c,2, 0x1c5c04,4, 0x1c5c18,2, 0x1c5c28,3, 0x1c5c40,10, 0x1c5c80,10, 0x1c5cc0,10, 0x1c5d00,10, 0x1c5d40,10, 0x1c5d84,5, 0x1c5d9c,2, 0x1c5e04,4, 0x1c5e18,2, 0x1c5e28,3, 0x1c5e40,10, 0x1c5e80,10, 0x1c5ec0,10, 0x1c5f00,10, 0x1c5f40,10, 0x1c5f84,5, 0x1c5f9c,2, 0x1c6000,75, 0x1c6130,3, 0x1c6140,3, 0x1c6150,5, 0x1c6170,1, 0x1c6180,14, 0x1c61c0,12, 0x1c6200,37, 0x1c62a0,5, 0x1c62bc,3, 0x1c62cc,6, 0x1c62e8,4, 0x1c6300,5, 0x1c6320,3, 0x1c6400,75, 0x1c6530,3, 0x1c6540,3, 0x1c6550,5, 0x1c6570,1, 0x1c6580,14, 0x1c65c0,12, 0x1c6600,37, 0x1c66a0,5, 0x1c66bc,3, 0x1c66cc,6, 0x1c66e8,4, 0x1c6700,5, 0x1c6720,3, 0x1c6800,75, 0x1c6930,3, 0x1c6940,3, 0x1c6950,5, 0x1c6970,1, 0x1c6980,14, 0x1c69c0,12, 0x1c6a00,37, 0x1c6aa0,5, 0x1c6abc,3, 0x1c6acc,6, 0x1c6ae8,4, 0x1c6b00,5, 0x1c6b20,3, 0x1c6c00,75, 0x1c6d30,3, 0x1c6d40,3, 0x1c6d50,5, 0x1c6d70,1, 0x1c6d80,14, 0x1c6dc0,12, 0x1c6e00,37, 0x1c6ea0,5, 0x1c6ebc,3, 0x1c6ecc,6, 0x1c6ee8,4, 0x1c6f00,5, 0x1c6f20,3, 0x1c7000,75, 0x1c7130,3, 0x1c7140,3, 0x1c7150,5, 0x1c7170,1, 0x1c7180,14, 0x1c71c0,12, 0x1c7200,37, 0x1c72a0,5, 0x1c72bc,3, 0x1c72cc,6, 0x1c72e8,4, 0x1c7300,5, 0x1c7320,3, 0x1c7400,75, 0x1c7530,3, 0x1c7540,3, 0x1c7550,5, 0x1c7570,1, 0x1c7580,14, 0x1c75c0,12, 0x1c7600,37, 0x1c76a0,5, 0x1c76bc,3, 0x1c76cc,6, 0x1c76e8,4, 0x1c7700,5, 0x1c7720,3, 0x1c7800,75, 0x1c7930,3, 0x1c7940,3, 0x1c7950,5, 0x1c7970,1, 0x1c7980,14, 0x1c79c0,12, 0x1c7a00,37, 0x1c7aa0,5, 0x1c7abc,3, 0x1c7acc,6, 0x1c7ae8,4, 0x1c7b00,5, 0x1c7b20,3, 0x1c7c00,75, 0x1c7d30,3, 0x1c7d40,3, 0x1c7d50,5, 0x1c7d70,1, 0x1c7d80,14, 0x1c7dc0,12, 0x1c7e00,37, 0x1c7ea0,5, 0x1c7ebc,3, 0x1c7ecc,6, 0x1c7ee8,4, 0x1c7f00,5, 0x1c7f20,3, 0x1c8000,17, 0x1c8054,73, 0x1c81c0,1, 0x1c81d0,1, 0x1c81e0,11, 0x1c8210,3, 0x1c8220,3, 0x1c8230,4, 0x1c83c0,9, 0x1c83e8,5, 0x1c8400,36, 0x1c8494,2, 0x1c8510,13, 0x1c8548,3, 0x1c8558,4, 0x1c8600,40, 0x1c8800,4, 0x1c8a00,1, 0x1c8c00,1, 0x1c8c28,1, 0x1c8c50,1, 0x1c8c78,1, 0x1c8ca0,4, 0x1c8dac,1, 0x1c8dd8,4, 0x1c8e00,6, 0x1c8e20,6, 0x1c8e40,3, 0x1c9084,1, 0x1c908c,1, 0x1c9094,1, 0x1c909c,1, 0x1c90a4,1, 0x1c90ac,1, 0x1c90b4,1, 0x1c90bc,1, 0x1c9120,10, 0x1c9160,10, 0x1c91a0,10, 0x1c91e0,40, 0x1c92e0,10, 0x1c9320,10, 0x1c9560,8, 0x1c95a0,10, 0x1c95e0,5, 0x1c9600,10, 0x1c9660,21, 0x1ca804,1, 0x1ca80c,4, 0x1ca824,1, 0x1ca82c,4, 0x1ca844,1, 0x1ca84c,4, 0x1ca864,1, 0x1ca86c,4, 0x1ca884,1, 0x1ca88c,4, 0x1ca900,13, 0x1ca940,13, 0x1ca980,13, 0x1ca9c0,13, 0x1caa00,13, 0x1caa40,13, 0x1cab00,6, 0x1cab20,6, 0x1cab40,3, 0x1cab80,3, 0x1cac00,6, 0x1cac20,6, 0x1cac40,6, 0x1cac60,3, 0x1cac80,6, 0x1caca0,6, 0x1cacc0,6, 0x1cace0,3, 0x1cad00,6, 0x1cad20,6, 0x1cad40,6, 0x1cad60,3, 0x1cad80,6, 0x1cada0,6, 0x1cadc0,6, 0x1cade0,3, 0x1cae00,6, 0x1cae20,6, 0x1cae40,6, 0x1cae60,3, 0x1caf00,6, 0x1caf20,5, 0x1cc000,17, 0x1cc054,73, 0x1cc1c0,1, 0x1cc1d0,1, 0x1cc1e0,11, 0x1cc210,3, 0x1cc220,3, 0x1cc230,4, 0x1cc3c0,9, 0x1cc3e8,5, 0x1cc400,36, 0x1cc494,2, 0x1cc510,13, 0x1cc548,3, 0x1cc558,4, 0x1cc600,40, 0x1cc800,4, 0x1cca00,1, 0x1ccc00,1, 0x1ccc28,1, 0x1ccc50,1, 0x1ccc78,1, 0x1ccca0,4, 0x1ccdac,1, 0x1ccdd8,4, 0x1cce00,6, 0x1cce20,6, 0x1cce40,3, 0x1cd084,1, 0x1cd08c,1, 0x1cd094,1, 0x1cd09c,1, 0x1cd0a4,1, 0x1cd0ac,1, 0x1cd0b4,1, 0x1cd0bc,1, 0x1cd120,10, 0x1cd160,10, 0x1cd1a0,10, 0x1cd1e0,40, 0x1cd2e0,10, 0x1cd320,10, 0x1cd560,8, 0x1cd5a0,10, 0x1cd5e0,5, 0x1cd600,10, 0x1cd660,21, 0x1ce804,1, 0x1ce80c,4, 0x1ce824,1, 0x1ce82c,4, 0x1ce844,1, 0x1ce84c,4, 0x1ce864,1, 0x1ce86c,4, 0x1ce884,1, 0x1ce88c,4, 0x1ce900,13, 0x1ce940,13, 0x1ce980,13, 0x1ce9c0,13, 0x1cea00,13, 0x1cea40,13, 0x1ceb00,6, 0x1ceb20,6, 0x1ceb40,3, 0x1ceb80,3, 0x1cec00,6, 0x1cec20,6, 0x1cec40,6, 0x1cec60,3, 0x1cec80,6, 0x1ceca0,6, 0x1cecc0,6, 0x1cece0,3, 0x1ced00,6, 0x1ced20,6, 0x1ced40,6, 0x1ced60,3, 0x1ced80,6, 0x1ceda0,6, 0x1cedc0,6, 0x1cede0,3, 0x1cee00,6, 0x1cee20,6, 0x1cee40,6, 0x1cee60,3, 0x1cef00,6, 0x1cef20,5, 0x1d0000,17, 0x1d0054,73, 0x1d01c0,1, 0x1d01d0,1, 0x1d01e0,11, 0x1d0210,3, 0x1d0220,3, 0x1d0230,4, 0x1d03c0,9, 0x1d03e8,5, 0x1d0400,36, 0x1d0494,2, 0x1d0510,13, 0x1d0548,3, 0x1d0558,4, 0x1d0600,40, 0x1d0800,4, 0x1d0a00,1, 0x1d0c00,1, 0x1d0c28,1, 0x1d0c50,1, 0x1d0c78,1, 0x1d0ca0,4, 0x1d0dac,1, 0x1d0dd8,4, 0x1d0e00,6, 0x1d0e20,6, 0x1d0e40,3, 0x1d1084,1, 0x1d108c,1, 0x1d1094,1, 0x1d109c,1, 0x1d10a4,1, 0x1d10ac,1, 0x1d10b4,1, 0x1d10bc,1, 0x1d1120,10, 0x1d1160,10, 0x1d11a0,10, 0x1d11e0,40, 0x1d12e0,10, 0x1d1320,10, 0x1d1560,8, 0x1d15a0,10, 0x1d15e0,5, 0x1d1600,10, 0x1d1660,21, 0x1d2804,1, 0x1d280c,4, 0x1d2824,1, 0x1d282c,4, 0x1d2844,1, 0x1d284c,4, 0x1d2864,1, 0x1d286c,4, 0x1d2884,1, 0x1d288c,4, 0x1d2900,13, 0x1d2940,13, 0x1d2980,13, 0x1d29c0,13, 0x1d2a00,13, 0x1d2a40,13, 0x1d2b00,6, 0x1d2b20,6, 0x1d2b40,3, 0x1d2b80,3, 0x1d2c00,6, 0x1d2c20,6, 0x1d2c40,6, 0x1d2c60,3, 0x1d2c80,6, 0x1d2ca0,6, 0x1d2cc0,6, 0x1d2ce0,3, 0x1d2d00,6, 0x1d2d20,6, 0x1d2d40,6, 0x1d2d60,3, 0x1d2d80,6, 0x1d2da0,6, 0x1d2dc0,6, 0x1d2de0,3, 0x1d2e00,6, 0x1d2e20,6, 0x1d2e40,6, 0x1d2e60,3, 0x1d2f00,6, 0x1d2f20,5, 0x1d4000,17, 0x1d4054,73, 0x1d41c0,1, 0x1d41d0,1, 0x1d41e0,11, 0x1d4210,3, 0x1d4220,3, 0x1d4230,4, 0x1d43c0,9, 0x1d43e8,5, 0x1d4400,36, 0x1d4494,2, 0x1d4510,13, 0x1d4548,3, 0x1d4558,4, 0x1d4600,40, 0x1d4800,4, 0x1d4a00,1, 0x1d4c00,1, 0x1d4c28,1, 0x1d4c50,1, 0x1d4c78,1, 0x1d4ca0,4, 0x1d4dac,1, 0x1d4dd8,4, 0x1d4e00,6, 0x1d4e20,6, 0x1d4e40,3, 0x1d5084,1, 0x1d508c,1, 0x1d5094,1, 0x1d509c,1, 0x1d50a4,1, 0x1d50ac,1, 0x1d50b4,1, 0x1d50bc,1, 0x1d5120,10, 0x1d5160,10, 0x1d51a0,10, 0x1d51e0,40, 0x1d52e0,10, 0x1d5320,10, 0x1d5560,8, 0x1d55a0,10, 0x1d55e0,5, 0x1d5600,10, 0x1d5660,21, 0x1d6804,1, 0x1d680c,4, 0x1d6824,1, 0x1d682c,4, 0x1d6844,1, 0x1d684c,4, 0x1d6864,1, 0x1d686c,4, 0x1d6884,1, 0x1d688c,4, 0x1d6900,13, 0x1d6940,13, 0x1d6980,13, 0x1d69c0,13, 0x1d6a00,13, 0x1d6a40,13, 0x1d6b00,6, 0x1d6b20,6, 0x1d6b40,3, 0x1d6b80,3, 0x1d6c00,6, 0x1d6c20,6, 0x1d6c40,6, 0x1d6c60,3, 0x1d6c80,6, 0x1d6ca0,6, 0x1d6cc0,6, 0x1d6ce0,3, 0x1d6d00,6, 0x1d6d20,6, 0x1d6d40,6, 0x1d6d60,3, 0x1d6d80,6, 0x1d6da0,6, 0x1d6dc0,6, 0x1d6de0,3, 0x1d6e00,6, 0x1d6e20,6, 0x1d6e40,6, 0x1d6e60,3, 0x1d6f00,6, 0x1d6f20,5, 0x1d8000,1, 0x1d8028,1, 0x1d8050,1, 0x1d8078,1, 0x1d80a0,1, 0x1d81ac,1, 0x1d81d8,4, 0x1d8200,6, 0x1d8220,6, 0x1d8240,3, 0x1d8404,1, 0x1d840c,5, 0x1d8424,1, 0x1d842c,5, 0x1d8444,1, 0x1d844c,5, 0x1d8464,1, 0x1d846c,8, 0x1d8504,1, 0x1d850c,5, 0x1d8524,1, 0x1d852c,5, 0x1d8544,1, 0x1d854c,5, 0x1d8564,1, 0x1d856c,8, 0x1d8604,1, 0x1d860c,5, 0x1d8624,1, 0x1d862c,5, 0x1d8644,1, 0x1d864c,5, 0x1d8664,1, 0x1d866c,8, 0x1d8704,1, 0x1d870c,5, 0x1d8724,1, 0x1d872c,5, 0x1d8744,1, 0x1d874c,5, 0x1d8764,1, 0x1d876c,8, 0x1d8804,1, 0x1d880c,5, 0x1d8824,1, 0x1d882c,5, 0x1d8844,1, 0x1d884c,5, 0x1d8864,1, 0x1d886c,8, 0x1d8904,1, 0x1d890c,5, 0x1d8924,1, 0x1d892c,5, 0x1d8944,1, 0x1d894c,5, 0x1d8964,1, 0x1d896c,8, 0x1d8a04,1, 0x1d8a0c,5, 0x1d8a24,1, 0x1d8a2c,5, 0x1d8a44,1, 0x1d8a4c,5, 0x1d8a64,1, 0x1d8a6c,8, 0x1d8b04,1, 0x1d8b0c,5, 0x1d8b24,1, 0x1d8b2c,5, 0x1d8b44,1, 0x1d8b4c,5, 0x1d8b64,1, 0x1d8b6c,8, 0x1d8c00,56, 0x1d8d00,13, 0x1d8d40,13, 0x1d8d80,13, 0x1d8dc0,13, 0x1d8e00,13, 0x1d8e40,13, 0x1d8e80,13, 0x1d8ec0,13, 0x1d8f00,98, 0x1d9100,16, 0x1d9200,32, 0x1d9300,9, 0x1d9340,1, 0x1d9400,13, 0x1d9440,9, 0x1d9480,9, 0x1d94c4,2, 0x1d9500,13, 0x1d9540,13, 0x1d9580,13, 0x1d95c0,13, 0x1d9600,13, 0x1d9640,13, 0x1d9680,13, 0x1d96c0,13, 0x1d9700,13, 0x1d9900,6, 0x1d9920,6, 0x1d9940,6, 0x1d9960,6, 0x1d9980,6, 0x1d99a0,6, 0x1d99c0,6, 0x1d99e0,6, 0x1d9a00,6, 0x1d9a20,6, 0x1d9a40,6, 0x1d9a60,3, 0x1d9a80,3, 0x1d9b00,16, 0x1d9e00,20, 0x1d9e60,1, 0x1d9e80,1, 0x1d9e90,2, 0x1dc004,1, 0x1dc020,2, 0x1dc030,10, 0x1dc200,10, 0x1dc304,1, 0x1dc34c,45, 0x1dc404,1, 0x1dc40c,1, 0x1dc414,1, 0x1dc41c,1, 0x1dc424,1, 0x1dc42c,1, 0x1dc434,1, 0x1dc43c,1, 0x1dc444,1, 0x1dc44c,1, 0x1dc454,1, 0x1dc45c,1, 0x1dc464,1, 0x1dc46c,1, 0x1dc474,1, 0x1dc47c,1, 0x1dc484,1, 0x1dc48c,1, 0x1dc494,1, 0x1dc49c,1, 0x1dc4a4,1, 0x1dc4ac,1, 0x1dc4b4,1, 0x1dc4bc,1, 0x1dc4c4,1, 0x1dc4cc,1, 0x1dc4d4,1, 0x1dc4dc,1, 0x1dc4e4,1, 0x1dc4ec,1, 0x1dc4f4,1, 0x1dc4fc,1, 0x1dc504,1, 0x1dc50c,1, 0x1dc514,1, 0x1dc51c,1, 0x1dc524,1, 0x1dc52c,1, 0x1dc534,1, 0x1dc53c,1, 0x1dc544,1, 0x1dc54c,1, 0x1dc554,1, 0x1dc55c,1, 0x1dc564,1, 0x1dc56c,1, 0x1dc574,1, 0x1dc57c,1, 0x1dc584,1, 0x1dc58c,1, 0x1dc594,1, 0x1dc59c,1, 0x1dc5a4,1, 0x1dc5ac,1, 0x1dc5b4,1, 0x1dc5bc,1, 0x1dc5c4,1, 0x1dc5cc,1, 0x1dc5d4,1, 0x1dc5dc,1, 0x1dc5e4,1, 0x1dc5ec,1, 0x1dc5f4,1, 0x1dc5fc,1, 0x1dc604,1, 0x1dc60c,1, 0x1dc614,1, 0x1dc61c,1, 0x1dc624,1, 0x1dc62c,1, 0x1dc634,1, 0x1dc63c,1, 0x1dc700,16, 0x1dc748,16, 0x1dc790,16, 0x1dc7d8,16, 0x1dc820,16, 0x1dc868,16, 0x1dc8b0,16, 0x1dc8f8,16, 0x1dc940,16, 0x1dc988,16, 0x1dc9d0,16, 0x1dca18,16, 0x1dca60,16, 0x1dcaa8,16, 0x1dcaf0,16, 0x1dcb38,16, 0x1dcb80,16, 0x1dcc00,6, 0x1dcc20,6, 0x1dcc40,6, 0x1dcc60,6, 0x1dcc80,6, 0x1dcca0,6, 0x1dccc0,3, 0x1dce00,7, 0x1dce40,5, 0x1de000,2, 0x1de028,2, 0x1de050,2, 0x1de078,2, 0x1de0a4,1, 0x1de1ac,1, 0x1de1d8,4, 0x1de200,6, 0x1de220,6, 0x1de240,6, 0x1de260,6, 0x1de280,3, 0x1de400,152, 0x1de680,6, 0x1de6a0,6, 0x1de6c0,6, 0x1de6e0,3, 0x1de700,39, 0x1de7a0,14, 0x1de7e0,1, 0x1df000,2, 0x1df028,2, 0x1df050,2, 0x1df078,2, 0x1df0a4,1, 0x1df1ac,1, 0x1df1d8,4, 0x1df200,6, 0x1df220,6, 0x1df240,6, 0x1df260,6, 0x1df280,3, 0x1df400,152, 0x1df680,6, 0x1df6a0,6, 0x1df6c0,6, 0x1df6e0,3, 0x1df700,39, 0x1df7a0,14, 0x1df7e0,1, 0x1e8000,6, 0x1e8020,6, 0x1e8040,6, 0x1e8060,6, 0x1e8080,6, 0x1e80a0,6, 0x1e80c0,6, 0x1e80e0,6, 0x1e8100,6, 0x1e8120,3, 0x1e8200,1, 0x1e8210,1, 0x1e8220,2, 0x1ec000,7, 0x1ec024,5, 0x1ec040,16, 0x1ec084,1, 0x1ec090,4, 0x1ec100,80, 0x1ec244,16, 0x1ec288,16, 0x1ec2d0,1, 0x1ec304,1, 0x1ec378,270, 0x1ec800,6, 0x1ec820,6, 0x1ec840,6, 0x1ec860,3, 0x1ec880,2, 0x1ec8a0,8, 0x1ec8d0,19, 0x1edc00,2, 0x1ee004,1, 0x1ee030,28, 0x1ee100,6, 0x1ee120,6, 0x1ee140,6, 0x1ee160,3, 0x1ee180,13, 0x1ee1c0,2, 0x1ee204,1, 0x1ee300,64, 0x1ee404,1, 0x1ee470,36, 0x1ee504,1, 0x1ee558,42, 0x1ee604,1, 0x1ee670,36, 0x1ee704,1, 0x1ee760,40, 0x1ee804,1, 0x1ee818,26, 0x1ee884,1, 0x1ee8c0,16, 0x1ee904,1, 0x1ee930,65, 0x1eea80,21, 0x1eeb00,14, 0x1eeb80,20, 0x1eec00,13, 0x1eec80,8, 0x1eee00,6, 0x1eee20,6, 0x1eee40,6, 0x1eee60,6, 0x1eee80,6, 0x1eeea0,6, 0x1eeec0,6, 0x1eeee0,6, 0x1eef00,6, 0x1eef20,6, 0x1eef40,6, 0x1eef60,6, 0x1eef80,6, 0x1eefa0,6, 0x1eefc0,6, 0x1eefe0,3, 0x1ef204,1, 0x1ef20c,4, 0x1ef224,1, 0x1ef230,4, 0x1ef244,1, 0x1ef24c,1, 0x1ef254,5, 0x1ef284,1, 0x1ef28c,3, 0x1ef2a4,1, 0x1ef2ac,3, 0x1ef2c4,1, 0x1ef2cc,1, 0x1ef2d4,5, 0x1ef304,1, 0x1ef30c,8, 0x1ef344,1, 0x1ef34c,8, 0x1ef380,2, 0x1ef38c,8, 0x1ef400,22, 0x1ef480,22, 0x1ef500,13, 0x1ef540,13, 0x1ef580,18, 0x1ef600,18, 0x1ef680,14, 0x1ef6c0,14, 0x1ef700,18, 0x1ef780,18, 0x1ef800,12, 0x1ef840,12, 0x1ef880,7, 0x1ef904,1, 0x1ef934,19, 0x1ef9a0,2, 0x1ef9c0,6, 0x1efa00,13, 0x1efa80,20, 0x1efb00,9, 0x1efb28,2, 0x1efb80,6, 0x1efba0,3, 0x1efbc0,3, 0x1efc00,2, 0x1efc28,2, 0x1efc50,2, 0x1efc78,2, 0x1efca0,20, 0x1efdac,1, 0x1efdd8,4, 0x1efe00,6, 0x1efe20,6, 0x1efe40,6, 0x1efe60,6, 0x1efe80,3, 0x200000,4, 0x200014,1, 0x200020,3, 0x200030,3, 0x200040,8, 0x20007c,2, 0x2000a0,6, 0x2000c0,6, 0x2000e0,6, 0x200100,4, 0x200114,1, 0x200120,3, 0x200130,3, 0x200140,8, 0x20017c,2, 0x2001a0,6, 0x2001c0,6, 0x2001e0,6, 0x200200,4, 0x200214,1, 0x200220,3, 0x200230,3, 0x200240,8, 0x20027c,2, 0x2002a0,6, 0x2002c0,6, 0x2002e0,6, 0x200300,4, 0x200314,1, 0x200320,3, 0x200330,3, 0x200340,8, 0x20037c,2, 0x2003a0,6, 0x2003c0,6, 0x2003e0,6, 0x200400,6, 0x200440,6, 0x200480,3, 0x2004c0,3, 0x200500,2, 0x20050c,4, 0x200520,2, 0x20052c,4, 0x200540,2, 0x200c00,13, 0x200c40,12, 0x200c80,13, 0x200cc0,12, 0x200d00,14, 0x200d40,6, 0x200d80,14, 0x200dc0,6, 0x200e00,11, 0x200e40,6, 0x200e60,6, 0x200e80,6, 0x200ea0,6, 0x201000,2, 0x201014,4, 0x201040,3, 0x201050,3, 0x201080,43, 0x201140,11, 0x201180,1, 0x20119c,15, 0x201200,12, 0x201300,1, 0x201308,6, 0x201324,10, 0x201380,1, 0x201388,6, 0x2013a4,10, 0x201400,7, 0x201420,7, 0x201500,12, 0x201540,12, 0x201580,4, 0x201800,14, 0x20183c,9, 0x201864,6, 0x201880,2, 0x201890,4, 0x201900,14, 0x20193c,9, 0x201964,6, 0x201980,2, 0x201990,4, 0x201a00,16, 0x201a50,4, 0x201a80,16, 0x201ad0,4, 0x201b00,6, 0x201b20,6, 0x201b40,3, 0x201b80,6, 0x201ba0,6, 0x201bc0,3, 0x201c00,6, 0x201c20,6, 0x201c40,3, 0x201c80,6, 0x201ca0,6, 0x201cc0,3, 0x201d10,2, 0x201d1c,1, 0x201d50,2, 0x201d5c,1, 0x201d80,1, 0x201da0,1, 0x201da8,4, 0x201dc0,1, 0x201de0,1, 0x201de8,4, 0x201e00,13, 0x201e40,6, 0x201e60,6, 0x201e80,6, 0x201ea0,6, 0x201ec0,7, 0x201ee0,7, 0x201f00,12, 0x201f34,2, 0x201f40,3, 0x201f50,8, 0x202000,4, 0x202014,1, 0x202020,3, 0x202030,3, 0x202040,8, 0x20207c,2, 0x2020a0,6, 0x2020c0,6, 0x2020e0,6, 0x202100,4, 0x202114,1, 0x202120,3, 0x202130,3, 0x202140,8, 0x20217c,2, 0x2021a0,6, 0x2021c0,6, 0x2021e0,6, 0x202200,4, 0x202214,1, 0x202220,3, 0x202230,3, 0x202240,8, 0x20227c,2, 0x2022a0,6, 0x2022c0,6, 0x2022e0,6, 0x202300,4, 0x202314,1, 0x202320,3, 0x202330,3, 0x202340,8, 0x20237c,2, 0x2023a0,6, 0x2023c0,6, 0x2023e0,6, 0x202400,6, 0x202440,6, 0x202480,3, 0x2024c0,3, 0x202500,2, 0x20250c,4, 0x202520,2, 0x20252c,4, 0x202540,2, 0x202c00,13, 0x202c40,12, 0x202c80,13, 0x202cc0,12, 0x202d00,14, 0x202d40,6, 0x202d80,14, 0x202dc0,6, 0x202e00,11, 0x202e40,6, 0x202e60,6, 0x202e80,6, 0x202ea0,6, 0x203000,2, 0x203014,4, 0x203040,3, 0x203050,3, 0x203080,43, 0x203140,11, 0x203180,1, 0x20319c,15, 0x203200,12, 0x203300,1, 0x203308,6, 0x203324,10, 0x203380,1, 0x203388,6, 0x2033a4,10, 0x203400,7, 0x203420,7, 0x203500,12, 0x203540,12, 0x203580,4, 0x203800,14, 0x20383c,9, 0x203864,6, 0x203880,2, 0x203890,4, 0x203900,14, 0x20393c,9, 0x203964,6, 0x203980,2, 0x203990,4, 0x203a00,16, 0x203a50,4, 0x203a80,16, 0x203ad0,4, 0x203b00,6, 0x203b20,6, 0x203b40,3, 0x203b80,6, 0x203ba0,6, 0x203bc0,3, 0x203c00,6, 0x203c20,6, 0x203c40,3, 0x203c80,6, 0x203ca0,6, 0x203cc0,3, 0x203d10,2, 0x203d1c,1, 0x203d50,2, 0x203d5c,1, 0x203d80,1, 0x203da0,1, 0x203da8,4, 0x203dc0,1, 0x203de0,1, 0x203de8,4, 0x203e00,13, 0x203e40,6, 0x203e60,6, 0x203e80,6, 0x203ea0,6, 0x203ec0,7, 0x203ee0,7, 0x203f00,12, 0x203f34,2, 0x203f40,3, 0x203f50,8, 0x204000,29, 0x204078,4, 0x204090,2, 0x2040a0,7, 0x2040c0,11, 0x204100,14, 0x204140,14, 0x204180,61, 0x204278,4, 0x204290,2, 0x2042a0,7, 0x2042c0,11, 0x204300,14, 0x204340,14, 0x204380,61, 0x204478,4, 0x204490,2, 0x2044a0,7, 0x2044c0,11, 0x204500,14, 0x204540,14, 0x204580,61, 0x204678,4, 0x204690,2, 0x2046a0,7, 0x2046c0,11, 0x204700,14, 0x204740,14, 0x204780,69, 0x204c00,6, 0x204c40,14, 0x204c80,9, 0x204d00,9, 0x204d2c,1, 0x204d40,3, 0x204d60,1, 0x204d80,3, 0x204e00,2, 0x204e0c,1, 0x204e14,5, 0x204e2c,1, 0x204e34,5, 0x204e4c,1, 0x204e54,5, 0x204e6c,1, 0x204e74,5, 0x204e8c,1, 0x204e94,5, 0x204eac,1, 0x204eb4,3, 0x205000,29, 0x205078,4, 0x205090,2, 0x2050a0,7, 0x2050c0,11, 0x205100,14, 0x205140,14, 0x205180,61, 0x205278,4, 0x205290,2, 0x2052a0,7, 0x2052c0,11, 0x205300,14, 0x205340,14, 0x205380,61, 0x205478,4, 0x205490,2, 0x2054a0,7, 0x2054c0,11, 0x205500,14, 0x205540,14, 0x205580,61, 0x205678,4, 0x205690,2, 0x2056a0,7, 0x2056c0,11, 0x205700,14, 0x205740,14, 0x205780,69, 0x205c00,6, 0x205c40,14, 0x205c80,9, 0x205d00,9, 0x205d2c,1, 0x205d40,3, 0x205d60,1, 0x205d80,3, 0x205e00,2, 0x205e0c,1, 0x205e14,5, 0x205e2c,1, 0x205e34,5, 0x205e4c,1, 0x205e54,5, 0x205e6c,1, 0x205e74,5, 0x205e8c,1, 0x205e94,5, 0x205eac,1, 0x205eb4,3, 0x206000,14, 0x206040,6, 0x206060,6, 0x206080,6, 0x2060a0,3, 0x206100,9, 0x206204,1, 0x20620c,6, 0x206240,13, 0x206280,16, 0x206800,19, 0x206850,10, 0x206880,19, 0x2068d0,10, 0x206900,19, 0x206950,10, 0x206980,19, 0x2069d0,10, 0x206a00,19, 0x206a50,10, 0x206a80,19, 0x206ad0,10, 0x206b00,19, 0x206b50,10, 0x206b80,19, 0x206bd0,10, 0x206c00,19, 0x206c60,6, 0x206c84,1, 0x206c94,8, 0x206cb8,14, 0x207000,1, 0x207028,1, 0x207050,1, 0x207078,1, 0x2070a0,4, 0x2071ac,1, 0x2071d8,4, 0x207200,6, 0x207220,6, 0x207240,3, 0x207400,1, 0x207408,3, 0x207438,1, 0x207444,1, 0x207450,6, 0x207500,7, 0x207520,6, 0x207540,6, 0x207560,3, 0x207570,3, 0x208000,6, 0x208020,3, 0x208030,1, 0x208038,4, 0x208050,1, 0x208400,1, 0x208428,1, 0x208450,1, 0x208478,1, 0x2084a0,6, 0x2085ac,1, 0x2085d8,4, 0x208600,6, 0x208620,6, 0x208640,3, 0x208800,6, 0x208820,3, 0x208830,4, 0x208918,2, 0x208924,1, 0x208934,3, 0x208958,2, 0x208964,1, 0x208974,3, 0x208998,2, 0x2089a4,1, 0x2089b4,3, 0x2089d8,2, 0x2089e4,1, 0x2089f4,3, 0x209020,4, 0x209040,11, 0x209074,2, 0x209080,4, 0x2090b0,22, 0x209110,2, 0x209120,22, 0x209180,2, 0x2091a0,6, 0x2091c0,9, 0x209200,42, 0x2092c0,1, 0x2092c8,13, 0x209300,25, 0x20936c,4, 0x209380,2, 0x2093a0,1, 0x2093c0,11, 0x209404,3, 0x209420,11, 0x209480,6, 0x209500,1, 0x209520,6, 0x209540,3, 0x209550,7, 0x209570,18, 0x2095bc,5, 0x209800,480, 0x20a020,4, 0x20a040,11, 0x20a074,2, 0x20a080,4, 0x20a0b0,22, 0x20a110,2, 0x20a120,22, 0x20a180,2, 0x20a1a0,6, 0x20a1c0,9, 0x20a200,42, 0x20a2c0,1, 0x20a2c8,13, 0x20a300,25, 0x20a36c,4, 0x20a380,2, 0x20a3a0,1, 0x20a3c0,11, 0x20a404,3, 0x20a420,11, 0x20a480,6, 0x20a500,1, 0x20a520,6, 0x20a540,3, 0x20a550,7, 0x20a570,18, 0x20a5bc,5, 0x20a800,480, 0x20b020,4, 0x20b040,11, 0x20b074,2, 0x20b080,4, 0x20b0b0,22, 0x20b110,2, 0x20b120,22, 0x20b180,2, 0x20b1a0,6, 0x20b1c0,9, 0x20b200,42, 0x20b2c0,1, 0x20b2c8,13, 0x20b300,25, 0x20b36c,4, 0x20b380,2, 0x20b3a0,1, 0x20b3c0,11, 0x20b404,3, 0x20b420,11, 0x20b480,6, 0x20b500,1, 0x20b520,6, 0x20b540,3, 0x20b550,7, 0x20b570,18, 0x20b5bc,5, 0x20b800,480, 0x20c020,4, 0x20c040,11, 0x20c074,2, 0x20c080,4, 0x20c0b0,22, 0x20c110,2, 0x20c120,22, 0x20c180,2, 0x20c1a0,6, 0x20c1c0,9, 0x20c200,42, 0x20c2c0,1, 0x20c2c8,13, 0x20c300,25, 0x20c36c,4, 0x20c380,2, 0x20c3a0,1, 0x20c3c0,11, 0x20c404,3, 0x20c420,11, 0x20c480,6, 0x20c500,1, 0x20c520,6, 0x20c540,3, 0x20c550,7, 0x20c570,18, 0x20c5bc,5, 0x20c800,480, 0x20f800,5, 0x20f818,1, 0x20f854,6, 0x20f880,4, 0x20f8a4,1, 0x20f8ac,2, 0x20f900,5, 0x20f918,1, 0x20f954,6, 0x20f980,4, 0x20f9a4,1, 0x20f9ac,2, 0x20fa00,5, 0x20fa18,1, 0x20fa54,6, 0x20fa80,4, 0x20faa4,1, 0x20faac,2, 0x20fb00,5, 0x20fb18,1, 0x20fb54,6, 0x20fb80,4, 0x20fba4,1, 0x20fbac,2, 0x214000,3, 0x214018,10, 0x214100,58, 0x2141f0,1, 0x214400,3, 0x214418,10, 0x214500,58, 0x2145f0,1, 0x214800,3, 0x214810,3, 0x214820,6, 0x214880,9, 0x2148c0,9, 0x214900,8, 0x214938,2, 0x214944,1, 0x214954,3, 0x214980,8, 0x2149b8,2, 0x2149c4,1, 0x2149d4,3, 0x215000,3, 0x215018,10, 0x215100,58, 0x2151f0,1, 0x215400,3, 0x215418,10, 0x215500,58, 0x2155f0,1, 0x215800,3, 0x215810,3, 0x215820,6, 0x215880,9, 0x2158c0,9, 0x215900,8, 0x215938,2, 0x215944,1, 0x215954,3, 0x215980,8, 0x2159b8,2, 0x2159c4,1, 0x2159d4,3, 0x216004,7, 0x216024,1, 0x216030,4, 0x216300,5, 0x21631c,2, 0x216600,10, 0x216630,1, 0x216640,10, 0x216670,1, 0x216700,10, 0x216730,1, 0x216740,10, 0x216770,1, 0x216800,19, 0x216890,15, 0x216910,15, 0x216a00,10, 0x216ab8,4, 0x216b00,3, 0x216b10,1, 0x216e00,6, 0x216f00,5, 0x217000,65, 0x217800,6, 0x217820,6, 0x217840,6, 0x217860,6, 0x217880,6, 0x2178a0,6, 0x2178c0,6, 0x2178e0,3, 0x217900,6, 0x217920,6, 0x217940,6, 0x217960,6, 0x217980,6, 0x2179a0,6, 0x2179c0,6, 0x2179e0,3, 0x217a00,6, 0x217a20,6, 0x217a40,3, 0x217a80,7, 0x217aa0,7, 0x217ac0,9, 0x217b00,9, 0x217b40,10, 0x217b80,10, 0x217bc0,10, 0x217c00,10, 0x217c40,10, 0x217c80,10, 0x217cc0,3, 0x217e40,7, 0x217e60,7, 0x217e80,7, 0x217ea0,7, 0x217ec0,7, 0x217ee0,7, 0x217f00,7, 0x217f20,7, 0x217f40,7, 0x217f60,4, 0x217f78,13, 0x218000,2, 0x21800c,3, 0x218028,2, 0x218038,2, 0x218080,29, 0x2180f8,1, 0x218100,13, 0x218140,13, 0x218500,6, 0x218520,6, 0x218540,3, 0x218580,10, 0x2185c0,15, 0x218600,2, 0x218618,5, 0x218630,1, 0x218800,2, 0x21880c,3, 0x218828,2, 0x218838,2, 0x218880,29, 0x2188f8,1, 0x218900,13, 0x218940,13, 0x218d00,6, 0x218d20,6, 0x218d40,3, 0x218d80,10, 0x218dc0,15, 0x218e00,2, 0x218e18,5, 0x218e30,1, 0x219800,3, 0x219828,3, 0x219850,3, 0x219878,3, 0x2198a0,9, 0x2199ac,1, 0x2199d8,4, 0x219a00,6, 0x219a20,6, 0x219a40,6, 0x219a60,6, 0x219a80,6, 0x219aa0,6, 0x219ac0,3, 0x219c00,6, 0x219c20,3, 0x219c40,2, 0x219c60,1, 0x220000,4, 0x220014,1, 0x220020,3, 0x220030,3, 0x220040,8, 0x22007c,2, 0x2200a0,6, 0x2200c0,6, 0x2200e0,6, 0x220100,4, 0x220114,1, 0x220120,3, 0x220130,3, 0x220140,8, 0x22017c,2, 0x2201a0,6, 0x2201c0,6, 0x2201e0,6, 0x220200,4, 0x220214,1, 0x220220,3, 0x220230,3, 0x220240,8, 0x22027c,2, 0x2202a0,6, 0x2202c0,6, 0x2202e0,6, 0x220300,4, 0x220314,1, 0x220320,3, 0x220330,3, 0x220340,8, 0x22037c,2, 0x2203a0,6, 0x2203c0,6, 0x2203e0,6, 0x220400,6, 0x220440,6, 0x220480,3, 0x2204c0,3, 0x220500,2, 0x22050c,4, 0x220520,2, 0x22052c,4, 0x220540,2, 0x220c00,13, 0x220c40,12, 0x220c80,13, 0x220cc0,12, 0x220d00,14, 0x220d40,6, 0x220d80,14, 0x220dc0,6, 0x220e00,11, 0x220e40,6, 0x220e60,6, 0x220e80,6, 0x220ea0,6, 0x221000,2, 0x221014,4, 0x221040,3, 0x221050,3, 0x221080,43, 0x221140,11, 0x221180,1, 0x22119c,15, 0x221200,12, 0x221300,1, 0x221308,6, 0x221324,10, 0x221380,1, 0x221388,6, 0x2213a4,10, 0x221400,7, 0x221420,7, 0x221500,12, 0x221540,12, 0x221580,4, 0x221800,14, 0x22183c,9, 0x221864,6, 0x221880,2, 0x221890,4, 0x221900,14, 0x22193c,9, 0x221964,6, 0x221980,2, 0x221990,4, 0x221a00,16, 0x221a50,4, 0x221a80,16, 0x221ad0,4, 0x221b00,6, 0x221b20,6, 0x221b40,3, 0x221b80,6, 0x221ba0,6, 0x221bc0,3, 0x221c00,6, 0x221c20,6, 0x221c40,3, 0x221c80,6, 0x221ca0,6, 0x221cc0,3, 0x221d10,2, 0x221d1c,1, 0x221d50,2, 0x221d5c,1, 0x221d80,1, 0x221da0,1, 0x221da8,4, 0x221dc0,1, 0x221de0,1, 0x221de8,4, 0x221e00,13, 0x221e40,6, 0x221e60,6, 0x221e80,6, 0x221ea0,6, 0x221ec0,7, 0x221ee0,7, 0x221f00,12, 0x221f34,2, 0x221f40,3, 0x221f50,8, 0x222000,4, 0x222014,1, 0x222020,3, 0x222030,3, 0x222040,8, 0x22207c,2, 0x2220a0,6, 0x2220c0,6, 0x2220e0,6, 0x222100,4, 0x222114,1, 0x222120,3, 0x222130,3, 0x222140,8, 0x22217c,2, 0x2221a0,6, 0x2221c0,6, 0x2221e0,6, 0x222200,4, 0x222214,1, 0x222220,3, 0x222230,3, 0x222240,8, 0x22227c,2, 0x2222a0,6, 0x2222c0,6, 0x2222e0,6, 0x222300,4, 0x222314,1, 0x222320,3, 0x222330,3, 0x222340,8, 0x22237c,2, 0x2223a0,6, 0x2223c0,6, 0x2223e0,6, 0x222400,6, 0x222440,6, 0x222480,3, 0x2224c0,3, 0x222500,2, 0x22250c,4, 0x222520,2, 0x22252c,4, 0x222540,2, 0x222c00,13, 0x222c40,12, 0x222c80,13, 0x222cc0,12, 0x222d00,14, 0x222d40,6, 0x222d80,14, 0x222dc0,6, 0x222e00,11, 0x222e40,6, 0x222e60,6, 0x222e80,6, 0x222ea0,6, 0x223000,2, 0x223014,4, 0x223040,3, 0x223050,3, 0x223080,43, 0x223140,11, 0x223180,1, 0x22319c,15, 0x223200,12, 0x223300,1, 0x223308,6, 0x223324,10, 0x223380,1, 0x223388,6, 0x2233a4,10, 0x223400,7, 0x223420,7, 0x223500,12, 0x223540,12, 0x223580,4, 0x223800,14, 0x22383c,9, 0x223864,6, 0x223880,2, 0x223890,4, 0x223900,14, 0x22393c,9, 0x223964,6, 0x223980,2, 0x223990,4, 0x223a00,16, 0x223a50,4, 0x223a80,16, 0x223ad0,4, 0x223b00,6, 0x223b20,6, 0x223b40,3, 0x223b80,6, 0x223ba0,6, 0x223bc0,3, 0x223c00,6, 0x223c20,6, 0x223c40,3, 0x223c80,6, 0x223ca0,6, 0x223cc0,3, 0x223d10,2, 0x223d1c,1, 0x223d50,2, 0x223d5c,1, 0x223d80,1, 0x223da0,1, 0x223da8,4, 0x223dc0,1, 0x223de0,1, 0x223de8,4, 0x223e00,13, 0x223e40,6, 0x223e60,6, 0x223e80,6, 0x223ea0,6, 0x223ec0,7, 0x223ee0,7, 0x223f00,12, 0x223f34,2, 0x223f40,3, 0x223f50,8, 0x224000,29, 0x224078,4, 0x224090,2, 0x2240a0,7, 0x2240c0,11, 0x224100,14, 0x224140,14, 0x224180,61, 0x224278,4, 0x224290,2, 0x2242a0,7, 0x2242c0,11, 0x224300,14, 0x224340,14, 0x224380,61, 0x224478,4, 0x224490,2, 0x2244a0,7, 0x2244c0,11, 0x224500,14, 0x224540,14, 0x224580,61, 0x224678,4, 0x224690,2, 0x2246a0,7, 0x2246c0,11, 0x224700,14, 0x224740,14, 0x224780,69, 0x224c00,6, 0x224c40,14, 0x224c80,9, 0x224d00,9, 0x224d2c,1, 0x224d40,3, 0x224d60,1, 0x224d80,3, 0x224e00,2, 0x224e0c,1, 0x224e14,5, 0x224e2c,1, 0x224e34,5, 0x224e4c,1, 0x224e54,5, 0x224e6c,1, 0x224e74,5, 0x224e8c,1, 0x224e94,5, 0x224eac,1, 0x224eb4,3, 0x225000,29, 0x225078,4, 0x225090,2, 0x2250a0,7, 0x2250c0,11, 0x225100,14, 0x225140,14, 0x225180,61, 0x225278,4, 0x225290,2, 0x2252a0,7, 0x2252c0,11, 0x225300,14, 0x225340,14, 0x225380,61, 0x225478,4, 0x225490,2, 0x2254a0,7, 0x2254c0,11, 0x225500,14, 0x225540,14, 0x225580,61, 0x225678,4, 0x225690,2, 0x2256a0,7, 0x2256c0,11, 0x225700,14, 0x225740,14, 0x225780,69, 0x225c00,6, 0x225c40,14, 0x225c80,9, 0x225d00,9, 0x225d2c,1, 0x225d40,3, 0x225d60,1, 0x225d80,3, 0x225e00,2, 0x225e0c,1, 0x225e14,5, 0x225e2c,1, 0x225e34,5, 0x225e4c,1, 0x225e54,5, 0x225e6c,1, 0x225e74,5, 0x225e8c,1, 0x225e94,5, 0x225eac,1, 0x225eb4,3, 0x226000,14, 0x226040,6, 0x226060,6, 0x226080,6, 0x2260a0,3, 0x226100,9, 0x226204,1, 0x22620c,6, 0x226240,13, 0x226280,16, 0x226800,19, 0x226850,10, 0x226880,19, 0x2268d0,10, 0x226900,19, 0x226950,10, 0x226980,19, 0x2269d0,10, 0x226a00,19, 0x226a50,10, 0x226a80,19, 0x226ad0,10, 0x226b00,19, 0x226b50,10, 0x226b80,19, 0x226bd0,10, 0x226c00,19, 0x226c60,6, 0x226c84,1, 0x226c94,8, 0x226cb8,14, 0x227000,1, 0x227028,1, 0x227050,1, 0x227078,1, 0x2270a0,4, 0x2271ac,1, 0x2271d8,4, 0x227200,6, 0x227220,6, 0x227240,3, 0x227400,1, 0x227408,3, 0x227438,1, 0x227444,1, 0x227450,6, 0x227500,7, 0x227520,6, 0x227540,6, 0x227560,3, 0x227570,3, 0x228000,6, 0x228020,3, 0x228030,1, 0x228038,4, 0x228050,1, 0x228400,1, 0x228428,1, 0x228450,1, 0x228478,1, 0x2284a0,6, 0x2285ac,1, 0x2285d8,4, 0x228600,6, 0x228620,6, 0x228640,3, 0x228800,6, 0x228820,3, 0x228830,4, 0x228918,2, 0x228924,1, 0x228934,3, 0x228958,2, 0x228964,1, 0x228974,3, 0x228998,2, 0x2289a4,1, 0x2289b4,3, 0x2289d8,2, 0x2289e4,1, 0x2289f4,3, 0x229020,4, 0x229040,11, 0x229074,2, 0x229080,4, 0x2290b0,22, 0x229110,2, 0x229120,22, 0x229180,2, 0x2291a0,6, 0x2291c0,9, 0x229200,42, 0x2292c0,1, 0x2292c8,13, 0x229300,25, 0x22936c,4, 0x229380,2, 0x2293a0,1, 0x2293c0,11, 0x229404,3, 0x229420,11, 0x229480,6, 0x229500,1, 0x229520,6, 0x229540,3, 0x229550,7, 0x229570,18, 0x2295bc,5, 0x229800,480, 0x22a020,4, 0x22a040,11, 0x22a074,2, 0x22a080,4, 0x22a0b0,22, 0x22a110,2, 0x22a120,22, 0x22a180,2, 0x22a1a0,6, 0x22a1c0,9, 0x22a200,42, 0x22a2c0,1, 0x22a2c8,13, 0x22a300,25, 0x22a36c,4, 0x22a380,2, 0x22a3a0,1, 0x22a3c0,11, 0x22a404,3, 0x22a420,11, 0x22a480,6, 0x22a500,1, 0x22a520,6, 0x22a540,3, 0x22a550,7, 0x22a570,18, 0x22a5bc,5, 0x22a800,480, 0x22b020,4, 0x22b040,11, 0x22b074,2, 0x22b080,4, 0x22b0b0,22, 0x22b110,2, 0x22b120,22, 0x22b180,2, 0x22b1a0,6, 0x22b1c0,9, 0x22b200,42, 0x22b2c0,1, 0x22b2c8,13, 0x22b300,25, 0x22b36c,4, 0x22b380,2, 0x22b3a0,1, 0x22b3c0,11, 0x22b404,3, 0x22b420,11, 0x22b480,6, 0x22b500,1, 0x22b520,6, 0x22b540,3, 0x22b550,7, 0x22b570,18, 0x22b5bc,5, 0x22b800,480, 0x22c020,4, 0x22c040,11, 0x22c074,2, 0x22c080,4, 0x22c0b0,22, 0x22c110,2, 0x22c120,22, 0x22c180,2, 0x22c1a0,6, 0x22c1c0,9, 0x22c200,42, 0x22c2c0,1, 0x22c2c8,13, 0x22c300,25, 0x22c36c,4, 0x22c380,2, 0x22c3a0,1, 0x22c3c0,11, 0x22c404,3, 0x22c420,11, 0x22c480,6, 0x22c500,1, 0x22c520,6, 0x22c540,3, 0x22c550,7, 0x22c570,18, 0x22c5bc,5, 0x22c800,480, 0x22f800,5, 0x22f818,1, 0x22f854,6, 0x22f880,4, 0x22f8a4,1, 0x22f8ac,2, 0x22f900,5, 0x22f918,1, 0x22f954,6, 0x22f980,4, 0x22f9a4,1, 0x22f9ac,2, 0x22fa00,5, 0x22fa18,1, 0x22fa54,6, 0x22fa80,4, 0x22faa4,1, 0x22faac,2, 0x22fb00,5, 0x22fb18,1, 0x22fb54,6, 0x22fb80,4, 0x22fba4,1, 0x22fbac,2, 0x234000,3, 0x234018,10, 0x234100,58, 0x2341f0,1, 0x234400,3, 0x234418,10, 0x234500,58, 0x2345f0,1, 0x234800,3, 0x234810,3, 0x234820,6, 0x234880,9, 0x2348c0,9, 0x234900,8, 0x234938,2, 0x234944,1, 0x234954,3, 0x234980,8, 0x2349b8,2, 0x2349c4,1, 0x2349d4,3, 0x235000,3, 0x235018,10, 0x235100,58, 0x2351f0,1, 0x235400,3, 0x235418,10, 0x235500,58, 0x2355f0,1, 0x235800,3, 0x235810,3, 0x235820,6, 0x235880,9, 0x2358c0,9, 0x235900,8, 0x235938,2, 0x235944,1, 0x235954,3, 0x235980,8, 0x2359b8,2, 0x2359c4,1, 0x2359d4,3, 0x236004,7, 0x236024,1, 0x236030,4, 0x236300,5, 0x23631c,2, 0x236600,10, 0x236630,1, 0x236640,10, 0x236670,1, 0x236700,10, 0x236730,1, 0x236740,10, 0x236770,1, 0x236800,19, 0x236890,15, 0x236910,15, 0x236a00,10, 0x236ab8,4, 0x236b00,3, 0x236b10,1, 0x236e00,6, 0x236f00,5, 0x237000,65, 0x237800,6, 0x237820,6, 0x237840,6, 0x237860,6, 0x237880,6, 0x2378a0,6, 0x2378c0,6, 0x2378e0,3, 0x237900,6, 0x237920,6, 0x237940,6, 0x237960,6, 0x237980,6, 0x2379a0,6, 0x2379c0,6, 0x2379e0,3, 0x237a00,6, 0x237a20,6, 0x237a40,3, 0x237a80,7, 0x237aa0,7, 0x237ac0,9, 0x237b00,9, 0x237b40,10, 0x237b80,10, 0x237bc0,10, 0x237c00,10, 0x237c40,10, 0x237c80,10, 0x237cc0,3, 0x237e40,7, 0x237e60,7, 0x237e80,7, 0x237ea0,7, 0x237ec0,7, 0x237ee0,7, 0x237f00,7, 0x237f20,7, 0x237f40,7, 0x237f60,4, 0x237f78,13, 0x238000,2, 0x23800c,3, 0x238028,2, 0x238038,2, 0x238080,29, 0x2380f8,1, 0x238100,13, 0x238140,13, 0x238500,6, 0x238520,6, 0x238540,3, 0x238580,10, 0x2385c0,15, 0x238600,2, 0x238618,5, 0x238630,1, 0x238800,2, 0x23880c,3, 0x238828,2, 0x238838,2, 0x238880,29, 0x2388f8,1, 0x238900,13, 0x238940,13, 0x238d00,6, 0x238d20,6, 0x238d40,3, 0x238d80,10, 0x238dc0,15, 0x238e00,2, 0x238e18,5, 0x238e30,1, 0x239800,3, 0x239828,3, 0x239850,3, 0x239878,3, 0x2398a0,9, 0x2399ac,1, 0x2399d8,4, 0x239a00,6, 0x239a20,6, 0x239a40,6, 0x239a60,6, 0x239a80,6, 0x239aa0,6, 0x239ac0,3, 0x239c00,6, 0x239c20,3, 0x239c40,2, 0x239c60,1, 0x240000,4, 0x240014,1, 0x240020,3, 0x240030,3, 0x240040,8, 0x24007c,2, 0x2400a0,6, 0x2400c0,6, 0x2400e0,6, 0x240100,4, 0x240114,1, 0x240120,3, 0x240130,3, 0x240140,8, 0x24017c,2, 0x2401a0,6, 0x2401c0,6, 0x2401e0,6, 0x240200,4, 0x240214,1, 0x240220,3, 0x240230,3, 0x240240,8, 0x24027c,2, 0x2402a0,6, 0x2402c0,6, 0x2402e0,6, 0x240300,4, 0x240314,1, 0x240320,3, 0x240330,3, 0x240340,8, 0x24037c,2, 0x2403a0,6, 0x2403c0,6, 0x2403e0,6, 0x240400,6, 0x240440,6, 0x240480,3, 0x2404c0,3, 0x240500,2, 0x24050c,4, 0x240520,2, 0x24052c,4, 0x240540,2, 0x240c00,13, 0x240c40,12, 0x240c80,13, 0x240cc0,12, 0x240d00,14, 0x240d40,6, 0x240d80,14, 0x240dc0,6, 0x240e00,11, 0x240e40,6, 0x240e60,6, 0x240e80,6, 0x240ea0,6, 0x241000,2, 0x241014,4, 0x241040,3, 0x241050,3, 0x241080,43, 0x241140,11, 0x241180,1, 0x24119c,15, 0x241200,12, 0x241300,1, 0x241308,6, 0x241324,10, 0x241380,1, 0x241388,6, 0x2413a4,10, 0x241400,7, 0x241420,7, 0x241500,12, 0x241540,12, 0x241580,4, 0x241800,14, 0x24183c,9, 0x241864,6, 0x241880,2, 0x241890,4, 0x241900,14, 0x24193c,9, 0x241964,6, 0x241980,2, 0x241990,4, 0x241a00,16, 0x241a50,4, 0x241a80,16, 0x241ad0,4, 0x241b00,6, 0x241b20,6, 0x241b40,3, 0x241b80,6, 0x241ba0,6, 0x241bc0,3, 0x241c00,6, 0x241c20,6, 0x241c40,3, 0x241c80,6, 0x241ca0,6, 0x241cc0,3, 0x241d10,2, 0x241d1c,1, 0x241d50,2, 0x241d5c,1, 0x241d80,1, 0x241da0,1, 0x241da8,4, 0x241dc0,1, 0x241de0,1, 0x241de8,4, 0x241e00,13, 0x241e40,6, 0x241e60,6, 0x241e80,6, 0x241ea0,6, 0x241ec0,7, 0x241ee0,7, 0x241f00,12, 0x241f34,2, 0x241f40,3, 0x241f50,8, 0x242000,4, 0x242014,1, 0x242020,3, 0x242030,3, 0x242040,8, 0x24207c,2, 0x2420a0,6, 0x2420c0,6, 0x2420e0,6, 0x242100,4, 0x242114,1, 0x242120,3, 0x242130,3, 0x242140,8, 0x24217c,2, 0x2421a0,6, 0x2421c0,6, 0x2421e0,6, 0x242200,4, 0x242214,1, 0x242220,3, 0x242230,3, 0x242240,8, 0x24227c,2, 0x2422a0,6, 0x2422c0,6, 0x2422e0,6, 0x242300,4, 0x242314,1, 0x242320,3, 0x242330,3, 0x242340,8, 0x24237c,2, 0x2423a0,6, 0x2423c0,6, 0x2423e0,6, 0x242400,6, 0x242440,6, 0x242480,3, 0x2424c0,3, 0x242500,2, 0x24250c,4, 0x242520,2, 0x24252c,4, 0x242540,2, 0x242c00,13, 0x242c40,12, 0x242c80,13, 0x242cc0,12, 0x242d00,14, 0x242d40,6, 0x242d80,14, 0x242dc0,6, 0x242e00,11, 0x242e40,6, 0x242e60,6, 0x242e80,6, 0x242ea0,6, 0x243000,2, 0x243014,4, 0x243040,3, 0x243050,3, 0x243080,43, 0x243140,11, 0x243180,1, 0x24319c,15, 0x243200,12, 0x243300,1, 0x243308,6, 0x243324,10, 0x243380,1, 0x243388,6, 0x2433a4,10, 0x243400,7, 0x243420,7, 0x243500,12, 0x243540,12, 0x243580,4, 0x243800,14, 0x24383c,9, 0x243864,6, 0x243880,2, 0x243890,4, 0x243900,14, 0x24393c,9, 0x243964,6, 0x243980,2, 0x243990,4, 0x243a00,16, 0x243a50,4, 0x243a80,16, 0x243ad0,4, 0x243b00,6, 0x243b20,6, 0x243b40,3, 0x243b80,6, 0x243ba0,6, 0x243bc0,3, 0x243c00,6, 0x243c20,6, 0x243c40,3, 0x243c80,6, 0x243ca0,6, 0x243cc0,3, 0x243d10,2, 0x243d1c,1, 0x243d50,2, 0x243d5c,1, 0x243d80,1, 0x243da0,1, 0x243da8,4, 0x243dc0,1, 0x243de0,1, 0x243de8,4, 0x243e00,13, 0x243e40,6, 0x243e60,6, 0x243e80,6, 0x243ea0,6, 0x243ec0,7, 0x243ee0,7, 0x243f00,12, 0x243f34,2, 0x243f40,3, 0x243f50,8, 0x244000,29, 0x244078,4, 0x244090,2, 0x2440a0,7, 0x2440c0,11, 0x244100,14, 0x244140,14, 0x244180,61, 0x244278,4, 0x244290,2, 0x2442a0,7, 0x2442c0,11, 0x244300,14, 0x244340,14, 0x244380,61, 0x244478,4, 0x244490,2, 0x2444a0,7, 0x2444c0,11, 0x244500,14, 0x244540,14, 0x244580,61, 0x244678,4, 0x244690,2, 0x2446a0,7, 0x2446c0,11, 0x244700,14, 0x244740,14, 0x244780,69, 0x244c00,6, 0x244c40,14, 0x244c80,9, 0x244d00,9, 0x244d2c,1, 0x244d40,3, 0x244d60,1, 0x244d80,3, 0x244e00,2, 0x244e0c,1, 0x244e14,5, 0x244e2c,1, 0x244e34,5, 0x244e4c,1, 0x244e54,5, 0x244e6c,1, 0x244e74,5, 0x244e8c,1, 0x244e94,5, 0x244eac,1, 0x244eb4,3, 0x245000,29, 0x245078,4, 0x245090,2, 0x2450a0,7, 0x2450c0,11, 0x245100,14, 0x245140,14, 0x245180,61, 0x245278,4, 0x245290,2, 0x2452a0,7, 0x2452c0,11, 0x245300,14, 0x245340,14, 0x245380,61, 0x245478,4, 0x245490,2, 0x2454a0,7, 0x2454c0,11, 0x245500,14, 0x245540,14, 0x245580,61, 0x245678,4, 0x245690,2, 0x2456a0,7, 0x2456c0,11, 0x245700,14, 0x245740,14, 0x245780,69, 0x245c00,6, 0x245c40,14, 0x245c80,9, 0x245d00,9, 0x245d2c,1, 0x245d40,3, 0x245d60,1, 0x245d80,3, 0x245e00,2, 0x245e0c,1, 0x245e14,5, 0x245e2c,1, 0x245e34,5, 0x245e4c,1, 0x245e54,5, 0x245e6c,1, 0x245e74,5, 0x245e8c,1, 0x245e94,5, 0x245eac,1, 0x245eb4,3, 0x246000,14, 0x246040,6, 0x246060,6, 0x246080,6, 0x2460a0,3, 0x246100,9, 0x246204,1, 0x24620c,6, 0x246240,13, 0x246280,16, 0x246800,19, 0x246850,10, 0x246880,19, 0x2468d0,10, 0x246900,19, 0x246950,10, 0x246980,19, 0x2469d0,10, 0x246a00,19, 0x246a50,10, 0x246a80,19, 0x246ad0,10, 0x246b00,19, 0x246b50,10, 0x246b80,19, 0x246bd0,10, 0x246c00,19, 0x246c60,6, 0x246c84,1, 0x246c94,8, 0x246cb8,14, 0x247000,1, 0x247028,1, 0x247050,1, 0x247078,1, 0x2470a0,4, 0x2471ac,1, 0x2471d8,4, 0x247200,6, 0x247220,6, 0x247240,3, 0x247400,1, 0x247408,3, 0x247438,1, 0x247444,1, 0x247450,6, 0x247500,7, 0x247520,6, 0x247540,6, 0x247560,3, 0x247570,3, 0x248000,6, 0x248020,3, 0x248030,1, 0x248038,4, 0x248050,1, 0x248400,1, 0x248428,1, 0x248450,1, 0x248478,1, 0x2484a0,6, 0x2485ac,1, 0x2485d8,4, 0x248600,6, 0x248620,6, 0x248640,3, 0x248800,6, 0x248820,3, 0x248830,4, 0x248918,2, 0x248924,1, 0x248934,3, 0x248958,2, 0x248964,1, 0x248974,3, 0x248998,2, 0x2489a4,1, 0x2489b4,3, 0x2489d8,2, 0x2489e4,1, 0x2489f4,3, 0x249020,4, 0x249040,11, 0x249074,2, 0x249080,4, 0x2490b0,22, 0x249110,2, 0x249120,22, 0x249180,2, 0x2491a0,6, 0x2491c0,9, 0x249200,42, 0x2492c0,1, 0x2492c8,13, 0x249300,25, 0x24936c,4, 0x249380,2, 0x2493a0,1, 0x2493c0,11, 0x249404,3, 0x249420,11, 0x249480,6, 0x249500,1, 0x249520,6, 0x249540,3, 0x249550,7, 0x249570,18, 0x2495bc,5, 0x249800,480, 0x24a020,4, 0x24a040,11, 0x24a074,2, 0x24a080,4, 0x24a0b0,22, 0x24a110,2, 0x24a120,22, 0x24a180,2, 0x24a1a0,6, 0x24a1c0,9, 0x24a200,42, 0x24a2c0,1, 0x24a2c8,13, 0x24a300,25, 0x24a36c,4, 0x24a380,2, 0x24a3a0,1, 0x24a3c0,11, 0x24a404,3, 0x24a420,11, 0x24a480,6, 0x24a500,1, 0x24a520,6, 0x24a540,3, 0x24a550,7, 0x24a570,18, 0x24a5bc,5, 0x24a800,480, 0x24b020,4, 0x24b040,11, 0x24b074,2, 0x24b080,4, 0x24b0b0,22, 0x24b110,2, 0x24b120,22, 0x24b180,2, 0x24b1a0,6, 0x24b1c0,9, 0x24b200,42, 0x24b2c0,1, 0x24b2c8,13, 0x24b300,25, 0x24b36c,4, 0x24b380,2, 0x24b3a0,1, 0x24b3c0,11, 0x24b404,3, 0x24b420,11, 0x24b480,6, 0x24b500,1, 0x24b520,6, 0x24b540,3, 0x24b550,7, 0x24b570,18, 0x24b5bc,5, 0x24b800,480, 0x24c020,4, 0x24c040,11, 0x24c074,2, 0x24c080,4, 0x24c0b0,22, 0x24c110,2, 0x24c120,22, 0x24c180,2, 0x24c1a0,6, 0x24c1c0,9, 0x24c200,42, 0x24c2c0,1, 0x24c2c8,13, 0x24c300,25, 0x24c36c,4, 0x24c380,2, 0x24c3a0,1, 0x24c3c0,11, 0x24c404,3, 0x24c420,11, 0x24c480,6, 0x24c500,1, 0x24c520,6, 0x24c540,3, 0x24c550,7, 0x24c570,18, 0x24c5bc,5, 0x24c800,480, 0x24f800,5, 0x24f818,1, 0x24f854,6, 0x24f880,4, 0x24f8a4,1, 0x24f8ac,2, 0x24f900,5, 0x24f918,1, 0x24f954,6, 0x24f980,4, 0x24f9a4,1, 0x24f9ac,2, 0x24fa00,5, 0x24fa18,1, 0x24fa54,6, 0x24fa80,4, 0x24faa4,1, 0x24faac,2, 0x24fb00,5, 0x24fb18,1, 0x24fb54,6, 0x24fb80,4, 0x24fba4,1, 0x24fbac,2, 0x254000,3, 0x254018,10, 0x254100,58, 0x2541f0,1, 0x254400,3, 0x254418,10, 0x254500,58, 0x2545f0,1, 0x254800,3, 0x254810,3, 0x254820,6, 0x254880,9, 0x2548c0,9, 0x254900,8, 0x254938,2, 0x254944,1, 0x254954,3, 0x254980,8, 0x2549b8,2, 0x2549c4,1, 0x2549d4,3, 0x255000,3, 0x255018,10, 0x255100,58, 0x2551f0,1, 0x255400,3, 0x255418,10, 0x255500,58, 0x2555f0,1, 0x255800,3, 0x255810,3, 0x255820,6, 0x255880,9, 0x2558c0,9, 0x255900,8, 0x255938,2, 0x255944,1, 0x255954,3, 0x255980,8, 0x2559b8,2, 0x2559c4,1, 0x2559d4,3, 0x256004,7, 0x256024,1, 0x256030,4, 0x256300,5, 0x25631c,2, 0x256600,10, 0x256630,1, 0x256640,10, 0x256670,1, 0x256700,10, 0x256730,1, 0x256740,10, 0x256770,1, 0x256800,19, 0x256890,15, 0x256910,15, 0x256a00,10, 0x256ab8,4, 0x256b00,3, 0x256b10,1, 0x256e00,6, 0x256f00,5, 0x257000,65, 0x257800,6, 0x257820,6, 0x257840,6, 0x257860,6, 0x257880,6, 0x2578a0,6, 0x2578c0,6, 0x2578e0,3, 0x257900,6, 0x257920,6, 0x257940,6, 0x257960,6, 0x257980,6, 0x2579a0,6, 0x2579c0,6, 0x2579e0,3, 0x257a00,6, 0x257a20,6, 0x257a40,3, 0x257a80,7, 0x257aa0,7, 0x257ac0,9, 0x257b00,9, 0x257b40,10, 0x257b80,10, 0x257bc0,10, 0x257c00,10, 0x257c40,10, 0x257c80,10, 0x257cc0,3, 0x257e40,7, 0x257e60,7, 0x257e80,7, 0x257ea0,7, 0x257ec0,7, 0x257ee0,7, 0x257f00,7, 0x257f20,7, 0x257f40,7, 0x257f60,4, 0x257f78,13, 0x258000,2, 0x25800c,3, 0x258028,2, 0x258038,2, 0x258080,29, 0x2580f8,1, 0x258100,13, 0x258140,13, 0x258500,6, 0x258520,6, 0x258540,3, 0x258580,10, 0x2585c0,15, 0x258600,2, 0x258618,5, 0x258630,1, 0x258800,2, 0x25880c,3, 0x258828,2, 0x258838,2, 0x258880,29, 0x2588f8,1, 0x258900,13, 0x258940,13, 0x258d00,6, 0x258d20,6, 0x258d40,3, 0x258d80,10, 0x258dc0,15, 0x258e00,2, 0x258e18,5, 0x258e30,1, 0x259800,3, 0x259828,3, 0x259850,3, 0x259878,3, 0x2598a0,9, 0x2599ac,1, 0x2599d8,4, 0x259a00,6, 0x259a20,6, 0x259a40,6, 0x259a60,6, 0x259a80,6, 0x259aa0,6, 0x259ac0,3, 0x259c00,6, 0x259c20,3, 0x259c40,2, 0x259c60,1, 0x260000,4, 0x260014,1, 0x260020,3, 0x260030,3, 0x260040,8, 0x26007c,2, 0x2600a0,6, 0x2600c0,6, 0x2600e0,6, 0x260100,4, 0x260114,1, 0x260120,3, 0x260130,3, 0x260140,8, 0x26017c,2, 0x2601a0,6, 0x2601c0,6, 0x2601e0,6, 0x260200,4, 0x260214,1, 0x260220,3, 0x260230,3, 0x260240,8, 0x26027c,2, 0x2602a0,6, 0x2602c0,6, 0x2602e0,6, 0x260300,4, 0x260314,1, 0x260320,3, 0x260330,3, 0x260340,8, 0x26037c,2, 0x2603a0,6, 0x2603c0,6, 0x2603e0,6, 0x260400,6, 0x260440,6, 0x260480,3, 0x2604c0,3, 0x260500,2, 0x26050c,4, 0x260520,2, 0x26052c,4, 0x260540,2, 0x260c00,13, 0x260c40,12, 0x260c80,13, 0x260cc0,12, 0x260d00,14, 0x260d40,6, 0x260d80,14, 0x260dc0,6, 0x260e00,11, 0x260e40,6, 0x260e60,6, 0x260e80,6, 0x260ea0,6, 0x261000,2, 0x261014,4, 0x261040,3, 0x261050,3, 0x261080,43, 0x261140,11, 0x261180,1, 0x26119c,15, 0x261200,12, 0x261300,1, 0x261308,6, 0x261324,10, 0x261380,1, 0x261388,6, 0x2613a4,10, 0x261400,7, 0x261420,7, 0x261500,12, 0x261540,12, 0x261580,4, 0x261800,14, 0x26183c,9, 0x261864,6, 0x261880,2, 0x261890,4, 0x261900,14, 0x26193c,9, 0x261964,6, 0x261980,2, 0x261990,4, 0x261a00,16, 0x261a50,4, 0x261a80,16, 0x261ad0,4, 0x261b00,6, 0x261b20,6, 0x261b40,3, 0x261b80,6, 0x261ba0,6, 0x261bc0,3, 0x261c00,6, 0x261c20,6, 0x261c40,3, 0x261c80,6, 0x261ca0,6, 0x261cc0,3, 0x261d10,2, 0x261d1c,1, 0x261d50,2, 0x261d5c,1, 0x261d80,1, 0x261da0,1, 0x261da8,4, 0x261dc0,1, 0x261de0,1, 0x261de8,4, 0x261e00,13, 0x261e40,6, 0x261e60,6, 0x261e80,6, 0x261ea0,6, 0x261ec0,7, 0x261ee0,7, 0x261f00,12, 0x261f34,2, 0x261f40,3, 0x261f50,8, 0x262000,4, 0x262014,1, 0x262020,3, 0x262030,3, 0x262040,8, 0x26207c,2, 0x2620a0,6, 0x2620c0,6, 0x2620e0,6, 0x262100,4, 0x262114,1, 0x262120,3, 0x262130,3, 0x262140,8, 0x26217c,2, 0x2621a0,6, 0x2621c0,6, 0x2621e0,6, 0x262200,4, 0x262214,1, 0x262220,3, 0x262230,3, 0x262240,8, 0x26227c,2, 0x2622a0,6, 0x2622c0,6, 0x2622e0,6, 0x262300,4, 0x262314,1, 0x262320,3, 0x262330,3, 0x262340,8, 0x26237c,2, 0x2623a0,6, 0x2623c0,6, 0x2623e0,6, 0x262400,6, 0x262440,6, 0x262480,3, 0x2624c0,3, 0x262500,2, 0x26250c,4, 0x262520,2, 0x26252c,4, 0x262540,2, 0x262c00,13, 0x262c40,12, 0x262c80,13, 0x262cc0,12, 0x262d00,14, 0x262d40,6, 0x262d80,14, 0x262dc0,6, 0x262e00,11, 0x262e40,6, 0x262e60,6, 0x262e80,6, 0x262ea0,6, 0x263000,2, 0x263014,4, 0x263040,3, 0x263050,3, 0x263080,43, 0x263140,11, 0x263180,1, 0x26319c,15, 0x263200,12, 0x263300,1, 0x263308,6, 0x263324,10, 0x263380,1, 0x263388,6, 0x2633a4,10, 0x263400,7, 0x263420,7, 0x263500,12, 0x263540,12, 0x263580,4, 0x263800,14, 0x26383c,9, 0x263864,6, 0x263880,2, 0x263890,4, 0x263900,14, 0x26393c,9, 0x263964,6, 0x263980,2, 0x263990,4, 0x263a00,16, 0x263a50,4, 0x263a80,16, 0x263ad0,4, 0x263b00,6, 0x263b20,6, 0x263b40,3, 0x263b80,6, 0x263ba0,6, 0x263bc0,3, 0x263c00,6, 0x263c20,6, 0x263c40,3, 0x263c80,6, 0x263ca0,6, 0x263cc0,3, 0x263d10,2, 0x263d1c,1, 0x263d50,2, 0x263d5c,1, 0x263d80,1, 0x263da0,1, 0x263da8,4, 0x263dc0,1, 0x263de0,1, 0x263de8,4, 0x263e00,13, 0x263e40,6, 0x263e60,6, 0x263e80,6, 0x263ea0,6, 0x263ec0,7, 0x263ee0,7, 0x263f00,12, 0x263f34,2, 0x263f40,3, 0x263f50,8, 0x264000,29, 0x264078,4, 0x264090,2, 0x2640a0,7, 0x2640c0,11, 0x264100,14, 0x264140,14, 0x264180,61, 0x264278,4, 0x264290,2, 0x2642a0,7, 0x2642c0,11, 0x264300,14, 0x264340,14, 0x264380,61, 0x264478,4, 0x264490,2, 0x2644a0,7, 0x2644c0,11, 0x264500,14, 0x264540,14, 0x264580,61, 0x264678,4, 0x264690,2, 0x2646a0,7, 0x2646c0,11, 0x264700,14, 0x264740,14, 0x264780,69, 0x264c00,6, 0x264c40,14, 0x264c80,9, 0x264d00,9, 0x264d2c,1, 0x264d40,3, 0x264d60,1, 0x264d80,3, 0x264e00,2, 0x264e0c,1, 0x264e14,5, 0x264e2c,1, 0x264e34,5, 0x264e4c,1, 0x264e54,5, 0x264e6c,1, 0x264e74,5, 0x264e8c,1, 0x264e94,5, 0x264eac,1, 0x264eb4,3, 0x265000,29, 0x265078,4, 0x265090,2, 0x2650a0,7, 0x2650c0,11, 0x265100,14, 0x265140,14, 0x265180,61, 0x265278,4, 0x265290,2, 0x2652a0,7, 0x2652c0,11, 0x265300,14, 0x265340,14, 0x265380,61, 0x265478,4, 0x265490,2, 0x2654a0,7, 0x2654c0,11, 0x265500,14, 0x265540,14, 0x265580,61, 0x265678,4, 0x265690,2, 0x2656a0,7, 0x2656c0,11, 0x265700,14, 0x265740,14, 0x265780,69, 0x265c00,6, 0x265c40,14, 0x265c80,9, 0x265d00,9, 0x265d2c,1, 0x265d40,3, 0x265d60,1, 0x265d80,3, 0x265e00,2, 0x265e0c,1, 0x265e14,5, 0x265e2c,1, 0x265e34,5, 0x265e4c,1, 0x265e54,5, 0x265e6c,1, 0x265e74,5, 0x265e8c,1, 0x265e94,5, 0x265eac,1, 0x265eb4,3, 0x266000,14, 0x266040,6, 0x266060,6, 0x266080,6, 0x2660a0,3, 0x266100,9, 0x266204,1, 0x26620c,6, 0x266240,13, 0x266280,16, 0x266400,8, 0x266424,15, 0x266464,15, 0x2664a4,15, 0x2664e4,30, 0x266580,10, 0x2665ac,1, 0x2665b4,5, 0x2665cc,1, 0x2665d4,5, 0x2665ec,1, 0x2665f4,13, 0x266680,4, 0x266694,2, 0x2666a0,5, 0x2666c0,5, 0x2666e0,4, 0x266800,19, 0x266850,10, 0x266880,19, 0x2668d0,10, 0x266900,19, 0x266950,10, 0x266980,19, 0x2669d0,10, 0x266a00,19, 0x266a50,10, 0x266a80,19, 0x266ad0,10, 0x266b00,19, 0x266b50,10, 0x266b80,19, 0x266bd0,10, 0x266c00,19, 0x266c60,6, 0x266c84,1, 0x266c94,8, 0x266cb8,14, 0x267000,1, 0x267028,1, 0x267050,1, 0x267078,1, 0x2670a0,4, 0x2671ac,1, 0x2671d8,4, 0x267200,6, 0x267220,6, 0x267240,3, 0x267400,1, 0x267408,3, 0x267438,1, 0x267444,1, 0x267450,6, 0x267500,7, 0x267520,6, 0x267540,6, 0x267560,3, 0x267570,3, 0x268000,6, 0x268020,3, 0x268030,1, 0x268038,4, 0x268050,1, 0x268400,1, 0x268428,1, 0x268450,1, 0x268478,1, 0x2684a0,6, 0x2685ac,1, 0x2685d8,4, 0x268600,6, 0x268620,6, 0x268640,3, 0x268800,6, 0x268820,3, 0x268830,4, 0x268918,2, 0x268924,1, 0x268934,3, 0x268958,2, 0x268964,1, 0x268974,3, 0x268998,2, 0x2689a4,1, 0x2689b4,3, 0x2689d8,2, 0x2689e4,1, 0x2689f4,3, 0x269020,4, 0x269040,11, 0x269074,2, 0x269080,4, 0x2690b0,22, 0x269110,2, 0x269120,22, 0x269180,2, 0x2691a0,6, 0x2691c0,9, 0x269200,42, 0x2692c0,1, 0x2692c8,13, 0x269300,25, 0x26936c,4, 0x269380,2, 0x2693a0,1, 0x2693c0,11, 0x269404,3, 0x269420,11, 0x269480,6, 0x269500,1, 0x269520,6, 0x269540,3, 0x269550,7, 0x269570,18, 0x2695bc,5, 0x269800,480, 0x26a020,4, 0x26a040,11, 0x26a074,2, 0x26a080,4, 0x26a0b0,22, 0x26a110,2, 0x26a120,22, 0x26a180,2, 0x26a1a0,6, 0x26a1c0,9, 0x26a200,42, 0x26a2c0,1, 0x26a2c8,13, 0x26a300,25, 0x26a36c,4, 0x26a380,2, 0x26a3a0,1, 0x26a3c0,11, 0x26a404,3, 0x26a420,11, 0x26a480,6, 0x26a500,1, 0x26a520,6, 0x26a540,3, 0x26a550,7, 0x26a570,18, 0x26a5bc,5, 0x26a800,480, 0x26b020,4, 0x26b040,11, 0x26b074,2, 0x26b080,4, 0x26b0b0,22, 0x26b110,2, 0x26b120,22, 0x26b180,2, 0x26b1a0,6, 0x26b1c0,9, 0x26b200,42, 0x26b2c0,1, 0x26b2c8,13, 0x26b300,25, 0x26b36c,4, 0x26b380,2, 0x26b3a0,1, 0x26b3c0,11, 0x26b404,3, 0x26b420,11, 0x26b480,6, 0x26b500,1, 0x26b520,6, 0x26b540,3, 0x26b550,7, 0x26b570,18, 0x26b5bc,5, 0x26b800,480, 0x26c020,4, 0x26c040,11, 0x26c074,2, 0x26c080,4, 0x26c0b0,22, 0x26c110,2, 0x26c120,22, 0x26c180,2, 0x26c1a0,6, 0x26c1c0,9, 0x26c200,42, 0x26c2c0,1, 0x26c2c8,13, 0x26c300,25, 0x26c36c,4, 0x26c380,2, 0x26c3a0,1, 0x26c3c0,11, 0x26c404,3, 0x26c420,11, 0x26c480,6, 0x26c500,1, 0x26c520,6, 0x26c540,3, 0x26c550,7, 0x26c570,18, 0x26c5bc,5, 0x26c800,480, 0x26f800,5, 0x26f818,1, 0x26f854,6, 0x26f880,4, 0x26f8a4,1, 0x26f8ac,2, 0x26f900,5, 0x26f918,1, 0x26f954,6, 0x26f980,4, 0x26f9a4,1, 0x26f9ac,2, 0x26fa00,5, 0x26fa18,1, 0x26fa54,6, 0x26fa80,4, 0x26faa4,1, 0x26faac,2, 0x26fb00,5, 0x26fb18,1, 0x26fb54,6, 0x26fb80,4, 0x26fba4,1, 0x26fbac,2, 0x274000,3, 0x274018,10, 0x274100,58, 0x2741f0,1, 0x274400,3, 0x274418,10, 0x274500,58, 0x2745f0,1, 0x274800,3, 0x274810,3, 0x274820,6, 0x274880,9, 0x2748c0,9, 0x274900,8, 0x274938,2, 0x274944,1, 0x274954,3, 0x274980,8, 0x2749b8,2, 0x2749c4,1, 0x2749d4,3, 0x275000,3, 0x275018,10, 0x275100,58, 0x2751f0,1, 0x275400,3, 0x275418,10, 0x275500,58, 0x2755f0,1, 0x275800,3, 0x275810,3, 0x275820,6, 0x275880,9, 0x2758c0,9, 0x275900,8, 0x275938,2, 0x275944,1, 0x275954,3, 0x275980,8, 0x2759b8,2, 0x2759c4,1, 0x2759d4,3, 0x276004,7, 0x276024,1, 0x276030,4, 0x276300,5, 0x27631c,2, 0x276600,10, 0x276630,1, 0x276640,10, 0x276670,1, 0x276700,10, 0x276730,1, 0x276740,10, 0x276770,1, 0x276800,19, 0x276890,15, 0x276910,15, 0x276a00,10, 0x276ab8,4, 0x276b00,3, 0x276b10,1, 0x276e00,6, 0x276f00,5, 0x277000,65, 0x277800,6, 0x277820,6, 0x277840,6, 0x277860,6, 0x277880,6, 0x2778a0,6, 0x2778c0,6, 0x2778e0,3, 0x277900,6, 0x277920,6, 0x277940,6, 0x277960,6, 0x277980,6, 0x2779a0,6, 0x2779c0,6, 0x2779e0,3, 0x277a00,6, 0x277a20,6, 0x277a40,3, 0x277a80,7, 0x277aa0,7, 0x277ac0,9, 0x277b00,9, 0x277b40,10, 0x277b80,10, 0x277bc0,10, 0x277c00,10, 0x277c40,10, 0x277c80,10, 0x277cc0,3, 0x277e40,7, 0x277e60,7, 0x277e80,7, 0x277ea0,7, 0x277ec0,7, 0x277ee0,7, 0x277f00,7, 0x277f20,7, 0x277f40,7, 0x277f60,4, 0x277f78,13, 0x278000,2, 0x27800c,3, 0x278028,2, 0x278038,2, 0x278080,29, 0x2780f8,1, 0x278100,13, 0x278140,13, 0x278500,6, 0x278520,6, 0x278540,3, 0x278580,10, 0x2785c0,15, 0x278600,2, 0x278618,5, 0x278630,1, 0x278800,2, 0x27880c,3, 0x278828,2, 0x278838,2, 0x278880,29, 0x2788f8,1, 0x278900,13, 0x278940,13, 0x278d00,6, 0x278d20,6, 0x278d40,3, 0x278d80,10, 0x278dc0,15, 0x278e00,2, 0x278e18,5, 0x278e30,1, 0x279800,3, 0x279828,3, 0x279850,3, 0x279878,3, 0x2798a0,9, 0x2799ac,1, 0x2799d8,4, 0x279a00,6, 0x279a20,6, 0x279a40,6, 0x279a60,6, 0x279a80,6, 0x279aa0,6, 0x279ac0,3, 0x279c00,6, 0x279c20,3, 0x279c40,2, 0x279c60,1, 0x280000,4, 0x280014,1, 0x280020,3, 0x280030,3, 0x280040,8, 0x28007c,2, 0x2800a0,6, 0x2800c0,6, 0x2800e0,6, 0x280100,4, 0x280114,1, 0x280120,3, 0x280130,3, 0x280140,8, 0x28017c,2, 0x2801a0,6, 0x2801c0,6, 0x2801e0,6, 0x280200,4, 0x280214,1, 0x280220,3, 0x280230,3, 0x280240,8, 0x28027c,2, 0x2802a0,6, 0x2802c0,6, 0x2802e0,6, 0x280300,4, 0x280314,1, 0x280320,3, 0x280330,3, 0x280340,8, 0x28037c,2, 0x2803a0,6, 0x2803c0,6, 0x2803e0,6, 0x280400,6, 0x280440,6, 0x280480,3, 0x2804c0,3, 0x280500,2, 0x28050c,4, 0x280520,2, 0x28052c,4, 0x280540,2, 0x280c00,13, 0x280c40,12, 0x280c80,13, 0x280cc0,12, 0x280d00,14, 0x280d40,6, 0x280d80,14, 0x280dc0,6, 0x280e00,11, 0x280e40,6, 0x280e60,6, 0x280e80,6, 0x280ea0,6, 0x281000,2, 0x281014,4, 0x281040,3, 0x281050,3, 0x281080,43, 0x281140,11, 0x281180,1, 0x28119c,15, 0x281200,12, 0x281300,1, 0x281308,6, 0x281324,10, 0x281380,1, 0x281388,6, 0x2813a4,10, 0x281400,7, 0x281420,7, 0x281500,12, 0x281540,12, 0x281580,4, 0x281800,14, 0x28183c,9, 0x281864,6, 0x281880,2, 0x281890,4, 0x281900,14, 0x28193c,9, 0x281964,6, 0x281980,2, 0x281990,4, 0x281a00,16, 0x281a50,4, 0x281a80,16, 0x281ad0,4, 0x281b00,6, 0x281b20,6, 0x281b40,3, 0x281b80,6, 0x281ba0,6, 0x281bc0,3, 0x281c00,6, 0x281c20,6, 0x281c40,3, 0x281c80,6, 0x281ca0,6, 0x281cc0,3, 0x281d10,2, 0x281d1c,1, 0x281d50,2, 0x281d5c,1, 0x281d80,1, 0x281da0,1, 0x281da8,4, 0x281dc0,1, 0x281de0,1, 0x281de8,4, 0x281e00,13, 0x281e40,6, 0x281e60,6, 0x281e80,6, 0x281ea0,6, 0x281ec0,7, 0x281ee0,7, 0x281f00,12, 0x281f34,2, 0x281f40,3, 0x281f50,8, 0x282000,4, 0x282014,1, 0x282020,3, 0x282030,3, 0x282040,8, 0x28207c,2, 0x2820a0,6, 0x2820c0,6, 0x2820e0,6, 0x282100,4, 0x282114,1, 0x282120,3, 0x282130,3, 0x282140,8, 0x28217c,2, 0x2821a0,6, 0x2821c0,6, 0x2821e0,6, 0x282200,4, 0x282214,1, 0x282220,3, 0x282230,3, 0x282240,8, 0x28227c,2, 0x2822a0,6, 0x2822c0,6, 0x2822e0,6, 0x282300,4, 0x282314,1, 0x282320,3, 0x282330,3, 0x282340,8, 0x28237c,2, 0x2823a0,6, 0x2823c0,6, 0x2823e0,6, 0x282400,6, 0x282440,6, 0x282480,3, 0x2824c0,3, 0x282500,2, 0x28250c,4, 0x282520,2, 0x28252c,4, 0x282540,2, 0x282c00,13, 0x282c40,12, 0x282c80,13, 0x282cc0,12, 0x282d00,14, 0x282d40,6, 0x282d80,14, 0x282dc0,6, 0x282e00,11, 0x282e40,6, 0x282e60,6, 0x282e80,6, 0x282ea0,6, 0x283000,2, 0x283014,4, 0x283040,3, 0x283050,3, 0x283080,43, 0x283140,11, 0x283180,1, 0x28319c,15, 0x283200,12, 0x283300,1, 0x283308,6, 0x283324,10, 0x283380,1, 0x283388,6, 0x2833a4,10, 0x283400,7, 0x283420,7, 0x283500,12, 0x283540,12, 0x283580,4, 0x283800,14, 0x28383c,9, 0x283864,6, 0x283880,2, 0x283890,4, 0x283900,14, 0x28393c,9, 0x283964,6, 0x283980,2, 0x283990,4, 0x283a00,16, 0x283a50,4, 0x283a80,16, 0x283ad0,4, 0x283b00,6, 0x283b20,6, 0x283b40,3, 0x283b80,6, 0x283ba0,6, 0x283bc0,3, 0x283c00,6, 0x283c20,6, 0x283c40,3, 0x283c80,6, 0x283ca0,6, 0x283cc0,3, 0x283d10,2, 0x283d1c,1, 0x283d50,2, 0x283d5c,1, 0x283d80,1, 0x283da0,1, 0x283da8,4, 0x283dc0,1, 0x283de0,1, 0x283de8,4, 0x283e00,13, 0x283e40,6, 0x283e60,6, 0x283e80,6, 0x283ea0,6, 0x283ec0,7, 0x283ee0,7, 0x283f00,12, 0x283f34,2, 0x283f40,3, 0x283f50,8, 0x284000,29, 0x284078,4, 0x284090,2, 0x2840a0,7, 0x2840c0,11, 0x284100,14, 0x284140,14, 0x284180,61, 0x284278,4, 0x284290,2, 0x2842a0,7, 0x2842c0,11, 0x284300,14, 0x284340,14, 0x284380,61, 0x284478,4, 0x284490,2, 0x2844a0,7, 0x2844c0,11, 0x284500,14, 0x284540,14, 0x284580,61, 0x284678,4, 0x284690,2, 0x2846a0,7, 0x2846c0,11, 0x284700,14, 0x284740,14, 0x284780,69, 0x284c00,6, 0x284c40,14, 0x284c80,9, 0x284d00,9, 0x284d2c,1, 0x284d40,3, 0x284d60,1, 0x284d80,3, 0x284e00,2, 0x284e0c,1, 0x284e14,5, 0x284e2c,1, 0x284e34,5, 0x284e4c,1, 0x284e54,5, 0x284e6c,1, 0x284e74,5, 0x284e8c,1, 0x284e94,5, 0x284eac,1, 0x284eb4,3, 0x285000,29, 0x285078,4, 0x285090,2, 0x2850a0,7, 0x2850c0,11, 0x285100,14, 0x285140,14, 0x285180,61, 0x285278,4, 0x285290,2, 0x2852a0,7, 0x2852c0,11, 0x285300,14, 0x285340,14, 0x285380,61, 0x285478,4, 0x285490,2, 0x2854a0,7, 0x2854c0,11, 0x285500,14, 0x285540,14, 0x285580,61, 0x285678,4, 0x285690,2, 0x2856a0,7, 0x2856c0,11, 0x285700,14, 0x285740,14, 0x285780,69, 0x285c00,6, 0x285c40,14, 0x285c80,9, 0x285d00,9, 0x285d2c,1, 0x285d40,3, 0x285d60,1, 0x285d80,3, 0x285e00,2, 0x285e0c,1, 0x285e14,5, 0x285e2c,1, 0x285e34,5, 0x285e4c,1, 0x285e54,5, 0x285e6c,1, 0x285e74,5, 0x285e8c,1, 0x285e94,5, 0x285eac,1, 0x285eb4,3, 0x286000,14, 0x286040,6, 0x286060,6, 0x286080,6, 0x2860a0,3, 0x286100,9, 0x286204,1, 0x28620c,6, 0x286240,13, 0x286280,16, 0x286800,19, 0x286850,10, 0x286880,19, 0x2868d0,10, 0x286900,19, 0x286950,10, 0x286980,19, 0x2869d0,10, 0x286a00,19, 0x286a50,10, 0x286a80,19, 0x286ad0,10, 0x286b00,19, 0x286b50,10, 0x286b80,19, 0x286bd0,10, 0x286c00,19, 0x286c60,6, 0x286c84,1, 0x286c94,8, 0x286cb8,14, 0x287000,1, 0x287028,1, 0x287050,1, 0x287078,1, 0x2870a0,4, 0x2871ac,1, 0x2871d8,4, 0x287200,6, 0x287220,6, 0x287240,3, 0x287400,1, 0x287408,3, 0x287438,1, 0x287444,1, 0x287450,6, 0x287500,7, 0x287520,6, 0x287540,6, 0x287560,3, 0x287570,3, 0x288000,6, 0x288020,3, 0x288030,1, 0x288038,4, 0x288050,1, 0x288400,1, 0x288428,1, 0x288450,1, 0x288478,1, 0x2884a0,6, 0x2885ac,1, 0x2885d8,4, 0x288600,6, 0x288620,6, 0x288640,3, 0x288800,6, 0x288820,3, 0x288830,4, 0x288918,2, 0x288924,1, 0x288934,3, 0x288958,2, 0x288964,1, 0x288974,3, 0x288998,2, 0x2889a4,1, 0x2889b4,3, 0x2889d8,2, 0x2889e4,1, 0x2889f4,3, 0x289020,4, 0x289040,11, 0x289074,2, 0x289080,4, 0x2890b0,22, 0x289110,2, 0x289120,22, 0x289180,2, 0x2891a0,6, 0x2891c0,9, 0x289200,42, 0x2892c0,1, 0x2892c8,13, 0x289300,25, 0x28936c,4, 0x289380,2, 0x2893a0,1, 0x2893c0,11, 0x289404,3, 0x289420,11, 0x289480,6, 0x289500,1, 0x289520,6, 0x289540,3, 0x289550,7, 0x289570,18, 0x2895bc,5, 0x289800,480, 0x28a020,4, 0x28a040,11, 0x28a074,2, 0x28a080,4, 0x28a0b0,22, 0x28a110,2, 0x28a120,22, 0x28a180,2, 0x28a1a0,6, 0x28a1c0,9, 0x28a200,42, 0x28a2c0,1, 0x28a2c8,13, 0x28a300,25, 0x28a36c,4, 0x28a380,2, 0x28a3a0,1, 0x28a3c0,11, 0x28a404,3, 0x28a420,11, 0x28a480,6, 0x28a500,1, 0x28a520,6, 0x28a540,3, 0x28a550,7, 0x28a570,18, 0x28a5bc,5, 0x28a800,480, 0x28b020,4, 0x28b040,11, 0x28b074,2, 0x28b080,4, 0x28b0b0,22, 0x28b110,2, 0x28b120,22, 0x28b180,2, 0x28b1a0,6, 0x28b1c0,9, 0x28b200,42, 0x28b2c0,1, 0x28b2c8,13, 0x28b300,25, 0x28b36c,4, 0x28b380,2, 0x28b3a0,1, 0x28b3c0,11, 0x28b404,3, 0x28b420,11, 0x28b480,6, 0x28b500,1, 0x28b520,6, 0x28b540,3, 0x28b550,7, 0x28b570,18, 0x28b5bc,5, 0x28b800,480, 0x28c020,4, 0x28c040,11, 0x28c074,2, 0x28c080,4, 0x28c0b0,22, 0x28c110,2, 0x28c120,22, 0x28c180,2, 0x28c1a0,6, 0x28c1c0,9, 0x28c200,42, 0x28c2c0,1, 0x28c2c8,13, 0x28c300,25, 0x28c36c,4, 0x28c380,2, 0x28c3a0,1, 0x28c3c0,11, 0x28c404,3, 0x28c420,11, 0x28c480,6, 0x28c500,1, 0x28c520,6, 0x28c540,3, 0x28c550,7, 0x28c570,18, 0x28c5bc,5, 0x28c800,480, 0x28f800,5, 0x28f818,1, 0x28f854,6, 0x28f880,4, 0x28f8a4,1, 0x28f8ac,2, 0x28f900,5, 0x28f918,1, 0x28f954,6, 0x28f980,4, 0x28f9a4,1, 0x28f9ac,2, 0x28fa00,5, 0x28fa18,1, 0x28fa54,6, 0x28fa80,4, 0x28faa4,1, 0x28faac,2, 0x28fb00,5, 0x28fb18,1, 0x28fb54,6, 0x28fb80,4, 0x28fba4,1, 0x28fbac,2, 0x294000,3, 0x294018,10, 0x294100,58, 0x2941f0,1, 0x294400,3, 0x294418,10, 0x294500,58, 0x2945f0,1, 0x294800,3, 0x294810,3, 0x294820,6, 0x294880,9, 0x2948c0,9, 0x294900,8, 0x294938,2, 0x294944,1, 0x294954,3, 0x294980,8, 0x2949b8,2, 0x2949c4,1, 0x2949d4,3, 0x295000,3, 0x295018,10, 0x295100,58, 0x2951f0,1, 0x295400,3, 0x295418,10, 0x295500,58, 0x2955f0,1, 0x295800,3, 0x295810,3, 0x295820,6, 0x295880,9, 0x2958c0,9, 0x295900,8, 0x295938,2, 0x295944,1, 0x295954,3, 0x295980,8, 0x2959b8,2, 0x2959c4,1, 0x2959d4,3, 0x296004,7, 0x296024,1, 0x296030,4, 0x296300,5, 0x29631c,2, 0x296600,10, 0x296630,1, 0x296640,10, 0x296670,1, 0x296700,10, 0x296730,1, 0x296740,10, 0x296770,1, 0x296800,19, 0x296890,15, 0x296910,15, 0x296a00,10, 0x296ab8,4, 0x296b00,3, 0x296b10,1, 0x296e00,6, 0x296f00,5, 0x297000,65, 0x297800,6, 0x297820,6, 0x297840,6, 0x297860,6, 0x297880,6, 0x2978a0,6, 0x2978c0,6, 0x2978e0,3, 0x297900,6, 0x297920,6, 0x297940,6, 0x297960,6, 0x297980,6, 0x2979a0,6, 0x2979c0,6, 0x2979e0,3, 0x297a00,6, 0x297a20,6, 0x297a40,3, 0x297a80,7, 0x297aa0,7, 0x297ac0,9, 0x297b00,9, 0x297b40,10, 0x297b80,10, 0x297bc0,10, 0x297c00,10, 0x297c40,10, 0x297c80,10, 0x297cc0,3, 0x297e40,7, 0x297e60,7, 0x297e80,7, 0x297ea0,7, 0x297ec0,7, 0x297ee0,7, 0x297f00,7, 0x297f20,7, 0x297f40,7, 0x297f60,4, 0x297f78,13, 0x298000,2, 0x29800c,3, 0x298028,2, 0x298038,2, 0x298080,29, 0x2980f8,1, 0x298100,13, 0x298140,13, 0x298500,6, 0x298520,6, 0x298540,3, 0x298580,10, 0x2985c0,15, 0x298600,2, 0x298618,5, 0x298630,1, 0x298800,2, 0x29880c,3, 0x298828,2, 0x298838,2, 0x298880,29, 0x2988f8,1, 0x298900,13, 0x298940,13, 0x298d00,6, 0x298d20,6, 0x298d40,3, 0x298d80,10, 0x298dc0,15, 0x298e00,2, 0x298e18,5, 0x298e30,1, 0x299800,3, 0x299828,3, 0x299850,3, 0x299878,3, 0x2998a0,9, 0x2999ac,1, 0x2999d8,4, 0x299a00,6, 0x299a20,6, 0x299a40,6, 0x299a60,6, 0x299a80,6, 0x299aa0,6, 0x299ac0,3, 0x299c00,6, 0x299c20,3, 0x299c40,2, 0x299c60,1, 0x2a0000,4, 0x2a0014,1, 0x2a0020,3, 0x2a0030,3, 0x2a0040,8, 0x2a007c,2, 0x2a00a0,6, 0x2a00c0,6, 0x2a00e0,6, 0x2a0100,4, 0x2a0114,1, 0x2a0120,3, 0x2a0130,3, 0x2a0140,8, 0x2a017c,2, 0x2a01a0,6, 0x2a01c0,6, 0x2a01e0,6, 0x2a0200,4, 0x2a0214,1, 0x2a0220,3, 0x2a0230,3, 0x2a0240,8, 0x2a027c,2, 0x2a02a0,6, 0x2a02c0,6, 0x2a02e0,6, 0x2a0300,4, 0x2a0314,1, 0x2a0320,3, 0x2a0330,3, 0x2a0340,8, 0x2a037c,2, 0x2a03a0,6, 0x2a03c0,6, 0x2a03e0,6, 0x2a0400,6, 0x2a0440,6, 0x2a0480,3, 0x2a04c0,3, 0x2a0500,2, 0x2a050c,4, 0x2a0520,2, 0x2a052c,4, 0x2a0540,2, 0x2a0c00,13, 0x2a0c40,12, 0x2a0c80,13, 0x2a0cc0,12, 0x2a0d00,14, 0x2a0d40,6, 0x2a0d80,14, 0x2a0dc0,6, 0x2a0e00,11, 0x2a0e40,6, 0x2a0e60,6, 0x2a0e80,6, 0x2a0ea0,6, 0x2a1000,2, 0x2a1014,4, 0x2a1040,3, 0x2a1050,3, 0x2a1080,43, 0x2a1140,11, 0x2a1180,1, 0x2a119c,15, 0x2a1200,12, 0x2a1300,1, 0x2a1308,6, 0x2a1324,10, 0x2a1380,1, 0x2a1388,6, 0x2a13a4,10, 0x2a1400,7, 0x2a1420,7, 0x2a1500,12, 0x2a1540,12, 0x2a1580,4, 0x2a1800,14, 0x2a183c,9, 0x2a1864,6, 0x2a1880,2, 0x2a1890,4, 0x2a1900,14, 0x2a193c,9, 0x2a1964,6, 0x2a1980,2, 0x2a1990,4, 0x2a1a00,16, 0x2a1a50,4, 0x2a1a80,16, 0x2a1ad0,4, 0x2a1b00,6, 0x2a1b20,6, 0x2a1b40,3, 0x2a1b80,6, 0x2a1ba0,6, 0x2a1bc0,3, 0x2a1c00,6, 0x2a1c20,6, 0x2a1c40,3, 0x2a1c80,6, 0x2a1ca0,6, 0x2a1cc0,3, 0x2a1d10,2, 0x2a1d1c,1, 0x2a1d50,2, 0x2a1d5c,1, 0x2a1d80,1, 0x2a1da0,1, 0x2a1da8,4, 0x2a1dc0,1, 0x2a1de0,1, 0x2a1de8,4, 0x2a1e00,13, 0x2a1e40,6, 0x2a1e60,6, 0x2a1e80,6, 0x2a1ea0,6, 0x2a1ec0,7, 0x2a1ee0,7, 0x2a1f00,12, 0x2a1f34,2, 0x2a1f40,3, 0x2a1f50,8, 0x2a2000,4, 0x2a2014,1, 0x2a2020,3, 0x2a2030,3, 0x2a2040,8, 0x2a207c,2, 0x2a20a0,6, 0x2a20c0,6, 0x2a20e0,6, 0x2a2100,4, 0x2a2114,1, 0x2a2120,3, 0x2a2130,3, 0x2a2140,8, 0x2a217c,2, 0x2a21a0,6, 0x2a21c0,6, 0x2a21e0,6, 0x2a2200,4, 0x2a2214,1, 0x2a2220,3, 0x2a2230,3, 0x2a2240,8, 0x2a227c,2, 0x2a22a0,6, 0x2a22c0,6, 0x2a22e0,6, 0x2a2300,4, 0x2a2314,1, 0x2a2320,3, 0x2a2330,3, 0x2a2340,8, 0x2a237c,2, 0x2a23a0,6, 0x2a23c0,6, 0x2a23e0,6, 0x2a2400,6, 0x2a2440,6, 0x2a2480,3, 0x2a24c0,3, 0x2a2500,2, 0x2a250c,4, 0x2a2520,2, 0x2a252c,4, 0x2a2540,2, 0x2a2c00,13, 0x2a2c40,12, 0x2a2c80,13, 0x2a2cc0,12, 0x2a2d00,14, 0x2a2d40,6, 0x2a2d80,14, 0x2a2dc0,6, 0x2a2e00,11, 0x2a2e40,6, 0x2a2e60,6, 0x2a2e80,6, 0x2a2ea0,6, 0x2a3000,2, 0x2a3014,4, 0x2a3040,3, 0x2a3050,3, 0x2a3080,43, 0x2a3140,11, 0x2a3180,1, 0x2a319c,15, 0x2a3200,12, 0x2a3300,1, 0x2a3308,6, 0x2a3324,10, 0x2a3380,1, 0x2a3388,6, 0x2a33a4,10, 0x2a3400,7, 0x2a3420,7, 0x2a3500,12, 0x2a3540,12, 0x2a3580,4, 0x2a3800,14, 0x2a383c,9, 0x2a3864,6, 0x2a3880,2, 0x2a3890,4, 0x2a3900,14, 0x2a393c,9, 0x2a3964,6, 0x2a3980,2, 0x2a3990,4, 0x2a3a00,16, 0x2a3a50,4, 0x2a3a80,16, 0x2a3ad0,4, 0x2a3b00,6, 0x2a3b20,6, 0x2a3b40,3, 0x2a3b80,6, 0x2a3ba0,6, 0x2a3bc0,3, 0x2a3c00,6, 0x2a3c20,6, 0x2a3c40,3, 0x2a3c80,6, 0x2a3ca0,6, 0x2a3cc0,3, 0x2a3d10,2, 0x2a3d1c,1, 0x2a3d50,2, 0x2a3d5c,1, 0x2a3d80,1, 0x2a3da0,1, 0x2a3da8,4, 0x2a3dc0,1, 0x2a3de0,1, 0x2a3de8,4, 0x2a3e00,13, 0x2a3e40,6, 0x2a3e60,6, 0x2a3e80,6, 0x2a3ea0,6, 0x2a3ec0,7, 0x2a3ee0,7, 0x2a3f00,12, 0x2a3f34,2, 0x2a3f40,3, 0x2a3f50,8, 0x2a4000,29, 0x2a4078,4, 0x2a4090,2, 0x2a40a0,7, 0x2a40c0,11, 0x2a4100,14, 0x2a4140,14, 0x2a4180,61, 0x2a4278,4, 0x2a4290,2, 0x2a42a0,7, 0x2a42c0,11, 0x2a4300,14, 0x2a4340,14, 0x2a4380,61, 0x2a4478,4, 0x2a4490,2, 0x2a44a0,7, 0x2a44c0,11, 0x2a4500,14, 0x2a4540,14, 0x2a4580,61, 0x2a4678,4, 0x2a4690,2, 0x2a46a0,7, 0x2a46c0,11, 0x2a4700,14, 0x2a4740,14, 0x2a4780,69, 0x2a4c00,6, 0x2a4c40,14, 0x2a4c80,9, 0x2a4d00,9, 0x2a4d2c,1, 0x2a4d40,3, 0x2a4d60,1, 0x2a4d80,3, 0x2a4e00,2, 0x2a4e0c,1, 0x2a4e14,5, 0x2a4e2c,1, 0x2a4e34,5, 0x2a4e4c,1, 0x2a4e54,5, 0x2a4e6c,1, 0x2a4e74,5, 0x2a4e8c,1, 0x2a4e94,5, 0x2a4eac,1, 0x2a4eb4,3, 0x2a5000,29, 0x2a5078,4, 0x2a5090,2, 0x2a50a0,7, 0x2a50c0,11, 0x2a5100,14, 0x2a5140,14, 0x2a5180,61, 0x2a5278,4, 0x2a5290,2, 0x2a52a0,7, 0x2a52c0,11, 0x2a5300,14, 0x2a5340,14, 0x2a5380,61, 0x2a5478,4, 0x2a5490,2, 0x2a54a0,7, 0x2a54c0,11, 0x2a5500,14, 0x2a5540,14, 0x2a5580,61, 0x2a5678,4, 0x2a5690,2, 0x2a56a0,7, 0x2a56c0,11, 0x2a5700,14, 0x2a5740,14, 0x2a5780,69, 0x2a5c00,6, 0x2a5c40,14, 0x2a5c80,9, 0x2a5d00,9, 0x2a5d2c,1, 0x2a5d40,3, 0x2a5d60,1, 0x2a5d80,3, 0x2a5e00,2, 0x2a5e0c,1, 0x2a5e14,5, 0x2a5e2c,1, 0x2a5e34,5, 0x2a5e4c,1, 0x2a5e54,5, 0x2a5e6c,1, 0x2a5e74,5, 0x2a5e8c,1, 0x2a5e94,5, 0x2a5eac,1, 0x2a5eb4,3, 0x2a6000,14, 0x2a6040,6, 0x2a6060,6, 0x2a6080,6, 0x2a60a0,3, 0x2a6100,9, 0x2a6204,1, 0x2a620c,6, 0x2a6240,13, 0x2a6280,16, 0x2a6800,19, 0x2a6850,10, 0x2a6880,19, 0x2a68d0,10, 0x2a6900,19, 0x2a6950,10, 0x2a6980,19, 0x2a69d0,10, 0x2a6a00,19, 0x2a6a50,10, 0x2a6a80,19, 0x2a6ad0,10, 0x2a6b00,19, 0x2a6b50,10, 0x2a6b80,19, 0x2a6bd0,10, 0x2a6c00,19, 0x2a6c60,6, 0x2a6c84,1, 0x2a6c94,8, 0x2a6cb8,14, 0x2a7000,1, 0x2a7028,1, 0x2a7050,1, 0x2a7078,1, 0x2a70a0,4, 0x2a71ac,1, 0x2a71d8,4, 0x2a7200,6, 0x2a7220,6, 0x2a7240,3, 0x2a7400,1, 0x2a7408,3, 0x2a7438,1, 0x2a7444,1, 0x2a7450,6, 0x2a7500,7, 0x2a7520,6, 0x2a7540,6, 0x2a7560,3, 0x2a7570,3, 0x2a8000,6, 0x2a8020,3, 0x2a8030,1, 0x2a8038,4, 0x2a8050,1, 0x2a8400,1, 0x2a8428,1, 0x2a8450,1, 0x2a8478,1, 0x2a84a0,6, 0x2a85ac,1, 0x2a85d8,4, 0x2a8600,6, 0x2a8620,6, 0x2a8640,3, 0x2a8800,6, 0x2a8820,3, 0x2a8830,4, 0x2a8918,2, 0x2a8924,1, 0x2a8934,3, 0x2a8958,2, 0x2a8964,1, 0x2a8974,3, 0x2a8998,2, 0x2a89a4,1, 0x2a89b4,3, 0x2a89d8,2, 0x2a89e4,1, 0x2a89f4,3, 0x2a9020,4, 0x2a9040,11, 0x2a9074,2, 0x2a9080,4, 0x2a90b0,22, 0x2a9110,2, 0x2a9120,22, 0x2a9180,2, 0x2a91a0,6, 0x2a91c0,9, 0x2a9200,42, 0x2a92c0,1, 0x2a92c8,13, 0x2a9300,25, 0x2a936c,4, 0x2a9380,2, 0x2a93a0,1, 0x2a93c0,11, 0x2a9404,3, 0x2a9420,11, 0x2a9480,6, 0x2a9500,1, 0x2a9520,6, 0x2a9540,3, 0x2a9550,7, 0x2a9570,18, 0x2a95bc,5, 0x2a9800,480, 0x2aa020,4, 0x2aa040,11, 0x2aa074,2, 0x2aa080,4, 0x2aa0b0,22, 0x2aa110,2, 0x2aa120,22, 0x2aa180,2, 0x2aa1a0,6, 0x2aa1c0,9, 0x2aa200,42, 0x2aa2c0,1, 0x2aa2c8,13, 0x2aa300,25, 0x2aa36c,4, 0x2aa380,2, 0x2aa3a0,1, 0x2aa3c0,11, 0x2aa404,3, 0x2aa420,11, 0x2aa480,6, 0x2aa500,1, 0x2aa520,6, 0x2aa540,3, 0x2aa550,7, 0x2aa570,18, 0x2aa5bc,5, 0x2aa800,480, 0x2ab020,4, 0x2ab040,11, 0x2ab074,2, 0x2ab080,4, 0x2ab0b0,22, 0x2ab110,2, 0x2ab120,22, 0x2ab180,2, 0x2ab1a0,6, 0x2ab1c0,9, 0x2ab200,42, 0x2ab2c0,1, 0x2ab2c8,13, 0x2ab300,25, 0x2ab36c,4, 0x2ab380,2, 0x2ab3a0,1, 0x2ab3c0,11, 0x2ab404,3, 0x2ab420,11, 0x2ab480,6, 0x2ab500,1, 0x2ab520,6, 0x2ab540,3, 0x2ab550,7, 0x2ab570,18, 0x2ab5bc,5, 0x2ab800,480, 0x2ac020,4, 0x2ac040,11, 0x2ac074,2, 0x2ac080,4, 0x2ac0b0,22, 0x2ac110,2, 0x2ac120,22, 0x2ac180,2, 0x2ac1a0,6, 0x2ac1c0,9, 0x2ac200,42, 0x2ac2c0,1, 0x2ac2c8,13, 0x2ac300,25, 0x2ac36c,4, 0x2ac380,2, 0x2ac3a0,1, 0x2ac3c0,11, 0x2ac404,3, 0x2ac420,11, 0x2ac480,6, 0x2ac500,1, 0x2ac520,6, 0x2ac540,3, 0x2ac550,7, 0x2ac570,18, 0x2ac5bc,5, 0x2ac800,480, 0x2af800,5, 0x2af818,1, 0x2af854,6, 0x2af880,4, 0x2af8a4,1, 0x2af8ac,2, 0x2af900,5, 0x2af918,1, 0x2af954,6, 0x2af980,4, 0x2af9a4,1, 0x2af9ac,2, 0x2afa00,5, 0x2afa18,1, 0x2afa54,6, 0x2afa80,4, 0x2afaa4,1, 0x2afaac,2, 0x2afb00,5, 0x2afb18,1, 0x2afb54,6, 0x2afb80,4, 0x2afba4,1, 0x2afbac,2, 0x2b4000,3, 0x2b4018,10, 0x2b4100,58, 0x2b41f0,1, 0x2b4400,3, 0x2b4418,10, 0x2b4500,58, 0x2b45f0,1, 0x2b4800,3, 0x2b4810,3, 0x2b4820,6, 0x2b4880,9, 0x2b48c0,9, 0x2b4900,8, 0x2b4938,2, 0x2b4944,1, 0x2b4954,3, 0x2b4980,8, 0x2b49b8,2, 0x2b49c4,1, 0x2b49d4,3, 0x2b5000,3, 0x2b5018,10, 0x2b5100,58, 0x2b51f0,1, 0x2b5400,3, 0x2b5418,10, 0x2b5500,58, 0x2b55f0,1, 0x2b5800,3, 0x2b5810,3, 0x2b5820,6, 0x2b5880,9, 0x2b58c0,9, 0x2b5900,8, 0x2b5938,2, 0x2b5944,1, 0x2b5954,3, 0x2b5980,8, 0x2b59b8,2, 0x2b59c4,1, 0x2b59d4,3, 0x2b6004,7, 0x2b6024,1, 0x2b6030,4, 0x2b6300,5, 0x2b631c,2, 0x2b6600,10, 0x2b6630,1, 0x2b6640,10, 0x2b6670,1, 0x2b6700,10, 0x2b6730,1, 0x2b6740,10, 0x2b6770,1, 0x2b6800,19, 0x2b6890,15, 0x2b6910,15, 0x2b6a00,10, 0x2b6ab8,4, 0x2b6b00,3, 0x2b6b10,1, 0x2b6e00,6, 0x2b6f00,5, 0x2b7000,65, 0x2b7800,6, 0x2b7820,6, 0x2b7840,6, 0x2b7860,6, 0x2b7880,6, 0x2b78a0,6, 0x2b78c0,6, 0x2b78e0,3, 0x2b7900,6, 0x2b7920,6, 0x2b7940,6, 0x2b7960,6, 0x2b7980,6, 0x2b79a0,6, 0x2b79c0,6, 0x2b79e0,3, 0x2b7a00,6, 0x2b7a20,6, 0x2b7a40,3, 0x2b7a80,7, 0x2b7aa0,7, 0x2b7ac0,9, 0x2b7b00,9, 0x2b7b40,10, 0x2b7b80,10, 0x2b7bc0,10, 0x2b7c00,10, 0x2b7c40,10, 0x2b7c80,10, 0x2b7cc0,3, 0x2b7e40,7, 0x2b7e60,7, 0x2b7e80,7, 0x2b7ea0,7, 0x2b7ec0,7, 0x2b7ee0,7, 0x2b7f00,7, 0x2b7f20,7, 0x2b7f40,7, 0x2b7f60,4, 0x2b7f78,13, 0x2b8000,2, 0x2b800c,3, 0x2b8028,2, 0x2b8038,2, 0x2b8080,29, 0x2b80f8,1, 0x2b8100,13, 0x2b8140,13, 0x2b8500,6, 0x2b8520,6, 0x2b8540,3, 0x2b8580,10, 0x2b85c0,15, 0x2b8600,2, 0x2b8618,5, 0x2b8630,1, 0x2b8800,2, 0x2b880c,3, 0x2b8828,2, 0x2b8838,2, 0x2b8880,29, 0x2b88f8,1, 0x2b8900,13, 0x2b8940,13, 0x2b8d00,6, 0x2b8d20,6, 0x2b8d40,3, 0x2b8d80,10, 0x2b8dc0,15, 0x2b8e00,2, 0x2b8e18,5, 0x2b8e30,1, 0x2b9800,3, 0x2b9828,3, 0x2b9850,3, 0x2b9878,3, 0x2b98a0,9, 0x2b99ac,1, 0x2b99d8,4, 0x2b9a00,6, 0x2b9a20,6, 0x2b9a40,6, 0x2b9a60,6, 0x2b9a80,6, 0x2b9aa0,6, 0x2b9ac0,3, 0x2b9c00,6, 0x2b9c20,3, 0x2b9c40,2, 0x2b9c60,1, 0x2c0000,4, 0x2c0014,1, 0x2c0020,3, 0x2c0030,3, 0x2c0040,8, 0x2c007c,2, 0x2c00a0,6, 0x2c00c0,6, 0x2c00e0,6, 0x2c0100,4, 0x2c0114,1, 0x2c0120,3, 0x2c0130,3, 0x2c0140,8, 0x2c017c,2, 0x2c01a0,6, 0x2c01c0,6, 0x2c01e0,6, 0x2c0200,4, 0x2c0214,1, 0x2c0220,3, 0x2c0230,3, 0x2c0240,8, 0x2c027c,2, 0x2c02a0,6, 0x2c02c0,6, 0x2c02e0,6, 0x2c0300,4, 0x2c0314,1, 0x2c0320,3, 0x2c0330,3, 0x2c0340,8, 0x2c037c,2, 0x2c03a0,6, 0x2c03c0,6, 0x2c03e0,6, 0x2c0400,6, 0x2c0440,6, 0x2c0480,3, 0x2c04c0,3, 0x2c0500,2, 0x2c050c,4, 0x2c0520,2, 0x2c052c,4, 0x2c0540,2, 0x2c0c00,13, 0x2c0c40,12, 0x2c0c80,13, 0x2c0cc0,12, 0x2c0d00,14, 0x2c0d40,6, 0x2c0d80,14, 0x2c0dc0,6, 0x2c0e00,11, 0x2c0e40,6, 0x2c0e60,6, 0x2c0e80,6, 0x2c0ea0,6, 0x2c1000,2, 0x2c1014,4, 0x2c1040,3, 0x2c1050,3, 0x2c1080,43, 0x2c1140,11, 0x2c1180,1, 0x2c119c,15, 0x2c1200,12, 0x2c1300,1, 0x2c1308,6, 0x2c1324,10, 0x2c1380,1, 0x2c1388,6, 0x2c13a4,10, 0x2c1400,7, 0x2c1420,7, 0x2c1500,12, 0x2c1540,12, 0x2c1580,4, 0x2c1800,14, 0x2c183c,9, 0x2c1864,6, 0x2c1880,2, 0x2c1890,4, 0x2c1900,14, 0x2c193c,9, 0x2c1964,6, 0x2c1980,2, 0x2c1990,4, 0x2c1a00,16, 0x2c1a50,4, 0x2c1a80,16, 0x2c1ad0,4, 0x2c1b00,6, 0x2c1b20,6, 0x2c1b40,3, 0x2c1b80,6, 0x2c1ba0,6, 0x2c1bc0,3, 0x2c1c00,6, 0x2c1c20,6, 0x2c1c40,3, 0x2c1c80,6, 0x2c1ca0,6, 0x2c1cc0,3, 0x2c1d10,2, 0x2c1d1c,1, 0x2c1d50,2, 0x2c1d5c,1, 0x2c1d80,1, 0x2c1da0,1, 0x2c1da8,4, 0x2c1dc0,1, 0x2c1de0,1, 0x2c1de8,4, 0x2c1e00,13, 0x2c1e40,6, 0x2c1e60,6, 0x2c1e80,6, 0x2c1ea0,6, 0x2c1ec0,7, 0x2c1ee0,7, 0x2c1f00,12, 0x2c1f34,2, 0x2c1f40,3, 0x2c1f50,8, 0x2c2000,4, 0x2c2014,1, 0x2c2020,3, 0x2c2030,3, 0x2c2040,8, 0x2c207c,2, 0x2c20a0,6, 0x2c20c0,6, 0x2c20e0,6, 0x2c2100,4, 0x2c2114,1, 0x2c2120,3, 0x2c2130,3, 0x2c2140,8, 0x2c217c,2, 0x2c21a0,6, 0x2c21c0,6, 0x2c21e0,6, 0x2c2200,4, 0x2c2214,1, 0x2c2220,3, 0x2c2230,3, 0x2c2240,8, 0x2c227c,2, 0x2c22a0,6, 0x2c22c0,6, 0x2c22e0,6, 0x2c2300,4, 0x2c2314,1, 0x2c2320,3, 0x2c2330,3, 0x2c2340,8, 0x2c237c,2, 0x2c23a0,6, 0x2c23c0,6, 0x2c23e0,6, 0x2c2400,6, 0x2c2440,6, 0x2c2480,3, 0x2c24c0,3, 0x2c2500,2, 0x2c250c,4, 0x2c2520,2, 0x2c252c,4, 0x2c2540,2, 0x2c2c00,13, 0x2c2c40,12, 0x2c2c80,13, 0x2c2cc0,12, 0x2c2d00,14, 0x2c2d40,6, 0x2c2d80,14, 0x2c2dc0,6, 0x2c2e00,11, 0x2c2e40,6, 0x2c2e60,6, 0x2c2e80,6, 0x2c2ea0,6, 0x2c3000,2, 0x2c3014,4, 0x2c3040,3, 0x2c3050,3, 0x2c3080,43, 0x2c3140,11, 0x2c3180,1, 0x2c319c,15, 0x2c3200,12, 0x2c3300,1, 0x2c3308,6, 0x2c3324,10, 0x2c3380,1, 0x2c3388,6, 0x2c33a4,10, 0x2c3400,7, 0x2c3420,7, 0x2c3500,12, 0x2c3540,12, 0x2c3580,4, 0x2c3800,14, 0x2c383c,9, 0x2c3864,6, 0x2c3880,2, 0x2c3890,4, 0x2c3900,14, 0x2c393c,9, 0x2c3964,6, 0x2c3980,2, 0x2c3990,4, 0x2c3a00,16, 0x2c3a50,4, 0x2c3a80,16, 0x2c3ad0,4, 0x2c3b00,6, 0x2c3b20,6, 0x2c3b40,3, 0x2c3b80,6, 0x2c3ba0,6, 0x2c3bc0,3, 0x2c3c00,6, 0x2c3c20,6, 0x2c3c40,3, 0x2c3c80,6, 0x2c3ca0,6, 0x2c3cc0,3, 0x2c3d10,2, 0x2c3d1c,1, 0x2c3d50,2, 0x2c3d5c,1, 0x2c3d80,1, 0x2c3da0,1, 0x2c3da8,4, 0x2c3dc0,1, 0x2c3de0,1, 0x2c3de8,4, 0x2c3e00,13, 0x2c3e40,6, 0x2c3e60,6, 0x2c3e80,6, 0x2c3ea0,6, 0x2c3ec0,7, 0x2c3ee0,7, 0x2c3f00,12, 0x2c3f34,2, 0x2c3f40,3, 0x2c3f50,8, 0x2c4000,29, 0x2c4078,4, 0x2c4090,2, 0x2c40a0,7, 0x2c40c0,11, 0x2c4100,14, 0x2c4140,14, 0x2c4180,61, 0x2c4278,4, 0x2c4290,2, 0x2c42a0,7, 0x2c42c0,11, 0x2c4300,14, 0x2c4340,14, 0x2c4380,61, 0x2c4478,4, 0x2c4490,2, 0x2c44a0,7, 0x2c44c0,11, 0x2c4500,14, 0x2c4540,14, 0x2c4580,61, 0x2c4678,4, 0x2c4690,2, 0x2c46a0,7, 0x2c46c0,11, 0x2c4700,14, 0x2c4740,14, 0x2c4780,69, 0x2c4c00,6, 0x2c4c40,14, 0x2c4c80,9, 0x2c4d00,9, 0x2c4d2c,1, 0x2c4d40,3, 0x2c4d60,1, 0x2c4d80,3, 0x2c4e00,2, 0x2c4e0c,1, 0x2c4e14,5, 0x2c4e2c,1, 0x2c4e34,5, 0x2c4e4c,1, 0x2c4e54,5, 0x2c4e6c,1, 0x2c4e74,5, 0x2c4e8c,1, 0x2c4e94,5, 0x2c4eac,1, 0x2c4eb4,3, 0x2c5000,29, 0x2c5078,4, 0x2c5090,2, 0x2c50a0,7, 0x2c50c0,11, 0x2c5100,14, 0x2c5140,14, 0x2c5180,61, 0x2c5278,4, 0x2c5290,2, 0x2c52a0,7, 0x2c52c0,11, 0x2c5300,14, 0x2c5340,14, 0x2c5380,61, 0x2c5478,4, 0x2c5490,2, 0x2c54a0,7, 0x2c54c0,11, 0x2c5500,14, 0x2c5540,14, 0x2c5580,61, 0x2c5678,4, 0x2c5690,2, 0x2c56a0,7, 0x2c56c0,11, 0x2c5700,14, 0x2c5740,14, 0x2c5780,69, 0x2c5c00,6, 0x2c5c40,14, 0x2c5c80,9, 0x2c5d00,9, 0x2c5d2c,1, 0x2c5d40,3, 0x2c5d60,1, 0x2c5d80,3, 0x2c5e00,2, 0x2c5e0c,1, 0x2c5e14,5, 0x2c5e2c,1, 0x2c5e34,5, 0x2c5e4c,1, 0x2c5e54,5, 0x2c5e6c,1, 0x2c5e74,5, 0x2c5e8c,1, 0x2c5e94,5, 0x2c5eac,1, 0x2c5eb4,3, 0x2c6000,14, 0x2c6040,6, 0x2c6060,6, 0x2c6080,6, 0x2c60a0,3, 0x2c6100,9, 0x2c6204,1, 0x2c620c,6, 0x2c6240,13, 0x2c6280,16, 0x2c6800,19, 0x2c6850,10, 0x2c6880,19, 0x2c68d0,10, 0x2c6900,19, 0x2c6950,10, 0x2c6980,19, 0x2c69d0,10, 0x2c6a00,19, 0x2c6a50,10, 0x2c6a80,19, 0x2c6ad0,10, 0x2c6b00,19, 0x2c6b50,10, 0x2c6b80,19, 0x2c6bd0,10, 0x2c6c00,19, 0x2c6c60,6, 0x2c6c84,1, 0x2c6c94,8, 0x2c6cb8,14, 0x2c7000,1, 0x2c7028,1, 0x2c7050,1, 0x2c7078,1, 0x2c70a0,4, 0x2c71ac,1, 0x2c71d8,4, 0x2c7200,6, 0x2c7220,6, 0x2c7240,3, 0x2c7400,1, 0x2c7408,3, 0x2c7438,1, 0x2c7444,1, 0x2c7450,6, 0x2c7500,7, 0x2c7520,6, 0x2c7540,6, 0x2c7560,3, 0x2c7570,3, 0x2c8000,6, 0x2c8020,3, 0x2c8030,1, 0x2c8038,4, 0x2c8050,1, 0x2c8400,1, 0x2c8428,1, 0x2c8450,1, 0x2c8478,1, 0x2c84a0,6, 0x2c85ac,1, 0x2c85d8,4, 0x2c8600,6, 0x2c8620,6, 0x2c8640,3, 0x2c8800,6, 0x2c8820,3, 0x2c8830,4, 0x2c8918,2, 0x2c8924,1, 0x2c8934,3, 0x2c8958,2, 0x2c8964,1, 0x2c8974,3, 0x2c8998,2, 0x2c89a4,1, 0x2c89b4,3, 0x2c89d8,2, 0x2c89e4,1, 0x2c89f4,3, 0x2c9020,4, 0x2c9040,11, 0x2c9074,2, 0x2c9080,4, 0x2c90b0,22, 0x2c9110,2, 0x2c9120,22, 0x2c9180,2, 0x2c91a0,6, 0x2c91c0,9, 0x2c9200,42, 0x2c92c0,1, 0x2c92c8,13, 0x2c9300,25, 0x2c936c,4, 0x2c9380,2, 0x2c93a0,1, 0x2c93c0,11, 0x2c9404,3, 0x2c9420,11, 0x2c9480,6, 0x2c9500,1, 0x2c9520,6, 0x2c9540,3, 0x2c9550,7, 0x2c9570,18, 0x2c95bc,5, 0x2c9800,480, 0x2ca020,4, 0x2ca040,11, 0x2ca074,2, 0x2ca080,4, 0x2ca0b0,22, 0x2ca110,2, 0x2ca120,22, 0x2ca180,2, 0x2ca1a0,6, 0x2ca1c0,9, 0x2ca200,42, 0x2ca2c0,1, 0x2ca2c8,13, 0x2ca300,25, 0x2ca36c,4, 0x2ca380,2, 0x2ca3a0,1, 0x2ca3c0,11, 0x2ca404,3, 0x2ca420,11, 0x2ca480,6, 0x2ca500,1, 0x2ca520,6, 0x2ca540,3, 0x2ca550,7, 0x2ca570,18, 0x2ca5bc,5, 0x2ca800,480, 0x2cb020,4, 0x2cb040,11, 0x2cb074,2, 0x2cb080,4, 0x2cb0b0,22, 0x2cb110,2, 0x2cb120,22, 0x2cb180,2, 0x2cb1a0,6, 0x2cb1c0,9, 0x2cb200,42, 0x2cb2c0,1, 0x2cb2c8,13, 0x2cb300,25, 0x2cb36c,4, 0x2cb380,2, 0x2cb3a0,1, 0x2cb3c0,11, 0x2cb404,3, 0x2cb420,11, 0x2cb480,6, 0x2cb500,1, 0x2cb520,6, 0x2cb540,3, 0x2cb550,7, 0x2cb570,18, 0x2cb5bc,5, 0x2cb800,480, 0x2cc020,4, 0x2cc040,11, 0x2cc074,2, 0x2cc080,4, 0x2cc0b0,22, 0x2cc110,2, 0x2cc120,22, 0x2cc180,2, 0x2cc1a0,6, 0x2cc1c0,9, 0x2cc200,42, 0x2cc2c0,1, 0x2cc2c8,13, 0x2cc300,25, 0x2cc36c,4, 0x2cc380,2, 0x2cc3a0,1, 0x2cc3c0,11, 0x2cc404,3, 0x2cc420,11, 0x2cc480,6, 0x2cc500,1, 0x2cc520,6, 0x2cc540,3, 0x2cc550,7, 0x2cc570,18, 0x2cc5bc,5, 0x2cc800,480, 0x2cf800,5, 0x2cf818,1, 0x2cf854,6, 0x2cf880,4, 0x2cf8a4,1, 0x2cf8ac,2, 0x2cf900,5, 0x2cf918,1, 0x2cf954,6, 0x2cf980,4, 0x2cf9a4,1, 0x2cf9ac,2, 0x2cfa00,5, 0x2cfa18,1, 0x2cfa54,6, 0x2cfa80,4, 0x2cfaa4,1, 0x2cfaac,2, 0x2cfb00,5, 0x2cfb18,1, 0x2cfb54,6, 0x2cfb80,4, 0x2cfba4,1, 0x2cfbac,2, 0x2d4000,3, 0x2d4018,10, 0x2d4100,58, 0x2d41f0,1, 0x2d4400,3, 0x2d4418,10, 0x2d4500,58, 0x2d45f0,1, 0x2d4800,3, 0x2d4810,3, 0x2d4820,6, 0x2d4880,9, 0x2d48c0,9, 0x2d4900,8, 0x2d4938,2, 0x2d4944,1, 0x2d4954,3, 0x2d4980,8, 0x2d49b8,2, 0x2d49c4,1, 0x2d49d4,3, 0x2d5000,3, 0x2d5018,10, 0x2d5100,58, 0x2d51f0,1, 0x2d5400,3, 0x2d5418,10, 0x2d5500,58, 0x2d55f0,1, 0x2d5800,3, 0x2d5810,3, 0x2d5820,6, 0x2d5880,9, 0x2d58c0,9, 0x2d5900,8, 0x2d5938,2, 0x2d5944,1, 0x2d5954,3, 0x2d5980,8, 0x2d59b8,2, 0x2d59c4,1, 0x2d59d4,3, 0x2d6004,7, 0x2d6024,1, 0x2d6030,4, 0x2d6300,5, 0x2d631c,2, 0x2d6600,10, 0x2d6630,1, 0x2d6640,10, 0x2d6670,1, 0x2d6700,10, 0x2d6730,1, 0x2d6740,10, 0x2d6770,1, 0x2d6800,19, 0x2d6890,15, 0x2d6910,15, 0x2d6a00,10, 0x2d6ab8,4, 0x2d6b00,3, 0x2d6b10,1, 0x2d6e00,6, 0x2d6f00,5, 0x2d7000,65, 0x2d7800,6, 0x2d7820,6, 0x2d7840,6, 0x2d7860,6, 0x2d7880,6, 0x2d78a0,6, 0x2d78c0,6, 0x2d78e0,3, 0x2d7900,6, 0x2d7920,6, 0x2d7940,6, 0x2d7960,6, 0x2d7980,6, 0x2d79a0,6, 0x2d79c0,6, 0x2d79e0,3, 0x2d7a00,6, 0x2d7a20,6, 0x2d7a40,3, 0x2d7a80,7, 0x2d7aa0,7, 0x2d7ac0,9, 0x2d7b00,9, 0x2d7b40,10, 0x2d7b80,10, 0x2d7bc0,10, 0x2d7c00,10, 0x2d7c40,10, 0x2d7c80,10, 0x2d7cc0,3, 0x2d7e40,7, 0x2d7e60,7, 0x2d7e80,7, 0x2d7ea0,7, 0x2d7ec0,7, 0x2d7ee0,7, 0x2d7f00,7, 0x2d7f20,7, 0x2d7f40,7, 0x2d7f60,4, 0x2d7f78,13, 0x2d8000,2, 0x2d800c,3, 0x2d8028,2, 0x2d8038,2, 0x2d8080,29, 0x2d80f8,1, 0x2d8100,13, 0x2d8140,13, 0x2d8500,6, 0x2d8520,6, 0x2d8540,3, 0x2d8580,10, 0x2d85c0,15, 0x2d8600,2, 0x2d8618,5, 0x2d8630,1, 0x2d8800,2, 0x2d880c,3, 0x2d8828,2, 0x2d8838,2, 0x2d8880,29, 0x2d88f8,1, 0x2d8900,13, 0x2d8940,13, 0x2d8d00,6, 0x2d8d20,6, 0x2d8d40,3, 0x2d8d80,10, 0x2d8dc0,15, 0x2d8e00,2, 0x2d8e18,5, 0x2d8e30,1, 0x2d9800,3, 0x2d9828,3, 0x2d9850,3, 0x2d9878,3, 0x2d98a0,9, 0x2d99ac,1, 0x2d99d8,4, 0x2d9a00,6, 0x2d9a20,6, 0x2d9a40,6, 0x2d9a60,6, 0x2d9a80,6, 0x2d9aa0,6, 0x2d9ac0,3, 0x2d9c00,6, 0x2d9c20,3, 0x2d9c40,2, 0x2d9c60,1, 0x2e0000,4, 0x2e0014,1, 0x2e0020,3, 0x2e0030,3, 0x2e0040,8, 0x2e007c,2, 0x2e00a0,6, 0x2e00c0,6, 0x2e00e0,6, 0x2e0100,4, 0x2e0114,1, 0x2e0120,3, 0x2e0130,3, 0x2e0140,8, 0x2e017c,2, 0x2e01a0,6, 0x2e01c0,6, 0x2e01e0,6, 0x2e0200,4, 0x2e0214,1, 0x2e0220,3, 0x2e0230,3, 0x2e0240,8, 0x2e027c,2, 0x2e02a0,6, 0x2e02c0,6, 0x2e02e0,6, 0x2e0300,4, 0x2e0314,1, 0x2e0320,3, 0x2e0330,3, 0x2e0340,8, 0x2e037c,2, 0x2e03a0,6, 0x2e03c0,6, 0x2e03e0,6, 0x2e0400,6, 0x2e0440,6, 0x2e0480,3, 0x2e04c0,3, 0x2e0500,2, 0x2e050c,4, 0x2e0520,2, 0x2e052c,4, 0x2e0540,2, 0x2e0c00,13, 0x2e0c40,12, 0x2e0c80,13, 0x2e0cc0,12, 0x2e0d00,14, 0x2e0d40,6, 0x2e0d80,14, 0x2e0dc0,6, 0x2e0e00,11, 0x2e0e40,6, 0x2e0e60,6, 0x2e0e80,6, 0x2e0ea0,6, 0x2e1000,2, 0x2e1014,4, 0x2e1040,3, 0x2e1050,3, 0x2e1080,43, 0x2e1140,11, 0x2e1180,1, 0x2e119c,15, 0x2e1200,12, 0x2e1300,1, 0x2e1308,6, 0x2e1324,10, 0x2e1380,1, 0x2e1388,6, 0x2e13a4,10, 0x2e1400,7, 0x2e1420,7, 0x2e1500,12, 0x2e1540,12, 0x2e1580,4, 0x2e1800,14, 0x2e183c,9, 0x2e1864,6, 0x2e1880,2, 0x2e1890,4, 0x2e1900,14, 0x2e193c,9, 0x2e1964,6, 0x2e1980,2, 0x2e1990,4, 0x2e1a00,16, 0x2e1a50,4, 0x2e1a80,16, 0x2e1ad0,4, 0x2e1b00,6, 0x2e1b20,6, 0x2e1b40,3, 0x2e1b80,6, 0x2e1ba0,6, 0x2e1bc0,3, 0x2e1c00,6, 0x2e1c20,6, 0x2e1c40,3, 0x2e1c80,6, 0x2e1ca0,6, 0x2e1cc0,3, 0x2e1d10,2, 0x2e1d1c,1, 0x2e1d50,2, 0x2e1d5c,1, 0x2e1d80,1, 0x2e1da0,1, 0x2e1da8,4, 0x2e1dc0,1, 0x2e1de0,1, 0x2e1de8,4, 0x2e1e00,13, 0x2e1e40,6, 0x2e1e60,6, 0x2e1e80,6, 0x2e1ea0,6, 0x2e1ec0,7, 0x2e1ee0,7, 0x2e1f00,12, 0x2e1f34,2, 0x2e1f40,3, 0x2e1f50,8, 0x2e2000,4, 0x2e2014,1, 0x2e2020,3, 0x2e2030,3, 0x2e2040,8, 0x2e207c,2, 0x2e20a0,6, 0x2e20c0,6, 0x2e20e0,6, 0x2e2100,4, 0x2e2114,1, 0x2e2120,3, 0x2e2130,3, 0x2e2140,8, 0x2e217c,2, 0x2e21a0,6, 0x2e21c0,6, 0x2e21e0,6, 0x2e2200,4, 0x2e2214,1, 0x2e2220,3, 0x2e2230,3, 0x2e2240,8, 0x2e227c,2, 0x2e22a0,6, 0x2e22c0,6, 0x2e22e0,6, 0x2e2300,4, 0x2e2314,1, 0x2e2320,3, 0x2e2330,3, 0x2e2340,8, 0x2e237c,2, 0x2e23a0,6, 0x2e23c0,6, 0x2e23e0,6, 0x2e2400,6, 0x2e2440,6, 0x2e2480,3, 0x2e24c0,3, 0x2e2500,2, 0x2e250c,4, 0x2e2520,2, 0x2e252c,4, 0x2e2540,2, 0x2e2c00,13, 0x2e2c40,12, 0x2e2c80,13, 0x2e2cc0,12, 0x2e2d00,14, 0x2e2d40,6, 0x2e2d80,14, 0x2e2dc0,6, 0x2e2e00,11, 0x2e2e40,6, 0x2e2e60,6, 0x2e2e80,6, 0x2e2ea0,6, 0x2e3000,2, 0x2e3014,4, 0x2e3040,3, 0x2e3050,3, 0x2e3080,43, 0x2e3140,11, 0x2e3180,1, 0x2e319c,15, 0x2e3200,12, 0x2e3300,1, 0x2e3308,6, 0x2e3324,10, 0x2e3380,1, 0x2e3388,6, 0x2e33a4,10, 0x2e3400,7, 0x2e3420,7, 0x2e3500,12, 0x2e3540,12, 0x2e3580,4, 0x2e3800,14, 0x2e383c,9, 0x2e3864,6, 0x2e3880,2, 0x2e3890,4, 0x2e3900,14, 0x2e393c,9, 0x2e3964,6, 0x2e3980,2, 0x2e3990,4, 0x2e3a00,16, 0x2e3a50,4, 0x2e3a80,16, 0x2e3ad0,4, 0x2e3b00,6, 0x2e3b20,6, 0x2e3b40,3, 0x2e3b80,6, 0x2e3ba0,6, 0x2e3bc0,3, 0x2e3c00,6, 0x2e3c20,6, 0x2e3c40,3, 0x2e3c80,6, 0x2e3ca0,6, 0x2e3cc0,3, 0x2e3d10,2, 0x2e3d1c,1, 0x2e3d50,2, 0x2e3d5c,1, 0x2e3d80,1, 0x2e3da0,1, 0x2e3da8,4, 0x2e3dc0,1, 0x2e3de0,1, 0x2e3de8,4, 0x2e3e00,13, 0x2e3e40,6, 0x2e3e60,6, 0x2e3e80,6, 0x2e3ea0,6, 0x2e3ec0,7, 0x2e3ee0,7, 0x2e3f00,12, 0x2e3f34,2, 0x2e3f40,3, 0x2e3f50,8, 0x2e4000,29, 0x2e4078,4, 0x2e4090,2, 0x2e40a0,7, 0x2e40c0,11, 0x2e4100,14, 0x2e4140,14, 0x2e4180,61, 0x2e4278,4, 0x2e4290,2, 0x2e42a0,7, 0x2e42c0,11, 0x2e4300,14, 0x2e4340,14, 0x2e4380,61, 0x2e4478,4, 0x2e4490,2, 0x2e44a0,7, 0x2e44c0,11, 0x2e4500,14, 0x2e4540,14, 0x2e4580,61, 0x2e4678,4, 0x2e4690,2, 0x2e46a0,7, 0x2e46c0,11, 0x2e4700,14, 0x2e4740,14, 0x2e4780,69, 0x2e4c00,6, 0x2e4c40,14, 0x2e4c80,9, 0x2e4d00,9, 0x2e4d2c,1, 0x2e4d40,3, 0x2e4d60,1, 0x2e4d80,3, 0x2e4e00,2, 0x2e4e0c,1, 0x2e4e14,5, 0x2e4e2c,1, 0x2e4e34,5, 0x2e4e4c,1, 0x2e4e54,5, 0x2e4e6c,1, 0x2e4e74,5, 0x2e4e8c,1, 0x2e4e94,5, 0x2e4eac,1, 0x2e4eb4,3, 0x2e5000,29, 0x2e5078,4, 0x2e5090,2, 0x2e50a0,7, 0x2e50c0,11, 0x2e5100,14, 0x2e5140,14, 0x2e5180,61, 0x2e5278,4, 0x2e5290,2, 0x2e52a0,7, 0x2e52c0,11, 0x2e5300,14, 0x2e5340,14, 0x2e5380,61, 0x2e5478,4, 0x2e5490,2, 0x2e54a0,7, 0x2e54c0,11, 0x2e5500,14, 0x2e5540,14, 0x2e5580,61, 0x2e5678,4, 0x2e5690,2, 0x2e56a0,7, 0x2e56c0,11, 0x2e5700,14, 0x2e5740,14, 0x2e5780,69, 0x2e5c00,6, 0x2e5c40,14, 0x2e5c80,9, 0x2e5d00,9, 0x2e5d2c,1, 0x2e5d40,3, 0x2e5d60,1, 0x2e5d80,3, 0x2e5e00,2, 0x2e5e0c,1, 0x2e5e14,5, 0x2e5e2c,1, 0x2e5e34,5, 0x2e5e4c,1, 0x2e5e54,5, 0x2e5e6c,1, 0x2e5e74,5, 0x2e5e8c,1, 0x2e5e94,5, 0x2e5eac,1, 0x2e5eb4,3, 0x2e6000,14, 0x2e6040,6, 0x2e6060,6, 0x2e6080,6, 0x2e60a0,3, 0x2e6100,9, 0x2e6204,1, 0x2e620c,6, 0x2e6240,13, 0x2e6280,16, 0x2e6800,19, 0x2e6850,10, 0x2e6880,19, 0x2e68d0,10, 0x2e6900,19, 0x2e6950,10, 0x2e6980,19, 0x2e69d0,10, 0x2e6a00,19, 0x2e6a50,10, 0x2e6a80,19, 0x2e6ad0,10, 0x2e6b00,19, 0x2e6b50,10, 0x2e6b80,19, 0x2e6bd0,10, 0x2e6c00,19, 0x2e6c60,6, 0x2e6c84,1, 0x2e6c94,8, 0x2e6cb8,14, 0x2e7000,1, 0x2e7028,1, 0x2e7050,1, 0x2e7078,1, 0x2e70a0,4, 0x2e71ac,1, 0x2e71d8,4, 0x2e7200,6, 0x2e7220,6, 0x2e7240,3, 0x2e7400,1, 0x2e7408,3, 0x2e7438,1, 0x2e7444,1, 0x2e7450,6, 0x2e7500,7, 0x2e7520,6, 0x2e7540,6, 0x2e7560,3, 0x2e7570,3, 0x2e8000,6, 0x2e8020,3, 0x2e8030,1, 0x2e8038,4, 0x2e8050,1, 0x2e8400,1, 0x2e8428,1, 0x2e8450,1, 0x2e8478,1, 0x2e84a0,6, 0x2e85ac,1, 0x2e85d8,4, 0x2e8600,6, 0x2e8620,6, 0x2e8640,3, 0x2e8800,6, 0x2e8820,3, 0x2e8830,4, 0x2e8918,2, 0x2e8924,1, 0x2e8934,3, 0x2e8958,2, 0x2e8964,1, 0x2e8974,3, 0x2e8998,2, 0x2e89a4,1, 0x2e89b4,3, 0x2e89d8,2, 0x2e89e4,1, 0x2e89f4,3, 0x2e9020,4, 0x2e9040,11, 0x2e9074,2, 0x2e9080,4, 0x2e90b0,22, 0x2e9110,2, 0x2e9120,22, 0x2e9180,2, 0x2e91a0,6, 0x2e91c0,9, 0x2e9200,42, 0x2e92c0,1, 0x2e92c8,13, 0x2e9300,25, 0x2e936c,4, 0x2e9380,2, 0x2e93a0,1, 0x2e93c0,11, 0x2e9404,3, 0x2e9420,11, 0x2e9480,6, 0x2e9500,1, 0x2e9520,6, 0x2e9540,3, 0x2e9550,7, 0x2e9570,18, 0x2e95bc,5, 0x2e9800,480, 0x2ea020,4, 0x2ea040,11, 0x2ea074,2, 0x2ea080,4, 0x2ea0b0,22, 0x2ea110,2, 0x2ea120,22, 0x2ea180,2, 0x2ea1a0,6, 0x2ea1c0,9, 0x2ea200,42, 0x2ea2c0,1, 0x2ea2c8,13, 0x2ea300,25, 0x2ea36c,4, 0x2ea380,2, 0x2ea3a0,1, 0x2ea3c0,11, 0x2ea404,3, 0x2ea420,11, 0x2ea480,6, 0x2ea500,1, 0x2ea520,6, 0x2ea540,3, 0x2ea550,7, 0x2ea570,18, 0x2ea5bc,5, 0x2ea800,480, 0x2eb020,4, 0x2eb040,11, 0x2eb074,2, 0x2eb080,4, 0x2eb0b0,22, 0x2eb110,2, 0x2eb120,22, 0x2eb180,2, 0x2eb1a0,6, 0x2eb1c0,9, 0x2eb200,42, 0x2eb2c0,1, 0x2eb2c8,13, 0x2eb300,25, 0x2eb36c,4, 0x2eb380,2, 0x2eb3a0,1, 0x2eb3c0,11, 0x2eb404,3, 0x2eb420,11, 0x2eb480,6, 0x2eb500,1, 0x2eb520,6, 0x2eb540,3, 0x2eb550,7, 0x2eb570,18, 0x2eb5bc,5, 0x2eb800,480, 0x2ec020,4, 0x2ec040,11, 0x2ec074,2, 0x2ec080,4, 0x2ec0b0,22, 0x2ec110,2, 0x2ec120,22, 0x2ec180,2, 0x2ec1a0,6, 0x2ec1c0,9, 0x2ec200,42, 0x2ec2c0,1, 0x2ec2c8,13, 0x2ec300,25, 0x2ec36c,4, 0x2ec380,2, 0x2ec3a0,1, 0x2ec3c0,11, 0x2ec404,3, 0x2ec420,11, 0x2ec480,6, 0x2ec500,1, 0x2ec520,6, 0x2ec540,3, 0x2ec550,7, 0x2ec570,18, 0x2ec5bc,5, 0x2ec800,480, 0x2ef800,5, 0x2ef818,1, 0x2ef854,6, 0x2ef880,4, 0x2ef8a4,1, 0x2ef8ac,2, 0x2ef900,5, 0x2ef918,1, 0x2ef954,6, 0x2ef980,4, 0x2ef9a4,1, 0x2ef9ac,2, 0x2efa00,5, 0x2efa18,1, 0x2efa54,6, 0x2efa80,4, 0x2efaa4,1, 0x2efaac,2, 0x2efb00,5, 0x2efb18,1, 0x2efb54,6, 0x2efb80,4, 0x2efba4,1, 0x2efbac,2, 0x2f4000,3, 0x2f4018,10, 0x2f4100,58, 0x2f41f0,1, 0x2f4400,3, 0x2f4418,10, 0x2f4500,58, 0x2f45f0,1, 0x2f4800,3, 0x2f4810,3, 0x2f4820,6, 0x2f4880,9, 0x2f48c0,9, 0x2f4900,8, 0x2f4938,2, 0x2f4944,1, 0x2f4954,3, 0x2f4980,8, 0x2f49b8,2, 0x2f49c4,1, 0x2f49d4,3, 0x2f5000,3, 0x2f5018,10, 0x2f5100,58, 0x2f51f0,1, 0x2f5400,3, 0x2f5418,10, 0x2f5500,58, 0x2f55f0,1, 0x2f5800,3, 0x2f5810,3, 0x2f5820,6, 0x2f5880,9, 0x2f58c0,9, 0x2f5900,8, 0x2f5938,2, 0x2f5944,1, 0x2f5954,3, 0x2f5980,8, 0x2f59b8,2, 0x2f59c4,1, 0x2f59d4,3, 0x2f6004,7, 0x2f6024,1, 0x2f6030,4, 0x2f6300,5, 0x2f631c,2, 0x2f6600,10, 0x2f6630,1, 0x2f6640,10, 0x2f6670,1, 0x2f6700,10, 0x2f6730,1, 0x2f6740,10, 0x2f6770,1, 0x2f6800,19, 0x2f6890,15, 0x2f6910,15, 0x2f6a00,10, 0x2f6ab8,4, 0x2f6b00,3, 0x2f6b10,1, 0x2f6e00,6, 0x2f6f00,5, 0x2f7000,65, 0x2f7800,6, 0x2f7820,6, 0x2f7840,6, 0x2f7860,6, 0x2f7880,6, 0x2f78a0,6, 0x2f78c0,6, 0x2f78e0,3, 0x2f7900,6, 0x2f7920,6, 0x2f7940,6, 0x2f7960,6, 0x2f7980,6, 0x2f79a0,6, 0x2f79c0,6, 0x2f79e0,3, 0x2f7a00,6, 0x2f7a20,6, 0x2f7a40,3, 0x2f7a80,7, 0x2f7aa0,7, 0x2f7ac0,9, 0x2f7b00,9, 0x2f7b40,10, 0x2f7b80,10, 0x2f7bc0,10, 0x2f7c00,10, 0x2f7c40,10, 0x2f7c80,10, 0x2f7cc0,3, 0x2f7e40,7, 0x2f7e60,7, 0x2f7e80,7, 0x2f7ea0,7, 0x2f7ec0,7, 0x2f7ee0,7, 0x2f7f00,7, 0x2f7f20,7, 0x2f7f40,7, 0x2f7f60,4, 0x2f7f78,13, 0x2f8000,2, 0x2f800c,3, 0x2f8028,2, 0x2f8038,2, 0x2f8080,29, 0x2f80f8,1, 0x2f8100,13, 0x2f8140,13, 0x2f8500,6, 0x2f8520,6, 0x2f8540,3, 0x2f8580,10, 0x2f85c0,15, 0x2f8600,2, 0x2f8618,5, 0x2f8630,1, 0x2f8800,2, 0x2f880c,3, 0x2f8828,2, 0x2f8838,2, 0x2f8880,29, 0x2f88f8,1, 0x2f8900,13, 0x2f8940,13, 0x2f8d00,6, 0x2f8d20,6, 0x2f8d40,3, 0x2f8d80,10, 0x2f8dc0,15, 0x2f8e00,2, 0x2f8e18,5, 0x2f8e30,1, 0x2f9800,3, 0x2f9828,3, 0x2f9850,3, 0x2f9878,3, 0x2f98a0,9, 0x2f99ac,1, 0x2f99d8,4, 0x2f9a00,6, 0x2f9a20,6, 0x2f9a40,6, 0x2f9a60,6, 0x2f9a80,6, 0x2f9aa0,6, 0x2f9ac0,3, 0x2f9c00,6, 0x2f9c20,3, 0x2f9c40,2, 0x2f9c60,1, 0x300000,4, 0x300014,1, 0x300020,3, 0x300030,3, 0x300040,8, 0x30007c,2, 0x3000a0,6, 0x3000c0,6, 0x3000e0,6, 0x300100,4, 0x300114,1, 0x300120,3, 0x300130,3, 0x300140,8, 0x30017c,2, 0x3001a0,6, 0x3001c0,6, 0x3001e0,6, 0x300200,4, 0x300214,1, 0x300220,3, 0x300230,3, 0x300240,8, 0x30027c,2, 0x3002a0,6, 0x3002c0,6, 0x3002e0,6, 0x300300,4, 0x300314,1, 0x300320,3, 0x300330,3, 0x300340,8, 0x30037c,2, 0x3003a0,6, 0x3003c0,6, 0x3003e0,6, 0x300400,6, 0x300440,6, 0x300480,3, 0x3004c0,3, 0x300500,2, 0x30050c,4, 0x300520,2, 0x30052c,4, 0x300540,2, 0x300c00,13, 0x300c40,12, 0x300c80,13, 0x300cc0,12, 0x300d00,14, 0x300d40,6, 0x300d80,14, 0x300dc0,6, 0x300e00,11, 0x300e40,6, 0x300e60,6, 0x300e80,6, 0x300ea0,6, 0x301000,2, 0x301014,4, 0x301040,3, 0x301050,3, 0x301080,43, 0x301140,11, 0x301180,1, 0x30119c,15, 0x301200,12, 0x301300,1, 0x301308,6, 0x301324,10, 0x301380,1, 0x301388,6, 0x3013a4,10, 0x301400,7, 0x301420,7, 0x301500,12, 0x301540,12, 0x301580,4, 0x301800,14, 0x30183c,9, 0x301864,6, 0x301880,2, 0x301890,4, 0x301900,14, 0x30193c,9, 0x301964,6, 0x301980,2, 0x301990,4, 0x301a00,16, 0x301a50,4, 0x301a80,16, 0x301ad0,4, 0x301b00,6, 0x301b20,6, 0x301b40,3, 0x301b80,6, 0x301ba0,6, 0x301bc0,3, 0x301c00,6, 0x301c20,6, 0x301c40,3, 0x301c80,6, 0x301ca0,6, 0x301cc0,3, 0x301d10,2, 0x301d1c,1, 0x301d50,2, 0x301d5c,1, 0x301d80,1, 0x301da0,1, 0x301da8,4, 0x301dc0,1, 0x301de0,1, 0x301de8,4, 0x301e00,13, 0x301e40,6, 0x301e60,6, 0x301e80,6, 0x301ea0,6, 0x301ec0,7, 0x301ee0,7, 0x301f00,12, 0x301f34,2, 0x301f40,3, 0x301f50,8, 0x302000,4, 0x302014,1, 0x302020,3, 0x302030,3, 0x302040,8, 0x30207c,2, 0x3020a0,6, 0x3020c0,6, 0x3020e0,6, 0x302100,4, 0x302114,1, 0x302120,3, 0x302130,3, 0x302140,8, 0x30217c,2, 0x3021a0,6, 0x3021c0,6, 0x3021e0,6, 0x302200,4, 0x302214,1, 0x302220,3, 0x302230,3, 0x302240,8, 0x30227c,2, 0x3022a0,6, 0x3022c0,6, 0x3022e0,6, 0x302300,4, 0x302314,1, 0x302320,3, 0x302330,3, 0x302340,8, 0x30237c,2, 0x3023a0,6, 0x3023c0,6, 0x3023e0,6, 0x302400,6, 0x302440,6, 0x302480,3, 0x3024c0,3, 0x302500,2, 0x30250c,4, 0x302520,2, 0x30252c,4, 0x302540,2, 0x302c00,13, 0x302c40,12, 0x302c80,13, 0x302cc0,12, 0x302d00,14, 0x302d40,6, 0x302d80,14, 0x302dc0,6, 0x302e00,11, 0x302e40,6, 0x302e60,6, 0x302e80,6, 0x302ea0,6, 0x303000,2, 0x303014,4, 0x303040,3, 0x303050,3, 0x303080,43, 0x303140,11, 0x303180,1, 0x30319c,15, 0x303200,12, 0x303300,1, 0x303308,6, 0x303324,10, 0x303380,1, 0x303388,6, 0x3033a4,10, 0x303400,7, 0x303420,7, 0x303500,12, 0x303540,12, 0x303580,4, 0x303800,14, 0x30383c,9, 0x303864,6, 0x303880,2, 0x303890,4, 0x303900,14, 0x30393c,9, 0x303964,6, 0x303980,2, 0x303990,4, 0x303a00,16, 0x303a50,4, 0x303a80,16, 0x303ad0,4, 0x303b00,6, 0x303b20,6, 0x303b40,3, 0x303b80,6, 0x303ba0,6, 0x303bc0,3, 0x303c00,6, 0x303c20,6, 0x303c40,3, 0x303c80,6, 0x303ca0,6, 0x303cc0,3, 0x303d10,2, 0x303d1c,1, 0x303d50,2, 0x303d5c,1, 0x303d80,1, 0x303da0,1, 0x303da8,4, 0x303dc0,1, 0x303de0,1, 0x303de8,4, 0x303e00,13, 0x303e40,6, 0x303e60,6, 0x303e80,6, 0x303ea0,6, 0x303ec0,7, 0x303ee0,7, 0x303f00,12, 0x303f34,2, 0x303f40,3, 0x303f50,8, 0x304000,29, 0x304078,4, 0x304090,2, 0x3040a0,7, 0x3040c0,11, 0x304100,14, 0x304140,14, 0x304180,61, 0x304278,4, 0x304290,2, 0x3042a0,7, 0x3042c0,11, 0x304300,14, 0x304340,14, 0x304380,61, 0x304478,4, 0x304490,2, 0x3044a0,7, 0x3044c0,11, 0x304500,14, 0x304540,14, 0x304580,61, 0x304678,4, 0x304690,2, 0x3046a0,7, 0x3046c0,11, 0x304700,14, 0x304740,14, 0x304780,69, 0x304c00,6, 0x304c40,14, 0x304c80,9, 0x304d00,9, 0x304d2c,1, 0x304d40,3, 0x304d60,1, 0x304d80,3, 0x304e00,2, 0x304e0c,1, 0x304e14,5, 0x304e2c,1, 0x304e34,5, 0x304e4c,1, 0x304e54,5, 0x304e6c,1, 0x304e74,5, 0x304e8c,1, 0x304e94,5, 0x304eac,1, 0x304eb4,3, 0x305000,29, 0x305078,4, 0x305090,2, 0x3050a0,7, 0x3050c0,11, 0x305100,14, 0x305140,14, 0x305180,61, 0x305278,4, 0x305290,2, 0x3052a0,7, 0x3052c0,11, 0x305300,14, 0x305340,14, 0x305380,61, 0x305478,4, 0x305490,2, 0x3054a0,7, 0x3054c0,11, 0x305500,14, 0x305540,14, 0x305580,61, 0x305678,4, 0x305690,2, 0x3056a0,7, 0x3056c0,11, 0x305700,14, 0x305740,14, 0x305780,69, 0x305c00,6, 0x305c40,14, 0x305c80,9, 0x305d00,9, 0x305d2c,1, 0x305d40,3, 0x305d60,1, 0x305d80,3, 0x305e00,2, 0x305e0c,1, 0x305e14,5, 0x305e2c,1, 0x305e34,5, 0x305e4c,1, 0x305e54,5, 0x305e6c,1, 0x305e74,5, 0x305e8c,1, 0x305e94,5, 0x305eac,1, 0x305eb4,3, 0x306000,14, 0x306040,6, 0x306060,6, 0x306080,6, 0x3060a0,3, 0x306100,9, 0x306204,1, 0x30620c,6, 0x306240,13, 0x306280,16, 0x306800,19, 0x306850,10, 0x306880,19, 0x3068d0,10, 0x306900,19, 0x306950,10, 0x306980,19, 0x3069d0,10, 0x306a00,19, 0x306a50,10, 0x306a80,19, 0x306ad0,10, 0x306b00,19, 0x306b50,10, 0x306b80,19, 0x306bd0,10, 0x306c00,19, 0x306c60,6, 0x306c84,1, 0x306c94,8, 0x306cb8,14, 0x307000,1, 0x307028,1, 0x307050,1, 0x307078,1, 0x3070a0,4, 0x3071ac,1, 0x3071d8,4, 0x307200,6, 0x307220,6, 0x307240,3, 0x307400,1, 0x307408,3, 0x307438,1, 0x307444,1, 0x307450,6, 0x307500,7, 0x307520,6, 0x307540,6, 0x307560,3, 0x307570,3, 0x308000,6, 0x308020,3, 0x308030,1, 0x308038,4, 0x308050,1, 0x308400,1, 0x308428,1, 0x308450,1, 0x308478,1, 0x3084a0,6, 0x3085ac,1, 0x3085d8,4, 0x308600,6, 0x308620,6, 0x308640,3, 0x308800,6, 0x308820,3, 0x308830,4, 0x308918,2, 0x308924,1, 0x308934,3, 0x308958,2, 0x308964,1, 0x308974,3, 0x308998,2, 0x3089a4,1, 0x3089b4,3, 0x3089d8,2, 0x3089e4,1, 0x3089f4,3, 0x309020,4, 0x309040,11, 0x309074,2, 0x309080,4, 0x3090b0,22, 0x309110,2, 0x309120,22, 0x309180,2, 0x3091a0,6, 0x3091c0,9, 0x309200,42, 0x3092c0,1, 0x3092c8,13, 0x309300,25, 0x30936c,4, 0x309380,2, 0x3093a0,1, 0x3093c0,11, 0x309404,3, 0x309420,11, 0x309480,6, 0x309500,1, 0x309520,6, 0x309540,3, 0x309550,7, 0x309570,18, 0x3095bc,5, 0x309800,480, 0x30a020,4, 0x30a040,11, 0x30a074,2, 0x30a080,4, 0x30a0b0,22, 0x30a110,2, 0x30a120,22, 0x30a180,2, 0x30a1a0,6, 0x30a1c0,9, 0x30a200,42, 0x30a2c0,1, 0x30a2c8,13, 0x30a300,25, 0x30a36c,4, 0x30a380,2, 0x30a3a0,1, 0x30a3c0,11, 0x30a404,3, 0x30a420,11, 0x30a480,6, 0x30a500,1, 0x30a520,6, 0x30a540,3, 0x30a550,7, 0x30a570,18, 0x30a5bc,5, 0x30a800,480, 0x30b020,4, 0x30b040,11, 0x30b074,2, 0x30b080,4, 0x30b0b0,22, 0x30b110,2, 0x30b120,22, 0x30b180,2, 0x30b1a0,6, 0x30b1c0,9, 0x30b200,42, 0x30b2c0,1, 0x30b2c8,13, 0x30b300,25, 0x30b36c,4, 0x30b380,2, 0x30b3a0,1, 0x30b3c0,11, 0x30b404,3, 0x30b420,11, 0x30b480,6, 0x30b500,1, 0x30b520,6, 0x30b540,3, 0x30b550,7, 0x30b570,18, 0x30b5bc,5, 0x30b800,480, 0x30c020,4, 0x30c040,11, 0x30c074,2, 0x30c080,4, 0x30c0b0,22, 0x30c110,2, 0x30c120,22, 0x30c180,2, 0x30c1a0,6, 0x30c1c0,9, 0x30c200,42, 0x30c2c0,1, 0x30c2c8,13, 0x30c300,25, 0x30c36c,4, 0x30c380,2, 0x30c3a0,1, 0x30c3c0,11, 0x30c404,3, 0x30c420,11, 0x30c480,6, 0x30c500,1, 0x30c520,6, 0x30c540,3, 0x30c550,7, 0x30c570,18, 0x30c5bc,5, 0x30c800,480, 0x30f800,5, 0x30f818,1, 0x30f854,6, 0x30f880,4, 0x30f8a4,1, 0x30f8ac,2, 0x30f900,5, 0x30f918,1, 0x30f954,6, 0x30f980,4, 0x30f9a4,1, 0x30f9ac,2, 0x30fa00,5, 0x30fa18,1, 0x30fa54,6, 0x30fa80,4, 0x30faa4,1, 0x30faac,2, 0x30fb00,5, 0x30fb18,1, 0x30fb54,6, 0x30fb80,4, 0x30fba4,1, 0x30fbac,2, 0x314000,3, 0x314018,10, 0x314100,58, 0x3141f0,1, 0x314400,3, 0x314418,10, 0x314500,58, 0x3145f0,1, 0x314800,3, 0x314810,3, 0x314820,6, 0x314880,9, 0x3148c0,9, 0x314900,8, 0x314938,2, 0x314944,1, 0x314954,3, 0x314980,8, 0x3149b8,2, 0x3149c4,1, 0x3149d4,3, 0x315000,3, 0x315018,10, 0x315100,58, 0x3151f0,1, 0x315400,3, 0x315418,10, 0x315500,58, 0x3155f0,1, 0x315800,3, 0x315810,3, 0x315820,6, 0x315880,9, 0x3158c0,9, 0x315900,8, 0x315938,2, 0x315944,1, 0x315954,3, 0x315980,8, 0x3159b8,2, 0x3159c4,1, 0x3159d4,3, 0x316004,7, 0x316024,1, 0x316030,4, 0x316300,5, 0x31631c,2, 0x316600,10, 0x316630,1, 0x316640,10, 0x316670,1, 0x316700,10, 0x316730,1, 0x316740,10, 0x316770,1, 0x316800,19, 0x316890,15, 0x316910,15, 0x316a00,10, 0x316ab8,4, 0x316b00,3, 0x316b10,1, 0x316e00,6, 0x316f00,5, 0x317000,65, 0x317800,6, 0x317820,6, 0x317840,6, 0x317860,6, 0x317880,6, 0x3178a0,6, 0x3178c0,6, 0x3178e0,3, 0x317900,6, 0x317920,6, 0x317940,6, 0x317960,6, 0x317980,6, 0x3179a0,6, 0x3179c0,6, 0x3179e0,3, 0x317a00,6, 0x317a20,6, 0x317a40,3, 0x317a80,7, 0x317aa0,7, 0x317ac0,9, 0x317b00,9, 0x317b40,10, 0x317b80,10, 0x317bc0,10, 0x317c00,10, 0x317c40,10, 0x317c80,10, 0x317cc0,3, 0x317e40,7, 0x317e60,7, 0x317e80,7, 0x317ea0,7, 0x317ec0,7, 0x317ee0,7, 0x317f00,7, 0x317f20,7, 0x317f40,7, 0x317f60,4, 0x317f78,13, 0x318000,2, 0x31800c,3, 0x318028,2, 0x318038,2, 0x318080,29, 0x3180f8,1, 0x318100,13, 0x318140,13, 0x318500,6, 0x318520,6, 0x318540,3, 0x318580,10, 0x3185c0,15, 0x318600,2, 0x318618,5, 0x318630,1, 0x318800,2, 0x31880c,3, 0x318828,2, 0x318838,2, 0x318880,29, 0x3188f8,1, 0x318900,13, 0x318940,13, 0x318d00,6, 0x318d20,6, 0x318d40,3, 0x318d80,10, 0x318dc0,15, 0x318e00,2, 0x318e18,5, 0x318e30,1, 0x319800,3, 0x319828,3, 0x319850,3, 0x319878,3, 0x3198a0,9, 0x3199ac,1, 0x3199d8,4, 0x319a00,6, 0x319a20,6, 0x319a40,6, 0x319a60,6, 0x319a80,6, 0x319aa0,6, 0x319ac0,3, 0x319c00,6, 0x319c20,3, 0x319c40,2, 0x319c60,1, 0x320000,4, 0x320014,1, 0x320020,3, 0x320030,3, 0x320040,8, 0x32007c,2, 0x3200a0,6, 0x3200c0,6, 0x3200e0,6, 0x320100,4, 0x320114,1, 0x320120,3, 0x320130,3, 0x320140,8, 0x32017c,2, 0x3201a0,6, 0x3201c0,6, 0x3201e0,6, 0x320200,4, 0x320214,1, 0x320220,3, 0x320230,3, 0x320240,8, 0x32027c,2, 0x3202a0,6, 0x3202c0,6, 0x3202e0,6, 0x320300,4, 0x320314,1, 0x320320,3, 0x320330,3, 0x320340,8, 0x32037c,2, 0x3203a0,6, 0x3203c0,6, 0x3203e0,6, 0x320400,6, 0x320440,6, 0x320480,3, 0x3204c0,3, 0x320500,2, 0x32050c,4, 0x320520,2, 0x32052c,4, 0x320540,2, 0x320c00,13, 0x320c40,12, 0x320c80,13, 0x320cc0,12, 0x320d00,14, 0x320d40,6, 0x320d80,14, 0x320dc0,6, 0x320e00,11, 0x320e40,6, 0x320e60,6, 0x320e80,6, 0x320ea0,6, 0x321000,2, 0x321014,4, 0x321040,3, 0x321050,3, 0x321080,43, 0x321140,11, 0x321180,1, 0x32119c,15, 0x321200,12, 0x321300,1, 0x321308,6, 0x321324,10, 0x321380,1, 0x321388,6, 0x3213a4,10, 0x321400,7, 0x321420,7, 0x321500,12, 0x321540,12, 0x321580,4, 0x321800,14, 0x32183c,9, 0x321864,6, 0x321880,2, 0x321890,4, 0x321900,14, 0x32193c,9, 0x321964,6, 0x321980,2, 0x321990,4, 0x321a00,16, 0x321a50,4, 0x321a80,16, 0x321ad0,4, 0x321b00,6, 0x321b20,6, 0x321b40,3, 0x321b80,6, 0x321ba0,6, 0x321bc0,3, 0x321c00,6, 0x321c20,6, 0x321c40,3, 0x321c80,6, 0x321ca0,6, 0x321cc0,3, 0x321d10,2, 0x321d1c,1, 0x321d50,2, 0x321d5c,1, 0x321d80,1, 0x321da0,1, 0x321da8,4, 0x321dc0,1, 0x321de0,1, 0x321de8,4, 0x321e00,13, 0x321e40,6, 0x321e60,6, 0x321e80,6, 0x321ea0,6, 0x321ec0,7, 0x321ee0,7, 0x321f00,12, 0x321f34,2, 0x321f40,3, 0x321f50,8, 0x322000,4, 0x322014,1, 0x322020,3, 0x322030,3, 0x322040,8, 0x32207c,2, 0x3220a0,6, 0x3220c0,6, 0x3220e0,6, 0x322100,4, 0x322114,1, 0x322120,3, 0x322130,3, 0x322140,8, 0x32217c,2, 0x3221a0,6, 0x3221c0,6, 0x3221e0,6, 0x322200,4, 0x322214,1, 0x322220,3, 0x322230,3, 0x322240,8, 0x32227c,2, 0x3222a0,6, 0x3222c0,6, 0x3222e0,6, 0x322300,4, 0x322314,1, 0x322320,3, 0x322330,3, 0x322340,8, 0x32237c,2, 0x3223a0,6, 0x3223c0,6, 0x3223e0,6, 0x322400,6, 0x322440,6, 0x322480,3, 0x3224c0,3, 0x322500,2, 0x32250c,4, 0x322520,2, 0x32252c,4, 0x322540,2, 0x322c00,13, 0x322c40,12, 0x322c80,13, 0x322cc0,12, 0x322d00,14, 0x322d40,6, 0x322d80,14, 0x322dc0,6, 0x322e00,11, 0x322e40,6, 0x322e60,6, 0x322e80,6, 0x322ea0,6, 0x323000,2, 0x323014,4, 0x323040,3, 0x323050,3, 0x323080,43, 0x323140,11, 0x323180,1, 0x32319c,15, 0x323200,12, 0x323300,1, 0x323308,6, 0x323324,10, 0x323380,1, 0x323388,6, 0x3233a4,10, 0x323400,7, 0x323420,7, 0x323500,12, 0x323540,12, 0x323580,4, 0x323800,14, 0x32383c,9, 0x323864,6, 0x323880,2, 0x323890,4, 0x323900,14, 0x32393c,9, 0x323964,6, 0x323980,2, 0x323990,4, 0x323a00,16, 0x323a50,4, 0x323a80,16, 0x323ad0,4, 0x323b00,6, 0x323b20,6, 0x323b40,3, 0x323b80,6, 0x323ba0,6, 0x323bc0,3, 0x323c00,6, 0x323c20,6, 0x323c40,3, 0x323c80,6, 0x323ca0,6, 0x323cc0,3, 0x323d10,2, 0x323d1c,1, 0x323d50,2, 0x323d5c,1, 0x323d80,1, 0x323da0,1, 0x323da8,4, 0x323dc0,1, 0x323de0,1, 0x323de8,4, 0x323e00,13, 0x323e40,6, 0x323e60,6, 0x323e80,6, 0x323ea0,6, 0x323ec0,7, 0x323ee0,7, 0x323f00,12, 0x323f34,2, 0x323f40,3, 0x323f50,8, 0x324000,29, 0x324078,4, 0x324090,2, 0x3240a0,7, 0x3240c0,11, 0x324100,14, 0x324140,14, 0x324180,61, 0x324278,4, 0x324290,2, 0x3242a0,7, 0x3242c0,11, 0x324300,14, 0x324340,14, 0x324380,61, 0x324478,4, 0x324490,2, 0x3244a0,7, 0x3244c0,11, 0x324500,14, 0x324540,14, 0x324580,61, 0x324678,4, 0x324690,2, 0x3246a0,7, 0x3246c0,11, 0x324700,14, 0x324740,14, 0x324780,69, 0x324c00,6, 0x324c40,14, 0x324c80,9, 0x324d00,9, 0x324d2c,1, 0x324d40,3, 0x324d60,1, 0x324d80,3, 0x324e00,2, 0x324e0c,1, 0x324e14,5, 0x324e2c,1, 0x324e34,5, 0x324e4c,1, 0x324e54,5, 0x324e6c,1, 0x324e74,5, 0x324e8c,1, 0x324e94,5, 0x324eac,1, 0x324eb4,3, 0x325000,29, 0x325078,4, 0x325090,2, 0x3250a0,7, 0x3250c0,11, 0x325100,14, 0x325140,14, 0x325180,61, 0x325278,4, 0x325290,2, 0x3252a0,7, 0x3252c0,11, 0x325300,14, 0x325340,14, 0x325380,61, 0x325478,4, 0x325490,2, 0x3254a0,7, 0x3254c0,11, 0x325500,14, 0x325540,14, 0x325580,61, 0x325678,4, 0x325690,2, 0x3256a0,7, 0x3256c0,11, 0x325700,14, 0x325740,14, 0x325780,69, 0x325c00,6, 0x325c40,14, 0x325c80,9, 0x325d00,9, 0x325d2c,1, 0x325d40,3, 0x325d60,1, 0x325d80,3, 0x325e00,2, 0x325e0c,1, 0x325e14,5, 0x325e2c,1, 0x325e34,5, 0x325e4c,1, 0x325e54,5, 0x325e6c,1, 0x325e74,5, 0x325e8c,1, 0x325e94,5, 0x325eac,1, 0x325eb4,3, 0x326000,14, 0x326040,6, 0x326060,6, 0x326080,6, 0x3260a0,3, 0x326100,9, 0x326204,1, 0x32620c,6, 0x326240,13, 0x326280,16, 0x326800,19, 0x326850,10, 0x326880,19, 0x3268d0,10, 0x326900,19, 0x326950,10, 0x326980,19, 0x3269d0,10, 0x326a00,19, 0x326a50,10, 0x326a80,19, 0x326ad0,10, 0x326b00,19, 0x326b50,10, 0x326b80,19, 0x326bd0,10, 0x326c00,19, 0x326c60,6, 0x326c84,1, 0x326c94,8, 0x326cb8,14, 0x327000,1, 0x327028,1, 0x327050,1, 0x327078,1, 0x3270a0,4, 0x3271ac,1, 0x3271d8,4, 0x327200,6, 0x327220,6, 0x327240,3, 0x327400,1, 0x327408,3, 0x327438,1, 0x327444,1, 0x327450,6, 0x327500,7, 0x327520,6, 0x327540,6, 0x327560,3, 0x327570,3, 0x328000,6, 0x328020,3, 0x328030,1, 0x328038,4, 0x328050,1, 0x328400,1, 0x328428,1, 0x328450,1, 0x328478,1, 0x3284a0,6, 0x3285ac,1, 0x3285d8,4, 0x328600,6, 0x328620,6, 0x328640,3, 0x328800,6, 0x328820,3, 0x328830,4, 0x328918,2, 0x328924,1, 0x328934,3, 0x328958,2, 0x328964,1, 0x328974,3, 0x328998,2, 0x3289a4,1, 0x3289b4,3, 0x3289d8,2, 0x3289e4,1, 0x3289f4,3, 0x329020,4, 0x329040,11, 0x329074,2, 0x329080,4, 0x3290b0,22, 0x329110,2, 0x329120,22, 0x329180,2, 0x3291a0,6, 0x3291c0,9, 0x329200,42, 0x3292c0,1, 0x3292c8,13, 0x329300,25, 0x32936c,4, 0x329380,2, 0x3293a0,1, 0x3293c0,11, 0x329404,3, 0x329420,11, 0x329480,6, 0x329500,1, 0x329520,6, 0x329540,3, 0x329550,7, 0x329570,18, 0x3295bc,5, 0x329800,480, 0x32a020,4, 0x32a040,11, 0x32a074,2, 0x32a080,4, 0x32a0b0,22, 0x32a110,2, 0x32a120,22, 0x32a180,2, 0x32a1a0,6, 0x32a1c0,9, 0x32a200,42, 0x32a2c0,1, 0x32a2c8,13, 0x32a300,25, 0x32a36c,4, 0x32a380,2, 0x32a3a0,1, 0x32a3c0,11, 0x32a404,3, 0x32a420,11, 0x32a480,6, 0x32a500,1, 0x32a520,6, 0x32a540,3, 0x32a550,7, 0x32a570,18, 0x32a5bc,5, 0x32a800,480, 0x32b020,4, 0x32b040,11, 0x32b074,2, 0x32b080,4, 0x32b0b0,22, 0x32b110,2, 0x32b120,22, 0x32b180,2, 0x32b1a0,6, 0x32b1c0,9, 0x32b200,42, 0x32b2c0,1, 0x32b2c8,13, 0x32b300,25, 0x32b36c,4, 0x32b380,2, 0x32b3a0,1, 0x32b3c0,11, 0x32b404,3, 0x32b420,11, 0x32b480,6, 0x32b500,1, 0x32b520,6, 0x32b540,3, 0x32b550,7, 0x32b570,18, 0x32b5bc,5, 0x32b800,480, 0x32c020,4, 0x32c040,11, 0x32c074,2, 0x32c080,4, 0x32c0b0,22, 0x32c110,2, 0x32c120,22, 0x32c180,2, 0x32c1a0,6, 0x32c1c0,9, 0x32c200,42, 0x32c2c0,1, 0x32c2c8,13, 0x32c300,25, 0x32c36c,4, 0x32c380,2, 0x32c3a0,1, 0x32c3c0,11, 0x32c404,3, 0x32c420,11, 0x32c480,6, 0x32c500,1, 0x32c520,6, 0x32c540,3, 0x32c550,7, 0x32c570,18, 0x32c5bc,5, 0x32c800,480, 0x32f800,5, 0x32f818,1, 0x32f854,6, 0x32f880,4, 0x32f8a4,1, 0x32f8ac,2, 0x32f900,5, 0x32f918,1, 0x32f954,6, 0x32f980,4, 0x32f9a4,1, 0x32f9ac,2, 0x32fa00,5, 0x32fa18,1, 0x32fa54,6, 0x32fa80,4, 0x32faa4,1, 0x32faac,2, 0x32fb00,5, 0x32fb18,1, 0x32fb54,6, 0x32fb80,4, 0x32fba4,1, 0x32fbac,2, 0x334000,3, 0x334018,10, 0x334100,58, 0x3341f0,1, 0x334400,3, 0x334418,10, 0x334500,58, 0x3345f0,1, 0x334800,3, 0x334810,3, 0x334820,6, 0x334880,9, 0x3348c0,9, 0x334900,8, 0x334938,2, 0x334944,1, 0x334954,3, 0x334980,8, 0x3349b8,2, 0x3349c4,1, 0x3349d4,3, 0x335000,3, 0x335018,10, 0x335100,58, 0x3351f0,1, 0x335400,3, 0x335418,10, 0x335500,58, 0x3355f0,1, 0x335800,3, 0x335810,3, 0x335820,6, 0x335880,9, 0x3358c0,9, 0x335900,8, 0x335938,2, 0x335944,1, 0x335954,3, 0x335980,8, 0x3359b8,2, 0x3359c4,1, 0x3359d4,3, 0x336004,7, 0x336024,1, 0x336030,4, 0x336300,5, 0x33631c,2, 0x336600,10, 0x336630,1, 0x336640,10, 0x336670,1, 0x336700,10, 0x336730,1, 0x336740,10, 0x336770,1, 0x336800,19, 0x336890,15, 0x336910,15, 0x336a00,10, 0x336ab8,4, 0x336b00,3, 0x336b10,1, 0x336e00,6, 0x336f00,5, 0x337000,65, 0x337800,6, 0x337820,6, 0x337840,6, 0x337860,6, 0x337880,6, 0x3378a0,6, 0x3378c0,6, 0x3378e0,3, 0x337900,6, 0x337920,6, 0x337940,6, 0x337960,6, 0x337980,6, 0x3379a0,6, 0x3379c0,6, 0x3379e0,3, 0x337a00,6, 0x337a20,6, 0x337a40,3, 0x337a80,7, 0x337aa0,7, 0x337ac0,9, 0x337b00,9, 0x337b40,10, 0x337b80,10, 0x337bc0,10, 0x337c00,10, 0x337c40,10, 0x337c80,10, 0x337cc0,3, 0x337e40,7, 0x337e60,7, 0x337e80,7, 0x337ea0,7, 0x337ec0,7, 0x337ee0,7, 0x337f00,7, 0x337f20,7, 0x337f40,7, 0x337f60,4, 0x337f78,13, 0x338000,2, 0x33800c,3, 0x338028,2, 0x338038,2, 0x338080,29, 0x3380f8,1, 0x338100,13, 0x338140,13, 0x338500,6, 0x338520,6, 0x338540,3, 0x338580,10, 0x3385c0,15, 0x338600,2, 0x338618,5, 0x338630,1, 0x338800,2, 0x33880c,3, 0x338828,2, 0x338838,2, 0x338880,29, 0x3388f8,1, 0x338900,13, 0x338940,13, 0x338d00,6, 0x338d20,6, 0x338d40,3, 0x338d80,10, 0x338dc0,15, 0x338e00,2, 0x338e18,5, 0x338e30,1, 0x339800,3, 0x339828,3, 0x339850,3, 0x339878,3, 0x3398a0,9, 0x3399ac,1, 0x3399d8,4, 0x339a00,6, 0x339a20,6, 0x339a40,6, 0x339a60,6, 0x339a80,6, 0x339aa0,6, 0x339ac0,3, 0x339c00,6, 0x339c20,3, 0x339c40,2, 0x339c60,1, 0x340000,4, 0x340014,1, 0x340020,3, 0x340030,3, 0x340040,8, 0x34007c,2, 0x3400a0,6, 0x3400c0,6, 0x3400e0,6, 0x340100,4, 0x340114,1, 0x340120,3, 0x340130,3, 0x340140,8, 0x34017c,2, 0x3401a0,6, 0x3401c0,6, 0x3401e0,6, 0x340200,4, 0x340214,1, 0x340220,3, 0x340230,3, 0x340240,8, 0x34027c,2, 0x3402a0,6, 0x3402c0,6, 0x3402e0,6, 0x340300,4, 0x340314,1, 0x340320,3, 0x340330,3, 0x340340,8, 0x34037c,2, 0x3403a0,6, 0x3403c0,6, 0x3403e0,6, 0x340400,6, 0x340440,6, 0x340480,3, 0x3404c0,3, 0x340500,2, 0x34050c,4, 0x340520,2, 0x34052c,4, 0x340540,2, 0x340c00,13, 0x340c40,12, 0x340c80,13, 0x340cc0,12, 0x340d00,14, 0x340d40,6, 0x340d80,14, 0x340dc0,6, 0x340e00,11, 0x340e40,6, 0x340e60,6, 0x340e80,6, 0x340ea0,6, 0x341000,2, 0x341014,4, 0x341040,3, 0x341050,3, 0x341080,43, 0x341140,11, 0x341180,1, 0x34119c,15, 0x341200,12, 0x341300,1, 0x341308,6, 0x341324,10, 0x341380,1, 0x341388,6, 0x3413a4,10, 0x341400,7, 0x341420,7, 0x341500,12, 0x341540,12, 0x341580,4, 0x341800,14, 0x34183c,9, 0x341864,6, 0x341880,2, 0x341890,4, 0x341900,14, 0x34193c,9, 0x341964,6, 0x341980,2, 0x341990,4, 0x341a00,16, 0x341a50,4, 0x341a80,16, 0x341ad0,4, 0x341b00,6, 0x341b20,6, 0x341b40,3, 0x341b80,6, 0x341ba0,6, 0x341bc0,3, 0x341c00,6, 0x341c20,6, 0x341c40,3, 0x341c80,6, 0x341ca0,6, 0x341cc0,3, 0x341d10,2, 0x341d1c,1, 0x341d50,2, 0x341d5c,1, 0x341d80,1, 0x341da0,1, 0x341da8,4, 0x341dc0,1, 0x341de0,1, 0x341de8,4, 0x341e00,13, 0x341e40,6, 0x341e60,6, 0x341e80,6, 0x341ea0,6, 0x341ec0,7, 0x341ee0,7, 0x341f00,12, 0x341f34,2, 0x341f40,3, 0x341f50,8, 0x342000,4, 0x342014,1, 0x342020,3, 0x342030,3, 0x342040,8, 0x34207c,2, 0x3420a0,6, 0x3420c0,6, 0x3420e0,6, 0x342100,4, 0x342114,1, 0x342120,3, 0x342130,3, 0x342140,8, 0x34217c,2, 0x3421a0,6, 0x3421c0,6, 0x3421e0,6, 0x342200,4, 0x342214,1, 0x342220,3, 0x342230,3, 0x342240,8, 0x34227c,2, 0x3422a0,6, 0x3422c0,6, 0x3422e0,6, 0x342300,4, 0x342314,1, 0x342320,3, 0x342330,3, 0x342340,8, 0x34237c,2, 0x3423a0,6, 0x3423c0,6, 0x3423e0,6, 0x342400,6, 0x342440,6, 0x342480,3, 0x3424c0,3, 0x342500,2, 0x34250c,4, 0x342520,2, 0x34252c,4, 0x342540,2, 0x342c00,13, 0x342c40,12, 0x342c80,13, 0x342cc0,12, 0x342d00,14, 0x342d40,6, 0x342d80,14, 0x342dc0,6, 0x342e00,11, 0x342e40,6, 0x342e60,6, 0x342e80,6, 0x342ea0,6, 0x343000,2, 0x343014,4, 0x343040,3, 0x343050,3, 0x343080,43, 0x343140,11, 0x343180,1, 0x34319c,15, 0x343200,12, 0x343300,1, 0x343308,6, 0x343324,10, 0x343380,1, 0x343388,6, 0x3433a4,10, 0x343400,7, 0x343420,7, 0x343500,12, 0x343540,12, 0x343580,4, 0x343800,14, 0x34383c,9, 0x343864,6, 0x343880,2, 0x343890,4, 0x343900,14, 0x34393c,9, 0x343964,6, 0x343980,2, 0x343990,4, 0x343a00,16, 0x343a50,4, 0x343a80,16, 0x343ad0,4, 0x343b00,6, 0x343b20,6, 0x343b40,3, 0x343b80,6, 0x343ba0,6, 0x343bc0,3, 0x343c00,6, 0x343c20,6, 0x343c40,3, 0x343c80,6, 0x343ca0,6, 0x343cc0,3, 0x343d10,2, 0x343d1c,1, 0x343d50,2, 0x343d5c,1, 0x343d80,1, 0x343da0,1, 0x343da8,4, 0x343dc0,1, 0x343de0,1, 0x343de8,4, 0x343e00,13, 0x343e40,6, 0x343e60,6, 0x343e80,6, 0x343ea0,6, 0x343ec0,7, 0x343ee0,7, 0x343f00,12, 0x343f34,2, 0x343f40,3, 0x343f50,8, 0x344000,29, 0x344078,4, 0x344090,2, 0x3440a0,7, 0x3440c0,11, 0x344100,14, 0x344140,14, 0x344180,61, 0x344278,4, 0x344290,2, 0x3442a0,7, 0x3442c0,11, 0x344300,14, 0x344340,14, 0x344380,61, 0x344478,4, 0x344490,2, 0x3444a0,7, 0x3444c0,11, 0x344500,14, 0x344540,14, 0x344580,61, 0x344678,4, 0x344690,2, 0x3446a0,7, 0x3446c0,11, 0x344700,14, 0x344740,14, 0x344780,69, 0x344c00,6, 0x344c40,14, 0x344c80,9, 0x344d00,9, 0x344d2c,1, 0x344d40,3, 0x344d60,1, 0x344d80,3, 0x344e00,2, 0x344e0c,1, 0x344e14,5, 0x344e2c,1, 0x344e34,5, 0x344e4c,1, 0x344e54,5, 0x344e6c,1, 0x344e74,5, 0x344e8c,1, 0x344e94,5, 0x344eac,1, 0x344eb4,3, 0x345000,29, 0x345078,4, 0x345090,2, 0x3450a0,7, 0x3450c0,11, 0x345100,14, 0x345140,14, 0x345180,61, 0x345278,4, 0x345290,2, 0x3452a0,7, 0x3452c0,11, 0x345300,14, 0x345340,14, 0x345380,61, 0x345478,4, 0x345490,2, 0x3454a0,7, 0x3454c0,11, 0x345500,14, 0x345540,14, 0x345580,61, 0x345678,4, 0x345690,2, 0x3456a0,7, 0x3456c0,11, 0x345700,14, 0x345740,14, 0x345780,69, 0x345c00,6, 0x345c40,14, 0x345c80,9, 0x345d00,9, 0x345d2c,1, 0x345d40,3, 0x345d60,1, 0x345d80,3, 0x345e00,2, 0x345e0c,1, 0x345e14,5, 0x345e2c,1, 0x345e34,5, 0x345e4c,1, 0x345e54,5, 0x345e6c,1, 0x345e74,5, 0x345e8c,1, 0x345e94,5, 0x345eac,1, 0x345eb4,3, 0x346000,14, 0x346040,6, 0x346060,6, 0x346080,6, 0x3460a0,3, 0x346100,9, 0x346204,1, 0x34620c,6, 0x346240,13, 0x346280,16, 0x346800,19, 0x346850,10, 0x346880,19, 0x3468d0,10, 0x346900,19, 0x346950,10, 0x346980,19, 0x3469d0,10, 0x346a00,19, 0x346a50,10, 0x346a80,19, 0x346ad0,10, 0x346b00,19, 0x346b50,10, 0x346b80,19, 0x346bd0,10, 0x346c00,19, 0x346c60,6, 0x346c84,1, 0x346c94,8, 0x346cb8,14, 0x347000,1, 0x347028,1, 0x347050,1, 0x347078,1, 0x3470a0,4, 0x3471ac,1, 0x3471d8,4, 0x347200,6, 0x347220,6, 0x347240,3, 0x347400,1, 0x347408,3, 0x347438,1, 0x347444,1, 0x347450,6, 0x347500,7, 0x347520,6, 0x347540,6, 0x347560,3, 0x347570,3, 0x348000,6, 0x348020,3, 0x348030,1, 0x348038,4, 0x348050,1, 0x348400,1, 0x348428,1, 0x348450,1, 0x348478,1, 0x3484a0,6, 0x3485ac,1, 0x3485d8,4, 0x348600,6, 0x348620,6, 0x348640,3, 0x348800,6, 0x348820,3, 0x348830,4, 0x348918,2, 0x348924,1, 0x348934,3, 0x348958,2, 0x348964,1, 0x348974,3, 0x348998,2, 0x3489a4,1, 0x3489b4,3, 0x3489d8,2, 0x3489e4,1, 0x3489f4,3, 0x349020,4, 0x349040,11, 0x349074,2, 0x349080,4, 0x3490b0,22, 0x349110,2, 0x349120,22, 0x349180,2, 0x3491a0,6, 0x3491c0,9, 0x349200,42, 0x3492c0,1, 0x3492c8,13, 0x349300,25, 0x34936c,4, 0x349380,2, 0x3493a0,1, 0x3493c0,11, 0x349404,3, 0x349420,11, 0x349480,6, 0x349500,1, 0x349520,6, 0x349540,3, 0x349550,7, 0x349570,18, 0x3495bc,5, 0x349800,480, 0x34a020,4, 0x34a040,11, 0x34a074,2, 0x34a080,4, 0x34a0b0,22, 0x34a110,2, 0x34a120,22, 0x34a180,2, 0x34a1a0,6, 0x34a1c0,9, 0x34a200,42, 0x34a2c0,1, 0x34a2c8,13, 0x34a300,25, 0x34a36c,4, 0x34a380,2, 0x34a3a0,1, 0x34a3c0,11, 0x34a404,3, 0x34a420,11, 0x34a480,6, 0x34a500,1, 0x34a520,6, 0x34a540,3, 0x34a550,7, 0x34a570,18, 0x34a5bc,5, 0x34a800,480, 0x34b020,4, 0x34b040,11, 0x34b074,2, 0x34b080,4, 0x34b0b0,22, 0x34b110,2, 0x34b120,22, 0x34b180,2, 0x34b1a0,6, 0x34b1c0,9, 0x34b200,42, 0x34b2c0,1, 0x34b2c8,13, 0x34b300,25, 0x34b36c,4, 0x34b380,2, 0x34b3a0,1, 0x34b3c0,11, 0x34b404,3, 0x34b420,11, 0x34b480,6, 0x34b500,1, 0x34b520,6, 0x34b540,3, 0x34b550,7, 0x34b570,18, 0x34b5bc,5, 0x34b800,480, 0x34c020,4, 0x34c040,11, 0x34c074,2, 0x34c080,4, 0x34c0b0,22, 0x34c110,2, 0x34c120,22, 0x34c180,2, 0x34c1a0,6, 0x34c1c0,9, 0x34c200,42, 0x34c2c0,1, 0x34c2c8,13, 0x34c300,25, 0x34c36c,4, 0x34c380,2, 0x34c3a0,1, 0x34c3c0,11, 0x34c404,3, 0x34c420,11, 0x34c480,6, 0x34c500,1, 0x34c520,6, 0x34c540,3, 0x34c550,7, 0x34c570,18, 0x34c5bc,5, 0x34c800,480, 0x34f800,5, 0x34f818,1, 0x34f854,6, 0x34f880,4, 0x34f8a4,1, 0x34f8ac,2, 0x34f900,5, 0x34f918,1, 0x34f954,6, 0x34f980,4, 0x34f9a4,1, 0x34f9ac,2, 0x34fa00,5, 0x34fa18,1, 0x34fa54,6, 0x34fa80,4, 0x34faa4,1, 0x34faac,2, 0x34fb00,5, 0x34fb18,1, 0x34fb54,6, 0x34fb80,4, 0x34fba4,1, 0x34fbac,2, 0x354000,3, 0x354018,10, 0x354100,58, 0x3541f0,1, 0x354400,3, 0x354418,10, 0x354500,58, 0x3545f0,1, 0x354800,3, 0x354810,3, 0x354820,6, 0x354880,9, 0x3548c0,9, 0x354900,8, 0x354938,2, 0x354944,1, 0x354954,3, 0x354980,8, 0x3549b8,2, 0x3549c4,1, 0x3549d4,3, 0x355000,3, 0x355018,10, 0x355100,58, 0x3551f0,1, 0x355400,3, 0x355418,10, 0x355500,58, 0x3555f0,1, 0x355800,3, 0x355810,3, 0x355820,6, 0x355880,9, 0x3558c0,9, 0x355900,8, 0x355938,2, 0x355944,1, 0x355954,3, 0x355980,8, 0x3559b8,2, 0x3559c4,1, 0x3559d4,3, 0x356004,7, 0x356024,1, 0x356030,4, 0x356300,5, 0x35631c,2, 0x356600,10, 0x356630,1, 0x356640,10, 0x356670,1, 0x356700,10, 0x356730,1, 0x356740,10, 0x356770,1, 0x356800,19, 0x356890,15, 0x356910,15, 0x356a00,10, 0x356ab8,4, 0x356b00,3, 0x356b10,1, 0x356e00,6, 0x356f00,5, 0x357000,65, 0x357800,6, 0x357820,6, 0x357840,6, 0x357860,6, 0x357880,6, 0x3578a0,6, 0x3578c0,6, 0x3578e0,3, 0x357900,6, 0x357920,6, 0x357940,6, 0x357960,6, 0x357980,6, 0x3579a0,6, 0x3579c0,6, 0x3579e0,3, 0x357a00,6, 0x357a20,6, 0x357a40,3, 0x357a80,7, 0x357aa0,7, 0x357ac0,9, 0x357b00,9, 0x357b40,10, 0x357b80,10, 0x357bc0,10, 0x357c00,10, 0x357c40,10, 0x357c80,10, 0x357cc0,3, 0x357e40,7, 0x357e60,7, 0x357e80,7, 0x357ea0,7, 0x357ec0,7, 0x357ee0,7, 0x357f00,7, 0x357f20,7, 0x357f40,7, 0x357f60,4, 0x357f78,13, 0x358000,2, 0x35800c,3, 0x358028,2, 0x358038,2, 0x358080,29, 0x3580f8,1, 0x358100,13, 0x358140,13, 0x358500,6, 0x358520,6, 0x358540,3, 0x358580,10, 0x3585c0,15, 0x358600,2, 0x358618,5, 0x358630,1, 0x358800,2, 0x35880c,3, 0x358828,2, 0x358838,2, 0x358880,29, 0x3588f8,1, 0x358900,13, 0x358940,13, 0x358d00,6, 0x358d20,6, 0x358d40,3, 0x358d80,10, 0x358dc0,15, 0x358e00,2, 0x358e18,5, 0x358e30,1, 0x359800,3, 0x359828,3, 0x359850,3, 0x359878,3, 0x3598a0,9, 0x3599ac,1, 0x3599d8,4, 0x359a00,6, 0x359a20,6, 0x359a40,6, 0x359a60,6, 0x359a80,6, 0x359aa0,6, 0x359ac0,3, 0x359c00,6, 0x359c20,3, 0x359c40,2, 0x359c60,1, 0x360000,4, 0x360014,1, 0x360020,3, 0x360030,3, 0x360040,8, 0x36007c,2, 0x3600a0,6, 0x3600c0,6, 0x3600e0,6, 0x360100,4, 0x360114,1, 0x360120,3, 0x360130,3, 0x360140,8, 0x36017c,2, 0x3601a0,6, 0x3601c0,6, 0x3601e0,6, 0x360200,4, 0x360214,1, 0x360220,3, 0x360230,3, 0x360240,8, 0x36027c,2, 0x3602a0,6, 0x3602c0,6, 0x3602e0,6, 0x360300,4, 0x360314,1, 0x360320,3, 0x360330,3, 0x360340,8, 0x36037c,2, 0x3603a0,6, 0x3603c0,6, 0x3603e0,6, 0x360400,6, 0x360440,6, 0x360480,3, 0x3604c0,3, 0x360500,2, 0x36050c,4, 0x360520,2, 0x36052c,4, 0x360540,2, 0x360c00,13, 0x360c40,12, 0x360c80,13, 0x360cc0,12, 0x360d00,14, 0x360d40,6, 0x360d80,14, 0x360dc0,6, 0x360e00,11, 0x360e40,6, 0x360e60,6, 0x360e80,6, 0x360ea0,6, 0x361000,2, 0x361014,4, 0x361040,3, 0x361050,3, 0x361080,43, 0x361140,11, 0x361180,1, 0x36119c,15, 0x361200,12, 0x361300,1, 0x361308,6, 0x361324,10, 0x361380,1, 0x361388,6, 0x3613a4,10, 0x361400,7, 0x361420,7, 0x361500,12, 0x361540,12, 0x361580,4, 0x361800,14, 0x36183c,9, 0x361864,6, 0x361880,2, 0x361890,4, 0x361900,14, 0x36193c,9, 0x361964,6, 0x361980,2, 0x361990,4, 0x361a00,16, 0x361a50,4, 0x361a80,16, 0x361ad0,4, 0x361b00,6, 0x361b20,6, 0x361b40,3, 0x361b80,6, 0x361ba0,6, 0x361bc0,3, 0x361c00,6, 0x361c20,6, 0x361c40,3, 0x361c80,6, 0x361ca0,6, 0x361cc0,3, 0x361d10,2, 0x361d1c,1, 0x361d50,2, 0x361d5c,1, 0x361d80,1, 0x361da0,1, 0x361da8,4, 0x361dc0,1, 0x361de0,1, 0x361de8,4, 0x361e00,13, 0x361e40,6, 0x361e60,6, 0x361e80,6, 0x361ea0,6, 0x361ec0,7, 0x361ee0,7, 0x361f00,12, 0x361f34,2, 0x361f40,3, 0x361f50,8, 0x362000,4, 0x362014,1, 0x362020,3, 0x362030,3, 0x362040,8, 0x36207c,2, 0x3620a0,6, 0x3620c0,6, 0x3620e0,6, 0x362100,4, 0x362114,1, 0x362120,3, 0x362130,3, 0x362140,8, 0x36217c,2, 0x3621a0,6, 0x3621c0,6, 0x3621e0,6, 0x362200,4, 0x362214,1, 0x362220,3, 0x362230,3, 0x362240,8, 0x36227c,2, 0x3622a0,6, 0x3622c0,6, 0x3622e0,6, 0x362300,4, 0x362314,1, 0x362320,3, 0x362330,3, 0x362340,8, 0x36237c,2, 0x3623a0,6, 0x3623c0,6, 0x3623e0,6, 0x362400,6, 0x362440,6, 0x362480,3, 0x3624c0,3, 0x362500,2, 0x36250c,4, 0x362520,2, 0x36252c,4, 0x362540,2, 0x362c00,13, 0x362c40,12, 0x362c80,13, 0x362cc0,12, 0x362d00,14, 0x362d40,6, 0x362d80,14, 0x362dc0,6, 0x362e00,11, 0x362e40,6, 0x362e60,6, 0x362e80,6, 0x362ea0,6, 0x363000,2, 0x363014,4, 0x363040,3, 0x363050,3, 0x363080,43, 0x363140,11, 0x363180,1, 0x36319c,15, 0x363200,12, 0x363300,1, 0x363308,6, 0x363324,10, 0x363380,1, 0x363388,6, 0x3633a4,10, 0x363400,7, 0x363420,7, 0x363500,12, 0x363540,12, 0x363580,4, 0x363800,14, 0x36383c,9, 0x363864,6, 0x363880,2, 0x363890,4, 0x363900,14, 0x36393c,9, 0x363964,6, 0x363980,2, 0x363990,4, 0x363a00,16, 0x363a50,4, 0x363a80,16, 0x363ad0,4, 0x363b00,6, 0x363b20,6, 0x363b40,3, 0x363b80,6, 0x363ba0,6, 0x363bc0,3, 0x363c00,6, 0x363c20,6, 0x363c40,3, 0x363c80,6, 0x363ca0,6, 0x363cc0,3, 0x363d10,2, 0x363d1c,1, 0x363d50,2, 0x363d5c,1, 0x363d80,1, 0x363da0,1, 0x363da8,4, 0x363dc0,1, 0x363de0,1, 0x363de8,4, 0x363e00,13, 0x363e40,6, 0x363e60,6, 0x363e80,6, 0x363ea0,6, 0x363ec0,7, 0x363ee0,7, 0x363f00,12, 0x363f34,2, 0x363f40,3, 0x363f50,8, 0x364000,29, 0x364078,4, 0x364090,2, 0x3640a0,7, 0x3640c0,11, 0x364100,14, 0x364140,14, 0x364180,61, 0x364278,4, 0x364290,2, 0x3642a0,7, 0x3642c0,11, 0x364300,14, 0x364340,14, 0x364380,61, 0x364478,4, 0x364490,2, 0x3644a0,7, 0x3644c0,11, 0x364500,14, 0x364540,14, 0x364580,61, 0x364678,4, 0x364690,2, 0x3646a0,7, 0x3646c0,11, 0x364700,14, 0x364740,14, 0x364780,69, 0x364c00,6, 0x364c40,14, 0x364c80,9, 0x364d00,9, 0x364d2c,1, 0x364d40,3, 0x364d60,1, 0x364d80,3, 0x364e00,2, 0x364e0c,1, 0x364e14,5, 0x364e2c,1, 0x364e34,5, 0x364e4c,1, 0x364e54,5, 0x364e6c,1, 0x364e74,5, 0x364e8c,1, 0x364e94,5, 0x364eac,1, 0x364eb4,3, 0x365000,29, 0x365078,4, 0x365090,2, 0x3650a0,7, 0x3650c0,11, 0x365100,14, 0x365140,14, 0x365180,61, 0x365278,4, 0x365290,2, 0x3652a0,7, 0x3652c0,11, 0x365300,14, 0x365340,14, 0x365380,61, 0x365478,4, 0x365490,2, 0x3654a0,7, 0x3654c0,11, 0x365500,14, 0x365540,14, 0x365580,61, 0x365678,4, 0x365690,2, 0x3656a0,7, 0x3656c0,11, 0x365700,14, 0x365740,14, 0x365780,69, 0x365c00,6, 0x365c40,14, 0x365c80,9, 0x365d00,9, 0x365d2c,1, 0x365d40,3, 0x365d60,1, 0x365d80,3, 0x365e00,2, 0x365e0c,1, 0x365e14,5, 0x365e2c,1, 0x365e34,5, 0x365e4c,1, 0x365e54,5, 0x365e6c,1, 0x365e74,5, 0x365e8c,1, 0x365e94,5, 0x365eac,1, 0x365eb4,3, 0x366000,14, 0x366040,6, 0x366060,6, 0x366080,6, 0x3660a0,3, 0x366100,9, 0x366204,1, 0x36620c,6, 0x366240,13, 0x366280,16, 0x366400,8, 0x366424,15, 0x366464,15, 0x3664a4,15, 0x3664e4,30, 0x366580,10, 0x3665ac,1, 0x3665b4,5, 0x3665cc,1, 0x3665d4,5, 0x3665ec,1, 0x3665f4,13, 0x366680,4, 0x366694,2, 0x3666a0,5, 0x3666c0,5, 0x3666e0,4, 0x366800,19, 0x366850,10, 0x366880,19, 0x3668d0,10, 0x366900,19, 0x366950,10, 0x366980,19, 0x3669d0,10, 0x366a00,19, 0x366a50,10, 0x366a80,19, 0x366ad0,10, 0x366b00,19, 0x366b50,10, 0x366b80,19, 0x366bd0,10, 0x366c00,19, 0x366c60,6, 0x366c84,1, 0x366c94,8, 0x366cb8,14, 0x367000,1, 0x367028,1, 0x367050,1, 0x367078,1, 0x3670a0,4, 0x3671ac,1, 0x3671d8,4, 0x367200,6, 0x367220,6, 0x367240,3, 0x367400,1, 0x367408,3, 0x367438,1, 0x367444,1, 0x367450,6, 0x367500,7, 0x367520,6, 0x367540,6, 0x367560,3, 0x367570,3, 0x368000,6, 0x368020,3, 0x368030,1, 0x368038,4, 0x368050,1, 0x368400,1, 0x368428,1, 0x368450,1, 0x368478,1, 0x3684a0,6, 0x3685ac,1, 0x3685d8,4, 0x368600,6, 0x368620,6, 0x368640,3, 0x368800,6, 0x368820,3, 0x368830,4, 0x368918,2, 0x368924,1, 0x368934,3, 0x368958,2, 0x368964,1, 0x368974,3, 0x368998,2, 0x3689a4,1, 0x3689b4,3, 0x3689d8,2, 0x3689e4,1, 0x3689f4,3, 0x369020,4, 0x369040,11, 0x369074,2, 0x369080,4, 0x3690b0,22, 0x369110,2, 0x369120,22, 0x369180,2, 0x3691a0,6, 0x3691c0,9, 0x369200,42, 0x3692c0,1, 0x3692c8,13, 0x369300,25, 0x36936c,4, 0x369380,2, 0x3693a0,1, 0x3693c0,11, 0x369404,3, 0x369420,11, 0x369480,6, 0x369500,1, 0x369520,6, 0x369540,3, 0x369550,7, 0x369570,18, 0x3695bc,5, 0x369800,480, 0x36a020,4, 0x36a040,11, 0x36a074,2, 0x36a080,4, 0x36a0b0,22, 0x36a110,2, 0x36a120,22, 0x36a180,2, 0x36a1a0,6, 0x36a1c0,9, 0x36a200,42, 0x36a2c0,1, 0x36a2c8,13, 0x36a300,25, 0x36a36c,4, 0x36a380,2, 0x36a3a0,1, 0x36a3c0,11, 0x36a404,3, 0x36a420,11, 0x36a480,6, 0x36a500,1, 0x36a520,6, 0x36a540,3, 0x36a550,7, 0x36a570,18, 0x36a5bc,5, 0x36a800,480, 0x36b020,4, 0x36b040,11, 0x36b074,2, 0x36b080,4, 0x36b0b0,22, 0x36b110,2, 0x36b120,22, 0x36b180,2, 0x36b1a0,6, 0x36b1c0,9, 0x36b200,42, 0x36b2c0,1, 0x36b2c8,13, 0x36b300,25, 0x36b36c,4, 0x36b380,2, 0x36b3a0,1, 0x36b3c0,11, 0x36b404,3, 0x36b420,11, 0x36b480,6, 0x36b500,1, 0x36b520,6, 0x36b540,3, 0x36b550,7, 0x36b570,18, 0x36b5bc,5, 0x36b800,480, 0x36c020,4, 0x36c040,11, 0x36c074,2, 0x36c080,4, 0x36c0b0,22, 0x36c110,2, 0x36c120,22, 0x36c180,2, 0x36c1a0,6, 0x36c1c0,9, 0x36c200,42, 0x36c2c0,1, 0x36c2c8,13, 0x36c300,25, 0x36c36c,4, 0x36c380,2, 0x36c3a0,1, 0x36c3c0,11, 0x36c404,3, 0x36c420,11, 0x36c480,6, 0x36c500,1, 0x36c520,6, 0x36c540,3, 0x36c550,7, 0x36c570,18, 0x36c5bc,5, 0x36c800,480, 0x36f800,5, 0x36f818,1, 0x36f854,6, 0x36f880,4, 0x36f8a4,1, 0x36f8ac,2, 0x36f900,5, 0x36f918,1, 0x36f954,6, 0x36f980,4, 0x36f9a4,1, 0x36f9ac,2, 0x36fa00,5, 0x36fa18,1, 0x36fa54,6, 0x36fa80,4, 0x36faa4,1, 0x36faac,2, 0x36fb00,5, 0x36fb18,1, 0x36fb54,6, 0x36fb80,4, 0x36fba4,1, 0x36fbac,2, 0x374000,3, 0x374018,10, 0x374100,58, 0x3741f0,1, 0x374400,3, 0x374418,10, 0x374500,58, 0x3745f0,1, 0x374800,3, 0x374810,3, 0x374820,6, 0x374880,9, 0x3748c0,9, 0x374900,8, 0x374938,2, 0x374944,1, 0x374954,3, 0x374980,8, 0x3749b8,2, 0x3749c4,1, 0x3749d4,3, 0x375000,3, 0x375018,10, 0x375100,58, 0x3751f0,1, 0x375400,3, 0x375418,10, 0x375500,58, 0x3755f0,1, 0x375800,3, 0x375810,3, 0x375820,6, 0x375880,9, 0x3758c0,9, 0x375900,8, 0x375938,2, 0x375944,1, 0x375954,3, 0x375980,8, 0x3759b8,2, 0x3759c4,1, 0x3759d4,3, 0x376004,7, 0x376024,1, 0x376030,4, 0x376300,5, 0x37631c,2, 0x376600,10, 0x376630,1, 0x376640,10, 0x376670,1, 0x376700,10, 0x376730,1, 0x376740,10, 0x376770,1, 0x376800,19, 0x376890,15, 0x376910,15, 0x376a00,10, 0x376ab8,4, 0x376b00,3, 0x376b10,1, 0x376e00,6, 0x376f00,5, 0x377000,65, 0x377800,6, 0x377820,6, 0x377840,6, 0x377860,6, 0x377880,6, 0x3778a0,6, 0x3778c0,6, 0x3778e0,3, 0x377900,6, 0x377920,6, 0x377940,6, 0x377960,6, 0x377980,6, 0x3779a0,6, 0x3779c0,6, 0x3779e0,3, 0x377a00,6, 0x377a20,6, 0x377a40,3, 0x377a80,7, 0x377aa0,7, 0x377ac0,9, 0x377b00,9, 0x377b40,10, 0x377b80,10, 0x377bc0,10, 0x377c00,10, 0x377c40,10, 0x377c80,10, 0x377cc0,3, 0x377e40,7, 0x377e60,7, 0x377e80,7, 0x377ea0,7, 0x377ec0,7, 0x377ee0,7, 0x377f00,7, 0x377f20,7, 0x377f40,7, 0x377f60,4, 0x377f78,13, 0x378000,2, 0x37800c,3, 0x378028,2, 0x378038,2, 0x378080,29, 0x3780f8,1, 0x378100,13, 0x378140,13, 0x378500,6, 0x378520,6, 0x378540,3, 0x378580,10, 0x3785c0,15, 0x378600,2, 0x378618,5, 0x378630,1, 0x378800,2, 0x37880c,3, 0x378828,2, 0x378838,2, 0x378880,29, 0x3788f8,1, 0x378900,13, 0x378940,13, 0x378d00,6, 0x378d20,6, 0x378d40,3, 0x378d80,10, 0x378dc0,15, 0x378e00,2, 0x378e18,5, 0x378e30,1, 0x379800,3, 0x379828,3, 0x379850,3, 0x379878,3, 0x3798a0,9, 0x3799ac,1, 0x3799d8,4, 0x379a00,6, 0x379a20,6, 0x379a40,6, 0x379a60,6, 0x379a80,6, 0x379aa0,6, 0x379ac0,3, 0x379c00,6, 0x379c20,3, 0x379c40,2, 0x379c60,1, 0x380000,4, 0x380014,1, 0x380020,3, 0x380030,3, 0x380040,8, 0x38007c,2, 0x3800a0,6, 0x3800c0,6, 0x3800e0,6, 0x380100,4, 0x380114,1, 0x380120,3, 0x380130,3, 0x380140,8, 0x38017c,2, 0x3801a0,6, 0x3801c0,6, 0x3801e0,6, 0x380200,4, 0x380214,1, 0x380220,3, 0x380230,3, 0x380240,8, 0x38027c,2, 0x3802a0,6, 0x3802c0,6, 0x3802e0,6, 0x380300,4, 0x380314,1, 0x380320,3, 0x380330,3, 0x380340,8, 0x38037c,2, 0x3803a0,6, 0x3803c0,6, 0x3803e0,6, 0x380400,6, 0x380440,6, 0x380480,3, 0x3804c0,3, 0x380500,2, 0x38050c,4, 0x380520,2, 0x38052c,4, 0x380540,2, 0x380c00,13, 0x380c40,12, 0x380c80,13, 0x380cc0,12, 0x380d00,14, 0x380d40,6, 0x380d80,14, 0x380dc0,6, 0x380e00,11, 0x380e40,6, 0x380e60,6, 0x380e80,6, 0x380ea0,6, 0x381000,2, 0x381014,4, 0x381040,3, 0x381050,3, 0x381080,43, 0x381140,11, 0x381180,1, 0x38119c,15, 0x381200,12, 0x381300,1, 0x381308,6, 0x381324,10, 0x381380,1, 0x381388,6, 0x3813a4,10, 0x381400,7, 0x381420,7, 0x381500,12, 0x381540,12, 0x381580,4, 0x381800,14, 0x38183c,9, 0x381864,6, 0x381880,2, 0x381890,4, 0x381900,14, 0x38193c,9, 0x381964,6, 0x381980,2, 0x381990,4, 0x381a00,16, 0x381a50,4, 0x381a80,16, 0x381ad0,4, 0x381b00,6, 0x381b20,6, 0x381b40,3, 0x381b80,6, 0x381ba0,6, 0x381bc0,3, 0x381c00,6, 0x381c20,6, 0x381c40,3, 0x381c80,6, 0x381ca0,6, 0x381cc0,3, 0x381d10,2, 0x381d1c,1, 0x381d50,2, 0x381d5c,1, 0x381d80,1, 0x381da0,1, 0x381da8,4, 0x381dc0,1, 0x381de0,1, 0x381de8,4, 0x381e00,13, 0x381e40,6, 0x381e60,6, 0x381e80,6, 0x381ea0,6, 0x381ec0,7, 0x381ee0,7, 0x381f00,12, 0x381f34,2, 0x381f40,3, 0x381f50,8, 0x382000,4, 0x382014,1, 0x382020,3, 0x382030,3, 0x382040,8, 0x38207c,2, 0x3820a0,6, 0x3820c0,6, 0x3820e0,6, 0x382100,4, 0x382114,1, 0x382120,3, 0x382130,3, 0x382140,8, 0x38217c,2, 0x3821a0,6, 0x3821c0,6, 0x3821e0,6, 0x382200,4, 0x382214,1, 0x382220,3, 0x382230,3, 0x382240,8, 0x38227c,2, 0x3822a0,6, 0x3822c0,6, 0x3822e0,6, 0x382300,4, 0x382314,1, 0x382320,3, 0x382330,3, 0x382340,8, 0x38237c,2, 0x3823a0,6, 0x3823c0,6, 0x3823e0,6, 0x382400,6, 0x382440,6, 0x382480,3, 0x3824c0,3, 0x382500,2, 0x38250c,4, 0x382520,2, 0x38252c,4, 0x382540,2, 0x382c00,13, 0x382c40,12, 0x382c80,13, 0x382cc0,12, 0x382d00,14, 0x382d40,6, 0x382d80,14, 0x382dc0,6, 0x382e00,11, 0x382e40,6, 0x382e60,6, 0x382e80,6, 0x382ea0,6, 0x383000,2, 0x383014,4, 0x383040,3, 0x383050,3, 0x383080,43, 0x383140,11, 0x383180,1, 0x38319c,15, 0x383200,12, 0x383300,1, 0x383308,6, 0x383324,10, 0x383380,1, 0x383388,6, 0x3833a4,10, 0x383400,7, 0x383420,7, 0x383500,12, 0x383540,12, 0x383580,4, 0x383800,14, 0x38383c,9, 0x383864,6, 0x383880,2, 0x383890,4, 0x383900,14, 0x38393c,9, 0x383964,6, 0x383980,2, 0x383990,4, 0x383a00,16, 0x383a50,4, 0x383a80,16, 0x383ad0,4, 0x383b00,6, 0x383b20,6, 0x383b40,3, 0x383b80,6, 0x383ba0,6, 0x383bc0,3, 0x383c00,6, 0x383c20,6, 0x383c40,3, 0x383c80,6, 0x383ca0,6, 0x383cc0,3, 0x383d10,2, 0x383d1c,1, 0x383d50,2, 0x383d5c,1, 0x383d80,1, 0x383da0,1, 0x383da8,4, 0x383dc0,1, 0x383de0,1, 0x383de8,4, 0x383e00,13, 0x383e40,6, 0x383e60,6, 0x383e80,6, 0x383ea0,6, 0x383ec0,7, 0x383ee0,7, 0x383f00,12, 0x383f34,2, 0x383f40,3, 0x383f50,8, 0x384000,29, 0x384078,4, 0x384090,2, 0x3840a0,7, 0x3840c0,11, 0x384100,14, 0x384140,14, 0x384180,61, 0x384278,4, 0x384290,2, 0x3842a0,7, 0x3842c0,11, 0x384300,14, 0x384340,14, 0x384380,61, 0x384478,4, 0x384490,2, 0x3844a0,7, 0x3844c0,11, 0x384500,14, 0x384540,14, 0x384580,61, 0x384678,4, 0x384690,2, 0x3846a0,7, 0x3846c0,11, 0x384700,14, 0x384740,14, 0x384780,69, 0x384c00,6, 0x384c40,14, 0x384c80,9, 0x384d00,9, 0x384d2c,1, 0x384d40,3, 0x384d60,1, 0x384d80,3, 0x384e00,2, 0x384e0c,1, 0x384e14,5, 0x384e2c,1, 0x384e34,5, 0x384e4c,1, 0x384e54,5, 0x384e6c,1, 0x384e74,5, 0x384e8c,1, 0x384e94,5, 0x384eac,1, 0x384eb4,3, 0x385000,29, 0x385078,4, 0x385090,2, 0x3850a0,7, 0x3850c0,11, 0x385100,14, 0x385140,14, 0x385180,61, 0x385278,4, 0x385290,2, 0x3852a0,7, 0x3852c0,11, 0x385300,14, 0x385340,14, 0x385380,61, 0x385478,4, 0x385490,2, 0x3854a0,7, 0x3854c0,11, 0x385500,14, 0x385540,14, 0x385580,61, 0x385678,4, 0x385690,2, 0x3856a0,7, 0x3856c0,11, 0x385700,14, 0x385740,14, 0x385780,69, 0x385c00,6, 0x385c40,14, 0x385c80,9, 0x385d00,9, 0x385d2c,1, 0x385d40,3, 0x385d60,1, 0x385d80,3, 0x385e00,2, 0x385e0c,1, 0x385e14,5, 0x385e2c,1, 0x385e34,5, 0x385e4c,1, 0x385e54,5, 0x385e6c,1, 0x385e74,5, 0x385e8c,1, 0x385e94,5, 0x385eac,1, 0x385eb4,3, 0x386000,14, 0x386040,6, 0x386060,6, 0x386080,6, 0x3860a0,3, 0x386100,9, 0x386204,1, 0x38620c,6, 0x386240,13, 0x386280,16, 0x386800,19, 0x386850,10, 0x386880,19, 0x3868d0,10, 0x386900,19, 0x386950,10, 0x386980,19, 0x3869d0,10, 0x386a00,19, 0x386a50,10, 0x386a80,19, 0x386ad0,10, 0x386b00,19, 0x386b50,10, 0x386b80,19, 0x386bd0,10, 0x386c00,19, 0x386c60,6, 0x386c84,1, 0x386c94,8, 0x386cb8,14, 0x387000,1, 0x387028,1, 0x387050,1, 0x387078,1, 0x3870a0,4, 0x3871ac,1, 0x3871d8,4, 0x387200,6, 0x387220,6, 0x387240,3, 0x387400,1, 0x387408,3, 0x387438,1, 0x387444,1, 0x387450,6, 0x387500,7, 0x387520,6, 0x387540,6, 0x387560,3, 0x387570,3, 0x388000,6, 0x388020,3, 0x388030,1, 0x388038,4, 0x388050,1, 0x388400,1, 0x388428,1, 0x388450,1, 0x388478,1, 0x3884a0,6, 0x3885ac,1, 0x3885d8,4, 0x388600,6, 0x388620,6, 0x388640,3, 0x388800,6, 0x388820,3, 0x388830,4, 0x388918,2, 0x388924,1, 0x388934,3, 0x388958,2, 0x388964,1, 0x388974,3, 0x388998,2, 0x3889a4,1, 0x3889b4,3, 0x3889d8,2, 0x3889e4,1, 0x3889f4,3, 0x389020,4, 0x389040,11, 0x389074,2, 0x389080,4, 0x3890b0,22, 0x389110,2, 0x389120,22, 0x389180,2, 0x3891a0,6, 0x3891c0,9, 0x389200,42, 0x3892c0,1, 0x3892c8,13, 0x389300,25, 0x38936c,4, 0x389380,2, 0x3893a0,1, 0x3893c0,11, 0x389404,3, 0x389420,11, 0x389480,6, 0x389500,1, 0x389520,6, 0x389540,3, 0x389550,7, 0x389570,18, 0x3895bc,5, 0x389800,480, 0x38a020,4, 0x38a040,11, 0x38a074,2, 0x38a080,4, 0x38a0b0,22, 0x38a110,2, 0x38a120,22, 0x38a180,2, 0x38a1a0,6, 0x38a1c0,9, 0x38a200,42, 0x38a2c0,1, 0x38a2c8,13, 0x38a300,25, 0x38a36c,4, 0x38a380,2, 0x38a3a0,1, 0x38a3c0,11, 0x38a404,3, 0x38a420,11, 0x38a480,6, 0x38a500,1, 0x38a520,6, 0x38a540,3, 0x38a550,7, 0x38a570,18, 0x38a5bc,5, 0x38a800,480, 0x38b020,4, 0x38b040,11, 0x38b074,2, 0x38b080,4, 0x38b0b0,22, 0x38b110,2, 0x38b120,22, 0x38b180,2, 0x38b1a0,6, 0x38b1c0,9, 0x38b200,42, 0x38b2c0,1, 0x38b2c8,13, 0x38b300,25, 0x38b36c,4, 0x38b380,2, 0x38b3a0,1, 0x38b3c0,11, 0x38b404,3, 0x38b420,11, 0x38b480,6, 0x38b500,1, 0x38b520,6, 0x38b540,3, 0x38b550,7, 0x38b570,18, 0x38b5bc,5, 0x38b800,480, 0x38c020,4, 0x38c040,11, 0x38c074,2, 0x38c080,4, 0x38c0b0,22, 0x38c110,2, 0x38c120,22, 0x38c180,2, 0x38c1a0,6, 0x38c1c0,9, 0x38c200,42, 0x38c2c0,1, 0x38c2c8,13, 0x38c300,25, 0x38c36c,4, 0x38c380,2, 0x38c3a0,1, 0x38c3c0,11, 0x38c404,3, 0x38c420,11, 0x38c480,6, 0x38c500,1, 0x38c520,6, 0x38c540,3, 0x38c550,7, 0x38c570,18, 0x38c5bc,5, 0x38c800,480, 0x38f800,5, 0x38f818,1, 0x38f854,6, 0x38f880,4, 0x38f8a4,1, 0x38f8ac,2, 0x38f900,5, 0x38f918,1, 0x38f954,6, 0x38f980,4, 0x38f9a4,1, 0x38f9ac,2, 0x38fa00,5, 0x38fa18,1, 0x38fa54,6, 0x38fa80,4, 0x38faa4,1, 0x38faac,2, 0x38fb00,5, 0x38fb18,1, 0x38fb54,6, 0x38fb80,4, 0x38fba4,1, 0x38fbac,2, 0x394000,3, 0x394018,10, 0x394100,58, 0x3941f0,1, 0x394400,3, 0x394418,10, 0x394500,58, 0x3945f0,1, 0x394800,3, 0x394810,3, 0x394820,6, 0x394880,9, 0x3948c0,9, 0x394900,8, 0x394938,2, 0x394944,1, 0x394954,3, 0x394980,8, 0x3949b8,2, 0x3949c4,1, 0x3949d4,3, 0x395000,3, 0x395018,10, 0x395100,58, 0x3951f0,1, 0x395400,3, 0x395418,10, 0x395500,58, 0x3955f0,1, 0x395800,3, 0x395810,3, 0x395820,6, 0x395880,9, 0x3958c0,9, 0x395900,8, 0x395938,2, 0x395944,1, 0x395954,3, 0x395980,8, 0x3959b8,2, 0x3959c4,1, 0x3959d4,3, 0x396004,7, 0x396024,1, 0x396030,4, 0x396300,5, 0x39631c,2, 0x396600,10, 0x396630,1, 0x396640,10, 0x396670,1, 0x396700,10, 0x396730,1, 0x396740,10, 0x396770,1, 0x396800,19, 0x396890,15, 0x396910,15, 0x396a00,10, 0x396ab8,4, 0x396b00,3, 0x396b10,1, 0x396e00,6, 0x396f00,5, 0x397000,65, 0x397800,6, 0x397820,6, 0x397840,6, 0x397860,6, 0x397880,6, 0x3978a0,6, 0x3978c0,6, 0x3978e0,3, 0x397900,6, 0x397920,6, 0x397940,6, 0x397960,6, 0x397980,6, 0x3979a0,6, 0x3979c0,6, 0x3979e0,3, 0x397a00,6, 0x397a20,6, 0x397a40,3, 0x397a80,7, 0x397aa0,7, 0x397ac0,9, 0x397b00,9, 0x397b40,10, 0x397b80,10, 0x397bc0,10, 0x397c00,10, 0x397c40,10, 0x397c80,10, 0x397cc0,3, 0x397e40,7, 0x397e60,7, 0x397e80,7, 0x397ea0,7, 0x397ec0,7, 0x397ee0,7, 0x397f00,7, 0x397f20,7, 0x397f40,7, 0x397f60,4, 0x397f78,13, 0x398000,2, 0x39800c,3, 0x398028,2, 0x398038,2, 0x398080,29, 0x3980f8,1, 0x398100,13, 0x398140,13, 0x398500,6, 0x398520,6, 0x398540,3, 0x398580,10, 0x3985c0,15, 0x398600,2, 0x398618,5, 0x398630,1, 0x398800,2, 0x39880c,3, 0x398828,2, 0x398838,2, 0x398880,29, 0x3988f8,1, 0x398900,13, 0x398940,13, 0x398d00,6, 0x398d20,6, 0x398d40,3, 0x398d80,10, 0x398dc0,15, 0x398e00,2, 0x398e18,5, 0x398e30,1, 0x399800,3, 0x399828,3, 0x399850,3, 0x399878,3, 0x3998a0,9, 0x3999ac,1, 0x3999d8,4, 0x399a00,6, 0x399a20,6, 0x399a40,6, 0x399a60,6, 0x399a80,6, 0x399aa0,6, 0x399ac0,3, 0x399c00,6, 0x399c20,3, 0x399c40,2, 0x399c60,1, 0x3a0000,4, 0x3a0014,1, 0x3a0020,3, 0x3a0030,3, 0x3a0040,8, 0x3a007c,2, 0x3a00a0,6, 0x3a00c0,6, 0x3a00e0,6, 0x3a0100,4, 0x3a0114,1, 0x3a0120,3, 0x3a0130,3, 0x3a0140,8, 0x3a017c,2, 0x3a01a0,6, 0x3a01c0,6, 0x3a01e0,6, 0x3a0200,4, 0x3a0214,1, 0x3a0220,3, 0x3a0230,3, 0x3a0240,8, 0x3a027c,2, 0x3a02a0,6, 0x3a02c0,6, 0x3a02e0,6, 0x3a0300,4, 0x3a0314,1, 0x3a0320,3, 0x3a0330,3, 0x3a0340,8, 0x3a037c,2, 0x3a03a0,6, 0x3a03c0,6, 0x3a03e0,6, 0x3a0400,6, 0x3a0440,6, 0x3a0480,3, 0x3a04c0,3, 0x3a0500,2, 0x3a050c,4, 0x3a0520,2, 0x3a052c,4, 0x3a0540,2, 0x3a0c00,13, 0x3a0c40,12, 0x3a0c80,13, 0x3a0cc0,12, 0x3a0d00,14, 0x3a0d40,6, 0x3a0d80,14, 0x3a0dc0,6, 0x3a0e00,11, 0x3a0e40,6, 0x3a0e60,6, 0x3a0e80,6, 0x3a0ea0,6, 0x3a1000,2, 0x3a1014,4, 0x3a1040,3, 0x3a1050,3, 0x3a1080,43, 0x3a1140,11, 0x3a1180,1, 0x3a119c,15, 0x3a1200,12, 0x3a1300,1, 0x3a1308,6, 0x3a1324,10, 0x3a1380,1, 0x3a1388,6, 0x3a13a4,10, 0x3a1400,7, 0x3a1420,7, 0x3a1500,12, 0x3a1540,12, 0x3a1580,4, 0x3a1800,14, 0x3a183c,9, 0x3a1864,6, 0x3a1880,2, 0x3a1890,4, 0x3a1900,14, 0x3a193c,9, 0x3a1964,6, 0x3a1980,2, 0x3a1990,4, 0x3a1a00,16, 0x3a1a50,4, 0x3a1a80,16, 0x3a1ad0,4, 0x3a1b00,6, 0x3a1b20,6, 0x3a1b40,3, 0x3a1b80,6, 0x3a1ba0,6, 0x3a1bc0,3, 0x3a1c00,6, 0x3a1c20,6, 0x3a1c40,3, 0x3a1c80,6, 0x3a1ca0,6, 0x3a1cc0,3, 0x3a1d10,2, 0x3a1d1c,1, 0x3a1d50,2, 0x3a1d5c,1, 0x3a1d80,1, 0x3a1da0,1, 0x3a1da8,4, 0x3a1dc0,1, 0x3a1de0,1, 0x3a1de8,4, 0x3a1e00,13, 0x3a1e40,6, 0x3a1e60,6, 0x3a1e80,6, 0x3a1ea0,6, 0x3a1ec0,7, 0x3a1ee0,7, 0x3a1f00,12, 0x3a1f34,2, 0x3a1f40,3, 0x3a1f50,8, 0x3a2000,4, 0x3a2014,1, 0x3a2020,3, 0x3a2030,3, 0x3a2040,8, 0x3a207c,2, 0x3a20a0,6, 0x3a20c0,6, 0x3a20e0,6, 0x3a2100,4, 0x3a2114,1, 0x3a2120,3, 0x3a2130,3, 0x3a2140,8, 0x3a217c,2, 0x3a21a0,6, 0x3a21c0,6, 0x3a21e0,6, 0x3a2200,4, 0x3a2214,1, 0x3a2220,3, 0x3a2230,3, 0x3a2240,8, 0x3a227c,2, 0x3a22a0,6, 0x3a22c0,6, 0x3a22e0,6, 0x3a2300,4, 0x3a2314,1, 0x3a2320,3, 0x3a2330,3, 0x3a2340,8, 0x3a237c,2, 0x3a23a0,6, 0x3a23c0,6, 0x3a23e0,6, 0x3a2400,6, 0x3a2440,6, 0x3a2480,3, 0x3a24c0,3, 0x3a2500,2, 0x3a250c,4, 0x3a2520,2, 0x3a252c,4, 0x3a2540,2, 0x3a2c00,13, 0x3a2c40,12, 0x3a2c80,13, 0x3a2cc0,12, 0x3a2d00,14, 0x3a2d40,6, 0x3a2d80,14, 0x3a2dc0,6, 0x3a2e00,11, 0x3a2e40,6, 0x3a2e60,6, 0x3a2e80,6, 0x3a2ea0,6, 0x3a3000,2, 0x3a3014,4, 0x3a3040,3, 0x3a3050,3, 0x3a3080,43, 0x3a3140,11, 0x3a3180,1, 0x3a319c,15, 0x3a3200,12, 0x3a3300,1, 0x3a3308,6, 0x3a3324,10, 0x3a3380,1, 0x3a3388,6, 0x3a33a4,10, 0x3a3400,7, 0x3a3420,7, 0x3a3500,12, 0x3a3540,12, 0x3a3580,4, 0x3a3800,14, 0x3a383c,9, 0x3a3864,6, 0x3a3880,2, 0x3a3890,4, 0x3a3900,14, 0x3a393c,9, 0x3a3964,6, 0x3a3980,2, 0x3a3990,4, 0x3a3a00,16, 0x3a3a50,4, 0x3a3a80,16, 0x3a3ad0,4, 0x3a3b00,6, 0x3a3b20,6, 0x3a3b40,3, 0x3a3b80,6, 0x3a3ba0,6, 0x3a3bc0,3, 0x3a3c00,6, 0x3a3c20,6, 0x3a3c40,3, 0x3a3c80,6, 0x3a3ca0,6, 0x3a3cc0,3, 0x3a3d10,2, 0x3a3d1c,1, 0x3a3d50,2, 0x3a3d5c,1, 0x3a3d80,1, 0x3a3da0,1, 0x3a3da8,4, 0x3a3dc0,1, 0x3a3de0,1, 0x3a3de8,4, 0x3a3e00,13, 0x3a3e40,6, 0x3a3e60,6, 0x3a3e80,6, 0x3a3ea0,6, 0x3a3ec0,7, 0x3a3ee0,7, 0x3a3f00,12, 0x3a3f34,2, 0x3a3f40,3, 0x3a3f50,8, 0x3a4000,29, 0x3a4078,4, 0x3a4090,2, 0x3a40a0,7, 0x3a40c0,11, 0x3a4100,14, 0x3a4140,14, 0x3a4180,61, 0x3a4278,4, 0x3a4290,2, 0x3a42a0,7, 0x3a42c0,11, 0x3a4300,14, 0x3a4340,14, 0x3a4380,61, 0x3a4478,4, 0x3a4490,2, 0x3a44a0,7, 0x3a44c0,11, 0x3a4500,14, 0x3a4540,14, 0x3a4580,61, 0x3a4678,4, 0x3a4690,2, 0x3a46a0,7, 0x3a46c0,11, 0x3a4700,14, 0x3a4740,14, 0x3a4780,69, 0x3a4c00,6, 0x3a4c40,14, 0x3a4c80,9, 0x3a4d00,9, 0x3a4d2c,1, 0x3a4d40,3, 0x3a4d60,1, 0x3a4d80,3, 0x3a4e00,2, 0x3a4e0c,1, 0x3a4e14,5, 0x3a4e2c,1, 0x3a4e34,5, 0x3a4e4c,1, 0x3a4e54,5, 0x3a4e6c,1, 0x3a4e74,5, 0x3a4e8c,1, 0x3a4e94,5, 0x3a4eac,1, 0x3a4eb4,3, 0x3a5000,29, 0x3a5078,4, 0x3a5090,2, 0x3a50a0,7, 0x3a50c0,11, 0x3a5100,14, 0x3a5140,14, 0x3a5180,61, 0x3a5278,4, 0x3a5290,2, 0x3a52a0,7, 0x3a52c0,11, 0x3a5300,14, 0x3a5340,14, 0x3a5380,61, 0x3a5478,4, 0x3a5490,2, 0x3a54a0,7, 0x3a54c0,11, 0x3a5500,14, 0x3a5540,14, 0x3a5580,61, 0x3a5678,4, 0x3a5690,2, 0x3a56a0,7, 0x3a56c0,11, 0x3a5700,14, 0x3a5740,14, 0x3a5780,69, 0x3a5c00,6, 0x3a5c40,14, 0x3a5c80,9, 0x3a5d00,9, 0x3a5d2c,1, 0x3a5d40,3, 0x3a5d60,1, 0x3a5d80,3, 0x3a5e00,2, 0x3a5e0c,1, 0x3a5e14,5, 0x3a5e2c,1, 0x3a5e34,5, 0x3a5e4c,1, 0x3a5e54,5, 0x3a5e6c,1, 0x3a5e74,5, 0x3a5e8c,1, 0x3a5e94,5, 0x3a5eac,1, 0x3a5eb4,3, 0x3a6000,14, 0x3a6040,6, 0x3a6060,6, 0x3a6080,6, 0x3a60a0,3, 0x3a6100,9, 0x3a6204,1, 0x3a620c,6, 0x3a6240,13, 0x3a6280,16, 0x3a6800,19, 0x3a6850,10, 0x3a6880,19, 0x3a68d0,10, 0x3a6900,19, 0x3a6950,10, 0x3a6980,19, 0x3a69d0,10, 0x3a6a00,19, 0x3a6a50,10, 0x3a6a80,19, 0x3a6ad0,10, 0x3a6b00,19, 0x3a6b50,10, 0x3a6b80,19, 0x3a6bd0,10, 0x3a6c00,19, 0x3a6c60,6, 0x3a6c84,1, 0x3a6c94,8, 0x3a6cb8,14, 0x3a7000,1, 0x3a7028,1, 0x3a7050,1, 0x3a7078,1, 0x3a70a0,4, 0x3a71ac,1, 0x3a71d8,4, 0x3a7200,6, 0x3a7220,6, 0x3a7240,3, 0x3a7400,1, 0x3a7408,3, 0x3a7438,1, 0x3a7444,1, 0x3a7450,6, 0x3a7500,7, 0x3a7520,6, 0x3a7540,6, 0x3a7560,3, 0x3a7570,3, 0x3a8000,6, 0x3a8020,3, 0x3a8030,1, 0x3a8038,4, 0x3a8050,1, 0x3a8400,1, 0x3a8428,1, 0x3a8450,1, 0x3a8478,1, 0x3a84a0,6, 0x3a85ac,1, 0x3a85d8,4, 0x3a8600,6, 0x3a8620,6, 0x3a8640,3, 0x3a8800,6, 0x3a8820,3, 0x3a8830,4, 0x3a8918,2, 0x3a8924,1, 0x3a8934,3, 0x3a8958,2, 0x3a8964,1, 0x3a8974,3, 0x3a8998,2, 0x3a89a4,1, 0x3a89b4,3, 0x3a89d8,2, 0x3a89e4,1, 0x3a89f4,3, 0x3a9020,4, 0x3a9040,11, 0x3a9074,2, 0x3a9080,4, 0x3a90b0,22, 0x3a9110,2, 0x3a9120,22, 0x3a9180,2, 0x3a91a0,6, 0x3a91c0,9, 0x3a9200,42, 0x3a92c0,1, 0x3a92c8,13, 0x3a9300,25, 0x3a936c,4, 0x3a9380,2, 0x3a93a0,1, 0x3a93c0,11, 0x3a9404,3, 0x3a9420,11, 0x3a9480,6, 0x3a9500,1, 0x3a9520,6, 0x3a9540,3, 0x3a9550,7, 0x3a9570,18, 0x3a95bc,5, 0x3a9800,480, 0x3aa020,4, 0x3aa040,11, 0x3aa074,2, 0x3aa080,4, 0x3aa0b0,22, 0x3aa110,2, 0x3aa120,22, 0x3aa180,2, 0x3aa1a0,6, 0x3aa1c0,9, 0x3aa200,42, 0x3aa2c0,1, 0x3aa2c8,13, 0x3aa300,25, 0x3aa36c,4, 0x3aa380,2, 0x3aa3a0,1, 0x3aa3c0,11, 0x3aa404,3, 0x3aa420,11, 0x3aa480,6, 0x3aa500,1, 0x3aa520,6, 0x3aa540,3, 0x3aa550,7, 0x3aa570,18, 0x3aa5bc,5, 0x3aa800,480, 0x3ab020,4, 0x3ab040,11, 0x3ab074,2, 0x3ab080,4, 0x3ab0b0,22, 0x3ab110,2, 0x3ab120,22, 0x3ab180,2, 0x3ab1a0,6, 0x3ab1c0,9, 0x3ab200,42, 0x3ab2c0,1, 0x3ab2c8,13, 0x3ab300,25, 0x3ab36c,4, 0x3ab380,2, 0x3ab3a0,1, 0x3ab3c0,11, 0x3ab404,3, 0x3ab420,11, 0x3ab480,6, 0x3ab500,1, 0x3ab520,6, 0x3ab540,3, 0x3ab550,7, 0x3ab570,18, 0x3ab5bc,5, 0x3ab800,480, 0x3ac020,4, 0x3ac040,11, 0x3ac074,2, 0x3ac080,4, 0x3ac0b0,22, 0x3ac110,2, 0x3ac120,22, 0x3ac180,2, 0x3ac1a0,6, 0x3ac1c0,9, 0x3ac200,42, 0x3ac2c0,1, 0x3ac2c8,13, 0x3ac300,25, 0x3ac36c,4, 0x3ac380,2, 0x3ac3a0,1, 0x3ac3c0,11, 0x3ac404,3, 0x3ac420,11, 0x3ac480,6, 0x3ac500,1, 0x3ac520,6, 0x3ac540,3, 0x3ac550,7, 0x3ac570,18, 0x3ac5bc,5, 0x3ac800,480, 0x3af800,5, 0x3af818,1, 0x3af854,6, 0x3af880,4, 0x3af8a4,1, 0x3af8ac,2, 0x3af900,5, 0x3af918,1, 0x3af954,6, 0x3af980,4, 0x3af9a4,1, 0x3af9ac,2, 0x3afa00,5, 0x3afa18,1, 0x3afa54,6, 0x3afa80,4, 0x3afaa4,1, 0x3afaac,2, 0x3afb00,5, 0x3afb18,1, 0x3afb54,6, 0x3afb80,4, 0x3afba4,1, 0x3afbac,2, 0x3b4000,3, 0x3b4018,10, 0x3b4100,58, 0x3b41f0,1, 0x3b4400,3, 0x3b4418,10, 0x3b4500,58, 0x3b45f0,1, 0x3b4800,3, 0x3b4810,3, 0x3b4820,6, 0x3b4880,9, 0x3b48c0,9, 0x3b4900,8, 0x3b4938,2, 0x3b4944,1, 0x3b4954,3, 0x3b4980,8, 0x3b49b8,2, 0x3b49c4,1, 0x3b49d4,3, 0x3b5000,3, 0x3b5018,10, 0x3b5100,58, 0x3b51f0,1, 0x3b5400,3, 0x3b5418,10, 0x3b5500,58, 0x3b55f0,1, 0x3b5800,3, 0x3b5810,3, 0x3b5820,6, 0x3b5880,9, 0x3b58c0,9, 0x3b5900,8, 0x3b5938,2, 0x3b5944,1, 0x3b5954,3, 0x3b5980,8, 0x3b59b8,2, 0x3b59c4,1, 0x3b59d4,3, 0x3b6004,7, 0x3b6024,1, 0x3b6030,4, 0x3b6300,5, 0x3b631c,2, 0x3b6600,10, 0x3b6630,1, 0x3b6640,10, 0x3b6670,1, 0x3b6700,10, 0x3b6730,1, 0x3b6740,10, 0x3b6770,1, 0x3b6800,19, 0x3b6890,15, 0x3b6910,15, 0x3b6a00,10, 0x3b6ab8,4, 0x3b6b00,3, 0x3b6b10,1, 0x3b6e00,6, 0x3b6f00,5, 0x3b7000,65, 0x3b7800,6, 0x3b7820,6, 0x3b7840,6, 0x3b7860,6, 0x3b7880,6, 0x3b78a0,6, 0x3b78c0,6, 0x3b78e0,3, 0x3b7900,6, 0x3b7920,6, 0x3b7940,6, 0x3b7960,6, 0x3b7980,6, 0x3b79a0,6, 0x3b79c0,6, 0x3b79e0,3, 0x3b7a00,6, 0x3b7a20,6, 0x3b7a40,3, 0x3b7a80,7, 0x3b7aa0,7, 0x3b7ac0,9, 0x3b7b00,9, 0x3b7b40,10, 0x3b7b80,10, 0x3b7bc0,10, 0x3b7c00,10, 0x3b7c40,10, 0x3b7c80,10, 0x3b7cc0,3, 0x3b7e40,7, 0x3b7e60,7, 0x3b7e80,7, 0x3b7ea0,7, 0x3b7ec0,7, 0x3b7ee0,7, 0x3b7f00,7, 0x3b7f20,7, 0x3b7f40,7, 0x3b7f60,4, 0x3b7f78,13, 0x3b8000,2, 0x3b800c,3, 0x3b8028,2, 0x3b8038,2, 0x3b8080,29, 0x3b80f8,1, 0x3b8100,13, 0x3b8140,13, 0x3b8500,6, 0x3b8520,6, 0x3b8540,3, 0x3b8580,10, 0x3b85c0,15, 0x3b8600,2, 0x3b8618,5, 0x3b8630,1, 0x3b8800,2, 0x3b880c,3, 0x3b8828,2, 0x3b8838,2, 0x3b8880,29, 0x3b88f8,1, 0x3b8900,13, 0x3b8940,13, 0x3b8d00,6, 0x3b8d20,6, 0x3b8d40,3, 0x3b8d80,10, 0x3b8dc0,15, 0x3b8e00,2, 0x3b8e18,5, 0x3b8e30,1, 0x3b9800,3, 0x3b9828,3, 0x3b9850,3, 0x3b9878,3, 0x3b98a0,9, 0x3b99ac,1, 0x3b99d8,4, 0x3b9a00,6, 0x3b9a20,6, 0x3b9a40,6, 0x3b9a60,6, 0x3b9a80,6, 0x3b9aa0,6, 0x3b9ac0,3, 0x3b9c00,6, 0x3b9c20,3, 0x3b9c40,2, 0x3b9c60,1, 0x3c0000,4, 0x3c0014,1, 0x3c0020,3, 0x3c0030,3, 0x3c0040,8, 0x3c007c,2, 0x3c00a0,6, 0x3c00c0,6, 0x3c00e0,6, 0x3c0100,4, 0x3c0114,1, 0x3c0120,3, 0x3c0130,3, 0x3c0140,8, 0x3c017c,2, 0x3c01a0,6, 0x3c01c0,6, 0x3c01e0,6, 0x3c0200,4, 0x3c0214,1, 0x3c0220,3, 0x3c0230,3, 0x3c0240,8, 0x3c027c,2, 0x3c02a0,6, 0x3c02c0,6, 0x3c02e0,6, 0x3c0300,4, 0x3c0314,1, 0x3c0320,3, 0x3c0330,3, 0x3c0340,8, 0x3c037c,2, 0x3c03a0,6, 0x3c03c0,6, 0x3c03e0,6, 0x3c0400,6, 0x3c0440,6, 0x3c0480,3, 0x3c04c0,3, 0x3c0500,2, 0x3c050c,4, 0x3c0520,2, 0x3c052c,4, 0x3c0540,2, 0x3c0c00,13, 0x3c0c40,12, 0x3c0c80,13, 0x3c0cc0,12, 0x3c0d00,14, 0x3c0d40,6, 0x3c0d80,14, 0x3c0dc0,6, 0x3c0e00,11, 0x3c0e40,6, 0x3c0e60,6, 0x3c0e80,6, 0x3c0ea0,6, 0x3c1000,2, 0x3c1014,4, 0x3c1040,3, 0x3c1050,3, 0x3c1080,43, 0x3c1140,11, 0x3c1180,1, 0x3c119c,15, 0x3c1200,12, 0x3c1300,1, 0x3c1308,6, 0x3c1324,10, 0x3c1380,1, 0x3c1388,6, 0x3c13a4,10, 0x3c1400,7, 0x3c1420,7, 0x3c1500,12, 0x3c1540,12, 0x3c1580,4, 0x3c1800,14, 0x3c183c,9, 0x3c1864,6, 0x3c1880,2, 0x3c1890,4, 0x3c1900,14, 0x3c193c,9, 0x3c1964,6, 0x3c1980,2, 0x3c1990,4, 0x3c1a00,16, 0x3c1a50,4, 0x3c1a80,16, 0x3c1ad0,4, 0x3c1b00,6, 0x3c1b20,6, 0x3c1b40,3, 0x3c1b80,6, 0x3c1ba0,6, 0x3c1bc0,3, 0x3c1c00,6, 0x3c1c20,6, 0x3c1c40,3, 0x3c1c80,6, 0x3c1ca0,6, 0x3c1cc0,3, 0x3c1d10,2, 0x3c1d1c,1, 0x3c1d50,2, 0x3c1d5c,1, 0x3c1d80,1, 0x3c1da0,1, 0x3c1da8,4, 0x3c1dc0,1, 0x3c1de0,1, 0x3c1de8,4, 0x3c1e00,13, 0x3c1e40,6, 0x3c1e60,6, 0x3c1e80,6, 0x3c1ea0,6, 0x3c1ec0,7, 0x3c1ee0,7, 0x3c1f00,12, 0x3c1f34,2, 0x3c1f40,3, 0x3c1f50,8, 0x3c2000,4, 0x3c2014,1, 0x3c2020,3, 0x3c2030,3, 0x3c2040,8, 0x3c207c,2, 0x3c20a0,6, 0x3c20c0,6, 0x3c20e0,6, 0x3c2100,4, 0x3c2114,1, 0x3c2120,3, 0x3c2130,3, 0x3c2140,8, 0x3c217c,2, 0x3c21a0,6, 0x3c21c0,6, 0x3c21e0,6, 0x3c2200,4, 0x3c2214,1, 0x3c2220,3, 0x3c2230,3, 0x3c2240,8, 0x3c227c,2, 0x3c22a0,6, 0x3c22c0,6, 0x3c22e0,6, 0x3c2300,4, 0x3c2314,1, 0x3c2320,3, 0x3c2330,3, 0x3c2340,8, 0x3c237c,2, 0x3c23a0,6, 0x3c23c0,6, 0x3c23e0,6, 0x3c2400,6, 0x3c2440,6, 0x3c2480,3, 0x3c24c0,3, 0x3c2500,2, 0x3c250c,4, 0x3c2520,2, 0x3c252c,4, 0x3c2540,2, 0x3c2c00,13, 0x3c2c40,12, 0x3c2c80,13, 0x3c2cc0,12, 0x3c2d00,14, 0x3c2d40,6, 0x3c2d80,14, 0x3c2dc0,6, 0x3c2e00,11, 0x3c2e40,6, 0x3c2e60,6, 0x3c2e80,6, 0x3c2ea0,6, 0x3c3000,2, 0x3c3014,4, 0x3c3040,3, 0x3c3050,3, 0x3c3080,43, 0x3c3140,11, 0x3c3180,1, 0x3c319c,15, 0x3c3200,12, 0x3c3300,1, 0x3c3308,6, 0x3c3324,10, 0x3c3380,1, 0x3c3388,6, 0x3c33a4,10, 0x3c3400,7, 0x3c3420,7, 0x3c3500,12, 0x3c3540,12, 0x3c3580,4, 0x3c3800,14, 0x3c383c,9, 0x3c3864,6, 0x3c3880,2, 0x3c3890,4, 0x3c3900,14, 0x3c393c,9, 0x3c3964,6, 0x3c3980,2, 0x3c3990,4, 0x3c3a00,16, 0x3c3a50,4, 0x3c3a80,16, 0x3c3ad0,4, 0x3c3b00,6, 0x3c3b20,6, 0x3c3b40,3, 0x3c3b80,6, 0x3c3ba0,6, 0x3c3bc0,3, 0x3c3c00,6, 0x3c3c20,6, 0x3c3c40,3, 0x3c3c80,6, 0x3c3ca0,6, 0x3c3cc0,3, 0x3c3d10,2, 0x3c3d1c,1, 0x3c3d50,2, 0x3c3d5c,1, 0x3c3d80,1, 0x3c3da0,1, 0x3c3da8,4, 0x3c3dc0,1, 0x3c3de0,1, 0x3c3de8,4, 0x3c3e00,13, 0x3c3e40,6, 0x3c3e60,6, 0x3c3e80,6, 0x3c3ea0,6, 0x3c3ec0,7, 0x3c3ee0,7, 0x3c3f00,12, 0x3c3f34,2, 0x3c3f40,3, 0x3c3f50,8, 0x3c4000,29, 0x3c4078,4, 0x3c4090,2, 0x3c40a0,7, 0x3c40c0,11, 0x3c4100,14, 0x3c4140,14, 0x3c4180,61, 0x3c4278,4, 0x3c4290,2, 0x3c42a0,7, 0x3c42c0,11, 0x3c4300,14, 0x3c4340,14, 0x3c4380,61, 0x3c4478,4, 0x3c4490,2, 0x3c44a0,7, 0x3c44c0,11, 0x3c4500,14, 0x3c4540,14, 0x3c4580,61, 0x3c4678,4, 0x3c4690,2, 0x3c46a0,7, 0x3c46c0,11, 0x3c4700,14, 0x3c4740,14, 0x3c4780,69, 0x3c4c00,6, 0x3c4c40,14, 0x3c4c80,9, 0x3c4d00,9, 0x3c4d2c,1, 0x3c4d40,3, 0x3c4d60,1, 0x3c4d80,3, 0x3c4e00,2, 0x3c4e0c,1, 0x3c4e14,5, 0x3c4e2c,1, 0x3c4e34,5, 0x3c4e4c,1, 0x3c4e54,5, 0x3c4e6c,1, 0x3c4e74,5, 0x3c4e8c,1, 0x3c4e94,5, 0x3c4eac,1, 0x3c4eb4,3, 0x3c5000,29, 0x3c5078,4, 0x3c5090,2, 0x3c50a0,7, 0x3c50c0,11, 0x3c5100,14, 0x3c5140,14, 0x3c5180,61, 0x3c5278,4, 0x3c5290,2, 0x3c52a0,7, 0x3c52c0,11, 0x3c5300,14, 0x3c5340,14, 0x3c5380,61, 0x3c5478,4, 0x3c5490,2, 0x3c54a0,7, 0x3c54c0,11, 0x3c5500,14, 0x3c5540,14, 0x3c5580,61, 0x3c5678,4, 0x3c5690,2, 0x3c56a0,7, 0x3c56c0,11, 0x3c5700,14, 0x3c5740,14, 0x3c5780,69, 0x3c5c00,6, 0x3c5c40,14, 0x3c5c80,9, 0x3c5d00,9, 0x3c5d2c,1, 0x3c5d40,3, 0x3c5d60,1, 0x3c5d80,3, 0x3c5e00,2, 0x3c5e0c,1, 0x3c5e14,5, 0x3c5e2c,1, 0x3c5e34,5, 0x3c5e4c,1, 0x3c5e54,5, 0x3c5e6c,1, 0x3c5e74,5, 0x3c5e8c,1, 0x3c5e94,5, 0x3c5eac,1, 0x3c5eb4,3, 0x3c6000,14, 0x3c6040,6, 0x3c6060,6, 0x3c6080,6, 0x3c60a0,3, 0x3c6100,9, 0x3c6204,1, 0x3c620c,6, 0x3c6240,13, 0x3c6280,16, 0x3c6800,19, 0x3c6850,10, 0x3c6880,19, 0x3c68d0,10, 0x3c6900,19, 0x3c6950,10, 0x3c6980,19, 0x3c69d0,10, 0x3c6a00,19, 0x3c6a50,10, 0x3c6a80,19, 0x3c6ad0,10, 0x3c6b00,19, 0x3c6b50,10, 0x3c6b80,19, 0x3c6bd0,10, 0x3c6c00,19, 0x3c6c60,6, 0x3c6c84,1, 0x3c6c94,8, 0x3c6cb8,14, 0x3c7000,1, 0x3c7028,1, 0x3c7050,1, 0x3c7078,1, 0x3c70a0,4, 0x3c71ac,1, 0x3c71d8,4, 0x3c7200,6, 0x3c7220,6, 0x3c7240,3, 0x3c7400,1, 0x3c7408,3, 0x3c7438,1, 0x3c7444,1, 0x3c7450,6, 0x3c7500,7, 0x3c7520,6, 0x3c7540,6, 0x3c7560,3, 0x3c7570,3, 0x3c8000,6, 0x3c8020,3, 0x3c8030,1, 0x3c8038,4, 0x3c8050,1, 0x3c8400,1, 0x3c8428,1, 0x3c8450,1, 0x3c8478,1, 0x3c84a0,6, 0x3c85ac,1, 0x3c85d8,4, 0x3c8600,6, 0x3c8620,6, 0x3c8640,3, 0x3c8800,6, 0x3c8820,3, 0x3c8830,4, 0x3c8918,2, 0x3c8924,1, 0x3c8934,3, 0x3c8958,2, 0x3c8964,1, 0x3c8974,3, 0x3c8998,2, 0x3c89a4,1, 0x3c89b4,3, 0x3c89d8,2, 0x3c89e4,1, 0x3c89f4,3, 0x3c9020,4, 0x3c9040,11, 0x3c9074,2, 0x3c9080,4, 0x3c90b0,22, 0x3c9110,2, 0x3c9120,22, 0x3c9180,2, 0x3c91a0,6, 0x3c91c0,9, 0x3c9200,42, 0x3c92c0,1, 0x3c92c8,13, 0x3c9300,25, 0x3c936c,4, 0x3c9380,2, 0x3c93a0,1, 0x3c93c0,11, 0x3c9404,3, 0x3c9420,11, 0x3c9480,6, 0x3c9500,1, 0x3c9520,6, 0x3c9540,3, 0x3c9550,7, 0x3c9570,18, 0x3c95bc,5, 0x3c9800,480, 0x3ca020,4, 0x3ca040,11, 0x3ca074,2, 0x3ca080,4, 0x3ca0b0,22, 0x3ca110,2, 0x3ca120,22, 0x3ca180,2, 0x3ca1a0,6, 0x3ca1c0,9, 0x3ca200,42, 0x3ca2c0,1, 0x3ca2c8,13, 0x3ca300,25, 0x3ca36c,4, 0x3ca380,2, 0x3ca3a0,1, 0x3ca3c0,11, 0x3ca404,3, 0x3ca420,11, 0x3ca480,6, 0x3ca500,1, 0x3ca520,6, 0x3ca540,3, 0x3ca550,7, 0x3ca570,18, 0x3ca5bc,5, 0x3ca800,480, 0x3cb020,4, 0x3cb040,11, 0x3cb074,2, 0x3cb080,4, 0x3cb0b0,22, 0x3cb110,2, 0x3cb120,22, 0x3cb180,2, 0x3cb1a0,6, 0x3cb1c0,9, 0x3cb200,42, 0x3cb2c0,1, 0x3cb2c8,13, 0x3cb300,25, 0x3cb36c,4, 0x3cb380,2, 0x3cb3a0,1, 0x3cb3c0,11, 0x3cb404,3, 0x3cb420,11, 0x3cb480,6, 0x3cb500,1, 0x3cb520,6, 0x3cb540,3, 0x3cb550,7, 0x3cb570,18, 0x3cb5bc,5, 0x3cb800,480, 0x3cc020,4, 0x3cc040,11, 0x3cc074,2, 0x3cc080,4, 0x3cc0b0,22, 0x3cc110,2, 0x3cc120,22, 0x3cc180,2, 0x3cc1a0,6, 0x3cc1c0,9, 0x3cc200,42, 0x3cc2c0,1, 0x3cc2c8,13, 0x3cc300,25, 0x3cc36c,4, 0x3cc380,2, 0x3cc3a0,1, 0x3cc3c0,11, 0x3cc404,3, 0x3cc420,11, 0x3cc480,6, 0x3cc500,1, 0x3cc520,6, 0x3cc540,3, 0x3cc550,7, 0x3cc570,18, 0x3cc5bc,5, 0x3cc800,480, 0x3cf800,5, 0x3cf818,1, 0x3cf854,6, 0x3cf880,4, 0x3cf8a4,1, 0x3cf8ac,2, 0x3cf900,5, 0x3cf918,1, 0x3cf954,6, 0x3cf980,4, 0x3cf9a4,1, 0x3cf9ac,2, 0x3cfa00,5, 0x3cfa18,1, 0x3cfa54,6, 0x3cfa80,4, 0x3cfaa4,1, 0x3cfaac,2, 0x3cfb00,5, 0x3cfb18,1, 0x3cfb54,6, 0x3cfb80,4, 0x3cfba4,1, 0x3cfbac,2, 0x3d4000,3, 0x3d4018,10, 0x3d4100,58, 0x3d41f0,1, 0x3d4400,3, 0x3d4418,10, 0x3d4500,58, 0x3d45f0,1, 0x3d4800,3, 0x3d4810,3, 0x3d4820,6, 0x3d4880,9, 0x3d48c0,9, 0x3d4900,8, 0x3d4938,2, 0x3d4944,1, 0x3d4954,3, 0x3d4980,8, 0x3d49b8,2, 0x3d49c4,1, 0x3d49d4,3, 0x3d5000,3, 0x3d5018,10, 0x3d5100,58, 0x3d51f0,1, 0x3d5400,3, 0x3d5418,10, 0x3d5500,58, 0x3d55f0,1, 0x3d5800,3, 0x3d5810,3, 0x3d5820,6, 0x3d5880,9, 0x3d58c0,9, 0x3d5900,8, 0x3d5938,2, 0x3d5944,1, 0x3d5954,3, 0x3d5980,8, 0x3d59b8,2, 0x3d59c4,1, 0x3d59d4,3, 0x3d6004,7, 0x3d6024,1, 0x3d6030,4, 0x3d6300,5, 0x3d631c,2, 0x3d6600,10, 0x3d6630,1, 0x3d6640,10, 0x3d6670,1, 0x3d6700,10, 0x3d6730,1, 0x3d6740,10, 0x3d6770,1, 0x3d6800,19, 0x3d6890,15, 0x3d6910,15, 0x3d6a00,10, 0x3d6ab8,4, 0x3d6b00,3, 0x3d6b10,1, 0x3d6e00,6, 0x3d6f00,5, 0x3d7000,65, 0x3d7800,6, 0x3d7820,6, 0x3d7840,6, 0x3d7860,6, 0x3d7880,6, 0x3d78a0,6, 0x3d78c0,6, 0x3d78e0,3, 0x3d7900,6, 0x3d7920,6, 0x3d7940,6, 0x3d7960,6, 0x3d7980,6, 0x3d79a0,6, 0x3d79c0,6, 0x3d79e0,3, 0x3d7a00,6, 0x3d7a20,6, 0x3d7a40,3, 0x3d7a80,7, 0x3d7aa0,7, 0x3d7ac0,9, 0x3d7b00,9, 0x3d7b40,10, 0x3d7b80,10, 0x3d7bc0,10, 0x3d7c00,10, 0x3d7c40,10, 0x3d7c80,10, 0x3d7cc0,3, 0x3d7e40,7, 0x3d7e60,7, 0x3d7e80,7, 0x3d7ea0,7, 0x3d7ec0,7, 0x3d7ee0,7, 0x3d7f00,7, 0x3d7f20,7, 0x3d7f40,7, 0x3d7f60,4, 0x3d7f78,13, 0x3d8000,2, 0x3d800c,3, 0x3d8028,2, 0x3d8038,2, 0x3d8080,29, 0x3d80f8,1, 0x3d8100,13, 0x3d8140,13, 0x3d8500,6, 0x3d8520,6, 0x3d8540,3, 0x3d8580,10, 0x3d85c0,15, 0x3d8600,2, 0x3d8618,5, 0x3d8630,1, 0x3d8800,2, 0x3d880c,3, 0x3d8828,2, 0x3d8838,2, 0x3d8880,29, 0x3d88f8,1, 0x3d8900,13, 0x3d8940,13, 0x3d8d00,6, 0x3d8d20,6, 0x3d8d40,3, 0x3d8d80,10, 0x3d8dc0,15, 0x3d8e00,2, 0x3d8e18,5, 0x3d8e30,1, 0x3d9800,3, 0x3d9828,3, 0x3d9850,3, 0x3d9878,3, 0x3d98a0,9, 0x3d99ac,1, 0x3d99d8,4, 0x3d9a00,6, 0x3d9a20,6, 0x3d9a40,6, 0x3d9a60,6, 0x3d9a80,6, 0x3d9aa0,6, 0x3d9ac0,3, 0x3d9c00,6, 0x3d9c20,3, 0x3d9c40,2, 0x3d9c60,1, 0x3e0000,4, 0x3e0014,1, 0x3e0020,3, 0x3e0030,3, 0x3e0040,8, 0x3e007c,2, 0x3e00a0,6, 0x3e00c0,6, 0x3e00e0,6, 0x3e0100,4, 0x3e0114,1, 0x3e0120,3, 0x3e0130,3, 0x3e0140,8, 0x3e017c,2, 0x3e01a0,6, 0x3e01c0,6, 0x3e01e0,6, 0x3e0200,4, 0x3e0214,1, 0x3e0220,3, 0x3e0230,3, 0x3e0240,8, 0x3e027c,2, 0x3e02a0,6, 0x3e02c0,6, 0x3e02e0,6, 0x3e0300,4, 0x3e0314,1, 0x3e0320,3, 0x3e0330,3, 0x3e0340,8, 0x3e037c,2, 0x3e03a0,6, 0x3e03c0,6, 0x3e03e0,6, 0x3e0400,6, 0x3e0440,6, 0x3e0480,3, 0x3e04c0,3, 0x3e0500,2, 0x3e050c,4, 0x3e0520,2, 0x3e052c,4, 0x3e0540,2, 0x3e0c00,13, 0x3e0c40,12, 0x3e0c80,13, 0x3e0cc0,12, 0x3e0d00,14, 0x3e0d40,6, 0x3e0d80,14, 0x3e0dc0,6, 0x3e0e00,11, 0x3e0e40,6, 0x3e0e60,6, 0x3e0e80,6, 0x3e0ea0,6, 0x3e1000,2, 0x3e1014,4, 0x3e1040,3, 0x3e1050,3, 0x3e1080,43, 0x3e1140,11, 0x3e1180,1, 0x3e119c,15, 0x3e1200,12, 0x3e1300,1, 0x3e1308,6, 0x3e1324,10, 0x3e1380,1, 0x3e1388,6, 0x3e13a4,10, 0x3e1400,7, 0x3e1420,7, 0x3e1500,12, 0x3e1540,12, 0x3e1580,4, 0x3e1800,14, 0x3e183c,9, 0x3e1864,6, 0x3e1880,2, 0x3e1890,4, 0x3e1900,14, 0x3e193c,9, 0x3e1964,6, 0x3e1980,2, 0x3e1990,4, 0x3e1a00,16, 0x3e1a50,4, 0x3e1a80,16, 0x3e1ad0,4, 0x3e1b00,6, 0x3e1b20,6, 0x3e1b40,3, 0x3e1b80,6, 0x3e1ba0,6, 0x3e1bc0,3, 0x3e1c00,6, 0x3e1c20,6, 0x3e1c40,3, 0x3e1c80,6, 0x3e1ca0,6, 0x3e1cc0,3, 0x3e1d10,2, 0x3e1d1c,1, 0x3e1d50,2, 0x3e1d5c,1, 0x3e1d80,1, 0x3e1da0,1, 0x3e1da8,4, 0x3e1dc0,1, 0x3e1de0,1, 0x3e1de8,4, 0x3e1e00,13, 0x3e1e40,6, 0x3e1e60,6, 0x3e1e80,6, 0x3e1ea0,6, 0x3e1ec0,7, 0x3e1ee0,7, 0x3e1f00,12, 0x3e1f34,2, 0x3e1f40,3, 0x3e1f50,8, 0x3e2000,4, 0x3e2014,1, 0x3e2020,3, 0x3e2030,3, 0x3e2040,8, 0x3e207c,2, 0x3e20a0,6, 0x3e20c0,6, 0x3e20e0,6, 0x3e2100,4, 0x3e2114,1, 0x3e2120,3, 0x3e2130,3, 0x3e2140,8, 0x3e217c,2, 0x3e21a0,6, 0x3e21c0,6, 0x3e21e0,6, 0x3e2200,4, 0x3e2214,1, 0x3e2220,3, 0x3e2230,3, 0x3e2240,8, 0x3e227c,2, 0x3e22a0,6, 0x3e22c0,6, 0x3e22e0,6, 0x3e2300,4, 0x3e2314,1, 0x3e2320,3, 0x3e2330,3, 0x3e2340,8, 0x3e237c,2, 0x3e23a0,6, 0x3e23c0,6, 0x3e23e0,6, 0x3e2400,6, 0x3e2440,6, 0x3e2480,3, 0x3e24c0,3, 0x3e2500,2, 0x3e250c,4, 0x3e2520,2, 0x3e252c,4, 0x3e2540,2, 0x3e2c00,13, 0x3e2c40,12, 0x3e2c80,13, 0x3e2cc0,12, 0x3e2d00,14, 0x3e2d40,6, 0x3e2d80,14, 0x3e2dc0,6, 0x3e2e00,11, 0x3e2e40,6, 0x3e2e60,6, 0x3e2e80,6, 0x3e2ea0,6, 0x3e3000,2, 0x3e3014,4, 0x3e3040,3, 0x3e3050,3, 0x3e3080,43, 0x3e3140,11, 0x3e3180,1, 0x3e319c,15, 0x3e3200,12, 0x3e3300,1, 0x3e3308,6, 0x3e3324,10, 0x3e3380,1, 0x3e3388,6, 0x3e33a4,10, 0x3e3400,7, 0x3e3420,7, 0x3e3500,12, 0x3e3540,12, 0x3e3580,4, 0x3e3800,14, 0x3e383c,9, 0x3e3864,6, 0x3e3880,2, 0x3e3890,4, 0x3e3900,14, 0x3e393c,9, 0x3e3964,6, 0x3e3980,2, 0x3e3990,4, 0x3e3a00,16, 0x3e3a50,4, 0x3e3a80,16, 0x3e3ad0,4, 0x3e3b00,6, 0x3e3b20,6, 0x3e3b40,3, 0x3e3b80,6, 0x3e3ba0,6, 0x3e3bc0,3, 0x3e3c00,6, 0x3e3c20,6, 0x3e3c40,3, 0x3e3c80,6, 0x3e3ca0,6, 0x3e3cc0,3, 0x3e3d10,2, 0x3e3d1c,1, 0x3e3d50,2, 0x3e3d5c,1, 0x3e3d80,1, 0x3e3da0,1, 0x3e3da8,4, 0x3e3dc0,1, 0x3e3de0,1, 0x3e3de8,4, 0x3e3e00,13, 0x3e3e40,6, 0x3e3e60,6, 0x3e3e80,6, 0x3e3ea0,6, 0x3e3ec0,7, 0x3e3ee0,7, 0x3e3f00,12, 0x3e3f34,2, 0x3e3f40,3, 0x3e3f50,8, 0x3e4000,29, 0x3e4078,4, 0x3e4090,2, 0x3e40a0,7, 0x3e40c0,11, 0x3e4100,14, 0x3e4140,14, 0x3e4180,61, 0x3e4278,4, 0x3e4290,2, 0x3e42a0,7, 0x3e42c0,11, 0x3e4300,14, 0x3e4340,14, 0x3e4380,61, 0x3e4478,4, 0x3e4490,2, 0x3e44a0,7, 0x3e44c0,11, 0x3e4500,14, 0x3e4540,14, 0x3e4580,61, 0x3e4678,4, 0x3e4690,2, 0x3e46a0,7, 0x3e46c0,11, 0x3e4700,14, 0x3e4740,14, 0x3e4780,69, 0x3e4c00,6, 0x3e4c40,14, 0x3e4c80,9, 0x3e4d00,9, 0x3e4d2c,1, 0x3e4d40,3, 0x3e4d60,1, 0x3e4d80,3, 0x3e4e00,2, 0x3e4e0c,1, 0x3e4e14,5, 0x3e4e2c,1, 0x3e4e34,5, 0x3e4e4c,1, 0x3e4e54,5, 0x3e4e6c,1, 0x3e4e74,5, 0x3e4e8c,1, 0x3e4e94,5, 0x3e4eac,1, 0x3e4eb4,3, 0x3e5000,29, 0x3e5078,4, 0x3e5090,2, 0x3e50a0,7, 0x3e50c0,11, 0x3e5100,14, 0x3e5140,14, 0x3e5180,61, 0x3e5278,4, 0x3e5290,2, 0x3e52a0,7, 0x3e52c0,11, 0x3e5300,14, 0x3e5340,14, 0x3e5380,61, 0x3e5478,4, 0x3e5490,2, 0x3e54a0,7, 0x3e54c0,11, 0x3e5500,14, 0x3e5540,14, 0x3e5580,61, 0x3e5678,4, 0x3e5690,2, 0x3e56a0,7, 0x3e56c0,11, 0x3e5700,14, 0x3e5740,14, 0x3e5780,69, 0x3e5c00,6, 0x3e5c40,14, 0x3e5c80,9, 0x3e5d00,9, 0x3e5d2c,1, 0x3e5d40,3, 0x3e5d60,1, 0x3e5d80,3, 0x3e5e00,2, 0x3e5e0c,1, 0x3e5e14,5, 0x3e5e2c,1, 0x3e5e34,5, 0x3e5e4c,1, 0x3e5e54,5, 0x3e5e6c,1, 0x3e5e74,5, 0x3e5e8c,1, 0x3e5e94,5, 0x3e5eac,1, 0x3e5eb4,3, 0x3e6000,14, 0x3e6040,6, 0x3e6060,6, 0x3e6080,6, 0x3e60a0,3, 0x3e6100,9, 0x3e6204,1, 0x3e620c,6, 0x3e6240,13, 0x3e6280,16, 0x3e6800,19, 0x3e6850,10, 0x3e6880,19, 0x3e68d0,10, 0x3e6900,19, 0x3e6950,10, 0x3e6980,19, 0x3e69d0,10, 0x3e6a00,19, 0x3e6a50,10, 0x3e6a80,19, 0x3e6ad0,10, 0x3e6b00,19, 0x3e6b50,10, 0x3e6b80,19, 0x3e6bd0,10, 0x3e6c00,19, 0x3e6c60,6, 0x3e6c84,1, 0x3e6c94,8, 0x3e6cb8,14, 0x3e7000,1, 0x3e7028,1, 0x3e7050,1, 0x3e7078,1, 0x3e70a0,4, 0x3e71ac,1, 0x3e71d8,4, 0x3e7200,6, 0x3e7220,6, 0x3e7240,3, 0x3e7400,1, 0x3e7408,3, 0x3e7438,1, 0x3e7444,1, 0x3e7450,6, 0x3e7500,7, 0x3e7520,6, 0x3e7540,6, 0x3e7560,3, 0x3e7570,3, 0x3e8000,6, 0x3e8020,3, 0x3e8030,1, 0x3e8038,4, 0x3e8050,1, 0x3e8400,1, 0x3e8428,1, 0x3e8450,1, 0x3e8478,1, 0x3e84a0,6, 0x3e85ac,1, 0x3e85d8,4, 0x3e8600,6, 0x3e8620,6, 0x3e8640,3, 0x3e8800,6, 0x3e8820,3, 0x3e8830,4, 0x3e8918,2, 0x3e8924,1, 0x3e8934,3, 0x3e8958,2, 0x3e8964,1, 0x3e8974,3, 0x3e8998,2, 0x3e89a4,1, 0x3e89b4,3, 0x3e89d8,2, 0x3e89e4,1, 0x3e89f4,3, 0x3e9020,4, 0x3e9040,11, 0x3e9074,2, 0x3e9080,4, 0x3e90b0,22, 0x3e9110,2, 0x3e9120,22, 0x3e9180,2, 0x3e91a0,6, 0x3e91c0,9, 0x3e9200,42, 0x3e92c0,1, 0x3e92c8,13, 0x3e9300,25, 0x3e936c,4, 0x3e9380,2, 0x3e93a0,1, 0x3e93c0,11, 0x3e9404,3, 0x3e9420,11, 0x3e9480,6, 0x3e9500,1, 0x3e9520,6, 0x3e9540,3, 0x3e9550,7, 0x3e9570,18, 0x3e95bc,5, 0x3e9800,480, 0x3ea020,4, 0x3ea040,11, 0x3ea074,2, 0x3ea080,4, 0x3ea0b0,22, 0x3ea110,2, 0x3ea120,22, 0x3ea180,2, 0x3ea1a0,6, 0x3ea1c0,9, 0x3ea200,42, 0x3ea2c0,1, 0x3ea2c8,13, 0x3ea300,25, 0x3ea36c,4, 0x3ea380,2, 0x3ea3a0,1, 0x3ea3c0,11, 0x3ea404,3, 0x3ea420,11, 0x3ea480,6, 0x3ea500,1, 0x3ea520,6, 0x3ea540,3, 0x3ea550,7, 0x3ea570,18, 0x3ea5bc,5, 0x3ea800,480, 0x3eb020,4, 0x3eb040,11, 0x3eb074,2, 0x3eb080,4, 0x3eb0b0,22, 0x3eb110,2, 0x3eb120,22, 0x3eb180,2, 0x3eb1a0,6, 0x3eb1c0,9, 0x3eb200,42, 0x3eb2c0,1, 0x3eb2c8,13, 0x3eb300,25, 0x3eb36c,4, 0x3eb380,2, 0x3eb3a0,1, 0x3eb3c0,11, 0x3eb404,3, 0x3eb420,11, 0x3eb480,6, 0x3eb500,1, 0x3eb520,6, 0x3eb540,3, 0x3eb550,7, 0x3eb570,18, 0x3eb5bc,5, 0x3eb800,480, 0x3ec020,4, 0x3ec040,11, 0x3ec074,2, 0x3ec080,4, 0x3ec0b0,22, 0x3ec110,2, 0x3ec120,22, 0x3ec180,2, 0x3ec1a0,6, 0x3ec1c0,9, 0x3ec200,42, 0x3ec2c0,1, 0x3ec2c8,13, 0x3ec300,25, 0x3ec36c,4, 0x3ec380,2, 0x3ec3a0,1, 0x3ec3c0,11, 0x3ec404,3, 0x3ec420,11, 0x3ec480,6, 0x3ec500,1, 0x3ec520,6, 0x3ec540,3, 0x3ec550,7, 0x3ec570,18, 0x3ec5bc,5, 0x3ec800,480, 0x3ef800,5, 0x3ef818,1, 0x3ef854,6, 0x3ef880,4, 0x3ef8a4,1, 0x3ef8ac,2, 0x3ef900,5, 0x3ef918,1, 0x3ef954,6, 0x3ef980,4, 0x3ef9a4,1, 0x3ef9ac,2, 0x3efa00,5, 0x3efa18,1, 0x3efa54,6, 0x3efa80,4, 0x3efaa4,1, 0x3efaac,2, 0x3efb00,5, 0x3efb18,1, 0x3efb54,6, 0x3efb80,4, 0x3efba4,1, 0x3efbac,2, 0x3f4000,3, 0x3f4018,10, 0x3f4100,58, 0x3f41f0,1, 0x3f4400,3, 0x3f4418,10, 0x3f4500,58, 0x3f45f0,1, 0x3f4800,3, 0x3f4810,3, 0x3f4820,6, 0x3f4880,9, 0x3f48c0,9, 0x3f4900,8, 0x3f4938,2, 0x3f4944,1, 0x3f4954,3, 0x3f4980,8, 0x3f49b8,2, 0x3f49c4,1, 0x3f49d4,3, 0x3f5000,3, 0x3f5018,10, 0x3f5100,58, 0x3f51f0,1, 0x3f5400,3, 0x3f5418,10, 0x3f5500,58, 0x3f55f0,1, 0x3f5800,3, 0x3f5810,3, 0x3f5820,6, 0x3f5880,9, 0x3f58c0,9, 0x3f5900,8, 0x3f5938,2, 0x3f5944,1, 0x3f5954,3, 0x3f5980,8, 0x3f59b8,2, 0x3f59c4,1, 0x3f59d4,3, 0x3f6004,7, 0x3f6024,1, 0x3f6030,4, 0x3f6300,5, 0x3f631c,2, 0x3f6600,10, 0x3f6630,1, 0x3f6640,10, 0x3f6670,1, 0x3f6700,10, 0x3f6730,1, 0x3f6740,10, 0x3f6770,1, 0x3f6800,19, 0x3f6890,15, 0x3f6910,15, 0x3f6a00,10, 0x3f6ab8,4, 0x3f6b00,3, 0x3f6b10,1, 0x3f6e00,6, 0x3f6f00,5, 0x3f7000,65, 0x3f7800,6, 0x3f7820,6, 0x3f7840,6, 0x3f7860,6, 0x3f7880,6, 0x3f78a0,6, 0x3f78c0,6, 0x3f78e0,3, 0x3f7900,6, 0x3f7920,6, 0x3f7940,6, 0x3f7960,6, 0x3f7980,6, 0x3f79a0,6, 0x3f79c0,6, 0x3f79e0,3, 0x3f7a00,6, 0x3f7a20,6, 0x3f7a40,3, 0x3f7a80,7, 0x3f7aa0,7, 0x3f7ac0,9, 0x3f7b00,9, 0x3f7b40,10, 0x3f7b80,10, 0x3f7bc0,10, 0x3f7c00,10, 0x3f7c40,10, 0x3f7c80,10, 0x3f7cc0,3, 0x3f7e40,7, 0x3f7e60,7, 0x3f7e80,7, 0x3f7ea0,7, 0x3f7ec0,7, 0x3f7ee0,7, 0x3f7f00,7, 0x3f7f20,7, 0x3f7f40,7, 0x3f7f60,4, 0x3f7f78,13, 0x3f8000,2, 0x3f800c,3, 0x3f8028,2, 0x3f8038,2, 0x3f8080,29, 0x3f80f8,1, 0x3f8100,13, 0x3f8140,13, 0x3f8500,6, 0x3f8520,6, 0x3f8540,3, 0x3f8580,10, 0x3f85c0,15, 0x3f8600,2, 0x3f8618,5, 0x3f8630,1, 0x3f8800,2, 0x3f880c,3, 0x3f8828,2, 0x3f8838,2, 0x3f8880,29, 0x3f88f8,1, 0x3f8900,13, 0x3f8940,13, 0x3f8d00,6, 0x3f8d20,6, 0x3f8d40,3, 0x3f8d80,10, 0x3f8dc0,15, 0x3f8e00,2, 0x3f8e18,5, 0x3f8e30,1, 0x3f9800,3, 0x3f9828,3, 0x3f9850,3, 0x3f9878,3, 0x3f98a0,9, 0x3f99ac,1, 0x3f99d8,4, 0x3f9a00,6, 0x3f9a20,6, 0x3f9a40,6, 0x3f9a60,6, 0x3f9a80,6, 0x3f9aa0,6, 0x3f9ac0,3, 0x3f9c00,6, 0x3f9c20,3, 0x3f9c40,2, 0x3f9c60,1, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX6DX.csv0000755000175000017500000031355414522641732022513 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16385, 0x010008,4, 0x010024,4, 0x010040,2, 0x010064,1, 0x01006c,14, 0x0100a8,5, 0x0100c4,5, 0x010104,1, 0x010178,34, 0x010204,3, 0x010224,4, 0x010244,3, 0x010264,3, 0x010284,1, 0x010290,4, 0x0102a4,1, 0x0102b4,3, 0x0102c4,1, 0x0102cc,1, 0x0102e4,1, 0x0102ec,1, 0x0102f4,1, 0x0102fc,1, 0x010304,1, 0x01030c,1, 0x010314,1, 0x01031c,1, 0x010324,1, 0x01032c,1, 0x010334,1, 0x01033c,1, 0x010344,3, 0x010354,3, 0x010364,6, 0x010380,32, 0x010404,1, 0x010438,18, 0x010500,3, 0x010524,4, 0x010580,2, 0x010594,3, 0x0105a4,1, 0x0105b0,4, 0x0105c4,3, 0x0105e0,1, 0x0105f0,4, 0x010608,11, 0x010640,1, 0x010648,2, 0x010700,6, 0x010800,1, 0x010820,9, 0x010850,5, 0x010870,5, 0x0108a0,8, 0x010900,1, 0x010920,9, 0x010950,4, 0x01096c,37, 0x010a40,1, 0x010a50,5, 0x010a68,23, 0x010ad8,1, 0x010ae0,4, 0x010b04,3, 0x010b30,3, 0x010b40,1, 0x010b64,1, 0x010b70,11, 0x010bc0,4, 0x010c00,1, 0x010c14,4, 0x010c30,1, 0x010c40,1, 0x010c50,1, 0x010c64,1, 0x010c6c,2, 0x010c90,1, 0x010ca0,1, 0x010cb0,1, 0x010cc0,1, 0x010cd0,1, 0x010ce0,1, 0x010cf0,1, 0x010d10,1, 0x010d20,1, 0x010d30,1, 0x010d40,1, 0x010d50,1, 0x010d60,1, 0x010d70,1, 0x010d80,1, 0x010d90,1, 0x010db0,1, 0x010dc0,1, 0x010de0,1, 0x010df0,1, 0x010e00,1, 0x010e10,1, 0x010e20,1, 0x010e30,1, 0x010e40,1, 0x010e50,1, 0x010e60,1, 0x010e70,1, 0x010e80,1, 0x010e90,1, 0x010ea4,5, 0x010ec0,1, 0x010ed0,1, 0x010f00,65, 0x011010,7, 0x011030,2, 0x011040,1, 0x011060,10, 0x011180,4, 0x0111a0,10, 0x011200,7, 0x011220,4, 0x011234,1, 0x01123c,4, 0x011250,2, 0x011260,1, 0x011270,1, 0x011288,16, 0x0112d0,1, 0x011300,1, 0x011320,8, 0x011344,6, 0x011400,9, 0x011440,3, 0x011460,1, 0x011480,3, 0x011504,5, 0x011580,47, 0x011640,6, 0x011680,6, 0x011800,3, 0x011810,3, 0x011820,3, 0x011830,3, 0x011840,3, 0x011850,3, 0x011860,3, 0x011870,3, 0x011880,3, 0x011890,3, 0x0118a0,3, 0x0118b0,3, 0x0118c0,3, 0x0118d0,3, 0x0118e0,3, 0x0118f0,3, 0x011900,2, 0x012000,215, 0x012400,2, 0x013000,30, 0x01307c,19, 0x013400,59, 0x013500,9, 0x013600,7, 0x013620,7, 0x013660,7, 0x013704,1, 0x013740,18, 0x0137a0,10, 0x0137e0,29, 0x013860,3, 0x013870,7, 0x0138a0,7, 0x0138c0,2, 0x013900,7, 0x013920,7, 0x013960,7, 0x013980,1, 0x014020,14, 0x014080,17, 0x014100,64, 0x014280,32, 0x014304,3, 0x014404,8, 0x014428,6, 0x014504,1, 0x01450c,12, 0x018004,1, 0x018078,36, 0x018204,5, 0x018300,9, 0x018340,6, 0x018360,2, 0x018400,7, 0x018420,2, 0x018484,5, 0x0184b4,1, 0x0187f0,1, 0x018800,1, 0x018810,1, 0x018820,1, 0x018830,1, 0x018840,1, 0x018850,1, 0x018860,1, 0x018870,1, 0x018880,1, 0x018890,1, 0x018a00,32, 0x018a84,3, 0x018aa4,3, 0x018acc,2, 0x018ad8,12, 0x018b44,1, 0x018b5c,9, 0x018c00,3, 0x018c24,4, 0x018d04,1, 0x018d0c,9, 0x018d34,1, 0x018d40,2, 0x018d50,1, 0x018d58,2, 0x018f04,5, 0x018f40,16, 0x018fe8,1, 0x018ff0,2, 0x019004,5, 0x019080,32, 0x019108,5, 0x019120,1, 0x019130,1, 0x019140,1, 0x019150,1, 0x019160,1, 0x019170,1, 0x019180,1, 0x019190,1, 0x0191b0,2, 0x0191c0,6, 0x019200,1, 0x019810,1, 0x019820,1, 0x019830,1, 0x019840,1, 0x019850,1, 0x019860,1, 0x019870,1, 0x019880,1, 0x019890,1, 0x0198a0,1, 0x0198b0,1, 0x0198c0,1, 0x0198e0,1, 0x0198f0,1, 0x019900,1, 0x019910,1, 0x019920,1, 0x019930,1, 0x019940,1, 0x019998,2, 0x019a08,1, 0x019a20,1, 0x019a28,4, 0x019b00,14, 0x019b3c,3, 0x019b54,1, 0x019b5c,1, 0x019b64,1, 0x019b6c,2, 0x019c00,2, 0x01a020,3, 0x01a030,2, 0x01a04c,3, 0x01a090,1, 0x01a0a0,1, 0x01a0b0,1, 0x01a0c0,1, 0x01a0e8,2, 0x01a200,25, 0x01a280,1, 0x01a2a0,6, 0x01a300,6, 0x01a320,7, 0x01a3c0,2, 0x01a400,3, 0x01a424,4, 0x01a440,7, 0x01a484,3, 0x01a4c0,6, 0x01a4e0,1, 0x01a600,107, 0x01b000,35, 0x01ba00,10, 0x01ba80,3, 0x01c000,3, 0x01c020,4, 0x01c038,4, 0x01c054,5, 0x01c074,5, 0x01c0c4,1, 0x01c0d4,13, 0x01c144,1, 0x01c14c,13, 0x01c184,9, 0x01c1b0,3, 0x01c200,13, 0x01c240,11, 0x01c270,6, 0x01c300,4, 0x01c320,2, 0x01c400,9, 0x020000,34, 0x020090,1, 0x020098,2, 0x020100,40, 0x020200,2, 0x020400,3, 0x020414,2, 0x020420,1, 0x020444,4, 0x020480,2, 0x020490,3, 0x020590,1, 0x020600,7, 0x020800,4, 0x020818,2, 0x020828,14, 0x020880,2, 0x0208a4,1, 0x0208b0,6, 0x0208e4,1, 0x0208f0,4, 0x021138,5, 0x021150,2, 0x021160,12, 0x0211a0,8, 0x0211e0,15, 0x021240,2, 0x021264,1, 0x021274,20, 0x021300,102, 0x0214a0,6, 0x024000,1, 0x024010,3, 0x024020,3, 0x024044,4, 0x024084,1, 0x024094,10, 0x0240c0,2, 0x0240d0,1, 0x0240e0,2, 0x024100,3, 0x024110,3, 0x024120,1, 0x024140,2, 0x024200,1, 0x024210,3, 0x024220,3, 0x024244,4, 0x024284,1, 0x024294,9, 0x0242c0,2, 0x0242d0,1, 0x0242e0,2, 0x024300,5, 0x024320,2, 0x024400,25, 0x024480,10, 0x025000,1, 0x025010,3, 0x025020,3, 0x025044,4, 0x025084,1, 0x025094,3, 0x0250c0,2, 0x0250d0,1, 0x0250e0,2, 0x025100,5, 0x025120,5, 0x025140,1, 0x025180,4, 0x0251a0,5, 0x0251c0,2, 0x025200,64, 0x025380,10, 0x0253b0,3, 0x0253c0,4, 0x0253e0,5, 0x026000,18, 0x026080,18, 0x026100,18, 0x026180,18, 0x026200,18, 0x026400,18, 0x026480,18, 0x026500,18, 0x026580,18, 0x026600,18, 0x026800,18, 0x026880,18, 0x026900,18, 0x026980,18, 0x026a00,18, 0x027000,48, 0x027200,1, 0x027210,1, 0x027220,1, 0x027230,1, 0x027240,1, 0x027280,1, 0x027290,1, 0x0272a0,1, 0x0272b0,1, 0x0272c0,1, 0x027300,1, 0x027310,1, 0x027320,1, 0x027330,1, 0x027340,1, 0x028000,216, 0x028500,24, 0x028600,54, 0x028700,54, 0x0287e0,2, 0x028800,216, 0x028d00,24, 0x028e00,54, 0x028f00,54, 0x028fe0,2, 0x029000,216, 0x029500,24, 0x029600,54, 0x029700,54, 0x0297e0,2, 0x029800,216, 0x029d00,24, 0x029e00,54, 0x029f00,54, 0x029fe0,2, 0x02a000,216, 0x02a500,24, 0x02a600,54, 0x02a700,54, 0x02a7e0,2, 0x02c000,6, 0x02c020,6, 0x02c040,6, 0x02c060,6, 0x02c080,6, 0x02c100,6, 0x02c120,6, 0x02c140,6, 0x02c160,6, 0x02c180,6, 0x02c200,6, 0x02c220,6, 0x02c240,6, 0x02c260,6, 0x02c280,6, 0x02c300,6, 0x02c320,6, 0x02c340,6, 0x02c360,6, 0x02c380,6, 0x02c400,6, 0x02c420,6, 0x02c440,6, 0x02c460,6, 0x02c480,6, 0x02c500,6, 0x02c520,6, 0x02c540,6, 0x02c560,6, 0x02c580,6, 0x02c600,6, 0x02c620,6, 0x02c640,6, 0x02c660,6, 0x02c680,6, 0x02c700,6, 0x02c720,6, 0x02c740,6, 0x02c760,6, 0x02c780,6, 0x02c800,6, 0x02c820,6, 0x02c840,6, 0x02c860,6, 0x02c880,6, 0x02d000,6, 0x02d020,6, 0x02d040,6, 0x02d060,6, 0x02d080,6, 0x02d100,6, 0x02d120,6, 0x02d140,6, 0x02d160,6, 0x02d180,6, 0x02d200,6, 0x02d220,6, 0x02d240,6, 0x02d260,6, 0x02d280,6, 0x02d300,6, 0x02d320,6, 0x02d340,6, 0x02d360,6, 0x02d380,6, 0x02d400,6, 0x02d420,6, 0x02d440,6, 0x02d460,6, 0x02d480,6, 0x02d500,6, 0x02d520,6, 0x02d540,6, 0x02d560,6, 0x02d580,6, 0x02d600,6, 0x02d620,6, 0x02d640,6, 0x02d660,6, 0x02d680,6, 0x02d700,6, 0x02d720,6, 0x02d740,6, 0x02d760,6, 0x02d780,6, 0x02d800,6, 0x02d820,6, 0x02d840,6, 0x02d860,6, 0x02d880,6, 0x02e000,24, 0x02e080,6, 0x02e0a0,6, 0x02e100,3, 0x02e200,24, 0x02e280,6, 0x02e2a0,6, 0x02e300,3, 0x02e400,24, 0x02e480,6, 0x02e4a0,6, 0x02e500,3, 0x02e600,24, 0x02e680,6, 0x02e6a0,6, 0x02e700,3, 0x02e800,24, 0x02e880,6, 0x02e8a0,6, 0x02e900,3, 0x02f000,1, 0x02f010,1, 0x02f020,1, 0x02f040,1, 0x02f050,1, 0x02f060,1, 0x02f080,1, 0x02f090,1, 0x02f0a0,1, 0x02f0c0,1, 0x02f0d0,1, 0x02f0e0,1, 0x02f100,1, 0x02f110,1, 0x02f120,1, 0x02f140,1, 0x02f150,1, 0x02f160,1, 0x02f180,1, 0x02f190,1, 0x02f1a0,1, 0x02f1c0,1, 0x02f1d0,1, 0x02f1e0,1, 0x02f200,1, 0x02f210,1, 0x02f220,1, 0x02f400,27, 0x02f490,3, 0x02f4a0,3, 0x02f4b0,6, 0x02f4d4,1, 0x02f500,3, 0x02f510,3, 0x02f520,3, 0x02f530,3, 0x02f540,3, 0x02f580,5, 0x02f5c0,8, 0x02f600,7, 0x02f644,5, 0x02f660,3, 0x02f670,1, 0x02f684,1, 0x02f68c,7, 0x030080,1, 0x030090,3, 0x0300a0,3, 0x0300c4,4, 0x030100,194, 0x030420,30, 0x0304a0,2, 0x030504,4, 0x030520,6, 0x030600,4, 0x030680,21, 0x030800,262, 0x030c20,6, 0x030c40,6, 0x030c60,6, 0x030c80,6, 0x030ca0,6, 0x030cc0,6, 0x030ce0,6, 0x030d00,6, 0x030d20,6, 0x030d40,6, 0x030d60,6, 0x030d80,6, 0x030da0,6, 0x030dc0,6, 0x030de0,6, 0x030e00,6, 0x030e20,6, 0x030e40,6, 0x030e60,6, 0x030e80,6, 0x030ea0,6, 0x030ec0,6, 0x030ee0,6, 0x030f00,6, 0x030f20,6, 0x030f40,6, 0x030f60,6, 0x030f80,6, 0x030fa0,6, 0x030fc0,6, 0x030fe0,6, 0x031000,2, 0x031084,1, 0x0310b4,53, 0x031194,5, 0x0311b4,1, 0x0311bc,10, 0x0311e8,4, 0x031204,5, 0x031280,2, 0x031404,5, 0x031440,1, 0x031450,15, 0x031500,64, 0x031804,5, 0x031844,1, 0x031850,4, 0x031864,1, 0x031874,3, 0x031884,1, 0x03188c,1, 0x031894,3, 0x0318c0,4, 0x0318e0,5, 0x031900,9, 0x031a00,4, 0x031a20,60, 0x031b18,2, 0x031b40,16, 0x031c00,2, 0x031c84,1, 0x031cb0,27, 0x031d20,17, 0x031d68,6, 0x032000,3, 0x032010,3, 0x032020,3, 0x032030,3, 0x032040,3, 0x032050,3, 0x032060,3, 0x032070,3, 0x032080,9, 0x032100,3, 0x032110,3, 0x032120,3, 0x032130,3, 0x032140,3, 0x032150,3, 0x032160,3, 0x032170,3, 0x032180,9, 0x032204,1, 0x03227c,35, 0x032400,4, 0x032420,5, 0x032440,1, 0x032500,15, 0x032540,2, 0x032550,3, 0x032560,4, 0x032600,25, 0x032680,1, 0x0326a0,6, 0x032700,4, 0x032740,11, 0x032800,171, 0x032c00,11, 0x032c40,11, 0x032c80,1, 0x032d00,8, 0x033000,19, 0x033a00,10, 0x033a80,3, 0x034000,5, 0x034080,5, 0x034100,5, 0x034180,5, 0x034200,5, 0x034280,5, 0x034300,5, 0x034380,5, 0x034400,5, 0x034480,5, 0x034500,4, 0x034514,3, 0x034524,1, 0x03452c,3, 0x034800,5, 0x034820,5, 0x034840,5, 0x034860,5, 0x034880,5, 0x0348a0,5, 0x0348c0,5, 0x0348e0,5, 0x034900,5, 0x034920,5, 0x034940,5, 0x034960,5, 0x034980,5, 0x0349a0,5, 0x0349c0,5, 0x0349e0,5, 0x034a00,5, 0x034a20,5, 0x034a40,5, 0x034a60,5, 0x034c00,5, 0x034c20,5, 0x034c40,5, 0x034c60,5, 0x034c80,5, 0x034ca0,5, 0x034cc0,5, 0x034ce0,5, 0x034d00,5, 0x034d20,5, 0x034d40,5, 0x034d60,5, 0x034d80,5, 0x034da0,5, 0x034dc0,5, 0x034de0,5, 0x034e00,5, 0x034e20,5, 0x034e40,5, 0x034e60,5, 0x035000,3, 0x035040,3, 0x035080,3, 0x0350c0,3, 0x035100,3, 0x035140,3, 0x035184,6, 0x0351a0,11, 0x0351d0,8, 0x035200,96, 0x036000,14, 0x036040,14, 0x036080,14, 0x0360c0,14, 0x036100,14, 0x036140,14, 0x036180,14, 0x0361c0,14, 0x036200,14, 0x036240,14, 0x036280,14, 0x0362c0,14, 0x036300,14, 0x036340,14, 0x036380,14, 0x0363c0,14, 0x036400,14, 0x036440,14, 0x036480,14, 0x0364c0,14, 0x036500,14, 0x036540,14, 0x036580,14, 0x0365c0,14, 0x036600,14, 0x036640,14, 0x036680,14, 0x0366c0,14, 0x036700,14, 0x036740,14, 0x036780,14, 0x0367c0,14, 0x036800,14, 0x036840,14, 0x036880,14, 0x0368c0,14, 0x036900,14, 0x036940,14, 0x036980,14, 0x0369c0,14, 0x036a00,14, 0x036a40,14, 0x036a80,14, 0x036ac0,14, 0x036b00,14, 0x036b40,14, 0x036b80,14, 0x036bc0,14, 0x036c00,14, 0x036c40,14, 0x036c80,14, 0x036cc0,14, 0x036d00,14, 0x036d40,14, 0x036d80,14, 0x036dc0,14, 0x036e00,14, 0x036e40,14, 0x036e80,14, 0x036ec0,14, 0x036f00,14, 0x036f40,14, 0x036f80,14, 0x036fc0,14, 0x037000,14, 0x037040,14, 0x037080,14, 0x0370c0,14, 0x037100,14, 0x037140,14, 0x037180,14, 0x0371c0,14, 0x037200,14, 0x037240,14, 0x037280,14, 0x0372c0,14, 0x037300,14, 0x037340,14, 0x037380,14, 0x0373c0,14, 0x037400,14, 0x037440,14, 0x037480,14, 0x0374c0,14, 0x037500,14, 0x037540,14, 0x037580,14, 0x0375c0,14, 0x037600,14, 0x037640,14, 0x037680,14, 0x0376c0,14, 0x037700,14, 0x037740,14, 0x037780,14, 0x0377c0,14, 0x038000,65, 0x038110,8, 0x038144,4, 0x038200,3, 0x038240,4, 0x038260,7, 0x038280,1, 0x0382a0,4, 0x0382b4,9, 0x038300,7, 0x038320,7, 0x038340,1, 0x038380,20, 0x038400,192, 0x040000,31, 0x040080,6, 0x0400a8,5, 0x0400c0,24, 0x040140,1, 0x040150,4, 0x040200,35, 0x040400,31, 0x040480,6, 0x0404a8,5, 0x0404c0,24, 0x040540,1, 0x040550,4, 0x040600,35, 0x040800,11, 0x040830,45, 0x0408f0,16, 0x040940,12, 0x040a00,2, 0x040a40,10, 0x040b00,4, 0x040c00,1, 0x040c08,2, 0x040c20,1, 0x040c28,4, 0x041000,2, 0x041080,27, 0x0410f4,1, 0x041100,8, 0x041138,2, 0x041400,2, 0x041480,27, 0x0414f4,1, 0x041500,8, 0x041538,2, 0x041800,8, 0x041824,2, 0x041830,7, 0x042000,7, 0x042020,4, 0x042100,7, 0x042120,4, 0x042200,17, 0x042248,8, 0x04226c,11, 0x042304,1, 0x04230c,4, 0x042320,6, 0x042480,8, 0x042500,2, 0x042514,5, 0x042534,5, 0x042600,2, 0x042610,1, 0x042618,1, 0x042620,1, 0x042640,6, 0x044000,2, 0x044084,1, 0x0440b4,21, 0x044184,1, 0x0441b8,20, 0x044284,1, 0x0442b8,27, 0x044380,35, 0x044410,1, 0x044430,4, 0x044444,3, 0x044454,1, 0x04445c,2, 0x044484,1, 0x0444c0,32, 0x044544,5, 0x044564,5, 0x044580,2, 0x044590,5, 0x044600,1, 0x044608,4, 0x044620,3, 0x044640,1, 0x044648,4, 0x044660,3, 0x044680,5, 0x044700,1, 0x044708,4, 0x044720,3, 0x044730,2, 0x044740,1, 0x044748,4, 0x044760,3, 0x044770,2, 0x044780,5, 0x0447c0,3, 0x0447d0,3, 0x044800,20, 0x044900,4, 0x044a00,2, 0x044a84,1, 0x044ab0,20, 0x044c00,2, 0x044d04,1, 0x044d4c,47, 0x044e84,1, 0x044ebc,24, 0x044f24,4, 0x044f40,3, 0x044f50,6, 0x044f80,2, 0x044f94,1, 0x044f9c,2, 0x045000,2, 0x04500c,3, 0x045044,5, 0x045080,10, 0x045100,2, 0x045110,2, 0x045120,2, 0x045130,2, 0x045140,1, 0x045150,10, 0x047000,6, 0x047020,6, 0x047040,6, 0x047060,2, 0x04706c,2, 0x047080,7, 0x0470a0,7, 0x0470c0,4, 0x0470e0,5, 0x047100,7, 0x047120,6, 0x047140,6, 0x047160,7, 0x047180,7, 0x0471a0,6, 0x0471c0,7, 0x0471e0,3, 0x047200,7, 0x047220,7, 0x047400,5, 0x047420,5, 0x047440,1, 0x047480,5, 0x0474a0,5, 0x0474c0,5, 0x047500,3, 0x047510,3, 0x047520,1, 0x047540,3, 0x047550,3, 0x047560,1, 0x047580,7, 0x0475a0,7, 0x0475c0,1, 0x048000,8, 0x048040,1, 0x048048,2, 0x048060,1, 0x048068,4, 0x048080,2, 0x0480a4,1, 0x0480b4,7, 0x048240,24, 0x048300,25, 0x048380,1, 0x0483a0,6, 0x048400,75, 0x048600,1, 0x048608,4, 0x048620,1, 0x048628,4, 0x048800,2, 0x048880,3, 0x048890,3, 0x0488a0,3, 0x0488b0,3, 0x0488c0,2, 0x048a44,5, 0x048a80,6, 0x048aa0,3, 0x048ab0,3, 0x048ad0,4, 0x048c04,4, 0x048c20,3, 0x048c30,1, 0x048c80,13, 0x048cc0,5, 0x049000,35, 0x049a00,10, 0x049a80,3, 0x04a000,10, 0x04a034,3, 0x04a100,256, 0x04a800,5, 0x04a824,3, 0x04a880,128, 0x04ac00,5, 0x04ac24,3, 0x04ac80,128, 0x04b004,1, 0x04b00c,8, 0x04b030,1, 0x04b038,2, 0x04b100,9, 0x04b140,9, 0x04b200,8, 0x04b240,8, 0x050000,35, 0x050090,3, 0x050100,35, 0x050190,3, 0x050200,35, 0x050290,3, 0x050300,35, 0x050390,3, 0x050400,35, 0x050490,3, 0x050500,35, 0x050590,3, 0x050600,35, 0x050690,3, 0x050700,35, 0x050790,3, 0x050800,35, 0x050890,3, 0x050900,1, 0x051000,4, 0x051084,1, 0x0510c0,16, 0x051180,1, 0x0511c0,2, 0x0511e4,1, 0x0511f0,6, 0x051224,1, 0x051230,6, 0x051264,1, 0x051270,6, 0x0512a4,1, 0x0512b0,6, 0x0512e4,1, 0x0512f0,5, 0x051308,1, 0x051400,2, 0x051410,2, 0x051424,2, 0x051444,3, 0x051500,11, 0x051540,11, 0x051584,1, 0x0515c0,26, 0x051630,2, 0x051644,3, 0x051654,1, 0x05165c,2, 0x051680,2, 0x051694,2, 0x0516a4,1, 0x0516ac,3, 0x0516c0,3, 0x051700,8, 0x051740,8, 0x051780,1, 0x051788,2, 0x0517a0,1, 0x0517a8,4, 0x051800,2, 0x05180c,3, 0x05181c,3, 0x05182c,3, 0x05183c,3, 0x05184c,3, 0x05185c,3, 0x05186c,3, 0x05187c,3, 0x05188c,3, 0x05189c,1, 0x051980,3, 0x051c04,1, 0x051c40,16, 0x051d00,22, 0x051e04,1, 0x051e14,5, 0x051e34,1, 0x051e3c,3, 0x051f00,4, 0x052000,35, 0x052100,25, 0x052180,1, 0x0521a0,6, 0x052200,7, 0x052220,6, 0x052240,7, 0x052260,6, 0x054000,9, 0x054080,19, 0x054100,4, 0x054180,30, 0x054200,4, 0x054300,35, 0x054400,2, 0x054484,1, 0x0544b4,19, 0x054600,4, 0x054644,1, 0x054650,12, 0x054800,13, 0x054880,1, 0x054888,8, 0x0548c0,6, 0x0548e0,1, 0x0548e8,2, 0x054904,1, 0x054a00,17, 0x054a80,17, 0x054b00,1, 0x054c00,6, 0x054c20,6, 0x054c40,1, 0x054c80,1, 0x055000,1, 0x055008,14, 0x055048,2, 0x055058,2, 0x060000,8, 0x060100,4, 0x060120,1, 0x060128,4, 0x060140,7, 0x060160,9, 0x060188,4, 0x0601a0,4, 0x0601b8,6, 0x0601d8,2, 0x060200,1, 0x060240,7, 0x06027c,1, 0x060284,1, 0x06028c,1, 0x060294,1, 0x06029c,1, 0x060304,5, 0x060324,4, 0x060340,1, 0x060350,7, 0x060380,2, 0x060390,1, 0x0603b4,3, 0x060800,12, 0x060838,3, 0x060860,8, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,3, 0x060a94,1, 0x060a9c,5, 0x060ac4,1, 0x060ae4,7, 0x060b04,1, 0x060b14,13, 0x060b4c,4, 0x060bf0,12, 0x060c24,1, 0x060c2c,1, 0x060c34,1, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062074,1, 0x06207c,7, 0x0620a0,1, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e0,3, 0x0621f0,3, 0x062200,1, 0x062208,4, 0x062404,5, 0x062440,7, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,8, 0x062908,1, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,4, 0x063000,1, 0x063010,4, 0x063024,3, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,4, 0x0630c4,1, 0x0630cc,1, 0x0630d4,3, 0x0630e4,3, 0x063100,1, 0x063124,3, 0x063140,3, 0x063150,1, 0x063164,3, 0x063180,8, 0x0631bc,4, 0x0631d0,1, 0x0631e0,1, 0x0631e8,4, 0x063208,1, 0x063210,1, 0x063218,16, 0x063260,6, 0x063280,7, 0x0632a0,6, 0x0632c0,1, 0x0632c8,4, 0x0632e0,2, 0x0632f4,1, 0x0632fc,10, 0x064004,5, 0x064020,1, 0x064028,4, 0x064100,3, 0x0642c0,2, 0x0642e4,1, 0x0642f4,9, 0x064320,6, 0x064340,6, 0x064380,4, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,5, 0x064440,1, 0x064464,3, 0x064500,2, 0x064584,1, 0x0645b8,18, 0x064804,1, 0x064880,2, 0x0648c4,15, 0x065020,6, 0x065040,2, 0x065078,2, 0x065114,1, 0x065200,43, 0x065300,1, 0x065400,25, 0x065480,1, 0x0654a0,6, 0x065f00,2, 0x066000,9, 0x066440,3, 0x066450,3, 0x067000,19, 0x067a00,10, 0x067a80,3, 0x070004,5, 0x070020,6, 0x070040,2, 0x07004c,2, 0x070104,1, 0x07010c,1, 0x0703e0,8, 0x070410,25, 0x070480,5, 0x070500,3, 0x070510,1, 0x07051c,1, 0x070524,4, 0x070540,4, 0x070560,5, 0x070580,2, 0x070700,32, 0x070800,6, 0x070820,6, 0x070840,6, 0x070860,6, 0x070880,6, 0x0708a0,6, 0x0708c0,6, 0x0708e0,6, 0x070900,6, 0x070920,6, 0x070940,6, 0x070960,6, 0x070980,6, 0x0709a0,6, 0x0709c0,6, 0x0709e0,6, 0x070a00,6, 0x070a20,6, 0x070a40,6, 0x070a60,6, 0x070a80,6, 0x070aa0,6, 0x070ac0,6, 0x070ae0,6, 0x070b00,6, 0x070b20,6, 0x070b40,6, 0x070b60,6, 0x070b80,6, 0x070ba0,6, 0x070bc0,6, 0x070be0,6, 0x070c00,4, 0x070c30,2, 0x070d00,2, 0x070d84,1, 0x070da0,24, 0x070e04,1, 0x070e40,22, 0x070ea0,6, 0x070ec0,2, 0x070ecc,3, 0x070ee0,2, 0x070eec,2, 0x071000,2, 0x071094,1, 0x071100,2, 0x071184,1, 0x0711c0,16, 0x071204,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071444,1, 0x07144c,1, 0x071454,1, 0x07145c,2, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,6, 0x072020,2, 0x07202c,2, 0x072040,4, 0x072804,5, 0x072880,2, 0x0728a0,6, 0x0728c0,2, 0x0728cc,2, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,8, 0x07383c,1, 0x074800,6, 0x074820,6, 0x074840,2, 0x074880,19, 0x074900,25, 0x074980,1, 0x0749a0,6, 0x074a00,4, 0x074b00,9, 0x075000,5, 0x075020,3, 0x075100,4, 0x075120,7, 0x075200,1, 0x075208,4, 0x076000,35, 0x076a00,10, 0x076a80,3, 0x078000,1, 0x078008,18, 0x078054,9, 0x07807c,3, 0x07808c,12, 0x0780c0,1, 0x0780d0,17, 0x078118,4, 0x078130,2, 0x078140,1, 0x078300,7, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,2, 0x0783e8,2, 0x078404,4, 0x078600,2, 0x078684,1, 0x0786c0,18, 0x078784,1, 0x0787c0,35, 0x078850,4, 0x078884,1, 0x07889c,25, 0x079000,2, 0x079084,1, 0x0790b0,22, 0x079184,1, 0x0791c4,21, 0x079220,7, 0x079240,1, 0x079400,56, 0x079500,11, 0x079600,2, 0x079624,9, 0x079664,9, 0x0796a4,8, 0x0796d0,6, 0x0796f0,4, 0x079704,3, 0x079720,1, 0x079804,4, 0x079900,2, 0x079984,1, 0x0799bc,19, 0x079a24,1, 0x079a34,3, 0x079a80,2, 0x079ac4,1, 0x079ae0,15, 0x079b20,7, 0x079b60,2, 0x079b6c,1, 0x079b74,1, 0x079b7c,3, 0x079b8c,1, 0x079c00,2, 0x079c84,1, 0x079cbc,42, 0x079d80,1, 0x079da0,6, 0x079e00,17, 0x079e48,4, 0x079e60,2, 0x079e78,2, 0x079fa0,3, 0x079fb0,1, 0x079fc0,3, 0x07a000,4, 0x07a100,34, 0x07a200,4, 0x07a280,17, 0x07a300,4, 0x07a380,30, 0x07a400,11, 0x07a440,4, 0x07a800,2, 0x07a884,1, 0x07a8b4,19, 0x07a984,1, 0x07a990,6, 0x07aa00,10, 0x07ac00,25, 0x07ac80,1, 0x07ac88,8, 0x07acc0,6, 0x07ace0,1, 0x07ace8,2, 0x07ad04,3, 0x07ae00,2, 0x07b000,4, 0x07b080,25, 0x07b100,1, 0x07b200,1, 0x07b210,5, 0x07b230,5, 0x07b250,6, 0x07b300,43, 0x07b400,1, 0x07c000,3, 0x07c010,3, 0x07c020,3, 0x07c040,16, 0x07c090,3, 0x07c0a0,3, 0x07c0c0,6, 0x07c0e0,4, 0x07c100,10, 0x07c140,4, 0x07c154,1, 0x07c160,1, 0x07c170,2, 0x07c180,17, 0x07c200,4, 0x07c214,6, 0x07c230,10, 0x07c280,5, 0x07c2a0,1, 0x07c2a8,1, 0x07c300,14, 0x07c340,14, 0x07c380,78, 0x07c4c0,5, 0x07c500,32, 0x07c604,4, 0x07c700,3, 0x07c800,15, 0x07c880,14, 0x07c8c0,5, 0x07c8e0,6, 0x07c900,1, 0x07c910,5, 0x07c930,5, 0x07c950,5, 0x07c970,4, 0x07c9a4,3, 0x07c9c0,1, 0x07c9c8,4, 0x07c9e0,1, 0x07ca00,34, 0x07cb00,20, 0x07cb80,1, 0x07cb90,3, 0x07cbf0,1, 0x07cbf8,9, 0x07cc20,7, 0x07cc40,7, 0x07cc60,7, 0x07cc80,1, 0x07cd00,3, 0x07cd10,1, 0x07cd18,1, 0x07cd20,1, 0x07cd30,2, 0x07cd40,1, 0x07cd48,4, 0x07cd60,3, 0x07cd70,3, 0x07cd84,2, 0x07cd90,6, 0x07cdb4,1, 0x07cdbc,1, 0x07cdc4,1, 0x07cdd0,4, 0x07d000,2, 0x07d084,1, 0x07d0bc,19, 0x07d184,1, 0x07d1b0,22, 0x07d244,1, 0x07d25c,9, 0x07d400,1, 0x07d408,4, 0x07d420,1, 0x07d428,4, 0x07d458,2, 0x07d480,4, 0x07d4c0,19, 0x07d510,6, 0x07d600,5, 0x07d61c,2, 0x07d640,9, 0x07d680,1, 0x07d690,4, 0x07d6a4,4, 0x07d800,2, 0x07d844,1, 0x07d860,8, 0x07d884,1, 0x07d894,28, 0x07d920,1, 0x07d930,5, 0x07d948,2, 0x07dc04,1, 0x07dc10,12, 0x07dc44,1, 0x07dc50,12, 0x07dc84,1, 0x07dc90,12, 0x07dcc4,1, 0x07dcd0,12, 0x07dd80,14, 0x07df80,1, 0x07df90,4, 0x07dfa8,3, 0x07dfc0,1, 0x07dfe8,2, 0x07e000,68, 0x07e200,6, 0x07e220,1, 0x07e240,2, 0x07e24c,2, 0x07e260,11, 0x07e290,10, 0x07e2c0,1, 0x07e2e0,1, 0x07e2f0,7, 0x07e310,10, 0x07e344,1, 0x07e35c,28, 0x07e400,25, 0x07e480,1, 0x07e488,8, 0x07e4c0,6, 0x07e4e0,1, 0x07e4e8,2, 0x07e504,13, 0x07e600,2, 0x07e620,8, 0x07e700,7, 0x07e800,2, 0x07e80c,2, 0x07e820,2, 0x07e82c,2, 0x07e900,2, 0x07e910,2, 0x07eb00,2, 0x07ec00,2, 0x07ec84,1, 0x07ecb4,19, 0x07ed04,1, 0x07ed0c,7, 0x07ed84,1, 0x07ed9c,11, 0x07ee00,4, 0x07ee44,1, 0x07ee50,12, 0x07f000,2, 0x07f084,1, 0x07f0bc,18, 0x07f108,4, 0x07f120,5, 0x07f140,3, 0x07f150,2, 0x07f800,3, 0x07f820,8, 0x07f844,1, 0x07f850,14, 0x07f900,1, 0x07f920,5, 0x07f940,2, 0x07f954,1, 0x07f95c,3, 0x07f980,1, 0x07f988,5, 0x07f9a0,3, 0x07f9b0,3, 0x07f9c0,1, 0x07f9c8,4, 0x07f9e0,4, 0x07fa00,2, 0x07fa20,3, 0x080000,30, 0x080300,15, 0x080340,6, 0x080360,6, 0x08037c,3, 0x08038c,3, 0x0803c0,2, 0x0803e0,3, 0x0803f0,3, 0x080404,5, 0x080804,1, 0x080874,36, 0x080a00,2, 0x080b04,1, 0x080b74,37, 0x080c14,5, 0x080c34,5, 0x080c64,1, 0x080c6c,7, 0x080ca4,1, 0x080cac,7, 0x080ce4,1, 0x080cec,5, 0x081200,1, 0x081210,4, 0x081224,6, 0x081240,2, 0x081254,5, 0x081280,2, 0x081294,3, 0x0812a4,1, 0x0812b0,9, 0x0812fc,3, 0x08130c,1, 0x081344,3, 0x081360,4, 0x081520,1, 0x081528,15, 0x08156c,6, 0x08158c,1, 0x0815c0,5, 0x0815e0,5, 0x081600,5, 0x081620,5, 0x081640,5, 0x081660,5, 0x081680,5, 0x0816a0,5, 0x0816c0,5, 0x0816e4,3, 0x081704,4, 0x08171c,15, 0x081800,2, 0x081824,1, 0x081830,9, 0x081860,3, 0x081870,1, 0x081c00,5, 0x081c20,5, 0x081c40,5, 0x081c60,5, 0x081c80,5, 0x081ca0,5, 0x081cc0,5, 0x081ce0,5, 0x081d00,5, 0x081d20,5, 0x081d40,5, 0x081d60,5, 0x081d80,5, 0x081da0,5, 0x081dc0,5, 0x081de0,5, 0x081e00,5, 0x081e20,5, 0x081e40,5, 0x081e60,5, 0x081e80,5, 0x081ea0,5, 0x081ec0,5, 0x081ee0,5, 0x081f00,5, 0x081f20,5, 0x081f40,5, 0x081f60,5, 0x081f80,5, 0x081fa0,5, 0x081fc0,5, 0x081fe0,5, 0x082000,30, 0x082300,15, 0x082340,6, 0x082360,6, 0x08237c,3, 0x08238c,3, 0x0823c0,2, 0x0823e0,3, 0x0823f0,3, 0x082404,4, 0x082804,1, 0x082874,35, 0x082904,1, 0x082974,37, 0x082a24,1, 0x082a2c,7, 0x082a64,1, 0x082a6c,7, 0x082ac4,1, 0x082ad8,12, 0x082b24,1, 0x082b2c,5, 0x082f00,2, 0x083200,1, 0x083210,7, 0x083240,5, 0x083260,2, 0x08326c,1, 0x083274,3, 0x083284,3, 0x0832a4,1, 0x0832b0,9, 0x0832fc,5, 0x083340,1, 0x083348,16, 0x0833a4,1, 0x0833b0,4, 0x083400,5, 0x083420,5, 0x083440,5, 0x083460,5, 0x083480,5, 0x0834a0,5, 0x0834c0,5, 0x0834e0,5, 0x083500,5, 0x083520,5, 0x083540,5, 0x083560,5, 0x083580,5, 0x0835a0,5, 0x0835c0,5, 0x0835e0,5, 0x083600,5, 0x083620,5, 0x083640,5, 0x083660,5, 0x083680,5, 0x0836a0,5, 0x0836c0,5, 0x0836e0,5, 0x083700,5, 0x083720,5, 0x083740,5, 0x083760,5, 0x083780,5, 0x0837a0,5, 0x0837c0,5, 0x0837e0,5, 0x084000,30, 0x084300,15, 0x084340,6, 0x084360,6, 0x08437c,3, 0x08438c,3, 0x0843c0,2, 0x0843e0,3, 0x0843f0,3, 0x084404,4, 0x084804,1, 0x084874,35, 0x084904,1, 0x084974,37, 0x084a24,1, 0x084a30,6, 0x084a54,5, 0x084a74,5, 0x084a94,3, 0x084ac0,2, 0x084ae4,1, 0x084af0,6, 0x084b14,3, 0x084f00,2, 0x085000,2, 0x085044,1, 0x085064,13, 0x085200,1, 0x085210,4, 0x085224,3, 0x085280,8, 0x0852a4,1, 0x0852b0,8, 0x085304,3, 0x085320,2, 0x0853c0,5, 0x0853fc,2, 0x085408,7, 0x085470,3, 0x085600,70, 0x085720,6, 0x085800,5, 0x085820,5, 0x085840,5, 0x085860,5, 0x085880,5, 0x0858a0,5, 0x0858c0,5, 0x0858e0,5, 0x085c00,4, 0x086000,2, 0x086020,2, 0x086044,3, 0x086054,1, 0x086080,2, 0x086400,13, 0x086440,13, 0x086800,75, 0x086a80,4, 0x086c00,22, 0x086c60,7, 0x086c80,7, 0x086ca0,6, 0x086cc0,6, 0x086ce0,7, 0x086d00,6, 0x086d20,6, 0x086d40,6, 0x086d60,7, 0x086d80,1, 0x086e00,25, 0x086e80,1, 0x086ea0,6, 0x086f00,1, 0x086f08,4, 0x086f20,1, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b8,7, 0x0871e0,6, 0x087208,6, 0x087800,8, 0x087840,4, 0x087860,4, 0x087880,8, 0x087900,5, 0x088000,19, 0x090204,1, 0x090224,23, 0x090500,19, 0x090580,7, 0x0905a0,2, 0x0905b4,5, 0x0905e0,1, 0x0905e8,4, 0x090800,45, 0x0908b8,4, 0x0908d0,2, 0x090a04,1, 0x090a40,25, 0x090aa8,2, 0x090ac0,9, 0x090ae8,2, 0x090c20,10, 0x090c50,3, 0x090c60,3, 0x090c70,3, 0x090c80,4, 0x090ca0,5, 0x090cc0,32, 0x090e20,10, 0x090e50,3, 0x090e60,3, 0x090e70,3, 0x090e80,4, 0x090ea0,5, 0x090ec0,32, 0x091004,3, 0x091800,11, 0x091840,22, 0x0918a0,8, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,3, 0x093210,2, 0x093404,1, 0x093440,16, 0x093600,1, 0x093608,4, 0x093804,1, 0x09383c,29, 0x0938b8,2, 0x0938c8,1, 0x0938d0,10, 0x094080,3, 0x0940c0,1, 0x0940c8,4, 0x094100,25, 0x094180,1, 0x0941a0,6, 0x094200,4, 0x094220,6, 0x094300,3, 0x094324,4, 0x094344,12, 0x094378,4, 0x0943a0,8, 0x095000,19, 0x095a00,10, 0x095a80,3, 0x096000,1, 0x096010,4, 0x096024,1, 0x09602c,4, 0x096104,1, 0x09610c,7, 0x096204,4, 0x096488,1, 0x096498,4, 0x0964b0,4, 0x096504,4, 0x096584,4, 0x096700,34, 0x096800,11, 0x096840,4, 0x096884,3, 0x0968a0,6, 0x0968c0,6, 0x0968e0,6, 0x096900,6, 0x096920,6, 0x096940,6, 0x097100,8, 0x097140,1, 0x097200,18, 0x097254,7, 0x097274,6, 0x097300,2, 0x097384,1, 0x0973bc,17, 0x098000,3, 0x099000,19, 0x09a000,11, 0x09a040,2, 0x09a060,6, 0x09a080,7, 0x09a104,1, 0x09a164,40, 0x09a208,2, 0x09a224,3, 0x09a240,1, 0x09a250,4, 0x09a264,6, 0x09a280,20, 0x09a300,25, 0x09a380,1, 0x09a3a0,6, 0x09a400,1, 0x09a408,4, 0x09a420,2, 0x09a460,1, 0x09a468,10, 0x09a500,3, 0x09a510,2, 0x09a524,3, 0x09a600,2, 0x09a680,1, 0x09a6c0,2, 0x09a6d4,6, 0x09a6f0,1, 0x09a6f8,2, 0x09a800,1, 0x09a820,3, 0x09a830,4, 0x09aa00,92, 0x09ac00,2, 0x09b000,67, 0x09b800,260, 0x0a1000,70, 0x0a1120,32, 0x0a1244,4, 0x0a1260,9, 0x0a1288,6, 0x0a12a4,3, 0x0a12bc,3, 0x0a12e4,1, 0x0a12ec,8, 0x0a1310,3, 0x0a1324,6, 0x0a135c,5, 0x0a13b4,1, 0x0a13bc,2, 0x0a13e0,10, 0x0a1414,1, 0x0a141c,3, 0x0a1430,18, 0x0a147c,8, 0x0a14c0,1, 0x0a14c8,4, 0x0a14e0,1, 0x0a14e8,2, 0x0a1500,4, 0x0a1520,6, 0x0a1580,3, 0x0a1590,3, 0x0a15a0,3, 0x0a15b0,3, 0x0a15c0,3, 0x0a15d0,3, 0x0a15e0,3, 0x0a15f0,3, 0x0a1600,5, 0x0a1620,5, 0x0a1640,5, 0x0a1660,5, 0x0a1680,5, 0x0a16a0,5, 0x0a16c0,3, 0x0a1800,2, 0x0a1844,1, 0x0a1850,14, 0x0a18c4,1, 0x0a18d0,15, 0x0a1910,2, 0x0a1920,2, 0x0a192c,4, 0x0a1940,1, 0x0a1948,2, 0x0a1960,6, 0x0a1980,2, 0x0a19c4,1, 0x0a19d0,22, 0x0a1a40,10, 0x0a1a80,10, 0x0a1ac0,10, 0x0a1b00,10, 0x0a1c00,2, 0x0a1c44,1, 0x0a1c50,12, 0x0a2004,5, 0x0a2020,6, 0x0a2040,6, 0x0a2400,2, 0x0a240c,9, 0x0a2440,1, 0x0a2450,4, 0x0a2464,6, 0x0a2480,1, 0x0a24a0,8, 0x0a24d0,10, 0x0a2500,5, 0x0a2520,5, 0x0a2540,5, 0x0a2560,5, 0x0a2580,4, 0x0a25ac,5, 0x0a2804,5, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c64,6, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,5, 0x0a3040,2, 0x0a3060,3, 0x0a3070,3, 0x0a31fc,10, 0x0a3230,2, 0x0a323c,4, 0x0a3250,2, 0x0a3260,1, 0x0a3270,6, 0x0a32a0,6, 0x0a3300,1, 0x0a3310,6, 0x0a3a90,1, 0x0a3aa0,1, 0x0a3aa8,4, 0x0a3ac0,5, 0x0a3ae0,5, 0x0a3b00,64, 0x0a3c04,1, 0x0a3c84,42, 0x0a3d3c,1, 0x0a4100,1, 0x0a4108,4, 0x0a4120,1, 0x0a4140,8, 0x0a4200,1, 0x0a4208,5, 0x0a4220,2, 0x0a422c,7, 0x0a4264,1, 0x0a4270,6, 0x0a42c4,1, 0x0a42d8,16, 0x0a4400,51, 0x0a44d8,5, 0x0a44f0,3, 0x0a4500,5, 0x0a451c,2, 0x0a4528,4, 0x0a4540,1, 0x0a4560,1, 0x0a4804,4, 0x0a4840,2, 0x0a4860,10, 0x0a488c,2, 0x0a48a0,6, 0x0a48c0,2, 0x0a48cc,2, 0x0a48e0,6, 0x0a4c00,6, 0x0a4c1c,1, 0x0a4c50,8, 0x0a4c78,25, 0x0a4d00,2, 0x0a4d84,1, 0x0a4dc0,16, 0x0a4e04,3, 0x0a4e20,6, 0x0a5000,26, 0x0a5080,6, 0x0a6000,4, 0x0a6020,10, 0x0a604c,2, 0x0a6060,1, 0x0a6068,4, 0x0a6080,10, 0x0a60b8,1, 0x0a60c0,4, 0x0a6100,25, 0x0a6180,1, 0x0a61a0,6, 0x0a6400,75, 0x0a6680,6, 0x0a66a0,2, 0x0a66c0,7, 0x0a7000,35, 0x0a7a00,10, 0x0a7a80,3, 0x0a8000,3, 0x0a8010,10, 0x0a8040,9, 0x0a8070,14, 0x0a80ac,1, 0x0a80b4,13, 0x0a80ec,6, 0x0a8108,4, 0x0a8120,1, 0x0a8128,4, 0x0a8140,8, 0x0a8204,14, 0x0a8240,2, 0x0a8254,1, 0x0a825c,3, 0x0a8274,1, 0x0a827c,1, 0x0a8400,3, 0x0a8410,2, 0x0a841c,4, 0x0a8440,9, 0x0a8470,20, 0x0a8504,5, 0x0a8604,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,8, 0x0a89a4,1, 0x0a89ac,4, 0x0a89c0,1, 0x0a8a00,2, 0x0a8a0c,4, 0x0a8a20,2, 0x0a8a34,1, 0x0a8a3c,17, 0x0a8aa4,3, 0x0a8ac0,4, 0x0a8ad4,1, 0x0a8ae8,5, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,4, 0x0a9000,21, 0x0a9058,3, 0x0a9080,7, 0x0a90a0,2, 0x0a9100,11, 0x0a9140,9, 0x0a9170,3, 0x0a9200,38, 0x0a92a4,1, 0x0a92b4,3, 0x0a9300,42, 0x0a9400,38, 0x0a949c,9, 0x0a9500,4, 0x0a9518,4, 0x0a9534,1, 0x0a9540,24, 0x0a9804,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,4, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d44,6, 0x0a9d80,1, 0x0a9dc0,3, 0x0a9dd0,3, 0x0a9de0,3, 0x0a9df0,3, 0x0a9e00,1, 0x0a9e20,8, 0x0a9e44,6, 0x0a9e80,1, 0x0a9ea0,8, 0x0a9ec4,6, 0x0a9f44,1, 0x0a9f54,2, 0x0a9f60,8, 0x0aa000,13, 0x0aa040,17, 0x0aa088,4, 0x0aa100,25, 0x0aa180,1, 0x0aa1a0,6, 0x0aa204,4, 0x0aa400,48, 0x0aa500,12, 0x0aa540,3, 0x0b0000,89, 0x0b0180,1, 0x0b01a0,6, 0x0b0204,4, 0x0b0218,1, 0x0b0220,6, 0x0b0240,1, 0x0b0248,2, 0x0b0400,89, 0x0b0580,1, 0x0b05a0,6, 0x0b0604,4, 0x0b0618,1, 0x0b0620,6, 0x0b0640,1, 0x0b0648,2, 0x0b0800,89, 0x0b0980,1, 0x0b09a0,6, 0x0b0a04,4, 0x0b0a18,1, 0x0b0a20,6, 0x0b0a40,1, 0x0b0a48,2, 0x0b0c00,89, 0x0b0d80,1, 0x0b0da0,6, 0x0b0e04,4, 0x0b0e18,1, 0x0b0e20,6, 0x0b0e40,1, 0x0b0e48,2, 0x0b1000,89, 0x0b1180,1, 0x0b11a0,6, 0x0b1204,4, 0x0b1218,1, 0x0b1220,6, 0x0b1240,1, 0x0b1248,2, 0x0b1400,89, 0x0b1580,1, 0x0b15a0,6, 0x0b1604,4, 0x0b1618,1, 0x0b1620,6, 0x0b1640,1, 0x0b1648,2, 0x0b1800,89, 0x0b1980,1, 0x0b19a0,6, 0x0b1a04,4, 0x0b1a18,1, 0x0b1a20,6, 0x0b1a40,1, 0x0b1a48,2, 0x0b1c00,89, 0x0b1d80,1, 0x0b1da0,6, 0x0b1e04,4, 0x0b1e18,1, 0x0b1e20,6, 0x0b1e40,1, 0x0b1e48,2, 0x0b2000,88, 0x0b2180,35, 0x0b4000,195, 0x0b4310,3, 0x0b4320,3, 0x0b4340,5, 0x0b4364,31, 0x0b4400,9, 0x0b4480,32, 0x0b4804,4, 0x0b4900,1, 0x0b4940,3, 0x0b4950,3, 0x0b4960,3, 0x0b4970,3, 0x0b4980,1, 0x0b49c0,3, 0x0b49d0,3, 0x0b49e0,3, 0x0b49f0,3, 0x0b4a04,4, 0x0b4a24,4, 0x0b4a44,3, 0x0b4b00,25, 0x0b4b80,1, 0x0b4ba0,6, 0x0b4c00,96, 0x0b4e04,1, 0x0b4e10,3, 0x0b4e20,3, 0x0b4e40,3, 0x0b4e50,3, 0x0b4e60,3, 0x0b4e70,2, 0x0b4e80,8, 0x0b4ea8,4, 0x0b4ec0,7, 0x0b4ee0,7, 0x0b4f00,7, 0x0b4f20,1, 0x0b4f28,4, 0x0b5000,7, 0x0b5040,6, 0x0b5080,6, 0x0b5100,6, 0x0b5140,6, 0x0b5180,6, 0x0b51c0,6, 0x0b5200,7, 0x0b5240,1, 0x0b5260,6, 0x0b5800,99, 0x0b5a00,4, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5da0,1, 0x0b5da8,4, 0x0b5dc0,28, 0x0b5e40,12, 0x0b5e80,8, 0x0b5f00,14, 0x0b5f40,2, 0x0b6000,16, 0x0b6080,22, 0x0b6200,40, 0x0b62a8,2, 0x0b6300,24, 0x0b6364,1, 0x0b6400,20, 0x0b6454,1, 0x0b6500,12, 0x0b6534,1, 0x0b6600,52, 0x0b66d8,2, 0x0b6700,12, 0x0b6734,1, 0x0b6800,32, 0x0b6884,1, 0x0b6900,14, 0x0b693c,1, 0x0b6a00,8, 0x0b6a24,1, 0x0b6b00,11, 0x0b6b30,2, 0x0b6b3c,1, 0x0b6c00,30, 0x0b6c7c,1, 0x0b6d00,12, 0x0b6d34,1, 0x0b6e00,45, 0x0b6eb8,4, 0x0b6ed0,2, 0x0b6f00,20, 0x0b6f54,1, 0x0b7000,8, 0x0b7024,1, 0x0b7100,6, 0x0b711c,1, 0x0b7200,8, 0x0b7224,1, 0x0b7300,8, 0x0b7324,1, 0x0b7500,25, 0x0b7580,1, 0x0b75a0,6, 0x0b7600,6, 0x0b7620,6, 0x0b7640,6, 0x0b7660,6, 0x0b7680,6, 0x0b76a0,6, 0x0b76c0,6, 0x0b76e0,6, 0x0b7700,6, 0x0b7720,6, 0x0b7740,6, 0x0b8000,35, 0x0b8a00,10, 0x0b8a80,3, 0x0c0000,37, 0x0c0104,1, 0x0c0140,16, 0x0c0184,7, 0x0c01b4,4, 0x0c01c8,10, 0x0c0400,9, 0x0c0440,9, 0x0c0480,9, 0x0c04c0,9, 0x0c0500,9, 0x0c0540,9, 0x0c0580,9, 0x0c05c0,9, 0x0c0604,4, 0x0c0620,1, 0x0c0630,5, 0x0c0650,5, 0x0c0670,1, 0x0c0680,1, 0x0c0690,1, 0x0c06a0,6, 0x0c06c8,1, 0x0c06e0,15, 0x0c0720,7, 0x0c0740,1, 0x0c0780,2, 0x0c078c,2, 0x0c07a0,2, 0x0c07ac,3, 0x0c07c0,3, 0x0c07d0,3, 0x0c0800,1, 0x0c0810,1, 0x0c0844,1, 0x0c0854,4, 0x0c0880,10, 0x0c0900,11, 0x0c0940,11, 0x0c0980,5, 0x0c0c00,1, 0x0c0c10,4, 0x0c0c24,6, 0x0c0c40,1, 0x0c0c50,5, 0x0c0c70,5, 0x0c0c90,4, 0x0c0d04,4, 0x0c0d20,1, 0x0c0d30,1, 0x0c0d40,9, 0x0c0d80,12, 0x0c0e00,22, 0x0c0e80,4, 0x0c0f00,6, 0x0c0f20,6, 0x0c0f40,1, 0x0c0f80,9, 0x0c1000,1, 0x0c1010,4, 0x0c1024,6, 0x0c1040,1, 0x0c1050,5, 0x0c1070,5, 0x0c1090,4, 0x0c1104,4, 0x0c1120,1, 0x0c1130,1, 0x0c1140,9, 0x0c1180,12, 0x0c1200,22, 0x0c1280,4, 0x0c1300,6, 0x0c1320,6, 0x0c1340,1, 0x0c1380,9, 0x0c2000,32, 0x0c2100,48, 0x0c2400,3, 0x0c2410,3, 0x0c2440,11, 0x0c2480,3, 0x0c2490,3, 0x0c24c0,11, 0x0c2500,3, 0x0c2510,3, 0x0c2540,11, 0x0c2580,3, 0x0c2590,3, 0x0c25c0,11, 0x0c2600,3, 0x0c2610,3, 0x0c2640,11, 0x0c2680,3, 0x0c2690,3, 0x0c26c0,11, 0x0c2700,3, 0x0c2710,3, 0x0c2740,11, 0x0c2780,3, 0x0c2790,3, 0x0c27c0,11, 0x0c2800,2, 0x0c280c,2, 0x0c2818,18, 0x0c2900,1, 0x0c2908,11, 0x0c2a00,21, 0x0c2a60,5, 0x0c3000,3, 0x0c3024,1, 0x0c302c,5, 0x0c3100,3, 0x0c3110,2, 0x0c3128,2, 0x0c3180,1, 0x0c3188,4, 0x0c31a0,2, 0x0c3200,6, 0x0c3220,6, 0x0c3240,2, 0x0c3300,9, 0x0c3380,6, 0x0c33a0,6, 0x0c33c0,1, 0x0c3400,25, 0x0c3480,1, 0x0c34a0,6, 0x0c3500,35, 0x0c4000,35, 0x0c4a00,10, 0x0c4a80,3, 0x0c4ac0,1, 0x0c8000,37, 0x0c8104,1, 0x0c8140,16, 0x0c8184,7, 0x0c81b4,4, 0x0c81c8,10, 0x0c8400,9, 0x0c8440,9, 0x0c8480,9, 0x0c84c0,9, 0x0c8500,9, 0x0c8540,9, 0x0c8580,9, 0x0c85c0,9, 0x0c8604,4, 0x0c8620,1, 0x0c8630,5, 0x0c8650,5, 0x0c8670,1, 0x0c8680,1, 0x0c8690,1, 0x0c86a0,6, 0x0c86c8,1, 0x0c86e0,15, 0x0c8720,7, 0x0c8740,1, 0x0c8780,2, 0x0c878c,2, 0x0c87a0,2, 0x0c87ac,3, 0x0c87c0,3, 0x0c87d0,3, 0x0c8800,1, 0x0c8810,1, 0x0c8844,1, 0x0c8854,4, 0x0c8880,10, 0x0c8900,11, 0x0c8940,11, 0x0c8980,5, 0x0c8c00,1, 0x0c8c10,4, 0x0c8c24,6, 0x0c8c40,1, 0x0c8c50,5, 0x0c8c70,5, 0x0c8c90,4, 0x0c8d04,4, 0x0c8d20,1, 0x0c8d30,1, 0x0c8d40,9, 0x0c8d80,12, 0x0c8e00,22, 0x0c8e80,4, 0x0c8f00,6, 0x0c8f20,6, 0x0c8f40,1, 0x0c8f80,9, 0x0c9000,1, 0x0c9010,4, 0x0c9024,6, 0x0c9040,1, 0x0c9050,5, 0x0c9070,5, 0x0c9090,4, 0x0c9104,4, 0x0c9120,1, 0x0c9130,1, 0x0c9140,9, 0x0c9180,12, 0x0c9200,22, 0x0c9280,4, 0x0c9300,6, 0x0c9320,6, 0x0c9340,1, 0x0c9380,9, 0x0ca000,32, 0x0ca100,48, 0x0ca400,3, 0x0ca410,3, 0x0ca440,11, 0x0ca480,3, 0x0ca490,3, 0x0ca4c0,11, 0x0ca500,3, 0x0ca510,3, 0x0ca540,11, 0x0ca580,3, 0x0ca590,3, 0x0ca5c0,11, 0x0ca600,3, 0x0ca610,3, 0x0ca640,11, 0x0ca680,3, 0x0ca690,3, 0x0ca6c0,11, 0x0ca700,3, 0x0ca710,3, 0x0ca740,11, 0x0ca780,3, 0x0ca790,3, 0x0ca7c0,11, 0x0ca800,2, 0x0ca80c,2, 0x0ca818,18, 0x0ca900,1, 0x0ca908,11, 0x0caa00,21, 0x0caa60,5, 0x0cb000,3, 0x0cb024,1, 0x0cb02c,5, 0x0cb100,3, 0x0cb110,2, 0x0cb128,2, 0x0cb180,1, 0x0cb188,4, 0x0cb1a0,2, 0x0cb200,6, 0x0cb220,6, 0x0cb240,2, 0x0cb300,9, 0x0cb380,6, 0x0cb3a0,6, 0x0cb3c0,1, 0x0cb400,25, 0x0cb480,1, 0x0cb4a0,6, 0x0cb500,35, 0x0cc000,35, 0x0cca00,10, 0x0cca80,3, 0x0ccac0,1, 0x0d0000,37, 0x0d0104,1, 0x0d0140,16, 0x0d0184,7, 0x0d01b4,4, 0x0d01c8,10, 0x0d0400,9, 0x0d0440,9, 0x0d0480,9, 0x0d04c0,9, 0x0d0500,9, 0x0d0540,9, 0x0d0580,9, 0x0d05c0,9, 0x0d0604,4, 0x0d0620,1, 0x0d0630,5, 0x0d0650,5, 0x0d0670,1, 0x0d0680,1, 0x0d0690,1, 0x0d06a0,6, 0x0d06c8,1, 0x0d06e0,15, 0x0d0720,7, 0x0d0740,1, 0x0d0780,2, 0x0d078c,2, 0x0d07a0,2, 0x0d07ac,3, 0x0d07c0,3, 0x0d07d0,3, 0x0d0800,1, 0x0d0810,1, 0x0d0844,1, 0x0d0854,4, 0x0d0880,10, 0x0d0900,11, 0x0d0940,11, 0x0d0980,5, 0x0d0c00,1, 0x0d0c10,4, 0x0d0c24,6, 0x0d0c40,1, 0x0d0c50,5, 0x0d0c70,5, 0x0d0c90,4, 0x0d0d04,4, 0x0d0d20,1, 0x0d0d30,1, 0x0d0d40,9, 0x0d0d80,12, 0x0d0e00,22, 0x0d0e80,4, 0x0d0f00,6, 0x0d0f20,6, 0x0d0f40,1, 0x0d0f80,9, 0x0d1000,1, 0x0d1010,4, 0x0d1024,6, 0x0d1040,1, 0x0d1050,5, 0x0d1070,5, 0x0d1090,4, 0x0d1104,4, 0x0d1120,1, 0x0d1130,1, 0x0d1140,9, 0x0d1180,12, 0x0d1200,22, 0x0d1280,4, 0x0d1300,6, 0x0d1320,6, 0x0d1340,1, 0x0d1380,9, 0x0d2000,32, 0x0d2100,48, 0x0d2400,3, 0x0d2410,3, 0x0d2440,11, 0x0d2480,3, 0x0d2490,3, 0x0d24c0,11, 0x0d2500,3, 0x0d2510,3, 0x0d2540,11, 0x0d2580,3, 0x0d2590,3, 0x0d25c0,11, 0x0d2600,3, 0x0d2610,3, 0x0d2640,11, 0x0d2680,3, 0x0d2690,3, 0x0d26c0,11, 0x0d2700,3, 0x0d2710,3, 0x0d2740,11, 0x0d2780,3, 0x0d2790,3, 0x0d27c0,11, 0x0d2800,2, 0x0d280c,2, 0x0d2818,18, 0x0d2900,1, 0x0d2908,11, 0x0d2a00,21, 0x0d2a60,5, 0x0d3000,3, 0x0d3024,1, 0x0d302c,5, 0x0d3100,3, 0x0d3110,2, 0x0d3128,2, 0x0d3180,1, 0x0d3188,4, 0x0d31a0,2, 0x0d3200,6, 0x0d3220,6, 0x0d3240,2, 0x0d3300,9, 0x0d3380,6, 0x0d33a0,6, 0x0d33c0,1, 0x0d3400,25, 0x0d3480,1, 0x0d34a0,6, 0x0d3500,35, 0x0d4000,35, 0x0d4a00,10, 0x0d4a80,3, 0x0d4ac0,1, 0x0d8000,37, 0x0d8104,1, 0x0d8140,16, 0x0d8184,7, 0x0d81b4,4, 0x0d81c8,10, 0x0d8400,9, 0x0d8440,9, 0x0d8480,9, 0x0d84c0,9, 0x0d8500,9, 0x0d8540,9, 0x0d8580,9, 0x0d85c0,9, 0x0d8604,4, 0x0d8620,1, 0x0d8630,5, 0x0d8650,5, 0x0d8670,1, 0x0d8680,1, 0x0d8690,1, 0x0d86a0,6, 0x0d86c8,1, 0x0d86e0,15, 0x0d8720,7, 0x0d8740,1, 0x0d8780,2, 0x0d878c,2, 0x0d87a0,2, 0x0d87ac,3, 0x0d87c0,3, 0x0d87d0,3, 0x0d8800,1, 0x0d8810,1, 0x0d8844,1, 0x0d8854,4, 0x0d8880,10, 0x0d8900,11, 0x0d8940,11, 0x0d8980,5, 0x0d8c00,1, 0x0d8c10,4, 0x0d8c24,6, 0x0d8c40,1, 0x0d8c50,5, 0x0d8c70,5, 0x0d8c90,4, 0x0d8d04,4, 0x0d8d20,1, 0x0d8d30,1, 0x0d8d40,9, 0x0d8d80,12, 0x0d8e00,22, 0x0d8e80,4, 0x0d8f00,6, 0x0d8f20,6, 0x0d8f40,1, 0x0d8f80,9, 0x0d9000,1, 0x0d9010,4, 0x0d9024,6, 0x0d9040,1, 0x0d9050,5, 0x0d9070,5, 0x0d9090,4, 0x0d9104,4, 0x0d9120,1, 0x0d9130,1, 0x0d9140,9, 0x0d9180,12, 0x0d9200,22, 0x0d9280,4, 0x0d9300,6, 0x0d9320,6, 0x0d9340,1, 0x0d9380,9, 0x0da000,32, 0x0da100,48, 0x0da400,3, 0x0da410,3, 0x0da440,11, 0x0da480,3, 0x0da490,3, 0x0da4c0,11, 0x0da500,3, 0x0da510,3, 0x0da540,11, 0x0da580,3, 0x0da590,3, 0x0da5c0,11, 0x0da600,3, 0x0da610,3, 0x0da640,11, 0x0da680,3, 0x0da690,3, 0x0da6c0,11, 0x0da700,3, 0x0da710,3, 0x0da740,11, 0x0da780,3, 0x0da790,3, 0x0da7c0,11, 0x0da800,2, 0x0da80c,2, 0x0da818,18, 0x0da900,1, 0x0da908,11, 0x0daa00,21, 0x0daa60,5, 0x0db000,3, 0x0db024,1, 0x0db02c,5, 0x0db100,3, 0x0db110,2, 0x0db128,2, 0x0db180,1, 0x0db188,4, 0x0db1a0,2, 0x0db200,6, 0x0db220,6, 0x0db240,2, 0x0db300,9, 0x0db380,6, 0x0db3a0,6, 0x0db3c0,1, 0x0db400,25, 0x0db480,1, 0x0db4a0,6, 0x0db500,35, 0x0dc000,35, 0x0dca00,10, 0x0dca80,3, 0x0dcac0,1, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0160,2, 0x0e0180,3, 0x0e019c,18, 0x0e01ec,4, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0240,1, 0x0e027c,6, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0560,2, 0x0e0580,3, 0x0e059c,18, 0x0e05ec,4, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0640,1, 0x0e067c,6, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0960,2, 0x0e0980,3, 0x0e099c,18, 0x0e09ec,4, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0a40,1, 0x0e0a7c,6, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d60,2, 0x0e0d80,3, 0x0e0d9c,18, 0x0e0dec,4, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e0e40,1, 0x0e0e7c,6, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1160,2, 0x0e1180,3, 0x0e119c,18, 0x0e11ec,4, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1240,1, 0x0e127c,6, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1560,2, 0x0e1580,3, 0x0e159c,18, 0x0e15ec,4, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1640,1, 0x0e167c,6, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1960,2, 0x0e1980,3, 0x0e199c,18, 0x0e19ec,4, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1a40,1, 0x0e1a7c,6, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d60,2, 0x0e1d80,3, 0x0e1d9c,18, 0x0e1dec,4, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e1e40,1, 0x0e1e7c,6, 0x0e2000,3, 0x0e2018,2, 0x0e2024,13, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,9, 0x0e2140,3, 0x0e2160,2, 0x0e2180,3, 0x0e219c,18, 0x0e21ec,4, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2240,1, 0x0e227c,6, 0x0e2400,3, 0x0e2418,2, 0x0e2424,13, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,9, 0x0e2540,3, 0x0e2560,2, 0x0e2580,3, 0x0e259c,18, 0x0e25ec,4, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2640,1, 0x0e267c,6, 0x0e2800,3, 0x0e2818,2, 0x0e2824,13, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,9, 0x0e2940,3, 0x0e2960,2, 0x0e2980,3, 0x0e299c,18, 0x0e29ec,4, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e2a40,1, 0x0e2a7c,6, 0x0e3008,23, 0x0e3070,1, 0x0e3080,2, 0x0e308c,1, 0x0e3098,3, 0x0e3100,4, 0x0e3200,17, 0x0e3248,4, 0x0e3260,5, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,5, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,5, 0x0e3300,1, 0x0e3308,4, 0x0e3320,5, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,87, 0x0e3660,11, 0x0e3690,13, 0x0e36e0,2, 0x0e36ec,2, 0x0e3804,1, 0x0e387c,103, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,5, 0x0e3c40,16, 0x0e3c84,1, 0x0e3c8c,2, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,36, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e4900,3, 0x0e4910,5, 0x0e4928,2, 0x0e4980,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c00,14, 0x0e4c40,1, 0x0e4c48,1, 0x0e4c58,10, 0x0e4c84,1, 0x0e4ca0,8, 0x0e4d00,12, 0x0e4d40,1, 0x0e4e00,26, 0x0e4e80,25, 0x0e5000,35, 0x0e5a00,10, 0x0e5a80,3, 0x0e6000,28, 0x0e6074,1, 0x0e607c,1, 0x0e6084,1, 0x0e60a0,10, 0x0e6100,66, 0x0e6224,1, 0x0e622c,12, 0x0e6264,1, 0x0e626c,11, 0x0e62c8,12, 0x0e62fc,2, 0x0e6380,64, 0x0e6484,1, 0x0e64c0,23, 0x0e6520,7, 0x0e65c8,12, 0x0e65fc,2, 0x0e6680,64, 0x0e6784,1, 0x0e67c0,23, 0x0e6820,7, 0x0e6844,6, 0x0e6860,1, 0x0e6868,4, 0x0e6880,1, 0x0e6898,3, 0x0e68a8,4, 0x0e68c4,2, 0x0e6900,6, 0x0e6920,6, 0x0e6940,6, 0x0e6960,6, 0x0e6980,65, 0x0e6a88,3, 0x0e6a98,3, 0x0e6aa8,3, 0x0e6ab8,2, 0x0e6b00,36, 0x0e6c00,38, 0x0e6ca0,6, 0x0e6cc0,5, 0x0e6ce0,5, 0x0e6d00,5, 0x0e6d20,5, 0x0e6d40,1, 0x0e6d80,9, 0x0e6da8,4, 0x0e7000,40, 0x0e7120,1, 0x0e7178,54, 0x0e7300,33, 0x0e7388,4, 0x0e73a0,4, 0x0e7450,3, 0x0e7464,3, 0x0e74d0,4, 0x0e7500,1, 0x0e7510,12, 0x0e7580,3, 0x0e75c0,3, 0x0e7600,19, 0x0e7680,19, 0x0e7708,2, 0x0e7720,7, 0x0e7740,7, 0x0e7760,4, 0x0e7800,99, 0x0e7a00,16, 0x0e7a80,31, 0x0e7b00,3, 0x0e7b80,4, 0x0e7bc0,11, 0x0e7c00,115, 0x0e7e00,70, 0x0e7f20,14, 0x0e7f70,4, 0x0e7f88,1, 0x0e7f90,12, 0x0e8000,11, 0x0e8030,1, 0x0e8080,2, 0x0e80c4,2, 0x0e80d0,1, 0x0e80d8,1, 0x0e80e0,1, 0x0e80f4,3, 0x0e9000,128, 0x0e9208,256, 0x0e9610,128, 0x0e9818,1, 0x0e9fc0,40, 0x0ea078,1, 0x0ea100,2, 0x0f0000,4, 0x0f0014,2, 0x0f0020,10, 0x0f0054,1, 0x0f005c,7, 0x0f007c,2, 0x0f0088,20, 0x0f00dc,1, 0x0f01e0,4, 0x0f0200,6, 0x0f0228,4, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,5, 0x0f0480,22, 0x0f0500,28, 0x0f0580,7, 0x0f05a0,1, 0x0f05c0,14, 0x0f0af0,3, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba0,1, 0x0f0ba8,1, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,6, 0x0f0c50,53, 0x0f0d50,20, 0x0f0dd0,2, 0x0f0e40,1, 0x0f0ffc,4, 0x0f1030,2, 0x0f1040,10, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,24, 0x0f1400,179, 0x0f1800,19, 0x0f1880,11, 0x0f18d0,3, 0x0f1c00,5, 0x0f1c1c,2, 0x0f1db8,21, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f00,6, 0x0f1f20,1, 0x0f1f28,2, 0x0f1f40,2, 0x0f1f80,14, 0x0f1fc0,4, 0x0f2000,24, 0x0f2080,24, 0x0f2100,24, 0x0f2180,24, 0x0f2200,24, 0x0f2280,24, 0x0f2300,24, 0x0f2380,24, 0x0f2400,24, 0x0f24a4,1, 0x0f2800,2, 0x0f2840,16, 0x0f3000,5, 0x0f3024,1, 0x0f302c,1, 0x0f3204,1, 0x0f325c,105, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x0f7800,7, 0x0f7820,4, 0x0f7a04,1, 0x0f7a80,35, 0x0f7b10,4, 0x0f7c04,1, 0x0f7c80,34, 0x0f7d10,10, 0x0f7d3c,3, 0x0f8000,7, 0x0f8020,4, 0x0f8204,1, 0x0f8280,35, 0x0f8310,4, 0x0f8404,1, 0x0f8480,34, 0x0f8510,10, 0x0f853c,3, 0x0f8800,7, 0x0f8820,4, 0x0f8a04,1, 0x0f8a80,35, 0x0f8b10,4, 0x0f8c04,1, 0x0f8c80,34, 0x0f8d10,10, 0x0f8d3c,3, 0x0f9000,7, 0x0f9020,4, 0x0f9204,1, 0x0f9280,35, 0x0f9310,4, 0x0f9404,1, 0x0f9480,34, 0x0f9510,10, 0x0f953c,3, 0x0fc000,5, 0x0fc01c,12, 0x0fc05c,3, 0x0fc080,8, 0x0fc100,5, 0x0fc11c,12, 0x0fc15c,3, 0x0fc180,8, 0x0fc200,5, 0x0fc21c,12, 0x0fc25c,3, 0x0fc280,8, 0x0fc300,5, 0x0fc31c,12, 0x0fc35c,3, 0x0fc380,8, 0x0fc400,5, 0x0fc41c,12, 0x0fc45c,3, 0x0fc480,8, 0x0fc500,5, 0x0fc51c,12, 0x0fc55c,3, 0x0fc580,8, 0x0fc600,5, 0x0fc61c,12, 0x0fc65c,3, 0x0fc680,8, 0x0fc700,5, 0x0fc71c,12, 0x0fc75c,3, 0x0fc780,8, 0x0fc800,5, 0x0fc81c,12, 0x0fc85c,3, 0x0fc880,8, 0x0fc900,5, 0x0fc91c,12, 0x0fc95c,3, 0x0fc980,8, 0x0fca00,5, 0x0fca1c,12, 0x0fca5c,3, 0x0fca80,8, 0x0fcb00,5, 0x0fcb1c,12, 0x0fcb5c,3, 0x0fcb80,8, 0x0fcc00,5, 0x0fcc1c,12, 0x0fcc5c,3, 0x0fcc80,8, 0x0fcd00,5, 0x0fcd1c,12, 0x0fcd5c,3, 0x0fcd80,8, 0x0fce00,5, 0x0fce1c,12, 0x0fce5c,3, 0x0fce80,8, 0x0fcf00,5, 0x0fcf1c,12, 0x0fcf5c,3, 0x0fcf80,8, 0x0fd000,5, 0x0fd01c,12, 0x0fd05c,3, 0x0fd080,8, 0x0fd100,5, 0x0fd11c,12, 0x0fd15c,3, 0x0fd180,8, 0x0fd200,5, 0x0fd21c,12, 0x0fd25c,3, 0x0fd280,8, 0x0fd300,5, 0x0fd31c,12, 0x0fd35c,3, 0x0fd380,8, 0x101100,18, 0x101200,19, 0x101250,4, 0x101264,2, 0x101274,22, 0x1012d0,4, 0x1012e4,2, 0x1012f4,22, 0x101350,4, 0x101364,2, 0x101374,22, 0x1013d0,4, 0x1013e4,2, 0x1013f4,22, 0x101450,4, 0x101464,2, 0x101474,22, 0x1014d0,4, 0x1014e4,2, 0x1014f4,22, 0x101550,4, 0x101564,2, 0x101574,22, 0x1015d0,4, 0x1015e4,2, 0x1015f4,22, 0x101650,4, 0x101664,2, 0x101674,22, 0x1016d0,4, 0x1016e4,2, 0x1016f4,22, 0x101750,4, 0x101764,2, 0x101774,22, 0x1017d0,4, 0x1017e4,2, 0x1017f4,22, 0x101850,4, 0x101864,2, 0x101874,22, 0x1018d0,4, 0x1018e4,2, 0x1018f4,22, 0x101950,4, 0x101964,2, 0x101974,22, 0x1019d0,4, 0x1019e4,2, 0x1019f4,13, 0x101ab4,4, 0x101ac8,4, 0x101b00,6, 0x104000,4, 0x104014,2, 0x104020,3, 0x104030,4, 0x104044,6, 0x104060,3, 0x104080,4, 0x104094,2, 0x1040a0,3, 0x1040b0,4, 0x1040c4,6, 0x1040e0,3, 0x104100,4, 0x104114,2, 0x104120,3, 0x104130,4, 0x104144,6, 0x104160,3, 0x104180,4, 0x104194,2, 0x1041a0,3, 0x1041b0,4, 0x1041c4,6, 0x1041e0,3, 0x104200,4, 0x104214,2, 0x104220,3, 0x104230,4, 0x104244,6, 0x104260,3, 0x104280,4, 0x104294,2, 0x1042a0,3, 0x1042b0,4, 0x1042c4,6, 0x1042e0,3, 0x104300,4, 0x104314,2, 0x104320,3, 0x104330,4, 0x104344,6, 0x104360,3, 0x104380,4, 0x104394,2, 0x1043a0,3, 0x1043b0,4, 0x1043c4,6, 0x1043e0,3, 0x104400,4, 0x104414,2, 0x104420,3, 0x104430,4, 0x104444,6, 0x104460,3, 0x104480,4, 0x104494,2, 0x1044a0,3, 0x1044b0,4, 0x1044c4,6, 0x1044e0,3, 0x104500,4, 0x104514,2, 0x104520,3, 0x104530,4, 0x104544,6, 0x104560,3, 0x104580,4, 0x104594,2, 0x1045a0,3, 0x1045b0,4, 0x1045c4,6, 0x1045e0,3, 0x104600,4, 0x104614,2, 0x104620,3, 0x104630,4, 0x104644,6, 0x104660,3, 0x104680,4, 0x104694,2, 0x1046a0,3, 0x1046b0,4, 0x1046c4,6, 0x1046e0,3, 0x104700,4, 0x104714,2, 0x104720,3, 0x104730,4, 0x104744,6, 0x104760,3, 0x104780,4, 0x104794,2, 0x1047a0,3, 0x1047b0,4, 0x1047c4,6, 0x1047e0,3, 0x104800,8, 0x104880,17, 0x1048d0,1, 0x1048d8,1, 0x104bbc,22, 0x104c20,4, 0x104c40,5, 0x104c60,4, 0x104c80,5, 0x104ca0,4, 0x104cc0,5, 0x104ce0,4, 0x104d00,5, 0x104d20,4, 0x104d40,5, 0x104d60,4, 0x104d80,5, 0x104da0,4, 0x104dc0,5, 0x104de0,4, 0x104e00,5, 0x104e20,4, 0x104e60,1, 0x105000,3, 0x105010,5, 0x105204,1, 0x105214,5, 0x105300,3, 0x105310,3, 0x105320,3, 0x105330,3, 0x105340,3, 0x105350,3, 0x105360,3, 0x105370,3, 0x105380,3, 0x105390,3, 0x1053a0,3, 0x1053b0,3, 0x1053c0,3, 0x1053d0,3, 0x1053e0,3, 0x1053f0,3, 0x105480,2, 0x105490,5, 0x1054a8,5, 0x1054c0,3, 0x1054d0,3, 0x1054e0,3, 0x1054f0,3, 0x105500,35, 0x1055c8,9, 0x1055f0,2, 0x105600,32, 0x105700,2, 0x105800,64, 0x105a00,3, 0x105c04,1, 0x105c18,10, 0x105d04,1, 0x105d78,34, 0x105e04,1, 0x105e18,12, 0x106000,82, 0x106780,16, 0x106800,16, 0x106844,1, 0x106858,3, 0x106880,16, 0x1068c4,1, 0x1068d8,3, 0x106900,16, 0x106944,1, 0x106958,3, 0x106980,16, 0x1069c4,1, 0x1069d8,3, 0x106a00,16, 0x106a44,1, 0x106a58,3, 0x106a80,16, 0x106ac4,1, 0x106ad8,3, 0x106b00,16, 0x106b44,1, 0x106b58,3, 0x106b80,16, 0x106bc4,1, 0x106bd8,3, 0x106c00,16, 0x106c44,1, 0x106c58,3, 0x106c80,16, 0x106cc4,1, 0x106cd8,3, 0x106d00,16, 0x106d44,1, 0x106d58,3, 0x106d80,16, 0x106dc4,1, 0x106dd8,3, 0x106e00,16, 0x106e44,1, 0x106e58,3, 0x106e80,16, 0x106ec4,1, 0x106ed8,3, 0x106f00,16, 0x106f44,1, 0x106f58,3, 0x106f80,16, 0x106fc4,1, 0x106fd8,3, 0x108000,46, 0x108100,46, 0x108204,4, 0x108220,2, 0x108230,3, 0x108240,10, 0x108280,4, 0x1082e0,6, 0x108300,50, 0x1083d8,2, 0x1083e4,10, 0x108500,2, 0x10850c,3, 0x10851c,2, 0x108540,17, 0x109000,37, 0x10909c,6, 0x1090c0,24, 0x109550,3, 0x109560,3, 0x109580,3, 0x109590,3, 0x1095a0,3, 0x1095b0,3, 0x1095c0,3, 0x1095d0,3, 0x1095e0,3, 0x1095f0,3, 0x109600,3, 0x109610,3, 0x109620,3, 0x109630,3, 0x109640,3, 0x109650,3, 0x109660,3, 0x109670,3, 0x109680,64, 0x109800,529, 0x10a11c,1, 0x10a140,18, 0x10a200,1, 0x10a220,7, 0x10a240,1, 0x10a260,7, 0x10a280,1, 0x10a2a0,7, 0x10a2c0,1, 0x10a2e0,7, 0x10a300,1, 0x10a320,7, 0x10a340,1, 0x10a360,7, 0x10a380,1, 0x10a3a0,7, 0x10a3c0,1, 0x10a3e0,7, 0x10a400,1, 0x10a420,7, 0x10a440,1, 0x10a460,7, 0x10a480,1, 0x10a4a0,7, 0x10a4c0,1, 0x10a4e0,7, 0x10a500,1, 0x10a520,7, 0x10a540,1, 0x10a560,7, 0x10a580,1, 0x10a5a0,7, 0x10a5c0,1, 0x10a5e0,7, 0x10a680,19, 0x10a700,19, 0x10a780,19, 0x10a800,19, 0x10a880,19, 0x10a900,19, 0x10a980,19, 0x10aa00,19, 0x10aa80,19, 0x10ab00,19, 0x10ab80,19, 0x10ac00,19, 0x10ac80,19, 0x10ad00,19, 0x10ad80,19, 0x10ae00,19, 0x10ae80,19, 0x10af00,19, 0x10af80,19, 0x10b000,18, 0x10b04c,2, 0x10b680,19, 0x10b700,19, 0x10b800,19, 0x10b880,19, 0x10b900,19, 0x10b980,19, 0x10ba00,19, 0x10ba80,19, 0x10bb00,19, 0x10bb80,19, 0x10bc00,19, 0x10bc80,19, 0x10bd00,19, 0x10bd80,19, 0x10be00,19, 0x10be80,19, 0x10bf00,19, 0x10bf80,19, 0x10c000,1, 0x10c008,1, 0x10c010,1, 0x10c018,1, 0x10c020,1, 0x10c028,1, 0x10c030,1, 0x10c038,1, 0x10c040,1, 0x10c100,32, 0x10c200,1, 0x10c208,2, 0x10c220,1, 0x10c228,5, 0x10c258,2, 0x10c264,7, 0x10c2d4,3, 0x10c2e4,7, 0x10c408,1, 0x10c410,7, 0x10c800,16, 0x10c880,16, 0x10c900,16, 0x10c980,16, 0x10ca00,16, 0x10ca80,16, 0x10cb00,16, 0x10cb80,16, 0x10cc00,16, 0x10cc80,16, 0x10cd00,16, 0x10cd80,16, 0x10ce00,16, 0x10ce80,16, 0x10cf00,16, 0x10cf80,16, 0x10d000,32, 0x10d200,43, 0x10d480,3, 0x10d500,5, 0x10d524,7, 0x10d544,7, 0x10d564,7, 0x10d590,1, 0x10d5a0,8, 0x10d704,7, 0x10d724,7, 0x10d744,7, 0x10d764,7, 0x10d784,7, 0x10d7a4,7, 0x10d7c4,7, 0x10d7e4,7, 0x10d804,7, 0x10d824,7, 0x10d844,7, 0x10d864,7, 0x10d884,7, 0x10d8a4,7, 0x10d8c4,7, 0x10d8e4,7, 0x10d904,7, 0x10d924,7, 0x10d944,7, 0x10d964,7, 0x10d984,7, 0x10d9a4,7, 0x10d9c4,7, 0x10d9e4,7, 0x10da04,7, 0x10da24,7, 0x10da44,7, 0x10da64,7, 0x10da84,7, 0x10daa4,7, 0x10dac4,7, 0x10dae4,8, 0x10db80,9, 0x10dbb0,1, 0x10dbc0,1, 0x10dbc8,8, 0x10dc00,14, 0x10dc40,7, 0x10dc60,7, 0x10dc80,7, 0x10dd00,2, 0x10dd0c,3, 0x10dd20,2, 0x10dd2c,3, 0x10dd40,2, 0x10dd4c,3, 0x10dd60,2, 0x10dd6c,3, 0x10dd80,2, 0x10dd8c,3, 0x10dda0,2, 0x10ddac,3, 0x10ddc0,2, 0x10ddcc,3, 0x10dde0,2, 0x10ddec,3, 0x10de00,2, 0x10de0c,3, 0x10de20,2, 0x10de2c,3, 0x10de40,2, 0x10de4c,3, 0x10de60,2, 0x10de6c,3, 0x10de80,2, 0x10de8c,3, 0x10dea0,2, 0x10deac,3, 0x10dec0,2, 0x10decc,3, 0x10dee0,2, 0x10deec,3, 0x10e100,10, 0x10e140,4, 0x10e158,1, 0x10e200,25, 0x10e280,1, 0x10e2a0,6, 0x10e300,25, 0x10e380,1, 0x10e3a0,6, 0x10e400,25, 0x10e480,1, 0x10e4a0,6, 0x10e500,25, 0x10e580,25, 0x10e600,25, 0x10e680,25, 0x10e700,25, 0x10e780,25, 0x10e800,25, 0x10e880,25, 0x10e900,25, 0x10e980,25, 0x10ea00,25, 0x10ea80,25, 0x10eb00,25, 0x10eb80,25, 0x10ec00,25, 0x10ec80,25, 0x10ed00,4, 0x10ed20,1, 0x110000,2, 0x110040,32, 0x110200,8, 0x110400,2, 0x110440,32, 0x110600,8, 0x110800,64, 0x111000,6, 0x111020,6, 0x111040,6, 0x111060,6, 0x111080,1, 0x111c00,7, 0x111c20,7, 0x111c40,7, 0x111c60,7, 0x111c80,7, 0x111ca0,7, 0x111cc0,7, 0x111ce0,7, 0x111d00,7, 0x111d20,7, 0x111d40,7, 0x111d60,7, 0x111d80,7, 0x111da0,7, 0x111dc0,7, 0x111de0,7, 0x111e00,2, 0x111e10,1, 0x112000,18, 0x11205c,6, 0x112080,18, 0x1120dc,6, 0x112100,18, 0x11215c,6, 0x112180,18, 0x1121dc,6, 0x112280,22, 0x1122e0,5, 0x112300,18, 0x11235c,6, 0x112800,18, 0x11285c,6, 0x112880,18, 0x1128dc,6, 0x112900,18, 0x11295c,6, 0x112980,18, 0x1129dc,6, 0x112a80,22, 0x112ae0,5, 0x112b00,18, 0x112b5c,6, 0x113000,21, 0x11305c,6, 0x113080,21, 0x1130dc,6, 0x113100,21, 0x11315c,6, 0x113180,21, 0x1131dc,6, 0x113200,21, 0x11325c,6, 0x113280,21, 0x1132dc,6, 0x113300,21, 0x11335c,6, 0x113380,21, 0x1133dc,6, 0x113f00,16, 0x113f5c,1, 0x113f70,3, 0x113f80,13, 0x113fc0,6, 0x113fe0,5, 0x114800,18, 0x114900,18, 0x114a00,18, 0x114b00,18, 0x114c00,18, 0x114d00,4, 0x115000,5, 0x115020,5, 0x115040,5, 0x115060,5, 0x115080,5, 0x1150a0,5, 0x1150c0,5, 0x1150e0,5, 0x115100,5, 0x115120,5, 0x115140,5, 0x115160,5, 0x115180,5, 0x1151a0,5, 0x1151c0,5, 0x1151e0,5, 0x115200,5, 0x115220,5, 0x115240,5, 0x115260,5, 0x115280,5, 0x1152a0,5, 0x1152c0,5, 0x1152e0,5, 0x115300,5, 0x115320,5, 0x115340,5, 0x115360,5, 0x115380,5, 0x1153a0,5, 0x1153c0,5, 0x1153e0,5, 0x115400,5, 0x115420,5, 0x115440,5, 0x115460,5, 0x115480,5, 0x1154a0,5, 0x1154c0,5, 0x1154e0,5, 0x115500,5, 0x115520,5, 0x115540,5, 0x115560,5, 0x115580,5, 0x1155a0,5, 0x1155c0,5, 0x1155e0,5, 0x115600,5, 0x115620,5, 0x115640,5, 0x115660,5, 0x115680,5, 0x1156a0,5, 0x1156c0,5, 0x1156e0,5, 0x115700,5, 0x115720,5, 0x115740,5, 0x115760,5, 0x115780,5, 0x1157a0,5, 0x1157c0,5, 0x1157e0,5, 0x115800,12, 0x115840,1, 0x115850,12, 0x115884,1, 0x1158c0,16, 0x116000,5, 0x116020,5, 0x116040,5, 0x116060,5, 0x116080,5, 0x1160a0,5, 0x1160c0,5, 0x1160e0,5, 0x116100,5, 0x116120,5, 0x116140,5, 0x116160,5, 0x116180,5, 0x1161a0,5, 0x1161c0,5, 0x1161e0,5, 0x116200,5, 0x116220,5, 0x116240,5, 0x116260,5, 0x116280,5, 0x1162a0,5, 0x1162c0,5, 0x1162e0,5, 0x116300,5, 0x116320,5, 0x116340,5, 0x116360,5, 0x116380,5, 0x1163a0,5, 0x1163c0,5, 0x1163e0,5, 0x116400,5, 0x116420,5, 0x116440,5, 0x116460,5, 0x116480,5, 0x1164a0,5, 0x1164c0,5, 0x1164e0,5, 0x116500,5, 0x116520,5, 0x116540,5, 0x116560,5, 0x116580,5, 0x1165a0,5, 0x1165c0,5, 0x1165e0,5, 0x116600,5, 0x116620,5, 0x116640,5, 0x116660,5, 0x116680,5, 0x1166a0,5, 0x1166c0,5, 0x1166e0,5, 0x116700,5, 0x116720,5, 0x116740,5, 0x116760,5, 0x116780,5, 0x1167a0,5, 0x1167c0,5, 0x1167e0,5, 0x116800,12, 0x116840,1, 0x116850,12, 0x116884,1, 0x1168c0,8, 0x11e000,19, 0x11ea00,10, 0x11ea80,3, 0x11fffc,1, 0x140010,10, 0x140040,7, 0x140064,6, 0x140080,5, 0x140100,11, 0x140130,7, 0x140180,16, 0x140210,10, 0x140240,7, 0x140264,6, 0x140280,5, 0x140300,11, 0x140330,7, 0x140380,16, 0x140410,10, 0x140440,7, 0x140464,6, 0x140480,5, 0x140500,11, 0x140530,7, 0x140580,16, 0x140610,10, 0x140640,7, 0x140664,6, 0x140680,5, 0x140700,11, 0x140730,7, 0x140780,16, 0x140810,10, 0x140840,7, 0x140864,6, 0x140880,5, 0x140900,11, 0x140930,7, 0x140980,16, 0x140a10,10, 0x140a40,7, 0x140a64,6, 0x140a80,5, 0x140b00,11, 0x140b30,7, 0x140b80,16, 0x140c10,10, 0x140c40,7, 0x140c64,6, 0x140c80,5, 0x140d00,11, 0x140d30,7, 0x140d80,16, 0x140e10,10, 0x140e40,7, 0x140e64,6, 0x140e80,5, 0x140f00,11, 0x140f30,7, 0x140f80,16, 0x141010,10, 0x141040,7, 0x141064,6, 0x141080,5, 0x141100,11, 0x141130,7, 0x141180,16, 0x141210,10, 0x141240,7, 0x141264,6, 0x141280,5, 0x141300,11, 0x141330,7, 0x141380,16, 0x141410,10, 0x141440,7, 0x141464,6, 0x141480,5, 0x141500,11, 0x141530,7, 0x141580,16, 0x141610,10, 0x141640,7, 0x141664,6, 0x141680,5, 0x141700,11, 0x141730,7, 0x141780,16, 0x141810,10, 0x141840,7, 0x141864,6, 0x141880,5, 0x141900,11, 0x141930,7, 0x141980,16, 0x141a10,10, 0x141a40,7, 0x141a64,6, 0x141a80,5, 0x141b00,11, 0x141b30,7, 0x141b80,16, 0x141c10,10, 0x141c40,7, 0x141c64,6, 0x141c80,5, 0x141d00,11, 0x141d30,7, 0x141d80,16, 0x141e10,10, 0x141e40,7, 0x141e64,6, 0x141e80,5, 0x141f00,11, 0x141f30,7, 0x141f80,16, 0x142000,26, 0x142088,15, 0x143000,2, 0x143010,11, 0x143040,3, 0x143ffc,26, 0x144080,25, 0x144100,25, 0x144180,25, 0x144200,25, 0x144280,25, 0x144300,25, 0x144380,25, 0x144400,25, 0x144480,25, 0x144500,25, 0x144580,25, 0x144600,25, 0x144680,25, 0x144700,25, 0x144780,25, 0x144800,25, 0x146000,19, 0x146a00,10, 0x146a80,3, 0x147000,11, 0x147030,7, 0x1470a0,2, 0x150000,8, 0x150024,10, 0x150050,22, 0x150100,8, 0x150124,10, 0x150150,22, 0x150200,8, 0x150224,10, 0x150250,22, 0x150300,8, 0x150324,10, 0x150350,22, 0x150400,8, 0x150424,10, 0x150450,22, 0x150500,8, 0x150524,10, 0x150550,22, 0x150600,8, 0x150624,10, 0x150650,22, 0x150700,8, 0x150724,10, 0x150750,22, 0x150800,8, 0x150824,10, 0x150850,22, 0x150904,1, 0x150914,10, 0x150948,11, 0x150980,1, 0x1509a0,6, 0x1509c0,2, 0x1509cc,2, 0x151000,8, 0x151024,10, 0x151050,22, 0x151100,8, 0x151124,10, 0x151150,22, 0x151200,8, 0x151224,10, 0x151250,22, 0x151300,8, 0x151324,10, 0x151350,22, 0x151400,8, 0x151424,10, 0x151450,22, 0x151500,8, 0x151524,10, 0x151550,22, 0x151600,8, 0x151624,10, 0x151650,22, 0x151700,8, 0x151724,10, 0x151750,22, 0x151800,8, 0x151824,10, 0x151850,22, 0x151904,1, 0x151914,10, 0x151948,11, 0x151980,1, 0x1519a0,6, 0x1519c0,2, 0x1519cc,2, 0x155000,72, 0x155400,72, 0x155800,72, 0x155c00,72, 0x156000,72, 0x156400,72, 0x156800,72, 0x156c00,72, 0x157000,17, 0x157048,9, 0x157070,3, 0x157080,1, 0x157090,13, 0x1570d0,1, 0x1570e0,6, 0x157200,17, 0x157248,9, 0x157270,3, 0x157280,1, 0x157290,13, 0x1572d0,1, 0x1572e0,6, 0x157400,17, 0x157448,9, 0x157470,3, 0x157480,1, 0x157490,13, 0x1574d0,1, 0x1574e0,6, 0x157600,17, 0x157648,9, 0x157670,3, 0x157680,1, 0x157690,13, 0x1576d0,1, 0x1576e0,6, 0x157800,17, 0x157848,9, 0x157870,3, 0x157880,1, 0x157890,13, 0x1578d0,1, 0x1578e0,6, 0x157a00,17, 0x157a48,9, 0x157a70,3, 0x157a80,1, 0x157a90,13, 0x157ad0,1, 0x157ae0,6, 0x157c00,17, 0x157c48,9, 0x157c70,3, 0x157c80,1, 0x157c90,13, 0x157cd0,1, 0x157ce0,6, 0x157e00,17, 0x157e48,9, 0x157e70,3, 0x157e80,1, 0x157e90,13, 0x157ed0,1, 0x157ee0,6, 0x158000,7, 0x158020,3, 0x158030,7, 0x158050,1, 0x158080,7, 0x1580a0,3, 0x1580b0,7, 0x1580d0,1, 0x158100,7, 0x158120,3, 0x158130,7, 0x158150,1, 0x158180,7, 0x1581a0,3, 0x1581b0,7, 0x1581d0,1, 0x158200,7, 0x158220,3, 0x158230,7, 0x158250,1, 0x158280,7, 0x1582a0,3, 0x1582b0,7, 0x1582d0,1, 0x158300,7, 0x158320,3, 0x158330,7, 0x158350,1, 0x158380,7, 0x1583a0,3, 0x1583b0,7, 0x1583d0,1, 0x158400,7, 0x158420,3, 0x158430,7, 0x158450,1, 0x158480,7, 0x1584a0,3, 0x1584b0,7, 0x1584d0,1, 0x158500,7, 0x158520,3, 0x158530,7, 0x158550,1, 0x158580,7, 0x1585a0,3, 0x1585b0,7, 0x1585d0,1, 0x158600,7, 0x158620,3, 0x158630,7, 0x158650,1, 0x158680,7, 0x1586a0,3, 0x1586b0,7, 0x1586d0,1, 0x158700,7, 0x158720,3, 0x158730,7, 0x158750,1, 0x158780,7, 0x1587a0,3, 0x1587b0,7, 0x1587d0,1, 0x158800,20, 0x158900,20, 0x158a00,20, 0x158b00,20, 0x158c00,20, 0x158d00,20, 0x158e00,20, 0x158f00,20, 0x159000,8, 0x159040,3, 0x159050,2, 0x1590a0,2, 0x1590ac,1, 0x1590b8,1, 0x1590c4,2, 0x159200,48, 0x159400,96, 0x159600,5, 0x159620,5, 0x159640,5, 0x159660,5, 0x159680,5, 0x1596a0,5, 0x1596c0,5, 0x1596e0,5, 0x159700,29, 0x159778,3, 0x159800,80, 0x159944,1, 0x159950,6, 0x159980,98, 0x15a000,104, 0x15a200,3, 0x15a210,2, 0x15a21c,16, 0x15a264,1, 0x15a270,2, 0x15a300,3, 0x15a310,2, 0x15a31c,16, 0x15a364,1, 0x15a370,2, 0x15a400,3, 0x15a410,2, 0x15a41c,16, 0x15a464,1, 0x15a470,2, 0x15a500,3, 0x15a510,2, 0x15a51c,16, 0x15a564,1, 0x15a570,2, 0x15a600,3, 0x15a610,2, 0x15a61c,16, 0x15a664,1, 0x15a670,2, 0x15a700,3, 0x15a710,2, 0x15a71c,16, 0x15a764,1, 0x15a770,2, 0x15a800,3, 0x15a810,2, 0x15a81c,16, 0x15a864,1, 0x15a870,2, 0x15a900,3, 0x15a910,2, 0x15a91c,16, 0x15a964,1, 0x15a970,2, 0x15aa00,17, 0x15aa48,3, 0x15ab00,7, 0x15ab80,20, 0x15abe0,2, 0x15ac00,5, 0x15ac20,5, 0x15ac40,5, 0x15ac60,5, 0x15ac80,5, 0x15aca0,5, 0x15acc0,5, 0x15ace0,5, 0x15ad00,29, 0x15ad78,3, 0x15ae00,16, 0x15b000,97, 0x15b200,97, 0x15b400,97, 0x15b600,97, 0x15b800,97, 0x15ba00,97, 0x15bc00,97, 0x15be00,97, 0x15c000,97, 0x15c200,97, 0x15c400,97, 0x15c600,97, 0x15c800,97, 0x15ca00,97, 0x15cc00,97, 0x15ce00,97, 0x15f000,21, 0x15f060,5, 0x15f080,6, 0x15f0a0,5, 0x15f0c0,6, 0x15f100,21, 0x15f160,5, 0x15f180,6, 0x15f1a0,5, 0x15f1c0,6, 0x15f200,21, 0x15f260,5, 0x15f280,6, 0x15f2a0,5, 0x15f2c0,6, 0x15f300,21, 0x15f360,5, 0x15f380,6, 0x15f3a0,5, 0x15f3c0,6, 0x15f400,9, 0x15f448,7, 0x15f468,2, 0x15f474,9, 0x15f49c,2, 0x15f500,14, 0x15f540,14, 0x15f580,24, 0x15f600,19, 0x15f650,3, 0x15f660,25, 0x15f6c8,1, 0x15f6d0,2, 0x15f6e0,7, 0x15f700,1, 0x15f708,2, 0x15f7fc,129, 0x15fa04,9, 0x15fc04,1, 0x15fc24,21, 0x15fc80,16, 0x15fd00,8, 0x15fd40,3, 0x15fd50,3, 0x15fd60,3, 0x15fd80,11, 0x15fdb0,3, 0x15fdc0,29, 0x15fe3c,4, 0x15fe50,1, 0x15fe58,1, 0x15fe60,1, 0x15fe68,1, 0x15fe70,1, 0x15fe78,1, 0x15fe80,3, 0x15fe98,1, 0x15fea0,2, 0x15feb0,3, 0x15ff00,17, 0x15ff80,16, 0x160000,13, 0x160040,2, 0x160054,4, 0x160080,27, 0x160100,12, 0x160140,14, 0x160180,28, 0x160200,6, 0x160240,6, 0x16025c,3, 0x160280,5, 0x1602a0,8, 0x160400,14, 0x160440,14, 0x160480,14, 0x1604c0,14, 0x160540,3, 0x160600,7, 0x160620,14, 0x160680,5, 0x1606a0,7, 0x160800,13, 0x160840,2, 0x160854,4, 0x160880,27, 0x160900,12, 0x160940,14, 0x160980,28, 0x160a00,6, 0x160a40,6, 0x160a5c,3, 0x160a80,5, 0x160aa0,8, 0x160c00,14, 0x160c40,14, 0x160c80,14, 0x160cc0,14, 0x160d40,3, 0x160e00,7, 0x160e20,14, 0x160e80,5, 0x160ea0,7, 0x161000,13, 0x161040,2, 0x161054,4, 0x161080,27, 0x161100,12, 0x161140,14, 0x161180,28, 0x161200,6, 0x161240,6, 0x16125c,3, 0x161280,5, 0x1612a0,8, 0x161400,14, 0x161440,14, 0x161480,14, 0x1614c0,14, 0x161540,3, 0x161600,7, 0x161620,14, 0x161680,5, 0x1616a0,7, 0x161800,13, 0x161840,2, 0x161854,4, 0x161880,27, 0x161900,12, 0x161940,14, 0x161980,28, 0x161a00,6, 0x161a40,6, 0x161a5c,3, 0x161a80,5, 0x161aa0,8, 0x161c00,14, 0x161c40,14, 0x161c80,14, 0x161cc0,14, 0x161d40,3, 0x161e00,7, 0x161e20,14, 0x161e80,5, 0x161ea0,7, 0x162000,8, 0x162040,8, 0x162080,1, 0x162098,6, 0x162100,10, 0x162140,3, 0x162150,2, 0x162180,2, 0x162200,6, 0x162220,18, 0x162280,4, 0x162300,8, 0x162400,2, 0x162480,2, 0x163000,40, 0x163100,64, 0x164000,13, 0x164040,2, 0x164054,4, 0x164080,27, 0x164100,12, 0x164140,14, 0x164180,28, 0x164200,6, 0x164240,6, 0x16425c,3, 0x164280,5, 0x1642a0,8, 0x164400,14, 0x164440,14, 0x164480,14, 0x1644c0,14, 0x164540,3, 0x164600,7, 0x164620,14, 0x164680,5, 0x1646a0,7, 0x164800,13, 0x164840,2, 0x164854,4, 0x164880,27, 0x164900,12, 0x164940,14, 0x164980,28, 0x164a00,6, 0x164a40,6, 0x164a5c,3, 0x164a80,5, 0x164aa0,8, 0x164c00,14, 0x164c40,14, 0x164c80,14, 0x164cc0,14, 0x164d40,3, 0x164e00,7, 0x164e20,14, 0x164e80,5, 0x164ea0,7, 0x165000,13, 0x165040,2, 0x165054,4, 0x165080,27, 0x165100,12, 0x165140,14, 0x165180,28, 0x165200,6, 0x165240,6, 0x16525c,3, 0x165280,5, 0x1652a0,8, 0x165400,14, 0x165440,14, 0x165480,14, 0x1654c0,14, 0x165540,3, 0x165600,7, 0x165620,14, 0x165680,5, 0x1656a0,7, 0x165800,13, 0x165840,2, 0x165854,4, 0x165880,27, 0x165900,12, 0x165940,14, 0x165980,28, 0x165a00,6, 0x165a40,6, 0x165a5c,3, 0x165a80,5, 0x165aa0,8, 0x165c00,14, 0x165c40,14, 0x165c80,14, 0x165cc0,14, 0x165d40,3, 0x165e00,7, 0x165e20,14, 0x165e80,5, 0x165ea0,7, 0x166000,8, 0x166040,8, 0x166080,1, 0x166098,6, 0x166100,10, 0x166140,3, 0x166150,2, 0x166180,2, 0x166200,6, 0x166220,18, 0x166280,4, 0x166300,8, 0x166400,2, 0x166480,2, 0x167000,40, 0x167100,64, 0x168000,13, 0x168040,2, 0x168054,4, 0x168080,27, 0x168100,12, 0x168140,14, 0x168180,28, 0x168200,6, 0x168240,6, 0x16825c,3, 0x168280,5, 0x1682a0,8, 0x168400,14, 0x168440,14, 0x168480,14, 0x1684c0,14, 0x168540,3, 0x168600,7, 0x168620,14, 0x168680,5, 0x1686a0,7, 0x168800,13, 0x168840,2, 0x168854,4, 0x168880,27, 0x168900,12, 0x168940,14, 0x168980,28, 0x168a00,6, 0x168a40,6, 0x168a5c,3, 0x168a80,5, 0x168aa0,8, 0x168c00,14, 0x168c40,14, 0x168c80,14, 0x168cc0,14, 0x168d40,3, 0x168e00,7, 0x168e20,14, 0x168e80,5, 0x168ea0,7, 0x169000,13, 0x169040,2, 0x169054,4, 0x169080,27, 0x169100,12, 0x169140,14, 0x169180,28, 0x169200,6, 0x169240,6, 0x16925c,3, 0x169280,5, 0x1692a0,8, 0x169400,14, 0x169440,14, 0x169480,14, 0x1694c0,14, 0x169540,3, 0x169600,7, 0x169620,14, 0x169680,5, 0x1696a0,7, 0x169800,13, 0x169840,2, 0x169854,4, 0x169880,27, 0x169900,12, 0x169940,14, 0x169980,28, 0x169a00,6, 0x169a40,6, 0x169a5c,3, 0x169a80,5, 0x169aa0,8, 0x169c00,14, 0x169c40,14, 0x169c80,14, 0x169cc0,14, 0x169d40,3, 0x169e00,7, 0x169e20,14, 0x169e80,5, 0x169ea0,7, 0x16a000,8, 0x16a040,8, 0x16a080,1, 0x16a098,6, 0x16a100,10, 0x16a140,3, 0x16a150,2, 0x16a180,2, 0x16a200,6, 0x16a220,18, 0x16a280,4, 0x16a300,8, 0x16a400,2, 0x16a480,2, 0x16b000,40, 0x16b100,64, 0x16c000,13, 0x16c040,2, 0x16c054,4, 0x16c080,27, 0x16c100,12, 0x16c140,14, 0x16c180,28, 0x16c200,6, 0x16c240,6, 0x16c25c,3, 0x16c280,5, 0x16c2a0,8, 0x16c400,14, 0x16c440,14, 0x16c480,14, 0x16c4c0,14, 0x16c540,3, 0x16c600,7, 0x16c620,14, 0x16c680,5, 0x16c6a0,7, 0x16c800,13, 0x16c840,2, 0x16c854,4, 0x16c880,27, 0x16c900,12, 0x16c940,14, 0x16c980,28, 0x16ca00,6, 0x16ca40,6, 0x16ca5c,3, 0x16ca80,5, 0x16caa0,8, 0x16cc00,14, 0x16cc40,14, 0x16cc80,14, 0x16ccc0,14, 0x16cd40,3, 0x16ce00,7, 0x16ce20,14, 0x16ce80,5, 0x16cea0,7, 0x16d000,13, 0x16d040,2, 0x16d054,4, 0x16d080,27, 0x16d100,12, 0x16d140,14, 0x16d180,28, 0x16d200,6, 0x16d240,6, 0x16d25c,3, 0x16d280,5, 0x16d2a0,8, 0x16d400,14, 0x16d440,14, 0x16d480,14, 0x16d4c0,14, 0x16d540,3, 0x16d600,7, 0x16d620,14, 0x16d680,5, 0x16d6a0,7, 0x16d800,13, 0x16d840,2, 0x16d854,4, 0x16d880,27, 0x16d900,12, 0x16d940,14, 0x16d980,28, 0x16da00,6, 0x16da40,6, 0x16da5c,3, 0x16da80,5, 0x16daa0,8, 0x16dc00,14, 0x16dc40,14, 0x16dc80,14, 0x16dcc0,14, 0x16dd40,3, 0x16de00,7, 0x16de20,14, 0x16de80,5, 0x16dea0,7, 0x16e000,8, 0x16e040,8, 0x16e080,1, 0x16e098,6, 0x16e100,10, 0x16e140,3, 0x16e150,2, 0x16e180,2, 0x16e200,6, 0x16e220,18, 0x16e280,4, 0x16e300,8, 0x16e400,2, 0x16e480,2, 0x16f000,40, 0x16f100,64, 0x180000,3, 0x180014,1, 0x180020,3, 0x180034,1, 0x180040,3, 0x180054,1, 0x180060,3, 0x180074,1, 0x180080,3, 0x180094,1, 0x1800a0,3, 0x1800b4,1, 0x1800c0,3, 0x1800d4,1, 0x1800e0,3, 0x1800f4,1, 0x180100,3, 0x180114,1, 0x180d00,1, 0x180d08,10, 0x181000,18, 0x181100,11, 0x181140,10, 0x181180,10, 0x181200,1, 0x181240,9, 0x181280,9, 0x181300,1, 0x181340,9, 0x181380,9, 0x181404,1, 0x18141c,14, 0x181460,1, 0x181480,40, 0x181540,13, 0x181580,1, 0x181800,36, 0x181a00,6, 0x181a20,2, 0x181a2c,6, 0x181a50,18, 0x181aa4,1, 0x181ab0,9, 0x181adc,37, 0x181bf0,2, 0x181c00,20, 0x181cd8,43, 0x181e00,1, 0x182404,20, 0x182494,36, 0x182530,2, 0x182540,3, 0x182550,1, 0x182564,3, 0x182580,48, 0x182800,1, 0x182900,38, 0x182a00,20, 0x182a80,4, 0x182c00,2, 0x182cc8,2, 0x183000,6, 0x183020,6, 0x183080,4, 0x1830c0,12, 0x183100,2, 0x183184,1, 0x1831a4,25, 0x183284,1, 0x1832a4,26, 0x183310,1, 0x183384,1, 0x1833ac,21, 0x183404,1, 0x1834ec,70, 0x183610,2, 0x183620,4, 0x183800,3, 0x183810,9, 0x183900,2, 0x183910,6, 0x183940,9, 0x183980,9, 0x1839c0,9, 0x184004,1, 0x184020,13, 0x184084,1, 0x1840a0,13, 0x184104,1, 0x184120,13, 0x184184,1, 0x1841a0,13, 0x184204,1, 0x184220,13, 0x184284,1, 0x1842a0,13, 0x184304,1, 0x184320,13, 0x184384,1, 0x1843a0,13, 0x184404,1, 0x184420,13, 0x18501c,10, 0x185048,2, 0x185080,9, 0x185100,11, 0x185140,7, 0x185160,16, 0x185200,9, 0x185240,1, 0x185280,9, 0x1852c0,1, 0x185400,2, 0x185410,2, 0x185600,22, 0x185700,22, 0x185800,22, 0x186000,4, 0x186020,2, 0x18602c,2, 0x186044,5, 0x186060,1, 0x186104,1, 0x186170,40, 0x186220,2, 0x18622c,2, 0x186244,5, 0x186260,1, 0x186304,1, 0x186370,40, 0x186420,2, 0x18642c,2, 0x186444,5, 0x186460,1, 0x186504,1, 0x186570,40, 0x186620,2, 0x18662c,2, 0x186644,5, 0x186660,1, 0x186704,1, 0x186770,40, 0x186820,2, 0x18682c,2, 0x186844,5, 0x186860,1, 0x186904,1, 0x186970,40, 0x186a20,2, 0x186a2c,2, 0x186a44,5, 0x186a60,1, 0x186b04,1, 0x186b70,40, 0x186c20,2, 0x186c2c,2, 0x186c44,5, 0x186c60,1, 0x186d04,1, 0x186d70,40, 0x186e20,2, 0x186e2c,2, 0x186e44,5, 0x186e60,1, 0x186f04,1, 0x186f70,36, 0x188000,9, 0x188084,1, 0x1880a4,8, 0x188100,9, 0x188180,2, 0x188200,1, 0x18820c,7, 0x18822c,3, 0x188280,16, 0x188304,13, 0x188400,5, 0x188418,7, 0x188440,1, 0x188448,4, 0x188480,2, 0x188500,5, 0x188518,7, 0x188540,1, 0x188548,4, 0x188580,2, 0x188600,5, 0x188618,7, 0x188640,1, 0x188648,4, 0x188680,2, 0x188700,5, 0x188718,7, 0x188740,1, 0x188748,4, 0x188780,2, 0x188800,5, 0x188818,7, 0x188840,1, 0x188848,4, 0x188880,2, 0x188900,5, 0x188918,7, 0x188940,1, 0x188948,4, 0x188980,2, 0x188a00,5, 0x188a18,7, 0x188a40,1, 0x188a48,4, 0x188a80,2, 0x188b00,5, 0x188b18,7, 0x188b40,1, 0x188b48,4, 0x188b80,2, 0x188c00,5, 0x188c18,7, 0x188c40,1, 0x188c48,4, 0x188c80,2, 0x18c000,15, 0x18c0a0,17, 0x18c400,19, 0x18c480,19, 0x18d000,12, 0x18d800,19, 0x18d880,19, 0x18e000,4, 0x18e018,2, 0x18e100,7, 0x18e800,16, 0x18f000,276, 0x18f804,9, 0x18f880,1, 0x18f8a0,6, 0x18f8c0,4, 0x18f900,2, 0x18f910,2, 0x18f950,2, 0x18fa00,45, 0x18fb00,10, 0x18fb40,3, 0x18fb80,26, 0x18fc00,2, 0x18fd04,1, 0x18fd7c,34, 0x190000,464, 0x190ffc,4, 0x191020,3, 0x191200,32, 0x191300,32, 0x191400,80, 0x192000,5, 0x192024,3, 0x192100,9, 0x192204,15, 0x1922e0,33, 0x194000,5, 0x194020,5, 0x194040,5, 0x194060,5, 0x194080,5, 0x1940a0,5, 0x1940c0,5, 0x1940e0,5, 0x194100,5, 0x194120,5, 0x194140,5, 0x194160,5, 0x194180,5, 0x1941a0,5, 0x1941c0,5, 0x1941e0,5, 0x194200,5, 0x194220,5, 0x194240,5, 0x194260,5, 0x194280,5, 0x1942a0,5, 0x1942c0,5, 0x1942e0,5, 0x194300,5, 0x194320,5, 0x194340,5, 0x194360,5, 0x194380,5, 0x1943a0,5, 0x1943c0,5, 0x1943e0,5, 0x194400,5, 0x194420,5, 0x194440,5, 0x194460,5, 0x194480,5, 0x1944a0,5, 0x1944c0,5, 0x1944e0,5, 0x194500,5, 0x194520,5, 0x194540,5, 0x194560,5, 0x194580,5, 0x1945a0,5, 0x1945c0,5, 0x1945e0,5, 0x194600,5, 0x194620,5, 0x194640,5, 0x194660,5, 0x194680,5, 0x1946a0,5, 0x1946c0,5, 0x1946e0,5, 0x194700,5, 0x194720,5, 0x194740,5, 0x194760,5, 0x194780,5, 0x1947a0,5, 0x1947c0,5, 0x1947e0,5, 0x194800,5, 0x194820,5, 0x194840,5, 0x194860,5, 0x194880,5, 0x1948a0,5, 0x1948c0,5, 0x1948e0,5, 0x194900,5, 0x194920,5, 0x194940,5, 0x194960,5, 0x194980,5, 0x1949a0,5, 0x1949c0,5, 0x1949e0,5, 0x194a00,5, 0x194a20,5, 0x194a40,5, 0x194a60,5, 0x194a80,5, 0x194aa0,5, 0x194ac0,5, 0x194ae0,5, 0x194b00,5, 0x194b20,5, 0x194b40,5, 0x194b60,5, 0x194b80,5, 0x194ba0,5, 0x194bc0,5, 0x194be0,5, 0x194c00,5, 0x194c20,5, 0x194c40,5, 0x194c60,5, 0x194c80,5, 0x194ca0,5, 0x194cc0,5, 0x194ce0,5, 0x194d00,5, 0x194d20,5, 0x194d40,5, 0x194d60,5, 0x194d80,5, 0x194da0,5, 0x194dc0,5, 0x194de0,5, 0x194e00,5, 0x194e20,5, 0x194e40,5, 0x194e60,5, 0x194f00,2, 0x194f10,2, 0x194ffc,1, 0x196000,8, 0x196080,64, 0x197000,99, 0x197280,19, 0x197300,11, 0x197330,3, 0x197380,8, 0x1973c8,8, 0x197400,7, 0x197420,7, 0x197440,7, 0x197460,7, 0x197480,7, 0x1974a0,23, 0x197500,7, 0x197520,7, 0x197540,14, 0x197580,6, 0x1975a0,6, 0x1975c0,7, 0x1975e0,6, 0x197600,7, 0x197620,10, 0x19764c,2, 0x197800,3, 0x197824,5, 0x197844,5, 0x197864,5, 0x197884,7, 0x1978a4,7, 0x197a00,9, 0x198000,25, 0x198080,1, 0x1980a0,6, 0x198100,25, 0x198180,1, 0x1981a0,6, 0x198200,25, 0x198280,1, 0x1982a0,6, 0x198300,25, 0x198380,1, 0x1983a0,6, 0x198400,25, 0x198480,1, 0x1984a0,6, 0x198500,25, 0x198580,1, 0x1985a0,6, 0x198600,25, 0x198680,1, 0x1986a0,6, 0x198700,25, 0x198780,1, 0x1987a0,6, 0x198800,25, 0x198880,1, 0x1988a0,6, 0x198900,25, 0x198980,1, 0x1989a0,6, 0x199000,19, 0x199a00,10, 0x199a80,3, 0x19b000,1, 0x19b008,2, 0x19b014,2, 0x19b020,3, 0x19b030,1, 0x19b038,3, 0x19b050,1, 0x19c000,4, 0x19d000,5, 0x19d020,5, 0x19d040,5, 0x19d060,5, 0x19d080,5, 0x19d0a0,5, 0x19d0c0,5, 0x19d0e0,5, 0x19d100,5, 0x19d120,5, 0x19d140,5, 0x19d160,5, 0x19d180,5, 0x19d1a0,5, 0x19d1c0,5, 0x19d1e0,5, 0x19d200,5, 0x19d220,5, 0x19d240,5, 0x19d260,5, 0x19d280,5, 0x19d2a0,5, 0x19d2c0,5, 0x19d2e0,5, 0x19d300,5, 0x19d320,5, 0x19d340,5, 0x19d360,5, 0x19d380,5, 0x19d3a0,5, 0x19d3c0,5, 0x19d3e0,5, 0x19d400,5, 0x19d420,5, 0x19d440,5, 0x19d460,5, 0x19d480,5, 0x19d4a0,5, 0x19d4c0,5, 0x19d4e0,5, 0x19d500,5, 0x19d520,5, 0x19d540,5, 0x19d560,5, 0x19d580,5, 0x19d5a0,5, 0x19d5c0,5, 0x19d5e0,5, 0x19d600,5, 0x19d620,5, 0x19d640,5, 0x19d660,5, 0x19d680,5, 0x19d6a0,5, 0x19d6c0,5, 0x19d6e0,5, 0x19d700,5, 0x19d720,5, 0x19d740,5, 0x19d760,5, 0x19d780,5, 0x19d7a0,5, 0x19d7c0,5, 0x19d7e0,5, 0x19d800,12, 0x19d840,1, 0x19d850,12, 0x19d884,1, 0x19d8c0,10, 0x19d8f0,1, 0x19d8f8,2, 0x19e000,5, 0x19e020,5, 0x19e040,5, 0x19e060,5, 0x19e080,5, 0x19e0a0,5, 0x19e0c0,5, 0x19e0e0,5, 0x19e100,5, 0x19e120,5, 0x19e140,5, 0x19e160,5, 0x19e180,5, 0x19e1a0,5, 0x19e1c0,5, 0x19e1e0,5, 0x19e200,5, 0x19e220,5, 0x19e240,5, 0x19e260,5, 0x19e280,5, 0x19e2a0,5, 0x19e2c0,5, 0x19e2e0,5, 0x19e300,5, 0x19e320,5, 0x19e340,5, 0x19e360,5, 0x19e380,5, 0x19e3a0,5, 0x19e3c0,5, 0x19e3e0,5, 0x19e400,5, 0x19e420,5, 0x19e440,5, 0x19e460,5, 0x19e480,5, 0x19e4a0,5, 0x19e4c0,5, 0x19e4e0,5, 0x19e500,5, 0x19e520,5, 0x19e540,5, 0x19e560,5, 0x19e580,5, 0x19e5a0,5, 0x19e5c0,5, 0x19e5e0,5, 0x19e600,5, 0x19e620,5, 0x19e640,5, 0x19e660,5, 0x19e680,5, 0x19e6a0,5, 0x19e6c0,5, 0x19e6e0,5, 0x19e700,5, 0x19e720,5, 0x19e740,5, 0x19e760,5, 0x19e780,5, 0x19e7a0,5, 0x19e7c0,5, 0x19e7e0,5, 0x19e800,12, 0x19e840,1, 0x19e850,12, 0x19e884,1, 0x19e8c0,8, 0x19f000,1, 0x1a0000,4, 0x1a0014,1, 0x1a0020,3, 0x1a0030,3, 0x1a0040,13, 0x1a0078,4, 0x1a009c,29, 0x1a0114,1, 0x1a0120,3, 0x1a0130,3, 0x1a0140,13, 0x1a0178,4, 0x1a019c,29, 0x1a0214,1, 0x1a0220,3, 0x1a0230,3, 0x1a0240,13, 0x1a0278,4, 0x1a029c,29, 0x1a0314,1, 0x1a0320,3, 0x1a0330,3, 0x1a0340,13, 0x1a0378,4, 0x1a039c,29, 0x1a0420,2, 0x1a042c,2, 0x1a0440,4, 0x1a0460,2, 0x1a046c,2, 0x1a0480,4, 0x1a04a0,2, 0x1a04ac,2, 0x1a04c0,4, 0x1a04e0,2, 0x1a04ec,2, 0x1a0500,2, 0x1a050c,4, 0x1a0520,2, 0x1a052c,4, 0x1a0540,2, 0x1a054c,4, 0x1a0560,2, 0x1a056c,4, 0x1a05c0,1, 0x1a0600,16, 0x1a0800,18, 0x1a0880,13, 0x1a08f0,3, 0x1a0900,18, 0x1a0980,13, 0x1a09f0,3, 0x1a0a00,18, 0x1a0a80,13, 0x1a0af0,3, 0x1a0b00,18, 0x1a0b80,13, 0x1a0bf0,3, 0x1a0c00,30, 0x1a0c80,30, 0x1a0d00,30, 0x1a0d80,30, 0x1a0e00,4, 0x1a0e20,4, 0x1a0e40,4, 0x1a0e60,4, 0x1a0e80,37, 0x1a0f20,5, 0x1a0f40,5, 0x1a0f60,5, 0x1a1000,12, 0x1a1200,1, 0x1a1208,6, 0x1a1228,9, 0x1a1280,1, 0x1a1288,6, 0x1a12a8,9, 0x1a1300,1, 0x1a1308,6, 0x1a1328,9, 0x1a1380,1, 0x1a1388,6, 0x1a13a8,9, 0x1a1400,4, 0x1a1420,4, 0x1a1440,6, 0x1a1480,4, 0x1a14a0,4, 0x1a14c0,6, 0x1a1500,4, 0x1a1520,4, 0x1a1540,6, 0x1a1580,4, 0x1a15a0,4, 0x1a15c0,6, 0x1a1600,71, 0x1a1720,7, 0x1a1740,7, 0x1a1760,7, 0x1a1780,4, 0x1a179c,11, 0x1a17d0,2, 0x1a17e0,2, 0x1a17f0,2, 0x1a1800,7, 0x1a1820,7, 0x1a1840,7, 0x1a1860,7, 0x1a18c0,64, 0x1a1aa0,2, 0x1a1ac0,8, 0x1a2000,7, 0x1a2020,4, 0x1a2040,4, 0x1a2060,7, 0x1a2080,7, 0x1a20a0,4, 0x1a20c0,4, 0x1a20e0,7, 0x1a2100,7, 0x1a2120,4, 0x1a2140,4, 0x1a2160,7, 0x1a2180,7, 0x1a21a0,4, 0x1a21c0,4, 0x1a21e0,7, 0x1a2200,19, 0x1a2280,19, 0x1a2300,19, 0x1a2380,19, 0x1a2400,14, 0x1a243c,9, 0x1a2464,14, 0x1a24a0,2, 0x1a24ac,2, 0x1a2500,14, 0x1a253c,9, 0x1a2564,14, 0x1a25a0,2, 0x1a25ac,2, 0x1a2600,14, 0x1a263c,9, 0x1a2664,14, 0x1a26a0,2, 0x1a26ac,2, 0x1a2700,14, 0x1a273c,9, 0x1a2764,14, 0x1a27a0,2, 0x1a27ac,2, 0x1a2800,19, 0x1a2880,19, 0x1a2900,19, 0x1a2980,19, 0x1a2a10,2, 0x1a2a1c,1, 0x1a2a50,2, 0x1a2a5c,1, 0x1a2a90,2, 0x1a2a9c,1, 0x1a2ad0,2, 0x1a2adc,1, 0x1a2b00,1, 0x1a2b20,1, 0x1a2b28,4, 0x1a2b40,1, 0x1a2b60,1, 0x1a2b68,4, 0x1a2b80,1, 0x1a2ba0,1, 0x1a2ba8,4, 0x1a2bc0,1, 0x1a2be0,1, 0x1a2be8,4, 0x1a2c00,7, 0x1a2c20,1, 0x1a2c54,18, 0x1a2ca0,1, 0x1a2cd4,18, 0x1a2d20,1, 0x1a2d54,18, 0x1a2da0,1, 0x1a2dd4,12, 0x1a2e08,6, 0x1a3000,32, 0x1a3100,7, 0x1a3120,7, 0x1a3140,7, 0x1a3160,7, 0x1a3180,3, 0x1a4000,4, 0x1a4014,1, 0x1a4020,3, 0x1a4030,3, 0x1a4040,13, 0x1a4078,4, 0x1a409c,29, 0x1a4114,1, 0x1a4120,3, 0x1a4130,3, 0x1a4140,13, 0x1a4178,4, 0x1a419c,29, 0x1a4214,1, 0x1a4220,3, 0x1a4230,3, 0x1a4240,13, 0x1a4278,4, 0x1a429c,29, 0x1a4314,1, 0x1a4320,3, 0x1a4330,3, 0x1a4340,13, 0x1a4378,4, 0x1a439c,29, 0x1a4420,2, 0x1a442c,2, 0x1a4440,4, 0x1a4460,2, 0x1a446c,2, 0x1a4480,4, 0x1a44a0,2, 0x1a44ac,2, 0x1a44c0,4, 0x1a44e0,2, 0x1a44ec,2, 0x1a4500,2, 0x1a450c,4, 0x1a4520,2, 0x1a452c,4, 0x1a4540,2, 0x1a454c,4, 0x1a4560,2, 0x1a456c,4, 0x1a45c0,1, 0x1a4600,16, 0x1a4800,18, 0x1a4880,13, 0x1a48f0,3, 0x1a4900,18, 0x1a4980,13, 0x1a49f0,3, 0x1a4a00,18, 0x1a4a80,13, 0x1a4af0,3, 0x1a4b00,18, 0x1a4b80,13, 0x1a4bf0,3, 0x1a4c00,30, 0x1a4c80,30, 0x1a4d00,30, 0x1a4d80,30, 0x1a4e00,4, 0x1a4e20,4, 0x1a4e40,4, 0x1a4e60,4, 0x1a4e80,37, 0x1a4f20,5, 0x1a4f40,5, 0x1a4f60,5, 0x1a5000,12, 0x1a5200,1, 0x1a5208,6, 0x1a5228,9, 0x1a5280,1, 0x1a5288,6, 0x1a52a8,9, 0x1a5300,1, 0x1a5308,6, 0x1a5328,9, 0x1a5380,1, 0x1a5388,6, 0x1a53a8,9, 0x1a5400,4, 0x1a5420,4, 0x1a5440,6, 0x1a5480,4, 0x1a54a0,4, 0x1a54c0,6, 0x1a5500,4, 0x1a5520,4, 0x1a5540,6, 0x1a5580,4, 0x1a55a0,4, 0x1a55c0,6, 0x1a5600,71, 0x1a5720,7, 0x1a5740,7, 0x1a5760,7, 0x1a5780,4, 0x1a579c,11, 0x1a57d0,2, 0x1a57e0,2, 0x1a57f0,2, 0x1a5800,7, 0x1a5820,7, 0x1a5840,7, 0x1a5860,7, 0x1a58c0,64, 0x1a5aa0,2, 0x1a5ac0,8, 0x1a6000,7, 0x1a6020,4, 0x1a6040,4, 0x1a6060,7, 0x1a6080,7, 0x1a60a0,4, 0x1a60c0,4, 0x1a60e0,7, 0x1a6100,7, 0x1a6120,4, 0x1a6140,4, 0x1a6160,7, 0x1a6180,7, 0x1a61a0,4, 0x1a61c0,4, 0x1a61e0,7, 0x1a6200,19, 0x1a6280,19, 0x1a6300,19, 0x1a6380,19, 0x1a6400,14, 0x1a643c,9, 0x1a6464,14, 0x1a64a0,2, 0x1a64ac,2, 0x1a6500,14, 0x1a653c,9, 0x1a6564,14, 0x1a65a0,2, 0x1a65ac,2, 0x1a6600,14, 0x1a663c,9, 0x1a6664,14, 0x1a66a0,2, 0x1a66ac,2, 0x1a6700,14, 0x1a673c,9, 0x1a6764,14, 0x1a67a0,2, 0x1a67ac,2, 0x1a6800,19, 0x1a6880,19, 0x1a6900,19, 0x1a6980,19, 0x1a6a10,2, 0x1a6a1c,1, 0x1a6a50,2, 0x1a6a5c,1, 0x1a6a90,2, 0x1a6a9c,1, 0x1a6ad0,2, 0x1a6adc,1, 0x1a6b00,1, 0x1a6b20,1, 0x1a6b28,4, 0x1a6b40,1, 0x1a6b60,1, 0x1a6b68,4, 0x1a6b80,1, 0x1a6ba0,1, 0x1a6ba8,4, 0x1a6bc0,1, 0x1a6be0,1, 0x1a6be8,4, 0x1a6c00,7, 0x1a6c20,1, 0x1a6c54,18, 0x1a6ca0,1, 0x1a6cd4,18, 0x1a6d20,1, 0x1a6d54,18, 0x1a6da0,1, 0x1a6dd4,12, 0x1a6e08,6, 0x1a7000,32, 0x1a7100,7, 0x1a7120,7, 0x1a7140,7, 0x1a7160,7, 0x1a7180,3, 0x1a8000,21, 0x1ac000,16, 0x1ac080,11, 0x1ac100,11, 0x1ac204,1, 0x1ac224,21, 0x1ac280,16, 0x1ac300,11, 0x1ac340,11, 0x1ac800,21, 0x1ac860,5, 0x1ac880,6, 0x1ac8a0,5, 0x1ac8c0,6, 0x1ac900,21, 0x1ac960,5, 0x1ac980,6, 0x1ac9a0,5, 0x1ac9c0,6, 0x1aca00,21, 0x1aca60,5, 0x1aca80,6, 0x1acaa0,5, 0x1acac0,6, 0x1acb00,21, 0x1acb60,5, 0x1acb80,6, 0x1acba0,5, 0x1acbc0,6, 0x1acc00,9, 0x1acc48,7, 0x1acc68,2, 0x1acc74,9, 0x1acc9c,2, 0x1acd00,14, 0x1acd40,14, 0x1acd80,24, 0x1ace00,19, 0x1ace50,3, 0x1ace60,25, 0x1acec8,1, 0x1aced0,2, 0x1acee0,7, 0x1acf00,1, 0x1acf08,2, 0x1acffc,20, 0x1ad050,22, 0x1ad100,19, 0x1ad150,22, 0x1ad200,19, 0x1ad250,22, 0x1ad300,19, 0x1ad350,22, 0x1ad400,19, 0x1ad450,22, 0x1ad500,19, 0x1ad550,22, 0x1ad600,19, 0x1ad650,22, 0x1ad700,19, 0x1ad750,22, 0x1ad800,19, 0x1ad850,22, 0x1ad904,1, 0x1ad914,10, 0x1ad948,11, 0x1ad980,1, 0x1ad9a0,6, 0x1ad9c0,2, 0x1ad9cc,2, 0x1ae000,35, 0x1aea00,10, 0x1aea80,3, 0x1aeac0,1, 0x1af000,1, 0x1af008,3, 0x1af038,1, 0x1af044,1, 0x1af050,2, 0x1af060,8, 0x1af100,13, 0x1af140,19, 0x1af190,5, 0x1b0000,13, 0x1b0040,2, 0x1b0054,4, 0x1b0080,27, 0x1b0100,12, 0x1b0140,14, 0x1b0180,28, 0x1b0200,6, 0x1b0240,6, 0x1b025c,3, 0x1b0280,5, 0x1b02a0,8, 0x1b0400,14, 0x1b0440,14, 0x1b0480,14, 0x1b04c0,14, 0x1b0540,3, 0x1b0600,7, 0x1b0620,14, 0x1b0680,5, 0x1b06a0,7, 0x1b0800,13, 0x1b0840,2, 0x1b0854,4, 0x1b0880,27, 0x1b0900,12, 0x1b0940,14, 0x1b0980,28, 0x1b0a00,6, 0x1b0a40,6, 0x1b0a5c,3, 0x1b0a80,5, 0x1b0aa0,8, 0x1b0c00,14, 0x1b0c40,14, 0x1b0c80,14, 0x1b0cc0,14, 0x1b0d40,3, 0x1b0e00,7, 0x1b0e20,14, 0x1b0e80,5, 0x1b0ea0,7, 0x1b1000,13, 0x1b1040,2, 0x1b1054,4, 0x1b1080,27, 0x1b1100,12, 0x1b1140,14, 0x1b1180,28, 0x1b1200,6, 0x1b1240,6, 0x1b125c,3, 0x1b1280,5, 0x1b12a0,8, 0x1b1400,14, 0x1b1440,14, 0x1b1480,14, 0x1b14c0,14, 0x1b1540,3, 0x1b1600,7, 0x1b1620,14, 0x1b1680,5, 0x1b16a0,7, 0x1b1800,13, 0x1b1840,2, 0x1b1854,4, 0x1b1880,27, 0x1b1900,12, 0x1b1940,14, 0x1b1980,28, 0x1b1a00,6, 0x1b1a40,6, 0x1b1a5c,3, 0x1b1a80,5, 0x1b1aa0,8, 0x1b1c00,14, 0x1b1c40,14, 0x1b1c80,14, 0x1b1cc0,14, 0x1b1d40,3, 0x1b1e00,7, 0x1b1e20,14, 0x1b1e80,5, 0x1b1ea0,7, 0x1b2000,8, 0x1b2040,8, 0x1b2080,1, 0x1b2098,6, 0x1b2100,10, 0x1b2140,3, 0x1b2150,2, 0x1b2180,2, 0x1b2200,6, 0x1b2220,18, 0x1b2280,4, 0x1b2300,8, 0x1b2400,2, 0x1b2480,2, 0x1b3000,40, 0x1b3100,64, 0x1b4000,13, 0x1b4040,2, 0x1b4054,4, 0x1b4080,27, 0x1b4100,12, 0x1b4140,14, 0x1b4180,28, 0x1b4200,6, 0x1b4240,6, 0x1b425c,3, 0x1b4280,5, 0x1b42a0,8, 0x1b4400,14, 0x1b4440,14, 0x1b4480,14, 0x1b44c0,14, 0x1b4540,3, 0x1b4600,7, 0x1b4620,14, 0x1b4680,5, 0x1b46a0,7, 0x1b4800,13, 0x1b4840,2, 0x1b4854,4, 0x1b4880,27, 0x1b4900,12, 0x1b4940,14, 0x1b4980,28, 0x1b4a00,6, 0x1b4a40,6, 0x1b4a5c,3, 0x1b4a80,5, 0x1b4aa0,8, 0x1b4c00,14, 0x1b4c40,14, 0x1b4c80,14, 0x1b4cc0,14, 0x1b4d40,3, 0x1b4e00,7, 0x1b4e20,14, 0x1b4e80,5, 0x1b4ea0,7, 0x1b5000,13, 0x1b5040,2, 0x1b5054,4, 0x1b5080,27, 0x1b5100,12, 0x1b5140,14, 0x1b5180,28, 0x1b5200,6, 0x1b5240,6, 0x1b525c,3, 0x1b5280,5, 0x1b52a0,8, 0x1b5400,14, 0x1b5440,14, 0x1b5480,14, 0x1b54c0,14, 0x1b5540,3, 0x1b5600,7, 0x1b5620,14, 0x1b5680,5, 0x1b56a0,7, 0x1b5800,13, 0x1b5840,2, 0x1b5854,4, 0x1b5880,27, 0x1b5900,12, 0x1b5940,14, 0x1b5980,28, 0x1b5a00,6, 0x1b5a40,6, 0x1b5a5c,3, 0x1b5a80,5, 0x1b5aa0,8, 0x1b5c00,14, 0x1b5c40,14, 0x1b5c80,14, 0x1b5cc0,14, 0x1b5d40,3, 0x1b5e00,7, 0x1b5e20,14, 0x1b5e80,5, 0x1b5ea0,7, 0x1b6000,8, 0x1b6040,8, 0x1b6080,1, 0x1b6098,6, 0x1b6100,10, 0x1b6140,3, 0x1b6150,2, 0x1b6180,2, 0x1b6200,6, 0x1b6220,18, 0x1b6280,4, 0x1b6300,8, 0x1b6400,2, 0x1b6480,2, 0x1b7000,40, 0x1b7100,64, 0x1c0000,11, 0x1c0040,16, 0x1c0200,7, 0x1c0220,6, 0x1c0240,7, 0x1c0260,6, 0x1c0280,6, 0x1c02a0,2, 0x1c02ac,2, 0x1c02c0,7, 0x1c02e0,7, 0x1c0300,2, 0x1c030c,2, 0x1c0320,6, 0x1c0400,2, 0x1c1000,19, 0x1c1a00,10, 0x1c1a80,3, 0x1c2000,25, 0x1c2070,6, 0x1c208c,1, 0x1c2094,1, 0x1c209c,8, 0x1c2104,23, 0x1c2180,7, 0x1c21a0,6, 0x1c21c0,7, 0x1c21e0,6, 0x1c2200,4, 0x1c2220,4, 0x1c2240,11, 0x1c2270,32, 0x1c2300,24, 0x1c2380,20, 0x1c2400,61, 0x1c2500,25, 0x1c2568,4, 0x1c2580,2, 0x1c25a0,1, 0x1c25c0,11, 0x1c2600,9, 0x1c2680,22, 0x1c2700,17, 0x1c2800,11, 0x1c2a00,25, 0x1c2a80,1, 0x1c2a88,8, 0x1c2ac0,6, 0x1c2ae0,1, 0x1c2ae8,2, 0x1c2b04,4, 0x1c3000,650, 0x1c4000,25, 0x1c4070,6, 0x1c408c,1, 0x1c4094,1, 0x1c409c,8, 0x1c4104,23, 0x1c4180,7, 0x1c41a0,6, 0x1c41c0,7, 0x1c41e0,6, 0x1c4200,4, 0x1c4220,4, 0x1c4240,11, 0x1c4270,32, 0x1c4300,24, 0x1c4380,20, 0x1c4400,61, 0x1c4500,25, 0x1c4568,4, 0x1c4580,2, 0x1c45a0,1, 0x1c45c0,11, 0x1c4600,9, 0x1c4680,22, 0x1c4700,17, 0x1c4800,11, 0x1c4a00,25, 0x1c4a80,1, 0x1c4a88,8, 0x1c4ac0,6, 0x1c4ae0,1, 0x1c4ae8,2, 0x1c4b04,4, 0x1c5000,650, 0x1ca000,7, 0x1ca048,8, 0x1ca080,8, 0x1ca100,7, 0x1ca148,8, 0x1ca180,8, 0x1ca200,2, 0x1d0000,19, 0x1d0a00,10, 0x1d0a80,3, 0x1d1000,2, 0x1d100c,4, 0x1d1028,3, 0x1d1038,4, 0x1d1050,2, 0x1d1080,4, 0x1d1098,7, 0x1d1120,4, 0x1d1200,4, 0x1d1214,5, 0x1d1240,4, 0x1d1254,5, 0x1d1280,8, 0x1d12c0,5, 0x1d1300,2, 0x1d130c,3, 0x1d1400,24, 0x1d1464,2, 0x1d1470,3, 0x1d1500,25, 0x1d15c0,8, 0x1d15e8,5, 0x1d1600,5, 0x1d1618,1, 0x1d1620,1, 0x1d1628,1, 0x1d1630,2, 0x1d1640,2, 0x1d1650,2, 0x1d1690,2, 0x1d1740,2, 0x1d1760,6, 0x1d1780,6, 0x1d17a0,6, 0x1d17c0,6, 0x1d17e0,1, 0x1d1800,19, 0x1d1880,2, 0x1d18b0,2, 0x1d18c0,2, 0x1d2040,3, 0x1d2054,2, 0x1d2064,2, 0x1d2098,2, 0x1d20a8,2, 0x1d20b8,2, 0x1d20ec,2, 0x1d20fc,2, 0x1d210c,2, 0x1d2140,2, 0x1d2150,2, 0x1d2160,2, 0x1d2170,2, 0x1d2194,2, 0x1d21a4,2, 0x1d21b4,2, 0x1d21c4,2, 0x1d21e8,2, 0x1d21f8,2, 0x1d2208,2, 0x1d2218,2, 0x1d223c,2, 0x1d224c,2, 0x1d225c,7, 0x1d2400,1, 0x1d8000,1, 0x1d8008,4, 0x1d8020,1, 0x1d8030,5, 0x1d8080,8, 0x1d80c0,1, 0x1d8100,4, 0x1d8180,18, 0x1d8200,4, 0x1d8220,5, 0x1d8240,14, 0x1d8280,6, 0x1d82a0,2, 0x1d82ac,2, 0x1d82c0,2, 0x1d82cc,2, 0x1d8300,4, 0x1d8340,9, 0x1d8400,18, 0x1d8480,18, 0x1d8500,5, 0x1d8520,5, 0x1d8540,18, 0x1d8590,2, 0x1d8600,9, 0x1d8640,9, 0x1d8e00,13, 0x1d8e80,1, 0x1d8e88,8, 0x1d8ec0,6, 0x1d8ee0,1, 0x1d8ee8,2, 0x1d8f04,2, 0x1d9000,68, 0x1d9200,6, 0x1d9220,1, 0x1d9240,2, 0x1d924c,2, 0x1d9260,11, 0x1d9290,10, 0x1d92c0,1, 0x1d92e0,1, 0x1d92f0,7, 0x1d9310,10, 0x1d9344,1, 0x1d935c,28, 0x1d9400,25, 0x1d9480,1, 0x1d9488,8, 0x1d94c0,6, 0x1d94e0,1, 0x1d94e8,2, 0x1d9504,13, 0x1d9600,2, 0x1d9620,8, 0x1d9700,7, 0x1d9800,2, 0x1d980c,2, 0x1d9820,2, 0x1d982c,2, 0x1d9900,2, 0x1d9910,2, 0x1d9b00,2, 0x1d9c00,2, 0x1d9c84,1, 0x1d9cb4,19, 0x1d9d04,1, 0x1d9d0c,7, 0x1d9d84,1, 0x1d9d9c,11, 0x1d9e00,4, 0x1d9e44,1, 0x1d9e50,12, 0x1da000,6, 0x1da020,3, 0x1da100,11, 0x1da200,13, 0x1da240,1, 0x1da260,6, 0x1db000,19, 0x1e0000,135, 0x1e0300,6, 0x1e0320,6, 0x1e0340,6, 0x1e0360,6, 0x1e0380,6, 0x1e03a0,6, 0x1e03c0,6, 0x1e03e0,6, 0x1e0400,6, 0x1e0420,6, 0x1e0440,6, 0x1e0460,6, 0x1e0480,6, 0x1e04a0,6, 0x1e04c0,6, 0x1e04e0,6, 0x1e0500,135, 0x1e0800,6, 0x1e0820,6, 0x1e0840,6, 0x1e0860,6, 0x1e0880,6, 0x1e08a0,6, 0x1e08c0,6, 0x1e08e0,6, 0x1e0900,6, 0x1e0920,6, 0x1e0940,6, 0x1e0960,6, 0x1e0980,6, 0x1e09a0,6, 0x1e09c0,6, 0x1e09e0,6, 0x1e0a00,135, 0x1e0d00,6, 0x1e0d20,6, 0x1e0d40,6, 0x1e0d60,6, 0x1e0d80,6, 0x1e0da0,6, 0x1e0dc0,6, 0x1e0de0,6, 0x1e0e00,6, 0x1e0e20,6, 0x1e0e40,6, 0x1e0e60,6, 0x1e0e80,6, 0x1e0ea0,6, 0x1e0ec0,6, 0x1e0ee0,6, 0x1e0f00,135, 0x1e1200,6, 0x1e1220,6, 0x1e1240,6, 0x1e1260,6, 0x1e1280,6, 0x1e12a0,6, 0x1e12c0,6, 0x1e12e0,6, 0x1e1300,6, 0x1e1320,6, 0x1e1340,6, 0x1e1360,6, 0x1e1380,6, 0x1e13a0,6, 0x1e13c0,6, 0x1e13e0,6, 0x1e1400,135, 0x1e1700,6, 0x1e1720,6, 0x1e1740,6, 0x1e1760,6, 0x1e1780,6, 0x1e17a0,6, 0x1e17c0,6, 0x1e17e0,6, 0x1e1800,6, 0x1e1820,6, 0x1e1840,6, 0x1e1860,6, 0x1e1880,6, 0x1e18a0,6, 0x1e18c0,6, 0x1e18e0,6, 0x1e2d00,2, 0x1e4400,2, 0x1e4410,2, 0x1e4424,2, 0x1e4444,3, 0x1e4500,2, 0x1e4544,1, 0x1e4564,17, 0x1e45d0,2, 0x1e45e0,6, 0x1e4600,5, 0x1e4800,4, 0x1e4840,2, 0x1e4900,4, 0x1e4980,23, 0x1e5000,6, 0x1e8004,1, 0x1e8038,18, 0x1e8100,24, 0x1e8300,1, 0x1e8308,1, 0x1e8310,1, 0x1e8318,1, 0x1e8320,1, 0x1e8328,1, 0x1e8330,1, 0x1e8338,1, 0x1e8340,1, 0x1e8348,1, 0x1e8350,1, 0x1e8358,1, 0x1e8400,2, 0x1e8484,1, 0x1e84b8,19, 0x1e8600,2, 0x1e8684,1, 0x1e86b8,20, 0x1e8800,20, 0x1e8900,3, 0x1e8910,3, 0x1e8920,3, 0x1e8930,3, 0x1e8940,3, 0x1e8950,3, 0x1e8960,3, 0x1e8970,3, 0x1e8980,3, 0x1e8990,3, 0x1e8a80,10, 0x1e8b80,3, 0x1e8c04,1, 0x1e8c2c,21, 0x1e8d00,3, 0x1e8d10,3, 0x1e8d20,3, 0x1e8d30,3, 0x1e8d40,3, 0x1e8e00,8, 0x1e9044,1, 0x1e904c,1, 0x1e9080,5, 0x1e9100,1, 0x1e9108,2, 0x1e9120,1, 0x1e9200,32, 0x1e9300,5, 0x1e931c,1, 0x1e9400,6, 0x1e9420,7, 0x1e9440,7, 0x1e9460,6, 0x1e9500,25, 0x1e9580,1, 0x1e95a0,6, 0x1e9600,35, 0x1f0000,19, 0x1f0080,19, 0x1f0100,3, 0x1f0a00,10, 0x1f0a80,3, 0x1f1000,24, 0x1f1500,4, 0x1f1600,25, 0x1f1680,4, 0x1f1700,1, 0x1f1708,4, 0x1f2000,2, 0x1f2084,1, 0x1f2098,28, 0x1f2184,1, 0x1f21bc,35, 0x1f224c,2, 0x1f2260,6, 0x1f3000,2, 0x1f3400,7, 0x1f3500,2, 0x1f4000,11, 0x1f4030,11, 0x1f4064,48, 0x1f4210,4, 0x1f4224,1, 0x1f4400,3, 0x1f4414,19, 0x1f44b0,3, 0x1f44c0,7, 0x1f4500,8, 0x1f4524,5, 0x1f4580,2, 0x1f458c,2, 0x1f45a0,1, 0x1f45c0,1, 0x1f4600,3, 0x1f4614,3, 0x1f4650,4, 0x1f4680,4, 0x1f46b0,3, 0x1f46c0,7, 0x1f4700,8, 0x1f4724,5, 0x1f4780,2, 0x1f478c,2, 0x1f47a0,1, 0x1f47c0,1, 0x1f4800,6, 0x1f4824,3, 0x1f4834,3, 0x1f4844,7, 0x1f5000,66, 0x1f5118,2, 0x1f5128,2, 0x1f5140,11, 0x1f5178,2, 0x1f5200,99, 0x1f5400,4, 0x1f5500,34, 0x1f5600,2, 0x1f560c,2, 0x1f5620,3, 0x1f5630,3, 0x1f5640,4, 0x1f5654,6, 0x1f5670,3, 0x1f5800,10, 0x1f5830,18, 0x1f5880,1, 0x1f5900,10, 0x1f5940,10, 0x1f5980,10, 0x1f59c0,10, 0x1f5a00,10, 0x1f5c00,3, 0x1f5c20,2, 0x1f5c68,2, 0x1f5c98,2, 0x1f5d00,64, 0x1f6000,5, 0x1f6020,7, 0x1f6040,6, 0x1f6060,2, 0x1f606c,2, 0x1f6100,2, 0x1f6184,1, 0x1f61c4,17, 0x1f6284,1, 0x1f62c4,15, 0x1f6400,21, 0x1f6500,40, 0x1f6600,4, 0x1f6620,2, 0x1f662c,2, 0x1f6800,43, 0x200000,1, 0x200008,2, 0x200050,2, 0x200080,42, 0x200144,3, 0x200190,2, 0x2001a0,6, 0x2001c0,5, 0x2001e0,2, 0x2001ec,3, 0x200404,4, 0x200420,4, 0x200440,1, 0x200490,8, 0x2004c0,1, 0x2004c8,4, 0x200500,2, 0x200524,1, 0x200530,6, 0x200580,2, 0x2005a0,2, 0x2005b4,9, 0x2005e0,7, 0x200600,5, 0x200620,2, 0x200640,3, 0x200650,3, 0x200660,1, 0x200680,1, 0x200688,2, 0x201000,19, 0x202000,43, 0x202200,25, 0x202280,1, 0x202288,8, 0x2022c0,6, 0x2022e0,1, 0x2022e8,2, 0x204000,11, 0x204044,4, 0x204400,2, 0x204484,1, 0x2044b4,19, 0x204600,4, 0x204644,1, 0x204650,12, 0x204a00,19, 0x205000,13, 0x205080,1, 0x205088,8, 0x2050c0,6, 0x2050e0,1, 0x2050e8,2, 0x205104,1, 0x205200,4, 0x205280,25, 0x205300,4, 0x205380,17, 0x205400,4, 0x205500,42, 0x205600,25, 0x205680,25, 0x205700,1, 0x205800,17, 0x205880,17, 0x205900,1, 0x205c00,42, 0x205d00,42, 0x205e00,1, 0x206000,1, 0x206008,4, 0x206020,1, 0x206030,5, 0x206080,8, 0x2060c0,1, 0x206100,4, 0x206180,18, 0x206200,4, 0x206220,5, 0x206240,14, 0x206280,6, 0x2062a0,2, 0x2062ac,2, 0x2062c0,2, 0x2062cc,2, 0x206300,4, 0x206340,9, 0x206400,18, 0x206480,18, 0x206500,5, 0x206520,5, 0x206540,18, 0x206590,2, 0x206600,9, 0x206640,9, 0x206e00,13, 0x206e80,1, 0x206e88,8, 0x206ec0,6, 0x206ee0,1, 0x206ee8,2, 0x206f04,2, 0x207000,68, 0x207200,6, 0x207220,1, 0x207240,2, 0x20724c,2, 0x207260,11, 0x207290,10, 0x2072c0,1, 0x2072e0,1, 0x2072f0,7, 0x207310,10, 0x207344,1, 0x20735c,28, 0x207400,25, 0x207480,1, 0x207488,8, 0x2074c0,6, 0x2074e0,1, 0x2074e8,2, 0x207504,13, 0x207600,2, 0x207620,8, 0x207700,7, 0x207800,2, 0x20780c,2, 0x207820,2, 0x20782c,2, 0x207900,2, 0x207910,2, 0x207b00,2, 0x207c00,2, 0x207c84,1, 0x207cb4,19, 0x207d04,1, 0x207d0c,7, 0x207d84,1, 0x207d9c,11, 0x207e00,4, 0x207e44,1, 0x207e50,12, 0x210000,12, 0x210044,3, 0x210080,2, 0x210180,2, 0x210200,2, 0x210260,3, 0x210280,4, 0x2102c0,4, 0x210304,1, 0x210340,16, 0x210400,8, 0x210580,8, 0x210700,4, 0x210740,4, 0x210780,4, 0x2107c0,4, 0x210800,8, 0x210880,8, 0x2108c0,7, 0x210900,2, 0x210910,2, 0x210920,2, 0x210930,1, 0x210938,1, 0x210950,1, 0x21095c,1, 0x210a00,1, 0x210a10,1, 0x210a20,1, 0x211b00,62, 0x211c00,8, 0x211c80,11, 0x211cc0,2, 0x211cd0,2, 0x212000,6, 0x212020,13, 0x212058,1, 0x212060,1, 0x212068,1, 0x212104,1, 0x212120,47, 0x212204,1, 0x212210,4, 0x212224,1, 0x21222c,1, 0x212244,3, 0x212260,2, 0x212270,3, 0x212280,5, 0x212304,1, 0x212310,4, 0x212384,1, 0x21238c,3, 0x212604,1, 0x212620,46, 0x212704,1, 0x212710,4, 0x212780,2, 0x212794,1, 0x21279c,2, 0x2127b0,2, 0x2127c8,1, 0x2127dc,1, 0x212804,1, 0x212848,46, 0x212a04,1, 0x212a10,28, 0x212b04,31, 0x212c04,1, 0x212c10,28, 0x213004,1, 0x213010,12, 0x213084,1, 0x2130a0,8, 0x2130c4,1, 0x2130e0,8, 0x213104,1, 0x213120,8, 0x213144,7, 0x213184,7, 0x2131c4,7, 0x213204,1, 0x213220,8, 0x213244,7, 0x213284,7, 0x2132c4,7, 0x213304,1, 0x213320,8, 0x213344,7, 0x213384,7, 0x2133c4,7, 0x213404,1, 0x213420,8, 0x213604,1, 0x213610,4, 0x213624,1, 0x21362c,1, 0x213634,1, 0x21363c,2, 0x213648,2, 0x214000,3, 0x214020,1, 0x214028,3, 0x214048,1, 0x214050,1, 0x214060,4, 0x214104,6, 0x214144,1, 0x21414c,4, 0x214164,1, 0x21416c,4, 0x214184,1, 0x21418c,4, 0x2141a4,1, 0x2141ac,4, 0x2141c4,1, 0x2141cc,4, 0x214244,1, 0x21424c,4, 0x214264,1, 0x21426c,4, 0x214284,1, 0x21428c,4, 0x2142a4,1, 0x2142ac,4, 0x2142c4,1, 0x2142cc,4, 0x2142e4,1, 0x2142ec,4, 0x214400,15, 0x214500,13, 0x214580,13, 0x214600,23, 0x214700,21, 0x214780,21, 0x214800,13, 0x214880,13, 0x214900,14, 0x214980,14, 0x214a00,13, 0x214a80,13, 0x214c00,9, 0x214c40,9, 0x214c80,4, 0x214c94,1, 0x215400,67, 0x215900,13, 0x215a00,4, 0x215a40,11, 0x215b00,1, 0x215b08,1, 0x217000,19, 0x228000,19, 0x229000,25, 0x229080,1, 0x2290a0,6, 0x229100,2, 0x229110,26, 0x229184,7, 0x229200,2, 0x229284,1, 0x2292b0,21, 0x229310,5, 0x229330,4, 0x229804,1, 0x229840,16, 0x229884,1, 0x2298c0,16, 0x229904,1, 0x229930,20, 0x229984,1, 0x2299c0,16, 0x229a04,1, 0x229a14,11, 0x229a84,1, 0x229ac0,16, 0x229b04,1, 0x229b40,16, 0x229b84,1, 0x229bc0,16, 0x229c04,1, 0x229c3c,17, 0x229c84,1, 0x229ca0,10, 0x22a000,294, 0x22a49c,1, 0x22a4a4,3, 0x22a4c4,3, 0x22a4fc,21, 0x22a580,20, 0x22a600,22, 0x22a664,1, 0x22a674,3, 0x22b000,2, 0x22b018,16, 0x22b060,1, 0x22b068,4, 0x22b080,4, 0x22b0a0,5, 0x22b0c0,4, 0x22b0e0,7, 0x22b100,4, 0x22b180,22, 0x22b200,4, 0x22b300,34, 0x22b400,4, 0x22b440,13, 0x22b480,7, 0x22b4a0,6, 0x22b4c0,6, 0x22b4e0,7, 0x22b500,4, 0x22b580,22, 0x22b600,4, 0x22b680,25, 0x22b700,4, 0x22b780,22, 0x22b800,4, 0x22b840,14, 0x22b880,4, 0x22b8a0,8, 0x22be00,75, 0x22c000,9, 0x22c040,9, 0x22c080,9, 0x22c0c0,9, 0x22c100,9, 0x22c140,9, 0x22c180,9, 0x22c1c0,9, 0x22c200,13, 0x22c23c,1, 0x22c270,12, 0x22c2c0,7, 0x22c2e0,7, 0x22c300,4, 0x22c318,15, 0x22c400,36, 0x22c500,36, 0x22c600,36, 0x22c700,36, 0x230000,3, 0x230010,3, 0x230020,3, 0x230040,16, 0x230090,3, 0x2300a0,3, 0x2300c0,6, 0x2300e0,4, 0x230100,10, 0x230140,4, 0x230154,1, 0x230160,1, 0x230170,2, 0x230180,17, 0x230200,4, 0x230214,6, 0x230230,10, 0x230280,5, 0x2302a0,1, 0x2302a8,1, 0x230300,14, 0x230340,14, 0x230380,78, 0x2304c0,5, 0x230500,32, 0x230604,4, 0x230700,3, 0x230800,15, 0x230880,14, 0x2308c0,5, 0x2308e0,6, 0x230900,1, 0x230910,5, 0x230930,5, 0x230950,5, 0x230970,4, 0x2309a4,3, 0x2309c0,1, 0x2309c8,4, 0x2309e0,1, 0x230a00,34, 0x230b00,20, 0x230b80,1, 0x230b90,3, 0x230bf0,1, 0x230bf8,9, 0x230c20,7, 0x230c40,7, 0x230c60,7, 0x230c80,1, 0x230d00,3, 0x230d10,1, 0x230d18,1, 0x230d20,1, 0x230d30,2, 0x230d40,1, 0x230d48,4, 0x230d60,3, 0x230d70,3, 0x230d84,2, 0x230d90,6, 0x230db4,1, 0x230dbc,1, 0x230dc4,1, 0x230dd0,4, 0x231000,2, 0x231084,1, 0x2310bc,19, 0x231184,1, 0x2311b0,22, 0x231244,1, 0x23125c,9, 0x231400,1, 0x231408,4, 0x231420,1, 0x231428,4, 0x231458,2, 0x231480,4, 0x2314c0,19, 0x231510,6, 0x231600,5, 0x23161c,2, 0x231640,9, 0x231680,1, 0x231690,4, 0x2316a4,4, 0x231800,2, 0x231844,1, 0x231860,8, 0x231884,1, 0x231894,28, 0x231920,1, 0x231930,5, 0x231948,2, 0x231c04,1, 0x231c10,12, 0x231c44,1, 0x231c50,12, 0x231c84,1, 0x231c90,12, 0x231cc4,1, 0x231cd0,12, 0x231d80,14, 0x231f80,1, 0x231f90,4, 0x231fa8,3, 0x231fc0,1, 0x231fe8,2, 0x232000,68, 0x232200,6, 0x232220,1, 0x232240,2, 0x23224c,2, 0x232260,11, 0x232290,10, 0x2322c0,1, 0x2322e0,1, 0x2322f0,7, 0x232310,10, 0x232344,1, 0x23235c,28, 0x232400,25, 0x232480,1, 0x232488,8, 0x2324c0,6, 0x2324e0,1, 0x2324e8,2, 0x232504,13, 0x232600,2, 0x232620,8, 0x232700,7, 0x232800,2, 0x23280c,2, 0x232820,2, 0x23282c,2, 0x232900,2, 0x232910,2, 0x232b00,2, 0x232c00,2, 0x232c84,1, 0x232cb4,19, 0x232d04,1, 0x232d0c,7, 0x232d84,1, 0x232d9c,11, 0x232e00,4, 0x232e44,1, 0x232e50,12, 0x233000,2, 0x233084,1, 0x2330bc,18, 0x233108,4, 0x233120,5, 0x233140,3, 0x233150,2, 0x233800,3, 0x233820,8, 0x233844,1, 0x233850,14, 0x233900,1, 0x233920,5, 0x233940,2, 0x233954,1, 0x23395c,3, 0x233980,1, 0x233988,5, 0x2339a0,3, 0x2339b0,3, 0x2339c0,1, 0x2339c8,4, 0x2339e0,4, 0x233a00,2, 0x233a20,3, 0x234000,4, 0x234100,34, 0x234200,4, 0x234280,17, 0x234300,4, 0x234380,30, 0x234400,11, 0x234440,4, 0x234800,2, 0x234884,1, 0x2348b4,19, 0x234984,1, 0x234990,6, 0x234a00,10, 0x234c00,25, 0x234c80,1, 0x234c88,8, 0x234cc0,6, 0x234ce0,1, 0x234ce8,2, 0x234d04,3, 0x234e00,2, 0x235000,4, 0x235080,25, 0x235100,1, 0x235200,1, 0x235210,5, 0x235230,5, 0x235250,6, 0x235300,43, 0x235400,1, 0x236004,5, 0x236104,4, 0x236204,4, 0x236300,2, 0x236400,29, 0x236480,2, 0x2364a4,1, 0x2364b4,5, 0x236500,2, 0x236584,1, 0x2365c4,17, 0x236684,1, 0x2366b4,21, 0x236720,3, 0x236730,5, 0x236800,59, 0x236b00,2, 0x236b10,2, 0x236b20,2, 0x236c00,2, 0x236c84,1, 0x236c8c,32, 0x236e00,25, 0x236e80,1, 0x236ea0,6, 0x237000,35, 0x237a00,10, 0x237a80,3, 0x237ac0,1, 0x240400,19, 0x240480,12, 0x240500,4, 0x260000,3, 0x260018,2, 0x260024,13, 0x260060,27, 0x2600d0,3, 0x2600e0,3, 0x2600f0,3, 0x260100,4, 0x260114,9, 0x260140,3, 0x260160,2, 0x260180,3, 0x26019c,18, 0x2601ec,4, 0x260200,11, 0x260240,1, 0x26027c,4, 0x260400,3, 0x260418,2, 0x260424,13, 0x260460,27, 0x2604d0,3, 0x2604e0,3, 0x2604f0,3, 0x260500,4, 0x260514,9, 0x260540,3, 0x260560,2, 0x260580,3, 0x26059c,18, 0x2605ec,4, 0x260600,11, 0x260640,1, 0x26067c,4, 0x260800,3, 0x260818,2, 0x260824,13, 0x260860,27, 0x2608d0,3, 0x2608e0,3, 0x2608f0,3, 0x260900,4, 0x260914,9, 0x260940,3, 0x260960,2, 0x260980,3, 0x26099c,18, 0x2609ec,4, 0x260a00,11, 0x260a40,1, 0x260a7c,4, 0x260c00,3, 0x260c18,2, 0x260c24,13, 0x260c60,27, 0x260cd0,3, 0x260ce0,3, 0x260cf0,3, 0x260d00,4, 0x260d14,9, 0x260d40,3, 0x260d60,2, 0x260d80,3, 0x260d9c,18, 0x260dec,4, 0x260e00,11, 0x260e40,1, 0x260e7c,4, 0x261000,3, 0x261018,2, 0x261024,13, 0x261060,27, 0x2610d0,3, 0x2610e0,3, 0x2610f0,3, 0x261100,4, 0x261114,9, 0x261140,3, 0x261160,2, 0x261180,3, 0x26119c,18, 0x2611ec,4, 0x261200,11, 0x261240,1, 0x26127c,4, 0x261400,3, 0x261418,2, 0x261424,13, 0x261460,27, 0x2614d0,3, 0x2614e0,3, 0x2614f0,3, 0x261500,4, 0x261514,9, 0x261540,3, 0x261560,2, 0x261580,3, 0x26159c,18, 0x2615ec,4, 0x261600,11, 0x261640,1, 0x26167c,4, 0x261800,3, 0x261818,2, 0x261824,13, 0x261860,27, 0x2618d0,3, 0x2618e0,3, 0x2618f0,3, 0x261900,4, 0x261914,9, 0x261940,3, 0x261960,2, 0x261980,3, 0x26199c,18, 0x2619ec,4, 0x261a00,11, 0x261a40,1, 0x261a7c,4, 0x261c00,3, 0x261c18,2, 0x261c24,13, 0x261c60,27, 0x261cd0,3, 0x261ce0,3, 0x261cf0,3, 0x261d00,4, 0x261d14,9, 0x261d40,3, 0x261d60,2, 0x261d80,3, 0x261d9c,18, 0x261dec,4, 0x261e00,11, 0x261e40,1, 0x261e7c,4, 0x263008,23, 0x263070,1, 0x263080,2, 0x26308c,1, 0x263098,2, 0x263100,5, 0x263200,17, 0x263248,4, 0x263260,5, 0x263280,1, 0x263288,4, 0x2632a0,5, 0x2632c0,1, 0x2632c8,4, 0x2632e0,5, 0x263300,1, 0x263308,4, 0x263320,5, 0x263404,1, 0x263440,24, 0x2634a4,4, 0x2634bc,11, 0x2634f0,68, 0x263660,9, 0x263690,13, 0x2636e0,2, 0x2636ec,2, 0x263a00,6, 0x263a20,2, 0x263a30,1, 0x263a40,8, 0x263a64,5, 0x263e00,67, 0x2645f0,4, 0x264604,1, 0x264640,16, 0x2646f0,4, 0x264704,1, 0x264740,16, 0x264a04,3, 0x264b00,33, 0x264b90,3, 0x264e08,4, 0x264e20,10, 0x264e80,25, 0x267450,3, 0x267464,3, 0x2674d8,2, 0x267500,1, 0x267510,12, 0x267580,3, 0x2675c0,3, 0x267600,8, 0x267680,19, 0x267708,2, 0x267720,7, 0x267740,7, 0x267760,4, 0x267800,99, 0x267a00,16, 0x267a80,1, 0x267b00,3, 0x267b80,4, 0x267ba0,6, 0x267bc0,9, 0x267c00,91, 0x267e00,10, 0x267f20,9, 0x267f50,3, 0x267f68,1, 0x267f70,12, 0x280004,5, 0x280020,1, 0x280040,7, 0x280060,3, 0x280070,1, 0x280080,5, 0x280800,672, 0x282000,4, 0x28203c,5, 0x28207c,5, 0x2820bc,1, 0x283004,5, 0x283020,6, 0x283040,9, 0x283070,3, 0x283080,3, 0x283090,3, 0x283100,3, 0x283184,5, 0x2831c0,16, 0x284000,3, 0x284010,3, 0x284020,7, 0x284040,4, 0x284060,5, 0x284080,6, 0x284400,6, 0x284420,6, 0x284440,6, 0x284464,3, 0x284484,1, 0x284494,3, 0x2844a4,5, 0x2844c4,1, 0x2844cc,3, 0x2844dc,1, 0x284804,5, 0x284824,4, 0x284844,6, 0x284a04,5, 0x284a80,33, 0x284b08,4, 0x284b20,2, 0x284b30,1, 0x288000,39, 0x2880c0,32, 0x288400,5, 0x288480,1, 0x2884c0,3, 0x2884d0,3, 0x2884e0,3, 0x2884f0,3, 0x288500,5, 0x288580,1, 0x2885c0,3, 0x2885d0,3, 0x2885e0,3, 0x2885f0,3, 0x288600,5, 0x288680,1, 0x2886c0,3, 0x2886d0,3, 0x2886e0,3, 0x2886f0,3, 0x288708,2, 0x288718,2, 0x288728,2, 0x288800,3, 0x288810,63, 0x288910,15, 0x288950,3, 0x288960,17, 0x2889b0,3, 0x2889c0,3, 0x289000,6, 0x289020,6, 0x289040,6, 0x289060,6, 0x289080,6, 0x2890a0,6, 0x2890c0,6, 0x2890e0,6, 0x289100,6, 0x289120,6, 0x289140,6, 0x289160,6, 0x289180,6, 0x2891a0,6, 0x2891c0,6, 0x2891e0,6, 0x289200,6, 0x289220,6, 0x289240,6, 0x289260,6, 0x289280,6, 0x2892a0,6, 0x2892c0,6, 0x2892e0,6, 0x289300,6, 0x289320,6, 0x289340,6, 0x289360,6, 0x289380,6, 0x2893a0,6, 0x2893c0,6, 0x2893e0,6, 0x289400,6, 0x289420,6, 0x289440,6, 0x289460,6, 0x289480,6, 0x2894a0,6, 0x2894c0,6, 0x2894e0,6, 0x289500,6, 0x289520,6, 0x289540,6, 0x289560,6, 0x289580,6, 0x2895a0,6, 0x2895c0,6, 0x2895e0,6, 0x289600,6, 0x289620,6, 0x289a80,5, 0x289aa0,3, 0x289ab0,3, 0x289ac0,3, 0x289ad0,3, 0x289ae0,3, 0x289af0,3, 0x289b00,3, 0x289b10,3, 0x289b20,3, 0x289b30,15, 0x289b74,1, 0x289b7c,8, 0x289ba0,3, 0x289bb0,3, 0x289bc0,3, 0x289bd0,3, 0x289be0,3, 0x289bf0,3, 0x289c00,3, 0x28a000,16, 0x28a044,1, 0x28a04c,1, 0x28a054,1, 0x28a05c,2, 0x28a080,2, 0x28a094,1, 0x28a09c,3, 0x28a0b4,1, 0x28a0bc,1, 0x28a100,6, 0x28a120,6, 0x28a160,6, 0x28a184,24, 0x28a200,6, 0x28a220,6, 0x28a260,6, 0x28a284,1, 0x28a28c,1, 0x28a294,1, 0x28a29c,1, 0x28a2c0,4, 0x28a2e0,7, 0x28a300,4, 0x28a318,2, 0x28a324,1, 0x28a32c,1, 0x28a340,2, 0x28a360,3, 0x28a370,3, 0x28a384,4, 0x28a3a0,23, 0x28a400,6, 0x28a43c,7, 0x28a47c,7, 0x28a4bc,1, 0x28a500,1, 0x28a510,3, 0x28a520,3, 0x28a530,3, 0x28a540,3, 0x28a564,1, 0x28a56c,7, 0x28a5a4,8, 0x28a5d4,1, 0x28a5dc,1, 0x28a5e4,1, 0x28a5f4,35, 0x28a684,1, 0x28a690,4, 0x28a6a4,1, 0x28a6ac,4, 0x28a6c0,2, 0x28a6d0,3, 0x28a6e4,1, 0x28a6ec,388, 0x28ad00,3, 0x28ad10,3, 0x28b540,7, 0x28b560,7, 0x28b580,4, 0x28b5a0,5, 0x28b5c0,5, 0x28b5e0,5, 0x28b600,3, 0x28b610,3, 0x28b620,3, 0x28b630,3, 0x28b640,3, 0x28b650,3, 0x28b660,3, 0x28b670,3, 0x28b680,3, 0x28b690,3, 0x28b6a0,2, 0x28b700,27, 0x28b774,1, 0x28b77c,1, 0x28b784,1, 0x28b794,45, 0x28b8a0,1, 0x28b8b0,1, 0x28c000,135, 0x28c224,4, 0x28c240,3, 0x28c264,1, 0x28c26c,15, 0x28c404,1, 0x28c4c0,84, 0x28c680,23, 0x28c800,3, 0x28c824,4, 0x28c840,3, 0x28c850,1, 0x28c900,4, 0x28c980,23, 0x28ca04,1, 0x28cac8,78, 0x28d004,4, 0x28d020,11, 0x28d054,1, 0x28d05c,1, 0x28d064,1, 0x28d06c,1, 0x28d080,9, 0x28d0c0,96, 0x28d440,24, 0x28d4c0,6, 0x28d4e0,6, 0x28d500,4, 0x28d520,6, 0x28d604,1, 0x28d670,71, 0x28d800,7, 0x28d820,3, 0x28d834,1, 0x28d83c,1, 0x28d844,1, 0x28d84c,1, 0x28d854,3, 0x28d864,4, 0x28d884,4, 0x28d8a0,8, 0x28d8c4,1, 0x28d8dc,15, 0x28d920,6, 0x28d940,4, 0x28d960,6, 0x28d980,10, 0x28d9b0,10, 0x28d9e0,8, 0x28da04,1, 0x28daf4,72, 0x28dc24,4, 0x28dc80,2, 0x28dcc4,1, 0x28dcd4,13, 0x28dd44,1, 0x28dd54,11, 0x28e000,28, 0x28e084,9, 0x28e0c0,8, 0x28e104,1, 0x28e120,12, 0x28e160,8, 0x28e304,1, 0x28e374,39, 0x28e414,4, 0x28e430,1, 0x28e440,1, 0x28e450,1, 0x28e460,1, 0x28e470,1, 0x28e480,1, 0x28e490,1, 0x28e4a0,1, 0x28e4c0,6, 0x28e500,1, 0x28e508,5, 0x28e520,1, 0x28e528,6, 0x290000,99, 0x290190,3, 0x2901a0,3, 0x2901b0,3, 0x2901c0,3, 0x2901d0,3, 0x2901e0,3, 0x2901f0,3, 0x290218,3, 0x290aa4,5, 0x290ac0,3, 0x290ad4,1, 0x290adc,1, 0x290ae4,1, 0x290aec,1, 0x290af4,1, 0x290afc,3, 0x290b40,4, 0x290b60,5, 0x290b80,4, 0x290ba0,9, 0x290bc8,4, 0x290be4,3, 0x291000,3, 0x291010,3, 0x291020,3, 0x291030,3, 0x291040,3, 0x291054,3, 0x291180,384, 0x294000,9, 0x294100,13, 0x294204,7, 0x294224,1, 0x29422c,4, 0x294244,1, 0x294250,10, 0x294290,3, 0x2942a0,3, 0x2942b0,7, 0x2942d0,3, 0x294300,1, 0x294310,3, 0x294320,3, 0x294334,1, 0x29433c,1, 0x294344,1, 0x29434c,1, 0x294380,9, 0x2943a8,4, 0x2943c4,1, 0x2943cc,1, 0x294400,147, 0x294800,14, 0x294900,25, 0x294980,1, 0x2949a0,6, 0x294a00,5, 0x295000,35, 0x295a00,10, 0x295a80,3, 0x296000,227, 0x400000,35, 0x400a00,10, 0x400a80,3, 0x401000,19, 0x401a00,10, 0x401a80,3, 0x402000,19, 0x403000,35, 0x403a00,10, 0x403a80,3, 0x404000,35, 0x404a00,10, 0x404a80,3, 0x405000,19, 0x405a00,10, 0x405a80,3, 0x406000,19, 0x407000,19, 0x408000,35, 0x408a00,10, 0x408a80,3, 0x409000,35, 0x409a00,10, 0x409a80,3, 0x409ac0,1, 0x40a000,35, 0x40aa00,10, 0x40aa80,3, 0x40aac0,1, 0x40b000,35, 0x40ba00,10, 0x40ba80,3, 0x40bac0,1, 0x40c000,35, 0x40ca00,10, 0x40ca80,3, 0x40cac0,1, 0x40d000,35, 0x40da00,10, 0x40da80,3, 0x40e000,35, 0x40ea00,10, 0x40ea80,3, 0x40f000,19, 0x40fa00,10, 0x40fa80,3, 0x410000,19, 0x410a00,10, 0x410a80,3, 0x411000,19, 0x411a00,10, 0x411a80,3, 0x412000,19, 0x412a00,10, 0x412a80,3, 0x413000,19, 0x413a00,10, 0x413a80,3, 0x414000,19, 0x415000,19, 0x415080,19, 0x415100,3, 0x415a00,10, 0x415a80,3, 0x416000,19, 0x417000,19, 0x418000,19, 0x418a00,10, 0x418a80,3, 0x419000,35, 0x419a00,10, 0x419a80,3, 0x419ac0,1, 0x41a000,35, 0x41aa00,10, 0x41aa80,3, 0x41b000,19, 0x41ba00,10, 0x41ba80,3, 0x41c000,35, 0x41ca00,10, 0x41ca80,3, 0x41cac0,1, 0x500000,1, 0x50000c,5, 0x500044,1, 0x500054,5, 0x500200,128, 0x500404,1, 0x500428,54, 0x500600,32, 0x500704,1, 0x500800,1, 0x500900,1, 0x500a00,2, 0x500a20,3, 0x500a44,1, 0x500a80,10, 0x500b00,19, 0x500c00,1, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX2.csv0000755000175000017500000006722214522641732022251 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x010000,2, 0x0100a0,15, 0x0100ec,2, 0x0100fc,2, 0x01010c,2, 0x010150,1, 0x0101cc,1, 0x0101fc,1, 0x010208,10, 0x010300,6, 0x010320,20, 0x010374,3, 0x010400,1, 0x010410,2, 0x010440,1, 0x010450,2, 0x010480,1, 0x010488,2, 0x0104a0,1, 0x0104a8,14, 0x0104f4,4, 0x010510,2, 0x010520,13, 0x0105c0,15, 0x010600,29, 0x010680,1, 0x010690,2, 0x0106ac,1, 0x0106b8,1, 0x0106e0,3, 0x0106f0,3, 0x010740,4, 0x010754,8, 0x010800,2, 0x0108a0,15, 0x0108ec,2, 0x0108fc,2, 0x01090c,2, 0x010950,1, 0x0109cc,1, 0x0109fc,1, 0x010a08,10, 0x010b00,6, 0x010b20,20, 0x010b74,3, 0x010c00,1, 0x010c10,2, 0x010c40,1, 0x010c50,2, 0x010c80,1, 0x010c88,2, 0x010ca0,1, 0x010ca8,14, 0x010cf4,4, 0x010d10,2, 0x010d20,13, 0x010dc0,15, 0x010e00,29, 0x010e80,1, 0x010e90,2, 0x010eac,1, 0x010eb8,1, 0x010ee0,3, 0x010ef0,3, 0x010f40,4, 0x010f54,8, 0x011000,1, 0x011010,4, 0x011024,2, 0x011080,2, 0x011090,12, 0x011180,6, 0x011200,7, 0x011220,1, 0x011240,4, 0x011260,1, 0x011280,5, 0x011300,1, 0x011310,2, 0x011400,1, 0x011408,1, 0x011460,1, 0x0114b0,4, 0x011800,1, 0x011810,4, 0x011824,2, 0x011880,2, 0x011890,12, 0x011980,6, 0x011a00,7, 0x011a20,1, 0x011a40,4, 0x011a60,1, 0x011a80,5, 0x011b00,1, 0x011b10,2, 0x011c00,1, 0x011c08,1, 0x011c60,1, 0x011cb0,4, 0x012000,2, 0x012020,1, 0x012030,2, 0x012044,2, 0x0120a0,4, 0x0120c0,7, 0x01211c,13, 0x012164,1, 0x012170,4, 0x0121e0,6, 0x012250,1, 0x012360,4, 0x012380,3, 0x012390,5, 0x0123b0,5, 0x012440,3, 0x012450,3, 0x0124a8,2, 0x0124c0,2, 0x0124d0,2, 0x012568,2, 0x0125c0,4, 0x0125fc,10, 0x012628,6, 0x012644,1, 0x012660,2, 0x012670,2, 0x01268c,5, 0x01270c,1, 0x012728,8, 0x012750,2, 0x01275c,1, 0x0127d8,2, 0x0127e8,2, 0x012840,1, 0x012850,2, 0x0128a0,5, 0x0128c0,2, 0x012904,1, 0x012910,5, 0x012928,4, 0x012944,4, 0x012958,4, 0x0129a0,1, 0x0129b0,2, 0x012a00,2, 0x012a14,2, 0x012a28,3, 0x012a40,1, 0x012a50,2, 0x012a60,1, 0x012a70,2, 0x012ae4,4, 0x012b00,9, 0x012b30,2, 0x012b40,2, 0x012b4c,4, 0x012b80,9, 0x012bb0,2, 0x012bc0,2, 0x012bcc,4, 0x012c00,37, 0x012ca0,5, 0x012cc0,5, 0x012ce0,5, 0x012d00,2, 0x012d48,4, 0x012e00,32, 0x012e84,7, 0x012ea8,2, 0x012ec4,7, 0x012ee8,2, 0x018000,1, 0x01805c,4, 0x018080,8, 0x0180a4,7, 0x0180c4,2, 0x018100,32, 0x018200,4, 0x018224,1, 0x018234,5, 0x018300,32, 0x018384,1, 0x01838c,1, 0x0183a4,3, 0x018400,5, 0x018420,5, 0x018440,5, 0x018460,5, 0x018480,5, 0x0184a0,5, 0x0184c0,5, 0x0184e0,5, 0x018500,5, 0x018520,5, 0x018540,5, 0x018560,5, 0x018580,5, 0x0185a0,5, 0x0185c0,5, 0x0185e0,5, 0x018610,4, 0x018624,4, 0x018810,3, 0x018820,11, 0x018850,3, 0x018860,7, 0x018884,11, 0x0188c8,2, 0x0188d4,2, 0x0188e0,8, 0x018a04,3, 0x018a20,3, 0x018a30,4, 0x018a44,21, 0x018b04,3, 0x018b14,11, 0x018b4c,5, 0x018b68,5, 0x018c00,17, 0x018c50,29, 0x018cd0,14, 0x018d0c,2, 0x018e00,1, 0x018e10,2, 0x018e50,2, 0x018f00,2, 0x018f14,2, 0x018f28,3, 0x018f40,1, 0x018f50,2, 0x018f60,1, 0x018f70,2, 0x018fe4,5, 0x019ff0,2052, 0x01c004,2, 0x01c010,1, 0x01c01c,2, 0x01c06c,27, 0x01c180,1, 0x01c190,2, 0x01c1a0,1, 0x01c1b0,2, 0x01c1c0,7, 0x01c1e0,7, 0x01c200,17, 0x01c250,29, 0x01c2d0,14, 0x01c30c,2, 0x01c40c,5, 0x01c428,2, 0x01c434,1, 0x01c448,2, 0x01c454,1, 0x01c464,24, 0x01c4d8,2, 0x01c4e4,8, 0x01c514,1, 0x01c528,2, 0x01c540,1, 0x01c550,2, 0x01c5e4,5, 0x01c608,4, 0x01c624,3, 0x01c63c,1, 0x01c64c,22, 0x01c6a8,4, 0x01c6c0,9, 0x01c6e8,8, 0x01c70c,2, 0x01c71c,5, 0x01c738,2, 0x01c744,1, 0x01c75c,1, 0x01c7dc,1, 0x01c7e4,1, 0x01c7f8,7, 0x01c818,7, 0x01c840,19, 0x01c8a0,5, 0x01c8c0,1, 0x01c900,5, 0x01c918,7, 0x01c940,19, 0x01c9a0,5, 0x01c9c0,1, 0x01ca00,5, 0x01ca18,7, 0x01ca40,19, 0x01caa0,5, 0x01cac0,1, 0x01cb00,5, 0x01cb18,7, 0x01cb40,19, 0x01cba0,5, 0x01cbc0,1, 0x01cc00,5, 0x01cc18,7, 0x01cc40,19, 0x01cca0,5, 0x01ccc0,1, 0x01cd00,5, 0x01cd18,7, 0x01cd40,19, 0x01cda0,5, 0x01cdc0,1, 0x01ce00,5, 0x01ce18,7, 0x01ce40,19, 0x01cea0,5, 0x01cec0,1, 0x01cf00,5, 0x01cf18,7, 0x01cf40,19, 0x01cfa0,5, 0x01cfc0,1, 0x01d000,19, 0x01d050,22, 0x01d0ac,6, 0x01d0d0,2, 0x01d0e8,15, 0x01d140,1, 0x01d148,53, 0x01d220,10, 0x01d260,5, 0x01d278,2, 0x01d284,1, 0x01d298,2, 0x01d2a8,6, 0x01d300,2, 0x01d310,19, 0x01d368,2, 0x01d37c,6, 0x01d3c0,5, 0x01d3e0,6, 0x01d400,19, 0x01d450,22, 0x01d4ac,6, 0x01d4d0,2, 0x01d4e8,15, 0x01d540,1, 0x01d548,53, 0x01d620,10, 0x01d660,5, 0x01d678,2, 0x01d684,1, 0x01d698,2, 0x01d6a8,6, 0x01d700,2, 0x01d710,19, 0x01d768,2, 0x01d77c,6, 0x01d7c0,5, 0x01d7e0,6, 0x01d800,16, 0x01d844,1, 0x01d880,8, 0x01d8c4,1, 0x01d8cc,5, 0x01d8e4,7, 0x01d920,1, 0x01d968,2, 0x01d9e0,6, 0x01da00,4, 0x01da14,2, 0x01db0c,14, 0x01db50,2, 0x01db60,1, 0x01db70,2, 0x01db80,1, 0x01db90,2, 0x01dba0,3, 0x01dc00,1, 0x01dc0c,1, 0x01dd80,13, 0x01ddbc,1, 0x01dde0,9, 0x01df00,1, 0x01df14,1, 0x01df28,2, 0x01df40,1, 0x01df50,2, 0x01dfe4,4, 0x01e5c0,1, 0x01e5dc,1, 0x01e5e4,14, 0x01e620,4, 0x01e668,6, 0x01e780,160, 0x01ea04,12, 0x01ec00,8, 0x01ec24,1, 0x01ec30,1, 0x01ec44,20, 0x01ec9c,2, 0x01ecac,14, 0x01ed80,1, 0x01edc4,1, 0x01ede0,1, 0x01ede8,3, 0x01edf8,1, 0x01ee00,8, 0x01ee24,1, 0x01ee30,1, 0x01ee44,20, 0x01ee9c,2, 0x01eeac,14, 0x01ef80,1, 0x01efc4,1, 0x01efe0,1, 0x01efe8,3, 0x01eff8,1, 0x01f000,1024, 0x030000,1, 0x030010,2, 0x030020,1, 0x030030,2, 0x030040,1, 0x030050,2, 0x030100,27, 0x030180,3, 0x030200,80, 0x030400,288, 0x030900,32, 0x030a04,1, 0x030c00,128, 0x030e1c,1, 0x030e3c,1, 0x030e44,1, 0x030e5c,16, 0x030f10,28, 0x031000,14, 0x031040,14, 0x031080,14, 0x0310c0,14, 0x031100,133, 0x031318,13, 0x034000,1, 0x034010,2, 0x034224,1, 0x034260,7, 0x034284,4, 0x034304,1, 0x034314,3, 0x034324,1, 0x034334,3, 0x034344,1, 0x034358,2, 0x034414,3, 0x034510,4, 0x034608,6, 0x034800,7, 0x034820,4, 0x034868,6, 0x034980,45, 0x034a40,13, 0x034a80,13, 0x034ac0,13, 0x034b00,13, 0x034b40,13, 0x034b80,13, 0x034bc0,13, 0x035020,1, 0x035028,1, 0x035040,2, 0x03504c,1, 0x035058,3, 0x035068,4, 0x035104,5, 0x035200,12, 0x035240,12, 0x035280,12, 0x0352c0,12, 0x035300,12, 0x035340,12, 0x035380,12, 0x0353c0,12, 0x036000,128, 0x036204,12, 0x036400,8, 0x036424,1, 0x036430,1, 0x036444,20, 0x03649c,2, 0x0364ac,14, 0x036580,1, 0x0365c4,1, 0x0365e0,1, 0x0365e8,3, 0x0365f8,1, 0x036600,2, 0x036614,2, 0x036628,3, 0x036640,1, 0x036650,2, 0x036660,1, 0x036670,2, 0x0366e4,5, 0x036700,1, 0x036710,2, 0x036720,1, 0x036730,2, 0x040000,19, 0x040050,3, 0x040060,2, 0x040080,1, 0x0400a4,5, 0x0400c0,4, 0x0400e0,3, 0x040100,6, 0x04011c,14, 0x04015c,1, 0x040170,4, 0x040190,3, 0x0401a4,1, 0x0401ac,5, 0x0401c4,1, 0x0401cc,6, 0x040200,3, 0x040210,3, 0x040220,3, 0x040230,3, 0x040240,3, 0x040250,3, 0x040260,3, 0x040270,3, 0x040280,3, 0x040290,3, 0x0402a0,3, 0x0402b0,3, 0x0402c0,3, 0x0402d0,3, 0x0402e0,3, 0x0402f0,3, 0x040304,1, 0x040314,8, 0x040340,11, 0x040490,1, 0x0404a8,15, 0x040510,18, 0x04055c,3, 0x04056c,3, 0x04057c,3, 0x04058c,2, 0x04059c,17, 0x040610,16, 0x0406e0,51, 0x0407d0,3, 0x0407f0,1, 0x040800,337, 0x040d50,18, 0x040d9c,4, 0x040db0,11, 0x040df0,11, 0x040e20,1, 0x040e28,11, 0x040e58,1, 0x040e60,2, 0x040e6c,1, 0x040e74,11, 0x040eb0,4, 0x040ec8,2, 0x040ed4,7, 0x040ef8,6, 0x041000,33, 0x041100,15, 0x041140,14, 0x041180,15, 0x0411dc,1, 0x0411e4,15, 0x041224,1, 0x041230,1, 0x041244,20, 0x04129c,2, 0x0412ac,14, 0x041380,1, 0x0413c4,1, 0x0413e0,1, 0x0413e8,3, 0x0413f8,1, 0x041400,8, 0x041424,1, 0x041430,1, 0x041444,20, 0x04149c,2, 0x0414ac,14, 0x041580,1, 0x0415c4,1, 0x0415e0,1, 0x0415e8,3, 0x0415f8,1, 0x041600,2, 0x041614,2, 0x041628,3, 0x041640,1, 0x041650,2, 0x041660,1, 0x041670,2, 0x0416e4,6, 0x041a00,1, 0x041a10,2, 0x041a20,1, 0x041a30,2, 0x041c00,128, 0x041e04,12, 0x042000,5, 0x042020,5, 0x042040,5, 0x042060,5, 0x042080,5, 0x0420a0,5, 0x0420c0,5, 0x0420e0,5, 0x042100,5, 0x042120,5, 0x042140,5, 0x042160,5, 0x042180,5, 0x0421a0,5, 0x0421c0,5, 0x0421e0,5, 0x042200,5, 0x042220,5, 0x042240,5, 0x042260,5, 0x042280,5, 0x0422a0,5, 0x0422c0,5, 0x0422e0,5, 0x042300,5, 0x042320,5, 0x042340,5, 0x042360,5, 0x042380,5, 0x0423a0,5, 0x0423c0,5, 0x0423e0,5, 0x042400,5, 0x042420,5, 0x042440,5, 0x042460,5, 0x042480,5, 0x0424a0,5, 0x0424c0,5, 0x0424e0,5, 0x042500,5, 0x042520,5, 0x042540,5, 0x042560,5, 0x042580,5, 0x0425a0,5, 0x0425c0,5, 0x0425e0,5, 0x042600,5, 0x042620,5, 0x042640,5, 0x042660,5, 0x042680,5, 0x0426a0,5, 0x0426c0,5, 0x0426e0,5, 0x042700,5, 0x042720,5, 0x042740,5, 0x042760,5, 0x042780,5, 0x0427a0,5, 0x0427c0,5, 0x0427e0,5, 0x042800,5, 0x042820,5, 0x042840,5, 0x042860,5, 0x042880,5, 0x0428a0,5, 0x0428c0,5, 0x0428e0,5, 0x042900,5, 0x042920,5, 0x042940,5, 0x042960,5, 0x042980,5, 0x0429a0,5, 0x0429c0,5, 0x0429e0,5, 0x042a00,5, 0x042a20,5, 0x042a40,5, 0x042a60,5, 0x042a80,5, 0x042aa0,5, 0x042ac0,5, 0x042ae0,5, 0x042b00,5, 0x042b20,5, 0x042b40,5, 0x042b60,5, 0x042b80,5, 0x042ba0,5, 0x042bc0,5, 0x042be0,5, 0x042c00,5, 0x042c20,5, 0x042c40,5, 0x042c60,5, 0x042c80,5, 0x042ca0,5, 0x042cc0,5, 0x042ce0,5, 0x042d00,5, 0x042d20,5, 0x042d40,5, 0x042d60,5, 0x042d80,5, 0x042da0,5, 0x042dc0,5, 0x042de0,5, 0x042e00,5, 0x042e20,5, 0x042e40,5, 0x042e60,5, 0x042e80,5, 0x042ea0,5, 0x042ec0,5, 0x042ee0,5, 0x042f00,5, 0x042f20,5, 0x042f40,5, 0x042f60,5, 0x042f80,5, 0x042fa0,5, 0x042fc0,5, 0x042fe0,5, 0x043000,5, 0x043020,5, 0x043040,5, 0x043060,5, 0x043080,5, 0x0430a0,5, 0x0430c0,5, 0x0430e0,5, 0x043100,5, 0x043120,5, 0x043140,5, 0x043160,5, 0x043180,5, 0x0431a0,5, 0x0431c0,5, 0x0431e0,5, 0x043200,5, 0x043220,5, 0x043240,5, 0x043260,5, 0x043280,5, 0x0432a0,5, 0x0432c0,5, 0x0432e0,5, 0x043300,5, 0x043320,5, 0x043340,5, 0x043360,5, 0x043380,5, 0x0433a0,5, 0x0433c0,5, 0x0433e0,5, 0x043400,5, 0x043420,5, 0x043440,5, 0x043460,5, 0x043480,5, 0x0434a0,5, 0x0434c0,5, 0x0434e0,5, 0x043500,5, 0x043520,5, 0x043540,5, 0x043560,5, 0x043580,5, 0x0435a0,5, 0x0435c0,5, 0x0435e0,5, 0x043600,5, 0x043620,5, 0x043640,5, 0x043660,5, 0x043680,5, 0x0436a0,5, 0x0436c0,5, 0x0436e0,5, 0x043700,5, 0x043720,5, 0x043740,5, 0x043760,5, 0x043780,5, 0x0437a0,5, 0x0437c0,5, 0x0437e0,5, 0x043800,5, 0x043820,5, 0x043840,5, 0x043860,5, 0x043880,5, 0x0438a0,5, 0x0438c0,5, 0x0438e0,5, 0x043900,5, 0x043920,5, 0x043940,5, 0x043960,5, 0x043980,5, 0x0439a0,5, 0x0439c0,5, 0x0439e0,5, 0x043a00,5, 0x043a20,5, 0x043a40,5, 0x043a60,5, 0x043a80,5, 0x043aa0,5, 0x043ac0,5, 0x043ae0,5, 0x043b00,5, 0x043b20,5, 0x043b40,5, 0x043b60,5, 0x043b80,5, 0x043ba0,5, 0x043bc0,5, 0x043be0,5, 0x043c00,5, 0x043c20,5, 0x043c40,5, 0x043c60,5, 0x043c80,5, 0x043ca0,5, 0x043cc0,5, 0x043ce0,5, 0x043d00,5, 0x043d20,5, 0x043d40,5, 0x043d60,5, 0x043d80,5, 0x043da0,5, 0x043dc0,5, 0x043de0,5, 0x043e00,5, 0x043e20,5, 0x043e40,5, 0x043e60,5, 0x043e80,5, 0x043ea0,5, 0x043ec0,5, 0x043ee0,5, 0x043f00,5, 0x043f20,5, 0x043f40,5, 0x043f60,5, 0x043f80,5, 0x043fa0,5, 0x043fc0,5, 0x043fe0,5, 0x044004,1, 0x044200,8, 0x044230,9, 0x044260,5, 0x044280,32, 0x044fc8,112, 0x045190,88, 0x045300,39, 0x045400,13, 0x045440,9, 0x04546c,5, 0x047ff0,2, 0x048000,5, 0x048020,5, 0x048040,5, 0x048060,5, 0x048080,5, 0x0480a0,5, 0x0480c0,5, 0x0480e0,5, 0x048100,5, 0x048120,5, 0x048140,5, 0x048160,5, 0x048180,5, 0x0481a0,5, 0x0481c0,5, 0x0481e0,5, 0x048200,5, 0x048220,5, 0x048240,5, 0x048260,5, 0x048280,5, 0x0482a0,5, 0x0482c0,5, 0x0482e0,5, 0x048300,5, 0x048320,5, 0x048340,5, 0x048360,5, 0x048380,5, 0x0483a0,5, 0x0483c0,5, 0x0483e0,5, 0x048400,5, 0x048420,5, 0x048440,5, 0x048460,5, 0x048480,5, 0x0484a0,5, 0x0484c0,5, 0x0484e0,5, 0x048500,5, 0x048520,5, 0x048540,5, 0x048560,5, 0x048580,5, 0x0485a0,5, 0x0485c0,5, 0x0485e0,5, 0x048600,5, 0x048620,5, 0x048640,5, 0x048660,5, 0x048680,5, 0x0486a0,5, 0x0486c0,5, 0x0486e0,5, 0x048700,5, 0x048720,5, 0x048740,5, 0x048760,5, 0x048780,5, 0x0487a0,5, 0x0487c0,5, 0x0487e0,5, 0x048800,5, 0x048820,5, 0x048840,5, 0x048860,5, 0x048880,5, 0x0488a0,5, 0x0488c0,5, 0x0488e0,5, 0x048900,5, 0x048920,5, 0x048940,5, 0x048960,5, 0x048980,5, 0x0489a0,5, 0x0489c0,5, 0x0489e0,5, 0x048a00,5, 0x048a20,5, 0x048a40,5, 0x048a60,5, 0x048a80,5, 0x048aa0,5, 0x048ac0,5, 0x048ae0,5, 0x048b00,5, 0x048b20,5, 0x048b40,5, 0x048b60,5, 0x048b80,5, 0x048ba0,5, 0x048bc0,5, 0x048be0,5, 0x048c00,5, 0x048c20,5, 0x048c40,5, 0x048c60,5, 0x048c80,5, 0x048ca0,5, 0x048cc0,5, 0x048ce0,5, 0x048d00,5, 0x048d20,5, 0x048d40,5, 0x048d60,5, 0x048d80,5, 0x048da0,5, 0x048dc0,5, 0x048de0,5, 0x048e00,5, 0x048e20,5, 0x048e40,5, 0x048e60,5, 0x048e80,5, 0x048ea0,5, 0x048ec0,5, 0x048ee0,5, 0x048f00,5, 0x048f20,5, 0x048f40,5, 0x048f60,5, 0x048f80,5, 0x048fa0,5, 0x048fc0,5, 0x048fe0,5, 0x049000,5, 0x049020,5, 0x049040,5, 0x049060,5, 0x049080,5, 0x0490a0,5, 0x0490c0,5, 0x0490e0,5, 0x049100,5, 0x049120,5, 0x049140,5, 0x049160,5, 0x049180,5, 0x0491a0,5, 0x0491c0,5, 0x0491e0,5, 0x049200,5, 0x049220,5, 0x049240,5, 0x049260,5, 0x049280,5, 0x0492a0,5, 0x0492c0,5, 0x0492e0,5, 0x049300,5, 0x049320,5, 0x049340,5, 0x049360,5, 0x049380,5, 0x0493a0,5, 0x0493c0,5, 0x0493e0,5, 0x049400,5, 0x049420,5, 0x049440,5, 0x049460,5, 0x049480,5, 0x0494a0,5, 0x0494c0,5, 0x0494e0,5, 0x049500,5, 0x049520,5, 0x049540,5, 0x049560,5, 0x049580,5, 0x0495a0,5, 0x0495c0,5, 0x0495e0,5, 0x049600,5, 0x049620,5, 0x049640,5, 0x049660,5, 0x049680,5, 0x0496a0,5, 0x0496c0,5, 0x0496e0,5, 0x049700,5, 0x049720,5, 0x049740,5, 0x049760,5, 0x049780,5, 0x0497a0,5, 0x0497c0,5, 0x0497e0,5, 0x049800,5, 0x049820,5, 0x049840,5, 0x049860,5, 0x049880,5, 0x0498a0,5, 0x0498c0,5, 0x0498e0,5, 0x049900,5, 0x049920,5, 0x049940,5, 0x049960,5, 0x049980,5, 0x0499a0,5, 0x0499c0,5, 0x0499e0,5, 0x049a00,5, 0x049a20,5, 0x049a40,5, 0x049a60,5, 0x049a80,5, 0x049aa0,5, 0x049ac0,5, 0x049ae0,5, 0x049b00,5, 0x049b20,5, 0x049b40,5, 0x049b60,5, 0x049b80,5, 0x049ba0,5, 0x049bc0,5, 0x049be0,5, 0x049c00,5, 0x049c20,5, 0x049c40,5, 0x049c60,5, 0x049c80,5, 0x049ca0,5, 0x049cc0,5, 0x049ce0,5, 0x049d00,5, 0x049d20,5, 0x049d40,5, 0x049d60,5, 0x049d80,5, 0x049da0,5, 0x049dc0,5, 0x049de0,5, 0x049e00,5, 0x049e20,5, 0x049e40,5, 0x049e60,5, 0x049e80,5, 0x049ea0,5, 0x049ec0,5, 0x049ee0,5, 0x049f00,5, 0x049f20,5, 0x049f40,5, 0x049f60,5, 0x049f80,5, 0x049fa0,5, 0x049fc0,5, 0x049fe0,5, 0x04a000,5, 0x04a020,5, 0x04a040,5, 0x04a060,5, 0x04a080,5, 0x04a0a0,5, 0x04a0c0,5, 0x04a0e0,5, 0x04a100,5, 0x04a120,5, 0x04a140,5, 0x04a160,5, 0x04a180,5, 0x04a1a0,5, 0x04a1c0,5, 0x04a1e0,5, 0x04a200,5, 0x04a220,5, 0x04a240,5, 0x04a260,5, 0x04a280,5, 0x04a2a0,5, 0x04a2c0,5, 0x04a2e0,5, 0x04a300,5, 0x04a320,5, 0x04a340,5, 0x04a360,5, 0x04a380,5, 0x04a3a0,5, 0x04a3c0,5, 0x04a3e0,5, 0x04a400,5, 0x04a420,5, 0x04a440,5, 0x04a460,5, 0x04a480,5, 0x04a4a0,5, 0x04a4c0,5, 0x04a4e0,5, 0x04a500,5, 0x04a520,5, 0x04a540,5, 0x04a560,5, 0x04a580,5, 0x04a5a0,5, 0x04a5c0,5, 0x04a5e0,5, 0x04a600,5, 0x04a620,5, 0x04a640,5, 0x04a660,5, 0x04a680,5, 0x04a6a0,5, 0x04a6c0,5, 0x04a6e0,5, 0x04a700,5, 0x04a720,5, 0x04a740,5, 0x04a760,5, 0x04a780,5, 0x04a7a0,5, 0x04a7c0,5, 0x04a7e0,5, 0x04a800,5, 0x04a820,5, 0x04a840,5, 0x04a860,5, 0x04a880,5, 0x04a8a0,5, 0x04a8c0,5, 0x04a8e0,5, 0x04a900,5, 0x04a920,5, 0x04a940,5, 0x04a960,5, 0x04a980,5, 0x04a9a0,5, 0x04a9c0,5, 0x04a9e0,5, 0x04aa00,5, 0x04aa20,5, 0x04aa40,5, 0x04aa60,5, 0x04aa80,5, 0x04aaa0,5, 0x04aac0,5, 0x04aae0,5, 0x04ab00,5, 0x04ab20,5, 0x04ab40,5, 0x04ab60,5, 0x04ab80,5, 0x04aba0,5, 0x04abc0,5, 0x04abe0,5, 0x04ac00,5, 0x04ac20,5, 0x04ac40,5, 0x04ac60,5, 0x04ac80,5, 0x04aca0,5, 0x04acc0,5, 0x04ace0,5, 0x04ad00,5, 0x04ad20,5, 0x04ad40,5, 0x04ad60,5, 0x04ad80,5, 0x04ada0,5, 0x04adc0,5, 0x04ade0,5, 0x04ae00,5, 0x04ae20,5, 0x04ae40,5, 0x04ae60,5, 0x04ae80,5, 0x04aea0,5, 0x04aec0,5, 0x04aee0,5, 0x04af00,5, 0x04af20,5, 0x04af40,5, 0x04af60,5, 0x04af80,5, 0x04afa0,5, 0x04afc0,5, 0x04afe0,5, 0x04b000,5, 0x04b020,5, 0x04b040,5, 0x04b060,5, 0x04b080,5, 0x04b0a0,5, 0x04b0c0,5, 0x04b0e0,5, 0x04b100,5, 0x04b120,5, 0x04b140,5, 0x04b160,5, 0x04b180,5, 0x04b1a0,5, 0x04b1c0,5, 0x04b1e0,5, 0x04b200,5, 0x04b220,5, 0x04b240,5, 0x04b260,5, 0x04b280,5, 0x04b2a0,5, 0x04b2c0,5, 0x04b2e0,5, 0x04b300,5, 0x04b320,5, 0x04b340,5, 0x04b360,5, 0x04b380,5, 0x04b3a0,5, 0x04b3c0,5, 0x04b3e0,5, 0x04b400,5, 0x04b420,5, 0x04b440,5, 0x04b460,5, 0x04b480,5, 0x04b4a0,5, 0x04b4c0,5, 0x04b4e0,5, 0x04b500,5, 0x04b520,5, 0x04b540,5, 0x04b560,5, 0x04b580,5, 0x04b5a0,5, 0x04b5c0,5, 0x04b5e0,5, 0x04b600,5, 0x04b620,5, 0x04b640,5, 0x04b660,5, 0x04b680,5, 0x04b6a0,5, 0x04b6c0,5, 0x04b6e0,5, 0x04b700,5, 0x04b720,5, 0x04b740,5, 0x04b760,5, 0x04b780,5, 0x04b7a0,5, 0x04b7c0,5, 0x04b7e0,5, 0x04b800,5, 0x04b820,5, 0x04b840,5, 0x04b860,5, 0x04b880,5, 0x04b8a0,5, 0x04b8c0,5, 0x04b8e0,5, 0x04b900,5, 0x04b920,5, 0x04b940,5, 0x04b960,5, 0x04b980,5, 0x04b9a0,5, 0x04b9c0,5, 0x04b9e0,5, 0x04ba00,5, 0x04ba20,5, 0x04ba40,5, 0x04ba60,5, 0x04ba80,5, 0x04baa0,5, 0x04bac0,5, 0x04bae0,5, 0x04bb00,5, 0x04bb20,5, 0x04bb40,5, 0x04bb60,5, 0x04bb80,5, 0x04bba0,5, 0x04bbc0,5, 0x04bbe0,5, 0x04bc00,5, 0x04bc20,5, 0x04bc40,5, 0x04bc60,5, 0x04bc80,5, 0x04bca0,5, 0x04bcc0,5, 0x04bce0,5, 0x04bd00,5, 0x04bd20,5, 0x04bd40,5, 0x04bd60,5, 0x04bd80,5, 0x04bda0,5, 0x04bdc0,5, 0x04bde0,5, 0x04be00,5, 0x04be20,5, 0x04be40,5, 0x04be60,5, 0x04be80,5, 0x04bea0,5, 0x04bec0,5, 0x04bee0,5, 0x04bf00,5, 0x04bf20,5, 0x04bf40,5, 0x04bf60,5, 0x04bf80,5, 0x04bfa0,5, 0x04bfc0,5, 0x04bfe0,5, 0x04c000,5, 0x04c020,5, 0x04c040,5, 0x04c060,5, 0x04c080,5, 0x04c0a0,5, 0x04c0c0,5, 0x04c0e0,5, 0x04c100,5, 0x04c120,5, 0x04c140,5, 0x04c160,5, 0x04c180,5, 0x04c1a0,5, 0x04c1c0,5, 0x04c1e0,5, 0x04c200,5, 0x04c220,5, 0x04c240,5, 0x04c260,5, 0x04c280,5, 0x04c2a0,5, 0x04c2c0,5, 0x04c2e0,5, 0x04c300,5, 0x04c320,5, 0x04c340,5, 0x04c360,5, 0x04c380,5, 0x04c3a0,5, 0x04c3c0,5, 0x04c3e0,5, 0x04c400,5, 0x04c420,5, 0x04c440,5, 0x04c460,5, 0x04c480,5, 0x04c4a0,5, 0x04c4c0,5, 0x04c4e0,5, 0x04c500,5, 0x04c520,5, 0x04c540,5, 0x04c560,5, 0x04c580,5, 0x04c5a0,5, 0x04c5c0,5, 0x04c5e0,5, 0x04c600,5, 0x04c620,5, 0x04c640,5, 0x04c660,5, 0x04c680,5, 0x04c6a0,5, 0x04c6c0,5, 0x04c6e0,5, 0x04c700,5, 0x04c720,5, 0x04c740,5, 0x04c760,5, 0x04c780,5, 0x04c7a0,5, 0x04c7c0,5, 0x04c7e0,5, 0x04c800,5, 0x04c820,5, 0x04c840,5, 0x04c860,5, 0x04c880,5, 0x04c8a0,5, 0x04c8c0,5, 0x04c8e0,5, 0x04c900,5, 0x04c920,5, 0x04c940,5, 0x04c960,5, 0x04c980,5, 0x04c9a0,5, 0x04c9c0,5, 0x04c9e0,5, 0x04ca00,5, 0x04ca20,5, 0x04ca40,5, 0x04ca60,5, 0x04ca80,5, 0x04caa0,5, 0x04cac0,5, 0x04cae0,5, 0x04cb00,5, 0x04cb20,5, 0x04cb40,5, 0x04cb60,5, 0x04cb80,5, 0x04cba0,5, 0x04cbc0,5, 0x04cbe0,5, 0x04cc00,5, 0x04cc20,5, 0x04cc40,5, 0x04cc60,5, 0x04cc80,5, 0x04cca0,5, 0x04ccc0,5, 0x04cce0,5, 0x04cd00,5, 0x04cd20,5, 0x04cd40,5, 0x04cd60,5, 0x04cd80,5, 0x04cda0,5, 0x04cdc0,5, 0x04cde0,5, 0x04ce00,5, 0x04ce20,5, 0x04ce40,5, 0x04ce60,5, 0x04ce80,5, 0x04cea0,5, 0x04cec0,5, 0x04cee0,5, 0x04cf00,5, 0x04cf20,5, 0x04cf40,5, 0x04cf60,5, 0x04cf80,5, 0x04cfa0,5, 0x04cfc0,5, 0x04cfe0,5, 0x050004,1, 0x05000c,5, 0x05900c,10, 0x05903c,1, 0x060400,5, 0x060500,6, 0x060520,6, 0x060600,6, 0x060700,7, 0x060800,64, 0x060940,1, 0x060a04,7, 0x060c00,4, 0x060d00,2, 0x060e00,4, 0x060f40,16, 0x060f88,2, 0x061000,34, 0x061100,34, 0x061200,34, 0x061300,34, 0x061400,34, 0x061500,34, 0x061600,34, 0x061700,34, 0x061800,34, 0x061900,34, 0x061a00,34, 0x061b00,34, 0x061c00,34, 0x061d00,34, 0x061e00,34, 0x061f00,34, 0x062100,2, 0x064000,2048, 0x066100,3, 0x068000,2, 0x068014,2, 0x068028,3, 0x068040,1, 0x068050,2, 0x068060,1, 0x068070,2, 0x0680e4,5, 0x068800,7, 0x068820,4, 0x068868,6, 0x068980,32, 0x068a20,1, 0x068a30,2, 0x068a80,2, 0x070000,1, 0x07000c,6, 0x070028,3, 0x070040,12, 0x07007c,13, 0x0700bc,6, 0x0700d8,5, 0x0700f0,20, 0x070144,1, 0x070180,5, 0x0701fc,1, 0x070210,12, 0x070244,7, 0x070290,12, 0x0702c4,1, 0x0702d0,4, 0x070300,69, 0x070418,2, 0x070424,1, 0x07042c,1, 0x070434,3, 0x070448,1, 0x070450,1, 0x071000,33, 0x071100,33, 0x071200,33, 0x071300,33, 0x071400,33, 0x071500,33, 0x071600,33, 0x071700,33, 0x071800,33, 0x071900,33, 0x071a00,33, 0x071b00,33, 0x072000,67, 0x072200,67, 0x072400,67, 0x072600,67, 0x072800,67, 0x072a00,67, 0x072c00,67, 0x073000,33, 0x073100,33, 0x073200,33, 0x073300,33, 0x073400,33, 0x073500,33, 0x073600,33, 0x073700,33, 0x073800,33, 0x073900,33, 0x073a00,33, 0x073b00,33, 0x074000,1536, 0x076000,12, 0x077000,384, 0x077800,256, 0x078000,17, 0x078080,17, 0x078100,17, 0x078180,17, 0x078210,5, 0x078240,1, 0x078250,1, 0x078260,1, 0x078270,1, 0x078284,2, 0x0782d4,59, 0x078400,2, 0x078420,1, 0x078a60,5, 0x078a84,16, 0x078b00,32, 0x078b84,6, 0x078c20,10, 0x078c50,2, 0x078c5c,7, 0x078c80,4, 0x078ca0,1, 0x078cc0,9, 0x078e60,1, 0x078e80,10, 0x078ec0,2, 0x078ecc,1, 0x078ee0,6, 0x078f00,7, 0x078f20,7, 0x078f44,2, 0x078f50,2, 0x078f60,3, 0x078f70,1, 0x078f78,2, 0x078fb4,6, 0x078fd0,1, 0x079000,1, 0x079008,1, 0x079010,1, 0x079018,1, 0x079020,1, 0x079028,1, 0x079030,1, 0x079038,1, 0x079040,1, 0x079048,1, 0x079050,1, 0x079058,1, 0x079060,1, 0x079068,1, 0x079070,1, 0x079078,1, 0x079080,1, 0x079088,1, 0x079090,1, 0x079098,1, 0x0790a0,1, 0x0790a8,1, 0x0790b0,1, 0x0790b8,1, 0x0790c0,1, 0x0790c8,1, 0x0790d0,1, 0x0790d8,1, 0x0790e0,1, 0x0790e8,1, 0x0790f0,1, 0x0790f8,1, 0x079100,1, 0x079108,1, 0x079110,1, 0x079118,1, 0x079120,1, 0x079128,1, 0x079130,1, 0x079138,1, 0x079140,1, 0x079148,1, 0x079150,1, 0x079158,1, 0x079160,1, 0x079168,1, 0x079170,1, 0x079178,1, 0x079180,1, 0x079188,1, 0x079190,1, 0x079198,1, 0x0791a0,1, 0x0791a8,1, 0x0791b0,1, 0x0791b8,1, 0x0791c0,1, 0x0791c8,1, 0x0791d0,1, 0x0791d8,1, 0x0791e0,1, 0x0791e8,1, 0x0791f0,1, 0x0791f8,1, 0x079200,1, 0x079208,1, 0x079210,1, 0x079218,1, 0x079220,1, 0x079228,1, 0x079230,1, 0x079238,1, 0x079240,1, 0x079248,1, 0x079250,1, 0x079258,1, 0x079260,1, 0x079268,1, 0x079270,1, 0x079278,1, 0x079280,1, 0x079288,1, 0x079290,1, 0x079298,1, 0x0792a0,1, 0x0792a8,1, 0x0792b0,1, 0x0792b8,1, 0x0792c0,1, 0x0792c8,1, 0x0792d0,1, 0x0792d8,1, 0x0792e0,1, 0x0792e8,1, 0x0792f0,1, 0x0792f8,1, 0x079300,1, 0x079308,1, 0x079310,1, 0x079318,1, 0x079320,1, 0x079328,1, 0x079330,1, 0x079338,1, 0x079340,1, 0x079348,1, 0x079350,1, 0x079358,1, 0x079360,1, 0x079368,1, 0x079370,1, 0x079378,1, 0x079380,1, 0x079388,1, 0x079390,1, 0x079398,1, 0x0793a0,1, 0x0793a8,1, 0x0793b0,1, 0x0793b8,1, 0x0793c0,1, 0x0793c8,1, 0x0793d0,1, 0x0793d8,1, 0x0793e0,1, 0x0793e8,1, 0x0793f0,1, 0x0793f8,1, 0x079400,1, 0x079408,1, 0x079410,1, 0x079418,1, 0x079420,1, 0x079428,1, 0x079430,1, 0x079438,1, 0x079440,1, 0x079448,1, 0x079450,1, 0x079458,1, 0x079460,1, 0x079468,1, 0x079470,1, 0x079478,1, 0x079480,1, 0x079488,1, 0x079490,1, 0x079498,1, 0x0794a0,1, 0x0794a8,1, 0x0794b0,1, 0x0794b8,1, 0x0794c0,1, 0x0794c8,1, 0x0794d0,1, 0x0794d8,1, 0x0794e0,1, 0x0794e8,1, 0x0794f0,1, 0x0794f8,1, 0x079500,1, 0x079508,1, 0x079510,1, 0x079518,1, 0x079520,1, 0x079528,1, 0x079530,1, 0x079538,1, 0x079540,1, 0x079548,1, 0x079550,1, 0x079558,1, 0x079560,1, 0x079568,1, 0x079570,1, 0x079578,1, 0x079580,1, 0x079588,1, 0x079590,1, 0x079598,1, 0x0795a0,1, 0x0795a8,1, 0x0795b0,1, 0x0795b8,1, 0x0795c0,1, 0x0795c8,1, 0x0795d0,1, 0x0795d8,1, 0x0795e0,1, 0x0795e8,1, 0x0795f0,1, 0x0795f8,1, 0x079600,1, 0x079608,1, 0x079610,1, 0x079618,1, 0x079620,1, 0x079628,1, 0x079630,1, 0x079638,1, 0x079640,1, 0x079648,1, 0x079650,1, 0x079658,1, 0x079660,1, 0x079668,1, 0x079670,1, 0x079678,1, 0x079680,1, 0x079688,1, 0x079690,1, 0x079698,1, 0x0796a0,1, 0x0796a8,1, 0x0796b0,1, 0x0796b8,1, 0x0796c0,1, 0x0796c8,1, 0x0796d0,1, 0x0796d8,1, 0x0796e0,1, 0x0796e8,1, 0x0796f0,1, 0x0796f8,1, 0x079700,1, 0x079708,1, 0x079710,1, 0x079718,1, 0x079720,1, 0x079728,1, 0x079730,1, 0x079738,1, 0x079740,1, 0x079748,1, 0x079750,1, 0x079758,1, 0x079760,1, 0x079768,1, 0x079770,1, 0x079778,1, 0x079780,1, 0x079788,1, 0x079790,1, 0x079798,1, 0x0797a0,1, 0x0797a8,1, 0x0797b0,1, 0x0797b8,1, 0x0797c0,1, 0x0797c8,1, 0x0797d0,1, 0x0797d8,1, 0x0797e0,1, 0x0797e8,1, 0x0797f0,1, 0x0797f8,1, 0x079800,1, 0x079808,1, 0x079810,1, 0x079818,1, 0x079820,1, 0x079828,1, 0x079830,1, 0x079838,1, 0x079840,1, 0x079848,1, 0x079850,1, 0x079858,1, 0x079860,1, 0x079868,1, 0x079870,1, 0x079878,1, 0x079880,1, 0x079888,1, 0x079890,1, 0x079898,1, 0x0798a0,1, 0x0798a8,1, 0x0798b0,1, 0x0798b8,1, 0x0798c0,1, 0x0798c8,1, 0x0798d0,1, 0x0798d8,1, 0x0798e0,1, 0x0798e8,1, 0x0798f0,1, 0x0798f8,1, 0x079900,1, 0x079908,1, 0x079910,1, 0x079918,1, 0x079920,1, 0x079928,1, 0x079930,1, 0x079938,1, 0x079940,1, 0x079948,1, 0x079950,1, 0x079958,1, 0x079960,1, 0x079968,1, 0x079970,1, 0x079978,1, 0x079980,1, 0x079988,1, 0x079990,1, 0x079998,1, 0x0799a0,1, 0x0799a8,1, 0x0799b0,1, 0x0799b8,1, 0x0799c0,1, 0x0799c8,1, 0x0799d0,1, 0x0799d8,1, 0x0799e0,1, 0x0799e8,1, 0x0799f0,1, 0x0799f8,1, 0x079a00,1, 0x079a08,1, 0x079a10,1, 0x079a18,1, 0x079a20,1, 0x079a28,1, 0x079a30,1, 0x079a38,1, 0x079a40,1, 0x079a48,1, 0x079a50,1, 0x079a58,1, 0x079a60,1, 0x079a68,1, 0x079a70,1, 0x079a78,1, 0x079a80,1, 0x079a88,1, 0x079a90,1, 0x079a98,1, 0x079aa0,1, 0x079aa8,1, 0x079ab0,1, 0x079ab8,1, 0x079ac0,1, 0x079ac8,1, 0x079ad0,1, 0x079ad8,1, 0x079ae0,1, 0x079ae8,1, 0x079af0,1, 0x079af8,1, 0x079b00,1, 0x079b08,1, 0x079b10,1, 0x079b18,1, 0x079b20,1, 0x079b28,1, 0x079b30,1, 0x079b38,1, 0x079b40,1, 0x079b48,1, 0x079b50,1, 0x079b58,1, 0x079b60,1, 0x079b68,1, 0x079b70,1, 0x079b78,1, 0x079b80,1, 0x079b88,1, 0x079b90,1, 0x079b98,1, 0x079ba0,1, 0x079ba8,1, 0x079bb0,1, 0x079bb8,1, 0x079bc0,1, 0x079bc8,1, 0x079bd0,1, 0x079bd8,1, 0x079be0,1, 0x079be8,1, 0x079bf0,1, 0x079bf8,1, 0x079c00,1, 0x079c08,1, 0x079c10,1, 0x079c18,1, 0x079c20,1, 0x079c28,1, 0x079c30,1, 0x079c38,1, 0x079c40,1, 0x079c48,1, 0x079c50,1, 0x079c58,1, 0x079c60,1, 0x079c68,1, 0x079c70,1, 0x079c78,1, 0x079c80,1, 0x079c88,1, 0x079c90,1, 0x079c98,1, 0x079ca0,1, 0x079ca8,1, 0x079cb0,1, 0x079cb8,1, 0x079cc0,1, 0x079cc8,1, 0x079cd0,1, 0x079cd8,1, 0x079ce0,1, 0x079ce8,1, 0x079cf0,1, 0x079cf8,1, 0x079d00,1, 0x079d08,1, 0x079d10,1, 0x079d18,1, 0x079d20,1, 0x079d28,1, 0x079d30,1, 0x079d38,1, 0x079d40,1, 0x079d48,1, 0x079d50,1, 0x079d58,1, 0x079d60,1, 0x079d68,1, 0x079d70,1, 0x079d78,1, 0x079d80,1, 0x079d88,1, 0x079d90,1, 0x079d98,1, 0x079da0,1, 0x079da8,1, 0x079db0,1, 0x079db8,1, 0x079dc0,1, 0x079dc8,1, 0x079dd0,1, 0x079dd8,1, 0x079de0,1, 0x079de8,1, 0x079df0,1, 0x079df8,1, 0x079e00,1, 0x079e08,1, 0x079e10,1, 0x079e18,1, 0x079e20,1, 0x079e28,1, 0x079e30,1, 0x079e38,1, 0x079e40,1, 0x079e48,1, 0x079e50,1, 0x079e58,1, 0x079e60,1, 0x079e68,1, 0x079e70,1, 0x079e78,1, 0x079e80,1, 0x079e88,1, 0x079e90,1, 0x079e98,1, 0x079ea0,1, 0x079ea8,1, 0x079eb0,1, 0x079eb8,1, 0x079ec0,1, 0x079ec8,1, 0x079ed0,1, 0x079ed8,1, 0x079ee0,1, 0x079ee8,1, 0x079ef0,1, 0x079ef8,1, 0x079f00,1, 0x079f08,1, 0x079f10,1, 0x079f18,1, 0x079f20,1, 0x079f28,1, 0x079f30,1, 0x079f38,1, 0x079f40,1, 0x079f48,1, 0x079f50,1, 0x079f58,1, 0x079f60,1, 0x079f68,1, 0x079f70,1, 0x079f78,1, 0x079f80,1, 0x079f88,1, 0x079f90,1, 0x079f98,1, 0x079fa0,1, 0x079fa8,1, 0x079fb0,1, 0x079fb8,1, 0x079fc0,1, 0x079fc8,1, 0x079fd0,1, 0x079fd8,1, 0x079fe0,1, 0x079fe8,1, 0x079ff0,1, 0x079ff8,1, 0x07bef8,2, 0x07bf04,1, 0x07bf14,22, 0x07bf80,2, 0x07bffc,1033, 0x07e000,1044, 0x07f100,8, 0x07f160,4, 0x07f200,3, 0x07f7f8,514, 0x080680,7, 0x081000,3, 0x081010,16, 0x081120,1, 0x081130,2, 0x081140,1, 0x081150,2, 0x081160,1, 0x081170,2, 0x081204,18, 0x081304,2, 0x08139c,25, 0x081404,23, 0x081468,6, 0x081504,2, 0x081604,14, 0x081640,2, 0x08164c,15, 0x08168c,15, 0x0816cc,15, 0x08170c,15, 0x08174c,15, 0x08178c,15, 0x0817cc,15, 0x08180c,13, 0x081904,5, 0x081a30,4, 0x081a60,18, 0x081ab0,3, 0x081ad0,4, 0x081c00,128, 0x081e04,12, 0x082000,8, 0x082024,1, 0x082030,1, 0x082044,20, 0x08209c,2, 0x0820ac,14, 0x082180,1, 0x0821c4,1, 0x0821e0,1, 0x0821e8,3, 0x0821f8,1, 0x082200,9, 0x08229c,3, 0x0822e0,7, 0x082328,2, 0x082430,20, 0x082484,3, 0x082498,2, 0x082500,16, 0x082548,2, 0x082558,2, 0x082564,2, 0x082590,11, 0x0825c4,7, 0x0827fc,14, 0x082838,66, 0x082c00,13, 0x082c38,66, 0x083000,13, 0x083038,66, 0x083800,2, 0x083814,2, 0x083828,3, 0x083840,1, 0x083850,2, 0x083860,1, 0x083870,2, 0x0838e4,5, 0x083910,5, 0x083948,6, 0x0f0000,3, 0x0f0014,4, 0x0f0040,6, 0x0f0078,3, 0x0f0090,2, 0x0f00a4,2, 0x0f00b0,4, 0x0f00f0,24, 0x0f0180,17, 0x0f01e0,4, 0x0f01f4,1, 0x0f0200,4, 0x0f0240,9, 0x0f0270,2, 0x0f0280,3, 0x0f02a4,5, 0x0f02c0,11, 0x0f0400,2, 0x0f0410,10, 0x0f0510,20, 0x0f3000,1, 0x0f300c,3, 0x0f301c,21, 0x0f3078,14, 0x0f30c0,13, 0x0f30fc,2, 0x0f310c,1, 0x0f3120,2, 0x0f3130,5, 0x0f3184,13, 0x0f31bc,2, 0x0f3204,1, 0x0f3210,5, 0x0f3240,1, 0x0f3248,3, 0x0f3260,6, 0x0f3280,8, 0x0f32d4,1, 0x0f3400,12, 0x0f3434,3, 0x0f3444,15, 0x0f3500,1, 0x0f3520,6, 0x0f3540,15, 0x0f3580,9, 0x0f35b0,2, 0x0f35c0,2, 0x0f35dc,6, 0x0f360c,6, 0x0f362c,5, 0x0f3700,15, 0x0f3740,4, 0x0f3760,1, 0x0f3770,2, 0x0f3780,1, 0x0f3790,2, 0x0f3800,3, 0x0f3810,25, 0x0f389c,5, 0x0f38f8,2, 0x0f3a00,3, 0x0f3a10,4, 0x0f3a24,3, 0x0f3a34,4, 0x0f3a84,3, 0x0f3b00,1, 0x0f3b08,2, 0x0f3b20,1, 0x0f3b28,23, 0x0f3b88,2, 0x0f3ba0,1, 0x0f3ba8,27, 0x0f3c18,3, 0x0f3c30,4, 0x0f3d00,1, 0x0f3d14,1, 0x0f3d28,2, 0x0f3d40,1, 0x0f3d50,2, 0x0f3de4,4, 0x0f3e00,73, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX4LX.csv0000644000175000017500000011237514522641732022514 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16388, 0x010084,1, 0x01008c,2, 0x010180,6, 0x01019c,9, 0x010304,1, 0x0103bc,52, 0x010500,35, 0x010604,1, 0x01060c,1, 0x010624,1, 0x01062c,1, 0x010644,1, 0x01064c,3, 0x010800,1, 0x010814,3, 0x010844,1, 0x01084c,4, 0x011000,32, 0x011200,32, 0x011400,32, 0x011600,32, 0x011800,32, 0x011a00,5, 0x011a24,1, 0x011a2c,1, 0x011a34,3, 0x011a44,1, 0x011a4c,2, 0x012000,20, 0x012088,22, 0x012100,18, 0x012200,36, 0x012300,3, 0x012310,1, 0x012320,1, 0x012330,1, 0x012340,1, 0x012350,1, 0x012360,1, 0x012370,1, 0x012400,166, 0x0126a0,1, 0x012700,32, 0x012800,1, 0x012808,1, 0x012810,1, 0x012818,1, 0x012820,1, 0x012828,1, 0x012830,1, 0x012838,1, 0x012850,1, 0x012858,1, 0x012860,1, 0x012868,1, 0x012870,1, 0x012878,1, 0x012880,1, 0x012888,1, 0x012890,5, 0x012900,10, 0x012940,6, 0x012960,6, 0x012980,5, 0x012a00,6, 0x012a40,5, 0x012a80,9, 0x012ac0,19, 0x012b10,2, 0x014000,1, 0x014010,10, 0x014104,1, 0x01410c,4, 0x014200,1, 0x014210,4, 0x014300,4, 0x014400,3, 0x014410,1, 0x014444,1, 0x01444c,4, 0x014480,2, 0x014500,35, 0x014590,1, 0x014600,32, 0x014704,1, 0x01470c,1, 0x014804,2, 0x014814,3, 0x014824,2, 0x014834,3, 0x014844,2, 0x014854,5, 0x014a00,4, 0x014a14,2, 0x015004,1, 0x01500c,4, 0x015204,1, 0x015214,4, 0x015228,1, 0x015244,1, 0x015250,4, 0x015274,1, 0x01527c,1, 0x0152a4,1, 0x015300,4, 0x015314,1, 0x01531c,3, 0x015404,2, 0x015430,20, 0x015484,2, 0x015498,5, 0x0154bc,1, 0x0154c8,1, 0x0154d4,1, 0x01550c,3, 0x015524,3, 0x015608,3, 0x015618,4, 0x015680,16, 0x015704,2, 0x015730,20, 0x015784,3, 0x015794,3, 0x0157c0,6, 0x015800,52, 0x0158d4,1, 0x0158dc,1, 0x0158e4,3, 0x0158f4,1, 0x0158fc,52, 0x015b04,2, 0x015b14,3, 0x015b24,2, 0x015b38,6, 0x015b60,5, 0x015c04,1, 0x015cb8,18, 0x015d98,1, 0x015e00,1, 0x015e08,1, 0x015e10,1, 0x016000,32, 0x016100,7, 0x016120,2, 0x016144,3, 0x016204,1, 0x01620c,1, 0x016224,1, 0x01622c,1, 0x016234,1, 0x01623c,1, 0x016244,1, 0x01624c,1, 0x016254,1, 0x01625c,2, 0x016270,1, 0x016280,1, 0x016290,1, 0x0162a0,1, 0x0162b0,1, 0x0162c0,1, 0x0162d0,1, 0x0162e0,1, 0x0162f0,1, 0x016300,1, 0x016310,1, 0x016320,1, 0x016330,1, 0x016340,32, 0x016400,19, 0x016454,7, 0x016484,1, 0x01648c,1, 0x016800,9, 0x016840,16, 0x017800,1, 0x017828,1, 0x017850,1, 0x017878,1, 0x0178a0,12, 0x0179ac,1, 0x0179d8,4, 0x017a00,6, 0x017a20,6, 0x017a40,3, 0x017c00,6, 0x017c20,6, 0x017c40,6, 0x017c60,6, 0x017c80,6, 0x017ca0,6, 0x017cc0,6, 0x017ce0,6, 0x017d00,3, 0x017d10,6, 0x018400,11, 0x018430,2, 0x018440,4, 0x018604,1, 0x018618,2, 0x018640,4, 0x018660,2, 0x018800,1, 0x018810,4, 0x018844,1, 0x01884c,4, 0x018880,2, 0x01a400,12, 0x01a444,1, 0x01a44c,1, 0x01a800,1, 0x01a814,3, 0x01a844,1, 0x01a84c,4, 0x01c400,7, 0x01c500,8, 0x01c544,1, 0x01c554,3, 0x01c564,3, 0x01c574,3, 0x01c604,1, 0x01c60c,3, 0x01c800,1, 0x01c814,3, 0x01c844,1, 0x01c84c,4, 0x01f000,1, 0x01f400,1, 0x01f408,4, 0x01f41c,3, 0x01f500,2, 0x01f800,1, 0x01f814,3, 0x01f844,1, 0x01f84c,4, 0x01f880,3, 0x020004,1, 0x02000c,4, 0x020080,3, 0x020090,5, 0x020800,16, 0x020900,192, 0x021004,1, 0x02100c,4, 0x021400,5, 0x021418,5, 0x021480,1, 0x021704,2, 0x02173c,17, 0x0217fc,2, 0x021844,1, 0x022280,12, 0x022408,6, 0x022444,1, 0x022454,3, 0x022504,1, 0x02250c,4, 0x022624,1, 0x02262c,3, 0x02263c,1, 0x022804,1, 0x02280c,4, 0x022904,4, 0x022924,4, 0x024000,36, 0x0240c0,21, 0x024120,11, 0x024200,5, 0x024220,1, 0x024230,8, 0x024258,1, 0x024260,1, 0x024270,9, 0x0242a0,1, 0x0242b0,4, 0x0242c8,2, 0x024300,5, 0x024318,2, 0x02439c,25, 0x024424,4, 0x024464,13, 0x0244a4,1, 0x0244ac,3, 0x0244c0,2, 0x0244d0,3, 0x0244e0,3, 0x0244f0,3, 0x024500,3, 0x024510,3, 0x024520,3, 0x024530,3, 0x024884,11, 0x0248b4,3, 0x0248c4,1, 0x0248cc,1, 0x0248d4,1, 0x0248dc,1, 0x0248f0,2, 0x024908,6, 0x024928,6, 0x024968,6, 0x024984,3, 0x024994,1, 0x02499c,6, 0x0249b8,7, 0x024a08,6, 0x024a28,6, 0x024a68,6, 0x024a84,1, 0x024a8c,1, 0x024a94,1, 0x024a9c,13, 0x024ae0,6, 0x024b00,7, 0x024b20,6, 0x024b40,8, 0x024c00,2, 0x024c24,3, 0x024c34,3, 0x025004,6, 0x025800,37, 0x025904,1, 0x02590c,1, 0x026000,99, 0x026200,1, 0x026800,7, 0x026824,6, 0x026840,2, 0x026864,1, 0x02686c,1, 0x026874,3, 0x026884,1, 0x0268a4,7, 0x026904,1, 0x02690c,4, 0x026940,1, 0x026980,33, 0x026a0c,7, 0x026a30,1, 0x026a44,4, 0x026a60,1, 0x026a70,1, 0x026b00,9, 0x026b44,2, 0x026b68,6, 0x026b84,2, 0x026ba8,14, 0x026c00,16, 0x026c44,1, 0x026c4c,1, 0x026c84,1, 0x026c8c,4, 0x026cc4,1, 0x026ccc,4, 0x026d00,2, 0x028800,2, 0x028844,1, 0x02884c,4, 0x029004,7, 0x029b30,2, 0x029b50,4, 0x02a004,1, 0x02a00c,4, 0x02a040,6, 0x02a200,1, 0x02a210,11, 0x02a240,8, 0x02a484,1, 0x02a4c0,16, 0x02a780,1, 0x02a7a0,4, 0x02a7c0,1, 0x02a900,1, 0x02aa04,1, 0x02aa0c,4, 0x02ab00,40, 0x02aba4,1, 0x02abac,1, 0x02abb4,1, 0x02abbc,1, 0x02abc4,1, 0x02abcc,1, 0x02abe0,4, 0x02abf4,2, 0x02ac00,2, 0x02ac10,3, 0x02ac44,3, 0x02ad00,1, 0x02ad08,1, 0x02ad10,1, 0x02ad18,1, 0x02ad20,1, 0x02ad28,1, 0x02ad30,1, 0x02ad38,1, 0x02ad40,1, 0x02ad48,1, 0x02ad50,1, 0x02ad58,1, 0x02ad60,1, 0x02ad68,1, 0x02ad70,1, 0x02ad78,1, 0x02ad80,1, 0x02ad88,1, 0x02ad90,1, 0x02ad98,1, 0x02ada0,1, 0x02ada8,1, 0x02adb0,1, 0x02adb8,1, 0x02adc0,1, 0x02adc8,1, 0x02add0,1, 0x02add8,1, 0x02ade0,1, 0x02ade8,1, 0x02adf0,1, 0x02adf8,1, 0x02ae00,6, 0x02ae20,5, 0x02ae40,4, 0x02c000,6, 0x02c100,5, 0x02c204,1, 0x02c214,3, 0x02c224,1, 0x02c22c,4, 0x02c244,2, 0x02c250,5, 0x02c400,2, 0x02c428,2, 0x02c450,2, 0x02c478,2, 0x02c4a0,21, 0x02c5ac,1, 0x02c5d8,4, 0x02c600,6, 0x02c620,6, 0x02c640,6, 0x02c660,6, 0x02c680,3, 0x02c800,3, 0x02c820,6, 0x02c840,6, 0x02c860,6, 0x02c880,6, 0x02c8a0,6, 0x02c8c0,6, 0x02c8e0,6, 0x02c900,6, 0x02c920,6, 0x02c940,6, 0x02c960,6, 0x02c980,6, 0x02c9a0,6, 0x02c9c0,6, 0x02c9e0,6, 0x02ca00,6, 0x02ca20,6, 0x02ca40,6, 0x02ca60,6, 0x02ca80,6, 0x02caa0,6, 0x02cac0,6, 0x02cae0,6, 0x02cb00,6, 0x02cb20,6, 0x02cc48,5, 0x02cd00,9, 0x02cd40,18, 0x030004,2, 0x030034,19, 0x030084,2, 0x0300bc,17, 0x030104,2, 0x030138,27, 0x030310,3, 0x030340,2, 0x03034c,2, 0x030384,1, 0x0303c0,16, 0x030404,1, 0x03040c,4, 0x030804,1, 0x03080c,4, 0x030c04,1, 0x030c0c,4, 0x030c40,4, 0x031000,11, 0x031100,11, 0x031200,17, 0x031280,6, 0x031304,1, 0x03130c,5, 0x031400,6, 0x031420,1, 0x031444,2, 0x031454,3, 0x031464,2, 0x031474,11, 0x031500,7, 0x031520,6, 0x031540,8, 0x031600,13, 0x031640,6, 0x031700,2, 0x034200,24, 0x034280,10, 0x0342ac,2, 0x0342c0,6, 0x0342f0,39, 0x034600,24, 0x034680,10, 0x0346ac,2, 0x0346c0,6, 0x0346f0,39, 0x034c00,6, 0x034c20,4, 0x034c40,9, 0x034c80,9, 0x034cc0,3, 0x034cd0,3, 0x034e04,2, 0x034e10,4, 0x034e44,1, 0x034e4c,4, 0x034e80,6, 0x034ea0,4, 0x034f04,1, 0x034f18,11, 0x034f80,2, 0x035000,2, 0x035010,3, 0x035044,3, 0x035100,66, 0x035210,3, 0x035244,3, 0x035300,64, 0x035404,1, 0x03540c,8, 0x037000,6, 0x03702c,7, 0x037080,10, 0x0370ac,4, 0x037100,4, 0x037200,2, 0x037210,3, 0x037244,3, 0x037300,70, 0x03742c,7, 0x037480,10, 0x0374ac,4, 0x037500,4, 0x037600,2, 0x037610,3, 0x037644,3, 0x037700,69, 0x037818,4, 0x038000,3, 0x038104,3, 0x03813c,2, 0x038150,3, 0x038400,1, 0x038428,1, 0x038450,1, 0x038478,1, 0x0384a0,20, 0x0385ac,1, 0x0385d8,4, 0x038600,6, 0x038620,6, 0x038640,3, 0x038800,3, 0x038820,6, 0x038840,6, 0x038860,6, 0x038880,6, 0x0388a0,6, 0x0388c0,6, 0x038900,28, 0x038978,2, 0x038a40,25, 0x038ac0,16, 0x039000,35, 0x039090,3, 0x039100,35, 0x039190,3, 0x039200,35, 0x039290,3, 0x039300,35, 0x039390,3, 0x039400,35, 0x039490,3, 0x039500,1, 0x039800,3, 0x039884,1, 0x0398c0,16, 0x039904,2, 0x039934,20, 0x039a04,2, 0x039a10,4, 0x039a24,2, 0x039a30,4, 0x039a44,2, 0x039a50,4, 0x039a64,2, 0x039a70,8, 0x039c00,7, 0x039c20,6, 0x039c40,8, 0x039d00,11, 0x039d40,11, 0x039d84,1, 0x039dc0,26, 0x039e30,2, 0x039e44,3, 0x039e54,1, 0x039e5c,2, 0x039e80,2, 0x039e90,3, 0x039ea4,1, 0x039eac,3, 0x039ec0,3, 0x039f00,9, 0x039f40,22, 0x039fa0,6, 0x039fc0,8, 0x03c000,3, 0x03c010,3, 0x03c020,3, 0x03c040,9, 0x03c068,6, 0x03c090,2, 0x03c0a0,3, 0x03c0c0,12, 0x03c0f4,1, 0x03c100,2, 0x03c110,3, 0x03c120,1, 0x03c130,11, 0x03c160,2, 0x03c180,4, 0x03c194,3, 0x03c1a4,2, 0x03c1b0,4, 0x03c2e0,5, 0x03c2f8,2, 0x03c30c,13, 0x03c34c,77, 0x03c48c,18, 0x03c500,32, 0x03c800,16, 0x03c84c,18, 0x03c8e0,2, 0x03c8ec,3, 0x03ca78,34, 0x03cb3c,18, 0x03cb94,3, 0x03cba4,3, 0x03cbf0,1, 0x03cbf8,10, 0x03cc30,1, 0x03cc44,4, 0x03cc60,1, 0x03cc80,1, 0x03cc90,1, 0x03d004,6, 0x03e004,1, 0x03e00c,4, 0x03e404,1, 0x03e40c,4, 0x03e604,1, 0x03e60c,4, 0x03e800,1, 0x03f034,19, 0x03f084,2, 0x03f0c0,16, 0x03f200,1, 0x03f210,1, 0x03f300,6, 0x03f320,6, 0x03f380,9, 0x03f3c0,16, 0x050000,1, 0x050008,2, 0x050044,8, 0x050104,1, 0x050178,34, 0x050204,1, 0x05020c,1, 0x050214,1, 0x050224,1, 0x05022c,1, 0x050234,1, 0x05023c,1, 0x050244,1, 0x05024c,1, 0x050254,1, 0x050264,3, 0x050280,2, 0x050290,2, 0x0502b4,1, 0x0502bc,1, 0x0502c4,1, 0x0502cc,1, 0x0502d4,1, 0x0502dc,1, 0x0502e4,1, 0x0502ec,1, 0x0502f4,1, 0x0502fc,1, 0x050304,1, 0x05030c,1, 0x050314,3, 0x050324,3, 0x050334,6, 0x050380,32, 0x050404,1, 0x050438,18, 0x050500,2, 0x050544,1, 0x05054c,4, 0x050584,2, 0x050598,2, 0x0505a4,1, 0x0505b0,4, 0x0505c4,1, 0x0505cc,1, 0x0505d4,1, 0x0505e0,1, 0x0505f0,17, 0x050700,2, 0x050800,1, 0x050820,9, 0x050850,5, 0x050870,5, 0x0508c4,3, 0x0508d4,3, 0x0508e4,3, 0x0508f4,4, 0x050910,5, 0x050930,4, 0x050944,1, 0x05094c,47, 0x050a40,1, 0x050a50,28, 0x050ac4,1, 0x050acc,2, 0x050ad8,10, 0x050b04,1, 0x050b0c,1, 0x050b14,1, 0x050b20,9, 0x050b50,4, 0x050b64,1, 0x050b70,6, 0x050b8c,4, 0x050ba4,4, 0x050bc0,1, 0x050bd0,1, 0x050be0,1, 0x050bf0,1, 0x050c00,1, 0x050c14,1, 0x050c1c,1, 0x050c24,1, 0x050c2c,1, 0x050c34,1, 0x050c3c,1, 0x050c44,1, 0x050c4c,1, 0x050c54,4, 0x050c70,1, 0x050c80,1, 0x050c90,1, 0x050ca0,1, 0x050cb0,1, 0x050cc0,1, 0x050cd0,1, 0x050ce0,1, 0x050cf0,1, 0x050d00,1, 0x050d10,1, 0x050d20,1, 0x050d30,1, 0x050d40,1, 0x050d50,1, 0x050d60,1, 0x050d70,1, 0x050d80,1, 0x050d90,1, 0x050da0,1, 0x050db0,1, 0x050dc0,1, 0x050dd0,1, 0x050de0,1, 0x050e00,64, 0x052000,193, 0x052800,2, 0x053000,51, 0x053400,3, 0x053420,6, 0x053440,6, 0x053460,6, 0x053480,6, 0x0534a0,6, 0x0534c0,6, 0x0534e0,6, 0x053500,6, 0x053520,6, 0x053540,6, 0x053560,6, 0x053614,11, 0x053654,11, 0x0536d4,11, 0x053704,1, 0x053740,18, 0x0537a0,10, 0x0537e0,29, 0x053860,10, 0x054204,1, 0x05420c,1, 0x054214,1, 0x054224,1, 0x05422c,1, 0x054234,1, 0x054244,1, 0x05424c,3, 0x054304,1, 0x054340,16, 0x0543a0,1, 0x0543b0,1, 0x0543c0,1, 0x0543d0,4, 0x054400,8, 0x054440,10, 0x054820,3, 0x054928,9, 0x054954,4, 0x054970,1, 0x054980,1, 0x054990,5, 0x0549c4,13, 0x054a04,1, 0x054a0c,4, 0x054a40,1, 0x054a50,5, 0x054a70,1, 0x054a80,1, 0x054a90,2, 0x054c04,1, 0x054c0c,4, 0x054c40,1, 0x054c50,4, 0x054d40,1, 0x054d80,7, 0x054e04,1, 0x054e0c,4, 0x054e40,1, 0x054e50,4, 0x054f40,1, 0x054f80,7, 0x055000,11, 0x055050,7, 0x055070,16, 0x0550b8,8, 0x055200,13, 0x055240,11, 0x055300,16, 0x055400,3, 0x055420,6, 0x055440,6, 0x055460,6, 0x055480,6, 0x0554a0,6, 0x0554c0,6, 0x0554e0,6, 0x055500,6, 0x055520,6, 0x055540,6, 0x055560,6, 0x055580,6, 0x0555a0,6, 0x0555c0,6, 0x0555e0,6, 0x055600,6, 0x055620,6, 0x055640,6, 0x055660,6, 0x055680,6, 0x056000,2, 0x056044,1, 0x05604c,4, 0x056800,2, 0x056844,1, 0x05684c,4, 0x057004,7, 0x057b20,2, 0x057b30,2, 0x057b50,5, 0x058004,1, 0x05800c,4, 0x058800,7, 0x058820,6, 0x058844,2, 0x058864,9, 0x058890,1, 0x0588a0,1, 0x0588b0,1, 0x0588c0,1, 0x0588d0,1, 0x058904,3, 0x058978,66, 0x058a84,1, 0x058a8c,1, 0x058a94,1, 0x058aa0,2, 0x058ff0,4, 0x059004,1, 0x05900c,4, 0x059080,39, 0x059120,1, 0x059130,1, 0x059140,1, 0x059150,1, 0x059160,1, 0x059800,1, 0x059810,1, 0x059820,1, 0x059830,1, 0x059840,1, 0x059850,1, 0x059860,1, 0x059870,1, 0x059880,1, 0x059890,1, 0x0598a0,1, 0x0598b0,1, 0x0598d8,3, 0x059900,3, 0x059980,9, 0x0599c0,32, 0x059a44,3, 0x059a54,1, 0x059a5c,1, 0x059c00,2, 0x059c28,2, 0x059c50,2, 0x059c78,2, 0x059ca0,18, 0x059dac,1, 0x059dd8,4, 0x059e00,6, 0x059e20,6, 0x059e40,6, 0x059e60,6, 0x059e80,3, 0x05a000,4, 0x05a020,2, 0x05a030,1, 0x05a04c,2, 0x05a070,4, 0x05a088,3, 0x05a0a0,1, 0x05a0b0,1, 0x05a0c0,1, 0x05a0d4,1, 0x060020,4, 0x060120,4, 0x060144,2, 0x060154,7, 0x060174,1, 0x06017c,3, 0x06018c,1, 0x0601a0,4, 0x0601b8,2, 0x0601c4,2, 0x0601e4,7, 0x060204,1, 0x06020c,4, 0x060240,16, 0x060304,1, 0x06030c,1, 0x060400,2, 0x060420,3, 0x060430,1, 0x060440,1, 0x060484,2, 0x0604b8,18, 0x060504,1, 0x06050c,1, 0x060514,1, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,1, 0x060a8c,1, 0x060a94,1, 0x060a9c,1, 0x060bf0,3, 0x060c00,11, 0x060c30,3, 0x061004,1, 0x061010,1, 0x061018,4, 0x061044,2, 0x061054,3, 0x061100,32, 0x061200,1, 0x061404,1, 0x06140c,4, 0x061440,2, 0x061468,2, 0x061478,2, 0x06180c,8, 0x061908,6, 0x061928,6, 0x061968,6, 0x061988,6, 0x0619a8,6, 0x0619e8,14, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062080,2, 0x062094,1, 0x06209c,2, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e4,3, 0x0621f4,3, 0x062404,1, 0x06240c,4, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,1, 0x062900,3, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,3, 0x062960,2, 0x063000,1, 0x063010,4, 0x063024,1, 0x06302c,1, 0x063034,1, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,3, 0x063100,2, 0x063144,1, 0x06314c,1, 0x063154,1, 0x063164,1, 0x06316c,1, 0x063174,1, 0x063180,16, 0x063208,1, 0x063210,1, 0x063218,1, 0x063224,3, 0x063240,10, 0x063300,8, 0x064004,1, 0x06400c,4, 0x064200,3, 0x064300,1, 0x064308,6, 0x064324,2, 0x064338,2, 0x064380,2, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,3, 0x064430,1, 0x064440,1, 0x064484,2, 0x0644b8,18, 0x064504,1, 0x06450c,1, 0x064514,1, 0x064804,1, 0x064884,2, 0x0648c8,14, 0x065018,2, 0x06507c,10, 0x0650c0,16, 0x065104,3, 0x065114,1, 0x065200,3, 0x065220,6, 0x065240,6, 0x065260,6, 0x065280,6, 0x065300,1, 0x065f00,2, 0x066000,2, 0x066028,2, 0x066050,2, 0x066078,2, 0x0660a0,27, 0x0661ac,1, 0x0661d8,4, 0x066200,6, 0x066220,6, 0x066240,6, 0x066260,6, 0x066280,3, 0x066400,6, 0x066500,17, 0x066550,8, 0x066574,3, 0x070004,1, 0x07000c,4, 0x070400,7, 0x070420,11, 0x070500,5, 0x070524,1, 0x07052c,1, 0x070534,1, 0x070540,4, 0x070600,142, 0x070884,2, 0x0708b4,19, 0x070904,1, 0x070940,16, 0x071000,1, 0x071094,1, 0x071104,2, 0x071140,16, 0x071204,1, 0x07120c,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,3, 0x072804,1, 0x07280c,4, 0x072880,1, 0x072888,3, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,16, 0x074830,4, 0x074884,1, 0x074890,4, 0x074900,3, 0x074920,6, 0x074940,6, 0x074980,9, 0x0749c0,16, 0x075000,3, 0x075010,2, 0x075020,4, 0x075100,2, 0x080000,29, 0x080340,14, 0x08037c,3, 0x08038c,1, 0x0803c0,2, 0x0803e4,3, 0x0803f4,3, 0x080404,6, 0x080804,2, 0x080874,35, 0x081000,129, 0x081210,4, 0x081228,3, 0x081240,2, 0x081264,2, 0x081274,3, 0x081284,2, 0x081298,2, 0x0812a4,1, 0x0812b4,21, 0x081310,8, 0x081344,1, 0x08134c,1, 0x081354,1, 0x081364,2, 0x081370,4, 0x081384,2, 0x081390,4, 0x081404,2, 0x081478,34, 0x081504,2, 0x081518,14, 0x081580,5, 0x081598,2, 0x0815a4,10, 0x082000,29, 0x082340,14, 0x08237c,3, 0x08238c,1, 0x0823c0,2, 0x0823e4,3, 0x0823f4,3, 0x082404,1, 0x08240c,4, 0x082804,2, 0x082874,35, 0x082904,2, 0x082974,35, 0x083000,129, 0x083210,6, 0x083244,2, 0x083254,7, 0x083284,1, 0x08328c,1, 0x083294,1, 0x0832a4,1, 0x0832b4,19, 0x083304,2, 0x083310,4, 0x083324,2, 0x083330,14, 0x084000,29, 0x084340,14, 0x08437c,3, 0x08438c,1, 0x0843c0,2, 0x0843e4,3, 0x0843f4,3, 0x084404,1, 0x08440c,4, 0x084804,2, 0x084874,35, 0x084904,2, 0x084974,35, 0x085000,32, 0x085200,1, 0x085210,7, 0x085240,12, 0x085280,2, 0x0852a4,1, 0x0852b4,3, 0x085304,1, 0x08530c,1, 0x085314,1, 0x085324,2, 0x085334,3, 0x085344,2, 0x085358,2, 0x085364,2, 0x085378,2, 0x085384,2, 0x085398,2, 0x0853c0,23, 0x086000,2, 0x086020,2, 0x086040,1, 0x086400,11, 0x086800,3, 0x086820,6, 0x086840,6, 0x086860,6, 0x086880,6, 0x0868a0,6, 0x0868c0,6, 0x0868e0,6, 0x086900,9, 0x086940,17, 0x087000,26, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b0,9, 0x087200,1, 0x087208,1, 0x087210,3, 0x090000,17, 0x090060,2, 0x09006c,1, 0x090104,1, 0x090140,25, 0x0901a8,2, 0x0901c0,9, 0x0901e8,2, 0x090204,1, 0x090220,24, 0x090300,6, 0x090320,9, 0x090348,1, 0x090350,1, 0x090400,6, 0x090420,9, 0x090448,1, 0x090450,1, 0x090500,6, 0x090520,6, 0x090540,2, 0x090564,2, 0x090578,3, 0x091004,3, 0x091800,8, 0x091824,2, 0x091830,10, 0x091860,6, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,3, 0x093404,1, 0x093440,16, 0x093504,1, 0x09353c,28, 0x0935b0,2, 0x0935c0,3, 0x094000,9, 0x094040,19, 0x0940c0,2, 0x094800,1, 0x094828,1, 0x094850,1, 0x094878,1, 0x0948a0,8, 0x0949ac,1, 0x0949d8,4, 0x094a00,6, 0x094a20,6, 0x094a40,3, 0x096000,1, 0x096010,4, 0x096028,3, 0x096104,1, 0x09610c,7, 0x096204,1, 0x09620c,4, 0x096488,1, 0x096498,3, 0x0964b0,4, 0x096504,1, 0x09650c,4, 0x096584,4, 0x096600,16, 0x096644,2, 0x096658,10, 0x096684,2, 0x0966bc,51, 0x096800,11, 0x096884,3, 0x0968a0,12, 0x097100,6, 0x097120,1, 0x0a2004,1, 0x0a200c,4, 0x0a2400,2, 0x0a240c,6, 0x0a2440,1, 0x0a2450,4, 0x0a2468,3, 0x0a2480,1, 0x0a24a0,10, 0x0a24d0,9, 0x0a2804,1, 0x0a280c,4, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c68,3, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,1, 0x0a300c,4, 0x0a3040,2, 0x0a3064,3, 0x0a3074,3, 0x0a3200,9, 0x0a3230,2, 0x0a323c,2, 0x0a3248,4, 0x0a3400,1, 0x0a3408,3, 0x0a3418,4, 0x0a3430,2, 0x0a343c,1, 0x0a3480,1, 0x0a3490,1, 0x0a3504,1, 0x0a3510,76, 0x0a4000,48, 0x0a4100,3, 0x0a4110,6, 0x0a412c,4, 0x0a4140,1, 0x0a4304,1, 0x0a4318,10, 0x0a4804,1, 0x0a480c,4, 0x0a4840,2, 0x0a4864,3, 0x0a4874,3, 0x0a4c04,2, 0x0a4c10,2, 0x0a4c1c,6, 0x0a4c38,2, 0x0a4c50,8, 0x0a4c78,19, 0x0a4d04,2, 0x0a4d40,21, 0x0a4da4,1, 0x0a4dac,1, 0x0a4db4,1, 0x0a4dc0,1, 0x0a5000,14, 0x0a6000,1, 0x0a6028,1, 0x0a6050,1, 0x0a6078,1, 0x0a60a0,18, 0x0a61ac,1, 0x0a61d8,4, 0x0a6200,6, 0x0a6220,6, 0x0a6240,3, 0x0a6400,3, 0x0a6420,6, 0x0a6440,6, 0x0a6460,6, 0x0a6480,6, 0x0a64a0,6, 0x0a64c0,6, 0x0a6500,9, 0x0a6540,18, 0x0a65c0,4, 0x0a8000,10, 0x0a802c,15, 0x0a806c,5, 0x0a8700,17, 0x0a8750,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,4, 0x0a89a4,3, 0x0a89c0,1, 0x0a8a00,4, 0x0a8ad4,10, 0x0a8b00,2, 0x0a8b80,4, 0x0a9804,1, 0x0a980c,4, 0x0a9f00,6, 0x0a9f20,6, 0x0a9f40,6, 0x0a9f60,6, 0x0a9f80,9, 0x0a9fc0,16, 0x0aa020,1, 0x0aa028,2, 0x0b0000,2, 0x0b0010,4, 0x0b1000,15, 0x0b1040,10, 0x0b1080,20, 0x0b1100,2, 0x0b1110,2, 0x0b1120,2, 0x0b1160,2, 0x0b116c,1, 0x0b1180,3, 0x0b1190,3, 0x0b11a0,3, 0x0b11e0,2, 0x0b11ec,1, 0x0b1200,2, 0x0b1210,2, 0x0b1260,2, 0x0b126c,1, 0x0b1280,3, 0x0b1290,3, 0x0b12e0,2, 0x0b12ec,1, 0x0b1300,2, 0x0b1310,2, 0x0b1320,2, 0x0b1360,2, 0x0b136c,1, 0x0b1380,3, 0x0b1390,3, 0x0b13e0,2, 0x0b13ec,1, 0x0b1400,3, 0x0b1410,3, 0x0b1460,2, 0x0b146c,1, 0x0b1480,3, 0x0b1490,7, 0x0b14b0,4, 0x0b14e0,2, 0x0b14ec,1, 0x0b1500,3, 0x0b1510,3, 0x0b1560,2, 0x0b156c,1, 0x0b1580,2, 0x0b1590,2, 0x0b15e0,2, 0x0b15ec,1, 0x0b1600,3, 0x0b1610,3, 0x0b1660,2, 0x0b166c,1, 0x0b1680,3, 0x0b1690,3, 0x0b16e0,2, 0x0b16ec,1, 0x0b1700,8, 0x0b1760,2, 0x0b176c,1, 0x0b1780,3, 0x0b1790,3, 0x0b17e0,2, 0x0b17ec,1, 0x0b1800,9, 0x0b1840,16, 0x0b2000,9, 0x0b2040,48, 0x0b2104,7, 0x0b2200,9, 0x0b2240,48, 0x0b2304,7, 0x0b2400,9, 0x0b2440,48, 0x0b2504,7, 0x0b2600,9, 0x0b2640,48, 0x0b2704,7, 0x0b2800,9, 0x0b2840,48, 0x0b2904,7, 0x0b2a00,9, 0x0b2a40,48, 0x0b2b04,7, 0x0b2c00,9, 0x0b2c40,48, 0x0b2d04,7, 0x0b2e00,9, 0x0b2e40,48, 0x0b2f04,7, 0x0b3000,65, 0x0b3140,35, 0x0b31d0,1, 0x0b4000,132, 0x0b4240,13, 0x0b4278,26, 0x0b4300,9, 0x0b4380,32, 0x0b4404,1, 0x0b440c,4, 0x0b4444,1, 0x0b444c,4, 0x0b4484,1, 0x0b448c,4, 0x0b44c4,3, 0x0b4800,73, 0x0b4940,28, 0x0b49c4,5, 0x0b4a00,1, 0x0b4a20,16, 0x0b5000,7, 0x0b5040,12, 0x0b5100,9, 0x0b5140,16, 0x0b6000,3, 0x0b6028,3, 0x0b6050,3, 0x0b6078,3, 0x0b60a0,7, 0x0b61ac,1, 0x0b61d8,4, 0x0b6200,6, 0x0b6220,6, 0x0b6240,6, 0x0b6260,6, 0x0b6280,6, 0x0b62a0,6, 0x0b62c0,3, 0x0b7800,3, 0x0b7820,6, 0x0b7840,6, 0x0b7860,6, 0x0b7880,6, 0x0b78a0,6, 0x0b78c0,6, 0x0b78e0,6, 0x0b7900,6, 0x0b7a00,1, 0x0d0000,5, 0x0d0038,4, 0x0d0050,4, 0x0d0080,3, 0x0d00a0,6, 0x0d00c0,6, 0x0d0100,3, 0x0d0120,6, 0x0d0140,6, 0x0d0180,14, 0x0d01c0,6, 0x0d1000,2, 0x0d100c,1, 0x0d1020,13, 0x0d1058,1, 0x0d1060,6, 0x0d1080,1, 0x0d1100,2, 0x0d110c,1, 0x0d1120,13, 0x0d1158,1, 0x0d1160,6, 0x0d1180,1, 0x0d1200,2, 0x0d120c,1, 0x0d1220,13, 0x0d1258,1, 0x0d1260,6, 0x0d1280,1, 0x0d1300,2, 0x0d130c,1, 0x0d1320,13, 0x0d1358,1, 0x0d1360,6, 0x0d1380,1, 0x0d1400,3, 0x0d1410,10, 0x0d1440,1, 0x0d1450,6, 0x0d1484,6, 0x0d14a0,6, 0x0d1504,25, 0x0d1580,14, 0x0d15c0,4, 0x0d1600,6, 0x0d1620,6, 0x0d1640,3, 0x0d1660,6, 0x0d1700,2, 0x0d170c,3, 0x0d1720,6, 0x0d1800,11, 0x0d1830,7, 0x0d1850,7, 0x0d1880,5, 0x0d18a0,3, 0x0d18c0,7, 0x0d1a00,1, 0x0d1a08,13, 0x0d1a40,11, 0x0d1c00,24, 0x0d1c64,5, 0x0d1c80,3, 0x0d1c90,2, 0x0d1d00,15, 0x0d1d40,16, 0x0d1d90,4, 0x0d1dc0,12, 0x0d1e00,1, 0x0d1e20,1, 0x0d1e28,12, 0x0d1e5c,1, 0x0d1e80,6, 0x0d1f00,14, 0x0d2000,2, 0x0d200c,1, 0x0d2020,13, 0x0d2058,1, 0x0d2060,6, 0x0d2080,1, 0x0d2100,2, 0x0d210c,1, 0x0d2120,13, 0x0d2158,1, 0x0d2160,6, 0x0d2180,1, 0x0d2200,2, 0x0d220c,1, 0x0d2220,13, 0x0d2258,1, 0x0d2260,6, 0x0d2280,1, 0x0d2300,2, 0x0d230c,1, 0x0d2320,13, 0x0d2358,1, 0x0d2360,6, 0x0d2380,1, 0x0d2400,3, 0x0d2410,10, 0x0d2440,1, 0x0d2450,6, 0x0d2484,6, 0x0d24a0,6, 0x0d2504,25, 0x0d2580,14, 0x0d25c0,4, 0x0d2600,6, 0x0d2620,6, 0x0d2640,3, 0x0d2660,6, 0x0d2700,2, 0x0d270c,3, 0x0d2720,6, 0x0d2800,11, 0x0d2830,7, 0x0d2850,7, 0x0d2880,5, 0x0d28a0,3, 0x0d28c0,7, 0x0d2a00,1, 0x0d2a08,13, 0x0d2a40,11, 0x0d2c00,24, 0x0d2c64,5, 0x0d2c80,3, 0x0d2c90,2, 0x0d2d00,15, 0x0d2d40,16, 0x0d2d90,4, 0x0d2dc0,12, 0x0d3000,2, 0x0d3400,1, 0x0d3428,1, 0x0d3450,1, 0x0d3478,1, 0x0d34a0,5, 0x0d35ac,1, 0x0d35d8,4, 0x0d3600,6, 0x0d3620,6, 0x0d3640,3, 0x0d3e00,3, 0x0d3e20,6, 0x0d3e40,6, 0x0d3e80,3, 0x0d3e90,2, 0x0d4000,29, 0x0d4078,4, 0x0d4090,2, 0x0d40a0,7, 0x0d40c0,11, 0x0d4100,14, 0x0d4140,14, 0x0d4180,61, 0x0d4278,4, 0x0d4290,2, 0x0d42a0,7, 0x0d42c0,11, 0x0d4300,14, 0x0d4340,14, 0x0d4380,61, 0x0d4478,4, 0x0d4490,2, 0x0d44a0,7, 0x0d44c0,11, 0x0d4500,14, 0x0d4540,14, 0x0d4580,61, 0x0d4678,4, 0x0d4690,2, 0x0d46a0,7, 0x0d46c0,11, 0x0d4700,14, 0x0d4740,14, 0x0d4780,69, 0x0d4c00,6, 0x0d4c40,14, 0x0d4c80,9, 0x0d4d00,9, 0x0d4d2c,1, 0x0d4d40,3, 0x0d4d60,1, 0x0d4d80,3, 0x0d4e00,2, 0x0d4e0c,1, 0x0d4e14,5, 0x0d4e2c,1, 0x0d4e34,5, 0x0d4e4c,1, 0x0d4e54,5, 0x0d4e6c,1, 0x0d4e74,5, 0x0d4e8c,1, 0x0d4e94,5, 0x0d4eac,1, 0x0d4eb4,3, 0x0d6000,15, 0x0d6070,3, 0x0d6080,6, 0x0d6100,9, 0x0d6204,8, 0x0d6240,13, 0x0d6280,16, 0x0d6400,8, 0x0d6424,15, 0x0d6464,15, 0x0d64a4,15, 0x0d64e4,30, 0x0d6580,10, 0x0d65ac,1, 0x0d65b4,5, 0x0d65cc,1, 0x0d65d4,5, 0x0d65ec,1, 0x0d65f4,13, 0x0d6680,4, 0x0d6694,2, 0x0d66a0,5, 0x0d66c0,5, 0x0d66e0,4, 0x0d6800,19, 0x0d6850,10, 0x0d6880,19, 0x0d68d0,10, 0x0d6900,19, 0x0d6950,10, 0x0d6980,19, 0x0d69d0,10, 0x0d6a00,19, 0x0d6a50,10, 0x0d6a80,19, 0x0d6ad0,10, 0x0d6c00,19, 0x0d6c60,6, 0x0d6c84,1, 0x0d6c94,8, 0x0d6cb8,9, 0x0d6ce0,4, 0x0d7000,9, 0x0d7040,16, 0x0d8000,6, 0x0d8020,3, 0x0d8030,3, 0x0d8040,6, 0x0d8060,17, 0x0d80c0,38, 0x0d8180,2, 0x0d8400,2, 0x0d8428,2, 0x0d8450,2, 0x0d8478,2, 0x0d84a0,16, 0x0d85ac,1, 0x0d85d8,4, 0x0d8600,6, 0x0d8620,6, 0x0d8640,6, 0x0d8660,6, 0x0d8680,3, 0x0d8800,2, 0x0d9000,36, 0x0d9100,26, 0x0d916c,7, 0x0d91a0,1, 0x0d91c0,9, 0x0d91e8,1, 0x0d9200,6, 0x0d9220,6, 0x0d9248,4, 0x0d9280,6, 0x0d929c,1, 0x0d92a4,2, 0x0d92b8,9, 0x0d9304,4, 0x0d9328,3, 0x0d9340,6, 0x0d9400,1, 0x0d9408,1, 0x0d9410,2, 0x0d9424,2, 0x0d9444,1, 0x0d9480,27, 0x0d9500,6, 0x0d9520,12, 0x0d9700,7, 0x0d9744,9, 0x0d976c,2, 0x0d9780,6, 0x0d97a0,2, 0x0d9800,36, 0x0d9900,26, 0x0d996c,7, 0x0d99a0,1, 0x0d99c0,9, 0x0d99e8,1, 0x0d9a00,6, 0x0d9a20,6, 0x0d9a48,4, 0x0d9a80,6, 0x0d9a9c,1, 0x0d9aa4,2, 0x0d9ab8,9, 0x0d9b04,4, 0x0d9b28,3, 0x0d9b40,6, 0x0d9c00,1, 0x0d9c08,1, 0x0d9c10,2, 0x0d9c24,2, 0x0d9c44,1, 0x0d9c80,27, 0x0d9d00,6, 0x0d9d20,12, 0x0d9f00,7, 0x0d9f44,9, 0x0d9f6c,2, 0x0d9f80,6, 0x0d9fa0,2, 0x0db000,1028, 0x0dc018,18, 0x0dc100,4, 0x0dc118,18, 0x0dc200,12, 0x0dc300,6, 0x0dc320,5, 0x0dc340,6, 0x0dc360,5, 0x0dc380,6, 0x0dc400,9, 0x0dc440,26, 0x0dc4c4,1, 0x0dc4cc,1, 0x0dc4d4,1, 0x0dc50c,7, 0x0dc544,2, 0x0dc55c,9, 0x0dc584,7, 0x0dc5a4,2, 0x0dc5b8,2, 0x0dc5c4,2, 0x0dc5d8,2, 0x0dc600,2, 0x0dcfbc,15, 0x0dd000,7, 0x0dd020,6, 0x0dd040,8, 0x0dd104,1, 0x0dd10c,1, 0x0dd200,8, 0x0dd244,2, 0x0dd268,18, 0x0dd404,1, 0x0dd440,40, 0x0dd504,3, 0x0dd514,3, 0x0dd524,3, 0x0dd534,3, 0x0dd544,3, 0x0dd554,3, 0x0dd564,3, 0x0dd574,3, 0x0dd584,3, 0x0dd594,3, 0x0dd5a4,3, 0x0dd5b4,3, 0x0dd604,2, 0x0dd640,16, 0x0dd684,3, 0x0dd704,2, 0x0dd740,18, 0x0ddc00,4, 0x0ddc80,1, 0x0ddd00,6, 0x0ddd20,6, 0x0ddd40,6, 0x0ddd80,1, 0x0dde00,3, 0x0dde20,10, 0x0dde50,6, 0x0dde80,9, 0x0ddec0,16, 0x0de000,135, 0x0de300,2, 0x0de30c,3, 0x0de320,2, 0x0de32c,3, 0x0de340,2, 0x0de34c,3, 0x0de360,2, 0x0de36c,3, 0x0de380,2, 0x0de38c,3, 0x0de3a0,2, 0x0de3ac,3, 0x0de3c0,2, 0x0de3cc,3, 0x0de3e0,2, 0x0de3ec,3, 0x0de400,2, 0x0de40c,3, 0x0de420,2, 0x0de42c,3, 0x0de440,2, 0x0de44c,3, 0x0de460,2, 0x0de46c,3, 0x0de480,2, 0x0de48c,3, 0x0de4a0,2, 0x0de4ac,3, 0x0de4c0,2, 0x0de4cc,3, 0x0de4e0,2, 0x0de4ec,3, 0x0de500,135, 0x0de800,2, 0x0de80c,3, 0x0de820,2, 0x0de82c,3, 0x0de840,2, 0x0de84c,3, 0x0de860,2, 0x0de86c,3, 0x0de880,2, 0x0de88c,3, 0x0de8a0,2, 0x0de8ac,3, 0x0de8c0,2, 0x0de8cc,3, 0x0de8e0,2, 0x0de8ec,3, 0x0de900,2, 0x0de90c,3, 0x0de920,2, 0x0de92c,3, 0x0de940,2, 0x0de94c,3, 0x0de960,2, 0x0de96c,3, 0x0de980,2, 0x0de98c,3, 0x0de9a0,2, 0x0de9ac,3, 0x0de9c0,2, 0x0de9cc,3, 0x0de9e0,2, 0x0de9ec,3, 0x0dea00,135, 0x0ded00,2, 0x0ded0c,3, 0x0ded20,2, 0x0ded2c,3, 0x0ded40,2, 0x0ded4c,3, 0x0ded60,2, 0x0ded6c,3, 0x0ded80,2, 0x0ded8c,3, 0x0deda0,2, 0x0dedac,3, 0x0dedc0,2, 0x0dedcc,3, 0x0dede0,2, 0x0dedec,3, 0x0dee00,2, 0x0dee0c,3, 0x0dee20,2, 0x0dee2c,3, 0x0dee40,2, 0x0dee4c,3, 0x0dee60,2, 0x0dee6c,3, 0x0dee80,2, 0x0dee8c,3, 0x0deea0,2, 0x0deeac,3, 0x0deec0,2, 0x0deecc,3, 0x0deee0,2, 0x0deeec,3, 0x0def00,135, 0x0df200,2, 0x0df20c,3, 0x0df220,2, 0x0df22c,3, 0x0df240,2, 0x0df24c,3, 0x0df260,2, 0x0df26c,3, 0x0df280,2, 0x0df28c,3, 0x0df2a0,2, 0x0df2ac,3, 0x0df2c0,2, 0x0df2cc,3, 0x0df2e0,2, 0x0df2ec,3, 0x0df300,2, 0x0df30c,3, 0x0df320,2, 0x0df32c,3, 0x0df340,2, 0x0df34c,3, 0x0df360,2, 0x0df36c,3, 0x0df380,2, 0x0df38c,3, 0x0df3a0,2, 0x0df3ac,3, 0x0df3c0,2, 0x0df3cc,3, 0x0df3e0,2, 0x0df3ec,3, 0x0df400,135, 0x0df700,2, 0x0df70c,3, 0x0df720,2, 0x0df72c,3, 0x0df740,2, 0x0df74c,3, 0x0df760,2, 0x0df76c,3, 0x0df780,2, 0x0df78c,3, 0x0df7a0,2, 0x0df7ac,3, 0x0df7c0,2, 0x0df7cc,3, 0x0df7e0,2, 0x0df7ec,3, 0x0df800,2, 0x0df80c,3, 0x0df820,2, 0x0df82c,3, 0x0df840,2, 0x0df84c,3, 0x0df860,2, 0x0df86c,3, 0x0df880,2, 0x0df88c,3, 0x0df8a0,2, 0x0df8ac,3, 0x0df8c0,2, 0x0df8cc,3, 0x0df8e0,2, 0x0df8ec,3, 0x0df900,2, 0x0e0000,3, 0x0e0010,4, 0x0e0028,3, 0x0e0048,2, 0x0e0058,2, 0x0e0064,32, 0x0e00f0,1, 0x0e00fc,35, 0x0e019c,15, 0x0e01e0,1, 0x0e01e8,5, 0x0e0204,5, 0x0e021c,1, 0x0e0300,16, 0x0e0400,3, 0x0e0410,4, 0x0e0428,3, 0x0e0448,2, 0x0e0458,2, 0x0e0464,32, 0x0e04f0,1, 0x0e04fc,35, 0x0e059c,15, 0x0e05e0,1, 0x0e05e8,5, 0x0e0604,5, 0x0e061c,1, 0x0e0700,16, 0x0e0800,3, 0x0e0810,4, 0x0e0828,3, 0x0e0848,2, 0x0e0858,2, 0x0e0864,32, 0x0e08f0,1, 0x0e08fc,35, 0x0e099c,15, 0x0e09e0,1, 0x0e09e8,5, 0x0e0a04,5, 0x0e0a1c,1, 0x0e0b00,16, 0x0e0c00,3, 0x0e0c10,4, 0x0e0c28,3, 0x0e0c48,2, 0x0e0c58,2, 0x0e0c64,32, 0x0e0cf0,1, 0x0e0cfc,35, 0x0e0d9c,15, 0x0e0de0,1, 0x0e0de8,5, 0x0e0e04,5, 0x0e0e1c,1, 0x0e0f00,16, 0x0e1000,3, 0x0e1010,4, 0x0e1028,3, 0x0e1048,2, 0x0e1058,2, 0x0e1064,32, 0x0e10f0,1, 0x0e10fc,35, 0x0e119c,15, 0x0e11e0,1, 0x0e11e8,5, 0x0e1204,5, 0x0e121c,1, 0x0e1300,16, 0x0e1400,3, 0x0e1410,4, 0x0e1428,3, 0x0e1448,2, 0x0e1458,2, 0x0e1464,32, 0x0e14f0,1, 0x0e14fc,35, 0x0e159c,15, 0x0e15e0,1, 0x0e15e8,5, 0x0e1604,5, 0x0e161c,1, 0x0e1700,16, 0x0e1800,3, 0x0e1810,4, 0x0e1828,3, 0x0e1848,2, 0x0e1858,2, 0x0e1864,32, 0x0e18f0,1, 0x0e18fc,35, 0x0e199c,15, 0x0e19e0,1, 0x0e19e8,5, 0x0e1a04,5, 0x0e1a1c,1, 0x0e1b00,16, 0x0e1c00,3, 0x0e1c10,4, 0x0e1c28,3, 0x0e1c48,2, 0x0e1c58,2, 0x0e1c64,32, 0x0e1cf0,1, 0x0e1cfc,35, 0x0e1d9c,15, 0x0e1de0,1, 0x0e1de8,5, 0x0e1e04,5, 0x0e1e1c,1, 0x0e1f00,16, 0x0e20c0,9, 0x0e20ec,5, 0x0e2108,3, 0x0e2200,5, 0x0e2218,36, 0x0e2300,6, 0x0e2330,4, 0x0e2500,3, 0x0e2510,12, 0x0e26e0,6, 0x0e2700,6, 0x0e2720,6, 0x0e2740,3, 0x0e2780,6, 0x0e27a0,6, 0x0e27c0,3, 0x0e2800,67, 0x0e2a00,6, 0x0e2a20,6, 0x0e2a40,3, 0x0e2a50,3, 0x0e2a60,1, 0x0e2a80,17, 0x0e3020,10, 0x0e3070,2, 0x0e3080,2, 0x0e308c,1, 0x0e3440,21, 0x0e34e4,13, 0x0e3520,6, 0x0e3540,6, 0x0e3560,6, 0x0e3580,6, 0x0e35a0,6, 0x0e35c0,6, 0x0e35e0,6, 0x0e3600,16, 0x0e3804,3, 0x0e3900,33, 0x0e3a00,6, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3c00,1, 0x0e3c28,1, 0x0e3c50,1, 0x0e3c78,1, 0x0e3ca0,2, 0x0e3dac,1, 0x0e3dd8,4, 0x0e3e00,6, 0x0e3e20,6, 0x0e3e40,3, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,18, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e5000,8, 0x0e6000,9, 0x0e6040,16, 0x0e8000,9, 0x0e8080,6, 0x0e80a0,3, 0x0f0000,3, 0x0f0014,11, 0x0f004c,3, 0x0f0060,8, 0x0f00f0,3, 0x0f0100,1, 0x0f010c,2, 0x0f0118,1, 0x0f0130,4, 0x0f01a8,1, 0x0f01c0,2, 0x0f01d0,10, 0x0f0200,63, 0x0f0404,9, 0x0f0440,8, 0x0f0480,5, 0x0f04b8,21, 0x0f0520,1, 0x0f0528,1, 0x0f0540,2, 0x0f0580,4, 0x0f05a0,1, 0x0f05c0,8, 0x0f0800,17, 0x0f0850,9, 0x0f0880,9, 0x0f0920,4, 0x0f093c,5, 0x0f095c,5, 0x0f097c,5, 0x0f099c,1, 0x0f0a90,3, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,16, 0x0f1080,10, 0x0f10c0,1, 0x0f10e0,2, 0x0f10ec,1, 0x0f10f4,3, 0x0f1400,6, 0x0f1420,6, 0x0f1440,6, 0x0f1460,6, 0x0f1480,6, 0x0f14a0,6, 0x0f14c0,6, 0x0f14e0,6, 0x0f1500,6, 0x0f1520,6, 0x0f1540,6, 0x0f1560,6, 0x0f1580,6, 0x0f15a0,3, 0x0f1800,3, 0x0f1840,4, 0x0f1854,3, 0x0f1864,3, 0x0f1874,3, 0x0f2000,2, 0x0f200c,3, 0x0f2020,10, 0x0f2060,6, 0x0f2080,2, 0x0f208c,3, 0x0f20a0,10, 0x0f20e0,6, 0x0f2100,2, 0x0f210c,3, 0x0f2120,10, 0x0f2160,6, 0x0f2180,2, 0x0f218c,3, 0x0f21a0,10, 0x0f21e0,6, 0x0f2200,2, 0x0f220c,3, 0x0f2220,10, 0x0f2260,6, 0x0f2280,2, 0x0f228c,3, 0x0f22a0,10, 0x0f22e0,6, 0x0f2300,2, 0x0f230c,3, 0x0f2320,10, 0x0f2360,6, 0x0f2380,2, 0x0f238c,3, 0x0f23a0,10, 0x0f23e0,6, 0x0f2400,2, 0x0f240c,3, 0x0f2420,10, 0x0f2460,6, 0x0f2480,2, 0x0f248c,3, 0x0f24a0,10, 0x0f24e0,6, 0x0f2500,2, 0x0f250c,3, 0x0f2520,10, 0x0f2560,6, 0x0f2580,2, 0x0f258c,3, 0x0f25a0,10, 0x0f25e0,6, 0x0f2600,2, 0x0f260c,3, 0x0f2620,10, 0x0f2660,6, 0x0f2680,2, 0x0f268c,3, 0x0f26a0,10, 0x0f26e0,6, 0x0f2700,2, 0x0f270c,3, 0x0f2720,10, 0x0f2760,6, 0x0f2780,2, 0x0f278c,3, 0x0f27a0,10, 0x0f27e0,6, 0x0f2800,2, 0x0f280c,3, 0x0f2820,10, 0x0f2860,6, 0x0f2880,2, 0x0f288c,3, 0x0f28a0,10, 0x0f28e0,6, 0x0f2900,2, 0x0f290c,3, 0x0f2920,10, 0x0f2960,6, 0x0f2980,2, 0x0f298c,3, 0x0f29a0,10, 0x0f29e0,6, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x100000,1, 0x100008,1, 0x100010,2, 0x100020,1, 0x100028,1, 0x100030,2, 0x100040,1, 0x100048,1, 0x100050,2, 0x100060,1, 0x100068,1, 0x100070,2, 0x100080,21, 0x1000d8,2, 0x100100,21, 0x100158,2, 0x100180,21, 0x1001d8,2, 0x100200,21, 0x100258,2, 0x100284,1, 0x1003b0,5, 0x100400,13, 0x100440,13, 0x100480,13, 0x1004c0,13, 0x100500,68, 0x100618,1, 0x100804,1, 0x10080c,4, 0x100820,9, 0x1008a0,24, 0x100920,24, 0x100a00,48, 0x100adc,68, 0x100d00,1, 0x100d08,2, 0x100d80,4, 0x100e00,4, 0x100e20,1, 0x100e28,7, 0x100e48,7, 0x100e68,7, 0x100e88,6, 0x100ebc,9, 0x100f00,6, 0x100f1c,10, 0x100f70,8, 0x100f94,4, 0x101404,1, 0x10141c,26, 0x101504,1, 0x10151c,30, 0x101600,1, 0x101628,6, 0x101648,6, 0x101680,16, 0x1016e0,16, 0x101780,2, 0x101790,16, 0x101a00,14, 0x101a3c,4, 0x101a50,2, 0x101a60,2, 0x101a70,2, 0x101a80,2, 0x101a90,1, 0x101a9c,11, 0x101b0c,5, 0x101c00,34, 0x101d00,3, 0x102000,1, 0x102028,1, 0x102050,1, 0x102078,1, 0x1020a0,5, 0x1021ac,1, 0x1021d8,4, 0x102200,6, 0x102220,6, 0x102240,3, 0x102560,1, 0x102584,10, 0x1025b0,1, 0x1025fc,1, 0x102604,1, 0x1026ec,69, 0x103000,32, 0x103084,5, 0x1030f8,3, 0x103108,3, 0x103118,7, 0x103144,1, 0x103160,10, 0x103200,32, 0x103284,5, 0x1032f8,3, 0x103308,3, 0x103318,7, 0x103344,1, 0x103360,10, 0x103400,32, 0x103484,5, 0x1034f8,3, 0x103508,3, 0x103518,7, 0x103544,1, 0x103560,10, 0x103600,32, 0x103684,5, 0x1036f8,3, 0x103708,3, 0x103718,7, 0x103744,1, 0x103760,10, 0x103800,1, 0x10380c,1, 0x10397c,97, 0x104000,3, 0x104020,3, 0x104040,3, 0x104060,3, 0x104084,1, 0x104090,4, 0x1040a4,1, 0x1040b0,4, 0x1040c4,1, 0x1040d0,4, 0x1040e4,1, 0x1040f0,21, 0x104148,18, 0x1041f0,4, 0x104204,3, 0x104308,9, 0x104330,2, 0x104340,16, 0x1043b4,4, 0x1043c8,4, 0x1043dc,4, 0x1043f0,4, 0x104404,1, 0x104470,36, 0x104504,1, 0x104570,36, 0x104604,1, 0x104670,36, 0x104704,1, 0x104770,50, 0x104840,2, 0x10484c,1, 0x104900,1, 0x104908,1, 0x104984,1, 0x1049a0,24, 0x104a04,7, 0x104a24,7, 0x104a44,7, 0x104a64,7, 0x104a84,7, 0x104aa4,7, 0x104ac4,7, 0x104ae4,16, 0x104b40,16, 0x104c00,6, 0x104c20,6, 0x104c40,6, 0x104c60,6, 0x104c80,6, 0x104ca0,6, 0x104cc0,6, 0x104ce0,6, 0x104d00,3, 0x104d20,6, 0x104d40,6, 0x105000,448, 0x105704,3, 0x105734,1, 0x106000,62, 0x106100,35, 0x1061c0,6, 0x1061e0,6, 0x106200,6, 0x106220,6, 0x106240,6, 0x106260,6, 0x106280,6, 0x1062a0,6, 0x1062c0,6, 0x1062e0,6, 0x106300,6, 0x106320,6, 0x106340,6, 0x106360,6, 0x106380,6, 0x1063a0,6, 0x107010,1, 0x110000,7, 0x110020,7, 0x110040,5, 0x110060,6, 0x110080,5, 0x110098,1, 0x1100a0,4, 0x1100b8,8, 0x1100e0,6, 0x110200,7, 0x110220,7, 0x110240,5, 0x110260,6, 0x110280,5, 0x110298,1, 0x1102a0,4, 0x1102b8,8, 0x1102e0,6, 0x110400,7, 0x110420,7, 0x110440,5, 0x110460,6, 0x110480,5, 0x110498,1, 0x1104a0,4, 0x1104b8,8, 0x1104e0,6, 0x110600,7, 0x110620,7, 0x110640,5, 0x110660,6, 0x110680,5, 0x110698,1, 0x1106a0,4, 0x1106b8,8, 0x1106e0,6, 0x110800,21, 0x110880,15, 0x1108c0,3, 0x1108d0,2, 0x110900,1, 0x111000,1, 0x111028,1, 0x111050,1, 0x111078,1, 0x1110a0,5, 0x1111ac,1, 0x1111d8,4, 0x111200,6, 0x111220,6, 0x111240,3, 0x111400,6, 0x111420,3, 0x111480,9, 0x1114c0,25, 0x111540,25, 0x1115c0,25, 0x111640,20, 0x118000,29, 0x118078,4, 0x118090,2, 0x1180a0,7, 0x1180c0,11, 0x118100,14, 0x118140,14, 0x118180,61, 0x118278,4, 0x118290,2, 0x1182a0,7, 0x1182c0,11, 0x118300,14, 0x118340,14, 0x118380,61, 0x118478,4, 0x118490,2, 0x1184a0,7, 0x1184c0,11, 0x118500,14, 0x118540,14, 0x118580,61, 0x118678,4, 0x118690,2, 0x1186a0,7, 0x1186c0,11, 0x118700,14, 0x118740,14, 0x118780,69, 0x118c00,6, 0x118c40,14, 0x118c80,9, 0x118d00,9, 0x118d2c,1, 0x118d40,3, 0x118d60,1, 0x118d80,3, 0x118e00,2, 0x118e0c,1, 0x118e14,5, 0x118e2c,1, 0x118e34,5, 0x118e4c,1, 0x118e54,5, 0x118e6c,1, 0x118e74,5, 0x118e8c,1, 0x118e94,5, 0x118eac,1, 0x118eb4,3, 0x119000,29, 0x119078,4, 0x119090,2, 0x1190a0,7, 0x1190c0,11, 0x119100,14, 0x119140,14, 0x119180,61, 0x119278,4, 0x119290,2, 0x1192a0,7, 0x1192c0,11, 0x119300,14, 0x119340,14, 0x119380,61, 0x119478,4, 0x119490,2, 0x1194a0,7, 0x1194c0,11, 0x119500,14, 0x119540,14, 0x119580,61, 0x119678,4, 0x119690,2, 0x1196a0,7, 0x1196c0,11, 0x119700,14, 0x119740,14, 0x119780,69, 0x119c00,6, 0x119c40,14, 0x119c80,9, 0x119d00,9, 0x119d2c,1, 0x119d40,3, 0x119d60,1, 0x119d80,3, 0x119e00,2, 0x119e0c,1, 0x119e14,5, 0x119e2c,1, 0x119e34,5, 0x119e4c,1, 0x119e54,5, 0x119e6c,1, 0x119e74,5, 0x119e8c,1, 0x119e94,5, 0x119eac,1, 0x119eb4,3, 0x11c000,19, 0x11c050,10, 0x11c080,19, 0x11c0d0,10, 0x11c100,19, 0x11c150,10, 0x11c180,19, 0x11c1d0,10, 0x11c200,19, 0x11c250,10, 0x11c280,19, 0x11c2d0,10, 0x11c300,19, 0x11c350,10, 0x11c380,19, 0x11c3d0,10, 0x11c400,19, 0x11c460,6, 0x11c484,1, 0x11c494,8, 0x11c4b8,9, 0x11c4e0,4, 0x11c500,3, 0x11d000,7, 0x11d020,15, 0x11d060,15, 0x11d0a0,15, 0x11d0e0,15, 0x11d120,15, 0x11d160,15, 0x11d1a0,15, 0x11d1e0,8, 0x11d400,9, 0x11d428,3, 0x11d440,5, 0x11d480,9, 0x11d4a8,3, 0x11d4c0,5, 0x11d500,9, 0x11d528,3, 0x11d540,5, 0x11d580,9, 0x11d5a8,3, 0x11d5c0,5, 0x11d600,6, 0x11d620,6, 0x11d640,6, 0x11d660,6, 0x11d680,6, 0x11d6a0,6, 0x11d6c0,6, 0x11d6e0,6, 0x11d708,2, 0x11d718,4, 0x11d734,1, 0x11d73c,4, 0x11d750,4, 0x11d764,1, 0x11d76c,2, 0x11d800,8, 0x11d840,8, 0x11d880,8, 0x11d8c0,8, 0x11d900,8, 0x11d940,8, 0x11d988,4, 0x11da00,3, 0x11da18,2, 0x11da24,16, 0x11da80,3, 0x11da98,2, 0x11daa4,16, 0x11db00,3, 0x11db18,2, 0x11db24,16, 0x11db80,3, 0x11db98,2, 0x11dba4,16, 0x11dc00,8, 0x11dc40,1, 0x11e000,72, 0x11e200,72, 0x11e400,72, 0x11e600,72, 0x11e800,6, 0x11e820,6, 0x11e840,6, 0x11e860,6, 0x11e880,6, 0x11e8a0,6, 0x11e8c0,6, 0x11e8e0,6, 0x11e900,6, 0x11e920,6, 0x11e940,6, 0x11e9fc,7, 0x11ea20,6, 0x11ea40,6, 0x11ea60,6, 0x11ea80,6, 0x11eaa0,6, 0x11eac0,6, 0x11eae0,6, 0x11eb00,6, 0x11eb20,6, 0x11eb40,6, 0x11ebfc,7, 0x11ec20,6, 0x11ec40,6, 0x11ec60,6, 0x11ec80,6, 0x11eca0,6, 0x11ecc0,6, 0x11ece0,6, 0x11ed00,6, 0x11ed20,6, 0x11ed40,6, 0x11edfc,7, 0x11ee20,6, 0x11ee40,6, 0x11ee60,6, 0x11ee80,6, 0x11eea0,6, 0x11eec0,6, 0x11eee0,6, 0x11ef00,6, 0x11ef20,6, 0x11ef40,6, 0x11effc,15, 0x11f040,2, 0x11f080,14, 0x11f0c0,2, 0x11f100,14, 0x11f140,2, 0x11f180,14, 0x11f1c0,2, 0x11f400,17, 0x11f448,5, 0x11f460,3, 0x11f470,3, 0x11f480,16, 0x11f500,17, 0x11f548,5, 0x11f560,3, 0x11f570,3, 0x11f580,16, 0x11f600,17, 0x11f648,5, 0x11f660,3, 0x11f670,3, 0x11f680,16, 0x11f700,17, 0x11f748,5, 0x11f760,3, 0x11f770,3, 0x11f780,16, 0x11f800,8, 0x11f824,15, 0x11f864,15, 0x11f8a4,15, 0x11f8e4,30, 0x11f980,10, 0x11f9ac,1, 0x11f9b4,5, 0x11f9cc,1, 0x11f9d4,5, 0x11f9ec,1, 0x11f9f4,13, 0x11fa80,4, 0x11fa94,2, 0x11faa0,5, 0x11fac0,5, 0x11fae0,4, 0x11fc04,8, 0x11fc40,13, 0x11fd00,6, 0x11fd20,3, 0x11fd30,3, 0x11fd44,1, 0x11fd4c,1, 0x11fd54,1, 0x11fd5c,8, 0x11fd80,11, 0x11fdc0,3, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX5.csv0000644000175000017500000015217514522641732022253 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16418, 0x010100,10, 0x010140,17, 0x011000,35, 0x011100,40, 0x011200,2, 0x011400,3, 0x011414,2, 0x011420,1, 0x011444,5, 0x011480,2, 0x011490,3, 0x011590,1, 0x011600,2, 0x011800,24, 0x012000,4, 0x012014,1, 0x012020,4, 0x012034,1, 0x012040,4, 0x012054,1, 0x012060,4, 0x012074,1, 0x012080,4, 0x012094,1, 0x0120a0,4, 0x0120b4,1, 0x0120c0,4, 0x0120d4,1, 0x0120e0,4, 0x0120f4,1, 0x012100,4, 0x012114,1, 0x012120,4, 0x012134,1, 0x012140,4, 0x012154,1, 0x012160,4, 0x012174,1, 0x012180,4, 0x012194,1, 0x0121a0,4, 0x0121b4,1, 0x0121c0,4, 0x0121d4,1, 0x0121e0,4, 0x0121f4,1, 0x012200,4, 0x012214,1, 0x012220,4, 0x012234,1, 0x012240,54, 0x012400,4, 0x012414,1, 0x012420,4, 0x012434,1, 0x012440,4, 0x012454,1, 0x012460,4, 0x012474,1, 0x012480,4, 0x012494,1, 0x0124a0,4, 0x0124b4,1, 0x0124c0,4, 0x0124d4,1, 0x0124e0,4, 0x0124f4,1, 0x012500,4, 0x012514,1, 0x012520,4, 0x012534,1, 0x012540,4, 0x012554,1, 0x012560,4, 0x012574,1, 0x012580,4, 0x012594,1, 0x0125a0,4, 0x0125b4,1, 0x0125c0,4, 0x0125d4,1, 0x0125e0,4, 0x0125f4,1, 0x012600,4, 0x012614,1, 0x012620,4, 0x012634,1, 0x012640,54, 0x012800,4, 0x012814,1, 0x012820,4, 0x012834,1, 0x012840,4, 0x012854,1, 0x012860,4, 0x012874,1, 0x012880,4, 0x012894,1, 0x0128a0,4, 0x0128b4,1, 0x0128c0,4, 0x0128d4,1, 0x0128e0,4, 0x0128f4,1, 0x012900,4, 0x012914,1, 0x012920,4, 0x012934,1, 0x012940,4, 0x012954,1, 0x012960,4, 0x012974,1, 0x012980,4, 0x012994,1, 0x0129a0,4, 0x0129b4,1, 0x0129c0,4, 0x0129d4,1, 0x0129e0,4, 0x0129f4,1, 0x012a00,4, 0x012a14,1, 0x012a20,4, 0x012a34,1, 0x012a40,54, 0x012c00,4, 0x012c14,1, 0x012c20,4, 0x012c34,1, 0x012c40,4, 0x012c54,1, 0x012c60,4, 0x012c74,1, 0x012c80,4, 0x012c94,1, 0x012ca0,4, 0x012cb4,1, 0x012cc0,4, 0x012cd4,1, 0x012ce0,4, 0x012cf4,1, 0x012d00,4, 0x012d14,1, 0x012d20,4, 0x012d34,1, 0x012d40,4, 0x012d54,1, 0x012d60,4, 0x012d74,1, 0x012d80,4, 0x012d94,1, 0x012da0,4, 0x012db4,1, 0x012dc0,4, 0x012dd4,1, 0x012de0,4, 0x012df4,1, 0x012e00,4, 0x012e14,1, 0x012e20,4, 0x012e34,1, 0x012e40,54, 0x013000,144, 0x013400,144, 0x013800,1, 0x013810,1, 0x013820,1, 0x013830,1, 0x013840,1, 0x013850,1, 0x013860,1, 0x013870,1, 0x013880,1, 0x013890,1, 0x0138a0,1, 0x0138b0,1, 0x0138c0,1, 0x0138d0,1, 0x0138e0,1, 0x0138f0,1, 0x013900,1, 0x013910,1, 0x013a00,4, 0x013a14,1, 0x013a20,4, 0x013a34,1, 0x013a40,7, 0x013a80,4, 0x013a94,1, 0x013aa0,4, 0x013ab4,1, 0x013ac0,7, 0x013b00,4, 0x013b14,1, 0x013b20,4, 0x013b34,1, 0x013b40,7, 0x013b80,4, 0x013b94,1, 0x013ba0,4, 0x013bb4,1, 0x013bc0,7, 0x013c00,11, 0x013c30,11, 0x013c60,31, 0x013ce0,3, 0x013cf0,1, 0x013d04,1, 0x013d14,5, 0x014000,65, 0x014108,4, 0x014124,4, 0x014140,6, 0x014160,1, 0x014170,1, 0x014180,5, 0x014198,5, 0x015000,33, 0x015090,1, 0x0150a0,1, 0x0150b4,4, 0x0150d0,3, 0x0150e0,5, 0x015100,1, 0x015110,15, 0x015400,7, 0x015420,7, 0x015440,7, 0x015460,7, 0x015480,7, 0x0154a0,7, 0x0154c0,7, 0x0154e0,7, 0x015500,7, 0x015520,7, 0x015540,7, 0x015560,7, 0x015580,7, 0x0155a0,7, 0x0155c0,7, 0x0155e0,7, 0x015600,7, 0x015620,7, 0x015640,7, 0x015660,7, 0x015680,7, 0x0156a0,7, 0x0156c0,7, 0x0156e0,7, 0x015700,7, 0x015720,7, 0x015740,7, 0x015760,7, 0x015780,7, 0x0157a0,7, 0x0157c0,7, 0x0157e0,7, 0x016000,1, 0x016008,4, 0x016024,4, 0x016044,1, 0x016054,7, 0x016080,2, 0x016090,1, 0x0160a0,1, 0x0160b0,2, 0x016100,1, 0x016108,4, 0x016124,4, 0x016144,1, 0x016154,5, 0x016180,2, 0x016190,1, 0x0161a0,1, 0x0161b0,2, 0x016200,29, 0x017000,72, 0x017180,1, 0x017190,1, 0x0171a0,1, 0x0171b0,1, 0x0171c0,1, 0x0171d0,1, 0x0171e0,1, 0x0171f0,1, 0x017200,23, 0x018000,1, 0x018008,4, 0x018024,4, 0x018044,1, 0x018054,9, 0x018090,2, 0x0180a0,1, 0x0180b0,1, 0x0180c0,2, 0x018100,33, 0x018188,13, 0x0181c0,4, 0x0181e0,5, 0x019000,3, 0x019010,3, 0x019020,3, 0x019030,3, 0x019040,3, 0x019050,3, 0x019060,3, 0x019070,3, 0x019080,3, 0x019090,3, 0x0190a0,3, 0x0190b0,3, 0x0190c0,3, 0x0190d0,3, 0x0190e0,3, 0x0190f0,3, 0x019100,3, 0x019110,3, 0x019120,3, 0x019130,3, 0x019140,3, 0x019150,3, 0x019160,3, 0x019170,3, 0x019180,3, 0x019190,3, 0x0191a0,3, 0x0191b0,3, 0x0191c0,3, 0x0191d0,3, 0x0191e0,3, 0x0191f0,3, 0x019200,129, 0x019408,4, 0x019424,4, 0x019440,6, 0x019460,1, 0x019470,14, 0x01a004,2, 0x01a034,19, 0x01a084,1, 0x01a08c,4, 0x01a0c0,1, 0x01a0d0,8, 0x01a100,32, 0x01a184,2, 0x01a198,2, 0x01a1a4,2, 0x01a1b8,2, 0x01a1c8,3, 0x01a1e8,5, 0x01a200,4, 0x01a404,1, 0x01a40c,4, 0x01a444,1, 0x01a450,4, 0x01a464,1, 0x01a474,3, 0x01a484,1, 0x01a48c,1, 0x01a494,9, 0x01a500,8, 0x01a608,3, 0x01a618,4, 0x01a63c,2, 0x01a650,4, 0x01a680,4, 0x01a6a0,20, 0x01a704,2, 0x01a730,20, 0x01a784,2, 0x01a790,2, 0x01a7a0,6, 0x01a7c0,2, 0x01a800,3, 0x01a810,3, 0x01a820,3, 0x01a830,3, 0x01a840,3, 0x01a850,3, 0x01a860,3, 0x01a870,3, 0x01a880,9, 0x01a900,3, 0x01a910,3, 0x01a920,3, 0x01a930,3, 0x01a940,3, 0x01a950,3, 0x01a960,3, 0x01a970,3, 0x01a980,2, 0x01aa04,1, 0x01aa3c,19, 0x01ac00,1, 0x01ac28,1, 0x01ac50,1, 0x01ac78,1, 0x01aca0,12, 0x01ada8,2, 0x01add8,4, 0x01ae00,19, 0x01ae50,6, 0x01b000,13, 0x01b040,6, 0x01b060,1, 0x01b080,3, 0x01b090,6, 0x01b100,9, 0x01b128,1, 0x01b130,1, 0x01b140,2, 0x01b150,3, 0x01b160,4, 0x01b400,14, 0x01b440,14, 0x01b480,14, 0x01b4c0,14, 0x01b500,14, 0x01b540,14, 0x01b580,14, 0x01b5c0,14, 0x01b600,14, 0x01b640,14, 0x01b680,14, 0x01b6c0,14, 0x01b800,2, 0x020004,1, 0x02000c,4, 0x020080,3, 0x020094,3, 0x020800,224, 0x020c00,16, 0x021004,1, 0x02100c,4, 0x021400,5, 0x021418,5, 0x021480,1, 0x021704,2, 0x02173c,17, 0x0217fc,2, 0x021844,1, 0x021884,5, 0x0218c0,16, 0x022280,14, 0x022408,6, 0x022424,1, 0x022444,1, 0x022454,5, 0x022504,1, 0x02250c,4, 0x022624,1, 0x02262c,3, 0x02263c,1, 0x022804,1, 0x02280c,4, 0x022904,4, 0x022924,4, 0x022a04,5, 0x022a80,36, 0x024000,32, 0x024084,7, 0x0240c0,16, 0x024108,3, 0x024120,11, 0x024200,5, 0x024220,1, 0x024230,8, 0x024258,1, 0x024260,1, 0x024270,9, 0x0242a0,1, 0x0242b0,4, 0x0242c8,2, 0x024300,7, 0x024320,4, 0x024398,9, 0x0243c0,16, 0x024424,4, 0x024464,20, 0x0244b8,2, 0x0244c4,1, 0x0244cc,3, 0x0244e0,2, 0x0244f0,3, 0x024500,3, 0x024510,3, 0x024520,3, 0x024530,3, 0x024540,3, 0x024550,3, 0x024560,3, 0x024600,3, 0x024884,11, 0x0248b4,3, 0x0248c4,1, 0x0248cc,1, 0x0248d4,1, 0x0248dc,1, 0x0248f0,2, 0x024908,6, 0x024928,6, 0x024968,6, 0x024984,3, 0x024994,1, 0x02499c,6, 0x0249b8,16, 0x024a08,6, 0x024a28,6, 0x024a68,6, 0x024a84,1, 0x024a8c,1, 0x024a94,1, 0x024a9c,3, 0x024ab4,3, 0x024ac8,2, 0x024b00,8, 0x024b60,4, 0x024b78,2, 0x024b84,1, 0x024b8c,1, 0x024c00,2, 0x024c24,3, 0x024c34,3, 0x025004,5, 0x0257f0,42, 0x0258d8,2, 0x025904,1, 0x02590c,1, 0x026000,131, 0x026400,2, 0x0267fc,9, 0x026824,6, 0x026840,2, 0x026864,1, 0x02686c,1, 0x026874,3, 0x026884,1, 0x0268a4,7, 0x0268c4,2, 0x0268d4,3, 0x0268e4,1, 0x0268f0,4, 0x026904,1, 0x02690c,4, 0x026940,1, 0x026980,33, 0x026a0c,7, 0x026a30,1, 0x026a44,4, 0x026a60,1, 0x026a70,1, 0x026b00,10, 0x026b44,2, 0x026b68,6, 0x026b84,2, 0x026ba8,14, 0x026c00,10, 0x026c60,8, 0x026c84,1, 0x026c8c,4, 0x026cc4,1, 0x026ccc,4, 0x026d04,1, 0x026d58,42, 0x026e04,1, 0x026e0c,3, 0x028000,1, 0x02aa04,1, 0x02aa0c,4, 0x02ab00,40, 0x02aba4,1, 0x02abac,1, 0x02abb4,1, 0x02abbc,1, 0x02abc4,1, 0x02abcc,1, 0x02abe0,3, 0x02abf8,4, 0x02ac10,3, 0x02ac44,3, 0x02ad00,1, 0x02ad08,1, 0x02ad10,1, 0x02ad18,1, 0x02ad20,1, 0x02ad28,1, 0x02ad30,1, 0x02ad38,1, 0x02ad40,1, 0x02ad48,1, 0x02ad50,1, 0x02ad58,1, 0x02ad60,1, 0x02ad68,1, 0x02ad70,1, 0x02ad78,1, 0x02ad80,1, 0x02ad88,1, 0x02ad90,1, 0x02ad98,1, 0x02ada0,1, 0x02ada8,1, 0x02adb0,1, 0x02adb8,1, 0x02adc0,1, 0x02adc8,1, 0x02add0,1, 0x02add8,1, 0x02ade0,1, 0x02ade8,1, 0x02adf0,1, 0x02adf8,1, 0x02ae00,6, 0x02ae40,6, 0x02ae80,8, 0x02c000,6, 0x02c024,2, 0x02c030,4, 0x02c100,6, 0x02c204,1, 0x02c214,3, 0x02c224,1, 0x02c22c,4, 0x02c244,3, 0x02c254,1, 0x02c264,5, 0x02c280,4, 0x02c400,1, 0x02c428,1, 0x02c450,1, 0x02c478,1, 0x02c4a0,16, 0x02c5a8,2, 0x02c5d8,4, 0x02c600,19, 0x02c650,6, 0x02c800,235, 0x02cbb0,6, 0x02cc40,8, 0x02ccf8,11, 0x02cd40,18, 0x030004,2, 0x030034,19, 0x030084,2, 0x0300bc,17, 0x030104,2, 0x030138,27, 0x030310,3, 0x030340,2, 0x03034c,2, 0x030358,3, 0x030384,1, 0x0303c0,16, 0x030404,1, 0x03040c,4, 0x030444,1, 0x03044c,4, 0x030484,1, 0x03048c,4, 0x0304c0,4, 0x030500,1, 0x030508,4, 0x030520,3, 0x030540,1, 0x030548,4, 0x030560,3, 0x030580,3, 0x031480,19, 0x031500,12, 0x031600,16, 0x031704,5, 0x031800,24, 0x031c00,6, 0x031c1c,1, 0x031c40,10, 0x031c80,6, 0x031c9c,1, 0x031cc0,10, 0x031d00,6, 0x031d1c,1, 0x031d40,10, 0x031d80,6, 0x031d9c,1, 0x031dc0,10, 0x031e00,6, 0x031e1c,1, 0x031e40,10, 0x031e80,6, 0x031e9c,1, 0x031ec0,10, 0x031f00,6, 0x031f1c,1, 0x031f40,10, 0x031f80,6, 0x031f9c,1, 0x031fc0,10, 0x032000,11, 0x032100,11, 0x032200,18, 0x032280,6, 0x032304,1, 0x03230c,3, 0x03231c,1, 0x032400,6, 0x032420,1, 0x032444,2, 0x032454,3, 0x032464,2, 0x032474,11, 0x032610,1, 0x032618,1, 0x032640,6, 0x034000,24, 0x034080,10, 0x0340ac,2, 0x0340f0,18, 0x034200,35, 0x034400,24, 0x034480,10, 0x0344ac,2, 0x0344f0,18, 0x034600,35, 0x034c00,7, 0x034c20,4, 0x034c40,9, 0x034c80,9, 0x034cc0,3, 0x034cd0,3, 0x034e04,3, 0x034e44,5, 0x034e80,6, 0x034ea0,4, 0x035000,2, 0x035010,3, 0x035044,3, 0x035100,66, 0x035210,3, 0x035244,3, 0x035300,64, 0x035404,1, 0x03540c,8, 0x035600,2, 0x035610,3, 0x035644,3, 0x035700,64, 0x035804,5, 0x035900,2, 0x037000,1, 0x037080,9, 0x0370ac,4, 0x037100,1, 0x037108,2, 0x037400,1, 0x037480,9, 0x0374ac,4, 0x037500,1, 0x037508,2, 0x037800,4, 0x037824,1, 0x038000,6, 0x038020,5, 0x038104,4, 0x038120,3, 0x038130,1, 0x038180,14, 0x0381c0,4, 0x038400,3, 0x038428,3, 0x038450,3, 0x038478,3, 0x0384a0,37, 0x0385a8,2, 0x0385d8,4, 0x038600,51, 0x0386d0,6, 0x038800,31, 0x03893c,26, 0x0389c0,19, 0x038a24,4, 0x038a84,14, 0x038c00,75, 0x038d30,6, 0x038e00,12, 0x039040,9, 0x039070,1, 0x039100,1, 0x039110,5, 0x039130,5, 0x039150,1, 0x039224,6, 0x039240,16, 0x039284,1, 0x0392c0,22, 0x039320,6, 0x039344,1, 0x03934c,4, 0x039384,1, 0x03938c,4, 0x0393c4,1, 0x0393cc,4, 0x039400,8, 0x039600,7, 0x039620,1, 0x039640,13, 0x039704,1, 0x03970c,13, 0x03a000,35, 0x03a090,3, 0x03a100,35, 0x03a190,3, 0x03a200,35, 0x03a290,3, 0x03a300,35, 0x03a390,3, 0x03a400,35, 0x03a490,3, 0x03a500,1, 0x03a800,4, 0x03a884,1, 0x03a8c0,16, 0x03a980,1, 0x03a9e4,2, 0x03a9f0,4, 0x03aa04,2, 0x03aa10,4, 0x03aa24,2, 0x03aa30,4, 0x03aa44,2, 0x03aa50,4, 0x03aa64,2, 0x03aa70,5, 0x03aa88,1, 0x03ac00,2, 0x03ac0c,3, 0x03ac24,2, 0x03ac44,3, 0x03ad00,11, 0x03ad40,11, 0x03ad84,1, 0x03adc0,26, 0x03ae30,2, 0x03ae44,3, 0x03ae54,1, 0x03ae5c,2, 0x03ae80,2, 0x03ae94,2, 0x03aea4,1, 0x03aeac,3, 0x03aec0,3, 0x03aee0,17, 0x03af40,30, 0x03afc0,14, 0x03b000,2, 0x03b00c,3, 0x03b01c,3, 0x03b02c,3, 0x03b03c,3, 0x03b04c,3, 0x03b05c,3, 0x03b06c,3, 0x03b07c,3, 0x03b08c,3, 0x03b09c,3, 0x03b104,1, 0x03b140,38, 0x03b204,1, 0x03b214,5, 0x03b234,1, 0x03b23c,3, 0x03b2c0,4, 0x03b400,35, 0x03b490,6, 0x03b500,13, 0x03c000,3, 0x03c010,3, 0x03c020,3, 0x03c040,9, 0x03c068,6, 0x03c090,2, 0x03c0a0,3, 0x03c0c0,12, 0x03c0f4,1, 0x03c100,2, 0x03c110,3, 0x03c120,1, 0x03c130,11, 0x03c160,2, 0x03c180,4, 0x03c194,3, 0x03c1a4,2, 0x03c1b0,4, 0x03c2e0,5, 0x03c2f8,2, 0x03c30c,13, 0x03c34c,77, 0x03c48c,18, 0x03c500,32, 0x03c800,16, 0x03c84c,18, 0x03c8e0,2, 0x03c8ec,3, 0x03c900,1, 0x03c910,5, 0x03c930,5, 0x03c950,5, 0x03c970,5, 0x03c9a4,3, 0x03ca78,34, 0x03cb3c,18, 0x03cb94,3, 0x03cba4,3, 0x03cbf0,1, 0x03cbf8,10, 0x03cc30,1, 0x03cc44,4, 0x03cc60,1, 0x03cc80,1, 0x03cc90,1, 0x03d004,6, 0x03e004,1, 0x03e00c,4, 0x03e404,1, 0x03e40c,4, 0x03e604,1, 0x03e60c,4, 0x03e800,2, 0x03f034,19, 0x03f084,2, 0x03f0c0,16, 0x03f200,1, 0x03f210,1, 0x03f280,9, 0x03f2c0,30, 0x03f340,14, 0x03f380,14, 0x040000,6, 0x040020,1, 0x040040,13, 0x040104,1, 0x040130,20, 0x040204,1, 0x04020c,1, 0x040214,1, 0x040224,1, 0x04022c,1, 0x040234,1, 0x040244,1, 0x04024c,3, 0x040304,1, 0x040340,16, 0x040390,1, 0x0403a0,1, 0x0403b0,1, 0x0403c0,1, 0x0403d0,6, 0x040400,8, 0x040440,24, 0x040500,5, 0x040600,5, 0x040800,4, 0x040818,6, 0x040928,9, 0x040954,4, 0x040970,1, 0x040980,3, 0x040990,12, 0x0409c4,13, 0x040a04,1, 0x040a0c,4, 0x040a40,1, 0x040a50,5, 0x040a70,1, 0x040a80,1, 0x040a90,4, 0x040c04,1, 0x040c0c,4, 0x040c40,1, 0x040c60,8, 0x040d40,1, 0x040d80,7, 0x040e04,1, 0x040e0c,4, 0x040e40,1, 0x040e60,8, 0x040f40,1, 0x040f80,7, 0x041008,6, 0x041028,10, 0x041080,26, 0x041100,8, 0x041180,13, 0x0411c0,11, 0x041400,6, 0x04141c,1, 0x041440,10, 0x041480,6, 0x04149c,1, 0x0414c0,10, 0x041500,6, 0x04151c,1, 0x041540,10, 0x041580,6, 0x04159c,1, 0x0415c0,10, 0x041600,6, 0x04161c,1, 0x041640,10, 0x041680,6, 0x04169c,1, 0x0416c0,10, 0x041700,6, 0x04171c,1, 0x041740,10, 0x041780,6, 0x04179c,1, 0x0417c0,10, 0x041804,1, 0x04180c,5, 0x042000,3, 0x042024,4, 0x042084,14, 0x042500,51, 0x0425d0,6, 0x042800,1, 0x042828,1, 0x042850,1, 0x042878,1, 0x0428a0,9, 0x0429a8,2, 0x0429d8,4, 0x042a00,19, 0x042a50,6, 0x043000,9, 0x043040,18, 0x043100,5, 0x043118,6, 0x043134,3, 0x050000,1, 0x050008,4, 0x050024,4, 0x050084,8, 0x0500a8,2, 0x0500c4,5, 0x050104,1, 0x050178,34, 0x050204,1, 0x05020c,1, 0x050214,1, 0x050224,1, 0x05022c,1, 0x050234,1, 0x05023c,1, 0x050244,1, 0x05024c,1, 0x050254,1, 0x050264,1, 0x05026c,1, 0x050274,1, 0x050284,1, 0x050290,4, 0x0502a4,1, 0x0502b4,3, 0x0502c4,1, 0x0502cc,1, 0x0502e4,1, 0x0502ec,1, 0x0502f4,1, 0x0502fc,1, 0x050304,1, 0x05030c,1, 0x050314,1, 0x05031c,1, 0x050324,1, 0x05032c,1, 0x050334,1, 0x05033c,1, 0x050344,3, 0x050354,3, 0x050364,6, 0x050380,32, 0x050404,1, 0x050438,18, 0x050500,3, 0x050524,4, 0x050584,2, 0x050598,2, 0x0505a4,1, 0x0505b0,4, 0x0505c4,1, 0x0505cc,1, 0x0505d4,1, 0x0505e0,1, 0x0505f0,17, 0x050700,2, 0x050800,1, 0x050820,9, 0x050850,5, 0x050870,5, 0x0508a0,8, 0x050900,1, 0x050920,9, 0x050950,4, 0x05096c,37, 0x050a04,4, 0x050a40,1, 0x050a50,3, 0x050a60,25, 0x050ad4,1, 0x050ae0,1, 0x050ae8,6, 0x050b04,1, 0x050b0c,1, 0x050b14,1, 0x050b20,2, 0x050b30,5, 0x050b50,4, 0x050b64,1, 0x050b70,11, 0x050ba4,4, 0x050bc0,5, 0x050be0,1, 0x050bf0,1, 0x050c00,1, 0x050c14,4, 0x050c30,1, 0x050c40,1, 0x050c50,1, 0x050c64,1, 0x050c6c,2, 0x050c90,1, 0x050ca0,1, 0x050cb0,1, 0x050cc0,1, 0x050cd0,1, 0x050ce0,1, 0x050cf0,1, 0x050d00,1, 0x050d10,1, 0x050d20,1, 0x050d30,1, 0x050d40,1, 0x050d50,1, 0x050d60,1, 0x050d70,1, 0x050d80,1, 0x050d90,1, 0x050db0,1, 0x050dc0,1, 0x050de0,1, 0x050df0,1, 0x050e00,1, 0x050e10,1, 0x050e20,1, 0x050e30,1, 0x050e40,1, 0x050e50,1, 0x050e60,1, 0x050e70,1, 0x050e80,1, 0x050e90,1, 0x050ea4,5, 0x050ec0,1, 0x050ed0,1, 0x050f00,65, 0x051010,7, 0x051030,2, 0x051040,1, 0x051060,10, 0x051180,4, 0x0511a0,10, 0x051200,7, 0x051220,4, 0x051234,1, 0x05123c,4, 0x051250,2, 0x051260,1, 0x051270,1, 0x051280,2, 0x051300,1, 0x051320,8, 0x051348,3, 0x051400,9, 0x051440,3, 0x051460,1, 0x051480,3, 0x051504,5, 0x051580,32, 0x052000,210, 0x052400,2, 0x053000,50, 0x053400,59, 0x0534f0,6, 0x053604,7, 0x053624,7, 0x053664,7, 0x053704,1, 0x053740,18, 0x0537a0,10, 0x0537e0,29, 0x053860,11, 0x0538a4,7, 0x054000,3, 0x054024,4, 0x054084,3, 0x0540c0,6, 0x0540e0,1, 0x055400,107, 0x0555b0,6, 0x058004,5, 0x058300,9, 0x058400,1, 0x058408,5, 0x058420,6, 0x058444,2, 0x058460,14, 0x0587f0,1, 0x058800,1, 0x058810,1, 0x058820,1, 0x058830,1, 0x058840,1, 0x058850,1, 0x058860,1, 0x058870,1, 0x058880,1, 0x058890,1, 0x058904,3, 0x058978,66, 0x058a84,1, 0x058a8c,1, 0x058a94,1, 0x058aa4,1, 0x058aac,1, 0x058ab4,1, 0x058ac0,2, 0x058acc,2, 0x058c00,3, 0x058c24,4, 0x058d04,1, 0x058d0c,11, 0x058d40,2, 0x058f04,5, 0x058f40,16, 0x058fe8,6, 0x059004,5, 0x059080,39, 0x059120,1, 0x059130,1, 0x059140,1, 0x059150,1, 0x059160,1, 0x059170,1, 0x059180,1, 0x059190,1, 0x0591b0,2, 0x059800,1, 0x059810,1, 0x059820,1, 0x059830,1, 0x059840,1, 0x059850,1, 0x059860,1, 0x059870,1, 0x059880,1, 0x059890,1, 0x0598a0,1, 0x0598b0,1, 0x0598c0,1, 0x0598d0,1, 0x0598e0,1, 0x0598f0,1, 0x059900,1, 0x059910,1, 0x059920,1, 0x059930,1, 0x059940,1, 0x059998,2, 0x059a08,6, 0x059b00,16, 0x059b44,3, 0x059b54,1, 0x059b5c,2, 0x059c00,2, 0x059c28,2, 0x059c50,2, 0x059c78,2, 0x059ca0,20, 0x059da8,2, 0x059dd8,4, 0x059e00,35, 0x059e90,6, 0x05a000,7, 0x05a04c,3, 0x05a070,4, 0x05a088,3, 0x05a0a0,1, 0x05a0b0,1, 0x05a0c0,1, 0x05a0e0,4, 0x05a200,9, 0x05a240,16, 0x060020,8, 0x060120,4, 0x060160,2, 0x060174,1, 0x06017c,3, 0x060190,8, 0x0601b8,3, 0x060240,16, 0x060300,1, 0x060310,4, 0x060328,1, 0x060330,1, 0x060344,8, 0x060380,5, 0x0603b4,3, 0x060800,4, 0x060820,4, 0x060838,3, 0x060860,8, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,1, 0x060a8c,1, 0x060a94,1, 0x060a9c,5, 0x060ac4,1, 0x060ae4,7, 0x060b04,1, 0x060b14,18, 0x060bf0,12, 0x060c24,1, 0x060c2c,1, 0x060c34,1, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062080,2, 0x062094,1, 0x06209c,2, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e4,3, 0x0621f4,7, 0x062404,5, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,8, 0x062900,4, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,3, 0x063000,1, 0x063010,4, 0x063024,1, 0x06302c,1, 0x063034,1, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,4, 0x0630c4,1, 0x0630cc,1, 0x0630d4,3, 0x0630e4,1, 0x0630ec,1, 0x0630f4,1, 0x063100,2, 0x063144,1, 0x06314c,1, 0x063154,1, 0x063164,1, 0x06316c,1, 0x063174,1, 0x063180,19, 0x063208,1, 0x063210,1, 0x063218,1, 0x063224,7, 0x063248,8, 0x063270,4, 0x063300,8, 0x064004,1, 0x06400c,4, 0x064200,3, 0x064300,1, 0x064308,6, 0x064324,2, 0x064338,2, 0x064380,3, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,3, 0x064430,1, 0x064440,1, 0x064484,2, 0x0644b8,18, 0x064504,1, 0x06450c,1, 0x064514,1, 0x064804,1, 0x064884,2, 0x0648c8,14, 0x065018,4, 0x065078,11, 0x0650c0,16, 0x065114,1, 0x065200,43, 0x0652b0,6, 0x065300,1, 0x065f00,2, 0x066000,2, 0x066028,2, 0x066050,2, 0x066078,2, 0x0660a0,25, 0x0661a8,2, 0x0661d8,4, 0x066200,35, 0x066290,6, 0x066400,6, 0x070004,5, 0x070400,7, 0x070420,10, 0x070450,7, 0x070500,5, 0x070524,1, 0x07052c,1, 0x070534,1, 0x070540,4, 0x070600,142, 0x070884,2, 0x0708a8,22, 0x070904,1, 0x070940,16, 0x071000,1, 0x071094,1, 0x071104,2, 0x071140,16, 0x071204,1, 0x07120c,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,4, 0x072804,1, 0x07280c,4, 0x072880,1, 0x072888,4, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,16, 0x074830,4, 0x074884,1, 0x074890,4, 0x074900,19, 0x074950,6, 0x074980,9, 0x0749c0,20, 0x075000,5, 0x075020,3, 0x075030,9, 0x075100,4, 0x075200,4, 0x076000,1, 0x076028,1, 0x076050,1, 0x076078,1, 0x0760a0,12, 0x0761a8,2, 0x0761d8,4, 0x076200,19, 0x076250,6, 0x078000,20, 0x078054,9, 0x07807c,3, 0x07808c,7, 0x078100,5, 0x078118,4, 0x078130,2, 0x078204,2, 0x078244,15, 0x078284,2, 0x0782c4,17, 0x07830c,4, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,1, 0x078404,1, 0x07840c,4, 0x078804,18, 0x078850,4, 0x078884,1, 0x07889c,1, 0x0788a4,23, 0x079000,9, 0x079040,16, 0x079700,14, 0x079740,14, 0x079780,14, 0x0797c0,14, 0x079804,2, 0x079828,6, 0x079844,2, 0x079868,6, 0x079884,2, 0x0798a8,7, 0x0798d0,7, 0x079904,1, 0x07990c,1, 0x079914,1, 0x079a04,2, 0x079a40,16, 0x079a84,2, 0x079a90,2, 0x079a9c,13, 0x079b04,2, 0x079b3c,17, 0x079c04,2, 0x079c40,16, 0x079c84,2, 0x079c98,2, 0x079cc4,13, 0x079cfc,7, 0x079d24,1, 0x079d2c,1, 0x079d80,2, 0x079d8c,1, 0x079fa0,3, 0x079fb0,1, 0x07a000,3, 0x07a010,3, 0x07a020,3, 0x07a040,9, 0x07a068,6, 0x07a090,2, 0x07a0a0,3, 0x07a0c0,12, 0x07a0f4,1, 0x07a100,2, 0x07a110,3, 0x07a120,1, 0x07a130,11, 0x07a160,2, 0x07a180,4, 0x07a194,3, 0x07a1a4,2, 0x07a1b0,4, 0x07a2e0,5, 0x07a2f8,2, 0x07a30c,13, 0x07a34c,77, 0x07a48c,18, 0x07a500,32, 0x07a800,16, 0x07a84c,18, 0x07a8e0,2, 0x07a8ec,3, 0x07a900,1, 0x07a910,5, 0x07a930,5, 0x07a950,5, 0x07a970,5, 0x07a9a4,3, 0x07aa78,34, 0x07ab3c,18, 0x07ab94,3, 0x07aba4,3, 0x07abf0,1, 0x07abf8,10, 0x07ac30,1, 0x07ac44,4, 0x07ac60,1, 0x07ac80,1, 0x07ac90,1, 0x07b004,6, 0x080000,29, 0x080340,14, 0x08037c,3, 0x08038c,1, 0x0803c0,2, 0x0803e4,3, 0x0803f4,3, 0x080404,5, 0x080804,2, 0x080874,35, 0x081000,129, 0x081210,4, 0x081228,3, 0x081240,2, 0x081264,2, 0x081270,4, 0x081284,2, 0x081298,2, 0x0812a4,1, 0x0812b4,21, 0x08130c,9, 0x081344,1, 0x08134c,1, 0x081354,1, 0x081364,2, 0x081370,4, 0x081384,2, 0x081390,4, 0x0813a4,2, 0x0813b0,4, 0x0813c4,2, 0x0813d8,2, 0x081404,2, 0x081478,34, 0x081504,2, 0x081518,15, 0x081558,3, 0x08156c,1, 0x081580,5, 0x081598,2, 0x0815a4,6, 0x0815c0,5, 0x0815e0,5, 0x081600,5, 0x081620,5, 0x081640,5, 0x081660,5, 0x081680,5, 0x0816a0,5, 0x0816c0,5, 0x082000,29, 0x082340,14, 0x08237c,3, 0x08238c,1, 0x0823c0,2, 0x0823e4,3, 0x0823f4,3, 0x082404,4, 0x082804,2, 0x082874,35, 0x082904,2, 0x082974,35, 0x083000,129, 0x083210,7, 0x083244,2, 0x083250,8, 0x083274,3, 0x083284,1, 0x08328c,1, 0x083294,1, 0x0832a4,1, 0x0832b4,19, 0x083304,2, 0x083310,4, 0x083324,2, 0x083330,14, 0x083384,2, 0x08339c,9, 0x084000,29, 0x084340,14, 0x08437c,3, 0x08438c,1, 0x0843c0,2, 0x0843e4,3, 0x0843f4,3, 0x084404,4, 0x084804,2, 0x084874,35, 0x084904,2, 0x084974,35, 0x085000,32, 0x085200,1, 0x085210,8, 0x085240,12, 0x085280,3, 0x0852a4,1, 0x0852b4,3, 0x085304,1, 0x08530c,1, 0x085314,1, 0x085324,2, 0x085334,3, 0x085344,2, 0x085358,2, 0x085364,2, 0x085378,2, 0x085384,2, 0x085398,2, 0x0853c0,23, 0x086000,2, 0x086020,2, 0x086040,4, 0x086054,1, 0x086400,11, 0x086800,67, 0x086910,6, 0x086a00,9, 0x086a40,20, 0x087000,26, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b0,9, 0x087200,1, 0x087208,1, 0x087210,2, 0x090000,17, 0x090060,2, 0x09006c,1, 0x090104,1, 0x090140,25, 0x0901a8,2, 0x0901c0,9, 0x0901e8,2, 0x090204,1, 0x090220,24, 0x090300,6, 0x090320,10, 0x090350,3, 0x090360,3, 0x090370,1, 0x090400,6, 0x090420,10, 0x090450,3, 0x090460,3, 0x090470,1, 0x090500,14, 0x090540,14, 0x090580,2, 0x0905a4,2, 0x0905b8,3, 0x0905d0,4, 0x091004,3, 0x091800,8, 0x091824,2, 0x091830,10, 0x091860,6, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,4, 0x093404,1, 0x093440,16, 0x093504,1, 0x09353c,28, 0x0935b0,2, 0x0935c0,3, 0x093600,4, 0x094000,9, 0x094040,19, 0x094090,6, 0x0940c0,1, 0x0940c8,4, 0x094800,1, 0x094828,1, 0x094850,1, 0x094878,1, 0x0948a0,8, 0x0949a8,2, 0x0949d8,4, 0x094a00,19, 0x094a50,6, 0x096000,1, 0x096010,4, 0x096028,3, 0x096104,1, 0x09610c,7, 0x096204,1, 0x09620c,4, 0x096488,1, 0x096498,4, 0x0964b0,4, 0x096504,1, 0x09650c,4, 0x096584,4, 0x096600,16, 0x096644,2, 0x096658,10, 0x096684,2, 0x0966bc,51, 0x096800,11, 0x096884,3, 0x0968a0,12, 0x097100,14, 0x097140,1, 0x0a1000,70, 0x0a1120,32, 0x0a1200,13, 0x0a1244,4, 0x0a1260,9, 0x0a1288,8, 0x0a12b0,1, 0x0a12bc,1, 0x0a12c4,1, 0x0a12cc,7, 0x0a1310,3, 0x0a1324,6, 0x0a135c,8, 0x0a1380,3, 0x0a1390,3, 0x0a13a0,3, 0x0a13b4,1, 0x0a13bc,2, 0x0a13e0,8, 0x0a1404,1, 0x0a140c,3, 0x0a1420,2, 0x0a1430,18, 0x0a147c,17, 0x0a2004,1, 0x0a200c,4, 0x0a2400,2, 0x0a240c,4, 0x0a2420,3, 0x0a2440,1, 0x0a2450,4, 0x0a2468,3, 0x0a2480,1, 0x0a24a0,10, 0x0a24d0,4, 0x0a24e4,5, 0x0a2500,12, 0x0a2804,1, 0x0a280c,4, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c68,3, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,1, 0x0a300c,4, 0x0a3040,2, 0x0a3064,3, 0x0a3074,3, 0x0a3200,9, 0x0a3230,2, 0x0a323c,2, 0x0a3248,4, 0x0a3260,1, 0x0a3270,6, 0x0a3300,1, 0x0a3310,6, 0x0a3804,1, 0x0a3818,12, 0x0a3884,1, 0x0a3898,12, 0x0a3900,3, 0x0a3910,6, 0x0a392c,2, 0x0a3984,1, 0x0a3998,12, 0x0a3a04,1, 0x0a3a0c,34, 0x0a3b00,48, 0x0a4000,48, 0x0a4100,3, 0x0a4110,6, 0x0a412c,4, 0x0a4140,1, 0x0a4304,1, 0x0a4318,10, 0x0a4804,1, 0x0a480c,4, 0x0a4840,2, 0x0a4864,3, 0x0a4874,3, 0x0a4c04,2, 0x0a4c10,2, 0x0a4c1c,9, 0x0a4c50,8, 0x0a4c78,19, 0x0a4d04,2, 0x0a4d40,21, 0x0a4da4,1, 0x0a4dac,1, 0x0a4db4,1, 0x0a4dc0,1, 0x0a5000,20, 0x0a6000,2, 0x0a6028,2, 0x0a6050,2, 0x0a6078,2, 0x0a60a0,36, 0x0a61a8,2, 0x0a61d8,4, 0x0a6200,35, 0x0a6290,6, 0x0a6400,67, 0x0a6510,6, 0x0a6600,9, 0x0a6640,18, 0x0a66c0,7, 0x0a8000,10, 0x0a802c,15, 0x0a806c,5, 0x0a8408,5, 0x0a8424,3, 0x0a8434,6, 0x0a8450,2, 0x0a845c,5, 0x0a84c4,1, 0x0a84cc,4, 0x0a8604,1, 0x0a860c,4, 0x0a8700,17, 0x0a8750,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,4, 0x0a8994,1, 0x0a899c,1, 0x0a89a4,3, 0x0a89c0,1, 0x0a8a00,4, 0x0a8aa4,1, 0x0a8aac,1, 0x0a8ab4,1, 0x0a8ad4,10, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,6, 0x0a9000,3, 0x0a9010,21, 0x0a9080,4, 0x0a9100,10, 0x0a91f4,3, 0x0a920c,35, 0x0a92a4,7, 0x0a930c,39, 0x0a940c,35, 0x0a949c,9, 0x0a9500,2, 0x0a950c,3, 0x0a951c,3, 0x0a954c,13, 0x0a9804,1, 0x0a980c,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,2, 0x0a9c28,1, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d48,3, 0x0a9d80,1, 0x0a9dc4,3, 0x0a9dd4,3, 0x0a9de4,3, 0x0a9df4,4, 0x0a9e20,8, 0x0a9e48,3, 0x0a9e84,1, 0x0a9e98,1, 0x0a9ea0,8, 0x0a9f80,9, 0x0a9fc0,32, 0x0aa204,1, 0x0aa20c,4, 0x0aa400,14, 0x0aa440,14, 0x0aa480,14, 0x0aa4c0,14, 0x0aa500,10, 0x0ac000,3, 0x0ac010,2, 0x0b0000,27, 0x0b0080,22, 0x0b0100,2, 0x0b0110,2, 0x0b0120,2, 0x0b0160,2, 0x0b016c,1, 0x0b0180,3, 0x0b0190,3, 0x0b01a0,3, 0x0b01e0,2, 0x0b01ec,1, 0x0b0200,8, 0x0b0260,2, 0x0b026c,1, 0x0b0280,2, 0x0b0290,2, 0x0b02e0,2, 0x0b02ec,1, 0x0b0300,3, 0x0b0310,3, 0x0b0360,2, 0x0b036c,1, 0x0b0380,2, 0x0b0390,2, 0x0b03a0,2, 0x0b03e0,2, 0x0b03ec,1, 0x0b0400,3, 0x0b0410,3, 0x0b0460,2, 0x0b046c,1, 0x0b0480,3, 0x0b0490,3, 0x0b04e0,2, 0x0b04ec,1, 0x0b0500,3, 0x0b0510,7, 0x0b0530,4, 0x0b0560,2, 0x0b056c,1, 0x0b0580,3, 0x0b0590,3, 0x0b05e0,2, 0x0b05ec,1, 0x0b0600,3, 0x0b0610,3, 0x0b0660,2, 0x0b066c,1, 0x0b0680,2, 0x0b0690,2, 0x0b06e0,2, 0x0b06ec,1, 0x0b0700,3, 0x0b0710,3, 0x0b0760,2, 0x0b076c,1, 0x0b0780,3, 0x0b0790,3, 0x0b07e0,2, 0x0b07ec,1, 0x0b0800,8, 0x0b0860,2, 0x0b086c,1, 0x0b0880,3, 0x0b0890,3, 0x0b08e0,2, 0x0b08ec,1, 0x0b0900,3, 0x0b0910,3, 0x0b0960,2, 0x0b096c,1, 0x0b0980,3, 0x0b0990,3, 0x0b09e0,2, 0x0b09ec,1, 0x0b1000,9, 0x0b1040,16, 0x0b2000,9, 0x0b2040,48, 0x0b2104,7, 0x0b2200,9, 0x0b2240,48, 0x0b2304,7, 0x0b2400,9, 0x0b2440,48, 0x0b2504,7, 0x0b2600,9, 0x0b2640,48, 0x0b2704,7, 0x0b2800,9, 0x0b2840,48, 0x0b2904,7, 0x0b2a00,9, 0x0b2a40,48, 0x0b2b04,7, 0x0b2c00,9, 0x0b2c40,48, 0x0b2d04,7, 0x0b2e00,9, 0x0b2e40,48, 0x0b2f04,7, 0x0b3000,88, 0x0b3180,34, 0x0b4000,196, 0x0b4340,13, 0x0b4378,26, 0x0b4400,9, 0x0b4480,32, 0x0b4804,1, 0x0b480c,4, 0x0b4844,1, 0x0b484c,4, 0x0b4884,1, 0x0b488c,4, 0x0b48c4,3, 0x0b4900,73, 0x0b4a40,28, 0x0b4ac4,5, 0x0b4b00,1, 0x0b4b20,16, 0x0b4b80,1, 0x0b4ba0,9, 0x0b4bd0,1, 0x0b4c00,2, 0x0b5000,7, 0x0b5040,12, 0x0b5100,9, 0x0b5140,16, 0x0b5800,2, 0x0b5828,2, 0x0b5850,2, 0x0b5878,2, 0x0b58a0,7, 0x0b59a8,2, 0x0b59d8,4, 0x0b5a00,35, 0x0b5a90,6, 0x0b5c00,83, 0x0b5d50,6, 0x0b5e00,9, 0x0b5f00,4, 0x0d0000,2, 0x0d000c,1, 0x0d0020,20, 0x0d0080,1, 0x0d00a0,16, 0x0d0100,2, 0x0d010c,1, 0x0d0120,20, 0x0d0180,1, 0x0d01a0,16, 0x0d0200,2, 0x0d020c,1, 0x0d0220,20, 0x0d0280,1, 0x0d02a0,16, 0x0d0300,2, 0x0d030c,1, 0x0d0320,20, 0x0d0380,1, 0x0d03a0,16, 0x0d0400,3, 0x0d0410,15, 0x0d0450,6, 0x0d0484,13, 0x0d0504,25, 0x0d0580,20, 0x0d0600,6, 0x0d0640,3, 0x0d0680,8, 0x0d0700,2, 0x0d070c,4, 0x0d0800,8, 0x0d0840,3, 0x0d0850,7, 0x0d0880,5, 0x0d08a0,3, 0x0d08c0,7, 0x0d08e0,11, 0x0d0910,6, 0x0d0a00,1, 0x0d0a08,13, 0x0d0a40,11, 0x0d0c00,24, 0x0d0c64,6, 0x0d0c80,4, 0x0d0d00,12, 0x0d0d40,15, 0x0d0d90,2, 0x0d0d9c,1, 0x0d0dc0,12, 0x0d0e00,1, 0x0d0e20,1, 0x0d0e28,12, 0x0d0e5c,1, 0x0d0e80,8, 0x0d0f00,8, 0x0d0f24,5, 0x0d1000,19, 0x0d1080,3, 0x0d1090,11, 0x0d1180,4, 0x0d11a0,16, 0x0d2000,2, 0x0d200c,1, 0x0d2020,20, 0x0d2080,1, 0x0d20a0,16, 0x0d2100,2, 0x0d210c,1, 0x0d2120,20, 0x0d2180,1, 0x0d21a0,16, 0x0d2200,2, 0x0d220c,1, 0x0d2220,20, 0x0d2280,1, 0x0d22a0,16, 0x0d2300,2, 0x0d230c,1, 0x0d2320,20, 0x0d2380,1, 0x0d23a0,16, 0x0d2400,3, 0x0d2410,15, 0x0d2450,6, 0x0d2484,13, 0x0d2504,25, 0x0d2580,20, 0x0d2600,6, 0x0d2640,3, 0x0d2680,8, 0x0d2700,2, 0x0d270c,4, 0x0d2800,8, 0x0d2840,3, 0x0d2850,7, 0x0d2880,5, 0x0d28a0,3, 0x0d28c0,7, 0x0d28e0,11, 0x0d2910,6, 0x0d2a00,1, 0x0d2a08,13, 0x0d2a40,11, 0x0d2c00,24, 0x0d2c64,6, 0x0d2c80,4, 0x0d2d00,12, 0x0d2d40,15, 0x0d2d90,2, 0x0d2d9c,1, 0x0d2dc0,12, 0x0d2e00,1, 0x0d2e20,1, 0x0d2e28,12, 0x0d2e5c,1, 0x0d2e80,8, 0x0d2f00,8, 0x0d2f24,5, 0x0d3000,19, 0x0d3080,3, 0x0d3090,11, 0x0d3180,4, 0x0d31a0,16, 0x0d4000,29, 0x0d4078,4, 0x0d4090,2, 0x0d40a0,7, 0x0d40c0,11, 0x0d4100,14, 0x0d4140,14, 0x0d4180,61, 0x0d4278,4, 0x0d4290,2, 0x0d42a0,7, 0x0d42c0,11, 0x0d4300,14, 0x0d4340,14, 0x0d4380,61, 0x0d4478,4, 0x0d4490,2, 0x0d44a0,7, 0x0d44c0,11, 0x0d4500,14, 0x0d4540,14, 0x0d4580,61, 0x0d4678,4, 0x0d4690,2, 0x0d46a0,7, 0x0d46c0,11, 0x0d4700,14, 0x0d4740,14, 0x0d4780,69, 0x0d4a00,8, 0x0d4a24,15, 0x0d4a64,30, 0x0d4b00,4, 0x0d4b20,2, 0x0d4c00,6, 0x0d4c40,14, 0x0d4c80,9, 0x0d4d00,9, 0x0d4d2c,1, 0x0d4d40,3, 0x0d4d60,1, 0x0d4d80,3, 0x0d4e00,2, 0x0d4e0c,1, 0x0d4e14,5, 0x0d4e2c,1, 0x0d4e34,5, 0x0d4e4c,1, 0x0d4e54,5, 0x0d4e6c,1, 0x0d4e74,5, 0x0d4e8c,1, 0x0d4e94,5, 0x0d4eac,1, 0x0d4eb4,3, 0x0d5000,29, 0x0d5078,4, 0x0d5090,2, 0x0d50a0,7, 0x0d50c0,11, 0x0d5100,14, 0x0d5140,14, 0x0d5180,61, 0x0d5278,4, 0x0d5290,2, 0x0d52a0,7, 0x0d52c0,11, 0x0d5300,14, 0x0d5340,14, 0x0d5380,61, 0x0d5478,4, 0x0d5490,2, 0x0d54a0,7, 0x0d54c0,11, 0x0d5500,14, 0x0d5540,14, 0x0d5580,61, 0x0d5678,4, 0x0d5690,2, 0x0d56a0,7, 0x0d56c0,11, 0x0d5700,14, 0x0d5740,14, 0x0d5780,69, 0x0d5a00,8, 0x0d5a24,15, 0x0d5a64,30, 0x0d5b00,4, 0x0d5b20,2, 0x0d5c00,6, 0x0d5c40,14, 0x0d5c80,9, 0x0d5d00,9, 0x0d5d2c,1, 0x0d5d40,3, 0x0d5d60,1, 0x0d5d80,3, 0x0d5e00,2, 0x0d5e0c,1, 0x0d5e14,5, 0x0d5e2c,1, 0x0d5e34,5, 0x0d5e4c,1, 0x0d5e54,5, 0x0d5e6c,1, 0x0d5e74,5, 0x0d5e8c,1, 0x0d5e94,5, 0x0d5eac,1, 0x0d5eb4,3, 0x0d6000,15, 0x0d6040,6, 0x0d6060,6, 0x0d6080,11, 0x0d6100,9, 0x0d6204,8, 0x0d6240,13, 0x0d6280,16, 0x0d6400,8, 0x0d6424,15, 0x0d6464,15, 0x0d64a4,15, 0x0d64e4,30, 0x0d6580,10, 0x0d65ac,1, 0x0d65b4,5, 0x0d65cc,1, 0x0d65d4,5, 0x0d65ec,1, 0x0d65f4,13, 0x0d6680,4, 0x0d6694,2, 0x0d66a0,5, 0x0d66c0,5, 0x0d66e0,4, 0x0d6800,19, 0x0d6850,31, 0x0d68d0,31, 0x0d6950,31, 0x0d69d0,31, 0x0d6a50,31, 0x0d6ad0,31, 0x0d6b50,31, 0x0d6bd0,31, 0x0d6c50,12, 0x0d6c84,1, 0x0d6c94,23, 0x0d7000,1, 0x0d7028,1, 0x0d7050,1, 0x0d7078,1, 0x0d70a0,5, 0x0d71a8,2, 0x0d71d8,4, 0x0d7200,19, 0x0d7250,6, 0x0d7400,1, 0x0d7408,3, 0x0d7428,1, 0x0d7434,1, 0x0d7440,2, 0x0d7500,8, 0x0d7580,7, 0x0d7600,3, 0x0d7618,1, 0x0d7620,4, 0x0d8000,11, 0x0d8030,10, 0x0d8060,17, 0x0d80c0,49, 0x0d8188,4, 0x0d8400,2, 0x0d8428,2, 0x0d8450,2, 0x0d8478,2, 0x0d84a0,17, 0x0d85a8,2, 0x0d85d8,4, 0x0d8600,35, 0x0d8690,6, 0x0d8800,2, 0x0d9000,37, 0x0d9100,26, 0x0d916c,7, 0x0d91a0,1, 0x0d91c0,9, 0x0d91e8,1, 0x0d9200,16, 0x0d9248,4, 0x0d9280,6, 0x0d929c,1, 0x0d92a4,2, 0x0d92b8,9, 0x0d92e0,4, 0x0d9304,4, 0x0d9328,3, 0x0d9340,8, 0x0d9400,7, 0x0d9424,3, 0x0d9438,17, 0x0d9480,3, 0x0d9490,24, 0x0d9500,20, 0x0d9700,7, 0x0d9744,9, 0x0d976c,2, 0x0d9780,10, 0x0d9800,37, 0x0d9900,26, 0x0d996c,7, 0x0d99a0,1, 0x0d99c0,9, 0x0d99e8,1, 0x0d9a00,16, 0x0d9a48,4, 0x0d9a80,6, 0x0d9a9c,1, 0x0d9aa4,2, 0x0d9ab8,9, 0x0d9ae0,4, 0x0d9b04,4, 0x0d9b28,3, 0x0d9b40,8, 0x0d9c00,7, 0x0d9c24,3, 0x0d9c38,17, 0x0d9c80,3, 0x0d9c90,24, 0x0d9d00,20, 0x0d9f00,7, 0x0d9f44,9, 0x0d9f6c,2, 0x0d9f80,10, 0x0da000,562, 0x0db000,562, 0x0dc000,4, 0x0dc018,18, 0x0dc100,4, 0x0dc118,18, 0x0dc200,12, 0x0dc300,6, 0x0dc320,5, 0x0dc340,6, 0x0dc360,5, 0x0dc380,6, 0x0dc400,9, 0x0dc440,32, 0x0dc4c4,1, 0x0dc4cc,1, 0x0dc4d4,1, 0x0dc50c,7, 0x0dc544,2, 0x0dc55c,9, 0x0dc584,2, 0x0dc5a4,7, 0x0dc5c4,2, 0x0dc5d8,2, 0x0dc5e4,2, 0x0dc5f8,2, 0x0dc604,2, 0x0dc614,11, 0x0dc644,5, 0x0dc660,2, 0x0dcf00,14, 0x0dcfbc,9, 0x0dd000,2, 0x0dd00c,3, 0x0dd024,2, 0x0dd044,3, 0x0dd104,1, 0x0dd10c,1, 0x0dd200,8, 0x0dd244,2, 0x0dd268,16, 0x0dd2d0,2, 0x0dd404,1, 0x0dd438,42, 0x0dd508,1, 0x0dd518,1, 0x0dd528,1, 0x0dd538,1, 0x0dd548,1, 0x0dd558,1, 0x0dd568,1, 0x0dd578,1, 0x0dd588,1, 0x0dd598,1, 0x0dd5a8,1, 0x0dd5b8,1, 0x0dd604,2, 0x0dd638,18, 0x0dd688,1, 0x0dd704,2, 0x0dd740,18, 0x0dd804,1, 0x0dd82c,21, 0x0dd900,3, 0x0dd910,3, 0x0dd920,3, 0x0dd930,3, 0x0dda00,23, 0x0dda60,32, 0x0ddb00,6, 0x0ddc00,3, 0x0ddcc0,13, 0x0ddd00,14, 0x0ddd40,14, 0x0ddd80,14, 0x0dde00,5, 0x0dde1c,1, 0x0dde50,8, 0x0dde80,9, 0x0ddec0,51, 0x0ddf90,6, 0x0de000,135, 0x0de300,2, 0x0de30c,3, 0x0de320,2, 0x0de32c,3, 0x0de340,2, 0x0de34c,3, 0x0de360,2, 0x0de36c,3, 0x0de380,2, 0x0de38c,3, 0x0de3a0,2, 0x0de3ac,3, 0x0de3c0,2, 0x0de3cc,3, 0x0de3e0,2, 0x0de3ec,3, 0x0de400,2, 0x0de40c,3, 0x0de420,2, 0x0de42c,3, 0x0de440,2, 0x0de44c,3, 0x0de460,2, 0x0de46c,3, 0x0de480,2, 0x0de48c,3, 0x0de4a0,2, 0x0de4ac,3, 0x0de4c0,2, 0x0de4cc,3, 0x0de4e0,2, 0x0de4ec,3, 0x0de500,135, 0x0de800,2, 0x0de80c,3, 0x0de820,2, 0x0de82c,3, 0x0de840,2, 0x0de84c,3, 0x0de860,2, 0x0de86c,3, 0x0de880,2, 0x0de88c,3, 0x0de8a0,2, 0x0de8ac,3, 0x0de8c0,2, 0x0de8cc,3, 0x0de8e0,2, 0x0de8ec,3, 0x0de900,2, 0x0de90c,3, 0x0de920,2, 0x0de92c,3, 0x0de940,2, 0x0de94c,3, 0x0de960,2, 0x0de96c,3, 0x0de980,2, 0x0de98c,3, 0x0de9a0,2, 0x0de9ac,3, 0x0de9c0,2, 0x0de9cc,3, 0x0de9e0,2, 0x0de9ec,3, 0x0dea00,135, 0x0ded00,2, 0x0ded0c,3, 0x0ded20,2, 0x0ded2c,3, 0x0ded40,2, 0x0ded4c,3, 0x0ded60,2, 0x0ded6c,3, 0x0ded80,2, 0x0ded8c,3, 0x0deda0,2, 0x0dedac,3, 0x0dedc0,2, 0x0dedcc,3, 0x0dede0,2, 0x0dedec,3, 0x0dee00,2, 0x0dee0c,3, 0x0dee20,2, 0x0dee2c,3, 0x0dee40,2, 0x0dee4c,3, 0x0dee60,2, 0x0dee6c,3, 0x0dee80,2, 0x0dee8c,3, 0x0deea0,2, 0x0deeac,3, 0x0deec0,2, 0x0deecc,3, 0x0deee0,2, 0x0deeec,3, 0x0def00,135, 0x0df200,2, 0x0df20c,3, 0x0df220,2, 0x0df22c,3, 0x0df240,2, 0x0df24c,3, 0x0df260,2, 0x0df26c,3, 0x0df280,2, 0x0df28c,3, 0x0df2a0,2, 0x0df2ac,3, 0x0df2c0,2, 0x0df2cc,3, 0x0df2e0,2, 0x0df2ec,3, 0x0df300,2, 0x0df30c,3, 0x0df320,2, 0x0df32c,3, 0x0df340,2, 0x0df34c,3, 0x0df360,2, 0x0df36c,3, 0x0df380,2, 0x0df38c,3, 0x0df3a0,2, 0x0df3ac,3, 0x0df3c0,2, 0x0df3cc,3, 0x0df3e0,2, 0x0df3ec,3, 0x0df400,135, 0x0df700,2, 0x0df70c,3, 0x0df720,2, 0x0df72c,3, 0x0df740,2, 0x0df74c,3, 0x0df760,2, 0x0df76c,3, 0x0df780,2, 0x0df78c,3, 0x0df7a0,2, 0x0df7ac,3, 0x0df7c0,2, 0x0df7cc,3, 0x0df7e0,2, 0x0df7ec,3, 0x0df800,2, 0x0df80c,3, 0x0df820,2, 0x0df82c,3, 0x0df840,2, 0x0df84c,3, 0x0df860,2, 0x0df86c,3, 0x0df880,2, 0x0df88c,3, 0x0df8a0,2, 0x0df8ac,3, 0x0df8c0,2, 0x0df8cc,3, 0x0df8e0,2, 0x0df8ec,3, 0x0df900,2, 0x0e0000,3, 0x0e0010,4, 0x0e0024,6, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,3, 0x0e0140,3, 0x0e0150,1, 0x0e015c,2, 0x0e0180,4, 0x0e019c,18, 0x0e01e8,5, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0400,3, 0x0e0410,4, 0x0e0424,6, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,3, 0x0e0540,3, 0x0e0550,1, 0x0e055c,2, 0x0e0580,4, 0x0e059c,18, 0x0e05e8,5, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0800,3, 0x0e0810,4, 0x0e0824,6, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,3, 0x0e0940,3, 0x0e0950,1, 0x0e095c,2, 0x0e0980,4, 0x0e099c,18, 0x0e09e8,5, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0c00,3, 0x0e0c10,4, 0x0e0c24,6, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,3, 0x0e0d40,3, 0x0e0d50,1, 0x0e0d5c,2, 0x0e0d80,4, 0x0e0d9c,18, 0x0e0de8,5, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e1000,3, 0x0e1010,4, 0x0e1024,6, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,3, 0x0e1140,3, 0x0e1150,1, 0x0e115c,2, 0x0e1180,4, 0x0e119c,18, 0x0e11e8,5, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1400,3, 0x0e1410,4, 0x0e1424,6, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,3, 0x0e1540,3, 0x0e1550,1, 0x0e155c,2, 0x0e1580,4, 0x0e159c,18, 0x0e15e8,5, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1800,3, 0x0e1810,4, 0x0e1824,6, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,3, 0x0e1940,3, 0x0e1950,1, 0x0e195c,2, 0x0e1980,4, 0x0e199c,18, 0x0e19e8,5, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1c00,3, 0x0e1c10,4, 0x0e1c24,6, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,3, 0x0e1d40,3, 0x0e1d50,1, 0x0e1d5c,2, 0x0e1d80,4, 0x0e1d9c,18, 0x0e1de8,5, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e2000,3, 0x0e2010,4, 0x0e2024,6, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,3, 0x0e2140,3, 0x0e2150,1, 0x0e215c,2, 0x0e2180,4, 0x0e219c,18, 0x0e21e8,5, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2400,3, 0x0e2410,4, 0x0e2424,6, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,3, 0x0e2540,3, 0x0e2550,1, 0x0e255c,2, 0x0e2580,4, 0x0e259c,18, 0x0e25e8,5, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2800,3, 0x0e2810,4, 0x0e2824,6, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,3, 0x0e2940,3, 0x0e2950,1, 0x0e295c,2, 0x0e2980,4, 0x0e299c,18, 0x0e29e8,5, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e3008,16, 0x0e3070,1, 0x0e3080,2, 0x0e308c,1, 0x0e3404,1, 0x0e3440,22, 0x0e349c,1, 0x0e34e4,88, 0x0e3650,5, 0x0e3a00,6, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3c00,1, 0x0e3c28,1, 0x0e3c50,1, 0x0e3c78,1, 0x0e3ca0,3, 0x0e3da8,2, 0x0e3dd8,4, 0x0e3e00,19, 0x0e3e50,6, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,18, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e4900,3, 0x0e4910,5, 0x0e4980,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4e00,2, 0x0e5000,8, 0x0e5050,8, 0x0e6000,13, 0x0e6040,1, 0x0e6200,14, 0x0e6240,1, 0x0e6248,1, 0x0e6258,10, 0x0e6284,3, 0x0e6300,10, 0x0e6340,1, 0x0e6400,17, 0x0e6478,14, 0x0e64bc,1, 0x0e7450,3, 0x0e7464,3, 0x0e74d0,3, 0x0e7510,12, 0x0e7580,3, 0x0e7590,6, 0x0e75c0,3, 0x0e75d0,6, 0x0e7600,19, 0x0e7650,6, 0x0e76c0,14, 0x0e7700,43, 0x0e77b0,6, 0x0e7800,99, 0x0e7a00,14, 0x0e7a40,14, 0x0e7a80,18, 0x0e7b00,1, 0x0e7b80,10, 0x0e7bc8,14, 0x0e7e00,44, 0x0e7f00,9, 0x0e7f30,4, 0x0e7f48,1, 0x0e8000,10, 0x0e8080,14, 0x0f0000,3, 0x0f0010,13, 0x0f006c,3, 0x0f0080,8, 0x0f00c0,1, 0x0f00c8,10, 0x0f0100,1, 0x0f0140,20, 0x0f0200,62, 0x0f02fc,1, 0x0f0404,9, 0x0f0440,14, 0x0f0480,6, 0x0f04b8,24, 0x0f0520,1, 0x0f0528,2, 0x0f0540,2, 0x0f0580,7, 0x0f0af0,3, 0x0f0b00,1, 0x0f0b0c,2, 0x0f0b18,1, 0x0f0b30,4, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba8,2, 0x0f0bc0,2, 0x0f0bd0,10, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,16, 0x0f1060,2, 0x0f1080,10, 0x0f10c0,1, 0x0f10e0,2, 0x0f10ec,1, 0x0f10f4,4, 0x0f1140,16, 0x0f1400,131, 0x0f1610,6, 0x0f1800,3, 0x0f1810,6, 0x0f1880,20, 0x0f2000,5, 0x0f201c,12, 0x0f2080,14, 0x0f2100,5, 0x0f211c,12, 0x0f2180,14, 0x0f2200,5, 0x0f221c,12, 0x0f2280,14, 0x0f2300,5, 0x0f231c,12, 0x0f2380,14, 0x0f2400,5, 0x0f241c,12, 0x0f2480,14, 0x0f2500,5, 0x0f251c,12, 0x0f2580,14, 0x0f2600,5, 0x0f261c,12, 0x0f2680,14, 0x0f2700,5, 0x0f271c,12, 0x0f2780,14, 0x0f2800,5, 0x0f281c,12, 0x0f2880,14, 0x0f2900,5, 0x0f291c,12, 0x0f2980,14, 0x0f2a00,5, 0x0f2a1c,12, 0x0f2a80,14, 0x0f2b00,5, 0x0f2b1c,12, 0x0f2b80,14, 0x0f2c00,5, 0x0f2c1c,12, 0x0f2c80,14, 0x0f2d00,5, 0x0f2d1c,12, 0x0f2d80,14, 0x0f2e00,5, 0x0f2e1c,12, 0x0f2e80,14, 0x0f2f00,5, 0x0f2f1c,12, 0x0f2f80,14, 0x0f3000,5, 0x0f301c,12, 0x0f3080,14, 0x0f3100,5, 0x0f311c,12, 0x0f3180,14, 0x0f3200,5, 0x0f321c,12, 0x0f3280,14, 0x0f3300,5, 0x0f331c,12, 0x0f3380,14, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x100000,7, 0x100040,7, 0x100080,7, 0x1000c0,7, 0x100100,7, 0x100140,7, 0x100180,7, 0x1001c0,7, 0x100200,1, 0x100300,13, 0x100338,8, 0x10035c,6, 0x100380,13, 0x1003b8,8, 0x1003dc,6, 0x100400,13, 0x100438,8, 0x10045c,6, 0x100480,13, 0x1004b8,8, 0x1004dc,6, 0x100500,13, 0x100538,8, 0x10055c,6, 0x100580,13, 0x1005b8,8, 0x1005dc,6, 0x100600,13, 0x100638,8, 0x10065c,6, 0x100680,13, 0x1006b8,8, 0x1006dc,6, 0x100700,13, 0x100738,8, 0x10075c,6, 0x100780,13, 0x1007b8,8, 0x1007dc,6, 0x100800,13, 0x100838,8, 0x10085c,6, 0x100880,13, 0x1008b8,8, 0x1008dc,6, 0x100900,13, 0x100938,8, 0x10095c,6, 0x100980,13, 0x1009b8,8, 0x1009dc,6, 0x100a00,13, 0x100a38,8, 0x100a5c,6, 0x100a80,13, 0x100ab8,8, 0x100adc,6, 0x100b00,13, 0x100b38,8, 0x100b5c,6, 0x100b80,13, 0x100bb8,8, 0x100bdc,6, 0x100c00,13, 0x100c38,8, 0x100c5c,6, 0x100d00,3, 0x100d10,2, 0x101100,1, 0x101108,1, 0x101110,1, 0x101118,1, 0x101120,1, 0x101128,1, 0x101130,1, 0x101138,1, 0x101140,3, 0x101200,18, 0x10124c,11, 0x101300,18, 0x10134c,11, 0x101400,18, 0x10144c,11, 0x101500,18, 0x10154c,11, 0x101600,18, 0x10164c,11, 0x101700,18, 0x10174c,11, 0x101800,18, 0x10184c,11, 0x101900,18, 0x10194c,11, 0x102008,1, 0x102014,3, 0x102304,1, 0x10232c,23, 0x102400,4, 0x102420,4, 0x102440,4, 0x102460,4, 0x102480,4, 0x1024a0,4, 0x1024c0,4, 0x1024e0,4, 0x102600,1, 0x102608,1, 0x102680,6, 0x1026a8,2, 0x102700,4, 0x10275c,1, 0x102768,1, 0x102770,4, 0x102790,1, 0x10279c,1, 0x102800,3, 0x102820,3, 0x102840,3, 0x102860,3, 0x102880,3, 0x1028a0,3, 0x1028c0,3, 0x1028e0,3, 0x102908,1, 0x102a00,1, 0x102a40,9, 0x102a80,9, 0x102ac0,1, 0x102b00,9, 0x102b40,9, 0x102b84,1, 0x102b9c,9, 0x102be0,5, 0x102c00,20, 0x102cd8,5, 0x102d00,33, 0x102e00,1, 0x103000,7, 0x103020,3, 0x103030,4, 0x103080,7, 0x1030a0,3, 0x1030b0,4, 0x103100,7, 0x103120,3, 0x103130,4, 0x103180,7, 0x1031a0,3, 0x1031b0,4, 0x103200,7, 0x103220,3, 0x103230,4, 0x103280,7, 0x1032a0,3, 0x1032b0,4, 0x103300,7, 0x103320,3, 0x103330,4, 0x103380,7, 0x1033a0,3, 0x1033b0,4, 0x103400,7, 0x103420,3, 0x103430,5, 0x10344c,9, 0x103474,2, 0x103484,1, 0x103500,67, 0x103700,34, 0x103800,39, 0x103900,39, 0x103a00,39, 0x103c04,1, 0x103c18,10, 0x103d04,1, 0x103d7c,35, 0x104000,1, 0x10406c,3, 0x10407c,1, 0x104084,1, 0x1040a4,7, 0x1040e4,4, 0x104104,1, 0x104170,36, 0x104400,1, 0x10446c,3, 0x10447c,1, 0x104484,1, 0x1044a4,7, 0x1044e4,4, 0x104504,1, 0x104570,36, 0x104800,1, 0x10486c,3, 0x10487c,1, 0x104884,1, 0x1048a4,7, 0x1048e4,4, 0x104904,1, 0x104970,36, 0x104c00,1, 0x104c6c,3, 0x104c7c,1, 0x104c84,1, 0x104ca4,7, 0x104ce4,4, 0x104d04,1, 0x104d70,36, 0x105000,1, 0x10506c,3, 0x10507c,1, 0x105084,1, 0x1050a4,7, 0x1050e4,4, 0x105104,1, 0x105170,36, 0x105400,1, 0x10546c,3, 0x10547c,1, 0x105484,1, 0x1054a4,7, 0x1054e4,4, 0x105504,1, 0x105570,36, 0x105800,1, 0x10586c,3, 0x10587c,1, 0x105884,1, 0x1058a4,7, 0x1058e4,4, 0x105904,1, 0x105970,36, 0x105c00,1, 0x105c6c,3, 0x105c7c,1, 0x105c84,1, 0x105ca4,7, 0x105ce4,4, 0x105d04,1, 0x105d70,36, 0x106000,9, 0x106044,7, 0x106080,10, 0x106100,1, 0x10610c,7, 0x106130,3, 0x106174,19, 0x106200,2, 0x106210,4, 0x107000,3, 0x107018,7, 0x107040,3, 0x107050,2, 0x107200,3, 0x107218,7, 0x107240,3, 0x107250,2, 0x107400,3, 0x107418,7, 0x107440,3, 0x107450,2, 0x107600,3, 0x107618,7, 0x107640,3, 0x107650,2, 0x107800,3, 0x107818,7, 0x107840,3, 0x107850,2, 0x107a00,3, 0x107a18,7, 0x107a40,3, 0x107a50,2, 0x107c00,3, 0x107c18,7, 0x107c40,3, 0x107c50,2, 0x107e00,3, 0x107e18,7, 0x107e40,3, 0x107e50,2, 0x108000,48, 0x108100,48, 0x108204,1, 0x10820c,4, 0x108240,9, 0x108280,1, 0x108298,3, 0x1082a8,3, 0x1082b8,2, 0x1082c4,13, 0x108300,1, 0x108308,1, 0x108310,1, 0x108318,1, 0x108320,1, 0x108328,1, 0x108330,1, 0x108338,1, 0x108340,2, 0x108350,2, 0x108360,2, 0x108370,2, 0x108380,2, 0x108390,2, 0x1083a0,2, 0x1083b0,2, 0x1083c0,2, 0x1083d8,1, 0x1083e8,9, 0x108410,6, 0x108500,3, 0x108510,3, 0x108520,1, 0x108800,25, 0x108870,3, 0x108880,18, 0x108930,3, 0x108940,18, 0x1089f0,3, 0x108a00,18, 0x108ab0,3, 0x108ac0,18, 0x108b70,3, 0x108b80,18, 0x108c30,3, 0x108c40,18, 0x108cf0,3, 0x108d00,18, 0x108db0,3, 0x108dc0,18, 0x108ff4,27, 0x109080,4, 0x10909c,6, 0x1090c0,1, 0x1090c8,1, 0x1090d0,1, 0x1090d8,1, 0x1090e0,1, 0x1090e8,1, 0x1090f0,1, 0x1090f8,1, 0x109800,27, 0x109900,27, 0x109a00,27, 0x109b00,27, 0x109c00,27, 0x109d00,27, 0x109e00,27, 0x109f00,27, 0x10a000,12, 0x10a11c,10, 0x10a200,8, 0x10a240,8, 0x10a280,8, 0x10a2c0,8, 0x10a300,8, 0x10a340,8, 0x10a380,8, 0x10a3c0,8, 0x10a800,19, 0x10a900,19, 0x10aa00,19, 0x10ab00,19, 0x10ac00,19, 0x10ad00,19, 0x10ae00,19, 0x10af00,19, 0x10b000,13, 0x10b800,19, 0x10b900,19, 0x10ba00,19, 0x10bb00,19, 0x10bc00,19, 0x10bd00,19, 0x10be00,19, 0x10bf00,19, 0x10c000,1, 0x10c008,1, 0x10c010,1, 0x10c018,1, 0x10c020,1, 0x10c028,1, 0x10c030,1, 0x10c038,1, 0x10c040,1, 0x10c100,2, 0x10c110,2, 0x10c120,2, 0x10c130,2, 0x10c140,2, 0x10c150,2, 0x10c160,2, 0x10c170,2, 0x10c408,1, 0x10c410,15, 0x10c604,1, 0x10c6ec,72, 0x10c884,1, 0x10c8ac,21, 0x10c904,1, 0x10c924,8, 0x10ca00,14, 0x10ca40,14, 0x10cb00,14, 0x10cb40,14, 0x10cc00,14, 0x10cc40,14, 0x10cd00,14, 0x10cd40,14, 0x10ce00,14, 0x10ce40,14, 0x10cf00,14, 0x10cf40,14, 0x10d000,14, 0x10d040,14, 0x10d100,14, 0x10d140,14, 0x10d200,14, 0x10d240,14, 0x10d280,14, 0x10d2c0,14, 0x10d300,14, 0x10d400,19, 0x10d480,3, 0x10d490,6, 0x10d6fc,1, 0x10d704,7, 0x10d744,7, 0x10d784,7, 0x10d7c4,7, 0x10d804,7, 0x10d844,7, 0x10d884,7, 0x10d8c4,7, 0x10d904,7, 0x10d944,7, 0x10d984,7, 0x10d9c4,7, 0x10da04,7, 0x10da44,7, 0x10da84,7, 0x10dac4,7, 0x10dbf8,36, 0x10dc90,2, 0x10dca0,14, 0x10dd38,2, 0x10dd48,2, 0x10dd58,2, 0x10dd68,2, 0x10dd78,2, 0x10dd88,2, 0x10dd98,2, 0x10dda8,2, 0x10fa00,14, 0x10fa40,2, 0x10fa4c,1, 0x10fa80,9, 0x10fac0,20, 0x10fc00,1, 0x10fc28,1, 0x10fc50,1, 0x10fc78,1, 0x10fca0,13, 0x10fda8,2, 0x10fdd8,4, 0x10fe00,19, 0x10fe50,6, 0x110000,288, 0x110700,2, 0x110710,2, 0x110ffc,8, 0x111020,7, 0x111040,7, 0x111060,7, 0x111080,7, 0x1110a0,7, 0x1110c0,7, 0x1110e0,7, 0x111100,7, 0x111120,7, 0x111140,7, 0x111160,7, 0x111180,7, 0x1111a0,7, 0x1111c0,7, 0x1111e0,7, 0x111200,7, 0x111400,4, 0x112004,3, 0x112014,3, 0x112024,3, 0x112034,3, 0x112044,3, 0x112054,3, 0x112064,3, 0x112074,3, 0x112084,3, 0x112094,3, 0x1120a4,3, 0x1120b4,3, 0x1120c4,3, 0x1120d4,3, 0x1120e4,3, 0x1120f4,3, 0x112104,3, 0x112114,3, 0x112124,3, 0x112134,3, 0x112144,3, 0x112154,3, 0x112164,3, 0x112174,3, 0x112184,3, 0x112194,3, 0x1121a4,3, 0x1121b4,3, 0x1121c4,3, 0x1121d4,3, 0x1121e4,3, 0x1121f4,3, 0x112204,3, 0x112214,3, 0x112224,3, 0x112234,3, 0x112244,3, 0x112254,3, 0x112264,3, 0x112274,3, 0x112284,3, 0x112294,3, 0x1122a4,3, 0x1122b4,3, 0x1122c4,3, 0x1122d4,3, 0x1122e4,3, 0x1122f4,3, 0x112304,3, 0x112314,3, 0x112324,3, 0x112334,3, 0x112344,3, 0x112354,3, 0x112364,3, 0x112374,3, 0x112384,3, 0x112394,3, 0x1123a4,3, 0x1123b4,3, 0x1123c4,3, 0x1123d4,3, 0x1123e4,3, 0x1123f4,3, 0x112404,3, 0x112414,3, 0x112424,3, 0x112434,3, 0x112444,3, 0x112454,3, 0x112464,3, 0x112474,3, 0x112ffc,8, 0x113020,7, 0x113040,7, 0x113060,7, 0x113080,7, 0x1130a0,7, 0x1130c0,7, 0x1130e0,7, 0x113100,7, 0x113120,7, 0x113140,7, 0x113160,7, 0x113180,7, 0x1131a0,7, 0x1131c0,7, 0x1131e0,7, 0x113200,7, 0x113400,2, 0x113420,3, 0x113604,12, 0x1136e0,33, 0x11f800,1, 0x120014,9, 0x120040,7, 0x120064,12, 0x1200a0,1, 0x120100,12, 0x120180,14, 0x1201c0,14, 0x120414,9, 0x120440,7, 0x120464,12, 0x1204a0,1, 0x120500,12, 0x120580,14, 0x1205c0,14, 0x120814,9, 0x120840,7, 0x120864,12, 0x1208a0,1, 0x120900,12, 0x120980,14, 0x1209c0,14, 0x120c14,9, 0x120c40,7, 0x120c64,12, 0x120ca0,1, 0x120d00,12, 0x120d80,14, 0x120dc0,14, 0x121014,9, 0x121040,7, 0x121064,12, 0x1210a0,1, 0x121100,12, 0x121180,14, 0x1211c0,14, 0x121414,9, 0x121440,7, 0x121464,12, 0x1214a0,1, 0x121500,12, 0x121580,14, 0x1215c0,14, 0x121814,9, 0x121840,7, 0x121864,12, 0x1218a0,1, 0x121900,12, 0x121980,14, 0x1219c0,14, 0x121c14,9, 0x121c40,7, 0x121c64,12, 0x121ca0,1, 0x121d00,12, 0x121d80,14, 0x121dc0,14, 0x122000,33, 0x122088,14, 0x123000,2, 0x123010,2, 0x123020,2, 0x123040,3, 0x123050,6, 0x123ffc,1, 0x126000,1, 0x126028,1, 0x126050,1, 0x126078,1, 0x1260a0,5, 0x1261a8,2, 0x1261d8,4, 0x126200,19, 0x126250,6, 0x126400,9, 0x126440,25, 0x1264c0,25, 0x126540,25, 0x1265c0,25, 0x126640,25, 0x1266c0,25, 0x126740,25, 0x1267c0,16, 0x126a00,14, 0x126c20,3, 0x126c30,1, 0x126c38,6, 0x126c60,2, 0x126d00,17, 0x130000,29, 0x130078,4, 0x130090,2, 0x1300a0,7, 0x1300c0,11, 0x130100,14, 0x130140,14, 0x130180,61, 0x130278,4, 0x130290,2, 0x1302a0,7, 0x1302c0,11, 0x130300,14, 0x130340,14, 0x130380,61, 0x130478,4, 0x130490,2, 0x1304a0,7, 0x1304c0,11, 0x130500,14, 0x130540,14, 0x130580,61, 0x130678,4, 0x130690,2, 0x1306a0,7, 0x1306c0,11, 0x130700,14, 0x130740,14, 0x130780,69, 0x130c00,6, 0x130c40,14, 0x130c80,9, 0x130d00,9, 0x130d2c,1, 0x130d40,3, 0x130d60,1, 0x130d80,3, 0x130e00,2, 0x130e0c,1, 0x130e14,5, 0x130e2c,1, 0x130e34,5, 0x130e4c,1, 0x130e54,5, 0x130e6c,1, 0x130e74,5, 0x130e8c,1, 0x130e94,5, 0x130eac,1, 0x130eb4,3, 0x131000,29, 0x131078,4, 0x131090,2, 0x1310a0,7, 0x1310c0,11, 0x131100,14, 0x131140,14, 0x131180,61, 0x131278,4, 0x131290,2, 0x1312a0,7, 0x1312c0,11, 0x131300,14, 0x131340,14, 0x131380,61, 0x131478,4, 0x131490,2, 0x1314a0,7, 0x1314c0,11, 0x131500,14, 0x131540,14, 0x131580,61, 0x131678,4, 0x131690,2, 0x1316a0,7, 0x1316c0,11, 0x131700,14, 0x131740,14, 0x131780,69, 0x131c00,6, 0x131c40,14, 0x131c80,9, 0x131d00,9, 0x131d2c,1, 0x131d40,3, 0x131d60,1, 0x131d80,3, 0x131e00,2, 0x131e0c,1, 0x131e14,5, 0x131e2c,1, 0x131e34,5, 0x131e4c,1, 0x131e54,5, 0x131e6c,1, 0x131e74,5, 0x131e8c,1, 0x131e94,5, 0x131eac,1, 0x131eb4,3, 0x132000,29, 0x132078,4, 0x132090,2, 0x1320a0,7, 0x1320c0,11, 0x132100,14, 0x132140,14, 0x132180,61, 0x132278,4, 0x132290,2, 0x1322a0,7, 0x1322c0,11, 0x132300,14, 0x132340,14, 0x132380,61, 0x132478,4, 0x132490,2, 0x1324a0,7, 0x1324c0,11, 0x132500,14, 0x132540,14, 0x132580,61, 0x132678,4, 0x132690,2, 0x1326a0,7, 0x1326c0,11, 0x132700,14, 0x132740,14, 0x132780,69, 0x132c00,6, 0x132c40,14, 0x132c80,9, 0x132d00,9, 0x132d2c,1, 0x132d40,3, 0x132d60,1, 0x132d80,3, 0x132e00,2, 0x132e0c,1, 0x132e14,5, 0x132e2c,1, 0x132e34,5, 0x132e4c,1, 0x132e54,5, 0x132e6c,1, 0x132e74,5, 0x132e8c,1, 0x132e94,5, 0x132eac,1, 0x132eb4,3, 0x133000,29, 0x133078,4, 0x133090,2, 0x1330a0,7, 0x1330c0,11, 0x133100,14, 0x133140,14, 0x133180,61, 0x133278,4, 0x133290,2, 0x1332a0,7, 0x1332c0,11, 0x133300,14, 0x133340,14, 0x133380,61, 0x133478,4, 0x133490,2, 0x1334a0,7, 0x1334c0,11, 0x133500,14, 0x133540,14, 0x133580,61, 0x133678,4, 0x133690,2, 0x1336a0,7, 0x1336c0,11, 0x133700,14, 0x133740,14, 0x133780,69, 0x133c00,6, 0x133c40,14, 0x133c80,9, 0x133d00,9, 0x133d2c,1, 0x133d40,3, 0x133d60,1, 0x133d80,3, 0x133e00,2, 0x133e0c,1, 0x133e14,5, 0x133e2c,1, 0x133e34,5, 0x133e4c,1, 0x133e54,5, 0x133e6c,1, 0x133e74,5, 0x133e8c,1, 0x133e94,5, 0x133eac,1, 0x133eb4,3, 0x134000,19, 0x134050,31, 0x1340d0,31, 0x134150,31, 0x1341d0,31, 0x134250,31, 0x1342d0,31, 0x134350,31, 0x1343d0,31, 0x134450,31, 0x1344d0,31, 0x134550,31, 0x1345d0,31, 0x134650,31, 0x1346d0,31, 0x134750,31, 0x1347d0,31, 0x134850,12, 0x134884,1, 0x134894,23, 0x134900,7, 0x135000,72, 0x135400,72, 0x135800,72, 0x135c00,72, 0x136000,72, 0x136400,72, 0x136800,72, 0x136c00,72, 0x137000,17, 0x137048,9, 0x137070,3, 0x137090,13, 0x1370d0,1, 0x1370e0,5, 0x137200,17, 0x137248,9, 0x137270,3, 0x137290,13, 0x1372d0,1, 0x1372e0,5, 0x137400,17, 0x137448,9, 0x137470,3, 0x137490,13, 0x1374d0,1, 0x1374e0,5, 0x137600,17, 0x137648,9, 0x137670,3, 0x137690,13, 0x1376d0,1, 0x1376e0,5, 0x137800,17, 0x137848,9, 0x137870,3, 0x137890,13, 0x1378d0,1, 0x1378e0,5, 0x137a00,17, 0x137a48,9, 0x137a70,3, 0x137a90,13, 0x137ad0,1, 0x137ae0,5, 0x137c00,17, 0x137c48,9, 0x137c70,3, 0x137c90,13, 0x137cd0,1, 0x137ce0,5, 0x137e00,17, 0x137e48,9, 0x137e70,3, 0x137e90,13, 0x137ed0,1, 0x137ee0,5, 0x138000,7, 0x138020,15, 0x138060,15, 0x1380a0,15, 0x1380e0,15, 0x138120,15, 0x138160,15, 0x1381a0,15, 0x1381e0,15, 0x138220,15, 0x138260,15, 0x1382a0,15, 0x1382e0,15, 0x138320,15, 0x138360,15, 0x1383a0,15, 0x1383e0,15, 0x138420,9, 0x138500,7, 0x138520,9, 0x138600,7, 0x138620,9, 0x138700,7, 0x138720,9, 0x138800,7, 0x138820,9, 0x138900,7, 0x138920,9, 0x138a00,7, 0x138a20,9, 0x138b00,7, 0x138b20,9, 0x138c00,14, 0x138c40,14, 0x138c80,14, 0x138cc0,14, 0x138d00,14, 0x138d40,14, 0x138d80,14, 0x138dc0,14, 0x138e00,14, 0x138e40,14, 0x138e80,14, 0x138ec0,14, 0x138f00,14, 0x139000,12, 0x139034,1, 0x13903c,4, 0x139050,2, 0x1390a0,2, 0x1390ac,1, 0x1390b4,9, 0x139200,14, 0x139240,14, 0x139280,14, 0x1392c0,14, 0x139300,14, 0x139340,14, 0x13a000,104, 0x13a200,3, 0x13a210,2, 0x13a21c,16, 0x13a300,3, 0x13a310,2, 0x13a31c,16, 0x13a400,3, 0x13a410,2, 0x13a41c,16, 0x13a500,3, 0x13a510,2, 0x13a51c,16, 0x13a600,3, 0x13a610,2, 0x13a61c,16, 0x13a700,3, 0x13a710,2, 0x13a71c,16, 0x13a800,3, 0x13a810,2, 0x13a81c,16, 0x13a900,3, 0x13a910,2, 0x13a91c,16, 0x13aa00,21, 0x13ab00,25, 0x13ab80,7, 0x13ac00,16, 0x13b000,14, 0x13b040,14, 0x13b080,14, 0x13b0c0,14, 0x13b100,14, 0x13b140,14, 0x13b180,14, 0x13b1c0,14, 0x13b200,14, 0x13b240,14, 0x13b280,14, 0x13b2c0,14, 0x13b300,1, 0x13b800,14, 0x13b840,14, 0x13b880,14, 0x13b8c0,14, 0x13b900,14, 0x13b940,14, 0x13b980,14, 0x13b9c0,14, 0x13ba00,14, 0x13ba40,14, 0x13ba80,14, 0x13bac0,14, 0x13bb00,1, 0x13c000,14, 0x13c040,14, 0x13c080,14, 0x13c0c0,14, 0x13c100,14, 0x13c140,14, 0x13c180,14, 0x13c1c0,14, 0x13c200,14, 0x13c240,14, 0x13c280,14, 0x13c2c0,14, 0x13c300,1, 0x13c800,14, 0x13c840,14, 0x13c880,14, 0x13c8c0,14, 0x13c900,14, 0x13c940,14, 0x13c980,14, 0x13c9c0,14, 0x13ca00,14, 0x13ca40,14, 0x13ca80,14, 0x13cac0,14, 0x13cb00,1, 0x13d000,14, 0x13d040,14, 0x13d080,14, 0x13d0c0,14, 0x13d100,14, 0x13d140,14, 0x13d180,14, 0x13d1c0,14, 0x13d200,14, 0x13d240,14, 0x13d280,14, 0x13d2c0,14, 0x13d300,1, 0x13d800,14, 0x13d840,14, 0x13d880,14, 0x13d8c0,14, 0x13d900,14, 0x13d940,14, 0x13d980,14, 0x13d9c0,14, 0x13da00,14, 0x13da40,14, 0x13da80,14, 0x13dac0,14, 0x13db00,1, 0x13e000,14, 0x13e040,14, 0x13e080,14, 0x13e0c0,14, 0x13e100,14, 0x13e140,14, 0x13e180,14, 0x13e1c0,14, 0x13e200,14, 0x13e240,14, 0x13e280,14, 0x13e2c0,14, 0x13e300,1, 0x13e800,14, 0x13e840,14, 0x13e880,14, 0x13e8c0,14, 0x13e900,14, 0x13e940,14, 0x13e980,14, 0x13e9c0,14, 0x13ea00,14, 0x13ea40,14, 0x13ea80,14, 0x13eac0,14, 0x13eb00,1, 0x13f800,8, 0x13f824,15, 0x13f864,15, 0x13f8a4,15, 0x13f8e4,30, 0x13f980,10, 0x13f9ac,1, 0x13f9b4,5, 0x13f9cc,1, 0x13f9d4,5, 0x13f9ec,1, 0x13f9f4,13, 0x13fa80,4, 0x13fa94,2, 0x13faa0,5, 0x13fac0,5, 0x13fae0,4, 0x13fc04,8, 0x13fc40,13, 0x13fc80,16, 0x13fd00,14, 0x13fd40,3, 0x13fd50,3, 0x13fd60,3, 0x13fd70,11, 0x13fdc0,35, 0x13fe50,1, 0x13fe58,1, 0x13fe60,1, 0x13fe68,1, 0x13fe70,1, 0x13fe78,1, 0x13fe80,1, 0x13fe88,5, mstflint-4.26.0/mstdump/mstdump_dbs/SwitchIB2.csv0000644000175000017500000045755314522641732022213 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,1, 0x000408,14, 0x000480,1, 0x000488,18, 0x000500,9, 0x000534,2, 0x00054c,4, 0x00056c,11, 0x0005ac,8, 0x0005d0,1, 0x000604,1, 0x00060c,13, 0x000644,1, 0x000654,3, 0x000664,1, 0x00066c,8, 0x0006a8,3, 0x0006c0,8, 0x000700,6, 0x000760,4, 0x000780,8, 0x0007b8,8, 0x0007dc,10, 0x000808,14, 0x000880,1, 0x000888,18, 0x000900,9, 0x000934,2, 0x00094c,4, 0x00096c,11, 0x0009ac,8, 0x0009d0,1, 0x000a04,1, 0x000a0c,13, 0x000a44,1, 0x000a54,3, 0x000a64,1, 0x000a6c,8, 0x000aa8,3, 0x000ac0,8, 0x000b00,6, 0x000b60,4, 0x000b80,8, 0x000bb8,8, 0x000bdc,10, 0x000c08,14, 0x000c80,1, 0x000c88,18, 0x000d00,9, 0x000d34,2, 0x000d4c,4, 0x000d6c,11, 0x000dac,8, 0x000dd0,1, 0x000e04,1, 0x000e0c,13, 0x000e44,1, 0x000e54,3, 0x000e64,1, 0x000e6c,8, 0x000ea8,3, 0x000ec0,8, 0x000f00,6, 0x000f60,4, 0x000f80,8, 0x000fb8,8, 0x000fdc,10, 0x001008,14, 0x001080,1, 0x001088,18, 0x001100,9, 0x001134,2, 0x00114c,4, 0x00116c,11, 0x0011ac,8, 0x0011d0,1, 0x001204,1, 0x00120c,13, 0x001244,1, 0x001254,3, 0x001264,1, 0x00126c,8, 0x0012a8,3, 0x0012c0,8, 0x001300,6, 0x001360,4, 0x001380,8, 0x0013b8,8, 0x0013dc,10, 0x001408,14, 0x001480,1, 0x001488,18, 0x001500,9, 0x001534,2, 0x00154c,4, 0x00156c,11, 0x0015ac,8, 0x0015d0,1, 0x001604,1, 0x00160c,13, 0x001644,1, 0x001654,3, 0x001664,1, 0x00166c,8, 0x0016a8,3, 0x0016c0,8, 0x001700,6, 0x001760,4, 0x001780,8, 0x0017b8,8, 0x0017dc,10, 0x001808,14, 0x001880,1, 0x001888,18, 0x001900,9, 0x001934,2, 0x00194c,4, 0x00196c,11, 0x0019ac,8, 0x0019d0,1, 0x001a04,1, 0x001a0c,13, 0x001a44,1, 0x001a54,3, 0x001a64,1, 0x001a6c,8, 0x001aa8,3, 0x001ac0,8, 0x001b00,6, 0x001b60,4, 0x001b80,8, 0x001bb8,8, 0x001bdc,10, 0x001c08,14, 0x001c80,1, 0x001c88,18, 0x001d00,9, 0x001d34,2, 0x001d4c,4, 0x001d6c,11, 0x001dac,8, 0x001dd0,1, 0x001e04,1, 0x001e0c,13, 0x001e44,1, 0x001e54,3, 0x001e64,1, 0x001e6c,8, 0x001ea8,3, 0x001ec0,8, 0x001f00,6, 0x001f60,4, 0x001f80,8, 0x001fb8,8, 0x001fdc,10, 0x002008,14, 0x002080,1, 0x002088,18, 0x002100,9, 0x002134,2, 0x00214c,4, 0x00216c,11, 0x0021ac,8, 0x0021d0,1, 0x002204,1, 0x00220c,13, 0x002244,1, 0x002254,3, 0x002264,1, 0x00226c,8, 0x0022a8,3, 0x0022c0,8, 0x002300,6, 0x002360,4, 0x002380,8, 0x0023b8,8, 0x0023dc,10, 0x002408,14, 0x002480,1, 0x002488,18, 0x002500,9, 0x002534,2, 0x00254c,4, 0x00256c,11, 0x0025ac,8, 0x0025d0,1, 0x002604,1, 0x00260c,13, 0x002644,1, 0x002654,3, 0x002664,1, 0x00266c,8, 0x0026a8,3, 0x0026c0,8, 0x002700,6, 0x002760,4, 0x002780,8, 0x0027b8,8, 0x0027dc,10, 0x002808,14, 0x002880,1, 0x002888,18, 0x002900,9, 0x002934,2, 0x00294c,4, 0x00296c,11, 0x0029ac,8, 0x0029d0,1, 0x002a04,1, 0x002a0c,13, 0x002a44,1, 0x002a54,3, 0x002a64,1, 0x002a6c,8, 0x002aa8,3, 0x002ac0,8, 0x002b00,6, 0x002b60,4, 0x002b80,8, 0x002bb8,8, 0x002bdc,10, 0x002c08,14, 0x002c80,1, 0x002c88,18, 0x002d00,9, 0x002d34,2, 0x002d4c,4, 0x002d6c,11, 0x002dac,8, 0x002dd0,1, 0x002e04,1, 0x002e0c,13, 0x002e44,1, 0x002e54,3, 0x002e64,1, 0x002e6c,8, 0x002ea8,3, 0x002ec0,8, 0x002f00,6, 0x002f60,4, 0x002f80,8, 0x002fb8,8, 0x002fdc,10, 0x003008,14, 0x003080,1, 0x003088,18, 0x003100,9, 0x003134,2, 0x00314c,4, 0x00316c,11, 0x0031ac,8, 0x0031d0,1, 0x003204,1, 0x00320c,13, 0x003244,1, 0x003254,3, 0x003264,1, 0x00326c,8, 0x0032a8,3, 0x0032c0,8, 0x003300,6, 0x003360,4, 0x003380,8, 0x0033b8,8, 0x0033dc,10, 0x003408,14, 0x003480,1, 0x003488,18, 0x003500,9, 0x003534,2, 0x00354c,4, 0x00356c,11, 0x0035ac,8, 0x0035d0,1, 0x003604,1, 0x00360c,13, 0x003644,1, 0x003654,3, 0x003664,1, 0x00366c,8, 0x0036a8,3, 0x0036c0,8, 0x003700,6, 0x003760,4, 0x003780,8, 0x0037b8,8, 0x0037dc,10, 0x003808,14, 0x003880,1, 0x003888,18, 0x003900,9, 0x003934,2, 0x00394c,4, 0x00396c,11, 0x0039ac,8, 0x0039d0,1, 0x003a04,1, 0x003a0c,13, 0x003a44,1, 0x003a54,3, 0x003a64,1, 0x003a6c,8, 0x003aa8,3, 0x003ac0,8, 0x003b00,6, 0x003b60,4, 0x003b80,8, 0x003bb8,8, 0x003bdc,10, 0x003c08,14, 0x003c80,1, 0x003c88,18, 0x003d00,9, 0x003d34,2, 0x003d4c,4, 0x003d6c,11, 0x003dac,8, 0x003dd0,1, 0x003e04,1, 0x003e0c,13, 0x003e44,1, 0x003e54,3, 0x003e64,1, 0x003e6c,8, 0x003ea8,3, 0x003ec0,8, 0x003f00,6, 0x003f60,4, 0x003f80,8, 0x003fb8,8, 0x003fdc,10, 0x004008,14, 0x004080,1, 0x004088,18, 0x004100,9, 0x004134,2, 0x00414c,4, 0x00416c,11, 0x0041ac,8, 0x0041d0,1, 0x004204,1, 0x00420c,13, 0x004244,1, 0x004254,3, 0x004264,1, 0x00426c,8, 0x0042a8,3, 0x0042c0,8, 0x004300,6, 0x004360,4, 0x004380,8, 0x0043b8,8, 0x0043dc,10, 0x004408,14, 0x004480,1, 0x004488,18, 0x004500,9, 0x004534,2, 0x00454c,4, 0x00456c,11, 0x0045ac,8, 0x0045d0,1, 0x004604,1, 0x00460c,13, 0x004644,1, 0x004654,3, 0x004664,1, 0x00466c,8, 0x0046a8,3, 0x0046c0,8, 0x004700,6, 0x004760,4, 0x004780,8, 0x0047b8,8, 0x0047dc,10, 0x004808,14, 0x004880,1, 0x004888,18, 0x004900,9, 0x004934,2, 0x00494c,4, 0x00496c,11, 0x0049ac,8, 0x0049d0,1, 0x004a04,1, 0x004a0c,13, 0x004a44,1, 0x004a54,3, 0x004a64,1, 0x004a6c,8, 0x004aa8,3, 0x004ac0,8, 0x004b00,6, 0x004b60,4, 0x004b80,8, 0x004bb8,8, 0x004bdc,10, 0x004c08,14, 0x004c80,1, 0x004c88,18, 0x004d00,9, 0x004d34,2, 0x004d4c,4, 0x004d6c,11, 0x004dac,8, 0x004dd0,1, 0x004e04,1, 0x004e0c,13, 0x004e44,1, 0x004e54,3, 0x004e64,1, 0x004e6c,8, 0x004ea8,3, 0x004ec0,8, 0x004f00,6, 0x004f60,4, 0x004f80,8, 0x004fb8,8, 0x004fdc,10, 0x005008,14, 0x005080,1, 0x005088,18, 0x005100,9, 0x005134,2, 0x00514c,4, 0x00516c,11, 0x0051ac,8, 0x0051d0,1, 0x005204,1, 0x00520c,13, 0x005244,1, 0x005254,3, 0x005264,1, 0x00526c,8, 0x0052a8,3, 0x0052c0,8, 0x005300,6, 0x005360,4, 0x005380,8, 0x0053b8,8, 0x0053dc,10, 0x005428,1, 0x005450,1, 0x005478,1, 0x0054a0,1, 0x0055ac,1, 0x0055d8,4, 0x005600,6, 0x005620,6, 0x005640,3, 0x005800,13, 0x005840,6, 0x005860,3, 0x005880,2, 0x005904,2, 0x005918,1, 0x005940,1, 0x008400,1, 0x008408,14, 0x008480,1, 0x008488,18, 0x008500,9, 0x008534,2, 0x00854c,4, 0x00856c,11, 0x0085ac,8, 0x0085d0,1, 0x008604,1, 0x00860c,13, 0x008644,1, 0x008654,3, 0x008664,1, 0x00866c,8, 0x0086a8,3, 0x0086c0,8, 0x008700,6, 0x008760,4, 0x008780,8, 0x0087b8,8, 0x0087dc,10, 0x008808,14, 0x008880,1, 0x008888,18, 0x008900,9, 0x008934,2, 0x00894c,4, 0x00896c,11, 0x0089ac,8, 0x0089d0,1, 0x008a04,1, 0x008a0c,13, 0x008a44,1, 0x008a54,3, 0x008a64,1, 0x008a6c,8, 0x008aa8,3, 0x008ac0,8, 0x008b00,6, 0x008b60,4, 0x008b80,8, 0x008bb8,8, 0x008bdc,10, 0x008c08,14, 0x008c80,1, 0x008c88,18, 0x008d00,9, 0x008d34,2, 0x008d4c,4, 0x008d6c,11, 0x008dac,8, 0x008dd0,1, 0x008e04,1, 0x008e0c,13, 0x008e44,1, 0x008e54,3, 0x008e64,1, 0x008e6c,8, 0x008ea8,3, 0x008ec0,8, 0x008f00,6, 0x008f60,4, 0x008f80,8, 0x008fb8,8, 0x008fdc,10, 0x009008,14, 0x009080,1, 0x009088,18, 0x009100,9, 0x009134,2, 0x00914c,4, 0x00916c,11, 0x0091ac,8, 0x0091d0,1, 0x009204,1, 0x00920c,13, 0x009244,1, 0x009254,3, 0x009264,1, 0x00926c,8, 0x0092a8,3, 0x0092c0,8, 0x009300,6, 0x009360,4, 0x009380,8, 0x0093b8,8, 0x0093dc,10, 0x009408,14, 0x009480,1, 0x009488,18, 0x009500,9, 0x009534,2, 0x00954c,4, 0x00956c,11, 0x0095ac,8, 0x0095d0,1, 0x009604,1, 0x00960c,13, 0x009644,1, 0x009654,3, 0x009664,1, 0x00966c,8, 0x0096a8,3, 0x0096c0,8, 0x009700,6, 0x009760,4, 0x009780,8, 0x0097b8,8, 0x0097dc,10, 0x009808,14, 0x009880,1, 0x009888,18, 0x009900,9, 0x009934,2, 0x00994c,4, 0x00996c,11, 0x0099ac,8, 0x0099d0,1, 0x009a04,1, 0x009a0c,13, 0x009a44,1, 0x009a54,3, 0x009a64,1, 0x009a6c,8, 0x009aa8,3, 0x009ac0,8, 0x009b00,6, 0x009b60,4, 0x009b80,8, 0x009bb8,8, 0x009bdc,10, 0x009c08,14, 0x009c80,1, 0x009c88,18, 0x009d00,9, 0x009d34,2, 0x009d4c,4, 0x009d6c,11, 0x009dac,8, 0x009dd0,1, 0x009e04,1, 0x009e0c,13, 0x009e44,1, 0x009e54,3, 0x009e64,1, 0x009e6c,8, 0x009ea8,3, 0x009ec0,8, 0x009f00,6, 0x009f60,4, 0x009f80,8, 0x009fb8,8, 0x009fdc,10, 0x00a008,14, 0x00a080,1, 0x00a088,18, 0x00a100,9, 0x00a134,2, 0x00a14c,4, 0x00a16c,11, 0x00a1ac,8, 0x00a1d0,1, 0x00a204,1, 0x00a20c,13, 0x00a244,1, 0x00a254,3, 0x00a264,1, 0x00a26c,8, 0x00a2a8,3, 0x00a2c0,8, 0x00a300,6, 0x00a360,4, 0x00a380,8, 0x00a3b8,8, 0x00a3dc,10, 0x00a408,14, 0x00a480,1, 0x00a488,18, 0x00a500,9, 0x00a534,2, 0x00a54c,4, 0x00a56c,11, 0x00a5ac,8, 0x00a5d0,1, 0x00a604,1, 0x00a60c,13, 0x00a644,1, 0x00a654,3, 0x00a664,1, 0x00a66c,8, 0x00a6a8,3, 0x00a6c0,8, 0x00a700,6, 0x00a760,4, 0x00a780,8, 0x00a7b8,8, 0x00a7dc,10, 0x00a808,14, 0x00a880,1, 0x00a888,18, 0x00a900,9, 0x00a934,2, 0x00a94c,4, 0x00a96c,11, 0x00a9ac,8, 0x00a9d0,1, 0x00aa04,1, 0x00aa0c,13, 0x00aa44,1, 0x00aa54,3, 0x00aa64,1, 0x00aa6c,8, 0x00aaa8,3, 0x00aac0,8, 0x00ab00,6, 0x00ab60,4, 0x00ab80,8, 0x00abb8,8, 0x00abdc,10, 0x00ac08,14, 0x00ac80,1, 0x00ac88,18, 0x00ad00,9, 0x00ad34,2, 0x00ad4c,4, 0x00ad6c,11, 0x00adac,8, 0x00add0,1, 0x00ae04,1, 0x00ae0c,13, 0x00ae44,1, 0x00ae54,3, 0x00ae64,1, 0x00ae6c,8, 0x00aea8,3, 0x00aec0,8, 0x00af00,6, 0x00af60,4, 0x00af80,8, 0x00afb8,8, 0x00afdc,10, 0x00b008,14, 0x00b080,1, 0x00b088,18, 0x00b100,9, 0x00b134,2, 0x00b14c,4, 0x00b16c,11, 0x00b1ac,8, 0x00b1d0,1, 0x00b204,1, 0x00b20c,13, 0x00b244,1, 0x00b254,3, 0x00b264,1, 0x00b26c,8, 0x00b2a8,3, 0x00b2c0,8, 0x00b300,6, 0x00b360,4, 0x00b380,8, 0x00b3b8,8, 0x00b3dc,10, 0x00b408,14, 0x00b480,1, 0x00b488,18, 0x00b500,9, 0x00b534,2, 0x00b54c,4, 0x00b56c,11, 0x00b5ac,8, 0x00b5d0,1, 0x00b604,1, 0x00b60c,13, 0x00b644,1, 0x00b654,3, 0x00b664,1, 0x00b66c,8, 0x00b6a8,3, 0x00b6c0,8, 0x00b700,6, 0x00b760,4, 0x00b780,8, 0x00b7b8,8, 0x00b7dc,10, 0x00b808,14, 0x00b880,1, 0x00b888,18, 0x00b900,9, 0x00b934,2, 0x00b94c,4, 0x00b96c,11, 0x00b9ac,8, 0x00b9d0,1, 0x00ba04,1, 0x00ba0c,13, 0x00ba44,1, 0x00ba54,3, 0x00ba64,1, 0x00ba6c,8, 0x00baa8,3, 0x00bac0,8, 0x00bb00,6, 0x00bb60,4, 0x00bb80,8, 0x00bbb8,8, 0x00bbdc,10, 0x00bc08,14, 0x00bc80,1, 0x00bc88,18, 0x00bd00,9, 0x00bd34,2, 0x00bd4c,4, 0x00bd6c,11, 0x00bdac,8, 0x00bdd0,1, 0x00be04,1, 0x00be0c,13, 0x00be44,1, 0x00be54,3, 0x00be64,1, 0x00be6c,8, 0x00bea8,3, 0x00bec0,8, 0x00bf00,6, 0x00bf60,4, 0x00bf80,8, 0x00bfb8,8, 0x00bfdc,10, 0x00c008,14, 0x00c080,1, 0x00c088,18, 0x00c100,9, 0x00c134,2, 0x00c14c,4, 0x00c16c,11, 0x00c1ac,8, 0x00c1d0,1, 0x00c204,1, 0x00c20c,13, 0x00c244,1, 0x00c254,3, 0x00c264,1, 0x00c26c,8, 0x00c2a8,3, 0x00c2c0,8, 0x00c300,6, 0x00c360,4, 0x00c380,8, 0x00c3b8,8, 0x00c3dc,10, 0x00c408,14, 0x00c480,1, 0x00c488,18, 0x00c500,9, 0x00c534,2, 0x00c54c,4, 0x00c56c,11, 0x00c5ac,8, 0x00c5d0,1, 0x00c604,1, 0x00c60c,13, 0x00c644,1, 0x00c654,3, 0x00c664,1, 0x00c66c,8, 0x00c6a8,3, 0x00c6c0,8, 0x00c700,6, 0x00c760,4, 0x00c780,8, 0x00c7b8,8, 0x00c7dc,10, 0x00c808,14, 0x00c880,1, 0x00c888,18, 0x00c900,9, 0x00c934,2, 0x00c94c,4, 0x00c96c,11, 0x00c9ac,8, 0x00c9d0,1, 0x00ca04,1, 0x00ca0c,13, 0x00ca44,1, 0x00ca54,3, 0x00ca64,1, 0x00ca6c,8, 0x00caa8,3, 0x00cac0,8, 0x00cb00,6, 0x00cb60,4, 0x00cb80,8, 0x00cbb8,8, 0x00cbdc,10, 0x00cc08,14, 0x00cc80,1, 0x00cc88,18, 0x00cd00,9, 0x00cd34,2, 0x00cd4c,4, 0x00cd6c,11, 0x00cdac,8, 0x00cdd0,1, 0x00ce04,1, 0x00ce0c,13, 0x00ce44,1, 0x00ce54,3, 0x00ce64,1, 0x00ce6c,8, 0x00cea8,3, 0x00cec0,8, 0x00cf00,6, 0x00cf60,4, 0x00cf80,8, 0x00cfb8,8, 0x00cfdc,10, 0x00d008,14, 0x00d080,1, 0x00d088,18, 0x00d100,9, 0x00d134,2, 0x00d14c,4, 0x00d16c,11, 0x00d1ac,8, 0x00d1d0,1, 0x00d204,1, 0x00d20c,13, 0x00d244,1, 0x00d254,3, 0x00d264,1, 0x00d26c,8, 0x00d2a8,3, 0x00d2c0,8, 0x00d300,6, 0x00d360,4, 0x00d380,8, 0x00d3b8,8, 0x00d3dc,10, 0x00d428,1, 0x00d450,1, 0x00d478,1, 0x00d4a0,1, 0x00d5ac,1, 0x00d5d8,4, 0x00d600,6, 0x00d620,6, 0x00d640,3, 0x00d800,13, 0x00d840,6, 0x00d860,3, 0x00d880,2, 0x00d904,2, 0x00d918,1, 0x00d940,1, 0x010000,1, 0x010008,10, 0x010034,16, 0x010080,33, 0x010110,5, 0x010128,2, 0x010134,1, 0x01013c,13, 0x010174,1, 0x01017c,7, 0x0101a0,17, 0x0101e8,3, 0x010200,1, 0x010208,10, 0x010234,16, 0x010280,33, 0x010310,5, 0x010328,2, 0x010334,1, 0x01033c,13, 0x010374,1, 0x01037c,7, 0x0103a0,17, 0x0103e8,3, 0x010400,1, 0x010408,10, 0x010434,16, 0x010480,33, 0x010510,5, 0x010528,2, 0x010534,1, 0x01053c,13, 0x010574,1, 0x01057c,7, 0x0105a0,17, 0x0105e8,3, 0x010600,1, 0x010608,10, 0x010634,16, 0x010680,33, 0x010710,5, 0x010728,2, 0x010734,1, 0x01073c,13, 0x010774,1, 0x01077c,7, 0x0107a0,17, 0x0107e8,3, 0x010800,1, 0x010808,10, 0x010834,16, 0x010880,33, 0x010910,5, 0x010928,2, 0x010934,1, 0x01093c,13, 0x010974,1, 0x01097c,7, 0x0109a0,17, 0x0109e8,3, 0x010a00,1, 0x010a08,10, 0x010a34,16, 0x010a80,33, 0x010b10,5, 0x010b28,2, 0x010b34,1, 0x010b3c,13, 0x010b74,1, 0x010b7c,7, 0x010ba0,17, 0x010be8,3, 0x010c00,1, 0x010c08,10, 0x010c34,16, 0x010c80,33, 0x010d10,5, 0x010d28,2, 0x010d34,1, 0x010d3c,13, 0x010d74,1, 0x010d7c,7, 0x010da0,17, 0x010de8,3, 0x010e00,1, 0x010e08,10, 0x010e34,16, 0x010e80,33, 0x010f10,5, 0x010f28,2, 0x010f34,1, 0x010f3c,13, 0x010f74,1, 0x010f7c,7, 0x010fa0,17, 0x010fe8,3, 0x011000,1, 0x011008,10, 0x011034,16, 0x011080,33, 0x011110,5, 0x011128,2, 0x011134,1, 0x01113c,13, 0x011174,1, 0x01117c,7, 0x0111a0,17, 0x0111e8,3, 0x011200,1, 0x011208,10, 0x011234,16, 0x011280,33, 0x011310,5, 0x011328,2, 0x011334,1, 0x01133c,13, 0x011374,1, 0x01137c,7, 0x0113a0,17, 0x0113e8,3, 0x011400,1, 0x011408,10, 0x011434,16, 0x011480,33, 0x011510,5, 0x011528,2, 0x011534,1, 0x01153c,13, 0x011574,1, 0x01157c,7, 0x0115a0,17, 0x0115e8,3, 0x011600,1, 0x011608,10, 0x011634,16, 0x011680,33, 0x011710,5, 0x011728,2, 0x011734,1, 0x01173c,13, 0x011774,1, 0x01177c,7, 0x0117a0,17, 0x0117e8,3, 0x011800,1, 0x011808,10, 0x011834,16, 0x011880,33, 0x011910,5, 0x011928,2, 0x011934,1, 0x01193c,13, 0x011974,1, 0x01197c,7, 0x0119a0,17, 0x0119e8,3, 0x011a00,1, 0x011a08,10, 0x011a34,16, 0x011a80,33, 0x011b10,5, 0x011b28,2, 0x011b34,1, 0x011b3c,13, 0x011b74,1, 0x011b7c,7, 0x011ba0,17, 0x011be8,3, 0x011c00,1, 0x011c08,10, 0x011c34,16, 0x011c80,33, 0x011d10,5, 0x011d28,2, 0x011d34,1, 0x011d3c,13, 0x011d74,1, 0x011d7c,7, 0x011da0,17, 0x011de8,3, 0x011e00,1, 0x011e08,10, 0x011e34,16, 0x011e80,33, 0x011f10,5, 0x011f28,2, 0x011f34,1, 0x011f3c,13, 0x011f74,1, 0x011f7c,7, 0x011fa0,17, 0x011fe8,3, 0x012000,1, 0x012008,10, 0x012034,16, 0x012080,33, 0x012110,5, 0x012128,2, 0x012134,1, 0x01213c,13, 0x012174,1, 0x01217c,7, 0x0121a0,17, 0x0121e8,3, 0x012200,1, 0x012208,10, 0x012234,16, 0x012280,33, 0x012310,5, 0x012328,2, 0x012334,1, 0x01233c,13, 0x012374,1, 0x01237c,7, 0x0123a0,17, 0x0123e8,3, 0x012800,2, 0x01280c,37, 0x0128a4,64, 0x012a00,84, 0x012b54,2, 0x012b7c,1, 0x012b84,1, 0x012b8c,4, 0x012ba4,1, 0x012bac,75, 0x012d00,60, 0x012dfc,7, 0x012e20,6, 0x012e40,6, 0x012e60,6, 0x012e80,3, 0x012f00,14, 0x012f40,1, 0x013000,3, 0x013028,3, 0x013050,3, 0x013078,3, 0x0130a0,6, 0x0131ac,1, 0x0131d8,4, 0x013200,6, 0x013220,6, 0x013240,6, 0x013260,6, 0x013280,6, 0x0132a0,6, 0x0132c0,3, 0x013400,6, 0x013420,3, 0x013440,3, 0x013500,13, 0x013540,1, 0x013900,1, 0x014000,1, 0x014008,10, 0x014034,16, 0x014080,33, 0x014110,5, 0x014128,2, 0x014134,1, 0x01413c,13, 0x014174,1, 0x01417c,7, 0x0141a0,17, 0x0141e8,3, 0x014200,1, 0x014208,10, 0x014234,16, 0x014280,33, 0x014310,5, 0x014328,2, 0x014334,1, 0x01433c,13, 0x014374,1, 0x01437c,7, 0x0143a0,17, 0x0143e8,3, 0x014400,1, 0x014408,10, 0x014434,16, 0x014480,33, 0x014510,5, 0x014528,2, 0x014534,1, 0x01453c,13, 0x014574,1, 0x01457c,7, 0x0145a0,17, 0x0145e8,3, 0x014600,1, 0x014608,10, 0x014634,16, 0x014680,33, 0x014710,5, 0x014728,2, 0x014734,1, 0x01473c,13, 0x014774,1, 0x01477c,7, 0x0147a0,17, 0x0147e8,3, 0x014800,1, 0x014808,10, 0x014834,16, 0x014880,33, 0x014910,5, 0x014928,2, 0x014934,1, 0x01493c,13, 0x014974,1, 0x01497c,7, 0x0149a0,17, 0x0149e8,3, 0x014a00,1, 0x014a08,10, 0x014a34,16, 0x014a80,33, 0x014b10,5, 0x014b28,2, 0x014b34,1, 0x014b3c,13, 0x014b74,1, 0x014b7c,7, 0x014ba0,17, 0x014be8,3, 0x014c00,1, 0x014c08,10, 0x014c34,16, 0x014c80,33, 0x014d10,5, 0x014d28,2, 0x014d34,1, 0x014d3c,13, 0x014d74,1, 0x014d7c,7, 0x014da0,17, 0x014de8,3, 0x014e00,1, 0x014e08,10, 0x014e34,16, 0x014e80,33, 0x014f10,5, 0x014f28,2, 0x014f34,1, 0x014f3c,13, 0x014f74,1, 0x014f7c,7, 0x014fa0,17, 0x014fe8,3, 0x015000,1, 0x015008,10, 0x015034,16, 0x015080,33, 0x015110,5, 0x015128,2, 0x015134,1, 0x01513c,13, 0x015174,1, 0x01517c,7, 0x0151a0,17, 0x0151e8,3, 0x015200,1, 0x015208,10, 0x015234,16, 0x015280,33, 0x015310,5, 0x015328,2, 0x015334,1, 0x01533c,13, 0x015374,1, 0x01537c,7, 0x0153a0,17, 0x0153e8,3, 0x015400,1, 0x015408,10, 0x015434,16, 0x015480,33, 0x015510,5, 0x015528,2, 0x015534,1, 0x01553c,13, 0x015574,1, 0x01557c,7, 0x0155a0,17, 0x0155e8,3, 0x015600,1, 0x015608,10, 0x015634,16, 0x015680,33, 0x015710,5, 0x015728,2, 0x015734,1, 0x01573c,13, 0x015774,1, 0x01577c,7, 0x0157a0,17, 0x0157e8,3, 0x015800,1, 0x015808,10, 0x015834,16, 0x015880,33, 0x015910,5, 0x015928,2, 0x015934,1, 0x01593c,13, 0x015974,1, 0x01597c,7, 0x0159a0,17, 0x0159e8,3, 0x015a00,1, 0x015a08,10, 0x015a34,16, 0x015a80,33, 0x015b10,5, 0x015b28,2, 0x015b34,1, 0x015b3c,13, 0x015b74,1, 0x015b7c,7, 0x015ba0,17, 0x015be8,3, 0x015c00,1, 0x015c08,10, 0x015c34,16, 0x015c80,33, 0x015d10,5, 0x015d28,2, 0x015d34,1, 0x015d3c,13, 0x015d74,1, 0x015d7c,7, 0x015da0,17, 0x015de8,3, 0x015e00,1, 0x015e08,10, 0x015e34,16, 0x015e80,33, 0x015f10,5, 0x015f28,2, 0x015f34,1, 0x015f3c,13, 0x015f74,1, 0x015f7c,7, 0x015fa0,17, 0x015fe8,3, 0x016000,1, 0x016008,10, 0x016034,16, 0x016080,33, 0x016110,5, 0x016128,2, 0x016134,1, 0x01613c,13, 0x016174,1, 0x01617c,7, 0x0161a0,17, 0x0161e8,3, 0x016200,1, 0x016208,10, 0x016234,16, 0x016280,33, 0x016310,5, 0x016328,2, 0x016334,1, 0x01633c,13, 0x016374,1, 0x01637c,7, 0x0163a0,17, 0x0163e8,3, 0x016800,2, 0x01680c,37, 0x0168a4,64, 0x016a00,84, 0x016b54,2, 0x016b7c,1, 0x016b84,1, 0x016b8c,4, 0x016ba4,1, 0x016bac,75, 0x016d00,60, 0x016dfc,7, 0x016e20,6, 0x016e40,6, 0x016e60,6, 0x016e80,3, 0x016f00,14, 0x016f40,1, 0x017000,3, 0x017028,3, 0x017050,3, 0x017078,3, 0x0170a0,6, 0x0171ac,1, 0x0171d8,4, 0x017200,6, 0x017220,6, 0x017240,6, 0x017260,6, 0x017280,6, 0x0172a0,6, 0x0172c0,3, 0x017400,6, 0x017420,3, 0x017440,3, 0x017500,13, 0x017540,1, 0x017900,1, 0x018000,9, 0x018030,8, 0x018080,9, 0x0180b0,8, 0x018100,9, 0x018130,8, 0x018180,9, 0x0181b0,8, 0x018200,9, 0x018230,8, 0x018280,9, 0x0182b0,8, 0x018300,9, 0x018330,8, 0x018380,9, 0x0183b0,8, 0x018400,9, 0x018430,8, 0x018480,9, 0x0184b0,8, 0x018500,9, 0x018530,8, 0x018580,9, 0x0185b0,8, 0x018600,9, 0x018630,8, 0x018680,9, 0x0186b0,8, 0x018700,9, 0x018730,8, 0x018780,9, 0x0187b0,8, 0x018800,9, 0x018830,8, 0x018880,9, 0x0188b0,8, 0x018900,9, 0x018930,8, 0x018980,9, 0x0189b0,8, 0x018a00,9, 0x018a30,8, 0x018a80,9, 0x018ab0,8, 0x018b00,9, 0x018b30,8, 0x018b80,9, 0x018bb0,8, 0x018c00,9, 0x018c30,8, 0x018c80,9, 0x018cb0,8, 0x018d00,9, 0x018d30,8, 0x018d80,9, 0x018db0,8, 0x018e00,9, 0x018e30,8, 0x018e80,9, 0x018eb0,8, 0x018f00,9, 0x018f30,8, 0x018f80,9, 0x018fb0,8, 0x019000,9, 0x019030,8, 0x019080,9, 0x0190b0,8, 0x019100,9, 0x019130,8, 0x019180,9, 0x0191b0,8, 0x019200,6, 0x019220,3, 0x019230,10, 0x019260,3, 0x019270,10, 0x0192a0,3, 0x0192b0,10, 0x0192e0,3, 0x0192f0,10, 0x019320,3, 0x019330,10, 0x019360,3, 0x019370,10, 0x0193a0,3, 0x0193b0,10, 0x0193e0,3, 0x0193f0,10, 0x019420,3, 0x019430,10, 0x019460,3, 0x019470,10, 0x0194a0,3, 0x0194b0,10, 0x0194e0,3, 0x0194f0,10, 0x019520,3, 0x019530,10, 0x019560,3, 0x019570,10, 0x0195a0,3, 0x0195b0,10, 0x0195e0,3, 0x0195f0,10, 0x019620,3, 0x019630,10, 0x019660,3, 0x019670,10, 0x0196a0,3, 0x0196b0,10, 0x0196e0,3, 0x0196f0,10, 0x019720,3, 0x019730,10, 0x019760,3, 0x019770,10, 0x0197a0,3, 0x0197b0,10, 0x0197e0,3, 0x0197f0,10, 0x019820,3, 0x019830,10, 0x019860,3, 0x019870,10, 0x0198a0,3, 0x0198b0,10, 0x0198e0,3, 0x0198f0,10, 0x019920,3, 0x019930,10, 0x019960,3, 0x019970,10, 0x0199a0,3, 0x0199b0,10, 0x0199e0,3, 0x0199f0,10, 0x019a20,3, 0x019a30,10, 0x019a60,3, 0x019a70,10, 0x019aa0,3, 0x019ab0,10, 0x019ae0,3, 0x019af0,4, 0x01a400,13, 0x01a440,6, 0x01a460,3, 0x01a480,8, 0x01a4b0,7, 0x01a4d0,3, 0x01a500,6, 0x01a520,6, 0x01a540,6, 0x01a560,6, 0x01a580,6, 0x01a5a0,6, 0x01a5c0,6, 0x01a5e0,6, 0x01a600,6, 0x01a620,6, 0x01a640,6, 0x01a660,6, 0x01a680,6, 0x01a6a0,6, 0x01a6c0,6, 0x01a6e0,6, 0x01a700,6, 0x01a720,6, 0x01a740,6, 0x01a760,6, 0x01a780,6, 0x01a7a0,6, 0x01a7c0,6, 0x01a7e0,6, 0x01a800,6, 0x01a820,6, 0x01a840,6, 0x01a860,6, 0x01a880,6, 0x01a8a0,6, 0x01a8c0,6, 0x01a8e0,6, 0x01a900,6, 0x01a920,6, 0x01a940,6, 0x01a960,6, 0x01ab00,6, 0x01ab20,3, 0x01ab30,10, 0x01ab60,3, 0x01ab70,10, 0x01aba0,3, 0x01abb0,10, 0x01abe0,3, 0x01abf0,9, 0x01acf4,3, 0x01b000,38, 0x01b100,37, 0x01b200,18, 0x01b400,6, 0x01b420,6, 0x01b440,6, 0x01b460,6, 0x01b480,6, 0x01b4a0,6, 0x01b4c0,6, 0x01b4e0,6, 0x01b500,6, 0x01b520,6, 0x01b540,6, 0x01b560,6, 0x01b580,6, 0x01b5a0,6, 0x01b5c0,6, 0x01b5e0,6, 0x01b600,6, 0x01b620,6, 0x01b640,3, 0x01b800,6, 0x01b820,6, 0x01b840,6, 0x01b860,6, 0x01b880,6, 0x01b8a0,6, 0x01b8c0,6, 0x01b8e0,6, 0x01b900,6, 0x01b920,6, 0x01b940,6, 0x01b960,6, 0x01b980,6, 0x01b9a0,6, 0x01b9c0,6, 0x01b9e0,6, 0x01ba00,6, 0x01ba20,6, 0x01ba40,6, 0x01ba60,3, 0x01bc00,2, 0x01c000,22, 0x01c060,3, 0x01c070,26, 0x01c0e0,3, 0x01c0f0,26, 0x01c160,3, 0x01c170,26, 0x01c1e0,3, 0x01c1f0,26, 0x01c260,3, 0x01c270,26, 0x01c2e0,3, 0x01c2f0,26, 0x01c360,3, 0x01c370,26, 0x01c3e0,3, 0x01c3f0,26, 0x01c460,3, 0x01c470,26, 0x01c4e0,3, 0x01c4f0,26, 0x01c560,3, 0x01c570,26, 0x01c5e0,3, 0x01c5f0,26, 0x01c660,3, 0x01c670,26, 0x01c6e0,3, 0x01c6f0,26, 0x01c760,3, 0x01c770,26, 0x01c7e0,3, 0x01c7f0,26, 0x01c860,3, 0x01c870,26, 0x01c8e0,3, 0x01c8f0,26, 0x01c960,3, 0x01c970,26, 0x01c9e0,3, 0x01c9f0,26, 0x01ca60,3, 0x01ca70,26, 0x01cae0,3, 0x01caf0,26, 0x01cb60,3, 0x01cb70,26, 0x01cbe0,3, 0x01cbf0,26, 0x01cc60,3, 0x01cc70,26, 0x01cce0,3, 0x01ccf0,26, 0x01cd60,3, 0x01cd70,26, 0x01cde0,3, 0x01cdf0,26, 0x01ce60,3, 0x01ce70,26, 0x01cee0,3, 0x01cef0,26, 0x01cf60,3, 0x01cf70,26, 0x01cfe0,3, 0x01cff0,26, 0x01d060,3, 0x01d070,26, 0x01d0e0,3, 0x01d0f0,26, 0x01d160,3, 0x01d170,26, 0x01d1e0,3, 0x01d1f0,26, 0x01d260,3, 0x01d270,4, 0x01d400,2, 0x01d800,6, 0x01d820,4, 0x01d840,8, 0x01d87c,7, 0x01d8a0,4, 0x01d8c0,8, 0x01d8fc,7, 0x01d920,4, 0x01d940,8, 0x01d97c,7, 0x01d9a0,4, 0x01d9c0,8, 0x01d9fc,7, 0x01da20,4, 0x01da40,8, 0x01da7c,7, 0x01daa0,4, 0x01dac0,8, 0x01dafc,7, 0x01db20,4, 0x01db40,8, 0x01db7c,7, 0x01dba0,4, 0x01dbc0,8, 0x01dbfc,7, 0x01dc20,4, 0x01dc40,8, 0x01dc7c,7, 0x01dca0,4, 0x01dcc0,8, 0x01dcfc,7, 0x01dd20,4, 0x01dd40,8, 0x01dd7c,7, 0x01dda0,4, 0x01ddc0,8, 0x01ddfc,7, 0x01de20,4, 0x01de40,8, 0x01de7c,7, 0x01dea0,4, 0x01dec0,8, 0x01defc,7, 0x01df20,4, 0x01df40,8, 0x01df7c,7, 0x01dfa0,4, 0x01dfc0,8, 0x01dffc,7, 0x01e020,4, 0x01e040,8, 0x01e07c,7, 0x01e0a0,4, 0x01e0c0,8, 0x01e0fc,7, 0x01e120,4, 0x01e140,8, 0x01e17c,7, 0x01e1a0,4, 0x01e1c0,8, 0x01e1fc,7, 0x01e220,4, 0x01e240,8, 0x01e27c,7, 0x01e2a0,4, 0x01e2c0,8, 0x01e2fc,7, 0x01e320,4, 0x01e340,8, 0x01e37c,7, 0x01e3a0,4, 0x01e3c0,8, 0x01e3fc,7, 0x01e420,4, 0x01e440,8, 0x01e47c,7, 0x01e4a0,4, 0x01e4c0,8, 0x01e4fc,7, 0x01e520,4, 0x01e540,8, 0x01e57c,7, 0x01e5a0,4, 0x01e5c0,8, 0x01e5fc,7, 0x01e620,4, 0x01e640,8, 0x01e67c,7, 0x01e6a0,4, 0x01e6c0,8, 0x01e6fc,7, 0x01e720,4, 0x01e740,8, 0x01e77c,7, 0x01e7a0,4, 0x01e7c0,8, 0x01e7fc,7, 0x01e820,4, 0x01e840,8, 0x01e87c,7, 0x01e8a0,4, 0x01e8c0,8, 0x01e8fc,7, 0x01e920,4, 0x01e940,8, 0x01e97c,7, 0x01e9a0,4, 0x01e9c0,8, 0x01e9fc,7, 0x01ea20,4, 0x01ea40,8, 0x01ea7c,7, 0x01eaa0,4, 0x01eac0,8, 0x01eafc,1, 0x01f408,13, 0x01f440,1, 0x01f448,1, 0x01f45c,4, 0x01f470,10, 0x01f4a0,6, 0x01f4c0,6, 0x01f4e0,3, 0x01f800,4, 0x01f828,4, 0x01f850,4, 0x01f878,4, 0x01f8a0,5, 0x01f9a8,2, 0x01f9d8,4, 0x01fa00,6, 0x01fa20,6, 0x01fa40,6, 0x01fa60,6, 0x01fa80,6, 0x01faa0,6, 0x01fac0,6, 0x01fae0,6, 0x01fb00,3, 0x01fc00,13, 0x01fc40,3, 0x01fc50,6, 0x01fc6c,1, 0x01fc80,6, 0x01fca0,6, 0x01fcc0,6, 0x01fce0,3, 0x01fd00,1, 0x01fd80,6, 0x01fda0,6, 0x01fdc0,6, 0x01fde0,3, 0x01fe00,1, 0x01fe08,4, 0x01fffc,1, 0x049000,6, 0x049020,20, 0x049080,10, 0x0490b0,1, 0x0490c0,3, 0x0490d0,3, 0x049100,2, 0x049110,3, 0x049120,4, 0x049140,7, 0x049160,7, 0x049180,3, 0x049190,1, 0x049200,6, 0x049220,20, 0x049280,10, 0x0492b0,1, 0x0492c0,3, 0x0492d0,3, 0x049300,2, 0x049310,3, 0x049320,4, 0x049340,7, 0x049360,7, 0x049380,3, 0x049390,1, 0x049400,6, 0x049420,20, 0x049480,10, 0x0494b0,1, 0x0494c0,3, 0x0494d0,3, 0x049500,2, 0x049510,3, 0x049520,4, 0x049540,7, 0x049560,7, 0x049580,3, 0x049590,1, 0x049608,2, 0x049620,1, 0x049648,2, 0x049660,1, 0x049688,2, 0x0496a0,1, 0x0496c8,2, 0x0496e0,1, 0x049708,2, 0x049720,1, 0x049748,2, 0x049760,1, 0x049788,2, 0x0497a0,1, 0x0497c8,2, 0x0497e0,1, 0x049804,3, 0x049814,1, 0x04981c,26, 0x049890,2, 0x0498b0,2, 0x0498d0,1, 0x0498f0,5, 0x049a00,13, 0x049a40,2, 0x049a4c,4, 0x050400,11, 0x050430,8, 0x050460,3, 0x0504a0,3, 0x050700,13, 0x050740,7, 0x050760,7, 0x051800,162, 0x051a90,2, 0x051aa0,2, 0x051c00,8, 0x051d00,26, 0x051d84,1, 0x051d94,9, 0x051e00,16, 0x058400,12, 0x058440,7, 0x058460,2, 0x058480,12, 0x0584c0,7, 0x0584e0,2, 0x058500,6, 0x058520,6, 0x058540,3, 0x058584,1, 0x058590,9, 0x0585e0,7, 0x058600,10, 0x058640,10, 0x058680,15, 0x0586d8,9, 0x058800,6, 0x058820,6, 0x058840,6, 0x058860,6, 0x058880,6, 0x0588a0,6, 0x0588c0,6, 0x0588e0,6, 0x058900,3, 0x058a00,6, 0x058b00,6, 0x058b20,6, 0x058b40,6, 0x058b60,6, 0x058b80,6, 0x058ba0,6, 0x058bc0,3, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c20,8, 0x060f80,6, 0x060fa0,7, 0x060fd8,2, 0x060fe4,1, 0x060ff0,10, 0x061020,16, 0x061084,1, 0x0610c0,16, 0x061204,1, 0x061220,8, 0x061250,3, 0x061260,5, 0x061280,6, 0x0612a0,6, 0x061300,3, 0x061310,2, 0x061320,2, 0x061330,1, 0x061340,3, 0x062000,16, 0x062060,7, 0x062080,5, 0x062100,2, 0x06210c,2, 0x062118,1, 0x062120,1, 0x062180,10, 0x0621b0,2, 0x0621c0,2, 0x0621d0,5, 0x062200,3, 0x062210,3, 0x062280,4, 0x063600,5, 0x063620,14, 0x063660,5, 0x063684,1, 0x06368c,10, 0x063700,1, 0x063800,5, 0x063820,12, 0x063860,5, 0x063884,1, 0x06388c,10, 0x063904,1, 0x06390c,5, 0x063940,1, 0x063950,2, 0x0639fc,1, 0x064000,5, 0x064020,1, 0x064030,1, 0x064040,1, 0x064050,1, 0x064060,1, 0x064070,1, 0x064080,1, 0x064090,1, 0x0640a0,1, 0x0640b0,1, 0x0640c0,1, 0x0640d0,1, 0x0640e0,1, 0x0640f0,1, 0x064100,1, 0x064110,1, 0x064120,1, 0x064130,1, 0x064140,1, 0x064150,1, 0x064160,1, 0x064170,1, 0x064180,1, 0x064190,1, 0x0641a0,1, 0x0641b0,1, 0x0641c0,1, 0x0641d0,1, 0x0641e0,1, 0x0641f0,1, 0x064200,1, 0x064210,1, 0x064220,1, 0x064230,1, 0x064240,1, 0x064250,1, 0x064260,1, 0x064270,1, 0x064280,1, 0x064290,1, 0x0642a0,1, 0x0642b0,1, 0x0642c0,1, 0x0642d0,1, 0x0642e0,1, 0x0642f0,1, 0x064300,1, 0x064310,1, 0x064320,1, 0x064330,1, 0x064340,1, 0x064350,1, 0x064360,1, 0x064370,1, 0x064380,1, 0x064390,1, 0x0643a0,1, 0x0643b0,1, 0x0643c0,1, 0x0643d0,1, 0x0643e0,1, 0x0643f0,1, 0x064400,1, 0x064410,1, 0x064420,1, 0x064430,1, 0x064440,1, 0x064450,1, 0x064460,1, 0x064470,1, 0x064480,1, 0x064490,1, 0x0644a0,1, 0x0644b0,1, 0x0644c0,1, 0x0644d0,1, 0x0644e0,1, 0x0644f0,1, 0x064500,1, 0x064510,1, 0x064520,1, 0x064530,1, 0x064540,1, 0x064550,1, 0x064560,1, 0x064570,1, 0x064580,1, 0x064590,1, 0x0645a0,1, 0x0645b0,1, 0x0645c0,1, 0x0645d0,1, 0x0645e0,1, 0x0645f0,1, 0x064600,1, 0x064610,1, 0x064620,1, 0x064630,1, 0x064640,1, 0x064650,1, 0x064660,1, 0x064670,1, 0x064680,1, 0x064690,1, 0x0646a0,1, 0x0646b0,1, 0x0646c0,1, 0x0646d0,1, 0x0646e0,1, 0x0646f0,1, 0x064700,1, 0x064710,1, 0x064720,1, 0x064730,1, 0x064740,1, 0x064750,1, 0x064760,1, 0x064770,1, 0x064780,1, 0x064790,1, 0x0647a0,1, 0x0647b0,1, 0x0647c0,1, 0x0647d0,1, 0x0647e0,1, 0x0647f0,1, 0x064800,1, 0x064810,1, 0x064820,1, 0x064830,1, 0x064840,1, 0x064850,1, 0x064860,1, 0x064870,1, 0x064880,1, 0x064890,1, 0x0648a0,1, 0x0648b0,1, 0x0648c0,1, 0x0648d0,1, 0x0648e0,1, 0x0648f0,1, 0x064900,1, 0x064910,1, 0x064920,1, 0x064930,1, 0x064940,1, 0x064950,1, 0x064960,1, 0x064970,1, 0x064980,1, 0x064990,1, 0x0649a0,1, 0x0649b0,1, 0x0649c0,1, 0x0649d0,1, 0x0649e0,1, 0x0649f0,1, 0x064a00,1, 0x064a10,1, 0x064a20,1, 0x064a30,1, 0x064a40,1, 0x064a50,1, 0x064a60,1, 0x064a70,1, 0x064a80,1, 0x064a90,1, 0x064aa0,1, 0x064ab0,1, 0x064ac0,1, 0x064ad0,1, 0x064ae0,1, 0x064af0,1, 0x064b00,1, 0x064b10,1, 0x064b20,1, 0x064b30,1, 0x064b40,1, 0x064b50,1, 0x064b60,1, 0x064b70,1, 0x064b80,1, 0x064b90,1, 0x064ba0,1, 0x064bb0,1, 0x064bc0,1, 0x064bd0,1, 0x064be0,1, 0x064bf0,1, 0x064c00,1, 0x064c10,1, 0x064c20,1, 0x064c30,1, 0x064c40,1, 0x064c50,1, 0x064c60,1, 0x064c70,1, 0x064c80,1, 0x064c90,1, 0x064ca0,1, 0x064cb0,1, 0x064cc0,1, 0x064cd0,1, 0x064ce0,1, 0x064cf0,1, 0x064d00,1, 0x064d10,1, 0x064d20,1, 0x064d30,1, 0x064d40,1, 0x064d50,1, 0x064d60,1, 0x064d70,1, 0x064d80,1, 0x064d90,1, 0x064da0,1, 0x064db0,1, 0x064dc0,1, 0x064dd0,1, 0x064de0,1, 0x064df0,1, 0x064e00,1, 0x064e10,1, 0x064e20,1, 0x064e30,1, 0x064e40,1, 0x064e50,1, 0x064e60,1, 0x064e70,1, 0x064e80,1, 0x064e90,1, 0x064ea0,1, 0x064eb0,1, 0x064ec0,1, 0x064ed0,1, 0x064ee0,1, 0x064ef0,1, 0x064f00,1, 0x064f10,1, 0x064f20,1, 0x064f30,1, 0x064f40,1, 0x064f50,1, 0x064f60,1, 0x064f70,1, 0x064f80,1, 0x064f90,1, 0x064fa0,1, 0x064fb0,1, 0x064fc0,1, 0x064fd0,1, 0x064fe0,1, 0x064ff0,1, 0x065000,8, 0x066000,5, 0x066020,1, 0x066030,1, 0x066040,1, 0x066050,1, 0x066060,1, 0x066070,1, 0x066080,1, 0x066090,1, 0x0660a0,1, 0x0660b0,1, 0x0660c0,1, 0x0660d0,1, 0x0660e0,1, 0x0660f0,1, 0x066100,1, 0x066110,1, 0x066120,1, 0x066130,1, 0x066140,1, 0x066150,1, 0x066160,1, 0x066170,1, 0x066180,1, 0x066190,1, 0x0661a0,1, 0x0661b0,1, 0x0661c0,1, 0x0661d0,1, 0x0661e0,1, 0x0661f0,1, 0x066200,1, 0x066210,1, 0x066220,1, 0x066230,1, 0x066240,1, 0x066250,1, 0x066260,1, 0x066270,1, 0x066280,1, 0x066290,1, 0x0662a0,1, 0x0662b0,1, 0x0662c0,1, 0x0662d0,1, 0x0662e0,1, 0x0662f0,1, 0x066300,1, 0x066310,1, 0x066320,1, 0x066330,1, 0x066340,1, 0x066350,1, 0x066360,1, 0x066370,1, 0x066380,1, 0x066390,1, 0x0663a0,1, 0x0663b0,1, 0x0663c0,1, 0x0663d0,1, 0x0663e0,1, 0x0663f0,1, 0x066400,1, 0x066410,1, 0x066420,1, 0x066430,1, 0x066440,1, 0x066450,1, 0x066460,1, 0x066470,1, 0x066480,1, 0x066490,1, 0x0664a0,1, 0x0664b0,1, 0x0664c0,1, 0x0664d0,1, 0x0664e0,1, 0x0664f0,1, 0x066500,1, 0x066510,1, 0x066520,1, 0x066530,1, 0x066540,1, 0x066550,1, 0x066560,1, 0x066570,1, 0x066580,1, 0x066590,1, 0x0665a0,1, 0x0665b0,1, 0x0665c0,1, 0x0665d0,1, 0x0665e0,1, 0x0665f0,1, 0x066600,1, 0x066610,1, 0x066620,1, 0x066630,1, 0x066640,1, 0x066650,1, 0x066660,1, 0x066670,1, 0x066680,1, 0x066690,1, 0x0666a0,1, 0x0666b0,1, 0x0666c0,1, 0x0666d0,1, 0x0666e0,1, 0x0666f0,1, 0x066700,1, 0x066710,1, 0x066720,1, 0x066730,1, 0x066740,1, 0x066750,1, 0x066760,1, 0x066770,1, 0x066780,1, 0x066790,1, 0x0667a0,1, 0x0667b0,1, 0x0667c0,1, 0x0667d0,1, 0x0667e0,1, 0x0667f0,1, 0x066800,1, 0x066810,1, 0x066820,1, 0x066830,1, 0x066840,1, 0x066850,1, 0x066860,1, 0x066870,1, 0x066880,1, 0x066890,1, 0x0668a0,1, 0x0668b0,1, 0x0668c0,1, 0x0668d0,1, 0x0668e0,1, 0x0668f0,1, 0x066900,1, 0x066910,1, 0x066920,1, 0x066930,1, 0x066940,1, 0x066950,1, 0x066960,1, 0x066970,1, 0x066980,1, 0x066990,1, 0x0669a0,1, 0x0669b0,1, 0x0669c0,1, 0x0669d0,1, 0x0669e0,1, 0x0669f0,1, 0x066a00,1, 0x066a10,1, 0x066a20,1, 0x066a30,1, 0x066a40,1, 0x066a50,1, 0x066a60,1, 0x066a70,1, 0x066a80,1, 0x066a90,1, 0x066aa0,1, 0x066ab0,1, 0x066ac0,1, 0x066ad0,1, 0x066ae0,1, 0x066af0,1, 0x066b00,1, 0x066b10,1, 0x066b20,1, 0x066b30,1, 0x066b40,1, 0x066b50,1, 0x066b60,1, 0x066b70,1, 0x066b80,1, 0x066b90,1, 0x066ba0,1, 0x066bb0,1, 0x066bc0,1, 0x066bd0,1, 0x066be0,1, 0x066bf0,1, 0x066c00,1, 0x066c10,1, 0x066c20,1, 0x066c30,1, 0x066c40,1, 0x066c50,1, 0x066c60,1, 0x066c70,1, 0x066c80,1, 0x066c90,1, 0x066ca0,1, 0x066cb0,1, 0x066cc0,1, 0x066cd0,1, 0x066ce0,1, 0x066cf0,1, 0x066d00,1, 0x066d10,1, 0x066d20,1, 0x066d30,1, 0x066d40,1, 0x066d50,1, 0x066d60,1, 0x066d70,1, 0x066d80,1, 0x066d90,1, 0x066da0,1, 0x066db0,1, 0x066dc0,1, 0x066dd0,1, 0x066de0,1, 0x066df0,1, 0x066e00,1, 0x066e10,1, 0x066e20,1, 0x066e30,1, 0x066e40,1, 0x066e50,1, 0x066e60,1, 0x066e70,1, 0x066e80,1, 0x066e90,1, 0x066ea0,1, 0x066eb0,1, 0x066ec0,1, 0x066ed0,1, 0x066ee0,1, 0x066ef0,1, 0x066f00,1, 0x066f10,1, 0x066f20,1, 0x066f30,1, 0x066f40,1, 0x066f50,1, 0x066f60,1, 0x066f70,1, 0x066f80,1, 0x066f90,1, 0x066fa0,1, 0x066fb0,1, 0x066fc0,1, 0x066fd0,1, 0x066fe0,1, 0x066ff0,1, 0x067000,16, 0x067100,8, 0x067124,7, 0x067144,7, 0x067200,3, 0x0677f8,2, 0x06f008,2, 0x06f014,11, 0x06f044,1, 0x06f04c,3, 0x06f05c,1, 0x06f064,1, 0x06f07c,1, 0x06f500,2, 0x06f518,1, 0x06f520,3, 0x06f540,6, 0x06f580,10, 0x06f800,2, 0x070000,4, 0x070020,25, 0x070088,8, 0x070100,6, 0x070120,7, 0x070140,4, 0x070200,24, 0x070280,1, 0x070288,4, 0x070300,37, 0x070b00,14, 0x070b40,14, 0x070b84,1, 0x070c00,1, 0x070c10,3, 0x070c3c,3, 0x070c50,8, 0x071000,7, 0x072000,7, 0x073000,114, 0x0731d0,3, 0x0731e0,3, 0x0731f0,3, 0x073200,2, 0x073210,7, 0x073230,1, 0x073240,48, 0x073338,15, 0x074000,8, 0x074044,3, 0x074060,4, 0x074080,8, 0x075000,1025, 0x076008,2, 0x076020,7, 0x07f000,2, 0x07f028,2, 0x07f050,2, 0x07f078,2, 0x07f0a0,28, 0x07f1ac,1, 0x07f1d8,4, 0x07f200,6, 0x07f220,6, 0x07f240,6, 0x07f260,6, 0x07f280,3, 0x07fa00,6, 0x07fb00,7, 0x07fb20,7, 0x07fb40,7, 0x07fb60,1, 0x07fb70,1, 0x07fb80,7, 0x07fc00,3, 0x080000,32771, 0x0a0010,2, 0x0a001c,6, 0x0a0038,2, 0x0a0048,2, 0x0a0058,2, 0x0a0064,32, 0x0a00f0,1, 0x0a00fc,35, 0x0a01e0,1, 0x0a01e8,5, 0x0a0200,3, 0x0a0210,2, 0x0a021c,6, 0x0a0238,2, 0x0a0248,2, 0x0a0258,2, 0x0a0264,32, 0x0a02f0,1, 0x0a02fc,35, 0x0a03e0,1, 0x0a03e8,5, 0x0a0400,3, 0x0a0410,2, 0x0a041c,6, 0x0a0438,2, 0x0a0448,2, 0x0a0458,2, 0x0a0464,32, 0x0a04f0,1, 0x0a04fc,35, 0x0a05e0,1, 0x0a05e8,5, 0x0a0600,3, 0x0a0610,2, 0x0a061c,6, 0x0a0638,2, 0x0a0648,2, 0x0a0658,2, 0x0a0664,32, 0x0a06f0,1, 0x0a06fc,35, 0x0a07e0,1, 0x0a07e8,5, 0x0a0800,3, 0x0a0810,2, 0x0a081c,6, 0x0a0838,2, 0x0a0848,2, 0x0a0858,2, 0x0a0864,32, 0x0a08f0,1, 0x0a08fc,35, 0x0a09e0,1, 0x0a09e8,5, 0x0a0a00,3, 0x0a0a10,2, 0x0a0a1c,6, 0x0a0a38,2, 0x0a0a48,2, 0x0a0a58,2, 0x0a0a64,32, 0x0a0af0,1, 0x0a0afc,35, 0x0a0be0,1, 0x0a0be8,5, 0x0a0c00,3, 0x0a0c10,2, 0x0a0c1c,6, 0x0a0c38,2, 0x0a0c48,2, 0x0a0c58,2, 0x0a0c64,32, 0x0a0cf0,1, 0x0a0cfc,35, 0x0a0de0,1, 0x0a0de8,5, 0x0a0e00,3, 0x0a0e10,2, 0x0a0e1c,6, 0x0a0e38,2, 0x0a0e48,2, 0x0a0e58,2, 0x0a0e64,32, 0x0a0ef0,1, 0x0a0efc,35, 0x0a0fe0,1, 0x0a0fe8,5, 0x0a1000,128, 0x0a1208,2, 0x0a1218,2, 0x0a1404,17, 0x0a1484,1, 0x0a14a0,17, 0x0a1504,1, 0x0a1540,17, 0x0a15e0,8, 0x0a1604,3, 0x0a1700,33, 0x0a1800,6, 0x0a1820,10, 0x0a1870,1, 0x0a1c00,2, 0x0a1c28,2, 0x0a1c50,2, 0x0a1c78,2, 0x0a1ca0,7, 0x0a1dac,1, 0x0a1dd8,4, 0x0a1e00,6, 0x0a1e20,6, 0x0a1e40,6, 0x0a1e60,6, 0x0a1e80,3, 0x0a2010,2, 0x0a201c,1, 0x0a2028,2, 0x0a2040,8, 0x0a2064,5, 0x0a20d0,8, 0x0a20f4,22, 0x0a2150,3, 0x0a2160,8, 0x0a2184,3, 0x0a21a0,8, 0x0a2200,4, 0x0a2218,52, 0x0a2300,8, 0x0a2330,3, 0x0a2600,1, 0x0a2800,6, 0x0a2820,6, 0x0a2840,6, 0x0a2860,6, 0x0a2880,3, 0x0a2900,6, 0x0a2920,6, 0x0a2940,3, 0x0a2980,6, 0x0a29a0,6, 0x0a29c0,6, 0x0a29e0,3, 0x0a2a00,6, 0x0a2a20,3, 0x0a2a30,1, 0x0a3120,6, 0x0a3140,6, 0x0a3160,6, 0x0a3180,6, 0x0a31a0,6, 0x0a31c0,6, 0x0a3604,2, 0x0a3700,16, 0x0a3a00,1, 0x0a3b00,8, 0x0a8000,8192, 0x0c1000,1, 0x0c1028,1, 0x0c1050,1, 0x0c1078,1, 0x0c10a0,9, 0x0c11ac,1, 0x0c11d8,4, 0x0c1200,6, 0x0c1220,6, 0x0c1240,3, 0x0c1400,6, 0x0c1420,3, 0x0c1500,13, 0x0c1540,3, 0x0c2000,14, 0x0c2070,3, 0x0c2080,6, 0x0c2100,9, 0x0c2204,1, 0x0c220c,6, 0x0c2240,13, 0x0c2280,16, 0x0c2400,8, 0x0c2424,15, 0x0c2464,15, 0x0c24a4,15, 0x0c24e4,30, 0x0c2580,10, 0x0c25ac,1, 0x0c25b4,5, 0x0c25cc,1, 0x0c25d4,5, 0x0c25ec,1, 0x0c25f4,13, 0x0c2680,4, 0x0c2694,2, 0x0c26a0,5, 0x0c26c0,5, 0x0c26e0,4, 0x0c2800,19, 0x0c2850,10, 0x0c2880,19, 0x0c28d0,10, 0x0c2900,19, 0x0c2950,10, 0x0c2980,19, 0x0c29d0,10, 0x0c2a00,19, 0x0c2a50,10, 0x0c2a80,19, 0x0c2ad0,10, 0x0c2b00,19, 0x0c2b50,10, 0x0c2b80,19, 0x0c2bd0,10, 0x0c2c00,19, 0x0c2c60,6, 0x0c2c84,1, 0x0c2c94,8, 0x0c2cb8,9, 0x0c2ce0,4, 0x0c3000,29, 0x0c3078,4, 0x0c3090,2, 0x0c30a0,7, 0x0c30c0,11, 0x0c3100,14, 0x0c3140,14, 0x0c3180,61, 0x0c3278,4, 0x0c3290,2, 0x0c32a0,7, 0x0c32c0,11, 0x0c3300,14, 0x0c3340,14, 0x0c3380,61, 0x0c3478,4, 0x0c3490,2, 0x0c34a0,7, 0x0c34c0,11, 0x0c3500,14, 0x0c3540,14, 0x0c3580,61, 0x0c3678,4, 0x0c3690,2, 0x0c36a0,7, 0x0c36c0,11, 0x0c3700,14, 0x0c3740,14, 0x0c3780,67, 0x0c3890,1, 0x0c3a00,8, 0x0c3a24,15, 0x0c3a64,30, 0x0c3b00,4, 0x0c3b20,2, 0x0c3c00,6, 0x0c3c40,14, 0x0c3c80,9, 0x0c3d00,9, 0x0c3d2c,1, 0x0c3d40,3, 0x0c3d60,1, 0x0c3d80,3, 0x0c3e00,2, 0x0c3e0c,1, 0x0c3e14,5, 0x0c3e2c,1, 0x0c3e34,5, 0x0c3e4c,1, 0x0c3e54,5, 0x0c3e6c,1, 0x0c3e74,5, 0x0c3e8c,1, 0x0c3e94,5, 0x0c3eac,1, 0x0c3eb4,3, 0x0c8000,25, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c8,6, 0x0c8180,6, 0x0ca000,3, 0x0ca010,21, 0x0ca068,14, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca100,12, 0x0ca140,2, 0x0ca160,1, 0x0ca184,1, 0x0ca194,2, 0x0ca1b8,3, 0x0ca1d0,5, 0x0ca1e8,3, 0x0ca1f8,8, 0x0ca220,6, 0x0ca240,3, 0x0ca280,6, 0x0ca2a0,6, 0x0ca2c0,3, 0x0ca300,6, 0x0ca320,6, 0x0ca340,6, 0x0ca360,6, 0x0ca380,6, 0x0ca3a0,6, 0x0ca3c0,6, 0x0ca3e0,6, 0x0ca400,6, 0x0ca6fc,1, 0x0ca800,72, 0x0cb000,4, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,8, 0x0cb1f0,6, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,1, 0x0cb400,5, 0x0cb59c,1, 0x0cb5ac,9, 0x0d0000,5, 0x0d0020,4, 0x0d0034,17, 0x0d0080,1, 0x0d00a0,6, 0x0d0100,5, 0x0d0120,4, 0x0d0134,17, 0x0d0180,1, 0x0d01a0,6, 0x0d0200,5, 0x0d0220,4, 0x0d0234,17, 0x0d0280,1, 0x0d02a0,6, 0x0d0300,5, 0x0d0320,4, 0x0d0334,17, 0x0d0380,1, 0x0d03a0,6, 0x0d0400,6, 0x0d0440,6, 0x0d0480,3, 0x0d04c0,3, 0x0d0500,6, 0x0d051c,7, 0x0d0540,1, 0x0d0c00,13, 0x0d0c40,12, 0x0d0c80,13, 0x0d0cc0,12, 0x0d0d00,6, 0x0d0d20,6, 0x0d0e40,11, 0x0d0e80,6, 0x0d0ea0,6, 0x0d1000,2, 0x0d1010,5, 0x0d1040,3, 0x0d1050,3, 0x0d1060,32, 0x0d1100,8, 0x0d1140,8, 0x0d1180,3, 0x0d1190,2, 0x0d119c,9, 0x0d1218,9, 0x0d1240,3, 0x0d1250,6, 0x0d1280,1, 0x0d1288,6, 0x0d12a4,1, 0x0d12c0,1, 0x0d12c8,6, 0x0d12e4,1, 0x0d1400,8, 0x0d1424,2, 0x0d1800,24, 0x0d1864,5, 0x0d1880,8, 0x0d1900,13, 0x0d1980,4, 0x0d19a0,6, 0x0d19d0,2, 0x0d19dc,1, 0x0d1a10,2, 0x0d1a1c,1, 0x0d1a40,1, 0x0d1a60,1, 0x0d1a68,23, 0x0d1ac8,6, 0x0d1b00,17, 0x0d1b48,6, 0x0d1b80,12, 0x0d1c00,6, 0x0d1c20,6, 0x0d1c40,6, 0x0d1c60,3, 0x0d1d00,6, 0x0d1d20,6, 0x0d1d40,3, 0x0d1d80,6, 0x0d1da0,6, 0x0d1dc0,3, 0x0d4000,5, 0x0d4038,1, 0x0d4044,1, 0x0d4050,2, 0x0d4100,6, 0x0d8000,6, 0x0d8020,3, 0x0d8030,4, 0x0d8100,6, 0x0d8120,10, 0x0d8150,8, 0x0d8800,6, 0x0d8820,3, 0x0d8830,4, 0x0d8858,2, 0x0d8864,1, 0x0d8874,3, 0x0d8898,2, 0x0d88a4,1, 0x0d88b4,3, 0x0d9000,6, 0x0d9020,6, 0x0d9040,3, 0x0d9080,14, 0x0d90bc,1, 0x0d90c4,13, 0x0d90fc,5, 0x0d9120,4, 0x0d9140,3, 0x0d9180,3, 0x0d9190,3, 0x0d91a0,1, 0x0d91e0,6, 0x0d9200,20, 0x0d925c,30, 0x0d9300,24, 0x0d9380,2, 0x0d93a0,1, 0x0d93c0,11, 0x0d9404,3, 0x0d9420,11, 0x0d9460,3, 0x0d9480,6, 0x0d9500,6, 0x0d9520,6, 0x0d9600,17, 0x0d9800,410, 0x0da100,4, 0x0da120,4, 0x0da140,3, 0x0da180,3, 0x0da190,3, 0x0da1a0,1, 0x0da1e0,6, 0x0da200,20, 0x0da25c,30, 0x0da300,24, 0x0da380,2, 0x0da3a0,1, 0x0da3c0,11, 0x0da404,3, 0x0da420,11, 0x0da460,3, 0x0da480,6, 0x0da500,6, 0x0da800,410, 0x0db800,5, 0x0db818,1, 0x0db854,6, 0x0db880,2, 0x0db8a4,1, 0x0db8ac,2, 0x0dbc00,5, 0x0dbc18,1, 0x0dbc54,6, 0x0dbc80,2, 0x0dbca4,1, 0x0dbcac,2, 0x0dc000,1, 0x0e8000,1, 0x0e8008,2, 0x0e8058,3, 0x0e8120,2, 0x0e8130,2, 0x0e8140,1, 0x0e8184,11, 0x0e81c4,3, 0x0e81dc,3, 0x0e8280,13, 0x0e8400,16, 0x0e8444,7, 0x0e8500,4, 0x0e8804,1, 0x0e8824,7, 0x0e8844,1, 0x0e884c,27, 0x0e88d4,2, 0x0e8c00,1, 0x0e8c08,3, 0x0e8c80,20, 0x0e8d00,3, 0x0e8d20,6, 0x0e8d80,4, 0x0e8da0,6, 0x0e8dbc,7, 0x0e8e00,21, 0x0e8e80,6, 0x0e8ea0,6, 0x0e8ec0,3, 0x0e9000,35, 0x0e9090,2, 0x0e90f0,1, 0x0e90f8,1, 0x0e9100,1, 0x0e9108,5, 0x0e9138,2, 0x0e9144,1, 0x0e9160,13, 0x0e91a0,3, 0x0e9200,2, 0x0e9214,11, 0x0e9244,7, 0x0e92b8,2, 0x0e92c4,7, 0x0e9310,1, 0x0e9340,4, 0x0e9380,7, 0x0e9400,14, 0x0e9440,10, 0x0e947c,1, 0x0e9700,2, 0x0e9720,8, 0x0e9800,3, 0x0e9810,3, 0x0e9820,3, 0x0e9830,3, 0x0e9840,3, 0x0e9850,3, 0x0e9860,3, 0x0e9870,3, 0x0e9880,3, 0x0e9890,3, 0x0e98a0,3, 0x0e98b0,3, 0x0e98c0,3, 0x0e98d0,3, 0x0e98e0,3, 0x0e98f0,3, 0x0e9900,68, 0x0e9c00,36, 0x0e9d00,3, 0x0e9d40,2, 0x0e9d4c,1, 0x0e9d84,1, 0x0e9d90,4, 0x0e9e00,6, 0x0e9e20,6, 0x0e9e40,6, 0x0e9e60,3, 0x0e9e80,6, 0x0e9ea0,3, 0x0e9f80,13, 0x0e9fc0,2, 0x0ea000,1, 0x0ea028,1, 0x0ea050,1, 0x0ea078,1, 0x0ea0a0,3, 0x0ea1ac,1, 0x0ea1d8,4, 0x0ea200,6, 0x0ea220,6, 0x0ea240,3, 0x0ea400,6, 0x0ea420,2, 0x0ea430,2, 0x0ea440,2, 0x0ea450,6, 0x0ea470,2, 0x0ea490,24, 0x0ea520,8, 0x0ea604,1, 0x0ea6f0,72, 0x0f0000,3, 0x0f0014,11, 0x0f0044,15, 0x0f00f0,3, 0x0f0100,1, 0x0f0108,3, 0x0f0118,1, 0x0f0130,4, 0x0f0180,3, 0x0f0190,2, 0x0f01a0,3, 0x0f01c0,2, 0x0f01d0,10, 0x0f0200,57, 0x0f02e8,3, 0x0f0404,9, 0x0f0440,12, 0x0f0480,5, 0x0f04b8,18, 0x0f05a0,1, 0x0f05c0,8, 0x0f0800,17, 0x0f0850,9, 0x0f0880,9, 0x0f08b0,9, 0x0f08e0,9, 0x0f0920,4, 0x0f093c,5, 0x0f095c,5, 0x0f097c,5, 0x0f099c,5, 0x0f09bc,5, 0x0f09dc,1, 0x0f0a90,2, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,3, 0x0f1010,4, 0x0f1030,2, 0x0f1080,10, 0x0f10c0,1, 0x0f10e0,2, 0x0f10ec,1, 0x0f10f4,3, 0x0f1400,6, 0x0f1420,6, 0x0f1440,6, 0x0f1460,6, 0x0f1480,6, 0x0f14a0,6, 0x0f14c0,6, 0x0f14e0,6, 0x0f1500,6, 0x0f1520,6, 0x0f1540,6, 0x0f1560,6, 0x0f1580,6, 0x0f15a0,6, 0x0f15c0,6, 0x0f15e0,6, 0x0f1600,6, 0x0f1620,3, 0x0f1800,3, 0x0f2000,2, 0x0f200c,3, 0x0f2020,8, 0x0f2060,6, 0x0f2080,2, 0x0f208c,3, 0x0f20a0,8, 0x0f20e0,6, 0x0f2100,2, 0x0f210c,3, 0x0f2120,8, 0x0f2160,6, 0x0f2180,2, 0x0f218c,3, 0x0f21a0,8, 0x0f21e0,6, 0x0f2200,2, 0x0f220c,3, 0x0f2220,8, 0x0f2260,6, 0x0f2280,2, 0x0f228c,3, 0x0f22a0,8, 0x0f22e0,6, 0x0f2300,2, 0x0f230c,3, 0x0f2320,8, 0x0f2360,6, 0x0f2380,2, 0x0f238c,3, 0x0f23a0,8, 0x0f23e0,6, 0x0f2400,2, 0x0f240c,3, 0x0f2420,8, 0x0f2460,6, 0x0f2480,2, 0x0f248c,3, 0x0f24a0,8, 0x0f24e0,6, 0x0f2500,2, 0x0f250c,3, 0x0f2520,8, 0x0f2560,6, 0x0f2580,2, 0x0f258c,3, 0x0f25a0,8, 0x0f25e0,6, 0x0f2600,2, 0x0f260c,3, 0x0f2620,8, 0x0f2660,6, 0x0f2680,2, 0x0f268c,3, 0x0f26a0,8, 0x0f26e0,6, 0x0f2700,2, 0x0f270c,3, 0x0f2720,8, 0x0f2760,6, 0x0f2780,2, 0x0f278c,3, 0x0f27a0,8, 0x0f27e0,6, 0x0f2800,2, 0x0f280c,3, 0x0f2820,8, 0x0f2860,6, 0x0f2880,2, 0x0f288c,3, 0x0f28a0,8, 0x0f28e0,6, 0x0f2900,2, 0x0f290c,3, 0x0f2920,8, 0x0f2960,6, 0x0f2980,2, 0x0f298c,3, 0x0f29a0,8, 0x0f29e0,6, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f8000,9, 0x0f8100,6, 0x0f8120,6, 0x0f8140,3, 0x0f8180,10, 0x0f81c0,3, 0x0f81d0,2, 0x0f8200,9, 0x0f8300,6, 0x0f8320,6, 0x0f8340,3, 0x0f8380,10, 0x0f83c0,3, 0x0f83d0,2, 0x0f8400,9, 0x0f8500,6, 0x0f8520,6, 0x0f8540,3, 0x0f8580,10, 0x0f85c0,3, 0x0f85d0,2, 0x0f8600,9, 0x0f8700,6, 0x0f8720,6, 0x0f8740,3, 0x0f8780,10, 0x0f87c0,3, 0x0f87d0,2, 0x0f8800,9, 0x0f8900,6, 0x0f8920,6, 0x0f8940,3, 0x0f8980,10, 0x0f89c0,3, 0x0f89d0,2, 0x0f8a00,9, 0x0f8b00,6, 0x0f8b20,6, 0x0f8b40,3, 0x0f8b80,10, 0x0f8bc0,3, 0x0f8bd0,2, 0x0f8c00,9, 0x0f8d00,6, 0x0f8d20,6, 0x0f8d40,3, 0x0f8d80,10, 0x0f8dc0,3, 0x0f8dd0,2, 0x0f8e00,9, 0x0f8f00,6, 0x0f8f20,6, 0x0f8f40,3, 0x0f8f80,10, 0x0f8fc0,3, 0x0f8fd0,2, 0x0f9000,9, 0x0f9100,6, 0x0f9120,6, 0x0f9140,3, 0x0f9180,10, 0x0f91c0,3, 0x0f91d0,2, 0x0f9200,9, 0x0f9300,6, 0x0f9320,6, 0x0f9340,3, 0x0f9380,10, 0x0f93c0,3, 0x0f93d0,2, 0x0f9400,9, 0x0f9500,6, 0x0f9520,6, 0x0f9540,3, 0x0f9580,10, 0x0f95c0,3, 0x0f95d0,2, 0x0f9600,9, 0x0f9700,6, 0x0f9720,6, 0x0f9740,3, 0x0f9780,10, 0x0f97c0,3, 0x0f97d0,2, 0x0f9800,9, 0x0f9900,6, 0x0f9920,6, 0x0f9940,3, 0x0f9980,10, 0x0f99c0,3, 0x0f99d0,2, 0x0f9a00,9, 0x0f9b00,6, 0x0f9b20,6, 0x0f9b40,3, 0x0f9b80,10, 0x0f9bc0,3, 0x0f9bd0,2, 0x0f9c00,9, 0x0f9d00,6, 0x0f9d20,6, 0x0f9d40,3, 0x0f9d80,10, 0x0f9dc0,3, 0x0f9dd0,2, 0x0f9e00,9, 0x0f9f00,6, 0x0f9f20,6, 0x0f9f40,3, 0x0f9f80,10, 0x0f9fc0,3, 0x0f9fd0,2, 0x0fa000,9, 0x0fa100,6, 0x0fa120,6, 0x0fa140,3, 0x0fa180,10, 0x0fa1c0,3, 0x0fa1d0,2, 0x0fa200,9, 0x0fa300,6, 0x0fa320,6, 0x0fa340,3, 0x0fa380,10, 0x0fa3c0,3, 0x0fa3d0,2, 0x0fa400,9, 0x0fa480,10, 0x0fa4c0,1, 0x0fa4e0,2, 0x0fa4ec,1, 0x0fa4f4,9, 0x0fa520,6, 0x0fa540,3, 0x0fa580,6, 0x0fa5c0,3, 0x0fa5d0,6, 0x0fa600,9, 0x0fa680,10, 0x0fa6c0,1, 0x0fa6e0,2, 0x0fa6ec,1, 0x0fa6f4,9, 0x0fa720,6, 0x0fa740,3, 0x0fa780,6, 0x0fa7c0,3, 0x0fa7d0,6, 0x0fa800,9, 0x0fa880,10, 0x0fa8c0,1, 0x0fa8e0,2, 0x0fa8ec,1, 0x0fa8f4,9, 0x0fa920,6, 0x0fa940,3, 0x0fa980,8, 0x0fa9c0,3, 0x0fa9d0,2, 0x0faa00,9, 0x0faa80,10, 0x0faac0,1, 0x0faae0,2, 0x0faaec,1, 0x0faaf4,9, 0x0fab20,6, 0x0fab40,3, 0x0fab80,8, 0x0fabc0,3, 0x0fabd0,2, 0x0fac00,9, 0x0fac80,10, 0x0facc0,1, 0x0face0,2, 0x0facec,1, 0x0facf4,9, 0x0fad20,6, 0x0fad40,3, 0x0fad80,10, 0x0fadc0,3, 0x0fadd0,2, 0x0fade8,2, 0x0fae00,9, 0x0fae80,10, 0x0faec0,1, 0x0faee0,2, 0x0faeec,1, 0x0faef4,9, 0x0faf20,6, 0x0faf40,3, 0x0faf80,12, 0x0fafc0,3, 0x0fafd0,2, 0x0fb000,9, 0x0fb100,6, 0x0fb120,6, 0x0fb140,3, 0x0fb180,6, 0x0fb1c0,3, 0x0fb1d0,2, 0x100000,6, 0x100100,30, 0x100180,5, 0x100200,6, 0x100300,30, 0x100380,5, 0x100400,11, 0x100430,29, 0x100500,2, 0x10050c,4, 0x100520,5, 0x10053c,1, 0x100544,1, 0x10054c,5, 0x100564,3, 0x100600,4, 0x100620,6, 0x100640,6, 0x100660,6, 0x100680,6, 0x1006a0,4, 0x100800,6, 0x100820,6, 0x100840,6, 0x100860,3, 0x100884,14, 0x1008c0,16, 0x100c00,20, 0x100c58,4, 0x100c70,2, 0x100c7c,7, 0x100d00,4, 0x100d30,2, 0x100d3c,12, 0x100d70,2, 0x100d80,3, 0x100e00,32, 0x101000,6, 0x101100,30, 0x101180,5, 0x101200,6, 0x101300,30, 0x101380,5, 0x101400,11, 0x101430,29, 0x101500,2, 0x10150c,4, 0x101520,5, 0x10153c,1, 0x101544,1, 0x10154c,5, 0x101564,3, 0x101600,4, 0x101620,6, 0x101640,6, 0x101660,6, 0x101680,6, 0x1016a0,4, 0x101800,6, 0x101820,6, 0x101840,6, 0x101860,3, 0x101884,14, 0x1018c0,16, 0x101c00,20, 0x101c58,4, 0x101c70,2, 0x101c7c,7, 0x101d00,4, 0x101d30,2, 0x101d3c,12, 0x101d70,2, 0x101d80,3, 0x101e00,32, 0x102000,6, 0x102100,30, 0x102180,5, 0x102200,6, 0x102300,30, 0x102380,5, 0x102400,11, 0x102430,29, 0x102500,2, 0x10250c,4, 0x102520,5, 0x10253c,1, 0x102544,1, 0x10254c,5, 0x102564,3, 0x102600,4, 0x102620,6, 0x102640,6, 0x102660,6, 0x102680,6, 0x1026a0,4, 0x102800,6, 0x102820,6, 0x102840,6, 0x102860,3, 0x102884,14, 0x1028c0,16, 0x102c00,20, 0x102c58,4, 0x102c70,2, 0x102c7c,7, 0x102d00,4, 0x102d30,2, 0x102d3c,12, 0x102d70,2, 0x102d80,3, 0x102e00,32, 0x103000,6, 0x103100,30, 0x103180,5, 0x103200,6, 0x103300,30, 0x103380,5, 0x103400,11, 0x103430,29, 0x103500,2, 0x10350c,4, 0x103520,5, 0x10353c,1, 0x103544,1, 0x10354c,5, 0x103564,3, 0x103600,4, 0x103620,6, 0x103640,6, 0x103660,6, 0x103680,6, 0x1036a0,4, 0x103800,6, 0x103820,6, 0x103840,6, 0x103860,3, 0x103884,14, 0x1038c0,16, 0x103c00,20, 0x103c58,4, 0x103c70,2, 0x103c7c,7, 0x103d00,4, 0x103d30,2, 0x103d3c,12, 0x103d70,2, 0x103d80,3, 0x103e00,32, 0x104000,6, 0x104100,30, 0x104180,5, 0x104200,6, 0x104300,30, 0x104380,5, 0x104400,11, 0x104430,29, 0x104500,2, 0x10450c,4, 0x104520,5, 0x10453c,1, 0x104544,1, 0x10454c,5, 0x104564,3, 0x104600,4, 0x104620,6, 0x104640,6, 0x104660,6, 0x104680,6, 0x1046a0,4, 0x104800,6, 0x104820,6, 0x104840,6, 0x104860,3, 0x104884,14, 0x1048c0,16, 0x104c00,20, 0x104c58,4, 0x104c70,2, 0x104c7c,7, 0x104d00,4, 0x104d30,2, 0x104d3c,12, 0x104d70,2, 0x104d80,3, 0x104e00,32, 0x105000,6, 0x105100,30, 0x105180,5, 0x105200,6, 0x105300,30, 0x105380,5, 0x105400,11, 0x105430,29, 0x105500,2, 0x10550c,4, 0x105520,5, 0x10553c,1, 0x105544,1, 0x10554c,5, 0x105564,3, 0x105600,4, 0x105620,6, 0x105640,6, 0x105660,6, 0x105680,6, 0x1056a0,4, 0x105800,6, 0x105820,6, 0x105840,6, 0x105860,3, 0x105884,14, 0x1058c0,16, 0x105c00,20, 0x105c58,4, 0x105c70,2, 0x105c7c,7, 0x105d00,4, 0x105d30,2, 0x105d3c,12, 0x105d70,2, 0x105d80,3, 0x105e00,32, 0x106000,6, 0x106100,30, 0x106180,5, 0x106200,6, 0x106300,30, 0x106380,5, 0x106400,11, 0x106430,29, 0x106500,2, 0x10650c,4, 0x106520,5, 0x10653c,1, 0x106544,1, 0x10654c,5, 0x106564,3, 0x106600,4, 0x106620,6, 0x106640,6, 0x106660,6, 0x106680,6, 0x1066a0,4, 0x106800,6, 0x106820,6, 0x106840,6, 0x106860,3, 0x106884,14, 0x1068c0,16, 0x106c00,20, 0x106c58,4, 0x106c70,2, 0x106c7c,7, 0x106d00,4, 0x106d30,2, 0x106d3c,12, 0x106d70,2, 0x106d80,3, 0x106e00,32, 0x107000,6, 0x107100,30, 0x107180,5, 0x107200,6, 0x107300,30, 0x107380,5, 0x107400,11, 0x107430,29, 0x107500,2, 0x10750c,4, 0x107520,5, 0x10753c,1, 0x107544,1, 0x10754c,5, 0x107564,3, 0x107600,4, 0x107620,6, 0x107640,6, 0x107660,6, 0x107680,6, 0x1076a0,4, 0x107800,6, 0x107820,6, 0x107840,6, 0x107860,3, 0x107884,14, 0x1078c0,16, 0x107c00,20, 0x107c58,4, 0x107c70,2, 0x107c7c,7, 0x107d00,4, 0x107d30,2, 0x107d3c,12, 0x107d70,2, 0x107d80,3, 0x107e00,32, 0x108000,6, 0x108100,30, 0x108180,5, 0x108200,6, 0x108300,30, 0x108380,5, 0x108400,11, 0x108430,29, 0x108500,2, 0x10850c,4, 0x108520,5, 0x10853c,1, 0x108544,1, 0x10854c,5, 0x108564,3, 0x108600,4, 0x108620,6, 0x108640,6, 0x108660,6, 0x108680,6, 0x1086a0,4, 0x108800,6, 0x108820,6, 0x108840,6, 0x108860,3, 0x108884,14, 0x1088c0,16, 0x108c00,20, 0x108c58,4, 0x108c70,2, 0x108c7c,7, 0x108d00,4, 0x108d30,2, 0x108d3c,12, 0x108d70,2, 0x108d80,3, 0x108e00,32, 0x109000,6, 0x109100,30, 0x109180,5, 0x109200,6, 0x109300,30, 0x109380,5, 0x109400,11, 0x109430,29, 0x109500,2, 0x10950c,4, 0x109520,5, 0x10953c,1, 0x109544,1, 0x10954c,5, 0x109564,3, 0x109600,4, 0x109620,6, 0x109640,6, 0x109660,6, 0x109680,6, 0x1096a0,4, 0x109800,6, 0x109820,6, 0x109840,6, 0x109860,3, 0x109884,14, 0x1098c0,16, 0x109c00,20, 0x109c58,4, 0x109c70,2, 0x109c7c,7, 0x109d00,4, 0x109d30,2, 0x109d3c,12, 0x109d70,2, 0x109d80,3, 0x109e00,32, 0x10a000,1, 0x113ffc,6, 0x114018,3, 0x114028,3, 0x114038,3, 0x114048,3, 0x114058,3, 0x114068,3, 0x114078,3, 0x114088,12, 0x1140c8,13, 0x114100,29, 0x114178,11, 0x1141c0,3, 0x1141d0,3, 0x1141e0,6, 0x114400,5, 0x114428,5, 0x114450,5, 0x114478,5, 0x1144a0,4, 0x1145ac,1, 0x1145d8,4, 0x114600,6, 0x114620,6, 0x114640,6, 0x114660,6, 0x114680,6, 0x1146a0,6, 0x1146c0,6, 0x1146e0,6, 0x114700,6, 0x114720,6, 0x114740,3, 0x114900,7, 0x114920,36, 0x114c00,1, 0x114c08,1, 0x114c10,5, 0x114c38,1, 0x114c60,7, 0x115000,1, 0x115008,11, 0x115038,10, 0x115068,3, 0x115104,4, 0x115128,3, 0x115204,5, 0x115220,10, 0x115250,3, 0x115280,6, 0x1152a0,6, 0x1152c0,6, 0x1152e0,3, 0x115300,7, 0x140000,6, 0x140100,30, 0x140180,5, 0x140200,6, 0x140300,30, 0x140380,5, 0x140400,11, 0x140430,29, 0x140500,2, 0x14050c,4, 0x140520,5, 0x14053c,1, 0x140544,1, 0x14054c,5, 0x140564,3, 0x140600,4, 0x140620,6, 0x140640,6, 0x140660,6, 0x140680,6, 0x1406a0,4, 0x140800,6, 0x140820,6, 0x140840,6, 0x140860,3, 0x140884,14, 0x1408c0,16, 0x140c00,20, 0x140c58,4, 0x140c70,2, 0x140c7c,7, 0x140d00,4, 0x140d30,2, 0x140d3c,12, 0x140d70,2, 0x140d80,3, 0x140e00,32, 0x141000,6, 0x141100,30, 0x141180,5, 0x141200,6, 0x141300,30, 0x141380,5, 0x141400,11, 0x141430,29, 0x141500,2, 0x14150c,4, 0x141520,5, 0x14153c,1, 0x141544,1, 0x14154c,5, 0x141564,3, 0x141600,4, 0x141620,6, 0x141640,6, 0x141660,6, 0x141680,6, 0x1416a0,4, 0x141800,6, 0x141820,6, 0x141840,6, 0x141860,3, 0x141884,14, 0x1418c0,16, 0x141c00,20, 0x141c58,4, 0x141c70,2, 0x141c7c,7, 0x141d00,4, 0x141d30,2, 0x141d3c,12, 0x141d70,2, 0x141d80,3, 0x141e00,32, 0x142000,6, 0x142100,30, 0x142180,5, 0x142200,6, 0x142300,30, 0x142380,5, 0x142400,11, 0x142430,29, 0x142500,2, 0x14250c,4, 0x142520,5, 0x14253c,1, 0x142544,1, 0x14254c,5, 0x142564,3, 0x142600,4, 0x142620,6, 0x142640,6, 0x142660,6, 0x142680,6, 0x1426a0,4, 0x142800,6, 0x142820,6, 0x142840,6, 0x142860,3, 0x142884,14, 0x1428c0,16, 0x142c00,20, 0x142c58,4, 0x142c70,2, 0x142c7c,7, 0x142d00,4, 0x142d30,2, 0x142d3c,12, 0x142d70,2, 0x142d80,3, 0x142e00,32, 0x143000,6, 0x143100,30, 0x143180,5, 0x143200,6, 0x143300,30, 0x143380,5, 0x143400,11, 0x143430,29, 0x143500,2, 0x14350c,4, 0x143520,5, 0x14353c,1, 0x143544,1, 0x14354c,5, 0x143564,3, 0x143600,4, 0x143620,6, 0x143640,6, 0x143660,6, 0x143680,6, 0x1436a0,4, 0x143800,6, 0x143820,6, 0x143840,6, 0x143860,3, 0x143884,14, 0x1438c0,16, 0x143c00,20, 0x143c58,4, 0x143c70,2, 0x143c7c,7, 0x143d00,4, 0x143d30,2, 0x143d3c,12, 0x143d70,2, 0x143d80,3, 0x143e00,32, 0x144000,6, 0x144100,30, 0x144180,5, 0x144200,6, 0x144300,30, 0x144380,5, 0x144400,11, 0x144430,29, 0x144500,2, 0x14450c,4, 0x144520,5, 0x14453c,1, 0x144544,1, 0x14454c,5, 0x144564,3, 0x144600,4, 0x144620,6, 0x144640,6, 0x144660,6, 0x144680,6, 0x1446a0,4, 0x144800,6, 0x144820,6, 0x144840,6, 0x144860,3, 0x144884,14, 0x1448c0,16, 0x144c00,20, 0x144c58,4, 0x144c70,2, 0x144c7c,7, 0x144d00,4, 0x144d30,2, 0x144d3c,12, 0x144d70,2, 0x144d80,3, 0x144e00,32, 0x145000,6, 0x145100,30, 0x145180,5, 0x145200,6, 0x145300,30, 0x145380,5, 0x145400,11, 0x145430,29, 0x145500,2, 0x14550c,4, 0x145520,5, 0x14553c,1, 0x145544,1, 0x14554c,5, 0x145564,3, 0x145600,4, 0x145620,6, 0x145640,6, 0x145660,6, 0x145680,6, 0x1456a0,4, 0x145800,6, 0x145820,6, 0x145840,6, 0x145860,3, 0x145884,14, 0x1458c0,16, 0x145c00,20, 0x145c58,4, 0x145c70,2, 0x145c7c,7, 0x145d00,4, 0x145d30,2, 0x145d3c,12, 0x145d70,2, 0x145d80,3, 0x145e00,32, 0x146000,6, 0x146100,30, 0x146180,5, 0x146200,6, 0x146300,30, 0x146380,5, 0x146400,11, 0x146430,29, 0x146500,2, 0x14650c,4, 0x146520,5, 0x14653c,1, 0x146544,1, 0x14654c,5, 0x146564,3, 0x146600,4, 0x146620,6, 0x146640,6, 0x146660,6, 0x146680,6, 0x1466a0,4, 0x146800,6, 0x146820,6, 0x146840,6, 0x146860,3, 0x146884,14, 0x1468c0,16, 0x146c00,20, 0x146c58,4, 0x146c70,2, 0x146c7c,7, 0x146d00,4, 0x146d30,2, 0x146d3c,12, 0x146d70,2, 0x146d80,3, 0x146e00,32, 0x147000,6, 0x147100,30, 0x147180,5, 0x147200,6, 0x147300,30, 0x147380,5, 0x147400,11, 0x147430,29, 0x147500,2, 0x14750c,4, 0x147520,5, 0x14753c,1, 0x147544,1, 0x14754c,5, 0x147564,3, 0x147600,4, 0x147620,6, 0x147640,6, 0x147660,6, 0x147680,6, 0x1476a0,4, 0x147800,6, 0x147820,6, 0x147840,6, 0x147860,3, 0x147884,14, 0x1478c0,16, 0x147c00,20, 0x147c58,4, 0x147c70,2, 0x147c7c,7, 0x147d00,4, 0x147d30,2, 0x147d3c,12, 0x147d70,2, 0x147d80,3, 0x147e00,32, 0x148000,6, 0x148100,30, 0x148180,5, 0x148200,6, 0x148300,30, 0x148380,5, 0x148400,11, 0x148430,29, 0x148500,2, 0x14850c,4, 0x148520,5, 0x14853c,1, 0x148544,1, 0x14854c,5, 0x148564,3, 0x148600,4, 0x148620,6, 0x148640,6, 0x148660,6, 0x148680,6, 0x1486a0,4, 0x148800,6, 0x148820,6, 0x148840,6, 0x148860,3, 0x148884,14, 0x1488c0,16, 0x148c00,20, 0x148c58,4, 0x148c70,2, 0x148c7c,7, 0x148d00,4, 0x148d30,2, 0x148d3c,12, 0x148d70,2, 0x148d80,3, 0x148e00,32, 0x149000,6, 0x149100,30, 0x149180,5, 0x149200,6, 0x149300,30, 0x149380,5, 0x149400,11, 0x149430,29, 0x149500,2, 0x14950c,4, 0x149520,5, 0x14953c,1, 0x149544,1, 0x14954c,5, 0x149564,3, 0x149600,4, 0x149620,6, 0x149640,6, 0x149660,6, 0x149680,6, 0x1496a0,4, 0x149800,6, 0x149820,6, 0x149840,6, 0x149860,3, 0x149884,14, 0x1498c0,16, 0x149c00,20, 0x149c58,4, 0x149c70,2, 0x149c7c,7, 0x149d00,4, 0x149d30,2, 0x149d3c,12, 0x149d70,2, 0x149d80,3, 0x149e00,32, 0x14a000,1, 0x153ffc,6, 0x154018,3, 0x154028,3, 0x154038,3, 0x154048,3, 0x154058,3, 0x154068,3, 0x154078,3, 0x154088,12, 0x1540c8,13, 0x154100,29, 0x154178,11, 0x1541c0,3, 0x1541d0,3, 0x1541e0,6, 0x154400,5, 0x154428,5, 0x154450,5, 0x154478,5, 0x1544a0,4, 0x1545ac,1, 0x1545d8,4, 0x154600,6, 0x154620,6, 0x154640,6, 0x154660,6, 0x154680,6, 0x1546a0,6, 0x1546c0,6, 0x1546e0,6, 0x154700,6, 0x154720,6, 0x154740,3, 0x154900,7, 0x154920,36, 0x154c00,1, 0x154c08,1, 0x154c10,5, 0x154c38,1, 0x154c60,7, 0x155000,1, 0x155008,11, 0x155038,10, 0x155068,3, 0x155104,4, 0x155128,3, 0x155204,5, 0x155220,10, 0x155250,3, 0x155280,6, 0x1552a0,6, 0x1552c0,6, 0x1552e0,3, 0x155300,7, 0x180000,6, 0x180020,6, 0x180040,6, 0x180060,6, 0x180080,6, 0x1800a0,6, 0x1800c0,3, 0x180100,1, 0x180110,1, 0x188000,14, 0x188040,69, 0x188180,80, 0x1882c8,3, 0x1882d8,6, 0x1882f8,1, 0x188300,38, 0x1883a0,7, 0x1883c8,2, 0x188400,36, 0x188500,19, 0x188584,1, 0x1885ac,42, 0x188684,1, 0x18868c,1, 0x188694,3, 0x188800,1, 0x189004,15, 0x189044,1, 0x18904c,3, 0x189084,1, 0x189090,4, 0x1890a4,1, 0x1890ac,1, 0x189404,1, 0x189474,35, 0x189504,5, 0x189604,21, 0x189680,33, 0x189804,1, 0x18982c,23, 0x189904,20, 0x189980,17, 0x189a00,17, 0x189a84,1, 0x189a8c,2, 0x189c00,3, 0x189ffc,1, 0x18a004,1, 0x18a07c,33, 0x18a104,1, 0x18a120,11, 0x18a184,3, 0x18a194,41, 0x18a8e0,1, 0x18b004,1, 0x18b020,8, 0x18b044,1, 0x18b060,10, 0x18b100,34, 0x18b204,1, 0x18b214,13, 0x18b280,4, 0x18b304,1, 0x18b30c,1, 0x18b314,1, 0x18b31c,1, 0x18b324,1, 0x18b32c,3, 0x18b340,3, 0x18b400,5, 0x18b800,73, 0x18ba00,18, 0x18ba80,9, 0x18c000,364, 0x18c804,6, 0x18c8e0,1, 0x18d000,1, 0x18d028,1, 0x18d050,1, 0x18d078,1, 0x18d0a0,14, 0x18d1ac,1, 0x18d1d8,4, 0x18d200,6, 0x18d220,6, 0x18d240,3, 0x18d400,3, 0x18d500,6, 0x18d520,6, 0x18d540,6, 0x18d560,6, 0x18d580,6, 0x18d5a0,6, 0x18d5c0,3, 0x18d600,13, 0x18d640,1, 0x18d700,1, 0x200000,5, 0x200020,4, 0x200034,17, 0x200080,1, 0x2000a0,6, 0x200100,5, 0x200120,4, 0x200134,17, 0x200180,1, 0x2001a0,6, 0x200200,5, 0x200220,4, 0x200234,17, 0x200280,1, 0x2002a0,6, 0x200300,5, 0x200320,4, 0x200334,17, 0x200380,1, 0x2003a0,6, 0x200500,6, 0x20051c,7, 0x200540,1, 0x200c00,13, 0x200c40,13, 0x200d00,6, 0x200d80,14, 0x200dc0,2, 0x200e20,6, 0x200e60,3, 0x200e80,6, 0x201000,2, 0x201010,5, 0x201060,32, 0x201100,8, 0x201180,12, 0x201218,13, 0x201250,6, 0x201280,1, 0x201288,6, 0x2012a4,1, 0x201400,8, 0x201424,2, 0x201500,5, 0x201520,4, 0x201800,24, 0x201864,5, 0x201880,8, 0x201900,13, 0x201980,4, 0x2019a0,6, 0x201a40,1, 0x201a60,1, 0x201a68,23, 0x201ac8,6, 0x201b80,12, 0x201c00,6, 0x201c20,6, 0x201c40,6, 0x201c60,3, 0x201d00,6, 0x201d20,6, 0x201d40,3, 0x202000,5, 0x202020,4, 0x202034,17, 0x202080,1, 0x2020a0,6, 0x202100,5, 0x202120,4, 0x202134,17, 0x202180,1, 0x2021a0,6, 0x202200,5, 0x202220,4, 0x202234,17, 0x202280,1, 0x2022a0,6, 0x202300,5, 0x202320,4, 0x202334,17, 0x202380,1, 0x2023a0,6, 0x202500,6, 0x20251c,7, 0x202540,1, 0x202c00,13, 0x202c40,13, 0x202d00,6, 0x202d80,14, 0x202dc0,2, 0x202e20,6, 0x202e60,3, 0x202e80,6, 0x203000,2, 0x203010,5, 0x203060,32, 0x203100,8, 0x203180,12, 0x203218,13, 0x203250,6, 0x203280,1, 0x203288,6, 0x2032a4,1, 0x203400,8, 0x203424,2, 0x203500,5, 0x203520,4, 0x203800,24, 0x203864,5, 0x203880,8, 0x203900,13, 0x203980,4, 0x2039a0,6, 0x203a40,1, 0x203a60,1, 0x203a68,23, 0x203ac8,6, 0x203b80,12, 0x203c00,6, 0x203c20,6, 0x203c40,6, 0x203c60,3, 0x203d00,6, 0x203d20,6, 0x203d40,3, 0x204000,29, 0x204078,4, 0x204090,2, 0x2040a0,7, 0x2040c0,11, 0x204100,14, 0x204140,14, 0x204180,61, 0x204278,4, 0x204290,2, 0x2042a0,7, 0x2042c0,11, 0x204300,14, 0x204340,14, 0x204380,61, 0x204478,4, 0x204490,2, 0x2044a0,7, 0x2044c0,11, 0x204500,14, 0x204540,14, 0x204580,61, 0x204678,4, 0x204690,2, 0x2046a0,7, 0x2046c0,11, 0x204700,14, 0x204740,14, 0x204780,67, 0x204890,1, 0x204a00,8, 0x204a24,15, 0x204a64,30, 0x204b00,4, 0x204b20,2, 0x204c00,6, 0x204c40,14, 0x204c80,9, 0x204d00,9, 0x204d2c,1, 0x204d40,3, 0x204d60,1, 0x204d80,3, 0x204e00,2, 0x204e0c,1, 0x204e14,5, 0x204e2c,1, 0x204e34,5, 0x204e4c,1, 0x204e54,5, 0x204e6c,1, 0x204e74,5, 0x204e8c,1, 0x204e94,5, 0x204eac,1, 0x204eb4,3, 0x205000,29, 0x205078,4, 0x205090,2, 0x2050a0,7, 0x2050c0,11, 0x205100,14, 0x205140,14, 0x205180,61, 0x205278,4, 0x205290,2, 0x2052a0,7, 0x2052c0,11, 0x205300,14, 0x205340,14, 0x205380,61, 0x205478,4, 0x205490,2, 0x2054a0,7, 0x2054c0,11, 0x205500,14, 0x205540,14, 0x205580,61, 0x205678,4, 0x205690,2, 0x2056a0,7, 0x2056c0,11, 0x205700,14, 0x205740,14, 0x205780,67, 0x205890,1, 0x205a00,8, 0x205a24,15, 0x205a64,30, 0x205b00,4, 0x205b20,2, 0x205c00,6, 0x205c40,14, 0x205c80,9, 0x205d00,9, 0x205d2c,1, 0x205d40,3, 0x205d60,1, 0x205d80,3, 0x205e00,2, 0x205e0c,1, 0x205e14,5, 0x205e2c,1, 0x205e34,5, 0x205e4c,1, 0x205e54,5, 0x205e6c,1, 0x205e74,5, 0x205e8c,1, 0x205e94,5, 0x205eac,1, 0x205eb4,3, 0x206000,14, 0x206070,3, 0x206080,6, 0x206100,9, 0x206204,1, 0x20620c,6, 0x206240,13, 0x206280,16, 0x206800,19, 0x206850,10, 0x206880,19, 0x2068d0,10, 0x206900,19, 0x206950,10, 0x206980,19, 0x2069d0,10, 0x206a00,19, 0x206a50,10, 0x206a80,19, 0x206ad0,10, 0x206b00,19, 0x206b50,10, 0x206b80,19, 0x206bd0,10, 0x206c00,19, 0x206c60,6, 0x206c84,1, 0x206c94,8, 0x206cb8,9, 0x206ce0,4, 0x207000,6, 0x207020,3, 0x207040,7, 0x207060,6, 0x207100,5, 0x207138,1, 0x207144,1, 0x207150,2, 0x208000,6, 0x208020,3, 0x208030,9, 0x208100,6, 0x208120,10, 0x208150,8, 0x208400,1, 0x208428,1, 0x208450,1, 0x208478,1, 0x2084a0,8, 0x2085ac,1, 0x2085d8,4, 0x208600,6, 0x208620,6, 0x208640,3, 0x208800,6, 0x208820,3, 0x208830,4, 0x208858,2, 0x208864,1, 0x208874,3, 0x208898,2, 0x2088a4,1, 0x2088b4,3, 0x209000,6, 0x209020,6, 0x209040,4, 0x209080,14, 0x2090bc,1, 0x2090c4,13, 0x2090fc,1, 0x209200,20, 0x20925c,31, 0x209300,24, 0x209380,2, 0x2093a0,1, 0x2093c0,11, 0x209404,3, 0x209420,11, 0x209460,3, 0x209480,6, 0x209500,7, 0x209520,6, 0x209540,1, 0x209558,2, 0x209600,17, 0x209800,496, 0x20a000,6, 0x20a020,6, 0x20a040,4, 0x20a080,14, 0x20a0bc,1, 0x20a0c4,13, 0x20a0fc,1, 0x20a200,20, 0x20a25c,31, 0x20a300,24, 0x20a380,2, 0x20a3a0,1, 0x20a3c0,11, 0x20a404,3, 0x20a420,11, 0x20a460,3, 0x20a480,6, 0x20a500,7, 0x20a520,6, 0x20a540,1, 0x20a558,2, 0x20a600,17, 0x20a800,496, 0x20b000,4, 0x20b020,25, 0x20b088,8, 0x20b100,4, 0x20b120,25, 0x20b188,8, 0x20b200,34, 0x20b300,37, 0x20b400,16, 0x20b464,1, 0x20b474,3, 0x20b500,6, 0x20b520,2, 0x20b530,9, 0x20b570,10, 0x20b5a0,2, 0x20b5b0,9, 0x20b5f0,4, 0x20b620,7, 0x20b640,16, 0x20b700,6, 0x20b720,6, 0x20b740,6, 0x20b760,6, 0x20b780,3, 0x20b800,5, 0x20b818,1, 0x20b854,6, 0x20b880,2, 0x20b8a4,1, 0x20b8ac,2, 0x20ba00,28, 0x20ba7c,13, 0x20bab4,1, 0x20babc,10, 0x20bb04,1, 0x20bb0c,5, 0x20bb24,1, 0x20bb34,9, 0x20bb60,6, 0x20bb80,22, 0x20bbe0,3, 0x20bbf0,2, 0x20bc00,5, 0x20bc18,1, 0x20bc54,6, 0x20bc80,2, 0x20bca4,1, 0x20bcac,2, 0x20be00,28, 0x20be7c,13, 0x20beb4,1, 0x20bebc,10, 0x20bf04,1, 0x20bf0c,5, 0x20bf24,1, 0x20bf34,9, 0x20bf60,6, 0x20bf80,22, 0x20bfe0,3, 0x20bff0,2, 0x20c008,2, 0x20c014,11, 0x20c044,1, 0x20c04c,3, 0x20c05c,1, 0x20c064,1, 0x20c07c,1, 0x20c500,2, 0x20c518,1, 0x20c520,3, 0x20c540,6, 0x20c580,10, 0x20c808,2, 0x20c814,11, 0x20c844,1, 0x20c84c,3, 0x20c85c,1, 0x20c864,1, 0x20c87c,1, 0x20cd00,2, 0x20cd18,1, 0x20cd20,3, 0x20cd40,6, 0x20cd80,10, 0x20d800,2, 0x20d828,2, 0x20d850,2, 0x20d878,2, 0x20d8a0,6, 0x20d9ac,1, 0x20d9d8,4, 0x20da00,6, 0x20da20,6, 0x20da40,6, 0x20da60,6, 0x20da80,3, 0x20dc00,6, 0x20dc20,3, 0x20dc40,2, 0x20dc60,1, 0x210000,5, 0x210020,4, 0x210034,17, 0x210080,1, 0x2100a0,6, 0x210100,5, 0x210120,4, 0x210134,17, 0x210180,1, 0x2101a0,6, 0x210200,5, 0x210220,4, 0x210234,17, 0x210280,1, 0x2102a0,6, 0x210300,5, 0x210320,4, 0x210334,17, 0x210380,1, 0x2103a0,6, 0x210500,6, 0x21051c,7, 0x210540,1, 0x210c00,13, 0x210c40,13, 0x210d00,6, 0x210d80,14, 0x210dc0,2, 0x210e20,6, 0x210e60,3, 0x210e80,6, 0x211000,2, 0x211010,5, 0x211060,32, 0x211100,8, 0x211180,12, 0x211218,13, 0x211250,6, 0x211280,1, 0x211288,6, 0x2112a4,1, 0x211400,8, 0x211424,2, 0x211500,5, 0x211520,4, 0x211800,24, 0x211864,5, 0x211880,8, 0x211900,13, 0x211980,4, 0x2119a0,6, 0x211a40,1, 0x211a60,1, 0x211a68,23, 0x211ac8,6, 0x211b80,12, 0x211c00,6, 0x211c20,6, 0x211c40,6, 0x211c60,3, 0x211d00,6, 0x211d20,6, 0x211d40,3, 0x212000,5, 0x212020,4, 0x212034,17, 0x212080,1, 0x2120a0,6, 0x212100,5, 0x212120,4, 0x212134,17, 0x212180,1, 0x2121a0,6, 0x212200,5, 0x212220,4, 0x212234,17, 0x212280,1, 0x2122a0,6, 0x212300,5, 0x212320,4, 0x212334,17, 0x212380,1, 0x2123a0,6, 0x212500,6, 0x21251c,7, 0x212540,1, 0x212c00,13, 0x212c40,13, 0x212d00,6, 0x212d80,14, 0x212dc0,2, 0x212e20,6, 0x212e60,3, 0x212e80,6, 0x213000,2, 0x213010,5, 0x213060,32, 0x213100,8, 0x213180,12, 0x213218,13, 0x213250,6, 0x213280,1, 0x213288,6, 0x2132a4,1, 0x213400,8, 0x213424,2, 0x213500,5, 0x213520,4, 0x213800,24, 0x213864,5, 0x213880,8, 0x213900,13, 0x213980,4, 0x2139a0,6, 0x213a40,1, 0x213a60,1, 0x213a68,23, 0x213ac8,6, 0x213b80,12, 0x213c00,6, 0x213c20,6, 0x213c40,6, 0x213c60,3, 0x213d00,6, 0x213d20,6, 0x213d40,3, 0x214000,29, 0x214078,4, 0x214090,2, 0x2140a0,7, 0x2140c0,11, 0x214100,14, 0x214140,14, 0x214180,61, 0x214278,4, 0x214290,2, 0x2142a0,7, 0x2142c0,11, 0x214300,14, 0x214340,14, 0x214380,61, 0x214478,4, 0x214490,2, 0x2144a0,7, 0x2144c0,11, 0x214500,14, 0x214540,14, 0x214580,61, 0x214678,4, 0x214690,2, 0x2146a0,7, 0x2146c0,11, 0x214700,14, 0x214740,14, 0x214780,67, 0x214890,1, 0x214a00,8, 0x214a24,15, 0x214a64,30, 0x214b00,4, 0x214b20,2, 0x214c00,6, 0x214c40,14, 0x214c80,9, 0x214d00,9, 0x214d2c,1, 0x214d40,3, 0x214d60,1, 0x214d80,3, 0x214e00,2, 0x214e0c,1, 0x214e14,5, 0x214e2c,1, 0x214e34,5, 0x214e4c,1, 0x214e54,5, 0x214e6c,1, 0x214e74,5, 0x214e8c,1, 0x214e94,5, 0x214eac,1, 0x214eb4,3, 0x215000,29, 0x215078,4, 0x215090,2, 0x2150a0,7, 0x2150c0,11, 0x215100,14, 0x215140,14, 0x215180,61, 0x215278,4, 0x215290,2, 0x2152a0,7, 0x2152c0,11, 0x215300,14, 0x215340,14, 0x215380,61, 0x215478,4, 0x215490,2, 0x2154a0,7, 0x2154c0,11, 0x215500,14, 0x215540,14, 0x215580,61, 0x215678,4, 0x215690,2, 0x2156a0,7, 0x2156c0,11, 0x215700,14, 0x215740,14, 0x215780,67, 0x215890,1, 0x215a00,8, 0x215a24,15, 0x215a64,30, 0x215b00,4, 0x215b20,2, 0x215c00,6, 0x215c40,14, 0x215c80,9, 0x215d00,9, 0x215d2c,1, 0x215d40,3, 0x215d60,1, 0x215d80,3, 0x215e00,2, 0x215e0c,1, 0x215e14,5, 0x215e2c,1, 0x215e34,5, 0x215e4c,1, 0x215e54,5, 0x215e6c,1, 0x215e74,5, 0x215e8c,1, 0x215e94,5, 0x215eac,1, 0x215eb4,3, 0x216000,14, 0x216070,3, 0x216080,6, 0x216100,9, 0x216204,1, 0x21620c,6, 0x216240,13, 0x216280,16, 0x216800,19, 0x216850,10, 0x216880,19, 0x2168d0,10, 0x216900,19, 0x216950,10, 0x216980,19, 0x2169d0,10, 0x216a00,19, 0x216a50,10, 0x216a80,19, 0x216ad0,10, 0x216b00,19, 0x216b50,10, 0x216b80,19, 0x216bd0,10, 0x216c00,19, 0x216c60,6, 0x216c84,1, 0x216c94,8, 0x216cb8,9, 0x216ce0,4, 0x217000,6, 0x217020,3, 0x217040,7, 0x217060,6, 0x217100,5, 0x217138,1, 0x217144,1, 0x217150,2, 0x218000,6, 0x218020,3, 0x218030,9, 0x218100,6, 0x218120,10, 0x218150,8, 0x218400,1, 0x218428,1, 0x218450,1, 0x218478,1, 0x2184a0,8, 0x2185ac,1, 0x2185d8,4, 0x218600,6, 0x218620,6, 0x218640,3, 0x218800,6, 0x218820,3, 0x218830,4, 0x218858,2, 0x218864,1, 0x218874,3, 0x218898,2, 0x2188a4,1, 0x2188b4,3, 0x219000,6, 0x219020,6, 0x219040,4, 0x219080,14, 0x2190bc,1, 0x2190c4,13, 0x2190fc,1, 0x219200,20, 0x21925c,31, 0x219300,24, 0x219380,2, 0x2193a0,1, 0x2193c0,11, 0x219404,3, 0x219420,11, 0x219460,3, 0x219480,6, 0x219500,7, 0x219520,6, 0x219540,1, 0x219558,2, 0x219600,17, 0x219800,496, 0x21a000,6, 0x21a020,6, 0x21a040,4, 0x21a080,14, 0x21a0bc,1, 0x21a0c4,13, 0x21a0fc,1, 0x21a200,20, 0x21a25c,31, 0x21a300,24, 0x21a380,2, 0x21a3a0,1, 0x21a3c0,11, 0x21a404,3, 0x21a420,11, 0x21a460,3, 0x21a480,6, 0x21a500,7, 0x21a520,6, 0x21a540,1, 0x21a558,2, 0x21a600,17, 0x21a800,496, 0x21b000,4, 0x21b020,25, 0x21b088,8, 0x21b100,4, 0x21b120,25, 0x21b188,8, 0x21b200,34, 0x21b300,37, 0x21b400,16, 0x21b464,1, 0x21b474,3, 0x21b500,6, 0x21b520,2, 0x21b530,9, 0x21b570,10, 0x21b5a0,2, 0x21b5b0,9, 0x21b5f0,4, 0x21b620,7, 0x21b640,16, 0x21b700,6, 0x21b720,6, 0x21b740,6, 0x21b760,6, 0x21b780,3, 0x21b800,5, 0x21b818,1, 0x21b854,6, 0x21b880,2, 0x21b8a4,1, 0x21b8ac,2, 0x21ba00,28, 0x21ba7c,13, 0x21bab4,1, 0x21babc,10, 0x21bb04,1, 0x21bb0c,5, 0x21bb24,1, 0x21bb34,9, 0x21bb60,6, 0x21bb80,22, 0x21bbe0,3, 0x21bbf0,2, 0x21bc00,5, 0x21bc18,1, 0x21bc54,6, 0x21bc80,2, 0x21bca4,1, 0x21bcac,2, 0x21be00,28, 0x21be7c,13, 0x21beb4,1, 0x21bebc,10, 0x21bf04,1, 0x21bf0c,5, 0x21bf24,1, 0x21bf34,9, 0x21bf60,6, 0x21bf80,22, 0x21bfe0,3, 0x21bff0,2, 0x21c008,2, 0x21c014,11, 0x21c044,1, 0x21c04c,3, 0x21c05c,1, 0x21c064,1, 0x21c07c,1, 0x21c500,2, 0x21c518,1, 0x21c520,3, 0x21c540,6, 0x21c580,10, 0x21c808,2, 0x21c814,11, 0x21c844,1, 0x21c84c,3, 0x21c85c,1, 0x21c864,1, 0x21c87c,1, 0x21cd00,2, 0x21cd18,1, 0x21cd20,3, 0x21cd40,6, 0x21cd80,10, 0x21d800,2, 0x21d828,2, 0x21d850,2, 0x21d878,2, 0x21d8a0,6, 0x21d9ac,1, 0x21d9d8,4, 0x21da00,6, 0x21da20,6, 0x21da40,6, 0x21da60,6, 0x21da80,3, 0x21dc00,6, 0x21dc20,3, 0x21dc40,2, 0x21dc60,1, 0x220000,5, 0x220020,4, 0x220034,17, 0x220080,1, 0x2200a0,6, 0x220100,5, 0x220120,4, 0x220134,17, 0x220180,1, 0x2201a0,6, 0x220200,5, 0x220220,4, 0x220234,17, 0x220280,1, 0x2202a0,6, 0x220300,5, 0x220320,4, 0x220334,17, 0x220380,1, 0x2203a0,6, 0x220500,6, 0x22051c,7, 0x220540,1, 0x220c00,13, 0x220c40,13, 0x220d00,6, 0x220d80,14, 0x220dc0,2, 0x220e20,6, 0x220e60,3, 0x220e80,6, 0x221000,2, 0x221010,5, 0x221060,32, 0x221100,8, 0x221180,12, 0x221218,13, 0x221250,6, 0x221280,1, 0x221288,6, 0x2212a4,1, 0x221400,8, 0x221424,2, 0x221500,5, 0x221520,4, 0x221800,24, 0x221864,5, 0x221880,8, 0x221900,13, 0x221980,4, 0x2219a0,6, 0x221a40,1, 0x221a60,1, 0x221a68,23, 0x221ac8,6, 0x221b80,12, 0x221c00,6, 0x221c20,6, 0x221c40,6, 0x221c60,3, 0x221d00,6, 0x221d20,6, 0x221d40,3, 0x222000,5, 0x222020,4, 0x222034,17, 0x222080,1, 0x2220a0,6, 0x222100,5, 0x222120,4, 0x222134,17, 0x222180,1, 0x2221a0,6, 0x222200,5, 0x222220,4, 0x222234,17, 0x222280,1, 0x2222a0,6, 0x222300,5, 0x222320,4, 0x222334,17, 0x222380,1, 0x2223a0,6, 0x222500,6, 0x22251c,7, 0x222540,1, 0x222c00,13, 0x222c40,13, 0x222d00,6, 0x222d80,14, 0x222dc0,2, 0x222e20,6, 0x222e60,3, 0x222e80,6, 0x223000,2, 0x223010,5, 0x223060,32, 0x223100,8, 0x223180,12, 0x223218,13, 0x223250,6, 0x223280,1, 0x223288,6, 0x2232a4,1, 0x223400,8, 0x223424,2, 0x223500,5, 0x223520,4, 0x223800,24, 0x223864,5, 0x223880,8, 0x223900,13, 0x223980,4, 0x2239a0,6, 0x223a40,1, 0x223a60,1, 0x223a68,23, 0x223ac8,6, 0x223b80,12, 0x223c00,6, 0x223c20,6, 0x223c40,6, 0x223c60,3, 0x223d00,6, 0x223d20,6, 0x223d40,3, 0x224000,29, 0x224078,4, 0x224090,2, 0x2240a0,7, 0x2240c0,11, 0x224100,14, 0x224140,14, 0x224180,61, 0x224278,4, 0x224290,2, 0x2242a0,7, 0x2242c0,11, 0x224300,14, 0x224340,14, 0x224380,61, 0x224478,4, 0x224490,2, 0x2244a0,7, 0x2244c0,11, 0x224500,14, 0x224540,14, 0x224580,61, 0x224678,4, 0x224690,2, 0x2246a0,7, 0x2246c0,11, 0x224700,14, 0x224740,14, 0x224780,67, 0x224890,1, 0x224a00,8, 0x224a24,15, 0x224a64,30, 0x224b00,4, 0x224b20,2, 0x224c00,6, 0x224c40,14, 0x224c80,9, 0x224d00,9, 0x224d2c,1, 0x224d40,3, 0x224d60,1, 0x224d80,3, 0x224e00,2, 0x224e0c,1, 0x224e14,5, 0x224e2c,1, 0x224e34,5, 0x224e4c,1, 0x224e54,5, 0x224e6c,1, 0x224e74,5, 0x224e8c,1, 0x224e94,5, 0x224eac,1, 0x224eb4,3, 0x225000,29, 0x225078,4, 0x225090,2, 0x2250a0,7, 0x2250c0,11, 0x225100,14, 0x225140,14, 0x225180,61, 0x225278,4, 0x225290,2, 0x2252a0,7, 0x2252c0,11, 0x225300,14, 0x225340,14, 0x225380,61, 0x225478,4, 0x225490,2, 0x2254a0,7, 0x2254c0,11, 0x225500,14, 0x225540,14, 0x225580,61, 0x225678,4, 0x225690,2, 0x2256a0,7, 0x2256c0,11, 0x225700,14, 0x225740,14, 0x225780,67, 0x225890,1, 0x225a00,8, 0x225a24,15, 0x225a64,30, 0x225b00,4, 0x225b20,2, 0x225c00,6, 0x225c40,14, 0x225c80,9, 0x225d00,9, 0x225d2c,1, 0x225d40,3, 0x225d60,1, 0x225d80,3, 0x225e00,2, 0x225e0c,1, 0x225e14,5, 0x225e2c,1, 0x225e34,5, 0x225e4c,1, 0x225e54,5, 0x225e6c,1, 0x225e74,5, 0x225e8c,1, 0x225e94,5, 0x225eac,1, 0x225eb4,3, 0x226000,14, 0x226070,3, 0x226080,6, 0x226100,9, 0x226204,1, 0x22620c,6, 0x226240,13, 0x226280,16, 0x226800,19, 0x226850,10, 0x226880,19, 0x2268d0,10, 0x226900,19, 0x226950,10, 0x226980,19, 0x2269d0,10, 0x226a00,19, 0x226a50,10, 0x226a80,19, 0x226ad0,10, 0x226b00,19, 0x226b50,10, 0x226b80,19, 0x226bd0,10, 0x226c00,19, 0x226c60,6, 0x226c84,1, 0x226c94,8, 0x226cb8,9, 0x226ce0,4, 0x227000,6, 0x227020,3, 0x227040,7, 0x227060,6, 0x227100,5, 0x227138,1, 0x227144,1, 0x227150,2, 0x228000,6, 0x228020,3, 0x228030,9, 0x228100,6, 0x228120,10, 0x228150,8, 0x228400,1, 0x228428,1, 0x228450,1, 0x228478,1, 0x2284a0,8, 0x2285ac,1, 0x2285d8,4, 0x228600,6, 0x228620,6, 0x228640,3, 0x228800,6, 0x228820,3, 0x228830,4, 0x228858,2, 0x228864,1, 0x228874,3, 0x228898,2, 0x2288a4,1, 0x2288b4,3, 0x229000,6, 0x229020,6, 0x229040,4, 0x229080,14, 0x2290bc,1, 0x2290c4,13, 0x2290fc,1, 0x229200,20, 0x22925c,31, 0x229300,24, 0x229380,2, 0x2293a0,1, 0x2293c0,11, 0x229404,3, 0x229420,11, 0x229460,3, 0x229480,6, 0x229500,7, 0x229520,6, 0x229540,1, 0x229558,2, 0x229600,17, 0x229800,496, 0x22a000,6, 0x22a020,6, 0x22a040,4, 0x22a080,14, 0x22a0bc,1, 0x22a0c4,13, 0x22a0fc,1, 0x22a200,20, 0x22a25c,31, 0x22a300,24, 0x22a380,2, 0x22a3a0,1, 0x22a3c0,11, 0x22a404,3, 0x22a420,11, 0x22a460,3, 0x22a480,6, 0x22a500,7, 0x22a520,6, 0x22a540,1, 0x22a558,2, 0x22a600,17, 0x22a800,496, 0x22b000,4, 0x22b020,25, 0x22b088,8, 0x22b100,4, 0x22b120,25, 0x22b188,8, 0x22b200,34, 0x22b300,37, 0x22b400,16, 0x22b464,1, 0x22b474,3, 0x22b500,6, 0x22b520,2, 0x22b530,9, 0x22b570,10, 0x22b5a0,2, 0x22b5b0,9, 0x22b5f0,4, 0x22b620,7, 0x22b640,16, 0x22b700,6, 0x22b720,6, 0x22b740,6, 0x22b760,6, 0x22b780,3, 0x22b800,5, 0x22b818,1, 0x22b854,6, 0x22b880,2, 0x22b8a4,1, 0x22b8ac,2, 0x22ba00,28, 0x22ba7c,13, 0x22bab4,1, 0x22babc,10, 0x22bb04,1, 0x22bb0c,5, 0x22bb24,1, 0x22bb34,9, 0x22bb60,6, 0x22bb80,22, 0x22bbe0,3, 0x22bbf0,2, 0x22bc00,5, 0x22bc18,1, 0x22bc54,6, 0x22bc80,2, 0x22bca4,1, 0x22bcac,2, 0x22be00,28, 0x22be7c,13, 0x22beb4,1, 0x22bebc,10, 0x22bf04,1, 0x22bf0c,5, 0x22bf24,1, 0x22bf34,9, 0x22bf60,6, 0x22bf80,22, 0x22bfe0,3, 0x22bff0,2, 0x22c008,2, 0x22c014,11, 0x22c044,1, 0x22c04c,3, 0x22c05c,1, 0x22c064,1, 0x22c07c,1, 0x22c500,2, 0x22c518,1, 0x22c520,3, 0x22c540,6, 0x22c580,10, 0x22c808,2, 0x22c814,11, 0x22c844,1, 0x22c84c,3, 0x22c85c,1, 0x22c864,1, 0x22c87c,1, 0x22cd00,2, 0x22cd18,1, 0x22cd20,3, 0x22cd40,6, 0x22cd80,10, 0x22d800,2, 0x22d828,2, 0x22d850,2, 0x22d878,2, 0x22d8a0,6, 0x22d9ac,1, 0x22d9d8,4, 0x22da00,6, 0x22da20,6, 0x22da40,6, 0x22da60,6, 0x22da80,3, 0x22dc00,6, 0x22dc20,3, 0x22dc40,2, 0x22dc60,1, 0x230000,5, 0x230020,4, 0x230034,17, 0x230080,1, 0x2300a0,6, 0x230100,5, 0x230120,4, 0x230134,17, 0x230180,1, 0x2301a0,6, 0x230200,5, 0x230220,4, 0x230234,17, 0x230280,1, 0x2302a0,6, 0x230300,5, 0x230320,4, 0x230334,17, 0x230380,1, 0x2303a0,6, 0x230500,6, 0x23051c,7, 0x230540,1, 0x230c00,13, 0x230c40,13, 0x230d00,6, 0x230d80,14, 0x230dc0,2, 0x230e20,6, 0x230e60,3, 0x230e80,6, 0x231000,2, 0x231010,5, 0x231060,32, 0x231100,8, 0x231180,12, 0x231218,13, 0x231250,6, 0x231280,1, 0x231288,6, 0x2312a4,1, 0x231400,8, 0x231424,2, 0x231500,5, 0x231520,4, 0x231800,24, 0x231864,5, 0x231880,8, 0x231900,13, 0x231980,4, 0x2319a0,6, 0x231a40,1, 0x231a60,1, 0x231a68,23, 0x231ac8,6, 0x231b80,12, 0x231c00,6, 0x231c20,6, 0x231c40,6, 0x231c60,3, 0x231d00,6, 0x231d20,6, 0x231d40,3, 0x232000,5, 0x232020,4, 0x232034,17, 0x232080,1, 0x2320a0,6, 0x232100,5, 0x232120,4, 0x232134,17, 0x232180,1, 0x2321a0,6, 0x232200,5, 0x232220,4, 0x232234,17, 0x232280,1, 0x2322a0,6, 0x232300,5, 0x232320,4, 0x232334,17, 0x232380,1, 0x2323a0,6, 0x232500,6, 0x23251c,7, 0x232540,1, 0x232c00,13, 0x232c40,13, 0x232d00,6, 0x232d80,14, 0x232dc0,2, 0x232e20,6, 0x232e60,3, 0x232e80,6, 0x233000,2, 0x233010,5, 0x233060,32, 0x233100,8, 0x233180,12, 0x233218,13, 0x233250,6, 0x233280,1, 0x233288,6, 0x2332a4,1, 0x233400,8, 0x233424,2, 0x233500,5, 0x233520,4, 0x233800,24, 0x233864,5, 0x233880,8, 0x233900,13, 0x233980,4, 0x2339a0,6, 0x233a40,1, 0x233a60,1, 0x233a68,23, 0x233ac8,6, 0x233b80,12, 0x233c00,6, 0x233c20,6, 0x233c40,6, 0x233c60,3, 0x233d00,6, 0x233d20,6, 0x233d40,3, 0x234000,29, 0x234078,4, 0x234090,2, 0x2340a0,7, 0x2340c0,11, 0x234100,14, 0x234140,14, 0x234180,61, 0x234278,4, 0x234290,2, 0x2342a0,7, 0x2342c0,11, 0x234300,14, 0x234340,14, 0x234380,61, 0x234478,4, 0x234490,2, 0x2344a0,7, 0x2344c0,11, 0x234500,14, 0x234540,14, 0x234580,61, 0x234678,4, 0x234690,2, 0x2346a0,7, 0x2346c0,11, 0x234700,14, 0x234740,14, 0x234780,67, 0x234890,1, 0x234a00,8, 0x234a24,15, 0x234a64,30, 0x234b00,4, 0x234b20,2, 0x234c00,6, 0x234c40,14, 0x234c80,9, 0x234d00,9, 0x234d2c,1, 0x234d40,3, 0x234d60,1, 0x234d80,3, 0x234e00,2, 0x234e0c,1, 0x234e14,5, 0x234e2c,1, 0x234e34,5, 0x234e4c,1, 0x234e54,5, 0x234e6c,1, 0x234e74,5, 0x234e8c,1, 0x234e94,5, 0x234eac,1, 0x234eb4,3, 0x235000,29, 0x235078,4, 0x235090,2, 0x2350a0,7, 0x2350c0,11, 0x235100,14, 0x235140,14, 0x235180,61, 0x235278,4, 0x235290,2, 0x2352a0,7, 0x2352c0,11, 0x235300,14, 0x235340,14, 0x235380,61, 0x235478,4, 0x235490,2, 0x2354a0,7, 0x2354c0,11, 0x235500,14, 0x235540,14, 0x235580,61, 0x235678,4, 0x235690,2, 0x2356a0,7, 0x2356c0,11, 0x235700,14, 0x235740,14, 0x235780,67, 0x235890,1, 0x235a00,8, 0x235a24,15, 0x235a64,30, 0x235b00,4, 0x235b20,2, 0x235c00,6, 0x235c40,14, 0x235c80,9, 0x235d00,9, 0x235d2c,1, 0x235d40,3, 0x235d60,1, 0x235d80,3, 0x235e00,2, 0x235e0c,1, 0x235e14,5, 0x235e2c,1, 0x235e34,5, 0x235e4c,1, 0x235e54,5, 0x235e6c,1, 0x235e74,5, 0x235e8c,1, 0x235e94,5, 0x235eac,1, 0x235eb4,3, 0x236000,14, 0x236070,3, 0x236080,6, 0x236100,9, 0x236204,1, 0x23620c,6, 0x236240,13, 0x236280,16, 0x236800,19, 0x236850,10, 0x236880,19, 0x2368d0,10, 0x236900,19, 0x236950,10, 0x236980,19, 0x2369d0,10, 0x236a00,19, 0x236a50,10, 0x236a80,19, 0x236ad0,10, 0x236b00,19, 0x236b50,10, 0x236b80,19, 0x236bd0,10, 0x236c00,19, 0x236c60,6, 0x236c84,1, 0x236c94,8, 0x236cb8,9, 0x236ce0,4, 0x237000,6, 0x237020,3, 0x237040,7, 0x237060,6, 0x237100,5, 0x237138,1, 0x237144,1, 0x237150,2, 0x238000,6, 0x238020,3, 0x238030,9, 0x238100,6, 0x238120,10, 0x238150,8, 0x238400,1, 0x238428,1, 0x238450,1, 0x238478,1, 0x2384a0,8, 0x2385ac,1, 0x2385d8,4, 0x238600,6, 0x238620,6, 0x238640,3, 0x238800,6, 0x238820,3, 0x238830,4, 0x238858,2, 0x238864,1, 0x238874,3, 0x238898,2, 0x2388a4,1, 0x2388b4,3, 0x239000,6, 0x239020,6, 0x239040,4, 0x239080,14, 0x2390bc,1, 0x2390c4,13, 0x2390fc,1, 0x239200,20, 0x23925c,31, 0x239300,24, 0x239380,2, 0x2393a0,1, 0x2393c0,11, 0x239404,3, 0x239420,11, 0x239460,3, 0x239480,6, 0x239500,7, 0x239520,6, 0x239540,1, 0x239558,2, 0x239600,17, 0x239800,496, 0x23a000,6, 0x23a020,6, 0x23a040,4, 0x23a080,14, 0x23a0bc,1, 0x23a0c4,13, 0x23a0fc,1, 0x23a200,20, 0x23a25c,31, 0x23a300,24, 0x23a380,2, 0x23a3a0,1, 0x23a3c0,11, 0x23a404,3, 0x23a420,11, 0x23a460,3, 0x23a480,6, 0x23a500,7, 0x23a520,6, 0x23a540,1, 0x23a558,2, 0x23a600,17, 0x23a800,496, 0x23b000,4, 0x23b020,25, 0x23b088,8, 0x23b100,4, 0x23b120,25, 0x23b188,8, 0x23b200,34, 0x23b300,37, 0x23b400,16, 0x23b464,1, 0x23b474,3, 0x23b500,6, 0x23b520,2, 0x23b530,9, 0x23b570,10, 0x23b5a0,2, 0x23b5b0,9, 0x23b5f0,4, 0x23b620,7, 0x23b640,16, 0x23b700,6, 0x23b720,6, 0x23b740,6, 0x23b760,6, 0x23b780,3, 0x23b800,5, 0x23b818,1, 0x23b854,6, 0x23b880,2, 0x23b8a4,1, 0x23b8ac,2, 0x23ba00,28, 0x23ba7c,13, 0x23bab4,1, 0x23babc,10, 0x23bb04,1, 0x23bb0c,5, 0x23bb24,1, 0x23bb34,9, 0x23bb60,6, 0x23bb80,22, 0x23bbe0,3, 0x23bbf0,2, 0x23bc00,5, 0x23bc18,1, 0x23bc54,6, 0x23bc80,2, 0x23bca4,1, 0x23bcac,2, 0x23be00,28, 0x23be7c,13, 0x23beb4,1, 0x23bebc,10, 0x23bf04,1, 0x23bf0c,5, 0x23bf24,1, 0x23bf34,9, 0x23bf60,6, 0x23bf80,22, 0x23bfe0,3, 0x23bff0,2, 0x23c008,2, 0x23c014,11, 0x23c044,1, 0x23c04c,3, 0x23c05c,1, 0x23c064,1, 0x23c07c,1, 0x23c500,2, 0x23c518,1, 0x23c520,3, 0x23c540,6, 0x23c580,10, 0x23c808,2, 0x23c814,11, 0x23c844,1, 0x23c84c,3, 0x23c85c,1, 0x23c864,1, 0x23c87c,1, 0x23cd00,2, 0x23cd18,1, 0x23cd20,3, 0x23cd40,6, 0x23cd80,10, 0x23d800,2, 0x23d828,2, 0x23d850,2, 0x23d878,2, 0x23d8a0,6, 0x23d9ac,1, 0x23d9d8,4, 0x23da00,6, 0x23da20,6, 0x23da40,6, 0x23da60,6, 0x23da80,3, 0x23dc00,6, 0x23dc20,3, 0x23dc40,2, 0x23dc60,1, 0x240000,5, 0x240020,4, 0x240034,17, 0x240080,1, 0x2400a0,6, 0x240100,5, 0x240120,4, 0x240134,17, 0x240180,1, 0x2401a0,6, 0x240200,5, 0x240220,4, 0x240234,17, 0x240280,1, 0x2402a0,6, 0x240300,5, 0x240320,4, 0x240334,17, 0x240380,1, 0x2403a0,6, 0x240500,6, 0x24051c,7, 0x240540,1, 0x240c00,13, 0x240c40,13, 0x240d00,6, 0x240d80,14, 0x240dc0,2, 0x240e20,6, 0x240e60,3, 0x240e80,6, 0x241000,2, 0x241010,5, 0x241060,32, 0x241100,8, 0x241180,12, 0x241218,13, 0x241250,6, 0x241280,1, 0x241288,6, 0x2412a4,1, 0x241400,8, 0x241424,2, 0x241500,5, 0x241520,4, 0x241800,24, 0x241864,5, 0x241880,8, 0x241900,13, 0x241980,4, 0x2419a0,6, 0x241a40,1, 0x241a60,1, 0x241a68,23, 0x241ac8,6, 0x241b80,12, 0x241c00,6, 0x241c20,6, 0x241c40,6, 0x241c60,3, 0x241d00,6, 0x241d20,6, 0x241d40,3, 0x242000,5, 0x242020,4, 0x242034,17, 0x242080,1, 0x2420a0,6, 0x242100,5, 0x242120,4, 0x242134,17, 0x242180,1, 0x2421a0,6, 0x242200,5, 0x242220,4, 0x242234,17, 0x242280,1, 0x2422a0,6, 0x242300,5, 0x242320,4, 0x242334,17, 0x242380,1, 0x2423a0,6, 0x242500,6, 0x24251c,7, 0x242540,1, 0x242c00,13, 0x242c40,13, 0x242d00,6, 0x242d80,14, 0x242dc0,2, 0x242e20,6, 0x242e60,3, 0x242e80,6, 0x243000,2, 0x243010,5, 0x243060,32, 0x243100,8, 0x243180,12, 0x243218,13, 0x243250,6, 0x243280,1, 0x243288,6, 0x2432a4,1, 0x243400,8, 0x243424,2, 0x243500,5, 0x243520,4, 0x243800,24, 0x243864,5, 0x243880,8, 0x243900,13, 0x243980,4, 0x2439a0,6, 0x243a40,1, 0x243a60,1, 0x243a68,23, 0x243ac8,6, 0x243b80,12, 0x243c00,6, 0x243c20,6, 0x243c40,6, 0x243c60,3, 0x243d00,6, 0x243d20,6, 0x243d40,3, 0x244000,29, 0x244078,4, 0x244090,2, 0x2440a0,7, 0x2440c0,11, 0x244100,14, 0x244140,14, 0x244180,61, 0x244278,4, 0x244290,2, 0x2442a0,7, 0x2442c0,11, 0x244300,14, 0x244340,14, 0x244380,61, 0x244478,4, 0x244490,2, 0x2444a0,7, 0x2444c0,11, 0x244500,14, 0x244540,14, 0x244580,61, 0x244678,4, 0x244690,2, 0x2446a0,7, 0x2446c0,11, 0x244700,14, 0x244740,14, 0x244780,67, 0x244890,1, 0x244a00,8, 0x244a24,15, 0x244a64,30, 0x244b00,4, 0x244b20,2, 0x244c00,6, 0x244c40,14, 0x244c80,9, 0x244d00,9, 0x244d2c,1, 0x244d40,3, 0x244d60,1, 0x244d80,3, 0x244e00,2, 0x244e0c,1, 0x244e14,5, 0x244e2c,1, 0x244e34,5, 0x244e4c,1, 0x244e54,5, 0x244e6c,1, 0x244e74,5, 0x244e8c,1, 0x244e94,5, 0x244eac,1, 0x244eb4,3, 0x245000,29, 0x245078,4, 0x245090,2, 0x2450a0,7, 0x2450c0,11, 0x245100,14, 0x245140,14, 0x245180,61, 0x245278,4, 0x245290,2, 0x2452a0,7, 0x2452c0,11, 0x245300,14, 0x245340,14, 0x245380,61, 0x245478,4, 0x245490,2, 0x2454a0,7, 0x2454c0,11, 0x245500,14, 0x245540,14, 0x245580,61, 0x245678,4, 0x245690,2, 0x2456a0,7, 0x2456c0,11, 0x245700,14, 0x245740,14, 0x245780,67, 0x245890,1, 0x245a00,8, 0x245a24,15, 0x245a64,30, 0x245b00,4, 0x245b20,2, 0x245c00,6, 0x245c40,14, 0x245c80,9, 0x245d00,9, 0x245d2c,1, 0x245d40,3, 0x245d60,1, 0x245d80,3, 0x245e00,2, 0x245e0c,1, 0x245e14,5, 0x245e2c,1, 0x245e34,5, 0x245e4c,1, 0x245e54,5, 0x245e6c,1, 0x245e74,5, 0x245e8c,1, 0x245e94,5, 0x245eac,1, 0x245eb4,3, 0x246000,14, 0x246070,3, 0x246080,6, 0x246100,9, 0x246204,1, 0x24620c,6, 0x246240,13, 0x246280,16, 0x246400,8, 0x246424,15, 0x246464,15, 0x2464a4,15, 0x2464e4,30, 0x246580,10, 0x2465ac,1, 0x2465b4,5, 0x2465cc,1, 0x2465d4,5, 0x2465ec,1, 0x2465f4,13, 0x246680,4, 0x246694,2, 0x2466a0,5, 0x2466c0,5, 0x2466e0,4, 0x246800,19, 0x246850,10, 0x246880,19, 0x2468d0,10, 0x246900,19, 0x246950,10, 0x246980,19, 0x2469d0,10, 0x246a00,19, 0x246a50,10, 0x246a80,19, 0x246ad0,10, 0x246b00,19, 0x246b50,10, 0x246b80,19, 0x246bd0,10, 0x246c00,19, 0x246c60,6, 0x246c84,1, 0x246c94,8, 0x246cb8,9, 0x246ce0,4, 0x247000,6, 0x247020,3, 0x247040,7, 0x247060,6, 0x247100,5, 0x247138,1, 0x247144,1, 0x247150,2, 0x248000,6, 0x248020,3, 0x248030,9, 0x248100,6, 0x248120,10, 0x248150,8, 0x248400,1, 0x248428,1, 0x248450,1, 0x248478,1, 0x2484a0,8, 0x2485ac,1, 0x2485d8,4, 0x248600,6, 0x248620,6, 0x248640,3, 0x248800,6, 0x248820,3, 0x248830,4, 0x248858,2, 0x248864,1, 0x248874,3, 0x248898,2, 0x2488a4,1, 0x2488b4,3, 0x249000,6, 0x249020,6, 0x249040,4, 0x249080,14, 0x2490bc,1, 0x2490c4,13, 0x2490fc,1, 0x249200,20, 0x24925c,31, 0x249300,24, 0x249380,2, 0x2493a0,1, 0x2493c0,11, 0x249404,3, 0x249420,11, 0x249460,3, 0x249480,6, 0x249500,7, 0x249520,6, 0x249540,1, 0x249558,2, 0x249600,17, 0x249800,496, 0x24a000,6, 0x24a020,6, 0x24a040,4, 0x24a080,14, 0x24a0bc,1, 0x24a0c4,13, 0x24a0fc,1, 0x24a200,20, 0x24a25c,31, 0x24a300,24, 0x24a380,2, 0x24a3a0,1, 0x24a3c0,11, 0x24a404,3, 0x24a420,11, 0x24a460,3, 0x24a480,6, 0x24a500,7, 0x24a520,6, 0x24a540,1, 0x24a558,2, 0x24a600,17, 0x24a800,496, 0x24b000,4, 0x24b020,25, 0x24b088,8, 0x24b100,4, 0x24b120,25, 0x24b188,8, 0x24b200,34, 0x24b300,37, 0x24b400,16, 0x24b464,1, 0x24b474,3, 0x24b500,6, 0x24b520,2, 0x24b530,9, 0x24b570,10, 0x24b5a0,2, 0x24b5b0,9, 0x24b5f0,4, 0x24b620,7, 0x24b640,16, 0x24b700,6, 0x24b720,6, 0x24b740,6, 0x24b760,6, 0x24b780,3, 0x24b800,5, 0x24b818,1, 0x24b854,6, 0x24b880,2, 0x24b8a4,1, 0x24b8ac,2, 0x24ba00,28, 0x24ba7c,13, 0x24bab4,1, 0x24babc,10, 0x24bb04,1, 0x24bb0c,5, 0x24bb24,1, 0x24bb34,9, 0x24bb60,6, 0x24bb80,22, 0x24bbe0,3, 0x24bbf0,2, 0x24bc00,5, 0x24bc18,1, 0x24bc54,6, 0x24bc80,2, 0x24bca4,1, 0x24bcac,2, 0x24be00,28, 0x24be7c,13, 0x24beb4,1, 0x24bebc,10, 0x24bf04,1, 0x24bf0c,5, 0x24bf24,1, 0x24bf34,9, 0x24bf60,6, 0x24bf80,22, 0x24bfe0,3, 0x24bff0,2, 0x24c008,2, 0x24c014,11, 0x24c044,1, 0x24c04c,3, 0x24c05c,1, 0x24c064,1, 0x24c07c,1, 0x24c500,2, 0x24c518,1, 0x24c520,3, 0x24c540,6, 0x24c580,10, 0x24c808,2, 0x24c814,11, 0x24c844,1, 0x24c84c,3, 0x24c85c,1, 0x24c864,1, 0x24c87c,1, 0x24cd00,2, 0x24cd18,1, 0x24cd20,3, 0x24cd40,6, 0x24cd80,10, 0x24d800,2, 0x24d828,2, 0x24d850,2, 0x24d878,2, 0x24d8a0,6, 0x24d9ac,1, 0x24d9d8,4, 0x24da00,6, 0x24da20,6, 0x24da40,6, 0x24da60,6, 0x24da80,3, 0x24dc00,6, 0x24dc20,3, 0x24dc40,2, 0x24dc60,1, 0x250000,5, 0x250020,4, 0x250034,17, 0x250080,1, 0x2500a0,6, 0x250100,5, 0x250120,4, 0x250134,17, 0x250180,1, 0x2501a0,6, 0x250200,5, 0x250220,4, 0x250234,17, 0x250280,1, 0x2502a0,6, 0x250300,5, 0x250320,4, 0x250334,17, 0x250380,1, 0x2503a0,6, 0x250500,6, 0x25051c,7, 0x250540,1, 0x250c00,13, 0x250c40,13, 0x250d00,6, 0x250d80,14, 0x250dc0,2, 0x250e20,6, 0x250e60,3, 0x250e80,6, 0x251000,2, 0x251010,5, 0x251060,32, 0x251100,8, 0x251180,12, 0x251218,13, 0x251250,6, 0x251280,1, 0x251288,6, 0x2512a4,1, 0x251400,8, 0x251424,2, 0x251500,5, 0x251520,4, 0x251800,24, 0x251864,5, 0x251880,8, 0x251900,13, 0x251980,4, 0x2519a0,6, 0x251a40,1, 0x251a60,1, 0x251a68,23, 0x251ac8,6, 0x251b80,12, 0x251c00,6, 0x251c20,6, 0x251c40,6, 0x251c60,3, 0x251d00,6, 0x251d20,6, 0x251d40,3, 0x252000,5, 0x252020,4, 0x252034,17, 0x252080,1, 0x2520a0,6, 0x252100,5, 0x252120,4, 0x252134,17, 0x252180,1, 0x2521a0,6, 0x252200,5, 0x252220,4, 0x252234,17, 0x252280,1, 0x2522a0,6, 0x252300,5, 0x252320,4, 0x252334,17, 0x252380,1, 0x2523a0,6, 0x252500,6, 0x25251c,7, 0x252540,1, 0x252c00,13, 0x252c40,13, 0x252d00,6, 0x252d80,14, 0x252dc0,2, 0x252e20,6, 0x252e60,3, 0x252e80,6, 0x253000,2, 0x253010,5, 0x253060,32, 0x253100,8, 0x253180,12, 0x253218,13, 0x253250,6, 0x253280,1, 0x253288,6, 0x2532a4,1, 0x253400,8, 0x253424,2, 0x253500,5, 0x253520,4, 0x253800,24, 0x253864,5, 0x253880,8, 0x253900,13, 0x253980,4, 0x2539a0,6, 0x253a40,1, 0x253a60,1, 0x253a68,23, 0x253ac8,6, 0x253b80,12, 0x253c00,6, 0x253c20,6, 0x253c40,6, 0x253c60,3, 0x253d00,6, 0x253d20,6, 0x253d40,3, 0x254000,29, 0x254078,4, 0x254090,2, 0x2540a0,7, 0x2540c0,11, 0x254100,14, 0x254140,14, 0x254180,61, 0x254278,4, 0x254290,2, 0x2542a0,7, 0x2542c0,11, 0x254300,14, 0x254340,14, 0x254380,61, 0x254478,4, 0x254490,2, 0x2544a0,7, 0x2544c0,11, 0x254500,14, 0x254540,14, 0x254580,61, 0x254678,4, 0x254690,2, 0x2546a0,7, 0x2546c0,11, 0x254700,14, 0x254740,14, 0x254780,67, 0x254890,1, 0x254a00,8, 0x254a24,15, 0x254a64,30, 0x254b00,4, 0x254b20,2, 0x254c00,6, 0x254c40,14, 0x254c80,9, 0x254d00,9, 0x254d2c,1, 0x254d40,3, 0x254d60,1, 0x254d80,3, 0x254e00,2, 0x254e0c,1, 0x254e14,5, 0x254e2c,1, 0x254e34,5, 0x254e4c,1, 0x254e54,5, 0x254e6c,1, 0x254e74,5, 0x254e8c,1, 0x254e94,5, 0x254eac,1, 0x254eb4,3, 0x255000,29, 0x255078,4, 0x255090,2, 0x2550a0,7, 0x2550c0,11, 0x255100,14, 0x255140,14, 0x255180,61, 0x255278,4, 0x255290,2, 0x2552a0,7, 0x2552c0,11, 0x255300,14, 0x255340,14, 0x255380,61, 0x255478,4, 0x255490,2, 0x2554a0,7, 0x2554c0,11, 0x255500,14, 0x255540,14, 0x255580,61, 0x255678,4, 0x255690,2, 0x2556a0,7, 0x2556c0,11, 0x255700,14, 0x255740,14, 0x255780,67, 0x255890,1, 0x255a00,8, 0x255a24,15, 0x255a64,30, 0x255b00,4, 0x255b20,2, 0x255c00,6, 0x255c40,14, 0x255c80,9, 0x255d00,9, 0x255d2c,1, 0x255d40,3, 0x255d60,1, 0x255d80,3, 0x255e00,2, 0x255e0c,1, 0x255e14,5, 0x255e2c,1, 0x255e34,5, 0x255e4c,1, 0x255e54,5, 0x255e6c,1, 0x255e74,5, 0x255e8c,1, 0x255e94,5, 0x255eac,1, 0x255eb4,3, 0x256000,14, 0x256070,3, 0x256080,6, 0x256100,9, 0x256204,1, 0x25620c,6, 0x256240,13, 0x256280,16, 0x256800,19, 0x256850,10, 0x256880,19, 0x2568d0,10, 0x256900,19, 0x256950,10, 0x256980,19, 0x2569d0,10, 0x256a00,19, 0x256a50,10, 0x256a80,19, 0x256ad0,10, 0x256b00,19, 0x256b50,10, 0x256b80,19, 0x256bd0,10, 0x256c00,19, 0x256c60,6, 0x256c84,1, 0x256c94,8, 0x256cb8,9, 0x256ce0,4, 0x257000,6, 0x257020,3, 0x257040,7, 0x257060,6, 0x257100,5, 0x257138,1, 0x257144,1, 0x257150,2, 0x258000,6, 0x258020,3, 0x258030,9, 0x258100,6, 0x258120,10, 0x258150,8, 0x258400,1, 0x258428,1, 0x258450,1, 0x258478,1, 0x2584a0,8, 0x2585ac,1, 0x2585d8,4, 0x258600,6, 0x258620,6, 0x258640,3, 0x258800,6, 0x258820,3, 0x258830,4, 0x258858,2, 0x258864,1, 0x258874,3, 0x258898,2, 0x2588a4,1, 0x2588b4,3, 0x259000,6, 0x259020,6, 0x259040,4, 0x259080,14, 0x2590bc,1, 0x2590c4,13, 0x2590fc,1, 0x259200,20, 0x25925c,31, 0x259300,24, 0x259380,2, 0x2593a0,1, 0x2593c0,11, 0x259404,3, 0x259420,11, 0x259460,3, 0x259480,6, 0x259500,7, 0x259520,6, 0x259540,1, 0x259558,2, 0x259600,17, 0x259800,496, 0x25a000,6, 0x25a020,6, 0x25a040,4, 0x25a080,14, 0x25a0bc,1, 0x25a0c4,13, 0x25a0fc,1, 0x25a200,20, 0x25a25c,31, 0x25a300,24, 0x25a380,2, 0x25a3a0,1, 0x25a3c0,11, 0x25a404,3, 0x25a420,11, 0x25a460,3, 0x25a480,6, 0x25a500,7, 0x25a520,6, 0x25a540,1, 0x25a558,2, 0x25a600,17, 0x25a800,496, 0x25b000,4, 0x25b020,25, 0x25b088,8, 0x25b100,4, 0x25b120,25, 0x25b188,8, 0x25b200,34, 0x25b300,37, 0x25b400,16, 0x25b464,1, 0x25b474,3, 0x25b500,6, 0x25b520,2, 0x25b530,9, 0x25b570,10, 0x25b5a0,2, 0x25b5b0,9, 0x25b5f0,4, 0x25b620,7, 0x25b640,16, 0x25b700,6, 0x25b720,6, 0x25b740,6, 0x25b760,6, 0x25b780,3, 0x25b800,5, 0x25b818,1, 0x25b854,6, 0x25b880,2, 0x25b8a4,1, 0x25b8ac,2, 0x25ba00,28, 0x25ba7c,13, 0x25bab4,1, 0x25babc,10, 0x25bb04,1, 0x25bb0c,5, 0x25bb24,1, 0x25bb34,9, 0x25bb60,6, 0x25bb80,22, 0x25bbe0,3, 0x25bbf0,2, 0x25bc00,5, 0x25bc18,1, 0x25bc54,6, 0x25bc80,2, 0x25bca4,1, 0x25bcac,2, 0x25be00,28, 0x25be7c,13, 0x25beb4,1, 0x25bebc,10, 0x25bf04,1, 0x25bf0c,5, 0x25bf24,1, 0x25bf34,9, 0x25bf60,6, 0x25bf80,22, 0x25bfe0,3, 0x25bff0,2, 0x25c008,2, 0x25c014,11, 0x25c044,1, 0x25c04c,3, 0x25c05c,1, 0x25c064,1, 0x25c07c,1, 0x25c500,2, 0x25c518,1, 0x25c520,3, 0x25c540,6, 0x25c580,10, 0x25c808,2, 0x25c814,11, 0x25c844,1, 0x25c84c,3, 0x25c85c,1, 0x25c864,1, 0x25c87c,1, 0x25cd00,2, 0x25cd18,1, 0x25cd20,3, 0x25cd40,6, 0x25cd80,10, 0x25d800,2, 0x25d828,2, 0x25d850,2, 0x25d878,2, 0x25d8a0,6, 0x25d9ac,1, 0x25d9d8,4, 0x25da00,6, 0x25da20,6, 0x25da40,6, 0x25da60,6, 0x25da80,3, 0x25dc00,6, 0x25dc20,3, 0x25dc40,2, 0x25dc60,1, 0x260000,5, 0x260020,4, 0x260034,17, 0x260080,1, 0x2600a0,6, 0x260100,5, 0x260120,4, 0x260134,17, 0x260180,1, 0x2601a0,6, 0x260200,5, 0x260220,4, 0x260234,17, 0x260280,1, 0x2602a0,6, 0x260300,5, 0x260320,4, 0x260334,17, 0x260380,1, 0x2603a0,6, 0x260500,6, 0x26051c,7, 0x260540,1, 0x260c00,13, 0x260c40,13, 0x260d00,6, 0x260d80,14, 0x260dc0,2, 0x260e20,6, 0x260e60,3, 0x260e80,6, 0x261000,2, 0x261010,5, 0x261060,32, 0x261100,8, 0x261180,12, 0x261218,13, 0x261250,6, 0x261280,1, 0x261288,6, 0x2612a4,1, 0x261400,8, 0x261424,2, 0x261500,5, 0x261520,4, 0x261800,24, 0x261864,5, 0x261880,8, 0x261900,13, 0x261980,4, 0x2619a0,6, 0x261a40,1, 0x261a60,1, 0x261a68,23, 0x261ac8,6, 0x261b80,12, 0x261c00,6, 0x261c20,6, 0x261c40,6, 0x261c60,3, 0x261d00,6, 0x261d20,6, 0x261d40,3, 0x262000,5, 0x262020,4, 0x262034,17, 0x262080,1, 0x2620a0,6, 0x262100,5, 0x262120,4, 0x262134,17, 0x262180,1, 0x2621a0,6, 0x262200,5, 0x262220,4, 0x262234,17, 0x262280,1, 0x2622a0,6, 0x262300,5, 0x262320,4, 0x262334,17, 0x262380,1, 0x2623a0,6, 0x262500,6, 0x26251c,7, 0x262540,1, 0x262c00,13, 0x262c40,13, 0x262d00,6, 0x262d80,14, 0x262dc0,2, 0x262e20,6, 0x262e60,3, 0x262e80,6, 0x263000,2, 0x263010,5, 0x263060,32, 0x263100,8, 0x263180,12, 0x263218,13, 0x263250,6, 0x263280,1, 0x263288,6, 0x2632a4,1, 0x263400,8, 0x263424,2, 0x263500,5, 0x263520,4, 0x263800,24, 0x263864,5, 0x263880,8, 0x263900,13, 0x263980,4, 0x2639a0,6, 0x263a40,1, 0x263a60,1, 0x263a68,23, 0x263ac8,6, 0x263b80,12, 0x263c00,6, 0x263c20,6, 0x263c40,6, 0x263c60,3, 0x263d00,6, 0x263d20,6, 0x263d40,3, 0x264000,29, 0x264078,4, 0x264090,2, 0x2640a0,7, 0x2640c0,11, 0x264100,14, 0x264140,14, 0x264180,61, 0x264278,4, 0x264290,2, 0x2642a0,7, 0x2642c0,11, 0x264300,14, 0x264340,14, 0x264380,61, 0x264478,4, 0x264490,2, 0x2644a0,7, 0x2644c0,11, 0x264500,14, 0x264540,14, 0x264580,61, 0x264678,4, 0x264690,2, 0x2646a0,7, 0x2646c0,11, 0x264700,14, 0x264740,14, 0x264780,67, 0x264890,1, 0x264a00,8, 0x264a24,15, 0x264a64,30, 0x264b00,4, 0x264b20,2, 0x264c00,6, 0x264c40,14, 0x264c80,9, 0x264d00,9, 0x264d2c,1, 0x264d40,3, 0x264d60,1, 0x264d80,3, 0x264e00,2, 0x264e0c,1, 0x264e14,5, 0x264e2c,1, 0x264e34,5, 0x264e4c,1, 0x264e54,5, 0x264e6c,1, 0x264e74,5, 0x264e8c,1, 0x264e94,5, 0x264eac,1, 0x264eb4,3, 0x265000,29, 0x265078,4, 0x265090,2, 0x2650a0,7, 0x2650c0,11, 0x265100,14, 0x265140,14, 0x265180,61, 0x265278,4, 0x265290,2, 0x2652a0,7, 0x2652c0,11, 0x265300,14, 0x265340,14, 0x265380,61, 0x265478,4, 0x265490,2, 0x2654a0,7, 0x2654c0,11, 0x265500,14, 0x265540,14, 0x265580,61, 0x265678,4, 0x265690,2, 0x2656a0,7, 0x2656c0,11, 0x265700,14, 0x265740,14, 0x265780,67, 0x265890,1, 0x265a00,8, 0x265a24,15, 0x265a64,30, 0x265b00,4, 0x265b20,2, 0x265c00,6, 0x265c40,14, 0x265c80,9, 0x265d00,9, 0x265d2c,1, 0x265d40,3, 0x265d60,1, 0x265d80,3, 0x265e00,2, 0x265e0c,1, 0x265e14,5, 0x265e2c,1, 0x265e34,5, 0x265e4c,1, 0x265e54,5, 0x265e6c,1, 0x265e74,5, 0x265e8c,1, 0x265e94,5, 0x265eac,1, 0x265eb4,3, 0x266000,14, 0x266070,3, 0x266080,6, 0x266100,9, 0x266204,1, 0x26620c,6, 0x266240,13, 0x266280,16, 0x266800,19, 0x266850,10, 0x266880,19, 0x2668d0,10, 0x266900,19, 0x266950,10, 0x266980,19, 0x2669d0,10, 0x266a00,19, 0x266a50,10, 0x266a80,19, 0x266ad0,10, 0x266b00,19, 0x266b50,10, 0x266b80,19, 0x266bd0,10, 0x266c00,19, 0x266c60,6, 0x266c84,1, 0x266c94,8, 0x266cb8,9, 0x266ce0,4, 0x267000,6, 0x267020,3, 0x267040,7, 0x267060,6, 0x267100,5, 0x267138,1, 0x267144,1, 0x267150,2, 0x268000,6, 0x268020,3, 0x268030,9, 0x268100,6, 0x268120,10, 0x268150,8, 0x268400,1, 0x268428,1, 0x268450,1, 0x268478,1, 0x2684a0,8, 0x2685ac,1, 0x2685d8,4, 0x268600,6, 0x268620,6, 0x268640,3, 0x268800,6, 0x268820,3, 0x268830,4, 0x268858,2, 0x268864,1, 0x268874,3, 0x268898,2, 0x2688a4,1, 0x2688b4,3, 0x269000,6, 0x269020,6, 0x269040,4, 0x269080,14, 0x2690bc,1, 0x2690c4,13, 0x2690fc,1, 0x269200,20, 0x26925c,31, 0x269300,24, 0x269380,2, 0x2693a0,1, 0x2693c0,11, 0x269404,3, 0x269420,11, 0x269460,3, 0x269480,6, 0x269500,7, 0x269520,6, 0x269540,1, 0x269558,2, 0x269600,17, 0x269800,496, 0x26a000,6, 0x26a020,6, 0x26a040,4, 0x26a080,14, 0x26a0bc,1, 0x26a0c4,13, 0x26a0fc,1, 0x26a200,20, 0x26a25c,31, 0x26a300,24, 0x26a380,2, 0x26a3a0,1, 0x26a3c0,11, 0x26a404,3, 0x26a420,11, 0x26a460,3, 0x26a480,6, 0x26a500,7, 0x26a520,6, 0x26a540,1, 0x26a558,2, 0x26a600,17, 0x26a800,496, 0x26b000,4, 0x26b020,25, 0x26b088,8, 0x26b100,4, 0x26b120,25, 0x26b188,8, 0x26b200,34, 0x26b300,37, 0x26b400,16, 0x26b464,1, 0x26b474,3, 0x26b500,6, 0x26b520,2, 0x26b530,9, 0x26b570,10, 0x26b5a0,2, 0x26b5b0,9, 0x26b5f0,4, 0x26b620,7, 0x26b640,16, 0x26b700,6, 0x26b720,6, 0x26b740,6, 0x26b760,6, 0x26b780,3, 0x26b800,5, 0x26b818,1, 0x26b854,6, 0x26b880,2, 0x26b8a4,1, 0x26b8ac,2, 0x26ba00,28, 0x26ba7c,13, 0x26bab4,1, 0x26babc,10, 0x26bb04,1, 0x26bb0c,5, 0x26bb24,1, 0x26bb34,9, 0x26bb60,6, 0x26bb80,22, 0x26bbe0,3, 0x26bbf0,2, 0x26bc00,5, 0x26bc18,1, 0x26bc54,6, 0x26bc80,2, 0x26bca4,1, 0x26bcac,2, 0x26be00,28, 0x26be7c,13, 0x26beb4,1, 0x26bebc,10, 0x26bf04,1, 0x26bf0c,5, 0x26bf24,1, 0x26bf34,9, 0x26bf60,6, 0x26bf80,22, 0x26bfe0,3, 0x26bff0,2, 0x26c008,2, 0x26c014,11, 0x26c044,1, 0x26c04c,3, 0x26c05c,1, 0x26c064,1, 0x26c07c,1, 0x26c500,2, 0x26c518,1, 0x26c520,3, 0x26c540,6, 0x26c580,10, 0x26c808,2, 0x26c814,11, 0x26c844,1, 0x26c84c,3, 0x26c85c,1, 0x26c864,1, 0x26c87c,1, 0x26cd00,2, 0x26cd18,1, 0x26cd20,3, 0x26cd40,6, 0x26cd80,10, 0x26d800,2, 0x26d828,2, 0x26d850,2, 0x26d878,2, 0x26d8a0,6, 0x26d9ac,1, 0x26d9d8,4, 0x26da00,6, 0x26da20,6, 0x26da40,6, 0x26da60,6, 0x26da80,3, 0x26dc00,6, 0x26dc20,3, 0x26dc40,2, 0x26dc60,1, 0x270000,5, 0x270020,4, 0x270034,17, 0x270080,1, 0x2700a0,6, 0x270100,5, 0x270120,4, 0x270134,17, 0x270180,1, 0x2701a0,6, 0x270200,5, 0x270220,4, 0x270234,17, 0x270280,1, 0x2702a0,6, 0x270300,5, 0x270320,4, 0x270334,17, 0x270380,1, 0x2703a0,6, 0x270500,6, 0x27051c,7, 0x270540,1, 0x270c00,13, 0x270c40,13, 0x270d00,6, 0x270d80,14, 0x270dc0,2, 0x270e20,6, 0x270e60,3, 0x270e80,6, 0x271000,2, 0x271010,5, 0x271060,32, 0x271100,8, 0x271180,12, 0x271218,13, 0x271250,6, 0x271280,1, 0x271288,6, 0x2712a4,1, 0x271400,8, 0x271424,2, 0x271500,5, 0x271520,4, 0x271800,24, 0x271864,5, 0x271880,8, 0x271900,13, 0x271980,4, 0x2719a0,6, 0x271a40,1, 0x271a60,1, 0x271a68,23, 0x271ac8,6, 0x271b80,12, 0x271c00,6, 0x271c20,6, 0x271c40,6, 0x271c60,3, 0x271d00,6, 0x271d20,6, 0x271d40,3, 0x272000,5, 0x272020,4, 0x272034,17, 0x272080,1, 0x2720a0,6, 0x272100,5, 0x272120,4, 0x272134,17, 0x272180,1, 0x2721a0,6, 0x272200,5, 0x272220,4, 0x272234,17, 0x272280,1, 0x2722a0,6, 0x272300,5, 0x272320,4, 0x272334,17, 0x272380,1, 0x2723a0,6, 0x272500,6, 0x27251c,7, 0x272540,1, 0x272c00,13, 0x272c40,13, 0x272d00,6, 0x272d80,14, 0x272dc0,2, 0x272e20,6, 0x272e60,3, 0x272e80,6, 0x273000,2, 0x273010,5, 0x273060,32, 0x273100,8, 0x273180,12, 0x273218,13, 0x273250,6, 0x273280,1, 0x273288,6, 0x2732a4,1, 0x273400,8, 0x273424,2, 0x273500,5, 0x273520,4, 0x273800,24, 0x273864,5, 0x273880,8, 0x273900,13, 0x273980,4, 0x2739a0,6, 0x273a40,1, 0x273a60,1, 0x273a68,23, 0x273ac8,6, 0x273b80,12, 0x273c00,6, 0x273c20,6, 0x273c40,6, 0x273c60,3, 0x273d00,6, 0x273d20,6, 0x273d40,3, 0x274000,29, 0x274078,4, 0x274090,2, 0x2740a0,7, 0x2740c0,11, 0x274100,14, 0x274140,14, 0x274180,61, 0x274278,4, 0x274290,2, 0x2742a0,7, 0x2742c0,11, 0x274300,14, 0x274340,14, 0x274380,61, 0x274478,4, 0x274490,2, 0x2744a0,7, 0x2744c0,11, 0x274500,14, 0x274540,14, 0x274580,61, 0x274678,4, 0x274690,2, 0x2746a0,7, 0x2746c0,11, 0x274700,14, 0x274740,14, 0x274780,67, 0x274890,1, 0x274a00,8, 0x274a24,15, 0x274a64,30, 0x274b00,4, 0x274b20,2, 0x274c00,6, 0x274c40,14, 0x274c80,9, 0x274d00,9, 0x274d2c,1, 0x274d40,3, 0x274d60,1, 0x274d80,3, 0x274e00,2, 0x274e0c,1, 0x274e14,5, 0x274e2c,1, 0x274e34,5, 0x274e4c,1, 0x274e54,5, 0x274e6c,1, 0x274e74,5, 0x274e8c,1, 0x274e94,5, 0x274eac,1, 0x274eb4,3, 0x275000,29, 0x275078,4, 0x275090,2, 0x2750a0,7, 0x2750c0,11, 0x275100,14, 0x275140,14, 0x275180,61, 0x275278,4, 0x275290,2, 0x2752a0,7, 0x2752c0,11, 0x275300,14, 0x275340,14, 0x275380,61, 0x275478,4, 0x275490,2, 0x2754a0,7, 0x2754c0,11, 0x275500,14, 0x275540,14, 0x275580,61, 0x275678,4, 0x275690,2, 0x2756a0,7, 0x2756c0,11, 0x275700,14, 0x275740,14, 0x275780,67, 0x275890,1, 0x275a00,8, 0x275a24,15, 0x275a64,30, 0x275b00,4, 0x275b20,2, 0x275c00,6, 0x275c40,14, 0x275c80,9, 0x275d00,9, 0x275d2c,1, 0x275d40,3, 0x275d60,1, 0x275d80,3, 0x275e00,2, 0x275e0c,1, 0x275e14,5, 0x275e2c,1, 0x275e34,5, 0x275e4c,1, 0x275e54,5, 0x275e6c,1, 0x275e74,5, 0x275e8c,1, 0x275e94,5, 0x275eac,1, 0x275eb4,3, 0x276000,14, 0x276070,3, 0x276080,6, 0x276100,9, 0x276204,1, 0x27620c,6, 0x276240,13, 0x276280,16, 0x276800,19, 0x276850,10, 0x276880,19, 0x2768d0,10, 0x276900,19, 0x276950,10, 0x276980,19, 0x2769d0,10, 0x276a00,19, 0x276a50,10, 0x276a80,19, 0x276ad0,10, 0x276b00,19, 0x276b50,10, 0x276b80,19, 0x276bd0,10, 0x276c00,19, 0x276c60,6, 0x276c84,1, 0x276c94,8, 0x276cb8,9, 0x276ce0,4, 0x277000,6, 0x277020,3, 0x277040,7, 0x277060,6, 0x277100,5, 0x277138,1, 0x277144,1, 0x277150,2, 0x278000,6, 0x278020,3, 0x278030,9, 0x278100,6, 0x278120,10, 0x278150,8, 0x278400,1, 0x278428,1, 0x278450,1, 0x278478,1, 0x2784a0,8, 0x2785ac,1, 0x2785d8,4, 0x278600,6, 0x278620,6, 0x278640,3, 0x278800,6, 0x278820,3, 0x278830,4, 0x278858,2, 0x278864,1, 0x278874,3, 0x278898,2, 0x2788a4,1, 0x2788b4,3, 0x279000,6, 0x279020,6, 0x279040,4, 0x279080,14, 0x2790bc,1, 0x2790c4,13, 0x2790fc,1, 0x279200,20, 0x27925c,31, 0x279300,24, 0x279380,2, 0x2793a0,1, 0x2793c0,11, 0x279404,3, 0x279420,11, 0x279460,3, 0x279480,6, 0x279500,7, 0x279520,6, 0x279540,1, 0x279558,2, 0x279600,17, 0x279800,496, 0x27a000,6, 0x27a020,6, 0x27a040,4, 0x27a080,14, 0x27a0bc,1, 0x27a0c4,13, 0x27a0fc,1, 0x27a200,20, 0x27a25c,31, 0x27a300,24, 0x27a380,2, 0x27a3a0,1, 0x27a3c0,11, 0x27a404,3, 0x27a420,11, 0x27a460,3, 0x27a480,6, 0x27a500,7, 0x27a520,6, 0x27a540,1, 0x27a558,2, 0x27a600,17, 0x27a800,496, 0x27b000,4, 0x27b020,25, 0x27b088,8, 0x27b100,4, 0x27b120,25, 0x27b188,8, 0x27b200,34, 0x27b300,37, 0x27b400,16, 0x27b464,1, 0x27b474,3, 0x27b500,6, 0x27b520,2, 0x27b530,9, 0x27b570,10, 0x27b5a0,2, 0x27b5b0,9, 0x27b5f0,4, 0x27b620,7, 0x27b640,16, 0x27b700,6, 0x27b720,6, 0x27b740,6, 0x27b760,6, 0x27b780,3, 0x27b800,5, 0x27b818,1, 0x27b854,6, 0x27b880,2, 0x27b8a4,1, 0x27b8ac,2, 0x27ba00,28, 0x27ba7c,13, 0x27bab4,1, 0x27babc,10, 0x27bb04,1, 0x27bb0c,5, 0x27bb24,1, 0x27bb34,9, 0x27bb60,6, 0x27bb80,22, 0x27bbe0,3, 0x27bbf0,2, 0x27bc00,5, 0x27bc18,1, 0x27bc54,6, 0x27bc80,2, 0x27bca4,1, 0x27bcac,2, 0x27be00,28, 0x27be7c,13, 0x27beb4,1, 0x27bebc,10, 0x27bf04,1, 0x27bf0c,5, 0x27bf24,1, 0x27bf34,9, 0x27bf60,6, 0x27bf80,22, 0x27bfe0,3, 0x27bff0,2, 0x27c008,2, 0x27c014,11, 0x27c044,1, 0x27c04c,3, 0x27c05c,1, 0x27c064,1, 0x27c07c,1, 0x27c500,2, 0x27c518,1, 0x27c520,3, 0x27c540,6, 0x27c580,10, 0x27c808,2, 0x27c814,11, 0x27c844,1, 0x27c84c,3, 0x27c85c,1, 0x27c864,1, 0x27c87c,1, 0x27cd00,2, 0x27cd18,1, 0x27cd20,3, 0x27cd40,6, 0x27cd80,10, 0x27d800,2, 0x27d828,2, 0x27d850,2, 0x27d878,2, 0x27d8a0,6, 0x27d9ac,1, 0x27d9d8,4, 0x27da00,6, 0x27da20,6, 0x27da40,6, 0x27da60,6, 0x27da80,3, 0x27dc00,6, 0x27dc20,3, 0x27dc40,2, 0x27dc60,1, 0x280000,5, 0x280020,4, 0x280034,17, 0x280080,1, 0x2800a0,6, 0x280100,5, 0x280120,4, 0x280134,17, 0x280180,1, 0x2801a0,6, 0x280200,5, 0x280220,4, 0x280234,17, 0x280280,1, 0x2802a0,6, 0x280300,5, 0x280320,4, 0x280334,17, 0x280380,1, 0x2803a0,6, 0x280500,6, 0x28051c,7, 0x280540,1, 0x280c00,13, 0x280c40,13, 0x280d00,6, 0x280d80,14, 0x280dc0,2, 0x280e20,6, 0x280e60,3, 0x280e80,6, 0x281000,2, 0x281010,5, 0x281060,32, 0x281100,8, 0x281180,12, 0x281218,13, 0x281250,6, 0x281280,1, 0x281288,6, 0x2812a4,1, 0x281400,8, 0x281424,2, 0x281500,5, 0x281520,4, 0x281800,24, 0x281864,5, 0x281880,8, 0x281900,13, 0x281980,4, 0x2819a0,6, 0x281a40,1, 0x281a60,1, 0x281a68,23, 0x281ac8,6, 0x281b80,12, 0x281c00,6, 0x281c20,6, 0x281c40,6, 0x281c60,3, 0x281d00,6, 0x281d20,6, 0x281d40,3, 0x282000,5, 0x282020,4, 0x282034,17, 0x282080,1, 0x2820a0,6, 0x282100,5, 0x282120,4, 0x282134,17, 0x282180,1, 0x2821a0,6, 0x282200,5, 0x282220,4, 0x282234,17, 0x282280,1, 0x2822a0,6, 0x282300,5, 0x282320,4, 0x282334,17, 0x282380,1, 0x2823a0,6, 0x282500,6, 0x28251c,7, 0x282540,1, 0x282c00,13, 0x282c40,13, 0x282d00,6, 0x282d80,14, 0x282dc0,2, 0x282e20,6, 0x282e60,3, 0x282e80,6, 0x283000,2, 0x283010,5, 0x283060,32, 0x283100,8, 0x283180,12, 0x283218,13, 0x283250,6, 0x283280,1, 0x283288,6, 0x2832a4,1, 0x283400,8, 0x283424,2, 0x283500,5, 0x283520,4, 0x283800,24, 0x283864,5, 0x283880,8, 0x283900,13, 0x283980,4, 0x2839a0,6, 0x283a40,1, 0x283a60,1, 0x283a68,23, 0x283ac8,6, 0x283b80,12, 0x283c00,6, 0x283c20,6, 0x283c40,6, 0x283c60,3, 0x283d00,6, 0x283d20,6, 0x283d40,3, 0x284000,29, 0x284078,4, 0x284090,2, 0x2840a0,7, 0x2840c0,11, 0x284100,14, 0x284140,14, 0x284180,61, 0x284278,4, 0x284290,2, 0x2842a0,7, 0x2842c0,11, 0x284300,14, 0x284340,14, 0x284380,61, 0x284478,4, 0x284490,2, 0x2844a0,7, 0x2844c0,11, 0x284500,14, 0x284540,14, 0x284580,61, 0x284678,4, 0x284690,2, 0x2846a0,7, 0x2846c0,11, 0x284700,14, 0x284740,14, 0x284780,67, 0x284890,1, 0x284a00,8, 0x284a24,15, 0x284a64,30, 0x284b00,4, 0x284b20,2, 0x284c00,6, 0x284c40,14, 0x284c80,9, 0x284d00,9, 0x284d2c,1, 0x284d40,3, 0x284d60,1, 0x284d80,3, 0x284e00,2, 0x284e0c,1, 0x284e14,5, 0x284e2c,1, 0x284e34,5, 0x284e4c,1, 0x284e54,5, 0x284e6c,1, 0x284e74,5, 0x284e8c,1, 0x284e94,5, 0x284eac,1, 0x284eb4,3, 0x285000,29, 0x285078,4, 0x285090,2, 0x2850a0,7, 0x2850c0,11, 0x285100,14, 0x285140,14, 0x285180,61, 0x285278,4, 0x285290,2, 0x2852a0,7, 0x2852c0,11, 0x285300,14, 0x285340,14, 0x285380,61, 0x285478,4, 0x285490,2, 0x2854a0,7, 0x2854c0,11, 0x285500,14, 0x285540,14, 0x285580,61, 0x285678,4, 0x285690,2, 0x2856a0,7, 0x2856c0,11, 0x285700,14, 0x285740,14, 0x285780,67, 0x285890,1, 0x285a00,8, 0x285a24,15, 0x285a64,30, 0x285b00,4, 0x285b20,2, 0x285c00,6, 0x285c40,14, 0x285c80,9, 0x285d00,9, 0x285d2c,1, 0x285d40,3, 0x285d60,1, 0x285d80,3, 0x285e00,2, 0x285e0c,1, 0x285e14,5, 0x285e2c,1, 0x285e34,5, 0x285e4c,1, 0x285e54,5, 0x285e6c,1, 0x285e74,5, 0x285e8c,1, 0x285e94,5, 0x285eac,1, 0x285eb4,3, 0x286000,14, 0x286070,3, 0x286080,6, 0x286100,9, 0x286204,1, 0x28620c,6, 0x286240,13, 0x286280,16, 0x286800,19, 0x286850,10, 0x286880,19, 0x2868d0,10, 0x286900,19, 0x286950,10, 0x286980,19, 0x2869d0,10, 0x286a00,19, 0x286a50,10, 0x286a80,19, 0x286ad0,10, 0x286b00,19, 0x286b50,10, 0x286b80,19, 0x286bd0,10, 0x286c00,19, 0x286c60,6, 0x286c84,1, 0x286c94,8, 0x286cb8,9, 0x286ce0,4, 0x287000,6, 0x287020,3, 0x287040,7, 0x287060,6, 0x287100,5, 0x287138,1, 0x287144,1, 0x287150,2, 0x288000,6, 0x288020,3, 0x288030,9, 0x288100,6, 0x288120,10, 0x288150,8, 0x288400,1, 0x288428,1, 0x288450,1, 0x288478,1, 0x2884a0,8, 0x2885ac,1, 0x2885d8,4, 0x288600,6, 0x288620,6, 0x288640,3, 0x288800,6, 0x288820,3, 0x288830,4, 0x288858,2, 0x288864,1, 0x288874,3, 0x288898,2, 0x2888a4,1, 0x2888b4,3, 0x289000,6, 0x289020,6, 0x289040,4, 0x289080,14, 0x2890bc,1, 0x2890c4,13, 0x2890fc,1, 0x289200,20, 0x28925c,31, 0x289300,24, 0x289380,2, 0x2893a0,1, 0x2893c0,11, 0x289404,3, 0x289420,11, 0x289460,3, 0x289480,6, 0x289500,7, 0x289520,6, 0x289540,1, 0x289558,2, 0x289600,17, 0x289800,496, 0x28a000,6, 0x28a020,6, 0x28a040,4, 0x28a080,14, 0x28a0bc,1, 0x28a0c4,13, 0x28a0fc,1, 0x28a200,20, 0x28a25c,31, 0x28a300,24, 0x28a380,2, 0x28a3a0,1, 0x28a3c0,11, 0x28a404,3, 0x28a420,11, 0x28a460,3, 0x28a480,6, 0x28a500,7, 0x28a520,6, 0x28a540,1, 0x28a558,2, 0x28a600,17, 0x28a800,496, 0x28b000,4, 0x28b020,25, 0x28b088,8, 0x28b100,4, 0x28b120,25, 0x28b188,8, 0x28b200,34, 0x28b300,37, 0x28b400,16, 0x28b464,1, 0x28b474,3, 0x28b500,6, 0x28b520,2, 0x28b530,9, 0x28b570,10, 0x28b5a0,2, 0x28b5b0,9, 0x28b5f0,4, 0x28b620,7, 0x28b640,16, 0x28b700,6, 0x28b720,6, 0x28b740,6, 0x28b760,6, 0x28b780,3, 0x28b800,5, 0x28b818,1, 0x28b854,6, 0x28b880,2, 0x28b8a4,1, 0x28b8ac,2, 0x28ba00,28, 0x28ba7c,13, 0x28bab4,1, 0x28babc,10, 0x28bb04,1, 0x28bb0c,5, 0x28bb24,1, 0x28bb34,9, 0x28bb60,6, 0x28bb80,22, 0x28bbe0,3, 0x28bbf0,2, 0x28bc00,5, 0x28bc18,1, 0x28bc54,6, 0x28bc80,2, 0x28bca4,1, 0x28bcac,2, 0x28be00,28, 0x28be7c,13, 0x28beb4,1, 0x28bebc,10, 0x28bf04,1, 0x28bf0c,5, 0x28bf24,1, 0x28bf34,9, 0x28bf60,6, 0x28bf80,22, 0x28bfe0,3, 0x28bff0,2, 0x28c008,2, 0x28c014,11, 0x28c044,1, 0x28c04c,3, 0x28c05c,1, 0x28c064,1, 0x28c07c,1, 0x28c500,2, 0x28c518,1, 0x28c520,3, 0x28c540,6, 0x28c580,10, 0x28c808,2, 0x28c814,11, 0x28c844,1, 0x28c84c,3, 0x28c85c,1, 0x28c864,1, 0x28c87c,1, 0x28cd00,2, 0x28cd18,1, 0x28cd20,3, 0x28cd40,6, 0x28cd80,10, 0x28d800,2, 0x28d828,2, 0x28d850,2, 0x28d878,2, 0x28d8a0,6, 0x28d9ac,1, 0x28d9d8,4, 0x28da00,6, 0x28da20,6, 0x28da40,6, 0x28da60,6, 0x28da80,3, 0x28dc00,6, 0x28dc20,3, 0x28dc40,2, 0x28dc60,1, 0x290000,5, 0x290020,4, 0x290034,17, 0x290080,1, 0x2900a0,6, 0x290100,5, 0x290120,4, 0x290134,17, 0x290180,1, 0x2901a0,6, 0x290200,5, 0x290220,4, 0x290234,17, 0x290280,1, 0x2902a0,6, 0x290300,5, 0x290320,4, 0x290334,17, 0x290380,1, 0x2903a0,6, 0x290500,6, 0x29051c,7, 0x290540,1, 0x290c00,13, 0x290c40,13, 0x290d00,6, 0x290d80,14, 0x290dc0,2, 0x290e20,6, 0x290e60,3, 0x290e80,6, 0x291000,2, 0x291010,5, 0x291060,32, 0x291100,8, 0x291180,12, 0x291218,13, 0x291250,6, 0x291280,1, 0x291288,6, 0x2912a4,1, 0x291400,8, 0x291424,2, 0x291500,5, 0x291520,4, 0x291800,24, 0x291864,5, 0x291880,8, 0x291900,13, 0x291980,4, 0x2919a0,6, 0x291a40,1, 0x291a60,1, 0x291a68,23, 0x291ac8,6, 0x291b80,12, 0x291c00,6, 0x291c20,6, 0x291c40,6, 0x291c60,3, 0x291d00,6, 0x291d20,6, 0x291d40,3, 0x292000,5, 0x292020,4, 0x292034,17, 0x292080,1, 0x2920a0,6, 0x292100,5, 0x292120,4, 0x292134,17, 0x292180,1, 0x2921a0,6, 0x292200,5, 0x292220,4, 0x292234,17, 0x292280,1, 0x2922a0,6, 0x292300,5, 0x292320,4, 0x292334,17, 0x292380,1, 0x2923a0,6, 0x292500,6, 0x29251c,7, 0x292540,1, 0x292c00,13, 0x292c40,13, 0x292d00,6, 0x292d80,14, 0x292dc0,2, 0x292e20,6, 0x292e60,3, 0x292e80,6, 0x293000,2, 0x293010,5, 0x293060,32, 0x293100,8, 0x293180,12, 0x293218,13, 0x293250,6, 0x293280,1, 0x293288,6, 0x2932a4,1, 0x293400,8, 0x293424,2, 0x293500,5, 0x293520,4, 0x293800,24, 0x293864,5, 0x293880,8, 0x293900,13, 0x293980,4, 0x2939a0,6, 0x293a40,1, 0x293a60,1, 0x293a68,23, 0x293ac8,6, 0x293b80,12, 0x293c00,6, 0x293c20,6, 0x293c40,6, 0x293c60,3, 0x293d00,6, 0x293d20,6, 0x293d40,3, 0x294000,29, 0x294078,4, 0x294090,2, 0x2940a0,7, 0x2940c0,11, 0x294100,14, 0x294140,14, 0x294180,61, 0x294278,4, 0x294290,2, 0x2942a0,7, 0x2942c0,11, 0x294300,14, 0x294340,14, 0x294380,61, 0x294478,4, 0x294490,2, 0x2944a0,7, 0x2944c0,11, 0x294500,14, 0x294540,14, 0x294580,61, 0x294678,4, 0x294690,2, 0x2946a0,7, 0x2946c0,11, 0x294700,14, 0x294740,14, 0x294780,67, 0x294890,1, 0x294a00,8, 0x294a24,15, 0x294a64,30, 0x294b00,4, 0x294b20,2, 0x294c00,6, 0x294c40,14, 0x294c80,9, 0x294d00,9, 0x294d2c,1, 0x294d40,3, 0x294d60,1, 0x294d80,3, 0x294e00,2, 0x294e0c,1, 0x294e14,5, 0x294e2c,1, 0x294e34,5, 0x294e4c,1, 0x294e54,5, 0x294e6c,1, 0x294e74,5, 0x294e8c,1, 0x294e94,5, 0x294eac,1, 0x294eb4,3, 0x295000,29, 0x295078,4, 0x295090,2, 0x2950a0,7, 0x2950c0,11, 0x295100,14, 0x295140,14, 0x295180,61, 0x295278,4, 0x295290,2, 0x2952a0,7, 0x2952c0,11, 0x295300,14, 0x295340,14, 0x295380,61, 0x295478,4, 0x295490,2, 0x2954a0,7, 0x2954c0,11, 0x295500,14, 0x295540,14, 0x295580,61, 0x295678,4, 0x295690,2, 0x2956a0,7, 0x2956c0,11, 0x295700,14, 0x295740,14, 0x295780,67, 0x295890,1, 0x295a00,8, 0x295a24,15, 0x295a64,30, 0x295b00,4, 0x295b20,2, 0x295c00,6, 0x295c40,14, 0x295c80,9, 0x295d00,9, 0x295d2c,1, 0x295d40,3, 0x295d60,1, 0x295d80,3, 0x295e00,2, 0x295e0c,1, 0x295e14,5, 0x295e2c,1, 0x295e34,5, 0x295e4c,1, 0x295e54,5, 0x295e6c,1, 0x295e74,5, 0x295e8c,1, 0x295e94,5, 0x295eac,1, 0x295eb4,3, 0x296000,14, 0x296070,3, 0x296080,6, 0x296100,9, 0x296204,1, 0x29620c,6, 0x296240,13, 0x296280,16, 0x296800,19, 0x296850,10, 0x296880,19, 0x2968d0,10, 0x296900,19, 0x296950,10, 0x296980,19, 0x2969d0,10, 0x296a00,19, 0x296a50,10, 0x296a80,19, 0x296ad0,10, 0x296b00,19, 0x296b50,10, 0x296b80,19, 0x296bd0,10, 0x296c00,19, 0x296c60,6, 0x296c84,1, 0x296c94,8, 0x296cb8,9, 0x296ce0,4, 0x297000,6, 0x297020,3, 0x297040,7, 0x297060,6, 0x297100,5, 0x297138,1, 0x297144,1, 0x297150,2, 0x298000,6, 0x298020,3, 0x298030,9, 0x298100,6, 0x298120,10, 0x298150,8, 0x298400,1, 0x298428,1, 0x298450,1, 0x298478,1, 0x2984a0,8, 0x2985ac,1, 0x2985d8,4, 0x298600,6, 0x298620,6, 0x298640,3, 0x298800,6, 0x298820,3, 0x298830,4, 0x298858,2, 0x298864,1, 0x298874,3, 0x298898,2, 0x2988a4,1, 0x2988b4,3, 0x299000,6, 0x299020,6, 0x299040,4, 0x299080,14, 0x2990bc,1, 0x2990c4,13, 0x2990fc,1, 0x299200,20, 0x29925c,31, 0x299300,24, 0x299380,2, 0x2993a0,1, 0x2993c0,11, 0x299404,3, 0x299420,11, 0x299460,3, 0x299480,6, 0x299500,7, 0x299520,6, 0x299540,1, 0x299558,2, 0x299600,17, 0x299800,496, 0x29a000,6, 0x29a020,6, 0x29a040,4, 0x29a080,14, 0x29a0bc,1, 0x29a0c4,13, 0x29a0fc,1, 0x29a200,20, 0x29a25c,31, 0x29a300,24, 0x29a380,2, 0x29a3a0,1, 0x29a3c0,11, 0x29a404,3, 0x29a420,11, 0x29a460,3, 0x29a480,6, 0x29a500,7, 0x29a520,6, 0x29a540,1, 0x29a558,2, 0x29a600,17, 0x29a800,496, 0x29b000,4, 0x29b020,25, 0x29b088,8, 0x29b100,4, 0x29b120,25, 0x29b188,8, 0x29b200,34, 0x29b300,37, 0x29b400,16, 0x29b464,1, 0x29b474,3, 0x29b500,6, 0x29b520,2, 0x29b530,9, 0x29b570,10, 0x29b5a0,2, 0x29b5b0,9, 0x29b5f0,4, 0x29b620,7, 0x29b640,16, 0x29b700,6, 0x29b720,6, 0x29b740,6, 0x29b760,6, 0x29b780,3, 0x29b800,5, 0x29b818,1, 0x29b854,6, 0x29b880,2, 0x29b8a4,1, 0x29b8ac,2, 0x29ba00,28, 0x29ba7c,13, 0x29bab4,1, 0x29babc,10, 0x29bb04,1, 0x29bb0c,5, 0x29bb24,1, 0x29bb34,9, 0x29bb60,6, 0x29bb80,22, 0x29bbe0,3, 0x29bbf0,2, 0x29bc00,5, 0x29bc18,1, 0x29bc54,6, 0x29bc80,2, 0x29bca4,1, 0x29bcac,2, 0x29be00,28, 0x29be7c,13, 0x29beb4,1, 0x29bebc,10, 0x29bf04,1, 0x29bf0c,5, 0x29bf24,1, 0x29bf34,9, 0x29bf60,6, 0x29bf80,22, 0x29bfe0,3, 0x29bff0,2, 0x29c008,2, 0x29c014,11, 0x29c044,1, 0x29c04c,3, 0x29c05c,1, 0x29c064,1, 0x29c07c,1, 0x29c500,2, 0x29c518,1, 0x29c520,3, 0x29c540,6, 0x29c580,10, 0x29c808,2, 0x29c814,11, 0x29c844,1, 0x29c84c,3, 0x29c85c,1, 0x29c864,1, 0x29c87c,1, 0x29cd00,2, 0x29cd18,1, 0x29cd20,3, 0x29cd40,6, 0x29cd80,10, 0x29d800,2, 0x29d828,2, 0x29d850,2, 0x29d878,2, 0x29d8a0,6, 0x29d9ac,1, 0x29d9d8,4, 0x29da00,6, 0x29da20,6, 0x29da40,6, 0x29da60,6, 0x29da80,3, 0x29dc00,6, 0x29dc20,3, 0x29dc40,2, 0x29dc60,1, 0x2a0000,5, 0x2a0020,4, 0x2a0034,17, 0x2a0080,1, 0x2a00a0,6, 0x2a0100,5, 0x2a0120,4, 0x2a0134,17, 0x2a0180,1, 0x2a01a0,6, 0x2a0200,5, 0x2a0220,4, 0x2a0234,17, 0x2a0280,1, 0x2a02a0,6, 0x2a0300,5, 0x2a0320,4, 0x2a0334,17, 0x2a0380,1, 0x2a03a0,6, 0x2a0500,6, 0x2a051c,7, 0x2a0540,1, 0x2a0c00,13, 0x2a0c40,13, 0x2a0d00,6, 0x2a0d80,14, 0x2a0dc0,2, 0x2a0e20,6, 0x2a0e60,3, 0x2a0e80,6, 0x2a1000,2, 0x2a1010,5, 0x2a1060,32, 0x2a1100,8, 0x2a1180,12, 0x2a1218,13, 0x2a1250,6, 0x2a1280,1, 0x2a1288,6, 0x2a12a4,1, 0x2a1400,8, 0x2a1424,2, 0x2a1500,5, 0x2a1520,4, 0x2a1800,24, 0x2a1864,5, 0x2a1880,8, 0x2a1900,13, 0x2a1980,4, 0x2a19a0,6, 0x2a1a40,1, 0x2a1a60,1, 0x2a1a68,23, 0x2a1ac8,6, 0x2a1b80,12, 0x2a1c00,6, 0x2a1c20,6, 0x2a1c40,6, 0x2a1c60,3, 0x2a1d00,6, 0x2a1d20,6, 0x2a1d40,3, 0x2a2000,5, 0x2a2020,4, 0x2a2034,17, 0x2a2080,1, 0x2a20a0,6, 0x2a2100,5, 0x2a2120,4, 0x2a2134,17, 0x2a2180,1, 0x2a21a0,6, 0x2a2200,5, 0x2a2220,4, 0x2a2234,17, 0x2a2280,1, 0x2a22a0,6, 0x2a2300,5, 0x2a2320,4, 0x2a2334,17, 0x2a2380,1, 0x2a23a0,6, 0x2a2500,6, 0x2a251c,7, 0x2a2540,1, 0x2a2c00,13, 0x2a2c40,13, 0x2a2d00,6, 0x2a2d80,14, 0x2a2dc0,2, 0x2a2e20,6, 0x2a2e60,3, 0x2a2e80,6, 0x2a3000,2, 0x2a3010,5, 0x2a3060,32, 0x2a3100,8, 0x2a3180,12, 0x2a3218,13, 0x2a3250,6, 0x2a3280,1, 0x2a3288,6, 0x2a32a4,1, 0x2a3400,8, 0x2a3424,2, 0x2a3500,5, 0x2a3520,4, 0x2a3800,24, 0x2a3864,5, 0x2a3880,8, 0x2a3900,13, 0x2a3980,4, 0x2a39a0,6, 0x2a3a40,1, 0x2a3a60,1, 0x2a3a68,23, 0x2a3ac8,6, 0x2a3b80,12, 0x2a3c00,6, 0x2a3c20,6, 0x2a3c40,6, 0x2a3c60,3, 0x2a3d00,6, 0x2a3d20,6, 0x2a3d40,3, 0x2a4000,29, 0x2a4078,4, 0x2a4090,2, 0x2a40a0,7, 0x2a40c0,11, 0x2a4100,14, 0x2a4140,14, 0x2a4180,61, 0x2a4278,4, 0x2a4290,2, 0x2a42a0,7, 0x2a42c0,11, 0x2a4300,14, 0x2a4340,14, 0x2a4380,61, 0x2a4478,4, 0x2a4490,2, 0x2a44a0,7, 0x2a44c0,11, 0x2a4500,14, 0x2a4540,14, 0x2a4580,61, 0x2a4678,4, 0x2a4690,2, 0x2a46a0,7, 0x2a46c0,11, 0x2a4700,14, 0x2a4740,14, 0x2a4780,67, 0x2a4890,1, 0x2a4a00,8, 0x2a4a24,15, 0x2a4a64,30, 0x2a4b00,4, 0x2a4b20,2, 0x2a4c00,6, 0x2a4c40,14, 0x2a4c80,9, 0x2a4d00,9, 0x2a4d2c,1, 0x2a4d40,3, 0x2a4d60,1, 0x2a4d80,3, 0x2a4e00,2, 0x2a4e0c,1, 0x2a4e14,5, 0x2a4e2c,1, 0x2a4e34,5, 0x2a4e4c,1, 0x2a4e54,5, 0x2a4e6c,1, 0x2a4e74,5, 0x2a4e8c,1, 0x2a4e94,5, 0x2a4eac,1, 0x2a4eb4,3, 0x2a5000,29, 0x2a5078,4, 0x2a5090,2, 0x2a50a0,7, 0x2a50c0,11, 0x2a5100,14, 0x2a5140,14, 0x2a5180,61, 0x2a5278,4, 0x2a5290,2, 0x2a52a0,7, 0x2a52c0,11, 0x2a5300,14, 0x2a5340,14, 0x2a5380,61, 0x2a5478,4, 0x2a5490,2, 0x2a54a0,7, 0x2a54c0,11, 0x2a5500,14, 0x2a5540,14, 0x2a5580,61, 0x2a5678,4, 0x2a5690,2, 0x2a56a0,7, 0x2a56c0,11, 0x2a5700,14, 0x2a5740,14, 0x2a5780,67, 0x2a5890,1, 0x2a5a00,8, 0x2a5a24,15, 0x2a5a64,30, 0x2a5b00,4, 0x2a5b20,2, 0x2a5c00,6, 0x2a5c40,14, 0x2a5c80,9, 0x2a5d00,9, 0x2a5d2c,1, 0x2a5d40,3, 0x2a5d60,1, 0x2a5d80,3, 0x2a5e00,2, 0x2a5e0c,1, 0x2a5e14,5, 0x2a5e2c,1, 0x2a5e34,5, 0x2a5e4c,1, 0x2a5e54,5, 0x2a5e6c,1, 0x2a5e74,5, 0x2a5e8c,1, 0x2a5e94,5, 0x2a5eac,1, 0x2a5eb4,3, 0x2a6000,14, 0x2a6070,3, 0x2a6080,6, 0x2a6100,9, 0x2a6204,1, 0x2a620c,6, 0x2a6240,13, 0x2a6280,16, 0x2a6800,19, 0x2a6850,10, 0x2a6880,19, 0x2a68d0,10, 0x2a6900,19, 0x2a6950,10, 0x2a6980,19, 0x2a69d0,10, 0x2a6a00,19, 0x2a6a50,10, 0x2a6a80,19, 0x2a6ad0,10, 0x2a6b00,19, 0x2a6b50,10, 0x2a6b80,19, 0x2a6bd0,10, 0x2a6c00,19, 0x2a6c60,6, 0x2a6c84,1, 0x2a6c94,8, 0x2a6cb8,9, 0x2a6ce0,4, 0x2a7000,6, 0x2a7020,3, 0x2a7040,7, 0x2a7060,6, 0x2a7100,5, 0x2a7138,1, 0x2a7144,1, 0x2a7150,2, 0x2a8000,6, 0x2a8020,3, 0x2a8030,9, 0x2a8100,6, 0x2a8120,10, 0x2a8150,8, 0x2a8400,1, 0x2a8428,1, 0x2a8450,1, 0x2a8478,1, 0x2a84a0,8, 0x2a85ac,1, 0x2a85d8,4, 0x2a8600,6, 0x2a8620,6, 0x2a8640,3, 0x2a8800,6, 0x2a8820,3, 0x2a8830,4, 0x2a8858,2, 0x2a8864,1, 0x2a8874,3, 0x2a8898,2, 0x2a88a4,1, 0x2a88b4,3, 0x2a9000,6, 0x2a9020,6, 0x2a9040,4, 0x2a9080,14, 0x2a90bc,1, 0x2a90c4,13, 0x2a90fc,1, 0x2a9200,20, 0x2a925c,31, 0x2a9300,24, 0x2a9380,2, 0x2a93a0,1, 0x2a93c0,11, 0x2a9404,3, 0x2a9420,11, 0x2a9460,3, 0x2a9480,6, 0x2a9500,7, 0x2a9520,6, 0x2a9540,1, 0x2a9558,2, 0x2a9600,17, 0x2a9800,496, 0x2aa000,6, 0x2aa020,6, 0x2aa040,4, 0x2aa080,14, 0x2aa0bc,1, 0x2aa0c4,13, 0x2aa0fc,1, 0x2aa200,20, 0x2aa25c,31, 0x2aa300,24, 0x2aa380,2, 0x2aa3a0,1, 0x2aa3c0,11, 0x2aa404,3, 0x2aa420,11, 0x2aa460,3, 0x2aa480,6, 0x2aa500,7, 0x2aa520,6, 0x2aa540,1, 0x2aa558,2, 0x2aa600,17, 0x2aa800,496, 0x2ab000,4, 0x2ab020,25, 0x2ab088,8, 0x2ab100,4, 0x2ab120,25, 0x2ab188,8, 0x2ab200,34, 0x2ab300,37, 0x2ab400,16, 0x2ab464,1, 0x2ab474,3, 0x2ab500,6, 0x2ab520,2, 0x2ab530,9, 0x2ab570,10, 0x2ab5a0,2, 0x2ab5b0,9, 0x2ab5f0,4, 0x2ab620,7, 0x2ab640,16, 0x2ab700,6, 0x2ab720,6, 0x2ab740,6, 0x2ab760,6, 0x2ab780,3, 0x2ab800,5, 0x2ab818,1, 0x2ab854,6, 0x2ab880,2, 0x2ab8a4,1, 0x2ab8ac,2, 0x2aba00,28, 0x2aba7c,13, 0x2abab4,1, 0x2ababc,10, 0x2abb04,1, 0x2abb0c,5, 0x2abb24,1, 0x2abb34,9, 0x2abb60,6, 0x2abb80,22, 0x2abbe0,3, 0x2abbf0,2, 0x2abc00,5, 0x2abc18,1, 0x2abc54,6, 0x2abc80,2, 0x2abca4,1, 0x2abcac,2, 0x2abe00,28, 0x2abe7c,13, 0x2abeb4,1, 0x2abebc,10, 0x2abf04,1, 0x2abf0c,5, 0x2abf24,1, 0x2abf34,9, 0x2abf60,6, 0x2abf80,22, 0x2abfe0,3, 0x2abff0,2, 0x2ac008,2, 0x2ac014,11, 0x2ac044,1, 0x2ac04c,3, 0x2ac05c,1, 0x2ac064,1, 0x2ac07c,1, 0x2ac500,2, 0x2ac518,1, 0x2ac520,3, 0x2ac540,6, 0x2ac580,10, 0x2ac808,2, 0x2ac814,11, 0x2ac844,1, 0x2ac84c,3, 0x2ac85c,1, 0x2ac864,1, 0x2ac87c,1, 0x2acd00,2, 0x2acd18,1, 0x2acd20,3, 0x2acd40,6, 0x2acd80,10, 0x2ad800,2, 0x2ad828,2, 0x2ad850,2, 0x2ad878,2, 0x2ad8a0,6, 0x2ad9ac,1, 0x2ad9d8,4, 0x2ada00,6, 0x2ada20,6, 0x2ada40,6, 0x2ada60,6, 0x2ada80,3, 0x2adc00,6, 0x2adc20,3, 0x2adc40,2, 0x2adc60,1, 0x2b0000,5, 0x2b0020,4, 0x2b0034,17, 0x2b0080,1, 0x2b00a0,6, 0x2b0100,5, 0x2b0120,4, 0x2b0134,17, 0x2b0180,1, 0x2b01a0,6, 0x2b0200,5, 0x2b0220,4, 0x2b0234,17, 0x2b0280,1, 0x2b02a0,6, 0x2b0300,5, 0x2b0320,4, 0x2b0334,17, 0x2b0380,1, 0x2b03a0,6, 0x2b0500,6, 0x2b051c,7, 0x2b0540,1, 0x2b0c00,13, 0x2b0c40,13, 0x2b0d00,6, 0x2b0d80,14, 0x2b0dc0,2, 0x2b0e20,6, 0x2b0e60,3, 0x2b0e80,6, 0x2b1000,2, 0x2b1010,5, 0x2b1060,32, 0x2b1100,8, 0x2b1180,12, 0x2b1218,13, 0x2b1250,6, 0x2b1280,1, 0x2b1288,6, 0x2b12a4,1, 0x2b1400,8, 0x2b1424,2, 0x2b1500,5, 0x2b1520,4, 0x2b1800,24, 0x2b1864,5, 0x2b1880,8, 0x2b1900,13, 0x2b1980,4, 0x2b19a0,6, 0x2b1a40,1, 0x2b1a60,1, 0x2b1a68,23, 0x2b1ac8,6, 0x2b1b80,12, 0x2b1c00,6, 0x2b1c20,6, 0x2b1c40,6, 0x2b1c60,3, 0x2b1d00,6, 0x2b1d20,6, 0x2b1d40,3, 0x2b2000,5, 0x2b2020,4, 0x2b2034,17, 0x2b2080,1, 0x2b20a0,6, 0x2b2100,5, 0x2b2120,4, 0x2b2134,17, 0x2b2180,1, 0x2b21a0,6, 0x2b2200,5, 0x2b2220,4, 0x2b2234,17, 0x2b2280,1, 0x2b22a0,6, 0x2b2300,5, 0x2b2320,4, 0x2b2334,17, 0x2b2380,1, 0x2b23a0,6, 0x2b2500,6, 0x2b251c,7, 0x2b2540,1, 0x2b2c00,13, 0x2b2c40,13, 0x2b2d00,6, 0x2b2d80,14, 0x2b2dc0,2, 0x2b2e20,6, 0x2b2e60,3, 0x2b2e80,6, 0x2b3000,2, 0x2b3010,5, 0x2b3060,32, 0x2b3100,8, 0x2b3180,12, 0x2b3218,13, 0x2b3250,6, 0x2b3280,1, 0x2b3288,6, 0x2b32a4,1, 0x2b3400,8, 0x2b3424,2, 0x2b3500,5, 0x2b3520,4, 0x2b3800,24, 0x2b3864,5, 0x2b3880,8, 0x2b3900,13, 0x2b3980,4, 0x2b39a0,6, 0x2b3a40,1, 0x2b3a60,1, 0x2b3a68,23, 0x2b3ac8,6, 0x2b3b80,12, 0x2b3c00,6, 0x2b3c20,6, 0x2b3c40,6, 0x2b3c60,3, 0x2b3d00,6, 0x2b3d20,6, 0x2b3d40,3, 0x2b4000,29, 0x2b4078,4, 0x2b4090,2, 0x2b40a0,7, 0x2b40c0,11, 0x2b4100,14, 0x2b4140,14, 0x2b4180,61, 0x2b4278,4, 0x2b4290,2, 0x2b42a0,7, 0x2b42c0,11, 0x2b4300,14, 0x2b4340,14, 0x2b4380,61, 0x2b4478,4, 0x2b4490,2, 0x2b44a0,7, 0x2b44c0,11, 0x2b4500,14, 0x2b4540,14, 0x2b4580,61, 0x2b4678,4, 0x2b4690,2, 0x2b46a0,7, 0x2b46c0,11, 0x2b4700,14, 0x2b4740,14, 0x2b4780,67, 0x2b4890,1, 0x2b4a00,8, 0x2b4a24,15, 0x2b4a64,30, 0x2b4b00,4, 0x2b4b20,2, 0x2b4c00,6, 0x2b4c40,14, 0x2b4c80,9, 0x2b4d00,9, 0x2b4d2c,1, 0x2b4d40,3, 0x2b4d60,1, 0x2b4d80,3, 0x2b4e00,2, 0x2b4e0c,1, 0x2b4e14,5, 0x2b4e2c,1, 0x2b4e34,5, 0x2b4e4c,1, 0x2b4e54,5, 0x2b4e6c,1, 0x2b4e74,5, 0x2b4e8c,1, 0x2b4e94,5, 0x2b4eac,1, 0x2b4eb4,3, 0x2b5000,29, 0x2b5078,4, 0x2b5090,2, 0x2b50a0,7, 0x2b50c0,11, 0x2b5100,14, 0x2b5140,14, 0x2b5180,61, 0x2b5278,4, 0x2b5290,2, 0x2b52a0,7, 0x2b52c0,11, 0x2b5300,14, 0x2b5340,14, 0x2b5380,61, 0x2b5478,4, 0x2b5490,2, 0x2b54a0,7, 0x2b54c0,11, 0x2b5500,14, 0x2b5540,14, 0x2b5580,61, 0x2b5678,4, 0x2b5690,2, 0x2b56a0,7, 0x2b56c0,11, 0x2b5700,14, 0x2b5740,14, 0x2b5780,67, 0x2b5890,1, 0x2b5a00,8, 0x2b5a24,15, 0x2b5a64,30, 0x2b5b00,4, 0x2b5b20,2, 0x2b5c00,6, 0x2b5c40,14, 0x2b5c80,9, 0x2b5d00,9, 0x2b5d2c,1, 0x2b5d40,3, 0x2b5d60,1, 0x2b5d80,3, 0x2b5e00,2, 0x2b5e0c,1, 0x2b5e14,5, 0x2b5e2c,1, 0x2b5e34,5, 0x2b5e4c,1, 0x2b5e54,5, 0x2b5e6c,1, 0x2b5e74,5, 0x2b5e8c,1, 0x2b5e94,5, 0x2b5eac,1, 0x2b5eb4,3, 0x2b6000,14, 0x2b6070,3, 0x2b6080,6, 0x2b6100,9, 0x2b6204,1, 0x2b620c,6, 0x2b6240,13, 0x2b6280,16, 0x2b6800,19, 0x2b6850,10, 0x2b6880,19, 0x2b68d0,10, 0x2b6900,19, 0x2b6950,10, 0x2b6980,19, 0x2b69d0,10, 0x2b6a00,19, 0x2b6a50,10, 0x2b6a80,19, 0x2b6ad0,10, 0x2b6b00,19, 0x2b6b50,10, 0x2b6b80,19, 0x2b6bd0,10, 0x2b6c00,19, 0x2b6c60,6, 0x2b6c84,1, 0x2b6c94,8, 0x2b6cb8,9, 0x2b6ce0,4, 0x2b7000,6, 0x2b7020,3, 0x2b7040,7, 0x2b7060,6, 0x2b7100,5, 0x2b7138,1, 0x2b7144,1, 0x2b7150,2, 0x2b8000,6, 0x2b8020,3, 0x2b8030,9, 0x2b8100,6, 0x2b8120,10, 0x2b8150,8, 0x2b8400,1, 0x2b8428,1, 0x2b8450,1, 0x2b8478,1, 0x2b84a0,8, 0x2b85ac,1, 0x2b85d8,4, 0x2b8600,6, 0x2b8620,6, 0x2b8640,3, 0x2b8800,6, 0x2b8820,3, 0x2b8830,4, 0x2b8858,2, 0x2b8864,1, 0x2b8874,3, 0x2b8898,2, 0x2b88a4,1, 0x2b88b4,3, 0x2b9000,6, 0x2b9020,6, 0x2b9040,4, 0x2b9080,14, 0x2b90bc,1, 0x2b90c4,13, 0x2b90fc,1, 0x2b9200,20, 0x2b925c,31, 0x2b9300,24, 0x2b9380,2, 0x2b93a0,1, 0x2b93c0,11, 0x2b9404,3, 0x2b9420,11, 0x2b9460,3, 0x2b9480,6, 0x2b9500,7, 0x2b9520,6, 0x2b9540,1, 0x2b9558,2, 0x2b9600,17, 0x2b9800,496, 0x2ba000,6, 0x2ba020,6, 0x2ba040,4, 0x2ba080,14, 0x2ba0bc,1, 0x2ba0c4,13, 0x2ba0fc,1, 0x2ba200,20, 0x2ba25c,31, 0x2ba300,24, 0x2ba380,2, 0x2ba3a0,1, 0x2ba3c0,11, 0x2ba404,3, 0x2ba420,11, 0x2ba460,3, 0x2ba480,6, 0x2ba500,7, 0x2ba520,6, 0x2ba540,1, 0x2ba558,2, 0x2ba600,17, 0x2ba800,496, 0x2bb000,4, 0x2bb020,25, 0x2bb088,8, 0x2bb100,4, 0x2bb120,25, 0x2bb188,8, 0x2bb200,34, 0x2bb300,37, 0x2bb400,16, 0x2bb464,1, 0x2bb474,3, 0x2bb500,6, 0x2bb520,2, 0x2bb530,9, 0x2bb570,10, 0x2bb5a0,2, 0x2bb5b0,9, 0x2bb5f0,4, 0x2bb620,7, 0x2bb640,16, 0x2bb700,6, 0x2bb720,6, 0x2bb740,6, 0x2bb760,6, 0x2bb780,3, 0x2bb800,5, 0x2bb818,1, 0x2bb854,6, 0x2bb880,2, 0x2bb8a4,1, 0x2bb8ac,2, 0x2bba00,28, 0x2bba7c,13, 0x2bbab4,1, 0x2bbabc,10, 0x2bbb04,1, 0x2bbb0c,5, 0x2bbb24,1, 0x2bbb34,9, 0x2bbb60,6, 0x2bbb80,22, 0x2bbbe0,3, 0x2bbbf0,2, 0x2bbc00,5, 0x2bbc18,1, 0x2bbc54,6, 0x2bbc80,2, 0x2bbca4,1, 0x2bbcac,2, 0x2bbe00,28, 0x2bbe7c,13, 0x2bbeb4,1, 0x2bbebc,10, 0x2bbf04,1, 0x2bbf0c,5, 0x2bbf24,1, 0x2bbf34,9, 0x2bbf60,6, 0x2bbf80,22, 0x2bbfe0,3, 0x2bbff0,2, 0x2bc008,2, 0x2bc014,11, 0x2bc044,1, 0x2bc04c,3, 0x2bc05c,1, 0x2bc064,1, 0x2bc07c,1, 0x2bc500,2, 0x2bc518,1, 0x2bc520,3, 0x2bc540,6, 0x2bc580,10, 0x2bc808,2, 0x2bc814,11, 0x2bc844,1, 0x2bc84c,3, 0x2bc85c,1, 0x2bc864,1, 0x2bc87c,1, 0x2bcd00,2, 0x2bcd18,1, 0x2bcd20,3, 0x2bcd40,6, 0x2bcd80,10, 0x2bd800,2, 0x2bd828,2, 0x2bd850,2, 0x2bd878,2, 0x2bd8a0,6, 0x2bd9ac,1, 0x2bd9d8,4, 0x2bda00,6, 0x2bda20,6, 0x2bda40,6, 0x2bda60,6, 0x2bda80,3, 0x2bdc00,6, 0x2bdc20,3, 0x2bdc40,2, 0x2bdc60,1, 0x2c0000,5, 0x2c0020,4, 0x2c0034,17, 0x2c0080,1, 0x2c00a0,6, 0x2c0100,5, 0x2c0120,4, 0x2c0134,17, 0x2c0180,1, 0x2c01a0,6, 0x2c0200,5, 0x2c0220,4, 0x2c0234,17, 0x2c0280,1, 0x2c02a0,6, 0x2c0300,5, 0x2c0320,4, 0x2c0334,17, 0x2c0380,1, 0x2c03a0,6, 0x2c0500,6, 0x2c051c,7, 0x2c0540,1, 0x2c0c00,13, 0x2c0c40,13, 0x2c0d00,6, 0x2c0d80,14, 0x2c0dc0,2, 0x2c0e20,6, 0x2c0e60,3, 0x2c0e80,6, 0x2c1000,2, 0x2c1010,5, 0x2c1060,32, 0x2c1100,8, 0x2c1180,12, 0x2c1218,13, 0x2c1250,6, 0x2c1280,1, 0x2c1288,6, 0x2c12a4,1, 0x2c1400,8, 0x2c1424,2, 0x2c1500,5, 0x2c1520,4, 0x2c1800,24, 0x2c1864,5, 0x2c1880,8, 0x2c1900,13, 0x2c1980,4, 0x2c19a0,6, 0x2c1a40,1, 0x2c1a60,1, 0x2c1a68,23, 0x2c1ac8,6, 0x2c1b80,12, 0x2c1c00,6, 0x2c1c20,6, 0x2c1c40,6, 0x2c1c60,3, 0x2c1d00,6, 0x2c1d20,6, 0x2c1d40,3, 0x2c2000,5, 0x2c2020,4, 0x2c2034,17, 0x2c2080,1, 0x2c20a0,6, 0x2c2100,5, 0x2c2120,4, 0x2c2134,17, 0x2c2180,1, 0x2c21a0,6, 0x2c2200,5, 0x2c2220,4, 0x2c2234,17, 0x2c2280,1, 0x2c22a0,6, 0x2c2300,5, 0x2c2320,4, 0x2c2334,17, 0x2c2380,1, 0x2c23a0,6, 0x2c2500,6, 0x2c251c,7, 0x2c2540,1, 0x2c2c00,13, 0x2c2c40,13, 0x2c2d00,6, 0x2c2d80,14, 0x2c2dc0,2, 0x2c2e20,6, 0x2c2e60,3, 0x2c2e80,6, 0x2c3000,2, 0x2c3010,5, 0x2c3060,32, 0x2c3100,8, 0x2c3180,12, 0x2c3218,13, 0x2c3250,6, 0x2c3280,1, 0x2c3288,6, 0x2c32a4,1, 0x2c3400,8, 0x2c3424,2, 0x2c3500,5, 0x2c3520,4, 0x2c3800,24, 0x2c3864,5, 0x2c3880,8, 0x2c3900,13, 0x2c3980,4, 0x2c39a0,6, 0x2c3a40,1, 0x2c3a60,1, 0x2c3a68,23, 0x2c3ac8,6, 0x2c3b80,12, 0x2c3c00,6, 0x2c3c20,6, 0x2c3c40,6, 0x2c3c60,3, 0x2c3d00,6, 0x2c3d20,6, 0x2c3d40,3, 0x2c4000,29, 0x2c4078,4, 0x2c4090,2, 0x2c40a0,7, 0x2c40c0,11, 0x2c4100,14, 0x2c4140,14, 0x2c4180,61, 0x2c4278,4, 0x2c4290,2, 0x2c42a0,7, 0x2c42c0,11, 0x2c4300,14, 0x2c4340,14, 0x2c4380,61, 0x2c4478,4, 0x2c4490,2, 0x2c44a0,7, 0x2c44c0,11, 0x2c4500,14, 0x2c4540,14, 0x2c4580,61, 0x2c4678,4, 0x2c4690,2, 0x2c46a0,7, 0x2c46c0,11, 0x2c4700,14, 0x2c4740,14, 0x2c4780,67, 0x2c4890,1, 0x2c4a00,8, 0x2c4a24,15, 0x2c4a64,30, 0x2c4b00,4, 0x2c4b20,2, 0x2c4c00,6, 0x2c4c40,14, 0x2c4c80,9, 0x2c4d00,9, 0x2c4d2c,1, 0x2c4d40,3, 0x2c4d60,1, 0x2c4d80,3, 0x2c4e00,2, 0x2c4e0c,1, 0x2c4e14,5, 0x2c4e2c,1, 0x2c4e34,5, 0x2c4e4c,1, 0x2c4e54,5, 0x2c4e6c,1, 0x2c4e74,5, 0x2c4e8c,1, 0x2c4e94,5, 0x2c4eac,1, 0x2c4eb4,3, 0x2c5000,29, 0x2c5078,4, 0x2c5090,2, 0x2c50a0,7, 0x2c50c0,11, 0x2c5100,14, 0x2c5140,14, 0x2c5180,61, 0x2c5278,4, 0x2c5290,2, 0x2c52a0,7, 0x2c52c0,11, 0x2c5300,14, 0x2c5340,14, 0x2c5380,61, 0x2c5478,4, 0x2c5490,2, 0x2c54a0,7, 0x2c54c0,11, 0x2c5500,14, 0x2c5540,14, 0x2c5580,61, 0x2c5678,4, 0x2c5690,2, 0x2c56a0,7, 0x2c56c0,11, 0x2c5700,14, 0x2c5740,14, 0x2c5780,67, 0x2c5890,1, 0x2c5a00,8, 0x2c5a24,15, 0x2c5a64,30, 0x2c5b00,4, 0x2c5b20,2, 0x2c5c00,6, 0x2c5c40,14, 0x2c5c80,9, 0x2c5d00,9, 0x2c5d2c,1, 0x2c5d40,3, 0x2c5d60,1, 0x2c5d80,3, 0x2c5e00,2, 0x2c5e0c,1, 0x2c5e14,5, 0x2c5e2c,1, 0x2c5e34,5, 0x2c5e4c,1, 0x2c5e54,5, 0x2c5e6c,1, 0x2c5e74,5, 0x2c5e8c,1, 0x2c5e94,5, 0x2c5eac,1, 0x2c5eb4,3, 0x2c6000,14, 0x2c6070,3, 0x2c6080,6, 0x2c6100,9, 0x2c6204,1, 0x2c620c,6, 0x2c6240,13, 0x2c6280,16, 0x2c6800,19, 0x2c6850,10, 0x2c6880,19, 0x2c68d0,10, 0x2c6900,19, 0x2c6950,10, 0x2c6980,19, 0x2c69d0,10, 0x2c6a00,19, 0x2c6a50,10, 0x2c6a80,19, 0x2c6ad0,10, 0x2c6b00,19, 0x2c6b50,10, 0x2c6b80,19, 0x2c6bd0,10, 0x2c6c00,19, 0x2c6c60,6, 0x2c6c84,1, 0x2c6c94,8, 0x2c6cb8,9, 0x2c6ce0,4, 0x2c7000,6, 0x2c7020,3, 0x2c7040,7, 0x2c7060,6, 0x2c7100,5, 0x2c7138,1, 0x2c7144,1, 0x2c7150,2, 0x2c8000,6, 0x2c8020,3, 0x2c8030,9, 0x2c8100,6, 0x2c8120,10, 0x2c8150,8, 0x2c8400,1, 0x2c8428,1, 0x2c8450,1, 0x2c8478,1, 0x2c84a0,8, 0x2c85ac,1, 0x2c85d8,4, 0x2c8600,6, 0x2c8620,6, 0x2c8640,3, 0x2c8800,6, 0x2c8820,3, 0x2c8830,4, 0x2c8858,2, 0x2c8864,1, 0x2c8874,3, 0x2c8898,2, 0x2c88a4,1, 0x2c88b4,3, 0x2c9000,6, 0x2c9020,6, 0x2c9040,4, 0x2c9080,14, 0x2c90bc,1, 0x2c90c4,13, 0x2c90fc,1, 0x2c9200,20, 0x2c925c,31, 0x2c9300,24, 0x2c9380,2, 0x2c93a0,1, 0x2c93c0,11, 0x2c9404,3, 0x2c9420,11, 0x2c9460,3, 0x2c9480,6, 0x2c9500,7, 0x2c9520,6, 0x2c9540,1, 0x2c9558,2, 0x2c9600,17, 0x2c9800,496, 0x2ca000,6, 0x2ca020,6, 0x2ca040,4, 0x2ca080,14, 0x2ca0bc,1, 0x2ca0c4,13, 0x2ca0fc,1, 0x2ca200,20, 0x2ca25c,31, 0x2ca300,24, 0x2ca380,2, 0x2ca3a0,1, 0x2ca3c0,11, 0x2ca404,3, 0x2ca420,11, 0x2ca460,3, 0x2ca480,6, 0x2ca500,7, 0x2ca520,6, 0x2ca540,1, 0x2ca558,2, 0x2ca600,17, 0x2ca800,496, 0x2cb000,4, 0x2cb020,25, 0x2cb088,8, 0x2cb100,4, 0x2cb120,25, 0x2cb188,8, 0x2cb200,34, 0x2cb300,37, 0x2cb400,16, 0x2cb464,1, 0x2cb474,3, 0x2cb500,6, 0x2cb520,2, 0x2cb530,9, 0x2cb570,10, 0x2cb5a0,2, 0x2cb5b0,9, 0x2cb5f0,4, 0x2cb620,7, 0x2cb640,16, 0x2cb700,6, 0x2cb720,6, 0x2cb740,6, 0x2cb760,6, 0x2cb780,3, 0x2cb800,5, 0x2cb818,1, 0x2cb854,6, 0x2cb880,2, 0x2cb8a4,1, 0x2cb8ac,2, 0x2cba00,28, 0x2cba7c,13, 0x2cbab4,1, 0x2cbabc,10, 0x2cbb04,1, 0x2cbb0c,5, 0x2cbb24,1, 0x2cbb34,9, 0x2cbb60,6, 0x2cbb80,22, 0x2cbbe0,3, 0x2cbbf0,2, 0x2cbc00,5, 0x2cbc18,1, 0x2cbc54,6, 0x2cbc80,2, 0x2cbca4,1, 0x2cbcac,2, 0x2cbe00,28, 0x2cbe7c,13, 0x2cbeb4,1, 0x2cbebc,10, 0x2cbf04,1, 0x2cbf0c,5, 0x2cbf24,1, 0x2cbf34,9, 0x2cbf60,6, 0x2cbf80,22, 0x2cbfe0,3, 0x2cbff0,2, 0x2cc008,2, 0x2cc014,11, 0x2cc044,1, 0x2cc04c,3, 0x2cc05c,1, 0x2cc064,1, 0x2cc07c,1, 0x2cc500,2, 0x2cc518,1, 0x2cc520,3, 0x2cc540,6, 0x2cc580,10, 0x2cc808,2, 0x2cc814,11, 0x2cc844,1, 0x2cc84c,3, 0x2cc85c,1, 0x2cc864,1, 0x2cc87c,1, 0x2ccd00,2, 0x2ccd18,1, 0x2ccd20,3, 0x2ccd40,6, 0x2ccd80,10, 0x2cd800,2, 0x2cd828,2, 0x2cd850,2, 0x2cd878,2, 0x2cd8a0,6, 0x2cd9ac,1, 0x2cd9d8,4, 0x2cda00,6, 0x2cda20,6, 0x2cda40,6, 0x2cda60,6, 0x2cda80,3, 0x2cdc00,6, 0x2cdc20,3, 0x2cdc40,2, 0x2cdc60,1, 0x2d0000,5, 0x2d0020,4, 0x2d0034,17, 0x2d0080,1, 0x2d00a0,6, 0x2d0100,5, 0x2d0120,4, 0x2d0134,17, 0x2d0180,1, 0x2d01a0,6, 0x2d0200,5, 0x2d0220,4, 0x2d0234,17, 0x2d0280,1, 0x2d02a0,6, 0x2d0300,5, 0x2d0320,4, 0x2d0334,17, 0x2d0380,1, 0x2d03a0,6, 0x2d0500,6, 0x2d051c,7, 0x2d0540,1, 0x2d0c00,13, 0x2d0c40,13, 0x2d0d00,6, 0x2d0d80,14, 0x2d0dc0,2, 0x2d0e20,6, 0x2d0e60,3, 0x2d0e80,6, 0x2d1000,2, 0x2d1010,5, 0x2d1060,32, 0x2d1100,8, 0x2d1180,12, 0x2d1218,13, 0x2d1250,6, 0x2d1280,1, 0x2d1288,6, 0x2d12a4,1, 0x2d1400,8, 0x2d1424,2, 0x2d1500,5, 0x2d1520,4, 0x2d1800,24, 0x2d1864,5, 0x2d1880,8, 0x2d1900,13, 0x2d1980,4, 0x2d19a0,6, 0x2d1a40,1, 0x2d1a60,1, 0x2d1a68,23, 0x2d1ac8,6, 0x2d1b80,12, 0x2d1c00,6, 0x2d1c20,6, 0x2d1c40,6, 0x2d1c60,3, 0x2d1d00,6, 0x2d1d20,6, 0x2d1d40,3, 0x2d2000,5, 0x2d2020,4, 0x2d2034,17, 0x2d2080,1, 0x2d20a0,6, 0x2d2100,5, 0x2d2120,4, 0x2d2134,17, 0x2d2180,1, 0x2d21a0,6, 0x2d2200,5, 0x2d2220,4, 0x2d2234,17, 0x2d2280,1, 0x2d22a0,6, 0x2d2300,5, 0x2d2320,4, 0x2d2334,17, 0x2d2380,1, 0x2d23a0,6, 0x2d2500,6, 0x2d251c,7, 0x2d2540,1, 0x2d2c00,13, 0x2d2c40,13, 0x2d2d00,6, 0x2d2d80,14, 0x2d2dc0,2, 0x2d2e20,6, 0x2d2e60,3, 0x2d2e80,6, 0x2d3000,2, 0x2d3010,5, 0x2d3060,32, 0x2d3100,8, 0x2d3180,12, 0x2d3218,13, 0x2d3250,6, 0x2d3280,1, 0x2d3288,6, 0x2d32a4,1, 0x2d3400,8, 0x2d3424,2, 0x2d3500,5, 0x2d3520,4, 0x2d3800,24, 0x2d3864,5, 0x2d3880,8, 0x2d3900,13, 0x2d3980,4, 0x2d39a0,6, 0x2d3a40,1, 0x2d3a60,1, 0x2d3a68,23, 0x2d3ac8,6, 0x2d3b80,12, 0x2d3c00,6, 0x2d3c20,6, 0x2d3c40,6, 0x2d3c60,3, 0x2d3d00,6, 0x2d3d20,6, 0x2d3d40,3, 0x2d4000,29, 0x2d4078,4, 0x2d4090,2, 0x2d40a0,7, 0x2d40c0,11, 0x2d4100,14, 0x2d4140,14, 0x2d4180,61, 0x2d4278,4, 0x2d4290,2, 0x2d42a0,7, 0x2d42c0,11, 0x2d4300,14, 0x2d4340,14, 0x2d4380,61, 0x2d4478,4, 0x2d4490,2, 0x2d44a0,7, 0x2d44c0,11, 0x2d4500,14, 0x2d4540,14, 0x2d4580,61, 0x2d4678,4, 0x2d4690,2, 0x2d46a0,7, 0x2d46c0,11, 0x2d4700,14, 0x2d4740,14, 0x2d4780,67, 0x2d4890,1, 0x2d4a00,8, 0x2d4a24,15, 0x2d4a64,30, 0x2d4b00,4, 0x2d4b20,2, 0x2d4c00,6, 0x2d4c40,14, 0x2d4c80,9, 0x2d4d00,9, 0x2d4d2c,1, 0x2d4d40,3, 0x2d4d60,1, 0x2d4d80,3, 0x2d4e00,2, 0x2d4e0c,1, 0x2d4e14,5, 0x2d4e2c,1, 0x2d4e34,5, 0x2d4e4c,1, 0x2d4e54,5, 0x2d4e6c,1, 0x2d4e74,5, 0x2d4e8c,1, 0x2d4e94,5, 0x2d4eac,1, 0x2d4eb4,3, 0x2d5000,29, 0x2d5078,4, 0x2d5090,2, 0x2d50a0,7, 0x2d50c0,11, 0x2d5100,14, 0x2d5140,14, 0x2d5180,61, 0x2d5278,4, 0x2d5290,2, 0x2d52a0,7, 0x2d52c0,11, 0x2d5300,14, 0x2d5340,14, 0x2d5380,61, 0x2d5478,4, 0x2d5490,2, 0x2d54a0,7, 0x2d54c0,11, 0x2d5500,14, 0x2d5540,14, 0x2d5580,61, 0x2d5678,4, 0x2d5690,2, 0x2d56a0,7, 0x2d56c0,11, 0x2d5700,14, 0x2d5740,14, 0x2d5780,67, 0x2d5890,1, 0x2d5a00,8, 0x2d5a24,15, 0x2d5a64,30, 0x2d5b00,4, 0x2d5b20,2, 0x2d5c00,6, 0x2d5c40,14, 0x2d5c80,9, 0x2d5d00,9, 0x2d5d2c,1, 0x2d5d40,3, 0x2d5d60,1, 0x2d5d80,3, 0x2d5e00,2, 0x2d5e0c,1, 0x2d5e14,5, 0x2d5e2c,1, 0x2d5e34,5, 0x2d5e4c,1, 0x2d5e54,5, 0x2d5e6c,1, 0x2d5e74,5, 0x2d5e8c,1, 0x2d5e94,5, 0x2d5eac,1, 0x2d5eb4,3, 0x2d6000,14, 0x2d6070,3, 0x2d6080,6, 0x2d6100,9, 0x2d6204,1, 0x2d620c,6, 0x2d6240,13, 0x2d6280,16, 0x2d6400,8, 0x2d6424,15, 0x2d6464,15, 0x2d64a4,15, 0x2d64e4,30, 0x2d6580,10, 0x2d65ac,1, 0x2d65b4,5, 0x2d65cc,1, 0x2d65d4,5, 0x2d65ec,1, 0x2d65f4,13, 0x2d6680,4, 0x2d6694,2, 0x2d66a0,5, 0x2d66c0,5, 0x2d66e0,4, 0x2d6800,19, 0x2d6850,10, 0x2d6880,19, 0x2d68d0,10, 0x2d6900,19, 0x2d6950,10, 0x2d6980,19, 0x2d69d0,10, 0x2d6a00,19, 0x2d6a50,10, 0x2d6a80,19, 0x2d6ad0,10, 0x2d6b00,19, 0x2d6b50,10, 0x2d6b80,19, 0x2d6bd0,10, 0x2d6c00,19, 0x2d6c60,6, 0x2d6c84,1, 0x2d6c94,8, 0x2d6cb8,9, 0x2d6ce0,4, 0x2d7000,6, 0x2d7020,3, 0x2d7040,7, 0x2d7060,6, 0x2d7100,5, 0x2d7138,1, 0x2d7144,1, 0x2d7150,2, 0x2d8000,6, 0x2d8020,3, 0x2d8030,9, 0x2d8100,6, 0x2d8120,10, 0x2d8150,8, 0x2d8400,1, 0x2d8428,1, 0x2d8450,1, 0x2d8478,1, 0x2d84a0,8, 0x2d85ac,1, 0x2d85d8,4, 0x2d8600,6, 0x2d8620,6, 0x2d8640,3, 0x2d8800,6, 0x2d8820,3, 0x2d8830,4, 0x2d8858,2, 0x2d8864,1, 0x2d8874,3, 0x2d8898,2, 0x2d88a4,1, 0x2d88b4,3, 0x2d9000,6, 0x2d9020,6, 0x2d9040,4, 0x2d9080,14, 0x2d90bc,1, 0x2d90c4,13, 0x2d90fc,1, 0x2d9200,20, 0x2d925c,31, 0x2d9300,24, 0x2d9380,2, 0x2d93a0,1, 0x2d93c0,11, 0x2d9404,3, 0x2d9420,11, 0x2d9460,3, 0x2d9480,6, 0x2d9500,7, 0x2d9520,6, 0x2d9540,1, 0x2d9558,2, 0x2d9600,17, 0x2d9800,496, 0x2da000,6, 0x2da020,6, 0x2da040,4, 0x2da080,14, 0x2da0bc,1, 0x2da0c4,13, 0x2da0fc,1, 0x2da200,20, 0x2da25c,31, 0x2da300,24, 0x2da380,2, 0x2da3a0,1, 0x2da3c0,11, 0x2da404,3, 0x2da420,11, 0x2da460,3, 0x2da480,6, 0x2da500,7, 0x2da520,6, 0x2da540,1, 0x2da558,2, 0x2da600,17, 0x2da800,496, 0x2db000,4, 0x2db020,25, 0x2db088,8, 0x2db100,4, 0x2db120,25, 0x2db188,8, 0x2db200,34, 0x2db300,37, 0x2db400,16, 0x2db464,1, 0x2db474,3, 0x2db500,6, 0x2db520,2, 0x2db530,9, 0x2db570,10, 0x2db5a0,2, 0x2db5b0,9, 0x2db5f0,4, 0x2db620,7, 0x2db640,16, 0x2db700,6, 0x2db720,6, 0x2db740,6, 0x2db760,6, 0x2db780,3, 0x2db800,5, 0x2db818,1, 0x2db854,6, 0x2db880,2, 0x2db8a4,1, 0x2db8ac,2, 0x2dba00,28, 0x2dba7c,13, 0x2dbab4,1, 0x2dbabc,10, 0x2dbb04,1, 0x2dbb0c,5, 0x2dbb24,1, 0x2dbb34,9, 0x2dbb60,6, 0x2dbb80,22, 0x2dbbe0,3, 0x2dbbf0,2, 0x2dbc00,5, 0x2dbc18,1, 0x2dbc54,6, 0x2dbc80,2, 0x2dbca4,1, 0x2dbcac,2, 0x2dbe00,28, 0x2dbe7c,13, 0x2dbeb4,1, 0x2dbebc,10, 0x2dbf04,1, 0x2dbf0c,5, 0x2dbf24,1, 0x2dbf34,9, 0x2dbf60,6, 0x2dbf80,22, 0x2dbfe0,3, 0x2dbff0,2, 0x2dc008,2, 0x2dc014,11, 0x2dc044,1, 0x2dc04c,3, 0x2dc05c,1, 0x2dc064,1, 0x2dc07c,1, 0x2dc500,2, 0x2dc518,1, 0x2dc520,3, 0x2dc540,6, 0x2dc580,10, 0x2dc808,2, 0x2dc814,11, 0x2dc844,1, 0x2dc84c,3, 0x2dc85c,1, 0x2dc864,1, 0x2dc87c,1, 0x2dcd00,2, 0x2dcd18,1, 0x2dcd20,3, 0x2dcd40,6, 0x2dcd80,10, 0x2dd800,2, 0x2dd828,2, 0x2dd850,2, 0x2dd878,2, 0x2dd8a0,6, 0x2dd9ac,1, 0x2dd9d8,4, 0x2dda00,6, 0x2dda20,6, 0x2dda40,6, 0x2dda60,6, 0x2dda80,3, 0x2ddc00,6, 0x2ddc20,3, 0x2ddc40,2, 0x2ddc60,1, 0x2e0000,5, 0x2e0020,4, 0x2e0034,17, 0x2e0080,1, 0x2e00a0,6, 0x2e0100,5, 0x2e0120,4, 0x2e0134,17, 0x2e0180,1, 0x2e01a0,6, 0x2e0200,5, 0x2e0220,4, 0x2e0234,17, 0x2e0280,1, 0x2e02a0,6, 0x2e0300,5, 0x2e0320,4, 0x2e0334,17, 0x2e0380,1, 0x2e03a0,6, 0x2e0500,6, 0x2e051c,7, 0x2e0540,1, 0x2e0c00,13, 0x2e0c40,13, 0x2e0d00,6, 0x2e0d80,14, 0x2e0dc0,2, 0x2e0e20,6, 0x2e0e60,3, 0x2e0e80,6, 0x2e1000,2, 0x2e1010,5, 0x2e1060,32, 0x2e1100,8, 0x2e1180,12, 0x2e1218,13, 0x2e1250,6, 0x2e1280,1, 0x2e1288,6, 0x2e12a4,1, 0x2e1400,8, 0x2e1424,2, 0x2e1500,5, 0x2e1520,4, 0x2e1800,24, 0x2e1864,5, 0x2e1880,8, 0x2e1900,13, 0x2e1980,4, 0x2e19a0,6, 0x2e1a40,1, 0x2e1a60,1, 0x2e1a68,23, 0x2e1ac8,6, 0x2e1b80,12, 0x2e1c00,6, 0x2e1c20,6, 0x2e1c40,6, 0x2e1c60,3, 0x2e1d00,6, 0x2e1d20,6, 0x2e1d40,3, 0x2e2000,5, 0x2e2020,4, 0x2e2034,17, 0x2e2080,1, 0x2e20a0,6, 0x2e2100,5, 0x2e2120,4, 0x2e2134,17, 0x2e2180,1, 0x2e21a0,6, 0x2e2200,5, 0x2e2220,4, 0x2e2234,17, 0x2e2280,1, 0x2e22a0,6, 0x2e2300,5, 0x2e2320,4, 0x2e2334,17, 0x2e2380,1, 0x2e23a0,6, 0x2e2500,6, 0x2e251c,7, 0x2e2540,1, 0x2e2c00,13, 0x2e2c40,13, 0x2e2d00,6, 0x2e2d80,14, 0x2e2dc0,2, 0x2e2e20,6, 0x2e2e60,3, 0x2e2e80,6, 0x2e3000,2, 0x2e3010,5, 0x2e3060,32, 0x2e3100,8, 0x2e3180,12, 0x2e3218,13, 0x2e3250,6, 0x2e3280,1, 0x2e3288,6, 0x2e32a4,1, 0x2e3400,8, 0x2e3424,2, 0x2e3500,5, 0x2e3520,4, 0x2e3800,24, 0x2e3864,5, 0x2e3880,8, 0x2e3900,13, 0x2e3980,4, 0x2e39a0,6, 0x2e3a40,1, 0x2e3a60,1, 0x2e3a68,23, 0x2e3ac8,6, 0x2e3b80,12, 0x2e3c00,6, 0x2e3c20,6, 0x2e3c40,6, 0x2e3c60,3, 0x2e3d00,6, 0x2e3d20,6, 0x2e3d40,3, 0x2e4000,29, 0x2e4078,4, 0x2e4090,2, 0x2e40a0,7, 0x2e40c0,11, 0x2e4100,14, 0x2e4140,14, 0x2e4180,61, 0x2e4278,4, 0x2e4290,2, 0x2e42a0,7, 0x2e42c0,11, 0x2e4300,14, 0x2e4340,14, 0x2e4380,61, 0x2e4478,4, 0x2e4490,2, 0x2e44a0,7, 0x2e44c0,11, 0x2e4500,14, 0x2e4540,14, 0x2e4580,61, 0x2e4678,4, 0x2e4690,2, 0x2e46a0,7, 0x2e46c0,11, 0x2e4700,14, 0x2e4740,14, 0x2e4780,67, 0x2e4890,1, 0x2e4a00,8, 0x2e4a24,15, 0x2e4a64,30, 0x2e4b00,4, 0x2e4b20,2, 0x2e4c00,6, 0x2e4c40,14, 0x2e4c80,9, 0x2e4d00,9, 0x2e4d2c,1, 0x2e4d40,3, 0x2e4d60,1, 0x2e4d80,3, 0x2e4e00,2, 0x2e4e0c,1, 0x2e4e14,5, 0x2e4e2c,1, 0x2e4e34,5, 0x2e4e4c,1, 0x2e4e54,5, 0x2e4e6c,1, 0x2e4e74,5, 0x2e4e8c,1, 0x2e4e94,5, 0x2e4eac,1, 0x2e4eb4,3, 0x2e5000,29, 0x2e5078,4, 0x2e5090,2, 0x2e50a0,7, 0x2e50c0,11, 0x2e5100,14, 0x2e5140,14, 0x2e5180,61, 0x2e5278,4, 0x2e5290,2, 0x2e52a0,7, 0x2e52c0,11, 0x2e5300,14, 0x2e5340,14, 0x2e5380,61, 0x2e5478,4, 0x2e5490,2, 0x2e54a0,7, 0x2e54c0,11, 0x2e5500,14, 0x2e5540,14, 0x2e5580,61, 0x2e5678,4, 0x2e5690,2, 0x2e56a0,7, 0x2e56c0,11, 0x2e5700,14, 0x2e5740,14, 0x2e5780,67, 0x2e5890,1, 0x2e5a00,8, 0x2e5a24,15, 0x2e5a64,30, 0x2e5b00,4, 0x2e5b20,2, 0x2e5c00,6, 0x2e5c40,14, 0x2e5c80,9, 0x2e5d00,9, 0x2e5d2c,1, 0x2e5d40,3, 0x2e5d60,1, 0x2e5d80,3, 0x2e5e00,2, 0x2e5e0c,1, 0x2e5e14,5, 0x2e5e2c,1, 0x2e5e34,5, 0x2e5e4c,1, 0x2e5e54,5, 0x2e5e6c,1, 0x2e5e74,5, 0x2e5e8c,1, 0x2e5e94,5, 0x2e5eac,1, 0x2e5eb4,3, 0x2e6000,14, 0x2e6070,3, 0x2e6080,6, 0x2e6100,9, 0x2e6204,1, 0x2e620c,6, 0x2e6240,13, 0x2e6280,16, 0x2e6800,19, 0x2e6850,10, 0x2e6880,19, 0x2e68d0,10, 0x2e6900,19, 0x2e6950,10, 0x2e6980,19, 0x2e69d0,10, 0x2e6a00,19, 0x2e6a50,10, 0x2e6a80,19, 0x2e6ad0,10, 0x2e6b00,19, 0x2e6b50,10, 0x2e6b80,19, 0x2e6bd0,10, 0x2e6c00,19, 0x2e6c60,6, 0x2e6c84,1, 0x2e6c94,8, 0x2e6cb8,9, 0x2e6ce0,4, 0x2e7000,6, 0x2e7020,3, 0x2e7040,7, 0x2e7060,6, 0x2e7100,5, 0x2e7138,1, 0x2e7144,1, 0x2e7150,2, 0x2e8000,6, 0x2e8020,3, 0x2e8030,9, 0x2e8100,6, 0x2e8120,10, 0x2e8150,8, 0x2e8400,1, 0x2e8428,1, 0x2e8450,1, 0x2e8478,1, 0x2e84a0,8, 0x2e85ac,1, 0x2e85d8,4, 0x2e8600,6, 0x2e8620,6, 0x2e8640,3, 0x2e8800,6, 0x2e8820,3, 0x2e8830,4, 0x2e8858,2, 0x2e8864,1, 0x2e8874,3, 0x2e8898,2, 0x2e88a4,1, 0x2e88b4,3, 0x2e9000,6, 0x2e9020,6, 0x2e9040,4, 0x2e9080,14, 0x2e90bc,1, 0x2e90c4,13, 0x2e90fc,1, 0x2e9200,20, 0x2e925c,31, 0x2e9300,24, 0x2e9380,2, 0x2e93a0,1, 0x2e93c0,11, 0x2e9404,3, 0x2e9420,11, 0x2e9460,3, 0x2e9480,6, 0x2e9500,7, 0x2e9520,6, 0x2e9540,1, 0x2e9558,2, 0x2e9600,17, 0x2e9800,496, 0x2ea000,6, 0x2ea020,6, 0x2ea040,4, 0x2ea080,14, 0x2ea0bc,1, 0x2ea0c4,13, 0x2ea0fc,1, 0x2ea200,20, 0x2ea25c,31, 0x2ea300,24, 0x2ea380,2, 0x2ea3a0,1, 0x2ea3c0,11, 0x2ea404,3, 0x2ea420,11, 0x2ea460,3, 0x2ea480,6, 0x2ea500,7, 0x2ea520,6, 0x2ea540,1, 0x2ea558,2, 0x2ea600,17, 0x2ea800,496, 0x2eb000,4, 0x2eb020,25, 0x2eb088,8, 0x2eb100,4, 0x2eb120,25, 0x2eb188,8, 0x2eb200,34, 0x2eb300,37, 0x2eb400,16, 0x2eb464,1, 0x2eb474,3, 0x2eb500,6, 0x2eb520,2, 0x2eb530,9, 0x2eb570,10, 0x2eb5a0,2, 0x2eb5b0,9, 0x2eb5f0,4, 0x2eb620,7, 0x2eb640,16, 0x2eb700,6, 0x2eb720,6, 0x2eb740,6, 0x2eb760,6, 0x2eb780,3, 0x2eb800,5, 0x2eb818,1, 0x2eb854,6, 0x2eb880,2, 0x2eb8a4,1, 0x2eb8ac,2, 0x2eba00,28, 0x2eba7c,13, 0x2ebab4,1, 0x2ebabc,10, 0x2ebb04,1, 0x2ebb0c,5, 0x2ebb24,1, 0x2ebb34,9, 0x2ebb60,6, 0x2ebb80,22, 0x2ebbe0,3, 0x2ebbf0,2, 0x2ebc00,5, 0x2ebc18,1, 0x2ebc54,6, 0x2ebc80,2, 0x2ebca4,1, 0x2ebcac,2, 0x2ebe00,28, 0x2ebe7c,13, 0x2ebeb4,1, 0x2ebebc,10, 0x2ebf04,1, 0x2ebf0c,5, 0x2ebf24,1, 0x2ebf34,9, 0x2ebf60,6, 0x2ebf80,22, 0x2ebfe0,3, 0x2ebff0,2, 0x2ec008,2, 0x2ec014,11, 0x2ec044,1, 0x2ec04c,3, 0x2ec05c,1, 0x2ec064,1, 0x2ec07c,1, 0x2ec500,2, 0x2ec518,1, 0x2ec520,3, 0x2ec540,6, 0x2ec580,10, 0x2ec808,2, 0x2ec814,11, 0x2ec844,1, 0x2ec84c,3, 0x2ec85c,1, 0x2ec864,1, 0x2ec87c,1, 0x2ecd00,2, 0x2ecd18,1, 0x2ecd20,3, 0x2ecd40,6, 0x2ecd80,10, 0x2ed800,2, 0x2ed828,2, 0x2ed850,2, 0x2ed878,2, 0x2ed8a0,6, 0x2ed9ac,1, 0x2ed9d8,4, 0x2eda00,6, 0x2eda20,6, 0x2eda40,6, 0x2eda60,6, 0x2eda80,3, 0x2edc00,6, 0x2edc20,3, 0x2edc40,2, 0x2edc60,1, 0x2f0000,5, 0x2f0020,4, 0x2f0034,17, 0x2f0080,1, 0x2f00a0,6, 0x2f0100,5, 0x2f0120,4, 0x2f0134,17, 0x2f0180,1, 0x2f01a0,6, 0x2f0200,5, 0x2f0220,4, 0x2f0234,17, 0x2f0280,1, 0x2f02a0,6, 0x2f0300,5, 0x2f0320,4, 0x2f0334,17, 0x2f0380,1, 0x2f03a0,6, 0x2f0500,6, 0x2f051c,7, 0x2f0540,1, 0x2f0c00,13, 0x2f0c40,13, 0x2f0d00,6, 0x2f0d80,14, 0x2f0dc0,2, 0x2f0e20,6, 0x2f0e60,3, 0x2f0e80,6, 0x2f1000,2, 0x2f1010,5, 0x2f1060,32, 0x2f1100,8, 0x2f1180,12, 0x2f1218,13, 0x2f1250,6, 0x2f1280,1, 0x2f1288,6, 0x2f12a4,1, 0x2f1400,8, 0x2f1424,2, 0x2f1500,5, 0x2f1520,4, 0x2f1800,24, 0x2f1864,5, 0x2f1880,8, 0x2f1900,13, 0x2f1980,4, 0x2f19a0,6, 0x2f1a40,1, 0x2f1a60,1, 0x2f1a68,23, 0x2f1ac8,6, 0x2f1b80,12, 0x2f1c00,6, 0x2f1c20,6, 0x2f1c40,6, 0x2f1c60,3, 0x2f1d00,6, 0x2f1d20,6, 0x2f1d40,3, 0x2f2000,5, 0x2f2020,4, 0x2f2034,17, 0x2f2080,1, 0x2f20a0,6, 0x2f2100,5, 0x2f2120,4, 0x2f2134,17, 0x2f2180,1, 0x2f21a0,6, 0x2f2200,5, 0x2f2220,4, 0x2f2234,17, 0x2f2280,1, 0x2f22a0,6, 0x2f2300,5, 0x2f2320,4, 0x2f2334,17, 0x2f2380,1, 0x2f23a0,6, 0x2f2500,6, 0x2f251c,7, 0x2f2540,1, 0x2f2c00,13, 0x2f2c40,13, 0x2f2d00,6, 0x2f2d80,14, 0x2f2dc0,2, 0x2f2e20,6, 0x2f2e60,3, 0x2f2e80,6, 0x2f3000,2, 0x2f3010,5, 0x2f3060,32, 0x2f3100,8, 0x2f3180,12, 0x2f3218,13, 0x2f3250,6, 0x2f3280,1, 0x2f3288,6, 0x2f32a4,1, 0x2f3400,8, 0x2f3424,2, 0x2f3500,5, 0x2f3520,4, 0x2f3800,24, 0x2f3864,5, 0x2f3880,8, 0x2f3900,13, 0x2f3980,4, 0x2f39a0,6, 0x2f3a40,1, 0x2f3a60,1, 0x2f3a68,23, 0x2f3ac8,6, 0x2f3b80,12, 0x2f3c00,6, 0x2f3c20,6, 0x2f3c40,6, 0x2f3c60,3, 0x2f3d00,6, 0x2f3d20,6, 0x2f3d40,3, 0x2f4000,29, 0x2f4078,4, 0x2f4090,2, 0x2f40a0,7, 0x2f40c0,11, 0x2f4100,14, 0x2f4140,14, 0x2f4180,61, 0x2f4278,4, 0x2f4290,2, 0x2f42a0,7, 0x2f42c0,11, 0x2f4300,14, 0x2f4340,14, 0x2f4380,61, 0x2f4478,4, 0x2f4490,2, 0x2f44a0,7, 0x2f44c0,11, 0x2f4500,14, 0x2f4540,14, 0x2f4580,61, 0x2f4678,4, 0x2f4690,2, 0x2f46a0,7, 0x2f46c0,11, 0x2f4700,14, 0x2f4740,14, 0x2f4780,67, 0x2f4890,1, 0x2f4a00,8, 0x2f4a24,15, 0x2f4a64,30, 0x2f4b00,4, 0x2f4b20,2, 0x2f4c00,6, 0x2f4c40,14, 0x2f4c80,9, 0x2f4d00,9, 0x2f4d2c,1, 0x2f4d40,3, 0x2f4d60,1, 0x2f4d80,3, 0x2f4e00,2, 0x2f4e0c,1, 0x2f4e14,5, 0x2f4e2c,1, 0x2f4e34,5, 0x2f4e4c,1, 0x2f4e54,5, 0x2f4e6c,1, 0x2f4e74,5, 0x2f4e8c,1, 0x2f4e94,5, 0x2f4eac,1, 0x2f4eb4,3, 0x2f5000,29, 0x2f5078,4, 0x2f5090,2, 0x2f50a0,7, 0x2f50c0,11, 0x2f5100,14, 0x2f5140,14, 0x2f5180,61, 0x2f5278,4, 0x2f5290,2, 0x2f52a0,7, 0x2f52c0,11, 0x2f5300,14, 0x2f5340,14, 0x2f5380,61, 0x2f5478,4, 0x2f5490,2, 0x2f54a0,7, 0x2f54c0,11, 0x2f5500,14, 0x2f5540,14, 0x2f5580,61, 0x2f5678,4, 0x2f5690,2, 0x2f56a0,7, 0x2f56c0,11, 0x2f5700,14, 0x2f5740,14, 0x2f5780,67, 0x2f5890,1, 0x2f5a00,8, 0x2f5a24,15, 0x2f5a64,30, 0x2f5b00,4, 0x2f5b20,2, 0x2f5c00,6, 0x2f5c40,14, 0x2f5c80,9, 0x2f5d00,9, 0x2f5d2c,1, 0x2f5d40,3, 0x2f5d60,1, 0x2f5d80,3, 0x2f5e00,2, 0x2f5e0c,1, 0x2f5e14,5, 0x2f5e2c,1, 0x2f5e34,5, 0x2f5e4c,1, 0x2f5e54,5, 0x2f5e6c,1, 0x2f5e74,5, 0x2f5e8c,1, 0x2f5e94,5, 0x2f5eac,1, 0x2f5eb4,3, 0x2f6000,14, 0x2f6070,3, 0x2f6080,6, 0x2f6100,9, 0x2f6204,1, 0x2f620c,6, 0x2f6240,13, 0x2f6280,16, 0x2f6800,19, 0x2f6850,10, 0x2f6880,19, 0x2f68d0,10, 0x2f6900,19, 0x2f6950,10, 0x2f6980,19, 0x2f69d0,10, 0x2f6a00,19, 0x2f6a50,10, 0x2f6a80,19, 0x2f6ad0,10, 0x2f6b00,19, 0x2f6b50,10, 0x2f6b80,19, 0x2f6bd0,10, 0x2f6c00,19, 0x2f6c60,6, 0x2f6c84,1, 0x2f6c94,8, 0x2f6cb8,9, 0x2f6ce0,4, 0x2f7000,6, 0x2f7020,3, 0x2f7040,7, 0x2f7060,6, 0x2f7100,5, 0x2f7138,1, 0x2f7144,1, 0x2f7150,2, 0x2f8000,6, 0x2f8020,3, 0x2f8030,9, 0x2f8100,6, 0x2f8120,10, 0x2f8150,8, 0x2f8400,1, 0x2f8428,1, 0x2f8450,1, 0x2f8478,1, 0x2f84a0,8, 0x2f85ac,1, 0x2f85d8,4, 0x2f8600,6, 0x2f8620,6, 0x2f8640,3, 0x2f8800,6, 0x2f8820,3, 0x2f8830,4, 0x2f8858,2, 0x2f8864,1, 0x2f8874,3, 0x2f8898,2, 0x2f88a4,1, 0x2f88b4,3, 0x2f9000,6, 0x2f9020,6, 0x2f9040,4, 0x2f9080,14, 0x2f90bc,1, 0x2f90c4,13, 0x2f90fc,1, 0x2f9200,20, 0x2f925c,31, 0x2f9300,24, 0x2f9380,2, 0x2f93a0,1, 0x2f93c0,11, 0x2f9404,3, 0x2f9420,11, 0x2f9460,3, 0x2f9480,6, 0x2f9500,7, 0x2f9520,6, 0x2f9540,1, 0x2f9558,2, 0x2f9600,17, 0x2f9800,496, 0x2fa000,6, 0x2fa020,6, 0x2fa040,4, 0x2fa080,14, 0x2fa0bc,1, 0x2fa0c4,13, 0x2fa0fc,1, 0x2fa200,20, 0x2fa25c,31, 0x2fa300,24, 0x2fa380,2, 0x2fa3a0,1, 0x2fa3c0,11, 0x2fa404,3, 0x2fa420,11, 0x2fa460,3, 0x2fa480,6, 0x2fa500,7, 0x2fa520,6, 0x2fa540,1, 0x2fa558,2, 0x2fa600,17, 0x2fa800,496, 0x2fb000,4, 0x2fb020,25, 0x2fb088,8, 0x2fb100,4, 0x2fb120,25, 0x2fb188,8, 0x2fb200,34, 0x2fb300,37, 0x2fb400,16, 0x2fb464,1, 0x2fb474,3, 0x2fb500,6, 0x2fb520,2, 0x2fb530,9, 0x2fb570,10, 0x2fb5a0,2, 0x2fb5b0,9, 0x2fb5f0,4, 0x2fb620,7, 0x2fb640,16, 0x2fb700,6, 0x2fb720,6, 0x2fb740,6, 0x2fb760,6, 0x2fb780,3, 0x2fb800,5, 0x2fb818,1, 0x2fb854,6, 0x2fb880,2, 0x2fb8a4,1, 0x2fb8ac,2, 0x2fba00,28, 0x2fba7c,13, 0x2fbab4,1, 0x2fbabc,10, 0x2fbb04,1, 0x2fbb0c,5, 0x2fbb24,1, 0x2fbb34,9, 0x2fbb60,6, 0x2fbb80,22, 0x2fbbe0,3, 0x2fbbf0,2, 0x2fbc00,5, 0x2fbc18,1, 0x2fbc54,6, 0x2fbc80,2, 0x2fbca4,1, 0x2fbcac,2, 0x2fbe00,28, 0x2fbe7c,13, 0x2fbeb4,1, 0x2fbebc,10, 0x2fbf04,1, 0x2fbf0c,5, 0x2fbf24,1, 0x2fbf34,9, 0x2fbf60,6, 0x2fbf80,22, 0x2fbfe0,3, 0x2fbff0,2, 0x2fc008,2, 0x2fc014,11, 0x2fc044,1, 0x2fc04c,3, 0x2fc05c,1, 0x2fc064,1, 0x2fc07c,1, 0x2fc500,2, 0x2fc518,1, 0x2fc520,3, 0x2fc540,6, 0x2fc580,10, 0x2fc808,2, 0x2fc814,11, 0x2fc844,1, 0x2fc84c,3, 0x2fc85c,1, 0x2fc864,1, 0x2fc87c,1, 0x2fcd00,2, 0x2fcd18,1, 0x2fcd20,3, 0x2fcd40,6, 0x2fcd80,10, 0x2fd800,2, 0x2fd828,2, 0x2fd850,2, 0x2fd878,2, 0x2fd8a0,6, 0x2fd9ac,1, 0x2fd9d8,4, 0x2fda00,6, 0x2fda20,6, 0x2fda40,6, 0x2fda60,6, 0x2fda80,3, 0x2fdc00,6, 0x2fdc20,3, 0x2fdc40,2, 0x2fdc60,1, 0x300000,5, 0x300020,4, 0x300034,17, 0x300080,1, 0x3000a0,6, 0x300100,5, 0x300120,4, 0x300134,17, 0x300180,1, 0x3001a0,6, 0x300200,5, 0x300220,4, 0x300234,17, 0x300280,1, 0x3002a0,6, 0x300300,5, 0x300320,4, 0x300334,17, 0x300380,1, 0x3003a0,6, 0x300500,6, 0x30051c,7, 0x300540,1, 0x300c00,13, 0x300c40,13, 0x300d00,6, 0x300d80,14, 0x300dc0,2, 0x300e20,6, 0x300e60,3, 0x300e80,6, 0x301000,2, 0x301010,5, 0x301060,32, 0x301100,8, 0x301180,12, 0x301218,13, 0x301250,6, 0x301280,1, 0x301288,6, 0x3012a4,1, 0x301400,8, 0x301424,2, 0x301500,5, 0x301520,4, 0x301800,24, 0x301864,5, 0x301880,8, 0x301900,13, 0x301980,4, 0x3019a0,6, 0x301a40,1, 0x301a60,1, 0x301a68,23, 0x301ac8,6, 0x301b80,12, 0x301c00,6, 0x301c20,6, 0x301c40,6, 0x301c60,3, 0x301d00,6, 0x301d20,6, 0x301d40,3, 0x302000,5, 0x302020,4, 0x302034,17, 0x302080,1, 0x3020a0,6, 0x302100,5, 0x302120,4, 0x302134,17, 0x302180,1, 0x3021a0,6, 0x302200,5, 0x302220,4, 0x302234,17, 0x302280,1, 0x3022a0,6, 0x302300,5, 0x302320,4, 0x302334,17, 0x302380,1, 0x3023a0,6, 0x302500,6, 0x30251c,7, 0x302540,1, 0x302c00,13, 0x302c40,13, 0x302d00,6, 0x302d80,14, 0x302dc0,2, 0x302e20,6, 0x302e60,3, 0x302e80,6, 0x303000,2, 0x303010,5, 0x303060,32, 0x303100,8, 0x303180,12, 0x303218,13, 0x303250,6, 0x303280,1, 0x303288,6, 0x3032a4,1, 0x303400,8, 0x303424,2, 0x303500,5, 0x303520,4, 0x303800,24, 0x303864,5, 0x303880,8, 0x303900,13, 0x303980,4, 0x3039a0,6, 0x303a40,1, 0x303a60,1, 0x303a68,23, 0x303ac8,6, 0x303b80,12, 0x303c00,6, 0x303c20,6, 0x303c40,6, 0x303c60,3, 0x303d00,6, 0x303d20,6, 0x303d40,3, 0x304000,29, 0x304078,4, 0x304090,2, 0x3040a0,7, 0x3040c0,11, 0x304100,14, 0x304140,14, 0x304180,61, 0x304278,4, 0x304290,2, 0x3042a0,7, 0x3042c0,11, 0x304300,14, 0x304340,14, 0x304380,61, 0x304478,4, 0x304490,2, 0x3044a0,7, 0x3044c0,11, 0x304500,14, 0x304540,14, 0x304580,61, 0x304678,4, 0x304690,2, 0x3046a0,7, 0x3046c0,11, 0x304700,14, 0x304740,14, 0x304780,67, 0x304890,1, 0x304a00,8, 0x304a24,15, 0x304a64,30, 0x304b00,4, 0x304b20,2, 0x304c00,6, 0x304c40,14, 0x304c80,9, 0x304d00,9, 0x304d2c,1, 0x304d40,3, 0x304d60,1, 0x304d80,3, 0x304e00,2, 0x304e0c,1, 0x304e14,5, 0x304e2c,1, 0x304e34,5, 0x304e4c,1, 0x304e54,5, 0x304e6c,1, 0x304e74,5, 0x304e8c,1, 0x304e94,5, 0x304eac,1, 0x304eb4,3, 0x305000,29, 0x305078,4, 0x305090,2, 0x3050a0,7, 0x3050c0,11, 0x305100,14, 0x305140,14, 0x305180,61, 0x305278,4, 0x305290,2, 0x3052a0,7, 0x3052c0,11, 0x305300,14, 0x305340,14, 0x305380,61, 0x305478,4, 0x305490,2, 0x3054a0,7, 0x3054c0,11, 0x305500,14, 0x305540,14, 0x305580,61, 0x305678,4, 0x305690,2, 0x3056a0,7, 0x3056c0,11, 0x305700,14, 0x305740,14, 0x305780,67, 0x305890,1, 0x305a00,8, 0x305a24,15, 0x305a64,30, 0x305b00,4, 0x305b20,2, 0x305c00,6, 0x305c40,14, 0x305c80,9, 0x305d00,9, 0x305d2c,1, 0x305d40,3, 0x305d60,1, 0x305d80,3, 0x305e00,2, 0x305e0c,1, 0x305e14,5, 0x305e2c,1, 0x305e34,5, 0x305e4c,1, 0x305e54,5, 0x305e6c,1, 0x305e74,5, 0x305e8c,1, 0x305e94,5, 0x305eac,1, 0x305eb4,3, 0x306000,14, 0x306070,3, 0x306080,6, 0x306100,9, 0x306204,1, 0x30620c,6, 0x306240,13, 0x306280,16, 0x306800,19, 0x306850,10, 0x306880,19, 0x3068d0,10, 0x306900,19, 0x306950,10, 0x306980,19, 0x3069d0,10, 0x306a00,19, 0x306a50,10, 0x306a80,19, 0x306ad0,10, 0x306b00,19, 0x306b50,10, 0x306b80,19, 0x306bd0,10, 0x306c00,19, 0x306c60,6, 0x306c84,1, 0x306c94,8, 0x306cb8,9, 0x306ce0,4, 0x307000,6, 0x307020,3, 0x307040,7, 0x307060,6, 0x307100,5, 0x307138,1, 0x307144,1, 0x307150,2, 0x308000,6, 0x308020,3, 0x308030,9, 0x308100,6, 0x308120,10, 0x308150,8, 0x308400,1, 0x308428,1, 0x308450,1, 0x308478,1, 0x3084a0,8, 0x3085ac,1, 0x3085d8,4, 0x308600,6, 0x308620,6, 0x308640,3, 0x308800,6, 0x308820,3, 0x308830,4, 0x308858,2, 0x308864,1, 0x308874,3, 0x308898,2, 0x3088a4,1, 0x3088b4,3, 0x309000,6, 0x309020,6, 0x309040,4, 0x309080,14, 0x3090bc,1, 0x3090c4,13, 0x3090fc,1, 0x309200,20, 0x30925c,31, 0x309300,24, 0x309380,2, 0x3093a0,1, 0x3093c0,11, 0x309404,3, 0x309420,11, 0x309460,3, 0x309480,6, 0x309500,7, 0x309520,6, 0x309540,1, 0x309558,2, 0x309600,17, 0x309800,496, 0x30a000,6, 0x30a020,6, 0x30a040,4, 0x30a080,14, 0x30a0bc,1, 0x30a0c4,13, 0x30a0fc,1, 0x30a200,20, 0x30a25c,31, 0x30a300,24, 0x30a380,2, 0x30a3a0,1, 0x30a3c0,11, 0x30a404,3, 0x30a420,11, 0x30a460,3, 0x30a480,6, 0x30a500,7, 0x30a520,6, 0x30a540,1, 0x30a558,2, 0x30a600,17, 0x30a800,496, 0x30b000,4, 0x30b020,25, 0x30b088,8, 0x30b100,4, 0x30b120,25, 0x30b188,8, 0x30b200,34, 0x30b300,37, 0x30b400,16, 0x30b464,1, 0x30b474,3, 0x30b500,6, 0x30b520,2, 0x30b530,9, 0x30b570,10, 0x30b5a0,2, 0x30b5b0,9, 0x30b5f0,4, 0x30b620,7, 0x30b640,16, 0x30b700,6, 0x30b720,6, 0x30b740,6, 0x30b760,6, 0x30b780,3, 0x30b800,5, 0x30b818,1, 0x30b854,6, 0x30b880,2, 0x30b8a4,1, 0x30b8ac,2, 0x30ba00,28, 0x30ba7c,13, 0x30bab4,1, 0x30babc,10, 0x30bb04,1, 0x30bb0c,5, 0x30bb24,1, 0x30bb34,9, 0x30bb60,6, 0x30bb80,22, 0x30bbe0,3, 0x30bbf0,2, 0x30bc00,5, 0x30bc18,1, 0x30bc54,6, 0x30bc80,2, 0x30bca4,1, 0x30bcac,2, 0x30be00,28, 0x30be7c,13, 0x30beb4,1, 0x30bebc,10, 0x30bf04,1, 0x30bf0c,5, 0x30bf24,1, 0x30bf34,9, 0x30bf60,6, 0x30bf80,22, 0x30bfe0,3, 0x30bff0,2, 0x30c008,2, 0x30c014,11, 0x30c044,1, 0x30c04c,3, 0x30c05c,1, 0x30c064,1, 0x30c07c,1, 0x30c500,2, 0x30c518,1, 0x30c520,3, 0x30c540,6, 0x30c580,10, 0x30c808,2, 0x30c814,11, 0x30c844,1, 0x30c84c,3, 0x30c85c,1, 0x30c864,1, 0x30c87c,1, 0x30cd00,2, 0x30cd18,1, 0x30cd20,3, 0x30cd40,6, 0x30cd80,10, 0x30d800,2, 0x30d828,2, 0x30d850,2, 0x30d878,2, 0x30d8a0,6, 0x30d9ac,1, 0x30d9d8,4, 0x30da00,6, 0x30da20,6, 0x30da40,6, 0x30da60,6, 0x30da80,3, 0x30dc00,6, 0x30dc20,3, 0x30dc40,2, 0x30dc60,1, 0x310000,5, 0x310020,4, 0x310034,17, 0x310080,1, 0x3100a0,6, 0x310100,5, 0x310120,4, 0x310134,17, 0x310180,1, 0x3101a0,6, 0x310200,5, 0x310220,4, 0x310234,17, 0x310280,1, 0x3102a0,6, 0x310300,5, 0x310320,4, 0x310334,17, 0x310380,1, 0x3103a0,6, 0x310500,6, 0x31051c,7, 0x310540,1, 0x310c00,13, 0x310c40,13, 0x310d00,6, 0x310d80,14, 0x310dc0,2, 0x310e20,6, 0x310e60,3, 0x310e80,6, 0x311000,2, 0x311010,5, 0x311060,32, 0x311100,8, 0x311180,12, 0x311218,13, 0x311250,6, 0x311280,1, 0x311288,6, 0x3112a4,1, 0x311400,8, 0x311424,2, 0x311500,5, 0x311520,4, 0x311800,24, 0x311864,5, 0x311880,8, 0x311900,13, 0x311980,4, 0x3119a0,6, 0x311a40,1, 0x311a60,1, 0x311a68,23, 0x311ac8,6, 0x311b80,12, 0x311c00,6, 0x311c20,6, 0x311c40,6, 0x311c60,3, 0x311d00,6, 0x311d20,6, 0x311d40,3, 0x312000,5, 0x312020,4, 0x312034,17, 0x312080,1, 0x3120a0,6, 0x312100,5, 0x312120,4, 0x312134,17, 0x312180,1, 0x3121a0,6, 0x312200,5, 0x312220,4, 0x312234,17, 0x312280,1, 0x3122a0,6, 0x312300,5, 0x312320,4, 0x312334,17, 0x312380,1, 0x3123a0,6, 0x312500,6, 0x31251c,7, 0x312540,1, 0x312c00,13, 0x312c40,13, 0x312d00,6, 0x312d80,14, 0x312dc0,2, 0x312e20,6, 0x312e60,3, 0x312e80,6, 0x313000,2, 0x313010,5, 0x313060,32, 0x313100,8, 0x313180,12, 0x313218,13, 0x313250,6, 0x313280,1, 0x313288,6, 0x3132a4,1, 0x313400,8, 0x313424,2, 0x313500,5, 0x313520,4, 0x313800,24, 0x313864,5, 0x313880,8, 0x313900,13, 0x313980,4, 0x3139a0,6, 0x313a40,1, 0x313a60,1, 0x313a68,23, 0x313ac8,6, 0x313b80,12, 0x313c00,6, 0x313c20,6, 0x313c40,6, 0x313c60,3, 0x313d00,6, 0x313d20,6, 0x313d40,3, 0x314000,29, 0x314078,4, 0x314090,2, 0x3140a0,7, 0x3140c0,11, 0x314100,14, 0x314140,14, 0x314180,61, 0x314278,4, 0x314290,2, 0x3142a0,7, 0x3142c0,11, 0x314300,14, 0x314340,14, 0x314380,61, 0x314478,4, 0x314490,2, 0x3144a0,7, 0x3144c0,11, 0x314500,14, 0x314540,14, 0x314580,61, 0x314678,4, 0x314690,2, 0x3146a0,7, 0x3146c0,11, 0x314700,14, 0x314740,14, 0x314780,67, 0x314890,1, 0x314a00,8, 0x314a24,15, 0x314a64,30, 0x314b00,4, 0x314b20,2, 0x314c00,6, 0x314c40,14, 0x314c80,9, 0x314d00,9, 0x314d2c,1, 0x314d40,3, 0x314d60,1, 0x314d80,3, 0x314e00,2, 0x314e0c,1, 0x314e14,5, 0x314e2c,1, 0x314e34,5, 0x314e4c,1, 0x314e54,5, 0x314e6c,1, 0x314e74,5, 0x314e8c,1, 0x314e94,5, 0x314eac,1, 0x314eb4,3, 0x315000,29, 0x315078,4, 0x315090,2, 0x3150a0,7, 0x3150c0,11, 0x315100,14, 0x315140,14, 0x315180,61, 0x315278,4, 0x315290,2, 0x3152a0,7, 0x3152c0,11, 0x315300,14, 0x315340,14, 0x315380,61, 0x315478,4, 0x315490,2, 0x3154a0,7, 0x3154c0,11, 0x315500,14, 0x315540,14, 0x315580,61, 0x315678,4, 0x315690,2, 0x3156a0,7, 0x3156c0,11, 0x315700,14, 0x315740,14, 0x315780,67, 0x315890,1, 0x315a00,8, 0x315a24,15, 0x315a64,30, 0x315b00,4, 0x315b20,2, 0x315c00,6, 0x315c40,14, 0x315c80,9, 0x315d00,9, 0x315d2c,1, 0x315d40,3, 0x315d60,1, 0x315d80,3, 0x315e00,2, 0x315e0c,1, 0x315e14,5, 0x315e2c,1, 0x315e34,5, 0x315e4c,1, 0x315e54,5, 0x315e6c,1, 0x315e74,5, 0x315e8c,1, 0x315e94,5, 0x315eac,1, 0x315eb4,3, 0x316000,14, 0x316070,3, 0x316080,6, 0x316100,9, 0x316204,1, 0x31620c,6, 0x316240,13, 0x316280,16, 0x316800,19, 0x316850,10, 0x316880,19, 0x3168d0,10, 0x316900,19, 0x316950,10, 0x316980,19, 0x3169d0,10, 0x316a00,19, 0x316a50,10, 0x316a80,19, 0x316ad0,10, 0x316b00,19, 0x316b50,10, 0x316b80,19, 0x316bd0,10, 0x316c00,19, 0x316c60,6, 0x316c84,1, 0x316c94,8, 0x316cb8,9, 0x316ce0,4, 0x317000,6, 0x317020,3, 0x317040,7, 0x317060,6, 0x317100,5, 0x317138,1, 0x317144,1, 0x317150,2, 0x318000,6, 0x318020,3, 0x318030,9, 0x318100,6, 0x318120,10, 0x318150,8, 0x318400,1, 0x318428,1, 0x318450,1, 0x318478,1, 0x3184a0,8, 0x3185ac,1, 0x3185d8,4, 0x318600,6, 0x318620,6, 0x318640,3, 0x318800,6, 0x318820,3, 0x318830,4, 0x318858,2, 0x318864,1, 0x318874,3, 0x318898,2, 0x3188a4,1, 0x3188b4,3, 0x319000,6, 0x319020,6, 0x319040,4, 0x319080,14, 0x3190bc,1, 0x3190c4,13, 0x3190fc,1, 0x319200,20, 0x31925c,31, 0x319300,24, 0x319380,2, 0x3193a0,1, 0x3193c0,11, 0x319404,3, 0x319420,11, 0x319460,3, 0x319480,6, 0x319500,7, 0x319520,6, 0x319540,1, 0x319558,2, 0x319600,17, 0x319800,496, 0x31a000,6, 0x31a020,6, 0x31a040,4, 0x31a080,14, 0x31a0bc,1, 0x31a0c4,13, 0x31a0fc,1, 0x31a200,20, 0x31a25c,31, 0x31a300,24, 0x31a380,2, 0x31a3a0,1, 0x31a3c0,11, 0x31a404,3, 0x31a420,11, 0x31a460,3, 0x31a480,6, 0x31a500,7, 0x31a520,6, 0x31a540,1, 0x31a558,2, 0x31a600,17, 0x31a800,496, 0x31b000,4, 0x31b020,25, 0x31b088,8, 0x31b100,4, 0x31b120,25, 0x31b188,8, 0x31b200,34, 0x31b300,37, 0x31b400,16, 0x31b464,1, 0x31b474,3, 0x31b500,6, 0x31b520,2, 0x31b530,9, 0x31b570,10, 0x31b5a0,2, 0x31b5b0,9, 0x31b5f0,4, 0x31b620,7, 0x31b640,16, 0x31b700,6, 0x31b720,6, 0x31b740,6, 0x31b760,6, 0x31b780,3, 0x31b800,5, 0x31b818,1, 0x31b854,6, 0x31b880,2, 0x31b8a4,1, 0x31b8ac,2, 0x31ba00,28, 0x31ba7c,13, 0x31bab4,1, 0x31babc,10, 0x31bb04,1, 0x31bb0c,5, 0x31bb24,1, 0x31bb34,9, 0x31bb60,6, 0x31bb80,22, 0x31bbe0,3, 0x31bbf0,2, 0x31bc00,5, 0x31bc18,1, 0x31bc54,6, 0x31bc80,2, 0x31bca4,1, 0x31bcac,2, 0x31be00,28, 0x31be7c,13, 0x31beb4,1, 0x31bebc,10, 0x31bf04,1, 0x31bf0c,5, 0x31bf24,1, 0x31bf34,9, 0x31bf60,6, 0x31bf80,22, 0x31bfe0,3, 0x31bff0,2, 0x31c008,2, 0x31c014,11, 0x31c044,1, 0x31c04c,3, 0x31c05c,1, 0x31c064,1, 0x31c07c,1, 0x31c500,2, 0x31c518,1, 0x31c520,3, 0x31c540,6, 0x31c580,10, 0x31c808,2, 0x31c814,11, 0x31c844,1, 0x31c84c,3, 0x31c85c,1, 0x31c864,1, 0x31c87c,1, 0x31cd00,2, 0x31cd18,1, 0x31cd20,3, 0x31cd40,6, 0x31cd80,10, 0x31d800,2, 0x31d828,2, 0x31d850,2, 0x31d878,2, 0x31d8a0,6, 0x31d9ac,1, 0x31d9d8,4, 0x31da00,6, 0x31da20,6, 0x31da40,6, 0x31da60,6, 0x31da80,3, 0x31dc00,6, 0x31dc20,3, 0x31dc40,2, 0x31dc60,1, mstflint-4.26.0/mstdump/mstdump_dbs/BlueField2.csv0000644000175000017500000034506214522641732022361 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16385, 0x010008,4, 0x010024,4, 0x010040,2, 0x010064,1, 0x01006c,14, 0x0100a8,5, 0x0100c4,5, 0x010104,1, 0x010178,34, 0x010204,3, 0x010224,4, 0x010244,3, 0x010264,3, 0x010284,1, 0x010290,4, 0x0102a4,1, 0x0102b4,3, 0x0102c4,1, 0x0102cc,1, 0x0102e4,1, 0x0102ec,1, 0x0102f4,1, 0x0102fc,1, 0x010304,1, 0x01030c,1, 0x010314,1, 0x01031c,1, 0x010324,1, 0x01032c,1, 0x010334,1, 0x01033c,1, 0x010344,3, 0x010354,3, 0x010364,6, 0x010380,32, 0x010404,1, 0x010438,18, 0x010500,3, 0x010524,4, 0x010580,2, 0x010594,3, 0x0105a4,1, 0x0105b0,4, 0x0105c4,3, 0x0105e0,1, 0x0105f0,4, 0x010608,11, 0x010640,1, 0x010648,2, 0x010700,6, 0x010800,1, 0x010820,9, 0x010850,5, 0x010870,5, 0x0108a0,8, 0x010900,1, 0x010920,9, 0x010950,4, 0x01096c,37, 0x010a40,1, 0x010a50,5, 0x010a68,23, 0x010ad8,1, 0x010ae0,4, 0x010b04,3, 0x010b30,3, 0x010b40,1, 0x010b64,1, 0x010b70,11, 0x010bc0,4, 0x010c00,1, 0x010c14,4, 0x010c30,1, 0x010c40,1, 0x010c50,1, 0x010c64,1, 0x010c6c,2, 0x010c90,1, 0x010ca0,1, 0x010cb0,1, 0x010cc0,1, 0x010cd0,1, 0x010ce0,1, 0x010cf0,1, 0x010d10,1, 0x010d20,1, 0x010d30,1, 0x010d40,1, 0x010d50,1, 0x010d60,1, 0x010d70,1, 0x010d80,1, 0x010d90,1, 0x010db0,1, 0x010dc0,1, 0x010de0,1, 0x010df0,1, 0x010e00,1, 0x010e10,1, 0x010e20,1, 0x010e30,1, 0x010e40,1, 0x010e50,1, 0x010e60,1, 0x010e70,1, 0x010e80,1, 0x010e90,1, 0x010ea4,5, 0x010ec0,1, 0x010ed0,1, 0x010f00,65, 0x011010,7, 0x011030,2, 0x011040,1, 0x011060,10, 0x011180,4, 0x0111a0,10, 0x011200,7, 0x011220,4, 0x011234,1, 0x01123c,4, 0x011250,2, 0x011260,1, 0x011270,1, 0x011288,16, 0x0112d0,1, 0x011300,1, 0x011320,8, 0x011344,6, 0x011400,9, 0x011440,3, 0x011460,1, 0x011480,3, 0x011504,5, 0x011580,47, 0x011640,6, 0x011680,6, 0x011800,3, 0x011810,3, 0x011820,3, 0x011830,3, 0x011840,3, 0x011850,3, 0x011860,3, 0x011870,3, 0x011880,3, 0x011890,3, 0x0118a0,3, 0x0118b0,3, 0x0118c0,3, 0x0118d0,3, 0x0118e0,3, 0x0118f0,3, 0x011900,2, 0x012000,215, 0x012400,2, 0x013000,30, 0x01307c,19, 0x013400,59, 0x013500,9, 0x013600,7, 0x013620,7, 0x013660,7, 0x013704,1, 0x013740,18, 0x0137a0,10, 0x0137e0,29, 0x013860,3, 0x013870,7, 0x0138a0,7, 0x0138c0,2, 0x013900,7, 0x013920,7, 0x013960,7, 0x013980,1, 0x014020,14, 0x014080,17, 0x014100,64, 0x014280,32, 0x014304,3, 0x014404,8, 0x014428,6, 0x014504,1, 0x01450c,12, 0x018004,1, 0x018078,36, 0x018204,5, 0x018300,9, 0x018340,6, 0x018360,2, 0x018400,7, 0x018420,2, 0x018484,5, 0x0184b4,1, 0x0187f0,1, 0x018800,1, 0x018810,1, 0x018820,1, 0x018830,1, 0x018840,1, 0x018850,1, 0x018860,1, 0x018870,1, 0x018880,1, 0x018890,1, 0x018a00,32, 0x018a84,3, 0x018aa4,3, 0x018acc,2, 0x018ad8,12, 0x018b44,1, 0x018b5c,9, 0x018c00,3, 0x018c24,4, 0x018d04,1, 0x018d0c,9, 0x018d34,1, 0x018d40,2, 0x018d50,1, 0x018d58,2, 0x018f04,5, 0x018f40,16, 0x018fe8,1, 0x018ff0,2, 0x019004,5, 0x019080,32, 0x019108,5, 0x019120,1, 0x019130,1, 0x019140,1, 0x019150,1, 0x019160,1, 0x019170,1, 0x019180,1, 0x019190,1, 0x0191b0,2, 0x0191c0,6, 0x019200,1, 0x019810,1, 0x019820,1, 0x019830,1, 0x019840,1, 0x019850,1, 0x019860,1, 0x019870,1, 0x019880,1, 0x019890,1, 0x0198a0,1, 0x0198b0,1, 0x0198c0,1, 0x0198e0,1, 0x0198f0,1, 0x019900,1, 0x019910,1, 0x019920,1, 0x019930,1, 0x019940,1, 0x019998,2, 0x019a08,1, 0x019a20,1, 0x019a28,4, 0x019b00,14, 0x019b3c,3, 0x019b54,1, 0x019b5c,1, 0x019b64,1, 0x019b6c,2, 0x019c00,2, 0x01a020,3, 0x01a030,2, 0x01a04c,3, 0x01a090,1, 0x01a0a0,1, 0x01a0b0,1, 0x01a0c0,1, 0x01a0e8,2, 0x01a200,25, 0x01a280,1, 0x01a2a0,6, 0x01a300,6, 0x01a320,7, 0x01a3c0,2, 0x01a400,3, 0x01a424,4, 0x01a440,7, 0x01a484,3, 0x01a4c0,6, 0x01a4e0,1, 0x01a600,107, 0x01b000,35, 0x01ba00,10, 0x01ba80,3, 0x01c000,3, 0x01c020,4, 0x01c038,4, 0x01c054,5, 0x01c074,5, 0x01c0c4,1, 0x01c0d4,13, 0x01c144,1, 0x01c14c,13, 0x01c184,9, 0x01c1b0,3, 0x01c200,13, 0x01c240,11, 0x01c270,6, 0x01c300,4, 0x01c320,2, 0x01c400,9, 0x020000,34, 0x020090,1, 0x020098,2, 0x020100,40, 0x020200,2, 0x020400,3, 0x020414,2, 0x020420,1, 0x020444,4, 0x020480,2, 0x020490,3, 0x020590,1, 0x020600,7, 0x020800,4, 0x020818,2, 0x020828,14, 0x020880,2, 0x0208a4,1, 0x0208b0,6, 0x0208e4,1, 0x0208f0,4, 0x021138,5, 0x021150,2, 0x021160,12, 0x0211a0,8, 0x0211e0,15, 0x021240,2, 0x021264,1, 0x021274,20, 0x021300,102, 0x0214a0,6, 0x024000,1, 0x024010,3, 0x024020,3, 0x024044,4, 0x024084,1, 0x024094,10, 0x0240c0,2, 0x0240d0,1, 0x0240e0,2, 0x024100,3, 0x024110,3, 0x024120,1, 0x024140,2, 0x024200,1, 0x024210,3, 0x024220,3, 0x024244,4, 0x024284,1, 0x024294,9, 0x0242c0,2, 0x0242d0,1, 0x0242e0,2, 0x024300,5, 0x024320,2, 0x024400,25, 0x024480,10, 0x025000,1, 0x025010,3, 0x025020,3, 0x025044,4, 0x025084,1, 0x025094,3, 0x0250c0,2, 0x0250d0,1, 0x0250e0,2, 0x025100,5, 0x025120,5, 0x025140,1, 0x025180,4, 0x0251a0,5, 0x0251c0,2, 0x025200,64, 0x025380,10, 0x0253b0,3, 0x0253c0,4, 0x0253e0,5, 0x026000,18, 0x026080,18, 0x026100,18, 0x026180,18, 0x026200,18, 0x026400,18, 0x026480,18, 0x026500,18, 0x026580,18, 0x026600,18, 0x026800,18, 0x026880,18, 0x026900,18, 0x026980,18, 0x026a00,18, 0x027000,48, 0x027200,1, 0x027210,1, 0x027220,1, 0x027230,1, 0x027240,1, 0x027280,1, 0x027290,1, 0x0272a0,1, 0x0272b0,1, 0x0272c0,1, 0x027300,1, 0x027310,1, 0x027320,1, 0x027330,1, 0x027340,1, 0x028000,216, 0x028500,24, 0x028600,54, 0x028700,54, 0x0287e0,2, 0x028800,216, 0x028d00,24, 0x028e00,54, 0x028f00,54, 0x028fe0,2, 0x029000,216, 0x029500,24, 0x029600,54, 0x029700,54, 0x0297e0,2, 0x029800,216, 0x029d00,24, 0x029e00,54, 0x029f00,54, 0x029fe0,2, 0x02a000,216, 0x02a500,24, 0x02a600,54, 0x02a700,54, 0x02a7e0,2, 0x02c000,6, 0x02c020,6, 0x02c040,6, 0x02c060,6, 0x02c080,6, 0x02c100,6, 0x02c120,6, 0x02c140,6, 0x02c160,6, 0x02c180,6, 0x02c200,6, 0x02c220,6, 0x02c240,6, 0x02c260,6, 0x02c280,6, 0x02c300,6, 0x02c320,6, 0x02c340,6, 0x02c360,6, 0x02c380,6, 0x02c400,6, 0x02c420,6, 0x02c440,6, 0x02c460,6, 0x02c480,6, 0x02c500,6, 0x02c520,6, 0x02c540,6, 0x02c560,6, 0x02c580,6, 0x02c600,6, 0x02c620,6, 0x02c640,6, 0x02c660,6, 0x02c680,6, 0x02c700,6, 0x02c720,6, 0x02c740,6, 0x02c760,6, 0x02c780,6, 0x02c800,6, 0x02c820,6, 0x02c840,6, 0x02c860,6, 0x02c880,6, 0x02d000,6, 0x02d020,6, 0x02d040,6, 0x02d060,6, 0x02d080,6, 0x02d100,6, 0x02d120,6, 0x02d140,6, 0x02d160,6, 0x02d180,6, 0x02d200,6, 0x02d220,6, 0x02d240,6, 0x02d260,6, 0x02d280,6, 0x02d300,6, 0x02d320,6, 0x02d340,6, 0x02d360,6, 0x02d380,6, 0x02d400,6, 0x02d420,6, 0x02d440,6, 0x02d460,6, 0x02d480,6, 0x02d500,6, 0x02d520,6, 0x02d540,6, 0x02d560,6, 0x02d580,6, 0x02d600,6, 0x02d620,6, 0x02d640,6, 0x02d660,6, 0x02d680,6, 0x02d700,6, 0x02d720,6, 0x02d740,6, 0x02d760,6, 0x02d780,6, 0x02d800,6, 0x02d820,6, 0x02d840,6, 0x02d860,6, 0x02d880,6, 0x02e000,24, 0x02e080,6, 0x02e0a0,6, 0x02e100,3, 0x02e200,24, 0x02e280,6, 0x02e2a0,6, 0x02e300,3, 0x02e400,24, 0x02e480,6, 0x02e4a0,6, 0x02e500,3, 0x02e600,24, 0x02e680,6, 0x02e6a0,6, 0x02e700,3, 0x02e800,24, 0x02e880,6, 0x02e8a0,6, 0x02e900,3, 0x02f000,1, 0x02f010,1, 0x02f020,1, 0x02f040,1, 0x02f050,1, 0x02f060,1, 0x02f080,1, 0x02f090,1, 0x02f0a0,1, 0x02f0c0,1, 0x02f0d0,1, 0x02f0e0,1, 0x02f100,1, 0x02f110,1, 0x02f120,1, 0x02f140,1, 0x02f150,1, 0x02f160,1, 0x02f180,1, 0x02f190,1, 0x02f1a0,1, 0x02f1c0,1, 0x02f1d0,1, 0x02f1e0,1, 0x02f200,1, 0x02f210,1, 0x02f220,1, 0x02f400,27, 0x02f490,3, 0x02f4a0,3, 0x02f4b0,6, 0x02f4d4,1, 0x02f500,3, 0x02f510,3, 0x02f520,3, 0x02f530,3, 0x02f540,3, 0x02f580,5, 0x02f5c0,8, 0x02f600,7, 0x02f644,5, 0x02f660,3, 0x02f670,1, 0x02f684,1, 0x02f68c,7, 0x030080,1, 0x030090,3, 0x0300a0,3, 0x0300c4,4, 0x030100,194, 0x030420,30, 0x0304a0,2, 0x030504,4, 0x030520,6, 0x030600,4, 0x030680,21, 0x030800,262, 0x030c20,6, 0x030c40,6, 0x030c60,6, 0x030c80,6, 0x030ca0,6, 0x030cc0,6, 0x030ce0,6, 0x030d00,6, 0x030d20,6, 0x030d40,6, 0x030d60,6, 0x030d80,6, 0x030da0,6, 0x030dc0,6, 0x030de0,6, 0x030e00,6, 0x030e20,6, 0x030e40,6, 0x030e60,6, 0x030e80,6, 0x030ea0,6, 0x030ec0,6, 0x030ee0,6, 0x030f00,6, 0x030f20,6, 0x030f40,6, 0x030f60,6, 0x030f80,6, 0x030fa0,6, 0x030fc0,6, 0x030fe0,6, 0x031000,2, 0x031084,1, 0x0310b4,53, 0x031194,5, 0x0311b4,1, 0x0311bc,10, 0x0311e8,4, 0x031204,5, 0x031280,2, 0x031404,5, 0x031440,1, 0x031450,15, 0x031500,64, 0x031804,5, 0x031844,1, 0x031850,4, 0x031864,1, 0x031874,3, 0x031884,1, 0x03188c,1, 0x031894,3, 0x0318c0,4, 0x0318e0,5, 0x031900,9, 0x031a00,4, 0x031a20,60, 0x031b18,2, 0x031b40,16, 0x031c00,2, 0x031c84,1, 0x031cb0,27, 0x031d20,17, 0x031d68,6, 0x032000,3, 0x032010,3, 0x032020,3, 0x032030,3, 0x032040,3, 0x032050,3, 0x032060,3, 0x032070,3, 0x032080,9, 0x032100,3, 0x032110,3, 0x032120,3, 0x032130,3, 0x032140,3, 0x032150,3, 0x032160,3, 0x032170,3, 0x032180,9, 0x032204,1, 0x03227c,35, 0x032400,4, 0x032420,5, 0x032440,1, 0x032500,15, 0x032540,2, 0x032550,3, 0x032560,4, 0x032600,25, 0x032680,1, 0x0326a0,6, 0x032700,4, 0x032740,11, 0x032800,171, 0x032c00,11, 0x032c40,11, 0x032c80,1, 0x032d00,8, 0x033000,19, 0x033a00,10, 0x033a80,3, 0x034000,5, 0x034080,5, 0x034100,5, 0x034180,5, 0x034200,5, 0x034280,5, 0x034300,5, 0x034380,5, 0x034400,5, 0x034480,5, 0x034500,4, 0x034514,3, 0x034524,1, 0x03452c,3, 0x034800,5, 0x034820,5, 0x034840,5, 0x034860,5, 0x034880,5, 0x0348a0,5, 0x0348c0,5, 0x0348e0,5, 0x034900,5, 0x034920,5, 0x034940,5, 0x034960,5, 0x034980,5, 0x0349a0,5, 0x0349c0,5, 0x0349e0,5, 0x034a00,5, 0x034a20,5, 0x034a40,5, 0x034a60,5, 0x034c00,5, 0x034c20,5, 0x034c40,5, 0x034c60,5, 0x034c80,5, 0x034ca0,5, 0x034cc0,5, 0x034ce0,5, 0x034d00,5, 0x034d20,5, 0x034d40,5, 0x034d60,5, 0x034d80,5, 0x034da0,5, 0x034dc0,5, 0x034de0,5, 0x034e00,5, 0x034e20,5, 0x034e40,5, 0x034e60,5, 0x035000,3, 0x035040,3, 0x035080,3, 0x0350c0,3, 0x035100,3, 0x035140,3, 0x035184,6, 0x0351a0,11, 0x0351d0,8, 0x035200,96, 0x036000,14, 0x036040,14, 0x036080,14, 0x0360c0,14, 0x036100,14, 0x036140,14, 0x036180,14, 0x0361c0,14, 0x036200,14, 0x036240,14, 0x036280,14, 0x0362c0,14, 0x036300,14, 0x036340,14, 0x036380,14, 0x0363c0,14, 0x036400,14, 0x036440,14, 0x036480,14, 0x0364c0,14, 0x036500,14, 0x036540,14, 0x036580,14, 0x0365c0,14, 0x036600,14, 0x036640,14, 0x036680,14, 0x0366c0,14, 0x036700,14, 0x036740,14, 0x036780,14, 0x0367c0,14, 0x036800,14, 0x036840,14, 0x036880,14, 0x0368c0,14, 0x036900,14, 0x036940,14, 0x036980,14, 0x0369c0,14, 0x036a00,14, 0x036a40,14, 0x036a80,14, 0x036ac0,14, 0x036b00,14, 0x036b40,14, 0x036b80,14, 0x036bc0,14, 0x036c00,14, 0x036c40,14, 0x036c80,14, 0x036cc0,14, 0x036d00,14, 0x036d40,14, 0x036d80,14, 0x036dc0,14, 0x036e00,14, 0x036e40,14, 0x036e80,14, 0x036ec0,14, 0x036f00,14, 0x036f40,14, 0x036f80,14, 0x036fc0,14, 0x037000,14, 0x037040,14, 0x037080,14, 0x0370c0,14, 0x037100,14, 0x037140,14, 0x037180,14, 0x0371c0,14, 0x037200,14, 0x037240,14, 0x037280,14, 0x0372c0,14, 0x037300,14, 0x037340,14, 0x037380,14, 0x0373c0,14, 0x037400,14, 0x037440,14, 0x037480,14, 0x0374c0,14, 0x037500,14, 0x037540,14, 0x037580,14, 0x0375c0,14, 0x037600,14, 0x037640,14, 0x037680,14, 0x0376c0,14, 0x037700,14, 0x037740,14, 0x037780,14, 0x0377c0,14, 0x038000,65, 0x038110,8, 0x038144,4, 0x038200,3, 0x038240,4, 0x038260,7, 0x038280,1, 0x0382a0,4, 0x0382b4,9, 0x038300,7, 0x038320,7, 0x038340,1, 0x038380,20, 0x038400,192, 0x040000,31, 0x040080,6, 0x0400a8,5, 0x0400c0,24, 0x040140,1, 0x040150,4, 0x040200,35, 0x040400,31, 0x040480,6, 0x0404a8,5, 0x0404c0,24, 0x040540,1, 0x040550,4, 0x040600,35, 0x040800,11, 0x040830,45, 0x0408f0,16, 0x040940,12, 0x040a00,2, 0x040a40,10, 0x040b00,4, 0x040c00,1, 0x040c08,2, 0x040c20,1, 0x040c28,4, 0x041000,2, 0x041080,27, 0x0410f4,1, 0x041100,8, 0x041138,2, 0x041400,2, 0x041480,27, 0x0414f4,1, 0x041500,8, 0x041538,2, 0x041800,8, 0x041824,2, 0x041830,7, 0x042000,7, 0x042020,4, 0x042100,7, 0x042120,4, 0x042200,17, 0x042248,8, 0x04226c,11, 0x042304,1, 0x04230c,4, 0x042320,6, 0x042480,8, 0x042500,2, 0x042514,5, 0x042534,5, 0x042600,2, 0x042610,1, 0x042618,1, 0x042620,1, 0x042640,6, 0x044000,2, 0x044084,1, 0x0440b4,21, 0x044184,1, 0x0441b8,20, 0x044284,1, 0x0442b8,27, 0x044380,35, 0x044410,1, 0x044430,4, 0x044444,3, 0x044454,1, 0x04445c,2, 0x044484,1, 0x0444c0,32, 0x044544,5, 0x044564,5, 0x044580,2, 0x044590,5, 0x044600,1, 0x044608,4, 0x044620,3, 0x044640,1, 0x044648,4, 0x044660,3, 0x044680,5, 0x044700,1, 0x044708,4, 0x044720,3, 0x044730,2, 0x044740,1, 0x044748,4, 0x044760,3, 0x044770,2, 0x044780,5, 0x0447c0,3, 0x0447d0,3, 0x044800,20, 0x044900,4, 0x044a00,2, 0x044a84,1, 0x044ab0,20, 0x044c00,2, 0x044d04,1, 0x044d4c,47, 0x044e84,1, 0x044ebc,24, 0x044f24,4, 0x044f40,3, 0x044f50,6, 0x044f80,2, 0x044f94,1, 0x044f9c,2, 0x045000,2, 0x04500c,3, 0x045044,5, 0x045080,10, 0x045100,2, 0x045110,2, 0x045120,2, 0x045130,2, 0x045140,1, 0x045150,10, 0x047000,6, 0x047020,6, 0x047040,6, 0x047060,2, 0x04706c,2, 0x047080,7, 0x0470a0,7, 0x0470c0,4, 0x0470e0,5, 0x047100,7, 0x047120,6, 0x047140,6, 0x047160,7, 0x047180,7, 0x0471a0,6, 0x0471c0,7, 0x0471e0,3, 0x047200,7, 0x047220,7, 0x047400,5, 0x047420,5, 0x047440,1, 0x047480,5, 0x0474a0,5, 0x0474c0,5, 0x047500,3, 0x047510,3, 0x047520,1, 0x047540,3, 0x047550,3, 0x047560,1, 0x047580,7, 0x0475a0,7, 0x0475c0,1, 0x048000,8, 0x048040,1, 0x048048,2, 0x048060,1, 0x048068,4, 0x048080,2, 0x0480a4,1, 0x0480b4,7, 0x048240,24, 0x048300,25, 0x048380,1, 0x0483a0,6, 0x048400,75, 0x048600,1, 0x048608,4, 0x048620,1, 0x048628,4, 0x048800,2, 0x048880,3, 0x048890,3, 0x0488a0,3, 0x0488b0,3, 0x0488c0,2, 0x048a44,5, 0x048a80,6, 0x048aa0,3, 0x048ab0,3, 0x048ad0,4, 0x048c04,4, 0x048c20,3, 0x048c30,1, 0x048c80,13, 0x048cc0,5, 0x049000,35, 0x049a00,10, 0x049a80,3, 0x04a000,10, 0x04a034,3, 0x04a100,256, 0x04a800,5, 0x04a824,3, 0x04a880,128, 0x04ac00,5, 0x04ac24,3, 0x04ac80,128, 0x04b004,1, 0x04b00c,8, 0x04b030,1, 0x04b038,2, 0x04b100,9, 0x04b140,9, 0x04b200,8, 0x04b240,8, 0x050000,35, 0x050090,3, 0x050100,35, 0x050190,3, 0x050200,35, 0x050290,3, 0x050300,35, 0x050390,3, 0x050400,35, 0x050490,3, 0x050500,35, 0x050590,3, 0x050600,35, 0x050690,3, 0x050700,35, 0x050790,3, 0x050800,35, 0x050890,3, 0x050900,1, 0x051000,4, 0x051084,1, 0x0510c0,16, 0x051180,1, 0x0511c0,2, 0x0511e4,1, 0x0511f0,6, 0x051224,1, 0x051230,6, 0x051264,1, 0x051270,6, 0x0512a4,1, 0x0512b0,6, 0x0512e4,1, 0x0512f0,5, 0x051308,1, 0x051400,2, 0x051410,2, 0x051424,2, 0x051444,3, 0x051500,11, 0x051540,11, 0x051584,1, 0x0515c0,26, 0x051630,2, 0x051644,3, 0x051654,1, 0x05165c,2, 0x051680,2, 0x051694,2, 0x0516a4,1, 0x0516ac,3, 0x0516c0,3, 0x051700,8, 0x051740,8, 0x051780,1, 0x051788,2, 0x0517a0,1, 0x0517a8,4, 0x051800,2, 0x05180c,3, 0x05181c,3, 0x05182c,3, 0x05183c,3, 0x05184c,3, 0x05185c,3, 0x05186c,3, 0x05187c,3, 0x05188c,3, 0x05189c,1, 0x051980,3, 0x051c04,1, 0x051c40,16, 0x051d00,22, 0x051e04,1, 0x051e14,5, 0x051e34,1, 0x051e3c,3, 0x051f00,4, 0x052000,35, 0x052100,25, 0x052180,1, 0x0521a0,6, 0x052200,7, 0x052220,6, 0x052240,7, 0x052260,6, 0x054000,9, 0x054080,19, 0x054100,4, 0x054180,30, 0x054200,4, 0x054300,35, 0x054400,2, 0x054484,1, 0x0544b4,19, 0x054600,4, 0x054644,1, 0x054650,12, 0x054800,13, 0x054880,1, 0x054888,8, 0x0548c0,6, 0x0548e0,1, 0x0548e8,2, 0x054904,1, 0x054a00,17, 0x054a80,17, 0x054b00,1, 0x054c00,6, 0x054c20,6, 0x054c40,1, 0x054c80,1, 0x055000,1, 0x055008,14, 0x055048,2, 0x055058,2, 0x060000,8, 0x060100,4, 0x060120,1, 0x060128,4, 0x060140,7, 0x060160,9, 0x060188,4, 0x0601a0,4, 0x0601b8,6, 0x0601d8,2, 0x060200,1, 0x060240,7, 0x06027c,1, 0x060284,1, 0x06028c,1, 0x060294,1, 0x06029c,1, 0x060304,5, 0x060324,4, 0x060340,1, 0x060350,7, 0x060380,2, 0x060390,1, 0x0603b4,3, 0x060800,12, 0x060838,3, 0x060860,8, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,3, 0x060a94,1, 0x060a9c,5, 0x060ac4,1, 0x060ae4,7, 0x060b04,1, 0x060b14,13, 0x060b4c,4, 0x060bf0,12, 0x060c24,1, 0x060c2c,1, 0x060c34,1, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062074,1, 0x06207c,7, 0x0620a0,1, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e0,3, 0x0621f0,3, 0x062200,1, 0x062208,4, 0x062404,5, 0x062440,7, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,8, 0x062908,1, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,4, 0x063000,1, 0x063010,4, 0x063024,3, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,4, 0x0630c4,1, 0x0630cc,1, 0x0630d4,3, 0x0630e4,3, 0x063100,1, 0x063124,3, 0x063140,3, 0x063150,1, 0x063164,3, 0x063180,8, 0x0631bc,4, 0x0631d0,1, 0x0631e0,1, 0x0631e8,4, 0x063208,1, 0x063210,1, 0x063218,16, 0x063260,6, 0x063280,7, 0x0632a0,6, 0x0632c0,1, 0x0632c8,4, 0x0632e0,2, 0x0632f4,1, 0x0632fc,10, 0x064004,5, 0x064020,1, 0x064028,4, 0x064100,3, 0x0642c0,2, 0x0642e4,1, 0x0642f4,9, 0x064320,6, 0x064340,6, 0x064380,4, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,5, 0x064440,1, 0x064464,3, 0x064500,2, 0x064584,1, 0x0645b8,18, 0x064804,1, 0x064880,2, 0x0648c4,15, 0x065020,6, 0x065040,2, 0x065078,2, 0x065114,1, 0x065200,43, 0x065300,1, 0x065400,25, 0x065480,1, 0x0654a0,6, 0x065f00,2, 0x066000,9, 0x066440,3, 0x066450,3, 0x067000,19, 0x067a00,10, 0x067a80,3, 0x070004,5, 0x070020,6, 0x070040,2, 0x07004c,2, 0x070104,1, 0x07010c,1, 0x0703e0,8, 0x070410,25, 0x070480,5, 0x070500,3, 0x070510,1, 0x07051c,1, 0x070524,4, 0x070540,4, 0x070560,5, 0x070580,2, 0x070700,32, 0x070800,6, 0x070820,6, 0x070840,6, 0x070860,6, 0x070880,6, 0x0708a0,6, 0x0708c0,6, 0x0708e0,6, 0x070900,6, 0x070920,6, 0x070940,6, 0x070960,6, 0x070980,6, 0x0709a0,6, 0x0709c0,6, 0x0709e0,6, 0x070a00,6, 0x070a20,6, 0x070a40,6, 0x070a60,6, 0x070a80,6, 0x070aa0,6, 0x070ac0,6, 0x070ae0,6, 0x070b00,6, 0x070b20,6, 0x070b40,6, 0x070b60,6, 0x070b80,6, 0x070ba0,6, 0x070bc0,6, 0x070be0,6, 0x070c00,4, 0x070c30,2, 0x070d00,2, 0x070d84,1, 0x070da0,24, 0x070e04,1, 0x070e40,22, 0x070ea0,6, 0x070ec0,2, 0x070ecc,3, 0x070ee0,2, 0x070eec,2, 0x071000,2, 0x071094,1, 0x071100,2, 0x071184,1, 0x0711c0,16, 0x071204,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071444,1, 0x07144c,1, 0x071454,1, 0x07145c,2, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,6, 0x072020,2, 0x07202c,2, 0x072040,4, 0x072804,5, 0x072880,2, 0x0728a0,6, 0x0728c0,2, 0x0728cc,2, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,8, 0x07383c,1, 0x074800,6, 0x074820,6, 0x074840,2, 0x074880,19, 0x074900,25, 0x074980,1, 0x0749a0,6, 0x074a00,4, 0x074b00,9, 0x075000,5, 0x075020,3, 0x075100,4, 0x075120,7, 0x075200,1, 0x075208,4, 0x076000,35, 0x076a00,10, 0x076a80,3, 0x078000,1, 0x078008,18, 0x078054,9, 0x07807c,3, 0x07808c,12, 0x0780c0,1, 0x0780d0,17, 0x078118,4, 0x078130,2, 0x078140,1, 0x078300,7, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,2, 0x0783e8,2, 0x078404,4, 0x078600,2, 0x078684,1, 0x0786c0,18, 0x078784,1, 0x0787c0,35, 0x078850,4, 0x078884,1, 0x07889c,25, 0x079000,2, 0x079084,1, 0x0790b0,22, 0x079184,1, 0x0791c4,21, 0x079220,7, 0x079240,1, 0x079400,56, 0x079500,11, 0x079600,2, 0x079624,9, 0x079664,9, 0x0796a4,8, 0x0796d0,6, 0x0796f0,4, 0x079704,3, 0x079720,1, 0x079804,4, 0x079900,2, 0x079984,1, 0x0799bc,19, 0x079a24,1, 0x079a34,3, 0x079a80,2, 0x079ac4,1, 0x079ae0,15, 0x079b20,7, 0x079b60,2, 0x079b6c,1, 0x079b74,1, 0x079b7c,3, 0x079b8c,1, 0x079c00,2, 0x079c84,1, 0x079cbc,42, 0x079d80,1, 0x079da0,6, 0x079e00,17, 0x079e48,4, 0x079e60,2, 0x079e78,2, 0x079fa0,3, 0x079fb0,1, 0x079fc0,3, 0x07a000,4, 0x07a100,34, 0x07a200,4, 0x07a280,17, 0x07a300,4, 0x07a380,30, 0x07a400,11, 0x07a440,4, 0x07a800,2, 0x07a884,1, 0x07a8b4,19, 0x07a984,1, 0x07a990,6, 0x07aa00,10, 0x07ac00,25, 0x07ac80,1, 0x07ac88,8, 0x07acc0,6, 0x07ace0,1, 0x07ace8,2, 0x07ad04,3, 0x07ae00,2, 0x07b000,4, 0x07b080,25, 0x07b100,1, 0x07b200,1, 0x07b210,5, 0x07b230,5, 0x07b250,6, 0x07b300,43, 0x07b400,1, 0x07c000,3, 0x07c010,3, 0x07c020,3, 0x07c040,16, 0x07c090,3, 0x07c0a0,3, 0x07c0c0,6, 0x07c0e0,4, 0x07c100,10, 0x07c140,4, 0x07c154,1, 0x07c160,1, 0x07c170,2, 0x07c180,17, 0x07c200,4, 0x07c214,6, 0x07c230,10, 0x07c280,5, 0x07c2a0,1, 0x07c2a8,1, 0x07c300,14, 0x07c340,14, 0x07c380,78, 0x07c4c0,5, 0x07c500,32, 0x07c604,4, 0x07c700,3, 0x07c800,15, 0x07c880,14, 0x07c8c0,5, 0x07c8e0,6, 0x07c900,1, 0x07c910,5, 0x07c930,5, 0x07c950,5, 0x07c970,4, 0x07c9a4,3, 0x07c9c0,1, 0x07c9c8,4, 0x07c9e0,1, 0x07ca00,34, 0x07cb00,20, 0x07cb80,1, 0x07cb90,3, 0x07cbf0,1, 0x07cbf8,9, 0x07cc20,7, 0x07cc40,7, 0x07cc60,7, 0x07cc80,1, 0x07cd00,3, 0x07cd10,1, 0x07cd18,1, 0x07cd20,1, 0x07cd30,2, 0x07cd40,1, 0x07cd48,4, 0x07cd60,3, 0x07cd70,3, 0x07cd84,2, 0x07cd90,6, 0x07cdb4,1, 0x07cdbc,1, 0x07cdc4,1, 0x07cdd0,4, 0x07d000,2, 0x07d084,1, 0x07d0bc,19, 0x07d184,1, 0x07d1b0,22, 0x07d244,1, 0x07d25c,9, 0x07d400,1, 0x07d408,4, 0x07d420,1, 0x07d428,4, 0x07d458,2, 0x07d480,4, 0x07d4c0,19, 0x07d510,6, 0x07d600,5, 0x07d61c,2, 0x07d640,9, 0x07d680,1, 0x07d690,4, 0x07d6a4,4, 0x07d800,2, 0x07d844,1, 0x07d860,8, 0x07d884,1, 0x07d894,28, 0x07d920,1, 0x07d930,5, 0x07d948,2, 0x07dc04,1, 0x07dc10,12, 0x07dc44,1, 0x07dc50,12, 0x07dc84,1, 0x07dc90,12, 0x07dcc4,1, 0x07dcd0,12, 0x07dd80,14, 0x07df80,1, 0x07df90,4, 0x07dfa8,3, 0x07dfc0,1, 0x07dfe8,2, 0x07e000,68, 0x07e200,6, 0x07e220,1, 0x07e240,2, 0x07e24c,2, 0x07e260,11, 0x07e290,10, 0x07e2c0,1, 0x07e2e0,1, 0x07e2f0,7, 0x07e310,10, 0x07e344,1, 0x07e35c,28, 0x07e400,25, 0x07e480,1, 0x07e488,8, 0x07e4c0,6, 0x07e4e0,1, 0x07e4e8,2, 0x07e504,13, 0x07e600,2, 0x07e620,8, 0x07e700,7, 0x07e800,2, 0x07e80c,2, 0x07e820,2, 0x07e82c,2, 0x07e900,2, 0x07e910,2, 0x07eb00,2, 0x07ec00,2, 0x07ec84,1, 0x07ecb4,19, 0x07ed04,1, 0x07ed0c,7, 0x07ed84,1, 0x07ed9c,11, 0x07ee00,4, 0x07ee44,1, 0x07ee50,12, 0x07f000,2, 0x07f084,1, 0x07f0bc,18, 0x07f108,4, 0x07f120,5, 0x07f140,3, 0x07f150,2, 0x07f800,3, 0x07f820,8, 0x07f844,1, 0x07f850,14, 0x07f900,1, 0x07f920,5, 0x07f940,2, 0x07f954,1, 0x07f95c,3, 0x07f980,1, 0x07f988,5, 0x07f9a0,3, 0x07f9b0,3, 0x07f9c0,1, 0x07f9c8,4, 0x07f9e0,4, 0x07fa00,2, 0x07fa20,3, 0x080000,30, 0x080300,15, 0x080340,6, 0x080360,6, 0x08037c,3, 0x08038c,3, 0x0803c0,2, 0x0803e0,3, 0x0803f0,3, 0x080404,5, 0x080804,1, 0x080874,36, 0x080a00,2, 0x080b04,1, 0x080b74,37, 0x080c14,5, 0x080c34,5, 0x080c64,1, 0x080c6c,7, 0x080ca4,1, 0x080cac,7, 0x080ce4,1, 0x080cec,5, 0x081200,1, 0x081210,4, 0x081224,6, 0x081240,2, 0x081254,5, 0x081280,2, 0x081294,3, 0x0812a4,1, 0x0812b0,9, 0x0812fc,3, 0x08130c,1, 0x081344,3, 0x081360,4, 0x081520,1, 0x081528,15, 0x08156c,6, 0x08158c,1, 0x0815c0,5, 0x0815e0,5, 0x081600,5, 0x081620,5, 0x081640,5, 0x081660,5, 0x081680,5, 0x0816a0,5, 0x0816c0,5, 0x0816e4,3, 0x081704,4, 0x08171c,15, 0x081800,2, 0x081824,1, 0x081830,9, 0x081860,3, 0x081870,1, 0x081c00,5, 0x081c20,5, 0x081c40,5, 0x081c60,5, 0x081c80,5, 0x081ca0,5, 0x081cc0,5, 0x081ce0,5, 0x081d00,5, 0x081d20,5, 0x081d40,5, 0x081d60,5, 0x081d80,5, 0x081da0,5, 0x081dc0,5, 0x081de0,5, 0x081e00,5, 0x081e20,5, 0x081e40,5, 0x081e60,5, 0x081e80,5, 0x081ea0,5, 0x081ec0,5, 0x081ee0,5, 0x081f00,5, 0x081f20,5, 0x081f40,5, 0x081f60,5, 0x081f80,5, 0x081fa0,5, 0x081fc0,5, 0x081fe0,5, 0x082000,30, 0x082300,15, 0x082340,6, 0x082360,6, 0x08237c,3, 0x08238c,3, 0x0823c0,2, 0x0823e0,3, 0x0823f0,3, 0x082404,4, 0x082804,1, 0x082874,35, 0x082904,1, 0x082974,37, 0x082a24,1, 0x082a2c,7, 0x082a64,1, 0x082a6c,7, 0x082ac4,1, 0x082ad8,12, 0x082b24,1, 0x082b2c,5, 0x082f00,2, 0x083200,1, 0x083210,7, 0x083240,5, 0x083260,2, 0x08326c,1, 0x083274,3, 0x083284,3, 0x0832a4,1, 0x0832b0,9, 0x0832fc,5, 0x083340,1, 0x083348,16, 0x0833a4,1, 0x0833b0,4, 0x083400,5, 0x083420,5, 0x083440,5, 0x083460,5, 0x083480,5, 0x0834a0,5, 0x0834c0,5, 0x0834e0,5, 0x083500,5, 0x083520,5, 0x083540,5, 0x083560,5, 0x083580,5, 0x0835a0,5, 0x0835c0,5, 0x0835e0,5, 0x083600,5, 0x083620,5, 0x083640,5, 0x083660,5, 0x083680,5, 0x0836a0,5, 0x0836c0,5, 0x0836e0,5, 0x083700,5, 0x083720,5, 0x083740,5, 0x083760,5, 0x083780,5, 0x0837a0,5, 0x0837c0,5, 0x0837e0,5, 0x084000,30, 0x084300,15, 0x084340,6, 0x084360,6, 0x08437c,3, 0x08438c,3, 0x0843c0,2, 0x0843e0,3, 0x0843f0,3, 0x084404,4, 0x084804,1, 0x084874,35, 0x084904,1, 0x084974,37, 0x084a24,1, 0x084a30,6, 0x084a54,5, 0x084a74,5, 0x084a94,3, 0x084ac0,2, 0x084ae4,1, 0x084af0,6, 0x084b14,3, 0x084f00,2, 0x085000,2, 0x085044,1, 0x085064,13, 0x085200,1, 0x085210,4, 0x085224,3, 0x085280,8, 0x0852a4,1, 0x0852b0,8, 0x085304,3, 0x085320,2, 0x0853c0,5, 0x0853fc,2, 0x085408,7, 0x085470,3, 0x085600,70, 0x085720,6, 0x085800,5, 0x085820,5, 0x085840,5, 0x085860,5, 0x085880,5, 0x0858a0,5, 0x0858c0,5, 0x0858e0,5, 0x085c00,4, 0x086000,2, 0x086020,2, 0x086044,3, 0x086054,1, 0x086080,2, 0x086400,13, 0x086440,13, 0x086800,75, 0x086a80,4, 0x086c00,22, 0x086c60,7, 0x086c80,7, 0x086ca0,6, 0x086cc0,6, 0x086ce0,7, 0x086d00,6, 0x086d20,6, 0x086d40,6, 0x086d60,7, 0x086d80,1, 0x086e00,25, 0x086e80,1, 0x086ea0,6, 0x086f00,1, 0x086f08,4, 0x086f20,1, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b8,7, 0x0871e0,6, 0x087208,6, 0x087800,8, 0x087840,4, 0x087860,4, 0x087880,8, 0x087900,5, 0x088000,19, 0x090204,1, 0x090224,23, 0x090500,19, 0x090580,7, 0x0905a0,2, 0x0905b4,5, 0x0905e0,1, 0x0905e8,4, 0x090800,45, 0x0908b8,4, 0x0908d0,2, 0x090a04,1, 0x090a40,25, 0x090aa8,2, 0x090ac0,9, 0x090ae8,2, 0x090c20,10, 0x090c50,3, 0x090c60,3, 0x090c70,3, 0x090c80,4, 0x090ca0,5, 0x090cc0,32, 0x090e20,10, 0x090e50,3, 0x090e60,3, 0x090e70,3, 0x090e80,4, 0x090ea0,5, 0x090ec0,32, 0x091004,3, 0x091800,11, 0x091840,22, 0x0918a0,8, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,3, 0x093210,2, 0x093404,1, 0x093440,16, 0x093600,1, 0x093608,4, 0x093804,1, 0x09383c,29, 0x0938b8,2, 0x0938c8,1, 0x0938d0,10, 0x094080,3, 0x0940c0,1, 0x0940c8,4, 0x094100,25, 0x094180,1, 0x0941a0,6, 0x094200,4, 0x094220,6, 0x094300,3, 0x094324,4, 0x094344,12, 0x094378,4, 0x0943a0,8, 0x095000,19, 0x095a00,10, 0x095a80,3, 0x096000,1, 0x096010,4, 0x096024,1, 0x09602c,4, 0x096104,1, 0x09610c,7, 0x096204,4, 0x096488,1, 0x096498,4, 0x0964b0,4, 0x096504,4, 0x096584,4, 0x096700,34, 0x096800,11, 0x096840,4, 0x096884,3, 0x0968a0,6, 0x0968c0,6, 0x0968e0,6, 0x096900,6, 0x096920,6, 0x096940,6, 0x097100,8, 0x097140,1, 0x097200,18, 0x097254,7, 0x097274,6, 0x097300,2, 0x097384,1, 0x0973bc,17, 0x098000,3, 0x099000,19, 0x09a000,11, 0x09a040,2, 0x09a060,6, 0x09a080,7, 0x09a104,1, 0x09a164,40, 0x09a208,2, 0x09a224,3, 0x09a240,1, 0x09a250,4, 0x09a264,6, 0x09a280,20, 0x09a300,25, 0x09a380,1, 0x09a3a0,6, 0x09a400,1, 0x09a408,4, 0x09a420,2, 0x09a460,1, 0x09a468,10, 0x09a500,3, 0x09a510,2, 0x09a524,3, 0x09a600,2, 0x09a680,1, 0x09a6c0,2, 0x09a6d4,6, 0x09a6f0,1, 0x09a6f8,2, 0x09a800,1, 0x09a820,3, 0x09a830,4, 0x09aa00,92, 0x09ac00,2, 0x09b000,67, 0x09b800,260, 0x0a1000,70, 0x0a1120,32, 0x0a1244,4, 0x0a1260,9, 0x0a1288,6, 0x0a12a4,3, 0x0a12bc,3, 0x0a12e4,1, 0x0a12ec,8, 0x0a1310,3, 0x0a1324,6, 0x0a135c,5, 0x0a13b4,1, 0x0a13bc,2, 0x0a13e0,10, 0x0a1414,1, 0x0a141c,3, 0x0a1430,18, 0x0a147c,8, 0x0a14c0,1, 0x0a14c8,4, 0x0a14e0,1, 0x0a14e8,2, 0x0a1500,4, 0x0a1520,6, 0x0a1580,3, 0x0a1590,3, 0x0a15a0,3, 0x0a15b0,3, 0x0a15c0,3, 0x0a15d0,3, 0x0a15e0,3, 0x0a15f0,3, 0x0a1600,5, 0x0a1620,5, 0x0a1640,5, 0x0a1660,5, 0x0a1680,5, 0x0a16a0,5, 0x0a16c0,3, 0x0a1800,2, 0x0a1844,1, 0x0a1850,14, 0x0a18c4,1, 0x0a18d0,15, 0x0a1910,2, 0x0a1920,2, 0x0a192c,4, 0x0a1940,1, 0x0a1948,2, 0x0a1960,6, 0x0a1980,2, 0x0a19c4,1, 0x0a19d0,22, 0x0a1a40,10, 0x0a1a80,10, 0x0a1ac0,10, 0x0a1b00,10, 0x0a1c00,2, 0x0a1c44,1, 0x0a1c50,12, 0x0a2004,5, 0x0a2020,6, 0x0a2040,6, 0x0a2400,2, 0x0a240c,9, 0x0a2440,1, 0x0a2450,4, 0x0a2464,6, 0x0a2480,1, 0x0a24a0,8, 0x0a24d0,10, 0x0a2500,5, 0x0a2520,5, 0x0a2540,5, 0x0a2560,5, 0x0a2580,4, 0x0a25ac,5, 0x0a2804,5, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c64,6, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,5, 0x0a3040,2, 0x0a3060,3, 0x0a3070,3, 0x0a31fc,10, 0x0a3230,2, 0x0a323c,4, 0x0a3250,2, 0x0a3260,1, 0x0a3270,6, 0x0a32a0,6, 0x0a3300,1, 0x0a3310,6, 0x0a3a90,1, 0x0a3aa0,1, 0x0a3aa8,4, 0x0a3ac0,5, 0x0a3ae0,5, 0x0a3b00,64, 0x0a3c04,1, 0x0a3c84,42, 0x0a3d3c,1, 0x0a4100,1, 0x0a4108,4, 0x0a4120,1, 0x0a4140,8, 0x0a4200,1, 0x0a4208,5, 0x0a4220,2, 0x0a422c,7, 0x0a4264,1, 0x0a4270,6, 0x0a42c4,1, 0x0a42d8,16, 0x0a4400,51, 0x0a44d8,5, 0x0a44f0,3, 0x0a4500,5, 0x0a451c,2, 0x0a4528,4, 0x0a4540,1, 0x0a4560,1, 0x0a4804,4, 0x0a4840,2, 0x0a4860,10, 0x0a488c,2, 0x0a48a0,6, 0x0a48c0,2, 0x0a48cc,2, 0x0a48e0,6, 0x0a4c00,6, 0x0a4c1c,1, 0x0a4c50,8, 0x0a4c78,25, 0x0a4d00,2, 0x0a4d84,1, 0x0a4dc0,16, 0x0a4e04,3, 0x0a4e20,6, 0x0a5000,26, 0x0a5080,6, 0x0a6000,4, 0x0a6020,10, 0x0a604c,2, 0x0a6060,1, 0x0a6068,4, 0x0a6080,10, 0x0a60b8,1, 0x0a60c0,4, 0x0a6100,25, 0x0a6180,1, 0x0a61a0,6, 0x0a6400,75, 0x0a6680,6, 0x0a66a0,2, 0x0a66c0,7, 0x0a7000,35, 0x0a7a00,10, 0x0a7a80,3, 0x0a8000,3, 0x0a8010,10, 0x0a8040,9, 0x0a8070,14, 0x0a80ac,1, 0x0a80b4,13, 0x0a80ec,6, 0x0a8108,4, 0x0a8120,1, 0x0a8128,4, 0x0a8140,8, 0x0a8204,14, 0x0a8240,2, 0x0a8254,1, 0x0a825c,3, 0x0a8274,1, 0x0a827c,1, 0x0a8400,3, 0x0a8410,2, 0x0a841c,4, 0x0a8440,9, 0x0a8470,20, 0x0a8504,5, 0x0a8604,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,8, 0x0a89a4,1, 0x0a89ac,4, 0x0a89c0,1, 0x0a8a00,2, 0x0a8a0c,4, 0x0a8a20,2, 0x0a8a34,1, 0x0a8a3c,17, 0x0a8aa4,3, 0x0a8ac0,4, 0x0a8ad4,1, 0x0a8ae8,5, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,4, 0x0a9000,21, 0x0a9058,3, 0x0a9080,7, 0x0a90a0,2, 0x0a9100,11, 0x0a9140,9, 0x0a9170,3, 0x0a9200,38, 0x0a92a4,1, 0x0a92b4,3, 0x0a9300,42, 0x0a9400,38, 0x0a949c,9, 0x0a9500,4, 0x0a9518,4, 0x0a9534,1, 0x0a9540,24, 0x0a9804,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,4, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d44,6, 0x0a9d80,1, 0x0a9dc0,3, 0x0a9dd0,3, 0x0a9de0,3, 0x0a9df0,3, 0x0a9e00,1, 0x0a9e20,8, 0x0a9e44,6, 0x0a9e80,1, 0x0a9ea0,8, 0x0a9ec4,6, 0x0a9f44,1, 0x0a9f54,2, 0x0a9f60,8, 0x0aa000,13, 0x0aa040,17, 0x0aa088,4, 0x0aa100,25, 0x0aa180,1, 0x0aa1a0,6, 0x0aa204,4, 0x0aa400,48, 0x0aa500,12, 0x0aa540,3, 0x0b0000,89, 0x0b0180,1, 0x0b01a0,6, 0x0b0204,4, 0x0b0218,1, 0x0b0220,6, 0x0b0240,1, 0x0b0248,2, 0x0b0400,89, 0x0b0580,1, 0x0b05a0,6, 0x0b0604,4, 0x0b0618,1, 0x0b0620,6, 0x0b0640,1, 0x0b0648,2, 0x0b0800,89, 0x0b0980,1, 0x0b09a0,6, 0x0b0a04,4, 0x0b0a18,1, 0x0b0a20,6, 0x0b0a40,1, 0x0b0a48,2, 0x0b0c00,89, 0x0b0d80,1, 0x0b0da0,6, 0x0b0e04,4, 0x0b0e18,1, 0x0b0e20,6, 0x0b0e40,1, 0x0b0e48,2, 0x0b1000,89, 0x0b1180,1, 0x0b11a0,6, 0x0b1204,4, 0x0b1218,1, 0x0b1220,6, 0x0b1240,1, 0x0b1248,2, 0x0b1400,89, 0x0b1580,1, 0x0b15a0,6, 0x0b1604,4, 0x0b1618,1, 0x0b1620,6, 0x0b1640,1, 0x0b1648,2, 0x0b1800,89, 0x0b1980,1, 0x0b19a0,6, 0x0b1a04,4, 0x0b1a18,1, 0x0b1a20,6, 0x0b1a40,1, 0x0b1a48,2, 0x0b1c00,89, 0x0b1d80,1, 0x0b1da0,6, 0x0b1e04,4, 0x0b1e18,1, 0x0b1e20,6, 0x0b1e40,1, 0x0b1e48,2, 0x0b2000,88, 0x0b2180,35, 0x0b4000,195, 0x0b4310,3, 0x0b4320,3, 0x0b4340,5, 0x0b4364,31, 0x0b4400,9, 0x0b4480,32, 0x0b4804,4, 0x0b4900,1, 0x0b4940,3, 0x0b4950,3, 0x0b4960,3, 0x0b4970,3, 0x0b4980,1, 0x0b49c0,3, 0x0b49d0,3, 0x0b49e0,3, 0x0b49f0,3, 0x0b4a04,4, 0x0b4a24,4, 0x0b4a44,3, 0x0b4b00,25, 0x0b4b80,1, 0x0b4ba0,6, 0x0b4c00,96, 0x0b4e04,1, 0x0b4e10,3, 0x0b4e20,3, 0x0b4e40,3, 0x0b4e50,3, 0x0b4e60,3, 0x0b4e70,2, 0x0b4e80,8, 0x0b4ea8,4, 0x0b4ec0,7, 0x0b4ee0,7, 0x0b4f00,7, 0x0b4f20,1, 0x0b4f28,4, 0x0b5000,7, 0x0b5040,6, 0x0b5080,6, 0x0b5100,6, 0x0b5140,6, 0x0b5180,6, 0x0b51c0,6, 0x0b5200,7, 0x0b5240,1, 0x0b5260,6, 0x0b5800,99, 0x0b5a00,4, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5da0,1, 0x0b5da8,4, 0x0b5dc0,28, 0x0b5e40,12, 0x0b5e80,8, 0x0b5f00,14, 0x0b5f40,2, 0x0b6000,16, 0x0b6080,22, 0x0b6200,40, 0x0b62a8,2, 0x0b6300,24, 0x0b6364,1, 0x0b6400,20, 0x0b6454,1, 0x0b6500,12, 0x0b6534,1, 0x0b6600,52, 0x0b66d8,2, 0x0b6700,12, 0x0b6734,1, 0x0b6800,32, 0x0b6884,1, 0x0b6900,14, 0x0b693c,1, 0x0b6a00,8, 0x0b6a24,1, 0x0b6b00,11, 0x0b6b30,2, 0x0b6b3c,1, 0x0b6c00,30, 0x0b6c7c,1, 0x0b6d00,12, 0x0b6d34,1, 0x0b6e00,45, 0x0b6eb8,4, 0x0b6ed0,2, 0x0b6f00,20, 0x0b6f54,1, 0x0b7000,8, 0x0b7024,1, 0x0b7100,6, 0x0b711c,1, 0x0b7200,8, 0x0b7224,1, 0x0b7300,8, 0x0b7324,1, 0x0b7500,25, 0x0b7580,1, 0x0b75a0,6, 0x0b7600,6, 0x0b7620,6, 0x0b7640,6, 0x0b7660,6, 0x0b7680,6, 0x0b76a0,6, 0x0b76c0,6, 0x0b76e0,6, 0x0b7700,6, 0x0b7720,6, 0x0b7740,6, 0x0b8000,35, 0x0b8a00,10, 0x0b8a80,3, 0x0c0000,37, 0x0c0104,1, 0x0c0140,16, 0x0c0184,7, 0x0c01b4,4, 0x0c01c8,10, 0x0c0400,9, 0x0c0440,9, 0x0c0480,9, 0x0c04c0,9, 0x0c0500,9, 0x0c0540,9, 0x0c0580,9, 0x0c05c0,9, 0x0c0604,4, 0x0c0620,1, 0x0c0630,5, 0x0c0650,5, 0x0c0670,1, 0x0c0680,1, 0x0c0690,1, 0x0c06a0,6, 0x0c06c8,1, 0x0c06e0,15, 0x0c0720,7, 0x0c0740,1, 0x0c0780,2, 0x0c078c,2, 0x0c07a0,2, 0x0c07ac,3, 0x0c07c0,3, 0x0c07d0,3, 0x0c0800,1, 0x0c0810,1, 0x0c0844,1, 0x0c0854,4, 0x0c0880,10, 0x0c0900,11, 0x0c0940,11, 0x0c0980,5, 0x0c0c00,1, 0x0c0c10,4, 0x0c0c24,6, 0x0c0c40,1, 0x0c0c50,5, 0x0c0c70,5, 0x0c0c90,4, 0x0c0d04,4, 0x0c0d20,1, 0x0c0d30,1, 0x0c0d40,9, 0x0c0d80,12, 0x0c0e00,22, 0x0c0e80,4, 0x0c0f00,6, 0x0c0f20,6, 0x0c0f40,1, 0x0c0f80,9, 0x0c1000,1, 0x0c1010,4, 0x0c1024,6, 0x0c1040,1, 0x0c1050,5, 0x0c1070,5, 0x0c1090,4, 0x0c1104,4, 0x0c1120,1, 0x0c1130,1, 0x0c1140,9, 0x0c1180,12, 0x0c1200,22, 0x0c1280,4, 0x0c1300,6, 0x0c1320,6, 0x0c1340,1, 0x0c1380,9, 0x0c2000,32, 0x0c2100,48, 0x0c2400,3, 0x0c2410,3, 0x0c2440,11, 0x0c2480,3, 0x0c2490,3, 0x0c24c0,11, 0x0c2500,3, 0x0c2510,3, 0x0c2540,11, 0x0c2580,3, 0x0c2590,3, 0x0c25c0,11, 0x0c2600,3, 0x0c2610,3, 0x0c2640,11, 0x0c2680,3, 0x0c2690,3, 0x0c26c0,11, 0x0c2700,3, 0x0c2710,3, 0x0c2740,11, 0x0c2780,3, 0x0c2790,3, 0x0c27c0,11, 0x0c2800,2, 0x0c280c,2, 0x0c2818,18, 0x0c2900,1, 0x0c2908,11, 0x0c2a00,21, 0x0c2a60,5, 0x0c3000,3, 0x0c3024,1, 0x0c302c,5, 0x0c3100,3, 0x0c3110,2, 0x0c3128,2, 0x0c3180,1, 0x0c3188,4, 0x0c31a0,2, 0x0c3200,6, 0x0c3220,6, 0x0c3240,2, 0x0c3300,9, 0x0c3380,6, 0x0c33a0,6, 0x0c33c0,1, 0x0c3400,25, 0x0c3480,1, 0x0c34a0,6, 0x0c3500,35, 0x0c4000,35, 0x0c4a00,10, 0x0c4a80,3, 0x0c4ac0,1, 0x0c8000,37, 0x0c8104,1, 0x0c8140,16, 0x0c8184,7, 0x0c81b4,4, 0x0c81c8,10, 0x0c8400,9, 0x0c8440,9, 0x0c8480,9, 0x0c84c0,9, 0x0c8500,9, 0x0c8540,9, 0x0c8580,9, 0x0c85c0,9, 0x0c8604,4, 0x0c8620,1, 0x0c8630,5, 0x0c8650,5, 0x0c8670,1, 0x0c8680,1, 0x0c8690,1, 0x0c86a0,6, 0x0c86c8,1, 0x0c86e0,15, 0x0c8720,7, 0x0c8740,1, 0x0c8780,2, 0x0c878c,2, 0x0c87a0,2, 0x0c87ac,3, 0x0c87c0,3, 0x0c87d0,3, 0x0c8800,1, 0x0c8810,1, 0x0c8844,1, 0x0c8854,4, 0x0c8880,10, 0x0c8900,11, 0x0c8940,11, 0x0c8980,5, 0x0c8c00,1, 0x0c8c10,4, 0x0c8c24,6, 0x0c8c40,1, 0x0c8c50,5, 0x0c8c70,5, 0x0c8c90,4, 0x0c8d04,4, 0x0c8d20,1, 0x0c8d30,1, 0x0c8d40,9, 0x0c8d80,12, 0x0c8e00,22, 0x0c8e80,4, 0x0c8f00,6, 0x0c8f20,6, 0x0c8f40,1, 0x0c8f80,9, 0x0c9000,1, 0x0c9010,4, 0x0c9024,6, 0x0c9040,1, 0x0c9050,5, 0x0c9070,5, 0x0c9090,4, 0x0c9104,4, 0x0c9120,1, 0x0c9130,1, 0x0c9140,9, 0x0c9180,12, 0x0c9200,22, 0x0c9280,4, 0x0c9300,6, 0x0c9320,6, 0x0c9340,1, 0x0c9380,9, 0x0ca000,32, 0x0ca100,48, 0x0ca400,3, 0x0ca410,3, 0x0ca440,11, 0x0ca480,3, 0x0ca490,3, 0x0ca4c0,11, 0x0ca500,3, 0x0ca510,3, 0x0ca540,11, 0x0ca580,3, 0x0ca590,3, 0x0ca5c0,11, 0x0ca600,3, 0x0ca610,3, 0x0ca640,11, 0x0ca680,3, 0x0ca690,3, 0x0ca6c0,11, 0x0ca700,3, 0x0ca710,3, 0x0ca740,11, 0x0ca780,3, 0x0ca790,3, 0x0ca7c0,11, 0x0ca800,2, 0x0ca80c,2, 0x0ca818,18, 0x0ca900,1, 0x0ca908,11, 0x0caa00,21, 0x0caa60,5, 0x0cb000,3, 0x0cb024,1, 0x0cb02c,5, 0x0cb100,3, 0x0cb110,2, 0x0cb128,2, 0x0cb180,1, 0x0cb188,4, 0x0cb1a0,2, 0x0cb200,6, 0x0cb220,6, 0x0cb240,2, 0x0cb300,9, 0x0cb380,6, 0x0cb3a0,6, 0x0cb3c0,1, 0x0cb400,25, 0x0cb480,1, 0x0cb4a0,6, 0x0cb500,35, 0x0cc000,35, 0x0cca00,10, 0x0cca80,3, 0x0ccac0,1, 0x0d0000,37, 0x0d0104,1, 0x0d0140,16, 0x0d0184,7, 0x0d01b4,4, 0x0d01c8,10, 0x0d0400,9, 0x0d0440,9, 0x0d0480,9, 0x0d04c0,9, 0x0d0500,9, 0x0d0540,9, 0x0d0580,9, 0x0d05c0,9, 0x0d0604,4, 0x0d0620,1, 0x0d0630,5, 0x0d0650,5, 0x0d0670,1, 0x0d0680,1, 0x0d0690,1, 0x0d06a0,6, 0x0d06c8,1, 0x0d06e0,15, 0x0d0720,7, 0x0d0740,1, 0x0d0780,2, 0x0d078c,2, 0x0d07a0,2, 0x0d07ac,3, 0x0d07c0,3, 0x0d07d0,3, 0x0d0800,1, 0x0d0810,1, 0x0d0844,1, 0x0d0854,4, 0x0d0880,10, 0x0d0900,11, 0x0d0940,11, 0x0d0980,5, 0x0d0c00,1, 0x0d0c10,4, 0x0d0c24,6, 0x0d0c40,1, 0x0d0c50,5, 0x0d0c70,5, 0x0d0c90,4, 0x0d0d04,4, 0x0d0d20,1, 0x0d0d30,1, 0x0d0d40,9, 0x0d0d80,12, 0x0d0e00,22, 0x0d0e80,4, 0x0d0f00,6, 0x0d0f20,6, 0x0d0f40,1, 0x0d0f80,9, 0x0d1000,1, 0x0d1010,4, 0x0d1024,6, 0x0d1040,1, 0x0d1050,5, 0x0d1070,5, 0x0d1090,4, 0x0d1104,4, 0x0d1120,1, 0x0d1130,1, 0x0d1140,9, 0x0d1180,12, 0x0d1200,22, 0x0d1280,4, 0x0d1300,6, 0x0d1320,6, 0x0d1340,1, 0x0d1380,9, 0x0d2000,32, 0x0d2100,48, 0x0d2400,3, 0x0d2410,3, 0x0d2440,11, 0x0d2480,3, 0x0d2490,3, 0x0d24c0,11, 0x0d2500,3, 0x0d2510,3, 0x0d2540,11, 0x0d2580,3, 0x0d2590,3, 0x0d25c0,11, 0x0d2600,3, 0x0d2610,3, 0x0d2640,11, 0x0d2680,3, 0x0d2690,3, 0x0d26c0,11, 0x0d2700,3, 0x0d2710,3, 0x0d2740,11, 0x0d2780,3, 0x0d2790,3, 0x0d27c0,11, 0x0d2800,2, 0x0d280c,2, 0x0d2818,18, 0x0d2900,1, 0x0d2908,11, 0x0d2a00,21, 0x0d2a60,5, 0x0d3000,3, 0x0d3024,1, 0x0d302c,5, 0x0d3100,3, 0x0d3110,2, 0x0d3128,2, 0x0d3180,1, 0x0d3188,4, 0x0d31a0,2, 0x0d3200,6, 0x0d3220,6, 0x0d3240,2, 0x0d3300,9, 0x0d3380,6, 0x0d33a0,6, 0x0d33c0,1, 0x0d3400,25, 0x0d3480,1, 0x0d34a0,6, 0x0d3500,35, 0x0d4000,35, 0x0d4a00,10, 0x0d4a80,3, 0x0d4ac0,1, 0x0d8000,37, 0x0d8104,1, 0x0d8140,16, 0x0d8184,7, 0x0d81b4,4, 0x0d81c8,10, 0x0d8400,9, 0x0d8440,9, 0x0d8480,9, 0x0d84c0,9, 0x0d8500,9, 0x0d8540,9, 0x0d8580,9, 0x0d85c0,9, 0x0d8604,4, 0x0d8620,1, 0x0d8630,5, 0x0d8650,5, 0x0d8670,1, 0x0d8680,1, 0x0d8690,1, 0x0d86a0,6, 0x0d86c8,1, 0x0d86e0,15, 0x0d8720,7, 0x0d8740,1, 0x0d8780,2, 0x0d878c,2, 0x0d87a0,2, 0x0d87ac,3, 0x0d87c0,3, 0x0d87d0,3, 0x0d8800,1, 0x0d8810,1, 0x0d8844,1, 0x0d8854,4, 0x0d8880,10, 0x0d8900,11, 0x0d8940,11, 0x0d8980,5, 0x0d8c00,1, 0x0d8c10,4, 0x0d8c24,6, 0x0d8c40,1, 0x0d8c50,5, 0x0d8c70,5, 0x0d8c90,4, 0x0d8d04,4, 0x0d8d20,1, 0x0d8d30,1, 0x0d8d40,9, 0x0d8d80,12, 0x0d8e00,22, 0x0d8e80,4, 0x0d8f00,6, 0x0d8f20,6, 0x0d8f40,1, 0x0d8f80,9, 0x0d9000,1, 0x0d9010,4, 0x0d9024,6, 0x0d9040,1, 0x0d9050,5, 0x0d9070,5, 0x0d9090,4, 0x0d9104,4, 0x0d9120,1, 0x0d9130,1, 0x0d9140,9, 0x0d9180,12, 0x0d9200,22, 0x0d9280,4, 0x0d9300,6, 0x0d9320,6, 0x0d9340,1, 0x0d9380,9, 0x0da000,32, 0x0da100,48, 0x0da400,3, 0x0da410,3, 0x0da440,11, 0x0da480,3, 0x0da490,3, 0x0da4c0,11, 0x0da500,3, 0x0da510,3, 0x0da540,11, 0x0da580,3, 0x0da590,3, 0x0da5c0,11, 0x0da600,3, 0x0da610,3, 0x0da640,11, 0x0da680,3, 0x0da690,3, 0x0da6c0,11, 0x0da700,3, 0x0da710,3, 0x0da740,11, 0x0da780,3, 0x0da790,3, 0x0da7c0,11, 0x0da800,2, 0x0da80c,2, 0x0da818,18, 0x0da900,1, 0x0da908,11, 0x0daa00,21, 0x0daa60,5, 0x0db000,3, 0x0db024,1, 0x0db02c,5, 0x0db100,3, 0x0db110,2, 0x0db128,2, 0x0db180,1, 0x0db188,4, 0x0db1a0,2, 0x0db200,6, 0x0db220,6, 0x0db240,2, 0x0db300,9, 0x0db380,6, 0x0db3a0,6, 0x0db3c0,1, 0x0db400,25, 0x0db480,1, 0x0db4a0,6, 0x0db500,35, 0x0dc000,35, 0x0dca00,10, 0x0dca80,3, 0x0dcac0,1, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0160,2, 0x0e0180,3, 0x0e019c,18, 0x0e01ec,4, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0240,1, 0x0e027c,6, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0560,2, 0x0e0580,3, 0x0e059c,18, 0x0e05ec,4, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0640,1, 0x0e067c,6, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0960,2, 0x0e0980,3, 0x0e099c,18, 0x0e09ec,4, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0a40,1, 0x0e0a7c,6, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d60,2, 0x0e0d80,3, 0x0e0d9c,18, 0x0e0dec,4, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e0e40,1, 0x0e0e7c,6, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1160,2, 0x0e1180,3, 0x0e119c,18, 0x0e11ec,4, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1240,1, 0x0e127c,6, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1560,2, 0x0e1580,3, 0x0e159c,18, 0x0e15ec,4, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1640,1, 0x0e167c,6, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1960,2, 0x0e1980,3, 0x0e199c,18, 0x0e19ec,4, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1a40,1, 0x0e1a7c,6, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d60,2, 0x0e1d80,3, 0x0e1d9c,18, 0x0e1dec,4, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e1e40,1, 0x0e1e7c,6, 0x0e2000,3, 0x0e2018,2, 0x0e2024,13, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,9, 0x0e2140,3, 0x0e2160,2, 0x0e2180,3, 0x0e219c,18, 0x0e21ec,4, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2240,1, 0x0e227c,6, 0x0e2400,3, 0x0e2418,2, 0x0e2424,13, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,9, 0x0e2540,3, 0x0e2560,2, 0x0e2580,3, 0x0e259c,18, 0x0e25ec,4, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2640,1, 0x0e267c,6, 0x0e2800,3, 0x0e2818,2, 0x0e2824,13, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,9, 0x0e2940,3, 0x0e2960,2, 0x0e2980,3, 0x0e299c,18, 0x0e29ec,4, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e2a40,1, 0x0e2a7c,6, 0x0e3008,23, 0x0e3070,1, 0x0e3080,2, 0x0e308c,1, 0x0e3098,3, 0x0e3100,4, 0x0e3200,17, 0x0e3248,4, 0x0e3260,5, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,5, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,5, 0x0e3300,1, 0x0e3308,4, 0x0e3320,5, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,87, 0x0e3660,11, 0x0e3690,13, 0x0e36e0,2, 0x0e36ec,2, 0x0e3804,1, 0x0e387c,103, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,5, 0x0e3c40,16, 0x0e3c84,1, 0x0e3c8c,2, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,36, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e4900,3, 0x0e4910,5, 0x0e4928,2, 0x0e4980,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c00,14, 0x0e4c40,1, 0x0e4c48,1, 0x0e4c58,10, 0x0e4c84,1, 0x0e4ca0,8, 0x0e4d00,12, 0x0e4d40,1, 0x0e4e00,26, 0x0e4e80,25, 0x0e5000,35, 0x0e5a00,10, 0x0e5a80,3, 0x0e6000,28, 0x0e6074,1, 0x0e607c,1, 0x0e6084,1, 0x0e60a0,10, 0x0e6100,66, 0x0e6224,1, 0x0e622c,12, 0x0e6264,1, 0x0e626c,11, 0x0e62c8,12, 0x0e62fc,2, 0x0e6380,64, 0x0e6484,1, 0x0e64c0,23, 0x0e6520,7, 0x0e65c8,12, 0x0e65fc,2, 0x0e6680,64, 0x0e6784,1, 0x0e67c0,23, 0x0e6820,7, 0x0e6844,6, 0x0e6860,1, 0x0e6868,4, 0x0e6880,1, 0x0e6898,3, 0x0e68a8,4, 0x0e68c4,2, 0x0e6900,6, 0x0e6920,6, 0x0e6940,6, 0x0e6960,6, 0x0e6980,65, 0x0e6a88,3, 0x0e6a98,3, 0x0e6aa8,3, 0x0e6ab8,2, 0x0e6b00,36, 0x0e6c00,38, 0x0e6ca0,6, 0x0e6cc0,5, 0x0e6ce0,5, 0x0e6d00,5, 0x0e6d20,5, 0x0e6d40,1, 0x0e6d80,9, 0x0e6da8,4, 0x0e7000,40, 0x0e7120,1, 0x0e7178,54, 0x0e7300,33, 0x0e7388,4, 0x0e73a0,4, 0x0e7450,3, 0x0e7464,3, 0x0e74d0,4, 0x0e7500,1, 0x0e7510,12, 0x0e7580,3, 0x0e75c0,3, 0x0e7600,19, 0x0e7680,19, 0x0e7708,2, 0x0e7720,7, 0x0e7740,7, 0x0e7760,4, 0x0e7800,99, 0x0e7a00,16, 0x0e7a80,31, 0x0e7b00,3, 0x0e7b80,4, 0x0e7bc0,11, 0x0e7c00,115, 0x0e7e00,70, 0x0e7f20,14, 0x0e7f70,4, 0x0e7f88,1, 0x0e7f90,12, 0x0e8000,11, 0x0e8030,1, 0x0e8080,2, 0x0e80c4,2, 0x0e80d0,1, 0x0e80d8,1, 0x0e80e0,1, 0x0e80f4,3, 0x0e9000,128, 0x0e9208,256, 0x0e9610,128, 0x0e9818,1, 0x0e9fc0,40, 0x0ea078,1, 0x0ea100,2, 0x0f0000,4, 0x0f0014,2, 0x0f0020,10, 0x0f0054,1, 0x0f005c,10, 0x0f0088,20, 0x0f00dc,1, 0x0f0200,54, 0x0f02e0,16, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,7, 0x0f0480,20, 0x0f0500,14, 0x0f0540,4, 0x0f0580,7, 0x0f05a0,7, 0x0f05c0,14, 0x0f0600,36, 0x0f0ad0,2, 0x0f0ae0,3, 0x0f0af0,3, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba8,5, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,11, 0x0f0c60,56, 0x0f0d60,108, 0x0f0f50,2, 0x0f0f7c,33, 0x0f1080,14, 0x0f10c0,4, 0x0f10e0,5, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,24, 0x0f1300,6, 0x0f1320,2, 0x0f1400,27, 0x0f1480,8, 0x0f1500,11, 0x0f1530,3, 0x0f1540,3, 0x0f1550,3, 0x0f1580,11, 0x0f1c00,4, 0x0f1d00,3, 0x0f1d40,12, 0x0f1d80,3, 0x0f1dc0,12, 0x0f1e00,3, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f00,6, 0x0f1f20,1, 0x0f1f28,2, 0x0f1f40,2, 0x0f1f80,2, 0x0f1fc0,48, 0x0f2100,32, 0x0f2200,32, 0x0f2300,32, 0x0f2400,32, 0x0f2500,32, 0x0f2600,32, 0x0f2700,32, 0x0f2800,32, 0x0f2900,32, 0x0f2a00,32, 0x0f2b00,32, 0x0f2c00,32, 0x0f2d00,32, 0x0f2e00,32, 0x0f2f00,32, 0x0f3000,32, 0x0f30c0,3, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4600,19, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f4e00,19, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5600,19, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f5e00,19, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6600,19, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f6e00,19, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x0f7600,19, 0x0f7800,7, 0x0f7820,4, 0x0f7a04,1, 0x0f7a80,35, 0x0f7b10,4, 0x0f7c04,1, 0x0f7c80,34, 0x0f7d10,10, 0x0f7d3c,3, 0x0f7e00,19, 0x0f8000,7, 0x0f8020,4, 0x0f8204,1, 0x0f8280,35, 0x0f8310,4, 0x0f8404,1, 0x0f8480,34, 0x0f8510,10, 0x0f853c,3, 0x0f8600,19, 0x0f8800,7, 0x0f8820,4, 0x0f8a04,1, 0x0f8a80,35, 0x0f8b10,4, 0x0f8c04,1, 0x0f8c80,34, 0x0f8d10,10, 0x0f8d3c,3, 0x0f8e00,19, 0x0f9ff0,3, 0x0fa000,5, 0x0fa01c,12, 0x0fa05c,3, 0x0fa080,8, 0x0fa100,5, 0x0fa11c,12, 0x0fa15c,3, 0x0fa180,8, 0x0fa200,5, 0x0fa21c,12, 0x0fa25c,3, 0x0fa280,8, 0x0fa300,5, 0x0fa31c,12, 0x0fa35c,3, 0x0fa380,8, 0x0fa400,5, 0x0fa41c,12, 0x0fa45c,3, 0x0fa480,8, 0x0fa500,5, 0x0fa51c,12, 0x0fa55c,3, 0x0fa580,8, 0x0fa600,5, 0x0fa61c,12, 0x0fa65c,3, 0x0fa680,8, 0x0fa700,5, 0x0fa71c,12, 0x0fa75c,3, 0x0fa780,8, 0x0fa800,5, 0x0fa81c,12, 0x0fa85c,3, 0x0fa880,8, 0x0fa900,5, 0x0fa91c,12, 0x0fa95c,3, 0x0fa980,8, 0x0faa00,5, 0x0faa1c,12, 0x0faa5c,3, 0x0faa80,8, 0x0fab00,5, 0x0fab1c,12, 0x0fab5c,3, 0x0fab80,8, 0x0fac00,5, 0x0fac1c,12, 0x0fac5c,3, 0x0fac80,8, 0x0fad00,5, 0x0fad1c,12, 0x0fad5c,3, 0x0fad80,8, 0x0fae00,5, 0x0fae1c,12, 0x0fae5c,3, 0x0fae80,8, 0x0faf00,5, 0x0faf1c,12, 0x0faf5c,3, 0x0faf80,8, 0x0fb000,5, 0x0fb01c,12, 0x0fb05c,3, 0x0fb080,8, 0x0fb100,5, 0x0fb11c,12, 0x0fb15c,3, 0x0fb180,8, 0x0fc000,5, 0x0fc01c,12, 0x0fc05c,3, 0x0fc080,8, 0x0fc100,5, 0x0fc11c,12, 0x0fc15c,3, 0x0fc180,8, 0x0fc200,5, 0x0fc21c,12, 0x0fc25c,3, 0x0fc280,8, 0x0fc300,5, 0x0fc31c,12, 0x0fc35c,3, 0x0fc380,8, 0x0fc400,5, 0x0fc41c,12, 0x0fc45c,3, 0x0fc480,8, 0x0fc500,5, 0x0fc51c,12, 0x0fc55c,3, 0x0fc580,8, 0x0fc600,5, 0x0fc61c,12, 0x0fc65c,3, 0x0fc680,8, 0x0fc700,5, 0x0fc71c,12, 0x0fc75c,3, 0x0fc780,8, 0x0fc800,5, 0x0fc81c,12, 0x0fc85c,3, 0x0fc880,8, 0x0fc900,5, 0x0fc91c,12, 0x0fc95c,3, 0x0fc980,8, 0x0fca00,5, 0x0fca1c,12, 0x0fca5c,3, 0x0fca80,8, 0x0fcb00,5, 0x0fcb1c,12, 0x0fcb5c,3, 0x0fcb80,8, 0x0fcc00,5, 0x0fcc1c,12, 0x0fcc5c,3, 0x0fcc80,8, 0x0fcd00,5, 0x0fcd1c,12, 0x0fcd5c,3, 0x0fcd80,8, 0x0fce00,5, 0x0fce1c,12, 0x0fce5c,3, 0x0fce80,8, 0x0fcf00,5, 0x0fcf1c,12, 0x0fcf5c,3, 0x0fcf80,8, 0x0fd000,5, 0x0fd01c,12, 0x0fd05c,3, 0x0fd080,8, 0x0fd100,5, 0x0fd11c,12, 0x0fd15c,3, 0x0fd180,8, 0x0fd200,5, 0x0fd21c,12, 0x0fd25c,3, 0x0fd280,8, 0x0fe000,1, 0x0fe014,1, 0x0fe01c,1, 0x0fe024,1, 0x0fe02c,1, 0x0fe204,1, 0x0fe2bc,81, 0x0fe404,3, 0x0fe414,1, 0x0fe41c,1, 0x101100,18, 0x101200,19, 0x101250,4, 0x101264,2, 0x101274,22, 0x1012d0,4, 0x1012e4,2, 0x1012f4,22, 0x101350,4, 0x101364,2, 0x101374,22, 0x1013d0,4, 0x1013e4,2, 0x1013f4,22, 0x101450,4, 0x101464,2, 0x101474,22, 0x1014d0,4, 0x1014e4,2, 0x1014f4,22, 0x101550,4, 0x101564,2, 0x101574,22, 0x1015d0,4, 0x1015e4,2, 0x1015f4,22, 0x101650,4, 0x101664,2, 0x101674,22, 0x1016d0,4, 0x1016e4,2, 0x1016f4,22, 0x101750,4, 0x101764,2, 0x101774,22, 0x1017d0,4, 0x1017e4,2, 0x1017f4,22, 0x101850,4, 0x101864,2, 0x101874,22, 0x1018d0,4, 0x1018e4,2, 0x1018f4,22, 0x101950,4, 0x101964,2, 0x101974,22, 0x1019d0,4, 0x1019e4,2, 0x1019f4,13, 0x101ab4,4, 0x101ac8,4, 0x101b00,6, 0x104000,4, 0x104014,2, 0x104020,3, 0x104030,4, 0x104044,6, 0x104060,3, 0x104080,4, 0x104094,2, 0x1040a0,3, 0x1040b0,4, 0x1040c4,6, 0x1040e0,3, 0x104100,4, 0x104114,2, 0x104120,3, 0x104130,4, 0x104144,6, 0x104160,3, 0x104180,4, 0x104194,2, 0x1041a0,3, 0x1041b0,4, 0x1041c4,6, 0x1041e0,3, 0x104200,4, 0x104214,2, 0x104220,3, 0x104230,4, 0x104244,6, 0x104260,3, 0x104280,4, 0x104294,2, 0x1042a0,3, 0x1042b0,4, 0x1042c4,6, 0x1042e0,3, 0x104300,4, 0x104314,2, 0x104320,3, 0x104330,4, 0x104344,6, 0x104360,3, 0x104380,4, 0x104394,2, 0x1043a0,3, 0x1043b0,4, 0x1043c4,6, 0x1043e0,3, 0x104400,4, 0x104414,2, 0x104420,3, 0x104430,4, 0x104444,6, 0x104460,3, 0x104480,4, 0x104494,2, 0x1044a0,3, 0x1044b0,4, 0x1044c4,6, 0x1044e0,3, 0x104500,4, 0x104514,2, 0x104520,3, 0x104530,4, 0x104544,6, 0x104560,3, 0x104580,4, 0x104594,2, 0x1045a0,3, 0x1045b0,4, 0x1045c4,6, 0x1045e0,3, 0x104600,4, 0x104614,2, 0x104620,3, 0x104630,4, 0x104644,6, 0x104660,3, 0x104680,4, 0x104694,2, 0x1046a0,3, 0x1046b0,4, 0x1046c4,6, 0x1046e0,3, 0x104700,4, 0x104714,2, 0x104720,3, 0x104730,4, 0x104744,6, 0x104760,3, 0x104780,4, 0x104794,2, 0x1047a0,3, 0x1047b0,4, 0x1047c4,6, 0x1047e0,3, 0x104800,8, 0x104880,17, 0x1048d0,1, 0x1048d8,1, 0x104bbc,22, 0x104c20,4, 0x104c40,5, 0x104c60,4, 0x104c80,5, 0x104ca0,4, 0x104cc0,5, 0x104ce0,4, 0x104d00,5, 0x104d20,4, 0x104d40,5, 0x104d60,4, 0x104d80,5, 0x104da0,4, 0x104dc0,5, 0x104de0,4, 0x104e00,5, 0x104e20,4, 0x104e60,1, 0x105000,3, 0x105010,5, 0x105204,1, 0x105214,5, 0x105300,3, 0x105310,3, 0x105320,3, 0x105330,3, 0x105340,3, 0x105350,3, 0x105360,3, 0x105370,3, 0x105380,3, 0x105390,3, 0x1053a0,3, 0x1053b0,3, 0x1053c0,3, 0x1053d0,3, 0x1053e0,3, 0x1053f0,3, 0x105480,2, 0x105490,5, 0x1054a8,5, 0x1054c0,3, 0x1054d0,3, 0x1054e0,3, 0x1054f0,3, 0x105500,35, 0x1055c8,9, 0x1055f0,2, 0x105600,32, 0x105700,2, 0x105800,64, 0x105a00,3, 0x105c04,1, 0x105c18,10, 0x105d04,1, 0x105d78,34, 0x105e04,1, 0x105e18,12, 0x106000,82, 0x106780,16, 0x106800,16, 0x106844,1, 0x106858,3, 0x106880,16, 0x1068c4,1, 0x1068d8,3, 0x106900,16, 0x106944,1, 0x106958,3, 0x106980,16, 0x1069c4,1, 0x1069d8,3, 0x106a00,16, 0x106a44,1, 0x106a58,3, 0x106a80,16, 0x106ac4,1, 0x106ad8,3, 0x106b00,16, 0x106b44,1, 0x106b58,3, 0x106b80,16, 0x106bc4,1, 0x106bd8,3, 0x106c00,16, 0x106c44,1, 0x106c58,3, 0x106c80,16, 0x106cc4,1, 0x106cd8,3, 0x106d00,16, 0x106d44,1, 0x106d58,3, 0x106d80,16, 0x106dc4,1, 0x106dd8,3, 0x106e00,16, 0x106e44,1, 0x106e58,3, 0x106e80,16, 0x106ec4,1, 0x106ed8,3, 0x106f00,16, 0x106f44,1, 0x106f58,3, 0x106f80,16, 0x106fc4,1, 0x106fd8,3, 0x108000,46, 0x108100,46, 0x108204,4, 0x108220,2, 0x108230,3, 0x108240,10, 0x108280,4, 0x1082e0,6, 0x108300,50, 0x1083d8,2, 0x1083e4,10, 0x108500,2, 0x10850c,3, 0x10851c,2, 0x108540,17, 0x109000,37, 0x10909c,6, 0x1090c0,24, 0x109550,3, 0x109560,3, 0x109580,3, 0x109590,3, 0x1095a0,3, 0x1095b0,3, 0x1095c0,3, 0x1095d0,3, 0x1095e0,3, 0x1095f0,3, 0x109600,3, 0x109610,3, 0x109620,3, 0x109630,3, 0x109640,3, 0x109650,3, 0x109660,3, 0x109670,3, 0x109680,64, 0x109800,529, 0x10a11c,1, 0x10a140,18, 0x10a200,1, 0x10a220,7, 0x10a240,1, 0x10a260,7, 0x10a280,1, 0x10a2a0,7, 0x10a2c0,1, 0x10a2e0,7, 0x10a300,1, 0x10a320,7, 0x10a340,1, 0x10a360,7, 0x10a380,1, 0x10a3a0,7, 0x10a3c0,1, 0x10a3e0,7, 0x10a400,1, 0x10a420,7, 0x10a440,1, 0x10a460,7, 0x10a480,1, 0x10a4a0,7, 0x10a4c0,1, 0x10a4e0,7, 0x10a500,1, 0x10a520,7, 0x10a540,1, 0x10a560,7, 0x10a580,1, 0x10a5a0,7, 0x10a5c0,1, 0x10a5e0,7, 0x10a680,19, 0x10a700,19, 0x10a780,19, 0x10a800,19, 0x10a880,19, 0x10a900,19, 0x10a980,19, 0x10aa00,19, 0x10aa80,19, 0x10ab00,19, 0x10ab80,19, 0x10ac00,19, 0x10ac80,19, 0x10ad00,19, 0x10ad80,19, 0x10ae00,19, 0x10ae80,19, 0x10af00,19, 0x10af80,19, 0x10b000,18, 0x10b04c,2, 0x10b680,19, 0x10b700,19, 0x10b800,19, 0x10b880,19, 0x10b900,19, 0x10b980,19, 0x10ba00,19, 0x10ba80,19, 0x10bb00,19, 0x10bb80,19, 0x10bc00,19, 0x10bc80,19, 0x10bd00,19, 0x10bd80,19, 0x10be00,19, 0x10be80,19, 0x10bf00,19, 0x10bf80,19, 0x10c000,1, 0x10c008,1, 0x10c010,1, 0x10c018,1, 0x10c020,1, 0x10c028,1, 0x10c030,1, 0x10c038,1, 0x10c040,1, 0x10c100,32, 0x10c200,1, 0x10c208,4, 0x10c21c,2, 0x10c228,5, 0x10c258,2, 0x10c264,7, 0x10c2d4,3, 0x10c2e4,7, 0x10c408,1, 0x10c410,7, 0x10c800,16, 0x10c880,16, 0x10c900,16, 0x10c980,16, 0x10ca00,16, 0x10ca80,16, 0x10cb00,16, 0x10cb80,16, 0x10cc00,16, 0x10cc80,16, 0x10cd00,16, 0x10cd80,16, 0x10ce00,16, 0x10ce80,16, 0x10cf00,16, 0x10cf80,16, 0x10d000,32, 0x10d200,43, 0x10d480,3, 0x10d500,5, 0x10d524,7, 0x10d544,7, 0x10d564,7, 0x10d590,1, 0x10d5a0,8, 0x10d704,7, 0x10d724,7, 0x10d744,7, 0x10d764,7, 0x10d784,7, 0x10d7a4,7, 0x10d7c4,7, 0x10d7e4,7, 0x10d804,7, 0x10d824,7, 0x10d844,7, 0x10d864,7, 0x10d884,7, 0x10d8a4,7, 0x10d8c4,7, 0x10d8e4,7, 0x10d904,7, 0x10d924,7, 0x10d944,7, 0x10d964,7, 0x10d984,7, 0x10d9a4,7, 0x10d9c4,7, 0x10d9e4,7, 0x10da04,7, 0x10da24,7, 0x10da44,7, 0x10da64,7, 0x10da84,7, 0x10daa4,7, 0x10dac4,7, 0x10dae4,8, 0x10db80,9, 0x10dbb0,1, 0x10dbc0,1, 0x10dbc8,8, 0x10dc00,14, 0x10dc40,7, 0x10dc60,7, 0x10dc80,7, 0x10dd00,2, 0x10dd0c,3, 0x10dd20,2, 0x10dd2c,3, 0x10dd40,2, 0x10dd4c,3, 0x10dd60,2, 0x10dd6c,3, 0x10dd80,2, 0x10dd8c,3, 0x10dda0,2, 0x10ddac,3, 0x10ddc0,2, 0x10ddcc,3, 0x10dde0,2, 0x10ddec,3, 0x10de00,2, 0x10de0c,3, 0x10de20,2, 0x10de2c,3, 0x10de40,2, 0x10de4c,3, 0x10de60,2, 0x10de6c,3, 0x10de80,2, 0x10de8c,3, 0x10dea0,2, 0x10deac,3, 0x10dec0,2, 0x10decc,3, 0x10dee0,2, 0x10deec,3, 0x10e100,10, 0x10e140,4, 0x10e158,1, 0x10e200,25, 0x10e280,1, 0x10e2a0,6, 0x10e300,25, 0x10e380,1, 0x10e3a0,6, 0x10e400,25, 0x10e480,1, 0x10e4a0,6, 0x10e500,25, 0x10e580,25, 0x10e600,25, 0x10e680,25, 0x10e700,25, 0x10e780,25, 0x10e800,25, 0x10e880,25, 0x10e900,25, 0x10e980,25, 0x10ea00,25, 0x10ea80,25, 0x10eb00,25, 0x10eb80,25, 0x10ec00,25, 0x10ec80,25, 0x10ed00,4, 0x10ed20,1, 0x110000,2, 0x110040,32, 0x110200,8, 0x110400,2, 0x110440,32, 0x110600,8, 0x110800,64, 0x111000,6, 0x111020,6, 0x111040,6, 0x111060,6, 0x111080,1, 0x111c00,7, 0x111c20,7, 0x111c40,7, 0x111c60,7, 0x111c80,7, 0x111ca0,7, 0x111cc0,7, 0x111ce0,7, 0x111d00,7, 0x111d20,7, 0x111d40,7, 0x111d60,7, 0x111d80,7, 0x111da0,7, 0x111dc0,7, 0x111de0,7, 0x111e00,2, 0x111e10,1, 0x112000,18, 0x11205c,6, 0x112080,18, 0x1120dc,6, 0x112100,18, 0x11215c,6, 0x112180,18, 0x1121dc,6, 0x112280,22, 0x1122e0,5, 0x112300,18, 0x11235c,6, 0x112800,18, 0x11285c,6, 0x112880,18, 0x1128dc,6, 0x112900,18, 0x11295c,6, 0x112980,18, 0x1129dc,6, 0x112a80,22, 0x112ae0,5, 0x112b00,18, 0x112b5c,6, 0x113000,21, 0x11305c,6, 0x113080,21, 0x1130dc,6, 0x113100,21, 0x11315c,6, 0x113180,21, 0x1131dc,6, 0x113200,21, 0x11325c,6, 0x113280,21, 0x1132dc,6, 0x113300,21, 0x11335c,6, 0x113380,21, 0x1133dc,6, 0x113f00,16, 0x113f5c,1, 0x113f70,3, 0x113f80,13, 0x113fc0,6, 0x113fe0,5, 0x114800,18, 0x114900,18, 0x114a00,18, 0x114b00,18, 0x114c00,18, 0x114d00,4, 0x115000,5, 0x115020,5, 0x115040,5, 0x115060,5, 0x115080,5, 0x1150a0,5, 0x1150c0,5, 0x1150e0,5, 0x115100,5, 0x115120,5, 0x115140,5, 0x115160,5, 0x115180,5, 0x1151a0,5, 0x1151c0,5, 0x1151e0,5, 0x115200,5, 0x115220,5, 0x115240,5, 0x115260,5, 0x115280,5, 0x1152a0,5, 0x1152c0,5, 0x1152e0,5, 0x115300,5, 0x115320,5, 0x115340,5, 0x115360,5, 0x115380,5, 0x1153a0,5, 0x1153c0,5, 0x1153e0,5, 0x115400,5, 0x115420,5, 0x115440,5, 0x115460,5, 0x115480,5, 0x1154a0,5, 0x1154c0,5, 0x1154e0,5, 0x115500,5, 0x115520,5, 0x115540,5, 0x115560,5, 0x115580,5, 0x1155a0,5, 0x1155c0,5, 0x1155e0,5, 0x115600,5, 0x115620,5, 0x115640,5, 0x115660,5, 0x115680,5, 0x1156a0,5, 0x1156c0,5, 0x1156e0,5, 0x115700,5, 0x115720,5, 0x115740,5, 0x115760,5, 0x115780,5, 0x1157a0,5, 0x1157c0,5, 0x1157e0,5, 0x115800,12, 0x115840,1, 0x115850,12, 0x115884,1, 0x1158c0,16, 0x116000,5, 0x116020,5, 0x116040,5, 0x116060,5, 0x116080,5, 0x1160a0,5, 0x1160c0,5, 0x1160e0,5, 0x116100,5, 0x116120,5, 0x116140,5, 0x116160,5, 0x116180,5, 0x1161a0,5, 0x1161c0,5, 0x1161e0,5, 0x116200,5, 0x116220,5, 0x116240,5, 0x116260,5, 0x116280,5, 0x1162a0,5, 0x1162c0,5, 0x1162e0,5, 0x116300,5, 0x116320,5, 0x116340,5, 0x116360,5, 0x116380,5, 0x1163a0,5, 0x1163c0,5, 0x1163e0,5, 0x116400,5, 0x116420,5, 0x116440,5, 0x116460,5, 0x116480,5, 0x1164a0,5, 0x1164c0,5, 0x1164e0,5, 0x116500,5, 0x116520,5, 0x116540,5, 0x116560,5, 0x116580,5, 0x1165a0,5, 0x1165c0,5, 0x1165e0,5, 0x116600,5, 0x116620,5, 0x116640,5, 0x116660,5, 0x116680,5, 0x1166a0,5, 0x1166c0,5, 0x1166e0,5, 0x116700,5, 0x116720,5, 0x116740,5, 0x116760,5, 0x116780,5, 0x1167a0,5, 0x1167c0,5, 0x1167e0,5, 0x116800,12, 0x116840,1, 0x116850,12, 0x116884,1, 0x1168c0,8, 0x11e000,19, 0x11ea00,10, 0x11ea80,3, 0x11fffc,1, 0x140010,10, 0x140040,7, 0x140064,6, 0x140080,5, 0x140100,11, 0x140130,7, 0x140180,16, 0x140210,10, 0x140240,7, 0x140264,6, 0x140280,5, 0x140300,11, 0x140330,7, 0x140380,16, 0x140410,10, 0x140440,7, 0x140464,6, 0x140480,5, 0x140500,11, 0x140530,7, 0x140580,16, 0x140610,10, 0x140640,7, 0x140664,6, 0x140680,5, 0x140700,11, 0x140730,7, 0x140780,16, 0x140810,10, 0x140840,7, 0x140864,6, 0x140880,5, 0x140900,11, 0x140930,7, 0x140980,16, 0x140a10,10, 0x140a40,7, 0x140a64,6, 0x140a80,5, 0x140b00,11, 0x140b30,7, 0x140b80,16, 0x140c10,10, 0x140c40,7, 0x140c64,6, 0x140c80,5, 0x140d00,11, 0x140d30,7, 0x140d80,16, 0x140e10,10, 0x140e40,7, 0x140e64,6, 0x140e80,5, 0x140f00,11, 0x140f30,7, 0x140f80,16, 0x141010,10, 0x141040,7, 0x141064,6, 0x141080,5, 0x141100,11, 0x141130,7, 0x141180,16, 0x141210,10, 0x141240,7, 0x141264,6, 0x141280,5, 0x141300,11, 0x141330,7, 0x141380,16, 0x141410,10, 0x141440,7, 0x141464,6, 0x141480,5, 0x141500,11, 0x141530,7, 0x141580,16, 0x141610,10, 0x141640,7, 0x141664,6, 0x141680,5, 0x141700,11, 0x141730,7, 0x141780,16, 0x141810,10, 0x141840,7, 0x141864,6, 0x141880,5, 0x141900,11, 0x141930,7, 0x141980,16, 0x141a10,10, 0x141a40,7, 0x141a64,6, 0x141a80,5, 0x141b00,11, 0x141b30,7, 0x141b80,16, 0x141c10,10, 0x141c40,7, 0x141c64,6, 0x141c80,5, 0x141d00,11, 0x141d30,7, 0x141d80,16, 0x141e10,10, 0x141e40,7, 0x141e64,6, 0x141e80,5, 0x141f00,11, 0x141f30,7, 0x141f80,16, 0x142000,26, 0x142088,15, 0x143000,2, 0x143010,11, 0x143040,3, 0x143ffc,26, 0x144080,25, 0x144100,25, 0x144180,25, 0x144200,25, 0x144280,25, 0x144300,25, 0x144380,25, 0x144400,25, 0x144480,25, 0x144500,25, 0x144580,25, 0x144600,25, 0x144680,25, 0x144700,25, 0x144780,25, 0x144800,25, 0x146000,19, 0x146a00,10, 0x146a80,3, 0x147000,11, 0x147030,7, 0x1470a0,2, 0x150000,8, 0x150024,10, 0x150050,22, 0x150100,8, 0x150124,10, 0x150150,22, 0x150200,8, 0x150224,10, 0x150250,22, 0x150300,8, 0x150324,10, 0x150350,22, 0x150400,8, 0x150424,10, 0x150450,22, 0x150500,8, 0x150524,10, 0x150550,22, 0x150600,8, 0x150624,10, 0x150650,22, 0x150700,8, 0x150724,10, 0x150750,22, 0x150800,8, 0x150824,10, 0x150850,22, 0x150904,1, 0x150914,10, 0x150948,11, 0x150980,1, 0x1509a0,6, 0x1509c0,2, 0x1509cc,2, 0x151000,8, 0x151024,10, 0x151050,22, 0x151100,8, 0x151124,10, 0x151150,22, 0x151200,8, 0x151224,10, 0x151250,22, 0x151300,8, 0x151324,10, 0x151350,22, 0x151400,8, 0x151424,10, 0x151450,22, 0x151500,8, 0x151524,10, 0x151550,22, 0x151600,8, 0x151624,10, 0x151650,22, 0x151700,8, 0x151724,10, 0x151750,22, 0x151800,8, 0x151824,10, 0x151850,22, 0x151904,1, 0x151914,10, 0x151948,11, 0x151980,1, 0x1519a0,6, 0x1519c0,2, 0x1519cc,2, 0x155000,72, 0x155200,72, 0x155400,72, 0x155600,72, 0x155800,72, 0x155a00,72, 0x155c00,72, 0x155e00,72, 0x156000,72, 0x156200,72, 0x156400,72, 0x156600,72, 0x156800,72, 0x156a00,72, 0x156c00,72, 0x156e00,72, 0x157000,17, 0x157048,9, 0x157070,3, 0x157080,1, 0x157090,13, 0x1570d0,1, 0x1570e0,6, 0x157100,17, 0x157148,9, 0x157170,3, 0x157180,1, 0x157190,13, 0x1571d0,1, 0x1571e0,6, 0x157200,17, 0x157248,9, 0x157270,3, 0x157280,1, 0x157290,13, 0x1572d0,1, 0x1572e0,6, 0x157300,17, 0x157348,9, 0x157370,3, 0x157380,1, 0x157390,13, 0x1573d0,1, 0x1573e0,6, 0x157400,17, 0x157448,9, 0x157470,3, 0x157480,1, 0x157490,13, 0x1574d0,1, 0x1574e0,6, 0x157500,17, 0x157548,9, 0x157570,3, 0x157580,1, 0x157590,13, 0x1575d0,1, 0x1575e0,6, 0x157600,17, 0x157648,9, 0x157670,3, 0x157680,1, 0x157690,13, 0x1576d0,1, 0x1576e0,6, 0x157700,17, 0x157748,9, 0x157770,3, 0x157780,1, 0x157790,13, 0x1577d0,1, 0x1577e0,6, 0x157800,17, 0x157848,9, 0x157870,3, 0x157880,1, 0x157890,13, 0x1578d0,1, 0x1578e0,6, 0x157900,17, 0x157948,9, 0x157970,3, 0x157980,1, 0x157990,13, 0x1579d0,1, 0x1579e0,6, 0x157a00,17, 0x157a48,9, 0x157a70,3, 0x157a80,1, 0x157a90,13, 0x157ad0,1, 0x157ae0,6, 0x157b00,17, 0x157b48,9, 0x157b70,3, 0x157b80,1, 0x157b90,13, 0x157bd0,1, 0x157be0,6, 0x157c00,17, 0x157c48,9, 0x157c70,3, 0x157c80,1, 0x157c90,13, 0x157cd0,1, 0x157ce0,6, 0x157d00,17, 0x157d48,9, 0x157d70,3, 0x157d80,1, 0x157d90,13, 0x157dd0,1, 0x157de0,6, 0x157e00,17, 0x157e48,9, 0x157e70,3, 0x157e80,1, 0x157e90,13, 0x157ed0,1, 0x157ee0,6, 0x157f00,17, 0x157f48,9, 0x157f70,3, 0x157f80,1, 0x157f90,13, 0x157fd0,1, 0x157fe0,6, 0x158000,7, 0x158020,3, 0x158030,7, 0x158050,1, 0x158080,7, 0x1580a0,3, 0x1580b0,7, 0x1580d0,1, 0x158100,7, 0x158120,3, 0x158130,7, 0x158150,1, 0x158180,7, 0x1581a0,3, 0x1581b0,7, 0x1581d0,1, 0x158200,7, 0x158220,3, 0x158230,7, 0x158250,1, 0x158280,7, 0x1582a0,3, 0x1582b0,7, 0x1582d0,1, 0x158300,7, 0x158320,3, 0x158330,7, 0x158350,1, 0x158380,7, 0x1583a0,3, 0x1583b0,7, 0x1583d0,1, 0x158400,7, 0x158420,3, 0x158430,7, 0x158450,1, 0x158480,7, 0x1584a0,3, 0x1584b0,7, 0x1584d0,1, 0x158500,7, 0x158520,3, 0x158530,7, 0x158550,1, 0x158580,7, 0x1585a0,3, 0x1585b0,7, 0x1585d0,1, 0x158600,7, 0x158620,3, 0x158630,7, 0x158650,1, 0x158680,7, 0x1586a0,3, 0x1586b0,7, 0x1586d0,1, 0x158700,7, 0x158720,3, 0x158730,7, 0x158750,1, 0x158780,7, 0x1587a0,3, 0x1587b0,7, 0x1587d0,1, 0x158800,20, 0x158880,20, 0x158900,20, 0x158980,20, 0x158a00,20, 0x158a80,20, 0x158b00,20, 0x158b80,20, 0x158c00,20, 0x158c80,20, 0x158d00,20, 0x158d80,20, 0x158e00,20, 0x158e80,20, 0x158f00,20, 0x158f80,20, 0x159000,8, 0x159040,3, 0x159050,2, 0x1590a0,2, 0x1590ac,1, 0x1590b8,1, 0x1590c4,2, 0x159200,48, 0x159400,96, 0x159600,5, 0x159620,5, 0x159640,5, 0x159660,5, 0x159680,5, 0x1596a0,5, 0x1596c0,5, 0x1596e0,5, 0x159700,29, 0x159778,3, 0x159800,80, 0x159944,1, 0x159950,6, 0x159980,98, 0x15a000,104, 0x15a200,3, 0x15a210,2, 0x15a21c,16, 0x15a264,1, 0x15a270,2, 0x15a280,3, 0x15a290,2, 0x15a29c,16, 0x15a2e4,1, 0x15a2f0,2, 0x15a300,3, 0x15a310,2, 0x15a31c,16, 0x15a364,1, 0x15a370,2, 0x15a380,3, 0x15a390,2, 0x15a39c,16, 0x15a3e4,1, 0x15a3f0,2, 0x15a400,3, 0x15a410,2, 0x15a41c,16, 0x15a464,1, 0x15a470,2, 0x15a480,3, 0x15a490,2, 0x15a49c,16, 0x15a4e4,1, 0x15a4f0,2, 0x15a500,3, 0x15a510,2, 0x15a51c,16, 0x15a564,1, 0x15a570,2, 0x15a580,3, 0x15a590,2, 0x15a59c,16, 0x15a5e4,1, 0x15a5f0,2, 0x15a600,3, 0x15a610,2, 0x15a61c,16, 0x15a664,1, 0x15a670,2, 0x15a680,3, 0x15a690,2, 0x15a69c,16, 0x15a6e4,1, 0x15a6f0,2, 0x15a700,3, 0x15a710,2, 0x15a71c,16, 0x15a764,1, 0x15a770,2, 0x15a780,3, 0x15a790,2, 0x15a79c,16, 0x15a7e4,1, 0x15a7f0,2, 0x15a800,3, 0x15a810,2, 0x15a81c,16, 0x15a864,1, 0x15a870,2, 0x15a880,3, 0x15a890,2, 0x15a89c,16, 0x15a8e4,1, 0x15a8f0,2, 0x15a900,3, 0x15a910,2, 0x15a91c,16, 0x15a964,1, 0x15a970,2, 0x15a980,3, 0x15a990,2, 0x15a99c,16, 0x15a9e4,1, 0x15a9f0,2, 0x15aa00,17, 0x15aa48,3, 0x15ab00,7, 0x15ab80,20, 0x15abe0,2, 0x15ac00,5, 0x15ac20,5, 0x15ac40,5, 0x15ac60,5, 0x15ac80,5, 0x15aca0,5, 0x15acc0,5, 0x15ace0,5, 0x15ad00,29, 0x15ad78,3, 0x15ae00,16, 0x15b000,97, 0x15b200,97, 0x15b400,97, 0x15b600,97, 0x15b800,97, 0x15ba00,97, 0x15bc00,97, 0x15be00,97, 0x15c000,97, 0x15c200,97, 0x15c400,97, 0x15c600,97, 0x15c800,97, 0x15ca00,97, 0x15cc00,97, 0x15ce00,97, 0x15f000,21, 0x15f060,5, 0x15f080,6, 0x15f0a0,5, 0x15f0c0,6, 0x15f100,21, 0x15f160,5, 0x15f180,6, 0x15f1a0,5, 0x15f1c0,6, 0x15f200,21, 0x15f260,5, 0x15f280,6, 0x15f2a0,5, 0x15f2c0,6, 0x15f300,21, 0x15f360,5, 0x15f380,6, 0x15f3a0,5, 0x15f3c0,6, 0x15f400,9, 0x15f448,7, 0x15f468,2, 0x15f474,9, 0x15f49c,2, 0x15f500,14, 0x15f540,14, 0x15f580,24, 0x15f600,19, 0x15f650,3, 0x15f660,25, 0x15f6c8,1, 0x15f6d0,2, 0x15f6e0,7, 0x15f700,1, 0x15f708,2, 0x15f7fc,129, 0x15fa04,9, 0x15fc04,1, 0x15fc24,21, 0x15fc80,16, 0x15fd00,8, 0x15fd40,3, 0x15fd50,3, 0x15fd60,3, 0x15fd80,11, 0x15fdb0,3, 0x15fdc0,29, 0x15fe3c,4, 0x15fe50,1, 0x15fe58,1, 0x15fe60,1, 0x15fe68,1, 0x15fe70,1, 0x15fe78,1, 0x15fe80,3, 0x15fe98,1, 0x15fea0,2, 0x15feb0,3, 0x15ff00,17, 0x15ff80,16, 0x160000,13, 0x160040,2, 0x160054,4, 0x160080,27, 0x160100,12, 0x160140,14, 0x160180,28, 0x160200,6, 0x160240,6, 0x16025c,3, 0x160280,5, 0x1602a0,8, 0x160400,14, 0x160440,14, 0x160480,14, 0x1604c0,14, 0x160540,3, 0x160600,7, 0x160620,14, 0x160680,5, 0x1606a0,7, 0x160800,13, 0x160840,2, 0x160854,4, 0x160880,27, 0x160900,12, 0x160940,14, 0x160980,28, 0x160a00,6, 0x160a40,6, 0x160a5c,3, 0x160a80,5, 0x160aa0,8, 0x160c00,14, 0x160c40,14, 0x160c80,14, 0x160cc0,14, 0x160d40,3, 0x160e00,7, 0x160e20,14, 0x160e80,5, 0x160ea0,7, 0x161000,13, 0x161040,2, 0x161054,4, 0x161080,27, 0x161100,12, 0x161140,14, 0x161180,28, 0x161200,6, 0x161240,6, 0x16125c,3, 0x161280,5, 0x1612a0,8, 0x161400,14, 0x161440,14, 0x161480,14, 0x1614c0,14, 0x161540,3, 0x161600,7, 0x161620,14, 0x161680,5, 0x1616a0,7, 0x161800,13, 0x161840,2, 0x161854,4, 0x161880,27, 0x161900,12, 0x161940,14, 0x161980,28, 0x161a00,6, 0x161a40,6, 0x161a5c,3, 0x161a80,5, 0x161aa0,8, 0x161c00,14, 0x161c40,14, 0x161c80,14, 0x161cc0,14, 0x161d40,3, 0x161e00,7, 0x161e20,14, 0x161e80,5, 0x161ea0,7, 0x162000,8, 0x162040,8, 0x162080,1, 0x162098,6, 0x162100,10, 0x162140,3, 0x162150,2, 0x162180,2, 0x162200,6, 0x162220,18, 0x162280,4, 0x162300,8, 0x162400,2, 0x162480,2, 0x163000,40, 0x163100,64, 0x164000,13, 0x164040,2, 0x164054,4, 0x164080,27, 0x164100,12, 0x164140,14, 0x164180,28, 0x164200,6, 0x164240,6, 0x16425c,3, 0x164280,5, 0x1642a0,8, 0x164400,14, 0x164440,14, 0x164480,14, 0x1644c0,14, 0x164540,3, 0x164600,7, 0x164620,14, 0x164680,5, 0x1646a0,7, 0x164800,13, 0x164840,2, 0x164854,4, 0x164880,27, 0x164900,12, 0x164940,14, 0x164980,28, 0x164a00,6, 0x164a40,6, 0x164a5c,3, 0x164a80,5, 0x164aa0,8, 0x164c00,14, 0x164c40,14, 0x164c80,14, 0x164cc0,14, 0x164d40,3, 0x164e00,7, 0x164e20,14, 0x164e80,5, 0x164ea0,7, 0x165000,13, 0x165040,2, 0x165054,4, 0x165080,27, 0x165100,12, 0x165140,14, 0x165180,28, 0x165200,6, 0x165240,6, 0x16525c,3, 0x165280,5, 0x1652a0,8, 0x165400,14, 0x165440,14, 0x165480,14, 0x1654c0,14, 0x165540,3, 0x165600,7, 0x165620,14, 0x165680,5, 0x1656a0,7, 0x165800,13, 0x165840,2, 0x165854,4, 0x165880,27, 0x165900,12, 0x165940,14, 0x165980,28, 0x165a00,6, 0x165a40,6, 0x165a5c,3, 0x165a80,5, 0x165aa0,8, 0x165c00,14, 0x165c40,14, 0x165c80,14, 0x165cc0,14, 0x165d40,3, 0x165e00,7, 0x165e20,14, 0x165e80,5, 0x165ea0,7, 0x166000,8, 0x166040,8, 0x166080,1, 0x166098,6, 0x166100,10, 0x166140,3, 0x166150,2, 0x166180,2, 0x166200,6, 0x166220,18, 0x166280,4, 0x166300,8, 0x166400,2, 0x166480,2, 0x167000,40, 0x167100,64, 0x168000,13, 0x168040,2, 0x168054,4, 0x168080,27, 0x168100,12, 0x168140,14, 0x168180,28, 0x168200,6, 0x168240,6, 0x16825c,3, 0x168280,5, 0x1682a0,8, 0x168400,14, 0x168440,14, 0x168480,14, 0x1684c0,14, 0x168540,3, 0x168600,7, 0x168620,14, 0x168680,5, 0x1686a0,7, 0x168800,13, 0x168840,2, 0x168854,4, 0x168880,27, 0x168900,12, 0x168940,14, 0x168980,28, 0x168a00,6, 0x168a40,6, 0x168a5c,3, 0x168a80,5, 0x168aa0,8, 0x168c00,14, 0x168c40,14, 0x168c80,14, 0x168cc0,14, 0x168d40,3, 0x168e00,7, 0x168e20,14, 0x168e80,5, 0x168ea0,7, 0x169000,13, 0x169040,2, 0x169054,4, 0x169080,27, 0x169100,12, 0x169140,14, 0x169180,28, 0x169200,6, 0x169240,6, 0x16925c,3, 0x169280,5, 0x1692a0,8, 0x169400,14, 0x169440,14, 0x169480,14, 0x1694c0,14, 0x169540,3, 0x169600,7, 0x169620,14, 0x169680,5, 0x1696a0,7, 0x169800,13, 0x169840,2, 0x169854,4, 0x169880,27, 0x169900,12, 0x169940,14, 0x169980,28, 0x169a00,6, 0x169a40,6, 0x169a5c,3, 0x169a80,5, 0x169aa0,8, 0x169c00,14, 0x169c40,14, 0x169c80,14, 0x169cc0,14, 0x169d40,3, 0x169e00,7, 0x169e20,14, 0x169e80,5, 0x169ea0,7, 0x16a000,8, 0x16a040,8, 0x16a080,1, 0x16a098,6, 0x16a100,10, 0x16a140,3, 0x16a150,2, 0x16a180,2, 0x16a200,6, 0x16a220,18, 0x16a280,4, 0x16a300,8, 0x16a400,2, 0x16a480,2, 0x16b000,40, 0x16b100,64, 0x16c000,13, 0x16c040,2, 0x16c054,4, 0x16c080,27, 0x16c100,12, 0x16c140,14, 0x16c180,28, 0x16c200,6, 0x16c240,6, 0x16c25c,3, 0x16c280,5, 0x16c2a0,8, 0x16c400,14, 0x16c440,14, 0x16c480,14, 0x16c4c0,14, 0x16c540,3, 0x16c600,7, 0x16c620,14, 0x16c680,5, 0x16c6a0,7, 0x16c800,13, 0x16c840,2, 0x16c854,4, 0x16c880,27, 0x16c900,12, 0x16c940,14, 0x16c980,28, 0x16ca00,6, 0x16ca40,6, 0x16ca5c,3, 0x16ca80,5, 0x16caa0,8, 0x16cc00,14, 0x16cc40,14, 0x16cc80,14, 0x16ccc0,14, 0x16cd40,3, 0x16ce00,7, 0x16ce20,14, 0x16ce80,5, 0x16cea0,7, 0x16d000,13, 0x16d040,2, 0x16d054,4, 0x16d080,27, 0x16d100,12, 0x16d140,14, 0x16d180,28, 0x16d200,6, 0x16d240,6, 0x16d25c,3, 0x16d280,5, 0x16d2a0,8, 0x16d400,14, 0x16d440,14, 0x16d480,14, 0x16d4c0,14, 0x16d540,3, 0x16d600,7, 0x16d620,14, 0x16d680,5, 0x16d6a0,7, 0x16d800,13, 0x16d840,2, 0x16d854,4, 0x16d880,27, 0x16d900,12, 0x16d940,14, 0x16d980,28, 0x16da00,6, 0x16da40,6, 0x16da5c,3, 0x16da80,5, 0x16daa0,8, 0x16dc00,14, 0x16dc40,14, 0x16dc80,14, 0x16dcc0,14, 0x16dd40,3, 0x16de00,7, 0x16de20,14, 0x16de80,5, 0x16dea0,7, 0x16e000,8, 0x16e040,8, 0x16e080,1, 0x16e098,6, 0x16e100,10, 0x16e140,3, 0x16e150,2, 0x16e180,2, 0x16e200,6, 0x16e220,18, 0x16e280,4, 0x16e300,8, 0x16e400,2, 0x16e480,2, 0x16f000,40, 0x16f100,64, 0x180000,3, 0x180014,1, 0x180020,3, 0x180034,1, 0x180040,3, 0x180054,1, 0x180060,3, 0x180074,1, 0x180080,3, 0x180094,1, 0x1800a0,3, 0x1800b4,1, 0x1800c0,3, 0x1800d4,1, 0x1800e0,3, 0x1800f4,1, 0x180100,3, 0x180114,1, 0x180d00,1, 0x180d08,10, 0x181000,18, 0x181100,11, 0x181140,10, 0x181180,10, 0x181200,1, 0x181240,9, 0x181280,9, 0x181300,1, 0x181340,9, 0x181380,9, 0x181404,1, 0x18141c,14, 0x181460,1, 0x181480,40, 0x181540,13, 0x181580,1, 0x181800,36, 0x181a00,6, 0x181a20,2, 0x181a2c,6, 0x181a50,18, 0x181aa4,1, 0x181ab0,9, 0x181adc,37, 0x181bf0,2, 0x181c00,20, 0x181cd8,43, 0x181e00,1, 0x182404,20, 0x182494,36, 0x182530,2, 0x182540,3, 0x182550,1, 0x182564,3, 0x182580,48, 0x182800,1, 0x182900,38, 0x182a00,20, 0x182a80,4, 0x182c00,2, 0x182cc8,2, 0x183000,6, 0x183020,6, 0x183080,4, 0x1830c0,12, 0x183100,2, 0x183184,1, 0x1831a4,25, 0x183284,1, 0x1832a4,26, 0x183310,1, 0x183384,1, 0x1833ac,21, 0x183404,1, 0x1834ec,70, 0x183610,2, 0x183620,4, 0x183800,3, 0x183810,9, 0x183900,2, 0x183910,6, 0x183940,9, 0x183980,9, 0x1839c0,9, 0x184004,1, 0x184020,13, 0x184084,1, 0x1840a0,13, 0x184104,1, 0x184120,13, 0x184184,1, 0x1841a0,13, 0x184204,1, 0x184220,13, 0x184284,1, 0x1842a0,13, 0x184304,1, 0x184320,13, 0x184384,1, 0x1843a0,13, 0x184404,1, 0x184420,13, 0x18501c,10, 0x185048,2, 0x185080,9, 0x185100,11, 0x185140,7, 0x185160,16, 0x185200,9, 0x185240,1, 0x185280,9, 0x1852c0,1, 0x185400,2, 0x185410,2, 0x185600,22, 0x185700,22, 0x185800,22, 0x186000,4, 0x186020,2, 0x18602c,2, 0x186044,5, 0x186060,1, 0x186104,1, 0x186170,40, 0x186220,2, 0x18622c,2, 0x186244,5, 0x186260,1, 0x186304,1, 0x186370,40, 0x186420,2, 0x18642c,2, 0x186444,5, 0x186460,1, 0x186504,1, 0x186570,40, 0x186620,2, 0x18662c,2, 0x186644,5, 0x186660,1, 0x186704,1, 0x186770,40, 0x186820,2, 0x18682c,2, 0x186844,5, 0x186860,1, 0x186904,1, 0x186970,40, 0x186a20,2, 0x186a2c,2, 0x186a44,5, 0x186a60,1, 0x186b04,1, 0x186b70,40, 0x186c20,2, 0x186c2c,2, 0x186c44,5, 0x186c60,1, 0x186d04,1, 0x186d70,40, 0x186e20,2, 0x186e2c,2, 0x186e44,5, 0x186e60,1, 0x186f04,1, 0x186f70,36, 0x188000,9, 0x188084,1, 0x1880a4,8, 0x188100,9, 0x188180,2, 0x188200,1, 0x18820c,7, 0x18822c,3, 0x188280,16, 0x188304,13, 0x188400,5, 0x188418,7, 0x188440,1, 0x188448,4, 0x188480,2, 0x188500,5, 0x188518,7, 0x188540,1, 0x188548,4, 0x188580,2, 0x188600,5, 0x188618,7, 0x188640,1, 0x188648,4, 0x188680,2, 0x188700,5, 0x188718,7, 0x188740,1, 0x188748,4, 0x188780,2, 0x188800,5, 0x188818,7, 0x188840,1, 0x188848,4, 0x188880,2, 0x188900,5, 0x188918,7, 0x188940,1, 0x188948,4, 0x188980,2, 0x188a00,5, 0x188a18,7, 0x188a40,1, 0x188a48,4, 0x188a80,2, 0x188b00,5, 0x188b18,7, 0x188b40,1, 0x188b48,4, 0x188b80,2, 0x188c00,5, 0x188c18,7, 0x188c40,1, 0x188c48,4, 0x188c80,2, 0x18c000,15, 0x18c0a0,17, 0x18c400,19, 0x18c480,19, 0x18d000,12, 0x18d800,19, 0x18d880,19, 0x18e000,4, 0x18e018,2, 0x18e100,7, 0x18e800,16, 0x18f000,276, 0x18f804,9, 0x18f880,1, 0x18f8a0,6, 0x18f8c0,4, 0x18f900,2, 0x18f910,2, 0x18f950,2, 0x18fa00,45, 0x18fb00,10, 0x18fb40,3, 0x18fb80,26, 0x18fc00,2, 0x18fd04,1, 0x18fd7c,34, 0x190000,464, 0x190ffc,4, 0x191020,3, 0x191200,32, 0x191300,32, 0x191400,80, 0x192000,5, 0x192024,3, 0x192100,9, 0x192204,15, 0x1922e0,33, 0x194000,5, 0x194020,5, 0x194040,5, 0x194060,5, 0x194080,5, 0x1940a0,5, 0x1940c0,5, 0x1940e0,5, 0x194100,5, 0x194120,5, 0x194140,5, 0x194160,5, 0x194180,5, 0x1941a0,5, 0x1941c0,5, 0x1941e0,5, 0x194200,5, 0x194220,5, 0x194240,5, 0x194260,5, 0x194280,5, 0x1942a0,5, 0x1942c0,5, 0x1942e0,5, 0x194300,5, 0x194320,5, 0x194340,5, 0x194360,5, 0x194380,5, 0x1943a0,5, 0x1943c0,5, 0x1943e0,5, 0x194400,5, 0x194420,5, 0x194440,5, 0x194460,5, 0x194480,5, 0x1944a0,5, 0x1944c0,5, 0x1944e0,5, 0x194500,5, 0x194520,5, 0x194540,5, 0x194560,5, 0x194580,5, 0x1945a0,5, 0x1945c0,5, 0x1945e0,5, 0x194600,5, 0x194620,5, 0x194640,5, 0x194660,5, 0x194680,5, 0x1946a0,5, 0x1946c0,5, 0x1946e0,5, 0x194700,5, 0x194720,5, 0x194740,5, 0x194760,5, 0x194780,5, 0x1947a0,5, 0x1947c0,5, 0x1947e0,5, 0x194800,5, 0x194820,5, 0x194840,5, 0x194860,5, 0x194880,5, 0x1948a0,5, 0x1948c0,5, 0x1948e0,5, 0x194900,5, 0x194920,5, 0x194940,5, 0x194960,5, 0x194980,5, 0x1949a0,5, 0x1949c0,5, 0x1949e0,5, 0x194a00,5, 0x194a20,5, 0x194a40,5, 0x194a60,5, 0x194a80,5, 0x194aa0,5, 0x194ac0,5, 0x194ae0,5, 0x194b00,5, 0x194b20,5, 0x194b40,5, 0x194b60,5, 0x194b80,5, 0x194ba0,5, 0x194bc0,5, 0x194be0,5, 0x194c00,5, 0x194c20,5, 0x194c40,5, 0x194c60,5, 0x194c80,5, 0x194ca0,5, 0x194cc0,5, 0x194ce0,5, 0x194d00,5, 0x194d20,5, 0x194d40,5, 0x194d60,5, 0x194d80,5, 0x194da0,5, 0x194dc0,5, 0x194de0,5, 0x194e00,5, 0x194e20,5, 0x194e40,5, 0x194e60,5, 0x194f00,2, 0x194f10,2, 0x194ffc,1, 0x196000,8, 0x196080,64, 0x197000,99, 0x197280,19, 0x197300,11, 0x197330,3, 0x197380,8, 0x1973c8,8, 0x197400,7, 0x197420,7, 0x197440,7, 0x197460,7, 0x197480,7, 0x1974a0,23, 0x197500,7, 0x197520,7, 0x197540,14, 0x197580,6, 0x1975a0,6, 0x1975c0,7, 0x1975e0,6, 0x197600,7, 0x197620,10, 0x19764c,2, 0x197800,3, 0x197824,5, 0x197844,5, 0x197864,5, 0x197884,7, 0x1978a4,7, 0x197a00,9, 0x198000,25, 0x198080,1, 0x1980a0,6, 0x198100,25, 0x198180,1, 0x1981a0,6, 0x198200,25, 0x198280,1, 0x1982a0,6, 0x198300,25, 0x198380,1, 0x1983a0,6, 0x198400,25, 0x198480,1, 0x1984a0,6, 0x198500,25, 0x198580,1, 0x1985a0,6, 0x198600,25, 0x198680,1, 0x1986a0,6, 0x198700,25, 0x198780,1, 0x1987a0,6, 0x198800,25, 0x198880,1, 0x1988a0,6, 0x198900,25, 0x198980,1, 0x1989a0,6, 0x199000,19, 0x199a00,10, 0x199a80,3, 0x19b000,1, 0x19b008,2, 0x19b014,2, 0x19b020,3, 0x19b030,1, 0x19b038,3, 0x19b050,1, 0x19c000,4, 0x19d000,5, 0x19d020,5, 0x19d040,5, 0x19d060,5, 0x19d080,5, 0x19d0a0,5, 0x19d0c0,5, 0x19d0e0,5, 0x19d100,5, 0x19d120,5, 0x19d140,5, 0x19d160,5, 0x19d180,5, 0x19d1a0,5, 0x19d1c0,5, 0x19d1e0,5, 0x19d200,5, 0x19d220,5, 0x19d240,5, 0x19d260,5, 0x19d280,5, 0x19d2a0,5, 0x19d2c0,5, 0x19d2e0,5, 0x19d300,5, 0x19d320,5, 0x19d340,5, 0x19d360,5, 0x19d380,5, 0x19d3a0,5, 0x19d3c0,5, 0x19d3e0,5, 0x19d400,5, 0x19d420,5, 0x19d440,5, 0x19d460,5, 0x19d480,5, 0x19d4a0,5, 0x19d4c0,5, 0x19d4e0,5, 0x19d500,5, 0x19d520,5, 0x19d540,5, 0x19d560,5, 0x19d580,5, 0x19d5a0,5, 0x19d5c0,5, 0x19d5e0,5, 0x19d600,5, 0x19d620,5, 0x19d640,5, 0x19d660,5, 0x19d680,5, 0x19d6a0,5, 0x19d6c0,5, 0x19d6e0,5, 0x19d700,5, 0x19d720,5, 0x19d740,5, 0x19d760,5, 0x19d780,5, 0x19d7a0,5, 0x19d7c0,5, 0x19d7e0,5, 0x19d800,12, 0x19d840,1, 0x19d850,12, 0x19d884,1, 0x19d8c0,10, 0x19d8f0,1, 0x19d8f8,2, 0x19e000,5, 0x19e020,5, 0x19e040,5, 0x19e060,5, 0x19e080,5, 0x19e0a0,5, 0x19e0c0,5, 0x19e0e0,5, 0x19e100,5, 0x19e120,5, 0x19e140,5, 0x19e160,5, 0x19e180,5, 0x19e1a0,5, 0x19e1c0,5, 0x19e1e0,5, 0x19e200,5, 0x19e220,5, 0x19e240,5, 0x19e260,5, 0x19e280,5, 0x19e2a0,5, 0x19e2c0,5, 0x19e2e0,5, 0x19e300,5, 0x19e320,5, 0x19e340,5, 0x19e360,5, 0x19e380,5, 0x19e3a0,5, 0x19e3c0,5, 0x19e3e0,5, 0x19e400,5, 0x19e420,5, 0x19e440,5, 0x19e460,5, 0x19e480,5, 0x19e4a0,5, 0x19e4c0,5, 0x19e4e0,5, 0x19e500,5, 0x19e520,5, 0x19e540,5, 0x19e560,5, 0x19e580,5, 0x19e5a0,5, 0x19e5c0,5, 0x19e5e0,5, 0x19e600,5, 0x19e620,5, 0x19e640,5, 0x19e660,5, 0x19e680,5, 0x19e6a0,5, 0x19e6c0,5, 0x19e6e0,5, 0x19e700,5, 0x19e720,5, 0x19e740,5, 0x19e760,5, 0x19e780,5, 0x19e7a0,5, 0x19e7c0,5, 0x19e7e0,5, 0x19e800,12, 0x19e840,1, 0x19e850,12, 0x19e884,1, 0x19e8c0,8, 0x19f000,1, 0x1a0000,4, 0x1a0014,1, 0x1a0020,3, 0x1a0030,3, 0x1a0040,13, 0x1a0078,4, 0x1a009c,29, 0x1a0114,1, 0x1a0120,3, 0x1a0130,3, 0x1a0140,13, 0x1a0178,4, 0x1a019c,29, 0x1a0214,1, 0x1a0220,3, 0x1a0230,3, 0x1a0240,13, 0x1a0278,4, 0x1a029c,29, 0x1a0314,1, 0x1a0320,3, 0x1a0330,3, 0x1a0340,13, 0x1a0378,4, 0x1a039c,29, 0x1a0420,2, 0x1a042c,2, 0x1a0440,4, 0x1a0460,2, 0x1a046c,2, 0x1a0480,4, 0x1a04a0,2, 0x1a04ac,2, 0x1a04c0,4, 0x1a04e0,2, 0x1a04ec,2, 0x1a0500,2, 0x1a050c,4, 0x1a0520,2, 0x1a052c,4, 0x1a0540,2, 0x1a054c,4, 0x1a0560,2, 0x1a056c,4, 0x1a05c0,1, 0x1a0600,16, 0x1a0800,18, 0x1a0880,13, 0x1a08f0,3, 0x1a0900,18, 0x1a0980,13, 0x1a09f0,3, 0x1a0a00,18, 0x1a0a80,13, 0x1a0af0,3, 0x1a0b00,18, 0x1a0b80,13, 0x1a0bf0,3, 0x1a0c00,30, 0x1a0c80,30, 0x1a0d00,30, 0x1a0d80,30, 0x1a0e00,4, 0x1a0e20,4, 0x1a0e40,4, 0x1a0e60,4, 0x1a0e80,37, 0x1a0f20,5, 0x1a0f40,5, 0x1a0f60,5, 0x1a1000,12, 0x1a1200,1, 0x1a1208,6, 0x1a1228,9, 0x1a1280,1, 0x1a1288,6, 0x1a12a8,9, 0x1a1300,1, 0x1a1308,6, 0x1a1328,9, 0x1a1380,1, 0x1a1388,6, 0x1a13a8,9, 0x1a1400,4, 0x1a1420,4, 0x1a1440,6, 0x1a1480,4, 0x1a14a0,4, 0x1a14c0,6, 0x1a1500,4, 0x1a1520,4, 0x1a1540,6, 0x1a1580,4, 0x1a15a0,4, 0x1a15c0,6, 0x1a1600,71, 0x1a1720,7, 0x1a1740,7, 0x1a1760,7, 0x1a1780,4, 0x1a179c,11, 0x1a17d0,2, 0x1a17e0,2, 0x1a17f0,2, 0x1a1800,7, 0x1a1820,7, 0x1a1840,7, 0x1a1860,7, 0x1a18c0,64, 0x1a1aa0,2, 0x1a1ac0,8, 0x1a2000,7, 0x1a2020,4, 0x1a2040,4, 0x1a2060,7, 0x1a2080,7, 0x1a20a0,4, 0x1a20c0,4, 0x1a20e0,7, 0x1a2100,7, 0x1a2120,4, 0x1a2140,4, 0x1a2160,7, 0x1a2180,7, 0x1a21a0,4, 0x1a21c0,4, 0x1a21e0,7, 0x1a2200,19, 0x1a2280,19, 0x1a2300,19, 0x1a2380,19, 0x1a2400,14, 0x1a243c,9, 0x1a2464,14, 0x1a24a0,2, 0x1a24ac,2, 0x1a2500,14, 0x1a253c,9, 0x1a2564,14, 0x1a25a0,2, 0x1a25ac,2, 0x1a2600,14, 0x1a263c,9, 0x1a2664,14, 0x1a26a0,2, 0x1a26ac,2, 0x1a2700,14, 0x1a273c,9, 0x1a2764,14, 0x1a27a0,2, 0x1a27ac,2, 0x1a2800,19, 0x1a2880,19, 0x1a2900,19, 0x1a2980,19, 0x1a2a10,2, 0x1a2a1c,1, 0x1a2a50,2, 0x1a2a5c,1, 0x1a2a90,2, 0x1a2a9c,1, 0x1a2ad0,2, 0x1a2adc,1, 0x1a2b00,1, 0x1a2b20,1, 0x1a2b28,4, 0x1a2b40,1, 0x1a2b60,1, 0x1a2b68,4, 0x1a2b80,1, 0x1a2ba0,1, 0x1a2ba8,4, 0x1a2bc0,1, 0x1a2be0,1, 0x1a2be8,4, 0x1a2c00,7, 0x1a2c20,1, 0x1a2c54,18, 0x1a2ca0,1, 0x1a2cd4,18, 0x1a2d20,1, 0x1a2d54,18, 0x1a2da0,1, 0x1a2dd4,12, 0x1a2e08,6, 0x1a3000,32, 0x1a3100,7, 0x1a3120,7, 0x1a3140,7, 0x1a3160,7, 0x1a3180,3, 0x1a4000,4, 0x1a4014,1, 0x1a4020,3, 0x1a4030,3, 0x1a4040,13, 0x1a4078,4, 0x1a409c,29, 0x1a4114,1, 0x1a4120,3, 0x1a4130,3, 0x1a4140,13, 0x1a4178,4, 0x1a419c,29, 0x1a4214,1, 0x1a4220,3, 0x1a4230,3, 0x1a4240,13, 0x1a4278,4, 0x1a429c,29, 0x1a4314,1, 0x1a4320,3, 0x1a4330,3, 0x1a4340,13, 0x1a4378,4, 0x1a439c,29, 0x1a4420,2, 0x1a442c,2, 0x1a4440,4, 0x1a4460,2, 0x1a446c,2, 0x1a4480,4, 0x1a44a0,2, 0x1a44ac,2, 0x1a44c0,4, 0x1a44e0,2, 0x1a44ec,2, 0x1a4500,2, 0x1a450c,4, 0x1a4520,2, 0x1a452c,4, 0x1a4540,2, 0x1a454c,4, 0x1a4560,2, 0x1a456c,4, 0x1a45c0,1, 0x1a4600,16, 0x1a4800,18, 0x1a4880,13, 0x1a48f0,3, 0x1a4900,18, 0x1a4980,13, 0x1a49f0,3, 0x1a4a00,18, 0x1a4a80,13, 0x1a4af0,3, 0x1a4b00,18, 0x1a4b80,13, 0x1a4bf0,3, 0x1a4c00,30, 0x1a4c80,30, 0x1a4d00,30, 0x1a4d80,30, 0x1a4e00,4, 0x1a4e20,4, 0x1a4e40,4, 0x1a4e60,4, 0x1a4e80,37, 0x1a4f20,5, 0x1a4f40,5, 0x1a4f60,5, 0x1a5000,12, 0x1a5200,1, 0x1a5208,6, 0x1a5228,9, 0x1a5280,1, 0x1a5288,6, 0x1a52a8,9, 0x1a5300,1, 0x1a5308,6, 0x1a5328,9, 0x1a5380,1, 0x1a5388,6, 0x1a53a8,9, 0x1a5400,4, 0x1a5420,4, 0x1a5440,6, 0x1a5480,4, 0x1a54a0,4, 0x1a54c0,6, 0x1a5500,4, 0x1a5520,4, 0x1a5540,6, 0x1a5580,4, 0x1a55a0,4, 0x1a55c0,6, 0x1a5600,71, 0x1a5720,7, 0x1a5740,7, 0x1a5760,7, 0x1a5780,4, 0x1a579c,11, 0x1a57d0,2, 0x1a57e0,2, 0x1a57f0,2, 0x1a5800,7, 0x1a5820,7, 0x1a5840,7, 0x1a5860,7, 0x1a58c0,64, 0x1a5aa0,2, 0x1a5ac0,8, 0x1a6000,7, 0x1a6020,4, 0x1a6040,4, 0x1a6060,7, 0x1a6080,7, 0x1a60a0,4, 0x1a60c0,4, 0x1a60e0,7, 0x1a6100,7, 0x1a6120,4, 0x1a6140,4, 0x1a6160,7, 0x1a6180,7, 0x1a61a0,4, 0x1a61c0,4, 0x1a61e0,7, 0x1a6200,19, 0x1a6280,19, 0x1a6300,19, 0x1a6380,19, 0x1a6400,14, 0x1a643c,9, 0x1a6464,14, 0x1a64a0,2, 0x1a64ac,2, 0x1a6500,14, 0x1a653c,9, 0x1a6564,14, 0x1a65a0,2, 0x1a65ac,2, 0x1a6600,14, 0x1a663c,9, 0x1a6664,14, 0x1a66a0,2, 0x1a66ac,2, 0x1a6700,14, 0x1a673c,9, 0x1a6764,14, 0x1a67a0,2, 0x1a67ac,2, 0x1a6800,19, 0x1a6880,19, 0x1a6900,19, 0x1a6980,19, 0x1a6a10,2, 0x1a6a1c,1, 0x1a6a50,2, 0x1a6a5c,1, 0x1a6a90,2, 0x1a6a9c,1, 0x1a6ad0,2, 0x1a6adc,1, 0x1a6b00,1, 0x1a6b20,1, 0x1a6b28,4, 0x1a6b40,1, 0x1a6b60,1, 0x1a6b68,4, 0x1a6b80,1, 0x1a6ba0,1, 0x1a6ba8,4, 0x1a6bc0,1, 0x1a6be0,1, 0x1a6be8,4, 0x1a6c00,7, 0x1a6c20,1, 0x1a6c54,18, 0x1a6ca0,1, 0x1a6cd4,18, 0x1a6d20,1, 0x1a6d54,18, 0x1a6da0,1, 0x1a6dd4,12, 0x1a6e08,6, 0x1a7000,32, 0x1a7100,7, 0x1a7120,7, 0x1a7140,7, 0x1a7160,7, 0x1a7180,3, 0x1a8000,21, 0x1ac000,16, 0x1ac080,11, 0x1ac100,11, 0x1ac204,1, 0x1ac224,21, 0x1ac280,16, 0x1ac300,11, 0x1ac340,11, 0x1ac800,21, 0x1ac860,5, 0x1ac880,6, 0x1ac8a0,5, 0x1ac8c0,6, 0x1ac900,21, 0x1ac960,5, 0x1ac980,6, 0x1ac9a0,5, 0x1ac9c0,6, 0x1aca00,21, 0x1aca60,5, 0x1aca80,6, 0x1acaa0,5, 0x1acac0,6, 0x1acb00,21, 0x1acb60,5, 0x1acb80,6, 0x1acba0,5, 0x1acbc0,6, 0x1acc00,9, 0x1acc48,7, 0x1acc68,2, 0x1acc74,9, 0x1acc9c,2, 0x1acd00,14, 0x1acd40,14, 0x1acd80,24, 0x1ace00,19, 0x1ace50,3, 0x1ace60,25, 0x1acec8,1, 0x1aced0,2, 0x1acee0,7, 0x1acf00,1, 0x1acf08,2, 0x1acffc,20, 0x1ad050,22, 0x1ad100,19, 0x1ad150,22, 0x1ad200,19, 0x1ad250,22, 0x1ad300,19, 0x1ad350,22, 0x1ad400,19, 0x1ad450,22, 0x1ad500,19, 0x1ad550,22, 0x1ad600,19, 0x1ad650,22, 0x1ad700,19, 0x1ad750,22, 0x1ad800,19, 0x1ad850,22, 0x1ad904,1, 0x1ad914,10, 0x1ad948,11, 0x1ad980,1, 0x1ad9a0,6, 0x1ad9c0,2, 0x1ad9cc,2, 0x1ae000,35, 0x1aea00,10, 0x1aea80,3, 0x1aeac0,1, 0x1af000,1, 0x1af008,3, 0x1af038,1, 0x1af044,1, 0x1af050,2, 0x1af060,8, 0x1af100,13, 0x1af140,19, 0x1af190,5, 0x1b0000,13, 0x1b0040,2, 0x1b0054,4, 0x1b0080,27, 0x1b0100,12, 0x1b0140,14, 0x1b0180,28, 0x1b0200,6, 0x1b0240,6, 0x1b025c,3, 0x1b0280,5, 0x1b02a0,8, 0x1b0400,14, 0x1b0440,14, 0x1b0480,14, 0x1b04c0,14, 0x1b0540,3, 0x1b0600,7, 0x1b0620,14, 0x1b0680,5, 0x1b06a0,7, 0x1b0800,13, 0x1b0840,2, 0x1b0854,4, 0x1b0880,27, 0x1b0900,12, 0x1b0940,14, 0x1b0980,28, 0x1b0a00,6, 0x1b0a40,6, 0x1b0a5c,3, 0x1b0a80,5, 0x1b0aa0,8, 0x1b0c00,14, 0x1b0c40,14, 0x1b0c80,14, 0x1b0cc0,14, 0x1b0d40,3, 0x1b0e00,7, 0x1b0e20,14, 0x1b0e80,5, 0x1b0ea0,7, 0x1b1000,13, 0x1b1040,2, 0x1b1054,4, 0x1b1080,27, 0x1b1100,12, 0x1b1140,14, 0x1b1180,28, 0x1b1200,6, 0x1b1240,6, 0x1b125c,3, 0x1b1280,5, 0x1b12a0,8, 0x1b1400,14, 0x1b1440,14, 0x1b1480,14, 0x1b14c0,14, 0x1b1540,3, 0x1b1600,7, 0x1b1620,14, 0x1b1680,5, 0x1b16a0,7, 0x1b1800,13, 0x1b1840,2, 0x1b1854,4, 0x1b1880,27, 0x1b1900,12, 0x1b1940,14, 0x1b1980,28, 0x1b1a00,6, 0x1b1a40,6, 0x1b1a5c,3, 0x1b1a80,5, 0x1b1aa0,8, 0x1b1c00,14, 0x1b1c40,14, 0x1b1c80,14, 0x1b1cc0,14, 0x1b1d40,3, 0x1b1e00,7, 0x1b1e20,14, 0x1b1e80,5, 0x1b1ea0,7, 0x1b2000,8, 0x1b2040,8, 0x1b2080,1, 0x1b2098,6, 0x1b2100,10, 0x1b2140,3, 0x1b2150,2, 0x1b2180,2, 0x1b2200,6, 0x1b2220,18, 0x1b2280,4, 0x1b2300,8, 0x1b2400,2, 0x1b2480,2, 0x1b3000,40, 0x1b3100,64, 0x1b4000,13, 0x1b4040,2, 0x1b4054,4, 0x1b4080,27, 0x1b4100,12, 0x1b4140,14, 0x1b4180,28, 0x1b4200,6, 0x1b4240,6, 0x1b425c,3, 0x1b4280,5, 0x1b42a0,8, 0x1b4400,14, 0x1b4440,14, 0x1b4480,14, 0x1b44c0,14, 0x1b4540,3, 0x1b4600,7, 0x1b4620,14, 0x1b4680,5, 0x1b46a0,7, 0x1b4800,13, 0x1b4840,2, 0x1b4854,4, 0x1b4880,27, 0x1b4900,12, 0x1b4940,14, 0x1b4980,28, 0x1b4a00,6, 0x1b4a40,6, 0x1b4a5c,3, 0x1b4a80,5, 0x1b4aa0,8, 0x1b4c00,14, 0x1b4c40,14, 0x1b4c80,14, 0x1b4cc0,14, 0x1b4d40,3, 0x1b4e00,7, 0x1b4e20,14, 0x1b4e80,5, 0x1b4ea0,7, 0x1b5000,13, 0x1b5040,2, 0x1b5054,4, 0x1b5080,27, 0x1b5100,12, 0x1b5140,14, 0x1b5180,28, 0x1b5200,6, 0x1b5240,6, 0x1b525c,3, 0x1b5280,5, 0x1b52a0,8, 0x1b5400,14, 0x1b5440,14, 0x1b5480,14, 0x1b54c0,14, 0x1b5540,3, 0x1b5600,7, 0x1b5620,14, 0x1b5680,5, 0x1b56a0,7, 0x1b5800,13, 0x1b5840,2, 0x1b5854,4, 0x1b5880,27, 0x1b5900,12, 0x1b5940,14, 0x1b5980,28, 0x1b5a00,6, 0x1b5a40,6, 0x1b5a5c,3, 0x1b5a80,5, 0x1b5aa0,8, 0x1b5c00,14, 0x1b5c40,14, 0x1b5c80,14, 0x1b5cc0,14, 0x1b5d40,3, 0x1b5e00,7, 0x1b5e20,14, 0x1b5e80,5, 0x1b5ea0,7, 0x1b6000,8, 0x1b6040,8, 0x1b6080,1, 0x1b6098,6, 0x1b6100,10, 0x1b6140,3, 0x1b6150,2, 0x1b6180,2, 0x1b6200,6, 0x1b6220,18, 0x1b6280,4, 0x1b6300,8, 0x1b6400,2, 0x1b6480,2, 0x1b7000,40, 0x1b7100,64, 0x1c0000,11, 0x1c0040,16, 0x1c0200,7, 0x1c0220,6, 0x1c0240,7, 0x1c0260,6, 0x1c0280,6, 0x1c02a0,2, 0x1c02ac,2, 0x1c02c0,7, 0x1c02e0,7, 0x1c0300,2, 0x1c030c,2, 0x1c0320,6, 0x1c0400,2, 0x1c1000,19, 0x1c1a00,10, 0x1c1a80,3, 0x1c2000,25, 0x1c2070,6, 0x1c208c,1, 0x1c2094,1, 0x1c209c,8, 0x1c2104,23, 0x1c2180,7, 0x1c21a0,6, 0x1c21c0,7, 0x1c21e0,6, 0x1c2200,4, 0x1c2220,4, 0x1c2240,11, 0x1c2270,32, 0x1c2300,24, 0x1c2380,20, 0x1c2400,61, 0x1c2500,25, 0x1c2568,4, 0x1c2580,2, 0x1c25a0,1, 0x1c25c0,11, 0x1c2600,9, 0x1c2680,22, 0x1c2700,17, 0x1c2800,11, 0x1c2a00,25, 0x1c2a80,1, 0x1c2a88,8, 0x1c2ac0,6, 0x1c2ae0,1, 0x1c2ae8,2, 0x1c2b04,4, 0x1c3000,650, 0x1c4000,25, 0x1c4070,6, 0x1c408c,1, 0x1c4094,1, 0x1c409c,8, 0x1c4104,23, 0x1c4180,7, 0x1c41a0,6, 0x1c41c0,7, 0x1c41e0,6, 0x1c4200,4, 0x1c4220,4, 0x1c4240,11, 0x1c4270,32, 0x1c4300,24, 0x1c4380,20, 0x1c4400,61, 0x1c4500,25, 0x1c4568,4, 0x1c4580,2, 0x1c45a0,1, 0x1c45c0,11, 0x1c4600,9, 0x1c4680,22, 0x1c4700,17, 0x1c4800,11, 0x1c4a00,25, 0x1c4a80,1, 0x1c4a88,8, 0x1c4ac0,6, 0x1c4ae0,1, 0x1c4ae8,2, 0x1c4b04,4, 0x1c5000,650, 0x1ca000,7, 0x1ca048,8, 0x1ca080,8, 0x1ca100,7, 0x1ca148,8, 0x1ca180,8, 0x1ca200,2, 0x1d0000,19, 0x1d0a00,10, 0x1d0a80,3, 0x1d1000,2, 0x1d100c,4, 0x1d1028,3, 0x1d1038,4, 0x1d1050,2, 0x1d1080,4, 0x1d1098,7, 0x1d1120,4, 0x1d1200,4, 0x1d1214,5, 0x1d1240,4, 0x1d1254,5, 0x1d1280,8, 0x1d12c0,5, 0x1d1300,2, 0x1d130c,3, 0x1d1400,24, 0x1d1464,2, 0x1d1470,3, 0x1d1500,25, 0x1d15c0,8, 0x1d15e8,5, 0x1d1600,5, 0x1d1618,1, 0x1d1620,1, 0x1d1628,1, 0x1d1630,2, 0x1d1640,2, 0x1d1650,2, 0x1d1690,2, 0x1d1740,2, 0x1d1760,6, 0x1d1780,6, 0x1d17a0,6, 0x1d17c0,6, 0x1d17e0,1, 0x1d1800,19, 0x1d1880,2, 0x1d18b0,2, 0x1d18c0,2, 0x1d2040,3, 0x1d2054,2, 0x1d2064,2, 0x1d2098,2, 0x1d20a8,2, 0x1d20b8,2, 0x1d20ec,2, 0x1d20fc,2, 0x1d210c,2, 0x1d2140,2, 0x1d2150,2, 0x1d2160,2, 0x1d2170,2, 0x1d2194,2, 0x1d21a4,2, 0x1d21b4,2, 0x1d21c4,2, 0x1d21e8,2, 0x1d21f8,2, 0x1d2208,2, 0x1d2218,2, 0x1d223c,2, 0x1d224c,2, 0x1d225c,7, 0x1d2400,1, 0x1d8000,1, 0x1d8008,4, 0x1d8020,1, 0x1d8030,5, 0x1d8080,8, 0x1d80c0,1, 0x1d8100,4, 0x1d8180,18, 0x1d8200,4, 0x1d8220,5, 0x1d8240,14, 0x1d8280,6, 0x1d82a0,2, 0x1d82ac,2, 0x1d82c0,2, 0x1d82cc,2, 0x1d8300,4, 0x1d8340,9, 0x1d8400,18, 0x1d8480,18, 0x1d8500,5, 0x1d8520,5, 0x1d8540,18, 0x1d8590,2, 0x1d8600,9, 0x1d8640,9, 0x1d8e00,13, 0x1d8e80,1, 0x1d8e88,8, 0x1d8ec0,6, 0x1d8ee0,1, 0x1d8ee8,2, 0x1d8f04,2, 0x1d9000,68, 0x1d9200,6, 0x1d9220,1, 0x1d9240,2, 0x1d924c,2, 0x1d9260,11, 0x1d9290,10, 0x1d92c0,1, 0x1d92e0,1, 0x1d92f0,7, 0x1d9310,10, 0x1d9344,1, 0x1d935c,28, 0x1d9400,25, 0x1d9480,1, 0x1d9488,8, 0x1d94c0,6, 0x1d94e0,1, 0x1d94e8,2, 0x1d9504,13, 0x1d9600,2, 0x1d9620,8, 0x1d9700,7, 0x1d9800,2, 0x1d980c,2, 0x1d9820,2, 0x1d982c,2, 0x1d9900,2, 0x1d9910,2, 0x1d9b00,2, 0x1d9c00,2, 0x1d9c84,1, 0x1d9cb4,19, 0x1d9d04,1, 0x1d9d0c,7, 0x1d9d84,1, 0x1d9d9c,11, 0x1d9e00,4, 0x1d9e44,1, 0x1d9e50,12, 0x1da000,6, 0x1da020,3, 0x1da100,11, 0x1da200,13, 0x1da240,1, 0x1da260,6, 0x1db000,19, 0x1e0000,135, 0x1e0300,6, 0x1e0320,6, 0x1e0340,6, 0x1e0360,6, 0x1e0380,6, 0x1e03a0,6, 0x1e03c0,6, 0x1e03e0,6, 0x1e0400,6, 0x1e0420,6, 0x1e0440,6, 0x1e0460,6, 0x1e0480,6, 0x1e04a0,6, 0x1e04c0,6, 0x1e04e0,6, 0x1e0500,135, 0x1e0800,6, 0x1e0820,6, 0x1e0840,6, 0x1e0860,6, 0x1e0880,6, 0x1e08a0,6, 0x1e08c0,6, 0x1e08e0,6, 0x1e0900,6, 0x1e0920,6, 0x1e0940,6, 0x1e0960,6, 0x1e0980,6, 0x1e09a0,6, 0x1e09c0,6, 0x1e09e0,6, 0x1e0a00,135, 0x1e0d00,6, 0x1e0d20,6, 0x1e0d40,6, 0x1e0d60,6, 0x1e0d80,6, 0x1e0da0,6, 0x1e0dc0,6, 0x1e0de0,6, 0x1e0e00,6, 0x1e0e20,6, 0x1e0e40,6, 0x1e0e60,6, 0x1e0e80,6, 0x1e0ea0,6, 0x1e0ec0,6, 0x1e0ee0,6, 0x1e0f00,135, 0x1e1200,6, 0x1e1220,6, 0x1e1240,6, 0x1e1260,6, 0x1e1280,6, 0x1e12a0,6, 0x1e12c0,6, 0x1e12e0,6, 0x1e1300,6, 0x1e1320,6, 0x1e1340,6, 0x1e1360,6, 0x1e1380,6, 0x1e13a0,6, 0x1e13c0,6, 0x1e13e0,6, 0x1e1400,135, 0x1e1700,6, 0x1e1720,6, 0x1e1740,6, 0x1e1760,6, 0x1e1780,6, 0x1e17a0,6, 0x1e17c0,6, 0x1e17e0,6, 0x1e1800,6, 0x1e1820,6, 0x1e1840,6, 0x1e1860,6, 0x1e1880,6, 0x1e18a0,6, 0x1e18c0,6, 0x1e18e0,6, 0x1e2d00,2, 0x1e4400,2, 0x1e4410,2, 0x1e4424,2, 0x1e4444,3, 0x1e4500,2, 0x1e4544,1, 0x1e4564,17, 0x1e45d0,2, 0x1e45e0,6, 0x1e4600,5, 0x1e4800,4, 0x1e4840,2, 0x1e4900,4, 0x1e4980,23, 0x1e5000,6, 0x1e8004,1, 0x1e8038,18, 0x1e8100,24, 0x1e8300,1, 0x1e8308,1, 0x1e8310,1, 0x1e8318,1, 0x1e8320,1, 0x1e8328,1, 0x1e8330,1, 0x1e8338,1, 0x1e8340,1, 0x1e8348,1, 0x1e8350,1, 0x1e8358,1, 0x1e8400,2, 0x1e8484,1, 0x1e84b8,19, 0x1e8600,2, 0x1e8684,1, 0x1e86b8,20, 0x1e8800,20, 0x1e8900,3, 0x1e8910,3, 0x1e8920,3, 0x1e8930,3, 0x1e8940,3, 0x1e8950,3, 0x1e8960,3, 0x1e8970,3, 0x1e8980,3, 0x1e8990,3, 0x1e8a80,10, 0x1e8b80,3, 0x1e8c04,1, 0x1e8c2c,21, 0x1e8d00,3, 0x1e8d10,3, 0x1e8d20,3, 0x1e8d30,3, 0x1e8d40,3, 0x1e8e00,8, 0x1e9044,1, 0x1e904c,1, 0x1e9080,5, 0x1e9100,1, 0x1e9108,2, 0x1e9120,1, 0x1e9200,32, 0x1e9300,5, 0x1e931c,1, 0x1e9400,6, 0x1e9420,7, 0x1e9440,7, 0x1e9460,6, 0x1e9500,25, 0x1e9580,1, 0x1e95a0,6, 0x1e9600,35, 0x1f0000,19, 0x1f0080,19, 0x1f0100,3, 0x1f0a00,10, 0x1f0a80,3, 0x1f1000,24, 0x1f1500,4, 0x1f1600,25, 0x1f1680,4, 0x1f1700,1, 0x1f1708,4, 0x1f2000,2, 0x1f2084,1, 0x1f2098,28, 0x1f2184,1, 0x1f21bc,35, 0x1f224c,2, 0x1f2260,6, 0x1f3000,2, 0x1f3400,7, 0x1f3500,2, 0x1f4000,11, 0x1f4030,11, 0x1f4064,48, 0x1f4210,4, 0x1f4224,1, 0x1f4400,3, 0x1f4414,19, 0x1f44b0,3, 0x1f44c0,7, 0x1f4500,8, 0x1f4524,5, 0x1f4580,2, 0x1f458c,2, 0x1f45a0,1, 0x1f45c0,1, 0x1f4600,3, 0x1f4614,3, 0x1f4650,4, 0x1f4680,4, 0x1f46b0,3, 0x1f46c0,7, 0x1f4700,8, 0x1f4724,5, 0x1f4780,2, 0x1f478c,2, 0x1f47a0,1, 0x1f47c0,1, 0x1f4800,6, 0x1f4824,3, 0x1f4834,3, 0x1f4844,7, 0x1f5000,66, 0x1f5118,2, 0x1f5128,2, 0x1f5140,11, 0x1f5178,2, 0x1f5200,99, 0x1f5400,4, 0x1f5500,34, 0x1f5600,2, 0x1f560c,2, 0x1f5620,3, 0x1f5630,3, 0x1f5640,4, 0x1f5654,6, 0x1f5670,3, 0x1f5800,10, 0x1f5830,18, 0x1f5880,1, 0x1f5900,10, 0x1f5940,10, 0x1f5980,10, 0x1f59c0,10, 0x1f5a00,10, 0x1f5c00,3, 0x1f5c20,2, 0x1f5c68,2, 0x1f5c98,2, 0x1f5d00,64, 0x1f6000,5, 0x1f6020,7, 0x1f6040,6, 0x1f6060,2, 0x1f606c,2, 0x1f6100,2, 0x1f6184,1, 0x1f61c4,17, 0x1f6284,1, 0x1f62c4,15, 0x1f6400,21, 0x1f6500,40, 0x1f6600,4, 0x1f6620,2, 0x1f662c,2, 0x1f6800,43, 0x200000,1, 0x200008,2, 0x200050,2, 0x200080,42, 0x200144,3, 0x200190,2, 0x2001a0,6, 0x2001c0,5, 0x2001e0,2, 0x2001ec,3, 0x200404,4, 0x200420,4, 0x200440,1, 0x200490,8, 0x2004c0,1, 0x2004c8,4, 0x200500,2, 0x200524,1, 0x200530,6, 0x200580,2, 0x2005a0,2, 0x2005b4,9, 0x2005e0,7, 0x200600,5, 0x200620,2, 0x200640,3, 0x200650,3, 0x200660,1, 0x200680,1, 0x200688,2, 0x201000,19, 0x202000,43, 0x202200,25, 0x202280,1, 0x202288,8, 0x2022c0,6, 0x2022e0,1, 0x2022e8,2, 0x204000,11, 0x204044,4, 0x204400,2, 0x204484,1, 0x2044b4,19, 0x204600,4, 0x204644,1, 0x204650,12, 0x204a00,19, 0x205000,13, 0x205080,1, 0x205088,8, 0x2050c0,6, 0x2050e0,1, 0x2050e8,2, 0x205104,1, 0x205200,4, 0x205280,25, 0x205300,4, 0x205380,17, 0x205400,4, 0x205500,42, 0x205600,25, 0x205680,25, 0x205700,1, 0x205800,17, 0x205880,17, 0x205900,1, 0x205c00,42, 0x205d00,42, 0x205e00,1, 0x206000,1, 0x206008,4, 0x206020,1, 0x206030,5, 0x206080,8, 0x2060c0,1, 0x206100,4, 0x206180,18, 0x206200,4, 0x206220,5, 0x206240,14, 0x206280,6, 0x2062a0,2, 0x2062ac,2, 0x2062c0,2, 0x2062cc,2, 0x206300,4, 0x206340,9, 0x206400,18, 0x206480,18, 0x206500,5, 0x206520,5, 0x206540,18, 0x206590,2, 0x206600,9, 0x206640,9, 0x206e00,13, 0x206e80,1, 0x206e88,8, 0x206ec0,6, 0x206ee0,1, 0x206ee8,2, 0x206f04,2, 0x207000,68, 0x207200,6, 0x207220,1, 0x207240,2, 0x20724c,2, 0x207260,11, 0x207290,10, 0x2072c0,1, 0x2072e0,1, 0x2072f0,7, 0x207310,10, 0x207344,1, 0x20735c,28, 0x207400,25, 0x207480,1, 0x207488,8, 0x2074c0,6, 0x2074e0,1, 0x2074e8,2, 0x207504,13, 0x207600,2, 0x207620,8, 0x207700,7, 0x207800,2, 0x20780c,2, 0x207820,2, 0x20782c,2, 0x207900,2, 0x207910,2, 0x207b00,2, 0x207c00,2, 0x207c84,1, 0x207cb4,19, 0x207d04,1, 0x207d0c,7, 0x207d84,1, 0x207d9c,11, 0x207e00,4, 0x207e44,1, 0x207e50,12, 0x210000,12, 0x210044,3, 0x210080,2, 0x210180,2, 0x210200,2, 0x210260,3, 0x210280,4, 0x2102c0,4, 0x210304,1, 0x210340,16, 0x210400,8, 0x210580,8, 0x210700,4, 0x210740,4, 0x210780,4, 0x2107c0,4, 0x210800,8, 0x210880,8, 0x2108c0,7, 0x210900,2, 0x210910,2, 0x210920,2, 0x210930,1, 0x210938,1, 0x210950,1, 0x21095c,1, 0x210a00,1, 0x210a10,1, 0x210a20,1, 0x211b00,62, 0x211c00,8, 0x211c80,11, 0x211cc0,2, 0x211cd0,2, 0x212000,6, 0x212020,13, 0x212058,1, 0x212060,1, 0x212068,1, 0x212104,1, 0x212120,47, 0x212204,1, 0x212210,4, 0x212224,1, 0x21222c,1, 0x212244,3, 0x212260,2, 0x212270,3, 0x212280,5, 0x212304,1, 0x212310,4, 0x212384,1, 0x21238c,3, 0x212604,1, 0x212620,46, 0x212704,1, 0x212710,4, 0x212780,2, 0x212794,1, 0x21279c,2, 0x2127b0,2, 0x2127c8,1, 0x2127dc,1, 0x212804,1, 0x212848,46, 0x212a04,1, 0x212a10,28, 0x212b04,31, 0x212c04,1, 0x212c10,28, 0x213004,1, 0x213010,12, 0x213084,1, 0x2130a0,8, 0x2130c4,1, 0x2130e0,8, 0x213104,1, 0x213120,8, 0x213144,7, 0x213184,7, 0x2131c4,7, 0x213204,1, 0x213220,8, 0x213244,7, 0x213284,7, 0x2132c4,7, 0x213304,1, 0x213320,8, 0x213344,7, 0x213384,7, 0x2133c4,7, 0x213404,1, 0x213420,8, 0x213604,1, 0x213610,4, 0x213624,1, 0x21362c,1, 0x213634,1, 0x21363c,2, 0x213648,2, 0x214000,3, 0x214020,1, 0x214028,3, 0x214048,1, 0x214050,1, 0x214060,4, 0x214104,6, 0x214144,1, 0x21414c,4, 0x214164,1, 0x21416c,4, 0x214184,1, 0x21418c,4, 0x2141a4,1, 0x2141ac,4, 0x2141c4,1, 0x2141cc,4, 0x214244,1, 0x21424c,4, 0x214264,1, 0x21426c,4, 0x214284,1, 0x21428c,4, 0x2142a4,1, 0x2142ac,4, 0x2142c4,1, 0x2142cc,4, 0x2142e4,1, 0x2142ec,4, 0x214400,15, 0x214500,13, 0x214580,13, 0x214600,23, 0x214700,21, 0x214780,21, 0x214800,13, 0x214880,13, 0x214900,14, 0x214980,14, 0x214a00,13, 0x214a80,13, 0x214c00,9, 0x214c40,9, 0x214c80,4, 0x214c94,1, 0x215400,67, 0x215900,13, 0x215a00,4, 0x215a40,11, 0x215b00,1, 0x215b08,1, 0x217000,19, 0x228000,19, 0x229000,25, 0x229080,1, 0x2290a0,6, 0x229100,2, 0x229110,26, 0x229184,7, 0x229200,2, 0x229284,1, 0x2292b0,21, 0x229310,5, 0x229330,4, 0x229804,1, 0x229840,16, 0x229884,1, 0x2298c0,16, 0x229904,1, 0x229930,20, 0x229984,1, 0x2299c0,16, 0x229a04,1, 0x229a14,11, 0x229a84,1, 0x229ac0,16, 0x229b04,1, 0x229b40,16, 0x229b84,1, 0x229bc0,16, 0x229c04,1, 0x229c3c,17, 0x229c84,1, 0x229ca0,10, 0x22a000,294, 0x22a49c,1, 0x22a4a4,3, 0x22a4c4,3, 0x22a4fc,21, 0x22a580,20, 0x22a600,22, 0x22a664,1, 0x22a674,3, 0x22b000,2, 0x22b018,16, 0x22b060,1, 0x22b068,4, 0x22b080,4, 0x22b0a0,5, 0x22b0c0,4, 0x22b0e0,7, 0x22b100,4, 0x22b180,22, 0x22b200,4, 0x22b300,34, 0x22b400,4, 0x22b440,13, 0x22b480,7, 0x22b4a0,6, 0x22b4c0,6, 0x22b4e0,7, 0x22b500,4, 0x22b580,22, 0x22b600,4, 0x22b680,25, 0x22b700,4, 0x22b780,22, 0x22b800,4, 0x22b840,14, 0x22b880,4, 0x22b8a0,8, 0x22be00,75, 0x22c000,9, 0x22c040,9, 0x22c080,9, 0x22c0c0,9, 0x22c100,9, 0x22c140,9, 0x22c180,9, 0x22c1c0,9, 0x22c200,13, 0x22c23c,1, 0x22c270,12, 0x22c2c0,7, 0x22c2e0,7, 0x22c300,4, 0x22c318,15, 0x22c400,36, 0x22c500,36, 0x22c600,36, 0x22c700,36, 0x230000,3, 0x230010,3, 0x230020,3, 0x230040,16, 0x230090,3, 0x2300a0,3, 0x2300c0,6, 0x2300e0,4, 0x230100,10, 0x230140,4, 0x230154,1, 0x230160,1, 0x230170,2, 0x230180,17, 0x230200,4, 0x230214,6, 0x230230,10, 0x230280,5, 0x2302a0,1, 0x2302a8,1, 0x230300,14, 0x230340,14, 0x230380,78, 0x2304c0,5, 0x230500,32, 0x230604,4, 0x230700,3, 0x230800,15, 0x230880,14, 0x2308c0,5, 0x2308e0,6, 0x230900,1, 0x230910,5, 0x230930,5, 0x230950,5, 0x230970,4, 0x2309a4,3, 0x2309c0,1, 0x2309c8,4, 0x2309e0,1, 0x230a00,34, 0x230b00,20, 0x230b80,1, 0x230b90,3, 0x230bf0,1, 0x230bf8,9, 0x230c20,7, 0x230c40,7, 0x230c60,7, 0x230c80,1, 0x230d00,3, 0x230d10,1, 0x230d18,1, 0x230d20,1, 0x230d30,2, 0x230d40,1, 0x230d48,4, 0x230d60,3, 0x230d70,3, 0x230d84,2, 0x230d90,6, 0x230db4,1, 0x230dbc,1, 0x230dc4,1, 0x230dd0,4, 0x231000,2, 0x231084,1, 0x2310bc,19, 0x231184,1, 0x2311b0,22, 0x231244,1, 0x23125c,9, 0x231400,1, 0x231408,4, 0x231420,1, 0x231428,4, 0x231458,2, 0x231480,4, 0x2314c0,19, 0x231510,6, 0x231600,5, 0x23161c,2, 0x231640,9, 0x231680,1, 0x231690,4, 0x2316a4,4, 0x231800,2, 0x231844,1, 0x231860,8, 0x231884,1, 0x231894,28, 0x231920,1, 0x231930,5, 0x231948,2, 0x231c04,1, 0x231c10,12, 0x231c44,1, 0x231c50,12, 0x231c84,1, 0x231c90,12, 0x231cc4,1, 0x231cd0,12, 0x231d80,14, 0x231f80,1, 0x231f90,4, 0x231fa8,3, 0x231fc0,1, 0x231fe8,2, 0x232000,68, 0x232200,6, 0x232220,1, 0x232240,2, 0x23224c,2, 0x232260,11, 0x232290,10, 0x2322c0,1, 0x2322e0,1, 0x2322f0,7, 0x232310,10, 0x232344,1, 0x23235c,28, 0x232400,25, 0x232480,1, 0x232488,8, 0x2324c0,6, 0x2324e0,1, 0x2324e8,2, 0x232504,13, 0x232600,2, 0x232620,8, 0x232700,7, 0x232800,2, 0x23280c,2, 0x232820,2, 0x23282c,2, 0x232900,2, 0x232910,2, 0x232b00,2, 0x232c00,2, 0x232c84,1, 0x232cb4,19, 0x232d04,1, 0x232d0c,7, 0x232d84,1, 0x232d9c,11, 0x232e00,4, 0x232e44,1, 0x232e50,12, 0x233000,2, 0x233084,1, 0x2330bc,18, 0x233108,4, 0x233120,5, 0x233140,3, 0x233150,2, 0x233800,3, 0x233820,8, 0x233844,1, 0x233850,14, 0x233900,1, 0x233920,5, 0x233940,2, 0x233954,1, 0x23395c,3, 0x233980,1, 0x233988,5, 0x2339a0,3, 0x2339b0,3, 0x2339c0,1, 0x2339c8,4, 0x2339e0,4, 0x233a00,2, 0x233a20,3, 0x234000,4, 0x234100,34, 0x234200,4, 0x234280,17, 0x234300,4, 0x234380,30, 0x234400,11, 0x234440,4, 0x234800,2, 0x234884,1, 0x2348b4,19, 0x234984,1, 0x234990,6, 0x234a00,10, 0x234c00,25, 0x234c80,1, 0x234c88,8, 0x234cc0,6, 0x234ce0,1, 0x234ce8,2, 0x234d04,3, 0x234e00,2, 0x235000,4, 0x235080,25, 0x235100,1, 0x235200,1, 0x235210,5, 0x235230,5, 0x235250,6, 0x235300,43, 0x235400,1, 0x236004,5, 0x236104,4, 0x236204,4, 0x236300,2, 0x236400,29, 0x236480,2, 0x2364a4,1, 0x2364b4,5, 0x236500,2, 0x236584,1, 0x2365c4,17, 0x236684,1, 0x2366b4,21, 0x236720,3, 0x236730,5, 0x236800,59, 0x236b00,2, 0x236b10,2, 0x236b20,2, 0x236c00,2, 0x236c84,1, 0x236c8c,32, 0x236e00,25, 0x236e80,1, 0x236ea0,6, 0x237000,35, 0x237a00,10, 0x237a80,3, 0x237ac0,1, 0x240000,19, 0x240080,14, 0x240108,2, 0x240400,19, 0x240480,12, 0x240500,4, 0x242000,2, 0x242020,18, 0x243000,36, 0x243098,16, 0x243158,2, 0x243174,3, 0x243184,23, 0x2433fc,8, 0x243420,2, 0x243440,7, 0x243460,2, 0x243480,7, 0x2434a0,2, 0x2434c0,7, 0x2434e0,2, 0x243700,16, 0x243780,4, 0x24379c,9, 0x243800,25, 0x243a00,40, 0x243aa4,2, 0x243ab0,3, 0x243c04,1, 0x243c0c,5, 0x244000,25, 0x244080,9, 0x2440c0,8, 0x244100,25, 0x244180,9, 0x2441c0,8, 0x244200,25, 0x244280,9, 0x2442c0,8, 0x244300,25, 0x244380,9, 0x2443c0,8, 0x244400,25, 0x244480,9, 0x2444c0,8, 0x244500,25, 0x244580,9, 0x2445c0,8, 0x244600,25, 0x244680,9, 0x2446c0,8, 0x244700,25, 0x244780,9, 0x2447c0,8, 0x244800,25, 0x244880,9, 0x2448c0,8, 0x244900,25, 0x244980,9, 0x2449c0,8, 0x244a00,25, 0x244a80,9, 0x244ac0,8, 0x244b00,25, 0x244b80,9, 0x244bc0,8, 0x245000,36, 0x245098,54, 0x245174,3, 0x245184,23, 0x2453fc,8, 0x245420,2, 0x245440,7, 0x245460,2, 0x245480,7, 0x2454a0,2, 0x2454c0,7, 0x2454e0,2, 0x245500,7, 0x245520,2, 0x245540,7, 0x245560,2, 0x245580,7, 0x2455a0,2, 0x2455c0,7, 0x2455e0,2, 0x245600,7, 0x245620,2, 0x245640,7, 0x245660,2, 0x245680,7, 0x2456a0,2, 0x2456c0,7, 0x2456e0,2, 0x245700,16, 0x245780,4, 0x24579c,9, 0x245800,96, 0x245984,4, 0x2459a0,3, 0x245c00,25, 0x245e08,7, 0x245e44,1, 0x245e4c,7, 0x246000,1, 0x246008,4, 0x246024,1, 0x246030,12, 0x246064,1, 0x246070,3, 0x246080,3, 0x246090,5, 0x2460c0,1, 0x2460c8,4, 0x246200,1, 0x246208,4, 0x246224,1, 0x246230,12, 0x246264,1, 0x246270,3, 0x246280,3, 0x246290,5, 0x2462c0,1, 0x2462c8,4, 0x246404,1, 0x24640c,4, 0x246504,1, 0x24650c,1, 0x246800,25, 0x246900,25, 0x247000,36, 0x247098,8, 0x247158,1, 0x247174,3, 0x247184,23, 0x2473fc,8, 0x247420,2, 0x247440,7, 0x247460,2, 0x247700,16, 0x247780,4, 0x24779c,9, 0x247800,25, 0x247a00,24, 0x247a64,1, 0x247a70,3, 0x247e08,7, 0x247e44,1, 0x247e4c,7, 0x248000,38, 0x2480e0,1, 0x2480e8,28, 0x248200,25, 0x248300,38, 0x2483e0,1, 0x2483e8,28, 0x248500,25, 0x248600,2, 0x248610,3, 0x248800,1, 0x248808,1, 0x248810,2, 0x24881c,31, 0x2488e0,22, 0x248a00,25, 0x248a84,1, 0x248b00,1, 0x248b08,1, 0x248b10,2, 0x248b1c,31, 0x248be0,22, 0x248d00,25, 0x248d84,1, 0x248e00,2, 0x248e0c,2, 0x249000,36, 0x249098,8, 0x249158,1, 0x249174,3, 0x249184,23, 0x2493fc,8, 0x249420,2, 0x249440,7, 0x249460,2, 0x249700,16, 0x249780,4, 0x24979c,9, 0x249800,25, 0x249a00,24, 0x249a64,1, 0x249a70,3, 0x249e08,7, 0x249e44,1, 0x249e4c,7, 0x24a000,1, 0x24a008,1, 0x24a010,2, 0x24a01c,31, 0x24a0e0,22, 0x24a200,25, 0x24a284,1, 0x24a300,1, 0x24a308,1, 0x24a310,2, 0x24a31c,31, 0x24a3e0,22, 0x24a500,25, 0x24a584,1, 0x24a600,1, 0x24a608,1, 0x24a610,2, 0x24a61c,31, 0x24a6e0,22, 0x24a800,25, 0x24a884,1, 0x24a900,1, 0x24a908,1, 0x24a910,2, 0x24a91c,31, 0x24a9e0,22, 0x24ab00,25, 0x24ab84,1, 0x24ac00,2, 0x24ac0c,2, 0x24b000,36, 0x24b098,16, 0x24b158,2, 0x24b174,3, 0x24b184,23, 0x24b3fc,8, 0x24b420,2, 0x24b440,7, 0x24b460,2, 0x24b480,7, 0x24b4a0,2, 0x24b4c0,7, 0x24b4e0,2, 0x24b700,16, 0x24b780,4, 0x24b79c,9, 0x24b800,25, 0x24ba00,40, 0x24baa4,1, 0x24bab0,3, 0x24bc04,1, 0x24bc0c,5, 0x260000,3, 0x260018,2, 0x260024,13, 0x260060,27, 0x2600d0,3, 0x2600e0,3, 0x2600f0,3, 0x260100,4, 0x260114,9, 0x260140,3, 0x260160,2, 0x260180,3, 0x26019c,18, 0x2601ec,4, 0x260200,11, 0x260240,1, 0x26027c,4, 0x260400,3, 0x260418,2, 0x260424,13, 0x260460,27, 0x2604d0,3, 0x2604e0,3, 0x2604f0,3, 0x260500,4, 0x260514,9, 0x260540,3, 0x260560,2, 0x260580,3, 0x26059c,18, 0x2605ec,4, 0x260600,11, 0x260640,1, 0x26067c,4, 0x260800,3, 0x260818,2, 0x260824,13, 0x260860,27, 0x2608d0,3, 0x2608e0,3, 0x2608f0,3, 0x260900,4, 0x260914,9, 0x260940,3, 0x260960,2, 0x260980,3, 0x26099c,18, 0x2609ec,4, 0x260a00,11, 0x260a40,1, 0x260a7c,4, 0x260c00,3, 0x260c18,2, 0x260c24,13, 0x260c60,27, 0x260cd0,3, 0x260ce0,3, 0x260cf0,3, 0x260d00,4, 0x260d14,9, 0x260d40,3, 0x260d60,2, 0x260d80,3, 0x260d9c,18, 0x260dec,4, 0x260e00,11, 0x260e40,1, 0x260e7c,4, 0x261000,3, 0x261018,2, 0x261024,13, 0x261060,27, 0x2610d0,3, 0x2610e0,3, 0x2610f0,3, 0x261100,4, 0x261114,9, 0x261140,3, 0x261160,2, 0x261180,3, 0x26119c,18, 0x2611ec,4, 0x261200,11, 0x261240,1, 0x26127c,4, 0x261400,3, 0x261418,2, 0x261424,13, 0x261460,27, 0x2614d0,3, 0x2614e0,3, 0x2614f0,3, 0x261500,4, 0x261514,9, 0x261540,3, 0x261560,2, 0x261580,3, 0x26159c,18, 0x2615ec,4, 0x261600,11, 0x261640,1, 0x26167c,4, 0x261800,3, 0x261818,2, 0x261824,13, 0x261860,27, 0x2618d0,3, 0x2618e0,3, 0x2618f0,3, 0x261900,4, 0x261914,9, 0x261940,3, 0x261960,2, 0x261980,3, 0x26199c,18, 0x2619ec,4, 0x261a00,11, 0x261a40,1, 0x261a7c,4, 0x261c00,3, 0x261c18,2, 0x261c24,13, 0x261c60,27, 0x261cd0,3, 0x261ce0,3, 0x261cf0,3, 0x261d00,4, 0x261d14,9, 0x261d40,3, 0x261d60,2, 0x261d80,3, 0x261d9c,18, 0x261dec,4, 0x261e00,11, 0x261e40,1, 0x261e7c,4, 0x263008,23, 0x263070,1, 0x263080,2, 0x26308c,1, 0x263098,2, 0x263100,5, 0x263200,17, 0x263248,4, 0x263260,5, 0x263280,1, 0x263288,4, 0x2632a0,5, 0x2632c0,1, 0x2632c8,4, 0x2632e0,5, 0x263300,1, 0x263308,4, 0x263320,5, 0x263404,1, 0x263440,24, 0x2634a4,4, 0x2634bc,11, 0x2634f0,68, 0x263660,9, 0x263690,13, 0x2636e0,2, 0x2636ec,2, 0x263a00,6, 0x263a20,2, 0x263a30,1, 0x263a40,8, 0x263a64,5, 0x263e00,67, 0x2645f0,4, 0x264604,1, 0x264640,16, 0x2646f0,4, 0x264704,1, 0x264740,16, 0x264a04,3, 0x264b00,33, 0x264b90,3, 0x264e08,4, 0x264e20,10, 0x264e80,25, 0x267450,3, 0x267464,3, 0x2674d8,2, 0x267500,1, 0x267510,12, 0x267580,3, 0x2675c0,3, 0x267600,8, 0x267680,19, 0x267708,2, 0x267720,7, 0x267740,7, 0x267760,4, 0x267800,99, 0x267a00,16, 0x267a80,1, 0x267b00,3, 0x267b80,4, 0x267ba0,6, 0x267bc0,9, 0x267c00,91, 0x267e00,10, 0x267f20,9, 0x267f50,3, 0x267f68,1, 0x267f70,12, 0x280004,5, 0x280020,1, 0x280040,7, 0x280060,3, 0x280070,1, 0x280080,5, 0x280800,672, 0x282000,4, 0x28203c,5, 0x28207c,5, 0x2820bc,1, 0x283004,5, 0x283020,6, 0x283040,9, 0x283070,3, 0x283080,3, 0x283090,3, 0x283100,3, 0x283184,5, 0x2831c0,16, 0x284000,3, 0x284010,3, 0x284020,7, 0x284040,4, 0x284060,5, 0x284080,6, 0x284400,6, 0x284420,6, 0x284440,6, 0x284464,3, 0x284484,1, 0x284494,3, 0x2844a4,5, 0x2844c4,1, 0x2844cc,3, 0x2844dc,1, 0x284804,5, 0x284824,4, 0x284844,6, 0x284a04,5, 0x284a80,33, 0x284b08,4, 0x284b20,2, 0x284b30,1, 0x288000,39, 0x2880c0,32, 0x288400,5, 0x288480,1, 0x2884c0,3, 0x2884d0,3, 0x2884e0,3, 0x2884f0,3, 0x288500,5, 0x288580,1, 0x2885c0,3, 0x2885d0,3, 0x2885e0,3, 0x2885f0,3, 0x288600,5, 0x288680,1, 0x2886c0,3, 0x2886d0,3, 0x2886e0,3, 0x2886f0,3, 0x288708,2, 0x288718,2, 0x288728,2, 0x288800,3, 0x288810,63, 0x288910,15, 0x288950,3, 0x288960,17, 0x2889b0,3, 0x2889c0,3, 0x289000,6, 0x289020,6, 0x289040,6, 0x289060,6, 0x289080,6, 0x2890a0,6, 0x2890c0,6, 0x2890e0,6, 0x289100,6, 0x289120,6, 0x289140,6, 0x289160,6, 0x289180,6, 0x2891a0,6, 0x2891c0,6, 0x2891e0,6, 0x289200,6, 0x289220,6, 0x289240,6, 0x289260,6, 0x289280,6, 0x2892a0,6, 0x2892c0,6, 0x2892e0,6, 0x289300,6, 0x289320,6, 0x289340,6, 0x289360,6, 0x289380,6, 0x2893a0,6, 0x2893c0,6, 0x2893e0,6, 0x289400,6, 0x289420,6, 0x289440,6, 0x289460,6, 0x289480,6, 0x2894a0,6, 0x2894c0,6, 0x2894e0,6, 0x289500,6, 0x289520,6, 0x289540,6, 0x289560,6, 0x289580,6, 0x2895a0,6, 0x2895c0,6, 0x2895e0,6, 0x289600,6, 0x289620,6, 0x289a80,5, 0x289aa0,3, 0x289ab0,3, 0x289ac0,3, 0x289ad0,3, 0x289ae0,3, 0x289af0,3, 0x289b00,3, 0x289b10,3, 0x289b20,3, 0x289b30,15, 0x289b74,1, 0x289b7c,8, 0x289ba0,3, 0x289bb0,3, 0x289bc0,3, 0x289bd0,3, 0x289be0,3, 0x289bf0,3, 0x289c00,3, 0x28a000,16, 0x28a044,1, 0x28a04c,1, 0x28a054,1, 0x28a05c,2, 0x28a080,2, 0x28a094,1, 0x28a09c,3, 0x28a0b4,1, 0x28a0bc,1, 0x28a100,6, 0x28a120,6, 0x28a160,6, 0x28a184,24, 0x28a200,6, 0x28a220,6, 0x28a260,6, 0x28a284,1, 0x28a28c,1, 0x28a294,1, 0x28a29c,1, 0x28a2c0,4, 0x28a2e0,7, 0x28a300,4, 0x28a318,2, 0x28a324,1, 0x28a32c,1, 0x28a340,2, 0x28a360,3, 0x28a370,3, 0x28a384,4, 0x28a3a0,23, 0x28a400,6, 0x28a43c,7, 0x28a47c,7, 0x28a4bc,1, 0x28a500,1, 0x28a510,3, 0x28a520,3, 0x28a530,3, 0x28a540,3, 0x28a564,1, 0x28a56c,7, 0x28a5a4,8, 0x28a5d4,1, 0x28a5dc,1, 0x28a5e4,1, 0x28a5f4,35, 0x28a684,1, 0x28a690,4, 0x28a6a4,1, 0x28a6ac,4, 0x28a6c0,2, 0x28a6d0,3, 0x28a6e4,1, 0x28a6ec,388, 0x28ad00,3, 0x28ad10,3, 0x28b540,7, 0x28b560,7, 0x28b580,4, 0x28b5a0,5, 0x28b5c0,5, 0x28b5e0,5, 0x28b600,3, 0x28b610,3, 0x28b620,3, 0x28b630,3, 0x28b640,3, 0x28b650,3, 0x28b660,3, 0x28b670,3, 0x28b680,3, 0x28b690,3, 0x28b6a0,2, 0x28b700,27, 0x28b774,1, 0x28b77c,1, 0x28b784,1, 0x28b794,45, 0x28b8a0,1, 0x28b8b0,1, 0x28c000,135, 0x28c224,4, 0x28c240,3, 0x28c264,1, 0x28c26c,15, 0x28c404,1, 0x28c4c0,84, 0x28c680,23, 0x28c800,3, 0x28c824,4, 0x28c840,3, 0x28c850,1, 0x28c900,4, 0x28c980,23, 0x28ca04,1, 0x28cac8,78, 0x28d004,4, 0x28d020,11, 0x28d054,1, 0x28d05c,1, 0x28d064,1, 0x28d06c,1, 0x28d080,9, 0x28d0c0,96, 0x28d440,24, 0x28d4c0,6, 0x28d4e0,6, 0x28d500,4, 0x28d520,6, 0x28d604,1, 0x28d670,71, 0x28d800,7, 0x28d820,3, 0x28d834,1, 0x28d83c,1, 0x28d844,1, 0x28d84c,1, 0x28d854,3, 0x28d864,4, 0x28d884,4, 0x28d8a0,8, 0x28d8c4,1, 0x28d8dc,15, 0x28d920,6, 0x28d940,4, 0x28d960,6, 0x28d980,10, 0x28d9b0,10, 0x28d9e0,8, 0x28da04,1, 0x28daf4,72, 0x28dc24,4, 0x28dc80,2, 0x28dcc4,1, 0x28dcd4,13, 0x28dd44,1, 0x28dd54,11, 0x28e000,28, 0x28e084,9, 0x28e0c0,8, 0x28e104,1, 0x28e120,12, 0x28e160,8, 0x28e304,1, 0x28e374,39, 0x28e414,4, 0x28e430,1, 0x28e440,1, 0x28e450,1, 0x28e460,1, 0x28e470,1, 0x28e480,1, 0x28e490,1, 0x28e4a0,1, 0x28e4c0,6, 0x28e500,1, 0x28e508,5, 0x28e520,1, 0x28e528,6, 0x290000,99, 0x290190,3, 0x2901a0,3, 0x2901b0,3, 0x2901c0,3, 0x2901d0,3, 0x2901e0,3, 0x2901f0,3, 0x290218,3, 0x290aa4,5, 0x290ac0,3, 0x290ad4,1, 0x290adc,1, 0x290ae4,1, 0x290aec,1, 0x290af4,1, 0x290afc,3, 0x290b40,4, 0x290b60,5, 0x290b80,4, 0x290ba0,9, 0x290bc8,4, 0x290be4,3, 0x291000,3, 0x291010,3, 0x291020,3, 0x291030,3, 0x291040,3, 0x291054,3, 0x291180,384, 0x294000,9, 0x294100,13, 0x294204,7, 0x294224,1, 0x29422c,4, 0x294244,1, 0x294250,10, 0x294290,3, 0x2942a0,3, 0x2942b0,7, 0x2942d0,3, 0x294300,1, 0x294310,3, 0x294320,3, 0x294334,1, 0x29433c,1, 0x294344,1, 0x29434c,1, 0x294380,9, 0x2943a8,4, 0x2943c4,1, 0x2943cc,1, 0x294400,147, 0x294800,14, 0x294900,25, 0x294980,1, 0x2949a0,6, 0x294a00,5, 0x295000,35, 0x295a00,10, 0x295a80,3, 0x296000,227, 0x310488,1, 0x310490,1, 0x312000,1, 0x312008,1, 0x312100,1, 0x312108,1, 0x312110,1, 0x312118,1, 0x312120,1, 0x312128,1, 0x312130,1, 0x312138,1, 0x312140,1, 0x312148,1, 0x312150,1, 0x312158,1, 0x312160,1, 0x312168,1, 0x312170,1, 0x312178,1, 0x312180,1, 0x312188,1, 0x312190,1, 0x312198,1, 0x3121a0,1, 0x3121a8,1, 0x3121b0,1, 0x3121b8,1, 0x3121c0,1, 0x3121c8,1, 0x3121d0,1, 0x3121d8,1, 0x3121e0,1, 0x3121e8,1, 0x3121f0,1, 0x3121f8,1, 0x312200,1, 0x312208,1, 0x312210,1, 0x312218,1, 0x312220,1, 0x312228,1, 0x312230,1, 0x312238,1, 0x312240,1, 0x312248,1, 0x312250,1, 0x312258,1, 0x312260,1, 0x312268,1, 0x312270,1, 0x312278,1, 0x312280,1, 0x312288,1, 0x312290,1, 0x312298,1, 0x3122a0,1, 0x3122a8,1, 0x3122b0,1, 0x3122b8,1, 0x3122c0,1, 0x3122c8,1, 0x3122d0,1, 0x3122d8,1, 0x3122e0,1, 0x3122e8,1, 0x3122f0,1, 0x3122f8,1, 0x312300,1, 0x312308,1, 0x312310,1, 0x312318,1, 0x312320,1, 0x312328,1, 0x312330,1, 0x312338,1, 0x312340,1, 0x312348,1, 0x312350,1, 0x312358,1, 0x312360,1, 0x312368,1, 0x312370,1, 0x312378,1, 0x312380,1, 0x312388,1, 0x312390,1, 0x312398,1, 0x3123a0,1, 0x3123a8,1, 0x3123b0,1, 0x3123b8,1, 0x3123c0,1, 0x3123c8,1, 0x312400,1, 0x312408,1, 0x400000,19, 0x400080,19, 0x400100,19, 0x400180,3, 0x400a00,10, 0x400a80,3, 0x400b00,6, 0x400be0,1, 0x401000,19, 0x401100,19, 0x401200,35, 0x401300,19, 0x401400,3, 0x401a00,10, 0x401a80,3, 0x401b00,6, 0x401c04,2, 0x401c10,3, 0x401c40,16, 0x401ee0,1, 0x4020e0,1, 0x403000,19, 0x403ae0,1, 0x404000,19, 0x404080,19, 0x404100,3, 0x404a00,10, 0x404a80,3, 0x404b00,6, 0x404be0,1, 0x405080,3, 0x405100,6, 0x4053e0,1, 0x406080,3, 0x406100,6, 0x4063e0,1, 0x407080,3, 0x407100,6, 0x4073e0,1, 0x408000,19, 0x408080,19, 0x408100,3, 0x408a00,10, 0x408a80,3, 0x408b00,6, 0x408be0,1, 0x409080,3, 0x409100,6, 0x4093e0,1, 0x40a080,3, 0x40a100,6, 0x40a3e0,1, 0x40b080,3, 0x40b100,6, 0x40b3e0,1, 0x40c000,19, 0x40c080,19, 0x40c100,3, 0x40ca00,10, 0x40ca80,3, 0x40cb00,6, 0x40cbe0,1, 0x40d080,3, 0x40d100,6, 0x40d3e0,1, 0x40e080,3, 0x40e100,6, 0x40e3e0,1, 0x40f080,3, 0x40f100,6, 0x40f3e0,1, 0x410000,19, 0x410080,19, 0x410100,3, 0x410a00,10, 0x410a80,3, 0x410b00,6, 0x410be0,1, 0x411080,3, 0x411100,6, 0x4113e0,1, 0x412080,3, 0x412100,6, 0x4123e0,1, 0x413080,3, 0x413100,6, 0x4133e0,1, 0x414000,19, 0x414a00,10, 0x414a80,3, 0x414b00,6, 0x414be0,1, 0x415000,19, 0x415a00,10, 0x415a80,3, 0x415ae0,1, 0x416000,19, 0x416080,19, 0x416100,3, 0x416a00,10, 0x416a80,3, 0x416b00,6, 0x416be0,1, 0x417000,35, 0x417a80,3, 0x417b00,6, 0x417be0,1, 0x418000,35, 0x418a80,3, 0x418b00,6, 0x418be0,1, 0x419000,19, 0x419080,19, 0x419100,19, 0x419180,3, 0x419a00,10, 0x419a80,3, 0x419b00,6, 0x419be0,1, 0x41a000,19, 0x41aae0,1, 0x41b000,19, 0x41bae0,1, 0x41c000,19, 0x41cae0,1, 0x41d000,19, 0x41dae0,1, 0x41e000,19, 0x41e080,19, 0x41e100,19, 0x41e180,3, 0x41ea00,10, 0x41ea80,3, 0x41eb00,6, 0x41ebe0,1, 0x41f000,19, 0x41fae0,1, 0x420000,19, 0x420ae0,1, 0x421000,19, 0x421ae0,1, 0x422000,19, 0x422ae0,1, 0x423000,19, 0x423080,19, 0x423100,19, 0x423180,3, 0x423800,14, 0x423840,14, 0x423880,24, 0x423a00,10, 0x423a80,3, 0x423ac0,1, 0x423b00,6, 0x423be0,1, 0x424000,19, 0x424100,19, 0x424200,19, 0x424300,35, 0x424400,3, 0x424a00,10, 0x424a80,3, 0x424b00,6, 0x424be0,1, 0x4250e0,1, 0x426000,19, 0x426100,19, 0x426200,19, 0x426300,35, 0x426400,3, 0x426a00,10, 0x426a80,3, 0x426b00,6, 0x426be0,1, 0x4270e0,1, 0x428000,19, 0x428080,19, 0x428100,19, 0x428180,19, 0x428200,19, 0x428280,19, 0x428300,19, 0x428380,3, 0x428a00,10, 0x428a80,3, 0x428b00,6, 0x428be0,1, 0x429000,19, 0x429080,19, 0x429100,19, 0x429180,19, 0x429200,3, 0x429a00,10, 0x429ae0,1, 0x42a000,51, 0x42aa80,3, 0x42ab00,6, 0x42abe0,1, 0x42b000,51, 0x42ba80,3, 0x42bb00,6, 0x42bbe0,1, 0x42c000,19, 0x42c080,19, 0x42c100,19, 0x42c180,19, 0x42c200,19, 0x42c280,19, 0x42c300,3, 0x42ca00,10, 0x42ca80,3, 0x42cb00,6, 0x42cbe0,1, 0x42d000,19, 0x42d080,19, 0x42d100,3, 0x42dae0,1, 0x42e000,19, 0x42e080,19, 0x42e100,3, 0x42eae0,1, 0x42f000,10, 0x42f0e0,1, 0x430000,10, 0x4300e0,1, 0x431000,10, 0x4310e0,1, 0x432000,10, 0x4320e0,1, 0x433000,10, 0x4330e0,1, 0x434000,10, 0x4340e0,1, 0x435000,10, 0x4350e0,1, 0x436000,10, 0x4360e0,1, 0x437000,10, 0x4370e0,1, 0x438000,10, 0x4380e0,1, 0x439000,10, 0x4390e0,1, 0x43a000,10, 0x43a0e0,1, 0x43b000,10, 0x43b0e0,1, 0x43c000,10, 0x43c0e0,1, 0x43d000,10, 0x43d0e0,1, 0x43e000,10, 0x43e0e0,1, 0x43f000,10, 0x43f0e0,1, 0x440000,10, 0x4400e0,1, 0x441000,10, 0x4410e0,1, 0x442000,10, 0x4420e0,1, 0x443000,10, 0x4430e0,1, 0x444000,10, 0x4440e0,1, 0x445000,10, 0x4450e0,1, 0x446000,10, 0x4460e0,1, 0x447000,10, 0x4470e0,1, 0x448000,10, 0x4480e0,1, 0x449000,10, 0x4490e0,1, 0x44a000,10, 0x44a0e0,1, 0x44b000,10, 0x44b0e0,1, 0x44c000,10, 0x44c0e0,1, 0x44d000,10, 0x44d0e0,1, 0x44e000,10, 0x44e0e0,1, 0x44f000,10, 0x44f0e0,1, 0x450000,10, 0x4500e0,1, 0x451000,10, 0x4510e0,1, 0x452000,10, 0x4520e0,1, 0x453000,10, 0x4530e0,1, 0x454000,10, 0x4540e0,1, 0x455000,10, 0x4550e0,1, 0x456000,10, 0x4560e0,1, 0x457000,10, 0x4570e0,1, 0x458000,10, 0x4580e0,1, 0x459000,10, 0x4590e0,1, 0x45a000,10, 0x45a0e0,1, 0x45b000,10, 0x45b0e0,1, 0x45c000,10, 0x45c0e0,1, 0x45d000,10, 0x45d0e0,1, 0x45e000,10, 0x45e0e0,1, 0x45f000,10, 0x45f0e0,1, 0x460000,10, 0x4600e0,1, 0x461000,10, 0x4610e0,1, 0x462000,10, 0x4620e0,1, 0x463000,10, 0x4630e0,1, 0x464000,10, 0x4640e0,1, 0x465000,10, 0x4650e0,1, 0x466000,10, 0x4660e0,1, 0x467000,10, 0x4670e0,1, 0x468000,10, 0x4680e0,1, 0x469000,10, 0x4690e0,1, 0x46a000,10, 0x46a0e0,1, 0x46b000,10, 0x46b0e0,1, 0x46c000,10, 0x46c0e0,1, 0x46d000,10, 0x46d0e0,1, 0x46e000,10, 0x46e0e0,1, 0x46f000,10, 0x46f0e0,1, 0x470000,10, 0x4700e0,1, 0x471000,10, 0x4710e0,1, 0x472000,10, 0x4720e0,1, 0x473000,10, 0x4730e0,1, 0x474000,10, 0x4740e0,1, 0x475000,10, 0x4750e0,1, 0x476000,10, 0x4760e0,1, 0x477000,10, 0x4770e0,1, 0x478000,10, 0x4780e0,1, 0x479000,10, 0x4790e0,1, 0x47a000,10, 0x47a0e0,1, 0x47b000,10, 0x47b0e0,1, 0x47c000,10, 0x47c0e0,1, 0x47d000,10, 0x47d0e0,1, 0x47e000,10, 0x47e0e0,1, 0x47f000,10, 0x47f0e0,1, 0x480000,10, 0x4800e0,1, 0x481000,10, 0x4810e0,1, 0x482000,10, 0x4820e0,1, 0x483000,10, 0x4830e0,1, 0x484000,10, 0x4840e0,1, 0x485000,10, 0x4850e0,1, 0x486000,10, 0x4860e0,1, 0x487000,10, 0x4870e0,1, 0x488000,10, 0x4880e0,1, 0x489000,10, 0x4890e0,1, 0x48a000,10, 0x48a0e0,1, 0x48b000,10, 0x48b0e0,1, 0x48c000,10, 0x48c0e0,1, 0x48d000,10, 0x48d0e0,1, 0x48e000,10, 0x48e0e0,1, 0x48f000,10, 0x48f0e0,1, 0x490000,10, 0x4900e0,1, 0x491000,10, 0x4910e0,1, 0x492000,10, 0x4920e0,1, 0x493000,10, 0x4930e0,1, 0x494000,10, 0x4940e0,1, 0x495000,10, 0x4950e0,1, 0x496000,10, 0x4960e0,1, 0x497000,10, 0x4970e0,1, 0x498000,10, 0x4980e0,1, 0x499000,10, 0x4990e0,1, 0x49a000,10, 0x49a0e0,1, 0x49b000,10, 0x49b0e0,1, 0x49c000,10, 0x49c0e0,1, 0x49d000,10, 0x49d0e0,1, 0x49e000,10, 0x49e0e0,1, 0x49f000,10, 0x49f0e0,1, 0x4a0000,10, 0x4a00e0,1, 0x4a1000,10, 0x4a10e0,1, 0x4a2000,10, 0x4a20e0,1, 0x4a3000,10, 0x4a30e0,1, 0x4a4000,10, 0x4a40e0,1, 0x4a5000,10, 0x4a50e0,1, 0x4a6000,10, 0x4a60e0,1, 0x4a7000,10, 0x4a70e0,1, 0x4a8000,10, 0x4a80e0,1, 0x4a9000,10, 0x4a90e0,1, 0x4aa000,10, 0x4aa0e0,1, 0x4ab000,10, 0x4ab0e0,1, 0x4ac000,10, 0x4ac0e0,1, 0x4ad000,10, 0x4ad0e0,1, 0x4ae000,10, 0x4ae0e0,1, 0x4af000,10, 0x4af0e0,1, 0x4b0000,10, 0x4b00e0,1, 0x4b1000,10, 0x4b10e0,1, 0x4b2000,10, 0x4b20e0,1, 0x4b3000,10, 0x4b30e0,1, 0x4b4000,10, 0x4b40e0,1, 0x4b5000,35, 0x4b5a00,10, 0x4b5a80,3, 0x4b6000,19, 0x4b6a00,10, 0x4b6a80,3, 0x4b7000,19, 0x4b8000,35, 0x4b8a00,10, 0x4b8a80,3, 0x4b9000,35, 0x4b9a00,10, 0x4b9a80,3, 0x4ba000,19, 0x4baa00,10, 0x4baa80,3, 0x4bb000,19, 0x4bc000,19, 0x4bd000,35, 0x4bda00,10, 0x4bda80,3, 0x4be000,35, 0x4bea00,10, 0x4bea80,3, 0x4beac0,1, 0x4bf000,35, 0x4bfa00,10, 0x4bfa80,3, 0x4bfac0,1, 0x4c0000,35, 0x4c0a00,10, 0x4c0a80,3, 0x4c0ac0,1, 0x4c1000,35, 0x4c1a00,10, 0x4c1a80,3, 0x4c1ac0,1, 0x4c2000,35, 0x4c2a00,10, 0x4c2a80,3, 0x4c3000,35, 0x4c3a00,10, 0x4c3a80,3, 0x4c4000,19, 0x4c4a00,10, 0x4c4a80,3, 0x4c5000,19, 0x4c5a00,10, 0x4c5a80,3, 0x4c6000,19, 0x4c6a00,10, 0x4c6a80,3, 0x4c7000,19, 0x4c7a00,10, 0x4c7a80,3, 0x4c8000,19, 0x4c8a00,10, 0x4c8a80,3, 0x4c9000,19, 0x4ca000,19, 0x4ca080,19, 0x4ca100,3, 0x4caa00,10, 0x4caa80,3, 0x4cb000,19, 0x4cc000,19, 0x4cd000,19, 0x4cda00,10, 0x4cda80,3, 0x4ce000,35, 0x4cea00,10, 0x4cea80,3, 0x4ceac0,1, 0x4cf000,35, 0x4cfa00,10, 0x4cfa80,3, 0x4d0000,19, 0x4d0a00,10, 0x4d0a80,3, 0x4d1000,35, 0x4d1a00,10, 0x4d1a80,3, 0x4d1ac0,1, 0x500000,1, 0x50000c,5, 0x500044,1, 0x500054,5, 0x500200,128, 0x500404,1, 0x500428,54, 0x500600,32, 0x500704,1, 0x500800,1, 0x500900,1, 0x500a00,2, 0x500a20,3, 0x500a80,10, 0x500b00,19, 0x500c00,1, 0x600000,9, 0x600040,1, 0x600050,2, 0x6003fc,15, 0x60043c,2, 0x600448,1, 0x600458,6, 0x600474,1, 0x600480,3, 0x600490,3, 0x6004a8,2, 0x6004c0,1, 0x600538,9, 0x600568,1, 0x600580,8, 0x6005c0,1, 0x600680,5, 0x600698,1, 0x6006a0,21, 0x600700,9, 0x600728,7, 0x600780,4, 0x6007fc,5, 0x600818,1, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX8.csv0000644000175000017500000051743614522641732022263 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16384, 0x080000,7, 0x080020,18, 0x080080,4, 0x0800a0,5, 0x0800c0,15, 0x080100,2, 0x080110,1, 0x08011c,2, 0x08012c,2, 0x08013c,3, 0x080180,2, 0x080190,3, 0x0801a0,3, 0x080200,6, 0x080220,6, 0x080240,13, 0x080280,6, 0x0802a0,6, 0x0802c0,13, 0x080300,1, 0x080308,1, 0x080310,1, 0x080318,1, 0x080320,1, 0x080404,5, 0x080504,1, 0x080574,36, 0x080800,2, 0x080904,1, 0x080974,37, 0x080a24,1, 0x080a34,3, 0x080c00,2, 0x080d04,1, 0x080d74,37, 0x080e24,1, 0x080e30,6, 0x080e64,1, 0x080e70,6, 0x080ea4,1, 0x080eb0,6, 0x080ee4,1, 0x080ef4,3, 0x081000,1, 0x081010,4, 0x081024,6, 0x081040,6, 0x081060,2, 0x081074,3, 0x081084,1, 0x08108c,5, 0x0810c0,5, 0x0810fc,3, 0x08110c,1, 0x081114,8, 0x081140,3, 0x081150,13, 0x08118c,5, 0x081200,2, 0x081300,54, 0x081404,3, 0x081480,13, 0x0814b8,7, 0x081500,6, 0x081580,2, 0x0815c4,1, 0x0815e4,12, 0x081620,3, 0x081630,1, 0x081800,5, 0x081820,1, 0x081840,5, 0x081860,1, 0x081880,5, 0x0818a0,1, 0x0818c0,5, 0x0818e0,1, 0x081900,5, 0x081920,1, 0x081940,5, 0x081960,1, 0x081980,5, 0x0819a0,1, 0x0819c0,5, 0x0819e0,1, 0x081a00,5, 0x081a20,1, 0x081a40,5, 0x081a60,1, 0x081a80,5, 0x081aa0,1, 0x081ac0,5, 0x081ae0,1, 0x081b00,5, 0x081b20,1, 0x081b40,5, 0x081b60,1, 0x081b80,5, 0x081ba0,1, 0x081bc0,5, 0x081be0,1, 0x081c00,5, 0x081c20,1, 0x081c40,5, 0x081c60,1, 0x081c80,5, 0x081ca0,1, 0x081cc0,5, 0x081ce0,1, 0x081d00,5, 0x081d20,1, 0x081d40,5, 0x081d60,1, 0x081d80,5, 0x081da0,1, 0x081dc0,5, 0x081de0,1, 0x081e00,5, 0x081e20,1, 0x081e40,5, 0x081e60,1, 0x081e80,5, 0x081ea0,1, 0x081ec0,5, 0x081ee0,1, 0x081f00,5, 0x081f20,1, 0x081f40,5, 0x081f60,1, 0x081f80,5, 0x081fa0,1, 0x081fc0,5, 0x081fe0,1, 0x082000,5, 0x082018,16, 0x082060,23, 0x0820c0,2, 0x0820d0,1, 0x0820dc,2, 0x0820ec,3, 0x082100,2, 0x082110,3, 0x082120,3, 0x082180,6, 0x0821a0,6, 0x0821c0,13, 0x082200,1, 0x082208,1, 0x082404,4, 0x082504,1, 0x082574,35, 0x082604,1, 0x082674,35, 0x082704,2, 0x082800,1, 0x082810,10, 0x082840,1, 0x082850,9, 0x082878,4, 0x082894,3, 0x0828a4,1, 0x0828ac,10, 0x0828fc,6, 0x082920,3, 0x082930,9, 0x082980,2, 0x0829c4,1, 0x0829e4,7, 0x083000,5, 0x083020,1, 0x083040,5, 0x083060,1, 0x083080,5, 0x0830a0,1, 0x0830c0,5, 0x0830e0,1, 0x083100,5, 0x083120,1, 0x083140,5, 0x083160,1, 0x083180,5, 0x0831a0,1, 0x0831c0,5, 0x0831e0,1, 0x083200,5, 0x083220,1, 0x083240,5, 0x083260,1, 0x083280,5, 0x0832a0,1, 0x0832c0,5, 0x0832e0,1, 0x083300,5, 0x083320,1, 0x083340,5, 0x083360,1, 0x083380,5, 0x0833a0,1, 0x0833c0,5, 0x0833e0,1, 0x083400,5, 0x083420,1, 0x083440,5, 0x083460,1, 0x083480,5, 0x0834a0,1, 0x0834c0,5, 0x0834e0,1, 0x083500,5, 0x083520,1, 0x083540,5, 0x083560,1, 0x083580,5, 0x0835a0,1, 0x0835c0,5, 0x0835e0,1, 0x083600,5, 0x083620,1, 0x083640,5, 0x083660,1, 0x083680,5, 0x0836a0,1, 0x0836c0,5, 0x0836e0,1, 0x083700,5, 0x083720,1, 0x083740,5, 0x083760,1, 0x083780,5, 0x0837a0,1, 0x0837c0,5, 0x0837e0,1, 0x084000,5, 0x084018,16, 0x084060,23, 0x0840c0,2, 0x0840d0,1, 0x0840dc,2, 0x0840ec,3, 0x084100,2, 0x084110,3, 0x084120,3, 0x084180,6, 0x0841a0,6, 0x0841c0,13, 0x084200,1, 0x084208,1, 0x084404,4, 0x084504,1, 0x084574,35, 0x084604,1, 0x084674,35, 0x084704,2, 0x084800,1, 0x084810,10, 0x084840,1, 0x084850,9, 0x084878,4, 0x084894,3, 0x0848a4,1, 0x0848ac,10, 0x0848fc,6, 0x084920,3, 0x084930,9, 0x084980,2, 0x0849c4,1, 0x0849e4,7, 0x085000,5, 0x085020,1, 0x085040,5, 0x085060,1, 0x085080,5, 0x0850a0,1, 0x0850c0,5, 0x0850e0,1, 0x085100,5, 0x085120,1, 0x085140,5, 0x085160,1, 0x085180,5, 0x0851a0,1, 0x0851c0,5, 0x0851e0,1, 0x085200,5, 0x085220,1, 0x085240,5, 0x085260,1, 0x085280,5, 0x0852a0,1, 0x0852c0,5, 0x0852e0,1, 0x085300,5, 0x085320,1, 0x085340,5, 0x085360,1, 0x085380,5, 0x0853a0,1, 0x0853c0,5, 0x0853e0,1, 0x085400,5, 0x085420,1, 0x085440,5, 0x085460,1, 0x085480,5, 0x0854a0,1, 0x0854c0,5, 0x0854e0,1, 0x085500,5, 0x085520,1, 0x085540,5, 0x085560,1, 0x085580,5, 0x0855a0,1, 0x0855c0,5, 0x0855e0,1, 0x085600,5, 0x085620,1, 0x085640,5, 0x085660,1, 0x085680,5, 0x0856a0,1, 0x0856c0,5, 0x0856e0,1, 0x085700,5, 0x085720,1, 0x085740,5, 0x085760,1, 0x085780,5, 0x0857a0,1, 0x0857c0,5, 0x0857e0,1, 0x086000,5, 0x086018,15, 0x086080,4, 0x0860a0,5, 0x0860c0,15, 0x086100,2, 0x086110,1, 0x08611c,2, 0x08612c,3, 0x086140,2, 0x086150,3, 0x086160,3, 0x086180,6, 0x0861a0,6, 0x0861c0,13, 0x086200,1, 0x086208,1, 0x086404,4, 0x086504,1, 0x086574,35, 0x086604,1, 0x086674,37, 0x086724,1, 0x086734,5, 0x086764,1, 0x08676c,7, 0x0867a4,1, 0x0867b4,5, 0x0867e4,1, 0x0867f4,5, 0x086824,1, 0x08682c,7, 0x086864,1, 0x086874,5, 0x0868a4,1, 0x0868b4,5, 0x086a00,2, 0x086a84,1, 0x086ab8,25, 0x086c00,4, 0x086d00,34, 0x086e00,1, 0x086e10,11, 0x086e40,4, 0x086e64,1, 0x086e6c,9, 0x086e94,5, 0x086ec0,5, 0x086efc,2, 0x086f10,3, 0x086f20,9, 0x087000,71, 0x087120,7, 0x087200,5, 0x087220,1, 0x087240,5, 0x087260,1, 0x087280,5, 0x0872a0,1, 0x0872c0,5, 0x0872e0,1, 0x087300,5, 0x087320,1, 0x087340,5, 0x087360,1, 0x087380,5, 0x0873a0,1, 0x0873c0,5, 0x0873e0,1, 0x087400,6, 0x087420,6, 0x087440,5, 0x088000,4, 0x088014,3, 0x088040,6, 0x088060,14, 0x0880a0,8, 0x088200,89, 0x088370,4, 0x088400,2, 0x088410,3, 0x088440,4, 0x088460,5, 0x088480,4, 0x0884a0,5, 0x0884c0,4, 0x0884e0,5, 0x088500,6, 0x088520,7, 0x088540,7, 0x088560,7, 0x088580,7, 0x0885a0,6, 0x0885c0,14, 0x088600,6, 0x088620,6, 0x088640,9, 0x088800,27, 0x088880,4, 0x0888c0,25, 0x088940,6, 0x088960,2, 0x08896c,3, 0x088984,19, 0x088a00,1, 0x088a08,4, 0x088a20,1, 0x088c00,1, 0x088c08,1, 0x088c10,1, 0x088c18,1, 0x088c20,1, 0x088c28,1, 0x088c30,1, 0x088c38,1, 0x088c40,1, 0x088c48,1, 0x088c50,1, 0x088c58,1, 0x088c60,1, 0x088c68,1, 0x088c70,1, 0x088c78,1, 0x088c80,10, 0x088cb0,21, 0x088d20,7, 0x088e04,2, 0x088e10,2, 0x088f00,39, 0x089000,9, 0x089030,13, 0x089070,13, 0x0890b0,13, 0x0890f0,13, 0x089130,13, 0x089170,13, 0x0891b0,13, 0x0891f0,5, 0x089400,4, 0x089800,2, 0x089824,1, 0x089830,5, 0x089880,2, 0x0898a4,1, 0x0898b0,5, 0x089900,2, 0x089944,1, 0x089958,11, 0x089a00,2, 0x089a24,1, 0x089a30,5, 0x090000,7, 0x090020,7, 0x090040,1, 0x090048,4, 0x090060,1, 0x090068,4, 0x090080,5, 0x0900a4,3, 0x0900c0,5, 0x0900e4,3, 0x090100,5, 0x090124,3, 0x090140,5, 0x090164,3, 0x090180,16, 0x0901c4,1, 0x0901cc,1, 0x0901d4,1, 0x0901dc,3, 0x090200,4, 0x090220,1, 0x090228,4, 0x090240,1, 0x090248,4, 0x090260,1, 0x090268,4, 0x090280,1, 0x090288,4, 0x0902a0,2, 0x090300,4, 0x090320,1, 0x090328,4, 0x090340,1, 0x090348,4, 0x090360,1, 0x090368,4, 0x090380,1, 0x090388,4, 0x0903a0,2, 0x090400,12, 0x090600,1, 0x090620,1, 0x090628,4, 0x090640,1, 0x090648,4, 0x090660,1, 0x090668,4, 0x090680,1, 0x090688,4, 0x0906a0,1, 0x0906a8,4, 0x0906c0,1, 0x0906c8,4, 0x0906e0,1, 0x0906e8,4, 0x090700,1, 0x090708,4, 0x090720,8, 0x090800,57, 0x0908e8,2, 0x090900,4, 0x090920,5, 0x090940,7, 0x09097c,1, 0x090984,1, 0x09098c,1, 0x0909a4,1, 0x0909ac,5, 0x0909c4,5, 0x0909e4,4, 0x090a04,5, 0x090a24,4, 0x090a40,1, 0x090a50,5, 0x090a70,10, 0x090aa0,6, 0x090ac0,6, 0x090ae0,4, 0x090b00,6, 0x090b20,6, 0x090b40,1, 0x090b48,8, 0x090b80,5, 0x090ba4,3, 0x090bc0,5, 0x090be4,3, 0x090c00,1, 0x090c20,9, 0x090c60,8, 0x090c84,1, 0x090c8c,2, 0x090c9c,1, 0x090cc4,1, 0x090cd0,4, 0x090ce4,1, 0x090cf4,3, 0x090d04,1, 0x090d0c,1, 0x090d20,1, 0x090d28,4, 0x090d40,1, 0x090d48,4, 0x090d60,1, 0x090d68,4, 0x090d80,1, 0x090d88,4, 0x090da0,1, 0x090da8,4, 0x090dc0,1, 0x090dc8,4, 0x090de0,1, 0x090e04,1, 0x090e18,10, 0x090e84,1, 0x090eb8,21, 0x090f10,3, 0x090f20,3, 0x090f40,8, 0x090f64,1, 0x092008,5, 0x092024,3, 0x092034,1, 0x09203c,1, 0x092044,1, 0x09204c,1, 0x092054,1, 0x09205c,2, 0x09206c,1, 0x092074,1, 0x09207c,1, 0x092084,3, 0x0920a0,6, 0x0920c0,1, 0x0920cc,1, 0x0920d8,1, 0x0920e4,1, 0x0920f0,1, 0x092104,4, 0x092120,6, 0x092140,1, 0x092148,4, 0x092164,5, 0x092180,7, 0x092200,11, 0x092280,6, 0x0922a0,6, 0x0922c0,13, 0x092300,6, 0x092320,6, 0x092340,13, 0x092380,6, 0x0923a0,6, 0x0923c0,13, 0x092400,6, 0x092420,6, 0x092440,13, 0x092500,6, 0x092520,6, 0x092540,17, 0x092600,6, 0x092620,6, 0x092640,17, 0x092700,6, 0x092720,6, 0x092740,17, 0x092800,6, 0x092820,1, 0x092834,3, 0x092844,1, 0x09284c,1, 0x092854,1, 0x09285c,2, 0x09286c,2, 0x092878,13, 0x093000,1, 0x09300c,2, 0x093024,3, 0x093034,1, 0x09303c,1, 0x093044,1, 0x09304c,2, 0x09305c,1, 0x093068,1, 0x093074,1, 0x093084,4, 0x0930a4,1, 0x0930ac,1, 0x0930b4,3, 0x0930c4,3, 0x093100,1, 0x093114,3, 0x093140,3, 0x093150,1, 0x093164,3, 0x093180,8, 0x0931bc,2, 0x0931c8,4, 0x0931e0,4, 0x093200,14, 0x093240,6, 0x093260,12, 0x0932a0,5, 0x0932c0,1, 0x0932c8,4, 0x0932e0,2, 0x0932f4,1, 0x0932fc,9, 0x094004,7, 0x094024,7, 0x094044,7, 0x094064,11, 0x094100,1, 0x094108,6, 0x094140,2, 0x094164,1, 0x094174,9, 0x0941a0,7, 0x0941c0,6, 0x0941e0,6, 0x094204,1, 0x09420c,2, 0x094400,1, 0x094420,6, 0x094440,3, 0x094454,1, 0x094464,3, 0x094500,2, 0x094584,1, 0x0945b8,18, 0x094604,1, 0x094680,2, 0x0946c4,15, 0x095000,2, 0x095024,1, 0x095030,9, 0x095064,1, 0x09506c,4, 0x095080,2, 0x0950a0,1, 0x0950a8,4, 0x0950c0,6, 0x0950e0,3, 0x0950f0,3, 0x095200,2, 0x095224,11, 0x095260,6, 0x095280,39, 0x09533c,1, 0x095344,3, 0x095354,3, 0x095364,1, 0x09536c,1, 0x095380,1, 0x095388,4, 0x0953a0,3, 0x0953b0,3, 0x0953c4,1, 0x0953cc,1, 0x0953d4,1, 0x0953dc,2, 0x095400,4, 0x095420,1, 0x095428,4, 0x095440,1, 0x095448,4, 0x095460,1, 0x095468,4, 0x095480,1, 0x095488,4, 0x0954a0,2, 0x095504,5, 0x095524,4, 0x095540,1, 0x095550,7, 0x095580,6, 0x0955a0,15, 0x095604,1, 0x095610,35, 0x0956a0,7, 0x0956c0,7, 0x0956e0,3, 0x0956f0,3, 0x095700,1, 0x095780,1, 0x095790,4, 0x0957a4,1, 0x0957ac,8, 0x095800,3, 0x095810,1, 0x09581c,3, 0x096000,7, 0x096020,2, 0x096030,3, 0x096040,1, 0x096100,60, 0x096200,1, 0x096400,27, 0x096480,4, 0x0964c0,25, 0x096540,6, 0x096560,2, 0x09656c,3, 0x096580,8, 0x0965a4,22, 0x096600,1, 0x096680,9, 0x0966c0,3, 0x0966d0,8, 0x0a0000,64, 0x0a0200,27, 0x0a0280,4, 0x0a02c0,25, 0x0a0340,6, 0x0a0360,2, 0x0a036c,3, 0x0a0380,8, 0x0a03a4,4, 0x0a0400,5, 0x0a0420,6, 0x0a0440,3, 0x0a0480,19, 0x0a0500,1, 0x0a0508,3, 0x0a0800,64, 0x0a0a00,27, 0x0a0a80,4, 0x0a0ac0,25, 0x0a0b40,6, 0x0a0b60,2, 0x0a0b6c,3, 0x0a0b80,8, 0x0a0ba4,4, 0x0a0c00,5, 0x0a0c20,6, 0x0a0c40,3, 0x0a0c80,19, 0x0a0d00,1, 0x0a0d08,3, 0x0a1000,64, 0x0a1200,27, 0x0a1280,4, 0x0a12c0,25, 0x0a1340,6, 0x0a1360,2, 0x0a136c,3, 0x0a1380,8, 0x0a13a4,4, 0x0a1400,5, 0x0a1420,6, 0x0a1440,3, 0x0a1480,19, 0x0a1500,1, 0x0a1508,3, 0x0a1800,64, 0x0a1a00,27, 0x0a1a80,4, 0x0a1ac0,25, 0x0a1b40,6, 0x0a1b60,2, 0x0a1b6c,3, 0x0a1b80,8, 0x0a1ba4,4, 0x0a1c00,5, 0x0a1c20,6, 0x0a1c40,3, 0x0a1c80,19, 0x0a1d00,1, 0x0a1d08,3, 0x0a2000,64, 0x0a2200,27, 0x0a2280,4, 0x0a22c0,25, 0x0a2340,6, 0x0a2360,2, 0x0a236c,3, 0x0a2380,8, 0x0a23a4,4, 0x0a2400,5, 0x0a2420,6, 0x0a2440,3, 0x0a2480,19, 0x0a2500,1, 0x0a2508,3, 0x0a2800,64, 0x0a2a00,27, 0x0a2a80,4, 0x0a2ac0,25, 0x0a2b40,6, 0x0a2b60,2, 0x0a2b6c,3, 0x0a2b80,8, 0x0a2ba4,4, 0x0a2c00,5, 0x0a2c20,6, 0x0a2c40,3, 0x0a2c80,19, 0x0a2d00,1, 0x0a2d08,3, 0x0a3000,64, 0x0a3200,27, 0x0a3280,4, 0x0a32c0,25, 0x0a3340,6, 0x0a3360,2, 0x0a336c,3, 0x0a3380,8, 0x0a33a4,4, 0x0a3400,5, 0x0a3420,6, 0x0a3440,3, 0x0a3480,19, 0x0a3500,1, 0x0a3508,3, 0x0a3800,64, 0x0a3a00,27, 0x0a3a80,4, 0x0a3ac0,25, 0x0a3b40,6, 0x0a3b60,2, 0x0a3b6c,3, 0x0a3b80,8, 0x0a3ba4,4, 0x0a3c00,5, 0x0a3c20,6, 0x0a3c40,3, 0x0a3c80,19, 0x0a3d00,1, 0x0a3d08,3, 0x0a4000,113, 0x0a41e0,20, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5d60,1, 0x0b5d68,4, 0x0b5d80,1, 0x0b5d88,4, 0x0b5da0,1, 0x0b5da8,4, 0x0b5dc0,62, 0x0b5f00,5, 0x0b5f18,4, 0x0b5f40,7, 0x0b5f60,2, 0x0b5f84,1, 0x0b5f94,4, 0x0b6000,222, 0x0b6380,97, 0x0b6520,5, 0x0b6540,5, 0x0b6560,5, 0x0b6580,5, 0x0b65a0,5, 0x0b65c0,5, 0x0b65e0,5, 0x0b6600,5, 0x0b6624,4, 0x0b6700,1, 0x0b6780,6, 0x0b67a0,6, 0x0b67c0,6, 0x0b67e0,6, 0x0b6800,1, 0x0b6880,6, 0x0b68a0,6, 0x0b68c0,6, 0x0b68e0,6, 0x0b6904,4, 0x0b6924,4, 0x0b6944,1, 0x0b6950,4, 0x0b6a00,27, 0x0b6a80,4, 0x0b6ac0,25, 0x0b6b40,6, 0x0b6b60,2, 0x0b6b6c,3, 0x0b6b80,8, 0x0b6ba4,4, 0x0b7000,197, 0x0b7320,5, 0x0b7340,5, 0x0b7360,5, 0x0b7380,5, 0x0b73a0,5, 0x0b73c0,5, 0x0b73e0,5, 0x0b7400,5, 0x0b7420,5, 0x0b7440,5, 0x0b7460,5, 0x0b7480,5, 0x0b74a0,5, 0x0b74c0,5, 0x0b74e0,5, 0x0b7500,3, 0x0b7510,3, 0x0b7520,2, 0x0b7540,3, 0x0b7550,3, 0x0b7560,2, 0x0b7580,3, 0x0b7590,3, 0x0b75a0,2, 0x0b75c0,3, 0x0b75d0,3, 0x0b75e0,2, 0x0b7600,3, 0x0b7610,3, 0x0b7620,2, 0x0b7640,3, 0x0b7650,3, 0x0b7660,2, 0x0b7680,3, 0x0b7690,3, 0x0b76a0,2, 0x0b76c0,3, 0x0b76d0,3, 0x0b76e0,2, 0x0b7700,1, 0x0b7804,1, 0x0b7820,6, 0x0b7840,6, 0x0b7880,12, 0x0b78c0,6, 0x0b78e0,14, 0x0b7920,25, 0x0b7988,4, 0x0b79a0,2, 0x0b79c0,9, 0x0b79e8,2, 0x0b7a00,1, 0x0b8000,8, 0x0b8100,4, 0x0b8180,18, 0x0b8200,4, 0x0b8280,18, 0x0b8300,4, 0x0b8380,18, 0x0b8400,4, 0x0b8480,18, 0x0b8500,4, 0x0b8580,18, 0x0b8600,4, 0x0b8680,18, 0x0b8700,4, 0x0b8780,18, 0x0b8800,27, 0x0b8880,4, 0x0b88c0,25, 0x0b8940,6, 0x0b8960,2, 0x0b896c,3, 0x0b8980,8, 0x0b89a4,1, 0x0b9000,124, 0x0b9200,2, 0x0b9210,3, 0x0ba000,12, 0x0ba040,6, 0x0ba060,6, 0x0ba080,6, 0x0ba0a0,6, 0x0ba0c0,28, 0x0ba200,39, 0x0ba2a4,4, 0x0ba300,27, 0x0ba370,2, 0x0ba380,25, 0x0ba3e8,2, 0x0ba400,27, 0x0ba470,2, 0x0ba480,11, 0x0ba4b0,2, 0x0ba500,50, 0x0ba5d0,4, 0x0ba600,13, 0x0ba638,2, 0x0ba800,62, 0x0ba900,4, 0x0baa00,15, 0x0baa40,2, 0x0baa80,7, 0x0baaa0,2, 0x0baac0,13, 0x0baaf8,31, 0x0bab78,15, 0x0babb8,2, 0x0bac00,62, 0x0bad00,4, 0x0bae00,27, 0x0bae70,2, 0x0bae80,7, 0x0baea0,2, 0x0baec0,5, 0x0baed8,2, 0x0baf00,7, 0x0baf20,2, 0x0baf40,9, 0x0baf68,2, 0x0bb000,27, 0x0bb080,4, 0x0bb0c0,25, 0x0bb140,6, 0x0bb160,2, 0x0bb16c,3, 0x0bb180,8, 0x0bb1a4,4, 0x0bb200,4, 0x0bb280,23, 0x0bb300,4, 0x0bb380,23, 0x0bb400,4, 0x0bb480,23, 0x0bb500,4, 0x0bb580,23, 0x0bb600,4, 0x0bb680,23, 0x0bb700,4, 0x0bb780,23, 0x0bb800,4, 0x0bb880,23, 0x0bb900,4, 0x0bb980,23, 0x0bba00,4, 0x0bba80,23, 0x0bbb00,4, 0x0bbb80,23, 0x0bbc00,4, 0x0bbc80,23, 0x0bbd00,4, 0x0bbd80,23, 0x0c0000,55, 0x0c00e0,9, 0x0c0108,5, 0x0c0120,35, 0x0c0200,55, 0x0c02e0,9, 0x0c0308,5, 0x0c0320,35, 0x0c0400,55, 0x0c04e0,9, 0x0c0508,5, 0x0c0520,35, 0x0c0600,55, 0x0c06e0,9, 0x0c0708,5, 0x0c0720,35, 0x0c0800,110, 0x0c09c0,10, 0x0c0a00,10, 0x0c0a40,10, 0x0c0a80,10, 0x0c0ac0,4, 0x0c0c00,2, 0x0c0c80,20, 0x0c0d00,3, 0x0c0e00,3, 0x0c0e20,1, 0x0c0e28,4, 0x0c1000,25, 0x0c106c,1, 0x0c1080,11, 0x0c1100,25, 0x0c116c,1, 0x0c1180,11, 0x0c1200,25, 0x0c126c,1, 0x0c1280,11, 0x0c1300,25, 0x0c136c,1, 0x0c1380,11, 0x0c1400,3, 0x0c1410,20, 0x0c1480,1, 0x0c1488,5, 0x0c1800,2, 0x0c2000,7, 0x0c2020,7, 0x0c2040,7, 0x0c2060,7, 0x0c2080,33, 0x0c2120,6, 0x0c2140,6, 0x0c2184,1, 0x0c218c,4, 0x0c21a0,6, 0x0c21c0,7, 0x0c2200,2, 0x0c2214,5, 0x0c2234,5, 0x0c2254,5, 0x0c2274,5, 0x0c2300,12, 0x0c2340,5, 0x0c8000,2, 0x0c8104,1, 0x0c8174,37, 0x0c8284,1, 0x0c82b8,20, 0x0c8384,1, 0x0c83b8,36, 0x0c8480,64, 0x0c8600,1, 0x0c8608,6, 0x0c8624,1, 0x0c8680,3, 0x0c86a0,1, 0x0c86a8,4, 0x0c8700,1, 0x0c8714,1, 0x0c871c,2, 0x0c8804,1, 0x0c8880,64, 0x0c8984,1, 0x0c8994,3, 0x0c89a4,1, 0x0c89ac,9, 0x0c8a04,3, 0x0c8a14,7, 0x0c8a40,3, 0x0c8a60,5, 0x0c8a80,1, 0x0c8ac0,21, 0x0c8b20,5, 0x0c8b40,5, 0x0c8b60,5, 0x0c8b80,5, 0x0c8c00,7, 0x0c8c20,7, 0x0c8c40,7, 0x0c8c60,7, 0x0c8c80,10, 0x0c8e00,2, 0x0c8f04,1, 0x0c8f28,56, 0x0c9104,1, 0x0c9178,34, 0x0ca000,9, 0x0ca404,1, 0x0ca40c,1, 0x0ca484,1, 0x0ca4c0,16, 0x0ca504,1, 0x0ca50c,5, 0x0ca524,1, 0x0ca52c,1, 0x0ca544,1, 0x0ca564,7, 0x0ca584,1, 0x0ca590,28, 0x0ca604,1, 0x0ca60c,4, 0x0ca800,10, 0x0ca834,5, 0x0cb000,8, 0x0cb404,1, 0x0cb410,4, 0x0cb424,1, 0x0cb430,4, 0x0cb504,1, 0x0cb528,54, 0x0cb604,3, 0x0cb614,1, 0x0cb61c,1, 0x0cb624,1, 0x0cb62c,5, 0x0cb800,20, 0x0cb880,12, 0x0cb8c0,12, 0x0cb900,19, 0x0cb980,10, 0x0cc000,37, 0x0cc200,3, 0x0cc400,2, 0x0cc504,1, 0x0cc570,36, 0x0cc800,2, 0x0cc814,3, 0x0d0000,7, 0x0d0020,7, 0x0d0040,7, 0x0d0100,4, 0x0d0180,17, 0x0d0200,7, 0x0d0220,7, 0x0d0240,7, 0x0d0260,7, 0x0d0300,4, 0x0d0380,28, 0x0d0400,4, 0x0d0500,61, 0x0d0600,6, 0x0d0620,7, 0x0d0640,7, 0x0d0660,7, 0x0d0680,7, 0x0d06a0,7, 0x0d06c0,7, 0x0d06e0,6, 0x0d0700,2, 0x0d070c,3, 0x0d0720,3, 0x0d0730,1, 0x0d0780,7, 0x0d07a0,7, 0x0d07c0,1, 0x0d0800,3, 0x0d0810,3, 0x0d0820,1, 0x0d0840,3, 0x0d0850,3, 0x0d0860,1, 0x0d0880,3, 0x0d0890,3, 0x0d08a0,1, 0x0d08c0,3, 0x0d08d0,3, 0x0d08e0,1, 0x0d0900,3, 0x0d0910,3, 0x0d0920,1, 0x0d0940,3, 0x0d0950,3, 0x0d0960,1, 0x0d0980,3, 0x0d0990,3, 0x0d09a0,1, 0x0d0a00,17, 0x0d0a80,3, 0x0d0a90,3, 0x0d0aa0,1, 0x0d0ac0,9, 0x0d0c00,8, 0x0d0e00,27, 0x0d0e80,4, 0x0d0ec0,25, 0x0d0f40,6, 0x0d0f60,2, 0x0d0f6c,3, 0x0d1000,120, 0x0d11e4,1, 0x0d11f0,5, 0x0d1208,4, 0x0d1220,1, 0x0d1228,4, 0x0d1240,2, 0x0d1300,2, 0x0d1400,34, 0x0d1604,5, 0x0d1680,18, 0x0d1700,7, 0x0d4000,10, 0x0d4034,515, 0x0d5000,5, 0x0d5024,67, 0x0d6000,10, 0x0d6034,515, 0x0d7004,1, 0x0d700c,11, 0x0d7040,34, 0x0d8000,67, 0x0d8110,3, 0x0d8120,3, 0x0d8130,3, 0x0d8200,67, 0x0d8310,3, 0x0d8320,3, 0x0d8330,3, 0x0d8400,67, 0x0d8510,3, 0x0d8520,3, 0x0d8530,3, 0x0d8600,67, 0x0d8710,3, 0x0d8720,3, 0x0d8730,3, 0x0d8800,67, 0x0d8910,3, 0x0d8920,3, 0x0d8930,3, 0x0d8a00,67, 0x0d8b10,3, 0x0d8b20,3, 0x0d8b30,3, 0x0d8c00,67, 0x0d8d10,3, 0x0d8d20,3, 0x0d8d30,3, 0x0d8e00,67, 0x0d8f10,3, 0x0d8f20,3, 0x0d8f30,3, 0x0d9000,67, 0x0d9110,3, 0x0d9120,3, 0x0d9130,3, 0x0d9200,1, 0x0da000,1, 0x0da084,1, 0x0da0c0,17, 0x0da180,2, 0x0da1c4,1, 0x0da1e4,9, 0x0da244,1, 0x0da264,9, 0x0da2c4,1, 0x0da2e4,9, 0x0da344,1, 0x0da364,9, 0x0da3c4,1, 0x0da3e4,8, 0x0da800,9, 0x0da840,11, 0x0da880,11, 0x0da8c0,11, 0x0da900,11, 0x0da984,1, 0x0da9c0,39, 0x0daa64,3, 0x0daa74,1, 0x0daa7c,3, 0x0dab00,4, 0x0dab14,1, 0x0dab1c,5, 0x0dab40,19, 0x0daba0,1, 0x0daba8,4, 0x0dac00,3, 0x0dac10,3, 0x0dac20,3, 0x0dac30,3, 0x0dac40,3, 0x0dac50,3, 0x0dac60,3, 0x0dac70,3, 0x0dac80,3, 0x0dac90,2, 0x0dad04,1, 0x0dad40,26, 0x0dae04,1, 0x0dae14,5, 0x0dae34,1, 0x0dae3c,7, 0x0db000,36, 0x0db200,27, 0x0db280,4, 0x0db2c0,25, 0x0db340,6, 0x0db360,2, 0x0db36c,3, 0x0db380,8, 0x0db3a4,5, 0x0db400,7, 0x0db420,6, 0x0db440,7, 0x0db460,8, 0x0dc000,2, 0x0dc010,10, 0x0dc040,28, 0x0dc0c0,6, 0x0dc0e0,6, 0x0dc100,1, 0x0dc140,9, 0x0dc17c,10, 0x0dc1bc,1, 0x0dc200,4, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0160,2, 0x0e0180,4, 0x0e019c,18, 0x0e01ec,4, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0240,1, 0x0e027c,9, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0560,2, 0x0e0580,4, 0x0e059c,18, 0x0e05ec,4, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0640,1, 0x0e067c,9, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0960,2, 0x0e0980,4, 0x0e099c,18, 0x0e09ec,4, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0a40,1, 0x0e0a7c,9, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d60,2, 0x0e0d80,4, 0x0e0d9c,18, 0x0e0dec,4, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e0e40,1, 0x0e0e7c,9, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1160,2, 0x0e1180,4, 0x0e119c,18, 0x0e11ec,4, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1240,1, 0x0e127c,9, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1560,2, 0x0e1580,4, 0x0e159c,18, 0x0e15ec,4, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1640,1, 0x0e167c,9, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1960,2, 0x0e1980,4, 0x0e199c,18, 0x0e19ec,4, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1a40,1, 0x0e1a7c,9, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d60,2, 0x0e1d80,4, 0x0e1d9c,18, 0x0e1dec,4, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e1e40,1, 0x0e1e7c,9, 0x0e2000,3, 0x0e2018,2, 0x0e2024,13, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,9, 0x0e2140,3, 0x0e2160,2, 0x0e2180,4, 0x0e219c,18, 0x0e21ec,4, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2240,1, 0x0e227c,9, 0x0e2400,3, 0x0e2418,2, 0x0e2424,13, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,9, 0x0e2540,3, 0x0e2560,2, 0x0e2580,4, 0x0e259c,18, 0x0e25ec,4, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2640,1, 0x0e267c,9, 0x0e2800,3, 0x0e2818,2, 0x0e2824,13, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,9, 0x0e2940,3, 0x0e2960,2, 0x0e2980,4, 0x0e299c,18, 0x0e29ec,4, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e2a40,1, 0x0e2a7c,9, 0x0e2c00,1, 0x0e3044,12, 0x0e3078,1, 0x0e3200,17, 0x0e3248,4, 0x0e3260,4, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,4, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,4, 0x0e3300,1, 0x0e3308,4, 0x0e3320,4, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,22, 0x0e3500,90, 0x0e366c,2, 0x0e3800,6, 0x0e3820,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,1, 0x0e3b94,6, 0x0e3c40,71, 0x0e4004,16, 0x0e4048,3, 0x0e4100,2, 0x0e4184,1, 0x0e41bc,84, 0x0e4340,36, 0x0e4400,4, 0x0e4484,1, 0x0e44c0,20, 0x0e4584,1, 0x0e45c0,16, 0x0e4900,7, 0x0e4920,2, 0x0e4940,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c04,1, 0x0e4df8,156, 0x0e5084,1, 0x0e50a0,22, 0x0e5100,1, 0x0e5200,26, 0x0e5280,9, 0x0e5300,12, 0x0e5380,27, 0x0e5400,39, 0x0e54a0,66, 0x0e55c0,1, 0x0e55c8,4, 0x0e55e0,4, 0x0e5600,2, 0x0e5614,3, 0x0e5640,5, 0x0e5680,4, 0x0e56a0,13, 0x0e56e0,12, 0x0e5780,28, 0x0e5800,20, 0x0e5880,1, 0x0e58a0,7, 0x0e58c0,11, 0x0e58f0,3, 0x0e5a00,99, 0x0e5c00,28, 0x0e5d00,45, 0x0e5e00,4, 0x0e5e20,1, 0x0e5e28,4, 0x0e5e40,1, 0x0e5e48,4, 0x0e5e80,4, 0x0e5ec0,13, 0x0e6000,132, 0x0e6400,5, 0x0e6418,96, 0x0e65a0,30, 0x0e6800,3, 0x0e6810,3, 0x0e6820,3, 0x0e6830,3, 0x0e6840,3, 0x0e6850,3, 0x0e6860,1, 0x0e6868,4, 0x0e6884,1, 0x0e688c,1, 0x0e6894,1, 0x0e689c,10, 0x0e6a00,3, 0x0e6a10,3, 0x0e6a20,3, 0x0e6a30,3, 0x0e6a40,3, 0x0e6a50,3, 0x0e6a60,3, 0x0e6a70,3, 0x0e6a80,3, 0x0e6a90,3, 0x0e6aa0,3, 0x0e6ab0,3, 0x0e6ac0,3, 0x0e6ad0,3, 0x0e6ae0,3, 0x0e6af0,3, 0x0e6b00,3, 0x0e6b10,3, 0x0e6b20,3, 0x0e6b30,3, 0x0e6b40,3, 0x0e6b50,3, 0x0e6b60,3, 0x0e6b70,3, 0x0e6b80,3, 0x0e6b90,3, 0x0e6ba0,3, 0x0e6bb0,3, 0x0e6bc0,3, 0x0e6bd0,3, 0x0e6be0,3, 0x0e6bf0,3, 0x0e6c00,1, 0x0e8000,11, 0x0e8030,1, 0x0e8080,2, 0x0e80c4,2, 0x0e80d0,1, 0x0e80d8,1, 0x0e80e0,1, 0x0e80f4,3, 0x0e9000,128, 0x0e9208,256, 0x0e9610,145, 0x0ea000,24, 0x0ea078,1, 0x0ea080,1, 0x0f0000,1, 0x0f000c,4, 0x0f0020,7, 0x0f0040,2, 0x0f0404,1, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,7, 0x0f04a0,7, 0x0f04c0,7, 0x0f04e0,10, 0x0f0800,5, 0x0f0a00,27, 0x0f0a80,3, 0x0f1004,1, 0x0f138c,285, 0x0f2000,112, 0x0f2228,8, 0x0f22a8,8, 0x0f2328,8, 0x0f23a8,8, 0x0f2428,8, 0x0f24a8,8, 0x0f2528,8, 0x0f25a8,8, 0x0f2628,8, 0x0f26a8,8, 0x0f2700,3, 0x0f2710,3, 0x0f2720,17, 0x0f2800,84, 0x0f3000,1, 0x0f3080,18, 0x0f3100,1, 0x0f3200,2, 0x0f3210,3, 0x0f3220,3, 0x0f3230,3, 0x0f3240,3, 0x0f3250,3, 0x0f3260,3, 0x0f3270,3, 0x0f3280,3, 0x0f3290,3, 0x0f32a0,3, 0x0f32b0,3, 0x0f32c0,3, 0x0f32d0,3, 0x0f32e0,3, 0x0f32f0,3, 0x0f3300,3, 0x0f4000,48, 0x0f4400,2, 0x0f4410,3, 0x0f4420,3, 0x0f4430,3, 0x0f4440,3, 0x0f4450,3, 0x0f4460,3, 0x0f4470,3, 0x0f4480,3, 0x0f4490,3, 0x0f44a0,3, 0x0f44b0,3, 0x0f44c0,3, 0x0f44d0,3, 0x0f44e0,3, 0x0f44f0,3, 0x0f4500,3, 0x0f4600,5, 0x0f4800,8, 0x0f4900,2, 0x0f4910,3, 0x0f4920,3, 0x0f4930,3, 0x0f4940,3, 0x0f4950,3, 0x0f4960,3, 0x0f4970,3, 0x0f4980,3, 0x0f4a00,3, 0x0f5000,15, 0x0f5040,3, 0x0f5080,14, 0x0f50c0,3, 0x0f5100,15, 0x0f5140,3, 0x0f5180,15, 0x0f51c0,3, 0x0f5200,2, 0x0f5240,15, 0x0f5280,1, 0x0f5400,2, 0x0f5410,3, 0x0f5420,3, 0x0f5430,3, 0x0f5440,3, 0x0f5450,3, 0x0f5460,3, 0x0f5470,3, 0x0f5480,3, 0x0f5500,1, 0x0f5510,2, 0x0f5524,1, 0x0f5534,3, 0x0f5544,3, 0x0f5554,1, 0x0f555c,1, 0x0f5564,1, 0x0f556c,1, 0x0f5580,19, 0x0f5600,5, 0x0f5640,9, 0x0f5680,9, 0x0f56c0,20, 0x0f5720,3, 0x0f5730,2, 0x0f5740,9, 0x0f5780,3, 0x0f57a0,8, 0x0f5800,6, 0x0f5820,7, 0x0f5840,6, 0x0f5860,7, 0x0f5880,3, 0x0f58a0,6, 0x0f58c0,2, 0x0f58cc,2, 0x0f58e0,2, 0x0f58ec,2, 0x0f5900,1, 0x0f5a00,2, 0x0f5b00,2, 0x0f5b20,14, 0x0f5b60,9, 0x0f5c00,3, 0x0f5c20,9, 0x0f5c80,1, 0x0f5ca0,16, 0x0f5d00,4, 0x0f6004,1, 0x0f6080,34, 0x0f6110,10, 0x0f613c,3, 0x0f6204,1, 0x0f6280,36, 0x0f6314,1, 0x0f6400,20, 0x0f6480,9, 0x0f6804,1, 0x0f6880,34, 0x0f6910,10, 0x0f693c,3, 0x0f6a04,1, 0x0f6a80,36, 0x0f6b14,1, 0x0f6c00,20, 0x0f6c80,9, 0x0f7004,1, 0x0f7080,34, 0x0f7110,10, 0x0f713c,3, 0x0f7204,1, 0x0f7280,36, 0x0f7314,1, 0x0f7400,20, 0x0f7480,9, 0x0f7804,1, 0x0f7880,34, 0x0f7910,10, 0x0f793c,3, 0x0f7a04,1, 0x0f7a80,36, 0x0f7b14,1, 0x0f7c00,20, 0x0f7c80,9, 0x0f8004,1, 0x0f8080,34, 0x0f8110,10, 0x0f813c,3, 0x0f8204,1, 0x0f8280,36, 0x0f8314,1, 0x0f8400,20, 0x0f8480,9, 0x0f8804,1, 0x0f8880,34, 0x0f8910,10, 0x0f893c,3, 0x0f8a04,1, 0x0f8a80,36, 0x0f8b14,1, 0x0f8c00,20, 0x0f8c80,9, 0x0f9004,1, 0x0f9080,34, 0x0f9110,10, 0x0f913c,3, 0x0f9204,1, 0x0f9280,36, 0x0f9314,1, 0x0f9400,20, 0x0f9480,9, 0x0f9804,1, 0x0f9880,34, 0x0f9910,10, 0x0f993c,3, 0x0f9a04,1, 0x0f9a80,36, 0x0f9b14,1, 0x0f9c00,20, 0x0f9c80,9, 0x0fa004,1, 0x0fa080,34, 0x0fa110,10, 0x0fa13c,3, 0x0fa204,1, 0x0fa280,36, 0x0fa314,1, 0x0fa400,20, 0x0fa480,9, 0x0fa804,1, 0x0fa880,34, 0x0fa910,10, 0x0fa93c,3, 0x0faa04,1, 0x0faa80,36, 0x0fab14,1, 0x0fac00,20, 0x0fac80,9, 0x0fb004,1, 0x0fb080,34, 0x0fb110,10, 0x0fb13c,3, 0x0fb204,1, 0x0fb280,36, 0x0fb314,1, 0x0fb400,20, 0x0fb480,9, 0x0fb804,1, 0x0fb880,34, 0x0fb910,10, 0x0fb93c,3, 0x0fba04,1, 0x0fba80,36, 0x0fbb14,1, 0x0fbc00,20, 0x0fbc80,9, 0x0fc004,1, 0x0fc080,34, 0x0fc110,10, 0x0fc13c,3, 0x0fc204,1, 0x0fc280,36, 0x0fc314,1, 0x0fc400,20, 0x0fc480,9, 0x0fc804,1, 0x0fc880,34, 0x0fc910,10, 0x0fc93c,3, 0x0fca04,1, 0x0fca80,36, 0x0fcb14,1, 0x0fcc00,20, 0x0fcc80,9, 0x0fd000,20, 0x0fd084,1, 0x0fd08c,1, 0x0fd0c0,12, 0x0fd100,3, 0x0fd200,20, 0x0fd284,1, 0x0fd28c,1, 0x0fd2c0,12, 0x0fd300,3, 0x0fd400,20, 0x0fd484,1, 0x0fd48c,1, 0x0fd4c0,12, 0x0fd500,3, 0x0fd600,20, 0x0fd684,1, 0x0fd68c,1, 0x0fd6c0,12, 0x0fd700,3, 0x0fd800,20, 0x0fd884,1, 0x0fd88c,1, 0x0fd8c0,12, 0x0fd900,3, 0x0fda00,20, 0x0fda84,1, 0x0fda8c,1, 0x0fdac0,12, 0x0fdb00,3, 0x0fdc00,20, 0x0fdc84,1, 0x0fdc8c,1, 0x0fdcc0,12, 0x0fdd00,3, 0x0fde00,20, 0x0fde84,1, 0x0fde8c,1, 0x0fdec0,12, 0x0fdf00,3, 0x0fe000,20, 0x0fe084,1, 0x0fe08c,1, 0x0fe0c0,12, 0x0fe100,3, 0x0fe200,20, 0x0fe284,1, 0x0fe28c,1, 0x0fe2c0,12, 0x0fe300,3, 0x0fe400,20, 0x0fe484,1, 0x0fe48c,1, 0x0fe4c0,12, 0x0fe500,3, 0x0fe600,20, 0x0fe684,1, 0x0fe68c,1, 0x0fe6c0,12, 0x0fe700,3, 0x0fe800,20, 0x0fe884,1, 0x0fe88c,1, 0x0fe8c0,12, 0x0fe900,3, 0x0fea00,3, 0x0fea20,8, 0x0fea80,20, 0x0feb00,11, 0x0fec00,2, 0x0fec10,3, 0x0fec20,3, 0x0fec30,3, 0x0fec40,3, 0x0fec50,3, 0x0fec60,3, 0x0fec70,3, 0x0fec80,3, 0x0fec90,3, 0x0feca0,3, 0x0fecb0,3, 0x0fecc0,3, 0x0fecd0,3, 0x0fece0,3, 0x0fecf0,3, 0x0fed00,3, 0x0fee04,1, 0x0fee14,3, 0x0fee40,11, 0x0fee80,2, 0x0fee90,3, 0x0feea0,3, 0x0feeb0,3, 0x0feec0,9, 0x0fef00,9, 0x0fef40,9, 0x0fef80,7, 0x0fefa0,16, 0x0ff000,2, 0x0ff010,3, 0x0ff020,3, 0x0ff030,3, 0x0ff040,3, 0x0ff050,3, 0x0ff060,3, 0x0ff070,3, 0x0ff080,3, 0x0ff090,3, 0x0ff0a0,3, 0x0ff0b0,3, 0x0ff0c0,3, 0x0ff0d0,3, 0x0ff0e0,3, 0x0ff0f0,3, 0x0ff100,3, 0x0ff200,10, 0x0ff404,1, 0x0ff40c,1, 0x0ff800,169, 0x110000,1, 0x110008,4, 0x110024,4, 0x110040,2, 0x110064,11, 0x1100a0,6, 0x1100c0,2, 0x110104,1, 0x110178,34, 0x110204,5, 0x110224,3, 0x110244,4, 0x110264,3, 0x110274,3, 0x110284,3, 0x1102a4,5, 0x1102c4,1, 0x1102d0,4, 0x1102e4,1, 0x1102f4,3, 0x110304,1, 0x11030c,1, 0x110314,1, 0x11031c,1, 0x110324,1, 0x11032c,1, 0x110334,1, 0x11033c,1, 0x110344,1, 0x11034c,1, 0x110354,1, 0x11035c,1, 0x110364,1, 0x11036c,1, 0x110374,1, 0x11037c,1, 0x110384,3, 0x110394,1, 0x11039c,1, 0x1103a4,3, 0x1103b4,3, 0x1103c4,35, 0x110604,1, 0x110630,23, 0x1106a4,4, 0x1106c0,2, 0x1106e4,1, 0x1106f0,4, 0x110704,1, 0x110710,4, 0x110724,4, 0x110740,2, 0x110760,6, 0x110780,12, 0x1107c0,6, 0x110800,1, 0x110820,9, 0x110850,5, 0x110870,5, 0x1108a0,9, 0x1108e0,9, 0x110910,38, 0x1109b0,1, 0x1109c0,4, 0x1109e0,6, 0x110a00,6, 0x110a20,6, 0x110a40,6, 0x110a60,6, 0x110a80,6, 0x110aa0,6, 0x110ac0,6, 0x110ae0,6, 0x110b00,6, 0x110b20,6, 0x110b40,6, 0x110b60,6, 0x110b80,6, 0x110ba0,6, 0x110bc0,6, 0x110be0,1, 0x110c04,1, 0x110c10,9, 0x110c40,1, 0x110c54,4, 0x110c70,1, 0x110c80,1, 0x110c90,1, 0x110ca0,1, 0x110cb4,1, 0x110cbc,2, 0x110cd0,1, 0x110ce0,1, 0x110cf0,1, 0x110d00,1, 0x110d10,1, 0x110d20,1, 0x110d30,1, 0x110d40,1, 0x110d50,1, 0x110d60,1, 0x110d70,1, 0x110d80,1, 0x110d90,1, 0x110da0,1, 0x110db0,1, 0x110dc0,1, 0x110dd0,1, 0x110de0,1, 0x110df0,1, 0x110e00,1, 0x110e10,1, 0x110e20,1, 0x110e30,1, 0x110e40,1, 0x110e50,1, 0x110e60,1, 0x110e70,1, 0x110e80,1, 0x110e90,1, 0x110ea0,1, 0x110eb0,1, 0x110ec0,1, 0x110ed0,64, 0x110fe0,1, 0x110ff0,6, 0x111020,6, 0x111200,9, 0x111240,9, 0x111280,9, 0x1112c0,9, 0x111304,2, 0x111400,1, 0x111440,1, 0x111460,14, 0x1114a4,1, 0x1114ac,2, 0x1114c0,6, 0x1114e0,1, 0x1114f0,1, 0x111500,1, 0x111520,8, 0x111544,6, 0x111580,3, 0x111604,37, 0x111700,4, 0x111720,5, 0x111740,7, 0x111760,6, 0x111780,4, 0x1117a0,6, 0x111800,3, 0x111810,3, 0x111820,3, 0x111830,3, 0x111840,3, 0x111850,3, 0x111860,3, 0x111870,3, 0x111880,3, 0x111890,3, 0x1118a0,3, 0x1118b0,3, 0x1118c0,3, 0x1118d0,3, 0x1118e0,3, 0x1118f0,3, 0x111900,2, 0x111a00,8, 0x111a24,3, 0x111a44,1, 0x111a4c,73, 0x111c00,33, 0x111d00,33, 0x111e00,33, 0x111f00,33, 0x112000,2, 0x112400,225, 0x112800,53, 0x112900,2, 0x112910,8, 0x112940,2, 0x112950,8, 0x112980,17, 0x1129d0,3, 0x1129e0,3, 0x1129f0,3, 0x112a00,3, 0x112a10,1, 0x112a80,15, 0x112ac4,8, 0x112b00,15, 0x112b44,8, 0x112b80,15, 0x112bc4,8, 0x112c00,15, 0x112c44,8, 0x112c84,1, 0x112c90,13, 0x112d00,12, 0x112d40,1, 0x112d60,14, 0x112da0,16, 0x113000,59, 0x1130f0,54, 0x113200,6, 0x113220,6, 0x113240,3, 0x113250,3, 0x113260,3, 0x113270,3, 0x113280,5, 0x114004,1, 0x114064,43, 0x114204,5, 0x114220,10, 0x114260,21, 0x1142bc,1, 0x1142c8,1, 0x1142d4,1, 0x1142e0,1, 0x1142ec,1, 0x1142f8,1, 0x114310,1, 0x114320,1, 0x11432c,1, 0x114338,1, 0x114380,32, 0x114404,3, 0x114414,4, 0x114428,14, 0x114480,2, 0x1144c4,1, 0x1144d0,15, 0x114524,4, 0x114544,1, 0x114564,13, 0x1145a0,6, 0x1145c0,1, 0x1145c8,2, 0x114604,21, 0x114680,1, 0x114688,7, 0x114804,5, 0x114880,37, 0x114920,1, 0x114930,1, 0x114940,1, 0x114950,1, 0x114960,1, 0x114970,1, 0x114980,1, 0x114990,1, 0x1149a0,1, 0x1149c0,6, 0x1149e0,6, 0x114a00,1, 0x114c00,1, 0x114c0c,1, 0x114c18,1, 0x114c24,1, 0x114c30,1, 0x114c3c,1, 0x114c48,1, 0x114c54,1, 0x114c60,1, 0x114c6c,1, 0x114c78,1, 0x114c84,1, 0x114c90,1, 0x114c9c,1, 0x114ca8,1, 0x114cb4,1, 0x114cc0,1, 0x114ccc,1, 0x114cd8,1, 0x114cf8,3, 0x114d08,4, 0x114d40,14, 0x114d7c,3, 0x114d94,1, 0x114d9c,1, 0x114da4,1, 0x114dac,2, 0x114e00,2, 0x114e20,3, 0x114e30,9, 0x114e60,1, 0x114e70,1, 0x114e80,1, 0x114e98,2, 0x115000,27, 0x115080,4, 0x1150c0,25, 0x115140,6, 0x115160,2, 0x11516c,3, 0x115180,8, 0x1151a4,15, 0x115200,7, 0x115220,7, 0x115240,3, 0x115400,3, 0x115424,4, 0x115440,8, 0x115464,1, 0x115474,9, 0x1154a0,6, 0x1154c0,6, 0x1154e0,6, 0x115500,3, 0x115600,121, 0x1157f0,15, 0x115840,2, 0x115864,1, 0x11586c,5, 0x115884,17, 0x1158e4,1, 0x1158ec,10, 0x115920,5, 0x115940,4, 0x115960,5, 0x115980,2, 0x1159a4,1, 0x1159ac,10, 0x1159e0,5, 0x115a00,4, 0x115a20,5, 0x115a40,2, 0x115a64,1, 0x115a6c,10, 0x115aa0,5, 0x115ac0,4, 0x115ae0,5, 0x115b00,2, 0x115b24,1, 0x115b2c,5, 0x115b80,2, 0x115bc4,1, 0x115bd0,14, 0x115c44,24, 0x115cc0,3, 0x115d00,35, 0x116000,1, 0x116008,18, 0x117000,5, 0x117020,5, 0x117040,1, 0x117060,5, 0x117080,5, 0x1170a0,5, 0x1170c0,1, 0x1170e0,5, 0x117100,5, 0x117120,5, 0x117140,1, 0x117160,5, 0x117180,5, 0x1171a0,5, 0x1171c0,1, 0x1171e0,5, 0x117200,5, 0x117220,5, 0x117240,1, 0x117260,5, 0x117280,5, 0x1172a0,5, 0x1172c0,1, 0x1172e0,5, 0x117300,5, 0x117320,5, 0x117340,1, 0x117360,5, 0x117380,5, 0x1173a0,5, 0x1173c0,1, 0x1173e0,5, 0x117400,5, 0x117420,5, 0x117440,1, 0x117460,5, 0x117480,5, 0x1174a0,5, 0x1174c0,1, 0x1174e0,5, 0x117500,5, 0x117520,5, 0x117540,1, 0x117560,5, 0x117580,5, 0x1175a0,5, 0x1175c0,1, 0x1175e0,5, 0x117600,5, 0x117620,5, 0x117640,1, 0x117660,5, 0x117680,5, 0x1176a0,5, 0x1176c0,1, 0x1176e0,5, 0x117700,5, 0x117720,5, 0x117740,1, 0x117760,5, 0x117780,5, 0x1177a0,5, 0x1177c0,1, 0x1177e0,5, 0x117800,1, 0x118000,9, 0x118040,2, 0x120000,25, 0x120074,7, 0x1200c0,11, 0x120100,1, 0x120108,1, 0x120110,14, 0x12014c,4, 0x120160,10, 0x12018c,5, 0x120200,1, 0x120208,4, 0x120280,33, 0x120308,4, 0x120380,45, 0x120440,2, 0x120454,1, 0x12045c,3, 0x120474,1, 0x12047c,2, 0x120604,3, 0x120614,6, 0x120644,3, 0x120654,6, 0x120680,1, 0x1206a0,6, 0x120700,4, 0x120740,11, 0x120780,13, 0x1207c0,1, 0x1207cc,3, 0x120804,1, 0x120814,3, 0x120824,1, 0x120834,6, 0x120904,1, 0x12093c,17, 0x120984,1, 0x120998,13, 0x121000,2, 0x121044,1, 0x121054,17, 0x1210a0,1, 0x121100,2, 0x121144,1, 0x121154,17, 0x1211a0,1, 0x121204,1, 0x12120c,10, 0x121240,5, 0x121280,11, 0x1212c0,3, 0x1212d4,2, 0x1212e0,9, 0x121310,3, 0x121320,9, 0x121360,2, 0x121374,1, 0x12137c,2, 0x121394,9, 0x121400,4, 0x121440,11, 0x121480,4, 0x1214c0,11, 0x121804,1, 0x121818,26, 0x121884,3, 0x121894,1, 0x12189c,1, 0x1218a4,1, 0x1218ac,4, 0x124000,6, 0x124040,5, 0x124060,4, 0x124080,13, 0x124200,34, 0x124300,4, 0x124340,11, 0x124380,2, 0x1243a0,7, 0x1243c0,1, 0x124800,26, 0x124a00,87, 0x124c00,6, 0x124c24,1, 0x124c34,3, 0x125000,26, 0x125200,92, 0x125400,10, 0x126000,26, 0x126200,92, 0x126400,15, 0x126600,92, 0x126800,4, 0x126814,2, 0x126820,5, 0x12683c,1, 0x126880,26, 0x126900,4, 0x126940,11, 0x128004,1, 0x128040,16, 0x128084,1, 0x1280c0,16, 0x128104,1, 0x128110,63, 0x128400,8, 0x128440,8, 0x128480,3, 0x1284c4,1, 0x1284e0,17, 0x128600,1, 0x128620,8, 0x128644,6, 0x128680,1, 0x1286c0,3, 0x1286d0,3, 0x1286e0,3, 0x1286f0,3, 0x128700,1, 0x128720,8, 0x128744,6, 0x128780,1, 0x1287a0,8, 0x1287c4,6, 0x128804,11, 0x128a00,28, 0x128a80,4, 0x128ac0,11, 0x128b00,4, 0x128b40,11, 0x128b80,1, 0x128b88,10, 0x128c00,4, 0x128e00,27, 0x128e80,4, 0x128ec0,25, 0x128f40,6, 0x128f60,2, 0x128f6c,3, 0x128f80,8, 0x128fa4,10, 0x129004,1, 0x12901c,9, 0x129044,1, 0x12905c,9, 0x129084,1, 0x1290a4,7, 0x129104,1, 0x129140,19, 0x129200,57, 0x1292f0,18, 0x129340,1, 0x129380,7, 0x1293a0,1, 0x1293c0,2, 0x1293d0,3, 0x1293e0,1, 0x130000,4, 0x130020,5, 0x130040,34, 0x130100,1, 0x130108,4, 0x130140,6, 0x130160,6, 0x130180,1, 0x130200,3, 0x130210,1, 0x13021c,1, 0x130400,1, 0x130480,6, 0x1304a0,6, 0x1304c0,36, 0x130600,1, 0x130680,6, 0x1306a0,6, 0x1306c0,17, 0x130800,2, 0x130810,3, 0x130900,41, 0x1309b0,4, 0x130a00,1, 0x130c00,2, 0x130d04,1, 0x130d74,37, 0x130e84,1, 0x130e9c,12, 0x130f00,10, 0x131000,27, 0x131080,1, 0x1310a0,6, 0x131200,27, 0x131280,4, 0x1312c0,25, 0x131340,6, 0x131360,2, 0x13136c,3, 0x131400,16, 0x131600,23, 0x131680,23, 0x131700,1, 0x131800,3, 0x131820,2, 0x13182c,2, 0x131880,4, 0x1318c0,11, 0x131900,4, 0x131940,11, 0x131980,4, 0x1319a0,7, 0x1319c0,4, 0x1319e0,7, 0x131a00,4, 0x131b00,36, 0x131c00,4, 0x131d00,39, 0x131e00,4, 0x131f00,39, 0x132000,4, 0x132100,37, 0x132200,4, 0x132220,10, 0x13224c,2, 0x140000,7, 0x140020,2, 0x140040,7, 0x140060,2, 0x140080,7, 0x1400a0,2, 0x1400c0,7, 0x1400e0,2, 0x140100,7, 0x140120,2, 0x140140,7, 0x140160,2, 0x140180,7, 0x1401a0,2, 0x1401c0,7, 0x1401e0,2, 0x140200,7, 0x140220,2, 0x140240,7, 0x140260,2, 0x140280,7, 0x1402a0,2, 0x1402c0,7, 0x1402e0,2, 0x140300,7, 0x140320,2, 0x140340,7, 0x140360,2, 0x140380,7, 0x1403a0,2, 0x1403c0,7, 0x1403e0,2, 0x140400,7, 0x140420,2, 0x140440,7, 0x140460,2, 0x140480,7, 0x1404a0,2, 0x1404c0,7, 0x1404e0,2, 0x140500,7, 0x140520,2, 0x140540,7, 0x140560,2, 0x140580,7, 0x1405a0,2, 0x1405c0,7, 0x1405e0,2, 0x140600,7, 0x140620,2, 0x140640,7, 0x140660,2, 0x140680,7, 0x1406a0,2, 0x1406c0,7, 0x1406e0,2, 0x140700,7, 0x140720,2, 0x140740,7, 0x140760,2, 0x140780,7, 0x1407a0,2, 0x1407c0,7, 0x1407e0,2, 0x140800,7, 0x140820,2, 0x140840,7, 0x140860,2, 0x140880,7, 0x1408a0,2, 0x1408c0,7, 0x1408e0,2, 0x140900,211, 0x140c50,6, 0x141000,7, 0x141020,2, 0x141040,7, 0x141060,2, 0x141080,7, 0x1410a0,2, 0x1410c0,7, 0x1410e0,2, 0x141100,7, 0x141120,2, 0x141140,7, 0x141160,2, 0x141180,7, 0x1411a0,2, 0x1411c0,7, 0x1411e0,2, 0x141200,7, 0x141220,2, 0x141240,7, 0x141260,2, 0x141280,7, 0x1412a0,2, 0x1412c0,7, 0x1412e0,2, 0x141300,7, 0x141320,2, 0x141340,7, 0x141360,2, 0x141380,7, 0x1413a0,2, 0x1413c0,7, 0x1413e0,2, 0x141400,7, 0x141420,2, 0x141440,7, 0x141460,2, 0x141480,7, 0x1414a0,2, 0x1414c0,7, 0x1414e0,2, 0x141500,7, 0x141520,2, 0x141540,7, 0x141560,2, 0x141580,7, 0x1415a0,2, 0x1415c0,7, 0x1415e0,2, 0x141600,7, 0x141620,2, 0x141640,7, 0x141660,2, 0x141680,7, 0x1416a0,2, 0x1416c0,7, 0x1416e0,2, 0x141700,7, 0x141720,2, 0x141740,7, 0x141760,2, 0x141780,7, 0x1417a0,2, 0x1417c0,7, 0x1417e0,2, 0x141800,7, 0x141820,2, 0x141840,7, 0x141860,2, 0x141880,7, 0x1418a0,2, 0x1418c0,7, 0x1418e0,2, 0x141900,211, 0x141c50,6, 0x142000,7, 0x142020,2, 0x142040,7, 0x142060,2, 0x142080,7, 0x1420a0,2, 0x1420c0,7, 0x1420e0,2, 0x142100,7, 0x142120,2, 0x142140,7, 0x142160,2, 0x142180,7, 0x1421a0,2, 0x1421c0,7, 0x1421e0,2, 0x142200,7, 0x142220,2, 0x142240,7, 0x142260,2, 0x142280,7, 0x1422a0,2, 0x1422c0,7, 0x1422e0,2, 0x142300,7, 0x142320,2, 0x142340,7, 0x142360,2, 0x142380,7, 0x1423a0,2, 0x1423c0,7, 0x1423e0,2, 0x142400,7, 0x142420,2, 0x142440,7, 0x142460,2, 0x142480,7, 0x1424a0,2, 0x1424c0,7, 0x1424e0,2, 0x142500,7, 0x142520,2, 0x142540,7, 0x142560,2, 0x142580,7, 0x1425a0,2, 0x1425c0,7, 0x1425e0,2, 0x142600,7, 0x142620,2, 0x142640,7, 0x142660,2, 0x142680,7, 0x1426a0,2, 0x1426c0,7, 0x1426e0,2, 0x142700,7, 0x142720,2, 0x142740,7, 0x142760,2, 0x142780,7, 0x1427a0,2, 0x1427c0,7, 0x1427e0,2, 0x142800,7, 0x142820,2, 0x142840,7, 0x142860,2, 0x142880,7, 0x1428a0,2, 0x1428c0,7, 0x1428e0,2, 0x142900,211, 0x142c50,6, 0x143000,7, 0x143020,2, 0x143040,7, 0x143060,2, 0x143080,7, 0x1430a0,2, 0x1430c0,7, 0x1430e0,2, 0x143100,7, 0x143120,2, 0x143140,7, 0x143160,2, 0x143180,7, 0x1431a0,2, 0x1431c0,7, 0x1431e0,2, 0x143200,7, 0x143220,2, 0x143240,7, 0x143260,2, 0x143280,7, 0x1432a0,2, 0x1432c0,7, 0x1432e0,2, 0x143300,7, 0x143320,2, 0x143340,7, 0x143360,2, 0x143380,7, 0x1433a0,2, 0x1433c0,7, 0x1433e0,2, 0x143400,7, 0x143420,2, 0x143440,7, 0x143460,2, 0x143480,7, 0x1434a0,2, 0x1434c0,7, 0x1434e0,2, 0x143500,7, 0x143520,2, 0x143540,7, 0x143560,2, 0x143580,7, 0x1435a0,2, 0x1435c0,7, 0x1435e0,2, 0x143600,7, 0x143620,2, 0x143640,7, 0x143660,2, 0x143680,7, 0x1436a0,2, 0x1436c0,7, 0x1436e0,2, 0x143700,7, 0x143720,2, 0x143740,7, 0x143760,2, 0x143780,7, 0x1437a0,2, 0x1437c0,7, 0x1437e0,2, 0x143800,7, 0x143820,2, 0x143840,7, 0x143860,2, 0x143880,7, 0x1438a0,2, 0x1438c0,7, 0x1438e0,2, 0x143900,211, 0x143c50,6, 0x144000,7, 0x144020,2, 0x144040,7, 0x144060,2, 0x144080,7, 0x1440a0,2, 0x1440c0,7, 0x1440e0,2, 0x144100,7, 0x144120,2, 0x144140,7, 0x144160,2, 0x144180,7, 0x1441a0,2, 0x1441c0,7, 0x1441e0,2, 0x144200,7, 0x144220,2, 0x144240,7, 0x144260,2, 0x144280,7, 0x1442a0,2, 0x1442c0,7, 0x1442e0,2, 0x144300,7, 0x144320,2, 0x144340,7, 0x144360,2, 0x144380,7, 0x1443a0,2, 0x1443c0,7, 0x1443e0,2, 0x144400,7, 0x144420,2, 0x144440,7, 0x144460,2, 0x144480,7, 0x1444a0,2, 0x1444c0,7, 0x1444e0,2, 0x144500,7, 0x144520,2, 0x144540,7, 0x144560,2, 0x144580,7, 0x1445a0,2, 0x1445c0,7, 0x1445e0,2, 0x144600,7, 0x144620,2, 0x144640,7, 0x144660,2, 0x144680,7, 0x1446a0,2, 0x1446c0,7, 0x1446e0,2, 0x144700,7, 0x144720,2, 0x144740,7, 0x144760,2, 0x144780,7, 0x1447a0,2, 0x1447c0,7, 0x1447e0,2, 0x144800,7, 0x144820,2, 0x144840,7, 0x144860,2, 0x144880,7, 0x1448a0,2, 0x1448c0,7, 0x1448e0,2, 0x144900,211, 0x144c50,6, 0x145000,7, 0x145020,2, 0x145040,7, 0x145060,2, 0x145080,7, 0x1450a0,2, 0x1450c0,7, 0x1450e0,2, 0x145100,7, 0x145120,2, 0x145140,7, 0x145160,2, 0x145180,7, 0x1451a0,2, 0x1451c0,7, 0x1451e0,2, 0x145200,7, 0x145220,2, 0x145240,7, 0x145260,2, 0x145280,7, 0x1452a0,2, 0x1452c0,7, 0x1452e0,2, 0x145300,7, 0x145320,2, 0x145340,7, 0x145360,2, 0x145380,7, 0x1453a0,2, 0x1453c0,7, 0x1453e0,2, 0x145400,7, 0x145420,2, 0x145440,7, 0x145460,2, 0x145480,7, 0x1454a0,2, 0x1454c0,7, 0x1454e0,2, 0x145500,7, 0x145520,2, 0x145540,7, 0x145560,2, 0x145580,7, 0x1455a0,2, 0x1455c0,7, 0x1455e0,2, 0x145600,7, 0x145620,2, 0x145640,7, 0x145660,2, 0x145680,7, 0x1456a0,2, 0x1456c0,7, 0x1456e0,2, 0x145700,7, 0x145720,2, 0x145740,7, 0x145760,2, 0x145780,7, 0x1457a0,2, 0x1457c0,7, 0x1457e0,2, 0x145800,7, 0x145820,2, 0x145840,7, 0x145860,2, 0x145880,7, 0x1458a0,2, 0x1458c0,7, 0x1458e0,2, 0x145900,211, 0x145c50,6, 0x146000,7, 0x146020,2, 0x146040,7, 0x146060,2, 0x146080,7, 0x1460a0,2, 0x1460c0,7, 0x1460e0,2, 0x146100,7, 0x146120,2, 0x146140,7, 0x146160,2, 0x146180,7, 0x1461a0,2, 0x1461c0,7, 0x1461e0,2, 0x146200,7, 0x146220,2, 0x146240,7, 0x146260,2, 0x146280,7, 0x1462a0,2, 0x1462c0,7, 0x1462e0,2, 0x146300,7, 0x146320,2, 0x146340,7, 0x146360,2, 0x146380,7, 0x1463a0,2, 0x1463c0,7, 0x1463e0,2, 0x146400,7, 0x146420,2, 0x146440,7, 0x146460,2, 0x146480,7, 0x1464a0,2, 0x1464c0,7, 0x1464e0,2, 0x146500,7, 0x146520,2, 0x146540,7, 0x146560,2, 0x146580,7, 0x1465a0,2, 0x1465c0,7, 0x1465e0,2, 0x146600,7, 0x146620,2, 0x146640,7, 0x146660,2, 0x146680,7, 0x1466a0,2, 0x1466c0,7, 0x1466e0,2, 0x146700,7, 0x146720,2, 0x146740,7, 0x146760,2, 0x146780,7, 0x1467a0,2, 0x1467c0,7, 0x1467e0,2, 0x146800,7, 0x146820,2, 0x146840,7, 0x146860,2, 0x146880,7, 0x1468a0,2, 0x1468c0,7, 0x1468e0,2, 0x146900,211, 0x146c50,6, 0x147000,7, 0x147020,2, 0x147040,7, 0x147060,2, 0x147080,7, 0x1470a0,2, 0x1470c0,7, 0x1470e0,2, 0x147100,7, 0x147120,2, 0x147140,7, 0x147160,2, 0x147180,7, 0x1471a0,2, 0x1471c0,7, 0x1471e0,2, 0x147200,7, 0x147220,2, 0x147240,7, 0x147260,2, 0x147280,7, 0x1472a0,2, 0x1472c0,7, 0x1472e0,2, 0x147300,7, 0x147320,2, 0x147340,7, 0x147360,2, 0x147380,7, 0x1473a0,2, 0x1473c0,7, 0x1473e0,2, 0x147400,7, 0x147420,2, 0x147440,7, 0x147460,2, 0x147480,7, 0x1474a0,2, 0x1474c0,7, 0x1474e0,2, 0x147500,7, 0x147520,2, 0x147540,7, 0x147560,2, 0x147580,7, 0x1475a0,2, 0x1475c0,7, 0x1475e0,2, 0x147600,7, 0x147620,2, 0x147640,7, 0x147660,2, 0x147680,7, 0x1476a0,2, 0x1476c0,7, 0x1476e0,2, 0x147700,7, 0x147720,2, 0x147740,7, 0x147760,2, 0x147780,7, 0x1477a0,2, 0x1477c0,7, 0x1477e0,2, 0x147800,7, 0x147820,2, 0x147840,7, 0x147860,2, 0x147880,7, 0x1478a0,2, 0x1478c0,7, 0x1478e0,2, 0x147900,211, 0x147c50,6, 0x148000,7, 0x148020,2, 0x148040,7, 0x148060,2, 0x148080,7, 0x1480a0,2, 0x1480c0,7, 0x1480e0,2, 0x148100,7, 0x148120,2, 0x148140,7, 0x148160,2, 0x148180,7, 0x1481a0,2, 0x1481c0,7, 0x1481e0,2, 0x148200,7, 0x148220,2, 0x148240,7, 0x148260,2, 0x148280,7, 0x1482a0,2, 0x1482c0,7, 0x1482e0,2, 0x148300,7, 0x148320,2, 0x148340,7, 0x148360,2, 0x148380,7, 0x1483a0,2, 0x1483c0,7, 0x1483e0,2, 0x148400,7, 0x148420,2, 0x148440,7, 0x148460,2, 0x148480,7, 0x1484a0,2, 0x1484c0,7, 0x1484e0,2, 0x148500,7, 0x148520,2, 0x148540,7, 0x148560,2, 0x148580,7, 0x1485a0,2, 0x1485c0,7, 0x1485e0,2, 0x148600,7, 0x148620,2, 0x148640,7, 0x148660,2, 0x148680,7, 0x1486a0,2, 0x1486c0,7, 0x1486e0,2, 0x148700,7, 0x148720,2, 0x148740,7, 0x148760,2, 0x148780,7, 0x1487a0,2, 0x1487c0,7, 0x1487e0,2, 0x148800,7, 0x148820,2, 0x148840,7, 0x148860,2, 0x148880,7, 0x1488a0,2, 0x1488c0,7, 0x1488e0,2, 0x148900,211, 0x148c50,6, 0x14c000,1152, 0x14e000,18, 0x14e080,18, 0x14e100,18, 0x14e180,18, 0x14e200,18, 0x14e280,18, 0x14e300,18, 0x14e380,18, 0x14e400,18, 0x14e480,18, 0x14e500,18, 0x14e580,18, 0x14e600,18, 0x14e680,18, 0x14e700,18, 0x14e780,18, 0x14e800,18, 0x14e880,18, 0x14e900,18, 0x14e980,18, 0x14ea00,18, 0x14ea80,18, 0x14eb00,18, 0x14eb80,18, 0x14ec00,18, 0x14ec80,18, 0x14ed00,18, 0x14ed80,18, 0x14ee00,18, 0x14ee80,18, 0x14ef00,18, 0x14ef80,18, 0x14f000,18, 0x14f080,18, 0x14f100,18, 0x14f180,18, 0x150000,72, 0x150200,72, 0x150400,72, 0x150600,72, 0x150800,72, 0x150a00,72, 0x150c00,72, 0x150e00,72, 0x151000,72, 0x151200,72, 0x151400,7, 0x151420,2, 0x151440,7, 0x151460,2, 0x151480,7, 0x1514a0,2, 0x1514c0,7, 0x1514e0,2, 0x151500,20, 0x151600,7, 0x151620,2, 0x151640,7, 0x151660,2, 0x151680,7, 0x1516a0,2, 0x1516c0,7, 0x1516e0,2, 0x151700,20, 0x151800,7, 0x151820,2, 0x151840,7, 0x151860,2, 0x151880,7, 0x1518a0,2, 0x1518c0,7, 0x1518e0,2, 0x151900,20, 0x151a00,7, 0x151a20,2, 0x151a40,7, 0x151a60,2, 0x151a80,7, 0x151aa0,2, 0x151ac0,7, 0x151ae0,2, 0x151b00,20, 0x151c00,7, 0x151c20,2, 0x151c40,7, 0x151c60,2, 0x151c80,7, 0x151ca0,2, 0x151cc0,7, 0x151ce0,2, 0x151d00,20, 0x151e00,7, 0x151e20,2, 0x151e40,7, 0x151e60,2, 0x151e80,7, 0x151ea0,2, 0x151ec0,7, 0x151ee0,2, 0x151f00,20, 0x152000,7, 0x152020,2, 0x152040,7, 0x152060,2, 0x152080,7, 0x1520a0,2, 0x1520c0,7, 0x1520e0,2, 0x152100,20, 0x152200,7, 0x152220,2, 0x152240,7, 0x152260,2, 0x152280,7, 0x1522a0,2, 0x1522c0,7, 0x1522e0,2, 0x152300,20, 0x152400,7, 0x152420,2, 0x152440,7, 0x152460,2, 0x152480,7, 0x1524a0,2, 0x1524c0,7, 0x1524e0,2, 0x152500,20, 0x152600,1, 0x152610,1, 0x152620,1, 0x152630,1, 0x152640,1, 0x152650,1, 0x152660,1, 0x152670,1, 0x152680,1, 0x152690,1, 0x1526a0,1, 0x1526b0,1, 0x1526c0,1, 0x1526d0,1, 0x1526e0,1, 0x1526f0,1, 0x152700,1, 0x152710,1, 0x152720,1, 0x152730,1, 0x152740,1, 0x152750,1, 0x152760,1, 0x152770,1, 0x152780,1, 0x152790,1, 0x1527a0,1, 0x1527b0,1, 0x1527c0,1, 0x1527d0,1, 0x1527e0,1, 0x1527f0,1, 0x152800,1, 0x152810,1, 0x152820,1, 0x152830,1, 0x152840,55, 0x152920,36, 0x1529c0,15, 0x152a00,8, 0x152a40,4, 0x152a60,5, 0x152a80,4, 0x152aa0,3, 0x152ab0,1, 0x152ac4,1, 0x152ae4,11, 0x152c00,9, 0x152c40,9, 0x152c80,9, 0x152cc0,9, 0x152d00,9, 0x152d40,9, 0x152d80,9, 0x152dc0,9, 0x152e00,9, 0x152e40,9, 0x152e80,9, 0x152ec0,9, 0x152f00,9, 0x152f40,9, 0x152f80,9, 0x152fc0,9, 0x153000,9, 0x153040,9, 0x153080,9, 0x1530c0,9, 0x153100,9, 0x153140,9, 0x153180,9, 0x1531c0,9, 0x153200,9, 0x153240,9, 0x153280,9, 0x1532c0,9, 0x153300,9, 0x153340,9, 0x153380,9, 0x1533c0,9, 0x153400,9, 0x153440,9, 0x153480,9, 0x1534c0,9, 0x153500,9, 0x153530,1, 0x153540,1, 0x153550,1, 0x153560,1, 0x153570,1, 0x153580,1, 0x153590,1, 0x1535a0,1, 0x1535b0,1, 0x1535c0,1, 0x1535d0,1, 0x153600,9, 0x153630,1, 0x153640,1, 0x153650,1, 0x153660,1, 0x153670,1, 0x153680,1, 0x153690,1, 0x1536a0,1, 0x1536b0,1, 0x1536c0,1, 0x1536d0,1, 0x153700,9, 0x153730,1, 0x153740,1, 0x153750,1, 0x153760,1, 0x153770,1, 0x153780,1, 0x153790,1, 0x1537a0,1, 0x1537b0,1, 0x1537c0,1, 0x1537d0,1, 0x153800,9, 0x153830,1, 0x153840,1, 0x153850,1, 0x153860,1, 0x153870,1, 0x153880,1, 0x153890,1, 0x1538a0,1, 0x1538b0,1, 0x1538c0,1, 0x1538d0,1, 0x153900,239, 0x160000,2, 0x160044,1, 0x16005c,9, 0x168000,1, 0x16800c,1, 0x168018,1, 0x168024,1, 0x168030,1, 0x16803c,1, 0x168048,1, 0x168054,1, 0x168060,1, 0x16806c,1, 0x168078,1, 0x168084,1, 0x168090,1, 0x16809c,1, 0x1680a8,1, 0x168100,1, 0x16810c,1, 0x168118,1, 0x168124,1, 0x168130,1, 0x16813c,1, 0x168148,1, 0x168154,1, 0x168160,1, 0x16816c,1, 0x168178,1, 0x168184,1, 0x168190,1, 0x16819c,1, 0x1681a8,1, 0x168200,1, 0x16820c,1, 0x168218,1, 0x168224,1, 0x168230,1, 0x16823c,1, 0x168248,1, 0x168254,1, 0x168260,1, 0x16826c,1, 0x168278,1, 0x168284,1, 0x168290,1, 0x16829c,1, 0x1682a8,1, 0x168300,1, 0x16830c,1, 0x168318,1, 0x168324,1, 0x168330,1, 0x16833c,1, 0x168348,1, 0x168354,1, 0x168360,1, 0x16836c,1, 0x168378,1, 0x168384,1, 0x168390,1, 0x16839c,1, 0x1683a8,1, 0x168400,1, 0x16840c,1, 0x168418,1, 0x168424,1, 0x168430,1, 0x16843c,1, 0x168448,1, 0x168454,1, 0x168460,1, 0x16846c,1, 0x168478,1, 0x168484,1, 0x168490,1, 0x16849c,1, 0x1684a8,1, 0x168500,1, 0x16850c,1, 0x168518,1, 0x168524,1, 0x168530,1, 0x16853c,1, 0x168548,1, 0x168554,1, 0x168560,1, 0x16856c,1, 0x168578,1, 0x168584,1, 0x168590,1, 0x16859c,1, 0x1685a8,1, 0x168600,1, 0x16860c,1, 0x168618,1, 0x168624,1, 0x168630,1, 0x16863c,1, 0x168648,1, 0x168654,1, 0x168660,1, 0x16866c,1, 0x168678,1, 0x168684,1, 0x168690,1, 0x16869c,1, 0x1686a8,1, 0x168700,1, 0x16870c,1, 0x168718,1, 0x168724,1, 0x168730,1, 0x16873c,1, 0x168748,1, 0x168754,1, 0x168760,1, 0x16876c,1, 0x168778,1, 0x168784,1, 0x168790,1, 0x16879c,1, 0x1687a8,1, 0x168800,1, 0x16880c,1, 0x168818,1, 0x168824,1, 0x168830,1, 0x16883c,1, 0x168848,1, 0x168854,1, 0x168860,1, 0x16886c,1, 0x168878,1, 0x168884,1, 0x168890,1, 0x16889c,1, 0x1688a8,1, 0x168900,1, 0x16890c,1, 0x168918,1, 0x168924,1, 0x168930,1, 0x16893c,1, 0x168948,1, 0x168954,1, 0x168960,1, 0x16896c,1, 0x168978,1, 0x168984,1, 0x168990,1, 0x16899c,1, 0x1689a8,1, 0x168a00,1, 0x168a14,3, 0x168a24,1, 0x168a2c,3, 0x168a40,15, 0x168a80,15, 0x168ac0,15, 0x168b00,15, 0x168b40,15, 0x168b80,15, 0x168bc0,15, 0x168c00,15, 0x168c40,15, 0x168c80,15, 0x168cc0,15, 0x168d00,15, 0x168d40,15, 0x168d80,15, 0x168dc0,15, 0x168e00,15, 0x168e40,15, 0x168e80,15, 0x168ec0,15, 0x168f00,15, 0x168f40,15, 0x168f80,15, 0x168fc0,15, 0x169000,15, 0x169040,15, 0x169080,15, 0x1690c0,15, 0x169100,15, 0x169140,15, 0x169180,15, 0x1691c0,15, 0x169200,15, 0x169240,15, 0x169280,15, 0x1692c0,15, 0x169300,15, 0x169340,15, 0x169380,15, 0x1693c0,15, 0x169400,15, 0x169440,15, 0x169480,15, 0x1694c0,15, 0x169500,15, 0x169540,15, 0x169580,15, 0x1695c0,15, 0x169600,15, 0x169640,15, 0x169680,15, 0x1696c0,15, 0x169700,15, 0x169740,15, 0x169780,15, 0x1697c0,1, 0x16a000,1, 0x16a00c,1, 0x16a020,1, 0x16a02c,1, 0x16a040,1, 0x16a04c,1, 0x16a060,1, 0x16a06c,1, 0x16a080,1, 0x16a08c,1, 0x16a0a0,1, 0x16a0ac,1, 0x16a0c4,6, 0x16a0e0,89, 0x16a280,20, 0x16a300,20, 0x16a380,20, 0x16a400,20, 0x16a480,20, 0x16a500,20, 0x16a580,20, 0x16a600,20, 0x16a680,20, 0x16a700,20, 0x16a780,20, 0x16a800,20, 0x16a880,20, 0x16a900,20, 0x16a980,20, 0x16aa00,20, 0x16aa80,20, 0x16ab00,20, 0x16ab80,20, 0x16ac00,20, 0x16ac80,20, 0x16ad00,20, 0x16ad80,20, 0x16ae00,20, 0x16ae80,20, 0x16af00,20, 0x16af80,20, 0x16b000,20, 0x16b080,20, 0x16b100,20, 0x16b180,20, 0x16b200,20, 0x16b280,20, 0x16b300,20, 0x16b380,20, 0x16b400,20, 0x16b480,20, 0x16b500,20, 0x16b580,20, 0x16b600,20, 0x16b680,20, 0x16b700,20, 0x16b780,20, 0x16b800,20, 0x16b880,20, 0x16b900,20, 0x16b980,20, 0x16ba00,20, 0x16ba80,20, 0x16bb00,20, 0x16bb80,20, 0x16bc00,20, 0x16bc80,20, 0x16bd00,20, 0x16bd80,20, 0x16be00,20, 0x16be80,20, 0x16bf00,20, 0x16bf80,20, 0x16c000,20, 0x16c080,20, 0x16c100,20, 0x16c180,20, 0x16c200,20, 0x16c280,1, 0x170000,18, 0x170080,18, 0x170100,18, 0x170180,18, 0x170200,18, 0x170280,18, 0x170300,18, 0x170380,18, 0x170400,18, 0x170800,18, 0x170880,18, 0x170900,18, 0x170980,18, 0x170a00,18, 0x170a80,18, 0x170b00,18, 0x170b80,18, 0x170c00,18, 0x171000,18, 0x171080,18, 0x171100,18, 0x171180,18, 0x171200,18, 0x171280,18, 0x171300,18, 0x171380,18, 0x171400,18, 0x171800,18, 0x171880,18, 0x171900,18, 0x171980,18, 0x171a00,18, 0x171a80,18, 0x171b00,18, 0x171b80,18, 0x171c00,18, 0x172000,263, 0x172420,82, 0x172600,1, 0x172610,1, 0x172620,1, 0x172630,1, 0x172640,1, 0x172650,1, 0x172660,1, 0x172670,1, 0x172680,1, 0x172700,1, 0x172710,1, 0x172720,1, 0x172730,1, 0x172740,1, 0x172750,1, 0x172760,1, 0x172770,1, 0x172780,1, 0x172800,1, 0x172810,1, 0x172820,1, 0x172830,1, 0x172840,1, 0x172850,1, 0x172860,1, 0x172870,1, 0x172880,1, 0x172900,1, 0x172910,1, 0x172920,1, 0x172930,1, 0x172940,1, 0x172950,1, 0x172960,1, 0x172970,1, 0x172980,1, 0x172a00,1, 0x172a0c,1, 0x172a20,1, 0x172a2c,1, 0x172a40,1, 0x172a4c,1, 0x172a60,1, 0x172a6c,1, 0x172a80,1, 0x172a8c,1, 0x172aa0,1, 0x172aac,1, 0x172ac0,1, 0x172acc,1, 0x172ae0,1, 0x172aec,1, 0x172b00,1, 0x172b0c,1, 0x172b20,2, 0x172b40,2, 0x172b4c,2, 0x174000,2, 0x174084,1, 0x1740b4,53, 0x174194,5, 0x1741b4,7, 0x1741e0,5, 0x174200,1, 0x174208,10, 0x174404,5, 0x174420,1, 0x174430,10, 0x174460,72, 0x174804,5, 0x174824,1, 0x174830,4, 0x174844,1, 0x174854,3, 0x174864,1, 0x17486c,1, 0x174874,7, 0x1748a0,6, 0x1748c0,4, 0x174c00,4, 0x174c20,5, 0x174c40,5, 0x174c60,5, 0x174c80,5, 0x174ca0,5, 0x174cc0,5, 0x174ce0,5, 0x174d00,5, 0x174d20,5, 0x174d40,5, 0x174d60,5, 0x174d80,5, 0x174da0,5, 0x174dc0,5, 0x174de0,5, 0x174e00,18, 0x175000,2, 0x175084,1, 0x1750b0,27, 0x175120,19, 0x175170,1, 0x176000,1, 0x176010,8, 0x176044,4, 0x176100,321, 0x17660c,1, 0x176620,1, 0x176640,6, 0x176660,30, 0x176704,1, 0x17671c,11, 0x176780,6, 0x176800,4, 0x176880,24, 0x176900,265, 0x176d40,9, 0x176d80,9, 0x176dc0,9, 0x176e00,9, 0x176e40,9, 0x176e80,9, 0x176ec0,9, 0x176f00,9, 0x176f40,9, 0x176f80,9, 0x176fc0,9, 0x177000,9, 0x177040,9, 0x177080,9, 0x1770c0,9, 0x177100,9, 0x177140,9, 0x177180,9, 0x1771c0,9, 0x177200,9, 0x177240,9, 0x177280,9, 0x1772c0,9, 0x177300,9, 0x177340,9, 0x177380,9, 0x1773c0,9, 0x177400,9, 0x177440,9, 0x177480,9, 0x1774c0,9, 0x177500,1, 0x178000,34, 0x178090,1, 0x178098,36, 0x178180,6, 0x1781a0,6, 0x1781c0,13, 0x178200,6, 0x178220,6, 0x178240,13, 0x178280,1, 0x178400,2, 0x17840c,2, 0x178424,4, 0x178440,2, 0x178460,6, 0x178480,1, 0x178500,1, 0x178520,7, 0x178800,15, 0x178840,4, 0x178880,2, 0x1788a4,9, 0x1788e4,9, 0x178924,9, 0x179000,22, 0x179080,4, 0x1790c0,11, 0x179100,3, 0x179110,14, 0x179164,1, 0x17916c,5, 0x179200,11, 0x179240,11, 0x179280,1, 0x179300,3, 0x179310,3, 0x179320,3, 0x179330,3, 0x179340,3, 0x179350,3, 0x179360,3, 0x179370,3, 0x179380,3, 0x179390,3, 0x1793a0,3, 0x1793b0,3, 0x1793c0,3, 0x1793d0,3, 0x1793e0,3, 0x1793f0,3, 0x179400,3, 0x179410,3, 0x179420,3, 0x179430,3, 0x179440,3, 0x179450,3, 0x179460,3, 0x179470,3, 0x179480,3, 0x179490,3, 0x1794a0,3, 0x1794b0,3, 0x1794c0,3, 0x1794d0,3, 0x1794e0,3, 0x1794f0,3, 0x179500,3, 0x179510,3, 0x179520,3, 0x179530,3, 0x179540,3, 0x179550,3, 0x179560,3, 0x179570,3, 0x179580,3, 0x179590,3, 0x1795a0,3, 0x1795b0,3, 0x1795c0,3, 0x1795d0,3, 0x1795e0,3, 0x1795f0,3, 0x179600,3, 0x179610,3, 0x179620,3, 0x179630,3, 0x179640,3, 0x179650,3, 0x179660,3, 0x179670,3, 0x179680,3, 0x179690,3, 0x1796a0,3, 0x1796b0,3, 0x1796c0,3, 0x1796d0,3, 0x1796e0,3, 0x1796f0,3, 0x179700,3, 0x179710,3, 0x179720,3, 0x179730,3, 0x179740,3, 0x179750,3, 0x179760,3, 0x179770,3, 0x179780,3, 0x179790,3, 0x1797a0,3, 0x1797b0,3, 0x1797c0,3, 0x1797d0,3, 0x1797e0,3, 0x1797f0,3, 0x179800,3, 0x179810,3, 0x179820,3, 0x179830,3, 0x179840,3, 0x179850,3, 0x179860,3, 0x179870,3, 0x179880,3, 0x179890,3, 0x1798a0,3, 0x1798b0,3, 0x1798c0,3, 0x1798d0,3, 0x1798e0,3, 0x1798f0,3, 0x179900,3, 0x179910,3, 0x179920,3, 0x179930,3, 0x179940,3, 0x179950,3, 0x179960,3, 0x179970,3, 0x179980,3, 0x179990,3, 0x1799a0,3, 0x1799b0,3, 0x1799c0,3, 0x1799d0,3, 0x1799e0,3, 0x1799f0,3, 0x179a00,3, 0x179a10,3, 0x179a20,3, 0x179a30,3, 0x179a40,3, 0x179a50,3, 0x179a60,3, 0x179a70,3, 0x179a80,3, 0x179a90,3, 0x179aa0,3, 0x179ab0,3, 0x179ac0,3, 0x179ad0,3, 0x179ae0,3, 0x179af0,3, 0x179b00,3, 0x179b10,3, 0x179b20,3, 0x179b30,3, 0x179b40,9, 0x17a000,1, 0x17a010,3, 0x17a020,3, 0x17a044,4, 0x17a084,1, 0x17a094,12, 0x17a0d0,1, 0x17a0e0,1, 0x17a0ec,1, 0x17a100,9, 0x17a140,2, 0x17a200,1, 0x17a210,3, 0x17a220,3, 0x17a244,4, 0x17a284,1, 0x17a294,9, 0x17a2c0,1, 0x17a2d0,1, 0x17a2e0,1, 0x17a2ec,1, 0x17a300,5, 0x17a320,2, 0x17a400,6, 0x17a420,6, 0x17a440,6, 0x17a460,6, 0x17a480,6, 0x17a4a0,6, 0x17a4c0,30, 0x17a540,6, 0x17a580,11, 0x17a800,65, 0x17a910,8, 0x17a944,4, 0x17a980,1, 0x17a98c,1, 0x17a9c0,4, 0x17a9e0,7, 0x17aa00,1, 0x17aa10,1, 0x17aa20,6, 0x17aa40,1, 0x17aa50,10, 0x17aa80,7, 0x17aaa0,7, 0x17aac0,1, 0x17ab00,5, 0x17ab20,7, 0x17ab40,134, 0x17b000,1, 0x17b010,3, 0x17b020,3, 0x17b044,4, 0x17b084,1, 0x17b090,5, 0x17b0b0,1, 0x17b0c0,1, 0x17b0cc,1, 0x17b100,17, 0x17b180,4, 0x17b1a0,12, 0x17b200,24, 0x17b280,67, 0x17b3a0,6, 0x17b3c0,6, 0x17b3e0,6, 0x17b400,6, 0x17b420,3, 0x17b430,7, 0x17b800,41, 0x17b8b0,41, 0x17ba04,1, 0x17ba78,36, 0x17bc00,220, 0x17c000,92, 0x17c200,4, 0x17c220,7, 0x17c240,7, 0x17c260,1, 0x17c280,7, 0x17c2a0,7, 0x17c2c0,7, 0x17c2e0,3, 0x17c2f0,2, 0x17c400,27, 0x17c480,4, 0x17c4c0,25, 0x17c540,6, 0x17c560,2, 0x17c56c,3, 0x17c600,8, 0x17c624,98, 0x17c800,4, 0x17c840,13, 0x17c900,13, 0x17c940,13, 0x17c980,1, 0x17ca00,11, 0x180004,4, 0x180020,7, 0x180040,2, 0x18004c,2, 0x180064,1, 0x18006c,4, 0x180080,3, 0x180090,3, 0x1800a0,3, 0x1800b0,3, 0x1800c0,3, 0x1800d0,3, 0x1800e0,3, 0x1800f0,3, 0x180100,3, 0x180110,3, 0x180120,3, 0x180130,3, 0x180140,3, 0x180150,3, 0x180160,3, 0x180170,3, 0x180180,3, 0x180190,3, 0x1801a0,3, 0x1801b0,3, 0x1801c0,3, 0x1801d0,3, 0x1801e0,3, 0x1801f0,3, 0x180200,3, 0x180210,3, 0x180220,3, 0x180230,3, 0x180240,3, 0x180250,3, 0x180260,42, 0x180324,4, 0x180340,4, 0x180360,6, 0x180380,34, 0x180420,6, 0x180440,6, 0x180460,6, 0x180480,6, 0x1804a0,6, 0x1804c0,6, 0x1804e0,6, 0x180500,6, 0x180520,6, 0x180540,6, 0x180560,6, 0x180580,6, 0x1805a0,6, 0x1805c0,6, 0x1805e0,6, 0x180600,6, 0x180620,6, 0x180640,6, 0x180660,6, 0x180680,6, 0x1806a0,6, 0x1806c0,6, 0x1806e0,6, 0x180700,6, 0x180720,6, 0x180740,6, 0x180760,6, 0x180780,6, 0x1807a0,6, 0x1807c0,6, 0x1807e0,6, 0x180800,6, 0x180820,1, 0x180828,18, 0x181000,10, 0x181100,2, 0x181184,1, 0x181194,27, 0x181204,1, 0x181240,22, 0x1812a0,6, 0x1812c0,2, 0x1812cc,3, 0x1812e0,2, 0x1812ec,2, 0x181800,2, 0x18180c,1, 0x181a00,2, 0x181b04,1, 0x181b80,32, 0x181c04,4, 0x181c24,1, 0x181c2c,1, 0x181c34,1, 0x181c3c,1, 0x181c44,1, 0x181c4c,1, 0x181c54,1, 0x181c5c,1, 0x181c64,1, 0x181c6c,1, 0x181c74,1, 0x181c7c,3, 0x181c94,1, 0x181c9c,3, 0x182000,2, 0x182084,1, 0x1820c0,16, 0x182104,1, 0x182140,16, 0x182184,1, 0x1821c0,22, 0x182220,2, 0x18222c,2, 0x182240,16, 0x182304,1, 0x182310,7, 0x182340,2, 0x182360,6, 0x182380,2, 0x18238c,2, 0x182400,2, 0x182410,2, 0x182420,2, 0x182430,2, 0x182440,2, 0x182450,2, 0x182460,2, 0x182470,2, 0x182480,2, 0x182490,2, 0x1824a0,2, 0x1824b0,2, 0x1824c0,2, 0x1824d0,2, 0x1824e0,2, 0x1824f0,2, 0x182500,2, 0x182510,2, 0x182520,2, 0x182530,2, 0x182540,2, 0x182550,2, 0x182560,2, 0x182570,2, 0x182580,2, 0x182590,2, 0x1825a0,2, 0x1825b0,2, 0x1825c0,2, 0x1825d0,2, 0x1825e0,2, 0x1825f0,2, 0x182600,8, 0x18263c,7, 0x182660,2, 0x18266c,3, 0x182680,2, 0x182700,28, 0x182800,27, 0x182880,4, 0x1828c0,25, 0x182940,6, 0x182960,2, 0x18296c,3, 0x182980,8, 0x1829a4,8, 0x182a00,2, 0x182a10,3, 0x182a40,9, 0x182a80,17, 0x182ac8,4, 0x182ae0,9, 0x182b10,1, 0x1a0000,1, 0x1a0008,15, 0x1a0204,1, 0x1a0210,12, 0x1a0244,1, 0x1a0250,12, 0x1a0284,1, 0x1a0290,12, 0x1a02c4,1, 0x1a02d0,16, 0x1a0380,3, 0x1a03c4,1, 0x1a03d0,13, 0x1a0800,2, 0x1a0904,1, 0x1a0978,36, 0x1a0b04,1, 0x1a0b70,38, 0x1a0c44,1, 0x1a0c58,10, 0x1a0c84,32, 0x1a0d20,1, 0x1a0d30,7, 0x1a0e00,4, 0x1a0e80,18, 0x1a0f00,2, 0x1a0f44,1, 0x1a0f58,17, 0x1a0fc0,10, 0x1a1000,10, 0x1a1040,11, 0x1a1080,1, 0x1a1090,5, 0x1a1104,1, 0x1a1144,18, 0x1a1200,1, 0x1a1208,7, 0x1a1228,4, 0x1a1240,2, 0x1a2000,115, 0x1a2200,17, 0x1a2280,17, 0x1a2300,81, 0x1a2480,5, 0x1a24a0,32, 0x1a2604,1, 0x1a2610,4, 0x1a2624,1, 0x1a2630,4, 0x1a2644,1, 0x1a2650,4, 0x1a2664,1, 0x1a2670,7, 0x1a2700,4, 0x1a2800,34, 0x1a2900,4, 0x1a2a00,36, 0x1a2b00,2, 0x1a2b24,1, 0x1a2b30,6, 0x1a2b64,1, 0x1a2b70,13, 0x1a2bb0,6, 0x1a2be0,2, 0x1a2bf0,6, 0x1a2c14,1, 0x1a2c1c,2, 0x1a2d00,2, 0x1a2d84,1, 0x1a2dbc,18, 0x1a2e10,5, 0x1a2e30,5, 0x1a2e50,5, 0x1a2e70,4, 0x1a2e84,3, 0x1a2ea0,1, 0x1a2ea8,7, 0x1a2f00,17, 0x1a2f80,36, 0x1a3020,5, 0x1a3040,4, 0x1a3060,5, 0x1a3080,4, 0x1a30a0,5, 0x1a30c0,4, 0x1a30e0,5, 0x1a3100,1, 0x1a3120,1, 0x1a3128,4, 0x1a3140,3, 0x1a3150,3, 0x1a3160,11, 0x1a4000,49, 0x1a4100,49, 0x1a4200,1, 0x1a4400,4, 0x1a4500,49, 0x1a4600,4, 0x1a4680,19, 0x1a4700,13, 0x1a4740,5, 0x1a4760,2, 0x1a476c,3, 0x1a4780,3, 0x1a4790,3, 0x1a47a0,3, 0x1a4804,1, 0x1a4824,59, 0x1a4944,1, 0x1a4950,6, 0x1a4c00,10, 0x1a5000,27, 0x1a5080,4, 0x1a50c0,25, 0x1a5140,6, 0x1a5160,2, 0x1a516c,3, 0x1a5184,4, 0x1a5200,2, 0x1a5400,4, 0x1a5500,43, 0x1a5600,2, 0x1a5620,3, 0x1a5630,3, 0x1a5640,3, 0x1a5800,53, 0x1a5a00,1, 0x1a5a10,5, 0x1a5a30,5, 0x1a5a50,7, 0x1a5a80,1, 0x1a5a88,4, 0x1a5c00,44, 0x1a5d00,1, 0x1a5d40,1, 0x1a5d48,4, 0x1a5d60,3, 0x1a5d70,3, 0x1a8000,46, 0x1a8100,46, 0x1a8200,1, 0x1a8400,4, 0x1a8500,46, 0x1a8600,4, 0x1a8640,14, 0x1a8700,33, 0x1a8800,5, 0x1a8820,2, 0x1a882c,3, 0x1a8840,3, 0x1a8850,3, 0x1a8860,3, 0x1a9000,4, 0x1a9200,89, 0x1a9400,89, 0x1a9600,3, 0x1a9610,3, 0x1a9620,9, 0x1a9800,1, 0x1aa000,50, 0x1aa200,1, 0x1aa210,5, 0x1aa230,7, 0x1aa260,1, 0x1aa268,4, 0x1aa400,27, 0x1aa480,4, 0x1aa4c0,25, 0x1aa540,6, 0x1aa560,2, 0x1aa56c,3, 0x1aa584,4, 0x1aa600,2, 0x1aa800,36, 0x1aa900,1, 0x1aa908,4, 0x1aa920,4, 0x1ac000,2, 0x1ac084,1, 0x1ac0ac,26, 0x1ac120,2, 0x1ac140,7, 0x1ac160,7, 0x1ac180,4, 0x1ac200,1, 0x1ac208,4, 0x1ac240,6, 0x1ac260,6, 0x1ac280,4, 0x1ac300,6, 0x1ac320,6, 0x1ac340,17, 0x1ac400,2, 0x1ac444,16, 0x1ac488,4, 0x1ac4c0,7, 0x1ac4e0,7, 0x1ac500,7, 0x1ac800,3, 0x1ac880,3, 0x1ac8c4,1, 0x1ac8d0,13, 0x1aca00,1, 0x1aca08,4, 0x1aca20,3, 0x1aca30,3, 0x1aca40,1, 0x1aca80,5, 0x1acac0,2, 0x1acad4,1, 0x1acadc,4, 0x1acb00,1, 0x1acb08,5, 0x1acb20,8, 0x1acc00,1, 0x1acc08,4, 0x1ace00,47, 0x1acf00,47, 0x1ad000,1, 0x1ad008,4, 0x1ad040,5, 0x1ad060,5, 0x1ad200,4, 0x1ad300,37, 0x1ad400,2, 0x1ad444,1, 0x1ad458,15, 0x1ad500,15, 0x1ad600,2, 0x1ad704,1, 0x1ad778,49, 0x1ad900,52, 0x1ada00,27, 0x1ada80,4, 0x1adac0,25, 0x1adb40,6, 0x1adb60,2, 0x1adb6c,3, 0x1adb80,8, 0x1adba4,14, 0x1adc00,3, 0x1b0000,7, 0x1b0020,7, 0x1b0040,3, 0x1b0084,1, 0x1b00b8,18, 0x1b0104,1, 0x1b010c,4, 0x1b0120,2, 0x1b0130,1, 0x1b013c,1, 0x1b0148,1, 0x1b0154,1, 0x1b0160,27, 0x1b0200,6, 0x1b0220,6, 0x1b0240,6, 0x1b0260,6, 0x1b0280,6, 0x1b02a0,6, 0x1b02c0,6, 0x1b02e0,6, 0x1b0300,6, 0x1b0320,6, 0x1b0340,6, 0x1b0360,6, 0x1b0380,6, 0x1b03a0,6, 0x1b03c0,6, 0x1b03e0,6, 0x1b0400,6, 0x1b0420,6, 0x1b0440,6, 0x1b0460,6, 0x1b0480,6, 0x1b04a0,6, 0x1b04c0,6, 0x1b04e0,6, 0x1b0500,6, 0x1b0520,6, 0x1b0540,6, 0x1b0560,6, 0x1b0580,6, 0x1b05a0,6, 0x1b05c0,6, 0x1b05e0,6, 0x1b0600,16, 0x1b0700,21, 0x1b0780,21, 0x1b0800,4, 0x1b0840,10, 0x1b0880,21, 0x1b0900,16, 0x1b0944,3, 0x1b0954,6, 0x1b0980,8, 0x1b1000,17, 0x1b1080,17, 0x1b1100,4, 0x1b1140,10, 0x1b1180,3, 0x1b1200,1, 0x1b1208,4, 0x1b1220,9, 0x1b1248,4, 0x1b1260,11, 0x1b1290,4, 0x1b1300,4, 0x1b1340,9, 0x1b2004,1, 0x1b2010,8, 0x1b2044,1, 0x1b204c,1, 0x1b2054,1, 0x1b205c,2, 0x1b2080,2, 0x1b2100,3, 0x1b2200,2, 0x1b4004,1, 0x1b407c,33, 0x1b4200,68, 0x1b4400,2, 0x1b4424,1, 0x1b4434,4, 0x1b4460,1, 0x1b4468,4, 0x1b4480,12, 0x1b44c0,2, 0x1b44e0,2, 0x1b44ec,2, 0x1b4500,8, 0x1b4600,3, 0x1b4620,3, 0x1b4630,3, 0x1b4640,7, 0x1b4680,1, 0x1b46c0,1, 0x1b46e0,11, 0x1b4720,3, 0x1b4730,3, 0x1b4740,7, 0x1b4784,1, 0x1b4798,10, 0x1b4800,36, 0x1b4a00,27, 0x1b4a80,4, 0x1b4ac0,25, 0x1b4b40,6, 0x1b4b60,2, 0x1b4b6c,3, 0x1b4b80,8, 0x1b4ba4,15, 0x1b4c00,2, 0x1b4c20,13, 0x1b5000,2, 0x1b500c,3, 0x1b5020,2, 0x1b502c,3, 0x1b5040,10, 0x1b5404,1, 0x1b5414,32, 0x1b5800,3, 0x1b5844,1, 0x1b5850,12, 0x1b5884,1, 0x1b589c,9, 0x1b6004,1, 0x1b607c,33, 0x1b6200,68, 0x1b6400,2, 0x1b6424,1, 0x1b6434,4, 0x1b6460,1, 0x1b6468,4, 0x1b6480,12, 0x1b64c0,2, 0x1b64e0,2, 0x1b64ec,2, 0x1b6500,8, 0x1b6600,3, 0x1b6620,3, 0x1b6630,3, 0x1b6640,7, 0x1b6680,1, 0x1b66c0,1, 0x1b66e0,11, 0x1b6720,3, 0x1b6730,3, 0x1b6740,7, 0x1b6784,1, 0x1b6798,10, 0x1b6800,36, 0x1b6a00,27, 0x1b6a80,4, 0x1b6ac0,25, 0x1b6b40,6, 0x1b6b60,2, 0x1b6b6c,3, 0x1b6b80,8, 0x1b6ba4,15, 0x1b6c00,2, 0x1b6c20,13, 0x1b7000,2, 0x1b700c,3, 0x1b7020,2, 0x1b702c,3, 0x1b7040,10, 0x1b7404,1, 0x1b7414,32, 0x1b7800,3, 0x1b7844,1, 0x1b7850,12, 0x1b7884,1, 0x1b789c,9, 0x1b8000,2, 0x1b8080,6, 0x1b80a0,6, 0x1b80c0,26, 0x1b8130,1, 0x1b813c,5, 0x1b8180,4, 0x1b81a0,5, 0x1b81c0,1, 0x1b8200,3, 0x1b8280,18, 0x1b8300,9, 0x1b8340,37, 0x1b8400,5, 0x1b8418,6, 0x1b8448,3, 0x1b8458,4, 0x1b8480,16, 0x1b8604,1, 0x1b8638,18, 0x1b8684,1, 0x1b869c,9, 0x1b86c4,1, 0x1b86d0,4, 0x1b86e4,1, 0x1b86f0,4, 0x1b8704,1, 0x1b8710,4, 0x1b8724,1, 0x1b8730,7, 0x1b8800,2, 0x1b8884,1, 0x1b88b8,20, 0x1b8984,1, 0x1b89b8,30, 0x1b8a40,6, 0x1b8a60,3, 0x1b8a80,6, 0x1b8aa4,2, 0x1b8ac0,9, 0x1b8b00,6, 0x1b8b20,6, 0x1b8b40,6, 0x1b8b60,6, 0x1b8c00,1, 0x1b9000,2, 0x1b9104,1, 0x1b9184,41, 0x1b9240,10, 0x1b9400,4, 0x1b9500,50, 0x1b9600,4, 0x1b9620,5, 0x1b9640,2, 0x1b9800,1, 0x1b9808,4, 0x1b9820,4, 0x1b9880,2, 0x1b98c4,1, 0x1b98e0,10, 0x1b9944,1, 0x1b9960,10, 0x1b99c4,1, 0x1b99e0,9, 0x1b9a10,4, 0x1b9a24,14, 0x1b9c00,7, 0x1b9c20,7, 0x1b9c80,4, 0x1b9cc0,11, 0x1b9d00,4, 0x1b9d80,4, 0x1b9dc0,9, 0x1b9e00,1, 0x1b9e08,12, 0x1ba000,27, 0x1ba080,4, 0x1ba0c0,25, 0x1ba140,6, 0x1ba160,2, 0x1ba16c,3, 0x1ba180,8, 0x1ba1a4,9, 0x1ba400,1, 0x1ba408,4, 0x1ba600,47, 0x1ba700,47, 0x1ba800,2, 0x1ba904,1, 0x1ba96c,39, 0x1baa44,17, 0x1baaa4,1, 0x1baab0,6, 0x1baae4,1, 0x1baaf4,4, 0x1bab08,4, 0x1bab20,4, 0x1bab40,24, 0x1bac00,41, 0x1bacb0,4, 0x1bad04,1, 0x1bad40,16, 0x1bad84,1, 0x1bad8c,8, 0x1bae00,2, 0x1bae24,1, 0x1bae34,4, 0x1bae80,1, 0x1bae88,4, 0x1baea0,16, 0x1c0000,36, 0x1c0100,36, 0x1c0200,36, 0x1c0300,36, 0x1c0400,133, 0x1c0640,12, 0x1c0680,12, 0x1c06c0,12, 0x1c0700,12, 0x1c0740,12, 0x1c0780,12, 0x1c07c0,12, 0x1c0800,12, 0x1c0840,12, 0x1c0880,12, 0x1c08c0,12, 0x1c0900,12, 0x1c0940,12, 0x1c0980,12, 0x1c09c0,12, 0x1c0a00,12, 0x1c0a40,12, 0x1c0a80,12, 0x1c0ac0,12, 0x1c0b00,12, 0x1c0b40,12, 0x1c0b80,12, 0x1c0bc0,12, 0x1c0c00,12, 0x1c0c40,12, 0x1c0c80,12, 0x1c0cc0,12, 0x1c0d00,12, 0x1c0d40,12, 0x1c0d80,12, 0x1c0dc0,12, 0x1c0e00,12, 0x1c1000,36, 0x1c1100,36, 0x1c1200,36, 0x1c1300,36, 0x1c1400,133, 0x1c1640,12, 0x1c1680,12, 0x1c16c0,12, 0x1c1700,12, 0x1c1740,12, 0x1c1780,12, 0x1c17c0,12, 0x1c1800,12, 0x1c1840,12, 0x1c1880,12, 0x1c18c0,12, 0x1c1900,12, 0x1c1940,12, 0x1c1980,12, 0x1c19c0,12, 0x1c1a00,12, 0x1c1a40,12, 0x1c1a80,12, 0x1c1ac0,12, 0x1c1b00,12, 0x1c1b40,12, 0x1c1b80,12, 0x1c1bc0,12, 0x1c1c00,12, 0x1c1c40,12, 0x1c1c80,12, 0x1c1cc0,12, 0x1c1d00,12, 0x1c1d40,12, 0x1c1d80,12, 0x1c1dc0,12, 0x1c1e00,12, 0x1c2000,36, 0x1c2100,36, 0x1c2200,36, 0x1c2300,36, 0x1c2400,133, 0x1c2640,12, 0x1c2680,12, 0x1c26c0,12, 0x1c2700,12, 0x1c2740,12, 0x1c2780,12, 0x1c27c0,12, 0x1c2800,12, 0x1c2840,12, 0x1c2880,12, 0x1c28c0,12, 0x1c2900,12, 0x1c2940,12, 0x1c2980,12, 0x1c29c0,12, 0x1c2a00,12, 0x1c2a40,12, 0x1c2a80,12, 0x1c2ac0,12, 0x1c2b00,12, 0x1c2b40,12, 0x1c2b80,12, 0x1c2bc0,12, 0x1c2c00,12, 0x1c2c40,12, 0x1c2c80,12, 0x1c2cc0,12, 0x1c2d00,12, 0x1c2d40,12, 0x1c2d80,12, 0x1c2dc0,12, 0x1c2e00,12, 0x1c3000,36, 0x1c3100,36, 0x1c3200,36, 0x1c3300,36, 0x1c3400,133, 0x1c3640,12, 0x1c3680,12, 0x1c36c0,12, 0x1c3700,12, 0x1c3740,12, 0x1c3780,12, 0x1c37c0,12, 0x1c3800,12, 0x1c3840,12, 0x1c3880,12, 0x1c38c0,12, 0x1c3900,12, 0x1c3940,12, 0x1c3980,12, 0x1c39c0,12, 0x1c3a00,12, 0x1c3a40,12, 0x1c3a80,12, 0x1c3ac0,12, 0x1c3b00,12, 0x1c3b40,12, 0x1c3b80,12, 0x1c3bc0,12, 0x1c3c00,12, 0x1c3c40,12, 0x1c3c80,12, 0x1c3cc0,12, 0x1c3d00,12, 0x1c3d40,12, 0x1c3d80,12, 0x1c3dc0,12, 0x1c3e00,12, 0x1c4000,36, 0x1c4100,36, 0x1c4200,36, 0x1c4300,36, 0x1c4400,133, 0x1c4640,12, 0x1c4680,12, 0x1c46c0,12, 0x1c4700,12, 0x1c4740,12, 0x1c4780,12, 0x1c47c0,12, 0x1c4800,12, 0x1c4840,12, 0x1c4880,12, 0x1c48c0,12, 0x1c4900,12, 0x1c4940,12, 0x1c4980,12, 0x1c49c0,12, 0x1c4a00,12, 0x1c4a40,12, 0x1c4a80,12, 0x1c4ac0,12, 0x1c4b00,12, 0x1c4b40,12, 0x1c4b80,12, 0x1c4bc0,12, 0x1c4c00,12, 0x1c4c40,12, 0x1c4c80,12, 0x1c4cc0,12, 0x1c4d00,12, 0x1c4d40,12, 0x1c4d80,12, 0x1c4dc0,12, 0x1c4e00,12, 0x1c5000,36, 0x1c5100,36, 0x1c5200,36, 0x1c5300,36, 0x1c5400,133, 0x1c5640,12, 0x1c5680,12, 0x1c56c0,12, 0x1c5700,12, 0x1c5740,12, 0x1c5780,12, 0x1c57c0,12, 0x1c5800,12, 0x1c5840,12, 0x1c5880,12, 0x1c58c0,12, 0x1c5900,12, 0x1c5940,12, 0x1c5980,12, 0x1c59c0,12, 0x1c5a00,12, 0x1c5a40,12, 0x1c5a80,12, 0x1c5ac0,12, 0x1c5b00,12, 0x1c5b40,12, 0x1c5b80,12, 0x1c5bc0,12, 0x1c5c00,12, 0x1c5c40,12, 0x1c5c80,12, 0x1c5cc0,12, 0x1c5d00,12, 0x1c5d40,12, 0x1c5d80,12, 0x1c5dc0,12, 0x1c5e00,12, 0x1c6000,36, 0x1c6100,36, 0x1c6200,36, 0x1c6300,36, 0x1c6400,133, 0x1c6640,12, 0x1c6680,12, 0x1c66c0,12, 0x1c6700,12, 0x1c6740,12, 0x1c6780,12, 0x1c67c0,12, 0x1c6800,12, 0x1c6840,12, 0x1c6880,12, 0x1c68c0,12, 0x1c6900,12, 0x1c6940,12, 0x1c6980,12, 0x1c69c0,12, 0x1c6a00,12, 0x1c6a40,12, 0x1c6a80,12, 0x1c6ac0,12, 0x1c6b00,12, 0x1c6b40,12, 0x1c6b80,12, 0x1c6bc0,12, 0x1c6c00,12, 0x1c6c40,12, 0x1c6c80,12, 0x1c6cc0,12, 0x1c6d00,12, 0x1c6d40,12, 0x1c6d80,12, 0x1c6dc0,12, 0x1c6e00,12, 0x1c7000,36, 0x1c7100,36, 0x1c7200,36, 0x1c7300,36, 0x1c7400,133, 0x1c7640,12, 0x1c7680,12, 0x1c76c0,12, 0x1c7700,12, 0x1c7740,12, 0x1c7780,12, 0x1c77c0,12, 0x1c7800,12, 0x1c7840,12, 0x1c7880,12, 0x1c78c0,12, 0x1c7900,12, 0x1c7940,12, 0x1c7980,12, 0x1c79c0,12, 0x1c7a00,12, 0x1c7a40,12, 0x1c7a80,12, 0x1c7ac0,12, 0x1c7b00,12, 0x1c7b40,12, 0x1c7b80,12, 0x1c7bc0,12, 0x1c7c00,12, 0x1c7c40,12, 0x1c7c80,12, 0x1c7cc0,12, 0x1c7d00,12, 0x1c7d40,12, 0x1c7d80,12, 0x1c7dc0,12, 0x1c7e00,12, 0x1c8000,36, 0x1c8100,36, 0x1c8200,36, 0x1c8300,36, 0x1c8400,133, 0x1c8640,12, 0x1c8680,12, 0x1c86c0,12, 0x1c8700,12, 0x1c8740,12, 0x1c8780,12, 0x1c87c0,12, 0x1c8800,12, 0x1c8840,12, 0x1c8880,12, 0x1c88c0,12, 0x1c8900,12, 0x1c8940,12, 0x1c8980,12, 0x1c89c0,12, 0x1c8a00,12, 0x1c8a40,12, 0x1c8a80,12, 0x1c8ac0,12, 0x1c8b00,12, 0x1c8b40,12, 0x1c8b80,12, 0x1c8bc0,12, 0x1c8c00,12, 0x1c8c40,12, 0x1c8c80,12, 0x1c8cc0,12, 0x1c8d00,12, 0x1c8d40,12, 0x1c8d80,12, 0x1c8dc0,12, 0x1c8e00,12, 0x1c9000,2, 0x1d0000,9, 0x1d0080,2, 0x1d00c4,1, 0x1d00e0,45, 0x1d01c0,4, 0x1d01e0,5, 0x1d0200,4, 0x1d0400,7, 0x1d0600,4, 0x1d0700,43, 0x1d0800,5, 0x1d0820,2, 0x1e0000,4, 0x1e0100,3, 0x1e0110,35, 0x1e0200,4, 0x1e0400,15, 0x1e0440,4, 0x1e0460,17, 0x1e04c0,6, 0x1e04e0,2, 0x1e04ec,3, 0x1e0500,8, 0x1e0524,36, 0x1e0600,2, 0x1e0610,3, 0x1e0800,2, 0x1e0904,1, 0x1e096c,39, 0x1e0b04,1, 0x1e0b78,42, 0x1e0c40,4, 0x1e0c60,5, 0x1e0c80,2, 0x1e0c8c,2, 0x1e0ca0,7, 0x1e1000,2, 0x1e1020,22, 0x1e1080,25, 0x1e2000,12, 0x1e2040,12, 0x1e2080,12, 0x1e20c0,12, 0x1e2100,85, 0x1e2400,1, 0x1e2414,8, 0x1e2438,5, 0x1e2450,5, 0x1e2468,5, 0x1e2480,3, 0x1e2500,15, 0x1e2540,9, 0x1e2580,6, 0x1e25a0,4, 0x1e25c0,8, 0x1e25e4,4, 0x1e2600,12, 0x1e2640,2, 0x1e264c,3, 0x1e2660,5, 0x1e2680,3, 0x1e26a0,2, 0x1e26ac,2, 0x1e26c0,2, 0x1e2800,1, 0x1e2814,8, 0x1e2838,5, 0x1e2850,3, 0x1e2900,15, 0x1e2940,9, 0x1e2980,6, 0x1e29a0,4, 0x1e29c0,8, 0x1e29e4,2, 0x1e2a00,12, 0x1e2a40,2, 0x1e2a4c,3, 0x1e2a60,5, 0x1e2a80,3, 0x1e2aa0,2, 0x1e2aac,2, 0x1e2ac0,2, 0x1e2c00,6, 0x1e2c24,3, 0x1e2c34,3, 0x1e2c44,8, 0x1e2c68,2, 0x1e2c80,4, 0x1e2ca0,5, 0x1e2cc0,2, 0x1e2ccc,2, 0x1e2ce0,1, 0x1e2ce8,21, 0x1e3000,7, 0x1e3020,9, 0x1e3050,10, 0x1e3080,57, 0x1e3170,10, 0x1e31a0,57, 0x1e3290,10, 0x1e32c0,56, 0x1e3400,22, 0x1e3480,22, 0x1e3500,22, 0x1e3580,8, 0x1e35a4,27, 0x1e3620,6, 0x1e3640,6, 0x1e3660,1, 0x1e3680,9, 0x1e36bc,10, 0x1e36fc,1, 0x1e3800,108, 0x1e4000,4, 0x1e4100,50, 0x1e4200,2, 0x1e420c,2, 0x1e4220,6, 0x1e4240,3, 0x1e4250,3, 0x1e4264,1, 0x1e4274,5, 0x1e42a0,2, 0x1e42b4,1, 0x1e42bc,12, 0x1e4300,18, 0x1e4380,18, 0x1e4400,14, 0x1e4800,44, 0x1e48c0,5, 0x1e48e0,5, 0x1e4900,5, 0x1e4920,5, 0x1e4940,5, 0x1e4960,5, 0x1e4980,5, 0x1e49a0,5, 0x1e49c0,5, 0x1e49e0,1, 0x1e4c00,6, 0x1e4c20,3, 0x1e4c30,150, 0x1e6000,6, 0x1e6200,27, 0x1e6280,4, 0x1e62c0,25, 0x1e6340,6, 0x1e6360,2, 0x1e636c,3, 0x1e6380,8, 0x1e63a4,3, 0x1e6400,7, 0x1e6420,2, 0x1e642c,2, 0x1e6500,2, 0x1e6584,1, 0x1e6590,30, 0x1e6684,1, 0x1e6690,30, 0x1e6784,1, 0x1e6790,30, 0x1e6884,1, 0x1e6890,28, 0x1e6c00,226, 0x1e6f8c,2, 0x1e6fa0,5, 0x1e6fc0,84, 0x1e7200,22, 0x1e7260,9, 0x1e7288,2, 0x1e8000,8, 0x1e8040,9, 0x1e8080,1, 0x1e8088,4, 0x1e80a0,1, 0x1e80a8,4, 0x1e80c0,1, 0x1e80c8,4, 0x1e80e0,1, 0x200004,15, 0x200044,1, 0x200060,8, 0x200084,1, 0x200098,10, 0x2000c4,1, 0x2000e0,8, 0x200104,1, 0x200120,8, 0x200144,1, 0x200160,8, 0x200184,7, 0x2001c4,1, 0x2001e0,8, 0x200204,1, 0x200220,8, 0x200244,1, 0x200260,8, 0x200284,7, 0x2002c4,1, 0x2002e0,8, 0x200304,1, 0x200320,8, 0x200344,1, 0x200360,8, 0x200384,7, 0x2003c4,1, 0x2003e0,14, 0x200420,9, 0x200448,8, 0x200484,1, 0x200494,3, 0x2004a4,3, 0x2004b4,3, 0x2004c4,3, 0x2004d4,3, 0x2004e4,3, 0x2004f4,3, 0x200504,3, 0x200514,3, 0x200524,3, 0x200534,3, 0x200544,3, 0x200804,1, 0x200820,47, 0x200904,5, 0x200924,1, 0x200930,12, 0x200980,3, 0x200990,2, 0x2009a4,1, 0x2009ac,1, 0x2009c0,6, 0x2009e0,5, 0x200a00,3, 0x201000,6, 0x201020,6, 0x201040,6, 0x201060,6, 0x201080,6, 0x2010a0,6, 0x2010c0,6, 0x2010e0,6, 0x201100,2, 0x201144,1, 0x201150,12, 0x201200,18, 0x201280,18, 0x201300,18, 0x201380,2, 0x201400,2, 0x201800,11, 0x201830,15, 0x201870,10, 0x201904,1, 0x20191c,49, 0x201a04,1, 0x201a10,12, 0x201a44,5, 0x201a80,3, 0x201a90,2, 0x201aa4,1, 0x201aac,1, 0x201ac0,6, 0x201ae0,6, 0x201b00,15, 0x201b40,4, 0x201b60,5, 0x201b80,4, 0x201ba0,7, 0x201bc0,4, 0x201be0,5, 0x201c00,9, 0x201d04,1, 0x201d20,56, 0x201e04,1, 0x201e78,34, 0x201f04,1, 0x201f58,42, 0x202004,1, 0x202070,36, 0x202104,1, 0x202114,6, 0x202140,15, 0x202184,1, 0x202190,12, 0x202200,3, 0x202210,2, 0x202224,1, 0x20222c,1, 0x202240,6, 0x202260,6, 0x202284,1, 0x20228c,3, 0x2022a0,11, 0x2022d0,15, 0x202310,7, 0x202384,1, 0x202390,12, 0x2023c4,5, 0x202400,3, 0x202410,2, 0x202424,1, 0x20242c,1, 0x202440,6, 0x202460,5, 0x202480,11, 0x2024b0,15, 0x2024f0,7, 0x202580,28, 0x202600,21, 0x202680,13, 0x2026c0,13, 0x202700,22, 0x202780,22, 0x202800,13, 0x202840,13, 0x202880,15, 0x2028c0,15, 0x202900,13, 0x202940,13, 0x202980,10, 0x2029c0,10, 0x202a00,6, 0x202a44,19, 0x202ac0,14, 0x202b00,52, 0x202c00,36, 0x202d00,15, 0x202d40,2, 0x204000,8, 0x204040,12, 0x204080,3, 0x204090,2, 0x2040a0,4, 0x204200,93, 0x208000,11, 0x208030,7, 0x208050,3, 0x208060,14, 0x2080a0,5, 0x208200,11, 0x208230,2, 0x208240,11, 0x208270,2, 0x208280,1, 0x208288,15, 0x2082e0,2, 0x2082ec,3, 0x208300,4, 0x208380,26, 0x208400,11, 0x208430,2, 0x208440,11, 0x208470,2, 0x208480,1, 0x208488,15, 0x2084e0,2, 0x2084ec,3, 0x208500,4, 0x208580,26, 0x208600,32, 0x208684,2, 0x208690,4, 0x208800,27, 0x208880,4, 0x2088c0,25, 0x208940,6, 0x208960,2, 0x20896c,3, 0x208980,8, 0x2089a4,7, 0x208a00,9, 0x208a40,20, 0x208aa0,7, 0x208ac0,7, 0x208ae0,15, 0x208b20,1, 0x209000,1, 0x209080,20, 0x209100,7, 0x209200,1, 0x209220,6, 0x209240,6, 0x209260,6, 0x209280,34, 0x210000,27, 0x210080,4, 0x2100c0,25, 0x210140,6, 0x210160,2, 0x21016c,3, 0x210200,8, 0x210224,30, 0x210400,3, 0x210420,6, 0x210440,6, 0x210460,6, 0x210480,6, 0x2104a0,6, 0x2104c0,6, 0x2104e0,6, 0x210500,6, 0x210520,6, 0x210540,6, 0x210560,6, 0x210580,6, 0x2105a0,6, 0x2105c0,6, 0x2105e0,6, 0x210600,6, 0x210620,6, 0x210640,6, 0x210660,6, 0x210680,6, 0x2106a0,6, 0x2106c0,5, 0x210700,2, 0x210784,1, 0x2107b0,21, 0x210810,5, 0x210830,4, 0x211004,1, 0x211040,16, 0x211084,1, 0x2110bc,17, 0x211104,1, 0x211130,20, 0x211184,1, 0x2111c0,16, 0x211204,1, 0x211224,23, 0x211284,1, 0x2112c0,16, 0x211304,1, 0x21133c,17, 0x211384,1, 0x2113c0,16, 0x211404,1, 0x21143c,17, 0x211484,1, 0x21149c,11, 0x212000,6, 0x212020,4, 0x212040,6, 0x212060,4, 0x212080,6, 0x2120a0,4, 0x2120c0,6, 0x2120e0,4, 0x212100,6, 0x212120,4, 0x212140,6, 0x212160,4, 0x212180,6, 0x2121a0,4, 0x2121c0,6, 0x2121e0,4, 0x212200,6, 0x212220,4, 0x212240,6, 0x212260,4, 0x212280,6, 0x2122a0,4, 0x2122c0,6, 0x2122e0,4, 0x212300,6, 0x212320,4, 0x212340,6, 0x212360,4, 0x212380,6, 0x2123a0,4, 0x2123c0,6, 0x2123e0,4, 0x212400,6, 0x212420,4, 0x212440,6, 0x212460,4, 0x212480,6, 0x2124a0,4, 0x2124c0,6, 0x2124e0,4, 0x212500,6, 0x212520,4, 0x212540,6, 0x212560,4, 0x212580,6, 0x2125a0,4, 0x2125c0,6, 0x2125e0,4, 0x212600,6, 0x212620,4, 0x212640,6, 0x212660,4, 0x212680,6, 0x2126a0,4, 0x2126c0,6, 0x2126e0,4, 0x212700,6, 0x212720,4, 0x212740,6, 0x212760,4, 0x212780,6, 0x2127a0,4, 0x2127c0,6, 0x2127e0,4, 0x212800,41, 0x2128b4,3, 0x2128c4,3, 0x2128e0,1, 0x212900,20, 0x212980,20, 0x212a00,22, 0x212a64,1, 0x212a74,3, 0x213000,18, 0x213060,1, 0x213068,4, 0x213080,4, 0x2130a0,12, 0x2130e0,7, 0x213100,4, 0x213180,22, 0x213200,4, 0x213300,38, 0x213400,4, 0x213440,14, 0x213480,7, 0x2134a0,7, 0x2134c0,7, 0x2134e0,7, 0x213500,4, 0x213580,23, 0x213600,4, 0x213680,28, 0x213700,4, 0x213780,23, 0x213800,4, 0x213880,19, 0x213900,4, 0x213940,11, 0x213a00,89, 0x213b70,4, 0x214000,9, 0x214040,9, 0x214080,9, 0x2140c0,9, 0x214100,9, 0x214140,9, 0x214180,9, 0x2141c0,9, 0x214200,22, 0x214280,9, 0x2142c0,9, 0x214300,12, 0x214334,20, 0x214400,36, 0x214500,36, 0x214600,36, 0x214700,36, 0x214800,6, 0x214820,6, 0x214840,17, 0x214900,35, 0x215000,2, 0x215020,2, 0x21502c,3, 0x218000,1, 0x218010,4, 0x218024,1, 0x21802c,4, 0x218044,1, 0x21804c,6, 0x218104,1, 0x218140,19, 0x218200,1, 0x218220,1, 0x218228,4, 0x218400,1, 0x218408,5, 0x218420,2, 0x218430,3, 0x218600,27, 0x218680,4, 0x2186c0,25, 0x218740,6, 0x218760,2, 0x21876c,3, 0x218780,8, 0x2187a4,4, 0x218800,7, 0x218904,3, 0x218914,3, 0x218924,3, 0x218934,5, 0x218984,5, 0x218a00,34, 0x218b00,6, 0x218b20,6, 0x218b40,7, 0x218b60,4, 0x218b84,1, 0x218b94,9, 0x218bc0,6, 0x218be0,6, 0x218c00,6, 0x218c20,6, 0x218c40,6, 0x218c60,1, 0x218c80,9, 0x218cb0,6, 0x219000,1, 0x219100,2, 0x219184,1, 0x2191bc,18, 0x219208,4, 0x219220,18, 0x219274,5, 0x21928c,4, 0x220000,2, 0x220024,1, 0x220034,4, 0x220060,1, 0x220068,4, 0x220400,63, 0x220504,4, 0x220604,1, 0x22063c,27, 0x2206ac,1, 0x2206c0,10, 0x2206ec,1, 0x220800,3, 0x220810,3, 0x220900,39, 0x220a00,1, 0x220c00,11, 0x220c30,3, 0x220c40,4, 0x220c60,6, 0x220c80,32, 0x221000,3, 0x221010,3, 0x221100,39, 0x221200,1, 0x221400,11, 0x221430,3, 0x221440,4, 0x221460,6, 0x221480,33, 0x221508,4, 0x221520,4, 0x221540,1, 0x221548,4, 0x221560,4, 0x221804,10, 0x221840,22, 0x2218a0,6, 0x221900,8, 0x222000,2, 0x222024,1, 0x222034,4, 0x222060,1, 0x222068,4, 0x222400,63, 0x222504,4, 0x222604,1, 0x22263c,27, 0x2226ac,1, 0x2226c0,10, 0x2226ec,1, 0x222800,3, 0x222810,3, 0x222900,39, 0x222a00,1, 0x222c00,11, 0x222c30,3, 0x222c40,4, 0x222c60,6, 0x222c80,32, 0x223000,3, 0x223010,3, 0x223100,39, 0x223200,1, 0x223400,11, 0x223430,3, 0x223440,4, 0x223460,6, 0x223480,33, 0x223508,4, 0x223520,4, 0x223540,1, 0x223548,4, 0x223560,4, 0x223804,10, 0x223840,22, 0x2238a0,6, 0x223900,8, 0x224000,3, 0x224084,1, 0x2240a0,49, 0x224170,6, 0x22418c,2, 0x2241a0,6, 0x2241c0,6, 0x2241e0,2, 0x224200,7, 0x224220,7, 0x224240,3, 0x224250,3, 0x224260,3, 0x224270,3, 0x224400,43, 0x2244b0,3, 0x2244c0,2, 0x224504,1, 0x22453c,18, 0x224588,4, 0x224604,1, 0x22463c,23, 0x2246a0,6, 0x2246c0,6, 0x2246e0,6, 0x224700,7, 0x224720,4, 0x224740,6, 0x224800,16, 0x224844,2, 0x224880,16, 0x2248c4,2, 0x224900,4, 0x224a00,1, 0x224b00,3, 0x224b20,5, 0x224b40,5, 0x224b60,5, 0x224b80,5, 0x224ba0,3, 0x228000,63, 0x228104,4, 0x228204,3, 0x228240,1, 0x228248,4, 0x228264,4, 0x228280,6, 0x2282a0,6, 0x2282c0,6, 0x2282e0,1, 0x2282e8,2, 0x2282f4,4, 0x228308,4, 0x228320,7, 0x228400,4, 0x228484,1, 0x2284c4,15, 0x228800,63, 0x228904,4, 0x228a04,3, 0x228a40,1, 0x228a48,4, 0x228a64,4, 0x228a80,6, 0x228aa0,6, 0x228ac0,6, 0x228ae0,1, 0x228ae8,2, 0x228af4,4, 0x228b08,4, 0x228b20,7, 0x228c00,4, 0x228c84,1, 0x228cc4,15, 0x229000,3, 0x229010,5, 0x229028,12, 0x229100,16, 0x229144,2, 0x229180,16, 0x2291c4,2, 0x229200,1, 0x229208,4, 0x229400,27, 0x229480,4, 0x2294c0,25, 0x229540,6, 0x229560,2, 0x22956c,3, 0x229580,8, 0x2295a4,7, 0x229600,25, 0x229670,4, 0x229684,1, 0x2296a0,25, 0x229720,8, 0x229800,4, 0x229880,19, 0x229900,24, 0x229980,4, 0x2299c0,9, 0x229a00,4, 0x229a40,9, 0x229b00,4, 0x229b80,17, 0x229c00,4, 0x229c80,17, 0x229d00,11, 0x229d30,3, 0x229d40,1, 0x229d50,4, 0x22a000,5, 0x22a020,3, 0x22a030,2, 0x22a200,27, 0x22a280,4, 0x22a2c0,25, 0x22a340,6, 0x22a360,2, 0x22a36c,3, 0x22a380,8, 0x22a3a4,10, 0x22a400,10, 0x22a440,9, 0x22a600,3, 0x22a624,4, 0x22a644,13, 0x22a680,2, 0x22a690,1, 0x22a698,4, 0x22a6c0,12, 0x22a700,1, 0x22a708,8, 0x230000,3, 0x230010,3, 0x230080,25, 0x2300f0,7, 0x230204,1, 0x23025c,41, 0x230400,27, 0x230480,4, 0x2304c0,25, 0x230540,6, 0x230560,2, 0x23056c,3, 0x230580,8, 0x2305a4,9, 0x230600,1, 0x230608,9, 0x230640,2, 0x23064c,2, 0x230660,16, 0x230700,4, 0x230780,19, 0x230800,4, 0x230880,19, 0x230900,19, 0x230950,3, 0x230960,3, 0x230970,3, 0x230980,12, 0x234000,1280, 0x236000,1, 0x236008,2, 0x236014,3, 0x236024,3, 0x236040,1, 0x236048,4, 0x236064,4, 0x236080,6, 0x2360a0,6, 0x2360c0,6, 0x2360e0,6, 0x236100,6, 0x236120,6, 0x236140,6, 0x236160,6, 0x236180,6, 0x2361a0,6, 0x2361c0,6, 0x2361e0,6, 0x236200,6, 0x236220,6, 0x236240,6, 0x236260,6, 0x236280,1, 0x236288,4, 0x2362a0,2, 0x2362b0,8, 0x236400,67, 0x236600,2, 0x236700,3, 0x236720,2, 0x236734,14, 0x236780,1, 0x236790,3, 0x2367a0,1, 0x236800,351, 0x237000,2, 0x23700c,2, 0x237020,7, 0x237040,14, 0x237080,14, 0x238000,1280, 0x23a000,1, 0x23a008,2, 0x23a014,3, 0x23a024,3, 0x23a040,1, 0x23a048,4, 0x23a064,4, 0x23a080,6, 0x23a0a0,6, 0x23a0c0,6, 0x23a0e0,6, 0x23a100,6, 0x23a120,6, 0x23a140,6, 0x23a160,6, 0x23a180,6, 0x23a1a0,6, 0x23a1c0,6, 0x23a1e0,6, 0x23a200,6, 0x23a220,6, 0x23a240,6, 0x23a260,6, 0x23a280,1, 0x23a288,4, 0x23a2a0,2, 0x23a2b0,8, 0x23a400,67, 0x23a600,2, 0x23a700,3, 0x23a720,2, 0x23a734,14, 0x23a780,1, 0x23a790,3, 0x23a7a0,1, 0x23a800,351, 0x23b000,2, 0x23b00c,2, 0x23b020,7, 0x23b040,14, 0x23b080,14, 0x23c000,2, 0x23c014,10, 0x23c040,7, 0x23c060,3, 0x23c070,3, 0x23c080,3, 0x23c090,3, 0x23c0a0,7, 0x23c0c0,7, 0x23c0e0,3, 0x23c0f0,3, 0x23c100,3, 0x23c110,3, 0x23c200,4, 0x23c280,18, 0x23c300,4, 0x23c380,18, 0x23c400,18, 0x23c480,18, 0x23c500,18, 0x23c580,18, 0x240000,1, 0x240008,15, 0x240204,1, 0x240210,12, 0x240244,1, 0x240250,12, 0x240284,1, 0x240290,12, 0x2402c4,1, 0x2402d0,16, 0x240380,3, 0x2403c4,1, 0x2403d0,13, 0x240800,2, 0x240904,1, 0x240978,36, 0x240b04,1, 0x240b70,38, 0x240c44,1, 0x240c58,10, 0x240c84,32, 0x240d20,1, 0x240d30,7, 0x240e00,4, 0x240e80,18, 0x240f00,2, 0x240f44,1, 0x240f58,17, 0x240fc0,10, 0x241000,10, 0x241040,11, 0x241080,1, 0x241090,5, 0x241104,1, 0x241144,18, 0x241200,1, 0x241208,7, 0x241228,4, 0x241240,2, 0x242000,115, 0x242200,17, 0x242280,17, 0x242300,81, 0x242480,5, 0x2424a0,32, 0x242604,1, 0x242610,4, 0x242624,1, 0x242630,4, 0x242644,1, 0x242650,4, 0x242664,1, 0x242670,7, 0x242700,4, 0x242800,34, 0x242900,4, 0x242a00,36, 0x242b00,2, 0x242b24,1, 0x242b30,6, 0x242b64,1, 0x242b70,13, 0x242bb0,6, 0x242be0,2, 0x242bf0,6, 0x242c14,1, 0x242c1c,2, 0x242d00,2, 0x242d84,1, 0x242dbc,18, 0x242e10,5, 0x242e30,5, 0x242e50,5, 0x242e70,4, 0x242e84,3, 0x242ea0,1, 0x242ea8,7, 0x242f00,17, 0x242f80,36, 0x243020,5, 0x243040,4, 0x243060,5, 0x243080,4, 0x2430a0,5, 0x2430c0,4, 0x2430e0,5, 0x243100,1, 0x243120,1, 0x243128,4, 0x243140,3, 0x243150,3, 0x243160,11, 0x244000,49, 0x244100,49, 0x244200,1, 0x244400,4, 0x244500,49, 0x244600,4, 0x244680,19, 0x244700,13, 0x244740,5, 0x244760,2, 0x24476c,3, 0x244780,3, 0x244790,3, 0x2447a0,3, 0x244804,1, 0x244824,59, 0x244944,1, 0x244950,6, 0x244c00,10, 0x245000,27, 0x245080,4, 0x2450c0,25, 0x245140,6, 0x245160,2, 0x24516c,3, 0x245184,4, 0x245200,2, 0x245400,4, 0x245500,43, 0x245600,2, 0x245620,3, 0x245630,3, 0x245640,3, 0x245800,53, 0x245a00,1, 0x245a10,5, 0x245a30,5, 0x245a50,7, 0x245a80,1, 0x245a88,4, 0x245c00,44, 0x245d00,1, 0x245d40,1, 0x245d48,4, 0x245d60,3, 0x245d70,3, 0x248000,46, 0x248100,46, 0x248200,1, 0x248400,4, 0x248500,46, 0x248600,4, 0x248640,14, 0x248700,13, 0x248738,22, 0x248800,5, 0x248820,2, 0x24882c,3, 0x248840,3, 0x248850,3, 0x248860,3, 0x249000,4, 0x249200,89, 0x249400,89, 0x249600,3, 0x249610,3, 0x249620,9, 0x249800,1, 0x24a000,50, 0x24a200,1, 0x24a210,5, 0x24a230,7, 0x24a260,1, 0x24a268,4, 0x24a400,27, 0x24a480,4, 0x24a4c0,25, 0x24a540,6, 0x24a560,2, 0x24a56c,3, 0x24a584,4, 0x24a600,2, 0x24a800,36, 0x24a900,1, 0x24a908,4, 0x24a920,4, 0x24c000,2, 0x24c084,1, 0x24c0ac,26, 0x24c120,2, 0x24c140,7, 0x24c160,7, 0x24c180,4, 0x24c200,1, 0x24c208,4, 0x24c240,6, 0x24c260,6, 0x24c280,4, 0x24c300,1, 0x24c308,4, 0x24c340,7, 0x24c360,7, 0x24c380,6, 0x24c400,3, 0x24c480,3, 0x24c4c4,1, 0x24c4d0,13, 0x24c600,1, 0x24c608,4, 0x24c620,3, 0x24c630,3, 0x24c640,1, 0x24c680,5, 0x24c6c0,2, 0x24c6d4,1, 0x24c6dc,4, 0x24c700,1, 0x24c708,5, 0x24c720,8, 0x24c800,1, 0x24c808,4, 0x24ca00,47, 0x24cb00,47, 0x24cc00,1, 0x24cc08,4, 0x24cc40,5, 0x24cc60,5, 0x24ce00,4, 0x24cf00,37, 0x24d000,2, 0x24d044,1, 0x24d058,15, 0x24d100,16, 0x250004,1, 0x25000c,1, 0x250014,1, 0x25001c,5, 0x250044,4, 0x250064,4, 0x250100,37, 0x250200,1, 0x250400,2, 0x250424,1, 0x250434,5, 0x250600,2, 0x250704,1, 0x250774,36, 0x250810,11, 0x250840,2, 0x250850,3, 0x250860,1, 0x250900,60, 0x250a00,12, 0x250c00,2, 0x250d04,1, 0x250d44,50, 0x251000,27, 0x251080,4, 0x2510c0,25, 0x251140,6, 0x251160,2, 0x25116c,3, 0x251180,8, 0x2511a4,15, 0x251200,1, 0x280000,20, 0x280080,12, 0x300000,19, 0x300100,1, 0x300200,57, 0x300300,57, 0x300400,57, 0x300500,57, 0x300600,57, 0x300700,57, 0x300800,57, 0x300900,57, 0x300a00,57, 0x300b00,57, 0x300c00,57, 0x300d00,57, 0x300e00,57, 0x300f00,57, 0x301000,57, 0x301100,57, 0x301200,6, 0x302000,31, 0x302080,31, 0x302100,31, 0x302180,31, 0x302200,31, 0x302280,31, 0x302300,31, 0x302380,31, 0x302400,31, 0x302480,31, 0x302500,31, 0x302580,31, 0x302600,31, 0x302680,31, 0x302700,31, 0x302780,31, 0x302800,1, 0x302808,31, 0x302a04,1, 0x302a10,6, 0x302a30,64, 0x302c00,7, 0x302c20,4, 0x302c40,20, 0x302ca0,12, 0x302ce0,9, 0x302d20,5, 0x302d40,5, 0x302d60,6, 0x302d80,1, 0x302d88,100, 0x303004,1, 0x30302c,21, 0x303104,1, 0x303148,46, 0x303204,1, 0x30321c,11, 0x303400,8, 0x304000,130, 0x304300,36, 0x304400,36, 0x304500,36, 0x304600,36, 0x304700,36, 0x304800,36, 0x304900,36, 0x304a00,36, 0x304b00,36, 0x304c00,36, 0x304d00,36, 0x304e00,36, 0x304f00,36, 0x305000,36, 0x305100,36, 0x305200,36, 0x305300,64, 0x308000,50, 0x308100,50, 0x308204,1, 0x30821c,11, 0x308280,2, 0x3082a0,5, 0x3082c0,9, 0x308300,3, 0x308320,6, 0x308340,6, 0x308360,1, 0x308368,80, 0x3084c0,5, 0x3084e0,1, 0x3084f0,28, 0x30a000,58, 0x30a0f0,10, 0x30a200,36, 0x30a300,36, 0x30a400,36, 0x30a500,36, 0x30a600,36, 0x30a700,36, 0x30a800,36, 0x30a900,36, 0x30aa00,36, 0x30ab00,36, 0x30ac00,36, 0x30ad00,36, 0x30ae00,36, 0x30af00,36, 0x30b000,36, 0x30b100,36, 0x30b200,36, 0x30b300,36, 0x30c000,51, 0x30c100,1, 0x30c120,9, 0x30c160,9, 0x30c1a0,9, 0x30c1e0,9, 0x30c220,9, 0x30c260,9, 0x30c2a0,9, 0x30c2e0,9, 0x30c320,9, 0x30c360,9, 0x30c3a0,9, 0x30c3e0,9, 0x30c420,9, 0x30c460,9, 0x30c4a0,9, 0x30c4e0,28, 0x30c580,20, 0x30c600,20, 0x30c680,20, 0x30c700,20, 0x30c780,20, 0x30c800,20, 0x30c880,20, 0x30c900,20, 0x30c980,20, 0x30ca00,20, 0x30ca80,20, 0x30cb00,20, 0x30cb80,20, 0x30cc00,20, 0x30cc80,20, 0x30cd00,20, 0x30cd80,20, 0x30ce00,20, 0x30d000,3, 0x30d010,3, 0x30d020,3, 0x30d030,3, 0x30d040,3, 0x30d050,3, 0x30d060,3, 0x30d070,3, 0x30d080,7, 0x30d100,28, 0x30d180,28, 0x30d200,28, 0x30d280,28, 0x30d300,28, 0x30d380,28, 0x30d400,28, 0x30d480,28, 0x30d500,28, 0x30d580,28, 0x30d600,28, 0x30d680,28, 0x30d700,28, 0x30d780,28, 0x30d800,28, 0x30d880,28, 0x30d900,28, 0x30d980,28, 0x30e000,4, 0x310000,11, 0x310040,9, 0x310080,33, 0x310108,5, 0x310120,3, 0x310130,1, 0x310144,12, 0x310180,9, 0x310200,1, 0x310208,4, 0x310280,28, 0x310300,28, 0x310380,28, 0x310400,28, 0x310480,28, 0x310500,28, 0x310580,28, 0x310600,28, 0x310680,28, 0x310700,28, 0x310780,28, 0x310800,28, 0x310880,28, 0x310900,28, 0x310980,28, 0x310a00,28, 0x310b00,44, 0x310c00,68, 0x310e00,4, 0x310e20,1, 0x310e40,1, 0x310e60,7, 0x310e80,7, 0x310ea0,1, 0x310ec0,6, 0x310ee0,6, 0x310f00,6, 0x310f20,1, 0x310f40,6, 0x310f60,6, 0x310f80,6, 0x310fa0,1, 0x310fc0,6, 0x310fe0,6, 0x311000,6, 0x311020,3, 0x311030,7, 0x311050,7, 0x311070,7, 0x311090,7, 0x3110b0,7, 0x3110d0,7, 0x3110f0,7, 0x311110,7, 0x311130,7, 0x311150,7, 0x311170,7, 0x311190,7, 0x3111b0,7, 0x3111d0,7, 0x3111f0,7, 0x311210,7, 0x311230,7, 0x311250,7, 0x311270,7, 0x311290,7, 0x3112b0,7, 0x3112d0,7, 0x3112f0,7, 0x311310,7, 0x311330,7, 0x311350,7, 0x311370,7, 0x311390,7, 0x3113b0,7, 0x3113d0,7, 0x3113f0,7, 0x311410,24, 0x311480,23, 0x3114e0,7, 0x311500,23, 0x311580,7, 0x3115c0,2, 0x3115cc,3, 0x3115e0,2, 0x3115ec,3, 0x311600,2, 0x31160c,3, 0x311620,2, 0x31162c,3, 0x311640,2, 0x31164c,3, 0x311660,2, 0x31166c,3, 0x311680,2, 0x31168c,3, 0x3116a0,2, 0x3116ac,3, 0x3116c0,2, 0x3116cc,3, 0x3116e0,2, 0x3116ec,3, 0x311700,2, 0x31170c,3, 0x311720,2, 0x31172c,3, 0x311740,2, 0x31174c,3, 0x311760,2, 0x31176c,3, 0x311780,2, 0x31178c,3, 0x3117a0,2, 0x3117ac,3, 0x311800,11, 0x311840,6, 0x31185c,2, 0x312800,2, 0x312820,48, 0x312900,2, 0x312920,48, 0x312a00,131, 0x313000,33, 0x313400,27, 0x313480,1, 0x3134a0,6, 0x313800,27, 0x313880,4, 0x3138c0,25, 0x313940,6, 0x313960,2, 0x31396c,3, 0x313a00,8, 0x313a24,24, 0x313c00,27, 0x313c80,1, 0x313ca0,6, 0x313d00,27, 0x313d80,27, 0x313e00,27, 0x313e80,27, 0x313f00,27, 0x313f80,27, 0x314000,27, 0x314080,27, 0x314100,27, 0x314180,27, 0x314200,27, 0x314280,27, 0x314300,27, 0x314380,27, 0x314400,27, 0x314480,27, 0x314500,2, 0x314510,3, 0x314520,1, 0x318000,6, 0x318020,6, 0x318040,6, 0x318060,6, 0x318080,6, 0x3180a0,6, 0x3180c0,6, 0x3180e0,6, 0x318100,6, 0x318120,6, 0x318140,6, 0x318160,6, 0x318180,6, 0x3181a0,6, 0x3181c0,6, 0x3181e0,6, 0x318200,3, 0x31c000,9, 0x31c028,8, 0x31c080,3, 0x31c0a0,5, 0x31c100,9, 0x31c128,8, 0x31c180,3, 0x31c1a0,5, 0x31c200,9, 0x31c228,8, 0x31c280,3, 0x31c2a0,5, 0x31c300,9, 0x31c328,8, 0x31c380,3, 0x31c3a0,5, 0x31c400,9, 0x31c428,8, 0x31c480,6, 0x31c4a0,5, 0x31c500,9, 0x31c528,8, 0x31c580,3, 0x31c5a0,5, 0x31c600,9, 0x31c628,8, 0x31c680,3, 0x31c6a0,5, 0x31c800,9, 0x31c828,8, 0x31c880,3, 0x31c8a0,5, 0x31c900,9, 0x31c928,8, 0x31c980,3, 0x31c9a0,5, 0x31ca00,9, 0x31ca28,8, 0x31ca80,3, 0x31caa0,5, 0x31cb00,9, 0x31cb28,8, 0x31cb80,3, 0x31cba0,5, 0x31cc00,9, 0x31cc28,8, 0x31cc80,6, 0x31cca0,5, 0x31cd00,9, 0x31cd28,8, 0x31cd80,3, 0x31cda0,5, 0x31ce00,9, 0x31ce28,8, 0x31ce80,3, 0x31cea0,5, 0x31d000,9, 0x31d028,8, 0x31d080,6, 0x31d0a0,5, 0x31d100,9, 0x31d128,8, 0x31d180,6, 0x31d1a0,5, 0x31d200,9, 0x31d228,8, 0x31d280,6, 0x31d2a0,5, 0x31d300,9, 0x31d328,8, 0x31d380,6, 0x31d3a0,5, 0x31d400,9, 0x31d428,8, 0x31d480,6, 0x31d4a0,5, 0x31d500,9, 0x31d528,8, 0x31d580,6, 0x31d5a0,5, 0x31d600,9, 0x31d628,8, 0x31d680,6, 0x31d6a0,5, 0x31d700,9, 0x31d728,8, 0x31d780,6, 0x31d7a0,5, 0x31d800,9, 0x31d828,8, 0x31d880,6, 0x31d8a0,5, 0x31d900,9, 0x31d928,8, 0x31d980,6, 0x31d9a0,5, 0x31da00,9, 0x31da28,8, 0x31da80,6, 0x31daa0,5, 0x31db00,9, 0x31db28,8, 0x31db80,6, 0x31dba0,5, 0x31dc00,9, 0x31dc28,8, 0x31dc80,6, 0x31dca0,5, 0x31dd00,9, 0x31dd28,8, 0x31dd80,6, 0x31dda0,5, 0x31de00,9, 0x31de28,8, 0x31de80,6, 0x31dea0,5, 0x31df00,9, 0x31df28,8, 0x31df80,6, 0x31dfa0,5, 0x31e000,9, 0x31e028,8, 0x31e080,4, 0x31e0c0,13, 0x31e100,6, 0x31e120,5, 0x31e140,3, 0x320000,3, 0x320010,3, 0x320020,3, 0x320030,3, 0x320040,3, 0x320050,3, 0x320060,3, 0x320070,3, 0x320080,3, 0x320090,3, 0x3200a0,3, 0x3200b0,3, 0x3200c0,3, 0x3200d0,3, 0x3200e0,3, 0x3200f0,3, 0x320100,2, 0x320200,3, 0x320210,3, 0x320220,3, 0x320230,3, 0x320240,3, 0x320250,3, 0x320260,3, 0x320270,3, 0x320280,3, 0x320290,3, 0x3202a0,3, 0x3202b0,3, 0x3202c0,3, 0x3202d0,3, 0x3202e0,3, 0x3202f0,3, 0x320300,2, 0x320400,3, 0x320410,3, 0x320420,3, 0x320430,3, 0x320440,3, 0x320450,3, 0x320460,3, 0x320470,3, 0x320480,3, 0x320490,3, 0x3204a0,3, 0x3204b0,3, 0x3204c0,3, 0x3204d0,3, 0x3204e0,3, 0x3204f0,3, 0x320500,2, 0x320600,18, 0x320680,18, 0x320700,4, 0x321000,5, 0x321020,5, 0x321040,5, 0x321060,5, 0x321080,5, 0x3210a0,5, 0x3210c0,5, 0x3210e0,5, 0x321100,5, 0x321120,5, 0x321140,5, 0x321160,5, 0x321180,5, 0x3211a0,5, 0x3211c0,5, 0x3211e0,5, 0x321200,5, 0x321220,5, 0x321240,5, 0x321260,5, 0x321280,5, 0x3212a0,5, 0x3212c0,5, 0x3212e0,5, 0x321300,5, 0x321320,5, 0x321340,5, 0x321360,5, 0x321380,5, 0x3213a0,5, 0x3213c0,5, 0x3213e0,5, 0x321400,5, 0x321420,5, 0x321440,5, 0x321460,5, 0x321480,5, 0x3214a0,5, 0x3214c0,5, 0x3214e0,5, 0x321500,5, 0x321520,5, 0x321540,5, 0x321560,5, 0x321580,5, 0x3215a0,5, 0x3215c0,5, 0x3215e0,5, 0x321600,5, 0x321620,5, 0x321640,5, 0x321660,5, 0x321680,5, 0x3216a0,5, 0x3216c0,5, 0x3216e0,5, 0x321700,5, 0x321720,5, 0x321740,5, 0x321760,5, 0x321780,5, 0x3217a0,5, 0x3217c0,5, 0x3217e0,5, 0x321800,27, 0x321874,9, 0x3218a0,6, 0x3218c0,3, 0x321904,1, 0x32190c,5, 0x321924,1, 0x32192c,7, 0x322000,5, 0x322020,5, 0x322040,5, 0x322060,5, 0x322080,5, 0x3220a0,5, 0x3220c0,5, 0x3220e0,5, 0x322100,5, 0x322120,5, 0x322140,5, 0x322160,5, 0x322180,5, 0x3221a0,5, 0x3221c0,5, 0x3221e0,5, 0x322200,5, 0x322220,5, 0x322240,5, 0x322260,5, 0x322280,5, 0x3222a0,5, 0x3222c0,5, 0x3222e0,5, 0x322300,5, 0x322320,5, 0x322340,5, 0x322360,5, 0x322380,5, 0x3223a0,5, 0x3223c0,5, 0x3223e0,5, 0x322400,5, 0x322420,5, 0x322440,5, 0x322460,5, 0x322480,5, 0x3224a0,5, 0x3224c0,5, 0x3224e0,5, 0x322500,5, 0x322520,5, 0x322540,5, 0x322560,5, 0x322580,5, 0x3225a0,5, 0x3225c0,5, 0x3225e0,5, 0x322600,5, 0x322620,5, 0x322640,5, 0x322660,5, 0x322680,5, 0x3226a0,5, 0x3226c0,5, 0x3226e0,5, 0x322700,5, 0x322720,5, 0x322740,5, 0x322760,5, 0x322780,5, 0x3227a0,5, 0x3227c0,5, 0x3227e0,5, 0x322800,27, 0x322874,12, 0x3228a8,64, 0x322a04,1, 0x322a0c,5, 0x322a24,1, 0x322a2c,7, 0x323000,11, 0x323030,9, 0x323080,11, 0x3230b0,9, 0x323100,1, 0x340000,167, 0x3402a0,7, 0x3402c0,7, 0x3402e0,118, 0x3404c0,6, 0x3404e0,6, 0x340500,6, 0x340520,6, 0x340540,6, 0x340560,6, 0x340580,6, 0x3405a0,6, 0x3405c0,6, 0x3405e0,6, 0x340600,6, 0x340620,6, 0x340640,6, 0x340660,6, 0x340680,6, 0x3406a0,5, 0x3406c0,5, 0x3406e0,5, 0x340700,5, 0x340720,5, 0x340740,5, 0x340760,5, 0x340780,5, 0x3407a0,5, 0x3407c0,5, 0x3407e0,5, 0x340800,5, 0x340820,5, 0x340840,5, 0x340860,5, 0x340880,5, 0x3408a0,16, 0x340900,13, 0x340940,13, 0x340980,13, 0x3409c0,13, 0x340a00,13, 0x340a40,13, 0x340a80,13, 0x340ac0,13, 0x340b00,13, 0x340b40,13, 0x340b80,13, 0x340bc0,13, 0x340c00,13, 0x340c40,13, 0x340c80,13, 0x340cc0,13, 0x340d00,5, 0x340d20,5, 0x340d40,5, 0x340d60,5, 0x340d80,5, 0x340da0,5, 0x340dc0,5, 0x340de0,5, 0x340e00,5, 0x340e20,5, 0x340e40,5, 0x340e60,5, 0x340e80,5, 0x340ea0,5, 0x340ec0,5, 0x340ee0,5, 0x340f00,17, 0x341000,179, 0x341400,5, 0x341800,3, 0x341810,3, 0x341820,3, 0x341830,3, 0x341840,3, 0x341850,3, 0x341860,3, 0x341870,3, 0x341880,3, 0x341890,3, 0x3418a0,3, 0x3418b0,3, 0x3418c0,3, 0x3418d0,3, 0x3418e0,3, 0x3418f0,3, 0x341900,3, 0x341910,3, 0x341920,3, 0x341930,3, 0x341940,3, 0x341950,3, 0x341960,3, 0x341970,3, 0x341980,3, 0x341990,3, 0x3419a0,3, 0x3419b0,3, 0x3419c0,3, 0x3419d0,3, 0x3419e0,3, 0x3419f0,3, 0x341a00,2, 0x341a0c,12, 0x341a40,20, 0x341c00,20, 0x341c80,20, 0x341d00,20, 0x341d80,20, 0x341e00,20, 0x341e80,20, 0x341f00,20, 0x341f80,20, 0x342000,20, 0x342080,20, 0x342100,20, 0x342180,20, 0x342200,20, 0x342280,20, 0x342300,20, 0x342380,20, 0x342400,5, 0x344000,27, 0x344080,27, 0x344100,27, 0x344180,27, 0x344200,27, 0x344280,27, 0x344300,27, 0x344380,27, 0x344400,27, 0x344480,27, 0x344500,27, 0x344580,27, 0x344600,27, 0x344680,27, 0x344700,27, 0x344780,27, 0x344800,27, 0x344880,27, 0x344900,14, 0x344940,3, 0x344950,4, 0x350000,72, 0x350200,72, 0x350400,72, 0x350600,72, 0x350800,72, 0x350a00,72, 0x350c00,72, 0x350e00,72, 0x351000,72, 0x351200,72, 0x351400,72, 0x351600,72, 0x351800,72, 0x351a00,72, 0x351c00,72, 0x351e00,72, 0x352000,46, 0x352100,2, 0x352110,21, 0x352180,23, 0x3521e0,3, 0x352200,46, 0x352300,2, 0x352310,21, 0x352380,23, 0x3523e0,3, 0x352400,46, 0x352500,2, 0x352510,21, 0x352580,23, 0x3525e0,3, 0x352600,46, 0x352700,2, 0x352710,21, 0x352780,23, 0x3527e0,3, 0x352800,46, 0x352900,2, 0x352910,21, 0x352980,23, 0x3529e0,3, 0x352a00,46, 0x352b00,2, 0x352b10,21, 0x352b80,23, 0x352be0,3, 0x352c00,46, 0x352d00,2, 0x352d10,21, 0x352d80,23, 0x352de0,3, 0x352e00,46, 0x352f00,2, 0x352f10,21, 0x352f80,23, 0x352fe0,3, 0x353000,46, 0x353100,2, 0x353110,21, 0x353180,23, 0x3531e0,3, 0x353200,46, 0x353300,2, 0x353310,21, 0x353380,23, 0x3533e0,3, 0x353400,46, 0x353500,2, 0x353510,21, 0x353580,23, 0x3535e0,3, 0x353600,46, 0x353700,2, 0x353710,21, 0x353780,23, 0x3537e0,3, 0x353800,46, 0x353900,2, 0x353910,21, 0x353980,23, 0x3539e0,3, 0x353a00,46, 0x353b00,2, 0x353b10,21, 0x353b80,23, 0x353be0,3, 0x353c00,46, 0x353d00,2, 0x353d10,21, 0x353d80,23, 0x353de0,3, 0x353e00,46, 0x353f00,2, 0x353f10,21, 0x353f80,23, 0x353fe0,3, 0x354000,21, 0x354060,29, 0x3540e0,29, 0x354160,29, 0x3541e0,29, 0x354260,29, 0x3542e0,29, 0x354360,29, 0x3543e0,29, 0x354460,29, 0x3544e0,29, 0x354560,29, 0x3545e0,29, 0x354660,29, 0x3546e0,29, 0x354760,29, 0x3547e0,38, 0x354880,30, 0x354900,30, 0x354980,30, 0x354a00,30, 0x354a80,30, 0x354b00,30, 0x354b80,30, 0x354c00,30, 0x354c80,30, 0x354d00,30, 0x354d80,30, 0x354e00,30, 0x354e80,30, 0x354f00,30, 0x354f80,30, 0x355000,58, 0x3550ec,1, 0x3550f4,2, 0x355100,52, 0x355200,44, 0x355300,128, 0x355800,5, 0x355820,5, 0x355840,5, 0x355860,5, 0x355880,5, 0x3558a0,5, 0x3558c0,5, 0x3558e0,5, 0x355900,5, 0x355920,5, 0x355940,5, 0x355960,5, 0x355980,5, 0x3559a0,5, 0x3559c0,5, 0x3559e0,5, 0x355a00,33, 0x355c00,32, 0x355c84,1, 0x355c8c,3, 0x355ca0,18, 0x355cf0,3, 0x355d00,3, 0x355d10,3, 0x355d20,3, 0x355d30,3, 0x355d40,3, 0x355d50,3, 0x355d60,3, 0x355d70,3, 0x355d80,3, 0x355d90,3, 0x355da0,3, 0x355db0,3, 0x355dc0,3, 0x355dd0,3, 0x355de0,3, 0x355df0,55, 0x355ed0,3, 0x355ee0,3, 0x355ef0,3, 0x355f00,3, 0x355f10,3, 0x355f20,3, 0x355f30,3, 0x355f40,3, 0x355f50,3, 0x355f60,3, 0x355f70,3, 0x355f80,3, 0x355f90,3, 0x355fa0,3, 0x355fb0,3, 0x356000,104, 0x356200,26, 0x356280,26, 0x356300,26, 0x356380,26, 0x356400,26, 0x356480,26, 0x356500,26, 0x356580,26, 0x356600,26, 0x356680,26, 0x356700,26, 0x356780,26, 0x356800,26, 0x356880,26, 0x356900,26, 0x356980,26, 0x356a00,8, 0x356a80,8, 0x356aa4,8, 0x356b00,8, 0x356b24,8, 0x356b80,8, 0x356ba4,8, 0x356c00,8, 0x356c24,8, 0x356c80,8, 0x356ca4,8, 0x356d00,8, 0x356d24,8, 0x356d80,8, 0x356da4,8, 0x356e00,8, 0x356e24,8, 0x356e80,8, 0x356ea4,8, 0x356f00,8, 0x356f24,8, 0x356f80,8, 0x356fa4,8, 0x357000,8, 0x357024,8, 0x357080,8, 0x3570a4,8, 0x357100,8, 0x357124,8, 0x357180,8, 0x3571a4,8, 0x357200,8, 0x357224,8, 0x357280,4, 0x357294,44, 0x357400,5, 0x357420,5, 0x357440,5, 0x357460,5, 0x357480,5, 0x3574a0,5, 0x3574c0,5, 0x3574e0,5, 0x357500,5, 0x357520,5, 0x357540,5, 0x357560,5, 0x357580,5, 0x3575a0,5, 0x3575c0,5, 0x3575e0,5, 0x357600,33, 0x357800,140, 0x358000,20, 0x358080,16, 0x358100,28, 0x358180,28, 0x358200,8, 0x358280,20, 0x358300,20, 0x358380,1, 0x358400,20, 0x358480,16, 0x358500,28, 0x358580,28, 0x358600,8, 0x358680,20, 0x358700,20, 0x358780,1, 0x358800,20, 0x358880,16, 0x358900,28, 0x358980,28, 0x358a00,8, 0x358a80,20, 0x358b00,20, 0x358b80,1, 0x358c00,20, 0x358c80,16, 0x358d00,28, 0x358d80,28, 0x358e00,8, 0x358e80,20, 0x358f00,20, 0x358f80,1, 0x359000,20, 0x359080,16, 0x359100,28, 0x359180,28, 0x359200,8, 0x359280,20, 0x359300,20, 0x359380,1, 0x359400,20, 0x359480,16, 0x359500,28, 0x359580,28, 0x359600,8, 0x359680,20, 0x359700,20, 0x359780,1, 0x359800,20, 0x359880,16, 0x359900,28, 0x359980,28, 0x359a00,8, 0x359a80,20, 0x359b00,20, 0x359b80,1, 0x359c00,20, 0x359c80,16, 0x359d00,28, 0x359d80,28, 0x359e00,8, 0x359e80,20, 0x359f00,20, 0x359f80,1, 0x35a000,20, 0x35a080,16, 0x35a100,28, 0x35a180,28, 0x35a200,8, 0x35a280,20, 0x35a300,20, 0x35a380,1, 0x35a400,20, 0x35a480,16, 0x35a500,28, 0x35a580,28, 0x35a600,8, 0x35a680,20, 0x35a700,20, 0x35a780,1, 0x35a800,20, 0x35a880,16, 0x35a900,28, 0x35a980,28, 0x35aa00,8, 0x35aa80,20, 0x35ab00,20, 0x35ab80,1, 0x35ac00,20, 0x35ac80,16, 0x35ad00,28, 0x35ad80,28, 0x35ae00,8, 0x35ae80,20, 0x35af00,20, 0x35af80,1, 0x35b000,20, 0x35b080,16, 0x35b100,28, 0x35b180,28, 0x35b200,8, 0x35b280,20, 0x35b300,20, 0x35b380,1, 0x35b400,20, 0x35b480,16, 0x35b500,28, 0x35b580,28, 0x35b600,8, 0x35b680,20, 0x35b700,20, 0x35b780,1, 0x35b800,20, 0x35b880,16, 0x35b900,28, 0x35b980,28, 0x35ba00,8, 0x35ba80,20, 0x35bb00,20, 0x35bb80,1, 0x35bc00,20, 0x35bc80,16, 0x35bd00,28, 0x35bd80,28, 0x35be00,8, 0x35be80,20, 0x35bf00,20, 0x35bf80,1, 0x35c000,128, 0x35c204,9, 0x35c400,80, 0x35c544,44, 0x35c600,12, 0x35c644,1, 0x35c654,8, 0x35c680,7, 0x35c6a0,2, 0x35c6ac,2, 0x35c6c0,28, 0x35c770,1, 0x35c800,11, 0x35c840,11, 0x35c880,11, 0x35c8c0,11, 0x35c900,11, 0x35c940,11, 0x35c980,11, 0x35c9c0,11, 0x35ca00,11, 0x35ca40,11, 0x35ca80,11, 0x35cac0,11, 0x35cb00,11, 0x35cb40,11, 0x35cb80,11, 0x35cbc0,11, 0x35d000,30, 0x35d080,3, 0x35d090,19, 0x35d100,30, 0x35d180,3, 0x35d190,19, 0x35d200,30, 0x35d280,3, 0x35d290,19, 0x35d300,30, 0x35d380,3, 0x35d390,19, 0x35d400,30, 0x35d480,3, 0x35d490,19, 0x35d500,30, 0x35d580,3, 0x35d590,19, 0x35d600,30, 0x35d680,3, 0x35d690,19, 0x35d700,30, 0x35d780,3, 0x35d790,19, 0x35d800,30, 0x35d880,3, 0x35d890,19, 0x35d900,30, 0x35d980,3, 0x35d990,19, 0x35da00,30, 0x35da80,3, 0x35da90,19, 0x35db00,30, 0x35db80,3, 0x35db90,19, 0x35dc00,30, 0x35dc80,3, 0x35dc90,19, 0x35dd00,30, 0x35dd80,3, 0x35dd90,19, 0x35de00,30, 0x35de80,3, 0x35de90,19, 0x35df00,30, 0x35df80,3, 0x35df90,19, 0x35e004,1, 0x35e010,4, 0x35e040,28, 0x35e100,11, 0x35e140,11, 0x35e180,11, 0x35e1c0,11, 0x35e200,11, 0x35e240,11, 0x35e280,11, 0x35e2c0,11, 0x35e300,11, 0x35e340,11, 0x35e380,11, 0x35e3c0,11, 0x35e400,11, 0x35e440,11, 0x35e480,11, 0x35e4c0,11, 0x35e500,44, 0x35e5c0,3, 0x35e800,18, 0x35e880,18, 0x35e900,18, 0x35e980,18, 0x35ea00,18, 0x35ea80,18, 0x35eb00,18, 0x35eb80,18, 0x35ec00,18, 0x35ec80,18, 0x35ed00,18, 0x35ed80,18, 0x35ee00,18, 0x35ee80,18, 0x35ef00,18, 0x35ef80,18, 0x35f000,18, 0x35f080,18, 0x35f100,18, 0x35f180,18, 0x35f200,18, 0x35f280,18, 0x35f300,18, 0x35f380,18, 0x35f400,18, 0x35f480,18, 0x35f500,18, 0x35f580,18, 0x35f600,18, 0x35f680,18, 0x35f700,18, 0x35f780,18, 0x35f800,34, 0x35f8a0,8, 0x360000,1, 0x361000,977, 0x362000,161, 0x363000,977, 0x364000,977, 0x365000,977, 0x366000,977, 0x367000,977, 0x368000,977, 0x369000,977, 0x36a000,977, 0x36b000,977, 0x36c000,977, 0x36d000,977, 0x36e000,977, 0x36f000,977, 0x370000,977, 0x371000,977, 0x372000,977, 0x373000,161, 0x374000,161, 0x375000,161, 0x376000,161, 0x377014,1, 0x37701c,1, 0x380000,19, 0x380100,1, 0x380200,57, 0x380300,57, 0x380400,57, 0x380500,57, 0x380600,57, 0x380700,57, 0x380800,57, 0x380900,57, 0x380a00,57, 0x380b00,57, 0x380c00,57, 0x380d00,57, 0x380e00,57, 0x380f00,57, 0x381000,57, 0x381100,57, 0x381200,6, 0x382000,31, 0x382080,31, 0x382100,31, 0x382180,31, 0x382200,31, 0x382280,31, 0x382300,31, 0x382380,31, 0x382400,31, 0x382480,31, 0x382500,31, 0x382580,31, 0x382600,31, 0x382680,31, 0x382700,31, 0x382780,31, 0x382800,1, 0x382808,31, 0x382a04,1, 0x382a10,6, 0x382a30,64, 0x382c00,7, 0x382c20,4, 0x382c40,20, 0x382ca0,12, 0x382ce0,9, 0x382d20,5, 0x382d40,5, 0x382d60,6, 0x382d80,1, 0x382d88,100, 0x383004,1, 0x38302c,21, 0x383104,1, 0x383148,46, 0x383204,1, 0x38321c,11, 0x383400,8, 0x384000,130, 0x384300,36, 0x384400,36, 0x384500,36, 0x384600,36, 0x384700,36, 0x384800,36, 0x384900,36, 0x384a00,36, 0x384b00,36, 0x384c00,36, 0x384d00,36, 0x384e00,36, 0x384f00,36, 0x385000,36, 0x385100,36, 0x385200,36, 0x385300,64, 0x388000,50, 0x388100,50, 0x388204,1, 0x38821c,11, 0x388280,2, 0x3882a0,5, 0x3882c0,9, 0x388300,3, 0x388320,6, 0x388340,6, 0x388360,1, 0x388368,80, 0x3884c0,5, 0x3884e0,1, 0x3884f0,28, 0x38a000,58, 0x38a0f0,10, 0x38a200,36, 0x38a300,36, 0x38a400,36, 0x38a500,36, 0x38a600,36, 0x38a700,36, 0x38a800,36, 0x38a900,36, 0x38aa00,36, 0x38ab00,36, 0x38ac00,36, 0x38ad00,36, 0x38ae00,36, 0x38af00,36, 0x38b000,36, 0x38b100,36, 0x38b200,36, 0x38b300,36, 0x38c000,51, 0x38c100,1, 0x38c120,9, 0x38c160,9, 0x38c1a0,9, 0x38c1e0,9, 0x38c220,9, 0x38c260,9, 0x38c2a0,9, 0x38c2e0,9, 0x38c320,9, 0x38c360,9, 0x38c3a0,9, 0x38c3e0,9, 0x38c420,9, 0x38c460,9, 0x38c4a0,9, 0x38c4e0,28, 0x38c580,20, 0x38c600,20, 0x38c680,20, 0x38c700,20, 0x38c780,20, 0x38c800,20, 0x38c880,20, 0x38c900,20, 0x38c980,20, 0x38ca00,20, 0x38ca80,20, 0x38cb00,20, 0x38cb80,20, 0x38cc00,20, 0x38cc80,20, 0x38cd00,20, 0x38cd80,20, 0x38ce00,20, 0x38d000,3, 0x38d010,3, 0x38d020,3, 0x38d030,3, 0x38d040,3, 0x38d050,3, 0x38d060,3, 0x38d070,3, 0x38d080,7, 0x38d100,28, 0x38d180,28, 0x38d200,28, 0x38d280,28, 0x38d300,28, 0x38d380,28, 0x38d400,28, 0x38d480,28, 0x38d500,28, 0x38d580,28, 0x38d600,28, 0x38d680,28, 0x38d700,28, 0x38d780,28, 0x38d800,28, 0x38d880,28, 0x38d900,28, 0x38d980,28, 0x38e000,4, 0x390000,11, 0x390040,9, 0x390080,33, 0x390108,5, 0x390120,3, 0x390130,1, 0x390144,12, 0x390180,9, 0x390200,1, 0x390208,4, 0x390280,28, 0x390300,28, 0x390380,28, 0x390400,28, 0x390480,28, 0x390500,28, 0x390580,28, 0x390600,28, 0x390680,28, 0x390700,28, 0x390780,28, 0x390800,28, 0x390880,28, 0x390900,28, 0x390980,28, 0x390a00,28, 0x390b00,44, 0x390c00,68, 0x390e00,4, 0x390e20,1, 0x390e40,1, 0x390e60,7, 0x390e80,7, 0x390ea0,1, 0x390ec0,6, 0x390ee0,6, 0x390f00,6, 0x390f20,1, 0x390f40,6, 0x390f60,6, 0x390f80,6, 0x390fa0,1, 0x390fc0,6, 0x390fe0,6, 0x391000,6, 0x391020,3, 0x391030,7, 0x391050,7, 0x391070,7, 0x391090,7, 0x3910b0,7, 0x3910d0,7, 0x3910f0,7, 0x391110,7, 0x391130,7, 0x391150,7, 0x391170,7, 0x391190,7, 0x3911b0,7, 0x3911d0,7, 0x3911f0,7, 0x391210,7, 0x391230,7, 0x391250,7, 0x391270,7, 0x391290,7, 0x3912b0,7, 0x3912d0,7, 0x3912f0,7, 0x391310,7, 0x391330,7, 0x391350,7, 0x391370,7, 0x391390,7, 0x3913b0,7, 0x3913d0,7, 0x3913f0,7, 0x391410,24, 0x391480,23, 0x3914e0,7, 0x391500,23, 0x391580,7, 0x3915c0,2, 0x3915cc,3, 0x3915e0,2, 0x3915ec,3, 0x391600,2, 0x39160c,3, 0x391620,2, 0x39162c,3, 0x391640,2, 0x39164c,3, 0x391660,2, 0x39166c,3, 0x391680,2, 0x39168c,3, 0x3916a0,2, 0x3916ac,3, 0x3916c0,2, 0x3916cc,3, 0x3916e0,2, 0x3916ec,3, 0x391700,2, 0x39170c,3, 0x391720,2, 0x39172c,3, 0x391740,2, 0x39174c,3, 0x391760,2, 0x39176c,3, 0x391780,2, 0x39178c,3, 0x3917a0,2, 0x3917ac,3, 0x391800,11, 0x391840,6, 0x39185c,2, 0x392800,2, 0x392820,48, 0x392900,2, 0x392920,48, 0x392a00,131, 0x393000,33, 0x393400,27, 0x393480,1, 0x3934a0,6, 0x393800,27, 0x393880,4, 0x3938c0,25, 0x393940,6, 0x393960,2, 0x39396c,3, 0x393a00,8, 0x393a24,24, 0x393c00,27, 0x393c80,1, 0x393ca0,6, 0x393d00,27, 0x393d80,27, 0x393e00,27, 0x393e80,27, 0x393f00,27, 0x393f80,27, 0x394000,27, 0x394080,27, 0x394100,27, 0x394180,27, 0x394200,27, 0x394280,27, 0x394300,27, 0x394380,27, 0x394400,27, 0x394480,27, 0x394500,2, 0x394510,3, 0x394520,1, 0x398000,6, 0x398020,6, 0x398040,6, 0x398060,6, 0x398080,6, 0x3980a0,6, 0x3980c0,6, 0x3980e0,6, 0x398100,6, 0x398120,6, 0x398140,6, 0x398160,6, 0x398180,6, 0x3981a0,6, 0x3981c0,6, 0x3981e0,6, 0x398200,3, 0x39c000,9, 0x39c028,8, 0x39c080,3, 0x39c0a0,5, 0x39c100,9, 0x39c128,8, 0x39c180,3, 0x39c1a0,5, 0x39c200,9, 0x39c228,8, 0x39c280,3, 0x39c2a0,5, 0x39c300,9, 0x39c328,8, 0x39c380,3, 0x39c3a0,5, 0x39c400,9, 0x39c428,8, 0x39c480,6, 0x39c4a0,5, 0x39c500,9, 0x39c528,8, 0x39c580,3, 0x39c5a0,5, 0x39c600,9, 0x39c628,8, 0x39c680,3, 0x39c6a0,5, 0x39c800,9, 0x39c828,8, 0x39c880,3, 0x39c8a0,5, 0x39c900,9, 0x39c928,8, 0x39c980,3, 0x39c9a0,5, 0x39ca00,9, 0x39ca28,8, 0x39ca80,3, 0x39caa0,5, 0x39cb00,9, 0x39cb28,8, 0x39cb80,3, 0x39cba0,5, 0x39cc00,9, 0x39cc28,8, 0x39cc80,6, 0x39cca0,5, 0x39cd00,9, 0x39cd28,8, 0x39cd80,3, 0x39cda0,5, 0x39ce00,9, 0x39ce28,8, 0x39ce80,3, 0x39cea0,5, 0x39d000,9, 0x39d028,8, 0x39d080,6, 0x39d0a0,5, 0x39d100,9, 0x39d128,8, 0x39d180,6, 0x39d1a0,5, 0x39d200,9, 0x39d228,8, 0x39d280,6, 0x39d2a0,5, 0x39d300,9, 0x39d328,8, 0x39d380,6, 0x39d3a0,5, 0x39d400,9, 0x39d428,8, 0x39d480,6, 0x39d4a0,5, 0x39d500,9, 0x39d528,8, 0x39d580,6, 0x39d5a0,5, 0x39d600,9, 0x39d628,8, 0x39d680,6, 0x39d6a0,5, 0x39d700,9, 0x39d728,8, 0x39d780,6, 0x39d7a0,5, 0x39d800,9, 0x39d828,8, 0x39d880,6, 0x39d8a0,5, 0x39d900,9, 0x39d928,8, 0x39d980,6, 0x39d9a0,5, 0x39da00,9, 0x39da28,8, 0x39da80,6, 0x39daa0,5, 0x39db00,9, 0x39db28,8, 0x39db80,6, 0x39dba0,5, 0x39dc00,9, 0x39dc28,8, 0x39dc80,6, 0x39dca0,5, 0x39dd00,9, 0x39dd28,8, 0x39dd80,6, 0x39dda0,5, 0x39de00,9, 0x39de28,8, 0x39de80,6, 0x39dea0,5, 0x39df00,9, 0x39df28,8, 0x39df80,6, 0x39dfa0,5, 0x39e000,9, 0x39e028,8, 0x39e080,4, 0x39e0c0,13, 0x39e100,6, 0x39e120,5, 0x39e140,3, 0x3a0000,3, 0x3a0010,3, 0x3a0020,3, 0x3a0030,3, 0x3a0040,3, 0x3a0050,3, 0x3a0060,3, 0x3a0070,3, 0x3a0080,3, 0x3a0090,3, 0x3a00a0,3, 0x3a00b0,3, 0x3a00c0,3, 0x3a00d0,3, 0x3a00e0,3, 0x3a00f0,3, 0x3a0100,2, 0x3a0200,3, 0x3a0210,3, 0x3a0220,3, 0x3a0230,3, 0x3a0240,3, 0x3a0250,3, 0x3a0260,3, 0x3a0270,3, 0x3a0280,3, 0x3a0290,3, 0x3a02a0,3, 0x3a02b0,3, 0x3a02c0,3, 0x3a02d0,3, 0x3a02e0,3, 0x3a02f0,3, 0x3a0300,2, 0x3a0400,3, 0x3a0410,3, 0x3a0420,3, 0x3a0430,3, 0x3a0440,3, 0x3a0450,3, 0x3a0460,3, 0x3a0470,3, 0x3a0480,3, 0x3a0490,3, 0x3a04a0,3, 0x3a04b0,3, 0x3a04c0,3, 0x3a04d0,3, 0x3a04e0,3, 0x3a04f0,3, 0x3a0500,2, 0x3a0600,18, 0x3a0680,18, 0x3a0700,4, 0x3a1000,5, 0x3a1020,5, 0x3a1040,5, 0x3a1060,5, 0x3a1080,5, 0x3a10a0,5, 0x3a10c0,5, 0x3a10e0,5, 0x3a1100,5, 0x3a1120,5, 0x3a1140,5, 0x3a1160,5, 0x3a1180,5, 0x3a11a0,5, 0x3a11c0,5, 0x3a11e0,5, 0x3a1200,5, 0x3a1220,5, 0x3a1240,5, 0x3a1260,5, 0x3a1280,5, 0x3a12a0,5, 0x3a12c0,5, 0x3a12e0,5, 0x3a1300,5, 0x3a1320,5, 0x3a1340,5, 0x3a1360,5, 0x3a1380,5, 0x3a13a0,5, 0x3a13c0,5, 0x3a13e0,5, 0x3a1400,5, 0x3a1420,5, 0x3a1440,5, 0x3a1460,5, 0x3a1480,5, 0x3a14a0,5, 0x3a14c0,5, 0x3a14e0,5, 0x3a1500,5, 0x3a1520,5, 0x3a1540,5, 0x3a1560,5, 0x3a1580,5, 0x3a15a0,5, 0x3a15c0,5, 0x3a15e0,5, 0x3a1600,5, 0x3a1620,5, 0x3a1640,5, 0x3a1660,5, 0x3a1680,5, 0x3a16a0,5, 0x3a16c0,5, 0x3a16e0,5, 0x3a1700,5, 0x3a1720,5, 0x3a1740,5, 0x3a1760,5, 0x3a1780,5, 0x3a17a0,5, 0x3a17c0,5, 0x3a17e0,5, 0x3a1800,27, 0x3a1874,9, 0x3a18a0,6, 0x3a18c0,3, 0x3a1904,1, 0x3a190c,5, 0x3a1924,1, 0x3a192c,7, 0x3a2000,5, 0x3a2020,5, 0x3a2040,5, 0x3a2060,5, 0x3a2080,5, 0x3a20a0,5, 0x3a20c0,5, 0x3a20e0,5, 0x3a2100,5, 0x3a2120,5, 0x3a2140,5, 0x3a2160,5, 0x3a2180,5, 0x3a21a0,5, 0x3a21c0,5, 0x3a21e0,5, 0x3a2200,5, 0x3a2220,5, 0x3a2240,5, 0x3a2260,5, 0x3a2280,5, 0x3a22a0,5, 0x3a22c0,5, 0x3a22e0,5, 0x3a2300,5, 0x3a2320,5, 0x3a2340,5, 0x3a2360,5, 0x3a2380,5, 0x3a23a0,5, 0x3a23c0,5, 0x3a23e0,5, 0x3a2400,5, 0x3a2420,5, 0x3a2440,5, 0x3a2460,5, 0x3a2480,5, 0x3a24a0,5, 0x3a24c0,5, 0x3a24e0,5, 0x3a2500,5, 0x3a2520,5, 0x3a2540,5, 0x3a2560,5, 0x3a2580,5, 0x3a25a0,5, 0x3a25c0,5, 0x3a25e0,5, 0x3a2600,5, 0x3a2620,5, 0x3a2640,5, 0x3a2660,5, 0x3a2680,5, 0x3a26a0,5, 0x3a26c0,5, 0x3a26e0,5, 0x3a2700,5, 0x3a2720,5, 0x3a2740,5, 0x3a2760,5, 0x3a2780,5, 0x3a27a0,5, 0x3a27c0,5, 0x3a27e0,5, 0x3a2800,27, 0x3a2874,12, 0x3a28a8,64, 0x3a2a04,1, 0x3a2a0c,5, 0x3a2a24,1, 0x3a2a2c,7, 0x3a3000,11, 0x3a3030,9, 0x3a3080,11, 0x3a30b0,9, 0x3a3100,1, 0x3c0000,167, 0x3c02a0,7, 0x3c02c0,7, 0x3c02e0,118, 0x3c04c0,6, 0x3c04e0,6, 0x3c0500,6, 0x3c0520,6, 0x3c0540,6, 0x3c0560,6, 0x3c0580,6, 0x3c05a0,6, 0x3c05c0,6, 0x3c05e0,6, 0x3c0600,6, 0x3c0620,6, 0x3c0640,6, 0x3c0660,6, 0x3c0680,6, 0x3c06a0,5, 0x3c06c0,5, 0x3c06e0,5, 0x3c0700,5, 0x3c0720,5, 0x3c0740,5, 0x3c0760,5, 0x3c0780,5, 0x3c07a0,5, 0x3c07c0,5, 0x3c07e0,5, 0x3c0800,5, 0x3c0820,5, 0x3c0840,5, 0x3c0860,5, 0x3c0880,5, 0x3c08a0,16, 0x3c0900,13, 0x3c0940,13, 0x3c0980,13, 0x3c09c0,13, 0x3c0a00,13, 0x3c0a40,13, 0x3c0a80,13, 0x3c0ac0,13, 0x3c0b00,13, 0x3c0b40,13, 0x3c0b80,13, 0x3c0bc0,13, 0x3c0c00,13, 0x3c0c40,13, 0x3c0c80,13, 0x3c0cc0,13, 0x3c0d00,5, 0x3c0d20,5, 0x3c0d40,5, 0x3c0d60,5, 0x3c0d80,5, 0x3c0da0,5, 0x3c0dc0,5, 0x3c0de0,5, 0x3c0e00,5, 0x3c0e20,5, 0x3c0e40,5, 0x3c0e60,5, 0x3c0e80,5, 0x3c0ea0,5, 0x3c0ec0,5, 0x3c0ee0,5, 0x3c0f00,17, 0x3c1000,179, 0x3c1400,5, 0x3c1800,3, 0x3c1810,3, 0x3c1820,3, 0x3c1830,3, 0x3c1840,3, 0x3c1850,3, 0x3c1860,3, 0x3c1870,3, 0x3c1880,3, 0x3c1890,3, 0x3c18a0,3, 0x3c18b0,3, 0x3c18c0,3, 0x3c18d0,3, 0x3c18e0,3, 0x3c18f0,3, 0x3c1900,3, 0x3c1910,3, 0x3c1920,3, 0x3c1930,3, 0x3c1940,3, 0x3c1950,3, 0x3c1960,3, 0x3c1970,3, 0x3c1980,3, 0x3c1990,3, 0x3c19a0,3, 0x3c19b0,3, 0x3c19c0,3, 0x3c19d0,3, 0x3c19e0,3, 0x3c19f0,3, 0x3c1a00,2, 0x3c1a0c,12, 0x3c1a40,20, 0x3c1c00,20, 0x3c1c80,20, 0x3c1d00,20, 0x3c1d80,20, 0x3c1e00,20, 0x3c1e80,20, 0x3c1f00,20, 0x3c1f80,20, 0x3c2000,20, 0x3c2080,20, 0x3c2100,20, 0x3c2180,20, 0x3c2200,20, 0x3c2280,20, 0x3c2300,20, 0x3c2380,20, 0x3c2400,5, 0x3c4000,27, 0x3c4080,27, 0x3c4100,27, 0x3c4180,27, 0x3c4200,27, 0x3c4280,27, 0x3c4300,27, 0x3c4380,27, 0x3c4400,27, 0x3c4480,27, 0x3c4500,27, 0x3c4580,27, 0x3c4600,27, 0x3c4680,27, 0x3c4700,27, 0x3c4780,27, 0x3c4800,27, 0x3c4880,27, 0x3c4900,14, 0x3c4940,3, 0x3c4950,4, 0x3d0000,72, 0x3d0200,72, 0x3d0400,72, 0x3d0600,72, 0x3d0800,72, 0x3d0a00,72, 0x3d0c00,72, 0x3d0e00,72, 0x3d1000,72, 0x3d1200,72, 0x3d1400,72, 0x3d1600,72, 0x3d1800,72, 0x3d1a00,72, 0x3d1c00,72, 0x3d1e00,72, 0x3d2000,46, 0x3d2100,2, 0x3d2110,21, 0x3d2180,23, 0x3d21e0,3, 0x3d2200,46, 0x3d2300,2, 0x3d2310,21, 0x3d2380,23, 0x3d23e0,3, 0x3d2400,46, 0x3d2500,2, 0x3d2510,21, 0x3d2580,23, 0x3d25e0,3, 0x3d2600,46, 0x3d2700,2, 0x3d2710,21, 0x3d2780,23, 0x3d27e0,3, 0x3d2800,46, 0x3d2900,2, 0x3d2910,21, 0x3d2980,23, 0x3d29e0,3, 0x3d2a00,46, 0x3d2b00,2, 0x3d2b10,21, 0x3d2b80,23, 0x3d2be0,3, 0x3d2c00,46, 0x3d2d00,2, 0x3d2d10,21, 0x3d2d80,23, 0x3d2de0,3, 0x3d2e00,46, 0x3d2f00,2, 0x3d2f10,21, 0x3d2f80,23, 0x3d2fe0,3, 0x3d3000,46, 0x3d3100,2, 0x3d3110,21, 0x3d3180,23, 0x3d31e0,3, 0x3d3200,46, 0x3d3300,2, 0x3d3310,21, 0x3d3380,23, 0x3d33e0,3, 0x3d3400,46, 0x3d3500,2, 0x3d3510,21, 0x3d3580,23, 0x3d35e0,3, 0x3d3600,46, 0x3d3700,2, 0x3d3710,21, 0x3d3780,23, 0x3d37e0,3, 0x3d3800,46, 0x3d3900,2, 0x3d3910,21, 0x3d3980,23, 0x3d39e0,3, 0x3d3a00,46, 0x3d3b00,2, 0x3d3b10,21, 0x3d3b80,23, 0x3d3be0,3, 0x3d3c00,46, 0x3d3d00,2, 0x3d3d10,21, 0x3d3d80,23, 0x3d3de0,3, 0x3d3e00,46, 0x3d3f00,2, 0x3d3f10,21, 0x3d3f80,23, 0x3d3fe0,3, 0x3d4000,21, 0x3d4060,29, 0x3d40e0,29, 0x3d4160,29, 0x3d41e0,29, 0x3d4260,29, 0x3d42e0,29, 0x3d4360,29, 0x3d43e0,29, 0x3d4460,29, 0x3d44e0,29, 0x3d4560,29, 0x3d45e0,29, 0x3d4660,29, 0x3d46e0,29, 0x3d4760,29, 0x3d47e0,38, 0x3d4880,30, 0x3d4900,30, 0x3d4980,30, 0x3d4a00,30, 0x3d4a80,30, 0x3d4b00,30, 0x3d4b80,30, 0x3d4c00,30, 0x3d4c80,30, 0x3d4d00,30, 0x3d4d80,30, 0x3d4e00,30, 0x3d4e80,30, 0x3d4f00,30, 0x3d4f80,30, 0x3d5000,58, 0x3d50ec,1, 0x3d50f4,2, 0x3d5100,52, 0x3d5200,44, 0x3d5300,128, 0x3d5800,5, 0x3d5820,5, 0x3d5840,5, 0x3d5860,5, 0x3d5880,5, 0x3d58a0,5, 0x3d58c0,5, 0x3d58e0,5, 0x3d5900,5, 0x3d5920,5, 0x3d5940,5, 0x3d5960,5, 0x3d5980,5, 0x3d59a0,5, 0x3d59c0,5, 0x3d59e0,5, 0x3d5a00,33, 0x3d5c00,32, 0x3d5c84,1, 0x3d5c8c,3, 0x3d5ca0,18, 0x3d5cf0,3, 0x3d5d00,3, 0x3d5d10,3, 0x3d5d20,3, 0x3d5d30,3, 0x3d5d40,3, 0x3d5d50,3, 0x3d5d60,3, 0x3d5d70,3, 0x3d5d80,3, 0x3d5d90,3, 0x3d5da0,3, 0x3d5db0,3, 0x3d5dc0,3, 0x3d5dd0,3, 0x3d5de0,3, 0x3d5df0,55, 0x3d5ed0,3, 0x3d5ee0,3, 0x3d5ef0,3, 0x3d5f00,3, 0x3d5f10,3, 0x3d5f20,3, 0x3d5f30,3, 0x3d5f40,3, 0x3d5f50,3, 0x3d5f60,3, 0x3d5f70,3, 0x3d5f80,3, 0x3d5f90,3, 0x3d5fa0,3, 0x3d5fb0,3, 0x3d6000,104, 0x3d6200,26, 0x3d6280,26, 0x3d6300,26, 0x3d6380,26, 0x3d6400,26, 0x3d6480,26, 0x3d6500,26, 0x3d6580,26, 0x3d6600,26, 0x3d6680,26, 0x3d6700,26, 0x3d6780,26, 0x3d6800,26, 0x3d6880,26, 0x3d6900,26, 0x3d6980,26, 0x3d6a00,8, 0x3d6a80,8, 0x3d6aa4,8, 0x3d6b00,8, 0x3d6b24,8, 0x3d6b80,8, 0x3d6ba4,8, 0x3d6c00,8, 0x3d6c24,8, 0x3d6c80,8, 0x3d6ca4,8, 0x3d6d00,8, 0x3d6d24,8, 0x3d6d80,8, 0x3d6da4,8, 0x3d6e00,8, 0x3d6e24,8, 0x3d6e80,8, 0x3d6ea4,8, 0x3d6f00,8, 0x3d6f24,8, 0x3d6f80,8, 0x3d6fa4,8, 0x3d7000,8, 0x3d7024,8, 0x3d7080,8, 0x3d70a4,8, 0x3d7100,8, 0x3d7124,8, 0x3d7180,8, 0x3d71a4,8, 0x3d7200,8, 0x3d7224,8, 0x3d7280,4, 0x3d7294,44, 0x3d7400,5, 0x3d7420,5, 0x3d7440,5, 0x3d7460,5, 0x3d7480,5, 0x3d74a0,5, 0x3d74c0,5, 0x3d74e0,5, 0x3d7500,5, 0x3d7520,5, 0x3d7540,5, 0x3d7560,5, 0x3d7580,5, 0x3d75a0,5, 0x3d75c0,5, 0x3d75e0,5, 0x3d7600,33, 0x3d7800,140, 0x3d8000,20, 0x3d8080,16, 0x3d8100,28, 0x3d8180,28, 0x3d8200,8, 0x3d8280,20, 0x3d8300,20, 0x3d8380,1, 0x3d8400,20, 0x3d8480,16, 0x3d8500,28, 0x3d8580,28, 0x3d8600,8, 0x3d8680,20, 0x3d8700,20, 0x3d8780,1, 0x3d8800,20, 0x3d8880,16, 0x3d8900,28, 0x3d8980,28, 0x3d8a00,8, 0x3d8a80,20, 0x3d8b00,20, 0x3d8b80,1, 0x3d8c00,20, 0x3d8c80,16, 0x3d8d00,28, 0x3d8d80,28, 0x3d8e00,8, 0x3d8e80,20, 0x3d8f00,20, 0x3d8f80,1, 0x3d9000,20, 0x3d9080,16, 0x3d9100,28, 0x3d9180,28, 0x3d9200,8, 0x3d9280,20, 0x3d9300,20, 0x3d9380,1, 0x3d9400,20, 0x3d9480,16, 0x3d9500,28, 0x3d9580,28, 0x3d9600,8, 0x3d9680,20, 0x3d9700,20, 0x3d9780,1, 0x3d9800,20, 0x3d9880,16, 0x3d9900,28, 0x3d9980,28, 0x3d9a00,8, 0x3d9a80,20, 0x3d9b00,20, 0x3d9b80,1, 0x3d9c00,20, 0x3d9c80,16, 0x3d9d00,28, 0x3d9d80,28, 0x3d9e00,8, 0x3d9e80,20, 0x3d9f00,20, 0x3d9f80,1, 0x3da000,20, 0x3da080,16, 0x3da100,28, 0x3da180,28, 0x3da200,8, 0x3da280,20, 0x3da300,20, 0x3da380,1, 0x3da400,20, 0x3da480,16, 0x3da500,28, 0x3da580,28, 0x3da600,8, 0x3da680,20, 0x3da700,20, 0x3da780,1, 0x3da800,20, 0x3da880,16, 0x3da900,28, 0x3da980,28, 0x3daa00,8, 0x3daa80,20, 0x3dab00,20, 0x3dab80,1, 0x3dac00,20, 0x3dac80,16, 0x3dad00,28, 0x3dad80,28, 0x3dae00,8, 0x3dae80,20, 0x3daf00,20, 0x3daf80,1, 0x3db000,20, 0x3db080,16, 0x3db100,28, 0x3db180,28, 0x3db200,8, 0x3db280,20, 0x3db300,20, 0x3db380,1, 0x3db400,20, 0x3db480,16, 0x3db500,28, 0x3db580,28, 0x3db600,8, 0x3db680,20, 0x3db700,20, 0x3db780,1, 0x3db800,20, 0x3db880,16, 0x3db900,28, 0x3db980,28, 0x3dba00,8, 0x3dba80,20, 0x3dbb00,20, 0x3dbb80,1, 0x3dbc00,20, 0x3dbc80,16, 0x3dbd00,28, 0x3dbd80,28, 0x3dbe00,8, 0x3dbe80,20, 0x3dbf00,20, 0x3dbf80,1, 0x3dc000,128, 0x3dc204,9, 0x3dc400,80, 0x3dc544,44, 0x3dc600,12, 0x3dc644,1, 0x3dc654,8, 0x3dc680,7, 0x3dc6a0,2, 0x3dc6ac,2, 0x3dc6c0,28, 0x3dc770,1, 0x3dc800,11, 0x3dc840,11, 0x3dc880,11, 0x3dc8c0,11, 0x3dc900,11, 0x3dc940,11, 0x3dc980,11, 0x3dc9c0,11, 0x3dca00,11, 0x3dca40,11, 0x3dca80,11, 0x3dcac0,11, 0x3dcb00,11, 0x3dcb40,11, 0x3dcb80,11, 0x3dcbc0,11, 0x3dd000,30, 0x3dd080,3, 0x3dd090,19, 0x3dd100,30, 0x3dd180,3, 0x3dd190,19, 0x3dd200,30, 0x3dd280,3, 0x3dd290,19, 0x3dd300,30, 0x3dd380,3, 0x3dd390,19, 0x3dd400,30, 0x3dd480,3, 0x3dd490,19, 0x3dd500,30, 0x3dd580,3, 0x3dd590,19, 0x3dd600,30, 0x3dd680,3, 0x3dd690,19, 0x3dd700,30, 0x3dd780,3, 0x3dd790,19, 0x3dd800,30, 0x3dd880,3, 0x3dd890,19, 0x3dd900,30, 0x3dd980,3, 0x3dd990,19, 0x3dda00,30, 0x3dda80,3, 0x3dda90,19, 0x3ddb00,30, 0x3ddb80,3, 0x3ddb90,19, 0x3ddc00,30, 0x3ddc80,3, 0x3ddc90,19, 0x3ddd00,30, 0x3ddd80,3, 0x3ddd90,19, 0x3dde00,30, 0x3dde80,3, 0x3dde90,19, 0x3ddf00,30, 0x3ddf80,3, 0x3ddf90,19, 0x3de004,1, 0x3de010,4, 0x3de040,28, 0x3de100,11, 0x3de140,11, 0x3de180,11, 0x3de1c0,11, 0x3de200,11, 0x3de240,11, 0x3de280,11, 0x3de2c0,11, 0x3de300,11, 0x3de340,11, 0x3de380,11, 0x3de3c0,11, 0x3de400,11, 0x3de440,11, 0x3de480,11, 0x3de4c0,11, 0x3de500,44, 0x3de5c0,3, 0x3de800,18, 0x3de880,18, 0x3de900,18, 0x3de980,18, 0x3dea00,18, 0x3dea80,18, 0x3deb00,18, 0x3deb80,18, 0x3dec00,18, 0x3dec80,18, 0x3ded00,18, 0x3ded80,18, 0x3dee00,18, 0x3dee80,18, 0x3def00,18, 0x3def80,18, 0x3df000,18, 0x3df080,18, 0x3df100,18, 0x3df180,18, 0x3df200,18, 0x3df280,18, 0x3df300,18, 0x3df380,18, 0x3df400,18, 0x3df480,18, 0x3df500,18, 0x3df580,18, 0x3df600,18, 0x3df680,18, 0x3df700,18, 0x3df780,18, 0x3df800,34, 0x3df8a0,8, 0x3e0000,1, 0x3e1000,977, 0x3e2000,161, 0x3e3000,977, 0x3e4000,977, 0x3e5000,977, 0x3e6000,977, 0x3e7000,977, 0x3e8000,977, 0x3e9000,977, 0x3ea000,977, 0x3eb000,977, 0x3ec000,977, 0x3ed000,977, 0x3ee000,977, 0x3ef000,977, 0x3f0000,977, 0x3f1000,977, 0x3f2000,977, 0x3f3000,161, 0x3f4000,161, 0x3f5000,161, 0x3f6000,161, 0x3f7014,1, 0x3f701c,1, 0x580000,3, 0x580080,3, 0x580090,3, 0x5800a0,3, 0x5800b0,3, 0x5800c0,3, 0x5800d0,3, 0x5800e0,3, 0x5800f0,3, 0x580100,3, 0x580110,3, 0x580120,3, 0x580130,3, 0x580140,3, 0x580150,3, 0x580160,3, 0x580170,3, 0x580180,1, 0x580188,10, 0x581000,2, 0x581040,38, 0x581100,9, 0x581140,2, 0x581180,12, 0x5811c0,11, 0x581200,11, 0x581240,11, 0x581280,11, 0x5812c0,12, 0x581300,11, 0x581340,11, 0x581380,11, 0x5813c0,11, 0x581400,11, 0x581440,11, 0x581480,11, 0x5814c0,11, 0x581500,11, 0x581540,11, 0x581580,11, 0x5815c0,11, 0x581600,11, 0x581640,11, 0x581680,11, 0x5816c0,3, 0x581704,1, 0x58171c,14, 0x581760,9, 0x5817c4,1, 0x5817d4,6, 0x581800,3, 0x581840,11, 0x581880,11, 0x5818c0,11, 0x581900,1, 0x581940,11, 0x582000,4, 0x582080,71, 0x5821a0,9, 0x5821c8,55, 0x5822c4,1, 0x5822d0,9, 0x582300,77, 0x582440,1, 0x582484,1, 0x582494,6, 0x5824c0,2, 0x5824e0,8, 0x583000,1, 0x583008,110, 0x583200,38, 0x583300,38, 0x583400,36, 0x583500,4, 0x583600,36, 0x583700,38, 0x583800,36, 0x583900,38, 0x583a00,38, 0x583b00,38, 0x583c00,1, 0x583c10,5, 0x583c30,5, 0x583c50,5, 0x583c70,4, 0x584004,56, 0x5840e8,2, 0x584100,3, 0x584110,1, 0x584124,3, 0x584140,1, 0x584148,4, 0x584180,48, 0x584800,2, 0x584900,38, 0x584a00,38, 0x584b00,38, 0x584c00,38, 0x584d00,52, 0x584e00,4, 0x584e20,6, 0x584e40,5, 0x585000,7, 0x585020,4, 0x585040,6, 0x585060,6, 0x585100,34, 0x585200,1, 0x585240,13, 0x585300,2, 0x585384,1, 0x585398,28, 0x585444,1, 0x58544c,13, 0x585600,4, 0x585704,1, 0x58576c,37, 0x585804,1, 0x5858e4,79, 0x585b00,1, 0x585b08,2, 0x585c00,37, 0x585d00,9, 0x585d40,1, 0x585d48,2, 0x585d60,2, 0x585d80,5, 0x585da0,5, 0x588004,1, 0x588020,11, 0x588404,1, 0x588420,11, 0x588484,1, 0x5884a0,11, 0x588504,1, 0x588520,11, 0x588584,1, 0x5885a0,11, 0x588604,1, 0x588620,11, 0x588684,1, 0x5886a0,11, 0x588704,1, 0x588720,11, 0x588784,1, 0x5887a0,11, 0x588804,1, 0x588820,11, 0x588884,1, 0x5888a0,11, 0x588904,1, 0x588920,11, 0x588984,1, 0x5889a0,11, 0x588a04,1, 0x588a20,11, 0x588a84,1, 0x588aa0,11, 0x588b04,1, 0x588b20,11, 0x588b84,1, 0x588ba0,11, 0x588c00,13, 0x588c40,12, 0x588c80,12, 0x588cc0,5, 0x588cd8,8, 0x588cfc,5, 0x588e00,12, 0x588e40,1, 0x588f00,12, 0x588f40,12, 0x588f80,2, 0x589000,12, 0x589040,12, 0x589080,2, 0x589100,6, 0x589200,38, 0x589300,38, 0x589400,38, 0x589800,7, 0x589820,7, 0x589904,1, 0x58996c,38, 0x589c00,7, 0x589c20,7, 0x589d04,1, 0x589d6c,38, 0x58a000,7, 0x58a020,7, 0x58a104,1, 0x58a16c,38, 0x58a400,7, 0x58a420,7, 0x58a504,1, 0x58a56c,38, 0x58a800,7, 0x58a820,7, 0x58a904,1, 0x58a96c,38, 0x58ac00,7, 0x58ac20,7, 0x58ad04,1, 0x58ad6c,38, 0x58b000,7, 0x58b020,7, 0x58b104,1, 0x58b16c,38, 0x58b400,7, 0x58b420,7, 0x58b504,1, 0x58b56c,38, 0x58c000,1, 0x58c020,16, 0x58c084,1, 0x58c0a0,9, 0x58c0e0,1, 0x58c100,16, 0x58c144,9, 0x58c200,8, 0x58c224,35, 0x58c304,2, 0x58c310,12, 0x58c400,7, 0x58c420,6, 0x58c440,1, 0x58c448,6, 0x58c800,7, 0x58c820,6, 0x58c840,1, 0x58c848,6, 0x58c880,7, 0x58c8a0,6, 0x58c8c0,1, 0x58c8c8,6, 0x58c900,7, 0x58c920,6, 0x58c940,1, 0x58c948,6, 0x58c980,7, 0x58c9a0,6, 0x58c9c0,1, 0x58c9c8,6, 0x58ca00,7, 0x58ca20,6, 0x58ca40,1, 0x58ca48,6, 0x58ca80,7, 0x58caa0,6, 0x58cac0,1, 0x58cac8,6, 0x58cb00,7, 0x58cb20,6, 0x58cb40,1, 0x58cb48,6, 0x58cb80,7, 0x58cba0,6, 0x58cbc0,1, 0x58cbc8,6, 0x58cc00,7, 0x58cc20,6, 0x58cc40,1, 0x58cc48,6, 0x58cc80,7, 0x58cca0,6, 0x58ccc0,1, 0x58ccc8,6, 0x58cd00,7, 0x58cd20,6, 0x58cd40,1, 0x58cd48,6, 0x58cd80,7, 0x58cda0,6, 0x58cdc0,1, 0x58cdc8,6, 0x58ce00,7, 0x58ce20,6, 0x58ce40,1, 0x58ce48,6, 0x58ce80,7, 0x58cea0,6, 0x58cec0,1, 0x58cec8,6, 0x58cf00,7, 0x58cf20,6, 0x58cf40,1, 0x58cf48,6, 0x58cf80,7, 0x58cfa0,6, 0x58cfc0,1, 0x58cfc8,6, 0x590000,15, 0x590040,3, 0x590050,5, 0x590080,16, 0x590100,20, 0x590180,20, 0x590200,20, 0x590400,16, 0x590480,20, 0x590500,20, 0x590580,20, 0x590600,5, 0x590620,1, 0x590640,7, 0x590660,24, 0x590800,276, 0x591000,1, 0x591020,7, 0x591040,8, 0x591080,10, 0x5910c0,9, 0x591100,10, 0x591200,2, 0x591304,1, 0x591368,43, 0x591500,7, 0x591604,7, 0x591644,1, 0x591664,10, 0x591700,53, 0x591800,96, 0x591a00,96, 0x591c00,4, 0x591d00,136, 0x591f24,1, 0x591f2c,14, 0x591f84,1, 0x591f94,11, 0x592000,3, 0x592010,3, 0x592020,3, 0x592030,3, 0x592040,3, 0x592050,3, 0x592060,3, 0x592070,3, 0x592080,3, 0x592090,3, 0x5920a0,3, 0x5920b0,3, 0x5920c0,3, 0x5920d0,3, 0x5920e0,3, 0x5920f0,3, 0x592100,3, 0x592110,3, 0x592120,3, 0x592130,3, 0x592140,3, 0x592150,3, 0x592160,3, 0x592170,3, 0x592180,3, 0x592190,3, 0x5921a0,3, 0x5921b0,3, 0x5921c0,3, 0x5921d0,3, 0x5921e0,3, 0x5921f0,3, 0x592200,3, 0x592210,3, 0x592220,3, 0x592230,3, 0x592240,3, 0x592250,3, 0x592260,3, 0x592270,3, 0x592280,3, 0x592290,3, 0x5922a0,3, 0x5922b0,3, 0x5922c0,3, 0x5922d0,3, 0x5922e0,3, 0x5922f0,3, 0x592300,3, 0x592310,3, 0x592320,3, 0x592330,3, 0x592340,3, 0x592350,3, 0x592360,3, 0x592370,3, 0x592380,3, 0x592390,3, 0x5923a0,3, 0x5923b0,3, 0x5923c0,3, 0x5923d0,3, 0x5923e0,3, 0x5923f0,3, 0x592400,192, 0x592704,1, 0x59270c,8, 0x593000,5, 0x593020,5, 0x593040,5, 0x593060,5, 0x593080,5, 0x5930a0,5, 0x5930c0,5, 0x5930e0,5, 0x593100,5, 0x593120,5, 0x593140,5, 0x593160,5, 0x593180,5, 0x5931a0,5, 0x5931c0,5, 0x5931e0,5, 0x593200,5, 0x593220,5, 0x593240,5, 0x593260,5, 0x593280,5, 0x5932a0,5, 0x5932c0,5, 0x5932e0,5, 0x593300,5, 0x593320,5, 0x593340,5, 0x593360,5, 0x593380,5, 0x5933a0,5, 0x5933c0,5, 0x5933e0,5, 0x593400,5, 0x593420,5, 0x593440,5, 0x593460,5, 0x593480,5, 0x5934a0,5, 0x5934c0,5, 0x5934e0,5, 0x593500,5, 0x593520,5, 0x593540,5, 0x593560,5, 0x593580,5, 0x5935a0,5, 0x5935c0,5, 0x5935e0,5, 0x593600,5, 0x593620,5, 0x593640,5, 0x593660,5, 0x593680,5, 0x5936a0,5, 0x5936c0,5, 0x5936e0,5, 0x593700,5, 0x593720,5, 0x593740,5, 0x593760,5, 0x593780,5, 0x5937a0,5, 0x5937c0,5, 0x5937e0,5, 0x593800,131, 0x593a10,3, 0x593a20,3, 0x593a30,3, 0x593a40,3, 0x593a50,3, 0x593a60,3, 0x593a70,3, 0x593a80,3, 0x593a90,3, 0x593aa0,3, 0x593ab0,3, 0x593ac0,3, 0x593ad0,3, 0x593ae0,3, 0x593af0,3, 0x593b00,3, 0x593b10,3, 0x593b20,3, 0x593b30,3, 0x593b40,3, 0x593b50,3, 0x593b60,3, 0x593b70,3, 0x593b80,3, 0x593b90,3, 0x593ba0,3, 0x593bb0,3, 0x593bc0,3, 0x593bd0,3, 0x593be0,3, 0x593bf0,3, 0x593c00,3, 0x593c10,3, 0x593c20,3, 0x593c30,3, 0x593c40,3, 0x593c50,3, 0x593c60,3, 0x593c70,3, 0x593c80,3, 0x593c90,3, 0x593ca0,3, 0x593cb0,3, 0x593cc0,3, 0x593cd0,3, 0x593ce0,3, 0x593cf0,3, 0x593d00,3, 0x593d10,3, 0x593d20,3, 0x593d30,3, 0x593d40,3, 0x593d50,3, 0x593d60,3, 0x593d70,3, 0x593d80,3, 0x593d90,3, 0x593da0,3, 0x593db0,3, 0x593dc0,3, 0x593dd0,3, 0x593de0,3, 0x593df0,3, 0x593e04,1, 0x593e24,10, 0x594000,2, 0x598000,2, 0x598080,5, 0x5980a0,5, 0x5980c0,5, 0x5980e0,5, 0x598100,5, 0x598120,5, 0x598140,5, 0x598160,5, 0x598200,5, 0x598220,5, 0x598240,5, 0x598260,5, 0x598280,5, 0x5982a0,5, 0x5982c0,5, 0x5982e0,5, 0x598300,5, 0x598320,5, 0x598400,5, 0x598420,5, 0x598440,5, 0x598460,5, 0x598480,5, 0x5984a0,5, 0x5984c0,5, 0x5984e0,5, 0x598500,5, 0x598520,5, 0x598800,3, 0x598820,17, 0x598904,45, 0x598a00,128, 0x598c04,1, 0x598c14,11, 0x599000,3, 0x599010,3, 0x599020,3, 0x599030,3, 0x599040,3, 0x599050,3, 0x599060,3, 0x599070,3, 0x599080,3, 0x599090,3, 0x5990a0,3, 0x5990b0,3, 0x5990c0,3, 0x5990d0,3, 0x5990e0,3, 0x5990f0,3, 0x599100,3, 0x599110,3, 0x599120,3, 0x599130,3, 0x599140,3, 0x599150,3, 0x599160,3, 0x599170,3, 0x599180,3, 0x599190,3, 0x5991a0,3, 0x5991b0,3, 0x5991c0,3, 0x5991d0,3, 0x5991e0,3, 0x5991f0,3, 0x599200,3, 0x599210,3, 0x599220,3, 0x599230,3, 0x599240,3, 0x599250,3, 0x599260,3, 0x599270,3, 0x599280,3, 0x599290,3, 0x5992a0,3, 0x5992b0,3, 0x5992c0,3, 0x5992d0,3, 0x5992e0,3, 0x5992f0,3, 0x599300,3, 0x599310,3, 0x599320,3, 0x599330,3, 0x599340,3, 0x599350,3, 0x599360,3, 0x599370,3, 0x599380,3, 0x599390,3, 0x5993a0,3, 0x5993b0,3, 0x5993c0,3, 0x5993d0,3, 0x5993e0,3, 0x5993f0,3, 0x599400,192, 0x599704,1, 0x59970c,10, 0x599800,1, 0x59980c,2, 0x59a000,8, 0x59a100,128, 0x59a400,116, 0x59a600,20, 0x59a680,39, 0x59a740,4, 0x59a760,6, 0x59a780,4, 0x59a7a0,6, 0x59a7c0,4, 0x59a7e0,6, 0x59a800,4, 0x59a820,6, 0x59a840,4, 0x59a860,6, 0x59a880,4, 0x59a8a0,6, 0x59a8c0,4, 0x59a8e0,6, 0x59a900,4, 0x59a920,7, 0x59a940,4, 0x59a960,7, 0x59a980,15, 0x59a9c0,7, 0x59a9e0,46, 0x59aaa0,6, 0x59aac0,6, 0x59aae0,14, 0x59ab40,4, 0x59ab60,7, 0x59ab80,2, 0x59ab8c,2, 0x59abc0,4, 0x59abe0,5, 0x59ac00,7, 0x59ac20,1, 0x59ac30,8, 0x59ac60,17, 0x59b700,11, 0x59c000,5, 0x59c020,5, 0x59c040,5, 0x59c060,5, 0x59c080,5, 0x59c0a0,5, 0x59c0c0,5, 0x59c0e0,5, 0x59c100,5, 0x59c120,5, 0x59c140,5, 0x59c160,5, 0x59c180,5, 0x59c1a0,5, 0x59c1c0,5, 0x59c1e0,5, 0x59c200,5, 0x59c220,5, 0x59c240,5, 0x59c260,5, 0x59c280,5, 0x59c2a0,5, 0x59c2c0,5, 0x59c2e0,5, 0x59c300,5, 0x59c320,5, 0x59c340,5, 0x59c360,5, 0x59c380,5, 0x59c3a0,5, 0x59c3c0,5, 0x59c3e0,5, 0x59c400,5, 0x59c420,5, 0x59c440,5, 0x59c460,5, 0x59c480,5, 0x59c4a0,5, 0x59c4c0,5, 0x59c4e0,5, 0x59c500,5, 0x59c520,5, 0x59c540,5, 0x59c560,5, 0x59c580,5, 0x59c5a0,5, 0x59c5c0,5, 0x59c5e0,5, 0x59c600,5, 0x59c620,5, 0x59c640,5, 0x59c660,5, 0x59c680,5, 0x59c6a0,5, 0x59c6c0,5, 0x59c6e0,5, 0x59c700,5, 0x59c720,5, 0x59c740,5, 0x59c760,5, 0x59c780,5, 0x59c7a0,5, 0x59c7c0,5, 0x59c7e0,5, 0x59c800,27, 0x59c874,12, 0x59c8a8,2, 0x59c904,1, 0x59c90c,5, 0x59c924,1, 0x59c92c,7, 0x59d000,5, 0x59d020,5, 0x59d040,5, 0x59d060,5, 0x59d080,5, 0x59d0a0,5, 0x59d0c0,5, 0x59d0e0,5, 0x59d100,5, 0x59d120,5, 0x59d140,5, 0x59d160,5, 0x59d180,5, 0x59d1a0,5, 0x59d1c0,5, 0x59d1e0,5, 0x59d200,5, 0x59d220,5, 0x59d240,5, 0x59d260,5, 0x59d280,5, 0x59d2a0,5, 0x59d2c0,5, 0x59d2e0,5, 0x59d300,5, 0x59d320,5, 0x59d340,5, 0x59d360,5, 0x59d380,5, 0x59d3a0,5, 0x59d3c0,5, 0x59d3e0,5, 0x59d400,5, 0x59d420,5, 0x59d440,5, 0x59d460,5, 0x59d480,5, 0x59d4a0,5, 0x59d4c0,5, 0x59d4e0,5, 0x59d500,5, 0x59d520,5, 0x59d540,5, 0x59d560,5, 0x59d580,5, 0x59d5a0,5, 0x59d5c0,5, 0x59d5e0,5, 0x59d600,5, 0x59d620,5, 0x59d640,5, 0x59d660,5, 0x59d680,5, 0x59d6a0,5, 0x59d6c0,5, 0x59d6e0,5, 0x59d700,5, 0x59d720,5, 0x59d740,5, 0x59d760,5, 0x59d780,5, 0x59d7a0,5, 0x59d7c0,5, 0x59d7e0,5, 0x59d800,27, 0x59d874,9, 0x59d904,1, 0x59d90c,5, 0x59d924,1, 0x59d92c,7, 0x59e000,6, 0x59e020,1, 0x59e040,6, 0x59e060,1, 0x59e400,27, 0x59e480,4, 0x59e4c0,25, 0x59e540,6, 0x59e560,2, 0x59e56c,3, 0x59e600,8, 0x59e624,47, 0x59e800,27, 0x59e880,1, 0x59e8a0,6, 0x59e900,27, 0x59e980,1, 0x59e9a0,6, 0x59ea00,27, 0x59ea80,1, 0x59eaa0,6, 0x59eb00,27, 0x59eb80,1, 0x59eba0,6, 0x59ec00,27, 0x59ec80,1, 0x59eca0,6, 0x59ed00,27, 0x59ed80,1, 0x59eda0,6, 0x59ee00,27, 0x59ee80,1, 0x59eea0,6, 0x59ef00,27, 0x59ef80,1, 0x59efa0,6, 0x59f000,27, 0x59f080,1, 0x59f0a0,6, 0x59f100,1, 0x600000,6, 0x600020,3, 0x600400,6, 0x600424,1, 0x600434,5, 0x600600,128, 0x600804,1, 0x600828,86, 0x600984,1, 0x600c00,1, 0x600c80,1, 0x600c90,2, 0x600d00,20, 0x600d80,1, 0x600e00,2, 0x600e10,4, 0x600f00,1, 0x700000,36, 0x700800,10, 0x700880,1, 0x701000,20, 0x701800,1, 0x702000,36, 0x702800,10, 0x702880,1, 0x703000,20, 0x703800,1, 0x704000,36, 0x704800,10, 0x704880,1, 0x705000,20, 0x705800,10, 0x705880,1, 0x706000,68, 0x706800,10, 0x706880,1, 0x707000,20, 0x707800,10, 0x707880,1, 0x708000,20, 0x708800,1, 0x709000,20, 0x709800,1, 0x70a000,20, 0x70a800,1, 0x70b000,52, 0x70b800,10, 0x70b880,1, 0x70c000,20, 0x70c800,1, 0x70d000,36, 0x70d800,10, 0x70d880,1, 0x70e000,36, 0x70e800,10, 0x70e880,1, 0x70f000,36, 0x70f800,10, 0x70f880,1, 0x710000,36, 0x710800,10, 0x710880,1, 0x711000,36, 0x711800,10, 0x711880,1, 0x712000,20, 0x712800,10, 0x712880,1, 0x713000,36, 0x713800,10, 0x713880,1, 0x714000,20, 0x714800,10, 0x714880,1, 0x715000,20, 0x715800,1, 0x716000,20, 0x716800,10, 0x716880,1, 0x717000,20, 0x717800,10, 0x717880,1, 0x718000,20, 0x718800,10, 0x718880,1, 0x719000,20, 0x719800,10, 0x719880,1, 0x71a000,20, 0x71a800,10, 0x71a880,1, 0x71b000,20, 0x71b800,10, 0x71b880,1, 0x71c000,20, 0x71c800,10, 0x71c880,1, 0x721000,20, 0x721080,20, 0x721100,4, 0x721800,10, 0x721880,1, 0x722000,20, 0x722080,20, 0x722100,4, 0x722800,10, 0x722880,1, 0x723000,20, 0x723080,20, 0x723100,4, 0x723800,10, 0x723880,1, 0x724000,36, 0x724800,10, 0x724880,1, 0x725000,20, 0x725800,10, 0x725880,1, 0x726000,36, 0x726800,10, 0x726884,5, 0x7268a0,3, 0x726900,1, 0x728000,52, 0x728800,10, 0x728880,1, 0x729000,36, 0x729800,1, 0x72a000,36, 0x72a800,1, 0x72b000,36, 0x72b800,1, 0x72c000,36, 0x72c800,1, 0x72d000,36, 0x72d800,1, 0x72e000,36, 0x72e800,1, 0x72f000,36, 0x72f800,1, 0x730000,36, 0x730800,1, 0x731000,36, 0x731800,1, 0x732000,36, 0x732800,1, 0x733000,36, 0x733800,1, 0x734000,36, 0x734800,1, 0x735000,36, 0x735800,1, 0x736000,36, 0x736800,1, 0x737000,36, 0x737800,1, 0x738000,36, 0x738800,1, 0x739000,20, 0x739800,10, 0x739880,1, 0x880000,582, 0x881000,8, 0x881024,6, 0x881040,8, 0x881080,7, 0x8810a0,7, 0x8810c0,7, 0x8810e0,7, 0x881100,13, 0x881140,12, 0x882000,582, 0x883000,8, 0x883024,6, 0x883040,8, 0x883080,7, 0x8830a0,7, 0x8830c0,7, 0x8830e0,7, 0x883100,13, 0x883140,12, 0x884000,27, 0x884080,4, 0x8840c0,25, 0x884140,6, 0x884160,2, 0x88416c,3, 0x884180,8, 0x8841a4,12, 0x884200,1, 0x888000,436, 0x888800,82, 0x888960,6, 0x888a00,41, 0x888b00,2, 0x888b20,19, 0x888c00,1, 0x888d00,44, 0x888e00,1, 0x889000,436, 0x889800,82, 0x889960,6, 0x889a00,41, 0x889b00,2, 0x889b20,19, 0x889c00,1, 0x889d00,44, 0x889e00,1, 0x88a000,7, 0x88a080,6, 0x88a0a0,6, 0x88a0c0,1, 0x88a100,4, 0x88a120,9, 0x88c000,3, 0x88c010,6, 0x88c200,7, 0x88c220,6, 0x88c240,7, 0x88c260,6, 0x88c280,2, 0x88c28c,2, 0x88c2a0,2, 0x88c2ac,2, 0x88c2c0,7, 0x88c2e0,7, 0x88c300,2, 0x88c30c,2, 0x88c320,6, 0x88c340,7, 0x88c360,6, 0x88c380,6, 0x88c3a0,7, 0x88c3c0,6, 0x88c3e0,6, 0x88c400,3, 0x88c480,20, 0x88c800,7, 0x88c820,14, 0x88c880,16, 0x88c900,7, 0x88c920,14, 0x88c980,16, 0x88ca00,6, 0x88ca20,7, 0x88cc00,9, 0x8a0000,582, 0x8a1000,8, 0x8a1024,6, 0x8a1040,8, 0x8a1080,7, 0x8a10a0,7, 0x8a10c0,7, 0x8a10e0,7, 0x8a1100,13, 0x8a1140,12, 0x8a2000,582, 0x8a3000,8, 0x8a3024,6, 0x8a3040,8, 0x8a3080,7, 0x8a30a0,7, 0x8a30c0,7, 0x8a30e0,7, 0x8a3100,13, 0x8a3140,12, 0x8a4000,27, 0x8a4080,4, 0x8a40c0,25, 0x8a4140,6, 0x8a4160,2, 0x8a416c,3, 0x8a4180,8, 0x8a41a4,12, 0x8a4200,1, 0x8a8000,436, 0x8a8800,82, 0x8a8960,6, 0x8a8a00,41, 0x8a8b00,2, 0x8a8b20,19, 0x8a8c00,1, 0x8a8d00,44, 0x8a8e00,1, 0x8a9000,436, 0x8a9800,82, 0x8a9960,6, 0x8a9a00,41, 0x8a9b00,2, 0x8a9b20,19, 0x8a9c00,1, 0x8a9d00,44, 0x8a9e00,1, 0x8aa000,7, 0x8aa080,6, 0x8aa0a0,6, 0x8aa0c0,1, 0x8aa100,4, 0x8aa120,9, 0x8ac000,3, 0x8ac010,6, 0x8ac200,7, 0x8ac220,6, 0x8ac240,7, 0x8ac260,6, 0x8ac280,2, 0x8ac28c,2, 0x8ac2a0,2, 0x8ac2ac,2, 0x8ac2c0,7, 0x8ac2e0,7, 0x8ac300,2, 0x8ac30c,2, 0x8ac320,6, 0x8ac340,7, 0x8ac360,6, 0x8ac380,6, 0x8ac3a0,7, 0x8ac3c0,6, 0x8ac3e0,6, 0x8ac400,3, 0x8ac480,20, 0x8ac800,7, 0x8ac820,14, 0x8ac880,16, 0x8ac900,7, 0x8ac920,14, 0x8ac980,16, 0x8aca00,6, 0x8aca20,7, 0x8acc00,9, 0x8c0000,2, 0x8c0080,20, 0x8c0100,8, 0x8c0124,1, 0x8c012c,2, 0x8c0200,15, 0x8c0240,4, 0x8c0260,17, 0x8c02c0,6, 0x8c02e0,2, 0x8c02ec,3, 0x8c0300,8, 0x8c0324,1, 0x8c0400,4, 0x8c0500,59, 0x8c0600,4, 0x8c0700,43, 0x8c0800,59, 0x8c0900,59, 0x8c0a00,1, 0x8c0c00,9, 0x8c0c40,9, 0x8c0c80,1, 0x8c2000,4, 0x8c2100,57, 0x8c2200,4, 0x8c2300,43, 0x8c2400,15, 0x8c2440,4, 0x8c2460,17, 0x8c24c0,6, 0x8c24e0,2, 0x8c24ec,3, 0x8c2500,8, 0x8c2524,1, 0x8c2600,12, 0x8c2800,57, 0x8c2900,57, 0x8c2a00,1, 0x8c2c00,43, 0x8c2d00,43, 0x8c2e00,1, 0x8c3000,1, 0x8c4000,12, 0x8c4200,15, 0x8c4240,4, 0x8c4260,17, 0x8c42c0,6, 0x8c42e0,2, 0x8c42ec,3, 0x8c4300,8, 0x8c4324,1, 0x8c4400,2, 0x8c8000,1, 0x8c8008,4, 0x8c8020,1, 0x8c8030,5, 0x8c8080,12, 0x8c80c0,1, 0x8c8100,4, 0x8c8180,18, 0x8c8200,10, 0x8c822c,2, 0x8c8240,7, 0x8c8260,7, 0x8c8400,4, 0x8c8500,35, 0x8c8600,2, 0x8c860c,2, 0x8c8680,4, 0x8c86c0,9, 0x8c8700,18, 0x8c8780,18, 0x8c8800,10, 0x8c8840,3, 0x8c8850,3, 0x8c8860,3, 0x8c8870,3, 0x8c8a00,35, 0x8c8b00,35, 0x8c8c00,2, 0x8c8c80,9, 0x8c8cc0,9, 0x8c8e00,15, 0x8c8e40,4, 0x8c8e60,17, 0x8c8ec0,6, 0x8c8ee0,2, 0x8c8eec,3, 0x8c8f00,8, 0x8c8f24,3, 0x8c9000,12, 0x8d0000,2, 0x8d0040,12, 0x8d0080,4, 0x8d0094,1, 0x8d009c,2, 0x8d0200,15, 0x8d0240,4, 0x8d0260,17, 0x8d02c0,6, 0x8d02e0,2, 0x8d02ec,3, 0x8d0300,8, 0x8d0324,1, 0x8d0400,4, 0x8d0500,50, 0x8d0600,4, 0x8d0700,50, 0x8d0800,50, 0x8d0900,50, 0x8d0a00,1, 0x8d0c00,33, 0x8d2000,4, 0x8d2100,55, 0x8d2200,4, 0x8d2300,41, 0x8d2400,15, 0x8d2440,4, 0x8d2460,17, 0x8d24c0,6, 0x8d24e0,2, 0x8d24ec,3, 0x8d2500,8, 0x8d2524,1, 0x8d2600,12, 0x8d2800,55, 0x8d2900,55, 0x8d2a00,1, 0x8d2c00,41, 0x8d2d00,41, 0x8d2e00,1, 0x8d3000,1, 0x8d4000,12, 0x8d4200,15, 0x8d4240,4, 0x8d4260,17, 0x8d42c0,6, 0x8d42e0,2, 0x8d42ec,3, 0x8d4300,8, 0x8d4324,1, 0x8d4400,2, 0x8d8000,2, 0x8d8040,12, 0x8d8080,18, 0x8e0000,6, 0x8e0040,12, 0x8e0200,15, 0x8e0240,4, 0x8e0260,17, 0x8e02c0,6, 0x8e02e0,2, 0x8e02ec,3, 0x8e0300,8, 0x8e0324,1, 0x8e0400,4, 0x8e0500,37, 0x8e0600,4, 0x8e0700,34, 0x8e0800,37, 0x8e0900,37, 0x8e0a00,1, 0x8e0c00,34, 0x8e0d00,34, 0x8e0e00,1, 0x8e1000,1, 0x8e1008,4, 0x8e1020,1, 0x8e1030,5, 0x8e1080,12, 0x8e10c0,1, 0x8e1100,4, 0x8e1180,18, 0x8e1200,10, 0x8e122c,2, 0x8e1240,7, 0x8e1260,7, 0x8e1400,4, 0x8e1500,35, 0x8e1600,2, 0x8e160c,2, 0x8e1680,4, 0x8e16c0,9, 0x8e1700,18, 0x8e1780,18, 0x8e1800,10, 0x8e1840,3, 0x8e1850,3, 0x8e1860,3, 0x8e1870,3, 0x8e1a00,35, 0x8e1b00,35, 0x8e1c00,2, 0x8e1c80,9, 0x8e1cc0,9, 0x8e1e00,15, 0x8e1e40,4, 0x8e1e60,17, 0x8e1ec0,6, 0x8e1ee0,2, 0x8e1eec,3, 0x8e1f00,8, 0x8e1f24,3, 0x8e2000,4, 0x8e2100,55, 0x8e2200,4, 0x8e2300,41, 0x8e2400,15, 0x8e2440,4, 0x8e2460,17, 0x8e24c0,6, 0x8e24e0,2, 0x8e24ec,3, 0x8e2500,8, 0x8e2524,1, 0x8e2600,12, 0x8e2800,55, 0x8e2900,55, 0x8e2a00,1, 0x8e2c00,41, 0x8e2d00,41, 0x8e2e00,1, 0x8e3000,1, 0x8e4004,1, 0x8e407c,33, 0x8e4200,68, 0x8e4400,2, 0x8e4424,1, 0x8e4434,4, 0x8e4460,1, 0x8e4468,4, 0x8e4480,12, 0x8e44c0,2, 0x8e44e0,2, 0x8e44ec,2, 0x8e4500,8, 0x8e4600,3, 0x8e4620,3, 0x8e4630,3, 0x8e4640,7, 0x8e4680,1, 0x8e46c0,1, 0x8e46e0,11, 0x8e4720,3, 0x8e4730,3, 0x8e4740,7, 0x8e4784,1, 0x8e4798,10, 0x8e4800,36, 0x8e4a00,27, 0x8e4a80,4, 0x8e4ac0,25, 0x8e4b40,6, 0x8e4b60,2, 0x8e4b6c,3, 0x8e4b80,8, 0x8e4ba4,15, 0x8e4c00,2, 0x8e4c20,13, 0x8e5000,2, 0x8e500c,3, 0x8e5020,2, 0x8e502c,3, 0x8e5040,10, 0x8e5404,1, 0x8e5414,32, 0x8e5800,3, 0x8e5844,1, 0x8e5850,12, 0x8e5884,1, 0x8e589c,9, 0x8e6004,1, 0x8e6040,52, 0x8e6180,3, 0x8e61c4,1, 0x8e61d0,12, 0x8e6400,3, 0x8e6444,1, 0x8e6450,13, 0x8e6488,4, 0x8e6800,1, 0x8e6808,36, 0x8e6900,18, 0x8e6954,3, 0x8e6980,2, 0x8e69a0,7, 0x8e69c0,3, 0x8e69d0,3, 0x8e69e0,1, 0x8e6a00,2, 0x8e6a0c,3, 0x8e6c04,1, 0x8e6c78,37, 0x8e6e00,4, 0x8e7000,4, 0x8e7204,1, 0x8e7280,36, 0x8e7400,2, 0x8e7420,1, 0x8e7428,4, 0x8e7480,2, 0x8e74a4,1, 0x8e74b0,7, 0x8e7500,7, 0x8e7520,7, 0x8e7540,3, 0x8e7550,3, 0x8e7560,1, 0x8e7580,2, 0x8e75c0,3, 0x8e75d0,3, 0x8e75e0,1, 0x8e7600,1, 0x8e7610,3, 0x8e7620,3, 0x8e7630,5, 0x8e8004,1, 0x8e8030,58, 0x8e8208,2, 0x8e8218,2, 0x8e8228,2, 0x8e8238,2, 0x8e8248,2, 0x8e8258,2, 0x8e8268,2, 0x8e8278,2, 0x8e8288,2, 0x8e8298,2, 0x8e82a8,2, 0x8e82b8,2, 0x8e82c8,2, 0x8e82d8,2, 0x8e82e8,2, 0x8e82f8,2, 0x8e8308,2, 0x8e8318,2, 0x8e8328,2, 0x8e8338,2, 0x8e8348,2, 0x8e8358,2, 0x8e8368,2, 0x8e8378,2, 0x8e8388,2, 0x8e8398,2, 0x8e83a8,2, 0x8e83b8,2, 0x8e83c8,2, 0x8e83d8,2, 0x8e83e8,2, 0x8e83f8,2, 0x8e8408,2, 0x8e8418,2, 0x8e8428,2, 0x8e8438,2, 0x8e8448,2, 0x8e8458,2, 0x8e8500,2, 0x8e8584,1, 0x8e85b0,20, 0x8e8608,2, 0x8e8700,2, 0x8e8784,1, 0x8e87b0,22, 0x8e9000,9, 0x8e9040,9, 0x8e9080,9, 0x8e90c0,9, 0x8e9100,9, 0x8e9140,9, 0x8e9180,9, 0x8e91c0,9, 0x8e9204,1, 0x8e9228,110, 0x8e9400,14, 0x8e9440,1, 0x8e9448,24, 0x8e9804,1, 0x8e980c,6, 0x8e9828,3, 0x8e9900,44, 0x8e9a00,4, 0x8e9a20,5, 0x8e9a40,4, 0x8e9a60,7, 0x8e9a80,4, 0x8e9aa0,7, 0x8e9b00,4, 0x8e9b40,10, 0x8e9c00,27, 0x8e9c80,4, 0x8e9cc0,25, 0x8e9d40,6, 0x8e9d60,2, 0x8e9d6c,3, 0x8e9e00,8, 0x8e9e24,25, 0x8ea000,44, 0x8ec000,1, 0x8ec008,3, 0x8ec020,3, 0x8ec100,60, 0x8ec200,27, 0x8ec280,4, 0x8ec2c0,25, 0x8ec340,6, 0x8ec360,2, 0x8ec36c,3, 0x900000,2, 0x900080,20, 0x900100,8, 0x900124,1, 0x90012c,2, 0x900200,15, 0x900240,4, 0x900260,17, 0x9002c0,6, 0x9002e0,2, 0x9002ec,3, 0x900300,8, 0x900324,1, 0x900400,4, 0x900600,75, 0x900800,4, 0x900900,59, 0x901000,75, 0x901200,75, 0x901400,1, 0x901800,9, 0x901840,9, 0x901880,1, 0x902000,4, 0x902200,72, 0x902400,4, 0x902500,58, 0x902600,15, 0x902640,4, 0x902660,17, 0x9026c0,6, 0x9026e0,2, 0x9026ec,3, 0x902700,8, 0x902724,1, 0x902800,12, 0x903000,72, 0x903200,72, 0x903400,1, 0x903800,58, 0x903900,58, 0x903a00,1, 0x903c00,1, 0x904000,12, 0x904200,15, 0x904240,4, 0x904260,17, 0x9042c0,6, 0x9042e0,2, 0x9042ec,3, 0x904300,8, 0x904324,1, 0x904400,2, 0x908000,2, 0x908040,12, 0x908080,4, 0x908094,1, 0x90809c,2, 0x908200,15, 0x908240,4, 0x908260,17, 0x9082c0,6, 0x9082e0,2, 0x9082ec,3, 0x908300,8, 0x908324,1, 0x908400,4, 0x908600,66, 0x908800,4, 0x908a00,66, 0x909000,66, 0x909200,66, 0x909400,1, 0x909800,33, 0x90a000,4, 0x90a200,70, 0x90a400,4, 0x90a500,56, 0x90a600,15, 0x90a640,4, 0x90a660,17, 0x90a6c0,6, 0x90a6e0,2, 0x90a6ec,3, 0x90a700,8, 0x90a724,1, 0x90a800,12, 0x90b000,70, 0x90b200,70, 0x90b400,1, 0x90b800,56, 0x90b900,56, 0x90ba00,1, 0x90bc00,1, 0x90c000,2, 0x90c040,12, 0x90c200,15, 0x90c240,4, 0x90c260,17, 0x90c2c0,6, 0x90c2e0,2, 0x90c2ec,3, 0x90c300,8, 0x90c324,1, 0x90c400,2, 0x910000,4, 0x910100,55, 0x910200,4, 0x910300,41, 0x910400,15, 0x910440,4, 0x910460,17, 0x9104c0,6, 0x9104e0,2, 0x9104ec,3, 0x910500,8, 0x910524,1, 0x910600,12, 0x910800,55, 0x910900,55, 0x910a00,1, 0x910c00,41, 0x910d00,41, 0x910e00,1, 0x911000,1, 0x912000,6, 0x912040,12, 0x912200,4, 0x912300,52, 0x912400,4, 0x912500,60, 0x912600,15, 0x912640,4, 0x912660,17, 0x9126c0,6, 0x9126e0,2, 0x9126ec,3, 0x912700,8, 0x912724,1, 0x912800,33, 0x912900,33, 0x912a00,1, 0x912c00,17, 0x912c80,2, 0x914004,1, 0x914040,52, 0x914180,3, 0x9141c4,1, 0x9141d0,12, 0x915000,1, 0x915008,4, 0x915020,1, 0x915030,5, 0x915080,12, 0x9150c0,1, 0x915100,4, 0x915180,18, 0x915200,10, 0x91522c,2, 0x915240,7, 0x915260,7, 0x915280,2, 0x91528c,2, 0x9152a0,2, 0x9152ac,2, 0x915300,4, 0x915340,9, 0x915400,18, 0x915480,18, 0x915500,10, 0x915540,3, 0x915550,3, 0x915560,3, 0x915570,3, 0x915580,4, 0x915600,9, 0x915640,9, 0x915800,15, 0x915840,4, 0x915860,17, 0x9158c0,6, 0x9158e0,2, 0x9158ec,3, 0x915900,8, 0x915924,3, 0x916000,1, 0x916008,4, 0x916020,1, 0x916030,5, 0x916080,12, 0x9160c0,1, 0x916100,4, 0x916180,18, 0x916200,10, 0x91622c,2, 0x916240,7, 0x916260,7, 0x916280,2, 0x91628c,2, 0x9162a0,2, 0x9162ac,2, 0x916300,4, 0x916340,9, 0x916400,18, 0x916480,18, 0x916500,10, 0x916540,3, 0x916550,3, 0x916560,3, 0x916570,3, 0x916580,4, 0x916600,9, 0x916640,9, 0x916800,15, 0x916840,4, 0x916860,17, 0x9168c0,6, 0x9168e0,2, 0x9168ec,3, 0x916900,8, 0x916924,3, 0x917000,1, 0x917008,2, 0x917020,1, 0x917030,5, 0x917080,12, 0x9170c0,1, 0x9170e0,2, 0x9170ec,2, 0x917100,7, 0x917120,7, 0x917140,2, 0x91714c,2, 0x917160,2, 0x91716c,2, 0x917180,4, 0x9171c0,9, 0x917200,2, 0x917220,3, 0x917230,3, 0x917240,3, 0x917250,3, 0x917260,4, 0x917280,9, 0x9172c0,9, 0x917400,15, 0x917440,4, 0x917460,17, 0x9174c0,6, 0x9174e0,2, 0x9174ec,3, 0x917500,8, 0x917524,2, 0x918004,1, 0x91807c,33, 0x918200,68, 0x918400,2, 0x918424,1, 0x918434,4, 0x918460,1, 0x918468,4, 0x918480,12, 0x9184c0,2, 0x9184e0,2, 0x9184ec,2, 0x918500,8, 0x918600,3, 0x918620,3, 0x918630,3, 0x918640,7, 0x918680,1, 0x9186c0,1, 0x9186e0,11, 0x918720,3, 0x918730,3, 0x918740,7, 0x918784,1, 0x918798,10, 0x918800,36, 0x918a00,27, 0x918a80,4, 0x918ac0,25, 0x918b40,6, 0x918b60,2, 0x918b6c,3, 0x918b80,8, 0x918ba4,15, 0x918c00,2, 0x918c20,13, 0x919000,2, 0x91900c,3, 0x919020,2, 0x91902c,3, 0x919040,10, 0x919404,1, 0x919484,36, 0x919800,3, 0x919844,1, 0x919850,12, 0x919884,1, 0x91989c,9, 0x91a000,2, 0x91a010,3, 0x91a080,16, 0x91a0c4,1, 0x91a0d0,4, 0x91a100,2, 0x91a200,27, 0x91a280,4, 0x91a2c0,25, 0x91a340,6, 0x91a360,2, 0x91a36c,3, 0x91a380,8, 0x91a3a4,2, 0x91a400,1, 0x91a420,1, 0x91a428,4, 0x91a440,1, 0x91a450,5, 0x91a468,4, 0x91a480,3, 0x91a600,4, 0x91a700,54, 0x91a800,54, 0x91a900,54, 0x91aa00,1, 0x91ac00,4, 0x91ad00,52, 0x91b000,52, 0x91b100,52, 0x91b200,1, 0x91b400,7, 0x91b420,3, 0x91b430,3, 0x91b440,2, 0x91b44c,2, 0x91b460,5, 0x920000,6, 0x920020,6, 0x920040,6, 0x920060,6, 0x920080,13, 0x9200c0,5, 0x9200e0,5, 0x920100,5, 0x920120,5, 0x920140,5, 0x920160,5, 0x920180,5, 0x9201a0,5, 0x9201c0,5, 0x9201e0,5, 0x920200,5, 0x920220,5, 0x920240,5, 0x920260,5, 0x920280,5, 0x9202a0,5, 0x9202c0,5, 0x9202e0,5, 0x920300,5, 0x920320,1, 0x920340,9, 0x920380,14, 0x9203c0,9, 0x920400,9, 0x920440,9, 0x920480,9, 0x9204c0,9, 0x920500,9, 0x920540,9, 0x920580,9, 0x920804,4, 0x920820,1, 0x920830,5, 0x920850,5, 0x920870,1, 0x920880,1, 0x920890,1, 0x9208a0,1, 0x9208c0,6, 0x9208e0,6, 0x920900,3, 0x920940,4, 0x920960,25, 0x920a00,2, 0x920a0c,4, 0x920a20,2, 0x920a2c,3, 0x920a40,3, 0x920a50,3, 0x920c00,113, 0x920dc8,5, 0x921000,1, 0x921044,1, 0x921050,5, 0x921080,12, 0x921100,30, 0x921400,1, 0x921410,4, 0x921424,6, 0x921440,1, 0x921450,5, 0x921470,4, 0x921484,4, 0x9214a0,1, 0x9214b0,1, 0x9214c0,7, 0x921500,22, 0x921580,4, 0x921600,13, 0x921640,13, 0x921680,1, 0x921700,4, 0x921740,11, 0x921780,2, 0x921800,1, 0x921810,4, 0x921824,6, 0x921840,1, 0x921850,5, 0x921870,4, 0x921884,4, 0x9218a0,1, 0x9218b0,1, 0x9218c0,7, 0x921900,22, 0x921980,4, 0x921a00,13, 0x921a40,13, 0x921a80,1, 0x921b00,4, 0x921b40,11, 0x921b80,2, 0x922000,31, 0x922080,1, 0x922090,4, 0x9220a4,6, 0x9220c0,1, 0x9220d0,4, 0x922100,6, 0x922120,6, 0x922140,6, 0x922160,6, 0x922180,7, 0x9221a0,7, 0x9221c0,1, 0x922200,4, 0x922220,7, 0x923004,1, 0x92301c,9, 0x923044,1, 0x923050,4, 0x923404,1, 0x92356c,165, 0x923804,1, 0x923900,64, 0x923a04,1, 0x923a40,16, 0x923a84,1, 0x923ac0,16, 0x923b04,1, 0x923b40,16, 0x923b84,1, 0x923bc0,19, 0x924000,9, 0x924030,13, 0x924070,13, 0x9240b0,13, 0x9240f0,5, 0x928000,23, 0x928060,5, 0x928080,5, 0x9280a0,5, 0x9280c0,5, 0x9280e0,48, 0x928200,8, 0x928240,15, 0x928280,8, 0x9282c0,15, 0x928300,8, 0x928340,15, 0x928380,8, 0x9283c0,15, 0x928400,8, 0x928440,15, 0x928480,8, 0x9284c0,15, 0x928500,8, 0x928540,15, 0x928580,8, 0x9285c0,15, 0x928800,17, 0x928848,8, 0x928880,20, 0x928900,48, 0x928a00,3, 0x928a24,1, 0x928a2c,5, 0x928c00,6, 0x928c20,6, 0x928c40,1, 0x928e00,4, 0x928f00,62, 0x929000,5, 0x929018,3, 0x929028,13, 0x929060,10, 0x929100,6, 0x929120,6, 0x929140,1, 0x929200,9, 0x929240,9, 0x929280,1, 0x929400,27, 0x929480,4, 0x9294c0,25, 0x929540,6, 0x929560,2, 0x92956c,3, 0x929580,8, 0x9295a4,10, 0x929600,36, 0x929700,1, 0x929708,2, 0x930000,6, 0x930020,6, 0x930040,6, 0x930060,6, 0x930080,13, 0x9300c0,5, 0x9300e0,5, 0x930100,5, 0x930120,5, 0x930140,5, 0x930160,5, 0x930180,5, 0x9301a0,5, 0x9301c0,5, 0x9301e0,5, 0x930200,5, 0x930220,5, 0x930240,5, 0x930260,5, 0x930280,5, 0x9302a0,5, 0x9302c0,5, 0x9302e0,5, 0x930300,5, 0x930320,1, 0x930340,9, 0x930380,14, 0x9303c0,9, 0x930400,9, 0x930440,9, 0x930480,9, 0x9304c0,9, 0x930500,9, 0x930540,9, 0x930580,9, 0x930804,4, 0x930820,1, 0x930830,5, 0x930850,5, 0x930870,1, 0x930880,1, 0x930890,1, 0x9308a0,1, 0x9308c0,6, 0x9308e0,6, 0x930900,3, 0x930940,4, 0x930960,25, 0x930a00,2, 0x930a0c,4, 0x930a20,2, 0x930a2c,3, 0x930a40,3, 0x930a50,3, 0x930c00,113, 0x930dc8,5, 0x931000,1, 0x931044,1, 0x931050,5, 0x931080,12, 0x931100,30, 0x931400,1, 0x931410,4, 0x931424,6, 0x931440,1, 0x931450,5, 0x931470,4, 0x931484,4, 0x9314a0,1, 0x9314b0,1, 0x9314c0,7, 0x931500,22, 0x931580,4, 0x931600,13, 0x931640,13, 0x931680,1, 0x931700,4, 0x931740,11, 0x931780,2, 0x931800,1, 0x931810,4, 0x931824,6, 0x931840,1, 0x931850,5, 0x931870,4, 0x931884,4, 0x9318a0,1, 0x9318b0,1, 0x9318c0,7, 0x931900,22, 0x931980,4, 0x931a00,13, 0x931a40,13, 0x931a80,1, 0x931b00,4, 0x931b40,11, 0x931b80,2, 0x932000,31, 0x932080,1, 0x932090,4, 0x9320a4,6, 0x9320c0,1, 0x9320d0,4, 0x932100,6, 0x932120,6, 0x932140,6, 0x932160,6, 0x932180,7, 0x9321a0,7, 0x9321c0,1, 0x932200,4, 0x932220,7, 0x933004,1, 0x93301c,9, 0x933044,1, 0x933050,4, 0x933404,1, 0x93356c,165, 0x933804,1, 0x933900,64, 0x933a04,1, 0x933a40,16, 0x933a84,1, 0x933ac0,16, 0x933b04,1, 0x933b40,16, 0x933b84,1, 0x933bc0,19, 0x934000,9, 0x934030,13, 0x934070,13, 0x9340b0,13, 0x9340f0,5, 0x938000,23, 0x938060,5, 0x938080,5, 0x9380a0,5, 0x9380c0,5, 0x9380e0,48, 0x938200,8, 0x938240,15, 0x938280,8, 0x9382c0,15, 0x938300,8, 0x938340,15, 0x938380,8, 0x9383c0,15, 0x938400,8, 0x938440,15, 0x938480,8, 0x9384c0,15, 0x938500,8, 0x938540,15, 0x938580,8, 0x9385c0,15, 0x938800,17, 0x938848,8, 0x938880,20, 0x938900,48, 0x938a00,3, 0x938a24,1, 0x938a2c,5, 0x938c00,6, 0x938c20,6, 0x938c40,1, 0x938e00,4, 0x938f00,62, 0x939000,5, 0x939018,3, 0x939028,13, 0x939060,10, 0x939100,6, 0x939120,6, 0x939140,1, 0x939200,9, 0x939240,9, 0x939280,1, 0x939400,27, 0x939480,4, 0x9394c0,25, 0x939540,6, 0x939560,2, 0x93956c,3, 0x939580,8, 0x9395a4,10, 0x939600,36, 0x939700,1, 0x939708,2, 0x940000,6, 0x940020,6, 0x940040,6, 0x940060,6, 0x940080,13, 0x9400c0,5, 0x9400e0,5, 0x940100,5, 0x940120,5, 0x940140,5, 0x940160,5, 0x940180,5, 0x9401a0,5, 0x9401c0,5, 0x9401e0,5, 0x940200,5, 0x940220,5, 0x940240,5, 0x940260,5, 0x940280,5, 0x9402a0,5, 0x9402c0,5, 0x9402e0,5, 0x940300,5, 0x940320,1, 0x940340,9, 0x940380,14, 0x9403c0,9, 0x940400,9, 0x940440,9, 0x940480,9, 0x9404c0,9, 0x940500,9, 0x940540,9, 0x940580,9, 0x940804,4, 0x940820,1, 0x940830,5, 0x940850,5, 0x940870,1, 0x940880,1, 0x940890,1, 0x9408a0,1, 0x9408c0,6, 0x9408e0,6, 0x940900,3, 0x940940,4, 0x940960,25, 0x940a00,2, 0x940a0c,4, 0x940a20,2, 0x940a2c,3, 0x940a40,3, 0x940a50,3, 0x940c00,113, 0x940dc8,5, 0x941000,1, 0x941044,1, 0x941050,5, 0x941080,12, 0x941100,30, 0x941400,1, 0x941410,4, 0x941424,6, 0x941440,1, 0x941450,5, 0x941470,4, 0x941484,4, 0x9414a0,1, 0x9414b0,1, 0x9414c0,7, 0x941500,22, 0x941580,4, 0x941600,13, 0x941640,13, 0x941680,1, 0x941700,4, 0x941740,11, 0x941780,2, 0x941800,1, 0x941810,4, 0x941824,6, 0x941840,1, 0x941850,5, 0x941870,4, 0x941884,4, 0x9418a0,1, 0x9418b0,1, 0x9418c0,7, 0x941900,22, 0x941980,4, 0x941a00,13, 0x941a40,13, 0x941a80,1, 0x941b00,4, 0x941b40,11, 0x941b80,2, 0x942000,31, 0x942080,1, 0x942090,4, 0x9420a4,6, 0x9420c0,1, 0x9420d0,4, 0x942100,6, 0x942120,6, 0x942140,6, 0x942160,6, 0x942180,7, 0x9421a0,7, 0x9421c0,1, 0x942200,4, 0x942220,7, 0x943004,1, 0x94301c,9, 0x943044,1, 0x943050,4, 0x943404,1, 0x94356c,165, 0x943804,1, 0x943900,64, 0x943a04,1, 0x943a40,16, 0x943a84,1, 0x943ac0,16, 0x943b04,1, 0x943b40,16, 0x943b84,1, 0x943bc0,19, 0x944000,9, 0x944030,13, 0x944070,13, 0x9440b0,13, 0x9440f0,5, 0x948000,23, 0x948060,5, 0x948080,5, 0x9480a0,5, 0x9480c0,5, 0x9480e0,48, 0x948200,8, 0x948240,15, 0x948280,8, 0x9482c0,15, 0x948300,8, 0x948340,15, 0x948380,8, 0x9483c0,15, 0x948400,8, 0x948440,15, 0x948480,8, 0x9484c0,15, 0x948500,8, 0x948540,15, 0x948580,8, 0x9485c0,15, 0x948800,17, 0x948848,8, 0x948880,20, 0x948900,48, 0x948a00,3, 0x948a24,1, 0x948a2c,5, 0x948c00,6, 0x948c20,6, 0x948c40,1, 0x948e00,4, 0x948f00,62, 0x949000,5, 0x949018,3, 0x949028,13, 0x949060,10, 0x949100,6, 0x949120,6, 0x949140,1, 0x949200,9, 0x949240,9, 0x949280,1, 0x949400,27, 0x949480,4, 0x9494c0,25, 0x949540,6, 0x949560,2, 0x94956c,3, 0x949580,8, 0x9495a4,10, 0x949600,36, 0x949700,1, 0x949708,2, 0x950000,6, 0x950020,6, 0x950040,6, 0x950060,6, 0x950080,13, 0x9500c0,5, 0x9500e0,5, 0x950100,5, 0x950120,5, 0x950140,5, 0x950160,5, 0x950180,5, 0x9501a0,5, 0x9501c0,5, 0x9501e0,5, 0x950200,5, 0x950220,5, 0x950240,5, 0x950260,5, 0x950280,5, 0x9502a0,5, 0x9502c0,5, 0x9502e0,5, 0x950300,5, 0x950320,1, 0x950340,9, 0x950380,14, 0x9503c0,9, 0x950400,9, 0x950440,9, 0x950480,9, 0x9504c0,9, 0x950500,9, 0x950540,9, 0x950580,9, 0x950804,4, 0x950820,1, 0x950830,5, 0x950850,5, 0x950870,1, 0x950880,1, 0x950890,1, 0x9508a0,1, 0x9508c0,6, 0x9508e0,6, 0x950900,3, 0x950940,4, 0x950960,25, 0x950a00,2, 0x950a0c,4, 0x950a20,2, 0x950a2c,3, 0x950a40,3, 0x950a50,3, 0x950c00,113, 0x950dc8,5, 0x951000,1, 0x951044,1, 0x951050,5, 0x951080,12, 0x951100,30, 0x951400,1, 0x951410,4, 0x951424,6, 0x951440,1, 0x951450,5, 0x951470,4, 0x951484,4, 0x9514a0,1, 0x9514b0,1, 0x9514c0,7, 0x951500,22, 0x951580,4, 0x951600,13, 0x951640,13, 0x951680,1, 0x951700,4, 0x951740,11, 0x951780,2, 0x951800,1, 0x951810,4, 0x951824,6, 0x951840,1, 0x951850,5, 0x951870,4, 0x951884,4, 0x9518a0,1, 0x9518b0,1, 0x9518c0,7, 0x951900,22, 0x951980,4, 0x951a00,13, 0x951a40,13, 0x951a80,1, 0x951b00,4, 0x951b40,11, 0x951b80,2, 0x952000,31, 0x952080,1, 0x952090,4, 0x9520a4,6, 0x9520c0,1, 0x9520d0,4, 0x952100,6, 0x952120,6, 0x952140,6, 0x952160,6, 0x952180,7, 0x9521a0,7, 0x9521c0,1, 0x952200,4, 0x952220,7, 0x953004,1, 0x95301c,9, 0x953044,1, 0x953050,4, 0x953404,1, 0x95356c,165, 0x953804,1, 0x953900,64, 0x953a04,1, 0x953a40,16, 0x953a84,1, 0x953ac0,16, 0x953b04,1, 0x953b40,16, 0x953b84,1, 0x953bc0,19, 0x954000,9, 0x954030,13, 0x954070,13, 0x9540b0,13, 0x9540f0,5, 0x958000,23, 0x958060,5, 0x958080,5, 0x9580a0,5, 0x9580c0,5, 0x9580e0,48, 0x958200,8, 0x958240,15, 0x958280,8, 0x9582c0,15, 0x958300,8, 0x958340,15, 0x958380,8, 0x9583c0,15, 0x958400,8, 0x958440,15, 0x958480,8, 0x9584c0,15, 0x958500,8, 0x958540,15, 0x958580,8, 0x9585c0,15, 0x958800,17, 0x958848,8, 0x958880,20, 0x958900,48, 0x958a00,3, 0x958a24,1, 0x958a2c,5, 0x958c00,6, 0x958c20,6, 0x958c40,1, 0x958e00,4, 0x958f00,62, 0x959000,5, 0x959018,3, 0x959028,13, 0x959060,10, 0x959100,6, 0x959120,6, 0x959140,1, 0x959200,9, 0x959240,9, 0x959280,1, 0x959400,27, 0x959480,4, 0x9594c0,25, 0x959540,6, 0x959560,2, 0x95956c,3, 0x959580,8, 0x9595a4,10, 0x959600,36, 0x959700,1, 0x959708,2, 0x960000,2, 0x960044,17, 0x960100,2, 0x960144,17, 0x960200,2, 0x960244,17, 0x9602c4,17, 0x960380,2, 0x9603c4,17, 0x960480,2, 0x9604c4,17, 0x960544,28, 0x9605c0,2, 0x9605cc,3, 0x9605e0,1, 0x9605e8,2, 0x960600,7, 0x960640,11, 0x960680,11, 0x9606c0,11, 0x960700,11, 0x960740,11, 0x960780,3, 0x960804,1, 0x960818,10, 0x960844,1, 0x96084c,5, 0x960884,19, 0x960900,35, 0x960a00,35, 0x960b00,35, 0x960c00,1, 0x960c20,1, 0x960c28,7, 0x960c48,2, 0x964004,1, 0x96400c,13, 0x964044,1, 0x96404c,1, 0x964084,1, 0x9640c0,16, 0x964104,1, 0x964134,19, 0x964184,1, 0x9641bc,17, 0x964204,19, 0x964400,6, 0x964420,6, 0x964440,2, 0x96444c,3, 0x96445c,3, 0x96446c,1, 0x964480,1, 0x964490,4, 0x9644a4,6, 0x9644c0,1, 0x9644d0,4, 0x9644e4,1, 0x9644ec,4, 0x964500,3, 0x964510,3, 0x964804,1, 0x96480c,13, 0x964844,1, 0x96484c,1, 0x964884,1, 0x9648c0,16, 0x964904,1, 0x964934,19, 0x964984,1, 0x9649bc,17, 0x964a04,19, 0x964c00,6, 0x964c20,6, 0x964c40,2, 0x964c4c,3, 0x964c5c,3, 0x964c6c,1, 0x964c80,1, 0x964c90,4, 0x964ca4,6, 0x964cc0,1, 0x964cd0,4, 0x964ce4,1, 0x964cec,4, 0x964d00,3, 0x964d10,3, 0x965004,1, 0x96500c,13, 0x965044,1, 0x96504c,1, 0x965084,1, 0x9650c0,16, 0x965104,1, 0x965134,19, 0x965184,1, 0x9651bc,17, 0x965204,19, 0x965400,6, 0x965420,6, 0x965440,2, 0x96544c,3, 0x96545c,3, 0x96546c,1, 0x965480,1, 0x965490,4, 0x9654a4,6, 0x9654c0,1, 0x9654d0,4, 0x9654e4,1, 0x9654ec,4, 0x965500,3, 0x965510,3, 0x965804,1, 0x96580c,13, 0x965844,1, 0x96584c,1, 0x965884,1, 0x9658c0,16, 0x965904,1, 0x965934,19, 0x965984,1, 0x9659bc,17, 0x965a04,19, 0x965c00,6, 0x965c20,6, 0x965c40,2, 0x965c4c,3, 0x965c5c,3, 0x965c6c,1, 0x965c80,1, 0x965c90,4, 0x965ca4,6, 0x965cc0,1, 0x965cd0,4, 0x965ce4,1, 0x965cec,4, 0x965d00,3, 0x965d10,3, 0x966000,46, 0x9660c0,6, 0x9660e0,6, 0x966100,6, 0x966120,6, 0x966140,6, 0x966160,6, 0x966180,6, 0x9661c0,139, 0x9663f0,2, 0x966400,7, 0x968004,1, 0x968030,20, 0x968084,1, 0x9680bc,17, 0x968104,1, 0x968134,23, 0x968200,1, 0x96820c,1, 0x968240,1, 0x968250,4, 0x968264,6, 0x968284,1, 0x96828c,1, 0x968404,1, 0x968430,20, 0x968484,1, 0x9684bc,17, 0x968504,1, 0x968534,23, 0x968600,1, 0x96860c,1, 0x968640,1, 0x968650,4, 0x968664,6, 0x968684,1, 0x96868c,1, 0x968804,1, 0x968830,20, 0x968884,1, 0x9688bc,17, 0x968904,1, 0x968934,23, 0x968a00,1, 0x968a0c,1, 0x968a40,1, 0x968a50,4, 0x968a64,6, 0x968a84,1, 0x968a8c,1, 0x968c04,1, 0x968c30,20, 0x968c84,1, 0x968cbc,17, 0x968d04,1, 0x968d34,23, 0x968e00,1, 0x968e0c,1, 0x968e40,1, 0x968e50,4, 0x968e64,6, 0x968e84,1, 0x968e8c,1, 0x969000,5, 0x96a004,1, 0x96a014,11, 0x96a044,1, 0x96a058,10, 0x96a084,1, 0x96a094,7, 0x96a100,2, 0x96a110,3, 0x96a120,3, 0x96a140,1, 0x96a14c,1, 0x96a160,1, 0x96a170,11, 0x96a1a0,1, 0x96a1b0,19, 0x96a200,7, 0x96a224,1, 0x96a22c,1, 0x96a240,20, 0x96a2c0,9, 0x96a300,3, 0x96a310,3, 0x96a320,3, 0x96a330,2, 0x96a340,14, 0x96a380,3, 0x96a390,2, 0x96a404,1, 0x96a414,11, 0x96a444,1, 0x96a458,10, 0x96a484,1, 0x96a494,7, 0x96a500,2, 0x96a510,3, 0x96a520,3, 0x96a540,1, 0x96a54c,1, 0x96a560,1, 0x96a570,11, 0x96a5a0,1, 0x96a5b0,19, 0x96a600,7, 0x96a624,1, 0x96a62c,1, 0x96a640,20, 0x96a6c0,9, 0x96a700,3, 0x96a710,3, 0x96a720,3, 0x96a730,2, 0x96a740,14, 0x96a780,3, 0x96a790,2, 0x96a800,9, 0x96a828,4, 0x96ac00,1, 0x96ac08,65, 0x96ad10,65, 0x96ae18,64, 0x96b000,3, 0x96b200,34, 0x96b2c0,2, 0x96b2e4,1, 0x96b2f4,5, 0x96b324,1, 0x96b334,5, 0x96b380,20, 0x96b400,13, 0x96c000,1, 0x96c020,1, 0x96c028,4, 0x96c040,6, 0x96c060,6, 0x96c080,3, 0x96c090,3, 0x96c0a0,3, 0x96c0b0,3, 0x96c0c0,3, 0x96c0d0,3, 0x96c0e0,3, 0x96c0f0,3, 0x96c100,3, 0x96c110,3, 0x96c120,3, 0x96c130,3, 0x96c140,3, 0x96c150,3, 0x96c160,3, 0x96c170,3, 0x96c180,3, 0x96c190,3, 0x96c1a0,3, 0x96c1b0,3, 0x96c1c0,3, 0x96c1d0,3, 0x96c1e0,3, 0x96c1f0,3, 0x96c200,3, 0x96c210,3, 0x96c220,3, 0x96c230,3, 0x96c240,3, 0x96c250,3, 0x96c260,3, 0x96c270,3, 0x96c280,3, 0x96c290,3, 0x96c2a0,3, 0x96c2b0,3, 0x96c2c0,3, 0x96c2d0,3, 0x96c2e0,3, 0x96c2f0,3, 0x96c300,3, 0x96c310,3, 0x96c320,3, 0x96c330,3, 0x96c340,3, 0x96c350,3, 0x96c360,3, 0x96c370,3, 0x96c380,3, 0x96c390,3, 0x96c3a0,3, 0x96c3b0,3, 0x96c3c0,3, 0x96c3d0,3, 0x96c3e0,3, 0x96c3f0,3, 0x96c400,3, 0x96c410,3, 0x96c420,3, 0x96c430,3, 0x96c440,3, 0x96c450,3, 0x96c460,3, 0x96c470,3, 0x96c484,42, 0x96c53c,12, 0x96c57c,1, 0x96c800,70, 0x96c920,32, 0x96ca04,4, 0x96ca20,7, 0x96ca40,3, 0x96ca80,2, 0x96caa4,1, 0x96caac,8, 0x96cad0,1, 0x96cae0,11, 0x96cb40,1, 0x96cb60,10, 0x96cb94,1, 0x96cb9c,18, 0x96cbec,1, 0x96cc00,7, 0x96cc20,1, 0x96cc28,4, 0x96cc40,1, 0x96cc48,2, 0x96cc80,4, 0x96ccc0,10, 0x96cd00,19, 0x96cd50,2, 0x96d000,4, 0x96d040,9, 0x96d080,5, 0x96d0a0,3, 0x96d0b0,1, 0x970000,1, 0x970008,4, 0x970020,1, 0x970040,1, 0x970048,4, 0x970060,1, 0x970080,8, 0x970200,1, 0x970208,5, 0x970220,1, 0x97022c,2, 0x970240,2, 0x970264,1, 0x970270,6, 0x9702c4,1, 0x9702d4,18, 0x970320,1, 0x970340,11, 0x970380,11, 0x970400,75, 0x97053c,3, 0x970560,7, 0x970580,7, 0x9705a0,7, 0x9705c0,15, 0x971004,1, 0x97100c,13, 0x971044,1, 0x971050,4, 0x971084,1, 0x9710c0,16, 0x971104,1, 0x971140,19, 0x971200,2, 0x971210,8, 0x971240,2, 0x97124c,2, 0x971260,6, 0x971280,2, 0x97128c,2, 0x9712a0,6, 0x9712c0,44, 0x971400,2, 0x971484,1, 0x9714c0,16, 0x971504,4, 0x971600,2, 0x97160c,3, 0x97161c,17, 0x971680,12, 0x9716c0,12, 0x971700,1, 0x971800,1, 0x971820,3, 0x971830,3, 0x971840,1, 0x971850,3, 0x971880,6, 0x9718a0,6, 0x9718c0,19, 0x972000,10, 0x972040,10, 0x972080,10, 0x9720c0,10, 0x972100,10, 0x972140,10, 0x972180,10, 0x9721c0,10, 0x972200,10, 0x972240,10, 0x972400,10, 0x972440,10, 0x972480,10, 0x9724c0,10, 0x972500,2, 0x972600,9, 0x972640,2, 0x97264c,2, 0x972660,1, 0x972668,4, 0x972800,27, 0x972880,4, 0x9728c0,25, 0x972940,6, 0x972960,2, 0x97296c,3, 0x972a00,8, 0x972a24,57, 0x972c00,129, 0x972e10,4, 0x973000,6, 0x973020,3, 0x973030,6, 0x973060,8, 0x980000,1, 0x980080,17, 0x980100,37, 0x980200,1, 0x980210,11, 0x980240,1, 0x980280,1, 0x980288,4, 0x9802a0,4, 0x9802c0,1, 0x980300,2, 0x980400,15, 0x980440,4, 0x980460,17, 0x9804c0,6, 0x9804e0,2, 0x9804ec,3, 0x980500,8, 0x980524,4, 0x980600,12, 0x981000,1, 0x981080,17, 0x981100,37, 0x981200,1, 0x981210,11, 0x981240,1, 0x981280,1, 0x981288,4, 0x9812a0,4, 0x9812c0,1, 0x981300,2, 0x981400,15, 0x981440,4, 0x981460,17, 0x9814c0,6, 0x9814e0,2, 0x9814ec,3, 0x981500,8, 0x981524,4, 0x981600,12, 0x982000,1, 0x982080,17, 0x982100,37, 0x982200,1, 0x982210,11, 0x982240,1, 0x982280,1, 0x982288,4, 0x9822a0,4, 0x9822c0,1, 0x982300,2, 0x982400,15, 0x982440,4, 0x982460,17, 0x9824c0,6, 0x9824e0,2, 0x9824ec,3, 0x982500,8, 0x982524,4, 0x982600,12, 0x983000,1, 0x983080,17, 0x983100,37, 0x983200,1, 0x983210,11, 0x983240,1, 0x983280,1, 0x983288,4, 0x9832a0,4, 0x9832c0,1, 0x983300,2, 0x983400,15, 0x983440,4, 0x983460,17, 0x9834c0,6, 0x9834e0,2, 0x9834ec,3, 0x983500,8, 0x983524,4, 0x983600,12, 0x984000,1, 0x984080,17, 0x984100,37, 0x984200,1, 0x984210,11, 0x984240,1, 0x984280,1, 0x984288,4, 0x9842a0,4, 0x9842c0,1, 0x984300,2, 0x984400,15, 0x984440,4, 0x984460,17, 0x9844c0,6, 0x9844e0,2, 0x9844ec,3, 0x984500,8, 0x984524,4, 0x984600,12, 0x985000,1, 0x985080,17, 0x985100,37, 0x985200,1, 0x985210,11, 0x985240,1, 0x985280,1, 0x985288,4, 0x9852a0,4, 0x9852c0,1, 0x985300,2, 0x985400,15, 0x985440,4, 0x985460,17, 0x9854c0,6, 0x9854e0,2, 0x9854ec,3, 0x985500,8, 0x985524,4, 0x985600,12, 0x986000,1, 0x986080,17, 0x986100,37, 0x986200,1, 0x986210,11, 0x986240,1, 0x986280,1, 0x986288,4, 0x9862a0,4, 0x9862c0,1, 0x986300,2, 0x986400,15, 0x986440,4, 0x986460,17, 0x9864c0,6, 0x9864e0,2, 0x9864ec,3, 0x986500,8, 0x986524,4, 0x986600,12, 0x987000,1, 0x987080,17, 0x987100,37, 0x987200,1, 0x987210,11, 0x987240,1, 0x987280,1, 0x987288,4, 0x9872a0,4, 0x9872c0,1, 0x987300,2, 0x987400,15, 0x987440,4, 0x987460,17, 0x9874c0,6, 0x9874e0,2, 0x9874ec,3, 0x987500,8, 0x987524,4, 0x987600,12, 0x988000,1, 0x988080,17, 0x988100,37, 0x988200,1, 0x988210,11, 0x988240,1, 0x988280,1, 0x988288,4, 0x9882a0,4, 0x9882c0,1, 0x988300,2, 0x988400,15, 0x988440,4, 0x988460,17, 0x9884c0,6, 0x9884e0,2, 0x9884ec,3, 0x988500,8, 0x988524,4, 0x988600,12, 0x989000,1, 0x989080,17, 0x989100,37, 0x989200,1, 0x989210,11, 0x989240,1, 0x989280,1, 0x989288,4, 0x9892a0,4, 0x9892c0,1, 0x989300,2, 0x989400,15, 0x989440,4, 0x989460,17, 0x9894c0,6, 0x9894e0,2, 0x9894ec,3, 0x989500,8, 0x989524,4, 0x989600,12, 0x98a000,1, 0x98a080,17, 0x98a100,37, 0x98a200,1, 0x98a210,11, 0x98a240,1, 0x98a280,1, 0x98a288,4, 0x98a2a0,4, 0x98a2c0,1, 0x98a300,2, 0x98a400,15, 0x98a440,4, 0x98a460,17, 0x98a4c0,6, 0x98a4e0,2, 0x98a4ec,3, 0x98a500,8, 0x98a524,4, 0x98a600,12, 0x98b000,1, 0x98b080,17, 0x98b100,37, 0x98b200,1, 0x98b210,11, 0x98b240,1, 0x98b280,1, 0x98b288,4, 0x98b2a0,4, 0x98b2c0,1, 0x98b300,2, 0x98b400,15, 0x98b440,4, 0x98b460,17, 0x98b4c0,6, 0x98b4e0,2, 0x98b4ec,3, 0x98b500,8, 0x98b524,4, 0x98b600,12, 0x98c000,1, 0x98c080,17, 0x98c100,37, 0x98c200,1, 0x98c210,11, 0x98c240,1, 0x98c280,1, 0x98c288,4, 0x98c2a0,4, 0x98c2c0,1, 0x98c300,2, 0x98c400,15, 0x98c440,4, 0x98c460,17, 0x98c4c0,6, 0x98c4e0,2, 0x98c4ec,3, 0x98c500,8, 0x98c524,4, 0x98c600,12, 0x98d000,1, 0x98d080,17, 0x98d100,37, 0x98d200,1, 0x98d210,11, 0x98d240,1, 0x98d280,1, 0x98d288,4, 0x98d2a0,4, 0x98d2c0,1, 0x98d300,2, 0x98d400,15, 0x98d440,4, 0x98d460,17, 0x98d4c0,6, 0x98d4e0,2, 0x98d4ec,3, 0x98d500,8, 0x98d524,4, 0x98d600,12, 0x98e000,1, 0x98e080,17, 0x98e100,37, 0x98e200,1, 0x98e210,11, 0x98e240,1, 0x98e280,1, 0x98e288,4, 0x98e2a0,4, 0x98e2c0,1, 0x98e300,2, 0x98e400,15, 0x98e440,4, 0x98e460,17, 0x98e4c0,6, 0x98e4e0,2, 0x98e4ec,3, 0x98e500,8, 0x98e524,4, 0x98e600,12, 0x98f000,1, 0x98f080,17, 0x98f100,37, 0x98f200,1, 0x98f210,11, 0x98f240,1, 0x98f280,1, 0x98f288,4, 0x98f2a0,4, 0x98f2c0,1, 0x98f300,2, 0x98f400,15, 0x98f440,4, 0x98f460,17, 0x98f4c0,6, 0x98f4e0,2, 0x98f4ec,3, 0x98f500,8, 0x98f524,4, 0x98f600,12, 0x990004,1, 0x99001c,25, 0x990084,1, 0x9900bc,19, 0x990204,1, 0x99027c,62, 0x990380,29, 0x990400,4, 0x990480,29, 0x990504,1, 0x99053c,20, 0x990600,2, 0x990614,1, 0x99061c,3, 0x990634,1, 0x99063c,1, 0x990644,16, 0x990688,33, 0x990804,1, 0x99081c,25, 0x990884,1, 0x9908bc,19, 0x990a04,1, 0x990a7c,62, 0x990b80,29, 0x990c00,4, 0x990c80,29, 0x990d04,1, 0x990d3c,20, 0x990e00,2, 0x990e14,1, 0x990e1c,3, 0x990e34,1, 0x990e3c,1, 0x990e44,16, 0x990e88,33, 0x991004,1, 0x99101c,25, 0x991084,1, 0x9910bc,19, 0x991204,1, 0x99127c,62, 0x991380,29, 0x991400,4, 0x991480,29, 0x991504,1, 0x99153c,20, 0x991600,2, 0x991614,1, 0x99161c,3, 0x991634,1, 0x99163c,1, 0x991644,16, 0x991688,33, 0x991804,1, 0x99181c,25, 0x991884,1, 0x9918bc,19, 0x991a04,1, 0x991a7c,62, 0x991b80,29, 0x991c00,4, 0x991c80,29, 0x991d04,1, 0x991d3c,20, 0x991e00,2, 0x991e14,1, 0x991e1c,3, 0x991e34,1, 0x991e3c,1, 0x991e44,16, 0x991e88,33, 0x992004,1, 0x99201c,25, 0x992084,1, 0x9920bc,19, 0x992204,1, 0x99227c,62, 0x992380,29, 0x992400,4, 0x992480,29, 0x992504,1, 0x99253c,20, 0x992600,2, 0x992614,1, 0x99261c,3, 0x992634,1, 0x99263c,1, 0x992644,16, 0x992688,33, 0x992804,1, 0x99281c,25, 0x992884,1, 0x9928bc,19, 0x992a04,1, 0x992a7c,62, 0x992b80,29, 0x992c00,4, 0x992c80,29, 0x992d04,1, 0x992d3c,20, 0x992e00,2, 0x992e14,1, 0x992e1c,3, 0x992e34,1, 0x992e3c,1, 0x992e44,16, 0x992e88,33, 0x993004,1, 0x99301c,25, 0x993084,1, 0x9930bc,19, 0x993204,1, 0x99327c,62, 0x993380,29, 0x993400,4, 0x993480,29, 0x993504,1, 0x99353c,20, 0x993600,2, 0x993614,1, 0x99361c,3, 0x993634,1, 0x99363c,1, 0x993644,16, 0x993688,33, 0x993804,1, 0x99381c,25, 0x993884,1, 0x9938bc,19, 0x993a04,1, 0x993a7c,62, 0x993b80,29, 0x993c00,4, 0x993c80,29, 0x993d04,1, 0x993d3c,20, 0x993e00,2, 0x993e14,1, 0x993e1c,3, 0x993e34,1, 0x993e3c,1, 0x993e44,16, 0x993e88,33, 0x994000,160, 0x994284,1, 0x9942a0,8, 0x9942c4,1, 0x9942d4,3, 0x994300,21, 0x994380,21, 0x994400,21, 0x994480,21, 0x994500,4, 0x994580,21, 0x994600,4, 0x994680,21, 0x994700,19, 0x994780,19, 0x994800,4, 0x994880,19, 0x994900,12, 0x998000,3, 0x998010,3, 0x998020,3, 0x998030,3, 0x998040,3, 0x998050,3, 0x998060,3, 0x998070,3, 0x998080,3, 0x998090,3, 0x9980a0,3, 0x9980b0,3, 0x9980c0,3, 0x9980d0,3, 0x9980e0,3, 0x9980f0,3, 0x998100,3, 0x998110,3, 0x998120,18, 0x998180,289, 0x998800,78, 0x998a04,1, 0x998a20,24, 0x998a84,1, 0x998a94,3, 0x998b00,52, 0x998c00,3, 0x998c10,3, 0x998c20,3, 0x998c30,3, 0x998c40,3, 0x998c50,3, 0x998c60,3, 0x998c70,3, 0x998c80,3, 0x998c90,3, 0x998ca0,3, 0x998cb0,3, 0x998cc0,3, 0x998cd0,3, 0x998ce0,3, 0x998cf0,3, 0x998d00,3, 0x998d10,1, 0x99a000,1, 0x99a024,6, 0x99a040,1, 0x99a050,8, 0x99a200,2, 0x99a280,10, 0x99a2c0,10, 0x99a300,4, 0x99a340,10, 0x99a400,2, 0x99a800,1, 0x99a824,6, 0x99a840,1, 0x99a850,8, 0x99aa00,2, 0x99aa80,10, 0x99aac0,10, 0x99ab00,4, 0x99ab40,10, 0x99ac00,2, 0x99b000,42, 0x99b0c0,7, 0x99b0e0,6, 0x99b100,15, 0x99b200,108, 0x99b400,6, 0x99c000,1, 0x99c800,129, 0x99cc00,16, 0x99cc44,1, 0x99cc4c,2, 0x99cc58,2, 0x99d000,23, 0x99d080,23, 0x99d100,4, 0x99d180,23, 0x99d204,11, 0x99d404,1, 0x99d410,10, 0x99d440,8, 0x99e000,12, 0x99e084,1, 0x99e09c,12, 0x99e100,21, 0x99e180,21, 0x99e200,4, 0x99e280,21, 0x99e400,34, 0x99e500,34, 0x99e600,4, 0x99e700,34, 0x99e800,1, 0x99e820,8, 0x99f000,3, 0x99f200,36, 0x99f300,36, 0x99f400,4, 0x99f500,36, 0x99f600,7, 0x99f620,1, 0x99f800,1, 0x99f810,8, 0x99f840,3, 0x99f850,2, 0x99f880,9, 0x99f8c0,2, 0x99f904,1, 0x99f914,6, 0x99f940,20, 0x9a0000,3, 0x9a0080,10, 0x9a00c0,10, 0x9a0100,4, 0x9a0140,10, 0x9a0180,20, 0x9a01e0,11, 0x9a0210,3, 0x9a0220,7, 0x9a0240,1, 0x9a0400,1, 0x9a0408,2, 0x9a0424,3, 0x9a0434,4, 0x9a0448,7, 0x9a0468,9, 0x9a0810,26, 0x9a0880,17, 0x9a08d0,13, 0x9a0940,80, 0x9a0c00,14, 0x9a0c40,7, 0x9a0c60,7, 0x9a0c80,4, 0x9a0ca0,7, 0x9a0cc0,1, 0x9a0d04,3, 0x9a0d14,1, 0x9a0d1c,4, 0x9a0d30,8, 0x9a1000,27, 0x9a1080,4, 0x9a10c0,25, 0x9a1140,6, 0x9a1160,2, 0x9a116c,3, 0x9a1204,86, 0x9a1400,5, 0x9a1420,2, 0x9a1444,1, 0x9a1454,6, 0x9a1480,8, 0x9a14c0,3, 0x9a14d0,3, 0x9a14e0,7, 0x9a1500,1, 0x9a1508,8, 0x9a1540,8, 0x9a1600,36, 0x9a1700,2, 0x9c0000,4, 0x9c0080,1, 0x9c0088,18, 0x9c0100,12, 0x9c0140,8, 0xa00000,2, 0xa00084,1, 0xa000b0,20, 0xa00104,1, 0xa00118,10, 0xa00144,3, 0xa00164,1, 0xa00174,7, 0xa00200,9, 0xa00228,134, 0xa00484,21, 0xa00500,5, 0xa20000,42, 0xa20100,48, 0xa20400,6, 0xa20420,6, 0xa20440,6, 0xa20460,6, 0xa20480,1, 0xa204c0,1, 0xa204e0,14, 0xa20520,6, 0xa20540,6, 0xa20560,6, 0xa20580,1, 0xa205c0,1, 0xa205e0,14, 0xa20620,6, 0xa20640,6, 0xa20660,6, 0xa20680,1, 0xa206c0,1, 0xa206e0,8, 0xa20708,2, 0xa20718,2, 0xa20800,3, 0xa20810,10, 0xa20840,6, 0xa20860,5, 0xa20900,6, 0xa20920,6, 0xa20940,17, 0xa20a00,2, 0xa21000,1, 0xa21080,1, 0xa21088,4, 0xa210a4,6, 0xa210c4,5, 0xa21100,2, 0xa21144,1, 0xa21150,14, 0xa211a4,1, 0xa211b0,4, 0xa21404,1, 0xa21478,35, 0xa21524,8, 0xa21584,1, 0xa215a8,23, 0xa21800,7, 0xa21820,42, 0xa218e4,1, 0xa218f4,6, 0xa21914,3, 0xa21940,1, 0xa21950,4, 0xa21964,6, 0xa21980,3, 0xa219a4,4, 0xa219c0,6, 0xa219e0,6, 0xa21a00,2, 0xa21c00,1, 0xa21c0c,4, 0xa21c80,13, 0xa21cc0,13, 0xa21d00,1, 0xa21d40,13, 0xa21d80,5, 0xa21da0,4, 0xa22004,1, 0xa2200c,1, 0xa22024,1, 0xa22034,62, 0xa22130,23, 0xa22190,32, 0xa22800,3, 0xa22810,3, 0xa22820,3, 0xa22830,3, 0xa22840,3, 0xa22850,3, 0xa22860,3, 0xa22870,3, 0xa22880,3, 0xa22890,72, 0xa229c0,9, 0xa22a00,3, 0xa22a10,3, 0xa22a20,3, 0xa22a30,3, 0xa22a40,3, 0xa22a50,3, 0xa22a60,3, 0xa22a70,3, 0xa22a80,3, 0xa22a90,3, 0xa22aa0,30, 0xa22b24,1, 0xa22b2c,12, 0xa22b60,3, 0xa22b70,3, 0xa22b80,3, 0xa22b90,3, 0xa22ba0,3, 0xa22bb0,3, 0xa22bc0,3, 0xa22bd0,3, 0xa22be0,3, 0xa22bf0,3, 0xa22c00,3, 0xa22c10,3, 0xa22c20,3, 0xa23000,15, 0xa23044,3, 0xa23064,1, 0xa2306c,5, 0xa23084,1, 0xa2308c,2, 0xa230a0,2, 0xa230b4,1, 0xa230bc,3, 0xa230d4,1, 0xa230dc,1, 0xa23100,12, 0xa23144,6, 0xa23184,34, 0xa23280,12, 0xa232c4,6, 0xa23304,1, 0xa2330c,1, 0xa23314,1, 0xa2331c,1, 0xa23380,4, 0xa233c0,9, 0xa23400,4, 0xa23414,2, 0xa23424,1, 0xa2342c,1, 0xa23440,2, 0xa23450,8, 0xa23484,4, 0xa234a0,7, 0xa23500,8, 0xa2353c,9, 0xa2357c,10, 0xa235b4,1, 0xa235bc,31, 0xa23644,8, 0xa23674,1, 0xa2367c,1, 0xa23684,1, 0xa23690,36, 0xa23724,1, 0xa2372c,1, 0xa23734,1, 0xa2373c,1, 0xa23744,6, 0xa23760,4, 0xa23774,1, 0xa2377c,1, 0xa23784,1, 0xa23794,329, 0xa23d00,11, 0xa23d40,11, 0xa23d80,4, 0xa23da0,7, 0xa23dc0,7, 0xa23de0,7, 0xa24000,5, 0xa24020,5, 0xa24040,5, 0xa24060,5, 0xa24080,5, 0xa240a0,5, 0xa240c0,5, 0xa240e0,5, 0xa24100,5, 0xa24120,5, 0xa24140,5, 0xa24160,5, 0xa24180,5, 0xa241a0,5, 0xa241c0,5, 0xa241e0,5, 0xa24200,5, 0xa24220,5, 0xa24240,2, 0xa24400,12, 0xa24480,5, 0xa244a0,5, 0xa244c0,4, 0xa244e0,5, 0xa24500,2, 0xa24514,3, 0xa24524,1, 0xa24534,51, 0xa28000,134, 0xa28404,1, 0xa28420,8, 0xa28444,1, 0xa28460,8, 0xa28484,1, 0xa284a0,8, 0xa284c4,1, 0xa284e0,11, 0xa28600,3, 0xa28614,1, 0xa2861c,23, 0xa28804,1, 0xa28860,108, 0xa28a80,27, 0xa28b00,1, 0xa29000,2, 0xa29104,1, 0xa29110,31, 0xa29200,3, 0xa29300,4, 0xa29380,28, 0xa29404,1, 0xa29484,95, 0xa2a004,1, 0xa2a00c,5, 0xa2a024,1, 0xa2a02c,5, 0xa2a044,1, 0xa2a04c,5, 0xa2a064,1, 0xa2a06c,5, 0xa2a084,6, 0xa2a100,7, 0xa2a120,4, 0xa2a134,1, 0xa2a13c,1, 0xa2a144,1, 0xa2a14c,1, 0xa2a180,9, 0xa2a1c0,72, 0xa2a300,6, 0xa2a320,6, 0xa2a340,4, 0xa2a360,6, 0xa2a380,6, 0xa2a3a0,6, 0xa2a3c0,4, 0xa2a3e0,6, 0xa2a404,1, 0xa2a44c,80, 0xa2a800,14, 0xa2a844,1, 0xa2a84c,1, 0xa2a854,1, 0xa2a85c,1, 0xa2a864,3, 0xa2a884,4, 0xa2a8a4,4, 0xa2a8c0,8, 0xa2a904,1, 0xa2a918,16, 0xa2a960,6, 0xa2a980,4, 0xa2a9a0,6, 0xa2aa00,13, 0xa2aa40,4, 0xa2aa60,6, 0xa2aa80,16, 0xa2ac04,1, 0xa2acac,98, 0xa2ae80,2, 0xa2aec4,1, 0xa2aecc,15, 0xa2af44,1, 0xa2af4c,13, 0xa2b000,1, 0xa2b020,6, 0xa2b040,102, 0xa2b1e0,6, 0xa2b204,6, 0xa2b220,1, 0xa2b230,3, 0xa2b240,1, 0xa2b250,3, 0xa2b260,3, 0xa2b294,96, 0xa2b444,1, 0xa2b44c,17, 0xa2b4c0,9, 0xa2b604,1, 0xa2b674,38, 0xa2b800,1, 0xa2b808,2, 0xa2c000,18, 0xa2c054,4, 0xa2c070,1, 0xa2c080,1, 0xa2c090,1, 0xa2c0a0,1, 0xa2c0b0,1, 0xa2c0c0,7, 0xa2c100,5, 0xa2c118,19, 0xa30000,1, 0xa30800,2, 0xa30884,1, 0xa308a8,24, 0xa30a04,1, 0xa30a28,22, 0xa30a84,1, 0xa30a90,6, 0xa30b00,97, 0xa30c88,5, 0xa30e00,6, 0xa30e20,6, 0xa30e40,19, 0xa30e90,3, 0xa30ec0,4, 0xa30ee0,17, 0xa30f30,14, 0xa31000,6, 0xa31800,6, 0xa31820,6, 0xa31840,1, 0xa31860,6, 0xa31880,6, 0xa318a0,6, 0xa318c0,1, 0xa318e0,6, 0xa31900,6, 0xa31920,6, 0xa31940,1, 0xa31960,6, 0xa31980,6, 0xa319a0,6, 0xa319c0,1, 0xa319e0,6, 0xa31a00,6, 0xa31a20,6, 0xa31a40,1, 0xa31a60,6, 0xa31a80,6, 0xa31aa0,6, 0xa31ac0,1, 0xa31ae0,6, 0xa31b00,6, 0xa31b20,6, 0xa31b40,1, 0xa31b60,6, 0xa31b80,6, 0xa31ba0,6, 0xa31bc0,1, 0xa31be0,6, 0xa31c00,1, 0xa32000,30, 0xa40000,80, 0xa40150,2, 0xa40204,1, 0xa4020c,5, 0xa40224,1, 0xa40234,3, 0xa40244,15, 0xa40284,1, 0xa4028c,1, 0xa40294,1, 0xa4029c,5, 0xa40300,5, 0xa40324,1, 0xa4032c,1, 0xa40334,1, 0xa4033c,1, 0xa40344,1, 0xa4034c,4, 0xa40380,4, 0xa403a0,6, 0xa403c0,8, 0xa40400,1, 0xa40408,4, 0xa40440,6, 0xa40460,6, 0xa40480,2, 0xa40800,10, 0xa40834,259, 0xa41000,1, 0xa42000,2, 0xa42014,1, 0xa4201c,1, 0xa42104,1, 0xa42128,25, 0xa42200,6, 0xa42400,13, 0xa42440,13, 0xa42480,5, 0xa80000,4, 0xa88000,129, 0xa8820c,1, 0xa88220,2, 0xa88280,4, 0xa882bc,5, 0xa882fc,19, 0xa88360,7, 0xa88380,2, 0xa8838c,2, 0xa883a0,1, 0xa88404,1, 0xa88414,3, 0xa88424,3, 0xa88434,6, 0xa88480,3, 0xa88490,7, 0xa884c0,4, 0xa884e0,5, 0xa88500,1, 0xa88600,1, 0xa89000,257, 0xa89408,130, 0xa89620,1, 0xa8962c,1, 0xa89640,1, 0xa8964c,1, 0xa89800,3, 0xa89810,3, 0xa89820,3, 0xa89830,6, 0xa89a04,3, 0xa89a24,1, 0xa89a34,3, 0xa89a44,1, 0xa89a4c,5, 0xa89a64,1, 0xa89a6c,5, 0xa89a84,1, 0xa89a8c,5, 0xa89aa4,1, 0xa89aac,5, 0xa89ac4,1, 0xa89acc,5, 0xa89ae4,1, 0xa89aec,5, 0xa89b04,1, 0xa89b0c,5, 0xa89b24,1, 0xa89b2c,9, 0xa89c00,1, 0xa89c08,6, 0xa89c80,6, 0xa89cbc,7, 0xa89cfc,5, 0xa89d20,5, 0xa89d40,1, 0xa89e04,1, 0xa89e0c,26, 0xa89e80,6, 0xa89ea0,6, 0xa89ec0,13, 0xa89f00,4, 0xa8a004,1, 0xa8a014,3, 0xa8a024,5, 0xa8a040,8, 0xa8a400,130, 0xa8a800,1, 0xa8b000,2, 0xa8b020,1, 0xa8b02c,1, 0xa8b040,1, 0xa8b04c,1, 0xa8b060,1, 0xa8b06c,1, 0xa8b080,67, 0xa8b190,2, 0xa8c000,4, 0xa8c100,8, 0xa8c124,1, 0xa8c130,4, 0xa8c144,5, 0xa8c164,1, 0xa8c16c,3, 0xa8c17c,3, 0xa8c200,4, 0xa8c224,5, 0xa8c244,3, 0xa8c254,5, 0xa8d004,35, 0xa8d200,1, 0xa8d220,1, 0xa8d22c,1, 0xa8d240,1, 0xa8d24c,1, 0xa8d260,1, 0xa8d274,7, 0xa8d2a0,5, 0xa8d2c0,25, 0xa8d330,3, 0xa8d340,3, 0xa8d400,1, 0xa8d480,39, 0xa8d600,1, 0xa8d608,2, 0xa8d680,6, 0xa8d6a0,6, 0xa8d6c0,13, 0xa8d700,9, 0xa8d730,3, 0xa8d740,3, 0xa8d780,4, 0xa8d7a0,5, 0xa8d800,1, 0xa8d80c,1, 0xa8d818,1, 0xa8d824,1, 0xa8d830,1, 0xa8d83c,1, 0xa8d848,1, 0xa8d854,1, 0xa8d860,1, 0xa8d86c,1, 0xa8d878,1, 0xa8d884,1, 0xa8d890,1, 0xa8d89c,1, 0xa8d8a8,1, 0xa8d8b4,1, 0xa8d8c0,1, 0xa8d8cc,1, 0xa8d8d8,1, 0xa8d8e4,1, 0xa8d8f0,1, 0xa8d8fc,1, 0xa8d908,1, 0xa8d914,1, 0xa8d920,1, 0xa8d92c,1, 0xa8d938,1, 0xa8d944,1, 0xa8d950,1, 0xa8d95c,1, 0xa8d968,1, 0xa8d974,1, 0xa8da00,19, 0xa8dc00,3, 0xa8e004,37, 0xa8e100,1, 0xa8e108,4, 0xa8e180,14, 0xa8e1c0,14, 0xa8e200,1, 0xa90000,10, 0xa90044,1, 0xa90064,7, 0xa90084,1, 0xa9008c,3, 0xa900a4,18, 0xa91000,5, 0xa91020,5, 0xa91040,5, 0xa91060,5, 0xa91080,5, 0xa910a0,5, 0xa910c0,5, 0xa910e0,5, 0xa91100,5, 0xa91120,5, 0xa91140,5, 0xa91160,5, 0xa91180,5, 0xa911a0,5, 0xa911c0,5, 0xa911e0,5, 0xa91200,5, 0xa91220,5, 0xa91240,5, 0xa91260,5, 0xa91280,5, 0xa912a0,5, 0xa912c0,5, 0xa912e0,5, 0xa91300,5, 0xa91320,5, 0xa91340,5, 0xa91360,5, 0xa91380,5, 0xa913a0,5, 0xa913c0,5, 0xa913e0,5, 0xa91400,5, 0xa91420,5, 0xa91440,5, 0xa91460,5, 0xa91480,5, 0xa914a0,5, 0xa914c0,5, 0xa914e0,5, 0xa91500,5, 0xa91520,5, 0xa91540,5, 0xa91560,5, 0xa91580,5, 0xa915a0,5, 0xa915c0,5, 0xa915e0,5, 0xa91600,5, 0xa91620,5, 0xa91640,5, 0xa91660,5, 0xa91680,5, 0xa916a0,5, 0xa916c0,5, 0xa916e0,5, 0xa91700,5, 0xa91720,5, 0xa91740,5, 0xa91760,5, 0xa91780,5, 0xa917a0,5, 0xa917c0,5, 0xa917e0,5, 0xa91800,1, 0xa91808,160, 0xa91b00,4, 0xa91b3c,5, 0xa91b7c,1, 0xa92000,7, 0xa92204,1, 0xa92274,35, 0xa92304,1, 0xa92338,18, 0xa92384,1, 0xa9238c,17, 0xa92408,12, 0xa92440,8, 0xa92480,4, 0xa924a0,6, 0xa92500,1, 0xa92508,4, 0xa92580,13, 0xa925c0,13, 0xa92600,67, 0xa94000,60, 0xa94100,7, 0xa94120,1, 0xa94200,27, 0xa94280,4, 0xa942c0,25, 0xa94340,6, 0xa94360,2, 0xa9436c,3, 0xa94380,8, 0xa943a4,7, 0xa94400,2, 0xa94440,3, 0xa94450,6, 0xaa0000,116, 0xaa0200,2, 0xaa020c,2, 0xaa0220,1, 0xaa0230,3, 0xaa0240,2, 0xaa0400,27, 0xaa0480,4, 0xaa04c0,25, 0xaa0540,6, 0xaa0560,2, 0xaa056c,3, 0xaa0600,8, 0xaa0624,44, 0xaa0800,4, 0xaa0c00,204, 0xaa1000,2, 0xaa1014,1, 0xaa101c,1, 0xaa1100,2, 0xaa1184,1, 0xaa1194,30, 0xaa1300,44, mstflint-4.26.0/mstdump/mstdump_dbs/Cable.csv0000644000175000017500000000017514522641732021443 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,15, 0x000048,11, 0x00007c,33, 0x000380,2, 0x000390,2, 0x0003a0,10, 0x0003d0,5, 0x0003e8,4, mstflint-4.26.0/mstdump/mstdump_dbs/AmosGearBox.csv0000644000175000017500000012352214522641732022606 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000004,5, 0x000020,3, 0x000030,3, 0x000040,13, 0x000078,4, 0x00009c,25, 0x000104,5, 0x000120,3, 0x000130,3, 0x000140,13, 0x000178,4, 0x00019c,25, 0x000204,5, 0x000220,3, 0x000230,3, 0x000240,13, 0x000278,4, 0x00029c,25, 0x000304,5, 0x000320,3, 0x000330,3, 0x000340,13, 0x000378,4, 0x00039c,25, 0x000600,4, 0x000c00,24, 0x000c80,24, 0x000d00,24, 0x000d80,24, 0x000e00,4, 0x000e20,4, 0x000e40,4, 0x000e60,4, 0x000e80,39, 0x000f20,7, 0x000f40,7, 0x000f60,7, 0x001000,12, 0x001200,1, 0x001218,2, 0x00122c,1, 0x001280,1, 0x001298,2, 0x0012ac,1, 0x001300,1, 0x001318,2, 0x00132c,1, 0x001380,1, 0x001398,2, 0x0013ac,1, 0x001400,4, 0x001420,2, 0x00142c,1, 0x001480,4, 0x0014a0,2, 0x0014ac,1, 0x001500,4, 0x001520,2, 0x00152c,1, 0x001580,4, 0x0015a0,2, 0x0015ac,1, 0x001600,4, 0x001640,4, 0x001680,4, 0x0016c0,4, 0x001700,7, 0x001720,7, 0x001740,7, 0x001760,7, 0x001780,4, 0x00179c,11, 0x0017d0,2, 0x0017e0,2, 0x0017f0,2, 0x001900,44, 0x002000,7, 0x002020,4, 0x002040,4, 0x002060,7, 0x002080,7, 0x0020a0,4, 0x0020c0,4, 0x0020e0,7, 0x002100,7, 0x002120,4, 0x002140,4, 0x002160,7, 0x002180,7, 0x0021a0,4, 0x0021c0,4, 0x0021e0,7, 0x002200,32, 0x002b00,1, 0x002b20,1, 0x002b28,4, 0x002b40,1, 0x002b60,1, 0x002b68,4, 0x002b80,1, 0x002ba0,1, 0x002ba8,4, 0x002bc0,1, 0x002be0,1, 0x002be8,4, 0x002c00,7, 0x002c20,1, 0x002c54,18, 0x002ca0,1, 0x002cd4,18, 0x002d20,1, 0x002d54,18, 0x002da0,1, 0x002dd4,12, 0x002e08,6, 0x003100,7, 0x003120,7, 0x003140,7, 0x003160,7, 0x003180,3, 0x004004,5, 0x004020,3, 0x004030,3, 0x004040,13, 0x004078,4, 0x00409c,25, 0x004104,5, 0x004120,3, 0x004130,3, 0x004140,13, 0x004178,4, 0x00419c,25, 0x004204,5, 0x004220,3, 0x004230,3, 0x004240,13, 0x004278,4, 0x00429c,25, 0x004304,5, 0x004320,3, 0x004330,3, 0x004340,13, 0x004378,4, 0x00439c,25, 0x004600,4, 0x004c00,24, 0x004c80,24, 0x004d00,24, 0x004d80,24, 0x004e00,4, 0x004e20,4, 0x004e40,4, 0x004e60,4, 0x004e80,39, 0x004f20,7, 0x004f40,7, 0x004f60,7, 0x005000,12, 0x005200,1, 0x005218,2, 0x00522c,1, 0x005280,1, 0x005298,2, 0x0052ac,1, 0x005300,1, 0x005318,2, 0x00532c,1, 0x005380,1, 0x005398,2, 0x0053ac,1, 0x005400,4, 0x005420,2, 0x00542c,1, 0x005480,4, 0x0054a0,2, 0x0054ac,1, 0x005500,4, 0x005520,2, 0x00552c,1, 0x005580,4, 0x0055a0,2, 0x0055ac,1, 0x005600,4, 0x005640,4, 0x005680,4, 0x0056c0,4, 0x005700,7, 0x005720,7, 0x005740,7, 0x005760,7, 0x005780,4, 0x00579c,11, 0x0057d0,2, 0x0057e0,2, 0x0057f0,2, 0x005900,44, 0x006000,7, 0x006020,4, 0x006040,4, 0x006060,7, 0x006080,7, 0x0060a0,4, 0x0060c0,4, 0x0060e0,7, 0x006100,7, 0x006120,4, 0x006140,4, 0x006160,7, 0x006180,7, 0x0061a0,4, 0x0061c0,4, 0x0061e0,7, 0x006200,32, 0x006b00,1, 0x006b20,1, 0x006b28,4, 0x006b40,1, 0x006b60,1, 0x006b68,4, 0x006b80,1, 0x006ba0,1, 0x006ba8,4, 0x006bc0,1, 0x006be0,1, 0x006be8,4, 0x006c00,7, 0x006c20,1, 0x006c54,18, 0x006ca0,1, 0x006cd4,18, 0x006d20,1, 0x006d54,18, 0x006da0,1, 0x006dd4,12, 0x006e08,6, 0x007100,7, 0x007120,7, 0x007140,7, 0x007160,7, 0x007180,3, 0x008000,10, 0x008080,3, 0x0080c0,1, 0x008100,21, 0x008180,13, 0x0081c4,7, 0x0081e4,7, 0x008204,7, 0x008224,8, 0x009000,7, 0x009030,2, 0x009040,7, 0x009070,2, 0x009100,2, 0x009120,2, 0x009140,2, 0x009160,2, 0x009180,9, 0x009200,7, 0x009230,2, 0x009240,7, 0x009270,2, 0x009300,2, 0x009320,2, 0x009340,2, 0x009360,2, 0x009380,9, 0x009400,11, 0x009500,11, 0x00a000,3, 0x00a010,2, 0x00a01c,5, 0x00a040,8, 0x00a080,3, 0x00a090,2, 0x00a09c,5, 0x00a0c0,8, 0x00a100,3, 0x00a110,2, 0x00a11c,5, 0x00a140,8, 0x00a180,3, 0x00a190,2, 0x00a19c,5, 0x00a1c0,8, 0x00a200,7, 0x00a220,12, 0x00a280,7, 0x00a2a0,12, 0x00a300,3, 0x00a310,1, 0x00a400,3, 0x00a410,2, 0x00a41c,5, 0x00a440,8, 0x00a480,3, 0x00a490,2, 0x00a49c,5, 0x00a4c0,8, 0x00a500,3, 0x00a510,2, 0x00a51c,5, 0x00a540,8, 0x00a580,3, 0x00a590,2, 0x00a59c,5, 0x00a5c0,8, 0x00a600,7, 0x00a620,12, 0x00a680,7, 0x00a6a0,12, 0x00a700,3, 0x00a710,1, 0x00a840,14, 0x00a880,16, 0x00a900,5, 0x00a920,11, 0x00a950,9, 0x00a980,8, 0x00a9c0,6, 0x00aa00,8, 0x00aa40,6, 0x00aa80,8, 0x00aac0,6, 0x00ab00,8, 0x00ab40,6, 0x00ab80,8, 0x00abc0,6, 0x00ac00,8, 0x00ac40,6, 0x00ac80,8, 0x00acc0,6, 0x00ad00,8, 0x00ad40,6, 0x00ad80,3, 0x00c000,16, 0x00c080,11, 0x00c100,11, 0x00c204,1, 0x00c224,21, 0x00c280,16, 0x00c300,11, 0x00c340,11, 0x00c800,21, 0x00c860,5, 0x00c880,6, 0x00c8a0,5, 0x00c8c0,6, 0x00c900,21, 0x00c960,5, 0x00c980,6, 0x00c9a0,5, 0x00c9c0,6, 0x00ca00,21, 0x00ca60,5, 0x00ca80,6, 0x00caa0,5, 0x00cac0,6, 0x00cb00,21, 0x00cb60,5, 0x00cb80,6, 0x00cba0,5, 0x00cbc0,6, 0x00cc00,9, 0x00cc48,7, 0x00cc68,2, 0x00cc74,9, 0x00cc9c,2, 0x00cd00,14, 0x00cd40,14, 0x00cd80,28, 0x00ce00,19, 0x00ce50,3, 0x00ce60,25, 0x00cec8,1, 0x00ced0,2, 0x00cee0,7, 0x00cf00,1, 0x00cf08,2, 0x00cffc,20, 0x00d050,25, 0x00d100,19, 0x00d150,25, 0x00d200,19, 0x00d250,25, 0x00d300,19, 0x00d350,25, 0x00d400,19, 0x00d450,25, 0x00d500,19, 0x00d550,25, 0x00d600,19, 0x00d650,25, 0x00d700,19, 0x00d750,25, 0x00d800,19, 0x00d850,25, 0x00d904,1, 0x00d914,10, 0x00d948,11, 0x00d980,2, 0x00d9a0,6, 0x00d9c0,2, 0x00d9cc,2, 0x00e000,35, 0x00ea00,10, 0x00ea80,3, 0x00eb00,6, 0x00f000,1, 0x00f008,5, 0x00f038,1, 0x00f044,1, 0x00f050,2, 0x00f100,13, 0x00f140,11, 0x00f170,12, 0x00f1a4,1, 0x00f200,104, 0x00f400,104, 0x00f600,104, 0x00f800,104, 0x010000,13, 0x010040,2, 0x010054,4, 0x010080,27, 0x010100,12, 0x010140,14, 0x010180,28, 0x010200,6, 0x010240,6, 0x01025c,3, 0x010280,5, 0x0102a0,8, 0x010400,14, 0x010440,14, 0x010480,14, 0x0104c0,14, 0x010540,3, 0x010600,7, 0x010620,14, 0x010680,5, 0x0106a0,7, 0x010800,13, 0x010840,2, 0x010854,4, 0x010880,27, 0x010900,12, 0x010940,14, 0x010980,28, 0x010a00,6, 0x010a40,6, 0x010a5c,3, 0x010a80,5, 0x010aa0,8, 0x010c00,14, 0x010c40,14, 0x010c80,14, 0x010cc0,14, 0x010d40,3, 0x010e00,7, 0x010e20,14, 0x010e80,5, 0x010ea0,7, 0x011000,13, 0x011040,2, 0x011054,4, 0x011080,27, 0x011100,12, 0x011140,14, 0x011180,28, 0x011200,6, 0x011240,6, 0x01125c,3, 0x011280,5, 0x0112a0,8, 0x011400,14, 0x011440,14, 0x011480,14, 0x0114c0,14, 0x011540,3, 0x011600,7, 0x011620,14, 0x011680,5, 0x0116a0,7, 0x011800,13, 0x011840,2, 0x011854,4, 0x011880,27, 0x011900,12, 0x011940,14, 0x011980,28, 0x011a00,6, 0x011a40,6, 0x011a5c,3, 0x011a80,5, 0x011aa0,8, 0x011c00,14, 0x011c40,14, 0x011c80,14, 0x011cc0,14, 0x011d40,3, 0x011e00,7, 0x011e20,14, 0x011e80,5, 0x011ea0,7, 0x012000,8, 0x012040,8, 0x012080,1, 0x012098,6, 0x012100,10, 0x012140,3, 0x012150,2, 0x012180,2, 0x012200,6, 0x012220,18, 0x012280,4, 0x012300,8, 0x012400,2, 0x012480,2, 0x012800,28, 0x0129f0,4, 0x013000,40, 0x013100,64, 0x013800,56, 0x013be0,8, 0x014000,13, 0x014040,2, 0x014054,4, 0x014080,27, 0x014100,12, 0x014140,14, 0x014180,28, 0x014200,6, 0x014240,6, 0x01425c,3, 0x014280,5, 0x0142a0,8, 0x014400,14, 0x014440,14, 0x014480,14, 0x0144c0,14, 0x014540,3, 0x014600,7, 0x014620,14, 0x014680,5, 0x0146a0,7, 0x014800,13, 0x014840,2, 0x014854,4, 0x014880,27, 0x014900,12, 0x014940,14, 0x014980,28, 0x014a00,6, 0x014a40,6, 0x014a5c,3, 0x014a80,5, 0x014aa0,8, 0x014c00,14, 0x014c40,14, 0x014c80,14, 0x014cc0,14, 0x014d40,3, 0x014e00,7, 0x014e20,14, 0x014e80,5, 0x014ea0,7, 0x015000,13, 0x015040,2, 0x015054,4, 0x015080,27, 0x015100,12, 0x015140,14, 0x015180,28, 0x015200,6, 0x015240,6, 0x01525c,3, 0x015280,5, 0x0152a0,8, 0x015400,14, 0x015440,14, 0x015480,14, 0x0154c0,14, 0x015540,3, 0x015600,7, 0x015620,14, 0x015680,5, 0x0156a0,7, 0x015800,13, 0x015840,2, 0x015854,4, 0x015880,27, 0x015900,12, 0x015940,14, 0x015980,28, 0x015a00,6, 0x015a40,6, 0x015a5c,3, 0x015a80,5, 0x015aa0,8, 0x015c00,14, 0x015c40,14, 0x015c80,14, 0x015cc0,14, 0x015d40,3, 0x015e00,7, 0x015e20,14, 0x015e80,5, 0x015ea0,7, 0x016000,8, 0x016040,8, 0x016080,1, 0x016098,6, 0x016100,10, 0x016140,3, 0x016150,2, 0x016180,2, 0x016200,6, 0x016220,18, 0x016280,4, 0x016300,8, 0x016400,2, 0x016480,2, 0x016800,28, 0x0169f0,4, 0x017000,40, 0x017100,64, 0x017800,56, 0x017be0,8, 0x018000,2, 0x01800c,2, 0x018040,7, 0x018100,3, 0x018110,3, 0x018120,5, 0x018200,6, 0x018240,5, 0x018400,2, 0x01840c,2, 0x018440,7, 0x018500,3, 0x018510,3, 0x018520,5, 0x018600,6, 0x018640,5, 0x018800,2, 0x01880c,2, 0x018840,7, 0x018900,3, 0x018910,3, 0x018920,5, 0x018a00,6, 0x018a40,5, 0x018c00,2, 0x018c0c,2, 0x018c40,7, 0x018d00,3, 0x018d10,3, 0x018d20,5, 0x018e00,6, 0x018e40,5, 0x019000,2, 0x01900c,2, 0x019040,7, 0x019100,3, 0x019110,3, 0x019120,5, 0x019200,6, 0x019240,5, 0x019400,2, 0x01940c,2, 0x019440,7, 0x019500,3, 0x019510,3, 0x019520,5, 0x019600,6, 0x019640,5, 0x019800,2, 0x01980c,2, 0x019840,7, 0x019900,3, 0x019910,3, 0x019920,5, 0x019a00,6, 0x019a40,5, 0x019c00,2, 0x019c0c,2, 0x019c40,7, 0x019d00,3, 0x019d10,3, 0x019d20,5, 0x019e00,6, 0x019e40,5, 0x01a000,5, 0x01a040,9, 0x01a100,3, 0x01a200,1, 0x01a210,1, 0x01a220,1, 0x01a230,1, 0x01a240,1, 0x01a300,3, 0x01a314,1, 0x01a320,4, 0x01a400,5, 0x01a440,5, 0x01b000,80, 0x01b200,1, 0x020004,5, 0x020020,3, 0x020030,3, 0x020040,13, 0x020078,4, 0x02009c,25, 0x020104,5, 0x020120,3, 0x020130,3, 0x020140,13, 0x020178,4, 0x02019c,25, 0x020204,5, 0x020220,3, 0x020230,3, 0x020240,13, 0x020278,4, 0x02029c,25, 0x020304,5, 0x020320,3, 0x020330,3, 0x020340,13, 0x020378,4, 0x02039c,25, 0x020600,4, 0x020c00,24, 0x020c80,24, 0x020d00,24, 0x020d80,24, 0x020e00,4, 0x020e20,4, 0x020e40,4, 0x020e60,4, 0x020e80,39, 0x020f20,7, 0x020f40,7, 0x020f60,7, 0x021000,12, 0x021200,1, 0x021218,2, 0x02122c,1, 0x021280,1, 0x021298,2, 0x0212ac,1, 0x021300,1, 0x021318,2, 0x02132c,1, 0x021380,1, 0x021398,2, 0x0213ac,1, 0x021400,4, 0x021420,2, 0x02142c,1, 0x021480,4, 0x0214a0,2, 0x0214ac,1, 0x021500,4, 0x021520,2, 0x02152c,1, 0x021580,4, 0x0215a0,2, 0x0215ac,1, 0x021600,4, 0x021640,4, 0x021680,4, 0x0216c0,4, 0x021700,7, 0x021720,7, 0x021740,7, 0x021760,7, 0x021780,4, 0x02179c,11, 0x0217d0,2, 0x0217e0,2, 0x0217f0,2, 0x021900,44, 0x022000,7, 0x022020,4, 0x022040,4, 0x022060,7, 0x022080,7, 0x0220a0,4, 0x0220c0,4, 0x0220e0,7, 0x022100,7, 0x022120,4, 0x022140,4, 0x022160,7, 0x022180,7, 0x0221a0,4, 0x0221c0,4, 0x0221e0,7, 0x022200,32, 0x022b00,1, 0x022b20,1, 0x022b28,4, 0x022b40,1, 0x022b60,1, 0x022b68,4, 0x022b80,1, 0x022ba0,1, 0x022ba8,4, 0x022bc0,1, 0x022be0,1, 0x022be8,4, 0x022c00,7, 0x022c20,1, 0x022c54,18, 0x022ca0,1, 0x022cd4,18, 0x022d20,1, 0x022d54,18, 0x022da0,1, 0x022dd4,12, 0x022e08,6, 0x023100,7, 0x023120,7, 0x023140,7, 0x023160,7, 0x023180,3, 0x024004,5, 0x024020,3, 0x024030,3, 0x024040,13, 0x024078,4, 0x02409c,25, 0x024104,5, 0x024120,3, 0x024130,3, 0x024140,13, 0x024178,4, 0x02419c,25, 0x024204,5, 0x024220,3, 0x024230,3, 0x024240,13, 0x024278,4, 0x02429c,25, 0x024304,5, 0x024320,3, 0x024330,3, 0x024340,13, 0x024378,4, 0x02439c,25, 0x024600,4, 0x024c00,24, 0x024c80,24, 0x024d00,24, 0x024d80,24, 0x024e00,4, 0x024e20,4, 0x024e40,4, 0x024e60,4, 0x024e80,39, 0x024f20,7, 0x024f40,7, 0x024f60,7, 0x025000,12, 0x025200,1, 0x025218,2, 0x02522c,1, 0x025280,1, 0x025298,2, 0x0252ac,1, 0x025300,1, 0x025318,2, 0x02532c,1, 0x025380,1, 0x025398,2, 0x0253ac,1, 0x025400,4, 0x025420,2, 0x02542c,1, 0x025480,4, 0x0254a0,2, 0x0254ac,1, 0x025500,4, 0x025520,2, 0x02552c,1, 0x025580,4, 0x0255a0,2, 0x0255ac,1, 0x025600,4, 0x025640,4, 0x025680,4, 0x0256c0,4, 0x025700,7, 0x025720,7, 0x025740,7, 0x025760,7, 0x025780,4, 0x02579c,11, 0x0257d0,2, 0x0257e0,2, 0x0257f0,2, 0x025900,44, 0x026000,7, 0x026020,4, 0x026040,4, 0x026060,7, 0x026080,7, 0x0260a0,4, 0x0260c0,4, 0x0260e0,7, 0x026100,7, 0x026120,4, 0x026140,4, 0x026160,7, 0x026180,7, 0x0261a0,4, 0x0261c0,4, 0x0261e0,7, 0x026200,32, 0x026b00,1, 0x026b20,1, 0x026b28,4, 0x026b40,1, 0x026b60,1, 0x026b68,4, 0x026b80,1, 0x026ba0,1, 0x026ba8,4, 0x026bc0,1, 0x026be0,1, 0x026be8,4, 0x026c00,7, 0x026c20,1, 0x026c54,18, 0x026ca0,1, 0x026cd4,18, 0x026d20,1, 0x026d54,18, 0x026da0,1, 0x026dd4,12, 0x026e08,6, 0x027100,7, 0x027120,7, 0x027140,7, 0x027160,7, 0x027180,3, 0x028000,10, 0x028080,3, 0x0280c0,1, 0x028100,21, 0x028180,13, 0x0281c4,7, 0x0281e4,7, 0x028204,7, 0x028224,8, 0x029000,7, 0x029030,2, 0x029040,7, 0x029070,2, 0x029100,2, 0x029120,2, 0x029140,2, 0x029160,2, 0x029180,9, 0x029200,7, 0x029230,2, 0x029240,7, 0x029270,2, 0x029300,2, 0x029320,2, 0x029340,2, 0x029360,2, 0x029380,9, 0x029400,11, 0x029500,11, 0x02a000,3, 0x02a010,2, 0x02a01c,5, 0x02a040,8, 0x02a080,3, 0x02a090,2, 0x02a09c,5, 0x02a0c0,8, 0x02a100,3, 0x02a110,2, 0x02a11c,5, 0x02a140,8, 0x02a180,3, 0x02a190,2, 0x02a19c,5, 0x02a1c0,8, 0x02a200,7, 0x02a220,12, 0x02a280,7, 0x02a2a0,12, 0x02a300,3, 0x02a310,1, 0x02a400,3, 0x02a410,2, 0x02a41c,5, 0x02a440,8, 0x02a480,3, 0x02a490,2, 0x02a49c,5, 0x02a4c0,8, 0x02a500,3, 0x02a510,2, 0x02a51c,5, 0x02a540,8, 0x02a580,3, 0x02a590,2, 0x02a59c,5, 0x02a5c0,8, 0x02a600,7, 0x02a620,12, 0x02a680,7, 0x02a6a0,12, 0x02a700,3, 0x02a710,1, 0x02a840,14, 0x02a880,16, 0x02a900,5, 0x02a920,11, 0x02a950,9, 0x02a980,8, 0x02a9c0,6, 0x02aa00,8, 0x02aa40,6, 0x02aa80,8, 0x02aac0,6, 0x02ab00,8, 0x02ab40,6, 0x02ab80,8, 0x02abc0,6, 0x02ac00,8, 0x02ac40,6, 0x02ac80,8, 0x02acc0,6, 0x02ad00,8, 0x02ad40,6, 0x02ad80,3, 0x02c000,16, 0x02c080,11, 0x02c100,11, 0x02c204,1, 0x02c224,21, 0x02c280,16, 0x02c300,11, 0x02c340,11, 0x02c800,21, 0x02c860,5, 0x02c880,6, 0x02c8a0,5, 0x02c8c0,6, 0x02c900,21, 0x02c960,5, 0x02c980,6, 0x02c9a0,5, 0x02c9c0,6, 0x02ca00,21, 0x02ca60,5, 0x02ca80,6, 0x02caa0,5, 0x02cac0,6, 0x02cb00,21, 0x02cb60,5, 0x02cb80,6, 0x02cba0,5, 0x02cbc0,6, 0x02cc00,9, 0x02cc48,7, 0x02cc68,2, 0x02cc74,9, 0x02cc9c,2, 0x02cd00,14, 0x02cd40,14, 0x02cd80,28, 0x02ce00,19, 0x02ce50,3, 0x02ce60,25, 0x02cec8,1, 0x02ced0,2, 0x02cee0,7, 0x02cf00,1, 0x02cf08,2, 0x02cffc,20, 0x02d050,25, 0x02d100,19, 0x02d150,25, 0x02d200,19, 0x02d250,25, 0x02d300,19, 0x02d350,25, 0x02d400,19, 0x02d450,25, 0x02d500,19, 0x02d550,25, 0x02d600,19, 0x02d650,25, 0x02d700,19, 0x02d750,25, 0x02d800,19, 0x02d850,25, 0x02d904,1, 0x02d914,10, 0x02d948,11, 0x02d980,2, 0x02d9a0,6, 0x02d9c0,2, 0x02d9cc,2, 0x02e000,35, 0x02ea00,10, 0x02ea80,3, 0x02eb00,6, 0x02f000,1, 0x02f008,5, 0x02f038,1, 0x02f044,1, 0x02f050,2, 0x02f100,13, 0x02f140,11, 0x02f170,12, 0x02f1a4,1, 0x02f200,104, 0x02f400,104, 0x02f600,104, 0x02f800,104, 0x030000,13, 0x030040,2, 0x030054,4, 0x030080,27, 0x030100,12, 0x030140,14, 0x030180,28, 0x030200,6, 0x030240,6, 0x03025c,3, 0x030280,5, 0x0302a0,8, 0x030400,14, 0x030440,14, 0x030480,14, 0x0304c0,14, 0x030540,3, 0x030600,7, 0x030620,14, 0x030680,5, 0x0306a0,7, 0x030800,13, 0x030840,2, 0x030854,4, 0x030880,27, 0x030900,12, 0x030940,14, 0x030980,28, 0x030a00,6, 0x030a40,6, 0x030a5c,3, 0x030a80,5, 0x030aa0,8, 0x030c00,14, 0x030c40,14, 0x030c80,14, 0x030cc0,14, 0x030d40,3, 0x030e00,7, 0x030e20,14, 0x030e80,5, 0x030ea0,7, 0x031000,13, 0x031040,2, 0x031054,4, 0x031080,27, 0x031100,12, 0x031140,14, 0x031180,28, 0x031200,6, 0x031240,6, 0x03125c,3, 0x031280,5, 0x0312a0,8, 0x031400,14, 0x031440,14, 0x031480,14, 0x0314c0,14, 0x031540,3, 0x031600,7, 0x031620,14, 0x031680,5, 0x0316a0,7, 0x031800,13, 0x031840,2, 0x031854,4, 0x031880,27, 0x031900,12, 0x031940,14, 0x031980,28, 0x031a00,6, 0x031a40,6, 0x031a5c,3, 0x031a80,5, 0x031aa0,8, 0x031c00,14, 0x031c40,14, 0x031c80,14, 0x031cc0,14, 0x031d40,3, 0x031e00,7, 0x031e20,14, 0x031e80,5, 0x031ea0,7, 0x032000,8, 0x032040,8, 0x032080,1, 0x032098,6, 0x032100,10, 0x032140,3, 0x032150,2, 0x032180,2, 0x032200,6, 0x032220,18, 0x032280,4, 0x032300,8, 0x032400,2, 0x032480,2, 0x032800,28, 0x0329f0,4, 0x033000,40, 0x033100,64, 0x033800,56, 0x033be0,8, 0x034000,13, 0x034040,2, 0x034054,4, 0x034080,27, 0x034100,12, 0x034140,14, 0x034180,28, 0x034200,6, 0x034240,6, 0x03425c,3, 0x034280,5, 0x0342a0,8, 0x034400,14, 0x034440,14, 0x034480,14, 0x0344c0,14, 0x034540,3, 0x034600,7, 0x034620,14, 0x034680,5, 0x0346a0,7, 0x034800,13, 0x034840,2, 0x034854,4, 0x034880,27, 0x034900,12, 0x034940,14, 0x034980,28, 0x034a00,6, 0x034a40,6, 0x034a5c,3, 0x034a80,5, 0x034aa0,8, 0x034c00,14, 0x034c40,14, 0x034c80,14, 0x034cc0,14, 0x034d40,3, 0x034e00,7, 0x034e20,14, 0x034e80,5, 0x034ea0,7, 0x035000,13, 0x035040,2, 0x035054,4, 0x035080,27, 0x035100,12, 0x035140,14, 0x035180,28, 0x035200,6, 0x035240,6, 0x03525c,3, 0x035280,5, 0x0352a0,8, 0x035400,14, 0x035440,14, 0x035480,14, 0x0354c0,14, 0x035540,3, 0x035600,7, 0x035620,14, 0x035680,5, 0x0356a0,7, 0x035800,13, 0x035840,2, 0x035854,4, 0x035880,27, 0x035900,12, 0x035940,14, 0x035980,28, 0x035a00,6, 0x035a40,6, 0x035a5c,3, 0x035a80,5, 0x035aa0,8, 0x035c00,14, 0x035c40,14, 0x035c80,14, 0x035cc0,14, 0x035d40,3, 0x035e00,7, 0x035e20,14, 0x035e80,5, 0x035ea0,7, 0x036000,8, 0x036040,8, 0x036080,1, 0x036098,6, 0x036100,10, 0x036140,3, 0x036150,2, 0x036180,2, 0x036200,6, 0x036220,18, 0x036280,4, 0x036300,8, 0x036400,2, 0x036480,2, 0x036800,28, 0x0369f0,4, 0x037000,40, 0x037100,64, 0x037800,56, 0x037be0,8, 0x038000,2, 0x03800c,2, 0x038040,7, 0x038100,3, 0x038110,3, 0x038120,5, 0x038200,6, 0x038240,5, 0x038400,2, 0x03840c,2, 0x038440,7, 0x038500,3, 0x038510,3, 0x038520,5, 0x038600,6, 0x038640,5, 0x038800,2, 0x03880c,2, 0x038840,7, 0x038900,3, 0x038910,3, 0x038920,5, 0x038a00,6, 0x038a40,5, 0x038c00,2, 0x038c0c,2, 0x038c40,7, 0x038d00,3, 0x038d10,3, 0x038d20,5, 0x038e00,6, 0x038e40,5, 0x039000,2, 0x03900c,2, 0x039040,7, 0x039100,3, 0x039110,3, 0x039120,5, 0x039200,6, 0x039240,5, 0x039400,2, 0x03940c,2, 0x039440,7, 0x039500,3, 0x039510,3, 0x039520,5, 0x039600,6, 0x039640,5, 0x039800,2, 0x03980c,2, 0x039840,7, 0x039900,3, 0x039910,3, 0x039920,5, 0x039a00,6, 0x039a40,5, 0x039c00,2, 0x039c0c,2, 0x039c40,7, 0x039d00,3, 0x039d10,3, 0x039d20,5, 0x039e00,6, 0x039e40,5, 0x03a000,5, 0x03a040,9, 0x03a100,3, 0x03a200,1, 0x03a210,1, 0x03a220,1, 0x03a230,1, 0x03a240,1, 0x03a300,3, 0x03a314,1, 0x03a320,4, 0x03a400,5, 0x03a440,5, 0x03b000,80, 0x03b200,1, 0x040004,5, 0x040020,3, 0x040030,3, 0x040040,13, 0x040078,4, 0x04009c,25, 0x040104,5, 0x040120,3, 0x040130,3, 0x040140,13, 0x040178,4, 0x04019c,25, 0x040204,5, 0x040220,3, 0x040230,3, 0x040240,13, 0x040278,4, 0x04029c,25, 0x040304,5, 0x040320,3, 0x040330,3, 0x040340,13, 0x040378,4, 0x04039c,25, 0x040600,4, 0x040c00,24, 0x040c80,24, 0x040d00,24, 0x040d80,24, 0x040e00,4, 0x040e20,4, 0x040e40,4, 0x040e60,4, 0x040e80,39, 0x040f20,7, 0x040f40,7, 0x040f60,7, 0x041000,12, 0x041200,1, 0x041218,2, 0x04122c,1, 0x041280,1, 0x041298,2, 0x0412ac,1, 0x041300,1, 0x041318,2, 0x04132c,1, 0x041380,1, 0x041398,2, 0x0413ac,1, 0x041400,4, 0x041420,2, 0x04142c,1, 0x041480,4, 0x0414a0,2, 0x0414ac,1, 0x041500,4, 0x041520,2, 0x04152c,1, 0x041580,4, 0x0415a0,2, 0x0415ac,1, 0x041600,4, 0x041640,4, 0x041680,4, 0x0416c0,4, 0x041700,7, 0x041720,7, 0x041740,7, 0x041760,7, 0x041780,4, 0x04179c,11, 0x0417d0,2, 0x0417e0,2, 0x0417f0,2, 0x041900,44, 0x042000,7, 0x042020,4, 0x042040,4, 0x042060,7, 0x042080,7, 0x0420a0,4, 0x0420c0,4, 0x0420e0,7, 0x042100,7, 0x042120,4, 0x042140,4, 0x042160,7, 0x042180,7, 0x0421a0,4, 0x0421c0,4, 0x0421e0,7, 0x042200,32, 0x042b00,1, 0x042b20,1, 0x042b28,4, 0x042b40,1, 0x042b60,1, 0x042b68,4, 0x042b80,1, 0x042ba0,1, 0x042ba8,4, 0x042bc0,1, 0x042be0,1, 0x042be8,4, 0x042c00,7, 0x042c20,1, 0x042c54,18, 0x042ca0,1, 0x042cd4,18, 0x042d20,1, 0x042d54,18, 0x042da0,1, 0x042dd4,12, 0x042e08,6, 0x043100,7, 0x043120,7, 0x043140,7, 0x043160,7, 0x043180,3, 0x044004,5, 0x044020,3, 0x044030,3, 0x044040,13, 0x044078,4, 0x04409c,25, 0x044104,5, 0x044120,3, 0x044130,3, 0x044140,13, 0x044178,4, 0x04419c,25, 0x044204,5, 0x044220,3, 0x044230,3, 0x044240,13, 0x044278,4, 0x04429c,25, 0x044304,5, 0x044320,3, 0x044330,3, 0x044340,13, 0x044378,4, 0x04439c,25, 0x044600,4, 0x044c00,24, 0x044c80,24, 0x044d00,24, 0x044d80,24, 0x044e00,4, 0x044e20,4, 0x044e40,4, 0x044e60,4, 0x044e80,39, 0x044f20,7, 0x044f40,7, 0x044f60,7, 0x045000,12, 0x045200,1, 0x045218,2, 0x04522c,1, 0x045280,1, 0x045298,2, 0x0452ac,1, 0x045300,1, 0x045318,2, 0x04532c,1, 0x045380,1, 0x045398,2, 0x0453ac,1, 0x045400,4, 0x045420,2, 0x04542c,1, 0x045480,4, 0x0454a0,2, 0x0454ac,1, 0x045500,4, 0x045520,2, 0x04552c,1, 0x045580,4, 0x0455a0,2, 0x0455ac,1, 0x045600,4, 0x045640,4, 0x045680,4, 0x0456c0,4, 0x045700,7, 0x045720,7, 0x045740,7, 0x045760,7, 0x045780,4, 0x04579c,11, 0x0457d0,2, 0x0457e0,2, 0x0457f0,2, 0x045900,44, 0x046000,7, 0x046020,4, 0x046040,4, 0x046060,7, 0x046080,7, 0x0460a0,4, 0x0460c0,4, 0x0460e0,7, 0x046100,7, 0x046120,4, 0x046140,4, 0x046160,7, 0x046180,7, 0x0461a0,4, 0x0461c0,4, 0x0461e0,7, 0x046200,32, 0x046b00,1, 0x046b20,1, 0x046b28,4, 0x046b40,1, 0x046b60,1, 0x046b68,4, 0x046b80,1, 0x046ba0,1, 0x046ba8,4, 0x046bc0,1, 0x046be0,1, 0x046be8,4, 0x046c00,7, 0x046c20,1, 0x046c54,18, 0x046ca0,1, 0x046cd4,18, 0x046d20,1, 0x046d54,18, 0x046da0,1, 0x046dd4,12, 0x046e08,6, 0x047100,7, 0x047120,7, 0x047140,7, 0x047160,7, 0x047180,3, 0x048000,10, 0x048080,3, 0x0480c0,1, 0x048100,21, 0x048180,13, 0x0481c4,7, 0x0481e4,7, 0x048204,7, 0x048224,8, 0x049000,7, 0x049030,2, 0x049040,7, 0x049070,2, 0x049100,2, 0x049120,2, 0x049140,2, 0x049160,2, 0x049180,9, 0x049200,7, 0x049230,2, 0x049240,7, 0x049270,2, 0x049300,2, 0x049320,2, 0x049340,2, 0x049360,2, 0x049380,9, 0x049400,11, 0x049500,11, 0x04a000,3, 0x04a010,2, 0x04a01c,5, 0x04a040,8, 0x04a080,3, 0x04a090,2, 0x04a09c,5, 0x04a0c0,8, 0x04a100,3, 0x04a110,2, 0x04a11c,5, 0x04a140,8, 0x04a180,3, 0x04a190,2, 0x04a19c,5, 0x04a1c0,8, 0x04a200,7, 0x04a220,12, 0x04a280,7, 0x04a2a0,12, 0x04a300,3, 0x04a310,1, 0x04a400,3, 0x04a410,2, 0x04a41c,5, 0x04a440,8, 0x04a480,3, 0x04a490,2, 0x04a49c,5, 0x04a4c0,8, 0x04a500,3, 0x04a510,2, 0x04a51c,5, 0x04a540,8, 0x04a580,3, 0x04a590,2, 0x04a59c,5, 0x04a5c0,8, 0x04a600,7, 0x04a620,12, 0x04a680,7, 0x04a6a0,12, 0x04a700,3, 0x04a710,1, 0x04a840,14, 0x04a880,16, 0x04a900,5, 0x04a920,11, 0x04a950,9, 0x04a980,8, 0x04a9c0,6, 0x04aa00,8, 0x04aa40,6, 0x04aa80,8, 0x04aac0,6, 0x04ab00,8, 0x04ab40,6, 0x04ab80,8, 0x04abc0,6, 0x04ac00,8, 0x04ac40,6, 0x04ac80,8, 0x04acc0,6, 0x04ad00,8, 0x04ad40,6, 0x04ad80,3, 0x04c000,16, 0x04c080,11, 0x04c100,11, 0x04c204,1, 0x04c224,21, 0x04c280,16, 0x04c300,11, 0x04c340,11, 0x04c800,21, 0x04c860,5, 0x04c880,6, 0x04c8a0,5, 0x04c8c0,6, 0x04c900,21, 0x04c960,5, 0x04c980,6, 0x04c9a0,5, 0x04c9c0,6, 0x04ca00,21, 0x04ca60,5, 0x04ca80,6, 0x04caa0,5, 0x04cac0,6, 0x04cb00,21, 0x04cb60,5, 0x04cb80,6, 0x04cba0,5, 0x04cbc0,6, 0x04cc00,9, 0x04cc48,7, 0x04cc68,2, 0x04cc74,9, 0x04cc9c,2, 0x04cd00,14, 0x04cd40,14, 0x04cd80,28, 0x04ce00,19, 0x04ce50,3, 0x04ce60,25, 0x04cec8,1, 0x04ced0,2, 0x04cee0,7, 0x04cf00,1, 0x04cf08,2, 0x04cffc,20, 0x04d050,25, 0x04d100,19, 0x04d150,25, 0x04d200,19, 0x04d250,25, 0x04d300,19, 0x04d350,25, 0x04d400,19, 0x04d450,25, 0x04d500,19, 0x04d550,25, 0x04d600,19, 0x04d650,25, 0x04d700,19, 0x04d750,25, 0x04d800,19, 0x04d850,25, 0x04d904,1, 0x04d914,10, 0x04d948,11, 0x04d980,2, 0x04d9a0,6, 0x04d9c0,2, 0x04d9cc,2, 0x04e000,35, 0x04ea00,10, 0x04ea80,3, 0x04eb00,6, 0x04f000,1, 0x04f008,5, 0x04f038,1, 0x04f044,1, 0x04f050,2, 0x04f100,13, 0x04f140,11, 0x04f170,12, 0x04f1a4,1, 0x04f200,104, 0x04f400,104, 0x04f600,104, 0x04f800,104, 0x050000,13, 0x050040,2, 0x050054,4, 0x050080,27, 0x050100,12, 0x050140,14, 0x050180,28, 0x050200,6, 0x050240,6, 0x05025c,3, 0x050280,5, 0x0502a0,8, 0x050400,14, 0x050440,14, 0x050480,14, 0x0504c0,14, 0x050540,3, 0x050600,7, 0x050620,14, 0x050680,5, 0x0506a0,7, 0x050800,13, 0x050840,2, 0x050854,4, 0x050880,27, 0x050900,12, 0x050940,14, 0x050980,28, 0x050a00,6, 0x050a40,6, 0x050a5c,3, 0x050a80,5, 0x050aa0,8, 0x050c00,14, 0x050c40,14, 0x050c80,14, 0x050cc0,14, 0x050d40,3, 0x050e00,7, 0x050e20,14, 0x050e80,5, 0x050ea0,7, 0x051000,13, 0x051040,2, 0x051054,4, 0x051080,27, 0x051100,12, 0x051140,14, 0x051180,28, 0x051200,6, 0x051240,6, 0x05125c,3, 0x051280,5, 0x0512a0,8, 0x051400,14, 0x051440,14, 0x051480,14, 0x0514c0,14, 0x051540,3, 0x051600,7, 0x051620,14, 0x051680,5, 0x0516a0,7, 0x051800,13, 0x051840,2, 0x051854,4, 0x051880,27, 0x051900,12, 0x051940,14, 0x051980,28, 0x051a00,6, 0x051a40,6, 0x051a5c,3, 0x051a80,5, 0x051aa0,8, 0x051c00,14, 0x051c40,14, 0x051c80,14, 0x051cc0,14, 0x051d40,3, 0x051e00,7, 0x051e20,14, 0x051e80,5, 0x051ea0,7, 0x052000,8, 0x052040,8, 0x052080,1, 0x052098,6, 0x052100,10, 0x052140,3, 0x052150,2, 0x052180,2, 0x052200,6, 0x052220,18, 0x052280,4, 0x052300,8, 0x052400,2, 0x052480,2, 0x052800,28, 0x0529f0,4, 0x053000,40, 0x053100,64, 0x053800,56, 0x053be0,8, 0x054000,13, 0x054040,2, 0x054054,4, 0x054080,27, 0x054100,12, 0x054140,14, 0x054180,28, 0x054200,6, 0x054240,6, 0x05425c,3, 0x054280,5, 0x0542a0,8, 0x054400,14, 0x054440,14, 0x054480,14, 0x0544c0,14, 0x054540,3, 0x054600,7, 0x054620,14, 0x054680,5, 0x0546a0,7, 0x054800,13, 0x054840,2, 0x054854,4, 0x054880,27, 0x054900,12, 0x054940,14, 0x054980,28, 0x054a00,6, 0x054a40,6, 0x054a5c,3, 0x054a80,5, 0x054aa0,8, 0x054c00,14, 0x054c40,14, 0x054c80,14, 0x054cc0,14, 0x054d40,3, 0x054e00,7, 0x054e20,14, 0x054e80,5, 0x054ea0,7, 0x055000,13, 0x055040,2, 0x055054,4, 0x055080,27, 0x055100,12, 0x055140,14, 0x055180,28, 0x055200,6, 0x055240,6, 0x05525c,3, 0x055280,5, 0x0552a0,8, 0x055400,14, 0x055440,14, 0x055480,14, 0x0554c0,14, 0x055540,3, 0x055600,7, 0x055620,14, 0x055680,5, 0x0556a0,7, 0x055800,13, 0x055840,2, 0x055854,4, 0x055880,27, 0x055900,12, 0x055940,14, 0x055980,28, 0x055a00,6, 0x055a40,6, 0x055a5c,3, 0x055a80,5, 0x055aa0,8, 0x055c00,14, 0x055c40,14, 0x055c80,14, 0x055cc0,14, 0x055d40,3, 0x055e00,7, 0x055e20,14, 0x055e80,5, 0x055ea0,7, 0x056000,8, 0x056040,8, 0x056080,1, 0x056098,6, 0x056100,10, 0x056140,3, 0x056150,2, 0x056180,2, 0x056200,6, 0x056220,18, 0x056280,4, 0x056300,8, 0x056400,2, 0x056480,2, 0x056800,28, 0x0569f0,4, 0x057000,40, 0x057100,64, 0x057800,56, 0x057be0,8, 0x058000,2, 0x05800c,2, 0x058040,7, 0x058100,3, 0x058110,3, 0x058120,5, 0x058200,6, 0x058240,5, 0x058400,2, 0x05840c,2, 0x058440,7, 0x058500,3, 0x058510,3, 0x058520,5, 0x058600,6, 0x058640,5, 0x058800,2, 0x05880c,2, 0x058840,7, 0x058900,3, 0x058910,3, 0x058920,5, 0x058a00,6, 0x058a40,5, 0x058c00,2, 0x058c0c,2, 0x058c40,7, 0x058d00,3, 0x058d10,3, 0x058d20,5, 0x058e00,6, 0x058e40,5, 0x059000,2, 0x05900c,2, 0x059040,7, 0x059100,3, 0x059110,3, 0x059120,5, 0x059200,6, 0x059240,5, 0x059400,2, 0x05940c,2, 0x059440,7, 0x059500,3, 0x059510,3, 0x059520,5, 0x059600,6, 0x059640,5, 0x059800,2, 0x05980c,2, 0x059840,7, 0x059900,3, 0x059910,3, 0x059920,5, 0x059a00,6, 0x059a40,5, 0x059c00,2, 0x059c0c,2, 0x059c40,7, 0x059d00,3, 0x059d10,3, 0x059d20,5, 0x059e00,6, 0x059e40,5, 0x05a000,5, 0x05a040,9, 0x05a100,3, 0x05a200,1, 0x05a210,1, 0x05a220,1, 0x05a230,1, 0x05a240,1, 0x05a300,3, 0x05a314,1, 0x05a320,4, 0x05a400,5, 0x05a440,5, 0x05b000,80, 0x05b200,1, 0x060004,5, 0x060020,3, 0x060030,3, 0x060040,13, 0x060078,4, 0x06009c,25, 0x060104,5, 0x060120,3, 0x060130,3, 0x060140,13, 0x060178,4, 0x06019c,25, 0x060204,5, 0x060220,3, 0x060230,3, 0x060240,13, 0x060278,4, 0x06029c,25, 0x060304,5, 0x060320,3, 0x060330,3, 0x060340,13, 0x060378,4, 0x06039c,25, 0x060600,4, 0x060c00,24, 0x060c80,24, 0x060d00,24, 0x060d80,24, 0x060e00,4, 0x060e20,4, 0x060e40,4, 0x060e60,4, 0x060e80,39, 0x060f20,7, 0x060f40,7, 0x060f60,7, 0x061000,12, 0x061200,1, 0x061218,2, 0x06122c,1, 0x061280,1, 0x061298,2, 0x0612ac,1, 0x061300,1, 0x061318,2, 0x06132c,1, 0x061380,1, 0x061398,2, 0x0613ac,1, 0x061400,4, 0x061420,2, 0x06142c,1, 0x061480,4, 0x0614a0,2, 0x0614ac,1, 0x061500,4, 0x061520,2, 0x06152c,1, 0x061580,4, 0x0615a0,2, 0x0615ac,1, 0x061600,4, 0x061640,4, 0x061680,4, 0x0616c0,4, 0x061700,7, 0x061720,7, 0x061740,7, 0x061760,7, 0x061780,4, 0x06179c,11, 0x0617d0,2, 0x0617e0,2, 0x0617f0,2, 0x061900,44, 0x062000,7, 0x062020,4, 0x062040,4, 0x062060,7, 0x062080,7, 0x0620a0,4, 0x0620c0,4, 0x0620e0,7, 0x062100,7, 0x062120,4, 0x062140,4, 0x062160,7, 0x062180,7, 0x0621a0,4, 0x0621c0,4, 0x0621e0,7, 0x062200,32, 0x062b00,1, 0x062b20,1, 0x062b28,4, 0x062b40,1, 0x062b60,1, 0x062b68,4, 0x062b80,1, 0x062ba0,1, 0x062ba8,4, 0x062bc0,1, 0x062be0,1, 0x062be8,4, 0x062c00,7, 0x062c20,1, 0x062c54,18, 0x062ca0,1, 0x062cd4,18, 0x062d20,1, 0x062d54,18, 0x062da0,1, 0x062dd4,12, 0x062e08,6, 0x063100,7, 0x063120,7, 0x063140,7, 0x063160,7, 0x063180,3, 0x064004,5, 0x064020,3, 0x064030,3, 0x064040,13, 0x064078,4, 0x06409c,25, 0x064104,5, 0x064120,3, 0x064130,3, 0x064140,13, 0x064178,4, 0x06419c,25, 0x064204,5, 0x064220,3, 0x064230,3, 0x064240,13, 0x064278,4, 0x06429c,25, 0x064304,5, 0x064320,3, 0x064330,3, 0x064340,13, 0x064378,4, 0x06439c,25, 0x064600,4, 0x064c00,24, 0x064c80,24, 0x064d00,24, 0x064d80,24, 0x064e00,4, 0x064e20,4, 0x064e40,4, 0x064e60,4, 0x064e80,39, 0x064f20,7, 0x064f40,7, 0x064f60,7, 0x065000,12, 0x065200,1, 0x065218,2, 0x06522c,1, 0x065280,1, 0x065298,2, 0x0652ac,1, 0x065300,1, 0x065318,2, 0x06532c,1, 0x065380,1, 0x065398,2, 0x0653ac,1, 0x065400,4, 0x065420,2, 0x06542c,1, 0x065480,4, 0x0654a0,2, 0x0654ac,1, 0x065500,4, 0x065520,2, 0x06552c,1, 0x065580,4, 0x0655a0,2, 0x0655ac,1, 0x065600,4, 0x065640,4, 0x065680,4, 0x0656c0,4, 0x065700,7, 0x065720,7, 0x065740,7, 0x065760,7, 0x065780,4, 0x06579c,11, 0x0657d0,2, 0x0657e0,2, 0x0657f0,2, 0x065900,44, 0x066000,7, 0x066020,4, 0x066040,4, 0x066060,7, 0x066080,7, 0x0660a0,4, 0x0660c0,4, 0x0660e0,7, 0x066100,7, 0x066120,4, 0x066140,4, 0x066160,7, 0x066180,7, 0x0661a0,4, 0x0661c0,4, 0x0661e0,7, 0x066200,32, 0x066b00,1, 0x066b20,1, 0x066b28,4, 0x066b40,1, 0x066b60,1, 0x066b68,4, 0x066b80,1, 0x066ba0,1, 0x066ba8,4, 0x066bc0,1, 0x066be0,1, 0x066be8,4, 0x066c00,7, 0x066c20,1, 0x066c54,18, 0x066ca0,1, 0x066cd4,18, 0x066d20,1, 0x066d54,18, 0x066da0,1, 0x066dd4,12, 0x066e08,6, 0x067100,7, 0x067120,7, 0x067140,7, 0x067160,7, 0x067180,3, 0x068000,10, 0x068080,3, 0x0680c0,1, 0x068100,21, 0x068180,13, 0x0681c4,7, 0x0681e4,7, 0x068204,7, 0x068224,8, 0x069000,7, 0x069030,2, 0x069040,7, 0x069070,2, 0x069100,2, 0x069120,2, 0x069140,2, 0x069160,2, 0x069180,9, 0x069200,7, 0x069230,2, 0x069240,7, 0x069270,2, 0x069300,2, 0x069320,2, 0x069340,2, 0x069360,2, 0x069380,9, 0x069400,11, 0x069500,11, 0x06a000,3, 0x06a010,2, 0x06a01c,5, 0x06a040,8, 0x06a080,3, 0x06a090,2, 0x06a09c,5, 0x06a0c0,8, 0x06a100,3, 0x06a110,2, 0x06a11c,5, 0x06a140,8, 0x06a180,3, 0x06a190,2, 0x06a19c,5, 0x06a1c0,8, 0x06a200,7, 0x06a220,12, 0x06a280,7, 0x06a2a0,12, 0x06a300,3, 0x06a310,1, 0x06a400,3, 0x06a410,2, 0x06a41c,5, 0x06a440,8, 0x06a480,3, 0x06a490,2, 0x06a49c,5, 0x06a4c0,8, 0x06a500,3, 0x06a510,2, 0x06a51c,5, 0x06a540,8, 0x06a580,3, 0x06a590,2, 0x06a59c,5, 0x06a5c0,8, 0x06a600,7, 0x06a620,12, 0x06a680,7, 0x06a6a0,12, 0x06a700,3, 0x06a710,1, 0x06a840,14, 0x06a880,16, 0x06a900,5, 0x06a920,11, 0x06a950,9, 0x06a980,8, 0x06a9c0,6, 0x06aa00,8, 0x06aa40,6, 0x06aa80,8, 0x06aac0,6, 0x06ab00,8, 0x06ab40,6, 0x06ab80,8, 0x06abc0,6, 0x06ac00,8, 0x06ac40,6, 0x06ac80,8, 0x06acc0,6, 0x06ad00,8, 0x06ad40,6, 0x06ad80,3, 0x06c000,16, 0x06c080,11, 0x06c100,11, 0x06c204,1, 0x06c224,21, 0x06c280,16, 0x06c300,11, 0x06c340,11, 0x06c800,21, 0x06c860,5, 0x06c880,6, 0x06c8a0,5, 0x06c8c0,6, 0x06c900,21, 0x06c960,5, 0x06c980,6, 0x06c9a0,5, 0x06c9c0,6, 0x06ca00,21, 0x06ca60,5, 0x06ca80,6, 0x06caa0,5, 0x06cac0,6, 0x06cb00,21, 0x06cb60,5, 0x06cb80,6, 0x06cba0,5, 0x06cbc0,6, 0x06cc00,9, 0x06cc48,7, 0x06cc68,2, 0x06cc74,9, 0x06cc9c,2, 0x06cd00,14, 0x06cd40,14, 0x06cd80,28, 0x06ce00,19, 0x06ce50,3, 0x06ce60,25, 0x06cec8,1, 0x06ced0,2, 0x06cee0,7, 0x06cf00,1, 0x06cf08,2, 0x06cffc,20, 0x06d050,25, 0x06d100,19, 0x06d150,25, 0x06d200,19, 0x06d250,25, 0x06d300,19, 0x06d350,25, 0x06d400,19, 0x06d450,25, 0x06d500,19, 0x06d550,25, 0x06d600,19, 0x06d650,25, 0x06d700,19, 0x06d750,25, 0x06d800,19, 0x06d850,25, 0x06d904,1, 0x06d914,10, 0x06d948,11, 0x06d980,2, 0x06d9a0,6, 0x06d9c0,2, 0x06d9cc,2, 0x06e000,35, 0x06ea00,10, 0x06ea80,3, 0x06eb00,6, 0x06f000,1, 0x06f008,5, 0x06f038,1, 0x06f044,1, 0x06f050,2, 0x06f100,13, 0x06f140,11, 0x06f170,12, 0x06f1a4,1, 0x06f200,104, 0x06f400,104, 0x06f600,104, 0x06f800,104, 0x070000,13, 0x070040,2, 0x070054,4, 0x070080,27, 0x070100,12, 0x070140,14, 0x070180,28, 0x070200,6, 0x070240,6, 0x07025c,3, 0x070280,5, 0x0702a0,8, 0x070400,14, 0x070440,14, 0x070480,14, 0x0704c0,14, 0x070540,3, 0x070600,7, 0x070620,14, 0x070680,5, 0x0706a0,7, 0x070800,13, 0x070840,2, 0x070854,4, 0x070880,27, 0x070900,12, 0x070940,14, 0x070980,28, 0x070a00,6, 0x070a40,6, 0x070a5c,3, 0x070a80,5, 0x070aa0,8, 0x070c00,14, 0x070c40,14, 0x070c80,14, 0x070cc0,14, 0x070d40,3, 0x070e00,7, 0x070e20,14, 0x070e80,5, 0x070ea0,7, 0x071000,13, 0x071040,2, 0x071054,4, 0x071080,27, 0x071100,12, 0x071140,14, 0x071180,28, 0x071200,6, 0x071240,6, 0x07125c,3, 0x071280,5, 0x0712a0,8, 0x071400,14, 0x071440,14, 0x071480,14, 0x0714c0,14, 0x071540,3, 0x071600,7, 0x071620,14, 0x071680,5, 0x0716a0,7, 0x071800,13, 0x071840,2, 0x071854,4, 0x071880,27, 0x071900,12, 0x071940,14, 0x071980,28, 0x071a00,6, 0x071a40,6, 0x071a5c,3, 0x071a80,5, 0x071aa0,8, 0x071c00,14, 0x071c40,14, 0x071c80,14, 0x071cc0,14, 0x071d40,3, 0x071e00,7, 0x071e20,14, 0x071e80,5, 0x071ea0,7, 0x072000,8, 0x072040,8, 0x072080,1, 0x072098,6, 0x072100,10, 0x072140,3, 0x072150,2, 0x072180,2, 0x072200,6, 0x072220,18, 0x072280,4, 0x072300,8, 0x072400,2, 0x072480,2, 0x072800,28, 0x0729f0,4, 0x073000,40, 0x073100,64, 0x073800,56, 0x073be0,8, 0x074000,13, 0x074040,2, 0x074054,4, 0x074080,27, 0x074100,12, 0x074140,14, 0x074180,28, 0x074200,6, 0x074240,6, 0x07425c,3, 0x074280,5, 0x0742a0,8, 0x074400,14, 0x074440,14, 0x074480,14, 0x0744c0,14, 0x074540,3, 0x074600,7, 0x074620,14, 0x074680,5, 0x0746a0,7, 0x074800,13, 0x074840,2, 0x074854,4, 0x074880,27, 0x074900,12, 0x074940,14, 0x074980,28, 0x074a00,6, 0x074a40,6, 0x074a5c,3, 0x074a80,5, 0x074aa0,8, 0x074c00,14, 0x074c40,14, 0x074c80,14, 0x074cc0,14, 0x074d40,3, 0x074e00,7, 0x074e20,14, 0x074e80,5, 0x074ea0,7, 0x075000,13, 0x075040,2, 0x075054,4, 0x075080,27, 0x075100,12, 0x075140,14, 0x075180,28, 0x075200,6, 0x075240,6, 0x07525c,3, 0x075280,5, 0x0752a0,8, 0x075400,14, 0x075440,14, 0x075480,14, 0x0754c0,14, 0x075540,3, 0x075600,7, 0x075620,14, 0x075680,5, 0x0756a0,7, 0x075800,13, 0x075840,2, 0x075854,4, 0x075880,27, 0x075900,12, 0x075940,14, 0x075980,28, 0x075a00,6, 0x075a40,6, 0x075a5c,3, 0x075a80,5, 0x075aa0,8, 0x075c00,14, 0x075c40,14, 0x075c80,14, 0x075cc0,14, 0x075d40,3, 0x075e00,7, 0x075e20,14, 0x075e80,5, 0x075ea0,7, 0x076000,8, 0x076040,8, 0x076080,1, 0x076098,6, 0x076100,10, 0x076140,3, 0x076150,2, 0x076180,2, 0x076200,6, 0x076220,18, 0x076280,4, 0x076300,8, 0x076400,2, 0x076480,2, 0x076800,28, 0x0769f0,4, 0x077000,40, 0x077100,64, 0x077800,56, 0x077be0,8, 0x078000,2, 0x07800c,2, 0x078040,7, 0x078100,3, 0x078110,3, 0x078120,5, 0x078200,6, 0x078240,5, 0x078400,2, 0x07840c,2, 0x078440,7, 0x078500,3, 0x078510,3, 0x078520,5, 0x078600,6, 0x078640,5, 0x078800,2, 0x07880c,2, 0x078840,7, 0x078900,3, 0x078910,3, 0x078920,5, 0x078a00,6, 0x078a40,5, 0x078c00,2, 0x078c0c,2, 0x078c40,7, 0x078d00,3, 0x078d10,3, 0x078d20,5, 0x078e00,6, 0x078e40,5, 0x079000,2, 0x07900c,2, 0x079040,7, 0x079100,3, 0x079110,3, 0x079120,5, 0x079200,6, 0x079240,5, 0x079400,2, 0x07940c,2, 0x079440,7, 0x079500,3, 0x079510,3, 0x079520,5, 0x079600,6, 0x079640,5, 0x079800,2, 0x07980c,2, 0x079840,7, 0x079900,3, 0x079910,3, 0x079920,5, 0x079a00,6, 0x079a40,5, 0x079c00,2, 0x079c0c,2, 0x079c40,7, 0x079d00,3, 0x079d10,3, 0x079d20,5, 0x079e00,6, 0x079e40,5, 0x07a000,5, 0x07a040,9, 0x07a100,3, 0x07a200,1, 0x07a210,1, 0x07a220,1, 0x07a230,1, 0x07a240,1, 0x07a300,3, 0x07a314,1, 0x07a320,4, 0x07a400,5, 0x07a440,5, 0x07b000,80, 0x07b200,1, 0x080000,3, 0x080010,7, 0x080030,10, 0x080080,2, 0x080100,6, 0x080140,2, 0x080180,2, 0x0801a0,1, 0x080400,2, 0x080440,4, 0x080460,5, 0x080478,1, 0x080480,6, 0x0804a0,3, 0x0804b0,2, 0x080500,5, 0x080600,1, 0x080800,5, 0x080900,5, 0x080a00,5, 0x080b00,3, 0x080c00,35, 0x080d00,25, 0x080d80,1, 0x080dc0,3, 0x080e00,2, 0x080e20,2, 0x090000,6, 0x09001c,265, 0x09047c,4, 0x090494,27, 0x090504,27, 0x090574,19, 0x0905cc,120, 0x0907b0,109, 0x0909a0,4, 0x0909b8,27, 0x090a28,27, 0x090a98,19, 0x090af0,120, 0x090cd4,109, 0x090ec4,4, 0x090edc,27, 0x090f4c,27, 0x090fbc,19, 0x091014,120, 0x0911f8,109, 0x0913e8,4, 0x091400,27, 0x091470,27, 0x0914e0,19, 0x091538,120, 0x09171c,109, 0x09190c,4, 0x091924,27, 0x091994,27, 0x091a04,19, 0x091a5c,120, 0x091c40,109, 0x091e30,4, 0x091e48,27, 0x091eb8,27, 0x091f28,19, 0x091f80,120, 0x092164,109, 0x092354,4, 0x09236c,27, 0x0923dc,27, 0x09244c,19, 0x0924a4,120, 0x092688,109, 0x092878,4, 0x092890,27, 0x092900,27, 0x092970,19, 0x0929c8,120, 0x092bac,109, 0x092d9c,4, 0x092db4,27, 0x092e24,27, 0x092e94,19, 0x092eec,120, 0x0930d0,109, 0x0932c0,4, 0x0932d8,27, 0x093348,27, 0x0933b8,19, 0x093410,120, 0x0935f4,109, 0x0937e4,4, 0x0937fc,27, 0x09386c,27, 0x0938dc,19, 0x093934,120, 0x093b18,109, 0x093d08,4, 0x093d20,27, 0x093d90,27, 0x093e00,19, 0x093e58,120, 0x09403c,109, 0x09422c,4, 0x094244,27, 0x0942b4,27, 0x094324,19, 0x09437c,120, 0x094560,109, 0x094750,4, 0x094768,27, 0x0947d8,27, 0x094848,19, 0x0948a0,120, 0x094a84,109, 0x094c74,4, 0x094c8c,27, 0x094cfc,27, 0x094d6c,19, 0x094dc4,120, 0x094fa8,109, 0x095198,4, 0x0951b0,27, 0x095220,27, 0x095290,19, 0x0952e8,120, 0x0954cc,109, 0x0956bc,4, 0x0956d4,27, 0x095744,27, 0x0957b4,19, 0x09580c,120, 0x0959f0,109, 0x095be0,14, 0x095ce8,13, 0x095dec,13, 0x095ef0,16, 0x095f38,42, 0x095fe8,2, 0x096038,8, 0x09605c,8, 0x096080,8, 0x0960a4,8, 0x0960c8,8, 0x0960ec,8, 0x096110,8, 0x096134,8, 0x096158,8, 0x09617c,8, 0x0961a0,8, 0x0961c4,8, 0x0961e8,8, 0x09620c,8, 0x096230,8, 0x096254,8, 0x096278,8, 0x09629c,75, 0x0963cc,19, 0x09641c,3, 0x09642c,17, 0x096490,12, 0x0964c8,6, 0x0964e4,5, 0x09650c,93, 0x0966b0,13, 0x0966e8,32, 0x09676c,10, 0x09679c,3, 0x0967b4,74, 0x096ab0,64, 0x096bd0,49, 0x096cd0,18, 0x096d20,11, 0x096d50,3, 0x096d74,45, 0x096e78,9, 0x096ea8,4, 0x096ec0,2, 0x096ef8,14, 0x096f34,12, 0x097078,3, 0x097088,4, 0x0970a0,3, 0x0970b4,12, 0x097118,8, 0x09716c,1, 0x097178,4, 0x097190,3, 0x0971a4,12, 0x097208,8, 0x09725c,1, 0x097268,4, 0x097280,3, 0x097294,12, 0x0972f8,8, 0x09734c,1, 0x097358,4, 0x097370,3, 0x097384,12, 0x0973e8,8, 0x09743c,1, 0x097448,4, 0x097460,3, 0x097474,12, 0x0974d8,8, 0x09752c,1, 0x097538,4, 0x097550,3, 0x097564,12, 0x0975c8,8, 0x09761c,1, 0x097628,4, 0x097640,3, 0x097654,12, 0x0976b8,8, 0x09770c,1, 0x097718,4, 0x097730,3, 0x097744,12, 0x0977a8,8, 0x0977fc,1, 0x097808,4, 0x097820,3, 0x097834,12, 0x097898,8, 0x0978ec,1, 0x0978f8,4, 0x097910,3, 0x097924,12, 0x097988,8, 0x0979dc,1, 0x0979e8,4, 0x097a00,3, 0x097a14,12, 0x097a78,8, 0x097acc,1, 0x097ad8,4, 0x097af0,3, 0x097b04,12, 0x097b68,8, 0x097bbc,1, 0x097bc8,4, 0x097be0,3, 0x097bf4,12, 0x097c58,8, 0x097cac,1, 0x097cb8,4, 0x097cd0,3, 0x097ce4,12, 0x097d48,8, 0x097d9c,1, 0x097da8,4, 0x097dc0,3, 0x097dd4,12, 0x097e38,8, 0x097e8c,1, 0x097e98,4, 0x097eb0,3, 0x097ec4,12, 0x097f28,8, 0x097f7c,1, 0x097f88,4, 0x097fa0,3, 0x097fb4,12, 0x098018,8, 0x09806c,1, 0x098078,64, 0x0981d8,5, 0x098420,28, 0x098494,4, 0x098678,11, 0x0986a8,29, 0x098724,81, 0x09886c,84, 0x0989c0,84, 0x098b14,84, 0x098c68,84, 0x098dbc,84, 0x098f10,84, 0x099064,84, 0x0991b8,84, 0x09930c,84, 0x099460,84, 0x0995b4,84, 0x099708,84, 0x09985c,84, 0x0999b0,84, 0x099b04,84, 0x099c58,84, 0x099dac,10, 0x099e94,2, 0x099ea0,1, 0x099eb4,13, 0x099f80,4, 0x09a100,2414, 0x09c6c4,88, 0x09c868,5, 0x09c880,2, 0x09d400,8, 0x09d5a0,99, 0x09d740,1, 0x09d750,97, 0x09d8f4,7, 0x09d9dc,1, 0x09da0c,9, 0x09da34,5, 0x09da4c,11, 0x09da8c,17, 0x09dad4,30, 0x09db94,3, 0x09dba4,2, 0x09dbb4,21, 0x09e740,7, 0x09e764,59, 0x09e858,5, 0x09e900,73, 0x09ea54,3, 0x09ea80,40, 0x09eb40,4, 0x09eb5c,2, 0x09eb68,3, 0x09eb78,3, 0x09eb88,3, 0x09eb98,26, 0x09ec80,1, 0x0a0000,3, 0x0a0018,2, 0x0a0024,14, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,4, 0x0a0120,6, 0x0a0140,3, 0x0a0150,1, 0x0a015c,4, 0x0a0170,1, 0x0a0180,15, 0x0a01c0,1, 0x0a01c8,5, 0x0a01e0,1, 0x0a01f0,3, 0x0a0200,3, 0x0a0218,2, 0x0a0224,14, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,4, 0x0a0320,6, 0x0a0340,3, 0x0a0350,1, 0x0a035c,4, 0x0a0370,1, 0x0a0380,15, 0x0a03c0,1, 0x0a03c8,5, 0x0a03e0,1, 0x0a03f0,3, 0x0a0400,3, 0x0a0418,2, 0x0a0424,14, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,4, 0x0a0520,6, 0x0a0540,3, 0x0a0550,1, 0x0a055c,4, 0x0a0570,1, 0x0a0580,15, 0x0a05c0,1, 0x0a05c8,5, 0x0a05e0,1, 0x0a05f0,3, 0x0a0600,3, 0x0a0618,2, 0x0a0624,14, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,4, 0x0a0720,6, 0x0a0740,3, 0x0a0750,1, 0x0a075c,4, 0x0a0770,1, 0x0a0780,15, 0x0a07c0,1, 0x0a07c8,5, 0x0a07e0,1, 0x0a07f0,3, 0x0a0800,3, 0x0a0818,2, 0x0a0824,14, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,4, 0x0a0920,6, 0x0a0940,3, 0x0a0950,1, 0x0a095c,4, 0x0a0970,1, 0x0a0980,15, 0x0a09c0,1, 0x0a09c8,5, 0x0a09e0,1, 0x0a09f0,3, 0x0a1844,1, 0x0a1858,5, 0x0a1904,3, 0x0a1950,3, 0x0a1988,2, 0x0a19a0,7, 0x0a19c0,7, 0x0a19e0,4, 0x0a2000,24, 0x0a20f0,3, 0x0a2100,7, 0x0a2120,7, 0x0a2144,7, 0x0a2400,4, 0x0a2420,5, 0x0a25e0,3, 0x0a25f4,1, 0x0a25fc,4, 0x0a2620,3, 0x0a2680,8, 0x0a2700,19, 0x0a2800,99, 0x0a2a00,18, 0x0a2a80,8, 0x0a2b00,1, 0x0a3070,1, 0x0a3080,2, 0x0a308c,1, 0x0a3098,2, 0x0a3404,1, 0x0a3440,20, 0x0a3494,1, 0x0a349c,7, 0x0a34d0,4, 0x0a34e8,2, 0x0a34fc,8, 0x0a3520,7, 0x0a3540,7, 0x0a3560,7, 0x0a3580,7, 0x0a35a0,7, 0x0a35c0,7, 0x0a35e0,7, 0x0a3600,9, 0x0a363c,2, 0x0a3650,6, 0x0a3684,10, 0x0a3a00,10, 0x0a3a30,1, 0x0a3a40,8, 0x0a3a64,5, 0x0a4a04,3, 0x0a4b00,33, 0x0a4b90,3, 0x0a5000,8, 0x0a5040,8, 0x0a5104,1, 0x0a510c,3, 0x0a5124,1, 0x0a512c,3, 0x0a6000,13, 0x0a6200,14, 0x0a6240,1, 0x0a6248,1, 0x0a6258,1, 0x0a6260,8, 0x0a6284,1, 0x0a62a0,8, 0x0a6348,5, 0x0a67f0,1, 0x0a67f8,1, 0x0a6a10,12, 0x0a7000,19, 0x0a7a00,10, 0x0a7a80,3, 0x0a7b00,6, 0x0c0000,1, 0x0c000c,5, 0x0c0044,1, 0x0c0054,5, 0x0c0200,128, 0x0c0404,1, 0x0c0428,54, 0x0c0600,32, 0x0c0704,1, 0x0c0800,1, 0x0c0900,1, 0x0c0910,2, 0x0c0920,3, 0x0c0980,10, 0x0c0a00,19, 0x0c0b00,1, 0x0d0000,35, 0x0d0a00,10, 0x0d0a80,3, 0x0d0b00,6, 0x0d1000,35, 0x0d1a00,10, 0x0d1a80,3, 0x0d1b00,6, 0x0d2000,35, 0x0d2a00,10, 0x0d2a80,3, 0x0d2b00,6, 0x0d3000,35, 0x0d3a00,10, 0x0d3a80,3, 0x0d3b00,6, 0x0d4000,10, 0x0d4080,3, 0x0d40c0,1, 0x0d5000,10, 0x0d5080,3, 0x0d50c0,1, 0x0d6000,10, 0x0d6080,3, 0x0d60c0,1, 0x0d7000,10, 0x0d7080,3, 0x0d70c0,1, 0x0d8000,19, 0x0d8a00,10, 0x0d8a80,3, 0x0d8b00,6, 0x0d9000,1, 0x0da000,1, 0x0db000,1, 0x0dc000,1, 0x0e0000,2690, 0x0f0000,4, 0x0f0014,2, 0x0f0020,8, 0x0f0044,2, 0x0f0050,13, 0x0f0088,20, 0x0f00dc,1, 0x0f0180,6, 0x0f0590,3, 0x0f05c0,2, 0x0f0a04,1, 0x0f0a0c,3, 0x0f0a20,1, 0x0f0ba0,4, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,5, 0x0f0c50,52, 0x0f0d50,57, 0x0f0ec0,3, 0x0f0ed0,2, 0x0f0ee0,7, 0x0f0f00,1, 0x0f0ffc,3, 0x0f1020,3, 0x0f1030,3, 0x0f1060,2, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,28, 0x0f1300,2, 0x0f13a0,6, 0x0f1400,19, 0x0f1800,19, 0x0f1c00,19, 0x0f1c80,8, 0x0f1d00,3, 0x0f1d50,3, 0x0f1e00,3, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f80,3, 0x0f1f90,60, 0x0f2100,32, 0x0f2200,32, 0x0f2300,32, 0x0f2400,32, 0x0f2500,32, 0x0f2600,32, 0x0f2700,32, 0x0f2800,32, 0x0f2900,32, 0x0f2a00,32, 0x0f2b00,32, 0x0f2c00,32, 0x0f2d00,32, 0x0f2e00,32, 0x0f2f00,32, 0x0f3000,32, 0x0f30c0,3, 0x0f4000,2, 0x0f4040,16, 0x0f4100,36, 0x0f4800,5, 0x0f4824,1, 0x0f482c,1, 0x0f4c04,1, 0x0f4cd8,74, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0fa000,5, 0x0fa01c,13, 0x0fa060,3, 0x0fa080,8, 0x0fa100,5, 0x0fa11c,13, 0x0fa160,3, 0x0fa180,8, mstflint-4.26.0/mstdump/mstdump_dbs/SwitchX.csv0000755000175000017500000036373014522641732022042 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,1, 0x000010,2, 0x000020,3, 0x000030,7, 0x000100,7, 0x000120,3, 0x000130,2, 0x000404,1, 0x000414,3, 0x000424,1, 0x00042c,10, 0x000460,11, 0x000490,7, 0x0004b0,4, 0x0004c4,1, 0x0004cc,6, 0x0004f0,2, 0x000500,5, 0x000520,33, 0x0005b0,6, 0x000a00,1, 0x000a08,7, 0x000a2c,38, 0x000ac8,12, 0x000b00,1, 0x000b10,2, 0x000b20,8, 0x000b44,1, 0x000b60,8, 0x000b84,1, 0x000b94,3, 0x000ba4,1, 0x000bac,1, 0x000bb4,1, 0x000bbc,4, 0x000bd0,7, 0x000bf0,15, 0x000c30,6, 0x000c60,14, 0x000d04,1, 0x000d24,9, 0x000d60,1, 0x000d70,2, 0x000da0,2, 0x000db4,1, 0x000dbc,4, 0x000dd0,7, 0x000df0,15, 0x000e30,5, 0x000e60,14, 0x000f60,1, 0x000f70,2, 0x000fa0,2, 0x000fb4,1, 0x000fbc,4, 0x000fd0,7, 0x000ff0,132, 0x001204,1, 0x00121c,9, 0x001284,3, 0x001294,3, 0x001300,10, 0x00132c,10, 0x001500,3, 0x001520,25, 0x001594,13, 0x0015cc,6, 0x0015fc,2, 0x001610,2, 0x001804,1, 0x001814,3, 0x001824,1, 0x00182c,10, 0x001860,11, 0x001890,7, 0x0018b0,4, 0x0018c4,1, 0x0018cc,6, 0x0018f0,2, 0x001900,5, 0x001920,49, 0x001c04,1, 0x001c10,24, 0x001c80,1, 0x001c90,2, 0x001ca0,1, 0x001cb0,2, 0x001cc8,5, 0x001d00,22, 0x002004,14, 0x002040,7, 0x00206c,3, 0x0021fc,97, 0x002400,96, 0x002600,96, 0x003000,20, 0x003064,3, 0x003074,2, 0x003080,20, 0x0030e4,3, 0x0030f4,2, 0x003100,20, 0x003164,3, 0x003174,2, 0x003180,20, 0x0031e4,3, 0x0031f4,2, 0x003200,20, 0x003264,3, 0x003274,2, 0x003280,1, 0x003400,20, 0x003464,3, 0x003474,2, 0x003480,20, 0x0034e4,3, 0x0034f4,2, 0x003500,20, 0x003564,3, 0x003574,2, 0x003580,20, 0x0035e4,3, 0x0035f4,2, 0x003600,20, 0x003664,3, 0x003674,2, 0x003680,20, 0x0036e4,3, 0x0036f4,2, 0x003700,1, 0x003804,12, 0x003840,5, 0x00385c,13, 0x003900,3, 0x003910,7, 0x003930,4, 0x003944,1, 0x003954,3, 0x003964,4, 0x003978,5, 0x003990,2, 0x003a00,77, 0x003c00,31, 0x003c80,7, 0x003ca0,33, 0x003d40,6, 0x003d64,1, 0x003d70,16, 0x003dc0,14, 0x003e04,57, 0x004000,2, 0x004018,2, 0x004034,2, 0x004104,6, 0x004134,2, 0x00414c,1, 0x004170,3, 0x004200,1, 0x004210,2, 0x004220,1, 0x004230,2, 0x0042c0,1, 0x004400,64, 0x008000,1, 0x008010,2, 0x008020,3, 0x008030,7, 0x008100,7, 0x008120,3, 0x008130,2, 0x008404,1, 0x008414,3, 0x008424,1, 0x00842c,10, 0x008460,11, 0x008490,7, 0x0084b0,4, 0x0084c4,1, 0x0084cc,6, 0x0084f0,2, 0x008500,5, 0x008520,33, 0x0085b0,6, 0x008a00,1, 0x008a08,7, 0x008a2c,38, 0x008ac8,12, 0x008b00,1, 0x008b10,2, 0x008b20,8, 0x008b44,1, 0x008b60,8, 0x008b84,1, 0x008b94,3, 0x008ba4,1, 0x008bac,1, 0x008bb4,1, 0x008bbc,4, 0x008bd0,7, 0x008bf0,15, 0x008c30,6, 0x008c60,14, 0x008d04,1, 0x008d24,9, 0x008d60,1, 0x008d70,2, 0x008da0,2, 0x008db4,1, 0x008dbc,4, 0x008dd0,7, 0x008df0,15, 0x008e30,5, 0x008e60,14, 0x008f60,1, 0x008f70,2, 0x008fa0,2, 0x008fb4,1, 0x008fbc,4, 0x008fd0,7, 0x008ff0,132, 0x009204,1, 0x00921c,9, 0x009284,3, 0x009294,3, 0x009300,10, 0x00932c,10, 0x009500,3, 0x009520,25, 0x009594,13, 0x0095cc,6, 0x0095fc,2, 0x009610,2, 0x009804,1, 0x009814,3, 0x009824,1, 0x00982c,10, 0x009860,11, 0x009890,7, 0x0098b0,4, 0x0098c4,1, 0x0098cc,6, 0x0098f0,2, 0x009900,5, 0x009920,49, 0x009c04,1, 0x009c10,24, 0x009c80,1, 0x009c90,2, 0x009ca0,1, 0x009cb0,2, 0x009cc8,5, 0x009d00,22, 0x00a004,14, 0x00a040,7, 0x00a06c,3, 0x00a1fc,97, 0x00a400,96, 0x00a600,96, 0x00b000,20, 0x00b064,3, 0x00b074,2, 0x00b080,20, 0x00b0e4,3, 0x00b0f4,2, 0x00b100,20, 0x00b164,3, 0x00b174,2, 0x00b180,20, 0x00b1e4,3, 0x00b1f4,2, 0x00b200,20, 0x00b264,3, 0x00b274,2, 0x00b280,1, 0x00b400,20, 0x00b464,3, 0x00b474,2, 0x00b480,20, 0x00b4e4,3, 0x00b4f4,2, 0x00b500,20, 0x00b564,3, 0x00b574,2, 0x00b580,20, 0x00b5e4,3, 0x00b5f4,2, 0x00b600,20, 0x00b664,3, 0x00b674,2, 0x00b680,20, 0x00b6e4,3, 0x00b6f4,2, 0x00b700,1, 0x00b804,12, 0x00b840,5, 0x00b85c,13, 0x00b900,3, 0x00b910,7, 0x00b930,4, 0x00b944,1, 0x00b954,3, 0x00b964,4, 0x00b978,5, 0x00b990,2, 0x00ba00,77, 0x00bc00,31, 0x00bc80,7, 0x00bca0,33, 0x00bd40,6, 0x00bd64,1, 0x00bd70,16, 0x00bdc0,14, 0x00be04,57, 0x00c000,2, 0x00c018,2, 0x00c034,2, 0x00c104,6, 0x00c134,2, 0x00c14c,1, 0x00c170,3, 0x00c200,1, 0x00c210,2, 0x00c220,1, 0x00c230,2, 0x00c2c0,1, 0x00c400,64, 0x010000,1, 0x010010,2, 0x010020,3, 0x010030,7, 0x010100,7, 0x010120,3, 0x010130,2, 0x010404,1, 0x010414,3, 0x010424,1, 0x01042c,10, 0x010460,11, 0x010490,7, 0x0104b0,4, 0x0104c4,1, 0x0104cc,6, 0x0104f0,2, 0x010500,5, 0x010520,33, 0x0105b0,6, 0x010a00,1, 0x010a08,7, 0x010a2c,38, 0x010ac8,12, 0x010b00,1, 0x010b10,2, 0x010b20,8, 0x010b44,1, 0x010b60,8, 0x010b84,1, 0x010b94,3, 0x010ba4,1, 0x010bac,1, 0x010bb4,1, 0x010bbc,4, 0x010bd0,7, 0x010bf0,15, 0x010c30,6, 0x010c60,14, 0x010d04,1, 0x010d24,9, 0x010d60,1, 0x010d70,2, 0x010da0,2, 0x010db4,1, 0x010dbc,4, 0x010dd0,7, 0x010df0,15, 0x010e30,5, 0x010e60,14, 0x010f60,1, 0x010f70,2, 0x010fa0,2, 0x010fb4,1, 0x010fbc,4, 0x010fd0,7, 0x010ff0,132, 0x011204,1, 0x01121c,9, 0x011284,3, 0x011294,3, 0x011300,10, 0x01132c,10, 0x011500,3, 0x011520,25, 0x011594,13, 0x0115cc,6, 0x0115fc,2, 0x011610,2, 0x011804,1, 0x011814,3, 0x011824,1, 0x01182c,10, 0x011860,11, 0x011890,7, 0x0118b0,4, 0x0118c4,1, 0x0118cc,6, 0x0118f0,2, 0x011900,5, 0x011920,49, 0x011c04,1, 0x011c10,24, 0x011c80,1, 0x011c90,2, 0x011ca0,1, 0x011cb0,2, 0x011cc8,5, 0x011d00,22, 0x012004,14, 0x012040,7, 0x01206c,3, 0x0121fc,97, 0x012400,96, 0x012600,96, 0x013000,20, 0x013064,3, 0x013074,2, 0x013080,20, 0x0130e4,3, 0x0130f4,2, 0x013100,20, 0x013164,3, 0x013174,2, 0x013180,20, 0x0131e4,3, 0x0131f4,2, 0x013200,20, 0x013264,3, 0x013274,2, 0x013280,1, 0x013400,20, 0x013464,3, 0x013474,2, 0x013480,20, 0x0134e4,3, 0x0134f4,2, 0x013500,20, 0x013564,3, 0x013574,2, 0x013580,20, 0x0135e4,3, 0x0135f4,2, 0x013600,20, 0x013664,3, 0x013674,2, 0x013680,20, 0x0136e4,3, 0x0136f4,2, 0x013700,1, 0x013804,12, 0x013840,5, 0x01385c,13, 0x013900,3, 0x013910,7, 0x013930,4, 0x013944,1, 0x013954,3, 0x013964,4, 0x013978,5, 0x013990,2, 0x013a00,77, 0x013c00,31, 0x013c80,7, 0x013ca0,33, 0x013d40,6, 0x013d64,1, 0x013d70,16, 0x013dc0,14, 0x013e04,57, 0x014000,2, 0x014018,2, 0x014034,2, 0x014104,6, 0x014134,2, 0x01414c,1, 0x014170,3, 0x014200,1, 0x014210,2, 0x014220,1, 0x014230,2, 0x0142c0,1, 0x014400,64, 0x018000,1, 0x018010,2, 0x018020,3, 0x018030,7, 0x018100,7, 0x018120,3, 0x018130,2, 0x018404,1, 0x018414,3, 0x018424,1, 0x01842c,10, 0x018460,11, 0x018490,7, 0x0184b0,4, 0x0184c4,1, 0x0184cc,6, 0x0184f0,2, 0x018500,5, 0x018520,33, 0x0185b0,6, 0x018a00,1, 0x018a08,7, 0x018a2c,38, 0x018ac8,12, 0x018b00,1, 0x018b10,2, 0x018b20,8, 0x018b44,1, 0x018b60,8, 0x018b84,1, 0x018b94,3, 0x018ba4,1, 0x018bac,1, 0x018bb4,1, 0x018bbc,4, 0x018bd0,7, 0x018bf0,15, 0x018c30,6, 0x018c60,14, 0x018d04,1, 0x018d24,9, 0x018d60,1, 0x018d70,2, 0x018da0,2, 0x018db4,1, 0x018dbc,4, 0x018dd0,7, 0x018df0,15, 0x018e30,5, 0x018e60,14, 0x018f60,1, 0x018f70,2, 0x018fa0,2, 0x018fb4,1, 0x018fbc,4, 0x018fd0,7, 0x018ff0,132, 0x019204,1, 0x01921c,9, 0x019284,3, 0x019294,3, 0x019300,10, 0x01932c,10, 0x019500,3, 0x019520,25, 0x019594,13, 0x0195cc,6, 0x0195fc,2, 0x019610,2, 0x019804,1, 0x019814,3, 0x019824,1, 0x01982c,10, 0x019860,11, 0x019890,7, 0x0198b0,4, 0x0198c4,1, 0x0198cc,6, 0x0198f0,2, 0x019900,5, 0x019920,49, 0x019c04,1, 0x019c10,24, 0x019c80,1, 0x019c90,2, 0x019ca0,1, 0x019cb0,2, 0x019cc8,5, 0x019d00,22, 0x01a004,14, 0x01a040,7, 0x01a06c,3, 0x01a1fc,97, 0x01a400,96, 0x01a600,96, 0x01b000,20, 0x01b064,3, 0x01b074,2, 0x01b080,20, 0x01b0e4,3, 0x01b0f4,2, 0x01b100,20, 0x01b164,3, 0x01b174,2, 0x01b180,20, 0x01b1e4,3, 0x01b1f4,2, 0x01b200,20, 0x01b264,3, 0x01b274,2, 0x01b280,1, 0x01b400,20, 0x01b464,3, 0x01b474,2, 0x01b480,20, 0x01b4e4,3, 0x01b4f4,2, 0x01b500,20, 0x01b564,3, 0x01b574,2, 0x01b580,20, 0x01b5e4,3, 0x01b5f4,2, 0x01b600,20, 0x01b664,3, 0x01b674,2, 0x01b680,20, 0x01b6e4,3, 0x01b6f4,2, 0x01b700,1, 0x01b804,12, 0x01b840,5, 0x01b85c,13, 0x01b900,3, 0x01b910,7, 0x01b930,4, 0x01b944,1, 0x01b954,3, 0x01b964,4, 0x01b978,5, 0x01b990,2, 0x01ba00,77, 0x01bc00,31, 0x01bc80,7, 0x01bca0,33, 0x01bd40,6, 0x01bd64,1, 0x01bd70,16, 0x01bdc0,14, 0x01be04,57, 0x01c000,2, 0x01c018,2, 0x01c034,2, 0x01c104,6, 0x01c134,2, 0x01c14c,1, 0x01c170,3, 0x01c200,1, 0x01c210,2, 0x01c220,1, 0x01c230,2, 0x01c2c0,1, 0x01c400,64, 0x020000,1, 0x020010,2, 0x020020,3, 0x020030,7, 0x020100,7, 0x020120,3, 0x020130,2, 0x020404,1, 0x020414,3, 0x020424,1, 0x02042c,10, 0x020460,11, 0x020490,7, 0x0204b0,4, 0x0204c4,1, 0x0204cc,6, 0x0204f0,2, 0x020500,5, 0x020520,33, 0x0205b0,6, 0x020a00,1, 0x020a08,7, 0x020a2c,38, 0x020ac8,12, 0x020b00,1, 0x020b10,2, 0x020b20,8, 0x020b44,1, 0x020b60,8, 0x020b84,1, 0x020b94,3, 0x020ba4,1, 0x020bac,1, 0x020bb4,1, 0x020bbc,4, 0x020bd0,7, 0x020bf0,15, 0x020c30,6, 0x020c60,14, 0x020d04,1, 0x020d24,9, 0x020d60,1, 0x020d70,2, 0x020da0,2, 0x020db4,1, 0x020dbc,4, 0x020dd0,7, 0x020df0,15, 0x020e30,5, 0x020e60,14, 0x020f60,1, 0x020f70,2, 0x020fa0,2, 0x020fb4,1, 0x020fbc,4, 0x020fd0,7, 0x020ff0,132, 0x021204,1, 0x02121c,9, 0x021284,3, 0x021294,3, 0x021300,10, 0x02132c,10, 0x021500,3, 0x021520,25, 0x021594,13, 0x0215cc,6, 0x0215fc,2, 0x021610,2, 0x021804,1, 0x021814,3, 0x021824,1, 0x02182c,10, 0x021860,11, 0x021890,7, 0x0218b0,4, 0x0218c4,1, 0x0218cc,6, 0x0218f0,2, 0x021900,5, 0x021920,49, 0x021c04,1, 0x021c10,24, 0x021c80,1, 0x021c90,2, 0x021ca0,1, 0x021cb0,2, 0x021cc8,5, 0x021d00,22, 0x022004,14, 0x022040,7, 0x02206c,3, 0x0221fc,97, 0x022400,96, 0x022600,96, 0x023000,20, 0x023064,3, 0x023074,2, 0x023080,20, 0x0230e4,3, 0x0230f4,2, 0x023100,20, 0x023164,3, 0x023174,2, 0x023180,20, 0x0231e4,3, 0x0231f4,2, 0x023200,20, 0x023264,3, 0x023274,2, 0x023280,1, 0x023400,20, 0x023464,3, 0x023474,2, 0x023480,20, 0x0234e4,3, 0x0234f4,2, 0x023500,20, 0x023564,3, 0x023574,2, 0x023580,20, 0x0235e4,3, 0x0235f4,2, 0x023600,20, 0x023664,3, 0x023674,2, 0x023680,20, 0x0236e4,3, 0x0236f4,2, 0x023700,1, 0x023804,12, 0x023840,5, 0x02385c,13, 0x023900,3, 0x023910,7, 0x023930,4, 0x023944,1, 0x023954,3, 0x023964,4, 0x023978,5, 0x023990,2, 0x023a00,77, 0x023c00,31, 0x023c80,7, 0x023ca0,33, 0x023d40,6, 0x023d64,1, 0x023d70,16, 0x023dc0,14, 0x023e04,57, 0x024000,2, 0x024018,2, 0x024034,2, 0x024104,6, 0x024134,2, 0x02414c,1, 0x024170,3, 0x024200,1, 0x024210,2, 0x024220,1, 0x024230,2, 0x0242c0,1, 0x024400,64, 0x028000,1, 0x028010,2, 0x028020,3, 0x028030,7, 0x028100,7, 0x028120,3, 0x028130,2, 0x028404,1, 0x028414,3, 0x028424,1, 0x02842c,10, 0x028460,11, 0x028490,7, 0x0284b0,4, 0x0284c4,1, 0x0284cc,6, 0x0284f0,2, 0x028500,5, 0x028520,33, 0x0285b0,6, 0x028a00,1, 0x028a08,7, 0x028a2c,38, 0x028ac8,12, 0x028b00,1, 0x028b10,2, 0x028b20,8, 0x028b44,1, 0x028b60,8, 0x028b84,1, 0x028b94,3, 0x028ba4,1, 0x028bac,1, 0x028bb4,1, 0x028bbc,4, 0x028bd0,7, 0x028bf0,15, 0x028c30,6, 0x028c60,14, 0x028d04,1, 0x028d24,9, 0x028d60,1, 0x028d70,2, 0x028da0,2, 0x028db4,1, 0x028dbc,4, 0x028dd0,7, 0x028df0,15, 0x028e30,5, 0x028e60,14, 0x028f60,1, 0x028f70,2, 0x028fa0,2, 0x028fb4,1, 0x028fbc,4, 0x028fd0,7, 0x028ff0,132, 0x029204,1, 0x02921c,9, 0x029284,3, 0x029294,3, 0x029300,10, 0x02932c,10, 0x029500,3, 0x029520,25, 0x029594,13, 0x0295cc,6, 0x0295fc,2, 0x029610,2, 0x029804,1, 0x029814,3, 0x029824,1, 0x02982c,10, 0x029860,11, 0x029890,7, 0x0298b0,4, 0x0298c4,1, 0x0298cc,6, 0x0298f0,2, 0x029900,5, 0x029920,49, 0x029c04,1, 0x029c10,24, 0x029c80,1, 0x029c90,2, 0x029ca0,1, 0x029cb0,2, 0x029cc8,5, 0x029d00,22, 0x02a004,14, 0x02a040,7, 0x02a06c,3, 0x02a1fc,97, 0x02a400,96, 0x02a600,96, 0x02b000,20, 0x02b064,3, 0x02b074,2, 0x02b080,20, 0x02b0e4,3, 0x02b0f4,2, 0x02b100,20, 0x02b164,3, 0x02b174,2, 0x02b180,20, 0x02b1e4,3, 0x02b1f4,2, 0x02b200,20, 0x02b264,3, 0x02b274,2, 0x02b280,1, 0x02b400,20, 0x02b464,3, 0x02b474,2, 0x02b480,20, 0x02b4e4,3, 0x02b4f4,2, 0x02b500,20, 0x02b564,3, 0x02b574,2, 0x02b580,20, 0x02b5e4,3, 0x02b5f4,2, 0x02b600,20, 0x02b664,3, 0x02b674,2, 0x02b680,20, 0x02b6e4,3, 0x02b6f4,2, 0x02b700,1, 0x02b804,12, 0x02b840,5, 0x02b85c,13, 0x02b900,3, 0x02b910,7, 0x02b930,4, 0x02b944,1, 0x02b954,3, 0x02b964,4, 0x02b978,5, 0x02b990,2, 0x02ba00,77, 0x02bc00,31, 0x02bc80,7, 0x02bca0,33, 0x02bd40,6, 0x02bd64,1, 0x02bd70,16, 0x02bdc0,14, 0x02be04,57, 0x02c000,2, 0x02c018,2, 0x02c034,2, 0x02c104,6, 0x02c134,2, 0x02c14c,1, 0x02c170,3, 0x02c200,1, 0x02c210,2, 0x02c220,1, 0x02c230,2, 0x02c2c0,1, 0x02c400,64, 0x030000,2, 0x030018,2, 0x030034,2, 0x030104,3, 0x030134,2, 0x03014c,1, 0x030170,2, 0x030200,1, 0x030210,2, 0x030220,1, 0x030230,2, 0x030420,3, 0x030430,4, 0x030460,4, 0x030474,3, 0x030484,7, 0x0304a4,7, 0x0304c4,7, 0x0304e4,2, 0x0304f0,9, 0x03051c,5, 0x030584,7, 0x0305a4,7, 0x0305c4,7, 0x0305e4,11, 0x030620,1, 0x0306dc,9, 0x03071c,9, 0x03075c,9, 0x03079c,9, 0x0307dc,13, 0x030820,1, 0x03091c,9, 0x03095c,9, 0x03099c,9, 0x0309dc,13, 0x030a20,1, 0x030b1c,9, 0x030b5c,9, 0x030b9c,9, 0x030bdc,13, 0x030c20,1, 0x030d1c,9, 0x030d5c,9, 0x030d9c,9, 0x030ddc,9, 0x03100c,12, 0x031040,5, 0x03105c,5, 0x031074,3, 0x031088,42, 0x0311fc,49, 0x031300,3, 0x031330,12, 0x031400,14, 0x031440,12, 0x031480,5, 0x03149c,1, 0x031800,24, 0x031880,2, 0x031890,3, 0x0318a0,3, 0x0318b0,2, 0x031a00,1, 0x031a10,2, 0x031a20,1, 0x031a30,2, 0x031a40,1, 0x031a50,2, 0x031a80,1, 0x031a90,2, 0x031aa0,1, 0x031ab0,2, 0x031ac0,3, 0x031b04,1, 0x031b24,7, 0x031b44,1, 0x031b64,7, 0x031b84,1, 0x031ba4,7, 0x031bc4,1, 0x031be4,9, 0x031c0c,3, 0x031c40,16, 0x031d04,2, 0x031d18,10, 0x031d44,2, 0x031d58,10, 0x031d84,2, 0x031d98,10, 0x031dc4,2, 0x031dd8,10, 0x031e04,2, 0x031e18,2, 0x031e24,2, 0x031e38,2, 0x031e44,2, 0x031e58,2, 0x031e64,2, 0x031e78,2, 0x031f04,3, 0x031f14,3, 0x032010,3, 0x032020,1, 0x032028,13, 0x032060,5, 0x032078,15, 0x0320b8,1, 0x0320c0,3, 0x0320e0,3, 0x032100,3, 0x032110,3, 0x032120,3, 0x032130,3, 0x032140,3, 0x032150,3, 0x032160,3, 0x032170,3, 0x032180,3, 0x032200,33, 0x032290,29, 0x032308,10, 0x032334,2, 0x032340,9, 0x032368,2, 0x032380,27, 0x0323f0,1, 0x032400,10, 0x03242c,28, 0x0324a0,2, 0x0324b4,5, 0x0324d4,5, 0x0324f4,6, 0x032560,3, 0x032570,1, 0x0325fc,45, 0x032800,160, 0x032b00,1, 0x032c00,16, 0x032c44,1, 0x032c4c,3, 0x032c60,2, 0x032c6c,2, 0x032cc0,80, 0x032e04,3, 0x032e24,3, 0x032e34,3, 0x032e44,3, 0x032e54,3, 0x032e64,3, 0x032e74,3, 0x032e84,1, 0x032e90,4, 0x032ea4,1, 0x032eb0,4, 0x032ec4,1, 0x032ed0,4, 0x032ee4,1, 0x032ef0,4, 0x032f04,1, 0x032f10,4, 0x032f24,1, 0x032f30,4, 0x032f44,1, 0x032f50,4, 0x032f64,1, 0x032f70,4, 0x032f84,1, 0x032f90,4, 0x032fa4,1, 0x032fb0,4, 0x032fc4,1, 0x032fd0,4, 0x032fe4,1, 0x032ff0,4, 0x033c04,8, 0x033e00,1, 0x033e18,11, 0x033e58,11, 0x033e98,11, 0x033ed8,11, 0x033f10,13, 0x033f50,13, 0x033f90,13, 0x033fd0,14, 0x034018,2, 0x034034,2, 0x034104,3, 0x034134,2, 0x03414c,1, 0x034170,2, 0x034200,1, 0x034210,2, 0x034220,1, 0x034230,2, 0x034420,3, 0x034430,4, 0x034460,4, 0x034474,3, 0x034484,7, 0x0344a4,7, 0x0344c4,7, 0x0344e4,2, 0x0344f0,9, 0x03451c,5, 0x034584,7, 0x0345a4,7, 0x0345c4,7, 0x0345e4,11, 0x034620,1, 0x0346dc,9, 0x03471c,9, 0x03475c,9, 0x03479c,9, 0x0347dc,13, 0x034820,1, 0x03491c,9, 0x03495c,9, 0x03499c,9, 0x0349dc,13, 0x034a20,1, 0x034b1c,9, 0x034b5c,9, 0x034b9c,9, 0x034bdc,13, 0x034c20,1, 0x034d1c,9, 0x034d5c,9, 0x034d9c,9, 0x034ddc,9, 0x03500c,12, 0x035040,5, 0x03505c,5, 0x035074,3, 0x035088,42, 0x0351fc,49, 0x035300,3, 0x035330,12, 0x035400,14, 0x035440,12, 0x035480,5, 0x03549c,1, 0x035800,24, 0x035880,2, 0x035890,3, 0x0358a0,3, 0x0358b0,2, 0x035a00,1, 0x035a10,2, 0x035a20,1, 0x035a30,2, 0x035a40,1, 0x035a50,2, 0x035a80,1, 0x035a90,2, 0x035aa0,1, 0x035ab0,2, 0x035ac0,3, 0x035b04,1, 0x035b24,7, 0x035b44,1, 0x035b64,7, 0x035b84,1, 0x035ba4,7, 0x035bc4,1, 0x035be4,9, 0x035c0c,3, 0x035c40,16, 0x035d04,2, 0x035d18,10, 0x035d44,2, 0x035d58,10, 0x035d84,2, 0x035d98,10, 0x035dc4,2, 0x035dd8,10, 0x035e04,2, 0x035e18,2, 0x035e24,2, 0x035e38,2, 0x035e44,2, 0x035e58,2, 0x035e64,2, 0x035e78,2, 0x035f04,3, 0x035f14,3, 0x036010,3, 0x036020,1, 0x036028,13, 0x036060,5, 0x036078,15, 0x0360b8,1, 0x0360c0,3, 0x0360e0,3, 0x036100,3, 0x036110,3, 0x036120,3, 0x036130,3, 0x036140,3, 0x036150,3, 0x036160,3, 0x036170,3, 0x036180,3, 0x036200,33, 0x036290,29, 0x036308,10, 0x036334,2, 0x036340,9, 0x036368,2, 0x036380,27, 0x0363f0,1, 0x036400,10, 0x03642c,28, 0x0364a0,2, 0x0364b4,5, 0x0364d4,5, 0x0364f4,6, 0x036560,3, 0x036570,1, 0x0365fc,45, 0x036800,160, 0x036b00,1, 0x036c00,16, 0x036c44,1, 0x036c4c,3, 0x036c60,2, 0x036c6c,2, 0x036cc0,80, 0x036e04,3, 0x036e24,3, 0x036e34,3, 0x036e44,3, 0x036e54,3, 0x036e64,3, 0x036e74,3, 0x036e84,1, 0x036e90,4, 0x036ea4,1, 0x036eb0,4, 0x036ec4,1, 0x036ed0,4, 0x036ee4,1, 0x036ef0,4, 0x036f04,1, 0x036f10,4, 0x036f24,1, 0x036f30,4, 0x036f44,1, 0x036f50,4, 0x036f64,1, 0x036f70,4, 0x036f84,1, 0x036f90,4, 0x036fa4,1, 0x036fb0,4, 0x036fc4,1, 0x036fd0,4, 0x036fe4,1, 0x036ff0,4, 0x037c04,8, 0x037e00,1, 0x037e18,11, 0x037e58,11, 0x037e98,11, 0x037ed8,11, 0x037f10,13, 0x037f50,13, 0x037f90,13, 0x037fd0,21, 0x038030,3, 0x038040,3, 0x038080,9, 0x0380b0,3, 0x0380c0,3, 0x038100,9, 0x038130,3, 0x038140,3, 0x038180,9, 0x0381b0,3, 0x0381c0,3, 0x038200,9, 0x038230,3, 0x038240,3, 0x038280,9, 0x0382b0,3, 0x0382c0,3, 0x040000,3, 0x04001c,2, 0x040030,1, 0x040048,2, 0x040058,2, 0x040068,11, 0x04009c,2, 0x0400ac,14, 0x040180,1, 0x0401c0,1, 0x0401c8,2, 0x0401e0,1, 0x0401e8,3, 0x0401f8,1, 0x040200,3, 0x04021c,2, 0x040230,1, 0x040248,2, 0x040258,2, 0x040268,11, 0x04029c,2, 0x0402ac,14, 0x040380,1, 0x0403c0,1, 0x0403c8,2, 0x0403e0,1, 0x0403e8,3, 0x0403f8,1, 0x040400,3, 0x04041c,2, 0x040430,1, 0x040448,2, 0x040458,2, 0x040468,11, 0x04049c,2, 0x0404ac,14, 0x040580,1, 0x0405c0,1, 0x0405c8,2, 0x0405e0,1, 0x0405e8,3, 0x0405f8,1, 0x040600,3, 0x04061c,2, 0x040630,1, 0x040648,2, 0x040658,2, 0x040668,11, 0x04069c,2, 0x0406ac,14, 0x040780,1, 0x0407c0,1, 0x0407c8,2, 0x0407e0,1, 0x0407e8,3, 0x0407f8,1, 0x040800,128, 0x040a04,2, 0x040a18,2, 0x040c04,9, 0x040c44,2, 0x040c50,10, 0x040c7c,1, 0x040c84,1, 0x040c8c,6, 0x040cb0,3, 0x040cc0,1, 0x040cd0,2, 0x040ce0,1, 0x040cf0,2, 0x040d00,1, 0x040d10,2, 0x040d20,1, 0x040d30,2, 0x040d40,1, 0x040d50,2, 0x040d60,1, 0x040d70,2, 0x040d88,2, 0x040da0,1, 0x040dc8,2, 0x040de0,1, 0x040e08,2, 0x040e20,1, 0x040e48,2, 0x040e60,1, 0x040e88,2, 0x040ea0,1, 0x040ec8,2, 0x040ee0,1, 0x040f08,2, 0x040f20,1, 0x040f48,2, 0x040f60,1, 0x040f80,3, 0x040ffc,1, 0x041900,4, 0x041940,5, 0x042000,24, 0x042200,24, 0x042400,48, 0x042600,2, 0x042800,48, 0x042a00,2, 0x042fdc,1, 0x042fe4,1, 0x042ff4,3, 0x043010,4, 0x043030,7, 0x043100,11, 0x043140,7, 0x043160,2, 0x044000,8, 0x044040,8, 0x044080,8, 0x0440e8,2, 0x044100,64, 0x050040,4, 0x050060,3, 0x050070,16, 0x0500d8,14, 0x050120,3, 0x050130,29, 0x0501b8,6, 0x050200,36, 0x051100,14, 0x05113c,5, 0x051160,3, 0x051170,1, 0x0517fc,20, 0x051894,8, 0x0518b8,16, 0x051900,14, 0x053c00,18, 0x053c60,5, 0x053c8c,8, 0x053d00,1, 0x053e00,16, 0x053e60,5, 0x053e8c,8, 0x053f04,1, 0x053f0c,7, 0x053f40,1, 0x053ffc,6, 0x054020,1, 0x054030,1, 0x054040,1, 0x054050,1, 0x054060,1, 0x054070,1, 0x054080,1, 0x054090,1, 0x0540a0,1, 0x0540b0,1, 0x0540c0,1, 0x0540d0,1, 0x0540e0,1, 0x0540f0,1, 0x054100,1, 0x054110,1, 0x054120,1, 0x054130,1, 0x054140,1, 0x054150,1, 0x054160,1, 0x054170,1, 0x054180,1, 0x054190,1, 0x0541a0,1, 0x0541b0,1, 0x0541c0,1, 0x0541d0,1, 0x0541e0,1, 0x0541f0,1, 0x054200,1, 0x054210,1, 0x054220,1, 0x054230,1, 0x054240,1, 0x054250,1, 0x054260,1, 0x054270,1, 0x054280,1, 0x054290,1, 0x0542a0,1, 0x0542b0,1, 0x0542c0,1, 0x0542d0,1, 0x0542e0,1, 0x0542f0,1, 0x054300,1, 0x054310,1, 0x054320,1, 0x054330,1, 0x054340,1, 0x054350,1, 0x054360,1, 0x054370,1, 0x054380,1, 0x054390,1, 0x0543a0,1, 0x0543b0,1, 0x0543c0,1, 0x0543d0,1, 0x0543e0,1, 0x0543f0,1, 0x054400,1, 0x054410,1, 0x054420,1, 0x054430,1, 0x054440,1, 0x054450,1, 0x054460,1, 0x054470,1, 0x054480,1, 0x054490,1, 0x0544a0,1, 0x0544b0,1, 0x0544c0,1, 0x0544d0,1, 0x0544e0,1, 0x0544f0,1, 0x054500,1, 0x054510,1, 0x054520,1, 0x054530,1, 0x054540,1, 0x054550,1, 0x054560,1, 0x054570,1, 0x054580,1, 0x054590,1, 0x0545a0,1, 0x0545b0,1, 0x0545c0,1, 0x0545d0,1, 0x0545e0,1, 0x0545f0,1, 0x054600,1, 0x054610,1, 0x054620,1, 0x054630,1, 0x054640,1, 0x054650,1, 0x054660,1, 0x054670,1, 0x054680,1, 0x054690,1, 0x0546a0,1, 0x0546b0,1, 0x0546c0,1, 0x0546d0,1, 0x0546e0,1, 0x0546f0,1, 0x054700,1, 0x054710,1, 0x054720,1, 0x054730,1, 0x054740,1, 0x054750,1, 0x054760,1, 0x054770,1, 0x054780,1, 0x054790,1, 0x0547a0,1, 0x0547b0,1, 0x0547c0,1, 0x0547d0,1, 0x0547e0,1, 0x0547f0,1, 0x054800,1, 0x054810,1, 0x054820,1, 0x054830,1, 0x054840,1, 0x054850,1, 0x054860,1, 0x054870,1, 0x054880,1, 0x054890,1, 0x0548a0,1, 0x0548b0,1, 0x0548c0,1, 0x0548d0,1, 0x0548e0,1, 0x0548f0,1, 0x054900,1, 0x054910,1, 0x054920,1, 0x054930,1, 0x054940,1, 0x054950,1, 0x054960,1, 0x054970,1, 0x054980,1, 0x054990,1, 0x0549a0,1, 0x0549b0,1, 0x0549c0,1, 0x0549d0,1, 0x0549e0,1, 0x0549f0,1, 0x054a00,1, 0x054a10,1, 0x054a20,1, 0x054a30,1, 0x054a40,1, 0x054a50,1, 0x054a60,1, 0x054a70,1, 0x054a80,1, 0x054a90,1, 0x054aa0,1, 0x054ab0,1, 0x054ac0,1, 0x054ad0,1, 0x054ae0,1, 0x054af0,1, 0x054b00,1, 0x054b10,1, 0x054b20,1, 0x054b30,1, 0x054b40,1, 0x054b50,1, 0x054b60,1, 0x054b70,1, 0x054b80,1, 0x054b90,1, 0x054ba0,1, 0x054bb0,1, 0x054bc0,1, 0x054bd0,1, 0x054be0,1, 0x054bf0,1, 0x054c00,1, 0x054c10,1, 0x054c20,1, 0x054c30,1, 0x054c40,1, 0x054c50,1, 0x054c60,1, 0x054c70,1, 0x054c80,1, 0x054c90,1, 0x054ca0,1, 0x054cb0,1, 0x054cc0,1, 0x054cd0,1, 0x054ce0,1, 0x054cf0,1, 0x054d00,1, 0x054d10,1, 0x054d20,1, 0x054d30,1, 0x054d40,1, 0x054d50,1, 0x054d60,1, 0x054d70,1, 0x054d80,1, 0x054d90,1, 0x054da0,1, 0x054db0,1, 0x054dc0,1, 0x054dd0,1, 0x054de0,1, 0x054df0,1, 0x054e00,1, 0x054e10,1, 0x054e20,1, 0x054e30,1, 0x054e40,1, 0x054e50,1, 0x054e60,1, 0x054e70,1, 0x054e80,1, 0x054e90,1, 0x054ea0,1, 0x054eb0,1, 0x054ec0,1, 0x054ed0,1, 0x054ee0,1, 0x054ef0,1, 0x054f00,1, 0x054f10,1, 0x054f20,1, 0x054f30,1, 0x054f40,1, 0x054f50,1, 0x054f60,1, 0x054f70,1, 0x054f80,1, 0x054f90,1, 0x054fa0,1, 0x054fb0,1, 0x054fc0,1, 0x054fd0,1, 0x054fe0,1, 0x054ff0,1, 0x055000,8, 0x056000,5, 0x056020,1, 0x056030,1, 0x056040,1, 0x056050,1, 0x056060,1, 0x056070,1, 0x056080,1, 0x056090,1, 0x0560a0,1, 0x0560b0,1, 0x0560c0,1, 0x0560d0,1, 0x0560e0,1, 0x0560f0,1, 0x056100,1, 0x056110,1, 0x056120,1, 0x056130,1, 0x056140,1, 0x056150,1, 0x056160,1, 0x056170,1, 0x056180,1, 0x056190,1, 0x0561a0,1, 0x0561b0,1, 0x0561c0,1, 0x0561d0,1, 0x0561e0,1, 0x0561f0,1, 0x056200,1, 0x056210,1, 0x056220,1, 0x056230,1, 0x056240,1, 0x056250,1, 0x056260,1, 0x056270,1, 0x056280,1, 0x056290,1, 0x0562a0,1, 0x0562b0,1, 0x0562c0,1, 0x0562d0,1, 0x0562e0,1, 0x0562f0,1, 0x056300,1, 0x056310,1, 0x056320,1, 0x056330,1, 0x056340,1, 0x056350,1, 0x056360,1, 0x056370,1, 0x056380,1, 0x056390,1, 0x0563a0,1, 0x0563b0,1, 0x0563c0,1, 0x0563d0,1, 0x0563e0,1, 0x0563f0,1, 0x056400,1, 0x056410,1, 0x056420,1, 0x056430,1, 0x056440,1, 0x056450,1, 0x056460,1, 0x056470,1, 0x056480,1, 0x056490,1, 0x0564a0,1, 0x0564b0,1, 0x0564c0,1, 0x0564d0,1, 0x0564e0,1, 0x0564f0,1, 0x056500,1, 0x056510,1, 0x056520,1, 0x056530,1, 0x056540,1, 0x056550,1, 0x056560,1, 0x056570,1, 0x056580,1, 0x056590,1, 0x0565a0,1, 0x0565b0,1, 0x0565c0,1, 0x0565d0,1, 0x0565e0,1, 0x0565f0,1, 0x056600,1, 0x056610,1, 0x056620,1, 0x056630,1, 0x056640,1, 0x056650,1, 0x056660,1, 0x056670,1, 0x056680,1, 0x056690,1, 0x0566a0,1, 0x0566b0,1, 0x0566c0,1, 0x0566d0,1, 0x0566e0,1, 0x0566f0,1, 0x056700,1, 0x056710,1, 0x056720,1, 0x056730,1, 0x056740,1, 0x056750,1, 0x056760,1, 0x056770,1, 0x056780,1, 0x056790,1, 0x0567a0,1, 0x0567b0,1, 0x0567c0,1, 0x0567d0,1, 0x0567e0,1, 0x0567f0,1, 0x056800,1, 0x056810,1, 0x056820,1, 0x056830,1, 0x056840,1, 0x056850,1, 0x056860,1, 0x056870,1, 0x056880,1, 0x056890,1, 0x0568a0,1, 0x0568b0,1, 0x0568c0,1, 0x0568d0,1, 0x0568e0,1, 0x0568f0,1, 0x056900,1, 0x056910,1, 0x056920,1, 0x056930,1, 0x056940,1, 0x056950,1, 0x056960,1, 0x056970,1, 0x056980,1, 0x056990,1, 0x0569a0,1, 0x0569b0,1, 0x0569c0,1, 0x0569d0,1, 0x0569e0,1, 0x0569f0,1, 0x056a00,1, 0x056a10,1, 0x056a20,1, 0x056a30,1, 0x056a40,1, 0x056a50,1, 0x056a60,1, 0x056a70,1, 0x056a80,1, 0x056a90,1, 0x056aa0,1, 0x056ab0,1, 0x056ac0,1, 0x056ad0,1, 0x056ae0,1, 0x056af0,1, 0x056b00,1, 0x056b10,1, 0x056b20,1, 0x056b30,1, 0x056b40,1, 0x056b50,1, 0x056b60,1, 0x056b70,1, 0x056b80,1, 0x056b90,1, 0x056ba0,1, 0x056bb0,1, 0x056bc0,1, 0x056bd0,1, 0x056be0,1, 0x056bf0,1, 0x056c00,1, 0x056c10,1, 0x056c20,1, 0x056c30,1, 0x056c40,1, 0x056c50,1, 0x056c60,1, 0x056c70,1, 0x056c80,1, 0x056c90,1, 0x056ca0,1, 0x056cb0,1, 0x056cc0,1, 0x056cd0,1, 0x056ce0,1, 0x056cf0,1, 0x056d00,1, 0x056d10,1, 0x056d20,1, 0x056d30,1, 0x056d40,1, 0x056d50,1, 0x056d60,1, 0x056d70,1, 0x056d80,1, 0x056d90,1, 0x056da0,1, 0x056db0,1, 0x056dc0,1, 0x056dd0,1, 0x056de0,1, 0x056df0,1, 0x056e00,1, 0x056e10,1, 0x056e20,1, 0x056e30,1, 0x056e40,1, 0x056e50,1, 0x056e60,1, 0x056e70,1, 0x056e80,1, 0x056e90,1, 0x056ea0,1, 0x056eb0,1, 0x056ec0,1, 0x056ed0,1, 0x056ee0,1, 0x056ef0,1, 0x056f00,1, 0x056f10,1, 0x056f20,1, 0x056f30,1, 0x056f40,1, 0x056f50,1, 0x056f60,1, 0x056f70,1, 0x056f80,1, 0x056f90,1, 0x056fa0,1, 0x056fb0,1, 0x056fc0,1, 0x056fd0,1, 0x056fe0,1, 0x056ff0,1, 0x057000,16, 0x057100,8, 0x057124,7, 0x057144,7, 0x057200,3, 0x0577f8,2, 0x058000,3, 0x058018,3, 0x058034,3, 0x058104,6, 0x058134,3, 0x05814c,1, 0x058170,3, 0x058200,1, 0x058210,2, 0x058220,1, 0x058230,2, 0x058240,1, 0x058250,2, 0x058400,32, 0x058484,4, 0x060000,16384, 0x070200,28, 0x070284,1, 0x070290,4, 0x070300,1, 0x070314,4, 0x070c00,1, 0x070c24,1, 0x070c2c,1, 0x070c40,2, 0x070e00,12, 0x070e34,1, 0x070e40,1, 0x070e50,2, 0x071000,7, 0x072000,7, 0x073000,840, 0x074004,3, 0x074200,1, 0x074210,2, 0x074220,1, 0x074230,2, 0x074480,16, 0x0744c4,35, 0x074560,15, 0x080000,2, 0x080018,2, 0x080034,2, 0x080104,3, 0x080134,2, 0x08014c,1, 0x080170,2, 0x080200,1, 0x080210,2, 0x080220,1, 0x080230,2, 0x080400,1, 0x080410,2, 0x080420,3, 0x080430,22, 0x0804ac,1, 0x0804c0,6, 0x080500,1, 0x080510,2, 0x080520,3, 0x080540,8, 0x080580,6, 0x0805a0,6, 0x080600,10, 0x080640,10, 0x080680,10, 0x0806c0,10, 0x080700,10, 0x080740,10, 0x080800,5, 0x080820,5, 0x080890,10, 0x0808e0,1, 0x0808f0,2, 0x080900,5, 0x080920,5, 0x080990,10, 0x0809e0,1, 0x0809f0,2, 0x080a00,1, 0x080a10,2, 0x080a20,1, 0x080a30,2, 0x080a48,3, 0x080a80,3, 0x080a90,1, 0x080a98,12, 0x080b04,2, 0x080b14,3, 0x080b24,2, 0x080b34,3, 0x080b80,5, 0x080b98,3, 0x080bb0,2, 0x080bc0,5, 0x080bd8,3, 0x080bf0,2, 0x080c00,10, 0x080c2c,12, 0x080c80,26, 0x080d00,2, 0x080d20,1, 0x080e00,10, 0x080e2c,12, 0x080e80,26, 0x080f00,2, 0x080f20,1, 0x081000,5, 0x081020,5, 0x081090,10, 0x0810e0,1, 0x0810f0,2, 0x081100,5, 0x081120,5, 0x081190,10, 0x0811e0,1, 0x0811f0,2, 0x081200,1, 0x081210,2, 0x081220,1, 0x081230,2, 0x081248,3, 0x081280,3, 0x081290,1, 0x081298,12, 0x081304,2, 0x081314,3, 0x081324,2, 0x081334,3, 0x081380,5, 0x081398,3, 0x0813b0,2, 0x0813c0,5, 0x0813d8,3, 0x0813f0,2, 0x081400,10, 0x08142c,12, 0x081480,26, 0x081500,2, 0x081520,1, 0x081600,10, 0x08162c,12, 0x081680,26, 0x081700,2, 0x081720,1, 0x081800,5, 0x081820,5, 0x081890,10, 0x0818e0,1, 0x0818f0,2, 0x081900,5, 0x081920,5, 0x081990,10, 0x0819e0,1, 0x0819f0,2, 0x081a00,1, 0x081a10,2, 0x081a20,1, 0x081a30,2, 0x081a48,3, 0x081a80,3, 0x081a90,1, 0x081a98,12, 0x081b04,2, 0x081b14,3, 0x081b24,2, 0x081b34,3, 0x081b80,5, 0x081b98,3, 0x081bb0,2, 0x081bc0,5, 0x081bd8,3, 0x081bf0,2, 0x081c00,10, 0x081c2c,12, 0x081c80,26, 0x081d00,2, 0x081d20,1, 0x081e00,10, 0x081e2c,12, 0x081e80,26, 0x081f00,2, 0x081f20,1, 0x082000,7, 0x082020,8, 0x082044,8, 0x082080,7, 0x0820a0,8, 0x0820c4,8, 0x082100,7, 0x082120,8, 0x082144,8, 0x082180,7, 0x0821a0,8, 0x0821c4,8, 0x082200,7, 0x082220,8, 0x082244,8, 0x082280,7, 0x0822a0,8, 0x0822c4,8, 0x082400,1, 0x082418,1, 0x082434,1, 0x082504,1, 0x082534,1, 0x08254c,1, 0x082570,2, 0x082600,1, 0x082610,2, 0x082804,15, 0x082844,15, 0x082884,15, 0x0828c4,15, 0x082904,15, 0x082944,16, 0x082990,2, 0x0829a0,1, 0x0829b0,2, 0x0829c0,2, 0x082a00,400, 0x083080,28, 0x083100,28, 0x083184,2, 0x083194,3, 0x0831a4,2, 0x0831b4,10, 0x083200,7, 0x083260,20, 0x0832c0,2, 0x0832cc,2, 0x0832d8,3, 0x083300,1, 0x083310,2, 0x083320,1, 0x083330,2, 0x083340,1, 0x083350,2, 0x083360,1, 0x083370,2, 0x083380,1, 0x083400,16, 0x083480,28, 0x083500,28, 0x083584,2, 0x083594,3, 0x0835a4,2, 0x0835b4,10, 0x083600,7, 0x083660,20, 0x0836c0,2, 0x0836cc,2, 0x0836d8,3, 0x083700,1, 0x083710,2, 0x083720,1, 0x083730,2, 0x083740,1, 0x083750,2, 0x083760,1, 0x083770,2, 0x083780,1, 0x083800,16, 0x083880,28, 0x083900,28, 0x083984,2, 0x083994,3, 0x0839a4,2, 0x0839b4,10, 0x083a00,7, 0x083a60,20, 0x083ac0,2, 0x083acc,2, 0x083ad8,3, 0x083b00,1, 0x083b10,2, 0x083b20,1, 0x083b30,2, 0x083b40,1, 0x083b50,2, 0x083b60,1, 0x083b70,2, 0x083b80,1, 0x083c00,18, 0x083c60,5, 0x083c78,7, 0x083c98,6, 0x083ce0,3, 0x083d04,7, 0x083d30,1, 0x083d44,7, 0x083d70,1, 0x083d84,7, 0x083db0,1, 0x083dc4,7, 0x083df0,1, 0x083e04,7, 0x083e30,1, 0x083e44,7, 0x083e70,1, 0x083e84,7, 0x083eb0,1, 0x083ec4,7, 0x083ef0,1, 0x083f00,1, 0x083f24,1, 0x083f30,4, 0x083f44,1, 0x083f50,4, 0x083fa0,3, 0x084000,5, 0x084018,3, 0x084080,2, 0x08408c,1, 0x0840a0,9, 0x0840d0,2, 0x0840e0,1, 0x0840e8,1, 0x084100,2, 0x08410c,1, 0x084120,9, 0x084150,2, 0x084160,1, 0x084168,1, 0x084180,2, 0x08418c,1, 0x0841a0,9, 0x0841d0,2, 0x0841e0,1, 0x0841e8,1, 0x084200,2, 0x08420c,1, 0x084220,9, 0x084250,2, 0x084260,1, 0x084268,1, 0x084284,2, 0x0842a8,2, 0x0842b4,1, 0x0842c4,2, 0x0842e8,2, 0x0842f4,1, 0x084400,3, 0x084410,15, 0x084450,16, 0x08449c,1, 0x0844b0,9, 0x0844e0,1, 0x0844f0,3, 0x084500,12, 0x084534,4, 0x084558,1, 0x084580,1, 0x084594,2, 0x0845ac,11, 0x0845ec,4, 0x084600,15, 0x084640,3, 0x084650,3, 0x084660,1, 0x084670,2, 0x084680,1, 0x084690,2, 0x0846c0,4, 0x0846d4,8, 0x084700,4, 0x084714,8, 0x084800,5, 0x084818,3, 0x084880,2, 0x08488c,1, 0x0848a0,9, 0x0848d0,2, 0x0848e0,1, 0x0848e8,1, 0x084900,2, 0x08490c,1, 0x084920,9, 0x084950,2, 0x084960,1, 0x084968,1, 0x084980,2, 0x08498c,1, 0x0849a0,9, 0x0849d0,2, 0x0849e0,1, 0x0849e8,1, 0x084a00,2, 0x084a0c,1, 0x084a20,9, 0x084a50,2, 0x084a60,1, 0x084a68,1, 0x084a84,2, 0x084aa8,2, 0x084ab4,1, 0x084ac4,2, 0x084ae8,2, 0x084af4,1, 0x084c00,3, 0x084c10,15, 0x084c50,16, 0x084c9c,1, 0x084cb0,9, 0x084ce0,1, 0x084cf0,3, 0x084d00,12, 0x084d34,4, 0x084d58,1, 0x084d80,1, 0x084d94,2, 0x084dac,11, 0x084dec,4, 0x084e00,15, 0x084e40,3, 0x084e50,3, 0x084e60,1, 0x084e70,2, 0x084e80,1, 0x084e90,2, 0x084ec0,4, 0x084ed4,8, 0x084f00,4, 0x084f14,8, 0x085000,5, 0x085018,3, 0x085080,2, 0x08508c,1, 0x0850a0,9, 0x0850d0,2, 0x0850e0,1, 0x0850e8,1, 0x085100,2, 0x08510c,1, 0x085120,9, 0x085150,2, 0x085160,1, 0x085168,1, 0x085180,2, 0x08518c,1, 0x0851a0,9, 0x0851d0,2, 0x0851e0,1, 0x0851e8,1, 0x085200,2, 0x08520c,1, 0x085220,9, 0x085250,2, 0x085260,1, 0x085268,1, 0x085284,2, 0x0852a8,2, 0x0852b4,1, 0x0852c4,2, 0x0852e8,2, 0x0852f4,1, 0x085400,3, 0x085410,15, 0x085450,16, 0x08549c,1, 0x0854b0,9, 0x0854e0,1, 0x0854f0,3, 0x085500,12, 0x085534,4, 0x085558,1, 0x085580,1, 0x085594,2, 0x0855ac,11, 0x0855ec,4, 0x085600,15, 0x085640,3, 0x085650,3, 0x085660,1, 0x085670,2, 0x085680,1, 0x085690,2, 0x0856c0,4, 0x0856d4,8, 0x085700,4, 0x085714,8, 0x085800,31, 0x085880,8, 0x0858a4,1, 0x0858b4,20, 0x085910,2, 0x085920,3, 0x085934,1, 0x08593c,2, 0x085950,2, 0x085a00,11, 0x085a4c,8, 0x085a70,2, 0x085a7c,33, 0x085c00,8, 0x085c40,2, 0x085c4c,11, 0x085c80,8, 0x085cc0,2, 0x085ccc,11, 0x085d00,8, 0x085d40,2, 0x085d4c,11, 0x085d80,8, 0x085dc0,2, 0x085dcc,11, 0x085e00,8, 0x085e40,2, 0x085e4c,11, 0x085e80,8, 0x085ec0,2, 0x085ecc,11, 0x085f00,9, 0x085f30,2, 0x085f40,49, 0x086018,1, 0x086034,1, 0x086104,1, 0x086134,1, 0x08614c,1, 0x086170,2, 0x086200,1, 0x086210,2, 0x086400,5, 0x086418,9, 0x086440,5, 0x086460,1, 0x086470,2, 0x086500,5, 0x086518,9, 0x086540,5, 0x086560,1, 0x086570,2, 0x086600,5, 0x086618,9, 0x086640,5, 0x086660,1, 0x086670,2, 0x086700,1, 0x086800,6, 0x08681c,3, 0x08682c,3, 0x08683c,8, 0x086860,1, 0x086868,1, 0x086870,2, 0x086880,1, 0x086890,2, 0x0868a0,1, 0x0868b0,2, 0x0868c0,1, 0x0868d0,2, 0x0868e0,1, 0x0868f0,2, 0x086900,29, 0x086980,27, 0x0869f0,1, 0x086c00,6, 0x086c1c,3, 0x086c2c,3, 0x086c3c,8, 0x086c60,1, 0x086c68,1, 0x086c70,2, 0x086c80,1, 0x086c90,2, 0x086ca0,1, 0x086cb0,2, 0x086cc0,1, 0x086cd0,2, 0x086ce0,1, 0x086cf0,2, 0x086d00,29, 0x086d80,27, 0x086df0,1, 0x087000,6, 0x08701c,3, 0x08702c,3, 0x08703c,8, 0x087060,1, 0x087068,1, 0x087070,2, 0x087080,1, 0x087090,2, 0x0870a0,1, 0x0870b0,2, 0x0870c0,1, 0x0870d0,2, 0x0870e0,1, 0x0870f0,2, 0x087100,29, 0x087180,27, 0x0871f0,1, 0x087400,6, 0x08741c,3, 0x08742c,3, 0x08743c,8, 0x087460,1, 0x087468,1, 0x087470,2, 0x087480,1, 0x087490,2, 0x0874a0,1, 0x0874b0,2, 0x0874c0,1, 0x0874d0,2, 0x0874e0,1, 0x0874f0,2, 0x087500,29, 0x087580,27, 0x0875f0,1, 0x087800,6, 0x08781c,3, 0x08782c,3, 0x08783c,8, 0x087860,1, 0x087868,1, 0x087870,2, 0x087880,1, 0x087890,2, 0x0878a0,1, 0x0878b0,2, 0x0878c0,1, 0x0878d0,2, 0x0878e0,1, 0x0878f0,2, 0x087900,29, 0x087980,27, 0x0879f0,1, 0x087c00,6, 0x087c1c,3, 0x087c2c,3, 0x087c3c,8, 0x087c60,1, 0x087c68,1, 0x087c70,2, 0x087c80,1, 0x087c90,2, 0x087ca0,1, 0x087cb0,2, 0x087cc0,1, 0x087cd0,2, 0x087ce0,1, 0x087cf0,2, 0x087d00,29, 0x087d80,27, 0x087df0,1, 0x088000,2, 0x088018,2, 0x088034,2, 0x088104,3, 0x088134,2, 0x08814c,1, 0x088170,2, 0x088200,1, 0x088210,2, 0x088220,1, 0x088230,2, 0x088400,1, 0x088410,2, 0x088420,3, 0x088430,22, 0x0884ac,1, 0x0884c0,6, 0x088500,1, 0x088510,2, 0x088520,3, 0x088540,8, 0x088580,6, 0x0885a0,6, 0x088600,10, 0x088640,10, 0x088680,10, 0x0886c0,10, 0x088700,10, 0x088740,10, 0x088800,5, 0x088820,5, 0x088890,10, 0x0888e0,1, 0x0888f0,2, 0x088900,5, 0x088920,5, 0x088990,10, 0x0889e0,1, 0x0889f0,2, 0x088a00,1, 0x088a10,2, 0x088a20,1, 0x088a30,2, 0x088a48,3, 0x088a80,3, 0x088a90,1, 0x088a98,12, 0x088b04,2, 0x088b14,3, 0x088b24,2, 0x088b34,3, 0x088b80,5, 0x088b98,3, 0x088bb0,2, 0x088bc0,5, 0x088bd8,3, 0x088bf0,2, 0x088c00,10, 0x088c2c,12, 0x088c80,26, 0x088d00,2, 0x088d20,1, 0x088e00,10, 0x088e2c,12, 0x088e80,26, 0x088f00,2, 0x088f20,1, 0x089000,5, 0x089020,5, 0x089090,10, 0x0890e0,1, 0x0890f0,2, 0x089100,5, 0x089120,5, 0x089190,10, 0x0891e0,1, 0x0891f0,2, 0x089200,1, 0x089210,2, 0x089220,1, 0x089230,2, 0x089248,3, 0x089280,3, 0x089290,1, 0x089298,12, 0x089304,2, 0x089314,3, 0x089324,2, 0x089334,3, 0x089380,5, 0x089398,3, 0x0893b0,2, 0x0893c0,5, 0x0893d8,3, 0x0893f0,2, 0x089400,10, 0x08942c,12, 0x089480,26, 0x089500,2, 0x089520,1, 0x089600,10, 0x08962c,12, 0x089680,26, 0x089700,2, 0x089720,1, 0x089800,5, 0x089820,5, 0x089890,10, 0x0898e0,1, 0x0898f0,2, 0x089900,5, 0x089920,5, 0x089990,10, 0x0899e0,1, 0x0899f0,2, 0x089a00,1, 0x089a10,2, 0x089a20,1, 0x089a30,2, 0x089a48,3, 0x089a80,3, 0x089a90,1, 0x089a98,12, 0x089b04,2, 0x089b14,3, 0x089b24,2, 0x089b34,3, 0x089b80,5, 0x089b98,3, 0x089bb0,2, 0x089bc0,5, 0x089bd8,3, 0x089bf0,2, 0x089c00,10, 0x089c2c,12, 0x089c80,26, 0x089d00,2, 0x089d20,1, 0x089e00,10, 0x089e2c,12, 0x089e80,26, 0x089f00,2, 0x089f20,1, 0x08a000,7, 0x08a020,8, 0x08a044,8, 0x08a080,7, 0x08a0a0,8, 0x08a0c4,8, 0x08a100,7, 0x08a120,8, 0x08a144,8, 0x08a180,7, 0x08a1a0,8, 0x08a1c4,8, 0x08a200,7, 0x08a220,8, 0x08a244,8, 0x08a280,7, 0x08a2a0,8, 0x08a2c4,8, 0x08a400,1, 0x08a418,1, 0x08a434,1, 0x08a504,1, 0x08a534,1, 0x08a54c,1, 0x08a570,2, 0x08a600,1, 0x08a610,2, 0x08a804,15, 0x08a844,15, 0x08a884,15, 0x08a8c4,15, 0x08a904,15, 0x08a944,16, 0x08a990,2, 0x08a9a0,1, 0x08a9b0,2, 0x08a9c0,2, 0x08aa00,400, 0x08b080,28, 0x08b100,28, 0x08b184,2, 0x08b194,3, 0x08b1a4,2, 0x08b1b4,10, 0x08b200,7, 0x08b260,20, 0x08b2c0,2, 0x08b2cc,2, 0x08b2d8,3, 0x08b300,1, 0x08b310,2, 0x08b320,1, 0x08b330,2, 0x08b340,1, 0x08b350,2, 0x08b360,1, 0x08b370,2, 0x08b380,1, 0x08b400,16, 0x08b480,28, 0x08b500,28, 0x08b584,2, 0x08b594,3, 0x08b5a4,2, 0x08b5b4,10, 0x08b600,7, 0x08b660,20, 0x08b6c0,2, 0x08b6cc,2, 0x08b6d8,3, 0x08b700,1, 0x08b710,2, 0x08b720,1, 0x08b730,2, 0x08b740,1, 0x08b750,2, 0x08b760,1, 0x08b770,2, 0x08b780,1, 0x08b800,16, 0x08b880,28, 0x08b900,28, 0x08b984,2, 0x08b994,3, 0x08b9a4,2, 0x08b9b4,10, 0x08ba00,7, 0x08ba60,20, 0x08bac0,2, 0x08bacc,2, 0x08bad8,3, 0x08bb00,1, 0x08bb10,2, 0x08bb20,1, 0x08bb30,2, 0x08bb40,1, 0x08bb50,2, 0x08bb60,1, 0x08bb70,2, 0x08bb80,1, 0x08bc00,18, 0x08bc60,5, 0x08bc78,7, 0x08bc98,6, 0x08bce0,3, 0x08bd04,7, 0x08bd30,1, 0x08bd44,7, 0x08bd70,1, 0x08bd84,7, 0x08bdb0,1, 0x08bdc4,7, 0x08bdf0,1, 0x08be04,7, 0x08be30,1, 0x08be44,7, 0x08be70,1, 0x08be84,7, 0x08beb0,1, 0x08bec4,7, 0x08bef0,1, 0x08bf00,1, 0x08bf24,1, 0x08bf30,4, 0x08bf44,1, 0x08bf50,4, 0x08bfa0,3, 0x08c000,5, 0x08c018,3, 0x08c080,2, 0x08c08c,1, 0x08c0a0,9, 0x08c0d0,2, 0x08c0e0,1, 0x08c0e8,1, 0x08c100,2, 0x08c10c,1, 0x08c120,9, 0x08c150,2, 0x08c160,1, 0x08c168,1, 0x08c180,2, 0x08c18c,1, 0x08c1a0,9, 0x08c1d0,2, 0x08c1e0,1, 0x08c1e8,1, 0x08c200,2, 0x08c20c,1, 0x08c220,9, 0x08c250,2, 0x08c260,1, 0x08c268,1, 0x08c284,2, 0x08c2a8,2, 0x08c2b4,1, 0x08c2c4,2, 0x08c2e8,2, 0x08c2f4,1, 0x08c400,3, 0x08c410,15, 0x08c450,16, 0x08c49c,1, 0x08c4b0,9, 0x08c4e0,1, 0x08c4f0,3, 0x08c500,12, 0x08c534,4, 0x08c558,1, 0x08c580,1, 0x08c594,2, 0x08c5ac,11, 0x08c5ec,4, 0x08c600,15, 0x08c640,3, 0x08c650,3, 0x08c660,1, 0x08c670,2, 0x08c680,1, 0x08c690,2, 0x08c6c0,4, 0x08c6d4,8, 0x08c700,4, 0x08c714,8, 0x08c800,5, 0x08c818,3, 0x08c880,2, 0x08c88c,1, 0x08c8a0,9, 0x08c8d0,2, 0x08c8e0,1, 0x08c8e8,1, 0x08c900,2, 0x08c90c,1, 0x08c920,9, 0x08c950,2, 0x08c960,1, 0x08c968,1, 0x08c980,2, 0x08c98c,1, 0x08c9a0,9, 0x08c9d0,2, 0x08c9e0,1, 0x08c9e8,1, 0x08ca00,2, 0x08ca0c,1, 0x08ca20,9, 0x08ca50,2, 0x08ca60,1, 0x08ca68,1, 0x08ca84,2, 0x08caa8,2, 0x08cab4,1, 0x08cac4,2, 0x08cae8,2, 0x08caf4,1, 0x08cc00,3, 0x08cc10,15, 0x08cc50,16, 0x08cc9c,1, 0x08ccb0,9, 0x08cce0,1, 0x08ccf0,3, 0x08cd00,12, 0x08cd34,4, 0x08cd58,1, 0x08cd80,1, 0x08cd94,2, 0x08cdac,11, 0x08cdec,4, 0x08ce00,15, 0x08ce40,3, 0x08ce50,3, 0x08ce60,1, 0x08ce70,2, 0x08ce80,1, 0x08ce90,2, 0x08cec0,4, 0x08ced4,8, 0x08cf00,4, 0x08cf14,8, 0x08d000,5, 0x08d018,3, 0x08d080,2, 0x08d08c,1, 0x08d0a0,9, 0x08d0d0,2, 0x08d0e0,1, 0x08d0e8,1, 0x08d100,2, 0x08d10c,1, 0x08d120,9, 0x08d150,2, 0x08d160,1, 0x08d168,1, 0x08d180,2, 0x08d18c,1, 0x08d1a0,9, 0x08d1d0,2, 0x08d1e0,1, 0x08d1e8,1, 0x08d200,2, 0x08d20c,1, 0x08d220,9, 0x08d250,2, 0x08d260,1, 0x08d268,1, 0x08d284,2, 0x08d2a8,2, 0x08d2b4,1, 0x08d2c4,2, 0x08d2e8,2, 0x08d2f4,1, 0x08d400,3, 0x08d410,15, 0x08d450,16, 0x08d49c,1, 0x08d4b0,9, 0x08d4e0,1, 0x08d4f0,3, 0x08d500,12, 0x08d534,4, 0x08d558,1, 0x08d580,1, 0x08d594,2, 0x08d5ac,11, 0x08d5ec,4, 0x08d600,15, 0x08d640,3, 0x08d650,3, 0x08d660,1, 0x08d670,2, 0x08d680,1, 0x08d690,2, 0x08d6c0,4, 0x08d6d4,8, 0x08d700,4, 0x08d714,8, 0x08d800,31, 0x08d880,8, 0x08d8a4,1, 0x08d8b4,20, 0x08d910,2, 0x08d920,3, 0x08d934,1, 0x08d93c,2, 0x08d950,2, 0x08da00,11, 0x08da4c,8, 0x08da70,2, 0x08da7c,33, 0x08dc00,8, 0x08dc40,2, 0x08dc4c,11, 0x08dc80,8, 0x08dcc0,2, 0x08dccc,11, 0x08dd00,8, 0x08dd40,2, 0x08dd4c,11, 0x08dd80,8, 0x08ddc0,2, 0x08ddcc,11, 0x08de00,8, 0x08de40,2, 0x08de4c,11, 0x08de80,8, 0x08dec0,2, 0x08decc,11, 0x08df00,9, 0x08df30,2, 0x08df40,49, 0x08e018,1, 0x08e034,1, 0x08e104,1, 0x08e134,1, 0x08e14c,1, 0x08e170,2, 0x08e200,1, 0x08e210,2, 0x08e400,5, 0x08e418,9, 0x08e440,5, 0x08e460,1, 0x08e470,2, 0x08e500,5, 0x08e518,9, 0x08e540,5, 0x08e560,1, 0x08e570,2, 0x08e600,5, 0x08e618,9, 0x08e640,5, 0x08e660,1, 0x08e670,2, 0x08e700,1, 0x08e800,6, 0x08e81c,3, 0x08e82c,3, 0x08e83c,8, 0x08e860,1, 0x08e868,1, 0x08e870,2, 0x08e880,1, 0x08e890,2, 0x08e8a0,1, 0x08e8b0,2, 0x08e8c0,1, 0x08e8d0,2, 0x08e8e0,1, 0x08e8f0,2, 0x08e900,29, 0x08e980,27, 0x08e9f0,1, 0x08ec00,6, 0x08ec1c,3, 0x08ec2c,3, 0x08ec3c,8, 0x08ec60,1, 0x08ec68,1, 0x08ec70,2, 0x08ec80,1, 0x08ec90,2, 0x08eca0,1, 0x08ecb0,2, 0x08ecc0,1, 0x08ecd0,2, 0x08ece0,1, 0x08ecf0,2, 0x08ed00,29, 0x08ed80,27, 0x08edf0,1, 0x08f000,6, 0x08f01c,3, 0x08f02c,3, 0x08f03c,8, 0x08f060,1, 0x08f068,1, 0x08f070,2, 0x08f080,1, 0x08f090,2, 0x08f0a0,1, 0x08f0b0,2, 0x08f0c0,1, 0x08f0d0,2, 0x08f0e0,1, 0x08f0f0,2, 0x08f100,29, 0x08f180,27, 0x08f1f0,1, 0x08f400,6, 0x08f41c,3, 0x08f42c,3, 0x08f43c,8, 0x08f460,1, 0x08f468,1, 0x08f470,2, 0x08f480,1, 0x08f490,2, 0x08f4a0,1, 0x08f4b0,2, 0x08f4c0,1, 0x08f4d0,2, 0x08f4e0,1, 0x08f4f0,2, 0x08f500,29, 0x08f580,27, 0x08f5f0,1, 0x08f800,6, 0x08f81c,3, 0x08f82c,3, 0x08f83c,8, 0x08f860,1, 0x08f868,1, 0x08f870,2, 0x08f880,1, 0x08f890,2, 0x08f8a0,1, 0x08f8b0,2, 0x08f8c0,1, 0x08f8d0,2, 0x08f8e0,1, 0x08f8f0,2, 0x08f900,29, 0x08f980,27, 0x08f9f0,1, 0x08fc00,6, 0x08fc1c,3, 0x08fc2c,3, 0x08fc3c,8, 0x08fc60,1, 0x08fc68,1, 0x08fc70,2, 0x08fc80,1, 0x08fc90,2, 0x08fca0,1, 0x08fcb0,2, 0x08fcc0,1, 0x08fcd0,2, 0x08fce0,1, 0x08fcf0,2, 0x08fd00,29, 0x08fd80,27, 0x08fdf0,1, 0x090000,2, 0x090018,2, 0x090034,2, 0x090104,3, 0x090134,2, 0x09014c,1, 0x090170,2, 0x090200,1, 0x090210,2, 0x090220,1, 0x090230,2, 0x090400,1, 0x090410,2, 0x090420,3, 0x090430,22, 0x0904ac,1, 0x0904c0,6, 0x090500,1, 0x090510,2, 0x090520,3, 0x090540,8, 0x090580,6, 0x0905a0,6, 0x090600,10, 0x090640,10, 0x090680,10, 0x0906c0,10, 0x090700,10, 0x090740,10, 0x090800,5, 0x090820,5, 0x090890,10, 0x0908e0,1, 0x0908f0,2, 0x090900,5, 0x090920,5, 0x090990,10, 0x0909e0,1, 0x0909f0,2, 0x090a00,1, 0x090a10,2, 0x090a20,1, 0x090a30,2, 0x090a48,3, 0x090a80,3, 0x090a90,1, 0x090a98,12, 0x090b04,2, 0x090b14,3, 0x090b24,2, 0x090b34,3, 0x090b80,5, 0x090b98,3, 0x090bb0,2, 0x090bc0,5, 0x090bd8,3, 0x090bf0,2, 0x090c00,10, 0x090c2c,12, 0x090c80,26, 0x090d00,2, 0x090d20,1, 0x090e00,10, 0x090e2c,12, 0x090e80,26, 0x090f00,2, 0x090f20,1, 0x091000,5, 0x091020,5, 0x091090,10, 0x0910e0,1, 0x0910f0,2, 0x091100,5, 0x091120,5, 0x091190,10, 0x0911e0,1, 0x0911f0,2, 0x091200,1, 0x091210,2, 0x091220,1, 0x091230,2, 0x091248,3, 0x091280,3, 0x091290,1, 0x091298,12, 0x091304,2, 0x091314,3, 0x091324,2, 0x091334,3, 0x091380,5, 0x091398,3, 0x0913b0,2, 0x0913c0,5, 0x0913d8,3, 0x0913f0,2, 0x091400,10, 0x09142c,12, 0x091480,26, 0x091500,2, 0x091520,1, 0x091600,10, 0x09162c,12, 0x091680,26, 0x091700,2, 0x091720,1, 0x091800,5, 0x091820,5, 0x091890,10, 0x0918e0,1, 0x0918f0,2, 0x091900,5, 0x091920,5, 0x091990,10, 0x0919e0,1, 0x0919f0,2, 0x091a00,1, 0x091a10,2, 0x091a20,1, 0x091a30,2, 0x091a48,3, 0x091a80,3, 0x091a90,1, 0x091a98,12, 0x091b04,2, 0x091b14,3, 0x091b24,2, 0x091b34,3, 0x091b80,5, 0x091b98,3, 0x091bb0,2, 0x091bc0,5, 0x091bd8,3, 0x091bf0,2, 0x091c00,10, 0x091c2c,12, 0x091c80,26, 0x091d00,2, 0x091d20,1, 0x091e00,10, 0x091e2c,12, 0x091e80,26, 0x091f00,2, 0x091f20,1, 0x092000,7, 0x092020,8, 0x092044,8, 0x092080,7, 0x0920a0,8, 0x0920c4,8, 0x092100,7, 0x092120,8, 0x092144,8, 0x092180,7, 0x0921a0,8, 0x0921c4,8, 0x092200,7, 0x092220,8, 0x092244,8, 0x092280,7, 0x0922a0,8, 0x0922c4,8, 0x092400,1, 0x092418,1, 0x092434,1, 0x092504,1, 0x092534,1, 0x09254c,1, 0x092570,2, 0x092600,1, 0x092610,2, 0x092804,15, 0x092844,15, 0x092884,15, 0x0928c4,15, 0x092904,15, 0x092944,16, 0x092990,2, 0x0929a0,1, 0x0929b0,2, 0x0929c0,2, 0x092a00,400, 0x093080,28, 0x093100,28, 0x093184,2, 0x093194,3, 0x0931a4,2, 0x0931b4,10, 0x093200,7, 0x093260,20, 0x0932c0,2, 0x0932cc,2, 0x0932d8,3, 0x093300,1, 0x093310,2, 0x093320,1, 0x093330,2, 0x093340,1, 0x093350,2, 0x093360,1, 0x093370,2, 0x093380,1, 0x093400,16, 0x093480,28, 0x093500,28, 0x093584,2, 0x093594,3, 0x0935a4,2, 0x0935b4,10, 0x093600,7, 0x093660,20, 0x0936c0,2, 0x0936cc,2, 0x0936d8,3, 0x093700,1, 0x093710,2, 0x093720,1, 0x093730,2, 0x093740,1, 0x093750,2, 0x093760,1, 0x093770,2, 0x093780,1, 0x093800,16, 0x093880,28, 0x093900,28, 0x093984,2, 0x093994,3, 0x0939a4,2, 0x0939b4,10, 0x093a00,7, 0x093a60,20, 0x093ac0,2, 0x093acc,2, 0x093ad8,3, 0x093b00,1, 0x093b10,2, 0x093b20,1, 0x093b30,2, 0x093b40,1, 0x093b50,2, 0x093b60,1, 0x093b70,2, 0x093b80,1, 0x093c00,18, 0x093c60,5, 0x093c78,7, 0x093c98,6, 0x093ce0,3, 0x093d04,7, 0x093d30,1, 0x093d44,7, 0x093d70,1, 0x093d84,7, 0x093db0,1, 0x093dc4,7, 0x093df0,1, 0x093e04,7, 0x093e30,1, 0x093e44,7, 0x093e70,1, 0x093e84,7, 0x093eb0,1, 0x093ec4,7, 0x093ef0,1, 0x093f00,1, 0x093f24,1, 0x093f30,4, 0x093f44,1, 0x093f50,4, 0x093fa0,3, 0x094000,5, 0x094018,3, 0x094080,2, 0x09408c,1, 0x0940a0,9, 0x0940d0,2, 0x0940e0,1, 0x0940e8,1, 0x094100,2, 0x09410c,1, 0x094120,9, 0x094150,2, 0x094160,1, 0x094168,1, 0x094180,2, 0x09418c,1, 0x0941a0,9, 0x0941d0,2, 0x0941e0,1, 0x0941e8,1, 0x094200,2, 0x09420c,1, 0x094220,9, 0x094250,2, 0x094260,1, 0x094268,1, 0x094284,2, 0x0942a8,2, 0x0942b4,1, 0x0942c4,2, 0x0942e8,2, 0x0942f4,1, 0x094400,3, 0x094410,15, 0x094450,16, 0x09449c,1, 0x0944b0,9, 0x0944e0,1, 0x0944f0,3, 0x094500,12, 0x094534,4, 0x094558,1, 0x094580,1, 0x094594,2, 0x0945ac,11, 0x0945ec,4, 0x094600,15, 0x094640,3, 0x094650,3, 0x094660,1, 0x094670,2, 0x094680,1, 0x094690,2, 0x0946c0,4, 0x0946d4,8, 0x094700,4, 0x094714,8, 0x094800,5, 0x094818,3, 0x094880,2, 0x09488c,1, 0x0948a0,9, 0x0948d0,2, 0x0948e0,1, 0x0948e8,1, 0x094900,2, 0x09490c,1, 0x094920,9, 0x094950,2, 0x094960,1, 0x094968,1, 0x094980,2, 0x09498c,1, 0x0949a0,9, 0x0949d0,2, 0x0949e0,1, 0x0949e8,1, 0x094a00,2, 0x094a0c,1, 0x094a20,9, 0x094a50,2, 0x094a60,1, 0x094a68,1, 0x094a84,2, 0x094aa8,2, 0x094ab4,1, 0x094ac4,2, 0x094ae8,2, 0x094af4,1, 0x094c00,3, 0x094c10,15, 0x094c50,16, 0x094c9c,1, 0x094cb0,9, 0x094ce0,1, 0x094cf0,3, 0x094d00,12, 0x094d34,4, 0x094d58,1, 0x094d80,1, 0x094d94,2, 0x094dac,11, 0x094dec,4, 0x094e00,15, 0x094e40,3, 0x094e50,3, 0x094e60,1, 0x094e70,2, 0x094e80,1, 0x094e90,2, 0x094ec0,4, 0x094ed4,8, 0x094f00,4, 0x094f14,8, 0x095000,5, 0x095018,3, 0x095080,2, 0x09508c,1, 0x0950a0,9, 0x0950d0,2, 0x0950e0,1, 0x0950e8,1, 0x095100,2, 0x09510c,1, 0x095120,9, 0x095150,2, 0x095160,1, 0x095168,1, 0x095180,2, 0x09518c,1, 0x0951a0,9, 0x0951d0,2, 0x0951e0,1, 0x0951e8,1, 0x095200,2, 0x09520c,1, 0x095220,9, 0x095250,2, 0x095260,1, 0x095268,1, 0x095284,2, 0x0952a8,2, 0x0952b4,1, 0x0952c4,2, 0x0952e8,2, 0x0952f4,1, 0x095400,3, 0x095410,15, 0x095450,16, 0x09549c,1, 0x0954b0,9, 0x0954e0,1, 0x0954f0,3, 0x095500,12, 0x095534,4, 0x095558,1, 0x095580,1, 0x095594,2, 0x0955ac,11, 0x0955ec,4, 0x095600,15, 0x095640,3, 0x095650,3, 0x095660,1, 0x095670,2, 0x095680,1, 0x095690,2, 0x0956c0,4, 0x0956d4,8, 0x095700,4, 0x095714,8, 0x095800,31, 0x095880,8, 0x0958a4,1, 0x0958b4,20, 0x095910,2, 0x095920,3, 0x095934,1, 0x09593c,2, 0x095950,2, 0x095a00,11, 0x095a4c,8, 0x095a70,2, 0x095a7c,33, 0x095c00,8, 0x095c40,2, 0x095c4c,11, 0x095c80,8, 0x095cc0,2, 0x095ccc,11, 0x095d00,8, 0x095d40,2, 0x095d4c,11, 0x095d80,8, 0x095dc0,2, 0x095dcc,11, 0x095e00,8, 0x095e40,2, 0x095e4c,11, 0x095e80,8, 0x095ec0,2, 0x095ecc,11, 0x095f00,9, 0x095f30,2, 0x095f40,49, 0x096018,1, 0x096034,1, 0x096104,1, 0x096134,1, 0x09614c,1, 0x096170,2, 0x096200,1, 0x096210,2, 0x096400,5, 0x096418,9, 0x096440,5, 0x096460,1, 0x096470,2, 0x096500,5, 0x096518,9, 0x096540,5, 0x096560,1, 0x096570,2, 0x096600,5, 0x096618,9, 0x096640,5, 0x096660,1, 0x096670,2, 0x096700,1, 0x096800,6, 0x09681c,3, 0x09682c,3, 0x09683c,8, 0x096860,1, 0x096868,1, 0x096870,2, 0x096880,1, 0x096890,2, 0x0968a0,1, 0x0968b0,2, 0x0968c0,1, 0x0968d0,2, 0x0968e0,1, 0x0968f0,2, 0x096900,29, 0x096980,27, 0x0969f0,1, 0x096c00,6, 0x096c1c,3, 0x096c2c,3, 0x096c3c,8, 0x096c60,1, 0x096c68,1, 0x096c70,2, 0x096c80,1, 0x096c90,2, 0x096ca0,1, 0x096cb0,2, 0x096cc0,1, 0x096cd0,2, 0x096ce0,1, 0x096cf0,2, 0x096d00,29, 0x096d80,27, 0x096df0,1, 0x097000,6, 0x09701c,3, 0x09702c,3, 0x09703c,8, 0x097060,1, 0x097068,1, 0x097070,2, 0x097080,1, 0x097090,2, 0x0970a0,1, 0x0970b0,2, 0x0970c0,1, 0x0970d0,2, 0x0970e0,1, 0x0970f0,2, 0x097100,29, 0x097180,27, 0x0971f0,1, 0x097400,6, 0x09741c,3, 0x09742c,3, 0x09743c,8, 0x097460,1, 0x097468,1, 0x097470,2, 0x097480,1, 0x097490,2, 0x0974a0,1, 0x0974b0,2, 0x0974c0,1, 0x0974d0,2, 0x0974e0,1, 0x0974f0,2, 0x097500,29, 0x097580,27, 0x0975f0,1, 0x097800,6, 0x09781c,3, 0x09782c,3, 0x09783c,8, 0x097860,1, 0x097868,1, 0x097870,2, 0x097880,1, 0x097890,2, 0x0978a0,1, 0x0978b0,2, 0x0978c0,1, 0x0978d0,2, 0x0978e0,1, 0x0978f0,2, 0x097900,29, 0x097980,27, 0x0979f0,1, 0x097c00,6, 0x097c1c,3, 0x097c2c,3, 0x097c3c,8, 0x097c60,1, 0x097c68,1, 0x097c70,2, 0x097c80,1, 0x097c90,2, 0x097ca0,1, 0x097cb0,2, 0x097cc0,1, 0x097cd0,2, 0x097ce0,1, 0x097cf0,2, 0x097d00,29, 0x097d80,27, 0x097df0,1, 0x098000,2, 0x098018,2, 0x098034,2, 0x098104,3, 0x098134,2, 0x09814c,1, 0x098170,2, 0x098200,1, 0x098210,2, 0x098220,1, 0x098230,2, 0x098400,1, 0x098410,2, 0x098420,3, 0x098430,22, 0x0984ac,1, 0x0984c0,6, 0x098500,1, 0x098510,2, 0x098520,3, 0x098540,8, 0x098580,6, 0x0985a0,6, 0x098600,10, 0x098640,10, 0x098680,10, 0x0986c0,10, 0x098700,10, 0x098740,10, 0x098800,5, 0x098820,5, 0x098890,10, 0x0988e0,1, 0x0988f0,2, 0x098900,5, 0x098920,5, 0x098990,10, 0x0989e0,1, 0x0989f0,2, 0x098a00,1, 0x098a10,2, 0x098a20,1, 0x098a30,2, 0x098a48,3, 0x098a80,3, 0x098a90,1, 0x098a98,12, 0x098b04,2, 0x098b14,3, 0x098b24,2, 0x098b34,3, 0x098b80,5, 0x098b98,3, 0x098bb0,2, 0x098bc0,5, 0x098bd8,3, 0x098bf0,2, 0x098c00,10, 0x098c2c,12, 0x098c80,26, 0x098d00,2, 0x098d20,1, 0x098e00,10, 0x098e2c,12, 0x098e80,26, 0x098f00,2, 0x098f20,1, 0x099000,5, 0x099020,5, 0x099090,10, 0x0990e0,1, 0x0990f0,2, 0x099100,5, 0x099120,5, 0x099190,10, 0x0991e0,1, 0x0991f0,2, 0x099200,1, 0x099210,2, 0x099220,1, 0x099230,2, 0x099248,3, 0x099280,3, 0x099290,1, 0x099298,12, 0x099304,2, 0x099314,3, 0x099324,2, 0x099334,3, 0x099380,5, 0x099398,3, 0x0993b0,2, 0x0993c0,5, 0x0993d8,3, 0x0993f0,2, 0x099400,10, 0x09942c,12, 0x099480,26, 0x099500,2, 0x099520,1, 0x099600,10, 0x09962c,12, 0x099680,26, 0x099700,2, 0x099720,1, 0x099800,5, 0x099820,5, 0x099890,10, 0x0998e0,1, 0x0998f0,2, 0x099900,5, 0x099920,5, 0x099990,10, 0x0999e0,1, 0x0999f0,2, 0x099a00,1, 0x099a10,2, 0x099a20,1, 0x099a30,2, 0x099a48,3, 0x099a80,3, 0x099a90,1, 0x099a98,12, 0x099b04,2, 0x099b14,3, 0x099b24,2, 0x099b34,3, 0x099b80,5, 0x099b98,3, 0x099bb0,2, 0x099bc0,5, 0x099bd8,3, 0x099bf0,2, 0x099c00,10, 0x099c2c,12, 0x099c80,26, 0x099d00,2, 0x099d20,1, 0x099e00,10, 0x099e2c,12, 0x099e80,26, 0x099f00,2, 0x099f20,1, 0x09a000,7, 0x09a020,8, 0x09a044,8, 0x09a080,7, 0x09a0a0,8, 0x09a0c4,8, 0x09a100,7, 0x09a120,8, 0x09a144,8, 0x09a180,7, 0x09a1a0,8, 0x09a1c4,8, 0x09a200,7, 0x09a220,8, 0x09a244,8, 0x09a280,7, 0x09a2a0,8, 0x09a2c4,8, 0x09a400,1, 0x09a418,1, 0x09a434,1, 0x09a504,1, 0x09a534,1, 0x09a54c,1, 0x09a570,2, 0x09a600,1, 0x09a610,2, 0x09a804,15, 0x09a844,15, 0x09a884,15, 0x09a8c4,15, 0x09a904,15, 0x09a944,16, 0x09a990,2, 0x09a9a0,1, 0x09a9b0,2, 0x09a9c0,2, 0x09aa00,400, 0x09b080,28, 0x09b100,28, 0x09b184,2, 0x09b194,3, 0x09b1a4,2, 0x09b1b4,10, 0x09b200,7, 0x09b260,20, 0x09b2c0,2, 0x09b2cc,2, 0x09b2d8,3, 0x09b300,1, 0x09b310,2, 0x09b320,1, 0x09b330,2, 0x09b340,1, 0x09b350,2, 0x09b360,1, 0x09b370,2, 0x09b380,1, 0x09b400,16, 0x09b480,28, 0x09b500,28, 0x09b584,2, 0x09b594,3, 0x09b5a4,2, 0x09b5b4,10, 0x09b600,7, 0x09b660,20, 0x09b6c0,2, 0x09b6cc,2, 0x09b6d8,3, 0x09b700,1, 0x09b710,2, 0x09b720,1, 0x09b730,2, 0x09b740,1, 0x09b750,2, 0x09b760,1, 0x09b770,2, 0x09b780,1, 0x09b800,16, 0x09b880,28, 0x09b900,28, 0x09b984,2, 0x09b994,3, 0x09b9a4,2, 0x09b9b4,10, 0x09ba00,7, 0x09ba60,20, 0x09bac0,2, 0x09bacc,2, 0x09bad8,3, 0x09bb00,1, 0x09bb10,2, 0x09bb20,1, 0x09bb30,2, 0x09bb40,1, 0x09bb50,2, 0x09bb60,1, 0x09bb70,2, 0x09bb80,1, 0x09bc00,18, 0x09bc60,5, 0x09bc78,7, 0x09bc98,6, 0x09bce0,3, 0x09bd04,7, 0x09bd30,1, 0x09bd44,7, 0x09bd70,1, 0x09bd84,7, 0x09bdb0,1, 0x09bdc4,7, 0x09bdf0,1, 0x09be04,7, 0x09be30,1, 0x09be44,7, 0x09be70,1, 0x09be84,7, 0x09beb0,1, 0x09bec4,7, 0x09bef0,1, 0x09bf00,1, 0x09bf24,1, 0x09bf30,4, 0x09bf44,1, 0x09bf50,4, 0x09bfa0,3, 0x09c000,5, 0x09c018,3, 0x09c080,2, 0x09c08c,1, 0x09c0a0,9, 0x09c0d0,2, 0x09c0e0,1, 0x09c0e8,1, 0x09c100,2, 0x09c10c,1, 0x09c120,9, 0x09c150,2, 0x09c160,1, 0x09c168,1, 0x09c180,2, 0x09c18c,1, 0x09c1a0,9, 0x09c1d0,2, 0x09c1e0,1, 0x09c1e8,1, 0x09c200,2, 0x09c20c,1, 0x09c220,9, 0x09c250,2, 0x09c260,1, 0x09c268,1, 0x09c284,2, 0x09c2a8,2, 0x09c2b4,1, 0x09c2c4,2, 0x09c2e8,2, 0x09c2f4,1, 0x09c400,3, 0x09c410,15, 0x09c450,16, 0x09c49c,1, 0x09c4b0,9, 0x09c4e0,1, 0x09c4f0,3, 0x09c500,12, 0x09c534,4, 0x09c558,1, 0x09c580,1, 0x09c594,2, 0x09c5ac,11, 0x09c5ec,4, 0x09c600,15, 0x09c640,3, 0x09c650,3, 0x09c660,1, 0x09c670,2, 0x09c680,1, 0x09c690,2, 0x09c6c0,4, 0x09c6d4,8, 0x09c700,4, 0x09c714,8, 0x09c800,5, 0x09c818,3, 0x09c880,2, 0x09c88c,1, 0x09c8a0,9, 0x09c8d0,2, 0x09c8e0,1, 0x09c8e8,1, 0x09c900,2, 0x09c90c,1, 0x09c920,9, 0x09c950,2, 0x09c960,1, 0x09c968,1, 0x09c980,2, 0x09c98c,1, 0x09c9a0,9, 0x09c9d0,2, 0x09c9e0,1, 0x09c9e8,1, 0x09ca00,2, 0x09ca0c,1, 0x09ca20,9, 0x09ca50,2, 0x09ca60,1, 0x09ca68,1, 0x09ca84,2, 0x09caa8,2, 0x09cab4,1, 0x09cac4,2, 0x09cae8,2, 0x09caf4,1, 0x09cc00,3, 0x09cc10,15, 0x09cc50,16, 0x09cc9c,1, 0x09ccb0,9, 0x09cce0,1, 0x09ccf0,3, 0x09cd00,12, 0x09cd34,4, 0x09cd58,1, 0x09cd80,1, 0x09cd94,2, 0x09cdac,11, 0x09cdec,4, 0x09ce00,15, 0x09ce40,3, 0x09ce50,3, 0x09ce60,1, 0x09ce70,2, 0x09ce80,1, 0x09ce90,2, 0x09cec0,4, 0x09ced4,8, 0x09cf00,4, 0x09cf14,8, 0x09d000,5, 0x09d018,3, 0x09d080,2, 0x09d08c,1, 0x09d0a0,9, 0x09d0d0,2, 0x09d0e0,1, 0x09d0e8,1, 0x09d100,2, 0x09d10c,1, 0x09d120,9, 0x09d150,2, 0x09d160,1, 0x09d168,1, 0x09d180,2, 0x09d18c,1, 0x09d1a0,9, 0x09d1d0,2, 0x09d1e0,1, 0x09d1e8,1, 0x09d200,2, 0x09d20c,1, 0x09d220,9, 0x09d250,2, 0x09d260,1, 0x09d268,1, 0x09d284,2, 0x09d2a8,2, 0x09d2b4,1, 0x09d2c4,2, 0x09d2e8,2, 0x09d2f4,1, 0x09d400,3, 0x09d410,15, 0x09d450,16, 0x09d49c,1, 0x09d4b0,9, 0x09d4e0,1, 0x09d4f0,3, 0x09d500,12, 0x09d534,4, 0x09d558,1, 0x09d580,1, 0x09d594,2, 0x09d5ac,11, 0x09d5ec,4, 0x09d600,15, 0x09d640,3, 0x09d650,3, 0x09d660,1, 0x09d670,2, 0x09d680,1, 0x09d690,2, 0x09d6c0,4, 0x09d6d4,8, 0x09d700,4, 0x09d714,8, 0x09d800,31, 0x09d880,8, 0x09d8a4,1, 0x09d8b4,20, 0x09d910,2, 0x09d920,3, 0x09d934,1, 0x09d93c,2, 0x09d950,2, 0x09da00,11, 0x09da4c,8, 0x09da70,2, 0x09da7c,33, 0x09dc00,8, 0x09dc40,2, 0x09dc4c,11, 0x09dc80,8, 0x09dcc0,2, 0x09dccc,11, 0x09dd00,8, 0x09dd40,2, 0x09dd4c,11, 0x09dd80,8, 0x09ddc0,2, 0x09ddcc,11, 0x09de00,8, 0x09de40,2, 0x09de4c,11, 0x09de80,8, 0x09dec0,2, 0x09decc,11, 0x09df00,9, 0x09df30,2, 0x09df40,49, 0x09e018,1, 0x09e034,1, 0x09e104,1, 0x09e134,1, 0x09e14c,1, 0x09e170,2, 0x09e200,1, 0x09e210,2, 0x09e400,5, 0x09e418,9, 0x09e440,5, 0x09e460,1, 0x09e470,2, 0x09e500,5, 0x09e518,9, 0x09e540,5, 0x09e560,1, 0x09e570,2, 0x09e600,5, 0x09e618,9, 0x09e640,5, 0x09e660,1, 0x09e670,2, 0x09e700,1, 0x09e800,6, 0x09e81c,3, 0x09e82c,3, 0x09e83c,8, 0x09e860,1, 0x09e868,1, 0x09e870,2, 0x09e880,1, 0x09e890,2, 0x09e8a0,1, 0x09e8b0,2, 0x09e8c0,1, 0x09e8d0,2, 0x09e8e0,1, 0x09e8f0,2, 0x09e900,29, 0x09e980,27, 0x09e9f0,1, 0x09ec00,6, 0x09ec1c,3, 0x09ec2c,3, 0x09ec3c,8, 0x09ec60,1, 0x09ec68,1, 0x09ec70,2, 0x09ec80,1, 0x09ec90,2, 0x09eca0,1, 0x09ecb0,2, 0x09ecc0,1, 0x09ecd0,2, 0x09ece0,1, 0x09ecf0,2, 0x09ed00,29, 0x09ed80,27, 0x09edf0,1, 0x09f000,6, 0x09f01c,3, 0x09f02c,3, 0x09f03c,8, 0x09f060,1, 0x09f068,1, 0x09f070,2, 0x09f080,1, 0x09f090,2, 0x09f0a0,1, 0x09f0b0,2, 0x09f0c0,1, 0x09f0d0,2, 0x09f0e0,1, 0x09f0f0,2, 0x09f100,29, 0x09f180,27, 0x09f1f0,1, 0x09f400,6, 0x09f41c,3, 0x09f42c,3, 0x09f43c,8, 0x09f460,1, 0x09f468,1, 0x09f470,2, 0x09f480,1, 0x09f490,2, 0x09f4a0,1, 0x09f4b0,2, 0x09f4c0,1, 0x09f4d0,2, 0x09f4e0,1, 0x09f4f0,2, 0x09f500,29, 0x09f580,27, 0x09f5f0,1, 0x09f800,6, 0x09f81c,3, 0x09f82c,3, 0x09f83c,8, 0x09f860,1, 0x09f868,1, 0x09f870,2, 0x09f880,1, 0x09f890,2, 0x09f8a0,1, 0x09f8b0,2, 0x09f8c0,1, 0x09f8d0,2, 0x09f8e0,1, 0x09f8f0,2, 0x09f900,29, 0x09f980,27, 0x09f9f0,1, 0x09fc00,6, 0x09fc1c,3, 0x09fc2c,3, 0x09fc3c,8, 0x09fc60,1, 0x09fc68,1, 0x09fc70,2, 0x09fc80,1, 0x09fc90,2, 0x09fca0,1, 0x09fcb0,2, 0x09fcc0,1, 0x09fcd0,2, 0x09fce0,1, 0x09fcf0,2, 0x09fd00,29, 0x09fd80,27, 0x09fdf0,1, 0x0a0000,2, 0x0a0018,2, 0x0a0034,2, 0x0a0104,3, 0x0a0134,2, 0x0a014c,1, 0x0a0170,2, 0x0a0200,1, 0x0a0210,2, 0x0a0220,1, 0x0a0230,2, 0x0a0400,1, 0x0a0410,2, 0x0a0420,3, 0x0a0430,22, 0x0a04ac,1, 0x0a04c0,6, 0x0a0500,1, 0x0a0510,2, 0x0a0520,3, 0x0a0540,8, 0x0a0580,6, 0x0a05a0,6, 0x0a0600,10, 0x0a0640,10, 0x0a0680,10, 0x0a06c0,10, 0x0a0700,10, 0x0a0740,10, 0x0a0800,5, 0x0a0820,5, 0x0a0890,10, 0x0a08e0,1, 0x0a08f0,2, 0x0a0900,5, 0x0a0920,5, 0x0a0990,10, 0x0a09e0,1, 0x0a09f0,2, 0x0a0a00,1, 0x0a0a10,2, 0x0a0a20,1, 0x0a0a30,2, 0x0a0a48,3, 0x0a0a80,3, 0x0a0a90,1, 0x0a0a98,12, 0x0a0b04,2, 0x0a0b14,3, 0x0a0b24,2, 0x0a0b34,3, 0x0a0b80,5, 0x0a0b98,3, 0x0a0bb0,2, 0x0a0bc0,5, 0x0a0bd8,3, 0x0a0bf0,2, 0x0a0c00,10, 0x0a0c2c,12, 0x0a0c80,26, 0x0a0d00,2, 0x0a0d20,1, 0x0a0e00,10, 0x0a0e2c,12, 0x0a0e80,26, 0x0a0f00,2, 0x0a0f20,1, 0x0a1000,5, 0x0a1020,5, 0x0a1090,10, 0x0a10e0,1, 0x0a10f0,2, 0x0a1100,5, 0x0a1120,5, 0x0a1190,10, 0x0a11e0,1, 0x0a11f0,2, 0x0a1200,1, 0x0a1210,2, 0x0a1220,1, 0x0a1230,2, 0x0a1248,3, 0x0a1280,3, 0x0a1290,1, 0x0a1298,12, 0x0a1304,2, 0x0a1314,3, 0x0a1324,2, 0x0a1334,3, 0x0a1380,5, 0x0a1398,3, 0x0a13b0,2, 0x0a13c0,5, 0x0a13d8,3, 0x0a13f0,2, 0x0a1400,10, 0x0a142c,12, 0x0a1480,26, 0x0a1500,2, 0x0a1520,1, 0x0a1600,10, 0x0a162c,12, 0x0a1680,26, 0x0a1700,2, 0x0a1720,1, 0x0a1800,5, 0x0a1820,5, 0x0a1890,10, 0x0a18e0,1, 0x0a18f0,2, 0x0a1900,5, 0x0a1920,5, 0x0a1990,10, 0x0a19e0,1, 0x0a19f0,2, 0x0a1a00,1, 0x0a1a10,2, 0x0a1a20,1, 0x0a1a30,2, 0x0a1a48,3, 0x0a1a80,3, 0x0a1a90,1, 0x0a1a98,12, 0x0a1b04,2, 0x0a1b14,3, 0x0a1b24,2, 0x0a1b34,3, 0x0a1b80,5, 0x0a1b98,3, 0x0a1bb0,2, 0x0a1bc0,5, 0x0a1bd8,3, 0x0a1bf0,2, 0x0a1c00,10, 0x0a1c2c,12, 0x0a1c80,26, 0x0a1d00,2, 0x0a1d20,1, 0x0a1e00,10, 0x0a1e2c,12, 0x0a1e80,26, 0x0a1f00,2, 0x0a1f20,1, 0x0a2000,7, 0x0a2020,8, 0x0a2044,8, 0x0a2080,7, 0x0a20a0,8, 0x0a20c4,8, 0x0a2100,7, 0x0a2120,8, 0x0a2144,8, 0x0a2180,7, 0x0a21a0,8, 0x0a21c4,8, 0x0a2200,7, 0x0a2220,8, 0x0a2244,8, 0x0a2280,7, 0x0a22a0,8, 0x0a22c4,8, 0x0a2400,1, 0x0a2418,1, 0x0a2434,1, 0x0a2504,1, 0x0a2534,1, 0x0a254c,1, 0x0a2570,2, 0x0a2600,1, 0x0a2610,2, 0x0a2804,15, 0x0a2844,15, 0x0a2884,15, 0x0a28c4,15, 0x0a2904,15, 0x0a2944,16, 0x0a2990,2, 0x0a29a0,1, 0x0a29b0,2, 0x0a29c0,2, 0x0a2a00,400, 0x0a3080,28, 0x0a3100,28, 0x0a3184,2, 0x0a3194,3, 0x0a31a4,2, 0x0a31b4,10, 0x0a3200,7, 0x0a3260,20, 0x0a32c0,2, 0x0a32cc,2, 0x0a32d8,3, 0x0a3300,1, 0x0a3310,2, 0x0a3320,1, 0x0a3330,2, 0x0a3340,1, 0x0a3350,2, 0x0a3360,1, 0x0a3370,2, 0x0a3380,1, 0x0a3400,16, 0x0a3480,28, 0x0a3500,28, 0x0a3584,2, 0x0a3594,3, 0x0a35a4,2, 0x0a35b4,10, 0x0a3600,7, 0x0a3660,20, 0x0a36c0,2, 0x0a36cc,2, 0x0a36d8,3, 0x0a3700,1, 0x0a3710,2, 0x0a3720,1, 0x0a3730,2, 0x0a3740,1, 0x0a3750,2, 0x0a3760,1, 0x0a3770,2, 0x0a3780,1, 0x0a3800,16, 0x0a3880,28, 0x0a3900,28, 0x0a3984,2, 0x0a3994,3, 0x0a39a4,2, 0x0a39b4,10, 0x0a3a00,7, 0x0a3a60,20, 0x0a3ac0,2, 0x0a3acc,2, 0x0a3ad8,3, 0x0a3b00,1, 0x0a3b10,2, 0x0a3b20,1, 0x0a3b30,2, 0x0a3b40,1, 0x0a3b50,2, 0x0a3b60,1, 0x0a3b70,2, 0x0a3b80,1, 0x0a3c00,18, 0x0a3c60,5, 0x0a3c78,7, 0x0a3c98,6, 0x0a3ce0,3, 0x0a3d04,7, 0x0a3d30,1, 0x0a3d44,7, 0x0a3d70,1, 0x0a3d84,7, 0x0a3db0,1, 0x0a3dc4,7, 0x0a3df0,1, 0x0a3e04,7, 0x0a3e30,1, 0x0a3e44,7, 0x0a3e70,1, 0x0a3e84,7, 0x0a3eb0,1, 0x0a3ec4,7, 0x0a3ef0,1, 0x0a3f00,1, 0x0a3f24,1, 0x0a3f30,4, 0x0a3f44,1, 0x0a3f50,4, 0x0a3fa0,3, 0x0a4000,5, 0x0a4018,3, 0x0a4080,2, 0x0a408c,1, 0x0a40a0,9, 0x0a40d0,2, 0x0a40e0,1, 0x0a40e8,1, 0x0a4100,2, 0x0a410c,1, 0x0a4120,9, 0x0a4150,2, 0x0a4160,1, 0x0a4168,1, 0x0a4180,2, 0x0a418c,1, 0x0a41a0,9, 0x0a41d0,2, 0x0a41e0,1, 0x0a41e8,1, 0x0a4200,2, 0x0a420c,1, 0x0a4220,9, 0x0a4250,2, 0x0a4260,1, 0x0a4268,1, 0x0a4284,2, 0x0a42a8,2, 0x0a42b4,1, 0x0a42c4,2, 0x0a42e8,2, 0x0a42f4,1, 0x0a4400,3, 0x0a4410,15, 0x0a4450,16, 0x0a449c,1, 0x0a44b0,9, 0x0a44e0,1, 0x0a44f0,3, 0x0a4500,12, 0x0a4534,4, 0x0a4558,1, 0x0a4580,1, 0x0a4594,2, 0x0a45ac,11, 0x0a45ec,4, 0x0a4600,15, 0x0a4640,3, 0x0a4650,3, 0x0a4660,1, 0x0a4670,2, 0x0a4680,1, 0x0a4690,2, 0x0a46c0,4, 0x0a46d4,8, 0x0a4700,4, 0x0a4714,8, 0x0a4800,5, 0x0a4818,3, 0x0a4880,2, 0x0a488c,1, 0x0a48a0,9, 0x0a48d0,2, 0x0a48e0,1, 0x0a48e8,1, 0x0a4900,2, 0x0a490c,1, 0x0a4920,9, 0x0a4950,2, 0x0a4960,1, 0x0a4968,1, 0x0a4980,2, 0x0a498c,1, 0x0a49a0,9, 0x0a49d0,2, 0x0a49e0,1, 0x0a49e8,1, 0x0a4a00,2, 0x0a4a0c,1, 0x0a4a20,9, 0x0a4a50,2, 0x0a4a60,1, 0x0a4a68,1, 0x0a4a84,2, 0x0a4aa8,2, 0x0a4ab4,1, 0x0a4ac4,2, 0x0a4ae8,2, 0x0a4af4,1, 0x0a4c00,3, 0x0a4c10,15, 0x0a4c50,16, 0x0a4c9c,1, 0x0a4cb0,9, 0x0a4ce0,1, 0x0a4cf0,3, 0x0a4d00,12, 0x0a4d34,4, 0x0a4d58,1, 0x0a4d80,1, 0x0a4d94,2, 0x0a4dac,11, 0x0a4dec,4, 0x0a4e00,15, 0x0a4e40,3, 0x0a4e50,3, 0x0a4e60,1, 0x0a4e70,2, 0x0a4e80,1, 0x0a4e90,2, 0x0a4ec0,4, 0x0a4ed4,8, 0x0a4f00,4, 0x0a4f14,8, 0x0a5000,5, 0x0a5018,3, 0x0a5080,2, 0x0a508c,1, 0x0a50a0,9, 0x0a50d0,2, 0x0a50e0,1, 0x0a50e8,1, 0x0a5100,2, 0x0a510c,1, 0x0a5120,9, 0x0a5150,2, 0x0a5160,1, 0x0a5168,1, 0x0a5180,2, 0x0a518c,1, 0x0a51a0,9, 0x0a51d0,2, 0x0a51e0,1, 0x0a51e8,1, 0x0a5200,2, 0x0a520c,1, 0x0a5220,9, 0x0a5250,2, 0x0a5260,1, 0x0a5268,1, 0x0a5284,2, 0x0a52a8,2, 0x0a52b4,1, 0x0a52c4,2, 0x0a52e8,2, 0x0a52f4,1, 0x0a5400,3, 0x0a5410,15, 0x0a5450,16, 0x0a549c,1, 0x0a54b0,9, 0x0a54e0,1, 0x0a54f0,3, 0x0a5500,12, 0x0a5534,4, 0x0a5558,1, 0x0a5580,1, 0x0a5594,2, 0x0a55ac,11, 0x0a55ec,4, 0x0a5600,15, 0x0a5640,3, 0x0a5650,3, 0x0a5660,1, 0x0a5670,2, 0x0a5680,1, 0x0a5690,2, 0x0a56c0,4, 0x0a56d4,8, 0x0a5700,4, 0x0a5714,8, 0x0a5800,31, 0x0a5880,8, 0x0a58a4,1, 0x0a58b4,20, 0x0a5910,2, 0x0a5920,3, 0x0a5934,1, 0x0a593c,2, 0x0a5950,2, 0x0a5a00,11, 0x0a5a4c,8, 0x0a5a70,2, 0x0a5a7c,33, 0x0a5c00,8, 0x0a5c40,2, 0x0a5c4c,11, 0x0a5c80,8, 0x0a5cc0,2, 0x0a5ccc,11, 0x0a5d00,8, 0x0a5d40,2, 0x0a5d4c,11, 0x0a5d80,8, 0x0a5dc0,2, 0x0a5dcc,11, 0x0a5e00,8, 0x0a5e40,2, 0x0a5e4c,11, 0x0a5e80,8, 0x0a5ec0,2, 0x0a5ecc,11, 0x0a5f00,9, 0x0a5f30,2, 0x0a5f40,49, 0x0a6018,1, 0x0a6034,1, 0x0a6104,1, 0x0a6134,1, 0x0a614c,1, 0x0a6170,2, 0x0a6200,1, 0x0a6210,2, 0x0a6400,5, 0x0a6418,9, 0x0a6440,5, 0x0a6460,1, 0x0a6470,2, 0x0a6500,5, 0x0a6518,9, 0x0a6540,5, 0x0a6560,1, 0x0a6570,2, 0x0a6600,5, 0x0a6618,9, 0x0a6640,5, 0x0a6660,1, 0x0a6670,2, 0x0a6700,1, 0x0a6800,6, 0x0a681c,3, 0x0a682c,3, 0x0a683c,8, 0x0a6860,1, 0x0a6868,1, 0x0a6870,2, 0x0a6880,1, 0x0a6890,2, 0x0a68a0,1, 0x0a68b0,2, 0x0a68c0,1, 0x0a68d0,2, 0x0a68e0,1, 0x0a68f0,2, 0x0a6900,29, 0x0a6980,27, 0x0a69f0,1, 0x0a6c00,6, 0x0a6c1c,3, 0x0a6c2c,3, 0x0a6c3c,8, 0x0a6c60,1, 0x0a6c68,1, 0x0a6c70,2, 0x0a6c80,1, 0x0a6c90,2, 0x0a6ca0,1, 0x0a6cb0,2, 0x0a6cc0,1, 0x0a6cd0,2, 0x0a6ce0,1, 0x0a6cf0,2, 0x0a6d00,29, 0x0a6d80,27, 0x0a6df0,1, 0x0a7000,6, 0x0a701c,3, 0x0a702c,3, 0x0a703c,8, 0x0a7060,1, 0x0a7068,1, 0x0a7070,2, 0x0a7080,1, 0x0a7090,2, 0x0a70a0,1, 0x0a70b0,2, 0x0a70c0,1, 0x0a70d0,2, 0x0a70e0,1, 0x0a70f0,2, 0x0a7100,29, 0x0a7180,27, 0x0a71f0,1, 0x0a7400,6, 0x0a741c,3, 0x0a742c,3, 0x0a743c,8, 0x0a7460,1, 0x0a7468,1, 0x0a7470,2, 0x0a7480,1, 0x0a7490,2, 0x0a74a0,1, 0x0a74b0,2, 0x0a74c0,1, 0x0a74d0,2, 0x0a74e0,1, 0x0a74f0,2, 0x0a7500,29, 0x0a7580,27, 0x0a75f0,1, 0x0a7800,6, 0x0a781c,3, 0x0a782c,3, 0x0a783c,8, 0x0a7860,1, 0x0a7868,1, 0x0a7870,2, 0x0a7880,1, 0x0a7890,2, 0x0a78a0,1, 0x0a78b0,2, 0x0a78c0,1, 0x0a78d0,2, 0x0a78e0,1, 0x0a78f0,2, 0x0a7900,29, 0x0a7980,27, 0x0a79f0,1, 0x0a7c00,6, 0x0a7c1c,3, 0x0a7c2c,3, 0x0a7c3c,8, 0x0a7c60,1, 0x0a7c68,1, 0x0a7c70,2, 0x0a7c80,1, 0x0a7c90,2, 0x0a7ca0,1, 0x0a7cb0,2, 0x0a7cc0,1, 0x0a7cd0,2, 0x0a7ce0,1, 0x0a7cf0,2, 0x0a7d00,29, 0x0a7d80,27, 0x0a7df0,1, 0x0a8000,2, 0x0a8018,2, 0x0a8034,2, 0x0a8104,3, 0x0a8134,2, 0x0a814c,1, 0x0a8170,2, 0x0a8200,1, 0x0a8210,2, 0x0a8220,1, 0x0a8230,2, 0x0a8400,1, 0x0a8410,2, 0x0a8420,3, 0x0a8430,22, 0x0a84ac,1, 0x0a84c0,6, 0x0a8500,1, 0x0a8510,2, 0x0a8520,3, 0x0a8540,8, 0x0a8580,6, 0x0a85a0,6, 0x0a8600,10, 0x0a8640,10, 0x0a8680,10, 0x0a86c0,10, 0x0a8700,10, 0x0a8740,10, 0x0a8800,5, 0x0a8820,5, 0x0a8890,10, 0x0a88e0,1, 0x0a88f0,2, 0x0a8900,5, 0x0a8920,5, 0x0a8990,10, 0x0a89e0,1, 0x0a89f0,2, 0x0a8a00,1, 0x0a8a10,2, 0x0a8a20,1, 0x0a8a30,2, 0x0a8a48,3, 0x0a8a80,3, 0x0a8a90,1, 0x0a8a98,12, 0x0a8b04,2, 0x0a8b14,3, 0x0a8b24,2, 0x0a8b34,3, 0x0a8b80,5, 0x0a8b98,3, 0x0a8bb0,2, 0x0a8bc0,5, 0x0a8bd8,3, 0x0a8bf0,2, 0x0a8c00,10, 0x0a8c2c,12, 0x0a8c80,26, 0x0a8d00,2, 0x0a8d20,1, 0x0a8e00,10, 0x0a8e2c,12, 0x0a8e80,26, 0x0a8f00,2, 0x0a8f20,1, 0x0a9000,5, 0x0a9020,5, 0x0a9090,10, 0x0a90e0,1, 0x0a90f0,2, 0x0a9100,5, 0x0a9120,5, 0x0a9190,10, 0x0a91e0,1, 0x0a91f0,2, 0x0a9200,1, 0x0a9210,2, 0x0a9220,1, 0x0a9230,2, 0x0a9248,3, 0x0a9280,3, 0x0a9290,1, 0x0a9298,12, 0x0a9304,2, 0x0a9314,3, 0x0a9324,2, 0x0a9334,3, 0x0a9380,5, 0x0a9398,3, 0x0a93b0,2, 0x0a93c0,5, 0x0a93d8,3, 0x0a93f0,2, 0x0a9400,10, 0x0a942c,12, 0x0a9480,26, 0x0a9500,2, 0x0a9520,1, 0x0a9600,10, 0x0a962c,12, 0x0a9680,26, 0x0a9700,2, 0x0a9720,1, 0x0a9800,5, 0x0a9820,5, 0x0a9890,10, 0x0a98e0,1, 0x0a98f0,2, 0x0a9900,5, 0x0a9920,5, 0x0a9990,10, 0x0a99e0,1, 0x0a99f0,2, 0x0a9a00,1, 0x0a9a10,2, 0x0a9a20,1, 0x0a9a30,2, 0x0a9a48,3, 0x0a9a80,3, 0x0a9a90,1, 0x0a9a98,12, 0x0a9b04,2, 0x0a9b14,3, 0x0a9b24,2, 0x0a9b34,3, 0x0a9b80,5, 0x0a9b98,3, 0x0a9bb0,2, 0x0a9bc0,5, 0x0a9bd8,3, 0x0a9bf0,2, 0x0a9c00,10, 0x0a9c2c,12, 0x0a9c80,26, 0x0a9d00,2, 0x0a9d20,1, 0x0a9e00,10, 0x0a9e2c,12, 0x0a9e80,26, 0x0a9f00,2, 0x0a9f20,1, 0x0aa000,7, 0x0aa020,8, 0x0aa044,8, 0x0aa080,7, 0x0aa0a0,8, 0x0aa0c4,8, 0x0aa100,7, 0x0aa120,8, 0x0aa144,8, 0x0aa180,7, 0x0aa1a0,8, 0x0aa1c4,8, 0x0aa200,7, 0x0aa220,8, 0x0aa244,8, 0x0aa280,7, 0x0aa2a0,8, 0x0aa2c4,8, 0x0aa400,1, 0x0aa418,1, 0x0aa434,1, 0x0aa504,1, 0x0aa534,1, 0x0aa54c,1, 0x0aa570,2, 0x0aa600,1, 0x0aa610,2, 0x0aa804,15, 0x0aa844,15, 0x0aa884,15, 0x0aa8c4,15, 0x0aa904,15, 0x0aa944,16, 0x0aa990,2, 0x0aa9a0,1, 0x0aa9b0,2, 0x0aa9c0,2, 0x0aaa00,400, 0x0ab080,28, 0x0ab100,28, 0x0ab184,2, 0x0ab194,3, 0x0ab1a4,2, 0x0ab1b4,10, 0x0ab200,7, 0x0ab260,20, 0x0ab2c0,2, 0x0ab2cc,2, 0x0ab2d8,3, 0x0ab300,1, 0x0ab310,2, 0x0ab320,1, 0x0ab330,2, 0x0ab340,1, 0x0ab350,2, 0x0ab360,1, 0x0ab370,2, 0x0ab380,1, 0x0ab400,16, 0x0ab480,28, 0x0ab500,28, 0x0ab584,2, 0x0ab594,3, 0x0ab5a4,2, 0x0ab5b4,10, 0x0ab600,7, 0x0ab660,20, 0x0ab6c0,2, 0x0ab6cc,2, 0x0ab6d8,3, 0x0ab700,1, 0x0ab710,2, 0x0ab720,1, 0x0ab730,2, 0x0ab740,1, 0x0ab750,2, 0x0ab760,1, 0x0ab770,2, 0x0ab780,1, 0x0ab800,16, 0x0ab880,28, 0x0ab900,28, 0x0ab984,2, 0x0ab994,3, 0x0ab9a4,2, 0x0ab9b4,10, 0x0aba00,7, 0x0aba60,20, 0x0abac0,2, 0x0abacc,2, 0x0abad8,3, 0x0abb00,1, 0x0abb10,2, 0x0abb20,1, 0x0abb30,2, 0x0abb40,1, 0x0abb50,2, 0x0abb60,1, 0x0abb70,2, 0x0abb80,1, 0x0abc00,18, 0x0abc60,5, 0x0abc78,7, 0x0abc98,6, 0x0abce0,3, 0x0abd04,7, 0x0abd30,1, 0x0abd44,7, 0x0abd70,1, 0x0abd84,7, 0x0abdb0,1, 0x0abdc4,7, 0x0abdf0,1, 0x0abe04,7, 0x0abe30,1, 0x0abe44,7, 0x0abe70,1, 0x0abe84,7, 0x0abeb0,1, 0x0abec4,7, 0x0abef0,1, 0x0abf00,1, 0x0abf24,1, 0x0abf30,4, 0x0abf44,1, 0x0abf50,4, 0x0abfa0,3, 0x0ac000,5, 0x0ac018,3, 0x0ac080,2, 0x0ac08c,1, 0x0ac0a0,9, 0x0ac0d0,2, 0x0ac0e0,1, 0x0ac0e8,1, 0x0ac100,2, 0x0ac10c,1, 0x0ac120,9, 0x0ac150,2, 0x0ac160,1, 0x0ac168,1, 0x0ac180,2, 0x0ac18c,1, 0x0ac1a0,9, 0x0ac1d0,2, 0x0ac1e0,1, 0x0ac1e8,1, 0x0ac200,2, 0x0ac20c,1, 0x0ac220,9, 0x0ac250,2, 0x0ac260,1, 0x0ac268,1, 0x0ac284,2, 0x0ac2a8,2, 0x0ac2b4,1, 0x0ac2c4,2, 0x0ac2e8,2, 0x0ac2f4,1, 0x0ac400,3, 0x0ac410,15, 0x0ac450,16, 0x0ac49c,1, 0x0ac4b0,9, 0x0ac4e0,1, 0x0ac4f0,3, 0x0ac500,12, 0x0ac534,4, 0x0ac558,1, 0x0ac580,1, 0x0ac594,2, 0x0ac5ac,11, 0x0ac5ec,4, 0x0ac600,15, 0x0ac640,3, 0x0ac650,3, 0x0ac660,1, 0x0ac670,2, 0x0ac680,1, 0x0ac690,2, 0x0ac6c0,4, 0x0ac6d4,8, 0x0ac700,4, 0x0ac714,8, 0x0ac800,5, 0x0ac818,3, 0x0ac880,2, 0x0ac88c,1, 0x0ac8a0,9, 0x0ac8d0,2, 0x0ac8e0,1, 0x0ac8e8,1, 0x0ac900,2, 0x0ac90c,1, 0x0ac920,9, 0x0ac950,2, 0x0ac960,1, 0x0ac968,1, 0x0ac980,2, 0x0ac98c,1, 0x0ac9a0,9, 0x0ac9d0,2, 0x0ac9e0,1, 0x0ac9e8,1, 0x0aca00,2, 0x0aca0c,1, 0x0aca20,9, 0x0aca50,2, 0x0aca60,1, 0x0aca68,1, 0x0aca84,2, 0x0acaa8,2, 0x0acab4,1, 0x0acac4,2, 0x0acae8,2, 0x0acaf4,1, 0x0acc00,3, 0x0acc10,15, 0x0acc50,16, 0x0acc9c,1, 0x0accb0,9, 0x0acce0,1, 0x0accf0,3, 0x0acd00,12, 0x0acd34,4, 0x0acd58,1, 0x0acd80,1, 0x0acd94,2, 0x0acdac,11, 0x0acdec,4, 0x0ace00,15, 0x0ace40,3, 0x0ace50,3, 0x0ace60,1, 0x0ace70,2, 0x0ace80,1, 0x0ace90,2, 0x0acec0,4, 0x0aced4,8, 0x0acf00,4, 0x0acf14,8, 0x0ad000,5, 0x0ad018,3, 0x0ad080,2, 0x0ad08c,1, 0x0ad0a0,9, 0x0ad0d0,2, 0x0ad0e0,1, 0x0ad0e8,1, 0x0ad100,2, 0x0ad10c,1, 0x0ad120,9, 0x0ad150,2, 0x0ad160,1, 0x0ad168,1, 0x0ad180,2, 0x0ad18c,1, 0x0ad1a0,9, 0x0ad1d0,2, 0x0ad1e0,1, 0x0ad1e8,1, 0x0ad200,2, 0x0ad20c,1, 0x0ad220,9, 0x0ad250,2, 0x0ad260,1, 0x0ad268,1, 0x0ad284,2, 0x0ad2a8,2, 0x0ad2b4,1, 0x0ad2c4,2, 0x0ad2e8,2, 0x0ad2f4,1, 0x0ad400,3, 0x0ad410,15, 0x0ad450,16, 0x0ad49c,1, 0x0ad4b0,9, 0x0ad4e0,1, 0x0ad4f0,3, 0x0ad500,12, 0x0ad534,4, 0x0ad558,1, 0x0ad580,1, 0x0ad594,2, 0x0ad5ac,11, 0x0ad5ec,4, 0x0ad600,15, 0x0ad640,3, 0x0ad650,3, 0x0ad660,1, 0x0ad670,2, 0x0ad680,1, 0x0ad690,2, 0x0ad6c0,4, 0x0ad6d4,8, 0x0ad700,4, 0x0ad714,8, 0x0ad800,31, 0x0ad880,8, 0x0ad8a4,1, 0x0ad8b4,20, 0x0ad910,2, 0x0ad920,3, 0x0ad934,1, 0x0ad93c,2, 0x0ad950,2, 0x0ada00,11, 0x0ada4c,8, 0x0ada70,2, 0x0ada7c,33, 0x0adc00,8, 0x0adc40,2, 0x0adc4c,11, 0x0adc80,8, 0x0adcc0,2, 0x0adccc,11, 0x0add00,8, 0x0add40,2, 0x0add4c,11, 0x0add80,8, 0x0addc0,2, 0x0addcc,11, 0x0ade00,8, 0x0ade40,2, 0x0ade4c,11, 0x0ade80,8, 0x0adec0,2, 0x0adecc,11, 0x0adf00,9, 0x0adf30,2, 0x0adf40,49, 0x0ae018,1, 0x0ae034,1, 0x0ae104,1, 0x0ae134,1, 0x0ae14c,1, 0x0ae170,2, 0x0ae200,1, 0x0ae210,2, 0x0ae400,5, 0x0ae418,9, 0x0ae440,5, 0x0ae460,1, 0x0ae470,2, 0x0ae500,5, 0x0ae518,9, 0x0ae540,5, 0x0ae560,1, 0x0ae570,2, 0x0ae600,5, 0x0ae618,9, 0x0ae640,5, 0x0ae660,1, 0x0ae670,2, 0x0ae700,1, 0x0ae800,6, 0x0ae81c,3, 0x0ae82c,3, 0x0ae83c,8, 0x0ae860,1, 0x0ae868,1, 0x0ae870,2, 0x0ae880,1, 0x0ae890,2, 0x0ae8a0,1, 0x0ae8b0,2, 0x0ae8c0,1, 0x0ae8d0,2, 0x0ae8e0,1, 0x0ae8f0,2, 0x0ae900,29, 0x0ae980,27, 0x0ae9f0,1, 0x0aec00,6, 0x0aec1c,3, 0x0aec2c,3, 0x0aec3c,8, 0x0aec60,1, 0x0aec68,1, 0x0aec70,2, 0x0aec80,1, 0x0aec90,2, 0x0aeca0,1, 0x0aecb0,2, 0x0aecc0,1, 0x0aecd0,2, 0x0aece0,1, 0x0aecf0,2, 0x0aed00,29, 0x0aed80,27, 0x0aedf0,1, 0x0af000,6, 0x0af01c,3, 0x0af02c,3, 0x0af03c,8, 0x0af060,1, 0x0af068,1, 0x0af070,2, 0x0af080,1, 0x0af090,2, 0x0af0a0,1, 0x0af0b0,2, 0x0af0c0,1, 0x0af0d0,2, 0x0af0e0,1, 0x0af0f0,2, 0x0af100,29, 0x0af180,27, 0x0af1f0,1, 0x0af400,6, 0x0af41c,3, 0x0af42c,3, 0x0af43c,8, 0x0af460,1, 0x0af468,1, 0x0af470,2, 0x0af480,1, 0x0af490,2, 0x0af4a0,1, 0x0af4b0,2, 0x0af4c0,1, 0x0af4d0,2, 0x0af4e0,1, 0x0af4f0,2, 0x0af500,29, 0x0af580,27, 0x0af5f0,1, 0x0af800,6, 0x0af81c,3, 0x0af82c,3, 0x0af83c,8, 0x0af860,1, 0x0af868,1, 0x0af870,2, 0x0af880,1, 0x0af890,2, 0x0af8a0,1, 0x0af8b0,2, 0x0af8c0,1, 0x0af8d0,2, 0x0af8e0,1, 0x0af8f0,2, 0x0af900,29, 0x0af980,27, 0x0af9f0,1, 0x0afc00,6, 0x0afc1c,3, 0x0afc2c,3, 0x0afc3c,8, 0x0afc60,1, 0x0afc68,1, 0x0afc70,2, 0x0afc80,1, 0x0afc90,2, 0x0afca0,1, 0x0afcb0,2, 0x0afcc0,1, 0x0afcd0,2, 0x0afce0,1, 0x0afcf0,2, 0x0afd00,29, 0x0afd80,27, 0x0afdf0,1, 0x0b0000,2, 0x0b0018,2, 0x0b0034,2, 0x0b0104,3, 0x0b0134,2, 0x0b014c,1, 0x0b0170,2, 0x0b0200,1, 0x0b0210,2, 0x0b0220,1, 0x0b0230,2, 0x0b0400,1, 0x0b0410,2, 0x0b0420,3, 0x0b0430,22, 0x0b04ac,1, 0x0b04c0,6, 0x0b0500,1, 0x0b0510,2, 0x0b0520,3, 0x0b0540,8, 0x0b0580,6, 0x0b05a0,6, 0x0b0600,10, 0x0b0640,10, 0x0b0680,10, 0x0b06c0,10, 0x0b0700,10, 0x0b0740,10, 0x0b0800,5, 0x0b0820,5, 0x0b0890,10, 0x0b08e0,1, 0x0b08f0,2, 0x0b0900,5, 0x0b0920,5, 0x0b0990,10, 0x0b09e0,1, 0x0b09f0,2, 0x0b0a00,1, 0x0b0a10,2, 0x0b0a20,1, 0x0b0a30,2, 0x0b0a48,3, 0x0b0a80,3, 0x0b0a90,1, 0x0b0a98,12, 0x0b0b04,2, 0x0b0b14,3, 0x0b0b24,2, 0x0b0b34,3, 0x0b0b80,5, 0x0b0b98,3, 0x0b0bb0,2, 0x0b0bc0,5, 0x0b0bd8,3, 0x0b0bf0,2, 0x0b0c00,10, 0x0b0c2c,12, 0x0b0c80,26, 0x0b0d00,2, 0x0b0d20,1, 0x0b0e00,10, 0x0b0e2c,12, 0x0b0e80,26, 0x0b0f00,2, 0x0b0f20,1, 0x0b1000,5, 0x0b1020,5, 0x0b1090,10, 0x0b10e0,1, 0x0b10f0,2, 0x0b1100,5, 0x0b1120,5, 0x0b1190,10, 0x0b11e0,1, 0x0b11f0,2, 0x0b1200,1, 0x0b1210,2, 0x0b1220,1, 0x0b1230,2, 0x0b1248,3, 0x0b1280,3, 0x0b1290,1, 0x0b1298,12, 0x0b1304,2, 0x0b1314,3, 0x0b1324,2, 0x0b1334,3, 0x0b1380,5, 0x0b1398,3, 0x0b13b0,2, 0x0b13c0,5, 0x0b13d8,3, 0x0b13f0,2, 0x0b1400,10, 0x0b142c,12, 0x0b1480,26, 0x0b1500,2, 0x0b1520,1, 0x0b1600,10, 0x0b162c,12, 0x0b1680,26, 0x0b1700,2, 0x0b1720,1, 0x0b1800,5, 0x0b1820,5, 0x0b1890,10, 0x0b18e0,1, 0x0b18f0,2, 0x0b1900,5, 0x0b1920,5, 0x0b1990,10, 0x0b19e0,1, 0x0b19f0,2, 0x0b1a00,1, 0x0b1a10,2, 0x0b1a20,1, 0x0b1a30,2, 0x0b1a48,3, 0x0b1a80,3, 0x0b1a90,1, 0x0b1a98,12, 0x0b1b04,2, 0x0b1b14,3, 0x0b1b24,2, 0x0b1b34,3, 0x0b1b80,5, 0x0b1b98,3, 0x0b1bb0,2, 0x0b1bc0,5, 0x0b1bd8,3, 0x0b1bf0,2, 0x0b1c00,10, 0x0b1c2c,12, 0x0b1c80,26, 0x0b1d00,2, 0x0b1d20,1, 0x0b1e00,10, 0x0b1e2c,12, 0x0b1e80,26, 0x0b1f00,2, 0x0b1f20,1, 0x0b2000,7, 0x0b2020,8, 0x0b2044,8, 0x0b2080,7, 0x0b20a0,8, 0x0b20c4,8, 0x0b2100,7, 0x0b2120,8, 0x0b2144,8, 0x0b2180,7, 0x0b21a0,8, 0x0b21c4,8, 0x0b2200,7, 0x0b2220,8, 0x0b2244,8, 0x0b2280,7, 0x0b22a0,8, 0x0b22c4,8, 0x0b2400,1, 0x0b2418,1, 0x0b2434,1, 0x0b2504,1, 0x0b2534,1, 0x0b254c,1, 0x0b2570,2, 0x0b2600,1, 0x0b2610,2, 0x0b2804,15, 0x0b2844,15, 0x0b2884,15, 0x0b28c4,15, 0x0b2904,15, 0x0b2944,16, 0x0b2990,2, 0x0b29a0,1, 0x0b29b0,2, 0x0b29c0,2, 0x0b2a00,400, 0x0b3080,28, 0x0b3100,28, 0x0b3184,2, 0x0b3194,3, 0x0b31a4,2, 0x0b31b4,10, 0x0b3200,7, 0x0b3260,20, 0x0b32c0,2, 0x0b32cc,2, 0x0b32d8,3, 0x0b3300,1, 0x0b3310,2, 0x0b3320,1, 0x0b3330,2, 0x0b3340,1, 0x0b3350,2, 0x0b3360,1, 0x0b3370,2, 0x0b3380,1, 0x0b3400,16, 0x0b3480,28, 0x0b3500,28, 0x0b3584,2, 0x0b3594,3, 0x0b35a4,2, 0x0b35b4,10, 0x0b3600,7, 0x0b3660,20, 0x0b36c0,2, 0x0b36cc,2, 0x0b36d8,3, 0x0b3700,1, 0x0b3710,2, 0x0b3720,1, 0x0b3730,2, 0x0b3740,1, 0x0b3750,2, 0x0b3760,1, 0x0b3770,2, 0x0b3780,1, 0x0b3800,16, 0x0b3880,28, 0x0b3900,28, 0x0b3984,2, 0x0b3994,3, 0x0b39a4,2, 0x0b39b4,10, 0x0b3a00,7, 0x0b3a60,20, 0x0b3ac0,2, 0x0b3acc,2, 0x0b3ad8,3, 0x0b3b00,1, 0x0b3b10,2, 0x0b3b20,1, 0x0b3b30,2, 0x0b3b40,1, 0x0b3b50,2, 0x0b3b60,1, 0x0b3b70,2, 0x0b3b80,1, 0x0b3c00,18, 0x0b3c60,5, 0x0b3c78,7, 0x0b3c98,6, 0x0b3ce0,3, 0x0b3d04,7, 0x0b3d30,1, 0x0b3d44,7, 0x0b3d70,1, 0x0b3d84,7, 0x0b3db0,1, 0x0b3dc4,7, 0x0b3df0,1, 0x0b3e04,7, 0x0b3e30,1, 0x0b3e44,7, 0x0b3e70,1, 0x0b3e84,7, 0x0b3eb0,1, 0x0b3ec4,7, 0x0b3ef0,1, 0x0b3f00,1, 0x0b3f24,1, 0x0b3f30,4, 0x0b3f44,1, 0x0b3f50,4, 0x0b3fa0,3, 0x0b4000,5, 0x0b4018,3, 0x0b4080,2, 0x0b408c,1, 0x0b40a0,9, 0x0b40d0,2, 0x0b40e0,1, 0x0b40e8,1, 0x0b4100,2, 0x0b410c,1, 0x0b4120,9, 0x0b4150,2, 0x0b4160,1, 0x0b4168,1, 0x0b4180,2, 0x0b418c,1, 0x0b41a0,9, 0x0b41d0,2, 0x0b41e0,1, 0x0b41e8,1, 0x0b4200,2, 0x0b420c,1, 0x0b4220,9, 0x0b4250,2, 0x0b4260,1, 0x0b4268,1, 0x0b4284,2, 0x0b42a8,2, 0x0b42b4,1, 0x0b42c4,2, 0x0b42e8,2, 0x0b42f4,1, 0x0b4400,3, 0x0b4410,15, 0x0b4450,16, 0x0b449c,1, 0x0b44b0,9, 0x0b44e0,1, 0x0b44f0,3, 0x0b4500,12, 0x0b4534,4, 0x0b4558,1, 0x0b4580,1, 0x0b4594,2, 0x0b45ac,11, 0x0b45ec,4, 0x0b4600,15, 0x0b4640,3, 0x0b4650,3, 0x0b4660,1, 0x0b4670,2, 0x0b4680,1, 0x0b4690,2, 0x0b46c0,4, 0x0b46d4,8, 0x0b4700,4, 0x0b4714,8, 0x0b4800,5, 0x0b4818,3, 0x0b4880,2, 0x0b488c,1, 0x0b48a0,9, 0x0b48d0,2, 0x0b48e0,1, 0x0b48e8,1, 0x0b4900,2, 0x0b490c,1, 0x0b4920,9, 0x0b4950,2, 0x0b4960,1, 0x0b4968,1, 0x0b4980,2, 0x0b498c,1, 0x0b49a0,9, 0x0b49d0,2, 0x0b49e0,1, 0x0b49e8,1, 0x0b4a00,2, 0x0b4a0c,1, 0x0b4a20,9, 0x0b4a50,2, 0x0b4a60,1, 0x0b4a68,1, 0x0b4a84,2, 0x0b4aa8,2, 0x0b4ab4,1, 0x0b4ac4,2, 0x0b4ae8,2, 0x0b4af4,1, 0x0b4c00,3, 0x0b4c10,15, 0x0b4c50,16, 0x0b4c9c,1, 0x0b4cb0,9, 0x0b4ce0,1, 0x0b4cf0,3, 0x0b4d00,12, 0x0b4d34,4, 0x0b4d58,1, 0x0b4d80,1, 0x0b4d94,2, 0x0b4dac,11, 0x0b4dec,4, 0x0b4e00,15, 0x0b4e40,3, 0x0b4e50,3, 0x0b4e60,1, 0x0b4e70,2, 0x0b4e80,1, 0x0b4e90,2, 0x0b4ec0,4, 0x0b4ed4,8, 0x0b4f00,4, 0x0b4f14,8, 0x0b5000,5, 0x0b5018,3, 0x0b5080,2, 0x0b508c,1, 0x0b50a0,9, 0x0b50d0,2, 0x0b50e0,1, 0x0b50e8,1, 0x0b5100,2, 0x0b510c,1, 0x0b5120,9, 0x0b5150,2, 0x0b5160,1, 0x0b5168,1, 0x0b5180,2, 0x0b518c,1, 0x0b51a0,9, 0x0b51d0,2, 0x0b51e0,1, 0x0b51e8,1, 0x0b5200,2, 0x0b520c,1, 0x0b5220,9, 0x0b5250,2, 0x0b5260,1, 0x0b5268,1, 0x0b5284,2, 0x0b52a8,2, 0x0b52b4,1, 0x0b52c4,2, 0x0b52e8,2, 0x0b52f4,1, 0x0b5400,3, 0x0b5410,15, 0x0b5450,16, 0x0b549c,1, 0x0b54b0,9, 0x0b54e0,1, 0x0b54f0,3, 0x0b5500,12, 0x0b5534,4, 0x0b5558,1, 0x0b5580,1, 0x0b5594,2, 0x0b55ac,11, 0x0b55ec,4, 0x0b5600,15, 0x0b5640,3, 0x0b5650,3, 0x0b5660,1, 0x0b5670,2, 0x0b5680,1, 0x0b5690,2, 0x0b56c0,4, 0x0b56d4,8, 0x0b5700,4, 0x0b5714,8, 0x0b5800,31, 0x0b5880,8, 0x0b58a4,1, 0x0b58b4,20, 0x0b5910,2, 0x0b5920,3, 0x0b5934,1, 0x0b593c,2, 0x0b5950,2, 0x0b5a00,11, 0x0b5a4c,8, 0x0b5a70,2, 0x0b5a7c,33, 0x0b5c00,8, 0x0b5c40,2, 0x0b5c4c,11, 0x0b5c80,8, 0x0b5cc0,2, 0x0b5ccc,11, 0x0b5d00,8, 0x0b5d40,2, 0x0b5d4c,11, 0x0b5d80,8, 0x0b5dc0,2, 0x0b5dcc,11, 0x0b5e00,8, 0x0b5e40,2, 0x0b5e4c,11, 0x0b5e80,8, 0x0b5ec0,2, 0x0b5ecc,11, 0x0b5f00,9, 0x0b5f30,2, 0x0b5f40,49, 0x0b6018,1, 0x0b6034,1, 0x0b6104,1, 0x0b6134,1, 0x0b614c,1, 0x0b6170,2, 0x0b6200,1, 0x0b6210,2, 0x0b6400,5, 0x0b6418,9, 0x0b6440,5, 0x0b6460,1, 0x0b6470,2, 0x0b6500,5, 0x0b6518,9, 0x0b6540,5, 0x0b6560,1, 0x0b6570,2, 0x0b6600,5, 0x0b6618,9, 0x0b6640,5, 0x0b6660,1, 0x0b6670,2, 0x0b6700,1, 0x0b6800,6, 0x0b681c,3, 0x0b682c,3, 0x0b683c,8, 0x0b6860,1, 0x0b6868,1, 0x0b6870,2, 0x0b6880,1, 0x0b6890,2, 0x0b68a0,1, 0x0b68b0,2, 0x0b68c0,1, 0x0b68d0,2, 0x0b68e0,1, 0x0b68f0,2, 0x0b6900,29, 0x0b6980,27, 0x0b69f0,1, 0x0b6c00,6, 0x0b6c1c,3, 0x0b6c2c,3, 0x0b6c3c,8, 0x0b6c60,1, 0x0b6c68,1, 0x0b6c70,2, 0x0b6c80,1, 0x0b6c90,2, 0x0b6ca0,1, 0x0b6cb0,2, 0x0b6cc0,1, 0x0b6cd0,2, 0x0b6ce0,1, 0x0b6cf0,2, 0x0b6d00,29, 0x0b6d80,27, 0x0b6df0,1, 0x0b7000,6, 0x0b701c,3, 0x0b702c,3, 0x0b703c,8, 0x0b7060,1, 0x0b7068,1, 0x0b7070,2, 0x0b7080,1, 0x0b7090,2, 0x0b70a0,1, 0x0b70b0,2, 0x0b70c0,1, 0x0b70d0,2, 0x0b70e0,1, 0x0b70f0,2, 0x0b7100,29, 0x0b7180,27, 0x0b71f0,1, 0x0b7400,6, 0x0b741c,3, 0x0b742c,3, 0x0b743c,8, 0x0b7460,1, 0x0b7468,1, 0x0b7470,2, 0x0b7480,1, 0x0b7490,2, 0x0b74a0,1, 0x0b74b0,2, 0x0b74c0,1, 0x0b74d0,2, 0x0b74e0,1, 0x0b74f0,2, 0x0b7500,29, 0x0b7580,27, 0x0b75f0,1, 0x0b7800,6, 0x0b781c,3, 0x0b782c,3, 0x0b783c,8, 0x0b7860,1, 0x0b7868,1, 0x0b7870,2, 0x0b7880,1, 0x0b7890,2, 0x0b78a0,1, 0x0b78b0,2, 0x0b78c0,1, 0x0b78d0,2, 0x0b78e0,1, 0x0b78f0,2, 0x0b7900,29, 0x0b7980,27, 0x0b79f0,1, 0x0b7c00,6, 0x0b7c1c,3, 0x0b7c2c,3, 0x0b7c3c,8, 0x0b7c60,1, 0x0b7c68,1, 0x0b7c70,2, 0x0b7c80,1, 0x0b7c90,2, 0x0b7ca0,1, 0x0b7cb0,2, 0x0b7cc0,1, 0x0b7cd0,2, 0x0b7ce0,1, 0x0b7cf0,2, 0x0b7d00,29, 0x0b7d80,27, 0x0b7df0,1, 0x0b8000,2, 0x0b8018,2, 0x0b8034,2, 0x0b8104,3, 0x0b8134,2, 0x0b814c,1, 0x0b8170,2, 0x0b8200,1, 0x0b8210,2, 0x0b8220,1, 0x0b8230,2, 0x0b8400,1, 0x0b8410,2, 0x0b8420,3, 0x0b8430,22, 0x0b84ac,1, 0x0b84c0,6, 0x0b8500,1, 0x0b8510,2, 0x0b8520,3, 0x0b8540,8, 0x0b8580,6, 0x0b85a0,6, 0x0b8600,10, 0x0b8640,10, 0x0b8680,10, 0x0b86c0,10, 0x0b8700,10, 0x0b8740,10, 0x0b8800,5, 0x0b8820,5, 0x0b8890,10, 0x0b88e0,1, 0x0b88f0,2, 0x0b8900,5, 0x0b8920,5, 0x0b8990,10, 0x0b89e0,1, 0x0b89f0,2, 0x0b8a00,1, 0x0b8a10,2, 0x0b8a20,1, 0x0b8a30,2, 0x0b8a48,3, 0x0b8a80,3, 0x0b8a90,1, 0x0b8a98,12, 0x0b8b04,2, 0x0b8b14,3, 0x0b8b24,2, 0x0b8b34,3, 0x0b8b80,5, 0x0b8b98,3, 0x0b8bb0,2, 0x0b8bc0,5, 0x0b8bd8,3, 0x0b8bf0,2, 0x0b8c00,10, 0x0b8c2c,12, 0x0b8c80,26, 0x0b8d00,2, 0x0b8d20,1, 0x0b8e00,10, 0x0b8e2c,12, 0x0b8e80,26, 0x0b8f00,2, 0x0b8f20,1, 0x0b9000,5, 0x0b9020,5, 0x0b9090,10, 0x0b90e0,1, 0x0b90f0,2, 0x0b9100,5, 0x0b9120,5, 0x0b9190,10, 0x0b91e0,1, 0x0b91f0,2, 0x0b9200,1, 0x0b9210,2, 0x0b9220,1, 0x0b9230,2, 0x0b9248,3, 0x0b9280,3, 0x0b9290,1, 0x0b9298,12, 0x0b9304,2, 0x0b9314,3, 0x0b9324,2, 0x0b9334,3, 0x0b9380,5, 0x0b9398,3, 0x0b93b0,2, 0x0b93c0,5, 0x0b93d8,3, 0x0b93f0,2, 0x0b9400,10, 0x0b942c,12, 0x0b9480,26, 0x0b9500,2, 0x0b9520,1, 0x0b9600,10, 0x0b962c,12, 0x0b9680,26, 0x0b9700,2, 0x0b9720,1, 0x0b9800,5, 0x0b9820,5, 0x0b9890,10, 0x0b98e0,1, 0x0b98f0,2, 0x0b9900,5, 0x0b9920,5, 0x0b9990,10, 0x0b99e0,1, 0x0b99f0,2, 0x0b9a00,1, 0x0b9a10,2, 0x0b9a20,1, 0x0b9a30,2, 0x0b9a48,3, 0x0b9a80,3, 0x0b9a90,1, 0x0b9a98,12, 0x0b9b04,2, 0x0b9b14,3, 0x0b9b24,2, 0x0b9b34,3, 0x0b9b80,5, 0x0b9b98,3, 0x0b9bb0,2, 0x0b9bc0,5, 0x0b9bd8,3, 0x0b9bf0,2, 0x0b9c00,10, 0x0b9c2c,12, 0x0b9c80,26, 0x0b9d00,2, 0x0b9d20,1, 0x0b9e00,10, 0x0b9e2c,12, 0x0b9e80,26, 0x0b9f00,2, 0x0b9f20,1, 0x0ba000,7, 0x0ba020,8, 0x0ba044,8, 0x0ba080,7, 0x0ba0a0,8, 0x0ba0c4,8, 0x0ba100,7, 0x0ba120,8, 0x0ba144,8, 0x0ba180,7, 0x0ba1a0,8, 0x0ba1c4,8, 0x0ba200,7, 0x0ba220,8, 0x0ba244,8, 0x0ba280,7, 0x0ba2a0,8, 0x0ba2c4,8, 0x0ba400,1, 0x0ba418,1, 0x0ba434,1, 0x0ba504,1, 0x0ba534,1, 0x0ba54c,1, 0x0ba570,2, 0x0ba600,1, 0x0ba610,2, 0x0ba804,15, 0x0ba844,15, 0x0ba884,15, 0x0ba8c4,15, 0x0ba904,15, 0x0ba944,16, 0x0ba990,2, 0x0ba9a0,1, 0x0ba9b0,2, 0x0ba9c0,2, 0x0baa00,400, 0x0bb080,28, 0x0bb100,28, 0x0bb184,2, 0x0bb194,3, 0x0bb1a4,2, 0x0bb1b4,10, 0x0bb200,7, 0x0bb260,20, 0x0bb2c0,2, 0x0bb2cc,2, 0x0bb2d8,3, 0x0bb300,1, 0x0bb310,2, 0x0bb320,1, 0x0bb330,2, 0x0bb340,1, 0x0bb350,2, 0x0bb360,1, 0x0bb370,2, 0x0bb380,1, 0x0bb400,16, 0x0bb480,28, 0x0bb500,28, 0x0bb584,2, 0x0bb594,3, 0x0bb5a4,2, 0x0bb5b4,10, 0x0bb600,7, 0x0bb660,20, 0x0bb6c0,2, 0x0bb6cc,2, 0x0bb6d8,3, 0x0bb700,1, 0x0bb710,2, 0x0bb720,1, 0x0bb730,2, 0x0bb740,1, 0x0bb750,2, 0x0bb760,1, 0x0bb770,2, 0x0bb780,1, 0x0bb800,16, 0x0bb880,28, 0x0bb900,28, 0x0bb984,2, 0x0bb994,3, 0x0bb9a4,2, 0x0bb9b4,10, 0x0bba00,7, 0x0bba60,20, 0x0bbac0,2, 0x0bbacc,2, 0x0bbad8,3, 0x0bbb00,1, 0x0bbb10,2, 0x0bbb20,1, 0x0bbb30,2, 0x0bbb40,1, 0x0bbb50,2, 0x0bbb60,1, 0x0bbb70,2, 0x0bbb80,1, 0x0bbc00,18, 0x0bbc60,5, 0x0bbc78,7, 0x0bbc98,6, 0x0bbce0,3, 0x0bbd04,7, 0x0bbd30,1, 0x0bbd44,7, 0x0bbd70,1, 0x0bbd84,7, 0x0bbdb0,1, 0x0bbdc4,7, 0x0bbdf0,1, 0x0bbe04,7, 0x0bbe30,1, 0x0bbe44,7, 0x0bbe70,1, 0x0bbe84,7, 0x0bbeb0,1, 0x0bbec4,7, 0x0bbef0,1, 0x0bbf00,1, 0x0bbf24,1, 0x0bbf30,4, 0x0bbf44,1, 0x0bbf50,4, 0x0bbfa0,3, 0x0bc000,5, 0x0bc018,3, 0x0bc080,2, 0x0bc08c,1, 0x0bc0a0,9, 0x0bc0d0,2, 0x0bc0e0,1, 0x0bc0e8,1, 0x0bc100,2, 0x0bc10c,1, 0x0bc120,9, 0x0bc150,2, 0x0bc160,1, 0x0bc168,1, 0x0bc180,2, 0x0bc18c,1, 0x0bc1a0,9, 0x0bc1d0,2, 0x0bc1e0,1, 0x0bc1e8,1, 0x0bc200,2, 0x0bc20c,1, 0x0bc220,9, 0x0bc250,2, 0x0bc260,1, 0x0bc268,1, 0x0bc284,2, 0x0bc2a8,2, 0x0bc2b4,1, 0x0bc2c4,2, 0x0bc2e8,2, 0x0bc2f4,1, 0x0bc400,3, 0x0bc410,15, 0x0bc450,16, 0x0bc49c,1, 0x0bc4b0,9, 0x0bc4e0,1, 0x0bc4f0,3, 0x0bc500,12, 0x0bc534,4, 0x0bc558,1, 0x0bc580,1, 0x0bc594,2, 0x0bc5ac,11, 0x0bc5ec,4, 0x0bc600,15, 0x0bc640,3, 0x0bc650,3, 0x0bc660,1, 0x0bc670,2, 0x0bc680,1, 0x0bc690,2, 0x0bc6c0,4, 0x0bc6d4,8, 0x0bc700,4, 0x0bc714,8, 0x0bc800,5, 0x0bc818,3, 0x0bc880,2, 0x0bc88c,1, 0x0bc8a0,9, 0x0bc8d0,2, 0x0bc8e0,1, 0x0bc8e8,1, 0x0bc900,2, 0x0bc90c,1, 0x0bc920,9, 0x0bc950,2, 0x0bc960,1, 0x0bc968,1, 0x0bc980,2, 0x0bc98c,1, 0x0bc9a0,9, 0x0bc9d0,2, 0x0bc9e0,1, 0x0bc9e8,1, 0x0bca00,2, 0x0bca0c,1, 0x0bca20,9, 0x0bca50,2, 0x0bca60,1, 0x0bca68,1, 0x0bca84,2, 0x0bcaa8,2, 0x0bcab4,1, 0x0bcac4,2, 0x0bcae8,2, 0x0bcaf4,1, 0x0bcc00,3, 0x0bcc10,15, 0x0bcc50,16, 0x0bcc9c,1, 0x0bccb0,9, 0x0bcce0,1, 0x0bccf0,3, 0x0bcd00,12, 0x0bcd34,4, 0x0bcd58,1, 0x0bcd80,1, 0x0bcd94,2, 0x0bcdac,11, 0x0bcdec,4, 0x0bce00,15, 0x0bce40,3, 0x0bce50,3, 0x0bce60,1, 0x0bce70,2, 0x0bce80,1, 0x0bce90,2, 0x0bcec0,4, 0x0bced4,8, 0x0bcf00,4, 0x0bcf14,8, 0x0bd000,5, 0x0bd018,3, 0x0bd080,2, 0x0bd08c,1, 0x0bd0a0,9, 0x0bd0d0,2, 0x0bd0e0,1, 0x0bd0e8,1, 0x0bd100,2, 0x0bd10c,1, 0x0bd120,9, 0x0bd150,2, 0x0bd160,1, 0x0bd168,1, 0x0bd180,2, 0x0bd18c,1, 0x0bd1a0,9, 0x0bd1d0,2, 0x0bd1e0,1, 0x0bd1e8,1, 0x0bd200,2, 0x0bd20c,1, 0x0bd220,9, 0x0bd250,2, 0x0bd260,1, 0x0bd268,1, 0x0bd284,2, 0x0bd2a8,2, 0x0bd2b4,1, 0x0bd2c4,2, 0x0bd2e8,2, 0x0bd2f4,1, 0x0bd400,3, 0x0bd410,15, 0x0bd450,16, 0x0bd49c,1, 0x0bd4b0,9, 0x0bd4e0,1, 0x0bd4f0,3, 0x0bd500,12, 0x0bd534,4, 0x0bd558,1, 0x0bd580,1, 0x0bd594,2, 0x0bd5ac,11, 0x0bd5ec,4, 0x0bd600,15, 0x0bd640,3, 0x0bd650,3, 0x0bd660,1, 0x0bd670,2, 0x0bd680,1, 0x0bd690,2, 0x0bd6c0,4, 0x0bd6d4,8, 0x0bd700,4, 0x0bd714,8, 0x0bd800,31, 0x0bd880,8, 0x0bd8a4,1, 0x0bd8b4,20, 0x0bd910,2, 0x0bd920,3, 0x0bd934,1, 0x0bd93c,2, 0x0bd950,2, 0x0bda00,11, 0x0bda4c,8, 0x0bda70,2, 0x0bda7c,33, 0x0bdc00,8, 0x0bdc40,2, 0x0bdc4c,11, 0x0bdc80,8, 0x0bdcc0,2, 0x0bdccc,11, 0x0bdd00,8, 0x0bdd40,2, 0x0bdd4c,11, 0x0bdd80,8, 0x0bddc0,2, 0x0bddcc,11, 0x0bde00,8, 0x0bde40,2, 0x0bde4c,11, 0x0bde80,8, 0x0bdec0,2, 0x0bdecc,11, 0x0bdf00,9, 0x0bdf30,2, 0x0bdf40,49, 0x0be018,1, 0x0be034,1, 0x0be104,1, 0x0be134,1, 0x0be14c,1, 0x0be170,2, 0x0be200,1, 0x0be210,2, 0x0be400,5, 0x0be418,9, 0x0be440,5, 0x0be460,1, 0x0be470,2, 0x0be500,5, 0x0be518,9, 0x0be540,5, 0x0be560,1, 0x0be570,2, 0x0be600,5, 0x0be618,9, 0x0be640,5, 0x0be660,1, 0x0be670,2, 0x0be700,1, 0x0be800,6, 0x0be81c,3, 0x0be82c,3, 0x0be83c,8, 0x0be860,1, 0x0be868,1, 0x0be870,2, 0x0be880,1, 0x0be890,2, 0x0be8a0,1, 0x0be8b0,2, 0x0be8c0,1, 0x0be8d0,2, 0x0be8e0,1, 0x0be8f0,2, 0x0be900,29, 0x0be980,27, 0x0be9f0,1, 0x0bec00,6, 0x0bec1c,3, 0x0bec2c,3, 0x0bec3c,8, 0x0bec60,1, 0x0bec68,1, 0x0bec70,2, 0x0bec80,1, 0x0bec90,2, 0x0beca0,1, 0x0becb0,2, 0x0becc0,1, 0x0becd0,2, 0x0bece0,1, 0x0becf0,2, 0x0bed00,29, 0x0bed80,27, 0x0bedf0,1, 0x0bf000,6, 0x0bf01c,3, 0x0bf02c,3, 0x0bf03c,8, 0x0bf060,1, 0x0bf068,1, 0x0bf070,2, 0x0bf080,1, 0x0bf090,2, 0x0bf0a0,1, 0x0bf0b0,2, 0x0bf0c0,1, 0x0bf0d0,2, 0x0bf0e0,1, 0x0bf0f0,2, 0x0bf100,29, 0x0bf180,27, 0x0bf1f0,1, 0x0bf400,6, 0x0bf41c,3, 0x0bf42c,3, 0x0bf43c,8, 0x0bf460,1, 0x0bf468,1, 0x0bf470,2, 0x0bf480,1, 0x0bf490,2, 0x0bf4a0,1, 0x0bf4b0,2, 0x0bf4c0,1, 0x0bf4d0,2, 0x0bf4e0,1, 0x0bf4f0,2, 0x0bf500,29, 0x0bf580,27, 0x0bf5f0,1, 0x0bf800,6, 0x0bf81c,3, 0x0bf82c,3, 0x0bf83c,8, 0x0bf860,1, 0x0bf868,1, 0x0bf870,2, 0x0bf880,1, 0x0bf890,2, 0x0bf8a0,1, 0x0bf8b0,2, 0x0bf8c0,1, 0x0bf8d0,2, 0x0bf8e0,1, 0x0bf8f0,2, 0x0bf900,29, 0x0bf980,27, 0x0bf9f0,1, 0x0bfc00,6, 0x0bfc1c,3, 0x0bfc2c,3, 0x0bfc3c,8, 0x0bfc60,1, 0x0bfc68,1, 0x0bfc70,2, 0x0bfc80,1, 0x0bfc90,2, 0x0bfca0,1, 0x0bfcb0,2, 0x0bfcc0,1, 0x0bfcd0,2, 0x0bfce0,1, 0x0bfcf0,2, 0x0bfd00,29, 0x0bfd80,27, 0x0bfdf0,1, 0x0c0000,2, 0x0c0018,2, 0x0c0034,2, 0x0c0104,3, 0x0c0134,2, 0x0c014c,1, 0x0c0170,2, 0x0c0200,1, 0x0c0210,2, 0x0c0220,1, 0x0c0230,2, 0x0c0400,1, 0x0c0410,2, 0x0c0420,3, 0x0c0430,22, 0x0c04ac,1, 0x0c04c0,6, 0x0c0500,1, 0x0c0510,2, 0x0c0520,3, 0x0c0540,8, 0x0c0580,6, 0x0c05a0,6, 0x0c0600,10, 0x0c0640,10, 0x0c0680,10, 0x0c06c0,10, 0x0c0700,10, 0x0c0740,10, 0x0c0800,5, 0x0c0820,5, 0x0c0890,10, 0x0c08e0,1, 0x0c08f0,2, 0x0c0900,5, 0x0c0920,5, 0x0c0990,10, 0x0c09e0,1, 0x0c09f0,2, 0x0c0a00,1, 0x0c0a10,2, 0x0c0a20,1, 0x0c0a30,2, 0x0c0a48,3, 0x0c0a80,3, 0x0c0a90,1, 0x0c0a98,12, 0x0c0b04,2, 0x0c0b14,3, 0x0c0b24,2, 0x0c0b34,3, 0x0c0b80,5, 0x0c0b98,3, 0x0c0bb0,2, 0x0c0bc0,5, 0x0c0bd8,3, 0x0c0bf0,2, 0x0c0c00,10, 0x0c0c2c,12, 0x0c0c80,26, 0x0c0d00,2, 0x0c0d20,1, 0x0c0e00,10, 0x0c0e2c,12, 0x0c0e80,26, 0x0c0f00,2, 0x0c0f20,1, 0x0c1000,5, 0x0c1020,5, 0x0c1090,10, 0x0c10e0,1, 0x0c10f0,2, 0x0c1100,5, 0x0c1120,5, 0x0c1190,10, 0x0c11e0,1, 0x0c11f0,2, 0x0c1200,1, 0x0c1210,2, 0x0c1220,1, 0x0c1230,2, 0x0c1248,3, 0x0c1280,3, 0x0c1290,1, 0x0c1298,12, 0x0c1304,2, 0x0c1314,3, 0x0c1324,2, 0x0c1334,3, 0x0c1380,5, 0x0c1398,3, 0x0c13b0,2, 0x0c13c0,5, 0x0c13d8,3, 0x0c13f0,2, 0x0c1400,10, 0x0c142c,12, 0x0c1480,26, 0x0c1500,2, 0x0c1520,1, 0x0c1600,10, 0x0c162c,12, 0x0c1680,26, 0x0c1700,2, 0x0c1720,1, 0x0c1800,5, 0x0c1820,5, 0x0c1890,10, 0x0c18e0,1, 0x0c18f0,2, 0x0c1900,5, 0x0c1920,5, 0x0c1990,10, 0x0c19e0,1, 0x0c19f0,2, 0x0c1a00,1, 0x0c1a10,2, 0x0c1a20,1, 0x0c1a30,2, 0x0c1a48,3, 0x0c1a80,3, 0x0c1a90,1, 0x0c1a98,12, 0x0c1b04,2, 0x0c1b14,3, 0x0c1b24,2, 0x0c1b34,3, 0x0c1b80,5, 0x0c1b98,3, 0x0c1bb0,2, 0x0c1bc0,5, 0x0c1bd8,3, 0x0c1bf0,2, 0x0c1c00,10, 0x0c1c2c,12, 0x0c1c80,26, 0x0c1d00,2, 0x0c1d20,1, 0x0c1e00,10, 0x0c1e2c,12, 0x0c1e80,26, 0x0c1f00,2, 0x0c1f20,1, 0x0c2000,7, 0x0c2020,8, 0x0c2044,8, 0x0c2080,7, 0x0c20a0,8, 0x0c20c4,8, 0x0c2100,7, 0x0c2120,8, 0x0c2144,8, 0x0c2180,7, 0x0c21a0,8, 0x0c21c4,8, 0x0c2200,7, 0x0c2220,8, 0x0c2244,8, 0x0c2280,7, 0x0c22a0,8, 0x0c22c4,8, 0x0c2400,1, 0x0c2418,1, 0x0c2434,1, 0x0c2504,1, 0x0c2534,1, 0x0c254c,1, 0x0c2570,2, 0x0c2600,1, 0x0c2610,2, 0x0c2804,15, 0x0c2844,15, 0x0c2884,15, 0x0c28c4,15, 0x0c2904,15, 0x0c2944,16, 0x0c2990,2, 0x0c29a0,1, 0x0c29b0,2, 0x0c29c0,2, 0x0c2a00,400, 0x0c3080,28, 0x0c3100,28, 0x0c3184,2, 0x0c3194,3, 0x0c31a4,2, 0x0c31b4,10, 0x0c3200,7, 0x0c3260,20, 0x0c32c0,2, 0x0c32cc,2, 0x0c32d8,3, 0x0c3300,1, 0x0c3310,2, 0x0c3320,1, 0x0c3330,2, 0x0c3340,1, 0x0c3350,2, 0x0c3360,1, 0x0c3370,2, 0x0c3380,1, 0x0c3400,16, 0x0c3480,28, 0x0c3500,28, 0x0c3584,2, 0x0c3594,3, 0x0c35a4,2, 0x0c35b4,10, 0x0c3600,7, 0x0c3660,20, 0x0c36c0,2, 0x0c36cc,2, 0x0c36d8,3, 0x0c3700,1, 0x0c3710,2, 0x0c3720,1, 0x0c3730,2, 0x0c3740,1, 0x0c3750,2, 0x0c3760,1, 0x0c3770,2, 0x0c3780,1, 0x0c3800,16, 0x0c3880,28, 0x0c3900,28, 0x0c3984,2, 0x0c3994,3, 0x0c39a4,2, 0x0c39b4,10, 0x0c3a00,7, 0x0c3a60,20, 0x0c3ac0,2, 0x0c3acc,2, 0x0c3ad8,3, 0x0c3b00,1, 0x0c3b10,2, 0x0c3b20,1, 0x0c3b30,2, 0x0c3b40,1, 0x0c3b50,2, 0x0c3b60,1, 0x0c3b70,2, 0x0c3b80,1, 0x0c3c00,18, 0x0c3c60,5, 0x0c3c78,7, 0x0c3c98,6, 0x0c3ce0,3, 0x0c3d04,7, 0x0c3d30,1, 0x0c3d44,7, 0x0c3d70,1, 0x0c3d84,7, 0x0c3db0,1, 0x0c3dc4,7, 0x0c3df0,1, 0x0c3e04,7, 0x0c3e30,1, 0x0c3e44,7, 0x0c3e70,1, 0x0c3e84,7, 0x0c3eb0,1, 0x0c3ec4,7, 0x0c3ef0,1, 0x0c3f00,1, 0x0c3f24,1, 0x0c3f30,4, 0x0c3f44,1, 0x0c3f50,4, 0x0c3fa0,3, 0x0c4000,5, 0x0c4018,3, 0x0c4080,2, 0x0c408c,1, 0x0c40a0,9, 0x0c40d0,2, 0x0c40e0,1, 0x0c40e8,1, 0x0c4100,2, 0x0c410c,1, 0x0c4120,9, 0x0c4150,2, 0x0c4160,1, 0x0c4168,1, 0x0c4180,2, 0x0c418c,1, 0x0c41a0,9, 0x0c41d0,2, 0x0c41e0,1, 0x0c41e8,1, 0x0c4200,2, 0x0c420c,1, 0x0c4220,9, 0x0c4250,2, 0x0c4260,1, 0x0c4268,1, 0x0c4284,2, 0x0c42a8,2, 0x0c42b4,1, 0x0c42c4,2, 0x0c42e8,2, 0x0c42f4,1, 0x0c4400,3, 0x0c4410,15, 0x0c4450,16, 0x0c449c,1, 0x0c44b0,9, 0x0c44e0,1, 0x0c44f0,3, 0x0c4500,12, 0x0c4534,4, 0x0c4558,1, 0x0c4580,1, 0x0c4594,2, 0x0c45ac,11, 0x0c45ec,4, 0x0c4600,15, 0x0c4640,3, 0x0c4650,3, 0x0c4660,1, 0x0c4670,2, 0x0c4680,1, 0x0c4690,2, 0x0c46c0,4, 0x0c46d4,8, 0x0c4700,4, 0x0c4714,8, 0x0c4800,5, 0x0c4818,3, 0x0c4880,2, 0x0c488c,1, 0x0c48a0,9, 0x0c48d0,2, 0x0c48e0,1, 0x0c48e8,1, 0x0c4900,2, 0x0c490c,1, 0x0c4920,9, 0x0c4950,2, 0x0c4960,1, 0x0c4968,1, 0x0c4980,2, 0x0c498c,1, 0x0c49a0,9, 0x0c49d0,2, 0x0c49e0,1, 0x0c49e8,1, 0x0c4a00,2, 0x0c4a0c,1, 0x0c4a20,9, 0x0c4a50,2, 0x0c4a60,1, 0x0c4a68,1, 0x0c4a84,2, 0x0c4aa8,2, 0x0c4ab4,1, 0x0c4ac4,2, 0x0c4ae8,2, 0x0c4af4,1, 0x0c4c00,3, 0x0c4c10,15, 0x0c4c50,16, 0x0c4c9c,1, 0x0c4cb0,9, 0x0c4ce0,1, 0x0c4cf0,3, 0x0c4d00,12, 0x0c4d34,4, 0x0c4d58,1, 0x0c4d80,1, 0x0c4d94,2, 0x0c4dac,11, 0x0c4dec,4, 0x0c4e00,15, 0x0c4e40,3, 0x0c4e50,3, 0x0c4e60,1, 0x0c4e70,2, 0x0c4e80,1, 0x0c4e90,2, 0x0c4ec0,4, 0x0c4ed4,8, 0x0c4f00,4, 0x0c4f14,8, 0x0c5000,5, 0x0c5018,3, 0x0c5080,2, 0x0c508c,1, 0x0c50a0,9, 0x0c50d0,2, 0x0c50e0,1, 0x0c50e8,1, 0x0c5100,2, 0x0c510c,1, 0x0c5120,9, 0x0c5150,2, 0x0c5160,1, 0x0c5168,1, 0x0c5180,2, 0x0c518c,1, 0x0c51a0,9, 0x0c51d0,2, 0x0c51e0,1, 0x0c51e8,1, 0x0c5200,2, 0x0c520c,1, 0x0c5220,9, 0x0c5250,2, 0x0c5260,1, 0x0c5268,1, 0x0c5284,2, 0x0c52a8,2, 0x0c52b4,1, 0x0c52c4,2, 0x0c52e8,2, 0x0c52f4,1, 0x0c5400,3, 0x0c5410,15, 0x0c5450,16, 0x0c549c,1, 0x0c54b0,9, 0x0c54e0,1, 0x0c54f0,3, 0x0c5500,12, 0x0c5534,4, 0x0c5558,1, 0x0c5580,1, 0x0c5594,2, 0x0c55ac,11, 0x0c55ec,4, 0x0c5600,15, 0x0c5640,3, 0x0c5650,3, 0x0c5660,1, 0x0c5670,2, 0x0c5680,1, 0x0c5690,2, 0x0c56c0,4, 0x0c56d4,8, 0x0c5700,4, 0x0c5714,8, 0x0c5800,31, 0x0c5880,8, 0x0c58a4,1, 0x0c58b4,20, 0x0c5910,2, 0x0c5920,3, 0x0c5934,1, 0x0c593c,2, 0x0c5950,2, 0x0c5a00,11, 0x0c5a4c,8, 0x0c5a70,2, 0x0c5a7c,33, 0x0c5c00,8, 0x0c5c40,2, 0x0c5c4c,11, 0x0c5c80,8, 0x0c5cc0,2, 0x0c5ccc,11, 0x0c5d00,8, 0x0c5d40,2, 0x0c5d4c,11, 0x0c5d80,8, 0x0c5dc0,2, 0x0c5dcc,11, 0x0c5e00,8, 0x0c5e40,2, 0x0c5e4c,11, 0x0c5e80,8, 0x0c5ec0,2, 0x0c5ecc,11, 0x0c5f00,9, 0x0c5f30,2, 0x0c5f40,49, 0x0c6018,1, 0x0c6034,1, 0x0c6104,1, 0x0c6134,1, 0x0c614c,1, 0x0c6170,2, 0x0c6200,1, 0x0c6210,2, 0x0c6400,5, 0x0c6418,9, 0x0c6440,5, 0x0c6460,1, 0x0c6470,2, 0x0c6500,5, 0x0c6518,9, 0x0c6540,5, 0x0c6560,1, 0x0c6570,2, 0x0c6600,5, 0x0c6618,9, 0x0c6640,5, 0x0c6660,1, 0x0c6670,2, 0x0c6700,1, 0x0c6800,6, 0x0c681c,3, 0x0c682c,3, 0x0c683c,8, 0x0c6860,1, 0x0c6868,1, 0x0c6870,2, 0x0c6880,1, 0x0c6890,2, 0x0c68a0,1, 0x0c68b0,2, 0x0c68c0,1, 0x0c68d0,2, 0x0c68e0,1, 0x0c68f0,2, 0x0c6900,29, 0x0c6980,27, 0x0c69f0,1, 0x0c6c00,6, 0x0c6c1c,3, 0x0c6c2c,3, 0x0c6c3c,8, 0x0c6c60,1, 0x0c6c68,1, 0x0c6c70,2, 0x0c6c80,1, 0x0c6c90,2, 0x0c6ca0,1, 0x0c6cb0,2, 0x0c6cc0,1, 0x0c6cd0,2, 0x0c6ce0,1, 0x0c6cf0,2, 0x0c6d00,29, 0x0c6d80,27, 0x0c6df0,1, 0x0c7000,6, 0x0c701c,3, 0x0c702c,3, 0x0c703c,8, 0x0c7060,1, 0x0c7068,1, 0x0c7070,2, 0x0c7080,1, 0x0c7090,2, 0x0c70a0,1, 0x0c70b0,2, 0x0c70c0,1, 0x0c70d0,2, 0x0c70e0,1, 0x0c70f0,2, 0x0c7100,29, 0x0c7180,27, 0x0c71f0,1, 0x0c7400,6, 0x0c741c,3, 0x0c742c,3, 0x0c743c,8, 0x0c7460,1, 0x0c7468,1, 0x0c7470,2, 0x0c7480,1, 0x0c7490,2, 0x0c74a0,1, 0x0c74b0,2, 0x0c74c0,1, 0x0c74d0,2, 0x0c74e0,1, 0x0c74f0,2, 0x0c7500,29, 0x0c7580,27, 0x0c75f0,1, 0x0c7800,6, 0x0c781c,3, 0x0c782c,3, 0x0c783c,8, 0x0c7860,1, 0x0c7868,1, 0x0c7870,2, 0x0c7880,1, 0x0c7890,2, 0x0c78a0,1, 0x0c78b0,2, 0x0c78c0,1, 0x0c78d0,2, 0x0c78e0,1, 0x0c78f0,2, 0x0c7900,29, 0x0c7980,27, 0x0c79f0,1, 0x0c7c00,6, 0x0c7c1c,3, 0x0c7c2c,3, 0x0c7c3c,8, 0x0c7c60,1, 0x0c7c68,1, 0x0c7c70,2, 0x0c7c80,1, 0x0c7c90,2, 0x0c7ca0,1, 0x0c7cb0,2, 0x0c7cc0,1, 0x0c7cd0,2, 0x0c7ce0,1, 0x0c7cf0,2, 0x0c7d00,29, 0x0c7d80,27, 0x0c7df0,1, 0x0c8000,2, 0x0c8018,2, 0x0c8034,2, 0x0c8104,3, 0x0c8134,2, 0x0c814c,1, 0x0c8170,2, 0x0c8200,1, 0x0c8210,2, 0x0c8220,1, 0x0c8230,2, 0x0c8400,1, 0x0c8410,2, 0x0c8420,3, 0x0c8430,22, 0x0c84ac,1, 0x0c84c0,6, 0x0c8500,1, 0x0c8510,2, 0x0c8520,3, 0x0c8540,8, 0x0c8580,6, 0x0c85a0,6, 0x0c8600,10, 0x0c8640,10, 0x0c8680,10, 0x0c86c0,10, 0x0c8700,10, 0x0c8740,10, 0x0c8800,5, 0x0c8820,5, 0x0c8890,10, 0x0c88e0,1, 0x0c88f0,2, 0x0c8900,5, 0x0c8920,5, 0x0c8990,10, 0x0c89e0,1, 0x0c89f0,2, 0x0c8a00,1, 0x0c8a10,2, 0x0c8a20,1, 0x0c8a30,2, 0x0c8a48,3, 0x0c8a80,3, 0x0c8a90,1, 0x0c8a98,12, 0x0c8b04,2, 0x0c8b14,3, 0x0c8b24,2, 0x0c8b34,3, 0x0c8b80,5, 0x0c8b98,3, 0x0c8bb0,2, 0x0c8bc0,5, 0x0c8bd8,3, 0x0c8bf0,2, 0x0c8c00,10, 0x0c8c2c,12, 0x0c8c80,26, 0x0c8d00,2, 0x0c8d20,1, 0x0c8e00,10, 0x0c8e2c,12, 0x0c8e80,26, 0x0c8f00,2, 0x0c8f20,1, 0x0c9000,5, 0x0c9020,5, 0x0c9090,10, 0x0c90e0,1, 0x0c90f0,2, 0x0c9100,5, 0x0c9120,5, 0x0c9190,10, 0x0c91e0,1, 0x0c91f0,2, 0x0c9200,1, 0x0c9210,2, 0x0c9220,1, 0x0c9230,2, 0x0c9248,3, 0x0c9280,3, 0x0c9290,1, 0x0c9298,12, 0x0c9304,2, 0x0c9314,3, 0x0c9324,2, 0x0c9334,3, 0x0c9380,5, 0x0c9398,3, 0x0c93b0,2, 0x0c93c0,5, 0x0c93d8,3, 0x0c93f0,2, 0x0c9400,10, 0x0c942c,12, 0x0c9480,26, 0x0c9500,2, 0x0c9520,1, 0x0c9600,10, 0x0c962c,12, 0x0c9680,26, 0x0c9700,2, 0x0c9720,1, 0x0c9800,5, 0x0c9820,5, 0x0c9890,10, 0x0c98e0,1, 0x0c98f0,2, 0x0c9900,5, 0x0c9920,5, 0x0c9990,10, 0x0c99e0,1, 0x0c99f0,2, 0x0c9a00,1, 0x0c9a10,2, 0x0c9a20,1, 0x0c9a30,2, 0x0c9a48,3, 0x0c9a80,3, 0x0c9a90,1, 0x0c9a98,12, 0x0c9b04,2, 0x0c9b14,3, 0x0c9b24,2, 0x0c9b34,3, 0x0c9b80,5, 0x0c9b98,3, 0x0c9bb0,2, 0x0c9bc0,5, 0x0c9bd8,3, 0x0c9bf0,2, 0x0c9c00,10, 0x0c9c2c,12, 0x0c9c80,26, 0x0c9d00,2, 0x0c9d20,1, 0x0c9e00,10, 0x0c9e2c,12, 0x0c9e80,26, 0x0c9f00,2, 0x0c9f20,1, 0x0ca000,7, 0x0ca020,8, 0x0ca044,8, 0x0ca080,7, 0x0ca0a0,8, 0x0ca0c4,8, 0x0ca100,7, 0x0ca120,8, 0x0ca144,8, 0x0ca180,7, 0x0ca1a0,8, 0x0ca1c4,8, 0x0ca200,7, 0x0ca220,8, 0x0ca244,8, 0x0ca280,7, 0x0ca2a0,8, 0x0ca2c4,8, 0x0ca400,1, 0x0ca418,1, 0x0ca434,1, 0x0ca504,1, 0x0ca534,1, 0x0ca54c,1, 0x0ca570,2, 0x0ca600,1, 0x0ca610,2, 0x0ca804,15, 0x0ca844,15, 0x0ca884,15, 0x0ca8c4,15, 0x0ca904,15, 0x0ca944,16, 0x0ca990,2, 0x0ca9a0,1, 0x0ca9b0,2, 0x0ca9c0,2, 0x0caa00,400, 0x0cb080,28, 0x0cb100,28, 0x0cb184,2, 0x0cb194,3, 0x0cb1a4,2, 0x0cb1b4,10, 0x0cb200,7, 0x0cb260,20, 0x0cb2c0,2, 0x0cb2cc,2, 0x0cb2d8,3, 0x0cb300,1, 0x0cb310,2, 0x0cb320,1, 0x0cb330,2, 0x0cb340,1, 0x0cb350,2, 0x0cb360,1, 0x0cb370,2, 0x0cb380,1, 0x0cb400,16, 0x0cb480,28, 0x0cb500,28, 0x0cb584,2, 0x0cb594,3, 0x0cb5a4,2, 0x0cb5b4,10, 0x0cb600,7, 0x0cb660,20, 0x0cb6c0,2, 0x0cb6cc,2, 0x0cb6d8,3, 0x0cb700,1, 0x0cb710,2, 0x0cb720,1, 0x0cb730,2, 0x0cb740,1, 0x0cb750,2, 0x0cb760,1, 0x0cb770,2, 0x0cb780,1, 0x0cb800,16, 0x0cb880,28, 0x0cb900,28, 0x0cb984,2, 0x0cb994,3, 0x0cb9a4,2, 0x0cb9b4,10, 0x0cba00,7, 0x0cba60,20, 0x0cbac0,2, 0x0cbacc,2, 0x0cbad8,3, 0x0cbb00,1, 0x0cbb10,2, 0x0cbb20,1, 0x0cbb30,2, 0x0cbb40,1, 0x0cbb50,2, 0x0cbb60,1, 0x0cbb70,2, 0x0cbb80,1, 0x0cbc00,18, 0x0cbc60,5, 0x0cbc78,7, 0x0cbc98,6, 0x0cbce0,3, 0x0cbd04,7, 0x0cbd30,1, 0x0cbd44,7, 0x0cbd70,1, 0x0cbd84,7, 0x0cbdb0,1, 0x0cbdc4,7, 0x0cbdf0,1, 0x0cbe04,7, 0x0cbe30,1, 0x0cbe44,7, 0x0cbe70,1, 0x0cbe84,7, 0x0cbeb0,1, 0x0cbec4,7, 0x0cbef0,1, 0x0cbf00,1, 0x0cbf24,1, 0x0cbf30,4, 0x0cbf44,1, 0x0cbf50,4, 0x0cbfa0,3, 0x0cc000,5, 0x0cc018,3, 0x0cc080,2, 0x0cc08c,1, 0x0cc0a0,9, 0x0cc0d0,2, 0x0cc0e0,1, 0x0cc0e8,1, 0x0cc100,2, 0x0cc10c,1, 0x0cc120,9, 0x0cc150,2, 0x0cc160,1, 0x0cc168,1, 0x0cc180,2, 0x0cc18c,1, 0x0cc1a0,9, 0x0cc1d0,2, 0x0cc1e0,1, 0x0cc1e8,1, 0x0cc200,2, 0x0cc20c,1, 0x0cc220,9, 0x0cc250,2, 0x0cc260,1, 0x0cc268,1, 0x0cc284,2, 0x0cc2a8,2, 0x0cc2b4,1, 0x0cc2c4,2, 0x0cc2e8,2, 0x0cc2f4,1, 0x0cc400,3, 0x0cc410,15, 0x0cc450,16, 0x0cc49c,1, 0x0cc4b0,9, 0x0cc4e0,1, 0x0cc4f0,3, 0x0cc500,12, 0x0cc534,4, 0x0cc558,1, 0x0cc580,1, 0x0cc594,2, 0x0cc5ac,11, 0x0cc5ec,4, 0x0cc600,15, 0x0cc640,3, 0x0cc650,3, 0x0cc660,1, 0x0cc670,2, 0x0cc680,1, 0x0cc690,2, 0x0cc6c0,4, 0x0cc6d4,8, 0x0cc700,4, 0x0cc714,8, 0x0cc800,5, 0x0cc818,3, 0x0cc880,2, 0x0cc88c,1, 0x0cc8a0,9, 0x0cc8d0,2, 0x0cc8e0,1, 0x0cc8e8,1, 0x0cc900,2, 0x0cc90c,1, 0x0cc920,9, 0x0cc950,2, 0x0cc960,1, 0x0cc968,1, 0x0cc980,2, 0x0cc98c,1, 0x0cc9a0,9, 0x0cc9d0,2, 0x0cc9e0,1, 0x0cc9e8,1, 0x0cca00,2, 0x0cca0c,1, 0x0cca20,9, 0x0cca50,2, 0x0cca60,1, 0x0cca68,1, 0x0cca84,2, 0x0ccaa8,2, 0x0ccab4,1, 0x0ccac4,2, 0x0ccae8,2, 0x0ccaf4,1, 0x0ccc00,3, 0x0ccc10,15, 0x0ccc50,16, 0x0ccc9c,1, 0x0cccb0,9, 0x0ccce0,1, 0x0cccf0,3, 0x0ccd00,12, 0x0ccd34,4, 0x0ccd58,1, 0x0ccd80,1, 0x0ccd94,2, 0x0ccdac,11, 0x0ccdec,4, 0x0cce00,15, 0x0cce40,3, 0x0cce50,3, 0x0cce60,1, 0x0cce70,2, 0x0cce80,1, 0x0cce90,2, 0x0ccec0,4, 0x0cced4,8, 0x0ccf00,4, 0x0ccf14,8, 0x0cd000,5, 0x0cd018,3, 0x0cd080,2, 0x0cd08c,1, 0x0cd0a0,9, 0x0cd0d0,2, 0x0cd0e0,1, 0x0cd0e8,1, 0x0cd100,2, 0x0cd10c,1, 0x0cd120,9, 0x0cd150,2, 0x0cd160,1, 0x0cd168,1, 0x0cd180,2, 0x0cd18c,1, 0x0cd1a0,9, 0x0cd1d0,2, 0x0cd1e0,1, 0x0cd1e8,1, 0x0cd200,2, 0x0cd20c,1, 0x0cd220,9, 0x0cd250,2, 0x0cd260,1, 0x0cd268,1, 0x0cd284,2, 0x0cd2a8,2, 0x0cd2b4,1, 0x0cd2c4,2, 0x0cd2e8,2, 0x0cd2f4,1, 0x0cd400,3, 0x0cd410,15, 0x0cd450,16, 0x0cd49c,1, 0x0cd4b0,9, 0x0cd4e0,1, 0x0cd4f0,3, 0x0cd500,12, 0x0cd534,4, 0x0cd558,1, 0x0cd580,1, 0x0cd594,2, 0x0cd5ac,11, 0x0cd5ec,4, 0x0cd600,15, 0x0cd640,3, 0x0cd650,3, 0x0cd660,1, 0x0cd670,2, 0x0cd680,1, 0x0cd690,2, 0x0cd6c0,4, 0x0cd6d4,8, 0x0cd700,4, 0x0cd714,8, 0x0cd800,31, 0x0cd880,8, 0x0cd8a4,1, 0x0cd8b4,20, 0x0cd910,2, 0x0cd920,3, 0x0cd934,1, 0x0cd93c,2, 0x0cd950,2, 0x0cda00,11, 0x0cda4c,8, 0x0cda70,2, 0x0cda7c,33, 0x0cdc00,8, 0x0cdc40,2, 0x0cdc4c,11, 0x0cdc80,8, 0x0cdcc0,2, 0x0cdccc,11, 0x0cdd00,8, 0x0cdd40,2, 0x0cdd4c,11, 0x0cdd80,8, 0x0cddc0,2, 0x0cddcc,11, 0x0cde00,8, 0x0cde40,2, 0x0cde4c,11, 0x0cde80,8, 0x0cdec0,2, 0x0cdecc,11, 0x0cdf00,9, 0x0cdf30,2, 0x0cdf40,49, 0x0ce018,1, 0x0ce034,1, 0x0ce104,1, 0x0ce134,1, 0x0ce14c,1, 0x0ce170,2, 0x0ce200,1, 0x0ce210,2, 0x0ce400,5, 0x0ce418,9, 0x0ce440,5, 0x0ce460,1, 0x0ce470,2, 0x0ce500,5, 0x0ce518,9, 0x0ce540,5, 0x0ce560,1, 0x0ce570,2, 0x0ce600,5, 0x0ce618,9, 0x0ce640,5, 0x0ce660,1, 0x0ce670,2, 0x0ce700,1, 0x0ce800,6, 0x0ce81c,3, 0x0ce82c,3, 0x0ce83c,8, 0x0ce860,1, 0x0ce868,1, 0x0ce870,2, 0x0ce880,1, 0x0ce890,2, 0x0ce8a0,1, 0x0ce8b0,2, 0x0ce8c0,1, 0x0ce8d0,2, 0x0ce8e0,1, 0x0ce8f0,2, 0x0ce900,29, 0x0ce980,27, 0x0ce9f0,1, 0x0cec00,6, 0x0cec1c,3, 0x0cec2c,3, 0x0cec3c,8, 0x0cec60,1, 0x0cec68,1, 0x0cec70,2, 0x0cec80,1, 0x0cec90,2, 0x0ceca0,1, 0x0cecb0,2, 0x0cecc0,1, 0x0cecd0,2, 0x0cece0,1, 0x0cecf0,2, 0x0ced00,29, 0x0ced80,27, 0x0cedf0,1, 0x0cf000,6, 0x0cf01c,3, 0x0cf02c,3, 0x0cf03c,8, 0x0cf060,1, 0x0cf068,1, 0x0cf070,2, 0x0cf080,1, 0x0cf090,2, 0x0cf0a0,1, 0x0cf0b0,2, 0x0cf0c0,1, 0x0cf0d0,2, 0x0cf0e0,1, 0x0cf0f0,2, 0x0cf100,29, 0x0cf180,27, 0x0cf1f0,1, 0x0cf400,6, 0x0cf41c,3, 0x0cf42c,3, 0x0cf43c,8, 0x0cf460,1, 0x0cf468,1, 0x0cf470,2, 0x0cf480,1, 0x0cf490,2, 0x0cf4a0,1, 0x0cf4b0,2, 0x0cf4c0,1, 0x0cf4d0,2, 0x0cf4e0,1, 0x0cf4f0,2, 0x0cf500,29, 0x0cf580,27, 0x0cf5f0,1, 0x0cf800,6, 0x0cf81c,3, 0x0cf82c,3, 0x0cf83c,8, 0x0cf860,1, 0x0cf868,1, 0x0cf870,2, 0x0cf880,1, 0x0cf890,2, 0x0cf8a0,1, 0x0cf8b0,2, 0x0cf8c0,1, 0x0cf8d0,2, 0x0cf8e0,1, 0x0cf8f0,2, 0x0cf900,29, 0x0cf980,27, 0x0cf9f0,1, 0x0cfc00,6, 0x0cfc1c,3, 0x0cfc2c,3, 0x0cfc3c,8, 0x0cfc60,1, 0x0cfc68,1, 0x0cfc70,2, 0x0cfc80,1, 0x0cfc90,2, 0x0cfca0,1, 0x0cfcb0,2, 0x0cfcc0,1, 0x0cfcd0,2, 0x0cfce0,1, 0x0cfcf0,2, 0x0cfd00,29, 0x0cfd80,27, 0x0cfdf0,1, 0x0d0000,2, 0x0d0018,2, 0x0d0034,2, 0x0d0104,3, 0x0d0134,2, 0x0d014c,1, 0x0d0170,2, 0x0d0200,1, 0x0d0210,2, 0x0d0220,1, 0x0d0230,2, 0x0d0400,1, 0x0d0410,2, 0x0d0420,3, 0x0d0430,22, 0x0d04ac,1, 0x0d04c0,6, 0x0d0500,1, 0x0d0510,2, 0x0d0520,3, 0x0d0540,8, 0x0d0580,6, 0x0d05a0,6, 0x0d0600,10, 0x0d0640,10, 0x0d0680,10, 0x0d06c0,10, 0x0d0700,10, 0x0d0740,10, 0x0d0800,5, 0x0d0820,5, 0x0d0890,10, 0x0d08e0,1, 0x0d08f0,2, 0x0d0900,5, 0x0d0920,5, 0x0d0990,10, 0x0d09e0,1, 0x0d09f0,2, 0x0d0a00,1, 0x0d0a10,2, 0x0d0a20,1, 0x0d0a30,2, 0x0d0a48,3, 0x0d0a80,3, 0x0d0a90,1, 0x0d0a98,12, 0x0d0b04,2, 0x0d0b14,3, 0x0d0b24,2, 0x0d0b34,3, 0x0d0b80,5, 0x0d0b98,3, 0x0d0bb0,2, 0x0d0bc0,5, 0x0d0bd8,3, 0x0d0bf0,2, 0x0d0c00,10, 0x0d0c2c,12, 0x0d0c80,26, 0x0d0d00,2, 0x0d0d20,1, 0x0d0e00,10, 0x0d0e2c,12, 0x0d0e80,26, 0x0d0f00,2, 0x0d0f20,1, 0x0d1000,5, 0x0d1020,5, 0x0d1090,10, 0x0d10e0,1, 0x0d10f0,2, 0x0d1100,5, 0x0d1120,5, 0x0d1190,10, 0x0d11e0,1, 0x0d11f0,2, 0x0d1200,1, 0x0d1210,2, 0x0d1220,1, 0x0d1230,2, 0x0d1248,3, 0x0d1280,3, 0x0d1290,1, 0x0d1298,12, 0x0d1304,2, 0x0d1314,3, 0x0d1324,2, 0x0d1334,3, 0x0d1380,5, 0x0d1398,3, 0x0d13b0,2, 0x0d13c0,5, 0x0d13d8,3, 0x0d13f0,2, 0x0d1400,10, 0x0d142c,12, 0x0d1480,26, 0x0d1500,2, 0x0d1520,1, 0x0d1600,10, 0x0d162c,12, 0x0d1680,26, 0x0d1700,2, 0x0d1720,1, 0x0d1800,5, 0x0d1820,5, 0x0d1890,10, 0x0d18e0,1, 0x0d18f0,2, 0x0d1900,5, 0x0d1920,5, 0x0d1990,10, 0x0d19e0,1, 0x0d19f0,2, 0x0d1a00,1, 0x0d1a10,2, 0x0d1a20,1, 0x0d1a30,2, 0x0d1a48,3, 0x0d1a80,3, 0x0d1a90,1, 0x0d1a98,12, 0x0d1b04,2, 0x0d1b14,3, 0x0d1b24,2, 0x0d1b34,3, 0x0d1b80,5, 0x0d1b98,3, 0x0d1bb0,2, 0x0d1bc0,5, 0x0d1bd8,3, 0x0d1bf0,2, 0x0d1c00,10, 0x0d1c2c,12, 0x0d1c80,26, 0x0d1d00,2, 0x0d1d20,1, 0x0d1e00,10, 0x0d1e2c,12, 0x0d1e80,26, 0x0d1f00,2, 0x0d1f20,1, 0x0d2000,7, 0x0d2020,8, 0x0d2044,8, 0x0d2080,7, 0x0d20a0,8, 0x0d20c4,8, 0x0d2100,7, 0x0d2120,8, 0x0d2144,8, 0x0d2180,7, 0x0d21a0,8, 0x0d21c4,8, 0x0d2200,7, 0x0d2220,8, 0x0d2244,8, 0x0d2280,7, 0x0d22a0,8, 0x0d22c4,8, 0x0d2400,1, 0x0d2418,1, 0x0d2434,1, 0x0d2504,1, 0x0d2534,1, 0x0d254c,1, 0x0d2570,2, 0x0d2600,1, 0x0d2610,2, 0x0d2804,15, 0x0d2844,15, 0x0d2884,15, 0x0d28c4,15, 0x0d2904,15, 0x0d2944,16, 0x0d2990,2, 0x0d29a0,1, 0x0d29b0,2, 0x0d29c0,2, 0x0d2a00,400, 0x0d3080,28, 0x0d3100,28, 0x0d3184,2, 0x0d3194,3, 0x0d31a4,2, 0x0d31b4,10, 0x0d3200,7, 0x0d3260,20, 0x0d32c0,2, 0x0d32cc,2, 0x0d32d8,3, 0x0d3300,1, 0x0d3310,2, 0x0d3320,1, 0x0d3330,2, 0x0d3340,1, 0x0d3350,2, 0x0d3360,1, 0x0d3370,2, 0x0d3380,1, 0x0d3400,16, 0x0d3480,28, 0x0d3500,28, 0x0d3584,2, 0x0d3594,3, 0x0d35a4,2, 0x0d35b4,10, 0x0d3600,7, 0x0d3660,20, 0x0d36c0,2, 0x0d36cc,2, 0x0d36d8,3, 0x0d3700,1, 0x0d3710,2, 0x0d3720,1, 0x0d3730,2, 0x0d3740,1, 0x0d3750,2, 0x0d3760,1, 0x0d3770,2, 0x0d3780,1, 0x0d3800,16, 0x0d3880,28, 0x0d3900,28, 0x0d3984,2, 0x0d3994,3, 0x0d39a4,2, 0x0d39b4,10, 0x0d3a00,7, 0x0d3a60,20, 0x0d3ac0,2, 0x0d3acc,2, 0x0d3ad8,3, 0x0d3b00,1, 0x0d3b10,2, 0x0d3b20,1, 0x0d3b30,2, 0x0d3b40,1, 0x0d3b50,2, 0x0d3b60,1, 0x0d3b70,2, 0x0d3b80,1, 0x0d3c00,18, 0x0d3c60,5, 0x0d3c78,7, 0x0d3c98,6, 0x0d3ce0,3, 0x0d3d04,7, 0x0d3d30,1, 0x0d3d44,7, 0x0d3d70,1, 0x0d3d84,7, 0x0d3db0,1, 0x0d3dc4,7, 0x0d3df0,1, 0x0d3e04,7, 0x0d3e30,1, 0x0d3e44,7, 0x0d3e70,1, 0x0d3e84,7, 0x0d3eb0,1, 0x0d3ec4,7, 0x0d3ef0,1, 0x0d3f00,1, 0x0d3f24,1, 0x0d3f30,4, 0x0d3f44,1, 0x0d3f50,4, 0x0d3fa0,3, 0x0d4000,5, 0x0d4018,3, 0x0d4080,2, 0x0d408c,1, 0x0d40a0,9, 0x0d40d0,2, 0x0d40e0,1, 0x0d40e8,1, 0x0d4100,2, 0x0d410c,1, 0x0d4120,9, 0x0d4150,2, 0x0d4160,1, 0x0d4168,1, 0x0d4180,2, 0x0d418c,1, 0x0d41a0,9, 0x0d41d0,2, 0x0d41e0,1, 0x0d41e8,1, 0x0d4200,2, 0x0d420c,1, 0x0d4220,9, 0x0d4250,2, 0x0d4260,1, 0x0d4268,1, 0x0d4284,2, 0x0d42a8,2, 0x0d42b4,1, 0x0d42c4,2, 0x0d42e8,2, 0x0d42f4,1, 0x0d4400,3, 0x0d4410,15, 0x0d4450,16, 0x0d449c,1, 0x0d44b0,9, 0x0d44e0,1, 0x0d44f0,3, 0x0d4500,12, 0x0d4534,4, 0x0d4558,1, 0x0d4580,1, 0x0d4594,2, 0x0d45ac,11, 0x0d45ec,4, 0x0d4600,15, 0x0d4640,3, 0x0d4650,3, 0x0d4660,1, 0x0d4670,2, 0x0d4680,1, 0x0d4690,2, 0x0d46c0,4, 0x0d46d4,8, 0x0d4700,4, 0x0d4714,8, 0x0d4800,5, 0x0d4818,3, 0x0d4880,2, 0x0d488c,1, 0x0d48a0,9, 0x0d48d0,2, 0x0d48e0,1, 0x0d48e8,1, 0x0d4900,2, 0x0d490c,1, 0x0d4920,9, 0x0d4950,2, 0x0d4960,1, 0x0d4968,1, 0x0d4980,2, 0x0d498c,1, 0x0d49a0,9, 0x0d49d0,2, 0x0d49e0,1, 0x0d49e8,1, 0x0d4a00,2, 0x0d4a0c,1, 0x0d4a20,9, 0x0d4a50,2, 0x0d4a60,1, 0x0d4a68,1, 0x0d4a84,2, 0x0d4aa8,2, 0x0d4ab4,1, 0x0d4ac4,2, 0x0d4ae8,2, 0x0d4af4,1, 0x0d4c00,3, 0x0d4c10,15, 0x0d4c50,16, 0x0d4c9c,1, 0x0d4cb0,9, 0x0d4ce0,1, 0x0d4cf0,3, 0x0d4d00,12, 0x0d4d34,4, 0x0d4d58,1, 0x0d4d80,1, 0x0d4d94,2, 0x0d4dac,11, 0x0d4dec,4, 0x0d4e00,15, 0x0d4e40,3, 0x0d4e50,3, 0x0d4e60,1, 0x0d4e70,2, 0x0d4e80,1, 0x0d4e90,2, 0x0d4ec0,4, 0x0d4ed4,8, 0x0d4f00,4, 0x0d4f14,8, 0x0d5000,5, 0x0d5018,3, 0x0d5080,2, 0x0d508c,1, 0x0d50a0,9, 0x0d50d0,2, 0x0d50e0,1, 0x0d50e8,1, 0x0d5100,2, 0x0d510c,1, 0x0d5120,9, 0x0d5150,2, 0x0d5160,1, 0x0d5168,1, 0x0d5180,2, 0x0d518c,1, 0x0d51a0,9, 0x0d51d0,2, 0x0d51e0,1, 0x0d51e8,1, 0x0d5200,2, 0x0d520c,1, 0x0d5220,9, 0x0d5250,2, 0x0d5260,1, 0x0d5268,1, 0x0d5284,2, 0x0d52a8,2, 0x0d52b4,1, 0x0d52c4,2, 0x0d52e8,2, 0x0d52f4,1, 0x0d5400,3, 0x0d5410,15, 0x0d5450,16, 0x0d549c,1, 0x0d54b0,9, 0x0d54e0,1, 0x0d54f0,3, 0x0d5500,12, 0x0d5534,4, 0x0d5558,1, 0x0d5580,1, 0x0d5594,2, 0x0d55ac,11, 0x0d55ec,4, 0x0d5600,15, 0x0d5640,3, 0x0d5650,3, 0x0d5660,1, 0x0d5670,2, 0x0d5680,1, 0x0d5690,2, 0x0d56c0,4, 0x0d56d4,8, 0x0d5700,4, 0x0d5714,8, 0x0d5800,31, 0x0d5880,8, 0x0d58a4,1, 0x0d58b4,20, 0x0d5910,2, 0x0d5920,3, 0x0d5934,1, 0x0d593c,2, 0x0d5950,2, 0x0d5a00,11, 0x0d5a4c,8, 0x0d5a70,2, 0x0d5a7c,33, 0x0d5c00,8, 0x0d5c40,2, 0x0d5c4c,11, 0x0d5c80,8, 0x0d5cc0,2, 0x0d5ccc,11, 0x0d5d00,8, 0x0d5d40,2, 0x0d5d4c,11, 0x0d5d80,8, 0x0d5dc0,2, 0x0d5dcc,11, 0x0d5e00,8, 0x0d5e40,2, 0x0d5e4c,11, 0x0d5e80,8, 0x0d5ec0,2, 0x0d5ecc,11, 0x0d5f00,9, 0x0d5f30,2, 0x0d5f40,49, 0x0d6018,1, 0x0d6034,1, 0x0d6104,1, 0x0d6134,1, 0x0d614c,1, 0x0d6170,2, 0x0d6200,1, 0x0d6210,2, 0x0d6400,5, 0x0d6418,9, 0x0d6440,5, 0x0d6460,1, 0x0d6470,2, 0x0d6500,5, 0x0d6518,9, 0x0d6540,5, 0x0d6560,1, 0x0d6570,2, 0x0d6600,5, 0x0d6618,9, 0x0d6640,5, 0x0d6660,1, 0x0d6670,2, 0x0d6700,1, 0x0d6800,6, 0x0d681c,3, 0x0d682c,3, 0x0d683c,8, 0x0d6860,1, 0x0d6868,1, 0x0d6870,2, 0x0d6880,1, 0x0d6890,2, 0x0d68a0,1, 0x0d68b0,2, 0x0d68c0,1, 0x0d68d0,2, 0x0d68e0,1, 0x0d68f0,2, 0x0d6900,29, 0x0d6980,27, 0x0d69f0,1, 0x0d6c00,6, 0x0d6c1c,3, 0x0d6c2c,3, 0x0d6c3c,8, 0x0d6c60,1, 0x0d6c68,1, 0x0d6c70,2, 0x0d6c80,1, 0x0d6c90,2, 0x0d6ca0,1, 0x0d6cb0,2, 0x0d6cc0,1, 0x0d6cd0,2, 0x0d6ce0,1, 0x0d6cf0,2, 0x0d6d00,29, 0x0d6d80,27, 0x0d6df0,1, 0x0d7000,6, 0x0d701c,3, 0x0d702c,3, 0x0d703c,8, 0x0d7060,1, 0x0d7068,1, 0x0d7070,2, 0x0d7080,1, 0x0d7090,2, 0x0d70a0,1, 0x0d70b0,2, 0x0d70c0,1, 0x0d70d0,2, 0x0d70e0,1, 0x0d70f0,2, 0x0d7100,29, 0x0d7180,27, 0x0d71f0,1, 0x0d7400,6, 0x0d741c,3, 0x0d742c,3, 0x0d743c,8, 0x0d7460,1, 0x0d7468,1, 0x0d7470,2, 0x0d7480,1, 0x0d7490,2, 0x0d74a0,1, 0x0d74b0,2, 0x0d74c0,1, 0x0d74d0,2, 0x0d74e0,1, 0x0d74f0,2, 0x0d7500,29, 0x0d7580,27, 0x0d75f0,1, 0x0d7800,6, 0x0d781c,3, 0x0d782c,3, 0x0d783c,8, 0x0d7860,1, 0x0d7868,1, 0x0d7870,2, 0x0d7880,1, 0x0d7890,2, 0x0d78a0,1, 0x0d78b0,2, 0x0d78c0,1, 0x0d78d0,2, 0x0d78e0,1, 0x0d78f0,2, 0x0d7900,29, 0x0d7980,27, 0x0d79f0,1, 0x0d7c00,6, 0x0d7c1c,3, 0x0d7c2c,3, 0x0d7c3c,8, 0x0d7c60,1, 0x0d7c68,1, 0x0d7c70,2, 0x0d7c80,1, 0x0d7c90,2, 0x0d7ca0,1, 0x0d7cb0,2, 0x0d7cc0,1, 0x0d7cd0,2, 0x0d7ce0,1, 0x0d7cf0,2, 0x0d7d00,29, 0x0d7d80,27, 0x0d7df0,1, 0x0d8000,2, 0x0d8018,2, 0x0d8034,2, 0x0d8104,3, 0x0d8134,2, 0x0d814c,1, 0x0d8170,2, 0x0d8200,1, 0x0d8210,2, 0x0d8220,1, 0x0d8230,2, 0x0d8400,1, 0x0d8410,2, 0x0d8420,3, 0x0d8430,22, 0x0d84ac,1, 0x0d84c0,6, 0x0d8500,1, 0x0d8510,2, 0x0d8520,3, 0x0d8540,8, 0x0d8580,6, 0x0d85a0,6, 0x0d8600,10, 0x0d8640,10, 0x0d8680,10, 0x0d86c0,10, 0x0d8700,10, 0x0d8740,10, 0x0d8800,5, 0x0d8820,5, 0x0d8890,10, 0x0d88e0,1, 0x0d88f0,2, 0x0d8900,5, 0x0d8920,5, 0x0d8990,10, 0x0d89e0,1, 0x0d89f0,2, 0x0d8a00,1, 0x0d8a10,2, 0x0d8a20,1, 0x0d8a30,2, 0x0d8a48,3, 0x0d8a80,3, 0x0d8a90,1, 0x0d8a98,12, 0x0d8b04,2, 0x0d8b14,3, 0x0d8b24,2, 0x0d8b34,3, 0x0d8b80,5, 0x0d8b98,3, 0x0d8bb0,2, 0x0d8bc0,5, 0x0d8bd8,3, 0x0d8bf0,2, 0x0d8c00,10, 0x0d8c2c,12, 0x0d8c80,26, 0x0d8d00,2, 0x0d8d20,1, 0x0d8e00,10, 0x0d8e2c,12, 0x0d8e80,26, 0x0d8f00,2, 0x0d8f20,1, 0x0d9000,5, 0x0d9020,5, 0x0d9090,10, 0x0d90e0,1, 0x0d90f0,2, 0x0d9100,5, 0x0d9120,5, 0x0d9190,10, 0x0d91e0,1, 0x0d91f0,2, 0x0d9200,1, 0x0d9210,2, 0x0d9220,1, 0x0d9230,2, 0x0d9248,3, 0x0d9280,3, 0x0d9290,1, 0x0d9298,12, 0x0d9304,2, 0x0d9314,3, 0x0d9324,2, 0x0d9334,3, 0x0d9380,5, 0x0d9398,3, 0x0d93b0,2, 0x0d93c0,5, 0x0d93d8,3, 0x0d93f0,2, 0x0d9400,10, 0x0d942c,12, 0x0d9480,26, 0x0d9500,2, 0x0d9520,1, 0x0d9600,10, 0x0d962c,12, 0x0d9680,26, 0x0d9700,2, 0x0d9720,1, 0x0d9800,5, 0x0d9820,5, 0x0d9890,10, 0x0d98e0,1, 0x0d98f0,2, 0x0d9900,5, 0x0d9920,5, 0x0d9990,10, 0x0d99e0,1, 0x0d99f0,2, 0x0d9a00,1, 0x0d9a10,2, 0x0d9a20,1, 0x0d9a30,2, 0x0d9a48,3, 0x0d9a80,3, 0x0d9a90,1, 0x0d9a98,12, 0x0d9b04,2, 0x0d9b14,3, 0x0d9b24,2, 0x0d9b34,3, 0x0d9b80,5, 0x0d9b98,3, 0x0d9bb0,2, 0x0d9bc0,5, 0x0d9bd8,3, 0x0d9bf0,2, 0x0d9c00,10, 0x0d9c2c,12, 0x0d9c80,26, 0x0d9d00,2, 0x0d9d20,1, 0x0d9e00,10, 0x0d9e2c,12, 0x0d9e80,26, 0x0d9f00,2, 0x0d9f20,1, 0x0da000,7, 0x0da020,8, 0x0da044,8, 0x0da080,7, 0x0da0a0,8, 0x0da0c4,8, 0x0da100,7, 0x0da120,8, 0x0da144,8, 0x0da180,7, 0x0da1a0,8, 0x0da1c4,8, 0x0da200,7, 0x0da220,8, 0x0da244,8, 0x0da280,7, 0x0da2a0,8, 0x0da2c4,8, 0x0da400,1, 0x0da418,1, 0x0da434,1, 0x0da504,1, 0x0da534,1, 0x0da54c,1, 0x0da570,2, 0x0da600,1, 0x0da610,2, 0x0da804,15, 0x0da844,15, 0x0da884,15, 0x0da8c4,15, 0x0da904,15, 0x0da944,16, 0x0da990,2, 0x0da9a0,1, 0x0da9b0,2, 0x0da9c0,2, 0x0daa00,400, 0x0db080,28, 0x0db100,28, 0x0db184,2, 0x0db194,3, 0x0db1a4,2, 0x0db1b4,10, 0x0db200,7, 0x0db260,20, 0x0db2c0,2, 0x0db2cc,2, 0x0db2d8,3, 0x0db300,1, 0x0db310,2, 0x0db320,1, 0x0db330,2, 0x0db340,1, 0x0db350,2, 0x0db360,1, 0x0db370,2, 0x0db380,1, 0x0db400,16, 0x0db480,28, 0x0db500,28, 0x0db584,2, 0x0db594,3, 0x0db5a4,2, 0x0db5b4,10, 0x0db600,7, 0x0db660,20, 0x0db6c0,2, 0x0db6cc,2, 0x0db6d8,3, 0x0db700,1, 0x0db710,2, 0x0db720,1, 0x0db730,2, 0x0db740,1, 0x0db750,2, 0x0db760,1, 0x0db770,2, 0x0db780,1, 0x0db800,16, 0x0db880,28, 0x0db900,28, 0x0db984,2, 0x0db994,3, 0x0db9a4,2, 0x0db9b4,10, 0x0dba00,7, 0x0dba60,20, 0x0dbac0,2, 0x0dbacc,2, 0x0dbad8,3, 0x0dbb00,1, 0x0dbb10,2, 0x0dbb20,1, 0x0dbb30,2, 0x0dbb40,1, 0x0dbb50,2, 0x0dbb60,1, 0x0dbb70,2, 0x0dbb80,1, 0x0dbc00,18, 0x0dbc60,5, 0x0dbc78,7, 0x0dbc98,6, 0x0dbce0,3, 0x0dbd04,7, 0x0dbd30,1, 0x0dbd44,7, 0x0dbd70,1, 0x0dbd84,7, 0x0dbdb0,1, 0x0dbdc4,7, 0x0dbdf0,1, 0x0dbe04,7, 0x0dbe30,1, 0x0dbe44,7, 0x0dbe70,1, 0x0dbe84,7, 0x0dbeb0,1, 0x0dbec4,7, 0x0dbef0,1, 0x0dbf00,1, 0x0dbf24,1, 0x0dbf30,4, 0x0dbf44,1, 0x0dbf50,4, 0x0dbfa0,3, 0x0dc000,5, 0x0dc018,3, 0x0dc080,2, 0x0dc08c,1, 0x0dc0a0,9, 0x0dc0d0,2, 0x0dc0e0,1, 0x0dc0e8,1, 0x0dc100,2, 0x0dc10c,1, 0x0dc120,9, 0x0dc150,2, 0x0dc160,1, 0x0dc168,1, 0x0dc180,2, 0x0dc18c,1, 0x0dc1a0,9, 0x0dc1d0,2, 0x0dc1e0,1, 0x0dc1e8,1, 0x0dc200,2, 0x0dc20c,1, 0x0dc220,9, 0x0dc250,2, 0x0dc260,1, 0x0dc268,1, 0x0dc284,2, 0x0dc2a8,2, 0x0dc2b4,1, 0x0dc2c4,2, 0x0dc2e8,2, 0x0dc2f4,1, 0x0dc400,3, 0x0dc410,15, 0x0dc450,16, 0x0dc49c,1, 0x0dc4b0,9, 0x0dc4e0,1, 0x0dc4f0,3, 0x0dc500,12, 0x0dc534,4, 0x0dc558,1, 0x0dc580,1, 0x0dc594,2, 0x0dc5ac,11, 0x0dc5ec,4, 0x0dc600,15, 0x0dc640,3, 0x0dc650,3, 0x0dc660,1, 0x0dc670,2, 0x0dc680,1, 0x0dc690,2, 0x0dc6c0,4, 0x0dc6d4,8, 0x0dc700,4, 0x0dc714,8, 0x0dc800,5, 0x0dc818,3, 0x0dc880,2, 0x0dc88c,1, 0x0dc8a0,9, 0x0dc8d0,2, 0x0dc8e0,1, 0x0dc8e8,1, 0x0dc900,2, 0x0dc90c,1, 0x0dc920,9, 0x0dc950,2, 0x0dc960,1, 0x0dc968,1, 0x0dc980,2, 0x0dc98c,1, 0x0dc9a0,9, 0x0dc9d0,2, 0x0dc9e0,1, 0x0dc9e8,1, 0x0dca00,2, 0x0dca0c,1, 0x0dca20,9, 0x0dca50,2, 0x0dca60,1, 0x0dca68,1, 0x0dca84,2, 0x0dcaa8,2, 0x0dcab4,1, 0x0dcac4,2, 0x0dcae8,2, 0x0dcaf4,1, 0x0dcc00,3, 0x0dcc10,15, 0x0dcc50,16, 0x0dcc9c,1, 0x0dccb0,9, 0x0dcce0,1, 0x0dccf0,3, 0x0dcd00,12, 0x0dcd34,4, 0x0dcd58,1, 0x0dcd80,1, 0x0dcd94,2, 0x0dcdac,11, 0x0dcdec,4, 0x0dce00,15, 0x0dce40,3, 0x0dce50,3, 0x0dce60,1, 0x0dce70,2, 0x0dce80,1, 0x0dce90,2, 0x0dcec0,4, 0x0dced4,8, 0x0dcf00,4, 0x0dcf14,8, 0x0dd000,5, 0x0dd018,3, 0x0dd080,2, 0x0dd08c,1, 0x0dd0a0,9, 0x0dd0d0,2, 0x0dd0e0,1, 0x0dd0e8,1, 0x0dd100,2, 0x0dd10c,1, 0x0dd120,9, 0x0dd150,2, 0x0dd160,1, 0x0dd168,1, 0x0dd180,2, 0x0dd18c,1, 0x0dd1a0,9, 0x0dd1d0,2, 0x0dd1e0,1, 0x0dd1e8,1, 0x0dd200,2, 0x0dd20c,1, 0x0dd220,9, 0x0dd250,2, 0x0dd260,1, 0x0dd268,1, 0x0dd284,2, 0x0dd2a8,2, 0x0dd2b4,1, 0x0dd2c4,2, 0x0dd2e8,2, 0x0dd2f4,1, 0x0dd400,3, 0x0dd410,15, 0x0dd450,16, 0x0dd49c,1, 0x0dd4b0,9, 0x0dd4e0,1, 0x0dd4f0,3, 0x0dd500,12, 0x0dd534,4, 0x0dd558,1, 0x0dd580,1, 0x0dd594,2, 0x0dd5ac,11, 0x0dd5ec,4, 0x0dd600,15, 0x0dd640,3, 0x0dd650,3, 0x0dd660,1, 0x0dd670,2, 0x0dd680,1, 0x0dd690,2, 0x0dd6c0,4, 0x0dd6d4,8, 0x0dd700,4, 0x0dd714,8, 0x0dd800,31, 0x0dd880,8, 0x0dd8a4,1, 0x0dd8b4,20, 0x0dd910,2, 0x0dd920,3, 0x0dd934,1, 0x0dd93c,2, 0x0dd950,2, 0x0dda00,11, 0x0dda4c,8, 0x0dda70,2, 0x0dda7c,33, 0x0ddc00,8, 0x0ddc40,2, 0x0ddc4c,11, 0x0ddc80,8, 0x0ddcc0,2, 0x0ddccc,11, 0x0ddd00,8, 0x0ddd40,2, 0x0ddd4c,11, 0x0ddd80,8, 0x0dddc0,2, 0x0dddcc,11, 0x0dde00,8, 0x0dde40,2, 0x0dde4c,11, 0x0dde80,8, 0x0ddec0,2, 0x0ddecc,11, 0x0ddf00,9, 0x0ddf30,2, 0x0ddf40,49, 0x0de018,1, 0x0de034,1, 0x0de104,1, 0x0de134,1, 0x0de14c,1, 0x0de170,2, 0x0de200,1, 0x0de210,2, 0x0de400,5, 0x0de418,9, 0x0de440,5, 0x0de460,1, 0x0de470,2, 0x0de500,5, 0x0de518,9, 0x0de540,5, 0x0de560,1, 0x0de570,2, 0x0de600,5, 0x0de618,9, 0x0de640,5, 0x0de660,1, 0x0de670,2, 0x0de700,1, 0x0de800,6, 0x0de81c,3, 0x0de82c,3, 0x0de83c,8, 0x0de860,1, 0x0de868,1, 0x0de870,2, 0x0de880,1, 0x0de890,2, 0x0de8a0,1, 0x0de8b0,2, 0x0de8c0,1, 0x0de8d0,2, 0x0de8e0,1, 0x0de8f0,2, 0x0de900,29, 0x0de980,27, 0x0de9f0,1, 0x0dec00,6, 0x0dec1c,3, 0x0dec2c,3, 0x0dec3c,8, 0x0dec60,1, 0x0dec68,1, 0x0dec70,2, 0x0dec80,1, 0x0dec90,2, 0x0deca0,1, 0x0decb0,2, 0x0decc0,1, 0x0decd0,2, 0x0dece0,1, 0x0decf0,2, 0x0ded00,29, 0x0ded80,27, 0x0dedf0,1, 0x0df000,6, 0x0df01c,3, 0x0df02c,3, 0x0df03c,8, 0x0df060,1, 0x0df068,1, 0x0df070,2, 0x0df080,1, 0x0df090,2, 0x0df0a0,1, 0x0df0b0,2, 0x0df0c0,1, 0x0df0d0,2, 0x0df0e0,1, 0x0df0f0,2, 0x0df100,29, 0x0df180,27, 0x0df1f0,1, 0x0df400,6, 0x0df41c,3, 0x0df42c,3, 0x0df43c,8, 0x0df460,1, 0x0df468,1, 0x0df470,2, 0x0df480,1, 0x0df490,2, 0x0df4a0,1, 0x0df4b0,2, 0x0df4c0,1, 0x0df4d0,2, 0x0df4e0,1, 0x0df4f0,2, 0x0df500,29, 0x0df580,27, 0x0df5f0,1, 0x0df800,6, 0x0df81c,3, 0x0df82c,3, 0x0df83c,8, 0x0df860,1, 0x0df868,1, 0x0df870,2, 0x0df880,1, 0x0df890,2, 0x0df8a0,1, 0x0df8b0,2, 0x0df8c0,1, 0x0df8d0,2, 0x0df8e0,1, 0x0df8f0,2, 0x0df900,29, 0x0df980,27, 0x0df9f0,1, 0x0dfc00,6, 0x0dfc1c,3, 0x0dfc2c,3, 0x0dfc3c,8, 0x0dfc60,1, 0x0dfc68,1, 0x0dfc70,2, 0x0dfc80,1, 0x0dfc90,2, 0x0dfca0,1, 0x0dfcb0,2, 0x0dfcc0,1, 0x0dfcd0,2, 0x0dfce0,1, 0x0dfcf0,2, 0x0dfd00,29, 0x0dfd80,27, 0x0dfdf0,1, 0x0e0000,19, 0x0e0050,39, 0x0e00f0,46, 0x0e01e0,1, 0x0e01f0,2, 0x0e0200,19, 0x0e0250,39, 0x0e02f0,46, 0x0e03e0,1, 0x0e03f0,2, 0x0e0400,19, 0x0e0450,39, 0x0e04f0,46, 0x0e05e0,1, 0x0e05f0,2, 0x0e0600,6, 0x0e0620,6, 0x0e0640,6, 0x0e0660,6, 0x0e0680,6, 0x0e06a0,6, 0x0e0704,1, 0x0e070c,1, 0x0e0744,1, 0x0e074c,1, 0x0e07fc,20, 0x0e0850,39, 0x0e08f0,46, 0x0e09e0,1, 0x0e09f0,2, 0x0e0a00,19, 0x0e0a50,39, 0x0e0af0,46, 0x0e0be0,1, 0x0e0bf0,2, 0x0e0c00,19, 0x0e0c50,39, 0x0e0cf0,46, 0x0e0de0,1, 0x0e0df0,2, 0x0e0e00,6, 0x0e0e20,6, 0x0e0e40,6, 0x0e0e60,6, 0x0e0e80,6, 0x0e0ea0,6, 0x0e0f04,1, 0x0e0f0c,1, 0x0e0f44,1, 0x0e0f4c,1, 0x0e0ffc,20, 0x0e1050,39, 0x0e10f0,46, 0x0e11e0,1, 0x0e11f0,2, 0x0e1200,19, 0x0e1250,39, 0x0e12f0,46, 0x0e13e0,1, 0x0e13f0,2, 0x0e1400,19, 0x0e1450,39, 0x0e14f0,46, 0x0e15e0,1, 0x0e15f0,2, 0x0e1600,6, 0x0e1620,6, 0x0e1640,6, 0x0e1660,6, 0x0e1680,6, 0x0e16a0,6, 0x0e1704,1, 0x0e170c,1, 0x0e1744,1, 0x0e174c,1, 0x0e17fc,20, 0x0e1850,39, 0x0e18f0,46, 0x0e19e0,1, 0x0e19f0,2, 0x0e1a00,19, 0x0e1a50,39, 0x0e1af0,46, 0x0e1be0,1, 0x0e1bf0,2, 0x0e1c00,19, 0x0e1c50,39, 0x0e1cf0,46, 0x0e1de0,1, 0x0e1df0,2, 0x0e1e00,6, 0x0e1e20,6, 0x0e1e40,6, 0x0e1e60,6, 0x0e1e80,6, 0x0e1ea0,6, 0x0e1f04,1, 0x0e1f0c,1, 0x0e1f44,1, 0x0e1f4c,1, 0x0e1ffc,20, 0x0e2050,39, 0x0e20f0,46, 0x0e21e0,1, 0x0e21f0,2, 0x0e2200,19, 0x0e2250,39, 0x0e22f0,46, 0x0e23e0,1, 0x0e23f0,2, 0x0e2400,19, 0x0e2450,39, 0x0e24f0,46, 0x0e25e0,1, 0x0e25f0,2, 0x0e2600,6, 0x0e2620,6, 0x0e2640,6, 0x0e2660,6, 0x0e2680,6, 0x0e26a0,6, 0x0e2704,1, 0x0e270c,1, 0x0e2744,1, 0x0e274c,1, 0x0e27fc,20, 0x0e2850,39, 0x0e28f0,46, 0x0e29e0,1, 0x0e29f0,2, 0x0e2a00,19, 0x0e2a50,39, 0x0e2af0,46, 0x0e2be0,1, 0x0e2bf0,2, 0x0e2c00,19, 0x0e2c50,39, 0x0e2cf0,46, 0x0e2de0,1, 0x0e2df0,2, 0x0e2e00,6, 0x0e2e20,6, 0x0e2e40,6, 0x0e2e60,6, 0x0e2e80,6, 0x0e2ea0,6, 0x0e2f04,1, 0x0e2f0c,1, 0x0e2f44,1, 0x0e2f4c,1, 0x0e2ffc,20, 0x0e3050,39, 0x0e30f0,46, 0x0e31e0,1, 0x0e31f0,2, 0x0e3800,1, 0x0e3810,2, 0x0e3820,3, 0x0e3840,2, 0x0e384c,2, 0x0e3858,5, 0x0e4000,19, 0x0e4050,39, 0x0e40f0,46, 0x0e41e0,1, 0x0e41f0,2, 0x0e4200,19, 0x0e4250,39, 0x0e42f0,46, 0x0e43e0,1, 0x0e43f0,2, 0x0e4400,19, 0x0e4450,39, 0x0e44f0,46, 0x0e45e0,1, 0x0e45f0,2, 0x0e4600,6, 0x0e4620,6, 0x0e4640,6, 0x0e4660,6, 0x0e4680,6, 0x0e46a0,6, 0x0e4704,1, 0x0e470c,1, 0x0e4744,1, 0x0e474c,1, 0x0e47fc,20, 0x0e4850,39, 0x0e48f0,46, 0x0e49e0,1, 0x0e49f0,2, 0x0e4a00,19, 0x0e4a50,39, 0x0e4af0,46, 0x0e4be0,1, 0x0e4bf0,2, 0x0e4c00,19, 0x0e4c50,39, 0x0e4cf0,46, 0x0e4de0,1, 0x0e4df0,2, 0x0e4e00,6, 0x0e4e20,6, 0x0e4e40,6, 0x0e4e60,6, 0x0e4e80,6, 0x0e4ea0,6, 0x0e4f04,1, 0x0e4f0c,1, 0x0e4f44,1, 0x0e4f4c,1, 0x0e4ffc,20, 0x0e5050,39, 0x0e50f0,46, 0x0e51e0,1, 0x0e51f0,2, 0x0e5200,19, 0x0e5250,39, 0x0e52f0,46, 0x0e53e0,1, 0x0e53f0,2, 0x0e5400,19, 0x0e5450,39, 0x0e54f0,46, 0x0e55e0,1, 0x0e55f0,2, 0x0e5600,6, 0x0e5620,6, 0x0e5640,6, 0x0e5660,6, 0x0e5680,6, 0x0e56a0,6, 0x0e5704,1, 0x0e570c,1, 0x0e5744,1, 0x0e574c,1, 0x0e57fc,20, 0x0e5850,39, 0x0e58f0,46, 0x0e59e0,1, 0x0e59f0,2, 0x0e5a00,19, 0x0e5a50,39, 0x0e5af0,46, 0x0e5be0,1, 0x0e5bf0,2, 0x0e5c00,19, 0x0e5c50,39, 0x0e5cf0,46, 0x0e5de0,1, 0x0e5df0,2, 0x0e5e00,6, 0x0e5e20,6, 0x0e5e40,6, 0x0e5e60,6, 0x0e5e80,6, 0x0e5ea0,6, 0x0e5f04,1, 0x0e5f0c,1, 0x0e5f44,1, 0x0e5f4c,1, 0x0e5ffc,20, 0x0e6050,39, 0x0e60f0,46, 0x0e61e0,1, 0x0e61f0,2, 0x0e6200,19, 0x0e6250,39, 0x0e62f0,46, 0x0e63e0,1, 0x0e63f0,2, 0x0e6400,19, 0x0e6450,39, 0x0e64f0,46, 0x0e65e0,1, 0x0e65f0,2, 0x0e6600,6, 0x0e6620,6, 0x0e6640,6, 0x0e6660,6, 0x0e6680,6, 0x0e66a0,6, 0x0e6704,1, 0x0e670c,1, 0x0e6744,1, 0x0e674c,1, 0x0e67fc,20, 0x0e6850,39, 0x0e68f0,46, 0x0e69e0,1, 0x0e69f0,2, 0x0e6a00,19, 0x0e6a50,39, 0x0e6af0,46, 0x0e6be0,1, 0x0e6bf0,2, 0x0e6c00,19, 0x0e6c50,39, 0x0e6cf0,46, 0x0e6de0,1, 0x0e6df0,2, 0x0e6e00,6, 0x0e6e20,6, 0x0e6e40,6, 0x0e6e60,6, 0x0e6e80,6, 0x0e6ea0,6, 0x0e6f04,1, 0x0e6f0c,1, 0x0e6f44,1, 0x0e6f4c,1, 0x0e6ffc,20, 0x0e7050,39, 0x0e70f0,46, 0x0e71e0,1, 0x0e71f0,2, 0x0e7800,1, 0x0e7810,2, 0x0e7820,3, 0x0e7840,2, 0x0e784c,2, 0x0e7858,5, 0x0ec000,26, 0x0ec070,7, 0x0ec090,15, 0x0ec0d0,5, 0x0ec0f0,2, 0x0ec100,1, 0x0ec200,76, 0x0ec400,26, 0x0ec470,7, 0x0ec490,15, 0x0ec4d0,5, 0x0ec4f0,2, 0x0ec500,1, 0x0ec600,76, 0x0ec800,3, 0x0ec810,15, 0x0ec850,16, 0x0ec89c,1, 0x0ec8b0,9, 0x0ec8e0,1, 0x0ec900,7, 0x0ec924,6, 0x0eca00,11, 0x0eca4c,8, 0x0eca70,2, 0x0eca7c,17, 0x0ecc00,1, 0x0ed000,13, 0x0ed040,5, 0x0ed058,7, 0x0ed078,14, 0x0ed0c0,13, 0x0ed0fc,2, 0x0ed10c,1, 0x0ed120,2, 0x0ed130,5, 0x0ed184,13, 0x0ed1bc,1, 0x0ed204,1, 0x0ed210,5, 0x0ed244,6, 0x0ed264,5, 0x0ed280,2, 0x0ed290,8, 0x0ed2ec,1, 0x0ed300,11, 0x0ed330,1, 0x0ed400,32, 0x0ed500,2, 0x0ed50c,11, 0x0ed548,2, 0x0ed554,4, 0x0ed574,2, 0x0ed580,9, 0x0ed5b0,2, 0x0ed5cc,8, 0x0ed704,1, 0x0ed70c,12, 0x0ed760,1, 0x0ed770,2, 0x0ed780,1, 0x0ed790,2, 0x0ed7a0,2, 0x0ed7ac,5, 0x0ed800,3, 0x0ed810,24, 0x0ed880,9, 0x0ed8b0,2, 0x0ed8c0,2, 0x0ed8d0,1, 0x0ed8f8,2, 0x0eda00,3, 0x0eda10,4, 0x0eda24,3, 0x0eda34,4, 0x0eda60,1, 0x0eda70,2, 0x0eda84,3, 0x0edb00,3, 0x0edc00,1, 0x0edc18,1, 0x0edc34,1, 0x0edd04,3, 0x0edd34,1, 0x0edd4c,1, 0x0edd70,2, 0x0ede00,1, 0x0ede10,2, 0x0ee010,7, 0x0ee030,4, 0x0ee050,7, 0x0ee070,4, 0x0ee104,21, 0x0ee160,16, 0x0ee200,16, 0x0ee300,2, 0x0ee4fc,2, 0x0ee510,2, 0x0f0000,3, 0x0f0014,10, 0x0f0040,3, 0x0f0058,5, 0x0f0070,7, 0x0f0090,2, 0x0f009c,2, 0x0f00a8,3, 0x0f00c0,2, 0x0f00dc,9, 0x0f0128,2, 0x0f0140,8, 0x0f0164,5, 0x0f0180,6, 0x0f01a0,3, 0x0f01b0,3, 0x0f0200,38, 0x0f0404,8, 0x0f0440,4, 0x0f0480,6, 0x0f04a0,2, 0x0f04e0,1, 0x0f04f0,2, 0x0f0500,6, 0x0f0520,2, 0x0f0560,1, 0x0f0570,2, 0x0f0580,1, 0x0f0590,2, 0x0f05a0,1, 0x0f05b0,2, 0x0f05c0,1, 0x0f05d0,2, 0x0f05e0,1, 0x0f0600,64, 0x0f0704,1, 0x0f0714,9, 0x0f0800,17, 0x0f0850,4, 0x0f0880,4, 0x0f089c,5, 0x0f08bc,5, 0x0f08dc,1, 0x0f0ffc,1, 0x0f8000,1, 0x0f8018,1, 0x0f8034,1, 0x0f8104,1, 0x0f8134,1, 0x0f814c,1, 0x0f8170,2, 0x0f8200,1, 0x0f8210,2, 0x0f8400,96, 0x0f85a4,1, 0x0f85ac,1, 0x0f85b4,1, 0x0f85bc,1, 0x0f85c4,1, 0x0f85cc,1, 0x0f85d4,1, 0x0f85dc,1, 0x0f85e4,1, 0x0f85ec,1, 0x0f85f4,1, 0x0f85fc,1, 0x0f8604,1, 0x0f860c,1, 0x0f8614,1, 0x0f861c,1, 0x0f8624,1, 0x0f862c,1, 0x0f8634,1, 0x0f863c,1, 0x0f8644,1, 0x0f864c,1, 0x0f8654,1, 0x0f865c,25, 0x0f86c4,1, 0x0f86d4,25, 0x0f8740,14, 0x0f8780,7, 0x0f87a0,1, 0x0f87b0,3, 0x0f87c0,1, 0x0f87d0,2, 0x0f87e4,1, 0x0f8800,1, 0x0f8818,1, 0x0f8834,1, 0x0f8904,1, 0x0f8934,1, 0x0f894c,1, 0x0f8970,2, 0x0f8a00,1, 0x0f8a10,2, 0x0f8c00,96, 0x0f8da4,1, 0x0f8dac,1, 0x0f8db4,1, 0x0f8dbc,1, 0x0f8dc4,1, 0x0f8dcc,1, 0x0f8dd4,1, 0x0f8ddc,1, 0x0f8de4,1, 0x0f8dec,1, 0x0f8df4,1, 0x0f8dfc,1, 0x0f8e04,1, 0x0f8e0c,1, 0x0f8e14,1, 0x0f8e1c,1, 0x0f8e24,1, 0x0f8e2c,1, 0x0f8e34,1, 0x0f8e3c,1, 0x0f8e44,1, 0x0f8e4c,1, 0x0f8e54,1, 0x0f8e5c,25, 0x0f8ec4,1, 0x0f8ed4,25, 0x0f8f40,14, 0x0f8f80,7, 0x0f8fa0,1, 0x0f8fb0,3, 0x0f8fc0,1, 0x0f8fd0,2, 0x0f8fe4,1, 0x0f9000,3, 0x0f9020,1, 0x0f9030,2, 0x0f9040,1, 0x0f9050,2, 0x0f9060,1, 0x0f9070,2, 0x0f9080,1, 0x0f9090,2, 0x0f90a0,1, 0x0f90b0,2, 0x0f90c0,1, 0x0f90d0,2, 0x0f90e0,1, 0x0f90f0,2, 0x0f9100,1, 0x0f9110,2, 0x0f9120,1, 0x0f9130,2, 0x0f9140,1, 0x0f9150,2, 0x0f9160,1, 0x0f9170,2, 0x0f9180,1, 0x0f9190,2, 0x0f91a0,1, 0x0f91b0,2, 0x0f91c0,1, 0x0f91d0,2, 0x0f91e0,1, 0x0f91f0,2, 0x0f9200,1, 0x0f9210,2, 0x0f9220,1, 0x0f9230,2, 0x0f9240,1, 0x0f9250,2, 0x0f9260,1, 0x0f9270,2, 0x0f9400,18, 0x0f9480,18, 0x0f9500,19, 0x0fc000,4, 0x0fc014,1, 0x0fc01c,1, 0x0fc024,1, 0x0fc034,15, 0x0fc074,11, 0x0fc0a4,1, 0x0fc0c4,3, 0x0fc0e0,4, 0x0fc0f4,1, 0x0fc0fc,3, 0x0fc10c,7, 0x0fc130,3, 0x0fc140,1, 0x0fc150,2, 0x0fc200,4, 0x0fc214,1, 0x0fc21c,1, 0x0fc224,1, 0x0fc234,15, 0x0fc274,11, 0x0fc2a4,1, 0x0fc2c4,3, 0x0fc2e0,4, 0x0fc2f4,1, 0x0fc2fc,3, 0x0fc30c,7, 0x0fc330,3, 0x0fc340,1, 0x0fc350,2, 0x0fc400,4, 0x0fc414,1, 0x0fc41c,1, 0x0fc424,1, 0x0fc434,15, 0x0fc474,11, 0x0fc4a4,1, 0x0fc4c4,3, 0x0fc4e0,4, 0x0fc4f4,1, 0x0fc4fc,3, 0x0fc50c,7, 0x0fc530,3, 0x0fc540,1, 0x0fc550,2, 0x0fc600,4, 0x0fc614,1, 0x0fc61c,1, 0x0fc624,1, 0x0fc634,15, 0x0fc674,11, 0x0fc6a4,1, 0x0fc6c4,3, 0x0fc6e0,4, 0x0fc6f4,1, 0x0fc6fc,3, 0x0fc70c,7, 0x0fc730,3, 0x0fc740,1, 0x0fc750,2, 0x0fc800,4, 0x0fc814,1, 0x0fc81c,1, 0x0fc824,1, 0x0fc834,15, 0x0fc874,11, 0x0fc8a4,1, 0x0fc8c4,3, 0x0fc8e0,4, 0x0fc8f4,1, 0x0fc8fc,3, 0x0fc90c,7, 0x0fc930,3, 0x0fc940,1, 0x0fc950,2, 0x0fca00,4, 0x0fca14,1, 0x0fca1c,1, 0x0fca24,1, 0x0fca34,15, 0x0fca74,11, 0x0fcaa4,1, 0x0fcac4,3, 0x0fcae0,4, 0x0fcaf4,1, 0x0fcafc,3, 0x0fcb0c,7, 0x0fcb30,3, 0x0fcb40,1, 0x0fcb50,2, 0x0fcc00,2, 0x0fcc24,1, 0x0fcc34,7, 0x0fcc80,1, 0x0fcc90,2, 0x0fce00,14, 0x0fd500,2, 0x0fd520,1, 0x0fd530,2, 0x0fd720,1, 0x0fd730,2, 0x0fd7a0,3, 0x0fd7f0,1, 0x0fd800,6, 0x0fd81c,4, 0x0fd834,2, 0x0fd840,6, 0x0fd85c,4, 0x0fd874,2, 0x0fd880,6, 0x0fd89c,4, 0x0fd8b4,2, 0x0fd8c0,6, 0x0fd8dc,4, 0x0fd8f4,2, 0x0fd900,6, 0x0fd91c,4, 0x0fd934,2, 0x0fd940,6, 0x0fd95c,4, 0x0fd974,2, 0x0fd980,6, 0x0fd99c,4, 0x0fd9b4,2, 0x0fd9c0,6, 0x0fd9dc,4, 0x0fd9f4,2, 0x0fda00,6, 0x0fda1c,4, 0x0fda34,2, 0x0fda40,6, 0x0fda5c,4, 0x0fda74,2, 0x0fda80,6, 0x0fda9c,4, 0x0fdab4,2, 0x0fdac0,6, 0x0fdadc,4, 0x0fdaf4,2, 0x0fdb00,1, 0x0fdb80,2, 0x0fdba0,1, 0x0fdbb0,2, 0x0fdbc0,1, 0x0fdbd0,2, 0x0fdbe0,1, 0x0fdbf0,2, 0x0fdc00,4, 0x0fdc18,4, 0x0fdc34,4, 0x0fdd04,3, 0x0fdd34,4, 0x0fdd4c,1, 0x0fdd70,2, 0x0fde00,1, 0x0fde10,2, 0x0fde20,1, 0x0fde30,2, 0x0fde40,1, 0x0fde50,2, 0x0fde60,1, 0x0fde70,2, 0x0fe000,4, 0x0fe014,1, 0x0fe01c,1, 0x0fe024,1, 0x0fe034,15, 0x0fe074,11, 0x0fe0a4,1, 0x0fe0c4,3, 0x0fe0e0,4, 0x0fe0f4,1, 0x0fe0fc,3, 0x0fe10c,7, 0x0fe130,3, 0x0fe140,1, 0x0fe150,2, 0x0fe200,4, 0x0fe214,1, 0x0fe21c,1, 0x0fe224,1, 0x0fe234,15, 0x0fe274,11, 0x0fe2a4,1, 0x0fe2c4,3, 0x0fe2e0,4, 0x0fe2f4,1, 0x0fe2fc,3, 0x0fe30c,7, 0x0fe330,3, 0x0fe340,1, 0x0fe350,2, 0x0fe400,4, 0x0fe414,1, 0x0fe41c,1, 0x0fe424,1, 0x0fe434,15, 0x0fe474,11, 0x0fe4a4,1, 0x0fe4c4,3, 0x0fe4e0,4, 0x0fe4f4,1, 0x0fe4fc,3, 0x0fe50c,7, 0x0fe530,3, 0x0fe540,1, 0x0fe550,2, 0x0fe600,4, 0x0fe614,1, 0x0fe61c,1, 0x0fe624,1, 0x0fe634,15, 0x0fe674,11, 0x0fe6a4,1, 0x0fe6c4,3, 0x0fe6e0,4, 0x0fe6f4,1, 0x0fe6fc,3, 0x0fe70c,7, 0x0fe730,3, 0x0fe740,1, 0x0fe750,2, 0x0fe800,4, 0x0fe814,1, 0x0fe81c,1, 0x0fe824,1, 0x0fe834,15, 0x0fe874,11, 0x0fe8a4,1, 0x0fe8c4,3, 0x0fe8e0,4, 0x0fe8f4,1, 0x0fe8fc,3, 0x0fe90c,7, 0x0fe930,3, 0x0fe940,1, 0x0fe950,2, 0x0fea00,4, 0x0fea14,1, 0x0fea1c,1, 0x0fea24,1, 0x0fea34,15, 0x0fea74,11, 0x0feaa4,1, 0x0feac4,3, 0x0feae0,4, 0x0feaf4,1, 0x0feafc,3, 0x0feb0c,7, 0x0feb30,3, 0x0feb40,1, 0x0feb50,2, 0x0fec00,2, 0x0fec24,1, 0x0fec34,7, 0x0fec80,1, 0x0fec90,2, 0x0fee00,14, 0x0ff500,2, 0x0ff520,1, 0x0ff530,2, 0x0ff720,1, 0x0ff730,2, 0x0ff7a0,3, 0x0ff7f0,1, 0x0ff800,6, 0x0ff81c,4, 0x0ff834,2, 0x0ff840,6, 0x0ff85c,4, 0x0ff874,2, 0x0ff880,6, 0x0ff89c,4, 0x0ff8b4,2, 0x0ff8c0,6, 0x0ff8dc,4, 0x0ff8f4,2, 0x0ff900,6, 0x0ff91c,4, 0x0ff934,2, 0x0ff940,6, 0x0ff95c,4, 0x0ff974,2, 0x0ff980,6, 0x0ff99c,4, 0x0ff9b4,2, 0x0ff9c0,6, 0x0ff9dc,4, 0x0ff9f4,2, 0x0ffa00,6, 0x0ffa1c,4, 0x0ffa34,2, 0x0ffa40,6, 0x0ffa5c,4, 0x0ffa74,2, 0x0ffa80,6, 0x0ffa9c,4, 0x0ffab4,2, 0x0ffac0,6, 0x0ffadc,4, 0x0ffaf4,2, 0x0ffb00,1, 0x0ffb80,2, 0x0ffba0,1, 0x0ffbb0,2, 0x0ffbc0,1, 0x0ffbd0,2, 0x0ffbe0,1, 0x0ffbf0,2, 0x0ffc00,4, 0x0ffc18,4, 0x0ffc34,4, 0x0ffd04,3, 0x0ffd34,4, 0x0ffd4c,1, 0x0ffd70,2, 0x0ffe00,1, 0x0ffe10,2, 0x0ffe20,1, 0x0ffe30,2, 0x0ffe40,1, 0x0ffe50,2, 0x0ffe60,1, 0x0ffe70,2, mstflint-4.26.0/mstdump/mstdump_dbs/SwitchIB.csv0000644000175000017500000046437414522641732022130 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,1, 0x000408,14, 0x000480,1, 0x000488,18, 0x000500,9, 0x000534,2, 0x00054c,4, 0x00056c,11, 0x0005ac,8, 0x0005d0,1, 0x000604,1, 0x00060c,13, 0x000644,1, 0x000654,3, 0x000664,1, 0x00066c,8, 0x0006a8,3, 0x0006c0,8, 0x000700,6, 0x000760,4, 0x000780,8, 0x0007b8,8, 0x0007dc,10, 0x000808,14, 0x000880,1, 0x000888,18, 0x000900,9, 0x000934,2, 0x00094c,4, 0x00096c,11, 0x0009ac,8, 0x0009d0,1, 0x000a04,1, 0x000a0c,13, 0x000a44,1, 0x000a54,3, 0x000a64,1, 0x000a6c,8, 0x000aa8,3, 0x000ac0,8, 0x000b00,6, 0x000b60,4, 0x000b80,8, 0x000bb8,8, 0x000bdc,10, 0x000c08,14, 0x000c80,1, 0x000c88,18, 0x000d00,9, 0x000d34,2, 0x000d4c,4, 0x000d6c,11, 0x000dac,8, 0x000dd0,1, 0x000e04,1, 0x000e0c,13, 0x000e44,1, 0x000e54,3, 0x000e64,1, 0x000e6c,8, 0x000ea8,3, 0x000ec0,8, 0x000f00,6, 0x000f60,4, 0x000f80,8, 0x000fb8,8, 0x000fdc,10, 0x001008,14, 0x001080,1, 0x001088,18, 0x001100,9, 0x001134,2, 0x00114c,4, 0x00116c,11, 0x0011ac,8, 0x0011d0,1, 0x001204,1, 0x00120c,13, 0x001244,1, 0x001254,3, 0x001264,1, 0x00126c,8, 0x0012a8,3, 0x0012c0,8, 0x001300,6, 0x001360,4, 0x001380,8, 0x0013b8,8, 0x0013dc,10, 0x001408,14, 0x001480,1, 0x001488,18, 0x001500,9, 0x001534,2, 0x00154c,4, 0x00156c,11, 0x0015ac,8, 0x0015d0,1, 0x001604,1, 0x00160c,13, 0x001644,1, 0x001654,3, 0x001664,1, 0x00166c,8, 0x0016a8,3, 0x0016c0,8, 0x001700,6, 0x001760,4, 0x001780,8, 0x0017b8,8, 0x0017dc,10, 0x001808,14, 0x001880,1, 0x001888,18, 0x001900,9, 0x001934,2, 0x00194c,4, 0x00196c,11, 0x0019ac,8, 0x0019d0,1, 0x001a04,1, 0x001a0c,13, 0x001a44,1, 0x001a54,3, 0x001a64,1, 0x001a6c,8, 0x001aa8,3, 0x001ac0,8, 0x001b00,6, 0x001b60,4, 0x001b80,8, 0x001bb8,8, 0x001bdc,10, 0x001c08,14, 0x001c80,1, 0x001c88,18, 0x001d00,9, 0x001d34,2, 0x001d4c,4, 0x001d6c,11, 0x001dac,8, 0x001dd0,1, 0x001e04,1, 0x001e0c,13, 0x001e44,1, 0x001e54,3, 0x001e64,1, 0x001e6c,8, 0x001ea8,3, 0x001ec0,8, 0x001f00,6, 0x001f60,4, 0x001f80,8, 0x001fb8,8, 0x001fdc,10, 0x002008,14, 0x002080,1, 0x002088,18, 0x002100,9, 0x002134,2, 0x00214c,4, 0x00216c,11, 0x0021ac,8, 0x0021d0,1, 0x002204,1, 0x00220c,13, 0x002244,1, 0x002254,3, 0x002264,1, 0x00226c,8, 0x0022a8,3, 0x0022c0,8, 0x002300,6, 0x002360,4, 0x002380,8, 0x0023b8,8, 0x0023dc,10, 0x002408,14, 0x002480,1, 0x002488,18, 0x002500,9, 0x002534,2, 0x00254c,4, 0x00256c,11, 0x0025ac,8, 0x0025d0,1, 0x002604,1, 0x00260c,13, 0x002644,1, 0x002654,3, 0x002664,1, 0x00266c,8, 0x0026a8,3, 0x0026c0,8, 0x002700,6, 0x002760,4, 0x002780,8, 0x0027b8,8, 0x0027dc,10, 0x002808,14, 0x002880,1, 0x002888,18, 0x002900,9, 0x002934,2, 0x00294c,4, 0x00296c,11, 0x0029ac,8, 0x0029d0,1, 0x002a04,1, 0x002a0c,13, 0x002a44,1, 0x002a54,3, 0x002a64,1, 0x002a6c,8, 0x002aa8,3, 0x002ac0,8, 0x002b00,6, 0x002b60,4, 0x002b80,8, 0x002bb8,8, 0x002bdc,10, 0x002c08,14, 0x002c80,1, 0x002c88,18, 0x002d00,9, 0x002d34,2, 0x002d4c,4, 0x002d6c,11, 0x002dac,8, 0x002dd0,1, 0x002e04,1, 0x002e0c,13, 0x002e44,1, 0x002e54,3, 0x002e64,1, 0x002e6c,8, 0x002ea8,3, 0x002ec0,8, 0x002f00,6, 0x002f60,4, 0x002f80,8, 0x002fb8,8, 0x002fdc,10, 0x003008,14, 0x003080,1, 0x003088,18, 0x003100,9, 0x003134,2, 0x00314c,4, 0x00316c,11, 0x0031ac,8, 0x0031d0,1, 0x003204,1, 0x00320c,13, 0x003244,1, 0x003254,3, 0x003264,1, 0x00326c,8, 0x0032a8,3, 0x0032c0,8, 0x003300,6, 0x003360,4, 0x003380,8, 0x0033b8,8, 0x0033dc,10, 0x003408,14, 0x003480,1, 0x003488,18, 0x003500,9, 0x003534,2, 0x00354c,4, 0x00356c,11, 0x0035ac,8, 0x0035d0,1, 0x003604,1, 0x00360c,13, 0x003644,1, 0x003654,3, 0x003664,1, 0x00366c,8, 0x0036a8,3, 0x0036c0,8, 0x003700,6, 0x003760,4, 0x003780,8, 0x0037b8,8, 0x0037dc,10, 0x003808,14, 0x003880,1, 0x003888,18, 0x003900,9, 0x003934,2, 0x00394c,4, 0x00396c,11, 0x0039ac,8, 0x0039d0,1, 0x003a04,1, 0x003a0c,13, 0x003a44,1, 0x003a54,3, 0x003a64,1, 0x003a6c,8, 0x003aa8,3, 0x003ac0,8, 0x003b00,6, 0x003b60,4, 0x003b80,8, 0x003bb8,8, 0x003bdc,10, 0x003c08,14, 0x003c80,1, 0x003c88,18, 0x003d00,9, 0x003d34,2, 0x003d4c,4, 0x003d6c,11, 0x003dac,8, 0x003dd0,1, 0x003e04,1, 0x003e0c,13, 0x003e44,1, 0x003e54,3, 0x003e64,1, 0x003e6c,8, 0x003ea8,3, 0x003ec0,8, 0x003f00,6, 0x003f60,4, 0x003f80,8, 0x003fb8,8, 0x003fdc,10, 0x004008,14, 0x004080,1, 0x004088,18, 0x004100,9, 0x004134,2, 0x00414c,4, 0x00416c,11, 0x0041ac,8, 0x0041d0,1, 0x004204,1, 0x00420c,13, 0x004244,1, 0x004254,3, 0x004264,1, 0x00426c,8, 0x0042a8,3, 0x0042c0,8, 0x004300,6, 0x004360,4, 0x004380,8, 0x0043b8,8, 0x0043dc,10, 0x004408,14, 0x004480,1, 0x004488,18, 0x004500,9, 0x004534,2, 0x00454c,4, 0x00456c,11, 0x0045ac,8, 0x0045d0,1, 0x004604,1, 0x00460c,13, 0x004644,1, 0x004654,3, 0x004664,1, 0x00466c,8, 0x0046a8,3, 0x0046c0,8, 0x004700,6, 0x004760,4, 0x004780,8, 0x0047b8,8, 0x0047dc,10, 0x004808,14, 0x004880,1, 0x004888,18, 0x004900,9, 0x004934,2, 0x00494c,4, 0x00496c,11, 0x0049ac,8, 0x0049d0,1, 0x004a04,1, 0x004a0c,13, 0x004a44,1, 0x004a54,3, 0x004a64,1, 0x004a6c,8, 0x004aa8,3, 0x004ac0,8, 0x004b00,6, 0x004b60,4, 0x004b80,8, 0x004bb8,8, 0x004bdc,10, 0x004c08,14, 0x004c80,1, 0x004c88,18, 0x004d00,9, 0x004d34,2, 0x004d4c,4, 0x004d6c,11, 0x004dac,8, 0x004dd0,1, 0x004e04,1, 0x004e0c,13, 0x004e44,1, 0x004e54,3, 0x004e64,1, 0x004e6c,8, 0x004ea8,3, 0x004ec0,8, 0x004f00,6, 0x004f60,4, 0x004f80,8, 0x004fb8,8, 0x004fdc,10, 0x005008,14, 0x005080,1, 0x005088,18, 0x005100,9, 0x005134,2, 0x00514c,4, 0x00516c,11, 0x0051ac,8, 0x0051d0,1, 0x005204,1, 0x00520c,13, 0x005244,1, 0x005254,3, 0x005264,1, 0x00526c,8, 0x0052a8,3, 0x0052c0,8, 0x005300,6, 0x005360,4, 0x005380,8, 0x0053b8,8, 0x0053dc,10, 0x005428,1, 0x005450,1, 0x005478,1, 0x0054a0,1, 0x0055ac,1, 0x0055d8,4, 0x005600,6, 0x005620,6, 0x005640,3, 0x005800,13, 0x005840,6, 0x005860,3, 0x005880,2, 0x005904,2, 0x005918,1, 0x005940,1, 0x008400,1, 0x008408,14, 0x008480,1, 0x008488,18, 0x008500,9, 0x008534,2, 0x00854c,4, 0x00856c,11, 0x0085ac,8, 0x0085d0,1, 0x008604,1, 0x00860c,13, 0x008644,1, 0x008654,3, 0x008664,1, 0x00866c,8, 0x0086a8,3, 0x0086c0,8, 0x008700,6, 0x008760,4, 0x008780,8, 0x0087b8,8, 0x0087dc,10, 0x008808,14, 0x008880,1, 0x008888,18, 0x008900,9, 0x008934,2, 0x00894c,4, 0x00896c,11, 0x0089ac,8, 0x0089d0,1, 0x008a04,1, 0x008a0c,13, 0x008a44,1, 0x008a54,3, 0x008a64,1, 0x008a6c,8, 0x008aa8,3, 0x008ac0,8, 0x008b00,6, 0x008b60,4, 0x008b80,8, 0x008bb8,8, 0x008bdc,10, 0x008c08,14, 0x008c80,1, 0x008c88,18, 0x008d00,9, 0x008d34,2, 0x008d4c,4, 0x008d6c,11, 0x008dac,8, 0x008dd0,1, 0x008e04,1, 0x008e0c,13, 0x008e44,1, 0x008e54,3, 0x008e64,1, 0x008e6c,8, 0x008ea8,3, 0x008ec0,8, 0x008f00,6, 0x008f60,4, 0x008f80,8, 0x008fb8,8, 0x008fdc,10, 0x009008,14, 0x009080,1, 0x009088,18, 0x009100,9, 0x009134,2, 0x00914c,4, 0x00916c,11, 0x0091ac,8, 0x0091d0,1, 0x009204,1, 0x00920c,13, 0x009244,1, 0x009254,3, 0x009264,1, 0x00926c,8, 0x0092a8,3, 0x0092c0,8, 0x009300,6, 0x009360,4, 0x009380,8, 0x0093b8,8, 0x0093dc,10, 0x009408,14, 0x009480,1, 0x009488,18, 0x009500,9, 0x009534,2, 0x00954c,4, 0x00956c,11, 0x0095ac,8, 0x0095d0,1, 0x009604,1, 0x00960c,13, 0x009644,1, 0x009654,3, 0x009664,1, 0x00966c,8, 0x0096a8,3, 0x0096c0,8, 0x009700,6, 0x009760,4, 0x009780,8, 0x0097b8,8, 0x0097dc,10, 0x009808,14, 0x009880,1, 0x009888,18, 0x009900,9, 0x009934,2, 0x00994c,4, 0x00996c,11, 0x0099ac,8, 0x0099d0,1, 0x009a04,1, 0x009a0c,13, 0x009a44,1, 0x009a54,3, 0x009a64,1, 0x009a6c,8, 0x009aa8,3, 0x009ac0,8, 0x009b00,6, 0x009b60,4, 0x009b80,8, 0x009bb8,8, 0x009bdc,10, 0x009c08,14, 0x009c80,1, 0x009c88,18, 0x009d00,9, 0x009d34,2, 0x009d4c,4, 0x009d6c,11, 0x009dac,8, 0x009dd0,1, 0x009e04,1, 0x009e0c,13, 0x009e44,1, 0x009e54,3, 0x009e64,1, 0x009e6c,8, 0x009ea8,3, 0x009ec0,8, 0x009f00,6, 0x009f60,4, 0x009f80,8, 0x009fb8,8, 0x009fdc,10, 0x00a008,14, 0x00a080,1, 0x00a088,18, 0x00a100,9, 0x00a134,2, 0x00a14c,4, 0x00a16c,11, 0x00a1ac,8, 0x00a1d0,1, 0x00a204,1, 0x00a20c,13, 0x00a244,1, 0x00a254,3, 0x00a264,1, 0x00a26c,8, 0x00a2a8,3, 0x00a2c0,8, 0x00a300,6, 0x00a360,4, 0x00a380,8, 0x00a3b8,8, 0x00a3dc,10, 0x00a408,14, 0x00a480,1, 0x00a488,18, 0x00a500,9, 0x00a534,2, 0x00a54c,4, 0x00a56c,11, 0x00a5ac,8, 0x00a5d0,1, 0x00a604,1, 0x00a60c,13, 0x00a644,1, 0x00a654,3, 0x00a664,1, 0x00a66c,8, 0x00a6a8,3, 0x00a6c0,8, 0x00a700,6, 0x00a760,4, 0x00a780,8, 0x00a7b8,8, 0x00a7dc,10, 0x00a808,14, 0x00a880,1, 0x00a888,18, 0x00a900,9, 0x00a934,2, 0x00a94c,4, 0x00a96c,11, 0x00a9ac,8, 0x00a9d0,1, 0x00aa04,1, 0x00aa0c,13, 0x00aa44,1, 0x00aa54,3, 0x00aa64,1, 0x00aa6c,8, 0x00aaa8,3, 0x00aac0,8, 0x00ab00,6, 0x00ab60,4, 0x00ab80,8, 0x00abb8,8, 0x00abdc,10, 0x00ac08,14, 0x00ac80,1, 0x00ac88,18, 0x00ad00,9, 0x00ad34,2, 0x00ad4c,4, 0x00ad6c,11, 0x00adac,8, 0x00add0,1, 0x00ae04,1, 0x00ae0c,13, 0x00ae44,1, 0x00ae54,3, 0x00ae64,1, 0x00ae6c,8, 0x00aea8,3, 0x00aec0,8, 0x00af00,6, 0x00af60,4, 0x00af80,8, 0x00afb8,8, 0x00afdc,10, 0x00b008,14, 0x00b080,1, 0x00b088,18, 0x00b100,9, 0x00b134,2, 0x00b14c,4, 0x00b16c,11, 0x00b1ac,8, 0x00b1d0,1, 0x00b204,1, 0x00b20c,13, 0x00b244,1, 0x00b254,3, 0x00b264,1, 0x00b26c,8, 0x00b2a8,3, 0x00b2c0,8, 0x00b300,6, 0x00b360,4, 0x00b380,8, 0x00b3b8,8, 0x00b3dc,10, 0x00b408,14, 0x00b480,1, 0x00b488,18, 0x00b500,9, 0x00b534,2, 0x00b54c,4, 0x00b56c,11, 0x00b5ac,8, 0x00b5d0,1, 0x00b604,1, 0x00b60c,13, 0x00b644,1, 0x00b654,3, 0x00b664,1, 0x00b66c,8, 0x00b6a8,3, 0x00b6c0,8, 0x00b700,6, 0x00b760,4, 0x00b780,8, 0x00b7b8,8, 0x00b7dc,10, 0x00b808,14, 0x00b880,1, 0x00b888,18, 0x00b900,9, 0x00b934,2, 0x00b94c,4, 0x00b96c,11, 0x00b9ac,8, 0x00b9d0,1, 0x00ba04,1, 0x00ba0c,13, 0x00ba44,1, 0x00ba54,3, 0x00ba64,1, 0x00ba6c,8, 0x00baa8,3, 0x00bac0,8, 0x00bb00,6, 0x00bb60,4, 0x00bb80,8, 0x00bbb8,8, 0x00bbdc,10, 0x00bc08,14, 0x00bc80,1, 0x00bc88,18, 0x00bd00,9, 0x00bd34,2, 0x00bd4c,4, 0x00bd6c,11, 0x00bdac,8, 0x00bdd0,1, 0x00be04,1, 0x00be0c,13, 0x00be44,1, 0x00be54,3, 0x00be64,1, 0x00be6c,8, 0x00bea8,3, 0x00bec0,8, 0x00bf00,6, 0x00bf60,4, 0x00bf80,8, 0x00bfb8,8, 0x00bfdc,10, 0x00c008,14, 0x00c080,1, 0x00c088,18, 0x00c100,9, 0x00c134,2, 0x00c14c,4, 0x00c16c,11, 0x00c1ac,8, 0x00c1d0,1, 0x00c204,1, 0x00c20c,13, 0x00c244,1, 0x00c254,3, 0x00c264,1, 0x00c26c,8, 0x00c2a8,3, 0x00c2c0,8, 0x00c300,6, 0x00c360,4, 0x00c380,8, 0x00c3b8,8, 0x00c3dc,10, 0x00c408,14, 0x00c480,1, 0x00c488,18, 0x00c500,9, 0x00c534,2, 0x00c54c,4, 0x00c56c,11, 0x00c5ac,8, 0x00c5d0,1, 0x00c604,1, 0x00c60c,13, 0x00c644,1, 0x00c654,3, 0x00c664,1, 0x00c66c,8, 0x00c6a8,3, 0x00c6c0,8, 0x00c700,6, 0x00c760,4, 0x00c780,8, 0x00c7b8,8, 0x00c7dc,10, 0x00c808,14, 0x00c880,1, 0x00c888,18, 0x00c900,9, 0x00c934,2, 0x00c94c,4, 0x00c96c,11, 0x00c9ac,8, 0x00c9d0,1, 0x00ca04,1, 0x00ca0c,13, 0x00ca44,1, 0x00ca54,3, 0x00ca64,1, 0x00ca6c,8, 0x00caa8,3, 0x00cac0,8, 0x00cb00,6, 0x00cb60,4, 0x00cb80,8, 0x00cbb8,8, 0x00cbdc,10, 0x00cc08,14, 0x00cc80,1, 0x00cc88,18, 0x00cd00,9, 0x00cd34,2, 0x00cd4c,4, 0x00cd6c,11, 0x00cdac,8, 0x00cdd0,1, 0x00ce04,1, 0x00ce0c,13, 0x00ce44,1, 0x00ce54,3, 0x00ce64,1, 0x00ce6c,8, 0x00cea8,3, 0x00cec0,8, 0x00cf00,6, 0x00cf60,4, 0x00cf80,8, 0x00cfb8,8, 0x00cfdc,10, 0x00d008,14, 0x00d080,1, 0x00d088,18, 0x00d100,9, 0x00d134,2, 0x00d14c,4, 0x00d16c,11, 0x00d1ac,8, 0x00d1d0,1, 0x00d204,1, 0x00d20c,13, 0x00d244,1, 0x00d254,3, 0x00d264,1, 0x00d26c,8, 0x00d2a8,3, 0x00d2c0,8, 0x00d300,6, 0x00d360,4, 0x00d380,8, 0x00d3b8,8, 0x00d3dc,10, 0x00d428,1, 0x00d450,1, 0x00d478,1, 0x00d4a0,1, 0x00d5ac,1, 0x00d5d8,4, 0x00d600,6, 0x00d620,6, 0x00d640,3, 0x00d800,13, 0x00d840,6, 0x00d860,3, 0x00d880,2, 0x00d904,2, 0x00d918,1, 0x00d940,1, 0x010000,1, 0x010008,10, 0x010034,16, 0x010080,33, 0x010110,5, 0x010128,2, 0x010134,1, 0x01013c,13, 0x010174,1, 0x01017c,7, 0x0101a0,17, 0x0101e8,3, 0x010200,1, 0x010208,10, 0x010234,16, 0x010280,33, 0x010310,5, 0x010328,2, 0x010334,1, 0x01033c,13, 0x010374,1, 0x01037c,7, 0x0103a0,17, 0x0103e8,3, 0x010400,1, 0x010408,10, 0x010434,16, 0x010480,33, 0x010510,5, 0x010528,2, 0x010534,1, 0x01053c,13, 0x010574,1, 0x01057c,7, 0x0105a0,17, 0x0105e8,3, 0x010600,1, 0x010608,10, 0x010634,16, 0x010680,33, 0x010710,5, 0x010728,2, 0x010734,1, 0x01073c,13, 0x010774,1, 0x01077c,7, 0x0107a0,17, 0x0107e8,3, 0x010800,1, 0x010808,10, 0x010834,16, 0x010880,33, 0x010910,5, 0x010928,2, 0x010934,1, 0x01093c,13, 0x010974,1, 0x01097c,7, 0x0109a0,17, 0x0109e8,3, 0x010a00,1, 0x010a08,10, 0x010a34,16, 0x010a80,33, 0x010b10,5, 0x010b28,2, 0x010b34,1, 0x010b3c,13, 0x010b74,1, 0x010b7c,7, 0x010ba0,17, 0x010be8,3, 0x010c00,1, 0x010c08,10, 0x010c34,16, 0x010c80,33, 0x010d10,5, 0x010d28,2, 0x010d34,1, 0x010d3c,13, 0x010d74,1, 0x010d7c,7, 0x010da0,17, 0x010de8,3, 0x010e00,1, 0x010e08,10, 0x010e34,16, 0x010e80,33, 0x010f10,5, 0x010f28,2, 0x010f34,1, 0x010f3c,13, 0x010f74,1, 0x010f7c,7, 0x010fa0,17, 0x010fe8,3, 0x011000,1, 0x011008,10, 0x011034,16, 0x011080,33, 0x011110,5, 0x011128,2, 0x011134,1, 0x01113c,13, 0x011174,1, 0x01117c,7, 0x0111a0,17, 0x0111e8,3, 0x011200,1, 0x011208,10, 0x011234,16, 0x011280,33, 0x011310,5, 0x011328,2, 0x011334,1, 0x01133c,13, 0x011374,1, 0x01137c,7, 0x0113a0,17, 0x0113e8,3, 0x011400,1, 0x011408,10, 0x011434,16, 0x011480,33, 0x011510,5, 0x011528,2, 0x011534,1, 0x01153c,13, 0x011574,1, 0x01157c,7, 0x0115a0,17, 0x0115e8,3, 0x011600,1, 0x011608,10, 0x011634,16, 0x011680,33, 0x011710,5, 0x011728,2, 0x011734,1, 0x01173c,13, 0x011774,1, 0x01177c,7, 0x0117a0,17, 0x0117e8,3, 0x011800,1, 0x011808,10, 0x011834,16, 0x011880,33, 0x011910,5, 0x011928,2, 0x011934,1, 0x01193c,13, 0x011974,1, 0x01197c,7, 0x0119a0,17, 0x0119e8,3, 0x011a00,1, 0x011a08,10, 0x011a34,16, 0x011a80,33, 0x011b10,5, 0x011b28,2, 0x011b34,1, 0x011b3c,13, 0x011b74,1, 0x011b7c,7, 0x011ba0,17, 0x011be8,3, 0x011c00,1, 0x011c08,10, 0x011c34,16, 0x011c80,33, 0x011d10,5, 0x011d28,2, 0x011d34,1, 0x011d3c,13, 0x011d74,1, 0x011d7c,7, 0x011da0,17, 0x011de8,3, 0x011e00,1, 0x011e08,10, 0x011e34,16, 0x011e80,33, 0x011f10,5, 0x011f28,2, 0x011f34,1, 0x011f3c,13, 0x011f74,1, 0x011f7c,7, 0x011fa0,17, 0x011fe8,3, 0x012000,1, 0x012008,10, 0x012034,16, 0x012080,33, 0x012110,5, 0x012128,2, 0x012134,1, 0x01213c,13, 0x012174,1, 0x01217c,7, 0x0121a0,17, 0x0121e8,3, 0x012200,1, 0x012208,10, 0x012234,16, 0x012280,33, 0x012310,5, 0x012328,2, 0x012334,1, 0x01233c,13, 0x012374,1, 0x01237c,7, 0x0123a0,17, 0x0123e8,3, 0x012800,2, 0x01280c,37, 0x0128a4,64, 0x012a00,84, 0x012b54,2, 0x012b7c,1, 0x012b84,1, 0x012b8c,4, 0x012ba4,1, 0x012bac,75, 0x012d00,60, 0x012dfc,7, 0x012e20,6, 0x012e40,6, 0x012e60,6, 0x012e80,3, 0x012f00,14, 0x012f40,1, 0x013000,3, 0x013028,3, 0x013050,3, 0x013078,3, 0x0130a0,6, 0x0131ac,1, 0x0131d8,4, 0x013200,6, 0x013220,6, 0x013240,6, 0x013260,6, 0x013280,6, 0x0132a0,6, 0x0132c0,3, 0x013400,6, 0x013420,3, 0x013440,3, 0x013500,13, 0x013540,1, 0x013900,1, 0x014000,1, 0x014008,10, 0x014034,16, 0x014080,33, 0x014110,5, 0x014128,2, 0x014134,1, 0x01413c,13, 0x014174,1, 0x01417c,7, 0x0141a0,17, 0x0141e8,3, 0x014200,1, 0x014208,10, 0x014234,16, 0x014280,33, 0x014310,5, 0x014328,2, 0x014334,1, 0x01433c,13, 0x014374,1, 0x01437c,7, 0x0143a0,17, 0x0143e8,3, 0x014400,1, 0x014408,10, 0x014434,16, 0x014480,33, 0x014510,5, 0x014528,2, 0x014534,1, 0x01453c,13, 0x014574,1, 0x01457c,7, 0x0145a0,17, 0x0145e8,3, 0x014600,1, 0x014608,10, 0x014634,16, 0x014680,33, 0x014710,5, 0x014728,2, 0x014734,1, 0x01473c,13, 0x014774,1, 0x01477c,7, 0x0147a0,17, 0x0147e8,3, 0x014800,1, 0x014808,10, 0x014834,16, 0x014880,33, 0x014910,5, 0x014928,2, 0x014934,1, 0x01493c,13, 0x014974,1, 0x01497c,7, 0x0149a0,17, 0x0149e8,3, 0x014a00,1, 0x014a08,10, 0x014a34,16, 0x014a80,33, 0x014b10,5, 0x014b28,2, 0x014b34,1, 0x014b3c,13, 0x014b74,1, 0x014b7c,7, 0x014ba0,17, 0x014be8,3, 0x014c00,1, 0x014c08,10, 0x014c34,16, 0x014c80,33, 0x014d10,5, 0x014d28,2, 0x014d34,1, 0x014d3c,13, 0x014d74,1, 0x014d7c,7, 0x014da0,17, 0x014de8,3, 0x014e00,1, 0x014e08,10, 0x014e34,16, 0x014e80,33, 0x014f10,5, 0x014f28,2, 0x014f34,1, 0x014f3c,13, 0x014f74,1, 0x014f7c,7, 0x014fa0,17, 0x014fe8,3, 0x015000,1, 0x015008,10, 0x015034,16, 0x015080,33, 0x015110,5, 0x015128,2, 0x015134,1, 0x01513c,13, 0x015174,1, 0x01517c,7, 0x0151a0,17, 0x0151e8,3, 0x015200,1, 0x015208,10, 0x015234,16, 0x015280,33, 0x015310,5, 0x015328,2, 0x015334,1, 0x01533c,13, 0x015374,1, 0x01537c,7, 0x0153a0,17, 0x0153e8,3, 0x015400,1, 0x015408,10, 0x015434,16, 0x015480,33, 0x015510,5, 0x015528,2, 0x015534,1, 0x01553c,13, 0x015574,1, 0x01557c,7, 0x0155a0,17, 0x0155e8,3, 0x015600,1, 0x015608,10, 0x015634,16, 0x015680,33, 0x015710,5, 0x015728,2, 0x015734,1, 0x01573c,13, 0x015774,1, 0x01577c,7, 0x0157a0,17, 0x0157e8,3, 0x015800,1, 0x015808,10, 0x015834,16, 0x015880,33, 0x015910,5, 0x015928,2, 0x015934,1, 0x01593c,13, 0x015974,1, 0x01597c,7, 0x0159a0,17, 0x0159e8,3, 0x015a00,1, 0x015a08,10, 0x015a34,16, 0x015a80,33, 0x015b10,5, 0x015b28,2, 0x015b34,1, 0x015b3c,13, 0x015b74,1, 0x015b7c,7, 0x015ba0,17, 0x015be8,3, 0x015c00,1, 0x015c08,10, 0x015c34,16, 0x015c80,33, 0x015d10,5, 0x015d28,2, 0x015d34,1, 0x015d3c,13, 0x015d74,1, 0x015d7c,7, 0x015da0,17, 0x015de8,3, 0x015e00,1, 0x015e08,10, 0x015e34,16, 0x015e80,33, 0x015f10,5, 0x015f28,2, 0x015f34,1, 0x015f3c,13, 0x015f74,1, 0x015f7c,7, 0x015fa0,17, 0x015fe8,3, 0x016000,1, 0x016008,10, 0x016034,16, 0x016080,33, 0x016110,5, 0x016128,2, 0x016134,1, 0x01613c,13, 0x016174,1, 0x01617c,7, 0x0161a0,17, 0x0161e8,3, 0x016200,1, 0x016208,10, 0x016234,16, 0x016280,33, 0x016310,5, 0x016328,2, 0x016334,1, 0x01633c,13, 0x016374,1, 0x01637c,7, 0x0163a0,17, 0x0163e8,3, 0x016800,2, 0x01680c,37, 0x0168a4,64, 0x016a00,84, 0x016b54,2, 0x016b7c,1, 0x016b84,1, 0x016b8c,4, 0x016ba4,1, 0x016bac,75, 0x016d00,60, 0x016dfc,7, 0x016e20,6, 0x016e40,6, 0x016e60,6, 0x016e80,3, 0x016f00,14, 0x016f40,1, 0x017000,3, 0x017028,3, 0x017050,3, 0x017078,3, 0x0170a0,6, 0x0171ac,1, 0x0171d8,4, 0x017200,6, 0x017220,6, 0x017240,6, 0x017260,6, 0x017280,6, 0x0172a0,6, 0x0172c0,3, 0x017400,6, 0x017420,3, 0x017440,3, 0x017500,13, 0x017540,1, 0x017900,1, 0x018000,9, 0x018030,8, 0x018080,9, 0x0180b0,8, 0x018100,9, 0x018130,8, 0x018180,9, 0x0181b0,8, 0x018200,9, 0x018230,8, 0x018280,9, 0x0182b0,8, 0x018300,9, 0x018330,8, 0x018380,9, 0x0183b0,8, 0x018400,9, 0x018430,8, 0x018480,9, 0x0184b0,8, 0x018500,9, 0x018530,8, 0x018580,9, 0x0185b0,8, 0x018600,9, 0x018630,8, 0x018680,9, 0x0186b0,8, 0x018700,9, 0x018730,8, 0x018780,9, 0x0187b0,8, 0x018800,9, 0x018830,8, 0x018880,9, 0x0188b0,8, 0x018900,9, 0x018930,8, 0x018980,9, 0x0189b0,8, 0x018a00,9, 0x018a30,8, 0x018a80,9, 0x018ab0,8, 0x018b00,9, 0x018b30,8, 0x018b80,9, 0x018bb0,8, 0x018c00,9, 0x018c30,8, 0x018c80,9, 0x018cb0,8, 0x018d00,9, 0x018d30,8, 0x018d80,9, 0x018db0,8, 0x018e00,9, 0x018e30,8, 0x018e80,9, 0x018eb0,8, 0x018f00,9, 0x018f30,8, 0x018f80,9, 0x018fb0,8, 0x019000,9, 0x019030,8, 0x019080,9, 0x0190b0,8, 0x019100,9, 0x019130,8, 0x019180,9, 0x0191b0,8, 0x019200,6, 0x019220,3, 0x019230,10, 0x019260,3, 0x019270,10, 0x0192a0,3, 0x0192b0,10, 0x0192e0,3, 0x0192f0,10, 0x019320,3, 0x019330,10, 0x019360,3, 0x019370,10, 0x0193a0,3, 0x0193b0,10, 0x0193e0,3, 0x0193f0,10, 0x019420,3, 0x019430,10, 0x019460,3, 0x019470,10, 0x0194a0,3, 0x0194b0,10, 0x0194e0,3, 0x0194f0,10, 0x019520,3, 0x019530,10, 0x019560,3, 0x019570,10, 0x0195a0,3, 0x0195b0,10, 0x0195e0,3, 0x0195f0,10, 0x019620,3, 0x019630,10, 0x019660,3, 0x019670,10, 0x0196a0,3, 0x0196b0,10, 0x0196e0,3, 0x0196f0,10, 0x019720,3, 0x019730,10, 0x019760,3, 0x019770,10, 0x0197a0,3, 0x0197b0,10, 0x0197e0,3, 0x0197f0,10, 0x019820,3, 0x019830,10, 0x019860,3, 0x019870,10, 0x0198a0,3, 0x0198b0,10, 0x0198e0,3, 0x0198f0,10, 0x019920,3, 0x019930,10, 0x019960,3, 0x019970,10, 0x0199a0,3, 0x0199b0,10, 0x0199e0,3, 0x0199f0,10, 0x019a20,3, 0x019a30,10, 0x019a60,3, 0x019a70,10, 0x019aa0,3, 0x019ab0,10, 0x019ae0,3, 0x019af0,4, 0x01a400,13, 0x01a440,6, 0x01a460,3, 0x01a480,8, 0x01a4b0,7, 0x01a4d0,3, 0x01a500,6, 0x01a520,6, 0x01a540,6, 0x01a560,6, 0x01a580,6, 0x01a5a0,6, 0x01a5c0,6, 0x01a5e0,6, 0x01a600,6, 0x01a620,6, 0x01a640,6, 0x01a660,6, 0x01a680,6, 0x01a6a0,6, 0x01a6c0,6, 0x01a6e0,6, 0x01a700,6, 0x01a720,6, 0x01a740,6, 0x01a760,6, 0x01a780,6, 0x01a7a0,6, 0x01a7c0,6, 0x01a7e0,6, 0x01a800,6, 0x01a820,6, 0x01a840,6, 0x01a860,6, 0x01a880,6, 0x01a8a0,6, 0x01a8c0,6, 0x01a8e0,6, 0x01a900,6, 0x01a920,6, 0x01a940,6, 0x01a960,6, 0x01ab00,6, 0x01ab20,3, 0x01ab30,10, 0x01ab60,3, 0x01ab70,10, 0x01aba0,3, 0x01abb0,10, 0x01abe0,3, 0x01abf0,9, 0x01acf4,3, 0x01b000,38, 0x01b100,37, 0x01b200,18, 0x01b400,6, 0x01b420,6, 0x01b440,6, 0x01b460,6, 0x01b480,6, 0x01b4a0,6, 0x01b4c0,6, 0x01b4e0,6, 0x01b500,6, 0x01b520,6, 0x01b540,6, 0x01b560,6, 0x01b580,6, 0x01b5a0,6, 0x01b5c0,6, 0x01b5e0,6, 0x01b600,6, 0x01b620,6, 0x01b640,3, 0x01b800,6, 0x01b820,6, 0x01b840,6, 0x01b860,6, 0x01b880,6, 0x01b8a0,6, 0x01b8c0,6, 0x01b8e0,6, 0x01b900,6, 0x01b920,6, 0x01b940,6, 0x01b960,6, 0x01b980,6, 0x01b9a0,6, 0x01b9c0,6, 0x01b9e0,6, 0x01ba00,6, 0x01ba20,6, 0x01ba40,6, 0x01ba60,3, 0x01bc00,2, 0x01c000,22, 0x01c060,3, 0x01c070,26, 0x01c0e0,3, 0x01c0f0,26, 0x01c160,3, 0x01c170,26, 0x01c1e0,3, 0x01c1f0,26, 0x01c260,3, 0x01c270,26, 0x01c2e0,3, 0x01c2f0,26, 0x01c360,3, 0x01c370,26, 0x01c3e0,3, 0x01c3f0,26, 0x01c460,3, 0x01c470,26, 0x01c4e0,3, 0x01c4f0,26, 0x01c560,3, 0x01c570,26, 0x01c5e0,3, 0x01c5f0,26, 0x01c660,3, 0x01c670,26, 0x01c6e0,3, 0x01c6f0,26, 0x01c760,3, 0x01c770,26, 0x01c7e0,3, 0x01c7f0,26, 0x01c860,3, 0x01c870,26, 0x01c8e0,3, 0x01c8f0,26, 0x01c960,3, 0x01c970,26, 0x01c9e0,3, 0x01c9f0,26, 0x01ca60,3, 0x01ca70,26, 0x01cae0,3, 0x01caf0,26, 0x01cb60,3, 0x01cb70,26, 0x01cbe0,3, 0x01cbf0,26, 0x01cc60,3, 0x01cc70,26, 0x01cce0,3, 0x01ccf0,26, 0x01cd60,3, 0x01cd70,26, 0x01cde0,3, 0x01cdf0,26, 0x01ce60,3, 0x01ce70,26, 0x01cee0,3, 0x01cef0,26, 0x01cf60,3, 0x01cf70,26, 0x01cfe0,3, 0x01cff0,26, 0x01d060,3, 0x01d070,26, 0x01d0e0,3, 0x01d0f0,26, 0x01d160,3, 0x01d170,26, 0x01d1e0,3, 0x01d1f0,6, 0x01d800,6, 0x01d820,4, 0x01d840,8, 0x01d87c,7, 0x01d8a0,4, 0x01d8c0,8, 0x01d8fc,7, 0x01d920,4, 0x01d940,8, 0x01d97c,7, 0x01d9a0,4, 0x01d9c0,8, 0x01d9fc,7, 0x01da20,4, 0x01da40,8, 0x01da7c,7, 0x01daa0,4, 0x01dac0,8, 0x01dafc,7, 0x01db20,4, 0x01db40,8, 0x01db7c,7, 0x01dba0,4, 0x01dbc0,8, 0x01dbfc,7, 0x01dc20,4, 0x01dc40,8, 0x01dc7c,7, 0x01dca0,4, 0x01dcc0,8, 0x01dcfc,7, 0x01dd20,4, 0x01dd40,8, 0x01dd7c,7, 0x01dda0,4, 0x01ddc0,8, 0x01ddfc,7, 0x01de20,4, 0x01de40,8, 0x01de7c,7, 0x01dea0,4, 0x01dec0,8, 0x01defc,7, 0x01df20,4, 0x01df40,8, 0x01df7c,7, 0x01dfa0,4, 0x01dfc0,8, 0x01dffc,7, 0x01e020,4, 0x01e040,8, 0x01e07c,7, 0x01e0a0,4, 0x01e0c0,8, 0x01e0fc,7, 0x01e120,4, 0x01e140,8, 0x01e17c,7, 0x01e1a0,4, 0x01e1c0,8, 0x01e1fc,7, 0x01e220,4, 0x01e240,8, 0x01e27c,7, 0x01e2a0,4, 0x01e2c0,8, 0x01e2fc,7, 0x01e320,4, 0x01e340,8, 0x01e37c,7, 0x01e3a0,4, 0x01e3c0,8, 0x01e3fc,7, 0x01e420,4, 0x01e440,8, 0x01e47c,7, 0x01e4a0,4, 0x01e4c0,8, 0x01e4fc,7, 0x01e520,4, 0x01e540,8, 0x01e57c,7, 0x01e5a0,4, 0x01e5c0,8, 0x01e5fc,7, 0x01e620,4, 0x01e640,8, 0x01e67c,7, 0x01e6a0,4, 0x01e6c0,8, 0x01e6fc,7, 0x01e720,4, 0x01e740,8, 0x01e77c,7, 0x01e7a0,4, 0x01e7c0,8, 0x01e7fc,7, 0x01e820,4, 0x01e840,8, 0x01e87c,7, 0x01e8a0,4, 0x01e8c0,8, 0x01e8fc,7, 0x01e920,4, 0x01e940,8, 0x01e97c,7, 0x01e9a0,4, 0x01e9c0,8, 0x01e9fc,7, 0x01ea20,4, 0x01ea40,8, 0x01ea7c,7, 0x01eaa0,4, 0x01eac0,8, 0x01eafc,1, 0x01f408,13, 0x01f440,1, 0x01f448,1, 0x01f45c,4, 0x01f470,10, 0x01f4a0,6, 0x01f4c0,6, 0x01f4e0,3, 0x01f800,4, 0x01f828,4, 0x01f850,4, 0x01f878,4, 0x01f8a0,4, 0x01f9ac,1, 0x01f9d8,4, 0x01fa00,6, 0x01fa20,6, 0x01fa40,6, 0x01fa60,6, 0x01fa80,6, 0x01faa0,6, 0x01fac0,6, 0x01fae0,6, 0x01fb00,3, 0x01fc00,13, 0x01fc40,3, 0x01fc50,6, 0x01fc6c,1, 0x01fc80,6, 0x01fca0,6, 0x01fcc0,6, 0x01fce0,3, 0x01fd00,1, 0x01fd80,6, 0x01fda0,6, 0x01fdc0,6, 0x01fde0,3, 0x01fe00,1, 0x01fe08,4, 0x01fffc,1, 0x049000,6, 0x049020,20, 0x049080,10, 0x0490b0,1, 0x0490c0,3, 0x0490d0,3, 0x049100,2, 0x049110,3, 0x049120,4, 0x049140,7, 0x049160,7, 0x049180,3, 0x049190,1, 0x049200,6, 0x049220,20, 0x049280,10, 0x0492b0,1, 0x0492c0,3, 0x0492d0,3, 0x049300,2, 0x049310,3, 0x049320,4, 0x049340,7, 0x049360,7, 0x049380,3, 0x049390,1, 0x049400,6, 0x049420,20, 0x049480,10, 0x0494b0,1, 0x0494c0,3, 0x0494d0,3, 0x049500,2, 0x049510,3, 0x049520,4, 0x049540,7, 0x049560,7, 0x049580,3, 0x049590,1, 0x049608,2, 0x049620,1, 0x049648,2, 0x049660,1, 0x049688,2, 0x0496a0,1, 0x0496c8,2, 0x0496e0,1, 0x049708,2, 0x049720,1, 0x049748,2, 0x049760,1, 0x049788,2, 0x0497a0,1, 0x0497c8,2, 0x0497e0,1, 0x049804,28, 0x049880,2, 0x0498a0,2, 0x0498c0,1, 0x0498e0,1, 0x049a00,13, 0x049a40,2, 0x049a4c,4, 0x050400,11, 0x050430,6, 0x050460,3, 0x0504a0,3, 0x050700,13, 0x050740,7, 0x050760,7, 0x051800,162, 0x051a90,2, 0x051aa0,2, 0x051c00,8, 0x051d00,26, 0x051d84,1, 0x051d94,9, 0x051e00,16, 0x058400,12, 0x058440,7, 0x058460,2, 0x058480,12, 0x0584c0,7, 0x0584e0,2, 0x058500,6, 0x058520,6, 0x058540,3, 0x058584,1, 0x058590,9, 0x0585e0,7, 0x058600,10, 0x058640,10, 0x058680,15, 0x0586d8,9, 0x058800,6, 0x058820,6, 0x058840,6, 0x058860,6, 0x058880,6, 0x0588a0,6, 0x0588c0,6, 0x0588e0,6, 0x058900,3, 0x058a00,6, 0x058b00,6, 0x058b20,6, 0x058b40,6, 0x058b60,6, 0x058b80,6, 0x058ba0,6, 0x058bc0,3, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c20,8, 0x060f80,6, 0x060fa0,7, 0x060fd8,2, 0x060fe4,1, 0x060ff0,10, 0x061020,16, 0x061084,1, 0x0610c0,16, 0x061204,1, 0x061220,8, 0x061250,3, 0x061260,5, 0x061280,6, 0x0612a0,6, 0x061300,3, 0x061310,2, 0x061320,2, 0x061330,1, 0x061340,3, 0x062000,16, 0x062060,7, 0x062080,5, 0x062100,2, 0x06210c,2, 0x062118,1, 0x062120,1, 0x062180,10, 0x0621b0,2, 0x0621c0,2, 0x0621d0,5, 0x062200,3, 0x062210,3, 0x062280,4, 0x063600,5, 0x063620,14, 0x063660,5, 0x063684,1, 0x06368c,10, 0x063700,1, 0x063800,5, 0x063820,12, 0x063860,5, 0x063884,1, 0x06388c,10, 0x063904,1, 0x06390c,5, 0x063940,1, 0x063950,2, 0x0639fc,1, 0x064000,5, 0x064020,1, 0x064030,1, 0x064040,1, 0x064050,1, 0x064060,1, 0x064070,1, 0x064080,1, 0x064090,1, 0x0640a0,1, 0x0640b0,1, 0x0640c0,1, 0x0640d0,1, 0x0640e0,1, 0x0640f0,1, 0x064100,1, 0x064110,1, 0x064120,1, 0x064130,1, 0x064140,1, 0x064150,1, 0x064160,1, 0x064170,1, 0x064180,1, 0x064190,1, 0x0641a0,1, 0x0641b0,1, 0x0641c0,1, 0x0641d0,1, 0x0641e0,1, 0x0641f0,1, 0x064200,1, 0x064210,1, 0x064220,1, 0x064230,1, 0x064240,1, 0x064250,1, 0x064260,1, 0x064270,1, 0x064280,1, 0x064290,1, 0x0642a0,1, 0x0642b0,1, 0x0642c0,1, 0x0642d0,1, 0x0642e0,1, 0x0642f0,1, 0x064300,1, 0x064310,1, 0x064320,1, 0x064330,1, 0x064340,1, 0x064350,1, 0x064360,1, 0x064370,1, 0x064380,1, 0x064390,1, 0x0643a0,1, 0x0643b0,1, 0x0643c0,1, 0x0643d0,1, 0x0643e0,1, 0x0643f0,1, 0x064400,1, 0x064410,1, 0x064420,1, 0x064430,1, 0x064440,1, 0x064450,1, 0x064460,1, 0x064470,1, 0x064480,1, 0x064490,1, 0x0644a0,1, 0x0644b0,1, 0x0644c0,1, 0x0644d0,1, 0x0644e0,1, 0x0644f0,1, 0x064500,1, 0x064510,1, 0x064520,1, 0x064530,1, 0x064540,1, 0x064550,1, 0x064560,1, 0x064570,1, 0x064580,1, 0x064590,1, 0x0645a0,1, 0x0645b0,1, 0x0645c0,1, 0x0645d0,1, 0x0645e0,1, 0x0645f0,1, 0x064600,1, 0x064610,1, 0x064620,1, 0x064630,1, 0x064640,1, 0x064650,1, 0x064660,1, 0x064670,1, 0x064680,1, 0x064690,1, 0x0646a0,1, 0x0646b0,1, 0x0646c0,1, 0x0646d0,1, 0x0646e0,1, 0x0646f0,1, 0x064700,1, 0x064710,1, 0x064720,1, 0x064730,1, 0x064740,1, 0x064750,1, 0x064760,1, 0x064770,1, 0x064780,1, 0x064790,1, 0x0647a0,1, 0x0647b0,1, 0x0647c0,1, 0x0647d0,1, 0x0647e0,1, 0x0647f0,1, 0x064800,1, 0x064810,1, 0x064820,1, 0x064830,1, 0x064840,1, 0x064850,1, 0x064860,1, 0x064870,1, 0x064880,1, 0x064890,1, 0x0648a0,1, 0x0648b0,1, 0x0648c0,1, 0x0648d0,1, 0x0648e0,1, 0x0648f0,1, 0x064900,1, 0x064910,1, 0x064920,1, 0x064930,1, 0x064940,1, 0x064950,1, 0x064960,1, 0x064970,1, 0x064980,1, 0x064990,1, 0x0649a0,1, 0x0649b0,1, 0x0649c0,1, 0x0649d0,1, 0x0649e0,1, 0x0649f0,1, 0x064a00,1, 0x064a10,1, 0x064a20,1, 0x064a30,1, 0x064a40,1, 0x064a50,1, 0x064a60,1, 0x064a70,1, 0x064a80,1, 0x064a90,1, 0x064aa0,1, 0x064ab0,1, 0x064ac0,1, 0x064ad0,1, 0x064ae0,1, 0x064af0,1, 0x064b00,1, 0x064b10,1, 0x064b20,1, 0x064b30,1, 0x064b40,1, 0x064b50,1, 0x064b60,1, 0x064b70,1, 0x064b80,1, 0x064b90,1, 0x064ba0,1, 0x064bb0,1, 0x064bc0,1, 0x064bd0,1, 0x064be0,1, 0x064bf0,1, 0x064c00,1, 0x064c10,1, 0x064c20,1, 0x064c30,1, 0x064c40,1, 0x064c50,1, 0x064c60,1, 0x064c70,1, 0x064c80,1, 0x064c90,1, 0x064ca0,1, 0x064cb0,1, 0x064cc0,1, 0x064cd0,1, 0x064ce0,1, 0x064cf0,1, 0x064d00,1, 0x064d10,1, 0x064d20,1, 0x064d30,1, 0x064d40,1, 0x064d50,1, 0x064d60,1, 0x064d70,1, 0x064d80,1, 0x064d90,1, 0x064da0,1, 0x064db0,1, 0x064dc0,1, 0x064dd0,1, 0x064de0,1, 0x064df0,1, 0x064e00,1, 0x064e10,1, 0x064e20,1, 0x064e30,1, 0x064e40,1, 0x064e50,1, 0x064e60,1, 0x064e70,1, 0x064e80,1, 0x064e90,1, 0x064ea0,1, 0x064eb0,1, 0x064ec0,1, 0x064ed0,1, 0x064ee0,1, 0x064ef0,1, 0x064f00,1, 0x064f10,1, 0x064f20,1, 0x064f30,1, 0x064f40,1, 0x064f50,1, 0x064f60,1, 0x064f70,1, 0x064f80,1, 0x064f90,1, 0x064fa0,1, 0x064fb0,1, 0x064fc0,1, 0x064fd0,1, 0x064fe0,1, 0x064ff0,1, 0x065000,8, 0x066000,5, 0x066020,1, 0x066030,1, 0x066040,1, 0x066050,1, 0x066060,1, 0x066070,1, 0x066080,1, 0x066090,1, 0x0660a0,1, 0x0660b0,1, 0x0660c0,1, 0x0660d0,1, 0x0660e0,1, 0x0660f0,1, 0x066100,1, 0x066110,1, 0x066120,1, 0x066130,1, 0x066140,1, 0x066150,1, 0x066160,1, 0x066170,1, 0x066180,1, 0x066190,1, 0x0661a0,1, 0x0661b0,1, 0x0661c0,1, 0x0661d0,1, 0x0661e0,1, 0x0661f0,1, 0x066200,1, 0x066210,1, 0x066220,1, 0x066230,1, 0x066240,1, 0x066250,1, 0x066260,1, 0x066270,1, 0x066280,1, 0x066290,1, 0x0662a0,1, 0x0662b0,1, 0x0662c0,1, 0x0662d0,1, 0x0662e0,1, 0x0662f0,1, 0x066300,1, 0x066310,1, 0x066320,1, 0x066330,1, 0x066340,1, 0x066350,1, 0x066360,1, 0x066370,1, 0x066380,1, 0x066390,1, 0x0663a0,1, 0x0663b0,1, 0x0663c0,1, 0x0663d0,1, 0x0663e0,1, 0x0663f0,1, 0x066400,1, 0x066410,1, 0x066420,1, 0x066430,1, 0x066440,1, 0x066450,1, 0x066460,1, 0x066470,1, 0x066480,1, 0x066490,1, 0x0664a0,1, 0x0664b0,1, 0x0664c0,1, 0x0664d0,1, 0x0664e0,1, 0x0664f0,1, 0x066500,1, 0x066510,1, 0x066520,1, 0x066530,1, 0x066540,1, 0x066550,1, 0x066560,1, 0x066570,1, 0x066580,1, 0x066590,1, 0x0665a0,1, 0x0665b0,1, 0x0665c0,1, 0x0665d0,1, 0x0665e0,1, 0x0665f0,1, 0x066600,1, 0x066610,1, 0x066620,1, 0x066630,1, 0x066640,1, 0x066650,1, 0x066660,1, 0x066670,1, 0x066680,1, 0x066690,1, 0x0666a0,1, 0x0666b0,1, 0x0666c0,1, 0x0666d0,1, 0x0666e0,1, 0x0666f0,1, 0x066700,1, 0x066710,1, 0x066720,1, 0x066730,1, 0x066740,1, 0x066750,1, 0x066760,1, 0x066770,1, 0x066780,1, 0x066790,1, 0x0667a0,1, 0x0667b0,1, 0x0667c0,1, 0x0667d0,1, 0x0667e0,1, 0x0667f0,1, 0x066800,1, 0x066810,1, 0x066820,1, 0x066830,1, 0x066840,1, 0x066850,1, 0x066860,1, 0x066870,1, 0x066880,1, 0x066890,1, 0x0668a0,1, 0x0668b0,1, 0x0668c0,1, 0x0668d0,1, 0x0668e0,1, 0x0668f0,1, 0x066900,1, 0x066910,1, 0x066920,1, 0x066930,1, 0x066940,1, 0x066950,1, 0x066960,1, 0x066970,1, 0x066980,1, 0x066990,1, 0x0669a0,1, 0x0669b0,1, 0x0669c0,1, 0x0669d0,1, 0x0669e0,1, 0x0669f0,1, 0x066a00,1, 0x066a10,1, 0x066a20,1, 0x066a30,1, 0x066a40,1, 0x066a50,1, 0x066a60,1, 0x066a70,1, 0x066a80,1, 0x066a90,1, 0x066aa0,1, 0x066ab0,1, 0x066ac0,1, 0x066ad0,1, 0x066ae0,1, 0x066af0,1, 0x066b00,1, 0x066b10,1, 0x066b20,1, 0x066b30,1, 0x066b40,1, 0x066b50,1, 0x066b60,1, 0x066b70,1, 0x066b80,1, 0x066b90,1, 0x066ba0,1, 0x066bb0,1, 0x066bc0,1, 0x066bd0,1, 0x066be0,1, 0x066bf0,1, 0x066c00,1, 0x066c10,1, 0x066c20,1, 0x066c30,1, 0x066c40,1, 0x066c50,1, 0x066c60,1, 0x066c70,1, 0x066c80,1, 0x066c90,1, 0x066ca0,1, 0x066cb0,1, 0x066cc0,1, 0x066cd0,1, 0x066ce0,1, 0x066cf0,1, 0x066d00,1, 0x066d10,1, 0x066d20,1, 0x066d30,1, 0x066d40,1, 0x066d50,1, 0x066d60,1, 0x066d70,1, 0x066d80,1, 0x066d90,1, 0x066da0,1, 0x066db0,1, 0x066dc0,1, 0x066dd0,1, 0x066de0,1, 0x066df0,1, 0x066e00,1, 0x066e10,1, 0x066e20,1, 0x066e30,1, 0x066e40,1, 0x066e50,1, 0x066e60,1, 0x066e70,1, 0x066e80,1, 0x066e90,1, 0x066ea0,1, 0x066eb0,1, 0x066ec0,1, 0x066ed0,1, 0x066ee0,1, 0x066ef0,1, 0x066f00,1, 0x066f10,1, 0x066f20,1, 0x066f30,1, 0x066f40,1, 0x066f50,1, 0x066f60,1, 0x066f70,1, 0x066f80,1, 0x066f90,1, 0x066fa0,1, 0x066fb0,1, 0x066fc0,1, 0x066fd0,1, 0x066fe0,1, 0x066ff0,1, 0x067000,16, 0x067100,8, 0x067124,7, 0x067144,7, 0x067200,3, 0x0677f8,2, 0x06f008,2, 0x06f014,11, 0x06f044,1, 0x06f04c,3, 0x06f05c,1, 0x06f064,1, 0x06f07c,1, 0x06f500,2, 0x06f518,1, 0x06f520,3, 0x06f540,6, 0x06f580,10, 0x06f800,2, 0x070000,4, 0x070020,25, 0x070088,8, 0x070100,6, 0x070120,7, 0x070140,4, 0x070200,24, 0x070280,1, 0x070288,4, 0x070300,37, 0x070b00,14, 0x070b40,14, 0x070b84,1, 0x070c00,1, 0x070c10,3, 0x070c3c,3, 0x070c50,8, 0x071000,7, 0x072000,7, 0x073000,114, 0x0731d0,3, 0x0731e0,3, 0x0731f0,3, 0x073200,2, 0x073210,7, 0x073230,1, 0x073240,48, 0x073338,15, 0x074000,8, 0x074044,3, 0x074060,4, 0x074080,8, 0x075000,1024, 0x07f000,2, 0x07f028,2, 0x07f050,2, 0x07f078,2, 0x07f0a0,23, 0x07f1ac,1, 0x07f1d8,4, 0x07f200,6, 0x07f220,6, 0x07f240,6, 0x07f260,6, 0x07f280,3, 0x07fa00,6, 0x07fb00,7, 0x07fb20,7, 0x07fb40,7, 0x07fb60,1, 0x07fb70,1, 0x07fb80,7, 0x07fc00,3, 0x080000,32771, 0x0a0010,2, 0x0a001c,6, 0x0a0038,2, 0x0a0048,2, 0x0a0058,2, 0x0a0068,31, 0x0a00f0,1, 0x0a00fc,35, 0x0a01e0,1, 0x0a01e8,5, 0x0a0200,3, 0x0a0210,2, 0x0a021c,6, 0x0a0238,2, 0x0a0248,2, 0x0a0258,2, 0x0a0268,31, 0x0a02f0,1, 0x0a02fc,35, 0x0a03e0,1, 0x0a03e8,5, 0x0a0400,3, 0x0a0410,2, 0x0a041c,6, 0x0a0438,2, 0x0a0448,2, 0x0a0458,2, 0x0a0468,31, 0x0a04f0,1, 0x0a04fc,35, 0x0a05e0,1, 0x0a05e8,5, 0x0a0600,3, 0x0a0610,2, 0x0a061c,6, 0x0a0638,2, 0x0a0648,2, 0x0a0658,2, 0x0a0668,31, 0x0a06f0,1, 0x0a06fc,35, 0x0a07e0,1, 0x0a07e8,5, 0x0a0800,3, 0x0a0810,2, 0x0a081c,6, 0x0a0838,2, 0x0a0848,2, 0x0a0858,2, 0x0a0868,31, 0x0a08f0,1, 0x0a08fc,35, 0x0a09e0,1, 0x0a09e8,5, 0x0a0a00,3, 0x0a0a10,2, 0x0a0a1c,6, 0x0a0a38,2, 0x0a0a48,2, 0x0a0a58,2, 0x0a0a68,31, 0x0a0af0,1, 0x0a0afc,35, 0x0a0be0,1, 0x0a0be8,5, 0x0a0c00,3, 0x0a0c10,2, 0x0a0c1c,6, 0x0a0c38,2, 0x0a0c48,2, 0x0a0c58,2, 0x0a0c68,31, 0x0a0cf0,1, 0x0a0cfc,35, 0x0a0de0,1, 0x0a0de8,5, 0x0a0e00,3, 0x0a0e10,2, 0x0a0e1c,6, 0x0a0e38,2, 0x0a0e48,2, 0x0a0e58,2, 0x0a0e68,31, 0x0a0ef0,1, 0x0a0efc,35, 0x0a0fe0,1, 0x0a0fe8,5, 0x0a1000,128, 0x0a1208,2, 0x0a1218,2, 0x0a1404,17, 0x0a1484,1, 0x0a14a0,17, 0x0a1504,1, 0x0a1540,17, 0x0a15e0,8, 0x0a1604,3, 0x0a1700,33, 0x0a1800,6, 0x0a1820,10, 0x0a1870,1, 0x0a1c00,2, 0x0a1c28,2, 0x0a1c50,2, 0x0a1c78,2, 0x0a1ca0,7, 0x0a1dac,1, 0x0a1dd8,4, 0x0a1e00,6, 0x0a1e20,6, 0x0a1e40,6, 0x0a1e60,6, 0x0a1e80,3, 0x0a2010,2, 0x0a201c,1, 0x0a2028,2, 0x0a2040,8, 0x0a2064,5, 0x0a20d0,8, 0x0a20f4,22, 0x0a2150,2, 0x0a2160,8, 0x0a2184,3, 0x0a21a0,8, 0x0a2200,4, 0x0a2218,50, 0x0a2300,8, 0x0a2330,3, 0x0a2600,1, 0x0a2800,6, 0x0a2820,6, 0x0a2840,6, 0x0a2860,6, 0x0a2880,3, 0x0a2900,6, 0x0a2920,6, 0x0a2940,3, 0x0a2980,6, 0x0a29a0,6, 0x0a29c0,6, 0x0a29e0,3, 0x0a2a00,6, 0x0a2a20,3, 0x0a2a30,1, 0x0a3120,6, 0x0a3140,6, 0x0a3160,6, 0x0a3180,6, 0x0a31a0,6, 0x0a31c0,6, 0x0a3604,2, 0x0a3700,16, 0x0a3a00,1, 0x0a3b00,8, 0x0c1000,1, 0x0c1028,1, 0x0c1050,1, 0x0c1078,1, 0x0c10a0,9, 0x0c11ac,1, 0x0c11d8,4, 0x0c1200,6, 0x0c1220,6, 0x0c1240,3, 0x0c1400,6, 0x0c1420,3, 0x0c1500,13, 0x0c1540,3, 0x0c2000,14, 0x0c2070,3, 0x0c2080,6, 0x0c2100,9, 0x0c2204,1, 0x0c220c,6, 0x0c2240,13, 0x0c2280,16, 0x0c2400,8, 0x0c2424,15, 0x0c2464,15, 0x0c24a4,15, 0x0c24e4,23, 0x0c2544,6, 0x0c2580,10, 0x0c25ac,1, 0x0c25b4,5, 0x0c25cc,1, 0x0c25d4,5, 0x0c25ec,1, 0x0c25f4,13, 0x0c2680,7, 0x0c26a0,5, 0x0c26c0,5, 0x0c26e0,4, 0x0c2800,19, 0x0c2850,10, 0x0c2880,19, 0x0c28d0,10, 0x0c2900,19, 0x0c2950,10, 0x0c2980,19, 0x0c29d0,10, 0x0c2a00,19, 0x0c2a50,10, 0x0c2a80,19, 0x0c2ad0,10, 0x0c2b00,19, 0x0c2b50,10, 0x0c2b80,19, 0x0c2bd0,10, 0x0c2c00,19, 0x0c2c60,6, 0x0c2c84,1, 0x0c2c94,8, 0x0c2cb8,9, 0x0c2ce0,4, 0x0c3000,29, 0x0c3078,4, 0x0c3090,2, 0x0c30a0,2, 0x0c30b0,3, 0x0c30c0,11, 0x0c3100,14, 0x0c3140,14, 0x0c3180,61, 0x0c3278,4, 0x0c3290,2, 0x0c32a0,2, 0x0c32b0,3, 0x0c32c0,11, 0x0c3300,14, 0x0c3340,14, 0x0c3380,61, 0x0c3478,4, 0x0c3490,2, 0x0c34a0,2, 0x0c34b0,3, 0x0c34c0,11, 0x0c3500,14, 0x0c3540,14, 0x0c3580,61, 0x0c3678,4, 0x0c3690,2, 0x0c36a0,2, 0x0c36b0,3, 0x0c36c0,11, 0x0c3700,14, 0x0c3740,14, 0x0c3780,62, 0x0c387c,1, 0x0c3a00,8, 0x0c3a24,15, 0x0c3a64,23, 0x0c3ac4,6, 0x0c3b00,4, 0x0c3b20,3, 0x0c3c00,6, 0x0c3c40,14, 0x0c3c80,9, 0x0c3d00,9, 0x0c3d2c,1, 0x0c3d40,3, 0x0c3d60,1, 0x0c3d80,3, 0x0c3e00,2, 0x0c3e0c,1, 0x0c3e14,5, 0x0c3e2c,1, 0x0c3e34,5, 0x0c3e4c,1, 0x0c3e54,5, 0x0c3e6c,1, 0x0c3e74,5, 0x0c3e8c,1, 0x0c3e94,5, 0x0c3eac,1, 0x0c3eb4,3, 0x0c8000,25, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c8,6, 0x0c8180,6, 0x0ca000,3, 0x0ca010,21, 0x0ca068,14, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca100,12, 0x0ca140,2, 0x0ca160,1, 0x0ca184,1, 0x0ca194,2, 0x0ca1b8,3, 0x0ca1d0,5, 0x0ca1e8,3, 0x0ca1f8,8, 0x0ca220,6, 0x0ca240,3, 0x0ca280,6, 0x0ca2a0,6, 0x0ca2c0,3, 0x0ca300,6, 0x0ca320,6, 0x0ca340,6, 0x0ca360,6, 0x0ca380,6, 0x0ca3a0,6, 0x0ca3c0,6, 0x0ca3e0,6, 0x0ca400,6, 0x0ca6fc,1, 0x0ca800,72, 0x0cb000,4, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,8, 0x0cb1f0,6, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,1, 0x0cb400,5, 0x0cb59c,1, 0x0cb5ac,9, 0x0d0000,5, 0x0d0020,4, 0x0d0034,17, 0x0d0080,1, 0x0d00a0,6, 0x0d0100,5, 0x0d0120,4, 0x0d0134,17, 0x0d0180,1, 0x0d01a0,6, 0x0d0200,5, 0x0d0220,4, 0x0d0234,17, 0x0d0280,1, 0x0d02a0,6, 0x0d0300,5, 0x0d0320,4, 0x0d0334,17, 0x0d0380,1, 0x0d03a0,6, 0x0d0400,6, 0x0d0440,6, 0x0d0480,3, 0x0d04c0,3, 0x0d0500,6, 0x0d051c,7, 0x0d0540,1, 0x0d0c00,13, 0x0d0c40,12, 0x0d0c80,13, 0x0d0cc0,12, 0x0d0d00,6, 0x0d0d20,6, 0x0d0e40,11, 0x0d0e80,6, 0x0d0ea0,6, 0x0d1000,2, 0x0d1010,5, 0x0d1040,3, 0x0d1050,3, 0x0d1060,32, 0x0d1100,8, 0x0d1140,8, 0x0d1180,3, 0x0d1190,2, 0x0d119c,9, 0x0d1218,9, 0x0d1240,3, 0x0d1250,6, 0x0d1280,1, 0x0d1288,6, 0x0d12a4,1, 0x0d12c0,1, 0x0d12c8,6, 0x0d12e4,1, 0x0d1400,8, 0x0d1424,2, 0x0d1800,24, 0x0d1864,5, 0x0d1880,8, 0x0d1900,13, 0x0d1980,4, 0x0d19a0,6, 0x0d19d0,2, 0x0d19dc,1, 0x0d1a10,2, 0x0d1a1c,1, 0x0d1a40,1, 0x0d1a60,1, 0x0d1a68,23, 0x0d1ac8,6, 0x0d1b00,17, 0x0d1b48,6, 0x0d1b80,12, 0x0d1c00,6, 0x0d1c20,6, 0x0d1c40,6, 0x0d1c60,3, 0x0d1d00,6, 0x0d1d20,6, 0x0d1d40,3, 0x0d1d80,6, 0x0d1da0,6, 0x0d1dc0,3, 0x0d4000,5, 0x0d4038,1, 0x0d4044,1, 0x0d4050,2, 0x0d4100,6, 0x0d8000,6, 0x0d8020,3, 0x0d8030,8, 0x0d8100,6, 0x0d8120,10, 0x0d8150,8, 0x0d8800,6, 0x0d8820,3, 0x0d8830,4, 0x0d8858,2, 0x0d8864,1, 0x0d8874,3, 0x0d8898,2, 0x0d88a4,1, 0x0d88b4,3, 0x0d9000,6, 0x0d9020,6, 0x0d9040,3, 0x0d9080,14, 0x0d90bc,1, 0x0d90c4,13, 0x0d90fc,5, 0x0d9120,4, 0x0d9140,3, 0x0d9180,3, 0x0d9190,3, 0x0d91a0,1, 0x0d91e0,6, 0x0d9200,20, 0x0d925c,30, 0x0d9300,24, 0x0d9380,2, 0x0d93a0,1, 0x0d93c0,11, 0x0d9404,3, 0x0d9420,11, 0x0d9460,3, 0x0d9480,6, 0x0d9500,6, 0x0d9520,6, 0x0d9600,17, 0x0d9800,410, 0x0da100,4, 0x0da120,4, 0x0da140,3, 0x0da180,3, 0x0da190,3, 0x0da1a0,1, 0x0da1e0,6, 0x0da200,20, 0x0da25c,30, 0x0da300,24, 0x0da380,2, 0x0da3a0,1, 0x0da3c0,11, 0x0da404,3, 0x0da420,11, 0x0da460,3, 0x0da480,6, 0x0da500,6, 0x0da800,410, 0x0db800,5, 0x0db818,1, 0x0db854,6, 0x0db880,2, 0x0db8a4,1, 0x0db8ac,2, 0x0dba00,28, 0x0dba7c,13, 0x0dbab4,1, 0x0dbabc,10, 0x0dbb04,1, 0x0dbb0c,5, 0x0dbb24,1, 0x0dbb34,9, 0x0dbb60,6, 0x0dbb80,22, 0x0dbbe0,3, 0x0dbbf0,2, 0x0dbc00,5, 0x0dbc18,1, 0x0dbc54,6, 0x0dbc80,2, 0x0dbca4,1, 0x0dbcac,2, 0x0dbe00,28, 0x0dbe7c,13, 0x0dbeb4,1, 0x0dbebc,10, 0x0dbf04,1, 0x0dbf0c,5, 0x0dbf24,1, 0x0dbf34,9, 0x0dbf60,6, 0x0dbf80,22, 0x0dbfe0,3, 0x0dbff0,2, 0x0dc000,1, 0x0e8000,1, 0x0e8008,2, 0x0e8058,3, 0x0e8120,2, 0x0e8130,2, 0x0e8140,1, 0x0e8184,11, 0x0e81c4,3, 0x0e81dc,3, 0x0e8280,13, 0x0e8400,16, 0x0e8444,7, 0x0e8500,4, 0x0e8804,1, 0x0e8824,7, 0x0e8844,1, 0x0e884c,27, 0x0e88d4,2, 0x0e8c00,1, 0x0e8c08,3, 0x0e8c80,20, 0x0e8d00,3, 0x0e8d20,6, 0x0e8d80,4, 0x0e8da0,6, 0x0e8dbc,7, 0x0e8e00,21, 0x0e8e80,6, 0x0e8ea0,6, 0x0e8ec0,3, 0x0e9000,35, 0x0e9090,2, 0x0e90f0,1, 0x0e90f8,1, 0x0e9100,1, 0x0e9108,5, 0x0e9138,2, 0x0e9144,1, 0x0e9160,13, 0x0e91a0,3, 0x0e9200,2, 0x0e9214,11, 0x0e9244,7, 0x0e92b8,2, 0x0e92c4,7, 0x0e9310,1, 0x0e9340,4, 0x0e9380,7, 0x0e9400,14, 0x0e9440,10, 0x0e947c,1, 0x0e9700,2, 0x0e9720,8, 0x0e9800,3, 0x0e9810,3, 0x0e9820,3, 0x0e9830,3, 0x0e9840,3, 0x0e9850,3, 0x0e9860,3, 0x0e9870,3, 0x0e9880,3, 0x0e9890,3, 0x0e98a0,3, 0x0e98b0,3, 0x0e98c0,3, 0x0e98d0,3, 0x0e98e0,3, 0x0e98f0,3, 0x0e9900,68, 0x0e9c00,36, 0x0e9d00,3, 0x0e9d40,2, 0x0e9d4c,1, 0x0e9d84,1, 0x0e9d90,4, 0x0e9e00,6, 0x0e9e20,6, 0x0e9e40,6, 0x0e9e60,3, 0x0e9e80,6, 0x0e9ea0,3, 0x0e9f80,13, 0x0e9fc0,2, 0x0ea000,1, 0x0ea028,1, 0x0ea050,1, 0x0ea078,1, 0x0ea0a0,3, 0x0ea1ac,1, 0x0ea1d8,4, 0x0ea200,6, 0x0ea220,6, 0x0ea240,3, 0x0ea400,6, 0x0ea420,2, 0x0ea430,2, 0x0ea440,2, 0x0ea450,6, 0x0ea470,2, 0x0ea490,24, 0x0ea520,8, 0x0ea604,1, 0x0ea6f0,72, 0x0f0000,3, 0x0f0014,10, 0x0f0044,15, 0x0f00f0,2, 0x0f0100,1, 0x0f0108,3, 0x0f0118,1, 0x0f0130,4, 0x0f0180,3, 0x0f0190,2, 0x0f01a0,3, 0x0f01c0,2, 0x0f01d0,10, 0x0f0200,61, 0x0f0404,9, 0x0f0440,12, 0x0f0480,5, 0x0f04b8,18, 0x0f05a0,1, 0x0f05c0,8, 0x0f0800,17, 0x0f0850,9, 0x0f0880,9, 0x0f08b0,9, 0x0f08e0,9, 0x0f0920,4, 0x0f093c,5, 0x0f095c,5, 0x0f097c,5, 0x0f099c,5, 0x0f09bc,5, 0x0f09dc,1, 0x0f0a90,2, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,3, 0x0f1010,4, 0x0f1080,10, 0x0f10c0,1, 0x0f10e0,2, 0x0f10ec,1, 0x0f10f4,3, 0x0f1400,6, 0x0f1420,6, 0x0f1440,6, 0x0f1460,6, 0x0f1480,6, 0x0f14a0,6, 0x0f14c0,6, 0x0f14e0,6, 0x0f1500,6, 0x0f1520,6, 0x0f1540,6, 0x0f1560,6, 0x0f1580,6, 0x0f15a0,6, 0x0f15c0,6, 0x0f15e0,6, 0x0f1600,6, 0x0f1620,3, 0x0f1800,3, 0x0f2000,2, 0x0f200c,3, 0x0f2020,8, 0x0f2060,6, 0x0f2080,2, 0x0f208c,3, 0x0f20a0,8, 0x0f20e0,6, 0x0f2100,2, 0x0f210c,3, 0x0f2120,8, 0x0f2160,6, 0x0f2180,2, 0x0f218c,3, 0x0f21a0,8, 0x0f21e0,6, 0x0f2200,2, 0x0f220c,3, 0x0f2220,8, 0x0f2260,6, 0x0f2280,2, 0x0f228c,3, 0x0f22a0,8, 0x0f22e0,6, 0x0f2300,2, 0x0f230c,3, 0x0f2320,8, 0x0f2360,6, 0x0f2380,2, 0x0f238c,3, 0x0f23a0,8, 0x0f23e0,6, 0x0f2400,2, 0x0f240c,3, 0x0f2420,8, 0x0f2460,6, 0x0f2480,2, 0x0f248c,3, 0x0f24a0,8, 0x0f24e0,6, 0x0f2500,2, 0x0f250c,3, 0x0f2520,8, 0x0f2560,6, 0x0f2580,2, 0x0f258c,3, 0x0f25a0,8, 0x0f25e0,6, 0x0f2600,2, 0x0f260c,3, 0x0f2620,8, 0x0f2660,6, 0x0f2680,2, 0x0f268c,3, 0x0f26a0,8, 0x0f26e0,6, 0x0f2700,2, 0x0f270c,3, 0x0f2720,8, 0x0f2760,6, 0x0f2780,2, 0x0f278c,3, 0x0f27a0,8, 0x0f27e0,6, 0x0f2800,2, 0x0f280c,3, 0x0f2820,8, 0x0f2860,6, 0x0f2880,2, 0x0f288c,3, 0x0f28a0,8, 0x0f28e0,6, 0x0f2900,2, 0x0f290c,3, 0x0f2920,8, 0x0f2960,6, 0x0f2980,2, 0x0f298c,3, 0x0f29a0,8, 0x0f29e0,6, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f8000,9, 0x0f8100,6, 0x0f8120,6, 0x0f8140,3, 0x0f8180,10, 0x0f81c0,3, 0x0f81d0,2, 0x0f8200,9, 0x0f8300,6, 0x0f8320,6, 0x0f8340,3, 0x0f8380,10, 0x0f83c0,3, 0x0f83d0,2, 0x0f8400,9, 0x0f8500,6, 0x0f8520,6, 0x0f8540,3, 0x0f8580,10, 0x0f85c0,3, 0x0f85d0,2, 0x0f8600,9, 0x0f8700,6, 0x0f8720,6, 0x0f8740,3, 0x0f8780,10, 0x0f87c0,3, 0x0f87d0,2, 0x0f8800,9, 0x0f8900,6, 0x0f8920,6, 0x0f8940,3, 0x0f8980,10, 0x0f89c0,3, 0x0f89d0,2, 0x0f8a00,9, 0x0f8b00,6, 0x0f8b20,6, 0x0f8b40,3, 0x0f8b80,10, 0x0f8bc0,3, 0x0f8bd0,2, 0x0f8c00,9, 0x0f8d00,6, 0x0f8d20,6, 0x0f8d40,3, 0x0f8d80,10, 0x0f8dc0,3, 0x0f8dd0,2, 0x0f8e00,9, 0x0f8f00,6, 0x0f8f20,6, 0x0f8f40,3, 0x0f8f80,10, 0x0f8fc0,3, 0x0f8fd0,2, 0x0f9000,9, 0x0f9100,6, 0x0f9120,6, 0x0f9140,3, 0x0f9180,10, 0x0f91c0,3, 0x0f91d0,2, 0x0f9200,9, 0x0f9300,6, 0x0f9320,6, 0x0f9340,3, 0x0f9380,10, 0x0f93c0,3, 0x0f93d0,2, 0x0f9400,9, 0x0f9500,6, 0x0f9520,6, 0x0f9540,3, 0x0f9580,10, 0x0f95c0,3, 0x0f95d0,2, 0x0f9600,9, 0x0f9700,6, 0x0f9720,6, 0x0f9740,3, 0x0f9780,10, 0x0f97c0,3, 0x0f97d0,2, 0x0f9800,9, 0x0f9900,6, 0x0f9920,6, 0x0f9940,3, 0x0f9980,10, 0x0f99c0,3, 0x0f99d0,2, 0x0f9a00,9, 0x0f9b00,6, 0x0f9b20,6, 0x0f9b40,3, 0x0f9b80,10, 0x0f9bc0,3, 0x0f9bd0,2, 0x0f9c00,9, 0x0f9d00,6, 0x0f9d20,6, 0x0f9d40,3, 0x0f9d80,10, 0x0f9dc0,3, 0x0f9dd0,2, 0x0f9e00,9, 0x0f9f00,6, 0x0f9f20,6, 0x0f9f40,3, 0x0f9f80,10, 0x0f9fc0,3, 0x0f9fd0,2, 0x0fa000,9, 0x0fa100,6, 0x0fa120,6, 0x0fa140,3, 0x0fa180,10, 0x0fa1c0,3, 0x0fa1d0,2, 0x0fa200,9, 0x0fa300,6, 0x0fa320,6, 0x0fa340,3, 0x0fa380,10, 0x0fa3c0,3, 0x0fa3d0,2, 0x0fa400,9, 0x0fa480,10, 0x0fa4c0,1, 0x0fa4e0,2, 0x0fa4ec,1, 0x0fa4f4,9, 0x0fa520,6, 0x0fa540,3, 0x0fa580,6, 0x0fa5c0,3, 0x0fa5d0,6, 0x0fa600,9, 0x0fa680,10, 0x0fa6c0,1, 0x0fa6e0,2, 0x0fa6ec,1, 0x0fa6f4,9, 0x0fa720,6, 0x0fa740,3, 0x0fa780,6, 0x0fa7c0,3, 0x0fa7d0,6, 0x0fa800,9, 0x0fa880,10, 0x0fa8c0,1, 0x0fa8e0,2, 0x0fa8ec,1, 0x0fa8f4,9, 0x0fa920,6, 0x0fa940,3, 0x0fa980,8, 0x0fa9c0,3, 0x0fa9d0,2, 0x0faa00,9, 0x0faa80,10, 0x0faac0,1, 0x0faae0,2, 0x0faaec,1, 0x0faaf4,9, 0x0fab20,6, 0x0fab40,3, 0x0fab80,8, 0x0fabc0,3, 0x0fabd0,2, 0x0fac00,9, 0x0fac80,10, 0x0facc0,1, 0x0face0,2, 0x0facec,1, 0x0facf4,9, 0x0fad20,6, 0x0fad40,3, 0x0fad80,10, 0x0fadc0,3, 0x0fadd0,2, 0x0fade8,2, 0x0fae00,9, 0x0fae80,10, 0x0faec0,1, 0x0faee0,2, 0x0faeec,1, 0x0faef4,9, 0x0faf20,6, 0x0faf40,3, 0x0faf80,12, 0x0fafc0,3, 0x0fafd0,2, 0x100000,6, 0x100100,30, 0x100180,5, 0x100200,6, 0x100300,30, 0x100380,5, 0x100400,11, 0x100430,29, 0x100500,2, 0x10050c,4, 0x100520,5, 0x10053c,1, 0x100544,1, 0x10054c,5, 0x100564,3, 0x100600,4, 0x100620,6, 0x100640,6, 0x100660,6, 0x100680,6, 0x1006a0,4, 0x100800,6, 0x100820,6, 0x100840,6, 0x100860,3, 0x100884,14, 0x1008c0,16, 0x100c00,20, 0x100c58,4, 0x100c70,2, 0x100c7c,7, 0x100d00,4, 0x100d30,2, 0x100d3c,12, 0x100d70,2, 0x100d80,3, 0x100e00,32, 0x101000,6, 0x101100,30, 0x101180,5, 0x101200,6, 0x101300,30, 0x101380,5, 0x101400,11, 0x101430,29, 0x101500,2, 0x10150c,4, 0x101520,5, 0x10153c,1, 0x101544,1, 0x10154c,5, 0x101564,3, 0x101600,4, 0x101620,6, 0x101640,6, 0x101660,6, 0x101680,6, 0x1016a0,4, 0x101800,6, 0x101820,6, 0x101840,6, 0x101860,3, 0x101884,14, 0x1018c0,16, 0x101c00,20, 0x101c58,4, 0x101c70,2, 0x101c7c,7, 0x101d00,4, 0x101d30,2, 0x101d3c,12, 0x101d70,2, 0x101d80,3, 0x101e00,32, 0x102000,6, 0x102100,30, 0x102180,5, 0x102200,6, 0x102300,30, 0x102380,5, 0x102400,11, 0x102430,29, 0x102500,2, 0x10250c,4, 0x102520,5, 0x10253c,1, 0x102544,1, 0x10254c,5, 0x102564,3, 0x102600,4, 0x102620,6, 0x102640,6, 0x102660,6, 0x102680,6, 0x1026a0,4, 0x102800,6, 0x102820,6, 0x102840,6, 0x102860,3, 0x102884,14, 0x1028c0,16, 0x102c00,20, 0x102c58,4, 0x102c70,2, 0x102c7c,7, 0x102d00,4, 0x102d30,2, 0x102d3c,12, 0x102d70,2, 0x102d80,3, 0x102e00,32, 0x103000,6, 0x103100,30, 0x103180,5, 0x103200,6, 0x103300,30, 0x103380,5, 0x103400,11, 0x103430,29, 0x103500,2, 0x10350c,4, 0x103520,5, 0x10353c,1, 0x103544,1, 0x10354c,5, 0x103564,3, 0x103600,4, 0x103620,6, 0x103640,6, 0x103660,6, 0x103680,6, 0x1036a0,4, 0x103800,6, 0x103820,6, 0x103840,6, 0x103860,3, 0x103884,14, 0x1038c0,16, 0x103c00,20, 0x103c58,4, 0x103c70,2, 0x103c7c,7, 0x103d00,4, 0x103d30,2, 0x103d3c,12, 0x103d70,2, 0x103d80,3, 0x103e00,32, 0x104000,6, 0x104100,30, 0x104180,5, 0x104200,6, 0x104300,30, 0x104380,5, 0x104400,11, 0x104430,29, 0x104500,2, 0x10450c,4, 0x104520,5, 0x10453c,1, 0x104544,1, 0x10454c,5, 0x104564,3, 0x104600,4, 0x104620,6, 0x104640,6, 0x104660,6, 0x104680,6, 0x1046a0,4, 0x104800,6, 0x104820,6, 0x104840,6, 0x104860,3, 0x104884,14, 0x1048c0,16, 0x104c00,20, 0x104c58,4, 0x104c70,2, 0x104c7c,7, 0x104d00,4, 0x104d30,2, 0x104d3c,12, 0x104d70,2, 0x104d80,3, 0x104e00,32, 0x105000,6, 0x105100,30, 0x105180,5, 0x105200,6, 0x105300,30, 0x105380,5, 0x105400,11, 0x105430,29, 0x105500,2, 0x10550c,4, 0x105520,5, 0x10553c,1, 0x105544,1, 0x10554c,5, 0x105564,3, 0x105600,4, 0x105620,6, 0x105640,6, 0x105660,6, 0x105680,6, 0x1056a0,4, 0x105800,6, 0x105820,6, 0x105840,6, 0x105860,3, 0x105884,14, 0x1058c0,16, 0x105c00,20, 0x105c58,4, 0x105c70,2, 0x105c7c,7, 0x105d00,4, 0x105d30,2, 0x105d3c,12, 0x105d70,2, 0x105d80,3, 0x105e00,32, 0x106000,6, 0x106100,30, 0x106180,5, 0x106200,6, 0x106300,30, 0x106380,5, 0x106400,11, 0x106430,29, 0x106500,2, 0x10650c,4, 0x106520,5, 0x10653c,1, 0x106544,1, 0x10654c,5, 0x106564,3, 0x106600,4, 0x106620,6, 0x106640,6, 0x106660,6, 0x106680,6, 0x1066a0,4, 0x106800,6, 0x106820,6, 0x106840,6, 0x106860,3, 0x106884,14, 0x1068c0,16, 0x106c00,20, 0x106c58,4, 0x106c70,2, 0x106c7c,7, 0x106d00,4, 0x106d30,2, 0x106d3c,12, 0x106d70,2, 0x106d80,3, 0x106e00,32, 0x107000,6, 0x107100,30, 0x107180,5, 0x107200,6, 0x107300,30, 0x107380,5, 0x107400,11, 0x107430,29, 0x107500,2, 0x10750c,4, 0x107520,5, 0x10753c,1, 0x107544,1, 0x10754c,5, 0x107564,3, 0x107600,4, 0x107620,6, 0x107640,6, 0x107660,6, 0x107680,6, 0x1076a0,4, 0x107800,6, 0x107820,6, 0x107840,6, 0x107860,3, 0x107884,14, 0x1078c0,16, 0x107c00,20, 0x107c58,4, 0x107c70,2, 0x107c7c,7, 0x107d00,4, 0x107d30,2, 0x107d3c,12, 0x107d70,2, 0x107d80,3, 0x107e00,32, 0x108000,6, 0x108100,30, 0x108180,5, 0x108200,6, 0x108300,30, 0x108380,5, 0x108400,11, 0x108430,29, 0x108500,2, 0x10850c,4, 0x108520,5, 0x10853c,1, 0x108544,1, 0x10854c,5, 0x108564,3, 0x108600,4, 0x108620,6, 0x108640,6, 0x108660,6, 0x108680,6, 0x1086a0,4, 0x108800,6, 0x108820,6, 0x108840,6, 0x108860,3, 0x108884,14, 0x1088c0,16, 0x108c00,20, 0x108c58,4, 0x108c70,2, 0x108c7c,7, 0x108d00,4, 0x108d30,2, 0x108d3c,12, 0x108d70,2, 0x108d80,3, 0x108e00,32, 0x109000,6, 0x109100,30, 0x109180,5, 0x109200,6, 0x109300,30, 0x109380,5, 0x109400,11, 0x109430,29, 0x109500,2, 0x10950c,4, 0x109520,5, 0x10953c,1, 0x109544,1, 0x10954c,5, 0x109564,3, 0x109600,4, 0x109620,6, 0x109640,6, 0x109660,6, 0x109680,6, 0x1096a0,4, 0x109800,6, 0x109820,6, 0x109840,6, 0x109860,3, 0x109884,14, 0x1098c0,16, 0x109c00,20, 0x109c58,4, 0x109c70,2, 0x109c7c,7, 0x109d00,4, 0x109d30,2, 0x109d3c,12, 0x109d70,2, 0x109d80,3, 0x109e00,32, 0x10a000,1, 0x113ffc,6, 0x114018,3, 0x114028,3, 0x114038,3, 0x114048,3, 0x114058,3, 0x114068,3, 0x114078,3, 0x114088,12, 0x1140c8,13, 0x114100,29, 0x114178,11, 0x1141c0,3, 0x1141d0,3, 0x1141e0,6, 0x114400,5, 0x114428,5, 0x114450,5, 0x114478,5, 0x1144a0,4, 0x1145ac,1, 0x1145d8,4, 0x114600,6, 0x114620,6, 0x114640,6, 0x114660,6, 0x114680,6, 0x1146a0,6, 0x1146c0,6, 0x1146e0,6, 0x114700,6, 0x114720,6, 0x114740,3, 0x114900,7, 0x114920,36, 0x114c00,1, 0x114c08,1, 0x114c10,5, 0x114c38,1, 0x114c60,7, 0x115000,1, 0x115008,11, 0x115038,10, 0x115068,3, 0x115104,4, 0x115128,3, 0x115204,5, 0x115220,10, 0x115250,3, 0x115280,6, 0x1152a0,6, 0x1152c0,6, 0x1152e0,3, 0x115300,7, 0x140000,6, 0x140100,30, 0x140180,5, 0x140200,6, 0x140300,30, 0x140380,5, 0x140400,11, 0x140430,29, 0x140500,2, 0x14050c,4, 0x140520,5, 0x14053c,1, 0x140544,1, 0x14054c,5, 0x140564,3, 0x140600,4, 0x140620,6, 0x140640,6, 0x140660,6, 0x140680,6, 0x1406a0,4, 0x140800,6, 0x140820,6, 0x140840,6, 0x140860,3, 0x140884,14, 0x1408c0,16, 0x140c00,20, 0x140c58,4, 0x140c70,2, 0x140c7c,7, 0x140d00,4, 0x140d30,2, 0x140d3c,12, 0x140d70,2, 0x140d80,3, 0x140e00,32, 0x141000,6, 0x141100,30, 0x141180,5, 0x141200,6, 0x141300,30, 0x141380,5, 0x141400,11, 0x141430,29, 0x141500,2, 0x14150c,4, 0x141520,5, 0x14153c,1, 0x141544,1, 0x14154c,5, 0x141564,3, 0x141600,4, 0x141620,6, 0x141640,6, 0x141660,6, 0x141680,6, 0x1416a0,4, 0x141800,6, 0x141820,6, 0x141840,6, 0x141860,3, 0x141884,14, 0x1418c0,16, 0x141c00,20, 0x141c58,4, 0x141c70,2, 0x141c7c,7, 0x141d00,4, 0x141d30,2, 0x141d3c,12, 0x141d70,2, 0x141d80,3, 0x141e00,32, 0x142000,6, 0x142100,30, 0x142180,5, 0x142200,6, 0x142300,30, 0x142380,5, 0x142400,11, 0x142430,29, 0x142500,2, 0x14250c,4, 0x142520,5, 0x14253c,1, 0x142544,1, 0x14254c,5, 0x142564,3, 0x142600,4, 0x142620,6, 0x142640,6, 0x142660,6, 0x142680,6, 0x1426a0,4, 0x142800,6, 0x142820,6, 0x142840,6, 0x142860,3, 0x142884,14, 0x1428c0,16, 0x142c00,20, 0x142c58,4, 0x142c70,2, 0x142c7c,7, 0x142d00,4, 0x142d30,2, 0x142d3c,12, 0x142d70,2, 0x142d80,3, 0x142e00,32, 0x143000,6, 0x143100,30, 0x143180,5, 0x143200,6, 0x143300,30, 0x143380,5, 0x143400,11, 0x143430,29, 0x143500,2, 0x14350c,4, 0x143520,5, 0x14353c,1, 0x143544,1, 0x14354c,5, 0x143564,3, 0x143600,4, 0x143620,6, 0x143640,6, 0x143660,6, 0x143680,6, 0x1436a0,4, 0x143800,6, 0x143820,6, 0x143840,6, 0x143860,3, 0x143884,14, 0x1438c0,16, 0x143c00,20, 0x143c58,4, 0x143c70,2, 0x143c7c,7, 0x143d00,4, 0x143d30,2, 0x143d3c,12, 0x143d70,2, 0x143d80,3, 0x143e00,32, 0x144000,6, 0x144100,30, 0x144180,5, 0x144200,6, 0x144300,30, 0x144380,5, 0x144400,11, 0x144430,29, 0x144500,2, 0x14450c,4, 0x144520,5, 0x14453c,1, 0x144544,1, 0x14454c,5, 0x144564,3, 0x144600,4, 0x144620,6, 0x144640,6, 0x144660,6, 0x144680,6, 0x1446a0,4, 0x144800,6, 0x144820,6, 0x144840,6, 0x144860,3, 0x144884,14, 0x1448c0,16, 0x144c00,20, 0x144c58,4, 0x144c70,2, 0x144c7c,7, 0x144d00,4, 0x144d30,2, 0x144d3c,12, 0x144d70,2, 0x144d80,3, 0x144e00,32, 0x145000,6, 0x145100,30, 0x145180,5, 0x145200,6, 0x145300,30, 0x145380,5, 0x145400,11, 0x145430,29, 0x145500,2, 0x14550c,4, 0x145520,5, 0x14553c,1, 0x145544,1, 0x14554c,5, 0x145564,3, 0x145600,4, 0x145620,6, 0x145640,6, 0x145660,6, 0x145680,6, 0x1456a0,4, 0x145800,6, 0x145820,6, 0x145840,6, 0x145860,3, 0x145884,14, 0x1458c0,16, 0x145c00,20, 0x145c58,4, 0x145c70,2, 0x145c7c,7, 0x145d00,4, 0x145d30,2, 0x145d3c,12, 0x145d70,2, 0x145d80,3, 0x145e00,32, 0x146000,6, 0x146100,30, 0x146180,5, 0x146200,6, 0x146300,30, 0x146380,5, 0x146400,11, 0x146430,29, 0x146500,2, 0x14650c,4, 0x146520,5, 0x14653c,1, 0x146544,1, 0x14654c,5, 0x146564,3, 0x146600,4, 0x146620,6, 0x146640,6, 0x146660,6, 0x146680,6, 0x1466a0,4, 0x146800,6, 0x146820,6, 0x146840,6, 0x146860,3, 0x146884,14, 0x1468c0,16, 0x146c00,20, 0x146c58,4, 0x146c70,2, 0x146c7c,7, 0x146d00,4, 0x146d30,2, 0x146d3c,12, 0x146d70,2, 0x146d80,3, 0x146e00,32, 0x147000,6, 0x147100,30, 0x147180,5, 0x147200,6, 0x147300,30, 0x147380,5, 0x147400,11, 0x147430,29, 0x147500,2, 0x14750c,4, 0x147520,5, 0x14753c,1, 0x147544,1, 0x14754c,5, 0x147564,3, 0x147600,4, 0x147620,6, 0x147640,6, 0x147660,6, 0x147680,6, 0x1476a0,4, 0x147800,6, 0x147820,6, 0x147840,6, 0x147860,3, 0x147884,14, 0x1478c0,16, 0x147c00,20, 0x147c58,4, 0x147c70,2, 0x147c7c,7, 0x147d00,4, 0x147d30,2, 0x147d3c,12, 0x147d70,2, 0x147d80,3, 0x147e00,32, 0x148000,6, 0x148100,30, 0x148180,5, 0x148200,6, 0x148300,30, 0x148380,5, 0x148400,11, 0x148430,29, 0x148500,2, 0x14850c,4, 0x148520,5, 0x14853c,1, 0x148544,1, 0x14854c,5, 0x148564,3, 0x148600,4, 0x148620,6, 0x148640,6, 0x148660,6, 0x148680,6, 0x1486a0,4, 0x148800,6, 0x148820,6, 0x148840,6, 0x148860,3, 0x148884,14, 0x1488c0,16, 0x148c00,20, 0x148c58,4, 0x148c70,2, 0x148c7c,7, 0x148d00,4, 0x148d30,2, 0x148d3c,12, 0x148d70,2, 0x148d80,3, 0x148e00,32, 0x149000,6, 0x149100,30, 0x149180,5, 0x149200,6, 0x149300,30, 0x149380,5, 0x149400,11, 0x149430,29, 0x149500,2, 0x14950c,4, 0x149520,5, 0x14953c,1, 0x149544,1, 0x14954c,5, 0x149564,3, 0x149600,4, 0x149620,6, 0x149640,6, 0x149660,6, 0x149680,6, 0x1496a0,4, 0x149800,6, 0x149820,6, 0x149840,6, 0x149860,3, 0x149884,14, 0x1498c0,16, 0x149c00,20, 0x149c58,4, 0x149c70,2, 0x149c7c,7, 0x149d00,4, 0x149d30,2, 0x149d3c,12, 0x149d70,2, 0x149d80,3, 0x149e00,32, 0x14a000,1, 0x153ffc,6, 0x154018,3, 0x154028,3, 0x154038,3, 0x154048,3, 0x154058,3, 0x154068,3, 0x154078,3, 0x154088,12, 0x1540c8,13, 0x154100,29, 0x154178,11, 0x1541c0,3, 0x1541d0,3, 0x1541e0,6, 0x154400,5, 0x154428,5, 0x154450,5, 0x154478,5, 0x1544a0,4, 0x1545ac,1, 0x1545d8,4, 0x154600,6, 0x154620,6, 0x154640,6, 0x154660,6, 0x154680,6, 0x1546a0,6, 0x1546c0,6, 0x1546e0,6, 0x154700,6, 0x154720,6, 0x154740,3, 0x154900,7, 0x154920,36, 0x154c00,1, 0x154c08,1, 0x154c10,5, 0x154c38,1, 0x154c60,7, 0x155000,1, 0x155008,11, 0x155038,10, 0x155068,3, 0x155104,4, 0x155128,3, 0x155204,5, 0x155220,10, 0x155250,3, 0x155280,6, 0x1552a0,6, 0x1552c0,6, 0x1552e0,3, 0x155300,7, 0x180000,6, 0x180020,6, 0x180040,6, 0x180060,6, 0x180080,6, 0x1800a0,6, 0x1800c0,3, 0x180100,1, 0x180110,1, 0x200000,5, 0x200020,4, 0x200034,17, 0x200080,1, 0x2000a0,6, 0x200100,5, 0x200120,4, 0x200134,17, 0x200180,1, 0x2001a0,6, 0x200200,5, 0x200220,4, 0x200234,17, 0x200280,1, 0x2002a0,6, 0x200300,5, 0x200320,4, 0x200334,17, 0x200380,1, 0x2003a0,6, 0x200500,6, 0x20051c,7, 0x200540,1, 0x200c00,13, 0x200c40,12, 0x200d00,6, 0x200d80,14, 0x200dc0,2, 0x200e40,4, 0x200e60,3, 0x200e80,6, 0x201000,2, 0x201010,5, 0x201060,32, 0x201100,8, 0x201180,3, 0x201190,2, 0x20119c,5, 0x201218,9, 0x201240,3, 0x201250,6, 0x201280,1, 0x201288,6, 0x2012a4,1, 0x201400,8, 0x201424,2, 0x201500,5, 0x201520,4, 0x201800,24, 0x201864,5, 0x201880,8, 0x201900,13, 0x201980,4, 0x2019a0,6, 0x201a40,1, 0x201a60,1, 0x201a68,23, 0x201ac8,6, 0x201b80,12, 0x201c00,6, 0x201c20,6, 0x201c40,6, 0x201c60,3, 0x201d00,6, 0x201d20,6, 0x201d40,3, 0x202000,5, 0x202020,4, 0x202034,17, 0x202080,1, 0x2020a0,6, 0x202100,5, 0x202120,4, 0x202134,17, 0x202180,1, 0x2021a0,6, 0x202200,5, 0x202220,4, 0x202234,17, 0x202280,1, 0x2022a0,6, 0x202300,5, 0x202320,4, 0x202334,17, 0x202380,1, 0x2023a0,6, 0x202500,6, 0x20251c,7, 0x202540,1, 0x202c00,13, 0x202c40,12, 0x202d00,6, 0x202d80,14, 0x202dc0,2, 0x202e40,4, 0x202e60,3, 0x202e80,6, 0x203000,2, 0x203010,5, 0x203060,32, 0x203100,8, 0x203180,3, 0x203190,2, 0x20319c,5, 0x203218,9, 0x203240,3, 0x203250,6, 0x203280,1, 0x203288,6, 0x2032a4,1, 0x203400,8, 0x203424,2, 0x203500,5, 0x203520,4, 0x203800,24, 0x203864,5, 0x203880,8, 0x203900,13, 0x203980,4, 0x2039a0,6, 0x203a40,1, 0x203a60,1, 0x203a68,23, 0x203ac8,6, 0x203b80,12, 0x203c00,6, 0x203c20,6, 0x203c40,6, 0x203c60,3, 0x203d00,6, 0x203d20,6, 0x203d40,3, 0x204000,29, 0x204078,4, 0x204090,2, 0x2040a0,2, 0x2040b0,3, 0x2040c0,11, 0x204100,14, 0x204140,14, 0x204180,61, 0x204278,4, 0x204290,2, 0x2042a0,2, 0x2042b0,3, 0x2042c0,11, 0x204300,14, 0x204340,14, 0x204380,61, 0x204478,4, 0x204490,2, 0x2044a0,2, 0x2044b0,3, 0x2044c0,11, 0x204500,14, 0x204540,14, 0x204580,61, 0x204678,4, 0x204690,2, 0x2046a0,2, 0x2046b0,3, 0x2046c0,11, 0x204700,14, 0x204740,14, 0x204780,62, 0x20487c,1, 0x204a00,8, 0x204a24,15, 0x204a64,23, 0x204ac4,6, 0x204b00,4, 0x204b20,3, 0x204c00,6, 0x204c40,14, 0x204c80,9, 0x204d00,9, 0x204d2c,1, 0x204d40,3, 0x204d60,1, 0x204d80,3, 0x204e00,2, 0x204e0c,1, 0x204e14,5, 0x204e2c,1, 0x204e34,5, 0x204e4c,1, 0x204e54,5, 0x204e6c,1, 0x204e74,5, 0x204e8c,1, 0x204e94,5, 0x204eac,1, 0x204eb4,3, 0x205000,29, 0x205078,4, 0x205090,2, 0x2050a0,2, 0x2050b0,3, 0x2050c0,11, 0x205100,14, 0x205140,14, 0x205180,61, 0x205278,4, 0x205290,2, 0x2052a0,2, 0x2052b0,3, 0x2052c0,11, 0x205300,14, 0x205340,14, 0x205380,61, 0x205478,4, 0x205490,2, 0x2054a0,2, 0x2054b0,3, 0x2054c0,11, 0x205500,14, 0x205540,14, 0x205580,61, 0x205678,4, 0x205690,2, 0x2056a0,2, 0x2056b0,3, 0x2056c0,11, 0x205700,14, 0x205740,14, 0x205780,62, 0x20587c,1, 0x205a00,8, 0x205a24,15, 0x205a64,23, 0x205ac4,6, 0x205b00,4, 0x205b20,3, 0x205c00,6, 0x205c40,14, 0x205c80,9, 0x205d00,9, 0x205d2c,1, 0x205d40,3, 0x205d60,1, 0x205d80,3, 0x205e00,2, 0x205e0c,1, 0x205e14,5, 0x205e2c,1, 0x205e34,5, 0x205e4c,1, 0x205e54,5, 0x205e6c,1, 0x205e74,5, 0x205e8c,1, 0x205e94,5, 0x205eac,1, 0x205eb4,3, 0x206000,14, 0x206070,3, 0x206080,6, 0x206100,9, 0x206204,1, 0x20620c,6, 0x206240,13, 0x206280,16, 0x206800,19, 0x206850,10, 0x206880,19, 0x2068d0,10, 0x206900,19, 0x206950,10, 0x206980,19, 0x2069d0,10, 0x206a00,19, 0x206a50,10, 0x206a80,19, 0x206ad0,10, 0x206b00,19, 0x206b50,10, 0x206b80,19, 0x206bd0,10, 0x206c00,19, 0x206c60,6, 0x206c84,1, 0x206c94,8, 0x206cb8,9, 0x206ce0,4, 0x207000,6, 0x207020,3, 0x207040,7, 0x207060,6, 0x207100,5, 0x207138,1, 0x207144,1, 0x207150,2, 0x208000,6, 0x208020,3, 0x208030,9, 0x208100,6, 0x208120,10, 0x208150,8, 0x208400,1, 0x208428,1, 0x208450,1, 0x208478,1, 0x2084a0,8, 0x2085ac,1, 0x2085d8,4, 0x208600,6, 0x208620,6, 0x208640,3, 0x208800,6, 0x208820,3, 0x208830,4, 0x208858,2, 0x208864,1, 0x208874,3, 0x208898,2, 0x2088a4,1, 0x2088b4,3, 0x209000,6, 0x209020,6, 0x209040,3, 0x209080,14, 0x2090bc,1, 0x2090c4,13, 0x2090fc,1, 0x209200,20, 0x20925c,30, 0x209300,24, 0x209380,2, 0x2093a0,1, 0x2093c0,11, 0x209404,3, 0x209420,11, 0x209460,3, 0x209480,6, 0x209500,6, 0x209520,6, 0x209540,1, 0x209558,2, 0x209600,17, 0x209800,410, 0x20a000,6, 0x20a020,6, 0x20a040,3, 0x20a080,14, 0x20a0bc,1, 0x20a0c4,13, 0x20a0fc,1, 0x20a200,20, 0x20a25c,30, 0x20a300,24, 0x20a380,2, 0x20a3a0,1, 0x20a3c0,11, 0x20a404,3, 0x20a420,11, 0x20a460,3, 0x20a480,6, 0x20a500,6, 0x20a520,6, 0x20a540,1, 0x20a558,2, 0x20a600,17, 0x20a800,410, 0x20b000,4, 0x20b020,25, 0x20b088,8, 0x20b100,4, 0x20b120,25, 0x20b188,8, 0x20b200,34, 0x20b300,37, 0x20b400,16, 0x20b464,1, 0x20b474,3, 0x20b500,6, 0x20b520,2, 0x20b530,9, 0x20b570,10, 0x20b5a0,2, 0x20b5b0,9, 0x20b5f0,4, 0x20b620,7, 0x20b640,16, 0x20b700,6, 0x20b720,6, 0x20b740,6, 0x20b760,6, 0x20b780,3, 0x20b800,5, 0x20b818,1, 0x20b854,6, 0x20b880,2, 0x20b8a4,1, 0x20b8ac,2, 0x20ba00,28, 0x20ba7c,13, 0x20bab4,1, 0x20babc,10, 0x20bb04,1, 0x20bb0c,5, 0x20bb24,1, 0x20bb34,9, 0x20bb60,6, 0x20bb80,22, 0x20bbe0,3, 0x20bbf0,2, 0x20bc00,5, 0x20bc18,1, 0x20bc54,6, 0x20bc80,2, 0x20bca4,1, 0x20bcac,2, 0x20be00,28, 0x20be7c,13, 0x20beb4,1, 0x20bebc,10, 0x20bf04,1, 0x20bf0c,5, 0x20bf24,1, 0x20bf34,9, 0x20bf60,6, 0x20bf80,22, 0x20bfe0,3, 0x20bff0,2, 0x20c008,2, 0x20c014,11, 0x20c044,1, 0x20c04c,3, 0x20c05c,1, 0x20c064,1, 0x20c07c,1, 0x20c500,2, 0x20c518,1, 0x20c520,3, 0x20c540,6, 0x20c580,10, 0x20c808,2, 0x20c814,11, 0x20c844,1, 0x20c84c,3, 0x20c85c,1, 0x20c864,1, 0x20c87c,1, 0x20cd00,2, 0x20cd18,1, 0x20cd20,3, 0x20cd40,6, 0x20cd80,10, 0x20d800,2, 0x20d828,2, 0x20d850,2, 0x20d878,2, 0x20d8a0,6, 0x20d9ac,1, 0x20d9d8,4, 0x20da00,6, 0x20da20,6, 0x20da40,6, 0x20da60,6, 0x20da80,3, 0x20dc00,6, 0x20dc20,3, 0x20dc40,2, 0x20dc60,1, 0x210000,5, 0x210020,4, 0x210034,17, 0x210080,1, 0x2100a0,6, 0x210100,5, 0x210120,4, 0x210134,17, 0x210180,1, 0x2101a0,6, 0x210200,5, 0x210220,4, 0x210234,17, 0x210280,1, 0x2102a0,6, 0x210300,5, 0x210320,4, 0x210334,17, 0x210380,1, 0x2103a0,6, 0x210500,6, 0x21051c,7, 0x210540,1, 0x210c00,13, 0x210c40,12, 0x210d00,6, 0x210d80,14, 0x210dc0,2, 0x210e40,4, 0x210e60,3, 0x210e80,6, 0x211000,2, 0x211010,5, 0x211060,32, 0x211100,8, 0x211180,3, 0x211190,2, 0x21119c,5, 0x211218,9, 0x211240,3, 0x211250,6, 0x211280,1, 0x211288,6, 0x2112a4,1, 0x211400,8, 0x211424,2, 0x211500,5, 0x211520,4, 0x211800,24, 0x211864,5, 0x211880,8, 0x211900,13, 0x211980,4, 0x2119a0,6, 0x211a40,1, 0x211a60,1, 0x211a68,23, 0x211ac8,6, 0x211b80,12, 0x211c00,6, 0x211c20,6, 0x211c40,6, 0x211c60,3, 0x211d00,6, 0x211d20,6, 0x211d40,3, 0x212000,5, 0x212020,4, 0x212034,17, 0x212080,1, 0x2120a0,6, 0x212100,5, 0x212120,4, 0x212134,17, 0x212180,1, 0x2121a0,6, 0x212200,5, 0x212220,4, 0x212234,17, 0x212280,1, 0x2122a0,6, 0x212300,5, 0x212320,4, 0x212334,17, 0x212380,1, 0x2123a0,6, 0x212500,6, 0x21251c,7, 0x212540,1, 0x212c00,13, 0x212c40,12, 0x212d00,6, 0x212d80,14, 0x212dc0,2, 0x212e40,4, 0x212e60,3, 0x212e80,6, 0x213000,2, 0x213010,5, 0x213060,32, 0x213100,8, 0x213180,3, 0x213190,2, 0x21319c,5, 0x213218,9, 0x213240,3, 0x213250,6, 0x213280,1, 0x213288,6, 0x2132a4,1, 0x213400,8, 0x213424,2, 0x213500,5, 0x213520,4, 0x213800,24, 0x213864,5, 0x213880,8, 0x213900,13, 0x213980,4, 0x2139a0,6, 0x213a40,1, 0x213a60,1, 0x213a68,23, 0x213ac8,6, 0x213b80,12, 0x213c00,6, 0x213c20,6, 0x213c40,6, 0x213c60,3, 0x213d00,6, 0x213d20,6, 0x213d40,3, 0x214000,29, 0x214078,4, 0x214090,2, 0x2140a0,2, 0x2140b0,3, 0x2140c0,11, 0x214100,14, 0x214140,14, 0x214180,61, 0x214278,4, 0x214290,2, 0x2142a0,2, 0x2142b0,3, 0x2142c0,11, 0x214300,14, 0x214340,14, 0x214380,61, 0x214478,4, 0x214490,2, 0x2144a0,2, 0x2144b0,3, 0x2144c0,11, 0x214500,14, 0x214540,14, 0x214580,61, 0x214678,4, 0x214690,2, 0x2146a0,2, 0x2146b0,3, 0x2146c0,11, 0x214700,14, 0x214740,14, 0x214780,62, 0x21487c,1, 0x214a00,8, 0x214a24,15, 0x214a64,23, 0x214ac4,6, 0x214b00,4, 0x214b20,3, 0x214c00,6, 0x214c40,14, 0x214c80,9, 0x214d00,9, 0x214d2c,1, 0x214d40,3, 0x214d60,1, 0x214d80,3, 0x214e00,2, 0x214e0c,1, 0x214e14,5, 0x214e2c,1, 0x214e34,5, 0x214e4c,1, 0x214e54,5, 0x214e6c,1, 0x214e74,5, 0x214e8c,1, 0x214e94,5, 0x214eac,1, 0x214eb4,3, 0x215000,29, 0x215078,4, 0x215090,2, 0x2150a0,2, 0x2150b0,3, 0x2150c0,11, 0x215100,14, 0x215140,14, 0x215180,61, 0x215278,4, 0x215290,2, 0x2152a0,2, 0x2152b0,3, 0x2152c0,11, 0x215300,14, 0x215340,14, 0x215380,61, 0x215478,4, 0x215490,2, 0x2154a0,2, 0x2154b0,3, 0x2154c0,11, 0x215500,14, 0x215540,14, 0x215580,61, 0x215678,4, 0x215690,2, 0x2156a0,2, 0x2156b0,3, 0x2156c0,11, 0x215700,14, 0x215740,14, 0x215780,62, 0x21587c,1, 0x215a00,8, 0x215a24,15, 0x215a64,23, 0x215ac4,6, 0x215b00,4, 0x215b20,3, 0x215c00,6, 0x215c40,14, 0x215c80,9, 0x215d00,9, 0x215d2c,1, 0x215d40,3, 0x215d60,1, 0x215d80,3, 0x215e00,2, 0x215e0c,1, 0x215e14,5, 0x215e2c,1, 0x215e34,5, 0x215e4c,1, 0x215e54,5, 0x215e6c,1, 0x215e74,5, 0x215e8c,1, 0x215e94,5, 0x215eac,1, 0x215eb4,3, 0x216000,14, 0x216070,3, 0x216080,6, 0x216100,9, 0x216204,1, 0x21620c,6, 0x216240,13, 0x216280,16, 0x216800,19, 0x216850,10, 0x216880,19, 0x2168d0,10, 0x216900,19, 0x216950,10, 0x216980,19, 0x2169d0,10, 0x216a00,19, 0x216a50,10, 0x216a80,19, 0x216ad0,10, 0x216b00,19, 0x216b50,10, 0x216b80,19, 0x216bd0,10, 0x216c00,19, 0x216c60,6, 0x216c84,1, 0x216c94,8, 0x216cb8,9, 0x216ce0,4, 0x217000,6, 0x217020,3, 0x217040,7, 0x217060,6, 0x217100,5, 0x217138,1, 0x217144,1, 0x217150,2, 0x218000,6, 0x218020,3, 0x218030,9, 0x218100,6, 0x218120,10, 0x218150,8, 0x218400,1, 0x218428,1, 0x218450,1, 0x218478,1, 0x2184a0,8, 0x2185ac,1, 0x2185d8,4, 0x218600,6, 0x218620,6, 0x218640,3, 0x218800,6, 0x218820,3, 0x218830,4, 0x218858,2, 0x218864,1, 0x218874,3, 0x218898,2, 0x2188a4,1, 0x2188b4,3, 0x219000,6, 0x219020,6, 0x219040,3, 0x219080,14, 0x2190bc,1, 0x2190c4,13, 0x2190fc,1, 0x219200,20, 0x21925c,30, 0x219300,24, 0x219380,2, 0x2193a0,1, 0x2193c0,11, 0x219404,3, 0x219420,11, 0x219460,3, 0x219480,6, 0x219500,6, 0x219520,6, 0x219540,1, 0x219558,2, 0x219600,17, 0x219800,410, 0x21a000,6, 0x21a020,6, 0x21a040,3, 0x21a080,14, 0x21a0bc,1, 0x21a0c4,13, 0x21a0fc,1, 0x21a200,20, 0x21a25c,30, 0x21a300,24, 0x21a380,2, 0x21a3a0,1, 0x21a3c0,11, 0x21a404,3, 0x21a420,11, 0x21a460,3, 0x21a480,6, 0x21a500,6, 0x21a520,6, 0x21a540,1, 0x21a558,2, 0x21a600,17, 0x21a800,410, 0x21b000,4, 0x21b020,25, 0x21b088,8, 0x21b100,4, 0x21b120,25, 0x21b188,8, 0x21b200,34, 0x21b300,37, 0x21b400,16, 0x21b464,1, 0x21b474,3, 0x21b500,6, 0x21b520,2, 0x21b530,9, 0x21b570,10, 0x21b5a0,2, 0x21b5b0,9, 0x21b5f0,4, 0x21b620,7, 0x21b640,16, 0x21b700,6, 0x21b720,6, 0x21b740,6, 0x21b760,6, 0x21b780,3, 0x21b800,5, 0x21b818,1, 0x21b854,6, 0x21b880,2, 0x21b8a4,1, 0x21b8ac,2, 0x21ba00,28, 0x21ba7c,13, 0x21bab4,1, 0x21babc,10, 0x21bb04,1, 0x21bb0c,5, 0x21bb24,1, 0x21bb34,9, 0x21bb60,6, 0x21bb80,22, 0x21bbe0,3, 0x21bbf0,2, 0x21bc00,5, 0x21bc18,1, 0x21bc54,6, 0x21bc80,2, 0x21bca4,1, 0x21bcac,2, 0x21be00,28, 0x21be7c,13, 0x21beb4,1, 0x21bebc,10, 0x21bf04,1, 0x21bf0c,5, 0x21bf24,1, 0x21bf34,9, 0x21bf60,6, 0x21bf80,22, 0x21bfe0,3, 0x21bff0,2, 0x21c008,2, 0x21c014,11, 0x21c044,1, 0x21c04c,3, 0x21c05c,1, 0x21c064,1, 0x21c07c,1, 0x21c500,2, 0x21c518,1, 0x21c520,3, 0x21c540,6, 0x21c580,10, 0x21c808,2, 0x21c814,11, 0x21c844,1, 0x21c84c,3, 0x21c85c,1, 0x21c864,1, 0x21c87c,1, 0x21cd00,2, 0x21cd18,1, 0x21cd20,3, 0x21cd40,6, 0x21cd80,10, 0x21d800,2, 0x21d828,2, 0x21d850,2, 0x21d878,2, 0x21d8a0,6, 0x21d9ac,1, 0x21d9d8,4, 0x21da00,6, 0x21da20,6, 0x21da40,6, 0x21da60,6, 0x21da80,3, 0x21dc00,6, 0x21dc20,3, 0x21dc40,2, 0x21dc60,1, 0x220000,5, 0x220020,4, 0x220034,17, 0x220080,1, 0x2200a0,6, 0x220100,5, 0x220120,4, 0x220134,17, 0x220180,1, 0x2201a0,6, 0x220200,5, 0x220220,4, 0x220234,17, 0x220280,1, 0x2202a0,6, 0x220300,5, 0x220320,4, 0x220334,17, 0x220380,1, 0x2203a0,6, 0x220500,6, 0x22051c,7, 0x220540,1, 0x220c00,13, 0x220c40,12, 0x220d00,6, 0x220d80,14, 0x220dc0,2, 0x220e40,4, 0x220e60,3, 0x220e80,6, 0x221000,2, 0x221010,5, 0x221060,32, 0x221100,8, 0x221180,3, 0x221190,2, 0x22119c,5, 0x221218,9, 0x221240,3, 0x221250,6, 0x221280,1, 0x221288,6, 0x2212a4,1, 0x221400,8, 0x221424,2, 0x221500,5, 0x221520,4, 0x221800,24, 0x221864,5, 0x221880,8, 0x221900,13, 0x221980,4, 0x2219a0,6, 0x221a40,1, 0x221a60,1, 0x221a68,23, 0x221ac8,6, 0x221b80,12, 0x221c00,6, 0x221c20,6, 0x221c40,6, 0x221c60,3, 0x221d00,6, 0x221d20,6, 0x221d40,3, 0x222000,5, 0x222020,4, 0x222034,17, 0x222080,1, 0x2220a0,6, 0x222100,5, 0x222120,4, 0x222134,17, 0x222180,1, 0x2221a0,6, 0x222200,5, 0x222220,4, 0x222234,17, 0x222280,1, 0x2222a0,6, 0x222300,5, 0x222320,4, 0x222334,17, 0x222380,1, 0x2223a0,6, 0x222500,6, 0x22251c,7, 0x222540,1, 0x222c00,13, 0x222c40,12, 0x222d00,6, 0x222d80,14, 0x222dc0,2, 0x222e40,4, 0x222e60,3, 0x222e80,6, 0x223000,2, 0x223010,5, 0x223060,32, 0x223100,8, 0x223180,3, 0x223190,2, 0x22319c,5, 0x223218,9, 0x223240,3, 0x223250,6, 0x223280,1, 0x223288,6, 0x2232a4,1, 0x223400,8, 0x223424,2, 0x223500,5, 0x223520,4, 0x223800,24, 0x223864,5, 0x223880,8, 0x223900,13, 0x223980,4, 0x2239a0,6, 0x223a40,1, 0x223a60,1, 0x223a68,23, 0x223ac8,6, 0x223b80,12, 0x223c00,6, 0x223c20,6, 0x223c40,6, 0x223c60,3, 0x223d00,6, 0x223d20,6, 0x223d40,3, 0x224000,29, 0x224078,4, 0x224090,2, 0x2240a0,2, 0x2240b0,3, 0x2240c0,11, 0x224100,14, 0x224140,14, 0x224180,61, 0x224278,4, 0x224290,2, 0x2242a0,2, 0x2242b0,3, 0x2242c0,11, 0x224300,14, 0x224340,14, 0x224380,61, 0x224478,4, 0x224490,2, 0x2244a0,2, 0x2244b0,3, 0x2244c0,11, 0x224500,14, 0x224540,14, 0x224580,61, 0x224678,4, 0x224690,2, 0x2246a0,2, 0x2246b0,3, 0x2246c0,11, 0x224700,14, 0x224740,14, 0x224780,62, 0x22487c,1, 0x224a00,8, 0x224a24,15, 0x224a64,23, 0x224ac4,6, 0x224b00,4, 0x224b20,3, 0x224c00,6, 0x224c40,14, 0x224c80,9, 0x224d00,9, 0x224d2c,1, 0x224d40,3, 0x224d60,1, 0x224d80,3, 0x224e00,2, 0x224e0c,1, 0x224e14,5, 0x224e2c,1, 0x224e34,5, 0x224e4c,1, 0x224e54,5, 0x224e6c,1, 0x224e74,5, 0x224e8c,1, 0x224e94,5, 0x224eac,1, 0x224eb4,3, 0x225000,29, 0x225078,4, 0x225090,2, 0x2250a0,2, 0x2250b0,3, 0x2250c0,11, 0x225100,14, 0x225140,14, 0x225180,61, 0x225278,4, 0x225290,2, 0x2252a0,2, 0x2252b0,3, 0x2252c0,11, 0x225300,14, 0x225340,14, 0x225380,61, 0x225478,4, 0x225490,2, 0x2254a0,2, 0x2254b0,3, 0x2254c0,11, 0x225500,14, 0x225540,14, 0x225580,61, 0x225678,4, 0x225690,2, 0x2256a0,2, 0x2256b0,3, 0x2256c0,11, 0x225700,14, 0x225740,14, 0x225780,62, 0x22587c,1, 0x225a00,8, 0x225a24,15, 0x225a64,23, 0x225ac4,6, 0x225b00,4, 0x225b20,3, 0x225c00,6, 0x225c40,14, 0x225c80,9, 0x225d00,9, 0x225d2c,1, 0x225d40,3, 0x225d60,1, 0x225d80,3, 0x225e00,2, 0x225e0c,1, 0x225e14,5, 0x225e2c,1, 0x225e34,5, 0x225e4c,1, 0x225e54,5, 0x225e6c,1, 0x225e74,5, 0x225e8c,1, 0x225e94,5, 0x225eac,1, 0x225eb4,3, 0x226000,14, 0x226070,3, 0x226080,6, 0x226100,9, 0x226204,1, 0x22620c,6, 0x226240,13, 0x226280,16, 0x226800,19, 0x226850,10, 0x226880,19, 0x2268d0,10, 0x226900,19, 0x226950,10, 0x226980,19, 0x2269d0,10, 0x226a00,19, 0x226a50,10, 0x226a80,19, 0x226ad0,10, 0x226b00,19, 0x226b50,10, 0x226b80,19, 0x226bd0,10, 0x226c00,19, 0x226c60,6, 0x226c84,1, 0x226c94,8, 0x226cb8,9, 0x226ce0,4, 0x227000,6, 0x227020,3, 0x227040,7, 0x227060,6, 0x227100,5, 0x227138,1, 0x227144,1, 0x227150,2, 0x228000,6, 0x228020,3, 0x228030,9, 0x228100,6, 0x228120,10, 0x228150,8, 0x228400,1, 0x228428,1, 0x228450,1, 0x228478,1, 0x2284a0,8, 0x2285ac,1, 0x2285d8,4, 0x228600,6, 0x228620,6, 0x228640,3, 0x228800,6, 0x228820,3, 0x228830,4, 0x228858,2, 0x228864,1, 0x228874,3, 0x228898,2, 0x2288a4,1, 0x2288b4,3, 0x229000,6, 0x229020,6, 0x229040,3, 0x229080,14, 0x2290bc,1, 0x2290c4,13, 0x2290fc,1, 0x229200,20, 0x22925c,30, 0x229300,24, 0x229380,2, 0x2293a0,1, 0x2293c0,11, 0x229404,3, 0x229420,11, 0x229460,3, 0x229480,6, 0x229500,6, 0x229520,6, 0x229540,1, 0x229558,2, 0x229600,17, 0x229800,410, 0x22a000,6, 0x22a020,6, 0x22a040,3, 0x22a080,14, 0x22a0bc,1, 0x22a0c4,13, 0x22a0fc,1, 0x22a200,20, 0x22a25c,30, 0x22a300,24, 0x22a380,2, 0x22a3a0,1, 0x22a3c0,11, 0x22a404,3, 0x22a420,11, 0x22a460,3, 0x22a480,6, 0x22a500,6, 0x22a520,6, 0x22a540,1, 0x22a558,2, 0x22a600,17, 0x22a800,410, 0x22b000,4, 0x22b020,25, 0x22b088,8, 0x22b100,4, 0x22b120,25, 0x22b188,8, 0x22b200,34, 0x22b300,37, 0x22b400,16, 0x22b464,1, 0x22b474,3, 0x22b500,6, 0x22b520,2, 0x22b530,9, 0x22b570,10, 0x22b5a0,2, 0x22b5b0,9, 0x22b5f0,4, 0x22b620,7, 0x22b640,16, 0x22b700,6, 0x22b720,6, 0x22b740,6, 0x22b760,6, 0x22b780,3, 0x22b800,5, 0x22b818,1, 0x22b854,6, 0x22b880,2, 0x22b8a4,1, 0x22b8ac,2, 0x22ba00,28, 0x22ba7c,13, 0x22bab4,1, 0x22babc,10, 0x22bb04,1, 0x22bb0c,5, 0x22bb24,1, 0x22bb34,9, 0x22bb60,6, 0x22bb80,22, 0x22bbe0,3, 0x22bbf0,2, 0x22bc00,5, 0x22bc18,1, 0x22bc54,6, 0x22bc80,2, 0x22bca4,1, 0x22bcac,2, 0x22be00,28, 0x22be7c,13, 0x22beb4,1, 0x22bebc,10, 0x22bf04,1, 0x22bf0c,5, 0x22bf24,1, 0x22bf34,9, 0x22bf60,6, 0x22bf80,22, 0x22bfe0,3, 0x22bff0,2, 0x22c008,2, 0x22c014,11, 0x22c044,1, 0x22c04c,3, 0x22c05c,1, 0x22c064,1, 0x22c07c,1, 0x22c500,2, 0x22c518,1, 0x22c520,3, 0x22c540,6, 0x22c580,10, 0x22c808,2, 0x22c814,11, 0x22c844,1, 0x22c84c,3, 0x22c85c,1, 0x22c864,1, 0x22c87c,1, 0x22cd00,2, 0x22cd18,1, 0x22cd20,3, 0x22cd40,6, 0x22cd80,10, 0x22d800,2, 0x22d828,2, 0x22d850,2, 0x22d878,2, 0x22d8a0,6, 0x22d9ac,1, 0x22d9d8,4, 0x22da00,6, 0x22da20,6, 0x22da40,6, 0x22da60,6, 0x22da80,3, 0x22dc00,6, 0x22dc20,3, 0x22dc40,2, 0x22dc60,1, 0x230000,5, 0x230020,4, 0x230034,17, 0x230080,1, 0x2300a0,6, 0x230100,5, 0x230120,4, 0x230134,17, 0x230180,1, 0x2301a0,6, 0x230200,5, 0x230220,4, 0x230234,17, 0x230280,1, 0x2302a0,6, 0x230300,5, 0x230320,4, 0x230334,17, 0x230380,1, 0x2303a0,6, 0x230500,6, 0x23051c,7, 0x230540,1, 0x230c00,13, 0x230c40,12, 0x230d00,6, 0x230d80,14, 0x230dc0,2, 0x230e40,4, 0x230e60,3, 0x230e80,6, 0x231000,2, 0x231010,5, 0x231060,32, 0x231100,8, 0x231180,3, 0x231190,2, 0x23119c,5, 0x231218,9, 0x231240,3, 0x231250,6, 0x231280,1, 0x231288,6, 0x2312a4,1, 0x231400,8, 0x231424,2, 0x231500,5, 0x231520,4, 0x231800,24, 0x231864,5, 0x231880,8, 0x231900,13, 0x231980,4, 0x2319a0,6, 0x231a40,1, 0x231a60,1, 0x231a68,23, 0x231ac8,6, 0x231b80,12, 0x231c00,6, 0x231c20,6, 0x231c40,6, 0x231c60,3, 0x231d00,6, 0x231d20,6, 0x231d40,3, 0x232000,5, 0x232020,4, 0x232034,17, 0x232080,1, 0x2320a0,6, 0x232100,5, 0x232120,4, 0x232134,17, 0x232180,1, 0x2321a0,6, 0x232200,5, 0x232220,4, 0x232234,17, 0x232280,1, 0x2322a0,6, 0x232300,5, 0x232320,4, 0x232334,17, 0x232380,1, 0x2323a0,6, 0x232500,6, 0x23251c,7, 0x232540,1, 0x232c00,13, 0x232c40,12, 0x232d00,6, 0x232d80,14, 0x232dc0,2, 0x232e40,4, 0x232e60,3, 0x232e80,6, 0x233000,2, 0x233010,5, 0x233060,32, 0x233100,8, 0x233180,3, 0x233190,2, 0x23319c,5, 0x233218,9, 0x233240,3, 0x233250,6, 0x233280,1, 0x233288,6, 0x2332a4,1, 0x233400,8, 0x233424,2, 0x233500,5, 0x233520,4, 0x233800,24, 0x233864,5, 0x233880,8, 0x233900,13, 0x233980,4, 0x2339a0,6, 0x233a40,1, 0x233a60,1, 0x233a68,23, 0x233ac8,6, 0x233b80,12, 0x233c00,6, 0x233c20,6, 0x233c40,6, 0x233c60,3, 0x233d00,6, 0x233d20,6, 0x233d40,3, 0x234000,29, 0x234078,4, 0x234090,2, 0x2340a0,2, 0x2340b0,3, 0x2340c0,11, 0x234100,14, 0x234140,14, 0x234180,61, 0x234278,4, 0x234290,2, 0x2342a0,2, 0x2342b0,3, 0x2342c0,11, 0x234300,14, 0x234340,14, 0x234380,61, 0x234478,4, 0x234490,2, 0x2344a0,2, 0x2344b0,3, 0x2344c0,11, 0x234500,14, 0x234540,14, 0x234580,61, 0x234678,4, 0x234690,2, 0x2346a0,2, 0x2346b0,3, 0x2346c0,11, 0x234700,14, 0x234740,14, 0x234780,62, 0x23487c,1, 0x234a00,8, 0x234a24,15, 0x234a64,23, 0x234ac4,6, 0x234b00,4, 0x234b20,3, 0x234c00,6, 0x234c40,14, 0x234c80,9, 0x234d00,9, 0x234d2c,1, 0x234d40,3, 0x234d60,1, 0x234d80,3, 0x234e00,2, 0x234e0c,1, 0x234e14,5, 0x234e2c,1, 0x234e34,5, 0x234e4c,1, 0x234e54,5, 0x234e6c,1, 0x234e74,5, 0x234e8c,1, 0x234e94,5, 0x234eac,1, 0x234eb4,3, 0x235000,29, 0x235078,4, 0x235090,2, 0x2350a0,2, 0x2350b0,3, 0x2350c0,11, 0x235100,14, 0x235140,14, 0x235180,61, 0x235278,4, 0x235290,2, 0x2352a0,2, 0x2352b0,3, 0x2352c0,11, 0x235300,14, 0x235340,14, 0x235380,61, 0x235478,4, 0x235490,2, 0x2354a0,2, 0x2354b0,3, 0x2354c0,11, 0x235500,14, 0x235540,14, 0x235580,61, 0x235678,4, 0x235690,2, 0x2356a0,2, 0x2356b0,3, 0x2356c0,11, 0x235700,14, 0x235740,14, 0x235780,62, 0x23587c,1, 0x235a00,8, 0x235a24,15, 0x235a64,23, 0x235ac4,6, 0x235b00,4, 0x235b20,3, 0x235c00,6, 0x235c40,14, 0x235c80,9, 0x235d00,9, 0x235d2c,1, 0x235d40,3, 0x235d60,1, 0x235d80,3, 0x235e00,2, 0x235e0c,1, 0x235e14,5, 0x235e2c,1, 0x235e34,5, 0x235e4c,1, 0x235e54,5, 0x235e6c,1, 0x235e74,5, 0x235e8c,1, 0x235e94,5, 0x235eac,1, 0x235eb4,3, 0x236000,14, 0x236070,3, 0x236080,6, 0x236100,9, 0x236204,1, 0x23620c,6, 0x236240,13, 0x236280,16, 0x236800,19, 0x236850,10, 0x236880,19, 0x2368d0,10, 0x236900,19, 0x236950,10, 0x236980,19, 0x2369d0,10, 0x236a00,19, 0x236a50,10, 0x236a80,19, 0x236ad0,10, 0x236b00,19, 0x236b50,10, 0x236b80,19, 0x236bd0,10, 0x236c00,19, 0x236c60,6, 0x236c84,1, 0x236c94,8, 0x236cb8,9, 0x236ce0,4, 0x237000,6, 0x237020,3, 0x237040,7, 0x237060,6, 0x237100,5, 0x237138,1, 0x237144,1, 0x237150,2, 0x238000,6, 0x238020,3, 0x238030,9, 0x238100,6, 0x238120,10, 0x238150,8, 0x238400,1, 0x238428,1, 0x238450,1, 0x238478,1, 0x2384a0,8, 0x2385ac,1, 0x2385d8,4, 0x238600,6, 0x238620,6, 0x238640,3, 0x238800,6, 0x238820,3, 0x238830,4, 0x238858,2, 0x238864,1, 0x238874,3, 0x238898,2, 0x2388a4,1, 0x2388b4,3, 0x239000,6, 0x239020,6, 0x239040,3, 0x239080,14, 0x2390bc,1, 0x2390c4,13, 0x2390fc,1, 0x239200,20, 0x23925c,30, 0x239300,24, 0x239380,2, 0x2393a0,1, 0x2393c0,11, 0x239404,3, 0x239420,11, 0x239460,3, 0x239480,6, 0x239500,6, 0x239520,6, 0x239540,1, 0x239558,2, 0x239600,17, 0x239800,410, 0x23a000,6, 0x23a020,6, 0x23a040,3, 0x23a080,14, 0x23a0bc,1, 0x23a0c4,13, 0x23a0fc,1, 0x23a200,20, 0x23a25c,30, 0x23a300,24, 0x23a380,2, 0x23a3a0,1, 0x23a3c0,11, 0x23a404,3, 0x23a420,11, 0x23a460,3, 0x23a480,6, 0x23a500,6, 0x23a520,6, 0x23a540,1, 0x23a558,2, 0x23a600,17, 0x23a800,410, 0x23b000,4, 0x23b020,25, 0x23b088,8, 0x23b100,4, 0x23b120,25, 0x23b188,8, 0x23b200,34, 0x23b300,37, 0x23b400,16, 0x23b464,1, 0x23b474,3, 0x23b500,6, 0x23b520,2, 0x23b530,9, 0x23b570,10, 0x23b5a0,2, 0x23b5b0,9, 0x23b5f0,4, 0x23b620,7, 0x23b640,16, 0x23b700,6, 0x23b720,6, 0x23b740,6, 0x23b760,6, 0x23b780,3, 0x23b800,5, 0x23b818,1, 0x23b854,6, 0x23b880,2, 0x23b8a4,1, 0x23b8ac,2, 0x23ba00,28, 0x23ba7c,13, 0x23bab4,1, 0x23babc,10, 0x23bb04,1, 0x23bb0c,5, 0x23bb24,1, 0x23bb34,9, 0x23bb60,6, 0x23bb80,22, 0x23bbe0,3, 0x23bbf0,2, 0x23bc00,5, 0x23bc18,1, 0x23bc54,6, 0x23bc80,2, 0x23bca4,1, 0x23bcac,2, 0x23be00,28, 0x23be7c,13, 0x23beb4,1, 0x23bebc,10, 0x23bf04,1, 0x23bf0c,5, 0x23bf24,1, 0x23bf34,9, 0x23bf60,6, 0x23bf80,22, 0x23bfe0,3, 0x23bff0,2, 0x23c008,2, 0x23c014,11, 0x23c044,1, 0x23c04c,3, 0x23c05c,1, 0x23c064,1, 0x23c07c,1, 0x23c500,2, 0x23c518,1, 0x23c520,3, 0x23c540,6, 0x23c580,10, 0x23c808,2, 0x23c814,11, 0x23c844,1, 0x23c84c,3, 0x23c85c,1, 0x23c864,1, 0x23c87c,1, 0x23cd00,2, 0x23cd18,1, 0x23cd20,3, 0x23cd40,6, 0x23cd80,10, 0x23d800,2, 0x23d828,2, 0x23d850,2, 0x23d878,2, 0x23d8a0,6, 0x23d9ac,1, 0x23d9d8,4, 0x23da00,6, 0x23da20,6, 0x23da40,6, 0x23da60,6, 0x23da80,3, 0x23dc00,6, 0x23dc20,3, 0x23dc40,2, 0x23dc60,1, 0x240000,5, 0x240020,4, 0x240034,17, 0x240080,1, 0x2400a0,6, 0x240100,5, 0x240120,4, 0x240134,17, 0x240180,1, 0x2401a0,6, 0x240200,5, 0x240220,4, 0x240234,17, 0x240280,1, 0x2402a0,6, 0x240300,5, 0x240320,4, 0x240334,17, 0x240380,1, 0x2403a0,6, 0x240500,6, 0x24051c,7, 0x240540,1, 0x240c00,13, 0x240c40,12, 0x240d00,6, 0x240d80,14, 0x240dc0,2, 0x240e40,4, 0x240e60,3, 0x240e80,6, 0x241000,2, 0x241010,5, 0x241060,32, 0x241100,8, 0x241180,3, 0x241190,2, 0x24119c,5, 0x241218,9, 0x241240,3, 0x241250,6, 0x241280,1, 0x241288,6, 0x2412a4,1, 0x241400,8, 0x241424,2, 0x241500,5, 0x241520,4, 0x241800,24, 0x241864,5, 0x241880,8, 0x241900,13, 0x241980,4, 0x2419a0,6, 0x241a40,1, 0x241a60,1, 0x241a68,23, 0x241ac8,6, 0x241b80,12, 0x241c00,6, 0x241c20,6, 0x241c40,6, 0x241c60,3, 0x241d00,6, 0x241d20,6, 0x241d40,3, 0x242000,5, 0x242020,4, 0x242034,17, 0x242080,1, 0x2420a0,6, 0x242100,5, 0x242120,4, 0x242134,17, 0x242180,1, 0x2421a0,6, 0x242200,5, 0x242220,4, 0x242234,17, 0x242280,1, 0x2422a0,6, 0x242300,5, 0x242320,4, 0x242334,17, 0x242380,1, 0x2423a0,6, 0x242500,6, 0x24251c,7, 0x242540,1, 0x242c00,13, 0x242c40,12, 0x242d00,6, 0x242d80,14, 0x242dc0,2, 0x242e40,4, 0x242e60,3, 0x242e80,6, 0x243000,2, 0x243010,5, 0x243060,32, 0x243100,8, 0x243180,3, 0x243190,2, 0x24319c,5, 0x243218,9, 0x243240,3, 0x243250,6, 0x243280,1, 0x243288,6, 0x2432a4,1, 0x243400,8, 0x243424,2, 0x243500,5, 0x243520,4, 0x243800,24, 0x243864,5, 0x243880,8, 0x243900,13, 0x243980,4, 0x2439a0,6, 0x243a40,1, 0x243a60,1, 0x243a68,23, 0x243ac8,6, 0x243b80,12, 0x243c00,6, 0x243c20,6, 0x243c40,6, 0x243c60,3, 0x243d00,6, 0x243d20,6, 0x243d40,3, 0x244000,29, 0x244078,4, 0x244090,2, 0x2440a0,2, 0x2440b0,3, 0x2440c0,11, 0x244100,14, 0x244140,14, 0x244180,61, 0x244278,4, 0x244290,2, 0x2442a0,2, 0x2442b0,3, 0x2442c0,11, 0x244300,14, 0x244340,14, 0x244380,61, 0x244478,4, 0x244490,2, 0x2444a0,2, 0x2444b0,3, 0x2444c0,11, 0x244500,14, 0x244540,14, 0x244580,61, 0x244678,4, 0x244690,2, 0x2446a0,2, 0x2446b0,3, 0x2446c0,11, 0x244700,14, 0x244740,14, 0x244780,62, 0x24487c,1, 0x244a00,8, 0x244a24,15, 0x244a64,23, 0x244ac4,6, 0x244b00,4, 0x244b20,3, 0x244c00,6, 0x244c40,14, 0x244c80,9, 0x244d00,9, 0x244d2c,1, 0x244d40,3, 0x244d60,1, 0x244d80,3, 0x244e00,2, 0x244e0c,1, 0x244e14,5, 0x244e2c,1, 0x244e34,5, 0x244e4c,1, 0x244e54,5, 0x244e6c,1, 0x244e74,5, 0x244e8c,1, 0x244e94,5, 0x244eac,1, 0x244eb4,3, 0x245000,29, 0x245078,4, 0x245090,2, 0x2450a0,2, 0x2450b0,3, 0x2450c0,11, 0x245100,14, 0x245140,14, 0x245180,61, 0x245278,4, 0x245290,2, 0x2452a0,2, 0x2452b0,3, 0x2452c0,11, 0x245300,14, 0x245340,14, 0x245380,61, 0x245478,4, 0x245490,2, 0x2454a0,2, 0x2454b0,3, 0x2454c0,11, 0x245500,14, 0x245540,14, 0x245580,61, 0x245678,4, 0x245690,2, 0x2456a0,2, 0x2456b0,3, 0x2456c0,11, 0x245700,14, 0x245740,14, 0x245780,62, 0x24587c,1, 0x245a00,8, 0x245a24,15, 0x245a64,23, 0x245ac4,6, 0x245b00,4, 0x245b20,3, 0x245c00,6, 0x245c40,14, 0x245c80,9, 0x245d00,9, 0x245d2c,1, 0x245d40,3, 0x245d60,1, 0x245d80,3, 0x245e00,2, 0x245e0c,1, 0x245e14,5, 0x245e2c,1, 0x245e34,5, 0x245e4c,1, 0x245e54,5, 0x245e6c,1, 0x245e74,5, 0x245e8c,1, 0x245e94,5, 0x245eac,1, 0x245eb4,3, 0x246000,14, 0x246070,3, 0x246080,6, 0x246100,9, 0x246204,1, 0x24620c,6, 0x246240,13, 0x246280,16, 0x246400,8, 0x246424,15, 0x246464,15, 0x2464a4,15, 0x2464e4,23, 0x246544,6, 0x246580,10, 0x2465ac,1, 0x2465b4,5, 0x2465cc,1, 0x2465d4,5, 0x2465ec,1, 0x2465f4,13, 0x246680,7, 0x2466a0,5, 0x2466c0,5, 0x2466e0,4, 0x246800,19, 0x246850,10, 0x246880,19, 0x2468d0,10, 0x246900,19, 0x246950,10, 0x246980,19, 0x2469d0,10, 0x246a00,19, 0x246a50,10, 0x246a80,19, 0x246ad0,10, 0x246b00,19, 0x246b50,10, 0x246b80,19, 0x246bd0,10, 0x246c00,19, 0x246c60,6, 0x246c84,1, 0x246c94,8, 0x246cb8,9, 0x246ce0,4, 0x247000,6, 0x247020,3, 0x247040,7, 0x247060,6, 0x247100,5, 0x247138,1, 0x247144,1, 0x247150,2, 0x248000,6, 0x248020,3, 0x248030,9, 0x248100,6, 0x248120,10, 0x248150,8, 0x248400,1, 0x248428,1, 0x248450,1, 0x248478,1, 0x2484a0,8, 0x2485ac,1, 0x2485d8,4, 0x248600,6, 0x248620,6, 0x248640,3, 0x248800,6, 0x248820,3, 0x248830,4, 0x248858,2, 0x248864,1, 0x248874,3, 0x248898,2, 0x2488a4,1, 0x2488b4,3, 0x249000,6, 0x249020,6, 0x249040,3, 0x249080,14, 0x2490bc,1, 0x2490c4,13, 0x2490fc,1, 0x249200,20, 0x24925c,30, 0x249300,24, 0x249380,2, 0x2493a0,1, 0x2493c0,11, 0x249404,3, 0x249420,11, 0x249460,3, 0x249480,6, 0x249500,6, 0x249520,6, 0x249540,1, 0x249558,2, 0x249600,17, 0x249800,410, 0x24a000,6, 0x24a020,6, 0x24a040,3, 0x24a080,14, 0x24a0bc,1, 0x24a0c4,13, 0x24a0fc,1, 0x24a200,20, 0x24a25c,30, 0x24a300,24, 0x24a380,2, 0x24a3a0,1, 0x24a3c0,11, 0x24a404,3, 0x24a420,11, 0x24a460,3, 0x24a480,6, 0x24a500,6, 0x24a520,6, 0x24a540,1, 0x24a558,2, 0x24a600,17, 0x24a800,410, 0x24b000,4, 0x24b020,25, 0x24b088,8, 0x24b100,4, 0x24b120,25, 0x24b188,8, 0x24b200,34, 0x24b300,37, 0x24b400,16, 0x24b464,1, 0x24b474,3, 0x24b500,6, 0x24b520,2, 0x24b530,9, 0x24b570,10, 0x24b5a0,2, 0x24b5b0,9, 0x24b5f0,4, 0x24b620,7, 0x24b640,16, 0x24b700,6, 0x24b720,6, 0x24b740,6, 0x24b760,6, 0x24b780,3, 0x24b800,5, 0x24b818,1, 0x24b854,6, 0x24b880,2, 0x24b8a4,1, 0x24b8ac,2, 0x24ba00,28, 0x24ba7c,13, 0x24bab4,1, 0x24babc,10, 0x24bb04,1, 0x24bb0c,5, 0x24bb24,1, 0x24bb34,9, 0x24bb60,6, 0x24bb80,22, 0x24bbe0,3, 0x24bbf0,2, 0x24bc00,5, 0x24bc18,1, 0x24bc54,6, 0x24bc80,2, 0x24bca4,1, 0x24bcac,2, 0x24be00,28, 0x24be7c,13, 0x24beb4,1, 0x24bebc,10, 0x24bf04,1, 0x24bf0c,5, 0x24bf24,1, 0x24bf34,9, 0x24bf60,6, 0x24bf80,22, 0x24bfe0,3, 0x24bff0,2, 0x24c008,2, 0x24c014,11, 0x24c044,1, 0x24c04c,3, 0x24c05c,1, 0x24c064,1, 0x24c07c,1, 0x24c500,2, 0x24c518,1, 0x24c520,3, 0x24c540,6, 0x24c580,10, 0x24c808,2, 0x24c814,11, 0x24c844,1, 0x24c84c,3, 0x24c85c,1, 0x24c864,1, 0x24c87c,1, 0x24cd00,2, 0x24cd18,1, 0x24cd20,3, 0x24cd40,6, 0x24cd80,10, 0x24d800,2, 0x24d828,2, 0x24d850,2, 0x24d878,2, 0x24d8a0,6, 0x24d9ac,1, 0x24d9d8,4, 0x24da00,6, 0x24da20,6, 0x24da40,6, 0x24da60,6, 0x24da80,3, 0x24dc00,6, 0x24dc20,3, 0x24dc40,2, 0x24dc60,1, 0x250000,5, 0x250020,4, 0x250034,17, 0x250080,1, 0x2500a0,6, 0x250100,5, 0x250120,4, 0x250134,17, 0x250180,1, 0x2501a0,6, 0x250200,5, 0x250220,4, 0x250234,17, 0x250280,1, 0x2502a0,6, 0x250300,5, 0x250320,4, 0x250334,17, 0x250380,1, 0x2503a0,6, 0x250500,6, 0x25051c,7, 0x250540,1, 0x250c00,13, 0x250c40,12, 0x250d00,6, 0x250d80,14, 0x250dc0,2, 0x250e40,4, 0x250e60,3, 0x250e80,6, 0x251000,2, 0x251010,5, 0x251060,32, 0x251100,8, 0x251180,3, 0x251190,2, 0x25119c,5, 0x251218,9, 0x251240,3, 0x251250,6, 0x251280,1, 0x251288,6, 0x2512a4,1, 0x251400,8, 0x251424,2, 0x251500,5, 0x251520,4, 0x251800,24, 0x251864,5, 0x251880,8, 0x251900,13, 0x251980,4, 0x2519a0,6, 0x251a40,1, 0x251a60,1, 0x251a68,23, 0x251ac8,6, 0x251b80,12, 0x251c00,6, 0x251c20,6, 0x251c40,6, 0x251c60,3, 0x251d00,6, 0x251d20,6, 0x251d40,3, 0x252000,5, 0x252020,4, 0x252034,17, 0x252080,1, 0x2520a0,6, 0x252100,5, 0x252120,4, 0x252134,17, 0x252180,1, 0x2521a0,6, 0x252200,5, 0x252220,4, 0x252234,17, 0x252280,1, 0x2522a0,6, 0x252300,5, 0x252320,4, 0x252334,17, 0x252380,1, 0x2523a0,6, 0x252500,6, 0x25251c,7, 0x252540,1, 0x252c00,13, 0x252c40,12, 0x252d00,6, 0x252d80,14, 0x252dc0,2, 0x252e40,4, 0x252e60,3, 0x252e80,6, 0x253000,2, 0x253010,5, 0x253060,32, 0x253100,8, 0x253180,3, 0x253190,2, 0x25319c,5, 0x253218,9, 0x253240,3, 0x253250,6, 0x253280,1, 0x253288,6, 0x2532a4,1, 0x253400,8, 0x253424,2, 0x253500,5, 0x253520,4, 0x253800,24, 0x253864,5, 0x253880,8, 0x253900,13, 0x253980,4, 0x2539a0,6, 0x253a40,1, 0x253a60,1, 0x253a68,23, 0x253ac8,6, 0x253b80,12, 0x253c00,6, 0x253c20,6, 0x253c40,6, 0x253c60,3, 0x253d00,6, 0x253d20,6, 0x253d40,3, 0x254000,29, 0x254078,4, 0x254090,2, 0x2540a0,2, 0x2540b0,3, 0x2540c0,11, 0x254100,14, 0x254140,14, 0x254180,61, 0x254278,4, 0x254290,2, 0x2542a0,2, 0x2542b0,3, 0x2542c0,11, 0x254300,14, 0x254340,14, 0x254380,61, 0x254478,4, 0x254490,2, 0x2544a0,2, 0x2544b0,3, 0x2544c0,11, 0x254500,14, 0x254540,14, 0x254580,61, 0x254678,4, 0x254690,2, 0x2546a0,2, 0x2546b0,3, 0x2546c0,11, 0x254700,14, 0x254740,14, 0x254780,62, 0x25487c,1, 0x254a00,8, 0x254a24,15, 0x254a64,23, 0x254ac4,6, 0x254b00,4, 0x254b20,3, 0x254c00,6, 0x254c40,14, 0x254c80,9, 0x254d00,9, 0x254d2c,1, 0x254d40,3, 0x254d60,1, 0x254d80,3, 0x254e00,2, 0x254e0c,1, 0x254e14,5, 0x254e2c,1, 0x254e34,5, 0x254e4c,1, 0x254e54,5, 0x254e6c,1, 0x254e74,5, 0x254e8c,1, 0x254e94,5, 0x254eac,1, 0x254eb4,3, 0x255000,29, 0x255078,4, 0x255090,2, 0x2550a0,2, 0x2550b0,3, 0x2550c0,11, 0x255100,14, 0x255140,14, 0x255180,61, 0x255278,4, 0x255290,2, 0x2552a0,2, 0x2552b0,3, 0x2552c0,11, 0x255300,14, 0x255340,14, 0x255380,61, 0x255478,4, 0x255490,2, 0x2554a0,2, 0x2554b0,3, 0x2554c0,11, 0x255500,14, 0x255540,14, 0x255580,61, 0x255678,4, 0x255690,2, 0x2556a0,2, 0x2556b0,3, 0x2556c0,11, 0x255700,14, 0x255740,14, 0x255780,62, 0x25587c,1, 0x255a00,8, 0x255a24,15, 0x255a64,23, 0x255ac4,6, 0x255b00,4, 0x255b20,3, 0x255c00,6, 0x255c40,14, 0x255c80,9, 0x255d00,9, 0x255d2c,1, 0x255d40,3, 0x255d60,1, 0x255d80,3, 0x255e00,2, 0x255e0c,1, 0x255e14,5, 0x255e2c,1, 0x255e34,5, 0x255e4c,1, 0x255e54,5, 0x255e6c,1, 0x255e74,5, 0x255e8c,1, 0x255e94,5, 0x255eac,1, 0x255eb4,3, 0x256000,14, 0x256070,3, 0x256080,6, 0x256100,9, 0x256204,1, 0x25620c,6, 0x256240,13, 0x256280,16, 0x256800,19, 0x256850,10, 0x256880,19, 0x2568d0,10, 0x256900,19, 0x256950,10, 0x256980,19, 0x2569d0,10, 0x256a00,19, 0x256a50,10, 0x256a80,19, 0x256ad0,10, 0x256b00,19, 0x256b50,10, 0x256b80,19, 0x256bd0,10, 0x256c00,19, 0x256c60,6, 0x256c84,1, 0x256c94,8, 0x256cb8,9, 0x256ce0,4, 0x257000,6, 0x257020,3, 0x257040,7, 0x257060,6, 0x257100,5, 0x257138,1, 0x257144,1, 0x257150,2, 0x258000,6, 0x258020,3, 0x258030,9, 0x258100,6, 0x258120,10, 0x258150,8, 0x258400,1, 0x258428,1, 0x258450,1, 0x258478,1, 0x2584a0,8, 0x2585ac,1, 0x2585d8,4, 0x258600,6, 0x258620,6, 0x258640,3, 0x258800,6, 0x258820,3, 0x258830,4, 0x258858,2, 0x258864,1, 0x258874,3, 0x258898,2, 0x2588a4,1, 0x2588b4,3, 0x259000,6, 0x259020,6, 0x259040,3, 0x259080,14, 0x2590bc,1, 0x2590c4,13, 0x2590fc,1, 0x259200,20, 0x25925c,30, 0x259300,24, 0x259380,2, 0x2593a0,1, 0x2593c0,11, 0x259404,3, 0x259420,11, 0x259460,3, 0x259480,6, 0x259500,6, 0x259520,6, 0x259540,1, 0x259558,2, 0x259600,17, 0x259800,410, 0x25a000,6, 0x25a020,6, 0x25a040,3, 0x25a080,14, 0x25a0bc,1, 0x25a0c4,13, 0x25a0fc,1, 0x25a200,20, 0x25a25c,30, 0x25a300,24, 0x25a380,2, 0x25a3a0,1, 0x25a3c0,11, 0x25a404,3, 0x25a420,11, 0x25a460,3, 0x25a480,6, 0x25a500,6, 0x25a520,6, 0x25a540,1, 0x25a558,2, 0x25a600,17, 0x25a800,410, 0x25b000,4, 0x25b020,25, 0x25b088,8, 0x25b100,4, 0x25b120,25, 0x25b188,8, 0x25b200,34, 0x25b300,37, 0x25b400,16, 0x25b464,1, 0x25b474,3, 0x25b500,6, 0x25b520,2, 0x25b530,9, 0x25b570,10, 0x25b5a0,2, 0x25b5b0,9, 0x25b5f0,4, 0x25b620,7, 0x25b640,16, 0x25b700,6, 0x25b720,6, 0x25b740,6, 0x25b760,6, 0x25b780,3, 0x25b800,5, 0x25b818,1, 0x25b854,6, 0x25b880,2, 0x25b8a4,1, 0x25b8ac,2, 0x25ba00,28, 0x25ba7c,13, 0x25bab4,1, 0x25babc,10, 0x25bb04,1, 0x25bb0c,5, 0x25bb24,1, 0x25bb34,9, 0x25bb60,6, 0x25bb80,22, 0x25bbe0,3, 0x25bbf0,2, 0x25bc00,5, 0x25bc18,1, 0x25bc54,6, 0x25bc80,2, 0x25bca4,1, 0x25bcac,2, 0x25be00,28, 0x25be7c,13, 0x25beb4,1, 0x25bebc,10, 0x25bf04,1, 0x25bf0c,5, 0x25bf24,1, 0x25bf34,9, 0x25bf60,6, 0x25bf80,22, 0x25bfe0,3, 0x25bff0,2, 0x25c008,2, 0x25c014,11, 0x25c044,1, 0x25c04c,3, 0x25c05c,1, 0x25c064,1, 0x25c07c,1, 0x25c500,2, 0x25c518,1, 0x25c520,3, 0x25c540,6, 0x25c580,10, 0x25c808,2, 0x25c814,11, 0x25c844,1, 0x25c84c,3, 0x25c85c,1, 0x25c864,1, 0x25c87c,1, 0x25cd00,2, 0x25cd18,1, 0x25cd20,3, 0x25cd40,6, 0x25cd80,10, 0x25d800,2, 0x25d828,2, 0x25d850,2, 0x25d878,2, 0x25d8a0,6, 0x25d9ac,1, 0x25d9d8,4, 0x25da00,6, 0x25da20,6, 0x25da40,6, 0x25da60,6, 0x25da80,3, 0x25dc00,6, 0x25dc20,3, 0x25dc40,2, 0x25dc60,1, 0x260000,5, 0x260020,4, 0x260034,17, 0x260080,1, 0x2600a0,6, 0x260100,5, 0x260120,4, 0x260134,17, 0x260180,1, 0x2601a0,6, 0x260200,5, 0x260220,4, 0x260234,17, 0x260280,1, 0x2602a0,6, 0x260300,5, 0x260320,4, 0x260334,17, 0x260380,1, 0x2603a0,6, 0x260500,6, 0x26051c,7, 0x260540,1, 0x260c00,13, 0x260c40,12, 0x260d00,6, 0x260d80,14, 0x260dc0,2, 0x260e40,4, 0x260e60,3, 0x260e80,6, 0x261000,2, 0x261010,5, 0x261060,32, 0x261100,8, 0x261180,3, 0x261190,2, 0x26119c,5, 0x261218,9, 0x261240,3, 0x261250,6, 0x261280,1, 0x261288,6, 0x2612a4,1, 0x261400,8, 0x261424,2, 0x261500,5, 0x261520,4, 0x261800,24, 0x261864,5, 0x261880,8, 0x261900,13, 0x261980,4, 0x2619a0,6, 0x261a40,1, 0x261a60,1, 0x261a68,23, 0x261ac8,6, 0x261b80,12, 0x261c00,6, 0x261c20,6, 0x261c40,6, 0x261c60,3, 0x261d00,6, 0x261d20,6, 0x261d40,3, 0x262000,5, 0x262020,4, 0x262034,17, 0x262080,1, 0x2620a0,6, 0x262100,5, 0x262120,4, 0x262134,17, 0x262180,1, 0x2621a0,6, 0x262200,5, 0x262220,4, 0x262234,17, 0x262280,1, 0x2622a0,6, 0x262300,5, 0x262320,4, 0x262334,17, 0x262380,1, 0x2623a0,6, 0x262500,6, 0x26251c,7, 0x262540,1, 0x262c00,13, 0x262c40,12, 0x262d00,6, 0x262d80,14, 0x262dc0,2, 0x262e40,4, 0x262e60,3, 0x262e80,6, 0x263000,2, 0x263010,5, 0x263060,32, 0x263100,8, 0x263180,3, 0x263190,2, 0x26319c,5, 0x263218,9, 0x263240,3, 0x263250,6, 0x263280,1, 0x263288,6, 0x2632a4,1, 0x263400,8, 0x263424,2, 0x263500,5, 0x263520,4, 0x263800,24, 0x263864,5, 0x263880,8, 0x263900,13, 0x263980,4, 0x2639a0,6, 0x263a40,1, 0x263a60,1, 0x263a68,23, 0x263ac8,6, 0x263b80,12, 0x263c00,6, 0x263c20,6, 0x263c40,6, 0x263c60,3, 0x263d00,6, 0x263d20,6, 0x263d40,3, 0x264000,29, 0x264078,4, 0x264090,2, 0x2640a0,2, 0x2640b0,3, 0x2640c0,11, 0x264100,14, 0x264140,14, 0x264180,61, 0x264278,4, 0x264290,2, 0x2642a0,2, 0x2642b0,3, 0x2642c0,11, 0x264300,14, 0x264340,14, 0x264380,61, 0x264478,4, 0x264490,2, 0x2644a0,2, 0x2644b0,3, 0x2644c0,11, 0x264500,14, 0x264540,14, 0x264580,61, 0x264678,4, 0x264690,2, 0x2646a0,2, 0x2646b0,3, 0x2646c0,11, 0x264700,14, 0x264740,14, 0x264780,62, 0x26487c,1, 0x264a00,8, 0x264a24,15, 0x264a64,23, 0x264ac4,6, 0x264b00,4, 0x264b20,3, 0x264c00,6, 0x264c40,14, 0x264c80,9, 0x264d00,9, 0x264d2c,1, 0x264d40,3, 0x264d60,1, 0x264d80,3, 0x264e00,2, 0x264e0c,1, 0x264e14,5, 0x264e2c,1, 0x264e34,5, 0x264e4c,1, 0x264e54,5, 0x264e6c,1, 0x264e74,5, 0x264e8c,1, 0x264e94,5, 0x264eac,1, 0x264eb4,3, 0x265000,29, 0x265078,4, 0x265090,2, 0x2650a0,2, 0x2650b0,3, 0x2650c0,11, 0x265100,14, 0x265140,14, 0x265180,61, 0x265278,4, 0x265290,2, 0x2652a0,2, 0x2652b0,3, 0x2652c0,11, 0x265300,14, 0x265340,14, 0x265380,61, 0x265478,4, 0x265490,2, 0x2654a0,2, 0x2654b0,3, 0x2654c0,11, 0x265500,14, 0x265540,14, 0x265580,61, 0x265678,4, 0x265690,2, 0x2656a0,2, 0x2656b0,3, 0x2656c0,11, 0x265700,14, 0x265740,14, 0x265780,62, 0x26587c,1, 0x265a00,8, 0x265a24,15, 0x265a64,23, 0x265ac4,6, 0x265b00,4, 0x265b20,3, 0x265c00,6, 0x265c40,14, 0x265c80,9, 0x265d00,9, 0x265d2c,1, 0x265d40,3, 0x265d60,1, 0x265d80,3, 0x265e00,2, 0x265e0c,1, 0x265e14,5, 0x265e2c,1, 0x265e34,5, 0x265e4c,1, 0x265e54,5, 0x265e6c,1, 0x265e74,5, 0x265e8c,1, 0x265e94,5, 0x265eac,1, 0x265eb4,3, 0x266000,14, 0x266070,3, 0x266080,6, 0x266100,9, 0x266204,1, 0x26620c,6, 0x266240,13, 0x266280,16, 0x266800,19, 0x266850,10, 0x266880,19, 0x2668d0,10, 0x266900,19, 0x266950,10, 0x266980,19, 0x2669d0,10, 0x266a00,19, 0x266a50,10, 0x266a80,19, 0x266ad0,10, 0x266b00,19, 0x266b50,10, 0x266b80,19, 0x266bd0,10, 0x266c00,19, 0x266c60,6, 0x266c84,1, 0x266c94,8, 0x266cb8,9, 0x266ce0,4, 0x267000,6, 0x267020,3, 0x267040,7, 0x267060,6, 0x267100,5, 0x267138,1, 0x267144,1, 0x267150,2, 0x268000,6, 0x268020,3, 0x268030,9, 0x268100,6, 0x268120,10, 0x268150,8, 0x268400,1, 0x268428,1, 0x268450,1, 0x268478,1, 0x2684a0,8, 0x2685ac,1, 0x2685d8,4, 0x268600,6, 0x268620,6, 0x268640,3, 0x268800,6, 0x268820,3, 0x268830,4, 0x268858,2, 0x268864,1, 0x268874,3, 0x268898,2, 0x2688a4,1, 0x2688b4,3, 0x269000,6, 0x269020,6, 0x269040,3, 0x269080,14, 0x2690bc,1, 0x2690c4,13, 0x2690fc,1, 0x269200,20, 0x26925c,30, 0x269300,24, 0x269380,2, 0x2693a0,1, 0x2693c0,11, 0x269404,3, 0x269420,11, 0x269460,3, 0x269480,6, 0x269500,6, 0x269520,6, 0x269540,1, 0x269558,2, 0x269600,17, 0x269800,410, 0x26a000,6, 0x26a020,6, 0x26a040,3, 0x26a080,14, 0x26a0bc,1, 0x26a0c4,13, 0x26a0fc,1, 0x26a200,20, 0x26a25c,30, 0x26a300,24, 0x26a380,2, 0x26a3a0,1, 0x26a3c0,11, 0x26a404,3, 0x26a420,11, 0x26a460,3, 0x26a480,6, 0x26a500,6, 0x26a520,6, 0x26a540,1, 0x26a558,2, 0x26a600,17, 0x26a800,410, 0x26b000,4, 0x26b020,25, 0x26b088,8, 0x26b100,4, 0x26b120,25, 0x26b188,8, 0x26b200,34, 0x26b300,37, 0x26b400,16, 0x26b464,1, 0x26b474,3, 0x26b500,6, 0x26b520,2, 0x26b530,9, 0x26b570,10, 0x26b5a0,2, 0x26b5b0,9, 0x26b5f0,4, 0x26b620,7, 0x26b640,16, 0x26b700,6, 0x26b720,6, 0x26b740,6, 0x26b760,6, 0x26b780,3, 0x26b800,5, 0x26b818,1, 0x26b854,6, 0x26b880,2, 0x26b8a4,1, 0x26b8ac,2, 0x26ba00,28, 0x26ba7c,13, 0x26bab4,1, 0x26babc,10, 0x26bb04,1, 0x26bb0c,5, 0x26bb24,1, 0x26bb34,9, 0x26bb60,6, 0x26bb80,22, 0x26bbe0,3, 0x26bbf0,2, 0x26bc00,5, 0x26bc18,1, 0x26bc54,6, 0x26bc80,2, 0x26bca4,1, 0x26bcac,2, 0x26be00,28, 0x26be7c,13, 0x26beb4,1, 0x26bebc,10, 0x26bf04,1, 0x26bf0c,5, 0x26bf24,1, 0x26bf34,9, 0x26bf60,6, 0x26bf80,22, 0x26bfe0,3, 0x26bff0,2, 0x26c008,2, 0x26c014,11, 0x26c044,1, 0x26c04c,3, 0x26c05c,1, 0x26c064,1, 0x26c07c,1, 0x26c500,2, 0x26c518,1, 0x26c520,3, 0x26c540,6, 0x26c580,10, 0x26c808,2, 0x26c814,11, 0x26c844,1, 0x26c84c,3, 0x26c85c,1, 0x26c864,1, 0x26c87c,1, 0x26cd00,2, 0x26cd18,1, 0x26cd20,3, 0x26cd40,6, 0x26cd80,10, 0x26d800,2, 0x26d828,2, 0x26d850,2, 0x26d878,2, 0x26d8a0,6, 0x26d9ac,1, 0x26d9d8,4, 0x26da00,6, 0x26da20,6, 0x26da40,6, 0x26da60,6, 0x26da80,3, 0x26dc00,6, 0x26dc20,3, 0x26dc40,2, 0x26dc60,1, 0x270000,5, 0x270020,4, 0x270034,17, 0x270080,1, 0x2700a0,6, 0x270100,5, 0x270120,4, 0x270134,17, 0x270180,1, 0x2701a0,6, 0x270200,5, 0x270220,4, 0x270234,17, 0x270280,1, 0x2702a0,6, 0x270300,5, 0x270320,4, 0x270334,17, 0x270380,1, 0x2703a0,6, 0x270500,6, 0x27051c,7, 0x270540,1, 0x270c00,13, 0x270c40,12, 0x270d00,6, 0x270d80,14, 0x270dc0,2, 0x270e40,4, 0x270e60,3, 0x270e80,6, 0x271000,2, 0x271010,5, 0x271060,32, 0x271100,8, 0x271180,3, 0x271190,2, 0x27119c,5, 0x271218,9, 0x271240,3, 0x271250,6, 0x271280,1, 0x271288,6, 0x2712a4,1, 0x271400,8, 0x271424,2, 0x271500,5, 0x271520,4, 0x271800,24, 0x271864,5, 0x271880,8, 0x271900,13, 0x271980,4, 0x2719a0,6, 0x271a40,1, 0x271a60,1, 0x271a68,23, 0x271ac8,6, 0x271b80,12, 0x271c00,6, 0x271c20,6, 0x271c40,6, 0x271c60,3, 0x271d00,6, 0x271d20,6, 0x271d40,3, 0x272000,5, 0x272020,4, 0x272034,17, 0x272080,1, 0x2720a0,6, 0x272100,5, 0x272120,4, 0x272134,17, 0x272180,1, 0x2721a0,6, 0x272200,5, 0x272220,4, 0x272234,17, 0x272280,1, 0x2722a0,6, 0x272300,5, 0x272320,4, 0x272334,17, 0x272380,1, 0x2723a0,6, 0x272500,6, 0x27251c,7, 0x272540,1, 0x272c00,13, 0x272c40,12, 0x272d00,6, 0x272d80,14, 0x272dc0,2, 0x272e40,4, 0x272e60,3, 0x272e80,6, 0x273000,2, 0x273010,5, 0x273060,32, 0x273100,8, 0x273180,3, 0x273190,2, 0x27319c,5, 0x273218,9, 0x273240,3, 0x273250,6, 0x273280,1, 0x273288,6, 0x2732a4,1, 0x273400,8, 0x273424,2, 0x273500,5, 0x273520,4, 0x273800,24, 0x273864,5, 0x273880,8, 0x273900,13, 0x273980,4, 0x2739a0,6, 0x273a40,1, 0x273a60,1, 0x273a68,23, 0x273ac8,6, 0x273b80,12, 0x273c00,6, 0x273c20,6, 0x273c40,6, 0x273c60,3, 0x273d00,6, 0x273d20,6, 0x273d40,3, 0x274000,29, 0x274078,4, 0x274090,2, 0x2740a0,2, 0x2740b0,3, 0x2740c0,11, 0x274100,14, 0x274140,14, 0x274180,61, 0x274278,4, 0x274290,2, 0x2742a0,2, 0x2742b0,3, 0x2742c0,11, 0x274300,14, 0x274340,14, 0x274380,61, 0x274478,4, 0x274490,2, 0x2744a0,2, 0x2744b0,3, 0x2744c0,11, 0x274500,14, 0x274540,14, 0x274580,61, 0x274678,4, 0x274690,2, 0x2746a0,2, 0x2746b0,3, 0x2746c0,11, 0x274700,14, 0x274740,14, 0x274780,62, 0x27487c,1, 0x274a00,8, 0x274a24,15, 0x274a64,23, 0x274ac4,6, 0x274b00,4, 0x274b20,3, 0x274c00,6, 0x274c40,14, 0x274c80,9, 0x274d00,9, 0x274d2c,1, 0x274d40,3, 0x274d60,1, 0x274d80,3, 0x274e00,2, 0x274e0c,1, 0x274e14,5, 0x274e2c,1, 0x274e34,5, 0x274e4c,1, 0x274e54,5, 0x274e6c,1, 0x274e74,5, 0x274e8c,1, 0x274e94,5, 0x274eac,1, 0x274eb4,3, 0x275000,29, 0x275078,4, 0x275090,2, 0x2750a0,2, 0x2750b0,3, 0x2750c0,11, 0x275100,14, 0x275140,14, 0x275180,61, 0x275278,4, 0x275290,2, 0x2752a0,2, 0x2752b0,3, 0x2752c0,11, 0x275300,14, 0x275340,14, 0x275380,61, 0x275478,4, 0x275490,2, 0x2754a0,2, 0x2754b0,3, 0x2754c0,11, 0x275500,14, 0x275540,14, 0x275580,61, 0x275678,4, 0x275690,2, 0x2756a0,2, 0x2756b0,3, 0x2756c0,11, 0x275700,14, 0x275740,14, 0x275780,62, 0x27587c,1, 0x275a00,8, 0x275a24,15, 0x275a64,23, 0x275ac4,6, 0x275b00,4, 0x275b20,3, 0x275c00,6, 0x275c40,14, 0x275c80,9, 0x275d00,9, 0x275d2c,1, 0x275d40,3, 0x275d60,1, 0x275d80,3, 0x275e00,2, 0x275e0c,1, 0x275e14,5, 0x275e2c,1, 0x275e34,5, 0x275e4c,1, 0x275e54,5, 0x275e6c,1, 0x275e74,5, 0x275e8c,1, 0x275e94,5, 0x275eac,1, 0x275eb4,3, 0x276000,14, 0x276070,3, 0x276080,6, 0x276100,9, 0x276204,1, 0x27620c,6, 0x276240,13, 0x276280,16, 0x276800,19, 0x276850,10, 0x276880,19, 0x2768d0,10, 0x276900,19, 0x276950,10, 0x276980,19, 0x2769d0,10, 0x276a00,19, 0x276a50,10, 0x276a80,19, 0x276ad0,10, 0x276b00,19, 0x276b50,10, 0x276b80,19, 0x276bd0,10, 0x276c00,19, 0x276c60,6, 0x276c84,1, 0x276c94,8, 0x276cb8,9, 0x276ce0,4, 0x277000,6, 0x277020,3, 0x277040,7, 0x277060,6, 0x277100,5, 0x277138,1, 0x277144,1, 0x277150,2, 0x278000,6, 0x278020,3, 0x278030,9, 0x278100,6, 0x278120,10, 0x278150,8, 0x278400,1, 0x278428,1, 0x278450,1, 0x278478,1, 0x2784a0,8, 0x2785ac,1, 0x2785d8,4, 0x278600,6, 0x278620,6, 0x278640,3, 0x278800,6, 0x278820,3, 0x278830,4, 0x278858,2, 0x278864,1, 0x278874,3, 0x278898,2, 0x2788a4,1, 0x2788b4,3, 0x279000,6, 0x279020,6, 0x279040,3, 0x279080,14, 0x2790bc,1, 0x2790c4,13, 0x2790fc,1, 0x279200,20, 0x27925c,30, 0x279300,24, 0x279380,2, 0x2793a0,1, 0x2793c0,11, 0x279404,3, 0x279420,11, 0x279460,3, 0x279480,6, 0x279500,6, 0x279520,6, 0x279540,1, 0x279558,2, 0x279600,17, 0x279800,410, 0x27a000,6, 0x27a020,6, 0x27a040,3, 0x27a080,14, 0x27a0bc,1, 0x27a0c4,13, 0x27a0fc,1, 0x27a200,20, 0x27a25c,30, 0x27a300,24, 0x27a380,2, 0x27a3a0,1, 0x27a3c0,11, 0x27a404,3, 0x27a420,11, 0x27a460,3, 0x27a480,6, 0x27a500,6, 0x27a520,6, 0x27a540,1, 0x27a558,2, 0x27a600,17, 0x27a800,410, 0x27b000,4, 0x27b020,25, 0x27b088,8, 0x27b100,4, 0x27b120,25, 0x27b188,8, 0x27b200,34, 0x27b300,37, 0x27b400,16, 0x27b464,1, 0x27b474,3, 0x27b500,6, 0x27b520,2, 0x27b530,9, 0x27b570,10, 0x27b5a0,2, 0x27b5b0,9, 0x27b5f0,4, 0x27b620,7, 0x27b640,16, 0x27b700,6, 0x27b720,6, 0x27b740,6, 0x27b760,6, 0x27b780,3, 0x27b800,5, 0x27b818,1, 0x27b854,6, 0x27b880,2, 0x27b8a4,1, 0x27b8ac,2, 0x27ba00,28, 0x27ba7c,13, 0x27bab4,1, 0x27babc,10, 0x27bb04,1, 0x27bb0c,5, 0x27bb24,1, 0x27bb34,9, 0x27bb60,6, 0x27bb80,22, 0x27bbe0,3, 0x27bbf0,2, 0x27bc00,5, 0x27bc18,1, 0x27bc54,6, 0x27bc80,2, 0x27bca4,1, 0x27bcac,2, 0x27be00,28, 0x27be7c,13, 0x27beb4,1, 0x27bebc,10, 0x27bf04,1, 0x27bf0c,5, 0x27bf24,1, 0x27bf34,9, 0x27bf60,6, 0x27bf80,22, 0x27bfe0,3, 0x27bff0,2, 0x27c008,2, 0x27c014,11, 0x27c044,1, 0x27c04c,3, 0x27c05c,1, 0x27c064,1, 0x27c07c,1, 0x27c500,2, 0x27c518,1, 0x27c520,3, 0x27c540,6, 0x27c580,10, 0x27c808,2, 0x27c814,11, 0x27c844,1, 0x27c84c,3, 0x27c85c,1, 0x27c864,1, 0x27c87c,1, 0x27cd00,2, 0x27cd18,1, 0x27cd20,3, 0x27cd40,6, 0x27cd80,10, 0x27d800,2, 0x27d828,2, 0x27d850,2, 0x27d878,2, 0x27d8a0,6, 0x27d9ac,1, 0x27d9d8,4, 0x27da00,6, 0x27da20,6, 0x27da40,6, 0x27da60,6, 0x27da80,3, 0x27dc00,6, 0x27dc20,3, 0x27dc40,2, 0x27dc60,1, 0x280000,5, 0x280020,4, 0x280034,17, 0x280080,1, 0x2800a0,6, 0x280100,5, 0x280120,4, 0x280134,17, 0x280180,1, 0x2801a0,6, 0x280200,5, 0x280220,4, 0x280234,17, 0x280280,1, 0x2802a0,6, 0x280300,5, 0x280320,4, 0x280334,17, 0x280380,1, 0x2803a0,6, 0x280500,6, 0x28051c,7, 0x280540,1, 0x280c00,13, 0x280c40,12, 0x280d00,6, 0x280d80,14, 0x280dc0,2, 0x280e40,4, 0x280e60,3, 0x280e80,6, 0x281000,2, 0x281010,5, 0x281060,32, 0x281100,8, 0x281180,3, 0x281190,2, 0x28119c,5, 0x281218,9, 0x281240,3, 0x281250,6, 0x281280,1, 0x281288,6, 0x2812a4,1, 0x281400,8, 0x281424,2, 0x281500,5, 0x281520,4, 0x281800,24, 0x281864,5, 0x281880,8, 0x281900,13, 0x281980,4, 0x2819a0,6, 0x281a40,1, 0x281a60,1, 0x281a68,23, 0x281ac8,6, 0x281b80,12, 0x281c00,6, 0x281c20,6, 0x281c40,6, 0x281c60,3, 0x281d00,6, 0x281d20,6, 0x281d40,3, 0x282000,5, 0x282020,4, 0x282034,17, 0x282080,1, 0x2820a0,6, 0x282100,5, 0x282120,4, 0x282134,17, 0x282180,1, 0x2821a0,6, 0x282200,5, 0x282220,4, 0x282234,17, 0x282280,1, 0x2822a0,6, 0x282300,5, 0x282320,4, 0x282334,17, 0x282380,1, 0x2823a0,6, 0x282500,6, 0x28251c,7, 0x282540,1, 0x282c00,13, 0x282c40,12, 0x282d00,6, 0x282d80,14, 0x282dc0,2, 0x282e40,4, 0x282e60,3, 0x282e80,6, 0x283000,2, 0x283010,5, 0x283060,32, 0x283100,8, 0x283180,3, 0x283190,2, 0x28319c,5, 0x283218,9, 0x283240,3, 0x283250,6, 0x283280,1, 0x283288,6, 0x2832a4,1, 0x283400,8, 0x283424,2, 0x283500,5, 0x283520,4, 0x283800,24, 0x283864,5, 0x283880,8, 0x283900,13, 0x283980,4, 0x2839a0,6, 0x283a40,1, 0x283a60,1, 0x283a68,23, 0x283ac8,6, 0x283b80,12, 0x283c00,6, 0x283c20,6, 0x283c40,6, 0x283c60,3, 0x283d00,6, 0x283d20,6, 0x283d40,3, 0x284000,29, 0x284078,4, 0x284090,2, 0x2840a0,2, 0x2840b0,3, 0x2840c0,11, 0x284100,14, 0x284140,14, 0x284180,61, 0x284278,4, 0x284290,2, 0x2842a0,2, 0x2842b0,3, 0x2842c0,11, 0x284300,14, 0x284340,14, 0x284380,61, 0x284478,4, 0x284490,2, 0x2844a0,2, 0x2844b0,3, 0x2844c0,11, 0x284500,14, 0x284540,14, 0x284580,61, 0x284678,4, 0x284690,2, 0x2846a0,2, 0x2846b0,3, 0x2846c0,11, 0x284700,14, 0x284740,14, 0x284780,62, 0x28487c,1, 0x284a00,8, 0x284a24,15, 0x284a64,23, 0x284ac4,6, 0x284b00,4, 0x284b20,3, 0x284c00,6, 0x284c40,14, 0x284c80,9, 0x284d00,9, 0x284d2c,1, 0x284d40,3, 0x284d60,1, 0x284d80,3, 0x284e00,2, 0x284e0c,1, 0x284e14,5, 0x284e2c,1, 0x284e34,5, 0x284e4c,1, 0x284e54,5, 0x284e6c,1, 0x284e74,5, 0x284e8c,1, 0x284e94,5, 0x284eac,1, 0x284eb4,3, 0x285000,29, 0x285078,4, 0x285090,2, 0x2850a0,2, 0x2850b0,3, 0x2850c0,11, 0x285100,14, 0x285140,14, 0x285180,61, 0x285278,4, 0x285290,2, 0x2852a0,2, 0x2852b0,3, 0x2852c0,11, 0x285300,14, 0x285340,14, 0x285380,61, 0x285478,4, 0x285490,2, 0x2854a0,2, 0x2854b0,3, 0x2854c0,11, 0x285500,14, 0x285540,14, 0x285580,61, 0x285678,4, 0x285690,2, 0x2856a0,2, 0x2856b0,3, 0x2856c0,11, 0x285700,14, 0x285740,14, 0x285780,62, 0x28587c,1, 0x285a00,8, 0x285a24,15, 0x285a64,23, 0x285ac4,6, 0x285b00,4, 0x285b20,3, 0x285c00,6, 0x285c40,14, 0x285c80,9, 0x285d00,9, 0x285d2c,1, 0x285d40,3, 0x285d60,1, 0x285d80,3, 0x285e00,2, 0x285e0c,1, 0x285e14,5, 0x285e2c,1, 0x285e34,5, 0x285e4c,1, 0x285e54,5, 0x285e6c,1, 0x285e74,5, 0x285e8c,1, 0x285e94,5, 0x285eac,1, 0x285eb4,3, 0x286000,14, 0x286070,3, 0x286080,6, 0x286100,9, 0x286204,1, 0x28620c,6, 0x286240,13, 0x286280,16, 0x286800,19, 0x286850,10, 0x286880,19, 0x2868d0,10, 0x286900,19, 0x286950,10, 0x286980,19, 0x2869d0,10, 0x286a00,19, 0x286a50,10, 0x286a80,19, 0x286ad0,10, 0x286b00,19, 0x286b50,10, 0x286b80,19, 0x286bd0,10, 0x286c00,19, 0x286c60,6, 0x286c84,1, 0x286c94,8, 0x286cb8,9, 0x286ce0,4, 0x287000,6, 0x287020,3, 0x287040,7, 0x287060,6, 0x287100,5, 0x287138,1, 0x287144,1, 0x287150,2, 0x288000,6, 0x288020,3, 0x288030,9, 0x288100,6, 0x288120,10, 0x288150,8, 0x288400,1, 0x288428,1, 0x288450,1, 0x288478,1, 0x2884a0,8, 0x2885ac,1, 0x2885d8,4, 0x288600,6, 0x288620,6, 0x288640,3, 0x288800,6, 0x288820,3, 0x288830,4, 0x288858,2, 0x288864,1, 0x288874,3, 0x288898,2, 0x2888a4,1, 0x2888b4,3, 0x289000,6, 0x289020,6, 0x289040,3, 0x289080,14, 0x2890bc,1, 0x2890c4,13, 0x2890fc,1, 0x289200,20, 0x28925c,30, 0x289300,24, 0x289380,2, 0x2893a0,1, 0x2893c0,11, 0x289404,3, 0x289420,11, 0x289460,3, 0x289480,6, 0x289500,6, 0x289520,6, 0x289540,1, 0x289558,2, 0x289600,17, 0x289800,410, 0x28a000,6, 0x28a020,6, 0x28a040,3, 0x28a080,14, 0x28a0bc,1, 0x28a0c4,13, 0x28a0fc,1, 0x28a200,20, 0x28a25c,30, 0x28a300,24, 0x28a380,2, 0x28a3a0,1, 0x28a3c0,11, 0x28a404,3, 0x28a420,11, 0x28a460,3, 0x28a480,6, 0x28a500,6, 0x28a520,6, 0x28a540,1, 0x28a558,2, 0x28a600,17, 0x28a800,410, 0x28b000,4, 0x28b020,25, 0x28b088,8, 0x28b100,4, 0x28b120,25, 0x28b188,8, 0x28b200,34, 0x28b300,37, 0x28b400,16, 0x28b464,1, 0x28b474,3, 0x28b500,6, 0x28b520,2, 0x28b530,9, 0x28b570,10, 0x28b5a0,2, 0x28b5b0,9, 0x28b5f0,4, 0x28b620,7, 0x28b640,16, 0x28b700,6, 0x28b720,6, 0x28b740,6, 0x28b760,6, 0x28b780,3, 0x28b800,5, 0x28b818,1, 0x28b854,6, 0x28b880,2, 0x28b8a4,1, 0x28b8ac,2, 0x28ba00,28, 0x28ba7c,13, 0x28bab4,1, 0x28babc,10, 0x28bb04,1, 0x28bb0c,5, 0x28bb24,1, 0x28bb34,9, 0x28bb60,6, 0x28bb80,22, 0x28bbe0,3, 0x28bbf0,2, 0x28bc00,5, 0x28bc18,1, 0x28bc54,6, 0x28bc80,2, 0x28bca4,1, 0x28bcac,2, 0x28be00,28, 0x28be7c,13, 0x28beb4,1, 0x28bebc,10, 0x28bf04,1, 0x28bf0c,5, 0x28bf24,1, 0x28bf34,9, 0x28bf60,6, 0x28bf80,22, 0x28bfe0,3, 0x28bff0,2, 0x28c008,2, 0x28c014,11, 0x28c044,1, 0x28c04c,3, 0x28c05c,1, 0x28c064,1, 0x28c07c,1, 0x28c500,2, 0x28c518,1, 0x28c520,3, 0x28c540,6, 0x28c580,10, 0x28c808,2, 0x28c814,11, 0x28c844,1, 0x28c84c,3, 0x28c85c,1, 0x28c864,1, 0x28c87c,1, 0x28cd00,2, 0x28cd18,1, 0x28cd20,3, 0x28cd40,6, 0x28cd80,10, 0x28d800,2, 0x28d828,2, 0x28d850,2, 0x28d878,2, 0x28d8a0,6, 0x28d9ac,1, 0x28d9d8,4, 0x28da00,6, 0x28da20,6, 0x28da40,6, 0x28da60,6, 0x28da80,3, 0x28dc00,6, 0x28dc20,3, 0x28dc40,2, 0x28dc60,1, 0x290000,5, 0x290020,4, 0x290034,17, 0x290080,1, 0x2900a0,6, 0x290100,5, 0x290120,4, 0x290134,17, 0x290180,1, 0x2901a0,6, 0x290200,5, 0x290220,4, 0x290234,17, 0x290280,1, 0x2902a0,6, 0x290300,5, 0x290320,4, 0x290334,17, 0x290380,1, 0x2903a0,6, 0x290500,6, 0x29051c,7, 0x290540,1, 0x290c00,13, 0x290c40,12, 0x290d00,6, 0x290d80,14, 0x290dc0,2, 0x290e40,4, 0x290e60,3, 0x290e80,6, 0x291000,2, 0x291010,5, 0x291060,32, 0x291100,8, 0x291180,3, 0x291190,2, 0x29119c,5, 0x291218,9, 0x291240,3, 0x291250,6, 0x291280,1, 0x291288,6, 0x2912a4,1, 0x291400,8, 0x291424,2, 0x291500,5, 0x291520,4, 0x291800,24, 0x291864,5, 0x291880,8, 0x291900,13, 0x291980,4, 0x2919a0,6, 0x291a40,1, 0x291a60,1, 0x291a68,23, 0x291ac8,6, 0x291b80,12, 0x291c00,6, 0x291c20,6, 0x291c40,6, 0x291c60,3, 0x291d00,6, 0x291d20,6, 0x291d40,3, 0x292000,5, 0x292020,4, 0x292034,17, 0x292080,1, 0x2920a0,6, 0x292100,5, 0x292120,4, 0x292134,17, 0x292180,1, 0x2921a0,6, 0x292200,5, 0x292220,4, 0x292234,17, 0x292280,1, 0x2922a0,6, 0x292300,5, 0x292320,4, 0x292334,17, 0x292380,1, 0x2923a0,6, 0x292500,6, 0x29251c,7, 0x292540,1, 0x292c00,13, 0x292c40,12, 0x292d00,6, 0x292d80,14, 0x292dc0,2, 0x292e40,4, 0x292e60,3, 0x292e80,6, 0x293000,2, 0x293010,5, 0x293060,32, 0x293100,8, 0x293180,3, 0x293190,2, 0x29319c,5, 0x293218,9, 0x293240,3, 0x293250,6, 0x293280,1, 0x293288,6, 0x2932a4,1, 0x293400,8, 0x293424,2, 0x293500,5, 0x293520,4, 0x293800,24, 0x293864,5, 0x293880,8, 0x293900,13, 0x293980,4, 0x2939a0,6, 0x293a40,1, 0x293a60,1, 0x293a68,23, 0x293ac8,6, 0x293b80,12, 0x293c00,6, 0x293c20,6, 0x293c40,6, 0x293c60,3, 0x293d00,6, 0x293d20,6, 0x293d40,3, 0x294000,29, 0x294078,4, 0x294090,2, 0x2940a0,2, 0x2940b0,3, 0x2940c0,11, 0x294100,14, 0x294140,14, 0x294180,61, 0x294278,4, 0x294290,2, 0x2942a0,2, 0x2942b0,3, 0x2942c0,11, 0x294300,14, 0x294340,14, 0x294380,61, 0x294478,4, 0x294490,2, 0x2944a0,2, 0x2944b0,3, 0x2944c0,11, 0x294500,14, 0x294540,14, 0x294580,61, 0x294678,4, 0x294690,2, 0x2946a0,2, 0x2946b0,3, 0x2946c0,11, 0x294700,14, 0x294740,14, 0x294780,62, 0x29487c,1, 0x294a00,8, 0x294a24,15, 0x294a64,23, 0x294ac4,6, 0x294b00,4, 0x294b20,3, 0x294c00,6, 0x294c40,14, 0x294c80,9, 0x294d00,9, 0x294d2c,1, 0x294d40,3, 0x294d60,1, 0x294d80,3, 0x294e00,2, 0x294e0c,1, 0x294e14,5, 0x294e2c,1, 0x294e34,5, 0x294e4c,1, 0x294e54,5, 0x294e6c,1, 0x294e74,5, 0x294e8c,1, 0x294e94,5, 0x294eac,1, 0x294eb4,3, 0x295000,29, 0x295078,4, 0x295090,2, 0x2950a0,2, 0x2950b0,3, 0x2950c0,11, 0x295100,14, 0x295140,14, 0x295180,61, 0x295278,4, 0x295290,2, 0x2952a0,2, 0x2952b0,3, 0x2952c0,11, 0x295300,14, 0x295340,14, 0x295380,61, 0x295478,4, 0x295490,2, 0x2954a0,2, 0x2954b0,3, 0x2954c0,11, 0x295500,14, 0x295540,14, 0x295580,61, 0x295678,4, 0x295690,2, 0x2956a0,2, 0x2956b0,3, 0x2956c0,11, 0x295700,14, 0x295740,14, 0x295780,62, 0x29587c,1, 0x295a00,8, 0x295a24,15, 0x295a64,23, 0x295ac4,6, 0x295b00,4, 0x295b20,3, 0x295c00,6, 0x295c40,14, 0x295c80,9, 0x295d00,9, 0x295d2c,1, 0x295d40,3, 0x295d60,1, 0x295d80,3, 0x295e00,2, 0x295e0c,1, 0x295e14,5, 0x295e2c,1, 0x295e34,5, 0x295e4c,1, 0x295e54,5, 0x295e6c,1, 0x295e74,5, 0x295e8c,1, 0x295e94,5, 0x295eac,1, 0x295eb4,3, 0x296000,14, 0x296070,3, 0x296080,6, 0x296100,9, 0x296204,1, 0x29620c,6, 0x296240,13, 0x296280,16, 0x296800,19, 0x296850,10, 0x296880,19, 0x2968d0,10, 0x296900,19, 0x296950,10, 0x296980,19, 0x2969d0,10, 0x296a00,19, 0x296a50,10, 0x296a80,19, 0x296ad0,10, 0x296b00,19, 0x296b50,10, 0x296b80,19, 0x296bd0,10, 0x296c00,19, 0x296c60,6, 0x296c84,1, 0x296c94,8, 0x296cb8,9, 0x296ce0,4, 0x297000,6, 0x297020,3, 0x297040,7, 0x297060,6, 0x297100,5, 0x297138,1, 0x297144,1, 0x297150,2, 0x298000,6, 0x298020,3, 0x298030,9, 0x298100,6, 0x298120,10, 0x298150,8, 0x298400,1, 0x298428,1, 0x298450,1, 0x298478,1, 0x2984a0,8, 0x2985ac,1, 0x2985d8,4, 0x298600,6, 0x298620,6, 0x298640,3, 0x298800,6, 0x298820,3, 0x298830,4, 0x298858,2, 0x298864,1, 0x298874,3, 0x298898,2, 0x2988a4,1, 0x2988b4,3, 0x299000,6, 0x299020,6, 0x299040,3, 0x299080,14, 0x2990bc,1, 0x2990c4,13, 0x2990fc,1, 0x299200,20, 0x29925c,30, 0x299300,24, 0x299380,2, 0x2993a0,1, 0x2993c0,11, 0x299404,3, 0x299420,11, 0x299460,3, 0x299480,6, 0x299500,6, 0x299520,6, 0x299540,1, 0x299558,2, 0x299600,17, 0x299800,410, 0x29a000,6, 0x29a020,6, 0x29a040,3, 0x29a080,14, 0x29a0bc,1, 0x29a0c4,13, 0x29a0fc,1, 0x29a200,20, 0x29a25c,30, 0x29a300,24, 0x29a380,2, 0x29a3a0,1, 0x29a3c0,11, 0x29a404,3, 0x29a420,11, 0x29a460,3, 0x29a480,6, 0x29a500,6, 0x29a520,6, 0x29a540,1, 0x29a558,2, 0x29a600,17, 0x29a800,410, 0x29b000,4, 0x29b020,25, 0x29b088,8, 0x29b100,4, 0x29b120,25, 0x29b188,8, 0x29b200,34, 0x29b300,37, 0x29b400,16, 0x29b464,1, 0x29b474,3, 0x29b500,6, 0x29b520,2, 0x29b530,9, 0x29b570,10, 0x29b5a0,2, 0x29b5b0,9, 0x29b5f0,4, 0x29b620,7, 0x29b640,16, 0x29b700,6, 0x29b720,6, 0x29b740,6, 0x29b760,6, 0x29b780,3, 0x29b800,5, 0x29b818,1, 0x29b854,6, 0x29b880,2, 0x29b8a4,1, 0x29b8ac,2, 0x29ba00,28, 0x29ba7c,13, 0x29bab4,1, 0x29babc,10, 0x29bb04,1, 0x29bb0c,5, 0x29bb24,1, 0x29bb34,9, 0x29bb60,6, 0x29bb80,22, 0x29bbe0,3, 0x29bbf0,2, 0x29bc00,5, 0x29bc18,1, 0x29bc54,6, 0x29bc80,2, 0x29bca4,1, 0x29bcac,2, 0x29be00,28, 0x29be7c,13, 0x29beb4,1, 0x29bebc,10, 0x29bf04,1, 0x29bf0c,5, 0x29bf24,1, 0x29bf34,9, 0x29bf60,6, 0x29bf80,22, 0x29bfe0,3, 0x29bff0,2, 0x29c008,2, 0x29c014,11, 0x29c044,1, 0x29c04c,3, 0x29c05c,1, 0x29c064,1, 0x29c07c,1, 0x29c500,2, 0x29c518,1, 0x29c520,3, 0x29c540,6, 0x29c580,10, 0x29c808,2, 0x29c814,11, 0x29c844,1, 0x29c84c,3, 0x29c85c,1, 0x29c864,1, 0x29c87c,1, 0x29cd00,2, 0x29cd18,1, 0x29cd20,3, 0x29cd40,6, 0x29cd80,10, 0x29d800,2, 0x29d828,2, 0x29d850,2, 0x29d878,2, 0x29d8a0,6, 0x29d9ac,1, 0x29d9d8,4, 0x29da00,6, 0x29da20,6, 0x29da40,6, 0x29da60,6, 0x29da80,3, 0x29dc00,6, 0x29dc20,3, 0x29dc40,2, 0x29dc60,1, 0x2a0000,5, 0x2a0020,4, 0x2a0034,17, 0x2a0080,1, 0x2a00a0,6, 0x2a0100,5, 0x2a0120,4, 0x2a0134,17, 0x2a0180,1, 0x2a01a0,6, 0x2a0200,5, 0x2a0220,4, 0x2a0234,17, 0x2a0280,1, 0x2a02a0,6, 0x2a0300,5, 0x2a0320,4, 0x2a0334,17, 0x2a0380,1, 0x2a03a0,6, 0x2a0500,6, 0x2a051c,7, 0x2a0540,1, 0x2a0c00,13, 0x2a0c40,12, 0x2a0d00,6, 0x2a0d80,14, 0x2a0dc0,2, 0x2a0e40,4, 0x2a0e60,3, 0x2a0e80,6, 0x2a1000,2, 0x2a1010,5, 0x2a1060,32, 0x2a1100,8, 0x2a1180,3, 0x2a1190,2, 0x2a119c,5, 0x2a1218,9, 0x2a1240,3, 0x2a1250,6, 0x2a1280,1, 0x2a1288,6, 0x2a12a4,1, 0x2a1400,8, 0x2a1424,2, 0x2a1500,5, 0x2a1520,4, 0x2a1800,24, 0x2a1864,5, 0x2a1880,8, 0x2a1900,13, 0x2a1980,4, 0x2a19a0,6, 0x2a1a40,1, 0x2a1a60,1, 0x2a1a68,23, 0x2a1ac8,6, 0x2a1b80,12, 0x2a1c00,6, 0x2a1c20,6, 0x2a1c40,6, 0x2a1c60,3, 0x2a1d00,6, 0x2a1d20,6, 0x2a1d40,3, 0x2a2000,5, 0x2a2020,4, 0x2a2034,17, 0x2a2080,1, 0x2a20a0,6, 0x2a2100,5, 0x2a2120,4, 0x2a2134,17, 0x2a2180,1, 0x2a21a0,6, 0x2a2200,5, 0x2a2220,4, 0x2a2234,17, 0x2a2280,1, 0x2a22a0,6, 0x2a2300,5, 0x2a2320,4, 0x2a2334,17, 0x2a2380,1, 0x2a23a0,6, 0x2a2500,6, 0x2a251c,7, 0x2a2540,1, 0x2a2c00,13, 0x2a2c40,12, 0x2a2d00,6, 0x2a2d80,14, 0x2a2dc0,2, 0x2a2e40,4, 0x2a2e60,3, 0x2a2e80,6, 0x2a3000,2, 0x2a3010,5, 0x2a3060,32, 0x2a3100,8, 0x2a3180,3, 0x2a3190,2, 0x2a319c,5, 0x2a3218,9, 0x2a3240,3, 0x2a3250,6, 0x2a3280,1, 0x2a3288,6, 0x2a32a4,1, 0x2a3400,8, 0x2a3424,2, 0x2a3500,5, 0x2a3520,4, 0x2a3800,24, 0x2a3864,5, 0x2a3880,8, 0x2a3900,13, 0x2a3980,4, 0x2a39a0,6, 0x2a3a40,1, 0x2a3a60,1, 0x2a3a68,23, 0x2a3ac8,6, 0x2a3b80,12, 0x2a3c00,6, 0x2a3c20,6, 0x2a3c40,6, 0x2a3c60,3, 0x2a3d00,6, 0x2a3d20,6, 0x2a3d40,3, 0x2a4000,29, 0x2a4078,4, 0x2a4090,2, 0x2a40a0,2, 0x2a40b0,3, 0x2a40c0,11, 0x2a4100,14, 0x2a4140,14, 0x2a4180,61, 0x2a4278,4, 0x2a4290,2, 0x2a42a0,2, 0x2a42b0,3, 0x2a42c0,11, 0x2a4300,14, 0x2a4340,14, 0x2a4380,61, 0x2a4478,4, 0x2a4490,2, 0x2a44a0,2, 0x2a44b0,3, 0x2a44c0,11, 0x2a4500,14, 0x2a4540,14, 0x2a4580,61, 0x2a4678,4, 0x2a4690,2, 0x2a46a0,2, 0x2a46b0,3, 0x2a46c0,11, 0x2a4700,14, 0x2a4740,14, 0x2a4780,62, 0x2a487c,1, 0x2a4a00,8, 0x2a4a24,15, 0x2a4a64,23, 0x2a4ac4,6, 0x2a4b00,4, 0x2a4b20,3, 0x2a4c00,6, 0x2a4c40,14, 0x2a4c80,9, 0x2a4d00,9, 0x2a4d2c,1, 0x2a4d40,3, 0x2a4d60,1, 0x2a4d80,3, 0x2a4e00,2, 0x2a4e0c,1, 0x2a4e14,5, 0x2a4e2c,1, 0x2a4e34,5, 0x2a4e4c,1, 0x2a4e54,5, 0x2a4e6c,1, 0x2a4e74,5, 0x2a4e8c,1, 0x2a4e94,5, 0x2a4eac,1, 0x2a4eb4,3, 0x2a5000,29, 0x2a5078,4, 0x2a5090,2, 0x2a50a0,2, 0x2a50b0,3, 0x2a50c0,11, 0x2a5100,14, 0x2a5140,14, 0x2a5180,61, 0x2a5278,4, 0x2a5290,2, 0x2a52a0,2, 0x2a52b0,3, 0x2a52c0,11, 0x2a5300,14, 0x2a5340,14, 0x2a5380,61, 0x2a5478,4, 0x2a5490,2, 0x2a54a0,2, 0x2a54b0,3, 0x2a54c0,11, 0x2a5500,14, 0x2a5540,14, 0x2a5580,61, 0x2a5678,4, 0x2a5690,2, 0x2a56a0,2, 0x2a56b0,3, 0x2a56c0,11, 0x2a5700,14, 0x2a5740,14, 0x2a5780,62, 0x2a587c,1, 0x2a5a00,8, 0x2a5a24,15, 0x2a5a64,23, 0x2a5ac4,6, 0x2a5b00,4, 0x2a5b20,3, 0x2a5c00,6, 0x2a5c40,14, 0x2a5c80,9, 0x2a5d00,9, 0x2a5d2c,1, 0x2a5d40,3, 0x2a5d60,1, 0x2a5d80,3, 0x2a5e00,2, 0x2a5e0c,1, 0x2a5e14,5, 0x2a5e2c,1, 0x2a5e34,5, 0x2a5e4c,1, 0x2a5e54,5, 0x2a5e6c,1, 0x2a5e74,5, 0x2a5e8c,1, 0x2a5e94,5, 0x2a5eac,1, 0x2a5eb4,3, 0x2a6000,14, 0x2a6070,3, 0x2a6080,6, 0x2a6100,9, 0x2a6204,1, 0x2a620c,6, 0x2a6240,13, 0x2a6280,16, 0x2a6800,19, 0x2a6850,10, 0x2a6880,19, 0x2a68d0,10, 0x2a6900,19, 0x2a6950,10, 0x2a6980,19, 0x2a69d0,10, 0x2a6a00,19, 0x2a6a50,10, 0x2a6a80,19, 0x2a6ad0,10, 0x2a6b00,19, 0x2a6b50,10, 0x2a6b80,19, 0x2a6bd0,10, 0x2a6c00,19, 0x2a6c60,6, 0x2a6c84,1, 0x2a6c94,8, 0x2a6cb8,9, 0x2a6ce0,4, 0x2a7000,6, 0x2a7020,3, 0x2a7040,7, 0x2a7060,6, 0x2a7100,5, 0x2a7138,1, 0x2a7144,1, 0x2a7150,2, 0x2a8000,6, 0x2a8020,3, 0x2a8030,9, 0x2a8100,6, 0x2a8120,10, 0x2a8150,8, 0x2a8400,1, 0x2a8428,1, 0x2a8450,1, 0x2a8478,1, 0x2a84a0,8, 0x2a85ac,1, 0x2a85d8,4, 0x2a8600,6, 0x2a8620,6, 0x2a8640,3, 0x2a8800,6, 0x2a8820,3, 0x2a8830,4, 0x2a8858,2, 0x2a8864,1, 0x2a8874,3, 0x2a8898,2, 0x2a88a4,1, 0x2a88b4,3, 0x2a9000,6, 0x2a9020,6, 0x2a9040,3, 0x2a9080,14, 0x2a90bc,1, 0x2a90c4,13, 0x2a90fc,1, 0x2a9200,20, 0x2a925c,30, 0x2a9300,24, 0x2a9380,2, 0x2a93a0,1, 0x2a93c0,11, 0x2a9404,3, 0x2a9420,11, 0x2a9460,3, 0x2a9480,6, 0x2a9500,6, 0x2a9520,6, 0x2a9540,1, 0x2a9558,2, 0x2a9600,17, 0x2a9800,410, 0x2aa000,6, 0x2aa020,6, 0x2aa040,3, 0x2aa080,14, 0x2aa0bc,1, 0x2aa0c4,13, 0x2aa0fc,1, 0x2aa200,20, 0x2aa25c,30, 0x2aa300,24, 0x2aa380,2, 0x2aa3a0,1, 0x2aa3c0,11, 0x2aa404,3, 0x2aa420,11, 0x2aa460,3, 0x2aa480,6, 0x2aa500,6, 0x2aa520,6, 0x2aa540,1, 0x2aa558,2, 0x2aa600,17, 0x2aa800,410, 0x2ab000,4, 0x2ab020,25, 0x2ab088,8, 0x2ab100,4, 0x2ab120,25, 0x2ab188,8, 0x2ab200,34, 0x2ab300,37, 0x2ab400,16, 0x2ab464,1, 0x2ab474,3, 0x2ab500,6, 0x2ab520,2, 0x2ab530,9, 0x2ab570,10, 0x2ab5a0,2, 0x2ab5b0,9, 0x2ab5f0,4, 0x2ab620,7, 0x2ab640,16, 0x2ab700,6, 0x2ab720,6, 0x2ab740,6, 0x2ab760,6, 0x2ab780,3, 0x2ab800,5, 0x2ab818,1, 0x2ab854,6, 0x2ab880,2, 0x2ab8a4,1, 0x2ab8ac,2, 0x2aba00,28, 0x2aba7c,13, 0x2abab4,1, 0x2ababc,10, 0x2abb04,1, 0x2abb0c,5, 0x2abb24,1, 0x2abb34,9, 0x2abb60,6, 0x2abb80,22, 0x2abbe0,3, 0x2abbf0,2, 0x2abc00,5, 0x2abc18,1, 0x2abc54,6, 0x2abc80,2, 0x2abca4,1, 0x2abcac,2, 0x2abe00,28, 0x2abe7c,13, 0x2abeb4,1, 0x2abebc,10, 0x2abf04,1, 0x2abf0c,5, 0x2abf24,1, 0x2abf34,9, 0x2abf60,6, 0x2abf80,22, 0x2abfe0,3, 0x2abff0,2, 0x2ac008,2, 0x2ac014,11, 0x2ac044,1, 0x2ac04c,3, 0x2ac05c,1, 0x2ac064,1, 0x2ac07c,1, 0x2ac500,2, 0x2ac518,1, 0x2ac520,3, 0x2ac540,6, 0x2ac580,10, 0x2ac808,2, 0x2ac814,11, 0x2ac844,1, 0x2ac84c,3, 0x2ac85c,1, 0x2ac864,1, 0x2ac87c,1, 0x2acd00,2, 0x2acd18,1, 0x2acd20,3, 0x2acd40,6, 0x2acd80,10, 0x2ad800,2, 0x2ad828,2, 0x2ad850,2, 0x2ad878,2, 0x2ad8a0,6, 0x2ad9ac,1, 0x2ad9d8,4, 0x2ada00,6, 0x2ada20,6, 0x2ada40,6, 0x2ada60,6, 0x2ada80,3, 0x2adc00,6, 0x2adc20,3, 0x2adc40,2, 0x2adc60,1, 0x2b0000,5, 0x2b0020,4, 0x2b0034,17, 0x2b0080,1, 0x2b00a0,6, 0x2b0100,5, 0x2b0120,4, 0x2b0134,17, 0x2b0180,1, 0x2b01a0,6, 0x2b0200,5, 0x2b0220,4, 0x2b0234,17, 0x2b0280,1, 0x2b02a0,6, 0x2b0300,5, 0x2b0320,4, 0x2b0334,17, 0x2b0380,1, 0x2b03a0,6, 0x2b0500,6, 0x2b051c,7, 0x2b0540,1, 0x2b0c00,13, 0x2b0c40,12, 0x2b0d00,6, 0x2b0d80,14, 0x2b0dc0,2, 0x2b0e40,4, 0x2b0e60,3, 0x2b0e80,6, 0x2b1000,2, 0x2b1010,5, 0x2b1060,32, 0x2b1100,8, 0x2b1180,3, 0x2b1190,2, 0x2b119c,5, 0x2b1218,9, 0x2b1240,3, 0x2b1250,6, 0x2b1280,1, 0x2b1288,6, 0x2b12a4,1, 0x2b1400,8, 0x2b1424,2, 0x2b1500,5, 0x2b1520,4, 0x2b1800,24, 0x2b1864,5, 0x2b1880,8, 0x2b1900,13, 0x2b1980,4, 0x2b19a0,6, 0x2b1a40,1, 0x2b1a60,1, 0x2b1a68,23, 0x2b1ac8,6, 0x2b1b80,12, 0x2b1c00,6, 0x2b1c20,6, 0x2b1c40,6, 0x2b1c60,3, 0x2b1d00,6, 0x2b1d20,6, 0x2b1d40,3, 0x2b2000,5, 0x2b2020,4, 0x2b2034,17, 0x2b2080,1, 0x2b20a0,6, 0x2b2100,5, 0x2b2120,4, 0x2b2134,17, 0x2b2180,1, 0x2b21a0,6, 0x2b2200,5, 0x2b2220,4, 0x2b2234,17, 0x2b2280,1, 0x2b22a0,6, 0x2b2300,5, 0x2b2320,4, 0x2b2334,17, 0x2b2380,1, 0x2b23a0,6, 0x2b2500,6, 0x2b251c,7, 0x2b2540,1, 0x2b2c00,13, 0x2b2c40,12, 0x2b2d00,6, 0x2b2d80,14, 0x2b2dc0,2, 0x2b2e40,4, 0x2b2e60,3, 0x2b2e80,6, 0x2b3000,2, 0x2b3010,5, 0x2b3060,32, 0x2b3100,8, 0x2b3180,3, 0x2b3190,2, 0x2b319c,5, 0x2b3218,9, 0x2b3240,3, 0x2b3250,6, 0x2b3280,1, 0x2b3288,6, 0x2b32a4,1, 0x2b3400,8, 0x2b3424,2, 0x2b3500,5, 0x2b3520,4, 0x2b3800,24, 0x2b3864,5, 0x2b3880,8, 0x2b3900,13, 0x2b3980,4, 0x2b39a0,6, 0x2b3a40,1, 0x2b3a60,1, 0x2b3a68,23, 0x2b3ac8,6, 0x2b3b80,12, 0x2b3c00,6, 0x2b3c20,6, 0x2b3c40,6, 0x2b3c60,3, 0x2b3d00,6, 0x2b3d20,6, 0x2b3d40,3, 0x2b4000,29, 0x2b4078,4, 0x2b4090,2, 0x2b40a0,2, 0x2b40b0,3, 0x2b40c0,11, 0x2b4100,14, 0x2b4140,14, 0x2b4180,61, 0x2b4278,4, 0x2b4290,2, 0x2b42a0,2, 0x2b42b0,3, 0x2b42c0,11, 0x2b4300,14, 0x2b4340,14, 0x2b4380,61, 0x2b4478,4, 0x2b4490,2, 0x2b44a0,2, 0x2b44b0,3, 0x2b44c0,11, 0x2b4500,14, 0x2b4540,14, 0x2b4580,61, 0x2b4678,4, 0x2b4690,2, 0x2b46a0,2, 0x2b46b0,3, 0x2b46c0,11, 0x2b4700,14, 0x2b4740,14, 0x2b4780,62, 0x2b487c,1, 0x2b4a00,8, 0x2b4a24,15, 0x2b4a64,23, 0x2b4ac4,6, 0x2b4b00,4, 0x2b4b20,3, 0x2b4c00,6, 0x2b4c40,14, 0x2b4c80,9, 0x2b4d00,9, 0x2b4d2c,1, 0x2b4d40,3, 0x2b4d60,1, 0x2b4d80,3, 0x2b4e00,2, 0x2b4e0c,1, 0x2b4e14,5, 0x2b4e2c,1, 0x2b4e34,5, 0x2b4e4c,1, 0x2b4e54,5, 0x2b4e6c,1, 0x2b4e74,5, 0x2b4e8c,1, 0x2b4e94,5, 0x2b4eac,1, 0x2b4eb4,3, 0x2b5000,29, 0x2b5078,4, 0x2b5090,2, 0x2b50a0,2, 0x2b50b0,3, 0x2b50c0,11, 0x2b5100,14, 0x2b5140,14, 0x2b5180,61, 0x2b5278,4, 0x2b5290,2, 0x2b52a0,2, 0x2b52b0,3, 0x2b52c0,11, 0x2b5300,14, 0x2b5340,14, 0x2b5380,61, 0x2b5478,4, 0x2b5490,2, 0x2b54a0,2, 0x2b54b0,3, 0x2b54c0,11, 0x2b5500,14, 0x2b5540,14, 0x2b5580,61, 0x2b5678,4, 0x2b5690,2, 0x2b56a0,2, 0x2b56b0,3, 0x2b56c0,11, 0x2b5700,14, 0x2b5740,14, 0x2b5780,62, 0x2b587c,1, 0x2b5a00,8, 0x2b5a24,15, 0x2b5a64,23, 0x2b5ac4,6, 0x2b5b00,4, 0x2b5b20,3, 0x2b5c00,6, 0x2b5c40,14, 0x2b5c80,9, 0x2b5d00,9, 0x2b5d2c,1, 0x2b5d40,3, 0x2b5d60,1, 0x2b5d80,3, 0x2b5e00,2, 0x2b5e0c,1, 0x2b5e14,5, 0x2b5e2c,1, 0x2b5e34,5, 0x2b5e4c,1, 0x2b5e54,5, 0x2b5e6c,1, 0x2b5e74,5, 0x2b5e8c,1, 0x2b5e94,5, 0x2b5eac,1, 0x2b5eb4,3, 0x2b6000,14, 0x2b6070,3, 0x2b6080,6, 0x2b6100,9, 0x2b6204,1, 0x2b620c,6, 0x2b6240,13, 0x2b6280,16, 0x2b6800,19, 0x2b6850,10, 0x2b6880,19, 0x2b68d0,10, 0x2b6900,19, 0x2b6950,10, 0x2b6980,19, 0x2b69d0,10, 0x2b6a00,19, 0x2b6a50,10, 0x2b6a80,19, 0x2b6ad0,10, 0x2b6b00,19, 0x2b6b50,10, 0x2b6b80,19, 0x2b6bd0,10, 0x2b6c00,19, 0x2b6c60,6, 0x2b6c84,1, 0x2b6c94,8, 0x2b6cb8,9, 0x2b6ce0,4, 0x2b7000,6, 0x2b7020,3, 0x2b7040,7, 0x2b7060,6, 0x2b7100,5, 0x2b7138,1, 0x2b7144,1, 0x2b7150,2, 0x2b8000,6, 0x2b8020,3, 0x2b8030,9, 0x2b8100,6, 0x2b8120,10, 0x2b8150,8, 0x2b8400,1, 0x2b8428,1, 0x2b8450,1, 0x2b8478,1, 0x2b84a0,8, 0x2b85ac,1, 0x2b85d8,4, 0x2b8600,6, 0x2b8620,6, 0x2b8640,3, 0x2b8800,6, 0x2b8820,3, 0x2b8830,4, 0x2b8858,2, 0x2b8864,1, 0x2b8874,3, 0x2b8898,2, 0x2b88a4,1, 0x2b88b4,3, 0x2b9000,6, 0x2b9020,6, 0x2b9040,3, 0x2b9080,14, 0x2b90bc,1, 0x2b90c4,13, 0x2b90fc,1, 0x2b9200,20, 0x2b925c,30, 0x2b9300,24, 0x2b9380,2, 0x2b93a0,1, 0x2b93c0,11, 0x2b9404,3, 0x2b9420,11, 0x2b9460,3, 0x2b9480,6, 0x2b9500,6, 0x2b9520,6, 0x2b9540,1, 0x2b9558,2, 0x2b9600,17, 0x2b9800,410, 0x2ba000,6, 0x2ba020,6, 0x2ba040,3, 0x2ba080,14, 0x2ba0bc,1, 0x2ba0c4,13, 0x2ba0fc,1, 0x2ba200,20, 0x2ba25c,30, 0x2ba300,24, 0x2ba380,2, 0x2ba3a0,1, 0x2ba3c0,11, 0x2ba404,3, 0x2ba420,11, 0x2ba460,3, 0x2ba480,6, 0x2ba500,6, 0x2ba520,6, 0x2ba540,1, 0x2ba558,2, 0x2ba600,17, 0x2ba800,410, 0x2bb000,4, 0x2bb020,25, 0x2bb088,8, 0x2bb100,4, 0x2bb120,25, 0x2bb188,8, 0x2bb200,34, 0x2bb300,37, 0x2bb400,16, 0x2bb464,1, 0x2bb474,3, 0x2bb500,6, 0x2bb520,2, 0x2bb530,9, 0x2bb570,10, 0x2bb5a0,2, 0x2bb5b0,9, 0x2bb5f0,4, 0x2bb620,7, 0x2bb640,16, 0x2bb700,6, 0x2bb720,6, 0x2bb740,6, 0x2bb760,6, 0x2bb780,3, 0x2bb800,5, 0x2bb818,1, 0x2bb854,6, 0x2bb880,2, 0x2bb8a4,1, 0x2bb8ac,2, 0x2bba00,28, 0x2bba7c,13, 0x2bbab4,1, 0x2bbabc,10, 0x2bbb04,1, 0x2bbb0c,5, 0x2bbb24,1, 0x2bbb34,9, 0x2bbb60,6, 0x2bbb80,22, 0x2bbbe0,3, 0x2bbbf0,2, 0x2bbc00,5, 0x2bbc18,1, 0x2bbc54,6, 0x2bbc80,2, 0x2bbca4,1, 0x2bbcac,2, 0x2bbe00,28, 0x2bbe7c,13, 0x2bbeb4,1, 0x2bbebc,10, 0x2bbf04,1, 0x2bbf0c,5, 0x2bbf24,1, 0x2bbf34,9, 0x2bbf60,6, 0x2bbf80,22, 0x2bbfe0,3, 0x2bbff0,2, 0x2bc008,2, 0x2bc014,11, 0x2bc044,1, 0x2bc04c,3, 0x2bc05c,1, 0x2bc064,1, 0x2bc07c,1, 0x2bc500,2, 0x2bc518,1, 0x2bc520,3, 0x2bc540,6, 0x2bc580,10, 0x2bc808,2, 0x2bc814,11, 0x2bc844,1, 0x2bc84c,3, 0x2bc85c,1, 0x2bc864,1, 0x2bc87c,1, 0x2bcd00,2, 0x2bcd18,1, 0x2bcd20,3, 0x2bcd40,6, 0x2bcd80,10, 0x2bd800,2, 0x2bd828,2, 0x2bd850,2, 0x2bd878,2, 0x2bd8a0,6, 0x2bd9ac,1, 0x2bd9d8,4, 0x2bda00,6, 0x2bda20,6, 0x2bda40,6, 0x2bda60,6, 0x2bda80,3, 0x2bdc00,6, 0x2bdc20,3, 0x2bdc40,2, 0x2bdc60,1, 0x2c0000,5, 0x2c0020,4, 0x2c0034,17, 0x2c0080,1, 0x2c00a0,6, 0x2c0100,5, 0x2c0120,4, 0x2c0134,17, 0x2c0180,1, 0x2c01a0,6, 0x2c0200,5, 0x2c0220,4, 0x2c0234,17, 0x2c0280,1, 0x2c02a0,6, 0x2c0300,5, 0x2c0320,4, 0x2c0334,17, 0x2c0380,1, 0x2c03a0,6, 0x2c0500,6, 0x2c051c,7, 0x2c0540,1, 0x2c0c00,13, 0x2c0c40,12, 0x2c0d00,6, 0x2c0d80,14, 0x2c0dc0,2, 0x2c0e40,4, 0x2c0e60,3, 0x2c0e80,6, 0x2c1000,2, 0x2c1010,5, 0x2c1060,32, 0x2c1100,8, 0x2c1180,3, 0x2c1190,2, 0x2c119c,5, 0x2c1218,9, 0x2c1240,3, 0x2c1250,6, 0x2c1280,1, 0x2c1288,6, 0x2c12a4,1, 0x2c1400,8, 0x2c1424,2, 0x2c1500,5, 0x2c1520,4, 0x2c1800,24, 0x2c1864,5, 0x2c1880,8, 0x2c1900,13, 0x2c1980,4, 0x2c19a0,6, 0x2c1a40,1, 0x2c1a60,1, 0x2c1a68,23, 0x2c1ac8,6, 0x2c1b80,12, 0x2c1c00,6, 0x2c1c20,6, 0x2c1c40,6, 0x2c1c60,3, 0x2c1d00,6, 0x2c1d20,6, 0x2c1d40,3, 0x2c2000,5, 0x2c2020,4, 0x2c2034,17, 0x2c2080,1, 0x2c20a0,6, 0x2c2100,5, 0x2c2120,4, 0x2c2134,17, 0x2c2180,1, 0x2c21a0,6, 0x2c2200,5, 0x2c2220,4, 0x2c2234,17, 0x2c2280,1, 0x2c22a0,6, 0x2c2300,5, 0x2c2320,4, 0x2c2334,17, 0x2c2380,1, 0x2c23a0,6, 0x2c2500,6, 0x2c251c,7, 0x2c2540,1, 0x2c2c00,13, 0x2c2c40,12, 0x2c2d00,6, 0x2c2d80,14, 0x2c2dc0,2, 0x2c2e40,4, 0x2c2e60,3, 0x2c2e80,6, 0x2c3000,2, 0x2c3010,5, 0x2c3060,32, 0x2c3100,8, 0x2c3180,3, 0x2c3190,2, 0x2c319c,5, 0x2c3218,9, 0x2c3240,3, 0x2c3250,6, 0x2c3280,1, 0x2c3288,6, 0x2c32a4,1, 0x2c3400,8, 0x2c3424,2, 0x2c3500,5, 0x2c3520,4, 0x2c3800,24, 0x2c3864,5, 0x2c3880,8, 0x2c3900,13, 0x2c3980,4, 0x2c39a0,6, 0x2c3a40,1, 0x2c3a60,1, 0x2c3a68,23, 0x2c3ac8,6, 0x2c3b80,12, 0x2c3c00,6, 0x2c3c20,6, 0x2c3c40,6, 0x2c3c60,3, 0x2c3d00,6, 0x2c3d20,6, 0x2c3d40,3, 0x2c4000,29, 0x2c4078,4, 0x2c4090,2, 0x2c40a0,2, 0x2c40b0,3, 0x2c40c0,11, 0x2c4100,14, 0x2c4140,14, 0x2c4180,61, 0x2c4278,4, 0x2c4290,2, 0x2c42a0,2, 0x2c42b0,3, 0x2c42c0,11, 0x2c4300,14, 0x2c4340,14, 0x2c4380,61, 0x2c4478,4, 0x2c4490,2, 0x2c44a0,2, 0x2c44b0,3, 0x2c44c0,11, 0x2c4500,14, 0x2c4540,14, 0x2c4580,61, 0x2c4678,4, 0x2c4690,2, 0x2c46a0,2, 0x2c46b0,3, 0x2c46c0,11, 0x2c4700,14, 0x2c4740,14, 0x2c4780,62, 0x2c487c,1, 0x2c4a00,8, 0x2c4a24,15, 0x2c4a64,23, 0x2c4ac4,6, 0x2c4b00,4, 0x2c4b20,3, 0x2c4c00,6, 0x2c4c40,14, 0x2c4c80,9, 0x2c4d00,9, 0x2c4d2c,1, 0x2c4d40,3, 0x2c4d60,1, 0x2c4d80,3, 0x2c4e00,2, 0x2c4e0c,1, 0x2c4e14,5, 0x2c4e2c,1, 0x2c4e34,5, 0x2c4e4c,1, 0x2c4e54,5, 0x2c4e6c,1, 0x2c4e74,5, 0x2c4e8c,1, 0x2c4e94,5, 0x2c4eac,1, 0x2c4eb4,3, 0x2c5000,29, 0x2c5078,4, 0x2c5090,2, 0x2c50a0,2, 0x2c50b0,3, 0x2c50c0,11, 0x2c5100,14, 0x2c5140,14, 0x2c5180,61, 0x2c5278,4, 0x2c5290,2, 0x2c52a0,2, 0x2c52b0,3, 0x2c52c0,11, 0x2c5300,14, 0x2c5340,14, 0x2c5380,61, 0x2c5478,4, 0x2c5490,2, 0x2c54a0,2, 0x2c54b0,3, 0x2c54c0,11, 0x2c5500,14, 0x2c5540,14, 0x2c5580,61, 0x2c5678,4, 0x2c5690,2, 0x2c56a0,2, 0x2c56b0,3, 0x2c56c0,11, 0x2c5700,14, 0x2c5740,14, 0x2c5780,62, 0x2c587c,1, 0x2c5a00,8, 0x2c5a24,15, 0x2c5a64,23, 0x2c5ac4,6, 0x2c5b00,4, 0x2c5b20,3, 0x2c5c00,6, 0x2c5c40,14, 0x2c5c80,9, 0x2c5d00,9, 0x2c5d2c,1, 0x2c5d40,3, 0x2c5d60,1, 0x2c5d80,3, 0x2c5e00,2, 0x2c5e0c,1, 0x2c5e14,5, 0x2c5e2c,1, 0x2c5e34,5, 0x2c5e4c,1, 0x2c5e54,5, 0x2c5e6c,1, 0x2c5e74,5, 0x2c5e8c,1, 0x2c5e94,5, 0x2c5eac,1, 0x2c5eb4,3, 0x2c6000,14, 0x2c6070,3, 0x2c6080,6, 0x2c6100,9, 0x2c6204,1, 0x2c620c,6, 0x2c6240,13, 0x2c6280,16, 0x2c6800,19, 0x2c6850,10, 0x2c6880,19, 0x2c68d0,10, 0x2c6900,19, 0x2c6950,10, 0x2c6980,19, 0x2c69d0,10, 0x2c6a00,19, 0x2c6a50,10, 0x2c6a80,19, 0x2c6ad0,10, 0x2c6b00,19, 0x2c6b50,10, 0x2c6b80,19, 0x2c6bd0,10, 0x2c6c00,19, 0x2c6c60,6, 0x2c6c84,1, 0x2c6c94,8, 0x2c6cb8,9, 0x2c6ce0,4, 0x2c7000,6, 0x2c7020,3, 0x2c7040,7, 0x2c7060,6, 0x2c7100,5, 0x2c7138,1, 0x2c7144,1, 0x2c7150,2, 0x2c8000,6, 0x2c8020,3, 0x2c8030,9, 0x2c8100,6, 0x2c8120,10, 0x2c8150,8, 0x2c8400,1, 0x2c8428,1, 0x2c8450,1, 0x2c8478,1, 0x2c84a0,8, 0x2c85ac,1, 0x2c85d8,4, 0x2c8600,6, 0x2c8620,6, 0x2c8640,3, 0x2c8800,6, 0x2c8820,3, 0x2c8830,4, 0x2c8858,2, 0x2c8864,1, 0x2c8874,3, 0x2c8898,2, 0x2c88a4,1, 0x2c88b4,3, 0x2c9000,6, 0x2c9020,6, 0x2c9040,3, 0x2c9080,14, 0x2c90bc,1, 0x2c90c4,13, 0x2c90fc,1, 0x2c9200,20, 0x2c925c,30, 0x2c9300,24, 0x2c9380,2, 0x2c93a0,1, 0x2c93c0,11, 0x2c9404,3, 0x2c9420,11, 0x2c9460,3, 0x2c9480,6, 0x2c9500,6, 0x2c9520,6, 0x2c9540,1, 0x2c9558,2, 0x2c9600,17, 0x2c9800,410, 0x2ca000,6, 0x2ca020,6, 0x2ca040,3, 0x2ca080,14, 0x2ca0bc,1, 0x2ca0c4,13, 0x2ca0fc,1, 0x2ca200,20, 0x2ca25c,30, 0x2ca300,24, 0x2ca380,2, 0x2ca3a0,1, 0x2ca3c0,11, 0x2ca404,3, 0x2ca420,11, 0x2ca460,3, 0x2ca480,6, 0x2ca500,6, 0x2ca520,6, 0x2ca540,1, 0x2ca558,2, 0x2ca600,17, 0x2ca800,410, 0x2cb000,4, 0x2cb020,25, 0x2cb088,8, 0x2cb100,4, 0x2cb120,25, 0x2cb188,8, 0x2cb200,34, 0x2cb300,37, 0x2cb400,16, 0x2cb464,1, 0x2cb474,3, 0x2cb500,6, 0x2cb520,2, 0x2cb530,9, 0x2cb570,10, 0x2cb5a0,2, 0x2cb5b0,9, 0x2cb5f0,4, 0x2cb620,7, 0x2cb640,16, 0x2cb700,6, 0x2cb720,6, 0x2cb740,6, 0x2cb760,6, 0x2cb780,3, 0x2cb800,5, 0x2cb818,1, 0x2cb854,6, 0x2cb880,2, 0x2cb8a4,1, 0x2cb8ac,2, 0x2cba00,28, 0x2cba7c,13, 0x2cbab4,1, 0x2cbabc,10, 0x2cbb04,1, 0x2cbb0c,5, 0x2cbb24,1, 0x2cbb34,9, 0x2cbb60,6, 0x2cbb80,22, 0x2cbbe0,3, 0x2cbbf0,2, 0x2cbc00,5, 0x2cbc18,1, 0x2cbc54,6, 0x2cbc80,2, 0x2cbca4,1, 0x2cbcac,2, 0x2cbe00,28, 0x2cbe7c,13, 0x2cbeb4,1, 0x2cbebc,10, 0x2cbf04,1, 0x2cbf0c,5, 0x2cbf24,1, 0x2cbf34,9, 0x2cbf60,6, 0x2cbf80,22, 0x2cbfe0,3, 0x2cbff0,2, 0x2cc008,2, 0x2cc014,11, 0x2cc044,1, 0x2cc04c,3, 0x2cc05c,1, 0x2cc064,1, 0x2cc07c,1, 0x2cc500,2, 0x2cc518,1, 0x2cc520,3, 0x2cc540,6, 0x2cc580,10, 0x2cc808,2, 0x2cc814,11, 0x2cc844,1, 0x2cc84c,3, 0x2cc85c,1, 0x2cc864,1, 0x2cc87c,1, 0x2ccd00,2, 0x2ccd18,1, 0x2ccd20,3, 0x2ccd40,6, 0x2ccd80,10, 0x2cd800,2, 0x2cd828,2, 0x2cd850,2, 0x2cd878,2, 0x2cd8a0,6, 0x2cd9ac,1, 0x2cd9d8,4, 0x2cda00,6, 0x2cda20,6, 0x2cda40,6, 0x2cda60,6, 0x2cda80,3, 0x2cdc00,6, 0x2cdc20,3, 0x2cdc40,2, 0x2cdc60,1, 0x2d0000,5, 0x2d0020,4, 0x2d0034,17, 0x2d0080,1, 0x2d00a0,6, 0x2d0100,5, 0x2d0120,4, 0x2d0134,17, 0x2d0180,1, 0x2d01a0,6, 0x2d0200,5, 0x2d0220,4, 0x2d0234,17, 0x2d0280,1, 0x2d02a0,6, 0x2d0300,5, 0x2d0320,4, 0x2d0334,17, 0x2d0380,1, 0x2d03a0,6, 0x2d0500,6, 0x2d051c,7, 0x2d0540,1, 0x2d0c00,13, 0x2d0c40,12, 0x2d0d00,6, 0x2d0d80,14, 0x2d0dc0,2, 0x2d0e40,4, 0x2d0e60,3, 0x2d0e80,6, 0x2d1000,2, 0x2d1010,5, 0x2d1060,32, 0x2d1100,8, 0x2d1180,3, 0x2d1190,2, 0x2d119c,5, 0x2d1218,9, 0x2d1240,3, 0x2d1250,6, 0x2d1280,1, 0x2d1288,6, 0x2d12a4,1, 0x2d1400,8, 0x2d1424,2, 0x2d1500,5, 0x2d1520,4, 0x2d1800,24, 0x2d1864,5, 0x2d1880,8, 0x2d1900,13, 0x2d1980,4, 0x2d19a0,6, 0x2d1a40,1, 0x2d1a60,1, 0x2d1a68,23, 0x2d1ac8,6, 0x2d1b80,12, 0x2d1c00,6, 0x2d1c20,6, 0x2d1c40,6, 0x2d1c60,3, 0x2d1d00,6, 0x2d1d20,6, 0x2d1d40,3, 0x2d2000,5, 0x2d2020,4, 0x2d2034,17, 0x2d2080,1, 0x2d20a0,6, 0x2d2100,5, 0x2d2120,4, 0x2d2134,17, 0x2d2180,1, 0x2d21a0,6, 0x2d2200,5, 0x2d2220,4, 0x2d2234,17, 0x2d2280,1, 0x2d22a0,6, 0x2d2300,5, 0x2d2320,4, 0x2d2334,17, 0x2d2380,1, 0x2d23a0,6, 0x2d2500,6, 0x2d251c,7, 0x2d2540,1, 0x2d2c00,13, 0x2d2c40,12, 0x2d2d00,6, 0x2d2d80,14, 0x2d2dc0,2, 0x2d2e40,4, 0x2d2e60,3, 0x2d2e80,6, 0x2d3000,2, 0x2d3010,5, 0x2d3060,32, 0x2d3100,8, 0x2d3180,3, 0x2d3190,2, 0x2d319c,5, 0x2d3218,9, 0x2d3240,3, 0x2d3250,6, 0x2d3280,1, 0x2d3288,6, 0x2d32a4,1, 0x2d3400,8, 0x2d3424,2, 0x2d3500,5, 0x2d3520,4, 0x2d3800,24, 0x2d3864,5, 0x2d3880,8, 0x2d3900,13, 0x2d3980,4, 0x2d39a0,6, 0x2d3a40,1, 0x2d3a60,1, 0x2d3a68,23, 0x2d3ac8,6, 0x2d3b80,12, 0x2d3c00,6, 0x2d3c20,6, 0x2d3c40,6, 0x2d3c60,3, 0x2d3d00,6, 0x2d3d20,6, 0x2d3d40,3, 0x2d4000,29, 0x2d4078,4, 0x2d4090,2, 0x2d40a0,2, 0x2d40b0,3, 0x2d40c0,11, 0x2d4100,14, 0x2d4140,14, 0x2d4180,61, 0x2d4278,4, 0x2d4290,2, 0x2d42a0,2, 0x2d42b0,3, 0x2d42c0,11, 0x2d4300,14, 0x2d4340,14, 0x2d4380,61, 0x2d4478,4, 0x2d4490,2, 0x2d44a0,2, 0x2d44b0,3, 0x2d44c0,11, 0x2d4500,14, 0x2d4540,14, 0x2d4580,61, 0x2d4678,4, 0x2d4690,2, 0x2d46a0,2, 0x2d46b0,3, 0x2d46c0,11, 0x2d4700,14, 0x2d4740,14, 0x2d4780,62, 0x2d487c,1, 0x2d4a00,8, 0x2d4a24,15, 0x2d4a64,23, 0x2d4ac4,6, 0x2d4b00,4, 0x2d4b20,3, 0x2d4c00,6, 0x2d4c40,14, 0x2d4c80,9, 0x2d4d00,9, 0x2d4d2c,1, 0x2d4d40,3, 0x2d4d60,1, 0x2d4d80,3, 0x2d4e00,2, 0x2d4e0c,1, 0x2d4e14,5, 0x2d4e2c,1, 0x2d4e34,5, 0x2d4e4c,1, 0x2d4e54,5, 0x2d4e6c,1, 0x2d4e74,5, 0x2d4e8c,1, 0x2d4e94,5, 0x2d4eac,1, 0x2d4eb4,3, 0x2d5000,29, 0x2d5078,4, 0x2d5090,2, 0x2d50a0,2, 0x2d50b0,3, 0x2d50c0,11, 0x2d5100,14, 0x2d5140,14, 0x2d5180,61, 0x2d5278,4, 0x2d5290,2, 0x2d52a0,2, 0x2d52b0,3, 0x2d52c0,11, 0x2d5300,14, 0x2d5340,14, 0x2d5380,61, 0x2d5478,4, 0x2d5490,2, 0x2d54a0,2, 0x2d54b0,3, 0x2d54c0,11, 0x2d5500,14, 0x2d5540,14, 0x2d5580,61, 0x2d5678,4, 0x2d5690,2, 0x2d56a0,2, 0x2d56b0,3, 0x2d56c0,11, 0x2d5700,14, 0x2d5740,14, 0x2d5780,62, 0x2d587c,1, 0x2d5a00,8, 0x2d5a24,15, 0x2d5a64,23, 0x2d5ac4,6, 0x2d5b00,4, 0x2d5b20,3, 0x2d5c00,6, 0x2d5c40,14, 0x2d5c80,9, 0x2d5d00,9, 0x2d5d2c,1, 0x2d5d40,3, 0x2d5d60,1, 0x2d5d80,3, 0x2d5e00,2, 0x2d5e0c,1, 0x2d5e14,5, 0x2d5e2c,1, 0x2d5e34,5, 0x2d5e4c,1, 0x2d5e54,5, 0x2d5e6c,1, 0x2d5e74,5, 0x2d5e8c,1, 0x2d5e94,5, 0x2d5eac,1, 0x2d5eb4,3, 0x2d6000,14, 0x2d6070,3, 0x2d6080,6, 0x2d6100,9, 0x2d6204,1, 0x2d620c,6, 0x2d6240,13, 0x2d6280,16, 0x2d6400,8, 0x2d6424,15, 0x2d6464,15, 0x2d64a4,15, 0x2d64e4,23, 0x2d6544,6, 0x2d6580,10, 0x2d65ac,1, 0x2d65b4,5, 0x2d65cc,1, 0x2d65d4,5, 0x2d65ec,1, 0x2d65f4,13, 0x2d6680,7, 0x2d66a0,5, 0x2d66c0,5, 0x2d66e0,4, 0x2d6800,19, 0x2d6850,10, 0x2d6880,19, 0x2d68d0,10, 0x2d6900,19, 0x2d6950,10, 0x2d6980,19, 0x2d69d0,10, 0x2d6a00,19, 0x2d6a50,10, 0x2d6a80,19, 0x2d6ad0,10, 0x2d6b00,19, 0x2d6b50,10, 0x2d6b80,19, 0x2d6bd0,10, 0x2d6c00,19, 0x2d6c60,6, 0x2d6c84,1, 0x2d6c94,8, 0x2d6cb8,9, 0x2d6ce0,4, 0x2d7000,6, 0x2d7020,3, 0x2d7040,7, 0x2d7060,6, 0x2d7100,5, 0x2d7138,1, 0x2d7144,1, 0x2d7150,2, 0x2d8000,6, 0x2d8020,3, 0x2d8030,9, 0x2d8100,6, 0x2d8120,10, 0x2d8150,8, 0x2d8400,1, 0x2d8428,1, 0x2d8450,1, 0x2d8478,1, 0x2d84a0,8, 0x2d85ac,1, 0x2d85d8,4, 0x2d8600,6, 0x2d8620,6, 0x2d8640,3, 0x2d8800,6, 0x2d8820,3, 0x2d8830,4, 0x2d8858,2, 0x2d8864,1, 0x2d8874,3, 0x2d8898,2, 0x2d88a4,1, 0x2d88b4,3, 0x2d9000,6, 0x2d9020,6, 0x2d9040,3, 0x2d9080,14, 0x2d90bc,1, 0x2d90c4,13, 0x2d90fc,1, 0x2d9200,20, 0x2d925c,30, 0x2d9300,24, 0x2d9380,2, 0x2d93a0,1, 0x2d93c0,11, 0x2d9404,3, 0x2d9420,11, 0x2d9460,3, 0x2d9480,6, 0x2d9500,6, 0x2d9520,6, 0x2d9540,1, 0x2d9558,2, 0x2d9600,17, 0x2d9800,410, 0x2da000,6, 0x2da020,6, 0x2da040,3, 0x2da080,14, 0x2da0bc,1, 0x2da0c4,13, 0x2da0fc,1, 0x2da200,20, 0x2da25c,30, 0x2da300,24, 0x2da380,2, 0x2da3a0,1, 0x2da3c0,11, 0x2da404,3, 0x2da420,11, 0x2da460,3, 0x2da480,6, 0x2da500,6, 0x2da520,6, 0x2da540,1, 0x2da558,2, 0x2da600,17, 0x2da800,410, 0x2db000,4, 0x2db020,25, 0x2db088,8, 0x2db100,4, 0x2db120,25, 0x2db188,8, 0x2db200,34, 0x2db300,37, 0x2db400,16, 0x2db464,1, 0x2db474,3, 0x2db500,6, 0x2db520,2, 0x2db530,9, 0x2db570,10, 0x2db5a0,2, 0x2db5b0,9, 0x2db5f0,4, 0x2db620,7, 0x2db640,16, 0x2db700,6, 0x2db720,6, 0x2db740,6, 0x2db760,6, 0x2db780,3, 0x2db800,5, 0x2db818,1, 0x2db854,6, 0x2db880,2, 0x2db8a4,1, 0x2db8ac,2, 0x2dba00,28, 0x2dba7c,13, 0x2dbab4,1, 0x2dbabc,10, 0x2dbb04,1, 0x2dbb0c,5, 0x2dbb24,1, 0x2dbb34,9, 0x2dbb60,6, 0x2dbb80,22, 0x2dbbe0,3, 0x2dbbf0,2, 0x2dbc00,5, 0x2dbc18,1, 0x2dbc54,6, 0x2dbc80,2, 0x2dbca4,1, 0x2dbcac,2, 0x2dbe00,28, 0x2dbe7c,13, 0x2dbeb4,1, 0x2dbebc,10, 0x2dbf04,1, 0x2dbf0c,5, 0x2dbf24,1, 0x2dbf34,9, 0x2dbf60,6, 0x2dbf80,22, 0x2dbfe0,3, 0x2dbff0,2, 0x2dc008,2, 0x2dc014,11, 0x2dc044,1, 0x2dc04c,3, 0x2dc05c,1, 0x2dc064,1, 0x2dc07c,1, 0x2dc500,2, 0x2dc518,1, 0x2dc520,3, 0x2dc540,6, 0x2dc580,10, 0x2dc808,2, 0x2dc814,11, 0x2dc844,1, 0x2dc84c,3, 0x2dc85c,1, 0x2dc864,1, 0x2dc87c,1, 0x2dcd00,2, 0x2dcd18,1, 0x2dcd20,3, 0x2dcd40,6, 0x2dcd80,10, 0x2dd800,2, 0x2dd828,2, 0x2dd850,2, 0x2dd878,2, 0x2dd8a0,6, 0x2dd9ac,1, 0x2dd9d8,4, 0x2dda00,6, 0x2dda20,6, 0x2dda40,6, 0x2dda60,6, 0x2dda80,3, 0x2ddc00,6, 0x2ddc20,3, 0x2ddc40,2, 0x2ddc60,1, 0x2e0000,5, 0x2e0020,4, 0x2e0034,17, 0x2e0080,1, 0x2e00a0,6, 0x2e0100,5, 0x2e0120,4, 0x2e0134,17, 0x2e0180,1, 0x2e01a0,6, 0x2e0200,5, 0x2e0220,4, 0x2e0234,17, 0x2e0280,1, 0x2e02a0,6, 0x2e0300,5, 0x2e0320,4, 0x2e0334,17, 0x2e0380,1, 0x2e03a0,6, 0x2e0500,6, 0x2e051c,7, 0x2e0540,1, 0x2e0c00,13, 0x2e0c40,12, 0x2e0d00,6, 0x2e0d80,14, 0x2e0dc0,2, 0x2e0e40,4, 0x2e0e60,3, 0x2e0e80,6, 0x2e1000,2, 0x2e1010,5, 0x2e1060,32, 0x2e1100,8, 0x2e1180,3, 0x2e1190,2, 0x2e119c,5, 0x2e1218,9, 0x2e1240,3, 0x2e1250,6, 0x2e1280,1, 0x2e1288,6, 0x2e12a4,1, 0x2e1400,8, 0x2e1424,2, 0x2e1500,5, 0x2e1520,4, 0x2e1800,24, 0x2e1864,5, 0x2e1880,8, 0x2e1900,13, 0x2e1980,4, 0x2e19a0,6, 0x2e1a40,1, 0x2e1a60,1, 0x2e1a68,23, 0x2e1ac8,6, 0x2e1b80,12, 0x2e1c00,6, 0x2e1c20,6, 0x2e1c40,6, 0x2e1c60,3, 0x2e1d00,6, 0x2e1d20,6, 0x2e1d40,3, 0x2e2000,5, 0x2e2020,4, 0x2e2034,17, 0x2e2080,1, 0x2e20a0,6, 0x2e2100,5, 0x2e2120,4, 0x2e2134,17, 0x2e2180,1, 0x2e21a0,6, 0x2e2200,5, 0x2e2220,4, 0x2e2234,17, 0x2e2280,1, 0x2e22a0,6, 0x2e2300,5, 0x2e2320,4, 0x2e2334,17, 0x2e2380,1, 0x2e23a0,6, 0x2e2500,6, 0x2e251c,7, 0x2e2540,1, 0x2e2c00,13, 0x2e2c40,12, 0x2e2d00,6, 0x2e2d80,14, 0x2e2dc0,2, 0x2e2e40,4, 0x2e2e60,3, 0x2e2e80,6, 0x2e3000,2, 0x2e3010,5, 0x2e3060,32, 0x2e3100,8, 0x2e3180,3, 0x2e3190,2, 0x2e319c,5, 0x2e3218,9, 0x2e3240,3, 0x2e3250,6, 0x2e3280,1, 0x2e3288,6, 0x2e32a4,1, 0x2e3400,8, 0x2e3424,2, 0x2e3500,5, 0x2e3520,4, 0x2e3800,24, 0x2e3864,5, 0x2e3880,8, 0x2e3900,13, 0x2e3980,4, 0x2e39a0,6, 0x2e3a40,1, 0x2e3a60,1, 0x2e3a68,23, 0x2e3ac8,6, 0x2e3b80,12, 0x2e3c00,6, 0x2e3c20,6, 0x2e3c40,6, 0x2e3c60,3, 0x2e3d00,6, 0x2e3d20,6, 0x2e3d40,3, 0x2e4000,29, 0x2e4078,4, 0x2e4090,2, 0x2e40a0,2, 0x2e40b0,3, 0x2e40c0,11, 0x2e4100,14, 0x2e4140,14, 0x2e4180,61, 0x2e4278,4, 0x2e4290,2, 0x2e42a0,2, 0x2e42b0,3, 0x2e42c0,11, 0x2e4300,14, 0x2e4340,14, 0x2e4380,61, 0x2e4478,4, 0x2e4490,2, 0x2e44a0,2, 0x2e44b0,3, 0x2e44c0,11, 0x2e4500,14, 0x2e4540,14, 0x2e4580,61, 0x2e4678,4, 0x2e4690,2, 0x2e46a0,2, 0x2e46b0,3, 0x2e46c0,11, 0x2e4700,14, 0x2e4740,14, 0x2e4780,62, 0x2e487c,1, 0x2e4a00,8, 0x2e4a24,15, 0x2e4a64,23, 0x2e4ac4,6, 0x2e4b00,4, 0x2e4b20,3, 0x2e4c00,6, 0x2e4c40,14, 0x2e4c80,9, 0x2e4d00,9, 0x2e4d2c,1, 0x2e4d40,3, 0x2e4d60,1, 0x2e4d80,3, 0x2e4e00,2, 0x2e4e0c,1, 0x2e4e14,5, 0x2e4e2c,1, 0x2e4e34,5, 0x2e4e4c,1, 0x2e4e54,5, 0x2e4e6c,1, 0x2e4e74,5, 0x2e4e8c,1, 0x2e4e94,5, 0x2e4eac,1, 0x2e4eb4,3, 0x2e5000,29, 0x2e5078,4, 0x2e5090,2, 0x2e50a0,2, 0x2e50b0,3, 0x2e50c0,11, 0x2e5100,14, 0x2e5140,14, 0x2e5180,61, 0x2e5278,4, 0x2e5290,2, 0x2e52a0,2, 0x2e52b0,3, 0x2e52c0,11, 0x2e5300,14, 0x2e5340,14, 0x2e5380,61, 0x2e5478,4, 0x2e5490,2, 0x2e54a0,2, 0x2e54b0,3, 0x2e54c0,11, 0x2e5500,14, 0x2e5540,14, 0x2e5580,61, 0x2e5678,4, 0x2e5690,2, 0x2e56a0,2, 0x2e56b0,3, 0x2e56c0,11, 0x2e5700,14, 0x2e5740,14, 0x2e5780,62, 0x2e587c,1, 0x2e5a00,8, 0x2e5a24,15, 0x2e5a64,23, 0x2e5ac4,6, 0x2e5b00,4, 0x2e5b20,3, 0x2e5c00,6, 0x2e5c40,14, 0x2e5c80,9, 0x2e5d00,9, 0x2e5d2c,1, 0x2e5d40,3, 0x2e5d60,1, 0x2e5d80,3, 0x2e5e00,2, 0x2e5e0c,1, 0x2e5e14,5, 0x2e5e2c,1, 0x2e5e34,5, 0x2e5e4c,1, 0x2e5e54,5, 0x2e5e6c,1, 0x2e5e74,5, 0x2e5e8c,1, 0x2e5e94,5, 0x2e5eac,1, 0x2e5eb4,3, 0x2e6000,14, 0x2e6070,3, 0x2e6080,6, 0x2e6100,9, 0x2e6204,1, 0x2e620c,6, 0x2e6240,13, 0x2e6280,16, 0x2e6800,19, 0x2e6850,10, 0x2e6880,19, 0x2e68d0,10, 0x2e6900,19, 0x2e6950,10, 0x2e6980,19, 0x2e69d0,10, 0x2e6a00,19, 0x2e6a50,10, 0x2e6a80,19, 0x2e6ad0,10, 0x2e6b00,19, 0x2e6b50,10, 0x2e6b80,19, 0x2e6bd0,10, 0x2e6c00,19, 0x2e6c60,6, 0x2e6c84,1, 0x2e6c94,8, 0x2e6cb8,9, 0x2e6ce0,4, 0x2e7000,6, 0x2e7020,3, 0x2e7040,7, 0x2e7060,6, 0x2e7100,5, 0x2e7138,1, 0x2e7144,1, 0x2e7150,2, 0x2e8000,6, 0x2e8020,3, 0x2e8030,9, 0x2e8100,6, 0x2e8120,10, 0x2e8150,8, 0x2e8400,1, 0x2e8428,1, 0x2e8450,1, 0x2e8478,1, 0x2e84a0,8, 0x2e85ac,1, 0x2e85d8,4, 0x2e8600,6, 0x2e8620,6, 0x2e8640,3, 0x2e8800,6, 0x2e8820,3, 0x2e8830,4, 0x2e8858,2, 0x2e8864,1, 0x2e8874,3, 0x2e8898,2, 0x2e88a4,1, 0x2e88b4,3, 0x2e9000,6, 0x2e9020,6, 0x2e9040,3, 0x2e9080,14, 0x2e90bc,1, 0x2e90c4,13, 0x2e90fc,1, 0x2e9200,20, 0x2e925c,30, 0x2e9300,24, 0x2e9380,2, 0x2e93a0,1, 0x2e93c0,11, 0x2e9404,3, 0x2e9420,11, 0x2e9460,3, 0x2e9480,6, 0x2e9500,6, 0x2e9520,6, 0x2e9540,1, 0x2e9558,2, 0x2e9600,17, 0x2e9800,410, 0x2ea000,6, 0x2ea020,6, 0x2ea040,3, 0x2ea080,14, 0x2ea0bc,1, 0x2ea0c4,13, 0x2ea0fc,1, 0x2ea200,20, 0x2ea25c,30, 0x2ea300,24, 0x2ea380,2, 0x2ea3a0,1, 0x2ea3c0,11, 0x2ea404,3, 0x2ea420,11, 0x2ea460,3, 0x2ea480,6, 0x2ea500,6, 0x2ea520,6, 0x2ea540,1, 0x2ea558,2, 0x2ea600,17, 0x2ea800,410, 0x2eb000,4, 0x2eb020,25, 0x2eb088,8, 0x2eb100,4, 0x2eb120,25, 0x2eb188,8, 0x2eb200,34, 0x2eb300,37, 0x2eb400,16, 0x2eb464,1, 0x2eb474,3, 0x2eb500,6, 0x2eb520,2, 0x2eb530,9, 0x2eb570,10, 0x2eb5a0,2, 0x2eb5b0,9, 0x2eb5f0,4, 0x2eb620,7, 0x2eb640,16, 0x2eb700,6, 0x2eb720,6, 0x2eb740,6, 0x2eb760,6, 0x2eb780,3, 0x2eb800,5, 0x2eb818,1, 0x2eb854,6, 0x2eb880,2, 0x2eb8a4,1, 0x2eb8ac,2, 0x2eba00,28, 0x2eba7c,13, 0x2ebab4,1, 0x2ebabc,10, 0x2ebb04,1, 0x2ebb0c,5, 0x2ebb24,1, 0x2ebb34,9, 0x2ebb60,6, 0x2ebb80,22, 0x2ebbe0,3, 0x2ebbf0,2, 0x2ebc00,5, 0x2ebc18,1, 0x2ebc54,6, 0x2ebc80,2, 0x2ebca4,1, 0x2ebcac,2, 0x2ebe00,28, 0x2ebe7c,13, 0x2ebeb4,1, 0x2ebebc,10, 0x2ebf04,1, 0x2ebf0c,5, 0x2ebf24,1, 0x2ebf34,9, 0x2ebf60,6, 0x2ebf80,22, 0x2ebfe0,3, 0x2ebff0,2, 0x2ec008,2, 0x2ec014,11, 0x2ec044,1, 0x2ec04c,3, 0x2ec05c,1, 0x2ec064,1, 0x2ec07c,1, 0x2ec500,2, 0x2ec518,1, 0x2ec520,3, 0x2ec540,6, 0x2ec580,10, 0x2ec808,2, 0x2ec814,11, 0x2ec844,1, 0x2ec84c,3, 0x2ec85c,1, 0x2ec864,1, 0x2ec87c,1, 0x2ecd00,2, 0x2ecd18,1, 0x2ecd20,3, 0x2ecd40,6, 0x2ecd80,10, 0x2ed800,2, 0x2ed828,2, 0x2ed850,2, 0x2ed878,2, 0x2ed8a0,6, 0x2ed9ac,1, 0x2ed9d8,4, 0x2eda00,6, 0x2eda20,6, 0x2eda40,6, 0x2eda60,6, 0x2eda80,3, 0x2edc00,6, 0x2edc20,3, 0x2edc40,2, 0x2edc60,1, 0x2f0000,5, 0x2f0020,4, 0x2f0034,17, 0x2f0080,1, 0x2f00a0,6, 0x2f0100,5, 0x2f0120,4, 0x2f0134,17, 0x2f0180,1, 0x2f01a0,6, 0x2f0200,5, 0x2f0220,4, 0x2f0234,17, 0x2f0280,1, 0x2f02a0,6, 0x2f0300,5, 0x2f0320,4, 0x2f0334,17, 0x2f0380,1, 0x2f03a0,6, 0x2f0500,6, 0x2f051c,7, 0x2f0540,1, 0x2f0c00,13, 0x2f0c40,12, 0x2f0d00,6, 0x2f0d80,14, 0x2f0dc0,2, 0x2f0e40,4, 0x2f0e60,3, 0x2f0e80,6, 0x2f1000,2, 0x2f1010,5, 0x2f1060,32, 0x2f1100,8, 0x2f1180,3, 0x2f1190,2, 0x2f119c,5, 0x2f1218,9, 0x2f1240,3, 0x2f1250,6, 0x2f1280,1, 0x2f1288,6, 0x2f12a4,1, 0x2f1400,8, 0x2f1424,2, 0x2f1500,5, 0x2f1520,4, 0x2f1800,24, 0x2f1864,5, 0x2f1880,8, 0x2f1900,13, 0x2f1980,4, 0x2f19a0,6, 0x2f1a40,1, 0x2f1a60,1, 0x2f1a68,23, 0x2f1ac8,6, 0x2f1b80,12, 0x2f1c00,6, 0x2f1c20,6, 0x2f1c40,6, 0x2f1c60,3, 0x2f1d00,6, 0x2f1d20,6, 0x2f1d40,3, 0x2f2000,5, 0x2f2020,4, 0x2f2034,17, 0x2f2080,1, 0x2f20a0,6, 0x2f2100,5, 0x2f2120,4, 0x2f2134,17, 0x2f2180,1, 0x2f21a0,6, 0x2f2200,5, 0x2f2220,4, 0x2f2234,17, 0x2f2280,1, 0x2f22a0,6, 0x2f2300,5, 0x2f2320,4, 0x2f2334,17, 0x2f2380,1, 0x2f23a0,6, 0x2f2500,6, 0x2f251c,7, 0x2f2540,1, 0x2f2c00,13, 0x2f2c40,12, 0x2f2d00,6, 0x2f2d80,14, 0x2f2dc0,2, 0x2f2e40,4, 0x2f2e60,3, 0x2f2e80,6, 0x2f3000,2, 0x2f3010,5, 0x2f3060,32, 0x2f3100,8, 0x2f3180,3, 0x2f3190,2, 0x2f319c,5, 0x2f3218,9, 0x2f3240,3, 0x2f3250,6, 0x2f3280,1, 0x2f3288,6, 0x2f32a4,1, 0x2f3400,8, 0x2f3424,2, 0x2f3500,5, 0x2f3520,4, 0x2f3800,24, 0x2f3864,5, 0x2f3880,8, 0x2f3900,13, 0x2f3980,4, 0x2f39a0,6, 0x2f3a40,1, 0x2f3a60,1, 0x2f3a68,23, 0x2f3ac8,6, 0x2f3b80,12, 0x2f3c00,6, 0x2f3c20,6, 0x2f3c40,6, 0x2f3c60,3, 0x2f3d00,6, 0x2f3d20,6, 0x2f3d40,3, 0x2f4000,29, 0x2f4078,4, 0x2f4090,2, 0x2f40a0,2, 0x2f40b0,3, 0x2f40c0,11, 0x2f4100,14, 0x2f4140,14, 0x2f4180,61, 0x2f4278,4, 0x2f4290,2, 0x2f42a0,2, 0x2f42b0,3, 0x2f42c0,11, 0x2f4300,14, 0x2f4340,14, 0x2f4380,61, 0x2f4478,4, 0x2f4490,2, 0x2f44a0,2, 0x2f44b0,3, 0x2f44c0,11, 0x2f4500,14, 0x2f4540,14, 0x2f4580,61, 0x2f4678,4, 0x2f4690,2, 0x2f46a0,2, 0x2f46b0,3, 0x2f46c0,11, 0x2f4700,14, 0x2f4740,14, 0x2f4780,62, 0x2f487c,1, 0x2f4a00,8, 0x2f4a24,15, 0x2f4a64,23, 0x2f4ac4,6, 0x2f4b00,4, 0x2f4b20,3, 0x2f4c00,6, 0x2f4c40,14, 0x2f4c80,9, 0x2f4d00,9, 0x2f4d2c,1, 0x2f4d40,3, 0x2f4d60,1, 0x2f4d80,3, 0x2f4e00,2, 0x2f4e0c,1, 0x2f4e14,5, 0x2f4e2c,1, 0x2f4e34,5, 0x2f4e4c,1, 0x2f4e54,5, 0x2f4e6c,1, 0x2f4e74,5, 0x2f4e8c,1, 0x2f4e94,5, 0x2f4eac,1, 0x2f4eb4,3, 0x2f5000,29, 0x2f5078,4, 0x2f5090,2, 0x2f50a0,2, 0x2f50b0,3, 0x2f50c0,11, 0x2f5100,14, 0x2f5140,14, 0x2f5180,61, 0x2f5278,4, 0x2f5290,2, 0x2f52a0,2, 0x2f52b0,3, 0x2f52c0,11, 0x2f5300,14, 0x2f5340,14, 0x2f5380,61, 0x2f5478,4, 0x2f5490,2, 0x2f54a0,2, 0x2f54b0,3, 0x2f54c0,11, 0x2f5500,14, 0x2f5540,14, 0x2f5580,61, 0x2f5678,4, 0x2f5690,2, 0x2f56a0,2, 0x2f56b0,3, 0x2f56c0,11, 0x2f5700,14, 0x2f5740,14, 0x2f5780,62, 0x2f587c,1, 0x2f5a00,8, 0x2f5a24,15, 0x2f5a64,23, 0x2f5ac4,6, 0x2f5b00,4, 0x2f5b20,3, 0x2f5c00,6, 0x2f5c40,14, 0x2f5c80,9, 0x2f5d00,9, 0x2f5d2c,1, 0x2f5d40,3, 0x2f5d60,1, 0x2f5d80,3, 0x2f5e00,2, 0x2f5e0c,1, 0x2f5e14,5, 0x2f5e2c,1, 0x2f5e34,5, 0x2f5e4c,1, 0x2f5e54,5, 0x2f5e6c,1, 0x2f5e74,5, 0x2f5e8c,1, 0x2f5e94,5, 0x2f5eac,1, 0x2f5eb4,3, 0x2f6000,14, 0x2f6070,3, 0x2f6080,6, 0x2f6100,9, 0x2f6204,1, 0x2f620c,6, 0x2f6240,13, 0x2f6280,16, 0x2f6800,19, 0x2f6850,10, 0x2f6880,19, 0x2f68d0,10, 0x2f6900,19, 0x2f6950,10, 0x2f6980,19, 0x2f69d0,10, 0x2f6a00,19, 0x2f6a50,10, 0x2f6a80,19, 0x2f6ad0,10, 0x2f6b00,19, 0x2f6b50,10, 0x2f6b80,19, 0x2f6bd0,10, 0x2f6c00,19, 0x2f6c60,6, 0x2f6c84,1, 0x2f6c94,8, 0x2f6cb8,9, 0x2f6ce0,4, 0x2f7000,6, 0x2f7020,3, 0x2f7040,7, 0x2f7060,6, 0x2f7100,5, 0x2f7138,1, 0x2f7144,1, 0x2f7150,2, 0x2f8000,6, 0x2f8020,3, 0x2f8030,9, 0x2f8100,6, 0x2f8120,10, 0x2f8150,8, 0x2f8400,1, 0x2f8428,1, 0x2f8450,1, 0x2f8478,1, 0x2f84a0,8, 0x2f85ac,1, 0x2f85d8,4, 0x2f8600,6, 0x2f8620,6, 0x2f8640,3, 0x2f8800,6, 0x2f8820,3, 0x2f8830,4, 0x2f8858,2, 0x2f8864,1, 0x2f8874,3, 0x2f8898,2, 0x2f88a4,1, 0x2f88b4,3, 0x2f9000,6, 0x2f9020,6, 0x2f9040,3, 0x2f9080,14, 0x2f90bc,1, 0x2f90c4,13, 0x2f90fc,1, 0x2f9200,20, 0x2f925c,30, 0x2f9300,24, 0x2f9380,2, 0x2f93a0,1, 0x2f93c0,11, 0x2f9404,3, 0x2f9420,11, 0x2f9460,3, 0x2f9480,6, 0x2f9500,6, 0x2f9520,6, 0x2f9540,1, 0x2f9558,2, 0x2f9600,17, 0x2f9800,410, 0x2fa000,6, 0x2fa020,6, 0x2fa040,3, 0x2fa080,14, 0x2fa0bc,1, 0x2fa0c4,13, 0x2fa0fc,1, 0x2fa200,20, 0x2fa25c,30, 0x2fa300,24, 0x2fa380,2, 0x2fa3a0,1, 0x2fa3c0,11, 0x2fa404,3, 0x2fa420,11, 0x2fa460,3, 0x2fa480,6, 0x2fa500,6, 0x2fa520,6, 0x2fa540,1, 0x2fa558,2, 0x2fa600,17, 0x2fa800,410, 0x2fb000,4, 0x2fb020,25, 0x2fb088,8, 0x2fb100,4, 0x2fb120,25, 0x2fb188,8, 0x2fb200,34, 0x2fb300,37, 0x2fb400,16, 0x2fb464,1, 0x2fb474,3, 0x2fb500,6, 0x2fb520,2, 0x2fb530,9, 0x2fb570,10, 0x2fb5a0,2, 0x2fb5b0,9, 0x2fb5f0,4, 0x2fb620,7, 0x2fb640,16, 0x2fb700,6, 0x2fb720,6, 0x2fb740,6, 0x2fb760,6, 0x2fb780,3, 0x2fb800,5, 0x2fb818,1, 0x2fb854,6, 0x2fb880,2, 0x2fb8a4,1, 0x2fb8ac,2, 0x2fba00,28, 0x2fba7c,13, 0x2fbab4,1, 0x2fbabc,10, 0x2fbb04,1, 0x2fbb0c,5, 0x2fbb24,1, 0x2fbb34,9, 0x2fbb60,6, 0x2fbb80,22, 0x2fbbe0,3, 0x2fbbf0,2, 0x2fbc00,5, 0x2fbc18,1, 0x2fbc54,6, 0x2fbc80,2, 0x2fbca4,1, 0x2fbcac,2, 0x2fbe00,28, 0x2fbe7c,13, 0x2fbeb4,1, 0x2fbebc,10, 0x2fbf04,1, 0x2fbf0c,5, 0x2fbf24,1, 0x2fbf34,9, 0x2fbf60,6, 0x2fbf80,22, 0x2fbfe0,3, 0x2fbff0,2, 0x2fc008,2, 0x2fc014,11, 0x2fc044,1, 0x2fc04c,3, 0x2fc05c,1, 0x2fc064,1, 0x2fc07c,1, 0x2fc500,2, 0x2fc518,1, 0x2fc520,3, 0x2fc540,6, 0x2fc580,10, 0x2fc808,2, 0x2fc814,11, 0x2fc844,1, 0x2fc84c,3, 0x2fc85c,1, 0x2fc864,1, 0x2fc87c,1, 0x2fcd00,2, 0x2fcd18,1, 0x2fcd20,3, 0x2fcd40,6, 0x2fcd80,10, 0x2fd800,2, 0x2fd828,2, 0x2fd850,2, 0x2fd878,2, 0x2fd8a0,6, 0x2fd9ac,1, 0x2fd9d8,4, 0x2fda00,6, 0x2fda20,6, 0x2fda40,6, 0x2fda60,6, 0x2fda80,3, 0x2fdc00,6, 0x2fdc20,3, 0x2fdc40,2, 0x2fdc60,1, 0x300000,5, 0x300020,4, 0x300034,17, 0x300080,1, 0x3000a0,6, 0x300100,5, 0x300120,4, 0x300134,17, 0x300180,1, 0x3001a0,6, 0x300200,5, 0x300220,4, 0x300234,17, 0x300280,1, 0x3002a0,6, 0x300300,5, 0x300320,4, 0x300334,17, 0x300380,1, 0x3003a0,6, 0x300500,6, 0x30051c,7, 0x300540,1, 0x300c00,13, 0x300c40,12, 0x300d00,6, 0x300d80,14, 0x300dc0,2, 0x300e40,4, 0x300e60,3, 0x300e80,6, 0x301000,2, 0x301010,5, 0x301060,32, 0x301100,8, 0x301180,3, 0x301190,2, 0x30119c,5, 0x301218,9, 0x301240,3, 0x301250,6, 0x301280,1, 0x301288,6, 0x3012a4,1, 0x301400,8, 0x301424,2, 0x301500,5, 0x301520,4, 0x301800,24, 0x301864,5, 0x301880,8, 0x301900,13, 0x301980,4, 0x3019a0,6, 0x301a40,1, 0x301a60,1, 0x301a68,23, 0x301ac8,6, 0x301b80,12, 0x301c00,6, 0x301c20,6, 0x301c40,6, 0x301c60,3, 0x301d00,6, 0x301d20,6, 0x301d40,3, 0x302000,5, 0x302020,4, 0x302034,17, 0x302080,1, 0x3020a0,6, 0x302100,5, 0x302120,4, 0x302134,17, 0x302180,1, 0x3021a0,6, 0x302200,5, 0x302220,4, 0x302234,17, 0x302280,1, 0x3022a0,6, 0x302300,5, 0x302320,4, 0x302334,17, 0x302380,1, 0x3023a0,6, 0x302500,6, 0x30251c,7, 0x302540,1, 0x302c00,13, 0x302c40,12, 0x302d00,6, 0x302d80,14, 0x302dc0,2, 0x302e40,4, 0x302e60,3, 0x302e80,6, 0x303000,2, 0x303010,5, 0x303060,32, 0x303100,8, 0x303180,3, 0x303190,2, 0x30319c,5, 0x303218,9, 0x303240,3, 0x303250,6, 0x303280,1, 0x303288,6, 0x3032a4,1, 0x303400,8, 0x303424,2, 0x303500,5, 0x303520,4, 0x303800,24, 0x303864,5, 0x303880,8, 0x303900,13, 0x303980,4, 0x3039a0,6, 0x303a40,1, 0x303a60,1, 0x303a68,23, 0x303ac8,6, 0x303b80,12, 0x303c00,6, 0x303c20,6, 0x303c40,6, 0x303c60,3, 0x303d00,6, 0x303d20,6, 0x303d40,3, 0x304000,29, 0x304078,4, 0x304090,2, 0x3040a0,2, 0x3040b0,3, 0x3040c0,11, 0x304100,14, 0x304140,14, 0x304180,61, 0x304278,4, 0x304290,2, 0x3042a0,2, 0x3042b0,3, 0x3042c0,11, 0x304300,14, 0x304340,14, 0x304380,61, 0x304478,4, 0x304490,2, 0x3044a0,2, 0x3044b0,3, 0x3044c0,11, 0x304500,14, 0x304540,14, 0x304580,61, 0x304678,4, 0x304690,2, 0x3046a0,2, 0x3046b0,3, 0x3046c0,11, 0x304700,14, 0x304740,14, 0x304780,62, 0x30487c,1, 0x304a00,8, 0x304a24,15, 0x304a64,23, 0x304ac4,6, 0x304b00,4, 0x304b20,3, 0x304c00,6, 0x304c40,14, 0x304c80,9, 0x304d00,9, 0x304d2c,1, 0x304d40,3, 0x304d60,1, 0x304d80,3, 0x304e00,2, 0x304e0c,1, 0x304e14,5, 0x304e2c,1, 0x304e34,5, 0x304e4c,1, 0x304e54,5, 0x304e6c,1, 0x304e74,5, 0x304e8c,1, 0x304e94,5, 0x304eac,1, 0x304eb4,3, 0x305000,29, 0x305078,4, 0x305090,2, 0x3050a0,2, 0x3050b0,3, 0x3050c0,11, 0x305100,14, 0x305140,14, 0x305180,61, 0x305278,4, 0x305290,2, 0x3052a0,2, 0x3052b0,3, 0x3052c0,11, 0x305300,14, 0x305340,14, 0x305380,61, 0x305478,4, 0x305490,2, 0x3054a0,2, 0x3054b0,3, 0x3054c0,11, 0x305500,14, 0x305540,14, 0x305580,61, 0x305678,4, 0x305690,2, 0x3056a0,2, 0x3056b0,3, 0x3056c0,11, 0x305700,14, 0x305740,14, 0x305780,62, 0x30587c,1, 0x305a00,8, 0x305a24,15, 0x305a64,23, 0x305ac4,6, 0x305b00,4, 0x305b20,3, 0x305c00,6, 0x305c40,14, 0x305c80,9, 0x305d00,9, 0x305d2c,1, 0x305d40,3, 0x305d60,1, 0x305d80,3, 0x305e00,2, 0x305e0c,1, 0x305e14,5, 0x305e2c,1, 0x305e34,5, 0x305e4c,1, 0x305e54,5, 0x305e6c,1, 0x305e74,5, 0x305e8c,1, 0x305e94,5, 0x305eac,1, 0x305eb4,3, 0x306000,14, 0x306070,3, 0x306080,6, 0x306100,9, 0x306204,1, 0x30620c,6, 0x306240,13, 0x306280,16, 0x306800,19, 0x306850,10, 0x306880,19, 0x3068d0,10, 0x306900,19, 0x306950,10, 0x306980,19, 0x3069d0,10, 0x306a00,19, 0x306a50,10, 0x306a80,19, 0x306ad0,10, 0x306b00,19, 0x306b50,10, 0x306b80,19, 0x306bd0,10, 0x306c00,19, 0x306c60,6, 0x306c84,1, 0x306c94,8, 0x306cb8,9, 0x306ce0,4, 0x307000,6, 0x307020,3, 0x307040,7, 0x307060,6, 0x307100,5, 0x307138,1, 0x307144,1, 0x307150,2, 0x308000,6, 0x308020,3, 0x308030,9, 0x308100,6, 0x308120,10, 0x308150,8, 0x308400,1, 0x308428,1, 0x308450,1, 0x308478,1, 0x3084a0,8, 0x3085ac,1, 0x3085d8,4, 0x308600,6, 0x308620,6, 0x308640,3, 0x308800,6, 0x308820,3, 0x308830,4, 0x308858,2, 0x308864,1, 0x308874,3, 0x308898,2, 0x3088a4,1, 0x3088b4,3, 0x309000,6, 0x309020,6, 0x309040,3, 0x309080,14, 0x3090bc,1, 0x3090c4,13, 0x3090fc,1, 0x309200,20, 0x30925c,30, 0x309300,24, 0x309380,2, 0x3093a0,1, 0x3093c0,11, 0x309404,3, 0x309420,11, 0x309460,3, 0x309480,6, 0x309500,6, 0x309520,6, 0x309540,1, 0x309558,2, 0x309600,17, 0x309800,410, 0x30a000,6, 0x30a020,6, 0x30a040,3, 0x30a080,14, 0x30a0bc,1, 0x30a0c4,13, 0x30a0fc,1, 0x30a200,20, 0x30a25c,30, 0x30a300,24, 0x30a380,2, 0x30a3a0,1, 0x30a3c0,11, 0x30a404,3, 0x30a420,11, 0x30a460,3, 0x30a480,6, 0x30a500,6, 0x30a520,6, 0x30a540,1, 0x30a558,2, 0x30a600,17, 0x30a800,410, 0x30b000,4, 0x30b020,25, 0x30b088,8, 0x30b100,4, 0x30b120,25, 0x30b188,8, 0x30b200,34, 0x30b300,37, 0x30b400,16, 0x30b464,1, 0x30b474,3, 0x30b500,6, 0x30b520,2, 0x30b530,9, 0x30b570,10, 0x30b5a0,2, 0x30b5b0,9, 0x30b5f0,4, 0x30b620,7, 0x30b640,16, 0x30b700,6, 0x30b720,6, 0x30b740,6, 0x30b760,6, 0x30b780,3, 0x30b800,5, 0x30b818,1, 0x30b854,6, 0x30b880,2, 0x30b8a4,1, 0x30b8ac,2, 0x30ba00,28, 0x30ba7c,13, 0x30bab4,1, 0x30babc,10, 0x30bb04,1, 0x30bb0c,5, 0x30bb24,1, 0x30bb34,9, 0x30bb60,6, 0x30bb80,22, 0x30bbe0,3, 0x30bbf0,2, 0x30bc00,5, 0x30bc18,1, 0x30bc54,6, 0x30bc80,2, 0x30bca4,1, 0x30bcac,2, 0x30be00,28, 0x30be7c,13, 0x30beb4,1, 0x30bebc,10, 0x30bf04,1, 0x30bf0c,5, 0x30bf24,1, 0x30bf34,9, 0x30bf60,6, 0x30bf80,22, 0x30bfe0,3, 0x30bff0,2, 0x30c008,2, 0x30c014,11, 0x30c044,1, 0x30c04c,3, 0x30c05c,1, 0x30c064,1, 0x30c07c,1, 0x30c500,2, 0x30c518,1, 0x30c520,3, 0x30c540,6, 0x30c580,10, 0x30c808,2, 0x30c814,11, 0x30c844,1, 0x30c84c,3, 0x30c85c,1, 0x30c864,1, 0x30c87c,1, 0x30cd00,2, 0x30cd18,1, 0x30cd20,3, 0x30cd40,6, 0x30cd80,10, 0x30d800,2, 0x30d828,2, 0x30d850,2, 0x30d878,2, 0x30d8a0,6, 0x30d9ac,1, 0x30d9d8,4, 0x30da00,6, 0x30da20,6, 0x30da40,6, 0x30da60,6, 0x30da80,3, 0x30dc00,6, 0x30dc20,3, 0x30dc40,2, 0x30dc60,1, 0x310000,5, 0x310020,4, 0x310034,17, 0x310080,1, 0x3100a0,6, 0x310100,5, 0x310120,4, 0x310134,17, 0x310180,1, 0x3101a0,6, 0x310200,5, 0x310220,4, 0x310234,17, 0x310280,1, 0x3102a0,6, 0x310300,5, 0x310320,4, 0x310334,17, 0x310380,1, 0x3103a0,6, 0x310500,6, 0x31051c,7, 0x310540,1, 0x310c00,13, 0x310c40,12, 0x310d00,6, 0x310d80,14, 0x310dc0,2, 0x310e40,4, 0x310e60,3, 0x310e80,6, 0x311000,2, 0x311010,5, 0x311060,32, 0x311100,8, 0x311180,3, 0x311190,2, 0x31119c,5, 0x311218,9, 0x311240,3, 0x311250,6, 0x311280,1, 0x311288,6, 0x3112a4,1, 0x311400,8, 0x311424,2, 0x311500,5, 0x311520,4, 0x311800,24, 0x311864,5, 0x311880,8, 0x311900,13, 0x311980,4, 0x3119a0,6, 0x311a40,1, 0x311a60,1, 0x311a68,23, 0x311ac8,6, 0x311b80,12, 0x311c00,6, 0x311c20,6, 0x311c40,6, 0x311c60,3, 0x311d00,6, 0x311d20,6, 0x311d40,3, 0x312000,5, 0x312020,4, 0x312034,17, 0x312080,1, 0x3120a0,6, 0x312100,5, 0x312120,4, 0x312134,17, 0x312180,1, 0x3121a0,6, 0x312200,5, 0x312220,4, 0x312234,17, 0x312280,1, 0x3122a0,6, 0x312300,5, 0x312320,4, 0x312334,17, 0x312380,1, 0x3123a0,6, 0x312500,6, 0x31251c,7, 0x312540,1, 0x312c00,13, 0x312c40,12, 0x312d00,6, 0x312d80,14, 0x312dc0,2, 0x312e40,4, 0x312e60,3, 0x312e80,6, 0x313000,2, 0x313010,5, 0x313060,32, 0x313100,8, 0x313180,3, 0x313190,2, 0x31319c,5, 0x313218,9, 0x313240,3, 0x313250,6, 0x313280,1, 0x313288,6, 0x3132a4,1, 0x313400,8, 0x313424,2, 0x313500,5, 0x313520,4, 0x313800,24, 0x313864,5, 0x313880,8, 0x313900,13, 0x313980,4, 0x3139a0,6, 0x313a40,1, 0x313a60,1, 0x313a68,23, 0x313ac8,6, 0x313b80,12, 0x313c00,6, 0x313c20,6, 0x313c40,6, 0x313c60,3, 0x313d00,6, 0x313d20,6, 0x313d40,3, 0x314000,29, 0x314078,4, 0x314090,2, 0x3140a0,2, 0x3140b0,3, 0x3140c0,11, 0x314100,14, 0x314140,14, 0x314180,61, 0x314278,4, 0x314290,2, 0x3142a0,2, 0x3142b0,3, 0x3142c0,11, 0x314300,14, 0x314340,14, 0x314380,61, 0x314478,4, 0x314490,2, 0x3144a0,2, 0x3144b0,3, 0x3144c0,11, 0x314500,14, 0x314540,14, 0x314580,61, 0x314678,4, 0x314690,2, 0x3146a0,2, 0x3146b0,3, 0x3146c0,11, 0x314700,14, 0x314740,14, 0x314780,62, 0x31487c,1, 0x314a00,8, 0x314a24,15, 0x314a64,23, 0x314ac4,6, 0x314b00,4, 0x314b20,3, 0x314c00,6, 0x314c40,14, 0x314c80,9, 0x314d00,9, 0x314d2c,1, 0x314d40,3, 0x314d60,1, 0x314d80,3, 0x314e00,2, 0x314e0c,1, 0x314e14,5, 0x314e2c,1, 0x314e34,5, 0x314e4c,1, 0x314e54,5, 0x314e6c,1, 0x314e74,5, 0x314e8c,1, 0x314e94,5, 0x314eac,1, 0x314eb4,3, 0x315000,29, 0x315078,4, 0x315090,2, 0x3150a0,2, 0x3150b0,3, 0x3150c0,11, 0x315100,14, 0x315140,14, 0x315180,61, 0x315278,4, 0x315290,2, 0x3152a0,2, 0x3152b0,3, 0x3152c0,11, 0x315300,14, 0x315340,14, 0x315380,61, 0x315478,4, 0x315490,2, 0x3154a0,2, 0x3154b0,3, 0x3154c0,11, 0x315500,14, 0x315540,14, 0x315580,61, 0x315678,4, 0x315690,2, 0x3156a0,2, 0x3156b0,3, 0x3156c0,11, 0x315700,14, 0x315740,14, 0x315780,62, 0x31587c,1, 0x315a00,8, 0x315a24,15, 0x315a64,23, 0x315ac4,6, 0x315b00,4, 0x315b20,3, 0x315c00,6, 0x315c40,14, 0x315c80,9, 0x315d00,9, 0x315d2c,1, 0x315d40,3, 0x315d60,1, 0x315d80,3, 0x315e00,2, 0x315e0c,1, 0x315e14,5, 0x315e2c,1, 0x315e34,5, 0x315e4c,1, 0x315e54,5, 0x315e6c,1, 0x315e74,5, 0x315e8c,1, 0x315e94,5, 0x315eac,1, 0x315eb4,3, 0x316000,14, 0x316070,3, 0x316080,6, 0x316100,9, 0x316204,1, 0x31620c,6, 0x316240,13, 0x316280,16, 0x316800,19, 0x316850,10, 0x316880,19, 0x3168d0,10, 0x316900,19, 0x316950,10, 0x316980,19, 0x3169d0,10, 0x316a00,19, 0x316a50,10, 0x316a80,19, 0x316ad0,10, 0x316b00,19, 0x316b50,10, 0x316b80,19, 0x316bd0,10, 0x316c00,19, 0x316c60,6, 0x316c84,1, 0x316c94,8, 0x316cb8,9, 0x316ce0,4, 0x317000,6, 0x317020,3, 0x317040,7, 0x317060,6, 0x317100,5, 0x317138,1, 0x317144,1, 0x317150,2, 0x318000,6, 0x318020,3, 0x318030,9, 0x318100,6, 0x318120,10, 0x318150,8, 0x318400,1, 0x318428,1, 0x318450,1, 0x318478,1, 0x3184a0,8, 0x3185ac,1, 0x3185d8,4, 0x318600,6, 0x318620,6, 0x318640,3, 0x318800,6, 0x318820,3, 0x318830,4, 0x318858,2, 0x318864,1, 0x318874,3, 0x318898,2, 0x3188a4,1, 0x3188b4,3, 0x319000,6, 0x319020,6, 0x319040,3, 0x319080,14, 0x3190bc,1, 0x3190c4,13, 0x3190fc,1, 0x319200,20, 0x31925c,30, 0x319300,24, 0x319380,2, 0x3193a0,1, 0x3193c0,11, 0x319404,3, 0x319420,11, 0x319460,3, 0x319480,6, 0x319500,6, 0x319520,6, 0x319540,1, 0x319558,2, 0x319600,17, 0x319800,410, 0x31a000,6, 0x31a020,6, 0x31a040,3, 0x31a080,14, 0x31a0bc,1, 0x31a0c4,13, 0x31a0fc,1, 0x31a200,20, 0x31a25c,30, 0x31a300,24, 0x31a380,2, 0x31a3a0,1, 0x31a3c0,11, 0x31a404,3, 0x31a420,11, 0x31a460,3, 0x31a480,6, 0x31a500,6, 0x31a520,6, 0x31a540,1, 0x31a558,2, 0x31a600,17, 0x31a800,410, 0x31b000,4, 0x31b020,25, 0x31b088,8, 0x31b100,4, 0x31b120,25, 0x31b188,8, 0x31b200,34, 0x31b300,37, 0x31b400,16, 0x31b464,1, 0x31b474,3, 0x31b500,6, 0x31b520,2, 0x31b530,9, 0x31b570,10, 0x31b5a0,2, 0x31b5b0,9, 0x31b5f0,4, 0x31b620,7, 0x31b640,16, 0x31b700,6, 0x31b720,6, 0x31b740,6, 0x31b760,6, 0x31b780,3, 0x31b800,5, 0x31b818,1, 0x31b854,6, 0x31b880,2, 0x31b8a4,1, 0x31b8ac,2, 0x31ba00,28, 0x31ba7c,13, 0x31bab4,1, 0x31babc,10, 0x31bb04,1, 0x31bb0c,5, 0x31bb24,1, 0x31bb34,9, 0x31bb60,6, 0x31bb80,22, 0x31bbe0,3, 0x31bbf0,2, 0x31bc00,5, 0x31bc18,1, 0x31bc54,6, 0x31bc80,2, 0x31bca4,1, 0x31bcac,2, 0x31be00,28, 0x31be7c,13, 0x31beb4,1, 0x31bebc,10, 0x31bf04,1, 0x31bf0c,5, 0x31bf24,1, 0x31bf34,9, 0x31bf60,6, 0x31bf80,22, 0x31bfe0,3, 0x31bff0,2, 0x31c008,2, 0x31c014,11, 0x31c044,1, 0x31c04c,3, 0x31c05c,1, 0x31c064,1, 0x31c07c,1, 0x31c500,2, 0x31c518,1, 0x31c520,3, 0x31c540,6, 0x31c580,10, 0x31c808,2, 0x31c814,11, 0x31c844,1, 0x31c84c,3, 0x31c85c,1, 0x31c864,1, 0x31c87c,1, 0x31cd00,2, 0x31cd18,1, 0x31cd20,3, 0x31cd40,6, 0x31cd80,10, 0x31d800,2, 0x31d828,2, 0x31d850,2, 0x31d878,2, 0x31d8a0,6, 0x31d9ac,1, 0x31d9d8,4, 0x31da00,6, 0x31da20,6, 0x31da40,6, 0x31da60,6, 0x31da80,3, 0x31dc00,6, 0x31dc20,3, 0x31dc40,2, 0x31dc60,1, mstflint-4.26.0/mstdump/mstdump_dbs/InfiniScaleIV.csv0000755000175000017500000054323514522641732023074 0ustar tzafrirctzafrirc# addr, size, enable addr 0x0f3c0c,1,UNKNOWN 0x0f3c08,1,UNKNOWN 0x0f3c04,1,UNKNOWN 0x0f3c00,1,UNKNOWN 0x0f3bf8,1,UNKNOWN 0x0f3bf4,1,UNKNOWN 0x0f3bf0,1,UNKNOWN 0x0f3b54,1,UNKNOWN 0x0f3b50,1,UNKNOWN 0x0f3b40,1,UNKNOWN 0x0f3b28,1,UNKNOWN 0x0f3b1c,1,UNKNOWN 0x0f3b18,1,UNKNOWN 0x0f3b0c,1,UNKNOWN 0x0f3b00,1,UNKNOWN 0x0f3a8c,1,UNKNOWN 0x0f3a88,1,UNKNOWN 0x0f3a84,1,UNKNOWN 0x0f3a74,1,UNKNOWN 0x0f3a70,1,UNKNOWN 0x0f3a60,1,UNKNOWN 0x0f3a40,1,UNKNOWN 0x0f3a3c,1,UNKNOWN 0x0f3a38,1,UNKNOWN 0x0f3a34,1,UNKNOWN 0x0f3a2c,1,UNKNOWN 0x0f3a28,1,UNKNOWN 0x0f3a24,1,UNKNOWN 0x0f3a1c,1,UNKNOWN 0x0f3a18,1,UNKNOWN 0x0f3a14,1,UNKNOWN 0x0f3a10,1,UNKNOWN 0x0f3a08,1,UNKNOWN 0x0f3a04,1,UNKNOWN 0x0f3a00,1,UNKNOWN 0x0f39bc,1,UNKNOWN 0x0f39b8,1,UNKNOWN 0x0f39b4,1,UNKNOWN 0x0f39b0,1,UNKNOWN 0x0f39a0,1,UNKNOWN 0x0f399c,1,UNKNOWN 0x0f3998,1,UNKNOWN 0x0f3990,1,UNKNOWN 0x0f398c,1,UNKNOWN 0x0f3988,1,UNKNOWN 0x0f3984,1,UNKNOWN 0x0f3980,1,UNKNOWN 0x0f397c,1,UNKNOWN 0x0f3978,1,UNKNOWN 0x0f3974,1,UNKNOWN 0x0f3970,1,UNKNOWN 0x0f396c,1,UNKNOWN 0x0f3968,1,UNKNOWN 0x0f3964,1,UNKNOWN 0x0f3960,1,UNKNOWN 0x0f395c,1,UNKNOWN 0x0f3958,1,UNKNOWN 0x0f3954,1,UNKNOWN 0x0f3950,1,UNKNOWN 0x0f394c,1,UNKNOWN 0x0f3948,1,UNKNOWN 0x0f3944,1,UNKNOWN 0x0f3940,1,UNKNOWN 0x0f393c,1,UNKNOWN 0x0f3938,1,UNKNOWN 0x0f3934,1,UNKNOWN 0x0f3930,1,UNKNOWN 0x0f392c,1,UNKNOWN 0x0f3928,1,UNKNOWN 0x0f3920,1,UNKNOWN 0x0f390c,1,UNKNOWN 0x0f3908,1,UNKNOWN 0x0f3900,1,UNKNOWN 0x0f38fc,1,UNKNOWN 0x0f38f8,1,UNKNOWN 0x0f38c0,1,UNKNOWN 0x0f38b4,1,UNKNOWN 0x0f38b0,1,UNKNOWN 0x0f38a0,1,UNKNOWN 0x0f389c,1,UNKNOWN 0x0f3898,1,UNKNOWN 0x0f3894,1,UNKNOWN 0x0f3890,1,UNKNOWN 0x0f388c,1,UNKNOWN 0x0f3888,1,UNKNOWN 0x0f3884,1,UNKNOWN 0x0f3880,1,UNKNOWN 0x0f386c,1,UNKNOWN 0x0f3868,1,UNKNOWN 0x0f3864,1,UNKNOWN 0x0f3860,1,UNKNOWN 0x0f385c,1,UNKNOWN 0x0f3858,1,UNKNOWN 0x0f3854,1,UNKNOWN 0x0f3850,1,UNKNOWN 0x0f384c,1,UNKNOWN 0x0f3848,1,UNKNOWN 0x0f3844,1,UNKNOWN 0x0f3840,1,UNKNOWN 0x0f383c,1,UNKNOWN 0x0f3838,1,UNKNOWN 0x0f3834,1,UNKNOWN 0x0f3830,1,UNKNOWN 0x0f382c,1,UNKNOWN 0x0f3828,1,UNKNOWN 0x0f3824,1,UNKNOWN 0x0f3820,1,UNKNOWN 0x0f381c,1,UNKNOWN 0x0f3814,1,UNKNOWN 0x0f3810,1,UNKNOWN 0x0f3808,1,UNKNOWN 0x0f3804,1,UNKNOWN 0x0f3800,1,UNKNOWN 0x0f37bc,1,UNKNOWN 0x0f37b8,1,UNKNOWN 0x0f37b4,1,UNKNOWN 0x0f37b0,1,UNKNOWN 0x0f37ac,1,UNKNOWN 0x0f3794,1,UNKNOWN 0x0f3790,1,UNKNOWN 0x0f3780,1,UNKNOWN 0x0f3774,1,UNKNOWN 0x0f3770,1,UNKNOWN 0x0f3760,1,UNKNOWN 0x0f3738,1,UNKNOWN 0x0f3734,1,UNKNOWN 0x0f3730,1,UNKNOWN 0x0f372c,1,UNKNOWN 0x0f3728,1,UNKNOWN 0x0f3724,1,UNKNOWN 0x0f3720,1,UNKNOWN 0x0f371c,1,UNKNOWN 0x0f3718,1,UNKNOWN 0x0f3714,1,UNKNOWN 0x0f3710,1,UNKNOWN 0x0f370c,1,UNKNOWN 0x0f3704,1,UNKNOWN 0x0f35e8,1,UNKNOWN 0x0f35e4,1,UNKNOWN 0x0f35e0,1,UNKNOWN 0x0f35dc,1,UNKNOWN 0x0f35d8,1,UNKNOWN 0x0f35d4,1,UNKNOWN 0x0f35d0,1,UNKNOWN 0x0f35cc,1,UNKNOWN 0x0f35b4,1,UNKNOWN 0x0f35b0,1,UNKNOWN 0x0f35a0,1,UNKNOWN 0x0f359c,1,UNKNOWN 0x0f3598,1,UNKNOWN 0x0f3594,1,UNKNOWN 0x0f3590,1,UNKNOWN 0x0f358c,1,UNKNOWN 0x0f3588,1,UNKNOWN 0x0f3584,1,UNKNOWN 0x0f3580,1,UNKNOWN 0x0f3578,1,UNKNOWN 0x0f3574,1,UNKNOWN 0x0f3560,1,UNKNOWN 0x0f355c,1,UNKNOWN 0x0f3558,1,UNKNOWN 0x0f3554,1,UNKNOWN 0x0f354c,1,UNKNOWN 0x0f3548,1,UNKNOWN 0x0f3534,1,UNKNOWN 0x0f3530,1,UNKNOWN 0x0f352c,1,UNKNOWN 0x0f3528,1,UNKNOWN 0x0f3524,1,UNKNOWN 0x0f3520,1,UNKNOWN 0x0f351c,1,UNKNOWN 0x0f3518,1,UNKNOWN 0x0f3514,1,UNKNOWN 0x0f3510,1,UNKNOWN 0x0f350c,1,UNKNOWN 0x0f3504,1,UNKNOWN 0x0f3500,1,UNKNOWN 0x0f347c,1,UNKNOWN 0x0f3478,1,UNKNOWN 0x0f3474,1,UNKNOWN 0x0f3470,1,UNKNOWN 0x0f346c,1,UNKNOWN 0x0f3468,1,UNKNOWN 0x0f3464,1,UNKNOWN 0x0f3460,1,UNKNOWN 0x0f345c,1,UNKNOWN 0x0f3458,1,UNKNOWN 0x0f3454,1,UNKNOWN 0x0f3450,1,UNKNOWN 0x0f344c,1,UNKNOWN 0x0f3448,1,UNKNOWN 0x0f3444,1,UNKNOWN 0x0f3440,1,UNKNOWN 0x0f343c,1,UNKNOWN 0x0f3438,1,UNKNOWN 0x0f3434,1,UNKNOWN 0x0f3430,1,UNKNOWN 0x0f342c,1,UNKNOWN 0x0f3428,1,UNKNOWN 0x0f3424,1,UNKNOWN 0x0f3420,1,UNKNOWN 0x0f341c,1,UNKNOWN 0x0f3418,1,UNKNOWN 0x0f3414,1,UNKNOWN 0x0f3410,1,UNKNOWN 0x0f340c,1,UNKNOWN 0x0f3408,1,UNKNOWN 0x0f3404,1,UNKNOWN 0x0f3400,1,UNKNOWN 0x0f3330,1,UNKNOWN 0x0f3328,1,UNKNOWN 0x0f3324,1,UNKNOWN 0x0f3320,1,UNKNOWN 0x0f331c,1,UNKNOWN 0x0f3318,1,UNKNOWN 0x0f3314,1,UNKNOWN 0x0f3310,1,UNKNOWN 0x0f330c,1,UNKNOWN 0x0f3308,1,UNKNOWN 0x0f3304,1,UNKNOWN 0x0f3300,1,UNKNOWN 0x0f32ec,1,UNKNOWN 0x0f32ac,1,UNKNOWN 0x0f32a8,1,UNKNOWN 0x0f32a4,1,UNKNOWN 0x0f32a0,1,UNKNOWN 0x0f329c,1,UNKNOWN 0x0f3298,1,UNKNOWN 0x0f3294,1,UNKNOWN 0x0f3290,1,UNKNOWN 0x0f3284,1,UNKNOWN 0x0f3280,1,UNKNOWN 0x0f3274,1,UNKNOWN 0x0f3270,1,UNKNOWN 0x0f326c,1,UNKNOWN 0x0f3268,1,UNKNOWN 0x0f3264,1,UNKNOWN 0x0f3258,1,UNKNOWN 0x0f3254,1,UNKNOWN 0x0f3250,1,UNKNOWN 0x0f324c,1,UNKNOWN 0x0f3248,1,UNKNOWN 0x0f3244,1,UNKNOWN 0x0f3220,1,UNKNOWN 0x0f321c,1,UNKNOWN 0x0f3218,1,UNKNOWN 0x0f3214,1,UNKNOWN 0x0f3210,1,UNKNOWN 0x0f3204,1,UNKNOWN 0x0f31bc,1,UNKNOWN 0x0f31b4,1,UNKNOWN 0x0f31b0,1,UNKNOWN 0x0f31ac,1,UNKNOWN 0x0f31a8,1,UNKNOWN 0x0f31a4,1,UNKNOWN 0x0f31a0,1,UNKNOWN 0x0f319c,1,UNKNOWN 0x0f3198,1,UNKNOWN 0x0f3194,1,UNKNOWN 0x0f3190,1,UNKNOWN 0x0f318c,1,UNKNOWN 0x0f3188,1,UNKNOWN 0x0f3184,1,UNKNOWN 0x0f3140,1,UNKNOWN 0x0f313c,1,UNKNOWN 0x0f3138,1,UNKNOWN 0x0f3134,1,UNKNOWN 0x0f3130,1,UNKNOWN 0x0f3124,1,UNKNOWN 0x0f3120,1,UNKNOWN 0x0f310c,1,UNKNOWN 0x0f3100,1,UNKNOWN 0x0f30f0,1,UNKNOWN 0x0f30ec,1,UNKNOWN 0x0f30e8,1,UNKNOWN 0x0f30e4,1,UNKNOWN 0x0f30e0,1,UNKNOWN 0x0f30dc,1,UNKNOWN 0x0f30d8,1,UNKNOWN 0x0f30d4,1,UNKNOWN 0x0f30d0,1,UNKNOWN 0x0f30cc,1,UNKNOWN 0x0f30c8,1,UNKNOWN 0x0f30c4,1,UNKNOWN 0x0f30c0,1,UNKNOWN 0x0f30ac,1,UNKNOWN 0x0f30a8,1,UNKNOWN 0x0f30a4,1,UNKNOWN 0x0f30a0,1,UNKNOWN 0x0f309c,1,UNKNOWN 0x0f3098,1,UNKNOWN 0x0f3094,1,UNKNOWN 0x0f3090,1,UNKNOWN 0x0f308c,1,UNKNOWN 0x0f3088,1,UNKNOWN 0x0f3084,1,UNKNOWN 0x0f3080,1,UNKNOWN 0x0f307c,1,UNKNOWN 0x0f3078,1,UNKNOWN 0x0f3070,1,UNKNOWN 0x0f306c,1,UNKNOWN 0x0f3068,1,UNKNOWN 0x0f3064,1,UNKNOWN 0x0f3060,1,UNKNOWN 0x0f305c,1,UNKNOWN 0x0f3058,1,UNKNOWN 0x0f3050,1,UNKNOWN 0x0f304c,1,UNKNOWN 0x0f3048,1,UNKNOWN 0x0f3044,1,UNKNOWN 0x0f3040,1,UNKNOWN 0x0f3030,1,UNKNOWN 0x0f302c,1,UNKNOWN 0x0f3028,1,UNKNOWN 0x0f3024,1,UNKNOWN 0x0f3020,1,UNKNOWN 0x0f301c,1,UNKNOWN 0x0f3014,1,UNKNOWN 0x0f3010,1,UNKNOWN 0x0f300c,1,UNKNOWN 0x0f3008,1,UNKNOWN 0x0f3004,1,UNKNOWN 0x0f3000,1,UNKNOWN 0x0f04d4,1, 0x0f04d0,1, 0x0f04cc,1, 0x0f04c8,1, 0x0f04c4,1, 0x0f04c0,1, 0x0f04bc,1, 0x0f04b8,1, 0x0f04b4,1, 0x0f04b0,1, 0x0f04ac,1, 0x0f04a8,1, 0x0f04a4,1, 0x0f04a0,1, 0x0f049c,1, 0x0f0498,1, 0x0f0494,1, 0x0f0490,1, 0x0f048c,1, 0x0f0488,1, 0x0f0484,1, 0x0f0480,1, 0x0f0434,1, 0x0f0430,1, 0x0f042c,1, 0x0f0428,1, 0x0f0424,1, 0x0f0420,1, 0x0f041c,1, 0x0f0418,1, 0x0f0414,1, 0x0f0410,1, 0x0f0408,1, 0x0f0404,1, 0x0f02fc,1, 0x0f02f8,1, 0x0f02f4,1, 0x0f02f0,1, 0x0f02ec,1, 0x0f02e8,1, 0x0f02e4,1, 0x0f02e0,1, 0x0f02cc,1, 0x0f02c8,1, 0x0f02c4,1, 0x0f02c0,1, 0x0f02b4,1, 0x0f02b0,1, 0x0f02ac,1, 0x0f02a8,1, 0x0f02a4,1, 0x0f0298,1, 0x0f0294,1, 0x0f0290,1, 0x0f0258,1, 0x0f0254,1, 0x0f0250,1, 0x0f024c,1, 0x0f0248,1, 0x0f0244,1, 0x0f0240,1, 0x0f023c,1, 0x0f0238,1, 0x0f0234,1, 0x0f0230,1, 0x0f022c,1, 0x0f0228,1, 0x0f0224,1, 0x0f0220,1, 0x0f021c,1, 0x0f0218,1, 0x0f0214,1, 0x0f0210,1, 0x0f020c,1, 0x0f0208,1, 0x0f0204,1, 0x0f0200,1, 0x0f01c0,1, 0x0f01bc,1, 0x0f01b8,1, 0x0f01b4,1, 0x0f01b0,1, 0x0f01ac,1, 0x0f01a8,1, 0x0f01a4,1, 0x0f01a0,1, 0x0f019c,1, 0x0f0198,1, 0x0f0194,1, 0x0f0190,1, 0x0f018c,1, 0x0f0188,1, 0x0f0184,1, 0x0f0180,1, 0x0f0170,1, 0x0f016c,1, 0x0f0168,1, 0x0f0164,1, 0x0f0160,1, 0x0f0154,1, 0x0f0150,1, 0x0f0140,1, 0x0f013c,1, 0x0f0138,1, 0x0f0134,1, 0x0f0130,1, 0x0f012c,1, 0x0f0128,1, 0x0f0110,1, 0x0f010c,1, 0x0f0108,1, 0x0f0104,1, 0x0f0100,1, 0x0f00fc,1, 0x0f00f8,1, 0x0f00f4,1, 0x0f00f0,1, 0x0f00ec,1, 0x0f00e8,1, 0x0f00e4,1, 0x0f00e0,1, 0x0f00dc,1, 0x0f00d8,1, 0x0f00d4,1, 0x0f00d0,1, 0x0f00cc,1, 0x0f00c8,1, 0x0f00c4,1, 0x0f00c0,1, 0x0f00b4,1, 0x0f00b0,1, 0x0f00a0,1, 0x0f0094,1, 0x0f0090,1, 0x0f008c,1, 0x0f0084,1, 0x0f0080,1, 0x0f0074,1, 0x0f0070,1, 0x0f0060,1, 0x0f0054,1, 0x0f0050,1, 0x0f004c,1, 0x0f0044,1, 0x0f0040,1, 0x0f0038,1, 0x0f0034,1, 0x0f0030,1, 0x0f001c,1, 0x0f0014,1, 0x0f0008,1, 0x0f0004,1, 0x0f0000,1, 0x0d7844,1, 0x0d7840,1, 0x0d783c,1, 0x0d7838,1, 0x0d7834,1, 0x0d7830,1, 0x0d782c,1, 0x0d7828,1, 0x0d7824,1, 0x0d7820,1, 0x0d7814,1, 0x0d7810,1, 0x0d7800,1, 0x0d7624,1, 0x0d7620,1, 0x0d7554,1, 0x0d7550,1, 0x0d7540,1, 0x0d752c,1, 0x0d7528,1, 0x0d7524,1, 0x0d7520,1, 0x0d751c,1, 0x0d7518,1, 0x0d7514,1, 0x0d7510,1, 0x0d750c,1, 0x0d7508,1, 0x0d7504,1, 0x0d7500,1, 0x0d74fc,1, 0x0d74f8,1, 0x0d74f4,1, 0x0d74f0,1, 0x0d74c8,1, 0x0d74c4,1, 0x0d74c0,1, 0x0d74b8,1, 0x0d74b4,1, 0x0d74b0,1, 0x0d74ac,1, 0x0d74a8,1, 0x0d749c,1, 0x0d7498,1, 0x0d7494,1, 0x0d7490,1, 0x0d748c,1, 0x0d7488,1, 0x0d7484,1, 0x0d7480,1, 0x0d7474,1, 0x0d7470,1, 0x0d746c,1, 0x0d7468,1, 0x0d7464,1, 0x0d7460,1, 0x0d745c,1, 0x0d7458,1, 0x0d7454,1, 0x0d7450,1, 0x0d7440,1, 0x0d7430,1, 0x0d7428,1, 0x0d7424,1, 0x0d7420,1, 0x0d741c,1, 0x0d7418,1, 0x0d7414,1, 0x0d7410,1, 0x0d740c,1, 0x0d7408,1, 0x0d7404,1, 0x0d7400,1, 0x0d7354,1, 0x0d7350,1, 0x0d7340,1, 0x0d732c,1, 0x0d7328,1, 0x0d7324,1, 0x0d7320,1, 0x0d731c,1, 0x0d7318,1, 0x0d7314,1, 0x0d7310,1, 0x0d730c,1, 0x0d7308,1, 0x0d7304,1, 0x0d7300,1, 0x0d72fc,1, 0x0d72f8,1, 0x0d72f4,1, 0x0d72f0,1, 0x0d72c8,1, 0x0d72c4,1, 0x0d72c0,1, 0x0d72b8,1, 0x0d72b4,1, 0x0d72b0,1, 0x0d72ac,1, 0x0d72a8,1, 0x0d729c,1, 0x0d7298,1, 0x0d7294,1, 0x0d7290,1, 0x0d728c,1, 0x0d7288,1, 0x0d7284,1, 0x0d7280,1, 0x0d7274,1, 0x0d7270,1, 0x0d726c,1, 0x0d7268,1, 0x0d7264,1, 0x0d7260,1, 0x0d725c,1, 0x0d7258,1, 0x0d7254,1, 0x0d7250,1, 0x0d7240,1, 0x0d7230,1, 0x0d7228,1, 0x0d7224,1, 0x0d7220,1, 0x0d721c,1, 0x0d7218,1, 0x0d7214,1, 0x0d7210,1, 0x0d720c,1, 0x0d7208,1, 0x0d7204,1, 0x0d7200,1, 0x0d7154,1, 0x0d7150,1, 0x0d7140,1, 0x0d712c,1, 0x0d7128,1, 0x0d7124,1, 0x0d7120,1, 0x0d711c,1, 0x0d7118,1, 0x0d7114,1, 0x0d7110,1, 0x0d710c,1, 0x0d7108,1, 0x0d7104,1, 0x0d7100,1, 0x0d70fc,1, 0x0d70f8,1, 0x0d70f4,1, 0x0d70f0,1, 0x0d70c8,1, 0x0d70c4,1, 0x0d70c0,1, 0x0d70b8,1, 0x0d70b4,1, 0x0d70b0,1, 0x0d70ac,1, 0x0d70a8,1, 0x0d709c,1, 0x0d7098,1, 0x0d7094,1, 0x0d7090,1, 0x0d708c,1, 0x0d7088,1, 0x0d7084,1, 0x0d7080,1, 0x0d7074,1, 0x0d7070,1, 0x0d706c,1, 0x0d7068,1, 0x0d7064,1, 0x0d7060,1, 0x0d705c,1, 0x0d7058,1, 0x0d7054,1, 0x0d7050,1, 0x0d7040,1, 0x0d7030,1, 0x0d7028,1, 0x0d7024,1, 0x0d7020,1, 0x0d701c,1, 0x0d7018,1, 0x0d7014,1, 0x0d7010,1, 0x0d700c,1, 0x0d7008,1, 0x0d7004,1, 0x0d7000,1, 0x0d6e24,1, 0x0d6e20,1, 0x0d6d54,1, 0x0d6d50,1, 0x0d6d40,1, 0x0d6d2c,1, 0x0d6d28,1, 0x0d6d24,1, 0x0d6d20,1, 0x0d6d1c,1, 0x0d6d18,1, 0x0d6d14,1, 0x0d6d10,1, 0x0d6d0c,1, 0x0d6d08,1, 0x0d6d04,1, 0x0d6d00,1, 0x0d6cfc,1, 0x0d6cf8,1, 0x0d6cf4,1, 0x0d6cf0,1, 0x0d6cc8,1, 0x0d6cc4,1, 0x0d6cc0,1, 0x0d6cb8,1, 0x0d6cb4,1, 0x0d6cb0,1, 0x0d6cac,1, 0x0d6ca8,1, 0x0d6c9c,1, 0x0d6c98,1, 0x0d6c94,1, 0x0d6c90,1, 0x0d6c8c,1, 0x0d6c88,1, 0x0d6c84,1, 0x0d6c80,1, 0x0d6c74,1, 0x0d6c70,1, 0x0d6c6c,1, 0x0d6c68,1, 0x0d6c64,1, 0x0d6c60,1, 0x0d6c5c,1, 0x0d6c58,1, 0x0d6c54,1, 0x0d6c50,1, 0x0d6c40,1, 0x0d6c30,1, 0x0d6c28,1, 0x0d6c24,1, 0x0d6c20,1, 0x0d6c1c,1, 0x0d6c18,1, 0x0d6c14,1, 0x0d6c10,1, 0x0d6c0c,1, 0x0d6c08,1, 0x0d6c04,1, 0x0d6c00,1, 0x0d6b54,1, 0x0d6b50,1,UNKNOWN 0x0d6b40,1, 0x0d6b2c,1, 0x0d6b28,1, 0x0d6b24,1, 0x0d6b20,1, 0x0d6b1c,1, 0x0d6b18,1, 0x0d6b14,1, 0x0d6b10,1, 0x0d6b0c,1, 0x0d6b08,1, 0x0d6b04,1, 0x0d6b00,1, 0x0d6afc,1, 0x0d6af8,1, 0x0d6af4,1, 0x0d6af0,1, 0x0d6ac8,1, 0x0d6ac4,1, 0x0d6ac0,1, 0x0d6ab8,1, 0x0d6ab4,1, 0x0d6ab0,1, 0x0d6aac,1, 0x0d6aa8,1, 0x0d6a9c,1, 0x0d6a98,1, 0x0d6a94,1, 0x0d6a90,1, 0x0d6a8c,1, 0x0d6a88,1, 0x0d6a84,1, 0x0d6a80,1, 0x0d6a74,1, 0x0d6a70,1, 0x0d6a6c,1, 0x0d6a68,1, 0x0d6a64,1, 0x0d6a60,1, 0x0d6a5c,1, 0x0d6a58,1, 0x0d6a54,1, 0x0d6a50,1, 0x0d6a40,1, 0x0d6a30,1, 0x0d6a28,1, 0x0d6a24,1, 0x0d6a20,1,UNKNOWN 0x0d6a1c,1, 0x0d6a18,1, 0x0d6a14,1, 0x0d6a10,1, 0x0d6a0c,1, 0x0d6a08,1, 0x0d6a04,1, 0x0d6a00,1, 0x0d6954,1, 0x0d6950,1, 0x0d6940,1, 0x0d692c,1, 0x0d6928,1, 0x0d6924,1, 0x0d6920,1, 0x0d691c,1, 0x0d6918,1, 0x0d6914,1, 0x0d6910,1, 0x0d690c,1, 0x0d6908,1, 0x0d6904,1, 0x0d6900,1, 0x0d68fc,1, 0x0d68f8,1, 0x0d68f4,1, 0x0d68f0,1, 0x0d68c8,1, 0x0d68c4,1, 0x0d68c0,1, 0x0d68b8,1, 0x0d68b4,1, 0x0d68b0,1, 0x0d68ac,1, 0x0d68a8,1, 0x0d689c,1, 0x0d6898,1, 0x0d6894,1, 0x0d6890,1, 0x0d688c,1, 0x0d6888,1, 0x0d6884,1, 0x0d6880,1, 0x0d6874,1, 0x0d6870,1, 0x0d686c,1, 0x0d6868,1, 0x0d6864,1, 0x0d6860,1, 0x0d685c,1, 0x0d6858,1, 0x0d6854,1, 0x0d6850,1, 0x0d6840,1, 0x0d6830,1, 0x0d6828,1, 0x0d6824,1, 0x0d6820,1, 0x0d681c,1, 0x0d6818,1, 0x0d6814,1, 0x0d6810,1, 0x0d680c,1, 0x0d6808,1, 0x0d6804,1, 0x0d6800,1, 0x0d6624,1, 0x0d6620,1, 0x0d6554,1, 0x0d6550,1, 0x0d6540,1, 0x0d652c,1, 0x0d6528,1, 0x0d6524,1, 0x0d6520,1, 0x0d651c,1, 0x0d6518,1, 0x0d6514,1, 0x0d6510,1, 0x0d650c,1, 0x0d6508,1, 0x0d6504,1, 0x0d6500,1, 0x0d64fc,1, 0x0d64f8,1, 0x0d64f4,1, 0x0d64f0,1, 0x0d64c8,1, 0x0d64c4,1, 0x0d64c0,1, 0x0d64b8,1, 0x0d64b4,1, 0x0d64b0,1, 0x0d64ac,1, 0x0d64a8,1, 0x0d649c,1, 0x0d6498,1, 0x0d6494,1, 0x0d6490,1, 0x0d648c,1, 0x0d6488,1, 0x0d6484,1, 0x0d6480,1, 0x0d6474,1, 0x0d6470,1, 0x0d646c,1, 0x0d6468,1, 0x0d6464,1, 0x0d6460,1, 0x0d645c,1, 0x0d6458,1, 0x0d6454,1, 0x0d6450,1, 0x0d6440,1, 0x0d6430,1, 0x0d6428,1, 0x0d6424,1, 0x0d6420,1, 0x0d641c,1, 0x0d6418,1, 0x0d6414,1, 0x0d6410,1, 0x0d640c,1, 0x0d6408,1, 0x0d6404,1, 0x0d6400,1, 0x0d6354,1, 0x0d6350,1, 0x0d6340,1, 0x0d632c,1, 0x0d6328,1, 0x0d6324,1, 0x0d6320,1, 0x0d631c,1, 0x0d6318,1, 0x0d6314,1, 0x0d6310,1, 0x0d630c,1, 0x0d6308,1, 0x0d6304,1, 0x0d6300,1, 0x0d62fc,1, 0x0d62f8,1, 0x0d62f4,1, 0x0d62f0,1, 0x0d62c8,1, 0x0d62c4,1, 0x0d62c0,1, 0x0d62b8,1, 0x0d62b4,1, 0x0d62b0,1, 0x0d62ac,1, 0x0d62a8,1, 0x0d629c,1, 0x0d6298,1, 0x0d6294,1, 0x0d6290,1, 0x0d628c,1, 0x0d6288,1, 0x0d6284,1, 0x0d6280,1, 0x0d6274,1, 0x0d6270,1, 0x0d626c,1, 0x0d6268,1, 0x0d6264,1, 0x0d6260,1, 0x0d625c,1, 0x0d6258,1, 0x0d6254,1, 0x0d6250,1, 0x0d6240,1, 0x0d6230,1, 0x0d6228,1, 0x0d6224,1, 0x0d6220,1, 0x0d621c,1, 0x0d6218,1, 0x0d6214,1, 0x0d6210,1, 0x0d620c,1, 0x0d6208,1, 0x0d6204,1, 0x0d6200,1, 0x0d6154,1, 0x0d6150,1, 0x0d6140,1, 0x0d612c,1, 0x0d6128,1, 0x0d6124,1, 0x0d6120,1, 0x0d611c,1, 0x0d6118,1, 0x0d6114,1, 0x0d6110,1, 0x0d610c,1, 0x0d6108,1, 0x0d6104,1, 0x0d6100,1, 0x0d60fc,1, 0x0d60f8,1, 0x0d60f4,1, 0x0d60f0,1, 0x0d60c8,1, 0x0d60c4,1, 0x0d60c0,1, 0x0d60b8,1, 0x0d60b4,1, 0x0d60b0,1, 0x0d60ac,1, 0x0d60a8,1, 0x0d609c,1, 0x0d6098,1, 0x0d6094,1, 0x0d6090,1, 0x0d608c,1, 0x0d6088,1, 0x0d6084,1, 0x0d6080,1, 0x0d6074,1, 0x0d6070,1, 0x0d606c,1, 0x0d6068,1, 0x0d6064,1, 0x0d6060,1, 0x0d605c,1, 0x0d6058,1, 0x0d6054,1, 0x0d6050,1, 0x0d6040,1, 0x0d6030,1, 0x0d6028,1, 0x0d6024,1, 0x0d6020,1, 0x0d601c,1, 0x0d6018,1, 0x0d6014,1, 0x0d6010,1, 0x0d600c,1, 0x0d6008,1, 0x0d6004,1, 0x0d6000,1, 0x0d5e24,1, 0x0d5e20,1, 0x0d5d54,1, 0x0d5d50,1, 0x0d5d40,1, 0x0d5d2c,1, 0x0d5d28,1, 0x0d5d24,1, 0x0d5d20,1, 0x0d5d1c,1, 0x0d5d18,1, 0x0d5d14,1, 0x0d5d10,1, 0x0d5d0c,1, 0x0d5d08,1, 0x0d5d04,1, 0x0d5d00,1, 0x0d5cfc,1, 0x0d5cf8,1, 0x0d5cf4,1, 0x0d5cf0,1, 0x0d5cc8,1, 0x0d5cc4,1, 0x0d5cc0,1, 0x0d5cb8,1, 0x0d5cb4,1, 0x0d5cb0,1, 0x0d5cac,1, 0x0d5ca8,1, 0x0d5c9c,1, 0x0d5c98,1, 0x0d5c94,1, 0x0d5c90,1, 0x0d5c8c,1, 0x0d5c88,1, 0x0d5c84,1, 0x0d5c80,1, 0x0d5c74,1, 0x0d5c70,1, 0x0d5c6c,1, 0x0d5c68,1, 0x0d5c64,1, 0x0d5c60,1, 0x0d5c5c,1, 0x0d5c58,1, 0x0d5c54,1, 0x0d5c50,1, 0x0d5c40,1, 0x0d5c30,1, 0x0d5c28,1, 0x0d5c24,1, 0x0d5c20,1, 0x0d5c1c,1, 0x0d5c18,1, 0x0d5c14,1, 0x0d5c10,1, 0x0d5c0c,1, 0x0d5c08,1, 0x0d5c04,1, 0x0d5c00,1, 0x0d5b54,1, 0x0d5b50,1, 0x0d5b40,1, 0x0d5b2c,1, 0x0d5b28,1, 0x0d5b24,1, 0x0d5b20,1, 0x0d5b1c,1, 0x0d5b18,1, 0x0d5b14,1, 0x0d5b10,1, 0x0d5b0c,1, 0x0d5b08,1, 0x0d5b04,1, 0x0d5b00,1, 0x0d5afc,1, 0x0d5af8,1, 0x0d5af4,1, 0x0d5af0,1, 0x0d5ac8,1, 0x0d5ac4,1, 0x0d5ac0,1, 0x0d5ab8,1, 0x0d5ab4,1, 0x0d5ab0,1, 0x0d5aac,1, 0x0d5aa8,1, 0x0d5a9c,1, 0x0d5a98,1, 0x0d5a94,1, 0x0d5a90,1, 0x0d5a8c,1, 0x0d5a88,1, 0x0d5a84,1, 0x0d5a80,1, 0x0d5a74,1, 0x0d5a70,1, 0x0d5a6c,1, 0x0d5a68,1, 0x0d5a64,1, 0x0d5a60,1, 0x0d5a5c,1, 0x0d5a58,1, 0x0d5a54,1, 0x0d5a50,1, 0x0d5a40,1, 0x0d5a30,1, 0x0d5a28,1, 0x0d5a24,1, 0x0d5a20,1, 0x0d5a1c,1, 0x0d5a18,1, 0x0d5a14,1, 0x0d5a10,1, 0x0d5a0c,1, 0x0d5a08,1, 0x0d5a04,1, 0x0d5a00,1, 0x0d5954,1, 0x0d5950,1, 0x0d5940,1, 0x0d592c,1, 0x0d5928,1, 0x0d5924,1, 0x0d5920,1, 0x0d591c,1, 0x0d5918,1, 0x0d5914,1, 0x0d5910,1, 0x0d590c,1, 0x0d5908,1, 0x0d5904,1, 0x0d5900,1, 0x0d58fc,1, 0x0d58f8,1, 0x0d58f4,1, 0x0d58f0,1, 0x0d58c8,1, 0x0d58c4,1, 0x0d58c0,1, 0x0d58b8,1, 0x0d58b4,1, 0x0d58b0,1, 0x0d58ac,1, 0x0d58a8,1, 0x0d589c,1, 0x0d5898,1, 0x0d5894,1, 0x0d5890,1, 0x0d588c,1, 0x0d5888,1, 0x0d5884,1, 0x0d5880,1, 0x0d5874,1, 0x0d5870,1, 0x0d586c,1, 0x0d5868,1, 0x0d5864,1, 0x0d5860,1, 0x0d585c,1, 0x0d5858,1, 0x0d5854,1, 0x0d5850,1, 0x0d5840,1, 0x0d5830,1, 0x0d5828,1, 0x0d5824,1, 0x0d5820,1, 0x0d581c,1, 0x0d5818,1, 0x0d5814,1, 0x0d5810,1, 0x0d580c,1, 0x0d5808,1, 0x0d5804,1, 0x0d5800,1, 0x0d5624,1, 0x0d5620,1, 0x0d5554,1, 0x0d5550,1, 0x0d5540,1, 0x0d552c,1, 0x0d5528,1, 0x0d5524,1, 0x0d5520,1, 0x0d551c,1, 0x0d5518,1, 0x0d5514,1, 0x0d5510,1, 0x0d550c,1, 0x0d5508,1, 0x0d5504,1, 0x0d5500,1, 0x0d54fc,1, 0x0d54f8,1, 0x0d54f4,1, 0x0d54f0,1, 0x0d54c8,1, 0x0d54c4,1, 0x0d54c0,1, 0x0d54b8,1, 0x0d54b4,1, 0x0d54b0,1, 0x0d54ac,1, 0x0d54a8,1, 0x0d549c,1, 0x0d5498,1, 0x0d5494,1, 0x0d5490,1, 0x0d548c,1, 0x0d5488,1, 0x0d5484,1, 0x0d5480,1, 0x0d5474,1, 0x0d5470,1, 0x0d546c,1, 0x0d5468,1, 0x0d5464,1, 0x0d5460,1, 0x0d545c,1, 0x0d5458,1, 0x0d5454,1, 0x0d5450,1, 0x0d5440,1, 0x0d5430,1, 0x0d5428,1, 0x0d5424,1, 0x0d5420,1, 0x0d541c,1, 0x0d5418,1, 0x0d5414,1, 0x0d5410,1, 0x0d540c,1, 0x0d5408,1, 0x0d5404,1, 0x0d5400,1, 0x0d5354,1, 0x0d5350,1, 0x0d5340,1, 0x0d532c,1, 0x0d5328,1, 0x0d5324,1, 0x0d5320,1, 0x0d531c,1, 0x0d5318,1, 0x0d5314,1, 0x0d5310,1, 0x0d530c,1, 0x0d5308,1, 0x0d5304,1, 0x0d5300,1, 0x0d52fc,1, 0x0d52f8,1, 0x0d52f4,1, 0x0d52f0,1, 0x0d52c8,1, 0x0d52c4,1, 0x0d52c0,1, 0x0d52b8,1, 0x0d52b4,1, 0x0d52b0,1, 0x0d52ac,1, 0x0d52a8,1, 0x0d529c,1, 0x0d5298,1, 0x0d5294,1, 0x0d5290,1, 0x0d528c,1, 0x0d5288,1, 0x0d5284,1, 0x0d5280,1, 0x0d5274,1, 0x0d5270,1, 0x0d526c,1, 0x0d5268,1, 0x0d5264,1, 0x0d5260,1, 0x0d525c,1, 0x0d5258,1, 0x0d5254,1, 0x0d5250,1, 0x0d5240,1, 0x0d5230,1, 0x0d5228,1, 0x0d5224,1, 0x0d5220,1, 0x0d521c,1, 0x0d5218,1, 0x0d5214,1, 0x0d5210,1, 0x0d520c,1, 0x0d5208,1, 0x0d5204,1, 0x0d5200,1, 0x0d5154,1, 0x0d5150,1, 0x0d5140,1, 0x0d512c,1, 0x0d5128,1, 0x0d5124,1, 0x0d5120,1, 0x0d511c,1, 0x0d5118,1, 0x0d5114,1, 0x0d5110,1, 0x0d510c,1, 0x0d5108,1, 0x0d5104,1, 0x0d5100,1, 0x0d50fc,1, 0x0d50f8,1, 0x0d50f4,1, 0x0d50f0,1, 0x0d50c8,1, 0x0d50c4,1, 0x0d50c0,1, 0x0d50b8,1, 0x0d50b4,1, 0x0d50b0,1, 0x0d50ac,1, 0x0d50a8,1, 0x0d509c,1, 0x0d5098,1, 0x0d5094,1, 0x0d5090,1, 0x0d508c,1, 0x0d5088,1, 0x0d5084,1, 0x0d5080,1, 0x0d5074,1, 0x0d5070,1, 0x0d506c,1, 0x0d5068,1, 0x0d5064,1, 0x0d5060,1, 0x0d505c,1, 0x0d5058,1, 0x0d5054,1, 0x0d5050,1, 0x0d5040,1, 0x0d5030,1, 0x0d5028,1, 0x0d5024,1, 0x0d5020,1, 0x0d501c,1, 0x0d5018,1, 0x0d5014,1, 0x0d5010,1, 0x0d500c,1, 0x0d5008,1, 0x0d5004,1, 0x0d5000,1, 0x0d4e24,1, 0x0d4e20,1, 0x0d4d54,1, 0x0d4d50,1, 0x0d4d40,1, 0x0d4d2c,1, 0x0d4d28,1, 0x0d4d24,1, 0x0d4d20,1, 0x0d4d1c,1, 0x0d4d18,1, 0x0d4d14,1, 0x0d4d10,1, 0x0d4d0c,1, 0x0d4d08,1, 0x0d4d04,1, 0x0d4d00,1, 0x0d4cfc,1, 0x0d4cf8,1, 0x0d4cf4,1, 0x0d4cf0,1, 0x0d4cc8,1, 0x0d4cc4,1, 0x0d4cc0,1, 0x0d4cb8,1, 0x0d4cb4,1, 0x0d4cb0,1, 0x0d4cac,1, 0x0d4ca8,1, 0x0d4c9c,1, 0x0d4c98,1, 0x0d4c94,1, 0x0d4c90,1, 0x0d4c8c,1, 0x0d4c88,1, 0x0d4c84,1, 0x0d4c80,1, 0x0d4c74,1, 0x0d4c70,1, 0x0d4c6c,1, 0x0d4c68,1, 0x0d4c64,1, 0x0d4c60,1, 0x0d4c5c,1, 0x0d4c58,1, 0x0d4c54,1, 0x0d4c50,1, 0x0d4c40,1, 0x0d4c30,1, 0x0d4c28,1, 0x0d4c24,1, 0x0d4c20,1, 0x0d4c1c,1, 0x0d4c18,1, 0x0d4c14,1, 0x0d4c10,1, 0x0d4c0c,1, 0x0d4c08,1, 0x0d4c04,1, 0x0d4c00,1, 0x0d4b54,1, 0x0d4b50,1, 0x0d4b40,1, 0x0d4b2c,1, 0x0d4b28,1, 0x0d4b24,1, 0x0d4b20,1, 0x0d4b1c,1, 0x0d4b18,1, 0x0d4b14,1, 0x0d4b10,1, 0x0d4b0c,1, 0x0d4b08,1, 0x0d4b04,1, 0x0d4b00,1, 0x0d4afc,1, 0x0d4af8,1, 0x0d4af4,1, 0x0d4af0,1, 0x0d4ac8,1, 0x0d4ac4,1, 0x0d4ac0,1, 0x0d4ab8,1, 0x0d4ab4,1, 0x0d4ab0,1, 0x0d4aac,1, 0x0d4aa8,1, 0x0d4a9c,1, 0x0d4a98,1, 0x0d4a94,1, 0x0d4a90,1, 0x0d4a8c,1, 0x0d4a88,1, 0x0d4a84,1, 0x0d4a80,1, 0x0d4a74,1, 0x0d4a70,1, 0x0d4a6c,1, 0x0d4a68,1, 0x0d4a64,1, 0x0d4a60,1, 0x0d4a5c,1, 0x0d4a58,1, 0x0d4a54,1, 0x0d4a50,1, 0x0d4a40,1, 0x0d4a30,1, 0x0d4a28,1, 0x0d4a24,1, 0x0d4a20,1, 0x0d4a1c,1, 0x0d4a18,1, 0x0d4a14,1, 0x0d4a10,1, 0x0d4a0c,1, 0x0d4a08,1, 0x0d4a04,1, 0x0d4a00,1, 0x0d4954,1, 0x0d4950,1, 0x0d4940,1, 0x0d492c,1, 0x0d4928,1, 0x0d4924,1, 0x0d4920,1, 0x0d491c,1, 0x0d4918,1, 0x0d4914,1, 0x0d4910,1, 0x0d490c,1, 0x0d4908,1, 0x0d4904,1, 0x0d4900,1, 0x0d48fc,1, 0x0d48f8,1, 0x0d48f4,1, 0x0d48f0,1, 0x0d48c8,1, 0x0d48c4,1, 0x0d48c0,1, 0x0d48b8,1, 0x0d48b4,1, 0x0d48b0,1, 0x0d48ac,1, 0x0d48a8,1, 0x0d489c,1, 0x0d4898,1, 0x0d4894,1, 0x0d4890,1, 0x0d488c,1, 0x0d4888,1, 0x0d4884,1, 0x0d4880,1, 0x0d4874,1, 0x0d4870,1, 0x0d486c,1, 0x0d4868,1, 0x0d4864,1, 0x0d4860,1, 0x0d485c,1, 0x0d4858,1, 0x0d4854,1, 0x0d4850,1, 0x0d4840,1, 0x0d4830,1, 0x0d4828,1, 0x0d4824,1, 0x0d4820,1, 0x0d481c,1, 0x0d4818,1, 0x0d4814,1, 0x0d4810,1, 0x0d480c,1, 0x0d4808,1, 0x0d4804,1, 0x0d4800,1, 0x0d4624,1, 0x0d4620,1, 0x0d4554,1, 0x0d4550,1, 0x0d4540,1, 0x0d452c,1, 0x0d4528,1, 0x0d4524,1, 0x0d4520,1, 0x0d451c,1, 0x0d4518,1, 0x0d4514,1, 0x0d4510,1, 0x0d450c,1, 0x0d4508,1, 0x0d4504,1, 0x0d4500,1, 0x0d44fc,1, 0x0d44f8,1, 0x0d44f4,1, 0x0d44f0,1, 0x0d44c8,1, 0x0d44c4,1, 0x0d44c0,1, 0x0d44b8,1, 0x0d44b4,1, 0x0d44b0,1, 0x0d44ac,1, 0x0d44a8,1, 0x0d449c,1, 0x0d4498,1, 0x0d4494,1, 0x0d4490,1, 0x0d448c,1, 0x0d4488,1, 0x0d4484,1, 0x0d4480,1, 0x0d4474,1, 0x0d4470,1, 0x0d446c,1, 0x0d4468,1, 0x0d4464,1, 0x0d4460,1, 0x0d445c,1, 0x0d4458,1, 0x0d4454,1, 0x0d4450,1, 0x0d4440,1, 0x0d4430,1, 0x0d4428,1, 0x0d4424,1, 0x0d4420,1, 0x0d441c,1, 0x0d4418,1, 0x0d4414,1, 0x0d4410,1, 0x0d440c,1, 0x0d4408,1, 0x0d4404,1, 0x0d4400,1, 0x0d4354,1, 0x0d4350,1, 0x0d4340,1, 0x0d432c,1, 0x0d4328,1, 0x0d4324,1, 0x0d4320,1, 0x0d431c,1, 0x0d4318,1, 0x0d4314,1, 0x0d4310,1, 0x0d430c,1, 0x0d4308,1, 0x0d4304,1, 0x0d4300,1, 0x0d42fc,1, 0x0d42f8,1, 0x0d42f4,1, 0x0d42f0,1, 0x0d42c8,1, 0x0d42c4,1, 0x0d42c0,1, 0x0d42b8,1, 0x0d42b4,1, 0x0d42b0,1, 0x0d42ac,1, 0x0d42a8,1, 0x0d429c,1, 0x0d4298,1, 0x0d4294,1, 0x0d4290,1, 0x0d428c,1, 0x0d4288,1, 0x0d4284,1, 0x0d4280,1, 0x0d4274,1, 0x0d4270,1, 0x0d426c,1, 0x0d4268,1, 0x0d4264,1, 0x0d4260,1, 0x0d425c,1, 0x0d4258,1, 0x0d4254,1, 0x0d4250,1, 0x0d4240,1, 0x0d4230,1, 0x0d4228,1, 0x0d4224,1, 0x0d4220,1, 0x0d421c,1, 0x0d4218,1, 0x0d4214,1, 0x0d4210,1, 0x0d420c,1, 0x0d4208,1, 0x0d4204,1, 0x0d4200,1, 0x0d4154,1, 0x0d4150,1, 0x0d4140,1, 0x0d412c,1, 0x0d4128,1, 0x0d4124,1, 0x0d4120,1, 0x0d411c,1, 0x0d4118,1, 0x0d4114,1, 0x0d4110,1, 0x0d410c,1, 0x0d4108,1, 0x0d4104,1, 0x0d4100,1, 0x0d40fc,1, 0x0d40f8,1, 0x0d40f4,1, 0x0d40f0,1, 0x0d40c8,1, 0x0d40c4,1, 0x0d40c0,1, 0x0d40b8,1, 0x0d40b4,1, 0x0d40b0,1, 0x0d40ac,1, 0x0d40a8,1, 0x0d409c,1, 0x0d4098,1, 0x0d4094,1, 0x0d4090,1, 0x0d408c,1, 0x0d4088,1, 0x0d4084,1, 0x0d4080,1, 0x0d4074,1, 0x0d4070,1, 0x0d406c,1, 0x0d4068,1, 0x0d4064,1, 0x0d4060,1, 0x0d405c,1, 0x0d4058,1, 0x0d4054,1, 0x0d4050,1, 0x0d4040,1, 0x0d4030,1, 0x0d4028,1, 0x0d4024,1, 0x0d4020,1, 0x0d401c,1, 0x0d4018,1, 0x0d4014,1, 0x0d4010,1, 0x0d400c,1, 0x0d4008,1, 0x0d4004,1, 0x0d4000,1, 0x0d3844,1, 0x0d3840,1, 0x0d383c,1, 0x0d3838,1, 0x0d3834,1, 0x0d3830,1, 0x0d382c,1, 0x0d3828,1, 0x0d3824,1, 0x0d3820,1, 0x0d3814,1, 0x0d3810,1, 0x0d3800,1, 0x0d3624,1, 0x0d3620,1, 0x0d3554,1, 0x0d3550,1, 0x0d3540,1, 0x0d352c,1, 0x0d3528,1, 0x0d3524,1, 0x0d3520,1, 0x0d351c,1, 0x0d3518,1, 0x0d3514,1, 0x0d3510,1, 0x0d350c,1, 0x0d3508,1, 0x0d3504,1, 0x0d3500,1, 0x0d34fc,1, 0x0d34f8,1, 0x0d34f4,1, 0x0d34f0,1, 0x0d34c8,1, 0x0d34c4,1, 0x0d34c0,1, 0x0d34b8,1, 0x0d34b4,1, 0x0d34b0,1, 0x0d34ac,1, 0x0d34a8,1, 0x0d349c,1, 0x0d3498,1, 0x0d3494,1, 0x0d3490,1, 0x0d348c,1, 0x0d3488,1, 0x0d3484,1, 0x0d3480,1, 0x0d3474,1, 0x0d3470,1, 0x0d346c,1, 0x0d3468,1, 0x0d3464,1, 0x0d3460,1, 0x0d345c,1, 0x0d3458,1, 0x0d3454,1, 0x0d3450,1, 0x0d3440,1, 0x0d3430,1, 0x0d3428,1, 0x0d3424,1, 0x0d3420,1, 0x0d341c,1, 0x0d3418,1, 0x0d3414,1, 0x0d3410,1, 0x0d340c,1, 0x0d3408,1, 0x0d3404,1, 0x0d3400,1, 0x0d3354,1, 0x0d3350,1, 0x0d3340,1, 0x0d332c,1, 0x0d3328,1, 0x0d3324,1, 0x0d3320,1, 0x0d331c,1, 0x0d3318,1, 0x0d3314,1, 0x0d3310,1, 0x0d330c,1, 0x0d3308,1, 0x0d3304,1, 0x0d3300,1, 0x0d32fc,1, 0x0d32f8,1, 0x0d32f4,1, 0x0d32f0,1, 0x0d32c8,1, 0x0d32c4,1, 0x0d32c0,1, 0x0d32b8,1, 0x0d32b4,1, 0x0d32b0,1, 0x0d32ac,1, 0x0d32a8,1, 0x0d329c,1, 0x0d3298,1, 0x0d3294,1, 0x0d3290,1, 0x0d328c,1, 0x0d3288,1, 0x0d3284,1, 0x0d3280,1, 0x0d3274,1, 0x0d3270,1, 0x0d326c,1, 0x0d3268,1, 0x0d3264,1, 0x0d3260,1, 0x0d325c,1, 0x0d3258,1, 0x0d3254,1, 0x0d3250,1, 0x0d3240,1, 0x0d3230,1, 0x0d3228,1, 0x0d3224,1, 0x0d3220,1, 0x0d321c,1, 0x0d3218,1, 0x0d3214,1, 0x0d3210,1, 0x0d320c,1, 0x0d3208,1, 0x0d3204,1, 0x0d3200,1, 0x0d3154,1, 0x0d3150,1, 0x0d3140,1, 0x0d312c,1, 0x0d3128,1, 0x0d3124,1, 0x0d3120,1, 0x0d311c,1, 0x0d3118,1, 0x0d3114,1, 0x0d3110,1, 0x0d310c,1, 0x0d3108,1, 0x0d3104,1, 0x0d3100,1, 0x0d30fc,1, 0x0d30f8,1, 0x0d30f4,1, 0x0d30f0,1, 0x0d30c8,1, 0x0d30c4,1, 0x0d30c0,1, 0x0d30b8,1, 0x0d30b4,1, 0x0d30b0,1, 0x0d30ac,1, 0x0d30a8,1, 0x0d309c,1, 0x0d3098,1, 0x0d3094,1, 0x0d3090,1, 0x0d308c,1, 0x0d3088,1, 0x0d3084,1, 0x0d3080,1, 0x0d3074,1, 0x0d3070,1, 0x0d306c,1, 0x0d3068,1, 0x0d3064,1, 0x0d3060,1, 0x0d305c,1, 0x0d3058,1, 0x0d3054,1, 0x0d3050,1, 0x0d3040,1, 0x0d3030,1, 0x0d3028,1, 0x0d3024,1, 0x0d3020,1, 0x0d301c,1, 0x0d3018,1, 0x0d3014,1, 0x0d3010,1, 0x0d300c,1, 0x0d3008,1, 0x0d3004,1, 0x0d3000,1, 0x0d2e24,1, 0x0d2e20,1, 0x0d2d54,1, 0x0d2d50,1, 0x0d2d40,1, 0x0d2d2c,1, 0x0d2d28,1, 0x0d2d24,1, 0x0d2d20,1, 0x0d2d1c,1, 0x0d2d18,1, 0x0d2d14,1, 0x0d2d10,1, 0x0d2d0c,1, 0x0d2d08,1, 0x0d2d04,1, 0x0d2d00,1, 0x0d2cfc,1, 0x0d2cf8,1, 0x0d2cf4,1, 0x0d2cf0,1, 0x0d2cc8,1, 0x0d2cc4,1, 0x0d2cc0,1, 0x0d2cb8,1, 0x0d2cb4,1, 0x0d2cb0,1, 0x0d2cac,1, 0x0d2ca8,1, 0x0d2c9c,1, 0x0d2c98,1, 0x0d2c94,1, 0x0d2c90,1, 0x0d2c8c,1, 0x0d2c88,1, 0x0d2c84,1, 0x0d2c80,1, 0x0d2c74,1, 0x0d2c70,1, 0x0d2c6c,1, 0x0d2c68,1, 0x0d2c64,1, 0x0d2c60,1, 0x0d2c5c,1, 0x0d2c58,1, 0x0d2c54,1, 0x0d2c50,1, 0x0d2c40,1, 0x0d2c30,1, 0x0d2c28,1, 0x0d2c24,1, 0x0d2c20,1, 0x0d2c1c,1, 0x0d2c18,1, 0x0d2c14,1, 0x0d2c10,1, 0x0d2c0c,1, 0x0d2c08,1, 0x0d2c04,1, 0x0d2c00,1, 0x0d2b54,1, 0x0d2b50,1, 0x0d2b40,1, 0x0d2b2c,1, 0x0d2b28,1, 0x0d2b24,1, 0x0d2b20,1, 0x0d2b1c,1, 0x0d2b18,1, 0x0d2b14,1, 0x0d2b10,1, 0x0d2b0c,1, 0x0d2b08,1, 0x0d2b04,1, 0x0d2b00,1, 0x0d2afc,1, 0x0d2af8,1, 0x0d2af4,1, 0x0d2af0,1, 0x0d2ac8,1, 0x0d2ac4,1, 0x0d2ac0,1, 0x0d2ab8,1, 0x0d2ab4,1, 0x0d2ab0,1, 0x0d2aac,1, 0x0d2aa8,1, 0x0d2a9c,1, 0x0d2a98,1, 0x0d2a94,1, 0x0d2a90,1, 0x0d2a8c,1, 0x0d2a88,1, 0x0d2a84,1, 0x0d2a80,1, 0x0d2a74,1, 0x0d2a70,1, 0x0d2a6c,1, 0x0d2a68,1, 0x0d2a64,1, 0x0d2a60,1, 0x0d2a5c,1, 0x0d2a58,1, 0x0d2a54,1, 0x0d2a50,1, 0x0d2a40,1, 0x0d2a30,1, 0x0d2a28,1, 0x0d2a24,1, 0x0d2a20,1, 0x0d2a1c,1, 0x0d2a18,1, 0x0d2a14,1, 0x0d2a10,1, 0x0d2a0c,1, 0x0d2a08,1, 0x0d2a04,1, 0x0d2a00,1, 0x0d2954,1, 0x0d2950,1, 0x0d2940,1, 0x0d292c,1, 0x0d2928,1, 0x0d2924,1, 0x0d2920,1, 0x0d291c,1, 0x0d2918,1, 0x0d2914,1, 0x0d2910,1, 0x0d290c,1, 0x0d2908,1, 0x0d2904,1, 0x0d2900,1, 0x0d28fc,1, 0x0d28f8,1, 0x0d28f4,1, 0x0d28f0,1, 0x0d28c8,1, 0x0d28c4,1, 0x0d28c0,1, 0x0d28b8,1, 0x0d28b4,1, 0x0d28b0,1, 0x0d28ac,1, 0x0d28a8,1, 0x0d289c,1, 0x0d2898,1, 0x0d2894,1, 0x0d2890,1, 0x0d288c,1, 0x0d2888,1, 0x0d2884,1, 0x0d2880,1, 0x0d2874,1, 0x0d2870,1, 0x0d286c,1, 0x0d2868,1, 0x0d2864,1, 0x0d2860,1, 0x0d285c,1, 0x0d2858,1, 0x0d2854,1, 0x0d2850,1, 0x0d2840,1, 0x0d2830,1, 0x0d2828,1, 0x0d2824,1, 0x0d2820,1, 0x0d281c,1, 0x0d2818,1, 0x0d2814,1, 0x0d2810,1, 0x0d280c,1, 0x0d2808,1, 0x0d2804,1, 0x0d2800,1, 0x0d2624,1, 0x0d2620,1, 0x0d2554,1, 0x0d2550,1, 0x0d2540,1, 0x0d252c,1, 0x0d2528,1, 0x0d2524,1, 0x0d2520,1, 0x0d251c,1, 0x0d2518,1, 0x0d2514,1, 0x0d2510,1, 0x0d250c,1, 0x0d2508,1, 0x0d2504,1, 0x0d2500,1, 0x0d24fc,1, 0x0d24f8,1, 0x0d24f4,1, 0x0d24f0,1, 0x0d24c8,1, 0x0d24c4,1, 0x0d24c0,1, 0x0d24b8,1, 0x0d24b4,1, 0x0d24b0,1, 0x0d24ac,1, 0x0d24a8,1, 0x0d249c,1, 0x0d2498,1, 0x0d2494,1, 0x0d2490,1, 0x0d248c,1, 0x0d2488,1, 0x0d2484,1, 0x0d2480,1, 0x0d2474,1, 0x0d2470,1, 0x0d246c,1, 0x0d2468,1, 0x0d2464,1, 0x0d2460,1, 0x0d245c,1, 0x0d2458,1, 0x0d2454,1, 0x0d2450,1, 0x0d2440,1, 0x0d2430,1, 0x0d2428,1, 0x0d2424,1, 0x0d2420,1, 0x0d241c,1, 0x0d2418,1, 0x0d2414,1, 0x0d2410,1, 0x0d240c,1, 0x0d2408,1, 0x0d2404,1, 0x0d2400,1, 0x0d2354,1, 0x0d2350,1, 0x0d2340,1, 0x0d232c,1, 0x0d2328,1, 0x0d2324,1, 0x0d2320,1, 0x0d231c,1, 0x0d2318,1, 0x0d2314,1, 0x0d2310,1, 0x0d230c,1, 0x0d2308,1, 0x0d2304,1, 0x0d2300,1, 0x0d22fc,1, 0x0d22f8,1, 0x0d22f4,1, 0x0d22f0,1, 0x0d22c8,1, 0x0d22c4,1, 0x0d22c0,1, 0x0d22b8,1, 0x0d22b4,1, 0x0d22b0,1, 0x0d22ac,1, 0x0d22a8,1, 0x0d229c,1, 0x0d2298,1, 0x0d2294,1, 0x0d2290,1, 0x0d228c,1, 0x0d2288,1, 0x0d2284,1, 0x0d2280,1, 0x0d2274,1, 0x0d2270,1, 0x0d226c,1, 0x0d2268,1, 0x0d2264,1, 0x0d2260,1, 0x0d225c,1, 0x0d2258,1, 0x0d2254,1, 0x0d2250,1, 0x0d2240,1, 0x0d2230,1, 0x0d2228,1, 0x0d2224,1, 0x0d2220,1, 0x0d221c,1, 0x0d2218,1, 0x0d2214,1, 0x0d2210,1, 0x0d220c,1, 0x0d2208,1, 0x0d2204,1, 0x0d2200,1, 0x0d2154,1, 0x0d2150,1, 0x0d2140,1, 0x0d212c,1, 0x0d2128,1, 0x0d2124,1, 0x0d2120,1, 0x0d211c,1, 0x0d2118,1, 0x0d2114,1, 0x0d2110,1, 0x0d210c,1, 0x0d2108,1, 0x0d2104,1, 0x0d2100,1, 0x0d20fc,1, 0x0d20f8,1, 0x0d20f4,1, 0x0d20f0,1, 0x0d20c8,1, 0x0d20c4,1, 0x0d20c0,1, 0x0d20b8,1, 0x0d20b4,1, 0x0d20b0,1, 0x0d20ac,1, 0x0d20a8,1, 0x0d209c,1, 0x0d2098,1, 0x0d2094,1, 0x0d2090,1, 0x0d208c,1, 0x0d2088,1, 0x0d2084,1, 0x0d2080,1, 0x0d2074,1, 0x0d2070,1, 0x0d206c,1, 0x0d2068,1, 0x0d2064,1, 0x0d2060,1, 0x0d205c,1, 0x0d2058,1, 0x0d2054,1, 0x0d2050,1, 0x0d2040,1, 0x0d2030,1, 0x0d2028,1, 0x0d2024,1, 0x0d2020,1, 0x0d201c,1, 0x0d2018,1, 0x0d2014,1, 0x0d2010,1, 0x0d200c,1, 0x0d2008,1, 0x0d2004,1, 0x0d2000,1, 0x0d1e24,1, 0x0d1e20,1, 0x0d1d54,1, 0x0d1d50,1, 0x0d1d40,1, 0x0d1d2c,1, 0x0d1d28,1, 0x0d1d24,1, 0x0d1d20,1, 0x0d1d1c,1, 0x0d1d18,1, 0x0d1d14,1, 0x0d1d10,1, 0x0d1d0c,1, 0x0d1d08,1, 0x0d1d04,1, 0x0d1d00,1, 0x0d1cfc,1, 0x0d1cf8,1, 0x0d1cf4,1, 0x0d1cf0,1, 0x0d1cc8,1, 0x0d1cc4,1, 0x0d1cc0,1, 0x0d1cb8,1, 0x0d1cb4,1, 0x0d1cb0,1, 0x0d1cac,1, 0x0d1ca8,1, 0x0d1c9c,1, 0x0d1c98,1, 0x0d1c94,1, 0x0d1c90,1, 0x0d1c8c,1, 0x0d1c88,1, 0x0d1c84,1, 0x0d1c80,1, 0x0d1c74,1, 0x0d1c70,1, 0x0d1c6c,1, 0x0d1c68,1, 0x0d1c64,1, 0x0d1c60,1, 0x0d1c5c,1, 0x0d1c58,1, 0x0d1c54,1, 0x0d1c50,1, 0x0d1c40,1, 0x0d1c30,1, 0x0d1c28,1, 0x0d1c24,1, 0x0d1c20,1, 0x0d1c1c,1, 0x0d1c18,1, 0x0d1c14,1, 0x0d1c10,1, 0x0d1c0c,1, 0x0d1c08,1, 0x0d1c04,1, 0x0d1c00,1, 0x0d1b54,1, 0x0d1b50,1, 0x0d1b40,1, 0x0d1b2c,1, 0x0d1b28,1, 0x0d1b24,1, 0x0d1b20,1, 0x0d1b1c,1, 0x0d1b18,1, 0x0d1b14,1, 0x0d1b10,1, 0x0d1b0c,1, 0x0d1b08,1, 0x0d1b04,1, 0x0d1b00,1, 0x0d1afc,1, 0x0d1af8,1, 0x0d1af4,1, 0x0d1af0,1, 0x0d1ac8,1, 0x0d1ac4,1, 0x0d1ac0,1, 0x0d1ab8,1, 0x0d1ab4,1, 0x0d1ab0,1, 0x0d1aac,1, 0x0d1aa8,1, 0x0d1a9c,1, 0x0d1a98,1, 0x0d1a94,1, 0x0d1a90,1, 0x0d1a8c,1, 0x0d1a88,1, 0x0d1a84,1, 0x0d1a80,1, 0x0d1a74,1, 0x0d1a70,1, 0x0d1a6c,1, 0x0d1a68,1, 0x0d1a64,1, 0x0d1a60,1, 0x0d1a5c,1, 0x0d1a58,1, 0x0d1a54,1, 0x0d1a50,1, 0x0d1a40,1, 0x0d1a30,1, 0x0d1a28,1, 0x0d1a24,1, 0x0d1a20,1, 0x0d1a1c,1,UNKNOWN 0x0d1a18,1, 0x0d1a14,1, 0x0d1a10,1, 0x0d1a0c,1, 0x0d1a08,1, 0x0d1a04,1, 0x0d1a00,1, 0x0d1954,1, 0x0d1950,1, 0x0d1940,1, 0x0d192c,1, 0x0d1928,1, 0x0d1924,1, 0x0d1920,1, 0x0d191c,1, 0x0d1918,1, 0x0d1914,1, 0x0d1910,1, 0x0d190c,1, 0x0d1908,1, 0x0d1904,1, 0x0d1900,1, 0x0d18fc,1, 0x0d18f8,1, 0x0d18f4,1, 0x0d18f0,1, 0x0d18c8,1, 0x0d18c4,1, 0x0d18c0,1, 0x0d18b8,1, 0x0d18b4,1, 0x0d18b0,1, 0x0d18ac,1, 0x0d18a8,1, 0x0d189c,1, 0x0d1898,1, 0x0d1894,1, 0x0d1890,1, 0x0d188c,1, 0x0d1888,1, 0x0d1884,1, 0x0d1880,1, 0x0d1874,1, 0x0d1870,1, 0x0d186c,1, 0x0d1868,1, 0x0d1864,1, 0x0d1860,1, 0x0d185c,1, 0x0d1858,1, 0x0d1854,1, 0x0d1850,1, 0x0d1840,1, 0x0d1830,1, 0x0d1828,1, 0x0d1824,1, 0x0d1820,1, 0x0d181c,1, 0x0d1818,1, 0x0d1814,1, 0x0d1810,1, 0x0d180c,1, 0x0d1808,1, 0x0d1804,1, 0x0d1800,1, 0x0d1624,1, 0x0d1620,1, 0x0d1554,1, 0x0d1550,1, 0x0d1540,1, 0x0d152c,1, 0x0d1528,1, 0x0d1524,1, 0x0d1520,1, 0x0d151c,1, 0x0d1518,1, 0x0d1514,1, 0x0d1510,1, 0x0d150c,1, 0x0d1508,1, 0x0d1504,1, 0x0d1500,1, 0x0d14fc,1, 0x0d14f8,1, 0x0d14f4,1, 0x0d14f0,1, 0x0d14c8,1, 0x0d14c4,1, 0x0d14c0,1, 0x0d14b8,1, 0x0d14b4,1, 0x0d14b0,1, 0x0d14ac,1, 0x0d14a8,1, 0x0d149c,1, 0x0d1498,1, 0x0d1494,1, 0x0d1490,1, 0x0d148c,1, 0x0d1488,1, 0x0d1484,1, 0x0d1480,1, 0x0d1474,1, 0x0d1470,1, 0x0d146c,1, 0x0d1468,1, 0x0d1464,1, 0x0d1460,1, 0x0d145c,1, 0x0d1458,1, 0x0d1454,1, 0x0d1450,1, 0x0d1440,1, 0x0d1430,1, 0x0d1428,1, 0x0d1424,1, 0x0d1420,1, 0x0d141c,1, 0x0d1418,1, 0x0d1414,1, 0x0d1410,1, 0x0d140c,1, 0x0d1408,1, 0x0d1404,1, 0x0d1400,1, 0x0d1354,1, 0x0d1350,1, 0x0d1340,1, 0x0d132c,1, 0x0d1328,1, 0x0d1324,1, 0x0d1320,1, 0x0d131c,1, 0x0d1318,1, 0x0d1314,1, 0x0d1310,1, 0x0d130c,1, 0x0d1308,1, 0x0d1304,1, 0x0d1300,1, 0x0d12fc,1, 0x0d12f8,1, 0x0d12f4,1, 0x0d12f0,1, 0x0d12c8,1, 0x0d12c4,1, 0x0d12c0,1, 0x0d12b8,1, 0x0d12b4,1, 0x0d12b0,1, 0x0d12ac,1, 0x0d12a8,1, 0x0d129c,1, 0x0d1298,1, 0x0d1294,1, 0x0d1290,1, 0x0d128c,1, 0x0d1288,1, 0x0d1284,1, 0x0d1280,1, 0x0d1274,1, 0x0d1270,1, 0x0d126c,1, 0x0d1268,1, 0x0d1264,1, 0x0d1260,1, 0x0d125c,1, 0x0d1258,1, 0x0d1254,1, 0x0d1250,1, 0x0d1240,1, 0x0d1230,1, 0x0d1228,1, 0x0d1224,1, 0x0d1220,1, 0x0d121c,1, 0x0d1218,1, 0x0d1214,1, 0x0d1210,1, 0x0d120c,1, 0x0d1208,1, 0x0d1204,1, 0x0d1200,1, 0x0d1154,1, 0x0d1150,1, 0x0d1140,1, 0x0d112c,1, 0x0d1128,1, 0x0d1124,1, 0x0d1120,1, 0x0d111c,1, 0x0d1118,1, 0x0d1114,1, 0x0d1110,1, 0x0d110c,1, 0x0d1108,1, 0x0d1104,1, 0x0d1100,1, 0x0d10fc,1, 0x0d10f8,1, 0x0d10f4,1, 0x0d10f0,1, 0x0d10c8,1, 0x0d10c4,1, 0x0d10c0,1, 0x0d10b8,1, 0x0d10b4,1, 0x0d10b0,1, 0x0d10ac,1, 0x0d10a8,1, 0x0d109c,1, 0x0d1098,1, 0x0d1094,1, 0x0d1090,1, 0x0d108c,1, 0x0d1088,1, 0x0d1084,1, 0x0d1080,1, 0x0d1074,1, 0x0d1070,1, 0x0d106c,1, 0x0d1068,1, 0x0d1064,1, 0x0d1060,1, 0x0d105c,1, 0x0d1058,1, 0x0d1054,1, 0x0d1050,1, 0x0d1040,1, 0x0d1030,1, 0x0d1028,1, 0x0d1024,1, 0x0d1020,1, 0x0d101c,1, 0x0d1018,1, 0x0d1014,1, 0x0d1010,1, 0x0d100c,1, 0x0d1008,1, 0x0d1004,1, 0x0d1000,1, 0x0d0e24,1, 0x0d0e20,1, 0x0d0d54,1, 0x0d0d50,1, 0x0d0d40,1, 0x0d0d2c,1, 0x0d0d28,1, 0x0d0d24,1, 0x0d0d20,1, 0x0d0d1c,1, 0x0d0d18,1, 0x0d0d14,1, 0x0d0d10,1, 0x0d0d0c,1, 0x0d0d08,1, 0x0d0d04,1, 0x0d0d00,1, 0x0d0cfc,1, 0x0d0cf8,1, 0x0d0cf4,1, 0x0d0cf0,1, 0x0d0cc8,1, 0x0d0cc4,1, 0x0d0cc0,1, 0x0d0cb8,1, 0x0d0cb4,1, 0x0d0cb0,1, 0x0d0cac,1, 0x0d0ca8,1, 0x0d0c9c,1, 0x0d0c98,1, 0x0d0c94,1, 0x0d0c90,1, 0x0d0c8c,1, 0x0d0c88,1, 0x0d0c84,1, 0x0d0c80,1, 0x0d0c74,1, 0x0d0c70,1, 0x0d0c6c,1, 0x0d0c68,1, 0x0d0c64,1, 0x0d0c60,1, 0x0d0c5c,1, 0x0d0c58,1, 0x0d0c54,1, 0x0d0c50,1, 0x0d0c40,1, 0x0d0c30,1, 0x0d0c28,1, 0x0d0c24,1, 0x0d0c20,1, 0x0d0c1c,1, 0x0d0c18,1, 0x0d0c14,1, 0x0d0c10,1, 0x0d0c0c,1, 0x0d0c08,1, 0x0d0c04,1, 0x0d0c00,1, 0x0d0b54,1, 0x0d0b50,1, 0x0d0b40,1, 0x0d0b2c,1, 0x0d0b28,1, 0x0d0b24,1, 0x0d0b20,1, 0x0d0b1c,1, 0x0d0b18,1, 0x0d0b14,1, 0x0d0b10,1, 0x0d0b0c,1, 0x0d0b08,1, 0x0d0b04,1, 0x0d0b00,1, 0x0d0afc,1, 0x0d0af8,1, 0x0d0af4,1, 0x0d0af0,1, 0x0d0ac8,1, 0x0d0ac4,1, 0x0d0ac0,1, 0x0d0ab8,1, 0x0d0ab4,1, 0x0d0ab0,1, 0x0d0aac,1, 0x0d0aa8,1, 0x0d0a9c,1, 0x0d0a98,1, 0x0d0a94,1, 0x0d0a90,1, 0x0d0a8c,1, 0x0d0a88,1, 0x0d0a84,1, 0x0d0a80,1, 0x0d0a74,1, 0x0d0a70,1, 0x0d0a6c,1, 0x0d0a68,1, 0x0d0a64,1, 0x0d0a60,1, 0x0d0a5c,1, 0x0d0a58,1, 0x0d0a54,1, 0x0d0a50,1,UNKNOWN 0x0d0a40,1, 0x0d0a30,1, 0x0d0a28,1, 0x0d0a24,1, 0x0d0a20,1, 0x0d0a1c,1, 0x0d0a18,1, 0x0d0a14,1, 0x0d0a10,1, 0x0d0a0c,1, 0x0d0a08,1, 0x0d0a04,1, 0x0d0a00,1, 0x0d0954,1, 0x0d0950,1, 0x0d0940,1, 0x0d092c,1, 0x0d0928,1, 0x0d0924,1, 0x0d0920,1, 0x0d091c,1, 0x0d0918,1, 0x0d0914,1, 0x0d0910,1, 0x0d090c,1, 0x0d0908,1, 0x0d0904,1, 0x0d0900,1, 0x0d08fc,1, 0x0d08f8,1, 0x0d08f4,1, 0x0d08f0,1, 0x0d08c8,1, 0x0d08c4,1, 0x0d08c0,1, 0x0d08b8,1, 0x0d08b4,1, 0x0d08b0,1, 0x0d08ac,1, 0x0d08a8,1, 0x0d089c,1, 0x0d0898,1, 0x0d0894,1, 0x0d0890,1, 0x0d088c,1, 0x0d0888,1, 0x0d0884,1, 0x0d0880,1, 0x0d0874,1, 0x0d0870,1, 0x0d086c,1, 0x0d0868,1, 0x0d0864,1, 0x0d0860,1, 0x0d085c,1, 0x0d0858,1, 0x0d0854,1, 0x0d0850,1, 0x0d0840,1, 0x0d0830,1, 0x0d0828,1, 0x0d0824,1, 0x0d0820,1, 0x0d081c,1, 0x0d0818,1, 0x0d0814,1, 0x0d0810,1, 0x0d080c,1, 0x0d0808,1, 0x0d0804,1, 0x0d0800,1, 0x0d0624,1, 0x0d0620,1, 0x0d0554,1, 0x0d0550,1, 0x0d0540,1, 0x0d052c,1, 0x0d0528,1, 0x0d0524,1, 0x0d0520,1, 0x0d051c,1, 0x0d0518,1, 0x0d0514,1, 0x0d0510,1, 0x0d050c,1, 0x0d0508,1, 0x0d0504,1, 0x0d0500,1, 0x0d04fc,1, 0x0d04f8,1, 0x0d04f4,1, 0x0d04f0,1, 0x0d04c8,1, 0x0d04c4,1, 0x0d04c0,1, 0x0d04b8,1, 0x0d04b4,1, 0x0d04b0,1, 0x0d04ac,1, 0x0d04a8,1, 0x0d049c,1, 0x0d0498,1, 0x0d0494,1, 0x0d0490,1, 0x0d048c,1, 0x0d0488,1, 0x0d0484,1, 0x0d0480,1, 0x0d0474,1, 0x0d0470,1, 0x0d046c,1, 0x0d0468,1, 0x0d0464,1, 0x0d0460,1, 0x0d045c,1, 0x0d0458,1, 0x0d0454,1, 0x0d0450,1, 0x0d0440,1, 0x0d0430,1, 0x0d0428,1, 0x0d0424,1, 0x0d0420,1, 0x0d041c,1, 0x0d0418,1, 0x0d0414,1, 0x0d0410,1, 0x0d040c,1, 0x0d0408,1, 0x0d0404,1, 0x0d0400,1, 0x0d0354,1, 0x0d0350,1, 0x0d0340,1, 0x0d032c,1, 0x0d0328,1, 0x0d0324,1, 0x0d0320,1, 0x0d031c,1, 0x0d0318,1, 0x0d0314,1, 0x0d0310,1, 0x0d030c,1, 0x0d0308,1, 0x0d0304,1, 0x0d0300,1, 0x0d02fc,1, 0x0d02f8,1, 0x0d02f4,1, 0x0d02f0,1, 0x0d02c8,1, 0x0d02c4,1, 0x0d02c0,1, 0x0d02b8,1, 0x0d02b4,1, 0x0d02b0,1, 0x0d02ac,1, 0x0d02a8,1, 0x0d029c,1, 0x0d0298,1, 0x0d0294,1, 0x0d0290,1, 0x0d028c,1, 0x0d0288,1, 0x0d0284,1, 0x0d0280,1, 0x0d0274,1, 0x0d0270,1, 0x0d026c,1, 0x0d0268,1, 0x0d0264,1, 0x0d0260,1, 0x0d025c,1, 0x0d0258,1, 0x0d0254,1, 0x0d0250,1, 0x0d0240,1, 0x0d0230,1, 0x0d0228,1, 0x0d0224,1, 0x0d0220,1, 0x0d021c,1, 0x0d0218,1, 0x0d0214,1, 0x0d0210,1, 0x0d020c,1, 0x0d0208,1, 0x0d0204,1, 0x0d0200,1, 0x0d0154,1, 0x0d0150,1, 0x0d0140,1, 0x0d012c,1, 0x0d0128,1, 0x0d0124,1, 0x0d0120,1, 0x0d011c,1, 0x0d0118,1, 0x0d0114,1, 0x0d0110,1, 0x0d010c,1, 0x0d0108,1, 0x0d0104,1, 0x0d0100,1, 0x0d00fc,1, 0x0d00f8,1, 0x0d00f4,1, 0x0d00f0,1, 0x0d00c8,1, 0x0d00c4,1, 0x0d00c0,1, 0x0d00b8,1, 0x0d00b4,1, 0x0d00b0,1, 0x0d00ac,1, 0x0d00a8,1, 0x0d009c,1, 0x0d0098,1, 0x0d0094,1, 0x0d0090,1, 0x0d008c,1, 0x0d0088,1, 0x0d0084,1, 0x0d0080,1, 0x0d0074,1, 0x0d0070,1, 0x0d006c,1, 0x0d0068,1, 0x0d0064,1, 0x0d0060,1, 0x0d005c,1, 0x0d0058,1, 0x0d0054,1, 0x0d0050,1, 0x0d0040,1, 0x0d0030,1, 0x0d0028,1, 0x0d0024,1, 0x0d0020,1, 0x0d001c,1, 0x0d0018,1, 0x0d0014,1, 0x0d0010,1, 0x0d000c,1, 0x0d0008,1, 0x0d0004,1, 0x0d0000,1, 0x0c2514,1, 0x0c2510,1, 0x0c2500,1, 0x0c2400,1, 0x0c2208,1, 0x0c2204,1, 0x0c2124,1, 0x0c2120,1, 0x0c211c,1, 0x0c2118,1, 0x0c2114,1, 0x0c2110,1, 0x0c210c,1, 0x0c2108,1, 0x0c2104,1, 0x0c2100,1, 0x0c2000,1, 0x0c1ff4,1, 0x0c1ff0,1, 0x0c1fb4,1, 0x0c1fb0,1, 0x0c1fa0,1, 0x0c1f94,1, 0x0c1f90,1, 0x0c1f80,1, 0x0c1f74,1, 0x0c1f70,1, 0x0c1f60,1, 0x0c1f54,1, 0x0c1f50,1, 0x0c1f40,1, 0x0c1f28,1, 0x0c1f20,1, 0x0c1f1c,1, 0x0c1f18,1, 0x0c1f10,1, 0x0c1f0c,1, 0x0c1f04,1, 0x0c1f00,1, 0x0c180c,1, 0x0c1808,1, 0x0c1804,1, 0x0c1800,1, 0x0c1754,1, 0x0c1750,1, 0x0c1740,1, 0x0c1734,1, 0x0c1730,1, 0x0c1720,1, 0x0c1714,1, 0x0c1710,1, 0x0c1700,1, 0x0c1694,1, 0x0c1690,1, 0x0c1680,1, 0x0c1674,1, 0x0c1670,1, 0x0c1660,1, 0x0c164c,1, 0x0c1648,1, 0x0c1644,1, 0x0c1640,1, 0x0c1600,1, 0x0c146c,1, 0x0c1468,1, 0x0c145c,1, 0x0c1458,1, 0x0c144c,1, 0x0c1448,1, 0x0c143c,1, 0x0c1438,1, 0x0c142c,1, 0x0c1428,1, 0x0c141c,1, 0x0c1418,1, 0x0c140c,1, 0x0c1408,1, 0x0c130c,1, 0x0c1308,1, 0x0c1304,1, 0x0c1300,1, 0x0c12ec,1, 0x0c12e8,1, 0x0c12e4,1, 0x0c12e0,1, 0x0c12dc,1, 0x0c12d8,1, 0x0c12d4,1, 0x0c12d0,1, 0x0c12cc,1, 0x0c12c8,1, 0x0c12c4,1, 0x0c12c0,1, 0x0c12bc,1, 0x0c12b8,1, 0x0c12b4,1, 0x0c12b0,1, 0x0c12ac,1, 0x0c12a8,1, 0x0c12a4,1, 0x0c12a0,1, 0x0c129c,1, 0x0c1298,1, 0x0c1294,1, 0x0c1290,1, 0x0c128c,1, 0x0c1288,1, 0x0c1284,1, 0x0c1280,1, 0x0c127c,1, 0x0c1278,1, 0x0c1270,1, 0x0c1268,1, 0x0c1264,1, 0x0c1260,1, 0x0c125c,1, 0x0c1258,1, 0x0c1254,1, 0x0c1250,1, 0x0c124c,1, 0x0c1248,1, 0x0c1244,1, 0x0c1240,1, 0x0c123c,1, 0x0c1238,1, 0x0c1234,1, 0x0c1230,1, 0x0c122c,1, 0x0c1228,1, 0x0c1224,1, 0x0c1220,1, 0x0c1218,1, 0x0c1214,1, 0x0c1210,1, 0x0c120c,1, 0x0c1208,1, 0x0c1204,1, 0x0c1200,1, 0x0c11fc,1, 0x0c11f8,1, 0x0c11f4,1, 0x0c11f0,1, 0x0c11ec,1, 0x0c11e8,1, 0x0c11e4,1, 0x0c11e0,1, 0x0c11dc,1, 0x0c11d8,1, 0x0c11d0,1, 0x0c11cc,1, 0x0c11c8,1, 0x0c11c4,1, 0x0c11c0,1, 0x0c11bc,1, 0x0c11b8,1, 0x0c11b4,1, 0x0c11b0,1, 0x0c11ac,1, 0x0c11a8,1, 0x0c11a4,1, 0x0c11a0,1, 0x0c119c,1, 0x0c1198,1, 0x0c1194,1, 0x0c1190,1, 0x0c118c,1, 0x0c1188,1, 0x0c1184,1, 0x0c1180,1, 0x0c117c,1, 0x0c1178,1, 0x0c1174,1, 0x0c1170,1, 0x0c116c,1, 0x0c1168,1, 0x0c1164,1, 0x0c1160,1, 0x0c115c,1, 0x0c1158,1, 0x0c1154,1, 0x0c1150,1, 0x0c114c,1, 0x0c1148,1, 0x0c1144,1, 0x0c1140,1, 0x0c113c,1, 0x0c1138,1, 0x0c1134,1, 0x0c1130,1, 0x0c112c,1, 0x0c1128,1, 0x0c1124,1, 0x0c1120,1, 0x0c111c,1, 0x0c1118,1, 0x0c1114,1, 0x0c1110,1, 0x0c110c,1, 0x0c1108,1, 0x0c1104,1, 0x0c1100,1, 0x0c1064,1, 0x0c1060,1, 0x0c105c,1, 0x0c1058,1, 0x0c1054,1, 0x0c1050,1, 0x0c104c,1, 0x0c1048,1, 0x0c1044,1, 0x0c1040,1, 0x0c103c,1, 0x0c1038,1, 0x0c1034,1, 0x0c1030,1, 0x0c102c,1, 0x0c1028,1, 0x0c1024,1, 0x0c1020,1, 0x0c101c,1, 0x0c1018,1, 0x0c1014,1, 0x0c1010,1, 0x0c100c,1, 0x0c1008,1, 0x0c1004,1, 0x0c1000,1, 0x0c0ff4,1, 0x0c0ff0,1, 0x0c0fb4,1, 0x0c0fb0,1, 0x0c0fa0,1, 0x0c0f94,1, 0x0c0f90,1, 0x0c0f80,1, 0x0c0f74,1, 0x0c0f70,1, 0x0c0f60,1, 0x0c0f54,1, 0x0c0f50,1, 0x0c0f40,1, 0x0c0f28,1, 0x0c0f20,1, 0x0c0f1c,1, 0x0c0f18,1, 0x0c0f10,1, 0x0c0f0c,1, 0x0c0f04,1, 0x0c0f00,1, 0x0c080c,1, 0x0c0808,1, 0x0c0804,1, 0x0c0800,1, 0x0c0754,1, 0x0c0750,1, 0x0c0740,1, 0x0c0734,1, 0x0c0730,1, 0x0c0720,1, 0x0c0714,1, 0x0c0710,1, 0x0c0700,1, 0x0c0694,1, 0x0c0690,1, 0x0c0680,1, 0x0c0674,1, 0x0c0670,1, 0x0c0660,1, 0x0c064c,1, 0x0c0648,1, 0x0c0644,1, 0x0c0640,1, 0x0c0600,1, 0x0c046c,1, 0x0c0468,1, 0x0c045c,1, 0x0c0458,1, 0x0c044c,1, 0x0c0448,1, 0x0c043c,1, 0x0c0438,1, 0x0c042c,1, 0x0c0428,1, 0x0c041c,1, 0x0c0418,1, 0x0c040c,1, 0x0c0408,1, 0x0c030c,1, 0x0c0308,1, 0x0c0304,1, 0x0c0300,1, 0x0c02ec,1, 0x0c02e8,1, 0x0c02e4,1, 0x0c02e0,1, 0x0c02dc,1, 0x0c02d8,1, 0x0c02d4,1, 0x0c02d0,1, 0x0c02cc,1, 0x0c02c8,1, 0x0c02c4,1, 0x0c02c0,1, 0x0c02bc,1, 0x0c02b8,1, 0x0c02b4,1, 0x0c02b0,1, 0x0c02ac,1, 0x0c02a8,1, 0x0c02a4,1, 0x0c02a0,1, 0x0c029c,1, 0x0c0298,1, 0x0c0294,1, 0x0c0290,1, 0x0c028c,1, 0x0c0288,1, 0x0c0284,1, 0x0c0280,1, 0x0c027c,1, 0x0c0278,1, 0x0c0270,1, 0x0c0268,1, 0x0c0264,1, 0x0c0260,1, 0x0c025c,1, 0x0c0258,1, 0x0c0254,1, 0x0c0250,1, 0x0c024c,1, 0x0c0248,1, 0x0c0244,1, 0x0c0240,1, 0x0c023c,1, 0x0c0238,1, 0x0c0234,1, 0x0c0230,1, 0x0c022c,1, 0x0c0228,1, 0x0c0224,1, 0x0c0220,1, 0x0c0218,1, 0x0c0214,1, 0x0c0210,1, 0x0c020c,1, 0x0c0208,1, 0x0c0204,1, 0x0c0200,1, 0x0c01fc,1, 0x0c01f8,1, 0x0c01f4,1, 0x0c01f0,1, 0x0c01ec,1, 0x0c01e8,1, 0x0c01e4,1, 0x0c01e0,1, 0x0c01dc,1, 0x0c01d8,1, 0x0c01d0,1, 0x0c01cc,1, 0x0c01c8,1, 0x0c01c4,1, 0x0c01c0,1, 0x0c01bc,1, 0x0c01b8,1, 0x0c01b4,1, 0x0c01b0,1, 0x0c01ac,1, 0x0c01a8,1, 0x0c01a4,1, 0x0c01a0,1, 0x0c019c,1, 0x0c0198,1, 0x0c0194,1, 0x0c0190,1, 0x0c018c,1, 0x0c0188,1, 0x0c0184,1, 0x0c0180,1, 0x0c017c,1, 0x0c0178,1, 0x0c0174,1, 0x0c0170,1, 0x0c016c,1, 0x0c0168,1, 0x0c0164,1, 0x0c0160,1, 0x0c015c,1, 0x0c0158,1, 0x0c0154,1, 0x0c0150,1, 0x0c014c,1, 0x0c0148,1, 0x0c0144,1, 0x0c0140,1, 0x0c013c,1, 0x0c0138,1, 0x0c0134,1, 0x0c0130,1, 0x0c012c,1, 0x0c0128,1, 0x0c0124,1, 0x0c0120,1, 0x0c011c,1, 0x0c0118,1, 0x0c0114,1, 0x0c0110,1, 0x0c010c,1, 0x0c0108,1, 0x0c0104,1, 0x0c0100,1, 0x0c0064,1, 0x0c0060,1, 0x0c005c,1, 0x0c0058,1, 0x0c0054,1, 0x0c0050,1, 0x0c004c,1, 0x0c0048,1, 0x0c0044,1, 0x0c0040,1, 0x0c003c,1, 0x0c0038,1, 0x0c0034,1, 0x0c0030,1, 0x0c002c,1, 0x0c0028,1, 0x0c0024,1, 0x0c0020,1, 0x0c001c,1, 0x0c0018,1, 0x0c0014,1, 0x0c0010,1, 0x0c000c,1, 0x0c0008,1, 0x0c0004,1, 0x0c0000,1, 0x0b0f5c,1, 0x0b0f58,1, 0x0b0f4c,1, 0x0b0f48,1, 0x0b0f3c,1, 0x0b0f38,1, 0x0b0f2c,1, 0x0b0f28,1, 0x0b0f1c,1, 0x0b0f18,1, 0x0b0f0c,1, 0x0b0f08,1, 0x0b0efc,1, 0x0b0ef8,1, 0x0b0ef4,1, 0x0b0ef0,1, 0x0b0eec,1, 0x0b0ee8,1, 0x0b0ee4,1, 0x0b0ee0,1, 0x0b0edc,1, 0x0b0ed8,1, 0x0b0ed4,1, 0x0b0ed0,1, 0x0b0ebc,1, 0x0b0eb8,1, 0x0b0eb4,1, 0x0b0eb0,1, 0x0b0eac,1, 0x0b0ea8,1, 0x0b0ea4,1, 0x0b0ea0,1, 0x0b0e9c,1, 0x0b0e98,1, 0x0b0e94,1, 0x0b0e90,1, 0x0b0e7c,1, 0x0b0e78,1, 0x0b0e74,1, 0x0b0e70,1, 0x0b0e6c,1, 0x0b0e68,1, 0x0b0e64,1, 0x0b0e60,1, 0x0b0e5c,1, 0x0b0e58,1, 0x0b0e54,1, 0x0b0e50,1, 0x0b0e3c,1, 0x0b0e38,1, 0x0b0e34,1, 0x0b0e30,1, 0x0b0e2c,1, 0x0b0e28,1, 0x0b0e24,1, 0x0b0e20,1, 0x0b0e1c,1, 0x0b0e18,1, 0x0b0e14,1, 0x0b0e10,1, 0x0b0dfc,1, 0x0b0df8,1, 0x0b0df4,1, 0x0b0df0,1, 0x0b0dec,1, 0x0b0de8,1, 0x0b0de4,1, 0x0b0de0,1, 0x0b0ddc,1, 0x0b0dd8,1, 0x0b0dd4,1, 0x0b0dd0,1, 0x0b0dbc,1, 0x0b0db8,1, 0x0b0db4,1, 0x0b0db0,1, 0x0b0dac,1, 0x0b0da8,1, 0x0b0da4,1, 0x0b0da0,1, 0x0b0d9c,1, 0x0b0d98,1, 0x0b0d94,1, 0x0b0d90,1, 0x0b0d7c,1, 0x0b0d78,1, 0x0b0d6c,1, 0x0b0d68,1, 0x0b0d5c,1, 0x0b0d58,1, 0x0b0d4c,1, 0x0b0d48,1, 0x0b0d3c,1, 0x0b0d38,1, 0x0b0d2c,1, 0x0b0d28,1, 0x0b0cfc,1, 0x0b0cf8,1, 0x0b0cec,1, 0x0b0ce8,1, 0x0b0cdc,1, 0x0b0cd8,1, 0x0b0ccc,1, 0x0b0cc8,1, 0x0b0cbc,1, 0x0b0cb8,1, 0x0b0cac,1, 0x0b0ca8,1, 0x0b0bdc,1, 0x0b0bd8,1, 0x0b0bd4,1, 0x0b0bd0,1, 0x0b0bcc,1, 0x0b0bbc,1, 0x0b0bb8,1, 0x0b0bb4,1, 0x0b0bb0,1, 0x0b0bac,1, 0x0b0b9c,1, 0x0b0b98,1, 0x0b0b94,1, 0x0b0b90,1, 0x0b0b8c,1, 0x0b0b7c,1, 0x0b0b78,1, 0x0b0b74,1, 0x0b0b70,1, 0x0b0b6c,1, 0x0b0b5c,1, 0x0b0b58,1, 0x0b0b54,1, 0x0b0b50,1, 0x0b0b4c,1, 0x0b0b3c,1, 0x0b0b38,1, 0x0b0b34,1, 0x0b0b30,1, 0x0b0b2c,1, 0x0b0b1c,1, 0x0b0b18,1, 0x0b0b14,1, 0x0b0b10,1, 0x0b0b0c,1, 0x0b0aa4,1, 0x0b0aa0,1, 0x0b0a9c,1, 0x0b0a98,1, 0x0b0a90,1, 0x0b0a8c,1, 0x0b0a88,1, 0x0b0a74,1, 0x0b0a6c,1, 0x0b0a68,1, 0x0b0a64,1, 0x0b0a60,1, 0x0b0a5c,1, 0x0b0a58,1, 0x0b0a54,1, 0x0b0a50,1, 0x0b0a4c,1, 0x0b0a48,1, 0x0b0a44,1, 0x0b0a40,1, 0x0b0a3c,1, 0x0b0a38,1, 0x0b0a34,1, 0x0b0a30,1, 0x0b0a2c,1, 0x0b0a28,1, 0x0b0a24,1, 0x0b0a20,1, 0x0b0a1c,1, 0x0b0a18,1, 0x0b0a14,1, 0x0b0a10,1, 0x0b0a0c,1, 0x0b0a08,1, 0x0b0a04,1, 0x0b0a00,1, 0x0b09fc,1, 0x0b09f8,1, 0x0b09f4,1, 0x0b09f0,1, 0x0b09ec,1, 0x0b09e8,1, 0x0b09e4,1, 0x0b09e0,1, 0x0b09dc,1, 0x0b09d8,1, 0x0b09d4,1, 0x0b09d0,1, 0x0b09cc,1, 0x0b09c8,1, 0x0b09c4,1, 0x0b09c0,1, 0x0b09bc,1, 0x0b09b8,1, 0x0b09b4,1, 0x0b09b0,1, 0x0b09a8,1, 0x0b09a4,1, 0x0b09a0,1, 0x0b095c,1, 0x0b0958,1, 0x0b0954,1, 0x0b0950,1, 0x0b0914,1, 0x0b0910,1, 0x0b0900,1, 0x0b08f4,1, 0x0b08f0,1, 0x0b08b4,1, 0x0b08b0,1, 0x0b08a0,1, 0x0b0894,1, 0x0b0890,1, 0x0b0880,1, 0x0b0874,1, 0x0b0870,1, 0x0b0860,1, 0x0b0854,1, 0x0b0850,1, 0x0b0840,1, 0x0b0828,1, 0x0b0820,1, 0x0b081c,1, 0x0b0818,1, 0x0b0810,1, 0x0b080c,1, 0x0b0804,1, 0x0b0800,1, 0x0b07fc,1, 0x0b07f8,1, 0x0b07f4,1, 0x0b07f0,1, 0x0b07ec,1, 0x0b07e8,1, 0x0b07e4,1, 0x0b07e0,1, 0x0b07dc,1, 0x0b07c4,1, 0x0b07c0,1, 0x0b07bc,1, 0x0b07b8,1, 0x0b07b4,1, 0x0b07b0,1, 0x0b07ac,1, 0x0b07a8,1, 0x0b07a4,1, 0x0b07a0,1, 0x0b079c,1, 0x0b0784,1, 0x0b0780,1, 0x0b0768,1, 0x0b0764,1, 0x0b0760,1, 0x0b0754,1, 0x0b0750,1, 0x0b0534,1, 0x0b0530,1, 0x0b052c,1, 0x0b0528,1, 0x0b0524,1, 0x0b0520,1, 0x0b051c,1, 0x0b0518,1, 0x0b0514,1, 0x0b0510,1, 0x0b050c,1, 0x0b0508,1, 0x0b0504,1, 0x0b0500,1, 0x0b0408,1, 0x0b0404,1, 0x0b0400,1, 0x0b03fc,1, 0x0b03f8,1, 0x0b03f4,1, 0x0b03f0,1, 0x0b03ec,1, 0x0b03e8,1, 0x0b03e4,1, 0x0b03e0,1, 0x0b03dc,1, 0x0b03d8,1, 0x0b03d4,1, 0x0b03d0,1, 0x0b03cc,1, 0x0b03c8,1, 0x0b03c4,1, 0x0b03c0,1, 0x0b03bc,1, 0x0b03b8,1, 0x0b03b4,1, 0x0b03b0,1, 0x0b03ac,1, 0x0b03a8,1, 0x0b03a4,1, 0x0b03a0,1, 0x0b039c,1, 0x0b0398,1, 0x0b0394,1, 0x0b0390,1, 0x0b038c,1, 0x0b0388,1, 0x0b0384,1, 0x0b0380,1, 0x0b037c,1, 0x0b0378,1, 0x0b0374,1, 0x0b0370,1, 0x0b036c,1, 0x0b0368,1, 0x0b0364,1, 0x0b0360,1, 0x0b035c,1, 0x0b0358,1, 0x0b0354,1, 0x0b0350,1, 0x0b034c,1, 0x0b0348,1, 0x0b0344,1, 0x0b0340,1, 0x0b033c,1, 0x0b0338,1, 0x0b0334,1, 0x0b0330,1, 0x0b032c,1, 0x0b0328,1, 0x0b0324,1, 0x0b0320,1, 0x0b031c,1, 0x0b0318,1, 0x0b0314,1, 0x0b0310,1, 0x0b030c,1, 0x0b0308,1, 0x0b0304,1, 0x0b0300,1, 0x0b02fc,1, 0x0b02f8,1, 0x0b02f4,1, 0x0b02f0,1, 0x0b02ec,1, 0x0b02e8,1, 0x0b02e4,1, 0x0b02e0,1, 0x0b02dc,1, 0x0b02d8,1, 0x0b02d4,1, 0x0b02d0,1, 0x0b02cc,1, 0x0b02c8,1, 0x0b02c4,1, 0x0b02c0,1, 0x0b02bc,1, 0x0b02b8,1, 0x0b02b4,1, 0x0b02b0,1, 0x0b02ac,1, 0x0b02a8,1, 0x0b02a4,1, 0x0b02a0,1, 0x0b029c,1, 0x0b0298,1, 0x0b0294,1, 0x0b0290,1, 0x0b028c,1, 0x0b0288,1, 0x0b0284,1, 0x0b0280,1, 0x0b027c,1, 0x0b0278,1, 0x0b0274,1, 0x0b0270,1, 0x0b026c,1, 0x0b0268,1, 0x0b0264,1, 0x0b0260,1, 0x0b025c,1, 0x0b0258,1, 0x0b0254,1, 0x0b0250,1, 0x0b01f8,1, 0x0b01f4,1, 0x0b01f0,1, 0x0b01ec,1, 0x0b01e8,1, 0x0b01e4,1, 0x0b01e0,1, 0x0b01dc,1, 0x0b01d8,1, 0x0b01d4,1, 0x0b01cc,1, 0x0b01c8,1, 0x0b01c4,1, 0x0b01c0,1, 0x0b01ac,1, 0x0b01a8,1, 0x0b01a4,1, 0x0b01a0,1, 0x0b0180,1, 0x0b017c,1, 0x0b0178,1, 0x0b0174,1, 0x0b0170,1, 0x0b016c,1, 0x0b0168,1, 0x0b0164,1, 0x0b0160,1, 0x0b015c,1, 0x0b0158,1, 0x0b0154,1, 0x0b0150,1, 0x0b014c,1, 0x0b0148,1, 0x0b0144,1, 0x0b0140,1, 0x0b013c,1, 0x0b0138,1, 0x0b0134,1, 0x0b0130,1, 0x0b012c,1, 0x0b0128,1, 0x0b011c,1, 0x0b0118,1, 0x0b0110,1, 0x0b010c,1, 0x0b0108,1, 0x0b0104,1, 0x0b0100,1, 0x0b00fc,1, 0x0b00f8,1, 0x0b00f4,1, 0x0b00f0,1, 0x0b00e4,1, 0x0b00e0,1, 0x0b00dc,1, 0x0b00d8,1, 0x0b00d4,1, 0x0b00d0,1, 0x0b00cc,1, 0x0b00c8,1, 0x0b00c4,1, 0x0b00c0,1, 0x0b00bc,1, 0x0b00b8,1, 0x0b00b4,1, 0x0b00b0,1, 0x0b00ac,1, 0x0b00a8,1, 0x0b00a4,1, 0x0b00a0,1, 0x0b009c,1, 0x0b0098,1, 0x0b0094,1, 0x0b0090,1, 0x0b008c,1, 0x0b0088,1, 0x0b0084,1, 0x0b0080,1, 0x0b007c,1, 0x0b0078,1, 0x0b0074,1, 0x0b0070,1, 0x0b006c,1, 0x0b0068,1, 0x0b0064,1, 0x0b0060,1, 0x0b005c,1, 0x0b0058,1, 0x0b0054,1, 0x0b0050,1, 0x0b004c,1, 0x0b0048,1, 0x0b0044,1, 0x0b0040,1, 0x0b0038,1, 0x0b0030,1, 0x0b002c,1, 0x0b0028,1, 0x0b0024,1, 0x0b0020,1, 0x0b001c,1, 0x0b0018,1, 0x0b0014,1, 0x0b0010,1, 0x0b000c,1, 0x0b0008,1, 0x0b0004,1, 0x0b0000,1, 0x074550,1, 0x07454c,1, 0x074548,1, 0x074544,1, 0x074540,1, 0x074504,1, 0x074500,1, 0x0744f8,1, 0x0744ac,1, 0x0744a8,1, 0x0744a4,1, 0x0744a0,1, 0x07449c,1, 0x074498,1, 0x074494,1, 0x074490,1, 0x07448c,1, 0x074488,1, 0x074484,1, 0x074480,1, 0x0743d4,1, 0x0743d0,1, 0x0743c0,1, 0x0743b4,1, 0x0743b0,1, 0x0743a0,1, 0x074394,1, 0x074390,1, 0x074380,1, 0x074374,1, 0x074370,1, 0x074360,1, 0x074354,1, 0x074350,1, 0x074340,1, 0x074334,1, 0x074330,1, 0x074320,1, 0x074314,1, 0x074310,1, 0x074300,1, 0x0742f4,1, 0x0742f0,1, 0x0742e0,1, 0x0742d4,1, 0x0742d0,1, 0x0742c0,1, 0x0742b4,1, 0x0742b0,1, 0x0742a0,1, 0x074294,1, 0x074290,1, 0x074280,1, 0x074274,1, 0x074270,1, 0x074260,1, 0x074254,1, 0x074250,1, 0x074240,1, 0x074234,1, 0x074230,1, 0x074220,1, 0x074214,1, 0x074210,1, 0x074200,1, 0x073d0c,1, 0x073d08,1, 0x073d04,1, 0x073d00,1, 0x073cfc,1, 0x073cf8,1, 0x073cf4,1, 0x073cf0,1, 0x073cec,1, 0x073ce8,1, 0x073ce4,1, 0x073ce0,1, 0x073cdc,1, 0x073cd8,1, 0x073cd4,1, 0x073cd0,1, 0x073ccc,1, 0x073cc8,1, 0x073cc4,1, 0x073cc0,1, 0x073cbc,1, 0x073cb8,1, 0x073cb4,1, 0x073cb0,1, 0x073cac,1, 0x073ca8,1, 0x073ca4,1, 0x073ca0,1, 0x073c9c,1, 0x073c98,1, 0x073c94,1, 0x073c90,1, 0x073c8c,1, 0x073c88,1, 0x073c84,1, 0x073c80,1, 0x073c7c,1, 0x073c78,1, 0x073c74,1, 0x073c70,1, 0x073c6c,1, 0x073c68,1, 0x073c64,1, 0x073c60,1, 0x073c5c,1, 0x073c58,1, 0x073c54,1, 0x073c50,1, 0x073c4c,1, 0x073c48,1, 0x073c44,1, 0x073c40,1, 0x073c3c,1, 0x073c38,1, 0x073c34,1, 0x073c30,1, 0x073c2c,1, 0x073c28,1, 0x073c24,1, 0x073c20,1, 0x073c1c,1, 0x073c18,1, 0x073c14,1, 0x073c10,1, 0x073c0c,1, 0x073c08,1, 0x073c04,1, 0x073c00,1, 0x073bfc,1, 0x073bf8,1, 0x073bf4,1, 0x073bf0,1, 0x073bec,1, 0x073be8,1, 0x073be4,1, 0x073be0,1, 0x073bdc,1, 0x073bd8,1, 0x073bd4,1, 0x073bd0,1, 0x073bcc,1, 0x073bc8,1, 0x073bc4,1, 0x073bc0,1, 0x073bbc,1, 0x073bb8,1, 0x073bb4,1, 0x073bb0,1, 0x073bac,1, 0x073ba8,1, 0x073ba4,1, 0x073ba0,1, 0x073b9c,1, 0x073b98,1, 0x073b94,1, 0x073b90,1, 0x073b8c,1, 0x073b88,1, 0x073b84,1, 0x073b80,1, 0x073b7c,1, 0x073b78,1, 0x073b74,1, 0x073b70,1, 0x073b6c,1, 0x073b68,1, 0x073b64,1, 0x073b60,1, 0x073b5c,1, 0x073b58,1, 0x073b54,1, 0x073b50,1, 0x073b4c,1, 0x073b48,1, 0x073b44,1, 0x073b40,1, 0x073b3c,1, 0x073b38,1, 0x073b34,1, 0x073b30,1, 0x073b2c,1, 0x073b28,1, 0x073b24,1, 0x073b20,1, 0x073b1c,1, 0x073b18,1, 0x073b14,1, 0x073b10,1, 0x073b0c,1, 0x073b08,1, 0x073b04,1, 0x073b00,1, 0x073afc,1, 0x073af8,1, 0x073af4,1, 0x073af0,1, 0x073aec,1, 0x073ae8,1, 0x073ae4,1, 0x073ae0,1, 0x073adc,1, 0x073ad8,1, 0x073ad4,1, 0x073ad0,1, 0x073acc,1, 0x073ac8,1, 0x073ac4,1, 0x073ac0,1, 0x073abc,1, 0x073ab8,1, 0x073ab4,1, 0x073ab0,1, 0x073aac,1, 0x073aa8,1, 0x073aa4,1, 0x073aa0,1, 0x073a9c,1, 0x073a98,1, 0x073a94,1, 0x073a90,1, 0x073a8c,1, 0x073a88,1, 0x073a84,1, 0x073a80,1, 0x073a7c,1, 0x073a78,1, 0x073a74,1, 0x073a70,1, 0x073a6c,1, 0x073a68,1, 0x073a64,1, 0x073a60,1, 0x073a5c,1, 0x073a58,1, 0x073a54,1, 0x073a50,1, 0x073a4c,1, 0x073a48,1, 0x073a44,1, 0x073a40,1, 0x073a3c,1, 0x073a38,1, 0x073a34,1, 0x073a30,1, 0x073a2c,1, 0x073a28,1, 0x073a24,1, 0x073a20,1, 0x073a1c,1, 0x073a18,1, 0x073a14,1, 0x073a10,1, 0x073a0c,1, 0x073a08,1, 0x073a04,1, 0x073a00,1, 0x0739fc,1, 0x0739f8,1, 0x0739f4,1, 0x0739f0,1, 0x0739ec,1, 0x0739e8,1, 0x0739e4,1, 0x0739e0,1, 0x0739dc,1, 0x0739d8,1, 0x0739d4,1, 0x0739d0,1, 0x0739cc,1, 0x0739c8,1, 0x0739c4,1, 0x0739c0,1, 0x0739bc,1, 0x0739b8,1, 0x0739b4,1, 0x0739b0,1, 0x0739ac,1, 0x0739a8,1, 0x0739a4,1, 0x0739a0,1, 0x07399c,1, 0x073998,1, 0x073994,1, 0x073990,1, 0x07398c,1, 0x073988,1, 0x073984,1, 0x073980,1, 0x07397c,1, 0x073978,1, 0x073974,1, 0x073970,1, 0x07396c,1, 0x073968,1, 0x073964,1, 0x073960,1, 0x07395c,1, 0x073958,1, 0x073954,1, 0x073950,1, 0x07394c,1, 0x073948,1, 0x073944,1, 0x073940,1, 0x07393c,1, 0x073938,1, 0x073934,1, 0x073930,1, 0x07392c,1, 0x073928,1, 0x073924,1, 0x073920,1, 0x07391c,1, 0x073918,1, 0x073914,1, 0x073910,1, 0x07390c,1, 0x073908,1, 0x073904,1, 0x073900,1, 0x0738fc,1, 0x0738f8,1, 0x0738f4,1, 0x0738f0,1, 0x0738ec,1, 0x0738e8,1, 0x0738e4,1, 0x0738e0,1, 0x0738dc,1, 0x0738d8,1, 0x0738d4,1, 0x0738d0,1, 0x0738cc,1, 0x0738c8,1, 0x0738c4,1, 0x0738c0,1, 0x0738bc,1, 0x0738b8,1, 0x0738b4,1, 0x0738b0,1, 0x0738ac,1, 0x0738a8,1, 0x0738a4,1, 0x0738a0,1, 0x07389c,1, 0x073898,1, 0x073894,1, 0x073890,1, 0x07388c,1, 0x073888,1, 0x073884,1, 0x073880,1, 0x07387c,1, 0x073878,1, 0x073874,1, 0x073870,1, 0x07386c,1, 0x073868,1, 0x073864,1, 0x073860,1, 0x07385c,1, 0x073858,1, 0x073854,1, 0x073850,1, 0x07384c,1, 0x073848,1, 0x073844,1, 0x073840,1, 0x07383c,1, 0x073838,1, 0x073834,1, 0x073830,1, 0x07382c,1, 0x073828,1, 0x073824,1, 0x073820,1, 0x07381c,1, 0x073818,1, 0x073814,1, 0x073810,1, 0x07380c,1, 0x073808,1, 0x073804,1, 0x073800,1, 0x07350c,1, 0x073508,1, 0x073504,1, 0x073500,1, 0x0734fc,1, 0x0734f8,1, 0x0734f4,1, 0x0734f0,1, 0x0734ec,1, 0x0734e8,1, 0x0734e4,1, 0x0734e0,1, 0x0734dc,1, 0x0734d8,1, 0x0734d4,1, 0x0734d0,1, 0x0734cc,1, 0x0734c8,1, 0x0734c4,1, 0x0734c0,1, 0x0734bc,1, 0x0734b8,1, 0x0734b4,1, 0x0734b0,1, 0x0734ac,1, 0x0734a8,1, 0x0734a4,1, 0x0734a0,1, 0x07349c,1, 0x073498,1, 0x073494,1, 0x073490,1, 0x07348c,1, 0x073488,1, 0x073484,1, 0x073480,1, 0x07347c,1, 0x073478,1, 0x073474,1, 0x073470,1, 0x07346c,1, 0x073468,1, 0x073464,1, 0x073460,1, 0x07345c,1, 0x073458,1, 0x073454,1, 0x073450,1, 0x07344c,1, 0x073448,1, 0x073444,1, 0x073440,1, 0x07343c,1, 0x073438,1, 0x073434,1, 0x073430,1, 0x07342c,1, 0x073428,1, 0x073424,1, 0x073420,1, 0x07341c,1, 0x073418,1, 0x073414,1, 0x073410,1, 0x07340c,1, 0x073408,1, 0x073404,1, 0x073400,1, 0x0733fc,1, 0x0733f8,1, 0x0733f4,1, 0x0733f0,1, 0x0733ec,1, 0x0733e8,1, 0x0733e4,1, 0x0733e0,1, 0x0733dc,1, 0x0733d8,1, 0x0733d4,1, 0x0733d0,1, 0x0733cc,1, 0x0733c8,1, 0x0733c4,1, 0x0733c0,1, 0x0733bc,1, 0x0733b8,1, 0x0733b4,1, 0x0733b0,1, 0x0733ac,1, 0x0733a8,1, 0x0733a4,1, 0x0733a0,1, 0x07339c,1, 0x073398,1, 0x073394,1, 0x073390,1, 0x07338c,1, 0x073388,1, 0x073384,1, 0x073380,1, 0x07337c,1, 0x073378,1, 0x073374,1, 0x073370,1, 0x07336c,1, 0x073368,1, 0x073364,1, 0x073360,1, 0x07335c,1, 0x073358,1, 0x073354,1, 0x073350,1, 0x07334c,1, 0x073348,1, 0x073344,1, 0x073340,1, 0x07333c,1, 0x073338,1, 0x073334,1, 0x073330,1, 0x07332c,1, 0x073328,1, 0x073324,1, 0x073320,1, 0x07331c,1, 0x073318,1, 0x073314,1, 0x073310,1, 0x07330c,1, 0x073308,1, 0x073304,1, 0x073300,1, 0x0732fc,1, 0x0732f8,1, 0x0732f4,1, 0x0732f0,1, 0x0732ec,1, 0x0732e8,1, 0x0732e4,1, 0x0732e0,1, 0x0732dc,1, 0x0732d8,1, 0x0732d4,1, 0x0732d0,1, 0x0732cc,1, 0x0732c8,1, 0x0732c4,1, 0x0732c0,1, 0x0732bc,1, 0x0732b8,1, 0x0732b4,1, 0x0732b0,1, 0x0732ac,1, 0x0732a8,1, 0x0732a4,1, 0x0732a0,1, 0x07329c,1, 0x073298,1, 0x073294,1, 0x073290,1, 0x07328c,1, 0x073288,1, 0x073284,1, 0x073280,1, 0x07327c,1, 0x073278,1, 0x073274,1, 0x073270,1, 0x07326c,1, 0x073268,1, 0x073264,1, 0x073260,1, 0x07325c,1, 0x073258,1, 0x073254,1, 0x073250,1, 0x07324c,1, 0x073248,1, 0x073244,1, 0x073240,1, 0x07323c,1, 0x073238,1, 0x073234,1, 0x073230,1, 0x07322c,1, 0x073228,1, 0x073224,1, 0x073220,1, 0x07321c,1, 0x073218,1, 0x073214,1, 0x073210,1, 0x07320c,1, 0x073208,1, 0x073204,1, 0x073200,1, 0x0731fc,1, 0x0731f8,1, 0x0731f4,1, 0x0731f0,1, 0x0731ec,1, 0x0731e8,1, 0x0731e4,1, 0x0731e0,1, 0x0731dc,1, 0x0731d8,1, 0x0731d4,1, 0x0731d0,1, 0x0731cc,1, 0x0731c8,1, 0x0731c4,1, 0x0731c0,1, 0x0731bc,1, 0x0731b8,1, 0x0731b4,1, 0x0731b0,1, 0x0731ac,1, 0x0731a8,1, 0x0731a4,1, 0x0731a0,1, 0x07319c,1, 0x073198,1, 0x073194,1, 0x073190,1, 0x07318c,1, 0x073188,1, 0x073184,1, 0x073180,1, 0x07317c,1, 0x073178,1, 0x073174,1, 0x073170,1, 0x07316c,1, 0x073168,1, 0x073164,1, 0x073160,1, 0x07315c,1, 0x073158,1, 0x073154,1, 0x073150,1, 0x07314c,1, 0x073148,1, 0x073144,1, 0x073140,1, 0x07313c,1, 0x073138,1, 0x073134,1, 0x073130,1, 0x07312c,1, 0x073128,1, 0x073124,1, 0x073120,1, 0x07311c,1, 0x073118,1, 0x073114,1, 0x073110,1, 0x07310c,1, 0x073108,1, 0x073104,1, 0x073100,1, 0x0730fc,1, 0x0730f8,1, 0x0730f4,1, 0x0730f0,1, 0x0730ec,1, 0x0730e8,1, 0x0730e4,1, 0x0730e0,1, 0x0730dc,1, 0x0730d8,1, 0x0730d4,1, 0x0730d0,1, 0x0730cc,1, 0x0730c8,1, 0x0730c4,1, 0x0730c0,1, 0x0730bc,1, 0x0730b8,1, 0x0730b4,1, 0x0730b0,1, 0x0730ac,1, 0x0730a8,1, 0x0730a4,1, 0x0730a0,1, 0x07309c,1, 0x073098,1, 0x073094,1, 0x073090,1, 0x07308c,1, 0x073088,1, 0x073084,1, 0x073080,1, 0x07307c,1, 0x073078,1, 0x073074,1, 0x073070,1, 0x07306c,1, 0x073068,1, 0x073064,1, 0x073060,1, 0x07305c,1, 0x073058,1, 0x073054,1, 0x073050,1, 0x07304c,1, 0x073048,1, 0x073044,1, 0x073040,1, 0x07303c,1, 0x073038,1, 0x073034,1, 0x073030,1, 0x07302c,1, 0x073028,1, 0x073024,1, 0x073020,1, 0x07301c,1, 0x073018,1, 0x073014,1, 0x073010,1, 0x07300c,1, 0x073008,1, 0x073004,1, 0x073000,1, 0x072018,1, 0x072014,1, 0x072010,1, 0x07200c,1, 0x072008,1, 0x072004,1, 0x072000,1, 0x071018,1, 0x071014,1, 0x071010,1, 0x07100c,1, 0x071008,1, 0x071004,1, 0x071000,1, 0x070e18,1, 0x070e14,1, 0x070e10,1, 0x070e0c,1, 0x070e08,1, 0x070e04,1, 0x070e00,1, 0x070db4,1, 0x070db0,1, 0x070da0,1, 0x070d94,1, 0x070d90,1, 0x070d80,1, 0x070d74,1, 0x070d70,1, 0x070d60,1, 0x070d54,1, 0x070d50,1, 0x070d40,1, 0x070d30,1, 0x070d2c,1, 0x070d28,1, 0x070d1c,1, 0x070d18,1, 0x070d14,1, 0x070d10,1, 0x070d0c,1, 0x070c44,1, 0x070c40,1, 0x0702f4,1, 0x0702f0,1, 0x0702ec,1, 0x0702e8,1, 0x0702e4,1, 0x0702e0,1, 0x0702dc,1, 0x0702d8,1, 0x0702d4,1, 0x0702d0,1, 0x0702cc,1, 0x0702c8,1, 0x0702c4,1, 0x0702c0,1, 0x0702b4,1, 0x0702b0,1, 0x0702a0,1, 0x070290,1, 0x07028c,1, 0x070288,1, 0x070284,1, 0x070280,1, 0x07027c,1, 0x070278,1, 0x070274,1, 0x070270,1, 0x07026c,1, 0x070268,1, 0x070264,1, 0x070260,1, 0x07025c,1, 0x070258,1, 0x070254,1, 0x070250,1, 0x07023c,1, 0x070238,1, 0x070234,1, 0x070230,1, 0x07022c,1, 0x070224,1, 0x070220,1, 0x07021c,1, 0x070210,1, 0x070208,1, 0x070204,1, 0x070200,1, 0x0701b4,1, 0x0701b0,1, 0x0701a0,1, 0x07018c,1, 0x070188,1, 0x070184,1, 0x070180,1, 0x070150,1, 0x07014c,1, 0x070148,1, 0x070144,1, 0x070140,1, 0x070130,1, 0x07012c,1, 0x070128,1, 0x070120,1, 0x07011c,1, 0x070118,1, 0x070114,1, 0x070110,1, 0x07010c,1, 0x070104,1, 0x0700fc,1, 0x0700f8,1, 0x0700f4,1, 0x0700f0,1, 0x070094,1, 0x070090,1, 0x070080,1, 0x070074,1, 0x070070,1, 0x070060,1, 0x070054,1, 0x070050,1, 0x070040,1, 0x070028,1, 0x070020,1, 0x07001c,1, 0x070018,1, 0x070010,1, 0x07000c,1, 0x070004,1, 0x070000,1, 0x060000,0, 0x0577fc,1,UNKNOWN 0x0577f8,1,UNKNOWN 0x057208,1,UNKNOWN 0x057204,1,UNKNOWN 0x057200,1,UNKNOWN 0x057100,1,UNKNOWN 0x057020,1,UNKNOWN 0x057000,1,UNKNOWN 0x056ff0,1,UNKNOWN 0x056fe0,1,UNKNOWN 0x056fd0,1,UNKNOWN 0x056fc0,1,UNKNOWN 0x056fb0,1,UNKNOWN 0x056fa0,1,UNKNOWN 0x056f90,1,UNKNOWN 0x056f80,1,UNKNOWN 0x056f70,1,UNKNOWN 0x056f60,1,UNKNOWN 0x056f50,1,UNKNOWN 0x056f40,1,UNKNOWN 0x056f30,1,UNKNOWN 0x056f20,1,UNKNOWN 0x056f10,1,UNKNOWN 0x056f00,1,UNKNOWN 0x056ef0,1,UNKNOWN 0x056ee0,1,UNKNOWN 0x056ed0,1,UNKNOWN 0x056ec0,1,UNKNOWN 0x056eb0,1,UNKNOWN 0x056ea0,1,UNKNOWN 0x056e90,1,UNKNOWN 0x056e80,1,UNKNOWN 0x056e70,1,UNKNOWN 0x056e60,1,UNKNOWN 0x056e50,1,UNKNOWN 0x056e40,1,UNKNOWN 0x056e30,1,UNKNOWN 0x056e20,1,UNKNOWN 0x056e10,1,UNKNOWN 0x056e00,1,UNKNOWN 0x056df0,1,UNKNOWN 0x056de0,1,UNKNOWN 0x056dd0,1,UNKNOWN 0x056dc0,1,UNKNOWN 0x056db0,1,UNKNOWN 0x056da0,1,UNKNOWN 0x056d90,1,UNKNOWN 0x056d80,1,UNKNOWN 0x056d70,1,UNKNOWN 0x056d60,1,UNKNOWN 0x056d50,1,UNKNOWN 0x056d40,1,UNKNOWN 0x056d30,1,UNKNOWN 0x056d20,1,UNKNOWN 0x056d10,1,UNKNOWN 0x056d00,1,UNKNOWN 0x056cf0,1,UNKNOWN 0x056ce0,1,UNKNOWN 0x056cd0,1,UNKNOWN 0x056cc0,1,UNKNOWN 0x056cb0,1,UNKNOWN 0x056ca0,1,UNKNOWN 0x056c90,1,UNKNOWN 0x056c80,1,UNKNOWN 0x056c70,1,UNKNOWN 0x056c60,1,UNKNOWN 0x056c50,1,UNKNOWN 0x056c40,1,UNKNOWN 0x056c30,1,UNKNOWN 0x056c20,1,UNKNOWN 0x056c10,1,UNKNOWN 0x056c00,1,UNKNOWN 0x056bf0,1,UNKNOWN 0x056be0,1,UNKNOWN 0x056bd0,1,UNKNOWN 0x056bc0,1,UNKNOWN 0x056bb0,1,UNKNOWN 0x056ba0,1,UNKNOWN 0x056b90,1,UNKNOWN 0x056b80,1,UNKNOWN 0x056b70,1,UNKNOWN 0x056b60,1,UNKNOWN 0x056b50,1,UNKNOWN 0x056b40,1,UNKNOWN 0x056b30,1,UNKNOWN 0x056b20,1,UNKNOWN 0x056b10,1,UNKNOWN 0x056b00,1,UNKNOWN 0x056af0,1,UNKNOWN 0x056ae0,1,UNKNOWN 0x056ad0,1,UNKNOWN 0x056ac0,1,UNKNOWN 0x056ab0,1,UNKNOWN 0x056aa0,1,UNKNOWN 0x056a90,1,UNKNOWN 0x056a80,1,UNKNOWN 0x056a70,1,UNKNOWN 0x056a60,1,UNKNOWN 0x056a50,1,UNKNOWN 0x056a40,1,UNKNOWN 0x056a30,1,UNKNOWN 0x056a20,1,UNKNOWN 0x056a10,1,UNKNOWN 0x056a00,1,UNKNOWN 0x0569f0,1,UNKNOWN 0x0569e0,1,UNKNOWN 0x0569d0,1,UNKNOWN 0x0569c0,1,UNKNOWN 0x0569b0,1,UNKNOWN 0x0569a0,1,UNKNOWN 0x056990,1,UNKNOWN 0x056980,1,UNKNOWN 0x056970,1,UNKNOWN 0x056960,1,UNKNOWN 0x056950,1,UNKNOWN 0x056940,1,UNKNOWN 0x056930,1,UNKNOWN 0x056920,1,UNKNOWN 0x056910,1,UNKNOWN 0x056900,1,UNKNOWN 0x0568f0,1,UNKNOWN 0x0568e0,1,UNKNOWN 0x0568d0,1,UNKNOWN 0x0568c0,1,UNKNOWN 0x0568b0,1,UNKNOWN 0x0568a0,1,UNKNOWN 0x056890,1,UNKNOWN 0x056880,1,UNKNOWN 0x056870,1,UNKNOWN 0x056860,1,UNKNOWN 0x056850,1,UNKNOWN 0x056840,1,UNKNOWN 0x056830,1,UNKNOWN 0x056820,1,UNKNOWN 0x056810,1,UNKNOWN 0x056800,1,UNKNOWN 0x0567f0,1,UNKNOWN 0x0567e0,1,UNKNOWN 0x0567d0,1,UNKNOWN 0x0567c0,1,UNKNOWN 0x0567b0,1,UNKNOWN 0x0567a0,1,UNKNOWN 0x056790,1,UNKNOWN 0x056780,1,UNKNOWN 0x056770,1,UNKNOWN 0x056760,1,UNKNOWN 0x056750,1,UNKNOWN 0x056740,1,UNKNOWN 0x056730,1,UNKNOWN 0x056720,1,UNKNOWN 0x056710,1,UNKNOWN 0x056700,1,UNKNOWN 0x0566f0,1,UNKNOWN 0x0566e0,1,UNKNOWN 0x0566d0,1,UNKNOWN 0x0566c0,1,UNKNOWN 0x0566b0,1,UNKNOWN 0x0566a0,1,UNKNOWN 0x056690,1,UNKNOWN 0x056680,1,UNKNOWN 0x056670,1,UNKNOWN 0x056660,1,UNKNOWN 0x056650,1,UNKNOWN 0x056640,1,UNKNOWN 0x056630,1,UNKNOWN 0x056620,1,UNKNOWN 0x056610,1,UNKNOWN 0x056600,1,UNKNOWN 0x0565f0,1,UNKNOWN 0x0565e0,1,UNKNOWN 0x0565d0,1,UNKNOWN 0x0565c0,1,UNKNOWN 0x0565b0,1,UNKNOWN 0x0565a0,1,UNKNOWN 0x056590,1,UNKNOWN 0x056580,1,UNKNOWN 0x056570,1,UNKNOWN 0x056560,1,UNKNOWN 0x056550,1,UNKNOWN 0x056540,1,UNKNOWN 0x056530,1,UNKNOWN 0x056520,1,UNKNOWN 0x056510,1,UNKNOWN 0x056500,1,UNKNOWN 0x0564f0,1,UNKNOWN 0x0564e0,1,UNKNOWN 0x0564d0,1,UNKNOWN 0x0564c0,1,UNKNOWN 0x0564b0,1,UNKNOWN 0x0564a0,1,UNKNOWN 0x056490,1,UNKNOWN 0x056480,1,UNKNOWN 0x056470,1,UNKNOWN 0x056460,1,UNKNOWN 0x056450,1,UNKNOWN 0x056440,1,UNKNOWN 0x056430,1,UNKNOWN 0x056420,1,UNKNOWN 0x056410,1,UNKNOWN 0x056400,1,UNKNOWN 0x0563f0,1,UNKNOWN 0x0563e0,1,UNKNOWN 0x0563d0,1,UNKNOWN 0x0563c0,1,UNKNOWN 0x0563b0,1,UNKNOWN 0x0563a0,1,UNKNOWN 0x056390,1,UNKNOWN 0x056380,1,UNKNOWN 0x056370,1,UNKNOWN 0x056360,1,UNKNOWN 0x056350,1,UNKNOWN 0x056340,1,UNKNOWN 0x056330,1,UNKNOWN 0x056320,1,UNKNOWN 0x056310,1,UNKNOWN 0x056300,1,UNKNOWN 0x0562f0,1,UNKNOWN 0x0562e0,1,UNKNOWN 0x0562d0,1,UNKNOWN 0x0562c0,1,UNKNOWN 0x0562b0,1,UNKNOWN 0x0562a0,1,UNKNOWN 0x056290,1,UNKNOWN 0x056280,1,UNKNOWN 0x056270,1,UNKNOWN 0x056260,1,UNKNOWN 0x056250,1,UNKNOWN 0x056240,1,UNKNOWN 0x056230,1,UNKNOWN 0x056220,1,UNKNOWN 0x056210,1,UNKNOWN 0x056200,1,UNKNOWN 0x0561f0,1,UNKNOWN 0x0561e0,1,UNKNOWN 0x0561d0,1,UNKNOWN 0x0561c0,1,UNKNOWN 0x0561b0,1,UNKNOWN 0x0561a0,1,UNKNOWN 0x056190,1,UNKNOWN 0x056180,1,UNKNOWN 0x056170,1,UNKNOWN 0x056160,1,UNKNOWN 0x056150,1,UNKNOWN 0x056140,1,UNKNOWN 0x056130,1,UNKNOWN 0x056120,1,UNKNOWN 0x056110,1,UNKNOWN 0x056100,1,UNKNOWN 0x0560f0,1,UNKNOWN 0x0560e0,1,UNKNOWN 0x0560d0,1,UNKNOWN 0x0560c0,1,UNKNOWN 0x0560b0,1,UNKNOWN 0x0560a0,1,UNKNOWN 0x056090,1,UNKNOWN 0x056080,1,UNKNOWN 0x056070,1,UNKNOWN 0x056060,1,UNKNOWN 0x056050,1,UNKNOWN 0x056040,1,UNKNOWN 0x056030,1,UNKNOWN 0x056020,1,UNKNOWN 0x056010,1,UNKNOWN 0x05600c,1,UNKNOWN 0x056008,1,UNKNOWN 0x056004,1,UNKNOWN 0x056000,1,UNKNOWN 0x055000,1,UNKNOWN 0x054ff0,1,UNKNOWN 0x054fe0,1,UNKNOWN 0x054fd0,1,UNKNOWN 0x054fc0,1,UNKNOWN 0x054fb0,1,UNKNOWN 0x054fa0,1,UNKNOWN 0x054f90,1,UNKNOWN 0x054f80,1,UNKNOWN 0x054f70,1,UNKNOWN 0x054f60,1,UNKNOWN 0x054f50,1,UNKNOWN 0x054f40,1,UNKNOWN 0x054f30,1,UNKNOWN 0x054f20,1,UNKNOWN 0x054f10,1,UNKNOWN 0x054f00,1,UNKNOWN 0x054ef0,1,UNKNOWN 0x054ee0,1,UNKNOWN 0x054ed0,1,UNKNOWN 0x054ec0,1,UNKNOWN 0x054eb0,1,UNKNOWN 0x054ea0,1,UNKNOWN 0x054e90,1,UNKNOWN 0x054e80,1,UNKNOWN 0x054e70,1,UNKNOWN 0x054e60,1,UNKNOWN 0x054e50,1,UNKNOWN 0x054e40,1,UNKNOWN 0x054e30,1,UNKNOWN 0x054e20,1,UNKNOWN 0x054e10,1,UNKNOWN 0x054e00,1,UNKNOWN 0x054df0,1,UNKNOWN 0x054de0,1,UNKNOWN 0x054dd0,1,UNKNOWN 0x054dc0,1,UNKNOWN 0x054db0,1,UNKNOWN 0x054da0,1,UNKNOWN 0x054d90,1,UNKNOWN 0x054d80,1,UNKNOWN 0x054d70,1,UNKNOWN 0x054d60,1,UNKNOWN 0x054d50,1,UNKNOWN 0x054d40,1,UNKNOWN 0x054d30,1,UNKNOWN 0x054d20,1,UNKNOWN 0x054d10,1,UNKNOWN 0x054d00,1,UNKNOWN 0x054cf0,1,UNKNOWN 0x054ce0,1,UNKNOWN 0x054cd0,1,UNKNOWN 0x054cc0,1,UNKNOWN 0x054cb0,1,UNKNOWN 0x054ca0,1,UNKNOWN 0x054c90,1,UNKNOWN 0x054c80,1,UNKNOWN 0x054c70,1,UNKNOWN 0x054c60,1,UNKNOWN 0x054c50,1,UNKNOWN 0x054c40,1,UNKNOWN 0x054c30,1,UNKNOWN 0x054c20,1,UNKNOWN 0x054c10,1,UNKNOWN 0x054c00,1,UNKNOWN 0x054bf0,1,UNKNOWN 0x054be0,1,UNKNOWN 0x054bd0,1,UNKNOWN 0x054bc0,1,UNKNOWN 0x054bb0,1,UNKNOWN 0x054ba0,1,UNKNOWN 0x054b90,1,UNKNOWN 0x054b80,1,UNKNOWN 0x054b70,1,UNKNOWN 0x054b60,1,UNKNOWN 0x054b50,1,UNKNOWN 0x054b40,1,UNKNOWN 0x054b30,1,UNKNOWN 0x054b20,1,UNKNOWN 0x054b10,1,UNKNOWN 0x054b00,1,UNKNOWN 0x054af0,1,UNKNOWN 0x054ae0,1,UNKNOWN 0x054ad0,1,UNKNOWN 0x054ac0,1,UNKNOWN 0x054ab0,1,UNKNOWN 0x054aa0,1,UNKNOWN 0x054a90,1,UNKNOWN 0x054a80,1,UNKNOWN 0x054a70,1,UNKNOWN 0x054a60,1,UNKNOWN 0x054a50,1,UNKNOWN 0x054a40,1,UNKNOWN 0x054a30,1,UNKNOWN 0x054a20,1,UNKNOWN 0x054a10,1,UNKNOWN 0x054a00,1,UNKNOWN 0x0549f0,1,UNKNOWN 0x0549e0,1,UNKNOWN 0x0549d0,1,UNKNOWN 0x0549c0,1,UNKNOWN 0x0549b0,1,UNKNOWN 0x0549a0,1,UNKNOWN 0x054990,1,UNKNOWN 0x054980,1,UNKNOWN 0x054970,1,UNKNOWN 0x054960,1,UNKNOWN 0x054950,1,UNKNOWN 0x054940,1,UNKNOWN 0x054930,1,UNKNOWN 0x054920,1,UNKNOWN 0x054910,1,UNKNOWN 0x054900,1,UNKNOWN 0x0548f0,1,UNKNOWN 0x0548e0,1,UNKNOWN 0x0548d0,1,UNKNOWN 0x0548c0,1,UNKNOWN 0x0548b0,1,UNKNOWN 0x0548a0,1,UNKNOWN 0x054890,1,UNKNOWN 0x054880,1,UNKNOWN 0x054870,1,UNKNOWN 0x054860,1,UNKNOWN 0x054850,1,UNKNOWN 0x054840,1,UNKNOWN 0x054830,1,UNKNOWN 0x054820,1,UNKNOWN 0x054810,1,UNKNOWN 0x054800,1,UNKNOWN 0x0547f0,1,UNKNOWN 0x0547e0,1,UNKNOWN 0x0547d0,1,UNKNOWN 0x0547c0,1,UNKNOWN 0x0547b0,1,UNKNOWN 0x0547a0,1,UNKNOWN 0x054790,1,UNKNOWN 0x054780,1,UNKNOWN 0x054770,1,UNKNOWN 0x054760,1,UNKNOWN 0x054750,1,UNKNOWN 0x054740,1,UNKNOWN 0x054730,1,UNKNOWN 0x054720,1,UNKNOWN 0x054710,1,UNKNOWN 0x054700,1,UNKNOWN 0x0546f0,1,UNKNOWN 0x0546e0,1,UNKNOWN 0x0546d0,1,UNKNOWN 0x0546c0,1,UNKNOWN 0x0546b0,1,UNKNOWN 0x0546a0,1,UNKNOWN 0x054690,1,UNKNOWN 0x054680,1,UNKNOWN 0x054670,1,UNKNOWN 0x054660,1,UNKNOWN 0x054650,1,UNKNOWN 0x054640,1,UNKNOWN 0x054630,1,UNKNOWN 0x054620,1,UNKNOWN 0x054610,1,UNKNOWN 0x054600,1,UNKNOWN 0x0545f0,1,UNKNOWN 0x0545e0,1,UNKNOWN 0x0545d0,1,UNKNOWN 0x0545c0,1,UNKNOWN 0x0545b0,1,UNKNOWN 0x0545a0,1,UNKNOWN 0x054590,1,UNKNOWN 0x054580,1,UNKNOWN 0x054570,1,UNKNOWN 0x054560,1,UNKNOWN 0x054550,1,UNKNOWN 0x054540,1,UNKNOWN 0x054530,1,UNKNOWN 0x054520,1,UNKNOWN 0x054510,1,UNKNOWN 0x054500,1,UNKNOWN 0x0544f0,1,UNKNOWN 0x0544e0,1,UNKNOWN 0x0544d0,1,UNKNOWN 0x0544c0,1,UNKNOWN 0x0544b0,1,UNKNOWN 0x0544a0,1,UNKNOWN 0x054490,1,UNKNOWN 0x054480,1,UNKNOWN 0x054470,1,UNKNOWN 0x054460,1,UNKNOWN 0x054450,1,UNKNOWN 0x054440,1,UNKNOWN 0x054430,1,UNKNOWN 0x054420,1,UNKNOWN 0x054410,1,UNKNOWN 0x054400,1,UNKNOWN 0x0543f0,1,UNKNOWN 0x0543e0,1,UNKNOWN 0x0543d0,1,UNKNOWN 0x0543c0,1,UNKNOWN 0x0543b0,1,UNKNOWN 0x0543a0,1,UNKNOWN 0x054390,1,UNKNOWN 0x054380,1,UNKNOWN 0x054370,1,UNKNOWN 0x054360,1,UNKNOWN 0x054350,1,UNKNOWN 0x054340,1,UNKNOWN 0x054330,1,UNKNOWN 0x054320,1,UNKNOWN 0x054310,1,UNKNOWN 0x054300,1,UNKNOWN 0x0542f0,1,UNKNOWN 0x0542e0,1,UNKNOWN 0x0542d0,1,UNKNOWN 0x0542c0,1,UNKNOWN 0x0542b0,1,UNKNOWN 0x0542a0,1,UNKNOWN 0x054290,1,UNKNOWN 0x054280,1,UNKNOWN 0x054270,1,UNKNOWN 0x054260,1,UNKNOWN 0x054250,1,UNKNOWN 0x054240,1,UNKNOWN 0x054230,1,UNKNOWN 0x054220,1,UNKNOWN 0x054210,1,UNKNOWN 0x054200,1,UNKNOWN 0x0541f0,1,UNKNOWN 0x0541e0,1,UNKNOWN 0x0541d0,1,UNKNOWN 0x0541c0,1,UNKNOWN 0x0541b0,1,UNKNOWN 0x0541a0,1,UNKNOWN 0x054190,1,UNKNOWN 0x054180,1,UNKNOWN 0x054170,1,UNKNOWN 0x054160,1,UNKNOWN 0x054150,1,UNKNOWN 0x054140,1,UNKNOWN 0x054130,1,UNKNOWN 0x054120,1,UNKNOWN 0x054110,1,UNKNOWN 0x054100,1,UNKNOWN 0x0540f0,1,UNKNOWN 0x0540e0,1,UNKNOWN 0x0540d0,1,UNKNOWN 0x0540c0,1,UNKNOWN 0x0540b0,1,UNKNOWN 0x0540a0,1,UNKNOWN 0x054090,1,UNKNOWN 0x054080,1,UNKNOWN 0x054070,1,UNKNOWN 0x054060,1,UNKNOWN 0x054050,1,UNKNOWN 0x054040,1,UNKNOWN 0x054030,1,UNKNOWN 0x054020,1,UNKNOWN 0x054010,1,UNKNOWN 0x05400c,1,UNKNOWN 0x054008,1,UNKNOWN 0x054004,1,UNKNOWN 0x054000,1,UNKNOWN 0x053ffc,1, 0x053f20,1, 0x053f1c,1, 0x053f18,1, 0x053f14,1, 0x053f10,1, 0x053f0c,1, 0x053f08,1, 0x053f04,1, 0x053ea8,1, 0x053ea4,1, 0x053ea0,1, 0x053e9c,1, 0x053e94,1, 0x053e90,1, 0x053e8c,1, 0x053e70,1, 0x053e6c,1, 0x053e64,1, 0x053e60,1, 0x053e3c,1, 0x053e38,1, 0x053e34,1, 0x053e30,1, 0x053e2c,1, 0x053e28,1, 0x053e24,1, 0x053e1c,1, 0x053e18,1, 0x053e14,1, 0x053e10,1, 0x053e0c,1, 0x053e08,1, 0x053e04,1, 0x053e00,1, 0x053d00,1, 0x053ca8,1, 0x053ca4,1, 0x053ca0,1, 0x053c9c,1, 0x053c94,1, 0x053c90,1, 0x053c8c,1, 0x053c70,1, 0x053c6c,1, 0x053c64,1, 0x053c60,1, 0x053c44,1, 0x053c40,1, 0x053c3c,1, 0x053c38,1, 0x053c34,1, 0x053c30,1, 0x053c2c,1, 0x053c28,1, 0x053c24,1, 0x053c1c,1, 0x053c18,1, 0x053c14,1, 0x053c10,1, 0x053c0c,1, 0x053c08,1, 0x053c04,1, 0x053c00,1, 0x051934,1, 0x051930,1, 0x05192c,1, 0x051928,1, 0x051924,1, 0x051920,1, 0x05191c,1, 0x051918,1, 0x051914,1, 0x051910,1, 0x05190c,1, 0x051908,1, 0x051904,1, 0x051900,1, 0x0518f4,1, 0x0518f0,1, 0x0518ec,1, 0x0518e8,1, 0x0518e4,1, 0x0518e0,1, 0x0518dc,1, 0x0518d8,1, 0x0518d4,1, 0x0518d0,1, 0x0518cc,1, 0x0518c8,1, 0x0518c4,1, 0x0518c0,1, 0x0518bc,1, 0x0518b8,1, 0x0518a0,1, 0x05189c,1, 0x051898,1, 0x051894,1, 0x051890,1, 0x05188c,1, 0x051888,1, 0x051884,1, 0x051844,1, 0x051840,1, 0x051834,1, 0x051830,1, 0x05182c,1, 0x051828,1, 0x051824,1, 0x051820,1, 0x051814,1, 0x051810,1, 0x05180c,1, 0x051808,1, 0x051804,1, 0x051800,1, 0x0517fc,1, 0x051170,1, 0x051168,1, 0x051164,1, 0x051160,1, 0x05114c,1, 0x051148,1, 0x051144,1, 0x051140,1, 0x05113c,1, 0x051134,1, 0x05112c,1, 0x051128,1, 0x051124,1, 0x051120,1, 0x05111c,1, 0x051118,1, 0x051114,1, 0x051110,1, 0x05110c,1, 0x051108,1, 0x051104,1, 0x051100,1, 0x050280,1, 0x05023c,1, 0x050238,1, 0x050234,1, 0x050230,1, 0x05022c,1, 0x050228,1, 0x050224,1, 0x050220,1, 0x05021c,1, 0x050218,1, 0x050214,1, 0x050210,1, 0x05020c,1, 0x050208,1, 0x050204,1, 0x050200,1, 0x0501d0,1, 0x0501cc,1, 0x0501c8,1, 0x0501c4,1, 0x0501c0,1, 0x0501bc,1, 0x0501b8,1, 0x050188,1, 0x050184,1, 0x050180,1, 0x05017c,1, 0x050178,1, 0x050174,1, 0x050170,1, 0x05016c,1, 0x050168,1, 0x050164,1, 0x050160,1, 0x05015c,1, 0x050158,1, 0x050148,1, 0x050144,1, 0x050140,1, 0x05013c,1, 0x050138,1, 0x050134,1, 0x050130,1, 0x050128,1, 0x050124,1, 0x050120,1, 0x05010c,1, 0x050108,1, 0x050104,1, 0x050100,1, 0x0500fc,1, 0x0500f8,1, 0x0500f4,1, 0x0500f0,1, 0x0500ec,1, 0x0500e8,1, 0x0500e4,1, 0x0500e0,1, 0x0500dc,1, 0x0500d8,1, 0x0500d4,1, 0x0500c4,1, 0x0500c0,1, 0x0500bc,1, 0x0500b8,1, 0x0500b4,1, 0x0500b0,1, 0x0500ac,1, 0x050068,1, 0x050064,1, 0x050060,1, 0x05004c,1, 0x050048,1, 0x050044,1, 0x050040,1, 0x04314c,1, 0x043148,1, 0x043144,1, 0x043140,1, 0x043118,1, 0x043114,1, 0x043110,1, 0x043104,1, 0x043100,1, 0x043048,1, 0x043044,1, 0x043040,1, 0x04303c,1, 0x043038,1, 0x043034,1, 0x043030,1, 0x04301c,1, 0x043018,1, 0x043014,1, 0x043010,1, 0x042ffc,1, 0x042ff8,1, 0x042ff4,1, 0x042fec,1, 0x042a04,1,UNKNOWN 0x042a00,1,UNKNOWN 0x0428a4,1,UNKNOWN 0x0428a0,1,UNKNOWN 0x04289c,1,UNKNOWN 0x042898,1,UNKNOWN 0x042894,1,UNKNOWN 0x042890,1,UNKNOWN 0x04288c,1,UNKNOWN 0x042888,1,UNKNOWN 0x042884,1,UNKNOWN 0x042880,1,UNKNOWN 0x04287c,1,UNKNOWN 0x042878,1,UNKNOWN 0x042874,1,UNKNOWN 0x042870,1,UNKNOWN 0x04286c,1,UNKNOWN 0x042868,1,UNKNOWN 0x042864,1,UNKNOWN 0x042860,1,UNKNOWN 0x04285c,1,UNKNOWN 0x042858,1,UNKNOWN 0x042854,1,UNKNOWN 0x042850,1,UNKNOWN 0x04284c,1,UNKNOWN 0x042848,1,UNKNOWN 0x042844,1,UNKNOWN 0x042840,1,UNKNOWN 0x04283c,1,UNKNOWN 0x042838,1,UNKNOWN 0x042834,1,UNKNOWN 0x042830,1,UNKNOWN 0x04282c,1,UNKNOWN 0x042828,1,UNKNOWN 0x042824,1,UNKNOWN 0x042820,1,UNKNOWN 0x04281c,1,UNKNOWN 0x042818,1,UNKNOWN 0x042814,1,UNKNOWN 0x042810,1,UNKNOWN 0x04280c,1,UNKNOWN 0x042808,1,UNKNOWN 0x042804,1,UNKNOWN 0x042800,1,UNKNOWN 0x042604,1,UNKNOWN 0x042600,1,UNKNOWN 0x0424a4,1,UNKNOWN 0x0424a0,1,UNKNOWN 0x04249c,1,UNKNOWN 0x042498,1,UNKNOWN 0x042494,1,UNKNOWN 0x042490,1,UNKNOWN 0x04248c,1,UNKNOWN 0x042488,1,UNKNOWN 0x042484,1,UNKNOWN 0x042480,1,UNKNOWN 0x04247c,1,UNKNOWN 0x042478,1,UNKNOWN 0x042474,1,UNKNOWN 0x042470,1,UNKNOWN 0x04246c,1,UNKNOWN 0x042468,1,UNKNOWN 0x042464,1,UNKNOWN 0x042460,1,UNKNOWN 0x04245c,1,UNKNOWN 0x042458,1,UNKNOWN 0x042454,1,UNKNOWN 0x042450,1,UNKNOWN 0x04244c,1,UNKNOWN 0x042448,1,UNKNOWN 0x042444,1,UNKNOWN 0x042440,1,UNKNOWN 0x04243c,1,UNKNOWN 0x042438,1,UNKNOWN 0x042434,1,UNKNOWN 0x042430,1,UNKNOWN 0x04242c,1,UNKNOWN 0x042428,1,UNKNOWN 0x042424,1,UNKNOWN 0x042420,1,UNKNOWN 0x04241c,1,UNKNOWN 0x042418,1,UNKNOWN 0x042414,1,UNKNOWN 0x042410,1,UNKNOWN 0x04240c,1,UNKNOWN 0x042408,1,UNKNOWN 0x042404,1,UNKNOWN 0x042400,1,UNKNOWN 0x042244,1,UNKNOWN 0x042240,1,UNKNOWN 0x04223c,1,UNKNOWN 0x042238,1,UNKNOWN 0x042234,1,UNKNOWN 0x042230,1,UNKNOWN 0x04222c,1,UNKNOWN 0x042228,1,UNKNOWN 0x042224,1,UNKNOWN 0x042220,1,UNKNOWN 0x04221c,1,UNKNOWN 0x042218,1,UNKNOWN 0x042214,1,UNKNOWN 0x042210,1,UNKNOWN 0x04220c,1,UNKNOWN 0x042208,1,UNKNOWN 0x042204,1,UNKNOWN 0x042200,1,UNKNOWN 0x04205c,1,UNKNOWN 0x042058,1,UNKNOWN 0x042054,1,UNKNOWN 0x042050,1,UNKNOWN 0x04204c,1,UNKNOWN 0x042048,1,UNKNOWN 0x042044,1,UNKNOWN 0x042040,1,UNKNOWN 0x04203c,1,UNKNOWN 0x042038,1,UNKNOWN 0x042034,1,UNKNOWN 0x042030,1,UNKNOWN 0x04202c,1,UNKNOWN 0x042028,1,UNKNOWN 0x042024,1,UNKNOWN 0x042020,1,UNKNOWN 0x04201c,1,UNKNOWN 0x042018,1,UNKNOWN 0x042014,1,UNKNOWN 0x042010,1,UNKNOWN 0x04200c,1,UNKNOWN 0x042008,1,UNKNOWN 0x042004,1,UNKNOWN 0x042000,1,UNKNOWN 0x0418c4,1, 0x0418c0,1, 0x0418bc,1, 0x0418b8,1, 0x0418b4,1, 0x0418b0,1, 0x0418ac,1, 0x0418a8,1, 0x0418a4,1, 0x0418a0,1, 0x04189c,1, 0x041898,1, 0x041894,1, 0x041890,1, 0x04188c,1, 0x041888,1, 0x041884,1, 0x041880,1, 0x041808,1, 0x041804,1, 0x041800,1, 0x040a9c,1, 0x040a80,1, 0x040a6c,1, 0x040a68,1, 0x040a64,1, 0x040a60,1, 0x040a5c,1, 0x040a40,1, 0x040a2c,1, 0x040a28,1, 0x040a24,1, 0x040a20,1, 0x040a1c,1, 0x040a00,1, 0x0409ec,1, 0x0409e8,1, 0x0409e4,1, 0x0409e0,1, 0x0409dc,1, 0x0409c0,1, 0x0409ac,1, 0x0409a8,1, 0x0409a4,1, 0x0409a0,1, 0x04099c,1, 0x040980,1, 0x04096c,1, 0x040968,1, 0x040964,1, 0x040960,1, 0x04095c,1, 0x040940,1, 0x04092c,1, 0x040928,1, 0x040924,1, 0x040920,1, 0x040914,1, 0x040910,1, 0x040900,1, 0x0408f4,1, 0x0408f0,1, 0x0408e0,1, 0x0408d4,1, 0x0408d0,1, 0x0408c0,1, 0x0408bc,1, 0x0408b8,1, 0x0408b4,1, 0x0408b0,1, 0x04088c,1, 0x040888,1, 0x040884,1, 0x04087c,1, 0x040874,1, 0x040870,1, 0x04086c,1, 0x040868,1, 0x040864,1, 0x040860,1, 0x04085c,1, 0x040858,1, 0x040854,1, 0x040850,1, 0x040844,1, 0x040824,1, 0x040820,1, 0x04081c,1, 0x040818,1, 0x040814,1, 0x040810,1, 0x04080c,1, 0x040808,1, 0x040804,1, 0x04061c,1, 0x040618,1, 0x040604,1, 0x0405fc,1, 0x0405f8,1, 0x0405f4,1, 0x0405f0,1, 0x0405ec,1, 0x0405e8,1, 0x0405e4,1, 0x0405e0,1, 0x0405dc,1, 0x0405d8,1, 0x0405d4,1, 0x0405d0,1, 0x0405cc,1, 0x0405c8,1, 0x0405c4,1, 0x0405c0,1, 0x0405bc,1, 0x0405b8,1, 0x0405b4,1, 0x0405b0,1, 0x0405ac,1, 0x0405a8,1, 0x0405a4,1, 0x0405a0,1, 0x04059c,1, 0x040598,1, 0x040594,1, 0x040590,1, 0x04058c,1, 0x040588,1, 0x040584,1, 0x040580,1, 0x04057c,1, 0x040578,1, 0x040574,1, 0x040570,1, 0x04056c,1, 0x040568,1, 0x040564,1, 0x040560,1, 0x04055c,1, 0x040558,1, 0x040554,1, 0x040550,1, 0x04054c,1, 0x040548,1, 0x040544,1, 0x040540,1, 0x04053c,1, 0x040538,1, 0x040534,1, 0x040530,1, 0x04052c,1, 0x040528,1, 0x040524,1, 0x040520,1, 0x04051c,1, 0x040518,1, 0x040514,1, 0x040510,1, 0x04050c,1, 0x040508,1, 0x040504,1, 0x040500,1, 0x0404fc,1, 0x0404f8,1, 0x0404f4,1, 0x0404f0,1, 0x0404ec,1, 0x0404e8,1, 0x0404e4,1, 0x0404e0,1, 0x0404dc,1, 0x0404d8,1, 0x0404d4,1, 0x0404d0,1, 0x0404cc,1, 0x0404c8,1, 0x0404c4,1, 0x0404c0,1, 0x0404bc,1, 0x0404b8,1, 0x0404b4,1, 0x0404b0,1, 0x0404ac,1, 0x0404a8,1, 0x0404a4,1, 0x0404a0,1, 0x04049c,1, 0x040498,1, 0x040494,1, 0x040490,1, 0x04048c,1, 0x040488,1, 0x040484,1, 0x040480,1, 0x04047c,1, 0x040478,1, 0x040474,1, 0x040470,1, 0x04046c,1, 0x040468,1, 0x040464,1, 0x040460,1, 0x04045c,1, 0x040458,1, 0x040454,1, 0x040450,1, 0x04044c,1, 0x040448,1, 0x040444,1, 0x040440,1, 0x04043c,1, 0x040438,1, 0x040434,1, 0x040430,1, 0x04042c,1, 0x040428,1, 0x040424,1, 0x040420,1, 0x04041c,1, 0x040418,1, 0x040414,1, 0x040410,1, 0x04040c,1, 0x040408,1, 0x040404,1, 0x040400,1, 0x0403f8,1, 0x0403f0,1, 0x0403ec,1, 0x0403e0,1, 0x040380,1, 0x0402dc,1, 0x0402d8,1, 0x0402d4,1, 0x0402d0,1, 0x0402cc,1, 0x0402c8,1, 0x0402c4,1, 0x0402c0,1, 0x0402bc,1, 0x0402b8,1, 0x0402b4,1, 0x0402b0,1, 0x0402ac,1, 0x0402a0,1, 0x04029c,1, 0x040290,1, 0x04028c,1, 0x040288,1, 0x040284,1, 0x040280,1, 0x04027c,1, 0x040278,1, 0x040274,1, 0x040270,1, 0x04026c,1, 0x040268,1, 0x040230,1, 0x04021c,1, 0x040204,1, 0x040200,1, 0x0401f8,1, 0x0401f0,1, 0x0401ec,1, 0x0401e0,1, 0x040180,1, 0x0400dc,1, 0x0400d8,1, 0x0400d4,1, 0x0400d0,1, 0x0400cc,1, 0x0400c8,1, 0x0400c4,1, 0x0400c0,1, 0x0400bc,1, 0x0400b8,1, 0x0400b4,1, 0x0400b0,1, 0x0400ac,1, 0x0400a0,1, 0x04009c,1, 0x040090,1, 0x04008c,1, 0x040088,1, 0x040084,1, 0x040080,1, 0x04007c,1, 0x040078,1, 0x040074,1, 0x040070,1, 0x04006c,1, 0x040068,1, 0x040030,1, 0x04001c,1, 0x040004,1, 0x040000,1, 0x02d9f4,1, 0x02d9f0,1, 0x02d9d4,1, 0x02d9d0,1, 0x02d9c0,1, 0x02d9b4,1, 0x02d9b0,1, 0x02d9a0,1, 0x02d994,1, 0x02d990,1, 0x02d980,1, 0x02d974,1, 0x02d970,1, 0x02d960,1, 0x02d954,1, 0x02d950,1, 0x02d940,1, 0x02d928,1, 0x02d924,1, 0x02d920,1, 0x02d91c,1, 0x02d918,1, 0x02d914,1, 0x02d910,1, 0x02d90c,1, 0x02d908,1, 0x02d904,1, 0x02d900,1, 0x02d8d4,1, 0x02d8d0,1, 0x02d8cc,1, 0x02d8c8,1, 0x02d8c4,1, 0x02d8c0,1, 0x02d8ac,1, 0x02d870,1, 0x02d86c,1, 0x02d868,1, 0x02d864,1, 0x02d860,1, 0x02d85c,1, 0x02d858,1, 0x02d854,1, 0x02d850,1, 0x02d84c,1, 0x02d848,1, 0x02d844,1, 0x02d840,1, 0x02d83c,1, 0x02d838,1, 0x02d834,1, 0x02d830,1, 0x02d82c,1, 0x02d828,1, 0x02d824,1, 0x02d820,1, 0x02d814,1, 0x02d810,1, 0x02d800,1, 0x02bb0c,1, 0x02bb08,1, 0x02bb04,1, 0x02bb00,1, 0x02baf4,1, 0x02baf0,1, 0x02ba74,1, 0x02ba70,1, 0x02ba60,1, 0x02ba54,1, 0x02ba50,1, 0x02ba40,1, 0x02ba28,1, 0x02ba1c,1, 0x02ba18,1, 0x02ba0c,1, 0x02ba00,1, 0x02b934,1, 0x02b930,1, 0x02b924,1, 0x02b920,1, 0x02b914,1, 0x02b910,1, 0x02b904,1, 0x02b900,1, 0x02b8f4,1, 0x02b8f0,1, 0x02b8e4,1, 0x02b8e0,1, 0x02b8b4,1, 0x02b8b0,1, 0x02b8ac,1, 0x02b8a8,1, 0x02b8a4,1, 0x02b8a0,1, 0x02b894,1, 0x02b890,1, 0x02b88c,1, 0x02b888,1, 0x02b884,1, 0x02b880,1, 0x02b870,1, 0x02b83c,1, 0x02b838,1, 0x02b834,1, 0x02b830,1, 0x02b82c,1, 0x02b828,1, 0x02b824,1, 0x02b820,1, 0x02b814,1, 0x02b810,1, 0x02b800,1, 0x02b7bc,1,UNKNOWN 0x02b7b8,1, 0x02b7b4,1, 0x02b67c,1, 0x02b678,1, 0x02b674,1, 0x02b670,1, 0x02b66c,1, 0x02b668,1, 0x02b664,1, 0x02b660,1, 0x02b65c,1, 0x02b658,1, 0x02b654,1, 0x02b64c,1, 0x02b648,1, 0x02b644,1, 0x02b640,1, 0x02b62c,1, 0x02b628,1, 0x02b624,1, 0x02b620,1, 0x02b61c,1, 0x02b618,1, 0x02b614,1, 0x02b610,1, 0x02b60c,1, 0x02b608,1, 0x02b604,1, 0x02b600,1, 0x02b4a0,1, 0x02b49c,1, 0x02b498,1, 0x02b494,1, 0x02b490,1, 0x02b48c,1, 0x02b488,1, 0x02b484,1, 0x02b480,1, 0x02b47c,1, 0x02b478,1, 0x02b474,1, 0x02b470,1, 0x02b46c,1, 0x02b464,1, 0x02b45c,1, 0x02b458,1, 0x02b454,1, 0x02b450,1, 0x02b44c,1, 0x02b448,1, 0x02b444,1, 0x02b440,1, 0x02b43c,1, 0x02b438,1, 0x02b424,1, 0x02b420,1, 0x02b41c,1, 0x02b418,1, 0x02b414,1, 0x02b410,1, 0x02b40c,1, 0x02b408,1, 0x02b404,1, 0x02b400,1, 0x02b040,1, 0x02b000,1, 0x02affc,1, 0x02aff8,1, 0x02aff4,1, 0x02afdc,1, 0x02afd4,1, 0x02afd0,1, 0x02afcc,1, 0x02afc8,1, 0x02afc4,1, 0x02afc0,1, 0x02afbc,1, 0x02afb8,1, 0x02afb4,1, 0x02afb0,1, 0x02afac,1, 0x02afa8,1, 0x02afa0,1, 0x02af9c,1, 0x02af98,1, 0x02af94,1, 0x02af90,1, 0x02af8c,1, 0x02af88,1, 0x02af84,1, 0x02af80,1, 0x02ae94,1, 0x02ae90,1, 0x02ae80,1, 0x02ae30,1, 0x02ae2c,1, 0x02ae28,1, 0x02ae24,1, 0x02ae20,1, 0x02ae1c,1, 0x02ae18,1, 0x02ae14,1, 0x02ae10,1, 0x02ae0c,1, 0x02ae04,1, 0x02ae00,1, 0x02adfc,1, 0x02adf8,1, 0x02adf4,1, 0x02adec,1, 0x02ade4,1, 0x02ade0,1, 0x02addc,1, 0x02add8,1, 0x02add4,1, 0x02adcc,1, 0x02adc8,1, 0x02adc0,1, 0x02adb8,1, 0x02adb4,1, 0x02adb0,1, 0x02ada8,1, 0x02ada4,1, 0x02ada0,1, 0x02ad80,1, 0x02ad7c,1, 0x02ad78,1, 0x02ad74,1, 0x02ad70,1, 0x02ad6c,1, 0x02ad68,1, 0x02ad64,1, 0x02ad60,1, 0x02ad5c,1, 0x02ad58,1, 0x02ad54,1, 0x02ad50,1, 0x02ad4c,1, 0x02ad48,1, 0x02ad44,1, 0x02ad40,1, 0x02ad34,1, 0x02ad30,1, 0x02ad20,1, 0x02ad14,1, 0x02ad10,1, 0x02ad00,1, 0x02acec,1, 0x02ace8,1, 0x02ace4,1, 0x02ace0,1, 0x02acdc,1, 0x02acd8,1, 0x02acd4,1, 0x02acd0,1, 0x02accc,1, 0x02acc8,1, 0x02ac90,1, 0x02ac8c,1, 0x02ac88,1, 0x02ac84,1, 0x02ac80,1, 0x02ac68,1, 0x02ac50,1, 0x02ac4c,1, 0x02ac24,1, 0x02ac20,1, 0x02ac1c,1, 0x02ac18,1, 0x02ac14,1, 0x02ac10,1, 0x02ac0c,1, 0x02ac08,1, 0x02ac04,1, 0x02ac00,1, 0x02ab34,1, 0x02ab30,1, 0x02ab20,1, 0x02ab14,1, 0x02ab10,1, 0x02ab00,1, 0x02a978,1, 0x02a974,1, 0x02a970,1, 0x02a96c,1, 0x02a968,1, 0x02a964,1, 0x02a960,1, 0x02a95c,1, 0x02a958,1, 0x02a954,1, 0x02a950,1, 0x02a94c,1, 0x02a948,1, 0x02a944,1, 0x02a940,1, 0x02a93c,1, 0x02a938,1, 0x02a934,1, 0x02a930,1, 0x02a92c,1, 0x02a928,1, 0x02a924,1, 0x02a920,1, 0x02a91c,1, 0x02a918,1, 0x02a914,1, 0x02a910,1, 0x02a90c,1, 0x02a908,1, 0x02a904,1, 0x02a900,1, 0x02a8fc,1, 0x02a8f8,1, 0x02a8f4,1, 0x02a8f0,1, 0x02a8ec,1, 0x02a8e8,1, 0x02a8e4,1, 0x02a8e0,1, 0x02a8dc,1, 0x02a8d8,1, 0x02a8d4,1, 0x02a8d0,1, 0x02a8cc,1, 0x02a8c8,1, 0x02a8c4,1, 0x02a8c0,1, 0x02a8bc,1, 0x02a8b8,1, 0x02a8b4,1, 0x02a8b0,1, 0x02a8ac,1, 0x02a8a8,1, 0x02a8a4,1, 0x02a8a0,1, 0x02a89c,1, 0x02a898,1, 0x02a894,1, 0x02a890,1, 0x02a88c,1, 0x02a888,1, 0x02a884,1, 0x02a880,1, 0x02a87c,1, 0x02a878,1, 0x02a874,1, 0x02a870,1, 0x02a86c,1, 0x02a868,1, 0x02a864,1, 0x02a860,1, 0x02a85c,1, 0x02a858,1, 0x02a854,1, 0x02a850,1, 0x02a84c,1, 0x02a848,1, 0x02a844,1, 0x02a840,1, 0x02a83c,1, 0x02a838,1, 0x02a834,1, 0x02a830,1, 0x02a82c,1, 0x02a828,1, 0x02a824,1, 0x02a820,1, 0x02a81c,1, 0x02a818,1, 0x02a814,1, 0x02a810,1, 0x02a80c,1, 0x02a808,1, 0x02a804,1, 0x02a800,1, 0x02a7fc,1, 0x02a7f8,1, 0x02a7f4,1, 0x02a7dc,1, 0x02a7d4,1, 0x02a7d0,1, 0x02a7cc,1, 0x02a7c8,1, 0x02a7c4,1, 0x02a7c0,1, 0x02a7bc,1, 0x02a7b8,1, 0x02a7b4,1, 0x02a7b0,1, 0x02a7ac,1, 0x02a7a8,1, 0x02a7a0,1, 0x02a79c,1, 0x02a798,1, 0x02a794,1, 0x02a790,1, 0x02a78c,1, 0x02a788,1, 0x02a784,1, 0x02a780,1, 0x02a694,1, 0x02a690,1, 0x02a680,1, 0x02a630,1, 0x02a62c,1, 0x02a628,1, 0x02a624,1, 0x02a620,1, 0x02a61c,1, 0x02a618,1, 0x02a614,1, 0x02a610,1, 0x02a60c,1, 0x02a604,1, 0x02a600,1, 0x02a5fc,1, 0x02a5f8,1, 0x02a5f4,1, 0x02a5ec,1, 0x02a5e4,1, 0x02a5e0,1, 0x02a5dc,1, 0x02a5d8,1, 0x02a5d4,1, 0x02a5cc,1, 0x02a5c8,1, 0x02a5c0,1, 0x02a5b8,1, 0x02a5b4,1, 0x02a5b0,1, 0x02a5a8,1, 0x02a5a4,1, 0x02a5a0,1, 0x02a580,1, 0x02a57c,1, 0x02a578,1, 0x02a574,1, 0x02a570,1, 0x02a56c,1, 0x02a568,1, 0x02a564,1, 0x02a560,1, 0x02a55c,1, 0x02a558,1, 0x02a554,1, 0x02a550,1, 0x02a54c,1, 0x02a548,1, 0x02a544,1, 0x02a540,1, 0x02a534,1, 0x02a530,1, 0x02a520,1, 0x02a514,1, 0x02a510,1, 0x02a500,1, 0x02a4ec,1, 0x02a4e8,1, 0x02a4e4,1, 0x02a4e0,1, 0x02a4dc,1, 0x02a4d8,1, 0x02a4d4,1, 0x02a4d0,1, 0x02a4cc,1, 0x02a4c8,1, 0x02a490,1, 0x02a48c,1, 0x02a488,1, 0x02a484,1, 0x02a480,1, 0x02a468,1, 0x02a450,1, 0x02a44c,1, 0x02a424,1, 0x02a420,1, 0x02a41c,1, 0x02a418,1, 0x02a414,1, 0x02a410,1, 0x02a40c,1, 0x02a408,1, 0x02a404,1, 0x02a400,1, 0x02a334,1, 0x02a330,1, 0x02a320,1, 0x02a314,1, 0x02a310,1, 0x02a300,1, 0x02a178,1, 0x02a174,1, 0x02a170,1, 0x02a16c,1, 0x02a168,1, 0x02a164,1, 0x02a160,1, 0x02a15c,1, 0x02a158,1, 0x02a154,1, 0x02a150,1, 0x02a14c,1, 0x02a148,1, 0x02a144,1, 0x02a140,1, 0x02a13c,1, 0x02a138,1, 0x02a134,1, 0x02a130,1, 0x02a12c,1, 0x02a128,1, 0x02a124,1, 0x02a120,1, 0x02a11c,1, 0x02a118,1, 0x02a114,1, 0x02a110,1, 0x02a10c,1, 0x02a108,1, 0x02a104,1, 0x02a100,1, 0x02a0fc,1, 0x02a0f8,1, 0x02a0f4,1, 0x02a0f0,1, 0x02a0ec,1, 0x02a0e8,1, 0x02a0e4,1, 0x02a0e0,1, 0x02a0dc,1, 0x02a0d8,1, 0x02a0d4,1, 0x02a0d0,1, 0x02a0cc,1, 0x02a0c8,1, 0x02a0c4,1, 0x02a0c0,1, 0x02a0bc,1, 0x02a0b8,1, 0x02a0b4,1, 0x02a0b0,1, 0x02a0ac,1, 0x02a0a8,1, 0x02a0a4,1, 0x02a0a0,1, 0x02a09c,1, 0x02a098,1, 0x02a094,1, 0x02a090,1, 0x02a08c,1, 0x02a088,1, 0x02a084,1, 0x02a080,1, 0x02a07c,1, 0x02a078,1, 0x02a074,1, 0x02a070,1, 0x02a06c,1, 0x02a068,1, 0x02a064,1, 0x02a060,1, 0x02a05c,1, 0x02a058,1, 0x02a054,1, 0x02a050,1, 0x02a04c,1, 0x02a048,1, 0x02a044,1, 0x02a040,1, 0x02a03c,1, 0x02a038,1, 0x02a034,1, 0x02a030,1, 0x02a02c,1, 0x02a028,1, 0x02a024,1, 0x02a020,1, 0x02a01c,1, 0x02a018,1, 0x02a014,1, 0x02a010,1, 0x02a00c,1, 0x02a008,1, 0x02a004,1, 0x02a000,1, 0x029ffc,1, 0x029ff8,1, 0x029ff4,1, 0x029fdc,1, 0x029fd4,1, 0x029fd0,1, 0x029fcc,1, 0x029fc8,1, 0x029fc4,1, 0x029fc0,1, 0x029fbc,1, 0x029fb8,1, 0x029fb4,1, 0x029fb0,1, 0x029fac,1, 0x029fa8,1, 0x029fa0,1, 0x029f9c,1, 0x029f98,1, 0x029f94,1, 0x029f90,1, 0x029f8c,1, 0x029f88,1, 0x029f84,1, 0x029f80,1, 0x029e94,1, 0x029e90,1, 0x029e80,1, 0x029e30,1, 0x029e2c,1, 0x029e28,1, 0x029e24,1, 0x029e20,1, 0x029e1c,1, 0x029e18,1, 0x029e14,1, 0x029e10,1, 0x029e0c,1, 0x029e04,1, 0x029e00,1, 0x029dfc,1, 0x029df8,1, 0x029df4,1, 0x029dec,1, 0x029de4,1, 0x029de0,1, 0x029ddc,1, 0x029dd8,1, 0x029dd4,1, 0x029dcc,1, 0x029dc8,1, 0x029dc0,1, 0x029db8,1, 0x029db4,1, 0x029db0,1, 0x029da8,1, 0x029da4,1, 0x029da0,1, 0x029d80,1, 0x029d7c,1, 0x029d78,1, 0x029d74,1, 0x029d70,1, 0x029d6c,1, 0x029d68,1, 0x029d64,1, 0x029d60,1, 0x029d5c,1, 0x029d58,1, 0x029d54,1, 0x029d50,1, 0x029d4c,1, 0x029d48,1, 0x029d44,1, 0x029d40,1, 0x029d34,1, 0x029d30,1, 0x029d20,1, 0x029d14,1, 0x029d10,1, 0x029d00,1, 0x029cec,1, 0x029ce8,1, 0x029ce4,1, 0x029ce0,1, 0x029cdc,1, 0x029cd8,1, 0x029cd4,1, 0x029cd0,1, 0x029ccc,1, 0x029cc8,1, 0x029c90,1, 0x029c8c,1, 0x029c88,1, 0x029c84,1, 0x029c80,1, 0x029c68,1, 0x029c50,1, 0x029c4c,1, 0x029c24,1, 0x029c20,1, 0x029c1c,1, 0x029c18,1, 0x029c14,1, 0x029c10,1, 0x029c0c,1, 0x029c08,1, 0x029c04,1, 0x029c00,1, 0x029b34,1, 0x029b30,1, 0x029b20,1, 0x029b14,1, 0x029b10,1, 0x029b00,1, 0x029978,1, 0x029974,1, 0x029970,1, 0x02996c,1, 0x029968,1, 0x029964,1, 0x029960,1, 0x02995c,1, 0x029958,1, 0x029954,1, 0x029950,1, 0x02994c,1, 0x029948,1, 0x029944,1, 0x029940,1, 0x02993c,1, 0x029938,1, 0x029934,1, 0x029930,1, 0x02992c,1, 0x029928,1, 0x029924,1, 0x029920,1, 0x02991c,1, 0x029918,1, 0x029914,1, 0x029910,1, 0x02990c,1, 0x029908,1, 0x029904,1, 0x029900,1, 0x0298fc,1, 0x0298f8,1, 0x0298f4,1, 0x0298f0,1, 0x0298ec,1, 0x0298e8,1, 0x0298e4,1, 0x0298e0,1, 0x0298dc,1, 0x0298d8,1, 0x0298d4,1, 0x0298d0,1, 0x0298cc,1, 0x0298c8,1, 0x0298c4,1, 0x0298c0,1, 0x0298bc,1, 0x0298b8,1, 0x0298b4,1, 0x0298b0,1, 0x0298ac,1, 0x0298a8,1, 0x0298a4,1, 0x0298a0,1, 0x02989c,1, 0x029898,1, 0x029894,1, 0x029890,1, 0x02988c,1, 0x029888,1, 0x029884,1, 0x029880,1, 0x02987c,1, 0x029878,1, 0x029874,1, 0x029870,1, 0x02986c,1, 0x029868,1, 0x029864,1, 0x029860,1, 0x02985c,1, 0x029858,1, 0x029854,1, 0x029850,1, 0x02984c,1, 0x029848,1, 0x029844,1, 0x029840,1, 0x02983c,1, 0x029838,1, 0x029834,1, 0x029830,1, 0x02982c,1, 0x029828,1, 0x029824,1, 0x029820,1, 0x02981c,1, 0x029818,1, 0x029814,1, 0x029810,1, 0x02980c,1, 0x029808,1, 0x029804,1, 0x029800,1, 0x0297fc,1, 0x0297f8,1, 0x0297f4,1, 0x0297dc,1, 0x0297d4,1, 0x0297d0,1, 0x0297cc,1, 0x0297c8,1, 0x0297c4,1, 0x0297c0,1, 0x0297bc,1, 0x0297b8,1, 0x0297b4,1, 0x0297b0,1, 0x0297ac,1, 0x0297a8,1, 0x0297a0,1, 0x02979c,1, 0x029798,1, 0x029794,1, 0x029790,1, 0x02978c,1, 0x029788,1, 0x029784,1, 0x029780,1, 0x029694,1, 0x029690,1, 0x029680,1, 0x029630,1, 0x02962c,1, 0x029628,1, 0x029624,1, 0x029620,1, 0x02961c,1, 0x029618,1, 0x029614,1, 0x029610,1, 0x02960c,1, 0x029604,1, 0x029600,1, 0x0295fc,1, 0x0295f8,1, 0x0295f4,1, 0x0295ec,1, 0x0295e4,1, 0x0295e0,1, 0x0295dc,1, 0x0295d8,1, 0x0295d4,1, 0x0295cc,1, 0x0295c8,1, 0x0295c0,1, 0x0295b8,1, 0x0295b4,1, 0x0295b0,1, 0x0295a8,1, 0x0295a4,1, 0x0295a0,1, 0x029580,1, 0x02957c,1, 0x029578,1, 0x029574,1, 0x029570,1, 0x02956c,1, 0x029568,1, 0x029564,1, 0x029560,1, 0x02955c,1, 0x029558,1, 0x029554,1, 0x029550,1, 0x02954c,1, 0x029548,1, 0x029544,1, 0x029540,1, 0x029534,1, 0x029530,1, 0x029520,1, 0x029514,1, 0x029510,1, 0x029500,1, 0x0294ec,1, 0x0294e8,1, 0x0294e4,1, 0x0294e0,1, 0x0294dc,1, 0x0294d8,1, 0x0294d4,1, 0x0294d0,1, 0x0294cc,1, 0x0294c8,1, 0x029490,1, 0x02948c,1, 0x029488,1, 0x029484,1, 0x029480,1, 0x029468,1, 0x029450,1, 0x02944c,1, 0x029424,1, 0x029420,1, 0x02941c,1, 0x029418,1, 0x029414,1, 0x029410,1, 0x02940c,1, 0x029408,1, 0x029404,1, 0x029400,1, 0x029334,1, 0x029330,1, 0x029320,1, 0x029314,1, 0x029310,1, 0x029300,1, 0x029178,1, 0x029174,1, 0x029170,1, 0x02916c,1, 0x029168,1, 0x029164,1, 0x029160,1, 0x02915c,1, 0x029158,1, 0x029154,1, 0x029150,1, 0x02914c,1, 0x029148,1, 0x029144,1, 0x029140,1, 0x02913c,1, 0x029138,1, 0x029134,1, 0x029130,1, 0x02912c,1, 0x029128,1, 0x029124,1, 0x029120,1, 0x02911c,1, 0x029118,1, 0x029114,1, 0x029110,1, 0x02910c,1, 0x029108,1, 0x029104,1, 0x029100,1, 0x0290fc,1, 0x0290f8,1, 0x0290f4,1, 0x0290f0,1, 0x0290ec,1, 0x0290e8,1, 0x0290e4,1, 0x0290e0,1, 0x0290dc,1, 0x0290d8,1, 0x0290d4,1, 0x0290d0,1, 0x0290cc,1, 0x0290c8,1, 0x0290c4,1, 0x0290c0,1, 0x0290bc,1, 0x0290b8,1, 0x0290b4,1, 0x0290b0,1, 0x0290ac,1, 0x0290a8,1, 0x0290a4,1, 0x0290a0,1, 0x02909c,1, 0x029098,1, 0x029094,1, 0x029090,1, 0x02908c,1, 0x029088,1, 0x029084,1, 0x029080,1, 0x02907c,1, 0x029078,1, 0x029074,1, 0x029070,1, 0x02906c,1, 0x029068,1, 0x029064,1, 0x029060,1, 0x02905c,1, 0x029058,1, 0x029054,1, 0x029050,1, 0x02904c,1, 0x029048,1, 0x029044,1, 0x029040,1, 0x02903c,1, 0x029038,1, 0x029034,1, 0x029030,1, 0x02902c,1, 0x029028,1, 0x029024,1, 0x029020,1, 0x02901c,1, 0x029018,1, 0x029014,1, 0x029010,1, 0x02900c,1, 0x029008,1, 0x029004,1, 0x029000,1, 0x028ffc,1, 0x028ff8,1, 0x028ff4,1, 0x028fdc,1, 0x028fd4,1, 0x028fd0,1, 0x028fcc,1, 0x028fc8,1, 0x028fc4,1, 0x028fc0,1, 0x028fbc,1, 0x028fb8,1, 0x028fb4,1, 0x028fb0,1, 0x028fac,1, 0x028fa8,1, 0x028fa0,1, 0x028f9c,1, 0x028f98,1, 0x028f94,1, 0x028f90,1, 0x028f8c,1, 0x028f88,1, 0x028f84,1, 0x028f80,1, 0x028e94,1, 0x028e90,1, 0x028e80,1, 0x028e30,1, 0x028e2c,1, 0x028e28,1, 0x028e24,1, 0x028e20,1, 0x028e1c,1, 0x028e18,1, 0x028e14,1, 0x028e10,1, 0x028e0c,1, 0x028e04,1, 0x028e00,1, 0x028dfc,1, 0x028df8,1, 0x028df4,1, 0x028dec,1, 0x028de4,1, 0x028de0,1, 0x028ddc,1, 0x028dd8,1, 0x028dd4,1, 0x028dcc,1, 0x028dc8,1, 0x028dc0,1, 0x028db8,1, 0x028db4,1, 0x028db0,1, 0x028da8,1, 0x028da4,1, 0x028da0,1, 0x028d80,1, 0x028d7c,1, 0x028d78,1, 0x028d74,1, 0x028d70,1, 0x028d6c,1, 0x028d68,1, 0x028d64,1, 0x028d60,1, 0x028d5c,1, 0x028d58,1, 0x028d54,1, 0x028d50,1, 0x028d4c,1, 0x028d48,1, 0x028d44,1, 0x028d40,1, 0x028d34,1, 0x028d30,1, 0x028d20,1, 0x028d14,1, 0x028d10,1, 0x028d00,1, 0x028cec,1, 0x028ce8,1, 0x028ce4,1, 0x028ce0,1, 0x028cdc,1, 0x028cd8,1, 0x028cd4,1, 0x028cd0,1, 0x028ccc,1, 0x028cc8,1, 0x028c90,1, 0x028c8c,1, 0x028c88,1, 0x028c84,1, 0x028c80,1, 0x028c68,1, 0x028c50,1, 0x028c4c,1, 0x028c24,1, 0x028c20,1, 0x028c1c,1, 0x028c18,1, 0x028c14,1, 0x028c10,1, 0x028c0c,1, 0x028c08,1, 0x028c04,1, 0x028c00,1, 0x028b34,1, 0x028b30,1, 0x028b20,1, 0x028b14,1, 0x028b10,1, 0x028b00,1, 0x028978,1, 0x028974,1, 0x028970,1, 0x02896c,1, 0x028968,1, 0x028964,1, 0x028960,1, 0x02895c,1, 0x028958,1, 0x028954,1, 0x028950,1, 0x02894c,1, 0x028948,1, 0x028944,1, 0x028940,1, 0x02893c,1, 0x028938,1, 0x028934,1, 0x028930,1, 0x02892c,1, 0x028928,1, 0x028924,1, 0x028920,1, 0x02891c,1, 0x028918,1, 0x028914,1, 0x028910,1, 0x02890c,1, 0x028908,1, 0x028904,1, 0x028900,1, 0x0288fc,1, 0x0288f8,1, 0x0288f4,1, 0x0288f0,1, 0x0288ec,1, 0x0288e8,1, 0x0288e4,1, 0x0288e0,1, 0x0288dc,1, 0x0288d8,1, 0x0288d4,1, 0x0288d0,1, 0x0288cc,1, 0x0288c8,1, 0x0288c4,1, 0x0288c0,1, 0x0288bc,1, 0x0288b8,1, 0x0288b4,1, 0x0288b0,1, 0x0288ac,1, 0x0288a8,1, 0x0288a4,1, 0x0288a0,1, 0x02889c,1, 0x028898,1, 0x028894,1, 0x028890,1, 0x02888c,1, 0x028888,1, 0x028884,1, 0x028880,1, 0x02887c,1, 0x028878,1, 0x028874,1, 0x028870,1, 0x02886c,1, 0x028868,1, 0x028864,1, 0x028860,1, 0x02885c,1, 0x028858,1, 0x028854,1, 0x028850,1, 0x02884c,1, 0x028848,1, 0x028844,1, 0x028840,1, 0x02883c,1, 0x028838,1, 0x028834,1, 0x028830,1, 0x02882c,1, 0x028828,1, 0x028824,1, 0x028820,1, 0x02881c,1, 0x028818,1, 0x028814,1, 0x028810,1, 0x02880c,1, 0x028808,1, 0x028804,1, 0x028800,1, 0x0287fc,1, 0x0287f8,1, 0x0287f4,1, 0x0287dc,1, 0x0287d4,1, 0x0287d0,1, 0x0287cc,1, 0x0287c8,1, 0x0287c4,1, 0x0287c0,1, 0x0287bc,1, 0x0287b8,1, 0x0287b4,1, 0x0287b0,1, 0x0287ac,1, 0x0287a8,1, 0x0287a0,1, 0x02879c,1, 0x028798,1, 0x028794,1, 0x028790,1, 0x02878c,1, 0x028788,1, 0x028784,1, 0x028780,1, 0x028694,1, 0x028690,1, 0x028680,1, 0x028630,1, 0x02862c,1, 0x028628,1, 0x028624,1, 0x028620,1, 0x02861c,1, 0x028618,1, 0x028614,1, 0x028610,1, 0x02860c,1, 0x028604,1, 0x028600,1, 0x0285fc,1, 0x0285f8,1, 0x0285f4,1, 0x0285ec,1, 0x0285e4,1, 0x0285e0,1, 0x0285dc,1, 0x0285d8,1, 0x0285d4,1, 0x0285cc,1, 0x0285c8,1, 0x0285c0,1, 0x0285b8,1, 0x0285b4,1, 0x0285b0,1, 0x0285a8,1, 0x0285a4,1, 0x0285a0,1, 0x028580,1, 0x02857c,1, 0x028578,1, 0x028574,1, 0x028570,1, 0x02856c,1, 0x028568,1, 0x028564,1, 0x028560,1, 0x02855c,1, 0x028558,1, 0x028554,1, 0x028550,1, 0x02854c,1, 0x028548,1, 0x028544,1, 0x028540,1, 0x028534,1, 0x028530,1, 0x028520,1, 0x028514,1, 0x028510,1, 0x028500,1, 0x0284ec,1, 0x0284e8,1, 0x0284e4,1, 0x0284e0,1, 0x0284dc,1, 0x0284d8,1, 0x0284d4,1, 0x0284d0,1, 0x0284cc,1, 0x0284c8,1, 0x028490,1, 0x02848c,1, 0x028488,1, 0x028484,1, 0x028480,1, 0x028468,1, 0x028450,1, 0x02844c,1, 0x028424,1, 0x028420,1, 0x02841c,1, 0x028418,1, 0x028414,1, 0x028410,1, 0x02840c,1, 0x028408,1, 0x028404,1, 0x028400,1, 0x028334,1, 0x028330,1, 0x028320,1, 0x028314,1, 0x028310,1, 0x028300,1, 0x028178,1, 0x028174,1, 0x028170,1, 0x02816c,1, 0x028168,1, 0x028164,1, 0x028160,1, 0x02815c,1, 0x028158,1, 0x028154,1, 0x028150,1, 0x02814c,1, 0x028148,1, 0x028144,1, 0x028140,1, 0x02813c,1, 0x028138,1, 0x028134,1, 0x028130,1, 0x02812c,1, 0x028128,1, 0x028124,1, 0x028120,1, 0x02811c,1, 0x028118,1, 0x028114,1, 0x028110,1, 0x02810c,1, 0x028108,1, 0x028104,1, 0x028100,1, 0x0280fc,1, 0x0280f8,1, 0x0280f4,1, 0x0280f0,1, 0x0280ec,1, 0x0280e8,1, 0x0280e4,1, 0x0280e0,1, 0x0280dc,1, 0x0280d8,1, 0x0280d4,1, 0x0280d0,1, 0x0280cc,1, 0x0280c8,1, 0x0280c4,1, 0x0280c0,1, 0x0280bc,1, 0x0280b8,1, 0x0280b4,1, 0x0280b0,1, 0x0280ac,1, 0x0280a8,1, 0x0280a4,1, 0x0280a0,1, 0x02809c,1, 0x028098,1, 0x028094,1, 0x028090,1, 0x02808c,1, 0x028088,1, 0x028084,1, 0x028080,1, 0x02807c,1, 0x028078,1, 0x028074,1, 0x028070,1, 0x02806c,1, 0x028068,1, 0x028064,1, 0x028060,1, 0x02805c,1, 0x028058,1, 0x028054,1, 0x028050,1, 0x02804c,1, 0x028048,1, 0x028044,1, 0x028040,1, 0x02803c,1, 0x028038,1, 0x028034,1, 0x028030,1, 0x02802c,1, 0x028028,1, 0x028024,1, 0x028020,1, 0x02801c,1, 0x028018,1, 0x028014,1, 0x028010,1, 0x02800c,1, 0x028008,1, 0x028004,1, 0x028000,1, 0x0259f4,1, 0x0259f0,1, 0x0259d4,1, 0x0259d0,1, 0x0259c0,1, 0x0259b4,1, 0x0259b0,1, 0x0259a0,1, 0x025994,1, 0x025990,1, 0x025980,1, 0x025974,1, 0x025970,1, 0x025960,1, 0x025954,1, 0x025950,1, 0x025940,1, 0x025928,1, 0x025924,1, 0x025920,1, 0x02591c,1, 0x025918,1, 0x025914,1, 0x025910,1, 0x02590c,1, 0x025908,1, 0x025904,1, 0x025900,1, 0x0258d4,1, 0x0258d0,1, 0x0258cc,1, 0x0258c8,1, 0x0258c4,1, 0x0258c0,1, 0x0258ac,1, 0x025870,1, 0x02586c,1, 0x025868,1, 0x025864,1, 0x025860,1, 0x02585c,1, 0x025858,1, 0x025854,1, 0x025850,1, 0x02584c,1, 0x025848,1, 0x025844,1, 0x025840,1, 0x02583c,1, 0x025838,1, 0x025834,1, 0x025830,1, 0x02582c,1, 0x025828,1, 0x025824,1, 0x025820,1, 0x025814,1, 0x025810,1, 0x025800,1, 0x023b0c,1, 0x023b08,1, 0x023b04,1, 0x023b00,1, 0x023af4,1, 0x023af0,1, 0x023a74,1, 0x023a70,1, 0x023a60,1, 0x023a54,1, 0x023a50,1, 0x023a40,1, 0x023a28,1, 0x023a1c,1, 0x023a18,1, 0x023a0c,1, 0x023a00,1, 0x023934,1, 0x023930,1, 0x023924,1, 0x023920,1, 0x023914,1, 0x023910,1, 0x023904,1, 0x023900,1, 0x0238f4,1, 0x0238f0,1, 0x0238e4,1, 0x0238e0,1, 0x0238b4,1, 0x0238b0,1, 0x0238ac,1, 0x0238a8,1, 0x0238a4,1, 0x0238a0,1, 0x023894,1, 0x023890,1, 0x02388c,1, 0x023888,1, 0x023884,1, 0x023880,1, 0x023870,1, 0x02383c,1, 0x023838,1, 0x023834,1, 0x023830,1, 0x02382c,1, 0x023828,1, 0x023824,1, 0x023820,1, 0x023814,1, 0x023810,1, 0x023800,1, 0x0237bc,1, 0x0237b8,1, 0x0237b4,1, 0x0237b0,1, 0x0237a0,1, 0x02379c,1, 0x023798,1, 0x023790,1, 0x02378c,1, 0x023788,1, 0x023784,1, 0x023780,1, 0x02367c,1, 0x023678,1, 0x023674,1, 0x023670,1, 0x02366c,1, 0x023668,1, 0x023664,1, 0x023660,1, 0x02365c,1, 0x023658,1, 0x023654,1, 0x02364c,1, 0x023648,1, 0x023644,1, 0x023640,1, 0x02362c,1, 0x023628,1, 0x023624,1, 0x023620,1, 0x02361c,1, 0x023618,1, 0x023614,1, 0x023610,1, 0x02360c,1, 0x023608,1, 0x023604,1, 0x023600,1, 0x0234a0,1, 0x02349c,1, 0x023498,1, 0x023494,1, 0x023490,1, 0x02348c,1, 0x023488,1, 0x023484,1, 0x023480,1, 0x02347c,1, 0x023478,1, 0x023474,1, 0x023470,1, 0x02346c,1, 0x023464,1, 0x02345c,1, 0x023458,1, 0x023454,1, 0x023450,1, 0x02344c,1, 0x023448,1, 0x023444,1, 0x023440,1, 0x02343c,1, 0x023438,1, 0x023424,1, 0x023420,1, 0x02341c,1, 0x023418,1, 0x023414,1, 0x023410,1, 0x02340c,1, 0x023408,1, 0x023404,1, 0x023400,1, 0x023040,1, 0x023000,1, 0x022ffc,1, 0x022ff8,1, 0x022ff4,1, 0x022fdc,1, 0x022fd4,1, 0x022fd0,1, 0x022fcc,1, 0x022fc8,1, 0x022fc4,1, 0x022fc0,1, 0x022fbc,1, 0x022fb8,1, 0x022fb4,1, 0x022fb0,1, 0x022fac,1, 0x022fa8,1, 0x022fa0,1, 0x022f9c,1, 0x022f98,1, 0x022f94,1, 0x022f90,1, 0x022f8c,1, 0x022f88,1, 0x022f84,1, 0x022f80,1, 0x022e94,1, 0x022e90,1, 0x022e80,1, 0x022e30,1, 0x022e2c,1, 0x022e28,1, 0x022e24,1, 0x022e20,1, 0x022e1c,1, 0x022e18,1, 0x022e14,1, 0x022e10,1, 0x022e0c,1, 0x022e04,1, 0x022e00,1, 0x022dfc,1, 0x022df8,1, 0x022df4,1, 0x022dec,1, 0x022de4,1, 0x022de0,1, 0x022ddc,1, 0x022dd8,1, 0x022dd4,1, 0x022dcc,1, 0x022dc8,1, 0x022dc0,1, 0x022db8,1, 0x022db4,1, 0x022db0,1, 0x022da8,1, 0x022da4,1, 0x022da0,1, 0x022d80,1, 0x022d7c,1, 0x022d78,1, 0x022d74,1, 0x022d70,1, 0x022d6c,1, 0x022d68,1, 0x022d64,1, 0x022d60,1, 0x022d5c,1, 0x022d58,1, 0x022d54,1, 0x022d50,1, 0x022d4c,1, 0x022d48,1, 0x022d44,1, 0x022d40,1, 0x022d34,1, 0x022d30,1, 0x022d20,1, 0x022d14,1, 0x022d10,1, 0x022d00,1, 0x022cec,1, 0x022ce8,1, 0x022ce4,1, 0x022ce0,1, 0x022cdc,1, 0x022cd8,1, 0x022cd4,1, 0x022cd0,1, 0x022ccc,1, 0x022cc8,1, 0x022c90,1, 0x022c8c,1, 0x022c88,1, 0x022c84,1, 0x022c80,1, 0x022c68,1, 0x022c50,1, 0x022c4c,1, 0x022c24,1, 0x022c20,1, 0x022c1c,1, 0x022c18,1, 0x022c14,1, 0x022c10,1, 0x022c0c,1, 0x022c08,1, 0x022c04,1, 0x022c00,1, 0x022b34,1, 0x022b30,1, 0x022b20,1, 0x022b14,1, 0x022b10,1, 0x022b00,1, 0x022978,1, 0x022974,1, 0x022970,1, 0x02296c,1, 0x022968,1, 0x022964,1, 0x022960,1, 0x02295c,1, 0x022958,1, 0x022954,1, 0x022950,1, 0x02294c,1, 0x022948,1, 0x022944,1, 0x022940,1, 0x02293c,1, 0x022938,1, 0x022934,1, 0x022930,1, 0x02292c,1, 0x022928,1, 0x022924,1, 0x022920,1, 0x02291c,1, 0x022918,1, 0x022914,1, 0x022910,1, 0x02290c,1, 0x022908,1, 0x022904,1, 0x022900,1, 0x0228fc,1, 0x0228f8,1, 0x0228f4,1, 0x0228f0,1, 0x0228ec,1, 0x0228e8,1, 0x0228e4,1, 0x0228e0,1, 0x0228dc,1, 0x0228d8,1, 0x0228d4,1, 0x0228d0,1, 0x0228cc,1, 0x0228c8,1, 0x0228c4,1, 0x0228c0,1, 0x0228bc,1, 0x0228b8,1, 0x0228b4,1, 0x0228b0,1, 0x0228ac,1, 0x0228a8,1, 0x0228a4,1, 0x0228a0,1, 0x02289c,1, 0x022898,1, 0x022894,1, 0x022890,1, 0x02288c,1, 0x022888,1, 0x022884,1, 0x022880,1, 0x02287c,1, 0x022878,1, 0x022874,1, 0x022870,1, 0x02286c,1, 0x022868,1, 0x022864,1, 0x022860,1, 0x02285c,1, 0x022858,1, 0x022854,1, 0x022850,1, 0x02284c,1, 0x022848,1, 0x022844,1, 0x022840,1, 0x02283c,1, 0x022838,1, 0x022834,1, 0x022830,1, 0x02282c,1, 0x022828,1, 0x022824,1, 0x022820,1, 0x02281c,1, 0x022818,1, 0x022814,1, 0x022810,1, 0x02280c,1, 0x022808,1, 0x022804,1, 0x022800,1, 0x0227fc,1, 0x0227f8,1, 0x0227f4,1, 0x0227dc,1, 0x0227d4,1, 0x0227d0,1, 0x0227cc,1, 0x0227c8,1, 0x0227c4,1, 0x0227c0,1, 0x0227bc,1, 0x0227b8,1, 0x0227b4,1, 0x0227b0,1, 0x0227ac,1, 0x0227a8,1, 0x0227a0,1, 0x02279c,1, 0x022798,1, 0x022794,1, 0x022790,1, 0x02278c,1, 0x022788,1, 0x022784,1, 0x022780,1, 0x022694,1, 0x022690,1, 0x022680,1, 0x022630,1, 0x02262c,1, 0x022628,1, 0x022624,1, 0x022620,1, 0x02261c,1, 0x022618,1, 0x022614,1, 0x022610,1, 0x02260c,1, 0x022604,1, 0x022600,1, 0x0225fc,1, 0x0225f8,1, 0x0225f4,1, 0x0225ec,1, 0x0225e4,1, 0x0225e0,1, 0x0225dc,1, 0x0225d8,1, 0x0225d4,1, 0x0225cc,1, 0x0225c8,1, 0x0225c0,1, 0x0225b8,1, 0x0225b4,1, 0x0225b0,1, 0x0225a8,1, 0x0225a4,1, 0x0225a0,1, 0x022580,1, 0x02257c,1, 0x022578,1, 0x022574,1, 0x022570,1, 0x02256c,1, 0x022568,1, 0x022564,1, 0x022560,1, 0x02255c,1, 0x022558,1, 0x022554,1, 0x022550,1, 0x02254c,1, 0x022548,1, 0x022544,1, 0x022540,1, 0x022534,1, 0x022530,1, 0x022520,1, 0x022514,1, 0x022510,1, 0x022500,1, 0x0224ec,1, 0x0224e8,1, 0x0224e4,1, 0x0224e0,1, 0x0224dc,1, 0x0224d8,1, 0x0224d4,1, 0x0224d0,1, 0x0224cc,1, 0x0224c8,1, 0x022490,1, 0x02248c,1, 0x022488,1, 0x022484,1, 0x022480,1, 0x022468,1, 0x022450,1, 0x02244c,1, 0x022424,1, 0x022420,1, 0x02241c,1, 0x022418,1, 0x022414,1, 0x022410,1, 0x02240c,1, 0x022408,1, 0x022404,1, 0x022400,1, 0x022334,1, 0x022330,1, 0x022320,1, 0x022314,1, 0x022310,1, 0x022300,1, 0x022178,1, 0x022174,1, 0x022170,1, 0x02216c,1, 0x022168,1, 0x022164,1, 0x022160,1, 0x02215c,1, 0x022158,1, 0x022154,1, 0x022150,1, 0x02214c,1, 0x022148,1, 0x022144,1, 0x022140,1, 0x02213c,1, 0x022138,1, 0x022134,1, 0x022130,1, 0x02212c,1, 0x022128,1, 0x022124,1, 0x022120,1, 0x02211c,1, 0x022118,1, 0x022114,1, 0x022110,1, 0x02210c,1, 0x022108,1, 0x022104,1, 0x022100,1, 0x0220fc,1, 0x0220f8,1, 0x0220f4,1, 0x0220f0,1, 0x0220ec,1, 0x0220e8,1, 0x0220e4,1, 0x0220e0,1, 0x0220dc,1, 0x0220d8,1, 0x0220d4,1, 0x0220d0,1, 0x0220cc,1, 0x0220c8,1, 0x0220c4,1, 0x0220c0,1, 0x0220bc,1, 0x0220b8,1, 0x0220b4,1, 0x0220b0,1, 0x0220ac,1, 0x0220a8,1, 0x0220a4,1, 0x0220a0,1, 0x02209c,1, 0x022098,1, 0x022094,1, 0x022090,1, 0x02208c,1, 0x022088,1, 0x022084,1, 0x022080,1, 0x02207c,1, 0x022078,1, 0x022074,1, 0x022070,1, 0x02206c,1, 0x022068,1, 0x022064,1, 0x022060,1, 0x02205c,1, 0x022058,1, 0x022054,1, 0x022050,1, 0x02204c,1, 0x022048,1, 0x022044,1, 0x022040,1, 0x02203c,1, 0x022038,1, 0x022034,1, 0x022030,1, 0x02202c,1, 0x022028,1, 0x022024,1, 0x022020,1, 0x02201c,1, 0x022018,1, 0x022014,1, 0x022010,1, 0x02200c,1, 0x022008,1, 0x022004,1, 0x022000,1, 0x021ffc,1, 0x021ff8,1, 0x021ff4,1, 0x021fdc,1, 0x021fd4,1, 0x021fd0,1, 0x021fcc,1, 0x021fc8,1, 0x021fc4,1, 0x021fc0,1, 0x021fbc,1, 0x021fb8,1, 0x021fb4,1, 0x021fb0,1, 0x021fac,1, 0x021fa8,1, 0x021fa0,1, 0x021f9c,1, 0x021f98,1, 0x021f94,1, 0x021f90,1, 0x021f8c,1, 0x021f88,1, 0x021f84,1, 0x021f80,1, 0x021e94,1, 0x021e90,1, 0x021e80,1, 0x021e30,1, 0x021e2c,1, 0x021e28,1, 0x021e24,1, 0x021e20,1, 0x021e1c,1, 0x021e18,1, 0x021e14,1, 0x021e10,1, 0x021e0c,1, 0x021e04,1, 0x021e00,1, 0x021dfc,1, 0x021df8,1, 0x021df4,1, 0x021dec,1, 0x021de4,1, 0x021de0,1, 0x021ddc,1, 0x021dd8,1, 0x021dd4,1, 0x021dcc,1, 0x021dc8,1, 0x021dc0,1, 0x021db8,1, 0x021db4,1, 0x021db0,1, 0x021da8,1, 0x021da4,1, 0x021da0,1, 0x021d80,1, 0x021d7c,1, 0x021d78,1, 0x021d74,1, 0x021d70,1, 0x021d6c,1, 0x021d68,1, 0x021d64,1, 0x021d60,1, 0x021d5c,1, 0x021d58,1, 0x021d54,1, 0x021d50,1, 0x021d4c,1, 0x021d48,1, 0x021d44,1, 0x021d40,1, 0x021d34,1, 0x021d30,1, 0x021d20,1, 0x021d14,1, 0x021d10,1, 0x021d00,1, 0x021cec,1, 0x021ce8,1, 0x021ce4,1, 0x021ce0,1, 0x021cdc,1, 0x021cd8,1, 0x021cd4,1, 0x021cd0,1, 0x021ccc,1, 0x021cc8,1, 0x021c90,1, 0x021c8c,1, 0x021c88,1, 0x021c84,1, 0x021c80,1, 0x021c68,1, 0x021c50,1, 0x021c4c,1, 0x021c24,1, 0x021c20,1, 0x021c1c,1, 0x021c18,1, 0x021c14,1, 0x021c10,1, 0x021c0c,1, 0x021c08,1, 0x021c04,1, 0x021c00,1, 0x021b34,1, 0x021b30,1, 0x021b20,1, 0x021b14,1, 0x021b10,1, 0x021b00,1, 0x021978,1, 0x021974,1, 0x021970,1, 0x02196c,1, 0x021968,1, 0x021964,1, 0x021960,1, 0x02195c,1, 0x021958,1, 0x021954,1, 0x021950,1, 0x02194c,1, 0x021948,1, 0x021944,1, 0x021940,1, 0x02193c,1, 0x021938,1, 0x021934,1, 0x021930,1, 0x02192c,1, 0x021928,1, 0x021924,1, 0x021920,1, 0x02191c,1, 0x021918,1, 0x021914,1, 0x021910,1, 0x02190c,1, 0x021908,1, 0x021904,1, 0x021900,1, 0x0218fc,1, 0x0218f8,1, 0x0218f4,1, 0x0218f0,1, 0x0218ec,1, 0x0218e8,1, 0x0218e4,1, 0x0218e0,1, 0x0218dc,1, 0x0218d8,1, 0x0218d4,1, 0x0218d0,1, 0x0218cc,1, 0x0218c8,1, 0x0218c4,1, 0x0218c0,1, 0x0218bc,1, 0x0218b8,1, 0x0218b4,1, 0x0218b0,1, 0x0218ac,1, 0x0218a8,1, 0x0218a4,1, 0x0218a0,1, 0x02189c,1, 0x021898,1, 0x021894,1, 0x021890,1, 0x02188c,1, 0x021888,1, 0x021884,1, 0x021880,1, 0x02187c,1, 0x021878,1, 0x021874,1, 0x021870,1, 0x02186c,1, 0x021868,1, 0x021864,1, 0x021860,1, 0x02185c,1, 0x021858,1, 0x021854,1, 0x021850,1, 0x02184c,1, 0x021848,1, 0x021844,1, 0x021840,1, 0x02183c,1, 0x021838,1, 0x021834,1, 0x021830,1, 0x02182c,1, 0x021828,1, 0x021824,1, 0x021820,1, 0x02181c,1, 0x021818,1, 0x021814,1, 0x021810,1, 0x02180c,1, 0x021808,1, 0x021804,1, 0x021800,1, 0x0217fc,1, 0x0217f8,1, 0x0217f4,1, 0x0217dc,1, 0x0217d4,1, 0x0217d0,1, 0x0217cc,1, 0x0217c8,1, 0x0217c4,1, 0x0217c0,1, 0x0217bc,1, 0x0217b8,1, 0x0217b4,1, 0x0217b0,1, 0x0217ac,1, 0x0217a8,1, 0x0217a0,1, 0x02179c,1, 0x021798,1, 0x021794,1, 0x021790,1, 0x02178c,1, 0x021788,1, 0x021784,1, 0x021780,1, 0x021694,1, 0x021690,1, 0x021680,1, 0x021630,1, 0x02162c,1, 0x021628,1, 0x021624,1, 0x021620,1, 0x02161c,1, 0x021618,1, 0x021614,1, 0x021610,1, 0x02160c,1, 0x021604,1, 0x021600,1, 0x0215fc,1, 0x0215f8,1, 0x0215f4,1, 0x0215ec,1, 0x0215e4,1, 0x0215e0,1, 0x0215dc,1, 0x0215d8,1, 0x0215d4,1, 0x0215cc,1, 0x0215c8,1, 0x0215c0,1, 0x0215b8,1, 0x0215b4,1, 0x0215b0,1, 0x0215a8,1, 0x0215a4,1, 0x0215a0,1, 0x021580,1, 0x02157c,1, 0x021578,1, 0x021574,1, 0x021570,1, 0x02156c,1, 0x021568,1, 0x021564,1, 0x021560,1, 0x02155c,1, 0x021558,1, 0x021554,1, 0x021550,1, 0x02154c,1, 0x021548,1, 0x021544,1, 0x021540,1, 0x021534,1, 0x021530,1, 0x021520,1, 0x021514,1, 0x021510,1, 0x021500,1, 0x0214ec,1, 0x0214e8,1, 0x0214e4,1, 0x0214e0,1, 0x0214dc,1, 0x0214d8,1, 0x0214d4,1, 0x0214d0,1, 0x0214cc,1, 0x0214c8,1, 0x021490,1, 0x02148c,1, 0x021488,1, 0x021484,1, 0x021480,1, 0x021468,1, 0x021450,1, 0x02144c,1, 0x021424,1, 0x021420,1, 0x02141c,1, 0x021418,1, 0x021414,1, 0x021410,1, 0x02140c,1, 0x021408,1, 0x021404,1, 0x021400,1, 0x021334,1, 0x021330,1, 0x021320,1, 0x021314,1, 0x021310,1, 0x021300,1, 0x021178,1, 0x021174,1, 0x021170,1, 0x02116c,1, 0x021168,1, 0x021164,1, 0x021160,1, 0x02115c,1, 0x021158,1, 0x021154,1, 0x021150,1, 0x02114c,1, 0x021148,1, 0x021144,1, 0x021140,1, 0x02113c,1, 0x021138,1, 0x021134,1, 0x021130,1, 0x02112c,1, 0x021128,1, 0x021124,1, 0x021120,1, 0x02111c,1, 0x021118,1, 0x021114,1, 0x021110,1, 0x02110c,1, 0x021108,1, 0x021104,1, 0x021100,1, 0x0210fc,1, 0x0210f8,1, 0x0210f4,1, 0x0210f0,1, 0x0210ec,1, 0x0210e8,1, 0x0210e4,1, 0x0210e0,1, 0x0210dc,1, 0x0210d8,1, 0x0210d4,1, 0x0210d0,1, 0x0210cc,1, 0x0210c8,1, 0x0210c4,1, 0x0210c0,1, 0x0210bc,1, 0x0210b8,1, 0x0210b4,1, 0x0210b0,1, 0x0210ac,1, 0x0210a8,1, 0x0210a4,1, 0x0210a0,1, 0x02109c,1, 0x021098,1, 0x021094,1, 0x021090,1, 0x02108c,1, 0x021088,1, 0x021084,1, 0x021080,1, 0x02107c,1, 0x021078,1, 0x021074,1, 0x021070,1, 0x02106c,1, 0x021068,1, 0x021064,1, 0x021060,1, 0x02105c,1, 0x021058,1, 0x021054,1, 0x021050,1, 0x02104c,1, 0x021048,1, 0x021044,1, 0x021040,1, 0x02103c,1, 0x021038,1, 0x021034,1, 0x021030,1, 0x02102c,1, 0x021028,1, 0x021024,1, 0x021020,1, 0x02101c,1, 0x021018,1, 0x021014,1, 0x021010,1, 0x02100c,1, 0x021008,1, 0x021004,1, 0x021000,1, 0x020ffc,1, 0x020ff8,1, 0x020ff4,1, 0x020fdc,1, 0x020fd4,1, 0x020fd0,1, 0x020fcc,1, 0x020fc8,1, 0x020fc4,1, 0x020fc0,1, 0x020fbc,1, 0x020fb8,1, 0x020fb4,1, 0x020fb0,1, 0x020fac,1, 0x020fa8,1, 0x020fa0,1, 0x020f9c,1, 0x020f98,1, 0x020f94,1, 0x020f90,1, 0x020f8c,1, 0x020f88,1, 0x020f84,1, 0x020f80,1, 0x020e94,1, 0x020e90,1, 0x020e80,1, 0x020e30,1, 0x020e2c,1, 0x020e28,1, 0x020e24,1, 0x020e20,1, 0x020e1c,1, 0x020e18,1, 0x020e14,1, 0x020e10,1, 0x020e0c,1, 0x020e04,1, 0x020e00,1, 0x020dfc,1, 0x020df8,1, 0x020df4,1, 0x020dec,1, 0x020de4,1, 0x020de0,1, 0x020ddc,1, 0x020dd8,1, 0x020dd4,1, 0x020dcc,1, 0x020dc8,1, 0x020dc0,1, 0x020db8,1, 0x020db4,1, 0x020db0,1, 0x020da8,1, 0x020da4,1, 0x020da0,1, 0x020d80,1, 0x020d7c,1, 0x020d78,1, 0x020d74,1, 0x020d70,1, 0x020d6c,1, 0x020d68,1, 0x020d64,1, 0x020d60,1, 0x020d5c,1, 0x020d58,1, 0x020d54,1, 0x020d50,1, 0x020d4c,1, 0x020d48,1, 0x020d44,1, 0x020d40,1, 0x020d34,1, 0x020d30,1, 0x020d20,1, 0x020d14,1, 0x020d10,1, 0x020d00,1, 0x020cec,1, 0x020ce8,1, 0x020ce4,1, 0x020ce0,1, 0x020cdc,1, 0x020cd8,1, 0x020cd4,1, 0x020cd0,1, 0x020ccc,1, 0x020cc8,1, 0x020c90,1, 0x020c8c,1, 0x020c88,1, 0x020c84,1, 0x020c80,1, 0x020c68,1, 0x020c50,1, 0x020c4c,1, 0x020c24,1, 0x020c20,1, 0x020c1c,1, 0x020c18,1, 0x020c14,1, 0x020c10,1, 0x020c0c,1, 0x020c08,1, 0x020c04,1, 0x020c00,1, 0x020b34,1, 0x020b30,1, 0x020b20,1, 0x020b14,1, 0x020b10,1, 0x020b00,1, 0x020978,1, 0x020974,1, 0x020970,1, 0x02096c,1, 0x020968,1, 0x020964,1, 0x020960,1, 0x02095c,1, 0x020958,1, 0x020954,1, 0x020950,1, 0x02094c,1, 0x020948,1, 0x020944,1, 0x020940,1, 0x02093c,1, 0x020938,1, 0x020934,1, 0x020930,1, 0x02092c,1, 0x020928,1, 0x020924,1, 0x020920,1, 0x02091c,1, 0x020918,1, 0x020914,1, 0x020910,1, 0x02090c,1, 0x020908,1, 0x020904,1, 0x020900,1, 0x0208fc,1, 0x0208f8,1, 0x0208f4,1, 0x0208f0,1, 0x0208ec,1, 0x0208e8,1, 0x0208e4,1, 0x0208e0,1, 0x0208dc,1, 0x0208d8,1, 0x0208d4,1, 0x0208d0,1, 0x0208cc,1, 0x0208c8,1, 0x0208c4,1, 0x0208c0,1, 0x0208bc,1, 0x0208b8,1, 0x0208b4,1, 0x0208b0,1, 0x0208ac,1, 0x0208a8,1, 0x0208a4,1, 0x0208a0,1, 0x02089c,1, 0x020898,1, 0x020894,1, 0x020890,1, 0x02088c,1, 0x020888,1, 0x020884,1, 0x020880,1, 0x02087c,1, 0x020878,1, 0x020874,1, 0x020870,1, 0x02086c,1, 0x020868,1, 0x020864,1, 0x020860,1, 0x02085c,1, 0x020858,1, 0x020854,1, 0x020850,1, 0x02084c,1, 0x020848,1, 0x020844,1, 0x020840,1, 0x02083c,1, 0x020838,1, 0x020834,1, 0x020830,1, 0x02082c,1, 0x020828,1, 0x020824,1, 0x020820,1, 0x02081c,1, 0x020818,1, 0x020814,1, 0x020810,1, 0x02080c,1, 0x020808,1, 0x020804,1, 0x020800,1, 0x0207fc,1, 0x0207f8,1, 0x0207f4,1, 0x0207dc,1, 0x0207d4,1, 0x0207d0,1, 0x0207cc,1, 0x0207c8,1, 0x0207c4,1, 0x0207c0,1, 0x0207bc,1, 0x0207b8,1, 0x0207b4,1, 0x0207b0,1, 0x0207ac,1, 0x0207a8,1, 0x0207a0,1, 0x02079c,1, 0x020798,1, 0x020794,1, 0x020790,1, 0x02078c,1, 0x020788,1, 0x020784,1, 0x020780,1, 0x020694,1, 0x020690,1, 0x020680,1, 0x020630,1, 0x02062c,1, 0x020628,1, 0x020624,1, 0x020620,1, 0x02061c,1, 0x020618,1, 0x020614,1, 0x020610,1, 0x02060c,1, 0x020604,1, 0x020600,1, 0x0205fc,1, 0x0205f8,1, 0x0205f4,1, 0x0205ec,1, 0x0205e4,1, 0x0205e0,1, 0x0205dc,1, 0x0205d8,1, 0x0205d4,1, 0x0205cc,1, 0x0205c8,1, 0x0205c0,1, 0x0205b8,1, 0x0205b4,1, 0x0205b0,1, 0x0205a8,1, 0x0205a4,1, 0x0205a0,1, 0x020580,1, 0x02057c,1, 0x020578,1, 0x020574,1, 0x020570,1, 0x02056c,1, 0x020568,1, 0x020564,1, 0x020560,1, 0x02055c,1, 0x020558,1, 0x020554,1, 0x020550,1, 0x02054c,1, 0x020548,1, 0x020544,1, 0x020540,1, 0x020534,1, 0x020530,1, 0x020520,1, 0x020514,1, 0x020510,1, 0x020500,1, 0x0204ec,1, 0x0204e8,1, 0x0204e4,1, 0x0204e0,1, 0x0204dc,1, 0x0204d8,1, 0x0204d4,1, 0x0204d0,1, 0x0204cc,1, 0x0204c8,1, 0x020490,1, 0x02048c,1, 0x020488,1, 0x020484,1, 0x020480,1, 0x020468,1, 0x020450,1, 0x02044c,1, 0x020424,1, 0x020420,1, 0x02041c,1, 0x020418,1, 0x020414,1, 0x020410,1, 0x02040c,1, 0x020408,1, 0x020404,1, 0x020400,1, 0x020334,1, 0x020330,1, 0x020320,1, 0x020314,1, 0x020310,1, 0x020300,1, 0x020178,1, 0x020174,1, 0x020170,1, 0x02016c,1, 0x020168,1, 0x020164,1, 0x020160,1, 0x02015c,1, 0x020158,1, 0x020154,1, 0x020150,1, 0x02014c,1, 0x020148,1, 0x020144,1, 0x020140,1, 0x02013c,1, 0x020138,1, 0x020134,1, 0x020130,1, 0x02012c,1, 0x020128,1, 0x020124,1, 0x020120,1, 0x02011c,1, 0x020118,1, 0x020114,1, 0x020110,1, 0x02010c,1, 0x020108,1, 0x020104,1, 0x020100,1, 0x0200fc,1, 0x0200f8,1, 0x0200f4,1, 0x0200f0,1, 0x0200ec,1, 0x0200e8,1, 0x0200e4,1, 0x0200e0,1, 0x0200dc,1, 0x0200d8,1, 0x0200d4,1, 0x0200d0,1, 0x0200cc,1, 0x0200c8,1, 0x0200c4,1, 0x0200c0,1, 0x0200bc,1, 0x0200b8,1, 0x0200b4,1, 0x0200b0,1, 0x0200ac,1, 0x0200a8,1, 0x0200a4,1, 0x0200a0,1, 0x02009c,1, 0x020098,1, 0x020094,1, 0x020090,1, 0x02008c,1, 0x020088,1, 0x020084,1, 0x020080,1, 0x02007c,1, 0x020078,1, 0x020074,1, 0x020070,1, 0x02006c,1, 0x020068,1, 0x020064,1, 0x020060,1, 0x02005c,1, 0x020058,1, 0x020054,1, 0x020050,1, 0x02004c,1, 0x020048,1, 0x020044,1, 0x020040,1, 0x02003c,1, 0x020038,1, 0x020034,1, 0x020030,1, 0x02002c,1, 0x020028,1, 0x020024,1, 0x020020,1, 0x02001c,1, 0x020018,1, 0x020014,1, 0x020010,1, 0x02000c,1, 0x020008,1, 0x020004,1, 0x020000,1, 0x01d9f4,1, 0x01d9f0,1, 0x01d9d4,1, 0x01d9d0,1, 0x01d9c0,1, 0x01d9b4,1, 0x01d9b0,1, 0x01d9a0,1, 0x01d994,1, 0x01d990,1, 0x01d980,1, 0x01d974,1, 0x01d970,1, 0x01d960,1, 0x01d954,1, 0x01d950,1, 0x01d940,1, 0x01d928,1, 0x01d924,1, 0x01d920,1, 0x01d91c,1, 0x01d918,1, 0x01d914,1, 0x01d910,1, 0x01d90c,1, 0x01d908,1, 0x01d904,1, 0x01d900,1, 0x01d8d4,1, 0x01d8d0,1, 0x01d8cc,1, 0x01d8c8,1, 0x01d8c4,1, 0x01d8c0,1, 0x01d8ac,1, 0x01d870,1, 0x01d86c,1, 0x01d868,1, 0x01d864,1, 0x01d860,1, 0x01d85c,1, 0x01d858,1, 0x01d854,1, 0x01d850,1, 0x01d84c,1, 0x01d848,1, 0x01d844,1, 0x01d840,1, 0x01d83c,1, 0x01d838,1, 0x01d834,1, 0x01d830,1, 0x01d82c,1, 0x01d828,1, 0x01d824,1, 0x01d820,1, 0x01d814,1, 0x01d810,1, 0x01d800,1, 0x01bb0c,1, 0x01bb08,1, 0x01bb04,1, 0x01bb00,1, 0x01baf4,1, 0x01baf0,1, 0x01ba74,1, 0x01ba70,1, 0x01ba60,1, 0x01ba54,1, 0x01ba50,1, 0x01ba40,1, 0x01ba28,1, 0x01ba1c,1, 0x01ba18,1, 0x01ba0c,1, 0x01ba00,1, 0x01b934,1, 0x01b930,1, 0x01b924,1, 0x01b920,1, 0x01b914,1, 0x01b910,1, 0x01b904,1, 0x01b900,1, 0x01b8f4,1, 0x01b8f0,1, 0x01b8e4,1, 0x01b8e0,1, 0x01b8b4,1, 0x01b8b0,1, 0x01b8ac,1, 0x01b8a8,1, 0x01b8a4,1, 0x01b8a0,1, 0x01b894,1, 0x01b890,1, 0x01b88c,1, 0x01b888,1, 0x01b884,1, 0x01b880,1, 0x01b870,1, 0x01b83c,1, 0x01b838,1, 0x01b834,1, 0x01b830,1, 0x01b82c,1, 0x01b828,1, 0x01b824,1, 0x01b820,1, 0x01b814,1, 0x01b810,1, 0x01b800,1, 0x01b7bc,1, 0x01b7b8,1, 0x01b7b4,1, 0x01b67c,1, 0x01b678,1, 0x01b674,1, 0x01b670,1, 0x01b66c,1, 0x01b668,1, 0x01b664,1, 0x01b660,1, 0x01b65c,1, 0x01b658,1, 0x01b654,1, 0x01b64c,1, 0x01b648,1, 0x01b644,1, 0x01b640,1, 0x01b62c,1, 0x01b628,1, 0x01b624,1, 0x01b620,1, 0x01b61c,1, 0x01b618,1, 0x01b614,1, 0x01b610,1, 0x01b60c,1, 0x01b608,1, 0x01b604,1, 0x01b600,1, 0x01b4a0,1, 0x01b49c,1, 0x01b498,1, 0x01b494,1, 0x01b490,1, 0x01b48c,1, 0x01b488,1, 0x01b484,1, 0x01b480,1, 0x01b47c,1, 0x01b478,1, 0x01b474,1, 0x01b470,1, 0x01b46c,1, 0x01b464,1, 0x01b45c,1, 0x01b458,1, 0x01b454,1, 0x01b450,1, 0x01b44c,1, 0x01b448,1, 0x01b444,1, 0x01b440,1, 0x01b43c,1, 0x01b438,1, 0x01b424,1, 0x01b420,1, 0x01b41c,1, 0x01b418,1, 0x01b414,1, 0x01b410,1, 0x01b40c,1, 0x01b408,1, 0x01b404,1, 0x01b400,1, 0x01b040,1, 0x01b000,1, 0x01affc,1, 0x01aff8,1, 0x01aff4,1, 0x01afdc,1, 0x01afd4,1, 0x01afd0,1, 0x01afcc,1, 0x01afc8,1, 0x01afc4,1, 0x01afc0,1, 0x01afbc,1, 0x01afb8,1, 0x01afb4,1, 0x01afb0,1, 0x01afac,1, 0x01afa8,1, 0x01afa0,1, 0x01af9c,1, 0x01af98,1, 0x01af94,1, 0x01af90,1, 0x01af8c,1, 0x01af88,1, 0x01af84,1, 0x01af80,1, 0x01ae94,1, 0x01ae90,1, 0x01ae80,1, 0x01ae30,1, 0x01ae2c,1, 0x01ae28,1, 0x01ae24,1, 0x01ae20,1, 0x01ae1c,1, 0x01ae18,1, 0x01ae14,1, 0x01ae10,1, 0x01ae0c,1, 0x01ae04,1, 0x01ae00,1, 0x01adfc,1, 0x01adf8,1, 0x01adf4,1, 0x01adec,1, 0x01ade4,1, 0x01ade0,1, 0x01addc,1, 0x01add8,1, 0x01add4,1, 0x01adcc,1, 0x01adc8,1, 0x01adc0,1, 0x01adb8,1, 0x01adb4,1, 0x01adb0,1, 0x01ada8,1, 0x01ada4,1, 0x01ada0,1, 0x01ad80,1, 0x01ad7c,1, 0x01ad78,1, 0x01ad74,1, 0x01ad70,1, 0x01ad6c,1, 0x01ad68,1, 0x01ad64,1, 0x01ad60,1, 0x01ad5c,1, 0x01ad58,1, 0x01ad54,1, 0x01ad50,1, 0x01ad4c,1, 0x01ad48,1, 0x01ad44,1, 0x01ad40,1, 0x01ad34,1, 0x01ad30,1, 0x01ad20,1, 0x01ad14,1, 0x01ad10,1, 0x01ad00,1, 0x01acec,1, 0x01ace8,1, 0x01ace4,1, 0x01ace0,1, 0x01acdc,1, 0x01acd8,1, 0x01acd4,1, 0x01acd0,1, 0x01accc,1, 0x01acc8,1, 0x01ac90,1, 0x01ac8c,1, 0x01ac88,1, 0x01ac84,1, 0x01ac80,1, 0x01ac68,1, 0x01ac50,1, 0x01ac4c,1, 0x01ac24,1, 0x01ac20,1, 0x01ac1c,1, 0x01ac18,1, 0x01ac14,1, 0x01ac10,1, 0x01ac0c,1, 0x01ac08,1, 0x01ac04,1, 0x01ac00,1, 0x01ab34,1, 0x01ab30,1, 0x01ab20,1, 0x01ab14,1, 0x01ab10,1, 0x01ab00,1, 0x01a978,1, 0x01a974,1, 0x01a970,1, 0x01a96c,1, 0x01a968,1, 0x01a964,1, 0x01a960,1, 0x01a95c,1, 0x01a958,1, 0x01a954,1, 0x01a950,1, 0x01a94c,1, 0x01a948,1, 0x01a944,1, 0x01a940,1, 0x01a93c,1, 0x01a938,1, 0x01a934,1, 0x01a930,1, 0x01a92c,1, 0x01a928,1, 0x01a924,1, 0x01a920,1, 0x01a91c,1, 0x01a918,1, 0x01a914,1, 0x01a910,1, 0x01a90c,1, 0x01a908,1, 0x01a904,1, 0x01a900,1, 0x01a8fc,1, 0x01a8f8,1, 0x01a8f4,1, 0x01a8f0,1, 0x01a8ec,1, 0x01a8e8,1, 0x01a8e4,1, 0x01a8e0,1, 0x01a8dc,1, 0x01a8d8,1, 0x01a8d4,1, 0x01a8d0,1, 0x01a8cc,1, 0x01a8c8,1, 0x01a8c4,1, 0x01a8c0,1, 0x01a8bc,1, 0x01a8b8,1, 0x01a8b4,1, 0x01a8b0,1, 0x01a8ac,1, 0x01a8a8,1, 0x01a8a4,1, 0x01a8a0,1, 0x01a89c,1, 0x01a898,1, 0x01a894,1, 0x01a890,1, 0x01a88c,1, 0x01a888,1, 0x01a884,1, 0x01a880,1, 0x01a87c,1, 0x01a878,1, 0x01a874,1, 0x01a870,1, 0x01a86c,1, 0x01a868,1, 0x01a864,1, 0x01a860,1, 0x01a85c,1, 0x01a858,1, 0x01a854,1, 0x01a850,1, 0x01a84c,1, 0x01a848,1, 0x01a844,1, 0x01a840,1, 0x01a83c,1, 0x01a838,1, 0x01a834,1, 0x01a830,1, 0x01a82c,1, 0x01a828,1, 0x01a824,1, 0x01a820,1, 0x01a81c,1, 0x01a818,1, 0x01a814,1, 0x01a810,1, 0x01a80c,1, 0x01a808,1, 0x01a804,1, 0x01a800,1, 0x01a7fc,1, 0x01a7f8,1, 0x01a7f4,1, 0x01a7dc,1, 0x01a7d4,1, 0x01a7d0,1, 0x01a7cc,1, 0x01a7c8,1, 0x01a7c4,1, 0x01a7c0,1, 0x01a7bc,1, 0x01a7b8,1, 0x01a7b4,1, 0x01a7b0,1, 0x01a7ac,1, 0x01a7a8,1, 0x01a7a0,1, 0x01a79c,1, 0x01a798,1, 0x01a794,1, 0x01a790,1, 0x01a78c,1, 0x01a788,1, 0x01a784,1, 0x01a780,1, 0x01a694,1, 0x01a690,1, 0x01a680,1, 0x01a630,1, 0x01a62c,1, 0x01a628,1, 0x01a624,1, 0x01a620,1, 0x01a61c,1, 0x01a618,1, 0x01a614,1, 0x01a610,1, 0x01a60c,1, 0x01a604,1, 0x01a600,1, 0x01a5fc,1, 0x01a5f8,1, 0x01a5f4,1, 0x01a5ec,1, 0x01a5e4,1, 0x01a5e0,1, 0x01a5dc,1, 0x01a5d8,1, 0x01a5d4,1, 0x01a5cc,1, 0x01a5c8,1, 0x01a5c0,1, 0x01a5b8,1, 0x01a5b4,1, 0x01a5b0,1, 0x01a5a8,1, 0x01a5a4,1, 0x01a5a0,1, 0x01a580,1, 0x01a57c,1, 0x01a578,1, 0x01a574,1, 0x01a570,1, 0x01a56c,1, 0x01a568,1, 0x01a564,1, 0x01a560,1, 0x01a55c,1, 0x01a558,1, 0x01a554,1, 0x01a550,1, 0x01a54c,1, 0x01a548,1, 0x01a544,1, 0x01a540,1, 0x01a534,1, 0x01a530,1, 0x01a520,1, 0x01a514,1, 0x01a510,1, 0x01a500,1, 0x01a4ec,1, 0x01a4e8,1, 0x01a4e4,1, 0x01a4e0,1, 0x01a4dc,1, 0x01a4d8,1, 0x01a4d4,1, 0x01a4d0,1, 0x01a4cc,1, 0x01a4c8,1, 0x01a490,1, 0x01a48c,1, 0x01a488,1, 0x01a484,1, 0x01a480,1, 0x01a468,1, 0x01a450,1, 0x01a44c,1, 0x01a424,1, 0x01a420,1, 0x01a41c,1, 0x01a418,1, 0x01a414,1, 0x01a410,1, 0x01a40c,1, 0x01a408,1, 0x01a404,1, 0x01a400,1, 0x01a334,1, 0x01a330,1, 0x01a320,1, 0x01a314,1, 0x01a310,1, 0x01a300,1, 0x01a178,1, 0x01a174,1, 0x01a170,1, 0x01a16c,1, 0x01a168,1, 0x01a164,1, 0x01a160,1, 0x01a15c,1, 0x01a158,1, 0x01a154,1, 0x01a150,1, 0x01a14c,1, 0x01a148,1, 0x01a144,1, 0x01a140,1, 0x01a13c,1, 0x01a138,1, 0x01a134,1, 0x01a130,1, 0x01a12c,1, 0x01a128,1, 0x01a124,1, 0x01a120,1, 0x01a11c,1, 0x01a118,1, 0x01a114,1, 0x01a110,1, 0x01a10c,1, 0x01a108,1, 0x01a104,1, 0x01a100,1, 0x01a0fc,1, 0x01a0f8,1, 0x01a0f4,1, 0x01a0f0,1, 0x01a0ec,1, 0x01a0e8,1, 0x01a0e4,1, 0x01a0e0,1, 0x01a0dc,1, 0x01a0d8,1, 0x01a0d4,1, 0x01a0d0,1, 0x01a0cc,1, 0x01a0c8,1, 0x01a0c4,1, 0x01a0c0,1, 0x01a0bc,1, 0x01a0b8,1, 0x01a0b4,1, 0x01a0b0,1, 0x01a0ac,1, 0x01a0a8,1, 0x01a0a4,1, 0x01a0a0,1, 0x01a09c,1, 0x01a098,1, 0x01a094,1, 0x01a090,1, 0x01a08c,1, 0x01a088,1, 0x01a084,1, 0x01a080,1, 0x01a07c,1, 0x01a078,1, 0x01a074,1, 0x01a070,1, 0x01a06c,1, 0x01a068,1, 0x01a064,1, 0x01a060,1, 0x01a05c,1, 0x01a058,1, 0x01a054,1, 0x01a050,1, 0x01a04c,1, 0x01a048,1, 0x01a044,1, 0x01a040,1, 0x01a03c,1, 0x01a038,1, 0x01a034,1, 0x01a030,1, 0x01a02c,1, 0x01a028,1, 0x01a024,1, 0x01a020,1, 0x01a01c,1, 0x01a018,1, 0x01a014,1, 0x01a010,1, 0x01a00c,1, 0x01a008,1, 0x01a004,1, 0x01a000,1, 0x019ffc,1, 0x019ff8,1, 0x019ff4,1, 0x019fdc,1, 0x019fd4,1, 0x019fd0,1, 0x019fcc,1, 0x019fc8,1, 0x019fc4,1, 0x019fc0,1, 0x019fbc,1, 0x019fb8,1, 0x019fb4,1, 0x019fb0,1, 0x019fac,1, 0x019fa8,1, 0x019fa0,1, 0x019f9c,1, 0x019f98,1, 0x019f94,1, 0x019f90,1, 0x019f8c,1, 0x019f88,1, 0x019f84,1, 0x019f80,1, 0x019e94,1, 0x019e90,1, 0x019e80,1, 0x019e30,1, 0x019e2c,1, 0x019e28,1, 0x019e24,1, 0x019e20,1, 0x019e1c,1, 0x019e18,1, 0x019e14,1, 0x019e10,1, 0x019e0c,1, 0x019e04,1, 0x019e00,1, 0x019dfc,1, 0x019df8,1, 0x019df4,1, 0x019dec,1, 0x019de4,1, 0x019de0,1, 0x019ddc,1, 0x019dd8,1, 0x019dd4,1, 0x019dcc,1, 0x019dc8,1, 0x019dc0,1, 0x019db8,1, 0x019db4,1, 0x019db0,1, 0x019da8,1, 0x019da4,1, 0x019da0,1, 0x019d80,1, 0x019d7c,1, 0x019d78,1, 0x019d74,1, 0x019d70,1, 0x019d6c,1, 0x019d68,1, 0x019d64,1, 0x019d60,1, 0x019d5c,1, 0x019d58,1, 0x019d54,1, 0x019d50,1, 0x019d4c,1, 0x019d48,1, 0x019d44,1, 0x019d40,1, 0x019d34,1, 0x019d30,1, 0x019d20,1, 0x019d14,1, 0x019d10,1, 0x019d00,1, 0x019cec,1, 0x019ce8,1, 0x019ce4,1, 0x019ce0,1, 0x019cdc,1, 0x019cd8,1, 0x019cd4,1, 0x019cd0,1, 0x019ccc,1, 0x019cc8,1, 0x019c90,1, 0x019c8c,1, 0x019c88,1, 0x019c84,1, 0x019c80,1, 0x019c68,1, 0x019c50,1, 0x019c4c,1, 0x019c24,1, 0x019c20,1, 0x019c1c,1, 0x019c18,1, 0x019c14,1, 0x019c10,1, 0x019c0c,1, 0x019c08,1, 0x019c04,1, 0x019c00,1, 0x019b34,1, 0x019b30,1, 0x019b20,1, 0x019b14,1, 0x019b10,1, 0x019b00,1, 0x019978,1, 0x019974,1, 0x019970,1, 0x01996c,1, 0x019968,1, 0x019964,1, 0x019960,1, 0x01995c,1, 0x019958,1, 0x019954,1, 0x019950,1, 0x01994c,1, 0x019948,1, 0x019944,1, 0x019940,1, 0x01993c,1, 0x019938,1, 0x019934,1, 0x019930,1, 0x01992c,1, 0x019928,1, 0x019924,1, 0x019920,1, 0x01991c,1, 0x019918,1, 0x019914,1, 0x019910,1, 0x01990c,1, 0x019908,1, 0x019904,1, 0x019900,1, 0x0198fc,1, 0x0198f8,1, 0x0198f4,1, 0x0198f0,1, 0x0198ec,1, 0x0198e8,1, 0x0198e4,1, 0x0198e0,1, 0x0198dc,1, 0x0198d8,1, 0x0198d4,1, 0x0198d0,1, 0x0198cc,1, 0x0198c8,1, 0x0198c4,1, 0x0198c0,1, 0x0198bc,1, 0x0198b8,1, 0x0198b4,1, 0x0198b0,1, 0x0198ac,1, 0x0198a8,1, 0x0198a4,1, 0x0198a0,1, 0x01989c,1, 0x019898,1, 0x019894,1, 0x019890,1, 0x01988c,1, 0x019888,1, 0x019884,1, 0x019880,1, 0x01987c,1, 0x019878,1, 0x019874,1, 0x019870,1, 0x01986c,1, 0x019868,1, 0x019864,1, 0x019860,1, 0x01985c,1, 0x019858,1, 0x019854,1, 0x019850,1, 0x01984c,1, 0x019848,1, 0x019844,1, 0x019840,1, 0x01983c,1, 0x019838,1, 0x019834,1, 0x019830,1, 0x01982c,1, 0x019828,1, 0x019824,1, 0x019820,1, 0x01981c,1, 0x019818,1, 0x019814,1, 0x019810,1, 0x01980c,1, 0x019808,1, 0x019804,1, 0x019800,1, 0x0197fc,1, 0x0197f8,1, 0x0197f4,1, 0x0197dc,1, 0x0197d4,1, 0x0197d0,1, 0x0197cc,1, 0x0197c8,1, 0x0197c4,1, 0x0197c0,1, 0x0197bc,1, 0x0197b8,1, 0x0197b4,1, 0x0197b0,1, 0x0197ac,1, 0x0197a8,1, 0x0197a0,1, 0x01979c,1, 0x019798,1, 0x019794,1, 0x019790,1, 0x01978c,1, 0x019788,1, 0x019784,1, 0x019780,1, 0x019694,1, 0x019690,1, 0x019680,1, 0x019630,1, 0x01962c,1, 0x019628,1, 0x019624,1, 0x019620,1, 0x01961c,1, 0x019618,1, 0x019614,1, 0x019610,1, 0x01960c,1, 0x019604,1, 0x019600,1, 0x0195fc,1, 0x0195f8,1, 0x0195f4,1, 0x0195ec,1, 0x0195e4,1, 0x0195e0,1, 0x0195dc,1, 0x0195d8,1, 0x0195d4,1, 0x0195cc,1, 0x0195c8,1, 0x0195c0,1, 0x0195b8,1, 0x0195b4,1, 0x0195b0,1, 0x0195a8,1, 0x0195a4,1, 0x0195a0,1, 0x019580,1, 0x01957c,1, 0x019578,1, 0x019574,1, 0x019570,1, 0x01956c,1, 0x019568,1, 0x019564,1, 0x019560,1, 0x01955c,1, 0x019558,1, 0x019554,1, 0x019550,1, 0x01954c,1, 0x019548,1, 0x019544,1, 0x019540,1, 0x019534,1, 0x019530,1, 0x019520,1, 0x019514,1, 0x019510,1, 0x019500,1, 0x0194ec,1, 0x0194e8,1, 0x0194e4,1, 0x0194e0,1, 0x0194dc,1, 0x0194d8,1, 0x0194d4,1, 0x0194d0,1, 0x0194cc,1, 0x0194c8,1, 0x019490,1, 0x01948c,1, 0x019488,1, 0x019484,1, 0x019480,1, 0x019468,1, 0x019450,1, 0x01944c,1, 0x019424,1, 0x019420,1, 0x01941c,1, 0x019418,1, 0x019414,1, 0x019410,1, 0x01940c,1, 0x019408,1, 0x019404,1, 0x019400,1, 0x019334,1, 0x019330,1, 0x019320,1, 0x019314,1, 0x019310,1, 0x019300,1, 0x019178,1, 0x019174,1, 0x019170,1, 0x01916c,1, 0x019168,1, 0x019164,1, 0x019160,1, 0x01915c,1, 0x019158,1, 0x019154,1, 0x019150,1, 0x01914c,1, 0x019148,1, 0x019144,1, 0x019140,1, 0x01913c,1, 0x019138,1, 0x019134,1, 0x019130,1, 0x01912c,1, 0x019128,1, 0x019124,1, 0x019120,1, 0x01911c,1, 0x019118,1, 0x019114,1, 0x019110,1, 0x01910c,1, 0x019108,1, 0x019104,1, 0x019100,1, 0x0190fc,1, 0x0190f8,1, 0x0190f4,1, 0x0190f0,1, 0x0190ec,1, 0x0190e8,1, 0x0190e4,1, 0x0190e0,1, 0x0190dc,1, 0x0190d8,1, 0x0190d4,1, 0x0190d0,1, 0x0190cc,1, 0x0190c8,1, 0x0190c4,1, 0x0190c0,1, 0x0190bc,1, 0x0190b8,1, 0x0190b4,1, 0x0190b0,1, 0x0190ac,1, 0x0190a8,1, 0x0190a4,1, 0x0190a0,1, 0x01909c,1, 0x019098,1, 0x019094,1, 0x019090,1, 0x01908c,1, 0x019088,1, 0x019084,1, 0x019080,1, 0x01907c,1, 0x019078,1, 0x019074,1, 0x019070,1, 0x01906c,1, 0x019068,1, 0x019064,1, 0x019060,1, 0x01905c,1, 0x019058,1, 0x019054,1, 0x019050,1, 0x01904c,1, 0x019048,1, 0x019044,1, 0x019040,1, 0x01903c,1, 0x019038,1, 0x019034,1, 0x019030,1, 0x01902c,1, 0x019028,1, 0x019024,1, 0x019020,1, 0x01901c,1, 0x019018,1, 0x019014,1, 0x019010,1, 0x01900c,1, 0x019008,1, 0x019004,1, 0x019000,1, 0x018ffc,1, 0x018ff8,1, 0x018ff4,1, 0x018fdc,1, 0x018fd4,1, 0x018fd0,1, 0x018fcc,1, 0x018fc8,1, 0x018fc4,1, 0x018fc0,1, 0x018fbc,1, 0x018fb8,1, 0x018fb4,1, 0x018fb0,1, 0x018fac,1, 0x018fa8,1, 0x018fa0,1, 0x018f9c,1, 0x018f98,1, 0x018f94,1, 0x018f90,1, 0x018f8c,1, 0x018f88,1, 0x018f84,1, 0x018f80,1, 0x018e94,1, 0x018e90,1, 0x018e80,1, 0x018e30,1, 0x018e2c,1, 0x018e28,1, 0x018e24,1, 0x018e20,1, 0x018e1c,1, 0x018e18,1, 0x018e14,1, 0x018e10,1, 0x018e0c,1, 0x018e04,1, 0x018e00,1, 0x018dfc,1, 0x018df8,1, 0x018df4,1, 0x018dec,1, 0x018de4,1, 0x018de0,1, 0x018ddc,1, 0x018dd8,1, 0x018dd4,1, 0x018dcc,1, 0x018dc8,1, 0x018dc0,1, 0x018db8,1, 0x018db4,1, 0x018db0,1, 0x018da8,1, 0x018da4,1, 0x018da0,1, 0x018d80,1, 0x018d7c,1, 0x018d78,1, 0x018d74,1, 0x018d70,1, 0x018d6c,1, 0x018d68,1, 0x018d64,1, 0x018d60,1, 0x018d5c,1, 0x018d58,1, 0x018d54,1, 0x018d50,1, 0x018d4c,1, 0x018d48,1, 0x018d44,1, 0x018d40,1, 0x018d34,1, 0x018d30,1, 0x018d20,1, 0x018d14,1, 0x018d10,1, 0x018d00,1, 0x018cec,1, 0x018ce8,1, 0x018ce4,1, 0x018ce0,1, 0x018cdc,1, 0x018cd8,1, 0x018cd4,1, 0x018cd0,1, 0x018ccc,1, 0x018cc8,1, 0x018c90,1, 0x018c8c,1, 0x018c88,1, 0x018c84,1, 0x018c80,1, 0x018c68,1, 0x018c50,1, 0x018c4c,1, 0x018c24,1, 0x018c20,1, 0x018c1c,1, 0x018c18,1, 0x018c14,1, 0x018c10,1, 0x018c0c,1, 0x018c08,1, 0x018c04,1, 0x018c00,1, 0x018b34,1, 0x018b30,1, 0x018b20,1, 0x018b14,1, 0x018b10,1, 0x018b00,1, 0x018978,1, 0x018974,1, 0x018970,1, 0x01896c,1, 0x018968,1, 0x018964,1, 0x018960,1, 0x01895c,1, 0x018958,1, 0x018954,1, 0x018950,1, 0x01894c,1, 0x018948,1, 0x018944,1, 0x018940,1, 0x01893c,1, 0x018938,1, 0x018934,1, 0x018930,1, 0x01892c,1, 0x018928,1, 0x018924,1, 0x018920,1, 0x01891c,1, 0x018918,1, 0x018914,1, 0x018910,1, 0x01890c,1, 0x018908,1, 0x018904,1, 0x018900,1, 0x0188fc,1, 0x0188f8,1, 0x0188f4,1, 0x0188f0,1, 0x0188ec,1, 0x0188e8,1, 0x0188e4,1, 0x0188e0,1, 0x0188dc,1, 0x0188d8,1, 0x0188d4,1, 0x0188d0,1, 0x0188cc,1, 0x0188c8,1, 0x0188c4,1, 0x0188c0,1, 0x0188bc,1, 0x0188b8,1, 0x0188b4,1, 0x0188b0,1, 0x0188ac,1, 0x0188a8,1, 0x0188a4,1, 0x0188a0,1, 0x01889c,1, 0x018898,1, 0x018894,1, 0x018890,1, 0x01888c,1, 0x018888,1, 0x018884,1, 0x018880,1, 0x01887c,1, 0x018878,1, 0x018874,1, 0x018870,1, 0x01886c,1, 0x018868,1, 0x018864,1, 0x018860,1, 0x01885c,1, 0x018858,1, 0x018854,1, 0x018850,1, 0x01884c,1, 0x018848,1, 0x018844,1, 0x018840,1, 0x01883c,1, 0x018838,1, 0x018834,1, 0x018830,1, 0x01882c,1, 0x018828,1, 0x018824,1, 0x018820,1, 0x01881c,1, 0x018818,1, 0x018814,1, 0x018810,1, 0x01880c,1, 0x018808,1, 0x018804,1, 0x018800,1, 0x0187fc,1, 0x0187f8,1, 0x0187f4,1, 0x0187dc,1, 0x0187d4,1, 0x0187d0,1, 0x0187cc,1, 0x0187c8,1, 0x0187c4,1, 0x0187c0,1, 0x0187bc,1, 0x0187b8,1, 0x0187b4,1, 0x0187b0,1, 0x0187ac,1, 0x0187a8,1, 0x0187a0,1, 0x01879c,1, 0x018798,1, 0x018794,1, 0x018790,1, 0x01878c,1, 0x018788,1, 0x018784,1, 0x018780,1, 0x018694,1, 0x018690,1, 0x018680,1, 0x018630,1, 0x01862c,1, 0x018628,1, 0x018624,1, 0x018620,1, 0x01861c,1, 0x018618,1, 0x018614,1, 0x018610,1, 0x01860c,1, 0x018604,1, 0x018600,1, 0x0185fc,1, 0x0185f8,1, 0x0185f4,1, 0x0185ec,1, 0x0185e4,1, 0x0185e0,1, 0x0185dc,1, 0x0185d8,1, 0x0185d4,1, 0x0185cc,1, 0x0185c8,1, 0x0185c0,1, 0x0185b8,1, 0x0185b4,1, 0x0185b0,1, 0x0185a8,1, 0x0185a4,1, 0x0185a0,1, 0x018580,1, 0x01857c,1, 0x018578,1, 0x018574,1, 0x018570,1, 0x01856c,1, 0x018568,1, 0x018564,1, 0x018560,1, 0x01855c,1, 0x018558,1, 0x018554,1, 0x018550,1, 0x01854c,1, 0x018548,1, 0x018544,1, 0x018540,1, 0x018534,1, 0x018530,1, 0x018520,1, 0x018514,1, 0x018510,1, 0x018500,1, 0x0184ec,1, 0x0184e8,1, 0x0184e4,1, 0x0184e0,1, 0x0184dc,1, 0x0184d8,1, 0x0184d4,1, 0x0184d0,1, 0x0184cc,1, 0x0184c8,1, 0x018490,1, 0x01848c,1, 0x018488,1, 0x018484,1, 0x018480,1, 0x018468,1, 0x018450,1, 0x01844c,1, 0x018424,1, 0x018420,1, 0x01841c,1, 0x018418,1, 0x018414,1, 0x018410,1, 0x01840c,1, 0x018408,1, 0x018404,1, 0x018400,1, 0x018334,1, 0x018330,1, 0x018320,1, 0x018314,1, 0x018310,1, 0x018300,1, 0x018178,1, 0x018174,1, 0x018170,1, 0x01816c,1, 0x018168,1, 0x018164,1, 0x018160,1, 0x01815c,1, 0x018158,1, 0x018154,1, 0x018150,1, 0x01814c,1, 0x018148,1, 0x018144,1, 0x018140,1, 0x01813c,1, 0x018138,1, 0x018134,1, 0x018130,1, 0x01812c,1, 0x018128,1, 0x018124,1, 0x018120,1, 0x01811c,1, 0x018118,1, 0x018114,1, 0x018110,1, 0x01810c,1, 0x018108,1, 0x018104,1, 0x018100,1, 0x0180fc,1, 0x0180f8,1, 0x0180f4,1, 0x0180f0,1, 0x0180ec,1, 0x0180e8,1, 0x0180e4,1, 0x0180e0,1, 0x0180dc,1, 0x0180d8,1, 0x0180d4,1, 0x0180d0,1, 0x0180cc,1, 0x0180c8,1, 0x0180c4,1, 0x0180c0,1, 0x0180bc,1, 0x0180b8,1, 0x0180b4,1, 0x0180b0,1, 0x0180ac,1, 0x0180a8,1, 0x0180a4,1, 0x0180a0,1, 0x01809c,1, 0x018098,1, 0x018094,1, 0x018090,1, 0x01808c,1, 0x018088,1, 0x018084,1, 0x018080,1, 0x01807c,1, 0x018078,1, 0x018074,1, 0x018070,1, 0x01806c,1, 0x018068,1, 0x018064,1, 0x018060,1, 0x01805c,1, 0x018058,1, 0x018054,1, 0x018050,1, 0x01804c,1, 0x018048,1, 0x018044,1, 0x018040,1, 0x01803c,1, 0x018038,1, 0x018034,1, 0x018030,1, 0x01802c,1, 0x018028,1, 0x018024,1, 0x018020,1, 0x01801c,1, 0x018018,1, 0x018014,1, 0x018010,1, 0x01800c,1, 0x018008,1, 0x018004,1, 0x018000,1, 0x0159f4,1, 0x0159f0,1, 0x0159d4,1, 0x0159d0,1, 0x0159c0,1, 0x0159b4,1, 0x0159b0,1, 0x0159a0,1, 0x015994,1, 0x015990,1, 0x015980,1, 0x015974,1, 0x015970,1, 0x015960,1, 0x015954,1, 0x015950,1, 0x015940,1, 0x015928,1, 0x015924,1, 0x015920,1, 0x01591c,1, 0x015918,1, 0x015914,1, 0x015910,1, 0x01590c,1, 0x015908,1, 0x015904,1, 0x015900,1, 0x0158d4,1, 0x0158d0,1, 0x0158cc,1, 0x0158c8,1, 0x0158c4,1, 0x0158c0,1, 0x0158ac,1, 0x015870,1, 0x01586c,1, 0x015868,1, 0x015864,1, 0x015860,1, 0x01585c,1, 0x015858,1, 0x015854,1, 0x015850,1, 0x01584c,1, 0x015848,1, 0x015844,1, 0x015840,1, 0x01583c,1, 0x015838,1, 0x015834,1, 0x015830,1, 0x01582c,1, 0x015828,1, 0x015824,1, 0x015820,1, 0x015814,1, 0x015810,1, 0x015800,1, 0x013b0c,1, 0x013b08,1, 0x013b04,1, 0x013b00,1, 0x013af4,1, 0x013af0,1, 0x013a74,1, 0x013a70,1, 0x013a60,1, 0x013a54,1, 0x013a50,1, 0x013a40,1, 0x013a28,1, 0x013a1c,1, 0x013a18,1, 0x013a0c,1, 0x013a00,1, 0x013934,1, 0x013930,1, 0x013924,1, 0x013920,1, 0x013914,1, 0x013910,1, 0x013904,1, 0x013900,1, 0x0138f4,1, 0x0138f0,1, 0x0138e4,1, 0x0138e0,1, 0x0138b4,1, 0x0138b0,1, 0x0138ac,1, 0x0138a8,1, 0x0138a4,1, 0x0138a0,1, 0x013894,1, 0x013890,1, 0x01388c,1, 0x013888,1, 0x013884,1, 0x013880,1, 0x013870,1, 0x01383c,1, 0x013838,1, 0x013834,1, 0x013830,1, 0x01382c,1, 0x013828,1, 0x013824,1, 0x013820,1, 0x013814,1, 0x013810,1, 0x013800,1, 0x0137bc,1, 0x0137b8,1, 0x0137b4,1, 0x01367c,1, 0x013678,1, 0x013674,1, 0x013670,1, 0x01366c,1, 0x013668,1, 0x013664,1, 0x013660,1, 0x01365c,1, 0x013658,1, 0x013654,1, 0x01364c,1, 0x013648,1, 0x013644,1, 0x013640,1, 0x01362c,1, 0x013628,1, 0x013624,1, 0x013620,1, 0x01361c,1, 0x013618,1, 0x013614,1, 0x013610,1, 0x01360c,1, 0x013608,1, 0x013604,1, 0x013600,1, 0x0134a0,1, 0x01349c,1, 0x013498,1, 0x013494,1, 0x013490,1, 0x01348c,1, 0x013488,1, 0x013484,1, 0x013480,1, 0x01347c,1, 0x013478,1, 0x013474,1, 0x013470,1, 0x01346c,1, 0x013464,1, 0x01345c,1, 0x013458,1, 0x013454,1, 0x013450,1, 0x01344c,1, 0x013448,1, 0x013444,1, 0x013440,1, 0x01343c,1, 0x013438,1, 0x013424,1, 0x013420,1, 0x01341c,1, 0x013418,1, 0x013414,1, 0x013410,1, 0x01340c,1, 0x013408,1, 0x013404,1, 0x013400,1, 0x013040,1, 0x013000,1, 0x012ffc,1, 0x012ff8,1, 0x012ff4,1, 0x012fdc,1, 0x012fd4,1, 0x012fd0,1, 0x012fcc,1, 0x012fc8,1, 0x012fc4,1, 0x012fc0,1, 0x012fbc,1, 0x012fb8,1, 0x012fb4,1, 0x012fb0,1, 0x012fac,1, 0x012fa8,1, 0x012fa0,1, 0x012f9c,1, 0x012f98,1, 0x012f94,1, 0x012f90,1, 0x012f8c,1, 0x012f88,1, 0x012f84,1, 0x012f80,1, 0x012e94,1, 0x012e90,1, 0x012e80,1, 0x012e30,1, 0x012e2c,1, 0x012e28,1, 0x012e24,1, 0x012e20,1, 0x012e1c,1, 0x012e18,1, 0x012e14,1, 0x012e10,1, 0x012e0c,1, 0x012e04,1, 0x012e00,1, 0x012dfc,1, 0x012df8,1, 0x012df4,1, 0x012dec,1, 0x012de4,1, 0x012de0,1, 0x012ddc,1, 0x012dd8,1, 0x012dd4,1, 0x012dcc,1, 0x012dc8,1, 0x012dc0,1, 0x012db8,1, 0x012db4,1, 0x012db0,1, 0x012da8,1, 0x012da4,1, 0x012da0,1, 0x012d80,1, 0x012d7c,1, 0x012d78,1, 0x012d74,1, 0x012d70,1, 0x012d6c,1, 0x012d68,1, 0x012d64,1, 0x012d60,1, 0x012d5c,1, 0x012d58,1, 0x012d54,1, 0x012d50,1, 0x012d4c,1, 0x012d48,1, 0x012d44,1, 0x012d40,1, 0x012d34,1, 0x012d30,1, 0x012d20,1, 0x012d14,1, 0x012d10,1, 0x012d00,1, 0x012cec,1, 0x012ce8,1, 0x012ce4,1, 0x012ce0,1, 0x012cdc,1, 0x012cd8,1, 0x012cd4,1, 0x012cd0,1, 0x012ccc,1, 0x012cc8,1, 0x012c90,1, 0x012c8c,1, 0x012c88,1, 0x012c84,1, 0x012c80,1, 0x012c68,1, 0x012c50,1, 0x012c4c,1, 0x012c24,1, 0x012c20,1, 0x012c1c,1, 0x012c18,1, 0x012c14,1, 0x012c10,1, 0x012c0c,1, 0x012c08,1, 0x012c04,1, 0x012c00,1, 0x012b34,1, 0x012b30,1, 0x012b20,1, 0x012b14,1, 0x012b10,1, 0x012b00,1, 0x012978,1, 0x012974,1, 0x012970,1, 0x01296c,1, 0x012968,1, 0x012964,1, 0x012960,1, 0x01295c,1, 0x012958,1, 0x012954,1, 0x012950,1, 0x01294c,1, 0x012948,1, 0x012944,1, 0x012940,1, 0x01293c,1, 0x012938,1, 0x012934,1, 0x012930,1, 0x01292c,1, 0x012928,1, 0x012924,1, 0x012920,1, 0x01291c,1, 0x012918,1, 0x012914,1, 0x012910,1, 0x01290c,1, 0x012908,1, 0x012904,1, 0x012900,1, 0x0128fc,1, 0x0128f8,1, 0x0128f4,1, 0x0128f0,1, 0x0128ec,1, 0x0128e8,1, 0x0128e4,1, 0x0128e0,1, 0x0128dc,1, 0x0128d8,1, 0x0128d4,1, 0x0128d0,1, 0x0128cc,1, 0x0128c8,1, 0x0128c4,1, 0x0128c0,1, 0x0128bc,1, 0x0128b8,1, 0x0128b4,1, 0x0128b0,1, 0x0128ac,1, 0x0128a8,1, 0x0128a4,1, 0x0128a0,1, 0x01289c,1, 0x012898,1, 0x012894,1, 0x012890,1, 0x01288c,1, 0x012888,1, 0x012884,1, 0x012880,1, 0x01287c,1, 0x012878,1, 0x012874,1, 0x012870,1, 0x01286c,1, 0x012868,1, 0x012864,1, 0x012860,1, 0x01285c,1, 0x012858,1, 0x012854,1, 0x012850,1, 0x01284c,1, 0x012848,1, 0x012844,1, 0x012840,1, 0x01283c,1, 0x012838,1, 0x012834,1, 0x012830,1, 0x01282c,1, 0x012828,1, 0x012824,1, 0x012820,1, 0x01281c,1, 0x012818,1, 0x012814,1, 0x012810,1, 0x01280c,1, 0x012808,1, 0x012804,1, 0x012800,1, 0x0127fc,1, 0x0127f8,1, 0x0127f4,1, 0x0127dc,1, 0x0127d4,1, 0x0127d0,1, 0x0127cc,1, 0x0127c8,1, 0x0127c4,1, 0x0127c0,1, 0x0127bc,1, 0x0127b8,1, 0x0127b4,1, 0x0127b0,1, 0x0127ac,1, 0x0127a8,1, 0x0127a0,1, 0x01279c,1, 0x012798,1, 0x012794,1, 0x012790,1, 0x01278c,1, 0x012788,1, 0x012784,1, 0x012780,1, 0x012694,1, 0x012690,1, 0x012680,1, 0x012630,1, 0x01262c,1, 0x012628,1, 0x012624,1, 0x012620,1, 0x01261c,1, 0x012618,1, 0x012614,1, 0x012610,1, 0x01260c,1, 0x012604,1, 0x012600,1, 0x0125fc,1, 0x0125f8,1, 0x0125f4,1, 0x0125ec,1, 0x0125e4,1, 0x0125e0,1, 0x0125dc,1, 0x0125d8,1, 0x0125d4,1, 0x0125cc,1, 0x0125c8,1, 0x0125c0,1, 0x0125b8,1, 0x0125b4,1, 0x0125b0,1, 0x0125a8,1, 0x0125a4,1, 0x0125a0,1, 0x012580,1, 0x01257c,1, 0x012578,1, 0x012574,1, 0x012570,1, 0x01256c,1, 0x012568,1, 0x012564,1, 0x012560,1, 0x01255c,1, 0x012558,1, 0x012554,1, 0x012550,1, 0x01254c,1, 0x012548,1, 0x012544,1, 0x012540,1, 0x012534,1, 0x012530,1, 0x012520,1, 0x012514,1, 0x012510,1, 0x012500,1, 0x0124ec,1, 0x0124e8,1, 0x0124e4,1, 0x0124e0,1, 0x0124dc,1, 0x0124d8,1, 0x0124d4,1, 0x0124d0,1, 0x0124cc,1, 0x0124c8,1, 0x012490,1, 0x01248c,1, 0x012488,1, 0x012484,1, 0x012480,1, 0x012468,1, 0x012450,1, 0x01244c,1, 0x012424,1, 0x012420,1, 0x01241c,1, 0x012418,1, 0x012414,1, 0x012410,1, 0x01240c,1, 0x012408,1, 0x012404,1, 0x012400,1, 0x012334,1, 0x012330,1, 0x012320,1, 0x012314,1, 0x012310,1, 0x012300,1, 0x012178,1, 0x012174,1, 0x012170,1, 0x01216c,1, 0x012168,1, 0x012164,1, 0x012160,1, 0x01215c,1, 0x012158,1, 0x012154,1, 0x012150,1, 0x01214c,1, 0x012148,1, 0x012144,1, 0x012140,1, 0x01213c,1, 0x012138,1, 0x012134,1, 0x012130,1, 0x01212c,1, 0x012128,1, 0x012124,1, 0x012120,1, 0x01211c,1, 0x012118,1, 0x012114,1, 0x012110,1, 0x01210c,1, 0x012108,1, 0x012104,1, 0x012100,1, 0x0120fc,1, 0x0120f8,1, 0x0120f4,1, 0x0120f0,1, 0x0120ec,1, 0x0120e8,1, 0x0120e4,1, 0x0120e0,1, 0x0120dc,1, 0x0120d8,1, 0x0120d4,1, 0x0120d0,1, 0x0120cc,1, 0x0120c8,1, 0x0120c4,1, 0x0120c0,1, 0x0120bc,1, 0x0120b8,1, 0x0120b4,1, 0x0120b0,1, 0x0120ac,1, 0x0120a8,1, 0x0120a4,1, 0x0120a0,1, 0x01209c,1, 0x012098,1, 0x012094,1, 0x012090,1, 0x01208c,1, 0x012088,1, 0x012084,1, 0x012080,1, 0x01207c,1, 0x012078,1, 0x012074,1, 0x012070,1, 0x01206c,1, 0x012068,1, 0x012064,1, 0x012060,1, 0x01205c,1, 0x012058,1, 0x012054,1, 0x012050,1, 0x01204c,1, 0x012048,1, 0x012044,1, 0x012040,1, 0x01203c,1, 0x012038,1, 0x012034,1, 0x012030,1, 0x01202c,1, 0x012028,1, 0x012024,1, 0x012020,1, 0x01201c,1, 0x012018,1, 0x012014,1, 0x012010,1, 0x01200c,1, 0x012008,1, 0x012004,1, 0x012000,1, 0x011ffc,1, 0x011ff8,1, 0x011ff4,1, 0x011fdc,1, 0x011fd4,1, 0x011fd0,1, 0x011fcc,1, 0x011fc8,1, 0x011fc4,1, 0x011fc0,1, 0x011fbc,1, 0x011fb8,1, 0x011fb4,1, 0x011fb0,1, 0x011fac,1, 0x011fa8,1, 0x011fa0,1, 0x011f9c,1, 0x011f98,1, 0x011f94,1, 0x011f90,1, 0x011f8c,1, 0x011f88,1, 0x011f84,1, 0x011f80,1, 0x011e94,1, 0x011e90,1, 0x011e80,1, 0x011e30,1, 0x011e2c,1, 0x011e28,1, 0x011e24,1, 0x011e20,1, 0x011e1c,1, 0x011e18,1, 0x011e14,1, 0x011e10,1, 0x011e0c,1, 0x011e04,1, 0x011e00,1, 0x011dfc,1, 0x011df8,1, 0x011df4,1, 0x011dec,1, 0x011de4,1, 0x011de0,1, 0x011ddc,1, 0x011dd8,1, 0x011dd4,1, 0x011dcc,1, 0x011dc8,1, 0x011dc0,1, 0x011db8,1, 0x011db4,1, 0x011db0,1, 0x011da8,1, 0x011da4,1, 0x011da0,1, 0x011d80,1, 0x011d7c,1, 0x011d78,1, 0x011d74,1, 0x011d70,1, 0x011d6c,1, 0x011d68,1, 0x011d64,1, 0x011d60,1, 0x011d5c,1, 0x011d58,1, 0x011d54,1, 0x011d50,1, 0x011d4c,1, 0x011d48,1, 0x011d44,1, 0x011d40,1, 0x011d34,1, 0x011d30,1, 0x011d20,1, 0x011d14,1, 0x011d10,1, 0x011d00,1, 0x011cec,1, 0x011ce8,1, 0x011ce4,1, 0x011ce0,1, 0x011cdc,1, 0x011cd8,1, 0x011cd4,1, 0x011cd0,1, 0x011ccc,1, 0x011cc8,1, 0x011c90,1, 0x011c8c,1, 0x011c88,1, 0x011c84,1, 0x011c80,1, 0x011c68,1, 0x011c50,1, 0x011c4c,1, 0x011c24,1, 0x011c20,1, 0x011c1c,1, 0x011c18,1, 0x011c14,1, 0x011c10,1, 0x011c0c,1, 0x011c08,1, 0x011c04,1, 0x011c00,1, 0x011b34,1, 0x011b30,1, 0x011b20,1, 0x011b14,1, 0x011b10,1, 0x011b00,1, 0x011978,1, 0x011974,1, 0x011970,1, 0x01196c,1, 0x011968,1, 0x011964,1, 0x011960,1, 0x01195c,1, 0x011958,1, 0x011954,1, 0x011950,1, 0x01194c,1, 0x011948,1, 0x011944,1, 0x011940,1, 0x01193c,1, 0x011938,1, 0x011934,1, 0x011930,1, 0x01192c,1, 0x011928,1, 0x011924,1, 0x011920,1, 0x01191c,1, 0x011918,1, 0x011914,1, 0x011910,1, 0x01190c,1, 0x011908,1, 0x011904,1, 0x011900,1, 0x0118fc,1, 0x0118f8,1, 0x0118f4,1, 0x0118f0,1, 0x0118ec,1, 0x0118e8,1, 0x0118e4,1, 0x0118e0,1, 0x0118dc,1, 0x0118d8,1, 0x0118d4,1, 0x0118d0,1, 0x0118cc,1, 0x0118c8,1, 0x0118c4,1, 0x0118c0,1, 0x0118bc,1, 0x0118b8,1, 0x0118b4,1, 0x0118b0,1, 0x0118ac,1, 0x0118a8,1, 0x0118a4,1, 0x0118a0,1, 0x01189c,1, 0x011898,1, 0x011894,1, 0x011890,1, 0x01188c,1, 0x011888,1, 0x011884,1, 0x011880,1, 0x01187c,1, 0x011878,1, 0x011874,1, 0x011870,1, 0x01186c,1, 0x011868,1, 0x011864,1, 0x011860,1, 0x01185c,1, 0x011858,1, 0x011854,1, 0x011850,1, 0x01184c,1, 0x011848,1, 0x011844,1, 0x011840,1, 0x01183c,1, 0x011838,1, 0x011834,1, 0x011830,1, 0x01182c,1, 0x011828,1, 0x011824,1, 0x011820,1, 0x01181c,1, 0x011818,1, 0x011814,1, 0x011810,1, 0x01180c,1, 0x011808,1, 0x011804,1, 0x011800,1, 0x0117fc,1, 0x0117f8,1, 0x0117f4,1, 0x0117dc,1, 0x0117d4,1, 0x0117d0,1, 0x0117cc,1, 0x0117c8,1, 0x0117c4,1, 0x0117c0,1, 0x0117bc,1, 0x0117b8,1, 0x0117b4,1, 0x0117b0,1, 0x0117ac,1, 0x0117a8,1, 0x0117a0,1, 0x01179c,1, 0x011798,1, 0x011794,1, 0x011790,1, 0x01178c,1, 0x011788,1, 0x011784,1, 0x011780,1, 0x011694,1, 0x011690,1, 0x011680,1, 0x011630,1, 0x01162c,1, 0x011628,1, 0x011624,1, 0x011620,1, 0x01161c,1, 0x011618,1, 0x011614,1, 0x011610,1, 0x01160c,1, 0x011604,1, 0x011600,1, 0x0115fc,1, 0x0115f8,1, 0x0115f4,1, 0x0115ec,1, 0x0115e4,1, 0x0115e0,1, 0x0115dc,1, 0x0115d8,1, 0x0115d4,1, 0x0115cc,1, 0x0115c8,1, 0x0115c0,1, 0x0115b8,1, 0x0115b4,1, 0x0115b0,1, 0x0115a8,1, 0x0115a4,1, 0x0115a0,1, 0x011580,1, 0x01157c,1, 0x011578,1, 0x011574,1, 0x011570,1, 0x01156c,1, 0x011568,1, 0x011564,1, 0x011560,1, 0x01155c,1, 0x011558,1, 0x011554,1, 0x011550,1, 0x01154c,1, 0x011548,1, 0x011544,1, 0x011540,1, 0x011534,1, 0x011530,1, 0x011520,1, 0x011514,1, 0x011510,1, 0x011500,1, 0x0114ec,1, 0x0114e8,1, 0x0114e4,1, 0x0114e0,1, 0x0114dc,1, 0x0114d8,1, 0x0114d4,1, 0x0114d0,1, 0x0114cc,1, 0x0114c8,1, 0x011490,1, 0x01148c,1, 0x011488,1, 0x011484,1, 0x011480,1, 0x011468,1, 0x011450,1, 0x01144c,1, 0x011424,1, 0x011420,1, 0x01141c,1, 0x011418,1, 0x011414,1, 0x011410,1, 0x01140c,1, 0x011408,1, 0x011404,1, 0x011400,1, 0x011334,1, 0x011330,1, 0x011320,1, 0x011314,1, 0x011310,1, 0x011300,1, 0x011178,1, 0x011174,1, 0x011170,1, 0x01116c,1, 0x011168,1, 0x011164,1, 0x011160,1, 0x01115c,1, 0x011158,1, 0x011154,1, 0x011150,1, 0x01114c,1, 0x011148,1, 0x011144,1, 0x011140,1, 0x01113c,1, 0x011138,1, 0x011134,1, 0x011130,1, 0x01112c,1, 0x011128,1, 0x011124,1, 0x011120,1, 0x01111c,1, 0x011118,1, 0x011114,1, 0x011110,1, 0x01110c,1, 0x011108,1, 0x011104,1, 0x011100,1, 0x0110fc,1, 0x0110f8,1, 0x0110f4,1, 0x0110f0,1, 0x0110ec,1, 0x0110e8,1, 0x0110e4,1, 0x0110e0,1, 0x0110dc,1, 0x0110d8,1, 0x0110d4,1, 0x0110d0,1, 0x0110cc,1, 0x0110c8,1, 0x0110c4,1, 0x0110c0,1, 0x0110bc,1, 0x0110b8,1, 0x0110b4,1, 0x0110b0,1, 0x0110ac,1, 0x0110a8,1, 0x0110a4,1, 0x0110a0,1, 0x01109c,1, 0x011098,1, 0x011094,1, 0x011090,1, 0x01108c,1, 0x011088,1, 0x011084,1, 0x011080,1, 0x01107c,1, 0x011078,1, 0x011074,1, 0x011070,1, 0x01106c,1, 0x011068,1, 0x011064,1, 0x011060,1, 0x01105c,1, 0x011058,1, 0x011054,1, 0x011050,1, 0x01104c,1, 0x011048,1, 0x011044,1, 0x011040,1, 0x01103c,1, 0x011038,1, 0x011034,1, 0x011030,1, 0x01102c,1, 0x011028,1, 0x011024,1, 0x011020,1, 0x01101c,1, 0x011018,1, 0x011014,1, 0x011010,1, 0x01100c,1, 0x011008,1, 0x011004,1, 0x011000,1, 0x010ffc,1, 0x010ff8,1, 0x010ff4,1, 0x010fdc,1, 0x010fd4,1, 0x010fd0,1, 0x010fcc,1, 0x010fc8,1, 0x010fc4,1, 0x010fc0,1, 0x010fbc,1, 0x010fb8,1, 0x010fb4,1, 0x010fb0,1, 0x010fac,1, 0x010fa8,1, 0x010fa0,1, 0x010f9c,1, 0x010f98,1, 0x010f94,1, 0x010f90,1, 0x010f8c,1, 0x010f88,1, 0x010f84,1, 0x010f80,1, 0x010e94,1, 0x010e90,1, 0x010e80,1, 0x010e30,1, 0x010e2c,1, 0x010e28,1, 0x010e24,1, 0x010e20,1, 0x010e1c,1, 0x010e18,1, 0x010e14,1, 0x010e10,1, 0x010e0c,1, 0x010e04,1, 0x010e00,1, 0x010dfc,1, 0x010df8,1, 0x010df4,1, 0x010dec,1, 0x010de4,1, 0x010de0,1, 0x010ddc,1, 0x010dd8,1, 0x010dd4,1, 0x010dcc,1, 0x010dc8,1, 0x010dc0,1, 0x010db8,1, 0x010db4,1, 0x010db0,1, 0x010da8,1, 0x010da4,1, 0x010da0,1, 0x010d80,1, 0x010d7c,1, 0x010d78,1, 0x010d74,1, 0x010d70,1, 0x010d6c,1, 0x010d68,1, 0x010d64,1, 0x010d60,1, 0x010d5c,1, 0x010d58,1, 0x010d54,1, 0x010d50,1, 0x010d4c,1, 0x010d48,1, 0x010d44,1, 0x010d40,1, 0x010d34,1, 0x010d30,1, 0x010d20,1, 0x010d14,1, 0x010d10,1, 0x010d00,1, 0x010cec,1, 0x010ce8,1, 0x010ce4,1, 0x010ce0,1, 0x010cdc,1, 0x010cd8,1, 0x010cd4,1, 0x010cd0,1, 0x010ccc,1, 0x010cc8,1, 0x010c90,1, 0x010c8c,1, 0x010c88,1, 0x010c84,1, 0x010c80,1, 0x010c68,1, 0x010c50,1, 0x010c4c,1, 0x010c24,1, 0x010c20,1, 0x010c1c,1, 0x010c18,1, 0x010c14,1, 0x010c10,1, 0x010c0c,1, 0x010c08,1, 0x010c04,1, 0x010c00,1, 0x010b34,1, 0x010b30,1, 0x010b20,1, 0x010b14,1, 0x010b10,1, 0x010b00,1, 0x010978,1, 0x010974,1, 0x010970,1, 0x01096c,1, 0x010968,1, 0x010964,1, 0x010960,1, 0x01095c,1, 0x010958,1, 0x010954,1, 0x010950,1, 0x01094c,1, 0x010948,1, 0x010944,1, 0x010940,1, 0x01093c,1, 0x010938,1, 0x010934,1, 0x010930,1, 0x01092c,1, 0x010928,1, 0x010924,1, 0x010920,1, 0x01091c,1, 0x010918,1, 0x010914,1, 0x010910,1, 0x01090c,1, 0x010908,1, 0x010904,1, 0x010900,1, 0x0108fc,1, 0x0108f8,1, 0x0108f4,1, 0x0108f0,1, 0x0108ec,1, 0x0108e8,1, 0x0108e4,1, 0x0108e0,1, 0x0108dc,1, 0x0108d8,1, 0x0108d4,1, 0x0108d0,1, 0x0108cc,1, 0x0108c8,1, 0x0108c4,1, 0x0108c0,1, 0x0108bc,1, 0x0108b8,1, 0x0108b4,1, 0x0108b0,1, 0x0108ac,1, 0x0108a8,1, 0x0108a4,1, 0x0108a0,1, 0x01089c,1, 0x010898,1, 0x010894,1, 0x010890,1, 0x01088c,1, 0x010888,1, 0x010884,1, 0x010880,1, 0x01087c,1, 0x010878,1, 0x010874,1, 0x010870,1, 0x01086c,1, 0x010868,1, 0x010864,1, 0x010860,1, 0x01085c,1, 0x010858,1, 0x010854,1, 0x010850,1, 0x01084c,1, 0x010848,1, 0x010844,1, 0x010840,1, 0x01083c,1, 0x010838,1, 0x010834,1, 0x010830,1, 0x01082c,1, 0x010828,1, 0x010824,1, 0x010820,1, 0x01081c,1, 0x010818,1, 0x010814,1, 0x010810,1, 0x01080c,1, 0x010808,1, 0x010804,1, 0x010800,1, 0x0107fc,1, 0x0107f8,1, 0x0107f4,1, 0x0107dc,1, 0x0107d4,1, 0x0107d0,1, 0x0107cc,1, 0x0107c8,1, 0x0107c4,1, 0x0107c0,1, 0x0107bc,1, 0x0107b8,1, 0x0107b4,1, 0x0107b0,1, 0x0107ac,1, 0x0107a8,1, 0x0107a0,1, 0x01079c,1, 0x010798,1, 0x010794,1, 0x010790,1, 0x01078c,1, 0x010788,1, 0x010784,1, 0x010780,1, 0x010694,1, 0x010690,1, 0x010680,1, 0x010630,1, 0x01062c,1, 0x010628,1, 0x010624,1, 0x010620,1, 0x01061c,1, 0x010618,1, 0x010614,1, 0x010610,1, 0x01060c,1, 0x010604,1, 0x010600,1, 0x0105fc,1, 0x0105f8,1, 0x0105f4,1, 0x0105ec,1, 0x0105e4,1, 0x0105e0,1, 0x0105dc,1, 0x0105d8,1, 0x0105d4,1, 0x0105cc,1, 0x0105c8,1, 0x0105c0,1, 0x0105b8,1, 0x0105b4,1, 0x0105b0,1, 0x0105a8,1, 0x0105a4,1, 0x0105a0,1, 0x010580,1, 0x01057c,1, 0x010578,1, 0x010574,1, 0x010570,1, 0x01056c,1, 0x010568,1, 0x010564,1, 0x010560,1, 0x01055c,1, 0x010558,1, 0x010554,1, 0x010550,1, 0x01054c,1, 0x010548,1, 0x010544,1, 0x010540,1, 0x010534,1, 0x010530,1, 0x010520,1, 0x010514,1, 0x010510,1, 0x010500,1, 0x0104ec,1, 0x0104e8,1, 0x0104e4,1, 0x0104e0,1, 0x0104dc,1, 0x0104d8,1, 0x0104d4,1, 0x0104d0,1, 0x0104cc,1, 0x0104c8,1, 0x010490,1, 0x01048c,1, 0x010488,1, 0x010484,1, 0x010480,1, 0x010468,1, 0x010450,1, 0x01044c,1, 0x010424,1, 0x010420,1, 0x01041c,1, 0x010418,1, 0x010414,1, 0x010410,1, 0x01040c,1, 0x010408,1, 0x010404,1, 0x010400,1, 0x010334,1, 0x010330,1, 0x010320,1, 0x010314,1, 0x010310,1, 0x010300,1, 0x010178,1, 0x010174,1, 0x010170,1, 0x01016c,1, 0x010168,1, 0x010164,1, 0x010160,1, 0x01015c,1, 0x010158,1, 0x010154,1, 0x010150,1, 0x01014c,1, 0x010148,1, 0x010144,1, 0x010140,1, 0x01013c,1, 0x010138,1, 0x010134,1, 0x010130,1, 0x01012c,1, 0x010128,1, 0x010124,1, 0x010120,1, 0x01011c,1, 0x010118,1, 0x010114,1, 0x010110,1, 0x01010c,1, 0x010108,1, 0x010104,1, 0x010100,1, 0x0100fc,1, 0x0100f8,1, 0x0100f4,1, 0x0100f0,1, 0x0100ec,1, 0x0100e8,1, 0x0100e4,1, 0x0100e0,1, 0x0100dc,1, 0x0100d8,1, 0x0100d4,1, 0x0100d0,1, 0x0100cc,1, 0x0100c8,1, 0x0100c4,1, 0x0100c0,1, 0x0100bc,1, 0x0100b8,1, 0x0100b4,1, 0x0100b0,1, 0x0100ac,1, 0x0100a8,1, 0x0100a4,1, 0x0100a0,1, 0x01009c,1, 0x010098,1, 0x010094,1, 0x010090,1, 0x01008c,1, 0x010088,1, 0x010084,1, 0x010080,1, 0x01007c,1, 0x010078,1, 0x010074,1, 0x010070,1, 0x01006c,1, 0x010068,1, 0x010064,1, 0x010060,1, 0x01005c,1, 0x010058,1, 0x010054,1, 0x010050,1, 0x01004c,1, 0x010048,1, 0x010044,1, 0x010040,1, 0x01003c,1, 0x010038,1, 0x010034,1, 0x010030,1, 0x01002c,1, 0x010028,1, 0x010024,1, 0x010020,1, 0x01001c,1, 0x010018,1, 0x010014,1, 0x010010,1, 0x01000c,1, 0x010008,1, 0x010004,1, 0x010000,1, 0x00d9f4,1, 0x00d9f0,1, 0x00d9d4,1, 0x00d9d0,1, 0x00d9c0,1, 0x00d9b4,1, 0x00d9b0,1, 0x00d9a0,1, 0x00d994,1, 0x00d990,1, 0x00d980,1, 0x00d974,1, 0x00d970,1, 0x00d960,1, 0x00d954,1, 0x00d950,1, 0x00d940,1, 0x00d928,1, 0x00d924,1, 0x00d920,1, 0x00d91c,1, 0x00d918,1, 0x00d914,1, 0x00d910,1, 0x00d90c,1, 0x00d908,1, 0x00d904,1, 0x00d900,1, 0x00d8d4,1, 0x00d8d0,1, 0x00d8cc,1, 0x00d8c8,1, 0x00d8c4,1, 0x00d8c0,1, 0x00d8ac,1, 0x00d870,1, 0x00d86c,1, 0x00d868,1, 0x00d864,1, 0x00d860,1, 0x00d85c,1, 0x00d858,1, 0x00d854,1, 0x00d850,1, 0x00d84c,1, 0x00d848,1, 0x00d844,1, 0x00d840,1, 0x00d83c,1, 0x00d838,1, 0x00d834,1, 0x00d830,1, 0x00d82c,1, 0x00d828,1, 0x00d824,1, 0x00d820,1, 0x00d814,1, 0x00d810,1, 0x00d800,1, 0x00bb0c,1, 0x00bb08,1, 0x00bb04,1, 0x00bb00,1, 0x00baf4,1, 0x00baf0,1, 0x00ba74,1, 0x00ba70,1, 0x00ba60,1, 0x00ba54,1, 0x00ba50,1, 0x00ba40,1, 0x00ba28,1, 0x00ba1c,1, 0x00ba18,1, 0x00ba0c,1, 0x00ba00,1, 0x00b934,1, 0x00b930,1, 0x00b924,1, 0x00b920,1, 0x00b914,1, 0x00b910,1, 0x00b904,1, 0x00b900,1, 0x00b8f4,1, 0x00b8f0,1, 0x00b8e4,1, 0x00b8e0,1, 0x00b8b4,1, 0x00b8b0,1, 0x00b8ac,1, 0x00b8a8,1, 0x00b8a4,1, 0x00b8a0,1, 0x00b894,1, 0x00b890,1, 0x00b88c,1, 0x00b888,1, 0x00b884,1, 0x00b880,1, 0x00b870,1, 0x00b83c,1, 0x00b838,1, 0x00b834,1, 0x00b830,1, 0x00b82c,1, 0x00b828,1, 0x00b824,1, 0x00b820,1, 0x00b814,1, 0x00b810,1, 0x00b800,1, 0x00b7bc,1, 0x00b7b8,1, 0x00b7b4,1, 0x00b7b0,1, 0x00b7a0,1, 0x00b79c,1, 0x00b798,1, 0x00b790,1, 0x00b78c,1, 0x00b788,1, 0x00b784,1, 0x00b780,1, 0x00b67c,1, 0x00b678,1, 0x00b674,1, 0x00b670,1, 0x00b66c,1, 0x00b668,1, 0x00b664,1, 0x00b660,1, 0x00b65c,1, 0x00b658,1, 0x00b654,1, 0x00b64c,1, 0x00b648,1, 0x00b644,1, 0x00b640,1, 0x00b62c,1, 0x00b628,1, 0x00b624,1, 0x00b620,1, 0x00b61c,1, 0x00b618,1, 0x00b614,1, 0x00b610,1, 0x00b60c,1, 0x00b608,1, 0x00b604,1, 0x00b600,1, 0x00b4a0,1, 0x00b49c,1, 0x00b498,1, 0x00b494,1, 0x00b490,1, 0x00b48c,1, 0x00b488,1, 0x00b484,1, 0x00b480,1, 0x00b47c,1, 0x00b478,1, 0x00b474,1, 0x00b470,1, 0x00b46c,1, 0x00b464,1, 0x00b45c,1, 0x00b458,1, 0x00b454,1, 0x00b450,1, 0x00b44c,1, 0x00b448,1, 0x00b444,1, 0x00b440,1, 0x00b43c,1, 0x00b438,1, 0x00b424,1, 0x00b420,1, 0x00b41c,1, 0x00b418,1, 0x00b414,1, 0x00b410,1, 0x00b40c,1, 0x00b408,1, 0x00b404,1, 0x00b400,1, 0x00b040,1, 0x00b000,1, 0x00affc,1, 0x00aff8,1, 0x00aff4,1, 0x00afdc,1, 0x00afd4,1, 0x00afd0,1, 0x00afcc,1, 0x00afc8,1, 0x00afc4,1, 0x00afc0,1, 0x00afbc,1, 0x00afb8,1, 0x00afb4,1, 0x00afb0,1, 0x00afac,1, 0x00afa8,1, 0x00afa0,1, 0x00af9c,1, 0x00af98,1, 0x00af94,1, 0x00af90,1, 0x00af8c,1, 0x00af88,1, 0x00af84,1, 0x00af80,1, 0x00ae94,1, 0x00ae90,1, 0x00ae80,1, 0x00ae30,1, 0x00ae2c,1, 0x00ae28,1, 0x00ae24,1, 0x00ae20,1, 0x00ae1c,1, 0x00ae18,1, 0x00ae14,1, 0x00ae10,1, 0x00ae0c,1, 0x00ae04,1, 0x00ae00,1, 0x00adfc,1, 0x00adf8,1, 0x00adf4,1, 0x00adec,1, 0x00ade4,1, 0x00ade0,1, 0x00addc,1, 0x00add8,1, 0x00add4,1, 0x00adcc,1, 0x00adc8,1, 0x00adc0,1, 0x00adb8,1, 0x00adb4,1, 0x00adb0,1, 0x00ada8,1, 0x00ada4,1, 0x00ada0,1, 0x00ad80,1, 0x00ad7c,1, 0x00ad78,1, 0x00ad74,1, 0x00ad70,1, 0x00ad6c,1, 0x00ad68,1, 0x00ad64,1, 0x00ad60,1, 0x00ad5c,1, 0x00ad58,1, 0x00ad54,1, 0x00ad50,1, 0x00ad4c,1, 0x00ad48,1, 0x00ad44,1, 0x00ad40,1, 0x00ad34,1, 0x00ad30,1, 0x00ad20,1, 0x00ad14,1, 0x00ad10,1, 0x00ad00,1, 0x00acec,1, 0x00ace8,1, 0x00ace4,1, 0x00ace0,1, 0x00acdc,1, 0x00acd8,1, 0x00acd4,1, 0x00acd0,1, 0x00accc,1, 0x00acc8,1, 0x00ac90,1, 0x00ac8c,1, 0x00ac88,1, 0x00ac84,1, 0x00ac80,1, 0x00ac68,1, 0x00ac50,1, 0x00ac4c,1, 0x00ac24,1, 0x00ac20,1, 0x00ac1c,1, 0x00ac18,1, 0x00ac14,1, 0x00ac10,1, 0x00ac0c,1, 0x00ac08,1, 0x00ac04,1, 0x00ac00,1, 0x00ab34,1, 0x00ab30,1, 0x00ab20,1, 0x00ab14,1, 0x00ab10,1, 0x00ab00,1, 0x00a978,1, 0x00a974,1, 0x00a970,1, 0x00a96c,1, 0x00a968,1, 0x00a964,1, 0x00a960,1, 0x00a95c,1, 0x00a958,1, 0x00a954,1, 0x00a950,1, 0x00a94c,1, 0x00a948,1, 0x00a944,1, 0x00a940,1, 0x00a93c,1, 0x00a938,1, 0x00a934,1, 0x00a930,1, 0x00a92c,1, 0x00a928,1, 0x00a924,1, 0x00a920,1, 0x00a91c,1, 0x00a918,1, 0x00a914,1, 0x00a910,1, 0x00a90c,1, 0x00a908,1, 0x00a904,1, 0x00a900,1, 0x00a8fc,1, 0x00a8f8,1, 0x00a8f4,1, 0x00a8f0,1, 0x00a8ec,1, 0x00a8e8,1, 0x00a8e4,1, 0x00a8e0,1, 0x00a8dc,1, 0x00a8d8,1, 0x00a8d4,1, 0x00a8d0,1, 0x00a8cc,1, 0x00a8c8,1, 0x00a8c4,1, 0x00a8c0,1, 0x00a8bc,1, 0x00a8b8,1, 0x00a8b4,1, 0x00a8b0,1, 0x00a8ac,1, 0x00a8a8,1, 0x00a8a4,1, 0x00a8a0,1, 0x00a89c,1, 0x00a898,1, 0x00a894,1, 0x00a890,1, 0x00a88c,1, 0x00a888,1, 0x00a884,1, 0x00a880,1, 0x00a87c,1, 0x00a878,1, 0x00a874,1, 0x00a870,1, 0x00a86c,1, 0x00a868,1, 0x00a864,1, 0x00a860,1, 0x00a85c,1, 0x00a858,1, 0x00a854,1, 0x00a850,1, 0x00a84c,1, 0x00a848,1, 0x00a844,1, 0x00a840,1, 0x00a83c,1, 0x00a838,1, 0x00a834,1, 0x00a830,1, 0x00a82c,1, 0x00a828,1, 0x00a824,1, 0x00a820,1, 0x00a81c,1, 0x00a818,1, 0x00a814,1, 0x00a810,1, 0x00a80c,1, 0x00a808,1, 0x00a804,1, 0x00a800,1, 0x00a7fc,1, 0x00a7f8,1, 0x00a7f4,1, 0x00a7dc,1, 0x00a7d4,1, 0x00a7d0,1, 0x00a7cc,1, 0x00a7c8,1, 0x00a7c4,1, 0x00a7c0,1, 0x00a7bc,1, 0x00a7b8,1, 0x00a7b4,1, 0x00a7b0,1, 0x00a7ac,1, 0x00a7a8,1, 0x00a7a0,1, 0x00a79c,1, 0x00a798,1, 0x00a794,1, 0x00a790,1, 0x00a78c,1, 0x00a788,1, 0x00a784,1, 0x00a780,1, 0x00a694,1, 0x00a690,1, 0x00a680,1, 0x00a630,1, 0x00a62c,1, 0x00a628,1, 0x00a624,1, 0x00a620,1, 0x00a61c,1, 0x00a618,1, 0x00a614,1, 0x00a610,1, 0x00a60c,1, 0x00a604,1, 0x00a600,1, 0x00a5fc,1, 0x00a5f8,1, 0x00a5f4,1, 0x00a5ec,1, 0x00a5e4,1, 0x00a5e0,1, 0x00a5dc,1, 0x00a5d8,1, 0x00a5d4,1, 0x00a5cc,1, 0x00a5c8,1, 0x00a5c0,1, 0x00a5b8,1, 0x00a5b4,1, 0x00a5b0,1, 0x00a5a8,1, 0x00a5a4,1, 0x00a5a0,1, 0x00a580,1, 0x00a57c,1, 0x00a578,1, 0x00a574,1, 0x00a570,1, 0x00a56c,1, 0x00a568,1, 0x00a564,1, 0x00a560,1, 0x00a55c,1, 0x00a558,1, 0x00a554,1, 0x00a550,1, 0x00a54c,1, 0x00a548,1, 0x00a544,1, 0x00a540,1, 0x00a534,1, 0x00a530,1, 0x00a520,1, 0x00a514,1, 0x00a510,1, 0x00a500,1, 0x00a4ec,1, 0x00a4e8,1, 0x00a4e4,1, 0x00a4e0,1, 0x00a4dc,1, 0x00a4d8,1, 0x00a4d4,1, 0x00a4d0,1, 0x00a4cc,1, 0x00a4c8,1, 0x00a490,1, 0x00a48c,1, 0x00a488,1, 0x00a484,1, 0x00a480,1, 0x00a468,1, 0x00a450,1, 0x00a44c,1, 0x00a424,1, 0x00a420,1, 0x00a41c,1, 0x00a418,1, 0x00a414,1, 0x00a410,1, 0x00a40c,1, 0x00a408,1, 0x00a404,1, 0x00a400,1, 0x00a334,1, 0x00a330,1, 0x00a320,1, 0x00a314,1, 0x00a310,1, 0x00a300,1, 0x00a178,1, 0x00a174,1, 0x00a170,1, 0x00a16c,1, 0x00a168,1, 0x00a164,1, 0x00a160,1, 0x00a15c,1, 0x00a158,1, 0x00a154,1, 0x00a150,1, 0x00a14c,1, 0x00a148,1, 0x00a144,1, 0x00a140,1, 0x00a13c,1, 0x00a138,1, 0x00a134,1, 0x00a130,1, 0x00a12c,1, 0x00a128,1, 0x00a124,1, 0x00a120,1, 0x00a11c,1, 0x00a118,1, 0x00a114,1, 0x00a110,1, 0x00a10c,1, 0x00a108,1, 0x00a104,1, 0x00a100,1, 0x00a0fc,1, 0x00a0f8,1, 0x00a0f4,1, 0x00a0f0,1, 0x00a0ec,1, 0x00a0e8,1, 0x00a0e4,1, 0x00a0e0,1, 0x00a0dc,1, 0x00a0d8,1, 0x00a0d4,1, 0x00a0d0,1, 0x00a0cc,1, 0x00a0c8,1, 0x00a0c4,1, 0x00a0c0,1, 0x00a0bc,1, 0x00a0b8,1, 0x00a0b4,1, 0x00a0b0,1, 0x00a0ac,1, 0x00a0a8,1, 0x00a0a4,1, 0x00a0a0,1, 0x00a09c,1, 0x00a098,1, 0x00a094,1, 0x00a090,1, 0x00a08c,1, 0x00a088,1, 0x00a084,1, 0x00a080,1, 0x00a07c,1, 0x00a078,1, 0x00a074,1, 0x00a070,1, 0x00a06c,1, 0x00a068,1, 0x00a064,1, 0x00a060,1, 0x00a05c,1, 0x00a058,1, 0x00a054,1, 0x00a050,1, 0x00a04c,1, 0x00a048,1, 0x00a044,1, 0x00a040,1, 0x00a03c,1, 0x00a038,1, 0x00a034,1, 0x00a030,1, 0x00a02c,1, 0x00a028,1, 0x00a024,1, 0x00a020,1, 0x00a01c,1, 0x00a018,1, 0x00a014,1, 0x00a010,1, 0x00a00c,1, 0x00a008,1, 0x00a004,1, 0x00a000,1, 0x009ffc,1, 0x009ff8,1, 0x009ff4,1, 0x009fdc,1, 0x009fd4,1, 0x009fd0,1, 0x009fcc,1, 0x009fc8,1, 0x009fc4,1, 0x009fc0,1, 0x009fbc,1, 0x009fb8,1, 0x009fb4,1, 0x009fb0,1, 0x009fac,1, 0x009fa8,1, 0x009fa0,1, 0x009f9c,1, 0x009f98,1, 0x009f94,1, 0x009f90,1, 0x009f8c,1, 0x009f88,1, 0x009f84,1, 0x009f80,1, 0x009e94,1, 0x009e90,1, 0x009e80,1, 0x009e30,1, 0x009e2c,1, 0x009e28,1, 0x009e24,1, 0x009e20,1, 0x009e1c,1, 0x009e18,1, 0x009e14,1, 0x009e10,1, 0x009e0c,1, 0x009e04,1, 0x009e00,1, 0x009dfc,1, 0x009df8,1, 0x009df4,1, 0x009dec,1, 0x009de4,1, 0x009de0,1, 0x009ddc,1, 0x009dd8,1, 0x009dd4,1, 0x009dcc,1, 0x009dc8,1, 0x009dc0,1, 0x009db8,1, 0x009db4,1, 0x009db0,1, 0x009da8,1, 0x009da4,1, 0x009da0,1, 0x009d80,1, 0x009d7c,1, 0x009d78,1, 0x009d74,1, 0x009d70,1, 0x009d6c,1, 0x009d68,1, 0x009d64,1, 0x009d60,1, 0x009d5c,1, 0x009d58,1, 0x009d54,1, 0x009d50,1, 0x009d4c,1, 0x009d48,1, 0x009d44,1, 0x009d40,1, 0x009d34,1, 0x009d30,1, 0x009d20,1, 0x009d14,1, 0x009d10,1, 0x009d00,1, 0x009cec,1, 0x009ce8,1, 0x009ce4,1, 0x009ce0,1, 0x009cdc,1, 0x009cd8,1, 0x009cd4,1, 0x009cd0,1, 0x009ccc,1, 0x009cc8,1, 0x009c90,1, 0x009c8c,1, 0x009c88,1, 0x009c84,1, 0x009c80,1, 0x009c68,1, 0x009c50,1, 0x009c4c,1, 0x009c24,1, 0x009c20,1, 0x009c1c,1, 0x009c18,1, 0x009c14,1, 0x009c10,1, 0x009c0c,1, 0x009c08,1, 0x009c04,1, 0x009c00,1, 0x009b34,1, 0x009b30,1, 0x009b20,1, 0x009b14,1, 0x009b10,1, 0x009b00,1, 0x009978,1, 0x009974,1, 0x009970,1, 0x00996c,1, 0x009968,1, 0x009964,1, 0x009960,1, 0x00995c,1, 0x009958,1, 0x009954,1, 0x009950,1, 0x00994c,1, 0x009948,1, 0x009944,1, 0x009940,1, 0x00993c,1, 0x009938,1, 0x009934,1, 0x009930,1, 0x00992c,1, 0x009928,1, 0x009924,1, 0x009920,1, 0x00991c,1, 0x009918,1, 0x009914,1, 0x009910,1, 0x00990c,1, 0x009908,1, 0x009904,1, 0x009900,1, 0x0098fc,1, 0x0098f8,1, 0x0098f4,1, 0x0098f0,1, 0x0098ec,1, 0x0098e8,1, 0x0098e4,1, 0x0098e0,1, 0x0098dc,1, 0x0098d8,1, 0x0098d4,1, 0x0098d0,1, 0x0098cc,1, 0x0098c8,1, 0x0098c4,1, 0x0098c0,1, 0x0098bc,1, 0x0098b8,1, 0x0098b4,1, 0x0098b0,1, 0x0098ac,1, 0x0098a8,1, 0x0098a4,1, 0x0098a0,1, 0x00989c,1, 0x009898,1, 0x009894,1, 0x009890,1, 0x00988c,1, 0x009888,1, 0x009884,1, 0x009880,1, 0x00987c,1, 0x009878,1, 0x009874,1, 0x009870,1, 0x00986c,1, 0x009868,1, 0x009864,1, 0x009860,1, 0x00985c,1, 0x009858,1, 0x009854,1, 0x009850,1, 0x00984c,1, 0x009848,1, 0x009844,1, 0x009840,1, 0x00983c,1, 0x009838,1, 0x009834,1, 0x009830,1, 0x00982c,1, 0x009828,1, 0x009824,1, 0x009820,1, 0x00981c,1, 0x009818,1, 0x009814,1, 0x009810,1, 0x00980c,1, 0x009808,1, 0x009804,1, 0x009800,1, 0x0097fc,1, 0x0097f8,1, 0x0097f4,1, 0x0097dc,1, 0x0097d4,1, 0x0097d0,1, 0x0097cc,1, 0x0097c8,1, 0x0097c4,1, 0x0097c0,1, 0x0097bc,1, 0x0097b8,1, 0x0097b4,1, 0x0097b0,1, 0x0097ac,1, 0x0097a8,1, 0x0097a0,1, 0x00979c,1, 0x009798,1, 0x009794,1, 0x009790,1, 0x00978c,1, 0x009788,1, 0x009784,1, 0x009780,1, 0x009694,1, 0x009690,1, 0x009680,1, 0x009630,1, 0x00962c,1, 0x009628,1, 0x009624,1, 0x009620,1, 0x00961c,1, 0x009618,1, 0x009614,1, 0x009610,1, 0x00960c,1, 0x009604,1, 0x009600,1, 0x0095fc,1, 0x0095f8,1, 0x0095f4,1, 0x0095ec,1, 0x0095e4,1, 0x0095e0,1, 0x0095dc,1, 0x0095d8,1, 0x0095d4,1, 0x0095cc,1, 0x0095c8,1, 0x0095c0,1, 0x0095b8,1, 0x0095b4,1, 0x0095b0,1, 0x0095a8,1, 0x0095a4,1, 0x0095a0,1, 0x009580,1, 0x00957c,1, 0x009578,1, 0x009574,1, 0x009570,1, 0x00956c,1, 0x009568,1, 0x009564,1, 0x009560,1, 0x00955c,1, 0x009558,1, 0x009554,1, 0x009550,1, 0x00954c,1, 0x009548,1, 0x009544,1, 0x009540,1, 0x009534,1, 0x009530,1, 0x009520,1, 0x009514,1, 0x009510,1, 0x009500,1, 0x0094ec,1, 0x0094e8,1, 0x0094e4,1, 0x0094e0,1, 0x0094dc,1, 0x0094d8,1, 0x0094d4,1, 0x0094d0,1, 0x0094cc,1, 0x0094c8,1, 0x009490,1, 0x00948c,1, 0x009488,1, 0x009484,1, 0x009480,1, 0x009468,1, 0x009450,1, 0x00944c,1, 0x009424,1, 0x009420,1, 0x00941c,1, 0x009418,1, 0x009414,1, 0x009410,1, 0x00940c,1, 0x009408,1, 0x009404,1, 0x009400,1, 0x009334,1, 0x009330,1, 0x009320,1, 0x009314,1, 0x009310,1, 0x009300,1, 0x009178,1, 0x009174,1, 0x009170,1, 0x00916c,1, 0x009168,1, 0x009164,1, 0x009160,1, 0x00915c,1, 0x009158,1, 0x009154,1, 0x009150,1, 0x00914c,1, 0x009148,1, 0x009144,1, 0x009140,1, 0x00913c,1, 0x009138,1, 0x009134,1, 0x009130,1, 0x00912c,1, 0x009128,1, 0x009124,1, 0x009120,1, 0x00911c,1, 0x009118,1, 0x009114,1, 0x009110,1, 0x00910c,1, 0x009108,1, 0x009104,1, 0x009100,1, 0x0090fc,1, 0x0090f8,1, 0x0090f4,1, 0x0090f0,1, 0x0090ec,1, 0x0090e8,1, 0x0090e4,1, 0x0090e0,1, 0x0090dc,1, 0x0090d8,1, 0x0090d4,1, 0x0090d0,1, 0x0090cc,1, 0x0090c8,1, 0x0090c4,1, 0x0090c0,1, 0x0090bc,1, 0x0090b8,1, 0x0090b4,1, 0x0090b0,1, 0x0090ac,1, 0x0090a8,1, 0x0090a4,1, 0x0090a0,1, 0x00909c,1, 0x009098,1, 0x009094,1, 0x009090,1, 0x00908c,1, 0x009088,1, 0x009084,1, 0x009080,1, 0x00907c,1, 0x009078,1, 0x009074,1, 0x009070,1, 0x00906c,1, 0x009068,1, 0x009064,1, 0x009060,1, 0x00905c,1, 0x009058,1, 0x009054,1, 0x009050,1, 0x00904c,1, 0x009048,1, 0x009044,1, 0x009040,1, 0x00903c,1, 0x009038,1, 0x009034,1, 0x009030,1, 0x00902c,1, 0x009028,1, 0x009024,1, 0x009020,1, 0x00901c,1, 0x009018,1, 0x009014,1, 0x009010,1, 0x00900c,1, 0x009008,1, 0x009004,1, 0x009000,1, 0x008ffc,1, 0x008ff8,1, 0x008ff4,1, 0x008fdc,1, 0x008fd4,1, 0x008fd0,1, 0x008fcc,1, 0x008fc8,1, 0x008fc4,1, 0x008fc0,1, 0x008fbc,1, 0x008fb8,1, 0x008fb4,1, 0x008fb0,1, 0x008fac,1, 0x008fa8,1, 0x008fa0,1, 0x008f9c,1, 0x008f98,1, 0x008f94,1, 0x008f90,1, 0x008f8c,1, 0x008f88,1, 0x008f84,1, 0x008f80,1, 0x008e94,1, 0x008e90,1, 0x008e80,1, 0x008e30,1, 0x008e2c,1, 0x008e28,1, 0x008e24,1, 0x008e20,1, 0x008e1c,1, 0x008e18,1, 0x008e14,1, 0x008e10,1, 0x008e0c,1, 0x008e04,1, 0x008e00,1, 0x008dfc,1, 0x008df8,1, 0x008df4,1, 0x008dec,1, 0x008de4,1, 0x008de0,1, 0x008ddc,1, 0x008dd8,1, 0x008dd4,1, 0x008dcc,1, 0x008dc8,1, 0x008dc0,1, 0x008db8,1, 0x008db4,1, 0x008db0,1, 0x008da8,1, 0x008da4,1, 0x008da0,1, 0x008d80,1, 0x008d7c,1, 0x008d78,1, 0x008d74,1, 0x008d70,1, 0x008d6c,1, 0x008d68,1, 0x008d64,1, 0x008d60,1, 0x008d5c,1, 0x008d58,1, 0x008d54,1, 0x008d50,1, 0x008d4c,1, 0x008d48,1, 0x008d44,1, 0x008d40,1, 0x008d34,1, 0x008d30,1, 0x008d20,1, 0x008d14,1, 0x008d10,1, 0x008d00,1, 0x008cec,1, 0x008ce8,1, 0x008ce4,1, 0x008ce0,1, 0x008cdc,1, 0x008cd8,1, 0x008cd4,1, 0x008cd0,1, 0x008ccc,1, 0x008cc8,1, 0x008c90,1, 0x008c8c,1, 0x008c88,1, 0x008c84,1, 0x008c80,1, 0x008c68,1, 0x008c50,1, 0x008c4c,1, 0x008c24,1, 0x008c20,1, 0x008c1c,1, 0x008c18,1, 0x008c14,1, 0x008c10,1, 0x008c0c,1, 0x008c08,1, 0x008c04,1, 0x008c00,1, 0x008b34,1, 0x008b30,1, 0x008b20,1, 0x008b14,1, 0x008b10,1, 0x008b00,1, 0x008978,1, 0x008974,1, 0x008970,1, 0x00896c,1, 0x008968,1, 0x008964,1, 0x008960,1, 0x00895c,1, 0x008958,1, 0x008954,1, 0x008950,1, 0x00894c,1, 0x008948,1, 0x008944,1, 0x008940,1, 0x00893c,1, 0x008938,1, 0x008934,1, 0x008930,1, 0x00892c,1, 0x008928,1, 0x008924,1, 0x008920,1, 0x00891c,1, 0x008918,1, 0x008914,1, 0x008910,1, 0x00890c,1, 0x008908,1, 0x008904,1, 0x008900,1, 0x0088fc,1, 0x0088f8,1, 0x0088f4,1, 0x0088f0,1, 0x0088ec,1, 0x0088e8,1, 0x0088e4,1, 0x0088e0,1, 0x0088dc,1, 0x0088d8,1, 0x0088d4,1, 0x0088d0,1, 0x0088cc,1, 0x0088c8,1, 0x0088c4,1, 0x0088c0,1, 0x0088bc,1, 0x0088b8,1, 0x0088b4,1, 0x0088b0,1, 0x0088ac,1, 0x0088a8,1, 0x0088a4,1, 0x0088a0,1, 0x00889c,1, 0x008898,1, 0x008894,1, 0x008890,1, 0x00888c,1, 0x008888,1, 0x008884,1, 0x008880,1, 0x00887c,1, 0x008878,1, 0x008874,1, 0x008870,1, 0x00886c,1, 0x008868,1, 0x008864,1, 0x008860,1, 0x00885c,1, 0x008858,1, 0x008854,1, 0x008850,1, 0x00884c,1, 0x008848,1, 0x008844,1, 0x008840,1, 0x00883c,1, 0x008838,1, 0x008834,1, 0x008830,1, 0x00882c,1, 0x008828,1, 0x008824,1, 0x008820,1, 0x00881c,1, 0x008818,1, 0x008814,1, 0x008810,1, 0x00880c,1, 0x008808,1, 0x008804,1, 0x008800,1, 0x0087fc,1, 0x0087f8,1, 0x0087f4,1, 0x0087dc,1, 0x0087d4,1, 0x0087d0,1, 0x0087cc,1, 0x0087c8,1, 0x0087c4,1, 0x0087c0,1, 0x0087bc,1, 0x0087b8,1, 0x0087b4,1, 0x0087b0,1, 0x0087ac,1, 0x0087a8,1, 0x0087a0,1, 0x00879c,1, 0x008798,1, 0x008794,1, 0x008790,1, 0x00878c,1, 0x008788,1, 0x008784,1, 0x008780,1, 0x008694,1, 0x008690,1, 0x008680,1, 0x008630,1, 0x00862c,1, 0x008628,1, 0x008624,1, 0x008620,1, 0x00861c,1, 0x008618,1, 0x008614,1, 0x008610,1, 0x00860c,1, 0x008604,1, 0x008600,1, 0x0085fc,1, 0x0085f8,1, 0x0085f4,1, 0x0085ec,1, 0x0085e4,1, 0x0085e0,1, 0x0085dc,1, 0x0085d8,1, 0x0085d4,1, 0x0085cc,1, 0x0085c8,1, 0x0085c0,1, 0x0085b8,1, 0x0085b4,1, 0x0085b0,1, 0x0085a8,1, 0x0085a4,1, 0x0085a0,1, 0x008580,1, 0x00857c,1, 0x008578,1, 0x008574,1, 0x008570,1, 0x00856c,1, 0x008568,1, 0x008564,1, 0x008560,1, 0x00855c,1, 0x008558,1, 0x008554,1, 0x008550,1, 0x00854c,1, 0x008548,1, 0x008544,1, 0x008540,1, 0x008534,1, 0x008530,1, 0x008520,1, 0x008514,1, 0x008510,1, 0x008500,1, 0x0084ec,1, 0x0084e8,1, 0x0084e4,1, 0x0084e0,1, 0x0084dc,1, 0x0084d8,1, 0x0084d4,1, 0x0084d0,1, 0x0084cc,1, 0x0084c8,1, 0x008490,1, 0x00848c,1, 0x008488,1, 0x008484,1, 0x008480,1, 0x008468,1, 0x008450,1, 0x00844c,1, 0x008424,1, 0x008420,1, 0x00841c,1, 0x008418,1, 0x008414,1, 0x008410,1, 0x00840c,1, 0x008408,1, 0x008404,1, 0x008400,1, 0x008334,1, 0x008330,1, 0x008320,1, 0x008314,1, 0x008310,1, 0x008300,1, 0x008178,1, 0x008174,1, 0x008170,1, 0x00816c,1, 0x008168,1, 0x008164,1, 0x008160,1, 0x00815c,1, 0x008158,1, 0x008154,1, 0x008150,1, 0x00814c,1, 0x008148,1, 0x008144,1, 0x008140,1, 0x00813c,1, 0x008138,1, 0x008134,1, 0x008130,1, 0x00812c,1, 0x008128,1, 0x008124,1, 0x008120,1, 0x00811c,1, 0x008118,1, 0x008114,1, 0x008110,1, 0x00810c,1, 0x008108,1, 0x008104,1, 0x008100,1, 0x0080fc,1, 0x0080f8,1, 0x0080f4,1, 0x0080f0,1, 0x0080ec,1, 0x0080e8,1, 0x0080e4,1, 0x0080e0,1, 0x0080dc,1, 0x0080d8,1, 0x0080d4,1, 0x0080d0,1, 0x0080cc,1, 0x0080c8,1, 0x0080c4,1, 0x0080c0,1, 0x0080bc,1, 0x0080b8,1, 0x0080b4,1, 0x0080b0,1, 0x0080ac,1, 0x0080a8,1, 0x0080a4,1, 0x0080a0,1, 0x00809c,1, 0x008098,1, 0x008094,1, 0x008090,1, 0x00808c,1, 0x008088,1, 0x008084,1, 0x008080,1, 0x00807c,1, 0x008078,1, 0x008074,1, 0x008070,1, 0x00806c,1, 0x008068,1, 0x008064,1, 0x008060,1, 0x00805c,1, 0x008058,1, 0x008054,1, 0x008050,1, 0x00804c,1, 0x008048,1, 0x008044,1, 0x008040,1, 0x00803c,1, 0x008038,1, 0x008034,1, 0x008030,1, 0x00802c,1, 0x008028,1, 0x008024,1, 0x008020,1, 0x00801c,1, 0x008018,1, 0x008014,1, 0x008010,1, 0x00800c,1, 0x008008,1, 0x008004,1, 0x008000,1, 0x0059f4,1, 0x0059f0,1, 0x0059d4,1, 0x0059d0,1, 0x0059c0,1, 0x0059b4,1, 0x0059b0,1, 0x0059a0,1, 0x005994,1, 0x005990,1, 0x005980,1, 0x005974,1, 0x005970,1, 0x005960,1, 0x005954,1, 0x005950,1, 0x005940,1, 0x005928,1, 0x005924,1, 0x005920,1, 0x00591c,1, 0x005918,1, 0x005914,1, 0x005910,1, 0x00590c,1, 0x005908,1, 0x005904,1, 0x005900,1, 0x0058d4,1, 0x0058d0,1, 0x0058cc,1, 0x0058c8,1, 0x0058c4,1, 0x0058c0,1, 0x0058ac,1, 0x005870,1, 0x00586c,1, 0x005868,1, 0x005864,1, 0x005860,1, 0x00585c,1, 0x005858,1, 0x005854,1, 0x005850,1, 0x00584c,1, 0x005848,1, 0x005844,1, 0x005840,1, 0x00583c,1, 0x005838,1, 0x005834,1, 0x005830,1, 0x00582c,1, 0x005828,1, 0x005824,1, 0x005820,1, 0x005814,1, 0x005810,1, 0x005800,1, 0x003b0c,1, 0x003b08,1, 0x003b04,1, 0x003b00,1, 0x003af4,1, 0x003af0,1, 0x003a74,1, 0x003a70,1, 0x003a60,1, 0x003a54,1, 0x003a50,1, 0x003a40,1, 0x003a28,1, 0x003a1c,1, 0x003a18,1, 0x003a0c,1, 0x003a00,1, 0x003934,1, 0x003930,1, 0x003924,1, 0x003920,1, 0x003914,1, 0x003910,1, 0x003904,1, 0x003900,1, 0x0038f4,1, 0x0038f0,1, 0x0038e4,1, 0x0038e0,1, 0x0038b4,1, 0x0038b0,1, 0x0038ac,1, 0x0038a8,1, 0x0038a4,1, 0x0038a0,1, 0x003894,1, 0x003890,1, 0x00388c,1, 0x003888,1, 0x003884,1, 0x003880,1, 0x003870,1, 0x00383c,1, 0x003838,1, 0x003834,1, 0x003830,1, 0x00382c,1, 0x003828,1, 0x003824,1, 0x003820,1, 0x003814,1, 0x003810,1, 0x003800,1, 0x0037bc,1, 0x0037b8,1, 0x0037b4,1, 0x00367c,1, 0x003678,1, 0x003674,1, 0x003670,1, 0x00366c,1, 0x003668,1, 0x003664,1, 0x003660,1, 0x00365c,1, 0x003658,1, 0x003654,1, 0x00364c,1, 0x003648,1, 0x003644,1, 0x003640,1, 0x00362c,1, 0x003628,1, 0x003624,1, 0x003620,1, 0x00361c,1, 0x003618,1, 0x003614,1, 0x003610,1, 0x00360c,1, 0x003608,1, 0x003604,1, 0x003600,1, 0x0034a0,1, 0x00349c,1, 0x003498,1, 0x003494,1, 0x003490,1, 0x00348c,1, 0x003488,1, 0x003484,1, 0x003480,1, 0x00347c,1, 0x003478,1, 0x003474,1, 0x003470,1, 0x00346c,1, 0x003464,1, 0x00345c,1, 0x003458,1, 0x003454,1, 0x003450,1, 0x00344c,1, 0x003448,1, 0x003444,1, 0x003440,1, 0x00343c,1, 0x003438,1, 0x003424,1, 0x003420,1, 0x00341c,1, 0x003418,1, 0x003414,1, 0x003410,1, 0x00340c,1, 0x003408,1, 0x003404,1, 0x003400,1, 0x003040,1, 0x003000,1, 0x002ffc,1, 0x002ff8,1, 0x002ff4,1, 0x002fdc,1, 0x002fd4,1, 0x002fd0,1, 0x002fcc,1, 0x002fc8,1, 0x002fc4,1, 0x002fc0,1, 0x002fbc,1, 0x002fb8,1, 0x002fb4,1, 0x002fb0,1, 0x002fac,1, 0x002fa8,1, 0x002fa0,1, 0x002f9c,1, 0x002f98,1, 0x002f94,1, 0x002f90,1, 0x002f8c,1, 0x002f88,1, 0x002f84,1, 0x002f80,1, 0x002e94,1, 0x002e90,1, 0x002e80,1, 0x002e30,1, 0x002e2c,1, 0x002e28,1, 0x002e24,1, 0x002e20,1, 0x002e1c,1, 0x002e18,1, 0x002e14,1, 0x002e10,1, 0x002e0c,1, 0x002e04,1, 0x002e00,1, 0x002dfc,1, 0x002df8,1, 0x002df4,1, 0x002dec,1, 0x002de4,1, 0x002de0,1, 0x002ddc,1, 0x002dd8,1, 0x002dd4,1, 0x002dcc,1, 0x002dc8,1, 0x002dc0,1, 0x002db8,1, 0x002db4,1, 0x002db0,1, 0x002da8,1, 0x002da4,1, 0x002da0,1, 0x002d80,1, 0x002d7c,1, 0x002d78,1, 0x002d74,1, 0x002d70,1, 0x002d6c,1, 0x002d68,1, 0x002d64,1, 0x002d60,1, 0x002d5c,1, 0x002d58,1, 0x002d54,1, 0x002d50,1, 0x002d4c,1, 0x002d48,1, 0x002d44,1, 0x002d40,1, 0x002d34,1, 0x002d30,1, 0x002d20,1, 0x002d14,1, 0x002d10,1, 0x002d00,1, 0x002cec,1, 0x002ce8,1, 0x002ce4,1, 0x002ce0,1, 0x002cdc,1, 0x002cd8,1, 0x002cd4,1, 0x002cd0,1, 0x002ccc,1, 0x002cc8,1, 0x002c90,1, 0x002c8c,1, 0x002c88,1, 0x002c84,1, 0x002c80,1, 0x002c68,1, 0x002c50,1, 0x002c4c,1, 0x002c24,1, 0x002c20,1, 0x002c1c,1, 0x002c18,1, 0x002c14,1, 0x002c10,1, 0x002c0c,1, 0x002c08,1, 0x002c04,1, 0x002c00,1, 0x002b34,1, 0x002b30,1, 0x002b20,1, 0x002b14,1, 0x002b10,1, 0x002b00,1, 0x002978,1, 0x002974,1, 0x002970,1, 0x00296c,1, 0x002968,1, 0x002964,1, 0x002960,1, 0x00295c,1, 0x002958,1, 0x002954,1, 0x002950,1, 0x00294c,1, 0x002948,1, 0x002944,1, 0x002940,1, 0x00293c,1, 0x002938,1, 0x002934,1, 0x002930,1, 0x00292c,1, 0x002928,1, 0x002924,1, 0x002920,1, 0x00291c,1, 0x002918,1, 0x002914,1, 0x002910,1, 0x00290c,1, 0x002908,1, 0x002904,1, 0x002900,1, 0x0028fc,1, 0x0028f8,1, 0x0028f4,1, 0x0028f0,1, 0x0028ec,1, 0x0028e8,1, 0x0028e4,1, 0x0028e0,1, 0x0028dc,1, 0x0028d8,1, 0x0028d4,1, 0x0028d0,1, 0x0028cc,1, 0x0028c8,1, 0x0028c4,1, 0x0028c0,1, 0x0028bc,1, 0x0028b8,1, 0x0028b4,1, 0x0028b0,1, 0x0028ac,1, 0x0028a8,1, 0x0028a4,1, 0x0028a0,1, 0x00289c,1, 0x002898,1, 0x002894,1, 0x002890,1, 0x00288c,1, 0x002888,1, 0x002884,1, 0x002880,1, 0x00287c,1, 0x002878,1, 0x002874,1, 0x002870,1, 0x00286c,1, 0x002868,1, 0x002864,1, 0x002860,1, 0x00285c,1, 0x002858,1, 0x002854,1, 0x002850,1, 0x00284c,1, 0x002848,1, 0x002844,1, 0x002840,1, 0x00283c,1, 0x002838,1, 0x002834,1, 0x002830,1, 0x00282c,1, 0x002828,1, 0x002824,1, 0x002820,1, 0x00281c,1, 0x002818,1, 0x002814,1, 0x002810,1, 0x00280c,1, 0x002808,1, 0x002804,1, 0x002800,1, 0x0027fc,1, 0x0027f8,1, 0x0027f4,1, 0x0027dc,1, 0x0027d4,1, 0x0027d0,1, 0x0027cc,1, 0x0027c8,1, 0x0027c4,1, 0x0027c0,1, 0x0027bc,1, 0x0027b8,1, 0x0027b4,1, 0x0027b0,1, 0x0027ac,1, 0x0027a8,1, 0x0027a0,1, 0x00279c,1, 0x002798,1, 0x002794,1, 0x002790,1, 0x00278c,1, 0x002788,1, 0x002784,1, 0x002780,1, 0x002694,1, 0x002690,1, 0x002680,1, 0x002630,1, 0x00262c,1, 0x002628,1, 0x002624,1, 0x002620,1, 0x00261c,1, 0x002618,1, 0x002614,1, 0x002610,1, 0x00260c,1, 0x002604,1, 0x002600,1, 0x0025fc,1, 0x0025f8,1, 0x0025f4,1, 0x0025ec,1, 0x0025e4,1, 0x0025e0,1, 0x0025dc,1, 0x0025d8,1, 0x0025d4,1, 0x0025cc,1, 0x0025c8,1, 0x0025c0,1, 0x0025b8,1, 0x0025b4,1, 0x0025b0,1, 0x0025a8,1, 0x0025a4,1, 0x0025a0,1, 0x002580,1, 0x00257c,1, 0x002578,1, 0x002574,1, 0x002570,1, 0x00256c,1, 0x002568,1, 0x002564,1, 0x002560,1, 0x00255c,1, 0x002558,1, 0x002554,1, 0x002550,1, 0x00254c,1, 0x002548,1, 0x002544,1, 0x002540,1, 0x002534,1, 0x002530,1, 0x002520,1, 0x002514,1, 0x002510,1, 0x002500,1, 0x0024ec,1, 0x0024e8,1, 0x0024e4,1, 0x0024e0,1, 0x0024dc,1, 0x0024d8,1, 0x0024d4,1, 0x0024d0,1, 0x0024cc,1, 0x0024c8,1, 0x002490,1, 0x00248c,1, 0x002488,1, 0x002484,1, 0x002480,1, 0x002468,1, 0x002450,1, 0x00244c,1, 0x002424,1, 0x002420,1, 0x00241c,1, 0x002418,1, 0x002414,1, 0x002410,1, 0x00240c,1, 0x002408,1, 0x002404,1, 0x002400,1, 0x002334,1, 0x002330,1, 0x002320,1, 0x002314,1, 0x002310,1, 0x002300,1, 0x002178,1, 0x002174,1, 0x002170,1, 0x00216c,1, 0x002168,1, 0x002164,1, 0x002160,1, 0x00215c,1, 0x002158,1, 0x002154,1, 0x002150,1, 0x00214c,1, 0x002148,1, 0x002144,1, 0x002140,1, 0x00213c,1, 0x002138,1, 0x002134,1, 0x002130,1, 0x00212c,1, 0x002128,1, 0x002124,1, 0x002120,1, 0x00211c,1, 0x002118,1, 0x002114,1, 0x002110,1, 0x00210c,1, 0x002108,1, 0x002104,1, 0x002100,1, 0x0020fc,1, 0x0020f8,1, 0x0020f4,1, 0x0020f0,1, 0x0020ec,1, 0x0020e8,1, 0x0020e4,1, 0x0020e0,1, 0x0020dc,1, 0x0020d8,1, 0x0020d4,1, 0x0020d0,1, 0x0020cc,1, 0x0020c8,1, 0x0020c4,1, 0x0020c0,1, 0x0020bc,1, 0x0020b8,1, 0x0020b4,1, 0x0020b0,1, 0x0020ac,1, 0x0020a8,1, 0x0020a4,1, 0x0020a0,1, 0x00209c,1, 0x002098,1, 0x002094,1, 0x002090,1, 0x00208c,1, 0x002088,1, 0x002084,1, 0x002080,1, 0x00207c,1, 0x002078,1, 0x002074,1, 0x002070,1, 0x00206c,1, 0x002068,1, 0x002064,1, 0x002060,1, 0x00205c,1, 0x002058,1, 0x002054,1, 0x002050,1, 0x00204c,1, 0x002048,1, 0x002044,1, 0x002040,1, 0x00203c,1, 0x002038,1, 0x002034,1, 0x002030,1, 0x00202c,1, 0x002028,1, 0x002024,1, 0x002020,1, 0x00201c,1, 0x002018,1, 0x002014,1, 0x002010,1, 0x00200c,1, 0x002008,1, 0x002004,1, 0x002000,1, 0x001ffc,1, 0x001ff8,1, 0x001ff4,1, 0x001fdc,1, 0x001fd4,1, 0x001fd0,1, 0x001fcc,1, 0x001fc8,1, 0x001fc4,1, 0x001fc0,1, 0x001fbc,1, 0x001fb8,1, 0x001fb4,1, 0x001fb0,1, 0x001fac,1, 0x001fa8,1, 0x001fa0,1, 0x001f9c,1, 0x001f98,1, 0x001f94,1, 0x001f90,1, 0x001f8c,1, 0x001f88,1, 0x001f84,1, 0x001f80,1, 0x001e94,1, 0x001e90,1, 0x001e80,1, 0x001e30,1, 0x001e2c,1, 0x001e28,1, 0x001e24,1, 0x001e20,1, 0x001e1c,1, 0x001e18,1, 0x001e14,1, 0x001e10,1, 0x001e0c,1, 0x001e04,1, 0x001e00,1, 0x001dfc,1, 0x001df8,1, 0x001df4,1, 0x001dec,1, 0x001de4,1, 0x001de0,1, 0x001ddc,1, 0x001dd8,1, 0x001dd4,1, 0x001dcc,1, 0x001dc8,1, 0x001dc0,1, 0x001db8,1, 0x001db4,1, 0x001db0,1, 0x001da8,1, 0x001da4,1, 0x001da0,1, 0x001d80,1, 0x001d7c,1, 0x001d78,1, 0x001d74,1, 0x001d70,1, 0x001d6c,1, 0x001d68,1, 0x001d64,1, 0x001d60,1, 0x001d5c,1, 0x001d58,1, 0x001d54,1, 0x001d50,1, 0x001d4c,1, 0x001d48,1, 0x001d44,1, 0x001d40,1, 0x001d34,1, 0x001d30,1, 0x001d20,1, 0x001d14,1, 0x001d10,1, 0x001d00,1, 0x001cec,1, 0x001ce8,1, 0x001ce4,1, 0x001ce0,1, 0x001cdc,1, 0x001cd8,1, 0x001cd4,1, 0x001cd0,1, 0x001ccc,1, 0x001cc8,1, 0x001c90,1, 0x001c8c,1, 0x001c88,1, 0x001c84,1, 0x001c80,1, 0x001c68,1, 0x001c50,1, 0x001c4c,1, 0x001c24,1, 0x001c20,1, 0x001c1c,1, 0x001c18,1, 0x001c14,1, 0x001c10,1, 0x001c0c,1, 0x001c08,1, 0x001c04,1, 0x001c00,1, 0x001b34,1, 0x001b30,1, 0x001b20,1, 0x001b14,1, 0x001b10,1, 0x001b00,1, 0x001978,1, 0x001974,1, 0x001970,1, 0x00196c,1, 0x001968,1, 0x001964,1, 0x001960,1, 0x00195c,1, 0x001958,1, 0x001954,1, 0x001950,1, 0x00194c,1, 0x001948,1, 0x001944,1, 0x001940,1, 0x00193c,1, 0x001938,1, 0x001934,1, 0x001930,1, 0x00192c,1, 0x001928,1, 0x001924,1, 0x001920,1, 0x00191c,1, 0x001918,1, 0x001914,1, 0x001910,1, 0x00190c,1, 0x001908,1, 0x001904,1, 0x001900,1, 0x0018fc,1, 0x0018f8,1, 0x0018f4,1, 0x0018f0,1, 0x0018ec,1, 0x0018e8,1, 0x0018e4,1, 0x0018e0,1, 0x0018dc,1, 0x0018d8,1, 0x0018d4,1, 0x0018d0,1, 0x0018cc,1, 0x0018c8,1, 0x0018c4,1, 0x0018c0,1, 0x0018bc,1, 0x0018b8,1, 0x0018b4,1, 0x0018b0,1, 0x0018ac,1, 0x0018a8,1, 0x0018a4,1, 0x0018a0,1, 0x00189c,1, 0x001898,1, 0x001894,1, 0x001890,1, 0x00188c,1, 0x001888,1, 0x001884,1, 0x001880,1, 0x00187c,1, 0x001878,1, 0x001874,1, 0x001870,1, 0x00186c,1, 0x001868,1, 0x001864,1, 0x001860,1, 0x00185c,1, 0x001858,1, 0x001854,1, 0x001850,1, 0x00184c,1, 0x001848,1, 0x001844,1, 0x001840,1, 0x00183c,1, 0x001838,1, 0x001834,1, 0x001830,1, 0x00182c,1, 0x001828,1, 0x001824,1, 0x001820,1, 0x00181c,1, 0x001818,1, 0x001814,1, 0x001810,1, 0x00180c,1, 0x001808,1, 0x001804,1, 0x001800,1, 0x0017fc,1, 0x0017f8,1, 0x0017f4,1, 0x0017dc,1, 0x0017d4,1, 0x0017d0,1, 0x0017cc,1, 0x0017c8,1, 0x0017c4,1, 0x0017c0,1, 0x0017bc,1, 0x0017b8,1, 0x0017b4,1, 0x0017b0,1, 0x0017ac,1, 0x0017a8,1, 0x0017a0,1, 0x00179c,1, 0x001798,1, 0x001794,1, 0x001790,1, 0x00178c,1, 0x001788,1, 0x001784,1, 0x001780,1, 0x001694,1, 0x001690,1, 0x001680,1, 0x001630,1, 0x00162c,1, 0x001628,1, 0x001624,1, 0x001620,1, 0x00161c,1, 0x001618,1, 0x001614,1, 0x001610,1, 0x00160c,1, 0x001604,1, 0x001600,1, 0x0015fc,1, 0x0015f8,1, 0x0015f4,1, 0x0015ec,1, 0x0015e4,1, 0x0015e0,1, 0x0015dc,1, 0x0015d8,1, 0x0015d4,1, 0x0015cc,1, 0x0015c8,1, 0x0015c0,1, 0x0015b8,1, 0x0015b4,1, 0x0015b0,1, 0x0015a8,1, 0x0015a4,1, 0x0015a0,1, 0x001580,1, 0x00157c,1, 0x001578,1, 0x001574,1, 0x001570,1, 0x00156c,1, 0x001568,1, 0x001564,1, 0x001560,1, 0x00155c,1, 0x001558,1, 0x001554,1, 0x001550,1, 0x00154c,1, 0x001548,1, 0x001544,1, 0x001540,1, 0x001534,1, 0x001530,1, 0x001520,1, 0x001514,1, 0x001510,1, 0x001500,1, 0x0014ec,1, 0x0014e8,1, 0x0014e4,1, 0x0014e0,1, 0x0014dc,1, 0x0014d8,1, 0x0014d4,1, 0x0014d0,1, 0x0014cc,1, 0x0014c8,1, 0x001490,1, 0x00148c,1, 0x001488,1, 0x001484,1, 0x001480,1, 0x001468,1, 0x001450,1, 0x00144c,1, 0x001424,1, 0x001420,1, 0x00141c,1, 0x001418,1, 0x001414,1, 0x001410,1, 0x00140c,1, 0x001408,1, 0x001404,1, 0x001400,1, 0x001334,1, 0x001330,1, 0x001320,1, 0x001314,1, 0x001310,1, 0x001300,1, 0x001178,1, 0x001174,1, 0x001170,1, 0x00116c,1, 0x001168,1, 0x001164,1, 0x001160,1, 0x00115c,1, 0x001158,1, 0x001154,1, 0x001150,1, 0x00114c,1, 0x001148,1, 0x001144,1, 0x001140,1, 0x00113c,1, 0x001138,1, 0x001134,1, 0x001130,1, 0x00112c,1, 0x001128,1, 0x001124,1, 0x001120,1, 0x00111c,1, 0x001118,1, 0x001114,1, 0x001110,1, 0x00110c,1, 0x001108,1, 0x001104,1, 0x001100,1, 0x0010fc,1, 0x0010f8,1, 0x0010f4,1, 0x0010f0,1, 0x0010ec,1, 0x0010e8,1, 0x0010e4,1, 0x0010e0,1, 0x0010dc,1, 0x0010d8,1, 0x0010d4,1, 0x0010d0,1, 0x0010cc,1, 0x0010c8,1, 0x0010c4,1, 0x0010c0,1, 0x0010bc,1, 0x0010b8,1, 0x0010b4,1, 0x0010b0,1, 0x0010ac,1, 0x0010a8,1, 0x0010a4,1, 0x0010a0,1, 0x00109c,1, 0x001098,1, 0x001094,1, 0x001090,1, 0x00108c,1, 0x001088,1, 0x001084,1, 0x001080,1, 0x00107c,1, 0x001078,1, 0x001074,1, 0x001070,1, 0x00106c,1, 0x001068,1, 0x001064,1, 0x001060,1, 0x00105c,1, 0x001058,1, 0x001054,1, 0x001050,1, 0x00104c,1, 0x001048,1, 0x001044,1, 0x001040,1, 0x00103c,1, 0x001038,1, 0x001034,1, 0x001030,1, 0x00102c,1, 0x001028,1, 0x001024,1, 0x001020,1, 0x00101c,1, 0x001018,1, 0x001014,1, 0x001010,1, 0x00100c,1, 0x001008,1, 0x001004,1, 0x001000,1, 0x000ffc,1, 0x000ff8,1, 0x000ff4,1, 0x000fdc,1, 0x000fd4,1, 0x000fd0,1, 0x000fcc,1, 0x000fc8,1, 0x000fc4,1, 0x000fc0,1, 0x000fbc,1, 0x000fb8,1, 0x000fb4,1, 0x000fb0,1, 0x000fac,1, 0x000fa8,1, 0x000fa0,1, 0x000f9c,1, 0x000f98,1, 0x000f94,1, 0x000f90,1, 0x000f8c,1, 0x000f88,1, 0x000f84,1, 0x000f80,1, 0x000e94,1, 0x000e90,1, 0x000e80,1, 0x000e30,1, 0x000e2c,1, 0x000e28,1, 0x000e24,1, 0x000e20,1, 0x000e1c,1, 0x000e18,1, 0x000e14,1, 0x000e10,1, 0x000e0c,1, 0x000e04,1, 0x000e00,1, 0x000dfc,1, 0x000df8,1, 0x000df4,1, 0x000dec,1, 0x000de4,1, 0x000de0,1, 0x000ddc,1, 0x000dd8,1, 0x000dd4,1, 0x000dcc,1, 0x000dc8,1, 0x000dc0,1, 0x000db8,1, 0x000db4,1, 0x000db0,1, 0x000da8,1, 0x000da4,1, 0x000da0,1, 0x000d80,1, 0x000d7c,1, 0x000d78,1, 0x000d74,1, 0x000d70,1, 0x000d6c,1, 0x000d68,1, 0x000d64,1, 0x000d60,1, 0x000d5c,1, 0x000d58,1, 0x000d54,1, 0x000d50,1, 0x000d4c,1, 0x000d48,1, 0x000d44,1, 0x000d40,1, 0x000d34,1, 0x000d30,1, 0x000d20,1, 0x000d14,1, 0x000d10,1, 0x000d00,1, 0x000cec,1, 0x000ce8,1, 0x000ce4,1, 0x000ce0,1, 0x000cdc,1, 0x000cd8,1, 0x000cd4,1, 0x000cd0,1, 0x000ccc,1, 0x000cc8,1, 0x000c90,1, 0x000c8c,1, 0x000c88,1, 0x000c84,1, 0x000c80,1, 0x000c68,1, 0x000c50,1, 0x000c4c,1, 0x000c24,1, 0x000c20,1, 0x000c1c,1, 0x000c18,1, 0x000c14,1, 0x000c10,1, 0x000c0c,1, 0x000c08,1, 0x000c04,1, 0x000c00,1, 0x000b34,1, 0x000b30,1, 0x000b20,1, 0x000b14,1, 0x000b10,1, 0x000b00,1, 0x000978,1, 0x000974,1, 0x000970,1, 0x00096c,1, 0x000968,1, 0x000964,1, 0x000960,1, 0x00095c,1, 0x000958,1, 0x000954,1, 0x000950,1, 0x00094c,1, 0x000948,1, 0x000944,1, 0x000940,1, 0x00093c,1, 0x000938,1, 0x000934,1, 0x000930,1, 0x00092c,1, 0x000928,1, 0x000924,1, 0x000920,1, 0x00091c,1, 0x000918,1, 0x000914,1, 0x000910,1, 0x00090c,1, 0x000908,1, 0x000904,1, 0x000900,1, 0x0008fc,1, 0x0008f8,1, 0x0008f4,1, 0x0008f0,1, 0x0008ec,1, 0x0008e8,1, 0x0008e4,1, 0x0008e0,1, 0x0008dc,1, 0x0008d8,1, 0x0008d4,1, 0x0008d0,1, 0x0008cc,1, 0x0008c8,1, 0x0008c4,1, 0x0008c0,1, 0x0008bc,1, 0x0008b8,1, 0x0008b4,1, 0x0008b0,1, 0x0008ac,1, 0x0008a8,1, 0x0008a4,1, 0x0008a0,1, 0x00089c,1, 0x000898,1, 0x000894,1, 0x000890,1, 0x00088c,1, 0x000888,1, 0x000884,1, 0x000880,1, 0x00087c,1, 0x000878,1, 0x000874,1, 0x000870,1, 0x00086c,1, 0x000868,1, 0x000864,1, 0x000860,1, 0x00085c,1, 0x000858,1, 0x000854,1, 0x000850,1, 0x00084c,1, 0x000848,1, 0x000844,1, 0x000840,1, 0x00083c,1, 0x000838,1, 0x000834,1, 0x000830,1, 0x00082c,1, 0x000828,1, 0x000824,1, 0x000820,1, 0x00081c,1, 0x000818,1, 0x000814,1, 0x000810,1, 0x00080c,1, 0x000808,1, 0x000804,1, 0x000800,1, 0x0007fc,1, 0x0007f8,1, 0x0007f4,1, 0x0007dc,1, 0x0007d4,1, 0x0007d0,1, 0x0007cc,1, 0x0007c8,1, 0x0007c4,1, 0x0007c0,1, 0x0007bc,1, 0x0007b8,1, 0x0007b4,1, 0x0007b0,1, 0x0007ac,1, 0x0007a8,1, 0x0007a0,1, 0x00079c,1, 0x000798,1, 0x000794,1, 0x000790,1, 0x00078c,1, 0x000788,1, 0x000784,1, 0x000780,1, 0x000694,1, 0x000690,1, 0x000680,1, 0x000630,1, 0x00062c,1, 0x000628,1, 0x000624,1, 0x000620,1, 0x00061c,1, 0x000618,1, 0x000614,1, 0x000610,1, 0x00060c,1, 0x000604,1, 0x000600,1, 0x0005fc,1, 0x0005f8,1, 0x0005f4,1, 0x0005ec,1, 0x0005e4,1, 0x0005e0,1, 0x0005dc,1, 0x0005d8,1, 0x0005d4,1, 0x0005cc,1, 0x0005c8,1, 0x0005c0,1, 0x0005b8,1, 0x0005b4,1, 0x0005b0,1, 0x0005a8,1, 0x0005a4,1, 0x0005a0,1, 0x000580,1, 0x00057c,1, 0x000578,1, 0x000574,1, 0x000570,1, 0x00056c,1, 0x000568,1, 0x000564,1, 0x000560,1, 0x00055c,1, 0x000558,1, 0x000554,1, 0x000550,1, 0x00054c,1, 0x000548,1, 0x000544,1, 0x000540,1, 0x000534,1, 0x000530,1, 0x000520,1, 0x000514,1, 0x000510,1, 0x000500,1, 0x0004ec,1, 0x0004e8,1, 0x0004e4,1, 0x0004e0,1, 0x0004dc,1, 0x0004d8,1, 0x0004d4,1, 0x0004d0,1, 0x0004cc,1, 0x0004c8,1, 0x000490,1, 0x00048c,1, 0x000488,1, 0x000484,1, 0x000480,1, 0x000468,1, 0x000450,1, 0x00044c,1, 0x000424,1, 0x000420,1, 0x00041c,1, 0x000418,1, 0x000414,1, 0x000410,1, 0x00040c,1, 0x000408,1, 0x000404,1, 0x000400,1, 0x000334,1, 0x000330,1, 0x000320,1, 0x000314,1, 0x000310,1, 0x000300,1, 0x000178,1, 0x000174,1, 0x000170,1, 0x00016c,1, 0x000168,1, 0x000164,1, 0x000160,1, 0x00015c,1, 0x000158,1, 0x000154,1, 0x000150,1, 0x00014c,1, 0x000148,1, 0x000144,1, 0x000140,1, 0x00013c,1, 0x000138,1, 0x000134,1, 0x000130,1, 0x00012c,1, 0x000128,1, 0x000124,1, 0x000120,1, 0x00011c,1, 0x000118,1, 0x000114,1, 0x000110,1, 0x00010c,1, 0x000108,1, 0x000104,1, 0x000100,1, 0x0000fc,1, 0x0000f8,1, 0x0000f4,1, 0x0000f0,1, 0x0000ec,1, 0x0000e8,1, 0x0000e4,1, 0x0000e0,1, 0x0000dc,1, 0x0000d8,1, 0x0000d4,1, 0x0000d0,1, 0x0000cc,1, 0x0000c8,1, 0x0000c4,1, 0x0000c0,1, 0x0000bc,1, 0x0000b8,1, 0x0000b4,1, 0x0000b0,1, 0x0000ac,1, 0x0000a8,1, 0x0000a4,1, 0x0000a0,1, 0x00009c,1, 0x000098,1, 0x000094,1, 0x000090,1, 0x00008c,1, 0x000088,1, 0x000084,1, 0x000080,1, 0x00007c,1, 0x000078,1, 0x000074,1, 0x000070,1, 0x00006c,1, 0x000068,1, 0x000064,1, 0x000060,1, 0x00005c,1, 0x000058,1, 0x000054,1, 0x000050,1, 0x00004c,1, 0x000048,1, 0x000044,1, 0x000040,1, 0x00003c,1, 0x000038,1, 0x000034,1, 0x000030,1, 0x00002c,1, 0x000028,1, 0x000024,1, 0x000020,1, 0x00001c,1, 0x000018,1, 0x000014,1, 0x000010,1, 0x00000c,1, 0x000008,1, 0x000004,1, 0x000000,1, mstflint-4.26.0/mstdump/mstdump_dbs/CableSFP51Paging.csv0000644000175000017500000000004614522641732023305 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,96, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX3Pro.csv0000755000175000017500000012621514522641732022731 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x001000,12, 0x001040,1, 0x010004,1, 0x010010,2, 0x0100a0,15, 0x0100ec,2, 0x0100fc,2, 0x01010c,2, 0x010150,1, 0x0101cc,1, 0x0101fc,1, 0x010208,10, 0x010300,6, 0x010320,20, 0x010374,3, 0x010400,1, 0x010410,2, 0x010440,1, 0x010450,2, 0x010500,1, 0x010510,2, 0x010520,2, 0x01052c,3, 0x01053c,3, 0x010550,1, 0x010600,18, 0x010680,1, 0x010690,2, 0x0106ac,1, 0x0106b8,1, 0x0106e0,3, 0x0106f0,3, 0x010740,4, 0x010754,8, 0x010800,2, 0x010810,2, 0x0108a0,15, 0x0108ec,2, 0x0108fc,2, 0x01090c,2, 0x010950,1, 0x0109cc,1, 0x0109fc,1, 0x010a08,10, 0x010b00,6, 0x010b20,20, 0x010b74,3, 0x010c00,1, 0x010c10,2, 0x010c40,1, 0x010c50,2, 0x010d00,1, 0x010d10,2, 0x010d20,2, 0x010d2c,3, 0x010d3c,3, 0x010d50,1, 0x010e00,18, 0x010e80,1, 0x010e90,2, 0x010eac,1, 0x010eb8,1, 0x010ee0,3, 0x010ef0,3, 0x010f40,4, 0x010f54,8, 0x011000,1, 0x011010,4, 0x011024,2, 0x011080,2, 0x011090,12, 0x011180,6, 0x011200,7, 0x011220,1, 0x011240,4, 0x011260,1, 0x011280,5, 0x011300,1, 0x011310,2, 0x011400,6, 0x011460,1, 0x0114b0,4, 0x011800,1, 0x011810,4, 0x011824,2, 0x011880,2, 0x011890,12, 0x011980,6, 0x011a00,7, 0x011a20,1, 0x011a40,4, 0x011a60,1, 0x011a80,5, 0x011b00,1, 0x011b10,2, 0x011c00,6, 0x011c60,1, 0x011cb0,4, 0x012000,1, 0x01200c,1, 0x012020,1, 0x012030,2, 0x012044,2, 0x0120a0,4, 0x0120c0,7, 0x01211c,13, 0x012164,1, 0x012170,4, 0x0121e0,6, 0x012250,1, 0x012360,4, 0x012380,3, 0x012390,5, 0x0123b0,5, 0x012440,3, 0x012450,3, 0x0124a8,2, 0x0124c0,2, 0x0124d0,2, 0x012568,2, 0x0125c0,4, 0x0125fc,10, 0x012628,6, 0x012644,1, 0x012660,2, 0x012670,2, 0x01268c,5, 0x01270c,1, 0x012728,8, 0x012750,2, 0x01275c,1, 0x0127d8,2, 0x0127e8,2, 0x012840,1, 0x012850,2, 0x0128a0,6, 0x012904,1, 0x012910,5, 0x012928,4, 0x012944,2, 0x012950,1, 0x012958,4, 0x012980,7, 0x0129a0,1, 0x0129b0,2, 0x012d48,4, 0x013000,10, 0x013040,14, 0x013080,14, 0x0130c0,14, 0x013100,37, 0x013198,1, 0x0131a0,5, 0x0131b8,1, 0x0131c0,5, 0x0131d8,1, 0x0131e0,5, 0x0131f8,1, 0x013200,37, 0x013298,1, 0x0132a0,5, 0x0132b8,1, 0x0132c0,5, 0x0132d8,1, 0x0132e0,5, 0x0132f8,1, 0x013300,9, 0x013330,2, 0x013340,1, 0x013350,2, 0x013360,1, 0x013370,2, 0x013380,2, 0x01338c,38, 0x013430,2, 0x013440,1, 0x013450,2, 0x013460,1, 0x013470,2, 0x013480,2, 0x01348c,30, 0x013510,2, 0x013520,1, 0x013530,2, 0x013544,2, 0x013580,8, 0x0135a4,6, 0x0135c0,16, 0x013604,2, 0x013628,2, 0x013634,1, 0x013644,2, 0x013668,2, 0x013674,1, 0x013684,2, 0x0136a8,2, 0x0136b4,1, 0x0136c4,2, 0x0136e8,2, 0x0136f4,1, 0x013700,21, 0x013760,1, 0x013770,2, 0x013780,1, 0x013790,2, 0x0137a0,1, 0x0137b0,2, 0x013800,1, 0x013820,2, 0x01382c,10, 0x01386c,10, 0x013898,3, 0x0138b0,2, 0x013a00,1, 0x013a20,2, 0x013a2c,10, 0x013a6c,10, 0x013a98,3, 0x013ab0,2, 0x013c00,4, 0x013c14,7, 0x013c38,4, 0x013c54,2, 0x013ca0,1, 0x013cb0,2, 0x013cc0,1, 0x013cd0,2, 0x013d00,3, 0x013d10,6, 0x013d44,7, 0x013d64,8, 0x013d90,2, 0x013da0,6, 0x013e00,1, 0x014000,3, 0x014010,15, 0x014050,16, 0x01409c,1, 0x0140b0,9, 0x0140e0,1, 0x0140f0,3, 0x014100,12, 0x014134,4, 0x014158,1, 0x014180,1, 0x014194,2, 0x0141ac,12, 0x0141ec,4, 0x014200,3, 0x014210,15, 0x014250,16, 0x01429c,1, 0x0142b0,9, 0x0142e0,1, 0x0142f0,3, 0x014300,12, 0x014334,4, 0x014358,1, 0x014380,1, 0x014394,2, 0x0143ac,12, 0x0143ec,4, 0x014400,12, 0x01444c,8, 0x014470,2, 0x01447c,33, 0x014800,8, 0x014824,5, 0x014840,8, 0x014864,5, 0x014880,8, 0x0148a4,5, 0x0148c0,8, 0x0148e4,5, 0x014900,8, 0x014924,5, 0x014940,8, 0x014964,5, 0x014980,8, 0x0149a4,5, 0x0149c0,8, 0x0149e4,5, 0x014a04,5, 0x018000,2, 0x01805c,4, 0x018080,8, 0x0180a4,7, 0x0180c4,2, 0x018100,32, 0x018200,4, 0x018224,1, 0x018234,5, 0x018300,32, 0x018384,1, 0x01838c,1, 0x0183a4,3, 0x018400,5, 0x018420,5, 0x018440,5, 0x018460,5, 0x018480,5, 0x0184a0,5, 0x0184c0,5, 0x0184e0,5, 0x018500,5, 0x018520,5, 0x018540,5, 0x018560,5, 0x018580,5, 0x0185a0,5, 0x0185c0,5, 0x0185e0,5, 0x018610,4, 0x018624,4, 0x018810,3, 0x018820,11, 0x018850,3, 0x018860,7, 0x018884,11, 0x0188c8,2, 0x0188d4,2, 0x0188e0,8, 0x018a04,3, 0x018a20,3, 0x018a30,4, 0x018a44,21, 0x018b00,16, 0x018b4c,5, 0x018b68,5, 0x018c00,17, 0x018c54,28, 0x018cd4,13, 0x018d0c,2, 0x018e00,1, 0x018e10,2, 0x018e50,2, 0x018f00,4, 0x018f14,7, 0x018f38,5, 0x018f54,2, 0x018fa0,1, 0x018fb0,2, 0x018fc0,1, 0x018fd0,2, 0x018fe0,5, 0x019ff0,2052, 0x01c004,2, 0x01c010,1, 0x01c01c,2, 0x01c06c,27, 0x01c180,1, 0x01c190,2, 0x01c1a0,1, 0x01c1b0,2, 0x01c1c0,33, 0x01c254,28, 0x01c2d4,13, 0x01c30c,2, 0x01c40c,5, 0x01c428,2, 0x01c434,2, 0x01c448,2, 0x01c454,1, 0x01c464,25, 0x01c4d8,2, 0x01c4e4,12, 0x01c608,4, 0x01c624,3, 0x01c63c,1, 0x01c64c,27, 0x01c6c0,18, 0x01c70c,2, 0x01c71c,5, 0x01c738,2, 0x01c744,1, 0x01c75c,1, 0x01c7dc,1, 0x01c7e4,1, 0x01c7f8,7, 0x01c818,7, 0x01c840,2, 0x01c84c,16, 0x01c8a0,5, 0x01c8c0,1, 0x01c900,5, 0x01c918,7, 0x01c940,2, 0x01c94c,16, 0x01c9a0,5, 0x01c9c0,1, 0x01ca00,5, 0x01ca18,7, 0x01ca40,2, 0x01ca4c,16, 0x01caa0,5, 0x01cac0,1, 0x01cb00,5, 0x01cb18,7, 0x01cb40,2, 0x01cb4c,16, 0x01cba0,5, 0x01cbc0,1, 0x01cc00,5, 0x01cc18,7, 0x01cc40,2, 0x01cc4c,16, 0x01cca0,5, 0x01ccc0,1, 0x01cd00,5, 0x01cd18,7, 0x01cd40,2, 0x01cd4c,16, 0x01cda0,5, 0x01cdc0,1, 0x01ce00,5, 0x01ce18,7, 0x01ce40,2, 0x01ce4c,16, 0x01cea0,5, 0x01cec0,1, 0x01cf00,5, 0x01cf18,7, 0x01cf40,2, 0x01cf4c,16, 0x01cfa0,5, 0x01cfc0,1, 0x01d000,19, 0x01d054,21, 0x01d0ac,6, 0x01d0d0,2, 0x01d0e8,15, 0x01d140,1, 0x01d148,53, 0x01d220,12, 0x01d25c,6, 0x01d278,2, 0x01d284,1, 0x01d298,2, 0x01d2a8,6, 0x01d300,2, 0x01d310,11, 0x01d350,4, 0x01d368,3, 0x01d37c,6, 0x01d3a0,3, 0x01d3b0,9, 0x01d3e0,6, 0x01d400,19, 0x01d454,21, 0x01d4ac,6, 0x01d4d0,2, 0x01d4e8,15, 0x01d540,1, 0x01d548,53, 0x01d620,12, 0x01d65c,6, 0x01d678,2, 0x01d684,1, 0x01d698,2, 0x01d6a8,6, 0x01d700,2, 0x01d710,11, 0x01d750,4, 0x01d768,3, 0x01d77c,6, 0x01d7a0,3, 0x01d7b0,9, 0x01d7e0,6, 0x01d800,16, 0x01d844,1, 0x01d880,8, 0x01d8c4,1, 0x01d8cc,5, 0x01d8e4,7, 0x01d920,1, 0x01d968,3, 0x01d9e0,6, 0x01da00,2, 0x01da14,2, 0x01da20,8, 0x01da44,1, 0x01da58,2, 0x01da64,1, 0x01da78,8, 0x01db04,1, 0x01db0c,14, 0x01db50,2, 0x01db60,1, 0x01db70,2, 0x01db80,1, 0x01db90,2, 0x01dba0,3, 0x01dc00,1, 0x01dc0c,1, 0x01dc80,6, 0x01dca0,1, 0x01dd80,13, 0x01ddbc,1, 0x01dde0,9, 0x01df00,1, 0x01df08,1, 0x01df14,1, 0x01df1c,3, 0x01df38,1, 0x01df40,1, 0x01df54,2, 0x01dfa0,1, 0x01dfb0,2, 0x01e5c0,1, 0x01e5dc,1, 0x01e5e4,14, 0x01e620,4, 0x01e668,6, 0x01e780,160, 0x01ea04,12, 0x01ec00,8, 0x01ec24,1, 0x01ec30,1, 0x01ec44,20, 0x01ec9c,2, 0x01ecac,14, 0x01ed80,1, 0x01edc4,1, 0x01ede0,1, 0x01ede8,3, 0x01edf8,1, 0x01ee00,8, 0x01ee24,1, 0x01ee30,1, 0x01ee44,20, 0x01ee9c,2, 0x01eeac,14, 0x01ef80,1, 0x01efc4,1, 0x01efe0,1, 0x01efe8,3, 0x01eff8,1, 0x01f000,1024, 0x030000,1, 0x030010,2, 0x030020,1, 0x030030,2, 0x030040,1, 0x030050,2, 0x030100,27, 0x030180,3, 0x030200,80, 0x030c00,128, 0x030e1c,1, 0x030e3c,1, 0x030e44,1, 0x030e5c,16, 0x030f10,4, 0x030f40,32, 0x031000,14, 0x031040,14, 0x031080,14, 0x0310c0,14, 0x031100,133, 0x031318,13, 0x031a00,64, 0x031c00,64, 0x031e04,1, 0x032000,512, 0x033000,1025, 0x034010,2, 0x034104,1, 0x034224,1, 0x034260,7, 0x034284,4, 0x034304,1, 0x034314,3, 0x034324,1, 0x034334,3, 0x034344,1, 0x034358,2, 0x034414,3, 0x034510,4, 0x034608,6, 0x034800,7, 0x034820,4, 0x034868,6, 0x034980,45, 0x034a40,13, 0x034a80,13, 0x034ac0,13, 0x034b00,13, 0x034b40,13, 0x034b80,13, 0x034bc0,13, 0x035020,1, 0x035028,1, 0x035040,2, 0x03504c,1, 0x035058,3, 0x035068,4, 0x035104,5, 0x035200,12, 0x035240,12, 0x035280,12, 0x0352c0,12, 0x035300,12, 0x035340,12, 0x035380,12, 0x0353c0,12, 0x036000,128, 0x036204,12, 0x036400,8, 0x036424,1, 0x036430,1, 0x036444,20, 0x03649c,2, 0x0364ac,14, 0x036580,1, 0x0365c4,1, 0x0365e0,1, 0x0365e8,3, 0x0365f8,1, 0x036600,4, 0x036614,6, 0x036638,3, 0x036654,2, 0x0366a0,1, 0x0366b0,2, 0x0366c0,1, 0x0366d0,2, 0x036700,1, 0x036710,2, 0x036720,1, 0x036730,2, 0x040000,19, 0x040050,3, 0x040060,2, 0x04007c,6, 0x0400a4,5, 0x0400c0,4, 0x0400e0,3, 0x040100,6, 0x04011c,14, 0x04015c,1, 0x040170,4, 0x040190,3, 0x0401a4,1, 0x0401ac,5, 0x0401c4,1, 0x0401cc,6, 0x040200,3, 0x040210,3, 0x040220,3, 0x040230,3, 0x040240,3, 0x040250,3, 0x040260,3, 0x040270,3, 0x040280,3, 0x040290,3, 0x0402a0,3, 0x0402b0,3, 0x0402c0,3, 0x0402d0,3, 0x0402e0,3, 0x0402f0,3, 0x040304,1, 0x040314,8, 0x040340,11, 0x040490,1, 0x0404a8,15, 0x040510,18, 0x04055c,3, 0x04056c,3, 0x04057c,3, 0x04058c,2, 0x04059c,18, 0x040610,16, 0x0406e0,51, 0x0407d0,3, 0x0407f0,1, 0x040800,337, 0x040d50,18, 0x040d9c,4, 0x040db0,11, 0x040df0,11, 0x040e20,1, 0x040e28,11, 0x040e58,1, 0x040e60,2, 0x040e6c,1, 0x040e74,11, 0x040eb0,4, 0x040ec8,2, 0x040ed4,7, 0x040ef8,9, 0x040f20,4, 0x041000,33, 0x041100,30, 0x041180,15, 0x0411dc,1, 0x0411e4,15, 0x041224,1, 0x041230,1, 0x041244,20, 0x04129c,2, 0x0412ac,14, 0x041380,1, 0x0413c4,1, 0x0413e0,1, 0x0413e8,3, 0x0413f8,1, 0x041400,8, 0x041424,1, 0x041430,1, 0x041444,20, 0x04149c,2, 0x0414ac,14, 0x041580,1, 0x0415c4,1, 0x0415e0,1, 0x0415e8,3, 0x0415f8,1, 0x041600,4, 0x041614,7, 0x041638,4, 0x041654,2, 0x0416a0,1, 0x0416b0,2, 0x0416c0,1, 0x0416d0,2, 0x0416e0,1, 0x041a00,1, 0x041a10,2, 0x041a20,1, 0x041a30,2, 0x041c00,128, 0x041e04,12, 0x042000,5, 0x042020,5, 0x042040,5, 0x042060,5, 0x042080,5, 0x0420a0,5, 0x0420c0,5, 0x0420e0,5, 0x042100,5, 0x042120,5, 0x042140,5, 0x042160,5, 0x042180,5, 0x0421a0,5, 0x0421c0,5, 0x0421e0,5, 0x042200,5, 0x042220,5, 0x042240,5, 0x042260,5, 0x042280,5, 0x0422a0,5, 0x0422c0,5, 0x0422e0,5, 0x042300,5, 0x042320,5, 0x042340,5, 0x042360,5, 0x042380,5, 0x0423a0,5, 0x0423c0,5, 0x0423e0,5, 0x042400,5, 0x042420,5, 0x042440,5, 0x042460,5, 0x042480,5, 0x0424a0,5, 0x0424c0,5, 0x0424e0,5, 0x042500,5, 0x042520,5, 0x042540,5, 0x042560,5, 0x042580,5, 0x0425a0,5, 0x0425c0,5, 0x0425e0,5, 0x042600,5, 0x042620,5, 0x042640,5, 0x042660,5, 0x042680,5, 0x0426a0,5, 0x0426c0,5, 0x0426e0,5, 0x042700,5, 0x042720,5, 0x042740,5, 0x042760,5, 0x042780,5, 0x0427a0,5, 0x0427c0,5, 0x0427e0,5, 0x042800,5, 0x042820,5, 0x042840,5, 0x042860,5, 0x042880,5, 0x0428a0,5, 0x0428c0,5, 0x0428e0,5, 0x042900,5, 0x042920,5, 0x042940,5, 0x042960,5, 0x042980,5, 0x0429a0,5, 0x0429c0,5, 0x0429e0,5, 0x042a00,5, 0x042a20,5, 0x042a40,5, 0x042a60,5, 0x042a80,5, 0x042aa0,5, 0x042ac0,5, 0x042ae0,5, 0x042b00,5, 0x042b20,5, 0x042b40,5, 0x042b60,5, 0x042b80,5, 0x042ba0,5, 0x042bc0,5, 0x042be0,5, 0x042c00,5, 0x042c20,5, 0x042c40,5, 0x042c60,5, 0x042c80,5, 0x042ca0,5, 0x042cc0,5, 0x042ce0,5, 0x042d00,5, 0x042d20,5, 0x042d40,5, 0x042d60,5, 0x042d80,5, 0x042da0,5, 0x042dc0,5, 0x042de0,5, 0x042e00,5, 0x042e20,5, 0x042e40,5, 0x042e60,5, 0x042e80,5, 0x042ea0,5, 0x042ec0,5, 0x042ee0,5, 0x042f00,5, 0x042f20,5, 0x042f40,5, 0x042f60,5, 0x042f80,5, 0x042fa0,5, 0x042fc0,5, 0x042fe0,5, 0x043000,5, 0x043020,5, 0x043040,5, 0x043060,5, 0x043080,5, 0x0430a0,5, 0x0430c0,5, 0x0430e0,5, 0x043100,5, 0x043120,5, 0x043140,5, 0x043160,5, 0x043180,5, 0x0431a0,5, 0x0431c0,5, 0x0431e0,5, 0x043200,5, 0x043220,5, 0x043240,5, 0x043260,5, 0x043280,5, 0x0432a0,5, 0x0432c0,5, 0x0432e0,5, 0x043300,5, 0x043320,5, 0x043340,5, 0x043360,5, 0x043380,5, 0x0433a0,5, 0x0433c0,5, 0x0433e0,5, 0x043400,5, 0x043420,5, 0x043440,5, 0x043460,5, 0x043480,5, 0x0434a0,5, 0x0434c0,5, 0x0434e0,5, 0x043500,5, 0x043520,5, 0x043540,5, 0x043560,5, 0x043580,5, 0x0435a0,5, 0x0435c0,5, 0x0435e0,5, 0x043600,5, 0x043620,5, 0x043640,5, 0x043660,5, 0x043680,5, 0x0436a0,5, 0x0436c0,5, 0x0436e0,5, 0x043700,5, 0x043720,5, 0x043740,5, 0x043760,5, 0x043780,5, 0x0437a0,5, 0x0437c0,5, 0x0437e0,5, 0x043800,5, 0x043820,5, 0x043840,5, 0x043860,5, 0x043880,5, 0x0438a0,5, 0x0438c0,5, 0x0438e0,5, 0x043900,5, 0x043920,5, 0x043940,5, 0x043960,5, 0x043980,5, 0x0439a0,5, 0x0439c0,5, 0x0439e0,5, 0x043a00,5, 0x043a20,5, 0x043a40,5, 0x043a60,5, 0x043a80,5, 0x043aa0,5, 0x043ac0,5, 0x043ae0,5, 0x043b00,5, 0x043b20,5, 0x043b40,5, 0x043b60,5, 0x043b80,5, 0x043ba0,5, 0x043bc0,5, 0x043be0,5, 0x043c00,5, 0x043c20,5, 0x043c40,5, 0x043c60,5, 0x043c80,5, 0x043ca0,5, 0x043cc0,5, 0x043ce0,5, 0x043d00,5, 0x043d20,5, 0x043d40,5, 0x043d60,5, 0x043d80,5, 0x043da0,5, 0x043dc0,5, 0x043de0,5, 0x043e00,5, 0x043e20,5, 0x043e40,5, 0x043e60,5, 0x043e80,5, 0x043ea0,5, 0x043ec0,5, 0x043ee0,5, 0x043f00,5, 0x043f20,5, 0x043f40,5, 0x043f60,5, 0x043f80,5, 0x043fa0,5, 0x043fc0,5, 0x043fe0,5, 0x044004,32, 0x04408c,6, 0x0440a8,4, 0x0440c8,3, 0x0440d8,2, 0x0440e8,3, 0x0440f8,5, 0x044200,8, 0x044240,48, 0x044320,3, 0x044ec8,4, 0x044fc8,202, 0x045300,48, 0x045400,25, 0x045468,22, 0x046480,23, 0x047000,60, 0x047ff0,2, 0x048000,5, 0x048020,5, 0x048040,5, 0x048060,5, 0x048080,5, 0x0480a0,5, 0x0480c0,5, 0x0480e0,5, 0x048100,5, 0x048120,5, 0x048140,5, 0x048160,5, 0x048180,5, 0x0481a0,5, 0x0481c0,5, 0x0481e0,5, 0x048200,5, 0x048220,5, 0x048240,5, 0x048260,5, 0x048280,5, 0x0482a0,5, 0x0482c0,5, 0x0482e0,5, 0x048300,5, 0x048320,5, 0x048340,5, 0x048360,5, 0x048380,5, 0x0483a0,5, 0x0483c0,5, 0x0483e0,5, 0x048400,5, 0x048420,5, 0x048440,5, 0x048460,5, 0x048480,5, 0x0484a0,5, 0x0484c0,5, 0x0484e0,5, 0x048500,5, 0x048520,5, 0x048540,5, 0x048560,5, 0x048580,5, 0x0485a0,5, 0x0485c0,5, 0x0485e0,5, 0x048600,5, 0x048620,5, 0x048640,5, 0x048660,5, 0x048680,5, 0x0486a0,5, 0x0486c0,5, 0x0486e0,5, 0x048700,5, 0x048720,5, 0x048740,5, 0x048760,5, 0x048780,5, 0x0487a0,5, 0x0487c0,5, 0x0487e0,5, 0x048800,5, 0x048820,5, 0x048840,5, 0x048860,5, 0x048880,5, 0x0488a0,5, 0x0488c0,5, 0x0488e0,5, 0x048900,5, 0x048920,5, 0x048940,5, 0x048960,5, 0x048980,5, 0x0489a0,5, 0x0489c0,5, 0x0489e0,5, 0x048a00,5, 0x048a20,5, 0x048a40,5, 0x048a60,5, 0x048a80,5, 0x048aa0,5, 0x048ac0,5, 0x048ae0,5, 0x048b00,5, 0x048b20,5, 0x048b40,5, 0x048b60,5, 0x048b80,5, 0x048ba0,5, 0x048bc0,5, 0x048be0,5, 0x048c00,5, 0x048c20,5, 0x048c40,5, 0x048c60,5, 0x048c80,5, 0x048ca0,5, 0x048cc0,5, 0x048ce0,5, 0x048d00,5, 0x048d20,5, 0x048d40,5, 0x048d60,5, 0x048d80,5, 0x048da0,5, 0x048dc0,5, 0x048de0,5, 0x048e00,5, 0x048e20,5, 0x048e40,5, 0x048e60,5, 0x048e80,5, 0x048ea0,5, 0x048ec0,5, 0x048ee0,5, 0x048f00,5, 0x048f20,5, 0x048f40,5, 0x048f60,5, 0x048f80,5, 0x048fa0,5, 0x048fc0,5, 0x048fe0,5, 0x049000,5, 0x049020,5, 0x049040,5, 0x049060,5, 0x049080,5, 0x0490a0,5, 0x0490c0,5, 0x0490e0,5, 0x049100,5, 0x049120,5, 0x049140,5, 0x049160,5, 0x049180,5, 0x0491a0,5, 0x0491c0,5, 0x0491e0,5, 0x049200,5, 0x049220,5, 0x049240,5, 0x049260,5, 0x049280,5, 0x0492a0,5, 0x0492c0,5, 0x0492e0,5, 0x049300,5, 0x049320,5, 0x049340,5, 0x049360,5, 0x049380,5, 0x0493a0,5, 0x0493c0,5, 0x0493e0,5, 0x049400,5, 0x049420,5, 0x049440,5, 0x049460,5, 0x049480,5, 0x0494a0,5, 0x0494c0,5, 0x0494e0,5, 0x049500,5, 0x049520,5, 0x049540,5, 0x049560,5, 0x049580,5, 0x0495a0,5, 0x0495c0,5, 0x0495e0,5, 0x049600,5, 0x049620,5, 0x049640,5, 0x049660,5, 0x049680,5, 0x0496a0,5, 0x0496c0,5, 0x0496e0,5, 0x049700,5, 0x049720,5, 0x049740,5, 0x049760,5, 0x049780,5, 0x0497a0,5, 0x0497c0,5, 0x0497e0,5, 0x049800,5, 0x049820,5, 0x049840,5, 0x049860,5, 0x049880,5, 0x0498a0,5, 0x0498c0,5, 0x0498e0,5, 0x049900,5, 0x049920,5, 0x049940,5, 0x049960,5, 0x049980,5, 0x0499a0,5, 0x0499c0,5, 0x0499e0,5, 0x049a00,5, 0x049a20,5, 0x049a40,5, 0x049a60,5, 0x049a80,5, 0x049aa0,5, 0x049ac0,5, 0x049ae0,5, 0x049b00,5, 0x049b20,5, 0x049b40,5, 0x049b60,5, 0x049b80,5, 0x049ba0,5, 0x049bc0,5, 0x049be0,5, 0x049c00,5, 0x049c20,5, 0x049c40,5, 0x049c60,5, 0x049c80,5, 0x049ca0,5, 0x049cc0,5, 0x049ce0,5, 0x049d00,5, 0x049d20,5, 0x049d40,5, 0x049d60,5, 0x049d80,5, 0x049da0,5, 0x049dc0,5, 0x049de0,5, 0x049e00,5, 0x049e20,5, 0x049e40,5, 0x049e60,5, 0x049e80,5, 0x049ea0,5, 0x049ec0,5, 0x049ee0,5, 0x049f00,5, 0x049f20,5, 0x049f40,5, 0x049f60,5, 0x049f80,5, 0x049fa0,5, 0x049fc0,5, 0x049fe0,5, 0x04a000,5, 0x04a020,5, 0x04a040,5, 0x04a060,5, 0x04a080,5, 0x04a0a0,5, 0x04a0c0,5, 0x04a0e0,5, 0x04a100,5, 0x04a120,5, 0x04a140,5, 0x04a160,5, 0x04a180,5, 0x04a1a0,5, 0x04a1c0,5, 0x04a1e0,5, 0x04a200,5, 0x04a220,5, 0x04a240,5, 0x04a260,5, 0x04a280,5, 0x04a2a0,5, 0x04a2c0,5, 0x04a2e0,5, 0x04a300,5, 0x04a320,5, 0x04a340,5, 0x04a360,5, 0x04a380,5, 0x04a3a0,5, 0x04a3c0,5, 0x04a3e0,5, 0x04a400,5, 0x04a420,5, 0x04a440,5, 0x04a460,5, 0x04a480,5, 0x04a4a0,5, 0x04a4c0,5, 0x04a4e0,5, 0x04a500,5, 0x04a520,5, 0x04a540,5, 0x04a560,5, 0x04a580,5, 0x04a5a0,5, 0x04a5c0,5, 0x04a5e0,5, 0x04a600,5, 0x04a620,5, 0x04a640,5, 0x04a660,5, 0x04a680,5, 0x04a6a0,5, 0x04a6c0,5, 0x04a6e0,5, 0x04a700,5, 0x04a720,5, 0x04a740,5, 0x04a760,5, 0x04a780,5, 0x04a7a0,5, 0x04a7c0,5, 0x04a7e0,5, 0x04a800,5, 0x04a820,5, 0x04a840,5, 0x04a860,5, 0x04a880,5, 0x04a8a0,5, 0x04a8c0,5, 0x04a8e0,5, 0x04a900,5, 0x04a920,5, 0x04a940,5, 0x04a960,5, 0x04a980,5, 0x04a9a0,5, 0x04a9c0,5, 0x04a9e0,5, 0x04aa00,5, 0x04aa20,5, 0x04aa40,5, 0x04aa60,5, 0x04aa80,5, 0x04aaa0,5, 0x04aac0,5, 0x04aae0,5, 0x04ab00,5, 0x04ab20,5, 0x04ab40,5, 0x04ab60,5, 0x04ab80,5, 0x04aba0,5, 0x04abc0,5, 0x04abe0,5, 0x04ac00,5, 0x04ac20,5, 0x04ac40,5, 0x04ac60,5, 0x04ac80,5, 0x04aca0,5, 0x04acc0,5, 0x04ace0,5, 0x04ad00,5, 0x04ad20,5, 0x04ad40,5, 0x04ad60,5, 0x04ad80,5, 0x04ada0,5, 0x04adc0,5, 0x04ade0,5, 0x04ae00,5, 0x04ae20,5, 0x04ae40,5, 0x04ae60,5, 0x04ae80,5, 0x04aea0,5, 0x04aec0,5, 0x04aee0,5, 0x04af00,5, 0x04af20,5, 0x04af40,5, 0x04af60,5, 0x04af80,5, 0x04afa0,5, 0x04afc0,5, 0x04afe0,5, 0x04b000,5, 0x04b020,5, 0x04b040,5, 0x04b060,5, 0x04b080,5, 0x04b0a0,5, 0x04b0c0,5, 0x04b0e0,5, 0x04b100,5, 0x04b120,5, 0x04b140,5, 0x04b160,5, 0x04b180,5, 0x04b1a0,5, 0x04b1c0,5, 0x04b1e0,5, 0x04b200,5, 0x04b220,5, 0x04b240,5, 0x04b260,5, 0x04b280,5, 0x04b2a0,5, 0x04b2c0,5, 0x04b2e0,5, 0x04b300,5, 0x04b320,5, 0x04b340,5, 0x04b360,5, 0x04b380,5, 0x04b3a0,5, 0x04b3c0,5, 0x04b3e0,5, 0x04b400,5, 0x04b420,5, 0x04b440,5, 0x04b460,5, 0x04b480,5, 0x04b4a0,5, 0x04b4c0,5, 0x04b4e0,5, 0x04b500,5, 0x04b520,5, 0x04b540,5, 0x04b560,5, 0x04b580,5, 0x04b5a0,5, 0x04b5c0,5, 0x04b5e0,5, 0x04b600,5, 0x04b620,5, 0x04b640,5, 0x04b660,5, 0x04b680,5, 0x04b6a0,5, 0x04b6c0,5, 0x04b6e0,5, 0x04b700,5, 0x04b720,5, 0x04b740,5, 0x04b760,5, 0x04b780,5, 0x04b7a0,5, 0x04b7c0,5, 0x04b7e0,5, 0x04b800,5, 0x04b820,5, 0x04b840,5, 0x04b860,5, 0x04b880,5, 0x04b8a0,5, 0x04b8c0,5, 0x04b8e0,5, 0x04b900,5, 0x04b920,5, 0x04b940,5, 0x04b960,5, 0x04b980,5, 0x04b9a0,5, 0x04b9c0,5, 0x04b9e0,5, 0x04ba00,5, 0x04ba20,5, 0x04ba40,5, 0x04ba60,5, 0x04ba80,5, 0x04baa0,5, 0x04bac0,5, 0x04bae0,5, 0x04bb00,5, 0x04bb20,5, 0x04bb40,5, 0x04bb60,5, 0x04bb80,5, 0x04bba0,5, 0x04bbc0,5, 0x04bbe0,5, 0x04bc00,5, 0x04bc20,5, 0x04bc40,5, 0x04bc60,5, 0x04bc80,5, 0x04bca0,5, 0x04bcc0,5, 0x04bce0,5, 0x04bd00,5, 0x04bd20,5, 0x04bd40,5, 0x04bd60,5, 0x04bd80,5, 0x04bda0,5, 0x04bdc0,5, 0x04bde0,5, 0x04be00,5, 0x04be20,5, 0x04be40,5, 0x04be60,5, 0x04be80,5, 0x04bea0,5, 0x04bec0,5, 0x04bee0,5, 0x04bf00,5, 0x04bf20,5, 0x04bf40,5, 0x04bf60,5, 0x04bf80,5, 0x04bfa0,5, 0x04bfc0,5, 0x04bfe0,5, 0x04c000,5, 0x04c020,5, 0x04c040,5, 0x04c060,5, 0x04c080,5, 0x04c0a0,5, 0x04c0c0,5, 0x04c0e0,5, 0x04c100,5, 0x04c120,5, 0x04c140,5, 0x04c160,5, 0x04c180,5, 0x04c1a0,5, 0x04c1c0,5, 0x04c1e0,5, 0x04c200,5, 0x04c220,5, 0x04c240,5, 0x04c260,5, 0x04c280,5, 0x04c2a0,5, 0x04c2c0,5, 0x04c2e0,5, 0x04c300,5, 0x04c320,5, 0x04c340,5, 0x04c360,5, 0x04c380,5, 0x04c3a0,5, 0x04c3c0,5, 0x04c3e0,5, 0x04c400,5, 0x04c420,5, 0x04c440,5, 0x04c460,5, 0x04c480,5, 0x04c4a0,5, 0x04c4c0,5, 0x04c4e0,5, 0x04c500,5, 0x04c520,5, 0x04c540,5, 0x04c560,5, 0x04c580,5, 0x04c5a0,5, 0x04c5c0,5, 0x04c5e0,5, 0x04c600,5, 0x04c620,5, 0x04c640,5, 0x04c660,5, 0x04c680,5, 0x04c6a0,5, 0x04c6c0,5, 0x04c6e0,5, 0x04c700,5, 0x04c720,5, 0x04c740,5, 0x04c760,5, 0x04c780,5, 0x04c7a0,5, 0x04c7c0,5, 0x04c7e0,5, 0x04c800,5, 0x04c820,5, 0x04c840,5, 0x04c860,5, 0x04c880,5, 0x04c8a0,5, 0x04c8c0,5, 0x04c8e0,5, 0x04c900,5, 0x04c920,5, 0x04c940,5, 0x04c960,5, 0x04c980,5, 0x04c9a0,5, 0x04c9c0,5, 0x04c9e0,5, 0x04ca00,5, 0x04ca20,5, 0x04ca40,5, 0x04ca60,5, 0x04ca80,5, 0x04caa0,5, 0x04cac0,5, 0x04cae0,5, 0x04cb00,5, 0x04cb20,5, 0x04cb40,5, 0x04cb60,5, 0x04cb80,5, 0x04cba0,5, 0x04cbc0,5, 0x04cbe0,5, 0x04cc00,5, 0x04cc20,5, 0x04cc40,5, 0x04cc60,5, 0x04cc80,5, 0x04cca0,5, 0x04ccc0,5, 0x04cce0,5, 0x04cd00,5, 0x04cd20,5, 0x04cd40,5, 0x04cd60,5, 0x04cd80,5, 0x04cda0,5, 0x04cdc0,5, 0x04cde0,5, 0x04ce00,5, 0x04ce20,5, 0x04ce40,5, 0x04ce60,5, 0x04ce80,5, 0x04cea0,5, 0x04cec0,5, 0x04cee0,5, 0x04cf00,5, 0x04cf20,5, 0x04cf40,5, 0x04cf60,5, 0x04cf80,5, 0x04cfa0,5, 0x04cfc0,5, 0x04cfe0,5, 0x050004,1, 0x05000c,5, 0x05900c,10, 0x05903c,1, 0x059080,4, 0x05a000,1, 0x05a008,1, 0x05a010,1, 0x05a018,1, 0x05a020,1, 0x05a028,1, 0x05a030,1, 0x05a038,1, 0x05a040,1, 0x05a048,1, 0x05a050,1, 0x05a058,1, 0x05a060,1, 0x05a068,1, 0x05a070,1, 0x05a078,1, 0x05a080,1, 0x05a088,1, 0x05a090,1, 0x05a098,1, 0x05a0a0,1, 0x05a0a8,1, 0x05a0b0,1, 0x05a0b8,1, 0x05a0c0,1, 0x05a0c8,1, 0x05a0d0,1, 0x05a0d8,1, 0x05a0e0,1, 0x05a0e8,1, 0x05a0f0,1, 0x05a0f8,1, 0x05a100,1, 0x05a108,1, 0x05a110,1, 0x05a118,1, 0x05a120,1, 0x05a128,1, 0x05a130,1, 0x05a138,1, 0x05a140,1, 0x05a148,1, 0x05a150,1, 0x05a158,1, 0x05a160,1, 0x05a168,1, 0x05a170,1, 0x05a178,1, 0x05a180,1, 0x05a188,1, 0x05a190,1, 0x05a198,1, 0x05a1a0,1, 0x05a1a8,1, 0x05a1b0,1, 0x05a1b8,1, 0x05a1c0,1, 0x05a1c8,1, 0x05a1d0,1, 0x05a1d8,1, 0x05a1e0,1, 0x05a1e8,1, 0x05a1f0,1, 0x05a1f8,1, 0x05a200,1, 0x05a208,1, 0x05a210,1, 0x05a218,1, 0x05a220,1, 0x05a228,1, 0x05a230,1, 0x05a238,1, 0x05a240,1, 0x05a248,1, 0x05a250,1, 0x05a258,1, 0x05a260,1, 0x05a268,1, 0x05a270,1, 0x05a278,1, 0x05a280,1, 0x05a288,1, 0x05a290,1, 0x05a298,1, 0x05a2a0,1, 0x05a2a8,1, 0x05a2b0,1, 0x05a2b8,1, 0x05a2c0,1, 0x05a2c8,1, 0x05a2d0,1, 0x05a2d8,1, 0x05a2e0,1, 0x05a2e8,1, 0x05a2f0,1, 0x05a2f8,1, 0x05a300,1, 0x05a308,1, 0x05a310,1, 0x05a318,1, 0x05a320,1, 0x05a328,1, 0x05a330,1, 0x05a338,1, 0x05a340,1, 0x05a348,1, 0x05a350,1, 0x05a358,1, 0x05a360,1, 0x05a368,1, 0x05a370,1, 0x05a378,1, 0x05a380,1, 0x05a388,1, 0x05a390,1, 0x05a398,1, 0x05a3a0,1, 0x05a3a8,1, 0x05a3b0,1, 0x05a3b8,1, 0x05a3c0,1, 0x05a3c8,1, 0x05a3d0,1, 0x05a3d8,1, 0x05a3e0,1, 0x05a3e8,1, 0x05a3f0,1, 0x05a3f8,1, 0x05a400,1, 0x05a408,1, 0x05a410,1, 0x05a418,1, 0x05a420,1, 0x05a428,1, 0x05a430,1, 0x05a438,1, 0x05a440,1, 0x05a448,1, 0x05a450,1, 0x05a458,1, 0x05a460,1, 0x05a468,1, 0x05a470,1, 0x05a478,1, 0x05a480,1, 0x05a488,1, 0x05a490,1, 0x05a498,1, 0x05a4a0,1, 0x05a4a8,1, 0x05a4b0,1, 0x05a4b8,1, 0x05a4c0,1, 0x05a4c8,1, 0x05a4d0,1, 0x05a4d8,1, 0x05a4e0,1, 0x05a4e8,1, 0x05a4f0,1, 0x05a4f8,1, 0x05a500,1, 0x05a508,1, 0x05a510,1, 0x05a518,1, 0x05a520,1, 0x05a528,1, 0x05a530,1, 0x05a538,1, 0x05a540,1, 0x05a548,1, 0x05a550,1, 0x05a558,1, 0x05a560,1, 0x05a568,1, 0x05a570,1, 0x05a578,1, 0x05a580,1, 0x05a588,1, 0x05a590,1, 0x05a598,1, 0x05a5a0,1, 0x05a5a8,1, 0x05a5b0,1, 0x05a5b8,1, 0x05a5c0,1, 0x05a5c8,1, 0x05a5d0,1, 0x05a5d8,1, 0x05a5e0,1, 0x05a5e8,1, 0x05a5f0,1, 0x05a5f8,1, 0x05a600,1, 0x05a608,1, 0x05a610,1, 0x05a618,1, 0x05a620,1, 0x05a628,1, 0x05a630,1, 0x05a638,1, 0x05a640,1, 0x05a648,1, 0x05a650,1, 0x05a658,1, 0x05a660,1, 0x05a668,1, 0x05a670,1, 0x05a678,1, 0x05a680,1, 0x05a688,1, 0x05a690,1, 0x05a698,1, 0x05a6a0,1, 0x05a6a8,1, 0x05a6b0,1, 0x05a6b8,1, 0x05a6c0,1, 0x05a6c8,1, 0x05a6d0,1, 0x05a6d8,1, 0x05a6e0,1, 0x05a6e8,1, 0x05a6f0,1, 0x05a6f8,1, 0x05a700,1, 0x05a708,1, 0x05a710,1, 0x05a718,1, 0x05a720,1, 0x05a728,1, 0x05a730,1, 0x05a738,1, 0x05a740,1, 0x05a748,1, 0x05a750,1, 0x05a758,1, 0x05a760,1, 0x05a768,1, 0x05a770,1, 0x05a778,1, 0x05a780,1, 0x05a788,1, 0x05a790,1, 0x05a798,1, 0x05a7a0,1, 0x05a7a8,1, 0x05a7b0,1, 0x05a7b8,1, 0x05a7c0,1, 0x05a7c8,1, 0x05a7d0,1, 0x05a7d8,1, 0x05a7e0,1, 0x05a7e8,1, 0x05a7f0,1, 0x05a7f8,1, 0x05a800,1, 0x05a808,1, 0x05a810,1, 0x05a818,1, 0x05a820,1, 0x05a828,1, 0x05a830,1, 0x05a838,1, 0x05a840,1, 0x05a848,1, 0x05a850,1, 0x05a858,1, 0x05a860,1, 0x05a868,1, 0x05a870,1, 0x05a878,1, 0x05a880,1, 0x05a888,1, 0x05a890,1, 0x05a898,1, 0x05a8a0,1, 0x05a8a8,1, 0x05a8b0,1, 0x05a8b8,1, 0x05a8c0,1, 0x05a8c8,1, 0x05a8d0,1, 0x05a8d8,1, 0x05a8e0,1, 0x05a8e8,1, 0x05a8f0,1, 0x05a8f8,1, 0x05a900,1, 0x05a908,1, 0x05a910,1, 0x05a918,1, 0x05a920,1, 0x05a928,1, 0x05a930,1, 0x05a938,1, 0x05a940,1, 0x05a948,1, 0x05a950,1, 0x05a958,1, 0x05a960,1, 0x05a968,1, 0x05a970,1, 0x05a978,1, 0x05a980,1, 0x05a988,1, 0x05a990,1, 0x05a998,1, 0x05a9a0,1, 0x05a9a8,1, 0x05a9b0,1, 0x05a9b8,1, 0x05a9c0,1, 0x05a9c8,1, 0x05a9d0,1, 0x05a9d8,1, 0x05a9e0,1, 0x05a9e8,1, 0x05a9f0,1, 0x05a9f8,1, 0x05aa00,1, 0x05aa08,1, 0x05aa10,1, 0x05aa18,1, 0x05aa20,1, 0x05aa28,1, 0x05aa30,1, 0x05aa38,1, 0x05aa40,1, 0x05aa48,1, 0x05aa50,1, 0x05aa58,1, 0x05aa60,1, 0x05aa68,1, 0x05aa70,1, 0x05aa78,1, 0x05aa80,1, 0x05aa88,1, 0x05aa90,1, 0x05aa98,1, 0x05aaa0,1, 0x05aaa8,1, 0x05aab0,1, 0x05aab8,1, 0x05aac0,1, 0x05aac8,1, 0x05aad0,1, 0x05aad8,1, 0x05aae0,1, 0x05aae8,1, 0x05aaf0,1, 0x05aaf8,1, 0x05ab00,1, 0x05ab08,1, 0x05ab10,1, 0x05ab18,1, 0x05ab20,1, 0x05ab28,1, 0x05ab30,1, 0x05ab38,1, 0x05ab40,1, 0x05ab48,1, 0x05ab50,1, 0x05ab58,1, 0x05ab60,1, 0x05ab68,1, 0x05ab70,1, 0x05ab78,1, 0x05ab80,1, 0x05ab88,1, 0x05ab90,1, 0x05ab98,1, 0x05aba0,1, 0x05aba8,1, 0x05abb0,1, 0x05abb8,1, 0x05abc0,1, 0x05abc8,1, 0x05abd0,1, 0x05abd8,1, 0x05abe0,1, 0x05abe8,1, 0x05abf0,1, 0x05abf8,1, 0x05ac00,1, 0x05ac08,1, 0x05ac10,1, 0x05ac18,1, 0x05ac20,1, 0x05ac28,1, 0x05ac30,1, 0x05ac38,1, 0x05ac40,1, 0x05ac48,1, 0x05ac50,1, 0x05ac58,1, 0x05ac60,1, 0x05ac68,1, 0x05ac70,1, 0x05ac78,1, 0x05ac80,1, 0x05ac88,1, 0x05ac90,1, 0x05ac98,1, 0x05aca0,1, 0x05aca8,1, 0x05acb0,1, 0x05acb8,1, 0x05acc0,1, 0x05acc8,1, 0x05acd0,1, 0x05acd8,1, 0x05ace0,1, 0x05ace8,1, 0x05acf0,1, 0x05acf8,1, 0x05ad00,1, 0x05ad08,1, 0x05ad10,1, 0x05ad18,1, 0x05ad20,1, 0x05ad28,1, 0x05ad30,1, 0x05ad38,1, 0x05ad40,1, 0x05ad48,1, 0x05ad50,1, 0x05ad58,1, 0x05ad60,1, 0x05ad68,1, 0x05ad70,1, 0x05ad78,1, 0x05ad80,1, 0x05ad88,1, 0x05ad90,1, 0x05ad98,1, 0x05ada0,1, 0x05ada8,1, 0x05adb0,1, 0x05adb8,1, 0x05adc0,1, 0x05adc8,1, 0x05add0,1, 0x05add8,1, 0x05ade0,1, 0x05ade8,1, 0x05adf0,1, 0x05adf8,1, 0x05ae00,1, 0x05ae08,1, 0x05ae10,1, 0x05ae18,1, 0x05ae20,1, 0x05ae28,1, 0x05ae30,1, 0x05ae38,1, 0x05ae40,1, 0x05ae48,1, 0x05ae50,1, 0x05ae58,1, 0x05ae60,1, 0x05ae68,1, 0x05ae70,1, 0x05ae78,1, 0x05ae80,1, 0x05ae88,1, 0x05ae90,1, 0x05ae98,1, 0x05aea0,1, 0x05aea8,1, 0x05aeb0,1, 0x05aeb8,1, 0x05aec0,1, 0x05aec8,1, 0x05aed0,1, 0x05aed8,1, 0x05aee0,1, 0x05aee8,1, 0x05aef0,1, 0x05aef8,1, 0x05af00,1, 0x05af08,1, 0x05af10,1, 0x05af18,1, 0x05af20,1, 0x05af28,1, 0x05af30,1, 0x05af38,1, 0x05af40,1, 0x05af48,1, 0x05af50,1, 0x05af58,1, 0x05af60,1, 0x05af68,1, 0x05af70,1, 0x05af78,1, 0x05af80,1, 0x05af88,1, 0x05af90,1, 0x05af98,1, 0x05afa0,1, 0x05afa8,1, 0x05afb0,1, 0x05afb8,1, 0x05afc0,1, 0x05afc8,1, 0x05afd0,1, 0x05afd8,1, 0x05afe0,1, 0x05afe8,1, 0x05aff0,1, 0x05aff8,1, 0x05b000,1, 0x05b008,1, 0x05b010,1, 0x05b018,1, 0x05b020,1, 0x05b028,1, 0x05b030,1, 0x05b038,1, 0x05b040,1, 0x05b048,1, 0x05b050,1, 0x05b058,1, 0x05b060,1, 0x05b068,1, 0x05b070,1, 0x05b078,1, 0x05b080,1, 0x05b088,1, 0x05b090,1, 0x05b098,1, 0x05b0a0,1, 0x05b0a8,1, 0x05b0b0,1, 0x05b0b8,1, 0x05b0c0,1, 0x05b0c8,1, 0x05b0d0,1, 0x05b0d8,1, 0x05b0e0,1, 0x05b0e8,1, 0x05b0f0,1, 0x05b0f8,1, 0x05b100,1, 0x05b108,1, 0x05b110,1, 0x05b118,1, 0x05b120,1, 0x05b128,1, 0x05b130,1, 0x05b138,1, 0x05b140,1, 0x05b148,1, 0x05b150,1, 0x05b158,1, 0x05b160,1, 0x05b168,1, 0x05b170,1, 0x05b178,1, 0x05b180,1, 0x05b188,1, 0x05b190,1, 0x05b198,1, 0x05b1a0,1, 0x05b1a8,1, 0x05b1b0,1, 0x05b1b8,1, 0x05b1c0,1, 0x05b1c8,1, 0x05b1d0,1, 0x05b1d8,1, 0x05b1e0,1, 0x05b1e8,1, 0x05b1f0,1, 0x05b1f8,1, 0x05b200,1, 0x05b208,1, 0x05b210,1, 0x05b218,1, 0x05b220,1, 0x05b228,1, 0x05b230,1, 0x05b238,1, 0x05b240,1, 0x05b248,1, 0x05b250,1, 0x05b258,1, 0x05b260,1, 0x05b268,1, 0x05b270,1, 0x05b278,1, 0x05b280,1, 0x05b288,1, 0x05b290,1, 0x05b298,1, 0x05b2a0,1, 0x05b2a8,1, 0x05b2b0,1, 0x05b2b8,1, 0x05b2c0,1, 0x05b2c8,1, 0x05b2d0,1, 0x05b2d8,1, 0x05b2e0,1, 0x05b2e8,1, 0x05b2f0,1, 0x05b2f8,1, 0x05b300,1, 0x05b308,1, 0x05b310,1, 0x05b318,1, 0x05b320,1, 0x05b328,1, 0x05b330,1, 0x05b338,1, 0x05b340,1, 0x05b348,1, 0x05b350,1, 0x05b358,1, 0x05b360,1, 0x05b368,1, 0x05b370,1, 0x05b378,1, 0x05b380,1, 0x05b388,1, 0x05b390,1, 0x05b398,1, 0x05b3a0,1, 0x05b3a8,1, 0x05b3b0,1, 0x05b3b8,1, 0x05b3c0,1, 0x05b3c8,1, 0x05b3d0,1, 0x05b3d8,1, 0x05b3e0,1, 0x05b3e8,1, 0x05b3f0,1, 0x05b3f8,1, 0x05b400,1, 0x05b408,1, 0x05b410,1, 0x05b418,1, 0x05b420,1, 0x05b428,1, 0x05b430,1, 0x05b438,1, 0x05b440,1, 0x05b448,1, 0x05b450,1, 0x05b458,1, 0x05b460,1, 0x05b468,1, 0x05b470,1, 0x05b478,1, 0x05b480,1, 0x05b488,1, 0x05b490,1, 0x05b498,1, 0x05b4a0,1, 0x05b4a8,1, 0x05b4b0,1, 0x05b4b8,1, 0x05b4c0,1, 0x05b4c8,1, 0x05b4d0,1, 0x05b4d8,1, 0x05b4e0,1, 0x05b4e8,1, 0x05b4f0,1, 0x05b4f8,1, 0x05b500,1, 0x05b508,1, 0x05b510,1, 0x05b518,1, 0x05b520,1, 0x05b528,1, 0x05b530,1, 0x05b538,1, 0x05b540,1, 0x05b548,1, 0x05b550,1, 0x05b558,1, 0x05b560,1, 0x05b568,1, 0x05b570,1, 0x05b578,1, 0x05b580,1, 0x05b588,1, 0x05b590,1, 0x05b598,1, 0x05b5a0,1, 0x05b5a8,1, 0x05b5b0,1, 0x05b5b8,1, 0x05b5c0,1, 0x05b5c8,1, 0x05b5d0,1, 0x05b5d8,1, 0x05b5e0,1, 0x05b5e8,1, 0x05b5f0,1, 0x05b5f8,1, 0x05b600,1, 0x05b608,1, 0x05b610,1, 0x05b618,1, 0x05b620,1, 0x05b628,1, 0x05b630,1, 0x05b638,1, 0x05b640,1, 0x05b648,1, 0x05b650,1, 0x05b658,1, 0x05b660,1, 0x05b668,1, 0x05b670,1, 0x05b678,1, 0x05b680,1, 0x05b688,1, 0x05b690,1, 0x05b698,1, 0x05b6a0,1, 0x05b6a8,1, 0x05b6b0,1, 0x05b6b8,1, 0x05b6c0,1, 0x05b6c8,1, 0x05b6d0,1, 0x05b6d8,1, 0x05b6e0,1, 0x05b6e8,1, 0x05b6f0,1, 0x05b6f8,1, 0x05b700,1, 0x05b708,1, 0x05b710,1, 0x05b718,1, 0x05b720,1, 0x05b728,1, 0x05b730,1, 0x05b738,1, 0x05b740,1, 0x05b748,1, 0x05b750,1, 0x05b758,1, 0x05b760,1, 0x05b768,1, 0x05b770,1, 0x05b778,1, 0x05b780,1, 0x05b788,1, 0x05b790,1, 0x05b798,1, 0x05b7a0,1, 0x05b7a8,1, 0x05b7b0,1, 0x05b7b8,1, 0x05b7c0,1, 0x05b7c8,1, 0x05b7d0,1, 0x05b7d8,1, 0x05b7e0,1, 0x05b7e8,1, 0x05b7f0,1, 0x05b7f8,1, 0x05b800,1, 0x05b808,1, 0x05b810,1, 0x05b818,1, 0x05b820,1, 0x05b828,1, 0x05b830,1, 0x05b838,1, 0x05b840,1, 0x05b848,1, 0x05b850,1, 0x05b858,1, 0x05b860,1, 0x05b868,1, 0x05b870,1, 0x05b878,1, 0x05b880,1, 0x05b888,1, 0x05b890,1, 0x05b898,1, 0x05b8a0,1, 0x05b8a8,1, 0x05b8b0,1, 0x05b8b8,1, 0x05b8c0,1, 0x05b8c8,1, 0x05b8d0,1, 0x05b8d8,1, 0x05b8e0,1, 0x05b8e8,1, 0x05b8f0,1, 0x05b8f8,1, 0x05b900,1, 0x05b908,1, 0x05b910,1, 0x05b918,1, 0x05b920,1, 0x05b928,1, 0x05b930,1, 0x05b938,1, 0x05b940,1, 0x05b948,1, 0x05b950,1, 0x05b958,1, 0x05b960,1, 0x05b968,1, 0x05b970,1, 0x05b978,1, 0x05b980,1, 0x05b988,1, 0x05b990,1, 0x05b998,1, 0x05b9a0,1, 0x05b9a8,1, 0x05b9b0,1, 0x05b9b8,1, 0x05b9c0,1, 0x05b9c8,1, 0x05b9d0,1, 0x05b9d8,1, 0x05b9e0,1, 0x05b9e8,1, 0x05b9f0,1, 0x05b9f8,1, 0x05ba00,1, 0x05ba08,1, 0x05ba10,1, 0x05ba18,1, 0x05ba20,1, 0x05ba28,1, 0x05ba30,1, 0x05ba38,1, 0x05ba40,1, 0x05ba48,1, 0x05ba50,1, 0x05ba58,1, 0x05ba60,1, 0x05ba68,1, 0x05ba70,1, 0x05ba78,1, 0x05ba80,1, 0x05ba88,1, 0x05ba90,1, 0x05ba98,1, 0x05baa0,1, 0x05baa8,1, 0x05bab0,1, 0x05bab8,1, 0x05bac0,1, 0x05bac8,1, 0x05bad0,1, 0x05bad8,1, 0x05bae0,1, 0x05bae8,1, 0x05baf0,1, 0x05baf8,1, 0x05bb00,1, 0x05bb08,1, 0x05bb10,1, 0x05bb18,1, 0x05bb20,1, 0x05bb28,1, 0x05bb30,1, 0x05bb38,1, 0x05bb40,1, 0x05bb48,1, 0x05bb50,1, 0x05bb58,1, 0x05bb60,1, 0x05bb68,1, 0x05bb70,1, 0x05bb78,1, 0x05bb80,1, 0x05bb88,1, 0x05bb90,1, 0x05bb98,1, 0x05bba0,1, 0x05bba8,1, 0x05bbb0,1, 0x05bbb8,1, 0x05bbc0,1, 0x05bbc8,1, 0x05bbd0,1, 0x05bbd8,1, 0x05bbe0,1, 0x05bbe8,1, 0x05bbf0,1, 0x05bbf8,1, 0x05bc00,1, 0x05bc08,1, 0x05bc10,1, 0x05bc18,1, 0x05bc20,1, 0x05bc28,1, 0x05bc30,1, 0x05bc38,1, 0x05bc40,1, 0x05bc48,1, 0x05bc50,1, 0x05bc58,1, 0x05bc60,1, 0x05bc68,1, 0x05bc70,1, 0x05bc78,1, 0x05bc80,1, 0x05bc88,1, 0x05bc90,1, 0x05bc98,1, 0x05bca0,1, 0x05bca8,1, 0x05bcb0,1, 0x05bcb8,1, 0x05bcc0,1, 0x05bcc8,1, 0x05bcd0,1, 0x05bcd8,1, 0x05bce0,1, 0x05bce8,1, 0x05bcf0,1, 0x05bcf8,1, 0x05bd00,1, 0x05bd08,1, 0x05bd10,1, 0x05bd18,1, 0x05bd20,1, 0x05bd28,1, 0x05bd30,1, 0x05bd38,1, 0x05bd40,1, 0x05bd48,1, 0x05bd50,1, 0x05bd58,1, 0x05bd60,1, 0x05bd68,1, 0x05bd70,1, 0x05bd78,1, 0x05bd80,1, 0x05bd88,1, 0x05bd90,1, 0x05bd98,1, 0x05bda0,1, 0x05bda8,1, 0x05bdb0,1, 0x05bdb8,1, 0x05bdc0,1, 0x05bdc8,1, 0x05bdd0,1, 0x05bdd8,1, 0x05bde0,1, 0x05bde8,1, 0x05bdf0,1, 0x05bdf8,1, 0x05be00,1, 0x05be08,1, 0x05be10,1, 0x05be18,1, 0x05be20,1, 0x05be28,1, 0x05be30,1, 0x05be38,1, 0x05be40,1, 0x05be48,1, 0x05be50,1, 0x05be58,1, 0x05be60,1, 0x05be68,1, 0x05be70,1, 0x05be78,1, 0x05be80,1, 0x05be88,1, 0x05be90,1, 0x05be98,1, 0x05bea0,1, 0x05bea8,1, 0x05beb0,1, 0x05beb8,1, 0x05bec0,1, 0x05bec8,1, 0x05bed0,1, 0x05bed8,1, 0x05bee0,1, 0x05bee8,1, 0x05bef0,1, 0x05bef8,1, 0x05bf00,1, 0x05bf08,1, 0x05bf10,1, 0x05bf18,1, 0x05bf20,1, 0x05bf28,1, 0x05bf30,1, 0x05bf38,1, 0x05bf40,1, 0x05bf48,1, 0x05bf50,1, 0x05bf58,1, 0x05bf60,1, 0x05bf68,1, 0x05bf70,1, 0x05bf78,1, 0x05bf80,1, 0x05bf88,1, 0x05bf90,1, 0x05bf98,1, 0x05bfa0,1, 0x05bfa8,1, 0x05bfb0,1, 0x05bfb8,1, 0x05bfc0,1, 0x05bfc8,1, 0x05bfd0,1, 0x05bfd8,1, 0x05bfe0,1, 0x05bfe8,1, 0x05bff0,1, 0x05bff8,1, 0x05c000,1024, 0x060400,5, 0x060500,6, 0x060520,6, 0x060600,6, 0x060700,7, 0x060800,64, 0x060940,1, 0x060a04,7, 0x060c00,4, 0x060d00,2, 0x060e00,4, 0x060f40,16, 0x060f88,2, 0x061000,34, 0x061100,34, 0x061200,34, 0x061300,34, 0x061400,34, 0x061500,34, 0x061600,34, 0x061700,34, 0x061800,34, 0x061900,34, 0x061a00,34, 0x061b00,34, 0x061c00,34, 0x061d00,34, 0x061e00,34, 0x061f00,34, 0x062100,2, 0x063000,3072, 0x066100,3, 0x068000,4, 0x068014,7, 0x068038,4, 0x068054,2, 0x0680a0,1, 0x0680b0,2, 0x0680c0,1, 0x0680d0,2, 0x068800,7, 0x068820,4, 0x068868,6, 0x068980,33, 0x068a20,1, 0x068a30,2, 0x068a80,2, 0x069000,4128, 0x06e000,2049, 0x07000c,6, 0x070028,3, 0x070040,12, 0x07007c,13, 0x0700bc,6, 0x0700d8,5, 0x0700f0,20, 0x070144,1, 0x070180,5, 0x0701fc,1, 0x070210,12, 0x070244,7, 0x070290,12, 0x0702c4,1, 0x0702d0,4, 0x070300,69, 0x070418,2, 0x070424,1, 0x07042c,1, 0x070434,3, 0x070448,1, 0x070450,1, 0x071000,33, 0x071100,33, 0x071200,33, 0x071300,33, 0x071400,33, 0x071500,33, 0x071600,33, 0x071700,33, 0x071800,33, 0x071900,33, 0x071a00,33, 0x071b00,33, 0x072000,67, 0x072200,67, 0x072400,67, 0x072600,67, 0x072800,67, 0x072a00,67, 0x072c00,67, 0x073000,33, 0x073100,33, 0x073200,33, 0x073300,33, 0x073400,33, 0x073500,33, 0x073600,33, 0x073700,33, 0x073800,33, 0x073900,33, 0x073a00,33, 0x073b00,33, 0x074000,1536, 0x076000,12, 0x077000,384, 0x077800,256, 0x078000,17, 0x078080,17, 0x078100,17, 0x078180,17, 0x078210,5, 0x078240,1, 0x078250,1, 0x078260,1, 0x078270,1, 0x078284,2, 0x0782d4,59, 0x078400,2, 0x078420,1, 0x078600,96, 0x078a60,5, 0x078a84,16, 0x078b00,32, 0x078b84,6, 0x078c20,10, 0x078c50,2, 0x078c5c,7, 0x078c80,4, 0x078ca0,1, 0x078cc0,9, 0x078e60,1, 0x078e80,10, 0x078ec0,2, 0x078ecc,1, 0x078ee0,6, 0x078f00,7, 0x078f20,7, 0x078f44,2, 0x078f50,2, 0x078f60,3, 0x078f70,1, 0x078f78,3, 0x078fb4,6, 0x078fd0,1, 0x079000,1, 0x079008,1, 0x079010,1, 0x079018,1, 0x079020,1, 0x079028,1, 0x079030,1, 0x079038,1, 0x079040,1, 0x079048,1, 0x079050,1, 0x079058,1, 0x079060,1, 0x079068,1, 0x079070,1, 0x079078,1, 0x079080,1, 0x079088,1, 0x079090,1, 0x079098,1, 0x0790a0,1, 0x0790a8,1, 0x0790b0,1, 0x0790b8,1, 0x0790c0,1, 0x0790c8,1, 0x0790d0,1, 0x0790d8,1, 0x0790e0,1, 0x0790e8,1, 0x0790f0,1, 0x0790f8,1, 0x079100,1, 0x079108,1, 0x079110,1, 0x079118,1, 0x079120,1, 0x079128,1, 0x079130,1, 0x079138,1, 0x079140,1, 0x079148,1, 0x079150,1, 0x079158,1, 0x079160,1, 0x079168,1, 0x079170,1, 0x079178,1, 0x079180,1, 0x079188,1, 0x079190,1, 0x079198,1, 0x0791a0,1, 0x0791a8,1, 0x0791b0,1, 0x0791b8,1, 0x0791c0,1, 0x0791c8,1, 0x0791d0,1, 0x0791d8,1, 0x0791e0,1, 0x0791e8,1, 0x0791f0,1, 0x0791f8,1, 0x079200,1, 0x079208,1, 0x079210,1, 0x079218,1, 0x079220,1, 0x079228,1, 0x079230,1, 0x079238,1, 0x079240,1, 0x079248,1, 0x079250,1, 0x079258,1, 0x079260,1, 0x079268,1, 0x079270,1, 0x079278,1, 0x079280,1, 0x079288,1, 0x079290,1, 0x079298,1, 0x0792a0,1, 0x0792a8,1, 0x0792b0,1, 0x0792b8,1, 0x0792c0,1, 0x0792c8,1, 0x0792d0,1, 0x0792d8,1, 0x0792e0,1, 0x0792e8,1, 0x0792f0,1, 0x0792f8,1, 0x079300,1, 0x079308,1, 0x079310,1, 0x079318,1, 0x079320,1, 0x079328,1, 0x079330,1, 0x079338,1, 0x079340,1, 0x079348,1, 0x079350,1, 0x079358,1, 0x079360,1, 0x079368,1, 0x079370,1, 0x079378,1, 0x079380,1, 0x079388,1, 0x079390,1, 0x079398,1, 0x0793a0,1, 0x0793a8,1, 0x0793b0,1, 0x0793b8,1, 0x0793c0,1, 0x0793c8,1, 0x0793d0,1, 0x0793d8,1, 0x0793e0,1, 0x0793e8,1, 0x0793f0,1, 0x0793f8,1, 0x079400,1, 0x079408,1, 0x079410,1, 0x079418,1, 0x079420,1, 0x079428,1, 0x079430,1, 0x079438,1, 0x079440,1, 0x079448,1, 0x079450,1, 0x079458,1, 0x079460,1, 0x079468,1, 0x079470,1, 0x079478,1, 0x079480,1, 0x079488,1, 0x079490,1, 0x079498,1, 0x0794a0,1, 0x0794a8,1, 0x0794b0,1, 0x0794b8,1, 0x0794c0,1, 0x0794c8,1, 0x0794d0,1, 0x0794d8,1, 0x0794e0,1, 0x0794e8,1, 0x0794f0,1, 0x0794f8,1, 0x079500,1, 0x079508,1, 0x079510,1, 0x079518,1, 0x079520,1, 0x079528,1, 0x079530,1, 0x079538,1, 0x079540,1, 0x079548,1, 0x079550,1, 0x079558,1, 0x079560,1, 0x079568,1, 0x079570,1, 0x079578,1, 0x079580,1, 0x079588,1, 0x079590,1, 0x079598,1, 0x0795a0,1, 0x0795a8,1, 0x0795b0,1, 0x0795b8,1, 0x0795c0,1, 0x0795c8,1, 0x0795d0,1, 0x0795d8,1, 0x0795e0,1, 0x0795e8,1, 0x0795f0,1, 0x0795f8,1, 0x079600,1, 0x079608,1, 0x079610,1, 0x079618,1, 0x079620,1, 0x079628,1, 0x079630,1, 0x079638,1, 0x079640,1, 0x079648,1, 0x079650,1, 0x079658,1, 0x079660,1, 0x079668,1, 0x079670,1, 0x079678,1, 0x079680,1, 0x079688,1, 0x079690,1, 0x079698,1, 0x0796a0,1, 0x0796a8,1, 0x0796b0,1, 0x0796b8,1, 0x0796c0,1, 0x0796c8,1, 0x0796d0,1, 0x0796d8,1, 0x0796e0,1, 0x0796e8,1, 0x0796f0,1, 0x0796f8,1, 0x079700,1, 0x079708,1, 0x079710,1, 0x079718,1, 0x079720,1, 0x079728,1, 0x079730,1, 0x079738,1, 0x079740,1, 0x079748,1, 0x079750,1, 0x079758,1, 0x079760,1, 0x079768,1, 0x079770,1, 0x079778,1, 0x079780,1, 0x079788,1, 0x079790,1, 0x079798,1, 0x0797a0,1, 0x0797a8,1, 0x0797b0,1, 0x0797b8,1, 0x0797c0,1, 0x0797c8,1, 0x0797d0,1, 0x0797d8,1, 0x0797e0,1, 0x0797e8,1, 0x0797f0,1, 0x0797f8,1, 0x079800,1, 0x079808,1, 0x079810,1, 0x079818,1, 0x079820,1, 0x079828,1, 0x079830,1, 0x079838,1, 0x079840,1, 0x079848,1, 0x079850,1, 0x079858,1, 0x079860,1, 0x079868,1, 0x079870,1, 0x079878,1, 0x079880,1, 0x079888,1, 0x079890,1, 0x079898,1, 0x0798a0,1, 0x0798a8,1, 0x0798b0,1, 0x0798b8,1, 0x0798c0,1, 0x0798c8,1, 0x0798d0,1, 0x0798d8,1, 0x0798e0,1, 0x0798e8,1, 0x0798f0,1, 0x0798f8,1, 0x079900,1, 0x079908,1, 0x079910,1, 0x079918,1, 0x079920,1, 0x079928,1, 0x079930,1, 0x079938,1, 0x079940,1, 0x079948,1, 0x079950,1, 0x079958,1, 0x079960,1, 0x079968,1, 0x079970,1, 0x079978,1, 0x079980,1, 0x079988,1, 0x079990,1, 0x079998,1, 0x0799a0,1, 0x0799a8,1, 0x0799b0,1, 0x0799b8,1, 0x0799c0,1, 0x0799c8,1, 0x0799d0,1, 0x0799d8,1, 0x0799e0,1, 0x0799e8,1, 0x0799f0,1, 0x0799f8,1, 0x079a00,1, 0x079a08,1, 0x079a10,1, 0x079a18,1, 0x079a20,1, 0x079a28,1, 0x079a30,1, 0x079a38,1, 0x079a40,1, 0x079a48,1, 0x079a50,1, 0x079a58,1, 0x079a60,1, 0x079a68,1, 0x079a70,1, 0x079a78,1, 0x079a80,1, 0x079a88,1, 0x079a90,1, 0x079a98,1, 0x079aa0,1, 0x079aa8,1, 0x079ab0,1, 0x079ab8,1, 0x079ac0,1, 0x079ac8,1, 0x079ad0,1, 0x079ad8,1, 0x079ae0,1, 0x079ae8,1, 0x079af0,1, 0x079af8,1, 0x079b00,1, 0x079b08,1, 0x079b10,1, 0x079b18,1, 0x079b20,1, 0x079b28,1, 0x079b30,1, 0x079b38,1, 0x079b40,1, 0x079b48,1, 0x079b50,1, 0x079b58,1, 0x079b60,1, 0x079b68,1, 0x079b70,1, 0x079b78,1, 0x079b80,1, 0x079b88,1, 0x079b90,1, 0x079b98,1, 0x079ba0,1, 0x079ba8,1, 0x079bb0,1, 0x079bb8,1, 0x079bc0,1, 0x079bc8,1, 0x079bd0,1, 0x079bd8,1, 0x079be0,1, 0x079be8,1, 0x079bf0,1, 0x079bf8,1, 0x079c00,1, 0x079c08,1, 0x079c10,1, 0x079c18,1, 0x079c20,1, 0x079c28,1, 0x079c30,1, 0x079c38,1, 0x079c40,1, 0x079c48,1, 0x079c50,1, 0x079c58,1, 0x079c60,1, 0x079c68,1, 0x079c70,1, 0x079c78,1, 0x079c80,1, 0x079c88,1, 0x079c90,1, 0x079c98,1, 0x079ca0,1, 0x079ca8,1, 0x079cb0,1, 0x079cb8,1, 0x079cc0,1, 0x079cc8,1, 0x079cd0,1, 0x079cd8,1, 0x079ce0,1, 0x079ce8,1, 0x079cf0,1, 0x079cf8,1, 0x079d00,1, 0x079d08,1, 0x079d10,1, 0x079d18,1, 0x079d20,1, 0x079d28,1, 0x079d30,1, 0x079d38,1, 0x079d40,1, 0x079d48,1, 0x079d50,1, 0x079d58,1, 0x079d60,1, 0x079d68,1, 0x079d70,1, 0x079d78,1, 0x079d80,1, 0x079d88,1, 0x079d90,1, 0x079d98,1, 0x079da0,1, 0x079da8,1, 0x079db0,1, 0x079db8,1, 0x079dc0,1, 0x079dc8,1, 0x079dd0,1, 0x079dd8,1, 0x079de0,1, 0x079de8,1, 0x079df0,1, 0x079df8,1, 0x079e00,1, 0x079e08,1, 0x079e10,1, 0x079e18,1, 0x079e20,1, 0x079e28,1, 0x079e30,1, 0x079e38,1, 0x079e40,1, 0x079e48,1, 0x079e50,1, 0x079e58,1, 0x079e60,1, 0x079e68,1, 0x079e70,1, 0x079e78,1, 0x079e80,1, 0x079e88,1, 0x079e90,1, 0x079e98,1, 0x079ea0,1, 0x079ea8,1, 0x079eb0,1, 0x079eb8,1, 0x079ec0,1, 0x079ec8,1, 0x079ed0,1, 0x079ed8,1, 0x079ee0,1, 0x079ee8,1, 0x079ef0,1, 0x079ef8,1, 0x079f00,1, 0x079f08,1, 0x079f10,1, 0x079f18,1, 0x079f20,1, 0x079f28,1, 0x079f30,1, 0x079f38,1, 0x079f40,1, 0x079f48,1, 0x079f50,1, 0x079f58,1, 0x079f60,1, 0x079f68,1, 0x079f70,1, 0x079f78,1, 0x079f80,1, 0x079f88,1, 0x079f90,1, 0x079f98,1, 0x079fa0,1, 0x079fa8,1, 0x079fb0,1, 0x079fb8,1, 0x079fc0,1, 0x079fc8,1, 0x079fd0,1, 0x079fd8,1, 0x079fe0,1, 0x079fe8,1, 0x079ff0,1, 0x079ff8,1, 0x07bef8,2, 0x07bf04,1, 0x07bf14,22, 0x07bf80,2, 0x07bffc,1033, 0x07e000,1044, 0x07f100,8, 0x07f160,4, 0x07f200,3, 0x07f300,20, 0x07f400,4, 0x07f7f8,514, 0x080680,7, 0x081000,3, 0x081010,21, 0x081104,2, 0x081120,1, 0x081130,2, 0x081140,1, 0x081150,2, 0x081160,1, 0x081170,2, 0x081204,21, 0x081304,2, 0x08139c,25, 0x081404,23, 0x081468,6, 0x081504,2, 0x081604,14, 0x081640,2, 0x08164c,15, 0x08168c,15, 0x0816cc,15, 0x08170c,15, 0x08174c,15, 0x08178c,15, 0x0817cc,15, 0x08180c,13, 0x081904,5, 0x081a30,4, 0x081a60,18, 0x081ab0,3, 0x081ad0,4, 0x081c00,128, 0x081e04,12, 0x082000,8, 0x082024,1, 0x082030,1, 0x082044,20, 0x08209c,2, 0x0820ac,14, 0x082180,1, 0x0821c4,1, 0x0821e0,1, 0x0821e8,3, 0x0821f8,1, 0x082200,10, 0x08229c,3, 0x0822e0,7, 0x082328,2, 0x082430,20, 0x082484,3, 0x082498,2, 0x082500,16, 0x082548,2, 0x082558,2, 0x082564,2, 0x082590,11, 0x0825c4,15, 0x0827fc,14, 0x082838,66, 0x082c00,13, 0x082c38,66, 0x083000,13, 0x083038,66, 0x083800,4, 0x083814,7, 0x083838,4, 0x083854,2, 0x0838a0,1, 0x0838b0,2, 0x0838c0,1, 0x0838d0,2, 0x083910,5, 0x083928,4, 0x083948,6, 0x0f0000,3, 0x0f0014,8, 0x0f0040,6, 0x0f0068,2, 0x0f0078,3, 0x0f0090,2, 0x0f00a4,2, 0x0f00b0,1, 0x0f00b8,38, 0x0f0180,17, 0x0f01e0,4, 0x0f01f4,1, 0x0f0200,4, 0x0f0220,1, 0x0f0250,5, 0x0f0270,2, 0x0f0280,3, 0x0f02a4,5, 0x0f02c0,3, 0x0f02d8,5, 0x0f02f0,4, 0x0f0400,2, 0x0f0410,4, 0x0f0440,1, 0x0f0450,2, 0x0f0460,4, 0x0f0510,34, 0x0f0600,64, 0x0f0714,9, 0x0f1000,9, 0x0f107c,1, 0x0f2000,2, 0x0f2010,3, 0x0f2020,2, 0x0f2030,3, 0x0f2040,2, 0x0f2050,3, 0x0f2060,2, 0x0f2070,3, 0x0f2080,2, 0x0f2090,3, 0x0f20a0,2, 0x0f20b0,3, 0x0f20c0,2, 0x0f20d0,3, 0x0f20e0,2, 0x0f20f0,3, 0x0f2100,3, 0x0f2110,25, 0x0f2178,3, 0x0f2190,2, 0x0f21a0,1, 0x0f21b0,2, 0x0f21c0,2, 0x0f2200,3, 0x0f2210,15, 0x0f2250,16, 0x0f229c,1, 0x0f22b0,9, 0x0f22e0,1, 0x0f22f0,3, 0x0f2300,12, 0x0f2334,4, 0x0f2358,1, 0x0f2380,1, 0x0f2394,2, 0x0f23ac,12, 0x0f23ec,4, 0x0f2400,3, 0x0f2410,15, 0x0f2450,16, 0x0f249c,1, 0x0f24b0,9, 0x0f24e0,1, 0x0f24f0,3, 0x0f2500,12, 0x0f2534,4, 0x0f2558,1, 0x0f2580,1, 0x0f2594,2, 0x0f25ac,12, 0x0f25ec,4, 0x0f2600,12, 0x0f264c,8, 0x0f2670,2, 0x0f267c,17, 0x0f2700,9, 0x0f2728,1, 0x0f2804,2, 0x0f2844,2, 0x0f2868,2, 0x0f2874,1, 0x0f2884,2, 0x0f28a8,2, 0x0f28b4,1, 0x0f28c4,2, 0x0f28e8,2, 0x0f28f4,1, 0x0f2904,2, 0x0f2928,2, 0x0f2934,1, 0x0f2a40,12, 0x0f2a80,5, 0x0f2aa0,12, 0x0f2b10,3, 0x0f2b20,7, 0x0f2b40,4, 0x0f2b80,1, 0x0f2c1c,9, 0x0f2c5c,9, 0x0f2c9c,9, 0x0f2cc4,1, 0x0f2ccc,1, 0x0f2cd4,1, 0x0f2e00,1, 0x0f2e08,7, 0x0f2e28,7, 0x0f2e48,7, 0x0f2e68,7, 0x0f2e88,7, 0x0f2ea8,7, 0x0f2ec8,7, 0x0f2ee8,7, 0x0f2f08,7, 0x0f2f28,7, 0x0f2f48,7, 0x0f2f68,7, 0x0f2f88,7, 0x0f2fa8,7, 0x0f2fc8,7, 0x0f2fe8,50, 0x0f30c0,13, 0x0f30fc,2, 0x0f310c,1, 0x0f3120,2, 0x0f3130,5, 0x0f3184,11, 0x0f31c4,3, 0x0f31e0,1, 0x0f31f0,2, 0x0f3204,1, 0x0f3210,5, 0x0f3240,1, 0x0f3248,12, 0x0f3280,8, 0x0f32a4,3, 0x0f32cc,1, 0x0f32d4,1, 0x0f32e0,11, 0x0f3400,11, 0x0f3430,3, 0x0f3444,2, 0x0f3554,10, 0x0f35c0,2, 0x0f35dc,7, 0x0f3600,16, 0x0f3644,1, 0x0f365c,11, 0x0f36a0,1, 0x0f36b0,2, 0x0f36c0,1, 0x0f36d0,2, 0x0f36e0,1, 0x0f36f0,2, 0x0f3700,5, 0x0f371c,4, 0x0f3740,4, 0x0f3760,1, 0x0f3770,2, 0x0f3780,1, 0x0f3790,2, 0x0f37a0,1, 0x0f37b0,2, 0x0f37c0,1, 0x0f37d0,2, 0x0f37e0,1, 0x0f37f0,2, 0x0f3800,3, 0x0f3810,18, 0x0f3878,6, 0x0f3894,3, 0x0f38c0,7, 0x0f38e0,6, 0x0f3900,8, 0x0f3924,6, 0x0f3940,17, 0x0f3998,1, 0x0f39a0,9, 0x0f3a00,1, 0x0f3a10,2, 0x0f3a20,1, 0x0f3a30,2, 0x0f3a40,1, 0x0f3a50,2, 0x0f3a60,1, 0x0f3a70,2, 0x0f3a80,1, 0x0f3a90,2, 0x0f3aa0,1, 0x0f3ab0,2, 0x0f3ac0,1, 0x0f3ad0,2, 0x0f3ae0,1, 0x0f3af0,2, 0x0f3b00,1, 0x0f3b10,2, 0x0f3b20,1, 0x0f3b30,2, 0x0f3b40,1, 0x0f3b50,2, 0x0f3b60,1, 0x0f3b70,2, 0x0f3b80,1, 0x0f3b90,2, 0x0f3ba0,3, 0x0f3c00,12, 0x0f3c34,6, 0x0f3c60,1, 0x0f3c70,2, 0x0f3c84,3, 0x0f3d00,1, 0x0f3d08,1, 0x0f3d14,1, 0x0f3d1c,3, 0x0f3d38,1, 0x0f3d40,1, 0x0f3d54,2, 0x0f3da0,1, 0x0f3db0,2, 0x0f3e00,76, 0x0f3f40,5, 0x0f3f60,4, mstflint-4.26.0/mstdump/mstdump_dbs/Spectrum2.csv0000644000175000017500000163053414522641732022332 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,19, 0x000480,26, 0x000500,4, 0x000800,19, 0x000880,26, 0x000900,4, 0x000c00,19, 0x000c80,26, 0x000d00,4, 0x001000,19, 0x001080,26, 0x001100,4, 0x001400,19, 0x001480,26, 0x001500,4, 0x001800,19, 0x001880,26, 0x001900,4, 0x001c00,19, 0x001c80,26, 0x001d00,4, 0x002000,19, 0x002080,26, 0x002100,4, 0x002400,19, 0x002480,26, 0x002500,4, 0x002800,19, 0x002880,26, 0x002900,4, 0x002c00,19, 0x002c80,26, 0x002d00,4, 0x003000,19, 0x003080,26, 0x003100,4, 0x003400,19, 0x003480,26, 0x003500,4, 0x003800,19, 0x003880,26, 0x003900,4, 0x003c00,19, 0x003c80,26, 0x003d00,4, 0x004000,19, 0x004080,26, 0x004100,4, 0x004400,19, 0x004480,14, 0x004500,4, 0x004800,19, 0x004880,16, 0x004900,4, 0x004c00,19, 0x004c80,10, 0x004d00,4, 0x005000,19, 0x005080,18, 0x005100,4, 0x005400,19, 0x005480,14, 0x005500,4, 0x005800,19, 0x005880,12, 0x005900,4, 0x005c00,19, 0x005c80,8, 0x005d00,4, 0x010800,3, 0x010814,10, 0x010840,11, 0x010870,35, 0x010900,8, 0x010924,5, 0x010980,2, 0x01098c,2, 0x0109a0,2, 0x0109c0,1, 0x010a00,12, 0x010a34,22, 0x010ac0,7, 0x010b00,8, 0x010b24,5, 0x010b80,2, 0x010b8c,2, 0x010ba0,2, 0x010bc0,1, 0x010c00,12, 0x010c40,12, 0x010c80,12, 0x010cc0,12, 0x010d00,12, 0x010d40,12, 0x010d80,12, 0x010dc0,12, 0x010e00,1, 0x010e08,13, 0x010e40,12, 0x010e80,3, 0x010f00,7, 0x010f44,8, 0x010f80,6, 0x010fa0,2, 0x011000,9, 0x011040,9, 0x011080,9, 0x0110c0,9, 0x011100,1, 0x011108,5, 0x011120,2, 0x011200,8, 0x011240,4, 0x011260,8, 0x011300,8, 0x011330,2, 0x011340,7, 0x011380,3, 0x011390,3, 0x0113a0,3, 0x0113b0,3, 0x0113c0,5, 0x011400,69, 0x011600,4, 0x011640,13, 0x011680,7, 0x0116a0,5, 0x0116c0,1, 0x012000,25, 0x012080,1, 0x012088,8, 0x0120c0,6, 0x0120e0,1, 0x0120e8,2, 0x012104,7, 0x012200,11, 0x012240,1, 0x012248,1, 0x012400,4, 0x013000,35, 0x014000,8, 0x014024,2, 0x014040,2, 0x014060,6, 0x014080,1, 0x0140f0,12, 0x014124,2, 0x014140,2, 0x014160,6, 0x014180,1, 0x0141f0,12, 0x014224,2, 0x014240,2, 0x014260,6, 0x014280,1, 0x0142f0,12, 0x014324,2, 0x014340,2, 0x014360,6, 0x014380,1, 0x0143f0,4, 0x014410,4, 0x0145f8,2, 0x015004,1, 0x015040,16, 0x015204,3, 0x015214,1, 0x01521c,1, 0x015224,1, 0x01522c,1, 0x015400,3, 0x015420,8, 0x015500,40, 0x0155a4,2, 0x0155b0,3, 0x015600,37, 0x015700,17, 0x015748,2, 0x015780,16, 0x015800,25, 0x015880,1, 0x015888,8, 0x0158c0,6, 0x0158e0,1, 0x0158e8,2, 0x015904,26, 0x015a00,4, 0x015b00,61, 0x015c00,4, 0x015c40,12, 0x015c80,5, 0x015ca0,1, 0x015cb0,1, 0x016000,3, 0x016010,3, 0x016020,3, 0x016030,3, 0x016040,3, 0x016050,3, 0x016060,3, 0x016070,3, 0x016080,8, 0x0160c4,1, 0x0160d0,4, 0x016100,1, 0x016184,12, 0x0162c0,1, 0x0162c8,10, 0x018000,1, 0x018008,3, 0x018018,3, 0x018030,7, 0x018070,2, 0x018200,3, 0x018210,3, 0x018220,3, 0x018230,3, 0x018240,2, 0x018260,2, 0x01826c,1, 0x018280,28, 0x0182f4,8, 0x018320,27, 0x0183dc,43, 0x018490,3, 0x0184a0,2, 0x0184b0,3, 0x0184c0,2, 0x0184d0,3, 0x0184e0,2, 0x0184f0,3, 0x018500,2, 0x018510,3, 0x018520,2, 0x018530,3, 0x018540,2, 0x018550,3, 0x018560,2, 0x018570,3, 0x018580,64, 0x018780,18, 0x0187d0,4, 0x018800,13, 0x018880,1, 0x018888,8, 0x0188c0,6, 0x0188e0,1, 0x0188e8,2, 0x018904,43, 0x018a00,4, 0x018a14,1, 0x018a1c,1, 0x018a24,1, 0x018a2c,1, 0x018a34,1, 0x018a3c,7, 0x018a60,6, 0x018a80,36, 0x018b40,15, 0x018b80,4, 0x018bc0,11, 0x018c00,9, 0x018c40,9, 0x018c80,9, 0x018cc0,9, 0x018d00,16, 0x018d54,1, 0x018d5c,1, 0x018d64,1, 0x018d6c,1, 0x018d80,26, 0x018e00,26, 0x018e80,26, 0x018f00,26, 0x01a000,1, 0x01a00c,4, 0x01a020,4, 0x01a038,3, 0x01a0a8,38, 0x01a180,64, 0x01a2c0,8, 0x01a2f8,317, 0x01a804,1, 0x01a810,6, 0x01a884,1, 0x01a894,5, 0x01a904,1, 0x01a92c,21, 0x01aa04,1, 0x01aa0c,1, 0x01aa14,1, 0x01aa1c,1, 0x01aa24,1, 0x01aa2c,1, 0x01aa34,1, 0x01aa3c,13, 0x01aa78,8, 0x01ab04,5, 0x01ab44,3, 0x01ab54,1, 0x01ab60,3, 0x01ab70,5, 0x01ab88,5, 0x01abc0,4, 0x01b000,34, 0x01b100,13, 0x01b140,15, 0x01b180,40, 0x01b240,11, 0x01b280,11, 0x01b300,10, 0x01b380,4, 0x01b3c0,3, 0x01b3d0,6, 0x01b400,28, 0x01b480,27, 0x01b500,20, 0x01b580,19, 0x01c000,19, 0x01cc00,10, 0x01cc80,3, 0x020000,3, 0x020010,1, 0x020030,13, 0x02006c,4, 0x020100,40, 0x0201fc,4, 0x020210,1, 0x020230,13, 0x02026c,4, 0x020300,40, 0x0203fc,4, 0x020410,1, 0x020430,13, 0x02046c,4, 0x020500,40, 0x0205fc,4, 0x020610,1, 0x020630,13, 0x02066c,4, 0x020700,40, 0x0207fc,1, 0x0210e0,1, 0x022000,6, 0x02201c,12, 0x022080,1, 0x022088,1, 0x022090,2, 0x022100,1, 0x02210c,2, 0x02211c,2, 0x02212c,2, 0x02213c,1, 0x022180,2, 0x02218c,1, 0x022200,43, 0x022300,7, 0x022320,2, 0x02232c,1, 0x022380,10, 0x0223c0,1, 0x022400,109, 0x0225c0,5, 0x022600,109, 0x0227c0,5, 0x022800,3, 0x022814,16, 0x022874,1, 0x022880,3, 0x022894,16, 0x0228f4,1, 0x022900,3, 0x022914,16, 0x022974,1, 0x022980,3, 0x022994,16, 0x0229f4,1, 0x022a00,3, 0x022a14,16, 0x022a74,1, 0x022a80,3, 0x022a94,16, 0x022af4,1, 0x022b00,3, 0x022b14,16, 0x022b74,1, 0x022b80,3, 0x022b94,16, 0x022bf4,1, 0x022c00,10, 0x022c40,10, 0x022c80,10, 0x022cc0,10, 0x022d00,1, 0x022e00,1, 0x022e80,16, 0x022f00,6, 0x022f20,6, 0x022f40,6, 0x022f60,6, 0x022f80,6, 0x022fa0,6, 0x022fc0,6, 0x022fe0,6, 0x023000,60, 0x023100,60, 0x023200,31, 0x023800,4, 0x023900,53, 0x023a00,4, 0x023a20,2, 0x024000,25, 0x024080,1, 0x024088,8, 0x0240c0,6, 0x0240e0,1, 0x0240e8,2, 0x024104,5, 0x024200,11, 0x024240,1, 0x024248,1, 0x024400,4, 0x030000,35, 0x031000,2, 0x03100c,4, 0x031028,3, 0x031038,4, 0x031050,2, 0x031060,2, 0x031070,2, 0x031080,4, 0x031098,7, 0x031120,8, 0x031200,4, 0x031214,7, 0x031234,7, 0x031254,7, 0x031274,24, 0x031300,2, 0x03130c,3, 0x031400,32, 0x031484,2, 0x031490,3, 0x031500,25, 0x0315c0,8, 0x0315e8,5, 0x031600,5, 0x031618,18, 0x031690,4, 0x031740,2, 0x031760,6, 0x031780,6, 0x0317a0,6, 0x0317c0,6, 0x0317e0,1, 0x031800,19, 0x031880,2, 0x0318b0,2, 0x0318c0,2, 0x040000,19, 0x041000,8, 0x041080,11, 0x041400,96, 0x041584,1, 0x041590,11, 0x0415c8,2, 0x0415e0,9, 0x041608,1, 0x041610,3, 0x041620,2, 0x041634,1, 0x04163c,6, 0x041660,6, 0x041680,5, 0x0416a0,4, 0x0416bc,2, 0x0416e8,5, 0x041700,5, 0x041720,5, 0x041740,5, 0x041760,4, 0x0417a0,3, 0x0417b0,3, 0x0417c0,3, 0x042000,3, 0x042010,5, 0x042200,35, 0x042300,3, 0x042310,2, 0x042328,13, 0x042360,2, 0x042800,4, 0x042b00,4, 0x042b80,18, 0x042c80,12, 0x042cc0,4, 0x042e00,25, 0x042e80,1, 0x042e88,8, 0x042ec0,6, 0x042ee0,1, 0x042ee8,2, 0x042f04,16, 0x050000,12, 0x050040,524, 0x050880,268, 0x050cc0,2572, 0x053500,524, 0x053d40,524, 0x054580,270, 0x0549c0,12, 0x054a00,270, 0x054e40,12, 0x054e80,3084, 0x057ec0,3340, 0x05b300,302, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c20,11, 0x060f80,6, 0x060fa0,7, 0x060fd8,2, 0x060fe4,1, 0x060ff0,10, 0x061020,16, 0x061084,1, 0x0610c0,20, 0x061204,1, 0x061220,8, 0x061250,3, 0x061260,5, 0x061280,6, 0x0612a0,6, 0x061300,3, 0x061310,2, 0x061320,2, 0x061330,1, 0x061340,3, 0x061350,18, 0x062000,28, 0x062080,5, 0x0620a0,5, 0x062100,2, 0x06210c,2, 0x062118,1, 0x062120,1, 0x062140,7, 0x062200,3, 0x062210,3, 0x062280,4, 0x0622b8,2, 0x062300,6, 0x062320,7, 0x062340,6, 0x062360,7, 0x062380,2, 0x06238c,3, 0x0623a0,7, 0x0623c0,1, 0x063600,6, 0x063620,15, 0x063660,5, 0x063684,1, 0x063698,15, 0x063700,1, 0x063800,6, 0x063820,12, 0x063860,5, 0x063884,1, 0x063898,15, 0x063904,1, 0x06391c,10, 0x063950,2, 0x0639fc,1, 0x064000,5, 0x064020,1, 0x064030,1, 0x064040,1, 0x064050,1, 0x064060,1, 0x064070,1, 0x064080,1, 0x064090,1, 0x0640a0,1, 0x0640b0,1, 0x0640c0,1, 0x0640d0,1, 0x0640e0,1, 0x0640f0,1, 0x064100,1, 0x064110,1, 0x064120,1, 0x064130,1, 0x064140,1, 0x064150,1, 0x064160,1, 0x064170,1, 0x064180,1, 0x064190,1, 0x0641a0,1, 0x0641b0,1, 0x0641c0,1, 0x0641d0,1, 0x0641e0,1, 0x0641f0,1, 0x064200,1, 0x064210,1, 0x064220,1, 0x064230,1, 0x064240,1, 0x064250,1, 0x064260,1, 0x064270,1, 0x064280,1, 0x064290,1, 0x0642a0,1, 0x0642b0,1, 0x0642c0,1, 0x0642d0,1, 0x0642e0,1, 0x0642f0,1, 0x064300,1, 0x064310,1, 0x064320,1, 0x064330,1, 0x064340,1, 0x064350,1, 0x064360,1, 0x064370,1, 0x064380,1, 0x064390,1, 0x0643a0,1, 0x0643b0,1, 0x0643c0,1, 0x0643d0,1, 0x0643e0,1, 0x0643f0,1, 0x064400,1, 0x064410,1, 0x064420,1, 0x064430,1, 0x064440,1, 0x064450,1, 0x064460,1, 0x064470,1, 0x064480,1, 0x064490,1, 0x0644a0,1, 0x0644b0,1, 0x0644c0,1, 0x0644d0,1, 0x0644e0,1, 0x0644f0,1, 0x064500,1, 0x064510,1, 0x064520,1, 0x064530,1, 0x064540,1, 0x064550,1, 0x064560,1, 0x064570,1, 0x064580,1, 0x064590,1, 0x0645a0,1, 0x0645b0,1, 0x0645c0,1, 0x0645d0,1, 0x0645e0,1, 0x0645f0,1, 0x064600,1, 0x064610,1, 0x064620,1, 0x064630,1, 0x064640,1, 0x064650,1, 0x064660,1, 0x064670,1, 0x064680,1, 0x064690,1, 0x0646a0,1, 0x0646b0,1, 0x0646c0,1, 0x0646d0,1, 0x0646e0,1, 0x0646f0,1, 0x064700,1, 0x064710,1, 0x064720,1, 0x064730,1, 0x064740,1, 0x064750,1, 0x064760,1, 0x064770,1, 0x064780,1, 0x064790,1, 0x0647a0,1, 0x0647b0,1, 0x0647c0,1, 0x0647d0,1, 0x0647e0,1, 0x0647f0,1, 0x064800,1, 0x064810,1, 0x064820,1, 0x064830,1, 0x064840,1, 0x064850,1, 0x064860,1, 0x064870,1, 0x064880,1, 0x064890,1, 0x0648a0,1, 0x0648b0,1, 0x0648c0,1, 0x0648d0,1, 0x0648e0,1, 0x0648f0,1, 0x064900,1, 0x064910,1, 0x064920,1, 0x064930,1, 0x064940,1, 0x064950,1, 0x064960,1, 0x064970,1, 0x064980,1, 0x064990,1, 0x0649a0,1, 0x0649b0,1, 0x0649c0,1, 0x0649d0,1, 0x0649e0,1, 0x0649f0,1, 0x064a00,1, 0x064a10,1, 0x064a20,1, 0x064a30,1, 0x064a40,1, 0x064a50,1, 0x064a60,1, 0x064a70,1, 0x064a80,1, 0x064a90,1, 0x064aa0,1, 0x064ab0,1, 0x064ac0,1, 0x064ad0,1, 0x064ae0,1, 0x064af0,1, 0x064b00,1, 0x064b10,1, 0x064b20,1, 0x064b30,1, 0x064b40,1, 0x064b50,1, 0x064b60,1, 0x064b70,1, 0x064b80,1, 0x064b90,1, 0x064ba0,1, 0x064bb0,1, 0x064bc0,1, 0x064bd0,1, 0x064be0,1, 0x064bf0,1, 0x064c00,1, 0x064c10,1, 0x064c20,1, 0x064c30,1, 0x064c40,1, 0x064c50,1, 0x064c60,1, 0x064c70,1, 0x064c80,1, 0x064c90,1, 0x064ca0,1, 0x064cb0,1, 0x064cc0,1, 0x064cd0,1, 0x064ce0,1, 0x064cf0,1, 0x064d00,1, 0x064d10,1, 0x064d20,1, 0x064d30,1, 0x064d40,1, 0x064d50,1, 0x064d60,1, 0x064d70,1, 0x064d80,1, 0x064d90,1, 0x064da0,1, 0x064db0,1, 0x064dc0,1, 0x064dd0,1, 0x064de0,1, 0x064df0,1, 0x064e00,1, 0x064e10,1, 0x064e20,1, 0x064e30,1, 0x064e40,1, 0x064e50,1, 0x064e60,1, 0x064e70,1, 0x064e80,1, 0x064e90,1, 0x064ea0,1, 0x064eb0,1, 0x064ec0,1, 0x064ed0,1, 0x064ee0,1, 0x064ef0,1, 0x064f00,1, 0x064f10,1, 0x064f20,1, 0x064f30,1, 0x064f40,1, 0x064f50,1, 0x064f60,1, 0x064f70,1, 0x064f80,1, 0x064f90,1, 0x064fa0,1, 0x064fb0,1, 0x064fc0,1, 0x064fd0,1, 0x064fe0,1, 0x064ff0,1, 0x065000,8, 0x066000,5, 0x066020,1, 0x066030,1, 0x066040,1, 0x066050,1, 0x066060,1, 0x066070,1, 0x066080,1, 0x066090,1, 0x0660a0,1, 0x0660b0,1, 0x0660c0,1, 0x0660d0,1, 0x0660e0,1, 0x0660f0,1, 0x066100,1, 0x066110,1, 0x066120,1, 0x066130,1, 0x066140,1, 0x066150,1, 0x066160,1, 0x066170,1, 0x066180,1, 0x066190,1, 0x0661a0,1, 0x0661b0,1, 0x0661c0,1, 0x0661d0,1, 0x0661e0,1, 0x0661f0,1, 0x066200,1, 0x066210,1, 0x066220,1, 0x066230,1, 0x066240,1, 0x066250,1, 0x066260,1, 0x066270,1, 0x066280,1, 0x066290,1, 0x0662a0,1, 0x0662b0,1, 0x0662c0,1, 0x0662d0,1, 0x0662e0,1, 0x0662f0,1, 0x066300,1, 0x066310,1, 0x066320,1, 0x066330,1, 0x066340,1, 0x066350,1, 0x066360,1, 0x066370,1, 0x066380,1, 0x066390,1, 0x0663a0,1, 0x0663b0,1, 0x0663c0,1, 0x0663d0,1, 0x0663e0,1, 0x0663f0,1, 0x066400,1, 0x066410,1, 0x066420,1, 0x066430,1, 0x066440,1, 0x066450,1, 0x066460,1, 0x066470,1, 0x066480,1, 0x066490,1, 0x0664a0,1, 0x0664b0,1, 0x0664c0,1, 0x0664d0,1, 0x0664e0,1, 0x0664f0,1, 0x066500,1, 0x066510,1, 0x066520,1, 0x066530,1, 0x066540,1, 0x066550,1, 0x066560,1, 0x066570,1, 0x066580,1, 0x066590,1, 0x0665a0,1, 0x0665b0,1, 0x0665c0,1, 0x0665d0,1, 0x0665e0,1, 0x0665f0,1, 0x066600,1, 0x066610,1, 0x066620,1, 0x066630,1, 0x066640,1, 0x066650,1, 0x066660,1, 0x066670,1, 0x066680,1, 0x066690,1, 0x0666a0,1, 0x0666b0,1, 0x0666c0,1, 0x0666d0,1, 0x0666e0,1, 0x0666f0,1, 0x066700,1, 0x066710,1, 0x066720,1, 0x066730,1, 0x066740,1, 0x066750,1, 0x066760,1, 0x066770,1, 0x066780,1, 0x066790,1, 0x0667a0,1, 0x0667b0,1, 0x0667c0,1, 0x0667d0,1, 0x0667e0,1, 0x0667f0,1, 0x066800,1, 0x066810,1, 0x066820,1, 0x066830,1, 0x066840,1, 0x066850,1, 0x066860,1, 0x066870,1, 0x066880,1, 0x066890,1, 0x0668a0,1, 0x0668b0,1, 0x0668c0,1, 0x0668d0,1, 0x0668e0,1, 0x0668f0,1, 0x066900,1, 0x066910,1, 0x066920,1, 0x066930,1, 0x066940,1, 0x066950,1, 0x066960,1, 0x066970,1, 0x066980,1, 0x066990,1, 0x0669a0,1, 0x0669b0,1, 0x0669c0,1, 0x0669d0,1, 0x0669e0,1, 0x0669f0,1, 0x066a00,1, 0x066a10,1, 0x066a20,1, 0x066a30,1, 0x066a40,1, 0x066a50,1, 0x066a60,1, 0x066a70,1, 0x066a80,1, 0x066a90,1, 0x066aa0,1, 0x066ab0,1, 0x066ac0,1, 0x066ad0,1, 0x066ae0,1, 0x066af0,1, 0x066b00,1, 0x066b10,1, 0x066b20,1, 0x066b30,1, 0x066b40,1, 0x066b50,1, 0x066b60,1, 0x066b70,1, 0x066b80,1, 0x066b90,1, 0x066ba0,1, 0x066bb0,1, 0x066bc0,1, 0x066bd0,1, 0x066be0,1, 0x066bf0,1, 0x066c00,1, 0x066c10,1, 0x066c20,1, 0x066c30,1, 0x066c40,1, 0x066c50,1, 0x066c60,1, 0x066c70,1, 0x066c80,1, 0x066c90,1, 0x066ca0,1, 0x066cb0,1, 0x066cc0,1, 0x066cd0,1, 0x066ce0,1, 0x066cf0,1, 0x066d00,1, 0x066d10,1, 0x066d20,1, 0x066d30,1, 0x066d40,1, 0x066d50,1, 0x066d60,1, 0x066d70,1, 0x066d80,1, 0x066d90,1, 0x066da0,1, 0x066db0,1, 0x066dc0,1, 0x066dd0,1, 0x066de0,1, 0x066df0,1, 0x066e00,1, 0x066e10,1, 0x066e20,1, 0x066e30,1, 0x066e40,1, 0x066e50,1, 0x066e60,1, 0x066e70,1, 0x066e80,1, 0x066e90,1, 0x066ea0,1, 0x066eb0,1, 0x066ec0,1, 0x066ed0,1, 0x066ee0,1, 0x066ef0,1, 0x066f00,1, 0x066f10,1, 0x066f20,1, 0x066f30,1, 0x066f40,1, 0x066f50,1, 0x066f60,1, 0x066f70,1, 0x066f80,1, 0x066f90,1, 0x066fa0,1, 0x066fb0,1, 0x066fc0,1, 0x066fd0,1, 0x066fe0,1, 0x066ff0,1, 0x067000,16, 0x067100,8, 0x067124,7, 0x067144,7, 0x067200,3, 0x0677f8,2, 0x068000,7, 0x068020,29, 0x068098,13, 0x0680d0,6, 0x0680f0,2, 0x068100,3, 0x068118,1, 0x068120,2, 0x068130,2, 0x068140,2, 0x068150,24, 0x0681c0,7, 0x068200,7, 0x068220,29, 0x068298,13, 0x0682d0,6, 0x0682f0,2, 0x068300,3, 0x068318,1, 0x068320,2, 0x068330,2, 0x068340,2, 0x068350,24, 0x0683c0,7, 0x068400,7, 0x068420,29, 0x068498,13, 0x0684d0,6, 0x0684f0,2, 0x068500,3, 0x068518,1, 0x068520,2, 0x068530,2, 0x068540,2, 0x068550,24, 0x0685c0,7, 0x068900,4, 0x068920,1, 0x068940,4, 0x068960,1, 0x068980,4, 0x0689a0,1, 0x0689c0,4, 0x0689e0,1, 0x068a00,4, 0x068a20,1, 0x068a40,4, 0x068a60,1, 0x068a80,4, 0x068aa0,1, 0x068ac0,4, 0x068ae0,1, 0x068b20,13, 0x068b60,13, 0x068ba0,2, 0x068c40,1, 0x068c64,1, 0x068c6c,3, 0x068c84,1, 0x068c8c,3, 0x068ca4,1, 0x068cac,3, 0x068cc4,1, 0x068ccc,3, 0x068ce0,1, 0x068d00,13, 0x068d40,7, 0x068d60,12, 0x069000,19, 0x069050,7, 0x0690a0,2, 0x0690c0,5, 0x0690d8,13, 0x069140,13, 0x069180,13, 0x0691c0,12, 0x069240,2, 0x069260,1, 0x069280,22, 0x069300,22, 0x069380,22, 0x069400,22, 0x069480,22, 0x069500,22, 0x069580,22, 0x069600,22, 0x069680,11, 0x069800,130, 0x069b20,2, 0x069c00,16, 0x069d00,27, 0x069d84,1, 0x069d94,10, 0x06a000,12, 0x06a038,14, 0x06a080,6, 0x06a0a0,2, 0x06a100,12, 0x06a138,14, 0x06a180,6, 0x06a1a0,2, 0x06a200,27, 0x06a284,1, 0x06a290,13, 0x06a2d0,4, 0x06a300,7, 0x06a400,10, 0x06a480,10, 0x06a500,15, 0x06a540,12, 0x06a580,4, 0x06a594,2, 0x06a5a0,6, 0x06a600,11, 0x06a630,8, 0x06a800,72, 0x06a924,1, 0x06a930,3, 0x06aa00,56, 0x06aae4,6, 0x06ac00,8, 0x06b000,35, 0x06bc00,10, 0x06bc80,3, 0x070b00,14, 0x070b40,14, 0x070b84,1, 0x070c00,1, 0x070c10,3, 0x070c40,2, 0x070c50,8, 0x071000,7, 0x072000,7, 0x073000,114, 0x0731d0,3, 0x0731e0,3, 0x0731f0,3, 0x073200,2, 0x073210,1, 0x073218,5, 0x073230,1, 0x073240,7, 0x073260,40, 0x073338,15, 0x073380,2, 0x074000,4, 0x074044,7, 0x074080,9, 0x074100,48, 0x076000,2048, 0x078004,1, 0x078020,17, 0x078070,9, 0x0780a0,7, 0x0780c0,12, 0x078100,12, 0x078140,7, 0x078180,8, 0x07fa00,6, 0x07fa80,3, 0x07fa90,10, 0x07fac0,4, 0x0a0000,3, 0x0a0018,2, 0x0a0024,14, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,4, 0x0a0120,6, 0x0a0140,3, 0x0a0150,1, 0x0a015c,2, 0x0a0180,2, 0x0a019c,16, 0x0a01e0,1, 0x0a01e8,5, 0x0a0200,3, 0x0a0218,2, 0x0a0224,14, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,4, 0x0a0320,6, 0x0a0340,3, 0x0a0350,1, 0x0a035c,2, 0x0a0380,2, 0x0a039c,16, 0x0a03e0,1, 0x0a03e8,5, 0x0a0400,3, 0x0a0418,2, 0x0a0424,14, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,4, 0x0a0520,6, 0x0a0540,3, 0x0a0550,1, 0x0a055c,2, 0x0a0580,2, 0x0a059c,16, 0x0a05e0,1, 0x0a05e8,5, 0x0a0600,3, 0x0a0618,2, 0x0a0624,14, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,4, 0x0a0720,6, 0x0a0740,3, 0x0a0750,1, 0x0a075c,2, 0x0a0780,2, 0x0a079c,16, 0x0a07e0,1, 0x0a07e8,5, 0x0a0800,3, 0x0a0818,2, 0x0a0824,14, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,4, 0x0a0920,6, 0x0a0940,3, 0x0a0950,1, 0x0a095c,2, 0x0a0980,2, 0x0a099c,16, 0x0a09e0,1, 0x0a09e8,5, 0x0a0a00,3, 0x0a0a18,2, 0x0a0a24,14, 0x0a0a60,27, 0x0a0ad0,3, 0x0a0ae0,3, 0x0a0af0,3, 0x0a0b00,4, 0x0a0b20,6, 0x0a0b40,3, 0x0a0b50,1, 0x0a0b5c,2, 0x0a0b80,2, 0x0a0b9c,16, 0x0a0be0,1, 0x0a0be8,5, 0x0a0c00,3, 0x0a0c18,2, 0x0a0c24,14, 0x0a0c60,27, 0x0a0cd0,3, 0x0a0ce0,3, 0x0a0cf0,3, 0x0a0d00,4, 0x0a0d20,6, 0x0a0d40,3, 0x0a0d50,1, 0x0a0d5c,2, 0x0a0d80,2, 0x0a0d9c,16, 0x0a0de0,1, 0x0a0de8,5, 0x0a0e00,3, 0x0a0e18,2, 0x0a0e24,14, 0x0a0e60,27, 0x0a0ed0,3, 0x0a0ee0,3, 0x0a0ef0,3, 0x0a0f00,4, 0x0a0f20,6, 0x0a0f40,3, 0x0a0f50,1, 0x0a0f5c,2, 0x0a0f80,2, 0x0a0f9c,16, 0x0a0fe0,1, 0x0a0fe8,5, 0x0a1844,1, 0x0a2024,3, 0x0a2050,3, 0x0a2088,2, 0x0a20a0,7, 0x0a20c0,7, 0x0a20e0,4, 0x0a2100,4, 0x0a2120,7, 0x0a2200,56, 0x0a22f0,11, 0x0a2320,7, 0x0a2348,6, 0x0a2580,3, 0x0a25c0,3, 0x0a2600,19, 0x0a2700,27, 0x0a2800,99, 0x0a2a00,16, 0x0a2a80,24, 0x0a2b00,1, 0x0a3010,4, 0x0a3040,1, 0x0a3070,1, 0x0a3080,2, 0x0a308c,1, 0x0a3098,2, 0x0a3404,1, 0x0a3440,20, 0x0a3494,1, 0x0a349c,7, 0x0a34e0,15, 0x0a3520,7, 0x0a3540,7, 0x0a3560,7, 0x0a3580,7, 0x0a35a0,7, 0x0a35c0,7, 0x0a35e0,7, 0x0a3600,17, 0x0a3650,6, 0x0a3684,10, 0x0a3804,1, 0x0a387c,107, 0x0a3a30,1, 0x0a3a40,8, 0x0a3a64,5, 0x0a3b00,32, 0x0a3b84,5, 0x0a3c00,128, 0x0a3e08,2, 0x0a3e18,3, 0x0a4040,16, 0x0a4084,1, 0x0a408c,1, 0x0a4a04,3, 0x0a4b00,33, 0x0a4b90,3, 0x0a5000,8, 0x0a5050,4, 0x0a5070,4, 0x0a6000,13, 0x0a6200,17, 0x0a6248,1, 0x0a6258,1, 0x0a6260,8, 0x0a6284,1, 0x0a62a0,32, 0x0a6348,2, 0x0a67f0,3, 0x0a6a10,12, 0x0a7000,19, 0x0a7c00,10, 0x0a7c80,3, 0x0a8000,1, 0x0a8010,12, 0x0a8044,1, 0x0a8054,5, 0x0a8404,1, 0x0a8428,54, 0x0a8600,32, 0x0a8704,1, 0x0a8800,1, 0x0a8900,1, 0x0a8a00,2, 0x0a8a20,11, 0x0a8a80,10, 0x0a8b00,1, 0x0c0000,19, 0x0c0c00,10, 0x0c0c80,3, 0x0c1800,19, 0x0c1880,3, 0x0c1900,13, 0x0c1940,3, 0x0c1950,2, 0x0c1960,2, 0x0c2000,6, 0x0c201c,9, 0x0c2080,11, 0x0c2100,11, 0x0c2204,1, 0x0c2224,21, 0x0c2280,16, 0x0c2300,11, 0x0c2800,21, 0x0c2860,5, 0x0c2880,6, 0x0c28a0,5, 0x0c28c0,6, 0x0c2900,21, 0x0c2960,5, 0x0c2980,6, 0x0c29a0,5, 0x0c29c0,6, 0x0c2a00,21, 0x0c2a60,5, 0x0c2a80,6, 0x0c2aa0,5, 0x0c2ac0,6, 0x0c2b00,21, 0x0c2b60,5, 0x0c2b80,6, 0x0c2ba0,5, 0x0c2bc0,6, 0x0c2c00,9, 0x0c2c48,7, 0x0c2c68,2, 0x0c2c74,9, 0x0c2c9c,2, 0x0c2d00,14, 0x0c2d40,14, 0x0c2d80,28, 0x0c2e00,19, 0x0c2e50,3, 0x0c2e60,25, 0x0c2ec8,1, 0x0c2ed0,2, 0x0c2ee0,7, 0x0c2f00,1, 0x0c2f08,2, 0x0c2ffc,9, 0x0c3024,10, 0x0c3050,22, 0x0c3100,8, 0x0c3124,10, 0x0c3150,22, 0x0c3200,8, 0x0c3224,10, 0x0c3250,22, 0x0c3300,8, 0x0c3324,10, 0x0c3350,22, 0x0c3400,8, 0x0c3424,10, 0x0c3450,22, 0x0c3504,1, 0x0c3514,10, 0x0c3548,4, 0x0c3560,5, 0x0c3580,1, 0x0c35a0,6, 0x0c35c0,2, 0x0c35cc,2, 0x0c4000,13, 0x0c4040,2, 0x0c4054,4, 0x0c4080,27, 0x0c4100,12, 0x0c4140,14, 0x0c4180,28, 0x0c4200,6, 0x0c4240,6, 0x0c425c,3, 0x0c4280,5, 0x0c42a0,8, 0x0c4400,14, 0x0c4440,14, 0x0c4480,14, 0x0c44c0,14, 0x0c4540,3, 0x0c4600,7, 0x0c4620,14, 0x0c4680,5, 0x0c46a0,7, 0x0c4800,13, 0x0c4840,2, 0x0c4854,4, 0x0c4880,27, 0x0c4900,12, 0x0c4940,14, 0x0c4980,28, 0x0c4a00,6, 0x0c4a40,6, 0x0c4a5c,3, 0x0c4a80,5, 0x0c4aa0,8, 0x0c4c00,14, 0x0c4c40,14, 0x0c4c80,14, 0x0c4cc0,14, 0x0c4d40,3, 0x0c4e00,7, 0x0c4e20,14, 0x0c4e80,5, 0x0c4ea0,7, 0x0c5000,13, 0x0c5040,2, 0x0c5054,4, 0x0c5080,27, 0x0c5100,12, 0x0c5140,14, 0x0c5180,28, 0x0c5200,6, 0x0c5240,6, 0x0c525c,3, 0x0c5280,5, 0x0c52a0,8, 0x0c5400,14, 0x0c5440,14, 0x0c5480,14, 0x0c54c0,14, 0x0c5540,3, 0x0c5600,7, 0x0c5620,14, 0x0c5680,5, 0x0c56a0,7, 0x0c5800,13, 0x0c5840,2, 0x0c5854,4, 0x0c5880,27, 0x0c5900,12, 0x0c5940,14, 0x0c5980,28, 0x0c5a00,6, 0x0c5a40,6, 0x0c5a5c,3, 0x0c5a80,5, 0x0c5aa0,8, 0x0c5c00,14, 0x0c5c40,14, 0x0c5c80,14, 0x0c5cc0,14, 0x0c5d40,3, 0x0c5e00,7, 0x0c5e20,14, 0x0c5e80,5, 0x0c5ea0,7, 0x0c6000,8, 0x0c6040,8, 0x0c6080,1, 0x0c6098,6, 0x0c6100,10, 0x0c6140,3, 0x0c6150,2, 0x0c6180,2, 0x0c6200,6, 0x0c6220,18, 0x0c6280,4, 0x0c6300,8, 0x0c6400,2, 0x0c6480,2, 0x0c7000,40, 0x0c7100,64, 0x0c8000,25, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c0,6, 0x0c80e0,2, 0x0c80ec,2, 0x0c8100,2, 0x0c810c,2, 0x0c8180,16, 0x0ca000,3, 0x0ca010,21, 0x0ca068,14, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca160,1, 0x0ca184,1, 0x0ca194,4, 0x0ca1c0,1, 0x0ca1c8,7, 0x0ca1e8,3, 0x0ca1f8,21, 0x0ca280,19, 0x0ca300,80, 0x0ca6fc,1, 0x0ca800,72, 0x0cb000,4, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,11, 0x0cb200,2, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,5, 0x0cb400,5, 0x0cb59c,1, 0x0cb5ac,9, 0x0cb604,1, 0x0cb610,6, 0x0cb640,13, 0x0e8000,1, 0x0e8008,2, 0x0e8058,3, 0x0e8120,2, 0x0e8130,2, 0x0e8140,1, 0x0e8184,11, 0x0e81c4,3, 0x0e81dc,3, 0x0e8280,13, 0x0e8400,16, 0x0e8444,7, 0x0e8500,4, 0x0e8604,1, 0x0e86f0,68, 0x0e8804,1, 0x0e8824,7, 0x0e8844,1, 0x0e884c,27, 0x0e88d4,2, 0x0e8c00,1, 0x0e8c08,3, 0x0e8c80,20, 0x0e8d00,3, 0x0e8d20,8, 0x0e8d80,4, 0x0e8da0,6, 0x0e8dbc,9, 0x0e8e00,21, 0x0e8e80,19, 0x0e9000,35, 0x0e9090,2, 0x0e90f0,1, 0x0e90f8,1, 0x0e9100,1, 0x0e9108,5, 0x0e9138,2, 0x0e9144,1, 0x0e9160,13, 0x0e91a0,4, 0x0e9200,2, 0x0e9214,11, 0x0e9244,7, 0x0e92b8,2, 0x0e92c4,7, 0x0e9310,1, 0x0e9340,4, 0x0e9380,7, 0x0e9400,14, 0x0e9440,10, 0x0e947c,1, 0x0e9700,2, 0x0e9720,8, 0x0e9800,3, 0x0e9810,3, 0x0e9820,3, 0x0e9830,3, 0x0e9840,3, 0x0e9850,3, 0x0e9860,3, 0x0e9870,3, 0x0e9880,3, 0x0e9890,3, 0x0e98a0,3, 0x0e98b0,3, 0x0e98c0,3, 0x0e98d0,3, 0x0e98e0,3, 0x0e98f0,3, 0x0e9900,68, 0x0e9c00,36, 0x0e9d00,3, 0x0e9d40,2, 0x0e9d4c,1, 0x0e9d84,1, 0x0e9d90,4, 0x0e9e00,35, 0x0e9f00,11, 0x0e9f60,2, 0x0e9f70,17, 0x0e9fc0,2, 0x0ea000,19, 0x0eb000,7, 0x0eb020,2, 0x0eb02c,3, 0x0eb040,6, 0x0eb060,6, 0x0eb080,6, 0x0eb0a0,7, 0x0eb0c0,7, 0x0eb0e0,6, 0x0eb100,6, 0x0eb120,6, 0x0eb140,6, 0x0eb160,6, 0x0eb180,6, 0x0eb1a0,6, 0x0eb1c0,6, 0x0eb1e0,6, 0x0eb200,7, 0x0eb220,7, 0x0eb240,4, 0x0eb260,5, 0x0eb800,4, 0x0f0000,4, 0x0f0014,11, 0x0f0044,11, 0x0f007c,2, 0x0f0088,20, 0x0f0180,6, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,5, 0x0f0480,20, 0x0f0500,7, 0x0f0520,2, 0x0f0540,2, 0x0f0560,4, 0x0f0580,7, 0x0f05a0,1, 0x0f05c0,14, 0x0f0af0,3, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba0,3, 0x0f0bc0,9, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,3, 0x0f0c50,58, 0x0f0d50,83, 0x0f0ec0,2, 0x0f0ffc,4, 0x0f1030,2, 0x0f1040,10, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,28, 0x0f1400,163, 0x0f1800,19, 0x0f1880,11, 0x0f18b0,3, 0x0f18c0,3, 0x0f18d0,3, 0x0f1c00,9, 0x0f1d00,67, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f80,14, 0x0f1fbc,4, 0x0f2000,7, 0x0f2020,1, 0x0f2040,2, 0x0f2080,7, 0x0f20a0,1, 0x0f20c0,2, 0x0f2100,7, 0x0f2120,1, 0x0f2140,2, 0x0f2180,7, 0x0f21a0,1, 0x0f21c0,2, 0x0f2200,7, 0x0f2220,1, 0x0f2240,2, 0x0f2280,7, 0x0f22a0,1, 0x0f22c0,2, 0x0f2300,7, 0x0f2320,1, 0x0f2340,2, 0x0f2380,7, 0x0f23a0,1, 0x0f23c0,2, 0x0f2400,24, 0x0f24a4,1, 0x0f2800,2, 0x0f2840,16, 0x0f3000,5, 0x0f3024,1, 0x0f302c,1, 0x0f3204,1, 0x0f32dc,73, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x0f7800,7, 0x0f7820,4, 0x0f7a04,1, 0x0f7a80,35, 0x0f7b10,4, 0x0f7c04,1, 0x0f7c80,34, 0x0f7d10,10, 0x0f7d3c,3, 0x0f8000,7, 0x0f8020,4, 0x0f8204,1, 0x0f8280,35, 0x0f8310,4, 0x0f8404,1, 0x0f8480,34, 0x0f8510,10, 0x0f853c,3, 0x0f8800,7, 0x0f8820,4, 0x0f8a04,1, 0x0f8a80,35, 0x0f8b10,4, 0x0f8c04,1, 0x0f8c80,34, 0x0f8d10,10, 0x0f8d3c,3, 0x0fa000,5, 0x0fa01c,12, 0x0fa05c,3, 0x0fa080,8, 0x0fa100,5, 0x0fa11c,12, 0x0fa15c,3, 0x0fa180,8, 0x0fa200,5, 0x0fa21c,12, 0x0fa25c,3, 0x0fa280,8, 0x0fa300,5, 0x0fa31c,12, 0x0fa35c,3, 0x0fa380,8, 0x0fa400,5, 0x0fa41c,12, 0x0fa45c,3, 0x0fa480,8, 0x0fa500,5, 0x0fa51c,12, 0x0fa55c,3, 0x0fa580,8, 0x0fa600,5, 0x0fa61c,12, 0x0fa65c,3, 0x0fa680,8, 0x0fa700,5, 0x0fa71c,12, 0x0fa75c,3, 0x0fa780,8, 0x0fa800,5, 0x0fa81c,12, 0x0fa85c,3, 0x0fa880,8, 0x0fa900,5, 0x0fa91c,12, 0x0fa95c,3, 0x0fa980,8, 0x0faa00,5, 0x0faa1c,12, 0x0faa5c,3, 0x0faa80,8, 0x0fab00,5, 0x0fab1c,12, 0x0fab5c,3, 0x0fab80,8, 0x0fac00,5, 0x0fac1c,12, 0x0fac5c,3, 0x0fac80,8, 0x0fad00,5, 0x0fad1c,12, 0x0fad5c,3, 0x0fad80,8, 0x0fae00,5, 0x0fae1c,12, 0x0fae5c,3, 0x0fae80,8, 0x0faf00,5, 0x0faf1c,12, 0x0faf5c,3, 0x0faf80,8, 0x0fb000,5, 0x0fb01c,12, 0x0fb05c,3, 0x0fb080,8, 0x0fb100,5, 0x0fb11c,12, 0x0fb15c,3, 0x0fb180,8, 0x0fb200,5, 0x0fb21c,12, 0x0fb25c,3, 0x0fb280,8, 0x0fb300,5, 0x0fb31c,12, 0x0fb35c,3, 0x0fb380,8, 0x0fb400,5, 0x0fb41c,12, 0x0fb45c,3, 0x0fb480,8, 0x0fb500,5, 0x0fb51c,12, 0x0fb55c,3, 0x0fb580,8, 0x0fb600,5, 0x0fb61c,12, 0x0fb65c,3, 0x0fb680,8, 0x0fb700,5, 0x0fb71c,12, 0x0fb75c,3, 0x0fb780,8, 0x0fb800,5, 0x0fb81c,12, 0x0fb85c,3, 0x0fb880,8, 0x0fb900,5, 0x0fb91c,12, 0x0fb95c,3, 0x0fb980,8, 0x0fba00,5, 0x0fba1c,12, 0x0fba5c,3, 0x0fba80,8, 0x0fbb00,5, 0x0fbb1c,12, 0x0fbb5c,3, 0x0fbb80,8, 0x0fbc00,5, 0x0fbc1c,12, 0x0fbc5c,3, 0x0fbc80,8, 0x0fbd00,5, 0x0fbd1c,12, 0x0fbd5c,3, 0x0fbd80,8, 0x0fbe00,5, 0x0fbe1c,12, 0x0fbe5c,3, 0x0fbe80,8, 0x0fbf00,5, 0x0fbf1c,12, 0x0fbf5c,3, 0x0fbf80,8, 0x0fc000,5, 0x0fc01c,12, 0x0fc05c,3, 0x0fc080,8, 0x0fc100,5, 0x0fc11c,12, 0x0fc15c,3, 0x0fc180,8, 0x0fc200,5, 0x0fc21c,12, 0x0fc25c,3, 0x0fc280,8, 0x0fc300,5, 0x0fc31c,12, 0x0fc35c,3, 0x0fc380,8, 0x0fc400,5, 0x0fc41c,12, 0x0fc45c,3, 0x0fc480,8, 0x0fc500,5, 0x0fc51c,12, 0x0fc55c,3, 0x0fc580,8, 0x0fc600,5, 0x0fc61c,12, 0x0fc65c,3, 0x0fc680,8, 0x0fc700,5, 0x0fc71c,12, 0x0fc75c,3, 0x0fc780,8, 0x0fc800,5, 0x0fc81c,12, 0x0fc85c,3, 0x0fc880,8, 0x0fc900,5, 0x0fc91c,12, 0x0fc95c,3, 0x0fc980,8, 0x0fca00,5, 0x0fca1c,12, 0x0fca5c,3, 0x0fca80,8, 0x0fcb00,5, 0x0fcb1c,12, 0x0fcb5c,3, 0x0fcb80,8, 0x0fcc00,5, 0x0fcc1c,12, 0x0fcc5c,3, 0x0fcc80,8, 0x0fcd00,5, 0x0fcd1c,12, 0x0fcd5c,3, 0x0fcd80,8, 0x0fce00,5, 0x0fce1c,12, 0x0fce5c,3, 0x0fce80,8, 0x0fcf00,5, 0x0fcf1c,12, 0x0fcf5c,3, 0x0fcf80,8, 0x0fd000,5, 0x0fd01c,12, 0x0fd05c,3, 0x0fd080,8, 0x0fd100,5, 0x0fd11c,12, 0x0fd15c,3, 0x0fd180,8, 0x0fd200,5, 0x0fd21c,12, 0x0fd25c,3, 0x0fd280,8, 0x0fd300,5, 0x0fd31c,12, 0x0fd35c,3, 0x0fd380,8, 0x0fd400,5, 0x0fd41c,12, 0x0fd45c,3, 0x0fd480,8, 0x0fd500,5, 0x0fd51c,12, 0x0fd55c,3, 0x0fd580,8, 0x0fd600,5, 0x0fd61c,12, 0x0fd65c,3, 0x0fd680,8, 0x0fd700,5, 0x0fd71c,12, 0x0fd75c,3, 0x0fd780,8, 0x0fd800,5, 0x0fd81c,12, 0x0fd85c,3, 0x0fd880,8, 0x0fd900,5, 0x0fd91c,12, 0x0fd95c,3, 0x0fd980,8, 0x0fda00,5, 0x0fda1c,12, 0x0fda5c,3, 0x0fda80,8, 0x0fdb00,5, 0x0fdb1c,12, 0x0fdb5c,3, 0x0fdb80,8, 0x0fdc00,5, 0x0fdc1c,12, 0x0fdc5c,3, 0x0fdc80,8, 0x0fdd00,5, 0x0fdd1c,12, 0x0fdd5c,3, 0x0fdd80,8, 0x0fde00,5, 0x0fde1c,12, 0x0fde5c,3, 0x0fde80,8, 0x0fdf00,5, 0x0fdf1c,12, 0x0fdf5c,3, 0x0fdf80,8, 0x0fe000,5, 0x0fe01c,12, 0x0fe05c,3, 0x0fe080,8, 0x0fe100,5, 0x0fe11c,12, 0x0fe15c,3, 0x0fe180,8, 0x100000,126976, 0x18000c,4, 0x180024,2, 0x180030,2, 0x180084,1, 0x180090,4, 0x180100,3, 0x180200,16, 0x180244,16, 0x180288,16, 0x1802d0,1, 0x180304,1, 0x180320,24, 0x180400,620, 0x181000,43, 0x181100,4, 0x181120,7, 0x181140,19, 0x18119c,5, 0x1811c0,7, 0x181c00,2, 0x182004,1, 0x1820b0,84, 0x182204,1, 0x182240,48, 0x182304,1, 0x182318,58, 0x182404,1, 0x182440,48, 0x182504,1, 0x182538,50, 0x182604,1, 0x182618,26, 0x182684,1, 0x1826c0,16, 0x182704,1, 0x182730,20, 0x182804,1, 0x182830,20, 0x182884,1, 0x182890,12, 0x1828c4,15, 0x182904,1, 0x182910,12, 0x182944,1, 0x182958,10, 0x182984,1, 0x182998,10, 0x1829c4,1, 0x1829e0,8, 0x182a04,1, 0x182a10,12, 0x182a44,1, 0x182a50,12, 0x182a84,1, 0x182a90,12, 0x182ac4,1, 0x182ae0,8, 0x182b04,1, 0x182b10,12, 0x182b44,1, 0x182b58,10, 0x182b84,1, 0x182b98,10, 0x182bc4,1, 0x182be0,8, 0x182c04,1, 0x182c10,12, 0x182c84,1, 0x182cc0,16, 0x182d04,1, 0x182d20,24, 0x182d84,1, 0x182d90,12, 0x182dc4,1, 0x182de0,8, 0x183004,1, 0x183020,47, 0x183104,1, 0x183110,4, 0x183124,1, 0x183130,8, 0x183154,1, 0x18315c,4, 0x183170,6, 0x183204,1, 0x183210,4, 0x183224,1, 0x18322c,1, 0x183234,5, 0x183250,3, 0x183284,1, 0x18328c,1, 0x183294,7, 0x1832b4,3, 0x183400,3, 0x183418,3, 0x183430,1, 0x183440,3, 0x183458,3, 0x183470,1, 0x183480,1, 0x183504,1, 0x18351c,48, 0x183604,1, 0x183640,16, 0x183684,1, 0x18368c,5, 0x183700,1, 0x183710,5, 0x183804,1, 0x183840,16, 0x183884,1, 0x18388c,3, 0x183900,21, 0x183a04,1, 0x183a0c,8, 0x183a44,1, 0x183a4c,8, 0x183a80,2, 0x183a8c,8, 0x184000,42, 0x184100,29, 0x184180,25, 0x184200,18, 0x184280,17, 0x184300,13, 0x184400,29, 0x184480,29, 0x184500,17, 0x184580,17, 0x184600,26, 0x184680,26, 0x184700,18, 0x184780,18, 0x184800,22, 0x184880,22, 0x184900,13, 0x184940,13, 0x184980,15, 0x184a04,1, 0x184a34,19, 0x184b00,4, 0x184b80,19, 0x185000,195, 0x185400,3, 0x185414,1, 0x18541c,2, 0x185428,3, 0x185440,5, 0x185460,4, 0x185504,1, 0x185510,7, 0x185544,6, 0x185564,6, 0x185584,6, 0x1855a4,6, 0x1855c4,6, 0x185604,1, 0x185614,6, 0x185644,6, 0x185664,6, 0x185684,6, 0x1856a4,6, 0x1856c4,6, 0x1856e4,6, 0x185840,13, 0x185940,3, 0x187000,5, 0x187020,5, 0x187040,5, 0x187060,5, 0x187080,5, 0x1870a0,5, 0x1870c0,5, 0x1870e0,5, 0x187104,1, 0x187120,16, 0x18716c,4, 0x187180,27, 0x187200,13, 0x187240,6, 0x188000,33, 0x188100,15, 0x188140,15, 0x188184,1, 0x188194,6, 0x1881b0,9, 0x1881e0,1, 0x188200,33, 0x188300,15, 0x188340,15, 0x188384,1, 0x188394,6, 0x1883b0,9, 0x1883e0,1, 0x188400,33, 0x188500,15, 0x188540,15, 0x188584,1, 0x188594,6, 0x1885b0,9, 0x1885e0,1, 0x188600,33, 0x188700,15, 0x188740,15, 0x188784,1, 0x188794,6, 0x1887b0,9, 0x1887e0,1, 0x188800,33, 0x188900,15, 0x188940,15, 0x188984,1, 0x188994,6, 0x1889b0,9, 0x1889e0,1, 0x188a00,33, 0x188b00,15, 0x188b40,15, 0x188b84,1, 0x188b94,6, 0x188bb0,9, 0x188be0,1, 0x188c00,33, 0x188d00,15, 0x188d40,15, 0x188d84,1, 0x188d94,6, 0x188db0,9, 0x188de0,1, 0x188e00,33, 0x188f00,15, 0x188f40,15, 0x188f84,1, 0x188f94,6, 0x188fb0,9, 0x188fe0,1, 0x189000,7, 0x189100,7, 0x189120,7, 0x189200,43, 0x189300,13, 0x189404,1, 0x189500,64, 0x18a000,8, 0x18a080,11, 0x18a0c0,2, 0x18a0d0,2, 0x18f000,51, 0x18fc00,10, 0x18fc80,3, 0x190000,19, 0x191000,16, 0x191080,11, 0x191400,96, 0x191584,1, 0x191590,11, 0x1915c8,2, 0x1915e0,9, 0x191608,1, 0x191610,3, 0x191620,2, 0x191634,1, 0x19163c,6, 0x191660,6, 0x191680,5, 0x1916a0,4, 0x1916bc,2, 0x1916e8,5, 0x191700,5, 0x191720,5, 0x191740,5, 0x191760,4, 0x1917a0,3, 0x1917b0,3, 0x1917c0,3, 0x192000,2, 0x192010,12, 0x192044,1, 0x192080,5, 0x1920a0,1, 0x1920a8,1, 0x1920b0,2, 0x1920c0,4, 0x192100,6, 0x192120,1, 0x192128,1, 0x192130,2, 0x192140,4, 0x192180,3, 0x192190,3, 0x1921a0,5, 0x1921c0,2, 0x192400,35, 0x192500,3, 0x192510,2, 0x192528,13, 0x192560,2, 0x192800,4, 0x192820,2, 0x192900,4, 0x192980,31, 0x192a00,4, 0x192a80,31, 0x192b00,4, 0x192b80,18, 0x192c00,44, 0x192cc0,4, 0x192e00,25, 0x192e80,1, 0x192e88,8, 0x192ec0,6, 0x192ee0,1, 0x192ee8,2, 0x192f04,16, 0x193000,2, 0x193010,12, 0x193044,1, 0x193080,5, 0x1930a0,1, 0x1930a8,1, 0x1930b0,2, 0x1930c0,4, 0x193100,6, 0x193120,1, 0x193128,1, 0x193130,2, 0x193140,4, 0x193180,3, 0x193190,3, 0x1931a0,5, 0x1931c0,2, 0x193400,35, 0x193500,3, 0x193510,2, 0x193528,13, 0x193560,2, 0x193800,4, 0x193820,2, 0x193900,4, 0x193980,31, 0x193a00,4, 0x193a80,31, 0x193b00,4, 0x193b80,18, 0x193c00,44, 0x193cc0,4, 0x193e00,25, 0x193e80,1, 0x193e88,8, 0x193ec0,6, 0x193ee0,1, 0x193ee8,2, 0x193f04,16, 0x194000,19, 0x195000,16, 0x195080,11, 0x195400,96, 0x195584,1, 0x195590,11, 0x1955c8,2, 0x1955e0,9, 0x195608,1, 0x195610,3, 0x195620,2, 0x195634,1, 0x19563c,6, 0x195660,6, 0x195680,5, 0x1956a0,4, 0x1956bc,2, 0x1956e8,5, 0x195700,5, 0x195720,5, 0x195740,5, 0x195760,4, 0x1957a0,3, 0x1957b0,3, 0x1957c0,3, 0x196000,2, 0x196010,12, 0x196044,1, 0x196080,5, 0x1960a0,1, 0x1960a8,1, 0x1960b0,2, 0x1960c0,4, 0x196100,6, 0x196120,1, 0x196128,1, 0x196130,2, 0x196140,4, 0x196180,3, 0x196190,3, 0x1961a0,5, 0x1961c0,2, 0x196400,35, 0x196500,3, 0x196510,2, 0x196528,13, 0x196560,2, 0x196800,4, 0x196820,2, 0x196900,4, 0x196980,31, 0x196a00,4, 0x196a80,31, 0x196b00,4, 0x196b80,18, 0x196c00,44, 0x196cc0,4, 0x196e00,25, 0x196e80,1, 0x196e88,8, 0x196ec0,6, 0x196ee0,1, 0x196ee8,2, 0x196f04,16, 0x197000,2, 0x197010,12, 0x197044,1, 0x197080,5, 0x1970a0,1, 0x1970a8,1, 0x1970b0,2, 0x1970c0,4, 0x197100,6, 0x197120,1, 0x197128,1, 0x197130,2, 0x197140,4, 0x197180,3, 0x197190,3, 0x1971a0,5, 0x1971c0,2, 0x197400,35, 0x197500,3, 0x197510,2, 0x197528,13, 0x197560,2, 0x197800,4, 0x197820,2, 0x197900,4, 0x197980,31, 0x197a00,4, 0x197a80,31, 0x197b00,4, 0x197b80,18, 0x197c00,44, 0x197cc0,4, 0x197e00,25, 0x197e80,1, 0x197e88,8, 0x197ec0,6, 0x197ee0,1, 0x197ee8,2, 0x197f04,16, 0x198000,19, 0x199000,16, 0x199080,11, 0x199400,96, 0x199584,1, 0x199590,11, 0x1995c8,2, 0x1995e0,9, 0x199608,1, 0x199610,3, 0x199620,2, 0x199634,1, 0x19963c,6, 0x199660,6, 0x199680,5, 0x1996a0,4, 0x1996bc,2, 0x1996e8,5, 0x199700,5, 0x199720,5, 0x199740,5, 0x199760,4, 0x1997a0,3, 0x1997b0,3, 0x1997c0,3, 0x19a000,2, 0x19a010,12, 0x19a044,1, 0x19a080,5, 0x19a0a0,1, 0x19a0a8,1, 0x19a0b0,2, 0x19a0c0,4, 0x19a100,6, 0x19a120,1, 0x19a128,1, 0x19a130,2, 0x19a140,4, 0x19a180,3, 0x19a190,3, 0x19a1a0,5, 0x19a1c0,2, 0x19a400,35, 0x19a500,3, 0x19a510,2, 0x19a528,13, 0x19a560,2, 0x19a800,4, 0x19a820,2, 0x19a900,4, 0x19a980,31, 0x19aa00,4, 0x19aa80,31, 0x19ab00,4, 0x19ab80,18, 0x19ac00,44, 0x19acc0,4, 0x19ae00,25, 0x19ae80,1, 0x19ae88,8, 0x19aec0,6, 0x19aee0,1, 0x19aee8,2, 0x19af04,16, 0x19b000,2, 0x19b010,12, 0x19b044,1, 0x19b080,5, 0x19b0a0,1, 0x19b0a8,1, 0x19b0b0,2, 0x19b0c0,4, 0x19b100,6, 0x19b120,1, 0x19b128,1, 0x19b130,2, 0x19b140,4, 0x19b180,3, 0x19b190,3, 0x19b1a0,5, 0x19b1c0,2, 0x19b400,35, 0x19b500,3, 0x19b510,2, 0x19b528,13, 0x19b560,2, 0x19b800,4, 0x19b820,2, 0x19b900,4, 0x19b980,31, 0x19ba00,4, 0x19ba80,31, 0x19bb00,4, 0x19bb80,18, 0x19bc00,44, 0x19bcc0,4, 0x19be00,25, 0x19be80,1, 0x19be88,8, 0x19bec0,6, 0x19bee0,1, 0x19bee8,2, 0x19bf04,16, 0x19c000,19, 0x19d000,16, 0x19d080,11, 0x19d400,96, 0x19d584,1, 0x19d590,11, 0x19d5c8,2, 0x19d5e0,9, 0x19d608,1, 0x19d610,3, 0x19d620,2, 0x19d634,1, 0x19d63c,6, 0x19d660,6, 0x19d680,5, 0x19d6a0,4, 0x19d6bc,2, 0x19d6e8,5, 0x19d700,5, 0x19d720,5, 0x19d740,5, 0x19d760,4, 0x19d7a0,3, 0x19d7b0,3, 0x19d7c0,3, 0x19e000,2, 0x19e010,12, 0x19e044,1, 0x19e080,5, 0x19e0a0,1, 0x19e0a8,1, 0x19e0b0,2, 0x19e0c0,4, 0x19e100,6, 0x19e120,1, 0x19e128,1, 0x19e130,2, 0x19e140,4, 0x19e180,3, 0x19e190,3, 0x19e1a0,5, 0x19e1c0,2, 0x19e400,35, 0x19e500,3, 0x19e510,2, 0x19e528,13, 0x19e560,2, 0x19e800,4, 0x19e820,2, 0x19e900,4, 0x19e980,31, 0x19ea00,4, 0x19ea80,31, 0x19eb00,4, 0x19eb80,18, 0x19ec00,44, 0x19ecc0,4, 0x19ee00,25, 0x19ee80,1, 0x19ee88,8, 0x19eec0,6, 0x19eee0,1, 0x19eee8,2, 0x19ef04,16, 0x19f000,2, 0x19f010,12, 0x19f044,1, 0x19f080,5, 0x19f0a0,1, 0x19f0a8,1, 0x19f0b0,2, 0x19f0c0,4, 0x19f100,6, 0x19f120,1, 0x19f128,1, 0x19f130,2, 0x19f140,4, 0x19f180,3, 0x19f190,3, 0x19f1a0,5, 0x19f1c0,2, 0x19f400,35, 0x19f500,3, 0x19f510,2, 0x19f528,13, 0x19f560,2, 0x19f800,4, 0x19f820,2, 0x19f900,4, 0x19f980,31, 0x19fa00,4, 0x19fa80,31, 0x19fb00,4, 0x19fb80,18, 0x19fc00,44, 0x19fcc0,4, 0x19fe00,25, 0x19fe80,1, 0x19fe88,8, 0x19fec0,6, 0x19fee0,1, 0x19fee8,2, 0x19ff04,16, 0x1a0000,19, 0x1a1000,16, 0x1a1080,11, 0x1a1400,96, 0x1a1584,1, 0x1a1590,11, 0x1a15c8,2, 0x1a15e0,9, 0x1a1608,1, 0x1a1610,3, 0x1a1620,2, 0x1a1634,1, 0x1a163c,6, 0x1a1660,6, 0x1a1680,5, 0x1a16a0,4, 0x1a16bc,2, 0x1a16e8,5, 0x1a1700,5, 0x1a1720,5, 0x1a1740,5, 0x1a1760,4, 0x1a17a0,3, 0x1a17b0,3, 0x1a17c0,3, 0x1a2000,2, 0x1a2010,12, 0x1a2044,1, 0x1a2080,5, 0x1a20a0,1, 0x1a20a8,1, 0x1a20b0,2, 0x1a20c0,4, 0x1a2100,6, 0x1a2120,1, 0x1a2128,1, 0x1a2130,2, 0x1a2140,4, 0x1a2180,3, 0x1a2190,3, 0x1a21a0,5, 0x1a21c0,2, 0x1a2400,35, 0x1a2500,3, 0x1a2510,2, 0x1a2528,13, 0x1a2560,2, 0x1a2800,4, 0x1a2820,2, 0x1a2900,4, 0x1a2980,31, 0x1a2a00,4, 0x1a2a80,31, 0x1a2b00,4, 0x1a2b80,18, 0x1a2c00,44, 0x1a2cc0,4, 0x1a2e00,25, 0x1a2e80,1, 0x1a2e88,8, 0x1a2ec0,6, 0x1a2ee0,1, 0x1a2ee8,2, 0x1a2f04,16, 0x1a3000,2, 0x1a3010,12, 0x1a3044,1, 0x1a3080,5, 0x1a30a0,1, 0x1a30a8,1, 0x1a30b0,2, 0x1a30c0,4, 0x1a3100,6, 0x1a3120,1, 0x1a3128,1, 0x1a3130,2, 0x1a3140,4, 0x1a3180,3, 0x1a3190,3, 0x1a31a0,5, 0x1a31c0,2, 0x1a3400,35, 0x1a3500,3, 0x1a3510,2, 0x1a3528,13, 0x1a3560,2, 0x1a3800,4, 0x1a3820,2, 0x1a3900,4, 0x1a3980,31, 0x1a3a00,4, 0x1a3a80,31, 0x1a3b00,4, 0x1a3b80,18, 0x1a3c00,44, 0x1a3cc0,4, 0x1a3e00,25, 0x1a3e80,1, 0x1a3e88,8, 0x1a3ec0,6, 0x1a3ee0,1, 0x1a3ee8,2, 0x1a3f04,16, 0x1a4000,19, 0x1a5000,16, 0x1a5080,11, 0x1a5400,96, 0x1a5584,1, 0x1a5590,11, 0x1a55c8,2, 0x1a55e0,9, 0x1a5608,1, 0x1a5610,3, 0x1a5620,2, 0x1a5634,1, 0x1a563c,6, 0x1a5660,6, 0x1a5680,5, 0x1a56a0,4, 0x1a56bc,2, 0x1a56e8,5, 0x1a5700,5, 0x1a5720,5, 0x1a5740,5, 0x1a5760,4, 0x1a57a0,3, 0x1a57b0,3, 0x1a57c0,3, 0x1a6000,2, 0x1a6010,12, 0x1a6044,1, 0x1a6080,5, 0x1a60a0,1, 0x1a60a8,1, 0x1a60b0,2, 0x1a60c0,4, 0x1a6100,6, 0x1a6120,1, 0x1a6128,1, 0x1a6130,2, 0x1a6140,4, 0x1a6180,3, 0x1a6190,3, 0x1a61a0,5, 0x1a61c0,2, 0x1a6400,35, 0x1a6500,3, 0x1a6510,2, 0x1a6528,13, 0x1a6560,2, 0x1a6800,4, 0x1a6820,2, 0x1a6900,4, 0x1a6980,31, 0x1a6a00,4, 0x1a6a80,31, 0x1a6b00,4, 0x1a6b80,18, 0x1a6c00,44, 0x1a6cc0,4, 0x1a6e00,25, 0x1a6e80,1, 0x1a6e88,8, 0x1a6ec0,6, 0x1a6ee0,1, 0x1a6ee8,2, 0x1a6f04,16, 0x1a7000,2, 0x1a7010,12, 0x1a7044,1, 0x1a7080,5, 0x1a70a0,1, 0x1a70a8,1, 0x1a70b0,2, 0x1a70c0,4, 0x1a7100,6, 0x1a7120,1, 0x1a7128,1, 0x1a7130,2, 0x1a7140,4, 0x1a7180,3, 0x1a7190,3, 0x1a71a0,5, 0x1a71c0,2, 0x1a7400,35, 0x1a7500,3, 0x1a7510,2, 0x1a7528,13, 0x1a7560,2, 0x1a7800,4, 0x1a7820,2, 0x1a7900,4, 0x1a7980,31, 0x1a7a00,4, 0x1a7a80,31, 0x1a7b00,4, 0x1a7b80,18, 0x1a7c00,44, 0x1a7cc0,4, 0x1a7e00,25, 0x1a7e80,1, 0x1a7e88,8, 0x1a7ec0,6, 0x1a7ee0,1, 0x1a7ee8,2, 0x1a7f04,16, 0x1a8000,19, 0x1a9000,16, 0x1a9080,11, 0x1a9400,96, 0x1a9584,1, 0x1a9590,11, 0x1a95c8,2, 0x1a95e0,9, 0x1a9608,1, 0x1a9610,3, 0x1a9620,2, 0x1a9634,1, 0x1a963c,6, 0x1a9660,6, 0x1a9680,5, 0x1a96a0,4, 0x1a96bc,2, 0x1a96e8,5, 0x1a9700,5, 0x1a9720,5, 0x1a9740,5, 0x1a9760,4, 0x1a97a0,3, 0x1a97b0,3, 0x1a97c0,3, 0x1aa000,2, 0x1aa010,12, 0x1aa044,1, 0x1aa080,5, 0x1aa0a0,1, 0x1aa0a8,1, 0x1aa0b0,2, 0x1aa0c0,4, 0x1aa100,6, 0x1aa120,1, 0x1aa128,1, 0x1aa130,2, 0x1aa140,4, 0x1aa180,3, 0x1aa190,3, 0x1aa1a0,5, 0x1aa1c0,2, 0x1aa400,35, 0x1aa500,3, 0x1aa510,2, 0x1aa528,13, 0x1aa560,2, 0x1aa800,4, 0x1aa820,2, 0x1aa900,4, 0x1aa980,31, 0x1aaa00,4, 0x1aaa80,31, 0x1aab00,4, 0x1aab80,18, 0x1aac00,44, 0x1aacc0,4, 0x1aae00,25, 0x1aae80,1, 0x1aae88,8, 0x1aaec0,6, 0x1aaee0,1, 0x1aaee8,2, 0x1aaf04,16, 0x1ab000,2, 0x1ab010,12, 0x1ab044,1, 0x1ab080,5, 0x1ab0a0,1, 0x1ab0a8,1, 0x1ab0b0,2, 0x1ab0c0,4, 0x1ab100,6, 0x1ab120,1, 0x1ab128,1, 0x1ab130,2, 0x1ab140,4, 0x1ab180,3, 0x1ab190,3, 0x1ab1a0,5, 0x1ab1c0,2, 0x1ab400,35, 0x1ab500,3, 0x1ab510,2, 0x1ab528,13, 0x1ab560,2, 0x1ab800,4, 0x1ab820,2, 0x1ab900,4, 0x1ab980,31, 0x1aba00,4, 0x1aba80,31, 0x1abb00,4, 0x1abb80,18, 0x1abc00,44, 0x1abcc0,4, 0x1abe00,25, 0x1abe80,1, 0x1abe88,8, 0x1abec0,6, 0x1abee0,1, 0x1abee8,2, 0x1abf04,16, 0x1ac000,19, 0x1ad000,16, 0x1ad080,11, 0x1ad400,96, 0x1ad584,1, 0x1ad590,11, 0x1ad5c8,2, 0x1ad5e0,9, 0x1ad608,1, 0x1ad610,3, 0x1ad620,2, 0x1ad634,1, 0x1ad63c,6, 0x1ad660,6, 0x1ad680,5, 0x1ad6a0,4, 0x1ad6bc,2, 0x1ad6e8,5, 0x1ad700,5, 0x1ad720,5, 0x1ad740,5, 0x1ad760,4, 0x1ad7a0,3, 0x1ad7b0,3, 0x1ad7c0,3, 0x1ae000,2, 0x1ae010,12, 0x1ae044,1, 0x1ae080,5, 0x1ae0a0,1, 0x1ae0a8,1, 0x1ae0b0,2, 0x1ae0c0,4, 0x1ae100,6, 0x1ae120,1, 0x1ae128,1, 0x1ae130,2, 0x1ae140,4, 0x1ae180,3, 0x1ae190,3, 0x1ae1a0,5, 0x1ae1c0,2, 0x1ae400,35, 0x1ae500,3, 0x1ae510,2, 0x1ae528,13, 0x1ae560,2, 0x1ae800,4, 0x1ae820,2, 0x1ae900,4, 0x1ae980,31, 0x1aea00,4, 0x1aea80,31, 0x1aeb00,4, 0x1aeb80,18, 0x1aec00,44, 0x1aecc0,4, 0x1aee00,25, 0x1aee80,1, 0x1aee88,8, 0x1aeec0,6, 0x1aeee0,1, 0x1aeee8,2, 0x1aef04,16, 0x1af000,2, 0x1af010,12, 0x1af044,1, 0x1af080,5, 0x1af0a0,1, 0x1af0a8,1, 0x1af0b0,2, 0x1af0c0,4, 0x1af100,6, 0x1af120,1, 0x1af128,1, 0x1af130,2, 0x1af140,4, 0x1af180,3, 0x1af190,3, 0x1af1a0,5, 0x1af1c0,2, 0x1af400,35, 0x1af500,3, 0x1af510,2, 0x1af528,13, 0x1af560,2, 0x1af800,4, 0x1af820,2, 0x1af900,4, 0x1af980,31, 0x1afa00,4, 0x1afa80,31, 0x1afb00,4, 0x1afb80,18, 0x1afc00,44, 0x1afcc0,4, 0x1afe00,25, 0x1afe80,1, 0x1afe88,8, 0x1afec0,6, 0x1afee0,1, 0x1afee8,2, 0x1aff04,16, 0x1b0000,19, 0x1b1000,16, 0x1b1080,11, 0x1b1400,96, 0x1b1584,1, 0x1b1590,11, 0x1b15c8,2, 0x1b15e0,9, 0x1b1608,1, 0x1b1610,3, 0x1b1620,2, 0x1b1634,1, 0x1b163c,6, 0x1b1660,6, 0x1b1680,5, 0x1b16a0,4, 0x1b16bc,2, 0x1b16e8,5, 0x1b1700,5, 0x1b1720,5, 0x1b1740,5, 0x1b1760,4, 0x1b17a0,3, 0x1b17b0,3, 0x1b17c0,3, 0x1b2000,2, 0x1b2010,12, 0x1b2044,1, 0x1b2080,5, 0x1b20a0,1, 0x1b20a8,1, 0x1b20b0,2, 0x1b20c0,4, 0x1b2100,6, 0x1b2120,1, 0x1b2128,1, 0x1b2130,2, 0x1b2140,4, 0x1b2180,3, 0x1b2190,3, 0x1b21a0,5, 0x1b21c0,2, 0x1b2400,35, 0x1b2500,3, 0x1b2510,2, 0x1b2528,13, 0x1b2560,2, 0x1b2800,4, 0x1b2820,2, 0x1b2900,4, 0x1b2980,31, 0x1b2a00,4, 0x1b2a80,31, 0x1b2b00,4, 0x1b2b80,18, 0x1b2c00,44, 0x1b2cc0,4, 0x1b2e00,25, 0x1b2e80,1, 0x1b2e88,8, 0x1b2ec0,6, 0x1b2ee0,1, 0x1b2ee8,2, 0x1b2f04,16, 0x1b3000,2, 0x1b3010,12, 0x1b3044,1, 0x1b3080,5, 0x1b30a0,1, 0x1b30a8,1, 0x1b30b0,2, 0x1b30c0,4, 0x1b3100,6, 0x1b3120,1, 0x1b3128,1, 0x1b3130,2, 0x1b3140,4, 0x1b3180,3, 0x1b3190,3, 0x1b31a0,5, 0x1b31c0,2, 0x1b3400,35, 0x1b3500,3, 0x1b3510,2, 0x1b3528,13, 0x1b3560,2, 0x1b3800,4, 0x1b3820,2, 0x1b3900,4, 0x1b3980,31, 0x1b3a00,4, 0x1b3a80,31, 0x1b3b00,4, 0x1b3b80,18, 0x1b3c00,44, 0x1b3cc0,4, 0x1b3e00,25, 0x1b3e80,1, 0x1b3e88,8, 0x1b3ec0,6, 0x1b3ee0,1, 0x1b3ee8,2, 0x1b3f04,16, 0x1b4000,19, 0x1b5000,16, 0x1b5080,11, 0x1b5400,96, 0x1b5584,1, 0x1b5590,11, 0x1b55c8,2, 0x1b55e0,9, 0x1b5608,1, 0x1b5610,3, 0x1b5620,2, 0x1b5634,1, 0x1b563c,6, 0x1b5660,6, 0x1b5680,5, 0x1b56a0,4, 0x1b56bc,2, 0x1b56e8,5, 0x1b5700,5, 0x1b5720,5, 0x1b5740,5, 0x1b5760,4, 0x1b57a0,3, 0x1b57b0,3, 0x1b57c0,3, 0x1b6000,2, 0x1b6010,12, 0x1b6044,1, 0x1b6080,5, 0x1b60a0,1, 0x1b60a8,1, 0x1b60b0,2, 0x1b60c0,4, 0x1b6100,6, 0x1b6120,1, 0x1b6128,1, 0x1b6130,2, 0x1b6140,4, 0x1b6180,3, 0x1b6190,3, 0x1b61a0,5, 0x1b61c0,2, 0x1b6400,35, 0x1b6500,3, 0x1b6510,2, 0x1b6528,13, 0x1b6560,2, 0x1b6800,4, 0x1b6820,2, 0x1b6900,4, 0x1b6980,31, 0x1b6a00,4, 0x1b6a80,31, 0x1b6b00,4, 0x1b6b80,18, 0x1b6c00,44, 0x1b6cc0,4, 0x1b6e00,25, 0x1b6e80,1, 0x1b6e88,8, 0x1b6ec0,6, 0x1b6ee0,1, 0x1b6ee8,2, 0x1b6f04,16, 0x1b7000,2, 0x1b7010,12, 0x1b7044,1, 0x1b7080,5, 0x1b70a0,1, 0x1b70a8,1, 0x1b70b0,2, 0x1b70c0,4, 0x1b7100,6, 0x1b7120,1, 0x1b7128,1, 0x1b7130,2, 0x1b7140,4, 0x1b7180,3, 0x1b7190,3, 0x1b71a0,5, 0x1b71c0,2, 0x1b7400,35, 0x1b7500,3, 0x1b7510,2, 0x1b7528,13, 0x1b7560,2, 0x1b7800,4, 0x1b7820,2, 0x1b7900,4, 0x1b7980,31, 0x1b7a00,4, 0x1b7a80,31, 0x1b7b00,4, 0x1b7b80,18, 0x1b7c00,44, 0x1b7cc0,4, 0x1b7e00,25, 0x1b7e80,1, 0x1b7e88,8, 0x1b7ec0,6, 0x1b7ee0,1, 0x1b7ee8,2, 0x1b7f04,16, 0x1b8000,19, 0x1b9000,16, 0x1b9080,11, 0x1b9400,96, 0x1b9584,1, 0x1b9590,11, 0x1b95c8,2, 0x1b95e0,9, 0x1b9608,1, 0x1b9610,3, 0x1b9620,2, 0x1b9634,1, 0x1b963c,6, 0x1b9660,6, 0x1b9680,5, 0x1b96a0,4, 0x1b96bc,2, 0x1b96e8,5, 0x1b9700,5, 0x1b9720,5, 0x1b9740,5, 0x1b9760,4, 0x1b97a0,3, 0x1b97b0,3, 0x1b97c0,3, 0x1ba000,2, 0x1ba010,12, 0x1ba044,1, 0x1ba080,5, 0x1ba0a0,1, 0x1ba0a8,1, 0x1ba0b0,2, 0x1ba0c0,4, 0x1ba100,6, 0x1ba120,1, 0x1ba128,1, 0x1ba130,2, 0x1ba140,4, 0x1ba180,3, 0x1ba190,3, 0x1ba1a0,5, 0x1ba1c0,2, 0x1ba400,35, 0x1ba500,3, 0x1ba510,2, 0x1ba528,13, 0x1ba560,2, 0x1ba800,4, 0x1ba820,2, 0x1ba900,4, 0x1ba980,31, 0x1baa00,4, 0x1baa80,31, 0x1bab00,4, 0x1bab80,18, 0x1bac00,44, 0x1bacc0,4, 0x1bae00,25, 0x1bae80,1, 0x1bae88,8, 0x1baec0,6, 0x1baee0,1, 0x1baee8,2, 0x1baf04,16, 0x1bb000,2, 0x1bb010,12, 0x1bb044,1, 0x1bb080,5, 0x1bb0a0,1, 0x1bb0a8,1, 0x1bb0b0,2, 0x1bb0c0,4, 0x1bb100,6, 0x1bb120,1, 0x1bb128,1, 0x1bb130,2, 0x1bb140,4, 0x1bb180,3, 0x1bb190,3, 0x1bb1a0,5, 0x1bb1c0,2, 0x1bb400,35, 0x1bb500,3, 0x1bb510,2, 0x1bb528,13, 0x1bb560,2, 0x1bb800,4, 0x1bb820,2, 0x1bb900,4, 0x1bb980,31, 0x1bba00,4, 0x1bba80,31, 0x1bbb00,4, 0x1bbb80,18, 0x1bbc00,44, 0x1bbcc0,4, 0x1bbe00,25, 0x1bbe80,1, 0x1bbe88,8, 0x1bbec0,6, 0x1bbee0,1, 0x1bbee8,2, 0x1bbf04,16, 0x1bc000,19, 0x1bd000,16, 0x1bd080,11, 0x1bd400,96, 0x1bd584,1, 0x1bd590,11, 0x1bd5c8,2, 0x1bd5e0,9, 0x1bd608,1, 0x1bd610,3, 0x1bd620,2, 0x1bd634,1, 0x1bd63c,6, 0x1bd660,6, 0x1bd680,5, 0x1bd6a0,4, 0x1bd6bc,2, 0x1bd6e8,5, 0x1bd700,5, 0x1bd720,5, 0x1bd740,5, 0x1bd760,4, 0x1bd7a0,3, 0x1bd7b0,3, 0x1bd7c0,3, 0x1be000,2, 0x1be010,12, 0x1be044,1, 0x1be080,5, 0x1be0a0,1, 0x1be0a8,1, 0x1be0b0,2, 0x1be0c0,4, 0x1be100,6, 0x1be120,1, 0x1be128,1, 0x1be130,2, 0x1be140,4, 0x1be180,3, 0x1be190,3, 0x1be1a0,5, 0x1be1c0,2, 0x1be400,35, 0x1be500,3, 0x1be510,2, 0x1be528,13, 0x1be560,2, 0x1be800,4, 0x1be820,2, 0x1be900,4, 0x1be980,31, 0x1bea00,4, 0x1bea80,31, 0x1beb00,4, 0x1beb80,18, 0x1bec00,44, 0x1becc0,4, 0x1bee00,25, 0x1bee80,1, 0x1bee88,8, 0x1beec0,6, 0x1beee0,1, 0x1beee8,2, 0x1bef04,16, 0x1bf000,2, 0x1bf010,12, 0x1bf044,1, 0x1bf080,5, 0x1bf0a0,1, 0x1bf0a8,1, 0x1bf0b0,2, 0x1bf0c0,4, 0x1bf100,6, 0x1bf120,1, 0x1bf128,1, 0x1bf130,2, 0x1bf140,4, 0x1bf180,3, 0x1bf190,3, 0x1bf1a0,5, 0x1bf1c0,2, 0x1bf400,35, 0x1bf500,3, 0x1bf510,2, 0x1bf528,13, 0x1bf560,2, 0x1bf800,4, 0x1bf820,2, 0x1bf900,4, 0x1bf980,31, 0x1bfa00,4, 0x1bfa80,31, 0x1bfb00,4, 0x1bfb80,18, 0x1bfc00,44, 0x1bfcc0,4, 0x1bfe00,25, 0x1bfe80,1, 0x1bfe88,8, 0x1bfec0,6, 0x1bfee0,1, 0x1bfee8,2, 0x1bff04,16, 0x1c0000,19, 0x1c1000,16, 0x1c1080,11, 0x1c1400,96, 0x1c1584,1, 0x1c1590,11, 0x1c15c8,2, 0x1c15e0,9, 0x1c1608,1, 0x1c1610,3, 0x1c1620,2, 0x1c1634,1, 0x1c163c,6, 0x1c1660,6, 0x1c1680,5, 0x1c16a0,4, 0x1c16bc,2, 0x1c16e8,5, 0x1c1700,5, 0x1c1720,5, 0x1c1740,5, 0x1c1760,4, 0x1c17a0,3, 0x1c17b0,3, 0x1c17c0,3, 0x1c2000,2, 0x1c2010,12, 0x1c2044,1, 0x1c2080,5, 0x1c20a0,1, 0x1c20a8,1, 0x1c20b0,2, 0x1c20c0,4, 0x1c2100,6, 0x1c2120,1, 0x1c2128,1, 0x1c2130,2, 0x1c2140,4, 0x1c2180,3, 0x1c2190,3, 0x1c21a0,5, 0x1c21c0,2, 0x1c2400,35, 0x1c2500,3, 0x1c2510,2, 0x1c2528,13, 0x1c2560,2, 0x1c2800,4, 0x1c2820,2, 0x1c2900,4, 0x1c2980,31, 0x1c2a00,4, 0x1c2a80,31, 0x1c2b00,4, 0x1c2b80,18, 0x1c2c00,44, 0x1c2cc0,4, 0x1c2e00,25, 0x1c2e80,1, 0x1c2e88,8, 0x1c2ec0,6, 0x1c2ee0,1, 0x1c2ee8,2, 0x1c2f04,16, 0x1c3000,2, 0x1c3010,12, 0x1c3044,1, 0x1c3080,5, 0x1c30a0,1, 0x1c30a8,1, 0x1c30b0,2, 0x1c30c0,4, 0x1c3100,6, 0x1c3120,1, 0x1c3128,1, 0x1c3130,2, 0x1c3140,4, 0x1c3180,3, 0x1c3190,3, 0x1c31a0,5, 0x1c31c0,2, 0x1c3400,35, 0x1c3500,3, 0x1c3510,2, 0x1c3528,13, 0x1c3560,2, 0x1c3800,4, 0x1c3820,2, 0x1c3900,4, 0x1c3980,31, 0x1c3a00,4, 0x1c3a80,31, 0x1c3b00,4, 0x1c3b80,18, 0x1c3c00,44, 0x1c3cc0,4, 0x1c3e00,25, 0x1c3e80,1, 0x1c3e88,8, 0x1c3ec0,6, 0x1c3ee0,1, 0x1c3ee8,2, 0x1c3f04,16, 0x1c4000,19, 0x1c5000,16, 0x1c5080,11, 0x1c5400,96, 0x1c5584,1, 0x1c5590,11, 0x1c55c8,2, 0x1c55e0,9, 0x1c5608,1, 0x1c5610,3, 0x1c5620,2, 0x1c5634,1, 0x1c563c,6, 0x1c5660,6, 0x1c5680,5, 0x1c56a0,4, 0x1c56bc,2, 0x1c56e8,5, 0x1c5700,5, 0x1c5720,5, 0x1c5740,5, 0x1c5760,4, 0x1c57a0,3, 0x1c57b0,3, 0x1c57c0,3, 0x1c6000,2, 0x1c6010,12, 0x1c6044,1, 0x1c6080,5, 0x1c60a0,1, 0x1c60a8,1, 0x1c60b0,2, 0x1c60c0,4, 0x1c6100,6, 0x1c6120,1, 0x1c6128,1, 0x1c6130,2, 0x1c6140,4, 0x1c6180,3, 0x1c6190,3, 0x1c61a0,5, 0x1c61c0,2, 0x1c6400,35, 0x1c6500,3, 0x1c6510,2, 0x1c6528,13, 0x1c6560,2, 0x1c6800,4, 0x1c6820,2, 0x1c6900,4, 0x1c6980,31, 0x1c6a00,4, 0x1c6a80,31, 0x1c6b00,4, 0x1c6b80,18, 0x1c6c00,44, 0x1c6cc0,4, 0x1c6e00,25, 0x1c6e80,1, 0x1c6e88,8, 0x1c6ec0,6, 0x1c6ee0,1, 0x1c6ee8,2, 0x1c6f04,16, 0x1c7000,2, 0x1c7010,12, 0x1c7044,1, 0x1c7080,5, 0x1c70a0,1, 0x1c70a8,1, 0x1c70b0,2, 0x1c70c0,4, 0x1c7100,6, 0x1c7120,1, 0x1c7128,1, 0x1c7130,2, 0x1c7140,4, 0x1c7180,3, 0x1c7190,3, 0x1c71a0,5, 0x1c71c0,2, 0x1c7400,35, 0x1c7500,3, 0x1c7510,2, 0x1c7528,13, 0x1c7560,2, 0x1c7800,4, 0x1c7820,2, 0x1c7900,4, 0x1c7980,31, 0x1c7a00,4, 0x1c7a80,31, 0x1c7b00,4, 0x1c7b80,18, 0x1c7c00,44, 0x1c7cc0,4, 0x1c7e00,25, 0x1c7e80,1, 0x1c7e88,8, 0x1c7ec0,6, 0x1c7ee0,1, 0x1c7ee8,2, 0x1c7f04,16, 0x1c8000,19, 0x1c9000,16, 0x1c9080,11, 0x1c9400,96, 0x1c9584,1, 0x1c9590,11, 0x1c95c8,2, 0x1c95e0,9, 0x1c9608,1, 0x1c9610,3, 0x1c9620,2, 0x1c9634,1, 0x1c963c,6, 0x1c9660,6, 0x1c9680,5, 0x1c96a0,4, 0x1c96bc,2, 0x1c96e8,5, 0x1c9700,5, 0x1c9720,5, 0x1c9740,5, 0x1c9760,4, 0x1c97a0,3, 0x1c97b0,3, 0x1c97c0,3, 0x1ca000,2, 0x1ca010,12, 0x1ca044,1, 0x1ca080,5, 0x1ca0a0,1, 0x1ca0a8,1, 0x1ca0b0,2, 0x1ca0c0,4, 0x1ca100,6, 0x1ca120,1, 0x1ca128,1, 0x1ca130,2, 0x1ca140,4, 0x1ca180,3, 0x1ca190,3, 0x1ca1a0,5, 0x1ca1c0,2, 0x1ca400,35, 0x1ca500,3, 0x1ca510,2, 0x1ca528,13, 0x1ca560,2, 0x1ca800,4, 0x1ca820,2, 0x1ca900,4, 0x1ca980,31, 0x1caa00,4, 0x1caa80,31, 0x1cab00,4, 0x1cab80,18, 0x1cac00,44, 0x1cacc0,4, 0x1cae00,25, 0x1cae80,1, 0x1cae88,8, 0x1caec0,6, 0x1caee0,1, 0x1caee8,2, 0x1caf04,16, 0x1cb000,2, 0x1cb010,12, 0x1cb044,1, 0x1cb080,5, 0x1cb0a0,1, 0x1cb0a8,1, 0x1cb0b0,2, 0x1cb0c0,4, 0x1cb100,6, 0x1cb120,1, 0x1cb128,1, 0x1cb130,2, 0x1cb140,4, 0x1cb180,3, 0x1cb190,3, 0x1cb1a0,5, 0x1cb1c0,2, 0x1cb400,35, 0x1cb500,3, 0x1cb510,2, 0x1cb528,13, 0x1cb560,2, 0x1cb800,4, 0x1cb820,2, 0x1cb900,4, 0x1cb980,31, 0x1cba00,4, 0x1cba80,31, 0x1cbb00,4, 0x1cbb80,18, 0x1cbc00,44, 0x1cbcc0,4, 0x1cbe00,25, 0x1cbe80,1, 0x1cbe88,8, 0x1cbec0,6, 0x1cbee0,1, 0x1cbee8,2, 0x1cbf04,16, 0x1cc000,19, 0x1cd000,16, 0x1cd080,11, 0x1cd400,96, 0x1cd584,1, 0x1cd590,11, 0x1cd5c8,2, 0x1cd5e0,9, 0x1cd608,1, 0x1cd610,3, 0x1cd620,2, 0x1cd634,1, 0x1cd63c,6, 0x1cd660,6, 0x1cd680,5, 0x1cd6a0,4, 0x1cd6bc,2, 0x1cd6e8,5, 0x1cd700,5, 0x1cd720,5, 0x1cd740,5, 0x1cd760,4, 0x1cd7a0,3, 0x1cd7b0,3, 0x1cd7c0,3, 0x1ce000,2, 0x1ce010,12, 0x1ce044,1, 0x1ce080,5, 0x1ce0a0,1, 0x1ce0a8,1, 0x1ce0b0,2, 0x1ce0c0,4, 0x1ce100,6, 0x1ce120,1, 0x1ce128,1, 0x1ce130,2, 0x1ce140,4, 0x1ce180,3, 0x1ce190,3, 0x1ce1a0,5, 0x1ce1c0,2, 0x1ce400,35, 0x1ce500,3, 0x1ce510,2, 0x1ce528,13, 0x1ce560,2, 0x1ce800,4, 0x1ce820,2, 0x1ce900,4, 0x1ce980,31, 0x1cea00,4, 0x1cea80,31, 0x1ceb00,4, 0x1ceb80,18, 0x1cec00,44, 0x1cecc0,4, 0x1cee00,25, 0x1cee80,1, 0x1cee88,8, 0x1ceec0,6, 0x1ceee0,1, 0x1ceee8,2, 0x1cef04,16, 0x1cf000,2, 0x1cf010,12, 0x1cf044,1, 0x1cf080,5, 0x1cf0a0,1, 0x1cf0a8,1, 0x1cf0b0,2, 0x1cf0c0,4, 0x1cf100,6, 0x1cf120,1, 0x1cf128,1, 0x1cf130,2, 0x1cf140,4, 0x1cf180,3, 0x1cf190,3, 0x1cf1a0,5, 0x1cf1c0,2, 0x1cf400,35, 0x1cf500,3, 0x1cf510,2, 0x1cf528,13, 0x1cf560,2, 0x1cf800,4, 0x1cf820,2, 0x1cf900,4, 0x1cf980,31, 0x1cfa00,4, 0x1cfa80,31, 0x1cfb00,4, 0x1cfb80,18, 0x1cfc00,44, 0x1cfcc0,4, 0x1cfe00,25, 0x1cfe80,1, 0x1cfe88,8, 0x1cfec0,6, 0x1cfee0,1, 0x1cfee8,2, 0x1cff04,16, 0x1d0000,35, 0x1d0100,35, 0x1d0200,3, 0x1d0c00,10, 0x1d0c80,3, 0x1d1004,1, 0x1d1024,7, 0x1d1044,1, 0x1d1064,7, 0x1d1084,1, 0x1d10a4,7, 0x1d10c4,1, 0x1d10e4,7, 0x1d1104,1, 0x1d1124,7, 0x1d1144,1, 0x1d1164,7, 0x1d1184,1, 0x1d11a4,7, 0x1d11c4,1, 0x1d11e4,7, 0x1d1204,3, 0x1d1214,3, 0x1d1224,3, 0x1d1234,3, 0x1d1244,3, 0x1d1254,3, 0x1d1264,3, 0x1d1274,22, 0x1d1400,17, 0x1d144c,1, 0x1d1480,17, 0x1d14cc,1, 0x1d1500,17, 0x1d154c,1, 0x1d1580,17, 0x1d15cc,1, 0x1d1600,17, 0x1d164c,1, 0x1d1680,17, 0x1d16cc,1, 0x1d1700,17, 0x1d174c,1, 0x1d1780,17, 0x1d17cc,1, 0x1d2004,1, 0x1d2018,3, 0x1d2034,6, 0x1d2050,3, 0x1d2060,2, 0x1d2070,1, 0x1d2080,12, 0x1d20c0,12, 0x1d2100,12, 0x1d2140,12, 0x1d2180,12, 0x1d21c4,5, 0x1d21dc,2, 0x1d21e8,1, 0x1d21fc,1, 0x1d2204,1, 0x1d2218,3, 0x1d2234,6, 0x1d2250,3, 0x1d2260,2, 0x1d2270,1, 0x1d2280,12, 0x1d22c0,12, 0x1d2300,12, 0x1d2340,12, 0x1d2380,12, 0x1d23c4,5, 0x1d23dc,2, 0x1d23e8,1, 0x1d23fc,1, 0x1d2404,1, 0x1d2418,3, 0x1d2434,6, 0x1d2450,3, 0x1d2460,2, 0x1d2470,1, 0x1d2480,12, 0x1d24c0,12, 0x1d2500,12, 0x1d2540,12, 0x1d2580,12, 0x1d25c4,5, 0x1d25dc,2, 0x1d25e8,1, 0x1d25fc,1, 0x1d2604,1, 0x1d2618,3, 0x1d2634,6, 0x1d2650,3, 0x1d2660,2, 0x1d2670,1, 0x1d2680,12, 0x1d26c0,12, 0x1d2700,12, 0x1d2740,12, 0x1d2780,12, 0x1d27c4,5, 0x1d27dc,2, 0x1d27e8,1, 0x1d27fc,1, 0x1d2804,1, 0x1d2818,3, 0x1d2834,6, 0x1d2850,3, 0x1d2860,2, 0x1d2870,1, 0x1d2880,12, 0x1d28c0,12, 0x1d2900,12, 0x1d2940,12, 0x1d2980,12, 0x1d29c4,5, 0x1d29dc,2, 0x1d29e8,1, 0x1d29fc,1, 0x1d2a04,1, 0x1d2a18,3, 0x1d2a34,6, 0x1d2a50,3, 0x1d2a60,2, 0x1d2a70,1, 0x1d2a80,12, 0x1d2ac0,12, 0x1d2b00,12, 0x1d2b40,12, 0x1d2b80,12, 0x1d2bc4,5, 0x1d2bdc,2, 0x1d2be8,1, 0x1d2bfc,1, 0x1d2c04,1, 0x1d2c18,3, 0x1d2c34,6, 0x1d2c50,3, 0x1d2c60,2, 0x1d2c70,1, 0x1d2c80,12, 0x1d2cc0,12, 0x1d2d00,12, 0x1d2d40,12, 0x1d2d80,12, 0x1d2dc4,5, 0x1d2ddc,2, 0x1d2de8,1, 0x1d2dfc,1, 0x1d2e04,1, 0x1d2e18,3, 0x1d2e34,6, 0x1d2e50,3, 0x1d2e60,2, 0x1d2e70,1, 0x1d2e80,12, 0x1d2ec0,12, 0x1d2f00,12, 0x1d2f40,12, 0x1d2f80,12, 0x1d2fc4,5, 0x1d2fdc,2, 0x1d2fe8,1, 0x1d2ffc,26, 0x1d3080,1, 0x1d3088,8, 0x1d30c0,6, 0x1d30e0,1, 0x1d30e8,2, 0x1d3104,34, 0x1d3200,25, 0x1d3280,1, 0x1d3288,8, 0x1d32c0,6, 0x1d32e0,1, 0x1d32e8,2, 0x1d3304,34, 0x1d3400,25, 0x1d3480,1, 0x1d3488,8, 0x1d34c0,6, 0x1d34e0,1, 0x1d34e8,2, 0x1d3504,34, 0x1d3600,25, 0x1d3680,1, 0x1d3688,8, 0x1d36c0,6, 0x1d36e0,1, 0x1d36e8,2, 0x1d3704,34, 0x1d3800,25, 0x1d3880,1, 0x1d3888,8, 0x1d38c0,6, 0x1d38e0,1, 0x1d38e8,2, 0x1d3904,34, 0x1d3a00,25, 0x1d3a80,1, 0x1d3a88,8, 0x1d3ac0,6, 0x1d3ae0,1, 0x1d3ae8,2, 0x1d3b04,34, 0x1d3c00,25, 0x1d3c80,1, 0x1d3c88,8, 0x1d3cc0,6, 0x1d3ce0,1, 0x1d3ce8,2, 0x1d3d04,34, 0x1d3e00,25, 0x1d3e80,1, 0x1d3e88,8, 0x1d3ec0,6, 0x1d3ee0,1, 0x1d3ee8,2, 0x1d3f04,34, 0x1d4000,2, 0x1d400c,4, 0x1d4020,1, 0x1d41c0,6, 0x1d41e8,2, 0x1d8000,4, 0x1d8200,101, 0x1d8400,35, 0x1d8500,19, 0x1d8600,11, 0x1d8640,37, 0x1d86e0,7, 0x1d8700,34, 0x1d878c,20, 0x1d87e0,3, 0x1d87f0,14, 0x1d8840,1, 0x1d8850,7, 0x1d887c,4, 0x1d8890,14, 0x1d88d0,4, 0x1d8900,12, 0x1d9000,4, 0x1d9200,101, 0x1d9400,35, 0x1d9500,19, 0x1d9600,11, 0x1d9640,37, 0x1d96e0,7, 0x1d9700,34, 0x1d978c,20, 0x1d97e0,3, 0x1d97f0,14, 0x1d9840,1, 0x1d9850,7, 0x1d987c,4, 0x1d9890,14, 0x1d98d0,4, 0x1d9900,12, 0x1da000,4, 0x1da200,101, 0x1da400,35, 0x1da500,19, 0x1da600,11, 0x1da640,37, 0x1da6e0,7, 0x1da700,34, 0x1da78c,20, 0x1da7e0,3, 0x1da7f0,14, 0x1da840,1, 0x1da850,7, 0x1da87c,4, 0x1da890,14, 0x1da8d0,4, 0x1da900,12, 0x1db000,4, 0x1db200,101, 0x1db400,35, 0x1db500,19, 0x1db600,11, 0x1db640,37, 0x1db6e0,7, 0x1db700,34, 0x1db78c,20, 0x1db7e0,3, 0x1db7f0,14, 0x1db840,1, 0x1db850,7, 0x1db87c,4, 0x1db890,14, 0x1db8d0,4, 0x1db900,12, 0x1dc000,4, 0x1dc200,101, 0x1dc400,35, 0x1dc500,19, 0x1dc600,11, 0x1dc640,37, 0x1dc6e0,7, 0x1dc700,34, 0x1dc78c,20, 0x1dc7e0,3, 0x1dc7f0,14, 0x1dc840,1, 0x1dc850,7, 0x1dc87c,4, 0x1dc890,14, 0x1dc8d0,4, 0x1dc900,12, 0x1dd000,4, 0x1dd200,101, 0x1dd400,35, 0x1dd500,19, 0x1dd600,11, 0x1dd640,37, 0x1dd6e0,7, 0x1dd700,34, 0x1dd78c,20, 0x1dd7e0,3, 0x1dd7f0,14, 0x1dd840,1, 0x1dd850,7, 0x1dd87c,4, 0x1dd890,14, 0x1dd8d0,4, 0x1dd900,12, 0x1de000,4, 0x1de200,101, 0x1de400,35, 0x1de500,19, 0x1de600,11, 0x1de640,37, 0x1de6e0,7, 0x1de700,34, 0x1de78c,20, 0x1de7e0,3, 0x1de7f0,14, 0x1de840,1, 0x1de850,7, 0x1de87c,4, 0x1de890,14, 0x1de8d0,4, 0x1de900,12, 0x1df000,4, 0x1df200,101, 0x1df400,35, 0x1df500,19, 0x1df600,11, 0x1df640,37, 0x1df6e0,7, 0x1df700,34, 0x1df78c,20, 0x1df7e0,3, 0x1df7f0,14, 0x1df840,1, 0x1df850,7, 0x1df87c,4, 0x1df890,14, 0x1df8d0,4, 0x1df900,12, 0x1e0000,35, 0x1e0100,35, 0x1e0200,3, 0x1e0c00,10, 0x1e0c80,3, 0x1e1004,1, 0x1e1024,7, 0x1e1044,1, 0x1e1064,7, 0x1e1084,1, 0x1e10a4,7, 0x1e10c4,1, 0x1e10e4,7, 0x1e1104,1, 0x1e1124,7, 0x1e1144,1, 0x1e1164,7, 0x1e1184,1, 0x1e11a4,7, 0x1e11c4,1, 0x1e11e4,7, 0x1e1204,3, 0x1e1214,3, 0x1e1224,3, 0x1e1234,3, 0x1e1244,3, 0x1e1254,3, 0x1e1264,3, 0x1e1274,22, 0x1e1400,17, 0x1e144c,1, 0x1e1480,17, 0x1e14cc,1, 0x1e1500,17, 0x1e154c,1, 0x1e1580,17, 0x1e15cc,1, 0x1e1600,17, 0x1e164c,1, 0x1e1680,17, 0x1e16cc,1, 0x1e1700,17, 0x1e174c,1, 0x1e1780,17, 0x1e17cc,1, 0x1e2004,1, 0x1e2018,3, 0x1e2034,6, 0x1e2050,3, 0x1e2060,2, 0x1e2070,1, 0x1e2080,12, 0x1e20c0,12, 0x1e2100,12, 0x1e2140,12, 0x1e2180,12, 0x1e21c4,5, 0x1e21dc,2, 0x1e21e8,1, 0x1e21fc,1, 0x1e2204,1, 0x1e2218,3, 0x1e2234,6, 0x1e2250,3, 0x1e2260,2, 0x1e2270,1, 0x1e2280,12, 0x1e22c0,12, 0x1e2300,12, 0x1e2340,12, 0x1e2380,12, 0x1e23c4,5, 0x1e23dc,2, 0x1e23e8,1, 0x1e23fc,1, 0x1e2404,1, 0x1e2418,3, 0x1e2434,6, 0x1e2450,3, 0x1e2460,2, 0x1e2470,1, 0x1e2480,12, 0x1e24c0,12, 0x1e2500,12, 0x1e2540,12, 0x1e2580,12, 0x1e25c4,5, 0x1e25dc,2, 0x1e25e8,1, 0x1e25fc,1, 0x1e2604,1, 0x1e2618,3, 0x1e2634,6, 0x1e2650,3, 0x1e2660,2, 0x1e2670,1, 0x1e2680,12, 0x1e26c0,12, 0x1e2700,12, 0x1e2740,12, 0x1e2780,12, 0x1e27c4,5, 0x1e27dc,2, 0x1e27e8,1, 0x1e27fc,1, 0x1e2804,1, 0x1e2818,3, 0x1e2834,6, 0x1e2850,3, 0x1e2860,2, 0x1e2870,1, 0x1e2880,12, 0x1e28c0,12, 0x1e2900,12, 0x1e2940,12, 0x1e2980,12, 0x1e29c4,5, 0x1e29dc,2, 0x1e29e8,1, 0x1e29fc,1, 0x1e2a04,1, 0x1e2a18,3, 0x1e2a34,6, 0x1e2a50,3, 0x1e2a60,2, 0x1e2a70,1, 0x1e2a80,12, 0x1e2ac0,12, 0x1e2b00,12, 0x1e2b40,12, 0x1e2b80,12, 0x1e2bc4,5, 0x1e2bdc,2, 0x1e2be8,1, 0x1e2bfc,1, 0x1e2c04,1, 0x1e2c18,3, 0x1e2c34,6, 0x1e2c50,3, 0x1e2c60,2, 0x1e2c70,1, 0x1e2c80,12, 0x1e2cc0,12, 0x1e2d00,12, 0x1e2d40,12, 0x1e2d80,12, 0x1e2dc4,5, 0x1e2ddc,2, 0x1e2de8,1, 0x1e2dfc,1, 0x1e2e04,1, 0x1e2e18,3, 0x1e2e34,6, 0x1e2e50,3, 0x1e2e60,2, 0x1e2e70,1, 0x1e2e80,12, 0x1e2ec0,12, 0x1e2f00,12, 0x1e2f40,12, 0x1e2f80,12, 0x1e2fc4,5, 0x1e2fdc,2, 0x1e2fe8,1, 0x1e2ffc,26, 0x1e3080,1, 0x1e3088,8, 0x1e30c0,6, 0x1e30e0,1, 0x1e30e8,2, 0x1e3104,34, 0x1e3200,25, 0x1e3280,1, 0x1e3288,8, 0x1e32c0,6, 0x1e32e0,1, 0x1e32e8,2, 0x1e3304,34, 0x1e3400,25, 0x1e3480,1, 0x1e3488,8, 0x1e34c0,6, 0x1e34e0,1, 0x1e34e8,2, 0x1e3504,34, 0x1e3600,25, 0x1e3680,1, 0x1e3688,8, 0x1e36c0,6, 0x1e36e0,1, 0x1e36e8,2, 0x1e3704,34, 0x1e3800,25, 0x1e3880,1, 0x1e3888,8, 0x1e38c0,6, 0x1e38e0,1, 0x1e38e8,2, 0x1e3904,34, 0x1e3a00,25, 0x1e3a80,1, 0x1e3a88,8, 0x1e3ac0,6, 0x1e3ae0,1, 0x1e3ae8,2, 0x1e3b04,34, 0x1e3c00,25, 0x1e3c80,1, 0x1e3c88,8, 0x1e3cc0,6, 0x1e3ce0,1, 0x1e3ce8,2, 0x1e3d04,34, 0x1e3e00,25, 0x1e3e80,1, 0x1e3e88,8, 0x1e3ec0,6, 0x1e3ee0,1, 0x1e3ee8,2, 0x1e3f04,34, 0x1e4000,2, 0x1e400c,4, 0x1e4020,1, 0x1e41c0,6, 0x1e41e8,2, 0x1e8000,4, 0x1e8200,101, 0x1e8400,35, 0x1e8500,19, 0x1e8600,11, 0x1e8640,37, 0x1e86e0,7, 0x1e8700,34, 0x1e878c,20, 0x1e87e0,3, 0x1e87f0,14, 0x1e8840,1, 0x1e8850,7, 0x1e887c,4, 0x1e8890,14, 0x1e88d0,4, 0x1e8900,12, 0x1e9000,4, 0x1e9200,101, 0x1e9400,35, 0x1e9500,19, 0x1e9600,11, 0x1e9640,37, 0x1e96e0,7, 0x1e9700,34, 0x1e978c,20, 0x1e97e0,3, 0x1e97f0,14, 0x1e9840,1, 0x1e9850,7, 0x1e987c,4, 0x1e9890,14, 0x1e98d0,4, 0x1e9900,12, 0x1ea000,4, 0x1ea200,101, 0x1ea400,35, 0x1ea500,19, 0x1ea600,11, 0x1ea640,37, 0x1ea6e0,7, 0x1ea700,34, 0x1ea78c,20, 0x1ea7e0,3, 0x1ea7f0,14, 0x1ea840,1, 0x1ea850,7, 0x1ea87c,4, 0x1ea890,14, 0x1ea8d0,4, 0x1ea900,12, 0x1eb000,4, 0x1eb200,101, 0x1eb400,35, 0x1eb500,19, 0x1eb600,11, 0x1eb640,37, 0x1eb6e0,7, 0x1eb700,34, 0x1eb78c,20, 0x1eb7e0,3, 0x1eb7f0,14, 0x1eb840,1, 0x1eb850,7, 0x1eb87c,4, 0x1eb890,14, 0x1eb8d0,4, 0x1eb900,12, 0x1ec000,4, 0x1ec200,101, 0x1ec400,35, 0x1ec500,19, 0x1ec600,11, 0x1ec640,37, 0x1ec6e0,7, 0x1ec700,34, 0x1ec78c,20, 0x1ec7e0,3, 0x1ec7f0,14, 0x1ec840,1, 0x1ec850,7, 0x1ec87c,4, 0x1ec890,14, 0x1ec8d0,4, 0x1ec900,12, 0x1ed000,4, 0x1ed200,101, 0x1ed400,35, 0x1ed500,19, 0x1ed600,11, 0x1ed640,37, 0x1ed6e0,7, 0x1ed700,34, 0x1ed78c,20, 0x1ed7e0,3, 0x1ed7f0,14, 0x1ed840,1, 0x1ed850,7, 0x1ed87c,4, 0x1ed890,14, 0x1ed8d0,4, 0x1ed900,12, 0x1ee000,4, 0x1ee200,101, 0x1ee400,35, 0x1ee500,19, 0x1ee600,11, 0x1ee640,37, 0x1ee6e0,7, 0x1ee700,34, 0x1ee78c,20, 0x1ee7e0,3, 0x1ee7f0,14, 0x1ee840,1, 0x1ee850,7, 0x1ee87c,4, 0x1ee890,14, 0x1ee8d0,4, 0x1ee900,12, 0x1ef000,4, 0x1ef200,101, 0x1ef400,35, 0x1ef500,19, 0x1ef600,11, 0x1ef640,37, 0x1ef6e0,7, 0x1ef700,34, 0x1ef78c,20, 0x1ef7e0,3, 0x1ef7f0,14, 0x1ef840,1, 0x1ef850,7, 0x1ef87c,4, 0x1ef890,14, 0x1ef8d0,4, 0x1ef900,12, 0x1f0000,19, 0x1f0c00,10, 0x1f1800,31, 0x1f18b0,10, 0x1f18dc,1, 0x1f1a00,31, 0x1f1ab0,10, 0x1f1adc,1, 0x1f1c00,21, 0x1f1c58,52, 0x1f1dc0,1, 0x1f1dd0,6, 0x1f1e00,4, 0x1f1e80,2, 0x1f1e90,1, 0x1f1e98,6, 0x1f1eb4,3, 0x1f1ec4,1, 0x1f1ed0,5, 0x1f1ee8,1, 0x1f1f00,16, 0x1f1f44,1, 0x1f1f50,3, 0x1f2000,5, 0x1f2020,3, 0x1f2080,8, 0x1f20c0,14, 0x1f2100,3, 0x1f2110,14, 0x1f2150,12, 0x1f2200,5, 0x1f2220,3, 0x1f2280,8, 0x1f22c0,14, 0x1f2300,3, 0x1f2310,14, 0x1f2350,12, 0x1f2400,5, 0x1f2420,3, 0x1f2480,8, 0x1f24c0,14, 0x1f2500,3, 0x1f2510,14, 0x1f2550,12, 0x1f2600,5, 0x1f2620,3, 0x1f2680,8, 0x1f26c0,14, 0x1f2700,3, 0x1f2710,14, 0x1f2750,12, 0x1f2800,5, 0x1f2820,3, 0x1f2880,8, 0x1f28c0,14, 0x1f2900,3, 0x1f2910,14, 0x1f2950,12, 0x1f2a00,5, 0x1f2a20,3, 0x1f2a80,8, 0x1f2ac0,14, 0x1f2b00,3, 0x1f2b10,14, 0x1f2b50,12, 0x1f2c00,5, 0x1f2c20,3, 0x1f2c80,8, 0x1f2cc0,14, 0x1f2d00,3, 0x1f2d10,14, 0x1f2d50,12, 0x1f2e00,5, 0x1f2e20,3, 0x1f2e80,8, 0x1f2ec0,14, 0x1f2f00,3, 0x1f2f10,14, 0x1f2f50,12, 0x1f3000,5, 0x1f3020,3, 0x1f3080,8, 0x1f30c0,14, 0x1f3100,3, 0x1f3110,14, 0x1f3150,12, 0x1f3200,5, 0x1f3220,3, 0x1f3280,8, 0x1f32c0,14, 0x1f3300,3, 0x1f3310,14, 0x1f3350,12, 0x1f3400,5, 0x1f3420,3, 0x1f3480,8, 0x1f34c0,14, 0x1f3500,3, 0x1f3510,14, 0x1f3550,12, 0x1f3600,5, 0x1f3620,3, 0x1f3680,8, 0x1f36c0,14, 0x1f3700,3, 0x1f3710,14, 0x1f3750,12, 0x1f3800,5, 0x1f3820,3, 0x1f3880,8, 0x1f38c0,14, 0x1f3900,3, 0x1f3910,14, 0x1f3950,12, 0x1f3a00,5, 0x1f3a20,3, 0x1f3a80,8, 0x1f3ac0,14, 0x1f3b00,3, 0x1f3b10,14, 0x1f3b50,12, 0x1f3c00,5, 0x1f3c20,3, 0x1f3c80,8, 0x1f3cc0,14, 0x1f3d00,3, 0x1f3d10,14, 0x1f3d50,12, 0x1f3e00,5, 0x1f3e20,3, 0x1f3e80,8, 0x1f3ec0,14, 0x1f3f00,3, 0x1f3f10,14, 0x1f3f50,12, 0x1f4000,25, 0x1f4080,1, 0x1f4088,8, 0x1f40c0,6, 0x1f40e0,1, 0x1f40e8,2, 0x1f4104,25, 0x1f4200,25, 0x1f4280,1, 0x1f4288,8, 0x1f42c0,6, 0x1f42e0,1, 0x1f42e8,2, 0x1f4304,25, 0x1f4400,25, 0x1f4480,1, 0x1f4488,8, 0x1f44c0,6, 0x1f44e0,1, 0x1f44e8,2, 0x1f4504,25, 0x1f4600,25, 0x1f4680,1, 0x1f4688,8, 0x1f46c0,6, 0x1f46e0,1, 0x1f46e8,2, 0x1f4704,25, 0x1f4800,25, 0x1f4880,1, 0x1f4888,8, 0x1f48c0,6, 0x1f48e0,1, 0x1f48e8,2, 0x1f4904,25, 0x1f4a00,25, 0x1f4a80,1, 0x1f4a88,8, 0x1f4ac0,6, 0x1f4ae0,1, 0x1f4ae8,2, 0x1f4b04,25, 0x1f4c00,25, 0x1f4c80,1, 0x1f4c88,8, 0x1f4cc0,6, 0x1f4ce0,1, 0x1f4ce8,2, 0x1f4d04,25, 0x1f4e00,25, 0x1f4e80,1, 0x1f4e88,8, 0x1f4ec0,6, 0x1f4ee0,1, 0x1f4ee8,2, 0x1f4f04,25, 0x1f5000,25, 0x1f5080,1, 0x1f5088,8, 0x1f50c0,6, 0x1f50e0,1, 0x1f50e8,2, 0x1f5104,25, 0x1f5200,25, 0x1f5280,1, 0x1f5288,8, 0x1f52c0,6, 0x1f52e0,1, 0x1f52e8,2, 0x1f5304,25, 0x1f5400,25, 0x1f5480,1, 0x1f5488,8, 0x1f54c0,6, 0x1f54e0,1, 0x1f54e8,2, 0x1f5504,25, 0x1f5600,25, 0x1f5680,1, 0x1f5688,8, 0x1f56c0,6, 0x1f56e0,1, 0x1f56e8,2, 0x1f5704,25, 0x1f5800,25, 0x1f5880,1, 0x1f5888,8, 0x1f58c0,6, 0x1f58e0,1, 0x1f58e8,2, 0x1f5904,25, 0x1f5a00,25, 0x1f5a80,1, 0x1f5a88,8, 0x1f5ac0,6, 0x1f5ae0,1, 0x1f5ae8,2, 0x1f5b04,25, 0x1f5c00,25, 0x1f5c80,1, 0x1f5c88,8, 0x1f5cc0,6, 0x1f5ce0,1, 0x1f5ce8,2, 0x1f5d04,25, 0x1f5e00,25, 0x1f5e80,1, 0x1f5e88,8, 0x1f5ec0,6, 0x1f5ee0,1, 0x1f5ee8,2, 0x1f5f04,25, 0x1f8004,1, 0x1f800c,7, 0x1f8044,1, 0x1f804c,7, 0x1f8084,1, 0x1f808c,7, 0x1f80c4,1, 0x1f80cc,7, 0x1f8104,1, 0x1f810c,3, 0x1f8124,1, 0x1f812c,3, 0x1f8144,1, 0x1f814c,3, 0x1f8164,1, 0x1f816c,3, 0x1f8184,1, 0x1f818c,7, 0x1f81d4,1, 0x1f81dc,3, 0x1f8200,25, 0x1f8280,13, 0x1f82c0,5, 0x1f8304,1, 0x1f830c,7, 0x1f8344,1, 0x1f834c,7, 0x1f8384,1, 0x1f838c,7, 0x1f83c4,1, 0x1f83cc,7, 0x1f8404,1, 0x1f840c,3, 0x1f8424,1, 0x1f842c,3, 0x1f8444,1, 0x1f844c,3, 0x1f8464,1, 0x1f846c,3, 0x1f8484,1, 0x1f848c,7, 0x1f84d4,1, 0x1f84dc,3, 0x1f8500,25, 0x1f8580,13, 0x1f85c0,5, 0x1f8604,1, 0x1f860c,7, 0x1f8644,1, 0x1f864c,7, 0x1f8684,1, 0x1f868c,7, 0x1f86c4,1, 0x1f86cc,7, 0x1f8704,1, 0x1f870c,3, 0x1f8724,1, 0x1f872c,3, 0x1f8744,1, 0x1f874c,3, 0x1f8764,1, 0x1f876c,3, 0x1f8784,1, 0x1f878c,7, 0x1f87d4,1, 0x1f87dc,3, 0x1f8800,25, 0x1f8880,13, 0x1f88c0,5, 0x1f8904,1, 0x1f890c,7, 0x1f8944,1, 0x1f894c,7, 0x1f8984,1, 0x1f898c,7, 0x1f89c4,1, 0x1f89cc,7, 0x1f8a04,1, 0x1f8a0c,3, 0x1f8a24,1, 0x1f8a2c,3, 0x1f8a44,1, 0x1f8a4c,3, 0x1f8a64,1, 0x1f8a6c,3, 0x1f8a84,1, 0x1f8a8c,7, 0x1f8ad4,1, 0x1f8adc,3, 0x1f8b00,25, 0x1f8b80,13, 0x1f8bc0,5, 0x1f8c04,1, 0x1f8c0c,7, 0x1f8c44,1, 0x1f8c4c,7, 0x1f8c84,1, 0x1f8c8c,7, 0x1f8cc4,1, 0x1f8ccc,7, 0x1f8d04,1, 0x1f8d0c,3, 0x1f8d24,1, 0x1f8d2c,3, 0x1f8d44,1, 0x1f8d4c,3, 0x1f8d64,1, 0x1f8d6c,3, 0x1f8d84,1, 0x1f8d8c,7, 0x1f8dd4,1, 0x1f8ddc,3, 0x1f8e00,25, 0x1f8e80,13, 0x1f8ec0,5, 0x1f8f04,1, 0x1f8f0c,7, 0x1f8f44,1, 0x1f8f4c,7, 0x1f8f84,1, 0x1f8f8c,7, 0x1f8fc4,1, 0x1f8fcc,7, 0x1f9004,1, 0x1f900c,3, 0x1f9024,1, 0x1f902c,3, 0x1f9044,1, 0x1f904c,3, 0x1f9064,1, 0x1f906c,3, 0x1f9084,1, 0x1f908c,7, 0x1f90d4,1, 0x1f90dc,3, 0x1f9100,25, 0x1f9180,13, 0x1f91c0,5, 0x1f9204,1, 0x1f920c,7, 0x1f9244,1, 0x1f924c,7, 0x1f9284,1, 0x1f928c,7, 0x1f92c4,1, 0x1f92cc,7, 0x1f9304,1, 0x1f930c,3, 0x1f9324,1, 0x1f932c,3, 0x1f9344,1, 0x1f934c,3, 0x1f9364,1, 0x1f936c,3, 0x1f9384,1, 0x1f938c,7, 0x1f93d4,1, 0x1f93dc,3, 0x1f9400,25, 0x1f9480,13, 0x1f94c0,5, 0x1f9504,1, 0x1f950c,7, 0x1f9544,1, 0x1f954c,7, 0x1f9584,1, 0x1f958c,7, 0x1f95c4,1, 0x1f95cc,7, 0x1f9604,1, 0x1f960c,3, 0x1f9624,1, 0x1f962c,3, 0x1f9644,1, 0x1f964c,3, 0x1f9664,1, 0x1f966c,3, 0x1f9684,1, 0x1f968c,7, 0x1f96d4,1, 0x1f96dc,3, 0x1f9700,25, 0x1f9780,13, 0x1f97c0,5, 0x1f9804,1, 0x1f9838,18, 0x1f9900,3, 0x1f9940,1, 0x1fa000,4, 0x1fa080,27, 0x1fa104,1, 0x1fa110,12, 0x1fa144,1, 0x1fa14c,5, 0x1fa164,6, 0x1fa180,7, 0x1fa200,4, 0x1fa280,27, 0x1fa304,1, 0x1fa310,12, 0x1fa344,1, 0x1fa34c,5, 0x1fa364,6, 0x1fa380,7, 0x1fa400,4, 0x1fa480,27, 0x1fa504,1, 0x1fa510,12, 0x1fa544,1, 0x1fa54c,5, 0x1fa564,6, 0x1fa580,7, 0x1fa600,4, 0x1fa680,27, 0x1fa704,1, 0x1fa710,12, 0x1fa744,1, 0x1fa74c,5, 0x1fa764,6, 0x1fa780,7, 0x1fa800,4, 0x1fa880,27, 0x1fa904,1, 0x1fa910,12, 0x1fa944,1, 0x1fa94c,5, 0x1fa964,6, 0x1fa980,7, 0x1faa00,4, 0x1faa80,27, 0x1fab04,1, 0x1fab10,12, 0x1fab44,1, 0x1fab4c,5, 0x1fab64,6, 0x1fab80,7, 0x1fac00,4, 0x1fac80,27, 0x1fad04,1, 0x1fad10,12, 0x1fad44,1, 0x1fad4c,5, 0x1fad64,6, 0x1fad80,7, 0x1fae00,4, 0x1fae80,27, 0x1faf04,1, 0x1faf10,12, 0x1faf44,1, 0x1faf4c,5, 0x1faf64,6, 0x1faf80,7, 0x1fb000,4, 0x1fb040,12, 0x1fb080,3, 0x1fb100,4, 0x1fb140,12, 0x1fb180,3, 0x1fb200,4, 0x1fb240,12, 0x1fb280,3, 0x1fb300,4, 0x1fb340,12, 0x1fb380,3, 0x1fb400,4, 0x1fb440,12, 0x1fb480,3, 0x1fb500,4, 0x1fb540,12, 0x1fb580,3, 0x1fb600,4, 0x1fb640,12, 0x1fb680,3, 0x1fb700,4, 0x1fb740,12, 0x1fb780,3, 0x1fb800,4, 0x1fb840,12, 0x1fb880,3, 0x1fb900,4, 0x1fb940,12, 0x1fb980,3, 0x1fba00,4, 0x1fba40,12, 0x1fba80,3, 0x1fbb00,4, 0x1fbb40,12, 0x1fbb80,3, 0x1fbc00,4, 0x1fbc40,12, 0x1fbc80,3, 0x1fbd00,4, 0x1fbd40,12, 0x1fbd80,3, 0x1fbe00,4, 0x1fbe40,12, 0x1fbe80,3, 0x1fbf00,4, 0x1fbf40,12, 0x1fbf80,3, 0x1fc000,4, 0x1fc040,12, 0x1fc080,3, 0x1fc100,4, 0x1fc140,12, 0x1fc180,3, 0x1fc200,4, 0x1fc240,12, 0x1fc280,3, 0x1fc300,4, 0x1fc340,12, 0x1fc380,3, 0x1fc400,4, 0x1fc440,12, 0x1fc480,3, 0x1fc500,4, 0x1fc540,12, 0x1fc580,3, 0x1fc600,4, 0x1fc640,12, 0x1fc680,3, 0x1fc700,4, 0x1fc740,12, 0x1fc780,3, 0x1fc800,4, 0x1fc840,12, 0x1fc880,3, 0x1fc900,4, 0x1fc940,12, 0x1fc980,3, 0x1fd000,276, 0x1fd800,21, 0x1fd900,11, 0x1fd930,11, 0x1fd960,3, 0x1fd980,11, 0x1fd9b0,11, 0x1fd9e0,3, 0x1fda00,33, 0x1fdaa0,12, 0x1fdb00,9, 0x1fdb40,16, 0x1fdc00,13, 0x1fdc40,13, 0x1fdc80,13, 0x1fdcc0,13, 0x1fdd00,13, 0x1fdd40,13, 0x1fdd80,13, 0x1fddc0,13, 0x1fde00,13, 0x1fde40,13, 0x1fde80,13, 0x1fdec0,13, 0x1fdf00,13, 0x1fdf40,13, 0x1fdf80,13, 0x1fdfc0,13, 0x1fe004,6, 0x1fe024,6, 0x1fe044,6, 0x1fe064,6, 0x1fe084,6, 0x1fe0a4,6, 0x1fe0c4,6, 0x1fe0e4,6, 0x1fe104,6, 0x1fe204,6, 0x1fe224,6, 0x1fe244,6, 0x1fe264,6, 0x1fe284,6, 0x1fe2a4,6, 0x1fe2c4,6, 0x1fe2e4,6, 0x1fe304,6, 0x1fe400,24, 0x1fe600,19, 0x1fe680,19, 0x1fe700,19, 0x1fe780,19, 0x1fe800,19, 0x1fe880,19, 0x1fe900,19, 0x1fe980,19, 0x1fea00,32, 0x1feb00,34, 0x1fec00,26, 0x1fec70,26, 0x1fed40,5, 0x1fed60,15, 0x1fee00,29, 0x1fee80,2, 0x1fee90,7, 0x1feebc,4, 0x1feed0,2, 0x1feee8,2, 0x1fef00,35, 0x1ff000,83, 0x1ffc00,10, 0x1ffc80,3, 0x200000,6, 0x200200,91, 0x200800,13, 0x200880,1, 0x200888,8, 0x2008c0,6, 0x2008e0,1, 0x2008e8,2, 0x200904,6, 0x200a00,4, 0x200a40,13, 0x200a80,4, 0x200ac0,13, 0x200b00,4, 0x200b40,13, 0x200b80,4, 0x200bc0,13, 0x200c00,16, 0x200d00,1, 0x200d08,4, 0x200d20,1, 0x200d80,4, 0x201000,1, 0x201040,11, 0x201080,11, 0x201100,1, 0x201140,11, 0x201180,11, 0x201200,1, 0x201240,11, 0x201280,11, 0x201300,5, 0x201318,1, 0x201320,6, 0x201340,3, 0x201800,1, 0x201840,11, 0x201880,11, 0x201900,1, 0x201940,11, 0x201980,11, 0x201a00,1, 0x201a40,11, 0x201a80,11, 0x201b00,5, 0x201b18,1, 0x201b20,6, 0x201b40,3, 0x202000,3, 0x202040,12, 0x202080,1, 0x202090,2, 0x2020a0,1, 0x2020c0,1, 0x202204,8, 0x202240,10, 0x202280,1, 0x202804,1, 0x202818,10, 0x202844,1, 0x202854,5, 0x203000,200, 0x203400,1, 0x203800,13, 0x203880,1, 0x203888,8, 0x2038c0,6, 0x2038e0,1, 0x2038e8,2, 0x203904,2, 0x204000,3, 0x204040,12, 0x204080,1, 0x204090,2, 0x2040a0,1, 0x2040c0,1, 0x204204,8, 0x204240,10, 0x204280,1, 0x204804,1, 0x204818,10, 0x204844,1, 0x204854,5, 0x205000,200, 0x205400,1, 0x205800,13, 0x205880,1, 0x205888,8, 0x2058c0,6, 0x2058e0,1, 0x2058e8,2, 0x205904,2, 0x206000,19, 0x207004,1, 0x207080,32, 0x207104,1, 0x207180,32, 0x207204,1, 0x207280,32, 0x207304,1, 0x207380,34, 0x207504,1, 0x207580,33, 0x208004,1, 0x208020,1, 0x208040,2, 0x208050,1, 0x208100,1, 0x208110,2, 0x208124,1, 0x20812c,10, 0x208160,2, 0x208170,5, 0x208190,2, 0x2081a4,1, 0x2081ac,10, 0x2081e0,2, 0x2081f0,5, 0x208210,2, 0x208224,1, 0x20822c,10, 0x208260,2, 0x208270,5, 0x208290,2, 0x2082a4,1, 0x2082ac,10, 0x2082e0,2, 0x2082f0,5, 0x208310,2, 0x208340,5, 0x208360,2, 0x208370,4, 0x208a80,2, 0x208a8c,2, 0x208b00,7, 0x208b20,7, 0x208b40,7, 0x208b60,7, 0x208b80,7, 0x208ba0,7, 0x208bc0,7, 0x208be0,7, 0x208c00,7, 0x208c20,7, 0x208c40,7, 0x208c60,7, 0x208c80,7, 0x208ca0,7, 0x208cc0,7, 0x208ce0,7, 0x208d00,7, 0x208d20,7, 0x209000,8, 0x209040,2, 0x209070,2, 0x209200,5, 0x209218,4, 0x209304,1, 0x209354,68, 0x209480,1, 0x209488,8, 0x2094c0,6, 0x2094e0,1, 0x2094e8,2, 0x209504,40, 0x209800,120, 0x2099e4,5, 0x209a00,3, 0x20a000,19, 0x20ac00,10, 0x20ac80,3, 0x20c000,9, 0x20c028,1, 0x20c040,9, 0x20c068,1, 0x20c080,9, 0x20c0a8,1, 0x20c0c0,9, 0x20c0e8,1, 0x20c100,9, 0x20c128,1, 0x20c140,9, 0x20c168,1, 0x20c180,9, 0x20c1a8,1, 0x20c1c0,9, 0x20c1e8,1, 0x20c200,9, 0x20c228,1, 0x20c240,9, 0x20c268,1, 0x20c280,9, 0x20c2a8,1, 0x20c2c0,9, 0x20c2e8,1, 0x20c300,9, 0x20c328,1, 0x20c340,9, 0x20c368,1, 0x20c380,9, 0x20c3a8,1, 0x20c3c0,9, 0x20c3e8,1, 0x20c400,9, 0x20c428,1, 0x20c440,9, 0x20c468,1, 0x20c480,9, 0x20c4a8,1, 0x20c4c0,9, 0x20c4e8,1, 0x20c500,9, 0x20c528,1, 0x20c540,9, 0x20c568,1, 0x20c580,9, 0x20c5a8,1, 0x20c5c0,9, 0x20c5e8,1, 0x20c600,9, 0x20c628,1, 0x20c640,9, 0x20c668,1, 0x20c680,9, 0x20c6a8,1, 0x20c6c0,9, 0x20c6e8,1, 0x20c700,9, 0x20c728,1, 0x20c740,9, 0x20c768,1, 0x20c780,9, 0x20c7a8,1, 0x20c800,27, 0x20cb00,60, 0x20cc00,1, 0x20cc80,1, 0x20cc90,2, 0x20cca0,2, 0x20ce00,13, 0x20ce80,1, 0x20ce88,8, 0x20cec0,6, 0x20cee0,1, 0x20cee8,2, 0x20cf04,1, 0x20d000,35, 0x220008,1, 0x220010,2, 0x220100,1, 0x220200,10, 0x220280,3, 0x2202e0,1, 0x220300,1, 0x221000,272, 0x221800,3, 0x221810,3, 0x221820,3, 0x221830,3, 0x221840,3, 0x221850,3, 0x221860,3, 0x221870,3, 0x221880,3, 0x221890,3, 0x2218a0,3, 0x2218b0,3, 0x2218c0,3, 0x2218d0,3, 0x2218e0,3, 0x2218f0,3, 0x221a00,11, 0x240000,2, 0x240010,41, 0x2400b8,3, 0x240100,9, 0x240128,1, 0x240140,9, 0x240168,1, 0x240180,6, 0x2401a0,6, 0x2401c0,6, 0x2401e0,4, 0x240200,2, 0x240210,41, 0x2402b8,3, 0x240300,9, 0x240328,1, 0x240340,9, 0x240368,1, 0x240380,6, 0x2403a0,6, 0x2403c0,6, 0x2403e0,4, 0x240400,9, 0x240428,1, 0x240440,2, 0x24044c,3, 0x240464,1, 0x240474,30, 0x240504,1, 0x24052c,53, 0x240604,1, 0x240670,36, 0x240708,2, 0x240800,3, 0x240814,10, 0x240840,11, 0x240870,35, 0x240900,8, 0x240924,5, 0x240980,2, 0x24098c,2, 0x2409a0,2, 0x2409c0,1, 0x240a00,12, 0x240a34,22, 0x240ac0,7, 0x240b00,8, 0x240b24,5, 0x240b80,2, 0x240b8c,2, 0x240ba0,2, 0x240bc0,1, 0x240c00,12, 0x240c40,12, 0x240c80,12, 0x240cc0,12, 0x240d00,12, 0x240d40,12, 0x240d80,12, 0x240dc0,12, 0x240e00,1, 0x240e08,13, 0x240e40,12, 0x240e80,3, 0x240f00,7, 0x240f44,8, 0x240f80,6, 0x240fa0,2, 0x241000,9, 0x241040,9, 0x241080,9, 0x2410c0,9, 0x241100,1, 0x241108,5, 0x241120,2, 0x241200,8, 0x241240,4, 0x241260,8, 0x241300,8, 0x241330,2, 0x241340,7, 0x241380,3, 0x241390,3, 0x2413a0,3, 0x2413b0,3, 0x2413c0,5, 0x241400,69, 0x241600,4, 0x241640,13, 0x241680,7, 0x2416a0,5, 0x2416c0,1, 0x241800,9, 0x241840,9, 0x241880,9, 0x2418c0,9, 0x241900,1, 0x241908,5, 0x241920,2, 0x241a00,8, 0x241a40,4, 0x241a60,8, 0x241b00,8, 0x241b30,2, 0x241b40,7, 0x241b80,3, 0x241b90,3, 0x241ba0,3, 0x241bb0,3, 0x241bc0,5, 0x241c00,69, 0x241e00,4, 0x241e40,13, 0x241e80,7, 0x241ea0,5, 0x241ec0,1, 0x242000,25, 0x242080,1, 0x242088,8, 0x2420c0,6, 0x2420e0,1, 0x2420e8,2, 0x242104,7, 0x242200,11, 0x242240,1, 0x242248,1, 0x242408,2, 0x243000,35, 0x243c00,10, 0x243c80,3, 0x244000,8, 0x244024,2, 0x244040,2, 0x244060,6, 0x244080,1, 0x2440f0,12, 0x244124,2, 0x244140,2, 0x244160,6, 0x244180,1, 0x2441f0,12, 0x244224,2, 0x244240,2, 0x244260,6, 0x244280,1, 0x2442f0,12, 0x244324,2, 0x244340,2, 0x244360,6, 0x244380,1, 0x2443f0,4, 0x244410,4, 0x2445f8,2, 0x244800,8, 0x244824,2, 0x244840,2, 0x244860,6, 0x244880,1, 0x2448f0,12, 0x244924,2, 0x244940,2, 0x244960,6, 0x244980,1, 0x2449f0,12, 0x244a24,2, 0x244a40,2, 0x244a60,6, 0x244a80,1, 0x244af0,12, 0x244b24,2, 0x244b40,2, 0x244b60,6, 0x244b80,1, 0x244bf0,4, 0x244c10,4, 0x244df8,2, 0x245004,1, 0x245040,16, 0x245204,3, 0x245214,1, 0x24521c,1, 0x245224,1, 0x24522c,1, 0x245400,56, 0x2454e4,6, 0x245600,37, 0x245700,17, 0x245748,2, 0x245780,16, 0x245800,25, 0x245880,1, 0x245888,8, 0x2458c0,6, 0x2458e0,1, 0x2458e8,2, 0x245904,26, 0x245a00,4, 0x245b00,61, 0x245c00,4, 0x245c40,12, 0x245c80,5, 0x245ca0,1, 0x245cb0,1, 0x246000,3, 0x246010,3, 0x246020,3, 0x246030,3, 0x246040,3, 0x246050,3, 0x246060,3, 0x246070,3, 0x246080,16, 0x2460c4,1, 0x2460d0,5, 0x246100,1, 0x246140,3, 0x246160,8, 0x246184,17, 0x2462c0,1, 0x2462c8,14, 0x248000,1, 0x248008,3, 0x248018,3, 0x248030,7, 0x248070,2, 0x248080,1, 0x248088,3, 0x248098,3, 0x2480b0,7, 0x2480f0,2, 0x248100,1, 0x248108,3, 0x248118,3, 0x248130,7, 0x248170,2, 0x248180,1, 0x248188,3, 0x248198,3, 0x2481b0,7, 0x2481f0,2, 0x248200,3, 0x248210,3, 0x248220,3, 0x248230,3, 0x248240,10, 0x24826c,1, 0x248280,28, 0x2482f4,8, 0x248320,27, 0x2483dc,43, 0x248490,3, 0x2484a0,2, 0x2484b0,3, 0x2484c0,2, 0x2484d0,3, 0x2484e0,2, 0x2484f0,3, 0x248500,2, 0x248510,3, 0x248520,2, 0x248530,3, 0x248540,2, 0x248550,3, 0x248560,2, 0x248570,3, 0x248580,64, 0x248780,18, 0x2487d0,4, 0x248800,13, 0x248880,1, 0x248888,8, 0x2488c0,6, 0x2488e0,1, 0x2488e8,2, 0x248904,43, 0x248a00,4, 0x248a14,1, 0x248a1c,1, 0x248a24,1, 0x248a2c,1, 0x248a34,1, 0x248a3c,7, 0x248a60,6, 0x248a80,36, 0x248b40,15, 0x248b80,4, 0x248bc0,11, 0x248c00,9, 0x248c40,9, 0x248c80,9, 0x248cc0,9, 0x248d00,16, 0x248d54,1, 0x248d5c,1, 0x248d64,1, 0x248d6c,1, 0x248d80,26, 0x248e00,26, 0x248e80,26, 0x248f00,26, 0x249000,1, 0x249008,3, 0x249018,3, 0x249030,7, 0x249070,2, 0x249080,1, 0x249088,3, 0x249098,3, 0x2490b0,7, 0x2490f0,2, 0x249100,1, 0x249108,3, 0x249118,3, 0x249130,7, 0x249170,2, 0x249180,1, 0x249188,3, 0x249198,3, 0x2491b0,7, 0x2491f0,2, 0x249200,3, 0x249210,3, 0x249220,3, 0x249230,3, 0x249240,10, 0x24926c,1, 0x249280,28, 0x2492f4,8, 0x249320,27, 0x2493dc,43, 0x249490,3, 0x2494a0,2, 0x2494b0,3, 0x2494c0,2, 0x2494d0,3, 0x2494e0,2, 0x2494f0,3, 0x249500,2, 0x249510,3, 0x249520,2, 0x249530,3, 0x249540,2, 0x249550,3, 0x249560,2, 0x249570,3, 0x249580,64, 0x249780,18, 0x2497d0,4, 0x249800,13, 0x249880,1, 0x249888,8, 0x2498c0,6, 0x2498e0,1, 0x2498e8,2, 0x249904,43, 0x249a00,4, 0x249a14,1, 0x249a1c,1, 0x249a24,1, 0x249a2c,1, 0x249a34,1, 0x249a3c,7, 0x249a60,6, 0x249a80,36, 0x249b40,15, 0x249b80,4, 0x249bc0,11, 0x249c00,9, 0x249c40,9, 0x249c80,9, 0x249cc0,9, 0x249d00,16, 0x249d54,1, 0x249d5c,1, 0x249d64,1, 0x249d6c,1, 0x249d80,26, 0x249e00,26, 0x249e80,26, 0x249f00,26, 0x24a000,1, 0x24a00c,4, 0x24a020,4, 0x24a038,3, 0x24a0a8,38, 0x24a180,64, 0x24a2c0,8, 0x24a2f8,317, 0x24a804,1, 0x24a810,6, 0x24a844,1, 0x24a850,6, 0x24a884,1, 0x24a894,5, 0x24a8c4,1, 0x24a8d4,5, 0x24a904,1, 0x24a92c,21, 0x24a984,1, 0x24a9ac,21, 0x24aa04,1, 0x24aa0c,1, 0x24aa14,1, 0x24aa1c,1, 0x24aa24,1, 0x24aa2c,1, 0x24aa34,1, 0x24aa3c,13, 0x24aa78,8, 0x24ab04,5, 0x24ab24,5, 0x24ab44,3, 0x24ab54,1, 0x24ab60,3, 0x24ab70,5, 0x24ab88,5, 0x24abc0,8, 0x24b000,34, 0x24b100,13, 0x24b140,15, 0x24b180,40, 0x24b240,11, 0x24b280,11, 0x24b300,10, 0x24b380,4, 0x24b3c0,3, 0x24b3d0,6, 0x24b400,28, 0x24b480,27, 0x24b500,20, 0x24b580,19, 0x24c000,19, 0x24cc00,10, 0x24cc80,3, 0x250000,3, 0x250010,1, 0x250030,13, 0x25006c,4, 0x250100,40, 0x2501fc,4, 0x250210,1, 0x250230,13, 0x25026c,4, 0x250300,40, 0x2503fc,4, 0x250410,1, 0x250430,13, 0x25046c,4, 0x250500,40, 0x2505fc,4, 0x250610,1, 0x250630,13, 0x25066c,4, 0x250700,40, 0x2507fc,4, 0x250810,1, 0x250830,13, 0x25086c,4, 0x250900,40, 0x2509fc,4, 0x250a10,1, 0x250a30,13, 0x250a6c,4, 0x250b00,40, 0x250bfc,4, 0x250c10,1, 0x250c30,13, 0x250c6c,4, 0x250d00,40, 0x250dfc,4, 0x250e10,1, 0x250e30,13, 0x250e6c,4, 0x250f00,40, 0x250ffc,20, 0x251c00,10, 0x251c80,3, 0x252000,6, 0x25201c,12, 0x252080,1, 0x252088,1, 0x252090,2, 0x2520a0,4, 0x252100,1, 0x25210c,2, 0x25211c,2, 0x25212c,2, 0x25213c,2, 0x25214c,2, 0x25215c,2, 0x25216c,2, 0x25217c,3, 0x25218c,1, 0x252200,43, 0x252300,7, 0x252320,2, 0x25232c,1, 0x252380,10, 0x2523c0,1, 0x252400,109, 0x2525c0,5, 0x252600,109, 0x2527c0,5, 0x252800,3, 0x252814,16, 0x252874,1, 0x252880,3, 0x252894,16, 0x2528f4,1, 0x252900,3, 0x252914,16, 0x252974,1, 0x252980,3, 0x252994,16, 0x2529f4,1, 0x252a00,3, 0x252a14,16, 0x252a74,1, 0x252a80,3, 0x252a94,16, 0x252af4,1, 0x252b00,3, 0x252b14,16, 0x252b74,1, 0x252b80,3, 0x252b94,16, 0x252bf4,1, 0x252c00,10, 0x252c40,10, 0x252c80,10, 0x252cc0,10, 0x252d00,1, 0x252e00,1, 0x252e80,16, 0x252f00,6, 0x252f20,6, 0x252f40,6, 0x252f60,6, 0x252f80,6, 0x252fa0,6, 0x252fc0,6, 0x252fe0,6, 0x253000,60, 0x253100,60, 0x253200,31, 0x253400,60, 0x253500,60, 0x253600,31, 0x253800,4, 0x253900,53, 0x253a00,12, 0x254000,25, 0x254080,1, 0x254088,8, 0x2540c0,6, 0x2540e0,1, 0x2540e8,2, 0x254104,5, 0x254200,11, 0x254240,1, 0x254248,1, 0x254400,4, 0x258000,2, 0x258010,41, 0x2580b8,3, 0x258100,9, 0x258128,1, 0x258140,9, 0x258168,1, 0x258180,6, 0x2581a0,6, 0x2581c0,6, 0x2581e0,4, 0x258200,2, 0x258210,41, 0x2582b8,3, 0x258300,9, 0x258328,1, 0x258340,9, 0x258368,1, 0x258380,6, 0x2583a0,6, 0x2583c0,6, 0x2583e0,4, 0x258400,9, 0x258428,1, 0x258440,2, 0x25844c,3, 0x258464,1, 0x258474,30, 0x258504,1, 0x25852c,53, 0x258604,1, 0x258670,36, 0x258708,2, 0x258800,3, 0x258814,10, 0x258840,11, 0x258870,35, 0x258900,8, 0x258924,5, 0x258980,2, 0x25898c,2, 0x2589a0,2, 0x2589c0,1, 0x258a00,12, 0x258a34,22, 0x258ac0,7, 0x258b00,8, 0x258b24,5, 0x258b80,2, 0x258b8c,2, 0x258ba0,2, 0x258bc0,1, 0x258c00,12, 0x258c40,12, 0x258c80,12, 0x258cc0,12, 0x258d00,12, 0x258d40,12, 0x258d80,12, 0x258dc0,12, 0x258e00,1, 0x258e08,13, 0x258e40,12, 0x258e80,3, 0x258f00,7, 0x258f44,8, 0x258f80,6, 0x258fa0,2, 0x259000,9, 0x259040,9, 0x259080,9, 0x2590c0,9, 0x259100,1, 0x259108,5, 0x259120,2, 0x259200,8, 0x259240,4, 0x259260,8, 0x259300,8, 0x259330,2, 0x259340,7, 0x259380,3, 0x259390,3, 0x2593a0,3, 0x2593b0,3, 0x2593c0,5, 0x259400,69, 0x259600,4, 0x259640,13, 0x259680,7, 0x2596a0,5, 0x2596c0,1, 0x259800,9, 0x259840,9, 0x259880,9, 0x2598c0,9, 0x259900,1, 0x259908,5, 0x259920,2, 0x259a00,8, 0x259a40,4, 0x259a60,8, 0x259b00,8, 0x259b30,2, 0x259b40,7, 0x259b80,3, 0x259b90,3, 0x259ba0,3, 0x259bb0,3, 0x259bc0,5, 0x259c00,69, 0x259e00,4, 0x259e40,13, 0x259e80,7, 0x259ea0,5, 0x259ec0,1, 0x25a000,25, 0x25a080,1, 0x25a088,8, 0x25a0c0,6, 0x25a0e0,1, 0x25a0e8,2, 0x25a104,7, 0x25a200,11, 0x25a240,1, 0x25a248,1, 0x25a408,2, 0x25b000,35, 0x25bc00,10, 0x25bc80,3, 0x25c000,8, 0x25c024,2, 0x25c040,2, 0x25c060,6, 0x25c080,1, 0x25c0f0,12, 0x25c124,2, 0x25c140,2, 0x25c160,6, 0x25c180,1, 0x25c1f0,12, 0x25c224,2, 0x25c240,2, 0x25c260,6, 0x25c280,1, 0x25c2f0,12, 0x25c324,2, 0x25c340,2, 0x25c360,6, 0x25c380,1, 0x25c3f0,4, 0x25c410,4, 0x25c5f8,2, 0x25c800,8, 0x25c824,2, 0x25c840,2, 0x25c860,6, 0x25c880,1, 0x25c8f0,12, 0x25c924,2, 0x25c940,2, 0x25c960,6, 0x25c980,1, 0x25c9f0,12, 0x25ca24,2, 0x25ca40,2, 0x25ca60,6, 0x25ca80,1, 0x25caf0,12, 0x25cb24,2, 0x25cb40,2, 0x25cb60,6, 0x25cb80,1, 0x25cbf0,4, 0x25cc10,4, 0x25cdf8,2, 0x25d004,1, 0x25d040,16, 0x25d204,3, 0x25d214,1, 0x25d21c,1, 0x25d224,1, 0x25d22c,1, 0x25d400,56, 0x25d4e4,6, 0x25d600,37, 0x25d700,17, 0x25d748,2, 0x25d780,16, 0x25d800,25, 0x25d880,1, 0x25d888,8, 0x25d8c0,6, 0x25d8e0,1, 0x25d8e8,2, 0x25d904,26, 0x25da00,4, 0x25db00,61, 0x25dc00,4, 0x25dc40,12, 0x25dc80,5, 0x25dca0,1, 0x25dcb0,1, 0x25e000,3, 0x25e010,3, 0x25e020,3, 0x25e030,3, 0x25e040,3, 0x25e050,3, 0x25e060,3, 0x25e070,3, 0x25e080,16, 0x25e0c4,1, 0x25e0d0,5, 0x25e100,1, 0x25e140,3, 0x25e160,8, 0x25e184,17, 0x25e2c0,1, 0x25e2c8,14, 0x260000,1, 0x260008,3, 0x260018,3, 0x260030,7, 0x260070,2, 0x260080,1, 0x260088,3, 0x260098,3, 0x2600b0,7, 0x2600f0,2, 0x260100,1, 0x260108,3, 0x260118,3, 0x260130,7, 0x260170,2, 0x260180,1, 0x260188,3, 0x260198,3, 0x2601b0,7, 0x2601f0,2, 0x260200,3, 0x260210,3, 0x260220,3, 0x260230,3, 0x260240,10, 0x26026c,1, 0x260280,28, 0x2602f4,8, 0x260320,27, 0x2603dc,43, 0x260490,3, 0x2604a0,2, 0x2604b0,3, 0x2604c0,2, 0x2604d0,3, 0x2604e0,2, 0x2604f0,3, 0x260500,2, 0x260510,3, 0x260520,2, 0x260530,3, 0x260540,2, 0x260550,3, 0x260560,2, 0x260570,3, 0x260580,64, 0x260780,18, 0x2607d0,4, 0x260800,13, 0x260880,1, 0x260888,8, 0x2608c0,6, 0x2608e0,1, 0x2608e8,2, 0x260904,43, 0x260a00,4, 0x260a14,1, 0x260a1c,1, 0x260a24,1, 0x260a2c,1, 0x260a34,1, 0x260a3c,7, 0x260a60,6, 0x260a80,36, 0x260b40,15, 0x260b80,4, 0x260bc0,11, 0x260c00,9, 0x260c40,9, 0x260c80,9, 0x260cc0,9, 0x260d00,16, 0x260d54,1, 0x260d5c,1, 0x260d64,1, 0x260d6c,1, 0x260d80,26, 0x260e00,26, 0x260e80,26, 0x260f00,26, 0x261000,1, 0x261008,3, 0x261018,3, 0x261030,7, 0x261070,2, 0x261080,1, 0x261088,3, 0x261098,3, 0x2610b0,7, 0x2610f0,2, 0x261100,1, 0x261108,3, 0x261118,3, 0x261130,7, 0x261170,2, 0x261180,1, 0x261188,3, 0x261198,3, 0x2611b0,7, 0x2611f0,2, 0x261200,3, 0x261210,3, 0x261220,3, 0x261230,3, 0x261240,10, 0x26126c,1, 0x261280,28, 0x2612f4,8, 0x261320,27, 0x2613dc,43, 0x261490,3, 0x2614a0,2, 0x2614b0,3, 0x2614c0,2, 0x2614d0,3, 0x2614e0,2, 0x2614f0,3, 0x261500,2, 0x261510,3, 0x261520,2, 0x261530,3, 0x261540,2, 0x261550,3, 0x261560,2, 0x261570,3, 0x261580,64, 0x261780,18, 0x2617d0,4, 0x261800,13, 0x261880,1, 0x261888,8, 0x2618c0,6, 0x2618e0,1, 0x2618e8,2, 0x261904,43, 0x261a00,4, 0x261a14,1, 0x261a1c,1, 0x261a24,1, 0x261a2c,1, 0x261a34,1, 0x261a3c,7, 0x261a60,6, 0x261a80,36, 0x261b40,15, 0x261b80,4, 0x261bc0,11, 0x261c00,9, 0x261c40,9, 0x261c80,9, 0x261cc0,9, 0x261d00,16, 0x261d54,1, 0x261d5c,1, 0x261d64,1, 0x261d6c,1, 0x261d80,26, 0x261e00,26, 0x261e80,26, 0x261f00,26, 0x262000,1, 0x26200c,4, 0x262020,4, 0x262038,3, 0x2620a8,38, 0x262180,64, 0x2622c0,8, 0x2622f8,317, 0x262804,1, 0x262810,6, 0x262844,1, 0x262850,6, 0x262884,1, 0x262894,5, 0x2628c4,1, 0x2628d4,5, 0x262904,1, 0x26292c,21, 0x262984,1, 0x2629ac,21, 0x262a04,1, 0x262a0c,1, 0x262a14,1, 0x262a1c,1, 0x262a24,1, 0x262a2c,1, 0x262a34,1, 0x262a3c,13, 0x262a78,8, 0x262b04,5, 0x262b24,5, 0x262b44,3, 0x262b54,1, 0x262b60,3, 0x262b70,5, 0x262b88,5, 0x262bc0,8, 0x263000,34, 0x263100,13, 0x263140,15, 0x263180,40, 0x263240,11, 0x263280,11, 0x263300,10, 0x263380,4, 0x2633c0,3, 0x2633d0,6, 0x263400,28, 0x263480,27, 0x263500,20, 0x263580,19, 0x264000,19, 0x264c00,10, 0x264c80,3, 0x268000,3, 0x268010,1, 0x268030,13, 0x26806c,4, 0x268100,40, 0x2681fc,4, 0x268210,1, 0x268230,13, 0x26826c,4, 0x268300,40, 0x2683fc,4, 0x268410,1, 0x268430,13, 0x26846c,4, 0x268500,40, 0x2685fc,4, 0x268610,1, 0x268630,13, 0x26866c,4, 0x268700,40, 0x2687fc,4, 0x268810,1, 0x268830,13, 0x26886c,4, 0x268900,40, 0x2689fc,4, 0x268a10,1, 0x268a30,13, 0x268a6c,4, 0x268b00,40, 0x268bfc,4, 0x268c10,1, 0x268c30,13, 0x268c6c,4, 0x268d00,40, 0x268dfc,4, 0x268e10,1, 0x268e30,13, 0x268e6c,4, 0x268f00,40, 0x268ffc,20, 0x269c00,10, 0x269c80,3, 0x26a000,6, 0x26a01c,12, 0x26a080,1, 0x26a088,1, 0x26a090,2, 0x26a0a0,4, 0x26a100,1, 0x26a10c,2, 0x26a11c,2, 0x26a12c,2, 0x26a13c,2, 0x26a14c,2, 0x26a15c,2, 0x26a16c,2, 0x26a17c,3, 0x26a18c,1, 0x26a200,43, 0x26a300,7, 0x26a320,2, 0x26a32c,1, 0x26a380,10, 0x26a3c0,1, 0x26a400,109, 0x26a5c0,5, 0x26a600,109, 0x26a7c0,5, 0x26a800,3, 0x26a814,16, 0x26a874,1, 0x26a880,3, 0x26a894,16, 0x26a8f4,1, 0x26a900,3, 0x26a914,16, 0x26a974,1, 0x26a980,3, 0x26a994,16, 0x26a9f4,1, 0x26aa00,3, 0x26aa14,16, 0x26aa74,1, 0x26aa80,3, 0x26aa94,16, 0x26aaf4,1, 0x26ab00,3, 0x26ab14,16, 0x26ab74,1, 0x26ab80,3, 0x26ab94,16, 0x26abf4,1, 0x26ac00,10, 0x26ac40,10, 0x26ac80,10, 0x26acc0,10, 0x26ad00,1, 0x26ae00,1, 0x26ae80,16, 0x26af00,6, 0x26af20,6, 0x26af40,6, 0x26af60,6, 0x26af80,6, 0x26afa0,6, 0x26afc0,6, 0x26afe0,6, 0x26b000,60, 0x26b100,60, 0x26b200,31, 0x26b400,60, 0x26b500,60, 0x26b600,31, 0x26b800,4, 0x26b900,53, 0x26ba00,12, 0x26c000,25, 0x26c080,1, 0x26c088,8, 0x26c0c0,6, 0x26c0e0,1, 0x26c0e8,2, 0x26c104,5, 0x26c200,11, 0x26c240,1, 0x26c248,1, 0x26c400,4, 0x270000,2, 0x270010,41, 0x2700b8,3, 0x270100,9, 0x270128,1, 0x270140,9, 0x270168,1, 0x270180,6, 0x2701a0,6, 0x2701c0,6, 0x2701e0,4, 0x270200,2, 0x270210,41, 0x2702b8,3, 0x270300,9, 0x270328,1, 0x270340,9, 0x270368,1, 0x270380,6, 0x2703a0,6, 0x2703c0,6, 0x2703e0,4, 0x270400,9, 0x270428,1, 0x270440,2, 0x27044c,3, 0x270464,1, 0x270474,30, 0x270504,1, 0x27052c,53, 0x270604,1, 0x270670,36, 0x270708,2, 0x270800,3, 0x270814,10, 0x270840,11, 0x270870,35, 0x270900,8, 0x270924,5, 0x270980,2, 0x27098c,2, 0x2709a0,2, 0x2709c0,1, 0x270a00,12, 0x270a34,22, 0x270ac0,7, 0x270b00,8, 0x270b24,5, 0x270b80,2, 0x270b8c,2, 0x270ba0,2, 0x270bc0,1, 0x270c00,12, 0x270c40,12, 0x270c80,12, 0x270cc0,12, 0x270d00,12, 0x270d40,12, 0x270d80,12, 0x270dc0,12, 0x270e00,1, 0x270e08,13, 0x270e40,12, 0x270e80,3, 0x270f00,7, 0x270f44,8, 0x270f80,6, 0x270fa0,2, 0x271000,9, 0x271040,9, 0x271080,9, 0x2710c0,9, 0x271100,1, 0x271108,5, 0x271120,2, 0x271200,8, 0x271240,4, 0x271260,8, 0x271300,8, 0x271330,2, 0x271340,7, 0x271380,3, 0x271390,3, 0x2713a0,3, 0x2713b0,3, 0x2713c0,5, 0x271400,69, 0x271600,4, 0x271640,13, 0x271680,7, 0x2716a0,5, 0x2716c0,1, 0x271800,9, 0x271840,9, 0x271880,9, 0x2718c0,9, 0x271900,1, 0x271908,5, 0x271920,2, 0x271a00,8, 0x271a40,4, 0x271a60,8, 0x271b00,8, 0x271b30,2, 0x271b40,7, 0x271b80,3, 0x271b90,3, 0x271ba0,3, 0x271bb0,3, 0x271bc0,5, 0x271c00,69, 0x271e00,4, 0x271e40,13, 0x271e80,7, 0x271ea0,5, 0x271ec0,1, 0x272000,25, 0x272080,1, 0x272088,8, 0x2720c0,6, 0x2720e0,1, 0x2720e8,2, 0x272104,7, 0x272200,11, 0x272240,1, 0x272248,1, 0x272408,2, 0x273000,35, 0x273c00,10, 0x273c80,3, 0x274000,8, 0x274024,2, 0x274040,2, 0x274060,6, 0x274080,1, 0x2740f0,12, 0x274124,2, 0x274140,2, 0x274160,6, 0x274180,1, 0x2741f0,12, 0x274224,2, 0x274240,2, 0x274260,6, 0x274280,1, 0x2742f0,12, 0x274324,2, 0x274340,2, 0x274360,6, 0x274380,1, 0x2743f0,4, 0x274410,4, 0x2745f8,2, 0x274800,8, 0x274824,2, 0x274840,2, 0x274860,6, 0x274880,1, 0x2748f0,12, 0x274924,2, 0x274940,2, 0x274960,6, 0x274980,1, 0x2749f0,12, 0x274a24,2, 0x274a40,2, 0x274a60,6, 0x274a80,1, 0x274af0,12, 0x274b24,2, 0x274b40,2, 0x274b60,6, 0x274b80,1, 0x274bf0,4, 0x274c10,4, 0x274df8,2, 0x275004,1, 0x275040,16, 0x275204,3, 0x275214,1, 0x27521c,1, 0x275224,1, 0x27522c,1, 0x275400,56, 0x2754e4,6, 0x275600,37, 0x275700,17, 0x275748,2, 0x275780,16, 0x275800,25, 0x275880,1, 0x275888,8, 0x2758c0,6, 0x2758e0,1, 0x2758e8,2, 0x275904,26, 0x275a00,4, 0x275b00,61, 0x275c00,4, 0x275c40,12, 0x275c80,5, 0x275ca0,1, 0x275cb0,1, 0x276000,3, 0x276010,3, 0x276020,3, 0x276030,3, 0x276040,3, 0x276050,3, 0x276060,3, 0x276070,3, 0x276080,16, 0x2760c4,1, 0x2760d0,5, 0x276100,1, 0x276140,3, 0x276160,8, 0x276184,17, 0x2762c0,1, 0x2762c8,14, 0x278000,1, 0x278008,3, 0x278018,3, 0x278030,7, 0x278070,2, 0x278080,1, 0x278088,3, 0x278098,3, 0x2780b0,7, 0x2780f0,2, 0x278100,1, 0x278108,3, 0x278118,3, 0x278130,7, 0x278170,2, 0x278180,1, 0x278188,3, 0x278198,3, 0x2781b0,7, 0x2781f0,2, 0x278200,3, 0x278210,3, 0x278220,3, 0x278230,3, 0x278240,10, 0x27826c,1, 0x278280,28, 0x2782f4,8, 0x278320,27, 0x2783dc,43, 0x278490,3, 0x2784a0,2, 0x2784b0,3, 0x2784c0,2, 0x2784d0,3, 0x2784e0,2, 0x2784f0,3, 0x278500,2, 0x278510,3, 0x278520,2, 0x278530,3, 0x278540,2, 0x278550,3, 0x278560,2, 0x278570,3, 0x278580,64, 0x278780,18, 0x2787d0,4, 0x278800,13, 0x278880,1, 0x278888,8, 0x2788c0,6, 0x2788e0,1, 0x2788e8,2, 0x278904,43, 0x278a00,4, 0x278a14,1, 0x278a1c,1, 0x278a24,1, 0x278a2c,1, 0x278a34,1, 0x278a3c,7, 0x278a60,6, 0x278a80,36, 0x278b40,15, 0x278b80,4, 0x278bc0,11, 0x278c00,9, 0x278c40,9, 0x278c80,9, 0x278cc0,9, 0x278d00,16, 0x278d54,1, 0x278d5c,1, 0x278d64,1, 0x278d6c,1, 0x278d80,26, 0x278e00,26, 0x278e80,26, 0x278f00,26, 0x279000,1, 0x279008,3, 0x279018,3, 0x279030,7, 0x279070,2, 0x279080,1, 0x279088,3, 0x279098,3, 0x2790b0,7, 0x2790f0,2, 0x279100,1, 0x279108,3, 0x279118,3, 0x279130,7, 0x279170,2, 0x279180,1, 0x279188,3, 0x279198,3, 0x2791b0,7, 0x2791f0,2, 0x279200,3, 0x279210,3, 0x279220,3, 0x279230,3, 0x279240,10, 0x27926c,1, 0x279280,28, 0x2792f4,8, 0x279320,27, 0x2793dc,43, 0x279490,3, 0x2794a0,2, 0x2794b0,3, 0x2794c0,2, 0x2794d0,3, 0x2794e0,2, 0x2794f0,3, 0x279500,2, 0x279510,3, 0x279520,2, 0x279530,3, 0x279540,2, 0x279550,3, 0x279560,2, 0x279570,3, 0x279580,64, 0x279780,18, 0x2797d0,4, 0x279800,13, 0x279880,1, 0x279888,8, 0x2798c0,6, 0x2798e0,1, 0x2798e8,2, 0x279904,43, 0x279a00,4, 0x279a14,1, 0x279a1c,1, 0x279a24,1, 0x279a2c,1, 0x279a34,1, 0x279a3c,7, 0x279a60,6, 0x279a80,36, 0x279b40,15, 0x279b80,4, 0x279bc0,11, 0x279c00,9, 0x279c40,9, 0x279c80,9, 0x279cc0,9, 0x279d00,16, 0x279d54,1, 0x279d5c,1, 0x279d64,1, 0x279d6c,1, 0x279d80,26, 0x279e00,26, 0x279e80,26, 0x279f00,26, 0x27a000,1, 0x27a00c,4, 0x27a020,4, 0x27a038,3, 0x27a0a8,38, 0x27a180,64, 0x27a2c0,8, 0x27a2f8,317, 0x27a804,1, 0x27a810,6, 0x27a844,1, 0x27a850,6, 0x27a884,1, 0x27a894,5, 0x27a8c4,1, 0x27a8d4,5, 0x27a904,1, 0x27a92c,21, 0x27a984,1, 0x27a9ac,21, 0x27aa04,1, 0x27aa0c,1, 0x27aa14,1, 0x27aa1c,1, 0x27aa24,1, 0x27aa2c,1, 0x27aa34,1, 0x27aa3c,13, 0x27aa78,8, 0x27ab04,5, 0x27ab24,5, 0x27ab44,3, 0x27ab54,1, 0x27ab60,3, 0x27ab70,5, 0x27ab88,5, 0x27abc0,8, 0x27b000,34, 0x27b100,13, 0x27b140,15, 0x27b180,40, 0x27b240,11, 0x27b280,11, 0x27b300,10, 0x27b380,4, 0x27b3c0,3, 0x27b3d0,6, 0x27b400,28, 0x27b480,27, 0x27b500,20, 0x27b580,19, 0x27c000,19, 0x27cc00,10, 0x27cc80,3, 0x280000,3, 0x280010,1, 0x280030,13, 0x28006c,4, 0x280100,40, 0x2801fc,4, 0x280210,1, 0x280230,13, 0x28026c,4, 0x280300,40, 0x2803fc,4, 0x280410,1, 0x280430,13, 0x28046c,4, 0x280500,40, 0x2805fc,4, 0x280610,1, 0x280630,13, 0x28066c,4, 0x280700,40, 0x2807fc,4, 0x280810,1, 0x280830,13, 0x28086c,4, 0x280900,40, 0x2809fc,4, 0x280a10,1, 0x280a30,13, 0x280a6c,4, 0x280b00,40, 0x280bfc,4, 0x280c10,1, 0x280c30,13, 0x280c6c,4, 0x280d00,40, 0x280dfc,4, 0x280e10,1, 0x280e30,13, 0x280e6c,4, 0x280f00,40, 0x280ffc,20, 0x281c00,10, 0x281c80,3, 0x282000,6, 0x28201c,12, 0x282080,1, 0x282088,1, 0x282090,2, 0x2820a0,4, 0x282100,1, 0x28210c,2, 0x28211c,2, 0x28212c,2, 0x28213c,2, 0x28214c,2, 0x28215c,2, 0x28216c,2, 0x28217c,3, 0x28218c,1, 0x282200,43, 0x282300,7, 0x282320,2, 0x28232c,1, 0x282380,10, 0x2823c0,1, 0x282400,109, 0x2825c0,5, 0x282600,109, 0x2827c0,5, 0x282800,3, 0x282814,16, 0x282874,1, 0x282880,3, 0x282894,16, 0x2828f4,1, 0x282900,3, 0x282914,16, 0x282974,1, 0x282980,3, 0x282994,16, 0x2829f4,1, 0x282a00,3, 0x282a14,16, 0x282a74,1, 0x282a80,3, 0x282a94,16, 0x282af4,1, 0x282b00,3, 0x282b14,16, 0x282b74,1, 0x282b80,3, 0x282b94,16, 0x282bf4,1, 0x282c00,10, 0x282c40,10, 0x282c80,10, 0x282cc0,10, 0x282d00,1, 0x282e00,1, 0x282e80,16, 0x282f00,6, 0x282f20,6, 0x282f40,6, 0x282f60,6, 0x282f80,6, 0x282fa0,6, 0x282fc0,6, 0x282fe0,6, 0x283000,60, 0x283100,60, 0x283200,31, 0x283400,60, 0x283500,60, 0x283600,31, 0x283800,4, 0x283900,53, 0x283a00,12, 0x284000,25, 0x284080,1, 0x284088,8, 0x2840c0,6, 0x2840e0,1, 0x2840e8,2, 0x284104,5, 0x284200,11, 0x284240,1, 0x284248,1, 0x284400,4, 0x288000,2, 0x288010,41, 0x2880b8,3, 0x288100,9, 0x288128,1, 0x288140,9, 0x288168,1, 0x288180,6, 0x2881a0,6, 0x2881c0,6, 0x2881e0,4, 0x288200,2, 0x288210,41, 0x2882b8,3, 0x288300,9, 0x288328,1, 0x288340,9, 0x288368,1, 0x288380,6, 0x2883a0,6, 0x2883c0,6, 0x2883e0,4, 0x288400,9, 0x288428,1, 0x288440,2, 0x28844c,3, 0x288464,1, 0x288474,30, 0x288504,1, 0x28852c,53, 0x288604,1, 0x288670,36, 0x288708,2, 0x288800,3, 0x288814,10, 0x288840,11, 0x288870,35, 0x288900,8, 0x288924,5, 0x288980,2, 0x28898c,2, 0x2889a0,2, 0x2889c0,1, 0x288a00,12, 0x288a34,22, 0x288ac0,7, 0x288b00,8, 0x288b24,5, 0x288b80,2, 0x288b8c,2, 0x288ba0,2, 0x288bc0,1, 0x288c00,12, 0x288c40,12, 0x288c80,12, 0x288cc0,12, 0x288d00,12, 0x288d40,12, 0x288d80,12, 0x288dc0,12, 0x288e00,1, 0x288e08,13, 0x288e40,12, 0x288e80,3, 0x288f00,7, 0x288f44,8, 0x288f80,6, 0x288fa0,2, 0x289000,9, 0x289040,9, 0x289080,9, 0x2890c0,9, 0x289100,1, 0x289108,5, 0x289120,2, 0x289200,8, 0x289240,4, 0x289260,8, 0x289300,8, 0x289330,2, 0x289340,7, 0x289380,3, 0x289390,3, 0x2893a0,3, 0x2893b0,3, 0x2893c0,5, 0x289400,69, 0x289600,4, 0x289640,13, 0x289680,7, 0x2896a0,5, 0x2896c0,1, 0x289800,9, 0x289840,9, 0x289880,9, 0x2898c0,9, 0x289900,1, 0x289908,5, 0x289920,2, 0x289a00,8, 0x289a40,4, 0x289a60,8, 0x289b00,8, 0x289b30,2, 0x289b40,7, 0x289b80,3, 0x289b90,3, 0x289ba0,3, 0x289bb0,3, 0x289bc0,5, 0x289c00,69, 0x289e00,4, 0x289e40,13, 0x289e80,7, 0x289ea0,5, 0x289ec0,1, 0x28a000,25, 0x28a080,1, 0x28a088,8, 0x28a0c0,6, 0x28a0e0,1, 0x28a0e8,2, 0x28a104,7, 0x28a200,11, 0x28a240,1, 0x28a248,1, 0x28a408,2, 0x28b000,35, 0x28bc00,10, 0x28bc80,3, 0x28c000,8, 0x28c024,2, 0x28c040,2, 0x28c060,6, 0x28c080,1, 0x28c0f0,12, 0x28c124,2, 0x28c140,2, 0x28c160,6, 0x28c180,1, 0x28c1f0,12, 0x28c224,2, 0x28c240,2, 0x28c260,6, 0x28c280,1, 0x28c2f0,12, 0x28c324,2, 0x28c340,2, 0x28c360,6, 0x28c380,1, 0x28c3f0,4, 0x28c410,4, 0x28c5f8,2, 0x28c800,8, 0x28c824,2, 0x28c840,2, 0x28c860,6, 0x28c880,1, 0x28c8f0,12, 0x28c924,2, 0x28c940,2, 0x28c960,6, 0x28c980,1, 0x28c9f0,12, 0x28ca24,2, 0x28ca40,2, 0x28ca60,6, 0x28ca80,1, 0x28caf0,12, 0x28cb24,2, 0x28cb40,2, 0x28cb60,6, 0x28cb80,1, 0x28cbf0,4, 0x28cc10,4, 0x28cdf8,2, 0x28d004,1, 0x28d040,16, 0x28d204,3, 0x28d214,1, 0x28d21c,1, 0x28d224,1, 0x28d22c,1, 0x28d400,56, 0x28d4e4,6, 0x28d600,37, 0x28d700,17, 0x28d748,2, 0x28d780,16, 0x28d800,25, 0x28d880,1, 0x28d888,8, 0x28d8c0,6, 0x28d8e0,1, 0x28d8e8,2, 0x28d904,26, 0x28da00,4, 0x28db00,61, 0x28dc00,4, 0x28dc40,12, 0x28dc80,5, 0x28dca0,1, 0x28dcb0,1, 0x28e000,3, 0x28e010,3, 0x28e020,3, 0x28e030,3, 0x28e040,3, 0x28e050,3, 0x28e060,3, 0x28e070,3, 0x28e080,16, 0x28e0c4,1, 0x28e0d0,5, 0x28e100,1, 0x28e140,3, 0x28e160,8, 0x28e184,17, 0x28e2c0,1, 0x28e2c8,14, 0x290000,1, 0x290008,3, 0x290018,3, 0x290030,7, 0x290070,2, 0x290080,1, 0x290088,3, 0x290098,3, 0x2900b0,7, 0x2900f0,2, 0x290100,1, 0x290108,3, 0x290118,3, 0x290130,7, 0x290170,2, 0x290180,1, 0x290188,3, 0x290198,3, 0x2901b0,7, 0x2901f0,2, 0x290200,3, 0x290210,3, 0x290220,3, 0x290230,3, 0x290240,10, 0x29026c,1, 0x290280,28, 0x2902f4,8, 0x290320,27, 0x2903dc,43, 0x290490,3, 0x2904a0,2, 0x2904b0,3, 0x2904c0,2, 0x2904d0,3, 0x2904e0,2, 0x2904f0,3, 0x290500,2, 0x290510,3, 0x290520,2, 0x290530,3, 0x290540,2, 0x290550,3, 0x290560,2, 0x290570,3, 0x290580,64, 0x290780,18, 0x2907d0,4, 0x290800,13, 0x290880,1, 0x290888,8, 0x2908c0,6, 0x2908e0,1, 0x2908e8,2, 0x290904,43, 0x290a00,4, 0x290a14,1, 0x290a1c,1, 0x290a24,1, 0x290a2c,1, 0x290a34,1, 0x290a3c,7, 0x290a60,6, 0x290a80,36, 0x290b40,15, 0x290b80,4, 0x290bc0,11, 0x290c00,9, 0x290c40,9, 0x290c80,9, 0x290cc0,9, 0x290d00,16, 0x290d54,1, 0x290d5c,1, 0x290d64,1, 0x290d6c,1, 0x290d80,26, 0x290e00,26, 0x290e80,26, 0x290f00,26, 0x291000,1, 0x291008,3, 0x291018,3, 0x291030,7, 0x291070,2, 0x291080,1, 0x291088,3, 0x291098,3, 0x2910b0,7, 0x2910f0,2, 0x291100,1, 0x291108,3, 0x291118,3, 0x291130,7, 0x291170,2, 0x291180,1, 0x291188,3, 0x291198,3, 0x2911b0,7, 0x2911f0,2, 0x291200,3, 0x291210,3, 0x291220,3, 0x291230,3, 0x291240,10, 0x29126c,1, 0x291280,28, 0x2912f4,8, 0x291320,27, 0x2913dc,43, 0x291490,3, 0x2914a0,2, 0x2914b0,3, 0x2914c0,2, 0x2914d0,3, 0x2914e0,2, 0x2914f0,3, 0x291500,2, 0x291510,3, 0x291520,2, 0x291530,3, 0x291540,2, 0x291550,3, 0x291560,2, 0x291570,3, 0x291580,64, 0x291780,18, 0x2917d0,4, 0x291800,13, 0x291880,1, 0x291888,8, 0x2918c0,6, 0x2918e0,1, 0x2918e8,2, 0x291904,43, 0x291a00,4, 0x291a14,1, 0x291a1c,1, 0x291a24,1, 0x291a2c,1, 0x291a34,1, 0x291a3c,7, 0x291a60,6, 0x291a80,36, 0x291b40,15, 0x291b80,4, 0x291bc0,11, 0x291c00,9, 0x291c40,9, 0x291c80,9, 0x291cc0,9, 0x291d00,16, 0x291d54,1, 0x291d5c,1, 0x291d64,1, 0x291d6c,1, 0x291d80,26, 0x291e00,26, 0x291e80,26, 0x291f00,26, 0x292000,1, 0x29200c,4, 0x292020,4, 0x292038,3, 0x2920a8,38, 0x292180,64, 0x2922c0,8, 0x2922f8,317, 0x292804,1, 0x292810,6, 0x292844,1, 0x292850,6, 0x292884,1, 0x292894,5, 0x2928c4,1, 0x2928d4,5, 0x292904,1, 0x29292c,21, 0x292984,1, 0x2929ac,21, 0x292a04,1, 0x292a0c,1, 0x292a14,1, 0x292a1c,1, 0x292a24,1, 0x292a2c,1, 0x292a34,1, 0x292a3c,13, 0x292a78,8, 0x292b04,5, 0x292b24,5, 0x292b44,3, 0x292b54,1, 0x292b60,3, 0x292b70,5, 0x292b88,5, 0x292bc0,8, 0x293000,34, 0x293100,13, 0x293140,15, 0x293180,40, 0x293240,11, 0x293280,11, 0x293300,10, 0x293380,4, 0x2933c0,3, 0x2933d0,6, 0x293400,28, 0x293480,27, 0x293500,20, 0x293580,19, 0x294000,19, 0x294c00,10, 0x294c80,3, 0x298000,3, 0x298010,1, 0x298030,13, 0x29806c,4, 0x298100,40, 0x2981fc,4, 0x298210,1, 0x298230,13, 0x29826c,4, 0x298300,40, 0x2983fc,4, 0x298410,1, 0x298430,13, 0x29846c,4, 0x298500,40, 0x2985fc,4, 0x298610,1, 0x298630,13, 0x29866c,4, 0x298700,40, 0x2987fc,4, 0x298810,1, 0x298830,13, 0x29886c,4, 0x298900,40, 0x2989fc,4, 0x298a10,1, 0x298a30,13, 0x298a6c,4, 0x298b00,40, 0x298bfc,4, 0x298c10,1, 0x298c30,13, 0x298c6c,4, 0x298d00,40, 0x298dfc,4, 0x298e10,1, 0x298e30,13, 0x298e6c,4, 0x298f00,40, 0x298ffc,20, 0x299c00,10, 0x299c80,3, 0x29a000,6, 0x29a01c,12, 0x29a080,1, 0x29a088,1, 0x29a090,2, 0x29a0a0,4, 0x29a100,1, 0x29a10c,2, 0x29a11c,2, 0x29a12c,2, 0x29a13c,2, 0x29a14c,2, 0x29a15c,2, 0x29a16c,2, 0x29a17c,3, 0x29a18c,1, 0x29a200,43, 0x29a300,7, 0x29a320,2, 0x29a32c,1, 0x29a380,10, 0x29a3c0,1, 0x29a400,109, 0x29a5c0,5, 0x29a600,109, 0x29a7c0,5, 0x29a800,3, 0x29a814,16, 0x29a874,1, 0x29a880,3, 0x29a894,16, 0x29a8f4,1, 0x29a900,3, 0x29a914,16, 0x29a974,1, 0x29a980,3, 0x29a994,16, 0x29a9f4,1, 0x29aa00,3, 0x29aa14,16, 0x29aa74,1, 0x29aa80,3, 0x29aa94,16, 0x29aaf4,1, 0x29ab00,3, 0x29ab14,16, 0x29ab74,1, 0x29ab80,3, 0x29ab94,16, 0x29abf4,1, 0x29ac00,10, 0x29ac40,10, 0x29ac80,10, 0x29acc0,10, 0x29ad00,1, 0x29ae00,1, 0x29ae80,16, 0x29af00,6, 0x29af20,6, 0x29af40,6, 0x29af60,6, 0x29af80,6, 0x29afa0,6, 0x29afc0,6, 0x29afe0,6, 0x29b000,60, 0x29b100,60, 0x29b200,31, 0x29b400,60, 0x29b500,60, 0x29b600,31, 0x29b800,4, 0x29b900,53, 0x29ba00,12, 0x29c000,25, 0x29c080,1, 0x29c088,8, 0x29c0c0,6, 0x29c0e0,1, 0x29c0e8,2, 0x29c104,5, 0x29c200,11, 0x29c240,1, 0x29c248,1, 0x29c400,4, 0x2a0000,2, 0x2a0010,41, 0x2a00b8,3, 0x2a0100,9, 0x2a0128,1, 0x2a0140,9, 0x2a0168,1, 0x2a0180,6, 0x2a01a0,6, 0x2a01c0,6, 0x2a01e0,4, 0x2a0200,2, 0x2a0210,41, 0x2a02b8,3, 0x2a0300,9, 0x2a0328,1, 0x2a0340,9, 0x2a0368,1, 0x2a0380,6, 0x2a03a0,6, 0x2a03c0,6, 0x2a03e0,4, 0x2a0400,9, 0x2a0428,1, 0x2a0440,2, 0x2a044c,3, 0x2a0464,1, 0x2a0474,30, 0x2a0504,1, 0x2a052c,53, 0x2a0604,1, 0x2a0670,36, 0x2a0708,2, 0x2a0800,3, 0x2a0814,10, 0x2a0840,11, 0x2a0870,35, 0x2a0900,8, 0x2a0924,5, 0x2a0980,2, 0x2a098c,2, 0x2a09a0,2, 0x2a09c0,1, 0x2a0a00,12, 0x2a0a34,22, 0x2a0ac0,7, 0x2a0b00,8, 0x2a0b24,5, 0x2a0b80,2, 0x2a0b8c,2, 0x2a0ba0,2, 0x2a0bc0,1, 0x2a0c00,12, 0x2a0c40,12, 0x2a0c80,12, 0x2a0cc0,12, 0x2a0d00,12, 0x2a0d40,12, 0x2a0d80,12, 0x2a0dc0,12, 0x2a0e00,1, 0x2a0e08,13, 0x2a0e40,12, 0x2a0e80,3, 0x2a0f00,7, 0x2a0f44,8, 0x2a0f80,6, 0x2a0fa0,2, 0x2a1000,9, 0x2a1040,9, 0x2a1080,9, 0x2a10c0,9, 0x2a1100,1, 0x2a1108,5, 0x2a1120,2, 0x2a1200,8, 0x2a1240,4, 0x2a1260,8, 0x2a1300,8, 0x2a1330,2, 0x2a1340,7, 0x2a1380,3, 0x2a1390,3, 0x2a13a0,3, 0x2a13b0,3, 0x2a13c0,5, 0x2a1400,69, 0x2a1600,4, 0x2a1640,13, 0x2a1680,7, 0x2a16a0,5, 0x2a16c0,1, 0x2a1800,9, 0x2a1840,9, 0x2a1880,9, 0x2a18c0,9, 0x2a1900,1, 0x2a1908,5, 0x2a1920,2, 0x2a1a00,8, 0x2a1a40,4, 0x2a1a60,8, 0x2a1b00,8, 0x2a1b30,2, 0x2a1b40,7, 0x2a1b80,3, 0x2a1b90,3, 0x2a1ba0,3, 0x2a1bb0,3, 0x2a1bc0,5, 0x2a1c00,69, 0x2a1e00,4, 0x2a1e40,13, 0x2a1e80,7, 0x2a1ea0,5, 0x2a1ec0,1, 0x2a2000,25, 0x2a2080,1, 0x2a2088,8, 0x2a20c0,6, 0x2a20e0,1, 0x2a20e8,2, 0x2a2104,7, 0x2a2200,11, 0x2a2240,1, 0x2a2248,1, 0x2a2408,2, 0x2a3000,35, 0x2a3c00,10, 0x2a3c80,3, 0x2a4000,8, 0x2a4024,2, 0x2a4040,2, 0x2a4060,6, 0x2a4080,1, 0x2a40f0,12, 0x2a4124,2, 0x2a4140,2, 0x2a4160,6, 0x2a4180,1, 0x2a41f0,12, 0x2a4224,2, 0x2a4240,2, 0x2a4260,6, 0x2a4280,1, 0x2a42f0,12, 0x2a4324,2, 0x2a4340,2, 0x2a4360,6, 0x2a4380,1, 0x2a43f0,4, 0x2a4410,4, 0x2a45f8,2, 0x2a4800,8, 0x2a4824,2, 0x2a4840,2, 0x2a4860,6, 0x2a4880,1, 0x2a48f0,12, 0x2a4924,2, 0x2a4940,2, 0x2a4960,6, 0x2a4980,1, 0x2a49f0,12, 0x2a4a24,2, 0x2a4a40,2, 0x2a4a60,6, 0x2a4a80,1, 0x2a4af0,12, 0x2a4b24,2, 0x2a4b40,2, 0x2a4b60,6, 0x2a4b80,1, 0x2a4bf0,4, 0x2a4c10,4, 0x2a4df8,2, 0x2a5004,1, 0x2a5040,16, 0x2a5204,3, 0x2a5214,1, 0x2a521c,1, 0x2a5224,1, 0x2a522c,1, 0x2a5400,56, 0x2a54e4,6, 0x2a5600,37, 0x2a5700,17, 0x2a5748,2, 0x2a5780,16, 0x2a5800,25, 0x2a5880,1, 0x2a5888,8, 0x2a58c0,6, 0x2a58e0,1, 0x2a58e8,2, 0x2a5904,26, 0x2a5a00,4, 0x2a5b00,61, 0x2a5c00,4, 0x2a5c40,12, 0x2a5c80,5, 0x2a5ca0,1, 0x2a5cb0,1, 0x2a6000,3, 0x2a6010,3, 0x2a6020,3, 0x2a6030,3, 0x2a6040,3, 0x2a6050,3, 0x2a6060,3, 0x2a6070,3, 0x2a6080,16, 0x2a60c4,1, 0x2a60d0,5, 0x2a6100,1, 0x2a6140,3, 0x2a6160,8, 0x2a6184,17, 0x2a62c0,1, 0x2a62c8,14, 0x2a8000,1, 0x2a8008,3, 0x2a8018,3, 0x2a8030,7, 0x2a8070,2, 0x2a8080,1, 0x2a8088,3, 0x2a8098,3, 0x2a80b0,7, 0x2a80f0,2, 0x2a8100,1, 0x2a8108,3, 0x2a8118,3, 0x2a8130,7, 0x2a8170,2, 0x2a8180,1, 0x2a8188,3, 0x2a8198,3, 0x2a81b0,7, 0x2a81f0,2, 0x2a8200,3, 0x2a8210,3, 0x2a8220,3, 0x2a8230,3, 0x2a8240,10, 0x2a826c,1, 0x2a8280,28, 0x2a82f4,8, 0x2a8320,27, 0x2a83dc,43, 0x2a8490,3, 0x2a84a0,2, 0x2a84b0,3, 0x2a84c0,2, 0x2a84d0,3, 0x2a84e0,2, 0x2a84f0,3, 0x2a8500,2, 0x2a8510,3, 0x2a8520,2, 0x2a8530,3, 0x2a8540,2, 0x2a8550,3, 0x2a8560,2, 0x2a8570,3, 0x2a8580,64, 0x2a8780,18, 0x2a87d0,4, 0x2a8800,13, 0x2a8880,1, 0x2a8888,8, 0x2a88c0,6, 0x2a88e0,1, 0x2a88e8,2, 0x2a8904,43, 0x2a8a00,4, 0x2a8a14,1, 0x2a8a1c,1, 0x2a8a24,1, 0x2a8a2c,1, 0x2a8a34,1, 0x2a8a3c,7, 0x2a8a60,6, 0x2a8a80,36, 0x2a8b40,15, 0x2a8b80,4, 0x2a8bc0,11, 0x2a8c00,9, 0x2a8c40,9, 0x2a8c80,9, 0x2a8cc0,9, 0x2a8d00,16, 0x2a8d54,1, 0x2a8d5c,1, 0x2a8d64,1, 0x2a8d6c,1, 0x2a8d80,26, 0x2a8e00,26, 0x2a8e80,26, 0x2a8f00,26, 0x2a9000,1, 0x2a9008,3, 0x2a9018,3, 0x2a9030,7, 0x2a9070,2, 0x2a9080,1, 0x2a9088,3, 0x2a9098,3, 0x2a90b0,7, 0x2a90f0,2, 0x2a9100,1, 0x2a9108,3, 0x2a9118,3, 0x2a9130,7, 0x2a9170,2, 0x2a9180,1, 0x2a9188,3, 0x2a9198,3, 0x2a91b0,7, 0x2a91f0,2, 0x2a9200,3, 0x2a9210,3, 0x2a9220,3, 0x2a9230,3, 0x2a9240,10, 0x2a926c,1, 0x2a9280,28, 0x2a92f4,8, 0x2a9320,27, 0x2a93dc,43, 0x2a9490,3, 0x2a94a0,2, 0x2a94b0,3, 0x2a94c0,2, 0x2a94d0,3, 0x2a94e0,2, 0x2a94f0,3, 0x2a9500,2, 0x2a9510,3, 0x2a9520,2, 0x2a9530,3, 0x2a9540,2, 0x2a9550,3, 0x2a9560,2, 0x2a9570,3, 0x2a9580,64, 0x2a9780,18, 0x2a97d0,4, 0x2a9800,13, 0x2a9880,1, 0x2a9888,8, 0x2a98c0,6, 0x2a98e0,1, 0x2a98e8,2, 0x2a9904,43, 0x2a9a00,4, 0x2a9a14,1, 0x2a9a1c,1, 0x2a9a24,1, 0x2a9a2c,1, 0x2a9a34,1, 0x2a9a3c,7, 0x2a9a60,6, 0x2a9a80,36, 0x2a9b40,15, 0x2a9b80,4, 0x2a9bc0,11, 0x2a9c00,9, 0x2a9c40,9, 0x2a9c80,9, 0x2a9cc0,9, 0x2a9d00,16, 0x2a9d54,1, 0x2a9d5c,1, 0x2a9d64,1, 0x2a9d6c,1, 0x2a9d80,26, 0x2a9e00,26, 0x2a9e80,26, 0x2a9f00,26, 0x2aa000,1, 0x2aa00c,4, 0x2aa020,4, 0x2aa038,3, 0x2aa0a8,38, 0x2aa180,64, 0x2aa2c0,8, 0x2aa2f8,317, 0x2aa804,1, 0x2aa810,6, 0x2aa844,1, 0x2aa850,6, 0x2aa884,1, 0x2aa894,5, 0x2aa8c4,1, 0x2aa8d4,5, 0x2aa904,1, 0x2aa92c,21, 0x2aa984,1, 0x2aa9ac,21, 0x2aaa04,1, 0x2aaa0c,1, 0x2aaa14,1, 0x2aaa1c,1, 0x2aaa24,1, 0x2aaa2c,1, 0x2aaa34,1, 0x2aaa3c,13, 0x2aaa78,8, 0x2aab04,5, 0x2aab24,5, 0x2aab44,3, 0x2aab54,1, 0x2aab60,3, 0x2aab70,5, 0x2aab88,5, 0x2aabc0,8, 0x2ab000,34, 0x2ab100,13, 0x2ab140,15, 0x2ab180,40, 0x2ab240,11, 0x2ab280,11, 0x2ab300,10, 0x2ab380,4, 0x2ab3c0,3, 0x2ab3d0,6, 0x2ab400,28, 0x2ab480,27, 0x2ab500,20, 0x2ab580,19, 0x2ac000,19, 0x2acc00,10, 0x2acc80,3, 0x2b0000,3, 0x2b0010,1, 0x2b0030,13, 0x2b006c,4, 0x2b0100,40, 0x2b01fc,4, 0x2b0210,1, 0x2b0230,13, 0x2b026c,4, 0x2b0300,40, 0x2b03fc,4, 0x2b0410,1, 0x2b0430,13, 0x2b046c,4, 0x2b0500,40, 0x2b05fc,4, 0x2b0610,1, 0x2b0630,13, 0x2b066c,4, 0x2b0700,40, 0x2b07fc,4, 0x2b0810,1, 0x2b0830,13, 0x2b086c,4, 0x2b0900,40, 0x2b09fc,4, 0x2b0a10,1, 0x2b0a30,13, 0x2b0a6c,4, 0x2b0b00,40, 0x2b0bfc,4, 0x2b0c10,1, 0x2b0c30,13, 0x2b0c6c,4, 0x2b0d00,40, 0x2b0dfc,4, 0x2b0e10,1, 0x2b0e30,13, 0x2b0e6c,4, 0x2b0f00,40, 0x2b0ffc,20, 0x2b1c00,10, 0x2b1c80,3, 0x2b2000,6, 0x2b201c,12, 0x2b2080,1, 0x2b2088,1, 0x2b2090,2, 0x2b20a0,4, 0x2b2100,1, 0x2b210c,2, 0x2b211c,2, 0x2b212c,2, 0x2b213c,2, 0x2b214c,2, 0x2b215c,2, 0x2b216c,2, 0x2b217c,3, 0x2b218c,1, 0x2b2200,43, 0x2b2300,7, 0x2b2320,2, 0x2b232c,1, 0x2b2380,10, 0x2b23c0,1, 0x2b2400,109, 0x2b25c0,5, 0x2b2600,109, 0x2b27c0,5, 0x2b2800,3, 0x2b2814,16, 0x2b2874,1, 0x2b2880,3, 0x2b2894,16, 0x2b28f4,1, 0x2b2900,3, 0x2b2914,16, 0x2b2974,1, 0x2b2980,3, 0x2b2994,16, 0x2b29f4,1, 0x2b2a00,3, 0x2b2a14,16, 0x2b2a74,1, 0x2b2a80,3, 0x2b2a94,16, 0x2b2af4,1, 0x2b2b00,3, 0x2b2b14,16, 0x2b2b74,1, 0x2b2b80,3, 0x2b2b94,16, 0x2b2bf4,1, 0x2b2c00,10, 0x2b2c40,10, 0x2b2c80,10, 0x2b2cc0,10, 0x2b2d00,1, 0x2b2e00,1, 0x2b2e80,16, 0x2b2f00,6, 0x2b2f20,6, 0x2b2f40,6, 0x2b2f60,6, 0x2b2f80,6, 0x2b2fa0,6, 0x2b2fc0,6, 0x2b2fe0,6, 0x2b3000,60, 0x2b3100,60, 0x2b3200,31, 0x2b3400,60, 0x2b3500,60, 0x2b3600,31, 0x2b3800,4, 0x2b3900,53, 0x2b3a00,12, 0x2b4000,25, 0x2b4080,1, 0x2b4088,8, 0x2b40c0,6, 0x2b40e0,1, 0x2b40e8,2, 0x2b4104,5, 0x2b4200,11, 0x2b4240,1, 0x2b4248,1, 0x2b4400,4, 0x2b8000,2, 0x2b8010,41, 0x2b80b8,3, 0x2b8100,9, 0x2b8128,1, 0x2b8140,9, 0x2b8168,1, 0x2b8180,6, 0x2b81a0,6, 0x2b81c0,6, 0x2b81e0,4, 0x2b8200,2, 0x2b8210,41, 0x2b82b8,3, 0x2b8300,9, 0x2b8328,1, 0x2b8340,9, 0x2b8368,1, 0x2b8380,6, 0x2b83a0,6, 0x2b83c0,6, 0x2b83e0,4, 0x2b8400,9, 0x2b8428,1, 0x2b8440,2, 0x2b844c,3, 0x2b8464,1, 0x2b8474,30, 0x2b8504,1, 0x2b852c,53, 0x2b8604,1, 0x2b8670,36, 0x2b8708,2, 0x2b8800,3, 0x2b8814,10, 0x2b8840,11, 0x2b8870,35, 0x2b8900,8, 0x2b8924,5, 0x2b8980,2, 0x2b898c,2, 0x2b89a0,2, 0x2b89c0,1, 0x2b8a00,12, 0x2b8a34,22, 0x2b8ac0,7, 0x2b8b00,8, 0x2b8b24,5, 0x2b8b80,2, 0x2b8b8c,2, 0x2b8ba0,2, 0x2b8bc0,1, 0x2b8c00,12, 0x2b8c40,12, 0x2b8c80,12, 0x2b8cc0,12, 0x2b8d00,12, 0x2b8d40,12, 0x2b8d80,12, 0x2b8dc0,12, 0x2b8e00,1, 0x2b8e08,13, 0x2b8e40,12, 0x2b8e80,3, 0x2b8f00,7, 0x2b8f44,8, 0x2b8f80,6, 0x2b8fa0,2, 0x2b9000,9, 0x2b9040,9, 0x2b9080,9, 0x2b90c0,9, 0x2b9100,1, 0x2b9108,5, 0x2b9120,2, 0x2b9200,8, 0x2b9240,4, 0x2b9260,8, 0x2b9300,8, 0x2b9330,2, 0x2b9340,7, 0x2b9380,3, 0x2b9390,3, 0x2b93a0,3, 0x2b93b0,3, 0x2b93c0,5, 0x2b9400,69, 0x2b9600,4, 0x2b9640,13, 0x2b9680,7, 0x2b96a0,5, 0x2b96c0,1, 0x2b9800,9, 0x2b9840,9, 0x2b9880,9, 0x2b98c0,9, 0x2b9900,1, 0x2b9908,5, 0x2b9920,2, 0x2b9a00,8, 0x2b9a40,4, 0x2b9a60,8, 0x2b9b00,8, 0x2b9b30,2, 0x2b9b40,7, 0x2b9b80,3, 0x2b9b90,3, 0x2b9ba0,3, 0x2b9bb0,3, 0x2b9bc0,5, 0x2b9c00,69, 0x2b9e00,4, 0x2b9e40,13, 0x2b9e80,7, 0x2b9ea0,5, 0x2b9ec0,1, 0x2ba000,25, 0x2ba080,1, 0x2ba088,8, 0x2ba0c0,6, 0x2ba0e0,1, 0x2ba0e8,2, 0x2ba104,7, 0x2ba200,11, 0x2ba240,1, 0x2ba248,1, 0x2ba408,2, 0x2bb000,35, 0x2bbc00,10, 0x2bbc80,3, 0x2bc000,8, 0x2bc024,2, 0x2bc040,2, 0x2bc060,6, 0x2bc080,1, 0x2bc0f0,12, 0x2bc124,2, 0x2bc140,2, 0x2bc160,6, 0x2bc180,1, 0x2bc1f0,12, 0x2bc224,2, 0x2bc240,2, 0x2bc260,6, 0x2bc280,1, 0x2bc2f0,12, 0x2bc324,2, 0x2bc340,2, 0x2bc360,6, 0x2bc380,1, 0x2bc3f0,4, 0x2bc410,4, 0x2bc5f8,2, 0x2bc800,8, 0x2bc824,2, 0x2bc840,2, 0x2bc860,6, 0x2bc880,1, 0x2bc8f0,12, 0x2bc924,2, 0x2bc940,2, 0x2bc960,6, 0x2bc980,1, 0x2bc9f0,12, 0x2bca24,2, 0x2bca40,2, 0x2bca60,6, 0x2bca80,1, 0x2bcaf0,12, 0x2bcb24,2, 0x2bcb40,2, 0x2bcb60,6, 0x2bcb80,1, 0x2bcbf0,4, 0x2bcc10,4, 0x2bcdf8,2, 0x2bd004,1, 0x2bd040,16, 0x2bd204,3, 0x2bd214,1, 0x2bd21c,1, 0x2bd224,1, 0x2bd22c,1, 0x2bd400,56, 0x2bd4e4,6, 0x2bd600,37, 0x2bd700,17, 0x2bd748,2, 0x2bd780,16, 0x2bd800,25, 0x2bd880,1, 0x2bd888,8, 0x2bd8c0,6, 0x2bd8e0,1, 0x2bd8e8,2, 0x2bd904,26, 0x2bda00,4, 0x2bdb00,61, 0x2bdc00,4, 0x2bdc40,12, 0x2bdc80,5, 0x2bdca0,1, 0x2bdcb0,1, 0x2be000,3, 0x2be010,3, 0x2be020,3, 0x2be030,3, 0x2be040,3, 0x2be050,3, 0x2be060,3, 0x2be070,3, 0x2be080,16, 0x2be0c4,1, 0x2be0d0,5, 0x2be100,1, 0x2be140,3, 0x2be160,8, 0x2be184,17, 0x2be2c0,1, 0x2be2c8,14, 0x2c0000,1, 0x2c0008,3, 0x2c0018,3, 0x2c0030,7, 0x2c0070,2, 0x2c0080,1, 0x2c0088,3, 0x2c0098,3, 0x2c00b0,7, 0x2c00f0,2, 0x2c0100,1, 0x2c0108,3, 0x2c0118,3, 0x2c0130,7, 0x2c0170,2, 0x2c0180,1, 0x2c0188,3, 0x2c0198,3, 0x2c01b0,7, 0x2c01f0,2, 0x2c0200,3, 0x2c0210,3, 0x2c0220,3, 0x2c0230,3, 0x2c0240,10, 0x2c026c,1, 0x2c0280,28, 0x2c02f4,8, 0x2c0320,27, 0x2c03dc,43, 0x2c0490,3, 0x2c04a0,2, 0x2c04b0,3, 0x2c04c0,2, 0x2c04d0,3, 0x2c04e0,2, 0x2c04f0,3, 0x2c0500,2, 0x2c0510,3, 0x2c0520,2, 0x2c0530,3, 0x2c0540,2, 0x2c0550,3, 0x2c0560,2, 0x2c0570,3, 0x2c0580,64, 0x2c0780,18, 0x2c07d0,4, 0x2c0800,13, 0x2c0880,1, 0x2c0888,8, 0x2c08c0,6, 0x2c08e0,1, 0x2c08e8,2, 0x2c0904,43, 0x2c0a00,4, 0x2c0a14,1, 0x2c0a1c,1, 0x2c0a24,1, 0x2c0a2c,1, 0x2c0a34,1, 0x2c0a3c,7, 0x2c0a60,6, 0x2c0a80,36, 0x2c0b40,15, 0x2c0b80,4, 0x2c0bc0,11, 0x2c0c00,9, 0x2c0c40,9, 0x2c0c80,9, 0x2c0cc0,9, 0x2c0d00,16, 0x2c0d54,1, 0x2c0d5c,1, 0x2c0d64,1, 0x2c0d6c,1, 0x2c0d80,26, 0x2c0e00,26, 0x2c0e80,26, 0x2c0f00,26, 0x2c1000,1, 0x2c1008,3, 0x2c1018,3, 0x2c1030,7, 0x2c1070,2, 0x2c1080,1, 0x2c1088,3, 0x2c1098,3, 0x2c10b0,7, 0x2c10f0,2, 0x2c1100,1, 0x2c1108,3, 0x2c1118,3, 0x2c1130,7, 0x2c1170,2, 0x2c1180,1, 0x2c1188,3, 0x2c1198,3, 0x2c11b0,7, 0x2c11f0,2, 0x2c1200,3, 0x2c1210,3, 0x2c1220,3, 0x2c1230,3, 0x2c1240,10, 0x2c126c,1, 0x2c1280,28, 0x2c12f4,8, 0x2c1320,27, 0x2c13dc,43, 0x2c1490,3, 0x2c14a0,2, 0x2c14b0,3, 0x2c14c0,2, 0x2c14d0,3, 0x2c14e0,2, 0x2c14f0,3, 0x2c1500,2, 0x2c1510,3, 0x2c1520,2, 0x2c1530,3, 0x2c1540,2, 0x2c1550,3, 0x2c1560,2, 0x2c1570,3, 0x2c1580,64, 0x2c1780,18, 0x2c17d0,4, 0x2c1800,13, 0x2c1880,1, 0x2c1888,8, 0x2c18c0,6, 0x2c18e0,1, 0x2c18e8,2, 0x2c1904,43, 0x2c1a00,4, 0x2c1a14,1, 0x2c1a1c,1, 0x2c1a24,1, 0x2c1a2c,1, 0x2c1a34,1, 0x2c1a3c,7, 0x2c1a60,6, 0x2c1a80,36, 0x2c1b40,15, 0x2c1b80,4, 0x2c1bc0,11, 0x2c1c00,9, 0x2c1c40,9, 0x2c1c80,9, 0x2c1cc0,9, 0x2c1d00,16, 0x2c1d54,1, 0x2c1d5c,1, 0x2c1d64,1, 0x2c1d6c,1, 0x2c1d80,26, 0x2c1e00,26, 0x2c1e80,26, 0x2c1f00,26, 0x2c2000,1, 0x2c200c,4, 0x2c2020,4, 0x2c2038,3, 0x2c20a8,38, 0x2c2180,64, 0x2c22c0,8, 0x2c22f8,317, 0x2c2804,1, 0x2c2810,6, 0x2c2844,1, 0x2c2850,6, 0x2c2884,1, 0x2c2894,5, 0x2c28c4,1, 0x2c28d4,5, 0x2c2904,1, 0x2c292c,21, 0x2c2984,1, 0x2c29ac,21, 0x2c2a04,1, 0x2c2a0c,1, 0x2c2a14,1, 0x2c2a1c,1, 0x2c2a24,1, 0x2c2a2c,1, 0x2c2a34,1, 0x2c2a3c,13, 0x2c2a78,8, 0x2c2b04,5, 0x2c2b24,5, 0x2c2b44,3, 0x2c2b54,1, 0x2c2b60,3, 0x2c2b70,5, 0x2c2b88,5, 0x2c2bc0,8, 0x2c3000,34, 0x2c3100,13, 0x2c3140,15, 0x2c3180,40, 0x2c3240,11, 0x2c3280,11, 0x2c3300,10, 0x2c3380,4, 0x2c33c0,3, 0x2c33d0,6, 0x2c3400,28, 0x2c3480,27, 0x2c3500,20, 0x2c3580,19, 0x2c4000,19, 0x2c4c00,10, 0x2c4c80,3, 0x2c8000,3, 0x2c8010,1, 0x2c8030,13, 0x2c806c,4, 0x2c8100,40, 0x2c81fc,4, 0x2c8210,1, 0x2c8230,13, 0x2c826c,4, 0x2c8300,40, 0x2c83fc,4, 0x2c8410,1, 0x2c8430,13, 0x2c846c,4, 0x2c8500,40, 0x2c85fc,4, 0x2c8610,1, 0x2c8630,13, 0x2c866c,4, 0x2c8700,40, 0x2c87fc,4, 0x2c8810,1, 0x2c8830,13, 0x2c886c,4, 0x2c8900,40, 0x2c89fc,4, 0x2c8a10,1, 0x2c8a30,13, 0x2c8a6c,4, 0x2c8b00,40, 0x2c8bfc,4, 0x2c8c10,1, 0x2c8c30,13, 0x2c8c6c,4, 0x2c8d00,40, 0x2c8dfc,4, 0x2c8e10,1, 0x2c8e30,13, 0x2c8e6c,4, 0x2c8f00,40, 0x2c8ffc,20, 0x2c9c00,10, 0x2c9c80,3, 0x2ca000,6, 0x2ca01c,12, 0x2ca080,1, 0x2ca088,1, 0x2ca090,2, 0x2ca0a0,4, 0x2ca100,1, 0x2ca10c,2, 0x2ca11c,2, 0x2ca12c,2, 0x2ca13c,2, 0x2ca14c,2, 0x2ca15c,2, 0x2ca16c,2, 0x2ca17c,3, 0x2ca18c,1, 0x2ca200,43, 0x2ca300,7, 0x2ca320,2, 0x2ca32c,1, 0x2ca380,10, 0x2ca3c0,1, 0x2ca400,109, 0x2ca5c0,5, 0x2ca600,109, 0x2ca7c0,5, 0x2ca800,3, 0x2ca814,16, 0x2ca874,1, 0x2ca880,3, 0x2ca894,16, 0x2ca8f4,1, 0x2ca900,3, 0x2ca914,16, 0x2ca974,1, 0x2ca980,3, 0x2ca994,16, 0x2ca9f4,1, 0x2caa00,3, 0x2caa14,16, 0x2caa74,1, 0x2caa80,3, 0x2caa94,16, 0x2caaf4,1, 0x2cab00,3, 0x2cab14,16, 0x2cab74,1, 0x2cab80,3, 0x2cab94,16, 0x2cabf4,1, 0x2cac00,10, 0x2cac40,10, 0x2cac80,10, 0x2cacc0,10, 0x2cad00,1, 0x2cae00,1, 0x2cae80,16, 0x2caf00,6, 0x2caf20,6, 0x2caf40,6, 0x2caf60,6, 0x2caf80,6, 0x2cafa0,6, 0x2cafc0,6, 0x2cafe0,6, 0x2cb000,60, 0x2cb100,60, 0x2cb200,31, 0x2cb400,60, 0x2cb500,60, 0x2cb600,31, 0x2cb800,4, 0x2cb900,53, 0x2cba00,12, 0x2cc000,25, 0x2cc080,1, 0x2cc088,8, 0x2cc0c0,6, 0x2cc0e0,1, 0x2cc0e8,2, 0x2cc104,5, 0x2cc200,11, 0x2cc240,1, 0x2cc248,1, 0x2cc400,4, 0x2d0000,2, 0x2d0010,41, 0x2d00b8,3, 0x2d0100,9, 0x2d0128,1, 0x2d0140,9, 0x2d0168,1, 0x2d0180,6, 0x2d01a0,6, 0x2d01c0,6, 0x2d01e0,4, 0x2d0200,2, 0x2d0210,41, 0x2d02b8,3, 0x2d0300,9, 0x2d0328,1, 0x2d0340,9, 0x2d0368,1, 0x2d0380,6, 0x2d03a0,6, 0x2d03c0,6, 0x2d03e0,4, 0x2d0400,9, 0x2d0428,1, 0x2d0440,2, 0x2d044c,3, 0x2d0464,1, 0x2d0474,30, 0x2d0504,1, 0x2d052c,53, 0x2d0604,1, 0x2d0670,36, 0x2d0708,2, 0x2d0800,3, 0x2d0814,10, 0x2d0840,11, 0x2d0870,35, 0x2d0900,8, 0x2d0924,5, 0x2d0980,2, 0x2d098c,2, 0x2d09a0,2, 0x2d09c0,1, 0x2d0a00,12, 0x2d0a34,22, 0x2d0ac0,7, 0x2d0b00,8, 0x2d0b24,5, 0x2d0b80,2, 0x2d0b8c,2, 0x2d0ba0,2, 0x2d0bc0,1, 0x2d0c00,12, 0x2d0c40,12, 0x2d0c80,12, 0x2d0cc0,12, 0x2d0d00,12, 0x2d0d40,12, 0x2d0d80,12, 0x2d0dc0,12, 0x2d0e00,1, 0x2d0e08,13, 0x2d0e40,12, 0x2d0e80,3, 0x2d0f00,7, 0x2d0f44,8, 0x2d0f80,6, 0x2d0fa0,2, 0x2d1000,9, 0x2d1040,9, 0x2d1080,9, 0x2d10c0,9, 0x2d1100,1, 0x2d1108,5, 0x2d1120,2, 0x2d1200,8, 0x2d1240,4, 0x2d1260,8, 0x2d1300,8, 0x2d1330,2, 0x2d1340,7, 0x2d1380,3, 0x2d1390,3, 0x2d13a0,3, 0x2d13b0,3, 0x2d13c0,5, 0x2d1400,69, 0x2d1600,4, 0x2d1640,13, 0x2d1680,7, 0x2d16a0,5, 0x2d16c0,1, 0x2d1800,9, 0x2d1840,9, 0x2d1880,9, 0x2d18c0,9, 0x2d1900,1, 0x2d1908,5, 0x2d1920,2, 0x2d1a00,8, 0x2d1a40,4, 0x2d1a60,8, 0x2d1b00,8, 0x2d1b30,2, 0x2d1b40,7, 0x2d1b80,3, 0x2d1b90,3, 0x2d1ba0,3, 0x2d1bb0,3, 0x2d1bc0,5, 0x2d1c00,69, 0x2d1e00,4, 0x2d1e40,13, 0x2d1e80,7, 0x2d1ea0,5, 0x2d1ec0,1, 0x2d2000,25, 0x2d2080,1, 0x2d2088,8, 0x2d20c0,6, 0x2d20e0,1, 0x2d20e8,2, 0x2d2104,7, 0x2d2200,11, 0x2d2240,1, 0x2d2248,1, 0x2d2408,2, 0x2d3000,35, 0x2d3c00,10, 0x2d3c80,3, 0x2d4000,8, 0x2d4024,2, 0x2d4040,2, 0x2d4060,6, 0x2d4080,1, 0x2d40f0,12, 0x2d4124,2, 0x2d4140,2, 0x2d4160,6, 0x2d4180,1, 0x2d41f0,12, 0x2d4224,2, 0x2d4240,2, 0x2d4260,6, 0x2d4280,1, 0x2d42f0,12, 0x2d4324,2, 0x2d4340,2, 0x2d4360,6, 0x2d4380,1, 0x2d43f0,4, 0x2d4410,4, 0x2d45f8,2, 0x2d4800,8, 0x2d4824,2, 0x2d4840,2, 0x2d4860,6, 0x2d4880,1, 0x2d48f0,12, 0x2d4924,2, 0x2d4940,2, 0x2d4960,6, 0x2d4980,1, 0x2d49f0,12, 0x2d4a24,2, 0x2d4a40,2, 0x2d4a60,6, 0x2d4a80,1, 0x2d4af0,12, 0x2d4b24,2, 0x2d4b40,2, 0x2d4b60,6, 0x2d4b80,1, 0x2d4bf0,4, 0x2d4c10,4, 0x2d4df8,2, 0x2d5004,1, 0x2d5040,16, 0x2d5204,3, 0x2d5214,1, 0x2d521c,1, 0x2d5224,1, 0x2d522c,1, 0x2d5400,56, 0x2d54e4,6, 0x2d5600,37, 0x2d5700,17, 0x2d5748,2, 0x2d5780,16, 0x2d5800,25, 0x2d5880,1, 0x2d5888,8, 0x2d58c0,6, 0x2d58e0,1, 0x2d58e8,2, 0x2d5904,26, 0x2d5a00,4, 0x2d5b00,61, 0x2d5c00,4, 0x2d5c40,12, 0x2d5c80,5, 0x2d5ca0,1, 0x2d5cb0,1, 0x2d6000,3, 0x2d6010,3, 0x2d6020,3, 0x2d6030,3, 0x2d6040,3, 0x2d6050,3, 0x2d6060,3, 0x2d6070,3, 0x2d6080,16, 0x2d60c4,1, 0x2d60d0,5, 0x2d6100,1, 0x2d6140,3, 0x2d6160,8, 0x2d6184,17, 0x2d62c0,1, 0x2d62c8,14, 0x2d8000,1, 0x2d8008,3, 0x2d8018,3, 0x2d8030,7, 0x2d8070,2, 0x2d8080,1, 0x2d8088,3, 0x2d8098,3, 0x2d80b0,7, 0x2d80f0,2, 0x2d8100,1, 0x2d8108,3, 0x2d8118,3, 0x2d8130,7, 0x2d8170,2, 0x2d8180,1, 0x2d8188,3, 0x2d8198,3, 0x2d81b0,7, 0x2d81f0,2, 0x2d8200,3, 0x2d8210,3, 0x2d8220,3, 0x2d8230,3, 0x2d8240,10, 0x2d826c,1, 0x2d8280,28, 0x2d82f4,8, 0x2d8320,27, 0x2d83dc,43, 0x2d8490,3, 0x2d84a0,2, 0x2d84b0,3, 0x2d84c0,2, 0x2d84d0,3, 0x2d84e0,2, 0x2d84f0,3, 0x2d8500,2, 0x2d8510,3, 0x2d8520,2, 0x2d8530,3, 0x2d8540,2, 0x2d8550,3, 0x2d8560,2, 0x2d8570,3, 0x2d8580,64, 0x2d8780,18, 0x2d87d0,4, 0x2d8800,13, 0x2d8880,1, 0x2d8888,8, 0x2d88c0,6, 0x2d88e0,1, 0x2d88e8,2, 0x2d8904,43, 0x2d8a00,4, 0x2d8a14,1, 0x2d8a1c,1, 0x2d8a24,1, 0x2d8a2c,1, 0x2d8a34,1, 0x2d8a3c,7, 0x2d8a60,6, 0x2d8a80,36, 0x2d8b40,15, 0x2d8b80,4, 0x2d8bc0,11, 0x2d8c00,9, 0x2d8c40,9, 0x2d8c80,9, 0x2d8cc0,9, 0x2d8d00,16, 0x2d8d54,1, 0x2d8d5c,1, 0x2d8d64,1, 0x2d8d6c,1, 0x2d8d80,26, 0x2d8e00,26, 0x2d8e80,26, 0x2d8f00,26, 0x2d9000,1, 0x2d9008,3, 0x2d9018,3, 0x2d9030,7, 0x2d9070,2, 0x2d9080,1, 0x2d9088,3, 0x2d9098,3, 0x2d90b0,7, 0x2d90f0,2, 0x2d9100,1, 0x2d9108,3, 0x2d9118,3, 0x2d9130,7, 0x2d9170,2, 0x2d9180,1, 0x2d9188,3, 0x2d9198,3, 0x2d91b0,7, 0x2d91f0,2, 0x2d9200,3, 0x2d9210,3, 0x2d9220,3, 0x2d9230,3, 0x2d9240,10, 0x2d926c,1, 0x2d9280,28, 0x2d92f4,8, 0x2d9320,27, 0x2d93dc,43, 0x2d9490,3, 0x2d94a0,2, 0x2d94b0,3, 0x2d94c0,2, 0x2d94d0,3, 0x2d94e0,2, 0x2d94f0,3, 0x2d9500,2, 0x2d9510,3, 0x2d9520,2, 0x2d9530,3, 0x2d9540,2, 0x2d9550,3, 0x2d9560,2, 0x2d9570,3, 0x2d9580,64, 0x2d9780,18, 0x2d97d0,4, 0x2d9800,13, 0x2d9880,1, 0x2d9888,8, 0x2d98c0,6, 0x2d98e0,1, 0x2d98e8,2, 0x2d9904,43, 0x2d9a00,4, 0x2d9a14,1, 0x2d9a1c,1, 0x2d9a24,1, 0x2d9a2c,1, 0x2d9a34,1, 0x2d9a3c,7, 0x2d9a60,6, 0x2d9a80,36, 0x2d9b40,15, 0x2d9b80,4, 0x2d9bc0,11, 0x2d9c00,9, 0x2d9c40,9, 0x2d9c80,9, 0x2d9cc0,9, 0x2d9d00,16, 0x2d9d54,1, 0x2d9d5c,1, 0x2d9d64,1, 0x2d9d6c,1, 0x2d9d80,26, 0x2d9e00,26, 0x2d9e80,26, 0x2d9f00,26, 0x2da000,1, 0x2da00c,4, 0x2da020,4, 0x2da038,3, 0x2da0a8,38, 0x2da180,64, 0x2da2c0,8, 0x2da2f8,317, 0x2da804,1, 0x2da810,6, 0x2da844,1, 0x2da850,6, 0x2da884,1, 0x2da894,5, 0x2da8c4,1, 0x2da8d4,5, 0x2da904,1, 0x2da92c,21, 0x2da984,1, 0x2da9ac,21, 0x2daa04,1, 0x2daa0c,1, 0x2daa14,1, 0x2daa1c,1, 0x2daa24,1, 0x2daa2c,1, 0x2daa34,1, 0x2daa3c,13, 0x2daa78,8, 0x2dab04,5, 0x2dab24,5, 0x2dab44,3, 0x2dab54,1, 0x2dab60,3, 0x2dab70,5, 0x2dab88,5, 0x2dabc0,8, 0x2db000,34, 0x2db100,13, 0x2db140,15, 0x2db180,40, 0x2db240,11, 0x2db280,11, 0x2db300,10, 0x2db380,4, 0x2db3c0,3, 0x2db3d0,6, 0x2db400,28, 0x2db480,27, 0x2db500,20, 0x2db580,19, 0x2dc000,19, 0x2dcc00,10, 0x2dcc80,3, 0x2e0000,3, 0x2e0010,1, 0x2e0030,13, 0x2e006c,4, 0x2e0100,40, 0x2e01fc,4, 0x2e0210,1, 0x2e0230,13, 0x2e026c,4, 0x2e0300,40, 0x2e03fc,4, 0x2e0410,1, 0x2e0430,13, 0x2e046c,4, 0x2e0500,40, 0x2e05fc,4, 0x2e0610,1, 0x2e0630,13, 0x2e066c,4, 0x2e0700,40, 0x2e07fc,4, 0x2e0810,1, 0x2e0830,13, 0x2e086c,4, 0x2e0900,40, 0x2e09fc,4, 0x2e0a10,1, 0x2e0a30,13, 0x2e0a6c,4, 0x2e0b00,40, 0x2e0bfc,4, 0x2e0c10,1, 0x2e0c30,13, 0x2e0c6c,4, 0x2e0d00,40, 0x2e0dfc,4, 0x2e0e10,1, 0x2e0e30,13, 0x2e0e6c,4, 0x2e0f00,40, 0x2e0ffc,20, 0x2e1c00,10, 0x2e1c80,3, 0x2e2000,6, 0x2e201c,12, 0x2e2080,1, 0x2e2088,1, 0x2e2090,2, 0x2e20a0,4, 0x2e2100,1, 0x2e210c,2, 0x2e211c,2, 0x2e212c,2, 0x2e213c,2, 0x2e214c,2, 0x2e215c,2, 0x2e216c,2, 0x2e217c,3, 0x2e218c,1, 0x2e2200,43, 0x2e2300,7, 0x2e2320,2, 0x2e232c,1, 0x2e2380,10, 0x2e23c0,1, 0x2e2400,109, 0x2e25c0,5, 0x2e2600,109, 0x2e27c0,5, 0x2e2800,3, 0x2e2814,16, 0x2e2874,1, 0x2e2880,3, 0x2e2894,16, 0x2e28f4,1, 0x2e2900,3, 0x2e2914,16, 0x2e2974,1, 0x2e2980,3, 0x2e2994,16, 0x2e29f4,1, 0x2e2a00,3, 0x2e2a14,16, 0x2e2a74,1, 0x2e2a80,3, 0x2e2a94,16, 0x2e2af4,1, 0x2e2b00,3, 0x2e2b14,16, 0x2e2b74,1, 0x2e2b80,3, 0x2e2b94,16, 0x2e2bf4,1, 0x2e2c00,10, 0x2e2c40,10, 0x2e2c80,10, 0x2e2cc0,10, 0x2e2d00,1, 0x2e2e00,1, 0x2e2e80,16, 0x2e2f00,6, 0x2e2f20,6, 0x2e2f40,6, 0x2e2f60,6, 0x2e2f80,6, 0x2e2fa0,6, 0x2e2fc0,6, 0x2e2fe0,6, 0x2e3000,60, 0x2e3100,60, 0x2e3200,31, 0x2e3400,60, 0x2e3500,60, 0x2e3600,31, 0x2e3800,4, 0x2e3900,53, 0x2e3a00,12, 0x2e4000,25, 0x2e4080,1, 0x2e4088,8, 0x2e40c0,6, 0x2e40e0,1, 0x2e40e8,2, 0x2e4104,5, 0x2e4200,11, 0x2e4240,1, 0x2e4248,1, 0x2e4400,4, 0x2e8000,2, 0x2e8010,41, 0x2e80b8,3, 0x2e8100,9, 0x2e8128,1, 0x2e8140,9, 0x2e8168,1, 0x2e8180,6, 0x2e81a0,6, 0x2e81c0,6, 0x2e81e0,4, 0x2e8200,2, 0x2e8210,41, 0x2e82b8,3, 0x2e8300,9, 0x2e8328,1, 0x2e8340,9, 0x2e8368,1, 0x2e8380,6, 0x2e83a0,6, 0x2e83c0,6, 0x2e83e0,4, 0x2e8400,9, 0x2e8428,1, 0x2e8440,2, 0x2e844c,3, 0x2e8464,1, 0x2e8474,30, 0x2e8504,1, 0x2e852c,53, 0x2e8604,1, 0x2e8670,36, 0x2e8708,2, 0x2e8800,3, 0x2e8814,10, 0x2e8840,11, 0x2e8870,35, 0x2e8900,8, 0x2e8924,5, 0x2e8980,2, 0x2e898c,2, 0x2e89a0,2, 0x2e89c0,1, 0x2e8a00,12, 0x2e8a34,22, 0x2e8ac0,7, 0x2e8b00,8, 0x2e8b24,5, 0x2e8b80,2, 0x2e8b8c,2, 0x2e8ba0,2, 0x2e8bc0,1, 0x2e8c00,12, 0x2e8c40,12, 0x2e8c80,12, 0x2e8cc0,12, 0x2e8d00,12, 0x2e8d40,12, 0x2e8d80,12, 0x2e8dc0,12, 0x2e8e00,1, 0x2e8e08,13, 0x2e8e40,12, 0x2e8e80,3, 0x2e8f00,7, 0x2e8f44,8, 0x2e8f80,6, 0x2e8fa0,2, 0x2e9000,9, 0x2e9040,9, 0x2e9080,9, 0x2e90c0,9, 0x2e9100,1, 0x2e9108,5, 0x2e9120,2, 0x2e9200,8, 0x2e9240,4, 0x2e9260,8, 0x2e9300,8, 0x2e9330,2, 0x2e9340,7, 0x2e9380,3, 0x2e9390,3, 0x2e93a0,3, 0x2e93b0,3, 0x2e93c0,5, 0x2e9400,69, 0x2e9600,4, 0x2e9640,13, 0x2e9680,7, 0x2e96a0,5, 0x2e96c0,1, 0x2e9800,9, 0x2e9840,9, 0x2e9880,9, 0x2e98c0,9, 0x2e9900,1, 0x2e9908,5, 0x2e9920,2, 0x2e9a00,8, 0x2e9a40,4, 0x2e9a60,8, 0x2e9b00,8, 0x2e9b30,2, 0x2e9b40,7, 0x2e9b80,3, 0x2e9b90,3, 0x2e9ba0,3, 0x2e9bb0,3, 0x2e9bc0,5, 0x2e9c00,69, 0x2e9e00,4, 0x2e9e40,13, 0x2e9e80,7, 0x2e9ea0,5, 0x2e9ec0,1, 0x2ea000,25, 0x2ea080,1, 0x2ea088,8, 0x2ea0c0,6, 0x2ea0e0,1, 0x2ea0e8,2, 0x2ea104,7, 0x2ea200,11, 0x2ea240,1, 0x2ea248,1, 0x2ea408,2, 0x2eb000,35, 0x2ebc00,10, 0x2ebc80,3, 0x2ec000,8, 0x2ec024,2, 0x2ec040,2, 0x2ec060,6, 0x2ec080,1, 0x2ec0f0,12, 0x2ec124,2, 0x2ec140,2, 0x2ec160,6, 0x2ec180,1, 0x2ec1f0,12, 0x2ec224,2, 0x2ec240,2, 0x2ec260,6, 0x2ec280,1, 0x2ec2f0,12, 0x2ec324,2, 0x2ec340,2, 0x2ec360,6, 0x2ec380,1, 0x2ec3f0,4, 0x2ec410,4, 0x2ec5f8,2, 0x2ec800,8, 0x2ec824,2, 0x2ec840,2, 0x2ec860,6, 0x2ec880,1, 0x2ec8f0,12, 0x2ec924,2, 0x2ec940,2, 0x2ec960,6, 0x2ec980,1, 0x2ec9f0,12, 0x2eca24,2, 0x2eca40,2, 0x2eca60,6, 0x2eca80,1, 0x2ecaf0,12, 0x2ecb24,2, 0x2ecb40,2, 0x2ecb60,6, 0x2ecb80,1, 0x2ecbf0,4, 0x2ecc10,4, 0x2ecdf8,2, 0x2ed004,1, 0x2ed040,16, 0x2ed204,3, 0x2ed214,1, 0x2ed21c,1, 0x2ed224,1, 0x2ed22c,1, 0x2ed400,56, 0x2ed4e4,6, 0x2ed600,37, 0x2ed700,17, 0x2ed748,2, 0x2ed780,16, 0x2ed800,25, 0x2ed880,1, 0x2ed888,8, 0x2ed8c0,6, 0x2ed8e0,1, 0x2ed8e8,2, 0x2ed904,26, 0x2eda00,4, 0x2edb00,61, 0x2edc00,4, 0x2edc40,12, 0x2edc80,5, 0x2edca0,1, 0x2edcb0,1, 0x2ee000,3, 0x2ee010,3, 0x2ee020,3, 0x2ee030,3, 0x2ee040,3, 0x2ee050,3, 0x2ee060,3, 0x2ee070,3, 0x2ee080,16, 0x2ee0c4,1, 0x2ee0d0,5, 0x2ee100,1, 0x2ee140,3, 0x2ee160,8, 0x2ee184,17, 0x2ee2c0,1, 0x2ee2c8,14, 0x2f0000,1, 0x2f0008,3, 0x2f0018,3, 0x2f0030,7, 0x2f0070,2, 0x2f0080,1, 0x2f0088,3, 0x2f0098,3, 0x2f00b0,7, 0x2f00f0,2, 0x2f0100,1, 0x2f0108,3, 0x2f0118,3, 0x2f0130,7, 0x2f0170,2, 0x2f0180,1, 0x2f0188,3, 0x2f0198,3, 0x2f01b0,7, 0x2f01f0,2, 0x2f0200,3, 0x2f0210,3, 0x2f0220,3, 0x2f0230,3, 0x2f0240,10, 0x2f026c,1, 0x2f0280,28, 0x2f02f4,8, 0x2f0320,27, 0x2f03dc,43, 0x2f0490,3, 0x2f04a0,2, 0x2f04b0,3, 0x2f04c0,2, 0x2f04d0,3, 0x2f04e0,2, 0x2f04f0,3, 0x2f0500,2, 0x2f0510,3, 0x2f0520,2, 0x2f0530,3, 0x2f0540,2, 0x2f0550,3, 0x2f0560,2, 0x2f0570,3, 0x2f0580,64, 0x2f0780,18, 0x2f07d0,4, 0x2f0800,13, 0x2f0880,1, 0x2f0888,8, 0x2f08c0,6, 0x2f08e0,1, 0x2f08e8,2, 0x2f0904,43, 0x2f0a00,4, 0x2f0a14,1, 0x2f0a1c,1, 0x2f0a24,1, 0x2f0a2c,1, 0x2f0a34,1, 0x2f0a3c,7, 0x2f0a60,6, 0x2f0a80,36, 0x2f0b40,15, 0x2f0b80,4, 0x2f0bc0,11, 0x2f0c00,9, 0x2f0c40,9, 0x2f0c80,9, 0x2f0cc0,9, 0x2f0d00,16, 0x2f0d54,1, 0x2f0d5c,1, 0x2f0d64,1, 0x2f0d6c,1, 0x2f0d80,26, 0x2f0e00,26, 0x2f0e80,26, 0x2f0f00,26, 0x2f1000,1, 0x2f1008,3, 0x2f1018,3, 0x2f1030,7, 0x2f1070,2, 0x2f1080,1, 0x2f1088,3, 0x2f1098,3, 0x2f10b0,7, 0x2f10f0,2, 0x2f1100,1, 0x2f1108,3, 0x2f1118,3, 0x2f1130,7, 0x2f1170,2, 0x2f1180,1, 0x2f1188,3, 0x2f1198,3, 0x2f11b0,7, 0x2f11f0,2, 0x2f1200,3, 0x2f1210,3, 0x2f1220,3, 0x2f1230,3, 0x2f1240,10, 0x2f126c,1, 0x2f1280,28, 0x2f12f4,8, 0x2f1320,27, 0x2f13dc,43, 0x2f1490,3, 0x2f14a0,2, 0x2f14b0,3, 0x2f14c0,2, 0x2f14d0,3, 0x2f14e0,2, 0x2f14f0,3, 0x2f1500,2, 0x2f1510,3, 0x2f1520,2, 0x2f1530,3, 0x2f1540,2, 0x2f1550,3, 0x2f1560,2, 0x2f1570,3, 0x2f1580,64, 0x2f1780,18, 0x2f17d0,4, 0x2f1800,13, 0x2f1880,1, 0x2f1888,8, 0x2f18c0,6, 0x2f18e0,1, 0x2f18e8,2, 0x2f1904,43, 0x2f1a00,4, 0x2f1a14,1, 0x2f1a1c,1, 0x2f1a24,1, 0x2f1a2c,1, 0x2f1a34,1, 0x2f1a3c,7, 0x2f1a60,6, 0x2f1a80,36, 0x2f1b40,15, 0x2f1b80,4, 0x2f1bc0,11, 0x2f1c00,9, 0x2f1c40,9, 0x2f1c80,9, 0x2f1cc0,9, 0x2f1d00,16, 0x2f1d54,1, 0x2f1d5c,1, 0x2f1d64,1, 0x2f1d6c,1, 0x2f1d80,26, 0x2f1e00,26, 0x2f1e80,26, 0x2f1f00,26, 0x2f2000,1, 0x2f200c,4, 0x2f2020,4, 0x2f2038,3, 0x2f20a8,38, 0x2f2180,64, 0x2f22c0,8, 0x2f22f8,317, 0x2f2804,1, 0x2f2810,6, 0x2f2844,1, 0x2f2850,6, 0x2f2884,1, 0x2f2894,5, 0x2f28c4,1, 0x2f28d4,5, 0x2f2904,1, 0x2f292c,21, 0x2f2984,1, 0x2f29ac,21, 0x2f2a04,1, 0x2f2a0c,1, 0x2f2a14,1, 0x2f2a1c,1, 0x2f2a24,1, 0x2f2a2c,1, 0x2f2a34,1, 0x2f2a3c,13, 0x2f2a78,8, 0x2f2b04,5, 0x2f2b24,5, 0x2f2b44,3, 0x2f2b54,1, 0x2f2b60,3, 0x2f2b70,5, 0x2f2b88,5, 0x2f2bc0,8, 0x2f3000,34, 0x2f3100,13, 0x2f3140,15, 0x2f3180,40, 0x2f3240,11, 0x2f3280,11, 0x2f3300,10, 0x2f3380,4, 0x2f33c0,3, 0x2f33d0,6, 0x2f3400,28, 0x2f3480,27, 0x2f3500,20, 0x2f3580,19, 0x2f4000,19, 0x2f4c00,10, 0x2f4c80,3, 0x2f8000,3, 0x2f8010,1, 0x2f8030,13, 0x2f806c,4, 0x2f8100,40, 0x2f81fc,4, 0x2f8210,1, 0x2f8230,13, 0x2f826c,4, 0x2f8300,40, 0x2f83fc,4, 0x2f8410,1, 0x2f8430,13, 0x2f846c,4, 0x2f8500,40, 0x2f85fc,4, 0x2f8610,1, 0x2f8630,13, 0x2f866c,4, 0x2f8700,40, 0x2f87fc,4, 0x2f8810,1, 0x2f8830,13, 0x2f886c,4, 0x2f8900,40, 0x2f89fc,4, 0x2f8a10,1, 0x2f8a30,13, 0x2f8a6c,4, 0x2f8b00,40, 0x2f8bfc,4, 0x2f8c10,1, 0x2f8c30,13, 0x2f8c6c,4, 0x2f8d00,40, 0x2f8dfc,4, 0x2f8e10,1, 0x2f8e30,13, 0x2f8e6c,4, 0x2f8f00,40, 0x2f8ffc,20, 0x2f9c00,10, 0x2f9c80,3, 0x2fa000,6, 0x2fa01c,12, 0x2fa080,1, 0x2fa088,1, 0x2fa090,2, 0x2fa0a0,4, 0x2fa100,1, 0x2fa10c,2, 0x2fa11c,2, 0x2fa12c,2, 0x2fa13c,2, 0x2fa14c,2, 0x2fa15c,2, 0x2fa16c,2, 0x2fa17c,3, 0x2fa18c,1, 0x2fa200,43, 0x2fa300,7, 0x2fa320,2, 0x2fa32c,1, 0x2fa380,10, 0x2fa3c0,1, 0x2fa400,109, 0x2fa5c0,5, 0x2fa600,109, 0x2fa7c0,5, 0x2fa800,3, 0x2fa814,16, 0x2fa874,1, 0x2fa880,3, 0x2fa894,16, 0x2fa8f4,1, 0x2fa900,3, 0x2fa914,16, 0x2fa974,1, 0x2fa980,3, 0x2fa994,16, 0x2fa9f4,1, 0x2faa00,3, 0x2faa14,16, 0x2faa74,1, 0x2faa80,3, 0x2faa94,16, 0x2faaf4,1, 0x2fab00,3, 0x2fab14,16, 0x2fab74,1, 0x2fab80,3, 0x2fab94,16, 0x2fabf4,1, 0x2fac00,10, 0x2fac40,10, 0x2fac80,10, 0x2facc0,10, 0x2fad00,1, 0x2fae00,1, 0x2fae80,16, 0x2faf00,6, 0x2faf20,6, 0x2faf40,6, 0x2faf60,6, 0x2faf80,6, 0x2fafa0,6, 0x2fafc0,6, 0x2fafe0,6, 0x2fb000,60, 0x2fb100,60, 0x2fb200,31, 0x2fb400,60, 0x2fb500,60, 0x2fb600,31, 0x2fb800,4, 0x2fb900,53, 0x2fba00,12, 0x2fc000,25, 0x2fc080,1, 0x2fc088,8, 0x2fc0c0,6, 0x2fc0e0,1, 0x2fc0e8,2, 0x2fc104,5, 0x2fc200,11, 0x2fc240,1, 0x2fc248,1, 0x2fc400,4, 0x300000,2, 0x300010,41, 0x3000b8,3, 0x300100,9, 0x300128,1, 0x300140,9, 0x300168,1, 0x300180,6, 0x3001a0,6, 0x3001c0,6, 0x3001e0,4, 0x300200,2, 0x300210,41, 0x3002b8,3, 0x300300,9, 0x300328,1, 0x300340,9, 0x300368,1, 0x300380,6, 0x3003a0,6, 0x3003c0,6, 0x3003e0,4, 0x300400,9, 0x300428,1, 0x300440,2, 0x30044c,3, 0x300464,1, 0x300474,30, 0x300504,1, 0x30052c,53, 0x300604,1, 0x300670,36, 0x300708,2, 0x300800,3, 0x300814,10, 0x300840,11, 0x300870,35, 0x300900,8, 0x300924,5, 0x300980,2, 0x30098c,2, 0x3009a0,2, 0x3009c0,1, 0x300a00,12, 0x300a34,22, 0x300ac0,7, 0x300b00,8, 0x300b24,5, 0x300b80,2, 0x300b8c,2, 0x300ba0,2, 0x300bc0,1, 0x300c00,12, 0x300c40,12, 0x300c80,12, 0x300cc0,12, 0x300d00,12, 0x300d40,12, 0x300d80,12, 0x300dc0,12, 0x300e00,1, 0x300e08,13, 0x300e40,12, 0x300e80,3, 0x300f00,7, 0x300f44,8, 0x300f80,6, 0x300fa0,2, 0x301000,9, 0x301040,9, 0x301080,9, 0x3010c0,9, 0x301100,1, 0x301108,5, 0x301120,2, 0x301200,8, 0x301240,4, 0x301260,8, 0x301300,8, 0x301330,2, 0x301340,7, 0x301380,3, 0x301390,3, 0x3013a0,3, 0x3013b0,3, 0x3013c0,5, 0x301400,69, 0x301600,4, 0x301640,13, 0x301680,7, 0x3016a0,5, 0x3016c0,1, 0x301800,9, 0x301840,9, 0x301880,9, 0x3018c0,9, 0x301900,1, 0x301908,5, 0x301920,2, 0x301a00,8, 0x301a40,4, 0x301a60,8, 0x301b00,8, 0x301b30,2, 0x301b40,7, 0x301b80,3, 0x301b90,3, 0x301ba0,3, 0x301bb0,3, 0x301bc0,5, 0x301c00,69, 0x301e00,4, 0x301e40,13, 0x301e80,7, 0x301ea0,5, 0x301ec0,1, 0x302000,25, 0x302080,1, 0x302088,8, 0x3020c0,6, 0x3020e0,1, 0x3020e8,2, 0x302104,7, 0x302200,11, 0x302240,1, 0x302248,1, 0x302408,2, 0x303000,35, 0x303c00,10, 0x303c80,3, 0x304000,8, 0x304024,2, 0x304040,2, 0x304060,6, 0x304080,1, 0x3040f0,12, 0x304124,2, 0x304140,2, 0x304160,6, 0x304180,1, 0x3041f0,12, 0x304224,2, 0x304240,2, 0x304260,6, 0x304280,1, 0x3042f0,12, 0x304324,2, 0x304340,2, 0x304360,6, 0x304380,1, 0x3043f0,4, 0x304410,4, 0x3045f8,2, 0x304800,8, 0x304824,2, 0x304840,2, 0x304860,6, 0x304880,1, 0x3048f0,12, 0x304924,2, 0x304940,2, 0x304960,6, 0x304980,1, 0x3049f0,12, 0x304a24,2, 0x304a40,2, 0x304a60,6, 0x304a80,1, 0x304af0,12, 0x304b24,2, 0x304b40,2, 0x304b60,6, 0x304b80,1, 0x304bf0,4, 0x304c10,4, 0x304df8,2, 0x305004,1, 0x305040,16, 0x305204,3, 0x305214,1, 0x30521c,1, 0x305224,1, 0x30522c,1, 0x305400,56, 0x3054e4,6, 0x305600,37, 0x305700,17, 0x305748,2, 0x305780,16, 0x305800,25, 0x305880,1, 0x305888,8, 0x3058c0,6, 0x3058e0,1, 0x3058e8,2, 0x305904,26, 0x305a00,4, 0x305b00,61, 0x305c00,4, 0x305c40,12, 0x305c80,5, 0x305ca0,1, 0x305cb0,1, 0x306000,3, 0x306010,3, 0x306020,3, 0x306030,3, 0x306040,3, 0x306050,3, 0x306060,3, 0x306070,3, 0x306080,16, 0x3060c4,1, 0x3060d0,5, 0x306100,1, 0x306140,3, 0x306160,8, 0x306184,17, 0x3062c0,1, 0x3062c8,14, 0x308000,1, 0x308008,3, 0x308018,3, 0x308030,7, 0x308070,2, 0x308080,1, 0x308088,3, 0x308098,3, 0x3080b0,7, 0x3080f0,2, 0x308100,1, 0x308108,3, 0x308118,3, 0x308130,7, 0x308170,2, 0x308180,1, 0x308188,3, 0x308198,3, 0x3081b0,7, 0x3081f0,2, 0x308200,3, 0x308210,3, 0x308220,3, 0x308230,3, 0x308240,10, 0x30826c,1, 0x308280,28, 0x3082f4,8, 0x308320,27, 0x3083dc,43, 0x308490,3, 0x3084a0,2, 0x3084b0,3, 0x3084c0,2, 0x3084d0,3, 0x3084e0,2, 0x3084f0,3, 0x308500,2, 0x308510,3, 0x308520,2, 0x308530,3, 0x308540,2, 0x308550,3, 0x308560,2, 0x308570,3, 0x308580,64, 0x308780,18, 0x3087d0,4, 0x308800,13, 0x308880,1, 0x308888,8, 0x3088c0,6, 0x3088e0,1, 0x3088e8,2, 0x308904,43, 0x308a00,4, 0x308a14,1, 0x308a1c,1, 0x308a24,1, 0x308a2c,1, 0x308a34,1, 0x308a3c,7, 0x308a60,6, 0x308a80,36, 0x308b40,15, 0x308b80,4, 0x308bc0,11, 0x308c00,9, 0x308c40,9, 0x308c80,9, 0x308cc0,9, 0x308d00,16, 0x308d54,1, 0x308d5c,1, 0x308d64,1, 0x308d6c,1, 0x308d80,26, 0x308e00,26, 0x308e80,26, 0x308f00,26, 0x309000,1, 0x309008,3, 0x309018,3, 0x309030,7, 0x309070,2, 0x309080,1, 0x309088,3, 0x309098,3, 0x3090b0,7, 0x3090f0,2, 0x309100,1, 0x309108,3, 0x309118,3, 0x309130,7, 0x309170,2, 0x309180,1, 0x309188,3, 0x309198,3, 0x3091b0,7, 0x3091f0,2, 0x309200,3, 0x309210,3, 0x309220,3, 0x309230,3, 0x309240,10, 0x30926c,1, 0x309280,28, 0x3092f4,8, 0x309320,27, 0x3093dc,43, 0x309490,3, 0x3094a0,2, 0x3094b0,3, 0x3094c0,2, 0x3094d0,3, 0x3094e0,2, 0x3094f0,3, 0x309500,2, 0x309510,3, 0x309520,2, 0x309530,3, 0x309540,2, 0x309550,3, 0x309560,2, 0x309570,3, 0x309580,64, 0x309780,18, 0x3097d0,4, 0x309800,13, 0x309880,1, 0x309888,8, 0x3098c0,6, 0x3098e0,1, 0x3098e8,2, 0x309904,43, 0x309a00,4, 0x309a14,1, 0x309a1c,1, 0x309a24,1, 0x309a2c,1, 0x309a34,1, 0x309a3c,7, 0x309a60,6, 0x309a80,36, 0x309b40,15, 0x309b80,4, 0x309bc0,11, 0x309c00,9, 0x309c40,9, 0x309c80,9, 0x309cc0,9, 0x309d00,16, 0x309d54,1, 0x309d5c,1, 0x309d64,1, 0x309d6c,1, 0x309d80,26, 0x309e00,26, 0x309e80,26, 0x309f00,26, 0x30a000,1, 0x30a00c,4, 0x30a020,4, 0x30a038,3, 0x30a0a8,38, 0x30a180,64, 0x30a2c0,8, 0x30a2f8,317, 0x30a804,1, 0x30a810,6, 0x30a844,1, 0x30a850,6, 0x30a884,1, 0x30a894,5, 0x30a8c4,1, 0x30a8d4,5, 0x30a904,1, 0x30a92c,21, 0x30a984,1, 0x30a9ac,21, 0x30aa04,1, 0x30aa0c,1, 0x30aa14,1, 0x30aa1c,1, 0x30aa24,1, 0x30aa2c,1, 0x30aa34,1, 0x30aa3c,13, 0x30aa78,8, 0x30ab04,5, 0x30ab24,5, 0x30ab44,3, 0x30ab54,1, 0x30ab60,3, 0x30ab70,5, 0x30ab88,5, 0x30abc0,8, 0x30b000,34, 0x30b100,13, 0x30b140,15, 0x30b180,40, 0x30b240,11, 0x30b280,11, 0x30b300,10, 0x30b380,4, 0x30b3c0,3, 0x30b3d0,6, 0x30b400,28, 0x30b480,27, 0x30b500,20, 0x30b580,19, 0x30c000,19, 0x30cc00,10, 0x30cc80,3, 0x310000,3, 0x310010,1, 0x310030,13, 0x31006c,4, 0x310100,40, 0x3101fc,4, 0x310210,1, 0x310230,13, 0x31026c,4, 0x310300,40, 0x3103fc,4, 0x310410,1, 0x310430,13, 0x31046c,4, 0x310500,40, 0x3105fc,4, 0x310610,1, 0x310630,13, 0x31066c,4, 0x310700,40, 0x3107fc,4, 0x310810,1, 0x310830,13, 0x31086c,4, 0x310900,40, 0x3109fc,4, 0x310a10,1, 0x310a30,13, 0x310a6c,4, 0x310b00,40, 0x310bfc,4, 0x310c10,1, 0x310c30,13, 0x310c6c,4, 0x310d00,40, 0x310dfc,4, 0x310e10,1, 0x310e30,13, 0x310e6c,4, 0x310f00,40, 0x310ffc,20, 0x311c00,10, 0x311c80,3, 0x312000,6, 0x31201c,12, 0x312080,1, 0x312088,1, 0x312090,2, 0x3120a0,4, 0x312100,1, 0x31210c,2, 0x31211c,2, 0x31212c,2, 0x31213c,2, 0x31214c,2, 0x31215c,2, 0x31216c,2, 0x31217c,3, 0x31218c,1, 0x312200,43, 0x312300,7, 0x312320,2, 0x31232c,1, 0x312380,10, 0x3123c0,1, 0x312400,109, 0x3125c0,5, 0x312600,109, 0x3127c0,5, 0x312800,3, 0x312814,16, 0x312874,1, 0x312880,3, 0x312894,16, 0x3128f4,1, 0x312900,3, 0x312914,16, 0x312974,1, 0x312980,3, 0x312994,16, 0x3129f4,1, 0x312a00,3, 0x312a14,16, 0x312a74,1, 0x312a80,3, 0x312a94,16, 0x312af4,1, 0x312b00,3, 0x312b14,16, 0x312b74,1, 0x312b80,3, 0x312b94,16, 0x312bf4,1, 0x312c00,10, 0x312c40,10, 0x312c80,10, 0x312cc0,10, 0x312d00,1, 0x312e00,1, 0x312e80,16, 0x312f00,6, 0x312f20,6, 0x312f40,6, 0x312f60,6, 0x312f80,6, 0x312fa0,6, 0x312fc0,6, 0x312fe0,6, 0x313000,60, 0x313100,60, 0x313200,31, 0x313400,60, 0x313500,60, 0x313600,31, 0x313800,4, 0x313900,53, 0x313a00,12, 0x314000,25, 0x314080,1, 0x314088,8, 0x3140c0,6, 0x3140e0,1, 0x3140e8,2, 0x314104,5, 0x314200,11, 0x314240,1, 0x314248,1, 0x314400,4, 0x318000,2, 0x318010,41, 0x3180b8,3, 0x318100,9, 0x318128,1, 0x318140,9, 0x318168,1, 0x318180,6, 0x3181a0,6, 0x3181c0,6, 0x3181e0,4, 0x318200,2, 0x318210,41, 0x3182b8,3, 0x318300,9, 0x318328,1, 0x318340,9, 0x318368,1, 0x318380,6, 0x3183a0,6, 0x3183c0,6, 0x3183e0,4, 0x318400,9, 0x318428,1, 0x318440,2, 0x31844c,3, 0x318464,1, 0x318474,30, 0x318504,1, 0x31852c,53, 0x318604,1, 0x318670,36, 0x318708,2, 0x318800,3, 0x318814,10, 0x318840,11, 0x318870,35, 0x318900,8, 0x318924,5, 0x318980,2, 0x31898c,2, 0x3189a0,2, 0x3189c0,1, 0x318a00,12, 0x318a34,22, 0x318ac0,7, 0x318b00,8, 0x318b24,5, 0x318b80,2, 0x318b8c,2, 0x318ba0,2, 0x318bc0,1, 0x318c00,12, 0x318c40,12, 0x318c80,12, 0x318cc0,12, 0x318d00,12, 0x318d40,12, 0x318d80,12, 0x318dc0,12, 0x318e00,1, 0x318e08,13, 0x318e40,12, 0x318e80,3, 0x318f00,7, 0x318f44,8, 0x318f80,6, 0x318fa0,2, 0x319000,9, 0x319040,9, 0x319080,9, 0x3190c0,9, 0x319100,1, 0x319108,5, 0x319120,2, 0x319200,8, 0x319240,4, 0x319260,8, 0x319300,8, 0x319330,2, 0x319340,7, 0x319380,3, 0x319390,3, 0x3193a0,3, 0x3193b0,3, 0x3193c0,5, 0x319400,69, 0x319600,4, 0x319640,13, 0x319680,7, 0x3196a0,5, 0x3196c0,1, 0x319800,9, 0x319840,9, 0x319880,9, 0x3198c0,9, 0x319900,1, 0x319908,5, 0x319920,2, 0x319a00,8, 0x319a40,4, 0x319a60,8, 0x319b00,8, 0x319b30,2, 0x319b40,7, 0x319b80,3, 0x319b90,3, 0x319ba0,3, 0x319bb0,3, 0x319bc0,5, 0x319c00,69, 0x319e00,4, 0x319e40,13, 0x319e80,7, 0x319ea0,5, 0x319ec0,1, 0x31a000,25, 0x31a080,1, 0x31a088,8, 0x31a0c0,6, 0x31a0e0,1, 0x31a0e8,2, 0x31a104,7, 0x31a200,11, 0x31a240,1, 0x31a248,1, 0x31a408,2, 0x31b000,35, 0x31bc00,10, 0x31bc80,3, 0x31c000,8, 0x31c024,2, 0x31c040,2, 0x31c060,6, 0x31c080,1, 0x31c0f0,12, 0x31c124,2, 0x31c140,2, 0x31c160,6, 0x31c180,1, 0x31c1f0,12, 0x31c224,2, 0x31c240,2, 0x31c260,6, 0x31c280,1, 0x31c2f0,12, 0x31c324,2, 0x31c340,2, 0x31c360,6, 0x31c380,1, 0x31c3f0,4, 0x31c410,4, 0x31c5f8,2, 0x31c800,8, 0x31c824,2, 0x31c840,2, 0x31c860,6, 0x31c880,1, 0x31c8f0,12, 0x31c924,2, 0x31c940,2, 0x31c960,6, 0x31c980,1, 0x31c9f0,12, 0x31ca24,2, 0x31ca40,2, 0x31ca60,6, 0x31ca80,1, 0x31caf0,12, 0x31cb24,2, 0x31cb40,2, 0x31cb60,6, 0x31cb80,1, 0x31cbf0,4, 0x31cc10,4, 0x31cdf8,2, 0x31d004,1, 0x31d040,16, 0x31d204,3, 0x31d214,1, 0x31d21c,1, 0x31d224,1, 0x31d22c,1, 0x31d400,56, 0x31d4e4,6, 0x31d600,37, 0x31d700,17, 0x31d748,2, 0x31d780,16, 0x31d800,25, 0x31d880,1, 0x31d888,8, 0x31d8c0,6, 0x31d8e0,1, 0x31d8e8,2, 0x31d904,26, 0x31da00,4, 0x31db00,61, 0x31dc00,4, 0x31dc40,12, 0x31dc80,5, 0x31dca0,1, 0x31dcb0,1, 0x31e000,3, 0x31e010,3, 0x31e020,3, 0x31e030,3, 0x31e040,3, 0x31e050,3, 0x31e060,3, 0x31e070,3, 0x31e080,16, 0x31e0c4,1, 0x31e0d0,5, 0x31e100,1, 0x31e140,3, 0x31e160,8, 0x31e184,17, 0x31e2c0,1, 0x31e2c8,14, 0x320000,1, 0x320008,3, 0x320018,3, 0x320030,7, 0x320070,2, 0x320080,1, 0x320088,3, 0x320098,3, 0x3200b0,7, 0x3200f0,2, 0x320100,1, 0x320108,3, 0x320118,3, 0x320130,7, 0x320170,2, 0x320180,1, 0x320188,3, 0x320198,3, 0x3201b0,7, 0x3201f0,2, 0x320200,3, 0x320210,3, 0x320220,3, 0x320230,3, 0x320240,10, 0x32026c,1, 0x320280,28, 0x3202f4,8, 0x320320,27, 0x3203dc,43, 0x320490,3, 0x3204a0,2, 0x3204b0,3, 0x3204c0,2, 0x3204d0,3, 0x3204e0,2, 0x3204f0,3, 0x320500,2, 0x320510,3, 0x320520,2, 0x320530,3, 0x320540,2, 0x320550,3, 0x320560,2, 0x320570,3, 0x320580,64, 0x320780,18, 0x3207d0,4, 0x320800,13, 0x320880,1, 0x320888,8, 0x3208c0,6, 0x3208e0,1, 0x3208e8,2, 0x320904,43, 0x320a00,4, 0x320a14,1, 0x320a1c,1, 0x320a24,1, 0x320a2c,1, 0x320a34,1, 0x320a3c,7, 0x320a60,6, 0x320a80,36, 0x320b40,15, 0x320b80,4, 0x320bc0,11, 0x320c00,9, 0x320c40,9, 0x320c80,9, 0x320cc0,9, 0x320d00,16, 0x320d54,1, 0x320d5c,1, 0x320d64,1, 0x320d6c,1, 0x320d80,26, 0x320e00,26, 0x320e80,26, 0x320f00,26, 0x321000,1, 0x321008,3, 0x321018,3, 0x321030,7, 0x321070,2, 0x321080,1, 0x321088,3, 0x321098,3, 0x3210b0,7, 0x3210f0,2, 0x321100,1, 0x321108,3, 0x321118,3, 0x321130,7, 0x321170,2, 0x321180,1, 0x321188,3, 0x321198,3, 0x3211b0,7, 0x3211f0,2, 0x321200,3, 0x321210,3, 0x321220,3, 0x321230,3, 0x321240,10, 0x32126c,1, 0x321280,28, 0x3212f4,8, 0x321320,27, 0x3213dc,43, 0x321490,3, 0x3214a0,2, 0x3214b0,3, 0x3214c0,2, 0x3214d0,3, 0x3214e0,2, 0x3214f0,3, 0x321500,2, 0x321510,3, 0x321520,2, 0x321530,3, 0x321540,2, 0x321550,3, 0x321560,2, 0x321570,3, 0x321580,64, 0x321780,18, 0x3217d0,4, 0x321800,13, 0x321880,1, 0x321888,8, 0x3218c0,6, 0x3218e0,1, 0x3218e8,2, 0x321904,43, 0x321a00,4, 0x321a14,1, 0x321a1c,1, 0x321a24,1, 0x321a2c,1, 0x321a34,1, 0x321a3c,7, 0x321a60,6, 0x321a80,36, 0x321b40,15, 0x321b80,4, 0x321bc0,11, 0x321c00,9, 0x321c40,9, 0x321c80,9, 0x321cc0,9, 0x321d00,16, 0x321d54,1, 0x321d5c,1, 0x321d64,1, 0x321d6c,1, 0x321d80,26, 0x321e00,26, 0x321e80,26, 0x321f00,26, 0x322000,1, 0x32200c,4, 0x322020,4, 0x322038,3, 0x3220a8,38, 0x322180,64, 0x3222c0,8, 0x3222f8,317, 0x322804,1, 0x322810,6, 0x322844,1, 0x322850,6, 0x322884,1, 0x322894,5, 0x3228c4,1, 0x3228d4,5, 0x322904,1, 0x32292c,21, 0x322984,1, 0x3229ac,21, 0x322a04,1, 0x322a0c,1, 0x322a14,1, 0x322a1c,1, 0x322a24,1, 0x322a2c,1, 0x322a34,1, 0x322a3c,13, 0x322a78,8, 0x322b04,5, 0x322b24,5, 0x322b44,3, 0x322b54,1, 0x322b60,3, 0x322b70,5, 0x322b88,5, 0x322bc0,8, 0x323000,34, 0x323100,13, 0x323140,15, 0x323180,40, 0x323240,11, 0x323280,11, 0x323300,10, 0x323380,4, 0x3233c0,3, 0x3233d0,6, 0x323400,28, 0x323480,27, 0x323500,20, 0x323580,19, 0x324000,19, 0x324c00,10, 0x324c80,3, 0x328000,3, 0x328010,1, 0x328030,13, 0x32806c,4, 0x328100,40, 0x3281fc,4, 0x328210,1, 0x328230,13, 0x32826c,4, 0x328300,40, 0x3283fc,4, 0x328410,1, 0x328430,13, 0x32846c,4, 0x328500,40, 0x3285fc,4, 0x328610,1, 0x328630,13, 0x32866c,4, 0x328700,40, 0x3287fc,4, 0x328810,1, 0x328830,13, 0x32886c,4, 0x328900,40, 0x3289fc,4, 0x328a10,1, 0x328a30,13, 0x328a6c,4, 0x328b00,40, 0x328bfc,4, 0x328c10,1, 0x328c30,13, 0x328c6c,4, 0x328d00,40, 0x328dfc,4, 0x328e10,1, 0x328e30,13, 0x328e6c,4, 0x328f00,40, 0x328ffc,20, 0x329c00,10, 0x329c80,3, 0x32a000,6, 0x32a01c,12, 0x32a080,1, 0x32a088,1, 0x32a090,2, 0x32a0a0,4, 0x32a100,1, 0x32a10c,2, 0x32a11c,2, 0x32a12c,2, 0x32a13c,2, 0x32a14c,2, 0x32a15c,2, 0x32a16c,2, 0x32a17c,3, 0x32a18c,1, 0x32a200,43, 0x32a300,7, 0x32a320,2, 0x32a32c,1, 0x32a380,10, 0x32a3c0,1, 0x32a400,109, 0x32a5c0,5, 0x32a600,109, 0x32a7c0,5, 0x32a800,3, 0x32a814,16, 0x32a874,1, 0x32a880,3, 0x32a894,16, 0x32a8f4,1, 0x32a900,3, 0x32a914,16, 0x32a974,1, 0x32a980,3, 0x32a994,16, 0x32a9f4,1, 0x32aa00,3, 0x32aa14,16, 0x32aa74,1, 0x32aa80,3, 0x32aa94,16, 0x32aaf4,1, 0x32ab00,3, 0x32ab14,16, 0x32ab74,1, 0x32ab80,3, 0x32ab94,16, 0x32abf4,1, 0x32ac00,10, 0x32ac40,10, 0x32ac80,10, 0x32acc0,10, 0x32ad00,1, 0x32ae00,1, 0x32ae80,16, 0x32af00,6, 0x32af20,6, 0x32af40,6, 0x32af60,6, 0x32af80,6, 0x32afa0,6, 0x32afc0,6, 0x32afe0,6, 0x32b000,60, 0x32b100,60, 0x32b200,31, 0x32b400,60, 0x32b500,60, 0x32b600,31, 0x32b800,4, 0x32b900,53, 0x32ba00,12, 0x32c000,25, 0x32c080,1, 0x32c088,8, 0x32c0c0,6, 0x32c0e0,1, 0x32c0e8,2, 0x32c104,5, 0x32c200,11, 0x32c240,1, 0x32c248,1, 0x32c400,4, 0x330000,2, 0x330010,41, 0x3300b8,3, 0x330100,9, 0x330128,1, 0x330140,9, 0x330168,1, 0x330180,6, 0x3301a0,6, 0x3301c0,6, 0x3301e0,4, 0x330200,2, 0x330210,41, 0x3302b8,3, 0x330300,9, 0x330328,1, 0x330340,9, 0x330368,1, 0x330380,6, 0x3303a0,6, 0x3303c0,6, 0x3303e0,4, 0x330400,9, 0x330428,1, 0x330440,2, 0x33044c,3, 0x330464,1, 0x330474,30, 0x330504,1, 0x33052c,53, 0x330604,1, 0x330670,36, 0x330708,2, 0x330800,3, 0x330814,10, 0x330840,11, 0x330870,35, 0x330900,8, 0x330924,5, 0x330980,2, 0x33098c,2, 0x3309a0,2, 0x3309c0,1, 0x330a00,12, 0x330a34,22, 0x330ac0,7, 0x330b00,8, 0x330b24,5, 0x330b80,2, 0x330b8c,2, 0x330ba0,2, 0x330bc0,1, 0x330c00,12, 0x330c40,12, 0x330c80,12, 0x330cc0,12, 0x330d00,12, 0x330d40,12, 0x330d80,12, 0x330dc0,12, 0x330e00,1, 0x330e08,13, 0x330e40,12, 0x330e80,3, 0x330f00,7, 0x330f44,8, 0x330f80,6, 0x330fa0,2, 0x331000,9, 0x331040,9, 0x331080,9, 0x3310c0,9, 0x331100,1, 0x331108,5, 0x331120,2, 0x331200,8, 0x331240,4, 0x331260,8, 0x331300,8, 0x331330,2, 0x331340,7, 0x331380,3, 0x331390,3, 0x3313a0,3, 0x3313b0,3, 0x3313c0,5, 0x331400,69, 0x331600,4, 0x331640,13, 0x331680,7, 0x3316a0,5, 0x3316c0,1, 0x331800,9, 0x331840,9, 0x331880,9, 0x3318c0,9, 0x331900,1, 0x331908,5, 0x331920,2, 0x331a00,8, 0x331a40,4, 0x331a60,8, 0x331b00,8, 0x331b30,2, 0x331b40,7, 0x331b80,3, 0x331b90,3, 0x331ba0,3, 0x331bb0,3, 0x331bc0,5, 0x331c00,69, 0x331e00,4, 0x331e40,13, 0x331e80,7, 0x331ea0,5, 0x331ec0,1, 0x332000,25, 0x332080,1, 0x332088,8, 0x3320c0,6, 0x3320e0,1, 0x3320e8,2, 0x332104,7, 0x332200,11, 0x332240,1, 0x332248,1, 0x332408,2, 0x333000,35, 0x333c00,10, 0x333c80,3, 0x334000,8, 0x334024,2, 0x334040,2, 0x334060,6, 0x334080,1, 0x3340f0,12, 0x334124,2, 0x334140,2, 0x334160,6, 0x334180,1, 0x3341f0,12, 0x334224,2, 0x334240,2, 0x334260,6, 0x334280,1, 0x3342f0,12, 0x334324,2, 0x334340,2, 0x334360,6, 0x334380,1, 0x3343f0,4, 0x334410,4, 0x3345f8,2, 0x334800,8, 0x334824,2, 0x334840,2, 0x334860,6, 0x334880,1, 0x3348f0,12, 0x334924,2, 0x334940,2, 0x334960,6, 0x334980,1, 0x3349f0,12, 0x334a24,2, 0x334a40,2, 0x334a60,6, 0x334a80,1, 0x334af0,12, 0x334b24,2, 0x334b40,2, 0x334b60,6, 0x334b80,1, 0x334bf0,4, 0x334c10,4, 0x334df8,2, 0x335004,1, 0x335040,16, 0x335204,3, 0x335214,1, 0x33521c,1, 0x335224,1, 0x33522c,1, 0x335400,56, 0x3354e4,6, 0x335600,37, 0x335700,17, 0x335748,2, 0x335780,16, 0x335800,25, 0x335880,1, 0x335888,8, 0x3358c0,6, 0x3358e0,1, 0x3358e8,2, 0x335904,26, 0x335a00,4, 0x335b00,61, 0x335c00,4, 0x335c40,12, 0x335c80,5, 0x335ca0,1, 0x335cb0,1, 0x336000,3, 0x336010,3, 0x336020,3, 0x336030,3, 0x336040,3, 0x336050,3, 0x336060,3, 0x336070,3, 0x336080,16, 0x3360c4,1, 0x3360d0,5, 0x336100,1, 0x336140,3, 0x336160,8, 0x336184,17, 0x3362c0,1, 0x3362c8,14, 0x338000,1, 0x338008,3, 0x338018,3, 0x338030,7, 0x338070,2, 0x338080,1, 0x338088,3, 0x338098,3, 0x3380b0,7, 0x3380f0,2, 0x338100,1, 0x338108,3, 0x338118,3, 0x338130,7, 0x338170,2, 0x338180,1, 0x338188,3, 0x338198,3, 0x3381b0,7, 0x3381f0,2, 0x338200,3, 0x338210,3, 0x338220,3, 0x338230,3, 0x338240,10, 0x33826c,1, 0x338280,28, 0x3382f4,8, 0x338320,27, 0x3383dc,43, 0x338490,3, 0x3384a0,2, 0x3384b0,3, 0x3384c0,2, 0x3384d0,3, 0x3384e0,2, 0x3384f0,3, 0x338500,2, 0x338510,3, 0x338520,2, 0x338530,3, 0x338540,2, 0x338550,3, 0x338560,2, 0x338570,3, 0x338580,64, 0x338780,18, 0x3387d0,4, 0x338800,13, 0x338880,1, 0x338888,8, 0x3388c0,6, 0x3388e0,1, 0x3388e8,2, 0x338904,43, 0x338a00,4, 0x338a14,1, 0x338a1c,1, 0x338a24,1, 0x338a2c,1, 0x338a34,1, 0x338a3c,7, 0x338a60,6, 0x338a80,36, 0x338b40,15, 0x338b80,4, 0x338bc0,11, 0x338c00,9, 0x338c40,9, 0x338c80,9, 0x338cc0,9, 0x338d00,16, 0x338d54,1, 0x338d5c,1, 0x338d64,1, 0x338d6c,1, 0x338d80,26, 0x338e00,26, 0x338e80,26, 0x338f00,26, 0x339000,1, 0x339008,3, 0x339018,3, 0x339030,7, 0x339070,2, 0x339080,1, 0x339088,3, 0x339098,3, 0x3390b0,7, 0x3390f0,2, 0x339100,1, 0x339108,3, 0x339118,3, 0x339130,7, 0x339170,2, 0x339180,1, 0x339188,3, 0x339198,3, 0x3391b0,7, 0x3391f0,2, 0x339200,3, 0x339210,3, 0x339220,3, 0x339230,3, 0x339240,10, 0x33926c,1, 0x339280,28, 0x3392f4,8, 0x339320,27, 0x3393dc,43, 0x339490,3, 0x3394a0,2, 0x3394b0,3, 0x3394c0,2, 0x3394d0,3, 0x3394e0,2, 0x3394f0,3, 0x339500,2, 0x339510,3, 0x339520,2, 0x339530,3, 0x339540,2, 0x339550,3, 0x339560,2, 0x339570,3, 0x339580,64, 0x339780,18, 0x3397d0,4, 0x339800,13, 0x339880,1, 0x339888,8, 0x3398c0,6, 0x3398e0,1, 0x3398e8,2, 0x339904,43, 0x339a00,4, 0x339a14,1, 0x339a1c,1, 0x339a24,1, 0x339a2c,1, 0x339a34,1, 0x339a3c,7, 0x339a60,6, 0x339a80,36, 0x339b40,15, 0x339b80,4, 0x339bc0,11, 0x339c00,9, 0x339c40,9, 0x339c80,9, 0x339cc0,9, 0x339d00,16, 0x339d54,1, 0x339d5c,1, 0x339d64,1, 0x339d6c,1, 0x339d80,26, 0x339e00,26, 0x339e80,26, 0x339f00,26, 0x33a000,1, 0x33a00c,4, 0x33a020,4, 0x33a038,3, 0x33a0a8,38, 0x33a180,64, 0x33a2c0,8, 0x33a2f8,317, 0x33a804,1, 0x33a810,6, 0x33a844,1, 0x33a850,6, 0x33a884,1, 0x33a894,5, 0x33a8c4,1, 0x33a8d4,5, 0x33a904,1, 0x33a92c,21, 0x33a984,1, 0x33a9ac,21, 0x33aa04,1, 0x33aa0c,1, 0x33aa14,1, 0x33aa1c,1, 0x33aa24,1, 0x33aa2c,1, 0x33aa34,1, 0x33aa3c,13, 0x33aa78,8, 0x33ab04,5, 0x33ab24,5, 0x33ab44,3, 0x33ab54,1, 0x33ab60,3, 0x33ab70,5, 0x33ab88,5, 0x33abc0,8, 0x33b000,34, 0x33b100,13, 0x33b140,15, 0x33b180,40, 0x33b240,11, 0x33b280,11, 0x33b300,10, 0x33b380,4, 0x33b3c0,3, 0x33b3d0,6, 0x33b400,28, 0x33b480,27, 0x33b500,20, 0x33b580,19, 0x33c000,19, 0x33cc00,10, 0x33cc80,3, 0x340000,3, 0x340010,1, 0x340030,13, 0x34006c,4, 0x340100,40, 0x3401fc,4, 0x340210,1, 0x340230,13, 0x34026c,4, 0x340300,40, 0x3403fc,4, 0x340410,1, 0x340430,13, 0x34046c,4, 0x340500,40, 0x3405fc,4, 0x340610,1, 0x340630,13, 0x34066c,4, 0x340700,40, 0x3407fc,4, 0x340810,1, 0x340830,13, 0x34086c,4, 0x340900,40, 0x3409fc,4, 0x340a10,1, 0x340a30,13, 0x340a6c,4, 0x340b00,40, 0x340bfc,4, 0x340c10,1, 0x340c30,13, 0x340c6c,4, 0x340d00,40, 0x340dfc,4, 0x340e10,1, 0x340e30,13, 0x340e6c,4, 0x340f00,40, 0x340ffc,20, 0x341c00,10, 0x341c80,3, 0x342000,6, 0x34201c,12, 0x342080,1, 0x342088,1, 0x342090,2, 0x3420a0,4, 0x342100,1, 0x34210c,2, 0x34211c,2, 0x34212c,2, 0x34213c,2, 0x34214c,2, 0x34215c,2, 0x34216c,2, 0x34217c,3, 0x34218c,1, 0x342200,43, 0x342300,7, 0x342320,2, 0x34232c,1, 0x342380,10, 0x3423c0,1, 0x342400,109, 0x3425c0,5, 0x342600,109, 0x3427c0,5, 0x342800,3, 0x342814,16, 0x342874,1, 0x342880,3, 0x342894,16, 0x3428f4,1, 0x342900,3, 0x342914,16, 0x342974,1, 0x342980,3, 0x342994,16, 0x3429f4,1, 0x342a00,3, 0x342a14,16, 0x342a74,1, 0x342a80,3, 0x342a94,16, 0x342af4,1, 0x342b00,3, 0x342b14,16, 0x342b74,1, 0x342b80,3, 0x342b94,16, 0x342bf4,1, 0x342c00,10, 0x342c40,10, 0x342c80,10, 0x342cc0,10, 0x342d00,1, 0x342e00,1, 0x342e80,16, 0x342f00,6, 0x342f20,6, 0x342f40,6, 0x342f60,6, 0x342f80,6, 0x342fa0,6, 0x342fc0,6, 0x342fe0,6, 0x343000,60, 0x343100,60, 0x343200,31, 0x343400,60, 0x343500,60, 0x343600,31, 0x343800,4, 0x343900,53, 0x343a00,12, 0x344000,25, 0x344080,1, 0x344088,8, 0x3440c0,6, 0x3440e0,1, 0x3440e8,2, 0x344104,5, 0x344200,11, 0x344240,1, 0x344248,1, 0x344400,4, 0x348000,2, 0x348010,41, 0x3480b8,3, 0x348100,9, 0x348128,1, 0x348140,9, 0x348168,1, 0x348180,6, 0x3481a0,6, 0x3481c0,6, 0x3481e0,4, 0x348200,2, 0x348210,41, 0x3482b8,3, 0x348300,9, 0x348328,1, 0x348340,9, 0x348368,1, 0x348380,6, 0x3483a0,6, 0x3483c0,6, 0x3483e0,4, 0x348400,9, 0x348428,1, 0x348440,2, 0x34844c,3, 0x348464,1, 0x348474,30, 0x348504,1, 0x34852c,53, 0x348604,1, 0x348670,36, 0x348708,2, 0x348800,3, 0x348814,10, 0x348840,11, 0x348870,35, 0x348900,8, 0x348924,5, 0x348980,2, 0x34898c,2, 0x3489a0,2, 0x3489c0,1, 0x348a00,12, 0x348a34,22, 0x348ac0,7, 0x348b00,8, 0x348b24,5, 0x348b80,2, 0x348b8c,2, 0x348ba0,2, 0x348bc0,1, 0x348c00,12, 0x348c40,12, 0x348c80,12, 0x348cc0,12, 0x348d00,12, 0x348d40,12, 0x348d80,12, 0x348dc0,12, 0x348e00,1, 0x348e08,13, 0x348e40,12, 0x348e80,3, 0x348f00,7, 0x348f44,8, 0x348f80,6, 0x348fa0,2, 0x349000,9, 0x349040,9, 0x349080,9, 0x3490c0,9, 0x349100,1, 0x349108,5, 0x349120,2, 0x349200,8, 0x349240,4, 0x349260,8, 0x349300,8, 0x349330,2, 0x349340,7, 0x349380,3, 0x349390,3, 0x3493a0,3, 0x3493b0,3, 0x3493c0,5, 0x349400,69, 0x349600,4, 0x349640,13, 0x349680,7, 0x3496a0,5, 0x3496c0,1, 0x349800,9, 0x349840,9, 0x349880,9, 0x3498c0,9, 0x349900,1, 0x349908,5, 0x349920,2, 0x349a00,8, 0x349a40,4, 0x349a60,8, 0x349b00,8, 0x349b30,2, 0x349b40,7, 0x349b80,3, 0x349b90,3, 0x349ba0,3, 0x349bb0,3, 0x349bc0,5, 0x349c00,69, 0x349e00,4, 0x349e40,13, 0x349e80,7, 0x349ea0,5, 0x349ec0,1, 0x34a000,25, 0x34a080,1, 0x34a088,8, 0x34a0c0,6, 0x34a0e0,1, 0x34a0e8,2, 0x34a104,7, 0x34a200,11, 0x34a240,1, 0x34a248,1, 0x34a408,2, 0x34b000,35, 0x34bc00,10, 0x34bc80,3, 0x34c000,8, 0x34c024,2, 0x34c040,2, 0x34c060,6, 0x34c080,1, 0x34c0f0,12, 0x34c124,2, 0x34c140,2, 0x34c160,6, 0x34c180,1, 0x34c1f0,12, 0x34c224,2, 0x34c240,2, 0x34c260,6, 0x34c280,1, 0x34c2f0,12, 0x34c324,2, 0x34c340,2, 0x34c360,6, 0x34c380,1, 0x34c3f0,4, 0x34c410,4, 0x34c5f8,2, 0x34c800,8, 0x34c824,2, 0x34c840,2, 0x34c860,6, 0x34c880,1, 0x34c8f0,12, 0x34c924,2, 0x34c940,2, 0x34c960,6, 0x34c980,1, 0x34c9f0,12, 0x34ca24,2, 0x34ca40,2, 0x34ca60,6, 0x34ca80,1, 0x34caf0,12, 0x34cb24,2, 0x34cb40,2, 0x34cb60,6, 0x34cb80,1, 0x34cbf0,4, 0x34cc10,4, 0x34cdf8,2, 0x34d004,1, 0x34d040,16, 0x34d204,3, 0x34d214,1, 0x34d21c,1, 0x34d224,1, 0x34d22c,1, 0x34d400,56, 0x34d4e4,6, 0x34d600,37, 0x34d700,17, 0x34d748,2, 0x34d780,16, 0x34d800,25, 0x34d880,1, 0x34d888,8, 0x34d8c0,6, 0x34d8e0,1, 0x34d8e8,2, 0x34d904,26, 0x34da00,4, 0x34db00,61, 0x34dc00,4, 0x34dc40,12, 0x34dc80,5, 0x34dca0,1, 0x34dcb0,1, 0x34e000,3, 0x34e010,3, 0x34e020,3, 0x34e030,3, 0x34e040,3, 0x34e050,3, 0x34e060,3, 0x34e070,3, 0x34e080,16, 0x34e0c4,1, 0x34e0d0,5, 0x34e100,1, 0x34e140,3, 0x34e160,8, 0x34e184,17, 0x34e2c0,1, 0x34e2c8,14, 0x350000,1, 0x350008,3, 0x350018,3, 0x350030,7, 0x350070,2, 0x350080,1, 0x350088,3, 0x350098,3, 0x3500b0,7, 0x3500f0,2, 0x350100,1, 0x350108,3, 0x350118,3, 0x350130,7, 0x350170,2, 0x350180,1, 0x350188,3, 0x350198,3, 0x3501b0,7, 0x3501f0,2, 0x350200,3, 0x350210,3, 0x350220,3, 0x350230,3, 0x350240,10, 0x35026c,1, 0x350280,28, 0x3502f4,8, 0x350320,27, 0x3503dc,43, 0x350490,3, 0x3504a0,2, 0x3504b0,3, 0x3504c0,2, 0x3504d0,3, 0x3504e0,2, 0x3504f0,3, 0x350500,2, 0x350510,3, 0x350520,2, 0x350530,3, 0x350540,2, 0x350550,3, 0x350560,2, 0x350570,3, 0x350580,64, 0x350780,18, 0x3507d0,4, 0x350800,13, 0x350880,1, 0x350888,8, 0x3508c0,6, 0x3508e0,1, 0x3508e8,2, 0x350904,43, 0x350a00,4, 0x350a14,1, 0x350a1c,1, 0x350a24,1, 0x350a2c,1, 0x350a34,1, 0x350a3c,7, 0x350a60,6, 0x350a80,36, 0x350b40,15, 0x350b80,4, 0x350bc0,11, 0x350c00,9, 0x350c40,9, 0x350c80,9, 0x350cc0,9, 0x350d00,16, 0x350d54,1, 0x350d5c,1, 0x350d64,1, 0x350d6c,1, 0x350d80,26, 0x350e00,26, 0x350e80,26, 0x350f00,26, 0x351000,1, 0x351008,3, 0x351018,3, 0x351030,7, 0x351070,2, 0x351080,1, 0x351088,3, 0x351098,3, 0x3510b0,7, 0x3510f0,2, 0x351100,1, 0x351108,3, 0x351118,3, 0x351130,7, 0x351170,2, 0x351180,1, 0x351188,3, 0x351198,3, 0x3511b0,7, 0x3511f0,2, 0x351200,3, 0x351210,3, 0x351220,3, 0x351230,3, 0x351240,10, 0x35126c,1, 0x351280,28, 0x3512f4,8, 0x351320,27, 0x3513dc,43, 0x351490,3, 0x3514a0,2, 0x3514b0,3, 0x3514c0,2, 0x3514d0,3, 0x3514e0,2, 0x3514f0,3, 0x351500,2, 0x351510,3, 0x351520,2, 0x351530,3, 0x351540,2, 0x351550,3, 0x351560,2, 0x351570,3, 0x351580,64, 0x351780,18, 0x3517d0,4, 0x351800,13, 0x351880,1, 0x351888,8, 0x3518c0,6, 0x3518e0,1, 0x3518e8,2, 0x351904,43, 0x351a00,4, 0x351a14,1, 0x351a1c,1, 0x351a24,1, 0x351a2c,1, 0x351a34,1, 0x351a3c,7, 0x351a60,6, 0x351a80,36, 0x351b40,15, 0x351b80,4, 0x351bc0,11, 0x351c00,9, 0x351c40,9, 0x351c80,9, 0x351cc0,9, 0x351d00,16, 0x351d54,1, 0x351d5c,1, 0x351d64,1, 0x351d6c,1, 0x351d80,26, 0x351e00,26, 0x351e80,26, 0x351f00,26, 0x352000,1, 0x35200c,4, 0x352020,4, 0x352038,3, 0x3520a8,38, 0x352180,64, 0x3522c0,8, 0x3522f8,317, 0x352804,1, 0x352810,6, 0x352844,1, 0x352850,6, 0x352884,1, 0x352894,5, 0x3528c4,1, 0x3528d4,5, 0x352904,1, 0x35292c,21, 0x352984,1, 0x3529ac,21, 0x352a04,1, 0x352a0c,1, 0x352a14,1, 0x352a1c,1, 0x352a24,1, 0x352a2c,1, 0x352a34,1, 0x352a3c,13, 0x352a78,8, 0x352b04,5, 0x352b24,5, 0x352b44,3, 0x352b54,1, 0x352b60,3, 0x352b70,5, 0x352b88,5, 0x352bc0,8, 0x353000,34, 0x353100,13, 0x353140,15, 0x353180,40, 0x353240,11, 0x353280,11, 0x353300,10, 0x353380,4, 0x3533c0,3, 0x3533d0,6, 0x353400,28, 0x353480,27, 0x353500,20, 0x353580,19, 0x354000,19, 0x354c00,10, 0x354c80,3, 0x358000,3, 0x358010,1, 0x358030,13, 0x35806c,4, 0x358100,40, 0x3581fc,4, 0x358210,1, 0x358230,13, 0x35826c,4, 0x358300,40, 0x3583fc,4, 0x358410,1, 0x358430,13, 0x35846c,4, 0x358500,40, 0x3585fc,4, 0x358610,1, 0x358630,13, 0x35866c,4, 0x358700,40, 0x3587fc,4, 0x358810,1, 0x358830,13, 0x35886c,4, 0x358900,40, 0x3589fc,4, 0x358a10,1, 0x358a30,13, 0x358a6c,4, 0x358b00,40, 0x358bfc,4, 0x358c10,1, 0x358c30,13, 0x358c6c,4, 0x358d00,40, 0x358dfc,4, 0x358e10,1, 0x358e30,13, 0x358e6c,4, 0x358f00,40, 0x358ffc,20, 0x359c00,10, 0x359c80,3, 0x35a000,6, 0x35a01c,12, 0x35a080,1, 0x35a088,1, 0x35a090,2, 0x35a0a0,4, 0x35a100,1, 0x35a10c,2, 0x35a11c,2, 0x35a12c,2, 0x35a13c,2, 0x35a14c,2, 0x35a15c,2, 0x35a16c,2, 0x35a17c,3, 0x35a18c,1, 0x35a200,43, 0x35a300,7, 0x35a320,2, 0x35a32c,1, 0x35a380,10, 0x35a3c0,1, 0x35a400,109, 0x35a5c0,5, 0x35a600,109, 0x35a7c0,5, 0x35a800,3, 0x35a814,16, 0x35a874,1, 0x35a880,3, 0x35a894,16, 0x35a8f4,1, 0x35a900,3, 0x35a914,16, 0x35a974,1, 0x35a980,3, 0x35a994,16, 0x35a9f4,1, 0x35aa00,3, 0x35aa14,16, 0x35aa74,1, 0x35aa80,3, 0x35aa94,16, 0x35aaf4,1, 0x35ab00,3, 0x35ab14,16, 0x35ab74,1, 0x35ab80,3, 0x35ab94,16, 0x35abf4,1, 0x35ac00,10, 0x35ac40,10, 0x35ac80,10, 0x35acc0,10, 0x35ad00,1, 0x35ae00,1, 0x35ae80,16, 0x35af00,6, 0x35af20,6, 0x35af40,6, 0x35af60,6, 0x35af80,6, 0x35afa0,6, 0x35afc0,6, 0x35afe0,6, 0x35b000,60, 0x35b100,60, 0x35b200,31, 0x35b400,60, 0x35b500,60, 0x35b600,31, 0x35b800,4, 0x35b900,53, 0x35ba00,12, 0x35c000,25, 0x35c080,1, 0x35c088,8, 0x35c0c0,6, 0x35c0e0,1, 0x35c0e8,2, 0x35c104,5, 0x35c200,11, 0x35c240,1, 0x35c248,1, 0x35c400,4, 0x360000,2, 0x360010,41, 0x3600b8,3, 0x360100,9, 0x360128,1, 0x360140,9, 0x360168,1, 0x360180,6, 0x3601a0,6, 0x3601c0,6, 0x3601e0,4, 0x360200,2, 0x360210,41, 0x3602b8,3, 0x360300,9, 0x360328,1, 0x360340,9, 0x360368,1, 0x360380,6, 0x3603a0,6, 0x3603c0,6, 0x3603e0,4, 0x360400,9, 0x360428,1, 0x360440,2, 0x36044c,3, 0x360464,1, 0x360474,30, 0x360504,1, 0x36052c,53, 0x360604,1, 0x360670,36, 0x360708,2, 0x360800,3, 0x360814,10, 0x360840,11, 0x360870,35, 0x360900,8, 0x360924,5, 0x360980,2, 0x36098c,2, 0x3609a0,2, 0x3609c0,1, 0x360a00,12, 0x360a34,22, 0x360ac0,7, 0x360b00,8, 0x360b24,5, 0x360b80,2, 0x360b8c,2, 0x360ba0,2, 0x360bc0,1, 0x360c00,12, 0x360c40,12, 0x360c80,12, 0x360cc0,12, 0x360d00,12, 0x360d40,12, 0x360d80,12, 0x360dc0,12, 0x360e00,1, 0x360e08,13, 0x360e40,12, 0x360e80,3, 0x360f00,7, 0x360f44,8, 0x360f80,6, 0x360fa0,2, 0x361000,9, 0x361040,9, 0x361080,9, 0x3610c0,9, 0x361100,1, 0x361108,5, 0x361120,2, 0x361200,8, 0x361240,4, 0x361260,8, 0x361300,8, 0x361330,2, 0x361340,7, 0x361380,3, 0x361390,3, 0x3613a0,3, 0x3613b0,3, 0x3613c0,5, 0x361400,69, 0x361600,4, 0x361640,13, 0x361680,7, 0x3616a0,5, 0x3616c0,1, 0x361800,9, 0x361840,9, 0x361880,9, 0x3618c0,9, 0x361900,1, 0x361908,5, 0x361920,2, 0x361a00,8, 0x361a40,4, 0x361a60,8, 0x361b00,8, 0x361b30,2, 0x361b40,7, 0x361b80,3, 0x361b90,3, 0x361ba0,3, 0x361bb0,3, 0x361bc0,5, 0x361c00,69, 0x361e00,4, 0x361e40,13, 0x361e80,7, 0x361ea0,5, 0x361ec0,1, 0x362000,25, 0x362080,1, 0x362088,8, 0x3620c0,6, 0x3620e0,1, 0x3620e8,2, 0x362104,7, 0x362200,11, 0x362240,1, 0x362248,1, 0x362408,2, 0x363000,35, 0x363c00,10, 0x363c80,3, 0x364000,8, 0x364024,2, 0x364040,2, 0x364060,6, 0x364080,1, 0x3640f0,12, 0x364124,2, 0x364140,2, 0x364160,6, 0x364180,1, 0x3641f0,12, 0x364224,2, 0x364240,2, 0x364260,6, 0x364280,1, 0x3642f0,12, 0x364324,2, 0x364340,2, 0x364360,6, 0x364380,1, 0x3643f0,4, 0x364410,4, 0x3645f8,2, 0x364800,8, 0x364824,2, 0x364840,2, 0x364860,6, 0x364880,1, 0x3648f0,12, 0x364924,2, 0x364940,2, 0x364960,6, 0x364980,1, 0x3649f0,12, 0x364a24,2, 0x364a40,2, 0x364a60,6, 0x364a80,1, 0x364af0,12, 0x364b24,2, 0x364b40,2, 0x364b60,6, 0x364b80,1, 0x364bf0,4, 0x364c10,4, 0x364df8,2, 0x365004,1, 0x365040,16, 0x365204,3, 0x365214,1, 0x36521c,1, 0x365224,1, 0x36522c,1, 0x365400,56, 0x3654e4,6, 0x365600,37, 0x365700,17, 0x365748,2, 0x365780,16, 0x365800,25, 0x365880,1, 0x365888,8, 0x3658c0,6, 0x3658e0,1, 0x3658e8,2, 0x365904,26, 0x365a00,4, 0x365b00,61, 0x365c00,4, 0x365c40,12, 0x365c80,5, 0x365ca0,1, 0x365cb0,1, 0x366000,3, 0x366010,3, 0x366020,3, 0x366030,3, 0x366040,3, 0x366050,3, 0x366060,3, 0x366070,3, 0x366080,16, 0x3660c4,1, 0x3660d0,5, 0x366100,1, 0x366140,3, 0x366160,8, 0x366184,17, 0x3662c0,1, 0x3662c8,14, 0x368000,1, 0x368008,3, 0x368018,3, 0x368030,7, 0x368070,2, 0x368080,1, 0x368088,3, 0x368098,3, 0x3680b0,7, 0x3680f0,2, 0x368100,1, 0x368108,3, 0x368118,3, 0x368130,7, 0x368170,2, 0x368180,1, 0x368188,3, 0x368198,3, 0x3681b0,7, 0x3681f0,2, 0x368200,3, 0x368210,3, 0x368220,3, 0x368230,3, 0x368240,10, 0x36826c,1, 0x368280,28, 0x3682f4,8, 0x368320,27, 0x3683dc,43, 0x368490,3, 0x3684a0,2, 0x3684b0,3, 0x3684c0,2, 0x3684d0,3, 0x3684e0,2, 0x3684f0,3, 0x368500,2, 0x368510,3, 0x368520,2, 0x368530,3, 0x368540,2, 0x368550,3, 0x368560,2, 0x368570,3, 0x368580,64, 0x368780,18, 0x3687d0,4, 0x368800,13, 0x368880,1, 0x368888,8, 0x3688c0,6, 0x3688e0,1, 0x3688e8,2, 0x368904,43, 0x368a00,4, 0x368a14,1, 0x368a1c,1, 0x368a24,1, 0x368a2c,1, 0x368a34,1, 0x368a3c,7, 0x368a60,6, 0x368a80,36, 0x368b40,15, 0x368b80,4, 0x368bc0,11, 0x368c00,9, 0x368c40,9, 0x368c80,9, 0x368cc0,9, 0x368d00,16, 0x368d54,1, 0x368d5c,1, 0x368d64,1, 0x368d6c,1, 0x368d80,26, 0x368e00,26, 0x368e80,26, 0x368f00,26, 0x369000,1, 0x369008,3, 0x369018,3, 0x369030,7, 0x369070,2, 0x369080,1, 0x369088,3, 0x369098,3, 0x3690b0,7, 0x3690f0,2, 0x369100,1, 0x369108,3, 0x369118,3, 0x369130,7, 0x369170,2, 0x369180,1, 0x369188,3, 0x369198,3, 0x3691b0,7, 0x3691f0,2, 0x369200,3, 0x369210,3, 0x369220,3, 0x369230,3, 0x369240,10, 0x36926c,1, 0x369280,28, 0x3692f4,8, 0x369320,27, 0x3693dc,43, 0x369490,3, 0x3694a0,2, 0x3694b0,3, 0x3694c0,2, 0x3694d0,3, 0x3694e0,2, 0x3694f0,3, 0x369500,2, 0x369510,3, 0x369520,2, 0x369530,3, 0x369540,2, 0x369550,3, 0x369560,2, 0x369570,3, 0x369580,64, 0x369780,18, 0x3697d0,4, 0x369800,13, 0x369880,1, 0x369888,8, 0x3698c0,6, 0x3698e0,1, 0x3698e8,2, 0x369904,43, 0x369a00,4, 0x369a14,1, 0x369a1c,1, 0x369a24,1, 0x369a2c,1, 0x369a34,1, 0x369a3c,7, 0x369a60,6, 0x369a80,36, 0x369b40,15, 0x369b80,4, 0x369bc0,11, 0x369c00,9, 0x369c40,9, 0x369c80,9, 0x369cc0,9, 0x369d00,16, 0x369d54,1, 0x369d5c,1, 0x369d64,1, 0x369d6c,1, 0x369d80,26, 0x369e00,26, 0x369e80,26, 0x369f00,26, 0x36a000,1, 0x36a00c,4, 0x36a020,4, 0x36a038,3, 0x36a0a8,38, 0x36a180,64, 0x36a2c0,8, 0x36a2f8,317, 0x36a804,1, 0x36a810,6, 0x36a844,1, 0x36a850,6, 0x36a884,1, 0x36a894,5, 0x36a8c4,1, 0x36a8d4,5, 0x36a904,1, 0x36a92c,21, 0x36a984,1, 0x36a9ac,21, 0x36aa04,1, 0x36aa0c,1, 0x36aa14,1, 0x36aa1c,1, 0x36aa24,1, 0x36aa2c,1, 0x36aa34,1, 0x36aa3c,13, 0x36aa78,8, 0x36ab04,5, 0x36ab24,5, 0x36ab44,3, 0x36ab54,1, 0x36ab60,3, 0x36ab70,5, 0x36ab88,5, 0x36abc0,8, 0x36b000,34, 0x36b100,13, 0x36b140,15, 0x36b180,40, 0x36b240,11, 0x36b280,11, 0x36b300,10, 0x36b380,4, 0x36b3c0,3, 0x36b3d0,6, 0x36b400,28, 0x36b480,27, 0x36b500,20, 0x36b580,19, 0x36c000,19, 0x36cc00,10, 0x36cc80,3, 0x370000,3, 0x370010,1, 0x370030,13, 0x37006c,4, 0x370100,40, 0x3701fc,4, 0x370210,1, 0x370230,13, 0x37026c,4, 0x370300,40, 0x3703fc,4, 0x370410,1, 0x370430,13, 0x37046c,4, 0x370500,40, 0x3705fc,4, 0x370610,1, 0x370630,13, 0x37066c,4, 0x370700,40, 0x3707fc,4, 0x370810,1, 0x370830,13, 0x37086c,4, 0x370900,40, 0x3709fc,4, 0x370a10,1, 0x370a30,13, 0x370a6c,4, 0x370b00,40, 0x370bfc,4, 0x370c10,1, 0x370c30,13, 0x370c6c,4, 0x370d00,40, 0x370dfc,4, 0x370e10,1, 0x370e30,13, 0x370e6c,4, 0x370f00,40, 0x370ffc,20, 0x371c00,10, 0x371c80,3, 0x372000,6, 0x37201c,12, 0x372080,1, 0x372088,1, 0x372090,2, 0x3720a0,4, 0x372100,1, 0x37210c,2, 0x37211c,2, 0x37212c,2, 0x37213c,2, 0x37214c,2, 0x37215c,2, 0x37216c,2, 0x37217c,3, 0x37218c,1, 0x372200,43, 0x372300,7, 0x372320,2, 0x37232c,1, 0x372380,10, 0x3723c0,1, 0x372400,109, 0x3725c0,5, 0x372600,109, 0x3727c0,5, 0x372800,3, 0x372814,16, 0x372874,1, 0x372880,3, 0x372894,16, 0x3728f4,1, 0x372900,3, 0x372914,16, 0x372974,1, 0x372980,3, 0x372994,16, 0x3729f4,1, 0x372a00,3, 0x372a14,16, 0x372a74,1, 0x372a80,3, 0x372a94,16, 0x372af4,1, 0x372b00,3, 0x372b14,16, 0x372b74,1, 0x372b80,3, 0x372b94,16, 0x372bf4,1, 0x372c00,10, 0x372c40,10, 0x372c80,10, 0x372cc0,10, 0x372d00,1, 0x372e00,1, 0x372e80,16, 0x372f00,6, 0x372f20,6, 0x372f40,6, 0x372f60,6, 0x372f80,6, 0x372fa0,6, 0x372fc0,6, 0x372fe0,6, 0x373000,60, 0x373100,60, 0x373200,31, 0x373400,60, 0x373500,60, 0x373600,31, 0x373800,4, 0x373900,53, 0x373a00,12, 0x374000,25, 0x374080,1, 0x374088,8, 0x3740c0,6, 0x3740e0,1, 0x3740e8,2, 0x374104,5, 0x374200,11, 0x374240,1, 0x374248,1, 0x374400,4, 0x378000,2, 0x378010,41, 0x3780b8,3, 0x378100,9, 0x378128,1, 0x378140,9, 0x378168,1, 0x378180,6, 0x3781a0,6, 0x3781c0,6, 0x3781e0,4, 0x378200,2, 0x378210,41, 0x3782b8,3, 0x378300,9, 0x378328,1, 0x378340,9, 0x378368,1, 0x378380,6, 0x3783a0,6, 0x3783c0,6, 0x3783e0,4, 0x378400,9, 0x378428,1, 0x378440,2, 0x37844c,3, 0x378464,1, 0x378474,30, 0x378504,1, 0x37852c,53, 0x378604,1, 0x378670,36, 0x378708,2, 0x378800,3, 0x378814,10, 0x378840,11, 0x378870,35, 0x378900,8, 0x378924,5, 0x378980,2, 0x37898c,2, 0x3789a0,2, 0x3789c0,1, 0x378a00,12, 0x378a34,22, 0x378ac0,7, 0x378b00,8, 0x378b24,5, 0x378b80,2, 0x378b8c,2, 0x378ba0,2, 0x378bc0,1, 0x378c00,12, 0x378c40,12, 0x378c80,12, 0x378cc0,12, 0x378d00,12, 0x378d40,12, 0x378d80,12, 0x378dc0,12, 0x378e00,1, 0x378e08,13, 0x378e40,12, 0x378e80,3, 0x378f00,7, 0x378f44,8, 0x378f80,6, 0x378fa0,2, 0x379000,9, 0x379040,9, 0x379080,9, 0x3790c0,9, 0x379100,1, 0x379108,5, 0x379120,2, 0x379200,8, 0x379240,4, 0x379260,8, 0x379300,8, 0x379330,2, 0x379340,7, 0x379380,3, 0x379390,3, 0x3793a0,3, 0x3793b0,3, 0x3793c0,5, 0x379400,69, 0x379600,4, 0x379640,13, 0x379680,7, 0x3796a0,5, 0x3796c0,1, 0x379800,9, 0x379840,9, 0x379880,9, 0x3798c0,9, 0x379900,1, 0x379908,5, 0x379920,2, 0x379a00,8, 0x379a40,4, 0x379a60,8, 0x379b00,8, 0x379b30,2, 0x379b40,7, 0x379b80,3, 0x379b90,3, 0x379ba0,3, 0x379bb0,3, 0x379bc0,5, 0x379c00,69, 0x379e00,4, 0x379e40,13, 0x379e80,7, 0x379ea0,5, 0x379ec0,1, 0x37a000,25, 0x37a080,1, 0x37a088,8, 0x37a0c0,6, 0x37a0e0,1, 0x37a0e8,2, 0x37a104,7, 0x37a200,11, 0x37a240,1, 0x37a248,1, 0x37a408,2, 0x37b000,35, 0x37bc00,10, 0x37bc80,3, 0x37c000,8, 0x37c024,2, 0x37c040,2, 0x37c060,6, 0x37c080,1, 0x37c0f0,12, 0x37c124,2, 0x37c140,2, 0x37c160,6, 0x37c180,1, 0x37c1f0,12, 0x37c224,2, 0x37c240,2, 0x37c260,6, 0x37c280,1, 0x37c2f0,12, 0x37c324,2, 0x37c340,2, 0x37c360,6, 0x37c380,1, 0x37c3f0,4, 0x37c410,4, 0x37c5f8,2, 0x37c800,8, 0x37c824,2, 0x37c840,2, 0x37c860,6, 0x37c880,1, 0x37c8f0,12, 0x37c924,2, 0x37c940,2, 0x37c960,6, 0x37c980,1, 0x37c9f0,12, 0x37ca24,2, 0x37ca40,2, 0x37ca60,6, 0x37ca80,1, 0x37caf0,12, 0x37cb24,2, 0x37cb40,2, 0x37cb60,6, 0x37cb80,1, 0x37cbf0,4, 0x37cc10,4, 0x37cdf8,2, 0x37d004,1, 0x37d040,16, 0x37d204,3, 0x37d214,1, 0x37d21c,1, 0x37d224,1, 0x37d22c,1, 0x37d400,56, 0x37d4e4,6, 0x37d600,37, 0x37d700,17, 0x37d748,2, 0x37d780,16, 0x37d800,25, 0x37d880,1, 0x37d888,8, 0x37d8c0,6, 0x37d8e0,1, 0x37d8e8,2, 0x37d904,26, 0x37da00,4, 0x37db00,61, 0x37dc00,4, 0x37dc40,12, 0x37dc80,5, 0x37dca0,1, 0x37dcb0,1, 0x37e000,3, 0x37e010,3, 0x37e020,3, 0x37e030,3, 0x37e040,3, 0x37e050,3, 0x37e060,3, 0x37e070,3, 0x37e080,16, 0x37e0c4,1, 0x37e0d0,5, 0x37e100,1, 0x37e140,3, 0x37e160,8, 0x37e184,17, 0x37e2c0,1, 0x37e2c8,14, 0x380000,1, 0x380008,3, 0x380018,3, 0x380030,7, 0x380070,2, 0x380080,1, 0x380088,3, 0x380098,3, 0x3800b0,7, 0x3800f0,2, 0x380100,1, 0x380108,3, 0x380118,3, 0x380130,7, 0x380170,2, 0x380180,1, 0x380188,3, 0x380198,3, 0x3801b0,7, 0x3801f0,2, 0x380200,3, 0x380210,3, 0x380220,3, 0x380230,3, 0x380240,10, 0x38026c,1, 0x380280,28, 0x3802f4,8, 0x380320,27, 0x3803dc,43, 0x380490,3, 0x3804a0,2, 0x3804b0,3, 0x3804c0,2, 0x3804d0,3, 0x3804e0,2, 0x3804f0,3, 0x380500,2, 0x380510,3, 0x380520,2, 0x380530,3, 0x380540,2, 0x380550,3, 0x380560,2, 0x380570,3, 0x380580,64, 0x380780,18, 0x3807d0,4, 0x380800,13, 0x380880,1, 0x380888,8, 0x3808c0,6, 0x3808e0,1, 0x3808e8,2, 0x380904,43, 0x380a00,4, 0x380a14,1, 0x380a1c,1, 0x380a24,1, 0x380a2c,1, 0x380a34,1, 0x380a3c,7, 0x380a60,6, 0x380a80,36, 0x380b40,15, 0x380b80,4, 0x380bc0,11, 0x380c00,9, 0x380c40,9, 0x380c80,9, 0x380cc0,9, 0x380d00,16, 0x380d54,1, 0x380d5c,1, 0x380d64,1, 0x380d6c,1, 0x380d80,26, 0x380e00,26, 0x380e80,26, 0x380f00,26, 0x381000,1, 0x381008,3, 0x381018,3, 0x381030,7, 0x381070,2, 0x381080,1, 0x381088,3, 0x381098,3, 0x3810b0,7, 0x3810f0,2, 0x381100,1, 0x381108,3, 0x381118,3, 0x381130,7, 0x381170,2, 0x381180,1, 0x381188,3, 0x381198,3, 0x3811b0,7, 0x3811f0,2, 0x381200,3, 0x381210,3, 0x381220,3, 0x381230,3, 0x381240,10, 0x38126c,1, 0x381280,28, 0x3812f4,8, 0x381320,27, 0x3813dc,43, 0x381490,3, 0x3814a0,2, 0x3814b0,3, 0x3814c0,2, 0x3814d0,3, 0x3814e0,2, 0x3814f0,3, 0x381500,2, 0x381510,3, 0x381520,2, 0x381530,3, 0x381540,2, 0x381550,3, 0x381560,2, 0x381570,3, 0x381580,64, 0x381780,18, 0x3817d0,4, 0x381800,13, 0x381880,1, 0x381888,8, 0x3818c0,6, 0x3818e0,1, 0x3818e8,2, 0x381904,43, 0x381a00,4, 0x381a14,1, 0x381a1c,1, 0x381a24,1, 0x381a2c,1, 0x381a34,1, 0x381a3c,7, 0x381a60,6, 0x381a80,36, 0x381b40,15, 0x381b80,4, 0x381bc0,11, 0x381c00,9, 0x381c40,9, 0x381c80,9, 0x381cc0,9, 0x381d00,16, 0x381d54,1, 0x381d5c,1, 0x381d64,1, 0x381d6c,1, 0x381d80,26, 0x381e00,26, 0x381e80,26, 0x381f00,26, 0x382000,1, 0x38200c,4, 0x382020,4, 0x382038,3, 0x3820a8,38, 0x382180,64, 0x3822c0,8, 0x3822f8,317, 0x382804,1, 0x382810,6, 0x382844,1, 0x382850,6, 0x382884,1, 0x382894,5, 0x3828c4,1, 0x3828d4,5, 0x382904,1, 0x38292c,21, 0x382984,1, 0x3829ac,21, 0x382a04,1, 0x382a0c,1, 0x382a14,1, 0x382a1c,1, 0x382a24,1, 0x382a2c,1, 0x382a34,1, 0x382a3c,13, 0x382a78,8, 0x382b04,5, 0x382b24,5, 0x382b44,3, 0x382b54,1, 0x382b60,3, 0x382b70,5, 0x382b88,5, 0x382bc0,8, 0x383000,34, 0x383100,13, 0x383140,15, 0x383180,40, 0x383240,11, 0x383280,11, 0x383300,10, 0x383380,4, 0x3833c0,3, 0x3833d0,6, 0x383400,28, 0x383480,27, 0x383500,20, 0x383580,19, 0x384000,19, 0x384c00,10, 0x384c80,3, 0x388000,3, 0x388010,1, 0x388030,13, 0x38806c,4, 0x388100,40, 0x3881fc,4, 0x388210,1, 0x388230,13, 0x38826c,4, 0x388300,40, 0x3883fc,4, 0x388410,1, 0x388430,13, 0x38846c,4, 0x388500,40, 0x3885fc,4, 0x388610,1, 0x388630,13, 0x38866c,4, 0x388700,40, 0x3887fc,4, 0x388810,1, 0x388830,13, 0x38886c,4, 0x388900,40, 0x3889fc,4, 0x388a10,1, 0x388a30,13, 0x388a6c,4, 0x388b00,40, 0x388bfc,4, 0x388c10,1, 0x388c30,13, 0x388c6c,4, 0x388d00,40, 0x388dfc,4, 0x388e10,1, 0x388e30,13, 0x388e6c,4, 0x388f00,40, 0x388ffc,20, 0x389c00,10, 0x389c80,3, 0x38a000,6, 0x38a01c,12, 0x38a080,1, 0x38a088,1, 0x38a090,2, 0x38a0a0,4, 0x38a100,1, 0x38a10c,2, 0x38a11c,2, 0x38a12c,2, 0x38a13c,2, 0x38a14c,2, 0x38a15c,2, 0x38a16c,2, 0x38a17c,3, 0x38a18c,1, 0x38a200,43, 0x38a300,7, 0x38a320,2, 0x38a32c,1, 0x38a380,10, 0x38a3c0,1, 0x38a400,109, 0x38a5c0,5, 0x38a600,109, 0x38a7c0,5, 0x38a800,3, 0x38a814,16, 0x38a874,1, 0x38a880,3, 0x38a894,16, 0x38a8f4,1, 0x38a900,3, 0x38a914,16, 0x38a974,1, 0x38a980,3, 0x38a994,16, 0x38a9f4,1, 0x38aa00,3, 0x38aa14,16, 0x38aa74,1, 0x38aa80,3, 0x38aa94,16, 0x38aaf4,1, 0x38ab00,3, 0x38ab14,16, 0x38ab74,1, 0x38ab80,3, 0x38ab94,16, 0x38abf4,1, 0x38ac00,10, 0x38ac40,10, 0x38ac80,10, 0x38acc0,10, 0x38ad00,1, 0x38ae00,1, 0x38ae80,16, 0x38af00,6, 0x38af20,6, 0x38af40,6, 0x38af60,6, 0x38af80,6, 0x38afa0,6, 0x38afc0,6, 0x38afe0,6, 0x38b000,60, 0x38b100,60, 0x38b200,31, 0x38b400,60, 0x38b500,60, 0x38b600,31, 0x38b800,4, 0x38b900,53, 0x38ba00,12, 0x38c000,25, 0x38c080,1, 0x38c088,8, 0x38c0c0,6, 0x38c0e0,1, 0x38c0e8,2, 0x38c104,5, 0x38c200,11, 0x38c240,1, 0x38c248,1, 0x38c400,4, 0x390000,2, 0x390010,41, 0x3900b8,3, 0x390100,9, 0x390128,1, 0x390140,9, 0x390168,1, 0x390180,6, 0x3901a0,6, 0x3901c0,6, 0x3901e0,4, 0x390200,2, 0x390210,41, 0x3902b8,3, 0x390300,9, 0x390328,1, 0x390340,9, 0x390368,1, 0x390380,6, 0x3903a0,6, 0x3903c0,6, 0x3903e0,4, 0x390400,9, 0x390428,1, 0x390440,2, 0x39044c,3, 0x390464,1, 0x390474,30, 0x390504,1, 0x39052c,53, 0x390604,1, 0x390670,36, 0x390708,2, 0x390800,3, 0x390814,10, 0x390840,11, 0x390870,35, 0x390900,8, 0x390924,5, 0x390980,2, 0x39098c,2, 0x3909a0,2, 0x3909c0,1, 0x390a00,12, 0x390a34,22, 0x390ac0,7, 0x390b00,8, 0x390b24,5, 0x390b80,2, 0x390b8c,2, 0x390ba0,2, 0x390bc0,1, 0x390c00,12, 0x390c40,12, 0x390c80,12, 0x390cc0,12, 0x390d00,12, 0x390d40,12, 0x390d80,12, 0x390dc0,12, 0x390e00,1, 0x390e08,13, 0x390e40,12, 0x390e80,3, 0x390f00,7, 0x390f44,8, 0x390f80,6, 0x390fa0,2, 0x391000,9, 0x391040,9, 0x391080,9, 0x3910c0,9, 0x391100,1, 0x391108,5, 0x391120,2, 0x391200,8, 0x391240,4, 0x391260,8, 0x391300,8, 0x391330,2, 0x391340,7, 0x391380,3, 0x391390,3, 0x3913a0,3, 0x3913b0,3, 0x3913c0,5, 0x391400,69, 0x391600,4, 0x391640,13, 0x391680,7, 0x3916a0,5, 0x3916c0,1, 0x391800,9, 0x391840,9, 0x391880,9, 0x3918c0,9, 0x391900,1, 0x391908,5, 0x391920,2, 0x391a00,8, 0x391a40,4, 0x391a60,8, 0x391b00,8, 0x391b30,2, 0x391b40,7, 0x391b80,3, 0x391b90,3, 0x391ba0,3, 0x391bb0,3, 0x391bc0,5, 0x391c00,69, 0x391e00,4, 0x391e40,13, 0x391e80,7, 0x391ea0,5, 0x391ec0,1, 0x392000,25, 0x392080,1, 0x392088,8, 0x3920c0,6, 0x3920e0,1, 0x3920e8,2, 0x392104,7, 0x392200,11, 0x392240,1, 0x392248,1, 0x392408,2, 0x393000,35, 0x393c00,10, 0x393c80,3, 0x394000,8, 0x394024,2, 0x394040,2, 0x394060,6, 0x394080,1, 0x3940f0,12, 0x394124,2, 0x394140,2, 0x394160,6, 0x394180,1, 0x3941f0,12, 0x394224,2, 0x394240,2, 0x394260,6, 0x394280,1, 0x3942f0,12, 0x394324,2, 0x394340,2, 0x394360,6, 0x394380,1, 0x3943f0,4, 0x394410,4, 0x3945f8,2, 0x394800,8, 0x394824,2, 0x394840,2, 0x394860,6, 0x394880,1, 0x3948f0,12, 0x394924,2, 0x394940,2, 0x394960,6, 0x394980,1, 0x3949f0,12, 0x394a24,2, 0x394a40,2, 0x394a60,6, 0x394a80,1, 0x394af0,12, 0x394b24,2, 0x394b40,2, 0x394b60,6, 0x394b80,1, 0x394bf0,4, 0x394c10,4, 0x394df8,2, 0x395004,1, 0x395040,16, 0x395204,3, 0x395214,1, 0x39521c,1, 0x395224,1, 0x39522c,1, 0x395400,56, 0x3954e4,6, 0x395600,37, 0x395700,17, 0x395748,2, 0x395780,16, 0x395800,25, 0x395880,1, 0x395888,8, 0x3958c0,6, 0x3958e0,1, 0x3958e8,2, 0x395904,26, 0x395a00,4, 0x395b00,61, 0x395c00,4, 0x395c40,12, 0x395c80,5, 0x395ca0,1, 0x395cb0,1, 0x396000,3, 0x396010,3, 0x396020,3, 0x396030,3, 0x396040,3, 0x396050,3, 0x396060,3, 0x396070,3, 0x396080,16, 0x3960c4,1, 0x3960d0,5, 0x396100,1, 0x396140,3, 0x396160,8, 0x396184,17, 0x3962c0,1, 0x3962c8,14, 0x398000,1, 0x398008,3, 0x398018,3, 0x398030,7, 0x398070,2, 0x398080,1, 0x398088,3, 0x398098,3, 0x3980b0,7, 0x3980f0,2, 0x398100,1, 0x398108,3, 0x398118,3, 0x398130,7, 0x398170,2, 0x398180,1, 0x398188,3, 0x398198,3, 0x3981b0,7, 0x3981f0,2, 0x398200,3, 0x398210,3, 0x398220,3, 0x398230,3, 0x398240,10, 0x39826c,1, 0x398280,28, 0x3982f4,8, 0x398320,27, 0x3983dc,43, 0x398490,3, 0x3984a0,2, 0x3984b0,3, 0x3984c0,2, 0x3984d0,3, 0x3984e0,2, 0x3984f0,3, 0x398500,2, 0x398510,3, 0x398520,2, 0x398530,3, 0x398540,2, 0x398550,3, 0x398560,2, 0x398570,3, 0x398580,64, 0x398780,18, 0x3987d0,4, 0x398800,13, 0x398880,1, 0x398888,8, 0x3988c0,6, 0x3988e0,1, 0x3988e8,2, 0x398904,43, 0x398a00,4, 0x398a14,1, 0x398a1c,1, 0x398a24,1, 0x398a2c,1, 0x398a34,1, 0x398a3c,7, 0x398a60,6, 0x398a80,36, 0x398b40,15, 0x398b80,4, 0x398bc0,11, 0x398c00,9, 0x398c40,9, 0x398c80,9, 0x398cc0,9, 0x398d00,16, 0x398d54,1, 0x398d5c,1, 0x398d64,1, 0x398d6c,1, 0x398d80,26, 0x398e00,26, 0x398e80,26, 0x398f00,26, 0x399000,1, 0x399008,3, 0x399018,3, 0x399030,7, 0x399070,2, 0x399080,1, 0x399088,3, 0x399098,3, 0x3990b0,7, 0x3990f0,2, 0x399100,1, 0x399108,3, 0x399118,3, 0x399130,7, 0x399170,2, 0x399180,1, 0x399188,3, 0x399198,3, 0x3991b0,7, 0x3991f0,2, 0x399200,3, 0x399210,3, 0x399220,3, 0x399230,3, 0x399240,10, 0x39926c,1, 0x399280,28, 0x3992f4,8, 0x399320,27, 0x3993dc,43, 0x399490,3, 0x3994a0,2, 0x3994b0,3, 0x3994c0,2, 0x3994d0,3, 0x3994e0,2, 0x3994f0,3, 0x399500,2, 0x399510,3, 0x399520,2, 0x399530,3, 0x399540,2, 0x399550,3, 0x399560,2, 0x399570,3, 0x399580,64, 0x399780,18, 0x3997d0,4, 0x399800,13, 0x399880,1, 0x399888,8, 0x3998c0,6, 0x3998e0,1, 0x3998e8,2, 0x399904,43, 0x399a00,4, 0x399a14,1, 0x399a1c,1, 0x399a24,1, 0x399a2c,1, 0x399a34,1, 0x399a3c,7, 0x399a60,6, 0x399a80,36, 0x399b40,15, 0x399b80,4, 0x399bc0,11, 0x399c00,9, 0x399c40,9, 0x399c80,9, 0x399cc0,9, 0x399d00,16, 0x399d54,1, 0x399d5c,1, 0x399d64,1, 0x399d6c,1, 0x399d80,26, 0x399e00,26, 0x399e80,26, 0x399f00,26, 0x39a000,1, 0x39a00c,4, 0x39a020,4, 0x39a038,3, 0x39a0a8,38, 0x39a180,64, 0x39a2c0,8, 0x39a2f8,317, 0x39a804,1, 0x39a810,6, 0x39a844,1, 0x39a850,6, 0x39a884,1, 0x39a894,5, 0x39a8c4,1, 0x39a8d4,5, 0x39a904,1, 0x39a92c,21, 0x39a984,1, 0x39a9ac,21, 0x39aa04,1, 0x39aa0c,1, 0x39aa14,1, 0x39aa1c,1, 0x39aa24,1, 0x39aa2c,1, 0x39aa34,1, 0x39aa3c,13, 0x39aa78,8, 0x39ab04,5, 0x39ab24,5, 0x39ab44,3, 0x39ab54,1, 0x39ab60,3, 0x39ab70,5, 0x39ab88,5, 0x39abc0,8, 0x39b000,34, 0x39b100,13, 0x39b140,15, 0x39b180,40, 0x39b240,11, 0x39b280,11, 0x39b300,10, 0x39b380,4, 0x39b3c0,3, 0x39b3d0,6, 0x39b400,28, 0x39b480,27, 0x39b500,20, 0x39b580,19, 0x39c000,19, 0x39cc00,10, 0x39cc80,3, 0x3a0000,3, 0x3a0010,1, 0x3a0030,13, 0x3a006c,4, 0x3a0100,40, 0x3a01fc,4, 0x3a0210,1, 0x3a0230,13, 0x3a026c,4, 0x3a0300,40, 0x3a03fc,4, 0x3a0410,1, 0x3a0430,13, 0x3a046c,4, 0x3a0500,40, 0x3a05fc,4, 0x3a0610,1, 0x3a0630,13, 0x3a066c,4, 0x3a0700,40, 0x3a07fc,4, 0x3a0810,1, 0x3a0830,13, 0x3a086c,4, 0x3a0900,40, 0x3a09fc,4, 0x3a0a10,1, 0x3a0a30,13, 0x3a0a6c,4, 0x3a0b00,40, 0x3a0bfc,4, 0x3a0c10,1, 0x3a0c30,13, 0x3a0c6c,4, 0x3a0d00,40, 0x3a0dfc,4, 0x3a0e10,1, 0x3a0e30,13, 0x3a0e6c,4, 0x3a0f00,40, 0x3a0ffc,20, 0x3a1c00,10, 0x3a1c80,3, 0x3a2000,6, 0x3a201c,12, 0x3a2080,1, 0x3a2088,1, 0x3a2090,2, 0x3a20a0,4, 0x3a2100,1, 0x3a210c,2, 0x3a211c,2, 0x3a212c,2, 0x3a213c,2, 0x3a214c,2, 0x3a215c,2, 0x3a216c,2, 0x3a217c,3, 0x3a218c,1, 0x3a2200,43, 0x3a2300,7, 0x3a2320,2, 0x3a232c,1, 0x3a2380,10, 0x3a23c0,1, 0x3a2400,109, 0x3a25c0,5, 0x3a2600,109, 0x3a27c0,5, 0x3a2800,3, 0x3a2814,16, 0x3a2874,1, 0x3a2880,3, 0x3a2894,16, 0x3a28f4,1, 0x3a2900,3, 0x3a2914,16, 0x3a2974,1, 0x3a2980,3, 0x3a2994,16, 0x3a29f4,1, 0x3a2a00,3, 0x3a2a14,16, 0x3a2a74,1, 0x3a2a80,3, 0x3a2a94,16, 0x3a2af4,1, 0x3a2b00,3, 0x3a2b14,16, 0x3a2b74,1, 0x3a2b80,3, 0x3a2b94,16, 0x3a2bf4,1, 0x3a2c00,10, 0x3a2c40,10, 0x3a2c80,10, 0x3a2cc0,10, 0x3a2d00,1, 0x3a2e00,1, 0x3a2e80,16, 0x3a2f00,6, 0x3a2f20,6, 0x3a2f40,6, 0x3a2f60,6, 0x3a2f80,6, 0x3a2fa0,6, 0x3a2fc0,6, 0x3a2fe0,6, 0x3a3000,60, 0x3a3100,60, 0x3a3200,31, 0x3a3400,60, 0x3a3500,60, 0x3a3600,31, 0x3a3800,4, 0x3a3900,53, 0x3a3a00,12, 0x3a4000,25, 0x3a4080,1, 0x3a4088,8, 0x3a40c0,6, 0x3a40e0,1, 0x3a40e8,2, 0x3a4104,5, 0x3a4200,11, 0x3a4240,1, 0x3a4248,1, 0x3a4400,4, 0x3a8000,2, 0x3a8010,41, 0x3a80b8,3, 0x3a8100,9, 0x3a8128,1, 0x3a8140,9, 0x3a8168,1, 0x3a8180,6, 0x3a81a0,6, 0x3a81c0,6, 0x3a81e0,4, 0x3a8200,2, 0x3a8210,41, 0x3a82b8,3, 0x3a8300,9, 0x3a8328,1, 0x3a8340,9, 0x3a8368,1, 0x3a8380,6, 0x3a83a0,6, 0x3a83c0,6, 0x3a83e0,4, 0x3a8400,9, 0x3a8428,1, 0x3a8440,2, 0x3a844c,3, 0x3a8464,1, 0x3a8474,30, 0x3a8504,1, 0x3a852c,53, 0x3a8604,1, 0x3a8670,36, 0x3a8708,2, 0x3a8800,3, 0x3a8814,10, 0x3a8840,11, 0x3a8870,35, 0x3a8900,8, 0x3a8924,5, 0x3a8980,2, 0x3a898c,2, 0x3a89a0,2, 0x3a89c0,1, 0x3a8a00,12, 0x3a8a34,22, 0x3a8ac0,7, 0x3a8b00,8, 0x3a8b24,5, 0x3a8b80,2, 0x3a8b8c,2, 0x3a8ba0,2, 0x3a8bc0,1, 0x3a8c00,12, 0x3a8c40,12, 0x3a8c80,12, 0x3a8cc0,12, 0x3a8d00,12, 0x3a8d40,12, 0x3a8d80,12, 0x3a8dc0,12, 0x3a8e00,1, 0x3a8e08,13, 0x3a8e40,12, 0x3a8e80,3, 0x3a8f00,7, 0x3a8f44,8, 0x3a8f80,6, 0x3a8fa0,2, 0x3a9000,9, 0x3a9040,9, 0x3a9080,9, 0x3a90c0,9, 0x3a9100,1, 0x3a9108,5, 0x3a9120,2, 0x3a9200,8, 0x3a9240,4, 0x3a9260,8, 0x3a9300,8, 0x3a9330,2, 0x3a9340,7, 0x3a9380,3, 0x3a9390,3, 0x3a93a0,3, 0x3a93b0,3, 0x3a93c0,5, 0x3a9400,69, 0x3a9600,4, 0x3a9640,13, 0x3a9680,7, 0x3a96a0,5, 0x3a96c0,1, 0x3a9800,9, 0x3a9840,9, 0x3a9880,9, 0x3a98c0,9, 0x3a9900,1, 0x3a9908,5, 0x3a9920,2, 0x3a9a00,8, 0x3a9a40,4, 0x3a9a60,8, 0x3a9b00,8, 0x3a9b30,2, 0x3a9b40,7, 0x3a9b80,3, 0x3a9b90,3, 0x3a9ba0,3, 0x3a9bb0,3, 0x3a9bc0,5, 0x3a9c00,69, 0x3a9e00,4, 0x3a9e40,13, 0x3a9e80,7, 0x3a9ea0,5, 0x3a9ec0,1, 0x3aa000,25, 0x3aa080,1, 0x3aa088,8, 0x3aa0c0,6, 0x3aa0e0,1, 0x3aa0e8,2, 0x3aa104,7, 0x3aa200,11, 0x3aa240,1, 0x3aa248,1, 0x3aa408,2, 0x3ab000,35, 0x3abc00,10, 0x3abc80,3, 0x3ac000,8, 0x3ac024,2, 0x3ac040,2, 0x3ac060,6, 0x3ac080,1, 0x3ac0f0,12, 0x3ac124,2, 0x3ac140,2, 0x3ac160,6, 0x3ac180,1, 0x3ac1f0,12, 0x3ac224,2, 0x3ac240,2, 0x3ac260,6, 0x3ac280,1, 0x3ac2f0,12, 0x3ac324,2, 0x3ac340,2, 0x3ac360,6, 0x3ac380,1, 0x3ac3f0,4, 0x3ac410,4, 0x3ac5f8,2, 0x3ac800,8, 0x3ac824,2, 0x3ac840,2, 0x3ac860,6, 0x3ac880,1, 0x3ac8f0,12, 0x3ac924,2, 0x3ac940,2, 0x3ac960,6, 0x3ac980,1, 0x3ac9f0,12, 0x3aca24,2, 0x3aca40,2, 0x3aca60,6, 0x3aca80,1, 0x3acaf0,12, 0x3acb24,2, 0x3acb40,2, 0x3acb60,6, 0x3acb80,1, 0x3acbf0,4, 0x3acc10,4, 0x3acdf8,2, 0x3ad004,1, 0x3ad040,16, 0x3ad204,3, 0x3ad214,1, 0x3ad21c,1, 0x3ad224,1, 0x3ad22c,1, 0x3ad400,56, 0x3ad4e4,6, 0x3ad600,37, 0x3ad700,17, 0x3ad748,2, 0x3ad780,16, 0x3ad800,25, 0x3ad880,1, 0x3ad888,8, 0x3ad8c0,6, 0x3ad8e0,1, 0x3ad8e8,2, 0x3ad904,26, 0x3ada00,4, 0x3adb00,61, 0x3adc00,4, 0x3adc40,12, 0x3adc80,5, 0x3adca0,1, 0x3adcb0,1, 0x3ae000,3, 0x3ae010,3, 0x3ae020,3, 0x3ae030,3, 0x3ae040,3, 0x3ae050,3, 0x3ae060,3, 0x3ae070,3, 0x3ae080,16, 0x3ae0c4,1, 0x3ae0d0,5, 0x3ae100,1, 0x3ae140,3, 0x3ae160,8, 0x3ae184,17, 0x3ae2c0,1, 0x3ae2c8,14, 0x3b0000,1, 0x3b0008,3, 0x3b0018,3, 0x3b0030,7, 0x3b0070,2, 0x3b0080,1, 0x3b0088,3, 0x3b0098,3, 0x3b00b0,7, 0x3b00f0,2, 0x3b0100,1, 0x3b0108,3, 0x3b0118,3, 0x3b0130,7, 0x3b0170,2, 0x3b0180,1, 0x3b0188,3, 0x3b0198,3, 0x3b01b0,7, 0x3b01f0,2, 0x3b0200,3, 0x3b0210,3, 0x3b0220,3, 0x3b0230,3, 0x3b0240,10, 0x3b026c,1, 0x3b0280,28, 0x3b02f4,8, 0x3b0320,27, 0x3b03dc,43, 0x3b0490,3, 0x3b04a0,2, 0x3b04b0,3, 0x3b04c0,2, 0x3b04d0,3, 0x3b04e0,2, 0x3b04f0,3, 0x3b0500,2, 0x3b0510,3, 0x3b0520,2, 0x3b0530,3, 0x3b0540,2, 0x3b0550,3, 0x3b0560,2, 0x3b0570,3, 0x3b0580,64, 0x3b0780,18, 0x3b07d0,4, 0x3b0800,13, 0x3b0880,1, 0x3b0888,8, 0x3b08c0,6, 0x3b08e0,1, 0x3b08e8,2, 0x3b0904,43, 0x3b0a00,4, 0x3b0a14,1, 0x3b0a1c,1, 0x3b0a24,1, 0x3b0a2c,1, 0x3b0a34,1, 0x3b0a3c,7, 0x3b0a60,6, 0x3b0a80,36, 0x3b0b40,15, 0x3b0b80,4, 0x3b0bc0,11, 0x3b0c00,9, 0x3b0c40,9, 0x3b0c80,9, 0x3b0cc0,9, 0x3b0d00,16, 0x3b0d54,1, 0x3b0d5c,1, 0x3b0d64,1, 0x3b0d6c,1, 0x3b0d80,26, 0x3b0e00,26, 0x3b0e80,26, 0x3b0f00,26, 0x3b1000,1, 0x3b1008,3, 0x3b1018,3, 0x3b1030,7, 0x3b1070,2, 0x3b1080,1, 0x3b1088,3, 0x3b1098,3, 0x3b10b0,7, 0x3b10f0,2, 0x3b1100,1, 0x3b1108,3, 0x3b1118,3, 0x3b1130,7, 0x3b1170,2, 0x3b1180,1, 0x3b1188,3, 0x3b1198,3, 0x3b11b0,7, 0x3b11f0,2, 0x3b1200,3, 0x3b1210,3, 0x3b1220,3, 0x3b1230,3, 0x3b1240,10, 0x3b126c,1, 0x3b1280,28, 0x3b12f4,8, 0x3b1320,27, 0x3b13dc,43, 0x3b1490,3, 0x3b14a0,2, 0x3b14b0,3, 0x3b14c0,2, 0x3b14d0,3, 0x3b14e0,2, 0x3b14f0,3, 0x3b1500,2, 0x3b1510,3, 0x3b1520,2, 0x3b1530,3, 0x3b1540,2, 0x3b1550,3, 0x3b1560,2, 0x3b1570,3, 0x3b1580,64, 0x3b1780,18, 0x3b17d0,4, 0x3b1800,13, 0x3b1880,1, 0x3b1888,8, 0x3b18c0,6, 0x3b18e0,1, 0x3b18e8,2, 0x3b1904,43, 0x3b1a00,4, 0x3b1a14,1, 0x3b1a1c,1, 0x3b1a24,1, 0x3b1a2c,1, 0x3b1a34,1, 0x3b1a3c,7, 0x3b1a60,6, 0x3b1a80,36, 0x3b1b40,15, 0x3b1b80,4, 0x3b1bc0,11, 0x3b1c00,9, 0x3b1c40,9, 0x3b1c80,9, 0x3b1cc0,9, 0x3b1d00,16, 0x3b1d54,1, 0x3b1d5c,1, 0x3b1d64,1, 0x3b1d6c,1, 0x3b1d80,26, 0x3b1e00,26, 0x3b1e80,26, 0x3b1f00,26, 0x3b2000,1, 0x3b200c,4, 0x3b2020,4, 0x3b2038,3, 0x3b20a8,38, 0x3b2180,64, 0x3b22c0,8, 0x3b22f8,317, 0x3b2804,1, 0x3b2810,6, 0x3b2844,1, 0x3b2850,6, 0x3b2884,1, 0x3b2894,5, 0x3b28c4,1, 0x3b28d4,5, 0x3b2904,1, 0x3b292c,21, 0x3b2984,1, 0x3b29ac,21, 0x3b2a04,1, 0x3b2a0c,1, 0x3b2a14,1, 0x3b2a1c,1, 0x3b2a24,1, 0x3b2a2c,1, 0x3b2a34,1, 0x3b2a3c,13, 0x3b2a78,8, 0x3b2b04,5, 0x3b2b24,5, 0x3b2b44,3, 0x3b2b54,1, 0x3b2b60,3, 0x3b2b70,5, 0x3b2b88,5, 0x3b2bc0,8, 0x3b3000,34, 0x3b3100,13, 0x3b3140,15, 0x3b3180,40, 0x3b3240,11, 0x3b3280,11, 0x3b3300,10, 0x3b3380,4, 0x3b33c0,3, 0x3b33d0,6, 0x3b3400,28, 0x3b3480,27, 0x3b3500,20, 0x3b3580,19, 0x3b4000,19, 0x3b4c00,10, 0x3b4c80,3, 0x3b8000,3, 0x3b8010,1, 0x3b8030,13, 0x3b806c,4, 0x3b8100,40, 0x3b81fc,4, 0x3b8210,1, 0x3b8230,13, 0x3b826c,4, 0x3b8300,40, 0x3b83fc,4, 0x3b8410,1, 0x3b8430,13, 0x3b846c,4, 0x3b8500,40, 0x3b85fc,4, 0x3b8610,1, 0x3b8630,13, 0x3b866c,4, 0x3b8700,40, 0x3b87fc,4, 0x3b8810,1, 0x3b8830,13, 0x3b886c,4, 0x3b8900,40, 0x3b89fc,4, 0x3b8a10,1, 0x3b8a30,13, 0x3b8a6c,4, 0x3b8b00,40, 0x3b8bfc,4, 0x3b8c10,1, 0x3b8c30,13, 0x3b8c6c,4, 0x3b8d00,40, 0x3b8dfc,4, 0x3b8e10,1, 0x3b8e30,13, 0x3b8e6c,4, 0x3b8f00,40, 0x3b8ffc,20, 0x3b9c00,10, 0x3b9c80,3, 0x3ba000,6, 0x3ba01c,12, 0x3ba080,1, 0x3ba088,1, 0x3ba090,2, 0x3ba0a0,4, 0x3ba100,1, 0x3ba10c,2, 0x3ba11c,2, 0x3ba12c,2, 0x3ba13c,2, 0x3ba14c,2, 0x3ba15c,2, 0x3ba16c,2, 0x3ba17c,3, 0x3ba18c,1, 0x3ba200,43, 0x3ba300,7, 0x3ba320,2, 0x3ba32c,1, 0x3ba380,10, 0x3ba3c0,1, 0x3ba400,109, 0x3ba5c0,5, 0x3ba600,109, 0x3ba7c0,5, 0x3ba800,3, 0x3ba814,16, 0x3ba874,1, 0x3ba880,3, 0x3ba894,16, 0x3ba8f4,1, 0x3ba900,3, 0x3ba914,16, 0x3ba974,1, 0x3ba980,3, 0x3ba994,16, 0x3ba9f4,1, 0x3baa00,3, 0x3baa14,16, 0x3baa74,1, 0x3baa80,3, 0x3baa94,16, 0x3baaf4,1, 0x3bab00,3, 0x3bab14,16, 0x3bab74,1, 0x3bab80,3, 0x3bab94,16, 0x3babf4,1, 0x3bac00,10, 0x3bac40,10, 0x3bac80,10, 0x3bacc0,10, 0x3bad00,1, 0x3bae00,1, 0x3bae80,16, 0x3baf00,6, 0x3baf20,6, 0x3baf40,6, 0x3baf60,6, 0x3baf80,6, 0x3bafa0,6, 0x3bafc0,6, 0x3bafe0,6, 0x3bb000,60, 0x3bb100,60, 0x3bb200,31, 0x3bb400,60, 0x3bb500,60, 0x3bb600,31, 0x3bb800,4, 0x3bb900,53, 0x3bba00,12, 0x3bc000,25, 0x3bc080,1, 0x3bc088,8, 0x3bc0c0,6, 0x3bc0e0,1, 0x3bc0e8,2, 0x3bc104,5, 0x3bc200,11, 0x3bc240,1, 0x3bc248,1, 0x3bc400,4, 0x400000,11, 0x400040,9, 0x400080,32, 0x400108,2, 0x400200,16, 0x400280,18, 0x4002cc,2, 0x400300,19, 0x400384,1, 0x40038c,11, 0x4003c0,7, 0x4003e4,1, 0x4003ec,24, 0x400480,3, 0x4004d0,6, 0x4004f8,1, 0x400500,12, 0x400538,13, 0x400570,1, 0x400600,1, 0x400800,11, 0x400840,9, 0x400880,32, 0x400908,2, 0x400a00,16, 0x400a80,18, 0x400acc,2, 0x400b00,19, 0x400b84,1, 0x400b8c,11, 0x400bc0,7, 0x400be4,1, 0x400bec,24, 0x400c80,3, 0x400cd0,6, 0x400cf8,1, 0x400d00,12, 0x400d38,13, 0x400d70,1, 0x400e00,1, 0x401000,11, 0x401040,9, 0x401080,32, 0x401108,2, 0x401200,16, 0x401280,18, 0x4012cc,2, 0x401300,19, 0x401384,1, 0x40138c,11, 0x4013c0,7, 0x4013e4,1, 0x4013ec,24, 0x401480,3, 0x4014d0,6, 0x4014f8,1, 0x401500,12, 0x401538,13, 0x401570,1, 0x401600,1, 0x401800,11, 0x401840,9, 0x401880,32, 0x401908,2, 0x401a00,16, 0x401a80,18, 0x401acc,2, 0x401b00,19, 0x401b84,1, 0x401b8c,11, 0x401bc0,7, 0x401be4,1, 0x401bec,24, 0x401c80,3, 0x401cd0,6, 0x401cf8,1, 0x401d00,12, 0x401d38,13, 0x401d70,1, 0x401e00,1, 0x402000,11, 0x402040,9, 0x402080,32, 0x402108,2, 0x402200,16, 0x402280,18, 0x4022cc,2, 0x402300,19, 0x402384,1, 0x40238c,11, 0x4023c0,7, 0x4023e4,1, 0x4023ec,24, 0x402480,3, 0x4024d0,6, 0x4024f8,1, 0x402500,12, 0x402538,13, 0x402570,1, 0x402600,1, 0x402800,11, 0x402840,9, 0x402880,32, 0x402908,2, 0x402a00,16, 0x402a80,18, 0x402acc,2, 0x402b00,19, 0x402b84,1, 0x402b8c,11, 0x402bc0,7, 0x402be4,1, 0x402bec,24, 0x402c80,3, 0x402cd0,6, 0x402cf8,1, 0x402d00,12, 0x402d38,13, 0x402d70,1, 0x402e00,1, 0x403000,11, 0x403040,9, 0x403080,32, 0x403108,2, 0x403200,16, 0x403280,18, 0x4032cc,2, 0x403300,19, 0x403384,1, 0x40338c,11, 0x4033c0,7, 0x4033e4,1, 0x4033ec,24, 0x403480,3, 0x4034d0,6, 0x4034f8,1, 0x403500,12, 0x403538,13, 0x403570,1, 0x403600,1, 0x403800,11, 0x403840,9, 0x403880,32, 0x403908,2, 0x403a00,16, 0x403a80,18, 0x403acc,2, 0x403b00,19, 0x403b84,1, 0x403b8c,11, 0x403bc0,7, 0x403be4,1, 0x403bec,24, 0x403c80,3, 0x403cd0,6, 0x403cf8,1, 0x403d00,12, 0x403d38,13, 0x403d70,1, 0x403e00,1, 0x404000,11, 0x404040,9, 0x404080,32, 0x404108,2, 0x404200,16, 0x404280,18, 0x4042cc,2, 0x404300,19, 0x404384,1, 0x40438c,11, 0x4043c0,7, 0x4043e4,1, 0x4043ec,24, 0x404480,3, 0x4044d0,6, 0x4044f8,1, 0x404500,12, 0x404538,13, 0x404570,1, 0x404600,1, 0x404800,11, 0x404840,9, 0x404880,32, 0x404908,2, 0x404a00,16, 0x404a80,18, 0x404acc,2, 0x404b00,19, 0x404b84,1, 0x404b8c,11, 0x404bc0,7, 0x404be4,1, 0x404bec,24, 0x404c80,3, 0x404cd0,6, 0x404cf8,1, 0x404d00,12, 0x404d38,13, 0x404d70,1, 0x404e00,1, 0x405000,11, 0x405040,9, 0x405080,32, 0x405108,2, 0x405200,16, 0x405280,18, 0x4052cc,2, 0x405300,19, 0x405384,1, 0x40538c,11, 0x4053c0,7, 0x4053e4,1, 0x4053ec,24, 0x405480,3, 0x4054d0,6, 0x4054f8,1, 0x405500,12, 0x405538,13, 0x405570,1, 0x405600,1, 0x405800,11, 0x405840,9, 0x405880,32, 0x405908,2, 0x405a00,16, 0x405a80,18, 0x405acc,2, 0x405b00,19, 0x405b84,1, 0x405b8c,11, 0x405bc0,7, 0x405be4,1, 0x405bec,24, 0x405c80,3, 0x405cd0,6, 0x405cf8,1, 0x405d00,12, 0x405d38,13, 0x405d70,1, 0x405e00,1, 0x406000,11, 0x406040,9, 0x406080,32, 0x406108,2, 0x406200,16, 0x406280,18, 0x4062cc,2, 0x406300,19, 0x406384,1, 0x40638c,11, 0x4063c0,7, 0x4063e4,1, 0x4063ec,24, 0x406480,3, 0x4064d0,6, 0x4064f8,1, 0x406500,12, 0x406538,13, 0x406570,1, 0x406600,1, 0x406800,11, 0x406840,9, 0x406880,32, 0x406908,2, 0x406a00,16, 0x406a80,18, 0x406acc,2, 0x406b00,19, 0x406b84,1, 0x406b8c,11, 0x406bc0,7, 0x406be4,1, 0x406bec,24, 0x406c80,3, 0x406cd0,6, 0x406cf8,1, 0x406d00,12, 0x406d38,13, 0x406d70,1, 0x406e00,1, 0x407000,11, 0x407040,9, 0x407080,32, 0x407108,2, 0x407200,16, 0x407280,18, 0x4072cc,2, 0x407300,19, 0x407384,1, 0x40738c,11, 0x4073c0,7, 0x4073e4,1, 0x4073ec,24, 0x407480,3, 0x4074d0,6, 0x4074f8,1, 0x407500,12, 0x407538,13, 0x407570,1, 0x407600,1, 0x407800,11, 0x407840,9, 0x407880,32, 0x407908,2, 0x407a00,16, 0x407a80,18, 0x407acc,2, 0x407b00,19, 0x407b84,1, 0x407b8c,11, 0x407bc0,7, 0x407be4,1, 0x407bec,24, 0x407c80,3, 0x407cd0,6, 0x407cf8,1, 0x407d00,12, 0x407d38,13, 0x407d70,1, 0x407e00,1, 0x408000,11, 0x408040,9, 0x408080,32, 0x408108,2, 0x408200,16, 0x408280,18, 0x4082cc,2, 0x408300,19, 0x408384,1, 0x40838c,11, 0x4083c0,7, 0x4083e4,1, 0x4083ec,24, 0x408480,3, 0x4084d0,6, 0x4084f8,1, 0x408500,12, 0x408538,13, 0x408570,1, 0x408600,1, 0x408800,11, 0x408840,9, 0x408880,32, 0x408908,2, 0x408a00,16, 0x408a80,18, 0x408acc,2, 0x408b00,19, 0x408b84,1, 0x408b8c,11, 0x408bc0,7, 0x408be4,1, 0x408bec,24, 0x408c80,3, 0x408cd0,6, 0x408cf8,1, 0x408d00,12, 0x408d38,13, 0x408d70,1, 0x408e00,1, 0x409000,11, 0x409040,9, 0x409080,32, 0x409108,2, 0x409200,16, 0x409280,18, 0x4092cc,2, 0x409300,19, 0x409384,1, 0x40938c,11, 0x4093c0,7, 0x4093e4,1, 0x4093ec,24, 0x409480,3, 0x4094d0,6, 0x4094f8,1, 0x409500,12, 0x409538,13, 0x409570,1, 0x409600,1, 0x409800,11, 0x409840,9, 0x409880,32, 0x409908,2, 0x409a00,16, 0x409a80,18, 0x409acc,2, 0x409b00,19, 0x409b84,1, 0x409b8c,11, 0x409bc0,7, 0x409be4,1, 0x409bec,24, 0x409c80,3, 0x409cd0,6, 0x409cf8,1, 0x409d00,12, 0x409d38,13, 0x409d70,1, 0x409e00,1, 0x40a000,11, 0x40a040,9, 0x40a080,32, 0x40a108,2, 0x40a200,16, 0x40a280,18, 0x40a2cc,2, 0x40a300,19, 0x40a384,1, 0x40a38c,11, 0x40a3c0,7, 0x40a3e4,1, 0x40a3ec,24, 0x40a480,3, 0x40a4d0,6, 0x40a4f8,1, 0x40a500,12, 0x40a538,13, 0x40a570,1, 0x40a600,1, 0x40a800,11, 0x40a840,9, 0x40a880,32, 0x40a908,2, 0x40aa00,16, 0x40aa80,18, 0x40aacc,2, 0x40ab00,19, 0x40ab84,1, 0x40ab8c,11, 0x40abc0,7, 0x40abe4,1, 0x40abec,24, 0x40ac80,3, 0x40acd0,6, 0x40acf8,1, 0x40ad00,12, 0x40ad38,13, 0x40ad70,1, 0x40ae00,1, 0x40b000,11, 0x40b040,9, 0x40b080,32, 0x40b108,2, 0x40b200,16, 0x40b280,18, 0x40b2cc,2, 0x40b300,19, 0x40b384,1, 0x40b38c,11, 0x40b3c0,7, 0x40b3e4,1, 0x40b3ec,24, 0x40b480,3, 0x40b4d0,6, 0x40b4f8,1, 0x40b500,12, 0x40b538,13, 0x40b570,1, 0x40b600,1, 0x40b800,11, 0x40b840,9, 0x40b880,32, 0x40b908,2, 0x40ba00,16, 0x40ba80,18, 0x40bacc,2, 0x40bb00,19, 0x40bb84,1, 0x40bb8c,11, 0x40bbc0,7, 0x40bbe4,1, 0x40bbec,24, 0x40bc80,3, 0x40bcd0,6, 0x40bcf8,1, 0x40bd00,12, 0x40bd38,13, 0x40bd70,1, 0x40be00,1, 0x40c000,11, 0x40c040,9, 0x40c080,32, 0x40c108,2, 0x40c200,16, 0x40c280,18, 0x40c2cc,2, 0x40c300,19, 0x40c384,1, 0x40c38c,11, 0x40c3c0,7, 0x40c3e4,1, 0x40c3ec,24, 0x40c480,3, 0x40c4d0,6, 0x40c4f8,1, 0x40c500,12, 0x40c538,13, 0x40c570,1, 0x40c600,1, 0x40c800,11, 0x40c840,9, 0x40c880,32, 0x40c908,2, 0x40ca00,16, 0x40ca80,18, 0x40cacc,2, 0x40cb00,19, 0x40cb84,1, 0x40cb8c,11, 0x40cbc0,7, 0x40cbe4,1, 0x40cbec,24, 0x40cc80,3, 0x40ccd0,6, 0x40ccf8,1, 0x40cd00,12, 0x40cd38,13, 0x40cd70,1, 0x40ce00,1, 0x40d000,11, 0x40d040,9, 0x40d080,32, 0x40d108,2, 0x40d200,16, 0x40d280,18, 0x40d2cc,2, 0x40d300,19, 0x40d384,1, 0x40d38c,11, 0x40d3c0,7, 0x40d3e4,1, 0x40d3ec,24, 0x40d480,3, 0x40d4d0,6, 0x40d4f8,1, 0x40d500,12, 0x40d538,13, 0x40d570,1, 0x40d600,1, 0x40d800,11, 0x40d840,9, 0x40d880,32, 0x40d908,2, 0x40da00,16, 0x40da80,18, 0x40dacc,2, 0x40db00,19, 0x40db84,1, 0x40db8c,11, 0x40dbc0,7, 0x40dbe4,1, 0x40dbec,24, 0x40dc80,3, 0x40dcd0,6, 0x40dcf8,1, 0x40dd00,12, 0x40dd38,13, 0x40dd70,1, 0x40de00,1, 0x40e000,11, 0x40e040,9, 0x40e080,32, 0x40e108,2, 0x40e200,16, 0x40e280,18, 0x40e2cc,2, 0x40e300,19, 0x40e384,1, 0x40e38c,11, 0x40e3c0,7, 0x40e3e4,1, 0x40e3ec,24, 0x40e480,3, 0x40e4d0,6, 0x40e4f8,1, 0x40e500,12, 0x40e538,13, 0x40e570,1, 0x40e600,1, 0x40e800,11, 0x40e840,9, 0x40e880,32, 0x40e908,2, 0x40ea00,16, 0x40ea80,18, 0x40eacc,2, 0x40eb00,19, 0x40eb84,1, 0x40eb8c,11, 0x40ebc0,7, 0x40ebe4,1, 0x40ebec,24, 0x40ec80,3, 0x40ecd0,6, 0x40ecf8,1, 0x40ed00,12, 0x40ed38,13, 0x40ed70,1, 0x40ee00,1, 0x40f000,11, 0x40f040,9, 0x40f080,32, 0x40f108,2, 0x40f200,16, 0x40f280,18, 0x40f2cc,2, 0x40f300,19, 0x40f384,1, 0x40f38c,11, 0x40f3c0,7, 0x40f3e4,1, 0x40f3ec,24, 0x40f480,3, 0x40f4d0,6, 0x40f4f8,1, 0x40f500,12, 0x40f538,13, 0x40f570,1, 0x40f600,1, 0x40f800,11, 0x40f840,9, 0x40f880,32, 0x40f908,2, 0x40fa00,16, 0x40fa80,18, 0x40facc,2, 0x40fb00,19, 0x40fb84,1, 0x40fb8c,11, 0x40fbc0,7, 0x40fbe4,1, 0x40fbec,24, 0x40fc80,3, 0x40fcd0,6, 0x40fcf8,1, 0x40fd00,12, 0x40fd38,13, 0x40fd70,1, 0x40fe00,1, 0x410000,11, 0x410040,9, 0x410080,32, 0x410108,2, 0x410200,16, 0x410280,18, 0x4102cc,2, 0x410300,19, 0x410384,1, 0x41038c,11, 0x4103c0,7, 0x4103e4,1, 0x4103ec,24, 0x410480,3, 0x4104d0,6, 0x4104f8,1, 0x410500,12, 0x410538,13, 0x410570,1, 0x410600,1, 0x410800,11, 0x410840,9, 0x410880,32, 0x410908,2, 0x410a00,16, 0x410a80,18, 0x410acc,2, 0x410b00,19, 0x410b84,1, 0x410b8c,11, 0x410bc0,7, 0x410be4,1, 0x410bec,24, 0x410c80,3, 0x410cd0,6, 0x410cf8,1, 0x410d00,12, 0x410d38,13, 0x410d70,1, 0x410e00,1, 0x411000,11, 0x411040,9, 0x411080,32, 0x411108,2, 0x411200,16, 0x411280,18, 0x4112cc,2, 0x411300,19, 0x411384,1, 0x41138c,11, 0x4113c0,7, 0x4113e4,1, 0x4113ec,24, 0x411480,3, 0x4114d0,6, 0x4114f8,1, 0x411500,12, 0x411538,13, 0x411570,1, 0x411600,1, 0x411800,11, 0x411840,9, 0x411880,32, 0x411908,2, 0x411a00,16, 0x411a80,18, 0x411acc,2, 0x411b00,19, 0x411b84,1, 0x411b8c,11, 0x411bc0,7, 0x411be4,1, 0x411bec,24, 0x411c80,3, 0x411cd0,6, 0x411cf8,1, 0x411d00,12, 0x411d38,13, 0x411d70,1, 0x411e00,1, 0x412000,11, 0x412040,9, 0x412080,32, 0x412108,2, 0x412200,16, 0x412280,18, 0x4122cc,2, 0x412300,19, 0x412384,1, 0x41238c,11, 0x4123c0,7, 0x4123e4,1, 0x4123ec,24, 0x412480,3, 0x4124d0,6, 0x4124f8,1, 0x412500,12, 0x412538,13, 0x412570,1, 0x412600,1, 0x412800,11, 0x412840,9, 0x412880,32, 0x412908,2, 0x412a00,16, 0x412a80,18, 0x412acc,2, 0x412b00,19, 0x412b84,1, 0x412b8c,11, 0x412bc0,7, 0x412be4,1, 0x412bec,24, 0x412c80,3, 0x412cd0,6, 0x412cf8,1, 0x412d00,12, 0x412d38,13, 0x412d70,1, 0x412e00,1, 0x413000,11, 0x413040,9, 0x413080,32, 0x413108,2, 0x413200,16, 0x413280,18, 0x4132cc,2, 0x413300,19, 0x413384,1, 0x41338c,11, 0x4133c0,7, 0x4133e4,1, 0x4133ec,24, 0x413480,3, 0x4134d0,6, 0x4134f8,1, 0x413500,12, 0x413538,13, 0x413570,1, 0x413600,1, 0x413800,11, 0x413840,9, 0x413880,32, 0x413908,2, 0x413a00,16, 0x413a80,18, 0x413acc,2, 0x413b00,19, 0x413b84,1, 0x413b8c,11, 0x413bc0,7, 0x413be4,1, 0x413bec,24, 0x413c80,3, 0x413cd0,6, 0x413cf8,1, 0x413d00,12, 0x413d38,13, 0x413d70,1, 0x413e00,1, 0x414000,11, 0x414040,9, 0x414080,32, 0x414108,2, 0x414200,16, 0x414280,18, 0x4142cc,2, 0x414300,19, 0x414384,1, 0x41438c,11, 0x4143c0,7, 0x4143e4,1, 0x4143ec,24, 0x414480,3, 0x4144d0,6, 0x4144f8,1, 0x414500,12, 0x414538,13, 0x414570,1, 0x414600,1, 0x414800,11, 0x414840,9, 0x414880,32, 0x414908,2, 0x414a00,16, 0x414a80,18, 0x414acc,2, 0x414b00,19, 0x414b84,1, 0x414b8c,11, 0x414bc0,7, 0x414be4,1, 0x414bec,24, 0x414c80,3, 0x414cd0,6, 0x414cf8,1, 0x414d00,12, 0x414d38,13, 0x414d70,1, 0x414e00,1, 0x415000,11, 0x415040,9, 0x415080,32, 0x415108,2, 0x415200,16, 0x415280,18, 0x4152cc,2, 0x415300,19, 0x415384,1, 0x41538c,11, 0x4153c0,7, 0x4153e4,1, 0x4153ec,24, 0x415480,3, 0x4154d0,6, 0x4154f8,1, 0x415500,12, 0x415538,13, 0x415570,1, 0x415600,1, 0x415800,11, 0x415840,9, 0x415880,32, 0x415908,2, 0x415a00,16, 0x415a80,18, 0x415acc,2, 0x415b00,19, 0x415b84,1, 0x415b8c,11, 0x415bc0,7, 0x415be4,1, 0x415bec,24, 0x415c80,3, 0x415cd0,6, 0x415cf8,1, 0x415d00,12, 0x415d38,13, 0x415d70,1, 0x415e00,1, 0x416000,11, 0x416040,9, 0x416080,32, 0x416108,2, 0x416200,16, 0x416280,18, 0x4162cc,2, 0x416300,19, 0x416384,1, 0x41638c,11, 0x4163c0,7, 0x4163e4,1, 0x4163ec,24, 0x416480,3, 0x4164d0,6, 0x4164f8,1, 0x416500,12, 0x416538,13, 0x416570,1, 0x416600,1, 0x416800,11, 0x416840,9, 0x416880,32, 0x416908,2, 0x416a00,16, 0x416a80,18, 0x416acc,2, 0x416b00,19, 0x416b84,1, 0x416b8c,11, 0x416bc0,7, 0x416be4,1, 0x416bec,24, 0x416c80,3, 0x416cd0,6, 0x416cf8,1, 0x416d00,12, 0x416d38,13, 0x416d70,1, 0x416e00,1, 0x417000,11, 0x417040,9, 0x417080,32, 0x417108,2, 0x417200,16, 0x417280,18, 0x4172cc,2, 0x417300,19, 0x417384,1, 0x41738c,11, 0x4173c0,7, 0x4173e4,1, 0x4173ec,24, 0x417480,3, 0x4174d0,6, 0x4174f8,1, 0x417500,12, 0x417538,13, 0x417570,1, 0x417600,1, 0x417800,11, 0x417840,9, 0x417880,32, 0x417908,2, 0x417a00,16, 0x417a80,18, 0x417acc,2, 0x417b00,19, 0x417b84,1, 0x417b8c,11, 0x417bc0,7, 0x417be4,1, 0x417bec,24, 0x417c80,3, 0x417cd0,6, 0x417cf8,1, 0x417d00,12, 0x417d38,13, 0x417d70,1, 0x417e00,1, 0x418000,11, 0x418040,9, 0x418080,32, 0x418108,2, 0x418200,16, 0x418280,18, 0x4182cc,2, 0x418300,19, 0x418384,1, 0x41838c,11, 0x4183c0,7, 0x4183e4,1, 0x4183ec,24, 0x418480,3, 0x4184d0,6, 0x4184f8,1, 0x418500,12, 0x418538,13, 0x418570,1, 0x418600,1, 0x418800,11, 0x418840,9, 0x418880,32, 0x418908,2, 0x418a00,16, 0x418a80,18, 0x418acc,2, 0x418b00,19, 0x418b84,1, 0x418b8c,11, 0x418bc0,7, 0x418be4,1, 0x418bec,24, 0x418c80,3, 0x418cd0,6, 0x418cf8,1, 0x418d00,12, 0x418d38,13, 0x418d70,1, 0x418e00,1, 0x419000,11, 0x419040,9, 0x419080,32, 0x419108,2, 0x419200,16, 0x419280,18, 0x4192cc,2, 0x419300,19, 0x419384,1, 0x41938c,11, 0x4193c0,7, 0x4193e4,1, 0x4193ec,24, 0x419480,3, 0x4194d0,6, 0x4194f8,1, 0x419500,12, 0x419538,13, 0x419570,1, 0x419600,1, 0x419800,11, 0x419840,9, 0x419880,32, 0x419908,2, 0x419a00,16, 0x419a80,18, 0x419acc,2, 0x419b00,19, 0x419b84,1, 0x419b8c,11, 0x419bc0,7, 0x419be4,1, 0x419bec,24, 0x419c80,3, 0x419cd0,6, 0x419cf8,1, 0x419d00,12, 0x419d38,13, 0x419d70,1, 0x419e00,1, 0x41a000,11, 0x41a040,9, 0x41a080,32, 0x41a108,2, 0x41a200,16, 0x41a280,18, 0x41a2cc,2, 0x41a300,19, 0x41a384,1, 0x41a38c,11, 0x41a3c0,7, 0x41a3e4,1, 0x41a3ec,24, 0x41a480,3, 0x41a4d0,6, 0x41a4f8,1, 0x41a500,12, 0x41a538,13, 0x41a570,1, 0x41a600,1, 0x41a800,11, 0x41a840,9, 0x41a880,32, 0x41a908,2, 0x41aa00,16, 0x41aa80,18, 0x41aacc,2, 0x41ab00,19, 0x41ab84,1, 0x41ab8c,11, 0x41abc0,7, 0x41abe4,1, 0x41abec,24, 0x41ac80,3, 0x41acd0,6, 0x41acf8,1, 0x41ad00,12, 0x41ad38,13, 0x41ad70,1, 0x41ae00,1, 0x41b000,11, 0x41b040,9, 0x41b080,32, 0x41b108,2, 0x41b200,16, 0x41b280,18, 0x41b2cc,2, 0x41b300,19, 0x41b384,1, 0x41b38c,11, 0x41b3c0,7, 0x41b3e4,1, 0x41b3ec,24, 0x41b480,3, 0x41b4d0,6, 0x41b4f8,1, 0x41b500,12, 0x41b538,13, 0x41b570,1, 0x41b600,1, 0x41b800,11, 0x41b840,9, 0x41b880,32, 0x41b908,2, 0x41ba00,16, 0x41ba80,18, 0x41bacc,2, 0x41bb00,19, 0x41bb84,1, 0x41bb8c,11, 0x41bbc0,7, 0x41bbe4,1, 0x41bbec,24, 0x41bc80,3, 0x41bcd0,6, 0x41bcf8,1, 0x41bd00,12, 0x41bd38,13, 0x41bd70,1, 0x41be00,1, 0x41c000,11, 0x41c040,9, 0x41c080,32, 0x41c108,2, 0x41c200,16, 0x41c280,18, 0x41c2cc,2, 0x41c300,19, 0x41c384,1, 0x41c38c,11, 0x41c3c0,7, 0x41c3e4,1, 0x41c3ec,24, 0x41c480,3, 0x41c4d0,6, 0x41c4f8,1, 0x41c500,12, 0x41c538,13, 0x41c570,1, 0x41c600,1, 0x41c800,11, 0x41c840,9, 0x41c880,32, 0x41c908,2, 0x41ca00,16, 0x41ca80,18, 0x41cacc,2, 0x41cb00,19, 0x41cb84,1, 0x41cb8c,11, 0x41cbc0,7, 0x41cbe4,1, 0x41cbec,24, 0x41cc80,3, 0x41ccd0,6, 0x41ccf8,1, 0x41cd00,12, 0x41cd38,13, 0x41cd70,1, 0x41ce00,1, 0x41d000,11, 0x41d040,9, 0x41d080,32, 0x41d108,2, 0x41d200,16, 0x41d280,18, 0x41d2cc,2, 0x41d300,19, 0x41d384,1, 0x41d38c,11, 0x41d3c0,7, 0x41d3e4,1, 0x41d3ec,24, 0x41d480,3, 0x41d4d0,6, 0x41d4f8,1, 0x41d500,12, 0x41d538,13, 0x41d570,1, 0x41d600,1, 0x41d800,11, 0x41d840,9, 0x41d880,32, 0x41d908,2, 0x41da00,16, 0x41da80,18, 0x41dacc,2, 0x41db00,19, 0x41db84,1, 0x41db8c,11, 0x41dbc0,7, 0x41dbe4,1, 0x41dbec,24, 0x41dc80,3, 0x41dcd0,6, 0x41dcf8,1, 0x41dd00,12, 0x41dd38,13, 0x41dd70,1, 0x41de00,1, 0x41e000,11, 0x41e040,9, 0x41e080,32, 0x41e108,2, 0x41e200,16, 0x41e280,18, 0x41e2cc,2, 0x41e300,19, 0x41e384,1, 0x41e38c,11, 0x41e3c0,7, 0x41e3e4,1, 0x41e3ec,24, 0x41e480,3, 0x41e4d0,6, 0x41e4f8,1, 0x41e500,12, 0x41e538,13, 0x41e570,1, 0x41e600,1, 0x41e800,11, 0x41e840,9, 0x41e880,32, 0x41e908,2, 0x41ea00,16, 0x41ea80,18, 0x41eacc,2, 0x41eb00,19, 0x41eb84,1, 0x41eb8c,11, 0x41ebc0,7, 0x41ebe4,1, 0x41ebec,24, 0x41ec80,3, 0x41ecd0,6, 0x41ecf8,1, 0x41ed00,12, 0x41ed38,13, 0x41ed70,1, 0x41ee00,1, 0x41f000,11, 0x41f040,9, 0x41f080,32, 0x41f108,2, 0x41f200,16, 0x41f280,18, 0x41f2cc,2, 0x41f300,19, 0x41f384,1, 0x41f38c,11, 0x41f3c0,7, 0x41f3e4,1, 0x41f3ec,24, 0x41f480,3, 0x41f4d0,6, 0x41f4f8,1, 0x41f500,12, 0x41f538,13, 0x41f570,1, 0x41f600,1, 0x41f800,11, 0x41f840,9, 0x41f880,32, 0x41f908,2, 0x41fa00,16, 0x41fa80,18, 0x41facc,2, 0x41fb00,19, 0x41fb84,1, 0x41fb8c,11, 0x41fbc0,7, 0x41fbe4,1, 0x41fbec,24, 0x41fc80,3, 0x41fcd0,6, 0x41fcf8,1, 0x41fd00,12, 0x41fd38,13, 0x41fd70,1, 0x41fe00,1, 0x420000,11, 0x420040,9, 0x420080,32, 0x420108,2, 0x420200,16, 0x420280,18, 0x4202cc,2, 0x420300,19, 0x420384,1, 0x42038c,11, 0x4203c0,7, 0x4203e4,1, 0x4203ec,24, 0x420480,3, 0x4204d0,6, 0x4204f8,1, 0x420500,12, 0x420538,13, 0x420570,1, 0x420600,1, 0x420800,11, 0x420840,9, 0x420880,32, 0x420908,2, 0x420a00,16, 0x420a80,18, 0x420acc,2, 0x420b00,19, 0x420b84,1, 0x420b8c,11, 0x420bc0,7, 0x420be4,1, 0x420bec,24, 0x420c80,3, 0x420cd0,6, 0x420cf8,1, 0x420d00,12, 0x420d38,13, 0x420d70,1, 0x420e00,1, 0x421000,11, 0x421040,9, 0x421080,32, 0x421108,2, 0x421200,16, 0x421280,18, 0x4212cc,2, 0x421300,19, 0x421384,1, 0x42138c,11, 0x4213c0,7, 0x4213e4,1, 0x4213ec,24, 0x421480,3, 0x4214d0,6, 0x4214f8,1, 0x421500,12, 0x421538,13, 0x421570,1, 0x421600,1, 0x421800,11, 0x421840,9, 0x421880,32, 0x421908,2, 0x421a00,16, 0x421a80,18, 0x421acc,2, 0x421b00,19, 0x421b84,1, 0x421b8c,11, 0x421bc0,7, 0x421be4,1, 0x421bec,24, 0x421c80,3, 0x421cd0,6, 0x421cf8,1, 0x421d00,12, 0x421d38,13, 0x421d70,1, 0x421e00,1, 0x422000,2, 0x423000,13, 0x423040,14, 0x423080,27, 0x423100,3, 0x423110,3, 0x423120,3, 0x423130,3, 0x423140,4, 0x424000,19, 0x424c00,10, 0x424c80,3, 0x440000,11, 0x440040,9, 0x440080,32, 0x440108,2, 0x440200,16, 0x440280,18, 0x4402cc,2, 0x440300,19, 0x440384,1, 0x44038c,11, 0x4403c0,7, 0x4403e4,1, 0x4403ec,24, 0x440480,3, 0x4404d0,6, 0x4404f8,1, 0x440500,12, 0x440538,13, 0x440570,1, 0x440600,1, 0x440800,11, 0x440840,9, 0x440880,32, 0x440908,2, 0x440a00,16, 0x440a80,18, 0x440acc,2, 0x440b00,19, 0x440b84,1, 0x440b8c,11, 0x440bc0,7, 0x440be4,1, 0x440bec,24, 0x440c80,3, 0x440cd0,6, 0x440cf8,1, 0x440d00,12, 0x440d38,13, 0x440d70,1, 0x440e00,1, 0x441000,11, 0x441040,9, 0x441080,32, 0x441108,2, 0x441200,16, 0x441280,18, 0x4412cc,2, 0x441300,19, 0x441384,1, 0x44138c,11, 0x4413c0,7, 0x4413e4,1, 0x4413ec,24, 0x441480,3, 0x4414d0,6, 0x4414f8,1, 0x441500,12, 0x441538,13, 0x441570,1, 0x441600,1, 0x441800,11, 0x441840,9, 0x441880,32, 0x441908,2, 0x441a00,16, 0x441a80,18, 0x441acc,2, 0x441b00,19, 0x441b84,1, 0x441b8c,11, 0x441bc0,7, 0x441be4,1, 0x441bec,24, 0x441c80,3, 0x441cd0,6, 0x441cf8,1, 0x441d00,12, 0x441d38,13, 0x441d70,1, 0x441e00,1, 0x442000,11, 0x442040,9, 0x442080,32, 0x442108,2, 0x442200,16, 0x442280,18, 0x4422cc,2, 0x442300,19, 0x442384,1, 0x44238c,11, 0x4423c0,7, 0x4423e4,1, 0x4423ec,24, 0x442480,3, 0x4424d0,6, 0x4424f8,1, 0x442500,12, 0x442538,13, 0x442570,1, 0x442600,1, 0x442800,11, 0x442840,9, 0x442880,32, 0x442908,2, 0x442a00,16, 0x442a80,18, 0x442acc,2, 0x442b00,19, 0x442b84,1, 0x442b8c,11, 0x442bc0,7, 0x442be4,1, 0x442bec,24, 0x442c80,3, 0x442cd0,6, 0x442cf8,1, 0x442d00,12, 0x442d38,13, 0x442d70,1, 0x442e00,1, 0x443000,11, 0x443040,9, 0x443080,32, 0x443108,2, 0x443200,16, 0x443280,18, 0x4432cc,2, 0x443300,19, 0x443384,1, 0x44338c,11, 0x4433c0,7, 0x4433e4,1, 0x4433ec,24, 0x443480,3, 0x4434d0,6, 0x4434f8,1, 0x443500,12, 0x443538,13, 0x443570,1, 0x443600,1, 0x443800,11, 0x443840,9, 0x443880,32, 0x443908,2, 0x443a00,16, 0x443a80,18, 0x443acc,2, 0x443b00,19, 0x443b84,1, 0x443b8c,11, 0x443bc0,7, 0x443be4,1, 0x443bec,24, 0x443c80,3, 0x443cd0,6, 0x443cf8,1, 0x443d00,12, 0x443d38,13, 0x443d70,1, 0x443e00,1, 0x444000,11, 0x444040,9, 0x444080,32, 0x444108,2, 0x444200,16, 0x444280,18, 0x4442cc,2, 0x444300,19, 0x444384,1, 0x44438c,11, 0x4443c0,7, 0x4443e4,1, 0x4443ec,24, 0x444480,3, 0x4444d0,6, 0x4444f8,1, 0x444500,12, 0x444538,13, 0x444570,1, 0x444600,1, 0x444800,11, 0x444840,9, 0x444880,32, 0x444908,2, 0x444a00,16, 0x444a80,18, 0x444acc,2, 0x444b00,19, 0x444b84,1, 0x444b8c,11, 0x444bc0,7, 0x444be4,1, 0x444bec,24, 0x444c80,3, 0x444cd0,6, 0x444cf8,1, 0x444d00,12, 0x444d38,13, 0x444d70,1, 0x444e00,1, 0x445000,11, 0x445040,9, 0x445080,32, 0x445108,2, 0x445200,16, 0x445280,18, 0x4452cc,2, 0x445300,19, 0x445384,1, 0x44538c,11, 0x4453c0,7, 0x4453e4,1, 0x4453ec,24, 0x445480,3, 0x4454d0,6, 0x4454f8,1, 0x445500,12, 0x445538,13, 0x445570,1, 0x445600,1, 0x445800,11, 0x445840,9, 0x445880,32, 0x445908,2, 0x445a00,16, 0x445a80,18, 0x445acc,2, 0x445b00,19, 0x445b84,1, 0x445b8c,11, 0x445bc0,7, 0x445be4,1, 0x445bec,24, 0x445c80,3, 0x445cd0,6, 0x445cf8,1, 0x445d00,12, 0x445d38,13, 0x445d70,1, 0x445e00,1, 0x446000,11, 0x446040,9, 0x446080,32, 0x446108,2, 0x446200,16, 0x446280,18, 0x4462cc,2, 0x446300,19, 0x446384,1, 0x44638c,11, 0x4463c0,7, 0x4463e4,1, 0x4463ec,24, 0x446480,3, 0x4464d0,6, 0x4464f8,1, 0x446500,12, 0x446538,13, 0x446570,1, 0x446600,1, 0x446800,11, 0x446840,9, 0x446880,32, 0x446908,2, 0x446a00,16, 0x446a80,18, 0x446acc,2, 0x446b00,19, 0x446b84,1, 0x446b8c,11, 0x446bc0,7, 0x446be4,1, 0x446bec,24, 0x446c80,3, 0x446cd0,6, 0x446cf8,1, 0x446d00,12, 0x446d38,13, 0x446d70,1, 0x446e00,1, 0x447000,11, 0x447040,9, 0x447080,32, 0x447108,2, 0x447200,16, 0x447280,18, 0x4472cc,2, 0x447300,19, 0x447384,1, 0x44738c,11, 0x4473c0,7, 0x4473e4,1, 0x4473ec,24, 0x447480,3, 0x4474d0,6, 0x4474f8,1, 0x447500,12, 0x447538,13, 0x447570,1, 0x447600,1, 0x447800,11, 0x447840,9, 0x447880,32, 0x447908,2, 0x447a00,16, 0x447a80,18, 0x447acc,2, 0x447b00,19, 0x447b84,1, 0x447b8c,11, 0x447bc0,7, 0x447be4,1, 0x447bec,24, 0x447c80,3, 0x447cd0,6, 0x447cf8,1, 0x447d00,12, 0x447d38,13, 0x447d70,1, 0x447e00,1, 0x448000,11, 0x448040,9, 0x448080,32, 0x448108,2, 0x448200,16, 0x448280,18, 0x4482cc,2, 0x448300,19, 0x448384,1, 0x44838c,11, 0x4483c0,7, 0x4483e4,1, 0x4483ec,24, 0x448480,3, 0x4484d0,6, 0x4484f8,1, 0x448500,12, 0x448538,13, 0x448570,1, 0x448600,1, 0x448800,11, 0x448840,9, 0x448880,32, 0x448908,2, 0x448a00,16, 0x448a80,18, 0x448acc,2, 0x448b00,19, 0x448b84,1, 0x448b8c,11, 0x448bc0,7, 0x448be4,1, 0x448bec,24, 0x448c80,3, 0x448cd0,6, 0x448cf8,1, 0x448d00,12, 0x448d38,13, 0x448d70,1, 0x448e00,1, 0x449000,11, 0x449040,9, 0x449080,32, 0x449108,2, 0x449200,16, 0x449280,18, 0x4492cc,2, 0x449300,19, 0x449384,1, 0x44938c,11, 0x4493c0,7, 0x4493e4,1, 0x4493ec,24, 0x449480,3, 0x4494d0,6, 0x4494f8,1, 0x449500,12, 0x449538,13, 0x449570,1, 0x449600,1, 0x449800,11, 0x449840,9, 0x449880,32, 0x449908,2, 0x449a00,16, 0x449a80,18, 0x449acc,2, 0x449b00,19, 0x449b84,1, 0x449b8c,11, 0x449bc0,7, 0x449be4,1, 0x449bec,24, 0x449c80,3, 0x449cd0,6, 0x449cf8,1, 0x449d00,12, 0x449d38,13, 0x449d70,1, 0x449e00,1, 0x44a000,11, 0x44a040,9, 0x44a080,32, 0x44a108,2, 0x44a200,16, 0x44a280,18, 0x44a2cc,2, 0x44a300,19, 0x44a384,1, 0x44a38c,11, 0x44a3c0,7, 0x44a3e4,1, 0x44a3ec,24, 0x44a480,3, 0x44a4d0,6, 0x44a4f8,1, 0x44a500,12, 0x44a538,13, 0x44a570,1, 0x44a600,1, 0x44a800,11, 0x44a840,9, 0x44a880,32, 0x44a908,2, 0x44aa00,16, 0x44aa80,18, 0x44aacc,2, 0x44ab00,19, 0x44ab84,1, 0x44ab8c,11, 0x44abc0,7, 0x44abe4,1, 0x44abec,24, 0x44ac80,3, 0x44acd0,6, 0x44acf8,1, 0x44ad00,12, 0x44ad38,13, 0x44ad70,1, 0x44ae00,1, 0x44b000,11, 0x44b040,9, 0x44b080,32, 0x44b108,2, 0x44b200,16, 0x44b280,18, 0x44b2cc,2, 0x44b300,19, 0x44b384,1, 0x44b38c,11, 0x44b3c0,7, 0x44b3e4,1, 0x44b3ec,24, 0x44b480,3, 0x44b4d0,6, 0x44b4f8,1, 0x44b500,12, 0x44b538,13, 0x44b570,1, 0x44b600,1, 0x44b800,11, 0x44b840,9, 0x44b880,32, 0x44b908,2, 0x44ba00,16, 0x44ba80,18, 0x44bacc,2, 0x44bb00,19, 0x44bb84,1, 0x44bb8c,11, 0x44bbc0,7, 0x44bbe4,1, 0x44bbec,24, 0x44bc80,3, 0x44bcd0,6, 0x44bcf8,1, 0x44bd00,12, 0x44bd38,13, 0x44bd70,1, 0x44be00,1, 0x44c000,11, 0x44c040,9, 0x44c080,32, 0x44c108,2, 0x44c200,16, 0x44c280,18, 0x44c2cc,2, 0x44c300,19, 0x44c384,1, 0x44c38c,11, 0x44c3c0,7, 0x44c3e4,1, 0x44c3ec,24, 0x44c480,3, 0x44c4d0,6, 0x44c4f8,1, 0x44c500,12, 0x44c538,13, 0x44c570,1, 0x44c600,1, 0x44c800,11, 0x44c840,9, 0x44c880,32, 0x44c908,2, 0x44ca00,16, 0x44ca80,18, 0x44cacc,2, 0x44cb00,19, 0x44cb84,1, 0x44cb8c,11, 0x44cbc0,7, 0x44cbe4,1, 0x44cbec,24, 0x44cc80,3, 0x44ccd0,6, 0x44ccf8,1, 0x44cd00,12, 0x44cd38,13, 0x44cd70,1, 0x44ce00,1, 0x44d000,11, 0x44d040,9, 0x44d080,32, 0x44d108,2, 0x44d200,16, 0x44d280,18, 0x44d2cc,2, 0x44d300,19, 0x44d384,1, 0x44d38c,11, 0x44d3c0,7, 0x44d3e4,1, 0x44d3ec,24, 0x44d480,3, 0x44d4d0,6, 0x44d4f8,1, 0x44d500,12, 0x44d538,13, 0x44d570,1, 0x44d600,1, 0x44d800,11, 0x44d840,9, 0x44d880,32, 0x44d908,2, 0x44da00,16, 0x44da80,18, 0x44dacc,2, 0x44db00,19, 0x44db84,1, 0x44db8c,11, 0x44dbc0,7, 0x44dbe4,1, 0x44dbec,24, 0x44dc80,3, 0x44dcd0,6, 0x44dcf8,1, 0x44dd00,12, 0x44dd38,13, 0x44dd70,1, 0x44de00,1, 0x44e000,11, 0x44e040,9, 0x44e080,32, 0x44e108,2, 0x44e200,16, 0x44e280,18, 0x44e2cc,2, 0x44e300,19, 0x44e384,1, 0x44e38c,11, 0x44e3c0,7, 0x44e3e4,1, 0x44e3ec,24, 0x44e480,3, 0x44e4d0,6, 0x44e4f8,1, 0x44e500,12, 0x44e538,13, 0x44e570,1, 0x44e600,1, 0x44e800,11, 0x44e840,9, 0x44e880,32, 0x44e908,2, 0x44ea00,16, 0x44ea80,18, 0x44eacc,2, 0x44eb00,19, 0x44eb84,1, 0x44eb8c,11, 0x44ebc0,7, 0x44ebe4,1, 0x44ebec,24, 0x44ec80,3, 0x44ecd0,6, 0x44ecf8,1, 0x44ed00,12, 0x44ed38,13, 0x44ed70,1, 0x44ee00,1, 0x44f000,11, 0x44f040,9, 0x44f080,32, 0x44f108,2, 0x44f200,16, 0x44f280,18, 0x44f2cc,2, 0x44f300,19, 0x44f384,1, 0x44f38c,11, 0x44f3c0,7, 0x44f3e4,1, 0x44f3ec,24, 0x44f480,3, 0x44f4d0,6, 0x44f4f8,1, 0x44f500,12, 0x44f538,13, 0x44f570,1, 0x44f600,1, 0x44f800,11, 0x44f840,9, 0x44f880,32, 0x44f908,2, 0x44fa00,16, 0x44fa80,18, 0x44facc,2, 0x44fb00,19, 0x44fb84,1, 0x44fb8c,11, 0x44fbc0,7, 0x44fbe4,1, 0x44fbec,24, 0x44fc80,3, 0x44fcd0,6, 0x44fcf8,1, 0x44fd00,12, 0x44fd38,13, 0x44fd70,1, 0x44fe00,1, 0x450000,11, 0x450040,9, 0x450080,32, 0x450108,2, 0x450200,16, 0x450280,18, 0x4502cc,2, 0x450300,19, 0x450384,1, 0x45038c,11, 0x4503c0,7, 0x4503e4,1, 0x4503ec,24, 0x450480,3, 0x4504d0,6, 0x4504f8,1, 0x450500,12, 0x450538,13, 0x450570,1, 0x450600,1, 0x450800,11, 0x450840,9, 0x450880,32, 0x450908,2, 0x450a00,16, 0x450a80,18, 0x450acc,2, 0x450b00,19, 0x450b84,1, 0x450b8c,11, 0x450bc0,7, 0x450be4,1, 0x450bec,24, 0x450c80,3, 0x450cd0,6, 0x450cf8,1, 0x450d00,12, 0x450d38,13, 0x450d70,1, 0x450e00,1, 0x451000,11, 0x451040,9, 0x451080,32, 0x451108,2, 0x451200,16, 0x451280,18, 0x4512cc,2, 0x451300,19, 0x451384,1, 0x45138c,11, 0x4513c0,7, 0x4513e4,1, 0x4513ec,24, 0x451480,3, 0x4514d0,6, 0x4514f8,1, 0x451500,12, 0x451538,13, 0x451570,1, 0x451600,1, 0x451800,11, 0x451840,9, 0x451880,32, 0x451908,2, 0x451a00,16, 0x451a80,18, 0x451acc,2, 0x451b00,19, 0x451b84,1, 0x451b8c,11, 0x451bc0,7, 0x451be4,1, 0x451bec,24, 0x451c80,3, 0x451cd0,6, 0x451cf8,1, 0x451d00,12, 0x451d38,13, 0x451d70,1, 0x451e00,1, 0x452000,11, 0x452040,9, 0x452080,32, 0x452108,2, 0x452200,16, 0x452280,18, 0x4522cc,2, 0x452300,19, 0x452384,1, 0x45238c,11, 0x4523c0,7, 0x4523e4,1, 0x4523ec,24, 0x452480,3, 0x4524d0,6, 0x4524f8,1, 0x452500,12, 0x452538,13, 0x452570,1, 0x452600,1, 0x452800,11, 0x452840,9, 0x452880,32, 0x452908,2, 0x452a00,16, 0x452a80,18, 0x452acc,2, 0x452b00,19, 0x452b84,1, 0x452b8c,11, 0x452bc0,7, 0x452be4,1, 0x452bec,24, 0x452c80,3, 0x452cd0,6, 0x452cf8,1, 0x452d00,12, 0x452d38,13, 0x452d70,1, 0x452e00,1, 0x453000,11, 0x453040,9, 0x453080,32, 0x453108,2, 0x453200,16, 0x453280,18, 0x4532cc,2, 0x453300,19, 0x453384,1, 0x45338c,11, 0x4533c0,7, 0x4533e4,1, 0x4533ec,24, 0x453480,3, 0x4534d0,6, 0x4534f8,1, 0x453500,12, 0x453538,13, 0x453570,1, 0x453600,1, 0x453800,11, 0x453840,9, 0x453880,32, 0x453908,2, 0x453a00,16, 0x453a80,18, 0x453acc,2, 0x453b00,19, 0x453b84,1, 0x453b8c,11, 0x453bc0,7, 0x453be4,1, 0x453bec,24, 0x453c80,3, 0x453cd0,6, 0x453cf8,1, 0x453d00,12, 0x453d38,13, 0x453d70,1, 0x453e00,1, 0x454000,11, 0x454040,9, 0x454080,32, 0x454108,2, 0x454200,16, 0x454280,18, 0x4542cc,2, 0x454300,19, 0x454384,1, 0x45438c,11, 0x4543c0,7, 0x4543e4,1, 0x4543ec,24, 0x454480,3, 0x4544d0,6, 0x4544f8,1, 0x454500,12, 0x454538,13, 0x454570,1, 0x454600,1, 0x454800,11, 0x454840,9, 0x454880,32, 0x454908,2, 0x454a00,16, 0x454a80,18, 0x454acc,2, 0x454b00,19, 0x454b84,1, 0x454b8c,11, 0x454bc0,7, 0x454be4,1, 0x454bec,24, 0x454c80,3, 0x454cd0,6, 0x454cf8,1, 0x454d00,12, 0x454d38,13, 0x454d70,1, 0x454e00,1, 0x455000,11, 0x455040,9, 0x455080,32, 0x455108,2, 0x455200,16, 0x455280,18, 0x4552cc,2, 0x455300,19, 0x455384,1, 0x45538c,11, 0x4553c0,7, 0x4553e4,1, 0x4553ec,24, 0x455480,3, 0x4554d0,6, 0x4554f8,1, 0x455500,12, 0x455538,13, 0x455570,1, 0x455600,1, 0x455800,11, 0x455840,9, 0x455880,32, 0x455908,2, 0x455a00,16, 0x455a80,18, 0x455acc,2, 0x455b00,19, 0x455b84,1, 0x455b8c,11, 0x455bc0,7, 0x455be4,1, 0x455bec,24, 0x455c80,3, 0x455cd0,6, 0x455cf8,1, 0x455d00,12, 0x455d38,13, 0x455d70,1, 0x455e00,1, 0x456000,11, 0x456040,9, 0x456080,32, 0x456108,2, 0x456200,16, 0x456280,18, 0x4562cc,2, 0x456300,19, 0x456384,1, 0x45638c,11, 0x4563c0,7, 0x4563e4,1, 0x4563ec,24, 0x456480,3, 0x4564d0,6, 0x4564f8,1, 0x456500,12, 0x456538,13, 0x456570,1, 0x456600,1, 0x456800,11, 0x456840,9, 0x456880,32, 0x456908,2, 0x456a00,16, 0x456a80,18, 0x456acc,2, 0x456b00,19, 0x456b84,1, 0x456b8c,11, 0x456bc0,7, 0x456be4,1, 0x456bec,24, 0x456c80,3, 0x456cd0,6, 0x456cf8,1, 0x456d00,12, 0x456d38,13, 0x456d70,1, 0x456e00,1, 0x457000,11, 0x457040,9, 0x457080,32, 0x457108,2, 0x457200,16, 0x457280,18, 0x4572cc,2, 0x457300,19, 0x457384,1, 0x45738c,11, 0x4573c0,7, 0x4573e4,1, 0x4573ec,24, 0x457480,3, 0x4574d0,6, 0x4574f8,1, 0x457500,12, 0x457538,13, 0x457570,1, 0x457600,1, 0x457800,11, 0x457840,9, 0x457880,32, 0x457908,2, 0x457a00,16, 0x457a80,18, 0x457acc,2, 0x457b00,19, 0x457b84,1, 0x457b8c,11, 0x457bc0,7, 0x457be4,1, 0x457bec,24, 0x457c80,3, 0x457cd0,6, 0x457cf8,1, 0x457d00,12, 0x457d38,13, 0x457d70,1, 0x457e00,1, 0x458000,11, 0x458040,9, 0x458080,32, 0x458108,2, 0x458200,16, 0x458280,18, 0x4582cc,2, 0x458300,19, 0x458384,1, 0x45838c,11, 0x4583c0,7, 0x4583e4,1, 0x4583ec,24, 0x458480,3, 0x4584d0,6, 0x4584f8,1, 0x458500,12, 0x458538,13, 0x458570,1, 0x458600,1, 0x458800,11, 0x458840,9, 0x458880,32, 0x458908,2, 0x458a00,16, 0x458a80,18, 0x458acc,2, 0x458b00,19, 0x458b84,1, 0x458b8c,11, 0x458bc0,7, 0x458be4,1, 0x458bec,24, 0x458c80,3, 0x458cd0,6, 0x458cf8,1, 0x458d00,12, 0x458d38,13, 0x458d70,1, 0x458e00,1, 0x459000,11, 0x459040,9, 0x459080,32, 0x459108,2, 0x459200,16, 0x459280,18, 0x4592cc,2, 0x459300,19, 0x459384,1, 0x45938c,11, 0x4593c0,7, 0x4593e4,1, 0x4593ec,24, 0x459480,3, 0x4594d0,6, 0x4594f8,1, 0x459500,12, 0x459538,13, 0x459570,1, 0x459600,1, 0x459800,11, 0x459840,9, 0x459880,32, 0x459908,2, 0x459a00,16, 0x459a80,18, 0x459acc,2, 0x459b00,19, 0x459b84,1, 0x459b8c,11, 0x459bc0,7, 0x459be4,1, 0x459bec,24, 0x459c80,3, 0x459cd0,6, 0x459cf8,1, 0x459d00,12, 0x459d38,13, 0x459d70,1, 0x459e00,1, 0x45a000,11, 0x45a040,9, 0x45a080,32, 0x45a108,2, 0x45a200,16, 0x45a280,18, 0x45a2cc,2, 0x45a300,19, 0x45a384,1, 0x45a38c,11, 0x45a3c0,7, 0x45a3e4,1, 0x45a3ec,24, 0x45a480,3, 0x45a4d0,6, 0x45a4f8,1, 0x45a500,12, 0x45a538,13, 0x45a570,1, 0x45a600,1, 0x45a800,11, 0x45a840,9, 0x45a880,32, 0x45a908,2, 0x45aa00,16, 0x45aa80,18, 0x45aacc,2, 0x45ab00,19, 0x45ab84,1, 0x45ab8c,11, 0x45abc0,7, 0x45abe4,1, 0x45abec,24, 0x45ac80,3, 0x45acd0,6, 0x45acf8,1, 0x45ad00,12, 0x45ad38,13, 0x45ad70,1, 0x45ae00,1, 0x45b000,11, 0x45b040,9, 0x45b080,32, 0x45b108,2, 0x45b200,16, 0x45b280,18, 0x45b2cc,2, 0x45b300,19, 0x45b384,1, 0x45b38c,11, 0x45b3c0,7, 0x45b3e4,1, 0x45b3ec,24, 0x45b480,3, 0x45b4d0,6, 0x45b4f8,1, 0x45b500,12, 0x45b538,13, 0x45b570,1, 0x45b600,1, 0x45b800,11, 0x45b840,9, 0x45b880,32, 0x45b908,2, 0x45ba00,16, 0x45ba80,18, 0x45bacc,2, 0x45bb00,19, 0x45bb84,1, 0x45bb8c,11, 0x45bbc0,7, 0x45bbe4,1, 0x45bbec,24, 0x45bc80,3, 0x45bcd0,6, 0x45bcf8,1, 0x45bd00,12, 0x45bd38,13, 0x45bd70,1, 0x45be00,1, 0x45c000,11, 0x45c040,9, 0x45c080,32, 0x45c108,2, 0x45c200,16, 0x45c280,18, 0x45c2cc,2, 0x45c300,19, 0x45c384,1, 0x45c38c,11, 0x45c3c0,7, 0x45c3e4,1, 0x45c3ec,24, 0x45c480,3, 0x45c4d0,6, 0x45c4f8,1, 0x45c500,12, 0x45c538,13, 0x45c570,1, 0x45c600,1, 0x45c800,11, 0x45c840,9, 0x45c880,32, 0x45c908,2, 0x45ca00,16, 0x45ca80,18, 0x45cacc,2, 0x45cb00,19, 0x45cb84,1, 0x45cb8c,11, 0x45cbc0,7, 0x45cbe4,1, 0x45cbec,24, 0x45cc80,3, 0x45ccd0,6, 0x45ccf8,1, 0x45cd00,12, 0x45cd38,13, 0x45cd70,1, 0x45ce00,1, 0x45d000,11, 0x45d040,9, 0x45d080,32, 0x45d108,2, 0x45d200,16, 0x45d280,18, 0x45d2cc,2, 0x45d300,19, 0x45d384,1, 0x45d38c,11, 0x45d3c0,7, 0x45d3e4,1, 0x45d3ec,24, 0x45d480,3, 0x45d4d0,6, 0x45d4f8,1, 0x45d500,12, 0x45d538,13, 0x45d570,1, 0x45d600,1, 0x45d800,11, 0x45d840,9, 0x45d880,32, 0x45d908,2, 0x45da00,16, 0x45da80,18, 0x45dacc,2, 0x45db00,19, 0x45db84,1, 0x45db8c,11, 0x45dbc0,7, 0x45dbe4,1, 0x45dbec,24, 0x45dc80,3, 0x45dcd0,6, 0x45dcf8,1, 0x45dd00,12, 0x45dd38,13, 0x45dd70,1, 0x45de00,1, 0x45e000,11, 0x45e040,9, 0x45e080,32, 0x45e108,2, 0x45e200,16, 0x45e280,18, 0x45e2cc,2, 0x45e300,19, 0x45e384,1, 0x45e38c,11, 0x45e3c0,7, 0x45e3e4,1, 0x45e3ec,24, 0x45e480,3, 0x45e4d0,6, 0x45e4f8,1, 0x45e500,12, 0x45e538,13, 0x45e570,1, 0x45e600,1, 0x45e800,11, 0x45e840,9, 0x45e880,32, 0x45e908,2, 0x45ea00,16, 0x45ea80,18, 0x45eacc,2, 0x45eb00,19, 0x45eb84,1, 0x45eb8c,11, 0x45ebc0,7, 0x45ebe4,1, 0x45ebec,24, 0x45ec80,3, 0x45ecd0,6, 0x45ecf8,1, 0x45ed00,12, 0x45ed38,13, 0x45ed70,1, 0x45ee00,1, 0x45f000,11, 0x45f040,9, 0x45f080,32, 0x45f108,2, 0x45f200,16, 0x45f280,18, 0x45f2cc,2, 0x45f300,19, 0x45f384,1, 0x45f38c,11, 0x45f3c0,7, 0x45f3e4,1, 0x45f3ec,24, 0x45f480,3, 0x45f4d0,6, 0x45f4f8,1, 0x45f500,12, 0x45f538,13, 0x45f570,1, 0x45f600,1, 0x45f800,11, 0x45f840,9, 0x45f880,32, 0x45f908,2, 0x45fa00,16, 0x45fa80,18, 0x45facc,2, 0x45fb00,19, 0x45fb84,1, 0x45fb8c,11, 0x45fbc0,7, 0x45fbe4,1, 0x45fbec,24, 0x45fc80,3, 0x45fcd0,6, 0x45fcf8,1, 0x45fd00,12, 0x45fd38,13, 0x45fd70,1, 0x45fe00,1, 0x460000,11, 0x460040,9, 0x460080,32, 0x460108,2, 0x460200,16, 0x460280,18, 0x4602cc,2, 0x460300,19, 0x460384,1, 0x46038c,11, 0x4603c0,7, 0x4603e4,1, 0x4603ec,24, 0x460480,3, 0x4604d0,6, 0x4604f8,1, 0x460500,12, 0x460538,13, 0x460570,1, 0x460600,1, 0x460800,11, 0x460840,9, 0x460880,32, 0x460908,2, 0x460a00,16, 0x460a80,18, 0x460acc,2, 0x460b00,19, 0x460b84,1, 0x460b8c,11, 0x460bc0,7, 0x460be4,1, 0x460bec,24, 0x460c80,3, 0x460cd0,6, 0x460cf8,1, 0x460d00,12, 0x460d38,13, 0x460d70,1, 0x460e00,1, 0x461000,11, 0x461040,9, 0x461080,32, 0x461108,2, 0x461200,16, 0x461280,18, 0x4612cc,2, 0x461300,19, 0x461384,1, 0x46138c,11, 0x4613c0,7, 0x4613e4,1, 0x4613ec,24, 0x461480,3, 0x4614d0,6, 0x4614f8,1, 0x461500,12, 0x461538,13, 0x461570,1, 0x461600,1, 0x461800,11, 0x461840,9, 0x461880,32, 0x461908,2, 0x461a00,16, 0x461a80,18, 0x461acc,2, 0x461b00,19, 0x461b84,1, 0x461b8c,11, 0x461bc0,7, 0x461be4,1, 0x461bec,24, 0x461c80,3, 0x461cd0,6, 0x461cf8,1, 0x461d00,12, 0x461d38,13, 0x461d70,1, 0x461e00,1, 0x462000,2, 0x463000,13, 0x463040,14, 0x463080,27, 0x463100,3, 0x463110,3, 0x463120,3, 0x463130,3, 0x463140,4, 0x464000,19, 0x464c00,10, 0x464c80,3, 0x480000,40, 0x4800a4,2, 0x4800b0,16, 0x480120,4, 0x480160,138, 0x4803a0,90, 0x480564,5, 0x480584,5, 0x4805a4,1, 0x4805ac,3, 0x4805c4,1, 0x4805cc,3, 0x480604,1, 0x480620,8, 0x480644,14, 0x480680,1, 0x480700,27, 0x480780,4, 0x4807c0,12, 0x480800,10, 0x480900,5, 0x480918,5, 0x480930,5, 0x480948,5, 0x480998,1, 0x4809d0,3, 0x480a04,1, 0x480a40,16, 0x480a84,1, 0x480a90,4, 0x480b00,8, 0x480c04,1, 0x480c0c,3, 0x480c24,1, 0x480c2c,3, 0x480c44,1, 0x480c4c,3, 0x480c80,8, 0x480d00,1, 0x481000,40, 0x4810a4,2, 0x4810b0,16, 0x481120,4, 0x481160,138, 0x4813a0,90, 0x481564,5, 0x481584,5, 0x4815a4,1, 0x4815ac,3, 0x4815c4,1, 0x4815cc,3, 0x481604,1, 0x481620,8, 0x481644,14, 0x481680,1, 0x481700,27, 0x481780,4, 0x4817c0,12, 0x481800,10, 0x481900,5, 0x481918,5, 0x481930,5, 0x481948,5, 0x481998,1, 0x4819d0,3, 0x481a04,1, 0x481a40,16, 0x481a84,1, 0x481a90,4, 0x481b00,8, 0x481c04,1, 0x481c0c,3, 0x481c24,1, 0x481c2c,3, 0x481c44,1, 0x481c4c,3, 0x481c80,8, 0x481d00,1, 0x482000,40, 0x4820a4,2, 0x4820b0,16, 0x482120,4, 0x482160,138, 0x4823a0,90, 0x482564,5, 0x482584,5, 0x4825a4,1, 0x4825ac,3, 0x4825c4,1, 0x4825cc,3, 0x482604,1, 0x482620,8, 0x482644,14, 0x482680,1, 0x482700,27, 0x482780,4, 0x4827c0,12, 0x482800,10, 0x482900,5, 0x482918,5, 0x482930,5, 0x482948,5, 0x482998,1, 0x4829d0,3, 0x482a04,1, 0x482a40,16, 0x482a84,1, 0x482a90,4, 0x482b00,8, 0x482c04,1, 0x482c0c,3, 0x482c24,1, 0x482c2c,3, 0x482c44,1, 0x482c4c,3, 0x482c80,8, 0x482d00,1, 0x483000,40, 0x4830a4,2, 0x4830b0,16, 0x483120,4, 0x483160,138, 0x4833a0,90, 0x483564,5, 0x483584,5, 0x4835a4,1, 0x4835ac,3, 0x4835c4,1, 0x4835cc,3, 0x483604,1, 0x483620,8, 0x483644,14, 0x483680,1, 0x483700,27, 0x483780,4, 0x4837c0,12, 0x483800,10, 0x483900,5, 0x483918,5, 0x483930,5, 0x483948,5, 0x483998,1, 0x4839d0,3, 0x483a04,1, 0x483a40,16, 0x483a84,1, 0x483a90,4, 0x483b00,8, 0x483c04,1, 0x483c0c,3, 0x483c24,1, 0x483c2c,3, 0x483c44,1, 0x483c4c,3, 0x483c80,8, 0x483d00,1, 0x484000,40, 0x4840a4,2, 0x4840b0,16, 0x484120,4, 0x484160,138, 0x4843a0,90, 0x484564,5, 0x484584,5, 0x4845a4,1, 0x4845ac,3, 0x4845c4,1, 0x4845cc,3, 0x484604,1, 0x484620,8, 0x484644,14, 0x484680,1, 0x484700,27, 0x484780,4, 0x4847c0,12, 0x484800,10, 0x484900,5, 0x484918,5, 0x484930,5, 0x484948,5, 0x484998,1, 0x4849d0,3, 0x484a04,1, 0x484a40,16, 0x484a84,1, 0x484a90,4, 0x484b00,8, 0x484c04,1, 0x484c0c,3, 0x484c24,1, 0x484c2c,3, 0x484c44,1, 0x484c4c,3, 0x484c80,8, 0x484d00,1, 0x485000,40, 0x4850a4,2, 0x4850b0,16, 0x485120,4, 0x485160,138, 0x4853a0,90, 0x485564,5, 0x485584,5, 0x4855a4,1, 0x4855ac,3, 0x4855c4,1, 0x4855cc,3, 0x485604,1, 0x485620,8, 0x485644,14, 0x485680,1, 0x485700,27, 0x485780,4, 0x4857c0,12, 0x485800,10, 0x485900,5, 0x485918,5, 0x485930,5, 0x485948,5, 0x485998,1, 0x4859d0,3, 0x485a04,1, 0x485a40,16, 0x485a84,1, 0x485a90,4, 0x485b00,8, 0x485c04,1, 0x485c0c,3, 0x485c24,1, 0x485c2c,3, 0x485c44,1, 0x485c4c,3, 0x485c80,8, 0x485d00,1, 0x486000,40, 0x4860a4,2, 0x4860b0,16, 0x486120,4, 0x486160,138, 0x4863a0,90, 0x486564,5, 0x486584,5, 0x4865a4,1, 0x4865ac,3, 0x4865c4,1, 0x4865cc,3, 0x486604,1, 0x486620,8, 0x486644,14, 0x486680,1, 0x486700,27, 0x486780,4, 0x4867c0,12, 0x486800,10, 0x486900,5, 0x486918,5, 0x486930,5, 0x486948,5, 0x486998,1, 0x4869d0,3, 0x486a04,1, 0x486a40,16, 0x486a84,1, 0x486a90,4, 0x486b00,8, 0x486c04,1, 0x486c0c,3, 0x486c24,1, 0x486c2c,3, 0x486c44,1, 0x486c4c,3, 0x486c80,8, 0x486d00,1, 0x487000,40, 0x4870a4,2, 0x4870b0,16, 0x487120,4, 0x487160,138, 0x4873a0,90, 0x487564,5, 0x487584,5, 0x4875a4,1, 0x4875ac,3, 0x4875c4,1, 0x4875cc,3, 0x487604,1, 0x487620,8, 0x487644,14, 0x487680,1, 0x487700,27, 0x487780,4, 0x4877c0,12, 0x487800,10, 0x487900,5, 0x487918,5, 0x487930,5, 0x487948,5, 0x487998,1, 0x4879d0,3, 0x487a04,1, 0x487a40,16, 0x487a84,1, 0x487a90,4, 0x487b00,8, 0x487c04,1, 0x487c0c,3, 0x487c24,1, 0x487c2c,3, 0x487c44,1, 0x487c4c,3, 0x487c80,8, 0x487d00,1, 0x488000,1, 0x488008,2, 0x488020,37, 0x4880b8,64, 0x488200,2, 0x488210,66, 0x488420,2, 0x488440,46, 0x488504,5, 0x488524,5, 0x488544,1, 0x48854c,3, 0x488564,1, 0x48856c,3, 0x488590,21, 0x4885f0,1, 0x4885f8,29, 0x488680,4, 0x4886c0,12, 0x488720,7, 0x488740,2, 0x488800,2, 0x488860,4, 0x4888fc,1, 0x489000,19, 0x489080,6, 0x489a00,25, 0x489a80,1, 0x48a000,51, 0x48ac00,10, 0x48ac80,3, 0x48fffc,41, 0x4900a4,2, 0x4900b0,16, 0x490120,4, 0x490160,138, 0x4903a0,90, 0x490564,5, 0x490584,5, 0x4905a4,1, 0x4905ac,3, 0x4905c4,1, 0x4905cc,3, 0x490604,1, 0x490620,8, 0x490644,14, 0x490680,1, 0x490700,27, 0x490780,4, 0x4907c0,12, 0x490800,10, 0x490900,5, 0x490918,5, 0x490930,5, 0x490948,5, 0x490998,1, 0x4909d0,3, 0x490a04,1, 0x490a40,16, 0x490a84,1, 0x490a90,4, 0x490b00,8, 0x490c04,1, 0x490c0c,3, 0x490c24,1, 0x490c2c,3, 0x490c44,1, 0x490c4c,3, 0x490c80,8, 0x490d00,1, 0x491000,40, 0x4910a4,2, 0x4910b0,16, 0x491120,4, 0x491160,138, 0x4913a0,90, 0x491564,5, 0x491584,5, 0x4915a4,1, 0x4915ac,3, 0x4915c4,1, 0x4915cc,3, 0x491604,1, 0x491620,8, 0x491644,14, 0x491680,1, 0x491700,27, 0x491780,4, 0x4917c0,12, 0x491800,10, 0x491900,5, 0x491918,5, 0x491930,5, 0x491948,5, 0x491998,1, 0x4919d0,3, 0x491a04,1, 0x491a40,16, 0x491a84,1, 0x491a90,4, 0x491b00,8, 0x491c04,1, 0x491c0c,3, 0x491c24,1, 0x491c2c,3, 0x491c44,1, 0x491c4c,3, 0x491c80,8, 0x491d00,1, 0x492000,40, 0x4920a4,2, 0x4920b0,16, 0x492120,4, 0x492160,138, 0x4923a0,90, 0x492564,5, 0x492584,5, 0x4925a4,1, 0x4925ac,3, 0x4925c4,1, 0x4925cc,3, 0x492604,1, 0x492620,8, 0x492644,14, 0x492680,1, 0x492700,27, 0x492780,4, 0x4927c0,12, 0x492800,10, 0x492900,5, 0x492918,5, 0x492930,5, 0x492948,5, 0x492998,1, 0x4929d0,3, 0x492a04,1, 0x492a40,16, 0x492a84,1, 0x492a90,4, 0x492b00,8, 0x492c04,1, 0x492c0c,3, 0x492c24,1, 0x492c2c,3, 0x492c44,1, 0x492c4c,3, 0x492c80,8, 0x492d00,1, 0x493000,40, 0x4930a4,2, 0x4930b0,16, 0x493120,4, 0x493160,138, 0x4933a0,90, 0x493564,5, 0x493584,5, 0x4935a4,1, 0x4935ac,3, 0x4935c4,1, 0x4935cc,3, 0x493604,1, 0x493620,8, 0x493644,14, 0x493680,1, 0x493700,27, 0x493780,4, 0x4937c0,12, 0x493800,10, 0x493900,5, 0x493918,5, 0x493930,5, 0x493948,5, 0x493998,1, 0x4939d0,3, 0x493a04,1, 0x493a40,16, 0x493a84,1, 0x493a90,4, 0x493b00,8, 0x493c04,1, 0x493c0c,3, 0x493c24,1, 0x493c2c,3, 0x493c44,1, 0x493c4c,3, 0x493c80,8, 0x493d00,1, 0x494000,40, 0x4940a4,2, 0x4940b0,16, 0x494120,4, 0x494160,138, 0x4943a0,90, 0x494564,5, 0x494584,5, 0x4945a4,1, 0x4945ac,3, 0x4945c4,1, 0x4945cc,3, 0x494604,1, 0x494620,8, 0x494644,14, 0x494680,1, 0x494700,27, 0x494780,4, 0x4947c0,12, 0x494800,10, 0x494900,5, 0x494918,5, 0x494930,5, 0x494948,5, 0x494998,1, 0x4949d0,3, 0x494a04,1, 0x494a40,16, 0x494a84,1, 0x494a90,4, 0x494b00,8, 0x494c04,1, 0x494c0c,3, 0x494c24,1, 0x494c2c,3, 0x494c44,1, 0x494c4c,3, 0x494c80,8, 0x494d00,1, 0x495000,40, 0x4950a4,2, 0x4950b0,16, 0x495120,4, 0x495160,138, 0x4953a0,90, 0x495564,5, 0x495584,5, 0x4955a4,1, 0x4955ac,3, 0x4955c4,1, 0x4955cc,3, 0x495604,1, 0x495620,8, 0x495644,14, 0x495680,1, 0x495700,27, 0x495780,4, 0x4957c0,12, 0x495800,10, 0x495900,5, 0x495918,5, 0x495930,5, 0x495948,5, 0x495998,1, 0x4959d0,3, 0x495a04,1, 0x495a40,16, 0x495a84,1, 0x495a90,4, 0x495b00,8, 0x495c04,1, 0x495c0c,3, 0x495c24,1, 0x495c2c,3, 0x495c44,1, 0x495c4c,3, 0x495c80,8, 0x495d00,1, 0x496000,40, 0x4960a4,2, 0x4960b0,16, 0x496120,4, 0x496160,138, 0x4963a0,90, 0x496564,5, 0x496584,5, 0x4965a4,1, 0x4965ac,3, 0x4965c4,1, 0x4965cc,3, 0x496604,1, 0x496620,8, 0x496644,14, 0x496680,1, 0x496700,27, 0x496780,4, 0x4967c0,12, 0x496800,10, 0x496900,5, 0x496918,5, 0x496930,5, 0x496948,5, 0x496998,1, 0x4969d0,3, 0x496a04,1, 0x496a40,16, 0x496a84,1, 0x496a90,4, 0x496b00,8, 0x496c04,1, 0x496c0c,3, 0x496c24,1, 0x496c2c,3, 0x496c44,1, 0x496c4c,3, 0x496c80,8, 0x496d00,1, 0x497000,40, 0x4970a4,2, 0x4970b0,16, 0x497120,4, 0x497160,138, 0x4973a0,90, 0x497564,5, 0x497584,5, 0x4975a4,1, 0x4975ac,3, 0x4975c4,1, 0x4975cc,3, 0x497604,1, 0x497620,8, 0x497644,14, 0x497680,1, 0x497700,27, 0x497780,4, 0x4977c0,12, 0x497800,10, 0x497900,5, 0x497918,5, 0x497930,5, 0x497948,5, 0x497998,1, 0x4979d0,3, 0x497a04,1, 0x497a40,16, 0x497a84,1, 0x497a90,4, 0x497b00,8, 0x497c04,1, 0x497c0c,3, 0x497c24,1, 0x497c2c,3, 0x497c44,1, 0x497c4c,3, 0x497c80,8, 0x497d00,1, 0x498000,1, 0x498008,2, 0x498020,37, 0x4980b8,64, 0x498200,2, 0x498210,66, 0x498420,2, 0x498440,46, 0x498504,5, 0x498524,5, 0x498544,1, 0x49854c,3, 0x498564,1, 0x49856c,3, 0x498590,21, 0x4985f0,1, 0x4985f8,29, 0x498680,4, 0x4986c0,12, 0x498720,7, 0x498740,2, 0x498800,2, 0x498860,4, 0x4988fc,1, 0x499000,19, 0x499080,6, 0x499a00,25, 0x499a80,1, 0x49a000,51, 0x49ac00,10, 0x49ac80,3, 0x49fffc,41, 0x4a00a4,2, 0x4a00b0,16, 0x4a0120,4, 0x4a0160,138, 0x4a03a0,90, 0x4a0564,5, 0x4a0584,5, 0x4a05a4,1, 0x4a05ac,3, 0x4a05c4,1, 0x4a05cc,3, 0x4a0604,1, 0x4a0620,8, 0x4a0644,14, 0x4a0680,1, 0x4a0700,27, 0x4a0780,4, 0x4a07c0,12, 0x4a0800,10, 0x4a0900,5, 0x4a0918,5, 0x4a0930,5, 0x4a0948,5, 0x4a0998,1, 0x4a09d0,3, 0x4a0a04,1, 0x4a0a40,16, 0x4a0a84,1, 0x4a0a90,4, 0x4a0b00,8, 0x4a0c04,1, 0x4a0c0c,3, 0x4a0c24,1, 0x4a0c2c,3, 0x4a0c44,1, 0x4a0c4c,3, 0x4a0c80,8, 0x4a0d00,1, 0x4a1000,40, 0x4a10a4,2, 0x4a10b0,16, 0x4a1120,4, 0x4a1160,138, 0x4a13a0,90, 0x4a1564,5, 0x4a1584,5, 0x4a15a4,1, 0x4a15ac,3, 0x4a15c4,1, 0x4a15cc,3, 0x4a1604,1, 0x4a1620,8, 0x4a1644,14, 0x4a1680,1, 0x4a1700,27, 0x4a1780,4, 0x4a17c0,12, 0x4a1800,10, 0x4a1900,5, 0x4a1918,5, 0x4a1930,5, 0x4a1948,5, 0x4a1998,1, 0x4a19d0,3, 0x4a1a04,1, 0x4a1a40,16, 0x4a1a84,1, 0x4a1a90,4, 0x4a1b00,8, 0x4a1c04,1, 0x4a1c0c,3, 0x4a1c24,1, 0x4a1c2c,3, 0x4a1c44,1, 0x4a1c4c,3, 0x4a1c80,8, 0x4a1d00,1, 0x4a2000,40, 0x4a20a4,2, 0x4a20b0,16, 0x4a2120,4, 0x4a2160,138, 0x4a23a0,90, 0x4a2564,5, 0x4a2584,5, 0x4a25a4,1, 0x4a25ac,3, 0x4a25c4,1, 0x4a25cc,3, 0x4a2604,1, 0x4a2620,8, 0x4a2644,14, 0x4a2680,1, 0x4a2700,27, 0x4a2780,4, 0x4a27c0,12, 0x4a2800,10, 0x4a2900,5, 0x4a2918,5, 0x4a2930,5, 0x4a2948,5, 0x4a2998,1, 0x4a29d0,3, 0x4a2a04,1, 0x4a2a40,16, 0x4a2a84,1, 0x4a2a90,4, 0x4a2b00,8, 0x4a2c04,1, 0x4a2c0c,3, 0x4a2c24,1, 0x4a2c2c,3, 0x4a2c44,1, 0x4a2c4c,3, 0x4a2c80,8, 0x4a2d00,1, 0x4a3000,40, 0x4a30a4,2, 0x4a30b0,16, 0x4a3120,4, 0x4a3160,138, 0x4a33a0,90, 0x4a3564,5, 0x4a3584,5, 0x4a35a4,1, 0x4a35ac,3, 0x4a35c4,1, 0x4a35cc,3, 0x4a3604,1, 0x4a3620,8, 0x4a3644,14, 0x4a3680,1, 0x4a3700,27, 0x4a3780,4, 0x4a37c0,12, 0x4a3800,10, 0x4a3900,5, 0x4a3918,5, 0x4a3930,5, 0x4a3948,5, 0x4a3998,1, 0x4a39d0,3, 0x4a3a04,1, 0x4a3a40,16, 0x4a3a84,1, 0x4a3a90,4, 0x4a3b00,8, 0x4a3c04,1, 0x4a3c0c,3, 0x4a3c24,1, 0x4a3c2c,3, 0x4a3c44,1, 0x4a3c4c,3, 0x4a3c80,8, 0x4a3d00,1, 0x4a4000,40, 0x4a40a4,2, 0x4a40b0,16, 0x4a4120,4, 0x4a4160,138, 0x4a43a0,90, 0x4a4564,5, 0x4a4584,5, 0x4a45a4,1, 0x4a45ac,3, 0x4a45c4,1, 0x4a45cc,3, 0x4a4604,1, 0x4a4620,8, 0x4a4644,14, 0x4a4680,1, 0x4a4700,27, 0x4a4780,4, 0x4a47c0,12, 0x4a4800,10, 0x4a4900,5, 0x4a4918,5, 0x4a4930,5, 0x4a4948,5, 0x4a4998,1, 0x4a49d0,3, 0x4a4a04,1, 0x4a4a40,16, 0x4a4a84,1, 0x4a4a90,4, 0x4a4b00,8, 0x4a4c04,1, 0x4a4c0c,3, 0x4a4c24,1, 0x4a4c2c,3, 0x4a4c44,1, 0x4a4c4c,3, 0x4a4c80,8, 0x4a4d00,1, 0x4a5000,40, 0x4a50a4,2, 0x4a50b0,16, 0x4a5120,4, 0x4a5160,138, 0x4a53a0,90, 0x4a5564,5, 0x4a5584,5, 0x4a55a4,1, 0x4a55ac,3, 0x4a55c4,1, 0x4a55cc,3, 0x4a5604,1, 0x4a5620,8, 0x4a5644,14, 0x4a5680,1, 0x4a5700,27, 0x4a5780,4, 0x4a57c0,12, 0x4a5800,10, 0x4a5900,5, 0x4a5918,5, 0x4a5930,5, 0x4a5948,5, 0x4a5998,1, 0x4a59d0,3, 0x4a5a04,1, 0x4a5a40,16, 0x4a5a84,1, 0x4a5a90,4, 0x4a5b00,8, 0x4a5c04,1, 0x4a5c0c,3, 0x4a5c24,1, 0x4a5c2c,3, 0x4a5c44,1, 0x4a5c4c,3, 0x4a5c80,8, 0x4a5d00,1, 0x4a6000,40, 0x4a60a4,2, 0x4a60b0,16, 0x4a6120,4, 0x4a6160,138, 0x4a63a0,90, 0x4a6564,5, 0x4a6584,5, 0x4a65a4,1, 0x4a65ac,3, 0x4a65c4,1, 0x4a65cc,3, 0x4a6604,1, 0x4a6620,8, 0x4a6644,14, 0x4a6680,1, 0x4a6700,27, 0x4a6780,4, 0x4a67c0,12, 0x4a6800,10, 0x4a6900,5, 0x4a6918,5, 0x4a6930,5, 0x4a6948,5, 0x4a6998,1, 0x4a69d0,3, 0x4a6a04,1, 0x4a6a40,16, 0x4a6a84,1, 0x4a6a90,4, 0x4a6b00,8, 0x4a6c04,1, 0x4a6c0c,3, 0x4a6c24,1, 0x4a6c2c,3, 0x4a6c44,1, 0x4a6c4c,3, 0x4a6c80,8, 0x4a6d00,1, 0x4a7000,40, 0x4a70a4,2, 0x4a70b0,16, 0x4a7120,4, 0x4a7160,138, 0x4a73a0,90, 0x4a7564,5, 0x4a7584,5, 0x4a75a4,1, 0x4a75ac,3, 0x4a75c4,1, 0x4a75cc,3, 0x4a7604,1, 0x4a7620,8, 0x4a7644,14, 0x4a7680,1, 0x4a7700,27, 0x4a7780,4, 0x4a77c0,12, 0x4a7800,10, 0x4a7900,5, 0x4a7918,5, 0x4a7930,5, 0x4a7948,5, 0x4a7998,1, 0x4a79d0,3, 0x4a7a04,1, 0x4a7a40,16, 0x4a7a84,1, 0x4a7a90,4, 0x4a7b00,8, 0x4a7c04,1, 0x4a7c0c,3, 0x4a7c24,1, 0x4a7c2c,3, 0x4a7c44,1, 0x4a7c4c,3, 0x4a7c80,8, 0x4a7d00,1, 0x4a8000,1, 0x4a8008,2, 0x4a8020,37, 0x4a80b8,64, 0x4a8200,2, 0x4a8210,66, 0x4a8420,2, 0x4a8440,46, 0x4a8504,5, 0x4a8524,5, 0x4a8544,1, 0x4a854c,3, 0x4a8564,1, 0x4a856c,3, 0x4a8590,21, 0x4a85f0,1, 0x4a85f8,29, 0x4a8680,4, 0x4a86c0,12, 0x4a8720,7, 0x4a8740,2, 0x4a8800,2, 0x4a8860,4, 0x4a88fc,1, 0x4a9000,19, 0x4a9080,6, 0x4a9a00,25, 0x4a9a80,1, 0x4aa000,51, 0x4aac00,10, 0x4aac80,3, 0x4afffc,41, 0x4b00a4,2, 0x4b00b0,16, 0x4b0120,4, 0x4b0160,138, 0x4b03a0,90, 0x4b0564,5, 0x4b0584,5, 0x4b05a4,1, 0x4b05ac,3, 0x4b05c4,1, 0x4b05cc,3, 0x4b0604,1, 0x4b0620,8, 0x4b0644,14, 0x4b0680,1, 0x4b0700,27, 0x4b0780,4, 0x4b07c0,12, 0x4b0800,10, 0x4b0900,5, 0x4b0918,5, 0x4b0930,5, 0x4b0948,5, 0x4b0998,1, 0x4b09d0,3, 0x4b0a04,1, 0x4b0a40,16, 0x4b0a84,1, 0x4b0a90,4, 0x4b0b00,8, 0x4b0c04,1, 0x4b0c0c,3, 0x4b0c24,1, 0x4b0c2c,3, 0x4b0c44,1, 0x4b0c4c,3, 0x4b0c80,8, 0x4b0d00,1, 0x4b1000,40, 0x4b10a4,2, 0x4b10b0,16, 0x4b1120,4, 0x4b1160,138, 0x4b13a0,90, 0x4b1564,5, 0x4b1584,5, 0x4b15a4,1, 0x4b15ac,3, 0x4b15c4,1, 0x4b15cc,3, 0x4b1604,1, 0x4b1620,8, 0x4b1644,14, 0x4b1680,1, 0x4b1700,27, 0x4b1780,4, 0x4b17c0,12, 0x4b1800,10, 0x4b1900,5, 0x4b1918,5, 0x4b1930,5, 0x4b1948,5, 0x4b1998,1, 0x4b19d0,3, 0x4b1a04,1, 0x4b1a40,16, 0x4b1a84,1, 0x4b1a90,4, 0x4b1b00,8, 0x4b1c04,1, 0x4b1c0c,3, 0x4b1c24,1, 0x4b1c2c,3, 0x4b1c44,1, 0x4b1c4c,3, 0x4b1c80,8, 0x4b1d00,1, 0x4b2000,40, 0x4b20a4,2, 0x4b20b0,16, 0x4b2120,4, 0x4b2160,138, 0x4b23a0,90, 0x4b2564,5, 0x4b2584,5, 0x4b25a4,1, 0x4b25ac,3, 0x4b25c4,1, 0x4b25cc,3, 0x4b2604,1, 0x4b2620,8, 0x4b2644,14, 0x4b2680,1, 0x4b2700,27, 0x4b2780,4, 0x4b27c0,12, 0x4b2800,10, 0x4b2900,5, 0x4b2918,5, 0x4b2930,5, 0x4b2948,5, 0x4b2998,1, 0x4b29d0,3, 0x4b2a04,1, 0x4b2a40,16, 0x4b2a84,1, 0x4b2a90,4, 0x4b2b00,8, 0x4b2c04,1, 0x4b2c0c,3, 0x4b2c24,1, 0x4b2c2c,3, 0x4b2c44,1, 0x4b2c4c,3, 0x4b2c80,8, 0x4b2d00,1, 0x4b3000,40, 0x4b30a4,2, 0x4b30b0,16, 0x4b3120,4, 0x4b3160,138, 0x4b33a0,90, 0x4b3564,5, 0x4b3584,5, 0x4b35a4,1, 0x4b35ac,3, 0x4b35c4,1, 0x4b35cc,3, 0x4b3604,1, 0x4b3620,8, 0x4b3644,14, 0x4b3680,1, 0x4b3700,27, 0x4b3780,4, 0x4b37c0,12, 0x4b3800,10, 0x4b3900,5, 0x4b3918,5, 0x4b3930,5, 0x4b3948,5, 0x4b3998,1, 0x4b39d0,3, 0x4b3a04,1, 0x4b3a40,16, 0x4b3a84,1, 0x4b3a90,4, 0x4b3b00,8, 0x4b3c04,1, 0x4b3c0c,3, 0x4b3c24,1, 0x4b3c2c,3, 0x4b3c44,1, 0x4b3c4c,3, 0x4b3c80,8, 0x4b3d00,1, 0x4b4000,40, 0x4b40a4,2, 0x4b40b0,16, 0x4b4120,4, 0x4b4160,138, 0x4b43a0,90, 0x4b4564,5, 0x4b4584,5, 0x4b45a4,1, 0x4b45ac,3, 0x4b45c4,1, 0x4b45cc,3, 0x4b4604,1, 0x4b4620,8, 0x4b4644,14, 0x4b4680,1, 0x4b4700,27, 0x4b4780,4, 0x4b47c0,12, 0x4b4800,10, 0x4b4900,5, 0x4b4918,5, 0x4b4930,5, 0x4b4948,5, 0x4b4998,1, 0x4b49d0,3, 0x4b4a04,1, 0x4b4a40,16, 0x4b4a84,1, 0x4b4a90,4, 0x4b4b00,8, 0x4b4c04,1, 0x4b4c0c,3, 0x4b4c24,1, 0x4b4c2c,3, 0x4b4c44,1, 0x4b4c4c,3, 0x4b4c80,8, 0x4b4d00,1, 0x4b5000,40, 0x4b50a4,2, 0x4b50b0,16, 0x4b5120,4, 0x4b5160,138, 0x4b53a0,90, 0x4b5564,5, 0x4b5584,5, 0x4b55a4,1, 0x4b55ac,3, 0x4b55c4,1, 0x4b55cc,3, 0x4b5604,1, 0x4b5620,8, 0x4b5644,14, 0x4b5680,1, 0x4b5700,27, 0x4b5780,4, 0x4b57c0,12, 0x4b5800,10, 0x4b5900,5, 0x4b5918,5, 0x4b5930,5, 0x4b5948,5, 0x4b5998,1, 0x4b59d0,3, 0x4b5a04,1, 0x4b5a40,16, 0x4b5a84,1, 0x4b5a90,4, 0x4b5b00,8, 0x4b5c04,1, 0x4b5c0c,3, 0x4b5c24,1, 0x4b5c2c,3, 0x4b5c44,1, 0x4b5c4c,3, 0x4b5c80,8, 0x4b5d00,1, 0x4b6000,40, 0x4b60a4,2, 0x4b60b0,16, 0x4b6120,4, 0x4b6160,138, 0x4b63a0,90, 0x4b6564,5, 0x4b6584,5, 0x4b65a4,1, 0x4b65ac,3, 0x4b65c4,1, 0x4b65cc,3, 0x4b6604,1, 0x4b6620,8, 0x4b6644,14, 0x4b6680,1, 0x4b6700,27, 0x4b6780,4, 0x4b67c0,12, 0x4b6800,10, 0x4b6900,5, 0x4b6918,5, 0x4b6930,5, 0x4b6948,5, 0x4b6998,1, 0x4b69d0,3, 0x4b6a04,1, 0x4b6a40,16, 0x4b6a84,1, 0x4b6a90,4, 0x4b6b00,8, 0x4b6c04,1, 0x4b6c0c,3, 0x4b6c24,1, 0x4b6c2c,3, 0x4b6c44,1, 0x4b6c4c,3, 0x4b6c80,8, 0x4b6d00,1, 0x4b7000,40, 0x4b70a4,2, 0x4b70b0,16, 0x4b7120,4, 0x4b7160,138, 0x4b73a0,90, 0x4b7564,5, 0x4b7584,5, 0x4b75a4,1, 0x4b75ac,3, 0x4b75c4,1, 0x4b75cc,3, 0x4b7604,1, 0x4b7620,8, 0x4b7644,14, 0x4b7680,1, 0x4b7700,27, 0x4b7780,4, 0x4b77c0,12, 0x4b7800,10, 0x4b7900,5, 0x4b7918,5, 0x4b7930,5, 0x4b7948,5, 0x4b7998,1, 0x4b79d0,3, 0x4b7a04,1, 0x4b7a40,16, 0x4b7a84,1, 0x4b7a90,4, 0x4b7b00,8, 0x4b7c04,1, 0x4b7c0c,3, 0x4b7c24,1, 0x4b7c2c,3, 0x4b7c44,1, 0x4b7c4c,3, 0x4b7c80,8, 0x4b7d00,1, 0x4b8000,1, 0x4b8008,2, 0x4b8020,37, 0x4b80b8,64, 0x4b8200,2, 0x4b8210,66, 0x4b8420,2, 0x4b8440,46, 0x4b8504,5, 0x4b8524,5, 0x4b8544,1, 0x4b854c,3, 0x4b8564,1, 0x4b856c,3, 0x4b8590,21, 0x4b85f0,1, 0x4b85f8,29, 0x4b8680,4, 0x4b86c0,12, 0x4b8720,7, 0x4b8740,2, 0x4b8800,2, 0x4b8860,4, 0x4b88fc,1, 0x4b9000,19, 0x4b9080,6, 0x4b9a00,25, 0x4b9a80,1, 0x4ba000,51, 0x4bac00,10, 0x4bac80,3, 0x4bfffc,1, 0x4c8000,14, 0x4c8040,14, 0x4c8080,28, 0x4c8400,10, 0x4c8480,3, 0x4c84c0,1, 0x4c9000,4, 0x4c9040,13, 0x4c9080,4, 0x4c90c0,13, 0x4c9100,4, 0x4c9124,1, 0x4c9200,4, 0x4c9240,13, 0x4c9280,4, 0x4c92c0,13, 0x4c9300,4, 0x4c9324,1, 0x4c9400,4, 0x4c9440,13, 0x4c9480,4, 0x4c94c0,13, 0x4c9500,4, 0x4c9524,1, 0x4c9600,4, 0x4c9640,13, 0x4c9680,4, 0x4c96c0,13, 0x4c9700,4, 0x4c9724,1, 0x4c9800,4, 0x4c9840,13, 0x4c9880,4, 0x4c98c0,13, 0x4c9900,4, 0x4c9924,1, 0x4c9a00,4, 0x4c9a40,13, 0x4c9a80,4, 0x4c9ac0,13, 0x4c9b00,4, 0x4c9b24,1, 0x4c9c00,4, 0x4c9c40,13, 0x4c9c80,4, 0x4c9cc0,13, 0x4c9d00,4, 0x4c9d24,1, 0x4c9e00,4, 0x4c9e40,13, 0x4c9e80,4, 0x4c9ec0,13, 0x4c9f00,4, 0x4c9f24,1, 0x4ca000,4, 0x4ca040,13, 0x4ca080,4, 0x4ca0c0,13, 0x4ca100,4, 0x4ca124,1, 0x4ca200,4, 0x4ca240,13, 0x4ca280,4, 0x4ca2c0,13, 0x4ca300,4, 0x4ca324,1, 0x4ca400,4, 0x4ca440,13, 0x4ca480,4, 0x4ca4c0,13, 0x4ca500,4, 0x4ca524,1, 0x4ca600,4, 0x4ca640,13, 0x4ca680,4, 0x4ca6c0,13, 0x4ca700,4, 0x4ca724,1, 0x4ca800,4, 0x4ca840,13, 0x4ca880,4, 0x4ca8c0,13, 0x4ca900,4, 0x4ca924,1, 0x4caa00,4, 0x4caa40,13, 0x4caa80,4, 0x4caac0,13, 0x4cab00,4, 0x4cab24,1, 0x4cac00,4, 0x4cac40,13, 0x4cac80,4, 0x4cacc0,13, 0x4cad00,4, 0x4cad24,1, 0x4cae00,4, 0x4cae40,13, 0x4cae80,4, 0x4caec0,13, 0x4caf00,4, 0x4caf24,1, 0x4cb000,4, 0x4cb040,13, 0x4cb080,4, 0x4cb0c0,13, 0x4cb100,4, 0x4cb124,1, 0x4cb200,532, 0x4cbb00,1, 0x4cbb10,2, 0x4cbb40,13, 0x4cbb80,2, 0x4cbc00,136, 0x4cbe24,17, 0x4cbe70,3, 0x4cc000,128, 0x4cc204,16, 0x4cc250,3, 0x4cc400,136, 0x4cc624,17, 0x4cc670,3, 0x4cc800,19, 0x4cc900,51, 0x4cca08,2, 0x4cca14,3, 0x4ccaa0,2, 0x4d0000,51, 0x4d0c00,10, 0x4d0c80,3, 0x4d1000,8, 0x4d1028,4, 0x4d103c,3, 0x4d1080,8, 0x4d10a8,4, 0x4d10bc,3, 0x4d1100,8, 0x4d1128,4, 0x4d113c,3, 0x4d1180,8, 0x4d11a8,4, 0x4d11bc,3, 0x4d1200,8, 0x4d1228,4, 0x4d123c,3, 0x4d1280,8, 0x4d12a8,4, 0x4d12bc,3, 0x4d1300,8, 0x4d1328,4, 0x4d133c,3, 0x4d1380,8, 0x4d13a8,4, 0x4d13bc,3, 0x4d1400,8, 0x4d1428,4, 0x4d143c,3, 0x4d1480,8, 0x4d14a8,4, 0x4d14bc,3, 0x4d1500,8, 0x4d1528,4, 0x4d153c,3, 0x4d1580,8, 0x4d15a8,4, 0x4d15bc,3, 0x4d1600,8, 0x4d1628,4, 0x4d163c,3, 0x4d1680,8, 0x4d16a8,4, 0x4d16bc,3, 0x4d1700,8, 0x4d1728,4, 0x4d173c,3, 0x4d1780,8, 0x4d17a8,4, 0x4d17bc,3, 0x4d1800,8, 0x4d1828,4, 0x4d183c,3, 0x4d1880,33, 0x4d1908,2, 0x4d2400,64, 0x4d2504,8, 0x4d2530,3, 0x4d2800,72, 0x4d2924,9, 0x4d2950,3, 0x4d2d00,11, 0x4d3010,2, 0x4d4000,51, 0x4d4c00,10, 0x4d4c80,3, 0x4d5000,8, 0x4d5028,4, 0x4d503c,3, 0x4d5080,8, 0x4d50a8,4, 0x4d50bc,3, 0x4d5100,8, 0x4d5128,4, 0x4d513c,3, 0x4d5180,8, 0x4d51a8,4, 0x4d51bc,3, 0x4d5200,8, 0x4d5228,4, 0x4d523c,3, 0x4d5280,8, 0x4d52a8,4, 0x4d52bc,3, 0x4d5300,8, 0x4d5328,4, 0x4d533c,3, 0x4d5380,8, 0x4d53a8,4, 0x4d53bc,3, 0x4d5400,8, 0x4d5428,4, 0x4d543c,3, 0x4d5480,8, 0x4d54a8,4, 0x4d54bc,3, 0x4d5500,8, 0x4d5528,4, 0x4d553c,3, 0x4d5580,8, 0x4d55a8,4, 0x4d55bc,3, 0x4d5600,8, 0x4d5628,4, 0x4d563c,3, 0x4d5680,8, 0x4d56a8,4, 0x4d56bc,3, 0x4d5700,8, 0x4d5728,4, 0x4d573c,3, 0x4d5780,8, 0x4d57a8,4, 0x4d57bc,3, 0x4d5800,8, 0x4d5828,4, 0x4d583c,3, 0x4d5880,33, 0x4d5908,2, 0x4d6400,64, 0x4d6504,8, 0x4d6530,3, 0x4d6800,72, 0x4d6924,9, 0x4d6950,3, 0x4d6d00,11, 0x4d7010,2, 0x4da000,10, 0x4da080,3, 0x4da0e0,1, 0x4db000,21, 0x4db068,1, 0x4db078,2, 0x4db100,17, 0x4db180,1, 0x4db190,1, 0x4e8000,2, 0x4e800c,3, 0x4e801c,3, 0x4e802c,3, 0x4e803c,3, 0x4e804c,3, 0x4e805c,3, 0x4e806c,3, 0x4e807c,3, 0x4e808c,3, 0x4e809c,3, 0x4e80ac,3, 0x4e80bc,3, 0x4e80cc,3, 0x4e80dc,3, 0x4e80ec,3, 0x4e80fc,3, 0x4e810c,3, 0x4e811c,3, 0x4e812c,3, 0x4e813c,3, 0x4e814c,3, 0x4e815c,3, 0x4e816c,3, 0x4e817c,3, 0x4e818c,3, 0x4e819c,3, 0x4e81ac,3, 0x4e81bc,3, 0x4e81cc,3, 0x4e81dc,3, 0x4e81ec,3, 0x4e81fc,1, 0x4e8400,3, 0x4e8410,3, 0x4e8420,3, 0x4e8430,3, 0x4e8440,3, 0x4e8450,3, 0x4e8460,3, 0x4e8470,3, 0x4e8480,3, 0x4e8490,3, 0x4e84a0,3, 0x4e84b0,3, 0x4e84c0,3, 0x4e84d0,3, 0x4e84e0,3, 0x4e84f0,3, 0x4e8500,3, 0x4e8510,3, 0x4e8520,3, 0x4e8530,3, 0x4e8540,3, 0x4e8550,3, 0x4e8560,3, 0x4e8570,3, 0x4e8580,3, 0x4e8590,3, 0x4e85a0,3, 0x4e85b0,3, 0x4e85c0,3, 0x4e85d0,3, 0x4e85e0,3, 0x4e85f0,3, 0x4e8680,8, 0x4e86a8,1, 0x4e8800,128, 0x4e8a80,1, 0x4e8c00,64, 0x4e8d04,2, 0x4e8d10,3, 0x4e8e00,256, 0x4e9300,4, 0x4e93f4,3, 0x4ea004,4, 0x4ea100,32, 0x4ea200,21, 0x4ea25c,64, 0x4ea37c,1, 0x4ea384,1, 0x4ea38c,1, 0x4ea394,1, 0x4ea39c,1, 0x4ea3a4,5, 0x4ea400,32, 0x4ea500,4, 0x4ea520,6, 0x4ea540,4, 0x4ea560,6, 0x4ea580,4, 0x4ea5a0,6, 0x4ea5c0,4, 0x4ea5e0,6, 0x4ea600,4, 0x4ea620,5, 0x4ea640,4, 0x4ea660,5, 0x4ea680,4, 0x4ea6a0,5, 0x4ea6c0,4, 0x4ea6e0,5, 0x4ea7f8,2, 0x4ea804,1, 0x4ea820,6, 0x4ea880,1, 0x4ea900,1, 0x4ea908,3, 0x4ea918,6, 0x4ea934,1, 0x4ea93c,2, 0x4ea948,1, 0x4ea950,1, 0x4ea958,3, 0x4ea980,1, 0x4ea988,1, 0x4ea990,1, 0x4ea9f4,22, 0x4eaa80,7, 0x4eaaa0,3, 0x4eaab0,2, 0x4eabe0,1, 0x4f0000,15, 0x4f0040,13, 0x4f0098,12, 0x4f00ec,12, 0x4f0140,16, 0x4f0194,16, 0x4f01e8,16, 0x4f023c,15, 0x4f0400,15, 0x4f0440,13, 0x4f0498,12, 0x4f04ec,12, 0x4f0540,16, 0x4f0594,16, 0x4f05e8,16, 0x4f063c,15, 0x4f0800,15, 0x4f0840,13, 0x4f0898,12, 0x4f08ec,12, 0x4f0940,16, 0x4f0994,16, 0x4f09e8,16, 0x4f0a3c,15, 0x4f0c00,15, 0x4f0c40,13, 0x4f0c98,12, 0x4f0cec,12, 0x4f0d40,16, 0x4f0d94,16, 0x4f0de8,16, 0x4f0e3c,15, 0x4f1000,15, 0x4f1040,13, 0x4f1098,12, 0x4f10ec,12, 0x4f1140,16, 0x4f1194,16, 0x4f11e8,16, 0x4f123c,15, 0x4f1400,15, 0x4f1440,13, 0x4f1498,12, 0x4f14ec,12, 0x4f1540,16, 0x4f1594,16, 0x4f15e8,16, 0x4f163c,15, 0x4f1800,15, 0x4f1840,13, 0x4f1898,12, 0x4f18ec,12, 0x4f1940,16, 0x4f1994,16, 0x4f19e8,16, 0x4f1a3c,15, 0x4f1c00,15, 0x4f1c40,13, 0x4f1c98,12, 0x4f1cec,12, 0x4f1d40,16, 0x4f1d94,16, 0x4f1de8,16, 0x4f1e3c,15, 0x4f2000,15, 0x4f2040,13, 0x4f2098,12, 0x4f20ec,12, 0x4f2140,16, 0x4f2194,16, 0x4f21e8,16, 0x4f223c,15, 0x4f2400,15, 0x4f2440,13, 0x4f2498,12, 0x4f24ec,12, 0x4f2540,16, 0x4f2594,16, 0x4f25e8,16, 0x4f263c,15, 0x4f2800,15, 0x4f2840,13, 0x4f2898,12, 0x4f28ec,12, 0x4f2940,16, 0x4f2994,16, 0x4f29e8,16, 0x4f2a3c,15, 0x4f2c00,15, 0x4f2c40,13, 0x4f2c98,12, 0x4f2cec,12, 0x4f2d40,16, 0x4f2d94,16, 0x4f2de8,16, 0x4f2e3c,15, 0x4f3000,15, 0x4f3040,13, 0x4f3098,12, 0x4f30ec,12, 0x4f3140,16, 0x4f3194,16, 0x4f31e8,16, 0x4f323c,15, 0x4f3400,15, 0x4f3440,13, 0x4f3498,12, 0x4f34ec,12, 0x4f3540,16, 0x4f3594,16, 0x4f35e8,16, 0x4f363c,15, 0x4f3800,15, 0x4f3840,13, 0x4f3898,12, 0x4f38ec,12, 0x4f3940,16, 0x4f3994,16, 0x4f39e8,16, 0x4f3a3c,15, 0x4f3c00,15, 0x4f3c40,13, 0x4f3c98,12, 0x4f3cec,12, 0x4f3d40,16, 0x4f3d94,16, 0x4f3de8,16, 0x4f3e3c,15, 0x4f4000,15, 0x4f4040,13, 0x4f4098,12, 0x4f40ec,12, 0x4f4140,16, 0x4f4194,16, 0x4f41e8,16, 0x4f423c,15, 0x4f4400,15, 0x4f4440,13, 0x4f4498,12, 0x4f44ec,12, 0x4f4540,16, 0x4f4594,16, 0x4f45e8,16, 0x4f463c,15, 0x4f4800,15, 0x4f4840,13, 0x4f4898,12, 0x4f48ec,12, 0x4f4940,16, 0x4f4994,16, 0x4f49e8,16, 0x4f4a3c,15, 0x4f4c00,15, 0x4f4c40,13, 0x4f4c98,12, 0x4f4cec,12, 0x4f4d40,16, 0x4f4d94,16, 0x4f4de8,16, 0x4f4e3c,15, 0x4f5000,15, 0x4f5040,13, 0x4f5098,12, 0x4f50ec,12, 0x4f5140,16, 0x4f5194,16, 0x4f51e8,16, 0x4f523c,15, 0x4f5400,15, 0x4f5440,13, 0x4f5498,12, 0x4f54ec,12, 0x4f5540,16, 0x4f5594,16, 0x4f55e8,16, 0x4f563c,15, 0x4f5800,15, 0x4f5840,13, 0x4f5898,12, 0x4f58ec,12, 0x4f5940,16, 0x4f5994,16, 0x4f59e8,16, 0x4f5a3c,15, 0x4f5c00,15, 0x4f5c40,13, 0x4f5c98,12, 0x4f5cec,12, 0x4f5d40,16, 0x4f5d94,16, 0x4f5de8,16, 0x4f5e3c,15, 0x4f6000,15, 0x4f6040,13, 0x4f6098,12, 0x4f60ec,12, 0x4f6140,16, 0x4f6194,16, 0x4f61e8,16, 0x4f623c,15, 0x4f6400,15, 0x4f6440,13, 0x4f6498,12, 0x4f64ec,12, 0x4f6540,16, 0x4f6594,16, 0x4f65e8,16, 0x4f663c,15, 0x4f6800,15, 0x4f6840,13, 0x4f6898,12, 0x4f68ec,12, 0x4f6940,16, 0x4f6994,16, 0x4f69e8,16, 0x4f6a3c,15, 0x4f6c00,15, 0x4f6c40,13, 0x4f6c98,12, 0x4f6cec,12, 0x4f6d40,16, 0x4f6d94,16, 0x4f6de8,16, 0x4f6e3c,15, 0x4f7000,15, 0x4f7040,13, 0x4f7098,12, 0x4f70ec,12, 0x4f7140,16, 0x4f7194,16, 0x4f71e8,16, 0x4f723c,15, 0x4f7400,15, 0x4f7440,13, 0x4f7498,12, 0x4f74ec,12, 0x4f7540,16, 0x4f7594,16, 0x4f75e8,16, 0x4f763c,15, 0x4f7800,15, 0x4f7840,13, 0x4f7898,12, 0x4f78ec,12, 0x4f7940,16, 0x4f7994,16, 0x4f79e8,16, 0x4f7a3c,15, 0x4f7c00,15, 0x4f7c40,13, 0x4f7c98,12, 0x4f7cec,12, 0x4f7d40,16, 0x4f7d94,16, 0x4f7de8,16, 0x4f7e3c,15, 0x4f8000,15, 0x4f8040,13, 0x4f8098,12, 0x4f80ec,12, 0x4f8140,16, 0x4f8194,16, 0x4f81e8,16, 0x4f823c,15, 0x4f8400,8, 0x4f8424,1, 0x4f8440,1, 0x4f8480,4, 0x4f84a0,5, 0x4f84c0,24, 0x4f8524,4, 0x4f8538,4, 0x4f854c,4, 0x4f8560,9, 0x4f8600,8, 0x4f8624,1, 0x4f8640,1, 0x4f8680,4, 0x4f86a0,5, 0x4f86c0,24, 0x4f8724,4, 0x4f8738,4, 0x4f874c,4, 0x4f8760,9, 0x4f8800,8, 0x4f8824,1, 0x4f8840,1, 0x4f8880,4, 0x4f88a0,5, 0x4f88c0,24, 0x4f8924,4, 0x4f8938,4, 0x4f894c,4, 0x4f8960,9, 0x4f8a00,8, 0x4f8a24,1, 0x4f8a40,1, 0x4f8a80,4, 0x4f8aa0,5, 0x4f8ac0,24, 0x4f8b24,4, 0x4f8b38,4, 0x4f8b4c,4, 0x4f8b60,9, 0x4f8c00,8, 0x4f8c24,1, 0x4f8c40,1, 0x4f8c80,4, 0x4f8ca0,5, 0x4f8cc0,24, 0x4f8d24,4, 0x4f8d38,4, 0x4f8d4c,4, 0x4f8d60,9, 0x4f8e00,8, 0x4f8e24,1, 0x4f8e40,1, 0x4f8e80,4, 0x4f8ea0,5, 0x4f8ec0,24, 0x4f8f24,4, 0x4f8f38,4, 0x4f8f4c,4, 0x4f8f60,9, 0x4f9000,8, 0x4f9024,1, 0x4f9040,1, 0x4f9080,4, 0x4f90a0,5, 0x4f90c0,24, 0x4f9124,4, 0x4f9138,4, 0x4f914c,4, 0x4f9160,9, 0x4f9200,8, 0x4f9224,1, 0x4f9240,1, 0x4f9280,4, 0x4f92a0,5, 0x4f92c0,24, 0x4f9324,4, 0x4f9338,4, 0x4f934c,4, 0x4f9360,9, 0x4f9400,8, 0x4f9424,1, 0x4f9440,1, 0x4f9480,4, 0x4f94a0,5, 0x4f94c0,24, 0x4f9524,4, 0x4f9538,4, 0x4f954c,4, 0x4f9560,9, 0x4f9600,8, 0x4f9624,1, 0x4f9640,1, 0x4f9680,4, 0x4f96a0,5, 0x4f96c0,24, 0x4f9724,4, 0x4f9738,4, 0x4f974c,4, 0x4f9760,9, 0x4f9800,8, 0x4f9824,1, 0x4f9840,1, 0x4f9880,4, 0x4f98a0,5, 0x4f98c0,24, 0x4f9924,4, 0x4f9938,4, 0x4f994c,4, 0x4f9960,9, 0x4f9a00,8, 0x4f9a24,1, 0x4f9a40,1, 0x4f9a80,4, 0x4f9aa0,5, 0x4f9ac0,24, 0x4f9b24,4, 0x4f9b38,4, 0x4f9b4c,4, 0x4f9b60,9, 0x4f9c00,8, 0x4f9c24,1, 0x4f9c40,1, 0x4f9c80,4, 0x4f9ca0,5, 0x4f9cc0,24, 0x4f9d24,4, 0x4f9d38,4, 0x4f9d4c,4, 0x4f9d60,9, 0x4f9e00,8, 0x4f9e24,1, 0x4f9e40,1, 0x4f9e80,4, 0x4f9ea0,5, 0x4f9ec0,24, 0x4f9f24,4, 0x4f9f38,4, 0x4f9f4c,4, 0x4f9f60,9, 0x4fa000,8, 0x4fa024,1, 0x4fa040,1, 0x4fa080,4, 0x4fa0a0,5, 0x4fa0c0,24, 0x4fa124,4, 0x4fa138,4, 0x4fa14c,4, 0x4fa160,9, 0x4fa200,8, 0x4fa224,1, 0x4fa240,1, 0x4fa280,4, 0x4fa2a0,5, 0x4fa2c0,24, 0x4fa324,4, 0x4fa338,4, 0x4fa34c,4, 0x4fa360,9, 0x4fa400,8, 0x4fa424,1, 0x4fa440,1, 0x4fa480,4, 0x4fa4a0,5, 0x4fa4c0,24, 0x4fa524,4, 0x4fa538,4, 0x4fa54c,4, 0x4fa560,9, 0x4fa600,8, 0x4fa624,1, 0x4fa640,1, 0x4fa680,4, 0x4fa6a0,5, 0x4fa6c0,24, 0x4fa724,4, 0x4fa738,4, 0x4fa74c,4, 0x4fa760,9, 0x4fa800,8, 0x4fa824,1, 0x4fa840,1, 0x4fa880,4, 0x4fa8a0,5, 0x4fa8c0,24, 0x4fa924,4, 0x4fa938,4, 0x4fa94c,4, 0x4fa960,9, 0x4faa00,8, 0x4faa24,1, 0x4faa40,1, 0x4faa80,4, 0x4faaa0,5, 0x4faac0,24, 0x4fab24,4, 0x4fab38,4, 0x4fab4c,4, 0x4fab60,9, 0x4fac00,8, 0x4fac24,1, 0x4fac40,1, 0x4fac80,4, 0x4faca0,5, 0x4facc0,24, 0x4fad24,4, 0x4fad38,4, 0x4fad4c,4, 0x4fad60,9, 0x4fae00,8, 0x4fae24,1, 0x4fae40,1, 0x4fae80,4, 0x4faea0,5, 0x4faec0,24, 0x4faf24,4, 0x4faf38,4, 0x4faf4c,4, 0x4faf60,9, 0x4fb000,8, 0x4fb024,1, 0x4fb040,1, 0x4fb080,4, 0x4fb0a0,5, 0x4fb0c0,24, 0x4fb124,4, 0x4fb138,4, 0x4fb14c,4, 0x4fb160,9, 0x4fb200,8, 0x4fb224,1, 0x4fb240,1, 0x4fb280,4, 0x4fb2a0,5, 0x4fb2c0,24, 0x4fb324,4, 0x4fb338,4, 0x4fb34c,4, 0x4fb360,9, 0x4fb400,8, 0x4fb424,1, 0x4fb440,1, 0x4fb480,4, 0x4fb4a0,5, 0x4fb4c0,24, 0x4fb524,4, 0x4fb538,4, 0x4fb54c,4, 0x4fb560,9, 0x4fb600,8, 0x4fb624,1, 0x4fb640,1, 0x4fb680,4, 0x4fb6a0,5, 0x4fb6c0,24, 0x4fb724,4, 0x4fb738,4, 0x4fb74c,4, 0x4fb760,9, 0x4fb800,8, 0x4fb824,1, 0x4fb840,1, 0x4fb880,4, 0x4fb8a0,5, 0x4fb8c0,24, 0x4fb924,4, 0x4fb938,4, 0x4fb94c,4, 0x4fb960,9, 0x4fba00,8, 0x4fba24,1, 0x4fba40,1, 0x4fba80,4, 0x4fbaa0,5, 0x4fbac0,24, 0x4fbb24,4, 0x4fbb38,4, 0x4fbb4c,4, 0x4fbb60,9, 0x4fbc00,8, 0x4fbc24,1, 0x4fbc40,1, 0x4fbc80,4, 0x4fbca0,5, 0x4fbcc0,24, 0x4fbd24,4, 0x4fbd38,4, 0x4fbd4c,4, 0x4fbd60,9, 0x4fbe00,8, 0x4fbe24,1, 0x4fbe40,1, 0x4fbe80,4, 0x4fbea0,5, 0x4fbec0,24, 0x4fbf24,4, 0x4fbf38,4, 0x4fbf4c,4, 0x4fbf60,9, 0x4fc000,8, 0x4fc024,1, 0x4fc040,1, 0x4fc080,4, 0x4fc0a0,5, 0x4fc0c0,24, 0x4fc124,4, 0x4fc138,4, 0x4fc14c,4, 0x4fc160,9, 0x4fc200,8, 0x4fc224,1, 0x4fc240,1, 0x4fc280,4, 0x4fc2a0,5, 0x4fc2c0,24, 0x4fc324,4, 0x4fc338,4, 0x4fc34c,4, 0x4fc360,9, 0x4fc400,8, 0x4fc424,1, 0x4fc440,1, 0x4fc480,4, 0x4fc4a0,5, 0x4fc4c0,24, 0x4fc524,4, 0x4fc538,4, 0x4fc54c,4, 0x4fc560,9, 0x4fc600,8, 0x4fc624,1, 0x4fc640,1, 0x4fc680,4, 0x4fc6a0,5, 0x4fc6c0,24, 0x4fc724,4, 0x4fc738,4, 0x4fc74c,4, 0x4fc760,9, 0x4fc800,18, 0x4fc84c,12, 0x4fcc00,16, 0x4fcc44,1, 0x4fcc50,3, 0x4fcc80,13, 0x4fccc0,3, 0x4fccd0,3, 0x4fcce0,18, 0x4fd000,128, 0x4fd204,16, 0x4fd250,3, 0x4fd400,136, 0x4fd624,17, 0x4fd670,3, 0x4fd800,1, 0x4fd808,1, 0x4fd810,1, 0x4fd818,1, 0x4fd820,1, 0x4fd828,1, 0x4fd830,1, 0x4fd838,1, 0x4fd840,1, 0x4fd848,1, 0x4fd850,1, 0x4fd858,1, 0x4fd860,1, 0x4fd868,1, 0x4fd870,1, 0x4fd878,1, 0x4fd880,1, 0x4fd888,1, 0x4fd890,1, 0x4fd898,1, 0x4fd8a0,1, 0x4fd8a8,1, 0x4fd8b0,1, 0x4fd8b8,1, 0x4fd8c0,1, 0x4fd8c8,1, 0x4fd8d0,1, 0x4fd8d8,1, 0x4fd8e0,1, 0x4fd8e8,1, 0x4fd8f0,1, 0x4fd8f8,1, 0x4fd900,1, 0x4fd908,1, 0x4fd910,1, 0x4fd918,6, 0x4fda00,10, 0x4fda80,3, 0x4fdae0,1, 0x4fdb00,1, 0x600000,11, 0x600040,16, 0x600084,5, 0x600200,7, 0x600220,6, 0x600240,7, 0x600260,6, 0x600280,6, 0x6002a0,2, 0x6002ac,2, 0x6002c0,7, 0x6002e0,7, 0x600300,2, 0x60030c,2, 0x600320,6, 0x600400,2, 0x601000,19, 0x601c00,10, 0x601c80,3, 0x602200,4, 0x602220,4, 0x602240,11, 0x602270,32, 0x602300,24, 0x602380,20, 0x602400,61, 0x602500,25, 0x602568,4, 0x602580,2, 0x6025a0,1, 0x6025c0,11, 0x602600,9, 0x602640,3, 0x602650,3, 0x602664,3, 0x602680,22, 0x602800,11, 0x603000,552, 0x604200,4, 0x604220,4, 0x604240,11, 0x604270,32, 0x604300,24, 0x604380,20, 0x604400,61, 0x604500,25, 0x604568,4, 0x604580,2, 0x6045a0,1, 0x6045c0,11, 0x604600,9, 0x604640,3, 0x604650,3, 0x604664,3, 0x604680,22, 0x604800,11, 0x605000,552, 0x606200,4, 0x606220,4, 0x606240,11, 0x606270,32, 0x606300,24, 0x606380,20, 0x606400,61, 0x606500,25, 0x606568,4, 0x606580,2, 0x6065a0,1, 0x6065c0,11, 0x606600,9, 0x606640,3, 0x606650,3, 0x606664,3, 0x606680,22, 0x606800,11, 0x607000,552, 0x608200,4, 0x608220,4, 0x608240,11, 0x608270,32, 0x608300,24, 0x608380,20, 0x608400,61, 0x608500,25, 0x608568,4, 0x608580,2, 0x6085a0,1, 0x6085c0,11, 0x608600,9, 0x608640,3, 0x608650,3, 0x608664,3, 0x608680,22, 0x608800,11, 0x609000,552, 0x60a000,7, 0x60a048,8, 0x60a080,8, 0x60a100,7, 0x60a148,8, 0x60a180,8, 0x60a200,7, 0x60a248,8, 0x60a280,8, 0x60a300,7, 0x60a348,8, 0x60a380,8, 0x610000,11, 0x610040,16, 0x610084,5, 0x610200,7, 0x610220,6, 0x610240,7, 0x610260,6, 0x610280,6, 0x6102a0,2, 0x6102ac,2, 0x6102c0,7, 0x6102e0,7, 0x610300,2, 0x61030c,2, 0x610320,6, 0x610400,2, 0x611000,19, 0x611c00,10, 0x611c80,3, 0x612200,4, 0x612220,4, 0x612240,11, 0x612270,32, 0x612300,24, 0x612380,20, 0x612400,61, 0x612500,25, 0x612568,4, 0x612580,2, 0x6125a0,1, 0x6125c0,11, 0x612600,9, 0x612640,3, 0x612650,3, 0x612664,3, 0x612680,22, 0x612800,11, 0x613000,552, 0x614200,4, 0x614220,4, 0x614240,11, 0x614270,32, 0x614300,24, 0x614380,20, 0x614400,61, 0x614500,25, 0x614568,4, 0x614580,2, 0x6145a0,1, 0x6145c0,11, 0x614600,9, 0x614640,3, 0x614650,3, 0x614664,3, 0x614680,22, 0x614800,11, 0x615000,552, 0x616200,4, 0x616220,4, 0x616240,11, 0x616270,32, 0x616300,24, 0x616380,20, 0x616400,61, 0x616500,25, 0x616568,4, 0x616580,2, 0x6165a0,1, 0x6165c0,11, 0x616600,9, 0x616640,3, 0x616650,3, 0x616664,3, 0x616680,22, 0x616800,11, 0x617000,552, 0x618200,4, 0x618220,4, 0x618240,11, 0x618270,32, 0x618300,24, 0x618380,20, 0x618400,61, 0x618500,25, 0x618568,4, 0x618580,2, 0x6185a0,1, 0x6185c0,11, 0x618600,9, 0x618640,3, 0x618650,3, 0x618664,3, 0x618680,22, 0x618800,11, 0x619000,552, 0x61a000,7, 0x61a048,8, 0x61a080,8, 0x61a100,7, 0x61a148,8, 0x61a180,8, 0x61a200,7, 0x61a248,8, 0x61a280,8, 0x61a300,7, 0x61a348,8, 0x61a380,8, 0x620000,4, 0x620014,1, 0x620020,3, 0x620030,3, 0x620040,13, 0x620078,4, 0x62009c,29, 0x620114,1, 0x620120,3, 0x620130,3, 0x620140,13, 0x620178,4, 0x62019c,29, 0x620214,1, 0x620220,3, 0x620230,3, 0x620240,13, 0x620278,4, 0x62029c,29, 0x620314,1, 0x620320,3, 0x620330,3, 0x620340,13, 0x620378,4, 0x62039c,29, 0x620420,2, 0x62042c,2, 0x620440,4, 0x620460,2, 0x62046c,2, 0x620480,4, 0x6204a0,2, 0x6204ac,2, 0x6204c0,4, 0x6204e0,2, 0x6204ec,2, 0x620500,2, 0x62050c,4, 0x620520,2, 0x62052c,4, 0x620540,2, 0x62054c,4, 0x620560,2, 0x62056c,4, 0x6205c0,1, 0x620600,16, 0x620800,18, 0x620880,13, 0x6208f0,3, 0x620900,18, 0x620980,13, 0x6209f0,3, 0x620a00,18, 0x620a80,13, 0x620af0,3, 0x620b00,18, 0x620b80,13, 0x620bf0,3, 0x620c00,6, 0x620c20,16, 0x620c80,6, 0x620ca0,16, 0x620d00,6, 0x620d20,16, 0x620d80,6, 0x620da0,16, 0x620e00,4, 0x620e20,4, 0x620e40,4, 0x620e60,4, 0x620e80,37, 0x620f20,5, 0x620f40,5, 0x620f60,5, 0x621000,12, 0x621200,1, 0x621208,6, 0x621228,9, 0x621280,1, 0x621288,6, 0x6212a8,9, 0x621300,1, 0x621308,6, 0x621328,9, 0x621380,1, 0x621388,6, 0x6213a8,9, 0x621400,4, 0x621480,4, 0x621500,4, 0x621580,4, 0x621600,71, 0x621720,7, 0x621740,7, 0x621760,7, 0x621780,4, 0x62179c,11, 0x6217d0,2, 0x6217e0,2, 0x6217f0,2, 0x621800,7, 0x621820,7, 0x621840,7, 0x621860,7, 0x6218c0,64, 0x621aa0,2, 0x621ac0,8, 0x622000,7, 0x622020,4, 0x622040,4, 0x622060,7, 0x622080,7, 0x6220a0,4, 0x6220c0,4, 0x6220e0,7, 0x622100,7, 0x622120,4, 0x622140,4, 0x622160,7, 0x622180,7, 0x6221a0,4, 0x6221c0,4, 0x6221e0,7, 0x622200,19, 0x622280,19, 0x622300,19, 0x622380,19, 0x622400,14, 0x62243c,9, 0x622464,6, 0x622480,7, 0x6224a0,2, 0x6224ac,2, 0x622500,14, 0x62253c,9, 0x622564,6, 0x622580,7, 0x6225a0,2, 0x6225ac,2, 0x622600,14, 0x62263c,9, 0x622664,6, 0x622680,7, 0x6226a0,2, 0x6226ac,2, 0x622700,14, 0x62273c,9, 0x622764,6, 0x622780,7, 0x6227a0,2, 0x6227ac,2, 0x622800,19, 0x622880,19, 0x622900,19, 0x622980,19, 0x622a10,2, 0x622a1c,1, 0x622a50,2, 0x622a5c,1, 0x622a90,2, 0x622a9c,1, 0x622ad0,2, 0x622adc,1, 0x622c00,7, 0x622c20,1, 0x622c54,18, 0x622ca0,1, 0x622cd4,18, 0x622d20,1, 0x622d54,18, 0x622da0,1, 0x622dd4,12, 0x622e08,6, 0x623100,7, 0x623120,7, 0x623140,7, 0x623160,7, 0x623180,3, 0x624000,4, 0x624014,1, 0x624020,3, 0x624030,3, 0x624040,13, 0x624078,4, 0x62409c,29, 0x624114,1, 0x624120,3, 0x624130,3, 0x624140,13, 0x624178,4, 0x62419c,29, 0x624214,1, 0x624220,3, 0x624230,3, 0x624240,13, 0x624278,4, 0x62429c,29, 0x624314,1, 0x624320,3, 0x624330,3, 0x624340,13, 0x624378,4, 0x62439c,29, 0x624420,2, 0x62442c,2, 0x624440,4, 0x624460,2, 0x62446c,2, 0x624480,4, 0x6244a0,2, 0x6244ac,2, 0x6244c0,4, 0x6244e0,2, 0x6244ec,2, 0x624500,2, 0x62450c,4, 0x624520,2, 0x62452c,4, 0x624540,2, 0x62454c,4, 0x624560,2, 0x62456c,4, 0x6245c0,1, 0x624600,16, 0x624800,18, 0x624880,13, 0x6248f0,3, 0x624900,18, 0x624980,13, 0x6249f0,3, 0x624a00,18, 0x624a80,13, 0x624af0,3, 0x624b00,18, 0x624b80,13, 0x624bf0,3, 0x624c00,6, 0x624c20,16, 0x624c80,6, 0x624ca0,16, 0x624d00,6, 0x624d20,16, 0x624d80,6, 0x624da0,16, 0x624e00,4, 0x624e20,4, 0x624e40,4, 0x624e60,4, 0x624e80,37, 0x624f20,5, 0x624f40,5, 0x624f60,5, 0x625000,12, 0x625200,1, 0x625208,6, 0x625228,9, 0x625280,1, 0x625288,6, 0x6252a8,9, 0x625300,1, 0x625308,6, 0x625328,9, 0x625380,1, 0x625388,6, 0x6253a8,9, 0x625400,4, 0x625480,4, 0x625500,4, 0x625580,4, 0x625600,71, 0x625720,7, 0x625740,7, 0x625760,7, 0x625780,4, 0x62579c,11, 0x6257d0,2, 0x6257e0,2, 0x6257f0,2, 0x625800,7, 0x625820,7, 0x625840,7, 0x625860,7, 0x6258c0,64, 0x625aa0,2, 0x625ac0,8, 0x626000,7, 0x626020,4, 0x626040,4, 0x626060,7, 0x626080,7, 0x6260a0,4, 0x6260c0,4, 0x6260e0,7, 0x626100,7, 0x626120,4, 0x626140,4, 0x626160,7, 0x626180,7, 0x6261a0,4, 0x6261c0,4, 0x6261e0,7, 0x626200,19, 0x626280,19, 0x626300,19, 0x626380,19, 0x626400,14, 0x62643c,9, 0x626464,6, 0x626480,7, 0x6264a0,2, 0x6264ac,2, 0x626500,14, 0x62653c,9, 0x626564,6, 0x626580,7, 0x6265a0,2, 0x6265ac,2, 0x626600,14, 0x62663c,9, 0x626664,6, 0x626680,7, 0x6266a0,2, 0x6266ac,2, 0x626700,14, 0x62673c,9, 0x626764,6, 0x626780,7, 0x6267a0,2, 0x6267ac,2, 0x626800,19, 0x626880,19, 0x626900,19, 0x626980,19, 0x626a10,2, 0x626a1c,1, 0x626a50,2, 0x626a5c,1, 0x626a90,2, 0x626a9c,1, 0x626ad0,2, 0x626adc,1, 0x626c00,7, 0x626c20,1, 0x626c54,18, 0x626ca0,1, 0x626cd4,18, 0x626d20,1, 0x626d54,18, 0x626da0,1, 0x626dd4,12, 0x626e08,6, 0x627100,7, 0x627120,7, 0x627140,7, 0x627160,7, 0x627180,3, 0x628000,19, 0x628c00,10, 0x628c80,3, 0x628cc0,1, 0x629000,13, 0x629080,21, 0x62c000,16, 0x62c080,11, 0x62c100,11, 0x62c204,1, 0x62c224,21, 0x62c280,16, 0x62c300,11, 0x62c340,11, 0x62d000,8, 0x62d024,10, 0x62d050,22, 0x62d100,8, 0x62d124,10, 0x62d150,22, 0x62d200,8, 0x62d224,10, 0x62d250,22, 0x62d300,8, 0x62d324,10, 0x62d350,22, 0x62d400,8, 0x62d424,10, 0x62d450,22, 0x62d500,8, 0x62d524,10, 0x62d550,22, 0x62d600,8, 0x62d624,10, 0x62d650,22, 0x62d700,8, 0x62d724,10, 0x62d750,22, 0x62d800,8, 0x62d824,10, 0x62d850,22, 0x62d904,1, 0x62d914,10, 0x62d948,11, 0x62d980,1, 0x62d9a0,6, 0x62d9c0,2, 0x62d9cc,2, 0x62e000,35, 0x62ec00,10, 0x62ec80,3, 0x62f000,1, 0x62f008,3, 0x62f038,1, 0x62f044,1, 0x62f050,2, 0x62f060,8, 0x62f100,13, 0x62f140,19, 0x62f190,4, 0x630000,13, 0x630040,2, 0x630054,4, 0x630080,27, 0x630100,12, 0x630140,14, 0x630180,28, 0x630200,6, 0x630240,6, 0x63025c,3, 0x630280,5, 0x6302a0,8, 0x630400,14, 0x630440,14, 0x630480,14, 0x6304c0,14, 0x630540,3, 0x630600,7, 0x630620,14, 0x630680,5, 0x6306a0,7, 0x630800,13, 0x630840,2, 0x630854,4, 0x630880,27, 0x630900,12, 0x630940,14, 0x630980,28, 0x630a00,6, 0x630a40,6, 0x630a5c,3, 0x630a80,5, 0x630aa0,8, 0x630c00,14, 0x630c40,14, 0x630c80,14, 0x630cc0,14, 0x630d40,3, 0x630e00,7, 0x630e20,14, 0x630e80,5, 0x630ea0,7, 0x631000,13, 0x631040,2, 0x631054,4, 0x631080,27, 0x631100,12, 0x631140,14, 0x631180,28, 0x631200,6, 0x631240,6, 0x63125c,3, 0x631280,5, 0x6312a0,8, 0x631400,14, 0x631440,14, 0x631480,14, 0x6314c0,14, 0x631540,3, 0x631600,7, 0x631620,14, 0x631680,5, 0x6316a0,7, 0x631800,13, 0x631840,2, 0x631854,4, 0x631880,27, 0x631900,12, 0x631940,14, 0x631980,28, 0x631a00,6, 0x631a40,6, 0x631a5c,3, 0x631a80,5, 0x631aa0,8, 0x631c00,14, 0x631c40,14, 0x631c80,14, 0x631cc0,14, 0x631d40,3, 0x631e00,7, 0x631e20,14, 0x631e80,5, 0x631ea0,7, 0x632000,8, 0x632040,8, 0x632080,1, 0x632098,6, 0x632100,10, 0x632140,3, 0x632150,2, 0x632180,2, 0x632200,6, 0x632220,18, 0x632280,4, 0x632300,8, 0x632400,2, 0x632480,2, 0x633000,40, 0x633100,64, 0x634000,13, 0x634040,2, 0x634054,4, 0x634080,27, 0x634100,12, 0x634140,14, 0x634180,28, 0x634200,6, 0x634240,6, 0x63425c,3, 0x634280,5, 0x6342a0,8, 0x634400,14, 0x634440,14, 0x634480,14, 0x6344c0,14, 0x634540,3, 0x634600,7, 0x634620,14, 0x634680,5, 0x6346a0,7, 0x634800,13, 0x634840,2, 0x634854,4, 0x634880,27, 0x634900,12, 0x634940,14, 0x634980,28, 0x634a00,6, 0x634a40,6, 0x634a5c,3, 0x634a80,5, 0x634aa0,8, 0x634c00,14, 0x634c40,14, 0x634c80,14, 0x634cc0,14, 0x634d40,3, 0x634e00,7, 0x634e20,14, 0x634e80,5, 0x634ea0,7, 0x635000,13, 0x635040,2, 0x635054,4, 0x635080,27, 0x635100,12, 0x635140,14, 0x635180,28, 0x635200,6, 0x635240,6, 0x63525c,3, 0x635280,5, 0x6352a0,8, 0x635400,14, 0x635440,14, 0x635480,14, 0x6354c0,14, 0x635540,3, 0x635600,7, 0x635620,14, 0x635680,5, 0x6356a0,7, 0x635800,13, 0x635840,2, 0x635854,4, 0x635880,27, 0x635900,12, 0x635940,14, 0x635980,28, 0x635a00,6, 0x635a40,6, 0x635a5c,3, 0x635a80,5, 0x635aa0,8, 0x635c00,14, 0x635c40,14, 0x635c80,14, 0x635cc0,14, 0x635d40,3, 0x635e00,7, 0x635e20,14, 0x635e80,5, 0x635ea0,7, 0x636000,8, 0x636040,8, 0x636080,1, 0x636098,6, 0x636100,10, 0x636140,3, 0x636150,2, 0x636180,2, 0x636200,6, 0x636220,18, 0x636280,4, 0x636300,8, 0x636400,2, 0x636480,2, 0x637000,40, 0x637100,64, 0x640000,5, 0x640018,5, 0x640030,3, 0x640044,3, 0x640100,58, 0x6401f0,3, 0x640280,3, 0x640400,5, 0x640418,5, 0x640430,3, 0x640444,3, 0x640500,58, 0x6405f0,3, 0x640680,3, 0x640800,5, 0x640818,5, 0x640830,3, 0x640844,3, 0x640900,58, 0x6409f0,3, 0x640a80,3, 0x640c00,5, 0x640c18,5, 0x640c30,3, 0x640c44,3, 0x640d00,58, 0x640df0,3, 0x640e80,3, 0x641018,1, 0x641100,2, 0x641110,10, 0x641140,2, 0x641150,10, 0x641180,2, 0x641190,10, 0x6411c0,2, 0x6411d0,10, 0x641208,1, 0x641220,16, 0x641280,1, 0x641288,2, 0x641400,8, 0x644000,2, 0x64400c,1, 0x644030,3, 0x644040,2, 0x64404c,1, 0x644070,3, 0x644080,2, 0x64408c,1, 0x6440b0,3, 0x6440c0,2, 0x6440cc,1, 0x6440f0,3, 0x644200,15, 0x644280,15, 0x644300,15, 0x644380,15, 0x644400,15, 0x644480,15, 0x644500,15, 0x644580,15, 0x644604,10, 0x644700,2, 0x64470c,7, 0x644740,1, 0x644770,1, 0x6447c0,2, 0x6447d0,4, 0x644800,3, 0x644810,1, 0x64481c,3, 0x644b04,1, 0x644b0c,5, 0x644b44,1, 0x644b50,5, 0x644b70,6, 0x644b90,2, 0x644c00,129, 0x645000,39, 0x645100,39, 0x645200,39, 0x645300,39, 0x645400,39, 0x645500,39, 0x645600,39, 0x645700,39, 0x645f00,19, 0x646000,131, 0x646400,4, 0x646440,15, 0x646480,4, 0x6464c0,15, 0x646500,4, 0x646540,15, 0x646580,4, 0x6465c0,15, 0x646600,4, 0x646640,10, 0x646680,4, 0x6466c0,10, 0x646700,4, 0x646740,10, 0x646780,4, 0x6467c0,10, 0x646800,4, 0x646840,14, 0x646880,17, 0x646900,2, 0x646a00,13, 0x646a80,1, 0x646a88,8, 0x646ac0,6, 0x646ae0,1, 0x646ae8,2, 0x646b04,13, 0x646fcc,32, 0x648000,5, 0x648018,5, 0x648030,3, 0x648044,3, 0x648100,58, 0x6481f0,3, 0x648280,3, 0x648400,5, 0x648418,5, 0x648430,3, 0x648444,3, 0x648500,58, 0x6485f0,3, 0x648680,3, 0x648800,5, 0x648818,5, 0x648830,3, 0x648844,3, 0x648900,58, 0x6489f0,3, 0x648a80,3, 0x648c00,5, 0x648c18,5, 0x648c30,3, 0x648c44,3, 0x648d00,58, 0x648df0,3, 0x648e80,3, 0x649018,1, 0x649100,2, 0x649110,10, 0x649140,2, 0x649150,10, 0x649180,2, 0x649190,10, 0x6491c0,2, 0x6491d0,10, 0x649208,1, 0x649220,16, 0x649280,1, 0x649288,2, 0x649400,8, 0x64c000,2, 0x64c00c,1, 0x64c030,3, 0x64c040,2, 0x64c04c,1, 0x64c070,3, 0x64c080,2, 0x64c08c,1, 0x64c0b0,3, 0x64c0c0,2, 0x64c0cc,1, 0x64c0f0,3, 0x64c200,15, 0x64c280,15, 0x64c300,15, 0x64c380,15, 0x64c400,15, 0x64c480,15, 0x64c500,15, 0x64c580,15, 0x64c604,10, 0x64c700,2, 0x64c70c,7, 0x64c740,1, 0x64c770,1, 0x64c7c0,2, 0x64c7d0,4, 0x64c800,3, 0x64c810,1, 0x64c81c,3, 0x64cb04,1, 0x64cb0c,5, 0x64cb44,1, 0x64cb50,5, 0x64cb70,6, 0x64cb90,2, 0x64cc00,129, 0x64d000,39, 0x64d100,39, 0x64d200,39, 0x64d300,39, 0x64d400,39, 0x64d500,39, 0x64d600,39, 0x64d700,39, 0x64df00,19, 0x64e000,131, 0x64e400,4, 0x64e440,15, 0x64e480,4, 0x64e4c0,15, 0x64e500,4, 0x64e540,15, 0x64e580,4, 0x64e5c0,15, 0x64e600,4, 0x64e640,10, 0x64e680,4, 0x64e6c0,10, 0x64e700,4, 0x64e740,10, 0x64e780,4, 0x64e7c0,10, 0x64e800,4, 0x64e840,14, 0x64e880,17, 0x64e900,2, 0x64ea00,13, 0x64ea80,1, 0x64ea88,8, 0x64eac0,6, 0x64eae0,1, 0x64eae8,2, 0x64eb04,13, 0x64efcc,32, 0x650000,35, 0x650c00,10, 0x650c80,3, 0x651000,2, 0x65100c,4, 0x651028,3, 0x651038,4, 0x651050,2, 0x651060,2, 0x651070,2, 0x651080,4, 0x651098,7, 0x651120,8, 0x651200,4, 0x651214,7, 0x651234,7, 0x651254,7, 0x651274,24, 0x651300,2, 0x65130c,3, 0x651400,32, 0x651484,2, 0x651490,3, 0x651500,25, 0x6515c0,8, 0x6515e8,5, 0x651600,5, 0x651618,18, 0x651690,4, 0x651740,2, 0x651760,6, 0x651780,6, 0x6517a0,6, 0x6517c0,6, 0x6517e0,1, 0x651800,19, 0x651880,2, 0x6518b0,2, 0x6518c0,2, 0x654000,35, 0x654c00,10, 0x654c80,3, 0x655000,2, 0x65500c,4, 0x655028,3, 0x655038,4, 0x655050,2, 0x655060,2, 0x655070,2, 0x655080,4, 0x655098,7, 0x655120,8, 0x655200,4, 0x655214,7, 0x655234,7, 0x655254,7, 0x655274,24, 0x655300,2, 0x65530c,3, 0x655400,32, 0x655484,2, 0x655490,3, 0x655500,25, 0x6555c0,8, 0x6555e8,5, 0x655600,5, 0x655618,18, 0x655690,4, 0x655740,2, 0x655760,6, 0x655780,6, 0x6557a0,6, 0x6557c0,6, 0x6557e0,1, 0x655800,19, 0x655880,2, 0x6558b0,2, 0x6558c0,2, 0x660000,11, 0x660040,16, 0x660084,5, 0x660200,7, 0x660220,6, 0x660240,7, 0x660260,6, 0x660280,6, 0x6602a0,2, 0x6602ac,2, 0x6602c0,7, 0x6602e0,7, 0x660300,2, 0x66030c,2, 0x660320,6, 0x660400,2, 0x661000,19, 0x661c00,10, 0x661c80,3, 0x662200,4, 0x662220,4, 0x662240,11, 0x662270,32, 0x662300,24, 0x662380,20, 0x662400,61, 0x662500,25, 0x662568,4, 0x662580,2, 0x6625a0,1, 0x6625c0,11, 0x662600,9, 0x662640,3, 0x662650,3, 0x662664,3, 0x662680,22, 0x662800,11, 0x663000,552, 0x664200,4, 0x664220,4, 0x664240,11, 0x664270,32, 0x664300,24, 0x664380,20, 0x664400,61, 0x664500,25, 0x664568,4, 0x664580,2, 0x6645a0,1, 0x6645c0,11, 0x664600,9, 0x664640,3, 0x664650,3, 0x664664,3, 0x664680,22, 0x664800,11, 0x665000,552, 0x666200,4, 0x666220,4, 0x666240,11, 0x666270,32, 0x666300,24, 0x666380,20, 0x666400,61, 0x666500,25, 0x666568,4, 0x666580,2, 0x6665a0,1, 0x6665c0,11, 0x666600,9, 0x666640,3, 0x666650,3, 0x666664,3, 0x666680,22, 0x666800,11, 0x667000,552, 0x668200,4, 0x668220,4, 0x668240,11, 0x668270,32, 0x668300,24, 0x668380,20, 0x668400,61, 0x668500,25, 0x668568,4, 0x668580,2, 0x6685a0,1, 0x6685c0,11, 0x668600,9, 0x668640,3, 0x668650,3, 0x668664,3, 0x668680,22, 0x668800,11, 0x669000,552, 0x66a000,7, 0x66a048,8, 0x66a080,8, 0x66a100,7, 0x66a148,8, 0x66a180,8, 0x66a200,7, 0x66a248,8, 0x66a280,8, 0x66a300,7, 0x66a348,8, 0x66a380,8, 0x670000,11, 0x670040,16, 0x670084,5, 0x670200,7, 0x670220,6, 0x670240,7, 0x670260,6, 0x670280,6, 0x6702a0,2, 0x6702ac,2, 0x6702c0,7, 0x6702e0,7, 0x670300,2, 0x67030c,2, 0x670320,6, 0x670400,2, 0x671000,19, 0x671c00,10, 0x671c80,3, 0x672200,4, 0x672220,4, 0x672240,11, 0x672270,32, 0x672300,24, 0x672380,20, 0x672400,61, 0x672500,25, 0x672568,4, 0x672580,2, 0x6725a0,1, 0x6725c0,11, 0x672600,9, 0x672640,3, 0x672650,3, 0x672664,3, 0x672680,22, 0x672800,11, 0x673000,552, 0x674200,4, 0x674220,4, 0x674240,11, 0x674270,32, 0x674300,24, 0x674380,20, 0x674400,61, 0x674500,25, 0x674568,4, 0x674580,2, 0x6745a0,1, 0x6745c0,11, 0x674600,9, 0x674640,3, 0x674650,3, 0x674664,3, 0x674680,22, 0x674800,11, 0x675000,552, 0x676200,4, 0x676220,4, 0x676240,11, 0x676270,32, 0x676300,24, 0x676380,20, 0x676400,61, 0x676500,25, 0x676568,4, 0x676580,2, 0x6765a0,1, 0x6765c0,11, 0x676600,9, 0x676640,3, 0x676650,3, 0x676664,3, 0x676680,22, 0x676800,11, 0x677000,552, 0x678200,4, 0x678220,4, 0x678240,11, 0x678270,32, 0x678300,24, 0x678380,20, 0x678400,61, 0x678500,25, 0x678568,4, 0x678580,2, 0x6785a0,1, 0x6785c0,11, 0x678600,9, 0x678640,3, 0x678650,3, 0x678664,3, 0x678680,22, 0x678800,11, 0x679000,552, 0x67a000,7, 0x67a048,8, 0x67a080,8, 0x67a100,7, 0x67a148,8, 0x67a180,8, 0x67a200,7, 0x67a248,8, 0x67a280,8, 0x67a300,7, 0x67a348,8, 0x67a380,8, 0x680000,4, 0x680014,1, 0x680020,3, 0x680030,3, 0x680040,13, 0x680078,4, 0x68009c,29, 0x680114,1, 0x680120,3, 0x680130,3, 0x680140,13, 0x680178,4, 0x68019c,29, 0x680214,1, 0x680220,3, 0x680230,3, 0x680240,13, 0x680278,4, 0x68029c,29, 0x680314,1, 0x680320,3, 0x680330,3, 0x680340,13, 0x680378,4, 0x68039c,29, 0x680420,2, 0x68042c,2, 0x680440,4, 0x680460,2, 0x68046c,2, 0x680480,4, 0x6804a0,2, 0x6804ac,2, 0x6804c0,4, 0x6804e0,2, 0x6804ec,2, 0x680500,2, 0x68050c,4, 0x680520,2, 0x68052c,4, 0x680540,2, 0x68054c,4, 0x680560,2, 0x68056c,4, 0x6805c0,1, 0x680600,16, 0x680800,18, 0x680880,13, 0x6808f0,3, 0x680900,18, 0x680980,13, 0x6809f0,3, 0x680a00,18, 0x680a80,13, 0x680af0,3, 0x680b00,18, 0x680b80,13, 0x680bf0,3, 0x680c00,6, 0x680c20,16, 0x680c80,6, 0x680ca0,16, 0x680d00,6, 0x680d20,16, 0x680d80,6, 0x680da0,16, 0x680e00,4, 0x680e20,4, 0x680e40,4, 0x680e60,4, 0x680e80,37, 0x680f20,5, 0x680f40,5, 0x680f60,5, 0x681000,12, 0x681200,1, 0x681208,6, 0x681228,9, 0x681280,1, 0x681288,6, 0x6812a8,9, 0x681300,1, 0x681308,6, 0x681328,9, 0x681380,1, 0x681388,6, 0x6813a8,9, 0x681400,4, 0x681480,4, 0x681500,4, 0x681580,4, 0x681600,71, 0x681720,7, 0x681740,7, 0x681760,7, 0x681780,4, 0x68179c,11, 0x6817d0,2, 0x6817e0,2, 0x6817f0,2, 0x681800,7, 0x681820,7, 0x681840,7, 0x681860,7, 0x6818c0,64, 0x681aa0,2, 0x681ac0,8, 0x682000,7, 0x682020,4, 0x682040,4, 0x682060,7, 0x682080,7, 0x6820a0,4, 0x6820c0,4, 0x6820e0,7, 0x682100,7, 0x682120,4, 0x682140,4, 0x682160,7, 0x682180,7, 0x6821a0,4, 0x6821c0,4, 0x6821e0,7, 0x682200,19, 0x682280,19, 0x682300,19, 0x682380,19, 0x682400,14, 0x68243c,9, 0x682464,6, 0x682480,7, 0x6824a0,2, 0x6824ac,2, 0x682500,14, 0x68253c,9, 0x682564,6, 0x682580,7, 0x6825a0,2, 0x6825ac,2, 0x682600,14, 0x68263c,9, 0x682664,6, 0x682680,7, 0x6826a0,2, 0x6826ac,2, 0x682700,14, 0x68273c,9, 0x682764,6, 0x682780,7, 0x6827a0,2, 0x6827ac,2, 0x682800,19, 0x682880,19, 0x682900,19, 0x682980,19, 0x682a10,2, 0x682a1c,1, 0x682a50,2, 0x682a5c,1, 0x682a90,2, 0x682a9c,1, 0x682ad0,2, 0x682adc,1, 0x682c00,7, 0x682c20,1, 0x682c54,18, 0x682ca0,1, 0x682cd4,18, 0x682d20,1, 0x682d54,18, 0x682da0,1, 0x682dd4,12, 0x682e08,6, 0x683100,7, 0x683120,7, 0x683140,7, 0x683160,7, 0x683180,3, 0x684000,4, 0x684014,1, 0x684020,3, 0x684030,3, 0x684040,13, 0x684078,4, 0x68409c,29, 0x684114,1, 0x684120,3, 0x684130,3, 0x684140,13, 0x684178,4, 0x68419c,29, 0x684214,1, 0x684220,3, 0x684230,3, 0x684240,13, 0x684278,4, 0x68429c,29, 0x684314,1, 0x684320,3, 0x684330,3, 0x684340,13, 0x684378,4, 0x68439c,29, 0x684420,2, 0x68442c,2, 0x684440,4, 0x684460,2, 0x68446c,2, 0x684480,4, 0x6844a0,2, 0x6844ac,2, 0x6844c0,4, 0x6844e0,2, 0x6844ec,2, 0x684500,2, 0x68450c,4, 0x684520,2, 0x68452c,4, 0x684540,2, 0x68454c,4, 0x684560,2, 0x68456c,4, 0x6845c0,1, 0x684600,16, 0x684800,18, 0x684880,13, 0x6848f0,3, 0x684900,18, 0x684980,13, 0x6849f0,3, 0x684a00,18, 0x684a80,13, 0x684af0,3, 0x684b00,18, 0x684b80,13, 0x684bf0,3, 0x684c00,6, 0x684c20,16, 0x684c80,6, 0x684ca0,16, 0x684d00,6, 0x684d20,16, 0x684d80,6, 0x684da0,16, 0x684e00,4, 0x684e20,4, 0x684e40,4, 0x684e60,4, 0x684e80,37, 0x684f20,5, 0x684f40,5, 0x684f60,5, 0x685000,12, 0x685200,1, 0x685208,6, 0x685228,9, 0x685280,1, 0x685288,6, 0x6852a8,9, 0x685300,1, 0x685308,6, 0x685328,9, 0x685380,1, 0x685388,6, 0x6853a8,9, 0x685400,4, 0x685480,4, 0x685500,4, 0x685580,4, 0x685600,71, 0x685720,7, 0x685740,7, 0x685760,7, 0x685780,4, 0x68579c,11, 0x6857d0,2, 0x6857e0,2, 0x6857f0,2, 0x685800,7, 0x685820,7, 0x685840,7, 0x685860,7, 0x6858c0,64, 0x685aa0,2, 0x685ac0,8, 0x686000,7, 0x686020,4, 0x686040,4, 0x686060,7, 0x686080,7, 0x6860a0,4, 0x6860c0,4, 0x6860e0,7, 0x686100,7, 0x686120,4, 0x686140,4, 0x686160,7, 0x686180,7, 0x6861a0,4, 0x6861c0,4, 0x6861e0,7, 0x686200,19, 0x686280,19, 0x686300,19, 0x686380,19, 0x686400,14, 0x68643c,9, 0x686464,6, 0x686480,7, 0x6864a0,2, 0x6864ac,2, 0x686500,14, 0x68653c,9, 0x686564,6, 0x686580,7, 0x6865a0,2, 0x6865ac,2, 0x686600,14, 0x68663c,9, 0x686664,6, 0x686680,7, 0x6866a0,2, 0x6866ac,2, 0x686700,14, 0x68673c,9, 0x686764,6, 0x686780,7, 0x6867a0,2, 0x6867ac,2, 0x686800,19, 0x686880,19, 0x686900,19, 0x686980,19, 0x686a10,2, 0x686a1c,1, 0x686a50,2, 0x686a5c,1, 0x686a90,2, 0x686a9c,1, 0x686ad0,2, 0x686adc,1, 0x686c00,7, 0x686c20,1, 0x686c54,18, 0x686ca0,1, 0x686cd4,18, 0x686d20,1, 0x686d54,18, 0x686da0,1, 0x686dd4,12, 0x686e08,6, 0x687100,7, 0x687120,7, 0x687140,7, 0x687160,7, 0x687180,3, 0x688000,19, 0x688c00,10, 0x688c80,3, 0x688cc0,1, 0x689000,13, 0x689080,21, 0x68c000,16, 0x68c080,11, 0x68c100,11, 0x68c204,1, 0x68c224,21, 0x68c280,16, 0x68c300,11, 0x68c340,11, 0x68d000,8, 0x68d024,10, 0x68d050,22, 0x68d100,8, 0x68d124,10, 0x68d150,22, 0x68d200,8, 0x68d224,10, 0x68d250,22, 0x68d300,8, 0x68d324,10, 0x68d350,22, 0x68d400,8, 0x68d424,10, 0x68d450,22, 0x68d500,8, 0x68d524,10, 0x68d550,22, 0x68d600,8, 0x68d624,10, 0x68d650,22, 0x68d700,8, 0x68d724,10, 0x68d750,22, 0x68d800,8, 0x68d824,10, 0x68d850,22, 0x68d904,1, 0x68d914,10, 0x68d948,11, 0x68d980,1, 0x68d9a0,6, 0x68d9c0,2, 0x68d9cc,2, 0x68e000,35, 0x68ec00,10, 0x68ec80,3, 0x68f000,1, 0x68f008,3, 0x68f038,1, 0x68f044,1, 0x68f050,2, 0x68f060,8, 0x68f100,13, 0x68f140,19, 0x68f190,4, 0x690000,13, 0x690040,2, 0x690054,4, 0x690080,27, 0x690100,12, 0x690140,14, 0x690180,28, 0x690200,6, 0x690240,6, 0x69025c,3, 0x690280,5, 0x6902a0,8, 0x690400,14, 0x690440,14, 0x690480,14, 0x6904c0,14, 0x690540,3, 0x690600,7, 0x690620,14, 0x690680,5, 0x6906a0,7, 0x690800,13, 0x690840,2, 0x690854,4, 0x690880,27, 0x690900,12, 0x690940,14, 0x690980,28, 0x690a00,6, 0x690a40,6, 0x690a5c,3, 0x690a80,5, 0x690aa0,8, 0x690c00,14, 0x690c40,14, 0x690c80,14, 0x690cc0,14, 0x690d40,3, 0x690e00,7, 0x690e20,14, 0x690e80,5, 0x690ea0,7, 0x691000,13, 0x691040,2, 0x691054,4, 0x691080,27, 0x691100,12, 0x691140,14, 0x691180,28, 0x691200,6, 0x691240,6, 0x69125c,3, 0x691280,5, 0x6912a0,8, 0x691400,14, 0x691440,14, 0x691480,14, 0x6914c0,14, 0x691540,3, 0x691600,7, 0x691620,14, 0x691680,5, 0x6916a0,7, 0x691800,13, 0x691840,2, 0x691854,4, 0x691880,27, 0x691900,12, 0x691940,14, 0x691980,28, 0x691a00,6, 0x691a40,6, 0x691a5c,3, 0x691a80,5, 0x691aa0,8, 0x691c00,14, 0x691c40,14, 0x691c80,14, 0x691cc0,14, 0x691d40,3, 0x691e00,7, 0x691e20,14, 0x691e80,5, 0x691ea0,7, 0x692000,8, 0x692040,8, 0x692080,1, 0x692098,6, 0x692100,10, 0x692140,3, 0x692150,2, 0x692180,2, 0x692200,6, 0x692220,18, 0x692280,4, 0x692300,8, 0x692400,2, 0x692480,2, 0x693000,40, 0x693100,64, 0x694000,13, 0x694040,2, 0x694054,4, 0x694080,27, 0x694100,12, 0x694140,14, 0x694180,28, 0x694200,6, 0x694240,6, 0x69425c,3, 0x694280,5, 0x6942a0,8, 0x694400,14, 0x694440,14, 0x694480,14, 0x6944c0,14, 0x694540,3, 0x694600,7, 0x694620,14, 0x694680,5, 0x6946a0,7, 0x694800,13, 0x694840,2, 0x694854,4, 0x694880,27, 0x694900,12, 0x694940,14, 0x694980,28, 0x694a00,6, 0x694a40,6, 0x694a5c,3, 0x694a80,5, 0x694aa0,8, 0x694c00,14, 0x694c40,14, 0x694c80,14, 0x694cc0,14, 0x694d40,3, 0x694e00,7, 0x694e20,14, 0x694e80,5, 0x694ea0,7, 0x695000,13, 0x695040,2, 0x695054,4, 0x695080,27, 0x695100,12, 0x695140,14, 0x695180,28, 0x695200,6, 0x695240,6, 0x69525c,3, 0x695280,5, 0x6952a0,8, 0x695400,14, 0x695440,14, 0x695480,14, 0x6954c0,14, 0x695540,3, 0x695600,7, 0x695620,14, 0x695680,5, 0x6956a0,7, 0x695800,13, 0x695840,2, 0x695854,4, 0x695880,27, 0x695900,12, 0x695940,14, 0x695980,28, 0x695a00,6, 0x695a40,6, 0x695a5c,3, 0x695a80,5, 0x695aa0,8, 0x695c00,14, 0x695c40,14, 0x695c80,14, 0x695cc0,14, 0x695d40,3, 0x695e00,7, 0x695e20,14, 0x695e80,5, 0x695ea0,7, 0x696000,8, 0x696040,8, 0x696080,1, 0x696098,6, 0x696100,10, 0x696140,3, 0x696150,2, 0x696180,2, 0x696200,6, 0x696220,18, 0x696280,4, 0x696300,8, 0x696400,2, 0x696480,2, 0x697000,40, 0x697100,64, 0x6a0000,5, 0x6a0018,5, 0x6a0030,3, 0x6a0044,3, 0x6a0100,58, 0x6a01f0,3, 0x6a0280,3, 0x6a0400,5, 0x6a0418,5, 0x6a0430,3, 0x6a0444,3, 0x6a0500,58, 0x6a05f0,3, 0x6a0680,3, 0x6a0800,5, 0x6a0818,5, 0x6a0830,3, 0x6a0844,3, 0x6a0900,58, 0x6a09f0,3, 0x6a0a80,3, 0x6a0c00,5, 0x6a0c18,5, 0x6a0c30,3, 0x6a0c44,3, 0x6a0d00,58, 0x6a0df0,3, 0x6a0e80,3, 0x6a1018,1, 0x6a1100,2, 0x6a1110,10, 0x6a1140,2, 0x6a1150,10, 0x6a1180,2, 0x6a1190,10, 0x6a11c0,2, 0x6a11d0,10, 0x6a1208,1, 0x6a1220,16, 0x6a1280,1, 0x6a1288,2, 0x6a1400,8, 0x6a4000,2, 0x6a400c,1, 0x6a4030,3, 0x6a4040,2, 0x6a404c,1, 0x6a4070,3, 0x6a4080,2, 0x6a408c,1, 0x6a40b0,3, 0x6a40c0,2, 0x6a40cc,1, 0x6a40f0,3, 0x6a4200,15, 0x6a4280,15, 0x6a4300,15, 0x6a4380,15, 0x6a4400,15, 0x6a4480,15, 0x6a4500,15, 0x6a4580,15, 0x6a4604,10, 0x6a4700,2, 0x6a470c,7, 0x6a4740,1, 0x6a4770,1, 0x6a47c0,2, 0x6a47d0,4, 0x6a4800,3, 0x6a4810,1, 0x6a481c,3, 0x6a4b04,1, 0x6a4b0c,5, 0x6a4b44,1, 0x6a4b50,5, 0x6a4b70,6, 0x6a4b90,2, 0x6a4c00,129, 0x6a5000,39, 0x6a5100,39, 0x6a5200,39, 0x6a5300,39, 0x6a5400,39, 0x6a5500,39, 0x6a5600,39, 0x6a5700,39, 0x6a5f00,19, 0x6a6000,131, 0x6a6400,4, 0x6a6440,15, 0x6a6480,4, 0x6a64c0,15, 0x6a6500,4, 0x6a6540,15, 0x6a6580,4, 0x6a65c0,15, 0x6a6600,4, 0x6a6640,10, 0x6a6680,4, 0x6a66c0,10, 0x6a6700,4, 0x6a6740,10, 0x6a6780,4, 0x6a67c0,10, 0x6a6800,4, 0x6a6840,14, 0x6a6880,17, 0x6a6900,2, 0x6a6a00,13, 0x6a6a80,1, 0x6a6a88,8, 0x6a6ac0,6, 0x6a6ae0,1, 0x6a6ae8,2, 0x6a6b04,13, 0x6a6fcc,32, 0x6a8000,5, 0x6a8018,5, 0x6a8030,3, 0x6a8044,3, 0x6a8100,58, 0x6a81f0,3, 0x6a8280,3, 0x6a8400,5, 0x6a8418,5, 0x6a8430,3, 0x6a8444,3, 0x6a8500,58, 0x6a85f0,3, 0x6a8680,3, 0x6a8800,5, 0x6a8818,5, 0x6a8830,3, 0x6a8844,3, 0x6a8900,58, 0x6a89f0,3, 0x6a8a80,3, 0x6a8c00,5, 0x6a8c18,5, 0x6a8c30,3, 0x6a8c44,3, 0x6a8d00,58, 0x6a8df0,3, 0x6a8e80,3, 0x6a9018,1, 0x6a9100,2, 0x6a9110,10, 0x6a9140,2, 0x6a9150,10, 0x6a9180,2, 0x6a9190,10, 0x6a91c0,2, 0x6a91d0,10, 0x6a9208,1, 0x6a9220,16, 0x6a9280,1, 0x6a9288,2, 0x6a9400,8, 0x6ac000,2, 0x6ac00c,1, 0x6ac030,3, 0x6ac040,2, 0x6ac04c,1, 0x6ac070,3, 0x6ac080,2, 0x6ac08c,1, 0x6ac0b0,3, 0x6ac0c0,2, 0x6ac0cc,1, 0x6ac0f0,3, 0x6ac200,15, 0x6ac280,15, 0x6ac300,15, 0x6ac380,15, 0x6ac400,15, 0x6ac480,15, 0x6ac500,15, 0x6ac580,15, 0x6ac604,10, 0x6ac700,2, 0x6ac70c,7, 0x6ac740,1, 0x6ac770,1, 0x6ac7c0,2, 0x6ac7d0,4, 0x6ac800,3, 0x6ac810,1, 0x6ac81c,3, 0x6acb04,1, 0x6acb0c,5, 0x6acb44,1, 0x6acb50,5, 0x6acb70,6, 0x6acb90,2, 0x6acc00,129, 0x6ad000,39, 0x6ad100,39, 0x6ad200,39, 0x6ad300,39, 0x6ad400,39, 0x6ad500,39, 0x6ad600,39, 0x6ad700,39, 0x6adf00,19, 0x6ae000,131, 0x6ae400,4, 0x6ae440,15, 0x6ae480,4, 0x6ae4c0,15, 0x6ae500,4, 0x6ae540,15, 0x6ae580,4, 0x6ae5c0,15, 0x6ae600,4, 0x6ae640,10, 0x6ae680,4, 0x6ae6c0,10, 0x6ae700,4, 0x6ae740,10, 0x6ae780,4, 0x6ae7c0,10, 0x6ae800,4, 0x6ae840,14, 0x6ae880,17, 0x6ae900,2, 0x6aea00,13, 0x6aea80,1, 0x6aea88,8, 0x6aeac0,6, 0x6aeae0,1, 0x6aeae8,2, 0x6aeb04,13, 0x6aefcc,32, 0x6b0000,35, 0x6b0c00,10, 0x6b0c80,3, 0x6b1000,2, 0x6b100c,4, 0x6b1028,3, 0x6b1038,4, 0x6b1050,2, 0x6b1060,2, 0x6b1070,2, 0x6b1080,4, 0x6b1098,7, 0x6b1120,8, 0x6b1200,4, 0x6b1214,7, 0x6b1234,7, 0x6b1254,7, 0x6b1274,24, 0x6b1300,2, 0x6b130c,3, 0x6b1400,32, 0x6b1484,2, 0x6b1490,3, 0x6b1500,25, 0x6b15c0,8, 0x6b15e8,5, 0x6b1600,5, 0x6b1618,18, 0x6b1690,4, 0x6b1740,2, 0x6b1760,6, 0x6b1780,6, 0x6b17a0,6, 0x6b17c0,6, 0x6b17e0,1, 0x6b1800,19, 0x6b1880,2, 0x6b18b0,2, 0x6b18c0,2, 0x6b4000,35, 0x6b4c00,10, 0x6b4c80,3, 0x6b5000,2, 0x6b500c,4, 0x6b5028,3, 0x6b5038,4, 0x6b5050,2, 0x6b5060,2, 0x6b5070,2, 0x6b5080,4, 0x6b5098,7, 0x6b5120,8, 0x6b5200,4, 0x6b5214,7, 0x6b5234,7, 0x6b5254,7, 0x6b5274,24, 0x6b5300,2, 0x6b530c,3, 0x6b5400,32, 0x6b5484,2, 0x6b5490,3, 0x6b5500,25, 0x6b55c0,8, 0x6b55e8,5, 0x6b5600,5, 0x6b5618,18, 0x6b5690,4, 0x6b5740,2, 0x6b5760,6, 0x6b5780,6, 0x6b57a0,6, 0x6b57c0,6, 0x6b57e0,1, 0x6b5800,19, 0x6b5880,2, 0x6b58b0,2, 0x6b58c0,2, 0x6c0000,11, 0x6c0040,16, 0x6c0084,5, 0x6c0200,7, 0x6c0220,6, 0x6c0240,7, 0x6c0260,6, 0x6c0280,6, 0x6c02a0,2, 0x6c02ac,2, 0x6c02c0,7, 0x6c02e0,7, 0x6c0300,2, 0x6c030c,2, 0x6c0320,6, 0x6c0400,2, 0x6c1000,19, 0x6c1c00,10, 0x6c1c80,3, 0x6c2200,4, 0x6c2220,4, 0x6c2240,11, 0x6c2270,32, 0x6c2300,24, 0x6c2380,20, 0x6c2400,61, 0x6c2500,25, 0x6c2568,4, 0x6c2580,2, 0x6c25a0,1, 0x6c25c0,11, 0x6c2600,9, 0x6c2640,3, 0x6c2650,3, 0x6c2664,3, 0x6c2680,22, 0x6c2800,11, 0x6c3000,552, 0x6c4200,4, 0x6c4220,4, 0x6c4240,11, 0x6c4270,32, 0x6c4300,24, 0x6c4380,20, 0x6c4400,61, 0x6c4500,25, 0x6c4568,4, 0x6c4580,2, 0x6c45a0,1, 0x6c45c0,11, 0x6c4600,9, 0x6c4640,3, 0x6c4650,3, 0x6c4664,3, 0x6c4680,22, 0x6c4800,11, 0x6c5000,552, 0x6c6200,4, 0x6c6220,4, 0x6c6240,11, 0x6c6270,32, 0x6c6300,24, 0x6c6380,20, 0x6c6400,61, 0x6c6500,25, 0x6c6568,4, 0x6c6580,2, 0x6c65a0,1, 0x6c65c0,11, 0x6c6600,9, 0x6c6640,3, 0x6c6650,3, 0x6c6664,3, 0x6c6680,22, 0x6c6800,11, 0x6c7000,552, 0x6c8200,4, 0x6c8220,4, 0x6c8240,11, 0x6c8270,32, 0x6c8300,24, 0x6c8380,20, 0x6c8400,61, 0x6c8500,25, 0x6c8568,4, 0x6c8580,2, 0x6c85a0,1, 0x6c85c0,11, 0x6c8600,9, 0x6c8640,3, 0x6c8650,3, 0x6c8664,3, 0x6c8680,22, 0x6c8800,11, 0x6c9000,552, 0x6ca000,7, 0x6ca048,8, 0x6ca080,8, 0x6ca100,7, 0x6ca148,8, 0x6ca180,8, 0x6ca200,7, 0x6ca248,8, 0x6ca280,8, 0x6ca300,7, 0x6ca348,8, 0x6ca380,8, 0x6d0000,11, 0x6d0040,16, 0x6d0084,5, 0x6d0200,7, 0x6d0220,6, 0x6d0240,7, 0x6d0260,6, 0x6d0280,6, 0x6d02a0,2, 0x6d02ac,2, 0x6d02c0,7, 0x6d02e0,7, 0x6d0300,2, 0x6d030c,2, 0x6d0320,6, 0x6d0400,2, 0x6d1000,19, 0x6d1c00,10, 0x6d1c80,3, 0x6d2200,4, 0x6d2220,4, 0x6d2240,11, 0x6d2270,32, 0x6d2300,24, 0x6d2380,20, 0x6d2400,61, 0x6d2500,25, 0x6d2568,4, 0x6d2580,2, 0x6d25a0,1, 0x6d25c0,11, 0x6d2600,9, 0x6d2640,3, 0x6d2650,3, 0x6d2664,3, 0x6d2680,22, 0x6d2800,11, 0x6d3000,552, 0x6d4200,4, 0x6d4220,4, 0x6d4240,11, 0x6d4270,32, 0x6d4300,24, 0x6d4380,20, 0x6d4400,61, 0x6d4500,25, 0x6d4568,4, 0x6d4580,2, 0x6d45a0,1, 0x6d45c0,11, 0x6d4600,9, 0x6d4640,3, 0x6d4650,3, 0x6d4664,3, 0x6d4680,22, 0x6d4800,11, 0x6d5000,552, 0x6d6200,4, 0x6d6220,4, 0x6d6240,11, 0x6d6270,32, 0x6d6300,24, 0x6d6380,20, 0x6d6400,61, 0x6d6500,25, 0x6d6568,4, 0x6d6580,2, 0x6d65a0,1, 0x6d65c0,11, 0x6d6600,9, 0x6d6640,3, 0x6d6650,3, 0x6d6664,3, 0x6d6680,22, 0x6d6800,11, 0x6d7000,552, 0x6d8200,4, 0x6d8220,4, 0x6d8240,11, 0x6d8270,32, 0x6d8300,24, 0x6d8380,20, 0x6d8400,61, 0x6d8500,25, 0x6d8568,4, 0x6d8580,2, 0x6d85a0,1, 0x6d85c0,11, 0x6d8600,9, 0x6d8640,3, 0x6d8650,3, 0x6d8664,3, 0x6d8680,22, 0x6d8800,11, 0x6d9000,552, 0x6da000,7, 0x6da048,8, 0x6da080,8, 0x6da100,7, 0x6da148,8, 0x6da180,8, 0x6da200,7, 0x6da248,8, 0x6da280,8, 0x6da300,7, 0x6da348,8, 0x6da380,8, 0x6e0000,4, 0x6e0014,1, 0x6e0020,3, 0x6e0030,3, 0x6e0040,13, 0x6e0078,4, 0x6e009c,29, 0x6e0114,1, 0x6e0120,3, 0x6e0130,3, 0x6e0140,13, 0x6e0178,4, 0x6e019c,29, 0x6e0214,1, 0x6e0220,3, 0x6e0230,3, 0x6e0240,13, 0x6e0278,4, 0x6e029c,29, 0x6e0314,1, 0x6e0320,3, 0x6e0330,3, 0x6e0340,13, 0x6e0378,4, 0x6e039c,29, 0x6e0420,2, 0x6e042c,2, 0x6e0440,4, 0x6e0460,2, 0x6e046c,2, 0x6e0480,4, 0x6e04a0,2, 0x6e04ac,2, 0x6e04c0,4, 0x6e04e0,2, 0x6e04ec,2, 0x6e0500,2, 0x6e050c,4, 0x6e0520,2, 0x6e052c,4, 0x6e0540,2, 0x6e054c,4, 0x6e0560,2, 0x6e056c,4, 0x6e05c0,1, 0x6e0600,16, 0x6e0800,18, 0x6e0880,13, 0x6e08f0,3, 0x6e0900,18, 0x6e0980,13, 0x6e09f0,3, 0x6e0a00,18, 0x6e0a80,13, 0x6e0af0,3, 0x6e0b00,18, 0x6e0b80,13, 0x6e0bf0,3, 0x6e0c00,6, 0x6e0c20,16, 0x6e0c80,6, 0x6e0ca0,16, 0x6e0d00,6, 0x6e0d20,16, 0x6e0d80,6, 0x6e0da0,16, 0x6e0e00,4, 0x6e0e20,4, 0x6e0e40,4, 0x6e0e60,4, 0x6e0e80,37, 0x6e0f20,5, 0x6e0f40,5, 0x6e0f60,5, 0x6e1000,12, 0x6e1200,1, 0x6e1208,6, 0x6e1228,9, 0x6e1280,1, 0x6e1288,6, 0x6e12a8,9, 0x6e1300,1, 0x6e1308,6, 0x6e1328,9, 0x6e1380,1, 0x6e1388,6, 0x6e13a8,9, 0x6e1400,4, 0x6e1480,4, 0x6e1500,4, 0x6e1580,4, 0x6e1600,71, 0x6e1720,7, 0x6e1740,7, 0x6e1760,7, 0x6e1780,4, 0x6e179c,11, 0x6e17d0,2, 0x6e17e0,2, 0x6e17f0,2, 0x6e1800,7, 0x6e1820,7, 0x6e1840,7, 0x6e1860,7, 0x6e18c0,64, 0x6e1aa0,2, 0x6e1ac0,8, 0x6e2000,7, 0x6e2020,4, 0x6e2040,4, 0x6e2060,7, 0x6e2080,7, 0x6e20a0,4, 0x6e20c0,4, 0x6e20e0,7, 0x6e2100,7, 0x6e2120,4, 0x6e2140,4, 0x6e2160,7, 0x6e2180,7, 0x6e21a0,4, 0x6e21c0,4, 0x6e21e0,7, 0x6e2200,19, 0x6e2280,19, 0x6e2300,19, 0x6e2380,19, 0x6e2400,14, 0x6e243c,9, 0x6e2464,6, 0x6e2480,7, 0x6e24a0,2, 0x6e24ac,2, 0x6e2500,14, 0x6e253c,9, 0x6e2564,6, 0x6e2580,7, 0x6e25a0,2, 0x6e25ac,2, 0x6e2600,14, 0x6e263c,9, 0x6e2664,6, 0x6e2680,7, 0x6e26a0,2, 0x6e26ac,2, 0x6e2700,14, 0x6e273c,9, 0x6e2764,6, 0x6e2780,7, 0x6e27a0,2, 0x6e27ac,2, 0x6e2800,19, 0x6e2880,19, 0x6e2900,19, 0x6e2980,19, 0x6e2a10,2, 0x6e2a1c,1, 0x6e2a50,2, 0x6e2a5c,1, 0x6e2a90,2, 0x6e2a9c,1, 0x6e2ad0,2, 0x6e2adc,1, 0x6e2c00,7, 0x6e2c20,1, 0x6e2c54,18, 0x6e2ca0,1, 0x6e2cd4,18, 0x6e2d20,1, 0x6e2d54,18, 0x6e2da0,1, 0x6e2dd4,12, 0x6e2e08,6, 0x6e3100,7, 0x6e3120,7, 0x6e3140,7, 0x6e3160,7, 0x6e3180,3, 0x6e4000,4, 0x6e4014,1, 0x6e4020,3, 0x6e4030,3, 0x6e4040,13, 0x6e4078,4, 0x6e409c,29, 0x6e4114,1, 0x6e4120,3, 0x6e4130,3, 0x6e4140,13, 0x6e4178,4, 0x6e419c,29, 0x6e4214,1, 0x6e4220,3, 0x6e4230,3, 0x6e4240,13, 0x6e4278,4, 0x6e429c,29, 0x6e4314,1, 0x6e4320,3, 0x6e4330,3, 0x6e4340,13, 0x6e4378,4, 0x6e439c,29, 0x6e4420,2, 0x6e442c,2, 0x6e4440,4, 0x6e4460,2, 0x6e446c,2, 0x6e4480,4, 0x6e44a0,2, 0x6e44ac,2, 0x6e44c0,4, 0x6e44e0,2, 0x6e44ec,2, 0x6e4500,2, 0x6e450c,4, 0x6e4520,2, 0x6e452c,4, 0x6e4540,2, 0x6e454c,4, 0x6e4560,2, 0x6e456c,4, 0x6e45c0,1, 0x6e4600,16, 0x6e4800,18, 0x6e4880,13, 0x6e48f0,3, 0x6e4900,18, 0x6e4980,13, 0x6e49f0,3, 0x6e4a00,18, 0x6e4a80,13, 0x6e4af0,3, 0x6e4b00,18, 0x6e4b80,13, 0x6e4bf0,3, 0x6e4c00,6, 0x6e4c20,16, 0x6e4c80,6, 0x6e4ca0,16, 0x6e4d00,6, 0x6e4d20,16, 0x6e4d80,6, 0x6e4da0,16, 0x6e4e00,4, 0x6e4e20,4, 0x6e4e40,4, 0x6e4e60,4, 0x6e4e80,37, 0x6e4f20,5, 0x6e4f40,5, 0x6e4f60,5, 0x6e5000,12, 0x6e5200,1, 0x6e5208,6, 0x6e5228,9, 0x6e5280,1, 0x6e5288,6, 0x6e52a8,9, 0x6e5300,1, 0x6e5308,6, 0x6e5328,9, 0x6e5380,1, 0x6e5388,6, 0x6e53a8,9, 0x6e5400,4, 0x6e5480,4, 0x6e5500,4, 0x6e5580,4, 0x6e5600,71, 0x6e5720,7, 0x6e5740,7, 0x6e5760,7, 0x6e5780,4, 0x6e579c,11, 0x6e57d0,2, 0x6e57e0,2, 0x6e57f0,2, 0x6e5800,7, 0x6e5820,7, 0x6e5840,7, 0x6e5860,7, 0x6e58c0,64, 0x6e5aa0,2, 0x6e5ac0,8, 0x6e6000,7, 0x6e6020,4, 0x6e6040,4, 0x6e6060,7, 0x6e6080,7, 0x6e60a0,4, 0x6e60c0,4, 0x6e60e0,7, 0x6e6100,7, 0x6e6120,4, 0x6e6140,4, 0x6e6160,7, 0x6e6180,7, 0x6e61a0,4, 0x6e61c0,4, 0x6e61e0,7, 0x6e6200,19, 0x6e6280,19, 0x6e6300,19, 0x6e6380,19, 0x6e6400,14, 0x6e643c,9, 0x6e6464,6, 0x6e6480,7, 0x6e64a0,2, 0x6e64ac,2, 0x6e6500,14, 0x6e653c,9, 0x6e6564,6, 0x6e6580,7, 0x6e65a0,2, 0x6e65ac,2, 0x6e6600,14, 0x6e663c,9, 0x6e6664,6, 0x6e6680,7, 0x6e66a0,2, 0x6e66ac,2, 0x6e6700,14, 0x6e673c,9, 0x6e6764,6, 0x6e6780,7, 0x6e67a0,2, 0x6e67ac,2, 0x6e6800,19, 0x6e6880,19, 0x6e6900,19, 0x6e6980,19, 0x6e6a10,2, 0x6e6a1c,1, 0x6e6a50,2, 0x6e6a5c,1, 0x6e6a90,2, 0x6e6a9c,1, 0x6e6ad0,2, 0x6e6adc,1, 0x6e6c00,7, 0x6e6c20,1, 0x6e6c54,18, 0x6e6ca0,1, 0x6e6cd4,18, 0x6e6d20,1, 0x6e6d54,18, 0x6e6da0,1, 0x6e6dd4,12, 0x6e6e08,6, 0x6e7100,7, 0x6e7120,7, 0x6e7140,7, 0x6e7160,7, 0x6e7180,3, 0x6e8000,19, 0x6e8c00,10, 0x6e8c80,3, 0x6e8cc0,1, 0x6e9000,13, 0x6e9080,21, 0x6ec000,16, 0x6ec080,11, 0x6ec100,11, 0x6ec204,1, 0x6ec224,21, 0x6ec280,16, 0x6ec300,11, 0x6ec340,11, 0x6ed000,8, 0x6ed024,10, 0x6ed050,22, 0x6ed100,8, 0x6ed124,10, 0x6ed150,22, 0x6ed200,8, 0x6ed224,10, 0x6ed250,22, 0x6ed300,8, 0x6ed324,10, 0x6ed350,22, 0x6ed400,8, 0x6ed424,10, 0x6ed450,22, 0x6ed500,8, 0x6ed524,10, 0x6ed550,22, 0x6ed600,8, 0x6ed624,10, 0x6ed650,22, 0x6ed700,8, 0x6ed724,10, 0x6ed750,22, 0x6ed800,8, 0x6ed824,10, 0x6ed850,22, 0x6ed904,1, 0x6ed914,10, 0x6ed948,11, 0x6ed980,1, 0x6ed9a0,6, 0x6ed9c0,2, 0x6ed9cc,2, 0x6ee000,35, 0x6eec00,10, 0x6eec80,3, 0x6ef000,1, 0x6ef008,3, 0x6ef038,1, 0x6ef044,1, 0x6ef050,2, 0x6ef060,8, 0x6ef100,13, 0x6ef140,19, 0x6ef190,4, 0x6f0000,13, 0x6f0040,2, 0x6f0054,4, 0x6f0080,27, 0x6f0100,12, 0x6f0140,14, 0x6f0180,28, 0x6f0200,6, 0x6f0240,6, 0x6f025c,3, 0x6f0280,5, 0x6f02a0,8, 0x6f0400,14, 0x6f0440,14, 0x6f0480,14, 0x6f04c0,14, 0x6f0540,3, 0x6f0600,7, 0x6f0620,14, 0x6f0680,5, 0x6f06a0,7, 0x6f0800,13, 0x6f0840,2, 0x6f0854,4, 0x6f0880,27, 0x6f0900,12, 0x6f0940,14, 0x6f0980,28, 0x6f0a00,6, 0x6f0a40,6, 0x6f0a5c,3, 0x6f0a80,5, 0x6f0aa0,8, 0x6f0c00,14, 0x6f0c40,14, 0x6f0c80,14, 0x6f0cc0,14, 0x6f0d40,3, 0x6f0e00,7, 0x6f0e20,14, 0x6f0e80,5, 0x6f0ea0,7, 0x6f1000,13, 0x6f1040,2, 0x6f1054,4, 0x6f1080,27, 0x6f1100,12, 0x6f1140,14, 0x6f1180,28, 0x6f1200,6, 0x6f1240,6, 0x6f125c,3, 0x6f1280,5, 0x6f12a0,8, 0x6f1400,14, 0x6f1440,14, 0x6f1480,14, 0x6f14c0,14, 0x6f1540,3, 0x6f1600,7, 0x6f1620,14, 0x6f1680,5, 0x6f16a0,7, 0x6f1800,13, 0x6f1840,2, 0x6f1854,4, 0x6f1880,27, 0x6f1900,12, 0x6f1940,14, 0x6f1980,28, 0x6f1a00,6, 0x6f1a40,6, 0x6f1a5c,3, 0x6f1a80,5, 0x6f1aa0,8, 0x6f1c00,14, 0x6f1c40,14, 0x6f1c80,14, 0x6f1cc0,14, 0x6f1d40,3, 0x6f1e00,7, 0x6f1e20,14, 0x6f1e80,5, 0x6f1ea0,7, 0x6f2000,8, 0x6f2040,8, 0x6f2080,1, 0x6f2098,6, 0x6f2100,10, 0x6f2140,3, 0x6f2150,2, 0x6f2180,2, 0x6f2200,6, 0x6f2220,18, 0x6f2280,4, 0x6f2300,8, 0x6f2400,2, 0x6f2480,2, 0x6f3000,40, 0x6f3100,64, 0x6f4000,13, 0x6f4040,2, 0x6f4054,4, 0x6f4080,27, 0x6f4100,12, 0x6f4140,14, 0x6f4180,28, 0x6f4200,6, 0x6f4240,6, 0x6f425c,3, 0x6f4280,5, 0x6f42a0,8, 0x6f4400,14, 0x6f4440,14, 0x6f4480,14, 0x6f44c0,14, 0x6f4540,3, 0x6f4600,7, 0x6f4620,14, 0x6f4680,5, 0x6f46a0,7, 0x6f4800,13, 0x6f4840,2, 0x6f4854,4, 0x6f4880,27, 0x6f4900,12, 0x6f4940,14, 0x6f4980,28, 0x6f4a00,6, 0x6f4a40,6, 0x6f4a5c,3, 0x6f4a80,5, 0x6f4aa0,8, 0x6f4c00,14, 0x6f4c40,14, 0x6f4c80,14, 0x6f4cc0,14, 0x6f4d40,3, 0x6f4e00,7, 0x6f4e20,14, 0x6f4e80,5, 0x6f4ea0,7, 0x6f5000,13, 0x6f5040,2, 0x6f5054,4, 0x6f5080,27, 0x6f5100,12, 0x6f5140,14, 0x6f5180,28, 0x6f5200,6, 0x6f5240,6, 0x6f525c,3, 0x6f5280,5, 0x6f52a0,8, 0x6f5400,14, 0x6f5440,14, 0x6f5480,14, 0x6f54c0,14, 0x6f5540,3, 0x6f5600,7, 0x6f5620,14, 0x6f5680,5, 0x6f56a0,7, 0x6f5800,13, 0x6f5840,2, 0x6f5854,4, 0x6f5880,27, 0x6f5900,12, 0x6f5940,14, 0x6f5980,28, 0x6f5a00,6, 0x6f5a40,6, 0x6f5a5c,3, 0x6f5a80,5, 0x6f5aa0,8, 0x6f5c00,14, 0x6f5c40,14, 0x6f5c80,14, 0x6f5cc0,14, 0x6f5d40,3, 0x6f5e00,7, 0x6f5e20,14, 0x6f5e80,5, 0x6f5ea0,7, 0x6f6000,8, 0x6f6040,8, 0x6f6080,1, 0x6f6098,6, 0x6f6100,10, 0x6f6140,3, 0x6f6150,2, 0x6f6180,2, 0x6f6200,6, 0x6f6220,18, 0x6f6280,4, 0x6f6300,8, 0x6f6400,2, 0x6f6480,2, 0x6f7000,40, 0x6f7100,64, 0x700000,5, 0x700018,5, 0x700030,3, 0x700044,3, 0x700100,58, 0x7001f0,3, 0x700280,3, 0x700400,5, 0x700418,5, 0x700430,3, 0x700444,3, 0x700500,58, 0x7005f0,3, 0x700680,3, 0x700800,5, 0x700818,5, 0x700830,3, 0x700844,3, 0x700900,58, 0x7009f0,3, 0x700a80,3, 0x700c00,5, 0x700c18,5, 0x700c30,3, 0x700c44,3, 0x700d00,58, 0x700df0,3, 0x700e80,3, 0x701018,1, 0x701100,2, 0x701110,10, 0x701140,2, 0x701150,10, 0x701180,2, 0x701190,10, 0x7011c0,2, 0x7011d0,10, 0x701208,1, 0x701220,16, 0x701280,1, 0x701288,2, 0x701400,8, 0x704000,2, 0x70400c,1, 0x704030,3, 0x704040,2, 0x70404c,1, 0x704070,3, 0x704080,2, 0x70408c,1, 0x7040b0,3, 0x7040c0,2, 0x7040cc,1, 0x7040f0,3, 0x704200,15, 0x704280,15, 0x704300,15, 0x704380,15, 0x704400,15, 0x704480,15, 0x704500,15, 0x704580,15, 0x704604,10, 0x704700,2, 0x70470c,7, 0x704740,1, 0x704770,1, 0x7047c0,2, 0x7047d0,4, 0x704800,3, 0x704810,1, 0x70481c,3, 0x704b04,1, 0x704b0c,5, 0x704b44,1, 0x704b50,5, 0x704b70,6, 0x704b90,2, 0x704c00,129, 0x705000,39, 0x705100,39, 0x705200,39, 0x705300,39, 0x705400,39, 0x705500,39, 0x705600,39, 0x705700,39, 0x705f00,19, 0x706000,131, 0x706400,4, 0x706440,15, 0x706480,4, 0x7064c0,15, 0x706500,4, 0x706540,15, 0x706580,4, 0x7065c0,15, 0x706600,4, 0x706640,10, 0x706680,4, 0x7066c0,10, 0x706700,4, 0x706740,10, 0x706780,4, 0x7067c0,10, 0x706800,4, 0x706840,14, 0x706880,17, 0x706900,2, 0x706a00,13, 0x706a80,1, 0x706a88,8, 0x706ac0,6, 0x706ae0,1, 0x706ae8,2, 0x706b04,13, 0x706fcc,32, 0x708000,5, 0x708018,5, 0x708030,3, 0x708044,3, 0x708100,58, 0x7081f0,3, 0x708280,3, 0x708400,5, 0x708418,5, 0x708430,3, 0x708444,3, 0x708500,58, 0x7085f0,3, 0x708680,3, 0x708800,5, 0x708818,5, 0x708830,3, 0x708844,3, 0x708900,58, 0x7089f0,3, 0x708a80,3, 0x708c00,5, 0x708c18,5, 0x708c30,3, 0x708c44,3, 0x708d00,58, 0x708df0,3, 0x708e80,3, 0x709018,1, 0x709100,2, 0x709110,10, 0x709140,2, 0x709150,10, 0x709180,2, 0x709190,10, 0x7091c0,2, 0x7091d0,10, 0x709208,1, 0x709220,16, 0x709280,1, 0x709288,2, 0x709400,8, 0x70c000,2, 0x70c00c,1, 0x70c030,3, 0x70c040,2, 0x70c04c,1, 0x70c070,3, 0x70c080,2, 0x70c08c,1, 0x70c0b0,3, 0x70c0c0,2, 0x70c0cc,1, 0x70c0f0,3, 0x70c200,15, 0x70c280,15, 0x70c300,15, 0x70c380,15, 0x70c400,15, 0x70c480,15, 0x70c500,15, 0x70c580,15, 0x70c604,10, 0x70c700,2, 0x70c70c,7, 0x70c740,1, 0x70c770,1, 0x70c7c0,2, 0x70c7d0,4, 0x70c800,3, 0x70c810,1, 0x70c81c,3, 0x70cb04,1, 0x70cb0c,5, 0x70cb44,1, 0x70cb50,5, 0x70cb70,6, 0x70cb90,2, 0x70cc00,129, 0x70d000,39, 0x70d100,39, 0x70d200,39, 0x70d300,39, 0x70d400,39, 0x70d500,39, 0x70d600,39, 0x70d700,39, 0x70df00,19, 0x70e000,131, 0x70e400,4, 0x70e440,15, 0x70e480,4, 0x70e4c0,15, 0x70e500,4, 0x70e540,15, 0x70e580,4, 0x70e5c0,15, 0x70e600,4, 0x70e640,10, 0x70e680,4, 0x70e6c0,10, 0x70e700,4, 0x70e740,10, 0x70e780,4, 0x70e7c0,10, 0x70e800,4, 0x70e840,14, 0x70e880,17, 0x70e900,2, 0x70ea00,13, 0x70ea80,1, 0x70ea88,8, 0x70eac0,6, 0x70eae0,1, 0x70eae8,2, 0x70eb04,13, 0x70efcc,32, 0x710000,35, 0x710c00,10, 0x710c80,3, 0x711000,2, 0x71100c,4, 0x711028,3, 0x711038,4, 0x711050,2, 0x711060,2, 0x711070,2, 0x711080,4, 0x711098,7, 0x711120,8, 0x711200,4, 0x711214,7, 0x711234,7, 0x711254,7, 0x711274,24, 0x711300,2, 0x71130c,3, 0x711400,32, 0x711484,2, 0x711490,3, 0x711500,25, 0x7115c0,8, 0x7115e8,5, 0x711600,5, 0x711618,18, 0x711690,4, 0x711740,2, 0x711760,6, 0x711780,6, 0x7117a0,6, 0x7117c0,6, 0x7117e0,1, 0x711800,19, 0x711880,2, 0x7118b0,2, 0x7118c0,2, 0x714000,35, 0x714c00,10, 0x714c80,3, 0x715000,2, 0x71500c,4, 0x715028,3, 0x715038,4, 0x715050,2, 0x715060,2, 0x715070,2, 0x715080,4, 0x715098,7, 0x715120,8, 0x715200,4, 0x715214,7, 0x715234,7, 0x715254,7, 0x715274,24, 0x715300,2, 0x71530c,3, 0x715400,32, 0x715484,2, 0x715490,3, 0x715500,25, 0x7155c0,8, 0x7155e8,5, 0x715600,5, 0x715618,18, 0x715690,4, 0x715740,2, 0x715760,6, 0x715780,6, 0x7157a0,6, 0x7157c0,6, 0x7157e0,1, 0x715800,19, 0x715880,2, 0x7158b0,2, 0x7158c0,2, 0x720000,11, 0x720040,16, 0x720084,5, 0x720200,7, 0x720220,6, 0x720240,7, 0x720260,6, 0x720280,6, 0x7202a0,2, 0x7202ac,2, 0x7202c0,7, 0x7202e0,7, 0x720300,2, 0x72030c,2, 0x720320,6, 0x720400,2, 0x721000,19, 0x721c00,10, 0x721c80,3, 0x722200,4, 0x722220,4, 0x722240,11, 0x722270,32, 0x722300,24, 0x722380,20, 0x722400,61, 0x722500,25, 0x722568,4, 0x722580,2, 0x7225a0,1, 0x7225c0,11, 0x722600,9, 0x722640,3, 0x722650,3, 0x722664,3, 0x722680,22, 0x722800,11, 0x723000,552, 0x724200,4, 0x724220,4, 0x724240,11, 0x724270,32, 0x724300,24, 0x724380,20, 0x724400,61, 0x724500,25, 0x724568,4, 0x724580,2, 0x7245a0,1, 0x7245c0,11, 0x724600,9, 0x724640,3, 0x724650,3, 0x724664,3, 0x724680,22, 0x724800,11, 0x725000,552, 0x726200,4, 0x726220,4, 0x726240,11, 0x726270,32, 0x726300,24, 0x726380,20, 0x726400,61, 0x726500,25, 0x726568,4, 0x726580,2, 0x7265a0,1, 0x7265c0,11, 0x726600,9, 0x726640,3, 0x726650,3, 0x726664,3, 0x726680,22, 0x726800,11, 0x727000,552, 0x728200,4, 0x728220,4, 0x728240,11, 0x728270,32, 0x728300,24, 0x728380,20, 0x728400,61, 0x728500,25, 0x728568,4, 0x728580,2, 0x7285a0,1, 0x7285c0,11, 0x728600,9, 0x728640,3, 0x728650,3, 0x728664,3, 0x728680,22, 0x728800,11, 0x729000,552, 0x72a000,7, 0x72a048,8, 0x72a080,8, 0x72a100,7, 0x72a148,8, 0x72a180,8, 0x72a200,7, 0x72a248,8, 0x72a280,8, 0x72a300,7, 0x72a348,8, 0x72a380,8, 0x730000,11, 0x730040,16, 0x730084,5, 0x730200,7, 0x730220,6, 0x730240,7, 0x730260,6, 0x730280,6, 0x7302a0,2, 0x7302ac,2, 0x7302c0,7, 0x7302e0,7, 0x730300,2, 0x73030c,2, 0x730320,6, 0x730400,2, 0x731000,19, 0x731c00,10, 0x731c80,3, 0x732200,4, 0x732220,4, 0x732240,11, 0x732270,32, 0x732300,24, 0x732380,20, 0x732400,61, 0x732500,25, 0x732568,4, 0x732580,2, 0x7325a0,1, 0x7325c0,11, 0x732600,9, 0x732640,3, 0x732650,3, 0x732664,3, 0x732680,22, 0x732800,11, 0x733000,552, 0x734200,4, 0x734220,4, 0x734240,11, 0x734270,32, 0x734300,24, 0x734380,20, 0x734400,61, 0x734500,25, 0x734568,4, 0x734580,2, 0x7345a0,1, 0x7345c0,11, 0x734600,9, 0x734640,3, 0x734650,3, 0x734664,3, 0x734680,22, 0x734800,11, 0x735000,552, 0x736200,4, 0x736220,4, 0x736240,11, 0x736270,32, 0x736300,24, 0x736380,20, 0x736400,61, 0x736500,25, 0x736568,4, 0x736580,2, 0x7365a0,1, 0x7365c0,11, 0x736600,9, 0x736640,3, 0x736650,3, 0x736664,3, 0x736680,22, 0x736800,11, 0x737000,552, 0x738200,4, 0x738220,4, 0x738240,11, 0x738270,32, 0x738300,24, 0x738380,20, 0x738400,61, 0x738500,25, 0x738568,4, 0x738580,2, 0x7385a0,1, 0x7385c0,11, 0x738600,9, 0x738640,3, 0x738650,3, 0x738664,3, 0x738680,22, 0x738800,11, 0x739000,552, 0x73a000,7, 0x73a048,8, 0x73a080,8, 0x73a100,7, 0x73a148,8, 0x73a180,8, 0x73a200,7, 0x73a248,8, 0x73a280,8, 0x73a300,7, 0x73a348,8, 0x73a380,8, 0x740000,4, 0x740014,1, 0x740020,3, 0x740030,3, 0x740040,13, 0x740078,4, 0x74009c,29, 0x740114,1, 0x740120,3, 0x740130,3, 0x740140,13, 0x740178,4, 0x74019c,29, 0x740214,1, 0x740220,3, 0x740230,3, 0x740240,13, 0x740278,4, 0x74029c,29, 0x740314,1, 0x740320,3, 0x740330,3, 0x740340,13, 0x740378,4, 0x74039c,29, 0x740420,2, 0x74042c,2, 0x740440,4, 0x740460,2, 0x74046c,2, 0x740480,4, 0x7404a0,2, 0x7404ac,2, 0x7404c0,4, 0x7404e0,2, 0x7404ec,2, 0x740500,2, 0x74050c,4, 0x740520,2, 0x74052c,4, 0x740540,2, 0x74054c,4, 0x740560,2, 0x74056c,4, 0x7405c0,1, 0x740600,16, 0x740800,18, 0x740880,13, 0x7408f0,3, 0x740900,18, 0x740980,13, 0x7409f0,3, 0x740a00,18, 0x740a80,13, 0x740af0,3, 0x740b00,18, 0x740b80,13, 0x740bf0,3, 0x740c00,6, 0x740c20,16, 0x740c80,6, 0x740ca0,16, 0x740d00,6, 0x740d20,16, 0x740d80,6, 0x740da0,16, 0x740e00,4, 0x740e20,4, 0x740e40,4, 0x740e60,4, 0x740e80,37, 0x740f20,5, 0x740f40,5, 0x740f60,5, 0x741000,12, 0x741200,1, 0x741208,6, 0x741228,9, 0x741280,1, 0x741288,6, 0x7412a8,9, 0x741300,1, 0x741308,6, 0x741328,9, 0x741380,1, 0x741388,6, 0x7413a8,9, 0x741400,4, 0x741480,4, 0x741500,4, 0x741580,4, 0x741600,71, 0x741720,7, 0x741740,7, 0x741760,7, 0x741780,4, 0x74179c,11, 0x7417d0,2, 0x7417e0,2, 0x7417f0,2, 0x741800,7, 0x741820,7, 0x741840,7, 0x741860,7, 0x7418c0,64, 0x741aa0,2, 0x741ac0,8, 0x742000,7, 0x742020,4, 0x742040,4, 0x742060,7, 0x742080,7, 0x7420a0,4, 0x7420c0,4, 0x7420e0,7, 0x742100,7, 0x742120,4, 0x742140,4, 0x742160,7, 0x742180,7, 0x7421a0,4, 0x7421c0,4, 0x7421e0,7, 0x742200,19, 0x742280,19, 0x742300,19, 0x742380,19, 0x742400,14, 0x74243c,9, 0x742464,6, 0x742480,7, 0x7424a0,2, 0x7424ac,2, 0x742500,14, 0x74253c,9, 0x742564,6, 0x742580,7, 0x7425a0,2, 0x7425ac,2, 0x742600,14, 0x74263c,9, 0x742664,6, 0x742680,7, 0x7426a0,2, 0x7426ac,2, 0x742700,14, 0x74273c,9, 0x742764,6, 0x742780,7, 0x7427a0,2, 0x7427ac,2, 0x742800,19, 0x742880,19, 0x742900,19, 0x742980,19, 0x742a10,2, 0x742a1c,1, 0x742a50,2, 0x742a5c,1, 0x742a90,2, 0x742a9c,1, 0x742ad0,2, 0x742adc,1, 0x742c00,7, 0x742c20,1, 0x742c54,18, 0x742ca0,1, 0x742cd4,18, 0x742d20,1, 0x742d54,18, 0x742da0,1, 0x742dd4,12, 0x742e08,6, 0x743100,7, 0x743120,7, 0x743140,7, 0x743160,7, 0x743180,3, 0x744000,4, 0x744014,1, 0x744020,3, 0x744030,3, 0x744040,13, 0x744078,4, 0x74409c,29, 0x744114,1, 0x744120,3, 0x744130,3, 0x744140,13, 0x744178,4, 0x74419c,29, 0x744214,1, 0x744220,3, 0x744230,3, 0x744240,13, 0x744278,4, 0x74429c,29, 0x744314,1, 0x744320,3, 0x744330,3, 0x744340,13, 0x744378,4, 0x74439c,29, 0x744420,2, 0x74442c,2, 0x744440,4, 0x744460,2, 0x74446c,2, 0x744480,4, 0x7444a0,2, 0x7444ac,2, 0x7444c0,4, 0x7444e0,2, 0x7444ec,2, 0x744500,2, 0x74450c,4, 0x744520,2, 0x74452c,4, 0x744540,2, 0x74454c,4, 0x744560,2, 0x74456c,4, 0x7445c0,1, 0x744600,16, 0x744800,18, 0x744880,13, 0x7448f0,3, 0x744900,18, 0x744980,13, 0x7449f0,3, 0x744a00,18, 0x744a80,13, 0x744af0,3, 0x744b00,18, 0x744b80,13, 0x744bf0,3, 0x744c00,6, 0x744c20,16, 0x744c80,6, 0x744ca0,16, 0x744d00,6, 0x744d20,16, 0x744d80,6, 0x744da0,16, 0x744e00,4, 0x744e20,4, 0x744e40,4, 0x744e60,4, 0x744e80,37, 0x744f20,5, 0x744f40,5, 0x744f60,5, 0x745000,12, 0x745200,1, 0x745208,6, 0x745228,9, 0x745280,1, 0x745288,6, 0x7452a8,9, 0x745300,1, 0x745308,6, 0x745328,9, 0x745380,1, 0x745388,6, 0x7453a8,9, 0x745400,4, 0x745480,4, 0x745500,4, 0x745580,4, 0x745600,71, 0x745720,7, 0x745740,7, 0x745760,7, 0x745780,4, 0x74579c,11, 0x7457d0,2, 0x7457e0,2, 0x7457f0,2, 0x745800,7, 0x745820,7, 0x745840,7, 0x745860,7, 0x7458c0,64, 0x745aa0,2, 0x745ac0,8, 0x746000,7, 0x746020,4, 0x746040,4, 0x746060,7, 0x746080,7, 0x7460a0,4, 0x7460c0,4, 0x7460e0,7, 0x746100,7, 0x746120,4, 0x746140,4, 0x746160,7, 0x746180,7, 0x7461a0,4, 0x7461c0,4, 0x7461e0,7, 0x746200,19, 0x746280,19, 0x746300,19, 0x746380,19, 0x746400,14, 0x74643c,9, 0x746464,6, 0x746480,7, 0x7464a0,2, 0x7464ac,2, 0x746500,14, 0x74653c,9, 0x746564,6, 0x746580,7, 0x7465a0,2, 0x7465ac,2, 0x746600,14, 0x74663c,9, 0x746664,6, 0x746680,7, 0x7466a0,2, 0x7466ac,2, 0x746700,14, 0x74673c,9, 0x746764,6, 0x746780,7, 0x7467a0,2, 0x7467ac,2, 0x746800,19, 0x746880,19, 0x746900,19, 0x746980,19, 0x746a10,2, 0x746a1c,1, 0x746a50,2, 0x746a5c,1, 0x746a90,2, 0x746a9c,1, 0x746ad0,2, 0x746adc,1, 0x746c00,7, 0x746c20,1, 0x746c54,18, 0x746ca0,1, 0x746cd4,18, 0x746d20,1, 0x746d54,18, 0x746da0,1, 0x746dd4,12, 0x746e08,6, 0x747100,7, 0x747120,7, 0x747140,7, 0x747160,7, 0x747180,3, 0x748000,19, 0x748c00,10, 0x748c80,3, 0x748cc0,1, 0x749000,13, 0x749080,21, 0x74c000,16, 0x74c080,11, 0x74c100,11, 0x74c204,1, 0x74c224,21, 0x74c280,16, 0x74c300,11, 0x74c340,11, 0x74d000,8, 0x74d024,10, 0x74d050,22, 0x74d100,8, 0x74d124,10, 0x74d150,22, 0x74d200,8, 0x74d224,10, 0x74d250,22, 0x74d300,8, 0x74d324,10, 0x74d350,22, 0x74d400,8, 0x74d424,10, 0x74d450,22, 0x74d500,8, 0x74d524,10, 0x74d550,22, 0x74d600,8, 0x74d624,10, 0x74d650,22, 0x74d700,8, 0x74d724,10, 0x74d750,22, 0x74d800,8, 0x74d824,10, 0x74d850,22, 0x74d904,1, 0x74d914,10, 0x74d948,11, 0x74d980,1, 0x74d9a0,6, 0x74d9c0,2, 0x74d9cc,2, 0x74e000,35, 0x74ec00,10, 0x74ec80,3, 0x74f000,1, 0x74f008,3, 0x74f038,1, 0x74f044,1, 0x74f050,2, 0x74f060,8, 0x74f100,13, 0x74f140,19, 0x74f190,4, 0x750000,13, 0x750040,2, 0x750054,4, 0x750080,27, 0x750100,12, 0x750140,14, 0x750180,28, 0x750200,6, 0x750240,6, 0x75025c,3, 0x750280,5, 0x7502a0,8, 0x750400,14, 0x750440,14, 0x750480,14, 0x7504c0,14, 0x750540,3, 0x750600,7, 0x750620,14, 0x750680,5, 0x7506a0,7, 0x750800,13, 0x750840,2, 0x750854,4, 0x750880,27, 0x750900,12, 0x750940,14, 0x750980,28, 0x750a00,6, 0x750a40,6, 0x750a5c,3, 0x750a80,5, 0x750aa0,8, 0x750c00,14, 0x750c40,14, 0x750c80,14, 0x750cc0,14, 0x750d40,3, 0x750e00,7, 0x750e20,14, 0x750e80,5, 0x750ea0,7, 0x751000,13, 0x751040,2, 0x751054,4, 0x751080,27, 0x751100,12, 0x751140,14, 0x751180,28, 0x751200,6, 0x751240,6, 0x75125c,3, 0x751280,5, 0x7512a0,8, 0x751400,14, 0x751440,14, 0x751480,14, 0x7514c0,14, 0x751540,3, 0x751600,7, 0x751620,14, 0x751680,5, 0x7516a0,7, 0x751800,13, 0x751840,2, 0x751854,4, 0x751880,27, 0x751900,12, 0x751940,14, 0x751980,28, 0x751a00,6, 0x751a40,6, 0x751a5c,3, 0x751a80,5, 0x751aa0,8, 0x751c00,14, 0x751c40,14, 0x751c80,14, 0x751cc0,14, 0x751d40,3, 0x751e00,7, 0x751e20,14, 0x751e80,5, 0x751ea0,7, 0x752000,8, 0x752040,8, 0x752080,1, 0x752098,6, 0x752100,10, 0x752140,3, 0x752150,2, 0x752180,2, 0x752200,6, 0x752220,18, 0x752280,4, 0x752300,8, 0x752400,2, 0x752480,2, 0x753000,40, 0x753100,64, 0x754000,13, 0x754040,2, 0x754054,4, 0x754080,27, 0x754100,12, 0x754140,14, 0x754180,28, 0x754200,6, 0x754240,6, 0x75425c,3, 0x754280,5, 0x7542a0,8, 0x754400,14, 0x754440,14, 0x754480,14, 0x7544c0,14, 0x754540,3, 0x754600,7, 0x754620,14, 0x754680,5, 0x7546a0,7, 0x754800,13, 0x754840,2, 0x754854,4, 0x754880,27, 0x754900,12, 0x754940,14, 0x754980,28, 0x754a00,6, 0x754a40,6, 0x754a5c,3, 0x754a80,5, 0x754aa0,8, 0x754c00,14, 0x754c40,14, 0x754c80,14, 0x754cc0,14, 0x754d40,3, 0x754e00,7, 0x754e20,14, 0x754e80,5, 0x754ea0,7, 0x755000,13, 0x755040,2, 0x755054,4, 0x755080,27, 0x755100,12, 0x755140,14, 0x755180,28, 0x755200,6, 0x755240,6, 0x75525c,3, 0x755280,5, 0x7552a0,8, 0x755400,14, 0x755440,14, 0x755480,14, 0x7554c0,14, 0x755540,3, 0x755600,7, 0x755620,14, 0x755680,5, 0x7556a0,7, 0x755800,13, 0x755840,2, 0x755854,4, 0x755880,27, 0x755900,12, 0x755940,14, 0x755980,28, 0x755a00,6, 0x755a40,6, 0x755a5c,3, 0x755a80,5, 0x755aa0,8, 0x755c00,14, 0x755c40,14, 0x755c80,14, 0x755cc0,14, 0x755d40,3, 0x755e00,7, 0x755e20,14, 0x755e80,5, 0x755ea0,7, 0x756000,8, 0x756040,8, 0x756080,1, 0x756098,6, 0x756100,10, 0x756140,3, 0x756150,2, 0x756180,2, 0x756200,6, 0x756220,18, 0x756280,4, 0x756300,8, 0x756400,2, 0x756480,2, 0x757000,40, 0x757100,64, 0x760000,5, 0x760018,5, 0x760030,3, 0x760044,3, 0x760100,58, 0x7601f0,3, 0x760280,3, 0x760400,5, 0x760418,5, 0x760430,3, 0x760444,3, 0x760500,58, 0x7605f0,3, 0x760680,3, 0x760800,5, 0x760818,5, 0x760830,3, 0x760844,3, 0x760900,58, 0x7609f0,3, 0x760a80,3, 0x760c00,5, 0x760c18,5, 0x760c30,3, 0x760c44,3, 0x760d00,58, 0x760df0,3, 0x760e80,3, 0x761018,1, 0x761100,2, 0x761110,10, 0x761140,2, 0x761150,10, 0x761180,2, 0x761190,10, 0x7611c0,2, 0x7611d0,10, 0x761208,1, 0x761220,16, 0x761280,1, 0x761288,2, 0x761400,8, 0x764000,2, 0x76400c,1, 0x764030,3, 0x764040,2, 0x76404c,1, 0x764070,3, 0x764080,2, 0x76408c,1, 0x7640b0,3, 0x7640c0,2, 0x7640cc,1, 0x7640f0,3, 0x764200,15, 0x764280,15, 0x764300,15, 0x764380,15, 0x764400,15, 0x764480,15, 0x764500,15, 0x764580,15, 0x764604,10, 0x764700,2, 0x76470c,7, 0x764740,1, 0x764770,1, 0x7647c0,2, 0x7647d0,4, 0x764800,3, 0x764810,1, 0x76481c,3, 0x764b04,1, 0x764b0c,5, 0x764b44,1, 0x764b50,5, 0x764b70,6, 0x764b90,2, 0x764c00,129, 0x765000,39, 0x765100,39, 0x765200,39, 0x765300,39, 0x765400,39, 0x765500,39, 0x765600,39, 0x765700,39, 0x765f00,19, 0x766000,131, 0x766400,4, 0x766440,15, 0x766480,4, 0x7664c0,15, 0x766500,4, 0x766540,15, 0x766580,4, 0x7665c0,15, 0x766600,4, 0x766640,10, 0x766680,4, 0x7666c0,10, 0x766700,4, 0x766740,10, 0x766780,4, 0x7667c0,10, 0x766800,4, 0x766840,14, 0x766880,17, 0x766900,2, 0x766a00,13, 0x766a80,1, 0x766a88,8, 0x766ac0,6, 0x766ae0,1, 0x766ae8,2, 0x766b04,13, 0x766fcc,32, 0x768000,5, 0x768018,5, 0x768030,3, 0x768044,3, 0x768100,58, 0x7681f0,3, 0x768280,3, 0x768400,5, 0x768418,5, 0x768430,3, 0x768444,3, 0x768500,58, 0x7685f0,3, 0x768680,3, 0x768800,5, 0x768818,5, 0x768830,3, 0x768844,3, 0x768900,58, 0x7689f0,3, 0x768a80,3, 0x768c00,5, 0x768c18,5, 0x768c30,3, 0x768c44,3, 0x768d00,58, 0x768df0,3, 0x768e80,3, 0x769018,1, 0x769100,2, 0x769110,10, 0x769140,2, 0x769150,10, 0x769180,2, 0x769190,10, 0x7691c0,2, 0x7691d0,10, 0x769208,1, 0x769220,16, 0x769280,1, 0x769288,2, 0x769400,8, 0x76c000,2, 0x76c00c,1, 0x76c030,3, 0x76c040,2, 0x76c04c,1, 0x76c070,3, 0x76c080,2, 0x76c08c,1, 0x76c0b0,3, 0x76c0c0,2, 0x76c0cc,1, 0x76c0f0,3, 0x76c200,15, 0x76c280,15, 0x76c300,15, 0x76c380,15, 0x76c400,15, 0x76c480,15, 0x76c500,15, 0x76c580,15, 0x76c604,10, 0x76c700,2, 0x76c70c,7, 0x76c740,1, 0x76c770,1, 0x76c7c0,2, 0x76c7d0,4, 0x76c800,3, 0x76c810,1, 0x76c81c,3, 0x76cb04,1, 0x76cb0c,5, 0x76cb44,1, 0x76cb50,5, 0x76cb70,6, 0x76cb90,2, 0x76cc00,129, 0x76d000,39, 0x76d100,39, 0x76d200,39, 0x76d300,39, 0x76d400,39, 0x76d500,39, 0x76d600,39, 0x76d700,39, 0x76df00,19, 0x76e000,131, 0x76e400,4, 0x76e440,15, 0x76e480,4, 0x76e4c0,15, 0x76e500,4, 0x76e540,15, 0x76e580,4, 0x76e5c0,15, 0x76e600,4, 0x76e640,10, 0x76e680,4, 0x76e6c0,10, 0x76e700,4, 0x76e740,10, 0x76e780,4, 0x76e7c0,10, 0x76e800,4, 0x76e840,14, 0x76e880,17, 0x76e900,2, 0x76ea00,13, 0x76ea80,1, 0x76ea88,8, 0x76eac0,6, 0x76eae0,1, 0x76eae8,2, 0x76eb04,13, 0x76efcc,32, 0x770000,35, 0x770c00,10, 0x770c80,3, 0x771000,2, 0x77100c,4, 0x771028,3, 0x771038,4, 0x771050,2, 0x771060,2, 0x771070,2, 0x771080,4, 0x771098,7, 0x771120,8, 0x771200,4, 0x771214,7, 0x771234,7, 0x771254,7, 0x771274,24, 0x771300,2, 0x77130c,3, 0x771400,32, 0x771484,2, 0x771490,3, 0x771500,25, 0x7715c0,8, 0x7715e8,5, 0x771600,5, 0x771618,18, 0x771690,4, 0x771740,2, 0x771760,6, 0x771780,6, 0x7717a0,6, 0x7717c0,6, 0x7717e0,1, 0x771800,19, 0x771880,2, 0x7718b0,2, 0x7718c0,2, 0x774000,35, 0x774c00,10, 0x774c80,3, 0x775000,2, 0x77500c,4, 0x775028,3, 0x775038,4, 0x775050,2, 0x775060,2, 0x775070,2, 0x775080,4, 0x775098,7, 0x775120,8, 0x775200,4, 0x775214,7, 0x775234,7, 0x775254,7, 0x775274,24, 0x775300,2, 0x77530c,3, 0x775400,32, 0x775484,2, 0x775490,3, 0x775500,25, 0x7755c0,8, 0x7755e8,5, 0x775600,5, 0x775618,18, 0x775690,4, 0x775740,2, 0x775760,6, 0x775780,6, 0x7757a0,6, 0x7757c0,6, 0x7757e0,1, 0x775800,19, 0x775880,2, 0x7758b0,2, 0x7758c0,2, 0x780000,11, 0x780040,16, 0x780084,5, 0x780200,7, 0x780220,6, 0x780240,7, 0x780260,6, 0x780280,6, 0x7802a0,2, 0x7802ac,2, 0x7802c0,7, 0x7802e0,7, 0x780300,2, 0x78030c,2, 0x780320,6, 0x780400,2, 0x781000,19, 0x781c00,10, 0x781c80,3, 0x782200,4, 0x782220,4, 0x782240,11, 0x782270,32, 0x782300,24, 0x782380,20, 0x782400,61, 0x782500,25, 0x782568,4, 0x782580,2, 0x7825a0,1, 0x7825c0,11, 0x782600,9, 0x782640,3, 0x782650,3, 0x782664,3, 0x782680,22, 0x782800,11, 0x783000,552, 0x784200,4, 0x784220,4, 0x784240,11, 0x784270,32, 0x784300,24, 0x784380,20, 0x784400,61, 0x784500,25, 0x784568,4, 0x784580,2, 0x7845a0,1, 0x7845c0,11, 0x784600,9, 0x784640,3, 0x784650,3, 0x784664,3, 0x784680,22, 0x784800,11, 0x785000,552, 0x786200,4, 0x786220,4, 0x786240,11, 0x786270,32, 0x786300,24, 0x786380,20, 0x786400,61, 0x786500,25, 0x786568,4, 0x786580,2, 0x7865a0,1, 0x7865c0,11, 0x786600,9, 0x786640,3, 0x786650,3, 0x786664,3, 0x786680,22, 0x786800,11, 0x787000,552, 0x788200,4, 0x788220,4, 0x788240,11, 0x788270,32, 0x788300,24, 0x788380,20, 0x788400,61, 0x788500,25, 0x788568,4, 0x788580,2, 0x7885a0,1, 0x7885c0,11, 0x788600,9, 0x788640,3, 0x788650,3, 0x788664,3, 0x788680,22, 0x788800,11, 0x789000,552, 0x78a000,7, 0x78a048,8, 0x78a080,8, 0x78a100,7, 0x78a148,8, 0x78a180,8, 0x78a200,7, 0x78a248,8, 0x78a280,8, 0x78a300,7, 0x78a348,8, 0x78a380,8, 0x790000,11, 0x790040,16, 0x790084,5, 0x790200,7, 0x790220,6, 0x790240,7, 0x790260,6, 0x790280,6, 0x7902a0,2, 0x7902ac,2, 0x7902c0,7, 0x7902e0,7, 0x790300,2, 0x79030c,2, 0x790320,6, 0x790400,2, 0x791000,19, 0x791c00,10, 0x791c80,3, 0x792200,4, 0x792220,4, 0x792240,11, 0x792270,32, 0x792300,24, 0x792380,20, 0x792400,61, 0x792500,25, 0x792568,4, 0x792580,2, 0x7925a0,1, 0x7925c0,11, 0x792600,9, 0x792640,3, 0x792650,3, 0x792664,3, 0x792680,22, 0x792800,11, 0x793000,552, 0x794200,4, 0x794220,4, 0x794240,11, 0x794270,32, 0x794300,24, 0x794380,20, 0x794400,61, 0x794500,25, 0x794568,4, 0x794580,2, 0x7945a0,1, 0x7945c0,11, 0x794600,9, 0x794640,3, 0x794650,3, 0x794664,3, 0x794680,22, 0x794800,11, 0x795000,552, 0x796200,4, 0x796220,4, 0x796240,11, 0x796270,32, 0x796300,24, 0x796380,20, 0x796400,61, 0x796500,25, 0x796568,4, 0x796580,2, 0x7965a0,1, 0x7965c0,11, 0x796600,9, 0x796640,3, 0x796650,3, 0x796664,3, 0x796680,22, 0x796800,11, 0x797000,552, 0x798200,4, 0x798220,4, 0x798240,11, 0x798270,32, 0x798300,24, 0x798380,20, 0x798400,61, 0x798500,25, 0x798568,4, 0x798580,2, 0x7985a0,1, 0x7985c0,11, 0x798600,9, 0x798640,3, 0x798650,3, 0x798664,3, 0x798680,22, 0x798800,11, 0x799000,552, 0x79a000,7, 0x79a048,8, 0x79a080,8, 0x79a100,7, 0x79a148,8, 0x79a180,8, 0x79a200,7, 0x79a248,8, 0x79a280,8, 0x79a300,7, 0x79a348,8, 0x79a380,8, 0x7a0000,4, 0x7a0014,1, 0x7a0020,3, 0x7a0030,3, 0x7a0040,13, 0x7a0078,4, 0x7a009c,29, 0x7a0114,1, 0x7a0120,3, 0x7a0130,3, 0x7a0140,13, 0x7a0178,4, 0x7a019c,29, 0x7a0214,1, 0x7a0220,3, 0x7a0230,3, 0x7a0240,13, 0x7a0278,4, 0x7a029c,29, 0x7a0314,1, 0x7a0320,3, 0x7a0330,3, 0x7a0340,13, 0x7a0378,4, 0x7a039c,29, 0x7a0420,2, 0x7a042c,2, 0x7a0440,4, 0x7a0460,2, 0x7a046c,2, 0x7a0480,4, 0x7a04a0,2, 0x7a04ac,2, 0x7a04c0,4, 0x7a04e0,2, 0x7a04ec,2, 0x7a0500,2, 0x7a050c,4, 0x7a0520,2, 0x7a052c,4, 0x7a0540,2, 0x7a054c,4, 0x7a0560,2, 0x7a056c,4, 0x7a05c0,1, 0x7a0600,16, 0x7a0800,18, 0x7a0880,13, 0x7a08f0,3, 0x7a0900,18, 0x7a0980,13, 0x7a09f0,3, 0x7a0a00,18, 0x7a0a80,13, 0x7a0af0,3, 0x7a0b00,18, 0x7a0b80,13, 0x7a0bf0,3, 0x7a0c00,6, 0x7a0c20,16, 0x7a0c80,6, 0x7a0ca0,16, 0x7a0d00,6, 0x7a0d20,16, 0x7a0d80,6, 0x7a0da0,16, 0x7a0e00,4, 0x7a0e20,4, 0x7a0e40,4, 0x7a0e60,4, 0x7a0e80,37, 0x7a0f20,5, 0x7a0f40,5, 0x7a0f60,5, 0x7a1000,12, 0x7a1200,1, 0x7a1208,6, 0x7a1228,9, 0x7a1280,1, 0x7a1288,6, 0x7a12a8,9, 0x7a1300,1, 0x7a1308,6, 0x7a1328,9, 0x7a1380,1, 0x7a1388,6, 0x7a13a8,9, 0x7a1400,4, 0x7a1480,4, 0x7a1500,4, 0x7a1580,4, 0x7a1600,71, 0x7a1720,7, 0x7a1740,7, 0x7a1760,7, 0x7a1780,4, 0x7a179c,11, 0x7a17d0,2, 0x7a17e0,2, 0x7a17f0,2, 0x7a1800,7, 0x7a1820,7, 0x7a1840,7, 0x7a1860,7, 0x7a18c0,64, 0x7a1aa0,2, 0x7a1ac0,8, 0x7a2000,7, 0x7a2020,4, 0x7a2040,4, 0x7a2060,7, 0x7a2080,7, 0x7a20a0,4, 0x7a20c0,4, 0x7a20e0,7, 0x7a2100,7, 0x7a2120,4, 0x7a2140,4, 0x7a2160,7, 0x7a2180,7, 0x7a21a0,4, 0x7a21c0,4, 0x7a21e0,7, 0x7a2200,19, 0x7a2280,19, 0x7a2300,19, 0x7a2380,19, 0x7a2400,14, 0x7a243c,9, 0x7a2464,6, 0x7a2480,7, 0x7a24a0,2, 0x7a24ac,2, 0x7a2500,14, 0x7a253c,9, 0x7a2564,6, 0x7a2580,7, 0x7a25a0,2, 0x7a25ac,2, 0x7a2600,14, 0x7a263c,9, 0x7a2664,6, 0x7a2680,7, 0x7a26a0,2, 0x7a26ac,2, 0x7a2700,14, 0x7a273c,9, 0x7a2764,6, 0x7a2780,7, 0x7a27a0,2, 0x7a27ac,2, 0x7a2800,19, 0x7a2880,19, 0x7a2900,19, 0x7a2980,19, 0x7a2a10,2, 0x7a2a1c,1, 0x7a2a50,2, 0x7a2a5c,1, 0x7a2a90,2, 0x7a2a9c,1, 0x7a2ad0,2, 0x7a2adc,1, 0x7a2c00,7, 0x7a2c20,1, 0x7a2c54,18, 0x7a2ca0,1, 0x7a2cd4,18, 0x7a2d20,1, 0x7a2d54,18, 0x7a2da0,1, 0x7a2dd4,12, 0x7a2e08,6, 0x7a3100,7, 0x7a3120,7, 0x7a3140,7, 0x7a3160,7, 0x7a3180,3, 0x7a4000,4, 0x7a4014,1, 0x7a4020,3, 0x7a4030,3, 0x7a4040,13, 0x7a4078,4, 0x7a409c,29, 0x7a4114,1, 0x7a4120,3, 0x7a4130,3, 0x7a4140,13, 0x7a4178,4, 0x7a419c,29, 0x7a4214,1, 0x7a4220,3, 0x7a4230,3, 0x7a4240,13, 0x7a4278,4, 0x7a429c,29, 0x7a4314,1, 0x7a4320,3, 0x7a4330,3, 0x7a4340,13, 0x7a4378,4, 0x7a439c,29, 0x7a4420,2, 0x7a442c,2, 0x7a4440,4, 0x7a4460,2, 0x7a446c,2, 0x7a4480,4, 0x7a44a0,2, 0x7a44ac,2, 0x7a44c0,4, 0x7a44e0,2, 0x7a44ec,2, 0x7a4500,2, 0x7a450c,4, 0x7a4520,2, 0x7a452c,4, 0x7a4540,2, 0x7a454c,4, 0x7a4560,2, 0x7a456c,4, 0x7a45c0,1, 0x7a4600,16, 0x7a4800,18, 0x7a4880,13, 0x7a48f0,3, 0x7a4900,18, 0x7a4980,13, 0x7a49f0,3, 0x7a4a00,18, 0x7a4a80,13, 0x7a4af0,3, 0x7a4b00,18, 0x7a4b80,13, 0x7a4bf0,3, 0x7a4c00,6, 0x7a4c20,16, 0x7a4c80,6, 0x7a4ca0,16, 0x7a4d00,6, 0x7a4d20,16, 0x7a4d80,6, 0x7a4da0,16, 0x7a4e00,4, 0x7a4e20,4, 0x7a4e40,4, 0x7a4e60,4, 0x7a4e80,37, 0x7a4f20,5, 0x7a4f40,5, 0x7a4f60,5, 0x7a5000,12, 0x7a5200,1, 0x7a5208,6, 0x7a5228,9, 0x7a5280,1, 0x7a5288,6, 0x7a52a8,9, 0x7a5300,1, 0x7a5308,6, 0x7a5328,9, 0x7a5380,1, 0x7a5388,6, 0x7a53a8,9, 0x7a5400,4, 0x7a5480,4, 0x7a5500,4, 0x7a5580,4, 0x7a5600,71, 0x7a5720,7, 0x7a5740,7, 0x7a5760,7, 0x7a5780,4, 0x7a579c,11, 0x7a57d0,2, 0x7a57e0,2, 0x7a57f0,2, 0x7a5800,7, 0x7a5820,7, 0x7a5840,7, 0x7a5860,7, 0x7a58c0,64, 0x7a5aa0,2, 0x7a5ac0,8, 0x7a6000,7, 0x7a6020,4, 0x7a6040,4, 0x7a6060,7, 0x7a6080,7, 0x7a60a0,4, 0x7a60c0,4, 0x7a60e0,7, 0x7a6100,7, 0x7a6120,4, 0x7a6140,4, 0x7a6160,7, 0x7a6180,7, 0x7a61a0,4, 0x7a61c0,4, 0x7a61e0,7, 0x7a6200,19, 0x7a6280,19, 0x7a6300,19, 0x7a6380,19, 0x7a6400,14, 0x7a643c,9, 0x7a6464,6, 0x7a6480,7, 0x7a64a0,2, 0x7a64ac,2, 0x7a6500,14, 0x7a653c,9, 0x7a6564,6, 0x7a6580,7, 0x7a65a0,2, 0x7a65ac,2, 0x7a6600,14, 0x7a663c,9, 0x7a6664,6, 0x7a6680,7, 0x7a66a0,2, 0x7a66ac,2, 0x7a6700,14, 0x7a673c,9, 0x7a6764,6, 0x7a6780,7, 0x7a67a0,2, 0x7a67ac,2, 0x7a6800,19, 0x7a6880,19, 0x7a6900,19, 0x7a6980,19, 0x7a6a10,2, 0x7a6a1c,1, 0x7a6a50,2, 0x7a6a5c,1, 0x7a6a90,2, 0x7a6a9c,1, 0x7a6ad0,2, 0x7a6adc,1, 0x7a6c00,7, 0x7a6c20,1, 0x7a6c54,18, 0x7a6ca0,1, 0x7a6cd4,18, 0x7a6d20,1, 0x7a6d54,18, 0x7a6da0,1, 0x7a6dd4,12, 0x7a6e08,6, 0x7a7100,7, 0x7a7120,7, 0x7a7140,7, 0x7a7160,7, 0x7a7180,3, 0x7a8000,19, 0x7a8c00,10, 0x7a8c80,3, 0x7a8cc0,1, 0x7a9000,13, 0x7a9080,21, 0x7ac000,16, 0x7ac080,11, 0x7ac100,11, 0x7ac204,1, 0x7ac224,21, 0x7ac280,16, 0x7ac300,11, 0x7ac340,11, 0x7ad000,8, 0x7ad024,10, 0x7ad050,22, 0x7ad100,8, 0x7ad124,10, 0x7ad150,22, 0x7ad200,8, 0x7ad224,10, 0x7ad250,22, 0x7ad300,8, 0x7ad324,10, 0x7ad350,22, 0x7ad400,8, 0x7ad424,10, 0x7ad450,22, 0x7ad500,8, 0x7ad524,10, 0x7ad550,22, 0x7ad600,8, 0x7ad624,10, 0x7ad650,22, 0x7ad700,8, 0x7ad724,10, 0x7ad750,22, 0x7ad800,8, 0x7ad824,10, 0x7ad850,22, 0x7ad904,1, 0x7ad914,10, 0x7ad948,11, 0x7ad980,1, 0x7ad9a0,6, 0x7ad9c0,2, 0x7ad9cc,2, 0x7ae000,35, 0x7aec00,10, 0x7aec80,3, 0x7af000,1, 0x7af008,3, 0x7af038,1, 0x7af044,1, 0x7af050,2, 0x7af060,8, 0x7af100,13, 0x7af140,19, 0x7af190,4, 0x7b0000,13, 0x7b0040,2, 0x7b0054,4, 0x7b0080,27, 0x7b0100,12, 0x7b0140,14, 0x7b0180,28, 0x7b0200,6, 0x7b0240,6, 0x7b025c,3, 0x7b0280,5, 0x7b02a0,8, 0x7b0400,14, 0x7b0440,14, 0x7b0480,14, 0x7b04c0,14, 0x7b0540,3, 0x7b0600,7, 0x7b0620,14, 0x7b0680,5, 0x7b06a0,7, 0x7b0800,13, 0x7b0840,2, 0x7b0854,4, 0x7b0880,27, 0x7b0900,12, 0x7b0940,14, 0x7b0980,28, 0x7b0a00,6, 0x7b0a40,6, 0x7b0a5c,3, 0x7b0a80,5, 0x7b0aa0,8, 0x7b0c00,14, 0x7b0c40,14, 0x7b0c80,14, 0x7b0cc0,14, 0x7b0d40,3, 0x7b0e00,7, 0x7b0e20,14, 0x7b0e80,5, 0x7b0ea0,7, 0x7b1000,13, 0x7b1040,2, 0x7b1054,4, 0x7b1080,27, 0x7b1100,12, 0x7b1140,14, 0x7b1180,28, 0x7b1200,6, 0x7b1240,6, 0x7b125c,3, 0x7b1280,5, 0x7b12a0,8, 0x7b1400,14, 0x7b1440,14, 0x7b1480,14, 0x7b14c0,14, 0x7b1540,3, 0x7b1600,7, 0x7b1620,14, 0x7b1680,5, 0x7b16a0,7, 0x7b1800,13, 0x7b1840,2, 0x7b1854,4, 0x7b1880,27, 0x7b1900,12, 0x7b1940,14, 0x7b1980,28, 0x7b1a00,6, 0x7b1a40,6, 0x7b1a5c,3, 0x7b1a80,5, 0x7b1aa0,8, 0x7b1c00,14, 0x7b1c40,14, 0x7b1c80,14, 0x7b1cc0,14, 0x7b1d40,3, 0x7b1e00,7, 0x7b1e20,14, 0x7b1e80,5, 0x7b1ea0,7, 0x7b2000,8, 0x7b2040,8, 0x7b2080,1, 0x7b2098,6, 0x7b2100,10, 0x7b2140,3, 0x7b2150,2, 0x7b2180,2, 0x7b2200,6, 0x7b2220,18, 0x7b2280,4, 0x7b2300,8, 0x7b2400,2, 0x7b2480,2, 0x7b3000,40, 0x7b3100,64, 0x7b4000,13, 0x7b4040,2, 0x7b4054,4, 0x7b4080,27, 0x7b4100,12, 0x7b4140,14, 0x7b4180,28, 0x7b4200,6, 0x7b4240,6, 0x7b425c,3, 0x7b4280,5, 0x7b42a0,8, 0x7b4400,14, 0x7b4440,14, 0x7b4480,14, 0x7b44c0,14, 0x7b4540,3, 0x7b4600,7, 0x7b4620,14, 0x7b4680,5, 0x7b46a0,7, 0x7b4800,13, 0x7b4840,2, 0x7b4854,4, 0x7b4880,27, 0x7b4900,12, 0x7b4940,14, 0x7b4980,28, 0x7b4a00,6, 0x7b4a40,6, 0x7b4a5c,3, 0x7b4a80,5, 0x7b4aa0,8, 0x7b4c00,14, 0x7b4c40,14, 0x7b4c80,14, 0x7b4cc0,14, 0x7b4d40,3, 0x7b4e00,7, 0x7b4e20,14, 0x7b4e80,5, 0x7b4ea0,7, 0x7b5000,13, 0x7b5040,2, 0x7b5054,4, 0x7b5080,27, 0x7b5100,12, 0x7b5140,14, 0x7b5180,28, 0x7b5200,6, 0x7b5240,6, 0x7b525c,3, 0x7b5280,5, 0x7b52a0,8, 0x7b5400,14, 0x7b5440,14, 0x7b5480,14, 0x7b54c0,14, 0x7b5540,3, 0x7b5600,7, 0x7b5620,14, 0x7b5680,5, 0x7b56a0,7, 0x7b5800,13, 0x7b5840,2, 0x7b5854,4, 0x7b5880,27, 0x7b5900,12, 0x7b5940,14, 0x7b5980,28, 0x7b5a00,6, 0x7b5a40,6, 0x7b5a5c,3, 0x7b5a80,5, 0x7b5aa0,8, 0x7b5c00,14, 0x7b5c40,14, 0x7b5c80,14, 0x7b5cc0,14, 0x7b5d40,3, 0x7b5e00,7, 0x7b5e20,14, 0x7b5e80,5, 0x7b5ea0,7, 0x7b6000,8, 0x7b6040,8, 0x7b6080,1, 0x7b6098,6, 0x7b6100,10, 0x7b6140,3, 0x7b6150,2, 0x7b6180,2, 0x7b6200,6, 0x7b6220,18, 0x7b6280,4, 0x7b6300,8, 0x7b6400,2, 0x7b6480,2, 0x7b7000,40, 0x7b7100,64, 0x7c0000,5, 0x7c0018,5, 0x7c0030,3, 0x7c0044,3, 0x7c0100,58, 0x7c01f0,3, 0x7c0280,3, 0x7c0400,5, 0x7c0418,5, 0x7c0430,3, 0x7c0444,3, 0x7c0500,58, 0x7c05f0,3, 0x7c0680,3, 0x7c0800,5, 0x7c0818,5, 0x7c0830,3, 0x7c0844,3, 0x7c0900,58, 0x7c09f0,3, 0x7c0a80,3, 0x7c0c00,5, 0x7c0c18,5, 0x7c0c30,3, 0x7c0c44,3, 0x7c0d00,58, 0x7c0df0,3, 0x7c0e80,3, 0x7c1018,1, 0x7c1100,2, 0x7c1110,10, 0x7c1140,2, 0x7c1150,10, 0x7c1180,2, 0x7c1190,10, 0x7c11c0,2, 0x7c11d0,10, 0x7c1208,1, 0x7c1220,16, 0x7c1280,1, 0x7c1288,2, 0x7c1400,8, 0x7c4000,2, 0x7c400c,1, 0x7c4030,3, 0x7c4040,2, 0x7c404c,1, 0x7c4070,3, 0x7c4080,2, 0x7c408c,1, 0x7c40b0,3, 0x7c40c0,2, 0x7c40cc,1, 0x7c40f0,3, 0x7c4200,15, 0x7c4280,15, 0x7c4300,15, 0x7c4380,15, 0x7c4400,15, 0x7c4480,15, 0x7c4500,15, 0x7c4580,15, 0x7c4604,10, 0x7c4700,2, 0x7c470c,7, 0x7c4740,1, 0x7c4770,1, 0x7c47c0,2, 0x7c47d0,4, 0x7c4800,3, 0x7c4810,1, 0x7c481c,3, 0x7c4b04,1, 0x7c4b0c,5, 0x7c4b44,1, 0x7c4b50,5, 0x7c4b70,6, 0x7c4b90,2, 0x7c4c00,129, 0x7c5000,39, 0x7c5100,39, 0x7c5200,39, 0x7c5300,39, 0x7c5400,39, 0x7c5500,39, 0x7c5600,39, 0x7c5700,39, 0x7c5f00,19, 0x7c6000,131, 0x7c6400,4, 0x7c6440,15, 0x7c6480,4, 0x7c64c0,15, 0x7c6500,4, 0x7c6540,15, 0x7c6580,4, 0x7c65c0,15, 0x7c6600,4, 0x7c6640,10, 0x7c6680,4, 0x7c66c0,10, 0x7c6700,4, 0x7c6740,10, 0x7c6780,4, 0x7c67c0,10, 0x7c6800,4, 0x7c6840,14, 0x7c6880,17, 0x7c6900,2, 0x7c6a00,13, 0x7c6a80,1, 0x7c6a88,8, 0x7c6ac0,6, 0x7c6ae0,1, 0x7c6ae8,2, 0x7c6b04,13, 0x7c6fcc,32, 0x7c8000,5, 0x7c8018,5, 0x7c8030,3, 0x7c8044,3, 0x7c8100,58, 0x7c81f0,3, 0x7c8280,3, 0x7c8400,5, 0x7c8418,5, 0x7c8430,3, 0x7c8444,3, 0x7c8500,58, 0x7c85f0,3, 0x7c8680,3, 0x7c8800,5, 0x7c8818,5, 0x7c8830,3, 0x7c8844,3, 0x7c8900,58, 0x7c89f0,3, 0x7c8a80,3, 0x7c8c00,5, 0x7c8c18,5, 0x7c8c30,3, 0x7c8c44,3, 0x7c8d00,58, 0x7c8df0,3, 0x7c8e80,3, 0x7c9018,1, 0x7c9100,2, 0x7c9110,10, 0x7c9140,2, 0x7c9150,10, 0x7c9180,2, 0x7c9190,10, 0x7c91c0,2, 0x7c91d0,10, 0x7c9208,1, 0x7c9220,16, 0x7c9280,1, 0x7c9288,2, 0x7c9400,8, 0x7cc000,2, 0x7cc00c,1, 0x7cc030,3, 0x7cc040,2, 0x7cc04c,1, 0x7cc070,3, 0x7cc080,2, 0x7cc08c,1, 0x7cc0b0,3, 0x7cc0c0,2, 0x7cc0cc,1, 0x7cc0f0,3, 0x7cc200,15, 0x7cc280,15, 0x7cc300,15, 0x7cc380,15, 0x7cc400,15, 0x7cc480,15, 0x7cc500,15, 0x7cc580,15, 0x7cc604,10, 0x7cc700,2, 0x7cc70c,7, 0x7cc740,1, 0x7cc770,1, 0x7cc7c0,2, 0x7cc7d0,4, 0x7cc800,3, 0x7cc810,1, 0x7cc81c,3, 0x7ccb04,1, 0x7ccb0c,5, 0x7ccb44,1, 0x7ccb50,5, 0x7ccb70,6, 0x7ccb90,2, 0x7ccc00,129, 0x7cd000,39, 0x7cd100,39, 0x7cd200,39, 0x7cd300,39, 0x7cd400,39, 0x7cd500,39, 0x7cd600,39, 0x7cd700,39, 0x7cdf00,19, 0x7ce000,131, 0x7ce400,4, 0x7ce440,15, 0x7ce480,4, 0x7ce4c0,15, 0x7ce500,4, 0x7ce540,15, 0x7ce580,4, 0x7ce5c0,15, 0x7ce600,4, 0x7ce640,10, 0x7ce680,4, 0x7ce6c0,10, 0x7ce700,4, 0x7ce740,10, 0x7ce780,4, 0x7ce7c0,10, 0x7ce800,4, 0x7ce840,14, 0x7ce880,17, 0x7ce900,2, 0x7cea00,13, 0x7cea80,1, 0x7cea88,8, 0x7ceac0,6, 0x7ceae0,1, 0x7ceae8,2, 0x7ceb04,13, 0x7cefcc,32, 0x7d0000,35, 0x7d0c00,10, 0x7d0c80,3, 0x7d1000,2, 0x7d100c,4, 0x7d1028,3, 0x7d1038,4, 0x7d1050,2, 0x7d1060,2, 0x7d1070,2, 0x7d1080,4, 0x7d1098,7, 0x7d1120,8, 0x7d1200,4, 0x7d1214,7, 0x7d1234,7, 0x7d1254,7, 0x7d1274,24, 0x7d1300,2, 0x7d130c,3, 0x7d1400,32, 0x7d1484,2, 0x7d1490,3, 0x7d1500,25, 0x7d15c0,8, 0x7d15e8,5, 0x7d1600,5, 0x7d1618,18, 0x7d1690,4, 0x7d1740,2, 0x7d1760,6, 0x7d1780,6, 0x7d17a0,6, 0x7d17c0,6, 0x7d17e0,1, 0x7d1800,19, 0x7d1880,2, 0x7d18b0,2, 0x7d18c0,2, 0x7d4000,35, 0x7d4c00,10, 0x7d4c80,3, 0x7d5000,2, 0x7d500c,4, 0x7d5028,3, 0x7d5038,4, 0x7d5050,2, 0x7d5060,2, 0x7d5070,2, 0x7d5080,4, 0x7d5098,7, 0x7d5120,8, 0x7d5200,4, 0x7d5214,7, 0x7d5234,7, 0x7d5254,7, 0x7d5274,24, 0x7d5300,2, 0x7d530c,3, 0x7d5400,32, 0x7d5484,2, 0x7d5490,3, 0x7d5500,25, 0x7d55c0,8, 0x7d55e8,5, 0x7d5600,5, 0x7d5618,18, 0x7d5690,4, 0x7d5740,2, 0x7d5760,6, 0x7d5780,6, 0x7d57a0,6, 0x7d57c0,6, 0x7d57e0,1, 0x7d5800,19, 0x7d5880,2, 0x7d58b0,2, 0x7d58c0,2, 0x7e0000,11, 0x7e0040,16, 0x7e0084,5, 0x7e0200,7, 0x7e0220,6, 0x7e0240,7, 0x7e0260,6, 0x7e0280,6, 0x7e02a0,2, 0x7e02ac,2, 0x7e02c0,7, 0x7e02e0,7, 0x7e0300,2, 0x7e030c,2, 0x7e0320,6, 0x7e0400,2, 0x7e1000,19, 0x7e1c00,10, 0x7e1c80,3, 0x7e2200,4, 0x7e2220,4, 0x7e2240,11, 0x7e2270,32, 0x7e2300,24, 0x7e2380,20, 0x7e2400,61, 0x7e2500,25, 0x7e2568,4, 0x7e2580,2, 0x7e25a0,1, 0x7e25c0,11, 0x7e2600,9, 0x7e2640,3, 0x7e2650,3, 0x7e2664,3, 0x7e2680,22, 0x7e2800,11, 0x7e3000,552, 0x7e4200,4, 0x7e4220,4, 0x7e4240,11, 0x7e4270,32, 0x7e4300,24, 0x7e4380,20, 0x7e4400,61, 0x7e4500,25, 0x7e4568,4, 0x7e4580,2, 0x7e45a0,1, 0x7e45c0,11, 0x7e4600,9, 0x7e4640,3, 0x7e4650,3, 0x7e4664,3, 0x7e4680,22, 0x7e4800,11, 0x7e5000,552, 0x7e6200,4, 0x7e6220,4, 0x7e6240,11, 0x7e6270,32, 0x7e6300,24, 0x7e6380,20, 0x7e6400,61, 0x7e6500,25, 0x7e6568,4, 0x7e6580,2, 0x7e65a0,1, 0x7e65c0,11, 0x7e6600,9, 0x7e6640,3, 0x7e6650,3, 0x7e6664,3, 0x7e6680,22, 0x7e6800,11, 0x7e7000,552, 0x7e8200,4, 0x7e8220,4, 0x7e8240,11, 0x7e8270,32, 0x7e8300,24, 0x7e8380,20, 0x7e8400,61, 0x7e8500,25, 0x7e8568,4, 0x7e8580,2, 0x7e85a0,1, 0x7e85c0,11, 0x7e8600,9, 0x7e8640,3, 0x7e8650,3, 0x7e8664,3, 0x7e8680,22, 0x7e8800,11, 0x7e9000,552, 0x7ea000,7, 0x7ea048,8, 0x7ea080,8, 0x7ea100,7, 0x7ea148,8, 0x7ea180,8, 0x7ea200,7, 0x7ea248,8, 0x7ea280,8, 0x7ea300,7, 0x7ea348,8, 0x7ea380,8, 0x7f0000,11, 0x7f0040,16, 0x7f0084,5, 0x7f0200,7, 0x7f0220,6, 0x7f0240,7, 0x7f0260,6, 0x7f0280,6, 0x7f02a0,2, 0x7f02ac,2, 0x7f02c0,7, 0x7f02e0,7, 0x7f0300,2, 0x7f030c,2, 0x7f0320,6, 0x7f0400,2, 0x7f1000,19, 0x7f1c00,10, 0x7f1c80,3, 0x7f2200,4, 0x7f2220,4, 0x7f2240,11, 0x7f2270,32, 0x7f2300,24, 0x7f2380,20, 0x7f2400,61, 0x7f2500,25, 0x7f2568,4, 0x7f2580,2, 0x7f25a0,1, 0x7f25c0,11, 0x7f2600,9, 0x7f2640,3, 0x7f2650,3, 0x7f2664,3, 0x7f2680,22, 0x7f2800,11, 0x7f3000,552, 0x7f4200,4, 0x7f4220,4, 0x7f4240,11, 0x7f4270,32, 0x7f4300,24, 0x7f4380,20, 0x7f4400,61, 0x7f4500,25, 0x7f4568,4, 0x7f4580,2, 0x7f45a0,1, 0x7f45c0,11, 0x7f4600,9, 0x7f4640,3, 0x7f4650,3, 0x7f4664,3, 0x7f4680,22, 0x7f4800,11, 0x7f5000,552, 0x7f6200,4, 0x7f6220,4, 0x7f6240,11, 0x7f6270,32, 0x7f6300,24, 0x7f6380,20, 0x7f6400,61, 0x7f6500,25, 0x7f6568,4, 0x7f6580,2, 0x7f65a0,1, 0x7f65c0,11, 0x7f6600,9, 0x7f6640,3, 0x7f6650,3, 0x7f6664,3, 0x7f6680,22, 0x7f6800,11, 0x7f7000,552, 0x7f8200,4, 0x7f8220,4, 0x7f8240,11, 0x7f8270,32, 0x7f8300,24, 0x7f8380,20, 0x7f8400,61, 0x7f8500,25, 0x7f8568,4, 0x7f8580,2, 0x7f85a0,1, 0x7f85c0,11, 0x7f8600,9, 0x7f8640,3, 0x7f8650,3, 0x7f8664,3, 0x7f8680,22, 0x7f8800,11, 0x7f9000,552, 0x7fa000,7, 0x7fa048,8, 0x7fa080,8, 0x7fa100,7, 0x7fa148,8, 0x7fa180,8, 0x7fa200,7, 0x7fa248,8, 0x7fa280,8, 0x7fa300,7, 0x7fa348,8, 0x7fa380,8, 0x800000,4, 0x800014,1, 0x800020,3, 0x800030,3, 0x800040,13, 0x800078,4, 0x80009c,29, 0x800114,1, 0x800120,3, 0x800130,3, 0x800140,13, 0x800178,4, 0x80019c,29, 0x800214,1, 0x800220,3, 0x800230,3, 0x800240,13, 0x800278,4, 0x80029c,29, 0x800314,1, 0x800320,3, 0x800330,3, 0x800340,13, 0x800378,4, 0x80039c,29, 0x800420,2, 0x80042c,2, 0x800440,4, 0x800460,2, 0x80046c,2, 0x800480,4, 0x8004a0,2, 0x8004ac,2, 0x8004c0,4, 0x8004e0,2, 0x8004ec,2, 0x800500,2, 0x80050c,4, 0x800520,2, 0x80052c,4, 0x800540,2, 0x80054c,4, 0x800560,2, 0x80056c,4, 0x8005c0,1, 0x800600,16, 0x800800,18, 0x800880,13, 0x8008f0,3, 0x800900,18, 0x800980,13, 0x8009f0,3, 0x800a00,18, 0x800a80,13, 0x800af0,3, 0x800b00,18, 0x800b80,13, 0x800bf0,3, 0x800c00,6, 0x800c20,16, 0x800c80,6, 0x800ca0,16, 0x800d00,6, 0x800d20,16, 0x800d80,6, 0x800da0,16, 0x800e00,4, 0x800e20,4, 0x800e40,4, 0x800e60,4, 0x800e80,37, 0x800f20,5, 0x800f40,5, 0x800f60,5, 0x801000,12, 0x801200,1, 0x801208,6, 0x801228,9, 0x801280,1, 0x801288,6, 0x8012a8,9, 0x801300,1, 0x801308,6, 0x801328,9, 0x801380,1, 0x801388,6, 0x8013a8,9, 0x801400,4, 0x801480,4, 0x801500,4, 0x801580,4, 0x801600,71, 0x801720,7, 0x801740,7, 0x801760,7, 0x801780,4, 0x80179c,11, 0x8017d0,2, 0x8017e0,2, 0x8017f0,2, 0x801800,7, 0x801820,7, 0x801840,7, 0x801860,7, 0x8018c0,64, 0x801aa0,2, 0x801ac0,8, 0x802000,7, 0x802020,4, 0x802040,4, 0x802060,7, 0x802080,7, 0x8020a0,4, 0x8020c0,4, 0x8020e0,7, 0x802100,7, 0x802120,4, 0x802140,4, 0x802160,7, 0x802180,7, 0x8021a0,4, 0x8021c0,4, 0x8021e0,7, 0x802200,19, 0x802280,19, 0x802300,19, 0x802380,19, 0x802400,14, 0x80243c,9, 0x802464,6, 0x802480,7, 0x8024a0,2, 0x8024ac,2, 0x802500,14, 0x80253c,9, 0x802564,6, 0x802580,7, 0x8025a0,2, 0x8025ac,2, 0x802600,14, 0x80263c,9, 0x802664,6, 0x802680,7, 0x8026a0,2, 0x8026ac,2, 0x802700,14, 0x80273c,9, 0x802764,6, 0x802780,7, 0x8027a0,2, 0x8027ac,2, 0x802800,19, 0x802880,19, 0x802900,19, 0x802980,19, 0x802a10,2, 0x802a1c,1, 0x802a50,2, 0x802a5c,1, 0x802a90,2, 0x802a9c,1, 0x802ad0,2, 0x802adc,1, 0x802c00,7, 0x802c20,1, 0x802c54,18, 0x802ca0,1, 0x802cd4,18, 0x802d20,1, 0x802d54,18, 0x802da0,1, 0x802dd4,12, 0x802e08,6, 0x803100,7, 0x803120,7, 0x803140,7, 0x803160,7, 0x803180,3, 0x804000,4, 0x804014,1, 0x804020,3, 0x804030,3, 0x804040,13, 0x804078,4, 0x80409c,29, 0x804114,1, 0x804120,3, 0x804130,3, 0x804140,13, 0x804178,4, 0x80419c,29, 0x804214,1, 0x804220,3, 0x804230,3, 0x804240,13, 0x804278,4, 0x80429c,29, 0x804314,1, 0x804320,3, 0x804330,3, 0x804340,13, 0x804378,4, 0x80439c,29, 0x804420,2, 0x80442c,2, 0x804440,4, 0x804460,2, 0x80446c,2, 0x804480,4, 0x8044a0,2, 0x8044ac,2, 0x8044c0,4, 0x8044e0,2, 0x8044ec,2, 0x804500,2, 0x80450c,4, 0x804520,2, 0x80452c,4, 0x804540,2, 0x80454c,4, 0x804560,2, 0x80456c,4, 0x8045c0,1, 0x804600,16, 0x804800,18, 0x804880,13, 0x8048f0,3, 0x804900,18, 0x804980,13, 0x8049f0,3, 0x804a00,18, 0x804a80,13, 0x804af0,3, 0x804b00,18, 0x804b80,13, 0x804bf0,3, 0x804c00,6, 0x804c20,16, 0x804c80,6, 0x804ca0,16, 0x804d00,6, 0x804d20,16, 0x804d80,6, 0x804da0,16, 0x804e00,4, 0x804e20,4, 0x804e40,4, 0x804e60,4, 0x804e80,37, 0x804f20,5, 0x804f40,5, 0x804f60,5, 0x805000,12, 0x805200,1, 0x805208,6, 0x805228,9, 0x805280,1, 0x805288,6, 0x8052a8,9, 0x805300,1, 0x805308,6, 0x805328,9, 0x805380,1, 0x805388,6, 0x8053a8,9, 0x805400,4, 0x805480,4, 0x805500,4, 0x805580,4, 0x805600,71, 0x805720,7, 0x805740,7, 0x805760,7, 0x805780,4, 0x80579c,11, 0x8057d0,2, 0x8057e0,2, 0x8057f0,2, 0x805800,7, 0x805820,7, 0x805840,7, 0x805860,7, 0x8058c0,64, 0x805aa0,2, 0x805ac0,8, 0x806000,7, 0x806020,4, 0x806040,4, 0x806060,7, 0x806080,7, 0x8060a0,4, 0x8060c0,4, 0x8060e0,7, 0x806100,7, 0x806120,4, 0x806140,4, 0x806160,7, 0x806180,7, 0x8061a0,4, 0x8061c0,4, 0x8061e0,7, 0x806200,19, 0x806280,19, 0x806300,19, 0x806380,19, 0x806400,14, 0x80643c,9, 0x806464,6, 0x806480,7, 0x8064a0,2, 0x8064ac,2, 0x806500,14, 0x80653c,9, 0x806564,6, 0x806580,7, 0x8065a0,2, 0x8065ac,2, 0x806600,14, 0x80663c,9, 0x806664,6, 0x806680,7, 0x8066a0,2, 0x8066ac,2, 0x806700,14, 0x80673c,9, 0x806764,6, 0x806780,7, 0x8067a0,2, 0x8067ac,2, 0x806800,19, 0x806880,19, 0x806900,19, 0x806980,19, 0x806a10,2, 0x806a1c,1, 0x806a50,2, 0x806a5c,1, 0x806a90,2, 0x806a9c,1, 0x806ad0,2, 0x806adc,1, 0x806c00,7, 0x806c20,1, 0x806c54,18, 0x806ca0,1, 0x806cd4,18, 0x806d20,1, 0x806d54,18, 0x806da0,1, 0x806dd4,12, 0x806e08,6, 0x807100,7, 0x807120,7, 0x807140,7, 0x807160,7, 0x807180,3, 0x808000,19, 0x808c00,10, 0x808c80,3, 0x808cc0,1, 0x809000,13, 0x809080,21, 0x80c000,16, 0x80c080,11, 0x80c100,11, 0x80c204,1, 0x80c224,21, 0x80c280,16, 0x80c300,11, 0x80c340,11, 0x80d000,8, 0x80d024,10, 0x80d050,22, 0x80d100,8, 0x80d124,10, 0x80d150,22, 0x80d200,8, 0x80d224,10, 0x80d250,22, 0x80d300,8, 0x80d324,10, 0x80d350,22, 0x80d400,8, 0x80d424,10, 0x80d450,22, 0x80d500,8, 0x80d524,10, 0x80d550,22, 0x80d600,8, 0x80d624,10, 0x80d650,22, 0x80d700,8, 0x80d724,10, 0x80d750,22, 0x80d800,8, 0x80d824,10, 0x80d850,22, 0x80d904,1, 0x80d914,10, 0x80d948,11, 0x80d980,1, 0x80d9a0,6, 0x80d9c0,2, 0x80d9cc,2, 0x80e000,35, 0x80ec00,10, 0x80ec80,3, 0x80f000,1, 0x80f008,3, 0x80f038,1, 0x80f044,1, 0x80f050,2, 0x80f060,8, 0x80f100,13, 0x80f140,19, 0x80f190,4, 0x810000,13, 0x810040,2, 0x810054,4, 0x810080,27, 0x810100,12, 0x810140,14, 0x810180,28, 0x810200,6, 0x810240,6, 0x81025c,3, 0x810280,5, 0x8102a0,8, 0x810400,14, 0x810440,14, 0x810480,14, 0x8104c0,14, 0x810540,3, 0x810600,7, 0x810620,14, 0x810680,5, 0x8106a0,7, 0x810800,13, 0x810840,2, 0x810854,4, 0x810880,27, 0x810900,12, 0x810940,14, 0x810980,28, 0x810a00,6, 0x810a40,6, 0x810a5c,3, 0x810a80,5, 0x810aa0,8, 0x810c00,14, 0x810c40,14, 0x810c80,14, 0x810cc0,14, 0x810d40,3, 0x810e00,7, 0x810e20,14, 0x810e80,5, 0x810ea0,7, 0x811000,13, 0x811040,2, 0x811054,4, 0x811080,27, 0x811100,12, 0x811140,14, 0x811180,28, 0x811200,6, 0x811240,6, 0x81125c,3, 0x811280,5, 0x8112a0,8, 0x811400,14, 0x811440,14, 0x811480,14, 0x8114c0,14, 0x811540,3, 0x811600,7, 0x811620,14, 0x811680,5, 0x8116a0,7, 0x811800,13, 0x811840,2, 0x811854,4, 0x811880,27, 0x811900,12, 0x811940,14, 0x811980,28, 0x811a00,6, 0x811a40,6, 0x811a5c,3, 0x811a80,5, 0x811aa0,8, 0x811c00,14, 0x811c40,14, 0x811c80,14, 0x811cc0,14, 0x811d40,3, 0x811e00,7, 0x811e20,14, 0x811e80,5, 0x811ea0,7, 0x812000,8, 0x812040,8, 0x812080,1, 0x812098,6, 0x812100,10, 0x812140,3, 0x812150,2, 0x812180,2, 0x812200,6, 0x812220,18, 0x812280,4, 0x812300,8, 0x812400,2, 0x812480,2, 0x813000,40, 0x813100,64, 0x814000,13, 0x814040,2, 0x814054,4, 0x814080,27, 0x814100,12, 0x814140,14, 0x814180,28, 0x814200,6, 0x814240,6, 0x81425c,3, 0x814280,5, 0x8142a0,8, 0x814400,14, 0x814440,14, 0x814480,14, 0x8144c0,14, 0x814540,3, 0x814600,7, 0x814620,14, 0x814680,5, 0x8146a0,7, 0x814800,13, 0x814840,2, 0x814854,4, 0x814880,27, 0x814900,12, 0x814940,14, 0x814980,28, 0x814a00,6, 0x814a40,6, 0x814a5c,3, 0x814a80,5, 0x814aa0,8, 0x814c00,14, 0x814c40,14, 0x814c80,14, 0x814cc0,14, 0x814d40,3, 0x814e00,7, 0x814e20,14, 0x814e80,5, 0x814ea0,7, 0x815000,13, 0x815040,2, 0x815054,4, 0x815080,27, 0x815100,12, 0x815140,14, 0x815180,28, 0x815200,6, 0x815240,6, 0x81525c,3, 0x815280,5, 0x8152a0,8, 0x815400,14, 0x815440,14, 0x815480,14, 0x8154c0,14, 0x815540,3, 0x815600,7, 0x815620,14, 0x815680,5, 0x8156a0,7, 0x815800,13, 0x815840,2, 0x815854,4, 0x815880,27, 0x815900,12, 0x815940,14, 0x815980,28, 0x815a00,6, 0x815a40,6, 0x815a5c,3, 0x815a80,5, 0x815aa0,8, 0x815c00,14, 0x815c40,14, 0x815c80,14, 0x815cc0,14, 0x815d40,3, 0x815e00,7, 0x815e20,14, 0x815e80,5, 0x815ea0,7, 0x816000,8, 0x816040,8, 0x816080,1, 0x816098,6, 0x816100,10, 0x816140,3, 0x816150,2, 0x816180,2, 0x816200,6, 0x816220,18, 0x816280,4, 0x816300,8, 0x816400,2, 0x816480,2, 0x817000,40, 0x817100,64, 0x820000,5, 0x820018,5, 0x820030,3, 0x820044,3, 0x820100,58, 0x8201f0,3, 0x820280,3, 0x820400,5, 0x820418,5, 0x820430,3, 0x820444,3, 0x820500,58, 0x8205f0,3, 0x820680,3, 0x820800,5, 0x820818,5, 0x820830,3, 0x820844,3, 0x820900,58, 0x8209f0,3, 0x820a80,3, 0x820c00,5, 0x820c18,5, 0x820c30,3, 0x820c44,3, 0x820d00,58, 0x820df0,3, 0x820e80,3, 0x821018,1, 0x821100,2, 0x821110,10, 0x821140,2, 0x821150,10, 0x821180,2, 0x821190,10, 0x8211c0,2, 0x8211d0,10, 0x821208,1, 0x821220,16, 0x821280,1, 0x821288,2, 0x821400,8, 0x824000,2, 0x82400c,1, 0x824030,3, 0x824040,2, 0x82404c,1, 0x824070,3, 0x824080,2, 0x82408c,1, 0x8240b0,3, 0x8240c0,2, 0x8240cc,1, 0x8240f0,3, 0x824200,15, 0x824280,15, 0x824300,15, 0x824380,15, 0x824400,15, 0x824480,15, 0x824500,15, 0x824580,15, 0x824604,10, 0x824700,2, 0x82470c,7, 0x824740,1, 0x824770,1, 0x8247c0,2, 0x8247d0,4, 0x824800,3, 0x824810,1, 0x82481c,3, 0x824b04,1, 0x824b0c,5, 0x824b44,1, 0x824b50,5, 0x824b70,6, 0x824b90,2, 0x824c00,129, 0x825000,39, 0x825100,39, 0x825200,39, 0x825300,39, 0x825400,39, 0x825500,39, 0x825600,39, 0x825700,39, 0x825f00,19, 0x826000,131, 0x826400,4, 0x826440,15, 0x826480,4, 0x8264c0,15, 0x826500,4, 0x826540,15, 0x826580,4, 0x8265c0,15, 0x826600,4, 0x826640,10, 0x826680,4, 0x8266c0,10, 0x826700,4, 0x826740,10, 0x826780,4, 0x8267c0,10, 0x826800,4, 0x826840,14, 0x826880,17, 0x826900,2, 0x826a00,13, 0x826a80,1, 0x826a88,8, 0x826ac0,6, 0x826ae0,1, 0x826ae8,2, 0x826b04,13, 0x826fcc,32, 0x828000,5, 0x828018,5, 0x828030,3, 0x828044,3, 0x828100,58, 0x8281f0,3, 0x828280,3, 0x828400,5, 0x828418,5, 0x828430,3, 0x828444,3, 0x828500,58, 0x8285f0,3, 0x828680,3, 0x828800,5, 0x828818,5, 0x828830,3, 0x828844,3, 0x828900,58, 0x8289f0,3, 0x828a80,3, 0x828c00,5, 0x828c18,5, 0x828c30,3, 0x828c44,3, 0x828d00,58, 0x828df0,3, 0x828e80,3, 0x829018,1, 0x829100,2, 0x829110,10, 0x829140,2, 0x829150,10, 0x829180,2, 0x829190,10, 0x8291c0,2, 0x8291d0,10, 0x829208,1, 0x829220,16, 0x829280,1, 0x829288,2, 0x829400,8, 0x82c000,2, 0x82c00c,1, 0x82c030,3, 0x82c040,2, 0x82c04c,1, 0x82c070,3, 0x82c080,2, 0x82c08c,1, 0x82c0b0,3, 0x82c0c0,2, 0x82c0cc,1, 0x82c0f0,3, 0x82c200,15, 0x82c280,15, 0x82c300,15, 0x82c380,15, 0x82c400,15, 0x82c480,15, 0x82c500,15, 0x82c580,15, 0x82c604,10, 0x82c700,2, 0x82c70c,7, 0x82c740,1, 0x82c770,1, 0x82c7c0,2, 0x82c7d0,4, 0x82c800,3, 0x82c810,1, 0x82c81c,3, 0x82cb04,1, 0x82cb0c,5, 0x82cb44,1, 0x82cb50,5, 0x82cb70,6, 0x82cb90,2, 0x82cc00,129, 0x82d000,39, 0x82d100,39, 0x82d200,39, 0x82d300,39, 0x82d400,39, 0x82d500,39, 0x82d600,39, 0x82d700,39, 0x82df00,19, 0x82e000,131, 0x82e400,4, 0x82e440,15, 0x82e480,4, 0x82e4c0,15, 0x82e500,4, 0x82e540,15, 0x82e580,4, 0x82e5c0,15, 0x82e600,4, 0x82e640,10, 0x82e680,4, 0x82e6c0,10, 0x82e700,4, 0x82e740,10, 0x82e780,4, 0x82e7c0,10, 0x82e800,4, 0x82e840,14, 0x82e880,17, 0x82e900,2, 0x82ea00,13, 0x82ea80,1, 0x82ea88,8, 0x82eac0,6, 0x82eae0,1, 0x82eae8,2, 0x82eb04,13, 0x82efcc,32, 0x830000,35, 0x830c00,10, 0x830c80,3, 0x831000,2, 0x83100c,4, 0x831028,3, 0x831038,4, 0x831050,2, 0x831060,2, 0x831070,2, 0x831080,4, 0x831098,7, 0x831120,8, 0x831200,4, 0x831214,7, 0x831234,7, 0x831254,7, 0x831274,24, 0x831300,2, 0x83130c,3, 0x831400,32, 0x831484,2, 0x831490,3, 0x831500,25, 0x8315c0,8, 0x8315e8,5, 0x831600,5, 0x831618,18, 0x831690,4, 0x831740,2, 0x831760,6, 0x831780,6, 0x8317a0,6, 0x8317c0,6, 0x8317e0,1, 0x831800,19, 0x831880,2, 0x8318b0,2, 0x8318c0,2, 0x834000,35, 0x834c00,10, 0x834c80,3, 0x835000,2, 0x83500c,4, 0x835028,3, 0x835038,4, 0x835050,2, 0x835060,2, 0x835070,2, 0x835080,4, 0x835098,7, 0x835120,8, 0x835200,4, 0x835214,7, 0x835234,7, 0x835254,7, 0x835274,24, 0x835300,2, 0x83530c,3, 0x835400,32, 0x835484,2, 0x835490,3, 0x835500,25, 0x8355c0,8, 0x8355e8,5, 0x835600,5, 0x835618,18, 0x835690,4, 0x835740,2, 0x835760,6, 0x835780,6, 0x8357a0,6, 0x8357c0,6, 0x8357e0,1, 0x835800,19, 0x835880,2, 0x8358b0,2, 0x8358c0,2, 0x840000,11, 0x840040,16, 0x840084,5, 0x840200,7, 0x840220,6, 0x840240,7, 0x840260,6, 0x840280,6, 0x8402a0,2, 0x8402ac,2, 0x8402c0,7, 0x8402e0,7, 0x840300,2, 0x84030c,2, 0x840320,6, 0x840400,2, 0x841000,19, 0x841c00,10, 0x841c80,3, 0x842200,4, 0x842220,4, 0x842240,11, 0x842270,32, 0x842300,24, 0x842380,20, 0x842400,61, 0x842500,25, 0x842568,4, 0x842580,2, 0x8425a0,1, 0x8425c0,11, 0x842600,9, 0x842640,3, 0x842650,3, 0x842664,3, 0x842680,22, 0x842800,11, 0x843000,552, 0x844200,4, 0x844220,4, 0x844240,11, 0x844270,32, 0x844300,24, 0x844380,20, 0x844400,61, 0x844500,25, 0x844568,4, 0x844580,2, 0x8445a0,1, 0x8445c0,11, 0x844600,9, 0x844640,3, 0x844650,3, 0x844664,3, 0x844680,22, 0x844800,11, 0x845000,552, 0x846200,4, 0x846220,4, 0x846240,11, 0x846270,32, 0x846300,24, 0x846380,20, 0x846400,61, 0x846500,25, 0x846568,4, 0x846580,2, 0x8465a0,1, 0x8465c0,11, 0x846600,9, 0x846640,3, 0x846650,3, 0x846664,3, 0x846680,22, 0x846800,11, 0x847000,552, 0x848200,4, 0x848220,4, 0x848240,11, 0x848270,32, 0x848300,24, 0x848380,20, 0x848400,61, 0x848500,25, 0x848568,4, 0x848580,2, 0x8485a0,1, 0x8485c0,11, 0x848600,9, 0x848640,3, 0x848650,3, 0x848664,3, 0x848680,22, 0x848800,11, 0x849000,552, 0x84a000,7, 0x84a048,8, 0x84a080,8, 0x84a100,7, 0x84a148,8, 0x84a180,8, 0x84a200,7, 0x84a248,8, 0x84a280,8, 0x84a300,7, 0x84a348,8, 0x84a380,8, 0x850000,11, 0x850040,16, 0x850084,5, 0x850200,7, 0x850220,6, 0x850240,7, 0x850260,6, 0x850280,6, 0x8502a0,2, 0x8502ac,2, 0x8502c0,7, 0x8502e0,7, 0x850300,2, 0x85030c,2, 0x850320,6, 0x850400,2, 0x851000,19, 0x851c00,10, 0x851c80,3, 0x852200,4, 0x852220,4, 0x852240,11, 0x852270,32, 0x852300,24, 0x852380,20, 0x852400,61, 0x852500,25, 0x852568,4, 0x852580,2, 0x8525a0,1, 0x8525c0,11, 0x852600,9, 0x852640,3, 0x852650,3, 0x852664,3, 0x852680,22, 0x852800,11, 0x853000,552, 0x854200,4, 0x854220,4, 0x854240,11, 0x854270,32, 0x854300,24, 0x854380,20, 0x854400,61, 0x854500,25, 0x854568,4, 0x854580,2, 0x8545a0,1, 0x8545c0,11, 0x854600,9, 0x854640,3, 0x854650,3, 0x854664,3, 0x854680,22, 0x854800,11, 0x855000,552, 0x856200,4, 0x856220,4, 0x856240,11, 0x856270,32, 0x856300,24, 0x856380,20, 0x856400,61, 0x856500,25, 0x856568,4, 0x856580,2, 0x8565a0,1, 0x8565c0,11, 0x856600,9, 0x856640,3, 0x856650,3, 0x856664,3, 0x856680,22, 0x856800,11, 0x857000,552, 0x858200,4, 0x858220,4, 0x858240,11, 0x858270,32, 0x858300,24, 0x858380,20, 0x858400,61, 0x858500,25, 0x858568,4, 0x858580,2, 0x8585a0,1, 0x8585c0,11, 0x858600,9, 0x858640,3, 0x858650,3, 0x858664,3, 0x858680,22, 0x858800,11, 0x859000,552, 0x85a000,7, 0x85a048,8, 0x85a080,8, 0x85a100,7, 0x85a148,8, 0x85a180,8, 0x85a200,7, 0x85a248,8, 0x85a280,8, 0x85a300,7, 0x85a348,8, 0x85a380,8, 0x860000,4, 0x860014,1, 0x860020,3, 0x860030,3, 0x860040,13, 0x860078,4, 0x86009c,29, 0x860114,1, 0x860120,3, 0x860130,3, 0x860140,13, 0x860178,4, 0x86019c,29, 0x860214,1, 0x860220,3, 0x860230,3, 0x860240,13, 0x860278,4, 0x86029c,29, 0x860314,1, 0x860320,3, 0x860330,3, 0x860340,13, 0x860378,4, 0x86039c,29, 0x860420,2, 0x86042c,2, 0x860440,4, 0x860460,2, 0x86046c,2, 0x860480,4, 0x8604a0,2, 0x8604ac,2, 0x8604c0,4, 0x8604e0,2, 0x8604ec,2, 0x860500,2, 0x86050c,4, 0x860520,2, 0x86052c,4, 0x860540,2, 0x86054c,4, 0x860560,2, 0x86056c,4, 0x8605c0,1, 0x860600,16, 0x860800,18, 0x860880,13, 0x8608f0,3, 0x860900,18, 0x860980,13, 0x8609f0,3, 0x860a00,18, 0x860a80,13, 0x860af0,3, 0x860b00,18, 0x860b80,13, 0x860bf0,3, 0x860c00,6, 0x860c20,16, 0x860c80,6, 0x860ca0,16, 0x860d00,6, 0x860d20,16, 0x860d80,6, 0x860da0,16, 0x860e00,4, 0x860e20,4, 0x860e40,4, 0x860e60,4, 0x860e80,37, 0x860f20,5, 0x860f40,5, 0x860f60,5, 0x861000,12, 0x861200,1, 0x861208,6, 0x861228,9, 0x861280,1, 0x861288,6, 0x8612a8,9, 0x861300,1, 0x861308,6, 0x861328,9, 0x861380,1, 0x861388,6, 0x8613a8,9, 0x861400,4, 0x861480,4, 0x861500,4, 0x861580,4, 0x861600,71, 0x861720,7, 0x861740,7, 0x861760,7, 0x861780,4, 0x86179c,11, 0x8617d0,2, 0x8617e0,2, 0x8617f0,2, 0x861800,7, 0x861820,7, 0x861840,7, 0x861860,7, 0x8618c0,64, 0x861aa0,2, 0x861ac0,8, 0x862000,7, 0x862020,4, 0x862040,4, 0x862060,7, 0x862080,7, 0x8620a0,4, 0x8620c0,4, 0x8620e0,7, 0x862100,7, 0x862120,4, 0x862140,4, 0x862160,7, 0x862180,7, 0x8621a0,4, 0x8621c0,4, 0x8621e0,7, 0x862200,19, 0x862280,19, 0x862300,19, 0x862380,19, 0x862400,14, 0x86243c,9, 0x862464,6, 0x862480,7, 0x8624a0,2, 0x8624ac,2, 0x862500,14, 0x86253c,9, 0x862564,6, 0x862580,7, 0x8625a0,2, 0x8625ac,2, 0x862600,14, 0x86263c,9, 0x862664,6, 0x862680,7, 0x8626a0,2, 0x8626ac,2, 0x862700,14, 0x86273c,9, 0x862764,6, 0x862780,7, 0x8627a0,2, 0x8627ac,2, 0x862800,19, 0x862880,19, 0x862900,19, 0x862980,19, 0x862a10,2, 0x862a1c,1, 0x862a50,2, 0x862a5c,1, 0x862a90,2, 0x862a9c,1, 0x862ad0,2, 0x862adc,1, 0x862c00,7, 0x862c20,1, 0x862c54,18, 0x862ca0,1, 0x862cd4,18, 0x862d20,1, 0x862d54,18, 0x862da0,1, 0x862dd4,12, 0x862e08,6, 0x863100,7, 0x863120,7, 0x863140,7, 0x863160,7, 0x863180,3, 0x864000,4, 0x864014,1, 0x864020,3, 0x864030,3, 0x864040,13, 0x864078,4, 0x86409c,29, 0x864114,1, 0x864120,3, 0x864130,3, 0x864140,13, 0x864178,4, 0x86419c,29, 0x864214,1, 0x864220,3, 0x864230,3, 0x864240,13, 0x864278,4, 0x86429c,29, 0x864314,1, 0x864320,3, 0x864330,3, 0x864340,13, 0x864378,4, 0x86439c,29, 0x864420,2, 0x86442c,2, 0x864440,4, 0x864460,2, 0x86446c,2, 0x864480,4, 0x8644a0,2, 0x8644ac,2, 0x8644c0,4, 0x8644e0,2, 0x8644ec,2, 0x864500,2, 0x86450c,4, 0x864520,2, 0x86452c,4, 0x864540,2, 0x86454c,4, 0x864560,2, 0x86456c,4, 0x8645c0,1, 0x864600,16, 0x864800,18, 0x864880,13, 0x8648f0,3, 0x864900,18, 0x864980,13, 0x8649f0,3, 0x864a00,18, 0x864a80,13, 0x864af0,3, 0x864b00,18, 0x864b80,13, 0x864bf0,3, 0x864c00,6, 0x864c20,16, 0x864c80,6, 0x864ca0,16, 0x864d00,6, 0x864d20,16, 0x864d80,6, 0x864da0,16, 0x864e00,4, 0x864e20,4, 0x864e40,4, 0x864e60,4, 0x864e80,37, 0x864f20,5, 0x864f40,5, 0x864f60,5, 0x865000,12, 0x865200,1, 0x865208,6, 0x865228,9, 0x865280,1, 0x865288,6, 0x8652a8,9, 0x865300,1, 0x865308,6, 0x865328,9, 0x865380,1, 0x865388,6, 0x8653a8,9, 0x865400,4, 0x865480,4, 0x865500,4, 0x865580,4, 0x865600,71, 0x865720,7, 0x865740,7, 0x865760,7, 0x865780,4, 0x86579c,11, 0x8657d0,2, 0x8657e0,2, 0x8657f0,2, 0x865800,7, 0x865820,7, 0x865840,7, 0x865860,7, 0x8658c0,64, 0x865aa0,2, 0x865ac0,8, 0x866000,7, 0x866020,4, 0x866040,4, 0x866060,7, 0x866080,7, 0x8660a0,4, 0x8660c0,4, 0x8660e0,7, 0x866100,7, 0x866120,4, 0x866140,4, 0x866160,7, 0x866180,7, 0x8661a0,4, 0x8661c0,4, 0x8661e0,7, 0x866200,19, 0x866280,19, 0x866300,19, 0x866380,19, 0x866400,14, 0x86643c,9, 0x866464,6, 0x866480,7, 0x8664a0,2, 0x8664ac,2, 0x866500,14, 0x86653c,9, 0x866564,6, 0x866580,7, 0x8665a0,2, 0x8665ac,2, 0x866600,14, 0x86663c,9, 0x866664,6, 0x866680,7, 0x8666a0,2, 0x8666ac,2, 0x866700,14, 0x86673c,9, 0x866764,6, 0x866780,7, 0x8667a0,2, 0x8667ac,2, 0x866800,19, 0x866880,19, 0x866900,19, 0x866980,19, 0x866a10,2, 0x866a1c,1, 0x866a50,2, 0x866a5c,1, 0x866a90,2, 0x866a9c,1, 0x866ad0,2, 0x866adc,1, 0x866c00,7, 0x866c20,1, 0x866c54,18, 0x866ca0,1, 0x866cd4,18, 0x866d20,1, 0x866d54,18, 0x866da0,1, 0x866dd4,12, 0x866e08,6, 0x867100,7, 0x867120,7, 0x867140,7, 0x867160,7, 0x867180,3, 0x868000,19, 0x868c00,10, 0x868c80,3, 0x868cc0,1, 0x869000,13, 0x869080,21, 0x86c000,16, 0x86c080,11, 0x86c100,11, 0x86c204,1, 0x86c224,21, 0x86c280,16, 0x86c300,11, 0x86c340,11, 0x86d000,8, 0x86d024,10, 0x86d050,22, 0x86d100,8, 0x86d124,10, 0x86d150,22, 0x86d200,8, 0x86d224,10, 0x86d250,22, 0x86d300,8, 0x86d324,10, 0x86d350,22, 0x86d400,8, 0x86d424,10, 0x86d450,22, 0x86d500,8, 0x86d524,10, 0x86d550,22, 0x86d600,8, 0x86d624,10, 0x86d650,22, 0x86d700,8, 0x86d724,10, 0x86d750,22, 0x86d800,8, 0x86d824,10, 0x86d850,22, 0x86d904,1, 0x86d914,10, 0x86d948,11, 0x86d980,1, 0x86d9a0,6, 0x86d9c0,2, 0x86d9cc,2, 0x86e000,35, 0x86ec00,10, 0x86ec80,3, 0x86f000,1, 0x86f008,3, 0x86f038,1, 0x86f044,1, 0x86f050,2, 0x86f060,8, 0x86f100,13, 0x86f140,19, 0x86f190,4, 0x870000,13, 0x870040,2, 0x870054,4, 0x870080,27, 0x870100,12, 0x870140,14, 0x870180,28, 0x870200,6, 0x870240,6, 0x87025c,3, 0x870280,5, 0x8702a0,8, 0x870400,14, 0x870440,14, 0x870480,14, 0x8704c0,14, 0x870540,3, 0x870600,7, 0x870620,14, 0x870680,5, 0x8706a0,7, 0x870800,13, 0x870840,2, 0x870854,4, 0x870880,27, 0x870900,12, 0x870940,14, 0x870980,28, 0x870a00,6, 0x870a40,6, 0x870a5c,3, 0x870a80,5, 0x870aa0,8, 0x870c00,14, 0x870c40,14, 0x870c80,14, 0x870cc0,14, 0x870d40,3, 0x870e00,7, 0x870e20,14, 0x870e80,5, 0x870ea0,7, 0x871000,13, 0x871040,2, 0x871054,4, 0x871080,27, 0x871100,12, 0x871140,14, 0x871180,28, 0x871200,6, 0x871240,6, 0x87125c,3, 0x871280,5, 0x8712a0,8, 0x871400,14, 0x871440,14, 0x871480,14, 0x8714c0,14, 0x871540,3, 0x871600,7, 0x871620,14, 0x871680,5, 0x8716a0,7, 0x871800,13, 0x871840,2, 0x871854,4, 0x871880,27, 0x871900,12, 0x871940,14, 0x871980,28, 0x871a00,6, 0x871a40,6, 0x871a5c,3, 0x871a80,5, 0x871aa0,8, 0x871c00,14, 0x871c40,14, 0x871c80,14, 0x871cc0,14, 0x871d40,3, 0x871e00,7, 0x871e20,14, 0x871e80,5, 0x871ea0,7, 0x872000,8, 0x872040,8, 0x872080,1, 0x872098,6, 0x872100,10, 0x872140,3, 0x872150,2, 0x872180,2, 0x872200,6, 0x872220,18, 0x872280,4, 0x872300,8, 0x872400,2, 0x872480,2, 0x873000,40, 0x873100,64, 0x874000,13, 0x874040,2, 0x874054,4, 0x874080,27, 0x874100,12, 0x874140,14, 0x874180,28, 0x874200,6, 0x874240,6, 0x87425c,3, 0x874280,5, 0x8742a0,8, 0x874400,14, 0x874440,14, 0x874480,14, 0x8744c0,14, 0x874540,3, 0x874600,7, 0x874620,14, 0x874680,5, 0x8746a0,7, 0x874800,13, 0x874840,2, 0x874854,4, 0x874880,27, 0x874900,12, 0x874940,14, 0x874980,28, 0x874a00,6, 0x874a40,6, 0x874a5c,3, 0x874a80,5, 0x874aa0,8, 0x874c00,14, 0x874c40,14, 0x874c80,14, 0x874cc0,14, 0x874d40,3, 0x874e00,7, 0x874e20,14, 0x874e80,5, 0x874ea0,7, 0x875000,13, 0x875040,2, 0x875054,4, 0x875080,27, 0x875100,12, 0x875140,14, 0x875180,28, 0x875200,6, 0x875240,6, 0x87525c,3, 0x875280,5, 0x8752a0,8, 0x875400,14, 0x875440,14, 0x875480,14, 0x8754c0,14, 0x875540,3, 0x875600,7, 0x875620,14, 0x875680,5, 0x8756a0,7, 0x875800,13, 0x875840,2, 0x875854,4, 0x875880,27, 0x875900,12, 0x875940,14, 0x875980,28, 0x875a00,6, 0x875a40,6, 0x875a5c,3, 0x875a80,5, 0x875aa0,8, 0x875c00,14, 0x875c40,14, 0x875c80,14, 0x875cc0,14, 0x875d40,3, 0x875e00,7, 0x875e20,14, 0x875e80,5, 0x875ea0,7, 0x876000,8, 0x876040,8, 0x876080,1, 0x876098,6, 0x876100,10, 0x876140,3, 0x876150,2, 0x876180,2, 0x876200,6, 0x876220,18, 0x876280,4, 0x876300,8, 0x876400,2, 0x876480,2, 0x877000,40, 0x877100,64, 0x880000,5, 0x880018,5, 0x880030,3, 0x880044,3, 0x880100,58, 0x8801f0,3, 0x880280,3, 0x880400,5, 0x880418,5, 0x880430,3, 0x880444,3, 0x880500,58, 0x8805f0,3, 0x880680,3, 0x880800,5, 0x880818,5, 0x880830,3, 0x880844,3, 0x880900,58, 0x8809f0,3, 0x880a80,3, 0x880c00,5, 0x880c18,5, 0x880c30,3, 0x880c44,3, 0x880d00,58, 0x880df0,3, 0x880e80,3, 0x881018,1, 0x881100,2, 0x881110,10, 0x881140,2, 0x881150,10, 0x881180,2, 0x881190,10, 0x8811c0,2, 0x8811d0,10, 0x881208,1, 0x881220,16, 0x881280,1, 0x881288,2, 0x881400,8, 0x884000,2, 0x88400c,1, 0x884030,3, 0x884040,2, 0x88404c,1, 0x884070,3, 0x884080,2, 0x88408c,1, 0x8840b0,3, 0x8840c0,2, 0x8840cc,1, 0x8840f0,3, 0x884200,15, 0x884280,15, 0x884300,15, 0x884380,15, 0x884400,15, 0x884480,15, 0x884500,15, 0x884580,15, 0x884604,10, 0x884700,2, 0x88470c,7, 0x884740,1, 0x884770,1, 0x8847c0,2, 0x8847d0,4, 0x884800,3, 0x884810,1, 0x88481c,3, 0x884b04,1, 0x884b0c,5, 0x884b44,1, 0x884b50,5, 0x884b70,6, 0x884b90,2, 0x884c00,129, 0x885000,39, 0x885100,39, 0x885200,39, 0x885300,39, 0x885400,39, 0x885500,39, 0x885600,39, 0x885700,39, 0x885f00,19, 0x886000,131, 0x886400,4, 0x886440,15, 0x886480,4, 0x8864c0,15, 0x886500,4, 0x886540,15, 0x886580,4, 0x8865c0,15, 0x886600,4, 0x886640,10, 0x886680,4, 0x8866c0,10, 0x886700,4, 0x886740,10, 0x886780,4, 0x8867c0,10, 0x886800,4, 0x886840,14, 0x886880,17, 0x886900,2, 0x886a00,13, 0x886a80,1, 0x886a88,8, 0x886ac0,6, 0x886ae0,1, 0x886ae8,2, 0x886b04,13, 0x886fcc,32, 0x888000,5, 0x888018,5, 0x888030,3, 0x888044,3, 0x888100,58, 0x8881f0,3, 0x888280,3, 0x888400,5, 0x888418,5, 0x888430,3, 0x888444,3, 0x888500,58, 0x8885f0,3, 0x888680,3, 0x888800,5, 0x888818,5, 0x888830,3, 0x888844,3, 0x888900,58, 0x8889f0,3, 0x888a80,3, 0x888c00,5, 0x888c18,5, 0x888c30,3, 0x888c44,3, 0x888d00,58, 0x888df0,3, 0x888e80,3, 0x889018,1, 0x889100,2, 0x889110,10, 0x889140,2, 0x889150,10, 0x889180,2, 0x889190,10, 0x8891c0,2, 0x8891d0,10, 0x889208,1, 0x889220,16, 0x889280,1, 0x889288,2, 0x889400,8, 0x88c000,2, 0x88c00c,1, 0x88c030,3, 0x88c040,2, 0x88c04c,1, 0x88c070,3, 0x88c080,2, 0x88c08c,1, 0x88c0b0,3, 0x88c0c0,2, 0x88c0cc,1, 0x88c0f0,3, 0x88c200,15, 0x88c280,15, 0x88c300,15, 0x88c380,15, 0x88c400,15, 0x88c480,15, 0x88c500,15, 0x88c580,15, 0x88c604,10, 0x88c700,2, 0x88c70c,7, 0x88c740,1, 0x88c770,1, 0x88c7c0,2, 0x88c7d0,4, 0x88c800,3, 0x88c810,1, 0x88c81c,3, 0x88cb04,1, 0x88cb0c,5, 0x88cb44,1, 0x88cb50,5, 0x88cb70,6, 0x88cb90,2, 0x88cc00,129, 0x88d000,39, 0x88d100,39, 0x88d200,39, 0x88d300,39, 0x88d400,39, 0x88d500,39, 0x88d600,39, 0x88d700,39, 0x88df00,19, 0x88e000,131, 0x88e400,4, 0x88e440,15, 0x88e480,4, 0x88e4c0,15, 0x88e500,4, 0x88e540,15, 0x88e580,4, 0x88e5c0,15, 0x88e600,4, 0x88e640,10, 0x88e680,4, 0x88e6c0,10, 0x88e700,4, 0x88e740,10, 0x88e780,4, 0x88e7c0,10, 0x88e800,4, 0x88e840,14, 0x88e880,17, 0x88e900,2, 0x88ea00,13, 0x88ea80,1, 0x88ea88,8, 0x88eac0,6, 0x88eae0,1, 0x88eae8,2, 0x88eb04,13, 0x88efcc,32, 0x890000,35, 0x890c00,10, 0x890c80,3, 0x891000,2, 0x89100c,4, 0x891028,3, 0x891038,4, 0x891050,2, 0x891060,2, 0x891070,2, 0x891080,4, 0x891098,7, 0x891120,8, 0x891200,4, 0x891214,7, 0x891234,7, 0x891254,7, 0x891274,24, 0x891300,2, 0x89130c,3, 0x891400,32, 0x891484,2, 0x891490,3, 0x891500,25, 0x8915c0,8, 0x8915e8,5, 0x891600,5, 0x891618,18, 0x891690,4, 0x891740,2, 0x891760,6, 0x891780,6, 0x8917a0,6, 0x8917c0,6, 0x8917e0,1, 0x891800,19, 0x891880,2, 0x8918b0,2, 0x8918c0,2, 0x894000,35, 0x894c00,10, 0x894c80,3, 0x895000,2, 0x89500c,4, 0x895028,3, 0x895038,4, 0x895050,2, 0x895060,2, 0x895070,2, 0x895080,4, 0x895098,7, 0x895120,8, 0x895200,4, 0x895214,7, 0x895234,7, 0x895254,7, 0x895274,24, 0x895300,2, 0x89530c,3, 0x895400,32, 0x895484,2, 0x895490,3, 0x895500,25, 0x8955c0,8, 0x8955e8,5, 0x895600,5, 0x895618,18, 0x895690,4, 0x895740,2, 0x895760,6, 0x895780,6, 0x8957a0,6, 0x8957c0,6, 0x8957e0,1, 0x895800,19, 0x895880,2, 0x8958b0,2, 0x8958c0,2, 0x8a0000,11, 0x8a0040,16, 0x8a0084,5, 0x8a0200,7, 0x8a0220,6, 0x8a0240,7, 0x8a0260,6, 0x8a0280,6, 0x8a02a0,2, 0x8a02ac,2, 0x8a02c0,7, 0x8a02e0,7, 0x8a0300,2, 0x8a030c,2, 0x8a0320,6, 0x8a0400,2, 0x8a1000,19, 0x8a1c00,10, 0x8a1c80,3, 0x8a2200,4, 0x8a2220,4, 0x8a2240,11, 0x8a2270,32, 0x8a2300,24, 0x8a2380,20, 0x8a2400,61, 0x8a2500,25, 0x8a2568,4, 0x8a2580,2, 0x8a25a0,1, 0x8a25c0,11, 0x8a2600,9, 0x8a2640,3, 0x8a2650,3, 0x8a2664,3, 0x8a2680,22, 0x8a2800,11, 0x8a3000,552, 0x8a4200,4, 0x8a4220,4, 0x8a4240,11, 0x8a4270,32, 0x8a4300,24, 0x8a4380,20, 0x8a4400,61, 0x8a4500,25, 0x8a4568,4, 0x8a4580,2, 0x8a45a0,1, 0x8a45c0,11, 0x8a4600,9, 0x8a4640,3, 0x8a4650,3, 0x8a4664,3, 0x8a4680,22, 0x8a4800,11, 0x8a5000,552, 0x8a6200,4, 0x8a6220,4, 0x8a6240,11, 0x8a6270,32, 0x8a6300,24, 0x8a6380,20, 0x8a6400,61, 0x8a6500,25, 0x8a6568,4, 0x8a6580,2, 0x8a65a0,1, 0x8a65c0,11, 0x8a6600,9, 0x8a6640,3, 0x8a6650,3, 0x8a6664,3, 0x8a6680,22, 0x8a6800,11, 0x8a7000,552, 0x8a8200,4, 0x8a8220,4, 0x8a8240,11, 0x8a8270,32, 0x8a8300,24, 0x8a8380,20, 0x8a8400,61, 0x8a8500,25, 0x8a8568,4, 0x8a8580,2, 0x8a85a0,1, 0x8a85c0,11, 0x8a8600,9, 0x8a8640,3, 0x8a8650,3, 0x8a8664,3, 0x8a8680,22, 0x8a8800,11, 0x8a9000,552, 0x8aa000,7, 0x8aa048,8, 0x8aa080,8, 0x8aa100,7, 0x8aa148,8, 0x8aa180,8, 0x8aa200,7, 0x8aa248,8, 0x8aa280,8, 0x8aa300,7, 0x8aa348,8, 0x8aa380,8, 0x8b0000,11, 0x8b0040,16, 0x8b0084,5, 0x8b0200,7, 0x8b0220,6, 0x8b0240,7, 0x8b0260,6, 0x8b0280,6, 0x8b02a0,2, 0x8b02ac,2, 0x8b02c0,7, 0x8b02e0,7, 0x8b0300,2, 0x8b030c,2, 0x8b0320,6, 0x8b0400,2, 0x8b1000,19, 0x8b1c00,10, 0x8b1c80,3, 0x8b2200,4, 0x8b2220,4, 0x8b2240,11, 0x8b2270,32, 0x8b2300,24, 0x8b2380,20, 0x8b2400,61, 0x8b2500,25, 0x8b2568,4, 0x8b2580,2, 0x8b25a0,1, 0x8b25c0,11, 0x8b2600,9, 0x8b2640,3, 0x8b2650,3, 0x8b2664,3, 0x8b2680,22, 0x8b2800,11, 0x8b3000,552, 0x8b4200,4, 0x8b4220,4, 0x8b4240,11, 0x8b4270,32, 0x8b4300,24, 0x8b4380,20, 0x8b4400,61, 0x8b4500,25, 0x8b4568,4, 0x8b4580,2, 0x8b45a0,1, 0x8b45c0,11, 0x8b4600,9, 0x8b4640,3, 0x8b4650,3, 0x8b4664,3, 0x8b4680,22, 0x8b4800,11, 0x8b5000,552, 0x8b6200,4, 0x8b6220,4, 0x8b6240,11, 0x8b6270,32, 0x8b6300,24, 0x8b6380,20, 0x8b6400,61, 0x8b6500,25, 0x8b6568,4, 0x8b6580,2, 0x8b65a0,1, 0x8b65c0,11, 0x8b6600,9, 0x8b6640,3, 0x8b6650,3, 0x8b6664,3, 0x8b6680,22, 0x8b6800,11, 0x8b7000,552, 0x8b8200,4, 0x8b8220,4, 0x8b8240,11, 0x8b8270,32, 0x8b8300,24, 0x8b8380,20, 0x8b8400,61, 0x8b8500,25, 0x8b8568,4, 0x8b8580,2, 0x8b85a0,1, 0x8b85c0,11, 0x8b8600,9, 0x8b8640,3, 0x8b8650,3, 0x8b8664,3, 0x8b8680,22, 0x8b8800,11, 0x8b9000,552, 0x8ba000,7, 0x8ba048,8, 0x8ba080,8, 0x8ba100,7, 0x8ba148,8, 0x8ba180,8, 0x8ba200,7, 0x8ba248,8, 0x8ba280,8, 0x8ba300,7, 0x8ba348,8, 0x8ba380,8, 0x8c0000,4, 0x8c0014,1, 0x8c0020,3, 0x8c0030,3, 0x8c0040,13, 0x8c0078,4, 0x8c009c,29, 0x8c0114,1, 0x8c0120,3, 0x8c0130,3, 0x8c0140,13, 0x8c0178,4, 0x8c019c,29, 0x8c0214,1, 0x8c0220,3, 0x8c0230,3, 0x8c0240,13, 0x8c0278,4, 0x8c029c,29, 0x8c0314,1, 0x8c0320,3, 0x8c0330,3, 0x8c0340,13, 0x8c0378,4, 0x8c039c,29, 0x8c0420,2, 0x8c042c,2, 0x8c0440,4, 0x8c0460,2, 0x8c046c,2, 0x8c0480,4, 0x8c04a0,2, 0x8c04ac,2, 0x8c04c0,4, 0x8c04e0,2, 0x8c04ec,2, 0x8c0500,2, 0x8c050c,4, 0x8c0520,2, 0x8c052c,4, 0x8c0540,2, 0x8c054c,4, 0x8c0560,2, 0x8c056c,4, 0x8c05c0,1, 0x8c0600,16, 0x8c0800,18, 0x8c0880,13, 0x8c08f0,3, 0x8c0900,18, 0x8c0980,13, 0x8c09f0,3, 0x8c0a00,18, 0x8c0a80,13, 0x8c0af0,3, 0x8c0b00,18, 0x8c0b80,13, 0x8c0bf0,3, 0x8c0c00,6, 0x8c0c20,16, 0x8c0c80,6, 0x8c0ca0,16, 0x8c0d00,6, 0x8c0d20,16, 0x8c0d80,6, 0x8c0da0,16, 0x8c0e00,4, 0x8c0e20,4, 0x8c0e40,4, 0x8c0e60,4, 0x8c0e80,37, 0x8c0f20,5, 0x8c0f40,5, 0x8c0f60,5, 0x8c1000,12, 0x8c1200,1, 0x8c1208,6, 0x8c1228,9, 0x8c1280,1, 0x8c1288,6, 0x8c12a8,9, 0x8c1300,1, 0x8c1308,6, 0x8c1328,9, 0x8c1380,1, 0x8c1388,6, 0x8c13a8,9, 0x8c1400,4, 0x8c1480,4, 0x8c1500,4, 0x8c1580,4, 0x8c1600,71, 0x8c1720,7, 0x8c1740,7, 0x8c1760,7, 0x8c1780,4, 0x8c179c,11, 0x8c17d0,2, 0x8c17e0,2, 0x8c17f0,2, 0x8c1800,7, 0x8c1820,7, 0x8c1840,7, 0x8c1860,7, 0x8c18c0,64, 0x8c1aa0,2, 0x8c1ac0,8, 0x8c2000,7, 0x8c2020,4, 0x8c2040,4, 0x8c2060,7, 0x8c2080,7, 0x8c20a0,4, 0x8c20c0,4, 0x8c20e0,7, 0x8c2100,7, 0x8c2120,4, 0x8c2140,4, 0x8c2160,7, 0x8c2180,7, 0x8c21a0,4, 0x8c21c0,4, 0x8c21e0,7, 0x8c2200,19, 0x8c2280,19, 0x8c2300,19, 0x8c2380,19, 0x8c2400,14, 0x8c243c,9, 0x8c2464,6, 0x8c2480,7, 0x8c24a0,2, 0x8c24ac,2, 0x8c2500,14, 0x8c253c,9, 0x8c2564,6, 0x8c2580,7, 0x8c25a0,2, 0x8c25ac,2, 0x8c2600,14, 0x8c263c,9, 0x8c2664,6, 0x8c2680,7, 0x8c26a0,2, 0x8c26ac,2, 0x8c2700,14, 0x8c273c,9, 0x8c2764,6, 0x8c2780,7, 0x8c27a0,2, 0x8c27ac,2, 0x8c2800,19, 0x8c2880,19, 0x8c2900,19, 0x8c2980,19, 0x8c2a10,2, 0x8c2a1c,1, 0x8c2a50,2, 0x8c2a5c,1, 0x8c2a90,2, 0x8c2a9c,1, 0x8c2ad0,2, 0x8c2adc,1, 0x8c2c00,7, 0x8c2c20,1, 0x8c2c54,18, 0x8c2ca0,1, 0x8c2cd4,18, 0x8c2d20,1, 0x8c2d54,18, 0x8c2da0,1, 0x8c2dd4,12, 0x8c2e08,6, 0x8c3100,7, 0x8c3120,7, 0x8c3140,7, 0x8c3160,7, 0x8c3180,3, 0x8c4000,4, 0x8c4014,1, 0x8c4020,3, 0x8c4030,3, 0x8c4040,13, 0x8c4078,4, 0x8c409c,29, 0x8c4114,1, 0x8c4120,3, 0x8c4130,3, 0x8c4140,13, 0x8c4178,4, 0x8c419c,29, 0x8c4214,1, 0x8c4220,3, 0x8c4230,3, 0x8c4240,13, 0x8c4278,4, 0x8c429c,29, 0x8c4314,1, 0x8c4320,3, 0x8c4330,3, 0x8c4340,13, 0x8c4378,4, 0x8c439c,29, 0x8c4420,2, 0x8c442c,2, 0x8c4440,4, 0x8c4460,2, 0x8c446c,2, 0x8c4480,4, 0x8c44a0,2, 0x8c44ac,2, 0x8c44c0,4, 0x8c44e0,2, 0x8c44ec,2, 0x8c4500,2, 0x8c450c,4, 0x8c4520,2, 0x8c452c,4, 0x8c4540,2, 0x8c454c,4, 0x8c4560,2, 0x8c456c,4, 0x8c45c0,1, 0x8c4600,16, 0x8c4800,18, 0x8c4880,13, 0x8c48f0,3, 0x8c4900,18, 0x8c4980,13, 0x8c49f0,3, 0x8c4a00,18, 0x8c4a80,13, 0x8c4af0,3, 0x8c4b00,18, 0x8c4b80,13, 0x8c4bf0,3, 0x8c4c00,6, 0x8c4c20,16, 0x8c4c80,6, 0x8c4ca0,16, 0x8c4d00,6, 0x8c4d20,16, 0x8c4d80,6, 0x8c4da0,16, 0x8c4e00,4, 0x8c4e20,4, 0x8c4e40,4, 0x8c4e60,4, 0x8c4e80,37, 0x8c4f20,5, 0x8c4f40,5, 0x8c4f60,5, 0x8c5000,12, 0x8c5200,1, 0x8c5208,6, 0x8c5228,9, 0x8c5280,1, 0x8c5288,6, 0x8c52a8,9, 0x8c5300,1, 0x8c5308,6, 0x8c5328,9, 0x8c5380,1, 0x8c5388,6, 0x8c53a8,9, 0x8c5400,4, 0x8c5480,4, 0x8c5500,4, 0x8c5580,4, 0x8c5600,71, 0x8c5720,7, 0x8c5740,7, 0x8c5760,7, 0x8c5780,4, 0x8c579c,11, 0x8c57d0,2, 0x8c57e0,2, 0x8c57f0,2, 0x8c5800,7, 0x8c5820,7, 0x8c5840,7, 0x8c5860,7, 0x8c58c0,64, 0x8c5aa0,2, 0x8c5ac0,8, 0x8c6000,7, 0x8c6020,4, 0x8c6040,4, 0x8c6060,7, 0x8c6080,7, 0x8c60a0,4, 0x8c60c0,4, 0x8c60e0,7, 0x8c6100,7, 0x8c6120,4, 0x8c6140,4, 0x8c6160,7, 0x8c6180,7, 0x8c61a0,4, 0x8c61c0,4, 0x8c61e0,7, 0x8c6200,19, 0x8c6280,19, 0x8c6300,19, 0x8c6380,19, 0x8c6400,14, 0x8c643c,9, 0x8c6464,6, 0x8c6480,7, 0x8c64a0,2, 0x8c64ac,2, 0x8c6500,14, 0x8c653c,9, 0x8c6564,6, 0x8c6580,7, 0x8c65a0,2, 0x8c65ac,2, 0x8c6600,14, 0x8c663c,9, 0x8c6664,6, 0x8c6680,7, 0x8c66a0,2, 0x8c66ac,2, 0x8c6700,14, 0x8c673c,9, 0x8c6764,6, 0x8c6780,7, 0x8c67a0,2, 0x8c67ac,2, 0x8c6800,19, 0x8c6880,19, 0x8c6900,19, 0x8c6980,19, 0x8c6a10,2, 0x8c6a1c,1, 0x8c6a50,2, 0x8c6a5c,1, 0x8c6a90,2, 0x8c6a9c,1, 0x8c6ad0,2, 0x8c6adc,1, 0x8c6c00,7, 0x8c6c20,1, 0x8c6c54,18, 0x8c6ca0,1, 0x8c6cd4,18, 0x8c6d20,1, 0x8c6d54,18, 0x8c6da0,1, 0x8c6dd4,12, 0x8c6e08,6, 0x8c7100,7, 0x8c7120,7, 0x8c7140,7, 0x8c7160,7, 0x8c7180,3, 0x8c8000,19, 0x8c8c00,10, 0x8c8c80,3, 0x8c8cc0,1, 0x8c9000,13, 0x8c9080,21, 0x8cc000,16, 0x8cc080,11, 0x8cc100,11, 0x8cc204,1, 0x8cc224,21, 0x8cc280,16, 0x8cc300,11, 0x8cc340,11, 0x8cd000,8, 0x8cd024,10, 0x8cd050,22, 0x8cd100,8, 0x8cd124,10, 0x8cd150,22, 0x8cd200,8, 0x8cd224,10, 0x8cd250,22, 0x8cd300,8, 0x8cd324,10, 0x8cd350,22, 0x8cd400,8, 0x8cd424,10, 0x8cd450,22, 0x8cd500,8, 0x8cd524,10, 0x8cd550,22, 0x8cd600,8, 0x8cd624,10, 0x8cd650,22, 0x8cd700,8, 0x8cd724,10, 0x8cd750,22, 0x8cd800,8, 0x8cd824,10, 0x8cd850,22, 0x8cd904,1, 0x8cd914,10, 0x8cd948,11, 0x8cd980,1, 0x8cd9a0,6, 0x8cd9c0,2, 0x8cd9cc,2, 0x8ce000,35, 0x8cec00,10, 0x8cec80,3, 0x8cf000,1, 0x8cf008,3, 0x8cf038,1, 0x8cf044,1, 0x8cf050,2, 0x8cf060,8, 0x8cf100,13, 0x8cf140,19, 0x8cf190,4, 0x8d0000,13, 0x8d0040,2, 0x8d0054,4, 0x8d0080,27, 0x8d0100,12, 0x8d0140,14, 0x8d0180,28, 0x8d0200,6, 0x8d0240,6, 0x8d025c,3, 0x8d0280,5, 0x8d02a0,8, 0x8d0400,14, 0x8d0440,14, 0x8d0480,14, 0x8d04c0,14, 0x8d0540,3, 0x8d0600,7, 0x8d0620,14, 0x8d0680,5, 0x8d06a0,7, 0x8d0800,13, 0x8d0840,2, 0x8d0854,4, 0x8d0880,27, 0x8d0900,12, 0x8d0940,14, 0x8d0980,28, 0x8d0a00,6, 0x8d0a40,6, 0x8d0a5c,3, 0x8d0a80,5, 0x8d0aa0,8, 0x8d0c00,14, 0x8d0c40,14, 0x8d0c80,14, 0x8d0cc0,14, 0x8d0d40,3, 0x8d0e00,7, 0x8d0e20,14, 0x8d0e80,5, 0x8d0ea0,7, 0x8d1000,13, 0x8d1040,2, 0x8d1054,4, 0x8d1080,27, 0x8d1100,12, 0x8d1140,14, 0x8d1180,28, 0x8d1200,6, 0x8d1240,6, 0x8d125c,3, 0x8d1280,5, 0x8d12a0,8, 0x8d1400,14, 0x8d1440,14, 0x8d1480,14, 0x8d14c0,14, 0x8d1540,3, 0x8d1600,7, 0x8d1620,14, 0x8d1680,5, 0x8d16a0,7, 0x8d1800,13, 0x8d1840,2, 0x8d1854,4, 0x8d1880,27, 0x8d1900,12, 0x8d1940,14, 0x8d1980,28, 0x8d1a00,6, 0x8d1a40,6, 0x8d1a5c,3, 0x8d1a80,5, 0x8d1aa0,8, 0x8d1c00,14, 0x8d1c40,14, 0x8d1c80,14, 0x8d1cc0,14, 0x8d1d40,3, 0x8d1e00,7, 0x8d1e20,14, 0x8d1e80,5, 0x8d1ea0,7, 0x8d2000,8, 0x8d2040,8, 0x8d2080,1, 0x8d2098,6, 0x8d2100,10, 0x8d2140,3, 0x8d2150,2, 0x8d2180,2, 0x8d2200,6, 0x8d2220,18, 0x8d2280,4, 0x8d2300,8, 0x8d2400,2, 0x8d2480,2, 0x8d3000,40, 0x8d3100,64, 0x8d4000,13, 0x8d4040,2, 0x8d4054,4, 0x8d4080,27, 0x8d4100,12, 0x8d4140,14, 0x8d4180,28, 0x8d4200,6, 0x8d4240,6, 0x8d425c,3, 0x8d4280,5, 0x8d42a0,8, 0x8d4400,14, 0x8d4440,14, 0x8d4480,14, 0x8d44c0,14, 0x8d4540,3, 0x8d4600,7, 0x8d4620,14, 0x8d4680,5, 0x8d46a0,7, 0x8d4800,13, 0x8d4840,2, 0x8d4854,4, 0x8d4880,27, 0x8d4900,12, 0x8d4940,14, 0x8d4980,28, 0x8d4a00,6, 0x8d4a40,6, 0x8d4a5c,3, 0x8d4a80,5, 0x8d4aa0,8, 0x8d4c00,14, 0x8d4c40,14, 0x8d4c80,14, 0x8d4cc0,14, 0x8d4d40,3, 0x8d4e00,7, 0x8d4e20,14, 0x8d4e80,5, 0x8d4ea0,7, 0x8d5000,13, 0x8d5040,2, 0x8d5054,4, 0x8d5080,27, 0x8d5100,12, 0x8d5140,14, 0x8d5180,28, 0x8d5200,6, 0x8d5240,6, 0x8d525c,3, 0x8d5280,5, 0x8d52a0,8, 0x8d5400,14, 0x8d5440,14, 0x8d5480,14, 0x8d54c0,14, 0x8d5540,3, 0x8d5600,7, 0x8d5620,14, 0x8d5680,5, 0x8d56a0,7, 0x8d5800,13, 0x8d5840,2, 0x8d5854,4, 0x8d5880,27, 0x8d5900,12, 0x8d5940,14, 0x8d5980,28, 0x8d5a00,6, 0x8d5a40,6, 0x8d5a5c,3, 0x8d5a80,5, 0x8d5aa0,8, 0x8d5c00,14, 0x8d5c40,14, 0x8d5c80,14, 0x8d5cc0,14, 0x8d5d40,3, 0x8d5e00,7, 0x8d5e20,14, 0x8d5e80,5, 0x8d5ea0,7, 0x8d6000,8, 0x8d6040,8, 0x8d6080,1, 0x8d6098,6, 0x8d6100,10, 0x8d6140,3, 0x8d6150,2, 0x8d6180,2, 0x8d6200,6, 0x8d6220,18, 0x8d6280,4, 0x8d6300,8, 0x8d6400,2, 0x8d6480,2, 0x8d7000,40, 0x8d7100,64, 0x8e0000,5, 0x8e0018,5, 0x8e0030,3, 0x8e0044,3, 0x8e0100,58, 0x8e01f0,3, 0x8e0280,3, 0x8e0400,5, 0x8e0418,5, 0x8e0430,3, 0x8e0444,3, 0x8e0500,58, 0x8e05f0,3, 0x8e0680,3, 0x8e0800,5, 0x8e0818,5, 0x8e0830,3, 0x8e0844,3, 0x8e0900,58, 0x8e09f0,3, 0x8e0a80,3, 0x8e0c00,5, 0x8e0c18,5, 0x8e0c30,3, 0x8e0c44,3, 0x8e0d00,58, 0x8e0df0,3, 0x8e0e80,3, 0x8e1018,1, 0x8e1100,2, 0x8e1110,10, 0x8e1140,2, 0x8e1150,10, 0x8e1180,2, 0x8e1190,10, 0x8e11c0,2, 0x8e11d0,10, 0x8e1208,1, 0x8e1220,16, 0x8e1280,1, 0x8e1288,2, 0x8e1400,8, 0x8e4000,2, 0x8e400c,1, 0x8e4030,3, 0x8e4040,2, 0x8e404c,1, 0x8e4070,3, 0x8e4080,2, 0x8e408c,1, 0x8e40b0,3, 0x8e40c0,2, 0x8e40cc,1, 0x8e40f0,3, 0x8e4200,15, 0x8e4280,15, 0x8e4300,15, 0x8e4380,15, 0x8e4400,15, 0x8e4480,15, 0x8e4500,15, 0x8e4580,15, 0x8e4604,10, 0x8e4700,2, 0x8e470c,7, 0x8e4740,1, 0x8e4770,1, 0x8e47c0,2, 0x8e47d0,4, 0x8e4800,3, 0x8e4810,1, 0x8e481c,3, 0x8e4b04,1, 0x8e4b0c,5, 0x8e4b44,1, 0x8e4b50,5, 0x8e4b70,6, 0x8e4b90,2, 0x8e4c00,129, 0x8e5000,39, 0x8e5100,39, 0x8e5200,39, 0x8e5300,39, 0x8e5400,39, 0x8e5500,39, 0x8e5600,39, 0x8e5700,39, 0x8e5f00,19, 0x8e6000,131, 0x8e6400,4, 0x8e6440,15, 0x8e6480,4, 0x8e64c0,15, 0x8e6500,4, 0x8e6540,15, 0x8e6580,4, 0x8e65c0,15, 0x8e6600,4, 0x8e6640,10, 0x8e6680,4, 0x8e66c0,10, 0x8e6700,4, 0x8e6740,10, 0x8e6780,4, 0x8e67c0,10, 0x8e6800,4, 0x8e6840,14, 0x8e6880,17, 0x8e6900,2, 0x8e6a00,13, 0x8e6a80,1, 0x8e6a88,8, 0x8e6ac0,6, 0x8e6ae0,1, 0x8e6ae8,2, 0x8e6b04,13, 0x8e6fcc,32, 0x8e8000,5, 0x8e8018,5, 0x8e8030,3, 0x8e8044,3, 0x8e8100,58, 0x8e81f0,3, 0x8e8280,3, 0x8e8400,5, 0x8e8418,5, 0x8e8430,3, 0x8e8444,3, 0x8e8500,58, 0x8e85f0,3, 0x8e8680,3, 0x8e8800,5, 0x8e8818,5, 0x8e8830,3, 0x8e8844,3, 0x8e8900,58, 0x8e89f0,3, 0x8e8a80,3, 0x8e8c00,5, 0x8e8c18,5, 0x8e8c30,3, 0x8e8c44,3, 0x8e8d00,58, 0x8e8df0,3, 0x8e8e80,3, 0x8e9018,1, 0x8e9100,2, 0x8e9110,10, 0x8e9140,2, 0x8e9150,10, 0x8e9180,2, 0x8e9190,10, 0x8e91c0,2, 0x8e91d0,10, 0x8e9208,1, 0x8e9220,16, 0x8e9280,1, 0x8e9288,2, 0x8e9400,8, 0x8ec000,2, 0x8ec00c,1, 0x8ec030,3, 0x8ec040,2, 0x8ec04c,1, 0x8ec070,3, 0x8ec080,2, 0x8ec08c,1, 0x8ec0b0,3, 0x8ec0c0,2, 0x8ec0cc,1, 0x8ec0f0,3, 0x8ec200,15, 0x8ec280,15, 0x8ec300,15, 0x8ec380,15, 0x8ec400,15, 0x8ec480,15, 0x8ec500,15, 0x8ec580,15, 0x8ec604,10, 0x8ec700,2, 0x8ec70c,7, 0x8ec740,1, 0x8ec770,1, 0x8ec7c0,2, 0x8ec7d0,4, 0x8ec800,3, 0x8ec810,1, 0x8ec81c,3, 0x8ecb04,1, 0x8ecb0c,5, 0x8ecb44,1, 0x8ecb50,5, 0x8ecb70,6, 0x8ecb90,2, 0x8ecc00,129, 0x8ed000,39, 0x8ed100,39, 0x8ed200,39, 0x8ed300,39, 0x8ed400,39, 0x8ed500,39, 0x8ed600,39, 0x8ed700,39, 0x8edf00,19, 0x8ee000,131, 0x8ee400,4, 0x8ee440,15, 0x8ee480,4, 0x8ee4c0,15, 0x8ee500,4, 0x8ee540,15, 0x8ee580,4, 0x8ee5c0,15, 0x8ee600,4, 0x8ee640,10, 0x8ee680,4, 0x8ee6c0,10, 0x8ee700,4, 0x8ee740,10, 0x8ee780,4, 0x8ee7c0,10, 0x8ee800,4, 0x8ee840,14, 0x8ee880,17, 0x8ee900,2, 0x8eea00,13, 0x8eea80,1, 0x8eea88,8, 0x8eeac0,6, 0x8eeae0,1, 0x8eeae8,2, 0x8eeb04,13, 0x8eefcc,32, 0x8f0000,35, 0x8f0c00,10, 0x8f0c80,3, 0x8f1000,2, 0x8f100c,4, 0x8f1028,3, 0x8f1038,4, 0x8f1050,2, 0x8f1060,2, 0x8f1070,2, 0x8f1080,4, 0x8f1098,7, 0x8f1120,8, 0x8f1200,4, 0x8f1214,7, 0x8f1234,7, 0x8f1254,7, 0x8f1274,24, 0x8f1300,2, 0x8f130c,3, 0x8f1400,32, 0x8f1484,2, 0x8f1490,3, 0x8f1500,25, 0x8f15c0,8, 0x8f15e8,5, 0x8f1600,5, 0x8f1618,18, 0x8f1690,4, 0x8f1740,2, 0x8f1760,6, 0x8f1780,6, 0x8f17a0,6, 0x8f17c0,6, 0x8f17e0,1, 0x8f1800,19, 0x8f1880,2, 0x8f18b0,2, 0x8f18c0,2, 0x8f4000,35, 0x8f4c00,10, 0x8f4c80,3, 0x8f5000,2, 0x8f500c,4, 0x8f5028,3, 0x8f5038,4, 0x8f5050,2, 0x8f5060,2, 0x8f5070,2, 0x8f5080,4, 0x8f5098,7, 0x8f5120,8, 0x8f5200,4, 0x8f5214,7, 0x8f5234,7, 0x8f5254,7, 0x8f5274,24, 0x8f5300,2, 0x8f530c,3, 0x8f5400,32, 0x8f5484,2, 0x8f5490,3, 0x8f5500,25, 0x8f55c0,8, 0x8f55e8,5, 0x8f5600,5, 0x8f5618,18, 0x8f5690,4, 0x8f5740,2, 0x8f5760,6, 0x8f5780,6, 0x8f57a0,6, 0x8f57c0,6, 0x8f57e0,1, 0x8f5800,19, 0x8f5880,2, 0x8f58b0,2, 0x8f58c0,2, 0x900000,11, 0x900040,16, 0x900084,5, 0x900200,7, 0x900220,6, 0x900240,7, 0x900260,6, 0x900280,6, 0x9002a0,2, 0x9002ac,2, 0x9002c0,7, 0x9002e0,7, 0x900300,2, 0x90030c,2, 0x900320,6, 0x900400,2, 0x901000,19, 0x901c00,10, 0x901c80,3, 0x902200,4, 0x902220,4, 0x902240,11, 0x902270,32, 0x902300,24, 0x902380,20, 0x902400,61, 0x902500,25, 0x902568,4, 0x902580,2, 0x9025a0,1, 0x9025c0,11, 0x902600,9, 0x902640,3, 0x902650,3, 0x902664,3, 0x902680,22, 0x902800,11, 0x903000,552, 0x904200,4, 0x904220,4, 0x904240,11, 0x904270,32, 0x904300,24, 0x904380,20, 0x904400,61, 0x904500,25, 0x904568,4, 0x904580,2, 0x9045a0,1, 0x9045c0,11, 0x904600,9, 0x904640,3, 0x904650,3, 0x904664,3, 0x904680,22, 0x904800,11, 0x905000,552, 0x906200,4, 0x906220,4, 0x906240,11, 0x906270,32, 0x906300,24, 0x906380,20, 0x906400,61, 0x906500,25, 0x906568,4, 0x906580,2, 0x9065a0,1, 0x9065c0,11, 0x906600,9, 0x906640,3, 0x906650,3, 0x906664,3, 0x906680,22, 0x906800,11, 0x907000,552, 0x908200,4, 0x908220,4, 0x908240,11, 0x908270,32, 0x908300,24, 0x908380,20, 0x908400,61, 0x908500,25, 0x908568,4, 0x908580,2, 0x9085a0,1, 0x9085c0,11, 0x908600,9, 0x908640,3, 0x908650,3, 0x908664,3, 0x908680,22, 0x908800,11, 0x909000,552, 0x90a000,7, 0x90a048,8, 0x90a080,8, 0x90a100,7, 0x90a148,8, 0x90a180,8, 0x90a200,7, 0x90a248,8, 0x90a280,8, 0x90a300,7, 0x90a348,8, 0x90a380,8, 0x910000,11, 0x910040,16, 0x910084,5, 0x910200,7, 0x910220,6, 0x910240,7, 0x910260,6, 0x910280,6, 0x9102a0,2, 0x9102ac,2, 0x9102c0,7, 0x9102e0,7, 0x910300,2, 0x91030c,2, 0x910320,6, 0x910400,2, 0x911000,19, 0x911c00,10, 0x911c80,3, 0x912200,4, 0x912220,4, 0x912240,11, 0x912270,32, 0x912300,24, 0x912380,20, 0x912400,61, 0x912500,25, 0x912568,4, 0x912580,2, 0x9125a0,1, 0x9125c0,11, 0x912600,9, 0x912640,3, 0x912650,3, 0x912664,3, 0x912680,22, 0x912800,11, 0x913000,552, 0x914200,4, 0x914220,4, 0x914240,11, 0x914270,32, 0x914300,24, 0x914380,20, 0x914400,61, 0x914500,25, 0x914568,4, 0x914580,2, 0x9145a0,1, 0x9145c0,11, 0x914600,9, 0x914640,3, 0x914650,3, 0x914664,3, 0x914680,22, 0x914800,11, 0x915000,552, 0x916200,4, 0x916220,4, 0x916240,11, 0x916270,32, 0x916300,24, 0x916380,20, 0x916400,61, 0x916500,25, 0x916568,4, 0x916580,2, 0x9165a0,1, 0x9165c0,11, 0x916600,9, 0x916640,3, 0x916650,3, 0x916664,3, 0x916680,22, 0x916800,11, 0x917000,552, 0x918200,4, 0x918220,4, 0x918240,11, 0x918270,32, 0x918300,24, 0x918380,20, 0x918400,61, 0x918500,25, 0x918568,4, 0x918580,2, 0x9185a0,1, 0x9185c0,11, 0x918600,9, 0x918640,3, 0x918650,3, 0x918664,3, 0x918680,22, 0x918800,11, 0x919000,552, 0x91a000,7, 0x91a048,8, 0x91a080,8, 0x91a100,7, 0x91a148,8, 0x91a180,8, 0x91a200,7, 0x91a248,8, 0x91a280,8, 0x91a300,7, 0x91a348,8, 0x91a380,8, 0x920000,4, 0x920014,1, 0x920020,3, 0x920030,3, 0x920040,13, 0x920078,4, 0x92009c,29, 0x920114,1, 0x920120,3, 0x920130,3, 0x920140,13, 0x920178,4, 0x92019c,29, 0x920214,1, 0x920220,3, 0x920230,3, 0x920240,13, 0x920278,4, 0x92029c,29, 0x920314,1, 0x920320,3, 0x920330,3, 0x920340,13, 0x920378,4, 0x92039c,29, 0x920420,2, 0x92042c,2, 0x920440,4, 0x920460,2, 0x92046c,2, 0x920480,4, 0x9204a0,2, 0x9204ac,2, 0x9204c0,4, 0x9204e0,2, 0x9204ec,2, 0x920500,2, 0x92050c,4, 0x920520,2, 0x92052c,4, 0x920540,2, 0x92054c,4, 0x920560,2, 0x92056c,4, 0x9205c0,1, 0x920600,16, 0x920800,18, 0x920880,13, 0x9208f0,3, 0x920900,18, 0x920980,13, 0x9209f0,3, 0x920a00,18, 0x920a80,13, 0x920af0,3, 0x920b00,18, 0x920b80,13, 0x920bf0,3, 0x920c00,6, 0x920c20,16, 0x920c80,6, 0x920ca0,16, 0x920d00,6, 0x920d20,16, 0x920d80,6, 0x920da0,16, 0x920e00,4, 0x920e20,4, 0x920e40,4, 0x920e60,4, 0x920e80,37, 0x920f20,5, 0x920f40,5, 0x920f60,5, 0x921000,12, 0x921200,1, 0x921208,6, 0x921228,9, 0x921280,1, 0x921288,6, 0x9212a8,9, 0x921300,1, 0x921308,6, 0x921328,9, 0x921380,1, 0x921388,6, 0x9213a8,9, 0x921400,4, 0x921480,4, 0x921500,4, 0x921580,4, 0x921600,71, 0x921720,7, 0x921740,7, 0x921760,7, 0x921780,4, 0x92179c,11, 0x9217d0,2, 0x9217e0,2, 0x9217f0,2, 0x921800,7, 0x921820,7, 0x921840,7, 0x921860,7, 0x9218c0,64, 0x921aa0,2, 0x921ac0,8, 0x922000,7, 0x922020,4, 0x922040,4, 0x922060,7, 0x922080,7, 0x9220a0,4, 0x9220c0,4, 0x9220e0,7, 0x922100,7, 0x922120,4, 0x922140,4, 0x922160,7, 0x922180,7, 0x9221a0,4, 0x9221c0,4, 0x9221e0,7, 0x922200,19, 0x922280,19, 0x922300,19, 0x922380,19, 0x922400,14, 0x92243c,9, 0x922464,6, 0x922480,7, 0x9224a0,2, 0x9224ac,2, 0x922500,14, 0x92253c,9, 0x922564,6, 0x922580,7, 0x9225a0,2, 0x9225ac,2, 0x922600,14, 0x92263c,9, 0x922664,6, 0x922680,7, 0x9226a0,2, 0x9226ac,2, 0x922700,14, 0x92273c,9, 0x922764,6, 0x922780,7, 0x9227a0,2, 0x9227ac,2, 0x922800,19, 0x922880,19, 0x922900,19, 0x922980,19, 0x922a10,2, 0x922a1c,1, 0x922a50,2, 0x922a5c,1, 0x922a90,2, 0x922a9c,1, 0x922ad0,2, 0x922adc,1, 0x922c00,7, 0x922c20,1, 0x922c54,18, 0x922ca0,1, 0x922cd4,18, 0x922d20,1, 0x922d54,18, 0x922da0,1, 0x922dd4,12, 0x922e08,6, 0x923100,7, 0x923120,7, 0x923140,7, 0x923160,7, 0x923180,3, 0x924000,4, 0x924014,1, 0x924020,3, 0x924030,3, 0x924040,13, 0x924078,4, 0x92409c,29, 0x924114,1, 0x924120,3, 0x924130,3, 0x924140,13, 0x924178,4, 0x92419c,29, 0x924214,1, 0x924220,3, 0x924230,3, 0x924240,13, 0x924278,4, 0x92429c,29, 0x924314,1, 0x924320,3, 0x924330,3, 0x924340,13, 0x924378,4, 0x92439c,29, 0x924420,2, 0x92442c,2, 0x924440,4, 0x924460,2, 0x92446c,2, 0x924480,4, 0x9244a0,2, 0x9244ac,2, 0x9244c0,4, 0x9244e0,2, 0x9244ec,2, 0x924500,2, 0x92450c,4, 0x924520,2, 0x92452c,4, 0x924540,2, 0x92454c,4, 0x924560,2, 0x92456c,4, 0x9245c0,1, 0x924600,16, 0x924800,18, 0x924880,13, 0x9248f0,3, 0x924900,18, 0x924980,13, 0x9249f0,3, 0x924a00,18, 0x924a80,13, 0x924af0,3, 0x924b00,18, 0x924b80,13, 0x924bf0,3, 0x924c00,6, 0x924c20,16, 0x924c80,6, 0x924ca0,16, 0x924d00,6, 0x924d20,16, 0x924d80,6, 0x924da0,16, 0x924e00,4, 0x924e20,4, 0x924e40,4, 0x924e60,4, 0x924e80,37, 0x924f20,5, 0x924f40,5, 0x924f60,5, 0x925000,12, 0x925200,1, 0x925208,6, 0x925228,9, 0x925280,1, 0x925288,6, 0x9252a8,9, 0x925300,1, 0x925308,6, 0x925328,9, 0x925380,1, 0x925388,6, 0x9253a8,9, 0x925400,4, 0x925480,4, 0x925500,4, 0x925580,4, 0x925600,71, 0x925720,7, 0x925740,7, 0x925760,7, 0x925780,4, 0x92579c,11, 0x9257d0,2, 0x9257e0,2, 0x9257f0,2, 0x925800,7, 0x925820,7, 0x925840,7, 0x925860,7, 0x9258c0,64, 0x925aa0,2, 0x925ac0,8, 0x926000,7, 0x926020,4, 0x926040,4, 0x926060,7, 0x926080,7, 0x9260a0,4, 0x9260c0,4, 0x9260e0,7, 0x926100,7, 0x926120,4, 0x926140,4, 0x926160,7, 0x926180,7, 0x9261a0,4, 0x9261c0,4, 0x9261e0,7, 0x926200,19, 0x926280,19, 0x926300,19, 0x926380,19, 0x926400,14, 0x92643c,9, 0x926464,6, 0x926480,7, 0x9264a0,2, 0x9264ac,2, 0x926500,14, 0x92653c,9, 0x926564,6, 0x926580,7, 0x9265a0,2, 0x9265ac,2, 0x926600,14, 0x92663c,9, 0x926664,6, 0x926680,7, 0x9266a0,2, 0x9266ac,2, 0x926700,14, 0x92673c,9, 0x926764,6, 0x926780,7, 0x9267a0,2, 0x9267ac,2, 0x926800,19, 0x926880,19, 0x926900,19, 0x926980,19, 0x926a10,2, 0x926a1c,1, 0x926a50,2, 0x926a5c,1, 0x926a90,2, 0x926a9c,1, 0x926ad0,2, 0x926adc,1, 0x926c00,7, 0x926c20,1, 0x926c54,18, 0x926ca0,1, 0x926cd4,18, 0x926d20,1, 0x926d54,18, 0x926da0,1, 0x926dd4,12, 0x926e08,6, 0x927100,7, 0x927120,7, 0x927140,7, 0x927160,7, 0x927180,3, 0x928000,19, 0x928c00,10, 0x928c80,3, 0x928cc0,1, 0x929000,13, 0x929080,21, 0x92c000,16, 0x92c080,11, 0x92c100,11, 0x92c204,1, 0x92c224,21, 0x92c280,16, 0x92c300,11, 0x92c340,11, 0x92d000,8, 0x92d024,10, 0x92d050,22, 0x92d100,8, 0x92d124,10, 0x92d150,22, 0x92d200,8, 0x92d224,10, 0x92d250,22, 0x92d300,8, 0x92d324,10, 0x92d350,22, 0x92d400,8, 0x92d424,10, 0x92d450,22, 0x92d500,8, 0x92d524,10, 0x92d550,22, 0x92d600,8, 0x92d624,10, 0x92d650,22, 0x92d700,8, 0x92d724,10, 0x92d750,22, 0x92d800,8, 0x92d824,10, 0x92d850,22, 0x92d904,1, 0x92d914,10, 0x92d948,11, 0x92d980,1, 0x92d9a0,6, 0x92d9c0,2, 0x92d9cc,2, 0x92e000,35, 0x92ec00,10, 0x92ec80,3, 0x92f000,1, 0x92f008,3, 0x92f038,1, 0x92f044,1, 0x92f050,2, 0x92f060,8, 0x92f100,13, 0x92f140,19, 0x92f190,4, 0x930000,13, 0x930040,2, 0x930054,4, 0x930080,27, 0x930100,12, 0x930140,14, 0x930180,28, 0x930200,6, 0x930240,6, 0x93025c,3, 0x930280,5, 0x9302a0,8, 0x930400,14, 0x930440,14, 0x930480,14, 0x9304c0,14, 0x930540,3, 0x930600,7, 0x930620,14, 0x930680,5, 0x9306a0,7, 0x930800,13, 0x930840,2, 0x930854,4, 0x930880,27, 0x930900,12, 0x930940,14, 0x930980,28, 0x930a00,6, 0x930a40,6, 0x930a5c,3, 0x930a80,5, 0x930aa0,8, 0x930c00,14, 0x930c40,14, 0x930c80,14, 0x930cc0,14, 0x930d40,3, 0x930e00,7, 0x930e20,14, 0x930e80,5, 0x930ea0,7, 0x931000,13, 0x931040,2, 0x931054,4, 0x931080,27, 0x931100,12, 0x931140,14, 0x931180,28, 0x931200,6, 0x931240,6, 0x93125c,3, 0x931280,5, 0x9312a0,8, 0x931400,14, 0x931440,14, 0x931480,14, 0x9314c0,14, 0x931540,3, 0x931600,7, 0x931620,14, 0x931680,5, 0x9316a0,7, 0x931800,13, 0x931840,2, 0x931854,4, 0x931880,27, 0x931900,12, 0x931940,14, 0x931980,28, 0x931a00,6, 0x931a40,6, 0x931a5c,3, 0x931a80,5, 0x931aa0,8, 0x931c00,14, 0x931c40,14, 0x931c80,14, 0x931cc0,14, 0x931d40,3, 0x931e00,7, 0x931e20,14, 0x931e80,5, 0x931ea0,7, 0x932000,8, 0x932040,8, 0x932080,1, 0x932098,6, 0x932100,10, 0x932140,3, 0x932150,2, 0x932180,2, 0x932200,6, 0x932220,18, 0x932280,4, 0x932300,8, 0x932400,2, 0x932480,2, 0x933000,40, 0x933100,64, 0x934000,13, 0x934040,2, 0x934054,4, 0x934080,27, 0x934100,12, 0x934140,14, 0x934180,28, 0x934200,6, 0x934240,6, 0x93425c,3, 0x934280,5, 0x9342a0,8, 0x934400,14, 0x934440,14, 0x934480,14, 0x9344c0,14, 0x934540,3, 0x934600,7, 0x934620,14, 0x934680,5, 0x9346a0,7, 0x934800,13, 0x934840,2, 0x934854,4, 0x934880,27, 0x934900,12, 0x934940,14, 0x934980,28, 0x934a00,6, 0x934a40,6, 0x934a5c,3, 0x934a80,5, 0x934aa0,8, 0x934c00,14, 0x934c40,14, 0x934c80,14, 0x934cc0,14, 0x934d40,3, 0x934e00,7, 0x934e20,14, 0x934e80,5, 0x934ea0,7, 0x935000,13, 0x935040,2, 0x935054,4, 0x935080,27, 0x935100,12, 0x935140,14, 0x935180,28, 0x935200,6, 0x935240,6, 0x93525c,3, 0x935280,5, 0x9352a0,8, 0x935400,14, 0x935440,14, 0x935480,14, 0x9354c0,14, 0x935540,3, 0x935600,7, 0x935620,14, 0x935680,5, 0x9356a0,7, 0x935800,13, 0x935840,2, 0x935854,4, 0x935880,27, 0x935900,12, 0x935940,14, 0x935980,28, 0x935a00,6, 0x935a40,6, 0x935a5c,3, 0x935a80,5, 0x935aa0,8, 0x935c00,14, 0x935c40,14, 0x935c80,14, 0x935cc0,14, 0x935d40,3, 0x935e00,7, 0x935e20,14, 0x935e80,5, 0x935ea0,7, 0x936000,8, 0x936040,8, 0x936080,1, 0x936098,6, 0x936100,10, 0x936140,3, 0x936150,2, 0x936180,2, 0x936200,6, 0x936220,18, 0x936280,4, 0x936300,8, 0x936400,2, 0x936480,2, 0x937000,40, 0x937100,64, 0x940000,5, 0x940018,5, 0x940030,3, 0x940044,3, 0x940100,58, 0x9401f0,3, 0x940280,3, 0x940400,5, 0x940418,5, 0x940430,3, 0x940444,3, 0x940500,58, 0x9405f0,3, 0x940680,3, 0x940800,5, 0x940818,5, 0x940830,3, 0x940844,3, 0x940900,58, 0x9409f0,3, 0x940a80,3, 0x940c00,5, 0x940c18,5, 0x940c30,3, 0x940c44,3, 0x940d00,58, 0x940df0,3, 0x940e80,3, 0x941018,1, 0x941100,2, 0x941110,10, 0x941140,2, 0x941150,10, 0x941180,2, 0x941190,10, 0x9411c0,2, 0x9411d0,10, 0x941208,1, 0x941220,16, 0x941280,1, 0x941288,2, 0x941400,8, 0x944000,2, 0x94400c,1, 0x944030,3, 0x944040,2, 0x94404c,1, 0x944070,3, 0x944080,2, 0x94408c,1, 0x9440b0,3, 0x9440c0,2, 0x9440cc,1, 0x9440f0,3, 0x944200,15, 0x944280,15, 0x944300,15, 0x944380,15, 0x944400,15, 0x944480,15, 0x944500,15, 0x944580,15, 0x944604,10, 0x944700,2, 0x94470c,7, 0x944740,1, 0x944770,1, 0x9447c0,2, 0x9447d0,4, 0x944800,3, 0x944810,1, 0x94481c,3, 0x944b04,1, 0x944b0c,5, 0x944b44,1, 0x944b50,5, 0x944b70,6, 0x944b90,2, 0x944c00,129, 0x945000,39, 0x945100,39, 0x945200,39, 0x945300,39, 0x945400,39, 0x945500,39, 0x945600,39, 0x945700,39, 0x945f00,19, 0x946000,131, 0x946400,4, 0x946440,15, 0x946480,4, 0x9464c0,15, 0x946500,4, 0x946540,15, 0x946580,4, 0x9465c0,15, 0x946600,4, 0x946640,10, 0x946680,4, 0x9466c0,10, 0x946700,4, 0x946740,10, 0x946780,4, 0x9467c0,10, 0x946800,4, 0x946840,14, 0x946880,17, 0x946900,2, 0x946a00,13, 0x946a80,1, 0x946a88,8, 0x946ac0,6, 0x946ae0,1, 0x946ae8,2, 0x946b04,13, 0x946fcc,32, 0x948000,5, 0x948018,5, 0x948030,3, 0x948044,3, 0x948100,58, 0x9481f0,3, 0x948280,3, 0x948400,5, 0x948418,5, 0x948430,3, 0x948444,3, 0x948500,58, 0x9485f0,3, 0x948680,3, 0x948800,5, 0x948818,5, 0x948830,3, 0x948844,3, 0x948900,58, 0x9489f0,3, 0x948a80,3, 0x948c00,5, 0x948c18,5, 0x948c30,3, 0x948c44,3, 0x948d00,58, 0x948df0,3, 0x948e80,3, 0x949018,1, 0x949100,2, 0x949110,10, 0x949140,2, 0x949150,10, 0x949180,2, 0x949190,10, 0x9491c0,2, 0x9491d0,10, 0x949208,1, 0x949220,16, 0x949280,1, 0x949288,2, 0x949400,8, 0x94c000,2, 0x94c00c,1, 0x94c030,3, 0x94c040,2, 0x94c04c,1, 0x94c070,3, 0x94c080,2, 0x94c08c,1, 0x94c0b0,3, 0x94c0c0,2, 0x94c0cc,1, 0x94c0f0,3, 0x94c200,15, 0x94c280,15, 0x94c300,15, 0x94c380,15, 0x94c400,15, 0x94c480,15, 0x94c500,15, 0x94c580,15, 0x94c604,10, 0x94c700,2, 0x94c70c,7, 0x94c740,1, 0x94c770,1, 0x94c7c0,2, 0x94c7d0,4, 0x94c800,3, 0x94c810,1, 0x94c81c,3, 0x94cb04,1, 0x94cb0c,5, 0x94cb44,1, 0x94cb50,5, 0x94cb70,6, 0x94cb90,2, 0x94cc00,129, 0x94d000,39, 0x94d100,39, 0x94d200,39, 0x94d300,39, 0x94d400,39, 0x94d500,39, 0x94d600,39, 0x94d700,39, 0x94df00,19, 0x94e000,131, 0x94e400,4, 0x94e440,15, 0x94e480,4, 0x94e4c0,15, 0x94e500,4, 0x94e540,15, 0x94e580,4, 0x94e5c0,15, 0x94e600,4, 0x94e640,10, 0x94e680,4, 0x94e6c0,10, 0x94e700,4, 0x94e740,10, 0x94e780,4, 0x94e7c0,10, 0x94e800,4, 0x94e840,14, 0x94e880,17, 0x94e900,2, 0x94ea00,13, 0x94ea80,1, 0x94ea88,8, 0x94eac0,6, 0x94eae0,1, 0x94eae8,2, 0x94eb04,13, 0x94efcc,32, 0x950000,35, 0x950c00,10, 0x950c80,3, 0x951000,2, 0x95100c,4, 0x951028,3, 0x951038,4, 0x951050,2, 0x951060,2, 0x951070,2, 0x951080,4, 0x951098,7, 0x951120,8, 0x951200,4, 0x951214,7, 0x951234,7, 0x951254,7, 0x951274,24, 0x951300,2, 0x95130c,3, 0x951400,32, 0x951484,2, 0x951490,3, 0x951500,25, 0x9515c0,8, 0x9515e8,5, 0x951600,5, 0x951618,18, 0x951690,4, 0x951740,2, 0x951760,6, 0x951780,6, 0x9517a0,6, 0x9517c0,6, 0x9517e0,1, 0x951800,19, 0x951880,2, 0x9518b0,2, 0x9518c0,2, 0x954000,35, 0x954c00,10, 0x954c80,3, 0x955000,2, 0x95500c,4, 0x955028,3, 0x955038,4, 0x955050,2, 0x955060,2, 0x955070,2, 0x955080,4, 0x955098,7, 0x955120,8, 0x955200,4, 0x955214,7, 0x955234,7, 0x955254,7, 0x955274,24, 0x955300,2, 0x95530c,3, 0x955400,32, 0x955484,2, 0x955490,3, 0x955500,25, 0x9555c0,8, 0x9555e8,5, 0x955600,5, 0x955618,18, 0x955690,4, 0x955740,2, 0x955760,6, 0x955780,6, 0x9557a0,6, 0x9557c0,6, 0x9557e0,1, 0x955800,19, 0x955880,2, 0x9558b0,2, 0x9558c0,2, 0x960000,11, 0x960040,16, 0x960084,5, 0x960200,7, 0x960220,6, 0x960240,7, 0x960260,6, 0x960280,6, 0x9602a0,2, 0x9602ac,2, 0x9602c0,7, 0x9602e0,7, 0x960300,2, 0x96030c,2, 0x960320,6, 0x960400,2, 0x961000,19, 0x961c00,10, 0x961c80,3, 0x962200,4, 0x962220,4, 0x962240,11, 0x962270,32, 0x962300,24, 0x962380,20, 0x962400,61, 0x962500,25, 0x962568,4, 0x962580,2, 0x9625a0,1, 0x9625c0,11, 0x962600,9, 0x962640,3, 0x962650,3, 0x962664,3, 0x962680,22, 0x962800,11, 0x963000,552, 0x964200,4, 0x964220,4, 0x964240,11, 0x964270,32, 0x964300,24, 0x964380,20, 0x964400,61, 0x964500,25, 0x964568,4, 0x964580,2, 0x9645a0,1, 0x9645c0,11, 0x964600,9, 0x964640,3, 0x964650,3, 0x964664,3, 0x964680,22, 0x964800,11, 0x965000,552, 0x966200,4, 0x966220,4, 0x966240,11, 0x966270,32, 0x966300,24, 0x966380,20, 0x966400,61, 0x966500,25, 0x966568,4, 0x966580,2, 0x9665a0,1, 0x9665c0,11, 0x966600,9, 0x966640,3, 0x966650,3, 0x966664,3, 0x966680,22, 0x966800,11, 0x967000,552, 0x968200,4, 0x968220,4, 0x968240,11, 0x968270,32, 0x968300,24, 0x968380,20, 0x968400,61, 0x968500,25, 0x968568,4, 0x968580,2, 0x9685a0,1, 0x9685c0,11, 0x968600,9, 0x968640,3, 0x968650,3, 0x968664,3, 0x968680,22, 0x968800,11, 0x969000,552, 0x96a000,7, 0x96a048,8, 0x96a080,8, 0x96a100,7, 0x96a148,8, 0x96a180,8, 0x96a200,7, 0x96a248,8, 0x96a280,8, 0x96a300,7, 0x96a348,8, 0x96a380,8, 0x970000,11, 0x970040,16, 0x970084,5, 0x970200,7, 0x970220,6, 0x970240,7, 0x970260,6, 0x970280,6, 0x9702a0,2, 0x9702ac,2, 0x9702c0,7, 0x9702e0,7, 0x970300,2, 0x97030c,2, 0x970320,6, 0x970400,2, 0x971000,19, 0x971c00,10, 0x971c80,3, 0x972200,4, 0x972220,4, 0x972240,11, 0x972270,32, 0x972300,24, 0x972380,20, 0x972400,61, 0x972500,25, 0x972568,4, 0x972580,2, 0x9725a0,1, 0x9725c0,11, 0x972600,9, 0x972640,3, 0x972650,3, 0x972664,3, 0x972680,22, 0x972800,11, 0x973000,552, 0x974200,4, 0x974220,4, 0x974240,11, 0x974270,32, 0x974300,24, 0x974380,20, 0x974400,61, 0x974500,25, 0x974568,4, 0x974580,2, 0x9745a0,1, 0x9745c0,11, 0x974600,9, 0x974640,3, 0x974650,3, 0x974664,3, 0x974680,22, 0x974800,11, 0x975000,552, 0x976200,4, 0x976220,4, 0x976240,11, 0x976270,32, 0x976300,24, 0x976380,20, 0x976400,61, 0x976500,25, 0x976568,4, 0x976580,2, 0x9765a0,1, 0x9765c0,11, 0x976600,9, 0x976640,3, 0x976650,3, 0x976664,3, 0x976680,22, 0x976800,11, 0x977000,552, 0x978200,4, 0x978220,4, 0x978240,11, 0x978270,32, 0x978300,24, 0x978380,20, 0x978400,61, 0x978500,25, 0x978568,4, 0x978580,2, 0x9785a0,1, 0x9785c0,11, 0x978600,9, 0x978640,3, 0x978650,3, 0x978664,3, 0x978680,22, 0x978800,11, 0x979000,552, 0x97a000,7, 0x97a048,8, 0x97a080,8, 0x97a100,7, 0x97a148,8, 0x97a180,8, 0x97a200,7, 0x97a248,8, 0x97a280,8, 0x97a300,7, 0x97a348,8, 0x97a380,8, 0x980000,4, 0x980014,1, 0x980020,3, 0x980030,3, 0x980040,13, 0x980078,4, 0x98009c,29, 0x980114,1, 0x980120,3, 0x980130,3, 0x980140,13, 0x980178,4, 0x98019c,29, 0x980214,1, 0x980220,3, 0x980230,3, 0x980240,13, 0x980278,4, 0x98029c,29, 0x980314,1, 0x980320,3, 0x980330,3, 0x980340,13, 0x980378,4, 0x98039c,29, 0x980420,2, 0x98042c,2, 0x980440,4, 0x980460,2, 0x98046c,2, 0x980480,4, 0x9804a0,2, 0x9804ac,2, 0x9804c0,4, 0x9804e0,2, 0x9804ec,2, 0x980500,2, 0x98050c,4, 0x980520,2, 0x98052c,4, 0x980540,2, 0x98054c,4, 0x980560,2, 0x98056c,4, 0x9805c0,1, 0x980600,16, 0x980800,18, 0x980880,13, 0x9808f0,3, 0x980900,18, 0x980980,13, 0x9809f0,3, 0x980a00,18, 0x980a80,13, 0x980af0,3, 0x980b00,18, 0x980b80,13, 0x980bf0,3, 0x980c00,6, 0x980c20,16, 0x980c80,6, 0x980ca0,16, 0x980d00,6, 0x980d20,16, 0x980d80,6, 0x980da0,16, 0x980e00,4, 0x980e20,4, 0x980e40,4, 0x980e60,4, 0x980e80,37, 0x980f20,5, 0x980f40,5, 0x980f60,5, 0x981000,12, 0x981200,1, 0x981208,6, 0x981228,9, 0x981280,1, 0x981288,6, 0x9812a8,9, 0x981300,1, 0x981308,6, 0x981328,9, 0x981380,1, 0x981388,6, 0x9813a8,9, 0x981400,4, 0x981480,4, 0x981500,4, 0x981580,4, 0x981600,71, 0x981720,7, 0x981740,7, 0x981760,7, 0x981780,4, 0x98179c,11, 0x9817d0,2, 0x9817e0,2, 0x9817f0,2, 0x981800,7, 0x981820,7, 0x981840,7, 0x981860,7, 0x9818c0,64, 0x981aa0,2, 0x981ac0,8, 0x982000,7, 0x982020,4, 0x982040,4, 0x982060,7, 0x982080,7, 0x9820a0,4, 0x9820c0,4, 0x9820e0,7, 0x982100,7, 0x982120,4, 0x982140,4, 0x982160,7, 0x982180,7, 0x9821a0,4, 0x9821c0,4, 0x9821e0,7, 0x982200,19, 0x982280,19, 0x982300,19, 0x982380,19, 0x982400,14, 0x98243c,9, 0x982464,6, 0x982480,7, 0x9824a0,2, 0x9824ac,2, 0x982500,14, 0x98253c,9, 0x982564,6, 0x982580,7, 0x9825a0,2, 0x9825ac,2, 0x982600,14, 0x98263c,9, 0x982664,6, 0x982680,7, 0x9826a0,2, 0x9826ac,2, 0x982700,14, 0x98273c,9, 0x982764,6, 0x982780,7, 0x9827a0,2, 0x9827ac,2, 0x982800,19, 0x982880,19, 0x982900,19, 0x982980,19, 0x982a10,2, 0x982a1c,1, 0x982a50,2, 0x982a5c,1, 0x982a90,2, 0x982a9c,1, 0x982ad0,2, 0x982adc,1, 0x982c00,7, 0x982c20,1, 0x982c54,18, 0x982ca0,1, 0x982cd4,18, 0x982d20,1, 0x982d54,18, 0x982da0,1, 0x982dd4,12, 0x982e08,6, 0x983100,7, 0x983120,7, 0x983140,7, 0x983160,7, 0x983180,3, 0x984000,4, 0x984014,1, 0x984020,3, 0x984030,3, 0x984040,13, 0x984078,4, 0x98409c,29, 0x984114,1, 0x984120,3, 0x984130,3, 0x984140,13, 0x984178,4, 0x98419c,29, 0x984214,1, 0x984220,3, 0x984230,3, 0x984240,13, 0x984278,4, 0x98429c,29, 0x984314,1, 0x984320,3, 0x984330,3, 0x984340,13, 0x984378,4, 0x98439c,29, 0x984420,2, 0x98442c,2, 0x984440,4, 0x984460,2, 0x98446c,2, 0x984480,4, 0x9844a0,2, 0x9844ac,2, 0x9844c0,4, 0x9844e0,2, 0x9844ec,2, 0x984500,2, 0x98450c,4, 0x984520,2, 0x98452c,4, 0x984540,2, 0x98454c,4, 0x984560,2, 0x98456c,4, 0x9845c0,1, 0x984600,16, 0x984800,18, 0x984880,13, 0x9848f0,3, 0x984900,18, 0x984980,13, 0x9849f0,3, 0x984a00,18, 0x984a80,13, 0x984af0,3, 0x984b00,18, 0x984b80,13, 0x984bf0,3, 0x984c00,6, 0x984c20,16, 0x984c80,6, 0x984ca0,16, 0x984d00,6, 0x984d20,16, 0x984d80,6, 0x984da0,16, 0x984e00,4, 0x984e20,4, 0x984e40,4, 0x984e60,4, 0x984e80,37, 0x984f20,5, 0x984f40,5, 0x984f60,5, 0x985000,12, 0x985200,1, 0x985208,6, 0x985228,9, 0x985280,1, 0x985288,6, 0x9852a8,9, 0x985300,1, 0x985308,6, 0x985328,9, 0x985380,1, 0x985388,6, 0x9853a8,9, 0x985400,4, 0x985480,4, 0x985500,4, 0x985580,4, 0x985600,71, 0x985720,7, 0x985740,7, 0x985760,7, 0x985780,4, 0x98579c,11, 0x9857d0,2, 0x9857e0,2, 0x9857f0,2, 0x985800,7, 0x985820,7, 0x985840,7, 0x985860,7, 0x9858c0,64, 0x985aa0,2, 0x985ac0,8, 0x986000,7, 0x986020,4, 0x986040,4, 0x986060,7, 0x986080,7, 0x9860a0,4, 0x9860c0,4, 0x9860e0,7, 0x986100,7, 0x986120,4, 0x986140,4, 0x986160,7, 0x986180,7, 0x9861a0,4, 0x9861c0,4, 0x9861e0,7, 0x986200,19, 0x986280,19, 0x986300,19, 0x986380,19, 0x986400,14, 0x98643c,9, 0x986464,6, 0x986480,7, 0x9864a0,2, 0x9864ac,2, 0x986500,14, 0x98653c,9, 0x986564,6, 0x986580,7, 0x9865a0,2, 0x9865ac,2, 0x986600,14, 0x98663c,9, 0x986664,6, 0x986680,7, 0x9866a0,2, 0x9866ac,2, 0x986700,14, 0x98673c,9, 0x986764,6, 0x986780,7, 0x9867a0,2, 0x9867ac,2, 0x986800,19, 0x986880,19, 0x986900,19, 0x986980,19, 0x986a10,2, 0x986a1c,1, 0x986a50,2, 0x986a5c,1, 0x986a90,2, 0x986a9c,1, 0x986ad0,2, 0x986adc,1, 0x986c00,7, 0x986c20,1, 0x986c54,18, 0x986ca0,1, 0x986cd4,18, 0x986d20,1, 0x986d54,18, 0x986da0,1, 0x986dd4,12, 0x986e08,6, 0x987100,7, 0x987120,7, 0x987140,7, 0x987160,7, 0x987180,3, 0x988000,19, 0x988c00,10, 0x988c80,3, 0x988cc0,1, 0x989000,13, 0x989080,21, 0x98c000,16, 0x98c080,11, 0x98c100,11, 0x98c204,1, 0x98c224,21, 0x98c280,16, 0x98c300,11, 0x98c340,11, 0x98d000,8, 0x98d024,10, 0x98d050,22, 0x98d100,8, 0x98d124,10, 0x98d150,22, 0x98d200,8, 0x98d224,10, 0x98d250,22, 0x98d300,8, 0x98d324,10, 0x98d350,22, 0x98d400,8, 0x98d424,10, 0x98d450,22, 0x98d500,8, 0x98d524,10, 0x98d550,22, 0x98d600,8, 0x98d624,10, 0x98d650,22, 0x98d700,8, 0x98d724,10, 0x98d750,22, 0x98d800,8, 0x98d824,10, 0x98d850,22, 0x98d904,1, 0x98d914,10, 0x98d948,11, 0x98d980,1, 0x98d9a0,6, 0x98d9c0,2, 0x98d9cc,2, 0x98e000,35, 0x98ec00,10, 0x98ec80,3, 0x98f000,1, 0x98f008,3, 0x98f038,1, 0x98f044,1, 0x98f050,2, 0x98f060,8, 0x98f100,13, 0x98f140,19, 0x98f190,4, 0x990000,13, 0x990040,2, 0x990054,4, 0x990080,27, 0x990100,12, 0x990140,14, 0x990180,28, 0x990200,6, 0x990240,6, 0x99025c,3, 0x990280,5, 0x9902a0,8, 0x990400,14, 0x990440,14, 0x990480,14, 0x9904c0,14, 0x990540,3, 0x990600,7, 0x990620,14, 0x990680,5, 0x9906a0,7, 0x990800,13, 0x990840,2, 0x990854,4, 0x990880,27, 0x990900,12, 0x990940,14, 0x990980,28, 0x990a00,6, 0x990a40,6, 0x990a5c,3, 0x990a80,5, 0x990aa0,8, 0x990c00,14, 0x990c40,14, 0x990c80,14, 0x990cc0,14, 0x990d40,3, 0x990e00,7, 0x990e20,14, 0x990e80,5, 0x990ea0,7, 0x991000,13, 0x991040,2, 0x991054,4, 0x991080,27, 0x991100,12, 0x991140,14, 0x991180,28, 0x991200,6, 0x991240,6, 0x99125c,3, 0x991280,5, 0x9912a0,8, 0x991400,14, 0x991440,14, 0x991480,14, 0x9914c0,14, 0x991540,3, 0x991600,7, 0x991620,14, 0x991680,5, 0x9916a0,7, 0x991800,13, 0x991840,2, 0x991854,4, 0x991880,27, 0x991900,12, 0x991940,14, 0x991980,28, 0x991a00,6, 0x991a40,6, 0x991a5c,3, 0x991a80,5, 0x991aa0,8, 0x991c00,14, 0x991c40,14, 0x991c80,14, 0x991cc0,14, 0x991d40,3, 0x991e00,7, 0x991e20,14, 0x991e80,5, 0x991ea0,7, 0x992000,8, 0x992040,8, 0x992080,1, 0x992098,6, 0x992100,10, 0x992140,3, 0x992150,2, 0x992180,2, 0x992200,6, 0x992220,18, 0x992280,4, 0x992300,8, 0x992400,2, 0x992480,2, 0x993000,40, 0x993100,64, 0x994000,13, 0x994040,2, 0x994054,4, 0x994080,27, 0x994100,12, 0x994140,14, 0x994180,28, 0x994200,6, 0x994240,6, 0x99425c,3, 0x994280,5, 0x9942a0,8, 0x994400,14, 0x994440,14, 0x994480,14, 0x9944c0,14, 0x994540,3, 0x994600,7, 0x994620,14, 0x994680,5, 0x9946a0,7, 0x994800,13, 0x994840,2, 0x994854,4, 0x994880,27, 0x994900,12, 0x994940,14, 0x994980,28, 0x994a00,6, 0x994a40,6, 0x994a5c,3, 0x994a80,5, 0x994aa0,8, 0x994c00,14, 0x994c40,14, 0x994c80,14, 0x994cc0,14, 0x994d40,3, 0x994e00,7, 0x994e20,14, 0x994e80,5, 0x994ea0,7, 0x995000,13, 0x995040,2, 0x995054,4, 0x995080,27, 0x995100,12, 0x995140,14, 0x995180,28, 0x995200,6, 0x995240,6, 0x99525c,3, 0x995280,5, 0x9952a0,8, 0x995400,14, 0x995440,14, 0x995480,14, 0x9954c0,14, 0x995540,3, 0x995600,7, 0x995620,14, 0x995680,5, 0x9956a0,7, 0x995800,13, 0x995840,2, 0x995854,4, 0x995880,27, 0x995900,12, 0x995940,14, 0x995980,28, 0x995a00,6, 0x995a40,6, 0x995a5c,3, 0x995a80,5, 0x995aa0,8, 0x995c00,14, 0x995c40,14, 0x995c80,14, 0x995cc0,14, 0x995d40,3, 0x995e00,7, 0x995e20,14, 0x995e80,5, 0x995ea0,7, 0x996000,8, 0x996040,8, 0x996080,1, 0x996098,6, 0x996100,10, 0x996140,3, 0x996150,2, 0x996180,2, 0x996200,6, 0x996220,18, 0x996280,4, 0x996300,8, 0x996400,2, 0x996480,2, 0x997000,40, 0x997100,64, 0x9a0000,5, 0x9a0018,5, 0x9a0030,3, 0x9a0044,3, 0x9a0100,58, 0x9a01f0,3, 0x9a0280,3, 0x9a0400,5, 0x9a0418,5, 0x9a0430,3, 0x9a0444,3, 0x9a0500,58, 0x9a05f0,3, 0x9a0680,3, 0x9a0800,5, 0x9a0818,5, 0x9a0830,3, 0x9a0844,3, 0x9a0900,58, 0x9a09f0,3, 0x9a0a80,3, 0x9a0c00,5, 0x9a0c18,5, 0x9a0c30,3, 0x9a0c44,3, 0x9a0d00,58, 0x9a0df0,3, 0x9a0e80,3, 0x9a1018,1, 0x9a1100,2, 0x9a1110,10, 0x9a1140,2, 0x9a1150,10, 0x9a1180,2, 0x9a1190,10, 0x9a11c0,2, 0x9a11d0,10, 0x9a1208,1, 0x9a1220,16, 0x9a1280,1, 0x9a1288,2, 0x9a1400,8, 0x9a4000,2, 0x9a400c,1, 0x9a4030,3, 0x9a4040,2, 0x9a404c,1, 0x9a4070,3, 0x9a4080,2, 0x9a408c,1, 0x9a40b0,3, 0x9a40c0,2, 0x9a40cc,1, 0x9a40f0,3, 0x9a4200,15, 0x9a4280,15, 0x9a4300,15, 0x9a4380,15, 0x9a4400,15, 0x9a4480,15, 0x9a4500,15, 0x9a4580,15, 0x9a4604,10, 0x9a4700,2, 0x9a470c,7, 0x9a4740,1, 0x9a4770,1, 0x9a47c0,2, 0x9a47d0,4, 0x9a4800,3, 0x9a4810,1, 0x9a481c,3, 0x9a4b04,1, 0x9a4b0c,5, 0x9a4b44,1, 0x9a4b50,5, 0x9a4b70,6, 0x9a4b90,2, 0x9a4c00,129, 0x9a5000,39, 0x9a5100,39, 0x9a5200,39, 0x9a5300,39, 0x9a5400,39, 0x9a5500,39, 0x9a5600,39, 0x9a5700,39, 0x9a5f00,19, 0x9a6000,131, 0x9a6400,4, 0x9a6440,15, 0x9a6480,4, 0x9a64c0,15, 0x9a6500,4, 0x9a6540,15, 0x9a6580,4, 0x9a65c0,15, 0x9a6600,4, 0x9a6640,10, 0x9a6680,4, 0x9a66c0,10, 0x9a6700,4, 0x9a6740,10, 0x9a6780,4, 0x9a67c0,10, 0x9a6800,4, 0x9a6840,14, 0x9a6880,17, 0x9a6900,2, 0x9a6a00,13, 0x9a6a80,1, 0x9a6a88,8, 0x9a6ac0,6, 0x9a6ae0,1, 0x9a6ae8,2, 0x9a6b04,13, 0x9a6fcc,32, 0x9a8000,5, 0x9a8018,5, 0x9a8030,3, 0x9a8044,3, 0x9a8100,58, 0x9a81f0,3, 0x9a8280,3, 0x9a8400,5, 0x9a8418,5, 0x9a8430,3, 0x9a8444,3, 0x9a8500,58, 0x9a85f0,3, 0x9a8680,3, 0x9a8800,5, 0x9a8818,5, 0x9a8830,3, 0x9a8844,3, 0x9a8900,58, 0x9a89f0,3, 0x9a8a80,3, 0x9a8c00,5, 0x9a8c18,5, 0x9a8c30,3, 0x9a8c44,3, 0x9a8d00,58, 0x9a8df0,3, 0x9a8e80,3, 0x9a9018,1, 0x9a9100,2, 0x9a9110,10, 0x9a9140,2, 0x9a9150,10, 0x9a9180,2, 0x9a9190,10, 0x9a91c0,2, 0x9a91d0,10, 0x9a9208,1, 0x9a9220,16, 0x9a9280,1, 0x9a9288,2, 0x9a9400,8, 0x9ac000,2, 0x9ac00c,1, 0x9ac030,3, 0x9ac040,2, 0x9ac04c,1, 0x9ac070,3, 0x9ac080,2, 0x9ac08c,1, 0x9ac0b0,3, 0x9ac0c0,2, 0x9ac0cc,1, 0x9ac0f0,3, 0x9ac200,15, 0x9ac280,15, 0x9ac300,15, 0x9ac380,15, 0x9ac400,15, 0x9ac480,15, 0x9ac500,15, 0x9ac580,15, 0x9ac604,10, 0x9ac700,2, 0x9ac70c,7, 0x9ac740,1, 0x9ac770,1, 0x9ac7c0,2, 0x9ac7d0,4, 0x9ac800,3, 0x9ac810,1, 0x9ac81c,3, 0x9acb04,1, 0x9acb0c,5, 0x9acb44,1, 0x9acb50,5, 0x9acb70,6, 0x9acb90,2, 0x9acc00,129, 0x9ad000,39, 0x9ad100,39, 0x9ad200,39, 0x9ad300,39, 0x9ad400,39, 0x9ad500,39, 0x9ad600,39, 0x9ad700,39, 0x9adf00,19, 0x9ae000,131, 0x9ae400,4, 0x9ae440,15, 0x9ae480,4, 0x9ae4c0,15, 0x9ae500,4, 0x9ae540,15, 0x9ae580,4, 0x9ae5c0,15, 0x9ae600,4, 0x9ae640,10, 0x9ae680,4, 0x9ae6c0,10, 0x9ae700,4, 0x9ae740,10, 0x9ae780,4, 0x9ae7c0,10, 0x9ae800,4, 0x9ae840,14, 0x9ae880,17, 0x9ae900,2, 0x9aea00,13, 0x9aea80,1, 0x9aea88,8, 0x9aeac0,6, 0x9aeae0,1, 0x9aeae8,2, 0x9aeb04,13, 0x9aefcc,32, 0x9b0000,35, 0x9b0c00,10, 0x9b0c80,3, 0x9b1000,2, 0x9b100c,4, 0x9b1028,3, 0x9b1038,4, 0x9b1050,2, 0x9b1060,2, 0x9b1070,2, 0x9b1080,4, 0x9b1098,7, 0x9b1120,8, 0x9b1200,4, 0x9b1214,7, 0x9b1234,7, 0x9b1254,7, 0x9b1274,24, 0x9b1300,2, 0x9b130c,3, 0x9b1400,32, 0x9b1484,2, 0x9b1490,3, 0x9b1500,25, 0x9b15c0,8, 0x9b15e8,5, 0x9b1600,5, 0x9b1618,18, 0x9b1690,4, 0x9b1740,2, 0x9b1760,6, 0x9b1780,6, 0x9b17a0,6, 0x9b17c0,6, 0x9b17e0,1, 0x9b1800,19, 0x9b1880,2, 0x9b18b0,2, 0x9b18c0,2, 0x9b4000,35, 0x9b4c00,10, 0x9b4c80,3, 0x9b5000,2, 0x9b500c,4, 0x9b5028,3, 0x9b5038,4, 0x9b5050,2, 0x9b5060,2, 0x9b5070,2, 0x9b5080,4, 0x9b5098,7, 0x9b5120,8, 0x9b5200,4, 0x9b5214,7, 0x9b5234,7, 0x9b5254,7, 0x9b5274,24, 0x9b5300,2, 0x9b530c,3, 0x9b5400,32, 0x9b5484,2, 0x9b5490,3, 0x9b5500,25, 0x9b55c0,8, 0x9b55e8,5, 0x9b5600,5, 0x9b5618,18, 0x9b5690,4, 0x9b5740,2, 0x9b5760,6, 0x9b5780,6, 0x9b57a0,6, 0x9b57c0,6, 0x9b57e0,1, 0x9b5800,19, 0x9b5880,2, 0x9b58b0,2, 0x9b58c0,2, 0x9c0000,11, 0x9c0040,16, 0x9c0084,5, 0x9c0200,7, 0x9c0220,6, 0x9c0240,7, 0x9c0260,6, 0x9c0280,6, 0x9c02a0,2, 0x9c02ac,2, 0x9c02c0,7, 0x9c02e0,7, 0x9c0300,2, 0x9c030c,2, 0x9c0320,6, 0x9c0400,2, 0x9c1000,19, 0x9c1c00,10, 0x9c1c80,3, 0x9c2200,4, 0x9c2220,4, 0x9c2240,11, 0x9c2270,32, 0x9c2300,24, 0x9c2380,20, 0x9c2400,61, 0x9c2500,25, 0x9c2568,4, 0x9c2580,2, 0x9c25a0,1, 0x9c25c0,11, 0x9c2600,9, 0x9c2640,3, 0x9c2650,3, 0x9c2664,3, 0x9c2680,22, 0x9c2800,11, 0x9c3000,552, 0x9c4200,4, 0x9c4220,4, 0x9c4240,11, 0x9c4270,32, 0x9c4300,24, 0x9c4380,20, 0x9c4400,61, 0x9c4500,25, 0x9c4568,4, 0x9c4580,2, 0x9c45a0,1, 0x9c45c0,11, 0x9c4600,9, 0x9c4640,3, 0x9c4650,3, 0x9c4664,3, 0x9c4680,22, 0x9c4800,11, 0x9c5000,552, 0x9c6200,4, 0x9c6220,4, 0x9c6240,11, 0x9c6270,32, 0x9c6300,24, 0x9c6380,20, 0x9c6400,61, 0x9c6500,25, 0x9c6568,4, 0x9c6580,2, 0x9c65a0,1, 0x9c65c0,11, 0x9c6600,9, 0x9c6640,3, 0x9c6650,3, 0x9c6664,3, 0x9c6680,22, 0x9c6800,11, 0x9c7000,552, 0x9c8200,4, 0x9c8220,4, 0x9c8240,11, 0x9c8270,32, 0x9c8300,24, 0x9c8380,20, 0x9c8400,61, 0x9c8500,25, 0x9c8568,4, 0x9c8580,2, 0x9c85a0,1, 0x9c85c0,11, 0x9c8600,9, 0x9c8640,3, 0x9c8650,3, 0x9c8664,3, 0x9c8680,22, 0x9c8800,11, 0x9c9000,552, 0x9ca000,7, 0x9ca048,8, 0x9ca080,8, 0x9ca100,7, 0x9ca148,8, 0x9ca180,8, 0x9ca200,7, 0x9ca248,8, 0x9ca280,8, 0x9ca300,7, 0x9ca348,8, 0x9ca380,8, 0x9d0000,11, 0x9d0040,16, 0x9d0084,5, 0x9d0200,7, 0x9d0220,6, 0x9d0240,7, 0x9d0260,6, 0x9d0280,6, 0x9d02a0,2, 0x9d02ac,2, 0x9d02c0,7, 0x9d02e0,7, 0x9d0300,2, 0x9d030c,2, 0x9d0320,6, 0x9d0400,2, 0x9d1000,19, 0x9d1c00,10, 0x9d1c80,3, 0x9d2200,4, 0x9d2220,4, 0x9d2240,11, 0x9d2270,32, 0x9d2300,24, 0x9d2380,20, 0x9d2400,61, 0x9d2500,25, 0x9d2568,4, 0x9d2580,2, 0x9d25a0,1, 0x9d25c0,11, 0x9d2600,9, 0x9d2640,3, 0x9d2650,3, 0x9d2664,3, 0x9d2680,22, 0x9d2800,11, 0x9d3000,552, 0x9d4200,4, 0x9d4220,4, 0x9d4240,11, 0x9d4270,32, 0x9d4300,24, 0x9d4380,20, 0x9d4400,61, 0x9d4500,25, 0x9d4568,4, 0x9d4580,2, 0x9d45a0,1, 0x9d45c0,11, 0x9d4600,9, 0x9d4640,3, 0x9d4650,3, 0x9d4664,3, 0x9d4680,22, 0x9d4800,11, 0x9d5000,552, 0x9d6200,4, 0x9d6220,4, 0x9d6240,11, 0x9d6270,32, 0x9d6300,24, 0x9d6380,20, 0x9d6400,61, 0x9d6500,25, 0x9d6568,4, 0x9d6580,2, 0x9d65a0,1, 0x9d65c0,11, 0x9d6600,9, 0x9d6640,3, 0x9d6650,3, 0x9d6664,3, 0x9d6680,22, 0x9d6800,11, 0x9d7000,552, 0x9d8200,4, 0x9d8220,4, 0x9d8240,11, 0x9d8270,32, 0x9d8300,24, 0x9d8380,20, 0x9d8400,61, 0x9d8500,25, 0x9d8568,4, 0x9d8580,2, 0x9d85a0,1, 0x9d85c0,11, 0x9d8600,9, 0x9d8640,3, 0x9d8650,3, 0x9d8664,3, 0x9d8680,22, 0x9d8800,11, 0x9d9000,552, 0x9da000,7, 0x9da048,8, 0x9da080,8, 0x9da100,7, 0x9da148,8, 0x9da180,8, 0x9da200,7, 0x9da248,8, 0x9da280,8, 0x9da300,7, 0x9da348,8, 0x9da380,8, 0x9e0000,4, 0x9e0014,1, 0x9e0020,3, 0x9e0030,3, 0x9e0040,13, 0x9e0078,4, 0x9e009c,29, 0x9e0114,1, 0x9e0120,3, 0x9e0130,3, 0x9e0140,13, 0x9e0178,4, 0x9e019c,29, 0x9e0214,1, 0x9e0220,3, 0x9e0230,3, 0x9e0240,13, 0x9e0278,4, 0x9e029c,29, 0x9e0314,1, 0x9e0320,3, 0x9e0330,3, 0x9e0340,13, 0x9e0378,4, 0x9e039c,29, 0x9e0420,2, 0x9e042c,2, 0x9e0440,4, 0x9e0460,2, 0x9e046c,2, 0x9e0480,4, 0x9e04a0,2, 0x9e04ac,2, 0x9e04c0,4, 0x9e04e0,2, 0x9e04ec,2, 0x9e0500,2, 0x9e050c,4, 0x9e0520,2, 0x9e052c,4, 0x9e0540,2, 0x9e054c,4, 0x9e0560,2, 0x9e056c,4, 0x9e05c0,1, 0x9e0600,16, 0x9e0800,18, 0x9e0880,13, 0x9e08f0,3, 0x9e0900,18, 0x9e0980,13, 0x9e09f0,3, 0x9e0a00,18, 0x9e0a80,13, 0x9e0af0,3, 0x9e0b00,18, 0x9e0b80,13, 0x9e0bf0,3, 0x9e0c00,6, 0x9e0c20,16, 0x9e0c80,6, 0x9e0ca0,16, 0x9e0d00,6, 0x9e0d20,16, 0x9e0d80,6, 0x9e0da0,16, 0x9e0e00,4, 0x9e0e20,4, 0x9e0e40,4, 0x9e0e60,4, 0x9e0e80,37, 0x9e0f20,5, 0x9e0f40,5, 0x9e0f60,5, 0x9e1000,12, 0x9e1200,1, 0x9e1208,6, 0x9e1228,9, 0x9e1280,1, 0x9e1288,6, 0x9e12a8,9, 0x9e1300,1, 0x9e1308,6, 0x9e1328,9, 0x9e1380,1, 0x9e1388,6, 0x9e13a8,9, 0x9e1400,4, 0x9e1480,4, 0x9e1500,4, 0x9e1580,4, 0x9e1600,71, 0x9e1720,7, 0x9e1740,7, 0x9e1760,7, 0x9e1780,4, 0x9e179c,11, 0x9e17d0,2, 0x9e17e0,2, 0x9e17f0,2, 0x9e1800,7, 0x9e1820,7, 0x9e1840,7, 0x9e1860,7, 0x9e18c0,64, 0x9e1aa0,2, 0x9e1ac0,8, 0x9e2000,7, 0x9e2020,4, 0x9e2040,4, 0x9e2060,7, 0x9e2080,7, 0x9e20a0,4, 0x9e20c0,4, 0x9e20e0,7, 0x9e2100,7, 0x9e2120,4, 0x9e2140,4, 0x9e2160,7, 0x9e2180,7, 0x9e21a0,4, 0x9e21c0,4, 0x9e21e0,7, 0x9e2200,19, 0x9e2280,19, 0x9e2300,19, 0x9e2380,19, 0x9e2400,14, 0x9e243c,9, 0x9e2464,6, 0x9e2480,7, 0x9e24a0,2, 0x9e24ac,2, 0x9e2500,14, 0x9e253c,9, 0x9e2564,6, 0x9e2580,7, 0x9e25a0,2, 0x9e25ac,2, 0x9e2600,14, 0x9e263c,9, 0x9e2664,6, 0x9e2680,7, 0x9e26a0,2, 0x9e26ac,2, 0x9e2700,14, 0x9e273c,9, 0x9e2764,6, 0x9e2780,7, 0x9e27a0,2, 0x9e27ac,2, 0x9e2800,19, 0x9e2880,19, 0x9e2900,19, 0x9e2980,19, 0x9e2a10,2, 0x9e2a1c,1, 0x9e2a50,2, 0x9e2a5c,1, 0x9e2a90,2, 0x9e2a9c,1, 0x9e2ad0,2, 0x9e2adc,1, 0x9e2c00,7, 0x9e2c20,1, 0x9e2c54,18, 0x9e2ca0,1, 0x9e2cd4,18, 0x9e2d20,1, 0x9e2d54,18, 0x9e2da0,1, 0x9e2dd4,12, 0x9e2e08,6, 0x9e3100,7, 0x9e3120,7, 0x9e3140,7, 0x9e3160,7, 0x9e3180,3, 0x9e4000,4, 0x9e4014,1, 0x9e4020,3, 0x9e4030,3, 0x9e4040,13, 0x9e4078,4, 0x9e409c,29, 0x9e4114,1, 0x9e4120,3, 0x9e4130,3, 0x9e4140,13, 0x9e4178,4, 0x9e419c,29, 0x9e4214,1, 0x9e4220,3, 0x9e4230,3, 0x9e4240,13, 0x9e4278,4, 0x9e429c,29, 0x9e4314,1, 0x9e4320,3, 0x9e4330,3, 0x9e4340,13, 0x9e4378,4, 0x9e439c,29, 0x9e4420,2, 0x9e442c,2, 0x9e4440,4, 0x9e4460,2, 0x9e446c,2, 0x9e4480,4, 0x9e44a0,2, 0x9e44ac,2, 0x9e44c0,4, 0x9e44e0,2, 0x9e44ec,2, 0x9e4500,2, 0x9e450c,4, 0x9e4520,2, 0x9e452c,4, 0x9e4540,2, 0x9e454c,4, 0x9e4560,2, 0x9e456c,4, 0x9e45c0,1, 0x9e4600,16, 0x9e4800,18, 0x9e4880,13, 0x9e48f0,3, 0x9e4900,18, 0x9e4980,13, 0x9e49f0,3, 0x9e4a00,18, 0x9e4a80,13, 0x9e4af0,3, 0x9e4b00,18, 0x9e4b80,13, 0x9e4bf0,3, 0x9e4c00,6, 0x9e4c20,16, 0x9e4c80,6, 0x9e4ca0,16, 0x9e4d00,6, 0x9e4d20,16, 0x9e4d80,6, 0x9e4da0,16, 0x9e4e00,4, 0x9e4e20,4, 0x9e4e40,4, 0x9e4e60,4, 0x9e4e80,37, 0x9e4f20,5, 0x9e4f40,5, 0x9e4f60,5, 0x9e5000,12, 0x9e5200,1, 0x9e5208,6, 0x9e5228,9, 0x9e5280,1, 0x9e5288,6, 0x9e52a8,9, 0x9e5300,1, 0x9e5308,6, 0x9e5328,9, 0x9e5380,1, 0x9e5388,6, 0x9e53a8,9, 0x9e5400,4, 0x9e5480,4, 0x9e5500,4, 0x9e5580,4, 0x9e5600,71, 0x9e5720,7, 0x9e5740,7, 0x9e5760,7, 0x9e5780,4, 0x9e579c,11, 0x9e57d0,2, 0x9e57e0,2, 0x9e57f0,2, 0x9e5800,7, 0x9e5820,7, 0x9e5840,7, 0x9e5860,7, 0x9e58c0,64, 0x9e5aa0,2, 0x9e5ac0,8, 0x9e6000,7, 0x9e6020,4, 0x9e6040,4, 0x9e6060,7, 0x9e6080,7, 0x9e60a0,4, 0x9e60c0,4, 0x9e60e0,7, 0x9e6100,7, 0x9e6120,4, 0x9e6140,4, 0x9e6160,7, 0x9e6180,7, 0x9e61a0,4, 0x9e61c0,4, 0x9e61e0,7, 0x9e6200,19, 0x9e6280,19, 0x9e6300,19, 0x9e6380,19, 0x9e6400,14, 0x9e643c,9, 0x9e6464,6, 0x9e6480,7, 0x9e64a0,2, 0x9e64ac,2, 0x9e6500,14, 0x9e653c,9, 0x9e6564,6, 0x9e6580,7, 0x9e65a0,2, 0x9e65ac,2, 0x9e6600,14, 0x9e663c,9, 0x9e6664,6, 0x9e6680,7, 0x9e66a0,2, 0x9e66ac,2, 0x9e6700,14, 0x9e673c,9, 0x9e6764,6, 0x9e6780,7, 0x9e67a0,2, 0x9e67ac,2, 0x9e6800,19, 0x9e6880,19, 0x9e6900,19, 0x9e6980,19, 0x9e6a10,2, 0x9e6a1c,1, 0x9e6a50,2, 0x9e6a5c,1, 0x9e6a90,2, 0x9e6a9c,1, 0x9e6ad0,2, 0x9e6adc,1, 0x9e6c00,7, 0x9e6c20,1, 0x9e6c54,18, 0x9e6ca0,1, 0x9e6cd4,18, 0x9e6d20,1, 0x9e6d54,18, 0x9e6da0,1, 0x9e6dd4,12, 0x9e6e08,6, 0x9e7100,7, 0x9e7120,7, 0x9e7140,7, 0x9e7160,7, 0x9e7180,3, 0x9e8000,19, 0x9e8c00,10, 0x9e8c80,3, 0x9e8cc0,1, 0x9e9000,13, 0x9e9080,21, 0x9ec000,16, 0x9ec080,11, 0x9ec100,11, 0x9ec204,1, 0x9ec224,21, 0x9ec280,16, 0x9ec300,11, 0x9ec340,11, 0x9ed000,8, 0x9ed024,10, 0x9ed050,22, 0x9ed100,8, 0x9ed124,10, 0x9ed150,22, 0x9ed200,8, 0x9ed224,10, 0x9ed250,22, 0x9ed300,8, 0x9ed324,10, 0x9ed350,22, 0x9ed400,8, 0x9ed424,10, 0x9ed450,22, 0x9ed500,8, 0x9ed524,10, 0x9ed550,22, 0x9ed600,8, 0x9ed624,10, 0x9ed650,22, 0x9ed700,8, 0x9ed724,10, 0x9ed750,22, 0x9ed800,8, 0x9ed824,10, 0x9ed850,22, 0x9ed904,1, 0x9ed914,10, 0x9ed948,11, 0x9ed980,1, 0x9ed9a0,6, 0x9ed9c0,2, 0x9ed9cc,2, 0x9ee000,35, 0x9eec00,10, 0x9eec80,3, 0x9ef000,1, 0x9ef008,3, 0x9ef038,1, 0x9ef044,1, 0x9ef050,2, 0x9ef060,8, 0x9ef100,13, 0x9ef140,19, 0x9ef190,4, 0x9f0000,13, 0x9f0040,2, 0x9f0054,4, 0x9f0080,27, 0x9f0100,12, 0x9f0140,14, 0x9f0180,28, 0x9f0200,6, 0x9f0240,6, 0x9f025c,3, 0x9f0280,5, 0x9f02a0,8, 0x9f0400,14, 0x9f0440,14, 0x9f0480,14, 0x9f04c0,14, 0x9f0540,3, 0x9f0600,7, 0x9f0620,14, 0x9f0680,5, 0x9f06a0,7, 0x9f0800,13, 0x9f0840,2, 0x9f0854,4, 0x9f0880,27, 0x9f0900,12, 0x9f0940,14, 0x9f0980,28, 0x9f0a00,6, 0x9f0a40,6, 0x9f0a5c,3, 0x9f0a80,5, 0x9f0aa0,8, 0x9f0c00,14, 0x9f0c40,14, 0x9f0c80,14, 0x9f0cc0,14, 0x9f0d40,3, 0x9f0e00,7, 0x9f0e20,14, 0x9f0e80,5, 0x9f0ea0,7, 0x9f1000,13, 0x9f1040,2, 0x9f1054,4, 0x9f1080,27, 0x9f1100,12, 0x9f1140,14, 0x9f1180,28, 0x9f1200,6, 0x9f1240,6, 0x9f125c,3, 0x9f1280,5, 0x9f12a0,8, 0x9f1400,14, 0x9f1440,14, 0x9f1480,14, 0x9f14c0,14, 0x9f1540,3, 0x9f1600,7, 0x9f1620,14, 0x9f1680,5, 0x9f16a0,7, 0x9f1800,13, 0x9f1840,2, 0x9f1854,4, 0x9f1880,27, 0x9f1900,12, 0x9f1940,14, 0x9f1980,28, 0x9f1a00,6, 0x9f1a40,6, 0x9f1a5c,3, 0x9f1a80,5, 0x9f1aa0,8, 0x9f1c00,14, 0x9f1c40,14, 0x9f1c80,14, 0x9f1cc0,14, 0x9f1d40,3, 0x9f1e00,7, 0x9f1e20,14, 0x9f1e80,5, 0x9f1ea0,7, 0x9f2000,8, 0x9f2040,8, 0x9f2080,1, 0x9f2098,6, 0x9f2100,10, 0x9f2140,3, 0x9f2150,2, 0x9f2180,2, 0x9f2200,6, 0x9f2220,18, 0x9f2280,4, 0x9f2300,8, 0x9f2400,2, 0x9f2480,2, 0x9f3000,40, 0x9f3100,64, 0x9f4000,13, 0x9f4040,2, 0x9f4054,4, 0x9f4080,27, 0x9f4100,12, 0x9f4140,14, 0x9f4180,28, 0x9f4200,6, 0x9f4240,6, 0x9f425c,3, 0x9f4280,5, 0x9f42a0,8, 0x9f4400,14, 0x9f4440,14, 0x9f4480,14, 0x9f44c0,14, 0x9f4540,3, 0x9f4600,7, 0x9f4620,14, 0x9f4680,5, 0x9f46a0,7, 0x9f4800,13, 0x9f4840,2, 0x9f4854,4, 0x9f4880,27, 0x9f4900,12, 0x9f4940,14, 0x9f4980,28, 0x9f4a00,6, 0x9f4a40,6, 0x9f4a5c,3, 0x9f4a80,5, 0x9f4aa0,8, 0x9f4c00,14, 0x9f4c40,14, 0x9f4c80,14, 0x9f4cc0,14, 0x9f4d40,3, 0x9f4e00,7, 0x9f4e20,14, 0x9f4e80,5, 0x9f4ea0,7, 0x9f5000,13, 0x9f5040,2, 0x9f5054,4, 0x9f5080,27, 0x9f5100,12, 0x9f5140,14, 0x9f5180,28, 0x9f5200,6, 0x9f5240,6, 0x9f525c,3, 0x9f5280,5, 0x9f52a0,8, 0x9f5400,14, 0x9f5440,14, 0x9f5480,14, 0x9f54c0,14, 0x9f5540,3, 0x9f5600,7, 0x9f5620,14, 0x9f5680,5, 0x9f56a0,7, 0x9f5800,13, 0x9f5840,2, 0x9f5854,4, 0x9f5880,27, 0x9f5900,12, 0x9f5940,14, 0x9f5980,28, 0x9f5a00,6, 0x9f5a40,6, 0x9f5a5c,3, 0x9f5a80,5, 0x9f5aa0,8, 0x9f5c00,14, 0x9f5c40,14, 0x9f5c80,14, 0x9f5cc0,14, 0x9f5d40,3, 0x9f5e00,7, 0x9f5e20,14, 0x9f5e80,5, 0x9f5ea0,7, 0x9f6000,8, 0x9f6040,8, 0x9f6080,1, 0x9f6098,6, 0x9f6100,10, 0x9f6140,3, 0x9f6150,2, 0x9f6180,2, 0x9f6200,6, 0x9f6220,18, 0x9f6280,4, 0x9f6300,8, 0x9f6400,2, 0x9f6480,2, 0x9f7000,40, 0x9f7100,64, 0xa00000,5, 0xa00018,5, 0xa00030,3, 0xa00044,3, 0xa00100,58, 0xa001f0,3, 0xa00280,3, 0xa00400,5, 0xa00418,5, 0xa00430,3, 0xa00444,3, 0xa00500,58, 0xa005f0,3, 0xa00680,3, 0xa00800,5, 0xa00818,5, 0xa00830,3, 0xa00844,3, 0xa00900,58, 0xa009f0,3, 0xa00a80,3, 0xa00c00,5, 0xa00c18,5, 0xa00c30,3, 0xa00c44,3, 0xa00d00,58, 0xa00df0,3, 0xa00e80,3, 0xa01018,1, 0xa01100,2, 0xa01110,10, 0xa01140,2, 0xa01150,10, 0xa01180,2, 0xa01190,10, 0xa011c0,2, 0xa011d0,10, 0xa01208,1, 0xa01220,16, 0xa01280,1, 0xa01288,2, 0xa01400,8, 0xa04000,2, 0xa0400c,1, 0xa04030,3, 0xa04040,2, 0xa0404c,1, 0xa04070,3, 0xa04080,2, 0xa0408c,1, 0xa040b0,3, 0xa040c0,2, 0xa040cc,1, 0xa040f0,3, 0xa04200,15, 0xa04280,15, 0xa04300,15, 0xa04380,15, 0xa04400,15, 0xa04480,15, 0xa04500,15, 0xa04580,15, 0xa04604,10, 0xa04700,2, 0xa0470c,7, 0xa04740,1, 0xa04770,1, 0xa047c0,2, 0xa047d0,4, 0xa04800,3, 0xa04810,1, 0xa0481c,3, 0xa04b04,1, 0xa04b0c,5, 0xa04b44,1, 0xa04b50,5, 0xa04b70,6, 0xa04b90,2, 0xa04c00,129, 0xa05000,39, 0xa05100,39, 0xa05200,39, 0xa05300,39, 0xa05400,39, 0xa05500,39, 0xa05600,39, 0xa05700,39, 0xa05f00,19, 0xa06000,131, 0xa06400,4, 0xa06440,15, 0xa06480,4, 0xa064c0,15, 0xa06500,4, 0xa06540,15, 0xa06580,4, 0xa065c0,15, 0xa06600,4, 0xa06640,10, 0xa06680,4, 0xa066c0,10, 0xa06700,4, 0xa06740,10, 0xa06780,4, 0xa067c0,10, 0xa06800,4, 0xa06840,14, 0xa06880,17, 0xa06900,2, 0xa06a00,13, 0xa06a80,1, 0xa06a88,8, 0xa06ac0,6, 0xa06ae0,1, 0xa06ae8,2, 0xa06b04,13, 0xa06fcc,32, 0xa08000,5, 0xa08018,5, 0xa08030,3, 0xa08044,3, 0xa08100,58, 0xa081f0,3, 0xa08280,3, 0xa08400,5, 0xa08418,5, 0xa08430,3, 0xa08444,3, 0xa08500,58, 0xa085f0,3, 0xa08680,3, 0xa08800,5, 0xa08818,5, 0xa08830,3, 0xa08844,3, 0xa08900,58, 0xa089f0,3, 0xa08a80,3, 0xa08c00,5, 0xa08c18,5, 0xa08c30,3, 0xa08c44,3, 0xa08d00,58, 0xa08df0,3, 0xa08e80,3, 0xa09018,1, 0xa09100,2, 0xa09110,10, 0xa09140,2, 0xa09150,10, 0xa09180,2, 0xa09190,10, 0xa091c0,2, 0xa091d0,10, 0xa09208,1, 0xa09220,16, 0xa09280,1, 0xa09288,2, 0xa09400,8, 0xa0c000,2, 0xa0c00c,1, 0xa0c030,3, 0xa0c040,2, 0xa0c04c,1, 0xa0c070,3, 0xa0c080,2, 0xa0c08c,1, 0xa0c0b0,3, 0xa0c0c0,2, 0xa0c0cc,1, 0xa0c0f0,3, 0xa0c200,15, 0xa0c280,15, 0xa0c300,15, 0xa0c380,15, 0xa0c400,15, 0xa0c480,15, 0xa0c500,15, 0xa0c580,15, 0xa0c604,10, 0xa0c700,2, 0xa0c70c,7, 0xa0c740,1, 0xa0c770,1, 0xa0c7c0,2, 0xa0c7d0,4, 0xa0c800,3, 0xa0c810,1, 0xa0c81c,3, 0xa0cb04,1, 0xa0cb0c,5, 0xa0cb44,1, 0xa0cb50,5, 0xa0cb70,6, 0xa0cb90,2, 0xa0cc00,129, 0xa0d000,39, 0xa0d100,39, 0xa0d200,39, 0xa0d300,39, 0xa0d400,39, 0xa0d500,39, 0xa0d600,39, 0xa0d700,39, 0xa0df00,19, 0xa0e000,131, 0xa0e400,4, 0xa0e440,15, 0xa0e480,4, 0xa0e4c0,15, 0xa0e500,4, 0xa0e540,15, 0xa0e580,4, 0xa0e5c0,15, 0xa0e600,4, 0xa0e640,10, 0xa0e680,4, 0xa0e6c0,10, 0xa0e700,4, 0xa0e740,10, 0xa0e780,4, 0xa0e7c0,10, 0xa0e800,4, 0xa0e840,14, 0xa0e880,17, 0xa0e900,2, 0xa0ea00,13, 0xa0ea80,1, 0xa0ea88,8, 0xa0eac0,6, 0xa0eae0,1, 0xa0eae8,2, 0xa0eb04,13, 0xa0efcc,32, 0xa10000,35, 0xa10c00,10, 0xa10c80,3, 0xa11000,2, 0xa1100c,4, 0xa11028,3, 0xa11038,4, 0xa11050,2, 0xa11060,2, 0xa11070,2, 0xa11080,4, 0xa11098,7, 0xa11120,8, 0xa11200,4, 0xa11214,7, 0xa11234,7, 0xa11254,7, 0xa11274,24, 0xa11300,2, 0xa1130c,3, 0xa11400,32, 0xa11484,2, 0xa11490,3, 0xa11500,25, 0xa115c0,8, 0xa115e8,5, 0xa11600,5, 0xa11618,18, 0xa11690,4, 0xa11740,2, 0xa11760,6, 0xa11780,6, 0xa117a0,6, 0xa117c0,6, 0xa117e0,1, 0xa11800,19, 0xa11880,2, 0xa118b0,2, 0xa118c0,2, 0xa14000,35, 0xa14c00,10, 0xa14c80,3, 0xa15000,2, 0xa1500c,4, 0xa15028,3, 0xa15038,4, 0xa15050,2, 0xa15060,2, 0xa15070,2, 0xa15080,4, 0xa15098,7, 0xa15120,8, 0xa15200,4, 0xa15214,7, 0xa15234,7, 0xa15254,7, 0xa15274,24, 0xa15300,2, 0xa1530c,3, 0xa15400,32, 0xa15484,2, 0xa15490,3, 0xa15500,25, 0xa155c0,8, 0xa155e8,5, 0xa15600,5, 0xa15618,18, 0xa15690,4, 0xa15740,2, 0xa15760,6, 0xa15780,6, 0xa157a0,6, 0xa157c0,6, 0xa157e0,1, 0xa15800,19, 0xa15880,2, 0xa158b0,2, 0xa158c0,2, 0xa20000,11, 0xa20040,16, 0xa20084,5, 0xa20200,7, 0xa20220,6, 0xa20240,7, 0xa20260,6, 0xa20280,6, 0xa202a0,2, 0xa202ac,2, 0xa202c0,7, 0xa202e0,7, 0xa20300,2, 0xa2030c,2, 0xa20320,6, 0xa20400,2, 0xa21000,19, 0xa21c00,10, 0xa21c80,3, 0xa22200,4, 0xa22220,4, 0xa22240,11, 0xa22270,32, 0xa22300,24, 0xa22380,20, 0xa22400,61, 0xa22500,25, 0xa22568,4, 0xa22580,2, 0xa225a0,1, 0xa225c0,11, 0xa22600,9, 0xa22640,3, 0xa22650,3, 0xa22664,3, 0xa22680,22, 0xa22800,11, 0xa23000,552, 0xa24200,4, 0xa24220,4, 0xa24240,11, 0xa24270,32, 0xa24300,24, 0xa24380,20, 0xa24400,61, 0xa24500,25, 0xa24568,4, 0xa24580,2, 0xa245a0,1, 0xa245c0,11, 0xa24600,9, 0xa24640,3, 0xa24650,3, 0xa24664,3, 0xa24680,22, 0xa24800,11, 0xa25000,552, 0xa26200,4, 0xa26220,4, 0xa26240,11, 0xa26270,32, 0xa26300,24, 0xa26380,20, 0xa26400,61, 0xa26500,25, 0xa26568,4, 0xa26580,2, 0xa265a0,1, 0xa265c0,11, 0xa26600,9, 0xa26640,3, 0xa26650,3, 0xa26664,3, 0xa26680,22, 0xa26800,11, 0xa27000,552, 0xa28200,4, 0xa28220,4, 0xa28240,11, 0xa28270,32, 0xa28300,24, 0xa28380,20, 0xa28400,61, 0xa28500,25, 0xa28568,4, 0xa28580,2, 0xa285a0,1, 0xa285c0,11, 0xa28600,9, 0xa28640,3, 0xa28650,3, 0xa28664,3, 0xa28680,22, 0xa28800,11, 0xa29000,552, 0xa2a000,7, 0xa2a048,8, 0xa2a080,8, 0xa2a100,7, 0xa2a148,8, 0xa2a180,8, 0xa2a200,7, 0xa2a248,8, 0xa2a280,8, 0xa2a300,7, 0xa2a348,8, 0xa2a380,8, 0xa30000,11, 0xa30040,16, 0xa30084,5, 0xa30200,7, 0xa30220,6, 0xa30240,7, 0xa30260,6, 0xa30280,6, 0xa302a0,2, 0xa302ac,2, 0xa302c0,7, 0xa302e0,7, 0xa30300,2, 0xa3030c,2, 0xa30320,6, 0xa30400,2, 0xa31000,19, 0xa31c00,10, 0xa31c80,3, 0xa32200,4, 0xa32220,4, 0xa32240,11, 0xa32270,32, 0xa32300,24, 0xa32380,20, 0xa32400,61, 0xa32500,25, 0xa32568,4, 0xa32580,2, 0xa325a0,1, 0xa325c0,11, 0xa32600,9, 0xa32640,3, 0xa32650,3, 0xa32664,3, 0xa32680,22, 0xa32800,11, 0xa33000,552, 0xa34200,4, 0xa34220,4, 0xa34240,11, 0xa34270,32, 0xa34300,24, 0xa34380,20, 0xa34400,61, 0xa34500,25, 0xa34568,4, 0xa34580,2, 0xa345a0,1, 0xa345c0,11, 0xa34600,9, 0xa34640,3, 0xa34650,3, 0xa34664,3, 0xa34680,22, 0xa34800,11, 0xa35000,552, 0xa36200,4, 0xa36220,4, 0xa36240,11, 0xa36270,32, 0xa36300,24, 0xa36380,20, 0xa36400,61, 0xa36500,25, 0xa36568,4, 0xa36580,2, 0xa365a0,1, 0xa365c0,11, 0xa36600,9, 0xa36640,3, 0xa36650,3, 0xa36664,3, 0xa36680,22, 0xa36800,11, 0xa37000,552, 0xa38200,4, 0xa38220,4, 0xa38240,11, 0xa38270,32, 0xa38300,24, 0xa38380,20, 0xa38400,61, 0xa38500,25, 0xa38568,4, 0xa38580,2, 0xa385a0,1, 0xa385c0,11, 0xa38600,9, 0xa38640,3, 0xa38650,3, 0xa38664,3, 0xa38680,22, 0xa38800,11, 0xa39000,552, 0xa3a000,7, 0xa3a048,8, 0xa3a080,8, 0xa3a100,7, 0xa3a148,8, 0xa3a180,8, 0xa3a200,7, 0xa3a248,8, 0xa3a280,8, 0xa3a300,7, 0xa3a348,8, 0xa3a380,8, 0xa40000,4, 0xa40014,1, 0xa40020,3, 0xa40030,3, 0xa40040,13, 0xa40078,4, 0xa4009c,29, 0xa40114,1, 0xa40120,3, 0xa40130,3, 0xa40140,13, 0xa40178,4, 0xa4019c,29, 0xa40214,1, 0xa40220,3, 0xa40230,3, 0xa40240,13, 0xa40278,4, 0xa4029c,29, 0xa40314,1, 0xa40320,3, 0xa40330,3, 0xa40340,13, 0xa40378,4, 0xa4039c,29, 0xa40420,2, 0xa4042c,2, 0xa40440,4, 0xa40460,2, 0xa4046c,2, 0xa40480,4, 0xa404a0,2, 0xa404ac,2, 0xa404c0,4, 0xa404e0,2, 0xa404ec,2, 0xa40500,2, 0xa4050c,4, 0xa40520,2, 0xa4052c,4, 0xa40540,2, 0xa4054c,4, 0xa40560,2, 0xa4056c,4, 0xa405c0,1, 0xa40600,16, 0xa40800,18, 0xa40880,13, 0xa408f0,3, 0xa40900,18, 0xa40980,13, 0xa409f0,3, 0xa40a00,18, 0xa40a80,13, 0xa40af0,3, 0xa40b00,18, 0xa40b80,13, 0xa40bf0,3, 0xa40c00,6, 0xa40c20,16, 0xa40c80,6, 0xa40ca0,16, 0xa40d00,6, 0xa40d20,16, 0xa40d80,6, 0xa40da0,16, 0xa40e00,4, 0xa40e20,4, 0xa40e40,4, 0xa40e60,4, 0xa40e80,37, 0xa40f20,5, 0xa40f40,5, 0xa40f60,5, 0xa41000,12, 0xa41200,1, 0xa41208,6, 0xa41228,9, 0xa41280,1, 0xa41288,6, 0xa412a8,9, 0xa41300,1, 0xa41308,6, 0xa41328,9, 0xa41380,1, 0xa41388,6, 0xa413a8,9, 0xa41400,4, 0xa41480,4, 0xa41500,4, 0xa41580,4, 0xa41600,71, 0xa41720,7, 0xa41740,7, 0xa41760,7, 0xa41780,4, 0xa4179c,11, 0xa417d0,2, 0xa417e0,2, 0xa417f0,2, 0xa41800,7, 0xa41820,7, 0xa41840,7, 0xa41860,7, 0xa418c0,64, 0xa41aa0,2, 0xa41ac0,8, 0xa42000,7, 0xa42020,4, 0xa42040,4, 0xa42060,7, 0xa42080,7, 0xa420a0,4, 0xa420c0,4, 0xa420e0,7, 0xa42100,7, 0xa42120,4, 0xa42140,4, 0xa42160,7, 0xa42180,7, 0xa421a0,4, 0xa421c0,4, 0xa421e0,7, 0xa42200,19, 0xa42280,19, 0xa42300,19, 0xa42380,19, 0xa42400,14, 0xa4243c,9, 0xa42464,6, 0xa42480,7, 0xa424a0,2, 0xa424ac,2, 0xa42500,14, 0xa4253c,9, 0xa42564,6, 0xa42580,7, 0xa425a0,2, 0xa425ac,2, 0xa42600,14, 0xa4263c,9, 0xa42664,6, 0xa42680,7, 0xa426a0,2, 0xa426ac,2, 0xa42700,14, 0xa4273c,9, 0xa42764,6, 0xa42780,7, 0xa427a0,2, 0xa427ac,2, 0xa42800,19, 0xa42880,19, 0xa42900,19, 0xa42980,19, 0xa42a10,2, 0xa42a1c,1, 0xa42a50,2, 0xa42a5c,1, 0xa42a90,2, 0xa42a9c,1, 0xa42ad0,2, 0xa42adc,1, 0xa42c00,7, 0xa42c20,1, 0xa42c54,18, 0xa42ca0,1, 0xa42cd4,18, 0xa42d20,1, 0xa42d54,18, 0xa42da0,1, 0xa42dd4,12, 0xa42e08,6, 0xa43100,7, 0xa43120,7, 0xa43140,7, 0xa43160,7, 0xa43180,3, 0xa44000,4, 0xa44014,1, 0xa44020,3, 0xa44030,3, 0xa44040,13, 0xa44078,4, 0xa4409c,29, 0xa44114,1, 0xa44120,3, 0xa44130,3, 0xa44140,13, 0xa44178,4, 0xa4419c,29, 0xa44214,1, 0xa44220,3, 0xa44230,3, 0xa44240,13, 0xa44278,4, 0xa4429c,29, 0xa44314,1, 0xa44320,3, 0xa44330,3, 0xa44340,13, 0xa44378,4, 0xa4439c,29, 0xa44420,2, 0xa4442c,2, 0xa44440,4, 0xa44460,2, 0xa4446c,2, 0xa44480,4, 0xa444a0,2, 0xa444ac,2, 0xa444c0,4, 0xa444e0,2, 0xa444ec,2, 0xa44500,2, 0xa4450c,4, 0xa44520,2, 0xa4452c,4, 0xa44540,2, 0xa4454c,4, 0xa44560,2, 0xa4456c,4, 0xa445c0,1, 0xa44600,16, 0xa44800,18, 0xa44880,13, 0xa448f0,3, 0xa44900,18, 0xa44980,13, 0xa449f0,3, 0xa44a00,18, 0xa44a80,13, 0xa44af0,3, 0xa44b00,18, 0xa44b80,13, 0xa44bf0,3, 0xa44c00,6, 0xa44c20,16, 0xa44c80,6, 0xa44ca0,16, 0xa44d00,6, 0xa44d20,16, 0xa44d80,6, 0xa44da0,16, 0xa44e00,4, 0xa44e20,4, 0xa44e40,4, 0xa44e60,4, 0xa44e80,37, 0xa44f20,5, 0xa44f40,5, 0xa44f60,5, 0xa45000,12, 0xa45200,1, 0xa45208,6, 0xa45228,9, 0xa45280,1, 0xa45288,6, 0xa452a8,9, 0xa45300,1, 0xa45308,6, 0xa45328,9, 0xa45380,1, 0xa45388,6, 0xa453a8,9, 0xa45400,4, 0xa45480,4, 0xa45500,4, 0xa45580,4, 0xa45600,71, 0xa45720,7, 0xa45740,7, 0xa45760,7, 0xa45780,4, 0xa4579c,11, 0xa457d0,2, 0xa457e0,2, 0xa457f0,2, 0xa45800,7, 0xa45820,7, 0xa45840,7, 0xa45860,7, 0xa458c0,64, 0xa45aa0,2, 0xa45ac0,8, 0xa46000,7, 0xa46020,4, 0xa46040,4, 0xa46060,7, 0xa46080,7, 0xa460a0,4, 0xa460c0,4, 0xa460e0,7, 0xa46100,7, 0xa46120,4, 0xa46140,4, 0xa46160,7, 0xa46180,7, 0xa461a0,4, 0xa461c0,4, 0xa461e0,7, 0xa46200,19, 0xa46280,19, 0xa46300,19, 0xa46380,19, 0xa46400,14, 0xa4643c,9, 0xa46464,6, 0xa46480,7, 0xa464a0,2, 0xa464ac,2, 0xa46500,14, 0xa4653c,9, 0xa46564,6, 0xa46580,7, 0xa465a0,2, 0xa465ac,2, 0xa46600,14, 0xa4663c,9, 0xa46664,6, 0xa46680,7, 0xa466a0,2, 0xa466ac,2, 0xa46700,14, 0xa4673c,9, 0xa46764,6, 0xa46780,7, 0xa467a0,2, 0xa467ac,2, 0xa46800,19, 0xa46880,19, 0xa46900,19, 0xa46980,19, 0xa46a10,2, 0xa46a1c,1, 0xa46a50,2, 0xa46a5c,1, 0xa46a90,2, 0xa46a9c,1, 0xa46ad0,2, 0xa46adc,1, 0xa46c00,7, 0xa46c20,1, 0xa46c54,18, 0xa46ca0,1, 0xa46cd4,18, 0xa46d20,1, 0xa46d54,18, 0xa46da0,1, 0xa46dd4,12, 0xa46e08,6, 0xa47100,7, 0xa47120,7, 0xa47140,7, 0xa47160,7, 0xa47180,3, 0xa48000,19, 0xa48c00,10, 0xa48c80,3, 0xa48cc0,1, 0xa49000,13, 0xa49080,21, 0xa4c000,16, 0xa4c080,11, 0xa4c100,11, 0xa4c204,1, 0xa4c224,21, 0xa4c280,16, 0xa4c300,11, 0xa4c340,11, 0xa4c800,21, 0xa4c860,5, 0xa4c880,6, 0xa4c8a0,5, 0xa4c8c0,6, 0xa4c900,21, 0xa4c960,5, 0xa4c980,6, 0xa4c9a0,5, 0xa4c9c0,6, 0xa4ca00,21, 0xa4ca60,5, 0xa4ca80,6, 0xa4caa0,5, 0xa4cac0,6, 0xa4cb00,21, 0xa4cb60,5, 0xa4cb80,6, 0xa4cba0,5, 0xa4cbc0,6, 0xa4cc00,9, 0xa4cc48,7, 0xa4cc68,2, 0xa4cc74,9, 0xa4cc9c,2, 0xa4cd00,14, 0xa4cd40,14, 0xa4cd80,28, 0xa4ce00,19, 0xa4ce50,3, 0xa4ce60,25, 0xa4cec8,1, 0xa4ced0,2, 0xa4cee0,7, 0xa4cf00,1, 0xa4cf08,2, 0xa4cffc,9, 0xa4d024,10, 0xa4d050,22, 0xa4d100,8, 0xa4d124,10, 0xa4d150,22, 0xa4d200,8, 0xa4d224,10, 0xa4d250,22, 0xa4d300,8, 0xa4d324,10, 0xa4d350,22, 0xa4d400,8, 0xa4d424,10, 0xa4d450,22, 0xa4d500,8, 0xa4d524,10, 0xa4d550,22, 0xa4d600,8, 0xa4d624,10, 0xa4d650,22, 0xa4d700,8, 0xa4d724,10, 0xa4d750,22, 0xa4d800,8, 0xa4d824,10, 0xa4d850,22, 0xa4d904,1, 0xa4d914,10, 0xa4d948,11, 0xa4d980,1, 0xa4d9a0,6, 0xa4d9c0,2, 0xa4d9cc,2, 0xa4e000,35, 0xa4ec00,10, 0xa4ec80,3, 0xa4f000,1, 0xa4f008,3, 0xa4f038,1, 0xa4f044,1, 0xa4f050,2, 0xa4f060,8, 0xa4f100,13, 0xa4f140,19, 0xa4f190,4, 0xa50000,13, 0xa50040,2, 0xa50054,4, 0xa50080,27, 0xa50100,12, 0xa50140,14, 0xa50180,28, 0xa50200,6, 0xa50240,6, 0xa5025c,3, 0xa50280,5, 0xa502a0,8, 0xa50400,14, 0xa50440,14, 0xa50480,14, 0xa504c0,14, 0xa50540,3, 0xa50600,7, 0xa50620,14, 0xa50680,5, 0xa506a0,7, 0xa50800,13, 0xa50840,2, 0xa50854,4, 0xa50880,27, 0xa50900,12, 0xa50940,14, 0xa50980,28, 0xa50a00,6, 0xa50a40,6, 0xa50a5c,3, 0xa50a80,5, 0xa50aa0,8, 0xa50c00,14, 0xa50c40,14, 0xa50c80,14, 0xa50cc0,14, 0xa50d40,3, 0xa50e00,7, 0xa50e20,14, 0xa50e80,5, 0xa50ea0,7, 0xa51000,13, 0xa51040,2, 0xa51054,4, 0xa51080,27, 0xa51100,12, 0xa51140,14, 0xa51180,28, 0xa51200,6, 0xa51240,6, 0xa5125c,3, 0xa51280,5, 0xa512a0,8, 0xa51400,14, 0xa51440,14, 0xa51480,14, 0xa514c0,14, 0xa51540,3, 0xa51600,7, 0xa51620,14, 0xa51680,5, 0xa516a0,7, 0xa51800,13, 0xa51840,2, 0xa51854,4, 0xa51880,27, 0xa51900,12, 0xa51940,14, 0xa51980,28, 0xa51a00,6, 0xa51a40,6, 0xa51a5c,3, 0xa51a80,5, 0xa51aa0,8, 0xa51c00,14, 0xa51c40,14, 0xa51c80,14, 0xa51cc0,14, 0xa51d40,3, 0xa51e00,7, 0xa51e20,14, 0xa51e80,5, 0xa51ea0,7, 0xa52000,8, 0xa52040,8, 0xa52080,1, 0xa52098,6, 0xa52100,10, 0xa52140,3, 0xa52150,2, 0xa52180,2, 0xa52200,6, 0xa52220,18, 0xa52280,4, 0xa52300,8, 0xa52400,2, 0xa52480,2, 0xa53000,40, 0xa53100,64, 0xa54000,13, 0xa54040,2, 0xa54054,4, 0xa54080,27, 0xa54100,12, 0xa54140,14, 0xa54180,28, 0xa54200,6, 0xa54240,6, 0xa5425c,3, 0xa54280,5, 0xa542a0,8, 0xa54400,14, 0xa54440,14, 0xa54480,14, 0xa544c0,14, 0xa54540,3, 0xa54600,7, 0xa54620,14, 0xa54680,5, 0xa546a0,7, 0xa54800,13, 0xa54840,2, 0xa54854,4, 0xa54880,27, 0xa54900,12, 0xa54940,14, 0xa54980,28, 0xa54a00,6, 0xa54a40,6, 0xa54a5c,3, 0xa54a80,5, 0xa54aa0,8, 0xa54c00,14, 0xa54c40,14, 0xa54c80,14, 0xa54cc0,14, 0xa54d40,3, 0xa54e00,7, 0xa54e20,14, 0xa54e80,5, 0xa54ea0,7, 0xa55000,13, 0xa55040,2, 0xa55054,4, 0xa55080,27, 0xa55100,12, 0xa55140,14, 0xa55180,28, 0xa55200,6, 0xa55240,6, 0xa5525c,3, 0xa55280,5, 0xa552a0,8, 0xa55400,14, 0xa55440,14, 0xa55480,14, 0xa554c0,14, 0xa55540,3, 0xa55600,7, 0xa55620,14, 0xa55680,5, 0xa556a0,7, 0xa55800,13, 0xa55840,2, 0xa55854,4, 0xa55880,27, 0xa55900,12, 0xa55940,14, 0xa55980,28, 0xa55a00,6, 0xa55a40,6, 0xa55a5c,3, 0xa55a80,5, 0xa55aa0,8, 0xa55c00,14, 0xa55c40,14, 0xa55c80,14, 0xa55cc0,14, 0xa55d40,3, 0xa55e00,7, 0xa55e20,14, 0xa55e80,5, 0xa55ea0,7, 0xa56000,8, 0xa56040,8, 0xa56080,1, 0xa56098,6, 0xa56100,10, 0xa56140,3, 0xa56150,2, 0xa56180,2, 0xa56200,6, 0xa56220,18, 0xa56280,4, 0xa56300,8, 0xa56400,2, 0xa56480,2, 0xa57000,40, 0xa57100,64, 0xa60000,5, 0xa60018,5, 0xa60030,3, 0xa60044,3, 0xa60100,58, 0xa601f0,3, 0xa60280,3, 0xa60400,5, 0xa60418,5, 0xa60430,3, 0xa60444,3, 0xa60500,58, 0xa605f0,3, 0xa60680,3, 0xa60800,5, 0xa60818,5, 0xa60830,3, 0xa60844,3, 0xa60900,58, 0xa609f0,3, 0xa60a80,3, 0xa60c00,5, 0xa60c18,5, 0xa60c30,3, 0xa60c44,3, 0xa60d00,58, 0xa60df0,3, 0xa60e80,3, 0xa61018,1, 0xa61100,2, 0xa61110,10, 0xa61140,2, 0xa61150,10, 0xa61180,2, 0xa61190,10, 0xa611c0,2, 0xa611d0,10, 0xa61208,1, 0xa61220,16, 0xa61280,1, 0xa61288,2, 0xa61400,8, 0xa64000,2, 0xa6400c,1, 0xa64030,3, 0xa64040,2, 0xa6404c,1, 0xa64070,3, 0xa64080,2, 0xa6408c,1, 0xa640b0,3, 0xa640c0,2, 0xa640cc,1, 0xa640f0,3, 0xa64200,15, 0xa64280,15, 0xa64300,15, 0xa64380,15, 0xa64400,15, 0xa64480,15, 0xa64500,15, 0xa64580,15, 0xa64604,10, 0xa64700,2, 0xa6470c,7, 0xa64740,1, 0xa64770,1, 0xa647c0,2, 0xa647d0,4, 0xa64800,3, 0xa64810,1, 0xa6481c,3, 0xa64b04,1, 0xa64b0c,5, 0xa64b44,1, 0xa64b50,5, 0xa64b70,6, 0xa64b90,2, 0xa64c00,129, 0xa65000,39, 0xa65100,39, 0xa65200,39, 0xa65300,39, 0xa65400,39, 0xa65500,39, 0xa65600,39, 0xa65700,39, 0xa65f00,19, 0xa66000,131, 0xa66400,4, 0xa66440,15, 0xa66480,4, 0xa664c0,15, 0xa66500,4, 0xa66540,15, 0xa66580,4, 0xa665c0,15, 0xa66600,4, 0xa66640,10, 0xa66680,4, 0xa666c0,10, 0xa66700,4, 0xa66740,10, 0xa66780,4, 0xa667c0,10, 0xa66800,4, 0xa66840,14, 0xa66880,17, 0xa66900,2, 0xa66a00,13, 0xa66a80,1, 0xa66a88,8, 0xa66ac0,6, 0xa66ae0,1, 0xa66ae8,2, 0xa66b04,13, 0xa66fcc,32, 0xa68000,5, 0xa68018,5, 0xa68030,3, 0xa68044,3, 0xa68100,58, 0xa681f0,3, 0xa68280,3, 0xa68400,5, 0xa68418,5, 0xa68430,3, 0xa68444,3, 0xa68500,58, 0xa685f0,3, 0xa68680,3, 0xa68800,5, 0xa68818,5, 0xa68830,3, 0xa68844,3, 0xa68900,58, 0xa689f0,3, 0xa68a80,3, 0xa68c00,5, 0xa68c18,5, 0xa68c30,3, 0xa68c44,3, 0xa68d00,58, 0xa68df0,3, 0xa68e80,3, 0xa69018,1, 0xa69100,2, 0xa69110,10, 0xa69140,2, 0xa69150,10, 0xa69180,2, 0xa69190,10, 0xa691c0,2, 0xa691d0,10, 0xa69208,1, 0xa69220,16, 0xa69280,1, 0xa69288,2, 0xa69400,8, 0xa6c000,2, 0xa6c00c,1, 0xa6c030,3, 0xa6c040,2, 0xa6c04c,1, 0xa6c070,3, 0xa6c080,2, 0xa6c08c,1, 0xa6c0b0,3, 0xa6c0c0,2, 0xa6c0cc,1, 0xa6c0f0,3, 0xa6c200,15, 0xa6c280,15, 0xa6c300,15, 0xa6c380,15, 0xa6c400,15, 0xa6c480,15, 0xa6c500,15, 0xa6c580,15, 0xa6c604,10, 0xa6c700,2, 0xa6c70c,7, 0xa6c740,1, 0xa6c770,1, 0xa6c7c0,2, 0xa6c7d0,4, 0xa6c800,3, 0xa6c810,1, 0xa6c81c,3, 0xa6cb04,1, 0xa6cb0c,5, 0xa6cb44,1, 0xa6cb50,5, 0xa6cb70,6, 0xa6cb90,2, 0xa6cc00,129, 0xa6d000,39, 0xa6d100,39, 0xa6d200,39, 0xa6d300,39, 0xa6d400,39, 0xa6d500,39, 0xa6d600,39, 0xa6d700,39, 0xa6df00,19, 0xa6e000,131, 0xa6e400,4, 0xa6e440,15, 0xa6e480,4, 0xa6e4c0,15, 0xa6e500,4, 0xa6e540,15, 0xa6e580,4, 0xa6e5c0,15, 0xa6e600,4, 0xa6e640,10, 0xa6e680,4, 0xa6e6c0,10, 0xa6e700,4, 0xa6e740,10, 0xa6e780,4, 0xa6e7c0,10, 0xa6e800,4, 0xa6e840,14, 0xa6e880,17, 0xa6e900,2, 0xa6ea00,13, 0xa6ea80,1, 0xa6ea88,8, 0xa6eac0,6, 0xa6eae0,1, 0xa6eae8,2, 0xa6eb04,13, 0xa6efcc,32, 0xa70000,35, 0xa70c00,10, 0xa70c80,3, 0xa71000,2, 0xa7100c,4, 0xa71028,3, 0xa71038,4, 0xa71050,2, 0xa71060,2, 0xa71070,2, 0xa71080,4, 0xa71098,7, 0xa71120,8, 0xa71200,4, 0xa71214,7, 0xa71234,7, 0xa71254,7, 0xa71274,24, 0xa71300,2, 0xa7130c,3, 0xa71400,32, 0xa71484,2, 0xa71490,3, 0xa71500,25, 0xa715c0,8, 0xa715e8,5, 0xa71600,5, 0xa71618,18, 0xa71690,4, 0xa71740,2, 0xa71760,6, 0xa71780,6, 0xa717a0,6, 0xa717c0,6, 0xa717e0,1, 0xa71800,19, 0xa71880,2, 0xa718b0,2, 0xa718c0,2, 0xa74000,35, 0xa74c00,10, 0xa74c80,3, 0xa75000,2, 0xa7500c,4, 0xa75028,3, 0xa75038,4, 0xa75050,2, 0xa75060,2, 0xa75070,2, 0xa75080,4, 0xa75098,7, 0xa75120,8, 0xa75200,4, 0xa75214,7, 0xa75234,7, 0xa75254,7, 0xa75274,24, 0xa75300,2, 0xa7530c,3, 0xa75400,32, 0xa75484,2, 0xa75490,3, 0xa75500,25, 0xa755c0,8, 0xa755e8,5, 0xa75600,5, 0xa75618,18, 0xa75690,4, 0xa75740,2, 0xa75760,6, 0xa75780,6, 0xa757a0,6, 0xa757c0,6, 0xa757e0,1, 0xa75800,19, 0xa75880,2, 0xa758b0,2, 0xa758c0,2, 0xa80000,11, 0xa80040,16, 0xa80084,5, 0xa80200,7, 0xa80220,6, 0xa80240,7, 0xa80260,6, 0xa80280,6, 0xa802a0,2, 0xa802ac,2, 0xa802c0,7, 0xa802e0,7, 0xa80300,2, 0xa8030c,2, 0xa80320,6, 0xa80400,2, 0xa81000,19, 0xa81c00,10, 0xa81c80,3, 0xa82200,4, 0xa82220,4, 0xa82240,11, 0xa82270,32, 0xa82300,24, 0xa82380,20, 0xa82400,61, 0xa82500,25, 0xa82568,4, 0xa82580,2, 0xa825a0,1, 0xa825c0,11, 0xa82600,9, 0xa82640,3, 0xa82650,3, 0xa82664,3, 0xa82680,22, 0xa82800,11, 0xa83000,552, 0xa84200,4, 0xa84220,4, 0xa84240,11, 0xa84270,32, 0xa84300,24, 0xa84380,20, 0xa84400,61, 0xa84500,25, 0xa84568,4, 0xa84580,2, 0xa845a0,1, 0xa845c0,11, 0xa84600,9, 0xa84640,3, 0xa84650,3, 0xa84664,3, 0xa84680,22, 0xa84800,11, 0xa85000,552, 0xa86200,4, 0xa86220,4, 0xa86240,11, 0xa86270,32, 0xa86300,24, 0xa86380,20, 0xa86400,61, 0xa86500,25, 0xa86568,4, 0xa86580,2, 0xa865a0,1, 0xa865c0,11, 0xa86600,9, 0xa86640,3, 0xa86650,3, 0xa86664,3, 0xa86680,22, 0xa86800,11, 0xa87000,552, 0xa88200,4, 0xa88220,4, 0xa88240,11, 0xa88270,32, 0xa88300,24, 0xa88380,20, 0xa88400,61, 0xa88500,25, 0xa88568,4, 0xa88580,2, 0xa885a0,1, 0xa885c0,11, 0xa88600,9, 0xa88640,3, 0xa88650,3, 0xa88664,3, 0xa88680,22, 0xa88800,11, 0xa89000,552, 0xa8a000,7, 0xa8a048,8, 0xa8a080,8, 0xa8a100,7, 0xa8a148,8, 0xa8a180,8, 0xa8a200,7, 0xa8a248,8, 0xa8a280,8, 0xa8a300,7, 0xa8a348,8, 0xa8a380,8, 0xa90000,11, 0xa90040,16, 0xa90084,5, 0xa90200,7, 0xa90220,6, 0xa90240,7, 0xa90260,6, 0xa90280,6, 0xa902a0,2, 0xa902ac,2, 0xa902c0,7, 0xa902e0,7, 0xa90300,2, 0xa9030c,2, 0xa90320,6, 0xa90400,2, 0xa91000,19, 0xa91c00,10, 0xa91c80,3, 0xa92200,4, 0xa92220,4, 0xa92240,11, 0xa92270,32, 0xa92300,24, 0xa92380,20, 0xa92400,61, 0xa92500,25, 0xa92568,4, 0xa92580,2, 0xa925a0,1, 0xa925c0,11, 0xa92600,9, 0xa92640,3, 0xa92650,3, 0xa92664,3, 0xa92680,22, 0xa92800,11, 0xa93000,552, 0xa94200,4, 0xa94220,4, 0xa94240,11, 0xa94270,32, 0xa94300,24, 0xa94380,20, 0xa94400,61, 0xa94500,25, 0xa94568,4, 0xa94580,2, 0xa945a0,1, 0xa945c0,11, 0xa94600,9, 0xa94640,3, 0xa94650,3, 0xa94664,3, 0xa94680,22, 0xa94800,11, 0xa95000,552, 0xa96200,4, 0xa96220,4, 0xa96240,11, 0xa96270,32, 0xa96300,24, 0xa96380,20, 0xa96400,61, 0xa96500,25, 0xa96568,4, 0xa96580,2, 0xa965a0,1, 0xa965c0,11, 0xa96600,9, 0xa96640,3, 0xa96650,3, 0xa96664,3, 0xa96680,22, 0xa96800,11, 0xa97000,552, 0xa98200,4, 0xa98220,4, 0xa98240,11, 0xa98270,32, 0xa98300,24, 0xa98380,20, 0xa98400,61, 0xa98500,25, 0xa98568,4, 0xa98580,2, 0xa985a0,1, 0xa985c0,11, 0xa98600,9, 0xa98640,3, 0xa98650,3, 0xa98664,3, 0xa98680,22, 0xa98800,11, 0xa99000,552, 0xa9a000,7, 0xa9a048,8, 0xa9a080,8, 0xa9a100,7, 0xa9a148,8, 0xa9a180,8, 0xa9a200,7, 0xa9a248,8, 0xa9a280,8, 0xa9a300,7, 0xa9a348,8, 0xa9a380,8, 0xaa0000,4, 0xaa0014,1, 0xaa0020,3, 0xaa0030,3, 0xaa0040,13, 0xaa0078,4, 0xaa009c,29, 0xaa0114,1, 0xaa0120,3, 0xaa0130,3, 0xaa0140,13, 0xaa0178,4, 0xaa019c,29, 0xaa0214,1, 0xaa0220,3, 0xaa0230,3, 0xaa0240,13, 0xaa0278,4, 0xaa029c,29, 0xaa0314,1, 0xaa0320,3, 0xaa0330,3, 0xaa0340,13, 0xaa0378,4, 0xaa039c,29, 0xaa0420,2, 0xaa042c,2, 0xaa0440,4, 0xaa0460,2, 0xaa046c,2, 0xaa0480,4, 0xaa04a0,2, 0xaa04ac,2, 0xaa04c0,4, 0xaa04e0,2, 0xaa04ec,2, 0xaa0500,2, 0xaa050c,4, 0xaa0520,2, 0xaa052c,4, 0xaa0540,2, 0xaa054c,4, 0xaa0560,2, 0xaa056c,4, 0xaa05c0,1, 0xaa0600,16, 0xaa0800,18, 0xaa0880,13, 0xaa08f0,3, 0xaa0900,18, 0xaa0980,13, 0xaa09f0,3, 0xaa0a00,18, 0xaa0a80,13, 0xaa0af0,3, 0xaa0b00,18, 0xaa0b80,13, 0xaa0bf0,3, 0xaa0c00,6, 0xaa0c20,16, 0xaa0c80,6, 0xaa0ca0,16, 0xaa0d00,6, 0xaa0d20,16, 0xaa0d80,6, 0xaa0da0,16, 0xaa0e00,4, 0xaa0e20,4, 0xaa0e40,4, 0xaa0e60,4, 0xaa0e80,37, 0xaa0f20,5, 0xaa0f40,5, 0xaa0f60,5, 0xaa1000,12, 0xaa1200,1, 0xaa1208,6, 0xaa1228,9, 0xaa1280,1, 0xaa1288,6, 0xaa12a8,9, 0xaa1300,1, 0xaa1308,6, 0xaa1328,9, 0xaa1380,1, 0xaa1388,6, 0xaa13a8,9, 0xaa1400,4, 0xaa1480,4, 0xaa1500,4, 0xaa1580,4, 0xaa1600,71, 0xaa1720,7, 0xaa1740,7, 0xaa1760,7, 0xaa1780,4, 0xaa179c,11, 0xaa17d0,2, 0xaa17e0,2, 0xaa17f0,2, 0xaa1800,7, 0xaa1820,7, 0xaa1840,7, 0xaa1860,7, 0xaa18c0,64, 0xaa1aa0,2, 0xaa1ac0,8, 0xaa2000,7, 0xaa2020,4, 0xaa2040,4, 0xaa2060,7, 0xaa2080,7, 0xaa20a0,4, 0xaa20c0,4, 0xaa20e0,7, 0xaa2100,7, 0xaa2120,4, 0xaa2140,4, 0xaa2160,7, 0xaa2180,7, 0xaa21a0,4, 0xaa21c0,4, 0xaa21e0,7, 0xaa2200,19, 0xaa2280,19, 0xaa2300,19, 0xaa2380,19, 0xaa2400,14, 0xaa243c,9, 0xaa2464,6, 0xaa2480,7, 0xaa24a0,2, 0xaa24ac,2, 0xaa2500,14, 0xaa253c,9, 0xaa2564,6, 0xaa2580,7, 0xaa25a0,2, 0xaa25ac,2, 0xaa2600,14, 0xaa263c,9, 0xaa2664,6, 0xaa2680,7, 0xaa26a0,2, 0xaa26ac,2, 0xaa2700,14, 0xaa273c,9, 0xaa2764,6, 0xaa2780,7, 0xaa27a0,2, 0xaa27ac,2, 0xaa2800,19, 0xaa2880,19, 0xaa2900,19, 0xaa2980,19, 0xaa2a10,2, 0xaa2a1c,1, 0xaa2a50,2, 0xaa2a5c,1, 0xaa2a90,2, 0xaa2a9c,1, 0xaa2ad0,2, 0xaa2adc,1, 0xaa2c00,7, 0xaa2c20,1, 0xaa2c54,18, 0xaa2ca0,1, 0xaa2cd4,18, 0xaa2d20,1, 0xaa2d54,18, 0xaa2da0,1, 0xaa2dd4,12, 0xaa2e08,6, 0xaa3100,7, 0xaa3120,7, 0xaa3140,7, 0xaa3160,7, 0xaa3180,3, 0xaa4000,4, 0xaa4014,1, 0xaa4020,3, 0xaa4030,3, 0xaa4040,13, 0xaa4078,4, 0xaa409c,29, 0xaa4114,1, 0xaa4120,3, 0xaa4130,3, 0xaa4140,13, 0xaa4178,4, 0xaa419c,29, 0xaa4214,1, 0xaa4220,3, 0xaa4230,3, 0xaa4240,13, 0xaa4278,4, 0xaa429c,29, 0xaa4314,1, 0xaa4320,3, 0xaa4330,3, 0xaa4340,13, 0xaa4378,4, 0xaa439c,29, 0xaa4420,2, 0xaa442c,2, 0xaa4440,4, 0xaa4460,2, 0xaa446c,2, 0xaa4480,4, 0xaa44a0,2, 0xaa44ac,2, 0xaa44c0,4, 0xaa44e0,2, 0xaa44ec,2, 0xaa4500,2, 0xaa450c,4, 0xaa4520,2, 0xaa452c,4, 0xaa4540,2, 0xaa454c,4, 0xaa4560,2, 0xaa456c,4, 0xaa45c0,1, 0xaa4600,16, 0xaa4800,18, 0xaa4880,13, 0xaa48f0,3, 0xaa4900,18, 0xaa4980,13, 0xaa49f0,3, 0xaa4a00,18, 0xaa4a80,13, 0xaa4af0,3, 0xaa4b00,18, 0xaa4b80,13, 0xaa4bf0,3, 0xaa4c00,6, 0xaa4c20,16, 0xaa4c80,6, 0xaa4ca0,16, 0xaa4d00,6, 0xaa4d20,16, 0xaa4d80,6, 0xaa4da0,16, 0xaa4e00,4, 0xaa4e20,4, 0xaa4e40,4, 0xaa4e60,4, 0xaa4e80,37, 0xaa4f20,5, 0xaa4f40,5, 0xaa4f60,5, 0xaa5000,12, 0xaa5200,1, 0xaa5208,6, 0xaa5228,9, 0xaa5280,1, 0xaa5288,6, 0xaa52a8,9, 0xaa5300,1, 0xaa5308,6, 0xaa5328,9, 0xaa5380,1, 0xaa5388,6, 0xaa53a8,9, 0xaa5400,4, 0xaa5480,4, 0xaa5500,4, 0xaa5580,4, 0xaa5600,71, 0xaa5720,7, 0xaa5740,7, 0xaa5760,7, 0xaa5780,4, 0xaa579c,11, 0xaa57d0,2, 0xaa57e0,2, 0xaa57f0,2, 0xaa5800,7, 0xaa5820,7, 0xaa5840,7, 0xaa5860,7, 0xaa58c0,64, 0xaa5aa0,2, 0xaa5ac0,8, 0xaa6000,7, 0xaa6020,4, 0xaa6040,4, 0xaa6060,7, 0xaa6080,7, 0xaa60a0,4, 0xaa60c0,4, 0xaa60e0,7, 0xaa6100,7, 0xaa6120,4, 0xaa6140,4, 0xaa6160,7, 0xaa6180,7, 0xaa61a0,4, 0xaa61c0,4, 0xaa61e0,7, 0xaa6200,19, 0xaa6280,19, 0xaa6300,19, 0xaa6380,19, 0xaa6400,14, 0xaa643c,9, 0xaa6464,6, 0xaa6480,7, 0xaa64a0,2, 0xaa64ac,2, 0xaa6500,14, 0xaa653c,9, 0xaa6564,6, 0xaa6580,7, 0xaa65a0,2, 0xaa65ac,2, 0xaa6600,14, 0xaa663c,9, 0xaa6664,6, 0xaa6680,7, 0xaa66a0,2, 0xaa66ac,2, 0xaa6700,14, 0xaa673c,9, 0xaa6764,6, 0xaa6780,7, 0xaa67a0,2, 0xaa67ac,2, 0xaa6800,19, 0xaa6880,19, 0xaa6900,19, 0xaa6980,19, 0xaa6a10,2, 0xaa6a1c,1, 0xaa6a50,2, 0xaa6a5c,1, 0xaa6a90,2, 0xaa6a9c,1, 0xaa6ad0,2, 0xaa6adc,1, 0xaa6c00,7, 0xaa6c20,1, 0xaa6c54,18, 0xaa6ca0,1, 0xaa6cd4,18, 0xaa6d20,1, 0xaa6d54,18, 0xaa6da0,1, 0xaa6dd4,12, 0xaa6e08,6, 0xaa7100,7, 0xaa7120,7, 0xaa7140,7, 0xaa7160,7, 0xaa7180,3, 0xaa8000,19, 0xaa8c00,10, 0xaa8c80,3, 0xaa8cc0,1, 0xaa9000,13, 0xaa9080,21, 0xaac000,16, 0xaac080,11, 0xaac100,11, 0xaac204,1, 0xaac224,21, 0xaac280,16, 0xaac300,11, 0xaac340,11, 0xaad000,8, 0xaad024,10, 0xaad050,22, 0xaad100,8, 0xaad124,10, 0xaad150,22, 0xaad200,8, 0xaad224,10, 0xaad250,22, 0xaad300,8, 0xaad324,10, 0xaad350,22, 0xaad400,8, 0xaad424,10, 0xaad450,22, 0xaad500,8, 0xaad524,10, 0xaad550,22, 0xaad600,8, 0xaad624,10, 0xaad650,22, 0xaad700,8, 0xaad724,10, 0xaad750,22, 0xaad800,8, 0xaad824,10, 0xaad850,22, 0xaad904,1, 0xaad914,10, 0xaad948,11, 0xaad980,1, 0xaad9a0,6, 0xaad9c0,2, 0xaad9cc,2, 0xaae000,35, 0xaaec00,10, 0xaaec80,3, 0xaaf000,1, 0xaaf008,3, 0xaaf038,1, 0xaaf044,1, 0xaaf050,2, 0xaaf060,8, 0xaaf100,13, 0xaaf140,19, 0xaaf190,4, 0xab0000,13, 0xab0040,2, 0xab0054,4, 0xab0080,27, 0xab0100,12, 0xab0140,14, 0xab0180,28, 0xab0200,6, 0xab0240,6, 0xab025c,3, 0xab0280,5, 0xab02a0,8, 0xab0400,14, 0xab0440,14, 0xab0480,14, 0xab04c0,14, 0xab0540,3, 0xab0600,7, 0xab0620,14, 0xab0680,5, 0xab06a0,7, 0xab0800,13, 0xab0840,2, 0xab0854,4, 0xab0880,27, 0xab0900,12, 0xab0940,14, 0xab0980,28, 0xab0a00,6, 0xab0a40,6, 0xab0a5c,3, 0xab0a80,5, 0xab0aa0,8, 0xab0c00,14, 0xab0c40,14, 0xab0c80,14, 0xab0cc0,14, 0xab0d40,3, 0xab0e00,7, 0xab0e20,14, 0xab0e80,5, 0xab0ea0,7, 0xab1000,13, 0xab1040,2, 0xab1054,4, 0xab1080,27, 0xab1100,12, 0xab1140,14, 0xab1180,28, 0xab1200,6, 0xab1240,6, 0xab125c,3, 0xab1280,5, 0xab12a0,8, 0xab1400,14, 0xab1440,14, 0xab1480,14, 0xab14c0,14, 0xab1540,3, 0xab1600,7, 0xab1620,14, 0xab1680,5, 0xab16a0,7, 0xab1800,13, 0xab1840,2, 0xab1854,4, 0xab1880,27, 0xab1900,12, 0xab1940,14, 0xab1980,28, 0xab1a00,6, 0xab1a40,6, 0xab1a5c,3, 0xab1a80,5, 0xab1aa0,8, 0xab1c00,14, 0xab1c40,14, 0xab1c80,14, 0xab1cc0,14, 0xab1d40,3, 0xab1e00,7, 0xab1e20,14, 0xab1e80,5, 0xab1ea0,7, 0xab2000,8, 0xab2040,8, 0xab2080,1, 0xab2098,6, 0xab2100,10, 0xab2140,3, 0xab2150,2, 0xab2180,2, 0xab2200,6, 0xab2220,18, 0xab2280,4, 0xab2300,8, 0xab2400,2, 0xab2480,2, 0xab3000,40, 0xab3100,64, 0xab4000,13, 0xab4040,2, 0xab4054,4, 0xab4080,27, 0xab4100,12, 0xab4140,14, 0xab4180,28, 0xab4200,6, 0xab4240,6, 0xab425c,3, 0xab4280,5, 0xab42a0,8, 0xab4400,14, 0xab4440,14, 0xab4480,14, 0xab44c0,14, 0xab4540,3, 0xab4600,7, 0xab4620,14, 0xab4680,5, 0xab46a0,7, 0xab4800,13, 0xab4840,2, 0xab4854,4, 0xab4880,27, 0xab4900,12, 0xab4940,14, 0xab4980,28, 0xab4a00,6, 0xab4a40,6, 0xab4a5c,3, 0xab4a80,5, 0xab4aa0,8, 0xab4c00,14, 0xab4c40,14, 0xab4c80,14, 0xab4cc0,14, 0xab4d40,3, 0xab4e00,7, 0xab4e20,14, 0xab4e80,5, 0xab4ea0,7, 0xab5000,13, 0xab5040,2, 0xab5054,4, 0xab5080,27, 0xab5100,12, 0xab5140,14, 0xab5180,28, 0xab5200,6, 0xab5240,6, 0xab525c,3, 0xab5280,5, 0xab52a0,8, 0xab5400,14, 0xab5440,14, 0xab5480,14, 0xab54c0,14, 0xab5540,3, 0xab5600,7, 0xab5620,14, 0xab5680,5, 0xab56a0,7, 0xab5800,13, 0xab5840,2, 0xab5854,4, 0xab5880,27, 0xab5900,12, 0xab5940,14, 0xab5980,28, 0xab5a00,6, 0xab5a40,6, 0xab5a5c,3, 0xab5a80,5, 0xab5aa0,8, 0xab5c00,14, 0xab5c40,14, 0xab5c80,14, 0xab5cc0,14, 0xab5d40,3, 0xab5e00,7, 0xab5e20,14, 0xab5e80,5, 0xab5ea0,7, 0xab6000,8, 0xab6040,8, 0xab6080,1, 0xab6098,6, 0xab6100,10, 0xab6140,3, 0xab6150,2, 0xab6180,2, 0xab6200,6, 0xab6220,18, 0xab6280,4, 0xab6300,8, 0xab6400,2, 0xab6480,2, 0xab7000,40, 0xab7100,64, 0xac0000,5, 0xac0018,5, 0xac0030,3, 0xac0044,3, 0xac0100,58, 0xac01f0,3, 0xac0280,3, 0xac0400,5, 0xac0418,5, 0xac0430,3, 0xac0444,3, 0xac0500,58, 0xac05f0,3, 0xac0680,3, 0xac0800,5, 0xac0818,5, 0xac0830,3, 0xac0844,3, 0xac0900,58, 0xac09f0,3, 0xac0a80,3, 0xac0c00,5, 0xac0c18,5, 0xac0c30,3, 0xac0c44,3, 0xac0d00,58, 0xac0df0,3, 0xac0e80,3, 0xac1018,1, 0xac1100,2, 0xac1110,10, 0xac1140,2, 0xac1150,10, 0xac1180,2, 0xac1190,10, 0xac11c0,2, 0xac11d0,10, 0xac1208,1, 0xac1220,16, 0xac1280,1, 0xac1288,2, 0xac1400,8, 0xac4000,2, 0xac400c,1, 0xac4030,3, 0xac4040,2, 0xac404c,1, 0xac4070,3, 0xac4080,2, 0xac408c,1, 0xac40b0,3, 0xac40c0,2, 0xac40cc,1, 0xac40f0,3, 0xac4200,15, 0xac4280,15, 0xac4300,15, 0xac4380,15, 0xac4400,15, 0xac4480,15, 0xac4500,15, 0xac4580,15, 0xac4604,10, 0xac4700,2, 0xac470c,7, 0xac4740,1, 0xac4770,1, 0xac47c0,2, 0xac47d0,4, 0xac4800,3, 0xac4810,1, 0xac481c,3, 0xac4b04,1, 0xac4b0c,5, 0xac4b44,1, 0xac4b50,5, 0xac4b70,6, 0xac4b90,2, 0xac4c00,129, 0xac5000,39, 0xac5100,39, 0xac5200,39, 0xac5300,39, 0xac5400,39, 0xac5500,39, 0xac5600,39, 0xac5700,39, 0xac5f00,19, 0xac6000,131, 0xac6400,4, 0xac6440,15, 0xac6480,4, 0xac64c0,15, 0xac6500,4, 0xac6540,15, 0xac6580,4, 0xac65c0,15, 0xac6600,4, 0xac6640,10, 0xac6680,4, 0xac66c0,10, 0xac6700,4, 0xac6740,10, 0xac6780,4, 0xac67c0,10, 0xac6800,4, 0xac6840,14, 0xac6880,17, 0xac6900,2, 0xac6a00,13, 0xac6a80,1, 0xac6a88,8, 0xac6ac0,6, 0xac6ae0,1, 0xac6ae8,2, 0xac6b04,13, 0xac6fcc,32, 0xac8000,5, 0xac8018,5, 0xac8030,3, 0xac8044,3, 0xac8100,58, 0xac81f0,3, 0xac8280,3, 0xac8400,5, 0xac8418,5, 0xac8430,3, 0xac8444,3, 0xac8500,58, 0xac85f0,3, 0xac8680,3, 0xac8800,5, 0xac8818,5, 0xac8830,3, 0xac8844,3, 0xac8900,58, 0xac89f0,3, 0xac8a80,3, 0xac8c00,5, 0xac8c18,5, 0xac8c30,3, 0xac8c44,3, 0xac8d00,58, 0xac8df0,3, 0xac8e80,3, 0xac9018,1, 0xac9100,2, 0xac9110,10, 0xac9140,2, 0xac9150,10, 0xac9180,2, 0xac9190,10, 0xac91c0,2, 0xac91d0,10, 0xac9208,1, 0xac9220,16, 0xac9280,1, 0xac9288,2, 0xac9400,8, 0xacc000,2, 0xacc00c,1, 0xacc030,3, 0xacc040,2, 0xacc04c,1, 0xacc070,3, 0xacc080,2, 0xacc08c,1, 0xacc0b0,3, 0xacc0c0,2, 0xacc0cc,1, 0xacc0f0,3, 0xacc200,15, 0xacc280,15, 0xacc300,15, 0xacc380,15, 0xacc400,15, 0xacc480,15, 0xacc500,15, 0xacc580,15, 0xacc604,10, 0xacc700,2, 0xacc70c,7, 0xacc740,1, 0xacc770,1, 0xacc7c0,2, 0xacc7d0,4, 0xacc800,3, 0xacc810,1, 0xacc81c,3, 0xaccb04,1, 0xaccb0c,5, 0xaccb44,1, 0xaccb50,5, 0xaccb70,6, 0xaccb90,2, 0xaccc00,129, 0xacd000,39, 0xacd100,39, 0xacd200,39, 0xacd300,39, 0xacd400,39, 0xacd500,39, 0xacd600,39, 0xacd700,39, 0xacdf00,19, 0xace000,131, 0xace400,4, 0xace440,15, 0xace480,4, 0xace4c0,15, 0xace500,4, 0xace540,15, 0xace580,4, 0xace5c0,15, 0xace600,4, 0xace640,10, 0xace680,4, 0xace6c0,10, 0xace700,4, 0xace740,10, 0xace780,4, 0xace7c0,10, 0xace800,4, 0xace840,14, 0xace880,17, 0xace900,2, 0xacea00,13, 0xacea80,1, 0xacea88,8, 0xaceac0,6, 0xaceae0,1, 0xaceae8,2, 0xaceb04,13, 0xacefcc,32, 0xad0000,35, 0xad0c00,10, 0xad0c80,3, 0xad1000,2, 0xad100c,4, 0xad1028,3, 0xad1038,4, 0xad1050,2, 0xad1060,2, 0xad1070,2, 0xad1080,4, 0xad1098,7, 0xad1120,8, 0xad1200,4, 0xad1214,7, 0xad1234,7, 0xad1254,7, 0xad1274,24, 0xad1300,2, 0xad130c,3, 0xad1400,32, 0xad1484,2, 0xad1490,3, 0xad1500,25, 0xad15c0,8, 0xad15e8,5, 0xad1600,5, 0xad1618,18, 0xad1690,4, 0xad1740,2, 0xad1760,6, 0xad1780,6, 0xad17a0,6, 0xad17c0,6, 0xad17e0,1, 0xad1800,19, 0xad1880,2, 0xad18b0,2, 0xad18c0,2, 0xad4000,35, 0xad4c00,10, 0xad4c80,3, 0xad5000,2, 0xad500c,4, 0xad5028,3, 0xad5038,4, 0xad5050,2, 0xad5060,2, 0xad5070,2, 0xad5080,4, 0xad5098,7, 0xad5120,8, 0xad5200,4, 0xad5214,7, 0xad5234,7, 0xad5254,7, 0xad5274,24, 0xad5300,2, 0xad530c,3, 0xad5400,32, 0xad5484,2, 0xad5490,3, 0xad5500,25, 0xad55c0,8, 0xad55e8,5, 0xad5600,5, 0xad5618,18, 0xad5690,4, 0xad5740,2, 0xad5760,6, 0xad5780,6, 0xad57a0,6, 0xad57c0,6, 0xad57e0,1, 0xad5800,19, 0xad5880,2, 0xad58b0,2, 0xad58c0,2, 0xae0000,11, 0xae0040,16, 0xae0084,5, 0xae0200,7, 0xae0220,6, 0xae0240,7, 0xae0260,6, 0xae0280,6, 0xae02a0,2, 0xae02ac,2, 0xae02c0,7, 0xae02e0,7, 0xae0300,2, 0xae030c,2, 0xae0320,6, 0xae0400,2, 0xae1000,19, 0xae1c00,10, 0xae1c80,3, 0xae2200,4, 0xae2220,4, 0xae2240,11, 0xae2270,32, 0xae2300,24, 0xae2380,20, 0xae2400,61, 0xae2500,25, 0xae2568,4, 0xae2580,2, 0xae25a0,1, 0xae25c0,11, 0xae2600,9, 0xae2640,3, 0xae2650,3, 0xae2664,3, 0xae2680,22, 0xae2800,11, 0xae3000,552, 0xae4200,4, 0xae4220,4, 0xae4240,11, 0xae4270,32, 0xae4300,24, 0xae4380,20, 0xae4400,61, 0xae4500,25, 0xae4568,4, 0xae4580,2, 0xae45a0,1, 0xae45c0,11, 0xae4600,9, 0xae4640,3, 0xae4650,3, 0xae4664,3, 0xae4680,22, 0xae4800,11, 0xae5000,552, 0xae6200,4, 0xae6220,4, 0xae6240,11, 0xae6270,32, 0xae6300,24, 0xae6380,20, 0xae6400,61, 0xae6500,25, 0xae6568,4, 0xae6580,2, 0xae65a0,1, 0xae65c0,11, 0xae6600,9, 0xae6640,3, 0xae6650,3, 0xae6664,3, 0xae6680,22, 0xae6800,11, 0xae7000,552, 0xae8200,4, 0xae8220,4, 0xae8240,11, 0xae8270,32, 0xae8300,24, 0xae8380,20, 0xae8400,61, 0xae8500,25, 0xae8568,4, 0xae8580,2, 0xae85a0,1, 0xae85c0,11, 0xae8600,9, 0xae8640,3, 0xae8650,3, 0xae8664,3, 0xae8680,22, 0xae8800,11, 0xae9000,552, 0xaea000,7, 0xaea048,8, 0xaea080,8, 0xaea100,7, 0xaea148,8, 0xaea180,8, 0xaea200,7, 0xaea248,8, 0xaea280,8, 0xaea300,7, 0xaea348,8, 0xaea380,8, 0xaf0000,11, 0xaf0040,16, 0xaf0084,5, 0xaf0200,7, 0xaf0220,6, 0xaf0240,7, 0xaf0260,6, 0xaf0280,6, 0xaf02a0,2, 0xaf02ac,2, 0xaf02c0,7, 0xaf02e0,7, 0xaf0300,2, 0xaf030c,2, 0xaf0320,6, 0xaf0400,2, 0xaf1000,19, 0xaf1c00,10, 0xaf1c80,3, 0xaf2200,4, 0xaf2220,4, 0xaf2240,11, 0xaf2270,32, 0xaf2300,24, 0xaf2380,20, 0xaf2400,61, 0xaf2500,25, 0xaf2568,4, 0xaf2580,2, 0xaf25a0,1, 0xaf25c0,11, 0xaf2600,9, 0xaf2640,3, 0xaf2650,3, 0xaf2664,3, 0xaf2680,22, 0xaf2800,11, 0xaf3000,552, 0xaf4200,4, 0xaf4220,4, 0xaf4240,11, 0xaf4270,32, 0xaf4300,24, 0xaf4380,20, 0xaf4400,61, 0xaf4500,25, 0xaf4568,4, 0xaf4580,2, 0xaf45a0,1, 0xaf45c0,11, 0xaf4600,9, 0xaf4640,3, 0xaf4650,3, 0xaf4664,3, 0xaf4680,22, 0xaf4800,11, 0xaf5000,552, 0xaf6200,4, 0xaf6220,4, 0xaf6240,11, 0xaf6270,32, 0xaf6300,24, 0xaf6380,20, 0xaf6400,61, 0xaf6500,25, 0xaf6568,4, 0xaf6580,2, 0xaf65a0,1, 0xaf65c0,11, 0xaf6600,9, 0xaf6640,3, 0xaf6650,3, 0xaf6664,3, 0xaf6680,22, 0xaf6800,11, 0xaf7000,552, 0xaf8200,4, 0xaf8220,4, 0xaf8240,11, 0xaf8270,32, 0xaf8300,24, 0xaf8380,20, 0xaf8400,61, 0xaf8500,25, 0xaf8568,4, 0xaf8580,2, 0xaf85a0,1, 0xaf85c0,11, 0xaf8600,9, 0xaf8640,3, 0xaf8650,3, 0xaf8664,3, 0xaf8680,22, 0xaf8800,11, 0xaf9000,552, 0xafa000,7, 0xafa048,8, 0xafa080,8, 0xafa100,7, 0xafa148,8, 0xafa180,8, 0xafa200,7, 0xafa248,8, 0xafa280,8, 0xafa300,7, 0xafa348,8, 0xafa380,8, 0xb00000,4, 0xb00014,1, 0xb00020,3, 0xb00030,3, 0xb00040,13, 0xb00078,4, 0xb0009c,29, 0xb00114,1, 0xb00120,3, 0xb00130,3, 0xb00140,13, 0xb00178,4, 0xb0019c,29, 0xb00214,1, 0xb00220,3, 0xb00230,3, 0xb00240,13, 0xb00278,4, 0xb0029c,29, 0xb00314,1, 0xb00320,3, 0xb00330,3, 0xb00340,13, 0xb00378,4, 0xb0039c,29, 0xb00420,2, 0xb0042c,2, 0xb00440,4, 0xb00460,2, 0xb0046c,2, 0xb00480,4, 0xb004a0,2, 0xb004ac,2, 0xb004c0,4, 0xb004e0,2, 0xb004ec,2, 0xb00500,2, 0xb0050c,4, 0xb00520,2, 0xb0052c,4, 0xb00540,2, 0xb0054c,4, 0xb00560,2, 0xb0056c,4, 0xb005c0,1, 0xb00600,16, 0xb00800,18, 0xb00880,13, 0xb008f0,3, 0xb00900,18, 0xb00980,13, 0xb009f0,3, 0xb00a00,18, 0xb00a80,13, 0xb00af0,3, 0xb00b00,18, 0xb00b80,13, 0xb00bf0,3, 0xb00c00,6, 0xb00c20,16, 0xb00c80,6, 0xb00ca0,16, 0xb00d00,6, 0xb00d20,16, 0xb00d80,6, 0xb00da0,16, 0xb00e00,4, 0xb00e20,4, 0xb00e40,4, 0xb00e60,4, 0xb00e80,37, 0xb00f20,5, 0xb00f40,5, 0xb00f60,5, 0xb01000,12, 0xb01200,1, 0xb01208,6, 0xb01228,9, 0xb01280,1, 0xb01288,6, 0xb012a8,9, 0xb01300,1, 0xb01308,6, 0xb01328,9, 0xb01380,1, 0xb01388,6, 0xb013a8,9, 0xb01400,4, 0xb01480,4, 0xb01500,4, 0xb01580,4, 0xb01600,71, 0xb01720,7, 0xb01740,7, 0xb01760,7, 0xb01780,4, 0xb0179c,11, 0xb017d0,2, 0xb017e0,2, 0xb017f0,2, 0xb01800,7, 0xb01820,7, 0xb01840,7, 0xb01860,7, 0xb018c0,64, 0xb01aa0,2, 0xb01ac0,8, 0xb02000,7, 0xb02020,4, 0xb02040,4, 0xb02060,7, 0xb02080,7, 0xb020a0,4, 0xb020c0,4, 0xb020e0,7, 0xb02100,7, 0xb02120,4, 0xb02140,4, 0xb02160,7, 0xb02180,7, 0xb021a0,4, 0xb021c0,4, 0xb021e0,7, 0xb02200,19, 0xb02280,19, 0xb02300,19, 0xb02380,19, 0xb02400,14, 0xb0243c,9, 0xb02464,6, 0xb02480,7, 0xb024a0,2, 0xb024ac,2, 0xb02500,14, 0xb0253c,9, 0xb02564,6, 0xb02580,7, 0xb025a0,2, 0xb025ac,2, 0xb02600,14, 0xb0263c,9, 0xb02664,6, 0xb02680,7, 0xb026a0,2, 0xb026ac,2, 0xb02700,14, 0xb0273c,9, 0xb02764,6, 0xb02780,7, 0xb027a0,2, 0xb027ac,2, 0xb02800,19, 0xb02880,19, 0xb02900,19, 0xb02980,19, 0xb02a10,2, 0xb02a1c,1, 0xb02a50,2, 0xb02a5c,1, 0xb02a90,2, 0xb02a9c,1, 0xb02ad0,2, 0xb02adc,1, 0xb02c00,7, 0xb02c20,1, 0xb02c54,18, 0xb02ca0,1, 0xb02cd4,18, 0xb02d20,1, 0xb02d54,18, 0xb02da0,1, 0xb02dd4,12, 0xb02e08,6, 0xb03100,7, 0xb03120,7, 0xb03140,7, 0xb03160,7, 0xb03180,3, 0xb04000,4, 0xb04014,1, 0xb04020,3, 0xb04030,3, 0xb04040,13, 0xb04078,4, 0xb0409c,29, 0xb04114,1, 0xb04120,3, 0xb04130,3, 0xb04140,13, 0xb04178,4, 0xb0419c,29, 0xb04214,1, 0xb04220,3, 0xb04230,3, 0xb04240,13, 0xb04278,4, 0xb0429c,29, 0xb04314,1, 0xb04320,3, 0xb04330,3, 0xb04340,13, 0xb04378,4, 0xb0439c,29, 0xb04420,2, 0xb0442c,2, 0xb04440,4, 0xb04460,2, 0xb0446c,2, 0xb04480,4, 0xb044a0,2, 0xb044ac,2, 0xb044c0,4, 0xb044e0,2, 0xb044ec,2, 0xb04500,2, 0xb0450c,4, 0xb04520,2, 0xb0452c,4, 0xb04540,2, 0xb0454c,4, 0xb04560,2, 0xb0456c,4, 0xb045c0,1, 0xb04600,16, 0xb04800,18, 0xb04880,13, 0xb048f0,3, 0xb04900,18, 0xb04980,13, 0xb049f0,3, 0xb04a00,18, 0xb04a80,13, 0xb04af0,3, 0xb04b00,18, 0xb04b80,13, 0xb04bf0,3, 0xb04c00,6, 0xb04c20,16, 0xb04c80,6, 0xb04ca0,16, 0xb04d00,6, 0xb04d20,16, 0xb04d80,6, 0xb04da0,16, 0xb04e00,4, 0xb04e20,4, 0xb04e40,4, 0xb04e60,4, 0xb04e80,37, 0xb04f20,5, 0xb04f40,5, 0xb04f60,5, 0xb05000,12, 0xb05200,1, 0xb05208,6, 0xb05228,9, 0xb05280,1, 0xb05288,6, 0xb052a8,9, 0xb05300,1, 0xb05308,6, 0xb05328,9, 0xb05380,1, 0xb05388,6, 0xb053a8,9, 0xb05400,4, 0xb05480,4, 0xb05500,4, 0xb05580,4, 0xb05600,71, 0xb05720,7, 0xb05740,7, 0xb05760,7, 0xb05780,4, 0xb0579c,11, 0xb057d0,2, 0xb057e0,2, 0xb057f0,2, 0xb05800,7, 0xb05820,7, 0xb05840,7, 0xb05860,7, 0xb058c0,64, 0xb05aa0,2, 0xb05ac0,8, 0xb06000,7, 0xb06020,4, 0xb06040,4, 0xb06060,7, 0xb06080,7, 0xb060a0,4, 0xb060c0,4, 0xb060e0,7, 0xb06100,7, 0xb06120,4, 0xb06140,4, 0xb06160,7, 0xb06180,7, 0xb061a0,4, 0xb061c0,4, 0xb061e0,7, 0xb06200,19, 0xb06280,19, 0xb06300,19, 0xb06380,19, 0xb06400,14, 0xb0643c,9, 0xb06464,6, 0xb06480,7, 0xb064a0,2, 0xb064ac,2, 0xb06500,14, 0xb0653c,9, 0xb06564,6, 0xb06580,7, 0xb065a0,2, 0xb065ac,2, 0xb06600,14, 0xb0663c,9, 0xb06664,6, 0xb06680,7, 0xb066a0,2, 0xb066ac,2, 0xb06700,14, 0xb0673c,9, 0xb06764,6, 0xb06780,7, 0xb067a0,2, 0xb067ac,2, 0xb06800,19, 0xb06880,19, 0xb06900,19, 0xb06980,19, 0xb06a10,2, 0xb06a1c,1, 0xb06a50,2, 0xb06a5c,1, 0xb06a90,2, 0xb06a9c,1, 0xb06ad0,2, 0xb06adc,1, 0xb06c00,7, 0xb06c20,1, 0xb06c54,18, 0xb06ca0,1, 0xb06cd4,18, 0xb06d20,1, 0xb06d54,18, 0xb06da0,1, 0xb06dd4,12, 0xb06e08,6, 0xb07100,7, 0xb07120,7, 0xb07140,7, 0xb07160,7, 0xb07180,3, 0xb08000,19, 0xb08c00,10, 0xb08c80,3, 0xb08cc0,1, 0xb09000,13, 0xb09080,21, 0xb0c000,16, 0xb0c080,11, 0xb0c100,11, 0xb0c204,1, 0xb0c224,21, 0xb0c280,16, 0xb0c300,11, 0xb0c340,11, 0xb0d000,8, 0xb0d024,10, 0xb0d050,22, 0xb0d100,8, 0xb0d124,10, 0xb0d150,22, 0xb0d200,8, 0xb0d224,10, 0xb0d250,22, 0xb0d300,8, 0xb0d324,10, 0xb0d350,22, 0xb0d400,8, 0xb0d424,10, 0xb0d450,22, 0xb0d500,8, 0xb0d524,10, 0xb0d550,22, 0xb0d600,8, 0xb0d624,10, 0xb0d650,22, 0xb0d700,8, 0xb0d724,10, 0xb0d750,22, 0xb0d800,8, 0xb0d824,10, 0xb0d850,22, 0xb0d904,1, 0xb0d914,10, 0xb0d948,11, 0xb0d980,1, 0xb0d9a0,6, 0xb0d9c0,2, 0xb0d9cc,2, 0xb0e000,35, 0xb0ec00,10, 0xb0ec80,3, 0xb0f000,1, 0xb0f008,3, 0xb0f038,1, 0xb0f044,1, 0xb0f050,2, 0xb0f060,8, 0xb0f100,13, 0xb0f140,19, 0xb0f190,4, 0xb10000,13, 0xb10040,2, 0xb10054,4, 0xb10080,27, 0xb10100,12, 0xb10140,14, 0xb10180,28, 0xb10200,6, 0xb10240,6, 0xb1025c,3, 0xb10280,5, 0xb102a0,8, 0xb10400,14, 0xb10440,14, 0xb10480,14, 0xb104c0,14, 0xb10540,3, 0xb10600,7, 0xb10620,14, 0xb10680,5, 0xb106a0,7, 0xb10800,13, 0xb10840,2, 0xb10854,4, 0xb10880,27, 0xb10900,12, 0xb10940,14, 0xb10980,28, 0xb10a00,6, 0xb10a40,6, 0xb10a5c,3, 0xb10a80,5, 0xb10aa0,8, 0xb10c00,14, 0xb10c40,14, 0xb10c80,14, 0xb10cc0,14, 0xb10d40,3, 0xb10e00,7, 0xb10e20,14, 0xb10e80,5, 0xb10ea0,7, 0xb11000,13, 0xb11040,2, 0xb11054,4, 0xb11080,27, 0xb11100,12, 0xb11140,14, 0xb11180,28, 0xb11200,6, 0xb11240,6, 0xb1125c,3, 0xb11280,5, 0xb112a0,8, 0xb11400,14, 0xb11440,14, 0xb11480,14, 0xb114c0,14, 0xb11540,3, 0xb11600,7, 0xb11620,14, 0xb11680,5, 0xb116a0,7, 0xb11800,13, 0xb11840,2, 0xb11854,4, 0xb11880,27, 0xb11900,12, 0xb11940,14, 0xb11980,28, 0xb11a00,6, 0xb11a40,6, 0xb11a5c,3, 0xb11a80,5, 0xb11aa0,8, 0xb11c00,14, 0xb11c40,14, 0xb11c80,14, 0xb11cc0,14, 0xb11d40,3, 0xb11e00,7, 0xb11e20,14, 0xb11e80,5, 0xb11ea0,7, 0xb12000,8, 0xb12040,8, 0xb12080,1, 0xb12098,6, 0xb12100,10, 0xb12140,3, 0xb12150,2, 0xb12180,2, 0xb12200,6, 0xb12220,18, 0xb12280,4, 0xb12300,8, 0xb12400,2, 0xb12480,2, 0xb13000,40, 0xb13100,64, 0xb14000,13, 0xb14040,2, 0xb14054,4, 0xb14080,27, 0xb14100,12, 0xb14140,14, 0xb14180,28, 0xb14200,6, 0xb14240,6, 0xb1425c,3, 0xb14280,5, 0xb142a0,8, 0xb14400,14, 0xb14440,14, 0xb14480,14, 0xb144c0,14, 0xb14540,3, 0xb14600,7, 0xb14620,14, 0xb14680,5, 0xb146a0,7, 0xb14800,13, 0xb14840,2, 0xb14854,4, 0xb14880,27, 0xb14900,12, 0xb14940,14, 0xb14980,28, 0xb14a00,6, 0xb14a40,6, 0xb14a5c,3, 0xb14a80,5, 0xb14aa0,8, 0xb14c00,14, 0xb14c40,14, 0xb14c80,14, 0xb14cc0,14, 0xb14d40,3, 0xb14e00,7, 0xb14e20,14, 0xb14e80,5, 0xb14ea0,7, 0xb15000,13, 0xb15040,2, 0xb15054,4, 0xb15080,27, 0xb15100,12, 0xb15140,14, 0xb15180,28, 0xb15200,6, 0xb15240,6, 0xb1525c,3, 0xb15280,5, 0xb152a0,8, 0xb15400,14, 0xb15440,14, 0xb15480,14, 0xb154c0,14, 0xb15540,3, 0xb15600,7, 0xb15620,14, 0xb15680,5, 0xb156a0,7, 0xb15800,13, 0xb15840,2, 0xb15854,4, 0xb15880,27, 0xb15900,12, 0xb15940,14, 0xb15980,28, 0xb15a00,6, 0xb15a40,6, 0xb15a5c,3, 0xb15a80,5, 0xb15aa0,8, 0xb15c00,14, 0xb15c40,14, 0xb15c80,14, 0xb15cc0,14, 0xb15d40,3, 0xb15e00,7, 0xb15e20,14, 0xb15e80,5, 0xb15ea0,7, 0xb16000,8, 0xb16040,8, 0xb16080,1, 0xb16098,6, 0xb16100,10, 0xb16140,3, 0xb16150,2, 0xb16180,2, 0xb16200,6, 0xb16220,18, 0xb16280,4, 0xb16300,8, 0xb16400,2, 0xb16480,2, 0xb17000,40, 0xb17100,64, 0xb20000,5, 0xb20018,5, 0xb20030,3, 0xb20044,3, 0xb20100,58, 0xb201f0,3, 0xb20280,3, 0xb20400,5, 0xb20418,5, 0xb20430,3, 0xb20444,3, 0xb20500,58, 0xb205f0,3, 0xb20680,3, 0xb20800,5, 0xb20818,5, 0xb20830,3, 0xb20844,3, 0xb20900,58, 0xb209f0,3, 0xb20a80,3, 0xb20c00,5, 0xb20c18,5, 0xb20c30,3, 0xb20c44,3, 0xb20d00,58, 0xb20df0,3, 0xb20e80,3, 0xb21018,1, 0xb21100,2, 0xb21110,10, 0xb21140,2, 0xb21150,10, 0xb21180,2, 0xb21190,10, 0xb211c0,2, 0xb211d0,10, 0xb21208,1, 0xb21220,16, 0xb21280,1, 0xb21288,2, 0xb21400,8, 0xb24000,2, 0xb2400c,1, 0xb24030,3, 0xb24040,2, 0xb2404c,1, 0xb24070,3, 0xb24080,2, 0xb2408c,1, 0xb240b0,3, 0xb240c0,2, 0xb240cc,1, 0xb240f0,3, 0xb24200,15, 0xb24280,15, 0xb24300,15, 0xb24380,15, 0xb24400,15, 0xb24480,15, 0xb24500,15, 0xb24580,15, 0xb24604,10, 0xb24700,2, 0xb2470c,7, 0xb24740,1, 0xb24770,1, 0xb247c0,2, 0xb247d0,4, 0xb24800,3, 0xb24810,1, 0xb2481c,3, 0xb24b04,1, 0xb24b0c,5, 0xb24b44,1, 0xb24b50,5, 0xb24b70,6, 0xb24b90,2, 0xb24c00,129, 0xb25000,39, 0xb25100,39, 0xb25200,39, 0xb25300,39, 0xb25400,39, 0xb25500,39, 0xb25600,39, 0xb25700,39, 0xb25f00,19, 0xb26000,131, 0xb26400,4, 0xb26440,15, 0xb26480,4, 0xb264c0,15, 0xb26500,4, 0xb26540,15, 0xb26580,4, 0xb265c0,15, 0xb26600,4, 0xb26640,10, 0xb26680,4, 0xb266c0,10, 0xb26700,4, 0xb26740,10, 0xb26780,4, 0xb267c0,10, 0xb26800,4, 0xb26840,14, 0xb26880,17, 0xb26900,2, 0xb26a00,13, 0xb26a80,1, 0xb26a88,8, 0xb26ac0,6, 0xb26ae0,1, 0xb26ae8,2, 0xb26b04,13, 0xb26fcc,32, 0xb28000,5, 0xb28018,5, 0xb28030,3, 0xb28044,3, 0xb28100,58, 0xb281f0,3, 0xb28280,3, 0xb28400,5, 0xb28418,5, 0xb28430,3, 0xb28444,3, 0xb28500,58, 0xb285f0,3, 0xb28680,3, 0xb28800,5, 0xb28818,5, 0xb28830,3, 0xb28844,3, 0xb28900,58, 0xb289f0,3, 0xb28a80,3, 0xb28c00,5, 0xb28c18,5, 0xb28c30,3, 0xb28c44,3, 0xb28d00,58, 0xb28df0,3, 0xb28e80,3, 0xb29018,1, 0xb29100,2, 0xb29110,10, 0xb29140,2, 0xb29150,10, 0xb29180,2, 0xb29190,10, 0xb291c0,2, 0xb291d0,10, 0xb29208,1, 0xb29220,16, 0xb29280,1, 0xb29288,2, 0xb29400,8, 0xb2c000,2, 0xb2c00c,1, 0xb2c030,3, 0xb2c040,2, 0xb2c04c,1, 0xb2c070,3, 0xb2c080,2, 0xb2c08c,1, 0xb2c0b0,3, 0xb2c0c0,2, 0xb2c0cc,1, 0xb2c0f0,3, 0xb2c200,15, 0xb2c280,15, 0xb2c300,15, 0xb2c380,15, 0xb2c400,15, 0xb2c480,15, 0xb2c500,15, 0xb2c580,15, 0xb2c604,10, 0xb2c700,2, 0xb2c70c,7, 0xb2c740,1, 0xb2c770,1, 0xb2c7c0,2, 0xb2c7d0,4, 0xb2c800,3, 0xb2c810,1, 0xb2c81c,3, 0xb2cb04,1, 0xb2cb0c,5, 0xb2cb44,1, 0xb2cb50,5, 0xb2cb70,6, 0xb2cb90,2, 0xb2cc00,129, 0xb2d000,39, 0xb2d100,39, 0xb2d200,39, 0xb2d300,39, 0xb2d400,39, 0xb2d500,39, 0xb2d600,39, 0xb2d700,39, 0xb2df00,19, 0xb2e000,131, 0xb2e400,4, 0xb2e440,15, 0xb2e480,4, 0xb2e4c0,15, 0xb2e500,4, 0xb2e540,15, 0xb2e580,4, 0xb2e5c0,15, 0xb2e600,4, 0xb2e640,10, 0xb2e680,4, 0xb2e6c0,10, 0xb2e700,4, 0xb2e740,10, 0xb2e780,4, 0xb2e7c0,10, 0xb2e800,4, 0xb2e840,14, 0xb2e880,17, 0xb2e900,2, 0xb2ea00,13, 0xb2ea80,1, 0xb2ea88,8, 0xb2eac0,6, 0xb2eae0,1, 0xb2eae8,2, 0xb2eb04,13, 0xb2efcc,32, 0xb30000,35, 0xb30c00,10, 0xb30c80,3, 0xb31000,2, 0xb3100c,4, 0xb31028,3, 0xb31038,4, 0xb31050,2, 0xb31060,2, 0xb31070,2, 0xb31080,4, 0xb31098,7, 0xb31120,8, 0xb31200,4, 0xb31214,7, 0xb31234,7, 0xb31254,7, 0xb31274,24, 0xb31300,2, 0xb3130c,3, 0xb31400,32, 0xb31484,2, 0xb31490,3, 0xb31500,25, 0xb315c0,8, 0xb315e8,5, 0xb31600,5, 0xb31618,18, 0xb31690,4, 0xb31740,2, 0xb31760,6, 0xb31780,6, 0xb317a0,6, 0xb317c0,6, 0xb317e0,1, 0xb31800,19, 0xb31880,2, 0xb318b0,2, 0xb318c0,2, 0xb34000,35, 0xb34c00,10, 0xb34c80,3, 0xb35000,2, 0xb3500c,4, 0xb35028,3, 0xb35038,4, 0xb35050,2, 0xb35060,2, 0xb35070,2, 0xb35080,4, 0xb35098,7, 0xb35120,8, 0xb35200,4, 0xb35214,7, 0xb35234,7, 0xb35254,7, 0xb35274,24, 0xb35300,2, 0xb3530c,3, 0xb35400,32, 0xb35484,2, 0xb35490,3, 0xb35500,25, 0xb355c0,8, 0xb355e8,5, 0xb35600,5, 0xb35618,18, 0xb35690,4, 0xb35740,2, 0xb35760,6, 0xb35780,6, 0xb357a0,6, 0xb357c0,6, 0xb357e0,1, 0xb35800,19, 0xb35880,2, 0xb358b0,2, 0xb358c0,2, 0xb40000,11, 0xb40040,16, 0xb40084,5, 0xb40200,7, 0xb40220,6, 0xb40240,7, 0xb40260,6, 0xb40280,6, 0xb402a0,2, 0xb402ac,2, 0xb402c0,7, 0xb402e0,7, 0xb40300,2, 0xb4030c,2, 0xb40320,6, 0xb40400,2, 0xb41000,19, 0xb41c00,10, 0xb41c80,3, 0xb42200,4, 0xb42220,4, 0xb42240,11, 0xb42270,32, 0xb42300,24, 0xb42380,20, 0xb42400,61, 0xb42500,25, 0xb42568,4, 0xb42580,2, 0xb425a0,1, 0xb425c0,11, 0xb42600,9, 0xb42640,3, 0xb42650,3, 0xb42664,3, 0xb42680,22, 0xb42800,11, 0xb43000,552, 0xb44200,4, 0xb44220,4, 0xb44240,11, 0xb44270,32, 0xb44300,24, 0xb44380,20, 0xb44400,61, 0xb44500,25, 0xb44568,4, 0xb44580,2, 0xb445a0,1, 0xb445c0,11, 0xb44600,9, 0xb44640,3, 0xb44650,3, 0xb44664,3, 0xb44680,22, 0xb44800,11, 0xb45000,552, 0xb46200,4, 0xb46220,4, 0xb46240,11, 0xb46270,32, 0xb46300,24, 0xb46380,20, 0xb46400,61, 0xb46500,25, 0xb46568,4, 0xb46580,2, 0xb465a0,1, 0xb465c0,11, 0xb46600,9, 0xb46640,3, 0xb46650,3, 0xb46664,3, 0xb46680,22, 0xb46800,11, 0xb47000,552, 0xb48200,4, 0xb48220,4, 0xb48240,11, 0xb48270,32, 0xb48300,24, 0xb48380,20, 0xb48400,61, 0xb48500,25, 0xb48568,4, 0xb48580,2, 0xb485a0,1, 0xb485c0,11, 0xb48600,9, 0xb48640,3, 0xb48650,3, 0xb48664,3, 0xb48680,22, 0xb48800,11, 0xb49000,552, 0xb4a000,7, 0xb4a048,8, 0xb4a080,8, 0xb4a100,7, 0xb4a148,8, 0xb4a180,8, 0xb4a200,7, 0xb4a248,8, 0xb4a280,8, 0xb4a300,7, 0xb4a348,8, 0xb4a380,8, 0xb50000,11, 0xb50040,16, 0xb50084,5, 0xb50200,7, 0xb50220,6, 0xb50240,7, 0xb50260,6, 0xb50280,6, 0xb502a0,2, 0xb502ac,2, 0xb502c0,7, 0xb502e0,7, 0xb50300,2, 0xb5030c,2, 0xb50320,6, 0xb50400,2, 0xb51000,19, 0xb51c00,10, 0xb51c80,3, 0xb52200,4, 0xb52220,4, 0xb52240,11, 0xb52270,32, 0xb52300,24, 0xb52380,20, 0xb52400,61, 0xb52500,25, 0xb52568,4, 0xb52580,2, 0xb525a0,1, 0xb525c0,11, 0xb52600,9, 0xb52640,3, 0xb52650,3, 0xb52664,3, 0xb52680,22, 0xb52800,11, 0xb53000,552, 0xb54200,4, 0xb54220,4, 0xb54240,11, 0xb54270,32, 0xb54300,24, 0xb54380,20, 0xb54400,61, 0xb54500,25, 0xb54568,4, 0xb54580,2, 0xb545a0,1, 0xb545c0,11, 0xb54600,9, 0xb54640,3, 0xb54650,3, 0xb54664,3, 0xb54680,22, 0xb54800,11, 0xb55000,552, 0xb56200,4, 0xb56220,4, 0xb56240,11, 0xb56270,32, 0xb56300,24, 0xb56380,20, 0xb56400,61, 0xb56500,25, 0xb56568,4, 0xb56580,2, 0xb565a0,1, 0xb565c0,11, 0xb56600,9, 0xb56640,3, 0xb56650,3, 0xb56664,3, 0xb56680,22, 0xb56800,11, 0xb57000,552, 0xb58200,4, 0xb58220,4, 0xb58240,11, 0xb58270,32, 0xb58300,24, 0xb58380,20, 0xb58400,61, 0xb58500,25, 0xb58568,4, 0xb58580,2, 0xb585a0,1, 0xb585c0,11, 0xb58600,9, 0xb58640,3, 0xb58650,3, 0xb58664,3, 0xb58680,22, 0xb58800,11, 0xb59000,552, 0xb5a000,7, 0xb5a048,8, 0xb5a080,8, 0xb5a100,7, 0xb5a148,8, 0xb5a180,8, 0xb5a200,7, 0xb5a248,8, 0xb5a280,8, 0xb5a300,7, 0xb5a348,8, 0xb5a380,8, 0xb60000,4, 0xb60014,1, 0xb60020,3, 0xb60030,3, 0xb60040,13, 0xb60078,4, 0xb6009c,29, 0xb60114,1, 0xb60120,3, 0xb60130,3, 0xb60140,13, 0xb60178,4, 0xb6019c,29, 0xb60214,1, 0xb60220,3, 0xb60230,3, 0xb60240,13, 0xb60278,4, 0xb6029c,29, 0xb60314,1, 0xb60320,3, 0xb60330,3, 0xb60340,13, 0xb60378,4, 0xb6039c,29, 0xb60420,2, 0xb6042c,2, 0xb60440,4, 0xb60460,2, 0xb6046c,2, 0xb60480,4, 0xb604a0,2, 0xb604ac,2, 0xb604c0,4, 0xb604e0,2, 0xb604ec,2, 0xb60500,2, 0xb6050c,4, 0xb60520,2, 0xb6052c,4, 0xb60540,2, 0xb6054c,4, 0xb60560,2, 0xb6056c,4, 0xb605c0,1, 0xb60600,16, 0xb60800,18, 0xb60880,13, 0xb608f0,3, 0xb60900,18, 0xb60980,13, 0xb609f0,3, 0xb60a00,18, 0xb60a80,13, 0xb60af0,3, 0xb60b00,18, 0xb60b80,13, 0xb60bf0,3, 0xb60c00,6, 0xb60c20,16, 0xb60c80,6, 0xb60ca0,16, 0xb60d00,6, 0xb60d20,16, 0xb60d80,6, 0xb60da0,16, 0xb60e00,4, 0xb60e20,4, 0xb60e40,4, 0xb60e60,4, 0xb60e80,37, 0xb60f20,5, 0xb60f40,5, 0xb60f60,5, 0xb61000,12, 0xb61200,1, 0xb61208,6, 0xb61228,9, 0xb61280,1, 0xb61288,6, 0xb612a8,9, 0xb61300,1, 0xb61308,6, 0xb61328,9, 0xb61380,1, 0xb61388,6, 0xb613a8,9, 0xb61400,4, 0xb61480,4, 0xb61500,4, 0xb61580,4, 0xb61600,71, 0xb61720,7, 0xb61740,7, 0xb61760,7, 0xb61780,4, 0xb6179c,11, 0xb617d0,2, 0xb617e0,2, 0xb617f0,2, 0xb61800,7, 0xb61820,7, 0xb61840,7, 0xb61860,7, 0xb618c0,64, 0xb61aa0,2, 0xb61ac0,8, 0xb62000,7, 0xb62020,4, 0xb62040,4, 0xb62060,7, 0xb62080,7, 0xb620a0,4, 0xb620c0,4, 0xb620e0,7, 0xb62100,7, 0xb62120,4, 0xb62140,4, 0xb62160,7, 0xb62180,7, 0xb621a0,4, 0xb621c0,4, 0xb621e0,7, 0xb62200,19, 0xb62280,19, 0xb62300,19, 0xb62380,19, 0xb62400,14, 0xb6243c,9, 0xb62464,6, 0xb62480,7, 0xb624a0,2, 0xb624ac,2, 0xb62500,14, 0xb6253c,9, 0xb62564,6, 0xb62580,7, 0xb625a0,2, 0xb625ac,2, 0xb62600,14, 0xb6263c,9, 0xb62664,6, 0xb62680,7, 0xb626a0,2, 0xb626ac,2, 0xb62700,14, 0xb6273c,9, 0xb62764,6, 0xb62780,7, 0xb627a0,2, 0xb627ac,2, 0xb62800,19, 0xb62880,19, 0xb62900,19, 0xb62980,19, 0xb62a10,2, 0xb62a1c,1, 0xb62a50,2, 0xb62a5c,1, 0xb62a90,2, 0xb62a9c,1, 0xb62ad0,2, 0xb62adc,1, 0xb62c00,7, 0xb62c20,1, 0xb62c54,18, 0xb62ca0,1, 0xb62cd4,18, 0xb62d20,1, 0xb62d54,18, 0xb62da0,1, 0xb62dd4,12, 0xb62e08,6, 0xb63100,7, 0xb63120,7, 0xb63140,7, 0xb63160,7, 0xb63180,3, 0xb64000,4, 0xb64014,1, 0xb64020,3, 0xb64030,3, 0xb64040,13, 0xb64078,4, 0xb6409c,29, 0xb64114,1, 0xb64120,3, 0xb64130,3, 0xb64140,13, 0xb64178,4, 0xb6419c,29, 0xb64214,1, 0xb64220,3, 0xb64230,3, 0xb64240,13, 0xb64278,4, 0xb6429c,29, 0xb64314,1, 0xb64320,3, 0xb64330,3, 0xb64340,13, 0xb64378,4, 0xb6439c,29, 0xb64420,2, 0xb6442c,2, 0xb64440,4, 0xb64460,2, 0xb6446c,2, 0xb64480,4, 0xb644a0,2, 0xb644ac,2, 0xb644c0,4, 0xb644e0,2, 0xb644ec,2, 0xb64500,2, 0xb6450c,4, 0xb64520,2, 0xb6452c,4, 0xb64540,2, 0xb6454c,4, 0xb64560,2, 0xb6456c,4, 0xb645c0,1, 0xb64600,16, 0xb64800,18, 0xb64880,13, 0xb648f0,3, 0xb64900,18, 0xb64980,13, 0xb649f0,3, 0xb64a00,18, 0xb64a80,13, 0xb64af0,3, 0xb64b00,18, 0xb64b80,13, 0xb64bf0,3, 0xb64c00,6, 0xb64c20,16, 0xb64c80,6, 0xb64ca0,16, 0xb64d00,6, 0xb64d20,16, 0xb64d80,6, 0xb64da0,16, 0xb64e00,4, 0xb64e20,4, 0xb64e40,4, 0xb64e60,4, 0xb64e80,37, 0xb64f20,5, 0xb64f40,5, 0xb64f60,5, 0xb65000,12, 0xb65200,1, 0xb65208,6, 0xb65228,9, 0xb65280,1, 0xb65288,6, 0xb652a8,9, 0xb65300,1, 0xb65308,6, 0xb65328,9, 0xb65380,1, 0xb65388,6, 0xb653a8,9, 0xb65400,4, 0xb65480,4, 0xb65500,4, 0xb65580,4, 0xb65600,71, 0xb65720,7, 0xb65740,7, 0xb65760,7, 0xb65780,4, 0xb6579c,11, 0xb657d0,2, 0xb657e0,2, 0xb657f0,2, 0xb65800,7, 0xb65820,7, 0xb65840,7, 0xb65860,7, 0xb658c0,64, 0xb65aa0,2, 0xb65ac0,8, 0xb66000,7, 0xb66020,4, 0xb66040,4, 0xb66060,7, 0xb66080,7, 0xb660a0,4, 0xb660c0,4, 0xb660e0,7, 0xb66100,7, 0xb66120,4, 0xb66140,4, 0xb66160,7, 0xb66180,7, 0xb661a0,4, 0xb661c0,4, 0xb661e0,7, 0xb66200,19, 0xb66280,19, 0xb66300,19, 0xb66380,19, 0xb66400,14, 0xb6643c,9, 0xb66464,6, 0xb66480,7, 0xb664a0,2, 0xb664ac,2, 0xb66500,14, 0xb6653c,9, 0xb66564,6, 0xb66580,7, 0xb665a0,2, 0xb665ac,2, 0xb66600,14, 0xb6663c,9, 0xb66664,6, 0xb66680,7, 0xb666a0,2, 0xb666ac,2, 0xb66700,14, 0xb6673c,9, 0xb66764,6, 0xb66780,7, 0xb667a0,2, 0xb667ac,2, 0xb66800,19, 0xb66880,19, 0xb66900,19, 0xb66980,19, 0xb66a10,2, 0xb66a1c,1, 0xb66a50,2, 0xb66a5c,1, 0xb66a90,2, 0xb66a9c,1, 0xb66ad0,2, 0xb66adc,1, 0xb66c00,7, 0xb66c20,1, 0xb66c54,18, 0xb66ca0,1, 0xb66cd4,18, 0xb66d20,1, 0xb66d54,18, 0xb66da0,1, 0xb66dd4,12, 0xb66e08,6, 0xb67100,7, 0xb67120,7, 0xb67140,7, 0xb67160,7, 0xb67180,3, 0xb68000,19, 0xb68c00,10, 0xb68c80,3, 0xb68cc0,1, 0xb69000,13, 0xb69080,21, 0xb6c000,16, 0xb6c080,11, 0xb6c100,11, 0xb6c204,1, 0xb6c224,21, 0xb6c280,16, 0xb6c300,11, 0xb6c340,11, 0xb6d000,8, 0xb6d024,10, 0xb6d050,22, 0xb6d100,8, 0xb6d124,10, 0xb6d150,22, 0xb6d200,8, 0xb6d224,10, 0xb6d250,22, 0xb6d300,8, 0xb6d324,10, 0xb6d350,22, 0xb6d400,8, 0xb6d424,10, 0xb6d450,22, 0xb6d500,8, 0xb6d524,10, 0xb6d550,22, 0xb6d600,8, 0xb6d624,10, 0xb6d650,22, 0xb6d700,8, 0xb6d724,10, 0xb6d750,22, 0xb6d800,8, 0xb6d824,10, 0xb6d850,22, 0xb6d904,1, 0xb6d914,10, 0xb6d948,11, 0xb6d980,1, 0xb6d9a0,6, 0xb6d9c0,2, 0xb6d9cc,2, 0xb6e000,35, 0xb6ec00,10, 0xb6ec80,3, 0xb6f000,1, 0xb6f008,3, 0xb6f038,1, 0xb6f044,1, 0xb6f050,2, 0xb6f060,8, 0xb6f100,13, 0xb6f140,19, 0xb6f190,4, 0xb70000,13, 0xb70040,2, 0xb70054,4, 0xb70080,27, 0xb70100,12, 0xb70140,14, 0xb70180,28, 0xb70200,6, 0xb70240,6, 0xb7025c,3, 0xb70280,5, 0xb702a0,8, 0xb70400,14, 0xb70440,14, 0xb70480,14, 0xb704c0,14, 0xb70540,3, 0xb70600,7, 0xb70620,14, 0xb70680,5, 0xb706a0,7, 0xb70800,13, 0xb70840,2, 0xb70854,4, 0xb70880,27, 0xb70900,12, 0xb70940,14, 0xb70980,28, 0xb70a00,6, 0xb70a40,6, 0xb70a5c,3, 0xb70a80,5, 0xb70aa0,8, 0xb70c00,14, 0xb70c40,14, 0xb70c80,14, 0xb70cc0,14, 0xb70d40,3, 0xb70e00,7, 0xb70e20,14, 0xb70e80,5, 0xb70ea0,7, 0xb71000,13, 0xb71040,2, 0xb71054,4, 0xb71080,27, 0xb71100,12, 0xb71140,14, 0xb71180,28, 0xb71200,6, 0xb71240,6, 0xb7125c,3, 0xb71280,5, 0xb712a0,8, 0xb71400,14, 0xb71440,14, 0xb71480,14, 0xb714c0,14, 0xb71540,3, 0xb71600,7, 0xb71620,14, 0xb71680,5, 0xb716a0,7, 0xb71800,13, 0xb71840,2, 0xb71854,4, 0xb71880,27, 0xb71900,12, 0xb71940,14, 0xb71980,28, 0xb71a00,6, 0xb71a40,6, 0xb71a5c,3, 0xb71a80,5, 0xb71aa0,8, 0xb71c00,14, 0xb71c40,14, 0xb71c80,14, 0xb71cc0,14, 0xb71d40,3, 0xb71e00,7, 0xb71e20,14, 0xb71e80,5, 0xb71ea0,7, 0xb72000,8, 0xb72040,8, 0xb72080,1, 0xb72098,6, 0xb72100,10, 0xb72140,3, 0xb72150,2, 0xb72180,2, 0xb72200,6, 0xb72220,18, 0xb72280,4, 0xb72300,8, 0xb72400,2, 0xb72480,2, 0xb73000,40, 0xb73100,64, 0xb74000,13, 0xb74040,2, 0xb74054,4, 0xb74080,27, 0xb74100,12, 0xb74140,14, 0xb74180,28, 0xb74200,6, 0xb74240,6, 0xb7425c,3, 0xb74280,5, 0xb742a0,8, 0xb74400,14, 0xb74440,14, 0xb74480,14, 0xb744c0,14, 0xb74540,3, 0xb74600,7, 0xb74620,14, 0xb74680,5, 0xb746a0,7, 0xb74800,13, 0xb74840,2, 0xb74854,4, 0xb74880,27, 0xb74900,12, 0xb74940,14, 0xb74980,28, 0xb74a00,6, 0xb74a40,6, 0xb74a5c,3, 0xb74a80,5, 0xb74aa0,8, 0xb74c00,14, 0xb74c40,14, 0xb74c80,14, 0xb74cc0,14, 0xb74d40,3, 0xb74e00,7, 0xb74e20,14, 0xb74e80,5, 0xb74ea0,7, 0xb75000,13, 0xb75040,2, 0xb75054,4, 0xb75080,27, 0xb75100,12, 0xb75140,14, 0xb75180,28, 0xb75200,6, 0xb75240,6, 0xb7525c,3, 0xb75280,5, 0xb752a0,8, 0xb75400,14, 0xb75440,14, 0xb75480,14, 0xb754c0,14, 0xb75540,3, 0xb75600,7, 0xb75620,14, 0xb75680,5, 0xb756a0,7, 0xb75800,13, 0xb75840,2, 0xb75854,4, 0xb75880,27, 0xb75900,12, 0xb75940,14, 0xb75980,28, 0xb75a00,6, 0xb75a40,6, 0xb75a5c,3, 0xb75a80,5, 0xb75aa0,8, 0xb75c00,14, 0xb75c40,14, 0xb75c80,14, 0xb75cc0,14, 0xb75d40,3, 0xb75e00,7, 0xb75e20,14, 0xb75e80,5, 0xb75ea0,7, 0xb76000,8, 0xb76040,8, 0xb76080,1, 0xb76098,6, 0xb76100,10, 0xb76140,3, 0xb76150,2, 0xb76180,2, 0xb76200,6, 0xb76220,18, 0xb76280,4, 0xb76300,8, 0xb76400,2, 0xb76480,2, 0xb77000,40, 0xb77100,64, 0xb80000,5, 0xb80018,5, 0xb80030,3, 0xb80044,3, 0xb80100,58, 0xb801f0,3, 0xb80280,3, 0xb80400,5, 0xb80418,5, 0xb80430,3, 0xb80444,3, 0xb80500,58, 0xb805f0,3, 0xb80680,3, 0xb80800,5, 0xb80818,5, 0xb80830,3, 0xb80844,3, 0xb80900,58, 0xb809f0,3, 0xb80a80,3, 0xb80c00,5, 0xb80c18,5, 0xb80c30,3, 0xb80c44,3, 0xb80d00,58, 0xb80df0,3, 0xb80e80,3, 0xb81018,1, 0xb81100,2, 0xb81110,10, 0xb81140,2, 0xb81150,10, 0xb81180,2, 0xb81190,10, 0xb811c0,2, 0xb811d0,10, 0xb81208,1, 0xb81220,16, 0xb81280,1, 0xb81288,2, 0xb81400,8, 0xb84000,2, 0xb8400c,1, 0xb84030,3, 0xb84040,2, 0xb8404c,1, 0xb84070,3, 0xb84080,2, 0xb8408c,1, 0xb840b0,3, 0xb840c0,2, 0xb840cc,1, 0xb840f0,3, 0xb84200,15, 0xb84280,15, 0xb84300,15, 0xb84380,15, 0xb84400,15, 0xb84480,15, 0xb84500,15, 0xb84580,15, 0xb84604,10, 0xb84700,2, 0xb8470c,7, 0xb84740,1, 0xb84770,1, 0xb847c0,2, 0xb847d0,4, 0xb84800,3, 0xb84810,1, 0xb8481c,3, 0xb84b04,1, 0xb84b0c,5, 0xb84b44,1, 0xb84b50,5, 0xb84b70,6, 0xb84b90,2, 0xb84c00,129, 0xb85000,39, 0xb85100,39, 0xb85200,39, 0xb85300,39, 0xb85400,39, 0xb85500,39, 0xb85600,39, 0xb85700,39, 0xb85f00,19, 0xb86000,131, 0xb86400,4, 0xb86440,15, 0xb86480,4, 0xb864c0,15, 0xb86500,4, 0xb86540,15, 0xb86580,4, 0xb865c0,15, 0xb86600,4, 0xb86640,10, 0xb86680,4, 0xb866c0,10, 0xb86700,4, 0xb86740,10, 0xb86780,4, 0xb867c0,10, 0xb86800,4, 0xb86840,14, 0xb86880,17, 0xb86900,2, 0xb86a00,13, 0xb86a80,1, 0xb86a88,8, 0xb86ac0,6, 0xb86ae0,1, 0xb86ae8,2, 0xb86b04,13, 0xb86fcc,32, 0xb88000,5, 0xb88018,5, 0xb88030,3, 0xb88044,3, 0xb88100,58, 0xb881f0,3, 0xb88280,3, 0xb88400,5, 0xb88418,5, 0xb88430,3, 0xb88444,3, 0xb88500,58, 0xb885f0,3, 0xb88680,3, 0xb88800,5, 0xb88818,5, 0xb88830,3, 0xb88844,3, 0xb88900,58, 0xb889f0,3, 0xb88a80,3, 0xb88c00,5, 0xb88c18,5, 0xb88c30,3, 0xb88c44,3, 0xb88d00,58, 0xb88df0,3, 0xb88e80,3, 0xb89018,1, 0xb89100,2, 0xb89110,10, 0xb89140,2, 0xb89150,10, 0xb89180,2, 0xb89190,10, 0xb891c0,2, 0xb891d0,10, 0xb89208,1, 0xb89220,16, 0xb89280,1, 0xb89288,2, 0xb89400,8, 0xb8c000,2, 0xb8c00c,1, 0xb8c030,3, 0xb8c040,2, 0xb8c04c,1, 0xb8c070,3, 0xb8c080,2, 0xb8c08c,1, 0xb8c0b0,3, 0xb8c0c0,2, 0xb8c0cc,1, 0xb8c0f0,3, 0xb8c200,15, 0xb8c280,15, 0xb8c300,15, 0xb8c380,15, 0xb8c400,15, 0xb8c480,15, 0xb8c500,15, 0xb8c580,15, 0xb8c604,10, 0xb8c700,2, 0xb8c70c,7, 0xb8c740,1, 0xb8c770,1, 0xb8c7c0,2, 0xb8c7d0,4, 0xb8c800,3, 0xb8c810,1, 0xb8c81c,3, 0xb8cb04,1, 0xb8cb0c,5, 0xb8cb44,1, 0xb8cb50,5, 0xb8cb70,6, 0xb8cb90,2, 0xb8cc00,129, 0xb8d000,39, 0xb8d100,39, 0xb8d200,39, 0xb8d300,39, 0xb8d400,39, 0xb8d500,39, 0xb8d600,39, 0xb8d700,39, 0xb8df00,19, 0xb8e000,131, 0xb8e400,4, 0xb8e440,15, 0xb8e480,4, 0xb8e4c0,15, 0xb8e500,4, 0xb8e540,15, 0xb8e580,4, 0xb8e5c0,15, 0xb8e600,4, 0xb8e640,10, 0xb8e680,4, 0xb8e6c0,10, 0xb8e700,4, 0xb8e740,10, 0xb8e780,4, 0xb8e7c0,10, 0xb8e800,4, 0xb8e840,14, 0xb8e880,17, 0xb8e900,2, 0xb8ea00,13, 0xb8ea80,1, 0xb8ea88,8, 0xb8eac0,6, 0xb8eae0,1, 0xb8eae8,2, 0xb8eb04,13, 0xb8efcc,32, 0xb90000,35, 0xb90c00,10, 0xb90c80,3, 0xb91000,2, 0xb9100c,4, 0xb91028,3, 0xb91038,4, 0xb91050,2, 0xb91060,2, 0xb91070,2, 0xb91080,4, 0xb91098,7, 0xb91120,8, 0xb91200,4, 0xb91214,7, 0xb91234,7, 0xb91254,7, 0xb91274,24, 0xb91300,2, 0xb9130c,3, 0xb91400,32, 0xb91484,2, 0xb91490,3, 0xb91500,25, 0xb915c0,8, 0xb915e8,5, 0xb91600,5, 0xb91618,18, 0xb91690,4, 0xb91740,2, 0xb91760,6, 0xb91780,6, 0xb917a0,6, 0xb917c0,6, 0xb917e0,1, 0xb91800,19, 0xb91880,2, 0xb918b0,2, 0xb918c0,2, 0xb94000,35, 0xb94c00,10, 0xb94c80,3, 0xb95000,2, 0xb9500c,4, 0xb95028,3, 0xb95038,4, 0xb95050,2, 0xb95060,2, 0xb95070,2, 0xb95080,4, 0xb95098,7, 0xb95120,8, 0xb95200,4, 0xb95214,7, 0xb95234,7, 0xb95254,7, 0xb95274,24, 0xb95300,2, 0xb9530c,3, 0xb95400,32, 0xb95484,2, 0xb95490,3, 0xb95500,25, 0xb955c0,8, 0xb955e8,5, 0xb95600,5, 0xb95618,18, 0xb95690,4, 0xb95740,2, 0xb95760,6, 0xb95780,6, 0xb957a0,6, 0xb957c0,6, 0xb957e0,1, 0xb95800,19, 0xb95880,2, 0xb958b0,2, 0xb958c0,2, 0xba0000,11, 0xba0040,16, 0xba0084,5, 0xba0200,7, 0xba0220,6, 0xba0240,7, 0xba0260,6, 0xba0280,6, 0xba02a0,2, 0xba02ac,2, 0xba02c0,7, 0xba02e0,7, 0xba0300,2, 0xba030c,2, 0xba0320,6, 0xba0400,2, 0xba1000,19, 0xba1c00,10, 0xba1c80,3, 0xba2200,4, 0xba2220,4, 0xba2240,11, 0xba2270,32, 0xba2300,24, 0xba2380,20, 0xba2400,61, 0xba2500,25, 0xba2568,4, 0xba2580,2, 0xba25a0,1, 0xba25c0,11, 0xba2600,9, 0xba2640,3, 0xba2650,3, 0xba2664,3, 0xba2680,22, 0xba2800,11, 0xba3000,552, 0xba4200,4, 0xba4220,4, 0xba4240,11, 0xba4270,32, 0xba4300,24, 0xba4380,20, 0xba4400,61, 0xba4500,25, 0xba4568,4, 0xba4580,2, 0xba45a0,1, 0xba45c0,11, 0xba4600,9, 0xba4640,3, 0xba4650,3, 0xba4664,3, 0xba4680,22, 0xba4800,11, 0xba5000,552, 0xba6200,4, 0xba6220,4, 0xba6240,11, 0xba6270,32, 0xba6300,24, 0xba6380,20, 0xba6400,61, 0xba6500,25, 0xba6568,4, 0xba6580,2, 0xba65a0,1, 0xba65c0,11, 0xba6600,9, 0xba6640,3, 0xba6650,3, 0xba6664,3, 0xba6680,22, 0xba6800,11, 0xba7000,552, 0xba8200,4, 0xba8220,4, 0xba8240,11, 0xba8270,32, 0xba8300,24, 0xba8380,20, 0xba8400,61, 0xba8500,25, 0xba8568,4, 0xba8580,2, 0xba85a0,1, 0xba85c0,11, 0xba8600,9, 0xba8640,3, 0xba8650,3, 0xba8664,3, 0xba8680,22, 0xba8800,11, 0xba9000,552, 0xbaa000,7, 0xbaa048,8, 0xbaa080,8, 0xbaa100,7, 0xbaa148,8, 0xbaa180,8, 0xbaa200,7, 0xbaa248,8, 0xbaa280,8, 0xbaa300,7, 0xbaa348,8, 0xbaa380,8, 0xbb0000,11, 0xbb0040,16, 0xbb0084,5, 0xbb0200,7, 0xbb0220,6, 0xbb0240,7, 0xbb0260,6, 0xbb0280,6, 0xbb02a0,2, 0xbb02ac,2, 0xbb02c0,7, 0xbb02e0,7, 0xbb0300,2, 0xbb030c,2, 0xbb0320,6, 0xbb0400,2, 0xbb1000,19, 0xbb1c00,10, 0xbb1c80,3, 0xbb2200,4, 0xbb2220,4, 0xbb2240,11, 0xbb2270,32, 0xbb2300,24, 0xbb2380,20, 0xbb2400,61, 0xbb2500,25, 0xbb2568,4, 0xbb2580,2, 0xbb25a0,1, 0xbb25c0,11, 0xbb2600,9, 0xbb2640,3, 0xbb2650,3, 0xbb2664,3, 0xbb2680,22, 0xbb2800,11, 0xbb3000,552, 0xbb4200,4, 0xbb4220,4, 0xbb4240,11, 0xbb4270,32, 0xbb4300,24, 0xbb4380,20, 0xbb4400,61, 0xbb4500,25, 0xbb4568,4, 0xbb4580,2, 0xbb45a0,1, 0xbb45c0,11, 0xbb4600,9, 0xbb4640,3, 0xbb4650,3, 0xbb4664,3, 0xbb4680,22, 0xbb4800,11, 0xbb5000,552, 0xbb6200,4, 0xbb6220,4, 0xbb6240,11, 0xbb6270,32, 0xbb6300,24, 0xbb6380,20, 0xbb6400,61, 0xbb6500,25, 0xbb6568,4, 0xbb6580,2, 0xbb65a0,1, 0xbb65c0,11, 0xbb6600,9, 0xbb6640,3, 0xbb6650,3, 0xbb6664,3, 0xbb6680,22, 0xbb6800,11, 0xbb7000,552, 0xbb8200,4, 0xbb8220,4, 0xbb8240,11, 0xbb8270,32, 0xbb8300,24, 0xbb8380,20, 0xbb8400,61, 0xbb8500,25, 0xbb8568,4, 0xbb8580,2, 0xbb85a0,1, 0xbb85c0,11, 0xbb8600,9, 0xbb8640,3, 0xbb8650,3, 0xbb8664,3, 0xbb8680,22, 0xbb8800,11, 0xbb9000,552, 0xbba000,7, 0xbba048,8, 0xbba080,8, 0xbba100,7, 0xbba148,8, 0xbba180,8, 0xbba200,7, 0xbba248,8, 0xbba280,8, 0xbba300,7, 0xbba348,8, 0xbba380,8, 0xbc0000,4, 0xbc0014,1, 0xbc0020,3, 0xbc0030,3, 0xbc0040,13, 0xbc0078,4, 0xbc009c,29, 0xbc0114,1, 0xbc0120,3, 0xbc0130,3, 0xbc0140,13, 0xbc0178,4, 0xbc019c,29, 0xbc0214,1, 0xbc0220,3, 0xbc0230,3, 0xbc0240,13, 0xbc0278,4, 0xbc029c,29, 0xbc0314,1, 0xbc0320,3, 0xbc0330,3, 0xbc0340,13, 0xbc0378,4, 0xbc039c,29, 0xbc0420,2, 0xbc042c,2, 0xbc0440,4, 0xbc0460,2, 0xbc046c,2, 0xbc0480,4, 0xbc04a0,2, 0xbc04ac,2, 0xbc04c0,4, 0xbc04e0,2, 0xbc04ec,2, 0xbc0500,2, 0xbc050c,4, 0xbc0520,2, 0xbc052c,4, 0xbc0540,2, 0xbc054c,4, 0xbc0560,2, 0xbc056c,4, 0xbc05c0,1, 0xbc0600,16, 0xbc0800,18, 0xbc0880,13, 0xbc08f0,3, 0xbc0900,18, 0xbc0980,13, 0xbc09f0,3, 0xbc0a00,18, 0xbc0a80,13, 0xbc0af0,3, 0xbc0b00,18, 0xbc0b80,13, 0xbc0bf0,3, 0xbc0c00,6, 0xbc0c20,16, 0xbc0c80,6, 0xbc0ca0,16, 0xbc0d00,6, 0xbc0d20,16, 0xbc0d80,6, 0xbc0da0,16, 0xbc0e00,4, 0xbc0e20,4, 0xbc0e40,4, 0xbc0e60,4, 0xbc0e80,37, 0xbc0f20,5, 0xbc0f40,5, 0xbc0f60,5, 0xbc1000,12, 0xbc1200,1, 0xbc1208,6, 0xbc1228,9, 0xbc1280,1, 0xbc1288,6, 0xbc12a8,9, 0xbc1300,1, 0xbc1308,6, 0xbc1328,9, 0xbc1380,1, 0xbc1388,6, 0xbc13a8,9, 0xbc1400,4, 0xbc1480,4, 0xbc1500,4, 0xbc1580,4, 0xbc1600,71, 0xbc1720,7, 0xbc1740,7, 0xbc1760,7, 0xbc1780,4, 0xbc179c,11, 0xbc17d0,2, 0xbc17e0,2, 0xbc17f0,2, 0xbc1800,7, 0xbc1820,7, 0xbc1840,7, 0xbc1860,7, 0xbc18c0,64, 0xbc1aa0,2, 0xbc1ac0,8, 0xbc2000,7, 0xbc2020,4, 0xbc2040,4, 0xbc2060,7, 0xbc2080,7, 0xbc20a0,4, 0xbc20c0,4, 0xbc20e0,7, 0xbc2100,7, 0xbc2120,4, 0xbc2140,4, 0xbc2160,7, 0xbc2180,7, 0xbc21a0,4, 0xbc21c0,4, 0xbc21e0,7, 0xbc2200,19, 0xbc2280,19, 0xbc2300,19, 0xbc2380,19, 0xbc2400,14, 0xbc243c,9, 0xbc2464,6, 0xbc2480,7, 0xbc24a0,2, 0xbc24ac,2, 0xbc2500,14, 0xbc253c,9, 0xbc2564,6, 0xbc2580,7, 0xbc25a0,2, 0xbc25ac,2, 0xbc2600,14, 0xbc263c,9, 0xbc2664,6, 0xbc2680,7, 0xbc26a0,2, 0xbc26ac,2, 0xbc2700,14, 0xbc273c,9, 0xbc2764,6, 0xbc2780,7, 0xbc27a0,2, 0xbc27ac,2, 0xbc2800,19, 0xbc2880,19, 0xbc2900,19, 0xbc2980,19, 0xbc2a10,2, 0xbc2a1c,1, 0xbc2a50,2, 0xbc2a5c,1, 0xbc2a90,2, 0xbc2a9c,1, 0xbc2ad0,2, 0xbc2adc,1, 0xbc2c00,7, 0xbc2c20,1, 0xbc2c54,18, 0xbc2ca0,1, 0xbc2cd4,18, 0xbc2d20,1, 0xbc2d54,18, 0xbc2da0,1, 0xbc2dd4,12, 0xbc2e08,6, 0xbc3100,7, 0xbc3120,7, 0xbc3140,7, 0xbc3160,7, 0xbc3180,3, 0xbc4000,4, 0xbc4014,1, 0xbc4020,3, 0xbc4030,3, 0xbc4040,13, 0xbc4078,4, 0xbc409c,29, 0xbc4114,1, 0xbc4120,3, 0xbc4130,3, 0xbc4140,13, 0xbc4178,4, 0xbc419c,29, 0xbc4214,1, 0xbc4220,3, 0xbc4230,3, 0xbc4240,13, 0xbc4278,4, 0xbc429c,29, 0xbc4314,1, 0xbc4320,3, 0xbc4330,3, 0xbc4340,13, 0xbc4378,4, 0xbc439c,29, 0xbc4420,2, 0xbc442c,2, 0xbc4440,4, 0xbc4460,2, 0xbc446c,2, 0xbc4480,4, 0xbc44a0,2, 0xbc44ac,2, 0xbc44c0,4, 0xbc44e0,2, 0xbc44ec,2, 0xbc4500,2, 0xbc450c,4, 0xbc4520,2, 0xbc452c,4, 0xbc4540,2, 0xbc454c,4, 0xbc4560,2, 0xbc456c,4, 0xbc45c0,1, 0xbc4600,16, 0xbc4800,18, 0xbc4880,13, 0xbc48f0,3, 0xbc4900,18, 0xbc4980,13, 0xbc49f0,3, 0xbc4a00,18, 0xbc4a80,13, 0xbc4af0,3, 0xbc4b00,18, 0xbc4b80,13, 0xbc4bf0,3, 0xbc4c00,6, 0xbc4c20,16, 0xbc4c80,6, 0xbc4ca0,16, 0xbc4d00,6, 0xbc4d20,16, 0xbc4d80,6, 0xbc4da0,16, 0xbc4e00,4, 0xbc4e20,4, 0xbc4e40,4, 0xbc4e60,4, 0xbc4e80,37, 0xbc4f20,5, 0xbc4f40,5, 0xbc4f60,5, 0xbc5000,12, 0xbc5200,1, 0xbc5208,6, 0xbc5228,9, 0xbc5280,1, 0xbc5288,6, 0xbc52a8,9, 0xbc5300,1, 0xbc5308,6, 0xbc5328,9, 0xbc5380,1, 0xbc5388,6, 0xbc53a8,9, 0xbc5400,4, 0xbc5480,4, 0xbc5500,4, 0xbc5580,4, 0xbc5600,71, 0xbc5720,7, 0xbc5740,7, 0xbc5760,7, 0xbc5780,4, 0xbc579c,11, 0xbc57d0,2, 0xbc57e0,2, 0xbc57f0,2, 0xbc5800,7, 0xbc5820,7, 0xbc5840,7, 0xbc5860,7, 0xbc58c0,64, 0xbc5aa0,2, 0xbc5ac0,8, 0xbc6000,7, 0xbc6020,4, 0xbc6040,4, 0xbc6060,7, 0xbc6080,7, 0xbc60a0,4, 0xbc60c0,4, 0xbc60e0,7, 0xbc6100,7, 0xbc6120,4, 0xbc6140,4, 0xbc6160,7, 0xbc6180,7, 0xbc61a0,4, 0xbc61c0,4, 0xbc61e0,7, 0xbc6200,19, 0xbc6280,19, 0xbc6300,19, 0xbc6380,19, 0xbc6400,14, 0xbc643c,9, 0xbc6464,6, 0xbc6480,7, 0xbc64a0,2, 0xbc64ac,2, 0xbc6500,14, 0xbc653c,9, 0xbc6564,6, 0xbc6580,7, 0xbc65a0,2, 0xbc65ac,2, 0xbc6600,14, 0xbc663c,9, 0xbc6664,6, 0xbc6680,7, 0xbc66a0,2, 0xbc66ac,2, 0xbc6700,14, 0xbc673c,9, 0xbc6764,6, 0xbc6780,7, 0xbc67a0,2, 0xbc67ac,2, 0xbc6800,19, 0xbc6880,19, 0xbc6900,19, 0xbc6980,19, 0xbc6a10,2, 0xbc6a1c,1, 0xbc6a50,2, 0xbc6a5c,1, 0xbc6a90,2, 0xbc6a9c,1, 0xbc6ad0,2, 0xbc6adc,1, 0xbc6c00,7, 0xbc6c20,1, 0xbc6c54,18, 0xbc6ca0,1, 0xbc6cd4,18, 0xbc6d20,1, 0xbc6d54,18, 0xbc6da0,1, 0xbc6dd4,12, 0xbc6e08,6, 0xbc7100,7, 0xbc7120,7, 0xbc7140,7, 0xbc7160,7, 0xbc7180,3, 0xbc8000,19, 0xbc8c00,10, 0xbc8c80,3, 0xbc8cc0,1, 0xbc9000,13, 0xbc9080,21, 0xbcc000,16, 0xbcc080,11, 0xbcc100,11, 0xbcc204,1, 0xbcc224,21, 0xbcc280,16, 0xbcc300,11, 0xbcc340,11, 0xbcd000,8, 0xbcd024,10, 0xbcd050,22, 0xbcd100,8, 0xbcd124,10, 0xbcd150,22, 0xbcd200,8, 0xbcd224,10, 0xbcd250,22, 0xbcd300,8, 0xbcd324,10, 0xbcd350,22, 0xbcd400,8, 0xbcd424,10, 0xbcd450,22, 0xbcd500,8, 0xbcd524,10, 0xbcd550,22, 0xbcd600,8, 0xbcd624,10, 0xbcd650,22, 0xbcd700,8, 0xbcd724,10, 0xbcd750,22, 0xbcd800,8, 0xbcd824,10, 0xbcd850,22, 0xbcd904,1, 0xbcd914,10, 0xbcd948,11, 0xbcd980,1, 0xbcd9a0,6, 0xbcd9c0,2, 0xbcd9cc,2, 0xbce000,35, 0xbcec00,10, 0xbcec80,3, 0xbcf000,1, 0xbcf008,3, 0xbcf038,1, 0xbcf044,1, 0xbcf050,2, 0xbcf060,8, 0xbcf100,13, 0xbcf140,19, 0xbcf190,4, 0xbd0000,13, 0xbd0040,2, 0xbd0054,4, 0xbd0080,27, 0xbd0100,12, 0xbd0140,14, 0xbd0180,28, 0xbd0200,6, 0xbd0240,6, 0xbd025c,3, 0xbd0280,5, 0xbd02a0,8, 0xbd0400,14, 0xbd0440,14, 0xbd0480,14, 0xbd04c0,14, 0xbd0540,3, 0xbd0600,7, 0xbd0620,14, 0xbd0680,5, 0xbd06a0,7, 0xbd0800,13, 0xbd0840,2, 0xbd0854,4, 0xbd0880,27, 0xbd0900,12, 0xbd0940,14, 0xbd0980,28, 0xbd0a00,6, 0xbd0a40,6, 0xbd0a5c,3, 0xbd0a80,5, 0xbd0aa0,8, 0xbd0c00,14, 0xbd0c40,14, 0xbd0c80,14, 0xbd0cc0,14, 0xbd0d40,3, 0xbd0e00,7, 0xbd0e20,14, 0xbd0e80,5, 0xbd0ea0,7, 0xbd1000,13, 0xbd1040,2, 0xbd1054,4, 0xbd1080,27, 0xbd1100,12, 0xbd1140,14, 0xbd1180,28, 0xbd1200,6, 0xbd1240,6, 0xbd125c,3, 0xbd1280,5, 0xbd12a0,8, 0xbd1400,14, 0xbd1440,14, 0xbd1480,14, 0xbd14c0,14, 0xbd1540,3, 0xbd1600,7, 0xbd1620,14, 0xbd1680,5, 0xbd16a0,7, 0xbd1800,13, 0xbd1840,2, 0xbd1854,4, 0xbd1880,27, 0xbd1900,12, 0xbd1940,14, 0xbd1980,28, 0xbd1a00,6, 0xbd1a40,6, 0xbd1a5c,3, 0xbd1a80,5, 0xbd1aa0,8, 0xbd1c00,14, 0xbd1c40,14, 0xbd1c80,14, 0xbd1cc0,14, 0xbd1d40,3, 0xbd1e00,7, 0xbd1e20,14, 0xbd1e80,5, 0xbd1ea0,7, 0xbd2000,8, 0xbd2040,8, 0xbd2080,1, 0xbd2098,6, 0xbd2100,10, 0xbd2140,3, 0xbd2150,2, 0xbd2180,2, 0xbd2200,6, 0xbd2220,18, 0xbd2280,4, 0xbd2300,8, 0xbd2400,2, 0xbd2480,2, 0xbd3000,40, 0xbd3100,64, 0xbd4000,13, 0xbd4040,2, 0xbd4054,4, 0xbd4080,27, 0xbd4100,12, 0xbd4140,14, 0xbd4180,28, 0xbd4200,6, 0xbd4240,6, 0xbd425c,3, 0xbd4280,5, 0xbd42a0,8, 0xbd4400,14, 0xbd4440,14, 0xbd4480,14, 0xbd44c0,14, 0xbd4540,3, 0xbd4600,7, 0xbd4620,14, 0xbd4680,5, 0xbd46a0,7, 0xbd4800,13, 0xbd4840,2, 0xbd4854,4, 0xbd4880,27, 0xbd4900,12, 0xbd4940,14, 0xbd4980,28, 0xbd4a00,6, 0xbd4a40,6, 0xbd4a5c,3, 0xbd4a80,5, 0xbd4aa0,8, 0xbd4c00,14, 0xbd4c40,14, 0xbd4c80,14, 0xbd4cc0,14, 0xbd4d40,3, 0xbd4e00,7, 0xbd4e20,14, 0xbd4e80,5, 0xbd4ea0,7, 0xbd5000,13, 0xbd5040,2, 0xbd5054,4, 0xbd5080,27, 0xbd5100,12, 0xbd5140,14, 0xbd5180,28, 0xbd5200,6, 0xbd5240,6, 0xbd525c,3, 0xbd5280,5, 0xbd52a0,8, 0xbd5400,14, 0xbd5440,14, 0xbd5480,14, 0xbd54c0,14, 0xbd5540,3, 0xbd5600,7, 0xbd5620,14, 0xbd5680,5, 0xbd56a0,7, 0xbd5800,13, 0xbd5840,2, 0xbd5854,4, 0xbd5880,27, 0xbd5900,12, 0xbd5940,14, 0xbd5980,28, 0xbd5a00,6, 0xbd5a40,6, 0xbd5a5c,3, 0xbd5a80,5, 0xbd5aa0,8, 0xbd5c00,14, 0xbd5c40,14, 0xbd5c80,14, 0xbd5cc0,14, 0xbd5d40,3, 0xbd5e00,7, 0xbd5e20,14, 0xbd5e80,5, 0xbd5ea0,7, 0xbd6000,8, 0xbd6040,8, 0xbd6080,1, 0xbd6098,6, 0xbd6100,10, 0xbd6140,3, 0xbd6150,2, 0xbd6180,2, 0xbd6200,6, 0xbd6220,18, 0xbd6280,4, 0xbd6300,8, 0xbd6400,2, 0xbd6480,2, 0xbd7000,40, 0xbd7100,64, 0xbe0000,5, 0xbe0018,5, 0xbe0030,3, 0xbe0044,3, 0xbe0100,58, 0xbe01f0,3, 0xbe0280,3, 0xbe0400,5, 0xbe0418,5, 0xbe0430,3, 0xbe0444,3, 0xbe0500,58, 0xbe05f0,3, 0xbe0680,3, 0xbe0800,5, 0xbe0818,5, 0xbe0830,3, 0xbe0844,3, 0xbe0900,58, 0xbe09f0,3, 0xbe0a80,3, 0xbe0c00,5, 0xbe0c18,5, 0xbe0c30,3, 0xbe0c44,3, 0xbe0d00,58, 0xbe0df0,3, 0xbe0e80,3, 0xbe1018,1, 0xbe1100,2, 0xbe1110,10, 0xbe1140,2, 0xbe1150,10, 0xbe1180,2, 0xbe1190,10, 0xbe11c0,2, 0xbe11d0,10, 0xbe1208,1, 0xbe1220,16, 0xbe1280,1, 0xbe1288,2, 0xbe1400,8, 0xbe4000,2, 0xbe400c,1, 0xbe4030,3, 0xbe4040,2, 0xbe404c,1, 0xbe4070,3, 0xbe4080,2, 0xbe408c,1, 0xbe40b0,3, 0xbe40c0,2, 0xbe40cc,1, 0xbe40f0,3, 0xbe4200,15, 0xbe4280,15, 0xbe4300,15, 0xbe4380,15, 0xbe4400,15, 0xbe4480,15, 0xbe4500,15, 0xbe4580,15, 0xbe4604,10, 0xbe4700,2, 0xbe470c,7, 0xbe4740,1, 0xbe4770,1, 0xbe47c0,2, 0xbe47d0,4, 0xbe4800,3, 0xbe4810,1, 0xbe481c,3, 0xbe4b04,1, 0xbe4b0c,5, 0xbe4b44,1, 0xbe4b50,5, 0xbe4b70,6, 0xbe4b90,2, 0xbe4c00,129, 0xbe5000,39, 0xbe5100,39, 0xbe5200,39, 0xbe5300,39, 0xbe5400,39, 0xbe5500,39, 0xbe5600,39, 0xbe5700,39, 0xbe5f00,19, 0xbe6000,131, 0xbe6400,4, 0xbe6440,15, 0xbe6480,4, 0xbe64c0,15, 0xbe6500,4, 0xbe6540,15, 0xbe6580,4, 0xbe65c0,15, 0xbe6600,4, 0xbe6640,10, 0xbe6680,4, 0xbe66c0,10, 0xbe6700,4, 0xbe6740,10, 0xbe6780,4, 0xbe67c0,10, 0xbe6800,4, 0xbe6840,14, 0xbe6880,17, 0xbe6900,2, 0xbe6a00,13, 0xbe6a80,1, 0xbe6a88,8, 0xbe6ac0,6, 0xbe6ae0,1, 0xbe6ae8,2, 0xbe6b04,13, 0xbe6fcc,32, 0xbe8000,5, 0xbe8018,5, 0xbe8030,3, 0xbe8044,3, 0xbe8100,58, 0xbe81f0,3, 0xbe8280,3, 0xbe8400,5, 0xbe8418,5, 0xbe8430,3, 0xbe8444,3, 0xbe8500,58, 0xbe85f0,3, 0xbe8680,3, 0xbe8800,5, 0xbe8818,5, 0xbe8830,3, 0xbe8844,3, 0xbe8900,58, 0xbe89f0,3, 0xbe8a80,3, 0xbe8c00,5, 0xbe8c18,5, 0xbe8c30,3, 0xbe8c44,3, 0xbe8d00,58, 0xbe8df0,3, 0xbe8e80,3, 0xbe9018,1, 0xbe9100,2, 0xbe9110,10, 0xbe9140,2, 0xbe9150,10, 0xbe9180,2, 0xbe9190,10, 0xbe91c0,2, 0xbe91d0,10, 0xbe9208,1, 0xbe9220,16, 0xbe9280,1, 0xbe9288,2, 0xbe9400,8, 0xbec000,2, 0xbec00c,1, 0xbec030,3, 0xbec040,2, 0xbec04c,1, 0xbec070,3, 0xbec080,2, 0xbec08c,1, 0xbec0b0,3, 0xbec0c0,2, 0xbec0cc,1, 0xbec0f0,3, 0xbec200,15, 0xbec280,15, 0xbec300,15, 0xbec380,15, 0xbec400,15, 0xbec480,15, 0xbec500,15, 0xbec580,15, 0xbec604,10, 0xbec700,2, 0xbec70c,7, 0xbec740,1, 0xbec770,1, 0xbec7c0,2, 0xbec7d0,4, 0xbec800,3, 0xbec810,1, 0xbec81c,3, 0xbecb04,1, 0xbecb0c,5, 0xbecb44,1, 0xbecb50,5, 0xbecb70,6, 0xbecb90,2, 0xbecc00,129, 0xbed000,39, 0xbed100,39, 0xbed200,39, 0xbed300,39, 0xbed400,39, 0xbed500,39, 0xbed600,39, 0xbed700,39, 0xbedf00,19, 0xbee000,131, 0xbee400,4, 0xbee440,15, 0xbee480,4, 0xbee4c0,15, 0xbee500,4, 0xbee540,15, 0xbee580,4, 0xbee5c0,15, 0xbee600,4, 0xbee640,10, 0xbee680,4, 0xbee6c0,10, 0xbee700,4, 0xbee740,10, 0xbee780,4, 0xbee7c0,10, 0xbee800,4, 0xbee840,14, 0xbee880,17, 0xbee900,2, 0xbeea00,13, 0xbeea80,1, 0xbeea88,8, 0xbeeac0,6, 0xbeeae0,1, 0xbeeae8,2, 0xbeeb04,13, 0xbeefcc,32, 0xbf0000,35, 0xbf0c00,10, 0xbf0c80,3, 0xbf1000,2, 0xbf100c,4, 0xbf1028,3, 0xbf1038,4, 0xbf1050,2, 0xbf1060,2, 0xbf1070,2, 0xbf1080,4, 0xbf1098,7, 0xbf1120,8, 0xbf1200,4, 0xbf1214,7, 0xbf1234,7, 0xbf1254,7, 0xbf1274,24, 0xbf1300,2, 0xbf130c,3, 0xbf1400,32, 0xbf1484,2, 0xbf1490,3, 0xbf1500,25, 0xbf15c0,8, 0xbf15e8,5, 0xbf1600,5, 0xbf1618,18, 0xbf1690,4, 0xbf1740,2, 0xbf1760,6, 0xbf1780,6, 0xbf17a0,6, 0xbf17c0,6, 0xbf17e0,1, 0xbf1800,19, 0xbf1880,2, 0xbf18b0,2, 0xbf18c0,2, 0xbf4000,35, 0xbf4c00,10, 0xbf4c80,3, 0xbf5000,2, 0xbf500c,4, 0xbf5028,3, 0xbf5038,4, 0xbf5050,2, 0xbf5060,2, 0xbf5070,2, 0xbf5080,4, 0xbf5098,7, 0xbf5120,8, 0xbf5200,4, 0xbf5214,7, 0xbf5234,7, 0xbf5254,7, 0xbf5274,24, 0xbf5300,2, 0xbf530c,3, 0xbf5400,32, 0xbf5484,2, 0xbf5490,3, 0xbf5500,25, 0xbf55c0,8, 0xbf55e8,5, 0xbf5600,5, 0xbf5618,18, 0xbf5690,4, 0xbf5740,2, 0xbf5760,6, 0xbf5780,6, 0xbf57a0,6, 0xbf57c0,6, 0xbf57e0,1, 0xbf5800,19, 0xbf5880,2, 0xbf58b0,2, 0xbf58c0,2, mstflint-4.26.0/mstdump/mstdump_dbs/BlueField3.csv0000644000175000017500000066466714522641732022401 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16384, 0x040000,4, 0x048000,129, 0x04820c,1, 0x048220,2, 0x048280,4, 0x0482bc,5, 0x0482fc,19, 0x048360,7, 0x048380,2, 0x04838c,2, 0x0483a0,1, 0x048404,4, 0x048420,3, 0x048430,7, 0x048480,4, 0x0484a0,5, 0x0484c0,1, 0x048500,1, 0x049000,257, 0x049408,130, 0x049620,1, 0x04962c,1, 0x049640,1, 0x04964c,1, 0x049800,3, 0x049810,3, 0x049820,3, 0x049830,6, 0x049884,5, 0x0498a0,1, 0x0498a8,6, 0x049900,6, 0x04993c,7, 0x04997c,10, 0x049a04,1, 0x049a0c,26, 0x049a80,6, 0x049aa0,6, 0x049ac0,13, 0x049b00,4, 0x04a004,1, 0x04a014,3, 0x04a024,5, 0x04a040,8, 0x04a080,1, 0x04a100,1, 0x04a124,5, 0x04a140,6, 0x04a160,13, 0x04a1a0,1, 0x04a1ac,1, 0x04a1c0,1, 0x04a1cc,1, 0x04a1e0,1, 0x04a1ec,1, 0x04a200,263, 0x04a620,2, 0x04a684,21, 0x04a800,8, 0x04a840,4, 0x04a860,15, 0x04a900,6, 0x04a920,6, 0x04a940,6, 0x04a964,1, 0x04a970,4, 0x04a984,5, 0x04a9a4,1, 0x04a9ac,3, 0x04a9bc,1, 0x04aa00,4, 0x04aa24,5, 0x04aa44,3, 0x04aa54,5, 0x04b004,35, 0x04b200,1, 0x04b220,1, 0x04b22c,1, 0x04b240,1, 0x04b24c,1, 0x04b260,1, 0x04b274,7, 0x04b2a0,5, 0x04b2c0,25, 0x04b330,3, 0x04b340,3, 0x04b400,1, 0x04b480,39, 0x04b600,1, 0x04b608,2, 0x04b680,6, 0x04b6a0,6, 0x04b6c0,13, 0x04b700,9, 0x04b730,3, 0x04b740,3, 0x04b780,4, 0x04b7a0,5, 0x04b800,1, 0x04b80c,1, 0x04b818,1, 0x04b824,1, 0x04b830,1, 0x04b83c,1, 0x04b848,1, 0x04b854,1, 0x04b860,1, 0x04b86c,1, 0x04b878,1, 0x04b884,1, 0x04b890,1, 0x04b89c,1, 0x04b8a8,1, 0x04b8b4,1, 0x04b8c0,1, 0x04b8cc,1, 0x04b8d8,1, 0x04b8e4,1, 0x04b8f0,1, 0x04b8fc,1, 0x04b908,1, 0x04b914,1, 0x04b920,1, 0x04b92c,1, 0x04b938,1, 0x04b944,1, 0x04b950,1, 0x04b95c,1, 0x04b968,1, 0x04b974,1, 0x04ba00,19, 0x04bc00,3, 0x04c004,37, 0x04c100,1, 0x04c108,4, 0x04c180,14, 0x04c1c0,14, 0x04c200,1, 0x050000,18, 0x050050,2, 0x050060,2, 0x050070,2, 0x050080,3, 0x050090,1, 0x050098,1, 0x0500a0,1, 0x0500a8,12, 0x050100,8, 0x050140,8, 0x050180,8, 0x0501c0,8, 0x050200,16, 0x050400,6, 0x050420,6, 0x050440,6, 0x050460,6, 0x050480,1, 0x0504c0,1, 0x0504e0,14, 0x050520,6, 0x050540,6, 0x050560,6, 0x050580,1, 0x0505c0,1, 0x0505e0,14, 0x050620,6, 0x050640,6, 0x050660,6, 0x050680,1, 0x0506c0,1, 0x0506e0,8, 0x050708,2, 0x050718,2, 0x050800,3, 0x050810,10, 0x050840,6, 0x050860,5, 0x050900,6, 0x050920,6, 0x050940,17, 0x050a00,2, 0x051000,1, 0x051080,1, 0x051088,4, 0x0510a4,6, 0x0510c4,5, 0x051100,2, 0x051144,1, 0x051150,14, 0x0511a4,1, 0x0511b0,4, 0x051404,1, 0x051478,35, 0x051524,8, 0x051584,1, 0x0515a8,23, 0x051800,7, 0x051820,42, 0x0518e4,1, 0x0518f4,6, 0x051914,3, 0x051940,1, 0x051950,4, 0x051964,6, 0x051980,3, 0x0519a4,4, 0x0519c0,6, 0x0519e0,6, 0x051a00,2, 0x051c00,1, 0x051c0c,4, 0x051c80,13, 0x051cc0,13, 0x051d00,1, 0x051d40,13, 0x051d80,5, 0x051da0,4, 0x052004,1, 0x05200c,1, 0x052024,1, 0x052034,62, 0x052130,23, 0x052190,32, 0x052800,3, 0x052810,3, 0x052820,3, 0x052830,3, 0x052840,3, 0x052850,3, 0x052860,3, 0x052870,3, 0x052880,3, 0x052890,72, 0x0529c0,9, 0x052a00,3, 0x052a10,3, 0x052a20,3, 0x052a30,3, 0x052a40,3, 0x052a50,3, 0x052a60,3, 0x052a70,3, 0x052a80,3, 0x052a90,3, 0x052aa0,30, 0x052b24,1, 0x052b2c,12, 0x052b60,3, 0x052b70,3, 0x052b80,3, 0x052b90,3, 0x052ba0,3, 0x052bb0,3, 0x052bc0,3, 0x052bd0,3, 0x052be0,3, 0x052bf0,3, 0x052c00,3, 0x052c10,3, 0x052c20,3, 0x053000,15, 0x053044,3, 0x053064,1, 0x05306c,5, 0x053084,1, 0x05308c,2, 0x0530a0,2, 0x0530b4,1, 0x0530bc,3, 0x0530d4,1, 0x0530dc,1, 0x053100,12, 0x053144,6, 0x053184,34, 0x053280,12, 0x0532c4,6, 0x053304,1, 0x05330c,1, 0x053314,1, 0x05331c,1, 0x053380,4, 0x0533c0,9, 0x053400,4, 0x053414,2, 0x053424,1, 0x05342c,1, 0x053440,2, 0x053450,8, 0x053484,4, 0x0534a0,16, 0x053500,8, 0x05353c,9, 0x05357c,10, 0x0535b4,1, 0x0535bc,31, 0x053644,8, 0x053674,1, 0x05367c,1, 0x053684,1, 0x053690,36, 0x053724,1, 0x05372c,1, 0x053734,1, 0x05373c,1, 0x053744,6, 0x053760,4, 0x053774,1, 0x05377c,1, 0x053784,1, 0x053794,329, 0x053d00,9, 0x053d40,9, 0x053d80,4, 0x053da0,7, 0x053dc0,7, 0x053de0,7, 0x054000,5, 0x054020,5, 0x054040,5, 0x054060,5, 0x054080,5, 0x0540a0,5, 0x0540c0,5, 0x0540e0,5, 0x054100,5, 0x054120,5, 0x054140,5, 0x054160,5, 0x054180,5, 0x0541a0,5, 0x0541c0,5, 0x0541e0,5, 0x054200,5, 0x054220,5, 0x054240,2, 0x054400,12, 0x054480,5, 0x0544a0,5, 0x0544c0,4, 0x0544e0,5, 0x054500,2, 0x054514,3, 0x054524,1, 0x054534,47, 0x0545f4,4, 0x058000,134, 0x058224,4, 0x058240,3, 0x058254,1, 0x05825c,23, 0x058404,1, 0x058460,108, 0x058680,27, 0x058700,1, 0x058800,2, 0x058824,4, 0x058840,3, 0x058900,4, 0x058980,28, 0x058a04,1, 0x058a84,96, 0x059004,4, 0x059020,7, 0x059040,4, 0x059054,1, 0x05905c,1, 0x059064,1, 0x05906c,1, 0x059080,9, 0x0590c0,72, 0x059200,6, 0x059220,6, 0x059240,4, 0x059260,6, 0x059280,6, 0x0592a0,6, 0x0592c0,4, 0x0592e0,6, 0x059304,1, 0x05934c,80, 0x059800,14, 0x059844,1, 0x05984c,1, 0x059854,1, 0x05985c,1, 0x059864,3, 0x059884,4, 0x0598a4,4, 0x0598c0,8, 0x059904,1, 0x059918,16, 0x059960,6, 0x059980,4, 0x0599a0,6, 0x059a00,13, 0x059a40,4, 0x059a60,6, 0x059a80,16, 0x059c04,1, 0x059cac,98, 0x059e80,2, 0x059ec4,1, 0x059ecc,15, 0x059f44,1, 0x059f4c,13, 0x05a000,1, 0x05a020,6, 0x05a040,102, 0x05a1e0,6, 0x05a204,6, 0x05a220,1, 0x05a230,3, 0x05a240,1, 0x05a250,3, 0x05a260,3, 0x05a294,96, 0x05a444,1, 0x05a44c,17, 0x05a4c0,9, 0x05a604,1, 0x05a674,38, 0x05a800,1, 0x05a808,2, 0x05b000,18, 0x05b054,4, 0x05b070,1, 0x05b080,1, 0x05b090,1, 0x05b0a0,1, 0x05b0b0,1, 0x05b0c0,7, 0x05b100,5, 0x05b118,19, 0x05c000,1, 0x05c800,2, 0x05c884,1, 0x05c8a8,24, 0x05ca04,1, 0x05ca28,22, 0x05ca84,1, 0x05ca90,6, 0x05cb00,97, 0x05cc88,5, 0x05ce00,6, 0x05ce20,6, 0x05ce40,19, 0x05ce90,3, 0x05cec0,4, 0x05cee0,17, 0x05cf30,14, 0x05d000,6, 0x05d800,6, 0x05d820,6, 0x05d840,1, 0x05d860,6, 0x05d880,6, 0x05d8a0,6, 0x05d8c0,1, 0x05d8e0,6, 0x05d900,6, 0x05d920,6, 0x05d940,1, 0x05d960,6, 0x05d980,6, 0x05d9a0,6, 0x05d9c0,1, 0x05d9e0,6, 0x05da00,6, 0x05da20,6, 0x05da40,1, 0x05da60,6, 0x05da80,6, 0x05daa0,6, 0x05dac0,1, 0x05dae0,6, 0x05db00,6, 0x05db20,6, 0x05db40,1, 0x05db60,6, 0x05db80,6, 0x05dba0,6, 0x05dbc0,1, 0x05dbe0,6, 0x05dc00,1, 0x05e000,30, 0x060000,80, 0x060150,2, 0x060164,5, 0x060180,5, 0x0601a4,1, 0x0601ac,1, 0x0601b4,1, 0x0601bc,1, 0x0601c4,1, 0x0601cc,4, 0x060200,4, 0x060220,6, 0x060240,4, 0x060260,9, 0x060288,4, 0x0602c0,6, 0x0602e0,6, 0x060300,2, 0x060800,10, 0x060834,259, 0x061000,1, 0x062000,13, 0x062040,13, 0x064000,10, 0x064044,1, 0x064064,7, 0x064084,1, 0x06408c,3, 0x0640a4,18, 0x065000,5, 0x065020,5, 0x065040,5, 0x065060,5, 0x065080,5, 0x0650a0,5, 0x0650c0,5, 0x0650e0,5, 0x065100,5, 0x065120,5, 0x065140,5, 0x065160,5, 0x065180,5, 0x0651a0,5, 0x0651c0,5, 0x0651e0,5, 0x065200,5, 0x065220,5, 0x065240,5, 0x065260,5, 0x065280,5, 0x0652a0,5, 0x0652c0,5, 0x0652e0,5, 0x065300,5, 0x065320,5, 0x065340,5, 0x065360,5, 0x065380,5, 0x0653a0,5, 0x0653c0,5, 0x0653e0,5, 0x065400,5, 0x065420,5, 0x065440,5, 0x065460,5, 0x065480,5, 0x0654a0,5, 0x0654c0,5, 0x0654e0,5, 0x065500,5, 0x065520,5, 0x065540,5, 0x065560,5, 0x065580,5, 0x0655a0,5, 0x0655c0,5, 0x0655e0,5, 0x065600,5, 0x065620,5, 0x065640,5, 0x065660,5, 0x065680,5, 0x0656a0,5, 0x0656c0,5, 0x0656e0,5, 0x065700,5, 0x065720,5, 0x065740,5, 0x065760,5, 0x065780,5, 0x0657a0,5, 0x0657c0,5, 0x0657e0,5, 0x065800,1, 0x065808,32, 0x066000,7, 0x066024,5, 0x066048,12, 0x066080,4, 0x0660a0,5, 0x066100,1, 0x066108,4, 0x066180,13, 0x0661c0,13, 0x066200,67, 0x068000,156, 0x068400,10, 0x068430,3, 0x068440,2, 0x068800,27, 0x068880,4, 0x0688c0,25, 0x068940,6, 0x068960,2, 0x06896c,3, 0x068a00,8, 0x068a24,41, 0x068c00,6, 0x069000,204, 0x069400,3, 0x069410,6, 0x069800,2, 0x069814,1, 0x06981c,1, 0x069904,1, 0x069928,25, 0x069a00,6, 0x069c00,132, 0x069e3c,5, 0x069e7c,1, 0x06a000,2, 0x06a014,1, 0x06a01c,1, 0x06a100,2, 0x06a184,1, 0x06a194,30, 0x06a300,44, 0x080000,25, 0x080080,4, 0x0800a0,5, 0x0800c0,15, 0x080100,2, 0x080110,1, 0x08011c,2, 0x08012c,2, 0x08013c,3, 0x080180,2, 0x080190,3, 0x0801a0,3, 0x080200,6, 0x080220,6, 0x080240,13, 0x080280,6, 0x0802a0,6, 0x0802c0,13, 0x080300,1, 0x080308,1, 0x080310,1, 0x080318,1, 0x080404,5, 0x080504,1, 0x080574,36, 0x080800,2, 0x080904,1, 0x080970,38, 0x080a24,1, 0x080a30,4, 0x080b00,2, 0x080b84,1, 0x080bb0,22, 0x080c24,1, 0x080c2c,7, 0x080c64,1, 0x080c6c,7, 0x080ca4,1, 0x080cac,5, 0x081000,1, 0x081010,4, 0x081024,6, 0x081040,6, 0x081060,2, 0x081074,3, 0x081084,1, 0x08108c,5, 0x0810c0,5, 0x0810fc,3, 0x08110c,1, 0x081114,8, 0x081140,3, 0x081150,13, 0x08118c,5, 0x081200,2, 0x081300,54, 0x081404,3, 0x081480,13, 0x0814b8,7, 0x081500,6, 0x081580,2, 0x0815c4,1, 0x0815e4,12, 0x081620,3, 0x081630,1, 0x081800,5, 0x081820,1, 0x081840,5, 0x081860,1, 0x081880,5, 0x0818a0,1, 0x0818c0,5, 0x0818e0,1, 0x081900,5, 0x081920,1, 0x081940,5, 0x081960,1, 0x081980,5, 0x0819a0,1, 0x0819c0,5, 0x0819e0,1, 0x081a00,5, 0x081a20,1, 0x081a40,5, 0x081a60,1, 0x081a80,5, 0x081aa0,1, 0x081ac0,5, 0x081ae0,1, 0x081b00,5, 0x081b20,1, 0x081b40,5, 0x081b60,1, 0x081b80,5, 0x081ba0,1, 0x081bc0,5, 0x081be0,1, 0x081c00,5, 0x081c20,1, 0x081c40,5, 0x081c60,1, 0x081c80,5, 0x081ca0,1, 0x081cc0,5, 0x081ce0,1, 0x081d00,5, 0x081d20,1, 0x081d40,5, 0x081d60,1, 0x081d80,5, 0x081da0,1, 0x081dc0,5, 0x081de0,1, 0x081e00,5, 0x081e20,1, 0x081e40,5, 0x081e60,1, 0x081e80,5, 0x081ea0,1, 0x081ec0,5, 0x081ee0,1, 0x081f00,5, 0x081f20,1, 0x081f40,5, 0x081f60,1, 0x081f80,5, 0x081fa0,1, 0x081fc0,5, 0x081fe0,1, 0x082000,21, 0x082060,23, 0x0820c0,2, 0x0820d0,1, 0x0820dc,2, 0x0820ec,3, 0x082100,2, 0x082110,3, 0x082120,3, 0x082180,6, 0x0821a0,6, 0x0821c0,13, 0x082200,1, 0x082208,1, 0x082404,4, 0x082504,1, 0x082574,35, 0x082604,1, 0x082674,35, 0x082704,2, 0x082800,1, 0x082810,10, 0x082840,1, 0x082850,9, 0x082878,4, 0x082894,3, 0x0828a4,1, 0x0828ac,10, 0x0828fc,6, 0x082920,3, 0x082930,9, 0x082980,2, 0x0829c4,1, 0x0829e4,7, 0x083000,5, 0x083020,1, 0x083040,5, 0x083060,1, 0x083080,5, 0x0830a0,1, 0x0830c0,5, 0x0830e0,1, 0x083100,5, 0x083120,1, 0x083140,5, 0x083160,1, 0x083180,5, 0x0831a0,1, 0x0831c0,5, 0x0831e0,1, 0x083200,5, 0x083220,1, 0x083240,5, 0x083260,1, 0x083280,5, 0x0832a0,1, 0x0832c0,5, 0x0832e0,1, 0x083300,5, 0x083320,1, 0x083340,5, 0x083360,1, 0x083380,5, 0x0833a0,1, 0x0833c0,5, 0x0833e0,1, 0x083400,5, 0x083420,1, 0x083440,5, 0x083460,1, 0x083480,5, 0x0834a0,1, 0x0834c0,5, 0x0834e0,1, 0x083500,5, 0x083520,1, 0x083540,5, 0x083560,1, 0x083580,5, 0x0835a0,1, 0x0835c0,5, 0x0835e0,1, 0x083600,5, 0x083620,1, 0x083640,5, 0x083660,1, 0x083680,5, 0x0836a0,1, 0x0836c0,5, 0x0836e0,1, 0x083700,5, 0x083720,1, 0x083740,5, 0x083760,1, 0x083780,5, 0x0837a0,1, 0x0837c0,5, 0x0837e0,1, 0x084000,21, 0x084060,23, 0x0840c0,2, 0x0840d0,1, 0x0840dc,2, 0x0840ec,3, 0x084100,2, 0x084110,3, 0x084120,3, 0x084180,6, 0x0841a0,6, 0x0841c0,13, 0x084200,1, 0x084208,1, 0x084404,4, 0x084504,1, 0x084574,35, 0x084604,1, 0x084674,35, 0x084704,2, 0x084800,1, 0x084810,10, 0x084840,1, 0x084850,9, 0x084878,4, 0x084894,3, 0x0848a4,1, 0x0848ac,10, 0x0848fc,6, 0x084920,3, 0x084930,9, 0x084980,2, 0x0849c4,1, 0x0849e4,7, 0x085000,5, 0x085020,1, 0x085040,5, 0x085060,1, 0x085080,5, 0x0850a0,1, 0x0850c0,5, 0x0850e0,1, 0x085100,5, 0x085120,1, 0x085140,5, 0x085160,1, 0x085180,5, 0x0851a0,1, 0x0851c0,5, 0x0851e0,1, 0x085200,5, 0x085220,1, 0x085240,5, 0x085260,1, 0x085280,5, 0x0852a0,1, 0x0852c0,5, 0x0852e0,1, 0x085300,5, 0x085320,1, 0x085340,5, 0x085360,1, 0x085380,5, 0x0853a0,1, 0x0853c0,5, 0x0853e0,1, 0x085400,5, 0x085420,1, 0x085440,5, 0x085460,1, 0x085480,5, 0x0854a0,1, 0x0854c0,5, 0x0854e0,1, 0x085500,5, 0x085520,1, 0x085540,5, 0x085560,1, 0x085580,5, 0x0855a0,1, 0x0855c0,5, 0x0855e0,1, 0x085600,5, 0x085620,1, 0x085640,5, 0x085660,1, 0x085680,5, 0x0856a0,1, 0x0856c0,5, 0x0856e0,1, 0x085700,5, 0x085720,1, 0x085740,5, 0x085760,1, 0x085780,5, 0x0857a0,1, 0x0857c0,5, 0x0857e0,1, 0x086000,5, 0x086018,17, 0x086080,4, 0x0860a0,5, 0x0860c0,15, 0x086100,2, 0x086110,1, 0x08611c,2, 0x08612c,3, 0x086140,2, 0x086150,3, 0x086160,3, 0x086180,6, 0x0861a0,6, 0x0861c0,13, 0x086200,1, 0x086208,1, 0x086404,4, 0x086504,1, 0x086574,35, 0x086604,1, 0x086674,37, 0x086724,1, 0x086730,6, 0x086764,1, 0x08676c,7, 0x0867a4,1, 0x0867b0,6, 0x0867e4,1, 0x0867f0,6, 0x086824,1, 0x08682c,7, 0x086864,1, 0x086870,6, 0x0868a4,1, 0x0868b0,6, 0x086a00,2, 0x086a84,1, 0x086ab8,25, 0x086c00,4, 0x086d00,34, 0x086e00,1, 0x086e10,11, 0x086e40,4, 0x086e64,1, 0x086e6c,9, 0x086e94,5, 0x086ec0,5, 0x086efc,2, 0x086f10,3, 0x086f20,9, 0x087000,71, 0x087120,7, 0x087200,5, 0x087220,1, 0x087240,5, 0x087260,1, 0x087280,5, 0x0872a0,1, 0x0872c0,5, 0x0872e0,1, 0x087300,5, 0x087320,1, 0x087340,5, 0x087360,1, 0x087380,5, 0x0873a0,1, 0x0873c0,5, 0x0873e0,1, 0x087400,6, 0x087420,6, 0x087440,5, 0x088000,6, 0x08801c,3, 0x088040,6, 0x088060,14, 0x0880a0,8, 0x088200,105, 0x0883b0,4, 0x088400,2, 0x088410,3, 0x088440,4, 0x088460,5, 0x088480,4, 0x0884a0,5, 0x0884c0,4, 0x0884e0,5, 0x088500,6, 0x088520,7, 0x088540,7, 0x088560,7, 0x088580,7, 0x0885a0,6, 0x0885c0,14, 0x088600,6, 0x088620,6, 0x088640,9, 0x088800,27, 0x088880,4, 0x0888c0,25, 0x088940,6, 0x088960,2, 0x08896c,3, 0x088984,19, 0x088a00,1, 0x088a08,4, 0x088a20,1, 0x088c00,1, 0x088c08,1, 0x088c10,1, 0x088c18,1, 0x088c20,1, 0x088c28,1, 0x088c30,1, 0x088c38,1, 0x088c40,1, 0x088c48,1, 0x088c50,1, 0x088c58,1, 0x088c60,1, 0x088c68,1, 0x088c70,1, 0x088c78,1, 0x088c80,10, 0x088cb0,21, 0x088d20,7, 0x088e04,2, 0x088e10,2, 0x088f00,39, 0x089000,9, 0x089030,13, 0x089070,13, 0x0890b0,13, 0x0890f0,13, 0x089130,13, 0x089170,13, 0x0891b0,13, 0x0891f0,5, 0x089400,4, 0x089800,2, 0x089824,1, 0x089830,5, 0x089880,2, 0x0898a4,1, 0x0898b0,5, 0x089900,2, 0x089944,1, 0x089958,11, 0x089a00,2, 0x089a24,1, 0x089a2c,6, 0x090000,7, 0x090020,7, 0x090040,1, 0x090048,4, 0x090060,1, 0x090068,4, 0x090080,5, 0x0900a4,3, 0x0900c0,5, 0x0900e4,3, 0x090100,5, 0x090124,3, 0x090140,5, 0x090164,3, 0x090180,16, 0x0901c4,1, 0x0901cc,1, 0x0901d4,1, 0x0901dc,3, 0x090200,4, 0x090220,1, 0x090228,4, 0x090240,1, 0x090248,4, 0x090260,1, 0x090268,4, 0x090280,1, 0x090288,4, 0x0902a0,2, 0x090300,4, 0x090320,1, 0x090328,4, 0x090340,1, 0x090348,4, 0x090360,1, 0x090368,4, 0x090380,1, 0x090388,4, 0x0903a0,2, 0x090400,12, 0x090600,1, 0x090620,1, 0x090628,4, 0x090640,1, 0x090648,4, 0x090660,1, 0x090668,4, 0x090680,1, 0x090688,4, 0x0906a0,1, 0x0906a8,4, 0x0906c0,1, 0x0906c8,4, 0x0906e0,1, 0x0906e8,4, 0x090700,1, 0x090708,4, 0x090720,8, 0x090800,57, 0x0908e8,2, 0x090900,4, 0x090920,5, 0x090940,7, 0x09097c,1, 0x090984,1, 0x09098c,1, 0x0909a4,1, 0x0909ac,5, 0x0909c4,5, 0x0909e4,4, 0x090a04,5, 0x090a24,4, 0x090a40,1, 0x090a50,5, 0x090a70,10, 0x090aa0,6, 0x090ac0,6, 0x090ae0,4, 0x090b00,6, 0x090b20,6, 0x090b40,1, 0x090b48,8, 0x090b80,5, 0x090ba4,3, 0x090bc0,5, 0x090be4,3, 0x090c00,1, 0x090c20,9, 0x090c60,8, 0x090c84,1, 0x090c8c,2, 0x090c9c,1, 0x090cc4,1, 0x090cd0,4, 0x090ce4,1, 0x090cf4,3, 0x090d04,1, 0x090d0c,1, 0x090d20,1, 0x090d28,4, 0x090d40,1, 0x090d48,4, 0x090d60,1, 0x090d68,4, 0x090d80,1, 0x090d88,4, 0x090da0,1, 0x090da8,4, 0x090dc0,1, 0x090dc8,4, 0x090de0,1, 0x090e04,1, 0x090e18,10, 0x090e84,1, 0x090eb8,21, 0x090f10,3, 0x090f20,3, 0x090f40,8, 0x090f64,1, 0x092008,5, 0x092024,3, 0x092034,1, 0x09203c,1, 0x092044,1, 0x09204c,1, 0x092054,1, 0x09205c,2, 0x09206c,1, 0x092074,1, 0x09207c,1, 0x092084,3, 0x0920a0,6, 0x0920c0,1, 0x0920cc,1, 0x0920d8,1, 0x0920e4,1, 0x0920f0,1, 0x092104,4, 0x092120,6, 0x092140,1, 0x092148,4, 0x092164,5, 0x092180,7, 0x092200,11, 0x092280,6, 0x0922a0,6, 0x0922c0,13, 0x092300,6, 0x092320,6, 0x092340,13, 0x092380,6, 0x0923a0,6, 0x0923c0,13, 0x092400,6, 0x092420,6, 0x092440,13, 0x092500,6, 0x092520,6, 0x092540,17, 0x092600,6, 0x092620,6, 0x092640,17, 0x092700,6, 0x092720,6, 0x092740,17, 0x092800,6, 0x092820,1, 0x092834,3, 0x092844,1, 0x09284c,1, 0x092854,1, 0x09285c,2, 0x09286c,2, 0x092878,13, 0x093000,1, 0x09300c,2, 0x093024,3, 0x093034,1, 0x09303c,1, 0x093044,1, 0x09304c,2, 0x09305c,1, 0x093068,1, 0x093074,1, 0x093084,4, 0x0930a4,1, 0x0930ac,1, 0x0930b4,3, 0x0930c4,3, 0x093100,1, 0x093114,3, 0x093140,3, 0x093150,1, 0x093164,3, 0x093180,8, 0x0931bc,2, 0x0931c8,4, 0x0931e0,4, 0x093200,7, 0x093220,6, 0x093240,6, 0x093260,12, 0x0932a0,5, 0x0932c0,1, 0x0932c8,4, 0x0932e0,2, 0x0932f4,1, 0x0932fc,9, 0x094004,7, 0x094024,7, 0x094044,7, 0x094064,11, 0x094100,1, 0x094108,6, 0x094140,2, 0x094164,1, 0x094174,9, 0x0941a0,7, 0x0941c0,6, 0x0941e0,6, 0x094204,1, 0x09420c,2, 0x094400,1, 0x094420,6, 0x094440,3, 0x094454,1, 0x094464,3, 0x094500,2, 0x094584,1, 0x0945b8,18, 0x094604,1, 0x094680,2, 0x0946c4,15, 0x095000,2, 0x095024,1, 0x095030,9, 0x095064,1, 0x09506c,4, 0x095080,2, 0x0950a0,1, 0x0950a8,4, 0x0950c0,6, 0x0950e0,3, 0x0950f0,3, 0x095200,2, 0x095224,11, 0x095260,6, 0x095280,39, 0x09533c,1, 0x095344,3, 0x095354,3, 0x095364,1, 0x09536c,1, 0x095380,1, 0x095388,4, 0x0953a0,3, 0x0953b0,3, 0x0953c4,1, 0x0953cc,1, 0x0953d4,1, 0x0953dc,2, 0x095400,4, 0x095420,1, 0x095428,4, 0x095440,1, 0x095448,4, 0x095460,1, 0x095468,4, 0x095480,1, 0x095488,4, 0x0954a0,2, 0x095504,5, 0x095524,4, 0x095540,1, 0x095550,7, 0x095580,6, 0x0955a0,15, 0x095604,1, 0x095610,35, 0x0956a0,7, 0x0956c0,7, 0x0956e0,3, 0x0956f0,3, 0x095700,1, 0x095780,1, 0x095790,4, 0x0957a4,1, 0x0957ac,8, 0x095800,3, 0x095810,1, 0x09581c,3, 0x096000,7, 0x096020,2, 0x096030,3, 0x096040,1, 0x096100,60, 0x096200,1, 0x096400,27, 0x096480,4, 0x0964c0,25, 0x096540,6, 0x096560,2, 0x09656c,3, 0x096580,8, 0x0965a4,22, 0x096600,1, 0x096680,9, 0x0966c0,3, 0x0966d0,8, 0x0a0000,64, 0x0a0200,27, 0x0a0280,4, 0x0a02c0,25, 0x0a0340,6, 0x0a0360,2, 0x0a036c,3, 0x0a0380,8, 0x0a03a4,4, 0x0a0400,5, 0x0a0420,6, 0x0a0440,3, 0x0a0480,19, 0x0a0500,1, 0x0a0508,3, 0x0a0800,64, 0x0a0a00,27, 0x0a0a80,4, 0x0a0ac0,25, 0x0a0b40,6, 0x0a0b60,2, 0x0a0b6c,3, 0x0a0b80,8, 0x0a0ba4,4, 0x0a0c00,5, 0x0a0c20,6, 0x0a0c40,3, 0x0a0c80,19, 0x0a0d00,1, 0x0a0d08,3, 0x0a1000,64, 0x0a1200,27, 0x0a1280,4, 0x0a12c0,25, 0x0a1340,6, 0x0a1360,2, 0x0a136c,3, 0x0a1380,8, 0x0a13a4,4, 0x0a1400,5, 0x0a1420,6, 0x0a1440,3, 0x0a1480,19, 0x0a1500,1, 0x0a1508,3, 0x0a1800,64, 0x0a1a00,27, 0x0a1a80,4, 0x0a1ac0,25, 0x0a1b40,6, 0x0a1b60,2, 0x0a1b6c,3, 0x0a1b80,8, 0x0a1ba4,4, 0x0a1c00,5, 0x0a1c20,6, 0x0a1c40,3, 0x0a1c80,19, 0x0a1d00,1, 0x0a1d08,3, 0x0a2000,64, 0x0a2200,27, 0x0a2280,4, 0x0a22c0,25, 0x0a2340,6, 0x0a2360,2, 0x0a236c,3, 0x0a2380,8, 0x0a23a4,4, 0x0a2400,5, 0x0a2420,6, 0x0a2440,3, 0x0a2480,19, 0x0a2500,1, 0x0a2508,3, 0x0a2800,64, 0x0a2a00,27, 0x0a2a80,4, 0x0a2ac0,25, 0x0a2b40,6, 0x0a2b60,2, 0x0a2b6c,3, 0x0a2b80,8, 0x0a2ba4,4, 0x0a2c00,5, 0x0a2c20,6, 0x0a2c40,3, 0x0a2c80,19, 0x0a2d00,1, 0x0a2d08,3, 0x0a3000,64, 0x0a3200,27, 0x0a3280,4, 0x0a32c0,25, 0x0a3340,6, 0x0a3360,2, 0x0a336c,3, 0x0a3380,8, 0x0a33a4,4, 0x0a3400,5, 0x0a3420,6, 0x0a3440,3, 0x0a3480,19, 0x0a3500,1, 0x0a3508,3, 0x0a3800,64, 0x0a3a00,27, 0x0a3a80,4, 0x0a3ac0,25, 0x0a3b40,6, 0x0a3b60,2, 0x0a3b6c,3, 0x0a3b80,8, 0x0a3ba4,4, 0x0a3c00,5, 0x0a3c20,6, 0x0a3c40,3, 0x0a3c80,19, 0x0a3d00,1, 0x0a3d08,3, 0x0a4000,113, 0x0a41e0,20, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5d60,1, 0x0b5d68,4, 0x0b5d80,1, 0x0b5d88,4, 0x0b5da0,1, 0x0b5da8,4, 0x0b5dc0,62, 0x0b5f00,5, 0x0b5f18,4, 0x0b5f40,7, 0x0b5f60,2, 0x0b5f84,1, 0x0b5f94,4, 0x0b6000,222, 0x0b6380,97, 0x0b6520,5, 0x0b6540,5, 0x0b6560,5, 0x0b6580,5, 0x0b65a0,5, 0x0b65c0,5, 0x0b65e0,5, 0x0b6600,5, 0x0b6624,4, 0x0b6700,1, 0x0b6780,6, 0x0b67a0,6, 0x0b67c0,6, 0x0b67e0,6, 0x0b6800,1, 0x0b6880,6, 0x0b68a0,6, 0x0b68c0,6, 0x0b68e0,6, 0x0b6904,4, 0x0b6924,4, 0x0b6944,1, 0x0b6950,4, 0x0b6a00,27, 0x0b6a80,4, 0x0b6ac0,25, 0x0b6b40,6, 0x0b6b60,2, 0x0b6b6c,3, 0x0b6b80,8, 0x0b6ba4,4, 0x0b7000,197, 0x0b7320,5, 0x0b7340,5, 0x0b7360,5, 0x0b7380,5, 0x0b73a0,5, 0x0b73c0,5, 0x0b73e0,5, 0x0b7400,5, 0x0b7420,5, 0x0b7440,5, 0x0b7460,5, 0x0b7480,5, 0x0b74a0,5, 0x0b74c0,5, 0x0b74e0,5, 0x0b7500,3, 0x0b7510,3, 0x0b7520,2, 0x0b7540,3, 0x0b7550,3, 0x0b7560,2, 0x0b7580,3, 0x0b7590,3, 0x0b75a0,2, 0x0b75c0,3, 0x0b75d0,3, 0x0b75e0,2, 0x0b7600,3, 0x0b7610,3, 0x0b7620,2, 0x0b7640,3, 0x0b7650,3, 0x0b7660,2, 0x0b7680,3, 0x0b7690,3, 0x0b76a0,2, 0x0b76c0,3, 0x0b76d0,3, 0x0b76e0,2, 0x0b7700,1, 0x0b7804,1, 0x0b7820,6, 0x0b7840,6, 0x0b7880,12, 0x0b78c0,6, 0x0b78e0,14, 0x0b7920,25, 0x0b7988,4, 0x0b79a0,2, 0x0b79c0,9, 0x0b79e8,2, 0x0b7a00,1, 0x0b8000,14, 0x0b8040,6, 0x0b8060,6, 0x0b8080,6, 0x0b80a0,6, 0x0b80c0,6, 0x0b80e0,6, 0x0b8200,15, 0x0b8240,4, 0x0b8260,17, 0x0b82c0,6, 0x0b82e0,2, 0x0b82ec,3, 0x0b8300,8, 0x0b8324,1, 0x0b8400,124, 0x0b8600,2, 0x0b8610,3, 0x0ba000,12, 0x0ba040,6, 0x0ba060,6, 0x0ba080,6, 0x0ba0a0,6, 0x0ba0c0,28, 0x0ba200,39, 0x0ba2a4,4, 0x0ba300,27, 0x0ba370,2, 0x0ba380,25, 0x0ba3e8,2, 0x0ba400,27, 0x0ba470,2, 0x0ba480,11, 0x0ba4b0,2, 0x0ba500,50, 0x0ba5d0,4, 0x0ba600,13, 0x0ba638,2, 0x0ba800,62, 0x0ba900,4, 0x0baa00,15, 0x0baa40,2, 0x0baa80,7, 0x0baaa0,2, 0x0baac0,13, 0x0baaf8,31, 0x0bab78,15, 0x0babb8,2, 0x0bac00,62, 0x0bad00,4, 0x0bae00,27, 0x0bae70,2, 0x0bae80,7, 0x0baea0,2, 0x0baec0,5, 0x0baed8,2, 0x0baf00,7, 0x0baf20,2, 0x0baf40,9, 0x0baf68,2, 0x0bb000,27, 0x0bb080,4, 0x0bb0c0,25, 0x0bb140,6, 0x0bb160,2, 0x0bb16c,3, 0x0bb180,8, 0x0bb1a4,3, 0x0bb200,7, 0x0bb220,7, 0x0bb240,7, 0x0bb260,7, 0x0bb280,7, 0x0bb2a0,7, 0x0bb2c0,7, 0x0bb2e0,7, 0x0bb300,7, 0x0bb320,7, 0x0bb340,7, 0x0bb360,7, 0x0c0000,55, 0x0c00e0,9, 0x0c0108,5, 0x0c0120,35, 0x0c0200,55, 0x0c02e0,9, 0x0c0308,5, 0x0c0320,35, 0x0c0400,55, 0x0c04e0,9, 0x0c0508,5, 0x0c0520,35, 0x0c0600,55, 0x0c06e0,9, 0x0c0708,5, 0x0c0720,35, 0x0c0800,110, 0x0c09c0,10, 0x0c0a00,10, 0x0c0a40,10, 0x0c0a80,10, 0x0c0ac0,4, 0x0c0c00,2, 0x0c0c80,20, 0x0c0d00,5, 0x0c0e00,3, 0x0c0e20,1, 0x0c0e28,4, 0x0c1000,9, 0x0c1028,16, 0x0c106c,1, 0x0c1080,10, 0x0c1100,9, 0x0c1128,16, 0x0c116c,1, 0x0c1180,10, 0x0c1200,9, 0x0c1228,16, 0x0c126c,1, 0x0c1280,10, 0x0c1300,9, 0x0c1328,16, 0x0c136c,1, 0x0c1380,10, 0x0c1400,3, 0x0c1410,20, 0x0c1480,1, 0x0c1488,5, 0x0c1800,2, 0x0c2000,7, 0x0c2020,7, 0x0c2040,7, 0x0c2060,7, 0x0c2080,33, 0x0c2120,6, 0x0c2140,6, 0x0c2184,1, 0x0c218c,4, 0x0c21a0,6, 0x0c21c0,7, 0x0c2200,2, 0x0c2214,5, 0x0c2234,5, 0x0c2254,5, 0x0c2274,5, 0x0c2300,12, 0x0c2340,5, 0x0c8000,2, 0x0c8104,1, 0x0c8174,37, 0x0c8284,1, 0x0c82b8,20, 0x0c8384,1, 0x0c83b8,22, 0x0c8420,4, 0x0c8440,4, 0x0c8460,4, 0x0c8480,2, 0x0c84c0,64, 0x0c8600,1, 0x0c8608,6, 0x0c8624,1, 0x0c8680,3, 0x0c86a0,1, 0x0c86a8,4, 0x0c8700,1, 0x0c8714,1, 0x0c871c,2, 0x0c8804,1, 0x0c8880,64, 0x0c8984,1, 0x0c8994,3, 0x0c89a4,1, 0x0c89ac,9, 0x0c8a04,3, 0x0c8a14,7, 0x0c8a40,3, 0x0c8a60,5, 0x0c8a80,1, 0x0c8ac0,21, 0x0c8b20,5, 0x0c8b40,5, 0x0c8b60,5, 0x0c8b80,5, 0x0c8c00,7, 0x0c8c20,7, 0x0c8c40,7, 0x0c8c60,7, 0x0c8c80,10, 0x0c8e00,2, 0x0c8f04,1, 0x0c8f30,54, 0x0c9104,1, 0x0c9178,34, 0x0ca000,9, 0x0ca404,1, 0x0ca40c,1, 0x0ca484,1, 0x0ca4c0,16, 0x0ca504,1, 0x0ca50c,5, 0x0ca524,1, 0x0ca52c,1, 0x0ca544,1, 0x0ca564,7, 0x0ca584,1, 0x0ca590,28, 0x0ca604,1, 0x0ca60c,4, 0x0ca800,10, 0x0ca834,5, 0x0cb000,8, 0x0cb404,1, 0x0cb410,4, 0x0cb424,1, 0x0cb430,4, 0x0cb504,1, 0x0cb530,56, 0x0cb800,20, 0x0cb880,12, 0x0cb8c0,12, 0x0cb900,11, 0x0cc000,37, 0x0cc200,3, 0x0cc400,2, 0x0cc504,1, 0x0cc570,36, 0x0cc800,2, 0x0cc814,3, 0x0d0000,7, 0x0d0020,7, 0x0d0040,7, 0x0d0060,2, 0x0d006c,2, 0x0d0080,7, 0x0d00a0,7, 0x0d00c0,7, 0x0d00e0,7, 0x0d0100,4, 0x0d0120,5, 0x0d0140,7, 0x0d0160,6, 0x0d0180,7, 0x0d01a0,7, 0x0d01c0,7, 0x0d01e0,7, 0x0d0200,7, 0x0d0220,7, 0x0d0240,3, 0x0d0250,1, 0x0d0280,7, 0x0d02a0,7, 0x0d02c0,1, 0x0d0300,3, 0x0d0310,3, 0x0d0320,1, 0x0d0340,3, 0x0d0350,3, 0x0d0360,1, 0x0d0380,5, 0x0d03c0,3, 0x0d03d0,3, 0x0d03e0,1, 0x0d0400,3, 0x0d0410,3, 0x0d0420,1, 0x0d0440,3, 0x0d0450,3, 0x0d0460,1, 0x0d0480,3, 0x0d0490,3, 0x0d04a0,1, 0x0d0500,17, 0x0d0580,3, 0x0d0590,3, 0x0d05a0,1, 0x0d05c0,9, 0x0d0600,8, 0x0d0800,27, 0x0d0880,4, 0x0d08c0,25, 0x0d0940,6, 0x0d0960,2, 0x0d096c,3, 0x0d0a00,184, 0x0d0ce4,1, 0x0d0cf0,5, 0x0d0d08,4, 0x0d0d20,1, 0x0d0d28,4, 0x0d0d40,2, 0x0d0e00,2, 0x0d0f00,34, 0x0d1004,3, 0x0d1014,1, 0x0d101c,1, 0x0d1024,1, 0x0d102c,1, 0x0d1044,1, 0x0d1054,7, 0x0d1080,34, 0x0d1204,4, 0x0d1220,7, 0x0d1240,2, 0x0d1280,18, 0x0d1300,7, 0x0d4000,3, 0x0d4010,3, 0x0d4020,3, 0x0d4030,3, 0x0d4040,3, 0x0d4054,771, 0x0d5000,5, 0x0d5024,259, 0x0d6000,10, 0x0d6034,515, 0x0d7004,1, 0x0d700c,11, 0x0d7040,9, 0x0d7080,9, 0x0d70c0,9, 0x0d7100,9, 0x0d7140,34, 0x0d8000,67, 0x0d8110,3, 0x0d8120,3, 0x0d8130,3, 0x0d8200,67, 0x0d8310,3, 0x0d8320,3, 0x0d8330,3, 0x0d8400,67, 0x0d8510,3, 0x0d8520,3, 0x0d8530,3, 0x0d8600,67, 0x0d8710,3, 0x0d8720,3, 0x0d8730,3, 0x0d8800,67, 0x0d8910,3, 0x0d8920,3, 0x0d8930,3, 0x0d8a00,67, 0x0d8b10,3, 0x0d8b20,3, 0x0d8b30,3, 0x0d8c00,67, 0x0d8d10,3, 0x0d8d20,3, 0x0d8d30,3, 0x0d8e00,67, 0x0d8f10,3, 0x0d8f20,3, 0x0d8f30,3, 0x0d9000,67, 0x0d9110,3, 0x0d9120,3, 0x0d9130,3, 0x0d9200,1, 0x0da000,1, 0x0da084,1, 0x0da0c0,17, 0x0da180,2, 0x0da1c4,1, 0x0da1e4,9, 0x0da244,1, 0x0da264,9, 0x0da2c4,1, 0x0da2e4,9, 0x0da344,1, 0x0da364,9, 0x0da3c4,1, 0x0da3e4,8, 0x0da800,9, 0x0da840,8, 0x0da864,2, 0x0da870,1, 0x0da880,8, 0x0da8a4,2, 0x0da8b0,1, 0x0da8c0,8, 0x0da8e4,2, 0x0da8f0,1, 0x0da900,8, 0x0da924,2, 0x0da930,1, 0x0da984,1, 0x0da9c0,39, 0x0daa64,3, 0x0daa74,1, 0x0daa7c,3, 0x0dab00,4, 0x0dab14,1, 0x0dab1c,5, 0x0dab40,19, 0x0daba0,1, 0x0daba8,4, 0x0dac00,3, 0x0dac10,3, 0x0dac20,3, 0x0dac30,3, 0x0dac40,3, 0x0dac50,3, 0x0dac60,3, 0x0dac70,3, 0x0dac80,3, 0x0dac90,2, 0x0dad04,1, 0x0dad40,26, 0x0dae04,1, 0x0dae14,5, 0x0dae34,1, 0x0dae3c,7, 0x0db000,36, 0x0db200,27, 0x0db280,4, 0x0db2c0,25, 0x0db340,6, 0x0db360,2, 0x0db36c,3, 0x0db380,8, 0x0db3a4,5, 0x0db400,7, 0x0db420,6, 0x0db440,7, 0x0db460,8, 0x0dc000,2, 0x0dc010,10, 0x0dc040,28, 0x0dc0c0,6, 0x0dc0e0,6, 0x0dc100,1, 0x0dc140,9, 0x0dc17c,10, 0x0dc1bc,1, 0x0dc200,12, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0160,2, 0x0e0180,4, 0x0e019c,18, 0x0e01ec,4, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0240,1, 0x0e027c,9, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0560,2, 0x0e0580,4, 0x0e059c,18, 0x0e05ec,4, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0640,1, 0x0e067c,9, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0960,2, 0x0e0980,4, 0x0e099c,18, 0x0e09ec,4, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0a40,1, 0x0e0a7c,9, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d60,2, 0x0e0d80,4, 0x0e0d9c,18, 0x0e0dec,4, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e0e40,1, 0x0e0e7c,9, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1160,2, 0x0e1180,4, 0x0e119c,18, 0x0e11ec,4, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1240,1, 0x0e127c,9, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1560,2, 0x0e1580,4, 0x0e159c,18, 0x0e15ec,4, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1640,1, 0x0e167c,9, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1960,2, 0x0e1980,4, 0x0e199c,18, 0x0e19ec,4, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1a40,1, 0x0e1a7c,9, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d60,2, 0x0e1d80,4, 0x0e1d9c,18, 0x0e1dec,4, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e1e40,1, 0x0e1e7c,9, 0x0e2000,3, 0x0e2018,2, 0x0e2024,13, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,9, 0x0e2140,3, 0x0e2160,2, 0x0e2180,4, 0x0e219c,18, 0x0e21ec,4, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2240,1, 0x0e227c,9, 0x0e2400,3, 0x0e2418,2, 0x0e2424,13, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,9, 0x0e2540,3, 0x0e2560,2, 0x0e2580,4, 0x0e259c,18, 0x0e25ec,4, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2640,1, 0x0e267c,9, 0x0e2800,3, 0x0e2818,2, 0x0e2824,13, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,9, 0x0e2940,3, 0x0e2960,2, 0x0e2980,4, 0x0e299c,18, 0x0e29ec,4, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e2a40,1, 0x0e2a7c,9, 0x0e2c00,1, 0x0e3044,12, 0x0e3078,1, 0x0e3200,17, 0x0e3248,4, 0x0e3260,4, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,4, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,4, 0x0e3300,1, 0x0e3308,4, 0x0e3320,4, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,22, 0x0e3500,90, 0x0e366c,2, 0x0e3800,6, 0x0e3820,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,1, 0x0e3b94,6, 0x0e3c40,2, 0x0e3c4c,69, 0x0e4004,16, 0x0e4048,3, 0x0e4100,2, 0x0e4184,1, 0x0e41bc,84, 0x0e4340,36, 0x0e4400,4, 0x0e4484,1, 0x0e44c0,20, 0x0e4584,1, 0x0e45c0,16, 0x0e4900,7, 0x0e4920,2, 0x0e4940,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c04,1, 0x0e4df8,156, 0x0e5084,1, 0x0e50a0,22, 0x0e5100,1, 0x0e5200,26, 0x0e5280,9, 0x0e5300,12, 0x0e5380,27, 0x0e5400,39, 0x0e54a0,66, 0x0e55c0,1, 0x0e55c8,4, 0x0e55e0,4, 0x0e5600,2, 0x0e5614,3, 0x0e5640,5, 0x0e5680,4, 0x0e56a0,13, 0x0e56e0,12, 0x0e5780,28, 0x0e5800,20, 0x0e5880,1, 0x0e58a0,7, 0x0e58c0,11, 0x0e58f0,3, 0x0e5a00,99, 0x0e5c00,28, 0x0e5d00,44, 0x0e5e00,4, 0x0e5e20,1, 0x0e5e28,4, 0x0e5e40,1, 0x0e5e48,4, 0x0e5e80,4, 0x0e5ec0,13, 0x0e6000,116, 0x0e6400,5, 0x0e6418,94, 0x0e65a0,30, 0x0e6800,3, 0x0e6810,3, 0x0e6820,3, 0x0e6830,3, 0x0e6840,3, 0x0e6850,3, 0x0e6860,1, 0x0e6868,4, 0x0e6884,1, 0x0e688c,1, 0x0e6894,1, 0x0e689c,10, 0x0e6a00,3, 0x0e6a10,3, 0x0e6a20,3, 0x0e6a30,3, 0x0e6a40,3, 0x0e6a50,3, 0x0e6a60,3, 0x0e6a70,3, 0x0e6a80,3, 0x0e6a90,3, 0x0e6aa0,3, 0x0e6ab0,3, 0x0e6ac0,3, 0x0e6ad0,3, 0x0e6ae0,3, 0x0e6af0,3, 0x0e6b00,3, 0x0e6b10,3, 0x0e6b20,3, 0x0e6b30,3, 0x0e6b40,3, 0x0e6b50,3, 0x0e6b60,3, 0x0e6b70,3, 0x0e6b80,3, 0x0e6b90,3, 0x0e6ba0,3, 0x0e6bb0,3, 0x0e6bc0,3, 0x0e6bd0,3, 0x0e6be0,3, 0x0e6bf0,3, 0x0e6c00,1, 0x0e8000,11, 0x0e8030,1, 0x0e8080,2, 0x0e80c4,2, 0x0e80d0,1, 0x0e80d8,1, 0x0e80e0,1, 0x0e80f4,3, 0x0e9000,128, 0x0e9208,256, 0x0e9610,145, 0x0ea000,24, 0x0ea078,1, 0x0ea080,1, 0x0f0000,1, 0x0f000c,4, 0x0f0020,7, 0x0f0040,4, 0x0f0404,1, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,7, 0x0f04a0,7, 0x0f04c0,7, 0x0f0520,2, 0x0f052c,2, 0x0f0540,10, 0x0f0580,10, 0x0f05c0,3, 0x0f0600,20, 0x0f0680,2, 0x0f0800,5, 0x0f0a00,27, 0x0f0a80,3, 0x0f0c04,1, 0x0f0d88,214, 0x0f1128,8, 0x0f11a8,8, 0x0f1228,8, 0x0f12a8,8, 0x0f1328,8, 0x0f13a8,8, 0x0f1428,8, 0x0f14a8,8, 0x0f1528,8, 0x0f15a8,8, 0x0f1628,8, 0x0f16a8,8, 0x0f1728,8, 0x0f17a8,8, 0x0f1828,8, 0x0f18a8,8, 0x0f1928,8, 0x0f19a8,8, 0x0f1a00,3, 0x0f1a10,3, 0x0f1a20,17, 0x0f1c00,148, 0x0f2000,1, 0x0f2080,18, 0x0f2100,1, 0x0f2200,2, 0x0f2210,3, 0x0f2220,3, 0x0f2230,3, 0x0f2240,3, 0x0f2250,3, 0x0f2260,3, 0x0f2270,3, 0x0f2280,3, 0x0f2290,3, 0x0f22a0,3, 0x0f22b0,3, 0x0f22c0,3, 0x0f22d0,3, 0x0f22e0,3, 0x0f22f0,3, 0x0f2300,3, 0x0f3000,40, 0x0f3400,2, 0x0f3410,3, 0x0f3420,3, 0x0f3430,3, 0x0f3440,3, 0x0f3450,3, 0x0f3460,3, 0x0f3470,3, 0x0f3480,3, 0x0f3490,3, 0x0f34a0,3, 0x0f34b0,3, 0x0f34c0,3, 0x0f34d0,3, 0x0f34e0,3, 0x0f34f0,3, 0x0f3500,3, 0x0f3600,4, 0x0f3800,8, 0x0f3900,2, 0x0f3910,3, 0x0f3920,3, 0x0f3930,3, 0x0f3940,3, 0x0f3950,3, 0x0f3960,3, 0x0f3970,3, 0x0f3980,3, 0x0f3a00,3, 0x0f4000,23, 0x0f4080,23, 0x0f4100,23, 0x0f4180,9, 0x0f41c0,1, 0x0f4200,2, 0x0f4210,3, 0x0f4220,3, 0x0f4230,3, 0x0f4240,3, 0x0f4250,3, 0x0f4260,3, 0x0f4270,3, 0x0f4280,3, 0x0f4300,1, 0x0f4310,2, 0x0f4324,1, 0x0f4334,3, 0x0f4344,3, 0x0f4354,1, 0x0f435c,1, 0x0f4404,1, 0x0f447c,33, 0x0f4504,1, 0x0f450c,1, 0x0f4580,18, 0x0f4600,5, 0x0f4640,9, 0x0f4680,9, 0x0f46c0,20, 0x0f4720,3, 0x0f4730,2, 0x0f4740,9, 0x0f4780,3, 0x0f47a0,8, 0x0f4800,6, 0x0f4820,7, 0x0f4840,6, 0x0f4860,7, 0x0f4880,3, 0x0f48a0,6, 0x0f48c0,2, 0x0f48cc,2, 0x0f48e0,2, 0x0f48ec,2, 0x0f4900,1, 0x0f4a00,2, 0x0f4b00,2, 0x0f4b20,14, 0x0f4b60,9, 0x0f4c00,3, 0x0f4c20,9, 0x0f4c80,1, 0x0f4ca0,16, 0x0f4d00,4, 0x0f5004,1, 0x0f5080,34, 0x0f5110,10, 0x0f513c,3, 0x0f5204,1, 0x0f5280,36, 0x0f5314,1, 0x0f5400,20, 0x0f5480,9, 0x0f5804,1, 0x0f5880,34, 0x0f5910,10, 0x0f593c,3, 0x0f5a04,1, 0x0f5a80,36, 0x0f5b14,1, 0x0f5c00,20, 0x0f5c80,9, 0x0f6004,1, 0x0f6080,34, 0x0f6110,10, 0x0f613c,3, 0x0f6204,1, 0x0f6280,36, 0x0f6314,1, 0x0f6400,20, 0x0f6480,9, 0x0f6804,1, 0x0f6880,34, 0x0f6910,10, 0x0f693c,3, 0x0f6a04,1, 0x0f6a80,36, 0x0f6b14,1, 0x0f6c00,20, 0x0f6c80,9, 0x0f7004,1, 0x0f7080,34, 0x0f7110,10, 0x0f713c,3, 0x0f7204,1, 0x0f7280,36, 0x0f7314,1, 0x0f7400,20, 0x0f7480,9, 0x0f7804,1, 0x0f7880,34, 0x0f7910,10, 0x0f793c,3, 0x0f7a04,1, 0x0f7a80,36, 0x0f7b14,1, 0x0f7c00,20, 0x0f7c80,9, 0x0f8004,1, 0x0f8080,34, 0x0f8110,10, 0x0f813c,3, 0x0f8204,1, 0x0f8280,36, 0x0f8314,1, 0x0f8400,20, 0x0f8480,9, 0x0f8804,1, 0x0f8880,34, 0x0f8910,10, 0x0f893c,3, 0x0f8a04,1, 0x0f8a80,36, 0x0f8b14,1, 0x0f8c00,20, 0x0f8c80,9, 0x0f9004,1, 0x0f9080,34, 0x0f9110,10, 0x0f913c,3, 0x0f9204,1, 0x0f9280,36, 0x0f9314,1, 0x0f9400,20, 0x0f9480,9, 0x0f9804,1, 0x0f9880,34, 0x0f9910,10, 0x0f993c,3, 0x0f9a04,1, 0x0f9a80,36, 0x0f9b14,1, 0x0f9c00,20, 0x0f9c80,9, 0x0fa004,1, 0x0fa080,34, 0x0fa110,10, 0x0fa13c,3, 0x0fa204,1, 0x0fa280,36, 0x0fa314,1, 0x0fa400,20, 0x0fa480,9, 0x0fa804,1, 0x0fa880,34, 0x0fa910,10, 0x0fa93c,3, 0x0faa04,1, 0x0faa80,36, 0x0fab14,1, 0x0fac00,20, 0x0fac80,9, 0x0fb004,1, 0x0fb080,34, 0x0fb110,10, 0x0fb13c,3, 0x0fb204,1, 0x0fb280,36, 0x0fb314,1, 0x0fb400,20, 0x0fb480,9, 0x0fb804,1, 0x0fb880,34, 0x0fb910,10, 0x0fb93c,3, 0x0fba04,1, 0x0fba80,36, 0x0fbb14,1, 0x0fbc00,20, 0x0fbc80,9, 0x0fc000,20, 0x0fc084,1, 0x0fc08c,1, 0x0fc0c0,12, 0x0fc100,3, 0x0fc200,20, 0x0fc284,1, 0x0fc28c,1, 0x0fc2c0,12, 0x0fc300,3, 0x0fc400,20, 0x0fc484,1, 0x0fc48c,1, 0x0fc4c0,12, 0x0fc500,3, 0x0fc600,20, 0x0fc684,1, 0x0fc68c,1, 0x0fc6c0,12, 0x0fc700,3, 0x0fc800,20, 0x0fc884,1, 0x0fc88c,1, 0x0fc8c0,12, 0x0fc900,3, 0x0fca00,20, 0x0fca84,1, 0x0fca8c,1, 0x0fcac0,12, 0x0fcb00,3, 0x0fcc00,20, 0x0fcc84,1, 0x0fcc8c,1, 0x0fccc0,12, 0x0fcd00,3, 0x0fce00,20, 0x0fce84,1, 0x0fce8c,1, 0x0fcec0,12, 0x0fcf00,3, 0x0fd000,20, 0x0fd084,1, 0x0fd08c,1, 0x0fd0c0,12, 0x0fd100,3, 0x0fd200,20, 0x0fd284,1, 0x0fd28c,1, 0x0fd2c0,12, 0x0fd300,3, 0x0fd400,20, 0x0fd484,1, 0x0fd48c,1, 0x0fd4c0,12, 0x0fd500,3, 0x0fd600,20, 0x0fd684,1, 0x0fd68c,1, 0x0fd6c0,12, 0x0fd700,3, 0x0fd800,20, 0x0fd884,1, 0x0fd88c,1, 0x0fd8c0,12, 0x0fd900,3, 0x0fda00,7, 0x0fda80,28, 0x0fdb00,20, 0x0fdb80,11, 0x0fdc04,1, 0x0fdc14,31, 0x0fdd00,3, 0x0fdd44,1, 0x0fdd50,13, 0x0fe000,3, 0x0fe040,128, 0x0ff000,2, 0x0ff010,3, 0x0ff020,3, 0x0ff030,3, 0x0ff040,3, 0x0ff050,3, 0x0ff060,3, 0x0ff070,3, 0x0ff080,3, 0x0ff090,3, 0x0ff0a0,3, 0x0ff0b0,3, 0x0ff0c0,3, 0x0ff0d0,3, 0x0ff0e0,3, 0x0ff0f0,3, 0x0ff100,3, 0x0ff200,10, 0x0ff404,1, 0x0ff414,3, 0x0ff800,309, 0x110000,1, 0x110008,4, 0x110024,4, 0x110040,2, 0x110064,11, 0x1100a0,6, 0x1100c0,2, 0x110104,1, 0x110178,34, 0x110204,5, 0x110224,3, 0x110244,4, 0x110264,3, 0x110274,3, 0x110284,3, 0x1102a4,5, 0x1102c4,1, 0x1102d0,4, 0x1102e4,1, 0x1102f4,3, 0x110304,1, 0x11030c,1, 0x110314,1, 0x11031c,1, 0x110324,1, 0x11032c,1, 0x110334,1, 0x11033c,1, 0x110344,1, 0x11034c,1, 0x110354,1, 0x11035c,1, 0x110364,1, 0x11036c,1, 0x110374,1, 0x11037c,1, 0x110384,3, 0x110394,1, 0x11039c,1, 0x1103a4,3, 0x1103b4,3, 0x1103c4,35, 0x110604,1, 0x110630,23, 0x1106a4,4, 0x1106c0,2, 0x1106e4,1, 0x1106f0,4, 0x110704,1, 0x110710,4, 0x110724,4, 0x110740,2, 0x110760,6, 0x110780,12, 0x1107c0,6, 0x110800,1, 0x110820,9, 0x110850,5, 0x110870,5, 0x1108a0,9, 0x1108e0,9, 0x110910,38, 0x1109b0,1, 0x1109c0,4, 0x1109e0,6, 0x110a00,6, 0x110a20,6, 0x110a40,6, 0x110a60,6, 0x110a80,6, 0x110aa0,6, 0x110ac0,6, 0x110ae0,6, 0x110b00,6, 0x110b20,6, 0x110b40,6, 0x110b60,6, 0x110b80,6, 0x110ba0,6, 0x110bc0,6, 0x110be0,1, 0x110c04,1, 0x110c10,9, 0x110c40,1, 0x110c54,4, 0x110c70,1, 0x110c80,1, 0x110c90,1, 0x110ca0,1, 0x110cb4,1, 0x110cbc,2, 0x110cd0,1, 0x110ce0,1, 0x110cf0,1, 0x110d00,1, 0x110d10,1, 0x110d20,1, 0x110d30,1, 0x110d40,1, 0x110d50,1, 0x110d60,1, 0x110d70,1, 0x110d80,1, 0x110d90,1, 0x110da0,1, 0x110db0,1, 0x110dc0,1, 0x110dd0,1, 0x110de0,1, 0x110df0,1, 0x110e00,1, 0x110e10,1, 0x110e20,1, 0x110e30,1, 0x110e40,1, 0x110e50,1, 0x110e60,1, 0x110e70,1, 0x110e80,1, 0x110e90,1, 0x110ea0,1, 0x110eb0,1, 0x110ec0,1, 0x110ed0,64, 0x110fe0,1, 0x110ff0,6, 0x111020,6, 0x111200,9, 0x111240,9, 0x111280,9, 0x1112c0,9, 0x111304,2, 0x111400,1, 0x111440,1, 0x111460,14, 0x1114a4,1, 0x1114ac,2, 0x1114c0,6, 0x1114e0,1, 0x1114f0,1, 0x111500,1, 0x111520,8, 0x111544,6, 0x111580,3, 0x111604,37, 0x111700,4, 0x111720,5, 0x111740,7, 0x111760,6, 0x111780,4, 0x1117a0,6, 0x111800,3, 0x111810,3, 0x111820,3, 0x111830,3, 0x111840,3, 0x111850,3, 0x111860,3, 0x111870,3, 0x111880,3, 0x111890,3, 0x1118a0,3, 0x1118b0,3, 0x1118c0,3, 0x1118d0,3, 0x1118e0,3, 0x1118f0,3, 0x111900,2, 0x111a00,8, 0x111a24,3, 0x111a44,1, 0x111a4c,73, 0x111c00,33, 0x111d00,33, 0x111e00,33, 0x111f00,33, 0x112000,2, 0x112400,222, 0x112800,53, 0x112900,2, 0x112910,8, 0x112940,2, 0x112950,8, 0x112980,19, 0x1129d0,3, 0x1129e0,3, 0x1129f0,3, 0x112a00,1, 0x112a80,14, 0x112ac4,7, 0x112b00,14, 0x112b44,7, 0x112b80,14, 0x112bc4,7, 0x112c00,14, 0x112c44,7, 0x112c84,1, 0x112c90,13, 0x112d00,12, 0x112d40,1, 0x112d60,7, 0x112d80,6, 0x112da0,16, 0x113000,59, 0x1130f0,54, 0x113200,6, 0x113220,6, 0x113240,3, 0x113250,3, 0x113260,3, 0x113270,3, 0x113280,5, 0x114004,1, 0x114064,43, 0x114204,5, 0x114220,10, 0x114260,21, 0x1142bc,1, 0x1142c8,1, 0x1142d4,1, 0x1142e0,1, 0x1142ec,1, 0x1142f8,1, 0x114310,1, 0x114320,1, 0x11432c,1, 0x114338,1, 0x114380,32, 0x114404,3, 0x114414,4, 0x114428,14, 0x114480,2, 0x1144c4,1, 0x1144d0,15, 0x114524,4, 0x114544,1, 0x114564,13, 0x1145a0,6, 0x1145c0,1, 0x1145c8,2, 0x114604,21, 0x114680,1, 0x114688,7, 0x114804,5, 0x114880,37, 0x114920,1, 0x114930,1, 0x114940,1, 0x114950,1, 0x114960,1, 0x114970,1, 0x114980,1, 0x114990,1, 0x1149a0,1, 0x1149c0,6, 0x1149e0,6, 0x114a00,1, 0x114c00,1, 0x114c0c,1, 0x114c18,1, 0x114c24,1, 0x114c30,1, 0x114c3c,1, 0x114c48,1, 0x114c54,1, 0x114c60,1, 0x114c6c,1, 0x114c78,1, 0x114c84,1, 0x114c90,1, 0x114c9c,1, 0x114ca8,1, 0x114cb4,1, 0x114cc0,1, 0x114ccc,1, 0x114cd8,1, 0x114cf8,3, 0x114d08,4, 0x114d40,14, 0x114d7c,3, 0x114d94,1, 0x114d9c,1, 0x114da4,1, 0x114dac,2, 0x114e00,2, 0x114e20,3, 0x114e30,9, 0x114e60,1, 0x114e70,1, 0x114e80,1, 0x114e98,2, 0x115000,27, 0x115080,4, 0x1150c0,25, 0x115140,6, 0x115160,2, 0x11516c,3, 0x115180,8, 0x1151a4,15, 0x115200,7, 0x115220,7, 0x115240,3, 0x115400,3, 0x115424,4, 0x115440,8, 0x115464,1, 0x115474,9, 0x1154a0,6, 0x1154c0,6, 0x1154e0,6, 0x115500,3, 0x115600,121, 0x1157f0,15, 0x115840,2, 0x115864,1, 0x11586c,5, 0x115884,17, 0x1158e4,1, 0x1158ec,10, 0x115920,5, 0x115940,4, 0x115960,5, 0x115980,2, 0x1159a4,1, 0x1159ac,10, 0x1159e0,5, 0x115a00,4, 0x115a20,5, 0x115a40,2, 0x115a64,1, 0x115a6c,10, 0x115aa0,5, 0x115ac0,4, 0x115ae0,5, 0x115b00,2, 0x115b24,1, 0x115b2c,5, 0x115b80,2, 0x115bc4,1, 0x115bd0,14, 0x115c44,24, 0x115cc0,3, 0x115d00,35, 0x116000,1, 0x116008,18, 0x117000,5, 0x117020,5, 0x117040,1, 0x117060,5, 0x117080,5, 0x1170a0,5, 0x1170c0,1, 0x1170e0,5, 0x117100,5, 0x117120,5, 0x117140,1, 0x117160,5, 0x117180,5, 0x1171a0,5, 0x1171c0,1, 0x1171e0,5, 0x117200,5, 0x117220,5, 0x117240,1, 0x117260,5, 0x117280,5, 0x1172a0,5, 0x1172c0,1, 0x1172e0,5, 0x117300,5, 0x117320,5, 0x117340,1, 0x117360,5, 0x117380,5, 0x1173a0,5, 0x1173c0,1, 0x1173e0,5, 0x117400,5, 0x117420,5, 0x117440,1, 0x117460,5, 0x117480,5, 0x1174a0,5, 0x1174c0,1, 0x1174e0,5, 0x117500,5, 0x117520,5, 0x117540,1, 0x117560,5, 0x117580,5, 0x1175a0,5, 0x1175c0,1, 0x1175e0,5, 0x117600,5, 0x117620,5, 0x117640,1, 0x117660,5, 0x117680,5, 0x1176a0,5, 0x1176c0,1, 0x1176e0,5, 0x117700,5, 0x117720,5, 0x117740,1, 0x117760,5, 0x117780,5, 0x1177a0,5, 0x1177c0,1, 0x1177e0,5, 0x117800,1, 0x118000,9, 0x118040,2, 0x120000,25, 0x120074,7, 0x1200c0,11, 0x120100,1, 0x120108,1, 0x120110,14, 0x12014c,4, 0x120160,10, 0x12018c,6, 0x1201a8,4, 0x1201c0,1, 0x1201c8,4, 0x1201e0,1, 0x1201e8,4, 0x120200,1, 0x120208,4, 0x120400,13, 0x120440,2, 0x120454,1, 0x12045c,3, 0x120474,1, 0x12047c,2, 0x120604,3, 0x120614,6, 0x120644,3, 0x120654,6, 0x120680,1, 0x1206a0,6, 0x120700,4, 0x120740,11, 0x120780,13, 0x1207c0,1, 0x1207cc,3, 0x120804,1, 0x120814,3, 0x120824,1, 0x120834,6, 0x120904,1, 0x120940,16, 0x120984,1, 0x120998,13, 0x120c00,3, 0x120c14,10, 0x120c44,1, 0x120c4c,7, 0x120c70,3, 0x120c80,2, 0x120c94,1, 0x120c9c,1, 0x120d00,4, 0x120d40,11, 0x120d80,4, 0x120dc0,11, 0x120e04,16, 0x121004,1, 0x12103c,17, 0x121084,3, 0x121094,1, 0x12109c,1, 0x1210a4,1, 0x1210ac,4, 0x122000,9, 0x122040,5, 0x122060,4, 0x122080,18, 0x122200,13, 0x122280,4, 0x1222c0,11, 0x122300,2, 0x122320,7, 0x122340,1, 0x122400,17, 0x122480,17, 0x122500,6, 0x122524,1, 0x122534,3, 0x122600,17, 0x122680,17, 0x122700,10, 0x122800,17, 0x122880,17, 0x122900,15, 0x122a00,75, 0x122c00,4, 0x122c14,2, 0x122c20,5, 0x122c3c,1, 0x122c80,17, 0x122d00,4, 0x122d40,11, 0x123004,1, 0x123040,16, 0x123084,1, 0x1230c0,16, 0x123104,1, 0x123154,46, 0x123400,8, 0x123440,8, 0x123480,3, 0x1234c4,1, 0x1234e0,17, 0x123600,1, 0x123620,8, 0x123644,6, 0x123680,1, 0x1236c0,3, 0x1236d0,3, 0x1236e0,3, 0x1236f0,3, 0x123700,1, 0x123720,8, 0x123744,6, 0x123780,1, 0x1237a0,8, 0x1237c4,6, 0x123804,11, 0x123a00,28, 0x123a80,4, 0x123ac0,11, 0x123b00,4, 0x123b40,11, 0x123b80,1, 0x123b88,10, 0x123c00,4, 0x123e00,27, 0x123e80,4, 0x123ec0,25, 0x123f40,6, 0x123f60,2, 0x123f6c,3, 0x123f80,8, 0x123fa4,9, 0x124004,1, 0x12401c,9, 0x124044,1, 0x12405c,9, 0x124084,1, 0x1240a4,7, 0x124104,1, 0x124140,19, 0x124200,57, 0x1242f0,18, 0x124340,1, 0x124380,7, 0x1243a0,1, 0x1243c0,2, 0x1243d0,3, 0x1243e0,1, 0x130000,4, 0x130020,5, 0x130040,34, 0x130100,1, 0x130108,4, 0x130140,6, 0x130160,6, 0x130180,1, 0x130200,3, 0x130210,1, 0x13021c,1, 0x130400,1, 0x130480,6, 0x1304a0,6, 0x1304c0,36, 0x130600,1, 0x130680,6, 0x1306a0,6, 0x1306c0,17, 0x130800,2, 0x130810,3, 0x130900,41, 0x1309b0,4, 0x130a00,1, 0x130c00,2, 0x130d04,1, 0x130d74,37, 0x130e84,1, 0x130e9c,12, 0x130f00,10, 0x131000,27, 0x131080,1, 0x1310a0,6, 0x131200,27, 0x131280,4, 0x1312c0,25, 0x131340,6, 0x131360,2, 0x13136c,3, 0x131400,16, 0x131600,23, 0x131680,23, 0x131700,1, 0x131800,3, 0x131820,2, 0x13182c,2, 0x131880,4, 0x1318c0,11, 0x131900,4, 0x131940,11, 0x131980,4, 0x1319a0,7, 0x1319c0,4, 0x1319e0,7, 0x131a00,4, 0x131b00,36, 0x131c00,4, 0x131d00,38, 0x131e00,4, 0x131f00,38, 0x132000,4, 0x132100,37, 0x132200,4, 0x132220,10, 0x13224c,2, 0x140000,7, 0x140020,2, 0x140040,7, 0x140060,2, 0x140080,7, 0x1400a0,2, 0x1400c0,7, 0x1400e0,2, 0x140100,7, 0x140120,2, 0x140140,7, 0x140160,2, 0x140180,7, 0x1401a0,2, 0x1401c0,7, 0x1401e0,2, 0x140200,7, 0x140220,2, 0x140240,7, 0x140260,2, 0x140280,7, 0x1402a0,2, 0x1402c0,7, 0x1402e0,2, 0x140300,7, 0x140320,2, 0x140340,7, 0x140360,2, 0x140380,7, 0x1403a0,2, 0x1403c0,7, 0x1403e0,2, 0x140400,7, 0x140420,2, 0x140440,7, 0x140460,2, 0x140480,7, 0x1404a0,2, 0x1404c0,7, 0x1404e0,2, 0x140500,7, 0x140520,2, 0x140540,7, 0x140560,2, 0x140580,7, 0x1405a0,2, 0x1405c0,7, 0x1405e0,2, 0x140600,7, 0x140620,2, 0x140640,7, 0x140660,2, 0x140680,7, 0x1406a0,2, 0x1406c0,7, 0x1406e0,2, 0x140700,7, 0x140720,2, 0x140740,7, 0x140760,2, 0x140780,7, 0x1407a0,2, 0x1407c0,7, 0x1407e0,2, 0x140800,7, 0x140820,2, 0x140840,7, 0x140860,2, 0x140880,7, 0x1408a0,2, 0x1408c0,7, 0x1408e0,2, 0x140900,211, 0x140c50,6, 0x141000,7, 0x141020,2, 0x141040,7, 0x141060,2, 0x141080,7, 0x1410a0,2, 0x1410c0,7, 0x1410e0,2, 0x141100,7, 0x141120,2, 0x141140,7, 0x141160,2, 0x141180,7, 0x1411a0,2, 0x1411c0,7, 0x1411e0,2, 0x141200,7, 0x141220,2, 0x141240,7, 0x141260,2, 0x141280,7, 0x1412a0,2, 0x1412c0,7, 0x1412e0,2, 0x141300,7, 0x141320,2, 0x141340,7, 0x141360,2, 0x141380,7, 0x1413a0,2, 0x1413c0,7, 0x1413e0,2, 0x141400,7, 0x141420,2, 0x141440,7, 0x141460,2, 0x141480,7, 0x1414a0,2, 0x1414c0,7, 0x1414e0,2, 0x141500,7, 0x141520,2, 0x141540,7, 0x141560,2, 0x141580,7, 0x1415a0,2, 0x1415c0,7, 0x1415e0,2, 0x141600,7, 0x141620,2, 0x141640,7, 0x141660,2, 0x141680,7, 0x1416a0,2, 0x1416c0,7, 0x1416e0,2, 0x141700,7, 0x141720,2, 0x141740,7, 0x141760,2, 0x141780,7, 0x1417a0,2, 0x1417c0,7, 0x1417e0,2, 0x141800,7, 0x141820,2, 0x141840,7, 0x141860,2, 0x141880,7, 0x1418a0,2, 0x1418c0,7, 0x1418e0,2, 0x141900,211, 0x141c50,6, 0x142000,7, 0x142020,2, 0x142040,7, 0x142060,2, 0x142080,7, 0x1420a0,2, 0x1420c0,7, 0x1420e0,2, 0x142100,7, 0x142120,2, 0x142140,7, 0x142160,2, 0x142180,7, 0x1421a0,2, 0x1421c0,7, 0x1421e0,2, 0x142200,7, 0x142220,2, 0x142240,7, 0x142260,2, 0x142280,7, 0x1422a0,2, 0x1422c0,7, 0x1422e0,2, 0x142300,7, 0x142320,2, 0x142340,7, 0x142360,2, 0x142380,7, 0x1423a0,2, 0x1423c0,7, 0x1423e0,2, 0x142400,7, 0x142420,2, 0x142440,7, 0x142460,2, 0x142480,7, 0x1424a0,2, 0x1424c0,7, 0x1424e0,2, 0x142500,7, 0x142520,2, 0x142540,7, 0x142560,2, 0x142580,7, 0x1425a0,2, 0x1425c0,7, 0x1425e0,2, 0x142600,7, 0x142620,2, 0x142640,7, 0x142660,2, 0x142680,7, 0x1426a0,2, 0x1426c0,7, 0x1426e0,2, 0x142700,7, 0x142720,2, 0x142740,7, 0x142760,2, 0x142780,7, 0x1427a0,2, 0x1427c0,7, 0x1427e0,2, 0x142800,7, 0x142820,2, 0x142840,7, 0x142860,2, 0x142880,7, 0x1428a0,2, 0x1428c0,7, 0x1428e0,2, 0x142900,211, 0x142c50,6, 0x143000,7, 0x143020,2, 0x143040,7, 0x143060,2, 0x143080,7, 0x1430a0,2, 0x1430c0,7, 0x1430e0,2, 0x143100,7, 0x143120,2, 0x143140,7, 0x143160,2, 0x143180,7, 0x1431a0,2, 0x1431c0,7, 0x1431e0,2, 0x143200,7, 0x143220,2, 0x143240,7, 0x143260,2, 0x143280,7, 0x1432a0,2, 0x1432c0,7, 0x1432e0,2, 0x143300,7, 0x143320,2, 0x143340,7, 0x143360,2, 0x143380,7, 0x1433a0,2, 0x1433c0,7, 0x1433e0,2, 0x143400,7, 0x143420,2, 0x143440,7, 0x143460,2, 0x143480,7, 0x1434a0,2, 0x1434c0,7, 0x1434e0,2, 0x143500,7, 0x143520,2, 0x143540,7, 0x143560,2, 0x143580,7, 0x1435a0,2, 0x1435c0,7, 0x1435e0,2, 0x143600,7, 0x143620,2, 0x143640,7, 0x143660,2, 0x143680,7, 0x1436a0,2, 0x1436c0,7, 0x1436e0,2, 0x143700,7, 0x143720,2, 0x143740,7, 0x143760,2, 0x143780,7, 0x1437a0,2, 0x1437c0,7, 0x1437e0,2, 0x143800,7, 0x143820,2, 0x143840,7, 0x143860,2, 0x143880,7, 0x1438a0,2, 0x1438c0,7, 0x1438e0,2, 0x143900,211, 0x143c50,6, 0x144000,7, 0x144020,2, 0x144040,7, 0x144060,2, 0x144080,7, 0x1440a0,2, 0x1440c0,7, 0x1440e0,2, 0x144100,7, 0x144120,2, 0x144140,7, 0x144160,2, 0x144180,7, 0x1441a0,2, 0x1441c0,7, 0x1441e0,2, 0x144200,7, 0x144220,2, 0x144240,7, 0x144260,2, 0x144280,7, 0x1442a0,2, 0x1442c0,7, 0x1442e0,2, 0x144300,7, 0x144320,2, 0x144340,7, 0x144360,2, 0x144380,7, 0x1443a0,2, 0x1443c0,7, 0x1443e0,2, 0x144400,7, 0x144420,2, 0x144440,7, 0x144460,2, 0x144480,7, 0x1444a0,2, 0x1444c0,7, 0x1444e0,2, 0x144500,7, 0x144520,2, 0x144540,7, 0x144560,2, 0x144580,7, 0x1445a0,2, 0x1445c0,7, 0x1445e0,2, 0x144600,7, 0x144620,2, 0x144640,7, 0x144660,2, 0x144680,7, 0x1446a0,2, 0x1446c0,7, 0x1446e0,2, 0x144700,7, 0x144720,2, 0x144740,7, 0x144760,2, 0x144780,7, 0x1447a0,2, 0x1447c0,7, 0x1447e0,2, 0x144800,7, 0x144820,2, 0x144840,7, 0x144860,2, 0x144880,7, 0x1448a0,2, 0x1448c0,7, 0x1448e0,2, 0x144900,211, 0x144c50,6, 0x145000,7, 0x145020,2, 0x145040,7, 0x145060,2, 0x145080,7, 0x1450a0,2, 0x1450c0,7, 0x1450e0,2, 0x145100,7, 0x145120,2, 0x145140,7, 0x145160,2, 0x145180,7, 0x1451a0,2, 0x1451c0,7, 0x1451e0,2, 0x145200,7, 0x145220,2, 0x145240,7, 0x145260,2, 0x145280,7, 0x1452a0,2, 0x1452c0,7, 0x1452e0,2, 0x145300,7, 0x145320,2, 0x145340,7, 0x145360,2, 0x145380,7, 0x1453a0,2, 0x1453c0,7, 0x1453e0,2, 0x145400,7, 0x145420,2, 0x145440,7, 0x145460,2, 0x145480,7, 0x1454a0,2, 0x1454c0,7, 0x1454e0,2, 0x145500,7, 0x145520,2, 0x145540,7, 0x145560,2, 0x145580,7, 0x1455a0,2, 0x1455c0,7, 0x1455e0,2, 0x145600,7, 0x145620,2, 0x145640,7, 0x145660,2, 0x145680,7, 0x1456a0,2, 0x1456c0,7, 0x1456e0,2, 0x145700,7, 0x145720,2, 0x145740,7, 0x145760,2, 0x145780,7, 0x1457a0,2, 0x1457c0,7, 0x1457e0,2, 0x145800,7, 0x145820,2, 0x145840,7, 0x145860,2, 0x145880,7, 0x1458a0,2, 0x1458c0,7, 0x1458e0,2, 0x145900,211, 0x145c50,6, 0x146000,7, 0x146020,2, 0x146040,7, 0x146060,2, 0x146080,7, 0x1460a0,2, 0x1460c0,7, 0x1460e0,2, 0x146100,7, 0x146120,2, 0x146140,7, 0x146160,2, 0x146180,7, 0x1461a0,2, 0x1461c0,7, 0x1461e0,2, 0x146200,7, 0x146220,2, 0x146240,7, 0x146260,2, 0x146280,7, 0x1462a0,2, 0x1462c0,7, 0x1462e0,2, 0x146300,7, 0x146320,2, 0x146340,7, 0x146360,2, 0x146380,7, 0x1463a0,2, 0x1463c0,7, 0x1463e0,2, 0x146400,7, 0x146420,2, 0x146440,7, 0x146460,2, 0x146480,7, 0x1464a0,2, 0x1464c0,7, 0x1464e0,2, 0x146500,7, 0x146520,2, 0x146540,7, 0x146560,2, 0x146580,7, 0x1465a0,2, 0x1465c0,7, 0x1465e0,2, 0x146600,7, 0x146620,2, 0x146640,7, 0x146660,2, 0x146680,7, 0x1466a0,2, 0x1466c0,7, 0x1466e0,2, 0x146700,7, 0x146720,2, 0x146740,7, 0x146760,2, 0x146780,7, 0x1467a0,2, 0x1467c0,7, 0x1467e0,2, 0x146800,7, 0x146820,2, 0x146840,7, 0x146860,2, 0x146880,7, 0x1468a0,2, 0x1468c0,7, 0x1468e0,2, 0x146900,211, 0x146c50,6, 0x147000,7, 0x147020,2, 0x147040,7, 0x147060,2, 0x147080,7, 0x1470a0,2, 0x1470c0,7, 0x1470e0,2, 0x147100,7, 0x147120,2, 0x147140,7, 0x147160,2, 0x147180,7, 0x1471a0,2, 0x1471c0,7, 0x1471e0,2, 0x147200,7, 0x147220,2, 0x147240,7, 0x147260,2, 0x147280,7, 0x1472a0,2, 0x1472c0,7, 0x1472e0,2, 0x147300,7, 0x147320,2, 0x147340,7, 0x147360,2, 0x147380,7, 0x1473a0,2, 0x1473c0,7, 0x1473e0,2, 0x147400,7, 0x147420,2, 0x147440,7, 0x147460,2, 0x147480,7, 0x1474a0,2, 0x1474c0,7, 0x1474e0,2, 0x147500,7, 0x147520,2, 0x147540,7, 0x147560,2, 0x147580,7, 0x1475a0,2, 0x1475c0,7, 0x1475e0,2, 0x147600,7, 0x147620,2, 0x147640,7, 0x147660,2, 0x147680,7, 0x1476a0,2, 0x1476c0,7, 0x1476e0,2, 0x147700,7, 0x147720,2, 0x147740,7, 0x147760,2, 0x147780,7, 0x1477a0,2, 0x1477c0,7, 0x1477e0,2, 0x147800,7, 0x147820,2, 0x147840,7, 0x147860,2, 0x147880,7, 0x1478a0,2, 0x1478c0,7, 0x1478e0,2, 0x147900,211, 0x147c50,6, 0x148000,7, 0x148020,2, 0x148040,7, 0x148060,2, 0x148080,7, 0x1480a0,2, 0x1480c0,7, 0x1480e0,2, 0x148100,7, 0x148120,2, 0x148140,7, 0x148160,2, 0x148180,7, 0x1481a0,2, 0x1481c0,7, 0x1481e0,2, 0x148200,7, 0x148220,2, 0x148240,7, 0x148260,2, 0x148280,7, 0x1482a0,2, 0x1482c0,7, 0x1482e0,2, 0x148300,7, 0x148320,2, 0x148340,7, 0x148360,2, 0x148380,7, 0x1483a0,2, 0x1483c0,7, 0x1483e0,2, 0x148400,7, 0x148420,2, 0x148440,7, 0x148460,2, 0x148480,7, 0x1484a0,2, 0x1484c0,7, 0x1484e0,2, 0x148500,7, 0x148520,2, 0x148540,7, 0x148560,2, 0x148580,7, 0x1485a0,2, 0x1485c0,7, 0x1485e0,2, 0x148600,7, 0x148620,2, 0x148640,7, 0x148660,2, 0x148680,7, 0x1486a0,2, 0x1486c0,7, 0x1486e0,2, 0x148700,7, 0x148720,2, 0x148740,7, 0x148760,2, 0x148780,7, 0x1487a0,2, 0x1487c0,7, 0x1487e0,2, 0x148800,7, 0x148820,2, 0x148840,7, 0x148860,2, 0x148880,7, 0x1488a0,2, 0x1488c0,7, 0x1488e0,2, 0x148900,211, 0x148c50,6, 0x14c000,1152, 0x14e000,18, 0x14e080,18, 0x14e100,18, 0x14e180,18, 0x14e200,18, 0x14e280,18, 0x14e300,18, 0x14e380,18, 0x14e400,18, 0x14e480,18, 0x14e500,18, 0x14e580,18, 0x14e600,18, 0x14e680,18, 0x14e700,18, 0x14e780,18, 0x14e800,18, 0x14e880,18, 0x14e900,18, 0x14e980,18, 0x14ea00,18, 0x14ea80,18, 0x14eb00,18, 0x14eb80,18, 0x14ec00,18, 0x14ec80,18, 0x14ed00,18, 0x14ed80,18, 0x14ee00,18, 0x14ee80,18, 0x14ef00,18, 0x14ef80,18, 0x14f000,18, 0x14f080,18, 0x14f100,18, 0x14f180,18, 0x150000,72, 0x150200,72, 0x150400,72, 0x150600,72, 0x150800,72, 0x150a00,72, 0x150c00,72, 0x150e00,72, 0x151000,72, 0x151200,72, 0x151400,7, 0x151420,2, 0x151440,7, 0x151460,2, 0x151480,7, 0x1514a0,2, 0x1514c0,7, 0x1514e0,2, 0x151500,20, 0x151600,7, 0x151620,2, 0x151640,7, 0x151660,2, 0x151680,7, 0x1516a0,2, 0x1516c0,7, 0x1516e0,2, 0x151700,20, 0x151800,7, 0x151820,2, 0x151840,7, 0x151860,2, 0x151880,7, 0x1518a0,2, 0x1518c0,7, 0x1518e0,2, 0x151900,20, 0x151a00,7, 0x151a20,2, 0x151a40,7, 0x151a60,2, 0x151a80,7, 0x151aa0,2, 0x151ac0,7, 0x151ae0,2, 0x151b00,20, 0x151c00,7, 0x151c20,2, 0x151c40,7, 0x151c60,2, 0x151c80,7, 0x151ca0,2, 0x151cc0,7, 0x151ce0,2, 0x151d00,20, 0x151e00,7, 0x151e20,2, 0x151e40,7, 0x151e60,2, 0x151e80,7, 0x151ea0,2, 0x151ec0,7, 0x151ee0,2, 0x151f00,20, 0x152000,7, 0x152020,2, 0x152040,7, 0x152060,2, 0x152080,7, 0x1520a0,2, 0x1520c0,7, 0x1520e0,2, 0x152100,20, 0x152200,7, 0x152220,2, 0x152240,7, 0x152260,2, 0x152280,7, 0x1522a0,2, 0x1522c0,7, 0x1522e0,2, 0x152300,20, 0x152400,7, 0x152420,2, 0x152440,7, 0x152460,2, 0x152480,7, 0x1524a0,2, 0x1524c0,7, 0x1524e0,2, 0x152500,20, 0x152600,1, 0x152610,1, 0x152620,1, 0x152630,1, 0x152640,1, 0x152650,1, 0x152660,1, 0x152670,1, 0x152680,1, 0x152690,1, 0x1526a0,1, 0x1526b0,1, 0x1526c0,1, 0x1526d0,1, 0x1526e0,1, 0x1526f0,1, 0x152700,1, 0x152710,1, 0x152720,1, 0x152730,1, 0x152740,1, 0x152750,1, 0x152760,1, 0x152770,1, 0x152780,1, 0x152790,1, 0x1527a0,1, 0x1527b0,1, 0x1527c0,1, 0x1527d0,1, 0x1527e0,1, 0x1527f0,1, 0x152800,1, 0x152810,1, 0x152820,1, 0x152830,1, 0x152840,55, 0x152920,36, 0x1529c0,15, 0x152a00,8, 0x152a40,4, 0x152a60,5, 0x152a80,4, 0x152aa0,3, 0x152ab0,1, 0x152ac4,1, 0x152ae4,11, 0x152c00,9, 0x152c40,9, 0x152c80,9, 0x152cc0,9, 0x152d00,9, 0x152d40,9, 0x152d80,9, 0x152dc0,9, 0x152e00,9, 0x152e40,9, 0x152e80,9, 0x152ec0,9, 0x152f00,9, 0x152f40,9, 0x152f80,9, 0x152fc0,9, 0x153000,9, 0x153040,9, 0x153080,9, 0x1530c0,9, 0x153100,9, 0x153140,9, 0x153180,9, 0x1531c0,9, 0x153200,9, 0x153240,9, 0x153280,9, 0x1532c0,9, 0x153300,9, 0x153340,9, 0x153380,9, 0x1533c0,9, 0x153400,9, 0x153440,9, 0x153480,9, 0x1534c0,9, 0x153500,9, 0x153530,1, 0x153540,1, 0x153550,1, 0x153560,1, 0x153570,1, 0x153580,1, 0x153590,1, 0x1535a0,1, 0x1535b0,1, 0x1535c0,1, 0x1535d0,1, 0x153600,9, 0x153630,1, 0x153640,1, 0x153650,1, 0x153660,1, 0x153670,1, 0x153680,1, 0x153690,1, 0x1536a0,1, 0x1536b0,1, 0x1536c0,1, 0x1536d0,1, 0x153700,9, 0x153730,1, 0x153740,1, 0x153750,1, 0x153760,1, 0x153770,1, 0x153780,1, 0x153790,1, 0x1537a0,1, 0x1537b0,1, 0x1537c0,1, 0x1537d0,1, 0x153800,9, 0x153830,1, 0x153840,1, 0x153850,1, 0x153860,1, 0x153870,1, 0x153880,1, 0x153890,1, 0x1538a0,1, 0x1538b0,1, 0x1538c0,1, 0x1538d0,1, 0x153900,239, 0x160000,2, 0x160044,1, 0x16005c,9, 0x168000,1, 0x16800c,1, 0x168018,1, 0x168024,1, 0x168030,1, 0x16803c,1, 0x168048,1, 0x168054,1, 0x168060,1, 0x16806c,1, 0x168078,1, 0x168084,1, 0x168090,1, 0x16809c,1, 0x1680a8,1, 0x168100,1, 0x16810c,1, 0x168118,1, 0x168124,1, 0x168130,1, 0x16813c,1, 0x168148,1, 0x168154,1, 0x168160,1, 0x16816c,1, 0x168178,1, 0x168184,1, 0x168190,1, 0x16819c,1, 0x1681a8,1, 0x168200,1, 0x16820c,1, 0x168218,1, 0x168224,1, 0x168230,1, 0x16823c,1, 0x168248,1, 0x168254,1, 0x168260,1, 0x16826c,1, 0x168278,1, 0x168284,1, 0x168290,1, 0x16829c,1, 0x1682a8,1, 0x168300,1, 0x16830c,1, 0x168318,1, 0x168324,1, 0x168330,1, 0x16833c,1, 0x168348,1, 0x168354,1, 0x168360,1, 0x16836c,1, 0x168378,1, 0x168384,1, 0x168390,1, 0x16839c,1, 0x1683a8,1, 0x168400,1, 0x16840c,1, 0x168418,1, 0x168424,1, 0x168430,1, 0x16843c,1, 0x168448,1, 0x168454,1, 0x168460,1, 0x16846c,1, 0x168478,1, 0x168484,1, 0x168490,1, 0x16849c,1, 0x1684a8,1, 0x168500,1, 0x16850c,1, 0x168518,1, 0x168524,1, 0x168530,1, 0x16853c,1, 0x168548,1, 0x168554,1, 0x168560,1, 0x16856c,1, 0x168578,1, 0x168584,1, 0x168590,1, 0x16859c,1, 0x1685a8,1, 0x168600,1, 0x16860c,1, 0x168618,1, 0x168624,1, 0x168630,1, 0x16863c,1, 0x168648,1, 0x168654,1, 0x168660,1, 0x16866c,1, 0x168678,1, 0x168684,1, 0x168690,1, 0x16869c,1, 0x1686a8,1, 0x168700,1, 0x16870c,1, 0x168718,1, 0x168724,1, 0x168730,1, 0x16873c,1, 0x168748,1, 0x168754,1, 0x168760,1, 0x16876c,1, 0x168778,1, 0x168784,1, 0x168790,1, 0x16879c,1, 0x1687a8,1, 0x168800,1, 0x16880c,1, 0x168818,1, 0x168824,1, 0x168830,1, 0x16883c,1, 0x168848,1, 0x168854,1, 0x168860,1, 0x16886c,1, 0x168878,1, 0x168884,1, 0x168890,1, 0x16889c,1, 0x1688a8,1, 0x168900,1, 0x16890c,1, 0x168918,1, 0x168924,1, 0x168930,1, 0x16893c,1, 0x168948,1, 0x168954,1, 0x168960,1, 0x16896c,1, 0x168978,1, 0x168984,1, 0x168990,1, 0x16899c,1, 0x1689a8,1, 0x168a00,1, 0x168a14,3, 0x168a24,1, 0x168a2c,3, 0x168a40,15, 0x168a80,15, 0x168ac0,15, 0x168b00,15, 0x168b40,15, 0x168b80,15, 0x168bc0,15, 0x168c00,15, 0x168c40,15, 0x168c80,15, 0x168cc0,15, 0x168d00,15, 0x168d40,15, 0x168d80,15, 0x168dc0,15, 0x168e00,15, 0x168e40,15, 0x168e80,15, 0x168ec0,15, 0x168f00,15, 0x168f40,15, 0x168f80,15, 0x168fc0,15, 0x169000,15, 0x169040,15, 0x169080,15, 0x1690c0,15, 0x169100,15, 0x169140,15, 0x169180,15, 0x1691c0,15, 0x169200,15, 0x169240,15, 0x169280,15, 0x1692c0,15, 0x169300,15, 0x169340,15, 0x169380,15, 0x1693c0,15, 0x169400,15, 0x169440,15, 0x169480,15, 0x1694c0,15, 0x169500,15, 0x169540,15, 0x169580,15, 0x1695c0,15, 0x169600,15, 0x169640,15, 0x169680,15, 0x1696c0,15, 0x169700,15, 0x169740,15, 0x169780,15, 0x1697c0,1, 0x16a000,1, 0x16a00c,1, 0x16a020,1, 0x16a02c,1, 0x16a040,1, 0x16a04c,1, 0x16a060,1, 0x16a06c,1, 0x16a080,1, 0x16a08c,1, 0x16a0a0,1, 0x16a0ac,1, 0x16a0c4,6, 0x16a0e0,89, 0x16a280,20, 0x16a300,20, 0x16a380,20, 0x16a400,20, 0x16a480,20, 0x16a500,20, 0x16a580,20, 0x16a600,20, 0x16a680,20, 0x16a700,20, 0x16a780,20, 0x16a800,20, 0x16a880,20, 0x16a900,20, 0x16a980,20, 0x16aa00,20, 0x16aa80,20, 0x16ab00,20, 0x16ab80,20, 0x16ac00,20, 0x16ac80,20, 0x16ad00,20, 0x16ad80,20, 0x16ae00,20, 0x16ae80,20, 0x16af00,20, 0x16af80,20, 0x16b000,20, 0x16b080,20, 0x16b100,20, 0x16b180,20, 0x16b200,20, 0x16b280,20, 0x16b300,20, 0x16b380,20, 0x16b400,20, 0x16b480,20, 0x16b500,20, 0x16b580,20, 0x16b600,20, 0x16b680,20, 0x16b700,20, 0x16b780,20, 0x16b800,20, 0x16b880,20, 0x16b900,20, 0x16b980,20, 0x16ba00,20, 0x16ba80,20, 0x16bb00,20, 0x16bb80,20, 0x16bc00,20, 0x16bc80,20, 0x16bd00,20, 0x16bd80,20, 0x16be00,20, 0x16be80,20, 0x16bf00,20, 0x16bf80,20, 0x16c000,20, 0x16c080,20, 0x16c100,20, 0x16c180,20, 0x16c200,20, 0x16c280,1, 0x170000,18, 0x170080,18, 0x170100,18, 0x170180,18, 0x170200,18, 0x170280,18, 0x170300,18, 0x170380,18, 0x170400,18, 0x170800,18, 0x170880,18, 0x170900,18, 0x170980,18, 0x170a00,18, 0x170a80,18, 0x170b00,18, 0x170b80,18, 0x170c00,18, 0x171000,18, 0x171080,18, 0x171100,18, 0x171180,18, 0x171200,18, 0x171280,18, 0x171300,18, 0x171380,18, 0x171400,18, 0x171800,18, 0x171880,18, 0x171900,18, 0x171980,18, 0x171a00,18, 0x171a80,18, 0x171b00,18, 0x171b80,18, 0x171c00,18, 0x172000,263, 0x172420,82, 0x172600,1, 0x172610,1, 0x172620,1, 0x172630,1, 0x172640,1, 0x172650,1, 0x172660,1, 0x172670,1, 0x172680,1, 0x172700,1, 0x172710,1, 0x172720,1, 0x172730,1, 0x172740,1, 0x172750,1, 0x172760,1, 0x172770,1, 0x172780,1, 0x172800,1, 0x172810,1, 0x172820,1, 0x172830,1, 0x172840,1, 0x172850,1, 0x172860,1, 0x172870,1, 0x172880,1, 0x172900,1, 0x172910,1, 0x172920,1, 0x172930,1, 0x172940,1, 0x172950,1, 0x172960,1, 0x172970,1, 0x172980,1, 0x172a00,1, 0x172a0c,1, 0x172a20,1, 0x172a2c,1, 0x172a40,1, 0x172a4c,1, 0x172a60,1, 0x172a6c,1, 0x172a80,1, 0x172a8c,1, 0x172aa0,1, 0x172aac,1, 0x172ac0,1, 0x172acc,1, 0x172ae0,1, 0x172aec,1, 0x172b00,1, 0x172b0c,1, 0x172b20,2, 0x172b40,2, 0x172b4c,2, 0x174000,2, 0x174084,1, 0x1740b4,53, 0x174194,5, 0x1741b4,7, 0x1741e0,5, 0x174200,1, 0x174208,4, 0x174224,3, 0x174404,5, 0x174420,1, 0x174430,10, 0x174460,72, 0x174804,5, 0x174824,1, 0x174830,4, 0x174844,1, 0x174854,3, 0x174864,1, 0x17486c,1, 0x174874,7, 0x1748a0,6, 0x1748c0,4, 0x174c00,4, 0x174c20,5, 0x174c40,5, 0x174c60,5, 0x174c80,5, 0x174ca0,5, 0x174cc0,5, 0x174ce0,5, 0x174d00,5, 0x174d20,5, 0x174d40,5, 0x174d60,5, 0x174d80,5, 0x174da0,5, 0x174dc0,5, 0x174de0,5, 0x174e00,2, 0x174e0c,16, 0x175000,2, 0x175084,1, 0x1750b0,27, 0x175120,19, 0x175170,1, 0x176000,1, 0x176010,8, 0x176044,4, 0x176100,321, 0x17660c,1, 0x176620,1, 0x176640,6, 0x176660,30, 0x176704,1, 0x17671c,11, 0x176780,6, 0x176800,4, 0x176880,24, 0x176900,265, 0x176d40,9, 0x176d80,9, 0x176dc0,9, 0x176e00,9, 0x176e40,9, 0x176e80,9, 0x176ec0,9, 0x176f00,9, 0x176f40,9, 0x176f80,9, 0x176fc0,9, 0x177000,9, 0x177040,9, 0x177080,9, 0x1770c0,9, 0x177100,9, 0x177140,9, 0x177180,9, 0x1771c0,9, 0x177200,9, 0x177240,9, 0x177280,9, 0x1772c0,9, 0x177300,9, 0x177340,9, 0x177380,9, 0x1773c0,9, 0x177400,9, 0x177440,9, 0x177480,9, 0x1774c0,9, 0x177500,1, 0x178000,34, 0x178090,1, 0x178098,36, 0x178180,6, 0x1781a0,6, 0x1781c0,13, 0x178200,6, 0x178220,6, 0x178240,13, 0x178280,1, 0x178400,2, 0x17840c,2, 0x178424,4, 0x178440,2, 0x178460,6, 0x178480,1, 0x178500,1, 0x178520,7, 0x178800,15, 0x178840,4, 0x178880,2, 0x1788a4,9, 0x1788e4,9, 0x178924,9, 0x179000,6, 0x179020,14, 0x179080,4, 0x1790c0,11, 0x179100,3, 0x179110,14, 0x179164,1, 0x17916c,5, 0x179200,11, 0x179240,11, 0x179280,1, 0x179300,3, 0x179310,3, 0x179320,3, 0x179330,3, 0x179340,3, 0x179350,3, 0x179360,3, 0x179370,3, 0x179380,3, 0x179390,3, 0x1793a0,3, 0x1793b0,3, 0x1793c0,3, 0x1793d0,3, 0x1793e0,3, 0x1793f0,3, 0x179400,3, 0x179410,3, 0x179420,3, 0x179430,3, 0x179440,3, 0x179450,3, 0x179460,3, 0x179470,3, 0x179480,3, 0x179490,3, 0x1794a0,3, 0x1794b0,3, 0x1794c0,3, 0x1794d0,3, 0x1794e0,3, 0x1794f0,3, 0x179500,3, 0x179510,3, 0x179520,3, 0x179530,3, 0x179540,3, 0x179550,3, 0x179560,3, 0x179570,3, 0x179580,3, 0x179590,3, 0x1795a0,3, 0x1795b0,3, 0x1795c0,3, 0x1795d0,3, 0x1795e0,3, 0x1795f0,3, 0x179600,3, 0x179610,3, 0x179620,3, 0x179630,3, 0x179640,3, 0x179650,3, 0x179660,3, 0x179670,3, 0x179680,3, 0x179690,3, 0x1796a0,3, 0x1796b0,3, 0x1796c0,3, 0x1796d0,3, 0x1796e0,3, 0x1796f0,3, 0x179700,3, 0x179710,3, 0x179720,3, 0x179730,3, 0x179740,3, 0x179750,3, 0x179760,3, 0x179770,3, 0x179780,3, 0x179790,3, 0x1797a0,3, 0x1797b0,3, 0x1797c0,3, 0x1797d0,3, 0x1797e0,3, 0x1797f0,3, 0x179800,3, 0x179810,3, 0x179820,3, 0x179830,3, 0x179840,3, 0x179850,3, 0x179860,3, 0x179870,3, 0x179880,3, 0x179890,3, 0x1798a0,3, 0x1798b0,3, 0x1798c0,3, 0x1798d0,3, 0x1798e0,3, 0x1798f0,3, 0x179900,3, 0x179910,3, 0x179920,3, 0x179930,3, 0x179940,3, 0x179950,3, 0x179960,3, 0x179970,3, 0x179980,3, 0x179990,3, 0x1799a0,3, 0x1799b0,3, 0x1799c0,3, 0x1799d0,3, 0x1799e0,3, 0x1799f0,3, 0x179a00,3, 0x179a10,3, 0x179a20,3, 0x179a30,3, 0x179a40,3, 0x179a50,3, 0x179a60,3, 0x179a70,3, 0x179a80,3, 0x179a90,3, 0x179aa0,3, 0x179ab0,3, 0x179ac0,3, 0x179ad0,3, 0x179ae0,3, 0x179af0,3, 0x179b00,3, 0x179b10,3, 0x179b20,3, 0x179b30,3, 0x179b40,2, 0x179b50,2, 0x179b60,2, 0x179b70,2, 0x179b80,1, 0x17a000,1, 0x17a010,3, 0x17a020,3, 0x17a044,4, 0x17a084,1, 0x17a094,12, 0x17a0d0,1, 0x17a0e0,1, 0x17a0ec,1, 0x17a100,9, 0x17a140,2, 0x17a200,1, 0x17a210,3, 0x17a220,3, 0x17a244,4, 0x17a284,1, 0x17a294,9, 0x17a2c0,1, 0x17a2d0,1, 0x17a2e0,1, 0x17a2ec,1, 0x17a300,5, 0x17a320,2, 0x17a400,6, 0x17a420,6, 0x17a440,6, 0x17a460,6, 0x17a480,6, 0x17a4a0,6, 0x17a4c0,30, 0x17a540,6, 0x17a580,11, 0x17a800,65, 0x17a910,8, 0x17a944,4, 0x17a980,1, 0x17a98c,1, 0x17a9c0,4, 0x17a9e0,9, 0x17aa10,1, 0x17aa20,6, 0x17aa40,1, 0x17aa50,7, 0x17aa80,17, 0x17ab00,5, 0x17ab20,7, 0x17ab40,134, 0x17b000,1, 0x17b010,3, 0x17b020,3, 0x17b044,4, 0x17b084,1, 0x17b090,5, 0x17b0b0,1, 0x17b0c0,1, 0x17b0cc,1, 0x17b100,17, 0x17b180,4, 0x17b1a0,12, 0x17b200,24, 0x17b280,67, 0x17b3a0,6, 0x17b3c0,6, 0x17b3e0,6, 0x17b400,6, 0x17b420,3, 0x17b430,7, 0x17b800,41, 0x17b8b0,41, 0x17ba04,1, 0x17ba78,36, 0x17bc00,196, 0x17c000,92, 0x17c200,4, 0x17c220,7, 0x17c240,7, 0x17c260,1, 0x17c280,7, 0x17c2a0,7, 0x17c2c0,7, 0x17c2e0,3, 0x17c2f0,2, 0x17c400,27, 0x17c480,4, 0x17c4c0,25, 0x17c540,6, 0x17c560,2, 0x17c56c,3, 0x17c600,8, 0x17c624,97, 0x17c800,4, 0x17c840,14, 0x17c900,14, 0x17c940,14, 0x17c980,1, 0x17ca00,11, 0x180004,4, 0x180020,7, 0x180040,2, 0x18004c,2, 0x180064,1, 0x18006c,4, 0x180080,3, 0x180090,3, 0x1800a0,3, 0x1800b0,3, 0x1800c0,3, 0x1800d0,3, 0x1800e0,3, 0x1800f0,3, 0x180100,3, 0x180110,3, 0x180120,3, 0x180130,3, 0x180140,3, 0x180150,3, 0x180160,3, 0x180170,3, 0x180180,3, 0x180190,3, 0x1801a0,3, 0x1801b0,3, 0x1801c0,3, 0x1801d0,3, 0x1801e0,3, 0x1801f0,3, 0x180200,3, 0x180210,3, 0x180220,3, 0x180230,3, 0x180240,3, 0x180250,3, 0x180260,42, 0x180324,4, 0x180340,4, 0x180360,6, 0x180380,34, 0x180420,6, 0x180440,6, 0x180460,6, 0x180480,6, 0x1804a0,6, 0x1804c0,6, 0x1804e0,6, 0x180500,6, 0x180520,6, 0x180540,6, 0x180560,6, 0x180580,6, 0x1805a0,6, 0x1805c0,6, 0x1805e0,6, 0x180600,6, 0x180620,6, 0x180640,6, 0x180660,6, 0x180680,6, 0x1806a0,6, 0x1806c0,6, 0x1806e0,6, 0x180700,6, 0x180720,6, 0x180740,6, 0x180760,6, 0x180780,6, 0x1807a0,6, 0x1807c0,6, 0x1807e0,6, 0x180800,6, 0x180820,1, 0x180828,18, 0x181000,10, 0x181100,2, 0x181184,1, 0x181194,27, 0x181204,1, 0x181240,22, 0x1812a0,6, 0x1812c0,2, 0x1812cc,3, 0x1812e0,2, 0x1812ec,2, 0x181800,2, 0x18180c,1, 0x181a00,2, 0x181b04,1, 0x181b80,32, 0x181c04,4, 0x181c24,1, 0x181c2c,1, 0x181c34,1, 0x181c3c,1, 0x181c44,1, 0x181c4c,1, 0x181c54,1, 0x181c5c,1, 0x181c64,1, 0x181c6c,1, 0x181c74,1, 0x181c7c,3, 0x181c94,1, 0x181c9c,3, 0x182000,2, 0x182084,1, 0x1820c0,16, 0x182104,1, 0x182140,16, 0x182184,1, 0x1821c0,22, 0x182220,2, 0x18222c,2, 0x182240,16, 0x182304,1, 0x182310,7, 0x182340,2, 0x182360,6, 0x182380,2, 0x18238c,2, 0x182400,2, 0x182410,2, 0x182420,2, 0x182430,2, 0x182440,2, 0x182450,2, 0x182460,2, 0x182470,2, 0x182480,2, 0x182490,2, 0x1824a0,2, 0x1824b0,2, 0x1824c0,2, 0x1824d0,2, 0x1824e0,2, 0x1824f0,2, 0x182500,2, 0x182510,2, 0x182520,2, 0x182530,2, 0x182540,2, 0x182550,2, 0x182560,2, 0x182570,2, 0x182580,2, 0x182590,2, 0x1825a0,2, 0x1825b0,2, 0x1825c0,2, 0x1825d0,2, 0x1825e0,2, 0x1825f0,2, 0x182600,8, 0x18263c,7, 0x182660,2, 0x18266c,3, 0x182680,2, 0x182700,28, 0x182800,27, 0x182880,4, 0x1828c0,25, 0x182940,6, 0x182960,2, 0x18296c,3, 0x182980,8, 0x1829a4,8, 0x182a00,2, 0x182a10,3, 0x182a40,9, 0x182a80,17, 0x182ac8,4, 0x182ae0,9, 0x182b10,1, 0x1a0000,1, 0x1a0008,15, 0x1a0204,1, 0x1a0210,12, 0x1a0244,1, 0x1a0250,12, 0x1a0284,1, 0x1a0290,12, 0x1a02c4,1, 0x1a02d0,16, 0x1a0380,3, 0x1a03c4,1, 0x1a03d0,13, 0x1a0800,2, 0x1a0904,1, 0x1a0978,36, 0x1a0b04,1, 0x1a0b70,38, 0x1a0c44,1, 0x1a0c58,10, 0x1a0c84,32, 0x1a0d20,1, 0x1a0d30,7, 0x1a0e00,4, 0x1a0e80,18, 0x1a0f00,2, 0x1a0f44,1, 0x1a0f58,17, 0x1a0fc0,10, 0x1a1000,10, 0x1a1040,11, 0x1a1080,1, 0x1a1090,5, 0x1a1104,1, 0x1a1144,18, 0x1a1200,1, 0x1a1208,7, 0x1a1228,4, 0x1a1240,2, 0x1a2000,115, 0x1a2200,17, 0x1a2280,17, 0x1a2300,81, 0x1a2480,5, 0x1a24a0,32, 0x1a2604,1, 0x1a2610,4, 0x1a2624,1, 0x1a2630,4, 0x1a2644,1, 0x1a2650,4, 0x1a2664,1, 0x1a2670,7, 0x1a2700,4, 0x1a2800,34, 0x1a2900,4, 0x1a2a00,36, 0x1a2b00,2, 0x1a2b24,1, 0x1a2b30,6, 0x1a2b64,1, 0x1a2b70,13, 0x1a2bb0,6, 0x1a2be0,2, 0x1a2bf0,6, 0x1a2c14,1, 0x1a2c1c,2, 0x1a2d00,2, 0x1a2d84,1, 0x1a2dbc,18, 0x1a2e10,5, 0x1a2e30,5, 0x1a2e50,5, 0x1a2e70,4, 0x1a2e84,3, 0x1a2ea0,1, 0x1a2ea8,7, 0x1a2f00,17, 0x1a2f80,36, 0x1a3020,5, 0x1a3040,4, 0x1a3060,5, 0x1a3080,4, 0x1a30a0,5, 0x1a30c0,4, 0x1a30e0,5, 0x1a3100,1, 0x1a3120,1, 0x1a3128,4, 0x1a3140,3, 0x1a3150,3, 0x1a3160,11, 0x1a4000,49, 0x1a4100,49, 0x1a4200,1, 0x1a4400,4, 0x1a4500,49, 0x1a4600,4, 0x1a4680,19, 0x1a4700,13, 0x1a4740,5, 0x1a4760,2, 0x1a476c,3, 0x1a4780,3, 0x1a4790,3, 0x1a47a0,3, 0x1a4804,1, 0x1a4824,59, 0x1a4944,1, 0x1a4950,6, 0x1a4c00,10, 0x1a5000,27, 0x1a5080,4, 0x1a50c0,25, 0x1a5140,6, 0x1a5160,2, 0x1a516c,3, 0x1a5184,4, 0x1a5200,2, 0x1a5400,4, 0x1a5500,43, 0x1a5600,2, 0x1a5620,3, 0x1a5630,3, 0x1a5640,3, 0x1a5800,53, 0x1a5a00,1, 0x1a5a10,5, 0x1a5a30,5, 0x1a5a50,7, 0x1a5a80,1, 0x1a5a88,4, 0x1a5c00,44, 0x1a5d00,1, 0x1a5d40,1, 0x1a5d48,4, 0x1a5d60,3, 0x1a5d70,3, 0x1a8000,46, 0x1a8100,46, 0x1a8200,1, 0x1a8400,4, 0x1a8500,46, 0x1a8600,4, 0x1a8640,14, 0x1a8700,33, 0x1a8800,5, 0x1a8820,2, 0x1a882c,3, 0x1a8840,3, 0x1a8850,3, 0x1a8860,3, 0x1a9000,4, 0x1a9200,89, 0x1a9400,89, 0x1a9600,3, 0x1a9610,3, 0x1a9620,9, 0x1a9800,1, 0x1aa000,50, 0x1aa200,1, 0x1aa210,5, 0x1aa230,7, 0x1aa260,1, 0x1aa268,4, 0x1aa400,27, 0x1aa480,4, 0x1aa4c0,25, 0x1aa540,6, 0x1aa560,2, 0x1aa56c,3, 0x1aa584,4, 0x1aa600,2, 0x1aa800,36, 0x1aa900,1, 0x1aa908,4, 0x1aa920,4, 0x1ac000,2, 0x1ac084,1, 0x1ac0ac,26, 0x1ac120,2, 0x1ac140,7, 0x1ac160,7, 0x1ac180,4, 0x1ac200,1, 0x1ac208,4, 0x1ac240,6, 0x1ac260,6, 0x1ac280,4, 0x1ac300,6, 0x1ac320,6, 0x1ac340,17, 0x1ac400,2, 0x1ac444,16, 0x1ac488,4, 0x1ac4c0,7, 0x1ac4e0,7, 0x1ac500,7, 0x1ac800,3, 0x1ac880,3, 0x1ac8c4,1, 0x1ac8d0,13, 0x1aca00,1, 0x1aca08,4, 0x1aca20,3, 0x1aca30,3, 0x1aca40,1, 0x1aca80,5, 0x1acac0,2, 0x1acad4,1, 0x1acadc,4, 0x1acb00,1, 0x1acb08,5, 0x1acb20,8, 0x1acc00,1, 0x1acc08,4, 0x1ace00,34, 0x1acf00,34, 0x1ad000,1, 0x1ad008,4, 0x1ad040,5, 0x1ad060,5, 0x1ad200,4, 0x1ad300,37, 0x1ad400,7, 0x1ad600,2, 0x1ad704,1, 0x1ad778,49, 0x1ad900,52, 0x1ada00,27, 0x1ada80,4, 0x1adac0,25, 0x1adb40,6, 0x1adb60,2, 0x1adb6c,3, 0x1adb80,8, 0x1adba4,14, 0x1adc00,3, 0x1b0000,7, 0x1b0020,7, 0x1b0040,3, 0x1b0084,1, 0x1b00bc,17, 0x1b0104,1, 0x1b010c,4, 0x1b0120,2, 0x1b0130,1, 0x1b013c,1, 0x1b0148,1, 0x1b0154,1, 0x1b0160,11, 0x1b0200,6, 0x1b0220,6, 0x1b0240,6, 0x1b0260,6, 0x1b0280,6, 0x1b02a0,6, 0x1b02c0,6, 0x1b02e0,6, 0x1b0300,6, 0x1b0320,6, 0x1b0340,6, 0x1b0360,6, 0x1b0380,6, 0x1b03a0,6, 0x1b03c0,6, 0x1b03e0,6, 0x1b0400,6, 0x1b0420,6, 0x1b0440,6, 0x1b0460,6, 0x1b0480,6, 0x1b04a0,6, 0x1b04c0,6, 0x1b04e0,6, 0x1b0500,6, 0x1b0520,6, 0x1b0540,6, 0x1b0560,6, 0x1b0580,6, 0x1b05a0,6, 0x1b05c0,6, 0x1b05e0,6, 0x1b0600,16, 0x1b0700,20, 0x1b0780,20, 0x1b0800,4, 0x1b0840,10, 0x1b0880,20, 0x1b0900,16, 0x1b0944,3, 0x1b0954,6, 0x1b0980,8, 0x1b1000,17, 0x1b1080,17, 0x1b1100,4, 0x1b1140,10, 0x1b1180,3, 0x1b1200,1, 0x1b1208,4, 0x1b1220,9, 0x1b1248,4, 0x1b1260,11, 0x1b1290,4, 0x1b1300,4, 0x1b1340,9, 0x1b2004,1, 0x1b2010,8, 0x1b2044,1, 0x1b204c,1, 0x1b2054,1, 0x1b205c,2, 0x1b2080,2, 0x1b2100,3, 0x1b2200,2, 0x1b4004,1, 0x1b407c,33, 0x1b4200,68, 0x1b4400,2, 0x1b4424,1, 0x1b4434,4, 0x1b4460,1, 0x1b4468,4, 0x1b4480,12, 0x1b44c0,2, 0x1b44e0,2, 0x1b44ec,2, 0x1b4500,8, 0x1b4600,3, 0x1b4620,3, 0x1b4630,3, 0x1b4640,7, 0x1b4680,1, 0x1b46c0,1, 0x1b46e0,11, 0x1b4720,3, 0x1b4730,3, 0x1b4740,7, 0x1b4784,1, 0x1b4798,10, 0x1b4800,36, 0x1b4a00,27, 0x1b4a80,4, 0x1b4ac0,25, 0x1b4b40,6, 0x1b4b60,2, 0x1b4b6c,3, 0x1b4b80,8, 0x1b4ba4,15, 0x1b4c00,2, 0x1b4c20,13, 0x1b5000,2, 0x1b500c,3, 0x1b5020,2, 0x1b502c,3, 0x1b5040,10, 0x1b5404,1, 0x1b5414,32, 0x1b5800,3, 0x1b5844,1, 0x1b5850,12, 0x1b5884,1, 0x1b589c,9, 0x1b6004,1, 0x1b607c,33, 0x1b6200,68, 0x1b6400,2, 0x1b6424,1, 0x1b6434,4, 0x1b6460,1, 0x1b6468,4, 0x1b6480,12, 0x1b64c0,2, 0x1b64e0,2, 0x1b64ec,2, 0x1b6500,8, 0x1b6600,3, 0x1b6620,3, 0x1b6630,3, 0x1b6640,7, 0x1b6680,1, 0x1b66c0,1, 0x1b66e0,11, 0x1b6720,3, 0x1b6730,3, 0x1b6740,7, 0x1b6784,1, 0x1b6798,10, 0x1b6800,36, 0x1b6a00,27, 0x1b6a80,4, 0x1b6ac0,25, 0x1b6b40,6, 0x1b6b60,2, 0x1b6b6c,3, 0x1b6b80,8, 0x1b6ba4,15, 0x1b6c00,2, 0x1b6c20,13, 0x1b7000,2, 0x1b700c,3, 0x1b7020,2, 0x1b702c,3, 0x1b7040,10, 0x1b7404,1, 0x1b7414,32, 0x1b7800,3, 0x1b7844,1, 0x1b7850,12, 0x1b7884,1, 0x1b789c,9, 0x1b8000,2, 0x1b8080,6, 0x1b80a0,6, 0x1b80c0,26, 0x1b8130,1, 0x1b813c,4, 0x1b8180,4, 0x1b81a0,5, 0x1b81c0,1, 0x1b8200,3, 0x1b8280,18, 0x1b8300,9, 0x1b8340,37, 0x1b8400,5, 0x1b8418,6, 0x1b8448,3, 0x1b8458,4, 0x1b8480,16, 0x1b8604,1, 0x1b8638,18, 0x1b8684,1, 0x1b869c,9, 0x1b86c4,1, 0x1b86d0,4, 0x1b86e4,1, 0x1b86f0,4, 0x1b8704,1, 0x1b8710,4, 0x1b8724,1, 0x1b8730,7, 0x1b8800,2, 0x1b8884,1, 0x1b88b8,20, 0x1b8984,1, 0x1b89b8,30, 0x1b8a40,6, 0x1b8a60,3, 0x1b8a80,6, 0x1b8aa4,2, 0x1b8ac0,9, 0x1b8b00,6, 0x1b8b20,6, 0x1b8b40,6, 0x1b8b60,6, 0x1b8c00,1, 0x1b9000,2, 0x1b9104,1, 0x1b9184,41, 0x1b9240,10, 0x1b9400,4, 0x1b9500,37, 0x1b9600,4, 0x1b9620,5, 0x1b9640,2, 0x1b9800,1, 0x1b9808,4, 0x1b9820,4, 0x1b9880,2, 0x1b98c4,1, 0x1b98e0,10, 0x1b9944,1, 0x1b9960,10, 0x1b99c4,1, 0x1b99e0,9, 0x1b9a10,4, 0x1b9a24,14, 0x1b9c00,7, 0x1b9c20,7, 0x1b9c80,4, 0x1b9cc0,11, 0x1b9d00,4, 0x1b9d80,4, 0x1b9dc0,9, 0x1b9e00,1, 0x1b9e08,12, 0x1ba000,27, 0x1ba080,4, 0x1ba0c0,25, 0x1ba140,6, 0x1ba160,2, 0x1ba16c,3, 0x1ba180,8, 0x1ba1a4,9, 0x1ba400,1, 0x1ba408,4, 0x1ba600,34, 0x1ba700,34, 0x1ba800,2, 0x1ba904,1, 0x1ba96c,39, 0x1baa44,17, 0x1baaa4,1, 0x1baab0,6, 0x1baae4,1, 0x1baaf4,4, 0x1bab08,4, 0x1bab20,4, 0x1bab40,24, 0x1bac00,41, 0x1bacb0,4, 0x1bad04,1, 0x1bad40,16, 0x1bad84,1, 0x1bad8c,8, 0x1bae00,2, 0x1bae24,1, 0x1bae34,4, 0x1bae80,1, 0x1bae88,4, 0x1baea0,16, 0x1c0000,36, 0x1c0100,36, 0x1c0200,36, 0x1c0300,36, 0x1c0400,133, 0x1c0640,12, 0x1c0680,12, 0x1c06c0,12, 0x1c0700,12, 0x1c0740,12, 0x1c0780,12, 0x1c07c0,12, 0x1c0800,12, 0x1c0840,12, 0x1c0880,12, 0x1c08c0,12, 0x1c0900,12, 0x1c0940,12, 0x1c0980,12, 0x1c09c0,12, 0x1c0a00,12, 0x1c0a40,12, 0x1c0a80,12, 0x1c0ac0,12, 0x1c0b00,12, 0x1c0b40,12, 0x1c0b80,12, 0x1c0bc0,12, 0x1c0c00,12, 0x1c0c40,12, 0x1c0c80,12, 0x1c0cc0,12, 0x1c0d00,12, 0x1c0d40,12, 0x1c0d80,12, 0x1c0dc0,12, 0x1c0e00,12, 0x1c1000,36, 0x1c1100,36, 0x1c1200,36, 0x1c1300,36, 0x1c1400,133, 0x1c1640,12, 0x1c1680,12, 0x1c16c0,12, 0x1c1700,12, 0x1c1740,12, 0x1c1780,12, 0x1c17c0,12, 0x1c1800,12, 0x1c1840,12, 0x1c1880,12, 0x1c18c0,12, 0x1c1900,12, 0x1c1940,12, 0x1c1980,12, 0x1c19c0,12, 0x1c1a00,12, 0x1c1a40,12, 0x1c1a80,12, 0x1c1ac0,12, 0x1c1b00,12, 0x1c1b40,12, 0x1c1b80,12, 0x1c1bc0,12, 0x1c1c00,12, 0x1c1c40,12, 0x1c1c80,12, 0x1c1cc0,12, 0x1c1d00,12, 0x1c1d40,12, 0x1c1d80,12, 0x1c1dc0,12, 0x1c1e00,12, 0x1c2000,36, 0x1c2100,36, 0x1c2200,36, 0x1c2300,36, 0x1c2400,133, 0x1c2640,12, 0x1c2680,12, 0x1c26c0,12, 0x1c2700,12, 0x1c2740,12, 0x1c2780,12, 0x1c27c0,12, 0x1c2800,12, 0x1c2840,12, 0x1c2880,12, 0x1c28c0,12, 0x1c2900,12, 0x1c2940,12, 0x1c2980,12, 0x1c29c0,12, 0x1c2a00,12, 0x1c2a40,12, 0x1c2a80,12, 0x1c2ac0,12, 0x1c2b00,12, 0x1c2b40,12, 0x1c2b80,12, 0x1c2bc0,12, 0x1c2c00,12, 0x1c2c40,12, 0x1c2c80,12, 0x1c2cc0,12, 0x1c2d00,12, 0x1c2d40,12, 0x1c2d80,12, 0x1c2dc0,12, 0x1c2e00,12, 0x1c3000,36, 0x1c3100,36, 0x1c3200,36, 0x1c3300,36, 0x1c3400,133, 0x1c3640,12, 0x1c3680,12, 0x1c36c0,12, 0x1c3700,12, 0x1c3740,12, 0x1c3780,12, 0x1c37c0,12, 0x1c3800,12, 0x1c3840,12, 0x1c3880,12, 0x1c38c0,12, 0x1c3900,12, 0x1c3940,12, 0x1c3980,12, 0x1c39c0,12, 0x1c3a00,12, 0x1c3a40,12, 0x1c3a80,12, 0x1c3ac0,12, 0x1c3b00,12, 0x1c3b40,12, 0x1c3b80,12, 0x1c3bc0,12, 0x1c3c00,12, 0x1c3c40,12, 0x1c3c80,12, 0x1c3cc0,12, 0x1c3d00,12, 0x1c3d40,12, 0x1c3d80,12, 0x1c3dc0,12, 0x1c3e00,12, 0x1c4000,36, 0x1c4100,36, 0x1c4200,36, 0x1c4300,36, 0x1c4400,133, 0x1c4640,12, 0x1c4680,12, 0x1c46c0,12, 0x1c4700,12, 0x1c4740,12, 0x1c4780,12, 0x1c47c0,12, 0x1c4800,12, 0x1c4840,12, 0x1c4880,12, 0x1c48c0,12, 0x1c4900,12, 0x1c4940,12, 0x1c4980,12, 0x1c49c0,12, 0x1c4a00,12, 0x1c4a40,12, 0x1c4a80,12, 0x1c4ac0,12, 0x1c4b00,12, 0x1c4b40,12, 0x1c4b80,12, 0x1c4bc0,12, 0x1c4c00,12, 0x1c4c40,12, 0x1c4c80,12, 0x1c4cc0,12, 0x1c4d00,12, 0x1c4d40,12, 0x1c4d80,12, 0x1c4dc0,12, 0x1c4e00,12, 0x1c5000,36, 0x1c5100,36, 0x1c5200,36, 0x1c5300,36, 0x1c5400,133, 0x1c5640,12, 0x1c5680,12, 0x1c56c0,12, 0x1c5700,12, 0x1c5740,12, 0x1c5780,12, 0x1c57c0,12, 0x1c5800,12, 0x1c5840,12, 0x1c5880,12, 0x1c58c0,12, 0x1c5900,12, 0x1c5940,12, 0x1c5980,12, 0x1c59c0,12, 0x1c5a00,12, 0x1c5a40,12, 0x1c5a80,12, 0x1c5ac0,12, 0x1c5b00,12, 0x1c5b40,12, 0x1c5b80,12, 0x1c5bc0,12, 0x1c5c00,12, 0x1c5c40,12, 0x1c5c80,12, 0x1c5cc0,12, 0x1c5d00,12, 0x1c5d40,12, 0x1c5d80,12, 0x1c5dc0,12, 0x1c5e00,12, 0x1c6000,36, 0x1c6100,36, 0x1c6200,36, 0x1c6300,36, 0x1c6400,133, 0x1c6640,12, 0x1c6680,12, 0x1c66c0,12, 0x1c6700,12, 0x1c6740,12, 0x1c6780,12, 0x1c67c0,12, 0x1c6800,12, 0x1c6840,12, 0x1c6880,12, 0x1c68c0,12, 0x1c6900,12, 0x1c6940,12, 0x1c6980,12, 0x1c69c0,12, 0x1c6a00,12, 0x1c6a40,12, 0x1c6a80,12, 0x1c6ac0,12, 0x1c6b00,12, 0x1c6b40,12, 0x1c6b80,12, 0x1c6bc0,12, 0x1c6c00,12, 0x1c6c40,12, 0x1c6c80,12, 0x1c6cc0,12, 0x1c6d00,12, 0x1c6d40,12, 0x1c6d80,12, 0x1c6dc0,12, 0x1c6e00,12, 0x1c7000,36, 0x1c7100,36, 0x1c7200,36, 0x1c7300,36, 0x1c7400,133, 0x1c7640,12, 0x1c7680,12, 0x1c76c0,12, 0x1c7700,12, 0x1c7740,12, 0x1c7780,12, 0x1c77c0,12, 0x1c7800,12, 0x1c7840,12, 0x1c7880,12, 0x1c78c0,12, 0x1c7900,12, 0x1c7940,12, 0x1c7980,12, 0x1c79c0,12, 0x1c7a00,12, 0x1c7a40,12, 0x1c7a80,12, 0x1c7ac0,12, 0x1c7b00,12, 0x1c7b40,12, 0x1c7b80,12, 0x1c7bc0,12, 0x1c7c00,12, 0x1c7c40,12, 0x1c7c80,12, 0x1c7cc0,12, 0x1c7d00,12, 0x1c7d40,12, 0x1c7d80,12, 0x1c7dc0,12, 0x1c7e00,12, 0x1c8000,36, 0x1c8100,36, 0x1c8200,36, 0x1c8300,36, 0x1c8400,133, 0x1c8640,12, 0x1c8680,12, 0x1c86c0,12, 0x1c8700,12, 0x1c8740,12, 0x1c8780,12, 0x1c87c0,12, 0x1c8800,12, 0x1c8840,12, 0x1c8880,12, 0x1c88c0,12, 0x1c8900,12, 0x1c8940,12, 0x1c8980,12, 0x1c89c0,12, 0x1c8a00,12, 0x1c8a40,12, 0x1c8a80,12, 0x1c8ac0,12, 0x1c8b00,12, 0x1c8b40,12, 0x1c8b80,12, 0x1c8bc0,12, 0x1c8c00,12, 0x1c8c40,12, 0x1c8c80,12, 0x1c8cc0,12, 0x1c8d00,12, 0x1c8d40,12, 0x1c8d80,12, 0x1c8dc0,12, 0x1c8e00,12, 0x1c9000,2, 0x1d0000,9, 0x1d0080,2, 0x1d00c4,1, 0x1d00e0,45, 0x1d01c0,4, 0x1d01e0,5, 0x1d0200,4, 0x1d0400,7, 0x1d0600,4, 0x1d0700,43, 0x1d0800,5, 0x1d0820,2, 0x1e0000,4, 0x1e0100,3, 0x1e0110,35, 0x1e0200,4, 0x1e0400,15, 0x1e0440,4, 0x1e0460,17, 0x1e04c0,6, 0x1e04e0,2, 0x1e04ec,3, 0x1e0500,8, 0x1e0524,35, 0x1e0600,2, 0x1e0610,3, 0x1e0800,2, 0x1e0904,1, 0x1e0974,37, 0x1e0b04,1, 0x1e0b78,42, 0x1e0c40,4, 0x1e0c60,5, 0x1e0c80,2, 0x1e0c8c,2, 0x1e0ca0,7, 0x1e1000,2, 0x1e1020,22, 0x1e1080,25, 0x1e2000,12, 0x1e2040,12, 0x1e2080,12, 0x1e20c0,12, 0x1e2100,85, 0x1e2400,3, 0x1e2414,6, 0x1e2430,7, 0x1e2450,8, 0x1e2500,15, 0x1e2540,9, 0x1e2580,6, 0x1e25a0,4, 0x1e25c0,8, 0x1e25e4,2, 0x1e2600,12, 0x1e2640,2, 0x1e264c,2, 0x1e2660,3, 0x1e2800,3, 0x1e2814,6, 0x1e2830,3, 0x1e2840,4, 0x1e2900,15, 0x1e2940,9, 0x1e2980,6, 0x1e29a0,4, 0x1e29c0,8, 0x1e29e4,1, 0x1e2a00,12, 0x1e2a40,2, 0x1e2a4c,2, 0x1e2a60,3, 0x1e2c00,6, 0x1e2c24,3, 0x1e2c34,3, 0x1e2c44,8, 0x1e2c68,2, 0x1e2c80,4, 0x1e2ca0,5, 0x1e2cc0,2, 0x1e2ccc,2, 0x1e2ce0,1, 0x1e2ce8,9, 0x1e2d10,1, 0x1e2d18,1, 0x1e2d20,1, 0x1e2d28,1, 0x1e2d30,1, 0x1e2d38,1, 0x1e2d40,1, 0x1e2d48,1, 0x1e2d50,1, 0x1e2d58,1, 0x1e2d60,1, 0x1e2d68,1, 0x1e3000,7, 0x1e3020,9, 0x1e3050,10, 0x1e3080,57, 0x1e3170,10, 0x1e31a0,57, 0x1e3290,10, 0x1e32c0,56, 0x1e3400,21, 0x1e3480,21, 0x1e3500,21, 0x1e3580,8, 0x1e35a4,27, 0x1e3620,6, 0x1e3640,6, 0x1e3660,1, 0x1e3680,9, 0x1e36bc,10, 0x1e36fc,1, 0x1e3800,108, 0x1e3c00,4, 0x1e3d00,48, 0x1e3e00,2, 0x1e3e0c,2, 0x1e3e20,6, 0x1e3e40,3, 0x1e3e50,3, 0x1e3e64,1, 0x1e3e74,5, 0x1e3ea0,2, 0x1e3eb4,1, 0x1e3ebc,12, 0x1e3f00,22, 0x1e4000,44, 0x1e40c0,5, 0x1e40e0,5, 0x1e4100,5, 0x1e4120,5, 0x1e4140,5, 0x1e4160,5, 0x1e4180,5, 0x1e41a0,5, 0x1e41c0,5, 0x1e41e0,1, 0x1e4400,6, 0x1e4420,3, 0x1e4430,150, 0x1e6000,6, 0x1e6200,15, 0x1e6240,4, 0x1e6260,17, 0x1e62c0,6, 0x1e62e0,2, 0x1e62ec,3, 0x1e6300,8, 0x1e6324,3, 0x1e6400,7, 0x1e6420,2, 0x1e642c,2, 0x1e6500,2, 0x1e6584,1, 0x1e6590,30, 0x1e6684,1, 0x1e6690,30, 0x1e6784,1, 0x1e6790,30, 0x1e6884,1, 0x1e6890,28, 0x1e6c00,226, 0x1e6f8c,2, 0x1e6fa0,5, 0x1e6fc0,84, 0x1e7200,1, 0x1e7208,1, 0x1e7210,1, 0x1e7218,1, 0x1e7220,1, 0x1e7228,1, 0x1e7230,1, 0x1e7238,1, 0x1e7240,1, 0x1e7248,1, 0x1e7250,1, 0x1e7258,1, 0x1e7260,1, 0x1e7268,1, 0x1e7270,1, 0x1e7278,1, 0x1e7280,1, 0x1e7288,1, 0x1e7290,1, 0x1e7298,1, 0x1e72a0,1, 0x1e72a8,1, 0x1e72c0,9, 0x1e72e8,2, 0x1e8000,8, 0x1e8040,9, 0x1e8080,1, 0x1e8088,4, 0x1e80a0,1, 0x1e80a8,4, 0x1e80c0,1, 0x1e80c8,4, 0x1e80e0,1, 0x200000,16, 0x200044,1, 0x200054,6, 0x200104,1, 0x200120,56, 0x200204,1, 0x200278,34, 0x200304,1, 0x200360,40, 0x200404,1, 0x200470,36, 0x200504,15, 0x200544,1, 0x200560,8, 0x200584,1, 0x200598,10, 0x2005c4,1, 0x2005e0,8, 0x200604,1, 0x200620,8, 0x200644,1, 0x200660,8, 0x200684,7, 0x2006c4,1, 0x2006e0,8, 0x200704,1, 0x200720,8, 0x200744,1, 0x200760,8, 0x200784,7, 0x2007c4,1, 0x2007e0,8, 0x200804,1, 0x200820,8, 0x200844,1, 0x200860,8, 0x200884,7, 0x2008c4,1, 0x2008e0,8, 0x200904,1, 0x20091c,49, 0x200a04,1, 0x200a10,12, 0x200a44,5, 0x200b00,3, 0x200b10,2, 0x200b24,1, 0x200b2c,1, 0x200b40,9, 0x200b80,5, 0x200c00,7, 0x200d04,1, 0x200d10,12, 0x200e00,3, 0x200e10,2, 0x200e24,1, 0x200e2c,1, 0x200e40,9, 0x200e80,5, 0x200f04,1, 0x200f0c,2, 0x201004,1, 0x201020,47, 0x201104,5, 0x201124,1, 0x201130,12, 0x201200,3, 0x201210,2, 0x201224,1, 0x20122c,1, 0x201240,9, 0x201280,5, 0x201300,3, 0x201800,6, 0x201820,6, 0x201840,6, 0x201860,6, 0x201880,6, 0x2018a0,6, 0x2018c0,6, 0x2018e0,6, 0x201900,2, 0x201944,1, 0x201950,12, 0x201a00,18, 0x201a80,18, 0x201b00,18, 0x201b80,2, 0x201c00,2, 0x202000,3, 0x202104,1, 0x202110,12, 0x202144,5, 0x202200,3, 0x202210,2, 0x202224,1, 0x20222c,1, 0x202240,9, 0x202280,5, 0x202300,28, 0x202380,20, 0x202400,13, 0x202440,13, 0x202480,22, 0x202500,22, 0x202580,13, 0x2025c0,13, 0x202600,15, 0x202640,15, 0x202680,13, 0x2026c0,13, 0x202700,10, 0x202740,10, 0x202780,6, 0x2027c4,19, 0x202840,14, 0x202900,52, 0x202a00,28, 0x202a80,6, 0x202ac0,9, 0x202b00,1, 0x202b08,9, 0x202b44,1, 0x202b54,3, 0x202b64,3, 0x202b74,3, 0x202b84,3, 0x202b94,3, 0x202ba4,3, 0x202bb4,3, 0x202bc4,3, 0x202bd4,3, 0x202be4,3, 0x202bf4,3, 0x202c04,3, 0x202c40,15, 0x202c80,2, 0x204000,8, 0x204040,12, 0x204080,3, 0x204090,2, 0x2040a0,4, 0x204200,93, 0x208000,11, 0x208030,7, 0x208050,3, 0x208060,14, 0x2080a0,5, 0x208200,11, 0x208230,2, 0x208240,11, 0x208270,2, 0x208280,1, 0x208288,15, 0x2082e0,2, 0x2082ec,3, 0x208300,4, 0x208380,26, 0x208400,11, 0x208430,2, 0x208440,11, 0x208470,2, 0x208480,1, 0x208488,15, 0x2084e0,2, 0x2084ec,3, 0x208500,4, 0x208580,26, 0x208600,32, 0x208684,2, 0x208690,4, 0x208800,27, 0x208880,4, 0x2088c0,25, 0x208940,6, 0x208960,2, 0x20896c,3, 0x208980,8, 0x2089a4,7, 0x208a00,9, 0x208a40,20, 0x208aa0,7, 0x208ac0,7, 0x208ae0,15, 0x208b20,1, 0x209000,1, 0x209080,20, 0x209100,7, 0x209200,1, 0x209220,6, 0x209240,6, 0x209260,6, 0x209280,34, 0x210000,27, 0x210080,4, 0x2100c0,25, 0x210140,6, 0x210160,2, 0x21016c,3, 0x210200,8, 0x210224,30, 0x210400,3, 0x210420,6, 0x210440,6, 0x210460,6, 0x210480,6, 0x2104a0,6, 0x2104c0,6, 0x2104e0,6, 0x210500,6, 0x210520,6, 0x210540,6, 0x210560,6, 0x210580,6, 0x2105a0,6, 0x2105c0,6, 0x2105e0,6, 0x210600,6, 0x210620,6, 0x210640,6, 0x210660,6, 0x210680,6, 0x2106a0,6, 0x2106c0,5, 0x210700,2, 0x210784,1, 0x2107b0,21, 0x210810,5, 0x210830,4, 0x211004,1, 0x211040,16, 0x211084,1, 0x2110c0,16, 0x211104,1, 0x211130,20, 0x211184,1, 0x2111c0,16, 0x211204,1, 0x211224,23, 0x211284,1, 0x2112c0,16, 0x211304,1, 0x211340,16, 0x211384,1, 0x2113c0,16, 0x211404,1, 0x21143c,17, 0x211484,1, 0x21149c,11, 0x212000,6, 0x212020,4, 0x212040,6, 0x212060,4, 0x212080,6, 0x2120a0,4, 0x2120c0,6, 0x2120e0,4, 0x212100,6, 0x212120,4, 0x212140,6, 0x212160,4, 0x212180,6, 0x2121a0,4, 0x2121c0,6, 0x2121e0,4, 0x212200,6, 0x212220,4, 0x212240,6, 0x212260,4, 0x212280,6, 0x2122a0,4, 0x2122c0,6, 0x2122e0,4, 0x212300,6, 0x212320,4, 0x212340,6, 0x212360,4, 0x212380,6, 0x2123a0,4, 0x2123c0,6, 0x2123e0,4, 0x212400,6, 0x212420,4, 0x212440,6, 0x212460,4, 0x212480,6, 0x2124a0,4, 0x2124c0,6, 0x2124e0,4, 0x212500,6, 0x212520,4, 0x212540,6, 0x212560,4, 0x212580,6, 0x2125a0,4, 0x2125c0,6, 0x2125e0,4, 0x212600,6, 0x212620,4, 0x212640,6, 0x212660,4, 0x212680,6, 0x2126a0,4, 0x2126c0,6, 0x2126e0,4, 0x212700,6, 0x212720,4, 0x212740,6, 0x212760,4, 0x212780,6, 0x2127a0,4, 0x2127c0,6, 0x2127e0,4, 0x212800,41, 0x2128b4,3, 0x2128c4,3, 0x2128e0,1, 0x212900,20, 0x212980,20, 0x212a00,22, 0x212a64,1, 0x212a74,3, 0x213000,18, 0x213060,1, 0x213068,4, 0x213080,4, 0x2130a0,12, 0x2130e0,7, 0x213100,4, 0x213180,22, 0x213200,4, 0x213300,38, 0x213400,4, 0x213440,14, 0x213480,7, 0x2134a0,7, 0x2134c0,7, 0x2134e0,7, 0x213500,4, 0x213580,23, 0x213600,4, 0x213680,28, 0x213700,4, 0x213780,23, 0x213800,4, 0x213880,19, 0x213900,4, 0x213940,11, 0x213a00,89, 0x213b70,4, 0x214000,9, 0x214040,9, 0x214080,9, 0x2140c0,9, 0x214100,9, 0x214140,9, 0x214180,9, 0x2141c0,9, 0x214200,22, 0x214280,9, 0x2142c0,9, 0x214300,12, 0x214334,26, 0x214400,36, 0x214500,36, 0x214600,36, 0x214700,36, 0x214800,6, 0x214820,6, 0x214840,17, 0x215000,2, 0x215020,2, 0x21502c,3, 0x220000,2, 0x220024,1, 0x220034,4, 0x220060,1, 0x220068,4, 0x220400,63, 0x220504,4, 0x220604,1, 0x22063c,27, 0x2206ac,1, 0x2206c0,10, 0x2206ec,1, 0x220800,3, 0x220810,3, 0x220900,39, 0x220a00,1, 0x220c00,10, 0x220c30,3, 0x220c40,4, 0x220c60,6, 0x220c80,32, 0x221000,3, 0x221010,3, 0x221100,39, 0x221200,1, 0x221400,10, 0x221430,3, 0x221440,4, 0x221460,6, 0x221480,33, 0x221508,4, 0x221520,4, 0x221540,1, 0x221548,4, 0x221560,4, 0x221804,10, 0x221840,22, 0x2218a0,6, 0x221900,8, 0x222000,2, 0x222024,1, 0x222034,4, 0x222060,1, 0x222068,4, 0x222400,63, 0x222504,4, 0x222604,1, 0x22263c,27, 0x2226ac,1, 0x2226c0,10, 0x2226ec,1, 0x222800,3, 0x222810,3, 0x222900,39, 0x222a00,1, 0x222c00,10, 0x222c30,3, 0x222c40,4, 0x222c60,6, 0x222c80,32, 0x223000,3, 0x223010,3, 0x223100,39, 0x223200,1, 0x223400,10, 0x223430,3, 0x223440,4, 0x223460,6, 0x223480,33, 0x223508,4, 0x223520,4, 0x223540,1, 0x223548,4, 0x223560,4, 0x223804,10, 0x223840,22, 0x2238a0,6, 0x223900,8, 0x224000,3, 0x224084,1, 0x2240a0,49, 0x224170,6, 0x22418c,2, 0x2241a0,6, 0x2241c0,6, 0x2241e0,2, 0x224200,7, 0x224220,7, 0x224240,3, 0x224250,3, 0x224260,3, 0x224270,3, 0x224400,43, 0x2244b0,3, 0x2244c0,2, 0x224504,1, 0x22453c,18, 0x224588,4, 0x224604,1, 0x22463c,23, 0x2246a0,6, 0x2246c0,6, 0x2246e0,6, 0x224700,7, 0x224720,4, 0x224740,6, 0x224800,16, 0x224844,2, 0x224880,16, 0x2248c4,2, 0x224900,4, 0x224a00,1, 0x224b00,3, 0x224b20,5, 0x224b40,5, 0x224b60,5, 0x224b80,5, 0x224ba0,3, 0x228000,63, 0x228104,4, 0x228204,3, 0x228240,1, 0x228248,4, 0x228264,4, 0x228280,6, 0x2282a0,6, 0x2282c0,6, 0x2282e0,1, 0x2282e8,2, 0x2282f4,4, 0x228308,4, 0x228320,7, 0x228400,4, 0x228484,1, 0x2284c4,15, 0x228800,63, 0x228904,4, 0x228a04,3, 0x228a40,1, 0x228a48,4, 0x228a64,4, 0x228a80,6, 0x228aa0,6, 0x228ac0,6, 0x228ae0,1, 0x228ae8,2, 0x228af4,4, 0x228b08,4, 0x228b20,7, 0x228c00,4, 0x228c84,1, 0x228cc4,15, 0x229000,3, 0x229010,5, 0x229028,12, 0x229100,16, 0x229144,2, 0x229180,16, 0x2291c4,2, 0x229200,1, 0x229208,4, 0x229400,27, 0x229480,4, 0x2294c0,25, 0x229540,6, 0x229560,2, 0x22956c,3, 0x229580,8, 0x2295a4,7, 0x229600,25, 0x229670,4, 0x229684,1, 0x2296a0,25, 0x229720,8, 0x229800,4, 0x229880,19, 0x229900,24, 0x229980,4, 0x2299c0,9, 0x229a00,4, 0x229a40,9, 0x229b00,4, 0x229b80,18, 0x229c00,4, 0x229c80,18, 0x229d00,11, 0x229d30,3, 0x229d40,1, 0x229d50,4, 0x22a000,1, 0x22a010,4, 0x22a024,1, 0x22a02c,4, 0x22a044,1, 0x22a04c,6, 0x22a104,1, 0x22a140,19, 0x22a200,1, 0x22a220,1, 0x22a228,4, 0x22a400,1, 0x22a408,5, 0x22a420,7, 0x22a504,3, 0x22a514,3, 0x22a524,3, 0x22a534,5, 0x22a584,5, 0x22a600,34, 0x22a700,6, 0x22a720,6, 0x22a740,7, 0x22a760,4, 0x22a784,1, 0x22a794,9, 0x22a7c0,6, 0x22a7e0,6, 0x22a800,6, 0x22a820,6, 0x22a840,6, 0x22a880,9, 0x22a8c0,2, 0x22ac00,1, 0x22ad00,2, 0x22ad84,1, 0x22adbc,18, 0x22ae08,4, 0x22ae20,18, 0x22ae74,5, 0x22ae8c,4, 0x22b000,5, 0x22b020,3, 0x22b030,2, 0x22b200,27, 0x22b280,4, 0x22b2c0,25, 0x22b340,6, 0x22b360,2, 0x22b36c,3, 0x22b380,8, 0x22b3a4,14, 0x22b400,10, 0x22b440,9, 0x22b600,3, 0x22b624,4, 0x22b644,13, 0x22b680,2, 0x22b690,1, 0x22b698,4, 0x22b6c0,12, 0x22b700,1, 0x22b708,8, 0x230000,3, 0x230010,3, 0x230080,25, 0x2300f0,7, 0x230204,1, 0x23025c,41, 0x230400,27, 0x230480,4, 0x2304c0,25, 0x230540,6, 0x230560,2, 0x23056c,3, 0x230580,8, 0x2305a4,7, 0x230600,1, 0x230608,5, 0x230620,2, 0x23062c,2, 0x230640,8, 0x230700,4, 0x230780,19, 0x230800,11, 0x230830,3, 0x230840,12, 0x234000,1280, 0x236000,1, 0x236008,2, 0x236014,3, 0x236024,3, 0x236040,1, 0x236048,4, 0x236064,4, 0x236080,6, 0x2360a0,6, 0x2360c0,6, 0x2360e0,6, 0x236100,6, 0x236120,6, 0x236140,6, 0x236160,6, 0x236180,6, 0x2361a0,6, 0x2361c0,6, 0x2361e0,6, 0x236200,6, 0x236220,6, 0x236240,6, 0x236260,6, 0x236280,1, 0x236288,4, 0x2362a0,2, 0x2362b0,8, 0x236400,67, 0x236600,2, 0x236700,3, 0x236720,2, 0x236734,14, 0x236780,1, 0x236790,3, 0x2367a0,1, 0x236800,122, 0x2369ec,225, 0x237000,7, 0x237020,14, 0x237060,14, 0x238000,1280, 0x23a000,1, 0x23a008,2, 0x23a014,3, 0x23a024,3, 0x23a040,1, 0x23a048,4, 0x23a064,4, 0x23a080,6, 0x23a0a0,6, 0x23a0c0,6, 0x23a0e0,6, 0x23a100,6, 0x23a120,6, 0x23a140,6, 0x23a160,6, 0x23a180,6, 0x23a1a0,6, 0x23a1c0,6, 0x23a1e0,6, 0x23a200,6, 0x23a220,6, 0x23a240,6, 0x23a260,6, 0x23a280,1, 0x23a288,4, 0x23a2a0,2, 0x23a2b0,8, 0x23a400,67, 0x23a600,2, 0x23a700,3, 0x23a720,2, 0x23a734,14, 0x23a780,1, 0x23a790,3, 0x23a7a0,1, 0x23a800,122, 0x23a9ec,225, 0x23b000,7, 0x23b020,14, 0x23b060,14, 0x23c000,2, 0x23c014,10, 0x23c040,7, 0x23c060,3, 0x23c070,3, 0x23c080,3, 0x23c090,3, 0x23c0a0,7, 0x23c0c0,7, 0x23c0e0,3, 0x23c0f0,3, 0x23c100,3, 0x23c110,3, 0x23c200,4, 0x23c280,18, 0x23c300,4, 0x23c380,18, 0x23c400,18, 0x23c480,18, 0x23c500,18, 0x23c580,18, 0x240000,1, 0x240008,15, 0x240204,1, 0x240210,12, 0x240244,1, 0x240250,12, 0x240284,1, 0x240290,12, 0x2402c4,1, 0x2402d0,16, 0x240380,3, 0x2403c4,1, 0x2403d0,13, 0x240800,2, 0x240904,1, 0x240978,36, 0x240b04,1, 0x240b70,38, 0x240c44,1, 0x240c58,10, 0x240c84,32, 0x240d20,1, 0x240d30,7, 0x240e00,4, 0x240e80,18, 0x240f00,2, 0x240f44,1, 0x240f58,17, 0x240fc0,10, 0x241000,10, 0x241040,11, 0x241080,1, 0x241090,5, 0x241104,1, 0x241144,18, 0x241200,1, 0x241208,7, 0x241228,4, 0x241240,2, 0x242000,115, 0x242200,17, 0x242280,17, 0x242300,81, 0x242480,5, 0x2424a0,32, 0x242604,1, 0x242610,4, 0x242624,1, 0x242630,4, 0x242644,1, 0x242650,4, 0x242664,1, 0x242670,7, 0x242700,4, 0x242800,34, 0x242900,4, 0x242a00,36, 0x242b00,2, 0x242b24,1, 0x242b30,6, 0x242b64,1, 0x242b70,13, 0x242bb0,6, 0x242be0,2, 0x242bf0,6, 0x242c14,1, 0x242c1c,2, 0x242d00,2, 0x242d84,1, 0x242dbc,18, 0x242e10,5, 0x242e30,5, 0x242e50,5, 0x242e70,4, 0x242e84,3, 0x242ea0,1, 0x242ea8,7, 0x242f00,17, 0x242f80,36, 0x243020,5, 0x243040,4, 0x243060,5, 0x243080,4, 0x2430a0,5, 0x2430c0,4, 0x2430e0,5, 0x243100,1, 0x243120,1, 0x243128,4, 0x243140,3, 0x243150,3, 0x243160,11, 0x244000,49, 0x244100,49, 0x244200,1, 0x244400,4, 0x244500,49, 0x244600,4, 0x244680,19, 0x244700,13, 0x244740,5, 0x244760,2, 0x24476c,3, 0x244780,3, 0x244790,3, 0x2447a0,3, 0x244804,1, 0x244824,59, 0x244944,1, 0x244950,6, 0x244c00,10, 0x245000,27, 0x245080,4, 0x2450c0,25, 0x245140,6, 0x245160,2, 0x24516c,3, 0x245184,4, 0x245200,2, 0x245400,4, 0x245500,43, 0x245600,2, 0x245620,3, 0x245630,3, 0x245640,3, 0x245800,53, 0x245a00,1, 0x245a10,5, 0x245a30,5, 0x245a50,7, 0x245a80,1, 0x245a88,4, 0x245c00,44, 0x245d00,1, 0x245d40,1, 0x245d48,4, 0x245d60,3, 0x245d70,3, 0x248000,46, 0x248100,46, 0x248200,1, 0x248400,4, 0x248500,46, 0x248600,4, 0x248640,14, 0x248700,13, 0x248738,22, 0x248800,5, 0x248820,2, 0x24882c,3, 0x248840,3, 0x248850,3, 0x248860,3, 0x249000,4, 0x249200,89, 0x249400,89, 0x249600,3, 0x249610,3, 0x249620,9, 0x249800,1, 0x24a000,50, 0x24a200,1, 0x24a210,5, 0x24a230,7, 0x24a260,1, 0x24a268,4, 0x24a400,27, 0x24a480,4, 0x24a4c0,25, 0x24a540,6, 0x24a560,2, 0x24a56c,3, 0x24a584,4, 0x24a600,2, 0x24a800,36, 0x24a900,1, 0x24a908,4, 0x24a920,4, 0x24c000,2, 0x24c084,1, 0x24c0ac,26, 0x24c120,2, 0x24c140,7, 0x24c160,7, 0x24c180,4, 0x24c200,1, 0x24c208,4, 0x24c240,6, 0x24c260,6, 0x24c280,4, 0x24c300,1, 0x24c308,4, 0x24c340,7, 0x24c360,7, 0x24c380,6, 0x24c400,3, 0x24c480,3, 0x24c4c4,1, 0x24c4d0,13, 0x24c600,1, 0x24c608,4, 0x24c620,3, 0x24c630,3, 0x24c640,1, 0x24c680,5, 0x24c6c0,2, 0x24c6d4,1, 0x24c6dc,4, 0x24c700,1, 0x24c708,5, 0x24c720,8, 0x24c800,1, 0x24c808,4, 0x24ca00,34, 0x24cb00,34, 0x24cc00,1, 0x24cc08,4, 0x24cc40,5, 0x24cc60,5, 0x24ce00,4, 0x24cf00,37, 0x24d000,8, 0x250004,1, 0x25000c,1, 0x250014,1, 0x25001c,5, 0x250204,1, 0x25027c,36, 0x250404,1, 0x25047c,36, 0x250600,37, 0x250700,1, 0x250800,2, 0x250824,1, 0x250834,5, 0x250a00,2, 0x250b04,1, 0x250b74,36, 0x250c10,11, 0x250c40,2, 0x250c50,3, 0x250c60,1, 0x250d00,60, 0x250e00,12, 0x251000,2, 0x251104,1, 0x251178,37, 0x251400,27, 0x251480,4, 0x2514c0,25, 0x251540,6, 0x251560,2, 0x25156c,3, 0x251580,8, 0x2515a4,14, 0x251600,1, 0x260000,3, 0x260018,2, 0x260024,13, 0x260060,27, 0x2600d0,3, 0x2600e0,3, 0x2600f0,3, 0x260100,4, 0x260114,9, 0x260140,3, 0x260160,2, 0x260180,3, 0x26019c,18, 0x2601ec,4, 0x260200,11, 0x260240,1, 0x26027c,9, 0x260400,3, 0x260418,2, 0x260424,13, 0x260460,27, 0x2604d0,3, 0x2604e0,3, 0x2604f0,3, 0x260500,4, 0x260514,9, 0x260540,3, 0x260560,2, 0x260580,3, 0x26059c,18, 0x2605ec,4, 0x260600,11, 0x260640,1, 0x26067c,9, 0x260800,3, 0x260818,2, 0x260824,13, 0x260860,27, 0x2608d0,3, 0x2608e0,3, 0x2608f0,3, 0x260900,4, 0x260914,9, 0x260940,3, 0x260960,2, 0x260980,3, 0x26099c,18, 0x2609ec,4, 0x260a00,11, 0x260a40,1, 0x260a7c,9, 0x260c00,3, 0x260c18,2, 0x260c24,13, 0x260c60,27, 0x260cd0,3, 0x260ce0,3, 0x260cf0,3, 0x260d00,4, 0x260d14,9, 0x260d40,3, 0x260d60,2, 0x260d80,3, 0x260d9c,18, 0x260dec,4, 0x260e00,11, 0x260e40,1, 0x260e7c,9, 0x261000,3, 0x261018,2, 0x261024,13, 0x261060,27, 0x2610d0,3, 0x2610e0,3, 0x2610f0,3, 0x261100,4, 0x261114,9, 0x261140,3, 0x261160,2, 0x261180,3, 0x26119c,18, 0x2611ec,4, 0x261200,11, 0x261240,1, 0x26127c,9, 0x261400,3, 0x261418,2, 0x261424,13, 0x261460,27, 0x2614d0,3, 0x2614e0,3, 0x2614f0,3, 0x261500,4, 0x261514,9, 0x261540,3, 0x261560,2, 0x261580,3, 0x26159c,18, 0x2615ec,4, 0x261600,11, 0x261640,1, 0x26167c,9, 0x261800,3, 0x261818,2, 0x261824,13, 0x261860,27, 0x2618d0,3, 0x2618e0,3, 0x2618f0,3, 0x261900,4, 0x261914,9, 0x261940,3, 0x261960,2, 0x261980,3, 0x26199c,18, 0x2619ec,4, 0x261a00,11, 0x261a40,1, 0x261a7c,9, 0x261c00,3, 0x261c18,2, 0x261c24,13, 0x261c60,27, 0x261cd0,3, 0x261ce0,3, 0x261cf0,3, 0x261d00,4, 0x261d14,9, 0x261d40,3, 0x261d60,2, 0x261d80,3, 0x261d9c,18, 0x261dec,4, 0x261e00,11, 0x261e40,1, 0x261e7c,9, 0x262000,15, 0x263044,12, 0x263078,1, 0x263200,17, 0x263248,4, 0x263260,4, 0x263280,1, 0x263288,4, 0x2632a0,4, 0x2632c0,1, 0x2632c8,4, 0x2632e0,4, 0x263300,1, 0x263308,4, 0x263320,4, 0x263404,1, 0x263440,24, 0x2634a4,14, 0x2634e0,82, 0x263640,2, 0x26364c,2, 0x263800,6, 0x263820,2, 0x263a30,1, 0x263a40,8, 0x263a64,5, 0x263b00,4, 0x263b84,1, 0x263bc0,20, 0x263c84,1, 0x263cc0,16, 0x264a04,3, 0x264b00,33, 0x264b90,3, 0x264c00,10, 0x264c80,27, 0x264d00,2, 0x264d14,3, 0x264d40,3, 0x264d80,4, 0x264da0,44, 0x264e80,1, 0x264ea0,7, 0x264ec0,11, 0x265000,100, 0x265200,20, 0x265280,7, 0x265400,68, 0x265600,2, 0x265640,4, 0x265660,6, 0x265800,92, 0x265a00,5, 0x265a18,7, 0x265a40,22, 0x268000,5, 0x268018,22, 0x268074,1, 0x26807c,1, 0x268084,1, 0x2680a0,10, 0x268100,66, 0x268224,14, 0x268264,14, 0x2682a0,10, 0x2682d0,1, 0x2682dc,1, 0x268300,1, 0x268380,64, 0x268484,1, 0x2684c0,23, 0x268520,7, 0x268540,10, 0x268570,1, 0x26857c,1, 0x268600,1, 0x268680,64, 0x268784,1, 0x2687c0,23, 0x268820,7, 0x268840,6, 0x268860,1, 0x268868,4, 0x268880,5, 0x2688a0,6, 0x2688c0,6, 0x2688e0,6, 0x268900,6, 0x268920,35, 0x2689b0,3, 0x2689c0,3, 0x2689d0,3, 0x2689e0,3, 0x2689f0,3, 0x268a00,3, 0x268a10,3, 0x268a20,3, 0x268a30,3, 0x268a40,3, 0x268a50,3, 0x268a60,3, 0x268a70,3, 0x268a80,3, 0x268a90,3, 0x268aa0,1, 0x268aa8,3, 0x268ab8,3, 0x268ac8,3, 0x268ad8,2, 0x268b00,48, 0x268c00,38, 0x268ca0,6, 0x268cc0,5, 0x268ce0,5, 0x268d00,6, 0x268d20,6, 0x268d40,1, 0x268d80,9, 0x268da8,4, 0x269000,2, 0x269040,9, 0x269080,23, 0x280000,20, 0x280080,12, 0x300000,19, 0x300050,8, 0x300080,12, 0x3000c0,9, 0x300100,19, 0x300150,8, 0x300180,12, 0x3001c0,9, 0x300200,19, 0x300250,8, 0x300280,12, 0x3002c0,9, 0x300300,19, 0x300350,8, 0x300380,12, 0x3003c0,9, 0x300400,19, 0x300450,8, 0x300480,12, 0x3004c0,9, 0x300500,19, 0x300550,8, 0x300580,12, 0x3005c0,9, 0x300600,19, 0x300650,8, 0x300680,12, 0x3006c0,9, 0x300700,19, 0x300750,8, 0x300780,12, 0x3007c0,9, 0x300800,19, 0x300850,8, 0x300880,12, 0x3008c0,9, 0x300900,19, 0x300950,8, 0x300980,12, 0x3009c0,9, 0x300a00,19, 0x300a50,8, 0x300a80,12, 0x300ac0,9, 0x300b00,19, 0x300b50,8, 0x300b80,12, 0x300bc0,9, 0x300c00,19, 0x300c50,8, 0x300c80,12, 0x300cc0,9, 0x300d00,19, 0x300d50,8, 0x300d80,12, 0x300dc0,9, 0x300e00,19, 0x300e50,8, 0x300e80,12, 0x300ec0,9, 0x300f00,19, 0x300f50,8, 0x300f80,12, 0x300fc0,9, 0x301000,19, 0x301050,8, 0x301080,12, 0x3010c0,9, 0x301100,19, 0x301150,8, 0x301180,12, 0x3011c0,9, 0x301200,19, 0x301250,8, 0x301280,12, 0x3012c0,9, 0x301300,19, 0x301350,8, 0x301380,12, 0x3013c0,9, 0x301400,19, 0x301450,8, 0x301480,12, 0x3014c0,9, 0x301500,19, 0x301550,8, 0x301580,12, 0x3015c0,9, 0x301600,19, 0x301650,8, 0x301680,12, 0x3016c0,9, 0x301700,19, 0x301750,8, 0x301780,12, 0x3017c0,9, 0x301800,19, 0x301850,8, 0x301880,12, 0x3018c0,9, 0x301900,19, 0x301950,8, 0x301980,12, 0x3019c0,9, 0x301a00,19, 0x301a50,8, 0x301a80,12, 0x301ac0,9, 0x301b00,19, 0x301b50,8, 0x301b80,12, 0x301bc0,9, 0x301c00,19, 0x301c50,8, 0x301c80,12, 0x301cc0,9, 0x301d00,19, 0x301d50,8, 0x301d80,12, 0x301dc0,9, 0x301e00,19, 0x301e50,8, 0x301e80,12, 0x301ec0,9, 0x301f00,19, 0x301f50,8, 0x301f80,12, 0x301fc0,9, 0x302000,19, 0x302050,8, 0x302080,12, 0x3020c0,9, 0x302100,19, 0x302150,8, 0x302180,12, 0x3021c0,9, 0x302200,19, 0x302250,8, 0x302280,12, 0x3022c0,9, 0x302300,19, 0x302350,8, 0x302380,12, 0x3023c0,9, 0x302400,19, 0x302450,8, 0x302480,12, 0x3024c0,9, 0x302500,19, 0x302550,8, 0x302580,12, 0x3025c0,9, 0x302600,19, 0x302650,8, 0x302680,12, 0x3026c0,9, 0x302700,19, 0x302750,8, 0x302780,12, 0x3027c0,9, 0x302800,24, 0x302880,12, 0x3028c0,17, 0x302a00,24, 0x302a80,12, 0x302ac0,17, 0x302c00,24, 0x302c80,12, 0x302cc0,17, 0x302e00,24, 0x302e80,12, 0x302ec0,17, 0x303000,24, 0x303080,12, 0x3030c0,17, 0x303200,24, 0x303280,12, 0x3032c0,17, 0x303400,24, 0x303480,12, 0x3034c0,17, 0x303600,24, 0x303680,12, 0x3036c0,17, 0x303800,24, 0x303880,12, 0x3038c0,17, 0x303c00,13, 0x303c40,5, 0x303c80,5, 0x303d00,6, 0x303d20,6, 0x303d40,6, 0x303d60,6, 0x303d80,6, 0x303da0,6, 0x303dc0,6, 0x303de0,6, 0x303e00,6, 0x303e20,6, 0x303e40,5, 0x303e60,9, 0x304000,19, 0x304050,6, 0x304080,7, 0x3040a0,2, 0x3040c0,12, 0x304100,9, 0x304200,27, 0x304280,27, 0x304300,15, 0x304340,5, 0x304360,12, 0x304400,20, 0x308000,3, 0x308010,3, 0x308020,3, 0x308030,3, 0x308040,3, 0x308050,3, 0x308060,3, 0x308070,3, 0x308080,28, 0x308100,28, 0x308180,28, 0x308200,28, 0x308280,28, 0x308300,28, 0x308380,28, 0x308400,28, 0x308480,4, 0x3084c0,3, 0x3084e0,18, 0x308540,2, 0x308550,3, 0x308580,2, 0x3085a0,7, 0x3085c0,1, 0x308600,2, 0x308620,7, 0x308640,1, 0x308680,2, 0x3086a0,7, 0x3086c0,1, 0x308700,2, 0x308720,7, 0x308740,1, 0x308780,2, 0x3087a0,7, 0x3087c0,1, 0x308800,2, 0x308820,7, 0x308840,1, 0x308880,2, 0x3088a0,7, 0x3088c0,1, 0x308900,2, 0x308920,7, 0x308940,1, 0x308980,9, 0x309000,5, 0x309020,5, 0x309040,5, 0x309060,5, 0x309080,5, 0x3090a0,5, 0x3090c0,5, 0x3090e0,5, 0x309100,44, 0x309200,44, 0x309300,44, 0x309400,44, 0x309500,44, 0x309600,44, 0x309700,44, 0x309800,44, 0x309900,5, 0x309920,10, 0x309950,3, 0x309960,5, 0x309980,5, 0x3099a0,5, 0x3099b8,5, 0x3099d0,20, 0x30a000,3, 0x30a010,3, 0x30a020,3, 0x30a030,3, 0x30a040,3, 0x30a050,3, 0x30a060,3, 0x30a070,3, 0x30a080,28, 0x30a100,28, 0x30a180,28, 0x30a200,28, 0x30a280,28, 0x30a300,28, 0x30a380,28, 0x30a400,28, 0x30a480,9, 0x30a4b0,3, 0x30a4c0,9, 0x30a4f0,3, 0x30a500,3, 0x30a510,1, 0x30a520,17, 0x30a800,22, 0x310000,1, 0x310200,2, 0x310240,8, 0x310280,9, 0x3102c0,9, 0x310300,9, 0x310340,9, 0x310380,24, 0x310400,2, 0x310440,8, 0x310480,9, 0x3104c0,9, 0x310500,9, 0x310540,9, 0x310580,24, 0x310600,9, 0x310640,9, 0x310680,9, 0x3106c0,9, 0x310700,9, 0x310740,9, 0x310780,9, 0x3107c0,9, 0x310800,9, 0x310840,9, 0x310880,9, 0x3108c0,9, 0x310900,9, 0x310940,9, 0x310980,9, 0x3109c0,9, 0x310a00,9, 0x310a40,9, 0x310a80,9, 0x310ac0,9, 0x310b00,9, 0x310b40,9, 0x310b80,9, 0x310bc0,9, 0x310c00,3, 0x310c20,25, 0x310ca0,5, 0x310cc0,1, 0x310cc8,5, 0x310ce0,5, 0x310d00,1, 0x310d08,5, 0x310d20,16, 0x311000,74, 0x311200,74, 0x311404,1, 0x311418,10, 0x311444,3, 0x311464,7, 0x311484,7, 0x3114a4,1, 0x3114ac,1, 0x3114b4,1, 0x3114bc,3, 0x311500,8, 0x311600,17, 0x311660,1, 0x311680,66, 0x311790,3, 0x3117a4,1, 0x3117ac,4, 0x3117c0,14, 0x311800,17, 0x311860,1, 0x311880,66, 0x311990,3, 0x311a00,1, 0x311a40,10, 0x311a80,2, 0x311aa0,6, 0x311ac0,6, 0x311ae0,17, 0x311b28,19, 0x311b78,4, 0x311b90,3, 0x311ba0,2, 0x311bb0,3, 0x311c00,21, 0x311c80,1, 0x311c88,7, 0x311cc0,1, 0x311ce0,26, 0x311d80,1, 0x311e00,5, 0x311e20,5, 0x311e40,5, 0x311e60,5, 0x311e80,9, 0x312000,108, 0x312200,8, 0x320000,31, 0x320080,31, 0x320100,31, 0x320180,31, 0x320200,31, 0x320280,31, 0x320300,31, 0x320380,31, 0x320400,31, 0x320480,31, 0x320500,31, 0x320580,31, 0x320600,31, 0x320680,31, 0x320700,31, 0x320780,31, 0x320800,9, 0x320880,1, 0x320900,21, 0x320980,21, 0x320a00,21, 0x320a80,1, 0x320c04,1, 0x320c10,6, 0x320c30,64, 0x320e00,12, 0x320e40,10, 0x320e80,13, 0x320ec0,13, 0x320f00,9, 0x320f40,5, 0x320f60,5, 0x320f80,6, 0x320fa0,1, 0x320fa8,100, 0x321404,1, 0x321428,22, 0x321504,1, 0x321544,47, 0x321604,1, 0x32161c,9, 0x321644,1, 0x32164c,1, 0x321654,1, 0x32165c,1, 0x321664,1, 0x32166c,3, 0x322000,96, 0x322200,96, 0x322400,6, 0x322424,1, 0x32242c,14, 0x322800,40, 0x3228c0,3, 0x3228d0,3, 0x3228e0,3, 0x3228f0,3, 0x322904,1, 0x32291c,11, 0x322a04,1, 0x322a0c,7, 0x322a40,1, 0x322a54,4, 0x323000,3, 0x324000,3, 0x324010,3, 0x324020,3, 0x324030,3, 0x324040,3, 0x324050,3, 0x324060,3, 0x324070,3, 0x324080,3, 0x324090,3, 0x3240a0,3, 0x3240b0,3, 0x3240c0,3, 0x3240d0,3, 0x3240e0,3, 0x3240f0,3, 0x324100,3, 0x324110,3, 0x324120,3, 0x324130,3, 0x324140,3, 0x324150,3, 0x324160,3, 0x324170,3, 0x324180,3, 0x324190,3, 0x3241a0,3, 0x3241b0,3, 0x3241c0,3, 0x3241d0,3, 0x3241e0,3, 0x3241f0,3, 0x324200,3, 0x324210,3, 0x324220,3, 0x324230,3, 0x324240,3, 0x324250,3, 0x324260,3, 0x324270,3, 0x324280,3, 0x324290,3, 0x3242a0,3, 0x3242b0,3, 0x3242c0,3, 0x3242d0,3, 0x3242e0,3, 0x3242f0,3, 0x324300,3, 0x324310,3, 0x324320,3, 0x324330,3, 0x324340,3, 0x324350,3, 0x324360,3, 0x324370,3, 0x324380,3, 0x324390,3, 0x3243a0,3, 0x3243b0,3, 0x3243c0,3, 0x3243d0,3, 0x3243e0,3, 0x3243f0,3, 0x324400,3, 0x324410,3, 0x324420,3, 0x324430,3, 0x324440,3, 0x324450,3, 0x324460,3, 0x324470,3, 0x324480,3, 0x324490,3, 0x3244a0,3, 0x3244b0,3, 0x3244c0,3, 0x3244d0,3, 0x3244e0,3, 0x3244f0,3, 0x324500,3, 0x324510,3, 0x324520,3, 0x324530,3, 0x324540,3, 0x324550,3, 0x324560,3, 0x324570,3, 0x324580,3, 0x324590,3, 0x3245a0,3, 0x3245b0,3, 0x3245c0,3, 0x3245d0,3, 0x3245e0,3, 0x3245f0,3, 0x324600,32, 0x324800,128, 0x324a04,1, 0x324a20,8, 0x324a44,1, 0x324a60,8, 0x324a84,1, 0x324a94,3, 0x324aa4,1, 0x324ab4,6, 0x324b00,41, 0x324bc4,1, 0x324bd0,4, 0x324be4,6, 0x324c00,3, 0x324c10,14, 0x324c60,9, 0x325000,5, 0x325020,5, 0x325040,5, 0x325060,5, 0x325080,5, 0x3250a0,5, 0x3250c0,5, 0x3250e0,5, 0x325100,5, 0x325120,5, 0x325140,5, 0x325160,5, 0x325180,5, 0x3251a0,5, 0x3251c0,5, 0x3251e0,5, 0x325200,5, 0x325220,5, 0x325240,5, 0x325260,5, 0x325280,5, 0x3252a0,5, 0x3252c0,5, 0x3252e0,5, 0x325300,5, 0x325320,5, 0x325340,5, 0x325360,5, 0x325380,5, 0x3253a0,5, 0x3253c0,5, 0x3253e0,5, 0x325400,5, 0x325420,5, 0x325440,5, 0x325460,5, 0x325480,5, 0x3254a0,5, 0x3254c0,5, 0x3254e0,5, 0x325500,5, 0x325520,5, 0x325540,5, 0x325560,5, 0x325580,5, 0x3255a0,5, 0x3255c0,5, 0x3255e0,5, 0x325600,5, 0x325620,5, 0x325640,5, 0x325660,5, 0x325680,5, 0x3256a0,5, 0x3256c0,5, 0x3256e0,5, 0x325700,5, 0x325720,5, 0x325740,5, 0x325760,5, 0x325780,5, 0x3257a0,5, 0x3257c0,5, 0x3257e0,5, 0x325800,27, 0x325874,10, 0x325904,1, 0x32590c,5, 0x325924,1, 0x32592c,7, 0x325980,8, 0x326000,5, 0x326020,5, 0x326040,5, 0x326060,5, 0x326080,5, 0x3260a0,5, 0x3260c0,5, 0x3260e0,5, 0x326100,5, 0x326120,5, 0x326140,5, 0x326160,5, 0x326180,5, 0x3261a0,5, 0x3261c0,5, 0x3261e0,5, 0x326200,5, 0x326220,5, 0x326240,5, 0x326260,5, 0x326280,5, 0x3262a0,5, 0x3262c0,5, 0x3262e0,5, 0x326300,5, 0x326320,5, 0x326340,5, 0x326360,5, 0x326380,5, 0x3263a0,5, 0x3263c0,5, 0x3263e0,5, 0x326400,5, 0x326420,5, 0x326440,5, 0x326460,5, 0x326480,5, 0x3264a0,5, 0x3264c0,5, 0x3264e0,5, 0x326500,5, 0x326520,5, 0x326540,5, 0x326560,5, 0x326580,5, 0x3265a0,5, 0x3265c0,5, 0x3265e0,5, 0x326600,5, 0x326620,5, 0x326640,5, 0x326660,5, 0x326680,5, 0x3266a0,5, 0x3266c0,5, 0x3266e0,5, 0x326700,5, 0x326720,5, 0x326740,5, 0x326760,5, 0x326780,5, 0x3267a0,5, 0x3267c0,5, 0x3267e0,5, 0x326800,27, 0x326874,10, 0x326904,1, 0x32690c,5, 0x326924,1, 0x32692c,7, 0x326980,8, 0x327000,20, 0x327080,20, 0x327100,20, 0x327180,20, 0x327200,20, 0x327280,20, 0x327300,20, 0x327380,20, 0x327400,20, 0x327480,20, 0x327500,20, 0x327580,20, 0x327600,20, 0x327680,20, 0x327700,20, 0x327780,20, 0x327800,11, 0x327830,1, 0x327840,9, 0x327880,11, 0x3278b0,1, 0x3278c0,9, 0x327900,11, 0x327930,1, 0x327940,9, 0x327980,11, 0x3279b0,1, 0x3279c0,9, 0x327a00,11, 0x327a30,1, 0x327a40,9, 0x327a80,11, 0x327ab0,1, 0x327ac0,9, 0x327b00,11, 0x327b30,1, 0x327b40,9, 0x327b80,11, 0x327bb0,1, 0x327bc0,9, 0x327c00,8, 0x328000,1, 0x328100,57, 0x328200,57, 0x328300,57, 0x328400,57, 0x328500,57, 0x328600,57, 0x328700,57, 0x328800,57, 0x328900,57, 0x328a00,57, 0x328b00,57, 0x328c00,57, 0x328d00,57, 0x328e00,57, 0x328f00,57, 0x329000,57, 0x329100,28, 0x329180,17, 0x329200,11, 0x329240,9, 0x329280,33, 0x329308,4, 0x329320,1, 0x329340,1, 0x329360,7, 0x329380,7, 0x3293a0,1, 0x3293c0,6, 0x3293e0,6, 0x329400,6, 0x329420,1, 0x329440,6, 0x329460,6, 0x329480,6, 0x3294a0,1, 0x3294c0,6, 0x3294e0,6, 0x329500,6, 0x329520,3, 0x329530,7, 0x329550,7, 0x329570,7, 0x329590,7, 0x3295b0,7, 0x3295d0,7, 0x3295f0,7, 0x329610,7, 0x329630,7, 0x329650,7, 0x329670,7, 0x329690,7, 0x3296b0,7, 0x3296d0,7, 0x3296f0,7, 0x329710,7, 0x329730,7, 0x329750,7, 0x329770,7, 0x329790,7, 0x3297b0,7, 0x3297d0,7, 0x3297f0,7, 0x329810,15, 0x329860,39, 0x329920,7, 0x329960,2, 0x32996c,3, 0x329980,2, 0x32998c,3, 0x3299a0,2, 0x3299ac,3, 0x3299c0,2, 0x3299cc,3, 0x3299e0,2, 0x3299ec,3, 0x329a00,2, 0x329a0c,3, 0x329a20,2, 0x329a2c,3, 0x329a40,2, 0x329a4c,3, 0x329a60,2, 0x329a6c,3, 0x329a80,2, 0x329a8c,3, 0x329aa0,2, 0x329aac,3, 0x329ac0,2, 0x329acc,3, 0x329ae0,2, 0x329aec,3, 0x329b00,2, 0x329b0c,3, 0x329b20,2, 0x329b2c,3, 0x329b40,2, 0x329b4c,3, 0x329c00,27, 0x329c80,1, 0x329ca0,6, 0x32a000,27, 0x32a080,4, 0x32a0c0,25, 0x32a140,6, 0x32a160,2, 0x32a16c,3, 0x32a200,8, 0x32a224,25, 0x32a400,27, 0x32a480,1, 0x32a4a0,6, 0x32a500,27, 0x32a580,27, 0x32a600,27, 0x32a680,27, 0x32a700,27, 0x32a780,27, 0x32a800,27, 0x32a880,27, 0x32a900,27, 0x32a980,27, 0x32aa00,27, 0x32aa80,27, 0x32ab00,27, 0x32ab80,27, 0x32ac00,27, 0x32ac80,27, 0x32ad00,2, 0x32ad10,3, 0x32ad20,1, 0x32ad30,65, 0x32b000,3, 0x32b010,3, 0x32b020,3, 0x32b030,3, 0x32b040,3, 0x32b050,3, 0x32b060,3, 0x32b070,3, 0x32b080,3, 0x32b090,3, 0x32b0a0,3, 0x32b0b0,3, 0x32b0c0,3, 0x32b0d0,3, 0x32b0e0,3, 0x32b0f0,3, 0x32b100,2, 0x32b200,3, 0x32b210,3, 0x32b220,3, 0x32b230,3, 0x32b240,3, 0x32b250,3, 0x32b260,3, 0x32b270,3, 0x32b280,3, 0x32b290,3, 0x32b2a0,3, 0x32b2b0,3, 0x32b2c0,3, 0x32b2d0,3, 0x32b2e0,3, 0x32b2f0,3, 0x32b300,2, 0x32b400,3, 0x32b410,3, 0x32b420,3, 0x32b430,3, 0x32b440,3, 0x32b450,3, 0x32b460,3, 0x32b470,3, 0x32b480,3, 0x32b490,3, 0x32b4a0,3, 0x32b4b0,3, 0x32b4c0,3, 0x32b4d0,3, 0x32b4e0,3, 0x32b4f0,3, 0x32b500,2, 0x32b680,11, 0x32b6b0,8, 0x32b700,11, 0x32b730,8, 0x32b780,1, 0x340000,167, 0x3402a0,7, 0x3402c0,7, 0x3402e0,118, 0x3404c0,6, 0x3404e0,6, 0x340500,6, 0x340520,6, 0x340540,6, 0x340560,6, 0x340580,6, 0x3405a0,6, 0x3405c0,6, 0x3405e0,6, 0x340600,6, 0x340620,6, 0x340640,6, 0x340660,6, 0x340680,6, 0x3406a0,5, 0x3406c0,5, 0x3406e0,5, 0x340700,5, 0x340720,5, 0x340740,5, 0x340760,5, 0x340780,5, 0x3407a0,5, 0x3407c0,5, 0x3407e0,5, 0x340800,5, 0x340820,5, 0x340840,5, 0x340860,5, 0x340880,5, 0x3408a0,16, 0x340900,13, 0x340940,13, 0x340980,13, 0x3409c0,13, 0x340a00,13, 0x340a40,13, 0x340a80,13, 0x340ac0,13, 0x340b00,13, 0x340b40,13, 0x340b80,13, 0x340bc0,13, 0x340c00,13, 0x340c40,13, 0x340c80,13, 0x340cc0,13, 0x340d00,5, 0x340d20,5, 0x340d40,5, 0x340d60,5, 0x340d80,5, 0x340da0,5, 0x340dc0,5, 0x340de0,5, 0x340e00,5, 0x340e20,5, 0x340e40,5, 0x340e60,5, 0x340e80,5, 0x340ea0,5, 0x340ec0,5, 0x340ee0,5, 0x340f00,17, 0x341000,112, 0x341200,51, 0x341400,5, 0x341800,3, 0x341810,3, 0x341820,3, 0x341830,3, 0x341840,3, 0x341850,3, 0x341860,3, 0x341870,3, 0x341880,3, 0x341890,3, 0x3418a0,3, 0x3418b0,3, 0x3418c0,3, 0x3418d0,3, 0x3418e0,3, 0x3418f0,3, 0x341900,3, 0x341910,3, 0x341920,3, 0x341930,3, 0x341940,3, 0x341950,3, 0x341960,3, 0x341970,3, 0x341980,3, 0x341990,3, 0x3419a0,3, 0x3419b0,3, 0x3419c0,3, 0x3419d0,3, 0x3419e0,3, 0x3419f0,3, 0x341a00,2, 0x341a0c,12, 0x341a40,20, 0x341c00,1, 0x341c80,20, 0x341d00,20, 0x341d80,20, 0x341e00,20, 0x341e80,20, 0x341f00,20, 0x341f80,20, 0x342000,20, 0x342080,20, 0x342100,20, 0x342180,20, 0x342200,20, 0x342280,20, 0x342300,20, 0x342380,20, 0x342400,20, 0x342480,5, 0x344000,27, 0x344080,27, 0x344100,27, 0x344180,27, 0x344200,27, 0x344280,27, 0x344300,27, 0x344380,27, 0x344400,27, 0x344480,27, 0x344500,27, 0x344580,27, 0x344600,27, 0x344680,27, 0x344700,27, 0x344780,27, 0x344800,27, 0x344880,27, 0x344900,14, 0x344940,3, 0x344950,4, 0x350000,72, 0x350200,72, 0x350400,72, 0x350600,72, 0x350800,72, 0x350a00,72, 0x350c00,72, 0x350e00,72, 0x351000,72, 0x351200,72, 0x351400,72, 0x351600,72, 0x351800,72, 0x351a00,72, 0x351c00,72, 0x351e00,72, 0x352000,46, 0x352100,2, 0x352110,21, 0x352180,23, 0x3521e0,3, 0x352200,46, 0x352300,2, 0x352310,21, 0x352380,23, 0x3523e0,3, 0x352400,46, 0x352500,2, 0x352510,21, 0x352580,23, 0x3525e0,3, 0x352600,46, 0x352700,2, 0x352710,21, 0x352780,23, 0x3527e0,3, 0x352800,46, 0x352900,2, 0x352910,21, 0x352980,23, 0x3529e0,3, 0x352a00,46, 0x352b00,2, 0x352b10,21, 0x352b80,23, 0x352be0,3, 0x352c00,46, 0x352d00,2, 0x352d10,21, 0x352d80,23, 0x352de0,3, 0x352e00,46, 0x352f00,2, 0x352f10,21, 0x352f80,23, 0x352fe0,3, 0x353000,46, 0x353100,2, 0x353110,21, 0x353180,23, 0x3531e0,3, 0x353200,46, 0x353300,2, 0x353310,21, 0x353380,23, 0x3533e0,3, 0x353400,46, 0x353500,2, 0x353510,21, 0x353580,23, 0x3535e0,3, 0x353600,46, 0x353700,2, 0x353710,21, 0x353780,23, 0x3537e0,3, 0x353800,46, 0x353900,2, 0x353910,21, 0x353980,23, 0x3539e0,3, 0x353a00,46, 0x353b00,2, 0x353b10,21, 0x353b80,23, 0x353be0,3, 0x353c00,46, 0x353d00,2, 0x353d10,21, 0x353d80,23, 0x353de0,3, 0x353e00,46, 0x353f00,2, 0x353f10,21, 0x353f80,23, 0x353fe0,3, 0x354000,21, 0x354060,29, 0x3540e0,29, 0x354160,29, 0x3541e0,29, 0x354260,29, 0x3542e0,29, 0x354360,29, 0x3543e0,29, 0x354460,29, 0x3544e0,29, 0x354560,29, 0x3545e0,29, 0x354660,29, 0x3546e0,29, 0x354760,29, 0x3547e0,38, 0x354880,30, 0x354900,30, 0x354980,30, 0x354a00,30, 0x354a80,30, 0x354b00,30, 0x354b80,30, 0x354c00,30, 0x354c80,30, 0x354d00,30, 0x354d80,30, 0x354e00,30, 0x354e80,30, 0x354f00,30, 0x354f80,30, 0x355000,58, 0x3550ec,1, 0x3550f4,2, 0x355100,52, 0x355200,44, 0x355300,128, 0x355800,5, 0x355820,5, 0x355840,5, 0x355860,5, 0x355880,5, 0x3558a0,5, 0x3558c0,5, 0x3558e0,5, 0x355900,5, 0x355920,5, 0x355940,5, 0x355960,5, 0x355980,5, 0x3559a0,5, 0x3559c0,5, 0x3559e0,5, 0x355a00,33, 0x355c00,32, 0x355c84,1, 0x355c8c,3, 0x355ca0,18, 0x355cf0,3, 0x355d00,3, 0x355d10,3, 0x355d20,3, 0x355d30,3, 0x355d40,3, 0x355d50,3, 0x355d60,3, 0x355d70,3, 0x355d80,3, 0x355d90,3, 0x355da0,3, 0x355db0,3, 0x355dc0,3, 0x355dd0,3, 0x355de0,3, 0x355df0,55, 0x355ed0,3, 0x355ee0,3, 0x355ef0,3, 0x355f00,3, 0x355f10,3, 0x355f20,3, 0x355f30,3, 0x355f40,3, 0x355f50,3, 0x355f60,3, 0x355f70,3, 0x355f80,3, 0x355f90,3, 0x355fa0,3, 0x355fb0,3, 0x356000,104, 0x356200,26, 0x356280,26, 0x356300,26, 0x356380,26, 0x356400,26, 0x356480,26, 0x356500,26, 0x356580,26, 0x356600,26, 0x356680,26, 0x356700,26, 0x356780,26, 0x356800,26, 0x356880,26, 0x356900,26, 0x356980,26, 0x356a00,8, 0x356a80,8, 0x356aa4,8, 0x356b00,8, 0x356b24,8, 0x356b80,8, 0x356ba4,8, 0x356c00,8, 0x356c24,8, 0x356c80,8, 0x356ca4,8, 0x356d00,8, 0x356d24,8, 0x356d80,8, 0x356da4,8, 0x356e00,8, 0x356e24,8, 0x356e80,8, 0x356ea4,8, 0x356f00,8, 0x356f24,8, 0x356f80,8, 0x356fa4,8, 0x357000,8, 0x357024,8, 0x357080,8, 0x3570a4,8, 0x357100,8, 0x357124,8, 0x357180,8, 0x3571a4,8, 0x357200,8, 0x357224,8, 0x357280,4, 0x357294,44, 0x357400,5, 0x357420,5, 0x357440,5, 0x357460,5, 0x357480,5, 0x3574a0,5, 0x3574c0,5, 0x3574e0,5, 0x357500,5, 0x357520,5, 0x357540,5, 0x357560,5, 0x357580,5, 0x3575a0,5, 0x3575c0,5, 0x3575e0,5, 0x357600,33, 0x357800,140, 0x358000,20, 0x358080,16, 0x358100,28, 0x358180,28, 0x358200,8, 0x358280,20, 0x358300,20, 0x358380,1, 0x358400,20, 0x358480,16, 0x358500,28, 0x358580,28, 0x358600,8, 0x358680,20, 0x358700,20, 0x358780,1, 0x358800,20, 0x358880,16, 0x358900,28, 0x358980,28, 0x358a00,8, 0x358a80,20, 0x358b00,20, 0x358b80,1, 0x358c00,20, 0x358c80,16, 0x358d00,28, 0x358d80,28, 0x358e00,8, 0x358e80,20, 0x358f00,20, 0x358f80,1, 0x359000,20, 0x359080,16, 0x359100,28, 0x359180,28, 0x359200,8, 0x359280,20, 0x359300,20, 0x359380,1, 0x359400,20, 0x359480,16, 0x359500,28, 0x359580,28, 0x359600,8, 0x359680,20, 0x359700,20, 0x359780,1, 0x359800,20, 0x359880,16, 0x359900,28, 0x359980,28, 0x359a00,8, 0x359a80,20, 0x359b00,20, 0x359b80,1, 0x359c00,20, 0x359c80,16, 0x359d00,28, 0x359d80,28, 0x359e00,8, 0x359e80,20, 0x359f00,20, 0x359f80,1, 0x35a000,20, 0x35a080,16, 0x35a100,28, 0x35a180,28, 0x35a200,8, 0x35a280,20, 0x35a300,20, 0x35a380,1, 0x35a400,20, 0x35a480,16, 0x35a500,28, 0x35a580,28, 0x35a600,8, 0x35a680,20, 0x35a700,20, 0x35a780,1, 0x35a800,20, 0x35a880,16, 0x35a900,28, 0x35a980,28, 0x35aa00,8, 0x35aa80,20, 0x35ab00,20, 0x35ab80,1, 0x35ac00,20, 0x35ac80,16, 0x35ad00,28, 0x35ad80,28, 0x35ae00,8, 0x35ae80,20, 0x35af00,20, 0x35af80,1, 0x35b000,20, 0x35b080,16, 0x35b100,28, 0x35b180,28, 0x35b200,8, 0x35b280,20, 0x35b300,20, 0x35b380,1, 0x35b400,20, 0x35b480,16, 0x35b500,28, 0x35b580,28, 0x35b600,8, 0x35b680,20, 0x35b700,20, 0x35b780,1, 0x35b800,20, 0x35b880,16, 0x35b900,28, 0x35b980,28, 0x35ba00,8, 0x35ba80,20, 0x35bb00,20, 0x35bb80,1, 0x35bc00,20, 0x35bc80,16, 0x35bd00,28, 0x35bd80,28, 0x35be00,8, 0x35be80,20, 0x35bf00,20, 0x35bf80,1, 0x35c000,128, 0x35c204,9, 0x35c400,80, 0x35c544,44, 0x35c600,12, 0x35c644,1, 0x35c654,8, 0x35c680,7, 0x35c6a0,2, 0x35c6ac,2, 0x35c6c0,28, 0x35c770,1, 0x35c800,11, 0x35c840,11, 0x35c880,11, 0x35c8c0,11, 0x35c900,11, 0x35c940,11, 0x35c980,11, 0x35c9c0,11, 0x35ca00,11, 0x35ca40,11, 0x35ca80,11, 0x35cac0,11, 0x35cb00,11, 0x35cb40,11, 0x35cb80,11, 0x35cbc0,11, 0x35d000,30, 0x35d080,3, 0x35d090,18, 0x35d100,30, 0x35d180,3, 0x35d190,18, 0x35d200,30, 0x35d280,3, 0x35d290,18, 0x35d300,30, 0x35d380,3, 0x35d390,18, 0x35d400,30, 0x35d480,3, 0x35d490,18, 0x35d500,30, 0x35d580,3, 0x35d590,18, 0x35d600,30, 0x35d680,3, 0x35d690,18, 0x35d700,30, 0x35d780,3, 0x35d790,18, 0x35d800,30, 0x35d880,3, 0x35d890,18, 0x35d900,30, 0x35d980,3, 0x35d990,18, 0x35da00,30, 0x35da80,3, 0x35da90,18, 0x35db00,30, 0x35db80,3, 0x35db90,18, 0x35dc00,30, 0x35dc80,3, 0x35dc90,18, 0x35dd00,30, 0x35dd80,3, 0x35dd90,18, 0x35de00,30, 0x35de80,3, 0x35de90,18, 0x35df00,30, 0x35df80,3, 0x35df90,18, 0x35e004,1, 0x35e010,4, 0x35e040,28, 0x35e100,11, 0x35e140,11, 0x35e180,11, 0x35e1c0,11, 0x35e200,11, 0x35e240,11, 0x35e280,11, 0x35e2c0,11, 0x35e300,11, 0x35e340,11, 0x35e380,11, 0x35e3c0,11, 0x35e400,11, 0x35e440,11, 0x35e480,11, 0x35e4c0,11, 0x35e500,44, 0x35e5c0,3, 0x35e800,18, 0x35e880,18, 0x35e900,18, 0x35e980,18, 0x35ea00,18, 0x35ea80,18, 0x35eb00,18, 0x35eb80,18, 0x35ec00,18, 0x35ec80,18, 0x35ed00,18, 0x35ed80,18, 0x35ee00,18, 0x35ee80,18, 0x35ef00,18, 0x35ef80,18, 0x35f000,18, 0x35f080,18, 0x35f100,18, 0x35f180,18, 0x35f200,18, 0x35f280,18, 0x35f300,18, 0x35f380,18, 0x35f400,18, 0x35f480,18, 0x35f500,18, 0x35f580,18, 0x35f600,18, 0x35f680,18, 0x35f700,18, 0x35f780,18, 0x35f800,34, 0x35f8a0,8, 0x360000,1, 0x361000,977, 0x362000,161, 0x363000,977, 0x364000,977, 0x365000,977, 0x366000,64, 0x366104,127, 0x366304,127, 0x366504,195, 0x366814,31, 0x366894,428, 0x367000,977, 0x368000,977, 0x369000,977, 0x36a000,977, 0x36b000,977, 0x36c000,977, 0x36d000,977, 0x36e000,977, 0x36f000,977, 0x370000,977, 0x371000,977, 0x372000,977, 0x373000,161, 0x374000,161, 0x375000,161, 0x376000,161, 0x378000,13, 0x378040,14, 0x378080,20, 0x378104,1, 0x37810c,3, 0x378200,13, 0x378240,14, 0x378280,20, 0x378304,1, 0x37830c,3, 0x378400,13, 0x378440,14, 0x378480,20, 0x378504,1, 0x37850c,3, 0x378600,13, 0x378640,14, 0x378680,20, 0x378704,1, 0x37870c,3, 0x378800,13, 0x378840,14, 0x378880,20, 0x378904,1, 0x37890c,3, 0x378a00,13, 0x378a40,14, 0x378a80,20, 0x378b04,1, 0x378b0c,3, 0x378c00,13, 0x378c40,14, 0x378c80,20, 0x378d04,1, 0x378d0c,3, 0x378e00,13, 0x378e40,14, 0x378e80,20, 0x378f04,1, 0x378f0c,3, 0x379000,13, 0x379040,14, 0x379080,20, 0x379104,1, 0x37910c,3, 0x379200,13, 0x379240,14, 0x379280,20, 0x379304,1, 0x37930c,3, 0x379400,13, 0x379440,14, 0x379480,20, 0x379504,1, 0x37950c,3, 0x379600,13, 0x379640,14, 0x379680,20, 0x379704,1, 0x37970c,3, 0x379800,13, 0x379840,14, 0x379880,20, 0x379904,1, 0x37990c,3, 0x379a00,13, 0x379a40,14, 0x379a80,20, 0x379b04,1, 0x379b0c,3, 0x379c00,13, 0x379c40,14, 0x379c80,20, 0x379d04,1, 0x379d0c,3, 0x379e00,13, 0x379e40,14, 0x379e80,20, 0x379f04,1, 0x379f0c,3, 0x37a000,13, 0x37a040,14, 0x37a080,20, 0x37a104,1, 0x37a10c,3, 0x37a200,17, 0x37a250,2, 0x37a260,5, 0x37a280,2, 0x37c000,1, 0x37c014,1, 0x37c01c,10, 0x37c060,9, 0x37c094,1, 0x37c09c,10, 0x37c0e0,9, 0x37c114,1, 0x37c11c,10, 0x37c160,9, 0x37c194,1, 0x37c19c,10, 0x37c1e0,9, 0x37c214,1, 0x37c21c,10, 0x37c260,15, 0x37c400,30, 0x37c480,9, 0x37c4c0,12, 0x37c500,1, 0x37c520,5, 0x37c540,1, 0x380000,19, 0x380050,8, 0x380080,12, 0x3800c0,9, 0x380100,19, 0x380150,8, 0x380180,12, 0x3801c0,9, 0x380200,19, 0x380250,8, 0x380280,12, 0x3802c0,9, 0x380300,19, 0x380350,8, 0x380380,12, 0x3803c0,9, 0x380400,19, 0x380450,8, 0x380480,12, 0x3804c0,9, 0x380500,19, 0x380550,8, 0x380580,12, 0x3805c0,9, 0x380600,19, 0x380650,8, 0x380680,12, 0x3806c0,9, 0x380700,19, 0x380750,8, 0x380780,12, 0x3807c0,9, 0x380800,19, 0x380850,8, 0x380880,12, 0x3808c0,9, 0x380900,19, 0x380950,8, 0x380980,12, 0x3809c0,9, 0x380a00,19, 0x380a50,8, 0x380a80,12, 0x380ac0,9, 0x380b00,19, 0x380b50,8, 0x380b80,12, 0x380bc0,9, 0x380c00,19, 0x380c50,8, 0x380c80,12, 0x380cc0,9, 0x380d00,19, 0x380d50,8, 0x380d80,12, 0x380dc0,9, 0x380e00,19, 0x380e50,8, 0x380e80,12, 0x380ec0,9, 0x380f00,19, 0x380f50,8, 0x380f80,12, 0x380fc0,9, 0x381000,19, 0x381050,8, 0x381080,12, 0x3810c0,9, 0x381100,19, 0x381150,8, 0x381180,12, 0x3811c0,9, 0x381200,19, 0x381250,8, 0x381280,12, 0x3812c0,9, 0x381300,19, 0x381350,8, 0x381380,12, 0x3813c0,9, 0x381400,19, 0x381450,8, 0x381480,12, 0x3814c0,9, 0x381500,19, 0x381550,8, 0x381580,12, 0x3815c0,9, 0x381600,19, 0x381650,8, 0x381680,12, 0x3816c0,9, 0x381700,19, 0x381750,8, 0x381780,12, 0x3817c0,9, 0x381800,19, 0x381850,8, 0x381880,12, 0x3818c0,9, 0x381900,19, 0x381950,8, 0x381980,12, 0x3819c0,9, 0x381a00,19, 0x381a50,8, 0x381a80,12, 0x381ac0,9, 0x381b00,19, 0x381b50,8, 0x381b80,12, 0x381bc0,9, 0x381c00,19, 0x381c50,8, 0x381c80,12, 0x381cc0,9, 0x381d00,19, 0x381d50,8, 0x381d80,12, 0x381dc0,9, 0x381e00,19, 0x381e50,8, 0x381e80,12, 0x381ec0,9, 0x381f00,19, 0x381f50,8, 0x381f80,12, 0x381fc0,9, 0x382000,19, 0x382050,8, 0x382080,12, 0x3820c0,9, 0x382100,19, 0x382150,8, 0x382180,12, 0x3821c0,9, 0x382200,19, 0x382250,8, 0x382280,12, 0x3822c0,9, 0x382300,19, 0x382350,8, 0x382380,12, 0x3823c0,9, 0x382400,19, 0x382450,8, 0x382480,12, 0x3824c0,9, 0x382500,19, 0x382550,8, 0x382580,12, 0x3825c0,9, 0x382600,19, 0x382650,8, 0x382680,12, 0x3826c0,9, 0x382700,19, 0x382750,8, 0x382780,12, 0x3827c0,9, 0x382800,24, 0x382880,12, 0x3828c0,17, 0x382a00,24, 0x382a80,12, 0x382ac0,17, 0x382c00,24, 0x382c80,12, 0x382cc0,17, 0x382e00,24, 0x382e80,12, 0x382ec0,17, 0x383000,24, 0x383080,12, 0x3830c0,17, 0x383200,24, 0x383280,12, 0x3832c0,17, 0x383400,24, 0x383480,12, 0x3834c0,17, 0x383600,24, 0x383680,12, 0x3836c0,17, 0x383800,24, 0x383880,12, 0x3838c0,17, 0x383c00,13, 0x383c40,5, 0x383c80,5, 0x383d00,6, 0x383d20,6, 0x383d40,6, 0x383d60,6, 0x383d80,6, 0x383da0,6, 0x383dc0,6, 0x383de0,6, 0x383e00,6, 0x383e20,6, 0x383e40,5, 0x383e60,9, 0x384000,19, 0x384050,6, 0x384080,7, 0x3840a0,2, 0x3840c0,12, 0x384100,9, 0x384200,27, 0x384280,27, 0x384300,15, 0x384340,5, 0x384360,12, 0x384400,20, 0x388000,3, 0x388010,3, 0x388020,3, 0x388030,3, 0x388040,3, 0x388050,3, 0x388060,3, 0x388070,3, 0x388080,28, 0x388100,28, 0x388180,28, 0x388200,28, 0x388280,28, 0x388300,28, 0x388380,28, 0x388400,28, 0x388480,4, 0x3884c0,3, 0x3884e0,18, 0x388540,2, 0x388550,3, 0x388580,2, 0x3885a0,7, 0x3885c0,1, 0x388600,2, 0x388620,7, 0x388640,1, 0x388680,2, 0x3886a0,7, 0x3886c0,1, 0x388700,2, 0x388720,7, 0x388740,1, 0x388780,2, 0x3887a0,7, 0x3887c0,1, 0x388800,2, 0x388820,7, 0x388840,1, 0x388880,2, 0x3888a0,7, 0x3888c0,1, 0x388900,2, 0x388920,7, 0x388940,1, 0x388980,9, 0x389000,5, 0x389020,5, 0x389040,5, 0x389060,5, 0x389080,5, 0x3890a0,5, 0x3890c0,5, 0x3890e0,5, 0x389100,44, 0x389200,44, 0x389300,44, 0x389400,44, 0x389500,44, 0x389600,44, 0x389700,44, 0x389800,44, 0x389900,5, 0x389920,10, 0x389950,3, 0x389960,5, 0x389980,5, 0x3899a0,5, 0x3899b8,5, 0x3899d0,20, 0x38a000,3, 0x38a010,3, 0x38a020,3, 0x38a030,3, 0x38a040,3, 0x38a050,3, 0x38a060,3, 0x38a070,3, 0x38a080,28, 0x38a100,28, 0x38a180,28, 0x38a200,28, 0x38a280,28, 0x38a300,28, 0x38a380,28, 0x38a400,28, 0x38a480,9, 0x38a4b0,3, 0x38a4c0,9, 0x38a4f0,3, 0x38a500,3, 0x38a510,1, 0x38a520,17, 0x38a800,22, 0x390000,1, 0x390200,2, 0x390240,8, 0x390280,9, 0x3902c0,9, 0x390300,9, 0x390340,9, 0x390380,24, 0x390400,2, 0x390440,8, 0x390480,9, 0x3904c0,9, 0x390500,9, 0x390540,9, 0x390580,24, 0x390600,9, 0x390640,9, 0x390680,9, 0x3906c0,9, 0x390700,9, 0x390740,9, 0x390780,9, 0x3907c0,9, 0x390800,9, 0x390840,9, 0x390880,9, 0x3908c0,9, 0x390900,9, 0x390940,9, 0x390980,9, 0x3909c0,9, 0x390a00,9, 0x390a40,9, 0x390a80,9, 0x390ac0,9, 0x390b00,9, 0x390b40,9, 0x390b80,9, 0x390bc0,9, 0x390c00,3, 0x390c20,25, 0x390ca0,5, 0x390cc0,1, 0x390cc8,5, 0x390ce0,5, 0x390d00,1, 0x390d08,5, 0x390d20,16, 0x391000,74, 0x391200,74, 0x391404,1, 0x391418,10, 0x391444,3, 0x391464,7, 0x391484,7, 0x3914a4,1, 0x3914ac,1, 0x3914b4,1, 0x3914bc,3, 0x391500,8, 0x391600,17, 0x391660,1, 0x391680,66, 0x391790,3, 0x3917a4,1, 0x3917ac,4, 0x3917c0,14, 0x391800,17, 0x391860,1, 0x391880,66, 0x391990,3, 0x391a00,1, 0x391a40,10, 0x391a80,2, 0x391aa0,6, 0x391ac0,6, 0x391ae0,17, 0x391b28,19, 0x391b78,4, 0x391b90,3, 0x391ba0,2, 0x391bb0,3, 0x391c00,21, 0x391c80,1, 0x391c88,7, 0x391cc0,1, 0x391ce0,26, 0x391d80,1, 0x391e00,5, 0x391e20,5, 0x391e40,5, 0x391e60,5, 0x391e80,9, 0x392000,108, 0x392200,8, 0x3a0000,31, 0x3a0080,31, 0x3a0100,31, 0x3a0180,31, 0x3a0200,31, 0x3a0280,31, 0x3a0300,31, 0x3a0380,31, 0x3a0400,31, 0x3a0480,31, 0x3a0500,31, 0x3a0580,31, 0x3a0600,31, 0x3a0680,31, 0x3a0700,31, 0x3a0780,31, 0x3a0800,9, 0x3a0880,1, 0x3a0900,21, 0x3a0980,21, 0x3a0a00,21, 0x3a0a80,1, 0x3a0c04,1, 0x3a0c10,6, 0x3a0c30,64, 0x3a0e00,12, 0x3a0e40,10, 0x3a0e80,13, 0x3a0ec0,13, 0x3a0f00,9, 0x3a0f40,5, 0x3a0f60,5, 0x3a0f80,6, 0x3a0fa0,1, 0x3a0fa8,100, 0x3a1404,1, 0x3a1428,22, 0x3a1504,1, 0x3a1544,47, 0x3a1604,1, 0x3a161c,9, 0x3a1644,1, 0x3a164c,1, 0x3a1654,1, 0x3a165c,1, 0x3a1664,1, 0x3a166c,3, 0x3a2000,96, 0x3a2200,96, 0x3a2400,6, 0x3a2424,1, 0x3a242c,14, 0x3a2800,40, 0x3a28c0,3, 0x3a28d0,3, 0x3a28e0,3, 0x3a28f0,3, 0x3a2904,1, 0x3a291c,11, 0x3a2a04,1, 0x3a2a0c,7, 0x3a2a40,1, 0x3a2a54,4, 0x3a3000,3, 0x3a4000,3, 0x3a4010,3, 0x3a4020,3, 0x3a4030,3, 0x3a4040,3, 0x3a4050,3, 0x3a4060,3, 0x3a4070,3, 0x3a4080,3, 0x3a4090,3, 0x3a40a0,3, 0x3a40b0,3, 0x3a40c0,3, 0x3a40d0,3, 0x3a40e0,3, 0x3a40f0,3, 0x3a4100,3, 0x3a4110,3, 0x3a4120,3, 0x3a4130,3, 0x3a4140,3, 0x3a4150,3, 0x3a4160,3, 0x3a4170,3, 0x3a4180,3, 0x3a4190,3, 0x3a41a0,3, 0x3a41b0,3, 0x3a41c0,3, 0x3a41d0,3, 0x3a41e0,3, 0x3a41f0,3, 0x3a4200,3, 0x3a4210,3, 0x3a4220,3, 0x3a4230,3, 0x3a4240,3, 0x3a4250,3, 0x3a4260,3, 0x3a4270,3, 0x3a4280,3, 0x3a4290,3, 0x3a42a0,3, 0x3a42b0,3, 0x3a42c0,3, 0x3a42d0,3, 0x3a42e0,3, 0x3a42f0,3, 0x3a4300,3, 0x3a4310,3, 0x3a4320,3, 0x3a4330,3, 0x3a4340,3, 0x3a4350,3, 0x3a4360,3, 0x3a4370,3, 0x3a4380,3, 0x3a4390,3, 0x3a43a0,3, 0x3a43b0,3, 0x3a43c0,3, 0x3a43d0,3, 0x3a43e0,3, 0x3a43f0,3, 0x3a4400,3, 0x3a4410,3, 0x3a4420,3, 0x3a4430,3, 0x3a4440,3, 0x3a4450,3, 0x3a4460,3, 0x3a4470,3, 0x3a4480,3, 0x3a4490,3, 0x3a44a0,3, 0x3a44b0,3, 0x3a44c0,3, 0x3a44d0,3, 0x3a44e0,3, 0x3a44f0,3, 0x3a4500,3, 0x3a4510,3, 0x3a4520,3, 0x3a4530,3, 0x3a4540,3, 0x3a4550,3, 0x3a4560,3, 0x3a4570,3, 0x3a4580,3, 0x3a4590,3, 0x3a45a0,3, 0x3a45b0,3, 0x3a45c0,3, 0x3a45d0,3, 0x3a45e0,3, 0x3a45f0,3, 0x3a4600,32, 0x3a4800,128, 0x3a4a04,1, 0x3a4a20,8, 0x3a4a44,1, 0x3a4a60,8, 0x3a4a84,1, 0x3a4a94,3, 0x3a4aa4,1, 0x3a4ab4,6, 0x3a4b00,41, 0x3a4bc4,1, 0x3a4bd0,4, 0x3a4be4,6, 0x3a4c00,3, 0x3a4c10,14, 0x3a4c60,9, 0x3a5000,5, 0x3a5020,5, 0x3a5040,5, 0x3a5060,5, 0x3a5080,5, 0x3a50a0,5, 0x3a50c0,5, 0x3a50e0,5, 0x3a5100,5, 0x3a5120,5, 0x3a5140,5, 0x3a5160,5, 0x3a5180,5, 0x3a51a0,5, 0x3a51c0,5, 0x3a51e0,5, 0x3a5200,5, 0x3a5220,5, 0x3a5240,5, 0x3a5260,5, 0x3a5280,5, 0x3a52a0,5, 0x3a52c0,5, 0x3a52e0,5, 0x3a5300,5, 0x3a5320,5, 0x3a5340,5, 0x3a5360,5, 0x3a5380,5, 0x3a53a0,5, 0x3a53c0,5, 0x3a53e0,5, 0x3a5400,5, 0x3a5420,5, 0x3a5440,5, 0x3a5460,5, 0x3a5480,5, 0x3a54a0,5, 0x3a54c0,5, 0x3a54e0,5, 0x3a5500,5, 0x3a5520,5, 0x3a5540,5, 0x3a5560,5, 0x3a5580,5, 0x3a55a0,5, 0x3a55c0,5, 0x3a55e0,5, 0x3a5600,5, 0x3a5620,5, 0x3a5640,5, 0x3a5660,5, 0x3a5680,5, 0x3a56a0,5, 0x3a56c0,5, 0x3a56e0,5, 0x3a5700,5, 0x3a5720,5, 0x3a5740,5, 0x3a5760,5, 0x3a5780,5, 0x3a57a0,5, 0x3a57c0,5, 0x3a57e0,5, 0x3a5800,27, 0x3a5874,10, 0x3a5904,1, 0x3a590c,5, 0x3a5924,1, 0x3a592c,7, 0x3a5980,8, 0x3a6000,5, 0x3a6020,5, 0x3a6040,5, 0x3a6060,5, 0x3a6080,5, 0x3a60a0,5, 0x3a60c0,5, 0x3a60e0,5, 0x3a6100,5, 0x3a6120,5, 0x3a6140,5, 0x3a6160,5, 0x3a6180,5, 0x3a61a0,5, 0x3a61c0,5, 0x3a61e0,5, 0x3a6200,5, 0x3a6220,5, 0x3a6240,5, 0x3a6260,5, 0x3a6280,5, 0x3a62a0,5, 0x3a62c0,5, 0x3a62e0,5, 0x3a6300,5, 0x3a6320,5, 0x3a6340,5, 0x3a6360,5, 0x3a6380,5, 0x3a63a0,5, 0x3a63c0,5, 0x3a63e0,5, 0x3a6400,5, 0x3a6420,5, 0x3a6440,5, 0x3a6460,5, 0x3a6480,5, 0x3a64a0,5, 0x3a64c0,5, 0x3a64e0,5, 0x3a6500,5, 0x3a6520,5, 0x3a6540,5, 0x3a6560,5, 0x3a6580,5, 0x3a65a0,5, 0x3a65c0,5, 0x3a65e0,5, 0x3a6600,5, 0x3a6620,5, 0x3a6640,5, 0x3a6660,5, 0x3a6680,5, 0x3a66a0,5, 0x3a66c0,5, 0x3a66e0,5, 0x3a6700,5, 0x3a6720,5, 0x3a6740,5, 0x3a6760,5, 0x3a6780,5, 0x3a67a0,5, 0x3a67c0,5, 0x3a67e0,5, 0x3a6800,27, 0x3a6874,10, 0x3a6904,1, 0x3a690c,5, 0x3a6924,1, 0x3a692c,7, 0x3a6980,8, 0x3a7000,20, 0x3a7080,20, 0x3a7100,20, 0x3a7180,20, 0x3a7200,20, 0x3a7280,20, 0x3a7300,20, 0x3a7380,20, 0x3a7400,20, 0x3a7480,20, 0x3a7500,20, 0x3a7580,20, 0x3a7600,20, 0x3a7680,20, 0x3a7700,20, 0x3a7780,20, 0x3a7800,11, 0x3a7830,1, 0x3a7840,9, 0x3a7880,11, 0x3a78b0,1, 0x3a78c0,9, 0x3a7900,11, 0x3a7930,1, 0x3a7940,9, 0x3a7980,11, 0x3a79b0,1, 0x3a79c0,9, 0x3a7a00,11, 0x3a7a30,1, 0x3a7a40,9, 0x3a7a80,11, 0x3a7ab0,1, 0x3a7ac0,9, 0x3a7b00,11, 0x3a7b30,1, 0x3a7b40,9, 0x3a7b80,11, 0x3a7bb0,1, 0x3a7bc0,9, 0x3a7c00,8, 0x3a8000,1, 0x3a8100,57, 0x3a8200,57, 0x3a8300,57, 0x3a8400,57, 0x3a8500,57, 0x3a8600,57, 0x3a8700,57, 0x3a8800,57, 0x3a8900,57, 0x3a8a00,57, 0x3a8b00,57, 0x3a8c00,57, 0x3a8d00,57, 0x3a8e00,57, 0x3a8f00,57, 0x3a9000,57, 0x3a9100,28, 0x3a9180,17, 0x3a9200,11, 0x3a9240,9, 0x3a9280,33, 0x3a9308,4, 0x3a9320,1, 0x3a9340,1, 0x3a9360,7, 0x3a9380,7, 0x3a93a0,1, 0x3a93c0,6, 0x3a93e0,6, 0x3a9400,6, 0x3a9420,1, 0x3a9440,6, 0x3a9460,6, 0x3a9480,6, 0x3a94a0,1, 0x3a94c0,6, 0x3a94e0,6, 0x3a9500,6, 0x3a9520,3, 0x3a9530,7, 0x3a9550,7, 0x3a9570,7, 0x3a9590,7, 0x3a95b0,7, 0x3a95d0,7, 0x3a95f0,7, 0x3a9610,7, 0x3a9630,7, 0x3a9650,7, 0x3a9670,7, 0x3a9690,7, 0x3a96b0,7, 0x3a96d0,7, 0x3a96f0,7, 0x3a9710,7, 0x3a9730,7, 0x3a9750,7, 0x3a9770,7, 0x3a9790,7, 0x3a97b0,7, 0x3a97d0,7, 0x3a97f0,7, 0x3a9810,15, 0x3a9860,39, 0x3a9920,7, 0x3a9960,2, 0x3a996c,3, 0x3a9980,2, 0x3a998c,3, 0x3a99a0,2, 0x3a99ac,3, 0x3a99c0,2, 0x3a99cc,3, 0x3a99e0,2, 0x3a99ec,3, 0x3a9a00,2, 0x3a9a0c,3, 0x3a9a20,2, 0x3a9a2c,3, 0x3a9a40,2, 0x3a9a4c,3, 0x3a9a60,2, 0x3a9a6c,3, 0x3a9a80,2, 0x3a9a8c,3, 0x3a9aa0,2, 0x3a9aac,3, 0x3a9ac0,2, 0x3a9acc,3, 0x3a9ae0,2, 0x3a9aec,3, 0x3a9b00,2, 0x3a9b0c,3, 0x3a9b20,2, 0x3a9b2c,3, 0x3a9b40,2, 0x3a9b4c,3, 0x3a9c00,27, 0x3a9c80,1, 0x3a9ca0,6, 0x3aa000,27, 0x3aa080,4, 0x3aa0c0,25, 0x3aa140,6, 0x3aa160,2, 0x3aa16c,3, 0x3aa200,8, 0x3aa224,25, 0x3aa400,27, 0x3aa480,1, 0x3aa4a0,6, 0x3aa500,27, 0x3aa580,27, 0x3aa600,27, 0x3aa680,27, 0x3aa700,27, 0x3aa780,27, 0x3aa800,27, 0x3aa880,27, 0x3aa900,27, 0x3aa980,27, 0x3aaa00,27, 0x3aaa80,27, 0x3aab00,27, 0x3aab80,27, 0x3aac00,27, 0x3aac80,27, 0x3aad00,2, 0x3aad10,3, 0x3aad20,1, 0x3aad30,65, 0x3ab000,3, 0x3ab010,3, 0x3ab020,3, 0x3ab030,3, 0x3ab040,3, 0x3ab050,3, 0x3ab060,3, 0x3ab070,3, 0x3ab080,3, 0x3ab090,3, 0x3ab0a0,3, 0x3ab0b0,3, 0x3ab0c0,3, 0x3ab0d0,3, 0x3ab0e0,3, 0x3ab0f0,3, 0x3ab100,2, 0x3ab200,3, 0x3ab210,3, 0x3ab220,3, 0x3ab230,3, 0x3ab240,3, 0x3ab250,3, 0x3ab260,3, 0x3ab270,3, 0x3ab280,3, 0x3ab290,3, 0x3ab2a0,3, 0x3ab2b0,3, 0x3ab2c0,3, 0x3ab2d0,3, 0x3ab2e0,3, 0x3ab2f0,3, 0x3ab300,2, 0x3ab400,3, 0x3ab410,3, 0x3ab420,3, 0x3ab430,3, 0x3ab440,3, 0x3ab450,3, 0x3ab460,3, 0x3ab470,3, 0x3ab480,3, 0x3ab490,3, 0x3ab4a0,3, 0x3ab4b0,3, 0x3ab4c0,3, 0x3ab4d0,3, 0x3ab4e0,3, 0x3ab4f0,3, 0x3ab500,2, 0x3ab680,11, 0x3ab6b0,8, 0x3ab700,11, 0x3ab730,8, 0x3ab780,1, 0x3c0000,167, 0x3c02a0,7, 0x3c02c0,7, 0x3c02e0,118, 0x3c04c0,6, 0x3c04e0,6, 0x3c0500,6, 0x3c0520,6, 0x3c0540,6, 0x3c0560,6, 0x3c0580,6, 0x3c05a0,6, 0x3c05c0,6, 0x3c05e0,6, 0x3c0600,6, 0x3c0620,6, 0x3c0640,6, 0x3c0660,6, 0x3c0680,6, 0x3c06a0,5, 0x3c06c0,5, 0x3c06e0,5, 0x3c0700,5, 0x3c0720,5, 0x3c0740,5, 0x3c0760,5, 0x3c0780,5, 0x3c07a0,5, 0x3c07c0,5, 0x3c07e0,5, 0x3c0800,5, 0x3c0820,5, 0x3c0840,5, 0x3c0860,5, 0x3c0880,5, 0x3c08a0,16, 0x3c0900,13, 0x3c0940,13, 0x3c0980,13, 0x3c09c0,13, 0x3c0a00,13, 0x3c0a40,13, 0x3c0a80,13, 0x3c0ac0,13, 0x3c0b00,13, 0x3c0b40,13, 0x3c0b80,13, 0x3c0bc0,13, 0x3c0c00,13, 0x3c0c40,13, 0x3c0c80,13, 0x3c0cc0,13, 0x3c0d00,5, 0x3c0d20,5, 0x3c0d40,5, 0x3c0d60,5, 0x3c0d80,5, 0x3c0da0,5, 0x3c0dc0,5, 0x3c0de0,5, 0x3c0e00,5, 0x3c0e20,5, 0x3c0e40,5, 0x3c0e60,5, 0x3c0e80,5, 0x3c0ea0,5, 0x3c0ec0,5, 0x3c0ee0,5, 0x3c0f00,17, 0x3c1000,112, 0x3c1200,51, 0x3c1400,5, 0x3c1800,3, 0x3c1810,3, 0x3c1820,3, 0x3c1830,3, 0x3c1840,3, 0x3c1850,3, 0x3c1860,3, 0x3c1870,3, 0x3c1880,3, 0x3c1890,3, 0x3c18a0,3, 0x3c18b0,3, 0x3c18c0,3, 0x3c18d0,3, 0x3c18e0,3, 0x3c18f0,3, 0x3c1900,3, 0x3c1910,3, 0x3c1920,3, 0x3c1930,3, 0x3c1940,3, 0x3c1950,3, 0x3c1960,3, 0x3c1970,3, 0x3c1980,3, 0x3c1990,3, 0x3c19a0,3, 0x3c19b0,3, 0x3c19c0,3, 0x3c19d0,3, 0x3c19e0,3, 0x3c19f0,3, 0x3c1a00,2, 0x3c1a0c,12, 0x3c1a40,20, 0x3c1c00,1, 0x3c1c80,20, 0x3c1d00,20, 0x3c1d80,20, 0x3c1e00,20, 0x3c1e80,20, 0x3c1f00,20, 0x3c1f80,20, 0x3c2000,20, 0x3c2080,20, 0x3c2100,20, 0x3c2180,20, 0x3c2200,20, 0x3c2280,20, 0x3c2300,20, 0x3c2380,20, 0x3c2400,20, 0x3c2480,5, 0x3c4000,27, 0x3c4080,27, 0x3c4100,27, 0x3c4180,27, 0x3c4200,27, 0x3c4280,27, 0x3c4300,27, 0x3c4380,27, 0x3c4400,27, 0x3c4480,27, 0x3c4500,27, 0x3c4580,27, 0x3c4600,27, 0x3c4680,27, 0x3c4700,27, 0x3c4780,27, 0x3c4800,27, 0x3c4880,27, 0x3c4900,14, 0x3c4940,3, 0x3c4950,4, 0x3d0000,72, 0x3d0200,72, 0x3d0400,72, 0x3d0600,72, 0x3d0800,72, 0x3d0a00,72, 0x3d0c00,72, 0x3d0e00,72, 0x3d1000,72, 0x3d1200,72, 0x3d1400,72, 0x3d1600,72, 0x3d1800,72, 0x3d1a00,72, 0x3d1c00,72, 0x3d1e00,72, 0x3d2000,46, 0x3d2100,2, 0x3d2110,21, 0x3d2180,23, 0x3d21e0,3, 0x3d2200,46, 0x3d2300,2, 0x3d2310,21, 0x3d2380,23, 0x3d23e0,3, 0x3d2400,46, 0x3d2500,2, 0x3d2510,21, 0x3d2580,23, 0x3d25e0,3, 0x3d2600,46, 0x3d2700,2, 0x3d2710,21, 0x3d2780,23, 0x3d27e0,3, 0x3d2800,46, 0x3d2900,2, 0x3d2910,21, 0x3d2980,23, 0x3d29e0,3, 0x3d2a00,46, 0x3d2b00,2, 0x3d2b10,21, 0x3d2b80,23, 0x3d2be0,3, 0x3d2c00,46, 0x3d2d00,2, 0x3d2d10,21, 0x3d2d80,23, 0x3d2de0,3, 0x3d2e00,46, 0x3d2f00,2, 0x3d2f10,21, 0x3d2f80,23, 0x3d2fe0,3, 0x3d3000,46, 0x3d3100,2, 0x3d3110,21, 0x3d3180,23, 0x3d31e0,3, 0x3d3200,46, 0x3d3300,2, 0x3d3310,21, 0x3d3380,23, 0x3d33e0,3, 0x3d3400,46, 0x3d3500,2, 0x3d3510,21, 0x3d3580,23, 0x3d35e0,3, 0x3d3600,46, 0x3d3700,2, 0x3d3710,21, 0x3d3780,23, 0x3d37e0,3, 0x3d3800,46, 0x3d3900,2, 0x3d3910,21, 0x3d3980,23, 0x3d39e0,3, 0x3d3a00,46, 0x3d3b00,2, 0x3d3b10,21, 0x3d3b80,23, 0x3d3be0,3, 0x3d3c00,46, 0x3d3d00,2, 0x3d3d10,21, 0x3d3d80,23, 0x3d3de0,3, 0x3d3e00,46, 0x3d3f00,2, 0x3d3f10,21, 0x3d3f80,23, 0x3d3fe0,3, 0x3d4000,21, 0x3d4060,29, 0x3d40e0,29, 0x3d4160,29, 0x3d41e0,29, 0x3d4260,29, 0x3d42e0,29, 0x3d4360,29, 0x3d43e0,29, 0x3d4460,29, 0x3d44e0,29, 0x3d4560,29, 0x3d45e0,29, 0x3d4660,29, 0x3d46e0,29, 0x3d4760,29, 0x3d47e0,38, 0x3d4880,30, 0x3d4900,30, 0x3d4980,30, 0x3d4a00,30, 0x3d4a80,30, 0x3d4b00,30, 0x3d4b80,30, 0x3d4c00,30, 0x3d4c80,30, 0x3d4d00,30, 0x3d4d80,30, 0x3d4e00,30, 0x3d4e80,30, 0x3d4f00,30, 0x3d4f80,30, 0x3d5000,58, 0x3d50ec,1, 0x3d50f4,2, 0x3d5100,52, 0x3d5200,44, 0x3d5300,128, 0x3d5800,5, 0x3d5820,5, 0x3d5840,5, 0x3d5860,5, 0x3d5880,5, 0x3d58a0,5, 0x3d58c0,5, 0x3d58e0,5, 0x3d5900,5, 0x3d5920,5, 0x3d5940,5, 0x3d5960,5, 0x3d5980,5, 0x3d59a0,5, 0x3d59c0,5, 0x3d59e0,5, 0x3d5a00,33, 0x3d5c00,32, 0x3d5c84,1, 0x3d5c8c,3, 0x3d5ca0,18, 0x3d5cf0,3, 0x3d5d00,3, 0x3d5d10,3, 0x3d5d20,3, 0x3d5d30,3, 0x3d5d40,3, 0x3d5d50,3, 0x3d5d60,3, 0x3d5d70,3, 0x3d5d80,3, 0x3d5d90,3, 0x3d5da0,3, 0x3d5db0,3, 0x3d5dc0,3, 0x3d5dd0,3, 0x3d5de0,3, 0x3d5df0,55, 0x3d5ed0,3, 0x3d5ee0,3, 0x3d5ef0,3, 0x3d5f00,3, 0x3d5f10,3, 0x3d5f20,3, 0x3d5f30,3, 0x3d5f40,3, 0x3d5f50,3, 0x3d5f60,3, 0x3d5f70,3, 0x3d5f80,3, 0x3d5f90,3, 0x3d5fa0,3, 0x3d5fb0,3, 0x3d6000,104, 0x3d6200,26, 0x3d6280,26, 0x3d6300,26, 0x3d6380,26, 0x3d6400,26, 0x3d6480,26, 0x3d6500,26, 0x3d6580,26, 0x3d6600,26, 0x3d6680,26, 0x3d6700,26, 0x3d6780,26, 0x3d6800,26, 0x3d6880,26, 0x3d6900,26, 0x3d6980,26, 0x3d6a00,8, 0x3d6a80,8, 0x3d6aa4,8, 0x3d6b00,8, 0x3d6b24,8, 0x3d6b80,8, 0x3d6ba4,8, 0x3d6c00,8, 0x3d6c24,8, 0x3d6c80,8, 0x3d6ca4,8, 0x3d6d00,8, 0x3d6d24,8, 0x3d6d80,8, 0x3d6da4,8, 0x3d6e00,8, 0x3d6e24,8, 0x3d6e80,8, 0x3d6ea4,8, 0x3d6f00,8, 0x3d6f24,8, 0x3d6f80,8, 0x3d6fa4,8, 0x3d7000,8, 0x3d7024,8, 0x3d7080,8, 0x3d70a4,8, 0x3d7100,8, 0x3d7124,8, 0x3d7180,8, 0x3d71a4,8, 0x3d7200,8, 0x3d7224,8, 0x3d7280,4, 0x3d7294,44, 0x3d7400,5, 0x3d7420,5, 0x3d7440,5, 0x3d7460,5, 0x3d7480,5, 0x3d74a0,5, 0x3d74c0,5, 0x3d74e0,5, 0x3d7500,5, 0x3d7520,5, 0x3d7540,5, 0x3d7560,5, 0x3d7580,5, 0x3d75a0,5, 0x3d75c0,5, 0x3d75e0,5, 0x3d7600,33, 0x3d7800,140, 0x3d8000,20, 0x3d8080,16, 0x3d8100,28, 0x3d8180,28, 0x3d8200,8, 0x3d8280,20, 0x3d8300,20, 0x3d8380,1, 0x3d8400,20, 0x3d8480,16, 0x3d8500,28, 0x3d8580,28, 0x3d8600,8, 0x3d8680,20, 0x3d8700,20, 0x3d8780,1, 0x3d8800,20, 0x3d8880,16, 0x3d8900,28, 0x3d8980,28, 0x3d8a00,8, 0x3d8a80,20, 0x3d8b00,20, 0x3d8b80,1, 0x3d8c00,20, 0x3d8c80,16, 0x3d8d00,28, 0x3d8d80,28, 0x3d8e00,8, 0x3d8e80,20, 0x3d8f00,20, 0x3d8f80,1, 0x3d9000,20, 0x3d9080,16, 0x3d9100,28, 0x3d9180,28, 0x3d9200,8, 0x3d9280,20, 0x3d9300,20, 0x3d9380,1, 0x3d9400,20, 0x3d9480,16, 0x3d9500,28, 0x3d9580,28, 0x3d9600,8, 0x3d9680,20, 0x3d9700,20, 0x3d9780,1, 0x3d9800,20, 0x3d9880,16, 0x3d9900,28, 0x3d9980,28, 0x3d9a00,8, 0x3d9a80,20, 0x3d9b00,20, 0x3d9b80,1, 0x3d9c00,20, 0x3d9c80,16, 0x3d9d00,28, 0x3d9d80,28, 0x3d9e00,8, 0x3d9e80,20, 0x3d9f00,20, 0x3d9f80,1, 0x3da000,20, 0x3da080,16, 0x3da100,28, 0x3da180,28, 0x3da200,8, 0x3da280,20, 0x3da300,20, 0x3da380,1, 0x3da400,20, 0x3da480,16, 0x3da500,28, 0x3da580,28, 0x3da600,8, 0x3da680,20, 0x3da700,20, 0x3da780,1, 0x3da800,20, 0x3da880,16, 0x3da900,28, 0x3da980,28, 0x3daa00,8, 0x3daa80,20, 0x3dab00,20, 0x3dab80,1, 0x3dac00,20, 0x3dac80,16, 0x3dad00,28, 0x3dad80,28, 0x3dae00,8, 0x3dae80,20, 0x3daf00,20, 0x3daf80,1, 0x3db000,20, 0x3db080,16, 0x3db100,28, 0x3db180,28, 0x3db200,8, 0x3db280,20, 0x3db300,20, 0x3db380,1, 0x3db400,20, 0x3db480,16, 0x3db500,28, 0x3db580,28, 0x3db600,8, 0x3db680,20, 0x3db700,20, 0x3db780,1, 0x3db800,20, 0x3db880,16, 0x3db900,28, 0x3db980,28, 0x3dba00,8, 0x3dba80,20, 0x3dbb00,20, 0x3dbb80,1, 0x3dbc00,20, 0x3dbc80,16, 0x3dbd00,28, 0x3dbd80,28, 0x3dbe00,8, 0x3dbe80,20, 0x3dbf00,20, 0x3dbf80,1, 0x3dc000,128, 0x3dc204,9, 0x3dc400,80, 0x3dc544,44, 0x3dc600,12, 0x3dc644,1, 0x3dc654,8, 0x3dc680,7, 0x3dc6a0,2, 0x3dc6ac,2, 0x3dc6c0,28, 0x3dc770,1, 0x3dc800,11, 0x3dc840,11, 0x3dc880,11, 0x3dc8c0,11, 0x3dc900,11, 0x3dc940,11, 0x3dc980,11, 0x3dc9c0,11, 0x3dca00,11, 0x3dca40,11, 0x3dca80,11, 0x3dcac0,11, 0x3dcb00,11, 0x3dcb40,11, 0x3dcb80,11, 0x3dcbc0,11, 0x3dd000,30, 0x3dd080,3, 0x3dd090,18, 0x3dd100,30, 0x3dd180,3, 0x3dd190,18, 0x3dd200,30, 0x3dd280,3, 0x3dd290,18, 0x3dd300,30, 0x3dd380,3, 0x3dd390,18, 0x3dd400,30, 0x3dd480,3, 0x3dd490,18, 0x3dd500,30, 0x3dd580,3, 0x3dd590,18, 0x3dd600,30, 0x3dd680,3, 0x3dd690,18, 0x3dd700,30, 0x3dd780,3, 0x3dd790,18, 0x3dd800,30, 0x3dd880,3, 0x3dd890,18, 0x3dd900,30, 0x3dd980,3, 0x3dd990,18, 0x3dda00,30, 0x3dda80,3, 0x3dda90,18, 0x3ddb00,30, 0x3ddb80,3, 0x3ddb90,18, 0x3ddc00,30, 0x3ddc80,3, 0x3ddc90,18, 0x3ddd00,30, 0x3ddd80,3, 0x3ddd90,18, 0x3dde00,30, 0x3dde80,3, 0x3dde90,18, 0x3ddf00,30, 0x3ddf80,3, 0x3ddf90,18, 0x3de004,1, 0x3de010,4, 0x3de040,28, 0x3de100,11, 0x3de140,11, 0x3de180,11, 0x3de1c0,11, 0x3de200,11, 0x3de240,11, 0x3de280,11, 0x3de2c0,11, 0x3de300,11, 0x3de340,11, 0x3de380,11, 0x3de3c0,11, 0x3de400,11, 0x3de440,11, 0x3de480,11, 0x3de4c0,11, 0x3de500,44, 0x3de5c0,3, 0x3de800,18, 0x3de880,18, 0x3de900,18, 0x3de980,18, 0x3dea00,18, 0x3dea80,18, 0x3deb00,18, 0x3deb80,18, 0x3dec00,18, 0x3dec80,18, 0x3ded00,18, 0x3ded80,18, 0x3dee00,18, 0x3dee80,18, 0x3def00,18, 0x3def80,18, 0x3df000,18, 0x3df080,18, 0x3df100,18, 0x3df180,18, 0x3df200,18, 0x3df280,18, 0x3df300,18, 0x3df380,18, 0x3df400,18, 0x3df480,18, 0x3df500,18, 0x3df580,18, 0x3df600,18, 0x3df680,18, 0x3df700,18, 0x3df780,18, 0x3df800,34, 0x3df8a0,8, 0x3e0000,1, 0x3e1000,977, 0x3e2000,161, 0x3e3000,977, 0x3e4000,977, 0x3e5000,977, 0x3e6000,64, 0x3e6104,127, 0x3e6304,127, 0x3e6504,195, 0x3e6814,31, 0x3e6894,428, 0x3e7000,977, 0x3e8000,977, 0x3e9000,977, 0x3ea000,977, 0x3eb000,977, 0x3ec000,977, 0x3ed000,977, 0x3ee000,977, 0x3ef000,977, 0x3f0000,977, 0x3f1000,977, 0x3f2000,977, 0x3f3000,161, 0x3f4000,161, 0x3f5000,161, 0x3f6000,161, 0x3f8000,13, 0x3f8040,14, 0x3f8080,20, 0x3f8104,1, 0x3f810c,3, 0x3f8200,13, 0x3f8240,14, 0x3f8280,20, 0x3f8304,1, 0x3f830c,3, 0x3f8400,13, 0x3f8440,14, 0x3f8480,20, 0x3f8504,1, 0x3f850c,3, 0x3f8600,13, 0x3f8640,14, 0x3f8680,20, 0x3f8704,1, 0x3f870c,3, 0x3f8800,13, 0x3f8840,14, 0x3f8880,20, 0x3f8904,1, 0x3f890c,3, 0x3f8a00,13, 0x3f8a40,14, 0x3f8a80,20, 0x3f8b04,1, 0x3f8b0c,3, 0x3f8c00,13, 0x3f8c40,14, 0x3f8c80,20, 0x3f8d04,1, 0x3f8d0c,3, 0x3f8e00,13, 0x3f8e40,14, 0x3f8e80,20, 0x3f8f04,1, 0x3f8f0c,3, 0x3f9000,13, 0x3f9040,14, 0x3f9080,20, 0x3f9104,1, 0x3f910c,3, 0x3f9200,13, 0x3f9240,14, 0x3f9280,20, 0x3f9304,1, 0x3f930c,3, 0x3f9400,13, 0x3f9440,14, 0x3f9480,20, 0x3f9504,1, 0x3f950c,3, 0x3f9600,13, 0x3f9640,14, 0x3f9680,20, 0x3f9704,1, 0x3f970c,3, 0x3f9800,13, 0x3f9840,14, 0x3f9880,20, 0x3f9904,1, 0x3f990c,3, 0x3f9a00,13, 0x3f9a40,14, 0x3f9a80,20, 0x3f9b04,1, 0x3f9b0c,3, 0x3f9c00,13, 0x3f9c40,14, 0x3f9c80,20, 0x3f9d04,1, 0x3f9d0c,3, 0x3f9e00,13, 0x3f9e40,14, 0x3f9e80,20, 0x3f9f04,1, 0x3f9f0c,3, 0x3fa000,13, 0x3fa040,14, 0x3fa080,20, 0x3fa104,1, 0x3fa10c,3, 0x3fa200,17, 0x3fa250,2, 0x3fa260,5, 0x3fa280,2, 0x3fc000,1, 0x3fc014,1, 0x3fc01c,10, 0x3fc060,9, 0x3fc094,1, 0x3fc09c,10, 0x3fc0e0,9, 0x3fc114,1, 0x3fc11c,10, 0x3fc160,9, 0x3fc194,1, 0x3fc19c,10, 0x3fc1e0,9, 0x3fc214,1, 0x3fc21c,10, 0x3fc260,15, 0x3fc400,30, 0x3fc480,9, 0x3fc4c0,12, 0x3fc500,1, 0x3fc520,5, 0x3fc540,1, 0x400000,19, 0x400050,8, 0x400080,12, 0x4000c0,9, 0x400100,19, 0x400150,8, 0x400180,12, 0x4001c0,9, 0x400200,19, 0x400250,8, 0x400280,12, 0x4002c0,9, 0x400300,19, 0x400350,8, 0x400380,12, 0x4003c0,9, 0x400400,19, 0x400450,8, 0x400480,12, 0x4004c0,9, 0x400500,19, 0x400550,8, 0x400580,12, 0x4005c0,9, 0x400600,19, 0x400650,8, 0x400680,12, 0x4006c0,9, 0x400700,19, 0x400750,8, 0x400780,12, 0x4007c0,9, 0x400800,19, 0x400850,8, 0x400880,12, 0x4008c0,9, 0x400900,19, 0x400950,8, 0x400980,12, 0x4009c0,9, 0x400a00,19, 0x400a50,8, 0x400a80,12, 0x400ac0,9, 0x400b00,19, 0x400b50,8, 0x400b80,12, 0x400bc0,9, 0x400c00,19, 0x400c50,8, 0x400c80,12, 0x400cc0,9, 0x400d00,19, 0x400d50,8, 0x400d80,12, 0x400dc0,9, 0x400e00,19, 0x400e50,8, 0x400e80,12, 0x400ec0,9, 0x400f00,19, 0x400f50,8, 0x400f80,12, 0x400fc0,9, 0x401000,19, 0x401050,8, 0x401080,12, 0x4010c0,9, 0x401100,19, 0x401150,8, 0x401180,12, 0x4011c0,9, 0x401200,19, 0x401250,8, 0x401280,12, 0x4012c0,9, 0x401300,19, 0x401350,8, 0x401380,12, 0x4013c0,9, 0x401400,19, 0x401450,8, 0x401480,12, 0x4014c0,9, 0x401500,19, 0x401550,8, 0x401580,12, 0x4015c0,9, 0x401600,19, 0x401650,8, 0x401680,12, 0x4016c0,9, 0x401700,19, 0x401750,8, 0x401780,12, 0x4017c0,9, 0x401800,19, 0x401850,8, 0x401880,12, 0x4018c0,9, 0x401900,19, 0x401950,8, 0x401980,12, 0x4019c0,9, 0x401a00,19, 0x401a50,8, 0x401a80,12, 0x401ac0,9, 0x401b00,19, 0x401b50,8, 0x401b80,12, 0x401bc0,9, 0x401c00,19, 0x401c50,8, 0x401c80,12, 0x401cc0,9, 0x401d00,19, 0x401d50,8, 0x401d80,12, 0x401dc0,9, 0x401e00,19, 0x401e50,8, 0x401e80,12, 0x401ec0,9, 0x401f00,19, 0x401f50,8, 0x401f80,12, 0x401fc0,9, 0x402000,19, 0x402050,8, 0x402080,12, 0x4020c0,9, 0x402100,19, 0x402150,8, 0x402180,12, 0x4021c0,9, 0x402200,19, 0x402250,8, 0x402280,12, 0x4022c0,9, 0x402300,19, 0x402350,8, 0x402380,12, 0x4023c0,9, 0x402400,19, 0x402450,8, 0x402480,12, 0x4024c0,9, 0x402500,19, 0x402550,8, 0x402580,12, 0x4025c0,9, 0x402600,19, 0x402650,8, 0x402680,12, 0x4026c0,9, 0x402700,19, 0x402750,8, 0x402780,12, 0x4027c0,9, 0x402800,24, 0x402880,12, 0x4028c0,17, 0x402a00,24, 0x402a80,12, 0x402ac0,17, 0x402c00,24, 0x402c80,12, 0x402cc0,17, 0x402e00,24, 0x402e80,12, 0x402ec0,17, 0x403000,24, 0x403080,12, 0x4030c0,17, 0x403200,24, 0x403280,12, 0x4032c0,17, 0x403400,24, 0x403480,12, 0x4034c0,17, 0x403600,24, 0x403680,12, 0x4036c0,17, 0x403800,24, 0x403880,12, 0x4038c0,17, 0x403c00,13, 0x403c40,5, 0x403c80,5, 0x403d00,6, 0x403d20,6, 0x403d40,6, 0x403d60,6, 0x403d80,6, 0x403da0,6, 0x403dc0,6, 0x403de0,6, 0x403e00,6, 0x403e20,6, 0x403e40,5, 0x403e60,9, 0x404000,19, 0x404050,6, 0x404080,7, 0x4040a0,2, 0x4040c0,12, 0x404100,9, 0x404200,27, 0x404280,27, 0x404300,15, 0x404340,5, 0x404360,12, 0x404400,20, 0x408000,3, 0x408010,3, 0x408020,3, 0x408030,3, 0x408040,3, 0x408050,3, 0x408060,3, 0x408070,3, 0x408080,28, 0x408100,28, 0x408180,28, 0x408200,28, 0x408280,28, 0x408300,28, 0x408380,28, 0x408400,28, 0x408480,4, 0x4084c0,3, 0x4084e0,18, 0x408540,2, 0x408550,3, 0x408580,2, 0x4085a0,7, 0x4085c0,1, 0x408600,2, 0x408620,7, 0x408640,1, 0x408680,2, 0x4086a0,7, 0x4086c0,1, 0x408700,2, 0x408720,7, 0x408740,1, 0x408780,2, 0x4087a0,7, 0x4087c0,1, 0x408800,2, 0x408820,7, 0x408840,1, 0x408880,2, 0x4088a0,7, 0x4088c0,1, 0x408900,2, 0x408920,7, 0x408940,1, 0x408980,9, 0x409000,5, 0x409020,5, 0x409040,5, 0x409060,5, 0x409080,5, 0x4090a0,5, 0x4090c0,5, 0x4090e0,5, 0x409100,44, 0x409200,44, 0x409300,44, 0x409400,44, 0x409500,44, 0x409600,44, 0x409700,44, 0x409800,44, 0x409900,5, 0x409920,10, 0x409950,3, 0x409960,5, 0x409980,5, 0x4099a0,5, 0x4099b8,5, 0x4099d0,20, 0x40a000,3, 0x40a010,3, 0x40a020,3, 0x40a030,3, 0x40a040,3, 0x40a050,3, 0x40a060,3, 0x40a070,3, 0x40a080,28, 0x40a100,28, 0x40a180,28, 0x40a200,28, 0x40a280,28, 0x40a300,28, 0x40a380,28, 0x40a400,28, 0x40a480,9, 0x40a4b0,3, 0x40a4c0,9, 0x40a4f0,3, 0x40a500,3, 0x40a510,1, 0x40a520,17, 0x40a800,22, 0x410000,1, 0x410200,2, 0x410240,8, 0x410280,9, 0x4102c0,9, 0x410300,9, 0x410340,9, 0x410380,24, 0x410400,2, 0x410440,8, 0x410480,9, 0x4104c0,9, 0x410500,9, 0x410540,9, 0x410580,24, 0x410600,9, 0x410640,9, 0x410680,9, 0x4106c0,9, 0x410700,9, 0x410740,9, 0x410780,9, 0x4107c0,9, 0x410800,9, 0x410840,9, 0x410880,9, 0x4108c0,9, 0x410900,9, 0x410940,9, 0x410980,9, 0x4109c0,9, 0x410a00,9, 0x410a40,9, 0x410a80,9, 0x410ac0,9, 0x410b00,9, 0x410b40,9, 0x410b80,9, 0x410bc0,9, 0x410c00,3, 0x410c20,25, 0x410ca0,5, 0x410cc0,1, 0x410cc8,5, 0x410ce0,5, 0x410d00,1, 0x410d08,5, 0x410d20,16, 0x411000,74, 0x411200,74, 0x411404,1, 0x411418,10, 0x411444,3, 0x411464,7, 0x411484,7, 0x4114a4,1, 0x4114ac,1, 0x4114b4,1, 0x4114bc,3, 0x411500,8, 0x411600,17, 0x411660,1, 0x411680,66, 0x411790,3, 0x4117a4,1, 0x4117ac,4, 0x4117c0,14, 0x411800,17, 0x411860,1, 0x411880,66, 0x411990,3, 0x411a00,1, 0x411a40,10, 0x411a80,2, 0x411aa0,6, 0x411ac0,6, 0x411ae0,17, 0x411b28,19, 0x411b78,4, 0x411b90,3, 0x411ba0,2, 0x411bb0,3, 0x411c00,21, 0x411c80,1, 0x411c88,7, 0x411cc0,1, 0x411ce0,26, 0x411d80,1, 0x411e00,5, 0x411e20,5, 0x411e40,5, 0x411e60,5, 0x411e80,9, 0x412000,108, 0x412200,8, 0x420000,31, 0x420080,31, 0x420100,31, 0x420180,31, 0x420200,31, 0x420280,31, 0x420300,31, 0x420380,31, 0x420400,31, 0x420480,31, 0x420500,31, 0x420580,31, 0x420600,31, 0x420680,31, 0x420700,31, 0x420780,31, 0x420800,9, 0x420880,1, 0x420900,21, 0x420980,21, 0x420a00,21, 0x420a80,1, 0x420c04,1, 0x420c10,6, 0x420c30,64, 0x420e00,12, 0x420e40,10, 0x420e80,13, 0x420ec0,13, 0x420f00,9, 0x420f40,5, 0x420f60,5, 0x420f80,6, 0x420fa0,1, 0x420fa8,100, 0x421404,1, 0x421428,22, 0x421504,1, 0x421544,47, 0x421604,1, 0x42161c,9, 0x421644,1, 0x42164c,1, 0x421654,1, 0x42165c,1, 0x421664,1, 0x42166c,3, 0x422000,96, 0x422200,96, 0x422400,6, 0x422424,1, 0x42242c,14, 0x422800,40, 0x4228c0,3, 0x4228d0,3, 0x4228e0,3, 0x4228f0,3, 0x422904,1, 0x42291c,11, 0x422a04,1, 0x422a0c,7, 0x422a40,1, 0x422a54,4, 0x423000,3, 0x424000,3, 0x424010,3, 0x424020,3, 0x424030,3, 0x424040,3, 0x424050,3, 0x424060,3, 0x424070,3, 0x424080,3, 0x424090,3, 0x4240a0,3, 0x4240b0,3, 0x4240c0,3, 0x4240d0,3, 0x4240e0,3, 0x4240f0,3, 0x424100,3, 0x424110,3, 0x424120,3, 0x424130,3, 0x424140,3, 0x424150,3, 0x424160,3, 0x424170,3, 0x424180,3, 0x424190,3, 0x4241a0,3, 0x4241b0,3, 0x4241c0,3, 0x4241d0,3, 0x4241e0,3, 0x4241f0,3, 0x424200,3, 0x424210,3, 0x424220,3, 0x424230,3, 0x424240,3, 0x424250,3, 0x424260,3, 0x424270,3, 0x424280,3, 0x424290,3, 0x4242a0,3, 0x4242b0,3, 0x4242c0,3, 0x4242d0,3, 0x4242e0,3, 0x4242f0,3, 0x424300,3, 0x424310,3, 0x424320,3, 0x424330,3, 0x424340,3, 0x424350,3, 0x424360,3, 0x424370,3, 0x424380,3, 0x424390,3, 0x4243a0,3, 0x4243b0,3, 0x4243c0,3, 0x4243d0,3, 0x4243e0,3, 0x4243f0,3, 0x424400,3, 0x424410,3, 0x424420,3, 0x424430,3, 0x424440,3, 0x424450,3, 0x424460,3, 0x424470,3, 0x424480,3, 0x424490,3, 0x4244a0,3, 0x4244b0,3, 0x4244c0,3, 0x4244d0,3, 0x4244e0,3, 0x4244f0,3, 0x424500,3, 0x424510,3, 0x424520,3, 0x424530,3, 0x424540,3, 0x424550,3, 0x424560,3, 0x424570,3, 0x424580,3, 0x424590,3, 0x4245a0,3, 0x4245b0,3, 0x4245c0,3, 0x4245d0,3, 0x4245e0,3, 0x4245f0,3, 0x424600,32, 0x424800,128, 0x424a04,1, 0x424a20,8, 0x424a44,1, 0x424a60,8, 0x424a84,1, 0x424a94,3, 0x424aa4,1, 0x424ab4,6, 0x424b00,41, 0x424bc4,1, 0x424bd0,4, 0x424be4,6, 0x424c00,3, 0x424c10,14, 0x424c60,9, 0x425000,5, 0x425020,5, 0x425040,5, 0x425060,5, 0x425080,5, 0x4250a0,5, 0x4250c0,5, 0x4250e0,5, 0x425100,5, 0x425120,5, 0x425140,5, 0x425160,5, 0x425180,5, 0x4251a0,5, 0x4251c0,5, 0x4251e0,5, 0x425200,5, 0x425220,5, 0x425240,5, 0x425260,5, 0x425280,5, 0x4252a0,5, 0x4252c0,5, 0x4252e0,5, 0x425300,5, 0x425320,5, 0x425340,5, 0x425360,5, 0x425380,5, 0x4253a0,5, 0x4253c0,5, 0x4253e0,5, 0x425400,5, 0x425420,5, 0x425440,5, 0x425460,5, 0x425480,5, 0x4254a0,5, 0x4254c0,5, 0x4254e0,5, 0x425500,5, 0x425520,5, 0x425540,5, 0x425560,5, 0x425580,5, 0x4255a0,5, 0x4255c0,5, 0x4255e0,5, 0x425600,5, 0x425620,5, 0x425640,5, 0x425660,5, 0x425680,5, 0x4256a0,5, 0x4256c0,5, 0x4256e0,5, 0x425700,5, 0x425720,5, 0x425740,5, 0x425760,5, 0x425780,5, 0x4257a0,5, 0x4257c0,5, 0x4257e0,5, 0x425800,27, 0x425874,10, 0x425904,1, 0x42590c,5, 0x425924,1, 0x42592c,7, 0x425980,8, 0x426000,5, 0x426020,5, 0x426040,5, 0x426060,5, 0x426080,5, 0x4260a0,5, 0x4260c0,5, 0x4260e0,5, 0x426100,5, 0x426120,5, 0x426140,5, 0x426160,5, 0x426180,5, 0x4261a0,5, 0x4261c0,5, 0x4261e0,5, 0x426200,5, 0x426220,5, 0x426240,5, 0x426260,5, 0x426280,5, 0x4262a0,5, 0x4262c0,5, 0x4262e0,5, 0x426300,5, 0x426320,5, 0x426340,5, 0x426360,5, 0x426380,5, 0x4263a0,5, 0x4263c0,5, 0x4263e0,5, 0x426400,5, 0x426420,5, 0x426440,5, 0x426460,5, 0x426480,5, 0x4264a0,5, 0x4264c0,5, 0x4264e0,5, 0x426500,5, 0x426520,5, 0x426540,5, 0x426560,5, 0x426580,5, 0x4265a0,5, 0x4265c0,5, 0x4265e0,5, 0x426600,5, 0x426620,5, 0x426640,5, 0x426660,5, 0x426680,5, 0x4266a0,5, 0x4266c0,5, 0x4266e0,5, 0x426700,5, 0x426720,5, 0x426740,5, 0x426760,5, 0x426780,5, 0x4267a0,5, 0x4267c0,5, 0x4267e0,5, 0x426800,27, 0x426874,10, 0x426904,1, 0x42690c,5, 0x426924,1, 0x42692c,7, 0x426980,8, 0x427000,20, 0x427080,20, 0x427100,20, 0x427180,20, 0x427200,20, 0x427280,20, 0x427300,20, 0x427380,20, 0x427400,20, 0x427480,20, 0x427500,20, 0x427580,20, 0x427600,20, 0x427680,20, 0x427700,20, 0x427780,20, 0x427800,11, 0x427830,1, 0x427840,9, 0x427880,11, 0x4278b0,1, 0x4278c0,9, 0x427900,11, 0x427930,1, 0x427940,9, 0x427980,11, 0x4279b0,1, 0x4279c0,9, 0x427a00,11, 0x427a30,1, 0x427a40,9, 0x427a80,11, 0x427ab0,1, 0x427ac0,9, 0x427b00,11, 0x427b30,1, 0x427b40,9, 0x427b80,11, 0x427bb0,1, 0x427bc0,9, 0x427c00,8, 0x428000,1, 0x428100,57, 0x428200,57, 0x428300,57, 0x428400,57, 0x428500,57, 0x428600,57, 0x428700,57, 0x428800,57, 0x428900,57, 0x428a00,57, 0x428b00,57, 0x428c00,57, 0x428d00,57, 0x428e00,57, 0x428f00,57, 0x429000,57, 0x429100,28, 0x429180,17, 0x429200,11, 0x429240,9, 0x429280,33, 0x429308,4, 0x429320,1, 0x429340,1, 0x429360,7, 0x429380,7, 0x4293a0,1, 0x4293c0,6, 0x4293e0,6, 0x429400,6, 0x429420,1, 0x429440,6, 0x429460,6, 0x429480,6, 0x4294a0,1, 0x4294c0,6, 0x4294e0,6, 0x429500,6, 0x429520,3, 0x429530,7, 0x429550,7, 0x429570,7, 0x429590,7, 0x4295b0,7, 0x4295d0,7, 0x4295f0,7, 0x429610,7, 0x429630,7, 0x429650,7, 0x429670,7, 0x429690,7, 0x4296b0,7, 0x4296d0,7, 0x4296f0,7, 0x429710,7, 0x429730,7, 0x429750,7, 0x429770,7, 0x429790,7, 0x4297b0,7, 0x4297d0,7, 0x4297f0,7, 0x429810,15, 0x429860,39, 0x429920,7, 0x429960,2, 0x42996c,3, 0x429980,2, 0x42998c,3, 0x4299a0,2, 0x4299ac,3, 0x4299c0,2, 0x4299cc,3, 0x4299e0,2, 0x4299ec,3, 0x429a00,2, 0x429a0c,3, 0x429a20,2, 0x429a2c,3, 0x429a40,2, 0x429a4c,3, 0x429a60,2, 0x429a6c,3, 0x429a80,2, 0x429a8c,3, 0x429aa0,2, 0x429aac,3, 0x429ac0,2, 0x429acc,3, 0x429ae0,2, 0x429aec,3, 0x429b00,2, 0x429b0c,3, 0x429b20,2, 0x429b2c,3, 0x429b40,2, 0x429b4c,3, 0x429c00,27, 0x429c80,1, 0x429ca0,6, 0x42a000,27, 0x42a080,4, 0x42a0c0,25, 0x42a140,6, 0x42a160,2, 0x42a16c,3, 0x42a200,8, 0x42a224,25, 0x42a400,27, 0x42a480,1, 0x42a4a0,6, 0x42a500,27, 0x42a580,27, 0x42a600,27, 0x42a680,27, 0x42a700,27, 0x42a780,27, 0x42a800,27, 0x42a880,27, 0x42a900,27, 0x42a980,27, 0x42aa00,27, 0x42aa80,27, 0x42ab00,27, 0x42ab80,27, 0x42ac00,27, 0x42ac80,27, 0x42ad00,2, 0x42ad10,3, 0x42ad20,1, 0x42ad30,65, 0x42b000,3, 0x42b010,3, 0x42b020,3, 0x42b030,3, 0x42b040,3, 0x42b050,3, 0x42b060,3, 0x42b070,3, 0x42b080,3, 0x42b090,3, 0x42b0a0,3, 0x42b0b0,3, 0x42b0c0,3, 0x42b0d0,3, 0x42b0e0,3, 0x42b0f0,3, 0x42b100,2, 0x42b200,3, 0x42b210,3, 0x42b220,3, 0x42b230,3, 0x42b240,3, 0x42b250,3, 0x42b260,3, 0x42b270,3, 0x42b280,3, 0x42b290,3, 0x42b2a0,3, 0x42b2b0,3, 0x42b2c0,3, 0x42b2d0,3, 0x42b2e0,3, 0x42b2f0,3, 0x42b300,2, 0x42b400,3, 0x42b410,3, 0x42b420,3, 0x42b430,3, 0x42b440,3, 0x42b450,3, 0x42b460,3, 0x42b470,3, 0x42b480,3, 0x42b490,3, 0x42b4a0,3, 0x42b4b0,3, 0x42b4c0,3, 0x42b4d0,3, 0x42b4e0,3, 0x42b4f0,3, 0x42b500,2, 0x42b680,11, 0x42b6b0,8, 0x42b700,11, 0x42b730,8, 0x42b780,1, 0x440000,167, 0x4402a0,7, 0x4402c0,7, 0x4402e0,118, 0x4404c0,6, 0x4404e0,6, 0x440500,6, 0x440520,6, 0x440540,6, 0x440560,6, 0x440580,6, 0x4405a0,6, 0x4405c0,6, 0x4405e0,6, 0x440600,6, 0x440620,6, 0x440640,6, 0x440660,6, 0x440680,6, 0x4406a0,5, 0x4406c0,5, 0x4406e0,5, 0x440700,5, 0x440720,5, 0x440740,5, 0x440760,5, 0x440780,5, 0x4407a0,5, 0x4407c0,5, 0x4407e0,5, 0x440800,5, 0x440820,5, 0x440840,5, 0x440860,5, 0x440880,5, 0x4408a0,16, 0x440900,13, 0x440940,13, 0x440980,13, 0x4409c0,13, 0x440a00,13, 0x440a40,13, 0x440a80,13, 0x440ac0,13, 0x440b00,13, 0x440b40,13, 0x440b80,13, 0x440bc0,13, 0x440c00,13, 0x440c40,13, 0x440c80,13, 0x440cc0,13, 0x440d00,5, 0x440d20,5, 0x440d40,5, 0x440d60,5, 0x440d80,5, 0x440da0,5, 0x440dc0,5, 0x440de0,5, 0x440e00,5, 0x440e20,5, 0x440e40,5, 0x440e60,5, 0x440e80,5, 0x440ea0,5, 0x440ec0,5, 0x440ee0,5, 0x440f00,17, 0x441000,112, 0x441200,51, 0x441400,5, 0x441800,3, 0x441810,3, 0x441820,3, 0x441830,3, 0x441840,3, 0x441850,3, 0x441860,3, 0x441870,3, 0x441880,3, 0x441890,3, 0x4418a0,3, 0x4418b0,3, 0x4418c0,3, 0x4418d0,3, 0x4418e0,3, 0x4418f0,3, 0x441900,3, 0x441910,3, 0x441920,3, 0x441930,3, 0x441940,3, 0x441950,3, 0x441960,3, 0x441970,3, 0x441980,3, 0x441990,3, 0x4419a0,3, 0x4419b0,3, 0x4419c0,3, 0x4419d0,3, 0x4419e0,3, 0x4419f0,3, 0x441a00,2, 0x441a0c,12, 0x441a40,20, 0x441c00,1, 0x441c80,20, 0x441d00,20, 0x441d80,20, 0x441e00,20, 0x441e80,20, 0x441f00,20, 0x441f80,20, 0x442000,20, 0x442080,20, 0x442100,20, 0x442180,20, 0x442200,20, 0x442280,20, 0x442300,20, 0x442380,20, 0x442400,20, 0x442480,5, 0x444000,27, 0x444080,27, 0x444100,27, 0x444180,27, 0x444200,27, 0x444280,27, 0x444300,27, 0x444380,27, 0x444400,27, 0x444480,27, 0x444500,27, 0x444580,27, 0x444600,27, 0x444680,27, 0x444700,27, 0x444780,27, 0x444800,27, 0x444880,27, 0x444900,14, 0x444940,3, 0x444950,4, 0x450000,72, 0x450200,72, 0x450400,72, 0x450600,72, 0x450800,72, 0x450a00,72, 0x450c00,72, 0x450e00,72, 0x451000,72, 0x451200,72, 0x451400,72, 0x451600,72, 0x451800,72, 0x451a00,72, 0x451c00,72, 0x451e00,72, 0x452000,46, 0x452100,2, 0x452110,21, 0x452180,23, 0x4521e0,3, 0x452200,46, 0x452300,2, 0x452310,21, 0x452380,23, 0x4523e0,3, 0x452400,46, 0x452500,2, 0x452510,21, 0x452580,23, 0x4525e0,3, 0x452600,46, 0x452700,2, 0x452710,21, 0x452780,23, 0x4527e0,3, 0x452800,46, 0x452900,2, 0x452910,21, 0x452980,23, 0x4529e0,3, 0x452a00,46, 0x452b00,2, 0x452b10,21, 0x452b80,23, 0x452be0,3, 0x452c00,46, 0x452d00,2, 0x452d10,21, 0x452d80,23, 0x452de0,3, 0x452e00,46, 0x452f00,2, 0x452f10,21, 0x452f80,23, 0x452fe0,3, 0x453000,46, 0x453100,2, 0x453110,21, 0x453180,23, 0x4531e0,3, 0x453200,46, 0x453300,2, 0x453310,21, 0x453380,23, 0x4533e0,3, 0x453400,46, 0x453500,2, 0x453510,21, 0x453580,23, 0x4535e0,3, 0x453600,46, 0x453700,2, 0x453710,21, 0x453780,23, 0x4537e0,3, 0x453800,46, 0x453900,2, 0x453910,21, 0x453980,23, 0x4539e0,3, 0x453a00,46, 0x453b00,2, 0x453b10,21, 0x453b80,23, 0x453be0,3, 0x453c00,46, 0x453d00,2, 0x453d10,21, 0x453d80,23, 0x453de0,3, 0x453e00,46, 0x453f00,2, 0x453f10,21, 0x453f80,23, 0x453fe0,3, 0x454000,21, 0x454060,29, 0x4540e0,29, 0x454160,29, 0x4541e0,29, 0x454260,29, 0x4542e0,29, 0x454360,29, 0x4543e0,29, 0x454460,29, 0x4544e0,29, 0x454560,29, 0x4545e0,29, 0x454660,29, 0x4546e0,29, 0x454760,29, 0x4547e0,38, 0x454880,30, 0x454900,30, 0x454980,30, 0x454a00,30, 0x454a80,30, 0x454b00,30, 0x454b80,30, 0x454c00,30, 0x454c80,30, 0x454d00,30, 0x454d80,30, 0x454e00,30, 0x454e80,30, 0x454f00,30, 0x454f80,30, 0x455000,58, 0x4550ec,1, 0x4550f4,2, 0x455100,52, 0x455200,44, 0x455300,128, 0x455800,5, 0x455820,5, 0x455840,5, 0x455860,5, 0x455880,5, 0x4558a0,5, 0x4558c0,5, 0x4558e0,5, 0x455900,5, 0x455920,5, 0x455940,5, 0x455960,5, 0x455980,5, 0x4559a0,5, 0x4559c0,5, 0x4559e0,5, 0x455a00,33, 0x455c00,32, 0x455c84,1, 0x455c8c,3, 0x455ca0,18, 0x455cf0,3, 0x455d00,3, 0x455d10,3, 0x455d20,3, 0x455d30,3, 0x455d40,3, 0x455d50,3, 0x455d60,3, 0x455d70,3, 0x455d80,3, 0x455d90,3, 0x455da0,3, 0x455db0,3, 0x455dc0,3, 0x455dd0,3, 0x455de0,3, 0x455df0,55, 0x455ed0,3, 0x455ee0,3, 0x455ef0,3, 0x455f00,3, 0x455f10,3, 0x455f20,3, 0x455f30,3, 0x455f40,3, 0x455f50,3, 0x455f60,3, 0x455f70,3, 0x455f80,3, 0x455f90,3, 0x455fa0,3, 0x455fb0,3, 0x456000,104, 0x456200,26, 0x456280,26, 0x456300,26, 0x456380,26, 0x456400,26, 0x456480,26, 0x456500,26, 0x456580,26, 0x456600,26, 0x456680,26, 0x456700,26, 0x456780,26, 0x456800,26, 0x456880,26, 0x456900,26, 0x456980,26, 0x456a00,8, 0x456a80,8, 0x456aa4,8, 0x456b00,8, 0x456b24,8, 0x456b80,8, 0x456ba4,8, 0x456c00,8, 0x456c24,8, 0x456c80,8, 0x456ca4,8, 0x456d00,8, 0x456d24,8, 0x456d80,8, 0x456da4,8, 0x456e00,8, 0x456e24,8, 0x456e80,8, 0x456ea4,8, 0x456f00,8, 0x456f24,8, 0x456f80,8, 0x456fa4,8, 0x457000,8, 0x457024,8, 0x457080,8, 0x4570a4,8, 0x457100,8, 0x457124,8, 0x457180,8, 0x4571a4,8, 0x457200,8, 0x457224,8, 0x457280,4, 0x457294,44, 0x457400,5, 0x457420,5, 0x457440,5, 0x457460,5, 0x457480,5, 0x4574a0,5, 0x4574c0,5, 0x4574e0,5, 0x457500,5, 0x457520,5, 0x457540,5, 0x457560,5, 0x457580,5, 0x4575a0,5, 0x4575c0,5, 0x4575e0,5, 0x457600,33, 0x457800,140, 0x458000,20, 0x458080,16, 0x458100,28, 0x458180,28, 0x458200,8, 0x458280,20, 0x458300,20, 0x458380,1, 0x458400,20, 0x458480,16, 0x458500,28, 0x458580,28, 0x458600,8, 0x458680,20, 0x458700,20, 0x458780,1, 0x458800,20, 0x458880,16, 0x458900,28, 0x458980,28, 0x458a00,8, 0x458a80,20, 0x458b00,20, 0x458b80,1, 0x458c00,20, 0x458c80,16, 0x458d00,28, 0x458d80,28, 0x458e00,8, 0x458e80,20, 0x458f00,20, 0x458f80,1, 0x459000,20, 0x459080,16, 0x459100,28, 0x459180,28, 0x459200,8, 0x459280,20, 0x459300,20, 0x459380,1, 0x459400,20, 0x459480,16, 0x459500,28, 0x459580,28, 0x459600,8, 0x459680,20, 0x459700,20, 0x459780,1, 0x459800,20, 0x459880,16, 0x459900,28, 0x459980,28, 0x459a00,8, 0x459a80,20, 0x459b00,20, 0x459b80,1, 0x459c00,20, 0x459c80,16, 0x459d00,28, 0x459d80,28, 0x459e00,8, 0x459e80,20, 0x459f00,20, 0x459f80,1, 0x45a000,20, 0x45a080,16, 0x45a100,28, 0x45a180,28, 0x45a200,8, 0x45a280,20, 0x45a300,20, 0x45a380,1, 0x45a400,20, 0x45a480,16, 0x45a500,28, 0x45a580,28, 0x45a600,8, 0x45a680,20, 0x45a700,20, 0x45a780,1, 0x45a800,20, 0x45a880,16, 0x45a900,28, 0x45a980,28, 0x45aa00,8, 0x45aa80,20, 0x45ab00,20, 0x45ab80,1, 0x45ac00,20, 0x45ac80,16, 0x45ad00,28, 0x45ad80,28, 0x45ae00,8, 0x45ae80,20, 0x45af00,20, 0x45af80,1, 0x45b000,20, 0x45b080,16, 0x45b100,28, 0x45b180,28, 0x45b200,8, 0x45b280,20, 0x45b300,20, 0x45b380,1, 0x45b400,20, 0x45b480,16, 0x45b500,28, 0x45b580,28, 0x45b600,8, 0x45b680,20, 0x45b700,20, 0x45b780,1, 0x45b800,20, 0x45b880,16, 0x45b900,28, 0x45b980,28, 0x45ba00,8, 0x45ba80,20, 0x45bb00,20, 0x45bb80,1, 0x45bc00,20, 0x45bc80,16, 0x45bd00,28, 0x45bd80,28, 0x45be00,8, 0x45be80,20, 0x45bf00,20, 0x45bf80,1, 0x45c000,128, 0x45c204,9, 0x45c400,80, 0x45c544,44, 0x45c600,12, 0x45c644,1, 0x45c654,8, 0x45c680,7, 0x45c6a0,2, 0x45c6ac,2, 0x45c6c0,28, 0x45c770,1, 0x45c800,11, 0x45c840,11, 0x45c880,11, 0x45c8c0,11, 0x45c900,11, 0x45c940,11, 0x45c980,11, 0x45c9c0,11, 0x45ca00,11, 0x45ca40,11, 0x45ca80,11, 0x45cac0,11, 0x45cb00,11, 0x45cb40,11, 0x45cb80,11, 0x45cbc0,11, 0x45d000,30, 0x45d080,3, 0x45d090,18, 0x45d100,30, 0x45d180,3, 0x45d190,18, 0x45d200,30, 0x45d280,3, 0x45d290,18, 0x45d300,30, 0x45d380,3, 0x45d390,18, 0x45d400,30, 0x45d480,3, 0x45d490,18, 0x45d500,30, 0x45d580,3, 0x45d590,18, 0x45d600,30, 0x45d680,3, 0x45d690,18, 0x45d700,30, 0x45d780,3, 0x45d790,18, 0x45d800,30, 0x45d880,3, 0x45d890,18, 0x45d900,30, 0x45d980,3, 0x45d990,18, 0x45da00,30, 0x45da80,3, 0x45da90,18, 0x45db00,30, 0x45db80,3, 0x45db90,18, 0x45dc00,30, 0x45dc80,3, 0x45dc90,18, 0x45dd00,30, 0x45dd80,3, 0x45dd90,18, 0x45de00,30, 0x45de80,3, 0x45de90,18, 0x45df00,30, 0x45df80,3, 0x45df90,18, 0x45e004,1, 0x45e010,4, 0x45e040,28, 0x45e100,11, 0x45e140,11, 0x45e180,11, 0x45e1c0,11, 0x45e200,11, 0x45e240,11, 0x45e280,11, 0x45e2c0,11, 0x45e300,11, 0x45e340,11, 0x45e380,11, 0x45e3c0,11, 0x45e400,11, 0x45e440,11, 0x45e480,11, 0x45e4c0,11, 0x45e500,44, 0x45e5c0,3, 0x45e800,18, 0x45e880,18, 0x45e900,18, 0x45e980,18, 0x45ea00,18, 0x45ea80,18, 0x45eb00,18, 0x45eb80,18, 0x45ec00,18, 0x45ec80,18, 0x45ed00,18, 0x45ed80,18, 0x45ee00,18, 0x45ee80,18, 0x45ef00,18, 0x45ef80,18, 0x45f000,18, 0x45f080,18, 0x45f100,18, 0x45f180,18, 0x45f200,18, 0x45f280,18, 0x45f300,18, 0x45f380,18, 0x45f400,18, 0x45f480,18, 0x45f500,18, 0x45f580,18, 0x45f600,18, 0x45f680,18, 0x45f700,18, 0x45f780,18, 0x45f800,34, 0x45f8a0,8, 0x460000,1, 0x461000,977, 0x462000,161, 0x463000,977, 0x464000,977, 0x465000,977, 0x466000,64, 0x466104,127, 0x466304,127, 0x466504,195, 0x466814,31, 0x466894,428, 0x467000,977, 0x468000,977, 0x469000,977, 0x46a000,977, 0x46b000,977, 0x46c000,977, 0x46d000,977, 0x46e000,977, 0x46f000,977, 0x470000,977, 0x471000,977, 0x472000,977, 0x473000,161, 0x474000,161, 0x475000,161, 0x476000,161, 0x478000,13, 0x478040,14, 0x478080,20, 0x478104,1, 0x47810c,3, 0x478200,13, 0x478240,14, 0x478280,20, 0x478304,1, 0x47830c,3, 0x478400,13, 0x478440,14, 0x478480,20, 0x478504,1, 0x47850c,3, 0x478600,13, 0x478640,14, 0x478680,20, 0x478704,1, 0x47870c,3, 0x478800,13, 0x478840,14, 0x478880,20, 0x478904,1, 0x47890c,3, 0x478a00,13, 0x478a40,14, 0x478a80,20, 0x478b04,1, 0x478b0c,3, 0x478c00,13, 0x478c40,14, 0x478c80,20, 0x478d04,1, 0x478d0c,3, 0x478e00,13, 0x478e40,14, 0x478e80,20, 0x478f04,1, 0x478f0c,3, 0x479000,13, 0x479040,14, 0x479080,20, 0x479104,1, 0x47910c,3, 0x479200,13, 0x479240,14, 0x479280,20, 0x479304,1, 0x47930c,3, 0x479400,13, 0x479440,14, 0x479480,20, 0x479504,1, 0x47950c,3, 0x479600,13, 0x479640,14, 0x479680,20, 0x479704,1, 0x47970c,3, 0x479800,13, 0x479840,14, 0x479880,20, 0x479904,1, 0x47990c,3, 0x479a00,13, 0x479a40,14, 0x479a80,20, 0x479b04,1, 0x479b0c,3, 0x479c00,13, 0x479c40,14, 0x479c80,20, 0x479d04,1, 0x479d0c,3, 0x479e00,13, 0x479e40,14, 0x479e80,20, 0x479f04,1, 0x479f0c,3, 0x47a000,13, 0x47a040,14, 0x47a080,20, 0x47a104,1, 0x47a10c,3, 0x47a200,17, 0x47a250,2, 0x47a260,5, 0x47a280,2, 0x47c000,1, 0x47c014,1, 0x47c01c,10, 0x47c060,9, 0x47c094,1, 0x47c09c,10, 0x47c0e0,9, 0x47c114,1, 0x47c11c,10, 0x47c160,9, 0x47c194,1, 0x47c19c,10, 0x47c1e0,9, 0x47c214,1, 0x47c21c,10, 0x47c260,15, 0x47c400,30, 0x47c480,9, 0x47c4c0,12, 0x47c500,1, 0x47c520,5, 0x47c540,1, 0x580000,3, 0x580080,3, 0x580090,3, 0x5800a0,3, 0x5800b0,3, 0x5800c0,3, 0x5800d0,3, 0x5800e0,3, 0x5800f0,3, 0x580100,3, 0x580110,3, 0x580120,3, 0x580130,3, 0x580140,3, 0x580150,3, 0x580160,3, 0x580170,3, 0x580180,3, 0x580190,3, 0x5801a0,3, 0x5801b0,3, 0x5801c0,3, 0x5801d0,3, 0x5801e0,3, 0x5801f0,3, 0x580200,1, 0x580208,10, 0x580800,3, 0x580900,38, 0x580a00,38, 0x580b00,38, 0x580c00,38, 0x580d00,52, 0x580e00,4, 0x580e20,6, 0x580e40,8, 0x581000,2, 0x581040,54, 0x581140,9, 0x581180,2, 0x5811c0,9, 0x581200,12, 0x581240,11, 0x581280,11, 0x5812c0,11, 0x581300,11, 0x581340,12, 0x581380,11, 0x5813c0,11, 0x581400,11, 0x581440,11, 0x581480,11, 0x5814c0,11, 0x581500,11, 0x581540,11, 0x581580,11, 0x5815c0,11, 0x581600,11, 0x581640,11, 0x581680,11, 0x5816c0,11, 0x581700,11, 0x581740,3, 0x581784,1, 0x58179c,14, 0x5817e0,9, 0x581844,1, 0x581854,6, 0x581880,2, 0x5818c0,11, 0x581900,11, 0x581940,11, 0x581980,1, 0x5819c0,10, 0x581a00,1, 0x582000,4, 0x582080,103, 0x582220,9, 0x582248,49, 0x582324,1, 0x582330,9, 0x582360,109, 0x582540,1, 0x582584,1, 0x582594,6, 0x5825c0,1, 0x5825e0,9, 0x583000,1, 0x583008,110, 0x583200,38, 0x583300,38, 0x583400,52, 0x583500,4, 0x583600,52, 0x583700,38, 0x583800,52, 0x583900,38, 0x583a00,38, 0x583b00,38, 0x583c00,1, 0x583c10,5, 0x583c30,5, 0x583c50,5, 0x583c70,4, 0x584004,56, 0x5840e8,2, 0x584100,3, 0x584110,1, 0x584124,3, 0x584140,49, 0x584208,4, 0x584400,37, 0x584500,6, 0x584520,6, 0x584540,6, 0x584560,6, 0x584600,34, 0x584700,13, 0x584740,5, 0x584780,5, 0x584800,2, 0x584884,1, 0x584898,28, 0x584944,1, 0x58494c,13, 0x584a00,4, 0x584b04,1, 0x584b6c,37, 0x584c04,1, 0x584ce4,73, 0x588004,1, 0x58801c,12, 0x588404,1, 0x58841c,12, 0x588484,1, 0x58849c,12, 0x588504,1, 0x58851c,12, 0x588584,1, 0x58859c,12, 0x588604,1, 0x58861c,12, 0x588684,1, 0x58869c,12, 0x588704,1, 0x58871c,12, 0x588784,1, 0x58879c,12, 0x588804,1, 0x58881c,12, 0x588884,1, 0x58889c,12, 0x588904,1, 0x58891c,12, 0x588984,1, 0x58899c,12, 0x588a04,1, 0x588a1c,12, 0x588a84,1, 0x588a9c,12, 0x588b04,1, 0x588b1c,12, 0x588b84,1, 0x588b9c,12, 0x588c04,1, 0x588c1c,12, 0x588c84,1, 0x588c9c,12, 0x588d04,1, 0x588d1c,12, 0x588d84,1, 0x588d9c,12, 0x588e04,1, 0x588e1c,12, 0x588e84,1, 0x588e9c,12, 0x588f04,1, 0x588f1c,12, 0x588f84,1, 0x588f9c,12, 0x589000,13, 0x589040,12, 0x589080,12, 0x5890c0,5, 0x5890d8,5, 0x5890f0,5, 0x589108,7, 0x589200,12, 0x589240,1, 0x589300,12, 0x589340,12, 0x589380,2, 0x589400,12, 0x589440,12, 0x589480,2, 0x589500,12, 0x589540,12, 0x589580,2, 0x589600,8, 0x589700,54, 0x589800,54, 0x589900,54, 0x589c00,7, 0x589c20,7, 0x589d04,1, 0x589d6c,38, 0x58a000,7, 0x58a020,7, 0x58a104,1, 0x58a16c,38, 0x58a400,7, 0x58a420,7, 0x58a504,1, 0x58a56c,38, 0x58a800,7, 0x58a820,7, 0x58a904,1, 0x58a96c,38, 0x58ac00,7, 0x58ac20,7, 0x58ad04,1, 0x58ad6c,38, 0x58b000,7, 0x58b020,7, 0x58b104,1, 0x58b16c,38, 0x58b400,7, 0x58b420,7, 0x58b504,1, 0x58b56c,38, 0x58b800,7, 0x58b820,7, 0x58b904,1, 0x58b96c,38, 0x58bc00,1, 0x58c000,1, 0x58c020,24, 0x58c084,1, 0x58c098,11, 0x58c100,1, 0x58c120,24, 0x58c184,1, 0x58c1a4,9, 0x58c200,8, 0x58c224,35, 0x58c304,2, 0x58c310,13, 0x58c400,7, 0x58c420,7, 0x58c440,1, 0x58c448,6, 0x58c800,7, 0x58c820,7, 0x58c840,1, 0x58c848,6, 0x58c880,7, 0x58c8a0,7, 0x58c8c0,1, 0x58c8c8,6, 0x58c900,7, 0x58c920,7, 0x58c940,1, 0x58c948,6, 0x58c980,7, 0x58c9a0,7, 0x58c9c0,1, 0x58c9c8,6, 0x58ca00,7, 0x58ca20,7, 0x58ca40,1, 0x58ca48,6, 0x58ca80,7, 0x58caa0,7, 0x58cac0,1, 0x58cac8,6, 0x58cb00,7, 0x58cb20,7, 0x58cb40,1, 0x58cb48,6, 0x58cb80,7, 0x58cba0,7, 0x58cbc0,1, 0x58cbc8,6, 0x58cc00,7, 0x58cc20,7, 0x58cc40,1, 0x58cc48,6, 0x58cc80,7, 0x58cca0,7, 0x58ccc0,1, 0x58ccc8,6, 0x58cd00,7, 0x58cd20,7, 0x58cd40,1, 0x58cd48,6, 0x58cd80,7, 0x58cda0,7, 0x58cdc0,1, 0x58cdc8,6, 0x58ce00,7, 0x58ce20,7, 0x58ce40,1, 0x58ce48,6, 0x58ce80,7, 0x58cea0,7, 0x58cec0,1, 0x58cec8,6, 0x58cf00,7, 0x58cf20,7, 0x58cf40,1, 0x58cf48,6, 0x58cf80,7, 0x58cfa0,7, 0x58cfc0,1, 0x58cfc8,6, 0x58d000,7, 0x58d020,7, 0x58d040,1, 0x58d048,6, 0x58d080,7, 0x58d0a0,7, 0x58d0c0,1, 0x58d0c8,6, 0x58d100,7, 0x58d120,7, 0x58d140,1, 0x58d148,6, 0x58d180,7, 0x58d1a0,7, 0x58d1c0,1, 0x58d1c8,6, 0x58d200,7, 0x58d220,7, 0x58d240,1, 0x58d248,6, 0x58d280,7, 0x58d2a0,7, 0x58d2c0,1, 0x58d2c8,6, 0x58d300,7, 0x58d320,7, 0x58d340,1, 0x58d348,6, 0x58d380,7, 0x58d3a0,7, 0x58d3c0,1, 0x58d3c8,6, 0x58e000,5, 0x58e020,5, 0x58e040,5, 0x58e060,5, 0x58e080,5, 0x58e0a0,5, 0x58e0c0,5, 0x58e0e0,5, 0x58e100,5, 0x58e120,5, 0x58e140,5, 0x58e160,5, 0x58e180,5, 0x58e1a0,5, 0x58e1c0,5, 0x58e1e0,5, 0x58e200,5, 0x58e220,5, 0x58e240,5, 0x58e260,5, 0x58e280,5, 0x58e2a0,5, 0x58e2c0,5, 0x58e2e0,5, 0x58e300,5, 0x58e320,5, 0x58e340,5, 0x58e360,5, 0x58e380,5, 0x58e3a0,5, 0x58e3c0,5, 0x58e3e0,5, 0x58e400,5, 0x58e420,5, 0x58e440,5, 0x58e460,5, 0x58e480,5, 0x58e4a0,5, 0x58e4c0,5, 0x58e4e0,5, 0x58e500,5, 0x58e520,5, 0x58e540,5, 0x58e560,5, 0x58e580,5, 0x58e5a0,5, 0x58e5c0,5, 0x58e5e0,5, 0x58e600,5, 0x58e620,5, 0x58e640,5, 0x58e660,5, 0x58e680,5, 0x58e6a0,5, 0x58e6c0,5, 0x58e6e0,5, 0x58e700,5, 0x58e720,5, 0x58e740,5, 0x58e760,5, 0x58e780,5, 0x58e7a0,5, 0x58e7c0,5, 0x58e7e0,5, 0x58e800,27, 0x58e874,10, 0x58e904,1, 0x58e90c,5, 0x58e924,1, 0x58e92c,7, 0x58e980,8, 0x58f000,5, 0x58f020,5, 0x58f040,5, 0x58f060,5, 0x58f080,5, 0x58f0a0,5, 0x58f0c0,5, 0x58f0e0,5, 0x58f100,5, 0x58f120,5, 0x58f140,5, 0x58f160,5, 0x58f180,5, 0x58f1a0,5, 0x58f1c0,5, 0x58f1e0,5, 0x58f200,5, 0x58f220,5, 0x58f240,5, 0x58f260,5, 0x58f280,5, 0x58f2a0,5, 0x58f2c0,5, 0x58f2e0,5, 0x58f300,5, 0x58f320,5, 0x58f340,5, 0x58f360,5, 0x58f380,5, 0x58f3a0,5, 0x58f3c0,5, 0x58f3e0,5, 0x58f400,5, 0x58f420,5, 0x58f440,5, 0x58f460,5, 0x58f480,5, 0x58f4a0,5, 0x58f4c0,5, 0x58f4e0,5, 0x58f500,5, 0x58f520,5, 0x58f540,5, 0x58f560,5, 0x58f580,5, 0x58f5a0,5, 0x58f5c0,5, 0x58f5e0,5, 0x58f600,5, 0x58f620,5, 0x58f640,5, 0x58f660,5, 0x58f680,5, 0x58f6a0,5, 0x58f6c0,5, 0x58f6e0,5, 0x58f700,5, 0x58f720,5, 0x58f740,5, 0x58f760,5, 0x58f780,5, 0x58f7a0,5, 0x58f7c0,5, 0x58f7e0,5, 0x58f800,27, 0x58f874,10, 0x58f904,1, 0x58f90c,5, 0x58f924,1, 0x58f92c,7, 0x58f980,8, 0x590000,15, 0x590040,3, 0x590050,5, 0x590080,24, 0x590100,20, 0x590180,20, 0x590200,20, 0x590280,20, 0x590400,16, 0x590480,20, 0x590500,20, 0x590580,20, 0x590600,20, 0x590800,5, 0x590820,1, 0x590840,7, 0x590860,32, 0x591000,276, 0x591800,1, 0x591820,7, 0x591840,10, 0x591880,10, 0x5918c0,9, 0x591900,10, 0x591a00,2, 0x591b04,1, 0x591b68,43, 0x591d00,7, 0x591d84,7, 0x591da4,10, 0x591e00,53, 0x592000,96, 0x592200,96, 0x592400,8, 0x592500,137, 0x592744,1, 0x59274c,14, 0x5927a4,1, 0x5927b4,11, 0x592800,3, 0x592810,3, 0x592820,3, 0x592830,3, 0x592840,3, 0x592850,3, 0x592860,3, 0x592870,3, 0x592880,3, 0x592890,3, 0x5928a0,3, 0x5928b0,3, 0x5928c0,3, 0x5928d0,3, 0x5928e0,3, 0x5928f0,3, 0x592900,3, 0x592910,3, 0x592920,3, 0x592930,3, 0x592940,3, 0x592950,3, 0x592960,3, 0x592970,3, 0x592980,3, 0x592990,3, 0x5929a0,3, 0x5929b0,3, 0x5929c0,3, 0x5929d0,3, 0x5929e0,3, 0x5929f0,3, 0x592a00,3, 0x592a10,3, 0x592a20,3, 0x592a30,3, 0x592a40,3, 0x592a50,3, 0x592a60,3, 0x592a70,3, 0x592a80,3, 0x592a90,3, 0x592aa0,3, 0x592ab0,3, 0x592ac0,3, 0x592ad0,3, 0x592ae0,3, 0x592af0,3, 0x592b00,3, 0x592b10,3, 0x592b20,3, 0x592b30,3, 0x592b40,3, 0x592b50,3, 0x592b60,3, 0x592b70,3, 0x592b80,3, 0x592b90,3, 0x592ba0,3, 0x592bb0,3, 0x592bc0,3, 0x592bd0,3, 0x592be0,3, 0x592bf0,3, 0x592c00,192, 0x592f04,1, 0x592f0c,8, 0x593000,5, 0x593020,5, 0x593040,5, 0x593060,5, 0x593080,5, 0x5930a0,5, 0x5930c0,5, 0x5930e0,5, 0x593100,5, 0x593120,5, 0x593140,5, 0x593160,5, 0x593180,5, 0x5931a0,5, 0x5931c0,5, 0x5931e0,5, 0x593200,5, 0x593220,5, 0x593240,5, 0x593260,5, 0x593280,5, 0x5932a0,5, 0x5932c0,5, 0x5932e0,5, 0x593300,5, 0x593320,5, 0x593340,5, 0x593360,5, 0x593380,5, 0x5933a0,5, 0x5933c0,5, 0x5933e0,5, 0x593400,5, 0x593420,5, 0x593440,5, 0x593460,5, 0x593480,5, 0x5934a0,5, 0x5934c0,5, 0x5934e0,5, 0x593500,5, 0x593520,5, 0x593540,5, 0x593560,5, 0x593580,5, 0x5935a0,5, 0x5935c0,5, 0x5935e0,5, 0x593600,5, 0x593620,5, 0x593640,5, 0x593660,5, 0x593680,5, 0x5936a0,5, 0x5936c0,5, 0x5936e0,5, 0x593700,5, 0x593720,5, 0x593740,5, 0x593760,5, 0x593780,5, 0x5937a0,5, 0x5937c0,5, 0x5937e0,5, 0x593800,131, 0x593a10,3, 0x593a20,3, 0x593a30,3, 0x593a40,3, 0x593a50,3, 0x593a60,3, 0x593a70,3, 0x593a80,3, 0x593a90,3, 0x593aa0,3, 0x593ab0,3, 0x593ac0,3, 0x593ad0,3, 0x593ae0,3, 0x593af0,3, 0x593b00,3, 0x593b10,3, 0x593b20,3, 0x593b30,3, 0x593b40,3, 0x593b50,3, 0x593b60,3, 0x593b70,3, 0x593b80,3, 0x593b90,3, 0x593ba0,3, 0x593bb0,3, 0x593bc0,3, 0x593bd0,3, 0x593be0,3, 0x593bf0,3, 0x593c00,3, 0x593c10,3, 0x593c20,3, 0x593c30,3, 0x593c40,3, 0x593c50,3, 0x593c60,3, 0x593c70,3, 0x593c80,3, 0x593c90,3, 0x593ca0,3, 0x593cb0,3, 0x593cc0,3, 0x593cd0,3, 0x593ce0,3, 0x593cf0,3, 0x593d00,3, 0x593d10,3, 0x593d20,3, 0x593d30,3, 0x593d40,3, 0x593d50,3, 0x593d60,3, 0x593d70,3, 0x593d80,3, 0x593d90,3, 0x593da0,3, 0x593db0,3, 0x593dc0,3, 0x593dd0,3, 0x593de0,3, 0x593df0,3, 0x593e04,1, 0x593e24,10, 0x594000,10, 0x598000,1, 0x598200,2, 0x598220,6, 0x598240,7, 0x598260,7, 0x598280,7, 0x5982a0,7, 0x5982c0,6, 0x5982e0,6, 0x598300,6, 0x598400,2, 0x598420,6, 0x598440,7, 0x598460,7, 0x598480,7, 0x5984a0,7, 0x5984c0,6, 0x5984e0,6, 0x598500,6, 0x598600,7, 0x598620,7, 0x598640,7, 0x598660,7, 0x598680,7, 0x5986a0,7, 0x5986c0,7, 0x5986e0,7, 0x598700,7, 0x598720,7, 0x598740,7, 0x598760,7, 0x598780,7, 0x5987a0,7, 0x5987c0,7, 0x5987e0,7, 0x598800,7, 0x598820,7, 0x598840,7, 0x598860,7, 0x598880,7, 0x5988a0,7, 0x5988c0,7, 0x5988e0,7, 0x598900,25, 0x598980,5, 0x5989a0,1, 0x5989a8,5, 0x5989c0,5, 0x5989e0,1, 0x5989e8,5, 0x598a00,5, 0x598a20,1, 0x598a28,5, 0x598a80,20, 0x598b00,20, 0x598b80,20, 0x599000,4, 0x599020,25, 0x599104,47, 0x599200,128, 0x599404,1, 0x599414,11, 0x599800,3, 0x599810,3, 0x599820,3, 0x599830,3, 0x599840,3, 0x599850,3, 0x599860,3, 0x599870,3, 0x599880,3, 0x599890,3, 0x5998a0,3, 0x5998b0,3, 0x5998c0,3, 0x5998d0,3, 0x5998e0,3, 0x5998f0,3, 0x599900,3, 0x599910,3, 0x599920,3, 0x599930,3, 0x599940,3, 0x599950,3, 0x599960,3, 0x599970,3, 0x599980,3, 0x599990,3, 0x5999a0,3, 0x5999b0,3, 0x5999c0,3, 0x5999d0,3, 0x5999e0,3, 0x5999f0,3, 0x599a00,3, 0x599a10,3, 0x599a20,3, 0x599a30,3, 0x599a40,3, 0x599a50,3, 0x599a60,3, 0x599a70,3, 0x599a80,3, 0x599a90,3, 0x599aa0,3, 0x599ab0,3, 0x599ac0,3, 0x599ad0,3, 0x599ae0,3, 0x599af0,3, 0x599b00,3, 0x599b10,3, 0x599b20,3, 0x599b30,3, 0x599b40,3, 0x599b50,3, 0x599b60,3, 0x599b70,3, 0x599b80,3, 0x599b90,3, 0x599ba0,3, 0x599bb0,3, 0x599bc0,3, 0x599bd0,3, 0x599be0,3, 0x599bf0,3, 0x599c00,192, 0x599f04,1, 0x599f0c,10, 0x59a000,1, 0x59a00c,3, 0x59c000,8, 0x59c100,292, 0x59c600,51, 0x59c6e0,2, 0x59c700,5, 0x59c720,5, 0x59c740,6, 0x59c760,1, 0x59c780,6, 0x59c7a0,1, 0x59c7c0,4, 0x59c7e0,6, 0x59c800,4, 0x59c820,6, 0x59c840,4, 0x59c860,6, 0x59c880,4, 0x59c8a0,6, 0x59c8c0,4, 0x59c8e0,6, 0x59c900,4, 0x59c920,6, 0x59c940,4, 0x59c960,7, 0x59c980,4, 0x59c9a0,7, 0x59c9c0,15, 0x59ca00,7, 0x59ca20,46, 0x59cae0,6, 0x59cb00,6, 0x59cb20,14, 0x59cb60,7, 0x59cb80,4, 0x59cba0,7, 0x59cbc0,2, 0x59cbcc,2, 0x59cc00,4, 0x59cc20,5, 0x59cc40,7, 0x59cc60,7, 0x59cc80,25, 0x59ccf0,8, 0x59cd20,31, 0x59ce00,1, 0x59ce08,2, 0x59cf00,37, 0x59d000,9, 0x59d040,1, 0x59d048,2, 0x59d200,6, 0x59d240,11, 0x59d280,11, 0x59d2c0,1, 0x59d2e0,25, 0x59d384,1, 0x59d394,6, 0x59d3c0,1, 0x59d3d0,3, 0x59d400,27, 0x59d480,4, 0x59d4c0,25, 0x59d540,6, 0x59d560,2, 0x59d56c,3, 0x59d600,8, 0x59d624,56, 0x59d800,27, 0x59d880,1, 0x59d8a0,6, 0x59d900,27, 0x59d980,1, 0x59d9a0,6, 0x59da00,27, 0x59da80,1, 0x59daa0,6, 0x59db00,27, 0x59db80,1, 0x59dba0,6, 0x59dc00,27, 0x59dc80,1, 0x59dca0,6, 0x59dd00,27, 0x59dd80,1, 0x59dda0,6, 0x59de00,27, 0x59de80,1, 0x59dea0,6, 0x59df00,27, 0x59df80,1, 0x59dfa0,6, 0x59e000,27, 0x59e080,1, 0x59e0a0,6, 0x59e100,3, 0x59e110,10, 0x600000,22, 0x600060,6, 0x600080,6, 0x6000a0,6, 0x6000c0,6, 0x600400,6, 0x600424,1, 0x600434,5, 0x600600,128, 0x600804,1, 0x600828,86, 0x600984,1, 0x600c00,1, 0x600c80,1, 0x600c90,2, 0x600d00,20, 0x600d80,1, 0x600da0,3, 0x600e00,2, 0x600e10,4, 0x700000,20, 0x700800,10, 0x700880,3, 0x700900,2, 0x700910,4, 0x700980,1, 0x701000,20, 0x701800,10, 0x701880,3, 0x701900,2, 0x701910,4, 0x701980,1, 0x702000,20, 0x702800,10, 0x702880,3, 0x702900,2, 0x702910,4, 0x702980,1, 0x703000,20, 0x703800,10, 0x703880,3, 0x703900,2, 0x703910,4, 0x703980,1, 0x704000,10, 0x704080,3, 0x704100,2, 0x704110,4, 0x704180,2, 0x7041a0,8, 0x704200,1, 0x705000,20, 0x705080,20, 0x705100,4, 0x705800,1, 0x706000,10, 0x706080,3, 0x706100,2, 0x706110,4, 0x706180,2, 0x7061a0,8, 0x706200,1, 0x707000,20, 0x707080,20, 0x707100,4, 0x707800,1, 0x708000,20, 0x708080,20, 0x708100,4, 0x708800,10, 0x708880,3, 0x7088a0,1, 0x709000,20, 0x709080,20, 0x709100,4, 0x709800,10, 0x709880,3, 0x7098a0,1, 0x70a000,10, 0x70a080,3, 0x70a200,2, 0x70a240,9, 0x70a400,2, 0x70a420,8, 0x70a480,1, 0x70b000,10, 0x70b080,1, 0x70b100,2, 0x70b110,4, 0x70b180,5, 0x70b1a0,7, 0x70b1c0,1, 0x70b200,1, 0x70c000,10, 0x70c080,2, 0x70c090,4, 0x70c100,1, 0x70d000,10, 0x70d080,2, 0x70d090,4, 0x70d100,1, 0x70e000,10, 0x70e080,3, 0x70e200,2, 0x70e240,9, 0x70e400,2, 0x70e420,8, 0x70e480,1, 0x70f000,10, 0x70f080,1, 0x70f100,2, 0x70f110,4, 0x70f180,5, 0x70f1a0,7, 0x70f1c0,1, 0x70f200,1, 0x710000,10, 0x710080,2, 0x710090,4, 0x710100,1, 0x711000,10, 0x711080,2, 0x711090,4, 0x711100,1, 0x712000,10, 0x712080,3, 0x712200,2, 0x712240,9, 0x712400,2, 0x712420,8, 0x712480,1, 0x713000,10, 0x713080,1, 0x713100,2, 0x713110,4, 0x713180,5, 0x7131a0,7, 0x7131c0,1, 0x713200,1, 0x714000,10, 0x714080,2, 0x714090,4, 0x714100,1, 0x715000,10, 0x715080,2, 0x715090,4, 0x715100,1, 0x716000,10, 0x716080,3, 0x716200,2, 0x716240,9, 0x716400,2, 0x716420,8, 0x716480,1, 0x717000,10, 0x717080,1, 0x717100,2, 0x717110,4, 0x717180,5, 0x7171a0,7, 0x7171c0,1, 0x717200,1, 0x718000,10, 0x718080,2, 0x718090,4, 0x718100,1, 0x719000,10, 0x719080,2, 0x719090,4, 0x719100,1, 0x71a000,10, 0x71a080,3, 0x71a200,2, 0x71a240,9, 0x71a400,2, 0x71a420,8, 0x71a480,1, 0x71b000,10, 0x71b080,1, 0x71b100,2, 0x71b110,4, 0x71b180,5, 0x71b1a0,7, 0x71b1c0,1, 0x71b200,1, 0x71c000,10, 0x71c080,2, 0x71c090,4, 0x71c100,1, 0x71d000,10, 0x71d080,2, 0x71d090,4, 0x71d100,1, 0x71e000,10, 0x71e080,3, 0x71e200,2, 0x71e240,9, 0x71e400,2, 0x71e420,8, 0x71e480,1, 0x71f000,10, 0x71f080,1, 0x71f100,2, 0x71f110,4, 0x71f180,5, 0x71f1a0,7, 0x71f1c0,1, 0x71f200,1, 0x720000,10, 0x720080,2, 0x720090,4, 0x720100,1, 0x721000,10, 0x721080,2, 0x721090,4, 0x721100,1, 0x722000,10, 0x722080,3, 0x722200,2, 0x722240,9, 0x722400,2, 0x722420,8, 0x722480,1, 0x723000,10, 0x723080,1, 0x723100,2, 0x723110,4, 0x723180,5, 0x7231a0,7, 0x7231c0,1, 0x723200,1, 0x724000,10, 0x724080,2, 0x724090,4, 0x724100,1, 0x725000,10, 0x725080,2, 0x725090,4, 0x725100,1, 0x726000,10, 0x726080,3, 0x726200,2, 0x726240,9, 0x726400,2, 0x726420,8, 0x726480,1, 0x727000,10, 0x727080,1, 0x727100,2, 0x727110,4, 0x727180,5, 0x7271a0,7, 0x7271c0,1, 0x727200,1, 0x728000,10, 0x728080,2, 0x728090,4, 0x728100,1, 0x729000,10, 0x729080,2, 0x729090,4, 0x729100,1, 0x72a000,10, 0x72a080,2, 0x72a0a0,8, 0x72a100,1, 0x72b000,36, 0x72b800,10, 0x72b880,3, 0x72b8a0,1, 0x72b900,2, 0x72b910,4, 0x72b980,1, 0x72c000,20, 0x72c800,1, 0x72d000,20, 0x72d800,1, 0x72e000,10, 0x72e080,2, 0x72e0a0,8, 0x72e100,1, 0x72f000,36, 0x72f800,10, 0x72f880,3, 0x72f8a0,1, 0x72f900,2, 0x72f910,4, 0x72f980,1, 0x730000,20, 0x730800,1, 0x731000,20, 0x731800,1, 0x732000,10, 0x732080,2, 0x7320a0,8, 0x732100,1, 0x733000,36, 0x733800,10, 0x733880,3, 0x7338a0,1, 0x733900,2, 0x733910,4, 0x733980,1, 0x734000,20, 0x734800,1, 0x735000,20, 0x735800,1, 0x736000,10, 0x736080,2, 0x7360a0,8, 0x736100,1, 0x737000,36, 0x737800,10, 0x737880,3, 0x7378a0,1, 0x737900,2, 0x737910,4, 0x737980,1, 0x738000,20, 0x738800,1, 0x739000,20, 0x739800,1, 0x73a000,10, 0x73a080,2, 0x73a0a0,8, 0x73a100,1, 0x73b000,36, 0x73b800,10, 0x73b880,3, 0x73b8a0,1, 0x73b900,2, 0x73b910,4, 0x73b980,1, 0x73c000,20, 0x73c800,1, 0x73d000,20, 0x73d800,1, 0x73e000,10, 0x73e080,2, 0x73e0a0,8, 0x73e100,1, 0x73f000,36, 0x73f800,10, 0x73f880,3, 0x73f8a0,1, 0x73f900,2, 0x73f910,4, 0x73f980,1, 0x740000,20, 0x740800,1, 0x741000,20, 0x741800,1, 0x742000,10, 0x742080,2, 0x7420a0,8, 0x742100,1, 0x743000,36, 0x743800,10, 0x743880,3, 0x7438a0,1, 0x743900,2, 0x743910,4, 0x743980,1, 0x744000,20, 0x744800,1, 0x745000,20, 0x745800,1, 0x746000,10, 0x746080,2, 0x7460a0,8, 0x746100,1, 0x747000,36, 0x747800,10, 0x747880,3, 0x7478a0,1, 0x747900,2, 0x747910,4, 0x747980,1, 0x748000,20, 0x748800,1, 0x749000,20, 0x749800,1, 0x74a000,10, 0x74a080,3, 0x74a100,2, 0x74a110,4, 0x74a180,1, 0x74b000,10, 0x74b080,3, 0x74b100,2, 0x74b110,4, 0x74b180,1, 0x74c000,10, 0x74c080,3, 0x74c100,2, 0x74c110,4, 0x74c180,1, 0x74d000,20, 0x74d800,10, 0x74d880,1, 0x74e000,20, 0x74e800,10, 0x74e880,1, 0x74f000,20, 0x74f800,10, 0x74f880,1, 0x750000,20, 0x750080,20, 0x750100,20, 0x750180,4, 0x750800,10, 0x750880,3, 0x750900,2, 0x750910,4, 0x750980,1, 0x751000,10, 0x751080,3, 0x751100,2, 0x751110,4, 0x751180,9, 0x7511c0,8, 0x751200,1, 0x752000,20, 0x752800,10, 0x752880,1, 0x753000,20, 0x753800,10, 0x753880,1, 0x754000,20, 0x754800,10, 0x754880,1, 0x755000,20, 0x755800,10, 0x755880,1, 0x756000,20, 0x756800,10, 0x756880,1, 0x757000,20, 0x757800,10, 0x757880,1, 0x758000,20, 0x758800,10, 0x758880,1, 0x759000,20, 0x759800,10, 0x759880,1, 0x75a000,10, 0x75a080,3, 0x75a100,2, 0x75a110,4, 0x75a180,9, 0x75a1c0,8, 0x75a200,1, 0x75b000,20, 0x75b800,10, 0x75b880,1, 0x75c000,20, 0x75c800,10, 0x75c880,1, 0x75d000,20, 0x75d800,10, 0x75d880,1, 0x75e000,20, 0x75e800,10, 0x75e880,1, 0x75f000,20, 0x75f800,10, 0x75f880,1, 0x760000,20, 0x760800,10, 0x760880,1, 0x761000,20, 0x761800,10, 0x761880,1, 0x762000,20, 0x762800,10, 0x762880,1, 0x763000,10, 0x763080,3, 0x763100,2, 0x763110,4, 0x763180,9, 0x7631c0,8, 0x763200,1, 0x764000,20, 0x764800,10, 0x764880,1, 0x765000,20, 0x765800,10, 0x765880,1, 0x766000,20, 0x766800,10, 0x766880,1, 0x767000,20, 0x767800,10, 0x767880,1, 0x768000,20, 0x768800,10, 0x768880,1, 0x769000,20, 0x769800,10, 0x769880,1, 0x76a000,20, 0x76a800,10, 0x76a880,1, 0x76b000,20, 0x76b800,10, 0x76b880,1, 0x76c000,20, 0x76c100,20, 0x76c200,36, 0x76c300,4, 0x76c800,10, 0x76c880,3, 0x76c900,2, 0x76c910,4, 0x76c984,5, 0x76c9a0,3, 0x76ca04,5, 0x76ca20,3, 0x76ca84,5, 0x76caa0,3, 0x76cb04,5, 0x76cb20,3, 0x76cb84,5, 0x76cba0,3, 0x76cc04,5, 0x76cc20,3, 0x76cc84,5, 0x76cca0,3, 0x76cd04,5, 0x76cd20,3, 0x76cd80,1, 0x76d000,36, 0x76d100,36, 0x76d200,4, 0x76d800,10, 0x76d884,5, 0x76d8a0,3, 0x76d904,5, 0x76d920,3, 0x76d980,1, 0x76e000,1, 0x76f000,20, 0x76f800,1, 0x770000,20, 0x770800,10, 0x770880,3, 0x770900,2, 0x770910,4, 0x770980,1, 0x771000,20, 0x771800,1, 0x772000,20, 0x772800,10, 0x772880,3, 0x7728a0,1, 0x773000,100, 0x773800,10, 0x773880,1, 0x774000,20, 0x774800,10, 0x774880,1, 0x775000,20, 0x775800,10, 0x775880,1, 0x776000,20, 0x776800,10, 0x776880,1, 0x777000,20, 0x777800,10, 0x777880,1, 0x778000,20, 0x778800,10, 0x778880,1, 0x779000,20, 0x779800,10, 0x779880,1, 0x77a000,20, 0x77a800,10, 0x77a880,3, 0x77a900,2, 0x77a910,4, 0x77a980,1, 0x77b000,20, 0x77b800,1, 0x77c000,20, 0x77c800,10, 0x77c880,3, 0x77c8a0,1, 0x77d000,100, 0x77d800,10, 0x77d880,1, 0x77e000,20, 0x77e800,10, 0x77e880,1, 0x77f000,20, 0x77f800,10, 0x77f880,1, 0x780000,20, 0x780800,10, 0x780880,1, 0x781000,20, 0x781800,10, 0x781880,1, 0x782000,20, 0x782800,10, 0x782880,1, 0x783000,20, 0x783800,10, 0x783880,1, 0x784000,36, 0x784800,10, 0x784880,3, 0x784900,2, 0x784910,4, 0x784980,1, 0x785000,20, 0x785800,1, 0x786000,36, 0x786800,10, 0x786880,3, 0x786900,2, 0x786910,4, 0x786980,1, 0x787000,20, 0x787800,1, 0x788000,36, 0x788800,10, 0x788880,3, 0x788900,2, 0x788910,4, 0x788980,1, 0x789000,20, 0x789800,10, 0x789880,3, 0x789900,2, 0x789910,4, 0x789980,1, 0x78a000,68, 0x78a800,10, 0x78a880,3, 0x78a900,2, 0x78a910,4, 0x78a980,1, 0x78b000,20, 0x78b800,10, 0x78b880,3, 0x78b900,2, 0x78b910,4, 0x78b980,1, 0x78c000,20, 0x78c800,1, 0x78d000,20, 0x78d800,1, 0x78e000,52, 0x78e800,10, 0x78e880,3, 0x78e900,2, 0x78e910,4, 0x78e980,1, 0x78f000,20, 0x78f800,1, 0x790000,36, 0x790800,10, 0x790880,3, 0x790900,2, 0x790910,4, 0x790980,1, 0x791000,36, 0x791800,10, 0x791880,3, 0x791900,2, 0x791910,4, 0x791980,1, 0x792000,36, 0x792800,10, 0x792880,3, 0x792900,2, 0x792910,4, 0x792980,1, 0x793000,36, 0x793800,10, 0x793880,3, 0x793900,2, 0x793910,4, 0x793980,1, 0x794000,36, 0x794800,10, 0x794880,3, 0x794900,2, 0x794910,4, 0x794980,1, 0x795000,20, 0x795800,10, 0x795880,3, 0x795900,2, 0x795910,4, 0x795980,1, 0x796000,36, 0x796800,10, 0x796880,3, 0x796900,2, 0x796910,4, 0x796980,1, 0x797000,20, 0x797800,10, 0x797880,3, 0x797900,2, 0x797910,4, 0x797980,1, 0x798000,20, 0x798800,1, 0x799000,20, 0x799800,10, 0x799880,3, 0x799900,2, 0x799910,4, 0x799980,1, 0x79a000,20, 0x79a800,10, 0x79a880,3, 0x79a900,2, 0x79a910,4, 0x79a980,1, 0x79b000,36, 0x79b800,10, 0x79b880,3, 0x79b900,2, 0x79b910,4, 0x79b980,1, 0x79c000,36, 0x79c800,10, 0x79c880,3, 0x79c900,2, 0x79c910,4, 0x79c980,1, 0x79d000,36, 0x79d800,10, 0x79d880,3, 0x79d900,2, 0x79d910,4, 0x79d980,1, 0x79e000,36, 0x79e800,10, 0x79e880,3, 0x79e900,2, 0x79e910,4, 0x79e980,1, 0x79f000,20, 0x79f800,10, 0x79f880,3, 0x79f900,2, 0x79f910,4, 0x79f980,1, 0x7a0000,20, 0x7a0800,10, 0x7a0880,3, 0x7a0900,2, 0x7a0910,4, 0x7a0980,1, 0x7a1000,20, 0x7a1800,10, 0x7a1880,3, 0x7a1900,2, 0x7a1910,4, 0x7a1980,1, 0x7a2000,36, 0x7a2800,10, 0x7a2880,3, 0x7a2900,2, 0x7a2910,4, 0x7a2980,1, 0x7a3000,36, 0x7a3800,10, 0x7a3880,3, 0x7a3900,2, 0x7a3910,4, 0x7a3980,1, 0x7a4000,20, 0x7a4800,10, 0x7a4880,3, 0x7a4900,2, 0x7a4910,4, 0x7a4980,1, 0x7a5000,20, 0x7a5800,10, 0x7a5880,3, 0x7a5900,2, 0x7a5910,4, 0x7a5980,1, 0x7a6000,20, 0x7a6080,20, 0x7a6100,4, 0x7a6800,10, 0x7a6880,3, 0x7a6900,2, 0x7a6910,4, 0x7a6980,1, 0x7a7000,20, 0x7a7080,20, 0x7a7100,4, 0x7a7800,10, 0x7a7880,3, 0x7a7900,2, 0x7a7910,4, 0x7a7980,1, 0x7a8000,20, 0x7a8080,20, 0x7a8100,4, 0x7a8800,10, 0x7a8880,3, 0x7a8900,2, 0x7a8910,4, 0x7a8980,1, 0x7a9000,36, 0x7a9800,10, 0x7a9880,3, 0x7a98a0,1, 0x7a9900,2, 0x7a9910,4, 0x7a9980,1, 0x7aa000,20, 0x7aa800,10, 0x7aa880,3, 0x7aa900,2, 0x7aa910,4, 0x7aa980,1, 0x7ab000,36, 0x7ab800,10, 0x7ab880,3, 0x7ab900,2, 0x7ab910,4, 0x7ab984,5, 0x7ab9a0,3, 0x7aba00,1, 0x7ac000,36, 0x7ac800,10, 0x7ac880,3, 0x7ac900,2, 0x7ac910,4, 0x7ac980,1, 0x7ad000,52, 0x7ad800,10, 0x7ad880,3, 0x7ad900,2, 0x7ad910,4, 0x7ad980,1, 0x7ae000,36, 0x7ae800,1, 0x7af000,36, 0x7af800,1, 0x7b0000,36, 0x7b0800,1, 0x7b1000,36, 0x7b1800,1, 0x7b2000,36, 0x7b2800,1, 0x7b3000,36, 0x7b3800,1, 0x7b4000,36, 0x7b4800,1, 0x7b5000,36, 0x7b5800,1, 0x7b6000,36, 0x7b6800,1, 0x7b7000,36, 0x7b7800,1, 0x7b8000,36, 0x7b8800,1, 0x7b9000,36, 0x7b9800,1, 0x7ba000,36, 0x7ba800,1, 0x7bb000,36, 0x7bb800,1, 0x7bc000,36, 0x7bc800,1, 0x7bd000,36, 0x7bd800,1, 0x7be000,20, 0x7be800,10, 0x7be880,3, 0x7be900,2, 0x7be910,4, 0x7be980,1, 0x7c0000,10, 0x7c0080,3, 0x7c0100,2, 0x7c0110,4, 0x7c0800,1, 0x7c0810,3, 0x7c0820,3, 0x7c0830,3, 0x7c0840,3, 0x7c0850,3, 0x7c0860,3, 0x7c0870,3, 0x7c0880,3, 0x7c0890,32, 0x7c0940,10, 0x7c0980,10, 0x7c09c0,10, 0x7c0a00,10, 0x7c0a40,10, 0x7c0a80,10, 0x7c0ac0,10, 0x7c0b00,10, 0x7c0b40,11, 0x7c0b70,2, 0x7c1000,1, 0x7c4000,10, 0x7c4080,3, 0x7c4100,2, 0x7c4110,4, 0x7c4200,1, 0x7c4210,3, 0x7c4220,3, 0x7c4230,8, 0x7c4280,10, 0x7c42c0,10, 0x7c4300,2, 0x7c4310,3, 0x7c4320,2, 0x7c4400,1, 0x7c8000,10, 0x7c8080,3, 0x7c8100,2, 0x7c8110,4, 0x7c9000,1, 0x7c9010,3, 0x7c9020,3, 0x7c9030,3, 0x7c9040,3, 0x7c9050,3, 0x7c9060,3, 0x7c9070,3, 0x7c9080,3, 0x7c9090,3, 0x7c90a0,3, 0x7c90b0,3, 0x7c90c0,3, 0x7c90d0,3, 0x7c90e0,3, 0x7c90f0,3, 0x7c9100,3, 0x7c9110,64, 0x7c9240,10, 0x7c9280,10, 0x7c92c0,10, 0x7c9300,10, 0x7c9340,10, 0x7c9380,10, 0x7c93c0,10, 0x7c9400,10, 0x7c9440,10, 0x7c9480,10, 0x7c94c0,10, 0x7c9500,10, 0x7c9540,10, 0x7c9580,10, 0x7c95c0,10, 0x7c9600,10, 0x7c9640,19, 0x7c9690,3, 0x7c96a0,3, 0x7c96b0,3, 0x7c96c0,8, 0x7ca000,1, 0x7cc000,10, 0x7cc080,3, 0x7cc100,2, 0x7cc110,4, 0x7cd000,1, 0x7cd010,3, 0x7cd020,3, 0x7cd030,3, 0x7cd040,3, 0x7cd050,3, 0x7cd060,3, 0x7cd070,3, 0x7cd080,3, 0x7cd090,3, 0x7cd0a0,3, 0x7cd0b0,3, 0x7cd0c0,3, 0x7cd0d0,3, 0x7cd0e0,3, 0x7cd0f0,3, 0x7cd100,3, 0x7cd110,64, 0x7cd240,10, 0x7cd280,10, 0x7cd2c0,10, 0x7cd300,10, 0x7cd340,10, 0x7cd380,10, 0x7cd3c0,10, 0x7cd400,10, 0x7cd440,10, 0x7cd480,10, 0x7cd4c0,10, 0x7cd500,10, 0x7cd540,10, 0x7cd580,10, 0x7cd5c0,10, 0x7cd600,10, 0x7cd640,19, 0x7cd690,3, 0x7cd6a0,3, 0x7cd6b0,3, 0x7cd6c0,8, 0x7ce000,1, 0x7d0000,10, 0x7d0080,3, 0x7d0100,2, 0x7d0110,4, 0x7d0200,1, 0x7d0210,3, 0x7d0220,3, 0x7d0230,8, 0x7d0280,10, 0x7d02c0,10, 0x7d0300,2, 0x7d0310,3, 0x7d0320,2, 0x7d0400,1, 0x7d4000,36, 0x7d4800,10, 0x7d4880,3, 0x7d4900,2, 0x7d4910,4, 0x7d4980,1, 0x7d5000,10, 0x800000,3, 0x800010,3, 0x800020,1, 0x800040,3, 0x800050,2, 0x800060,3, 0x800070,2, 0x800800,53, 0x800900,3, 0x800910,16, 0x800a00,53, 0x800b00,3, 0x800b10,16, 0x800c00,5, 0x800c20,5, 0x800c40,18, 0x801000,6, 0x801020,4, 0x801040,16, 0x802000,20, 0x802080,15, 0x802100,20, 0x802180,15, 0x802200,23, 0x802260,7, 0x802400,15, 0x802440,3, 0x802450,3, 0x802460,24, 0x802500,15, 0x802540,3, 0x802550,3, 0x802560,24, 0x802600,15, 0x802640,3, 0x802650,3, 0x802660,24, 0x802700,15, 0x802740,3, 0x802750,3, 0x802760,24, 0x802800,4, 0x802820,16, 0x802880,10, 0x8028c0,10, 0x802900,6, 0x802920,6, 0x802940,4, 0x802980,13, 0x8029c0,13, 0x802a00,9, 0x803000,15, 0x803040,4, 0x803060,17, 0x8030c0,6, 0x8030e0,2, 0x8030ec,3, 0x803100,4, 0x803200,124, 0x803400,124, 0x803604,6, 0x803624,6, 0x803640,1, 0x803680,8, 0x8036a4,1, 0x8036c0,6, 0x8036e0,22, 0x804000,3, 0x804010,3, 0x804020,1, 0x804040,3, 0x804050,2, 0x804060,3, 0x804070,2, 0x804800,53, 0x804900,3, 0x804910,16, 0x804a00,53, 0x804b00,3, 0x804b10,16, 0x804c00,5, 0x804c20,5, 0x804c40,18, 0x805000,6, 0x805020,4, 0x805040,16, 0x806000,20, 0x806080,15, 0x806100,20, 0x806180,15, 0x806200,23, 0x806260,7, 0x806400,15, 0x806440,3, 0x806450,3, 0x806460,24, 0x806500,15, 0x806540,3, 0x806550,3, 0x806560,24, 0x806600,15, 0x806640,3, 0x806650,3, 0x806660,24, 0x806700,15, 0x806740,3, 0x806750,3, 0x806760,24, 0x806800,4, 0x806820,16, 0x806880,10, 0x8068c0,10, 0x806900,6, 0x806920,6, 0x806940,4, 0x806980,13, 0x8069c0,13, 0x806a00,9, 0x807000,15, 0x807040,4, 0x807060,17, 0x8070c0,6, 0x8070e0,2, 0x8070ec,3, 0x807100,4, 0x807200,124, 0x807400,124, 0x807604,6, 0x807624,6, 0x807640,1, 0x807680,8, 0x8076a4,1, 0x8076c0,6, 0x8076e0,22, 0x808000,92, 0x808180,28, 0x808200,7, 0x808400,11, 0x808440,11, 0x808480,21, 0x808500,21, 0x808580,4, 0x8085a0,25, 0x808800,13, 0x809000,92, 0x809180,28, 0x809200,7, 0x809400,11, 0x809440,11, 0x809480,21, 0x809500,21, 0x809580,4, 0x8095a0,25, 0x809800,13, 0x80a000,10, 0x80a040,5, 0x80a080,10, 0x80a0c0,5, 0x80a100,5, 0x80a200,11, 0x80a230,3, 0x80a240,5, 0x80a260,5, 0x80a280,32, 0x80a400,13, 0x80a440,13, 0x80a480,9, 0x80a4c0,1, 0x80a4d0,5, 0x80a4f0,21, 0x80a800,10, 0x80a840,5, 0x80a880,10, 0x80a8c0,5, 0x80a900,5, 0x80aa00,11, 0x80aa30,3, 0x80aa40,5, 0x80aa60,5, 0x80aa80,32, 0x80ac00,13, 0x80ac40,13, 0x80ac80,9, 0x80acc0,1, 0x80acd0,5, 0x80acf0,21, 0x80b000,15, 0x80b040,4, 0x80b060,17, 0x80b0c0,6, 0x80b0e0,2, 0x80b0ec,3, 0x80b100,6, 0x80b120,3, 0x80b130,3, 0x80b140,23, 0x80c000,30, 0x80c080,3, 0x80c090,18, 0x80c100,30, 0x80c180,3, 0x80c190,18, 0x80c200,30, 0x80c280,3, 0x80c290,18, 0x80c300,30, 0x80c380,3, 0x80c390,18, 0x80c400,30, 0x80c480,3, 0x80c490,18, 0x80c500,30, 0x80c580,3, 0x80c590,18, 0x80c600,30, 0x80c680,3, 0x80c690,18, 0x80c700,30, 0x80c780,3, 0x80c790,18, 0x80c800,12, 0x80c844,1, 0x80c854,8, 0x80c880,7, 0x80c8a0,2, 0x80c8ac,2, 0x80c8c0,26, 0x80c980,4, 0x80c9a0,5, 0x80c9c0,1, 0x80d000,3, 0x80d010,3, 0x80d020,3, 0x80d030,3, 0x80d040,3, 0x80d050,3, 0x80d060,3, 0x80d070,3, 0x80d080,6, 0x80d0a0,6, 0x80d0c0,6, 0x80d0e0,6, 0x80d100,6, 0x80d120,6, 0x80d140,6, 0x80d160,6, 0x80d200,68, 0x80d400,1, 0x80d804,1, 0x80d844,54, 0x80da00,11, 0x80da40,11, 0x80da80,11, 0x80dac0,11, 0x80db00,11, 0x80db40,11, 0x80db80,11, 0x80dbc0,11, 0x80dc00,28, 0x80dc80,5, 0x80dca0,2, 0x80e000,4, 0x80e020,6, 0x80e040,6, 0x80e060,14, 0x80e100,26, 0x80e180,15, 0x80e200,15, 0x80e240,4, 0x80e260,17, 0x80e2c0,6, 0x80e2e0,2, 0x80e2ec,3, 0x80e300,15, 0x80e340,4, 0x80e360,17, 0x80e3c0,6, 0x80e3e0,2, 0x80e3ec,3, 0x80e400,9, 0x820000,1, 0x821000,977, 0x822000,161, 0x823000,977, 0x824000,977, 0x825000,977, 0x826000,977, 0x827000,977, 0x828000,977, 0x829000,977, 0x82a000,977, 0x82b000,161, 0x82c000,13, 0x82c040,14, 0x82c080,20, 0x82c104,1, 0x82c10c,3, 0x82c200,13, 0x82c240,14, 0x82c280,20, 0x82c304,1, 0x82c30c,3, 0x82c400,13, 0x82c440,14, 0x82c480,20, 0x82c504,1, 0x82c50c,3, 0x82c600,13, 0x82c640,14, 0x82c680,20, 0x82c704,1, 0x82c70c,3, 0x82c800,13, 0x82c840,14, 0x82c880,20, 0x82c904,1, 0x82c90c,3, 0x82ca00,13, 0x82ca40,14, 0x82ca80,20, 0x82cb04,1, 0x82cb0c,3, 0x82cc00,13, 0x82cc40,14, 0x82cc80,20, 0x82cd04,1, 0x82cd0c,3, 0x82ce00,13, 0x82ce40,14, 0x82ce80,20, 0x82cf04,1, 0x82cf0c,3, 0x82d000,13, 0x82d040,14, 0x82d080,20, 0x82d104,1, 0x82d10c,3, 0x82d200,17, 0x82d250,2, 0x82d260,4, 0x82e000,1, 0x82e014,1, 0x82e01c,10, 0x82e060,9, 0x82e094,1, 0x82e09c,10, 0x82e0e0,15, 0x82e200,12, 0x82e240,9, 0x82e280,6, 0x880000,582, 0x881000,2, 0x881040,9, 0x881080,7, 0x882000,582, 0x883000,8, 0x883024,6, 0x883040,8, 0x883080,7, 0x8830a0,7, 0x8830c0,7, 0x8830e0,7, 0x883100,13, 0x883140,12, 0x884000,582, 0x885000,2, 0x885040,9, 0x885080,7, 0x886000,582, 0x887000,8, 0x887024,6, 0x887040,8, 0x887080,7, 0x8870a0,7, 0x8870c0,7, 0x8870e0,7, 0x887100,13, 0x887140,12, 0x888000,27, 0x888080,4, 0x8880c0,25, 0x888140,6, 0x888160,2, 0x88816c,3, 0x888180,8, 0x8881a4,12, 0x888200,1, 0x890000,436, 0x890800,82, 0x890960,6, 0x890a00,41, 0x890b00,2, 0x890b20,19, 0x890c00,1, 0x890d00,44, 0x890e00,1, 0x891000,436, 0x891800,82, 0x891960,6, 0x891a00,41, 0x891b00,2, 0x891b20,19, 0x891c00,1, 0x891d00,44, 0x891e00,1, 0x892000,7, 0x892080,6, 0x8920a0,6, 0x8920c0,1, 0x892100,4, 0x892120,9, 0x894000,3, 0x894010,6, 0x894200,7, 0x894220,6, 0x894240,7, 0x894260,6, 0x894280,2, 0x89428c,2, 0x8942a0,2, 0x8942ac,2, 0x8942c0,7, 0x8942e0,7, 0x894300,2, 0x89430c,2, 0x894320,6, 0x894340,7, 0x894360,6, 0x894380,6, 0x8943a0,7, 0x8943c0,6, 0x8943e0,6, 0x894400,3, 0x894480,20, 0x894800,7, 0x894820,14, 0x894880,16, 0x894900,7, 0x894920,14, 0x894980,16, 0x894a00,6, 0x894a20,7, 0x894c00,9, 0x8a0000,582, 0x8a1000,2, 0x8a1040,9, 0x8a1080,7, 0x8a2000,582, 0x8a3000,8, 0x8a3024,6, 0x8a3040,8, 0x8a3080,7, 0x8a30a0,7, 0x8a30c0,7, 0x8a30e0,7, 0x8a3100,13, 0x8a3140,12, 0x8a4000,582, 0x8a5000,2, 0x8a5040,9, 0x8a5080,7, 0x8a6000,582, 0x8a7000,8, 0x8a7024,6, 0x8a7040,8, 0x8a7080,7, 0x8a70a0,7, 0x8a70c0,7, 0x8a70e0,7, 0x8a7100,13, 0x8a7140,12, 0x8a8000,27, 0x8a8080,4, 0x8a80c0,25, 0x8a8140,6, 0x8a8160,2, 0x8a816c,3, 0x8a8180,8, 0x8a81a4,12, 0x8a8200,1, 0x8b0000,436, 0x8b0800,82, 0x8b0960,6, 0x8b0a00,41, 0x8b0b00,2, 0x8b0b20,19, 0x8b0c00,1, 0x8b0d00,44, 0x8b0e00,1, 0x8b1000,436, 0x8b1800,82, 0x8b1960,6, 0x8b1a00,41, 0x8b1b00,2, 0x8b1b20,19, 0x8b1c00,1, 0x8b1d00,44, 0x8b1e00,1, 0x8b2000,7, 0x8b2080,6, 0x8b20a0,6, 0x8b20c0,1, 0x8b2100,4, 0x8b2120,9, 0x8b4000,3, 0x8b4010,6, 0x8b4200,7, 0x8b4220,6, 0x8b4240,7, 0x8b4260,6, 0x8b4280,2, 0x8b428c,2, 0x8b42a0,2, 0x8b42ac,2, 0x8b42c0,7, 0x8b42e0,7, 0x8b4300,2, 0x8b430c,2, 0x8b4320,6, 0x8b4340,7, 0x8b4360,6, 0x8b4380,6, 0x8b43a0,7, 0x8b43c0,6, 0x8b43e0,6, 0x8b4400,3, 0x8b4480,20, 0x8b4800,7, 0x8b4820,14, 0x8b4880,16, 0x8b4900,7, 0x8b4920,14, 0x8b4980,16, 0x8b4a00,6, 0x8b4a20,7, 0x8b4c00,9, 0x8c0000,2, 0x8c0080,20, 0x8c0100,8, 0x8c0124,1, 0x8c012c,2, 0x8c0200,15, 0x8c0240,4, 0x8c0260,17, 0x8c02c0,6, 0x8c02e0,2, 0x8c02ec,3, 0x8c0300,8, 0x8c0324,1, 0x8c0400,4, 0x8c0500,59, 0x8c0600,4, 0x8c0700,43, 0x8c0800,59, 0x8c0900,59, 0x8c0a00,1, 0x8c0c00,9, 0x8c0c40,9, 0x8c0c80,1, 0x8c2000,4, 0x8c2100,57, 0x8c2200,4, 0x8c2300,43, 0x8c2400,15, 0x8c2440,4, 0x8c2460,17, 0x8c24c0,6, 0x8c24e0,2, 0x8c24ec,3, 0x8c2500,8, 0x8c2524,1, 0x8c2600,12, 0x8c2800,57, 0x8c2900,57, 0x8c2a00,1, 0x8c2c00,43, 0x8c2d00,43, 0x8c2e00,1, 0x8c3000,1, 0x8c4000,12, 0x8c4200,15, 0x8c4240,4, 0x8c4260,17, 0x8c42c0,6, 0x8c42e0,2, 0x8c42ec,3, 0x8c4300,8, 0x8c4324,1, 0x8c4400,2, 0x8c8000,1, 0x8c8008,4, 0x8c8020,1, 0x8c8030,5, 0x8c8080,12, 0x8c80c0,1, 0x8c8100,4, 0x8c8180,18, 0x8c8200,10, 0x8c822c,2, 0x8c8240,7, 0x8c8260,7, 0x8c8400,4, 0x8c8500,35, 0x8c8600,2, 0x8c860c,2, 0x8c8680,4, 0x8c86c0,9, 0x8c8700,18, 0x8c8780,18, 0x8c8800,10, 0x8c8840,3, 0x8c8850,3, 0x8c8860,3, 0x8c8870,3, 0x8c8a00,35, 0x8c8b00,35, 0x8c8c00,2, 0x8c8c80,9, 0x8c8cc0,9, 0x8c8e00,15, 0x8c8e40,4, 0x8c8e60,17, 0x8c8ec0,6, 0x8c8ee0,2, 0x8c8eec,3, 0x8c8f00,8, 0x8c8f24,3, 0x8c9000,12, 0x8d0000,2, 0x8d0040,12, 0x8d0080,4, 0x8d0094,1, 0x8d009c,2, 0x8d0200,15, 0x8d0240,4, 0x8d0260,17, 0x8d02c0,6, 0x8d02e0,2, 0x8d02ec,3, 0x8d0300,8, 0x8d0324,1, 0x8d0400,4, 0x8d0500,50, 0x8d0600,4, 0x8d0700,50, 0x8d0800,50, 0x8d0900,50, 0x8d0a00,1, 0x8d0c00,33, 0x8d2000,4, 0x8d2100,55, 0x8d2200,4, 0x8d2300,41, 0x8d2400,15, 0x8d2440,4, 0x8d2460,17, 0x8d24c0,6, 0x8d24e0,2, 0x8d24ec,3, 0x8d2500,8, 0x8d2524,1, 0x8d2600,12, 0x8d2800,55, 0x8d2900,55, 0x8d2a00,1, 0x8d2c00,41, 0x8d2d00,41, 0x8d2e00,1, 0x8d3000,1, 0x8d4000,12, 0x8d4200,15, 0x8d4240,4, 0x8d4260,17, 0x8d42c0,6, 0x8d42e0,2, 0x8d42ec,3, 0x8d4300,8, 0x8d4324,1, 0x8d4400,2, 0x8d8000,2, 0x8d8040,12, 0x8d8080,18, 0x8e0000,6, 0x8e0040,12, 0x8e0200,15, 0x8e0240,4, 0x8e0260,17, 0x8e02c0,6, 0x8e02e0,2, 0x8e02ec,3, 0x8e0300,8, 0x8e0324,1, 0x8e0400,4, 0x8e0500,35, 0x8e0600,4, 0x8e0700,34, 0x8e0800,35, 0x8e0900,35, 0x8e0a00,1, 0x8e0c00,34, 0x8e0d00,34, 0x8e0e00,1, 0x8e1000,1, 0x8e1008,4, 0x8e1020,1, 0x8e1030,5, 0x8e1080,12, 0x8e10c0,1, 0x8e1100,4, 0x8e1180,18, 0x8e1200,10, 0x8e122c,2, 0x8e1240,7, 0x8e1260,7, 0x8e1400,4, 0x8e1500,35, 0x8e1600,2, 0x8e160c,2, 0x8e1680,4, 0x8e16c0,9, 0x8e1700,18, 0x8e1780,18, 0x8e1800,10, 0x8e1840,3, 0x8e1850,3, 0x8e1860,3, 0x8e1870,3, 0x8e1a00,35, 0x8e1b00,35, 0x8e1c00,2, 0x8e1c80,9, 0x8e1cc0,9, 0x8e1e00,15, 0x8e1e40,4, 0x8e1e60,17, 0x8e1ec0,6, 0x8e1ee0,2, 0x8e1eec,3, 0x8e1f00,8, 0x8e1f24,3, 0x8e2000,4, 0x8e2100,55, 0x8e2200,4, 0x8e2300,41, 0x8e2400,15, 0x8e2440,4, 0x8e2460,17, 0x8e24c0,6, 0x8e24e0,2, 0x8e24ec,3, 0x8e2500,8, 0x8e2524,1, 0x8e2600,12, 0x8e2800,55, 0x8e2900,55, 0x8e2a00,1, 0x8e2c00,41, 0x8e2d00,41, 0x8e2e00,1, 0x8e3000,1, 0x8e4004,1, 0x8e407c,33, 0x8e4200,68, 0x8e4400,2, 0x8e4424,1, 0x8e4434,4, 0x8e4460,1, 0x8e4468,4, 0x8e4480,12, 0x8e44c0,2, 0x8e44e0,2, 0x8e44ec,2, 0x8e4500,8, 0x8e4600,3, 0x8e4620,3, 0x8e4630,3, 0x8e4640,7, 0x8e4680,1, 0x8e46c0,1, 0x8e46e0,11, 0x8e4720,3, 0x8e4730,3, 0x8e4740,7, 0x8e4784,1, 0x8e4798,10, 0x8e4800,36, 0x8e4a00,27, 0x8e4a80,4, 0x8e4ac0,25, 0x8e4b40,6, 0x8e4b60,2, 0x8e4b6c,3, 0x8e4b80,8, 0x8e4ba4,15, 0x8e4c00,2, 0x8e4c20,13, 0x8e5000,2, 0x8e500c,3, 0x8e5020,2, 0x8e502c,3, 0x8e5040,10, 0x8e5404,1, 0x8e5414,32, 0x8e5800,3, 0x8e5844,1, 0x8e5850,12, 0x8e5884,1, 0x8e589c,9, 0x8e6004,1, 0x8e6040,52, 0x8e6180,3, 0x8e61c4,1, 0x8e61d0,12, 0x8e6400,3, 0x8e6444,1, 0x8e6450,13, 0x8e6488,4, 0x8e6800,1, 0x8e6808,36, 0x8e6900,18, 0x8e6954,3, 0x8e6980,2, 0x8e69a0,7, 0x8e69c0,3, 0x8e69d0,3, 0x8e69e0,1, 0x8e6a00,2, 0x8e6a0c,3, 0x8e6c04,1, 0x8e6c78,37, 0x8e6e00,4, 0x8e7000,4, 0x8e7104,35, 0x8e7200,2, 0x8e7220,1, 0x8e7228,4, 0x8e7280,2, 0x8e72a4,1, 0x8e72b0,7, 0x8e7300,7, 0x8e7320,7, 0x8e7340,3, 0x8e7350,3, 0x8e7360,1, 0x8e7380,2, 0x8e73c0,3, 0x8e73d0,3, 0x8e73e0,1, 0x8e7400,1, 0x8e7410,3, 0x8e7420,3, 0x8e7430,5, 0x8e8004,1, 0x8e8030,58, 0x8e8208,2, 0x8e8218,2, 0x8e8228,2, 0x8e8238,2, 0x8e8248,2, 0x8e8258,2, 0x8e8268,2, 0x8e8278,2, 0x8e8288,2, 0x8e8298,2, 0x8e82a8,2, 0x8e82b8,2, 0x8e82c8,2, 0x8e82d8,2, 0x8e82e8,2, 0x8e82f8,2, 0x8e8308,2, 0x8e8318,2, 0x8e8328,2, 0x8e8338,2, 0x8e8348,2, 0x8e8358,2, 0x8e8368,2, 0x8e8378,2, 0x8e8388,2, 0x8e8398,2, 0x8e83a8,2, 0x8e83b8,2, 0x8e83c8,2, 0x8e83d8,2, 0x8e83e8,2, 0x8e83f8,2, 0x8e8408,2, 0x8e8418,2, 0x8e8428,2, 0x8e8438,2, 0x8e8448,2, 0x8e8458,2, 0x8e8500,2, 0x8e8584,1, 0x8e85b0,20, 0x8e8608,2, 0x8e8700,2, 0x8e8784,1, 0x8e87b0,22, 0x8e9000,9, 0x8e9040,9, 0x8e9080,9, 0x8e90c0,9, 0x8e9100,9, 0x8e9140,9, 0x8e9180,9, 0x8e91c0,9, 0x8e9204,1, 0x8e9228,110, 0x8e9400,14, 0x8e9440,1, 0x8e9448,24, 0x8e9804,1, 0x8e980c,6, 0x8e9828,3, 0x8e9900,44, 0x8e9a00,4, 0x8e9a20,5, 0x8e9a40,4, 0x8e9a60,7, 0x8e9a80,4, 0x8e9aa0,7, 0x8e9b00,4, 0x8e9b40,10, 0x8e9c00,27, 0x8e9c80,4, 0x8e9cc0,25, 0x8e9d40,6, 0x8e9d60,2, 0x8e9d6c,3, 0x8e9e00,8, 0x8e9e24,25, 0x8ea000,44, 0x8ec000,1, 0x8ec008,3, 0x8ec020,3, 0x8ec100,60, 0x8ec200,27, 0x8ec280,4, 0x8ec2c0,25, 0x8ec340,6, 0x8ec360,2, 0x8ec36c,3, 0x900000,2, 0x900080,20, 0x900100,8, 0x900124,1, 0x90012c,2, 0x900200,15, 0x900240,4, 0x900260,17, 0x9002c0,6, 0x9002e0,2, 0x9002ec,3, 0x900300,8, 0x900324,1, 0x900400,4, 0x900600,75, 0x900800,4, 0x900900,59, 0x901000,75, 0x901200,75, 0x901400,1, 0x901800,9, 0x901840,9, 0x901880,1, 0x902000,4, 0x902200,72, 0x902400,4, 0x902500,58, 0x902600,15, 0x902640,4, 0x902660,17, 0x9026c0,6, 0x9026e0,2, 0x9026ec,3, 0x902700,8, 0x902724,1, 0x902800,12, 0x903000,72, 0x903200,72, 0x903400,1, 0x903800,58, 0x903900,58, 0x903a00,1, 0x903c00,1, 0x904000,12, 0x904200,15, 0x904240,4, 0x904260,17, 0x9042c0,6, 0x9042e0,2, 0x9042ec,3, 0x904300,8, 0x904324,1, 0x904400,2, 0x908000,2, 0x908040,12, 0x908080,4, 0x908094,1, 0x90809c,2, 0x908200,15, 0x908240,4, 0x908260,17, 0x9082c0,6, 0x9082e0,2, 0x9082ec,3, 0x908300,8, 0x908324,1, 0x908400,4, 0x908600,66, 0x908800,4, 0x908a00,66, 0x909000,66, 0x909200,66, 0x909400,1, 0x909800,33, 0x90a000,4, 0x90a200,70, 0x90a400,4, 0x90a500,56, 0x90a600,15, 0x90a640,4, 0x90a660,17, 0x90a6c0,6, 0x90a6e0,2, 0x90a6ec,3, 0x90a700,8, 0x90a724,1, 0x90a800,12, 0x90b000,70, 0x90b200,70, 0x90b400,1, 0x90b800,56, 0x90b900,56, 0x90ba00,1, 0x90bc00,1, 0x90c000,2, 0x90c040,12, 0x90c200,15, 0x90c240,4, 0x90c260,17, 0x90c2c0,6, 0x90c2e0,2, 0x90c2ec,3, 0x90c300,8, 0x90c324,1, 0x90c400,2, 0x910000,4, 0x910100,55, 0x910200,4, 0x910300,41, 0x910400,15, 0x910440,4, 0x910460,17, 0x9104c0,6, 0x9104e0,2, 0x9104ec,3, 0x910500,8, 0x910524,1, 0x910600,12, 0x910800,55, 0x910900,55, 0x910a00,1, 0x910c00,41, 0x910d00,41, 0x910e00,1, 0x911000,1, 0x912000,6, 0x912040,12, 0x912200,4, 0x912300,52, 0x912400,4, 0x912500,60, 0x912600,15, 0x912640,4, 0x912660,17, 0x9126c0,6, 0x9126e0,2, 0x9126ec,3, 0x912700,8, 0x912724,1, 0x912800,33, 0x912900,33, 0x912a00,1, 0x912c00,17, 0x912c80,2, 0x914004,1, 0x914040,52, 0x914180,3, 0x9141c4,1, 0x9141d0,12, 0x915000,1, 0x915008,4, 0x915020,1, 0x915030,5, 0x915080,12, 0x9150c0,1, 0x915100,4, 0x915180,18, 0x915200,10, 0x91522c,2, 0x915240,7, 0x915260,7, 0x915280,2, 0x91528c,2, 0x9152a0,2, 0x9152ac,2, 0x915300,4, 0x915340,9, 0x915400,18, 0x915480,18, 0x915500,10, 0x915540,3, 0x915550,3, 0x915560,3, 0x915570,3, 0x915580,4, 0x915600,9, 0x915640,9, 0x915800,15, 0x915840,4, 0x915860,17, 0x9158c0,6, 0x9158e0,2, 0x9158ec,3, 0x915900,8, 0x915924,3, 0x916000,1, 0x916008,4, 0x916020,1, 0x916030,5, 0x916080,12, 0x9160c0,1, 0x916100,4, 0x916180,18, 0x916200,10, 0x91622c,2, 0x916240,7, 0x916260,7, 0x916280,2, 0x91628c,2, 0x9162a0,2, 0x9162ac,2, 0x916300,4, 0x916340,9, 0x916400,18, 0x916480,18, 0x916500,10, 0x916540,3, 0x916550,3, 0x916560,3, 0x916570,3, 0x916580,4, 0x916600,9, 0x916640,9, 0x916800,15, 0x916840,4, 0x916860,17, 0x9168c0,6, 0x9168e0,2, 0x9168ec,3, 0x916900,8, 0x916924,3, 0x917000,1, 0x917008,2, 0x917020,1, 0x917030,5, 0x917080,12, 0x9170c0,1, 0x9170e0,2, 0x9170ec,2, 0x917100,7, 0x917120,7, 0x917140,2, 0x91714c,2, 0x917160,2, 0x91716c,2, 0x917180,4, 0x9171c0,9, 0x917200,2, 0x917220,3, 0x917230,3, 0x917240,3, 0x917250,3, 0x917260,4, 0x917280,9, 0x9172c0,9, 0x917400,15, 0x917440,4, 0x917460,17, 0x9174c0,6, 0x9174e0,2, 0x9174ec,3, 0x917500,8, 0x917524,2, 0x918004,1, 0x91807c,33, 0x918200,68, 0x918400,2, 0x918424,1, 0x918434,4, 0x918460,1, 0x918468,4, 0x918480,12, 0x9184c0,2, 0x9184e0,2, 0x9184ec,2, 0x918500,8, 0x918600,3, 0x918620,3, 0x918630,3, 0x918640,7, 0x918680,1, 0x9186c0,1, 0x9186e0,11, 0x918720,3, 0x918730,3, 0x918740,7, 0x918784,1, 0x918798,10, 0x918800,36, 0x918a00,27, 0x918a80,4, 0x918ac0,25, 0x918b40,6, 0x918b60,2, 0x918b6c,3, 0x918b80,8, 0x918ba4,15, 0x918c00,2, 0x918c20,13, 0x919000,2, 0x91900c,3, 0x919020,2, 0x91902c,3, 0x919040,10, 0x919404,1, 0x919484,36, 0x919800,3, 0x919844,1, 0x919850,12, 0x919884,1, 0x91989c,9, 0x91a000,2, 0x91a010,3, 0x91a080,16, 0x91a0c4,1, 0x91a0d0,4, 0x91a100,2, 0x91a200,27, 0x91a280,4, 0x91a2c0,25, 0x91a340,6, 0x91a360,2, 0x91a36c,3, 0x91a380,8, 0x91a3a4,2, 0x91a400,1, 0x91a420,1, 0x91a428,4, 0x91a440,1, 0x91a450,5, 0x91a468,4, 0x91a480,3, 0x91a600,4, 0x91a700,54, 0x91a800,54, 0x91a900,54, 0x91aa00,1, 0x91ac00,4, 0x91ad00,52, 0x91b000,52, 0x91b100,52, 0x91b200,1, 0x91b400,7, 0x91b420,3, 0x91b430,3, 0x91b440,2, 0x91b44c,2, 0x91b460,5, 0x920000,6, 0x920020,6, 0x920040,6, 0x920060,6, 0x920080,13, 0x9200c0,5, 0x9200e0,5, 0x920100,5, 0x920120,5, 0x920140,5, 0x920160,5, 0x920180,5, 0x9201a0,5, 0x9201c0,5, 0x9201e0,5, 0x920200,5, 0x920220,5, 0x920240,5, 0x920260,5, 0x920280,5, 0x9202a0,5, 0x9202c0,5, 0x9202e0,5, 0x920300,5, 0x920320,1, 0x920340,9, 0x920380,14, 0x9203c0,9, 0x920400,9, 0x920440,9, 0x920480,9, 0x9204c0,9, 0x920500,9, 0x920540,9, 0x920580,9, 0x920804,4, 0x920820,1, 0x920830,5, 0x920850,5, 0x920870,1, 0x920880,1, 0x920890,1, 0x9208a0,1, 0x9208c0,6, 0x9208e0,6, 0x920900,3, 0x920940,4, 0x920960,25, 0x920a00,2, 0x920a0c,4, 0x920a20,2, 0x920a2c,3, 0x920a40,3, 0x920a50,3, 0x920c00,113, 0x920dc8,5, 0x921000,1, 0x921044,1, 0x921050,5, 0x921080,12, 0x921100,30, 0x921400,1, 0x921410,4, 0x921424,6, 0x921440,1, 0x921450,5, 0x921470,4, 0x921484,4, 0x9214a0,1, 0x9214b0,1, 0x9214c0,7, 0x921500,22, 0x921580,4, 0x921600,13, 0x921640,13, 0x921680,1, 0x921700,4, 0x921740,11, 0x921780,2, 0x921800,1, 0x921810,4, 0x921824,6, 0x921840,1, 0x921850,5, 0x921870,4, 0x921884,4, 0x9218a0,1, 0x9218b0,1, 0x9218c0,7, 0x921900,22, 0x921980,4, 0x921a00,13, 0x921a40,13, 0x921a80,1, 0x921b00,4, 0x921b40,11, 0x921b80,2, 0x922000,31, 0x922080,1, 0x922090,4, 0x9220a4,6, 0x9220c0,1, 0x9220d0,4, 0x922100,6, 0x922120,6, 0x922140,6, 0x922160,6, 0x922180,7, 0x9221a0,7, 0x9221c0,1, 0x922200,4, 0x922220,7, 0x923004,1, 0x92301c,9, 0x923044,1, 0x923050,4, 0x923404,1, 0x92356c,165, 0x923804,1, 0x923900,64, 0x923a04,1, 0x923a40,16, 0x923a84,1, 0x923ac0,16, 0x923b04,1, 0x923b40,16, 0x923b84,1, 0x923bc0,19, 0x924000,9, 0x924030,13, 0x924070,13, 0x9240b0,13, 0x9240f0,5, 0x928000,23, 0x928060,5, 0x928080,5, 0x9280a0,5, 0x9280c0,5, 0x9280e0,48, 0x928200,8, 0x928240,15, 0x928280,8, 0x9282c0,15, 0x928300,8, 0x928340,15, 0x928380,8, 0x9283c0,15, 0x928400,8, 0x928440,15, 0x928480,8, 0x9284c0,15, 0x928500,8, 0x928540,15, 0x928580,8, 0x9285c0,15, 0x928800,7, 0x928820,1, 0x928828,1, 0x928830,1, 0x928838,7, 0x928858,8, 0x928880,20, 0x928900,8, 0x928940,8, 0x928980,8, 0x9289c0,8, 0x928a00,16, 0x928c00,3, 0x928c24,1, 0x928c2c,5, 0x929000,6, 0x929020,6, 0x929040,1, 0x929200,4, 0x929300,60, 0x929400,5, 0x929418,3, 0x929428,13, 0x929460,10, 0x929500,6, 0x929520,6, 0x929540,1, 0x929600,9, 0x929640,9, 0x929680,1, 0x929800,27, 0x929880,4, 0x9298c0,25, 0x929940,6, 0x929960,2, 0x92996c,3, 0x929980,8, 0x9299a4,10, 0x929a00,36, 0x929b00,1, 0x929b08,2, 0x930000,6, 0x930020,6, 0x930040,6, 0x930060,6, 0x930080,13, 0x9300c0,5, 0x9300e0,5, 0x930100,5, 0x930120,5, 0x930140,5, 0x930160,5, 0x930180,5, 0x9301a0,5, 0x9301c0,5, 0x9301e0,5, 0x930200,5, 0x930220,5, 0x930240,5, 0x930260,5, 0x930280,5, 0x9302a0,5, 0x9302c0,5, 0x9302e0,5, 0x930300,5, 0x930320,1, 0x930340,9, 0x930380,14, 0x9303c0,9, 0x930400,9, 0x930440,9, 0x930480,9, 0x9304c0,9, 0x930500,9, 0x930540,9, 0x930580,9, 0x930804,4, 0x930820,1, 0x930830,5, 0x930850,5, 0x930870,1, 0x930880,1, 0x930890,1, 0x9308a0,1, 0x9308c0,6, 0x9308e0,6, 0x930900,3, 0x930940,4, 0x930960,25, 0x930a00,2, 0x930a0c,4, 0x930a20,2, 0x930a2c,3, 0x930a40,3, 0x930a50,3, 0x930c00,113, 0x930dc8,5, 0x931000,1, 0x931044,1, 0x931050,5, 0x931080,12, 0x931100,30, 0x931400,1, 0x931410,4, 0x931424,6, 0x931440,1, 0x931450,5, 0x931470,4, 0x931484,4, 0x9314a0,1, 0x9314b0,1, 0x9314c0,7, 0x931500,22, 0x931580,4, 0x931600,13, 0x931640,13, 0x931680,1, 0x931700,4, 0x931740,11, 0x931780,2, 0x931800,1, 0x931810,4, 0x931824,6, 0x931840,1, 0x931850,5, 0x931870,4, 0x931884,4, 0x9318a0,1, 0x9318b0,1, 0x9318c0,7, 0x931900,22, 0x931980,4, 0x931a00,13, 0x931a40,13, 0x931a80,1, 0x931b00,4, 0x931b40,11, 0x931b80,2, 0x932000,31, 0x932080,1, 0x932090,4, 0x9320a4,6, 0x9320c0,1, 0x9320d0,4, 0x932100,6, 0x932120,6, 0x932140,6, 0x932160,6, 0x932180,7, 0x9321a0,7, 0x9321c0,1, 0x932200,4, 0x932220,7, 0x933004,1, 0x93301c,9, 0x933044,1, 0x933050,4, 0x933404,1, 0x93356c,165, 0x933804,1, 0x933900,64, 0x933a04,1, 0x933a40,16, 0x933a84,1, 0x933ac0,16, 0x933b04,1, 0x933b40,16, 0x933b84,1, 0x933bc0,19, 0x934000,9, 0x934030,13, 0x934070,13, 0x9340b0,13, 0x9340f0,5, 0x938000,23, 0x938060,5, 0x938080,5, 0x9380a0,5, 0x9380c0,5, 0x9380e0,48, 0x938200,8, 0x938240,15, 0x938280,8, 0x9382c0,15, 0x938300,8, 0x938340,15, 0x938380,8, 0x9383c0,15, 0x938400,8, 0x938440,15, 0x938480,8, 0x9384c0,15, 0x938500,8, 0x938540,15, 0x938580,8, 0x9385c0,15, 0x938800,7, 0x938820,1, 0x938828,1, 0x938830,1, 0x938838,7, 0x938858,8, 0x938880,20, 0x938900,8, 0x938940,8, 0x938980,8, 0x9389c0,8, 0x938a00,16, 0x938c00,3, 0x938c24,1, 0x938c2c,5, 0x939000,6, 0x939020,6, 0x939040,1, 0x939200,4, 0x939300,60, 0x939400,5, 0x939418,3, 0x939428,13, 0x939460,10, 0x939500,6, 0x939520,6, 0x939540,1, 0x939600,9, 0x939640,9, 0x939680,1, 0x939800,27, 0x939880,4, 0x9398c0,25, 0x939940,6, 0x939960,2, 0x93996c,3, 0x939980,8, 0x9399a4,10, 0x939a00,36, 0x939b00,1, 0x939b08,2, 0x940000,6, 0x940020,6, 0x940040,6, 0x940060,6, 0x940080,13, 0x9400c0,5, 0x9400e0,5, 0x940100,5, 0x940120,5, 0x940140,5, 0x940160,5, 0x940180,5, 0x9401a0,5, 0x9401c0,5, 0x9401e0,5, 0x940200,5, 0x940220,5, 0x940240,5, 0x940260,5, 0x940280,5, 0x9402a0,5, 0x9402c0,5, 0x9402e0,5, 0x940300,5, 0x940320,1, 0x940340,9, 0x940380,14, 0x9403c0,9, 0x940400,9, 0x940440,9, 0x940480,9, 0x9404c0,9, 0x940500,9, 0x940540,9, 0x940580,9, 0x940804,4, 0x940820,1, 0x940830,5, 0x940850,5, 0x940870,1, 0x940880,1, 0x940890,1, 0x9408a0,1, 0x9408c0,6, 0x9408e0,6, 0x940900,3, 0x940940,4, 0x940960,25, 0x940a00,2, 0x940a0c,4, 0x940a20,2, 0x940a2c,3, 0x940a40,3, 0x940a50,3, 0x940c00,113, 0x940dc8,5, 0x941000,1, 0x941044,1, 0x941050,5, 0x941080,12, 0x941100,30, 0x941400,1, 0x941410,4, 0x941424,6, 0x941440,1, 0x941450,5, 0x941470,4, 0x941484,4, 0x9414a0,1, 0x9414b0,1, 0x9414c0,7, 0x941500,22, 0x941580,4, 0x941600,13, 0x941640,13, 0x941680,1, 0x941700,4, 0x941740,11, 0x941780,2, 0x941800,1, 0x941810,4, 0x941824,6, 0x941840,1, 0x941850,5, 0x941870,4, 0x941884,4, 0x9418a0,1, 0x9418b0,1, 0x9418c0,7, 0x941900,22, 0x941980,4, 0x941a00,13, 0x941a40,13, 0x941a80,1, 0x941b00,4, 0x941b40,11, 0x941b80,2, 0x942000,31, 0x942080,1, 0x942090,4, 0x9420a4,6, 0x9420c0,1, 0x9420d0,4, 0x942100,6, 0x942120,6, 0x942140,6, 0x942160,6, 0x942180,7, 0x9421a0,7, 0x9421c0,1, 0x942200,4, 0x942220,7, 0x943004,1, 0x94301c,9, 0x943044,1, 0x943050,4, 0x943404,1, 0x94356c,165, 0x943804,1, 0x943900,64, 0x943a04,1, 0x943a40,16, 0x943a84,1, 0x943ac0,16, 0x943b04,1, 0x943b40,16, 0x943b84,1, 0x943bc0,19, 0x944000,9, 0x944030,13, 0x944070,13, 0x9440b0,13, 0x9440f0,5, 0x948000,23, 0x948060,5, 0x948080,5, 0x9480a0,5, 0x9480c0,5, 0x9480e0,48, 0x948200,8, 0x948240,15, 0x948280,8, 0x9482c0,15, 0x948300,8, 0x948340,15, 0x948380,8, 0x9483c0,15, 0x948400,8, 0x948440,15, 0x948480,8, 0x9484c0,15, 0x948500,8, 0x948540,15, 0x948580,8, 0x9485c0,15, 0x948800,7, 0x948820,1, 0x948828,1, 0x948830,1, 0x948838,7, 0x948858,8, 0x948880,20, 0x948900,8, 0x948940,8, 0x948980,8, 0x9489c0,8, 0x948a00,16, 0x948c00,3, 0x948c24,1, 0x948c2c,5, 0x949000,6, 0x949020,6, 0x949040,1, 0x949200,4, 0x949300,60, 0x949400,5, 0x949418,3, 0x949428,13, 0x949460,10, 0x949500,6, 0x949520,6, 0x949540,1, 0x949600,9, 0x949640,9, 0x949680,1, 0x949800,27, 0x949880,4, 0x9498c0,25, 0x949940,6, 0x949960,2, 0x94996c,3, 0x949980,8, 0x9499a4,10, 0x949a00,36, 0x949b00,1, 0x949b08,2, 0x950000,6, 0x950020,6, 0x950040,6, 0x950060,6, 0x950080,13, 0x9500c0,5, 0x9500e0,5, 0x950100,5, 0x950120,5, 0x950140,5, 0x950160,5, 0x950180,5, 0x9501a0,5, 0x9501c0,5, 0x9501e0,5, 0x950200,5, 0x950220,5, 0x950240,5, 0x950260,5, 0x950280,5, 0x9502a0,5, 0x9502c0,5, 0x9502e0,5, 0x950300,5, 0x950320,1, 0x950340,9, 0x950380,14, 0x9503c0,9, 0x950400,9, 0x950440,9, 0x950480,9, 0x9504c0,9, 0x950500,9, 0x950540,9, 0x950580,9, 0x950804,4, 0x950820,1, 0x950830,5, 0x950850,5, 0x950870,1, 0x950880,1, 0x950890,1, 0x9508a0,1, 0x9508c0,6, 0x9508e0,6, 0x950900,3, 0x950940,4, 0x950960,25, 0x950a00,2, 0x950a0c,4, 0x950a20,2, 0x950a2c,3, 0x950a40,3, 0x950a50,3, 0x950c00,113, 0x950dc8,5, 0x951000,1, 0x951044,1, 0x951050,5, 0x951080,12, 0x951100,30, 0x951400,1, 0x951410,4, 0x951424,6, 0x951440,1, 0x951450,5, 0x951470,4, 0x951484,4, 0x9514a0,1, 0x9514b0,1, 0x9514c0,7, 0x951500,22, 0x951580,4, 0x951600,13, 0x951640,13, 0x951680,1, 0x951700,4, 0x951740,11, 0x951780,2, 0x951800,1, 0x951810,4, 0x951824,6, 0x951840,1, 0x951850,5, 0x951870,4, 0x951884,4, 0x9518a0,1, 0x9518b0,1, 0x9518c0,7, 0x951900,22, 0x951980,4, 0x951a00,13, 0x951a40,13, 0x951a80,1, 0x951b00,4, 0x951b40,11, 0x951b80,2, 0x952000,31, 0x952080,1, 0x952090,4, 0x9520a4,6, 0x9520c0,1, 0x9520d0,4, 0x952100,6, 0x952120,6, 0x952140,6, 0x952160,6, 0x952180,7, 0x9521a0,7, 0x9521c0,1, 0x952200,4, 0x952220,7, 0x953004,1, 0x95301c,9, 0x953044,1, 0x953050,4, 0x953404,1, 0x95356c,165, 0x953804,1, 0x953900,64, 0x953a04,1, 0x953a40,16, 0x953a84,1, 0x953ac0,16, 0x953b04,1, 0x953b40,16, 0x953b84,1, 0x953bc0,19, 0x954000,9, 0x954030,13, 0x954070,13, 0x9540b0,13, 0x9540f0,5, 0x958000,23, 0x958060,5, 0x958080,5, 0x9580a0,5, 0x9580c0,5, 0x9580e0,48, 0x958200,8, 0x958240,15, 0x958280,8, 0x9582c0,15, 0x958300,8, 0x958340,15, 0x958380,8, 0x9583c0,15, 0x958400,8, 0x958440,15, 0x958480,8, 0x9584c0,15, 0x958500,8, 0x958540,15, 0x958580,8, 0x9585c0,15, 0x958800,7, 0x958820,1, 0x958828,1, 0x958830,1, 0x958838,7, 0x958858,8, 0x958880,20, 0x958900,8, 0x958940,8, 0x958980,8, 0x9589c0,8, 0x958a00,16, 0x958c00,3, 0x958c24,1, 0x958c2c,5, 0x959000,6, 0x959020,6, 0x959040,1, 0x959200,4, 0x959300,60, 0x959400,5, 0x959418,3, 0x959428,13, 0x959460,10, 0x959500,6, 0x959520,6, 0x959540,1, 0x959600,9, 0x959640,9, 0x959680,1, 0x959800,27, 0x959880,4, 0x9598c0,25, 0x959940,6, 0x959960,2, 0x95996c,3, 0x959980,8, 0x9599a4,10, 0x959a00,36, 0x959b00,1, 0x959b08,2, 0x960000,2, 0x960044,17, 0x960100,2, 0x960144,17, 0x960200,2, 0x960244,17, 0x9602c4,17, 0x960380,2, 0x9603c4,17, 0x960480,2, 0x9604c4,17, 0x960544,28, 0x9605c0,2, 0x9605cc,3, 0x9605e0,1, 0x9605e8,2, 0x960600,7, 0x960640,11, 0x960680,11, 0x9606c0,11, 0x960700,11, 0x960740,11, 0x960780,3, 0x960804,1, 0x960818,10, 0x960844,1, 0x96084c,5, 0x960884,19, 0x960900,35, 0x960a00,35, 0x960b00,35, 0x960c00,1, 0x960c20,1, 0x960c28,7, 0x960c48,2, 0x964004,1, 0x96400c,13, 0x964044,1, 0x96404c,1, 0x964084,1, 0x9640c0,16, 0x964104,1, 0x964134,19, 0x964184,1, 0x9641c0,16, 0x964204,19, 0x964400,6, 0x964420,6, 0x964440,2, 0x96444c,3, 0x96445c,3, 0x96446c,1, 0x964480,1, 0x964490,4, 0x9644a4,6, 0x9644c0,1, 0x9644d0,4, 0x9644e4,1, 0x9644ec,4, 0x964500,3, 0x964804,1, 0x96480c,13, 0x964844,1, 0x96484c,1, 0x964884,1, 0x9648c0,16, 0x964904,1, 0x964934,19, 0x964984,1, 0x9649c0,16, 0x964a04,19, 0x964c00,6, 0x964c20,6, 0x964c40,2, 0x964c4c,3, 0x964c5c,3, 0x964c6c,1, 0x964c80,1, 0x964c90,4, 0x964ca4,6, 0x964cc0,1, 0x964cd0,4, 0x964ce4,1, 0x964cec,4, 0x964d00,3, 0x965004,1, 0x96500c,13, 0x965044,1, 0x96504c,1, 0x965084,1, 0x9650c0,16, 0x965104,1, 0x965134,19, 0x965184,1, 0x9651c0,16, 0x965204,19, 0x965400,6, 0x965420,6, 0x965440,2, 0x96544c,3, 0x96545c,3, 0x96546c,1, 0x965480,1, 0x965490,4, 0x9654a4,6, 0x9654c0,1, 0x9654d0,4, 0x9654e4,1, 0x9654ec,4, 0x965500,3, 0x965804,1, 0x96580c,13, 0x965844,1, 0x96584c,1, 0x965884,1, 0x9658c0,16, 0x965904,1, 0x965934,19, 0x965984,1, 0x9659c0,16, 0x965a04,19, 0x965c00,6, 0x965c20,6, 0x965c40,2, 0x965c4c,3, 0x965c5c,3, 0x965c6c,1, 0x965c80,1, 0x965c90,4, 0x965ca4,6, 0x965cc0,1, 0x965cd0,4, 0x965ce4,1, 0x965cec,4, 0x965d00,3, 0x966000,46, 0x9660c0,6, 0x9660e0,6, 0x966100,6, 0x966120,6, 0x966140,6, 0x966160,6, 0x966180,6, 0x9661c0,139, 0x9663f0,2, 0x966400,7, 0x968004,1, 0x968030,20, 0x968084,1, 0x9680c0,16, 0x968104,1, 0x968134,23, 0x968200,1, 0x96820c,1, 0x968240,1, 0x968250,4, 0x968264,6, 0x968284,1, 0x96828c,1, 0x968404,1, 0x968430,20, 0x968484,1, 0x9684c0,16, 0x968504,1, 0x968534,23, 0x968600,1, 0x96860c,1, 0x968640,1, 0x968650,4, 0x968664,6, 0x968684,1, 0x96868c,1, 0x968804,1, 0x968830,20, 0x968884,1, 0x9688c0,16, 0x968904,1, 0x968934,23, 0x968a00,1, 0x968a0c,1, 0x968a40,1, 0x968a50,4, 0x968a64,6, 0x968a84,1, 0x968a8c,1, 0x968c04,1, 0x968c30,20, 0x968c84,1, 0x968cc0,16, 0x968d04,1, 0x968d34,23, 0x968e00,1, 0x968e0c,1, 0x968e40,1, 0x968e50,4, 0x968e64,6, 0x968e84,1, 0x968e8c,1, 0x969000,5, 0x96a004,1, 0x96a014,11, 0x96a044,1, 0x96a058,10, 0x96a084,1, 0x96a094,7, 0x96a100,2, 0x96a110,3, 0x96a120,3, 0x96a140,1, 0x96a14c,1, 0x96a160,1, 0x96a170,11, 0x96a1a0,1, 0x96a1b0,19, 0x96a200,7, 0x96a224,1, 0x96a22c,1, 0x96a240,20, 0x96a2c0,9, 0x96a300,3, 0x96a310,3, 0x96a320,3, 0x96a330,2, 0x96a340,14, 0x96a380,3, 0x96a390,2, 0x96a404,1, 0x96a414,11, 0x96a444,1, 0x96a458,10, 0x96a484,1, 0x96a494,7, 0x96a500,2, 0x96a510,3, 0x96a520,3, 0x96a540,1, 0x96a54c,1, 0x96a560,1, 0x96a570,11, 0x96a5a0,1, 0x96a5b0,19, 0x96a600,7, 0x96a624,1, 0x96a62c,1, 0x96a640,20, 0x96a6c0,9, 0x96a700,3, 0x96a710,3, 0x96a720,3, 0x96a730,2, 0x96a740,14, 0x96a780,3, 0x96a790,2, 0x96a800,9, 0x96a828,4, 0x96ac00,1, 0x96ac08,65, 0x96ad10,65, 0x96ae18,64, 0x96b000,3, 0x96b200,34, 0x96b2c0,2, 0x96b2e4,1, 0x96b2f4,5, 0x96b324,1, 0x96b334,5, 0x96b380,20, 0x96b400,13, 0x96c000,1, 0x96c020,1, 0x96c028,4, 0x96c040,6, 0x96c060,6, 0x96c080,3, 0x96c090,3, 0x96c0a0,3, 0x96c0b0,3, 0x96c0c0,3, 0x96c0d0,3, 0x96c0e0,3, 0x96c0f0,3, 0x96c100,3, 0x96c110,3, 0x96c120,3, 0x96c130,3, 0x96c140,3, 0x96c150,3, 0x96c160,3, 0x96c170,3, 0x96c180,3, 0x96c190,3, 0x96c1a0,3, 0x96c1b0,3, 0x96c1c0,3, 0x96c1d0,3, 0x96c1e0,3, 0x96c1f0,3, 0x96c200,3, 0x96c210,3, 0x96c220,3, 0x96c230,3, 0x96c240,3, 0x96c250,3, 0x96c260,3, 0x96c270,3, 0x96c280,3, 0x96c290,3, 0x96c2a0,3, 0x96c2b0,3, 0x96c2c0,3, 0x96c2d0,3, 0x96c2e0,3, 0x96c2f0,3, 0x96c300,3, 0x96c310,3, 0x96c320,3, 0x96c330,3, 0x96c340,3, 0x96c350,3, 0x96c360,3, 0x96c370,3, 0x96c380,3, 0x96c390,3, 0x96c3a0,3, 0x96c3b0,3, 0x96c3c0,3, 0x96c3d0,3, 0x96c3e0,3, 0x96c3f0,3, 0x96c400,3, 0x96c410,3, 0x96c420,3, 0x96c430,3, 0x96c440,3, 0x96c450,3, 0x96c460,3, 0x96c470,3, 0x96c484,42, 0x96c53c,12, 0x96c57c,1, 0x96c800,70, 0x96c920,32, 0x96ca04,4, 0x96ca20,9, 0x96ca48,7, 0x96ca68,3, 0x96ca80,2, 0x96caa4,10, 0x96cad0,2, 0x96cae0,1, 0x96caf0,11, 0x96cb24,1, 0x96cb2c,1, 0x96cb40,1, 0x96cb60,10, 0x96cb94,1, 0x96cb9c,3, 0x96cbb0,17, 0x96cbfc,8, 0x96cc20,1, 0x96cc28,4, 0x96cc40,1, 0x96cc48,2, 0x96cc80,4, 0x96ccc0,10, 0x96cd00,5, 0x96cd20,5, 0x96cd40,5, 0x96cd60,5, 0x96cd80,5, 0x96cda0,5, 0x96cdc0,21, 0x96ce18,2, 0x96d000,4, 0x96d040,9, 0x96d080,5, 0x96d0a0,3, 0x96d0b0,1, 0x970000,1, 0x970008,4, 0x970020,1, 0x970040,1, 0x970048,4, 0x970060,1, 0x970080,8, 0x970200,1, 0x970208,5, 0x970220,1, 0x97022c,2, 0x970240,2, 0x970264,1, 0x970270,6, 0x9702c4,1, 0x9702d4,18, 0x970320,1, 0x970340,11, 0x970380,11, 0x970400,75, 0x97053c,3, 0x970560,7, 0x970580,7, 0x9705a0,7, 0x9705c0,15, 0x971004,1, 0x97100c,13, 0x971044,1, 0x971050,4, 0x971084,1, 0x9710c0,16, 0x971104,1, 0x971140,19, 0x971200,2, 0x971210,8, 0x971240,2, 0x97124c,2, 0x971260,6, 0x971280,2, 0x97128c,2, 0x9712a0,6, 0x9712c0,44, 0x971400,2, 0x971484,1, 0x9714c0,16, 0x971504,4, 0x971600,2, 0x97160c,3, 0x97161c,17, 0x971680,12, 0x9716c0,12, 0x971700,1, 0x971800,1, 0x971820,3, 0x971830,3, 0x971840,2, 0x971850,3, 0x971880,6, 0x9718a0,6, 0x9718c0,19, 0x972000,10, 0x972040,10, 0x972080,10, 0x9720c0,10, 0x972100,10, 0x972140,10, 0x972180,10, 0x9721c0,10, 0x972200,10, 0x972240,10, 0x972280,10, 0x972400,10, 0x972440,10, 0x972480,10, 0x9724c0,10, 0x972500,2, 0x972600,9, 0x972640,2, 0x97264c,2, 0x972660,1, 0x972668,4, 0x972800,27, 0x972880,4, 0x9728c0,25, 0x972940,6, 0x972960,2, 0x97296c,3, 0x972a00,8, 0x972a24,57, 0x972c00,137, 0x972e30,4, 0x973000,6, 0x973020,3, 0x973030,6, 0x973060,8, 0x980004,1, 0x98001c,25, 0x980084,1, 0x9800bc,19, 0x980204,1, 0x98027c,62, 0x980380,29, 0x980400,4, 0x980480,29, 0x980504,1, 0x98053c,20, 0x980600,2, 0x980614,1, 0x98061c,3, 0x980634,1, 0x98063c,14, 0x980678,14, 0x9806c0,19, 0x980804,1, 0x98081c,25, 0x980884,1, 0x9808bc,19, 0x980a04,1, 0x980a7c,62, 0x980b80,29, 0x980c00,4, 0x980c80,29, 0x980d04,1, 0x980d3c,20, 0x980e00,2, 0x980e14,1, 0x980e1c,3, 0x980e34,1, 0x980e3c,14, 0x980e78,14, 0x980ec0,19, 0x981004,1, 0x98101c,25, 0x981084,1, 0x9810bc,19, 0x981204,1, 0x98127c,62, 0x981380,29, 0x981400,4, 0x981480,29, 0x981504,1, 0x98153c,20, 0x981600,2, 0x981614,1, 0x98161c,3, 0x981634,1, 0x98163c,14, 0x981678,14, 0x9816c0,19, 0x981804,1, 0x98181c,25, 0x981884,1, 0x9818bc,19, 0x981a04,1, 0x981a7c,62, 0x981b80,29, 0x981c00,4, 0x981c80,29, 0x981d04,1, 0x981d3c,20, 0x981e00,2, 0x981e14,1, 0x981e1c,3, 0x981e34,1, 0x981e3c,14, 0x981e78,14, 0x981ec0,19, 0x982004,1, 0x98201c,25, 0x982084,1, 0x9820bc,19, 0x982204,1, 0x98227c,62, 0x982380,29, 0x982400,4, 0x982480,29, 0x982504,1, 0x98253c,20, 0x982600,2, 0x982614,1, 0x98261c,3, 0x982634,1, 0x98263c,14, 0x982678,14, 0x9826c0,19, 0x982804,1, 0x98281c,25, 0x982884,1, 0x9828bc,19, 0x982a04,1, 0x982a7c,62, 0x982b80,29, 0x982c00,4, 0x982c80,29, 0x982d04,1, 0x982d3c,20, 0x982e00,2, 0x982e14,1, 0x982e1c,3, 0x982e34,1, 0x982e3c,14, 0x982e78,14, 0x982ec0,19, 0x983004,1, 0x98301c,25, 0x983084,1, 0x9830bc,19, 0x983204,1, 0x98327c,62, 0x983380,29, 0x983400,4, 0x983480,29, 0x983504,1, 0x98353c,20, 0x983600,2, 0x983614,1, 0x98361c,3, 0x983634,1, 0x98363c,14, 0x983678,14, 0x9836c0,19, 0x983804,1, 0x98381c,25, 0x983884,1, 0x9838bc,19, 0x983a04,1, 0x983a7c,62, 0x983b80,29, 0x983c00,4, 0x983c80,29, 0x983d04,1, 0x983d3c,20, 0x983e00,2, 0x983e14,1, 0x983e1c,3, 0x983e34,1, 0x983e3c,14, 0x983e78,14, 0x983ec0,19, 0x984000,160, 0x984284,1, 0x9842a0,8, 0x9842c4,1, 0x9842d4,3, 0x984300,21, 0x984380,21, 0x984400,21, 0x984480,21, 0x984500,4, 0x984580,21, 0x984600,4, 0x984680,21, 0x984700,19, 0x984780,19, 0x984800,19, 0x984880,19, 0x984900,19, 0x984980,19, 0x984a00,19, 0x984a80,19, 0x984b00,19, 0x984b80,19, 0x984c00,19, 0x984c80,19, 0x984d00,19, 0x984d80,19, 0x984e00,19, 0x984e80,19, 0x984f00,4, 0x984f80,19, 0x985000,4, 0x985080,19, 0x985100,4, 0x985180,19, 0x985200,4, 0x985280,19, 0x985300,4, 0x985380,19, 0x985400,4, 0x985480,19, 0x985500,4, 0x985580,19, 0x985600,4, 0x985680,19, 0x985700,12, 0x985740,1, 0x988000,1, 0x988024,6, 0x988040,1, 0x988050,8, 0x988200,2, 0x988280,10, 0x9882c0,10, 0x988300,4, 0x988340,10, 0x988400,2, 0x988800,1, 0x988824,6, 0x988840,1, 0x988850,8, 0x988a00,2, 0x988a80,10, 0x988ac0,10, 0x988b00,4, 0x988b40,10, 0x988c00,2, 0x989000,42, 0x9890c0,7, 0x9890e0,6, 0x989100,15, 0x989200,108, 0x989400,6, 0x98a000,1, 0x98a800,129, 0x98ac00,16, 0x98ac44,1, 0x98ac4c,2, 0x98ac58,2, 0x98b000,23, 0x98b080,23, 0x98b100,4, 0x98b180,23, 0x98b204,11, 0x98b404,1, 0x98b410,10, 0x98b440,8, 0x98c000,1, 0x98c080,17, 0x98c100,37, 0x98c200,1, 0x98c210,11, 0x98c240,1, 0x98c280,1, 0x98c288,4, 0x98c2a0,4, 0x98c2c0,1, 0x98c300,2, 0x98c400,15, 0x98c440,4, 0x98c460,17, 0x98c4c0,6, 0x98c4e0,2, 0x98c4ec,3, 0x98c500,8, 0x98c524,4, 0x98c600,12, 0x98d000,1, 0x98d080,17, 0x98d100,37, 0x98d200,1, 0x98d210,11, 0x98d240,1, 0x98d280,1, 0x98d288,4, 0x98d2a0,4, 0x98d2c0,1, 0x98d300,2, 0x98d400,15, 0x98d440,4, 0x98d460,17, 0x98d4c0,6, 0x98d4e0,2, 0x98d4ec,3, 0x98d500,8, 0x98d524,4, 0x98d600,12, 0x98e000,1, 0x98e080,17, 0x98e100,37, 0x98e200,1, 0x98e210,11, 0x98e240,1, 0x98e280,1, 0x98e288,4, 0x98e2a0,4, 0x98e2c0,1, 0x98e300,2, 0x98e400,15, 0x98e440,4, 0x98e460,17, 0x98e4c0,6, 0x98e4e0,2, 0x98e4ec,3, 0x98e500,8, 0x98e524,4, 0x98e600,12, 0x98f000,1, 0x98f080,17, 0x98f100,37, 0x98f200,1, 0x98f210,11, 0x98f240,1, 0x98f280,1, 0x98f288,4, 0x98f2a0,4, 0x98f2c0,1, 0x98f300,2, 0x98f400,15, 0x98f440,4, 0x98f460,17, 0x98f4c0,6, 0x98f4e0,2, 0x98f4ec,3, 0x98f500,8, 0x98f524,4, 0x98f600,12, 0x990000,1, 0x990080,17, 0x990100,37, 0x990200,1, 0x990210,11, 0x990240,1, 0x990280,1, 0x990288,4, 0x9902a0,4, 0x9902c0,1, 0x990300,2, 0x990400,15, 0x990440,4, 0x990460,17, 0x9904c0,6, 0x9904e0,2, 0x9904ec,3, 0x990500,8, 0x990524,4, 0x990600,12, 0x991000,1, 0x991080,17, 0x991100,37, 0x991200,1, 0x991210,11, 0x991240,1, 0x991280,1, 0x991288,4, 0x9912a0,4, 0x9912c0,1, 0x991300,2, 0x991400,15, 0x991440,4, 0x991460,17, 0x9914c0,6, 0x9914e0,2, 0x9914ec,3, 0x991500,8, 0x991524,4, 0x991600,12, 0x992000,1, 0x992080,17, 0x992100,37, 0x992200,1, 0x992210,11, 0x992240,1, 0x992280,1, 0x992288,4, 0x9922a0,4, 0x9922c0,1, 0x992300,2, 0x992400,15, 0x992440,4, 0x992460,17, 0x9924c0,6, 0x9924e0,2, 0x9924ec,3, 0x992500,8, 0x992524,4, 0x992600,12, 0x993000,1, 0x993080,17, 0x993100,37, 0x993200,1, 0x993210,11, 0x993240,1, 0x993280,1, 0x993288,4, 0x9932a0,4, 0x9932c0,1, 0x993300,2, 0x993400,15, 0x993440,4, 0x993460,17, 0x9934c0,6, 0x9934e0,2, 0x9934ec,3, 0x993500,8, 0x993524,4, 0x993600,12, 0x994000,1, 0x994080,17, 0x994100,37, 0x994200,1, 0x994210,11, 0x994240,1, 0x994280,1, 0x994288,4, 0x9942a0,4, 0x9942c0,1, 0x994300,2, 0x994400,15, 0x994440,4, 0x994460,17, 0x9944c0,6, 0x9944e0,2, 0x9944ec,3, 0x994500,8, 0x994524,4, 0x994600,12, 0x995000,1, 0x995080,17, 0x995100,37, 0x995200,1, 0x995210,11, 0x995240,1, 0x995280,1, 0x995288,4, 0x9952a0,4, 0x9952c0,1, 0x995300,2, 0x995400,15, 0x995440,4, 0x995460,17, 0x9954c0,6, 0x9954e0,2, 0x9954ec,3, 0x995500,8, 0x995524,4, 0x995600,12, 0x996000,1, 0x996080,17, 0x996100,37, 0x996200,1, 0x996210,11, 0x996240,1, 0x996280,1, 0x996288,4, 0x9962a0,4, 0x9962c0,1, 0x996300,2, 0x996400,15, 0x996440,4, 0x996460,17, 0x9964c0,6, 0x9964e0,2, 0x9964ec,3, 0x996500,8, 0x996524,4, 0x996600,12, 0x997000,1, 0x997080,17, 0x997100,37, 0x997200,1, 0x997210,11, 0x997240,1, 0x997280,1, 0x997288,4, 0x9972a0,4, 0x9972c0,1, 0x997300,2, 0x997400,15, 0x997440,4, 0x997460,17, 0x9974c0,6, 0x9974e0,2, 0x9974ec,3, 0x997500,8, 0x997524,4, 0x997600,12, 0x998000,1, 0x998080,17, 0x998100,37, 0x998200,1, 0x998210,11, 0x998240,1, 0x998280,1, 0x998288,4, 0x9982a0,4, 0x9982c0,1, 0x998300,2, 0x998400,15, 0x998440,4, 0x998460,17, 0x9984c0,6, 0x9984e0,2, 0x9984ec,3, 0x998500,8, 0x998524,4, 0x998600,12, 0x999000,1, 0x999080,17, 0x999100,37, 0x999200,1, 0x999210,11, 0x999240,1, 0x999280,1, 0x999288,4, 0x9992a0,4, 0x9992c0,1, 0x999300,2, 0x999400,15, 0x999440,4, 0x999460,17, 0x9994c0,6, 0x9994e0,2, 0x9994ec,3, 0x999500,8, 0x999524,4, 0x999600,12, 0x99a000,1, 0x99a080,17, 0x99a100,37, 0x99a200,1, 0x99a210,11, 0x99a240,1, 0x99a280,1, 0x99a288,4, 0x99a2a0,4, 0x99a2c0,1, 0x99a300,2, 0x99a400,15, 0x99a440,4, 0x99a460,17, 0x99a4c0,6, 0x99a4e0,2, 0x99a4ec,3, 0x99a500,8, 0x99a524,4, 0x99a600,12, 0x99b000,1, 0x99b080,17, 0x99b100,37, 0x99b200,1, 0x99b210,11, 0x99b240,1, 0x99b280,1, 0x99b288,4, 0x99b2a0,4, 0x99b2c0,1, 0x99b300,2, 0x99b400,15, 0x99b440,4, 0x99b460,17, 0x99b4c0,6, 0x99b4e0,2, 0x99b4ec,3, 0x99b500,8, 0x99b524,4, 0x99b600,12, 0x99c000,3, 0x99c010,3, 0x99c020,3, 0x99c030,3, 0x99c040,3, 0x99c050,3, 0x99c060,3, 0x99c070,3, 0x99c080,3, 0x99c090,3, 0x99c0a0,3, 0x99c0b0,3, 0x99c0c0,3, 0x99c0d0,3, 0x99c0e0,3, 0x99c0f0,3, 0x99c100,3, 0x99c110,3, 0x99c120,18, 0x99c180,289, 0x99c800,78, 0x99ca04,1, 0x99ca20,24, 0x99ca84,1, 0x99ca94,3, 0x99cb00,52, 0x99cc00,3, 0x99cc10,3, 0x99cc20,3, 0x99cc30,3, 0x99cc40,3, 0x99cc50,3, 0x99cc60,3, 0x99cc70,3, 0x99cc80,3, 0x99cc90,3, 0x99cca0,3, 0x99ccb0,3, 0x99ccc0,3, 0x99ccd0,3, 0x99cce0,3, 0x99ccf0,3, 0x99cd00,3, 0x99cd10,1, 0x99d000,12, 0x99d084,1, 0x99d09c,12, 0x99d100,21, 0x99d180,21, 0x99d200,4, 0x99d280,21, 0x99d400,34, 0x99d500,34, 0x99d600,4, 0x99d700,34, 0x99d800,1, 0x99d820,8, 0x99e000,3, 0x99e200,36, 0x99e300,36, 0x99e400,4, 0x99e500,36, 0x99e600,7, 0x99e620,1, 0x99e800,1, 0x99e810,8, 0x99e840,3, 0x99e850,2, 0x99e880,9, 0x99e8c0,2, 0x99e904,1, 0x99e914,6, 0x99e940,20, 0x99f000,3, 0x99f080,10, 0x99f0c0,10, 0x99f100,4, 0x99f140,10, 0x99f180,20, 0x99f1e0,11, 0x99f210,3, 0x99f220,7, 0x99f240,1, 0x99f400,1, 0x99f408,2, 0x99f424,3, 0x99f434,4, 0x99f448,7, 0x99f468,9, 0x99f810,26, 0x99f880,17, 0x99f8d0,13, 0x99f940,80, 0x99fc00,27, 0x99fc80,4, 0x99fcc0,25, 0x99fd40,6, 0x99fd60,2, 0x99fd6c,3, 0x99fe04,88, 0x9a0000,14, 0x9a0040,7, 0x9a0060,7, 0x9a0080,4, 0x9a00a0,7, 0x9a00c0,1, 0x9a0104,3, 0x9a0114,1, 0x9a011c,4, 0x9a0130,8, 0x9a0200,5, 0x9a0220,2, 0x9a0244,1, 0x9a0254,6, 0x9a0280,8, 0x9a02c0,3, 0x9a02d0,3, 0x9a02e0,7, 0x9a0300,36, 0x9a0400,1, 0x9a0408,4, 0x9a0420,4, 0x9a0440,1, 0x9a0448,4, 0x9a0460,4, 0x9a0480,1, 0x9a0488,8, 0x9a04c0,8, 0x9a0500,2, 0x9c0000,1, 0x9c0008,4, 0x9c0020,4, 0x9c0040,1, 0x9c0048,4, 0x9c0060,4, 0x9c0080,17, 0x9c4004,1, 0x9c401c,25, 0x9c4084,1, 0x9c40bc,19, 0x9c4204,1, 0x9c427c,62, 0x9c4380,29, 0x9c4400,4, 0x9c4480,29, 0x9c4504,1, 0x9c453c,20, 0x9c4600,2, 0x9c4614,1, 0x9c461c,3, 0x9c4634,1, 0x9c463c,14, 0x9c4678,14, 0x9c46c0,19, 0x9c4804,1, 0x9c481c,25, 0x9c4884,1, 0x9c48bc,19, 0x9c4a04,1, 0x9c4a7c,62, 0x9c4b80,29, 0x9c4c00,4, 0x9c4c80,29, 0x9c4d04,1, 0x9c4d3c,20, 0x9c4e00,2, 0x9c4e14,1, 0x9c4e1c,3, 0x9c4e34,1, 0x9c4e3c,14, 0x9c4e78,14, 0x9c4ec0,19, 0x9c5000,141, 0x9c5244,1, 0x9c5260,8, 0x9c5284,1, 0x9c5294,3, 0x9c5300,21, 0x9c5380,21, 0x9c5400,21, 0x9c5480,21, 0x9c5500,4, 0x9c5580,21, 0x9c5600,4, 0x9c5680,21, 0x9c5700,19, 0x9c5780,19, 0x9c5800,19, 0x9c5880,19, 0x9c5900,4, 0x9c5980,19, 0x9c5a00,4, 0x9c5a80,19, 0x9c5b00,12, 0x9c6000,8, 0x9c8000,24, 0x9d0000,27, 0x9d0080,4, 0x9d00c0,25, 0x9d0140,6, 0x9d0160,2, 0x9d016c,3, 0x9d0184,11, 0x9d0200,4, 0x9e0000,1, 0x9e0008,18, 0x9e0080,29, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX4.csv0000644000175000017500000012523414522641732022246 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16388, 0x010084,1, 0x01008c,2, 0x010180,6, 0x01019c,9, 0x010304,1, 0x0103bc,52, 0x010500,35, 0x010604,1, 0x01060c,1, 0x010624,1, 0x01062c,1, 0x010644,1, 0x01064c,3, 0x010800,1, 0x010814,3, 0x010844,1, 0x01084c,4, 0x011000,32, 0x011200,32, 0x011400,32, 0x011600,32, 0x011800,32, 0x011a00,5, 0x011a24,1, 0x011a2c,1, 0x011a34,3, 0x011a44,1, 0x011a4c,2, 0x012000,20, 0x012088,22, 0x012100,18, 0x012200,36, 0x012300,3, 0x012310,1, 0x012320,1, 0x012330,1, 0x012340,1, 0x012350,1, 0x012360,1, 0x012370,1, 0x012400,166, 0x0126a0,1, 0x012700,32, 0x012800,1, 0x012808,1, 0x012810,1, 0x012818,1, 0x012820,1, 0x012828,1, 0x012830,1, 0x012838,1, 0x012850,1, 0x012858,1, 0x012860,1, 0x012868,1, 0x012870,1, 0x012878,1, 0x012880,1, 0x012888,1, 0x012890,5, 0x012900,10, 0x012940,6, 0x012960,6, 0x012980,5, 0x012a00,6, 0x012a40,5, 0x012a80,9, 0x012ac0,19, 0x012b10,2, 0x014000,1, 0x014010,10, 0x014104,1, 0x01410c,4, 0x014200,1, 0x014210,4, 0x014300,4, 0x014400,3, 0x014410,1, 0x014444,1, 0x01444c,4, 0x014480,2, 0x014500,35, 0x014590,1, 0x014600,32, 0x014704,1, 0x01470c,1, 0x014804,2, 0x014814,3, 0x014824,2, 0x014834,3, 0x014844,2, 0x014854,5, 0x014a00,4, 0x014a14,2, 0x015004,1, 0x01500c,4, 0x015204,1, 0x015214,4, 0x015228,1, 0x015244,1, 0x015250,4, 0x015274,1, 0x01527c,1, 0x0152a4,1, 0x015300,4, 0x015314,1, 0x01531c,3, 0x015404,2, 0x015430,20, 0x015484,2, 0x015498,5, 0x0154bc,1, 0x0154c8,1, 0x0154d4,1, 0x01550c,3, 0x015524,3, 0x015608,3, 0x015618,4, 0x015680,16, 0x015704,2, 0x015730,20, 0x015784,3, 0x015794,3, 0x0157c0,6, 0x015800,52, 0x0158d4,1, 0x0158dc,1, 0x0158e4,3, 0x0158f4,1, 0x0158fc,52, 0x015b04,2, 0x015b14,3, 0x015b24,2, 0x015b38,6, 0x015b60,5, 0x015c04,1, 0x015cb8,18, 0x015d98,1, 0x015e00,1, 0x015e08,1, 0x015e10,1, 0x016000,32, 0x016100,7, 0x016120,2, 0x016144,3, 0x016204,1, 0x01620c,1, 0x016224,1, 0x01622c,1, 0x016234,1, 0x01623c,1, 0x016244,1, 0x01624c,1, 0x016254,1, 0x01625c,2, 0x016270,1, 0x016280,1, 0x016290,1, 0x0162a0,1, 0x0162b0,1, 0x0162c0,1, 0x0162d0,1, 0x0162e0,1, 0x0162f0,1, 0x016300,1, 0x016310,1, 0x016320,1, 0x016330,1, 0x016340,32, 0x016400,19, 0x016454,7, 0x016484,1, 0x01648c,1, 0x016800,9, 0x016840,16, 0x017800,1, 0x017828,1, 0x017850,1, 0x017878,1, 0x0178a0,12, 0x0179ac,1, 0x0179d8,4, 0x017a00,6, 0x017a20,6, 0x017a40,3, 0x017c00,6, 0x017c20,6, 0x017c40,6, 0x017c60,6, 0x017c80,6, 0x017ca0,6, 0x017cc0,6, 0x017ce0,6, 0x017d00,3, 0x017d10,5, 0x018400,11, 0x018430,2, 0x018440,4, 0x018604,1, 0x018618,2, 0x018640,4, 0x018660,2, 0x018800,1, 0x018810,4, 0x018844,1, 0x01884c,4, 0x018880,2, 0x01a400,12, 0x01a444,1, 0x01a44c,1, 0x01a800,1, 0x01a814,3, 0x01a844,1, 0x01a84c,4, 0x01c400,7, 0x01c500,8, 0x01c544,1, 0x01c554,3, 0x01c564,3, 0x01c574,3, 0x01c604,1, 0x01c60c,3, 0x01c800,1, 0x01c814,3, 0x01c844,1, 0x01c84c,4, 0x01f000,1, 0x01f400,1, 0x01f408,4, 0x01f41c,3, 0x01f500,2, 0x01f800,1, 0x01f814,3, 0x01f844,1, 0x01f84c,4, 0x01f880,3, 0x020004,1, 0x02000c,4, 0x020080,9, 0x020800,16, 0x020900,192, 0x021004,1, 0x02100c,4, 0x021400,5, 0x021418,5, 0x021480,1, 0x021704,2, 0x02173c,17, 0x021804,1, 0x02180c,4, 0x021840,2, 0x022280,12, 0x022408,6, 0x022444,1, 0x022454,3, 0x022504,1, 0x02250c,4, 0x022624,1, 0x02262c,3, 0x02263c,1, 0x022804,1, 0x02280c,4, 0x022904,4, 0x022924,4, 0x024000,36, 0x0240c0,21, 0x024120,11, 0x024200,5, 0x024220,1, 0x024230,8, 0x024258,1, 0x024260,1, 0x024270,9, 0x0242a0,1, 0x0242b0,4, 0x0242c8,2, 0x024300,5, 0x024318,2, 0x02439c,25, 0x024424,4, 0x024464,13, 0x0244a4,1, 0x0244ac,3, 0x0244c0,2, 0x0244d0,3, 0x0244e0,3, 0x0244f0,3, 0x024500,3, 0x024510,3, 0x024520,3, 0x024530,3, 0x024884,11, 0x0248b4,3, 0x0248c4,1, 0x0248cc,1, 0x0248d4,1, 0x0248dc,1, 0x0248f0,2, 0x024908,6, 0x024928,6, 0x024968,6, 0x024984,3, 0x024994,1, 0x02499c,6, 0x0249b8,7, 0x024a08,6, 0x024a28,6, 0x024a68,6, 0x024a84,1, 0x024a8c,1, 0x024a94,1, 0x024a9c,13, 0x024ae0,6, 0x024b00,7, 0x024b20,6, 0x024b40,8, 0x024c00,2, 0x024c24,3, 0x024c34,3, 0x025004,6, 0x025800,37, 0x025904,1, 0x02590c,1, 0x026000,99, 0x026200,1, 0x026800,7, 0x026824,6, 0x026840,2, 0x026864,1, 0x02686c,1, 0x026874,3, 0x026884,1, 0x0268a4,7, 0x026904,1, 0x02690c,4, 0x026940,1, 0x026980,33, 0x026a0c,7, 0x026a30,1, 0x026a44,4, 0x026a60,1, 0x026a70,1, 0x026b00,9, 0x026b44,2, 0x026b68,6, 0x026b84,2, 0x026ba8,14, 0x026c00,16, 0x026c44,1, 0x026c4c,1, 0x026c84,1, 0x026c8c,4, 0x026cc4,1, 0x026ccc,4, 0x026d00,2, 0x028800,2, 0x028844,1, 0x02884c,4, 0x029004,7, 0x029b30,2, 0x029b50,4, 0x02a004,1, 0x02a00c,4, 0x02a040,6, 0x02a200,1, 0x02a210,11, 0x02a240,8, 0x02a484,1, 0x02a4c0,16, 0x02a780,1, 0x02a7a0,4, 0x02a7c0,1, 0x02a900,1, 0x02aa04,1, 0x02aa0c,4, 0x02ab00,40, 0x02aba4,1, 0x02abac,1, 0x02abb4,1, 0x02abbc,1, 0x02abc4,1, 0x02abcc,1, 0x02abe0,4, 0x02abf4,2, 0x02ac00,2, 0x02ac10,3, 0x02ac44,3, 0x02ad00,1, 0x02ad08,1, 0x02ad10,1, 0x02ad18,1, 0x02ad20,1, 0x02ad28,1, 0x02ad30,1, 0x02ad38,1, 0x02ad40,1, 0x02ad48,1, 0x02ad50,1, 0x02ad58,1, 0x02ad60,1, 0x02ad68,1, 0x02ad70,1, 0x02ad78,1, 0x02ad80,1, 0x02ad88,1, 0x02ad90,1, 0x02ad98,1, 0x02ada0,1, 0x02ada8,1, 0x02adb0,1, 0x02adb8,1, 0x02adc0,1, 0x02adc8,1, 0x02add0,1, 0x02add8,1, 0x02ade0,1, 0x02ade8,1, 0x02adf0,1, 0x02adf8,1, 0x02ae00,6, 0x02ae20,5, 0x02ae40,4, 0x02c000,6, 0x02c100,5, 0x02c204,1, 0x02c214,3, 0x02c224,1, 0x02c22c,4, 0x02c244,2, 0x02c250,5, 0x02c400,2, 0x02c428,2, 0x02c450,2, 0x02c478,2, 0x02c4a0,24, 0x02c5ac,1, 0x02c5d8,4, 0x02c600,6, 0x02c620,6, 0x02c640,6, 0x02c660,6, 0x02c680,3, 0x02c800,3, 0x02c820,6, 0x02c840,6, 0x02c860,6, 0x02c880,6, 0x02c8a0,6, 0x02c8c0,6, 0x02c8e0,6, 0x02c900,6, 0x02c920,6, 0x02c940,6, 0x02c960,6, 0x02c980,6, 0x02c9a0,6, 0x02c9c0,6, 0x02c9e0,6, 0x02ca00,6, 0x02ca20,6, 0x02ca40,6, 0x02ca60,6, 0x02ca80,6, 0x02caa0,6, 0x02cac0,6, 0x02cae0,6, 0x02cb00,6, 0x02cb20,6, 0x02cc48,4, 0x02cd00,9, 0x02cd40,17, 0x030004,2, 0x030034,19, 0x030084,2, 0x0300bc,17, 0x030104,2, 0x030138,27, 0x030300,7, 0x030340,2, 0x03034c,2, 0x030384,1, 0x0303c0,16, 0x030404,1, 0x03040c,4, 0x030804,1, 0x03080c,4, 0x030c04,1, 0x030c0c,4, 0x030c40,4, 0x031000,11, 0x031100,11, 0x031200,17, 0x031280,6, 0x031304,1, 0x03130c,5, 0x031400,6, 0x031420,1, 0x031444,2, 0x031454,3, 0x031464,2, 0x031474,11, 0x031500,7, 0x031520,6, 0x031540,8, 0x031600,13, 0x031640,6, 0x031700,2, 0x034200,24, 0x034280,10, 0x0342ac,2, 0x0342c0,6, 0x0342f0,39, 0x034600,24, 0x034680,10, 0x0346ac,2, 0x0346c0,6, 0x0346f0,39, 0x034c00,6, 0x034c20,4, 0x034c40,9, 0x034c80,9, 0x034e04,2, 0x034e14,3, 0x034e44,1, 0x034e4c,4, 0x034e80,6, 0x034f04,1, 0x034f18,11, 0x034f80,2, 0x035000,2, 0x035010,3, 0x035044,3, 0x035100,66, 0x035210,3, 0x035244,3, 0x035300,64, 0x035404,1, 0x03540c,8, 0x037000,6, 0x03702c,7, 0x037080,10, 0x0370ac,4, 0x037100,4, 0x037200,2, 0x037210,3, 0x037244,3, 0x037300,70, 0x03742c,7, 0x037480,10, 0x0374ac,4, 0x037500,4, 0x037600,2, 0x037610,3, 0x037644,3, 0x037700,69, 0x037818,4, 0x038000,3, 0x038104,3, 0x03813c,2, 0x038150,3, 0x038400,2, 0x038428,2, 0x038450,2, 0x038478,2, 0x0384a0,22, 0x0385ac,1, 0x0385d8,4, 0x038600,6, 0x038620,6, 0x038640,6, 0x038660,6, 0x038680,3, 0x038800,3, 0x038820,6, 0x038840,6, 0x038860,6, 0x038880,6, 0x0388a0,6, 0x0388c0,6, 0x038900,28, 0x038978,1, 0x038a40,25, 0x038ac0,16, 0x039000,35, 0x039090,3, 0x039100,35, 0x039190,3, 0x039200,35, 0x039290,3, 0x039300,35, 0x039390,3, 0x039400,35, 0x039490,3, 0x039500,1, 0x039800,3, 0x039884,1, 0x0398c0,16, 0x039904,2, 0x039934,20, 0x039a04,2, 0x039a10,4, 0x039a24,2, 0x039a30,4, 0x039a44,2, 0x039a50,4, 0x039a64,2, 0x039a70,8, 0x039c00,7, 0x039c20,6, 0x039c40,8, 0x039d00,11, 0x039d40,11, 0x039d84,1, 0x039dc0,26, 0x039e30,2, 0x039e44,3, 0x039e54,1, 0x039e5c,2, 0x039e80,2, 0x039e90,3, 0x039ea4,1, 0x039eac,3, 0x039ec0,3, 0x039f00,9, 0x039f40,22, 0x039fa0,6, 0x039fc0,8, 0x03c000,3, 0x03c010,3, 0x03c020,3, 0x03c040,9, 0x03c068,6, 0x03c090,2, 0x03c0a0,3, 0x03c0c0,12, 0x03c0f4,1, 0x03c100,2, 0x03c110,3, 0x03c120,1, 0x03c130,11, 0x03c160,2, 0x03c180,4, 0x03c194,3, 0x03c1a4,2, 0x03c1b0,4, 0x03c2e0,5, 0x03c2f8,2, 0x03c30c,13, 0x03c34c,77, 0x03c48c,18, 0x03c500,32, 0x03c800,16, 0x03c84c,18, 0x03c8e0,2, 0x03c8ec,3, 0x03c900,1, 0x03c910,5, 0x03c930,5, 0x03c950,5, 0x03c970,5, 0x03c9a4,3, 0x03ca78,34, 0x03cb3c,18, 0x03cb94,3, 0x03cba4,3, 0x03cbf0,1, 0x03cbf8,10, 0x03cc30,1, 0x03cc44,4, 0x03cc60,1, 0x03cc80,1, 0x03cc90,1, 0x03d004,6, 0x03e004,1, 0x03e00c,4, 0x03e404,1, 0x03e40c,4, 0x03e604,1, 0x03e60c,4, 0x03e800,1, 0x03f034,19, 0x03f084,2, 0x03f0c0,16, 0x03f200,1, 0x03f210,1, 0x03f300,6, 0x03f320,6, 0x03f380,9, 0x03f3c0,16, 0x050000,1, 0x050008,2, 0x050044,8, 0x050104,1, 0x050178,34, 0x050204,1, 0x05020c,1, 0x050214,1, 0x050224,1, 0x05022c,1, 0x050234,1, 0x05023c,1, 0x050244,1, 0x05024c,1, 0x050254,1, 0x050264,3, 0x050280,2, 0x0502b0,2, 0x0502c4,1, 0x0502cc,1, 0x0502d4,1, 0x0502dc,1, 0x0502e4,1, 0x0502ec,1, 0x0502f4,1, 0x0502fc,1, 0x050304,1, 0x05030c,1, 0x050314,3, 0x050324,3, 0x050334,6, 0x050380,32, 0x050404,1, 0x050438,18, 0x050500,2, 0x050544,1, 0x05054c,4, 0x050584,2, 0x050598,2, 0x0505a4,1, 0x0505b0,4, 0x0505c4,1, 0x0505cc,1, 0x0505d4,1, 0x0505e0,1, 0x0505f0,17, 0x050700,2, 0x050800,1, 0x050820,9, 0x050850,5, 0x050870,5, 0x0508c4,3, 0x0508d4,3, 0x0508e4,3, 0x0508f4,4, 0x050910,5, 0x050930,4, 0x050944,1, 0x05094c,57, 0x050a40,1, 0x050a50,28, 0x050ac4,1, 0x050acc,2, 0x050ad8,10, 0x050b04,1, 0x050b0c,1, 0x050b14,1, 0x050b20,9, 0x050b50,4, 0x050b64,1, 0x050b70,6, 0x050b8c,4, 0x050ba4,4, 0x050bc0,1, 0x050bd0,1, 0x050be0,1, 0x050bf0,1, 0x050c00,1, 0x050c14,1, 0x050c1c,1, 0x050c24,1, 0x050c2c,1, 0x050c34,1, 0x050c3c,1, 0x050c44,1, 0x050c4c,1, 0x050c54,4, 0x050c70,1, 0x050c80,1, 0x050c90,1, 0x050ca0,1, 0x050cb0,1, 0x050cc0,1, 0x050cd0,1, 0x050ce0,1, 0x050cf0,1, 0x050d00,1, 0x050d10,1, 0x050d20,1, 0x050d30,1, 0x050d40,1, 0x050d50,1, 0x050d60,1, 0x050d70,1, 0x050d80,1, 0x050d90,1, 0x050da0,1, 0x052000,192, 0x052800,2, 0x053000,51, 0x053400,3, 0x053420,6, 0x053440,6, 0x053460,6, 0x053480,6, 0x0534a0,6, 0x0534c0,6, 0x0534e0,6, 0x053500,6, 0x053520,6, 0x053540,6, 0x053560,6, 0x053600,32, 0x0536c0,16, 0x053704,1, 0x053740,18, 0x0537a0,10, 0x0537e0,29, 0x053860,10, 0x054204,1, 0x05420c,1, 0x054214,1, 0x054224,1, 0x05422c,1, 0x054234,1, 0x054244,1, 0x05424c,3, 0x054304,1, 0x054340,16, 0x0543a0,1, 0x0543b0,1, 0x0543c0,1, 0x0543d0,4, 0x054400,8, 0x054820,3, 0x054928,9, 0x054954,4, 0x054970,1, 0x054980,1, 0x054990,3, 0x0549c4,13, 0x054a04,1, 0x054a0c,4, 0x054a40,1, 0x054a50,5, 0x054a70,1, 0x054a80,1, 0x054a90,2, 0x054c04,1, 0x054c0c,4, 0x054c40,1, 0x054c50,4, 0x054d40,1, 0x054d80,7, 0x054e04,1, 0x054e0c,4, 0x054e40,1, 0x054e50,4, 0x054f40,1, 0x054f80,7, 0x055000,11, 0x055050,7, 0x055070,16, 0x0550b8,8, 0x055200,13, 0x055240,11, 0x055300,16, 0x055400,3, 0x055420,6, 0x055440,6, 0x055460,6, 0x055480,6, 0x0554a0,6, 0x0554c0,6, 0x0554e0,6, 0x055500,6, 0x055520,6, 0x055540,6, 0x055560,6, 0x055580,6, 0x0555a0,6, 0x0555c0,6, 0x0555e0,6, 0x055600,6, 0x055620,6, 0x055640,6, 0x055660,6, 0x056000,2, 0x056044,1, 0x05604c,4, 0x056800,2, 0x056844,1, 0x05684c,4, 0x057004,7, 0x057b20,2, 0x057b30,2, 0x057b50,5, 0x058004,1, 0x05800c,4, 0x058800,7, 0x058820,6, 0x058844,2, 0x058864,9, 0x058890,1, 0x0588a0,1, 0x0588b0,1, 0x0588c0,1, 0x0588d0,1, 0x058904,3, 0x058978,66, 0x058a84,1, 0x058a8c,1, 0x058a94,1, 0x058aa0,2, 0x058ff0,4, 0x059004,1, 0x05900c,4, 0x059080,39, 0x059120,1, 0x059130,1, 0x059140,1, 0x059150,1, 0x059160,1, 0x059800,1, 0x059810,1, 0x059820,1, 0x059830,1, 0x059840,1, 0x059850,1, 0x059860,1, 0x059870,1, 0x059880,1, 0x059890,1, 0x0598a0,1, 0x0598d4,2, 0x0598e0,1, 0x059900,3, 0x059980,9, 0x0599c0,32, 0x059a44,3, 0x059a54,1, 0x059a5c,1, 0x059c00,2, 0x059c28,2, 0x059c50,2, 0x059c78,2, 0x059ca0,20, 0x059dac,1, 0x059dd8,4, 0x059e00,6, 0x059e20,6, 0x059e40,6, 0x059e60,6, 0x059e80,3, 0x05a000,4, 0x05a020,2, 0x05a030,1, 0x05a04c,2, 0x05a070,4, 0x05a088,3, 0x05a0a0,1, 0x05a0b0,1, 0x05a0c0,1, 0x060020,4, 0x060120,4, 0x060144,2, 0x060154,7, 0x060174,1, 0x06017c,3, 0x06018c,1, 0x0601a0,4, 0x0601b8,2, 0x0601c4,2, 0x0601e4,7, 0x060204,1, 0x06020c,4, 0x060240,16, 0x060304,1, 0x06030c,1, 0x060400,2, 0x060420,3, 0x060430,1, 0x060440,1, 0x060484,2, 0x0604b8,18, 0x060504,1, 0x06050c,1, 0x060514,1, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,1, 0x060a8c,1, 0x060a94,1, 0x060a9c,1, 0x060bf0,3, 0x060c00,11, 0x060c30,3, 0x061004,1, 0x061010,1, 0x061018,4, 0x061044,2, 0x061054,3, 0x061100,32, 0x061200,1, 0x061404,1, 0x06140c,4, 0x061440,2, 0x061468,2, 0x061478,2, 0x06180c,8, 0x061908,6, 0x061928,6, 0x061968,6, 0x061988,6, 0x0619a8,6, 0x0619e8,14, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062080,2, 0x062094,1, 0x06209c,2, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e4,3, 0x0621f4,3, 0x062404,1, 0x06240c,4, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,1, 0x062900,3, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,3, 0x062960,2, 0x063000,1, 0x063010,4, 0x063024,1, 0x06302c,1, 0x063034,1, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,3, 0x063100,2, 0x063144,1, 0x06314c,1, 0x063154,1, 0x063164,1, 0x06316c,1, 0x063174,1, 0x063180,16, 0x063208,1, 0x063210,1, 0x063218,1, 0x063224,3, 0x063240,10, 0x063300,8, 0x064004,1, 0x06400c,4, 0x064200,3, 0x064300,1, 0x064308,6, 0x064324,2, 0x064338,2, 0x064380,2, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,3, 0x064430,1, 0x064440,1, 0x064484,2, 0x0644b8,18, 0x064504,1, 0x06450c,1, 0x064514,1, 0x064804,1, 0x064884,2, 0x0648c8,14, 0x065018,2, 0x065080,9, 0x0650c0,16, 0x065104,3, 0x065114,1, 0x065200,3, 0x065220,6, 0x065240,6, 0x065260,6, 0x065280,6, 0x065300,1, 0x065f00,2, 0x066000,2, 0x066028,2, 0x066050,2, 0x066078,2, 0x0660a0,24, 0x0661ac,1, 0x0661d8,4, 0x066200,6, 0x066220,6, 0x066240,6, 0x066260,6, 0x066280,3, 0x066400,6, 0x066500,17, 0x066550,8, 0x066574,3, 0x070004,1, 0x07000c,4, 0x070400,7, 0x070420,11, 0x070500,5, 0x070524,1, 0x07052c,1, 0x070534,1, 0x070540,4, 0x070600,142, 0x070884,2, 0x0708b4,19, 0x070904,1, 0x070940,16, 0x071000,1, 0x071094,1, 0x071104,2, 0x071140,16, 0x071204,1, 0x07120c,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,3, 0x072804,1, 0x07280c,4, 0x072880,1, 0x072888,3, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,16, 0x074830,4, 0x074884,1, 0x074890,4, 0x074900,3, 0x074920,6, 0x074940,6, 0x074980,9, 0x0749c0,16, 0x074c00,1, 0x074c28,1, 0x074c50,1, 0x074c78,1, 0x074ca0,12, 0x074dac,1, 0x074dd8,4, 0x074e00,6, 0x074e20,6, 0x074e40,3, 0x075000,3, 0x075010,2, 0x075020,3, 0x075100,2, 0x078000,20, 0x078054,9, 0x07807c,3, 0x07808c,7, 0x078100,5, 0x078118,4, 0x078130,2, 0x078204,2, 0x078244,15, 0x078284,2, 0x0782c4,17, 0x07830c,4, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,1, 0x078404,1, 0x07840c,4, 0x078804,18, 0x078850,4, 0x078884,1, 0x07889c,1, 0x0788a4,23, 0x079000,9, 0x079040,16, 0x079804,2, 0x079828,6, 0x079844,2, 0x079868,6, 0x079884,2, 0x0798a8,7, 0x0798d0,7, 0x079904,1, 0x07990c,1, 0x079914,1, 0x079a04,2, 0x079a40,16, 0x079a84,2, 0x079a90,2, 0x079a9c,13, 0x079b04,2, 0x079b3c,17, 0x079c04,2, 0x079c40,16, 0x079c84,2, 0x079c98,2, 0x079cc4,13, 0x079cfc,7, 0x079d24,1, 0x079d2c,1, 0x079d80,2, 0x079d8c,1, 0x079f00,6, 0x079f20,6, 0x079f40,6, 0x079f60,6, 0x079fa0,3, 0x079fb0,1, 0x07a000,3, 0x07a010,3, 0x07a020,3, 0x07a040,9, 0x07a068,6, 0x07a090,2, 0x07a0a0,3, 0x07a0c0,12, 0x07a0f4,1, 0x07a100,2, 0x07a110,3, 0x07a120,1, 0x07a130,11, 0x07a160,2, 0x07a180,4, 0x07a194,3, 0x07a1a4,2, 0x07a1b0,4, 0x07a2e0,5, 0x07a2f8,2, 0x07a30c,13, 0x07a34c,77, 0x07a48c,18, 0x07a500,32, 0x07a800,16, 0x07a84c,18, 0x07a8e0,2, 0x07a8ec,3, 0x07a900,1, 0x07a910,5, 0x07a930,5, 0x07a950,5, 0x07a970,5, 0x07a9a4,3, 0x07aa78,34, 0x07ab3c,18, 0x07ab94,3, 0x07aba4,3, 0x07abf0,1, 0x07abf8,10, 0x07ac30,1, 0x07ac44,4, 0x07ac60,1, 0x07ac80,1, 0x07ac90,1, 0x07b004,6, 0x080000,29, 0x080340,14, 0x08037c,3, 0x08038c,1, 0x0803c0,2, 0x0803e4,3, 0x0803f4,3, 0x080404,6, 0x080804,2, 0x080874,35, 0x081000,129, 0x081210,4, 0x081228,3, 0x081240,2, 0x081264,2, 0x081274,3, 0x081284,2, 0x081298,2, 0x0812a4,1, 0x0812b4,21, 0x081310,8, 0x081344,1, 0x08134c,1, 0x081354,1, 0x081364,2, 0x081370,4, 0x081384,2, 0x081390,4, 0x081404,2, 0x081478,34, 0x081504,2, 0x081518,14, 0x081580,5, 0x081598,2, 0x0815a4,10, 0x082000,29, 0x082340,14, 0x08237c,3, 0x08238c,1, 0x0823c0,2, 0x0823e4,3, 0x0823f4,3, 0x082404,1, 0x08240c,4, 0x082804,2, 0x082874,35, 0x082904,2, 0x082974,35, 0x083000,129, 0x083210,6, 0x083244,2, 0x083254,7, 0x083284,1, 0x08328c,1, 0x083294,1, 0x0832a4,1, 0x0832b4,19, 0x083304,2, 0x083310,4, 0x083324,2, 0x083330,14, 0x084000,29, 0x084340,14, 0x08437c,3, 0x08438c,1, 0x0843c0,2, 0x0843e4,3, 0x0843f4,3, 0x084404,1, 0x08440c,4, 0x084804,2, 0x084874,35, 0x084904,2, 0x084974,35, 0x085000,32, 0x085200,1, 0x085210,7, 0x085240,12, 0x085280,2, 0x0852a4,1, 0x0852b4,3, 0x085304,1, 0x08530c,1, 0x085314,1, 0x085324,2, 0x085334,3, 0x085344,2, 0x085358,2, 0x085364,2, 0x085378,2, 0x085384,2, 0x085398,2, 0x0853c0,23, 0x086000,2, 0x086020,2, 0x086040,1, 0x086400,11, 0x086800,3, 0x086820,6, 0x086840,6, 0x086860,6, 0x086880,6, 0x0868a0,6, 0x0868c0,6, 0x0868e0,6, 0x086900,9, 0x086940,16, 0x087000,26, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b0,9, 0x087200,1, 0x087208,1, 0x087210,3, 0x090000,17, 0x090060,2, 0x09006c,1, 0x090104,1, 0x090140,25, 0x0901a8,2, 0x0901c0,9, 0x0901e8,2, 0x090204,1, 0x090220,24, 0x090300,6, 0x090320,9, 0x090348,1, 0x090350,1, 0x090400,6, 0x090420,9, 0x090448,1, 0x090450,1, 0x090500,6, 0x090520,6, 0x090540,2, 0x090564,2, 0x090578,3, 0x091004,3, 0x091800,8, 0x091824,2, 0x091830,10, 0x091860,6, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,3, 0x093404,1, 0x093440,16, 0x093504,1, 0x09353c,28, 0x0935b0,2, 0x0935c0,3, 0x094000,9, 0x094040,19, 0x0940c0,1, 0x094800,1, 0x094828,1, 0x094850,1, 0x094878,1, 0x0948a0,8, 0x0949ac,1, 0x0949d8,4, 0x094a00,6, 0x094a20,6, 0x094a40,3, 0x096000,1, 0x096010,4, 0x096028,3, 0x096104,1, 0x09610c,7, 0x096204,1, 0x09620c,4, 0x096488,1, 0x096498,3, 0x0964b0,4, 0x096504,1, 0x09650c,4, 0x096584,4, 0x096600,16, 0x096644,2, 0x096658,10, 0x096684,2, 0x0966bc,51, 0x096800,11, 0x096884,3, 0x0968a0,12, 0x097100,6, 0x097120,1, 0x0a0000,10, 0x0a0030,4, 0x0a0080,6, 0x0a00a0,8, 0x0a0400,7, 0x0a0420,2, 0x0a0464,3, 0x0a0480,6, 0x0a04a0,6, 0x0a0500,30, 0x0a0580,2, 0x0a0800,14, 0x0a0840,6, 0x0a0860,18, 0x0a1004,1, 0x0a100c,4, 0x0a1044,2, 0x0a1058,2, 0x0a1064,2, 0x0a1074,6, 0x0a1090,9, 0x0a1204,1, 0x0a120c,4, 0x0a1244,2, 0x0a1254,6, 0x0a1270,6, 0x0a1300,1, 0x0a1404,1, 0x0a1440,16, 0x0a1484,1, 0x0a148c,4, 0x0a14c4,1, 0x0a14d0,12, 0x0a1504,1, 0x0a1510,12, 0x0a1544,1, 0x0a1550,12, 0x0a1584,1, 0x0a1590,12, 0x0a15c4,1, 0x0a15cc,5, 0x0a15e4,1, 0x0a15ec,5, 0x0a1604,1, 0x0a160c,5, 0x0a1624,1, 0x0a162c,5, 0x0a1644,1, 0x0a164c,5, 0x0a1664,1, 0x0a166c,5, 0x0a1684,1, 0x0a168c,5, 0x0a16a4,1, 0x0a16ac,5, 0x0a16c4,7, 0x0a16e4,1, 0x0a16ec,1, 0x0a16f4,1, 0x0a16fc,1, 0x0a1704,17, 0x0a1754,1, 0x0a175c,1, 0x0a1764,2, 0x0a1774,3, 0x0a1800,18, 0x0a1900,3, 0x0a1948,3, 0x0a1958,6, 0x0a1974,8, 0x0a2004,1, 0x0a200c,4, 0x0a2400,2, 0x0a240c,6, 0x0a2440,1, 0x0a2450,4, 0x0a2468,3, 0x0a2480,1, 0x0a24a0,10, 0x0a24d0,9, 0x0a2804,1, 0x0a280c,4, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c68,3, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,1, 0x0a300c,4, 0x0a3040,2, 0x0a3064,3, 0x0a3074,4, 0x0a3200,9, 0x0a3230,2, 0x0a323c,2, 0x0a3248,4, 0x0a3400,1, 0x0a3408,3, 0x0a3418,4, 0x0a3430,2, 0x0a343c,1, 0x0a3480,1, 0x0a3490,1, 0x0a3504,1, 0x0a3510,76, 0x0a4000,48, 0x0a4100,3, 0x0a4110,6, 0x0a412c,4, 0x0a4140,1, 0x0a4304,1, 0x0a4318,10, 0x0a4804,1, 0x0a480c,4, 0x0a4840,2, 0x0a4864,3, 0x0a4874,3, 0x0a4c04,2, 0x0a4c10,2, 0x0a4c1c,6, 0x0a4c38,2, 0x0a4c50,8, 0x0a4c78,19, 0x0a4d04,2, 0x0a4d40,21, 0x0a4da4,1, 0x0a4dac,1, 0x0a4db4,1, 0x0a4dc0,1, 0x0a5000,14, 0x0a6000,2, 0x0a6028,2, 0x0a6050,2, 0x0a6078,2, 0x0a60a0,35, 0x0a61ac,1, 0x0a61d8,4, 0x0a6200,6, 0x0a6220,6, 0x0a6240,6, 0x0a6260,6, 0x0a6280,3, 0x0a6400,3, 0x0a6420,6, 0x0a6440,6, 0x0a6460,6, 0x0a6480,6, 0x0a64a0,6, 0x0a64c0,6, 0x0a6500,9, 0x0a6540,18, 0x0a65c0,4, 0x0a8000,10, 0x0a802c,15, 0x0a806c,5, 0x0a8408,5, 0x0a8424,3, 0x0a8434,6, 0x0a8450,2, 0x0a845c,5, 0x0a84c4,1, 0x0a84cc,4, 0x0a8604,1, 0x0a860c,4, 0x0a8700,17, 0x0a8750,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,4, 0x0a8994,1, 0x0a899c,1, 0x0a89a4,3, 0x0a89c0,1, 0x0a8a00,4, 0x0a8aa4,1, 0x0a8aac,1, 0x0a8ab4,1, 0x0a8ad4,10, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,6, 0x0a9000,3, 0x0a9010,21, 0x0a9080,4, 0x0a9100,10, 0x0a91f4,3, 0x0a920c,35, 0x0a92a4,7, 0x0a930c,39, 0x0a940c,35, 0x0a949c,9, 0x0a9500,2, 0x0a950c,3, 0x0a951c,3, 0x0a954c,13, 0x0a9804,1, 0x0a980c,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,2, 0x0a9c28,1, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d48,3, 0x0a9d80,1, 0x0a9dc4,3, 0x0a9dd4,3, 0x0a9de4,3, 0x0a9df4,4, 0x0a9e20,8, 0x0a9e48,3, 0x0a9e84,1, 0x0a9e98,1, 0x0a9ea0,8, 0x0a9f00,6, 0x0a9f20,6, 0x0a9f40,6, 0x0a9f60,6, 0x0a9f80,9, 0x0a9fc0,31, 0x0aa204,1, 0x0aa20c,4, 0x0b0000,2, 0x0b0010,4, 0x0b1000,15, 0x0b1040,10, 0x0b1080,20, 0x0b1100,2, 0x0b1110,2, 0x0b1120,2, 0x0b1160,2, 0x0b116c,1, 0x0b1180,3, 0x0b1190,3, 0x0b11a0,3, 0x0b11e0,2, 0x0b11ec,1, 0x0b1200,2, 0x0b1210,2, 0x0b1260,2, 0x0b126c,1, 0x0b1280,3, 0x0b1290,3, 0x0b12e0,2, 0x0b12ec,1, 0x0b1300,2, 0x0b1310,2, 0x0b1320,2, 0x0b1360,2, 0x0b136c,1, 0x0b1380,3, 0x0b1390,3, 0x0b13e0,2, 0x0b13ec,1, 0x0b1400,3, 0x0b1410,3, 0x0b1460,2, 0x0b146c,1, 0x0b1480,3, 0x0b1490,7, 0x0b14b0,4, 0x0b14e0,2, 0x0b14ec,1, 0x0b1500,3, 0x0b1510,3, 0x0b1560,2, 0x0b156c,1, 0x0b1580,2, 0x0b1590,2, 0x0b15e0,2, 0x0b15ec,1, 0x0b1600,3, 0x0b1610,3, 0x0b1660,2, 0x0b166c,1, 0x0b1680,3, 0x0b1690,3, 0x0b16e0,2, 0x0b16ec,1, 0x0b1700,8, 0x0b1760,2, 0x0b176c,1, 0x0b1780,3, 0x0b1790,3, 0x0b17e0,2, 0x0b17ec,1, 0x0b1800,9, 0x0b1840,16, 0x0b2000,2, 0x0b2010,24, 0x0b2080,9, 0x0b20c0,18, 0x0b2110,24, 0x0b2180,9, 0x0b21c0,18, 0x0b2210,24, 0x0b2280,9, 0x0b22c0,18, 0x0b2310,24, 0x0b2380,9, 0x0b23c0,18, 0x0b2410,24, 0x0b2480,9, 0x0b24c0,18, 0x0b2510,24, 0x0b2580,9, 0x0b25c0,18, 0x0b2610,24, 0x0b2680,9, 0x0b26c0,18, 0x0b2710,24, 0x0b2780,9, 0x0b27c0,16, 0x0b2900,1, 0x0b2910,1, 0x0b3000,157, 0x0b3278,26, 0x0b3300,9, 0x0b3404,1, 0x0b340c,4, 0x0b3800,73, 0x0b3940,20, 0x0b39a0,4, 0x0b39c4,5, 0x0b3a00,1, 0x0b3a20,8, 0x0b3a44,3, 0x0b4000,7, 0x0b4040,12, 0x0b4100,9, 0x0b4140,16, 0x0b5000,2, 0x0b5028,2, 0x0b5050,2, 0x0b5078,2, 0x0b50a0,5, 0x0b51ac,1, 0x0b51d8,4, 0x0b5200,6, 0x0b5220,6, 0x0b5240,6, 0x0b5260,6, 0x0b5280,3, 0x0b6800,3, 0x0b6820,6, 0x0b6840,6, 0x0b6860,6, 0x0b6880,6, 0x0b68a0,6, 0x0b68c0,6, 0x0b68e0,6, 0x0b6900,6, 0x0d0000,5, 0x0d0038,4, 0x0d0050,4, 0x0d0080,3, 0x0d00a0,6, 0x0d00c0,6, 0x0d0100,3, 0x0d0120,6, 0x0d0140,6, 0x0d0180,14, 0x0d01c0,6, 0x0d1000,2, 0x0d100c,1, 0x0d1020,13, 0x0d1058,1, 0x0d1060,6, 0x0d1080,1, 0x0d1100,2, 0x0d110c,1, 0x0d1120,13, 0x0d1158,1, 0x0d1160,6, 0x0d1180,1, 0x0d1200,2, 0x0d120c,1, 0x0d1220,13, 0x0d1258,1, 0x0d1260,6, 0x0d1280,1, 0x0d1300,2, 0x0d130c,1, 0x0d1320,13, 0x0d1358,1, 0x0d1360,6, 0x0d1380,1, 0x0d1400,3, 0x0d1410,10, 0x0d1440,1, 0x0d1450,6, 0x0d1484,6, 0x0d14a0,6, 0x0d1504,25, 0x0d1580,14, 0x0d15c0,4, 0x0d1600,6, 0x0d1620,6, 0x0d1640,3, 0x0d1660,6, 0x0d1700,2, 0x0d170c,3, 0x0d1720,6, 0x0d1800,11, 0x0d1830,7, 0x0d1850,7, 0x0d1870,9, 0x0d18a0,2, 0x0d18c0,2, 0x0d1a00,1, 0x0d1a08,13, 0x0d1a40,11, 0x0d1c00,24, 0x0d1c64,5, 0x0d1c80,3, 0x0d1c90,2, 0x0d1d00,15, 0x0d1d40,16, 0x0d1d90,4, 0x0d1dc0,12, 0x0d1e00,1, 0x0d1e20,1, 0x0d1e28,12, 0x0d1e5c,7, 0x0d1f00,14, 0x0d2000,2, 0x0d200c,1, 0x0d2020,13, 0x0d2058,1, 0x0d2060,6, 0x0d2080,1, 0x0d2100,2, 0x0d210c,1, 0x0d2120,13, 0x0d2158,1, 0x0d2160,6, 0x0d2180,1, 0x0d2200,2, 0x0d220c,1, 0x0d2220,13, 0x0d2258,1, 0x0d2260,6, 0x0d2280,1, 0x0d2300,2, 0x0d230c,1, 0x0d2320,13, 0x0d2358,1, 0x0d2360,6, 0x0d2380,1, 0x0d2400,3, 0x0d2410,10, 0x0d2440,1, 0x0d2450,6, 0x0d2484,6, 0x0d24a0,6, 0x0d2504,25, 0x0d2580,14, 0x0d25c0,4, 0x0d2600,6, 0x0d2620,6, 0x0d2640,3, 0x0d2660,6, 0x0d2700,2, 0x0d270c,3, 0x0d2720,6, 0x0d2800,11, 0x0d2830,7, 0x0d2850,7, 0x0d2870,9, 0x0d28a0,2, 0x0d28c0,2, 0x0d2a00,1, 0x0d2a08,13, 0x0d2a40,11, 0x0d2c00,24, 0x0d2c64,5, 0x0d2c80,3, 0x0d2c90,2, 0x0d2d00,15, 0x0d2d40,16, 0x0d2d90,4, 0x0d2dc0,12, 0x0d2e00,1, 0x0d2e20,1, 0x0d2e28,12, 0x0d2e5c,7, 0x0d2f00,14, 0x0d3000,2, 0x0d3400,1, 0x0d3428,1, 0x0d3450,1, 0x0d3478,1, 0x0d34a0,5, 0x0d35ac,1, 0x0d35d8,4, 0x0d3600,6, 0x0d3620,6, 0x0d3640,3, 0x0d3e00,3, 0x0d3e20,6, 0x0d3e40,6, 0x0d3e80,3, 0x0d3e90,1, 0x0d4000,29, 0x0d4078,4, 0x0d4090,2, 0x0d40a0,7, 0x0d40c0,11, 0x0d4100,14, 0x0d4140,14, 0x0d4180,61, 0x0d4278,4, 0x0d4290,2, 0x0d42a0,7, 0x0d42c0,11, 0x0d4300,14, 0x0d4340,14, 0x0d4380,61, 0x0d4478,4, 0x0d4490,2, 0x0d44a0,7, 0x0d44c0,11, 0x0d4500,14, 0x0d4540,14, 0x0d4580,61, 0x0d4678,4, 0x0d4690,2, 0x0d46a0,7, 0x0d46c0,11, 0x0d4700,14, 0x0d4740,14, 0x0d4780,62, 0x0d487c,1, 0x0d4a00,8, 0x0d4a24,15, 0x0d4a64,30, 0x0d4b00,4, 0x0d4b20,3, 0x0d4c00,6, 0x0d4c40,14, 0x0d4c80,9, 0x0d4d00,9, 0x0d4d2c,1, 0x0d4d40,3, 0x0d4d60,1, 0x0d4d80,3, 0x0d4e00,2, 0x0d4e0c,1, 0x0d4e14,5, 0x0d4e2c,1, 0x0d4e34,5, 0x0d4e4c,1, 0x0d4e54,5, 0x0d4e6c,1, 0x0d4e74,5, 0x0d4e8c,1, 0x0d4e94,5, 0x0d4eac,1, 0x0d4eb4,3, 0x0d5000,29, 0x0d5078,4, 0x0d5090,2, 0x0d50a0,7, 0x0d50c0,11, 0x0d5100,14, 0x0d5140,14, 0x0d5180,61, 0x0d5278,4, 0x0d5290,2, 0x0d52a0,7, 0x0d52c0,11, 0x0d5300,14, 0x0d5340,14, 0x0d5380,61, 0x0d5478,4, 0x0d5490,2, 0x0d54a0,7, 0x0d54c0,11, 0x0d5500,14, 0x0d5540,14, 0x0d5580,61, 0x0d5678,4, 0x0d5690,2, 0x0d56a0,7, 0x0d56c0,11, 0x0d5700,14, 0x0d5740,14, 0x0d5780,62, 0x0d587c,1, 0x0d5a00,8, 0x0d5a24,15, 0x0d5a64,30, 0x0d5b00,4, 0x0d5b20,3, 0x0d5c00,6, 0x0d5c40,14, 0x0d5c80,9, 0x0d5d00,9, 0x0d5d2c,1, 0x0d5d40,3, 0x0d5d60,1, 0x0d5d80,3, 0x0d5e00,2, 0x0d5e0c,1, 0x0d5e14,5, 0x0d5e2c,1, 0x0d5e34,5, 0x0d5e4c,1, 0x0d5e54,5, 0x0d5e6c,1, 0x0d5e74,5, 0x0d5e8c,1, 0x0d5e94,5, 0x0d5eac,1, 0x0d5eb4,3, 0x0d6000,15, 0x0d6070,3, 0x0d6080,6, 0x0d6100,9, 0x0d6204,8, 0x0d6240,13, 0x0d6280,16, 0x0d6400,8, 0x0d6424,15, 0x0d6464,15, 0x0d64a4,15, 0x0d64e4,30, 0x0d6580,10, 0x0d65ac,1, 0x0d65b4,5, 0x0d65cc,1, 0x0d65d4,5, 0x0d65ec,1, 0x0d65f4,13, 0x0d6680,7, 0x0d66a0,5, 0x0d66c0,5, 0x0d66e0,4, 0x0d6800,19, 0x0d6850,10, 0x0d6880,19, 0x0d68d0,10, 0x0d6900,19, 0x0d6950,10, 0x0d6980,19, 0x0d69d0,10, 0x0d6a00,19, 0x0d6a50,10, 0x0d6a80,19, 0x0d6ad0,10, 0x0d6b00,19, 0x0d6b50,10, 0x0d6b80,19, 0x0d6bd0,10, 0x0d6c00,19, 0x0d6c60,6, 0x0d6c84,1, 0x0d6c94,8, 0x0d6cb8,9, 0x0d6ce0,4, 0x0d7000,9, 0x0d7040,16, 0x0d8000,6, 0x0d8020,3, 0x0d8030,3, 0x0d8040,6, 0x0d8060,17, 0x0d80c0,38, 0x0d8180,1, 0x0d8400,2, 0x0d8428,2, 0x0d8450,2, 0x0d8478,2, 0x0d84a0,16, 0x0d85ac,1, 0x0d85d8,4, 0x0d8600,6, 0x0d8620,6, 0x0d8640,6, 0x0d8660,6, 0x0d8680,3, 0x0d8800,2, 0x0d9000,35, 0x0d9100,26, 0x0d916c,7, 0x0d91a0,1, 0x0d91c0,9, 0x0d91e8,1, 0x0d9200,6, 0x0d9220,6, 0x0d9248,4, 0x0d9280,6, 0x0d929c,1, 0x0d92a4,2, 0x0d92b8,9, 0x0d9304,4, 0x0d9328,3, 0x0d9340,6, 0x0d9400,1, 0x0d9408,1, 0x0d9410,2, 0x0d9424,2, 0x0d9444,1, 0x0d9480,27, 0x0d9500,6, 0x0d9520,12, 0x0d9700,7, 0x0d9744,9, 0x0d976c,2, 0x0d9780,6, 0x0d97a0,2, 0x0d9800,35, 0x0d9900,26, 0x0d996c,7, 0x0d99a0,1, 0x0d99c0,9, 0x0d99e8,1, 0x0d9a00,6, 0x0d9a20,6, 0x0d9a48,4, 0x0d9a80,6, 0x0d9a9c,1, 0x0d9aa4,2, 0x0d9ab8,9, 0x0d9b04,4, 0x0d9b28,3, 0x0d9b40,6, 0x0d9c00,1, 0x0d9c08,1, 0x0d9c10,2, 0x0d9c24,2, 0x0d9c44,1, 0x0d9c80,27, 0x0d9d00,6, 0x0d9d20,12, 0x0d9f00,7, 0x0d9f44,9, 0x0d9f6c,2, 0x0d9f80,6, 0x0d9fa0,2, 0x0db000,1028, 0x0dc018,18, 0x0dc100,4, 0x0dc118,18, 0x0dc200,12, 0x0dc300,6, 0x0dc320,5, 0x0dc340,6, 0x0dc360,5, 0x0dc380,6, 0x0dc400,9, 0x0dc440,26, 0x0dc4c4,1, 0x0dc4cc,1, 0x0dc4d4,1, 0x0dc50c,7, 0x0dc544,2, 0x0dc55c,9, 0x0dc584,7, 0x0dc5a4,2, 0x0dc5b8,2, 0x0dc5c4,2, 0x0dc5d8,2, 0x0dc600,2, 0x0dcfbc,15, 0x0dd000,7, 0x0dd020,6, 0x0dd040,8, 0x0dd104,1, 0x0dd10c,1, 0x0dd200,8, 0x0dd244,2, 0x0dd268,18, 0x0dd404,1, 0x0dd440,40, 0x0dd504,3, 0x0dd514,3, 0x0dd524,3, 0x0dd534,3, 0x0dd544,3, 0x0dd554,3, 0x0dd564,3, 0x0dd574,3, 0x0dd584,3, 0x0dd594,3, 0x0dd5a4,3, 0x0dd5b4,3, 0x0dd604,2, 0x0dd640,16, 0x0dd684,3, 0x0dd704,2, 0x0dd740,18, 0x0ddc00,4, 0x0ddc80,1, 0x0ddd00,6, 0x0ddd20,6, 0x0ddd40,6, 0x0ddd80,1, 0x0dde00,3, 0x0dde20,10, 0x0dde50,6, 0x0dde80,9, 0x0ddec0,16, 0x0de000,123, 0x0de200,2, 0x0de20c,3, 0x0de220,2, 0x0de22c,3, 0x0de240,2, 0x0de24c,3, 0x0de260,2, 0x0de26c,3, 0x0de280,2, 0x0de28c,3, 0x0de2a0,2, 0x0de2ac,3, 0x0de2c0,2, 0x0de2cc,3, 0x0de2e0,2, 0x0de2ec,3, 0x0de300,2, 0x0de30c,3, 0x0de320,2, 0x0de32c,3, 0x0de340,2, 0x0de34c,3, 0x0de360,2, 0x0de36c,3, 0x0de380,2, 0x0de38c,3, 0x0de3a0,2, 0x0de3ac,3, 0x0de3c0,2, 0x0de3cc,3, 0x0de3e0,2, 0x0de3ec,3, 0x0de400,123, 0x0de600,2, 0x0de60c,3, 0x0de620,2, 0x0de62c,3, 0x0de640,2, 0x0de64c,3, 0x0de660,2, 0x0de66c,3, 0x0de680,2, 0x0de68c,3, 0x0de6a0,2, 0x0de6ac,3, 0x0de6c0,2, 0x0de6cc,3, 0x0de6e0,2, 0x0de6ec,3, 0x0de700,2, 0x0de70c,3, 0x0de720,2, 0x0de72c,3, 0x0de740,2, 0x0de74c,3, 0x0de760,2, 0x0de76c,3, 0x0de780,2, 0x0de78c,3, 0x0de7a0,2, 0x0de7ac,3, 0x0de7c0,2, 0x0de7cc,3, 0x0de7e0,2, 0x0de7ec,3, 0x0de800,123, 0x0dea00,2, 0x0dea0c,3, 0x0dea20,2, 0x0dea2c,3, 0x0dea40,2, 0x0dea4c,3, 0x0dea60,2, 0x0dea6c,3, 0x0dea80,2, 0x0dea8c,3, 0x0deaa0,2, 0x0deaac,3, 0x0deac0,2, 0x0deacc,3, 0x0deae0,2, 0x0deaec,3, 0x0deb00,2, 0x0deb0c,3, 0x0deb20,2, 0x0deb2c,3, 0x0deb40,2, 0x0deb4c,3, 0x0deb60,2, 0x0deb6c,3, 0x0deb80,2, 0x0deb8c,3, 0x0deba0,2, 0x0debac,3, 0x0debc0,2, 0x0debcc,3, 0x0debe0,2, 0x0debec,3, 0x0dec00,123, 0x0dee00,2, 0x0dee0c,3, 0x0dee20,2, 0x0dee2c,3, 0x0dee40,2, 0x0dee4c,3, 0x0dee60,2, 0x0dee6c,3, 0x0dee80,2, 0x0dee8c,3, 0x0deea0,2, 0x0deeac,3, 0x0deec0,2, 0x0deecc,3, 0x0deee0,2, 0x0deeec,3, 0x0def00,2, 0x0def0c,3, 0x0def20,2, 0x0def2c,3, 0x0def40,2, 0x0def4c,3, 0x0def60,2, 0x0def6c,3, 0x0def80,2, 0x0def8c,3, 0x0defa0,2, 0x0defac,3, 0x0defc0,2, 0x0defcc,3, 0x0defe0,2, 0x0defec,3, 0x0df000,123, 0x0df200,2, 0x0df20c,3, 0x0df220,2, 0x0df22c,3, 0x0df240,2, 0x0df24c,3, 0x0df260,2, 0x0df26c,3, 0x0df280,2, 0x0df28c,3, 0x0df2a0,2, 0x0df2ac,3, 0x0df2c0,2, 0x0df2cc,3, 0x0df2e0,2, 0x0df2ec,3, 0x0df300,2, 0x0df30c,3, 0x0df320,2, 0x0df32c,3, 0x0df340,2, 0x0df34c,3, 0x0df360,2, 0x0df36c,3, 0x0df380,2, 0x0df38c,3, 0x0df3a0,2, 0x0df3ac,3, 0x0df3c0,2, 0x0df3cc,3, 0x0df3e0,2, 0x0df3ec,3, 0x0df400,2, 0x0e0000,3, 0x0e0010,4, 0x0e0028,3, 0x0e0048,2, 0x0e0058,2, 0x0e0064,32, 0x0e00f0,1, 0x0e00fc,35, 0x0e019c,15, 0x0e01e0,1, 0x0e01e8,5, 0x0e0204,5, 0x0e021c,1, 0x0e0300,16, 0x0e0400,3, 0x0e0410,4, 0x0e0428,3, 0x0e0448,2, 0x0e0458,2, 0x0e0464,32, 0x0e04f0,1, 0x0e04fc,35, 0x0e059c,15, 0x0e05e0,1, 0x0e05e8,5, 0x0e0604,5, 0x0e061c,1, 0x0e0700,16, 0x0e0800,3, 0x0e0810,4, 0x0e0828,3, 0x0e0848,2, 0x0e0858,2, 0x0e0864,32, 0x0e08f0,1, 0x0e08fc,35, 0x0e099c,15, 0x0e09e0,1, 0x0e09e8,5, 0x0e0a04,5, 0x0e0a1c,1, 0x0e0b00,16, 0x0e0c00,3, 0x0e0c10,4, 0x0e0c28,3, 0x0e0c48,2, 0x0e0c58,2, 0x0e0c64,32, 0x0e0cf0,1, 0x0e0cfc,35, 0x0e0d9c,15, 0x0e0de0,1, 0x0e0de8,5, 0x0e0e04,5, 0x0e0e1c,1, 0x0e0f00,16, 0x0e1000,3, 0x0e1010,4, 0x0e1028,3, 0x0e1048,2, 0x0e1058,2, 0x0e1064,32, 0x0e10f0,1, 0x0e10fc,35, 0x0e119c,15, 0x0e11e0,1, 0x0e11e8,5, 0x0e1204,5, 0x0e121c,1, 0x0e1300,16, 0x0e1400,3, 0x0e1410,4, 0x0e1428,3, 0x0e1448,2, 0x0e1458,2, 0x0e1464,32, 0x0e14f0,1, 0x0e14fc,35, 0x0e159c,15, 0x0e15e0,1, 0x0e15e8,5, 0x0e1604,5, 0x0e161c,1, 0x0e1700,16, 0x0e1800,3, 0x0e1810,4, 0x0e1828,3, 0x0e1848,2, 0x0e1858,2, 0x0e1864,32, 0x0e18f0,1, 0x0e18fc,35, 0x0e199c,15, 0x0e19e0,1, 0x0e19e8,5, 0x0e1a04,5, 0x0e1a1c,1, 0x0e1b00,16, 0x0e1c00,3, 0x0e1c10,4, 0x0e1c28,3, 0x0e1c48,2, 0x0e1c58,2, 0x0e1c64,32, 0x0e1cf0,1, 0x0e1cfc,35, 0x0e1d9c,15, 0x0e1de0,1, 0x0e1de8,5, 0x0e1e04,5, 0x0e1e1c,1, 0x0e1f00,16, 0x0e20c0,8, 0x0e20ec,5, 0x0e2108,3, 0x0e2200,5, 0x0e2218,36, 0x0e2300,6, 0x0e2330,4, 0x0e2500,3, 0x0e2510,12, 0x0e26e0,6, 0x0e2700,6, 0x0e2720,6, 0x0e2740,3, 0x0e2780,6, 0x0e27a0,6, 0x0e27c0,3, 0x0e2800,67, 0x0e2a00,6, 0x0e2a20,6, 0x0e2a40,3, 0x0e2a50,3, 0x0e2a60,1, 0x0e2a80,17, 0x0e3020,10, 0x0e3070,1, 0x0e3080,2, 0x0e308c,1, 0x0e3440,21, 0x0e34e4,13, 0x0e3520,6, 0x0e3540,6, 0x0e3560,6, 0x0e3580,6, 0x0e35a0,6, 0x0e35c0,6, 0x0e35e0,6, 0x0e3600,16, 0x0e3804,3, 0x0e3900,33, 0x0e3a00,6, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3c00,1, 0x0e3c28,1, 0x0e3c50,1, 0x0e3c78,1, 0x0e3ca0,2, 0x0e3dac,1, 0x0e3dd8,4, 0x0e3e00,6, 0x0e3e20,6, 0x0e3e40,3, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,18, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e5000,8, 0x0e6000,9, 0x0e6040,16, 0x0e8000,9, 0x0e8080,6, 0x0e80a0,3, 0x0f0000,3, 0x0f0014,11, 0x0f004c,3, 0x0f0060,8, 0x0f00f0,3, 0x0f0100,1, 0x0f010c,2, 0x0f0118,1, 0x0f0130,4, 0x0f0180,3, 0x0f0190,2, 0x0f01a8,1, 0x0f01c0,2, 0x0f01d0,10, 0x0f0200,62, 0x0f0404,9, 0x0f0440,12, 0x0f0480,5, 0x0f04b8,21, 0x0f0520,1, 0x0f0528,1, 0x0f0540,2, 0x0f0580,4, 0x0f05a0,1, 0x0f05c0,8, 0x0f0800,17, 0x0f0850,9, 0x0f0880,9, 0x0f08b0,9, 0x0f08e0,9, 0x0f0920,4, 0x0f093c,5, 0x0f095c,5, 0x0f097c,5, 0x0f099c,5, 0x0f09bc,5, 0x0f09dc,1, 0x0f0a90,2, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,3, 0x0f1010,12, 0x0f1080,10, 0x0f10c0,1, 0x0f10e0,2, 0x0f10ec,1, 0x0f10f4,3, 0x0f1400,6, 0x0f1420,6, 0x0f1440,6, 0x0f1460,6, 0x0f1480,6, 0x0f14a0,6, 0x0f14c0,6, 0x0f14e0,6, 0x0f1500,6, 0x0f1520,6, 0x0f1540,6, 0x0f1560,6, 0x0f1580,6, 0x0f15a0,6, 0x0f15c0,6, 0x0f15e0,6, 0x0f1600,6, 0x0f1620,3, 0x0f1800,3, 0x0f1840,4, 0x0f1854,3, 0x0f1864,3, 0x0f1874,3, 0x0f2000,2, 0x0f200c,3, 0x0f2020,10, 0x0f2060,6, 0x0f2080,2, 0x0f208c,3, 0x0f20a0,10, 0x0f20e0,6, 0x0f2100,2, 0x0f210c,3, 0x0f2120,10, 0x0f2160,6, 0x0f2180,2, 0x0f218c,3, 0x0f21a0,10, 0x0f21e0,6, 0x0f2200,2, 0x0f220c,3, 0x0f2220,10, 0x0f2260,6, 0x0f2280,2, 0x0f228c,3, 0x0f22a0,10, 0x0f22e0,6, 0x0f2300,2, 0x0f230c,3, 0x0f2320,10, 0x0f2360,6, 0x0f2380,2, 0x0f238c,3, 0x0f23a0,10, 0x0f23e0,6, 0x0f2400,2, 0x0f240c,3, 0x0f2420,10, 0x0f2460,6, 0x0f2480,2, 0x0f248c,3, 0x0f24a0,10, 0x0f24e0,6, 0x0f2500,2, 0x0f250c,3, 0x0f2520,10, 0x0f2560,6, 0x0f2580,2, 0x0f258c,3, 0x0f25a0,10, 0x0f25e0,6, 0x0f2600,2, 0x0f260c,3, 0x0f2620,10, 0x0f2660,6, 0x0f2680,2, 0x0f268c,3, 0x0f26a0,10, 0x0f26e0,6, 0x0f2700,2, 0x0f270c,3, 0x0f2720,10, 0x0f2760,6, 0x0f2780,2, 0x0f278c,3, 0x0f27a0,10, 0x0f27e0,6, 0x0f2800,2, 0x0f280c,3, 0x0f2820,10, 0x0f2860,6, 0x0f2880,2, 0x0f288c,3, 0x0f28a0,10, 0x0f28e0,6, 0x0f2900,2, 0x0f290c,3, 0x0f2920,10, 0x0f2960,6, 0x0f2980,2, 0x0f298c,3, 0x0f29a0,10, 0x0f29e0,6, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x100000,1, 0x100008,1, 0x100010,2, 0x100020,1, 0x100028,1, 0x100030,2, 0x100040,1, 0x100048,1, 0x100050,2, 0x100060,1, 0x100068,1, 0x100070,2, 0x100080,21, 0x100100,21, 0x100180,21, 0x100200,21, 0x100284,1, 0x1003b0,5, 0x100400,13, 0x100440,13, 0x100480,13, 0x1004c0,13, 0x100500,68, 0x100618,1, 0x100804,1, 0x10080c,4, 0x100820,9, 0x1008a0,24, 0x100920,24, 0x100a00,48, 0x100b00,59, 0x100d00,1, 0x100d08,2, 0x100d80,4, 0x100da0,6, 0x100e00,4, 0x100e20,1, 0x100e28,7, 0x100e48,7, 0x100e68,7, 0x100e88,6, 0x100ee0,6, 0x100f00,6, 0x100f1c,10, 0x100f70,8, 0x100f94,4, 0x100fc0,6, 0x100fe0,6, 0x101400,16, 0x101444,1, 0x10145c,10, 0x101504,1, 0x10151c,30, 0x101600,1, 0x101628,6, 0x101648,6, 0x101680,16, 0x1016e0,16, 0x101780,1, 0x101790,16, 0x101a00,14, 0x101a40,3, 0x101a50,2, 0x101a60,2, 0x101a70,2, 0x101a80,2, 0x101a90,1, 0x101a9c,11, 0x101b0c,5, 0x101c00,34, 0x101d00,3, 0x102000,1, 0x102028,1, 0x102050,1, 0x102078,1, 0x1020a0,7, 0x1021ac,1, 0x1021d8,4, 0x102200,6, 0x102220,6, 0x102240,3, 0x102560,1, 0x102584,10, 0x1025b0,1, 0x1025fc,1, 0x102604,1, 0x1026ec,69, 0x103000,32, 0x103084,5, 0x1030f8,3, 0x103108,3, 0x103118,7, 0x103144,1, 0x103160,10, 0x103200,32, 0x103284,5, 0x1032f8,3, 0x103308,3, 0x103318,7, 0x103344,1, 0x103360,10, 0x103400,32, 0x103484,5, 0x1034f8,3, 0x103508,3, 0x103518,7, 0x103544,1, 0x103560,10, 0x103600,32, 0x103684,5, 0x1036f8,3, 0x103708,3, 0x103718,7, 0x103744,1, 0x103760,10, 0x103800,1, 0x10380c,1, 0x103a00,64, 0x104000,3, 0x104020,3, 0x104040,3, 0x104060,3, 0x104084,1, 0x104090,4, 0x1040a4,1, 0x1040b0,4, 0x1040c4,1, 0x1040d0,4, 0x1040e4,1, 0x1040f0,21, 0x104148,18, 0x1041f0,6, 0x104308,9, 0x104330,1, 0x104340,16, 0x1043b4,4, 0x1043c8,4, 0x1043dc,4, 0x1043f0,4, 0x104404,1, 0x104470,36, 0x104504,1, 0x104570,36, 0x104604,1, 0x104670,36, 0x104704,1, 0x104770,50, 0x104840,2, 0x10484c,1, 0x104900,1, 0x104908,1, 0x104984,1, 0x1049a0,24, 0x104a08,6, 0x104a28,6, 0x104a48,6, 0x104a68,6, 0x104a88,6, 0x104aa8,6, 0x104ac8,6, 0x104ae8,15, 0x104b40,16, 0x104c00,6, 0x104c20,6, 0x104c40,6, 0x104c60,6, 0x104c80,6, 0x104ca0,6, 0x104cc0,6, 0x104ce0,6, 0x104d00,3, 0x104d20,6, 0x104d40,6, 0x105000,448, 0x105704,3, 0x105734,1, 0x106000,62, 0x106100,32, 0x106184,1, 0x107010,1, 0x110000,4, 0x110014,2, 0x110020,5, 0x110040,5, 0x110060,6, 0x110080,5, 0x110098,1, 0x1100a0,4, 0x1100b8,8, 0x1100e0,6, 0x110200,4, 0x110214,2, 0x110220,5, 0x110240,5, 0x110260,6, 0x110280,5, 0x110298,1, 0x1102a0,4, 0x1102b8,8, 0x1102e0,6, 0x110400,4, 0x110414,2, 0x110420,5, 0x110440,5, 0x110460,6, 0x110480,5, 0x110498,1, 0x1104a0,4, 0x1104b8,8, 0x1104e0,6, 0x110600,4, 0x110614,2, 0x110620,5, 0x110640,5, 0x110660,6, 0x110680,5, 0x110698,1, 0x1106a0,4, 0x1106b8,8, 0x1106e0,6, 0x110800,21, 0x110880,15, 0x1108c0,3, 0x1108d0,2, 0x110900,1, 0x111000,1, 0x111028,1, 0x111050,1, 0x111078,1, 0x1110a0,5, 0x1111ac,1, 0x1111d8,4, 0x111200,6, 0x111220,6, 0x111240,3, 0x111400,3, 0x111480,9, 0x1114c0,25, 0x111540,25, 0x1115c0,25, 0x111640,17, 0x11168c,1, 0x118000,29, 0x118078,4, 0x118090,2, 0x1180a0,7, 0x1180c0,11, 0x118100,14, 0x118140,14, 0x118180,61, 0x118278,4, 0x118290,2, 0x1182a0,7, 0x1182c0,11, 0x118300,14, 0x118340,14, 0x118380,61, 0x118478,4, 0x118490,2, 0x1184a0,7, 0x1184c0,11, 0x118500,14, 0x118540,14, 0x118580,61, 0x118678,4, 0x118690,2, 0x1186a0,7, 0x1186c0,11, 0x118700,14, 0x118740,14, 0x118780,62, 0x11887c,1, 0x118a00,8, 0x118a24,15, 0x118a64,30, 0x118b00,4, 0x118b20,3, 0x118c00,6, 0x118c40,14, 0x118c80,9, 0x118d00,9, 0x118d2c,1, 0x118d40,3, 0x118d60,1, 0x118d80,3, 0x118e00,2, 0x118e0c,1, 0x118e14,5, 0x118e2c,1, 0x118e34,5, 0x118e4c,1, 0x118e54,5, 0x118e6c,1, 0x118e74,5, 0x118e8c,1, 0x118e94,5, 0x118eac,1, 0x118eb4,3, 0x119000,29, 0x119078,4, 0x119090,2, 0x1190a0,7, 0x1190c0,11, 0x119100,14, 0x119140,14, 0x119180,61, 0x119278,4, 0x119290,2, 0x1192a0,7, 0x1192c0,11, 0x119300,14, 0x119340,14, 0x119380,61, 0x119478,4, 0x119490,2, 0x1194a0,7, 0x1194c0,11, 0x119500,14, 0x119540,14, 0x119580,61, 0x119678,4, 0x119690,2, 0x1196a0,7, 0x1196c0,11, 0x119700,14, 0x119740,14, 0x119780,62, 0x11987c,1, 0x119a00,8, 0x119a24,15, 0x119a64,30, 0x119b00,4, 0x119b20,3, 0x119c00,6, 0x119c40,14, 0x119c80,9, 0x119d00,9, 0x119d2c,1, 0x119d40,3, 0x119d60,1, 0x119d80,3, 0x119e00,2, 0x119e0c,1, 0x119e14,5, 0x119e2c,1, 0x119e34,5, 0x119e4c,1, 0x119e54,5, 0x119e6c,1, 0x119e74,5, 0x119e8c,1, 0x119e94,5, 0x119eac,1, 0x119eb4,3, 0x11a000,29, 0x11a078,4, 0x11a090,2, 0x11a0a0,7, 0x11a0c0,11, 0x11a100,14, 0x11a140,14, 0x11a180,61, 0x11a278,4, 0x11a290,2, 0x11a2a0,7, 0x11a2c0,11, 0x11a300,14, 0x11a340,14, 0x11a380,61, 0x11a478,4, 0x11a490,2, 0x11a4a0,7, 0x11a4c0,11, 0x11a500,14, 0x11a540,14, 0x11a580,61, 0x11a678,4, 0x11a690,2, 0x11a6a0,7, 0x11a6c0,11, 0x11a700,14, 0x11a740,14, 0x11a780,62, 0x11a87c,1, 0x11aa00,8, 0x11aa24,15, 0x11aa64,30, 0x11ab00,4, 0x11ab20,3, 0x11ac00,6, 0x11ac40,14, 0x11ac80,9, 0x11ad00,9, 0x11ad2c,1, 0x11ad40,3, 0x11ad60,1, 0x11ad80,3, 0x11ae00,2, 0x11ae0c,1, 0x11ae14,5, 0x11ae2c,1, 0x11ae34,5, 0x11ae4c,1, 0x11ae54,5, 0x11ae6c,1, 0x11ae74,5, 0x11ae8c,1, 0x11ae94,5, 0x11aeac,1, 0x11aeb4,3, 0x11b000,29, 0x11b078,4, 0x11b090,2, 0x11b0a0,7, 0x11b0c0,11, 0x11b100,14, 0x11b140,14, 0x11b180,61, 0x11b278,4, 0x11b290,2, 0x11b2a0,7, 0x11b2c0,11, 0x11b300,14, 0x11b340,14, 0x11b380,61, 0x11b478,4, 0x11b490,2, 0x11b4a0,7, 0x11b4c0,11, 0x11b500,14, 0x11b540,14, 0x11b580,61, 0x11b678,4, 0x11b690,2, 0x11b6a0,7, 0x11b6c0,11, 0x11b700,14, 0x11b740,14, 0x11b780,62, 0x11b87c,1, 0x11ba00,8, 0x11ba24,15, 0x11ba64,30, 0x11bb00,4, 0x11bb20,3, 0x11bc00,6, 0x11bc40,14, 0x11bc80,9, 0x11bd00,9, 0x11bd2c,1, 0x11bd40,3, 0x11bd60,1, 0x11bd80,3, 0x11be00,2, 0x11be0c,1, 0x11be14,5, 0x11be2c,1, 0x11be34,5, 0x11be4c,1, 0x11be54,5, 0x11be6c,1, 0x11be74,5, 0x11be8c,1, 0x11be94,5, 0x11beac,1, 0x11beb4,3, 0x11c000,19, 0x11c050,10, 0x11c080,19, 0x11c0d0,10, 0x11c100,19, 0x11c150,10, 0x11c180,19, 0x11c1d0,10, 0x11c200,19, 0x11c250,10, 0x11c280,19, 0x11c2d0,10, 0x11c300,19, 0x11c350,10, 0x11c380,19, 0x11c3d0,10, 0x11c400,19, 0x11c450,10, 0x11c480,19, 0x11c4d0,10, 0x11c500,19, 0x11c550,10, 0x11c580,19, 0x11c5d0,10, 0x11c600,19, 0x11c650,10, 0x11c680,19, 0x11c6d0,10, 0x11c700,19, 0x11c750,10, 0x11c780,19, 0x11c7d0,10, 0x11c800,19, 0x11c860,6, 0x11c884,1, 0x11c894,22, 0x11c900,7, 0x11d000,7, 0x11d020,15, 0x11d060,15, 0x11d0a0,15, 0x11d0e0,15, 0x11d120,15, 0x11d160,15, 0x11d1a0,15, 0x11d1e0,15, 0x11d220,15, 0x11d260,15, 0x11d2a0,15, 0x11d2e0,15, 0x11d320,15, 0x11d360,15, 0x11d3a0,15, 0x11d3e0,17, 0x11d428,3, 0x11d440,5, 0x11d480,9, 0x11d4a8,3, 0x11d4c0,5, 0x11d500,9, 0x11d528,3, 0x11d540,5, 0x11d580,9, 0x11d5a8,3, 0x11d5c0,5, 0x11d600,6, 0x11d620,6, 0x11d640,6, 0x11d660,6, 0x11d680,6, 0x11d6a0,6, 0x11d6c0,6, 0x11d6e0,6, 0x11d700,12, 0x11d734,1, 0x11d73c,4, 0x11d750,4, 0x11d764,1, 0x11d800,102, 0x11da00,3, 0x11da10,1, 0x11da18,2, 0x11da24,7, 0x11da50,4, 0x11da80,3, 0x11da90,1, 0x11da98,2, 0x11daa4,7, 0x11dad0,4, 0x11db00,3, 0x11db10,1, 0x11db18,2, 0x11db24,7, 0x11db50,4, 0x11db80,3, 0x11db90,1, 0x11db98,2, 0x11dba4,7, 0x11dbd0,4, 0x11dc00,17, 0x11e000,72, 0x11e200,72, 0x11e400,72, 0x11e600,72, 0x11e800,6, 0x11e820,6, 0x11e840,6, 0x11e860,6, 0x11e880,6, 0x11e8a0,6, 0x11e8c0,6, 0x11e8e0,6, 0x11e900,6, 0x11e920,1, 0x11ea00,6, 0x11ea20,6, 0x11ea40,6, 0x11ea60,6, 0x11ea80,6, 0x11eaa0,6, 0x11eac0,6, 0x11eae0,6, 0x11eb00,6, 0x11eb20,1, 0x11ec00,6, 0x11ec20,6, 0x11ec40,6, 0x11ec60,6, 0x11ec80,6, 0x11eca0,6, 0x11ecc0,6, 0x11ece0,6, 0x11ed00,6, 0x11ed20,1, 0x11ee00,6, 0x11ee20,6, 0x11ee40,6, 0x11ee60,6, 0x11ee80,6, 0x11eea0,6, 0x11eec0,6, 0x11eee0,6, 0x11ef00,6, 0x11ef20,1, 0x11f000,14, 0x11f040,2, 0x11f080,14, 0x11f0c0,2, 0x11f100,14, 0x11f140,2, 0x11f180,14, 0x11f1c0,2, 0x11f400,17, 0x11f448,5, 0x11f460,3, 0x11f470,3, 0x11f480,13, 0x11f4b8,1, 0x11f500,17, 0x11f548,5, 0x11f560,3, 0x11f570,3, 0x11f580,13, 0x11f5b8,1, 0x11f600,17, 0x11f648,5, 0x11f660,3, 0x11f670,3, 0x11f680,13, 0x11f6b8,1, 0x11f700,17, 0x11f748,5, 0x11f760,3, 0x11f770,3, 0x11f780,13, 0x11f7b8,1, 0x11f800,8, 0x11f824,15, 0x11f864,15, 0x11f8a4,15, 0x11f8e4,30, 0x11f980,10, 0x11f9ac,1, 0x11f9b4,5, 0x11f9cc,1, 0x11f9d4,5, 0x11f9ec,1, 0x11f9f4,13, 0x11fa80,7, 0x11faa0,5, 0x11fac0,5, 0x11fae0,4, 0x11fc04,8, 0x11fc40,13, 0x11fc80,16, 0x11fd00,6, 0x11fd20,3, 0x11fd30,3, 0x11fd40,19, 0x11fdc0,3, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX7.csv0000644000175000017500000055527114522641732022261 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16384, 0x040000,4, 0x048000,129, 0x04820c,1, 0x048220,2, 0x048280,4, 0x0482bc,5, 0x0482fc,19, 0x048360,7, 0x048380,2, 0x04838c,2, 0x0483a0,1, 0x048404,4, 0x048420,3, 0x048430,7, 0x048480,4, 0x0484a0,5, 0x0484c0,1, 0x048500,1, 0x049000,257, 0x049408,130, 0x049620,1, 0x04962c,1, 0x049640,1, 0x04964c,1, 0x049800,3, 0x049810,3, 0x049820,3, 0x049830,6, 0x049884,5, 0x0498a0,1, 0x0498a8,6, 0x049900,6, 0x04993c,7, 0x04997c,10, 0x049a04,1, 0x049a0c,26, 0x049a80,6, 0x049aa0,6, 0x049ac0,13, 0x049b00,4, 0x04a004,1, 0x04a014,3, 0x04a024,5, 0x04a040,8, 0x04a080,1, 0x04a100,1, 0x04a124,5, 0x04a140,6, 0x04a160,13, 0x04a1a0,1, 0x04a1ac,1, 0x04a1c0,1, 0x04a1cc,1, 0x04a1e0,1, 0x04a1ec,1, 0x04a200,263, 0x04a620,2, 0x04a684,21, 0x04a800,8, 0x04a840,4, 0x04a860,15, 0x04a900,6, 0x04a920,6, 0x04a940,6, 0x04a964,1, 0x04a970,4, 0x04a984,5, 0x04a9a4,1, 0x04a9ac,3, 0x04a9bc,1, 0x04aa00,4, 0x04aa24,5, 0x04aa44,3, 0x04aa54,5, 0x04b004,35, 0x04b200,1, 0x04b220,1, 0x04b22c,1, 0x04b240,1, 0x04b24c,1, 0x04b260,1, 0x04b274,7, 0x04b2a0,5, 0x04b2c0,25, 0x04b330,3, 0x04b340,3, 0x04b400,1, 0x04b480,39, 0x04b600,1, 0x04b608,2, 0x04b680,6, 0x04b6a0,6, 0x04b6c0,13, 0x04b700,9, 0x04b730,3, 0x04b740,3, 0x04b780,4, 0x04b7a0,5, 0x04b800,1, 0x04b80c,1, 0x04b818,1, 0x04b824,1, 0x04b830,1, 0x04b83c,1, 0x04b848,1, 0x04b854,1, 0x04b860,1, 0x04b86c,1, 0x04b878,1, 0x04b884,1, 0x04b890,1, 0x04b89c,1, 0x04b8a8,1, 0x04b8b4,1, 0x04b8c0,1, 0x04b8cc,1, 0x04b8d8,1, 0x04b8e4,1, 0x04b8f0,1, 0x04b8fc,1, 0x04b908,1, 0x04b914,1, 0x04b920,1, 0x04b92c,1, 0x04b938,1, 0x04b944,1, 0x04b950,1, 0x04b95c,1, 0x04b968,1, 0x04b974,1, 0x04ba00,19, 0x04bc00,3, 0x04c004,37, 0x04c100,1, 0x04c108,4, 0x04c180,14, 0x04c1c0,14, 0x04c200,1, 0x050000,18, 0x050050,2, 0x050060,2, 0x050070,2, 0x050080,3, 0x050090,1, 0x050098,1, 0x0500a0,1, 0x0500a8,12, 0x050100,8, 0x050140,8, 0x050180,8, 0x0501c0,8, 0x050200,16, 0x050400,6, 0x050420,6, 0x050440,6, 0x050460,6, 0x050480,1, 0x0504c0,1, 0x0504e0,14, 0x050520,6, 0x050540,6, 0x050560,6, 0x050580,1, 0x0505c0,1, 0x0505e0,14, 0x050620,6, 0x050640,6, 0x050660,6, 0x050680,1, 0x0506c0,1, 0x0506e0,8, 0x050708,2, 0x050718,2, 0x050800,3, 0x050810,10, 0x050840,6, 0x050860,5, 0x050900,6, 0x050920,6, 0x050940,17, 0x050a00,2, 0x051000,1, 0x051080,1, 0x051088,4, 0x0510a4,6, 0x0510c4,5, 0x051100,2, 0x051144,1, 0x051150,14, 0x0511a4,1, 0x0511b0,4, 0x051404,1, 0x051478,35, 0x051524,8, 0x051584,1, 0x0515a8,23, 0x051800,7, 0x051820,42, 0x0518e4,1, 0x0518f4,6, 0x051914,3, 0x051940,1, 0x051950,4, 0x051964,6, 0x051980,3, 0x0519a4,4, 0x0519c0,6, 0x0519e0,6, 0x051a00,2, 0x051c00,1, 0x051c0c,4, 0x051c80,13, 0x051cc0,13, 0x051d00,1, 0x051d40,13, 0x051d80,5, 0x051da0,4, 0x052004,1, 0x05200c,1, 0x052024,1, 0x052034,62, 0x052130,23, 0x052190,32, 0x052800,3, 0x052810,3, 0x052820,3, 0x052830,3, 0x052840,3, 0x052850,3, 0x052860,3, 0x052870,3, 0x052880,3, 0x052890,72, 0x0529c0,9, 0x052a00,3, 0x052a10,3, 0x052a20,3, 0x052a30,3, 0x052a40,3, 0x052a50,3, 0x052a60,3, 0x052a70,3, 0x052a80,3, 0x052a90,3, 0x052aa0,30, 0x052b24,1, 0x052b2c,12, 0x052b60,3, 0x052b70,3, 0x052b80,3, 0x052b90,3, 0x052ba0,3, 0x052bb0,3, 0x052bc0,3, 0x052bd0,3, 0x052be0,3, 0x052bf0,3, 0x052c00,3, 0x052c10,3, 0x052c20,3, 0x053000,15, 0x053044,3, 0x053064,1, 0x05306c,5, 0x053084,1, 0x05308c,2, 0x0530a0,2, 0x0530b4,1, 0x0530bc,3, 0x0530d4,1, 0x0530dc,1, 0x053100,12, 0x053144,6, 0x053184,34, 0x053280,12, 0x0532c4,6, 0x053304,1, 0x05330c,1, 0x053314,1, 0x05331c,1, 0x053380,4, 0x0533c0,9, 0x053400,4, 0x053414,2, 0x053424,1, 0x05342c,1, 0x053440,2, 0x053450,8, 0x053484,4, 0x0534a0,16, 0x053500,8, 0x05353c,9, 0x05357c,10, 0x0535b4,1, 0x0535bc,31, 0x053644,8, 0x053674,1, 0x05367c,1, 0x053684,1, 0x053690,36, 0x053724,1, 0x05372c,1, 0x053734,1, 0x05373c,1, 0x053744,6, 0x053760,4, 0x053774,1, 0x05377c,1, 0x053784,1, 0x053794,329, 0x053d00,9, 0x053d40,9, 0x053d80,4, 0x053da0,7, 0x053dc0,7, 0x053de0,7, 0x054000,5, 0x054020,5, 0x054040,5, 0x054060,5, 0x054080,5, 0x0540a0,5, 0x0540c0,5, 0x0540e0,5, 0x054100,5, 0x054120,5, 0x054140,5, 0x054160,5, 0x054180,5, 0x0541a0,5, 0x0541c0,5, 0x0541e0,5, 0x054200,5, 0x054220,5, 0x054240,2, 0x054400,12, 0x054480,5, 0x0544a0,5, 0x0544c0,4, 0x0544e0,5, 0x054500,2, 0x054514,3, 0x054524,1, 0x054534,47, 0x0545f4,4, 0x058000,134, 0x058224,4, 0x058240,3, 0x058254,1, 0x05825c,23, 0x058404,1, 0x058460,108, 0x058680,27, 0x058700,1, 0x058800,2, 0x058824,4, 0x058840,3, 0x058900,4, 0x058980,28, 0x058a04,1, 0x058a84,96, 0x059004,4, 0x059020,7, 0x059040,4, 0x059054,1, 0x05905c,1, 0x059064,1, 0x05906c,1, 0x059080,9, 0x0590c0,72, 0x059200,6, 0x059220,6, 0x059240,4, 0x059260,6, 0x059280,6, 0x0592a0,6, 0x0592c0,4, 0x0592e0,6, 0x059304,1, 0x05934c,80, 0x059800,14, 0x059844,1, 0x05984c,1, 0x059854,1, 0x05985c,1, 0x059864,3, 0x059884,4, 0x0598a4,4, 0x0598c0,8, 0x059904,1, 0x059918,16, 0x059960,6, 0x059980,4, 0x0599a0,6, 0x059a00,13, 0x059a40,4, 0x059a60,6, 0x059a80,16, 0x059c04,1, 0x059cac,98, 0x059e80,2, 0x059ec4,1, 0x059ecc,15, 0x059f44,1, 0x059f4c,13, 0x05a000,1, 0x05a020,6, 0x05a040,102, 0x05a1e0,6, 0x05a204,6, 0x05a220,1, 0x05a230,3, 0x05a240,1, 0x05a250,3, 0x05a260,3, 0x05a294,96, 0x05a444,1, 0x05a44c,17, 0x05a4c0,9, 0x05a604,1, 0x05a674,38, 0x05a800,1, 0x05a808,2, 0x05b000,18, 0x05b054,4, 0x05b070,1, 0x05b080,1, 0x05b090,1, 0x05b0a0,1, 0x05b0b0,1, 0x05b0c0,7, 0x05b100,5, 0x05b118,19, 0x05c000,1, 0x05c800,2, 0x05c884,1, 0x05c8a8,24, 0x05ca04,1, 0x05ca28,22, 0x05ca84,1, 0x05ca90,6, 0x05cb00,97, 0x05cc88,5, 0x05ce00,6, 0x05ce20,6, 0x05ce40,19, 0x05ce90,3, 0x05cec0,4, 0x05cee0,17, 0x05cf30,14, 0x05d000,6, 0x05d800,6, 0x05d820,6, 0x05d840,1, 0x05d860,6, 0x05d880,6, 0x05d8a0,6, 0x05d8c0,1, 0x05d8e0,6, 0x05d900,6, 0x05d920,6, 0x05d940,1, 0x05d960,6, 0x05d980,6, 0x05d9a0,6, 0x05d9c0,1, 0x05d9e0,6, 0x05da00,6, 0x05da20,6, 0x05da40,1, 0x05da60,6, 0x05da80,6, 0x05daa0,6, 0x05dac0,1, 0x05dae0,6, 0x05db00,6, 0x05db20,6, 0x05db40,1, 0x05db60,6, 0x05db80,6, 0x05dba0,6, 0x05dbc0,1, 0x05dbe0,6, 0x05dc00,1, 0x05e000,30, 0x060000,80, 0x060150,2, 0x060164,5, 0x060180,5, 0x0601a4,1, 0x0601ac,1, 0x0601b4,1, 0x0601bc,1, 0x0601c4,1, 0x0601cc,4, 0x060200,4, 0x060220,6, 0x060240,4, 0x060260,9, 0x060288,4, 0x0602c0,6, 0x0602e0,6, 0x060300,2, 0x060800,10, 0x060834,259, 0x061000,1, 0x062000,13, 0x062040,13, 0x064000,10, 0x064044,1, 0x064064,7, 0x064084,1, 0x06408c,3, 0x0640a4,18, 0x065000,5, 0x065020,5, 0x065040,5, 0x065060,5, 0x065080,5, 0x0650a0,5, 0x0650c0,5, 0x0650e0,5, 0x065100,5, 0x065120,5, 0x065140,5, 0x065160,5, 0x065180,5, 0x0651a0,5, 0x0651c0,5, 0x0651e0,5, 0x065200,5, 0x065220,5, 0x065240,5, 0x065260,5, 0x065280,5, 0x0652a0,5, 0x0652c0,5, 0x0652e0,5, 0x065300,5, 0x065320,5, 0x065340,5, 0x065360,5, 0x065380,5, 0x0653a0,5, 0x0653c0,5, 0x0653e0,5, 0x065400,5, 0x065420,5, 0x065440,5, 0x065460,5, 0x065480,5, 0x0654a0,5, 0x0654c0,5, 0x0654e0,5, 0x065500,5, 0x065520,5, 0x065540,5, 0x065560,5, 0x065580,5, 0x0655a0,5, 0x0655c0,5, 0x0655e0,5, 0x065600,5, 0x065620,5, 0x065640,5, 0x065660,5, 0x065680,5, 0x0656a0,5, 0x0656c0,5, 0x0656e0,5, 0x065700,5, 0x065720,5, 0x065740,5, 0x065760,5, 0x065780,5, 0x0657a0,5, 0x0657c0,5, 0x0657e0,5, 0x065800,1, 0x065808,32, 0x066000,7, 0x066024,5, 0x066048,12, 0x066080,4, 0x0660a0,5, 0x066100,1, 0x066108,4, 0x066180,13, 0x0661c0,13, 0x066200,67, 0x068000,156, 0x068400,10, 0x068430,3, 0x068440,2, 0x068800,27, 0x068880,4, 0x0688c0,25, 0x068940,6, 0x068960,2, 0x06896c,3, 0x068a00,8, 0x068a24,41, 0x068c00,6, 0x069000,204, 0x069400,3, 0x069410,6, 0x069800,2, 0x069814,1, 0x06981c,1, 0x069904,1, 0x069928,25, 0x069a00,6, 0x069c00,132, 0x069e3c,5, 0x069e7c,1, 0x06a000,2, 0x06a014,1, 0x06a01c,1, 0x06a100,2, 0x06a184,1, 0x06a194,30, 0x06a300,44, 0x080000,25, 0x080080,4, 0x0800a0,5, 0x0800c0,15, 0x080100,2, 0x080110,1, 0x08011c,2, 0x08012c,2, 0x08013c,3, 0x080180,2, 0x080190,3, 0x0801a0,3, 0x080200,6, 0x080220,6, 0x080240,13, 0x080280,6, 0x0802a0,6, 0x0802c0,13, 0x080300,1, 0x080308,1, 0x080310,1, 0x080318,1, 0x080404,5, 0x080504,1, 0x080574,36, 0x080800,2, 0x080904,1, 0x080970,38, 0x080a24,1, 0x080a30,4, 0x080b00,2, 0x080b84,1, 0x080bb0,22, 0x080c24,1, 0x080c2c,7, 0x080c64,1, 0x080c6c,7, 0x080ca4,1, 0x080cac,5, 0x081000,1, 0x081010,4, 0x081024,6, 0x081040,6, 0x081060,2, 0x081074,3, 0x081084,1, 0x08108c,5, 0x0810c0,5, 0x0810fc,3, 0x08110c,1, 0x081114,8, 0x081140,3, 0x081150,13, 0x08118c,5, 0x081200,2, 0x081300,54, 0x081404,3, 0x081480,13, 0x0814b8,7, 0x081500,6, 0x081580,2, 0x0815c4,1, 0x0815e4,12, 0x081620,3, 0x081630,1, 0x081800,5, 0x081820,1, 0x081840,5, 0x081860,1, 0x081880,5, 0x0818a0,1, 0x0818c0,5, 0x0818e0,1, 0x081900,5, 0x081920,1, 0x081940,5, 0x081960,1, 0x081980,5, 0x0819a0,1, 0x0819c0,5, 0x0819e0,1, 0x081a00,5, 0x081a20,1, 0x081a40,5, 0x081a60,1, 0x081a80,5, 0x081aa0,1, 0x081ac0,5, 0x081ae0,1, 0x081b00,5, 0x081b20,1, 0x081b40,5, 0x081b60,1, 0x081b80,5, 0x081ba0,1, 0x081bc0,5, 0x081be0,1, 0x081c00,5, 0x081c20,1, 0x081c40,5, 0x081c60,1, 0x081c80,5, 0x081ca0,1, 0x081cc0,5, 0x081ce0,1, 0x081d00,5, 0x081d20,1, 0x081d40,5, 0x081d60,1, 0x081d80,5, 0x081da0,1, 0x081dc0,5, 0x081de0,1, 0x081e00,5, 0x081e20,1, 0x081e40,5, 0x081e60,1, 0x081e80,5, 0x081ea0,1, 0x081ec0,5, 0x081ee0,1, 0x081f00,5, 0x081f20,1, 0x081f40,5, 0x081f60,1, 0x081f80,5, 0x081fa0,1, 0x081fc0,5, 0x081fe0,1, 0x082000,21, 0x082060,23, 0x0820c0,2, 0x0820d0,1, 0x0820dc,2, 0x0820ec,3, 0x082100,2, 0x082110,3, 0x082120,3, 0x082180,6, 0x0821a0,6, 0x0821c0,13, 0x082200,1, 0x082208,1, 0x082404,4, 0x082504,1, 0x082574,35, 0x082604,1, 0x082674,35, 0x082704,2, 0x082800,1, 0x082810,10, 0x082840,1, 0x082850,9, 0x082878,4, 0x082894,3, 0x0828a4,1, 0x0828ac,10, 0x0828fc,6, 0x082920,3, 0x082930,9, 0x082980,2, 0x0829c4,1, 0x0829e4,7, 0x083000,5, 0x083020,1, 0x083040,5, 0x083060,1, 0x083080,5, 0x0830a0,1, 0x0830c0,5, 0x0830e0,1, 0x083100,5, 0x083120,1, 0x083140,5, 0x083160,1, 0x083180,5, 0x0831a0,1, 0x0831c0,5, 0x0831e0,1, 0x083200,5, 0x083220,1, 0x083240,5, 0x083260,1, 0x083280,5, 0x0832a0,1, 0x0832c0,5, 0x0832e0,1, 0x083300,5, 0x083320,1, 0x083340,5, 0x083360,1, 0x083380,5, 0x0833a0,1, 0x0833c0,5, 0x0833e0,1, 0x083400,5, 0x083420,1, 0x083440,5, 0x083460,1, 0x083480,5, 0x0834a0,1, 0x0834c0,5, 0x0834e0,1, 0x083500,5, 0x083520,1, 0x083540,5, 0x083560,1, 0x083580,5, 0x0835a0,1, 0x0835c0,5, 0x0835e0,1, 0x083600,5, 0x083620,1, 0x083640,5, 0x083660,1, 0x083680,5, 0x0836a0,1, 0x0836c0,5, 0x0836e0,1, 0x083700,5, 0x083720,1, 0x083740,5, 0x083760,1, 0x083780,5, 0x0837a0,1, 0x0837c0,5, 0x0837e0,1, 0x084000,21, 0x084060,23, 0x0840c0,2, 0x0840d0,1, 0x0840dc,2, 0x0840ec,3, 0x084100,2, 0x084110,3, 0x084120,3, 0x084180,6, 0x0841a0,6, 0x0841c0,13, 0x084200,1, 0x084208,1, 0x084404,4, 0x084504,1, 0x084574,35, 0x084604,1, 0x084674,35, 0x084704,2, 0x084800,1, 0x084810,10, 0x084840,1, 0x084850,9, 0x084878,4, 0x084894,3, 0x0848a4,1, 0x0848ac,10, 0x0848fc,6, 0x084920,3, 0x084930,9, 0x084980,2, 0x0849c4,1, 0x0849e4,7, 0x085000,5, 0x085020,1, 0x085040,5, 0x085060,1, 0x085080,5, 0x0850a0,1, 0x0850c0,5, 0x0850e0,1, 0x085100,5, 0x085120,1, 0x085140,5, 0x085160,1, 0x085180,5, 0x0851a0,1, 0x0851c0,5, 0x0851e0,1, 0x085200,5, 0x085220,1, 0x085240,5, 0x085260,1, 0x085280,5, 0x0852a0,1, 0x0852c0,5, 0x0852e0,1, 0x085300,5, 0x085320,1, 0x085340,5, 0x085360,1, 0x085380,5, 0x0853a0,1, 0x0853c0,5, 0x0853e0,1, 0x085400,5, 0x085420,1, 0x085440,5, 0x085460,1, 0x085480,5, 0x0854a0,1, 0x0854c0,5, 0x0854e0,1, 0x085500,5, 0x085520,1, 0x085540,5, 0x085560,1, 0x085580,5, 0x0855a0,1, 0x0855c0,5, 0x0855e0,1, 0x085600,5, 0x085620,1, 0x085640,5, 0x085660,1, 0x085680,5, 0x0856a0,1, 0x0856c0,5, 0x0856e0,1, 0x085700,5, 0x085720,1, 0x085740,5, 0x085760,1, 0x085780,5, 0x0857a0,1, 0x0857c0,5, 0x0857e0,1, 0x086000,5, 0x086018,17, 0x086080,4, 0x0860a0,5, 0x0860c0,15, 0x086100,2, 0x086110,1, 0x08611c,2, 0x08612c,3, 0x086140,2, 0x086150,3, 0x086160,3, 0x086180,6, 0x0861a0,6, 0x0861c0,13, 0x086200,1, 0x086208,1, 0x086404,4, 0x086504,1, 0x086574,35, 0x086604,1, 0x086674,37, 0x086724,1, 0x086730,6, 0x086764,1, 0x08676c,7, 0x0867a4,1, 0x0867b0,6, 0x0867e4,1, 0x0867f0,6, 0x086824,1, 0x08682c,7, 0x086864,1, 0x086870,6, 0x0868a4,1, 0x0868b0,6, 0x086a00,2, 0x086a84,1, 0x086ab8,25, 0x086c00,4, 0x086d00,34, 0x086e00,1, 0x086e10,11, 0x086e40,4, 0x086e64,1, 0x086e6c,9, 0x086e94,5, 0x086ec0,5, 0x086efc,2, 0x086f10,3, 0x086f20,9, 0x087000,71, 0x087120,7, 0x087200,5, 0x087220,1, 0x087240,5, 0x087260,1, 0x087280,5, 0x0872a0,1, 0x0872c0,5, 0x0872e0,1, 0x087300,5, 0x087320,1, 0x087340,5, 0x087360,1, 0x087380,5, 0x0873a0,1, 0x0873c0,5, 0x0873e0,1, 0x087400,6, 0x087420,6, 0x087440,5, 0x088000,6, 0x08801c,3, 0x088040,6, 0x088060,14, 0x0880a0,8, 0x088200,105, 0x0883b0,4, 0x088400,2, 0x088410,3, 0x088440,4, 0x088460,5, 0x088480,4, 0x0884a0,5, 0x0884c0,4, 0x0884e0,5, 0x088500,6, 0x088520,7, 0x088540,7, 0x088560,7, 0x088580,7, 0x0885a0,6, 0x0885c0,14, 0x088600,6, 0x088620,6, 0x088640,9, 0x088800,27, 0x088880,4, 0x0888c0,25, 0x088940,6, 0x088960,2, 0x08896c,3, 0x088984,19, 0x088a00,1, 0x088a08,4, 0x088a20,1, 0x088c00,1, 0x088c08,1, 0x088c10,1, 0x088c18,1, 0x088c20,1, 0x088c28,1, 0x088c30,1, 0x088c38,1, 0x088c40,1, 0x088c48,1, 0x088c50,1, 0x088c58,1, 0x088c60,1, 0x088c68,1, 0x088c70,1, 0x088c78,1, 0x088c80,10, 0x088cb0,21, 0x088d20,7, 0x088e04,2, 0x088e10,2, 0x088f00,39, 0x089000,9, 0x089030,13, 0x089070,13, 0x0890b0,13, 0x0890f0,13, 0x089130,13, 0x089170,13, 0x0891b0,13, 0x0891f0,5, 0x089400,4, 0x089800,2, 0x089824,1, 0x089830,5, 0x089880,2, 0x0898a4,1, 0x0898b0,5, 0x089900,2, 0x089944,1, 0x089958,11, 0x089a00,2, 0x089a24,1, 0x089a2c,6, 0x090000,7, 0x090020,7, 0x090040,1, 0x090048,4, 0x090060,1, 0x090068,4, 0x090080,5, 0x0900a4,3, 0x0900c0,5, 0x0900e4,3, 0x090100,5, 0x090124,3, 0x090140,5, 0x090164,3, 0x090180,16, 0x0901c4,1, 0x0901cc,1, 0x0901d4,1, 0x0901dc,3, 0x090200,4, 0x090220,1, 0x090228,4, 0x090240,1, 0x090248,4, 0x090260,1, 0x090268,4, 0x090280,1, 0x090288,4, 0x0902a0,2, 0x090300,4, 0x090320,1, 0x090328,4, 0x090340,1, 0x090348,4, 0x090360,1, 0x090368,4, 0x090380,1, 0x090388,4, 0x0903a0,2, 0x090400,12, 0x090600,1, 0x090620,1, 0x090628,4, 0x090640,1, 0x090648,4, 0x090660,1, 0x090668,4, 0x090680,1, 0x090688,4, 0x0906a0,1, 0x0906a8,4, 0x0906c0,1, 0x0906c8,4, 0x0906e0,1, 0x0906e8,4, 0x090700,1, 0x090708,4, 0x090720,8, 0x090800,57, 0x0908e8,2, 0x090900,4, 0x090920,5, 0x090940,7, 0x09097c,1, 0x090984,1, 0x09098c,1, 0x0909a4,1, 0x0909ac,5, 0x0909c4,5, 0x0909e4,4, 0x090a04,5, 0x090a24,4, 0x090a40,1, 0x090a50,5, 0x090a70,10, 0x090aa0,6, 0x090ac0,6, 0x090ae0,4, 0x090b00,6, 0x090b20,6, 0x090b40,1, 0x090b48,8, 0x090b80,5, 0x090ba4,3, 0x090bc0,5, 0x090be4,3, 0x090c00,1, 0x090c20,9, 0x090c60,8, 0x090c84,1, 0x090c8c,2, 0x090c9c,1, 0x090cc4,1, 0x090cd0,4, 0x090ce4,1, 0x090cf4,3, 0x090d04,1, 0x090d0c,1, 0x090d20,1, 0x090d28,4, 0x090d40,1, 0x090d48,4, 0x090d60,1, 0x090d68,4, 0x090d80,1, 0x090d88,4, 0x090da0,1, 0x090da8,4, 0x090dc0,1, 0x090dc8,4, 0x090de0,1, 0x090e04,1, 0x090e18,10, 0x090e84,1, 0x090eb8,21, 0x090f10,3, 0x090f20,3, 0x090f40,8, 0x090f64,1, 0x092008,5, 0x092024,3, 0x092034,1, 0x09203c,1, 0x092044,1, 0x09204c,1, 0x092054,1, 0x09205c,2, 0x09206c,1, 0x092074,1, 0x09207c,1, 0x092084,3, 0x0920a0,6, 0x0920c0,1, 0x0920cc,1, 0x0920d8,1, 0x0920e4,1, 0x0920f0,1, 0x092104,4, 0x092120,6, 0x092140,1, 0x092148,4, 0x092164,5, 0x092180,7, 0x092200,11, 0x092280,6, 0x0922a0,6, 0x0922c0,13, 0x092300,6, 0x092320,6, 0x092340,13, 0x092380,6, 0x0923a0,6, 0x0923c0,13, 0x092400,6, 0x092420,6, 0x092440,13, 0x092500,6, 0x092520,6, 0x092540,17, 0x092600,6, 0x092620,6, 0x092640,17, 0x092700,6, 0x092720,6, 0x092740,17, 0x092800,6, 0x092820,1, 0x092834,3, 0x092844,1, 0x09284c,1, 0x092854,1, 0x09285c,2, 0x09286c,2, 0x092878,13, 0x093000,1, 0x09300c,2, 0x093024,3, 0x093034,1, 0x09303c,1, 0x093044,1, 0x09304c,2, 0x09305c,1, 0x093068,1, 0x093074,1, 0x093084,4, 0x0930a4,1, 0x0930ac,1, 0x0930b4,3, 0x0930c4,3, 0x093100,1, 0x093114,3, 0x093140,3, 0x093150,1, 0x093164,3, 0x093180,8, 0x0931bc,2, 0x0931c8,4, 0x0931e0,4, 0x093200,7, 0x093220,6, 0x093240,6, 0x093260,12, 0x0932a0,5, 0x0932c0,1, 0x0932c8,4, 0x0932e0,2, 0x0932f4,1, 0x0932fc,9, 0x094004,7, 0x094024,7, 0x094044,7, 0x094064,11, 0x094100,1, 0x094108,6, 0x094140,2, 0x094164,1, 0x094174,9, 0x0941a0,7, 0x0941c0,6, 0x0941e0,6, 0x094204,1, 0x09420c,2, 0x094400,1, 0x094420,6, 0x094440,3, 0x094454,1, 0x094464,3, 0x094500,2, 0x094584,1, 0x0945b8,18, 0x094604,1, 0x094680,2, 0x0946c4,15, 0x095000,2, 0x095024,1, 0x095030,9, 0x095064,1, 0x09506c,4, 0x095080,2, 0x0950a0,1, 0x0950a8,4, 0x0950c0,6, 0x0950e0,3, 0x0950f0,3, 0x095200,2, 0x095224,11, 0x095260,6, 0x095280,39, 0x09533c,1, 0x095344,3, 0x095354,3, 0x095364,1, 0x09536c,1, 0x095380,1, 0x095388,4, 0x0953a0,3, 0x0953b0,3, 0x0953c4,1, 0x0953cc,1, 0x0953d4,1, 0x0953dc,2, 0x095400,4, 0x095420,1, 0x095428,4, 0x095440,1, 0x095448,4, 0x095460,1, 0x095468,4, 0x095480,1, 0x095488,4, 0x0954a0,2, 0x095504,5, 0x095524,4, 0x095540,1, 0x095550,7, 0x095580,6, 0x0955a0,15, 0x095604,1, 0x095610,35, 0x0956a0,7, 0x0956c0,7, 0x0956e0,3, 0x0956f0,3, 0x095700,1, 0x095780,1, 0x095790,4, 0x0957a4,1, 0x0957ac,8, 0x095800,3, 0x095810,1, 0x09581c,3, 0x096000,7, 0x096020,2, 0x096030,3, 0x096040,1, 0x096100,60, 0x096200,1, 0x096400,27, 0x096480,4, 0x0964c0,25, 0x096540,6, 0x096560,2, 0x09656c,3, 0x096580,8, 0x0965a4,22, 0x096600,1, 0x096680,9, 0x0966c0,3, 0x0966d0,8, 0x0a0000,64, 0x0a0200,27, 0x0a0280,4, 0x0a02c0,25, 0x0a0340,6, 0x0a0360,2, 0x0a036c,3, 0x0a0380,8, 0x0a03a4,4, 0x0a0400,5, 0x0a0420,6, 0x0a0440,3, 0x0a0480,19, 0x0a0500,1, 0x0a0508,3, 0x0a0800,64, 0x0a0a00,27, 0x0a0a80,4, 0x0a0ac0,25, 0x0a0b40,6, 0x0a0b60,2, 0x0a0b6c,3, 0x0a0b80,8, 0x0a0ba4,4, 0x0a0c00,5, 0x0a0c20,6, 0x0a0c40,3, 0x0a0c80,19, 0x0a0d00,1, 0x0a0d08,3, 0x0a1000,64, 0x0a1200,27, 0x0a1280,4, 0x0a12c0,25, 0x0a1340,6, 0x0a1360,2, 0x0a136c,3, 0x0a1380,8, 0x0a13a4,4, 0x0a1400,5, 0x0a1420,6, 0x0a1440,3, 0x0a1480,19, 0x0a1500,1, 0x0a1508,3, 0x0a1800,64, 0x0a1a00,27, 0x0a1a80,4, 0x0a1ac0,25, 0x0a1b40,6, 0x0a1b60,2, 0x0a1b6c,3, 0x0a1b80,8, 0x0a1ba4,4, 0x0a1c00,5, 0x0a1c20,6, 0x0a1c40,3, 0x0a1c80,19, 0x0a1d00,1, 0x0a1d08,3, 0x0a2000,64, 0x0a2200,27, 0x0a2280,4, 0x0a22c0,25, 0x0a2340,6, 0x0a2360,2, 0x0a236c,3, 0x0a2380,8, 0x0a23a4,4, 0x0a2400,5, 0x0a2420,6, 0x0a2440,3, 0x0a2480,19, 0x0a2500,1, 0x0a2508,3, 0x0a2800,64, 0x0a2a00,27, 0x0a2a80,4, 0x0a2ac0,25, 0x0a2b40,6, 0x0a2b60,2, 0x0a2b6c,3, 0x0a2b80,8, 0x0a2ba4,4, 0x0a2c00,5, 0x0a2c20,6, 0x0a2c40,3, 0x0a2c80,19, 0x0a2d00,1, 0x0a2d08,3, 0x0a3000,64, 0x0a3200,27, 0x0a3280,4, 0x0a32c0,25, 0x0a3340,6, 0x0a3360,2, 0x0a336c,3, 0x0a3380,8, 0x0a33a4,4, 0x0a3400,5, 0x0a3420,6, 0x0a3440,3, 0x0a3480,19, 0x0a3500,1, 0x0a3508,3, 0x0a3800,64, 0x0a3a00,27, 0x0a3a80,4, 0x0a3ac0,25, 0x0a3b40,6, 0x0a3b60,2, 0x0a3b6c,3, 0x0a3b80,8, 0x0a3ba4,4, 0x0a3c00,5, 0x0a3c20,6, 0x0a3c40,3, 0x0a3c80,19, 0x0a3d00,1, 0x0a3d08,3, 0x0a4000,113, 0x0a41e0,20, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5d60,1, 0x0b5d68,4, 0x0b5d80,1, 0x0b5d88,4, 0x0b5da0,1, 0x0b5da8,4, 0x0b5dc0,62, 0x0b5f00,5, 0x0b5f18,4, 0x0b5f40,7, 0x0b5f60,2, 0x0b5f84,1, 0x0b5f94,4, 0x0b6000,222, 0x0b6380,97, 0x0b6520,5, 0x0b6540,5, 0x0b6560,5, 0x0b6580,5, 0x0b65a0,5, 0x0b65c0,5, 0x0b65e0,5, 0x0b6600,5, 0x0b6624,4, 0x0b6700,1, 0x0b6780,6, 0x0b67a0,6, 0x0b67c0,6, 0x0b67e0,6, 0x0b6800,1, 0x0b6880,6, 0x0b68a0,6, 0x0b68c0,6, 0x0b68e0,6, 0x0b6904,4, 0x0b6924,4, 0x0b6944,1, 0x0b6950,4, 0x0b6a00,27, 0x0b6a80,4, 0x0b6ac0,25, 0x0b6b40,6, 0x0b6b60,2, 0x0b6b6c,3, 0x0b6b80,8, 0x0b6ba4,4, 0x0b7000,197, 0x0b7320,5, 0x0b7340,5, 0x0b7360,5, 0x0b7380,5, 0x0b73a0,5, 0x0b73c0,5, 0x0b73e0,5, 0x0b7400,5, 0x0b7420,5, 0x0b7440,5, 0x0b7460,5, 0x0b7480,5, 0x0b74a0,5, 0x0b74c0,5, 0x0b74e0,5, 0x0b7500,3, 0x0b7510,3, 0x0b7520,2, 0x0b7540,3, 0x0b7550,3, 0x0b7560,2, 0x0b7580,3, 0x0b7590,3, 0x0b75a0,2, 0x0b75c0,3, 0x0b75d0,3, 0x0b75e0,2, 0x0b7600,3, 0x0b7610,3, 0x0b7620,2, 0x0b7640,3, 0x0b7650,3, 0x0b7660,2, 0x0b7680,3, 0x0b7690,3, 0x0b76a0,2, 0x0b76c0,3, 0x0b76d0,3, 0x0b76e0,2, 0x0b7700,1, 0x0b7804,1, 0x0b7820,6, 0x0b7840,6, 0x0b7880,12, 0x0b78c0,6, 0x0b78e0,14, 0x0b7920,25, 0x0b7988,4, 0x0b79a0,2, 0x0b79c0,9, 0x0b79e8,2, 0x0b7a00,1, 0x0b8000,14, 0x0b8040,6, 0x0b8060,6, 0x0b8080,6, 0x0b80a0,6, 0x0b80c0,6, 0x0b80e0,6, 0x0b8200,15, 0x0b8240,4, 0x0b8260,17, 0x0b82c0,6, 0x0b82e0,2, 0x0b82ec,3, 0x0b8300,8, 0x0b8324,1, 0x0b8400,124, 0x0b8600,2, 0x0b8610,3, 0x0ba000,12, 0x0ba040,6, 0x0ba060,6, 0x0ba080,6, 0x0ba0a0,6, 0x0ba0c0,28, 0x0ba200,39, 0x0ba2a4,4, 0x0ba300,27, 0x0ba370,2, 0x0ba380,25, 0x0ba3e8,2, 0x0ba400,27, 0x0ba470,2, 0x0ba480,11, 0x0ba4b0,2, 0x0ba500,50, 0x0ba5d0,4, 0x0ba600,13, 0x0ba638,2, 0x0ba800,62, 0x0ba900,4, 0x0baa00,15, 0x0baa40,2, 0x0baa80,7, 0x0baaa0,2, 0x0baac0,13, 0x0baaf8,31, 0x0bab78,15, 0x0babb8,2, 0x0bac00,62, 0x0bad00,4, 0x0bae00,27, 0x0bae70,2, 0x0bae80,7, 0x0baea0,2, 0x0baec0,5, 0x0baed8,2, 0x0baf00,7, 0x0baf20,2, 0x0baf40,9, 0x0baf68,2, 0x0bb000,27, 0x0bb080,4, 0x0bb0c0,25, 0x0bb140,6, 0x0bb160,2, 0x0bb16c,3, 0x0bb180,8, 0x0bb1a4,3, 0x0bb200,7, 0x0bb220,7, 0x0bb240,7, 0x0bb260,7, 0x0bb280,7, 0x0bb2a0,7, 0x0bb2c0,7, 0x0bb2e0,7, 0x0bb300,7, 0x0bb320,7, 0x0bb340,7, 0x0bb360,7, 0x0c0000,55, 0x0c00e0,9, 0x0c0108,5, 0x0c0120,35, 0x0c0200,55, 0x0c02e0,9, 0x0c0308,5, 0x0c0320,35, 0x0c0400,55, 0x0c04e0,9, 0x0c0508,5, 0x0c0520,35, 0x0c0600,55, 0x0c06e0,9, 0x0c0708,5, 0x0c0720,35, 0x0c0800,110, 0x0c09c0,10, 0x0c0a00,10, 0x0c0a40,10, 0x0c0a80,10, 0x0c0ac0,4, 0x0c0c00,2, 0x0c0c80,20, 0x0c0d00,5, 0x0c0e00,3, 0x0c0e20,1, 0x0c0e28,4, 0x0c1000,9, 0x0c1028,16, 0x0c106c,1, 0x0c1080,10, 0x0c1100,9, 0x0c1128,16, 0x0c116c,1, 0x0c1180,10, 0x0c1200,9, 0x0c1228,16, 0x0c126c,1, 0x0c1280,10, 0x0c1300,9, 0x0c1328,16, 0x0c136c,1, 0x0c1380,10, 0x0c1400,3, 0x0c1410,20, 0x0c1480,1, 0x0c1488,5, 0x0c1800,2, 0x0c2000,7, 0x0c2020,7, 0x0c2040,7, 0x0c2060,7, 0x0c2080,33, 0x0c2120,6, 0x0c2140,6, 0x0c2184,1, 0x0c218c,4, 0x0c21a0,6, 0x0c21c0,7, 0x0c2200,2, 0x0c2214,5, 0x0c2234,5, 0x0c2254,5, 0x0c2274,5, 0x0c2300,12, 0x0c2340,5, 0x0c8000,2, 0x0c8104,1, 0x0c8174,37, 0x0c8284,1, 0x0c82b8,20, 0x0c8384,1, 0x0c83b8,22, 0x0c8420,4, 0x0c8440,4, 0x0c8460,4, 0x0c8480,2, 0x0c84c0,64, 0x0c8600,1, 0x0c8608,6, 0x0c8624,1, 0x0c8680,3, 0x0c86a0,1, 0x0c86a8,4, 0x0c8700,1, 0x0c8714,1, 0x0c871c,2, 0x0c8804,1, 0x0c8880,64, 0x0c8984,1, 0x0c8994,3, 0x0c89a4,1, 0x0c89ac,9, 0x0c8a04,3, 0x0c8a14,7, 0x0c8a40,3, 0x0c8a60,5, 0x0c8a80,1, 0x0c8ac0,21, 0x0c8b20,5, 0x0c8b40,5, 0x0c8b60,5, 0x0c8b80,5, 0x0c8c00,7, 0x0c8c20,7, 0x0c8c40,7, 0x0c8c60,7, 0x0c8c80,10, 0x0c8e00,2, 0x0c8f04,1, 0x0c8f30,54, 0x0c9104,1, 0x0c9178,34, 0x0ca000,9, 0x0ca404,1, 0x0ca40c,1, 0x0ca484,1, 0x0ca4c0,16, 0x0ca504,1, 0x0ca50c,5, 0x0ca524,1, 0x0ca52c,1, 0x0ca544,1, 0x0ca564,7, 0x0ca584,1, 0x0ca590,28, 0x0ca604,1, 0x0ca60c,4, 0x0ca800,10, 0x0ca834,5, 0x0cb000,8, 0x0cb404,1, 0x0cb410,4, 0x0cb424,1, 0x0cb430,4, 0x0cb504,1, 0x0cb530,56, 0x0cb800,20, 0x0cb880,12, 0x0cb8c0,12, 0x0cb900,11, 0x0cc000,37, 0x0cc200,3, 0x0cc400,2, 0x0cc504,1, 0x0cc570,36, 0x0cc800,2, 0x0cc814,3, 0x0d0000,7, 0x0d0020,7, 0x0d0040,7, 0x0d0060,2, 0x0d006c,2, 0x0d0080,7, 0x0d00a0,7, 0x0d00c0,7, 0x0d00e0,7, 0x0d0100,4, 0x0d0120,5, 0x0d0140,7, 0x0d0160,6, 0x0d0180,7, 0x0d01a0,7, 0x0d01c0,7, 0x0d01e0,7, 0x0d0200,7, 0x0d0220,7, 0x0d0240,3, 0x0d0250,1, 0x0d0280,7, 0x0d02a0,7, 0x0d02c0,1, 0x0d0300,3, 0x0d0310,3, 0x0d0320,1, 0x0d0340,3, 0x0d0350,3, 0x0d0360,1, 0x0d0380,5, 0x0d03c0,3, 0x0d03d0,3, 0x0d03e0,1, 0x0d0400,3, 0x0d0410,3, 0x0d0420,1, 0x0d0440,3, 0x0d0450,3, 0x0d0460,1, 0x0d0480,3, 0x0d0490,3, 0x0d04a0,1, 0x0d0500,17, 0x0d0580,3, 0x0d0590,3, 0x0d05a0,1, 0x0d05c0,9, 0x0d0600,8, 0x0d0800,27, 0x0d0880,4, 0x0d08c0,25, 0x0d0940,6, 0x0d0960,2, 0x0d096c,3, 0x0d0a00,184, 0x0d0ce4,1, 0x0d0cf0,5, 0x0d0d08,4, 0x0d0d20,1, 0x0d0d28,4, 0x0d0d40,2, 0x0d0e00,2, 0x0d0f00,34, 0x0d1004,3, 0x0d1014,1, 0x0d101c,1, 0x0d1024,1, 0x0d102c,1, 0x0d1044,1, 0x0d1054,7, 0x0d1080,34, 0x0d1204,4, 0x0d1220,7, 0x0d1240,2, 0x0d1280,18, 0x0d1300,7, 0x0d4000,3, 0x0d4010,3, 0x0d4020,3, 0x0d4030,3, 0x0d4040,3, 0x0d4054,771, 0x0d5000,5, 0x0d5024,259, 0x0d6000,10, 0x0d6034,515, 0x0d7004,1, 0x0d700c,11, 0x0d7040,9, 0x0d7080,9, 0x0d70c0,9, 0x0d7100,9, 0x0d7140,34, 0x0d8000,67, 0x0d8110,3, 0x0d8120,3, 0x0d8130,3, 0x0d8200,67, 0x0d8310,3, 0x0d8320,3, 0x0d8330,3, 0x0d8400,67, 0x0d8510,3, 0x0d8520,3, 0x0d8530,3, 0x0d8600,67, 0x0d8710,3, 0x0d8720,3, 0x0d8730,3, 0x0d8800,67, 0x0d8910,3, 0x0d8920,3, 0x0d8930,3, 0x0d8a00,67, 0x0d8b10,3, 0x0d8b20,3, 0x0d8b30,3, 0x0d8c00,67, 0x0d8d10,3, 0x0d8d20,3, 0x0d8d30,3, 0x0d8e00,67, 0x0d8f10,3, 0x0d8f20,3, 0x0d8f30,3, 0x0d9000,67, 0x0d9110,3, 0x0d9120,3, 0x0d9130,3, 0x0d9200,1, 0x0da000,1, 0x0da084,1, 0x0da0c0,17, 0x0da180,2, 0x0da1c4,1, 0x0da1e4,9, 0x0da244,1, 0x0da264,9, 0x0da2c4,1, 0x0da2e4,9, 0x0da344,1, 0x0da364,9, 0x0da3c4,1, 0x0da3e4,8, 0x0da800,9, 0x0da840,8, 0x0da864,2, 0x0da870,1, 0x0da880,8, 0x0da8a4,2, 0x0da8b0,1, 0x0da8c0,8, 0x0da8e4,2, 0x0da8f0,1, 0x0da900,8, 0x0da924,2, 0x0da930,1, 0x0da984,1, 0x0da9c0,39, 0x0daa64,3, 0x0daa74,1, 0x0daa7c,3, 0x0dab00,4, 0x0dab14,1, 0x0dab1c,5, 0x0dab40,19, 0x0daba0,1, 0x0daba8,4, 0x0dac00,3, 0x0dac10,3, 0x0dac20,3, 0x0dac30,3, 0x0dac40,3, 0x0dac50,3, 0x0dac60,3, 0x0dac70,3, 0x0dac80,3, 0x0dac90,2, 0x0dad04,1, 0x0dad40,26, 0x0dae04,1, 0x0dae14,5, 0x0dae34,1, 0x0dae3c,7, 0x0db000,36, 0x0db200,27, 0x0db280,4, 0x0db2c0,25, 0x0db340,6, 0x0db360,2, 0x0db36c,3, 0x0db380,8, 0x0db3a4,5, 0x0db400,7, 0x0db420,6, 0x0db440,7, 0x0db460,8, 0x0dc000,2, 0x0dc010,10, 0x0dc040,28, 0x0dc0c0,6, 0x0dc0e0,6, 0x0dc100,1, 0x0dc140,9, 0x0dc17c,10, 0x0dc1bc,1, 0x0dc200,12, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0160,2, 0x0e0180,4, 0x0e019c,18, 0x0e01ec,4, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0240,1, 0x0e027c,9, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0560,2, 0x0e0580,4, 0x0e059c,18, 0x0e05ec,4, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0640,1, 0x0e067c,9, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0960,2, 0x0e0980,4, 0x0e099c,18, 0x0e09ec,4, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0a40,1, 0x0e0a7c,9, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d60,2, 0x0e0d80,4, 0x0e0d9c,18, 0x0e0dec,4, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e0e40,1, 0x0e0e7c,9, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1160,2, 0x0e1180,4, 0x0e119c,18, 0x0e11ec,4, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1240,1, 0x0e127c,9, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1560,2, 0x0e1580,4, 0x0e159c,18, 0x0e15ec,4, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1640,1, 0x0e167c,9, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1960,2, 0x0e1980,4, 0x0e199c,18, 0x0e19ec,4, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1a40,1, 0x0e1a7c,9, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d60,2, 0x0e1d80,4, 0x0e1d9c,18, 0x0e1dec,4, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e1e40,1, 0x0e1e7c,9, 0x0e2000,3, 0x0e2018,2, 0x0e2024,13, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,9, 0x0e2140,3, 0x0e2160,2, 0x0e2180,4, 0x0e219c,18, 0x0e21ec,4, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2240,1, 0x0e227c,9, 0x0e2400,3, 0x0e2418,2, 0x0e2424,13, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,9, 0x0e2540,3, 0x0e2560,2, 0x0e2580,4, 0x0e259c,18, 0x0e25ec,4, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2640,1, 0x0e267c,9, 0x0e2800,3, 0x0e2818,2, 0x0e2824,13, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,9, 0x0e2940,3, 0x0e2960,2, 0x0e2980,4, 0x0e299c,18, 0x0e29ec,4, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e2a40,1, 0x0e2a7c,9, 0x0e2c00,1, 0x0e3044,12, 0x0e3078,1, 0x0e3200,17, 0x0e3248,4, 0x0e3260,4, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,4, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,4, 0x0e3300,1, 0x0e3308,4, 0x0e3320,4, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,22, 0x0e3500,90, 0x0e366c,2, 0x0e3800,6, 0x0e3820,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,1, 0x0e3b94,6, 0x0e3c40,2, 0x0e3c4c,69, 0x0e4004,16, 0x0e4048,3, 0x0e4100,2, 0x0e4184,1, 0x0e41bc,84, 0x0e4340,36, 0x0e4400,4, 0x0e4484,1, 0x0e44c0,20, 0x0e4584,1, 0x0e45c0,16, 0x0e4900,7, 0x0e4920,2, 0x0e4940,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c04,1, 0x0e4df8,156, 0x0e5084,1, 0x0e50a0,22, 0x0e5100,1, 0x0e5200,26, 0x0e5280,9, 0x0e5300,12, 0x0e5380,27, 0x0e5400,39, 0x0e54a0,66, 0x0e55c0,1, 0x0e55c8,4, 0x0e55e0,4, 0x0e5600,2, 0x0e5614,3, 0x0e5640,5, 0x0e5680,4, 0x0e56a0,13, 0x0e56e0,12, 0x0e5780,28, 0x0e5800,20, 0x0e5880,1, 0x0e58a0,7, 0x0e58c0,11, 0x0e58f0,3, 0x0e5a00,99, 0x0e5c00,28, 0x0e5d00,44, 0x0e5e00,4, 0x0e5e20,1, 0x0e5e28,4, 0x0e5e40,1, 0x0e5e48,4, 0x0e5e80,4, 0x0e5ec0,13, 0x0e6000,116, 0x0e6400,5, 0x0e6418,94, 0x0e65a0,30, 0x0e6800,3, 0x0e6810,3, 0x0e6820,3, 0x0e6830,3, 0x0e6840,3, 0x0e6850,3, 0x0e6860,1, 0x0e6868,4, 0x0e6884,1, 0x0e688c,1, 0x0e6894,1, 0x0e689c,10, 0x0e6a00,3, 0x0e6a10,3, 0x0e6a20,3, 0x0e6a30,3, 0x0e6a40,3, 0x0e6a50,3, 0x0e6a60,3, 0x0e6a70,3, 0x0e6a80,3, 0x0e6a90,3, 0x0e6aa0,3, 0x0e6ab0,3, 0x0e6ac0,3, 0x0e6ad0,3, 0x0e6ae0,3, 0x0e6af0,3, 0x0e6b00,3, 0x0e6b10,3, 0x0e6b20,3, 0x0e6b30,3, 0x0e6b40,3, 0x0e6b50,3, 0x0e6b60,3, 0x0e6b70,3, 0x0e6b80,3, 0x0e6b90,3, 0x0e6ba0,3, 0x0e6bb0,3, 0x0e6bc0,3, 0x0e6bd0,3, 0x0e6be0,3, 0x0e6bf0,3, 0x0e6c00,1, 0x0e8000,11, 0x0e8030,1, 0x0e8080,2, 0x0e80c4,2, 0x0e80d0,1, 0x0e80d8,1, 0x0e80e0,1, 0x0e80f4,3, 0x0e9000,128, 0x0e9208,256, 0x0e9610,145, 0x0ea000,24, 0x0ea078,1, 0x0ea080,1, 0x0f0000,1, 0x0f000c,4, 0x0f0020,7, 0x0f0040,2, 0x0f0404,1, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,7, 0x0f04a0,7, 0x0f04c0,7, 0x0f0520,2, 0x0f052c,2, 0x0f0540,10, 0x0f0580,10, 0x0f05c0,3, 0x0f0600,20, 0x0f0680,1, 0x0f0800,5, 0x0f0a00,27, 0x0f0a80,3, 0x0f0c04,1, 0x0f0d80,216, 0x0f1128,8, 0x0f11a8,8, 0x0f1228,8, 0x0f12a8,8, 0x0f1328,8, 0x0f13a8,8, 0x0f1428,8, 0x0f14a8,8, 0x0f1528,8, 0x0f15a8,8, 0x0f1600,3, 0x0f1610,3, 0x0f1620,1, 0x0f1800,84, 0x0f1a00,16, 0x0f2000,1, 0x0f2080,18, 0x0f2100,1, 0x0f2200,2, 0x0f2210,3, 0x0f2220,3, 0x0f2230,3, 0x0f2240,3, 0x0f2250,3, 0x0f2260,3, 0x0f2270,3, 0x0f2280,3, 0x0f2290,3, 0x0f22a0,3, 0x0f22b0,3, 0x0f22c0,3, 0x0f22d0,3, 0x0f22e0,3, 0x0f22f0,3, 0x0f2300,3, 0x0f3000,40, 0x0f3400,2, 0x0f3410,3, 0x0f3420,3, 0x0f3430,3, 0x0f3440,3, 0x0f3450,3, 0x0f3460,3, 0x0f3470,3, 0x0f3480,3, 0x0f3490,3, 0x0f34a0,3, 0x0f34b0,3, 0x0f34c0,3, 0x0f34d0,3, 0x0f34e0,3, 0x0f34f0,3, 0x0f3500,3, 0x0f3600,4, 0x0f3800,8, 0x0f3900,2, 0x0f3910,3, 0x0f3920,3, 0x0f3930,3, 0x0f3940,3, 0x0f3950,3, 0x0f3960,3, 0x0f3970,3, 0x0f3980,3, 0x0f3a00,3, 0x0f4000,23, 0x0f4080,23, 0x0f4100,23, 0x0f4180,23, 0x0f4200,2, 0x0f4240,15, 0x0f4280,1, 0x0f4400,2, 0x0f4410,3, 0x0f4420,3, 0x0f4430,3, 0x0f4440,3, 0x0f4450,3, 0x0f4460,3, 0x0f4470,3, 0x0f4480,3, 0x0f4500,1, 0x0f4510,2, 0x0f4524,1, 0x0f4534,3, 0x0f4544,3, 0x0f4554,1, 0x0f455c,1, 0x0f4604,1, 0x0f467c,52, 0x0f4800,5, 0x0f4840,9, 0x0f4880,9, 0x0f48c0,20, 0x0f4920,3, 0x0f4930,2, 0x0f4940,9, 0x0f4980,3, 0x0f49a0,8, 0x0f4a00,6, 0x0f4a20,7, 0x0f4a40,6, 0x0f4a60,7, 0x0f4a80,3, 0x0f4aa0,6, 0x0f4ac0,2, 0x0f4acc,2, 0x0f4ae0,2, 0x0f4aec,2, 0x0f4b00,1, 0x0f4c00,2, 0x0f4d00,2, 0x0f4d20,14, 0x0f4d60,9, 0x0f4e00,3, 0x0f4e20,9, 0x0f4e80,1, 0x0f4ea0,16, 0x0f4f00,4, 0x0f5004,1, 0x0f5080,36, 0x0f5114,13, 0x0f5204,1, 0x0f5280,36, 0x0f5314,1, 0x0f5400,20, 0x0f5480,9, 0x0f5804,1, 0x0f5880,36, 0x0f5914,13, 0x0f5a04,1, 0x0f5a80,36, 0x0f5b14,1, 0x0f5c00,20, 0x0f5c80,9, 0x0f6004,1, 0x0f6080,36, 0x0f6114,13, 0x0f6204,1, 0x0f6280,36, 0x0f6314,1, 0x0f6400,20, 0x0f6480,9, 0x0f6804,1, 0x0f6880,36, 0x0f6914,13, 0x0f6a04,1, 0x0f6a80,36, 0x0f6b14,1, 0x0f6c00,20, 0x0f6c80,9, 0x0f7004,1, 0x0f7080,36, 0x0f7114,13, 0x0f7204,1, 0x0f7280,36, 0x0f7314,1, 0x0f7400,20, 0x0f7480,9, 0x0f7804,1, 0x0f7880,36, 0x0f7914,13, 0x0f7a04,1, 0x0f7a80,36, 0x0f7b14,1, 0x0f7c00,20, 0x0f7c80,9, 0x0f8004,1, 0x0f8080,36, 0x0f8114,13, 0x0f8204,1, 0x0f8280,36, 0x0f8314,1, 0x0f8400,20, 0x0f8480,9, 0x0f8804,1, 0x0f8880,36, 0x0f8914,13, 0x0f8a04,1, 0x0f8a80,36, 0x0f8b14,1, 0x0f8c00,20, 0x0f8c80,9, 0x0f9004,1, 0x0f9080,36, 0x0f9114,13, 0x0f9204,1, 0x0f9280,36, 0x0f9314,1, 0x0f9400,20, 0x0f9480,9, 0x0f9804,1, 0x0f9880,36, 0x0f9914,13, 0x0f9a04,1, 0x0f9a80,36, 0x0f9b14,1, 0x0f9c00,20, 0x0f9c80,9, 0x0fa004,1, 0x0fa080,36, 0x0fa114,13, 0x0fa204,1, 0x0fa280,36, 0x0fa314,1, 0x0fa400,20, 0x0fa480,9, 0x0fa804,1, 0x0fa880,36, 0x0fa914,13, 0x0faa04,1, 0x0faa80,36, 0x0fab14,1, 0x0fac00,20, 0x0fac80,9, 0x0fb004,1, 0x0fb080,36, 0x0fb114,13, 0x0fb204,1, 0x0fb280,36, 0x0fb314,1, 0x0fb400,20, 0x0fb480,9, 0x0fb804,1, 0x0fb880,36, 0x0fb914,13, 0x0fba04,1, 0x0fba80,36, 0x0fbb14,1, 0x0fbc00,20, 0x0fbc80,9, 0x0fc000,20, 0x0fc084,1, 0x0fc08c,1, 0x0fc0c0,12, 0x0fc100,3, 0x0fc200,20, 0x0fc284,1, 0x0fc28c,1, 0x0fc2c0,12, 0x0fc300,3, 0x0fc400,20, 0x0fc484,1, 0x0fc48c,1, 0x0fc4c0,12, 0x0fc500,3, 0x0fc600,20, 0x0fc684,1, 0x0fc68c,1, 0x0fc6c0,12, 0x0fc700,3, 0x0fc800,20, 0x0fc884,1, 0x0fc88c,1, 0x0fc8c0,12, 0x0fc900,3, 0x0fca00,20, 0x0fca84,1, 0x0fca8c,1, 0x0fcac0,12, 0x0fcb00,3, 0x0fcc00,20, 0x0fcc84,1, 0x0fcc8c,1, 0x0fccc0,12, 0x0fcd00,3, 0x0fce00,20, 0x0fce84,1, 0x0fce8c,1, 0x0fcec0,12, 0x0fcf00,3, 0x0fd000,20, 0x0fd084,1, 0x0fd08c,1, 0x0fd0c0,12, 0x0fd100,3, 0x0fd200,20, 0x0fd284,1, 0x0fd28c,1, 0x0fd2c0,12, 0x0fd300,3, 0x0fd400,20, 0x0fd484,1, 0x0fd48c,1, 0x0fd4c0,12, 0x0fd500,3, 0x0fd600,20, 0x0fd684,1, 0x0fd68c,1, 0x0fd6c0,12, 0x0fd700,3, 0x0fd800,20, 0x0fd884,1, 0x0fd88c,1, 0x0fd8c0,12, 0x0fd900,3, 0x0fda00,5, 0x0fda80,20, 0x0fdb00,20, 0x0fdb80,11, 0x0fdc04,1, 0x0fdc14,31, 0x0fdd00,3, 0x0fdd44,1, 0x0fdd50,13, 0x0fe000,2, 0x0fe010,3, 0x0fe020,3, 0x0fe030,3, 0x0fe040,3, 0x0fe050,3, 0x0fe060,3, 0x0fe070,3, 0x0fe080,3, 0x0fe090,3, 0x0fe0a0,3, 0x0fe0b0,3, 0x0fe0c0,3, 0x0fe0d0,3, 0x0fe0e0,3, 0x0fe0f0,3, 0x0fe100,3, 0x0fe200,10, 0x0fe404,1, 0x0fe40c,1, 0x0fe800,253, 0x110000,1, 0x110008,4, 0x110024,4, 0x110040,2, 0x110064,11, 0x1100a0,6, 0x1100c0,2, 0x110104,1, 0x110178,34, 0x110204,5, 0x110224,3, 0x110244,4, 0x110264,3, 0x110274,3, 0x110284,3, 0x1102a4,5, 0x1102c4,1, 0x1102d0,4, 0x1102e4,1, 0x1102f4,3, 0x110304,1, 0x11030c,1, 0x110314,1, 0x11031c,1, 0x110324,1, 0x11032c,1, 0x110334,1, 0x11033c,1, 0x110344,1, 0x11034c,1, 0x110354,1, 0x11035c,1, 0x110364,1, 0x11036c,1, 0x110374,1, 0x11037c,1, 0x110384,3, 0x110394,1, 0x11039c,1, 0x1103a4,3, 0x1103b4,3, 0x1103c4,35, 0x110604,1, 0x110630,23, 0x1106a4,4, 0x1106c0,2, 0x1106e4,1, 0x1106f0,4, 0x110704,1, 0x110710,4, 0x110724,4, 0x110740,2, 0x110760,6, 0x110780,12, 0x1107c0,6, 0x110800,1, 0x110820,9, 0x110850,5, 0x110870,5, 0x1108a0,9, 0x1108e0,9, 0x110910,38, 0x1109b0,1, 0x1109c0,4, 0x1109e0,6, 0x110a00,6, 0x110a20,6, 0x110a40,6, 0x110a60,6, 0x110a80,6, 0x110aa0,6, 0x110ac0,6, 0x110ae0,6, 0x110b00,6, 0x110b20,6, 0x110b40,6, 0x110b60,6, 0x110b80,6, 0x110ba0,6, 0x110bc0,6, 0x110be0,1, 0x110c04,1, 0x110c10,9, 0x110c40,1, 0x110c54,4, 0x110c70,1, 0x110c80,1, 0x110c90,1, 0x110ca0,1, 0x110cb4,1, 0x110cbc,2, 0x110cd0,1, 0x110ce0,1, 0x110cf0,1, 0x110d00,1, 0x110d10,1, 0x110d20,1, 0x110d30,1, 0x110d40,1, 0x110d50,1, 0x110d60,1, 0x110d70,1, 0x110d80,1, 0x110d90,1, 0x110da0,1, 0x110db0,1, 0x110dc0,1, 0x110dd0,1, 0x110de0,1, 0x110df0,1, 0x110e00,1, 0x110e10,1, 0x110e20,1, 0x110e30,1, 0x110e40,1, 0x110e50,1, 0x110e60,1, 0x110e70,1, 0x110e80,1, 0x110e90,1, 0x110ea0,1, 0x110eb0,1, 0x110ec0,1, 0x110ed0,64, 0x110fe0,1, 0x110ff0,6, 0x111020,6, 0x111200,9, 0x111240,9, 0x111280,9, 0x1112c0,9, 0x111304,2, 0x111400,1, 0x111440,1, 0x111460,14, 0x1114a4,1, 0x1114ac,2, 0x1114c0,6, 0x1114e0,1, 0x1114f0,1, 0x111500,1, 0x111520,8, 0x111544,6, 0x111580,3, 0x111604,37, 0x111700,4, 0x111720,5, 0x111740,7, 0x111760,6, 0x111780,4, 0x1117a0,6, 0x111800,3, 0x111810,3, 0x111820,3, 0x111830,3, 0x111840,3, 0x111850,3, 0x111860,3, 0x111870,3, 0x111880,3, 0x111890,3, 0x1118a0,3, 0x1118b0,3, 0x1118c0,3, 0x1118d0,3, 0x1118e0,3, 0x1118f0,3, 0x111900,2, 0x111a00,8, 0x111a24,3, 0x111a44,1, 0x111a4c,73, 0x111c00,33, 0x111d00,33, 0x111e00,33, 0x111f00,33, 0x112000,2, 0x112400,222, 0x112800,53, 0x112900,2, 0x112910,8, 0x112940,2, 0x112950,8, 0x112980,19, 0x1129d0,3, 0x1129e0,3, 0x1129f0,3, 0x112a00,1, 0x112a80,14, 0x112ac4,7, 0x112b00,14, 0x112b44,7, 0x112b80,14, 0x112bc4,7, 0x112c00,14, 0x112c44,7, 0x112c84,1, 0x112c90,13, 0x112d00,12, 0x112d40,1, 0x112d60,7, 0x112d80,6, 0x112da0,16, 0x113000,59, 0x1130f0,54, 0x113200,6, 0x113220,6, 0x113240,3, 0x113250,3, 0x113260,3, 0x113270,3, 0x113280,5, 0x114004,1, 0x114064,43, 0x114204,5, 0x114220,10, 0x114260,21, 0x1142bc,1, 0x1142c8,1, 0x1142d4,1, 0x1142e0,1, 0x1142ec,1, 0x1142f8,1, 0x114310,1, 0x114320,1, 0x11432c,1, 0x114338,1, 0x114380,32, 0x114404,3, 0x114414,4, 0x114428,14, 0x114480,2, 0x1144c4,1, 0x1144d0,15, 0x114524,4, 0x114544,1, 0x114564,13, 0x1145a0,6, 0x1145c0,1, 0x1145c8,2, 0x114604,21, 0x114680,1, 0x114688,7, 0x114804,5, 0x114880,37, 0x114920,1, 0x114930,1, 0x114940,1, 0x114950,1, 0x114960,1, 0x114970,1, 0x114980,1, 0x114990,1, 0x1149a0,1, 0x1149c0,6, 0x1149e0,6, 0x114a00,1, 0x114c00,1, 0x114c0c,1, 0x114c18,1, 0x114c24,1, 0x114c30,1, 0x114c3c,1, 0x114c48,1, 0x114c54,1, 0x114c60,1, 0x114c6c,1, 0x114c78,1, 0x114c84,1, 0x114c90,1, 0x114c9c,1, 0x114ca8,1, 0x114cb4,1, 0x114cc0,1, 0x114ccc,1, 0x114cd8,1, 0x114cf8,3, 0x114d08,4, 0x114d40,14, 0x114d7c,3, 0x114d94,1, 0x114d9c,1, 0x114da4,1, 0x114dac,2, 0x114e00,2, 0x114e20,3, 0x114e30,9, 0x114e60,1, 0x114e70,1, 0x114e80,1, 0x114e98,2, 0x115000,27, 0x115080,4, 0x1150c0,25, 0x115140,6, 0x115160,2, 0x11516c,3, 0x115180,8, 0x1151a4,15, 0x115200,7, 0x115220,7, 0x115240,3, 0x115400,3, 0x115424,4, 0x115440,8, 0x115464,1, 0x115474,9, 0x1154a0,6, 0x1154c0,6, 0x1154e0,6, 0x115500,3, 0x115600,121, 0x1157f0,15, 0x115840,2, 0x115864,1, 0x11586c,5, 0x115884,17, 0x1158e4,1, 0x1158ec,10, 0x115920,5, 0x115940,4, 0x115960,5, 0x115980,2, 0x1159a4,1, 0x1159ac,10, 0x1159e0,5, 0x115a00,4, 0x115a20,5, 0x115a40,2, 0x115a64,1, 0x115a6c,10, 0x115aa0,5, 0x115ac0,4, 0x115ae0,5, 0x115b00,2, 0x115b24,1, 0x115b2c,5, 0x115b80,2, 0x115bc4,1, 0x115bd0,14, 0x115c44,24, 0x115cc0,3, 0x115d00,35, 0x116000,1, 0x116008,18, 0x117000,5, 0x117020,5, 0x117040,1, 0x117060,5, 0x117080,5, 0x1170a0,5, 0x1170c0,1, 0x1170e0,5, 0x117100,5, 0x117120,5, 0x117140,1, 0x117160,5, 0x117180,5, 0x1171a0,5, 0x1171c0,1, 0x1171e0,5, 0x117200,5, 0x117220,5, 0x117240,1, 0x117260,5, 0x117280,5, 0x1172a0,5, 0x1172c0,1, 0x1172e0,5, 0x117300,5, 0x117320,5, 0x117340,1, 0x117360,5, 0x117380,5, 0x1173a0,5, 0x1173c0,1, 0x1173e0,5, 0x117400,5, 0x117420,5, 0x117440,1, 0x117460,5, 0x117480,5, 0x1174a0,5, 0x1174c0,1, 0x1174e0,5, 0x117500,5, 0x117520,5, 0x117540,1, 0x117560,5, 0x117580,5, 0x1175a0,5, 0x1175c0,1, 0x1175e0,5, 0x117600,5, 0x117620,5, 0x117640,1, 0x117660,5, 0x117680,5, 0x1176a0,5, 0x1176c0,1, 0x1176e0,5, 0x117700,5, 0x117720,5, 0x117740,1, 0x117760,5, 0x117780,5, 0x1177a0,5, 0x1177c0,1, 0x1177e0,5, 0x117800,1, 0x118000,9, 0x118040,2, 0x120000,25, 0x120074,7, 0x1200c0,11, 0x120100,1, 0x120108,1, 0x120110,14, 0x12014c,4, 0x120160,10, 0x12018c,6, 0x1201a8,4, 0x1201c0,1, 0x1201c8,4, 0x1201e0,1, 0x1201e8,4, 0x120200,1, 0x120208,4, 0x120400,13, 0x120440,2, 0x120454,1, 0x12045c,3, 0x120474,1, 0x12047c,2, 0x120604,3, 0x120614,6, 0x120644,3, 0x120654,6, 0x120680,1, 0x1206a0,6, 0x120700,4, 0x120740,11, 0x120780,13, 0x1207c0,1, 0x1207cc,3, 0x120804,1, 0x120814,3, 0x120824,1, 0x120834,6, 0x120904,1, 0x120940,16, 0x120984,1, 0x120998,13, 0x120c00,3, 0x120c14,10, 0x120c44,1, 0x120c4c,7, 0x120c70,3, 0x120c80,2, 0x120c94,1, 0x120c9c,1, 0x120d00,4, 0x120d40,11, 0x120d80,4, 0x120dc0,11, 0x120e04,16, 0x121004,1, 0x12103c,17, 0x121084,3, 0x121094,1, 0x12109c,1, 0x1210a4,1, 0x1210ac,4, 0x122000,9, 0x122040,5, 0x122060,4, 0x122080,18, 0x122200,13, 0x122280,4, 0x1222c0,11, 0x122300,2, 0x122320,7, 0x122340,1, 0x122400,17, 0x122480,17, 0x122500,6, 0x122524,1, 0x122534,3, 0x122600,17, 0x122680,17, 0x122700,10, 0x122800,17, 0x122880,17, 0x122900,15, 0x122a00,75, 0x122c00,4, 0x122c14,2, 0x122c20,5, 0x122c3c,1, 0x122c80,17, 0x122d00,4, 0x122d40,11, 0x123004,1, 0x123040,16, 0x123084,1, 0x1230c0,16, 0x123104,1, 0x123154,46, 0x123400,8, 0x123440,8, 0x123480,3, 0x1234c4,1, 0x1234e0,17, 0x123600,1, 0x123620,8, 0x123644,6, 0x123680,1, 0x1236c0,3, 0x1236d0,3, 0x1236e0,3, 0x1236f0,3, 0x123700,1, 0x123720,8, 0x123744,6, 0x123780,1, 0x1237a0,8, 0x1237c4,6, 0x123804,11, 0x123a00,28, 0x123a80,4, 0x123ac0,11, 0x123b00,4, 0x123b40,11, 0x123b80,1, 0x123b88,10, 0x123c00,4, 0x123e00,27, 0x123e80,4, 0x123ec0,25, 0x123f40,6, 0x123f60,2, 0x123f6c,3, 0x123f80,8, 0x123fa4,9, 0x124004,1, 0x12401c,9, 0x124044,1, 0x12405c,9, 0x124084,1, 0x1240a4,7, 0x124104,1, 0x124140,19, 0x124200,57, 0x1242f0,18, 0x124340,1, 0x124380,7, 0x1243a0,1, 0x1243c0,2, 0x1243d0,3, 0x1243e0,1, 0x130000,4, 0x130020,5, 0x130040,34, 0x130100,1, 0x130108,4, 0x130140,6, 0x130160,6, 0x130180,1, 0x130200,3, 0x130210,1, 0x13021c,1, 0x130400,1, 0x130480,6, 0x1304a0,6, 0x1304c0,36, 0x130600,1, 0x130680,6, 0x1306a0,6, 0x1306c0,17, 0x130800,2, 0x130810,3, 0x130900,41, 0x1309b0,4, 0x130a00,1, 0x130c00,2, 0x130d04,1, 0x130d74,37, 0x130e84,1, 0x130e9c,12, 0x130f00,10, 0x131000,27, 0x131080,1, 0x1310a0,6, 0x131200,27, 0x131280,4, 0x1312c0,25, 0x131340,6, 0x131360,2, 0x13136c,3, 0x131400,16, 0x131600,23, 0x131680,23, 0x131700,1, 0x131800,3, 0x131820,2, 0x13182c,2, 0x131880,4, 0x1318c0,11, 0x131900,4, 0x131940,11, 0x131980,4, 0x1319a0,7, 0x1319c0,4, 0x1319e0,7, 0x131a00,4, 0x131b00,36, 0x131c00,4, 0x131d00,38, 0x131e00,4, 0x131f00,38, 0x132000,4, 0x132100,37, 0x132200,4, 0x132220,10, 0x13224c,2, 0x140000,7, 0x140020,2, 0x140040,7, 0x140060,2, 0x140080,7, 0x1400a0,2, 0x1400c0,7, 0x1400e0,2, 0x140100,7, 0x140120,2, 0x140140,7, 0x140160,2, 0x140180,7, 0x1401a0,2, 0x1401c0,7, 0x1401e0,2, 0x140200,7, 0x140220,2, 0x140240,7, 0x140260,2, 0x140280,7, 0x1402a0,2, 0x1402c0,7, 0x1402e0,2, 0x140300,7, 0x140320,2, 0x140340,7, 0x140360,2, 0x140380,7, 0x1403a0,2, 0x1403c0,7, 0x1403e0,2, 0x140400,7, 0x140420,2, 0x140440,7, 0x140460,2, 0x140480,7, 0x1404a0,2, 0x1404c0,7, 0x1404e0,2, 0x140500,7, 0x140520,2, 0x140540,7, 0x140560,2, 0x140580,7, 0x1405a0,2, 0x1405c0,7, 0x1405e0,2, 0x140600,7, 0x140620,2, 0x140640,7, 0x140660,2, 0x140680,7, 0x1406a0,2, 0x1406c0,7, 0x1406e0,2, 0x140700,7, 0x140720,2, 0x140740,7, 0x140760,2, 0x140780,7, 0x1407a0,2, 0x1407c0,7, 0x1407e0,2, 0x140800,7, 0x140820,2, 0x140840,7, 0x140860,2, 0x140880,7, 0x1408a0,2, 0x1408c0,7, 0x1408e0,2, 0x140900,211, 0x140c50,6, 0x141000,7, 0x141020,2, 0x141040,7, 0x141060,2, 0x141080,7, 0x1410a0,2, 0x1410c0,7, 0x1410e0,2, 0x141100,7, 0x141120,2, 0x141140,7, 0x141160,2, 0x141180,7, 0x1411a0,2, 0x1411c0,7, 0x1411e0,2, 0x141200,7, 0x141220,2, 0x141240,7, 0x141260,2, 0x141280,7, 0x1412a0,2, 0x1412c0,7, 0x1412e0,2, 0x141300,7, 0x141320,2, 0x141340,7, 0x141360,2, 0x141380,7, 0x1413a0,2, 0x1413c0,7, 0x1413e0,2, 0x141400,7, 0x141420,2, 0x141440,7, 0x141460,2, 0x141480,7, 0x1414a0,2, 0x1414c0,7, 0x1414e0,2, 0x141500,7, 0x141520,2, 0x141540,7, 0x141560,2, 0x141580,7, 0x1415a0,2, 0x1415c0,7, 0x1415e0,2, 0x141600,7, 0x141620,2, 0x141640,7, 0x141660,2, 0x141680,7, 0x1416a0,2, 0x1416c0,7, 0x1416e0,2, 0x141700,7, 0x141720,2, 0x141740,7, 0x141760,2, 0x141780,7, 0x1417a0,2, 0x1417c0,7, 0x1417e0,2, 0x141800,7, 0x141820,2, 0x141840,7, 0x141860,2, 0x141880,7, 0x1418a0,2, 0x1418c0,7, 0x1418e0,2, 0x141900,211, 0x141c50,6, 0x142000,7, 0x142020,2, 0x142040,7, 0x142060,2, 0x142080,7, 0x1420a0,2, 0x1420c0,7, 0x1420e0,2, 0x142100,7, 0x142120,2, 0x142140,7, 0x142160,2, 0x142180,7, 0x1421a0,2, 0x1421c0,7, 0x1421e0,2, 0x142200,7, 0x142220,2, 0x142240,7, 0x142260,2, 0x142280,7, 0x1422a0,2, 0x1422c0,7, 0x1422e0,2, 0x142300,7, 0x142320,2, 0x142340,7, 0x142360,2, 0x142380,7, 0x1423a0,2, 0x1423c0,7, 0x1423e0,2, 0x142400,7, 0x142420,2, 0x142440,7, 0x142460,2, 0x142480,7, 0x1424a0,2, 0x1424c0,7, 0x1424e0,2, 0x142500,7, 0x142520,2, 0x142540,7, 0x142560,2, 0x142580,7, 0x1425a0,2, 0x1425c0,7, 0x1425e0,2, 0x142600,7, 0x142620,2, 0x142640,7, 0x142660,2, 0x142680,7, 0x1426a0,2, 0x1426c0,7, 0x1426e0,2, 0x142700,7, 0x142720,2, 0x142740,7, 0x142760,2, 0x142780,7, 0x1427a0,2, 0x1427c0,7, 0x1427e0,2, 0x142800,7, 0x142820,2, 0x142840,7, 0x142860,2, 0x142880,7, 0x1428a0,2, 0x1428c0,7, 0x1428e0,2, 0x142900,211, 0x142c50,6, 0x143000,7, 0x143020,2, 0x143040,7, 0x143060,2, 0x143080,7, 0x1430a0,2, 0x1430c0,7, 0x1430e0,2, 0x143100,7, 0x143120,2, 0x143140,7, 0x143160,2, 0x143180,7, 0x1431a0,2, 0x1431c0,7, 0x1431e0,2, 0x143200,7, 0x143220,2, 0x143240,7, 0x143260,2, 0x143280,7, 0x1432a0,2, 0x1432c0,7, 0x1432e0,2, 0x143300,7, 0x143320,2, 0x143340,7, 0x143360,2, 0x143380,7, 0x1433a0,2, 0x1433c0,7, 0x1433e0,2, 0x143400,7, 0x143420,2, 0x143440,7, 0x143460,2, 0x143480,7, 0x1434a0,2, 0x1434c0,7, 0x1434e0,2, 0x143500,7, 0x143520,2, 0x143540,7, 0x143560,2, 0x143580,7, 0x1435a0,2, 0x1435c0,7, 0x1435e0,2, 0x143600,7, 0x143620,2, 0x143640,7, 0x143660,2, 0x143680,7, 0x1436a0,2, 0x1436c0,7, 0x1436e0,2, 0x143700,7, 0x143720,2, 0x143740,7, 0x143760,2, 0x143780,7, 0x1437a0,2, 0x1437c0,7, 0x1437e0,2, 0x143800,7, 0x143820,2, 0x143840,7, 0x143860,2, 0x143880,7, 0x1438a0,2, 0x1438c0,7, 0x1438e0,2, 0x143900,211, 0x143c50,6, 0x144000,7, 0x144020,2, 0x144040,7, 0x144060,2, 0x144080,7, 0x1440a0,2, 0x1440c0,7, 0x1440e0,2, 0x144100,7, 0x144120,2, 0x144140,7, 0x144160,2, 0x144180,7, 0x1441a0,2, 0x1441c0,7, 0x1441e0,2, 0x144200,7, 0x144220,2, 0x144240,7, 0x144260,2, 0x144280,7, 0x1442a0,2, 0x1442c0,7, 0x1442e0,2, 0x144300,7, 0x144320,2, 0x144340,7, 0x144360,2, 0x144380,7, 0x1443a0,2, 0x1443c0,7, 0x1443e0,2, 0x144400,7, 0x144420,2, 0x144440,7, 0x144460,2, 0x144480,7, 0x1444a0,2, 0x1444c0,7, 0x1444e0,2, 0x144500,7, 0x144520,2, 0x144540,7, 0x144560,2, 0x144580,7, 0x1445a0,2, 0x1445c0,7, 0x1445e0,2, 0x144600,7, 0x144620,2, 0x144640,7, 0x144660,2, 0x144680,7, 0x1446a0,2, 0x1446c0,7, 0x1446e0,2, 0x144700,7, 0x144720,2, 0x144740,7, 0x144760,2, 0x144780,7, 0x1447a0,2, 0x1447c0,7, 0x1447e0,2, 0x144800,7, 0x144820,2, 0x144840,7, 0x144860,2, 0x144880,7, 0x1448a0,2, 0x1448c0,7, 0x1448e0,2, 0x144900,211, 0x144c50,6, 0x145000,7, 0x145020,2, 0x145040,7, 0x145060,2, 0x145080,7, 0x1450a0,2, 0x1450c0,7, 0x1450e0,2, 0x145100,7, 0x145120,2, 0x145140,7, 0x145160,2, 0x145180,7, 0x1451a0,2, 0x1451c0,7, 0x1451e0,2, 0x145200,7, 0x145220,2, 0x145240,7, 0x145260,2, 0x145280,7, 0x1452a0,2, 0x1452c0,7, 0x1452e0,2, 0x145300,7, 0x145320,2, 0x145340,7, 0x145360,2, 0x145380,7, 0x1453a0,2, 0x1453c0,7, 0x1453e0,2, 0x145400,7, 0x145420,2, 0x145440,7, 0x145460,2, 0x145480,7, 0x1454a0,2, 0x1454c0,7, 0x1454e0,2, 0x145500,7, 0x145520,2, 0x145540,7, 0x145560,2, 0x145580,7, 0x1455a0,2, 0x1455c0,7, 0x1455e0,2, 0x145600,7, 0x145620,2, 0x145640,7, 0x145660,2, 0x145680,7, 0x1456a0,2, 0x1456c0,7, 0x1456e0,2, 0x145700,7, 0x145720,2, 0x145740,7, 0x145760,2, 0x145780,7, 0x1457a0,2, 0x1457c0,7, 0x1457e0,2, 0x145800,7, 0x145820,2, 0x145840,7, 0x145860,2, 0x145880,7, 0x1458a0,2, 0x1458c0,7, 0x1458e0,2, 0x145900,211, 0x145c50,6, 0x146000,7, 0x146020,2, 0x146040,7, 0x146060,2, 0x146080,7, 0x1460a0,2, 0x1460c0,7, 0x1460e0,2, 0x146100,7, 0x146120,2, 0x146140,7, 0x146160,2, 0x146180,7, 0x1461a0,2, 0x1461c0,7, 0x1461e0,2, 0x146200,7, 0x146220,2, 0x146240,7, 0x146260,2, 0x146280,7, 0x1462a0,2, 0x1462c0,7, 0x1462e0,2, 0x146300,7, 0x146320,2, 0x146340,7, 0x146360,2, 0x146380,7, 0x1463a0,2, 0x1463c0,7, 0x1463e0,2, 0x146400,7, 0x146420,2, 0x146440,7, 0x146460,2, 0x146480,7, 0x1464a0,2, 0x1464c0,7, 0x1464e0,2, 0x146500,7, 0x146520,2, 0x146540,7, 0x146560,2, 0x146580,7, 0x1465a0,2, 0x1465c0,7, 0x1465e0,2, 0x146600,7, 0x146620,2, 0x146640,7, 0x146660,2, 0x146680,7, 0x1466a0,2, 0x1466c0,7, 0x1466e0,2, 0x146700,7, 0x146720,2, 0x146740,7, 0x146760,2, 0x146780,7, 0x1467a0,2, 0x1467c0,7, 0x1467e0,2, 0x146800,7, 0x146820,2, 0x146840,7, 0x146860,2, 0x146880,7, 0x1468a0,2, 0x1468c0,7, 0x1468e0,2, 0x146900,211, 0x146c50,6, 0x147000,7, 0x147020,2, 0x147040,7, 0x147060,2, 0x147080,7, 0x1470a0,2, 0x1470c0,7, 0x1470e0,2, 0x147100,7, 0x147120,2, 0x147140,7, 0x147160,2, 0x147180,7, 0x1471a0,2, 0x1471c0,7, 0x1471e0,2, 0x147200,7, 0x147220,2, 0x147240,7, 0x147260,2, 0x147280,7, 0x1472a0,2, 0x1472c0,7, 0x1472e0,2, 0x147300,7, 0x147320,2, 0x147340,7, 0x147360,2, 0x147380,7, 0x1473a0,2, 0x1473c0,7, 0x1473e0,2, 0x147400,7, 0x147420,2, 0x147440,7, 0x147460,2, 0x147480,7, 0x1474a0,2, 0x1474c0,7, 0x1474e0,2, 0x147500,7, 0x147520,2, 0x147540,7, 0x147560,2, 0x147580,7, 0x1475a0,2, 0x1475c0,7, 0x1475e0,2, 0x147600,7, 0x147620,2, 0x147640,7, 0x147660,2, 0x147680,7, 0x1476a0,2, 0x1476c0,7, 0x1476e0,2, 0x147700,7, 0x147720,2, 0x147740,7, 0x147760,2, 0x147780,7, 0x1477a0,2, 0x1477c0,7, 0x1477e0,2, 0x147800,7, 0x147820,2, 0x147840,7, 0x147860,2, 0x147880,7, 0x1478a0,2, 0x1478c0,7, 0x1478e0,2, 0x147900,211, 0x147c50,6, 0x148000,7, 0x148020,2, 0x148040,7, 0x148060,2, 0x148080,7, 0x1480a0,2, 0x1480c0,7, 0x1480e0,2, 0x148100,7, 0x148120,2, 0x148140,7, 0x148160,2, 0x148180,7, 0x1481a0,2, 0x1481c0,7, 0x1481e0,2, 0x148200,7, 0x148220,2, 0x148240,7, 0x148260,2, 0x148280,7, 0x1482a0,2, 0x1482c0,7, 0x1482e0,2, 0x148300,7, 0x148320,2, 0x148340,7, 0x148360,2, 0x148380,7, 0x1483a0,2, 0x1483c0,7, 0x1483e0,2, 0x148400,7, 0x148420,2, 0x148440,7, 0x148460,2, 0x148480,7, 0x1484a0,2, 0x1484c0,7, 0x1484e0,2, 0x148500,7, 0x148520,2, 0x148540,7, 0x148560,2, 0x148580,7, 0x1485a0,2, 0x1485c0,7, 0x1485e0,2, 0x148600,7, 0x148620,2, 0x148640,7, 0x148660,2, 0x148680,7, 0x1486a0,2, 0x1486c0,7, 0x1486e0,2, 0x148700,7, 0x148720,2, 0x148740,7, 0x148760,2, 0x148780,7, 0x1487a0,2, 0x1487c0,7, 0x1487e0,2, 0x148800,7, 0x148820,2, 0x148840,7, 0x148860,2, 0x148880,7, 0x1488a0,2, 0x1488c0,7, 0x1488e0,2, 0x148900,211, 0x148c50,6, 0x14c000,1152, 0x14e000,18, 0x14e080,18, 0x14e100,18, 0x14e180,18, 0x14e200,18, 0x14e280,18, 0x14e300,18, 0x14e380,18, 0x14e400,18, 0x14e480,18, 0x14e500,18, 0x14e580,18, 0x14e600,18, 0x14e680,18, 0x14e700,18, 0x14e780,18, 0x14e800,18, 0x14e880,18, 0x14e900,18, 0x14e980,18, 0x14ea00,18, 0x14ea80,18, 0x14eb00,18, 0x14eb80,18, 0x14ec00,18, 0x14ec80,18, 0x14ed00,18, 0x14ed80,18, 0x14ee00,18, 0x14ee80,18, 0x14ef00,18, 0x14ef80,18, 0x14f000,18, 0x14f080,18, 0x14f100,18, 0x14f180,18, 0x150000,72, 0x150200,72, 0x150400,72, 0x150600,72, 0x150800,72, 0x150a00,72, 0x150c00,72, 0x150e00,72, 0x151000,72, 0x151200,72, 0x151400,7, 0x151420,2, 0x151440,7, 0x151460,2, 0x151480,7, 0x1514a0,2, 0x1514c0,7, 0x1514e0,2, 0x151500,20, 0x151600,7, 0x151620,2, 0x151640,7, 0x151660,2, 0x151680,7, 0x1516a0,2, 0x1516c0,7, 0x1516e0,2, 0x151700,20, 0x151800,7, 0x151820,2, 0x151840,7, 0x151860,2, 0x151880,7, 0x1518a0,2, 0x1518c0,7, 0x1518e0,2, 0x151900,20, 0x151a00,7, 0x151a20,2, 0x151a40,7, 0x151a60,2, 0x151a80,7, 0x151aa0,2, 0x151ac0,7, 0x151ae0,2, 0x151b00,20, 0x151c00,7, 0x151c20,2, 0x151c40,7, 0x151c60,2, 0x151c80,7, 0x151ca0,2, 0x151cc0,7, 0x151ce0,2, 0x151d00,20, 0x151e00,7, 0x151e20,2, 0x151e40,7, 0x151e60,2, 0x151e80,7, 0x151ea0,2, 0x151ec0,7, 0x151ee0,2, 0x151f00,20, 0x152000,7, 0x152020,2, 0x152040,7, 0x152060,2, 0x152080,7, 0x1520a0,2, 0x1520c0,7, 0x1520e0,2, 0x152100,20, 0x152200,7, 0x152220,2, 0x152240,7, 0x152260,2, 0x152280,7, 0x1522a0,2, 0x1522c0,7, 0x1522e0,2, 0x152300,20, 0x152400,7, 0x152420,2, 0x152440,7, 0x152460,2, 0x152480,7, 0x1524a0,2, 0x1524c0,7, 0x1524e0,2, 0x152500,20, 0x152600,1, 0x152610,1, 0x152620,1, 0x152630,1, 0x152640,1, 0x152650,1, 0x152660,1, 0x152670,1, 0x152680,1, 0x152690,1, 0x1526a0,1, 0x1526b0,1, 0x1526c0,1, 0x1526d0,1, 0x1526e0,1, 0x1526f0,1, 0x152700,1, 0x152710,1, 0x152720,1, 0x152730,1, 0x152740,1, 0x152750,1, 0x152760,1, 0x152770,1, 0x152780,1, 0x152790,1, 0x1527a0,1, 0x1527b0,1, 0x1527c0,1, 0x1527d0,1, 0x1527e0,1, 0x1527f0,1, 0x152800,1, 0x152810,1, 0x152820,1, 0x152830,1, 0x152840,55, 0x152920,36, 0x1529c0,15, 0x152a00,8, 0x152a40,4, 0x152a60,5, 0x152a80,4, 0x152aa0,3, 0x152ab0,1, 0x152ac4,1, 0x152ae4,11, 0x152c00,9, 0x152c40,9, 0x152c80,9, 0x152cc0,9, 0x152d00,9, 0x152d40,9, 0x152d80,9, 0x152dc0,9, 0x152e00,9, 0x152e40,9, 0x152e80,9, 0x152ec0,9, 0x152f00,9, 0x152f40,9, 0x152f80,9, 0x152fc0,9, 0x153000,9, 0x153040,9, 0x153080,9, 0x1530c0,9, 0x153100,9, 0x153140,9, 0x153180,9, 0x1531c0,9, 0x153200,9, 0x153240,9, 0x153280,9, 0x1532c0,9, 0x153300,9, 0x153340,9, 0x153380,9, 0x1533c0,9, 0x153400,9, 0x153440,9, 0x153480,9, 0x1534c0,9, 0x153500,9, 0x153530,1, 0x153540,1, 0x153550,1, 0x153560,1, 0x153570,1, 0x153580,1, 0x153590,1, 0x1535a0,1, 0x1535b0,1, 0x1535c0,1, 0x1535d0,1, 0x153600,9, 0x153630,1, 0x153640,1, 0x153650,1, 0x153660,1, 0x153670,1, 0x153680,1, 0x153690,1, 0x1536a0,1, 0x1536b0,1, 0x1536c0,1, 0x1536d0,1, 0x153700,9, 0x153730,1, 0x153740,1, 0x153750,1, 0x153760,1, 0x153770,1, 0x153780,1, 0x153790,1, 0x1537a0,1, 0x1537b0,1, 0x1537c0,1, 0x1537d0,1, 0x153800,9, 0x153830,1, 0x153840,1, 0x153850,1, 0x153860,1, 0x153870,1, 0x153880,1, 0x153890,1, 0x1538a0,1, 0x1538b0,1, 0x1538c0,1, 0x1538d0,1, 0x153900,239, 0x160000,2, 0x160044,1, 0x16005c,9, 0x168000,1, 0x16800c,1, 0x168018,1, 0x168024,1, 0x168030,1, 0x16803c,1, 0x168048,1, 0x168054,1, 0x168060,1, 0x16806c,1, 0x168078,1, 0x168084,1, 0x168090,1, 0x16809c,1, 0x1680a8,1, 0x168100,1, 0x16810c,1, 0x168118,1, 0x168124,1, 0x168130,1, 0x16813c,1, 0x168148,1, 0x168154,1, 0x168160,1, 0x16816c,1, 0x168178,1, 0x168184,1, 0x168190,1, 0x16819c,1, 0x1681a8,1, 0x168200,1, 0x16820c,1, 0x168218,1, 0x168224,1, 0x168230,1, 0x16823c,1, 0x168248,1, 0x168254,1, 0x168260,1, 0x16826c,1, 0x168278,1, 0x168284,1, 0x168290,1, 0x16829c,1, 0x1682a8,1, 0x168300,1, 0x16830c,1, 0x168318,1, 0x168324,1, 0x168330,1, 0x16833c,1, 0x168348,1, 0x168354,1, 0x168360,1, 0x16836c,1, 0x168378,1, 0x168384,1, 0x168390,1, 0x16839c,1, 0x1683a8,1, 0x168400,1, 0x16840c,1, 0x168418,1, 0x168424,1, 0x168430,1, 0x16843c,1, 0x168448,1, 0x168454,1, 0x168460,1, 0x16846c,1, 0x168478,1, 0x168484,1, 0x168490,1, 0x16849c,1, 0x1684a8,1, 0x168500,1, 0x16850c,1, 0x168518,1, 0x168524,1, 0x168530,1, 0x16853c,1, 0x168548,1, 0x168554,1, 0x168560,1, 0x16856c,1, 0x168578,1, 0x168584,1, 0x168590,1, 0x16859c,1, 0x1685a8,1, 0x168600,1, 0x16860c,1, 0x168618,1, 0x168624,1, 0x168630,1, 0x16863c,1, 0x168648,1, 0x168654,1, 0x168660,1, 0x16866c,1, 0x168678,1, 0x168684,1, 0x168690,1, 0x16869c,1, 0x1686a8,1, 0x168700,1, 0x16870c,1, 0x168718,1, 0x168724,1, 0x168730,1, 0x16873c,1, 0x168748,1, 0x168754,1, 0x168760,1, 0x16876c,1, 0x168778,1, 0x168784,1, 0x168790,1, 0x16879c,1, 0x1687a8,1, 0x168800,1, 0x16880c,1, 0x168818,1, 0x168824,1, 0x168830,1, 0x16883c,1, 0x168848,1, 0x168854,1, 0x168860,1, 0x16886c,1, 0x168878,1, 0x168884,1, 0x168890,1, 0x16889c,1, 0x1688a8,1, 0x168900,1, 0x16890c,1, 0x168918,1, 0x168924,1, 0x168930,1, 0x16893c,1, 0x168948,1, 0x168954,1, 0x168960,1, 0x16896c,1, 0x168978,1, 0x168984,1, 0x168990,1, 0x16899c,1, 0x1689a8,1, 0x168a00,1, 0x168a14,3, 0x168a24,1, 0x168a2c,3, 0x168a40,15, 0x168a80,15, 0x168ac0,15, 0x168b00,15, 0x168b40,15, 0x168b80,15, 0x168bc0,15, 0x168c00,15, 0x168c40,15, 0x168c80,15, 0x168cc0,15, 0x168d00,15, 0x168d40,15, 0x168d80,15, 0x168dc0,15, 0x168e00,15, 0x168e40,15, 0x168e80,15, 0x168ec0,15, 0x168f00,15, 0x168f40,15, 0x168f80,15, 0x168fc0,15, 0x169000,15, 0x169040,15, 0x169080,15, 0x1690c0,15, 0x169100,15, 0x169140,15, 0x169180,15, 0x1691c0,15, 0x169200,15, 0x169240,15, 0x169280,15, 0x1692c0,15, 0x169300,15, 0x169340,15, 0x169380,15, 0x1693c0,15, 0x169400,15, 0x169440,15, 0x169480,15, 0x1694c0,15, 0x169500,15, 0x169540,15, 0x169580,15, 0x1695c0,15, 0x169600,15, 0x169640,15, 0x169680,15, 0x1696c0,15, 0x169700,15, 0x169740,15, 0x169780,15, 0x1697c0,1, 0x16a000,1, 0x16a00c,1, 0x16a020,1, 0x16a02c,1, 0x16a040,1, 0x16a04c,1, 0x16a060,1, 0x16a06c,1, 0x16a080,1, 0x16a08c,1, 0x16a0a0,1, 0x16a0ac,1, 0x16a0c4,6, 0x16a0e0,89, 0x16a280,20, 0x16a300,20, 0x16a380,20, 0x16a400,20, 0x16a480,20, 0x16a500,20, 0x16a580,20, 0x16a600,20, 0x16a680,20, 0x16a700,20, 0x16a780,20, 0x16a800,20, 0x16a880,20, 0x16a900,20, 0x16a980,20, 0x16aa00,20, 0x16aa80,20, 0x16ab00,20, 0x16ab80,20, 0x16ac00,20, 0x16ac80,20, 0x16ad00,20, 0x16ad80,20, 0x16ae00,20, 0x16ae80,20, 0x16af00,20, 0x16af80,20, 0x16b000,20, 0x16b080,20, 0x16b100,20, 0x16b180,20, 0x16b200,20, 0x16b280,20, 0x16b300,20, 0x16b380,20, 0x16b400,20, 0x16b480,20, 0x16b500,20, 0x16b580,20, 0x16b600,20, 0x16b680,20, 0x16b700,20, 0x16b780,20, 0x16b800,20, 0x16b880,20, 0x16b900,20, 0x16b980,20, 0x16ba00,20, 0x16ba80,20, 0x16bb00,20, 0x16bb80,20, 0x16bc00,20, 0x16bc80,20, 0x16bd00,20, 0x16bd80,20, 0x16be00,20, 0x16be80,20, 0x16bf00,20, 0x16bf80,20, 0x16c000,20, 0x16c080,20, 0x16c100,20, 0x16c180,20, 0x16c200,20, 0x16c280,1, 0x170000,18, 0x170080,18, 0x170100,18, 0x170180,18, 0x170200,18, 0x170280,18, 0x170300,18, 0x170380,18, 0x170400,18, 0x170800,18, 0x170880,18, 0x170900,18, 0x170980,18, 0x170a00,18, 0x170a80,18, 0x170b00,18, 0x170b80,18, 0x170c00,18, 0x171000,18, 0x171080,18, 0x171100,18, 0x171180,18, 0x171200,18, 0x171280,18, 0x171300,18, 0x171380,18, 0x171400,18, 0x171800,18, 0x171880,18, 0x171900,18, 0x171980,18, 0x171a00,18, 0x171a80,18, 0x171b00,18, 0x171b80,18, 0x171c00,18, 0x172000,263, 0x172420,82, 0x172600,1, 0x172610,1, 0x172620,1, 0x172630,1, 0x172640,1, 0x172650,1, 0x172660,1, 0x172670,1, 0x172680,1, 0x172700,1, 0x172710,1, 0x172720,1, 0x172730,1, 0x172740,1, 0x172750,1, 0x172760,1, 0x172770,1, 0x172780,1, 0x172800,1, 0x172810,1, 0x172820,1, 0x172830,1, 0x172840,1, 0x172850,1, 0x172860,1, 0x172870,1, 0x172880,1, 0x172900,1, 0x172910,1, 0x172920,1, 0x172930,1, 0x172940,1, 0x172950,1, 0x172960,1, 0x172970,1, 0x172980,1, 0x172a00,1, 0x172a0c,1, 0x172a20,1, 0x172a2c,1, 0x172a40,1, 0x172a4c,1, 0x172a60,1, 0x172a6c,1, 0x172a80,1, 0x172a8c,1, 0x172aa0,1, 0x172aac,1, 0x172ac0,1, 0x172acc,1, 0x172ae0,1, 0x172aec,1, 0x172b00,1, 0x172b0c,1, 0x172b20,2, 0x172b40,2, 0x172b4c,2, 0x174000,2, 0x174084,1, 0x1740b4,53, 0x174194,5, 0x1741b4,7, 0x1741e0,5, 0x174200,1, 0x174208,4, 0x174224,3, 0x174404,5, 0x174420,1, 0x174430,10, 0x174460,72, 0x174804,5, 0x174824,1, 0x174830,4, 0x174844,1, 0x174854,3, 0x174864,1, 0x17486c,1, 0x174874,7, 0x1748a0,6, 0x1748c0,4, 0x174c00,4, 0x174c20,5, 0x174c40,5, 0x174c60,5, 0x174c80,5, 0x174ca0,5, 0x174cc0,5, 0x174ce0,5, 0x174d00,5, 0x174d20,5, 0x174d40,5, 0x174d60,5, 0x174d80,5, 0x174da0,5, 0x174dc0,5, 0x174de0,5, 0x174e00,2, 0x174e0c,16, 0x175000,2, 0x175084,1, 0x1750b0,27, 0x175120,19, 0x175170,1, 0x176000,1, 0x176010,8, 0x176044,4, 0x176100,321, 0x17660c,1, 0x176620,1, 0x176640,6, 0x176660,30, 0x176704,1, 0x17671c,11, 0x176780,6, 0x176800,4, 0x176880,24, 0x176900,265, 0x176d40,9, 0x176d80,9, 0x176dc0,9, 0x176e00,9, 0x176e40,9, 0x176e80,9, 0x176ec0,9, 0x176f00,9, 0x176f40,9, 0x176f80,9, 0x176fc0,9, 0x177000,9, 0x177040,9, 0x177080,9, 0x1770c0,9, 0x177100,9, 0x177140,9, 0x177180,9, 0x1771c0,9, 0x177200,9, 0x177240,9, 0x177280,9, 0x1772c0,9, 0x177300,9, 0x177340,9, 0x177380,9, 0x1773c0,9, 0x177400,9, 0x177440,9, 0x177480,9, 0x1774c0,9, 0x177500,1, 0x178000,34, 0x178090,1, 0x178098,36, 0x178180,6, 0x1781a0,6, 0x1781c0,13, 0x178200,6, 0x178220,6, 0x178240,13, 0x178280,1, 0x178400,2, 0x17840c,2, 0x178424,4, 0x178440,2, 0x178460,6, 0x178480,1, 0x178500,1, 0x178520,7, 0x178800,15, 0x178840,4, 0x178880,2, 0x1788a4,9, 0x1788e4,9, 0x178924,9, 0x179000,6, 0x179020,14, 0x179080,4, 0x1790c0,11, 0x179100,3, 0x179110,14, 0x179164,1, 0x17916c,5, 0x179200,11, 0x179240,11, 0x179280,1, 0x179300,3, 0x179310,3, 0x179320,3, 0x179330,3, 0x179340,3, 0x179350,3, 0x179360,3, 0x179370,3, 0x179380,3, 0x179390,3, 0x1793a0,3, 0x1793b0,3, 0x1793c0,3, 0x1793d0,3, 0x1793e0,3, 0x1793f0,3, 0x179400,3, 0x179410,3, 0x179420,3, 0x179430,3, 0x179440,3, 0x179450,3, 0x179460,3, 0x179470,3, 0x179480,3, 0x179490,3, 0x1794a0,3, 0x1794b0,3, 0x1794c0,3, 0x1794d0,3, 0x1794e0,3, 0x1794f0,3, 0x179500,3, 0x179510,3, 0x179520,3, 0x179530,3, 0x179540,3, 0x179550,3, 0x179560,3, 0x179570,3, 0x179580,3, 0x179590,3, 0x1795a0,3, 0x1795b0,3, 0x1795c0,3, 0x1795d0,3, 0x1795e0,3, 0x1795f0,3, 0x179600,3, 0x179610,3, 0x179620,3, 0x179630,3, 0x179640,3, 0x179650,3, 0x179660,3, 0x179670,3, 0x179680,3, 0x179690,3, 0x1796a0,3, 0x1796b0,3, 0x1796c0,3, 0x1796d0,3, 0x1796e0,3, 0x1796f0,3, 0x179700,3, 0x179710,3, 0x179720,3, 0x179730,3, 0x179740,3, 0x179750,3, 0x179760,3, 0x179770,3, 0x179780,3, 0x179790,3, 0x1797a0,3, 0x1797b0,3, 0x1797c0,3, 0x1797d0,3, 0x1797e0,3, 0x1797f0,3, 0x179800,3, 0x179810,3, 0x179820,3, 0x179830,3, 0x179840,3, 0x179850,3, 0x179860,3, 0x179870,3, 0x179880,3, 0x179890,3, 0x1798a0,3, 0x1798b0,3, 0x1798c0,3, 0x1798d0,3, 0x1798e0,3, 0x1798f0,3, 0x179900,3, 0x179910,3, 0x179920,3, 0x179930,3, 0x179940,3, 0x179950,3, 0x179960,3, 0x179970,3, 0x179980,3, 0x179990,3, 0x1799a0,3, 0x1799b0,3, 0x1799c0,3, 0x1799d0,3, 0x1799e0,3, 0x1799f0,3, 0x179a00,3, 0x179a10,3, 0x179a20,3, 0x179a30,3, 0x179a40,3, 0x179a50,3, 0x179a60,3, 0x179a70,3, 0x179a80,3, 0x179a90,3, 0x179aa0,3, 0x179ab0,3, 0x179ac0,3, 0x179ad0,3, 0x179ae0,3, 0x179af0,3, 0x179b00,3, 0x179b10,3, 0x179b20,3, 0x179b30,3, 0x179b40,2, 0x179b50,2, 0x179b60,2, 0x179b70,2, 0x179b80,1, 0x17a000,1, 0x17a010,3, 0x17a020,3, 0x17a044,4, 0x17a084,1, 0x17a094,12, 0x17a0d0,1, 0x17a0e0,1, 0x17a0ec,1, 0x17a100,9, 0x17a140,2, 0x17a200,1, 0x17a210,3, 0x17a220,3, 0x17a244,4, 0x17a284,1, 0x17a294,9, 0x17a2c0,1, 0x17a2d0,1, 0x17a2e0,1, 0x17a2ec,1, 0x17a300,5, 0x17a320,2, 0x17a400,6, 0x17a420,6, 0x17a440,6, 0x17a460,6, 0x17a480,6, 0x17a4a0,6, 0x17a4c0,30, 0x17a540,6, 0x17a580,11, 0x17a800,65, 0x17a910,8, 0x17a944,4, 0x17a980,1, 0x17a98c,1, 0x17a9c0,4, 0x17a9e0,9, 0x17aa10,1, 0x17aa20,6, 0x17aa40,1, 0x17aa50,7, 0x17aa80,17, 0x17ab00,5, 0x17ab20,7, 0x17ab40,134, 0x17b000,1, 0x17b010,3, 0x17b020,3, 0x17b044,4, 0x17b084,1, 0x17b090,5, 0x17b0b0,1, 0x17b0c0,1, 0x17b0cc,1, 0x17b100,17, 0x17b180,4, 0x17b1a0,12, 0x17b200,24, 0x17b280,67, 0x17b3a0,6, 0x17b3c0,6, 0x17b3e0,6, 0x17b400,6, 0x17b420,3, 0x17b430,7, 0x17b800,41, 0x17b8b0,41, 0x17ba04,1, 0x17ba78,36, 0x17bc00,196, 0x17c000,92, 0x17c200,4, 0x17c220,7, 0x17c240,7, 0x17c260,1, 0x17c280,7, 0x17c2a0,7, 0x17c2c0,7, 0x17c2e0,3, 0x17c2f0,2, 0x17c400,27, 0x17c480,4, 0x17c4c0,25, 0x17c540,6, 0x17c560,2, 0x17c56c,3, 0x17c600,8, 0x17c624,97, 0x17c800,4, 0x17c840,14, 0x17c900,14, 0x17c940,14, 0x17c980,1, 0x17ca00,11, 0x180004,4, 0x180020,7, 0x180040,2, 0x18004c,2, 0x180064,1, 0x18006c,4, 0x180080,3, 0x180090,3, 0x1800a0,3, 0x1800b0,3, 0x1800c0,3, 0x1800d0,3, 0x1800e0,3, 0x1800f0,3, 0x180100,3, 0x180110,3, 0x180120,3, 0x180130,3, 0x180140,3, 0x180150,3, 0x180160,3, 0x180170,3, 0x180180,3, 0x180190,3, 0x1801a0,3, 0x1801b0,3, 0x1801c0,3, 0x1801d0,3, 0x1801e0,3, 0x1801f0,3, 0x180200,3, 0x180210,3, 0x180220,3, 0x180230,3, 0x180240,3, 0x180250,3, 0x180260,42, 0x180324,4, 0x180340,4, 0x180360,6, 0x180380,34, 0x180420,6, 0x180440,6, 0x180460,6, 0x180480,6, 0x1804a0,6, 0x1804c0,6, 0x1804e0,6, 0x180500,6, 0x180520,6, 0x180540,6, 0x180560,6, 0x180580,6, 0x1805a0,6, 0x1805c0,6, 0x1805e0,6, 0x180600,6, 0x180620,6, 0x180640,6, 0x180660,6, 0x180680,6, 0x1806a0,6, 0x1806c0,6, 0x1806e0,6, 0x180700,6, 0x180720,6, 0x180740,6, 0x180760,6, 0x180780,6, 0x1807a0,6, 0x1807c0,6, 0x1807e0,6, 0x180800,6, 0x180820,1, 0x180828,18, 0x181000,10, 0x181100,2, 0x181184,1, 0x181194,27, 0x181204,1, 0x181240,22, 0x1812a0,6, 0x1812c0,2, 0x1812cc,3, 0x1812e0,2, 0x1812ec,2, 0x181800,2, 0x18180c,1, 0x181a00,2, 0x181b04,1, 0x181b80,32, 0x181c04,4, 0x181c24,1, 0x181c2c,1, 0x181c34,1, 0x181c3c,1, 0x181c44,1, 0x181c4c,1, 0x181c54,1, 0x181c5c,1, 0x181c64,1, 0x181c6c,1, 0x181c74,1, 0x181c7c,3, 0x181c94,1, 0x181c9c,3, 0x182000,2, 0x182084,1, 0x1820c0,16, 0x182104,1, 0x182140,16, 0x182184,1, 0x1821c0,22, 0x182220,2, 0x18222c,2, 0x182240,16, 0x182304,1, 0x182310,7, 0x182340,2, 0x182360,6, 0x182380,2, 0x18238c,2, 0x182400,2, 0x182410,2, 0x182420,2, 0x182430,2, 0x182440,2, 0x182450,2, 0x182460,2, 0x182470,2, 0x182480,2, 0x182490,2, 0x1824a0,2, 0x1824b0,2, 0x1824c0,2, 0x1824d0,2, 0x1824e0,2, 0x1824f0,2, 0x182500,2, 0x182510,2, 0x182520,2, 0x182530,2, 0x182540,2, 0x182550,2, 0x182560,2, 0x182570,2, 0x182580,2, 0x182590,2, 0x1825a0,2, 0x1825b0,2, 0x1825c0,2, 0x1825d0,2, 0x1825e0,2, 0x1825f0,2, 0x182600,8, 0x18263c,7, 0x182660,2, 0x18266c,3, 0x182680,2, 0x182700,28, 0x182800,27, 0x182880,4, 0x1828c0,25, 0x182940,6, 0x182960,2, 0x18296c,3, 0x182980,8, 0x1829a4,8, 0x182a00,2, 0x182a10,3, 0x182a40,9, 0x182a80,17, 0x182ac8,4, 0x182ae0,9, 0x182b10,1, 0x1a0000,1, 0x1a0008,15, 0x1a0204,1, 0x1a0210,12, 0x1a0244,1, 0x1a0250,12, 0x1a0284,1, 0x1a0290,12, 0x1a02c4,1, 0x1a02d0,16, 0x1a0380,3, 0x1a03c4,1, 0x1a03d0,13, 0x1a0800,2, 0x1a0904,1, 0x1a0978,36, 0x1a0b04,1, 0x1a0b70,38, 0x1a0c44,1, 0x1a0c58,10, 0x1a0c84,32, 0x1a0d20,1, 0x1a0d30,7, 0x1a0e00,4, 0x1a0e80,18, 0x1a0f00,2, 0x1a0f44,1, 0x1a0f58,17, 0x1a0fc0,10, 0x1a1000,10, 0x1a1040,11, 0x1a1080,1, 0x1a1090,5, 0x1a1104,1, 0x1a1144,18, 0x1a1200,1, 0x1a1208,7, 0x1a1228,4, 0x1a1240,2, 0x1a2000,115, 0x1a2200,17, 0x1a2280,17, 0x1a2300,81, 0x1a2480,5, 0x1a24a0,32, 0x1a2604,1, 0x1a2610,4, 0x1a2624,1, 0x1a2630,4, 0x1a2644,1, 0x1a2650,4, 0x1a2664,1, 0x1a2670,7, 0x1a2700,4, 0x1a2800,34, 0x1a2900,4, 0x1a2a00,36, 0x1a2b00,2, 0x1a2b24,1, 0x1a2b30,6, 0x1a2b64,1, 0x1a2b70,13, 0x1a2bb0,6, 0x1a2be0,2, 0x1a2bf0,6, 0x1a2c14,1, 0x1a2c1c,2, 0x1a2d00,2, 0x1a2d84,1, 0x1a2dbc,18, 0x1a2e10,5, 0x1a2e30,5, 0x1a2e50,5, 0x1a2e70,4, 0x1a2e84,3, 0x1a2ea0,1, 0x1a2ea8,7, 0x1a2f00,17, 0x1a2f80,36, 0x1a3020,5, 0x1a3040,4, 0x1a3060,5, 0x1a3080,4, 0x1a30a0,5, 0x1a30c0,4, 0x1a30e0,5, 0x1a3100,1, 0x1a3120,1, 0x1a3128,4, 0x1a3140,3, 0x1a3150,3, 0x1a3160,11, 0x1a4000,49, 0x1a4100,49, 0x1a4200,1, 0x1a4400,4, 0x1a4500,49, 0x1a4600,4, 0x1a4680,19, 0x1a4700,13, 0x1a4740,5, 0x1a4760,2, 0x1a476c,3, 0x1a4780,3, 0x1a4790,3, 0x1a47a0,3, 0x1a4804,1, 0x1a4824,59, 0x1a4944,1, 0x1a4950,6, 0x1a4c00,10, 0x1a5000,27, 0x1a5080,4, 0x1a50c0,25, 0x1a5140,6, 0x1a5160,2, 0x1a516c,3, 0x1a5184,4, 0x1a5200,2, 0x1a5400,4, 0x1a5500,43, 0x1a5600,2, 0x1a5620,3, 0x1a5630,3, 0x1a5640,3, 0x1a5800,53, 0x1a5a00,1, 0x1a5a10,5, 0x1a5a30,5, 0x1a5a50,7, 0x1a5a80,1, 0x1a5a88,4, 0x1a5c00,44, 0x1a5d00,1, 0x1a5d40,1, 0x1a5d48,4, 0x1a5d60,3, 0x1a5d70,3, 0x1a8000,46, 0x1a8100,46, 0x1a8200,1, 0x1a8400,4, 0x1a8500,46, 0x1a8600,4, 0x1a8640,14, 0x1a8700,33, 0x1a8800,5, 0x1a8820,2, 0x1a882c,3, 0x1a8840,3, 0x1a8850,3, 0x1a8860,3, 0x1a9000,4, 0x1a9200,89, 0x1a9400,89, 0x1a9600,3, 0x1a9610,3, 0x1a9620,9, 0x1a9800,1, 0x1aa000,50, 0x1aa200,1, 0x1aa210,5, 0x1aa230,7, 0x1aa260,1, 0x1aa268,4, 0x1aa400,27, 0x1aa480,4, 0x1aa4c0,25, 0x1aa540,6, 0x1aa560,2, 0x1aa56c,3, 0x1aa584,4, 0x1aa600,2, 0x1aa800,36, 0x1aa900,1, 0x1aa908,4, 0x1aa920,4, 0x1ac000,2, 0x1ac084,1, 0x1ac0ac,26, 0x1ac120,2, 0x1ac140,7, 0x1ac160,7, 0x1ac180,4, 0x1ac200,1, 0x1ac208,4, 0x1ac240,6, 0x1ac260,6, 0x1ac280,4, 0x1ac300,6, 0x1ac320,6, 0x1ac340,17, 0x1ac400,2, 0x1ac444,16, 0x1ac488,4, 0x1ac4c0,7, 0x1ac4e0,7, 0x1ac500,7, 0x1ac800,3, 0x1ac880,3, 0x1ac8c4,1, 0x1ac8d0,13, 0x1aca00,1, 0x1aca08,4, 0x1aca20,3, 0x1aca30,3, 0x1aca40,1, 0x1aca80,5, 0x1acac0,2, 0x1acad4,1, 0x1acadc,4, 0x1acb00,1, 0x1acb08,5, 0x1acb20,8, 0x1acc00,1, 0x1acc08,4, 0x1ace00,34, 0x1acf00,34, 0x1ad000,1, 0x1ad008,4, 0x1ad040,5, 0x1ad060,5, 0x1ad200,4, 0x1ad300,37, 0x1ad400,7, 0x1ad600,2, 0x1ad704,1, 0x1ad778,49, 0x1ad900,52, 0x1ada00,27, 0x1ada80,4, 0x1adac0,25, 0x1adb40,6, 0x1adb60,2, 0x1adb6c,3, 0x1adb80,8, 0x1adba4,14, 0x1adc00,3, 0x1b0000,7, 0x1b0020,7, 0x1b0040,3, 0x1b0084,1, 0x1b00bc,17, 0x1b0104,1, 0x1b010c,4, 0x1b0120,2, 0x1b0130,1, 0x1b013c,1, 0x1b0148,1, 0x1b0154,1, 0x1b0160,11, 0x1b0200,6, 0x1b0220,6, 0x1b0240,6, 0x1b0260,6, 0x1b0280,6, 0x1b02a0,6, 0x1b02c0,6, 0x1b02e0,6, 0x1b0300,6, 0x1b0320,6, 0x1b0340,6, 0x1b0360,6, 0x1b0380,6, 0x1b03a0,6, 0x1b03c0,6, 0x1b03e0,6, 0x1b0400,6, 0x1b0420,6, 0x1b0440,6, 0x1b0460,6, 0x1b0480,6, 0x1b04a0,6, 0x1b04c0,6, 0x1b04e0,6, 0x1b0500,6, 0x1b0520,6, 0x1b0540,6, 0x1b0560,6, 0x1b0580,6, 0x1b05a0,6, 0x1b05c0,6, 0x1b05e0,6, 0x1b0600,16, 0x1b0700,20, 0x1b0780,20, 0x1b0800,4, 0x1b0840,10, 0x1b0880,20, 0x1b0900,16, 0x1b0944,3, 0x1b0954,6, 0x1b0980,8, 0x1b1000,17, 0x1b1080,17, 0x1b1100,4, 0x1b1140,10, 0x1b1180,3, 0x1b1200,1, 0x1b1208,4, 0x1b1220,9, 0x1b1248,4, 0x1b1260,11, 0x1b1290,4, 0x1b1300,4, 0x1b1340,9, 0x1b2004,1, 0x1b2010,8, 0x1b2044,1, 0x1b204c,1, 0x1b2054,1, 0x1b205c,2, 0x1b2080,2, 0x1b2100,3, 0x1b2200,2, 0x1b4004,1, 0x1b407c,33, 0x1b4200,68, 0x1b4400,2, 0x1b4424,1, 0x1b4434,4, 0x1b4460,1, 0x1b4468,4, 0x1b4480,12, 0x1b44c0,2, 0x1b44e0,2, 0x1b44ec,2, 0x1b4500,8, 0x1b4600,3, 0x1b4620,3, 0x1b4630,3, 0x1b4640,7, 0x1b4680,1, 0x1b46c0,1, 0x1b46e0,11, 0x1b4720,3, 0x1b4730,3, 0x1b4740,7, 0x1b4784,1, 0x1b4798,10, 0x1b4800,36, 0x1b4a00,27, 0x1b4a80,4, 0x1b4ac0,25, 0x1b4b40,6, 0x1b4b60,2, 0x1b4b6c,3, 0x1b4b80,8, 0x1b4ba4,15, 0x1b4c00,2, 0x1b4c20,13, 0x1b5000,2, 0x1b500c,3, 0x1b5020,2, 0x1b502c,3, 0x1b5040,10, 0x1b5404,1, 0x1b5414,32, 0x1b5800,3, 0x1b5844,1, 0x1b5850,12, 0x1b5884,1, 0x1b589c,9, 0x1b6004,1, 0x1b607c,33, 0x1b6200,68, 0x1b6400,2, 0x1b6424,1, 0x1b6434,4, 0x1b6460,1, 0x1b6468,4, 0x1b6480,12, 0x1b64c0,2, 0x1b64e0,2, 0x1b64ec,2, 0x1b6500,8, 0x1b6600,3, 0x1b6620,3, 0x1b6630,3, 0x1b6640,7, 0x1b6680,1, 0x1b66c0,1, 0x1b66e0,11, 0x1b6720,3, 0x1b6730,3, 0x1b6740,7, 0x1b6784,1, 0x1b6798,10, 0x1b6800,36, 0x1b6a00,27, 0x1b6a80,4, 0x1b6ac0,25, 0x1b6b40,6, 0x1b6b60,2, 0x1b6b6c,3, 0x1b6b80,8, 0x1b6ba4,15, 0x1b6c00,2, 0x1b6c20,13, 0x1b7000,2, 0x1b700c,3, 0x1b7020,2, 0x1b702c,3, 0x1b7040,10, 0x1b7404,1, 0x1b7414,32, 0x1b7800,3, 0x1b7844,1, 0x1b7850,12, 0x1b7884,1, 0x1b789c,9, 0x1b8000,2, 0x1b8080,6, 0x1b80a0,6, 0x1b80c0,26, 0x1b8130,1, 0x1b813c,4, 0x1b8180,4, 0x1b81a0,5, 0x1b81c0,1, 0x1b8200,3, 0x1b8280,18, 0x1b8300,9, 0x1b8340,37, 0x1b8400,5, 0x1b8418,6, 0x1b8448,3, 0x1b8458,4, 0x1b8480,16, 0x1b8604,1, 0x1b8638,18, 0x1b8684,1, 0x1b869c,9, 0x1b86c4,1, 0x1b86d0,4, 0x1b86e4,1, 0x1b86f0,4, 0x1b8704,1, 0x1b8710,4, 0x1b8724,1, 0x1b8730,7, 0x1b8800,2, 0x1b8884,1, 0x1b88b8,20, 0x1b8984,1, 0x1b89b8,30, 0x1b8a40,6, 0x1b8a60,3, 0x1b8a80,6, 0x1b8aa4,2, 0x1b8ac0,9, 0x1b8b00,6, 0x1b8b20,6, 0x1b8b40,6, 0x1b8b60,6, 0x1b8c00,1, 0x1b9000,2, 0x1b9104,1, 0x1b9184,41, 0x1b9240,10, 0x1b9400,4, 0x1b9500,37, 0x1b9600,4, 0x1b9620,5, 0x1b9640,2, 0x1b9800,1, 0x1b9808,4, 0x1b9820,4, 0x1b9880,2, 0x1b98c4,1, 0x1b98e0,10, 0x1b9944,1, 0x1b9960,10, 0x1b99c4,1, 0x1b99e0,9, 0x1b9a10,4, 0x1b9a24,14, 0x1b9c00,7, 0x1b9c20,7, 0x1b9c80,4, 0x1b9cc0,11, 0x1b9d00,4, 0x1b9d80,4, 0x1b9dc0,9, 0x1b9e00,1, 0x1b9e08,12, 0x1ba000,27, 0x1ba080,4, 0x1ba0c0,25, 0x1ba140,6, 0x1ba160,2, 0x1ba16c,3, 0x1ba180,8, 0x1ba1a4,9, 0x1ba400,1, 0x1ba408,4, 0x1ba600,34, 0x1ba700,34, 0x1ba800,2, 0x1ba904,1, 0x1ba96c,39, 0x1baa44,17, 0x1baaa4,1, 0x1baab0,6, 0x1baae4,1, 0x1baaf4,4, 0x1bab08,4, 0x1bab20,4, 0x1bab40,24, 0x1bac00,41, 0x1bacb0,4, 0x1bad04,1, 0x1bad40,16, 0x1bad84,1, 0x1bad8c,8, 0x1bae00,2, 0x1bae24,1, 0x1bae34,4, 0x1bae80,1, 0x1bae88,4, 0x1baea0,16, 0x1c0000,36, 0x1c0100,36, 0x1c0200,36, 0x1c0300,36, 0x1c0400,133, 0x1c0640,12, 0x1c0680,12, 0x1c06c0,12, 0x1c0700,12, 0x1c0740,12, 0x1c0780,12, 0x1c07c0,12, 0x1c0800,12, 0x1c0840,12, 0x1c0880,12, 0x1c08c0,12, 0x1c0900,12, 0x1c0940,12, 0x1c0980,12, 0x1c09c0,12, 0x1c0a00,12, 0x1c0a40,12, 0x1c0a80,12, 0x1c0ac0,12, 0x1c0b00,12, 0x1c0b40,12, 0x1c0b80,12, 0x1c0bc0,12, 0x1c0c00,12, 0x1c0c40,12, 0x1c0c80,12, 0x1c0cc0,12, 0x1c0d00,12, 0x1c0d40,12, 0x1c0d80,12, 0x1c0dc0,12, 0x1c0e00,12, 0x1c1000,36, 0x1c1100,36, 0x1c1200,36, 0x1c1300,36, 0x1c1400,133, 0x1c1640,12, 0x1c1680,12, 0x1c16c0,12, 0x1c1700,12, 0x1c1740,12, 0x1c1780,12, 0x1c17c0,12, 0x1c1800,12, 0x1c1840,12, 0x1c1880,12, 0x1c18c0,12, 0x1c1900,12, 0x1c1940,12, 0x1c1980,12, 0x1c19c0,12, 0x1c1a00,12, 0x1c1a40,12, 0x1c1a80,12, 0x1c1ac0,12, 0x1c1b00,12, 0x1c1b40,12, 0x1c1b80,12, 0x1c1bc0,12, 0x1c1c00,12, 0x1c1c40,12, 0x1c1c80,12, 0x1c1cc0,12, 0x1c1d00,12, 0x1c1d40,12, 0x1c1d80,12, 0x1c1dc0,12, 0x1c1e00,12, 0x1c2000,36, 0x1c2100,36, 0x1c2200,36, 0x1c2300,36, 0x1c2400,133, 0x1c2640,12, 0x1c2680,12, 0x1c26c0,12, 0x1c2700,12, 0x1c2740,12, 0x1c2780,12, 0x1c27c0,12, 0x1c2800,12, 0x1c2840,12, 0x1c2880,12, 0x1c28c0,12, 0x1c2900,12, 0x1c2940,12, 0x1c2980,12, 0x1c29c0,12, 0x1c2a00,12, 0x1c2a40,12, 0x1c2a80,12, 0x1c2ac0,12, 0x1c2b00,12, 0x1c2b40,12, 0x1c2b80,12, 0x1c2bc0,12, 0x1c2c00,12, 0x1c2c40,12, 0x1c2c80,12, 0x1c2cc0,12, 0x1c2d00,12, 0x1c2d40,12, 0x1c2d80,12, 0x1c2dc0,12, 0x1c2e00,12, 0x1c3000,36, 0x1c3100,36, 0x1c3200,36, 0x1c3300,36, 0x1c3400,133, 0x1c3640,12, 0x1c3680,12, 0x1c36c0,12, 0x1c3700,12, 0x1c3740,12, 0x1c3780,12, 0x1c37c0,12, 0x1c3800,12, 0x1c3840,12, 0x1c3880,12, 0x1c38c0,12, 0x1c3900,12, 0x1c3940,12, 0x1c3980,12, 0x1c39c0,12, 0x1c3a00,12, 0x1c3a40,12, 0x1c3a80,12, 0x1c3ac0,12, 0x1c3b00,12, 0x1c3b40,12, 0x1c3b80,12, 0x1c3bc0,12, 0x1c3c00,12, 0x1c3c40,12, 0x1c3c80,12, 0x1c3cc0,12, 0x1c3d00,12, 0x1c3d40,12, 0x1c3d80,12, 0x1c3dc0,12, 0x1c3e00,12, 0x1c4000,36, 0x1c4100,36, 0x1c4200,36, 0x1c4300,36, 0x1c4400,133, 0x1c4640,12, 0x1c4680,12, 0x1c46c0,12, 0x1c4700,12, 0x1c4740,12, 0x1c4780,12, 0x1c47c0,12, 0x1c4800,12, 0x1c4840,12, 0x1c4880,12, 0x1c48c0,12, 0x1c4900,12, 0x1c4940,12, 0x1c4980,12, 0x1c49c0,12, 0x1c4a00,12, 0x1c4a40,12, 0x1c4a80,12, 0x1c4ac0,12, 0x1c4b00,12, 0x1c4b40,12, 0x1c4b80,12, 0x1c4bc0,12, 0x1c4c00,12, 0x1c4c40,12, 0x1c4c80,12, 0x1c4cc0,12, 0x1c4d00,12, 0x1c4d40,12, 0x1c4d80,12, 0x1c4dc0,12, 0x1c4e00,12, 0x1c5000,36, 0x1c5100,36, 0x1c5200,36, 0x1c5300,36, 0x1c5400,133, 0x1c5640,12, 0x1c5680,12, 0x1c56c0,12, 0x1c5700,12, 0x1c5740,12, 0x1c5780,12, 0x1c57c0,12, 0x1c5800,12, 0x1c5840,12, 0x1c5880,12, 0x1c58c0,12, 0x1c5900,12, 0x1c5940,12, 0x1c5980,12, 0x1c59c0,12, 0x1c5a00,12, 0x1c5a40,12, 0x1c5a80,12, 0x1c5ac0,12, 0x1c5b00,12, 0x1c5b40,12, 0x1c5b80,12, 0x1c5bc0,12, 0x1c5c00,12, 0x1c5c40,12, 0x1c5c80,12, 0x1c5cc0,12, 0x1c5d00,12, 0x1c5d40,12, 0x1c5d80,12, 0x1c5dc0,12, 0x1c5e00,12, 0x1c6000,36, 0x1c6100,36, 0x1c6200,36, 0x1c6300,36, 0x1c6400,133, 0x1c6640,12, 0x1c6680,12, 0x1c66c0,12, 0x1c6700,12, 0x1c6740,12, 0x1c6780,12, 0x1c67c0,12, 0x1c6800,12, 0x1c6840,12, 0x1c6880,12, 0x1c68c0,12, 0x1c6900,12, 0x1c6940,12, 0x1c6980,12, 0x1c69c0,12, 0x1c6a00,12, 0x1c6a40,12, 0x1c6a80,12, 0x1c6ac0,12, 0x1c6b00,12, 0x1c6b40,12, 0x1c6b80,12, 0x1c6bc0,12, 0x1c6c00,12, 0x1c6c40,12, 0x1c6c80,12, 0x1c6cc0,12, 0x1c6d00,12, 0x1c6d40,12, 0x1c6d80,12, 0x1c6dc0,12, 0x1c6e00,12, 0x1c7000,36, 0x1c7100,36, 0x1c7200,36, 0x1c7300,36, 0x1c7400,133, 0x1c7640,12, 0x1c7680,12, 0x1c76c0,12, 0x1c7700,12, 0x1c7740,12, 0x1c7780,12, 0x1c77c0,12, 0x1c7800,12, 0x1c7840,12, 0x1c7880,12, 0x1c78c0,12, 0x1c7900,12, 0x1c7940,12, 0x1c7980,12, 0x1c79c0,12, 0x1c7a00,12, 0x1c7a40,12, 0x1c7a80,12, 0x1c7ac0,12, 0x1c7b00,12, 0x1c7b40,12, 0x1c7b80,12, 0x1c7bc0,12, 0x1c7c00,12, 0x1c7c40,12, 0x1c7c80,12, 0x1c7cc0,12, 0x1c7d00,12, 0x1c7d40,12, 0x1c7d80,12, 0x1c7dc0,12, 0x1c7e00,12, 0x1c8000,36, 0x1c8100,36, 0x1c8200,36, 0x1c8300,36, 0x1c8400,133, 0x1c8640,12, 0x1c8680,12, 0x1c86c0,12, 0x1c8700,12, 0x1c8740,12, 0x1c8780,12, 0x1c87c0,12, 0x1c8800,12, 0x1c8840,12, 0x1c8880,12, 0x1c88c0,12, 0x1c8900,12, 0x1c8940,12, 0x1c8980,12, 0x1c89c0,12, 0x1c8a00,12, 0x1c8a40,12, 0x1c8a80,12, 0x1c8ac0,12, 0x1c8b00,12, 0x1c8b40,12, 0x1c8b80,12, 0x1c8bc0,12, 0x1c8c00,12, 0x1c8c40,12, 0x1c8c80,12, 0x1c8cc0,12, 0x1c8d00,12, 0x1c8d40,12, 0x1c8d80,12, 0x1c8dc0,12, 0x1c8e00,12, 0x1c9000,2, 0x1d0000,9, 0x1d0080,2, 0x1d00c4,1, 0x1d00e0,45, 0x1d01c0,4, 0x1d01e0,5, 0x1d0200,4, 0x1d0400,7, 0x1d0600,4, 0x1d0700,43, 0x1d0800,5, 0x1d0820,2, 0x1e0000,4, 0x1e0100,3, 0x1e0110,35, 0x1e0200,4, 0x1e0400,15, 0x1e0440,4, 0x1e0460,17, 0x1e04c0,6, 0x1e04e0,2, 0x1e04ec,3, 0x1e0500,8, 0x1e0524,35, 0x1e0600,2, 0x1e0610,3, 0x1e0800,2, 0x1e0904,1, 0x1e0974,37, 0x1e0b04,1, 0x1e0b78,42, 0x1e0c40,4, 0x1e0c60,5, 0x1e0c80,2, 0x1e0c8c,2, 0x1e0ca0,7, 0x1e1000,2, 0x1e1020,22, 0x1e1080,25, 0x1e2000,12, 0x1e2040,12, 0x1e2080,12, 0x1e20c0,12, 0x1e2100,85, 0x1e2400,3, 0x1e2414,6, 0x1e2430,7, 0x1e2450,8, 0x1e2500,15, 0x1e2540,9, 0x1e2580,6, 0x1e25a0,4, 0x1e25c0,8, 0x1e25e4,2, 0x1e2600,12, 0x1e2640,2, 0x1e264c,2, 0x1e2660,3, 0x1e2800,3, 0x1e2814,6, 0x1e2830,3, 0x1e2840,4, 0x1e2900,15, 0x1e2940,9, 0x1e2980,6, 0x1e29a0,4, 0x1e29c0,8, 0x1e29e4,1, 0x1e2a00,12, 0x1e2a40,2, 0x1e2a4c,2, 0x1e2a60,3, 0x1e2c00,6, 0x1e2c24,3, 0x1e2c34,3, 0x1e2c44,8, 0x1e2c68,2, 0x1e2c80,4, 0x1e2ca0,5, 0x1e2cc0,2, 0x1e2ccc,2, 0x1e2ce0,1, 0x1e2ce8,9, 0x1e2d10,1, 0x1e2d18,1, 0x1e2d20,1, 0x1e2d28,1, 0x1e2d30,1, 0x1e2d38,1, 0x1e2d40,1, 0x1e2d48,1, 0x1e2d50,1, 0x1e2d58,1, 0x1e2d60,1, 0x1e2d68,1, 0x1e3000,7, 0x1e3020,9, 0x1e3050,10, 0x1e3080,57, 0x1e3170,10, 0x1e31a0,57, 0x1e3290,10, 0x1e32c0,56, 0x1e3400,21, 0x1e3480,21, 0x1e3500,21, 0x1e3580,8, 0x1e35a4,27, 0x1e3620,6, 0x1e3640,6, 0x1e3660,1, 0x1e3680,9, 0x1e36bc,10, 0x1e36fc,1, 0x1e3800,108, 0x1e3c00,4, 0x1e3d00,48, 0x1e3e00,2, 0x1e3e0c,2, 0x1e3e20,6, 0x1e3e40,3, 0x1e3e50,3, 0x1e3e64,1, 0x1e3e74,5, 0x1e3ea0,2, 0x1e3eb4,1, 0x1e3ebc,12, 0x1e3f00,22, 0x1e4000,44, 0x1e40c0,5, 0x1e40e0,5, 0x1e4100,5, 0x1e4120,5, 0x1e4140,5, 0x1e4160,5, 0x1e4180,5, 0x1e41a0,5, 0x1e41c0,5, 0x1e41e0,1, 0x1e4400,6, 0x1e4420,3, 0x1e4430,150, 0x1e6000,6, 0x1e6200,15, 0x1e6240,4, 0x1e6260,17, 0x1e62c0,6, 0x1e62e0,2, 0x1e62ec,3, 0x1e6300,8, 0x1e6324,3, 0x1e6400,7, 0x1e6420,2, 0x1e642c,2, 0x1e6500,2, 0x1e6584,1, 0x1e6590,30, 0x1e6684,1, 0x1e6690,30, 0x1e6784,1, 0x1e6790,30, 0x1e6884,1, 0x1e6890,28, 0x1e6c00,226, 0x1e6f8c,2, 0x1e6fa0,5, 0x1e6fc0,84, 0x1e7200,1, 0x1e7208,1, 0x1e7210,1, 0x1e7218,1, 0x1e7220,1, 0x1e7228,1, 0x1e7230,1, 0x1e7238,1, 0x1e7240,1, 0x1e7248,1, 0x1e7250,1, 0x1e7258,1, 0x1e7260,1, 0x1e7268,1, 0x1e7270,1, 0x1e7278,1, 0x1e7280,1, 0x1e7288,1, 0x1e7290,1, 0x1e7298,1, 0x1e72a0,1, 0x1e72a8,1, 0x1e72c0,9, 0x1e72e8,2, 0x1e8000,8, 0x1e8040,9, 0x1e8080,1, 0x1e8088,4, 0x1e80a0,1, 0x1e80a8,4, 0x1e80c0,1, 0x1e80c8,4, 0x1e80e0,1, 0x200000,16, 0x200044,1, 0x200054,6, 0x200104,1, 0x200120,56, 0x200204,1, 0x200278,34, 0x200304,1, 0x200360,40, 0x200404,1, 0x200470,36, 0x200504,15, 0x200544,1, 0x200560,8, 0x200584,1, 0x200598,10, 0x2005c4,1, 0x2005e0,8, 0x200604,1, 0x200620,8, 0x200644,1, 0x200660,8, 0x200684,7, 0x2006c4,1, 0x2006e0,8, 0x200704,1, 0x200720,8, 0x200744,1, 0x200760,8, 0x200784,7, 0x2007c4,1, 0x2007e0,8, 0x200804,1, 0x200820,8, 0x200844,1, 0x200860,8, 0x200884,7, 0x2008c4,1, 0x2008e0,8, 0x200904,1, 0x20091c,49, 0x200a04,1, 0x200a10,12, 0x200a44,5, 0x200b00,3, 0x200b10,2, 0x200b24,1, 0x200b2c,1, 0x200b40,9, 0x200b80,5, 0x200c00,7, 0x200d04,1, 0x200d10,12, 0x200e00,3, 0x200e10,2, 0x200e24,1, 0x200e2c,1, 0x200e40,9, 0x200e80,5, 0x200f04,1, 0x200f0c,2, 0x201004,1, 0x201020,47, 0x201104,5, 0x201124,1, 0x201130,12, 0x201200,3, 0x201210,2, 0x201224,1, 0x20122c,1, 0x201240,9, 0x201280,5, 0x201300,3, 0x201800,6, 0x201820,6, 0x201840,6, 0x201860,6, 0x201880,6, 0x2018a0,6, 0x2018c0,6, 0x2018e0,6, 0x201900,2, 0x201944,1, 0x201950,12, 0x201a00,18, 0x201a80,18, 0x201b00,18, 0x201b80,2, 0x201c00,2, 0x202000,3, 0x202104,1, 0x202110,12, 0x202144,5, 0x202200,3, 0x202210,2, 0x202224,1, 0x20222c,1, 0x202240,9, 0x202280,5, 0x202300,28, 0x202380,20, 0x202400,13, 0x202440,13, 0x202480,22, 0x202500,22, 0x202580,13, 0x2025c0,13, 0x202600,15, 0x202640,15, 0x202680,13, 0x2026c0,13, 0x202700,10, 0x202740,10, 0x202780,6, 0x2027c4,19, 0x202840,14, 0x202900,52, 0x202a00,28, 0x202a80,6, 0x202ac0,9, 0x202b00,1, 0x202b08,9, 0x202b44,1, 0x202b54,3, 0x202b64,3, 0x202b74,3, 0x202b84,3, 0x202b94,3, 0x202ba4,3, 0x202bb4,3, 0x202bc4,3, 0x202bd4,3, 0x202be4,3, 0x202bf4,3, 0x202c04,3, 0x202c40,15, 0x202c80,2, 0x204000,8, 0x204040,12, 0x204080,3, 0x204090,2, 0x2040a0,4, 0x204200,93, 0x208000,11, 0x208030,7, 0x208050,3, 0x208060,14, 0x2080a0,5, 0x208200,11, 0x208230,2, 0x208240,11, 0x208270,2, 0x208280,1, 0x208288,15, 0x2082e0,2, 0x2082ec,3, 0x208300,4, 0x208380,26, 0x208400,11, 0x208430,2, 0x208440,11, 0x208470,2, 0x208480,1, 0x208488,15, 0x2084e0,2, 0x2084ec,3, 0x208500,4, 0x208580,26, 0x208600,32, 0x208684,2, 0x208690,4, 0x208800,27, 0x208880,4, 0x2088c0,25, 0x208940,6, 0x208960,2, 0x20896c,3, 0x208980,8, 0x2089a4,7, 0x208a00,9, 0x208a40,20, 0x208aa0,7, 0x208ac0,7, 0x208ae0,15, 0x208b20,1, 0x209000,1, 0x209080,20, 0x209100,7, 0x209200,1, 0x209220,6, 0x209240,6, 0x209260,6, 0x209280,34, 0x210000,27, 0x210080,4, 0x2100c0,25, 0x210140,6, 0x210160,2, 0x21016c,3, 0x210200,8, 0x210224,30, 0x210400,3, 0x210420,6, 0x210440,6, 0x210460,6, 0x210480,6, 0x2104a0,6, 0x2104c0,6, 0x2104e0,6, 0x210500,6, 0x210520,6, 0x210540,6, 0x210560,6, 0x210580,6, 0x2105a0,6, 0x2105c0,6, 0x2105e0,6, 0x210600,6, 0x210620,6, 0x210640,6, 0x210660,6, 0x210680,6, 0x2106a0,6, 0x2106c0,5, 0x210700,2, 0x210784,1, 0x2107b0,21, 0x210810,5, 0x210830,4, 0x211004,1, 0x211040,16, 0x211084,1, 0x2110c0,16, 0x211104,1, 0x211130,20, 0x211184,1, 0x2111c0,16, 0x211204,1, 0x211224,23, 0x211284,1, 0x2112c0,16, 0x211304,1, 0x211340,16, 0x211384,1, 0x2113c0,16, 0x211404,1, 0x21143c,17, 0x211484,1, 0x21149c,11, 0x212000,6, 0x212020,4, 0x212040,6, 0x212060,4, 0x212080,6, 0x2120a0,4, 0x2120c0,6, 0x2120e0,4, 0x212100,6, 0x212120,4, 0x212140,6, 0x212160,4, 0x212180,6, 0x2121a0,4, 0x2121c0,6, 0x2121e0,4, 0x212200,6, 0x212220,4, 0x212240,6, 0x212260,4, 0x212280,6, 0x2122a0,4, 0x2122c0,6, 0x2122e0,4, 0x212300,6, 0x212320,4, 0x212340,6, 0x212360,4, 0x212380,6, 0x2123a0,4, 0x2123c0,6, 0x2123e0,4, 0x212400,6, 0x212420,4, 0x212440,6, 0x212460,4, 0x212480,6, 0x2124a0,4, 0x2124c0,6, 0x2124e0,4, 0x212500,6, 0x212520,4, 0x212540,6, 0x212560,4, 0x212580,6, 0x2125a0,4, 0x2125c0,6, 0x2125e0,4, 0x212600,6, 0x212620,4, 0x212640,6, 0x212660,4, 0x212680,6, 0x2126a0,4, 0x2126c0,6, 0x2126e0,4, 0x212700,6, 0x212720,4, 0x212740,6, 0x212760,4, 0x212780,6, 0x2127a0,4, 0x2127c0,6, 0x2127e0,4, 0x212800,41, 0x2128b4,3, 0x2128c4,3, 0x2128e0,1, 0x212900,20, 0x212980,20, 0x212a00,22, 0x212a64,1, 0x212a74,3, 0x213000,18, 0x213060,1, 0x213068,4, 0x213080,4, 0x2130a0,12, 0x2130e0,7, 0x213100,4, 0x213180,22, 0x213200,4, 0x213300,38, 0x213400,4, 0x213440,14, 0x213480,7, 0x2134a0,7, 0x2134c0,7, 0x2134e0,7, 0x213500,4, 0x213580,23, 0x213600,4, 0x213680,28, 0x213700,4, 0x213780,23, 0x213800,4, 0x213880,19, 0x213900,4, 0x213940,11, 0x213a00,89, 0x213b70,4, 0x214000,9, 0x214040,9, 0x214080,9, 0x2140c0,9, 0x214100,9, 0x214140,9, 0x214180,9, 0x2141c0,9, 0x214200,22, 0x214280,9, 0x2142c0,9, 0x214300,12, 0x214334,26, 0x214400,36, 0x214500,36, 0x214600,36, 0x214700,36, 0x214800,6, 0x214820,6, 0x214840,17, 0x215000,2, 0x215020,2, 0x21502c,3, 0x220000,2, 0x220024,1, 0x220034,4, 0x220060,1, 0x220068,4, 0x220400,63, 0x220504,4, 0x220604,1, 0x22063c,27, 0x2206ac,1, 0x2206c0,10, 0x2206ec,1, 0x220800,3, 0x220810,3, 0x220900,39, 0x220a00,1, 0x220c00,10, 0x220c30,3, 0x220c40,4, 0x220c60,6, 0x220c80,32, 0x221000,3, 0x221010,3, 0x221100,39, 0x221200,1, 0x221400,10, 0x221430,3, 0x221440,4, 0x221460,6, 0x221480,33, 0x221508,4, 0x221520,4, 0x221540,1, 0x221548,4, 0x221560,4, 0x221804,10, 0x221840,22, 0x2218a0,6, 0x221900,8, 0x222000,2, 0x222024,1, 0x222034,4, 0x222060,1, 0x222068,4, 0x222400,63, 0x222504,4, 0x222604,1, 0x22263c,27, 0x2226ac,1, 0x2226c0,10, 0x2226ec,1, 0x222800,3, 0x222810,3, 0x222900,39, 0x222a00,1, 0x222c00,10, 0x222c30,3, 0x222c40,4, 0x222c60,6, 0x222c80,32, 0x223000,3, 0x223010,3, 0x223100,39, 0x223200,1, 0x223400,10, 0x223430,3, 0x223440,4, 0x223460,6, 0x223480,33, 0x223508,4, 0x223520,4, 0x223540,1, 0x223548,4, 0x223560,4, 0x223804,10, 0x223840,22, 0x2238a0,6, 0x223900,8, 0x224000,3, 0x224084,1, 0x2240a0,49, 0x224170,6, 0x22418c,2, 0x2241a0,6, 0x2241c0,6, 0x2241e0,2, 0x224200,7, 0x224220,7, 0x224240,3, 0x224250,3, 0x224260,3, 0x224270,3, 0x224400,43, 0x2244b0,3, 0x2244c0,2, 0x224504,1, 0x22453c,18, 0x224588,4, 0x224604,1, 0x22463c,23, 0x2246a0,6, 0x2246c0,6, 0x2246e0,6, 0x224700,7, 0x224720,4, 0x224740,6, 0x224800,16, 0x224844,2, 0x224880,16, 0x2248c4,2, 0x224900,4, 0x224a00,1, 0x224b00,3, 0x224b20,5, 0x224b40,5, 0x224b60,5, 0x224b80,5, 0x224ba0,3, 0x228000,63, 0x228104,4, 0x228204,3, 0x228240,1, 0x228248,4, 0x228264,4, 0x228280,6, 0x2282a0,6, 0x2282c0,6, 0x2282e0,1, 0x2282e8,2, 0x2282f4,4, 0x228308,4, 0x228320,7, 0x228400,4, 0x228484,1, 0x2284c4,15, 0x228800,63, 0x228904,4, 0x228a04,3, 0x228a40,1, 0x228a48,4, 0x228a64,4, 0x228a80,6, 0x228aa0,6, 0x228ac0,6, 0x228ae0,1, 0x228ae8,2, 0x228af4,4, 0x228b08,4, 0x228b20,7, 0x228c00,4, 0x228c84,1, 0x228cc4,15, 0x229000,3, 0x229010,5, 0x229028,12, 0x229100,16, 0x229144,2, 0x229180,16, 0x2291c4,2, 0x229200,1, 0x229208,4, 0x229400,27, 0x229480,4, 0x2294c0,25, 0x229540,6, 0x229560,2, 0x22956c,3, 0x229580,8, 0x2295a4,7, 0x229600,25, 0x229670,4, 0x229684,1, 0x2296a0,25, 0x229720,8, 0x229800,4, 0x229880,19, 0x229900,24, 0x229980,4, 0x2299c0,9, 0x229a00,4, 0x229a40,9, 0x229b00,4, 0x229b80,18, 0x229c00,4, 0x229c80,18, 0x229d00,11, 0x229d30,3, 0x229d40,1, 0x229d50,4, 0x22a000,1, 0x22a010,4, 0x22a024,1, 0x22a02c,4, 0x22a044,1, 0x22a04c,6, 0x22a104,1, 0x22a140,19, 0x22a200,1, 0x22a220,1, 0x22a228,4, 0x22a400,1, 0x22a408,5, 0x22a420,7, 0x22a504,3, 0x22a514,3, 0x22a524,3, 0x22a534,5, 0x22a584,5, 0x22a600,34, 0x22a700,6, 0x22a720,6, 0x22a740,7, 0x22a760,4, 0x22a784,1, 0x22a794,9, 0x22a7c0,6, 0x22a7e0,6, 0x22a800,6, 0x22a820,6, 0x22a840,6, 0x22a880,9, 0x22a8c0,2, 0x22ac00,1, 0x22ad00,2, 0x22ad84,1, 0x22adbc,18, 0x22ae08,4, 0x22ae20,18, 0x22ae74,5, 0x22ae8c,4, 0x22b000,5, 0x22b020,3, 0x22b030,2, 0x22b200,27, 0x22b280,4, 0x22b2c0,25, 0x22b340,6, 0x22b360,2, 0x22b36c,3, 0x22b380,8, 0x22b3a4,14, 0x22b400,10, 0x22b440,9, 0x22b600,3, 0x22b624,4, 0x22b644,13, 0x22b680,2, 0x22b690,1, 0x22b698,4, 0x22b6c0,12, 0x22b700,1, 0x22b708,8, 0x230000,3, 0x230010,3, 0x230080,25, 0x2300f0,7, 0x230204,1, 0x23025c,41, 0x230400,27, 0x230480,4, 0x2304c0,25, 0x230540,6, 0x230560,2, 0x23056c,3, 0x230580,8, 0x2305a4,7, 0x230600,1, 0x230608,5, 0x230620,2, 0x23062c,2, 0x230640,8, 0x230700,4, 0x230780,19, 0x230800,11, 0x230830,3, 0x230840,12, 0x234000,1280, 0x236000,1, 0x236008,2, 0x236014,3, 0x236024,3, 0x236040,1, 0x236048,4, 0x236064,4, 0x236080,6, 0x2360a0,6, 0x2360c0,6, 0x2360e0,6, 0x236100,6, 0x236120,6, 0x236140,6, 0x236160,6, 0x236180,6, 0x2361a0,6, 0x2361c0,6, 0x2361e0,6, 0x236200,6, 0x236220,6, 0x236240,6, 0x236260,6, 0x236280,1, 0x236288,4, 0x2362a0,2, 0x2362b0,8, 0x236400,67, 0x236600,2, 0x236700,3, 0x236720,2, 0x236734,14, 0x236780,1, 0x236790,3, 0x2367a0,1, 0x236800,122, 0x2369ec,225, 0x237000,7, 0x237020,14, 0x237060,14, 0x238000,1280, 0x23a000,1, 0x23a008,2, 0x23a014,3, 0x23a024,3, 0x23a040,1, 0x23a048,4, 0x23a064,4, 0x23a080,6, 0x23a0a0,6, 0x23a0c0,6, 0x23a0e0,6, 0x23a100,6, 0x23a120,6, 0x23a140,6, 0x23a160,6, 0x23a180,6, 0x23a1a0,6, 0x23a1c0,6, 0x23a1e0,6, 0x23a200,6, 0x23a220,6, 0x23a240,6, 0x23a260,6, 0x23a280,1, 0x23a288,4, 0x23a2a0,2, 0x23a2b0,8, 0x23a400,67, 0x23a600,2, 0x23a700,3, 0x23a720,2, 0x23a734,14, 0x23a780,1, 0x23a790,3, 0x23a7a0,1, 0x23a800,122, 0x23a9ec,225, 0x23b000,7, 0x23b020,14, 0x23b060,14, 0x23c000,2, 0x23c014,10, 0x23c040,7, 0x23c060,3, 0x23c070,3, 0x23c080,3, 0x23c090,3, 0x23c0a0,7, 0x23c0c0,7, 0x23c0e0,3, 0x23c0f0,3, 0x23c100,3, 0x23c110,3, 0x23c200,4, 0x23c280,18, 0x23c300,4, 0x23c380,18, 0x23c400,18, 0x23c480,18, 0x23c500,18, 0x23c580,18, 0x240000,1, 0x240008,15, 0x240204,1, 0x240210,12, 0x240244,1, 0x240250,12, 0x240284,1, 0x240290,12, 0x2402c4,1, 0x2402d0,16, 0x240380,3, 0x2403c4,1, 0x2403d0,13, 0x240800,2, 0x240904,1, 0x240978,36, 0x240b04,1, 0x240b70,38, 0x240c44,1, 0x240c58,10, 0x240c84,32, 0x240d20,1, 0x240d30,7, 0x240e00,4, 0x240e80,18, 0x240f00,2, 0x240f44,1, 0x240f58,17, 0x240fc0,10, 0x241000,10, 0x241040,11, 0x241080,1, 0x241090,5, 0x241104,1, 0x241144,18, 0x241200,1, 0x241208,7, 0x241228,4, 0x241240,2, 0x242000,115, 0x242200,17, 0x242280,17, 0x242300,81, 0x242480,5, 0x2424a0,32, 0x242604,1, 0x242610,4, 0x242624,1, 0x242630,4, 0x242644,1, 0x242650,4, 0x242664,1, 0x242670,7, 0x242700,4, 0x242800,34, 0x242900,4, 0x242a00,36, 0x242b00,2, 0x242b24,1, 0x242b30,6, 0x242b64,1, 0x242b70,13, 0x242bb0,6, 0x242be0,2, 0x242bf0,6, 0x242c14,1, 0x242c1c,2, 0x242d00,2, 0x242d84,1, 0x242dbc,18, 0x242e10,5, 0x242e30,5, 0x242e50,5, 0x242e70,4, 0x242e84,3, 0x242ea0,1, 0x242ea8,7, 0x242f00,17, 0x242f80,36, 0x243020,5, 0x243040,4, 0x243060,5, 0x243080,4, 0x2430a0,5, 0x2430c0,4, 0x2430e0,5, 0x243100,1, 0x243120,1, 0x243128,4, 0x243140,3, 0x243150,3, 0x243160,11, 0x244000,49, 0x244100,49, 0x244200,1, 0x244400,4, 0x244500,49, 0x244600,4, 0x244680,19, 0x244700,13, 0x244740,5, 0x244760,2, 0x24476c,3, 0x244780,3, 0x244790,3, 0x2447a0,3, 0x244804,1, 0x244824,59, 0x244944,1, 0x244950,6, 0x244c00,10, 0x245000,27, 0x245080,4, 0x2450c0,25, 0x245140,6, 0x245160,2, 0x24516c,3, 0x245184,4, 0x245200,2, 0x245400,4, 0x245500,43, 0x245600,2, 0x245620,3, 0x245630,3, 0x245640,3, 0x245800,53, 0x245a00,1, 0x245a10,5, 0x245a30,5, 0x245a50,7, 0x245a80,1, 0x245a88,4, 0x245c00,44, 0x245d00,1, 0x245d40,1, 0x245d48,4, 0x245d60,3, 0x245d70,3, 0x248000,46, 0x248100,46, 0x248200,1, 0x248400,4, 0x248500,46, 0x248600,4, 0x248640,14, 0x248700,13, 0x248738,22, 0x248800,5, 0x248820,2, 0x24882c,3, 0x248840,3, 0x248850,3, 0x248860,3, 0x249000,4, 0x249200,89, 0x249400,89, 0x249600,3, 0x249610,3, 0x249620,9, 0x249800,1, 0x24a000,50, 0x24a200,1, 0x24a210,5, 0x24a230,7, 0x24a260,1, 0x24a268,4, 0x24a400,27, 0x24a480,4, 0x24a4c0,25, 0x24a540,6, 0x24a560,2, 0x24a56c,3, 0x24a584,4, 0x24a600,2, 0x24a800,36, 0x24a900,1, 0x24a908,4, 0x24a920,4, 0x24c000,2, 0x24c084,1, 0x24c0ac,26, 0x24c120,2, 0x24c140,7, 0x24c160,7, 0x24c180,4, 0x24c200,1, 0x24c208,4, 0x24c240,6, 0x24c260,6, 0x24c280,4, 0x24c300,1, 0x24c308,4, 0x24c340,7, 0x24c360,7, 0x24c380,6, 0x24c400,3, 0x24c480,3, 0x24c4c4,1, 0x24c4d0,13, 0x24c600,1, 0x24c608,4, 0x24c620,3, 0x24c630,3, 0x24c640,1, 0x24c680,5, 0x24c6c0,2, 0x24c6d4,1, 0x24c6dc,4, 0x24c700,1, 0x24c708,5, 0x24c720,8, 0x24c800,1, 0x24c808,4, 0x24ca00,34, 0x24cb00,34, 0x24cc00,1, 0x24cc08,4, 0x24cc40,5, 0x24cc60,5, 0x24ce00,4, 0x24cf00,37, 0x24d000,8, 0x250004,1, 0x25000c,1, 0x250014,1, 0x25001c,5, 0x250204,1, 0x25027c,36, 0x250404,1, 0x25047c,36, 0x250600,37, 0x250700,1, 0x250800,2, 0x250824,1, 0x250834,5, 0x250a00,2, 0x250b04,1, 0x250b74,36, 0x250c10,11, 0x250c40,2, 0x250c50,3, 0x250c60,1, 0x250d00,60, 0x250e00,12, 0x251000,2, 0x251104,1, 0x251178,37, 0x251400,27, 0x251480,4, 0x2514c0,25, 0x251540,6, 0x251560,2, 0x25156c,3, 0x251580,8, 0x2515a4,14, 0x251600,1, 0x260000,3, 0x260018,2, 0x260024,13, 0x260060,27, 0x2600d0,3, 0x2600e0,3, 0x2600f0,3, 0x260100,4, 0x260114,9, 0x260140,3, 0x260160,2, 0x260180,3, 0x26019c,18, 0x2601ec,4, 0x260200,11, 0x260240,1, 0x26027c,9, 0x260400,3, 0x260418,2, 0x260424,13, 0x260460,27, 0x2604d0,3, 0x2604e0,3, 0x2604f0,3, 0x260500,4, 0x260514,9, 0x260540,3, 0x260560,2, 0x260580,3, 0x26059c,18, 0x2605ec,4, 0x260600,11, 0x260640,1, 0x26067c,9, 0x260800,3, 0x260818,2, 0x260824,13, 0x260860,27, 0x2608d0,3, 0x2608e0,3, 0x2608f0,3, 0x260900,4, 0x260914,9, 0x260940,3, 0x260960,2, 0x260980,3, 0x26099c,18, 0x2609ec,4, 0x260a00,11, 0x260a40,1, 0x260a7c,9, 0x260c00,3, 0x260c18,2, 0x260c24,13, 0x260c60,27, 0x260cd0,3, 0x260ce0,3, 0x260cf0,3, 0x260d00,4, 0x260d14,9, 0x260d40,3, 0x260d60,2, 0x260d80,3, 0x260d9c,18, 0x260dec,4, 0x260e00,11, 0x260e40,1, 0x260e7c,9, 0x261000,3, 0x261018,2, 0x261024,13, 0x261060,27, 0x2610d0,3, 0x2610e0,3, 0x2610f0,3, 0x261100,4, 0x261114,9, 0x261140,3, 0x261160,2, 0x261180,3, 0x26119c,18, 0x2611ec,4, 0x261200,11, 0x261240,1, 0x26127c,9, 0x261400,3, 0x261418,2, 0x261424,13, 0x261460,27, 0x2614d0,3, 0x2614e0,3, 0x2614f0,3, 0x261500,4, 0x261514,9, 0x261540,3, 0x261560,2, 0x261580,3, 0x26159c,18, 0x2615ec,4, 0x261600,11, 0x261640,1, 0x26167c,9, 0x261800,3, 0x261818,2, 0x261824,13, 0x261860,27, 0x2618d0,3, 0x2618e0,3, 0x2618f0,3, 0x261900,4, 0x261914,9, 0x261940,3, 0x261960,2, 0x261980,3, 0x26199c,18, 0x2619ec,4, 0x261a00,11, 0x261a40,1, 0x261a7c,9, 0x261c00,3, 0x261c18,2, 0x261c24,13, 0x261c60,27, 0x261cd0,3, 0x261ce0,3, 0x261cf0,3, 0x261d00,4, 0x261d14,9, 0x261d40,3, 0x261d60,2, 0x261d80,3, 0x261d9c,18, 0x261dec,4, 0x261e00,11, 0x261e40,1, 0x261e7c,9, 0x262000,15, 0x263044,12, 0x263078,1, 0x263200,17, 0x263248,4, 0x263260,4, 0x263280,1, 0x263288,4, 0x2632a0,4, 0x2632c0,1, 0x2632c8,4, 0x2632e0,4, 0x263300,1, 0x263308,4, 0x263320,4, 0x263404,1, 0x263440,24, 0x2634a4,14, 0x2634e0,82, 0x263640,2, 0x26364c,2, 0x263800,6, 0x263820,2, 0x263a30,1, 0x263a40,8, 0x263a64,5, 0x263b00,4, 0x263b84,1, 0x263bc0,20, 0x263c84,1, 0x263cc0,16, 0x264a04,3, 0x264b00,33, 0x264b90,3, 0x264c00,10, 0x264c80,27, 0x264d00,2, 0x264d14,3, 0x264d40,3, 0x264d80,4, 0x264da0,44, 0x264e80,1, 0x264ea0,7, 0x264ec0,11, 0x265000,100, 0x265200,20, 0x265280,7, 0x265400,68, 0x265600,2, 0x265640,4, 0x265660,6, 0x265800,92, 0x265a00,5, 0x265a18,7, 0x265a40,22, 0x268000,5, 0x268018,22, 0x268074,1, 0x26807c,1, 0x268084,1, 0x2680a0,10, 0x268100,66, 0x268224,14, 0x268264,14, 0x2682a0,10, 0x2682d0,1, 0x2682dc,1, 0x268300,1, 0x268380,64, 0x268484,1, 0x2684c0,23, 0x268520,7, 0x268540,10, 0x268570,1, 0x26857c,1, 0x268600,1, 0x268680,64, 0x268784,1, 0x2687c0,23, 0x268820,7, 0x268840,6, 0x268860,1, 0x268868,4, 0x268880,5, 0x2688a0,6, 0x2688c0,6, 0x2688e0,6, 0x268900,6, 0x268920,35, 0x2689b0,3, 0x2689c0,3, 0x2689d0,3, 0x2689e0,3, 0x2689f0,3, 0x268a00,3, 0x268a10,3, 0x268a20,3, 0x268a30,3, 0x268a40,3, 0x268a50,3, 0x268a60,3, 0x268a70,3, 0x268a80,3, 0x268a90,3, 0x268aa0,1, 0x268aa8,3, 0x268ab8,3, 0x268ac8,3, 0x268ad8,2, 0x268b00,48, 0x268c00,38, 0x268ca0,6, 0x268cc0,5, 0x268ce0,5, 0x268d00,6, 0x268d20,6, 0x268d40,1, 0x268d80,9, 0x268da8,4, 0x269000,2, 0x269040,9, 0x269080,23, 0x280000,20, 0x280080,12, 0x290000,1, 0x290800,150, 0x290c00,10, 0x290c40,4, 0x290c60,7, 0x290c80,7, 0x290cc0,4, 0x290ce0,5, 0x290d00,1, 0x290d08,5, 0x291000,4, 0x291040,4, 0x291060,7, 0x291080,4, 0x2910a0,5, 0x2910c0,2, 0x2910cc,2, 0x2910e0,2, 0x2910ec,2, 0x291100,4, 0x291120,5, 0x291140,8, 0x292000,2, 0x292080,2, 0x29208c,3, 0x29209c,4, 0x2920b4,2, 0x2920c0,1, 0x2920cc,11, 0x292100,1, 0x292120,6, 0x292140,10, 0x292180,10, 0x2921c0,3, 0x2921d0,3, 0x2921e0,3, 0x2921f0,3, 0x292200,3, 0x292210,3, 0x292220,3, 0x292230,3, 0x292240,3, 0x292250,3, 0x292260,6, 0x292280,73, 0x2923c0,9, 0x292400,9, 0x292440,9, 0x292480,9, 0x2924c0,9, 0x292500,9, 0x292540,9, 0x292580,9, 0x2925c0,9, 0x292600,9, 0x292640,9, 0x292680,9, 0x2926c0,9, 0x292700,9, 0x292740,9, 0x292780,9, 0x2927c0,9, 0x292800,9, 0x292840,9, 0x292880,11, 0x2928b0,1, 0x293000,4, 0x293400,248, 0x293800,23, 0x293880,1, 0x293890,5, 0x2938b0,4, 0x294000,150, 0x294400,10, 0x294440,4, 0x294460,7, 0x294480,7, 0x2944a0,1, 0x294800,33, 0x294900,55, 0x294a00,1, 0x294a20,7, 0x294a40,3, 0x294a50,2, 0x294a80,6, 0x294aa0,6, 0x294ac0,20, 0x294b40,12, 0x294b80,4, 0x294bc0,11, 0x294c00,2, 0x294c0c,3, 0x294c20,1, 0x295000,2, 0x295204,78, 0x295340,6, 0x295400,1, 0x295800,1, 0x295c00,23, 0x295c60,2, 0x295c80,6, 0x295ca0,6, 0x295cc0,68, 0x295e00,15, 0x295e40,4, 0x295e60,17, 0x295ec0,6, 0x295ee0,2, 0x295eec,3, 0x295f00,8, 0x295f24,5, 0x296000,1, 0x296008,4, 0x296020,1, 0x296028,4, 0x296040,1, 0x296048,4, 0x296060,3, 0x298000,3, 0x298010,4, 0x298080,28, 0x298100,6, 0x298120,2, 0x298130,3, 0x298200,15, 0x298240,4, 0x298260,17, 0x2982c0,6, 0x2982e0,2, 0x2982ec,3, 0x298300,8, 0x298324,1, 0x298400,2, 0x300000,19, 0x300100,1, 0x300200,57, 0x300300,57, 0x300400,57, 0x300500,57, 0x300600,57, 0x300700,57, 0x300800,57, 0x300900,57, 0x300a00,57, 0x300b00,57, 0x300c00,57, 0x300d00,57, 0x300e00,57, 0x300f00,57, 0x301000,57, 0x301100,57, 0x301200,6, 0x302000,31, 0x302080,31, 0x302100,31, 0x302180,31, 0x302200,31, 0x302280,31, 0x302300,31, 0x302380,31, 0x302400,31, 0x302480,31, 0x302500,31, 0x302580,31, 0x302600,31, 0x302680,31, 0x302700,31, 0x302780,31, 0x302800,1, 0x302808,31, 0x302a04,1, 0x302a10,6, 0x302a30,64, 0x302c00,7, 0x302c20,4, 0x302c40,20, 0x302ca0,12, 0x302ce0,9, 0x302d20,5, 0x302d40,5, 0x302d60,6, 0x302d80,1, 0x302d88,100, 0x303004,1, 0x30302c,21, 0x303104,1, 0x303148,46, 0x303204,1, 0x30321c,11, 0x303400,8, 0x304000,130, 0x304300,36, 0x304400,36, 0x304500,36, 0x304600,36, 0x304700,36, 0x304800,36, 0x304900,36, 0x304a00,36, 0x304b00,36, 0x304c00,36, 0x304d00,36, 0x304e00,36, 0x304f00,36, 0x305000,36, 0x305100,36, 0x305200,36, 0x305300,64, 0x308000,50, 0x308100,50, 0x308204,1, 0x30821c,11, 0x308280,2, 0x3082a0,5, 0x3082c0,9, 0x308300,3, 0x308320,6, 0x308340,6, 0x308360,1, 0x308368,80, 0x3084c0,5, 0x3084e0,1, 0x3084f0,28, 0x30a000,58, 0x30a0f0,10, 0x30a200,36, 0x30a300,36, 0x30a400,36, 0x30a500,36, 0x30a600,36, 0x30a700,36, 0x30a800,36, 0x30a900,36, 0x30aa00,36, 0x30ab00,36, 0x30ac00,36, 0x30ad00,36, 0x30ae00,36, 0x30af00,36, 0x30b000,36, 0x30b100,36, 0x30b200,36, 0x30b300,36, 0x30c000,51, 0x30c100,1, 0x30c120,9, 0x30c160,9, 0x30c1a0,9, 0x30c1e0,9, 0x30c220,9, 0x30c260,9, 0x30c2a0,9, 0x30c2e0,9, 0x30c320,9, 0x30c360,9, 0x30c3a0,9, 0x30c3e0,9, 0x30c420,9, 0x30c460,9, 0x30c4a0,9, 0x30c4e0,28, 0x30c580,20, 0x30c600,20, 0x30c680,20, 0x30c700,20, 0x30c780,20, 0x30c800,20, 0x30c880,20, 0x30c900,20, 0x30c980,20, 0x30ca00,20, 0x30ca80,20, 0x30cb00,20, 0x30cb80,20, 0x30cc00,20, 0x30cc80,20, 0x30cd00,20, 0x30cd80,20, 0x30ce00,20, 0x30d000,3, 0x30d010,3, 0x30d020,3, 0x30d030,3, 0x30d040,3, 0x30d050,3, 0x30d060,3, 0x30d070,3, 0x30d080,7, 0x30d100,28, 0x30d180,28, 0x30d200,28, 0x30d280,28, 0x30d300,28, 0x30d380,28, 0x30d400,28, 0x30d480,28, 0x30d500,28, 0x30d580,28, 0x30d600,28, 0x30d680,28, 0x30d700,28, 0x30d780,28, 0x30d800,28, 0x30d880,28, 0x30d900,28, 0x30d980,28, 0x30e000,4, 0x310000,11, 0x310040,9, 0x310080,33, 0x310108,5, 0x310120,3, 0x310130,1, 0x310144,12, 0x310180,9, 0x310200,1, 0x310208,4, 0x310280,28, 0x310300,28, 0x310380,28, 0x310400,28, 0x310480,28, 0x310500,28, 0x310580,28, 0x310600,28, 0x310680,28, 0x310700,28, 0x310780,28, 0x310800,28, 0x310880,28, 0x310900,28, 0x310980,28, 0x310a00,28, 0x310b00,44, 0x310c00,68, 0x310e00,4, 0x310e20,1, 0x310e40,1, 0x310e60,7, 0x310e80,7, 0x310ea0,1, 0x310ec0,6, 0x310ee0,6, 0x310f00,6, 0x310f20,1, 0x310f40,6, 0x310f60,6, 0x310f80,6, 0x310fa0,1, 0x310fc0,6, 0x310fe0,6, 0x311000,6, 0x311020,3, 0x311030,7, 0x311050,7, 0x311070,7, 0x311090,7, 0x3110b0,7, 0x3110d0,7, 0x3110f0,7, 0x311110,7, 0x311130,7, 0x311150,7, 0x311170,7, 0x311190,7, 0x3111b0,7, 0x3111d0,7, 0x3111f0,7, 0x311210,7, 0x311230,7, 0x311250,7, 0x311270,7, 0x311290,7, 0x3112b0,7, 0x3112d0,7, 0x3112f0,7, 0x311310,7, 0x311330,7, 0x311350,7, 0x311370,7, 0x311390,7, 0x3113b0,7, 0x3113d0,7, 0x3113f0,7, 0x311410,24, 0x311480,23, 0x3114e0,7, 0x311500,23, 0x311580,7, 0x3115c0,2, 0x3115cc,3, 0x3115e0,2, 0x3115ec,3, 0x311600,2, 0x31160c,3, 0x311620,2, 0x31162c,3, 0x311640,2, 0x31164c,3, 0x311660,2, 0x31166c,3, 0x311680,2, 0x31168c,3, 0x3116a0,2, 0x3116ac,3, 0x3116c0,2, 0x3116cc,3, 0x3116e0,2, 0x3116ec,3, 0x311700,2, 0x31170c,3, 0x311720,2, 0x31172c,3, 0x311740,2, 0x31174c,3, 0x311760,2, 0x31176c,3, 0x311780,2, 0x31178c,3, 0x3117a0,2, 0x3117ac,3, 0x311800,11, 0x311840,6, 0x31185c,2, 0x312800,2, 0x312820,48, 0x312900,2, 0x312920,48, 0x312a00,131, 0x313000,33, 0x313400,27, 0x313480,1, 0x3134a0,6, 0x313800,27, 0x313880,4, 0x3138c0,25, 0x313940,6, 0x313960,2, 0x31396c,3, 0x313a00,8, 0x313a24,24, 0x313c00,27, 0x313c80,1, 0x313ca0,6, 0x313d00,27, 0x313d80,27, 0x313e00,27, 0x313e80,27, 0x313f00,27, 0x313f80,27, 0x314000,27, 0x314080,27, 0x314100,27, 0x314180,27, 0x314200,27, 0x314280,27, 0x314300,27, 0x314380,27, 0x314400,27, 0x314480,27, 0x314500,2, 0x314510,3, 0x314520,1, 0x318000,6, 0x318020,6, 0x318040,6, 0x318060,6, 0x318080,6, 0x3180a0,6, 0x3180c0,6, 0x3180e0,6, 0x318100,6, 0x318120,6, 0x318140,6, 0x318160,6, 0x318180,6, 0x3181a0,6, 0x3181c0,6, 0x3181e0,6, 0x318200,3, 0x31c000,9, 0x31c028,8, 0x31c080,3, 0x31c0a0,5, 0x31c100,9, 0x31c128,8, 0x31c180,3, 0x31c1a0,5, 0x31c200,9, 0x31c228,8, 0x31c280,3, 0x31c2a0,5, 0x31c300,9, 0x31c328,8, 0x31c380,3, 0x31c3a0,5, 0x31c400,9, 0x31c428,8, 0x31c480,6, 0x31c4a0,5, 0x31c500,9, 0x31c528,8, 0x31c580,3, 0x31c5a0,5, 0x31c600,9, 0x31c628,8, 0x31c680,3, 0x31c6a0,5, 0x31c800,9, 0x31c828,8, 0x31c880,3, 0x31c8a0,5, 0x31c900,9, 0x31c928,8, 0x31c980,3, 0x31c9a0,5, 0x31ca00,9, 0x31ca28,8, 0x31ca80,3, 0x31caa0,5, 0x31cb00,9, 0x31cb28,8, 0x31cb80,3, 0x31cba0,5, 0x31cc00,9, 0x31cc28,8, 0x31cc80,6, 0x31cca0,5, 0x31cd00,9, 0x31cd28,8, 0x31cd80,3, 0x31cda0,5, 0x31ce00,9, 0x31ce28,8, 0x31ce80,3, 0x31cea0,5, 0x31d000,9, 0x31d028,8, 0x31d080,6, 0x31d0a0,5, 0x31d100,9, 0x31d128,8, 0x31d180,6, 0x31d1a0,5, 0x31d200,9, 0x31d228,8, 0x31d280,6, 0x31d2a0,5, 0x31d300,9, 0x31d328,8, 0x31d380,6, 0x31d3a0,5, 0x31d400,9, 0x31d428,8, 0x31d480,6, 0x31d4a0,5, 0x31d500,9, 0x31d528,8, 0x31d580,6, 0x31d5a0,5, 0x31d600,9, 0x31d628,8, 0x31d680,6, 0x31d6a0,5, 0x31d700,9, 0x31d728,8, 0x31d780,6, 0x31d7a0,5, 0x31d800,9, 0x31d828,8, 0x31d880,6, 0x31d8a0,5, 0x31d900,9, 0x31d928,8, 0x31d980,6, 0x31d9a0,5, 0x31da00,9, 0x31da28,8, 0x31da80,6, 0x31daa0,5, 0x31db00,9, 0x31db28,8, 0x31db80,6, 0x31dba0,5, 0x31dc00,9, 0x31dc28,8, 0x31dc80,6, 0x31dca0,5, 0x31dd00,9, 0x31dd28,8, 0x31dd80,6, 0x31dda0,5, 0x31de00,9, 0x31de28,8, 0x31de80,6, 0x31dea0,5, 0x31df00,9, 0x31df28,8, 0x31df80,6, 0x31dfa0,5, 0x31e000,9, 0x31e028,8, 0x31e080,4, 0x31e0c0,13, 0x31e100,6, 0x31e120,5, 0x31e140,3, 0x320000,3, 0x320010,3, 0x320020,3, 0x320030,3, 0x320040,3, 0x320050,3, 0x320060,3, 0x320070,3, 0x320080,3, 0x320090,3, 0x3200a0,3, 0x3200b0,3, 0x3200c0,3, 0x3200d0,3, 0x3200e0,3, 0x3200f0,3, 0x320100,2, 0x320200,3, 0x320210,3, 0x320220,3, 0x320230,3, 0x320240,3, 0x320250,3, 0x320260,3, 0x320270,3, 0x320280,3, 0x320290,3, 0x3202a0,3, 0x3202b0,3, 0x3202c0,3, 0x3202d0,3, 0x3202e0,3, 0x3202f0,3, 0x320300,2, 0x320400,3, 0x320410,3, 0x320420,3, 0x320430,3, 0x320440,3, 0x320450,3, 0x320460,3, 0x320470,3, 0x320480,3, 0x320490,3, 0x3204a0,3, 0x3204b0,3, 0x3204c0,3, 0x3204d0,3, 0x3204e0,3, 0x3204f0,3, 0x320500,2, 0x320600,18, 0x320680,18, 0x320700,4, 0x321000,5, 0x321020,5, 0x321040,5, 0x321060,5, 0x321080,5, 0x3210a0,5, 0x3210c0,5, 0x3210e0,5, 0x321100,5, 0x321120,5, 0x321140,5, 0x321160,5, 0x321180,5, 0x3211a0,5, 0x3211c0,5, 0x3211e0,5, 0x321200,5, 0x321220,5, 0x321240,5, 0x321260,5, 0x321280,5, 0x3212a0,5, 0x3212c0,5, 0x3212e0,5, 0x321300,5, 0x321320,5, 0x321340,5, 0x321360,5, 0x321380,5, 0x3213a0,5, 0x3213c0,5, 0x3213e0,5, 0x321400,5, 0x321420,5, 0x321440,5, 0x321460,5, 0x321480,5, 0x3214a0,5, 0x3214c0,5, 0x3214e0,5, 0x321500,5, 0x321520,5, 0x321540,5, 0x321560,5, 0x321580,5, 0x3215a0,5, 0x3215c0,5, 0x3215e0,5, 0x321600,5, 0x321620,5, 0x321640,5, 0x321660,5, 0x321680,5, 0x3216a0,5, 0x3216c0,5, 0x3216e0,5, 0x321700,5, 0x321720,5, 0x321740,5, 0x321760,5, 0x321780,5, 0x3217a0,5, 0x3217c0,5, 0x3217e0,5, 0x321800,27, 0x321874,9, 0x3218a0,6, 0x3218c0,3, 0x321904,1, 0x32190c,5, 0x321924,1, 0x32192c,7, 0x322000,5, 0x322020,5, 0x322040,5, 0x322060,5, 0x322080,5, 0x3220a0,5, 0x3220c0,5, 0x3220e0,5, 0x322100,5, 0x322120,5, 0x322140,5, 0x322160,5, 0x322180,5, 0x3221a0,5, 0x3221c0,5, 0x3221e0,5, 0x322200,5, 0x322220,5, 0x322240,5, 0x322260,5, 0x322280,5, 0x3222a0,5, 0x3222c0,5, 0x3222e0,5, 0x322300,5, 0x322320,5, 0x322340,5, 0x322360,5, 0x322380,5, 0x3223a0,5, 0x3223c0,5, 0x3223e0,5, 0x322400,5, 0x322420,5, 0x322440,5, 0x322460,5, 0x322480,5, 0x3224a0,5, 0x3224c0,5, 0x3224e0,5, 0x322500,5, 0x322520,5, 0x322540,5, 0x322560,5, 0x322580,5, 0x3225a0,5, 0x3225c0,5, 0x3225e0,5, 0x322600,5, 0x322620,5, 0x322640,5, 0x322660,5, 0x322680,5, 0x3226a0,5, 0x3226c0,5, 0x3226e0,5, 0x322700,5, 0x322720,5, 0x322740,5, 0x322760,5, 0x322780,5, 0x3227a0,5, 0x3227c0,5, 0x3227e0,5, 0x322800,27, 0x322874,12, 0x3228a8,64, 0x322a04,1, 0x322a0c,5, 0x322a24,1, 0x322a2c,7, 0x323000,11, 0x323030,9, 0x323080,11, 0x3230b0,9, 0x323100,1, 0x340000,167, 0x3402a0,7, 0x3402c0,7, 0x3402e0,118, 0x3404c0,6, 0x3404e0,6, 0x340500,6, 0x340520,6, 0x340540,6, 0x340560,6, 0x340580,6, 0x3405a0,6, 0x3405c0,6, 0x3405e0,6, 0x340600,6, 0x340620,6, 0x340640,6, 0x340660,6, 0x340680,6, 0x3406a0,5, 0x3406c0,5, 0x3406e0,5, 0x340700,5, 0x340720,5, 0x340740,5, 0x340760,5, 0x340780,5, 0x3407a0,5, 0x3407c0,5, 0x3407e0,5, 0x340800,5, 0x340820,5, 0x340840,5, 0x340860,5, 0x340880,5, 0x3408a0,16, 0x340900,13, 0x340940,13, 0x340980,13, 0x3409c0,13, 0x340a00,13, 0x340a40,13, 0x340a80,13, 0x340ac0,13, 0x340b00,13, 0x340b40,13, 0x340b80,13, 0x340bc0,13, 0x340c00,13, 0x340c40,13, 0x340c80,13, 0x340cc0,13, 0x340d00,5, 0x340d20,5, 0x340d40,5, 0x340d60,5, 0x340d80,5, 0x340da0,5, 0x340dc0,5, 0x340de0,5, 0x340e00,5, 0x340e20,5, 0x340e40,5, 0x340e60,5, 0x340e80,5, 0x340ea0,5, 0x340ec0,5, 0x340ee0,5, 0x340f00,17, 0x341000,112, 0x341200,51, 0x341400,5, 0x341800,3, 0x341810,3, 0x341820,3, 0x341830,3, 0x341840,3, 0x341850,3, 0x341860,3, 0x341870,3, 0x341880,3, 0x341890,3, 0x3418a0,3, 0x3418b0,3, 0x3418c0,3, 0x3418d0,3, 0x3418e0,3, 0x3418f0,3, 0x341900,3, 0x341910,3, 0x341920,3, 0x341930,3, 0x341940,3, 0x341950,3, 0x341960,3, 0x341970,3, 0x341980,3, 0x341990,3, 0x3419a0,3, 0x3419b0,3, 0x3419c0,3, 0x3419d0,3, 0x3419e0,3, 0x3419f0,3, 0x341a00,2, 0x341a0c,12, 0x341a40,20, 0x341c00,20, 0x341c80,20, 0x341d00,20, 0x341d80,20, 0x341e00,20, 0x341e80,20, 0x341f00,20, 0x341f80,20, 0x342000,20, 0x342080,20, 0x342100,20, 0x342180,20, 0x342200,20, 0x342280,20, 0x342300,20, 0x342380,20, 0x342400,5, 0x344000,27, 0x344080,27, 0x344100,27, 0x344180,27, 0x344200,27, 0x344280,27, 0x344300,27, 0x344380,27, 0x344400,27, 0x344480,27, 0x344500,27, 0x344580,27, 0x344600,27, 0x344680,27, 0x344700,27, 0x344780,27, 0x344800,27, 0x344880,27, 0x344900,14, 0x344940,3, 0x344950,4, 0x350000,72, 0x350200,72, 0x350400,72, 0x350600,72, 0x350800,72, 0x350a00,72, 0x350c00,72, 0x350e00,72, 0x351000,72, 0x351200,72, 0x351400,72, 0x351600,72, 0x351800,72, 0x351a00,72, 0x351c00,72, 0x351e00,72, 0x352000,46, 0x352100,2, 0x352110,21, 0x352180,23, 0x3521e0,3, 0x352200,46, 0x352300,2, 0x352310,21, 0x352380,23, 0x3523e0,3, 0x352400,46, 0x352500,2, 0x352510,21, 0x352580,23, 0x3525e0,3, 0x352600,46, 0x352700,2, 0x352710,21, 0x352780,23, 0x3527e0,3, 0x352800,46, 0x352900,2, 0x352910,21, 0x352980,23, 0x3529e0,3, 0x352a00,46, 0x352b00,2, 0x352b10,21, 0x352b80,23, 0x352be0,3, 0x352c00,46, 0x352d00,2, 0x352d10,21, 0x352d80,23, 0x352de0,3, 0x352e00,46, 0x352f00,2, 0x352f10,21, 0x352f80,23, 0x352fe0,3, 0x353000,46, 0x353100,2, 0x353110,21, 0x353180,23, 0x3531e0,3, 0x353200,46, 0x353300,2, 0x353310,21, 0x353380,23, 0x3533e0,3, 0x353400,46, 0x353500,2, 0x353510,21, 0x353580,23, 0x3535e0,3, 0x353600,46, 0x353700,2, 0x353710,21, 0x353780,23, 0x3537e0,3, 0x353800,46, 0x353900,2, 0x353910,21, 0x353980,23, 0x3539e0,3, 0x353a00,46, 0x353b00,2, 0x353b10,21, 0x353b80,23, 0x353be0,3, 0x353c00,46, 0x353d00,2, 0x353d10,21, 0x353d80,23, 0x353de0,3, 0x353e00,46, 0x353f00,2, 0x353f10,21, 0x353f80,23, 0x353fe0,3, 0x354000,21, 0x354060,29, 0x3540e0,29, 0x354160,29, 0x3541e0,29, 0x354260,29, 0x3542e0,29, 0x354360,29, 0x3543e0,29, 0x354460,29, 0x3544e0,29, 0x354560,29, 0x3545e0,29, 0x354660,29, 0x3546e0,29, 0x354760,29, 0x3547e0,38, 0x354880,30, 0x354900,30, 0x354980,30, 0x354a00,30, 0x354a80,30, 0x354b00,30, 0x354b80,30, 0x354c00,30, 0x354c80,30, 0x354d00,30, 0x354d80,30, 0x354e00,30, 0x354e80,30, 0x354f00,30, 0x354f80,30, 0x355000,58, 0x3550ec,1, 0x3550f4,2, 0x355100,52, 0x355200,44, 0x355300,128, 0x355800,5, 0x355820,5, 0x355840,5, 0x355860,5, 0x355880,5, 0x3558a0,5, 0x3558c0,5, 0x3558e0,5, 0x355900,5, 0x355920,5, 0x355940,5, 0x355960,5, 0x355980,5, 0x3559a0,5, 0x3559c0,5, 0x3559e0,5, 0x355a00,33, 0x355c00,32, 0x355c84,1, 0x355c8c,3, 0x355ca0,18, 0x355cf0,3, 0x355d00,3, 0x355d10,3, 0x355d20,3, 0x355d30,3, 0x355d40,3, 0x355d50,3, 0x355d60,3, 0x355d70,3, 0x355d80,3, 0x355d90,3, 0x355da0,3, 0x355db0,3, 0x355dc0,3, 0x355dd0,3, 0x355de0,3, 0x355df0,55, 0x355ed0,3, 0x355ee0,3, 0x355ef0,3, 0x355f00,3, 0x355f10,3, 0x355f20,3, 0x355f30,3, 0x355f40,3, 0x355f50,3, 0x355f60,3, 0x355f70,3, 0x355f80,3, 0x355f90,3, 0x355fa0,3, 0x355fb0,3, 0x356000,104, 0x356200,26, 0x356280,26, 0x356300,26, 0x356380,26, 0x356400,26, 0x356480,26, 0x356500,26, 0x356580,26, 0x356600,26, 0x356680,26, 0x356700,26, 0x356780,26, 0x356800,26, 0x356880,26, 0x356900,26, 0x356980,26, 0x356a00,8, 0x356a80,8, 0x356aa4,8, 0x356b00,8, 0x356b24,8, 0x356b80,8, 0x356ba4,8, 0x356c00,8, 0x356c24,8, 0x356c80,8, 0x356ca4,8, 0x356d00,8, 0x356d24,8, 0x356d80,8, 0x356da4,8, 0x356e00,8, 0x356e24,8, 0x356e80,8, 0x356ea4,8, 0x356f00,8, 0x356f24,8, 0x356f80,8, 0x356fa4,8, 0x357000,8, 0x357024,8, 0x357080,8, 0x3570a4,8, 0x357100,8, 0x357124,8, 0x357180,8, 0x3571a4,8, 0x357200,8, 0x357224,8, 0x357280,4, 0x357294,44, 0x357400,5, 0x357420,5, 0x357440,5, 0x357460,5, 0x357480,5, 0x3574a0,5, 0x3574c0,5, 0x3574e0,5, 0x357500,5, 0x357520,5, 0x357540,5, 0x357560,5, 0x357580,5, 0x3575a0,5, 0x3575c0,5, 0x3575e0,5, 0x357600,33, 0x357800,140, 0x358000,20, 0x358080,16, 0x358100,28, 0x358180,28, 0x358200,8, 0x358280,20, 0x358300,20, 0x358380,1, 0x358400,20, 0x358480,16, 0x358500,28, 0x358580,28, 0x358600,8, 0x358680,20, 0x358700,20, 0x358780,1, 0x358800,20, 0x358880,16, 0x358900,28, 0x358980,28, 0x358a00,8, 0x358a80,20, 0x358b00,20, 0x358b80,1, 0x358c00,20, 0x358c80,16, 0x358d00,28, 0x358d80,28, 0x358e00,8, 0x358e80,20, 0x358f00,20, 0x358f80,1, 0x359000,20, 0x359080,16, 0x359100,28, 0x359180,28, 0x359200,8, 0x359280,20, 0x359300,20, 0x359380,1, 0x359400,20, 0x359480,16, 0x359500,28, 0x359580,28, 0x359600,8, 0x359680,20, 0x359700,20, 0x359780,1, 0x359800,20, 0x359880,16, 0x359900,28, 0x359980,28, 0x359a00,8, 0x359a80,20, 0x359b00,20, 0x359b80,1, 0x359c00,20, 0x359c80,16, 0x359d00,28, 0x359d80,28, 0x359e00,8, 0x359e80,20, 0x359f00,20, 0x359f80,1, 0x35a000,20, 0x35a080,16, 0x35a100,28, 0x35a180,28, 0x35a200,8, 0x35a280,20, 0x35a300,20, 0x35a380,1, 0x35a400,20, 0x35a480,16, 0x35a500,28, 0x35a580,28, 0x35a600,8, 0x35a680,20, 0x35a700,20, 0x35a780,1, 0x35a800,20, 0x35a880,16, 0x35a900,28, 0x35a980,28, 0x35aa00,8, 0x35aa80,20, 0x35ab00,20, 0x35ab80,1, 0x35ac00,20, 0x35ac80,16, 0x35ad00,28, 0x35ad80,28, 0x35ae00,8, 0x35ae80,20, 0x35af00,20, 0x35af80,1, 0x35b000,20, 0x35b080,16, 0x35b100,28, 0x35b180,28, 0x35b200,8, 0x35b280,20, 0x35b300,20, 0x35b380,1, 0x35b400,20, 0x35b480,16, 0x35b500,28, 0x35b580,28, 0x35b600,8, 0x35b680,20, 0x35b700,20, 0x35b780,1, 0x35b800,20, 0x35b880,16, 0x35b900,28, 0x35b980,28, 0x35ba00,8, 0x35ba80,20, 0x35bb00,20, 0x35bb80,1, 0x35bc00,20, 0x35bc80,16, 0x35bd00,28, 0x35bd80,28, 0x35be00,8, 0x35be80,20, 0x35bf00,20, 0x35bf80,1, 0x35c000,128, 0x35c204,9, 0x35c400,80, 0x35c544,44, 0x35c600,12, 0x35c644,1, 0x35c654,8, 0x35c680,7, 0x35c6a0,2, 0x35c6ac,2, 0x35c6c0,28, 0x35c770,1, 0x35c800,11, 0x35c840,11, 0x35c880,11, 0x35c8c0,11, 0x35c900,11, 0x35c940,11, 0x35c980,11, 0x35c9c0,11, 0x35ca00,11, 0x35ca40,11, 0x35ca80,11, 0x35cac0,11, 0x35cb00,11, 0x35cb40,11, 0x35cb80,11, 0x35cbc0,11, 0x35d000,30, 0x35d080,3, 0x35d090,18, 0x35d100,30, 0x35d180,3, 0x35d190,18, 0x35d200,30, 0x35d280,3, 0x35d290,18, 0x35d300,30, 0x35d380,3, 0x35d390,18, 0x35d400,30, 0x35d480,3, 0x35d490,18, 0x35d500,30, 0x35d580,3, 0x35d590,18, 0x35d600,30, 0x35d680,3, 0x35d690,18, 0x35d700,30, 0x35d780,3, 0x35d790,18, 0x35d800,30, 0x35d880,3, 0x35d890,18, 0x35d900,30, 0x35d980,3, 0x35d990,18, 0x35da00,30, 0x35da80,3, 0x35da90,18, 0x35db00,30, 0x35db80,3, 0x35db90,18, 0x35dc00,30, 0x35dc80,3, 0x35dc90,18, 0x35dd00,30, 0x35dd80,3, 0x35dd90,18, 0x35de00,30, 0x35de80,3, 0x35de90,18, 0x35df00,30, 0x35df80,3, 0x35df90,18, 0x35e004,1, 0x35e010,4, 0x35e040,28, 0x35e100,11, 0x35e140,11, 0x35e180,11, 0x35e1c0,11, 0x35e200,11, 0x35e240,11, 0x35e280,11, 0x35e2c0,11, 0x35e300,11, 0x35e340,11, 0x35e380,11, 0x35e3c0,11, 0x35e400,11, 0x35e440,11, 0x35e480,11, 0x35e4c0,11, 0x35e500,44, 0x35e5c0,3, 0x35e800,18, 0x35e880,18, 0x35e900,18, 0x35e980,18, 0x35ea00,18, 0x35ea80,18, 0x35eb00,18, 0x35eb80,18, 0x35ec00,18, 0x35ec80,18, 0x35ed00,18, 0x35ed80,18, 0x35ee00,18, 0x35ee80,18, 0x35ef00,18, 0x35ef80,18, 0x35f000,18, 0x35f080,18, 0x35f100,18, 0x35f180,18, 0x35f200,18, 0x35f280,18, 0x35f300,18, 0x35f380,18, 0x35f400,18, 0x35f480,18, 0x35f500,18, 0x35f580,18, 0x35f600,18, 0x35f680,18, 0x35f700,18, 0x35f780,18, 0x35f800,34, 0x35f8a0,8, 0x360000,1, 0x361000,994, 0x361f8c,6, 0x361fb0,1, 0x361fc8,13, 0x362000,161, 0x363000,994, 0x363f8c,6, 0x363fb0,1, 0x363fc8,13, 0x364000,994, 0x364f8c,6, 0x364fb0,1, 0x364fc8,13, 0x365000,994, 0x365f8c,6, 0x365fb0,1, 0x365fc8,13, 0x366000,994, 0x366f8c,6, 0x366fb0,1, 0x366fc8,13, 0x367000,994, 0x367f8c,6, 0x367fb0,1, 0x367fc8,13, 0x368000,994, 0x368f8c,6, 0x368fb0,1, 0x368fc8,13, 0x369000,994, 0x369f8c,6, 0x369fb0,1, 0x369fc8,13, 0x36a000,994, 0x36af8c,6, 0x36afb0,1, 0x36afc8,13, 0x36b000,994, 0x36bf8c,6, 0x36bfb0,1, 0x36bfc8,13, 0x36c000,994, 0x36cf8c,6, 0x36cfb0,1, 0x36cfc8,13, 0x36d000,994, 0x36df8c,6, 0x36dfb0,1, 0x36dfc8,13, 0x36e000,994, 0x36ef8c,6, 0x36efb0,1, 0x36efc8,13, 0x36f000,994, 0x36ff8c,6, 0x36ffb0,1, 0x36ffc8,13, 0x370000,994, 0x370f8c,6, 0x370fb0,1, 0x370fc8,13, 0x371000,994, 0x371f8c,6, 0x371fb0,1, 0x371fc8,13, 0x372000,994, 0x372f8c,6, 0x372fb0,1, 0x372fc8,13, 0x373000,161, 0x374000,161, 0x375000,161, 0x376000,161, 0x378000,13, 0x378040,14, 0x378080,20, 0x378104,1, 0x37810c,3, 0x378200,13, 0x378240,14, 0x378280,20, 0x378304,1, 0x37830c,3, 0x378400,13, 0x378440,14, 0x378480,20, 0x378504,1, 0x37850c,3, 0x378600,13, 0x378640,14, 0x378680,20, 0x378704,1, 0x37870c,3, 0x378800,13, 0x378840,14, 0x378880,20, 0x378904,1, 0x37890c,3, 0x378a00,13, 0x378a40,14, 0x378a80,20, 0x378b04,1, 0x378b0c,3, 0x378c00,13, 0x378c40,14, 0x378c80,20, 0x378d04,1, 0x378d0c,3, 0x378e00,13, 0x378e40,14, 0x378e80,20, 0x378f04,1, 0x378f0c,3, 0x379000,13, 0x379040,14, 0x379080,20, 0x379104,1, 0x37910c,3, 0x379200,13, 0x379240,14, 0x379280,20, 0x379304,1, 0x37930c,3, 0x379400,13, 0x379440,14, 0x379480,20, 0x379504,1, 0x37950c,3, 0x379600,13, 0x379640,14, 0x379680,20, 0x379704,1, 0x37970c,3, 0x379800,13, 0x379840,14, 0x379880,20, 0x379904,1, 0x37990c,3, 0x379a00,13, 0x379a40,14, 0x379a80,20, 0x379b04,1, 0x379b0c,3, 0x379c00,13, 0x379c40,14, 0x379c80,20, 0x379d04,1, 0x379d0c,3, 0x379e00,13, 0x379e40,14, 0x379e80,20, 0x379f04,1, 0x379f0c,3, 0x37a000,13, 0x37a040,14, 0x37a080,20, 0x37a104,1, 0x37a10c,3, 0x37a200,17, 0x37a250,2, 0x37a260,5, 0x37a280,2, 0x37c000,1, 0x37c014,1, 0x37c01c,10, 0x37c060,9, 0x37c094,1, 0x37c09c,10, 0x37c0e0,9, 0x37c114,1, 0x37c11c,10, 0x37c160,9, 0x37c194,1, 0x37c19c,10, 0x37c1e0,9, 0x37c214,1, 0x37c21c,10, 0x37c260,15, 0x37c400,30, 0x37c480,9, 0x37c4c0,12, 0x37c500,1, 0x37c520,5, 0x37c540,1, 0x380000,19, 0x380100,1, 0x380200,57, 0x380300,57, 0x380400,57, 0x380500,57, 0x380600,57, 0x380700,57, 0x380800,57, 0x380900,57, 0x380a00,57, 0x380b00,57, 0x380c00,57, 0x380d00,57, 0x380e00,57, 0x380f00,57, 0x381000,57, 0x381100,57, 0x381200,6, 0x382000,31, 0x382080,31, 0x382100,31, 0x382180,31, 0x382200,31, 0x382280,31, 0x382300,31, 0x382380,31, 0x382400,31, 0x382480,31, 0x382500,31, 0x382580,31, 0x382600,31, 0x382680,31, 0x382700,31, 0x382780,31, 0x382800,1, 0x382808,31, 0x382a04,1, 0x382a10,6, 0x382a30,64, 0x382c00,7, 0x382c20,4, 0x382c40,20, 0x382ca0,12, 0x382ce0,9, 0x382d20,5, 0x382d40,5, 0x382d60,6, 0x382d80,1, 0x382d88,100, 0x383004,1, 0x38302c,21, 0x383104,1, 0x383148,46, 0x383204,1, 0x38321c,11, 0x383400,8, 0x384000,130, 0x384300,36, 0x384400,36, 0x384500,36, 0x384600,36, 0x384700,36, 0x384800,36, 0x384900,36, 0x384a00,36, 0x384b00,36, 0x384c00,36, 0x384d00,36, 0x384e00,36, 0x384f00,36, 0x385000,36, 0x385100,36, 0x385200,36, 0x385300,64, 0x388000,50, 0x388100,50, 0x388204,1, 0x38821c,11, 0x388280,2, 0x3882a0,5, 0x3882c0,9, 0x388300,3, 0x388320,6, 0x388340,6, 0x388360,1, 0x388368,80, 0x3884c0,5, 0x3884e0,1, 0x3884f0,28, 0x38a000,58, 0x38a0f0,10, 0x38a200,36, 0x38a300,36, 0x38a400,36, 0x38a500,36, 0x38a600,36, 0x38a700,36, 0x38a800,36, 0x38a900,36, 0x38aa00,36, 0x38ab00,36, 0x38ac00,36, 0x38ad00,36, 0x38ae00,36, 0x38af00,36, 0x38b000,36, 0x38b100,36, 0x38b200,36, 0x38b300,36, 0x38c000,51, 0x38c100,1, 0x38c120,9, 0x38c160,9, 0x38c1a0,9, 0x38c1e0,9, 0x38c220,9, 0x38c260,9, 0x38c2a0,9, 0x38c2e0,9, 0x38c320,9, 0x38c360,9, 0x38c3a0,9, 0x38c3e0,9, 0x38c420,9, 0x38c460,9, 0x38c4a0,9, 0x38c4e0,28, 0x38c580,20, 0x38c600,20, 0x38c680,20, 0x38c700,20, 0x38c780,20, 0x38c800,20, 0x38c880,20, 0x38c900,20, 0x38c980,20, 0x38ca00,20, 0x38ca80,20, 0x38cb00,20, 0x38cb80,20, 0x38cc00,20, 0x38cc80,20, 0x38cd00,20, 0x38cd80,20, 0x38ce00,20, 0x38d000,3, 0x38d010,3, 0x38d020,3, 0x38d030,3, 0x38d040,3, 0x38d050,3, 0x38d060,3, 0x38d070,3, 0x38d080,7, 0x38d100,28, 0x38d180,28, 0x38d200,28, 0x38d280,28, 0x38d300,28, 0x38d380,28, 0x38d400,28, 0x38d480,28, 0x38d500,28, 0x38d580,28, 0x38d600,28, 0x38d680,28, 0x38d700,28, 0x38d780,28, 0x38d800,28, 0x38d880,28, 0x38d900,28, 0x38d980,28, 0x38e000,4, 0x390000,11, 0x390040,9, 0x390080,33, 0x390108,5, 0x390120,3, 0x390130,1, 0x390144,12, 0x390180,9, 0x390200,1, 0x390208,4, 0x390280,28, 0x390300,28, 0x390380,28, 0x390400,28, 0x390480,28, 0x390500,28, 0x390580,28, 0x390600,28, 0x390680,28, 0x390700,28, 0x390780,28, 0x390800,28, 0x390880,28, 0x390900,28, 0x390980,28, 0x390a00,28, 0x390b00,44, 0x390c00,68, 0x390e00,4, 0x390e20,1, 0x390e40,1, 0x390e60,7, 0x390e80,7, 0x390ea0,1, 0x390ec0,6, 0x390ee0,6, 0x390f00,6, 0x390f20,1, 0x390f40,6, 0x390f60,6, 0x390f80,6, 0x390fa0,1, 0x390fc0,6, 0x390fe0,6, 0x391000,6, 0x391020,3, 0x391030,7, 0x391050,7, 0x391070,7, 0x391090,7, 0x3910b0,7, 0x3910d0,7, 0x3910f0,7, 0x391110,7, 0x391130,7, 0x391150,7, 0x391170,7, 0x391190,7, 0x3911b0,7, 0x3911d0,7, 0x3911f0,7, 0x391210,7, 0x391230,7, 0x391250,7, 0x391270,7, 0x391290,7, 0x3912b0,7, 0x3912d0,7, 0x3912f0,7, 0x391310,7, 0x391330,7, 0x391350,7, 0x391370,7, 0x391390,7, 0x3913b0,7, 0x3913d0,7, 0x3913f0,7, 0x391410,24, 0x391480,23, 0x3914e0,7, 0x391500,23, 0x391580,7, 0x3915c0,2, 0x3915cc,3, 0x3915e0,2, 0x3915ec,3, 0x391600,2, 0x39160c,3, 0x391620,2, 0x39162c,3, 0x391640,2, 0x39164c,3, 0x391660,2, 0x39166c,3, 0x391680,2, 0x39168c,3, 0x3916a0,2, 0x3916ac,3, 0x3916c0,2, 0x3916cc,3, 0x3916e0,2, 0x3916ec,3, 0x391700,2, 0x39170c,3, 0x391720,2, 0x39172c,3, 0x391740,2, 0x39174c,3, 0x391760,2, 0x39176c,3, 0x391780,2, 0x39178c,3, 0x3917a0,2, 0x3917ac,3, 0x391800,11, 0x391840,6, 0x39185c,2, 0x392800,2, 0x392820,48, 0x392900,2, 0x392920,48, 0x392a00,131, 0x393000,33, 0x393400,27, 0x393480,1, 0x3934a0,6, 0x393800,27, 0x393880,4, 0x3938c0,25, 0x393940,6, 0x393960,2, 0x39396c,3, 0x393a00,8, 0x393a24,24, 0x393c00,27, 0x393c80,1, 0x393ca0,6, 0x393d00,27, 0x393d80,27, 0x393e00,27, 0x393e80,27, 0x393f00,27, 0x393f80,27, 0x394000,27, 0x394080,27, 0x394100,27, 0x394180,27, 0x394200,27, 0x394280,27, 0x394300,27, 0x394380,27, 0x394400,27, 0x394480,27, 0x394500,2, 0x394510,3, 0x394520,1, 0x398000,6, 0x398020,6, 0x398040,6, 0x398060,6, 0x398080,6, 0x3980a0,6, 0x3980c0,6, 0x3980e0,6, 0x398100,6, 0x398120,6, 0x398140,6, 0x398160,6, 0x398180,6, 0x3981a0,6, 0x3981c0,6, 0x3981e0,6, 0x398200,3, 0x39c000,9, 0x39c028,8, 0x39c080,3, 0x39c0a0,5, 0x39c100,9, 0x39c128,8, 0x39c180,3, 0x39c1a0,5, 0x39c200,9, 0x39c228,8, 0x39c280,3, 0x39c2a0,5, 0x39c300,9, 0x39c328,8, 0x39c380,3, 0x39c3a0,5, 0x39c400,9, 0x39c428,8, 0x39c480,6, 0x39c4a0,5, 0x39c500,9, 0x39c528,8, 0x39c580,3, 0x39c5a0,5, 0x39c600,9, 0x39c628,8, 0x39c680,3, 0x39c6a0,5, 0x39c800,9, 0x39c828,8, 0x39c880,3, 0x39c8a0,5, 0x39c900,9, 0x39c928,8, 0x39c980,3, 0x39c9a0,5, 0x39ca00,9, 0x39ca28,8, 0x39ca80,3, 0x39caa0,5, 0x39cb00,9, 0x39cb28,8, 0x39cb80,3, 0x39cba0,5, 0x39cc00,9, 0x39cc28,8, 0x39cc80,6, 0x39cca0,5, 0x39cd00,9, 0x39cd28,8, 0x39cd80,3, 0x39cda0,5, 0x39ce00,9, 0x39ce28,8, 0x39ce80,3, 0x39cea0,5, 0x39d000,9, 0x39d028,8, 0x39d080,6, 0x39d0a0,5, 0x39d100,9, 0x39d128,8, 0x39d180,6, 0x39d1a0,5, 0x39d200,9, 0x39d228,8, 0x39d280,6, 0x39d2a0,5, 0x39d300,9, 0x39d328,8, 0x39d380,6, 0x39d3a0,5, 0x39d400,9, 0x39d428,8, 0x39d480,6, 0x39d4a0,5, 0x39d500,9, 0x39d528,8, 0x39d580,6, 0x39d5a0,5, 0x39d600,9, 0x39d628,8, 0x39d680,6, 0x39d6a0,5, 0x39d700,9, 0x39d728,8, 0x39d780,6, 0x39d7a0,5, 0x39d800,9, 0x39d828,8, 0x39d880,6, 0x39d8a0,5, 0x39d900,9, 0x39d928,8, 0x39d980,6, 0x39d9a0,5, 0x39da00,9, 0x39da28,8, 0x39da80,6, 0x39daa0,5, 0x39db00,9, 0x39db28,8, 0x39db80,6, 0x39dba0,5, 0x39dc00,9, 0x39dc28,8, 0x39dc80,6, 0x39dca0,5, 0x39dd00,9, 0x39dd28,8, 0x39dd80,6, 0x39dda0,5, 0x39de00,9, 0x39de28,8, 0x39de80,6, 0x39dea0,5, 0x39df00,9, 0x39df28,8, 0x39df80,6, 0x39dfa0,5, 0x39e000,9, 0x39e028,8, 0x39e080,4, 0x39e0c0,13, 0x39e100,6, 0x39e120,5, 0x39e140,3, 0x3a0000,3, 0x3a0010,3, 0x3a0020,3, 0x3a0030,3, 0x3a0040,3, 0x3a0050,3, 0x3a0060,3, 0x3a0070,3, 0x3a0080,3, 0x3a0090,3, 0x3a00a0,3, 0x3a00b0,3, 0x3a00c0,3, 0x3a00d0,3, 0x3a00e0,3, 0x3a00f0,3, 0x3a0100,2, 0x3a0200,3, 0x3a0210,3, 0x3a0220,3, 0x3a0230,3, 0x3a0240,3, 0x3a0250,3, 0x3a0260,3, 0x3a0270,3, 0x3a0280,3, 0x3a0290,3, 0x3a02a0,3, 0x3a02b0,3, 0x3a02c0,3, 0x3a02d0,3, 0x3a02e0,3, 0x3a02f0,3, 0x3a0300,2, 0x3a0400,3, 0x3a0410,3, 0x3a0420,3, 0x3a0430,3, 0x3a0440,3, 0x3a0450,3, 0x3a0460,3, 0x3a0470,3, 0x3a0480,3, 0x3a0490,3, 0x3a04a0,3, 0x3a04b0,3, 0x3a04c0,3, 0x3a04d0,3, 0x3a04e0,3, 0x3a04f0,3, 0x3a0500,2, 0x3a0600,18, 0x3a0680,18, 0x3a0700,4, 0x3a1000,5, 0x3a1020,5, 0x3a1040,5, 0x3a1060,5, 0x3a1080,5, 0x3a10a0,5, 0x3a10c0,5, 0x3a10e0,5, 0x3a1100,5, 0x3a1120,5, 0x3a1140,5, 0x3a1160,5, 0x3a1180,5, 0x3a11a0,5, 0x3a11c0,5, 0x3a11e0,5, 0x3a1200,5, 0x3a1220,5, 0x3a1240,5, 0x3a1260,5, 0x3a1280,5, 0x3a12a0,5, 0x3a12c0,5, 0x3a12e0,5, 0x3a1300,5, 0x3a1320,5, 0x3a1340,5, 0x3a1360,5, 0x3a1380,5, 0x3a13a0,5, 0x3a13c0,5, 0x3a13e0,5, 0x3a1400,5, 0x3a1420,5, 0x3a1440,5, 0x3a1460,5, 0x3a1480,5, 0x3a14a0,5, 0x3a14c0,5, 0x3a14e0,5, 0x3a1500,5, 0x3a1520,5, 0x3a1540,5, 0x3a1560,5, 0x3a1580,5, 0x3a15a0,5, 0x3a15c0,5, 0x3a15e0,5, 0x3a1600,5, 0x3a1620,5, 0x3a1640,5, 0x3a1660,5, 0x3a1680,5, 0x3a16a0,5, 0x3a16c0,5, 0x3a16e0,5, 0x3a1700,5, 0x3a1720,5, 0x3a1740,5, 0x3a1760,5, 0x3a1780,5, 0x3a17a0,5, 0x3a17c0,5, 0x3a17e0,5, 0x3a1800,27, 0x3a1874,9, 0x3a18a0,6, 0x3a18c0,3, 0x3a1904,1, 0x3a190c,5, 0x3a1924,1, 0x3a192c,7, 0x3a2000,5, 0x3a2020,5, 0x3a2040,5, 0x3a2060,5, 0x3a2080,5, 0x3a20a0,5, 0x3a20c0,5, 0x3a20e0,5, 0x3a2100,5, 0x3a2120,5, 0x3a2140,5, 0x3a2160,5, 0x3a2180,5, 0x3a21a0,5, 0x3a21c0,5, 0x3a21e0,5, 0x3a2200,5, 0x3a2220,5, 0x3a2240,5, 0x3a2260,5, 0x3a2280,5, 0x3a22a0,5, 0x3a22c0,5, 0x3a22e0,5, 0x3a2300,5, 0x3a2320,5, 0x3a2340,5, 0x3a2360,5, 0x3a2380,5, 0x3a23a0,5, 0x3a23c0,5, 0x3a23e0,5, 0x3a2400,5, 0x3a2420,5, 0x3a2440,5, 0x3a2460,5, 0x3a2480,5, 0x3a24a0,5, 0x3a24c0,5, 0x3a24e0,5, 0x3a2500,5, 0x3a2520,5, 0x3a2540,5, 0x3a2560,5, 0x3a2580,5, 0x3a25a0,5, 0x3a25c0,5, 0x3a25e0,5, 0x3a2600,5, 0x3a2620,5, 0x3a2640,5, 0x3a2660,5, 0x3a2680,5, 0x3a26a0,5, 0x3a26c0,5, 0x3a26e0,5, 0x3a2700,5, 0x3a2720,5, 0x3a2740,5, 0x3a2760,5, 0x3a2780,5, 0x3a27a0,5, 0x3a27c0,5, 0x3a27e0,5, 0x3a2800,27, 0x3a2874,12, 0x3a28a8,64, 0x3a2a04,1, 0x3a2a0c,5, 0x3a2a24,1, 0x3a2a2c,7, 0x3a3000,11, 0x3a3030,9, 0x3a3080,11, 0x3a30b0,9, 0x3a3100,1, 0x3c0000,167, 0x3c02a0,7, 0x3c02c0,7, 0x3c02e0,118, 0x3c04c0,6, 0x3c04e0,6, 0x3c0500,6, 0x3c0520,6, 0x3c0540,6, 0x3c0560,6, 0x3c0580,6, 0x3c05a0,6, 0x3c05c0,6, 0x3c05e0,6, 0x3c0600,6, 0x3c0620,6, 0x3c0640,6, 0x3c0660,6, 0x3c0680,6, 0x3c06a0,5, 0x3c06c0,5, 0x3c06e0,5, 0x3c0700,5, 0x3c0720,5, 0x3c0740,5, 0x3c0760,5, 0x3c0780,5, 0x3c07a0,5, 0x3c07c0,5, 0x3c07e0,5, 0x3c0800,5, 0x3c0820,5, 0x3c0840,5, 0x3c0860,5, 0x3c0880,5, 0x3c08a0,16, 0x3c0900,13, 0x3c0940,13, 0x3c0980,13, 0x3c09c0,13, 0x3c0a00,13, 0x3c0a40,13, 0x3c0a80,13, 0x3c0ac0,13, 0x3c0b00,13, 0x3c0b40,13, 0x3c0b80,13, 0x3c0bc0,13, 0x3c0c00,13, 0x3c0c40,13, 0x3c0c80,13, 0x3c0cc0,13, 0x3c0d00,5, 0x3c0d20,5, 0x3c0d40,5, 0x3c0d60,5, 0x3c0d80,5, 0x3c0da0,5, 0x3c0dc0,5, 0x3c0de0,5, 0x3c0e00,5, 0x3c0e20,5, 0x3c0e40,5, 0x3c0e60,5, 0x3c0e80,5, 0x3c0ea0,5, 0x3c0ec0,5, 0x3c0ee0,5, 0x3c0f00,17, 0x3c1000,112, 0x3c1200,51, 0x3c1400,5, 0x3c1800,3, 0x3c1810,3, 0x3c1820,3, 0x3c1830,3, 0x3c1840,3, 0x3c1850,3, 0x3c1860,3, 0x3c1870,3, 0x3c1880,3, 0x3c1890,3, 0x3c18a0,3, 0x3c18b0,3, 0x3c18c0,3, 0x3c18d0,3, 0x3c18e0,3, 0x3c18f0,3, 0x3c1900,3, 0x3c1910,3, 0x3c1920,3, 0x3c1930,3, 0x3c1940,3, 0x3c1950,3, 0x3c1960,3, 0x3c1970,3, 0x3c1980,3, 0x3c1990,3, 0x3c19a0,3, 0x3c19b0,3, 0x3c19c0,3, 0x3c19d0,3, 0x3c19e0,3, 0x3c19f0,3, 0x3c1a00,2, 0x3c1a0c,12, 0x3c1a40,20, 0x3c1c00,20, 0x3c1c80,20, 0x3c1d00,20, 0x3c1d80,20, 0x3c1e00,20, 0x3c1e80,20, 0x3c1f00,20, 0x3c1f80,20, 0x3c2000,20, 0x3c2080,20, 0x3c2100,20, 0x3c2180,20, 0x3c2200,20, 0x3c2280,20, 0x3c2300,20, 0x3c2380,20, 0x3c2400,5, 0x3c4000,27, 0x3c4080,27, 0x3c4100,27, 0x3c4180,27, 0x3c4200,27, 0x3c4280,27, 0x3c4300,27, 0x3c4380,27, 0x3c4400,27, 0x3c4480,27, 0x3c4500,27, 0x3c4580,27, 0x3c4600,27, 0x3c4680,27, 0x3c4700,27, 0x3c4780,27, 0x3c4800,27, 0x3c4880,27, 0x3c4900,14, 0x3c4940,3, 0x3c4950,4, 0x3d0000,72, 0x3d0200,72, 0x3d0400,72, 0x3d0600,72, 0x3d0800,72, 0x3d0a00,72, 0x3d0c00,72, 0x3d0e00,72, 0x3d1000,72, 0x3d1200,72, 0x3d1400,72, 0x3d1600,72, 0x3d1800,72, 0x3d1a00,72, 0x3d1c00,72, 0x3d1e00,72, 0x3d2000,46, 0x3d2100,2, 0x3d2110,21, 0x3d2180,23, 0x3d21e0,3, 0x3d2200,46, 0x3d2300,2, 0x3d2310,21, 0x3d2380,23, 0x3d23e0,3, 0x3d2400,46, 0x3d2500,2, 0x3d2510,21, 0x3d2580,23, 0x3d25e0,3, 0x3d2600,46, 0x3d2700,2, 0x3d2710,21, 0x3d2780,23, 0x3d27e0,3, 0x3d2800,46, 0x3d2900,2, 0x3d2910,21, 0x3d2980,23, 0x3d29e0,3, 0x3d2a00,46, 0x3d2b00,2, 0x3d2b10,21, 0x3d2b80,23, 0x3d2be0,3, 0x3d2c00,46, 0x3d2d00,2, 0x3d2d10,21, 0x3d2d80,23, 0x3d2de0,3, 0x3d2e00,46, 0x3d2f00,2, 0x3d2f10,21, 0x3d2f80,23, 0x3d2fe0,3, 0x3d3000,46, 0x3d3100,2, 0x3d3110,21, 0x3d3180,23, 0x3d31e0,3, 0x3d3200,46, 0x3d3300,2, 0x3d3310,21, 0x3d3380,23, 0x3d33e0,3, 0x3d3400,46, 0x3d3500,2, 0x3d3510,21, 0x3d3580,23, 0x3d35e0,3, 0x3d3600,46, 0x3d3700,2, 0x3d3710,21, 0x3d3780,23, 0x3d37e0,3, 0x3d3800,46, 0x3d3900,2, 0x3d3910,21, 0x3d3980,23, 0x3d39e0,3, 0x3d3a00,46, 0x3d3b00,2, 0x3d3b10,21, 0x3d3b80,23, 0x3d3be0,3, 0x3d3c00,46, 0x3d3d00,2, 0x3d3d10,21, 0x3d3d80,23, 0x3d3de0,3, 0x3d3e00,46, 0x3d3f00,2, 0x3d3f10,21, 0x3d3f80,23, 0x3d3fe0,3, 0x3d4000,21, 0x3d4060,29, 0x3d40e0,29, 0x3d4160,29, 0x3d41e0,29, 0x3d4260,29, 0x3d42e0,29, 0x3d4360,29, 0x3d43e0,29, 0x3d4460,29, 0x3d44e0,29, 0x3d4560,29, 0x3d45e0,29, 0x3d4660,29, 0x3d46e0,29, 0x3d4760,29, 0x3d47e0,38, 0x3d4880,30, 0x3d4900,30, 0x3d4980,30, 0x3d4a00,30, 0x3d4a80,30, 0x3d4b00,30, 0x3d4b80,30, 0x3d4c00,30, 0x3d4c80,30, 0x3d4d00,30, 0x3d4d80,30, 0x3d4e00,30, 0x3d4e80,30, 0x3d4f00,30, 0x3d4f80,30, 0x3d5000,58, 0x3d50ec,1, 0x3d50f4,2, 0x3d5100,52, 0x3d5200,44, 0x3d5300,128, 0x3d5800,5, 0x3d5820,5, 0x3d5840,5, 0x3d5860,5, 0x3d5880,5, 0x3d58a0,5, 0x3d58c0,5, 0x3d58e0,5, 0x3d5900,5, 0x3d5920,5, 0x3d5940,5, 0x3d5960,5, 0x3d5980,5, 0x3d59a0,5, 0x3d59c0,5, 0x3d59e0,5, 0x3d5a00,33, 0x3d5c00,32, 0x3d5c84,1, 0x3d5c8c,3, 0x3d5ca0,18, 0x3d5cf0,3, 0x3d5d00,3, 0x3d5d10,3, 0x3d5d20,3, 0x3d5d30,3, 0x3d5d40,3, 0x3d5d50,3, 0x3d5d60,3, 0x3d5d70,3, 0x3d5d80,3, 0x3d5d90,3, 0x3d5da0,3, 0x3d5db0,3, 0x3d5dc0,3, 0x3d5dd0,3, 0x3d5de0,3, 0x3d5df0,55, 0x3d5ed0,3, 0x3d5ee0,3, 0x3d5ef0,3, 0x3d5f00,3, 0x3d5f10,3, 0x3d5f20,3, 0x3d5f30,3, 0x3d5f40,3, 0x3d5f50,3, 0x3d5f60,3, 0x3d5f70,3, 0x3d5f80,3, 0x3d5f90,3, 0x3d5fa0,3, 0x3d5fb0,3, 0x3d6000,104, 0x3d6200,26, 0x3d6280,26, 0x3d6300,26, 0x3d6380,26, 0x3d6400,26, 0x3d6480,26, 0x3d6500,26, 0x3d6580,26, 0x3d6600,26, 0x3d6680,26, 0x3d6700,26, 0x3d6780,26, 0x3d6800,26, 0x3d6880,26, 0x3d6900,26, 0x3d6980,26, 0x3d6a00,8, 0x3d6a80,8, 0x3d6aa4,8, 0x3d6b00,8, 0x3d6b24,8, 0x3d6b80,8, 0x3d6ba4,8, 0x3d6c00,8, 0x3d6c24,8, 0x3d6c80,8, 0x3d6ca4,8, 0x3d6d00,8, 0x3d6d24,8, 0x3d6d80,8, 0x3d6da4,8, 0x3d6e00,8, 0x3d6e24,8, 0x3d6e80,8, 0x3d6ea4,8, 0x3d6f00,8, 0x3d6f24,8, 0x3d6f80,8, 0x3d6fa4,8, 0x3d7000,8, 0x3d7024,8, 0x3d7080,8, 0x3d70a4,8, 0x3d7100,8, 0x3d7124,8, 0x3d7180,8, 0x3d71a4,8, 0x3d7200,8, 0x3d7224,8, 0x3d7280,4, 0x3d7294,44, 0x3d7400,5, 0x3d7420,5, 0x3d7440,5, 0x3d7460,5, 0x3d7480,5, 0x3d74a0,5, 0x3d74c0,5, 0x3d74e0,5, 0x3d7500,5, 0x3d7520,5, 0x3d7540,5, 0x3d7560,5, 0x3d7580,5, 0x3d75a0,5, 0x3d75c0,5, 0x3d75e0,5, 0x3d7600,33, 0x3d7800,140, 0x3d8000,20, 0x3d8080,16, 0x3d8100,28, 0x3d8180,28, 0x3d8200,8, 0x3d8280,20, 0x3d8300,20, 0x3d8380,1, 0x3d8400,20, 0x3d8480,16, 0x3d8500,28, 0x3d8580,28, 0x3d8600,8, 0x3d8680,20, 0x3d8700,20, 0x3d8780,1, 0x3d8800,20, 0x3d8880,16, 0x3d8900,28, 0x3d8980,28, 0x3d8a00,8, 0x3d8a80,20, 0x3d8b00,20, 0x3d8b80,1, 0x3d8c00,20, 0x3d8c80,16, 0x3d8d00,28, 0x3d8d80,28, 0x3d8e00,8, 0x3d8e80,20, 0x3d8f00,20, 0x3d8f80,1, 0x3d9000,20, 0x3d9080,16, 0x3d9100,28, 0x3d9180,28, 0x3d9200,8, 0x3d9280,20, 0x3d9300,20, 0x3d9380,1, 0x3d9400,20, 0x3d9480,16, 0x3d9500,28, 0x3d9580,28, 0x3d9600,8, 0x3d9680,20, 0x3d9700,20, 0x3d9780,1, 0x3d9800,20, 0x3d9880,16, 0x3d9900,28, 0x3d9980,28, 0x3d9a00,8, 0x3d9a80,20, 0x3d9b00,20, 0x3d9b80,1, 0x3d9c00,20, 0x3d9c80,16, 0x3d9d00,28, 0x3d9d80,28, 0x3d9e00,8, 0x3d9e80,20, 0x3d9f00,20, 0x3d9f80,1, 0x3da000,20, 0x3da080,16, 0x3da100,28, 0x3da180,28, 0x3da200,8, 0x3da280,20, 0x3da300,20, 0x3da380,1, 0x3da400,20, 0x3da480,16, 0x3da500,28, 0x3da580,28, 0x3da600,8, 0x3da680,20, 0x3da700,20, 0x3da780,1, 0x3da800,20, 0x3da880,16, 0x3da900,28, 0x3da980,28, 0x3daa00,8, 0x3daa80,20, 0x3dab00,20, 0x3dab80,1, 0x3dac00,20, 0x3dac80,16, 0x3dad00,28, 0x3dad80,28, 0x3dae00,8, 0x3dae80,20, 0x3daf00,20, 0x3daf80,1, 0x3db000,20, 0x3db080,16, 0x3db100,28, 0x3db180,28, 0x3db200,8, 0x3db280,20, 0x3db300,20, 0x3db380,1, 0x3db400,20, 0x3db480,16, 0x3db500,28, 0x3db580,28, 0x3db600,8, 0x3db680,20, 0x3db700,20, 0x3db780,1, 0x3db800,20, 0x3db880,16, 0x3db900,28, 0x3db980,28, 0x3dba00,8, 0x3dba80,20, 0x3dbb00,20, 0x3dbb80,1, 0x3dbc00,20, 0x3dbc80,16, 0x3dbd00,28, 0x3dbd80,28, 0x3dbe00,8, 0x3dbe80,20, 0x3dbf00,20, 0x3dbf80,1, 0x3dc000,128, 0x3dc204,9, 0x3dc400,80, 0x3dc544,44, 0x3dc600,12, 0x3dc644,1, 0x3dc654,8, 0x3dc680,7, 0x3dc6a0,2, 0x3dc6ac,2, 0x3dc6c0,28, 0x3dc770,1, 0x3dc800,11, 0x3dc840,11, 0x3dc880,11, 0x3dc8c0,11, 0x3dc900,11, 0x3dc940,11, 0x3dc980,11, 0x3dc9c0,11, 0x3dca00,11, 0x3dca40,11, 0x3dca80,11, 0x3dcac0,11, 0x3dcb00,11, 0x3dcb40,11, 0x3dcb80,11, 0x3dcbc0,11, 0x3dd000,30, 0x3dd080,3, 0x3dd090,18, 0x3dd100,30, 0x3dd180,3, 0x3dd190,18, 0x3dd200,30, 0x3dd280,3, 0x3dd290,18, 0x3dd300,30, 0x3dd380,3, 0x3dd390,18, 0x3dd400,30, 0x3dd480,3, 0x3dd490,18, 0x3dd500,30, 0x3dd580,3, 0x3dd590,18, 0x3dd600,30, 0x3dd680,3, 0x3dd690,18, 0x3dd700,30, 0x3dd780,3, 0x3dd790,18, 0x3dd800,30, 0x3dd880,3, 0x3dd890,18, 0x3dd900,30, 0x3dd980,3, 0x3dd990,18, 0x3dda00,30, 0x3dda80,3, 0x3dda90,18, 0x3ddb00,30, 0x3ddb80,3, 0x3ddb90,18, 0x3ddc00,30, 0x3ddc80,3, 0x3ddc90,18, 0x3ddd00,30, 0x3ddd80,3, 0x3ddd90,18, 0x3dde00,30, 0x3dde80,3, 0x3dde90,18, 0x3ddf00,30, 0x3ddf80,3, 0x3ddf90,18, 0x3de004,1, 0x3de010,4, 0x3de040,28, 0x3de100,11, 0x3de140,11, 0x3de180,11, 0x3de1c0,11, 0x3de200,11, 0x3de240,11, 0x3de280,11, 0x3de2c0,11, 0x3de300,11, 0x3de340,11, 0x3de380,11, 0x3de3c0,11, 0x3de400,11, 0x3de440,11, 0x3de480,11, 0x3de4c0,11, 0x3de500,44, 0x3de5c0,3, 0x3de800,18, 0x3de880,18, 0x3de900,18, 0x3de980,18, 0x3dea00,18, 0x3dea80,18, 0x3deb00,18, 0x3deb80,18, 0x3dec00,18, 0x3dec80,18, 0x3ded00,18, 0x3ded80,18, 0x3dee00,18, 0x3dee80,18, 0x3def00,18, 0x3def80,18, 0x3df000,18, 0x3df080,18, 0x3df100,18, 0x3df180,18, 0x3df200,18, 0x3df280,18, 0x3df300,18, 0x3df380,18, 0x3df400,18, 0x3df480,18, 0x3df500,18, 0x3df580,18, 0x3df600,18, 0x3df680,18, 0x3df700,18, 0x3df780,18, 0x3df800,34, 0x3df8a0,8, 0x3e0000,1, 0x3e1000,994, 0x3e1f8c,6, 0x3e1fb0,1, 0x3e1fc8,13, 0x3e2000,161, 0x3e3000,994, 0x3e3f8c,6, 0x3e3fb0,1, 0x3e3fc8,13, 0x3e4000,994, 0x3e4f8c,6, 0x3e4fb0,1, 0x3e4fc8,13, 0x3e5000,994, 0x3e5f8c,6, 0x3e5fb0,1, 0x3e5fc8,13, 0x3e6000,994, 0x3e6f8c,6, 0x3e6fb0,1, 0x3e6fc8,13, 0x3e7000,994, 0x3e7f8c,6, 0x3e7fb0,1, 0x3e7fc8,13, 0x3e8000,994, 0x3e8f8c,6, 0x3e8fb0,1, 0x3e8fc8,13, 0x3e9000,994, 0x3e9f8c,6, 0x3e9fb0,1, 0x3e9fc8,13, 0x3ea000,994, 0x3eaf8c,6, 0x3eafb0,1, 0x3eafc8,13, 0x3eb000,994, 0x3ebf8c,6, 0x3ebfb0,1, 0x3ebfc8,13, 0x3ec000,994, 0x3ecf8c,6, 0x3ecfb0,1, 0x3ecfc8,13, 0x3ed000,994, 0x3edf8c,6, 0x3edfb0,1, 0x3edfc8,13, 0x3ee000,994, 0x3eef8c,6, 0x3eefb0,1, 0x3eefc8,13, 0x3ef000,994, 0x3eff8c,6, 0x3effb0,1, 0x3effc8,13, 0x3f0000,994, 0x3f0f8c,6, 0x3f0fb0,1, 0x3f0fc8,13, 0x3f1000,994, 0x3f1f8c,6, 0x3f1fb0,1, 0x3f1fc8,13, 0x3f2000,994, 0x3f2f8c,6, 0x3f2fb0,1, 0x3f2fc8,13, 0x3f3000,161, 0x3f4000,161, 0x3f5000,161, 0x3f6000,161, 0x3f8000,13, 0x3f8040,14, 0x3f8080,20, 0x3f8104,1, 0x3f810c,3, 0x3f8200,13, 0x3f8240,14, 0x3f8280,20, 0x3f8304,1, 0x3f830c,3, 0x3f8400,13, 0x3f8440,14, 0x3f8480,20, 0x3f8504,1, 0x3f850c,3, 0x3f8600,13, 0x3f8640,14, 0x3f8680,20, 0x3f8704,1, 0x3f870c,3, 0x3f8800,13, 0x3f8840,14, 0x3f8880,20, 0x3f8904,1, 0x3f890c,3, 0x3f8a00,13, 0x3f8a40,14, 0x3f8a80,20, 0x3f8b04,1, 0x3f8b0c,3, 0x3f8c00,13, 0x3f8c40,14, 0x3f8c80,20, 0x3f8d04,1, 0x3f8d0c,3, 0x3f8e00,13, 0x3f8e40,14, 0x3f8e80,20, 0x3f8f04,1, 0x3f8f0c,3, 0x3f9000,13, 0x3f9040,14, 0x3f9080,20, 0x3f9104,1, 0x3f910c,3, 0x3f9200,13, 0x3f9240,14, 0x3f9280,20, 0x3f9304,1, 0x3f930c,3, 0x3f9400,13, 0x3f9440,14, 0x3f9480,20, 0x3f9504,1, 0x3f950c,3, 0x3f9600,13, 0x3f9640,14, 0x3f9680,20, 0x3f9704,1, 0x3f970c,3, 0x3f9800,13, 0x3f9840,14, 0x3f9880,20, 0x3f9904,1, 0x3f990c,3, 0x3f9a00,13, 0x3f9a40,14, 0x3f9a80,20, 0x3f9b04,1, 0x3f9b0c,3, 0x3f9c00,13, 0x3f9c40,14, 0x3f9c80,20, 0x3f9d04,1, 0x3f9d0c,3, 0x3f9e00,13, 0x3f9e40,14, 0x3f9e80,20, 0x3f9f04,1, 0x3f9f0c,3, 0x3fa000,13, 0x3fa040,14, 0x3fa080,20, 0x3fa104,1, 0x3fa10c,3, 0x3fa200,17, 0x3fa250,2, 0x3fa260,5, 0x3fa280,2, 0x3fc000,1, 0x3fc014,1, 0x3fc01c,10, 0x3fc060,9, 0x3fc094,1, 0x3fc09c,10, 0x3fc0e0,9, 0x3fc114,1, 0x3fc11c,10, 0x3fc160,9, 0x3fc194,1, 0x3fc19c,10, 0x3fc1e0,9, 0x3fc214,1, 0x3fc21c,10, 0x3fc260,15, 0x3fc400,30, 0x3fc480,9, 0x3fc4c0,12, 0x3fc500,1, 0x3fc520,5, 0x3fc540,1, 0x580000,3, 0x580080,3, 0x580090,3, 0x5800a0,3, 0x5800b0,3, 0x5800c0,3, 0x5800d0,3, 0x5800e0,3, 0x5800f0,3, 0x580100,3, 0x580110,3, 0x580120,3, 0x580130,3, 0x580140,3, 0x580150,3, 0x580160,3, 0x580170,3, 0x580180,1, 0x580188,10, 0x581000,2, 0x581040,38, 0x581100,9, 0x581140,2, 0x581180,12, 0x5811c0,11, 0x581200,11, 0x581240,11, 0x581280,11, 0x5812c0,12, 0x581300,11, 0x581340,11, 0x581380,11, 0x5813c0,11, 0x581400,11, 0x581440,11, 0x581480,11, 0x5814c0,11, 0x581500,11, 0x581540,11, 0x581580,11, 0x5815c0,11, 0x581600,11, 0x581640,11, 0x581680,11, 0x5816c0,3, 0x581704,1, 0x58171c,14, 0x581760,9, 0x5817c4,1, 0x5817d4,6, 0x581800,3, 0x581840,11, 0x581880,11, 0x5818c0,11, 0x581900,1, 0x581940,11, 0x582000,4, 0x582080,71, 0x5821a0,9, 0x5821c8,55, 0x5822c4,1, 0x5822d0,9, 0x582300,77, 0x582440,1, 0x582484,1, 0x582494,6, 0x5824c0,2, 0x5824e0,8, 0x583000,1, 0x583008,110, 0x583200,38, 0x583300,38, 0x583400,36, 0x583500,4, 0x583600,36, 0x583700,38, 0x583800,36, 0x583900,38, 0x583a00,38, 0x583b00,38, 0x583c00,1, 0x583c10,5, 0x583c30,5, 0x583c50,5, 0x583c70,4, 0x584004,56, 0x5840e8,2, 0x584100,3, 0x584110,1, 0x584124,3, 0x584140,1, 0x584148,4, 0x584180,48, 0x584800,2, 0x584900,38, 0x584a00,38, 0x584b00,38, 0x584c00,38, 0x584d00,52, 0x584e00,4, 0x584e20,6, 0x584e40,5, 0x585000,7, 0x585020,4, 0x585040,6, 0x585060,6, 0x585100,34, 0x585200,1, 0x585240,13, 0x585300,2, 0x585384,1, 0x585398,28, 0x585444,1, 0x58544c,13, 0x585600,4, 0x585704,1, 0x58576c,37, 0x585804,1, 0x5858e4,79, 0x585b00,1, 0x585b08,2, 0x585c00,37, 0x585d00,9, 0x585d40,1, 0x585d48,2, 0x585d60,2, 0x585d80,5, 0x585da0,5, 0x588004,1, 0x588020,11, 0x588404,1, 0x588420,11, 0x588484,1, 0x5884a0,11, 0x588504,1, 0x588520,11, 0x588584,1, 0x5885a0,11, 0x588604,1, 0x588620,11, 0x588684,1, 0x5886a0,11, 0x588704,1, 0x588720,11, 0x588784,1, 0x5887a0,11, 0x588804,1, 0x588820,11, 0x588884,1, 0x5888a0,11, 0x588904,1, 0x588920,11, 0x588984,1, 0x5889a0,11, 0x588a04,1, 0x588a20,11, 0x588a84,1, 0x588aa0,11, 0x588b04,1, 0x588b20,11, 0x588b84,1, 0x588ba0,11, 0x588c00,13, 0x588c40,12, 0x588c80,12, 0x588cc0,5, 0x588cd8,8, 0x588cfc,5, 0x588e00,12, 0x588e40,1, 0x588f00,12, 0x588f40,12, 0x588f80,2, 0x589000,12, 0x589040,12, 0x589080,2, 0x589100,6, 0x589200,38, 0x589300,38, 0x589400,38, 0x589800,7, 0x589820,7, 0x589904,1, 0x58996c,38, 0x589c00,7, 0x589c20,7, 0x589d04,1, 0x589d6c,38, 0x58a000,7, 0x58a020,7, 0x58a104,1, 0x58a16c,38, 0x58a400,7, 0x58a420,7, 0x58a504,1, 0x58a56c,38, 0x58a800,7, 0x58a820,7, 0x58a904,1, 0x58a96c,38, 0x58ac00,7, 0x58ac20,7, 0x58ad04,1, 0x58ad6c,38, 0x58b000,7, 0x58b020,7, 0x58b104,1, 0x58b16c,38, 0x58b400,7, 0x58b420,7, 0x58b504,1, 0x58b56c,38, 0x58c000,1, 0x58c020,16, 0x58c084,1, 0x58c0a0,9, 0x58c0e0,1, 0x58c100,16, 0x58c144,9, 0x58c200,8, 0x58c224,35, 0x58c304,2, 0x58c310,12, 0x58c400,7, 0x58c420,6, 0x58c440,1, 0x58c448,6, 0x58c800,7, 0x58c820,6, 0x58c840,1, 0x58c848,6, 0x58c880,7, 0x58c8a0,6, 0x58c8c0,1, 0x58c8c8,6, 0x58c900,7, 0x58c920,6, 0x58c940,1, 0x58c948,6, 0x58c980,7, 0x58c9a0,6, 0x58c9c0,1, 0x58c9c8,6, 0x58ca00,7, 0x58ca20,6, 0x58ca40,1, 0x58ca48,6, 0x58ca80,7, 0x58caa0,6, 0x58cac0,1, 0x58cac8,6, 0x58cb00,7, 0x58cb20,6, 0x58cb40,1, 0x58cb48,6, 0x58cb80,7, 0x58cba0,6, 0x58cbc0,1, 0x58cbc8,6, 0x58cc00,7, 0x58cc20,6, 0x58cc40,1, 0x58cc48,6, 0x58cc80,7, 0x58cca0,6, 0x58ccc0,1, 0x58ccc8,6, 0x58cd00,7, 0x58cd20,6, 0x58cd40,1, 0x58cd48,6, 0x58cd80,7, 0x58cda0,6, 0x58cdc0,1, 0x58cdc8,6, 0x58ce00,7, 0x58ce20,6, 0x58ce40,1, 0x58ce48,6, 0x58ce80,7, 0x58cea0,6, 0x58cec0,1, 0x58cec8,6, 0x58cf00,7, 0x58cf20,6, 0x58cf40,1, 0x58cf48,6, 0x58cf80,7, 0x58cfa0,6, 0x58cfc0,1, 0x58cfc8,6, 0x590000,15, 0x590040,3, 0x590050,5, 0x590080,16, 0x590100,20, 0x590180,20, 0x590200,20, 0x590400,16, 0x590480,20, 0x590500,20, 0x590580,20, 0x590600,5, 0x590620,1, 0x590640,7, 0x590660,24, 0x590800,276, 0x591000,1, 0x591020,7, 0x591040,8, 0x591080,10, 0x5910c0,9, 0x591100,10, 0x591200,2, 0x591304,1, 0x591368,43, 0x591500,7, 0x591604,7, 0x591644,1, 0x591664,10, 0x591700,53, 0x591800,96, 0x591a00,96, 0x591c00,4, 0x591d00,132, 0x591f18,1, 0x591f20,1, 0x591f28,2, 0x591f44,1, 0x591f4c,14, 0x591fa4,1, 0x591fb4,11, 0x592000,3, 0x592010,3, 0x592020,3, 0x592030,3, 0x592040,3, 0x592050,3, 0x592060,3, 0x592070,3, 0x592080,3, 0x592090,3, 0x5920a0,3, 0x5920b0,3, 0x5920c0,3, 0x5920d0,3, 0x5920e0,3, 0x5920f0,3, 0x592100,3, 0x592110,3, 0x592120,3, 0x592130,3, 0x592140,3, 0x592150,3, 0x592160,3, 0x592170,3, 0x592180,3, 0x592190,3, 0x5921a0,3, 0x5921b0,3, 0x5921c0,3, 0x5921d0,3, 0x5921e0,3, 0x5921f0,3, 0x592200,3, 0x592210,3, 0x592220,3, 0x592230,3, 0x592240,3, 0x592250,3, 0x592260,3, 0x592270,3, 0x592280,3, 0x592290,3, 0x5922a0,3, 0x5922b0,3, 0x5922c0,3, 0x5922d0,3, 0x5922e0,3, 0x5922f0,3, 0x592300,3, 0x592310,3, 0x592320,3, 0x592330,3, 0x592340,3, 0x592350,3, 0x592360,3, 0x592370,3, 0x592380,3, 0x592390,3, 0x5923a0,3, 0x5923b0,3, 0x5923c0,3, 0x5923d0,3, 0x5923e0,3, 0x5923f0,3, 0x592400,192, 0x592704,1, 0x59270c,8, 0x593000,5, 0x593020,5, 0x593040,5, 0x593060,5, 0x593080,5, 0x5930a0,5, 0x5930c0,5, 0x5930e0,5, 0x593100,5, 0x593120,5, 0x593140,5, 0x593160,5, 0x593180,5, 0x5931a0,5, 0x5931c0,5, 0x5931e0,5, 0x593200,5, 0x593220,5, 0x593240,5, 0x593260,5, 0x593280,5, 0x5932a0,5, 0x5932c0,5, 0x5932e0,5, 0x593300,5, 0x593320,5, 0x593340,5, 0x593360,5, 0x593380,5, 0x5933a0,5, 0x5933c0,5, 0x5933e0,5, 0x593400,5, 0x593420,5, 0x593440,5, 0x593460,5, 0x593480,5, 0x5934a0,5, 0x5934c0,5, 0x5934e0,5, 0x593500,5, 0x593520,5, 0x593540,5, 0x593560,5, 0x593580,5, 0x5935a0,5, 0x5935c0,5, 0x5935e0,5, 0x593600,5, 0x593620,5, 0x593640,5, 0x593660,5, 0x593680,5, 0x5936a0,5, 0x5936c0,5, 0x5936e0,5, 0x593700,5, 0x593720,5, 0x593740,5, 0x593760,5, 0x593780,5, 0x5937a0,5, 0x5937c0,5, 0x5937e0,5, 0x593800,131, 0x593a10,3, 0x593a20,3, 0x593a30,3, 0x593a40,3, 0x593a50,3, 0x593a60,3, 0x593a70,3, 0x593a80,3, 0x593a90,3, 0x593aa0,3, 0x593ab0,3, 0x593ac0,3, 0x593ad0,3, 0x593ae0,3, 0x593af0,3, 0x593b00,3, 0x593b10,3, 0x593b20,3, 0x593b30,3, 0x593b40,3, 0x593b50,3, 0x593b60,3, 0x593b70,3, 0x593b80,3, 0x593b90,3, 0x593ba0,3, 0x593bb0,3, 0x593bc0,3, 0x593bd0,3, 0x593be0,3, 0x593bf0,3, 0x593c00,3, 0x593c10,3, 0x593c20,3, 0x593c30,3, 0x593c40,3, 0x593c50,3, 0x593c60,3, 0x593c70,3, 0x593c80,3, 0x593c90,3, 0x593ca0,3, 0x593cb0,3, 0x593cc0,3, 0x593cd0,3, 0x593ce0,3, 0x593cf0,3, 0x593d00,3, 0x593d10,3, 0x593d20,3, 0x593d30,3, 0x593d40,3, 0x593d50,3, 0x593d60,3, 0x593d70,3, 0x593d80,3, 0x593d90,3, 0x593da0,3, 0x593db0,3, 0x593dc0,3, 0x593dd0,3, 0x593de0,3, 0x593df0,3, 0x593e04,1, 0x593e24,10, 0x594000,2, 0x598000,2, 0x598080,5, 0x5980a0,5, 0x5980c0,5, 0x5980e0,5, 0x598100,5, 0x598120,5, 0x598140,5, 0x598160,5, 0x598200,5, 0x598220,5, 0x598240,5, 0x598260,5, 0x598280,5, 0x5982a0,5, 0x5982c0,5, 0x5982e0,5, 0x598300,5, 0x598320,5, 0x598400,5, 0x598420,5, 0x598440,5, 0x598460,5, 0x598480,5, 0x5984a0,5, 0x5984c0,5, 0x5984e0,5, 0x598500,5, 0x598520,5, 0x598800,3, 0x598820,17, 0x598904,45, 0x598a00,128, 0x598c04,1, 0x598c14,11, 0x599000,3, 0x599010,3, 0x599020,3, 0x599030,3, 0x599040,3, 0x599050,3, 0x599060,3, 0x599070,3, 0x599080,3, 0x599090,3, 0x5990a0,3, 0x5990b0,3, 0x5990c0,3, 0x5990d0,3, 0x5990e0,3, 0x5990f0,3, 0x599100,3, 0x599110,3, 0x599120,3, 0x599130,3, 0x599140,3, 0x599150,3, 0x599160,3, 0x599170,3, 0x599180,3, 0x599190,3, 0x5991a0,3, 0x5991b0,3, 0x5991c0,3, 0x5991d0,3, 0x5991e0,3, 0x5991f0,3, 0x599200,3, 0x599210,3, 0x599220,3, 0x599230,3, 0x599240,3, 0x599250,3, 0x599260,3, 0x599270,3, 0x599280,3, 0x599290,3, 0x5992a0,3, 0x5992b0,3, 0x5992c0,3, 0x5992d0,3, 0x5992e0,3, 0x5992f0,3, 0x599300,3, 0x599310,3, 0x599320,3, 0x599330,3, 0x599340,3, 0x599350,3, 0x599360,3, 0x599370,3, 0x599380,3, 0x599390,3, 0x5993a0,3, 0x5993b0,3, 0x5993c0,3, 0x5993d0,3, 0x5993e0,3, 0x5993f0,3, 0x599400,192, 0x599704,1, 0x59970c,10, 0x599800,1, 0x59980c,2, 0x59a000,8, 0x59a100,128, 0x59a400,116, 0x59a600,20, 0x59a680,39, 0x59a740,4, 0x59a760,6, 0x59a780,4, 0x59a7a0,6, 0x59a7c0,4, 0x59a7e0,6, 0x59a800,4, 0x59a820,6, 0x59a840,4, 0x59a860,6, 0x59a880,4, 0x59a8a0,6, 0x59a8c0,4, 0x59a8e0,6, 0x59a900,4, 0x59a920,7, 0x59a940,4, 0x59a960,7, 0x59a980,15, 0x59a9c0,7, 0x59a9e0,46, 0x59aaa0,6, 0x59aac0,6, 0x59aae0,14, 0x59ab40,4, 0x59ab60,7, 0x59ab80,2, 0x59ab8c,2, 0x59abc0,4, 0x59abe0,5, 0x59ac00,7, 0x59ac20,1, 0x59ac30,8, 0x59ac60,17, 0x59b700,11, 0x59c000,5, 0x59c020,5, 0x59c040,5, 0x59c060,5, 0x59c080,5, 0x59c0a0,5, 0x59c0c0,5, 0x59c0e0,5, 0x59c100,5, 0x59c120,5, 0x59c140,5, 0x59c160,5, 0x59c180,5, 0x59c1a0,5, 0x59c1c0,5, 0x59c1e0,5, 0x59c200,5, 0x59c220,5, 0x59c240,5, 0x59c260,5, 0x59c280,5, 0x59c2a0,5, 0x59c2c0,5, 0x59c2e0,5, 0x59c300,5, 0x59c320,5, 0x59c340,5, 0x59c360,5, 0x59c380,5, 0x59c3a0,5, 0x59c3c0,5, 0x59c3e0,5, 0x59c400,5, 0x59c420,5, 0x59c440,5, 0x59c460,5, 0x59c480,5, 0x59c4a0,5, 0x59c4c0,5, 0x59c4e0,5, 0x59c500,5, 0x59c520,5, 0x59c540,5, 0x59c560,5, 0x59c580,5, 0x59c5a0,5, 0x59c5c0,5, 0x59c5e0,5, 0x59c600,5, 0x59c620,5, 0x59c640,5, 0x59c660,5, 0x59c680,5, 0x59c6a0,5, 0x59c6c0,5, 0x59c6e0,5, 0x59c700,5, 0x59c720,5, 0x59c740,5, 0x59c760,5, 0x59c780,5, 0x59c7a0,5, 0x59c7c0,5, 0x59c7e0,5, 0x59c800,27, 0x59c874,12, 0x59c8a8,2, 0x59c904,1, 0x59c90c,5, 0x59c924,1, 0x59c92c,7, 0x59d000,5, 0x59d020,5, 0x59d040,5, 0x59d060,5, 0x59d080,5, 0x59d0a0,5, 0x59d0c0,5, 0x59d0e0,5, 0x59d100,5, 0x59d120,5, 0x59d140,5, 0x59d160,5, 0x59d180,5, 0x59d1a0,5, 0x59d1c0,5, 0x59d1e0,5, 0x59d200,5, 0x59d220,5, 0x59d240,5, 0x59d260,5, 0x59d280,5, 0x59d2a0,5, 0x59d2c0,5, 0x59d2e0,5, 0x59d300,5, 0x59d320,5, 0x59d340,5, 0x59d360,5, 0x59d380,5, 0x59d3a0,5, 0x59d3c0,5, 0x59d3e0,5, 0x59d400,5, 0x59d420,5, 0x59d440,5, 0x59d460,5, 0x59d480,5, 0x59d4a0,5, 0x59d4c0,5, 0x59d4e0,5, 0x59d500,5, 0x59d520,5, 0x59d540,5, 0x59d560,5, 0x59d580,5, 0x59d5a0,5, 0x59d5c0,5, 0x59d5e0,5, 0x59d600,5, 0x59d620,5, 0x59d640,5, 0x59d660,5, 0x59d680,5, 0x59d6a0,5, 0x59d6c0,5, 0x59d6e0,5, 0x59d700,5, 0x59d720,5, 0x59d740,5, 0x59d760,5, 0x59d780,5, 0x59d7a0,5, 0x59d7c0,5, 0x59d7e0,5, 0x59d800,27, 0x59d874,9, 0x59d904,1, 0x59d90c,5, 0x59d924,1, 0x59d92c,7, 0x59e000,6, 0x59e020,1, 0x59e040,6, 0x59e060,1, 0x59e400,27, 0x59e480,4, 0x59e4c0,25, 0x59e540,6, 0x59e560,2, 0x59e56c,3, 0x59e600,8, 0x59e624,47, 0x59e800,27, 0x59e880,1, 0x59e8a0,6, 0x59e900,27, 0x59e980,1, 0x59e9a0,6, 0x59ea00,27, 0x59ea80,1, 0x59eaa0,6, 0x59eb00,27, 0x59eb80,1, 0x59eba0,6, 0x59ec00,27, 0x59ec80,1, 0x59eca0,6, 0x59ed00,27, 0x59ed80,1, 0x59eda0,6, 0x59ee00,27, 0x59ee80,1, 0x59eea0,6, 0x59ef00,27, 0x59ef80,1, 0x59efa0,6, 0x59f000,27, 0x59f080,1, 0x59f0a0,6, 0x59f100,1, 0x600000,22, 0x600060,6, 0x600080,6, 0x6000a0,6, 0x6000c0,6, 0x600400,6, 0x600424,1, 0x600434,5, 0x600600,128, 0x600804,1, 0x600828,86, 0x600984,1, 0x600c00,1, 0x600c80,1, 0x600c90,2, 0x600d00,20, 0x600d80,1, 0x600da0,3, 0x600e00,2, 0x600e10,4, 0x600e80,5, 0x600ea0,6, 0x700000,36, 0x700800,10, 0x700880,3, 0x700900,2, 0x700910,4, 0x700980,1, 0x701000,20, 0x701800,1, 0x702000,36, 0x702800,10, 0x702880,3, 0x702900,2, 0x702910,4, 0x702980,1, 0x703000,20, 0x703800,1, 0x704000,36, 0x704800,10, 0x704880,3, 0x704900,2, 0x704910,4, 0x704980,1, 0x705000,20, 0x705800,10, 0x705880,3, 0x705900,2, 0x705910,4, 0x705980,1, 0x706000,68, 0x706800,10, 0x706880,3, 0x706900,2, 0x706910,4, 0x706980,1, 0x707000,20, 0x707800,10, 0x707880,3, 0x707900,2, 0x707910,4, 0x707980,1, 0x708000,20, 0x708800,1, 0x709000,20, 0x709800,1, 0x70a000,52, 0x70a800,10, 0x70a880,3, 0x70a900,2, 0x70a910,4, 0x70a980,1, 0x70b000,20, 0x70b800,1, 0x70c000,36, 0x70c800,10, 0x70c880,3, 0x70c900,2, 0x70c910,4, 0x70c980,1, 0x70d000,36, 0x70d800,10, 0x70d880,3, 0x70d900,2, 0x70d910,4, 0x70d980,1, 0x70e000,36, 0x70e800,10, 0x70e880,3, 0x70e900,2, 0x70e910,4, 0x70e980,1, 0x70f000,36, 0x70f800,10, 0x70f880,3, 0x70f900,2, 0x70f910,4, 0x70f980,1, 0x710000,36, 0x710800,10, 0x710880,3, 0x710900,2, 0x710910,4, 0x710980,1, 0x711000,20, 0x711800,10, 0x711880,3, 0x711900,2, 0x711910,4, 0x711980,1, 0x712000,36, 0x712800,10, 0x712880,3, 0x712900,2, 0x712910,4, 0x712980,1, 0x713000,20, 0x713800,10, 0x713880,3, 0x713900,2, 0x713910,4, 0x713980,1, 0x714000,20, 0x714800,1, 0x715000,20, 0x715800,10, 0x715880,3, 0x715900,2, 0x715910,4, 0x715980,1, 0x716000,20, 0x716800,10, 0x716880,3, 0x716900,2, 0x716910,4, 0x716980,1, 0x717000,20, 0x717800,10, 0x717880,3, 0x717900,2, 0x717910,4, 0x717980,1, 0x718000,20, 0x718800,10, 0x718880,3, 0x718900,2, 0x718910,4, 0x718980,1, 0x719000,20, 0x719800,10, 0x719880,3, 0x719900,2, 0x719910,4, 0x719980,1, 0x71a000,20, 0x71a800,10, 0x71a880,3, 0x71a900,2, 0x71a910,4, 0x71a980,1, 0x71b000,20, 0x71b800,10, 0x71b880,3, 0x71b900,2, 0x71b910,4, 0x71b980,1, 0x71c000,36, 0x71c800,10, 0x71c880,3, 0x71c900,2, 0x71c910,4, 0x71c980,1, 0x71d000,36, 0x71d800,10, 0x71d880,3, 0x71d900,2, 0x71d910,4, 0x71d980,1, 0x71e000,20, 0x71e800,10, 0x71e880,3, 0x71e900,2, 0x71e910,4, 0x71e980,1, 0x71f000,20, 0x71f800,10, 0x71f880,3, 0x71f900,2, 0x71f910,4, 0x71f980,1, 0x720000,20, 0x720080,20, 0x720100,4, 0x720800,10, 0x720880,3, 0x720900,2, 0x720910,4, 0x720980,1, 0x721000,20, 0x721080,20, 0x721100,4, 0x721800,10, 0x721880,3, 0x721900,2, 0x721910,4, 0x721980,1, 0x722000,20, 0x722080,20, 0x722100,4, 0x722800,10, 0x722880,3, 0x722900,2, 0x722910,4, 0x722980,1, 0x723000,36, 0x723800,10, 0x723880,3, 0x7238a0,1, 0x723900,2, 0x723910,4, 0x723980,1, 0x724000,20, 0x724800,10, 0x724880,3, 0x724900,2, 0x724910,4, 0x724980,1, 0x725000,36, 0x725800,10, 0x725880,3, 0x725900,2, 0x725910,4, 0x725984,5, 0x7259a0,3, 0x725a00,1, 0x726000,36, 0x726800,10, 0x726880,3, 0x726900,2, 0x726910,4, 0x726980,1, 0x727000,52, 0x727800,10, 0x727880,3, 0x727900,2, 0x727910,4, 0x727980,1, 0x728000,36, 0x728800,1, 0x729000,36, 0x729800,1, 0x72a000,36, 0x72a800,1, 0x72b000,36, 0x72b800,1, 0x72c000,36, 0x72c800,1, 0x72d000,36, 0x72d800,1, 0x72e000,36, 0x72e800,1, 0x72f000,36, 0x72f800,1, 0x730000,36, 0x730800,1, 0x731000,36, 0x731800,1, 0x732000,36, 0x732800,1, 0x733000,36, 0x733800,1, 0x734000,36, 0x734800,1, 0x735000,36, 0x735800,1, 0x736000,36, 0x736800,1, 0x737000,36, 0x737800,1, 0x738000,20, 0x738800,10, 0x738880,3, 0x738900,2, 0x738910,4, 0x738980,1, 0x739000,36, 0x739800,10, 0x739880,3, 0x739900,2, 0x739910,4, 0x739980,1, 0x73a000,52, 0x73a800,10, 0x73a880,3, 0x73a900,2, 0x73a910,4, 0x73a980,1, 0x73b000,10, 0x73b080,3, 0x73b100,2, 0x73b110,4, 0x73b180,1, 0x73c000,10, 0x73c080,3, 0x73c100,2, 0x73c110,4, 0x73c180,1, 0x740000,10, 0x740080,3, 0x740100,2, 0x740110,4, 0x740800,1, 0x740810,3, 0x740820,3, 0x740830,3, 0x740840,3, 0x740850,3, 0x740860,3, 0x740870,3, 0x740880,3, 0x740890,32, 0x740940,10, 0x740980,10, 0x7409c0,10, 0x740a00,10, 0x740a40,10, 0x740a80,10, 0x740ac0,10, 0x740b00,10, 0x740b40,11, 0x740b70,2, 0x741000,1, 0x744000,10, 0x744080,3, 0x744100,2, 0x744110,4, 0x745000,1, 0x745010,3, 0x745020,3, 0x745030,3, 0x745040,3, 0x745050,3, 0x745060,3, 0x745070,3, 0x745080,3, 0x745090,3, 0x7450a0,3, 0x7450b0,3, 0x7450c0,3, 0x7450d0,3, 0x7450e0,3, 0x7450f0,3, 0x745100,3, 0x745110,64, 0x745240,10, 0x745280,10, 0x7452c0,10, 0x745300,10, 0x745340,10, 0x745380,10, 0x7453c0,10, 0x745400,10, 0x745440,10, 0x745480,10, 0x7454c0,10, 0x745500,10, 0x745540,10, 0x745580,10, 0x7455c0,10, 0x745600,10, 0x745640,19, 0x745690,3, 0x7456a0,3, 0x7456b0,3, 0x7456c0,8, 0x746000,1, 0x748000,10, 0x748080,3, 0x748100,2, 0x748110,4, 0x749000,1, 0x749010,3, 0x749020,3, 0x749030,3, 0x749040,3, 0x749050,3, 0x749060,3, 0x749070,3, 0x749080,3, 0x749090,3, 0x7490a0,3, 0x7490b0,3, 0x7490c0,3, 0x7490d0,3, 0x7490e0,3, 0x7490f0,3, 0x749100,3, 0x749110,64, 0x749240,10, 0x749280,10, 0x7492c0,10, 0x749300,10, 0x749340,10, 0x749380,10, 0x7493c0,10, 0x749400,10, 0x749440,10, 0x749480,10, 0x7494c0,10, 0x749500,10, 0x749540,10, 0x749580,10, 0x7495c0,10, 0x749600,10, 0x749640,19, 0x749690,3, 0x7496a0,3, 0x7496b0,3, 0x7496c0,8, 0x74a000,1, 0x74c000,10, 0x800000,3, 0x800010,3, 0x800020,1, 0x800040,3, 0x800050,2, 0x800060,3, 0x800070,2, 0x800800,53, 0x800900,3, 0x800910,16, 0x800a00,53, 0x800b00,3, 0x800b10,16, 0x800c00,5, 0x800c20,5, 0x800c40,18, 0x801000,6, 0x801020,4, 0x801040,16, 0x802000,20, 0x802080,15, 0x802100,20, 0x802180,15, 0x802200,23, 0x802260,7, 0x802400,15, 0x802440,3, 0x802450,3, 0x802460,24, 0x802500,15, 0x802540,3, 0x802550,3, 0x802560,24, 0x802600,15, 0x802640,3, 0x802650,3, 0x802660,24, 0x802700,15, 0x802740,3, 0x802750,3, 0x802760,24, 0x802800,4, 0x802820,16, 0x802880,10, 0x8028c0,10, 0x802900,6, 0x802920,6, 0x802940,4, 0x802980,13, 0x8029c0,13, 0x802a00,9, 0x803000,15, 0x803040,4, 0x803060,17, 0x8030c0,6, 0x8030e0,2, 0x8030ec,3, 0x803100,4, 0x803200,124, 0x803400,124, 0x803604,6, 0x803624,6, 0x803640,1, 0x803680,8, 0x8036a4,1, 0x8036c0,6, 0x8036e0,22, 0x804000,3, 0x804010,3, 0x804020,1, 0x804040,3, 0x804050,2, 0x804060,3, 0x804070,2, 0x804800,53, 0x804900,3, 0x804910,16, 0x804a00,53, 0x804b00,3, 0x804b10,16, 0x804c00,5, 0x804c20,5, 0x804c40,18, 0x805000,6, 0x805020,4, 0x805040,16, 0x806000,20, 0x806080,15, 0x806100,20, 0x806180,15, 0x806200,23, 0x806260,7, 0x806400,15, 0x806440,3, 0x806450,3, 0x806460,24, 0x806500,15, 0x806540,3, 0x806550,3, 0x806560,24, 0x806600,15, 0x806640,3, 0x806650,3, 0x806660,24, 0x806700,15, 0x806740,3, 0x806750,3, 0x806760,24, 0x806800,4, 0x806820,16, 0x806880,10, 0x8068c0,10, 0x806900,6, 0x806920,6, 0x806940,4, 0x806980,13, 0x8069c0,13, 0x806a00,9, 0x807000,15, 0x807040,4, 0x807060,17, 0x8070c0,6, 0x8070e0,2, 0x8070ec,3, 0x807100,4, 0x807200,124, 0x807400,124, 0x807604,6, 0x807624,6, 0x807640,1, 0x807680,8, 0x8076a4,1, 0x8076c0,6, 0x8076e0,22, 0x808000,92, 0x808180,28, 0x808200,7, 0x808400,11, 0x808440,11, 0x808480,21, 0x808500,21, 0x808580,4, 0x8085a0,25, 0x808800,13, 0x809000,92, 0x809180,28, 0x809200,7, 0x809400,11, 0x809440,11, 0x809480,21, 0x809500,21, 0x809580,4, 0x8095a0,25, 0x809800,13, 0x80a000,10, 0x80a040,5, 0x80a080,10, 0x80a0c0,5, 0x80a100,5, 0x80a200,11, 0x80a230,3, 0x80a240,5, 0x80a260,5, 0x80a280,32, 0x80a400,13, 0x80a440,13, 0x80a480,9, 0x80a4c0,1, 0x80a4d0,5, 0x80a4f0,21, 0x80a800,10, 0x80a840,5, 0x80a880,10, 0x80a8c0,5, 0x80a900,5, 0x80aa00,11, 0x80aa30,3, 0x80aa40,5, 0x80aa60,5, 0x80aa80,32, 0x80ac00,13, 0x80ac40,13, 0x80ac80,9, 0x80acc0,1, 0x80acd0,5, 0x80acf0,21, 0x80b000,15, 0x80b040,4, 0x80b060,17, 0x80b0c0,6, 0x80b0e0,2, 0x80b0ec,3, 0x80b100,6, 0x80b120,3, 0x80b130,3, 0x80b140,23, 0x80c000,30, 0x80c080,3, 0x80c090,18, 0x80c100,30, 0x80c180,3, 0x80c190,18, 0x80c200,30, 0x80c280,3, 0x80c290,18, 0x80c300,30, 0x80c380,3, 0x80c390,18, 0x80c400,30, 0x80c480,3, 0x80c490,18, 0x80c500,30, 0x80c580,3, 0x80c590,18, 0x80c600,30, 0x80c680,3, 0x80c690,18, 0x80c700,30, 0x80c780,3, 0x80c790,18, 0x80c800,12, 0x80c844,1, 0x80c854,8, 0x80c880,7, 0x80c8a0,2, 0x80c8ac,2, 0x80c8c0,26, 0x80c980,4, 0x80c9a0,5, 0x80c9c0,1, 0x80d000,3, 0x80d010,3, 0x80d020,3, 0x80d030,3, 0x80d040,3, 0x80d050,3, 0x80d060,3, 0x80d070,3, 0x80d080,6, 0x80d0a0,6, 0x80d0c0,6, 0x80d0e0,6, 0x80d100,6, 0x80d120,6, 0x80d140,6, 0x80d160,6, 0x80d200,68, 0x80d400,1, 0x80d804,1, 0x80d844,54, 0x80da00,11, 0x80da40,11, 0x80da80,11, 0x80dac0,11, 0x80db00,11, 0x80db40,11, 0x80db80,11, 0x80dbc0,11, 0x80dc00,28, 0x80dc80,5, 0x80dca0,2, 0x80e000,4, 0x80e020,6, 0x80e040,6, 0x80e060,14, 0x80e100,26, 0x80e180,15, 0x80e200,15, 0x80e240,4, 0x80e260,17, 0x80e2c0,6, 0x80e2e0,2, 0x80e2ec,3, 0x80e300,15, 0x80e340,4, 0x80e360,17, 0x80e3c0,6, 0x80e3e0,2, 0x80e3ec,3, 0x80e400,9, 0x820000,1, 0x821000,994, 0x821f8c,6, 0x821fb0,1, 0x821fc8,13, 0x822000,161, 0x823000,994, 0x823f8c,6, 0x823fb0,1, 0x823fc8,13, 0x824000,994, 0x824f8c,6, 0x824fb0,1, 0x824fc8,13, 0x825000,994, 0x825f8c,6, 0x825fb0,1, 0x825fc8,13, 0x826000,994, 0x826f8c,6, 0x826fb0,1, 0x826fc8,13, 0x827000,994, 0x827f8c,6, 0x827fb0,1, 0x827fc8,13, 0x828000,994, 0x828f8c,6, 0x828fb0,1, 0x828fc8,13, 0x829000,994, 0x829f8c,6, 0x829fb0,1, 0x829fc8,13, 0x82a000,994, 0x82af8c,6, 0x82afb0,1, 0x82afc8,13, 0x82b000,161, 0x82c000,13, 0x82c040,14, 0x82c080,20, 0x82c104,1, 0x82c10c,3, 0x82c200,13, 0x82c240,14, 0x82c280,20, 0x82c304,1, 0x82c30c,3, 0x82c400,13, 0x82c440,14, 0x82c480,20, 0x82c504,1, 0x82c50c,3, 0x82c600,13, 0x82c640,14, 0x82c680,20, 0x82c704,1, 0x82c70c,3, 0x82c800,13, 0x82c840,14, 0x82c880,20, 0x82c904,1, 0x82c90c,3, 0x82ca00,13, 0x82ca40,14, 0x82ca80,20, 0x82cb04,1, 0x82cb0c,3, 0x82cc00,13, 0x82cc40,14, 0x82cc80,20, 0x82cd04,1, 0x82cd0c,3, 0x82ce00,13, 0x82ce40,14, 0x82ce80,20, 0x82cf04,1, 0x82cf0c,3, 0x82d000,13, 0x82d040,14, 0x82d080,20, 0x82d104,1, 0x82d10c,3, 0x82d200,17, 0x82d250,2, 0x82d260,4, 0x82e000,1, 0x82e014,1, 0x82e01c,10, 0x82e060,9, 0x82e094,1, 0x82e09c,10, 0x82e0e0,15, 0x82e200,12, 0x82e240,9, 0x82e280,6, 0x880000,582, 0x881000,2, 0x881040,9, 0x881080,7, 0x882000,582, 0x883000,8, 0x883024,6, 0x883040,8, 0x883080,7, 0x8830a0,7, 0x8830c0,7, 0x8830e0,7, 0x883100,13, 0x883140,12, 0x884000,582, 0x885000,2, 0x885040,9, 0x885080,7, 0x886000,582, 0x887000,8, 0x887024,6, 0x887040,8, 0x887080,7, 0x8870a0,7, 0x8870c0,7, 0x8870e0,7, 0x887100,13, 0x887140,12, 0x888000,27, 0x888080,4, 0x8880c0,25, 0x888140,6, 0x888160,2, 0x88816c,3, 0x888180,8, 0x8881a4,12, 0x888200,1, 0x890000,436, 0x890800,82, 0x890960,6, 0x890a00,41, 0x890b00,2, 0x890b20,19, 0x890c00,1, 0x890d00,44, 0x890e00,1, 0x891000,436, 0x891800,82, 0x891960,6, 0x891a00,41, 0x891b00,2, 0x891b20,19, 0x891c00,1, 0x891d00,44, 0x891e00,1, 0x892000,7, 0x892080,6, 0x8920a0,6, 0x8920c0,1, 0x892100,4, 0x892120,9, 0x894000,3, 0x894010,6, 0x894200,7, 0x894220,6, 0x894240,7, 0x894260,6, 0x894280,2, 0x89428c,2, 0x8942a0,2, 0x8942ac,2, 0x8942c0,7, 0x8942e0,7, 0x894300,2, 0x89430c,2, 0x894320,6, 0x894340,7, 0x894360,6, 0x894380,6, 0x8943a0,7, 0x8943c0,6, 0x8943e0,6, 0x894400,3, 0x894480,20, 0x894800,7, 0x894820,14, 0x894880,16, 0x894900,7, 0x894920,14, 0x894980,16, 0x894a00,6, 0x894a20,7, 0x894c00,9, 0x8a0000,582, 0x8a1000,2, 0x8a1040,9, 0x8a1080,7, 0x8a2000,582, 0x8a3000,8, 0x8a3024,6, 0x8a3040,8, 0x8a3080,7, 0x8a30a0,7, 0x8a30c0,7, 0x8a30e0,7, 0x8a3100,13, 0x8a3140,12, 0x8a4000,582, 0x8a5000,2, 0x8a5040,9, 0x8a5080,7, 0x8a6000,582, 0x8a7000,8, 0x8a7024,6, 0x8a7040,8, 0x8a7080,7, 0x8a70a0,7, 0x8a70c0,7, 0x8a70e0,7, 0x8a7100,13, 0x8a7140,12, 0x8a8000,27, 0x8a8080,4, 0x8a80c0,25, 0x8a8140,6, 0x8a8160,2, 0x8a816c,3, 0x8a8180,8, 0x8a81a4,12, 0x8a8200,1, 0x8b0000,436, 0x8b0800,82, 0x8b0960,6, 0x8b0a00,41, 0x8b0b00,2, 0x8b0b20,19, 0x8b0c00,1, 0x8b0d00,44, 0x8b0e00,1, 0x8b1000,436, 0x8b1800,82, 0x8b1960,6, 0x8b1a00,41, 0x8b1b00,2, 0x8b1b20,19, 0x8b1c00,1, 0x8b1d00,44, 0x8b1e00,1, 0x8b2000,7, 0x8b2080,6, 0x8b20a0,6, 0x8b20c0,1, 0x8b2100,4, 0x8b2120,9, 0x8b4000,3, 0x8b4010,6, 0x8b4200,7, 0x8b4220,6, 0x8b4240,7, 0x8b4260,6, 0x8b4280,2, 0x8b428c,2, 0x8b42a0,2, 0x8b42ac,2, 0x8b42c0,7, 0x8b42e0,7, 0x8b4300,2, 0x8b430c,2, 0x8b4320,6, 0x8b4340,7, 0x8b4360,6, 0x8b4380,6, 0x8b43a0,7, 0x8b43c0,6, 0x8b43e0,6, 0x8b4400,3, 0x8b4480,20, 0x8b4800,7, 0x8b4820,14, 0x8b4880,16, 0x8b4900,7, 0x8b4920,14, 0x8b4980,16, 0x8b4a00,6, 0x8b4a20,7, 0x8b4c00,9, 0x8c0000,2, 0x8c0080,20, 0x8c0100,8, 0x8c0124,1, 0x8c012c,2, 0x8c0200,15, 0x8c0240,4, 0x8c0260,17, 0x8c02c0,6, 0x8c02e0,2, 0x8c02ec,3, 0x8c0300,8, 0x8c0324,1, 0x8c0400,4, 0x8c0500,59, 0x8c0600,4, 0x8c0700,43, 0x8c0800,59, 0x8c0900,59, 0x8c0a00,1, 0x8c0c00,9, 0x8c0c40,9, 0x8c0c80,1, 0x8c2000,4, 0x8c2100,57, 0x8c2200,4, 0x8c2300,43, 0x8c2400,15, 0x8c2440,4, 0x8c2460,17, 0x8c24c0,6, 0x8c24e0,2, 0x8c24ec,3, 0x8c2500,8, 0x8c2524,1, 0x8c2600,12, 0x8c2800,57, 0x8c2900,57, 0x8c2a00,1, 0x8c2c00,43, 0x8c2d00,43, 0x8c2e00,1, 0x8c3000,1, 0x8c4000,12, 0x8c4200,15, 0x8c4240,4, 0x8c4260,17, 0x8c42c0,6, 0x8c42e0,2, 0x8c42ec,3, 0x8c4300,8, 0x8c4324,1, 0x8c4400,2, 0x8c8000,1, 0x8c8008,4, 0x8c8020,1, 0x8c8030,5, 0x8c8080,12, 0x8c80c0,1, 0x8c8100,4, 0x8c8180,18, 0x8c8200,10, 0x8c822c,2, 0x8c8240,7, 0x8c8260,7, 0x8c8400,4, 0x8c8500,35, 0x8c8600,2, 0x8c860c,2, 0x8c8680,4, 0x8c86c0,9, 0x8c8700,18, 0x8c8780,18, 0x8c8800,10, 0x8c8840,3, 0x8c8850,3, 0x8c8860,3, 0x8c8870,3, 0x8c8a00,35, 0x8c8b00,35, 0x8c8c00,2, 0x8c8c80,9, 0x8c8cc0,9, 0x8c8e00,15, 0x8c8e40,4, 0x8c8e60,17, 0x8c8ec0,6, 0x8c8ee0,2, 0x8c8eec,3, 0x8c8f00,8, 0x8c8f24,3, 0x8c9000,12, 0x8d0000,2, 0x8d0040,12, 0x8d0080,4, 0x8d0094,1, 0x8d009c,2, 0x8d0200,15, 0x8d0240,4, 0x8d0260,17, 0x8d02c0,6, 0x8d02e0,2, 0x8d02ec,3, 0x8d0300,8, 0x8d0324,1, 0x8d0400,4, 0x8d0500,50, 0x8d0600,4, 0x8d0700,50, 0x8d0800,50, 0x8d0900,50, 0x8d0a00,1, 0x8d0c00,33, 0x8d2000,4, 0x8d2100,55, 0x8d2200,4, 0x8d2300,41, 0x8d2400,15, 0x8d2440,4, 0x8d2460,17, 0x8d24c0,6, 0x8d24e0,2, 0x8d24ec,3, 0x8d2500,8, 0x8d2524,1, 0x8d2600,12, 0x8d2800,55, 0x8d2900,55, 0x8d2a00,1, 0x8d2c00,41, 0x8d2d00,41, 0x8d2e00,1, 0x8d3000,1, 0x8d4000,12, 0x8d4200,15, 0x8d4240,4, 0x8d4260,17, 0x8d42c0,6, 0x8d42e0,2, 0x8d42ec,3, 0x8d4300,8, 0x8d4324,1, 0x8d4400,2, 0x8d8000,2, 0x8d8040,12, 0x8d8080,18, 0x8e0000,6, 0x8e0040,12, 0x8e0200,15, 0x8e0240,4, 0x8e0260,17, 0x8e02c0,6, 0x8e02e0,2, 0x8e02ec,3, 0x8e0300,8, 0x8e0324,1, 0x8e0400,4, 0x8e0500,35, 0x8e0600,4, 0x8e0700,34, 0x8e0800,35, 0x8e0900,35, 0x8e0a00,1, 0x8e0c00,34, 0x8e0d00,34, 0x8e0e00,1, 0x8e1000,1, 0x8e1008,4, 0x8e1020,1, 0x8e1030,5, 0x8e1080,12, 0x8e10c0,1, 0x8e1100,4, 0x8e1180,18, 0x8e1200,10, 0x8e122c,2, 0x8e1240,7, 0x8e1260,7, 0x8e1400,4, 0x8e1500,35, 0x8e1600,2, 0x8e160c,2, 0x8e1680,4, 0x8e16c0,9, 0x8e1700,18, 0x8e1780,18, 0x8e1800,10, 0x8e1840,3, 0x8e1850,3, 0x8e1860,3, 0x8e1870,3, 0x8e1a00,35, 0x8e1b00,35, 0x8e1c00,2, 0x8e1c80,9, 0x8e1cc0,9, 0x8e1e00,15, 0x8e1e40,4, 0x8e1e60,17, 0x8e1ec0,6, 0x8e1ee0,2, 0x8e1eec,3, 0x8e1f00,8, 0x8e1f24,3, 0x8e2000,4, 0x8e2100,55, 0x8e2200,4, 0x8e2300,41, 0x8e2400,15, 0x8e2440,4, 0x8e2460,17, 0x8e24c0,6, 0x8e24e0,2, 0x8e24ec,3, 0x8e2500,8, 0x8e2524,1, 0x8e2600,12, 0x8e2800,55, 0x8e2900,55, 0x8e2a00,1, 0x8e2c00,41, 0x8e2d00,41, 0x8e2e00,1, 0x8e3000,1, 0x8e4004,1, 0x8e407c,33, 0x8e4200,68, 0x8e4400,2, 0x8e4424,1, 0x8e4434,4, 0x8e4460,1, 0x8e4468,4, 0x8e4480,12, 0x8e44c0,2, 0x8e44e0,2, 0x8e44ec,2, 0x8e4500,8, 0x8e4600,3, 0x8e4620,3, 0x8e4630,3, 0x8e4640,7, 0x8e4680,1, 0x8e46c0,1, 0x8e46e0,11, 0x8e4720,3, 0x8e4730,3, 0x8e4740,7, 0x8e4784,1, 0x8e4798,10, 0x8e4800,36, 0x8e4a00,27, 0x8e4a80,4, 0x8e4ac0,25, 0x8e4b40,6, 0x8e4b60,2, 0x8e4b6c,3, 0x8e4b80,8, 0x8e4ba4,15, 0x8e4c00,2, 0x8e4c20,13, 0x8e5000,2, 0x8e500c,3, 0x8e5020,2, 0x8e502c,3, 0x8e5040,10, 0x8e5404,1, 0x8e5414,32, 0x8e5800,3, 0x8e5844,1, 0x8e5850,12, 0x8e5884,1, 0x8e589c,9, 0x8e6004,1, 0x8e6040,52, 0x8e6180,3, 0x8e61c4,1, 0x8e61d0,12, 0x8e6400,3, 0x8e6444,1, 0x8e6450,13, 0x8e6488,4, 0x8e6800,1, 0x8e6808,36, 0x8e6900,18, 0x8e6954,3, 0x8e6980,2, 0x8e69a0,7, 0x8e69c0,3, 0x8e69d0,3, 0x8e69e0,1, 0x8e6a00,2, 0x8e6a0c,3, 0x8e6c04,1, 0x8e6c78,37, 0x8e6e00,4, 0x8e7000,4, 0x8e7104,35, 0x8e7200,2, 0x8e7220,1, 0x8e7228,4, 0x8e7280,2, 0x8e72a4,1, 0x8e72b0,7, 0x8e7300,7, 0x8e7320,7, 0x8e7340,3, 0x8e7350,3, 0x8e7360,1, 0x8e7380,2, 0x8e73c0,3, 0x8e73d0,3, 0x8e73e0,1, 0x8e7400,1, 0x8e7410,3, 0x8e7420,3, 0x8e7430,5, 0x8e8004,1, 0x8e8030,58, 0x8e8208,2, 0x8e8218,2, 0x8e8228,2, 0x8e8238,2, 0x8e8248,2, 0x8e8258,2, 0x8e8268,2, 0x8e8278,2, 0x8e8288,2, 0x8e8298,2, 0x8e82a8,2, 0x8e82b8,2, 0x8e82c8,2, 0x8e82d8,2, 0x8e82e8,2, 0x8e82f8,2, 0x8e8308,2, 0x8e8318,2, 0x8e8328,2, 0x8e8338,2, 0x8e8348,2, 0x8e8358,2, 0x8e8368,2, 0x8e8378,2, 0x8e8388,2, 0x8e8398,2, 0x8e83a8,2, 0x8e83b8,2, 0x8e83c8,2, 0x8e83d8,2, 0x8e83e8,2, 0x8e83f8,2, 0x8e8408,2, 0x8e8418,2, 0x8e8428,2, 0x8e8438,2, 0x8e8448,2, 0x8e8458,2, 0x8e8500,2, 0x8e8584,1, 0x8e85b0,20, 0x8e8608,2, 0x8e8700,2, 0x8e8784,1, 0x8e87b0,22, 0x8e9000,9, 0x8e9040,9, 0x8e9080,9, 0x8e90c0,9, 0x8e9100,9, 0x8e9140,9, 0x8e9180,9, 0x8e91c0,9, 0x8e9204,1, 0x8e9228,110, 0x8e9400,14, 0x8e9440,1, 0x8e9448,24, 0x8e9804,1, 0x8e980c,6, 0x8e9828,3, 0x8e9900,44, 0x8e9a00,4, 0x8e9a20,5, 0x8e9a40,4, 0x8e9a60,7, 0x8e9a80,4, 0x8e9aa0,7, 0x8e9b00,4, 0x8e9b40,10, 0x8e9c00,27, 0x8e9c80,4, 0x8e9cc0,25, 0x8e9d40,6, 0x8e9d60,2, 0x8e9d6c,3, 0x8e9e00,8, 0x8e9e24,25, 0x8ea000,44, 0x8ec000,1, 0x8ec008,3, 0x8ec020,3, 0x8ec100,60, 0x8ec200,27, 0x8ec280,4, 0x8ec2c0,25, 0x8ec340,6, 0x8ec360,2, 0x8ec36c,3, 0x900000,2, 0x900080,20, 0x900100,8, 0x900124,1, 0x90012c,2, 0x900200,15, 0x900240,4, 0x900260,17, 0x9002c0,6, 0x9002e0,2, 0x9002ec,3, 0x900300,8, 0x900324,1, 0x900400,4, 0x900600,75, 0x900800,4, 0x900900,59, 0x901000,75, 0x901200,75, 0x901400,1, 0x901800,9, 0x901840,9, 0x901880,1, 0x902000,4, 0x902200,72, 0x902400,4, 0x902500,58, 0x902600,15, 0x902640,4, 0x902660,17, 0x9026c0,6, 0x9026e0,2, 0x9026ec,3, 0x902700,8, 0x902724,1, 0x902800,12, 0x903000,72, 0x903200,72, 0x903400,1, 0x903800,58, 0x903900,58, 0x903a00,1, 0x903c00,1, 0x904000,12, 0x904200,15, 0x904240,4, 0x904260,17, 0x9042c0,6, 0x9042e0,2, 0x9042ec,3, 0x904300,8, 0x904324,1, 0x904400,2, 0x908000,2, 0x908040,12, 0x908080,4, 0x908094,1, 0x90809c,2, 0x908200,15, 0x908240,4, 0x908260,17, 0x9082c0,6, 0x9082e0,2, 0x9082ec,3, 0x908300,8, 0x908324,1, 0x908400,4, 0x908600,66, 0x908800,4, 0x908a00,66, 0x909000,66, 0x909200,66, 0x909400,1, 0x909800,33, 0x90a000,4, 0x90a200,70, 0x90a400,4, 0x90a500,56, 0x90a600,15, 0x90a640,4, 0x90a660,17, 0x90a6c0,6, 0x90a6e0,2, 0x90a6ec,3, 0x90a700,8, 0x90a724,1, 0x90a800,12, 0x90b000,70, 0x90b200,70, 0x90b400,1, 0x90b800,56, 0x90b900,56, 0x90ba00,1, 0x90bc00,1, 0x90c000,2, 0x90c040,12, 0x90c200,15, 0x90c240,4, 0x90c260,17, 0x90c2c0,6, 0x90c2e0,2, 0x90c2ec,3, 0x90c300,8, 0x90c324,1, 0x90c400,2, 0x910000,4, 0x910100,55, 0x910200,4, 0x910300,41, 0x910400,15, 0x910440,4, 0x910460,17, 0x9104c0,6, 0x9104e0,2, 0x9104ec,3, 0x910500,8, 0x910524,1, 0x910600,12, 0x910800,55, 0x910900,55, 0x910a00,1, 0x910c00,41, 0x910d00,41, 0x910e00,1, 0x911000,1, 0x912000,6, 0x912040,12, 0x912200,4, 0x912300,52, 0x912400,4, 0x912500,60, 0x912600,15, 0x912640,4, 0x912660,17, 0x9126c0,6, 0x9126e0,2, 0x9126ec,3, 0x912700,8, 0x912724,1, 0x912800,33, 0x912900,33, 0x912a00,1, 0x912c00,17, 0x912c80,2, 0x914004,1, 0x914040,52, 0x914180,3, 0x9141c4,1, 0x9141d0,12, 0x915000,1, 0x915008,4, 0x915020,1, 0x915030,5, 0x915080,12, 0x9150c0,1, 0x915100,4, 0x915180,18, 0x915200,10, 0x91522c,2, 0x915240,7, 0x915260,7, 0x915280,2, 0x91528c,2, 0x9152a0,2, 0x9152ac,2, 0x915300,4, 0x915340,9, 0x915400,18, 0x915480,18, 0x915500,10, 0x915540,3, 0x915550,3, 0x915560,3, 0x915570,3, 0x915580,4, 0x915600,9, 0x915640,9, 0x915800,15, 0x915840,4, 0x915860,17, 0x9158c0,6, 0x9158e0,2, 0x9158ec,3, 0x915900,8, 0x915924,3, 0x916000,1, 0x916008,4, 0x916020,1, 0x916030,5, 0x916080,12, 0x9160c0,1, 0x916100,4, 0x916180,18, 0x916200,10, 0x91622c,2, 0x916240,7, 0x916260,7, 0x916280,2, 0x91628c,2, 0x9162a0,2, 0x9162ac,2, 0x916300,4, 0x916340,9, 0x916400,18, 0x916480,18, 0x916500,10, 0x916540,3, 0x916550,3, 0x916560,3, 0x916570,3, 0x916580,4, 0x916600,9, 0x916640,9, 0x916800,15, 0x916840,4, 0x916860,17, 0x9168c0,6, 0x9168e0,2, 0x9168ec,3, 0x916900,8, 0x916924,3, 0x917000,1, 0x917008,2, 0x917020,1, 0x917030,5, 0x917080,12, 0x9170c0,1, 0x9170e0,2, 0x9170ec,2, 0x917100,7, 0x917120,7, 0x917140,2, 0x91714c,2, 0x917160,2, 0x91716c,2, 0x917180,4, 0x9171c0,9, 0x917200,2, 0x917220,3, 0x917230,3, 0x917240,3, 0x917250,3, 0x917260,4, 0x917280,9, 0x9172c0,9, 0x917400,15, 0x917440,4, 0x917460,17, 0x9174c0,6, 0x9174e0,2, 0x9174ec,3, 0x917500,8, 0x917524,2, 0x918004,1, 0x91807c,33, 0x918200,68, 0x918400,2, 0x918424,1, 0x918434,4, 0x918460,1, 0x918468,4, 0x918480,12, 0x9184c0,2, 0x9184e0,2, 0x9184ec,2, 0x918500,8, 0x918600,3, 0x918620,3, 0x918630,3, 0x918640,7, 0x918680,1, 0x9186c0,1, 0x9186e0,11, 0x918720,3, 0x918730,3, 0x918740,7, 0x918784,1, 0x918798,10, 0x918800,36, 0x918a00,27, 0x918a80,4, 0x918ac0,25, 0x918b40,6, 0x918b60,2, 0x918b6c,3, 0x918b80,8, 0x918ba4,15, 0x918c00,2, 0x918c20,13, 0x919000,2, 0x91900c,3, 0x919020,2, 0x91902c,3, 0x919040,10, 0x919404,1, 0x919484,36, 0x919800,3, 0x919844,1, 0x919850,12, 0x919884,1, 0x91989c,9, 0x91a000,2, 0x91a010,3, 0x91a080,16, 0x91a0c4,1, 0x91a0d0,4, 0x91a100,2, 0x91a200,27, 0x91a280,4, 0x91a2c0,25, 0x91a340,6, 0x91a360,2, 0x91a36c,3, 0x91a380,8, 0x91a3a4,2, 0x91a400,1, 0x91a420,1, 0x91a428,4, 0x91a440,1, 0x91a450,5, 0x91a468,4, 0x91a480,3, 0x91a600,4, 0x91a700,54, 0x91a800,54, 0x91a900,54, 0x91aa00,1, 0x91ac00,4, 0x91ad00,52, 0x91b000,52, 0x91b100,52, 0x91b200,1, 0x91b400,7, 0x91b420,3, 0x91b430,3, 0x91b440,2, 0x91b44c,2, 0x91b460,5, 0x920000,6, 0x920020,6, 0x920040,6, 0x920060,6, 0x920080,13, 0x9200c0,5, 0x9200e0,5, 0x920100,5, 0x920120,5, 0x920140,5, 0x920160,5, 0x920180,5, 0x9201a0,5, 0x9201c0,5, 0x9201e0,5, 0x920200,5, 0x920220,5, 0x920240,5, 0x920260,5, 0x920280,5, 0x9202a0,5, 0x9202c0,5, 0x9202e0,5, 0x920300,5, 0x920320,1, 0x920340,9, 0x920380,14, 0x9203c0,9, 0x920400,9, 0x920440,9, 0x920480,9, 0x9204c0,9, 0x920500,9, 0x920540,9, 0x920580,9, 0x920804,4, 0x920820,1, 0x920830,5, 0x920850,5, 0x920870,1, 0x920880,1, 0x920890,1, 0x9208a0,1, 0x9208c0,6, 0x9208e0,6, 0x920900,3, 0x920940,4, 0x920960,25, 0x920a00,2, 0x920a0c,4, 0x920a20,2, 0x920a2c,3, 0x920a40,3, 0x920a50,3, 0x920c00,113, 0x920dc8,5, 0x921000,1, 0x921044,1, 0x921050,5, 0x921080,12, 0x921100,30, 0x921400,1, 0x921410,4, 0x921424,6, 0x921440,1, 0x921450,5, 0x921470,4, 0x921484,4, 0x9214a0,1, 0x9214b0,1, 0x9214c0,7, 0x921500,22, 0x921580,4, 0x921600,13, 0x921640,13, 0x921680,1, 0x921700,4, 0x921740,11, 0x921780,2, 0x921800,1, 0x921810,4, 0x921824,6, 0x921840,1, 0x921850,5, 0x921870,4, 0x921884,4, 0x9218a0,1, 0x9218b0,1, 0x9218c0,7, 0x921900,22, 0x921980,4, 0x921a00,13, 0x921a40,13, 0x921a80,1, 0x921b00,4, 0x921b40,11, 0x921b80,2, 0x922000,31, 0x922080,1, 0x922090,4, 0x9220a4,6, 0x9220c0,1, 0x9220d0,4, 0x922100,6, 0x922120,6, 0x922140,6, 0x922160,6, 0x922180,7, 0x9221a0,7, 0x9221c0,1, 0x922200,4, 0x922220,7, 0x923004,1, 0x92301c,9, 0x923044,1, 0x923050,4, 0x923404,1, 0x92356c,165, 0x923804,1, 0x923900,64, 0x923a04,1, 0x923a40,16, 0x923a84,1, 0x923ac0,16, 0x923b04,1, 0x923b40,16, 0x923b84,1, 0x923bc0,19, 0x924000,9, 0x924030,13, 0x924070,13, 0x9240b0,13, 0x9240f0,5, 0x928000,23, 0x928060,5, 0x928080,5, 0x9280a0,5, 0x9280c0,5, 0x9280e0,48, 0x928200,8, 0x928240,15, 0x928280,8, 0x9282c0,15, 0x928300,8, 0x928340,15, 0x928380,8, 0x9283c0,15, 0x928400,8, 0x928440,15, 0x928480,8, 0x9284c0,15, 0x928500,8, 0x928540,15, 0x928580,8, 0x9285c0,15, 0x928800,7, 0x928820,1, 0x928828,1, 0x928830,1, 0x928838,7, 0x928858,8, 0x928880,20, 0x928900,8, 0x928940,8, 0x928980,8, 0x9289c0,8, 0x928a00,16, 0x928c00,3, 0x928c24,1, 0x928c2c,5, 0x929000,6, 0x929020,6, 0x929040,1, 0x929200,4, 0x929300,60, 0x929400,5, 0x929418,3, 0x929428,13, 0x929460,10, 0x929500,6, 0x929520,6, 0x929540,1, 0x929600,9, 0x929640,9, 0x929680,1, 0x929800,27, 0x929880,4, 0x9298c0,25, 0x929940,6, 0x929960,2, 0x92996c,3, 0x929980,8, 0x9299a4,10, 0x929a00,36, 0x929b00,1, 0x929b08,2, 0x930000,6, 0x930020,6, 0x930040,6, 0x930060,6, 0x930080,13, 0x9300c0,5, 0x9300e0,5, 0x930100,5, 0x930120,5, 0x930140,5, 0x930160,5, 0x930180,5, 0x9301a0,5, 0x9301c0,5, 0x9301e0,5, 0x930200,5, 0x930220,5, 0x930240,5, 0x930260,5, 0x930280,5, 0x9302a0,5, 0x9302c0,5, 0x9302e0,5, 0x930300,5, 0x930320,1, 0x930340,9, 0x930380,14, 0x9303c0,9, 0x930400,9, 0x930440,9, 0x930480,9, 0x9304c0,9, 0x930500,9, 0x930540,9, 0x930580,9, 0x930804,4, 0x930820,1, 0x930830,5, 0x930850,5, 0x930870,1, 0x930880,1, 0x930890,1, 0x9308a0,1, 0x9308c0,6, 0x9308e0,6, 0x930900,3, 0x930940,4, 0x930960,25, 0x930a00,2, 0x930a0c,4, 0x930a20,2, 0x930a2c,3, 0x930a40,3, 0x930a50,3, 0x930c00,113, 0x930dc8,5, 0x931000,1, 0x931044,1, 0x931050,5, 0x931080,12, 0x931100,30, 0x931400,1, 0x931410,4, 0x931424,6, 0x931440,1, 0x931450,5, 0x931470,4, 0x931484,4, 0x9314a0,1, 0x9314b0,1, 0x9314c0,7, 0x931500,22, 0x931580,4, 0x931600,13, 0x931640,13, 0x931680,1, 0x931700,4, 0x931740,11, 0x931780,2, 0x931800,1, 0x931810,4, 0x931824,6, 0x931840,1, 0x931850,5, 0x931870,4, 0x931884,4, 0x9318a0,1, 0x9318b0,1, 0x9318c0,7, 0x931900,22, 0x931980,4, 0x931a00,13, 0x931a40,13, 0x931a80,1, 0x931b00,4, 0x931b40,11, 0x931b80,2, 0x932000,31, 0x932080,1, 0x932090,4, 0x9320a4,6, 0x9320c0,1, 0x9320d0,4, 0x932100,6, 0x932120,6, 0x932140,6, 0x932160,6, 0x932180,7, 0x9321a0,7, 0x9321c0,1, 0x932200,4, 0x932220,7, 0x933004,1, 0x93301c,9, 0x933044,1, 0x933050,4, 0x933404,1, 0x93356c,165, 0x933804,1, 0x933900,64, 0x933a04,1, 0x933a40,16, 0x933a84,1, 0x933ac0,16, 0x933b04,1, 0x933b40,16, 0x933b84,1, 0x933bc0,19, 0x934000,9, 0x934030,13, 0x934070,13, 0x9340b0,13, 0x9340f0,5, 0x938000,23, 0x938060,5, 0x938080,5, 0x9380a0,5, 0x9380c0,5, 0x9380e0,48, 0x938200,8, 0x938240,15, 0x938280,8, 0x9382c0,15, 0x938300,8, 0x938340,15, 0x938380,8, 0x9383c0,15, 0x938400,8, 0x938440,15, 0x938480,8, 0x9384c0,15, 0x938500,8, 0x938540,15, 0x938580,8, 0x9385c0,15, 0x938800,7, 0x938820,1, 0x938828,1, 0x938830,1, 0x938838,7, 0x938858,8, 0x938880,20, 0x938900,8, 0x938940,8, 0x938980,8, 0x9389c0,8, 0x938a00,16, 0x938c00,3, 0x938c24,1, 0x938c2c,5, 0x939000,6, 0x939020,6, 0x939040,1, 0x939200,4, 0x939300,60, 0x939400,5, 0x939418,3, 0x939428,13, 0x939460,10, 0x939500,6, 0x939520,6, 0x939540,1, 0x939600,9, 0x939640,9, 0x939680,1, 0x939800,27, 0x939880,4, 0x9398c0,25, 0x939940,6, 0x939960,2, 0x93996c,3, 0x939980,8, 0x9399a4,10, 0x939a00,36, 0x939b00,1, 0x939b08,2, 0x940000,6, 0x940020,6, 0x940040,6, 0x940060,6, 0x940080,13, 0x9400c0,5, 0x9400e0,5, 0x940100,5, 0x940120,5, 0x940140,5, 0x940160,5, 0x940180,5, 0x9401a0,5, 0x9401c0,5, 0x9401e0,5, 0x940200,5, 0x940220,5, 0x940240,5, 0x940260,5, 0x940280,5, 0x9402a0,5, 0x9402c0,5, 0x9402e0,5, 0x940300,5, 0x940320,1, 0x940340,9, 0x940380,14, 0x9403c0,9, 0x940400,9, 0x940440,9, 0x940480,9, 0x9404c0,9, 0x940500,9, 0x940540,9, 0x940580,9, 0x940804,4, 0x940820,1, 0x940830,5, 0x940850,5, 0x940870,1, 0x940880,1, 0x940890,1, 0x9408a0,1, 0x9408c0,6, 0x9408e0,6, 0x940900,3, 0x940940,4, 0x940960,25, 0x940a00,2, 0x940a0c,4, 0x940a20,2, 0x940a2c,3, 0x940a40,3, 0x940a50,3, 0x940c00,113, 0x940dc8,5, 0x941000,1, 0x941044,1, 0x941050,5, 0x941080,12, 0x941100,30, 0x941400,1, 0x941410,4, 0x941424,6, 0x941440,1, 0x941450,5, 0x941470,4, 0x941484,4, 0x9414a0,1, 0x9414b0,1, 0x9414c0,7, 0x941500,22, 0x941580,4, 0x941600,13, 0x941640,13, 0x941680,1, 0x941700,4, 0x941740,11, 0x941780,2, 0x941800,1, 0x941810,4, 0x941824,6, 0x941840,1, 0x941850,5, 0x941870,4, 0x941884,4, 0x9418a0,1, 0x9418b0,1, 0x9418c0,7, 0x941900,22, 0x941980,4, 0x941a00,13, 0x941a40,13, 0x941a80,1, 0x941b00,4, 0x941b40,11, 0x941b80,2, 0x942000,31, 0x942080,1, 0x942090,4, 0x9420a4,6, 0x9420c0,1, 0x9420d0,4, 0x942100,6, 0x942120,6, 0x942140,6, 0x942160,6, 0x942180,7, 0x9421a0,7, 0x9421c0,1, 0x942200,4, 0x942220,7, 0x943004,1, 0x94301c,9, 0x943044,1, 0x943050,4, 0x943404,1, 0x94356c,165, 0x943804,1, 0x943900,64, 0x943a04,1, 0x943a40,16, 0x943a84,1, 0x943ac0,16, 0x943b04,1, 0x943b40,16, 0x943b84,1, 0x943bc0,19, 0x944000,9, 0x944030,13, 0x944070,13, 0x9440b0,13, 0x9440f0,5, 0x948000,23, 0x948060,5, 0x948080,5, 0x9480a0,5, 0x9480c0,5, 0x9480e0,48, 0x948200,8, 0x948240,15, 0x948280,8, 0x9482c0,15, 0x948300,8, 0x948340,15, 0x948380,8, 0x9483c0,15, 0x948400,8, 0x948440,15, 0x948480,8, 0x9484c0,15, 0x948500,8, 0x948540,15, 0x948580,8, 0x9485c0,15, 0x948800,7, 0x948820,1, 0x948828,1, 0x948830,1, 0x948838,7, 0x948858,8, 0x948880,20, 0x948900,8, 0x948940,8, 0x948980,8, 0x9489c0,8, 0x948a00,16, 0x948c00,3, 0x948c24,1, 0x948c2c,5, 0x949000,6, 0x949020,6, 0x949040,1, 0x949200,4, 0x949300,60, 0x949400,5, 0x949418,3, 0x949428,13, 0x949460,10, 0x949500,6, 0x949520,6, 0x949540,1, 0x949600,9, 0x949640,9, 0x949680,1, 0x949800,27, 0x949880,4, 0x9498c0,25, 0x949940,6, 0x949960,2, 0x94996c,3, 0x949980,8, 0x9499a4,10, 0x949a00,36, 0x949b00,1, 0x949b08,2, 0x950000,6, 0x950020,6, 0x950040,6, 0x950060,6, 0x950080,13, 0x9500c0,5, 0x9500e0,5, 0x950100,5, 0x950120,5, 0x950140,5, 0x950160,5, 0x950180,5, 0x9501a0,5, 0x9501c0,5, 0x9501e0,5, 0x950200,5, 0x950220,5, 0x950240,5, 0x950260,5, 0x950280,5, 0x9502a0,5, 0x9502c0,5, 0x9502e0,5, 0x950300,5, 0x950320,1, 0x950340,9, 0x950380,14, 0x9503c0,9, 0x950400,9, 0x950440,9, 0x950480,9, 0x9504c0,9, 0x950500,9, 0x950540,9, 0x950580,9, 0x950804,4, 0x950820,1, 0x950830,5, 0x950850,5, 0x950870,1, 0x950880,1, 0x950890,1, 0x9508a0,1, 0x9508c0,6, 0x9508e0,6, 0x950900,3, 0x950940,4, 0x950960,25, 0x950a00,2, 0x950a0c,4, 0x950a20,2, 0x950a2c,3, 0x950a40,3, 0x950a50,3, 0x950c00,113, 0x950dc8,5, 0x951000,1, 0x951044,1, 0x951050,5, 0x951080,12, 0x951100,30, 0x951400,1, 0x951410,4, 0x951424,6, 0x951440,1, 0x951450,5, 0x951470,4, 0x951484,4, 0x9514a0,1, 0x9514b0,1, 0x9514c0,7, 0x951500,22, 0x951580,4, 0x951600,13, 0x951640,13, 0x951680,1, 0x951700,4, 0x951740,11, 0x951780,2, 0x951800,1, 0x951810,4, 0x951824,6, 0x951840,1, 0x951850,5, 0x951870,4, 0x951884,4, 0x9518a0,1, 0x9518b0,1, 0x9518c0,7, 0x951900,22, 0x951980,4, 0x951a00,13, 0x951a40,13, 0x951a80,1, 0x951b00,4, 0x951b40,11, 0x951b80,2, 0x952000,31, 0x952080,1, 0x952090,4, 0x9520a4,6, 0x9520c0,1, 0x9520d0,4, 0x952100,6, 0x952120,6, 0x952140,6, 0x952160,6, 0x952180,7, 0x9521a0,7, 0x9521c0,1, 0x952200,4, 0x952220,7, 0x953004,1, 0x95301c,9, 0x953044,1, 0x953050,4, 0x953404,1, 0x95356c,165, 0x953804,1, 0x953900,64, 0x953a04,1, 0x953a40,16, 0x953a84,1, 0x953ac0,16, 0x953b04,1, 0x953b40,16, 0x953b84,1, 0x953bc0,19, 0x954000,9, 0x954030,13, 0x954070,13, 0x9540b0,13, 0x9540f0,5, 0x958000,23, 0x958060,5, 0x958080,5, 0x9580a0,5, 0x9580c0,5, 0x9580e0,48, 0x958200,8, 0x958240,15, 0x958280,8, 0x9582c0,15, 0x958300,8, 0x958340,15, 0x958380,8, 0x9583c0,15, 0x958400,8, 0x958440,15, 0x958480,8, 0x9584c0,15, 0x958500,8, 0x958540,15, 0x958580,8, 0x9585c0,15, 0x958800,7, 0x958820,1, 0x958828,1, 0x958830,1, 0x958838,7, 0x958858,8, 0x958880,20, 0x958900,8, 0x958940,8, 0x958980,8, 0x9589c0,8, 0x958a00,16, 0x958c00,3, 0x958c24,1, 0x958c2c,5, 0x959000,6, 0x959020,6, 0x959040,1, 0x959200,4, 0x959300,60, 0x959400,5, 0x959418,3, 0x959428,13, 0x959460,10, 0x959500,6, 0x959520,6, 0x959540,1, 0x959600,9, 0x959640,9, 0x959680,1, 0x959800,27, 0x959880,4, 0x9598c0,25, 0x959940,6, 0x959960,2, 0x95996c,3, 0x959980,8, 0x9599a4,10, 0x959a00,36, 0x959b00,1, 0x959b08,2, 0x960000,2, 0x960044,17, 0x960100,2, 0x960144,17, 0x960200,2, 0x960244,17, 0x9602c4,17, 0x960380,2, 0x9603c4,17, 0x960480,2, 0x9604c4,17, 0x960544,28, 0x9605c0,2, 0x9605cc,2, 0x9605e0,1, 0x9605e8,2, 0x960600,7, 0x960640,11, 0x960680,11, 0x9606c0,11, 0x960700,11, 0x960740,11, 0x960780,3, 0x960804,1, 0x960818,10, 0x960844,1, 0x96084c,5, 0x960884,19, 0x960900,35, 0x960a00,35, 0x960b00,35, 0x960c00,1, 0x960c20,1, 0x960c28,7, 0x964004,1, 0x96400c,13, 0x964044,1, 0x96404c,1, 0x964084,1, 0x9640c0,16, 0x964104,1, 0x964138,18, 0x964184,1, 0x9641c0,16, 0x964204,19, 0x964400,6, 0x964420,6, 0x964440,2, 0x96444c,3, 0x96445c,3, 0x96446c,1, 0x964480,1, 0x964490,4, 0x9644a4,6, 0x9644c0,1, 0x9644d0,4, 0x9644e4,1, 0x9644ec,1, 0x964804,1, 0x96480c,13, 0x964844,1, 0x96484c,1, 0x964884,1, 0x9648c0,16, 0x964904,1, 0x964938,18, 0x964984,1, 0x9649c0,16, 0x964a04,19, 0x964c00,6, 0x964c20,6, 0x964c40,2, 0x964c4c,3, 0x964c5c,3, 0x964c6c,1, 0x964c80,1, 0x964c90,4, 0x964ca4,6, 0x964cc0,1, 0x964cd0,4, 0x964ce4,1, 0x964cec,1, 0x965004,1, 0x96500c,13, 0x965044,1, 0x96504c,1, 0x965084,1, 0x9650c0,16, 0x965104,1, 0x965138,18, 0x965184,1, 0x9651c0,16, 0x965204,19, 0x965400,6, 0x965420,6, 0x965440,2, 0x96544c,3, 0x96545c,3, 0x96546c,1, 0x965480,1, 0x965490,4, 0x9654a4,6, 0x9654c0,1, 0x9654d0,4, 0x9654e4,1, 0x9654ec,1, 0x965804,1, 0x96580c,13, 0x965844,1, 0x96584c,1, 0x965884,1, 0x9658c0,16, 0x965904,1, 0x965938,18, 0x965984,1, 0x9659c0,16, 0x965a04,19, 0x965c00,6, 0x965c20,6, 0x965c40,2, 0x965c4c,3, 0x965c5c,3, 0x965c6c,1, 0x965c80,1, 0x965c90,4, 0x965ca4,6, 0x965cc0,1, 0x965cd0,4, 0x965ce4,1, 0x965cec,1, 0x966000,27, 0x966080,6, 0x9660a0,6, 0x9660c0,6, 0x9660e0,6, 0x966100,6, 0x966120,6, 0x966140,6, 0x966160,6, 0x966180,75, 0x9662b0,2, 0x968004,1, 0x968030,20, 0x968084,1, 0x9680c0,16, 0x968104,1, 0x968138,22, 0x968200,1, 0x96820c,1, 0x968240,1, 0x968250,4, 0x968264,6, 0x968284,1, 0x96828c,1, 0x968404,1, 0x968430,20, 0x968484,1, 0x9684c0,16, 0x968504,1, 0x968538,22, 0x968600,1, 0x96860c,1, 0x968640,1, 0x968650,4, 0x968664,6, 0x968684,1, 0x96868c,1, 0x968804,1, 0x968830,20, 0x968884,1, 0x9688c0,16, 0x968904,1, 0x968938,22, 0x968a00,1, 0x968a0c,1, 0x968a40,1, 0x968a50,4, 0x968a64,6, 0x968a84,1, 0x968a8c,1, 0x968c04,1, 0x968c30,20, 0x968c84,1, 0x968cc0,16, 0x968d04,1, 0x968d38,22, 0x968e00,1, 0x968e0c,1, 0x968e40,1, 0x968e50,4, 0x968e64,6, 0x968e84,1, 0x968e8c,1, 0x969000,5, 0x96a004,1, 0x96a014,11, 0x96a044,1, 0x96a058,10, 0x96a084,1, 0x96a094,7, 0x96a100,2, 0x96a110,3, 0x96a120,3, 0x96a140,9, 0x96a16c,4, 0x96a180,1, 0x96a1c0,1, 0x96a1e0,10, 0x96a220,7, 0x96a240,1, 0x96a260,10, 0x96a400,1, 0x96a408,65, 0x96a510,65, 0x96a618,64, 0x96a800,8, 0x96a840,11, 0x96a880,1, 0x96a8a0,7, 0x96a8c4,1, 0x96a8cc,1, 0x96a900,18, 0x96a980,4, 0x96a9c0,9, 0x96aa00,3, 0x96ac00,7, 0x96ac40,2, 0x96ac64,1, 0x96ac74,5, 0x96acc0,20, 0x96ae00,6, 0x96ae20,1, 0x96b000,1, 0x96b020,1, 0x96b028,4, 0x96b040,6, 0x96b060,6, 0x96b080,3, 0x96b090,3, 0x96b0a0,3, 0x96b0b0,3, 0x96b0c0,3, 0x96b0d0,3, 0x96b0e0,3, 0x96b0f0,3, 0x96b100,3, 0x96b110,3, 0x96b120,3, 0x96b130,3, 0x96b140,3, 0x96b150,3, 0x96b160,3, 0x96b170,3, 0x96b180,3, 0x96b190,3, 0x96b1a0,3, 0x96b1b0,3, 0x96b1c0,3, 0x96b1d0,3, 0x96b1e0,3, 0x96b1f0,3, 0x96b200,3, 0x96b210,3, 0x96b220,3, 0x96b230,3, 0x96b240,3, 0x96b250,3, 0x96b260,3, 0x96b270,3, 0x96b280,3, 0x96b290,3, 0x96b2a0,3, 0x96b2b0,3, 0x96b2c0,3, 0x96b2d0,3, 0x96b2e0,3, 0x96b2f0,3, 0x96b300,3, 0x96b310,3, 0x96b320,3, 0x96b330,3, 0x96b340,3, 0x96b350,3, 0x96b360,3, 0x96b370,3, 0x96b380,3, 0x96b390,3, 0x96b3a0,3, 0x96b3b0,3, 0x96b3c0,3, 0x96b3d0,3, 0x96b3e0,3, 0x96b3f0,3, 0x96b400,3, 0x96b410,3, 0x96b420,3, 0x96b430,3, 0x96b440,3, 0x96b450,3, 0x96b460,3, 0x96b470,3, 0x96b484,42, 0x96b53c,12, 0x96b57c,1, 0x96b800,70, 0x96b920,32, 0x96ba04,4, 0x96ba20,9, 0x96ba48,7, 0x96ba68,3, 0x96ba80,2, 0x96baa4,10, 0x96bad0,2, 0x96bae0,1, 0x96baf0,11, 0x96bb24,1, 0x96bb2c,1, 0x96bb40,1, 0x96bb60,10, 0x96bb94,1, 0x96bb9c,3, 0x96bbb0,17, 0x96bbfc,8, 0x96bc20,1, 0x96bc28,4, 0x96bc40,1, 0x96bc48,2, 0x96bc80,4, 0x96bcc0,10, 0x96bd00,5, 0x96bd20,5, 0x96bd40,5, 0x96bd60,5, 0x96bd80,5, 0x96bda0,5, 0x96bdc0,21, 0x96c000,4, 0x96c040,9, 0x96c080,5, 0x970000,1, 0x970008,4, 0x970020,1, 0x970040,1, 0x970048,4, 0x970060,1, 0x970080,8, 0x970200,1, 0x970208,5, 0x970220,1, 0x97022c,2, 0x970240,2, 0x970264,1, 0x970270,6, 0x9702c4,1, 0x9702d4,18, 0x970320,1, 0x970340,11, 0x970380,11, 0x970400,75, 0x97053c,3, 0x970560,7, 0x970580,7, 0x9705a0,7, 0x9705c0,15, 0x971004,1, 0x97100c,13, 0x971044,1, 0x971050,4, 0x971084,1, 0x9710c0,16, 0x971104,1, 0x971140,19, 0x971200,2, 0x971210,8, 0x971240,2, 0x97124c,2, 0x971260,6, 0x971280,2, 0x97128c,2, 0x9712a0,6, 0x9712c0,44, 0x971400,2, 0x971484,1, 0x9714c0,16, 0x971504,4, 0x971600,2, 0x97160c,3, 0x97161c,17, 0x971680,12, 0x9716c0,12, 0x971700,1, 0x971800,1, 0x971820,3, 0x971830,3, 0x971840,2, 0x971850,3, 0x971880,6, 0x9718a0,6, 0x9718c0,19, 0x972000,22, 0x972080,10, 0x9720c0,9, 0x972100,2, 0x97210c,2, 0x972120,1, 0x972128,4, 0x972400,27, 0x972480,4, 0x9724c0,25, 0x972540,6, 0x972560,2, 0x97256c,3, 0x972600,8, 0x972624,47, 0x972800,137, 0x972a30,4, 0x972c00,6, 0x972c20,3, 0x972c30,6, 0x972c60,8, 0x980000,1, 0x980080,17, 0x980100,37, 0x980200,1, 0x980210,11, 0x980240,1, 0x980280,1, 0x980288,4, 0x9802a0,4, 0x9802c0,1, 0x980300,2, 0x980400,15, 0x980440,4, 0x980460,17, 0x9804c0,6, 0x9804e0,2, 0x9804ec,3, 0x980500,8, 0x980524,4, 0x980600,12, 0x981000,1, 0x981080,17, 0x981100,37, 0x981200,1, 0x981210,11, 0x981240,1, 0x981280,1, 0x981288,4, 0x9812a0,4, 0x9812c0,1, 0x981300,2, 0x981400,15, 0x981440,4, 0x981460,17, 0x9814c0,6, 0x9814e0,2, 0x9814ec,3, 0x981500,8, 0x981524,4, 0x981600,12, 0x982000,1, 0x982080,17, 0x982100,37, 0x982200,1, 0x982210,11, 0x982240,1, 0x982280,1, 0x982288,4, 0x9822a0,4, 0x9822c0,1, 0x982300,2, 0x982400,15, 0x982440,4, 0x982460,17, 0x9824c0,6, 0x9824e0,2, 0x9824ec,3, 0x982500,8, 0x982524,4, 0x982600,12, 0x983000,1, 0x983080,17, 0x983100,37, 0x983200,1, 0x983210,11, 0x983240,1, 0x983280,1, 0x983288,4, 0x9832a0,4, 0x9832c0,1, 0x983300,2, 0x983400,15, 0x983440,4, 0x983460,17, 0x9834c0,6, 0x9834e0,2, 0x9834ec,3, 0x983500,8, 0x983524,4, 0x983600,12, 0x984000,1, 0x984080,17, 0x984100,37, 0x984200,1, 0x984210,11, 0x984240,1, 0x984280,1, 0x984288,4, 0x9842a0,4, 0x9842c0,1, 0x984300,2, 0x984400,15, 0x984440,4, 0x984460,17, 0x9844c0,6, 0x9844e0,2, 0x9844ec,3, 0x984500,8, 0x984524,4, 0x984600,12, 0x985000,1, 0x985080,17, 0x985100,37, 0x985200,1, 0x985210,11, 0x985240,1, 0x985280,1, 0x985288,4, 0x9852a0,4, 0x9852c0,1, 0x985300,2, 0x985400,15, 0x985440,4, 0x985460,17, 0x9854c0,6, 0x9854e0,2, 0x9854ec,3, 0x985500,8, 0x985524,4, 0x985600,12, 0x986000,1, 0x986080,17, 0x986100,37, 0x986200,1, 0x986210,11, 0x986240,1, 0x986280,1, 0x986288,4, 0x9862a0,4, 0x9862c0,1, 0x986300,2, 0x986400,15, 0x986440,4, 0x986460,17, 0x9864c0,6, 0x9864e0,2, 0x9864ec,3, 0x986500,8, 0x986524,4, 0x986600,12, 0x987000,1, 0x987080,17, 0x987100,37, 0x987200,1, 0x987210,11, 0x987240,1, 0x987280,1, 0x987288,4, 0x9872a0,4, 0x9872c0,1, 0x987300,2, 0x987400,15, 0x987440,4, 0x987460,17, 0x9874c0,6, 0x9874e0,2, 0x9874ec,3, 0x987500,8, 0x987524,4, 0x987600,12, 0x988000,1, 0x988080,17, 0x988100,37, 0x988200,1, 0x988210,11, 0x988240,1, 0x988280,1, 0x988288,4, 0x9882a0,4, 0x9882c0,1, 0x988300,2, 0x988400,15, 0x988440,4, 0x988460,17, 0x9884c0,6, 0x9884e0,2, 0x9884ec,3, 0x988500,8, 0x988524,4, 0x988600,12, 0x989000,1, 0x989080,17, 0x989100,37, 0x989200,1, 0x989210,11, 0x989240,1, 0x989280,1, 0x989288,4, 0x9892a0,4, 0x9892c0,1, 0x989300,2, 0x989400,15, 0x989440,4, 0x989460,17, 0x9894c0,6, 0x9894e0,2, 0x9894ec,3, 0x989500,8, 0x989524,4, 0x989600,12, 0x98a000,1, 0x98a080,17, 0x98a100,37, 0x98a200,1, 0x98a210,11, 0x98a240,1, 0x98a280,1, 0x98a288,4, 0x98a2a0,4, 0x98a2c0,1, 0x98a300,2, 0x98a400,15, 0x98a440,4, 0x98a460,17, 0x98a4c0,6, 0x98a4e0,2, 0x98a4ec,3, 0x98a500,8, 0x98a524,4, 0x98a600,12, 0x98b000,1, 0x98b080,17, 0x98b100,37, 0x98b200,1, 0x98b210,11, 0x98b240,1, 0x98b280,1, 0x98b288,4, 0x98b2a0,4, 0x98b2c0,1, 0x98b300,2, 0x98b400,15, 0x98b440,4, 0x98b460,17, 0x98b4c0,6, 0x98b4e0,2, 0x98b4ec,3, 0x98b500,8, 0x98b524,4, 0x98b600,12, 0x98c000,1, 0x98c080,17, 0x98c100,37, 0x98c200,1, 0x98c210,11, 0x98c240,1, 0x98c280,1, 0x98c288,4, 0x98c2a0,4, 0x98c2c0,1, 0x98c300,2, 0x98c400,15, 0x98c440,4, 0x98c460,17, 0x98c4c0,6, 0x98c4e0,2, 0x98c4ec,3, 0x98c500,8, 0x98c524,4, 0x98c600,12, 0x98d000,1, 0x98d080,17, 0x98d100,37, 0x98d200,1, 0x98d210,11, 0x98d240,1, 0x98d280,1, 0x98d288,4, 0x98d2a0,4, 0x98d2c0,1, 0x98d300,2, 0x98d400,15, 0x98d440,4, 0x98d460,17, 0x98d4c0,6, 0x98d4e0,2, 0x98d4ec,3, 0x98d500,8, 0x98d524,4, 0x98d600,12, 0x98e000,1, 0x98e080,17, 0x98e100,37, 0x98e200,1, 0x98e210,11, 0x98e240,1, 0x98e280,1, 0x98e288,4, 0x98e2a0,4, 0x98e2c0,1, 0x98e300,2, 0x98e400,15, 0x98e440,4, 0x98e460,17, 0x98e4c0,6, 0x98e4e0,2, 0x98e4ec,3, 0x98e500,8, 0x98e524,4, 0x98e600,12, 0x98f000,1, 0x98f080,17, 0x98f100,37, 0x98f200,1, 0x98f210,11, 0x98f240,1, 0x98f280,1, 0x98f288,4, 0x98f2a0,4, 0x98f2c0,1, 0x98f300,2, 0x98f400,15, 0x98f440,4, 0x98f460,17, 0x98f4c0,6, 0x98f4e0,2, 0x98f4ec,3, 0x98f500,8, 0x98f524,4, 0x98f600,12, 0x990004,1, 0x99001c,25, 0x990084,1, 0x9900bc,19, 0x990204,1, 0x99027c,62, 0x990380,29, 0x990400,4, 0x990480,29, 0x990504,1, 0x99053c,20, 0x990600,2, 0x990614,1, 0x99061c,3, 0x990634,1, 0x99063c,1, 0x990644,16, 0x990688,33, 0x990804,1, 0x99081c,25, 0x990884,1, 0x9908bc,19, 0x990a04,1, 0x990a7c,62, 0x990b80,29, 0x990c00,4, 0x990c80,29, 0x990d04,1, 0x990d3c,20, 0x990e00,2, 0x990e14,1, 0x990e1c,3, 0x990e34,1, 0x990e3c,1, 0x990e44,16, 0x990e88,33, 0x991004,1, 0x99101c,25, 0x991084,1, 0x9910bc,19, 0x991204,1, 0x99127c,62, 0x991380,29, 0x991400,4, 0x991480,29, 0x991504,1, 0x99153c,20, 0x991600,2, 0x991614,1, 0x99161c,3, 0x991634,1, 0x99163c,1, 0x991644,16, 0x991688,33, 0x991804,1, 0x99181c,25, 0x991884,1, 0x9918bc,19, 0x991a04,1, 0x991a7c,62, 0x991b80,29, 0x991c00,4, 0x991c80,29, 0x991d04,1, 0x991d3c,20, 0x991e00,2, 0x991e14,1, 0x991e1c,3, 0x991e34,1, 0x991e3c,1, 0x991e44,16, 0x991e88,33, 0x992004,1, 0x99201c,25, 0x992084,1, 0x9920bc,19, 0x992204,1, 0x99227c,62, 0x992380,29, 0x992400,4, 0x992480,29, 0x992504,1, 0x99253c,20, 0x992600,2, 0x992614,1, 0x99261c,3, 0x992634,1, 0x99263c,1, 0x992644,16, 0x992688,33, 0x992804,1, 0x99281c,25, 0x992884,1, 0x9928bc,19, 0x992a04,1, 0x992a7c,62, 0x992b80,29, 0x992c00,4, 0x992c80,29, 0x992d04,1, 0x992d3c,20, 0x992e00,2, 0x992e14,1, 0x992e1c,3, 0x992e34,1, 0x992e3c,1, 0x992e44,16, 0x992e88,33, 0x993004,1, 0x99301c,25, 0x993084,1, 0x9930bc,19, 0x993204,1, 0x99327c,62, 0x993380,29, 0x993400,4, 0x993480,29, 0x993504,1, 0x99353c,20, 0x993600,2, 0x993614,1, 0x99361c,3, 0x993634,1, 0x99363c,1, 0x993644,16, 0x993688,33, 0x993804,1, 0x99381c,25, 0x993884,1, 0x9938bc,19, 0x993a04,1, 0x993a7c,62, 0x993b80,29, 0x993c00,4, 0x993c80,29, 0x993d04,1, 0x993d3c,20, 0x993e00,2, 0x993e14,1, 0x993e1c,3, 0x993e34,1, 0x993e3c,1, 0x993e44,16, 0x993e88,33, 0x994000,160, 0x994284,1, 0x9942a0,8, 0x9942c4,1, 0x9942d4,3, 0x994300,21, 0x994380,21, 0x994400,21, 0x994480,21, 0x994500,4, 0x994580,21, 0x994600,4, 0x994680,21, 0x994700,19, 0x994780,19, 0x994800,4, 0x994880,19, 0x994900,12, 0x998000,3, 0x998010,3, 0x998020,3, 0x998030,3, 0x998040,3, 0x998050,3, 0x998060,3, 0x998070,3, 0x998080,3, 0x998090,3, 0x9980a0,3, 0x9980b0,3, 0x9980c0,3, 0x9980d0,3, 0x9980e0,3, 0x9980f0,3, 0x998100,3, 0x998110,3, 0x998120,18, 0x998180,289, 0x998800,78, 0x998a04,1, 0x998a20,24, 0x998a84,1, 0x998a94,3, 0x998b00,52, 0x998c00,3, 0x998c10,3, 0x998c20,3, 0x998c30,3, 0x998c40,3, 0x998c50,3, 0x998c60,3, 0x998c70,3, 0x998c80,3, 0x998c90,3, 0x998ca0,3, 0x998cb0,3, 0x998cc0,3, 0x998cd0,3, 0x998ce0,3, 0x998cf0,3, 0x998d00,3, 0x998d10,1, 0x99a000,1, 0x99a024,6, 0x99a040,1, 0x99a050,8, 0x99a200,2, 0x99a280,10, 0x99a2c0,10, 0x99a300,4, 0x99a340,10, 0x99a400,2, 0x99a800,1, 0x99a824,6, 0x99a840,1, 0x99a850,8, 0x99aa00,2, 0x99aa80,10, 0x99aac0,10, 0x99ab00,4, 0x99ab40,10, 0x99ac00,2, 0x99b000,42, 0x99b0c0,7, 0x99b0e0,6, 0x99b100,15, 0x99b200,108, 0x99b400,6, 0x99c000,1, 0x99c800,129, 0x99cc00,16, 0x99cc44,1, 0x99cc4c,2, 0x99cc58,2, 0x99d000,23, 0x99d080,23, 0x99d100,4, 0x99d180,23, 0x99d204,11, 0x99d404,1, 0x99d410,10, 0x99d440,8, 0x99e000,12, 0x99e084,1, 0x99e09c,12, 0x99e100,21, 0x99e180,21, 0x99e200,4, 0x99e280,21, 0x99e400,34, 0x99e500,34, 0x99e600,4, 0x99e700,34, 0x99e800,1, 0x99e820,8, 0x99f000,3, 0x99f200,36, 0x99f300,36, 0x99f400,4, 0x99f500,36, 0x99f600,7, 0x99f620,1, 0x99f800,1, 0x99f810,8, 0x99f840,3, 0x99f850,2, 0x99f880,9, 0x99f8c0,2, 0x99f904,1, 0x99f914,6, 0x99f940,20, 0x9a0000,3, 0x9a0080,10, 0x9a00c0,10, 0x9a0100,4, 0x9a0140,10, 0x9a0180,20, 0x9a01e0,11, 0x9a0210,3, 0x9a0220,7, 0x9a0240,1, 0x9a0400,1, 0x9a0408,2, 0x9a0424,3, 0x9a0434,4, 0x9a0448,7, 0x9a0468,9, 0x9a0810,26, 0x9a0880,17, 0x9a08d0,13, 0x9a0940,80, 0x9a0c00,14, 0x9a0c40,7, 0x9a0c60,7, 0x9a0c80,4, 0x9a0ca0,7, 0x9a0cc0,1, 0x9a0d04,3, 0x9a0d14,1, 0x9a0d1c,4, 0x9a0d30,8, 0x9a1000,27, 0x9a1080,4, 0x9a10c0,25, 0x9a1140,6, 0x9a1160,2, 0x9a116c,3, 0x9a1204,86, 0x9a1400,5, 0x9a1420,2, 0x9a1444,1, 0x9a1454,6, 0x9a1480,8, 0x9a14c0,3, 0x9a14d0,3, 0x9a14e0,7, 0x9a1500,1, 0x9a1508,8, 0x9a1540,8, 0x9a1600,36, 0x9a1700,2, 0x9c0000,4, 0x9c0080,1, 0x9c0088,18, 0x9c0100,12, 0x9c0140,8, mstflint-4.26.0/mstdump/mstdump_dbs/Quantum.csv0000644000175000017500000137161214522641732022077 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x054000,19, 0x055000,2, 0x05500c,5, 0x055028,3, 0x055038,3, 0x055050,1, 0x055080,13, 0x055120,4, 0x055400,26, 0x055470,3, 0x055580,10, 0x0555c0,8, 0x0555e8,2, 0x0555f4,2, 0x055600,5, 0x055618,1, 0x055620,1, 0x055628,1, 0x055630,2, 0x055640,2, 0x055650,2, 0x055690,4, 0x055740,2, 0x055800,11, 0x055880,2, 0x0558b0,2, 0x058000,31, 0x058080,31, 0x058100,31, 0x058180,31, 0x058200,31, 0x058280,31, 0x058300,31, 0x058380,31, 0x058400,64, 0x058504,5, 0x058520,1, 0x058600,6, 0x058620,6, 0x058640,6, 0x058660,6, 0x058680,6, 0x0586a0,6, 0x0586c0,6, 0x0586e0,6, 0x058700,4, 0x058720,3, 0x058730,3, 0x058760,3, 0x058770,1, 0x058800,31, 0x058880,31, 0x058900,31, 0x058980,31, 0x058a00,31, 0x058a80,31, 0x058b00,31, 0x058b80,31, 0x058c00,64, 0x058d04,5, 0x058d20,1, 0x058e00,6, 0x058e20,6, 0x058e40,6, 0x058e60,6, 0x058e80,6, 0x058ea0,6, 0x058ec0,6, 0x058ee0,6, 0x058f00,4, 0x058f20,3, 0x058f30,3, 0x058f60,3, 0x058f70,1, 0x059000,31, 0x059080,31, 0x059100,31, 0x059180,31, 0x059200,31, 0x059280,31, 0x059300,31, 0x059380,31, 0x059400,64, 0x059504,5, 0x059520,1, 0x059600,6, 0x059620,6, 0x059640,6, 0x059660,6, 0x059680,6, 0x0596a0,6, 0x0596c0,6, 0x0596e0,6, 0x059700,4, 0x059720,3, 0x059730,3, 0x059760,3, 0x059770,1, 0x059800,1, 0x059808,10, 0x059840,4, 0x059860,5, 0x059880,4, 0x05a000,22, 0x05a080,22, 0x05a100,22, 0x05a180,22, 0x05a200,22, 0x05a280,22, 0x05a300,22, 0x05a380,22, 0x05a400,11, 0x05a440,11, 0x05a480,11, 0x05a4c0,11, 0x05a500,21, 0x05a560,5, 0x05a580,3, 0x05a590,3, 0x05a5a0,11, 0x05a5d0,3, 0x05a5e0,3, 0x05a600,64, 0x05a800,6, 0x05a820,6, 0x05a840,6, 0x05a860,6, 0x05a880,6, 0x05a8a0,6, 0x05a8c0,6, 0x05a8e0,6, 0x05a900,5, 0x05a91c,1, 0x05a940,6, 0x05a964,1, 0x05a96c,3, 0x05a980,3, 0x05a990,1, 0x05b300,25, 0x05b550,1, 0x05b600,34, 0x05b690,3, 0x05b700,4, 0x05b720,6, 0x05b740,3, 0x05b750,2, 0x05b760,2, 0x05b770,1, 0x05b780,2, 0x05c000,1, 0x05f000,19, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c20,11, 0x060f80,6, 0x060fa0,7, 0x060fd8,2, 0x060fe4,1, 0x060ff0,10, 0x061020,16, 0x061084,1, 0x0610c0,20, 0x061204,1, 0x061220,8, 0x061250,3, 0x061260,5, 0x061280,6, 0x0612a0,6, 0x061300,3, 0x061310,2, 0x061320,2, 0x061330,1, 0x061340,3, 0x061350,18, 0x062000,28, 0x062080,5, 0x0620a0,5, 0x062100,2, 0x06210c,2, 0x062118,1, 0x062120,1, 0x062140,7, 0x062200,3, 0x062210,3, 0x062280,4, 0x0622b8,2, 0x062300,6, 0x062320,7, 0x062340,6, 0x062360,7, 0x062380,2, 0x06238c,3, 0x0623a0,7, 0x0623c0,1, 0x063600,6, 0x063620,15, 0x063660,5, 0x063684,1, 0x063698,15, 0x063700,1, 0x063800,6, 0x063820,12, 0x063860,5, 0x063884,1, 0x063898,15, 0x063904,1, 0x06391c,10, 0x063950,2, 0x0639fc,1, 0x064000,5, 0x064020,1, 0x064030,1, 0x064040,1, 0x064050,1, 0x064060,1, 0x064070,1, 0x064080,1, 0x064090,1, 0x0640a0,1, 0x0640b0,1, 0x0640c0,1, 0x0640d0,1, 0x0640e0,1, 0x0640f0,1, 0x064100,1, 0x064110,1, 0x064120,1, 0x064130,1, 0x064140,1, 0x064150,1, 0x064160,1, 0x064170,1, 0x064180,1, 0x064190,1, 0x0641a0,1, 0x0641b0,1, 0x0641c0,1, 0x0641d0,1, 0x0641e0,1, 0x0641f0,1, 0x064200,1, 0x064210,1, 0x064220,1, 0x064230,1, 0x064240,1, 0x064250,1, 0x064260,1, 0x064270,1, 0x064280,1, 0x064290,1, 0x0642a0,1, 0x0642b0,1, 0x0642c0,1, 0x0642d0,1, 0x0642e0,1, 0x0642f0,1, 0x064300,1, 0x064310,1, 0x064320,1, 0x064330,1, 0x064340,1, 0x064350,1, 0x064360,1, 0x064370,1, 0x064380,1, 0x064390,1, 0x0643a0,1, 0x0643b0,1, 0x0643c0,1, 0x0643d0,1, 0x0643e0,1, 0x0643f0,1, 0x064400,1, 0x064410,1, 0x064420,1, 0x064430,1, 0x064440,1, 0x064450,1, 0x064460,1, 0x064470,1, 0x064480,1, 0x064490,1, 0x0644a0,1, 0x0644b0,1, 0x0644c0,1, 0x0644d0,1, 0x0644e0,1, 0x0644f0,1, 0x064500,1, 0x064510,1, 0x064520,1, 0x064530,1, 0x064540,1, 0x064550,1, 0x064560,1, 0x064570,1, 0x064580,1, 0x064590,1, 0x0645a0,1, 0x0645b0,1, 0x0645c0,1, 0x0645d0,1, 0x0645e0,1, 0x0645f0,1, 0x064600,1, 0x064610,1, 0x064620,1, 0x064630,1, 0x064640,1, 0x064650,1, 0x064660,1, 0x064670,1, 0x064680,1, 0x064690,1, 0x0646a0,1, 0x0646b0,1, 0x0646c0,1, 0x0646d0,1, 0x0646e0,1, 0x0646f0,1, 0x064700,1, 0x064710,1, 0x064720,1, 0x064730,1, 0x064740,1, 0x064750,1, 0x064760,1, 0x064770,1, 0x064780,1, 0x064790,1, 0x0647a0,1, 0x0647b0,1, 0x0647c0,1, 0x0647d0,1, 0x0647e0,1, 0x0647f0,1, 0x064800,1, 0x064810,1, 0x064820,1, 0x064830,1, 0x064840,1, 0x064850,1, 0x064860,1, 0x064870,1, 0x064880,1, 0x064890,1, 0x0648a0,1, 0x0648b0,1, 0x0648c0,1, 0x0648d0,1, 0x0648e0,1, 0x0648f0,1, 0x064900,1, 0x064910,1, 0x064920,1, 0x064930,1, 0x064940,1, 0x064950,1, 0x064960,1, 0x064970,1, 0x064980,1, 0x064990,1, 0x0649a0,1, 0x0649b0,1, 0x0649c0,1, 0x0649d0,1, 0x0649e0,1, 0x0649f0,1, 0x064a00,1, 0x064a10,1, 0x064a20,1, 0x064a30,1, 0x064a40,1, 0x064a50,1, 0x064a60,1, 0x064a70,1, 0x064a80,1, 0x064a90,1, 0x064aa0,1, 0x064ab0,1, 0x064ac0,1, 0x064ad0,1, 0x064ae0,1, 0x064af0,1, 0x064b00,1, 0x064b10,1, 0x064b20,1, 0x064b30,1, 0x064b40,1, 0x064b50,1, 0x064b60,1, 0x064b70,1, 0x064b80,1, 0x064b90,1, 0x064ba0,1, 0x064bb0,1, 0x064bc0,1, 0x064bd0,1, 0x064be0,1, 0x064bf0,1, 0x064c00,1, 0x064c10,1, 0x064c20,1, 0x064c30,1, 0x064c40,1, 0x064c50,1, 0x064c60,1, 0x064c70,1, 0x064c80,1, 0x064c90,1, 0x064ca0,1, 0x064cb0,1, 0x064cc0,1, 0x064cd0,1, 0x064ce0,1, 0x064cf0,1, 0x064d00,1, 0x064d10,1, 0x064d20,1, 0x064d30,1, 0x064d40,1, 0x064d50,1, 0x064d60,1, 0x064d70,1, 0x064d80,1, 0x064d90,1, 0x064da0,1, 0x064db0,1, 0x064dc0,1, 0x064dd0,1, 0x064de0,1, 0x064df0,1, 0x064e00,1, 0x064e10,1, 0x064e20,1, 0x064e30,1, 0x064e40,1, 0x064e50,1, 0x064e60,1, 0x064e70,1, 0x064e80,1, 0x064e90,1, 0x064ea0,1, 0x064eb0,1, 0x064ec0,1, 0x064ed0,1, 0x064ee0,1, 0x064ef0,1, 0x064f00,1, 0x064f10,1, 0x064f20,1, 0x064f30,1, 0x064f40,1, 0x064f50,1, 0x064f60,1, 0x064f70,1, 0x064f80,1, 0x064f90,1, 0x064fa0,1, 0x064fb0,1, 0x064fc0,1, 0x064fd0,1, 0x064fe0,1, 0x064ff0,1, 0x065000,8, 0x066000,5, 0x066020,1, 0x066030,1, 0x066040,1, 0x066050,1, 0x066060,1, 0x066070,1, 0x066080,1, 0x066090,1, 0x0660a0,1, 0x0660b0,1, 0x0660c0,1, 0x0660d0,1, 0x0660e0,1, 0x0660f0,1, 0x066100,1, 0x066110,1, 0x066120,1, 0x066130,1, 0x066140,1, 0x066150,1, 0x066160,1, 0x066170,1, 0x066180,1, 0x066190,1, 0x0661a0,1, 0x0661b0,1, 0x0661c0,1, 0x0661d0,1, 0x0661e0,1, 0x0661f0,1, 0x066200,1, 0x066210,1, 0x066220,1, 0x066230,1, 0x066240,1, 0x066250,1, 0x066260,1, 0x066270,1, 0x066280,1, 0x066290,1, 0x0662a0,1, 0x0662b0,1, 0x0662c0,1, 0x0662d0,1, 0x0662e0,1, 0x0662f0,1, 0x066300,1, 0x066310,1, 0x066320,1, 0x066330,1, 0x066340,1, 0x066350,1, 0x066360,1, 0x066370,1, 0x066380,1, 0x066390,1, 0x0663a0,1, 0x0663b0,1, 0x0663c0,1, 0x0663d0,1, 0x0663e0,1, 0x0663f0,1, 0x066400,1, 0x066410,1, 0x066420,1, 0x066430,1, 0x066440,1, 0x066450,1, 0x066460,1, 0x066470,1, 0x066480,1, 0x066490,1, 0x0664a0,1, 0x0664b0,1, 0x0664c0,1, 0x0664d0,1, 0x0664e0,1, 0x0664f0,1, 0x066500,1, 0x066510,1, 0x066520,1, 0x066530,1, 0x066540,1, 0x066550,1, 0x066560,1, 0x066570,1, 0x066580,1, 0x066590,1, 0x0665a0,1, 0x0665b0,1, 0x0665c0,1, 0x0665d0,1, 0x0665e0,1, 0x0665f0,1, 0x066600,1, 0x066610,1, 0x066620,1, 0x066630,1, 0x066640,1, 0x066650,1, 0x066660,1, 0x066670,1, 0x066680,1, 0x066690,1, 0x0666a0,1, 0x0666b0,1, 0x0666c0,1, 0x0666d0,1, 0x0666e0,1, 0x0666f0,1, 0x066700,1, 0x066710,1, 0x066720,1, 0x066730,1, 0x066740,1, 0x066750,1, 0x066760,1, 0x066770,1, 0x066780,1, 0x066790,1, 0x0667a0,1, 0x0667b0,1, 0x0667c0,1, 0x0667d0,1, 0x0667e0,1, 0x0667f0,1, 0x066800,1, 0x066810,1, 0x066820,1, 0x066830,1, 0x066840,1, 0x066850,1, 0x066860,1, 0x066870,1, 0x066880,1, 0x066890,1, 0x0668a0,1, 0x0668b0,1, 0x0668c0,1, 0x0668d0,1, 0x0668e0,1, 0x0668f0,1, 0x066900,1, 0x066910,1, 0x066920,1, 0x066930,1, 0x066940,1, 0x066950,1, 0x066960,1, 0x066970,1, 0x066980,1, 0x066990,1, 0x0669a0,1, 0x0669b0,1, 0x0669c0,1, 0x0669d0,1, 0x0669e0,1, 0x0669f0,1, 0x066a00,1, 0x066a10,1, 0x066a20,1, 0x066a30,1, 0x066a40,1, 0x066a50,1, 0x066a60,1, 0x066a70,1, 0x066a80,1, 0x066a90,1, 0x066aa0,1, 0x066ab0,1, 0x066ac0,1, 0x066ad0,1, 0x066ae0,1, 0x066af0,1, 0x066b00,1, 0x066b10,1, 0x066b20,1, 0x066b30,1, 0x066b40,1, 0x066b50,1, 0x066b60,1, 0x066b70,1, 0x066b80,1, 0x066b90,1, 0x066ba0,1, 0x066bb0,1, 0x066bc0,1, 0x066bd0,1, 0x066be0,1, 0x066bf0,1, 0x066c00,1, 0x066c10,1, 0x066c20,1, 0x066c30,1, 0x066c40,1, 0x066c50,1, 0x066c60,1, 0x066c70,1, 0x066c80,1, 0x066c90,1, 0x066ca0,1, 0x066cb0,1, 0x066cc0,1, 0x066cd0,1, 0x066ce0,1, 0x066cf0,1, 0x066d00,1, 0x066d10,1, 0x066d20,1, 0x066d30,1, 0x066d40,1, 0x066d50,1, 0x066d60,1, 0x066d70,1, 0x066d80,1, 0x066d90,1, 0x066da0,1, 0x066db0,1, 0x066dc0,1, 0x066dd0,1, 0x066de0,1, 0x066df0,1, 0x066e00,1, 0x066e10,1, 0x066e20,1, 0x066e30,1, 0x066e40,1, 0x066e50,1, 0x066e60,1, 0x066e70,1, 0x066e80,1, 0x066e90,1, 0x066ea0,1, 0x066eb0,1, 0x066ec0,1, 0x066ed0,1, 0x066ee0,1, 0x066ef0,1, 0x066f00,1, 0x066f10,1, 0x066f20,1, 0x066f30,1, 0x066f40,1, 0x066f50,1, 0x066f60,1, 0x066f70,1, 0x066f80,1, 0x066f90,1, 0x066fa0,1, 0x066fb0,1, 0x066fc0,1, 0x066fd0,1, 0x066fe0,1, 0x066ff0,1, 0x067000,16, 0x067100,8, 0x067124,7, 0x067144,7, 0x067200,3, 0x0677f8,2, 0x068000,7, 0x068020,6, 0x06803c,32, 0x0680c0,3, 0x0680d0,6, 0x0680f0,2, 0x068100,3, 0x068118,1, 0x068120,2, 0x068130,2, 0x068140,2, 0x068150,24, 0x0681c0,7, 0x068200,7, 0x068220,6, 0x06823c,32, 0x0682c0,3, 0x0682d0,6, 0x0682f0,2, 0x068300,3, 0x068318,1, 0x068320,2, 0x068330,2, 0x068340,2, 0x068350,24, 0x0683c0,7, 0x068400,7, 0x068420,6, 0x06843c,32, 0x0684c0,3, 0x0684d0,6, 0x0684f0,2, 0x068500,3, 0x068518,1, 0x068520,2, 0x068530,2, 0x068540,2, 0x068550,24, 0x0685c0,7, 0x068900,4, 0x068920,1, 0x068940,4, 0x068960,1, 0x068980,4, 0x0689a0,1, 0x0689c0,4, 0x0689e0,1, 0x068a00,4, 0x068a20,1, 0x068a40,4, 0x068a60,1, 0x068a80,4, 0x068aa0,1, 0x068ac0,4, 0x068ae0,1, 0x068b20,13, 0x068b60,13, 0x068ba0,2, 0x068c40,1, 0x068c64,5, 0x068c84,5, 0x068ca4,1, 0x068cac,3, 0x068cc4,1, 0x068ccc,3, 0x068ce0,1, 0x068d00,13, 0x068d40,7, 0x068d60,12, 0x069000,19, 0x069050,7, 0x0690a0,2, 0x0690c0,15, 0x069100,3, 0x069140,13, 0x069180,13, 0x0691c0,12, 0x069240,2, 0x069260,1, 0x069280,22, 0x069300,22, 0x069380,22, 0x069400,22, 0x069480,22, 0x069500,22, 0x069580,22, 0x069600,22, 0x069680,11, 0x069800,130, 0x069b20,2, 0x069c00,16, 0x069d00,27, 0x069d84,1, 0x069d94,10, 0x06a000,12, 0x06a038,14, 0x06a080,6, 0x06a0a0,2, 0x06a100,12, 0x06a138,14, 0x06a180,6, 0x06a1a0,2, 0x06a200,27, 0x06a284,1, 0x06a290,13, 0x06a2d0,4, 0x06a300,7, 0x06a400,10, 0x06a480,10, 0x06a500,15, 0x06a540,12, 0x06a580,4, 0x06a594,2, 0x06a5a0,6, 0x06a600,11, 0x06a630,8, 0x06a800,73, 0x06a930,3, 0x06aa00,59, 0x06aaf0,3, 0x06ac00,8, 0x06b000,35, 0x06bc00,10, 0x06bc80,3, 0x070b00,14, 0x070b40,14, 0x070b84,1, 0x070c00,1, 0x070c10,3, 0x070c40,2, 0x070c50,8, 0x071000,7, 0x072000,7, 0x073000,114, 0x0731d0,3, 0x0731e0,3, 0x0731f0,3, 0x073200,2, 0x073210,1, 0x073218,5, 0x073230,1, 0x073240,7, 0x073260,40, 0x073338,15, 0x073380,2, 0x074000,4, 0x074044,7, 0x074080,9, 0x074100,48, 0x076000,2048, 0x078004,1, 0x078020,17, 0x078070,9, 0x0780a0,7, 0x0780c0,12, 0x078100,12, 0x078140,7, 0x078180,8, 0x07fa00,6, 0x07fa80,3, 0x07fa90,10, 0x07fac0,4, 0x080000,12, 0x080040,524, 0x080880,268, 0x080cc0,2572, 0x083500,524, 0x083d40,524, 0x084580,268, 0x0849c0,268, 0x084e00,268, 0x085240,430, 0x090000,19, 0x090080,16, 0x090100,4, 0x090400,19, 0x090480,16, 0x090500,4, 0x090800,19, 0x090880,16, 0x090900,4, 0x090c00,19, 0x090c80,16, 0x090d00,4, 0x091000,19, 0x091080,16, 0x091100,4, 0x091400,19, 0x091480,16, 0x091500,4, 0x091800,19, 0x091880,16, 0x091900,4, 0x091c00,19, 0x091c80,16, 0x091d00,4, 0x092000,19, 0x092080,16, 0x092100,4, 0x092400,19, 0x092480,16, 0x092500,4, 0x092800,19, 0x092880,16, 0x092900,4, 0x092c00,19, 0x092c80,16, 0x092d00,4, 0x093000,19, 0x093080,16, 0x093100,4, 0x093400,19, 0x093480,16, 0x093500,4, 0x093800,19, 0x093880,16, 0x093900,4, 0x093c00,19, 0x093c80,16, 0x093d00,4, 0x094000,19, 0x094080,16, 0x094100,4, 0x094400,19, 0x094480,16, 0x094500,4, 0x094800,19, 0x094880,16, 0x094900,4, 0x094c00,19, 0x094c80,16, 0x094d00,4, 0x095000,19, 0x095080,16, 0x095100,4, 0x095400,19, 0x095480,16, 0x095500,4, 0x095800,19, 0x095880,20, 0x095900,4, 0x095c00,19, 0x095c80,18, 0x095d00,4, 0x096000,19, 0x096080,8, 0x096100,4, 0x0a0000,3, 0x0a0018,2, 0x0a0024,14, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,4, 0x0a0120,6, 0x0a0140,3, 0x0a0150,1, 0x0a015c,2, 0x0a0180,2, 0x0a019c,16, 0x0a01e0,1, 0x0a01e8,5, 0x0a0200,3, 0x0a0218,2, 0x0a0224,14, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,4, 0x0a0320,6, 0x0a0340,3, 0x0a0350,1, 0x0a035c,2, 0x0a0380,2, 0x0a039c,16, 0x0a03e0,1, 0x0a03e8,5, 0x0a0400,3, 0x0a0418,2, 0x0a0424,14, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,4, 0x0a0520,6, 0x0a0540,3, 0x0a0550,1, 0x0a055c,2, 0x0a0580,2, 0x0a059c,16, 0x0a05e0,1, 0x0a05e8,5, 0x0a0600,3, 0x0a0618,2, 0x0a0624,14, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,4, 0x0a0720,6, 0x0a0740,3, 0x0a0750,1, 0x0a075c,2, 0x0a0780,2, 0x0a079c,16, 0x0a07e0,1, 0x0a07e8,5, 0x0a0800,3, 0x0a0818,2, 0x0a0824,14, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,4, 0x0a0920,6, 0x0a0940,3, 0x0a0950,1, 0x0a095c,2, 0x0a0980,2, 0x0a099c,16, 0x0a09e0,1, 0x0a09e8,5, 0x0a0a00,3, 0x0a0a18,2, 0x0a0a24,14, 0x0a0a60,27, 0x0a0ad0,3, 0x0a0ae0,3, 0x0a0af0,3, 0x0a0b00,4, 0x0a0b20,6, 0x0a0b40,3, 0x0a0b50,1, 0x0a0b5c,2, 0x0a0b80,2, 0x0a0b9c,16, 0x0a0be0,1, 0x0a0be8,5, 0x0a0c00,3, 0x0a0c18,2, 0x0a0c24,14, 0x0a0c60,27, 0x0a0cd0,3, 0x0a0ce0,3, 0x0a0cf0,3, 0x0a0d00,4, 0x0a0d20,6, 0x0a0d40,3, 0x0a0d50,1, 0x0a0d5c,2, 0x0a0d80,2, 0x0a0d9c,16, 0x0a0de0,1, 0x0a0de8,5, 0x0a0e00,3, 0x0a0e18,2, 0x0a0e24,14, 0x0a0e60,27, 0x0a0ed0,3, 0x0a0ee0,3, 0x0a0ef0,3, 0x0a0f00,4, 0x0a0f20,6, 0x0a0f40,3, 0x0a0f50,1, 0x0a0f5c,2, 0x0a0f80,2, 0x0a0f9c,16, 0x0a0fe0,1, 0x0a0fe8,5, 0x0a1844,1, 0x0a2024,3, 0x0a2050,3, 0x0a2088,2, 0x0a20a0,7, 0x0a20c0,7, 0x0a20e0,4, 0x0a2100,4, 0x0a2120,7, 0x0a2200,71, 0x0a2320,7, 0x0a2348,6, 0x0a2580,3, 0x0a25c0,3, 0x0a2600,19, 0x0a2700,19, 0x0a2800,99, 0x0a2a00,16, 0x0a2a80,25, 0x0a2b00,1, 0x0a3010,4, 0x0a3040,1, 0x0a3070,1, 0x0a3080,2, 0x0a308c,1, 0x0a3098,1, 0x0a3404,1, 0x0a3440,20, 0x0a3494,1, 0x0a349c,7, 0x0a34e0,15, 0x0a3520,7, 0x0a3540,7, 0x0a3560,7, 0x0a3580,7, 0x0a35a0,7, 0x0a35c0,7, 0x0a35e0,7, 0x0a3600,17, 0x0a3650,6, 0x0a3684,10, 0x0a3a00,10, 0x0a3a30,1, 0x0a3a40,8, 0x0a3a64,5, 0x0a3c00,128, 0x0a3e08,2, 0x0a3e18,3, 0x0a4a04,3, 0x0a4b00,33, 0x0a4b90,3, 0x0a5000,8, 0x0a5050,4, 0x0a5070,4, 0x0a6000,13, 0x0a6200,17, 0x0a6248,1, 0x0a6258,1, 0x0a6260,8, 0x0a6284,1, 0x0a62a0,32, 0x0a6348,2, 0x0a67f0,3, 0x0a6a10,12, 0x0a7000,19, 0x0a7c00,10, 0x0a7c80,3, 0x0a8000,1, 0x0a8010,12, 0x0a8044,1, 0x0a8054,5, 0x0a8404,1, 0x0a8428,54, 0x0a8600,32, 0x0a8704,1, 0x0a8800,1, 0x0a8900,1, 0x0a8a00,2, 0x0a8a20,11, 0x0a8a80,10, 0x0a8b00,1, 0x0c0000,19, 0x0c0c00,10, 0x0c0c80,3, 0x0c0cc0,1, 0x0c1800,19, 0x0c1880,3, 0x0c1900,13, 0x0c1940,3, 0x0c1950,6, 0x0c2000,22, 0x0c2060,6, 0x0c2080,11, 0x0c2100,11, 0x0c2204,1, 0x0c2224,21, 0x0c2280,16, 0x0c2800,21, 0x0c2860,5, 0x0c2880,6, 0x0c28a0,5, 0x0c28c0,6, 0x0c2900,21, 0x0c2960,5, 0x0c2980,6, 0x0c29a0,5, 0x0c29c0,6, 0x0c2a00,21, 0x0c2a60,5, 0x0c2a80,6, 0x0c2aa0,5, 0x0c2ac0,6, 0x0c2b00,21, 0x0c2b60,5, 0x0c2b80,6, 0x0c2ba0,5, 0x0c2bc0,6, 0x0c2c00,9, 0x0c2c48,7, 0x0c2c68,2, 0x0c2c74,9, 0x0c2c9c,2, 0x0c2d00,14, 0x0c2d40,14, 0x0c2d80,28, 0x0c2e00,19, 0x0c2e50,3, 0x0c2e60,25, 0x0c2ec8,1, 0x0c2ed0,2, 0x0c2ee0,7, 0x0c2f00,1, 0x0c2f08,2, 0x0c2ffc,9, 0x0c3024,10, 0x0c3050,22, 0x0c3100,8, 0x0c3124,10, 0x0c3150,22, 0x0c3200,8, 0x0c3224,10, 0x0c3250,22, 0x0c3300,8, 0x0c3324,10, 0x0c3350,22, 0x0c3400,8, 0x0c3424,10, 0x0c3450,22, 0x0c3500,8, 0x0c3524,10, 0x0c3550,22, 0x0c3600,8, 0x0c3624,10, 0x0c3650,22, 0x0c3700,8, 0x0c3724,10, 0x0c3750,22, 0x0c3800,8, 0x0c3824,10, 0x0c3850,22, 0x0c3904,1, 0x0c3914,10, 0x0c3948,11, 0x0c3980,1, 0x0c3a00,6, 0x0c3a20,2, 0x0c3a2c,2, 0x0c4000,13, 0x0c4040,2, 0x0c4054,4, 0x0c4080,27, 0x0c4100,12, 0x0c4140,11, 0x0c4170,2, 0x0c4180,28, 0x0c4200,6, 0x0c4240,6, 0x0c425c,3, 0x0c4280,5, 0x0c42a0,8, 0x0c4400,14, 0x0c4440,14, 0x0c4480,14, 0x0c44c0,14, 0x0c4540,3, 0x0c4600,7, 0x0c4620,14, 0x0c4680,5, 0x0c46a0,7, 0x0c4800,13, 0x0c4840,2, 0x0c4854,4, 0x0c4880,27, 0x0c4900,12, 0x0c4940,11, 0x0c4970,2, 0x0c4980,28, 0x0c4a00,6, 0x0c4a40,6, 0x0c4a5c,3, 0x0c4a80,5, 0x0c4aa0,8, 0x0c4c00,14, 0x0c4c40,14, 0x0c4c80,14, 0x0c4cc0,14, 0x0c4d40,3, 0x0c4e00,7, 0x0c4e20,14, 0x0c4e80,5, 0x0c4ea0,7, 0x0c5000,13, 0x0c5040,2, 0x0c5054,4, 0x0c5080,27, 0x0c5100,12, 0x0c5140,11, 0x0c5170,2, 0x0c5180,28, 0x0c5200,6, 0x0c5240,6, 0x0c525c,3, 0x0c5280,5, 0x0c52a0,8, 0x0c5400,14, 0x0c5440,14, 0x0c5480,14, 0x0c54c0,14, 0x0c5540,3, 0x0c5600,7, 0x0c5620,14, 0x0c5680,5, 0x0c56a0,7, 0x0c5800,13, 0x0c5840,2, 0x0c5854,4, 0x0c5880,27, 0x0c5900,12, 0x0c5940,11, 0x0c5970,2, 0x0c5980,28, 0x0c5a00,6, 0x0c5a40,6, 0x0c5a5c,3, 0x0c5a80,5, 0x0c5aa0,8, 0x0c5c00,14, 0x0c5c40,14, 0x0c5c80,14, 0x0c5cc0,14, 0x0c5d40,3, 0x0c5e00,7, 0x0c5e20,14, 0x0c5e80,5, 0x0c5ea0,7, 0x0c6000,8, 0x0c6040,8, 0x0c6080,1, 0x0c6098,6, 0x0c6100,10, 0x0c6140,3, 0x0c6150,2, 0x0c6180,2, 0x0c6200,6, 0x0c6220,17, 0x0c6280,4, 0x0c6300,8, 0x0c6400,2, 0x0c6480,2, 0x0c7000,40, 0x0c7100,64, 0x0c8000,25, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c0,6, 0x0c80e0,2, 0x0c80ec,2, 0x0c8100,2, 0x0c810c,2, 0x0c8180,16, 0x0ca000,3, 0x0ca010,21, 0x0ca068,14, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca160,1, 0x0ca184,1, 0x0ca194,4, 0x0ca1c0,1, 0x0ca1c8,7, 0x0ca1e8,3, 0x0ca1f8,21, 0x0ca280,19, 0x0ca300,80, 0x0ca6fc,1, 0x0ca800,72, 0x0cb000,4, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,11, 0x0cb200,2, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,5, 0x0cb400,5, 0x0cb59c,1, 0x0cb5ac,9, 0x0cb604,1, 0x0cb610,6, 0x0cb640,13, 0x0d0000,4, 0x0d0014,1, 0x0d0020,3, 0x0d0030,3, 0x0d0040,8, 0x0d0064,5, 0x0d007c,2, 0x0d00a0,28, 0x0d0114,1, 0x0d0120,3, 0x0d0130,3, 0x0d0140,8, 0x0d0164,5, 0x0d017c,2, 0x0d01a0,28, 0x0d0214,1, 0x0d0220,3, 0x0d0230,3, 0x0d0240,8, 0x0d0264,5, 0x0d027c,2, 0x0d02a0,28, 0x0d0314,1, 0x0d0320,3, 0x0d0330,3, 0x0d0340,8, 0x0d0364,5, 0x0d037c,2, 0x0d03a0,28, 0x0d0420,2, 0x0d042c,2, 0x0d0440,4, 0x0d0460,2, 0x0d046c,2, 0x0d0480,4, 0x0d04a0,2, 0x0d04ac,2, 0x0d04c0,4, 0x0d04e0,2, 0x0d04ec,2, 0x0d0500,2, 0x0d050c,4, 0x0d0520,2, 0x0d052c,4, 0x0d0540,2, 0x0d054c,4, 0x0d0560,2, 0x0d056c,4, 0x0d0580,3, 0x0d05c0,1, 0x0d0600,1, 0x0d0608,3, 0x0d0618,3, 0x0d0628,3, 0x0d0638,2, 0x0d0800,18, 0x0d0880,13, 0x0d08f0,3, 0x0d0900,18, 0x0d0980,13, 0x0d09f0,3, 0x0d0a00,18, 0x0d0a80,13, 0x0d0af0,3, 0x0d0b00,18, 0x0d0b80,13, 0x0d0bf0,3, 0x0d0c00,18, 0x0d0c50,2, 0x0d0c60,6, 0x0d0c80,18, 0x0d0cd0,2, 0x0d0ce0,6, 0x0d0d00,18, 0x0d0d50,2, 0x0d0d60,6, 0x0d0d80,18, 0x0d0dd0,2, 0x0d0de0,6, 0x0d0e00,4, 0x0d0e20,4, 0x0d0e40,4, 0x0d0e60,4, 0x0d0e80,37, 0x0d0f20,5, 0x0d0f40,5, 0x0d0f60,5, 0x0d1000,12, 0x0d1200,1, 0x0d1208,6, 0x0d1228,9, 0x0d1280,1, 0x0d1288,6, 0x0d12a8,9, 0x0d1300,1, 0x0d1308,6, 0x0d1328,9, 0x0d1380,1, 0x0d1388,6, 0x0d13a8,9, 0x0d1400,15, 0x0d1440,15, 0x0d1480,15, 0x0d14c0,15, 0x0d1600,7, 0x0d1620,7, 0x0d1640,7, 0x0d1660,7, 0x0d1680,4, 0x0d169c,11, 0x0d16d0,2, 0x0d16e0,2, 0x0d16f0,2, 0x0d1700,7, 0x0d1720,7, 0x0d1740,7, 0x0d1760,7, 0x0d17c0,43, 0x0d1880,4, 0x0d1898,3, 0x0d19a4,1, 0x0d1a00,4, 0x0d1a20,4, 0x0d1a40,6, 0x0d1a80,4, 0x0d1aa0,4, 0x0d1ac0,6, 0x0d1b00,4, 0x0d1b20,4, 0x0d1b40,6, 0x0d1b80,4, 0x0d1ba0,4, 0x0d1bc0,6, 0x0d2000,16, 0x0d2060,7, 0x0d2080,16, 0x0d20e0,7, 0x0d2100,16, 0x0d2160,7, 0x0d2180,16, 0x0d21e0,7, 0x0d2200,19, 0x0d2280,19, 0x0d2300,19, 0x0d2380,19, 0x0d2400,14, 0x0d243c,9, 0x0d2464,6, 0x0d2480,7, 0x0d24a0,2, 0x0d24ac,2, 0x0d2500,14, 0x0d253c,9, 0x0d2564,6, 0x0d2580,7, 0x0d25a0,2, 0x0d25ac,2, 0x0d2600,14, 0x0d263c,9, 0x0d2664,6, 0x0d2680,7, 0x0d26a0,2, 0x0d26ac,2, 0x0d2700,14, 0x0d273c,9, 0x0d2764,6, 0x0d2780,7, 0x0d27a0,2, 0x0d27ac,2, 0x0d2800,19, 0x0d2880,19, 0x0d2900,19, 0x0d2980,19, 0x0d2a10,2, 0x0d2a1c,1, 0x0d2a50,2, 0x0d2a5c,1, 0x0d2a90,2, 0x0d2a9c,1, 0x0d2ad0,2, 0x0d2adc,1, 0x0d2b00,1, 0x0d2b20,1, 0x0d2b28,4, 0x0d2b40,1, 0x0d2b60,1, 0x0d2b68,4, 0x0d2b80,1, 0x0d2ba0,1, 0x0d2ba8,4, 0x0d2bc0,1, 0x0d2be0,1, 0x0d2be8,4, 0x0d2c00,7, 0x0d2c20,1, 0x0d2c54,18, 0x0d2ca0,1, 0x0d2cd4,18, 0x0d2d20,1, 0x0d2d54,18, 0x0d2da0,1, 0x0d2dd4,19, 0x0d3000,32, 0x0d3100,7, 0x0d3120,7, 0x0d3140,7, 0x0d3160,7, 0x0d3180,3, 0x0d4000,1, 0x0d4008,3, 0x0d4038,1, 0x0d4044,1, 0x0d4050,2, 0x0d4060,8, 0x0d4100,8, 0x0d8000,11, 0x0d8040,3, 0x0d8064,5, 0x0d8200,7, 0x0d8220,6, 0x0d8240,7, 0x0d8260,6, 0x0d8280,6, 0x0d82a0,2, 0x0d82ac,2, 0x0d82c0,7, 0x0d82e0,7, 0x0d8300,2, 0x0d830c,2, 0x0d8320,6, 0x0da000,25, 0x0da070,6, 0x0da08c,1, 0x0da094,1, 0x0da09c,8, 0x0da104,23, 0x0da180,7, 0x0da1a0,6, 0x0da1c0,7, 0x0da1e0,6, 0x0da200,4, 0x0da220,4, 0x0da240,11, 0x0da270,3, 0x0da280,28, 0x0da300,24, 0x0da380,20, 0x0da400,61, 0x0da500,25, 0x0da568,4, 0x0da580,2, 0x0da5a0,1, 0x0da5c0,11, 0x0da600,9, 0x0da640,3, 0x0da650,3, 0x0da664,3, 0x0da680,22, 0x0da700,17, 0x0da800,11, 0x0db000,594, 0x0dc000,25, 0x0dc070,6, 0x0dc08c,1, 0x0dc094,1, 0x0dc09c,8, 0x0dc104,23, 0x0dc180,7, 0x0dc1a0,6, 0x0dc1c0,7, 0x0dc1e0,6, 0x0dc200,4, 0x0dc220,4, 0x0dc240,11, 0x0dc270,3, 0x0dc280,28, 0x0dc300,24, 0x0dc380,20, 0x0dc400,61, 0x0dc500,25, 0x0dc568,4, 0x0dc580,2, 0x0dc5a0,1, 0x0dc5c0,11, 0x0dc600,9, 0x0dc640,3, 0x0dc650,3, 0x0dc664,3, 0x0dc680,22, 0x0dc700,17, 0x0dc800,11, 0x0dd000,594, 0x0df000,7, 0x0df048,7, 0x0df080,8, 0x0df100,7, 0x0df148,7, 0x0df180,8, 0x0e8000,1, 0x0e8008,2, 0x0e8058,3, 0x0e8120,2, 0x0e8130,2, 0x0e8140,1, 0x0e8184,11, 0x0e81c4,3, 0x0e81dc,3, 0x0e8280,13, 0x0e8400,16, 0x0e8444,7, 0x0e8500,4, 0x0e8604,1, 0x0e86f0,68, 0x0e8804,1, 0x0e8824,7, 0x0e8844,1, 0x0e884c,27, 0x0e88d4,2, 0x0e8c00,1, 0x0e8c08,3, 0x0e8c80,20, 0x0e8d00,3, 0x0e8d20,8, 0x0e8d80,4, 0x0e8da0,6, 0x0e8dbc,9, 0x0e8e00,21, 0x0e8e80,19, 0x0e9000,35, 0x0e9090,2, 0x0e90f0,1, 0x0e90f8,1, 0x0e9100,1, 0x0e9108,5, 0x0e9138,2, 0x0e9144,1, 0x0e9160,13, 0x0e91a0,3, 0x0e9200,2, 0x0e9214,11, 0x0e9244,7, 0x0e92b8,2, 0x0e92c4,7, 0x0e9310,1, 0x0e9340,4, 0x0e9380,7, 0x0e9400,14, 0x0e9440,10, 0x0e947c,1, 0x0e9700,2, 0x0e9720,8, 0x0e9800,3, 0x0e9810,3, 0x0e9820,3, 0x0e9830,3, 0x0e9840,3, 0x0e9850,3, 0x0e9860,3, 0x0e9870,3, 0x0e9880,3, 0x0e9890,3, 0x0e98a0,3, 0x0e98b0,3, 0x0e98c0,3, 0x0e98d0,3, 0x0e98e0,3, 0x0e98f0,3, 0x0e9900,68, 0x0e9c00,36, 0x0e9d00,3, 0x0e9d40,2, 0x0e9d4c,1, 0x0e9d84,1, 0x0e9d90,4, 0x0e9e00,35, 0x0e9f00,11, 0x0e9f60,2, 0x0e9f70,17, 0x0e9fc0,2, 0x0ea000,19, 0x0eb000,7, 0x0eb020,2, 0x0eb02c,3, 0x0eb040,6, 0x0eb060,6, 0x0eb080,6, 0x0eb0a0,7, 0x0eb0c0,7, 0x0eb0e0,6, 0x0eb100,6, 0x0eb120,6, 0x0eb140,6, 0x0eb160,6, 0x0eb180,6, 0x0eb1a0,6, 0x0eb1c0,6, 0x0eb1e0,6, 0x0eb200,7, 0x0eb220,7, 0x0eb240,4, 0x0eb260,5, 0x0eb800,4, 0x0f0000,4, 0x0f0014,11, 0x0f0044,10, 0x0f007c,2, 0x0f0088,20, 0x0f0180,6, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,4, 0x0f0480,12, 0x0f0580,7, 0x0f05a0,1, 0x0f05c0,2, 0x0f05d0,10, 0x0f0af0,3, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba0,3, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,3, 0x0f0c50,56, 0x0f0d50,31, 0x0f0dd0,2, 0x0f0ffc,4, 0x0f1030,2, 0x0f1040,10, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,28, 0x0f1400,99, 0x0f1800,19, 0x0f1880,11, 0x0f18b0,3, 0x0f18c0,3, 0x0f18d0,3, 0x0f1c00,9, 0x0f1d00,67, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f80,14, 0x0f1fbc,4, 0x0f2400,24, 0x0f24a4,1, 0x0f2800,2, 0x0f2840,16, 0x0f3004,1, 0x0f30dc,78, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f8000,5, 0x0f801c,12, 0x0f805c,3, 0x0f8080,8, 0x0f8100,5, 0x0f811c,12, 0x0f815c,3, 0x0f8180,8, 0x0f8200,5, 0x0f821c,12, 0x0f825c,3, 0x0f8280,8, 0x0f8300,5, 0x0f831c,12, 0x0f835c,3, 0x0f8380,8, 0x0f8400,5, 0x0f841c,12, 0x0f845c,3, 0x0f8480,8, 0x0f8500,5, 0x0f851c,12, 0x0f855c,3, 0x0f8580,8, 0x0f8600,5, 0x0f861c,12, 0x0f865c,3, 0x0f8680,8, 0x0f8700,5, 0x0f871c,12, 0x0f875c,3, 0x0f8780,8, 0x0f8800,5, 0x0f881c,12, 0x0f885c,3, 0x0f8880,8, 0x0f8900,5, 0x0f891c,12, 0x0f895c,3, 0x0f8980,8, 0x0f8a00,5, 0x0f8a1c,12, 0x0f8a5c,3, 0x0f8a80,8, 0x0f8b00,5, 0x0f8b1c,12, 0x0f8b5c,3, 0x0f8b80,8, 0x0f8c00,5, 0x0f8c1c,12, 0x0f8c5c,3, 0x0f8c80,8, 0x0f8d00,5, 0x0f8d1c,12, 0x0f8d5c,3, 0x0f8d80,8, 0x0f8e00,5, 0x0f8e1c,12, 0x0f8e5c,3, 0x0f8e80,8, 0x0f8f00,5, 0x0f8f1c,12, 0x0f8f5c,3, 0x0f8f80,8, 0x0f9000,5, 0x0f901c,12, 0x0f905c,3, 0x0f9080,8, 0x0f9100,5, 0x0f911c,12, 0x0f915c,3, 0x0f9180,8, 0x0f9200,5, 0x0f921c,12, 0x0f925c,3, 0x0f9280,8, 0x0f9300,5, 0x0f931c,12, 0x0f935c,3, 0x0f9380,8, 0x0f9400,5, 0x0f941c,12, 0x0f945c,3, 0x0f9480,8, 0x0f9500,5, 0x0f951c,12, 0x0f955c,3, 0x0f9580,8, 0x0f9600,5, 0x0f961c,12, 0x0f965c,3, 0x0f9680,8, 0x0f9700,5, 0x0f971c,12, 0x0f975c,3, 0x0f9780,8, 0x0f9800,5, 0x0f981c,12, 0x0f985c,3, 0x0f9880,8, 0x0f9900,5, 0x0f991c,12, 0x0f995c,3, 0x0f9980,8, 0x0f9a00,5, 0x0f9a1c,12, 0x0f9a5c,3, 0x0f9a80,8, 0x0f9b00,5, 0x0f9b1c,12, 0x0f9b5c,3, 0x0f9b80,8, 0x0f9c00,5, 0x0f9c1c,12, 0x0f9c5c,3, 0x0f9c80,8, 0x0f9d00,5, 0x0f9d1c,12, 0x0f9d5c,3, 0x0f9d80,8, 0x0f9e00,5, 0x0f9e1c,12, 0x0f9e5c,3, 0x0f9e80,8, 0x0f9f00,5, 0x0f9f1c,12, 0x0f9f5c,3, 0x0f9f80,8, 0x0fa000,5, 0x0fa01c,12, 0x0fa05c,3, 0x0fa080,8, 0x0fa100,5, 0x0fa11c,12, 0x0fa15c,3, 0x0fa180,8, 0x0fa200,5, 0x0fa21c,12, 0x0fa25c,3, 0x0fa280,8, 0x0fa300,5, 0x0fa31c,12, 0x0fa35c,3, 0x0fa380,8, 0x0fa400,5, 0x0fa41c,12, 0x0fa45c,3, 0x0fa480,8, 0x0fa500,5, 0x0fa51c,12, 0x0fa55c,3, 0x0fa580,8, 0x0fa600,5, 0x0fa61c,12, 0x0fa65c,3, 0x0fa680,8, 0x0fa700,5, 0x0fa71c,12, 0x0fa75c,3, 0x0fa780,8, 0x0fa800,5, 0x0fa81c,12, 0x0fa85c,3, 0x0fa880,8, 0x0fa900,5, 0x0fa91c,12, 0x0fa95c,3, 0x0fa980,8, 0x0faa00,5, 0x0faa1c,12, 0x0faa5c,3, 0x0faa80,8, 0x0fab00,5, 0x0fab1c,12, 0x0fab5c,3, 0x0fab80,8, 0x0fac00,5, 0x0fac1c,12, 0x0fac5c,3, 0x0fac80,8, 0x0fad00,5, 0x0fad1c,12, 0x0fad5c,3, 0x0fad80,8, 0x0fae00,5, 0x0fae1c,12, 0x0fae5c,3, 0x0fae80,8, 0x0faf00,5, 0x0faf1c,12, 0x0faf5c,3, 0x0faf80,8, 0x0fb000,5, 0x0fb01c,12, 0x0fb05c,3, 0x0fb080,8, 0x0fb100,5, 0x0fb11c,12, 0x0fb15c,3, 0x0fb180,8, 0x0fb200,5, 0x0fb21c,12, 0x0fb25c,3, 0x0fb280,8, 0x0fb300,5, 0x0fb31c,12, 0x0fb35c,3, 0x0fb380,8, 0x0fb400,5, 0x0fb41c,12, 0x0fb45c,3, 0x0fb480,8, 0x0fb500,5, 0x0fb51c,12, 0x0fb55c,3, 0x0fb580,8, 0x0fb600,5, 0x0fb61c,12, 0x0fb65c,3, 0x0fb680,8, 0x0fb700,5, 0x0fb71c,12, 0x0fb75c,3, 0x0fb780,8, 0x0fb800,5, 0x0fb81c,12, 0x0fb85c,3, 0x0fb880,8, 0x0fb900,5, 0x0fb91c,12, 0x0fb95c,3, 0x0fb980,8, 0x0fba00,5, 0x0fba1c,12, 0x0fba5c,3, 0x0fba80,8, 0x0fbb00,5, 0x0fbb1c,12, 0x0fbb5c,3, 0x0fbb80,8, 0x0fbc00,5, 0x0fbc1c,12, 0x0fbc5c,3, 0x0fbc80,8, 0x0fbd00,5, 0x0fbd1c,12, 0x0fbd5c,3, 0x0fbd80,8, 0x0fbe00,5, 0x0fbe1c,12, 0x0fbe5c,3, 0x0fbe80,8, 0x0fbf00,5, 0x0fbf1c,12, 0x0fbf5c,3, 0x0fbf80,8, 0x0fc000,5, 0x0fc01c,12, 0x0fc05c,3, 0x0fc080,8, 0x0fc100,5, 0x0fc11c,12, 0x0fc15c,3, 0x0fc180,8, 0x100000,87040, 0x180000,7, 0x180100,7, 0x180124,4, 0x180138,2, 0x180180,4, 0x180198,6, 0x180200,7, 0x180300,7, 0x180324,4, 0x180338,2, 0x180380,4, 0x180398,6, 0x180400,12, 0x180434,29, 0x1804c0,1, 0x1804c8,8, 0x180500,6, 0x180528,1, 0x180530,1, 0x18053c,1, 0x180544,1, 0x180554,11, 0x180584,1, 0x180594,7, 0x180600,4, 0x180640,6, 0x180700,3, 0x180710,2, 0x180720,2, 0x180730,18, 0x180780,11, 0x1807c0,11, 0x180800,7, 0x180900,7, 0x180924,4, 0x180938,2, 0x180980,4, 0x180998,6, 0x180a00,7, 0x180b00,7, 0x180b24,4, 0x180b38,2, 0x180b80,4, 0x180b98,6, 0x180c00,12, 0x180c34,29, 0x180cc0,1, 0x180cc8,8, 0x180d00,6, 0x180d28,1, 0x180d30,1, 0x180d3c,1, 0x180d44,1, 0x180d54,11, 0x180d84,1, 0x180d94,7, 0x180e00,4, 0x180e40,6, 0x180f00,3, 0x180f10,2, 0x180f20,2, 0x180f30,18, 0x180f80,11, 0x180fc0,11, 0x1810c0,9, 0x181104,1, 0x18110c,28, 0x1812c0,9, 0x181304,1, 0x18130c,28, 0x181400,3, 0x181414,50, 0x181500,13, 0x181580,2, 0x18158c,2, 0x1815a0,1, 0x1815c0,1, 0x181600,3, 0x181614,50, 0x181700,13, 0x181780,2, 0x18178c,2, 0x1817a0,1, 0x1817c0,1, 0x181800,6, 0x18181c,4, 0x181838,10, 0x181880,59, 0x181980,3, 0x181990,7, 0x181a00,5, 0x181a20,2, 0x181a40,5, 0x181a60,2, 0x181a80,2, 0x181a90,8, 0x181c00,43, 0x181cb0,3, 0x181d00,43, 0x181db0,3, 0x181e00,4, 0x181e20,12, 0x181e60,12, 0x181ea0,7, 0x181ec0,4, 0x181ee0,7, 0x181f00,4, 0x181f20,7, 0x181f40,4, 0x181f60,7, 0x181f80,4, 0x181fa0,5, 0x181fc0,4, 0x181fe0,5, 0x182000,7, 0x182100,7, 0x182124,4, 0x182138,2, 0x182180,4, 0x182198,6, 0x182200,7, 0x182300,7, 0x182324,4, 0x182338,2, 0x182380,4, 0x182398,6, 0x182400,12, 0x182434,29, 0x1824c0,1, 0x1824c8,8, 0x182500,6, 0x182528,1, 0x182530,1, 0x18253c,1, 0x182544,1, 0x182554,11, 0x182584,1, 0x182594,7, 0x182600,4, 0x182640,6, 0x182700,3, 0x182710,2, 0x182720,2, 0x182730,18, 0x182780,11, 0x1827c0,11, 0x182800,7, 0x182900,7, 0x182924,4, 0x182938,2, 0x182980,4, 0x182998,6, 0x182a00,7, 0x182b00,7, 0x182b24,4, 0x182b38,2, 0x182b80,4, 0x182b98,6, 0x182c00,12, 0x182c34,29, 0x182cc0,1, 0x182cc8,8, 0x182d00,6, 0x182d28,1, 0x182d30,1, 0x182d3c,1, 0x182d44,1, 0x182d54,11, 0x182d84,1, 0x182d94,7, 0x182e00,4, 0x182e40,6, 0x182f00,3, 0x182f10,2, 0x182f20,2, 0x182f30,18, 0x182f80,11, 0x182fc0,11, 0x1830c0,9, 0x183104,1, 0x18310c,28, 0x1832c0,9, 0x183304,1, 0x18330c,28, 0x183400,3, 0x183414,50, 0x183500,13, 0x183580,2, 0x18358c,2, 0x1835a0,1, 0x1835c0,1, 0x183600,3, 0x183614,50, 0x183700,13, 0x183780,2, 0x18378c,2, 0x1837a0,1, 0x1837c0,1, 0x183800,6, 0x18381c,4, 0x183838,10, 0x183880,59, 0x183980,3, 0x183990,7, 0x183a00,5, 0x183a20,2, 0x183a40,5, 0x183a60,2, 0x183a80,2, 0x183a90,8, 0x183c00,43, 0x183cb0,3, 0x183d00,43, 0x183db0,3, 0x183e00,4, 0x183e20,12, 0x183e60,12, 0x183ea0,7, 0x183ec0,4, 0x183ee0,7, 0x183f00,4, 0x183f20,7, 0x183f40,4, 0x183f60,7, 0x183f80,4, 0x183fa0,5, 0x183fc0,4, 0x183fe0,5, 0x184000,7, 0x184100,7, 0x184124,4, 0x184138,2, 0x184180,4, 0x184198,6, 0x184200,7, 0x184300,7, 0x184324,4, 0x184338,2, 0x184380,4, 0x184398,6, 0x184400,12, 0x184434,29, 0x1844c0,1, 0x1844c8,8, 0x184500,6, 0x184528,1, 0x184530,1, 0x18453c,1, 0x184544,1, 0x184554,11, 0x184584,1, 0x184594,7, 0x184600,4, 0x184640,6, 0x184700,3, 0x184710,2, 0x184720,2, 0x184730,18, 0x184780,11, 0x1847c0,11, 0x184800,7, 0x184900,7, 0x184924,4, 0x184938,2, 0x184980,4, 0x184998,6, 0x184a00,7, 0x184b00,7, 0x184b24,4, 0x184b38,2, 0x184b80,4, 0x184b98,6, 0x184c00,12, 0x184c34,29, 0x184cc0,1, 0x184cc8,8, 0x184d00,6, 0x184d28,1, 0x184d30,1, 0x184d3c,1, 0x184d44,1, 0x184d54,11, 0x184d84,1, 0x184d94,7, 0x184e00,4, 0x184e40,6, 0x184f00,3, 0x184f10,2, 0x184f20,2, 0x184f30,18, 0x184f80,11, 0x184fc0,11, 0x1850c0,9, 0x185104,1, 0x18510c,28, 0x1852c0,9, 0x185304,1, 0x18530c,28, 0x185400,3, 0x185414,50, 0x185500,13, 0x185580,2, 0x18558c,2, 0x1855a0,1, 0x1855c0,1, 0x185600,3, 0x185614,50, 0x185700,13, 0x185780,2, 0x18578c,2, 0x1857a0,1, 0x1857c0,1, 0x185800,6, 0x18581c,4, 0x185838,10, 0x185880,59, 0x185980,3, 0x185990,7, 0x185a00,5, 0x185a20,2, 0x185a40,5, 0x185a60,2, 0x185a80,2, 0x185a90,8, 0x185c00,43, 0x185cb0,3, 0x185d00,43, 0x185db0,3, 0x185e00,4, 0x185e20,12, 0x185e60,12, 0x185ea0,7, 0x185ec0,4, 0x185ee0,7, 0x185f00,4, 0x185f20,7, 0x185f40,4, 0x185f60,7, 0x185f80,4, 0x185fa0,5, 0x185fc0,4, 0x185fe0,5, 0x186000,7, 0x186100,7, 0x186124,4, 0x186138,2, 0x186180,4, 0x186198,6, 0x186200,7, 0x186300,7, 0x186324,4, 0x186338,2, 0x186380,4, 0x186398,6, 0x186400,12, 0x186434,29, 0x1864c0,1, 0x1864c8,8, 0x186500,6, 0x186528,1, 0x186530,1, 0x18653c,1, 0x186544,1, 0x186554,11, 0x186584,1, 0x186594,7, 0x186600,4, 0x186640,6, 0x186700,3, 0x186710,2, 0x186720,2, 0x186730,18, 0x186780,11, 0x1867c0,11, 0x186800,7, 0x186900,7, 0x186924,4, 0x186938,2, 0x186980,4, 0x186998,6, 0x186a00,7, 0x186b00,7, 0x186b24,4, 0x186b38,2, 0x186b80,4, 0x186b98,6, 0x186c00,12, 0x186c34,29, 0x186cc0,1, 0x186cc8,8, 0x186d00,6, 0x186d28,1, 0x186d30,1, 0x186d3c,1, 0x186d44,1, 0x186d54,11, 0x186d84,1, 0x186d94,7, 0x186e00,4, 0x186e40,6, 0x186f00,3, 0x186f10,2, 0x186f20,2, 0x186f30,18, 0x186f80,11, 0x186fc0,11, 0x1870c0,9, 0x187104,1, 0x18710c,28, 0x1872c0,9, 0x187304,1, 0x18730c,28, 0x187400,3, 0x187414,50, 0x187500,13, 0x187580,2, 0x18758c,2, 0x1875a0,1, 0x1875c0,1, 0x187600,3, 0x187614,50, 0x187700,13, 0x187780,2, 0x18778c,2, 0x1877a0,1, 0x1877c0,1, 0x187800,6, 0x18781c,4, 0x187838,10, 0x187880,59, 0x187980,3, 0x187990,7, 0x187a00,5, 0x187a20,2, 0x187a40,5, 0x187a60,2, 0x187a80,2, 0x187a90,8, 0x187c00,43, 0x187cb0,3, 0x187d00,43, 0x187db0,3, 0x187e00,4, 0x187e20,12, 0x187e60,12, 0x187ea0,7, 0x187ec0,4, 0x187ee0,7, 0x187f00,4, 0x187f20,7, 0x187f40,4, 0x187f60,7, 0x187f80,4, 0x187fa0,5, 0x187fc0,4, 0x187fe0,5, 0x188000,7, 0x188100,7, 0x188124,4, 0x188138,2, 0x188180,4, 0x188198,6, 0x188200,7, 0x188300,7, 0x188324,4, 0x188338,2, 0x188380,4, 0x188398,6, 0x188400,12, 0x188434,29, 0x1884c0,1, 0x1884c8,8, 0x188500,6, 0x188528,1, 0x188530,1, 0x18853c,1, 0x188544,1, 0x188554,11, 0x188584,1, 0x188594,7, 0x188600,4, 0x188640,6, 0x188700,3, 0x188710,2, 0x188720,2, 0x188730,18, 0x188780,11, 0x1887c0,11, 0x188800,7, 0x188900,7, 0x188924,4, 0x188938,2, 0x188980,4, 0x188998,6, 0x188a00,7, 0x188b00,7, 0x188b24,4, 0x188b38,2, 0x188b80,4, 0x188b98,6, 0x188c00,12, 0x188c34,29, 0x188cc0,1, 0x188cc8,8, 0x188d00,6, 0x188d28,1, 0x188d30,1, 0x188d3c,1, 0x188d44,1, 0x188d54,11, 0x188d84,1, 0x188d94,7, 0x188e00,4, 0x188e40,6, 0x188f00,3, 0x188f10,2, 0x188f20,2, 0x188f30,18, 0x188f80,11, 0x188fc0,11, 0x1890c0,9, 0x189104,1, 0x18910c,28, 0x1892c0,9, 0x189304,1, 0x18930c,28, 0x189400,3, 0x189414,50, 0x189500,13, 0x189580,2, 0x18958c,2, 0x1895a0,1, 0x1895c0,1, 0x189600,3, 0x189614,50, 0x189700,13, 0x189780,2, 0x18978c,2, 0x1897a0,1, 0x1897c0,1, 0x189800,6, 0x18981c,4, 0x189838,10, 0x189880,59, 0x189980,3, 0x189990,7, 0x189a00,5, 0x189a20,2, 0x189a40,5, 0x189a60,2, 0x189a80,2, 0x189a90,8, 0x189c00,43, 0x189cb0,3, 0x189d00,43, 0x189db0,3, 0x189e00,4, 0x189e20,12, 0x189e60,12, 0x189ea0,7, 0x189ec0,4, 0x189ee0,7, 0x189f00,4, 0x189f20,7, 0x189f40,4, 0x189f60,7, 0x189f80,4, 0x189fa0,5, 0x189fc0,4, 0x189fe0,5, 0x18a000,7, 0x18a100,7, 0x18a124,4, 0x18a138,2, 0x18a180,4, 0x18a198,6, 0x18a200,7, 0x18a300,7, 0x18a324,4, 0x18a338,2, 0x18a380,4, 0x18a398,6, 0x18a400,12, 0x18a434,29, 0x18a4c0,1, 0x18a4c8,8, 0x18a500,6, 0x18a528,1, 0x18a530,1, 0x18a53c,1, 0x18a544,1, 0x18a554,11, 0x18a584,1, 0x18a594,7, 0x18a600,4, 0x18a640,6, 0x18a700,3, 0x18a710,2, 0x18a720,2, 0x18a730,18, 0x18a780,11, 0x18a7c0,11, 0x18a8c0,9, 0x18a904,1, 0x18a90c,28, 0x18aac0,9, 0x18ab04,1, 0x18ab0c,28, 0x18ac00,3, 0x18ac14,50, 0x18ad00,13, 0x18ad80,2, 0x18ad8c,2, 0x18ada0,1, 0x18adc0,1, 0x18ae00,5, 0x18ae20,2, 0x18ae40,1, 0x18ae48,4, 0x18b000,6, 0x18b01c,4, 0x18b038,10, 0x18b080,59, 0x18b180,3, 0x18b190,7, 0x18b200,6, 0x18b220,5, 0x18b240,6, 0x18b260,37, 0x18b300,43, 0x18b3b0,3, 0x18b400,4, 0x18b420,12, 0x18b460,7, 0x18b480,4, 0x18b4a0,7, 0x18b4c0,4, 0x18b4e0,5, 0x18c000,3, 0x18c010,7, 0x18c030,5, 0x18c048,5, 0x18c060,10, 0x18c0a0,6, 0x18c0c0,4, 0x18c104,1, 0x18c114,3, 0x18c200,49, 0x18c300,4, 0x18c340,10, 0x18c380,7, 0x18c3a0,7, 0x18c400,3, 0x18c410,7, 0x18c430,5, 0x18c448,5, 0x18c460,10, 0x18c4a0,6, 0x18c4c0,4, 0x18c504,1, 0x18c514,3, 0x18c600,49, 0x18c700,4, 0x18c740,10, 0x18c780,7, 0x18c7a0,7, 0x18c800,3, 0x18c810,7, 0x18c830,5, 0x18c848,5, 0x18c860,10, 0x18c8a0,6, 0x18c8c0,4, 0x18c904,1, 0x18c914,3, 0x18ca00,49, 0x18cb00,4, 0x18cb40,10, 0x18cb80,7, 0x18cba0,7, 0x18cc00,3, 0x18cc10,7, 0x18cc30,5, 0x18cc48,5, 0x18cc60,10, 0x18cca0,6, 0x18ccc0,4, 0x18cd04,1, 0x18cd14,3, 0x18ce00,49, 0x18cf00,4, 0x18cf40,10, 0x18cf80,7, 0x18cfa0,7, 0x18d000,3, 0x18d010,7, 0x18d030,5, 0x18d048,5, 0x18d060,10, 0x18d0a0,6, 0x18d0c0,4, 0x18d104,1, 0x18d114,3, 0x18d200,49, 0x18d300,4, 0x18d340,10, 0x18d380,7, 0x18d3a0,7, 0x18d400,3, 0x18d410,7, 0x18d430,5, 0x18d448,5, 0x18d460,10, 0x18d4a0,6, 0x18d4c0,4, 0x18d504,1, 0x18d514,3, 0x18d600,49, 0x18d700,4, 0x18d740,10, 0x18d780,7, 0x18d7a0,7, 0x18d800,3, 0x18d810,7, 0x18d830,5, 0x18d848,5, 0x18d860,10, 0x18d8a0,6, 0x18d8c0,4, 0x18d904,1, 0x18d914,3, 0x18da00,49, 0x18db00,4, 0x18db40,10, 0x18db80,7, 0x18dba0,7, 0x18dc00,3, 0x18dc10,7, 0x18dc30,5, 0x18dc48,5, 0x18dc60,10, 0x18dca0,6, 0x18dcc0,4, 0x18dd04,1, 0x18dd14,3, 0x18de00,49, 0x18df00,4, 0x18df40,10, 0x18df80,7, 0x18dfa0,7, 0x18e000,3, 0x18e010,7, 0x18e030,5, 0x18e048,5, 0x18e060,10, 0x18e0a0,6, 0x18e0c0,4, 0x18e104,1, 0x18e114,3, 0x18e200,49, 0x18e300,4, 0x18e340,10, 0x18e380,7, 0x18e3a0,7, 0x18e400,3, 0x18e410,7, 0x18e430,5, 0x18e448,5, 0x18e460,10, 0x18e4a0,6, 0x18e4c0,4, 0x18e504,1, 0x18e514,3, 0x18e600,49, 0x18e700,4, 0x18e740,10, 0x18e780,7, 0x18e7a0,7, 0x18e800,3, 0x18e810,7, 0x18e830,5, 0x18e848,5, 0x18e860,10, 0x18e8a0,6, 0x18e8c0,4, 0x18e904,1, 0x18e914,3, 0x18ea00,49, 0x18eb00,4, 0x18eb40,10, 0x18eb80,7, 0x18eba0,7, 0x190000,1, 0x191100,7, 0x191120,3, 0x191200,21, 0x191300,12, 0x191600,3, 0x191610,7, 0x191630,8, 0x1916d0,3, 0x193ffc,2, 0x194008,32, 0x1940c8,3, 0x1940e0,2, 0x194100,8, 0x194148,6, 0x194164,2, 0x194170,1, 0x194178,2, 0x1941c0,3, 0x1941d0,3, 0x1941e0,2, 0x1941f0,15, 0x194230,11, 0x195000,30, 0x195080,3, 0x195090,1, 0x195204,5, 0x195220,11, 0x195250,3, 0x195300,34, 0x195390,3, 0x195400,25, 0x196800,1, 0x196810,5, 0x196830,1, 0x196840,6, 0x196a00,72, 0x196c38,1, 0x198004,11, 0x199000,51, 0x199c00,10, 0x199c80,3, 0x1a0000,7, 0x1a0100,7, 0x1a0124,4, 0x1a0138,2, 0x1a0180,4, 0x1a0198,6, 0x1a0200,7, 0x1a0300,7, 0x1a0324,4, 0x1a0338,2, 0x1a0380,4, 0x1a0398,6, 0x1a0400,12, 0x1a0434,29, 0x1a04c0,1, 0x1a04c8,8, 0x1a0500,6, 0x1a0528,1, 0x1a0530,1, 0x1a053c,1, 0x1a0544,1, 0x1a0554,11, 0x1a0584,1, 0x1a0594,7, 0x1a0600,4, 0x1a0640,6, 0x1a0700,3, 0x1a0710,2, 0x1a0720,2, 0x1a0730,18, 0x1a0780,11, 0x1a07c0,11, 0x1a0800,7, 0x1a0900,7, 0x1a0924,4, 0x1a0938,2, 0x1a0980,4, 0x1a0998,6, 0x1a0a00,7, 0x1a0b00,7, 0x1a0b24,4, 0x1a0b38,2, 0x1a0b80,4, 0x1a0b98,6, 0x1a0c00,12, 0x1a0c34,29, 0x1a0cc0,1, 0x1a0cc8,8, 0x1a0d00,6, 0x1a0d28,1, 0x1a0d30,1, 0x1a0d3c,1, 0x1a0d44,1, 0x1a0d54,11, 0x1a0d84,1, 0x1a0d94,7, 0x1a0e00,4, 0x1a0e40,6, 0x1a0f00,3, 0x1a0f10,2, 0x1a0f20,2, 0x1a0f30,18, 0x1a0f80,11, 0x1a0fc0,11, 0x1a10c0,9, 0x1a1104,1, 0x1a110c,28, 0x1a12c0,9, 0x1a1304,1, 0x1a130c,28, 0x1a1400,3, 0x1a1414,50, 0x1a1500,13, 0x1a1580,2, 0x1a158c,2, 0x1a15a0,1, 0x1a15c0,1, 0x1a1600,3, 0x1a1614,50, 0x1a1700,13, 0x1a1780,2, 0x1a178c,2, 0x1a17a0,1, 0x1a17c0,1, 0x1a1800,6, 0x1a181c,4, 0x1a1838,10, 0x1a1880,59, 0x1a1980,3, 0x1a1990,7, 0x1a1a00,5, 0x1a1a20,2, 0x1a1a40,5, 0x1a1a60,2, 0x1a1a80,2, 0x1a1a90,8, 0x1a1c00,43, 0x1a1cb0,3, 0x1a1d00,43, 0x1a1db0,3, 0x1a1e00,4, 0x1a1e20,12, 0x1a1e60,12, 0x1a1ea0,7, 0x1a1ec0,4, 0x1a1ee0,7, 0x1a1f00,4, 0x1a1f20,7, 0x1a1f40,4, 0x1a1f60,7, 0x1a1f80,4, 0x1a1fa0,5, 0x1a1fc0,4, 0x1a1fe0,5, 0x1a2000,7, 0x1a2100,7, 0x1a2124,4, 0x1a2138,2, 0x1a2180,4, 0x1a2198,6, 0x1a2200,7, 0x1a2300,7, 0x1a2324,4, 0x1a2338,2, 0x1a2380,4, 0x1a2398,6, 0x1a2400,12, 0x1a2434,29, 0x1a24c0,1, 0x1a24c8,8, 0x1a2500,6, 0x1a2528,1, 0x1a2530,1, 0x1a253c,1, 0x1a2544,1, 0x1a2554,11, 0x1a2584,1, 0x1a2594,7, 0x1a2600,4, 0x1a2640,6, 0x1a2700,3, 0x1a2710,2, 0x1a2720,2, 0x1a2730,18, 0x1a2780,11, 0x1a27c0,11, 0x1a2800,7, 0x1a2900,7, 0x1a2924,4, 0x1a2938,2, 0x1a2980,4, 0x1a2998,6, 0x1a2a00,7, 0x1a2b00,7, 0x1a2b24,4, 0x1a2b38,2, 0x1a2b80,4, 0x1a2b98,6, 0x1a2c00,12, 0x1a2c34,29, 0x1a2cc0,1, 0x1a2cc8,8, 0x1a2d00,6, 0x1a2d28,1, 0x1a2d30,1, 0x1a2d3c,1, 0x1a2d44,1, 0x1a2d54,11, 0x1a2d84,1, 0x1a2d94,7, 0x1a2e00,4, 0x1a2e40,6, 0x1a2f00,3, 0x1a2f10,2, 0x1a2f20,2, 0x1a2f30,18, 0x1a2f80,11, 0x1a2fc0,11, 0x1a30c0,9, 0x1a3104,1, 0x1a310c,28, 0x1a32c0,9, 0x1a3304,1, 0x1a330c,28, 0x1a3400,3, 0x1a3414,50, 0x1a3500,13, 0x1a3580,2, 0x1a358c,2, 0x1a35a0,1, 0x1a35c0,1, 0x1a3600,3, 0x1a3614,50, 0x1a3700,13, 0x1a3780,2, 0x1a378c,2, 0x1a37a0,1, 0x1a37c0,1, 0x1a3800,6, 0x1a381c,4, 0x1a3838,10, 0x1a3880,59, 0x1a3980,3, 0x1a3990,7, 0x1a3a00,5, 0x1a3a20,2, 0x1a3a40,5, 0x1a3a60,2, 0x1a3a80,2, 0x1a3a90,8, 0x1a3c00,43, 0x1a3cb0,3, 0x1a3d00,43, 0x1a3db0,3, 0x1a3e00,4, 0x1a3e20,12, 0x1a3e60,12, 0x1a3ea0,7, 0x1a3ec0,4, 0x1a3ee0,7, 0x1a3f00,4, 0x1a3f20,7, 0x1a3f40,4, 0x1a3f60,7, 0x1a3f80,4, 0x1a3fa0,5, 0x1a3fc0,4, 0x1a3fe0,5, 0x1a4000,7, 0x1a4100,7, 0x1a4124,4, 0x1a4138,2, 0x1a4180,4, 0x1a4198,6, 0x1a4200,7, 0x1a4300,7, 0x1a4324,4, 0x1a4338,2, 0x1a4380,4, 0x1a4398,6, 0x1a4400,12, 0x1a4434,29, 0x1a44c0,1, 0x1a44c8,8, 0x1a4500,6, 0x1a4528,1, 0x1a4530,1, 0x1a453c,1, 0x1a4544,1, 0x1a4554,11, 0x1a4584,1, 0x1a4594,7, 0x1a4600,4, 0x1a4640,6, 0x1a4700,3, 0x1a4710,2, 0x1a4720,2, 0x1a4730,18, 0x1a4780,11, 0x1a47c0,11, 0x1a4800,7, 0x1a4900,7, 0x1a4924,4, 0x1a4938,2, 0x1a4980,4, 0x1a4998,6, 0x1a4a00,7, 0x1a4b00,7, 0x1a4b24,4, 0x1a4b38,2, 0x1a4b80,4, 0x1a4b98,6, 0x1a4c00,12, 0x1a4c34,29, 0x1a4cc0,1, 0x1a4cc8,8, 0x1a4d00,6, 0x1a4d28,1, 0x1a4d30,1, 0x1a4d3c,1, 0x1a4d44,1, 0x1a4d54,11, 0x1a4d84,1, 0x1a4d94,7, 0x1a4e00,4, 0x1a4e40,6, 0x1a4f00,3, 0x1a4f10,2, 0x1a4f20,2, 0x1a4f30,18, 0x1a4f80,11, 0x1a4fc0,11, 0x1a50c0,9, 0x1a5104,1, 0x1a510c,28, 0x1a52c0,9, 0x1a5304,1, 0x1a530c,28, 0x1a5400,3, 0x1a5414,50, 0x1a5500,13, 0x1a5580,2, 0x1a558c,2, 0x1a55a0,1, 0x1a55c0,1, 0x1a5600,3, 0x1a5614,50, 0x1a5700,13, 0x1a5780,2, 0x1a578c,2, 0x1a57a0,1, 0x1a57c0,1, 0x1a5800,6, 0x1a581c,4, 0x1a5838,10, 0x1a5880,59, 0x1a5980,3, 0x1a5990,7, 0x1a5a00,5, 0x1a5a20,2, 0x1a5a40,5, 0x1a5a60,2, 0x1a5a80,2, 0x1a5a90,8, 0x1a5c00,43, 0x1a5cb0,3, 0x1a5d00,43, 0x1a5db0,3, 0x1a5e00,4, 0x1a5e20,12, 0x1a5e60,12, 0x1a5ea0,7, 0x1a5ec0,4, 0x1a5ee0,7, 0x1a5f00,4, 0x1a5f20,7, 0x1a5f40,4, 0x1a5f60,7, 0x1a5f80,4, 0x1a5fa0,5, 0x1a5fc0,4, 0x1a5fe0,5, 0x1a6000,7, 0x1a6100,7, 0x1a6124,4, 0x1a6138,2, 0x1a6180,4, 0x1a6198,6, 0x1a6200,7, 0x1a6300,7, 0x1a6324,4, 0x1a6338,2, 0x1a6380,4, 0x1a6398,6, 0x1a6400,12, 0x1a6434,29, 0x1a64c0,1, 0x1a64c8,8, 0x1a6500,6, 0x1a6528,1, 0x1a6530,1, 0x1a653c,1, 0x1a6544,1, 0x1a6554,11, 0x1a6584,1, 0x1a6594,7, 0x1a6600,4, 0x1a6640,6, 0x1a6700,3, 0x1a6710,2, 0x1a6720,2, 0x1a6730,18, 0x1a6780,11, 0x1a67c0,11, 0x1a6800,7, 0x1a6900,7, 0x1a6924,4, 0x1a6938,2, 0x1a6980,4, 0x1a6998,6, 0x1a6a00,7, 0x1a6b00,7, 0x1a6b24,4, 0x1a6b38,2, 0x1a6b80,4, 0x1a6b98,6, 0x1a6c00,12, 0x1a6c34,29, 0x1a6cc0,1, 0x1a6cc8,8, 0x1a6d00,6, 0x1a6d28,1, 0x1a6d30,1, 0x1a6d3c,1, 0x1a6d44,1, 0x1a6d54,11, 0x1a6d84,1, 0x1a6d94,7, 0x1a6e00,4, 0x1a6e40,6, 0x1a6f00,3, 0x1a6f10,2, 0x1a6f20,2, 0x1a6f30,18, 0x1a6f80,11, 0x1a6fc0,11, 0x1a70c0,9, 0x1a7104,1, 0x1a710c,28, 0x1a72c0,9, 0x1a7304,1, 0x1a730c,28, 0x1a7400,3, 0x1a7414,50, 0x1a7500,13, 0x1a7580,2, 0x1a758c,2, 0x1a75a0,1, 0x1a75c0,1, 0x1a7600,3, 0x1a7614,50, 0x1a7700,13, 0x1a7780,2, 0x1a778c,2, 0x1a77a0,1, 0x1a77c0,1, 0x1a7800,6, 0x1a781c,4, 0x1a7838,10, 0x1a7880,59, 0x1a7980,3, 0x1a7990,7, 0x1a7a00,5, 0x1a7a20,2, 0x1a7a40,5, 0x1a7a60,2, 0x1a7a80,2, 0x1a7a90,8, 0x1a7c00,43, 0x1a7cb0,3, 0x1a7d00,43, 0x1a7db0,3, 0x1a7e00,4, 0x1a7e20,12, 0x1a7e60,12, 0x1a7ea0,7, 0x1a7ec0,4, 0x1a7ee0,7, 0x1a7f00,4, 0x1a7f20,7, 0x1a7f40,4, 0x1a7f60,7, 0x1a7f80,4, 0x1a7fa0,5, 0x1a7fc0,4, 0x1a7fe0,5, 0x1a8000,7, 0x1a8100,7, 0x1a8124,4, 0x1a8138,2, 0x1a8180,4, 0x1a8198,6, 0x1a8200,7, 0x1a8300,7, 0x1a8324,4, 0x1a8338,2, 0x1a8380,4, 0x1a8398,6, 0x1a8400,12, 0x1a8434,29, 0x1a84c0,1, 0x1a84c8,8, 0x1a8500,6, 0x1a8528,1, 0x1a8530,1, 0x1a853c,1, 0x1a8544,1, 0x1a8554,11, 0x1a8584,1, 0x1a8594,7, 0x1a8600,4, 0x1a8640,6, 0x1a8700,3, 0x1a8710,2, 0x1a8720,2, 0x1a8730,18, 0x1a8780,11, 0x1a87c0,11, 0x1a8800,7, 0x1a8900,7, 0x1a8924,4, 0x1a8938,2, 0x1a8980,4, 0x1a8998,6, 0x1a8a00,7, 0x1a8b00,7, 0x1a8b24,4, 0x1a8b38,2, 0x1a8b80,4, 0x1a8b98,6, 0x1a8c00,12, 0x1a8c34,29, 0x1a8cc0,1, 0x1a8cc8,8, 0x1a8d00,6, 0x1a8d28,1, 0x1a8d30,1, 0x1a8d3c,1, 0x1a8d44,1, 0x1a8d54,11, 0x1a8d84,1, 0x1a8d94,7, 0x1a8e00,4, 0x1a8e40,6, 0x1a8f00,3, 0x1a8f10,2, 0x1a8f20,2, 0x1a8f30,18, 0x1a8f80,11, 0x1a8fc0,11, 0x1a90c0,9, 0x1a9104,1, 0x1a910c,28, 0x1a92c0,9, 0x1a9304,1, 0x1a930c,28, 0x1a9400,3, 0x1a9414,50, 0x1a9500,13, 0x1a9580,2, 0x1a958c,2, 0x1a95a0,1, 0x1a95c0,1, 0x1a9600,3, 0x1a9614,50, 0x1a9700,13, 0x1a9780,2, 0x1a978c,2, 0x1a97a0,1, 0x1a97c0,1, 0x1a9800,6, 0x1a981c,4, 0x1a9838,10, 0x1a9880,59, 0x1a9980,3, 0x1a9990,7, 0x1a9a00,5, 0x1a9a20,2, 0x1a9a40,5, 0x1a9a60,2, 0x1a9a80,2, 0x1a9a90,8, 0x1a9c00,43, 0x1a9cb0,3, 0x1a9d00,43, 0x1a9db0,3, 0x1a9e00,4, 0x1a9e20,12, 0x1a9e60,12, 0x1a9ea0,7, 0x1a9ec0,4, 0x1a9ee0,7, 0x1a9f00,4, 0x1a9f20,7, 0x1a9f40,4, 0x1a9f60,7, 0x1a9f80,4, 0x1a9fa0,5, 0x1a9fc0,4, 0x1a9fe0,5, 0x1aa000,7, 0x1aa100,7, 0x1aa124,4, 0x1aa138,2, 0x1aa180,4, 0x1aa198,6, 0x1aa200,7, 0x1aa300,7, 0x1aa324,4, 0x1aa338,2, 0x1aa380,4, 0x1aa398,6, 0x1aa400,12, 0x1aa434,29, 0x1aa4c0,1, 0x1aa4c8,8, 0x1aa500,6, 0x1aa528,1, 0x1aa530,1, 0x1aa53c,1, 0x1aa544,1, 0x1aa554,11, 0x1aa584,1, 0x1aa594,7, 0x1aa600,4, 0x1aa640,6, 0x1aa700,3, 0x1aa710,2, 0x1aa720,2, 0x1aa730,18, 0x1aa780,11, 0x1aa7c0,11, 0x1aa8c0,9, 0x1aa904,1, 0x1aa90c,28, 0x1aaac0,9, 0x1aab04,1, 0x1aab0c,28, 0x1aac00,3, 0x1aac14,50, 0x1aad00,13, 0x1aad80,2, 0x1aad8c,2, 0x1aada0,1, 0x1aadc0,1, 0x1aae00,5, 0x1aae20,2, 0x1aae40,1, 0x1aae48,4, 0x1ab000,6, 0x1ab01c,4, 0x1ab038,10, 0x1ab080,59, 0x1ab180,3, 0x1ab190,7, 0x1ab200,6, 0x1ab220,5, 0x1ab240,6, 0x1ab260,37, 0x1ab300,43, 0x1ab3b0,3, 0x1ab400,4, 0x1ab420,12, 0x1ab460,7, 0x1ab480,4, 0x1ab4a0,7, 0x1ab4c0,4, 0x1ab4e0,5, 0x1ac000,3, 0x1ac010,7, 0x1ac030,5, 0x1ac048,5, 0x1ac060,10, 0x1ac0a0,6, 0x1ac0c0,4, 0x1ac104,1, 0x1ac114,3, 0x1ac200,49, 0x1ac300,4, 0x1ac340,10, 0x1ac380,7, 0x1ac3a0,7, 0x1ac400,3, 0x1ac410,7, 0x1ac430,5, 0x1ac448,5, 0x1ac460,10, 0x1ac4a0,6, 0x1ac4c0,4, 0x1ac504,1, 0x1ac514,3, 0x1ac600,49, 0x1ac700,4, 0x1ac740,10, 0x1ac780,7, 0x1ac7a0,7, 0x1ac800,3, 0x1ac810,7, 0x1ac830,5, 0x1ac848,5, 0x1ac860,10, 0x1ac8a0,6, 0x1ac8c0,4, 0x1ac904,1, 0x1ac914,3, 0x1aca00,49, 0x1acb00,4, 0x1acb40,10, 0x1acb80,7, 0x1acba0,7, 0x1acc00,3, 0x1acc10,7, 0x1acc30,5, 0x1acc48,5, 0x1acc60,10, 0x1acca0,6, 0x1accc0,4, 0x1acd04,1, 0x1acd14,3, 0x1ace00,49, 0x1acf00,4, 0x1acf40,10, 0x1acf80,7, 0x1acfa0,7, 0x1ad000,3, 0x1ad010,7, 0x1ad030,5, 0x1ad048,5, 0x1ad060,10, 0x1ad0a0,6, 0x1ad0c0,4, 0x1ad104,1, 0x1ad114,3, 0x1ad200,49, 0x1ad300,4, 0x1ad340,10, 0x1ad380,7, 0x1ad3a0,7, 0x1ad400,3, 0x1ad410,7, 0x1ad430,5, 0x1ad448,5, 0x1ad460,10, 0x1ad4a0,6, 0x1ad4c0,4, 0x1ad504,1, 0x1ad514,3, 0x1ad600,49, 0x1ad700,4, 0x1ad740,10, 0x1ad780,7, 0x1ad7a0,7, 0x1ad800,3, 0x1ad810,7, 0x1ad830,5, 0x1ad848,5, 0x1ad860,10, 0x1ad8a0,6, 0x1ad8c0,4, 0x1ad904,1, 0x1ad914,3, 0x1ada00,49, 0x1adb00,4, 0x1adb40,10, 0x1adb80,7, 0x1adba0,7, 0x1adc00,3, 0x1adc10,7, 0x1adc30,5, 0x1adc48,5, 0x1adc60,10, 0x1adca0,6, 0x1adcc0,4, 0x1add04,1, 0x1add14,3, 0x1ade00,49, 0x1adf00,4, 0x1adf40,10, 0x1adf80,7, 0x1adfa0,7, 0x1ae000,3, 0x1ae010,7, 0x1ae030,5, 0x1ae048,5, 0x1ae060,10, 0x1ae0a0,6, 0x1ae0c0,4, 0x1ae104,1, 0x1ae114,3, 0x1ae200,49, 0x1ae300,4, 0x1ae340,10, 0x1ae380,7, 0x1ae3a0,7, 0x1ae400,3, 0x1ae410,7, 0x1ae430,5, 0x1ae448,5, 0x1ae460,10, 0x1ae4a0,6, 0x1ae4c0,4, 0x1ae504,1, 0x1ae514,3, 0x1ae600,49, 0x1ae700,4, 0x1ae740,10, 0x1ae780,7, 0x1ae7a0,7, 0x1ae800,3, 0x1ae810,7, 0x1ae830,5, 0x1ae848,5, 0x1ae860,10, 0x1ae8a0,6, 0x1ae8c0,4, 0x1ae904,1, 0x1ae914,3, 0x1aea00,49, 0x1aeb00,4, 0x1aeb40,10, 0x1aeb80,7, 0x1aeba0,7, 0x1b0000,1, 0x1b1100,7, 0x1b1120,3, 0x1b1200,21, 0x1b1300,12, 0x1b1600,3, 0x1b1610,7, 0x1b1630,8, 0x1b16d0,3, 0x1b3ffc,2, 0x1b4008,32, 0x1b40c8,3, 0x1b40e0,2, 0x1b4100,8, 0x1b4148,6, 0x1b4164,2, 0x1b4170,1, 0x1b4178,2, 0x1b41c0,3, 0x1b41d0,3, 0x1b41e0,2, 0x1b41f0,15, 0x1b4230,11, 0x1b5000,30, 0x1b5080,3, 0x1b5090,1, 0x1b5204,5, 0x1b5220,11, 0x1b5250,3, 0x1b5300,34, 0x1b5390,3, 0x1b5400,25, 0x1b6800,1, 0x1b6810,5, 0x1b6830,1, 0x1b6840,6, 0x1b6a00,72, 0x1b6c38,1, 0x1b8004,11, 0x1b9000,51, 0x1b9c00,10, 0x1b9c80,3, 0x1c0000,7, 0x1c0100,7, 0x1c0124,4, 0x1c0138,2, 0x1c0180,4, 0x1c0198,6, 0x1c0200,7, 0x1c0300,7, 0x1c0324,4, 0x1c0338,2, 0x1c0380,4, 0x1c0398,6, 0x1c0400,12, 0x1c0434,29, 0x1c04c0,1, 0x1c04c8,8, 0x1c0500,6, 0x1c0528,1, 0x1c0530,1, 0x1c053c,1, 0x1c0544,1, 0x1c0554,11, 0x1c0584,1, 0x1c0594,7, 0x1c0600,4, 0x1c0640,6, 0x1c0700,3, 0x1c0710,2, 0x1c0720,2, 0x1c0730,18, 0x1c0780,11, 0x1c07c0,11, 0x1c0800,7, 0x1c0900,7, 0x1c0924,4, 0x1c0938,2, 0x1c0980,4, 0x1c0998,6, 0x1c0a00,7, 0x1c0b00,7, 0x1c0b24,4, 0x1c0b38,2, 0x1c0b80,4, 0x1c0b98,6, 0x1c0c00,12, 0x1c0c34,29, 0x1c0cc0,1, 0x1c0cc8,8, 0x1c0d00,6, 0x1c0d28,1, 0x1c0d30,1, 0x1c0d3c,1, 0x1c0d44,1, 0x1c0d54,11, 0x1c0d84,1, 0x1c0d94,7, 0x1c0e00,4, 0x1c0e40,6, 0x1c0f00,3, 0x1c0f10,2, 0x1c0f20,2, 0x1c0f30,18, 0x1c0f80,11, 0x1c0fc0,11, 0x1c10c0,9, 0x1c1104,1, 0x1c110c,28, 0x1c12c0,9, 0x1c1304,1, 0x1c130c,28, 0x1c1400,3, 0x1c1414,50, 0x1c1500,13, 0x1c1580,2, 0x1c158c,2, 0x1c15a0,1, 0x1c15c0,1, 0x1c1600,3, 0x1c1614,50, 0x1c1700,13, 0x1c1780,2, 0x1c178c,2, 0x1c17a0,1, 0x1c17c0,1, 0x1c1800,6, 0x1c181c,4, 0x1c1838,10, 0x1c1880,59, 0x1c1980,3, 0x1c1990,7, 0x1c1a00,5, 0x1c1a20,2, 0x1c1a40,5, 0x1c1a60,2, 0x1c1a80,2, 0x1c1a90,8, 0x1c1c00,43, 0x1c1cb0,3, 0x1c1d00,43, 0x1c1db0,3, 0x1c1e00,4, 0x1c1e20,12, 0x1c1e60,12, 0x1c1ea0,7, 0x1c1ec0,4, 0x1c1ee0,7, 0x1c1f00,4, 0x1c1f20,7, 0x1c1f40,4, 0x1c1f60,7, 0x1c1f80,4, 0x1c1fa0,5, 0x1c1fc0,4, 0x1c1fe0,5, 0x1c2000,7, 0x1c2100,7, 0x1c2124,4, 0x1c2138,2, 0x1c2180,4, 0x1c2198,6, 0x1c2200,7, 0x1c2300,7, 0x1c2324,4, 0x1c2338,2, 0x1c2380,4, 0x1c2398,6, 0x1c2400,12, 0x1c2434,29, 0x1c24c0,1, 0x1c24c8,8, 0x1c2500,6, 0x1c2528,1, 0x1c2530,1, 0x1c253c,1, 0x1c2544,1, 0x1c2554,11, 0x1c2584,1, 0x1c2594,7, 0x1c2600,4, 0x1c2640,6, 0x1c2700,3, 0x1c2710,2, 0x1c2720,2, 0x1c2730,18, 0x1c2780,11, 0x1c27c0,11, 0x1c2800,7, 0x1c2900,7, 0x1c2924,4, 0x1c2938,2, 0x1c2980,4, 0x1c2998,6, 0x1c2a00,7, 0x1c2b00,7, 0x1c2b24,4, 0x1c2b38,2, 0x1c2b80,4, 0x1c2b98,6, 0x1c2c00,12, 0x1c2c34,29, 0x1c2cc0,1, 0x1c2cc8,8, 0x1c2d00,6, 0x1c2d28,1, 0x1c2d30,1, 0x1c2d3c,1, 0x1c2d44,1, 0x1c2d54,11, 0x1c2d84,1, 0x1c2d94,7, 0x1c2e00,4, 0x1c2e40,6, 0x1c2f00,3, 0x1c2f10,2, 0x1c2f20,2, 0x1c2f30,18, 0x1c2f80,11, 0x1c2fc0,11, 0x1c30c0,9, 0x1c3104,1, 0x1c310c,28, 0x1c32c0,9, 0x1c3304,1, 0x1c330c,28, 0x1c3400,3, 0x1c3414,50, 0x1c3500,13, 0x1c3580,2, 0x1c358c,2, 0x1c35a0,1, 0x1c35c0,1, 0x1c3600,3, 0x1c3614,50, 0x1c3700,13, 0x1c3780,2, 0x1c378c,2, 0x1c37a0,1, 0x1c37c0,1, 0x1c3800,6, 0x1c381c,4, 0x1c3838,10, 0x1c3880,59, 0x1c3980,3, 0x1c3990,7, 0x1c3a00,5, 0x1c3a20,2, 0x1c3a40,5, 0x1c3a60,2, 0x1c3a80,2, 0x1c3a90,8, 0x1c3c00,43, 0x1c3cb0,3, 0x1c3d00,43, 0x1c3db0,3, 0x1c3e00,4, 0x1c3e20,12, 0x1c3e60,12, 0x1c3ea0,7, 0x1c3ec0,4, 0x1c3ee0,7, 0x1c3f00,4, 0x1c3f20,7, 0x1c3f40,4, 0x1c3f60,7, 0x1c3f80,4, 0x1c3fa0,5, 0x1c3fc0,4, 0x1c3fe0,5, 0x1c4000,7, 0x1c4100,7, 0x1c4124,4, 0x1c4138,2, 0x1c4180,4, 0x1c4198,6, 0x1c4200,7, 0x1c4300,7, 0x1c4324,4, 0x1c4338,2, 0x1c4380,4, 0x1c4398,6, 0x1c4400,12, 0x1c4434,29, 0x1c44c0,1, 0x1c44c8,8, 0x1c4500,6, 0x1c4528,1, 0x1c4530,1, 0x1c453c,1, 0x1c4544,1, 0x1c4554,11, 0x1c4584,1, 0x1c4594,7, 0x1c4600,4, 0x1c4640,6, 0x1c4700,3, 0x1c4710,2, 0x1c4720,2, 0x1c4730,18, 0x1c4780,11, 0x1c47c0,11, 0x1c4800,7, 0x1c4900,7, 0x1c4924,4, 0x1c4938,2, 0x1c4980,4, 0x1c4998,6, 0x1c4a00,7, 0x1c4b00,7, 0x1c4b24,4, 0x1c4b38,2, 0x1c4b80,4, 0x1c4b98,6, 0x1c4c00,12, 0x1c4c34,29, 0x1c4cc0,1, 0x1c4cc8,8, 0x1c4d00,6, 0x1c4d28,1, 0x1c4d30,1, 0x1c4d3c,1, 0x1c4d44,1, 0x1c4d54,11, 0x1c4d84,1, 0x1c4d94,7, 0x1c4e00,4, 0x1c4e40,6, 0x1c4f00,3, 0x1c4f10,2, 0x1c4f20,2, 0x1c4f30,18, 0x1c4f80,11, 0x1c4fc0,11, 0x1c50c0,9, 0x1c5104,1, 0x1c510c,28, 0x1c52c0,9, 0x1c5304,1, 0x1c530c,28, 0x1c5400,3, 0x1c5414,50, 0x1c5500,13, 0x1c5580,2, 0x1c558c,2, 0x1c55a0,1, 0x1c55c0,1, 0x1c5600,3, 0x1c5614,50, 0x1c5700,13, 0x1c5780,2, 0x1c578c,2, 0x1c57a0,1, 0x1c57c0,1, 0x1c5800,6, 0x1c581c,4, 0x1c5838,10, 0x1c5880,59, 0x1c5980,3, 0x1c5990,7, 0x1c5a00,5, 0x1c5a20,2, 0x1c5a40,5, 0x1c5a60,2, 0x1c5a80,2, 0x1c5a90,8, 0x1c5c00,43, 0x1c5cb0,3, 0x1c5d00,43, 0x1c5db0,3, 0x1c5e00,4, 0x1c5e20,12, 0x1c5e60,12, 0x1c5ea0,7, 0x1c5ec0,4, 0x1c5ee0,7, 0x1c5f00,4, 0x1c5f20,7, 0x1c5f40,4, 0x1c5f60,7, 0x1c5f80,4, 0x1c5fa0,5, 0x1c5fc0,4, 0x1c5fe0,5, 0x1c6000,7, 0x1c6100,7, 0x1c6124,4, 0x1c6138,2, 0x1c6180,4, 0x1c6198,6, 0x1c6200,7, 0x1c6300,7, 0x1c6324,4, 0x1c6338,2, 0x1c6380,4, 0x1c6398,6, 0x1c6400,12, 0x1c6434,29, 0x1c64c0,1, 0x1c64c8,8, 0x1c6500,6, 0x1c6528,1, 0x1c6530,1, 0x1c653c,1, 0x1c6544,1, 0x1c6554,11, 0x1c6584,1, 0x1c6594,7, 0x1c6600,4, 0x1c6640,6, 0x1c6700,3, 0x1c6710,2, 0x1c6720,2, 0x1c6730,18, 0x1c6780,11, 0x1c67c0,11, 0x1c6800,7, 0x1c6900,7, 0x1c6924,4, 0x1c6938,2, 0x1c6980,4, 0x1c6998,6, 0x1c6a00,7, 0x1c6b00,7, 0x1c6b24,4, 0x1c6b38,2, 0x1c6b80,4, 0x1c6b98,6, 0x1c6c00,12, 0x1c6c34,29, 0x1c6cc0,1, 0x1c6cc8,8, 0x1c6d00,6, 0x1c6d28,1, 0x1c6d30,1, 0x1c6d3c,1, 0x1c6d44,1, 0x1c6d54,11, 0x1c6d84,1, 0x1c6d94,7, 0x1c6e00,4, 0x1c6e40,6, 0x1c6f00,3, 0x1c6f10,2, 0x1c6f20,2, 0x1c6f30,18, 0x1c6f80,11, 0x1c6fc0,11, 0x1c70c0,9, 0x1c7104,1, 0x1c710c,28, 0x1c72c0,9, 0x1c7304,1, 0x1c730c,28, 0x1c7400,3, 0x1c7414,50, 0x1c7500,13, 0x1c7580,2, 0x1c758c,2, 0x1c75a0,1, 0x1c75c0,1, 0x1c7600,3, 0x1c7614,50, 0x1c7700,13, 0x1c7780,2, 0x1c778c,2, 0x1c77a0,1, 0x1c77c0,1, 0x1c7800,6, 0x1c781c,4, 0x1c7838,10, 0x1c7880,59, 0x1c7980,3, 0x1c7990,7, 0x1c7a00,5, 0x1c7a20,2, 0x1c7a40,5, 0x1c7a60,2, 0x1c7a80,2, 0x1c7a90,8, 0x1c7c00,43, 0x1c7cb0,3, 0x1c7d00,43, 0x1c7db0,3, 0x1c7e00,4, 0x1c7e20,12, 0x1c7e60,12, 0x1c7ea0,7, 0x1c7ec0,4, 0x1c7ee0,7, 0x1c7f00,4, 0x1c7f20,7, 0x1c7f40,4, 0x1c7f60,7, 0x1c7f80,4, 0x1c7fa0,5, 0x1c7fc0,4, 0x1c7fe0,5, 0x1c8000,7, 0x1c8100,7, 0x1c8124,4, 0x1c8138,2, 0x1c8180,4, 0x1c8198,6, 0x1c8200,7, 0x1c8300,7, 0x1c8324,4, 0x1c8338,2, 0x1c8380,4, 0x1c8398,6, 0x1c8400,12, 0x1c8434,29, 0x1c84c0,1, 0x1c84c8,8, 0x1c8500,6, 0x1c8528,1, 0x1c8530,1, 0x1c853c,1, 0x1c8544,1, 0x1c8554,11, 0x1c8584,1, 0x1c8594,7, 0x1c8600,4, 0x1c8640,6, 0x1c8700,3, 0x1c8710,2, 0x1c8720,2, 0x1c8730,18, 0x1c8780,11, 0x1c87c0,11, 0x1c8800,7, 0x1c8900,7, 0x1c8924,4, 0x1c8938,2, 0x1c8980,4, 0x1c8998,6, 0x1c8a00,7, 0x1c8b00,7, 0x1c8b24,4, 0x1c8b38,2, 0x1c8b80,4, 0x1c8b98,6, 0x1c8c00,12, 0x1c8c34,29, 0x1c8cc0,1, 0x1c8cc8,8, 0x1c8d00,6, 0x1c8d28,1, 0x1c8d30,1, 0x1c8d3c,1, 0x1c8d44,1, 0x1c8d54,11, 0x1c8d84,1, 0x1c8d94,7, 0x1c8e00,4, 0x1c8e40,6, 0x1c8f00,3, 0x1c8f10,2, 0x1c8f20,2, 0x1c8f30,18, 0x1c8f80,11, 0x1c8fc0,11, 0x1c90c0,9, 0x1c9104,1, 0x1c910c,28, 0x1c92c0,9, 0x1c9304,1, 0x1c930c,28, 0x1c9400,3, 0x1c9414,50, 0x1c9500,13, 0x1c9580,2, 0x1c958c,2, 0x1c95a0,1, 0x1c95c0,1, 0x1c9600,3, 0x1c9614,50, 0x1c9700,13, 0x1c9780,2, 0x1c978c,2, 0x1c97a0,1, 0x1c97c0,1, 0x1c9800,6, 0x1c981c,4, 0x1c9838,10, 0x1c9880,59, 0x1c9980,3, 0x1c9990,7, 0x1c9a00,5, 0x1c9a20,2, 0x1c9a40,5, 0x1c9a60,2, 0x1c9a80,2, 0x1c9a90,8, 0x1c9c00,43, 0x1c9cb0,3, 0x1c9d00,43, 0x1c9db0,3, 0x1c9e00,4, 0x1c9e20,12, 0x1c9e60,12, 0x1c9ea0,7, 0x1c9ec0,4, 0x1c9ee0,7, 0x1c9f00,4, 0x1c9f20,7, 0x1c9f40,4, 0x1c9f60,7, 0x1c9f80,4, 0x1c9fa0,5, 0x1c9fc0,4, 0x1c9fe0,5, 0x1ca000,7, 0x1ca100,7, 0x1ca124,4, 0x1ca138,2, 0x1ca180,4, 0x1ca198,6, 0x1ca200,7, 0x1ca300,7, 0x1ca324,4, 0x1ca338,2, 0x1ca380,4, 0x1ca398,6, 0x1ca400,12, 0x1ca434,29, 0x1ca4c0,1, 0x1ca4c8,8, 0x1ca500,6, 0x1ca528,1, 0x1ca530,1, 0x1ca53c,1, 0x1ca544,1, 0x1ca554,11, 0x1ca584,1, 0x1ca594,7, 0x1ca600,4, 0x1ca640,6, 0x1ca700,3, 0x1ca710,2, 0x1ca720,2, 0x1ca730,18, 0x1ca780,11, 0x1ca7c0,11, 0x1ca8c0,9, 0x1ca904,1, 0x1ca90c,28, 0x1caac0,9, 0x1cab04,1, 0x1cab0c,28, 0x1cac00,3, 0x1cac14,50, 0x1cad00,13, 0x1cad80,2, 0x1cad8c,2, 0x1cada0,1, 0x1cadc0,1, 0x1cae00,5, 0x1cae20,2, 0x1cae40,1, 0x1cae48,4, 0x1cb000,6, 0x1cb01c,4, 0x1cb038,10, 0x1cb080,59, 0x1cb180,3, 0x1cb190,7, 0x1cb200,6, 0x1cb220,5, 0x1cb240,6, 0x1cb260,37, 0x1cb300,43, 0x1cb3b0,3, 0x1cb400,4, 0x1cb420,12, 0x1cb460,7, 0x1cb480,4, 0x1cb4a0,7, 0x1cb4c0,4, 0x1cb4e0,5, 0x1cc000,3, 0x1cc010,7, 0x1cc030,5, 0x1cc048,5, 0x1cc060,10, 0x1cc0a0,6, 0x1cc0c0,4, 0x1cc104,1, 0x1cc114,3, 0x1cc200,49, 0x1cc300,4, 0x1cc340,10, 0x1cc380,7, 0x1cc3a0,7, 0x1cc400,3, 0x1cc410,7, 0x1cc430,5, 0x1cc448,5, 0x1cc460,10, 0x1cc4a0,6, 0x1cc4c0,4, 0x1cc504,1, 0x1cc514,3, 0x1cc600,49, 0x1cc700,4, 0x1cc740,10, 0x1cc780,7, 0x1cc7a0,7, 0x1cc800,3, 0x1cc810,7, 0x1cc830,5, 0x1cc848,5, 0x1cc860,10, 0x1cc8a0,6, 0x1cc8c0,4, 0x1cc904,1, 0x1cc914,3, 0x1cca00,49, 0x1ccb00,4, 0x1ccb40,10, 0x1ccb80,7, 0x1ccba0,7, 0x1ccc00,3, 0x1ccc10,7, 0x1ccc30,5, 0x1ccc48,5, 0x1ccc60,10, 0x1ccca0,6, 0x1cccc0,4, 0x1ccd04,1, 0x1ccd14,3, 0x1cce00,49, 0x1ccf00,4, 0x1ccf40,10, 0x1ccf80,7, 0x1ccfa0,7, 0x1cd000,3, 0x1cd010,7, 0x1cd030,5, 0x1cd048,5, 0x1cd060,10, 0x1cd0a0,6, 0x1cd0c0,4, 0x1cd104,1, 0x1cd114,3, 0x1cd200,49, 0x1cd300,4, 0x1cd340,10, 0x1cd380,7, 0x1cd3a0,7, 0x1cd400,3, 0x1cd410,7, 0x1cd430,5, 0x1cd448,5, 0x1cd460,10, 0x1cd4a0,6, 0x1cd4c0,4, 0x1cd504,1, 0x1cd514,3, 0x1cd600,49, 0x1cd700,4, 0x1cd740,10, 0x1cd780,7, 0x1cd7a0,7, 0x1cd800,3, 0x1cd810,7, 0x1cd830,5, 0x1cd848,5, 0x1cd860,10, 0x1cd8a0,6, 0x1cd8c0,4, 0x1cd904,1, 0x1cd914,3, 0x1cda00,49, 0x1cdb00,4, 0x1cdb40,10, 0x1cdb80,7, 0x1cdba0,7, 0x1cdc00,3, 0x1cdc10,7, 0x1cdc30,5, 0x1cdc48,5, 0x1cdc60,10, 0x1cdca0,6, 0x1cdcc0,4, 0x1cdd04,1, 0x1cdd14,3, 0x1cde00,49, 0x1cdf00,4, 0x1cdf40,10, 0x1cdf80,7, 0x1cdfa0,7, 0x1ce000,3, 0x1ce010,7, 0x1ce030,5, 0x1ce048,5, 0x1ce060,10, 0x1ce0a0,6, 0x1ce0c0,4, 0x1ce104,1, 0x1ce114,3, 0x1ce200,49, 0x1ce300,4, 0x1ce340,10, 0x1ce380,7, 0x1ce3a0,7, 0x1ce400,3, 0x1ce410,7, 0x1ce430,5, 0x1ce448,5, 0x1ce460,10, 0x1ce4a0,6, 0x1ce4c0,4, 0x1ce504,1, 0x1ce514,3, 0x1ce600,49, 0x1ce700,4, 0x1ce740,10, 0x1ce780,7, 0x1ce7a0,7, 0x1ce800,3, 0x1ce810,7, 0x1ce830,5, 0x1ce848,5, 0x1ce860,10, 0x1ce8a0,6, 0x1ce8c0,4, 0x1ce904,1, 0x1ce914,3, 0x1cea00,49, 0x1ceb00,4, 0x1ceb40,10, 0x1ceb80,7, 0x1ceba0,7, 0x1d0000,1, 0x1d1100,7, 0x1d1120,3, 0x1d1200,21, 0x1d1300,12, 0x1d1600,3, 0x1d1610,7, 0x1d1630,8, 0x1d16d0,3, 0x1d3ffc,2, 0x1d4008,32, 0x1d40c8,3, 0x1d40e0,2, 0x1d4100,8, 0x1d4148,6, 0x1d4164,2, 0x1d4170,1, 0x1d4178,2, 0x1d41c0,3, 0x1d41d0,3, 0x1d41e0,2, 0x1d41f0,15, 0x1d4230,11, 0x1d5000,30, 0x1d5080,3, 0x1d5090,1, 0x1d5204,5, 0x1d5220,11, 0x1d5250,3, 0x1d5300,34, 0x1d5390,3, 0x1d5400,25, 0x1d6800,1, 0x1d6810,5, 0x1d6830,1, 0x1d6840,6, 0x1d6a00,72, 0x1d6c38,1, 0x1d8004,11, 0x1d9000,51, 0x1d9c00,10, 0x1d9c80,3, 0x1e0000,7, 0x1e0100,7, 0x1e0124,4, 0x1e0138,2, 0x1e0180,4, 0x1e0198,6, 0x1e0200,7, 0x1e0300,7, 0x1e0324,4, 0x1e0338,2, 0x1e0380,4, 0x1e0398,6, 0x1e0400,12, 0x1e0434,29, 0x1e04c0,1, 0x1e04c8,8, 0x1e0500,6, 0x1e0528,1, 0x1e0530,1, 0x1e053c,1, 0x1e0544,1, 0x1e0554,11, 0x1e0584,1, 0x1e0594,7, 0x1e0600,4, 0x1e0640,6, 0x1e0700,3, 0x1e0710,2, 0x1e0720,2, 0x1e0730,18, 0x1e0780,11, 0x1e07c0,11, 0x1e0800,7, 0x1e0900,7, 0x1e0924,4, 0x1e0938,2, 0x1e0980,4, 0x1e0998,6, 0x1e0a00,7, 0x1e0b00,7, 0x1e0b24,4, 0x1e0b38,2, 0x1e0b80,4, 0x1e0b98,6, 0x1e0c00,12, 0x1e0c34,29, 0x1e0cc0,1, 0x1e0cc8,8, 0x1e0d00,6, 0x1e0d28,1, 0x1e0d30,1, 0x1e0d3c,1, 0x1e0d44,1, 0x1e0d54,11, 0x1e0d84,1, 0x1e0d94,7, 0x1e0e00,4, 0x1e0e40,6, 0x1e0f00,3, 0x1e0f10,2, 0x1e0f20,2, 0x1e0f30,18, 0x1e0f80,11, 0x1e0fc0,11, 0x1e10c0,9, 0x1e1104,1, 0x1e110c,28, 0x1e12c0,9, 0x1e1304,1, 0x1e130c,28, 0x1e1400,3, 0x1e1414,50, 0x1e1500,13, 0x1e1580,2, 0x1e158c,2, 0x1e15a0,1, 0x1e15c0,1, 0x1e1600,3, 0x1e1614,50, 0x1e1700,13, 0x1e1780,2, 0x1e178c,2, 0x1e17a0,1, 0x1e17c0,1, 0x1e1800,6, 0x1e181c,4, 0x1e1838,10, 0x1e1880,59, 0x1e1980,3, 0x1e1990,7, 0x1e1a00,5, 0x1e1a20,2, 0x1e1a40,5, 0x1e1a60,2, 0x1e1a80,2, 0x1e1a90,8, 0x1e1c00,43, 0x1e1cb0,3, 0x1e1d00,43, 0x1e1db0,3, 0x1e1e00,4, 0x1e1e20,12, 0x1e1e60,12, 0x1e1ea0,7, 0x1e1ec0,4, 0x1e1ee0,7, 0x1e1f00,4, 0x1e1f20,7, 0x1e1f40,4, 0x1e1f60,7, 0x1e1f80,4, 0x1e1fa0,5, 0x1e1fc0,4, 0x1e1fe0,5, 0x1e2000,7, 0x1e2100,7, 0x1e2124,4, 0x1e2138,2, 0x1e2180,4, 0x1e2198,6, 0x1e2200,7, 0x1e2300,7, 0x1e2324,4, 0x1e2338,2, 0x1e2380,4, 0x1e2398,6, 0x1e2400,12, 0x1e2434,29, 0x1e24c0,1, 0x1e24c8,8, 0x1e2500,6, 0x1e2528,1, 0x1e2530,1, 0x1e253c,1, 0x1e2544,1, 0x1e2554,11, 0x1e2584,1, 0x1e2594,7, 0x1e2600,4, 0x1e2640,6, 0x1e2700,3, 0x1e2710,2, 0x1e2720,2, 0x1e2730,18, 0x1e2780,11, 0x1e27c0,11, 0x1e2800,7, 0x1e2900,7, 0x1e2924,4, 0x1e2938,2, 0x1e2980,4, 0x1e2998,6, 0x1e2a00,7, 0x1e2b00,7, 0x1e2b24,4, 0x1e2b38,2, 0x1e2b80,4, 0x1e2b98,6, 0x1e2c00,12, 0x1e2c34,29, 0x1e2cc0,1, 0x1e2cc8,8, 0x1e2d00,6, 0x1e2d28,1, 0x1e2d30,1, 0x1e2d3c,1, 0x1e2d44,1, 0x1e2d54,11, 0x1e2d84,1, 0x1e2d94,7, 0x1e2e00,4, 0x1e2e40,6, 0x1e2f00,3, 0x1e2f10,2, 0x1e2f20,2, 0x1e2f30,18, 0x1e2f80,11, 0x1e2fc0,11, 0x1e30c0,9, 0x1e3104,1, 0x1e310c,28, 0x1e32c0,9, 0x1e3304,1, 0x1e330c,28, 0x1e3400,3, 0x1e3414,50, 0x1e3500,13, 0x1e3580,2, 0x1e358c,2, 0x1e35a0,1, 0x1e35c0,1, 0x1e3600,3, 0x1e3614,50, 0x1e3700,13, 0x1e3780,2, 0x1e378c,2, 0x1e37a0,1, 0x1e37c0,1, 0x1e3800,6, 0x1e381c,4, 0x1e3838,10, 0x1e3880,59, 0x1e3980,3, 0x1e3990,7, 0x1e3a00,5, 0x1e3a20,2, 0x1e3a40,5, 0x1e3a60,2, 0x1e3a80,2, 0x1e3a90,8, 0x1e3c00,43, 0x1e3cb0,3, 0x1e3d00,43, 0x1e3db0,3, 0x1e3e00,4, 0x1e3e20,12, 0x1e3e60,12, 0x1e3ea0,7, 0x1e3ec0,4, 0x1e3ee0,7, 0x1e3f00,4, 0x1e3f20,7, 0x1e3f40,4, 0x1e3f60,7, 0x1e3f80,4, 0x1e3fa0,5, 0x1e3fc0,4, 0x1e3fe0,5, 0x1e4000,7, 0x1e4100,7, 0x1e4124,4, 0x1e4138,2, 0x1e4180,4, 0x1e4198,6, 0x1e4200,7, 0x1e4300,7, 0x1e4324,4, 0x1e4338,2, 0x1e4380,4, 0x1e4398,6, 0x1e4400,12, 0x1e4434,29, 0x1e44c0,1, 0x1e44c8,8, 0x1e4500,6, 0x1e4528,1, 0x1e4530,1, 0x1e453c,1, 0x1e4544,1, 0x1e4554,11, 0x1e4584,1, 0x1e4594,7, 0x1e4600,4, 0x1e4640,6, 0x1e4700,3, 0x1e4710,2, 0x1e4720,2, 0x1e4730,18, 0x1e4780,11, 0x1e47c0,11, 0x1e4800,7, 0x1e4900,7, 0x1e4924,4, 0x1e4938,2, 0x1e4980,4, 0x1e4998,6, 0x1e4a00,7, 0x1e4b00,7, 0x1e4b24,4, 0x1e4b38,2, 0x1e4b80,4, 0x1e4b98,6, 0x1e4c00,12, 0x1e4c34,29, 0x1e4cc0,1, 0x1e4cc8,8, 0x1e4d00,6, 0x1e4d28,1, 0x1e4d30,1, 0x1e4d3c,1, 0x1e4d44,1, 0x1e4d54,11, 0x1e4d84,1, 0x1e4d94,7, 0x1e4e00,4, 0x1e4e40,6, 0x1e4f00,3, 0x1e4f10,2, 0x1e4f20,2, 0x1e4f30,18, 0x1e4f80,11, 0x1e4fc0,11, 0x1e50c0,9, 0x1e5104,1, 0x1e510c,28, 0x1e52c0,9, 0x1e5304,1, 0x1e530c,28, 0x1e5400,3, 0x1e5414,50, 0x1e5500,13, 0x1e5580,2, 0x1e558c,2, 0x1e55a0,1, 0x1e55c0,1, 0x1e5600,3, 0x1e5614,50, 0x1e5700,13, 0x1e5780,2, 0x1e578c,2, 0x1e57a0,1, 0x1e57c0,1, 0x1e5800,6, 0x1e581c,4, 0x1e5838,10, 0x1e5880,59, 0x1e5980,3, 0x1e5990,7, 0x1e5a00,5, 0x1e5a20,2, 0x1e5a40,5, 0x1e5a60,2, 0x1e5a80,2, 0x1e5a90,8, 0x1e5c00,43, 0x1e5cb0,3, 0x1e5d00,43, 0x1e5db0,3, 0x1e5e00,4, 0x1e5e20,12, 0x1e5e60,12, 0x1e5ea0,7, 0x1e5ec0,4, 0x1e5ee0,7, 0x1e5f00,4, 0x1e5f20,7, 0x1e5f40,4, 0x1e5f60,7, 0x1e5f80,4, 0x1e5fa0,5, 0x1e5fc0,4, 0x1e5fe0,5, 0x1e6000,7, 0x1e6100,7, 0x1e6124,4, 0x1e6138,2, 0x1e6180,4, 0x1e6198,6, 0x1e6200,7, 0x1e6300,7, 0x1e6324,4, 0x1e6338,2, 0x1e6380,4, 0x1e6398,6, 0x1e6400,12, 0x1e6434,29, 0x1e64c0,1, 0x1e64c8,8, 0x1e6500,6, 0x1e6528,1, 0x1e6530,1, 0x1e653c,1, 0x1e6544,1, 0x1e6554,11, 0x1e6584,1, 0x1e6594,7, 0x1e6600,4, 0x1e6640,6, 0x1e6700,3, 0x1e6710,2, 0x1e6720,2, 0x1e6730,18, 0x1e6780,11, 0x1e67c0,11, 0x1e6800,7, 0x1e6900,7, 0x1e6924,4, 0x1e6938,2, 0x1e6980,4, 0x1e6998,6, 0x1e6a00,7, 0x1e6b00,7, 0x1e6b24,4, 0x1e6b38,2, 0x1e6b80,4, 0x1e6b98,6, 0x1e6c00,12, 0x1e6c34,29, 0x1e6cc0,1, 0x1e6cc8,8, 0x1e6d00,6, 0x1e6d28,1, 0x1e6d30,1, 0x1e6d3c,1, 0x1e6d44,1, 0x1e6d54,11, 0x1e6d84,1, 0x1e6d94,7, 0x1e6e00,4, 0x1e6e40,6, 0x1e6f00,3, 0x1e6f10,2, 0x1e6f20,2, 0x1e6f30,18, 0x1e6f80,11, 0x1e6fc0,11, 0x1e70c0,9, 0x1e7104,1, 0x1e710c,28, 0x1e72c0,9, 0x1e7304,1, 0x1e730c,28, 0x1e7400,3, 0x1e7414,50, 0x1e7500,13, 0x1e7580,2, 0x1e758c,2, 0x1e75a0,1, 0x1e75c0,1, 0x1e7600,3, 0x1e7614,50, 0x1e7700,13, 0x1e7780,2, 0x1e778c,2, 0x1e77a0,1, 0x1e77c0,1, 0x1e7800,6, 0x1e781c,4, 0x1e7838,10, 0x1e7880,59, 0x1e7980,3, 0x1e7990,7, 0x1e7a00,5, 0x1e7a20,2, 0x1e7a40,5, 0x1e7a60,2, 0x1e7a80,2, 0x1e7a90,8, 0x1e7c00,43, 0x1e7cb0,3, 0x1e7d00,43, 0x1e7db0,3, 0x1e7e00,4, 0x1e7e20,12, 0x1e7e60,12, 0x1e7ea0,7, 0x1e7ec0,4, 0x1e7ee0,7, 0x1e7f00,4, 0x1e7f20,7, 0x1e7f40,4, 0x1e7f60,7, 0x1e7f80,4, 0x1e7fa0,5, 0x1e7fc0,4, 0x1e7fe0,5, 0x1e8000,7, 0x1e8100,7, 0x1e8124,4, 0x1e8138,2, 0x1e8180,4, 0x1e8198,6, 0x1e8200,7, 0x1e8300,7, 0x1e8324,4, 0x1e8338,2, 0x1e8380,4, 0x1e8398,6, 0x1e8400,12, 0x1e8434,29, 0x1e84c0,1, 0x1e84c8,8, 0x1e8500,6, 0x1e8528,1, 0x1e8530,1, 0x1e853c,1, 0x1e8544,1, 0x1e8554,11, 0x1e8584,1, 0x1e8594,7, 0x1e8600,4, 0x1e8640,6, 0x1e8700,3, 0x1e8710,2, 0x1e8720,2, 0x1e8730,18, 0x1e8780,11, 0x1e87c0,11, 0x1e8800,7, 0x1e8900,7, 0x1e8924,4, 0x1e8938,2, 0x1e8980,4, 0x1e8998,6, 0x1e8a00,7, 0x1e8b00,7, 0x1e8b24,4, 0x1e8b38,2, 0x1e8b80,4, 0x1e8b98,6, 0x1e8c00,12, 0x1e8c34,29, 0x1e8cc0,1, 0x1e8cc8,8, 0x1e8d00,6, 0x1e8d28,1, 0x1e8d30,1, 0x1e8d3c,1, 0x1e8d44,1, 0x1e8d54,11, 0x1e8d84,1, 0x1e8d94,7, 0x1e8e00,4, 0x1e8e40,6, 0x1e8f00,3, 0x1e8f10,2, 0x1e8f20,2, 0x1e8f30,18, 0x1e8f80,11, 0x1e8fc0,11, 0x1e90c0,9, 0x1e9104,1, 0x1e910c,28, 0x1e92c0,9, 0x1e9304,1, 0x1e930c,28, 0x1e9400,3, 0x1e9414,50, 0x1e9500,13, 0x1e9580,2, 0x1e958c,2, 0x1e95a0,1, 0x1e95c0,1, 0x1e9600,3, 0x1e9614,50, 0x1e9700,13, 0x1e9780,2, 0x1e978c,2, 0x1e97a0,1, 0x1e97c0,1, 0x1e9800,6, 0x1e981c,4, 0x1e9838,10, 0x1e9880,59, 0x1e9980,3, 0x1e9990,7, 0x1e9a00,5, 0x1e9a20,2, 0x1e9a40,5, 0x1e9a60,2, 0x1e9a80,2, 0x1e9a90,8, 0x1e9c00,43, 0x1e9cb0,3, 0x1e9d00,43, 0x1e9db0,3, 0x1e9e00,4, 0x1e9e20,12, 0x1e9e60,12, 0x1e9ea0,7, 0x1e9ec0,4, 0x1e9ee0,7, 0x1e9f00,4, 0x1e9f20,7, 0x1e9f40,4, 0x1e9f60,7, 0x1e9f80,4, 0x1e9fa0,5, 0x1e9fc0,4, 0x1e9fe0,5, 0x1ea000,7, 0x1ea100,7, 0x1ea124,4, 0x1ea138,2, 0x1ea180,4, 0x1ea198,6, 0x1ea200,7, 0x1ea300,7, 0x1ea324,4, 0x1ea338,2, 0x1ea380,4, 0x1ea398,6, 0x1ea400,12, 0x1ea434,29, 0x1ea4c0,1, 0x1ea4c8,8, 0x1ea500,6, 0x1ea528,1, 0x1ea530,1, 0x1ea53c,1, 0x1ea544,1, 0x1ea554,11, 0x1ea584,1, 0x1ea594,7, 0x1ea600,4, 0x1ea640,6, 0x1ea700,3, 0x1ea710,2, 0x1ea720,2, 0x1ea730,18, 0x1ea780,11, 0x1ea7c0,11, 0x1ea8c0,9, 0x1ea904,1, 0x1ea90c,28, 0x1eaac0,9, 0x1eab04,1, 0x1eab0c,28, 0x1eac00,3, 0x1eac14,50, 0x1ead00,13, 0x1ead80,2, 0x1ead8c,2, 0x1eada0,1, 0x1eadc0,1, 0x1eae00,5, 0x1eae20,2, 0x1eae40,1, 0x1eae48,4, 0x1eb000,6, 0x1eb01c,4, 0x1eb038,10, 0x1eb080,59, 0x1eb180,3, 0x1eb190,7, 0x1eb200,6, 0x1eb220,5, 0x1eb240,6, 0x1eb260,37, 0x1eb300,43, 0x1eb3b0,3, 0x1eb400,4, 0x1eb420,12, 0x1eb460,7, 0x1eb480,4, 0x1eb4a0,7, 0x1eb4c0,4, 0x1eb4e0,5, 0x1ec000,3, 0x1ec010,7, 0x1ec030,5, 0x1ec048,5, 0x1ec060,10, 0x1ec0a0,6, 0x1ec0c0,4, 0x1ec104,1, 0x1ec114,3, 0x1ec200,49, 0x1ec300,4, 0x1ec340,10, 0x1ec380,7, 0x1ec3a0,7, 0x1ec400,3, 0x1ec410,7, 0x1ec430,5, 0x1ec448,5, 0x1ec460,10, 0x1ec4a0,6, 0x1ec4c0,4, 0x1ec504,1, 0x1ec514,3, 0x1ec600,49, 0x1ec700,4, 0x1ec740,10, 0x1ec780,7, 0x1ec7a0,7, 0x1ec800,3, 0x1ec810,7, 0x1ec830,5, 0x1ec848,5, 0x1ec860,10, 0x1ec8a0,6, 0x1ec8c0,4, 0x1ec904,1, 0x1ec914,3, 0x1eca00,49, 0x1ecb00,4, 0x1ecb40,10, 0x1ecb80,7, 0x1ecba0,7, 0x1ecc00,3, 0x1ecc10,7, 0x1ecc30,5, 0x1ecc48,5, 0x1ecc60,10, 0x1ecca0,6, 0x1eccc0,4, 0x1ecd04,1, 0x1ecd14,3, 0x1ece00,49, 0x1ecf00,4, 0x1ecf40,10, 0x1ecf80,7, 0x1ecfa0,7, 0x1ed000,3, 0x1ed010,7, 0x1ed030,5, 0x1ed048,5, 0x1ed060,10, 0x1ed0a0,6, 0x1ed0c0,4, 0x1ed104,1, 0x1ed114,3, 0x1ed200,49, 0x1ed300,4, 0x1ed340,10, 0x1ed380,7, 0x1ed3a0,7, 0x1ed400,3, 0x1ed410,7, 0x1ed430,5, 0x1ed448,5, 0x1ed460,10, 0x1ed4a0,6, 0x1ed4c0,4, 0x1ed504,1, 0x1ed514,3, 0x1ed600,49, 0x1ed700,4, 0x1ed740,10, 0x1ed780,7, 0x1ed7a0,7, 0x1ed800,3, 0x1ed810,7, 0x1ed830,5, 0x1ed848,5, 0x1ed860,10, 0x1ed8a0,6, 0x1ed8c0,4, 0x1ed904,1, 0x1ed914,3, 0x1eda00,49, 0x1edb00,4, 0x1edb40,10, 0x1edb80,7, 0x1edba0,7, 0x1edc00,3, 0x1edc10,7, 0x1edc30,5, 0x1edc48,5, 0x1edc60,10, 0x1edca0,6, 0x1edcc0,4, 0x1edd04,1, 0x1edd14,3, 0x1ede00,49, 0x1edf00,4, 0x1edf40,10, 0x1edf80,7, 0x1edfa0,7, 0x1ee000,3, 0x1ee010,7, 0x1ee030,5, 0x1ee048,5, 0x1ee060,10, 0x1ee0a0,6, 0x1ee0c0,4, 0x1ee104,1, 0x1ee114,3, 0x1ee200,49, 0x1ee300,4, 0x1ee340,10, 0x1ee380,7, 0x1ee3a0,7, 0x1ee400,3, 0x1ee410,7, 0x1ee430,5, 0x1ee448,5, 0x1ee460,10, 0x1ee4a0,6, 0x1ee4c0,4, 0x1ee504,1, 0x1ee514,3, 0x1ee600,49, 0x1ee700,4, 0x1ee740,10, 0x1ee780,7, 0x1ee7a0,7, 0x1ee800,3, 0x1ee810,7, 0x1ee830,5, 0x1ee848,5, 0x1ee860,10, 0x1ee8a0,6, 0x1ee8c0,4, 0x1ee904,1, 0x1ee914,3, 0x1eea00,49, 0x1eeb00,4, 0x1eeb40,10, 0x1eeb80,7, 0x1eeba0,7, 0x1f0000,1, 0x1f1100,7, 0x1f1120,3, 0x1f1200,21, 0x1f1300,12, 0x1f1600,3, 0x1f1610,7, 0x1f1630,8, 0x1f16d0,3, 0x1f3ffc,2, 0x1f4008,32, 0x1f40c8,3, 0x1f40e0,2, 0x1f4100,8, 0x1f4148,6, 0x1f4164,2, 0x1f4170,1, 0x1f4178,2, 0x1f41c0,3, 0x1f41d0,3, 0x1f41e0,2, 0x1f41f0,15, 0x1f4230,11, 0x1f5000,30, 0x1f5080,3, 0x1f5090,1, 0x1f5204,5, 0x1f5220,11, 0x1f5250,3, 0x1f5300,34, 0x1f5390,3, 0x1f5400,25, 0x1f6800,1, 0x1f6810,5, 0x1f6830,1, 0x1f6840,6, 0x1f6a00,72, 0x1f6c38,1, 0x1f8004,11, 0x1f9000,51, 0x1f9c00,10, 0x1f9c80,3, 0x200014,1, 0x20001c,1, 0x200114,1, 0x20011c,1, 0x200214,1, 0x20021c,1, 0x200314,1, 0x20031c,1, 0x200414,1, 0x20041c,1, 0x200514,1, 0x20051c,1, 0x200614,1, 0x20061c,1, 0x200714,1, 0x20071c,1, 0x200814,1, 0x20081c,1, 0x200914,1, 0x20091c,1, 0x200a14,1, 0x200a1c,1, 0x200b14,1, 0x200b1c,1, 0x200c14,1, 0x200c1c,1, 0x200d14,1, 0x200d1c,1, 0x200e14,1, 0x200e1c,1, 0x200f14,1, 0x200f1c,1, 0x201014,1, 0x20101c,1, 0x201114,1, 0x20111c,1, 0x201214,1, 0x20121c,1, 0x201314,1, 0x20131c,1, 0x201414,1, 0x20141c,1, 0x201514,1, 0x20151c,1, 0x201614,1, 0x20161c,1, 0x201714,1, 0x20171c,1, 0x201814,1, 0x20181c,1, 0x201914,1, 0x20191c,1, 0x201a14,1, 0x201a1c,1, 0x201b14,1, 0x201b1c,1, 0x201c14,1, 0x201c1c,1, 0x201d14,1, 0x201d1c,1, 0x201e14,1, 0x201e1c,1, 0x201f14,1, 0x201f1c,1, 0x202014,1, 0x20201c,1, 0x202114,1, 0x20211c,1, 0x202214,1, 0x20221c,1, 0x202314,1, 0x20231c,1, 0x202414,1, 0x20241c,1, 0x202514,1, 0x20251c,1, 0x202614,1, 0x20261c,1, 0x202714,1, 0x20271c,1, 0x202814,1, 0x20281c,1, 0x202900,3, 0x202910,4, 0x203000,7, 0x203040,6, 0x203074,1, 0x20307c,6, 0x2030a0,7, 0x203100,8, 0x203138,5, 0x203150,2, 0x203170,2, 0x203180,19, 0x203200,4, 0x203214,2, 0x203220,6, 0x203240,4, 0x203260,6, 0x203280,5, 0x2032a0,12, 0x203300,3, 0x203310,14, 0x203400,7, 0x203440,6, 0x203474,1, 0x20347c,6, 0x2034a0,7, 0x203500,8, 0x203538,5, 0x203550,2, 0x203570,2, 0x203580,19, 0x203600,4, 0x203614,2, 0x203620,6, 0x203640,4, 0x203660,6, 0x203680,5, 0x2036a0,12, 0x203700,3, 0x203710,14, 0x203800,7, 0x203840,6, 0x203874,1, 0x20387c,6, 0x2038a0,7, 0x203900,8, 0x203938,5, 0x203950,2, 0x203970,2, 0x203980,19, 0x203a00,4, 0x203a14,2, 0x203a20,6, 0x203a40,4, 0x203a60,6, 0x203a80,5, 0x203aa0,12, 0x203b00,3, 0x203b10,14, 0x203c00,7, 0x203c40,6, 0x203c74,1, 0x203c7c,6, 0x203ca0,7, 0x203d00,8, 0x203d38,5, 0x203d50,2, 0x203d70,2, 0x203d80,19, 0x203e00,4, 0x203e14,2, 0x203e20,6, 0x203e40,4, 0x203e60,6, 0x203e80,5, 0x203ea0,12, 0x203f00,3, 0x203f10,14, 0x204000,7, 0x204040,6, 0x204074,1, 0x20407c,6, 0x2040a0,7, 0x204100,8, 0x204138,5, 0x204150,2, 0x204170,2, 0x204180,19, 0x204200,4, 0x204214,2, 0x204220,6, 0x204240,4, 0x204260,6, 0x204280,5, 0x2042a0,12, 0x204300,3, 0x204310,14, 0x204400,7, 0x204440,6, 0x204474,1, 0x20447c,6, 0x2044a0,7, 0x204500,8, 0x204538,5, 0x204550,2, 0x204570,2, 0x204580,19, 0x204600,4, 0x204614,2, 0x204620,6, 0x204640,4, 0x204660,6, 0x204680,5, 0x2046a0,12, 0x204700,3, 0x204710,14, 0x204800,7, 0x204840,6, 0x204874,1, 0x20487c,6, 0x2048a0,7, 0x204900,8, 0x204938,5, 0x204950,2, 0x204970,2, 0x204980,19, 0x204a00,4, 0x204a14,2, 0x204a20,6, 0x204a40,4, 0x204a60,6, 0x204a80,5, 0x204aa0,12, 0x204b00,3, 0x204b10,14, 0x204c00,7, 0x204c40,6, 0x204c74,1, 0x204c7c,6, 0x204ca0,7, 0x204d00,8, 0x204d38,5, 0x204d50,2, 0x204d70,2, 0x204d80,19, 0x204e00,4, 0x204e14,2, 0x204e20,6, 0x204e40,4, 0x204e60,6, 0x204e80,5, 0x204ea0,12, 0x204f00,3, 0x204f10,14, 0x205000,7, 0x205040,6, 0x205074,1, 0x20507c,6, 0x2050a0,7, 0x205100,8, 0x205138,5, 0x205150,2, 0x205170,2, 0x205180,19, 0x205200,4, 0x205214,2, 0x205220,6, 0x205240,4, 0x205260,6, 0x205280,5, 0x2052a0,12, 0x205300,3, 0x205310,14, 0x205400,7, 0x205440,6, 0x205474,1, 0x20547c,6, 0x2054a0,7, 0x205500,8, 0x205538,5, 0x205550,2, 0x205570,2, 0x205580,19, 0x205600,4, 0x205614,2, 0x205620,6, 0x205640,4, 0x205660,6, 0x205680,5, 0x2056a0,12, 0x205700,3, 0x205710,14, 0x205800,7, 0x205840,6, 0x205874,1, 0x20587c,6, 0x2058a0,7, 0x205900,8, 0x205938,5, 0x205950,2, 0x205970,2, 0x205980,19, 0x205a00,4, 0x205a14,2, 0x205a20,6, 0x205a40,4, 0x205a60,6, 0x205a80,5, 0x205aa0,12, 0x205b00,3, 0x205b10,14, 0x205c00,7, 0x205c40,6, 0x205c74,1, 0x205c7c,6, 0x205ca0,7, 0x205d00,8, 0x205d38,5, 0x205d50,2, 0x205d70,2, 0x205d80,19, 0x205e00,4, 0x205e14,2, 0x205e20,6, 0x205e40,4, 0x205e60,6, 0x205e80,5, 0x205ea0,12, 0x205f00,3, 0x205f10,14, 0x206000,7, 0x206040,6, 0x206074,1, 0x20607c,6, 0x2060a0,7, 0x206100,8, 0x206138,5, 0x206150,2, 0x206170,2, 0x206180,19, 0x206200,4, 0x206214,2, 0x206220,6, 0x206240,4, 0x206260,6, 0x206280,5, 0x2062a0,12, 0x206300,3, 0x206310,14, 0x206400,7, 0x206440,6, 0x206474,1, 0x20647c,6, 0x2064a0,7, 0x206500,8, 0x206538,5, 0x206550,2, 0x206570,2, 0x206580,19, 0x206600,4, 0x206614,2, 0x206620,6, 0x206640,4, 0x206660,6, 0x206680,5, 0x2066a0,12, 0x206700,3, 0x206710,14, 0x206800,7, 0x206840,6, 0x206874,1, 0x20687c,6, 0x2068a0,7, 0x206900,8, 0x206938,5, 0x206950,2, 0x206970,2, 0x206980,19, 0x206a00,4, 0x206a14,2, 0x206a20,6, 0x206a40,4, 0x206a60,6, 0x206a80,5, 0x206aa0,12, 0x206b00,3, 0x206b10,14, 0x206c00,7, 0x206c40,6, 0x206c74,1, 0x206c7c,6, 0x206ca0,7, 0x206d00,8, 0x206d38,5, 0x206d50,2, 0x206d70,2, 0x206d80,19, 0x206e00,4, 0x206e14,2, 0x206e20,6, 0x206e40,4, 0x206e60,6, 0x206e80,5, 0x206ea0,12, 0x206f00,3, 0x206f10,14, 0x207000,7, 0x207040,6, 0x207074,1, 0x20707c,6, 0x2070a0,7, 0x207100,8, 0x207138,5, 0x207150,2, 0x207170,2, 0x207180,19, 0x207200,4, 0x207214,2, 0x207220,6, 0x207240,4, 0x207260,6, 0x207280,5, 0x2072a0,12, 0x207300,3, 0x207310,14, 0x207400,7, 0x207440,6, 0x207474,1, 0x20747c,6, 0x2074a0,7, 0x207500,8, 0x207538,5, 0x207550,2, 0x207570,2, 0x207580,19, 0x207600,4, 0x207614,2, 0x207620,6, 0x207640,4, 0x207660,6, 0x207680,5, 0x2076a0,12, 0x207700,3, 0x207710,14, 0x207800,7, 0x207840,6, 0x207874,1, 0x20787c,6, 0x2078a0,7, 0x207900,8, 0x207938,5, 0x207950,2, 0x207970,2, 0x207980,19, 0x207a00,4, 0x207a14,2, 0x207a20,6, 0x207a40,4, 0x207a60,6, 0x207a80,5, 0x207aa0,12, 0x207b00,3, 0x207b10,14, 0x207c00,7, 0x207c40,6, 0x207c74,1, 0x207c7c,6, 0x207ca0,7, 0x207d00,8, 0x207d38,5, 0x207d50,2, 0x207d70,2, 0x207d80,19, 0x207e00,4, 0x207e14,2, 0x207e20,6, 0x207e40,4, 0x207e60,6, 0x207e80,5, 0x207ea0,12, 0x207f00,3, 0x207f10,14, 0x208000,7, 0x208040,6, 0x208074,1, 0x20807c,6, 0x2080a0,7, 0x208100,8, 0x208138,5, 0x208150,2, 0x208170,2, 0x208180,19, 0x208200,4, 0x208214,2, 0x208220,6, 0x208240,4, 0x208260,6, 0x208280,5, 0x2082a0,12, 0x208300,3, 0x208310,14, 0x209cc0,7, 0x209ce0,4, 0x209d00,25, 0x209d80,1, 0x209dc0,2, 0x209e00,11, 0x209e90,2, 0x20a000,115, 0x20ac00,10, 0x20ac80,3, 0x210014,1, 0x21001c,1, 0x210114,1, 0x21011c,1, 0x210214,1, 0x21021c,1, 0x210314,1, 0x21031c,1, 0x210414,1, 0x21041c,1, 0x210514,1, 0x21051c,1, 0x210614,1, 0x21061c,1, 0x210714,1, 0x21071c,1, 0x210814,1, 0x21081c,1, 0x210914,1, 0x21091c,1, 0x210a14,1, 0x210a1c,1, 0x210b14,1, 0x210b1c,1, 0x210c14,1, 0x210c1c,1, 0x210d14,1, 0x210d1c,1, 0x210e14,1, 0x210e1c,1, 0x210f14,1, 0x210f1c,1, 0x211014,1, 0x21101c,1, 0x211114,1, 0x21111c,1, 0x211214,1, 0x21121c,1, 0x211314,1, 0x21131c,1, 0x211414,1, 0x21141c,1, 0x211514,1, 0x21151c,1, 0x211614,1, 0x21161c,1, 0x211714,1, 0x21171c,1, 0x211814,1, 0x21181c,1, 0x211914,1, 0x21191c,1, 0x211a14,1, 0x211a1c,1, 0x211b14,1, 0x211b1c,1, 0x211c14,1, 0x211c1c,1, 0x211d14,1, 0x211d1c,1, 0x211e14,1, 0x211e1c,1, 0x211f14,1, 0x211f1c,1, 0x212014,1, 0x21201c,1, 0x212114,1, 0x21211c,1, 0x212214,1, 0x21221c,1, 0x212314,1, 0x21231c,1, 0x212414,1, 0x21241c,1, 0x212514,1, 0x21251c,1, 0x212614,1, 0x21261c,1, 0x212714,1, 0x21271c,1, 0x212814,1, 0x21281c,1, 0x212900,3, 0x212910,4, 0x213000,7, 0x213040,6, 0x213074,1, 0x21307c,6, 0x2130a0,7, 0x213100,8, 0x213138,5, 0x213150,2, 0x213170,2, 0x213180,19, 0x213200,4, 0x213214,2, 0x213220,6, 0x213240,4, 0x213260,6, 0x213280,5, 0x2132a0,12, 0x213300,3, 0x213310,14, 0x213400,7, 0x213440,6, 0x213474,1, 0x21347c,6, 0x2134a0,7, 0x213500,8, 0x213538,5, 0x213550,2, 0x213570,2, 0x213580,19, 0x213600,4, 0x213614,2, 0x213620,6, 0x213640,4, 0x213660,6, 0x213680,5, 0x2136a0,12, 0x213700,3, 0x213710,14, 0x213800,7, 0x213840,6, 0x213874,1, 0x21387c,6, 0x2138a0,7, 0x213900,8, 0x213938,5, 0x213950,2, 0x213970,2, 0x213980,19, 0x213a00,4, 0x213a14,2, 0x213a20,6, 0x213a40,4, 0x213a60,6, 0x213a80,5, 0x213aa0,12, 0x213b00,3, 0x213b10,14, 0x213c00,7, 0x213c40,6, 0x213c74,1, 0x213c7c,6, 0x213ca0,7, 0x213d00,8, 0x213d38,5, 0x213d50,2, 0x213d70,2, 0x213d80,19, 0x213e00,4, 0x213e14,2, 0x213e20,6, 0x213e40,4, 0x213e60,6, 0x213e80,5, 0x213ea0,12, 0x213f00,3, 0x213f10,14, 0x214000,7, 0x214040,6, 0x214074,1, 0x21407c,6, 0x2140a0,7, 0x214100,8, 0x214138,5, 0x214150,2, 0x214170,2, 0x214180,19, 0x214200,4, 0x214214,2, 0x214220,6, 0x214240,4, 0x214260,6, 0x214280,5, 0x2142a0,12, 0x214300,3, 0x214310,14, 0x214400,7, 0x214440,6, 0x214474,1, 0x21447c,6, 0x2144a0,7, 0x214500,8, 0x214538,5, 0x214550,2, 0x214570,2, 0x214580,19, 0x214600,4, 0x214614,2, 0x214620,6, 0x214640,4, 0x214660,6, 0x214680,5, 0x2146a0,12, 0x214700,3, 0x214710,14, 0x214800,7, 0x214840,6, 0x214874,1, 0x21487c,6, 0x2148a0,7, 0x214900,8, 0x214938,5, 0x214950,2, 0x214970,2, 0x214980,19, 0x214a00,4, 0x214a14,2, 0x214a20,6, 0x214a40,4, 0x214a60,6, 0x214a80,5, 0x214aa0,12, 0x214b00,3, 0x214b10,14, 0x214c00,7, 0x214c40,6, 0x214c74,1, 0x214c7c,6, 0x214ca0,7, 0x214d00,8, 0x214d38,5, 0x214d50,2, 0x214d70,2, 0x214d80,19, 0x214e00,4, 0x214e14,2, 0x214e20,6, 0x214e40,4, 0x214e60,6, 0x214e80,5, 0x214ea0,12, 0x214f00,3, 0x214f10,14, 0x215000,7, 0x215040,6, 0x215074,1, 0x21507c,6, 0x2150a0,7, 0x215100,8, 0x215138,5, 0x215150,2, 0x215170,2, 0x215180,19, 0x215200,4, 0x215214,2, 0x215220,6, 0x215240,4, 0x215260,6, 0x215280,5, 0x2152a0,12, 0x215300,3, 0x215310,14, 0x215400,7, 0x215440,6, 0x215474,1, 0x21547c,6, 0x2154a0,7, 0x215500,8, 0x215538,5, 0x215550,2, 0x215570,2, 0x215580,19, 0x215600,4, 0x215614,2, 0x215620,6, 0x215640,4, 0x215660,6, 0x215680,5, 0x2156a0,12, 0x215700,3, 0x215710,14, 0x215800,7, 0x215840,6, 0x215874,1, 0x21587c,6, 0x2158a0,7, 0x215900,8, 0x215938,5, 0x215950,2, 0x215970,2, 0x215980,19, 0x215a00,4, 0x215a14,2, 0x215a20,6, 0x215a40,4, 0x215a60,6, 0x215a80,5, 0x215aa0,12, 0x215b00,3, 0x215b10,14, 0x215c00,7, 0x215c40,6, 0x215c74,1, 0x215c7c,6, 0x215ca0,7, 0x215d00,8, 0x215d38,5, 0x215d50,2, 0x215d70,2, 0x215d80,19, 0x215e00,4, 0x215e14,2, 0x215e20,6, 0x215e40,4, 0x215e60,6, 0x215e80,5, 0x215ea0,12, 0x215f00,3, 0x215f10,14, 0x216000,7, 0x216040,6, 0x216074,1, 0x21607c,6, 0x2160a0,7, 0x216100,8, 0x216138,5, 0x216150,2, 0x216170,2, 0x216180,19, 0x216200,4, 0x216214,2, 0x216220,6, 0x216240,4, 0x216260,6, 0x216280,5, 0x2162a0,12, 0x216300,3, 0x216310,14, 0x216400,7, 0x216440,6, 0x216474,1, 0x21647c,6, 0x2164a0,7, 0x216500,8, 0x216538,5, 0x216550,2, 0x216570,2, 0x216580,19, 0x216600,4, 0x216614,2, 0x216620,6, 0x216640,4, 0x216660,6, 0x216680,5, 0x2166a0,12, 0x216700,3, 0x216710,14, 0x216800,7, 0x216840,6, 0x216874,1, 0x21687c,6, 0x2168a0,7, 0x216900,8, 0x216938,5, 0x216950,2, 0x216970,2, 0x216980,19, 0x216a00,4, 0x216a14,2, 0x216a20,6, 0x216a40,4, 0x216a60,6, 0x216a80,5, 0x216aa0,12, 0x216b00,3, 0x216b10,14, 0x216c00,7, 0x216c40,6, 0x216c74,1, 0x216c7c,6, 0x216ca0,7, 0x216d00,8, 0x216d38,5, 0x216d50,2, 0x216d70,2, 0x216d80,19, 0x216e00,4, 0x216e14,2, 0x216e20,6, 0x216e40,4, 0x216e60,6, 0x216e80,5, 0x216ea0,12, 0x216f00,3, 0x216f10,14, 0x217000,7, 0x217040,6, 0x217074,1, 0x21707c,6, 0x2170a0,7, 0x217100,8, 0x217138,5, 0x217150,2, 0x217170,2, 0x217180,19, 0x217200,4, 0x217214,2, 0x217220,6, 0x217240,4, 0x217260,6, 0x217280,5, 0x2172a0,12, 0x217300,3, 0x217310,14, 0x217400,7, 0x217440,6, 0x217474,1, 0x21747c,6, 0x2174a0,7, 0x217500,8, 0x217538,5, 0x217550,2, 0x217570,2, 0x217580,19, 0x217600,4, 0x217614,2, 0x217620,6, 0x217640,4, 0x217660,6, 0x217680,5, 0x2176a0,12, 0x217700,3, 0x217710,14, 0x217800,7, 0x217840,6, 0x217874,1, 0x21787c,6, 0x2178a0,7, 0x217900,8, 0x217938,5, 0x217950,2, 0x217970,2, 0x217980,19, 0x217a00,4, 0x217a14,2, 0x217a20,6, 0x217a40,4, 0x217a60,6, 0x217a80,5, 0x217aa0,12, 0x217b00,3, 0x217b10,14, 0x217c00,7, 0x217c40,6, 0x217c74,1, 0x217c7c,6, 0x217ca0,7, 0x217d00,8, 0x217d38,5, 0x217d50,2, 0x217d70,2, 0x217d80,19, 0x217e00,4, 0x217e14,2, 0x217e20,6, 0x217e40,4, 0x217e60,6, 0x217e80,5, 0x217ea0,12, 0x217f00,3, 0x217f10,14, 0x218000,7, 0x218040,6, 0x218074,1, 0x21807c,6, 0x2180a0,7, 0x218100,8, 0x218138,5, 0x218150,2, 0x218170,2, 0x218180,19, 0x218200,4, 0x218214,2, 0x218220,6, 0x218240,4, 0x218260,6, 0x218280,5, 0x2182a0,12, 0x218300,3, 0x218310,14, 0x219cc0,7, 0x219ce0,4, 0x219d00,25, 0x219d80,1, 0x219dc0,2, 0x219e00,11, 0x219e90,2, 0x21a000,115, 0x21ac00,10, 0x21ac80,3, 0x220000,3, 0x220010,2, 0x220100,1, 0x220108,1, 0x220800,14, 0x220840,14, 0x220880,28, 0x220c00,10, 0x220c80,3, 0x220cc0,1, 0x221000,352, 0x221800,3, 0x221810,3, 0x221820,3, 0x221830,3, 0x221840,3, 0x221850,3, 0x221860,3, 0x221870,3, 0x221880,3, 0x221890,3, 0x2218a0,3, 0x2218b0,3, 0x2218c0,3, 0x2218d0,3, 0x2218e0,3, 0x2218f0,3, 0x221900,3, 0x221910,3, 0x221920,3, 0x221930,3, 0x221a00,11, 0x222000,1, 0x222008,3, 0x222100,10, 0x222180,3, 0x2221e0,1, 0x222200,1, 0x223000,328, 0x223800,3, 0x223810,3, 0x223820,3, 0x223830,3, 0x223840,3, 0x223850,3, 0x223860,3, 0x223870,3, 0x223880,3, 0x223890,3, 0x2238a0,3, 0x2238b0,3, 0x2238c0,3, 0x2238d0,3, 0x2238e0,3, 0x2238f0,3, 0x223900,3, 0x223910,3, 0x223920,3, 0x223930,3, 0x223a00,11, 0x240004,1, 0x240040,152, 0x2402a8,135, 0x240504,10, 0x240590,6, 0x2405b0,5, 0x240600,3, 0x240610,3, 0x240620,3, 0x240630,3, 0x240640,36, 0x240700,2, 0x240740,7, 0x240760,6, 0x240780,1, 0x240788,2, 0x240800,3, 0x240810,3, 0x240824,3, 0x240844,5, 0x240880,20, 0x240904,1, 0x24090c,3, 0x240920,3, 0x240930,1, 0x240940,3, 0x240950,5, 0x240968,9, 0x240a00,13, 0x240a40,3, 0x240a50,5, 0x240a70,5, 0x240aa4,5, 0x240ac4,3, 0x240ae0,6, 0x240b00,2, 0x240c00,42, 0x240d00,24, 0x240d84,1, 0x240d98,10, 0x240dc4,3, 0x240dd4,1, 0x240ddc,4, 0x241000,9, 0x241028,1, 0x241040,9, 0x241068,1, 0x241080,9, 0x2410a8,1, 0x2410c0,9, 0x2410e8,1, 0x241100,9, 0x241128,1, 0x241140,9, 0x241168,1, 0x241180,9, 0x2411a8,1, 0x2411c0,9, 0x2411e8,1, 0x241204,1, 0x24120c,31, 0x241304,8, 0x241328,10, 0x241400,9, 0x241428,1, 0x241440,9, 0x241468,1, 0x241480,9, 0x2414a8,1, 0x2414c0,9, 0x2414e8,1, 0x241500,9, 0x241528,1, 0x241540,9, 0x241568,1, 0x241580,9, 0x2415a8,1, 0x2415c0,9, 0x2415e8,1, 0x241604,1, 0x241614,5, 0x241644,1, 0x24164c,5, 0x241704,1, 0x241740,16, 0x241784,1, 0x241790,4, 0x2417a4,1, 0x2417ac,1, 0x2417b4,1, 0x2417bc,10, 0x241804,3, 0x241844,1, 0x241858,12, 0x241900,10, 0x241940,2, 0x241a00,2, 0x242004,1, 0x24205c,43, 0x242204,1, 0x242220,27, 0x242304,7, 0x242324,7, 0x242344,7, 0x242364,7, 0x242384,1, 0x24238c,5, 0x2423a4,1, 0x2423ac,5, 0x2423c4,1, 0x2423cc,11, 0x242400,3, 0x242410,9, 0x242438,19, 0x242488,12, 0x2424c4,1, 0x2424cc,1, 0x2424d4,1, 0x2424dc,1, 0x2424e4,1, 0x2424ec,1, 0x2424f4,1, 0x2424fc,322, 0x242a08,2, 0x242a84,1, 0x242a90,14, 0x242c04,1, 0x242c7c,35, 0x242e00,2, 0x242e40,7, 0x242e60,6, 0x242e80,1, 0x242e88,2, 0x242f00,8, 0x243000,280, 0x243480,4, 0x2434a0,6, 0x2434c0,4, 0x243504,1, 0x24352c,23, 0x243600,3, 0x243610,22, 0x243674,1, 0x24367c,1, 0x243684,1, 0x24368c,18, 0x244204,1, 0x244220,27, 0x244344,7, 0x244364,7, 0x244400,3, 0x244a00,1, 0x244a84,1, 0x244a90,14, 0x244e00,2, 0x244e40,7, 0x244e60,6, 0x244e80,1, 0x244e88,2, 0x245000,256, 0x245428,8, 0x245450,4, 0x245480,4, 0x2454a0,6, 0x2454c0,4, 0x245504,1, 0x24552c,23, 0x245600,3, 0x245610,18, 0x245660,2, 0x245674,1, 0x24567c,1, 0x245684,1, 0x24568c,1, 0x245698,8, 0x2456c0,5, 0x246000,57, 0x246100,2, 0x246404,1, 0x246430,22, 0x246500,60, 0x2465f4,1, 0x2465fc,1, 0x246604,1, 0x24660c,1, 0x246614,1, 0x24661c,1, 0x246624,1, 0x24662c,17, 0x247100,104, 0x2472a8,135, 0x247504,10, 0x247590,6, 0x2475b0,2, 0x2475c0,1, 0x247600,3, 0x247610,3, 0x247620,3, 0x247630,3, 0x247640,36, 0x247700,2, 0x247740,7, 0x247760,6, 0x247780,1, 0x247788,2, 0x247800,3, 0x247810,3, 0x247824,3, 0x247844,5, 0x247a70,5, 0x247ae0,6, 0x247b00,2, 0x247c00,42, 0x247dd4,1, 0x247ddc,4, 0x248000,1042, 0x24b000,67, 0x24bc00,10, 0x24bc80,3, 0x24c000,296, 0x24c800,11, 0x24c900,3, 0x24c910,2, 0x24cc00,226, 0x24cf90,3, 0x24d000,8, 0x24d100,13, 0x24d144,7, 0x24d164,8, 0x250000,13, 0x250038,17, 0x250080,6, 0x250200,19, 0x250280,6, 0x2502b0,6, 0x2502e0,4, 0x250300,2, 0x250320,4, 0x251004,1, 0x25101c,25, 0x251084,1, 0x25109c,27, 0x251200,6, 0x251400,4, 0x251500,47, 0x251600,25, 0x251680,1, 0x251700,59, 0x252000,19, 0x252c00,10, 0x252c80,3, 0x253000,1, 0x258000,31, 0x258080,31, 0x258100,31, 0x258180,31, 0x258200,31, 0x258280,31, 0x258300,31, 0x258380,31, 0x258400,64, 0x258504,5, 0x258520,1, 0x258600,6, 0x258620,6, 0x258640,6, 0x258660,6, 0x258680,6, 0x2586a0,6, 0x2586c0,6, 0x2586e0,6, 0x258700,4, 0x258720,3, 0x258730,3, 0x258760,3, 0x258770,1, 0x258780,5, 0x259000,11, 0x259040,11, 0x259080,11, 0x2590c0,11, 0x259100,21, 0x259160,5, 0x259180,3, 0x259190,3, 0x2591a0,11, 0x2591d0,3, 0x2591e0,3, 0x259200,86, 0x259400,5, 0x25941c,1, 0x259440,6, 0x259460,1, 0x259480,3, 0x259490,1, 0x259800,32, 0x259884,1, 0x259894,3, 0x2598c4,3, 0x259900,1, 0x25990c,3, 0x259920,3, 0x259940,1, 0x259950,9, 0x259980,2, 0x2599a4,1, 0x2599b4,8, 0x259a00,20, 0x259a60,6, 0x259a80,4, 0x259aa0,6, 0x25c100,1, 0x25c10c,1, 0x25c200,34, 0x25c290,3, 0x25c300,3, 0x25c508,1, 0x25c610,2, 0x25c620,1, 0x25c628,1, 0x25c630,1, 0x25c640,4, 0x25c660,6, 0x25c680,3, 0x25c700,25, 0x25c800,1, 0x25c900,6, 0x25f000,19, 0x260000,3, 0x260010,3, 0x260020,5, 0x260038,9, 0x260060,8, 0x260100,17, 0x260200,3, 0x260210,3, 0x260220,5, 0x260238,9, 0x260260,8, 0x260300,17, 0x260400,3, 0x260414,1, 0x26041c,33, 0x260540,33, 0x2605c8,12, 0x260844,1, 0x26084c,1, 0x260880,27, 0x260900,4, 0x260980,19, 0x260a00,4, 0x260a80,19, 0x260b00,1, 0x260b40,5, 0x260b60,5, 0x260b80,6, 0x260bb0,17, 0x260c00,13, 0x260c40,5, 0x260c80,12, 0x261000,3, 0x261010,3, 0x261020,5, 0x261038,9, 0x261060,8, 0x261100,17, 0x261200,3, 0x261210,3, 0x261220,5, 0x261238,9, 0x261260,8, 0x261300,17, 0x261400,3, 0x261414,1, 0x26141c,33, 0x261540,33, 0x2615c8,12, 0x261844,1, 0x26184c,1, 0x261880,27, 0x261900,4, 0x261980,19, 0x261a00,4, 0x261a80,19, 0x261b00,1, 0x261b40,5, 0x261b60,5, 0x261b80,6, 0x261bb0,17, 0x261c00,13, 0x261c40,5, 0x261c80,12, 0x262000,19, 0x262080,4, 0x263000,19, 0x264000,19, 0x265000,2, 0x26500c,5, 0x265028,3, 0x265038,3, 0x265050,1, 0x265080,13, 0x265120,4, 0x265140,1, 0x265400,26, 0x265470,3, 0x265580,10, 0x2655c0,8, 0x2655e8,2, 0x2655f4,2, 0x265600,5, 0x265618,1, 0x265620,1, 0x265628,1, 0x265630,2, 0x265640,2, 0x265650,2, 0x265690,4, 0x265740,2, 0x265800,11, 0x265880,2, 0x2658b0,2, 0x270000,12, 0x270044,1, 0x270050,4, 0x270080,21, 0x270180,21, 0x270200,21, 0x270260,3, 0x270280,32, 0x270304,1, 0x270368,122, 0x270580,84, 0x270700,91, 0x270880,4, 0x2708a0,7, 0x2708c0,7, 0x270900,21, 0x27095c,1, 0x270980,7, 0x2709a0,2, 0x2709c0,7, 0x270a00,12, 0x271b00,8, 0x271b80,11, 0x271bc0,2, 0x271bd0,2, 0x272000,6, 0x272020,19, 0x272084,1, 0x27208c,1, 0x272094,7, 0x2720b4,3, 0x272104,1, 0x272120,46, 0x272204,1, 0x272210,4, 0x272224,1, 0x27222c,1, 0x272244,1, 0x272250,17, 0x272304,1, 0x272340,16, 0x272384,1, 0x27238c,3, 0x272400,3, 0x272418,3, 0x272430,1, 0x272440,3, 0x272458,3, 0x272470,1, 0x272480,1, 0x272500,3, 0x272518,3, 0x272530,1, 0x272540,3, 0x272558,3, 0x272570,1, 0x272580,1, 0x272604,1, 0x27261c,48, 0x272704,1, 0x272740,18, 0x272794,1, 0x27279c,3, 0x2727b0,2, 0x2727c8,1, 0x2727dc,1, 0x272804,1, 0x2728b0,84, 0x272a04,1, 0x272a40,48, 0x272b04,1, 0x272b18,58, 0x272c04,1, 0x272c40,48, 0x272d04,1, 0x272d38,50, 0x272f04,1, 0x272f30,20, 0x273004,1, 0x273030,20, 0x273084,1, 0x273090,12, 0x2730c4,15, 0x273104,1, 0x273110,12, 0x273144,1, 0x273158,10, 0x273184,1, 0x273198,10, 0x2731c4,1, 0x2731e0,8, 0x273204,1, 0x273210,12, 0x273244,1, 0x273250,12, 0x273284,1, 0x273290,12, 0x2732c4,1, 0x2732e0,8, 0x273304,1, 0x273310,12, 0x273344,1, 0x273358,10, 0x273384,1, 0x273398,10, 0x2733c4,1, 0x2733e0,8, 0x273404,1, 0x273410,12, 0x273484,1, 0x2734c0,16, 0x273504,1, 0x273520,8, 0x273604,1, 0x273610,4, 0x273624,1, 0x27362c,1, 0x273634,7, 0x274000,3, 0x274014,1, 0x27401c,2, 0x274028,3, 0x274040,3, 0x274050,1, 0x274060,4, 0x274104,1, 0x274110,7, 0x274144,6, 0x274164,6, 0x274184,6, 0x2741a4,6, 0x2741c4,6, 0x274204,1, 0x274214,6, 0x274244,6, 0x274264,6, 0x274284,6, 0x2742a4,6, 0x2742c4,6, 0x2742e4,6, 0x274400,29, 0x274480,25, 0x274500,18, 0x274580,17, 0x274600,42, 0x274700,28, 0x274780,28, 0x274800,17, 0x274880,17, 0x274900,26, 0x274980,26, 0x274a00,18, 0x274a80,18, 0x274b00,22, 0x274b80,22, 0x274c00,12, 0x274c40,12, 0x274c80,7, 0x274d04,1, 0x274d34,19, 0x275400,131, 0x275900,13, 0x275a00,4, 0x275a80,19, 0x275b00,3, 0x277000,35, 0x277800,14, 0x277840,14, 0x277880,28, 0x277c00,10, 0x277c80,3, 0x277cc0,1, 0x280000,25, 0x280080,32, 0x280108,2, 0x280200,16, 0x280280,18, 0x2802cc,2, 0x280300,21, 0x280384,1, 0x280390,10, 0x2803c0,7, 0x2803e4,1, 0x2803ec,24, 0x280480,3, 0x2804a0,23, 0x280500,17, 0x280548,9, 0x280570,1, 0x280600,1, 0x280800,25, 0x280880,32, 0x280908,2, 0x280a00,16, 0x280a80,18, 0x280acc,2, 0x280b00,21, 0x280b84,1, 0x280b90,10, 0x280bc0,7, 0x280be4,1, 0x280bec,24, 0x280c80,3, 0x280ca0,23, 0x280d00,17, 0x280d48,9, 0x280d70,1, 0x280e00,1, 0x281000,25, 0x281080,32, 0x281108,2, 0x281200,16, 0x281280,18, 0x2812cc,2, 0x281300,21, 0x281384,1, 0x281390,10, 0x2813c0,7, 0x2813e4,1, 0x2813ec,24, 0x281480,3, 0x2814a0,23, 0x281500,17, 0x281548,9, 0x281570,1, 0x281600,1, 0x281800,25, 0x281880,32, 0x281908,2, 0x281a00,16, 0x281a80,18, 0x281acc,2, 0x281b00,21, 0x281b84,1, 0x281b90,10, 0x281bc0,7, 0x281be4,1, 0x281bec,24, 0x281c80,3, 0x281ca0,23, 0x281d00,17, 0x281d48,9, 0x281d70,1, 0x281e00,1, 0x282000,25, 0x282080,32, 0x282108,2, 0x282200,16, 0x282280,18, 0x2822cc,2, 0x282300,21, 0x282384,1, 0x282390,10, 0x2823c0,7, 0x2823e4,1, 0x2823ec,24, 0x282480,3, 0x2824a0,23, 0x282500,17, 0x282548,9, 0x282570,1, 0x282600,1, 0x282800,25, 0x282880,32, 0x282908,2, 0x282a00,16, 0x282a80,18, 0x282acc,2, 0x282b00,21, 0x282b84,1, 0x282b90,10, 0x282bc0,7, 0x282be4,1, 0x282bec,24, 0x282c80,3, 0x282ca0,23, 0x282d00,17, 0x282d48,9, 0x282d70,1, 0x282e00,1, 0x283000,25, 0x283080,32, 0x283108,2, 0x283200,16, 0x283280,18, 0x2832cc,2, 0x283300,21, 0x283384,1, 0x283390,10, 0x2833c0,7, 0x2833e4,1, 0x2833ec,24, 0x283480,3, 0x2834a0,23, 0x283500,17, 0x283548,9, 0x283570,1, 0x283600,1, 0x283800,25, 0x283880,32, 0x283908,2, 0x283a00,16, 0x283a80,18, 0x283acc,2, 0x283b00,21, 0x283b84,1, 0x283b90,10, 0x283bc0,7, 0x283be4,1, 0x283bec,24, 0x283c80,3, 0x283ca0,23, 0x283d00,17, 0x283d48,9, 0x283d70,1, 0x283e00,1, 0x284000,25, 0x284080,32, 0x284108,2, 0x284200,16, 0x284280,18, 0x2842cc,2, 0x284300,21, 0x284384,1, 0x284390,10, 0x2843c0,7, 0x2843e4,1, 0x2843ec,24, 0x284480,3, 0x2844a0,23, 0x284500,17, 0x284548,9, 0x284570,1, 0x284600,1, 0x284800,25, 0x284880,32, 0x284908,2, 0x284a00,16, 0x284a80,18, 0x284acc,2, 0x284b00,21, 0x284b84,1, 0x284b90,10, 0x284bc0,7, 0x284be4,1, 0x284bec,24, 0x284c80,3, 0x284ca0,23, 0x284d00,17, 0x284d48,9, 0x284d70,1, 0x284e00,1, 0x285000,25, 0x285080,32, 0x285108,2, 0x285200,16, 0x285280,18, 0x2852cc,2, 0x285300,21, 0x285384,1, 0x285390,10, 0x2853c0,7, 0x2853e4,1, 0x2853ec,24, 0x285480,3, 0x2854a0,23, 0x285500,17, 0x285548,9, 0x285570,1, 0x285600,1, 0x285800,25, 0x285880,32, 0x285908,2, 0x285a00,16, 0x285a80,18, 0x285acc,2, 0x285b00,21, 0x285b84,1, 0x285b90,10, 0x285bc0,7, 0x285be4,1, 0x285bec,24, 0x285c80,3, 0x285ca0,23, 0x285d00,17, 0x285d48,9, 0x285d70,1, 0x285e00,1, 0x286000,25, 0x286080,32, 0x286108,2, 0x286200,16, 0x286280,18, 0x2862cc,2, 0x286300,21, 0x286384,1, 0x286390,10, 0x2863c0,7, 0x2863e4,1, 0x2863ec,24, 0x286480,3, 0x2864a0,23, 0x286500,17, 0x286548,9, 0x286570,1, 0x286600,1, 0x286800,25, 0x286880,32, 0x286908,2, 0x286a00,16, 0x286a80,18, 0x286acc,2, 0x286b00,21, 0x286b84,1, 0x286b90,10, 0x286bc0,7, 0x286be4,1, 0x286bec,24, 0x286c80,3, 0x286ca0,23, 0x286d00,17, 0x286d48,9, 0x286d70,1, 0x286e00,1, 0x287000,25, 0x287080,32, 0x287108,2, 0x287200,16, 0x287280,18, 0x2872cc,2, 0x287300,21, 0x287384,1, 0x287390,10, 0x2873c0,7, 0x2873e4,1, 0x2873ec,24, 0x287480,3, 0x2874a0,23, 0x287500,17, 0x287548,9, 0x287570,1, 0x287600,1, 0x287800,25, 0x287880,32, 0x287908,2, 0x287a00,16, 0x287a80,18, 0x287acc,2, 0x287b00,21, 0x287b84,1, 0x287b90,10, 0x287bc0,7, 0x287be4,1, 0x287bec,24, 0x287c80,3, 0x287ca0,23, 0x287d00,17, 0x287d48,9, 0x287d70,1, 0x287e00,1, 0x288000,25, 0x288080,32, 0x288108,2, 0x288200,16, 0x288280,18, 0x2882cc,2, 0x288300,21, 0x288384,1, 0x288390,10, 0x2883c0,7, 0x2883e4,1, 0x2883ec,24, 0x288480,3, 0x2884a0,23, 0x288500,17, 0x288548,9, 0x288570,1, 0x288600,1, 0x288800,25, 0x288880,32, 0x288908,2, 0x288a00,16, 0x288a80,18, 0x288acc,2, 0x288b00,21, 0x288b84,1, 0x288b90,10, 0x288bc0,7, 0x288be4,1, 0x288bec,24, 0x288c80,3, 0x288ca0,23, 0x288d00,17, 0x288d48,9, 0x288d70,1, 0x288e00,1, 0x289000,25, 0x289080,32, 0x289108,2, 0x289200,16, 0x289280,18, 0x2892cc,2, 0x289300,21, 0x289384,1, 0x289390,10, 0x2893c0,7, 0x2893e4,1, 0x2893ec,24, 0x289480,3, 0x2894a0,23, 0x289500,17, 0x289548,9, 0x289570,1, 0x289600,1, 0x289800,25, 0x289880,32, 0x289908,2, 0x289a00,16, 0x289a80,18, 0x289acc,2, 0x289b00,21, 0x289b84,1, 0x289b90,10, 0x289bc0,7, 0x289be4,1, 0x289bec,24, 0x289c80,3, 0x289ca0,23, 0x289d00,17, 0x289d48,9, 0x289d70,1, 0x289e00,1, 0x28a000,25, 0x28a080,32, 0x28a108,2, 0x28a200,16, 0x28a280,18, 0x28a2cc,2, 0x28a300,21, 0x28a384,1, 0x28a390,10, 0x28a3c0,7, 0x28a3e4,1, 0x28a3ec,24, 0x28a480,3, 0x28a4a0,23, 0x28a500,17, 0x28a548,9, 0x28a570,1, 0x28a600,1, 0x28a800,25, 0x28a880,32, 0x28a908,2, 0x28aa00,16, 0x28aa80,18, 0x28aacc,2, 0x28ab00,21, 0x28ab84,1, 0x28ab90,10, 0x28abc0,7, 0x28abe4,1, 0x28abec,24, 0x28ac80,3, 0x28aca0,23, 0x28ad00,17, 0x28ad48,9, 0x28ad70,1, 0x28ae00,1, 0x28b000,25, 0x28b080,32, 0x28b108,2, 0x28b200,16, 0x28b280,18, 0x28b2cc,2, 0x28b300,21, 0x28b384,1, 0x28b390,10, 0x28b3c0,7, 0x28b3e4,1, 0x28b3ec,24, 0x28b480,3, 0x28b4a0,23, 0x28b500,17, 0x28b548,9, 0x28b570,1, 0x28b600,1, 0x28b800,25, 0x28b880,32, 0x28b908,2, 0x28ba00,16, 0x28ba80,18, 0x28bacc,2, 0x28bb00,21, 0x28bb84,1, 0x28bb90,10, 0x28bbc0,7, 0x28bbe4,1, 0x28bbec,24, 0x28bc80,3, 0x28bca0,23, 0x28bd00,17, 0x28bd48,9, 0x28bd70,1, 0x28be00,1, 0x28c000,25, 0x28c080,32, 0x28c108,2, 0x28c200,16, 0x28c280,18, 0x28c2cc,2, 0x28c300,21, 0x28c384,1, 0x28c390,10, 0x28c3c0,7, 0x28c3e4,1, 0x28c3ec,24, 0x28c480,3, 0x28c4a0,23, 0x28c500,17, 0x28c548,9, 0x28c570,1, 0x28c600,1, 0x28c800,25, 0x28c880,32, 0x28c908,2, 0x28ca00,16, 0x28ca80,18, 0x28cacc,2, 0x28cb00,21, 0x28cb84,1, 0x28cb90,10, 0x28cbc0,7, 0x28cbe4,1, 0x28cbec,24, 0x28cc80,3, 0x28cca0,23, 0x28cd00,17, 0x28cd48,9, 0x28cd70,1, 0x28ce00,1, 0x28d000,25, 0x28d080,32, 0x28d108,2, 0x28d200,16, 0x28d280,18, 0x28d2cc,2, 0x28d300,21, 0x28d384,1, 0x28d390,10, 0x28d3c0,7, 0x28d3e4,1, 0x28d3ec,24, 0x28d480,3, 0x28d4a0,23, 0x28d500,17, 0x28d548,9, 0x28d570,1, 0x28d600,1, 0x28d800,25, 0x28d880,32, 0x28d908,2, 0x28da00,16, 0x28da80,18, 0x28dacc,2, 0x28db00,21, 0x28db84,1, 0x28db90,10, 0x28dbc0,7, 0x28dbe4,1, 0x28dbec,24, 0x28dc80,3, 0x28dca0,23, 0x28dd00,17, 0x28dd48,9, 0x28dd70,1, 0x28de00,1, 0x28e000,25, 0x28e080,32, 0x28e108,2, 0x28e200,16, 0x28e280,18, 0x28e2cc,2, 0x28e300,21, 0x28e384,1, 0x28e390,10, 0x28e3c0,7, 0x28e3e4,1, 0x28e3ec,24, 0x28e480,3, 0x28e4a0,23, 0x28e500,17, 0x28e548,9, 0x28e570,1, 0x28e600,1, 0x28e800,25, 0x28e880,32, 0x28e908,2, 0x28ea00,16, 0x28ea80,18, 0x28eacc,2, 0x28eb00,21, 0x28eb84,1, 0x28eb90,10, 0x28ebc0,7, 0x28ebe4,1, 0x28ebec,24, 0x28ec80,3, 0x28eca0,23, 0x28ed00,17, 0x28ed48,9, 0x28ed70,1, 0x28ee00,1, 0x28f000,25, 0x28f080,32, 0x28f108,2, 0x28f200,16, 0x28f280,18, 0x28f2cc,2, 0x28f300,21, 0x28f384,1, 0x28f390,10, 0x28f3c0,7, 0x28f3e4,1, 0x28f3ec,24, 0x28f480,3, 0x28f4a0,23, 0x28f500,17, 0x28f548,9, 0x28f570,1, 0x28f600,1, 0x28f800,25, 0x28f880,32, 0x28f908,2, 0x28fa00,16, 0x28fa80,18, 0x28facc,2, 0x28fb00,21, 0x28fb84,1, 0x28fb90,10, 0x28fbc0,7, 0x28fbe4,1, 0x28fbec,24, 0x28fc80,3, 0x28fca0,23, 0x28fd00,17, 0x28fd48,9, 0x28fd70,1, 0x28fe00,1, 0x290000,25, 0x290080,32, 0x290108,2, 0x290200,16, 0x290280,18, 0x2902cc,2, 0x290300,21, 0x290384,1, 0x290390,10, 0x2903c0,7, 0x2903e4,1, 0x2903ec,24, 0x290480,3, 0x2904a0,23, 0x290500,17, 0x290548,9, 0x290570,1, 0x290600,1, 0x290800,25, 0x290880,32, 0x290908,2, 0x290a00,16, 0x290a80,18, 0x290acc,2, 0x290b00,21, 0x290b84,1, 0x290b90,10, 0x290bc0,7, 0x290be4,1, 0x290bec,24, 0x290c80,3, 0x290ca0,23, 0x290d00,17, 0x290d48,9, 0x290d70,1, 0x290e00,1, 0x291000,25, 0x291080,32, 0x291108,2, 0x291200,16, 0x291280,18, 0x2912cc,2, 0x291300,21, 0x291384,1, 0x291390,10, 0x2913c0,7, 0x2913e4,1, 0x2913ec,24, 0x291480,3, 0x2914a0,23, 0x291500,17, 0x291548,9, 0x291570,1, 0x291600,1, 0x291800,25, 0x291880,32, 0x291908,2, 0x291a00,16, 0x291a80,18, 0x291acc,2, 0x291b00,21, 0x291b84,1, 0x291b90,10, 0x291bc0,7, 0x291be4,1, 0x291bec,24, 0x291c80,3, 0x291ca0,23, 0x291d00,17, 0x291d48,9, 0x291d70,1, 0x291e00,1, 0x292000,25, 0x292080,32, 0x292108,2, 0x292200,16, 0x292280,18, 0x2922cc,2, 0x292300,21, 0x292384,1, 0x292390,10, 0x2923c0,7, 0x2923e4,1, 0x2923ec,24, 0x292480,3, 0x2924a0,23, 0x292500,17, 0x292548,9, 0x292570,1, 0x292600,1, 0x292800,25, 0x292880,32, 0x292908,2, 0x292a00,16, 0x292a80,18, 0x292acc,2, 0x292b00,21, 0x292b84,1, 0x292b90,10, 0x292bc0,7, 0x292be4,1, 0x292bec,24, 0x292c80,3, 0x292ca0,23, 0x292d00,17, 0x292d48,9, 0x292d70,1, 0x292e00,1, 0x293000,25, 0x293080,32, 0x293108,2, 0x293200,16, 0x293280,18, 0x2932cc,2, 0x293300,21, 0x293384,1, 0x293390,10, 0x2933c0,7, 0x2933e4,1, 0x2933ec,24, 0x293480,3, 0x2934a0,23, 0x293500,17, 0x293548,9, 0x293570,1, 0x293600,1, 0x293800,25, 0x293880,32, 0x293908,2, 0x293a00,16, 0x293a80,18, 0x293acc,2, 0x293b00,21, 0x293b84,1, 0x293b90,10, 0x293bc0,7, 0x293be4,1, 0x293bec,24, 0x293c80,3, 0x293ca0,23, 0x293d00,17, 0x293d48,9, 0x293d70,1, 0x293e00,1, 0x294000,25, 0x294080,32, 0x294108,2, 0x294200,16, 0x294280,18, 0x2942cc,2, 0x294300,21, 0x294384,1, 0x294390,10, 0x2943c0,7, 0x2943e4,1, 0x2943ec,24, 0x294480,3, 0x2944a0,23, 0x294500,17, 0x294548,9, 0x294570,1, 0x294600,1, 0x294800,25, 0x294880,32, 0x294908,2, 0x294a00,16, 0x294a80,18, 0x294acc,2, 0x294b00,21, 0x294b84,1, 0x294b90,10, 0x294bc0,7, 0x294be4,1, 0x294bec,24, 0x294c80,3, 0x294ca0,23, 0x294d00,17, 0x294d48,9, 0x294d70,1, 0x294e00,1, 0x295000,25, 0x295080,32, 0x295108,2, 0x295200,16, 0x295280,18, 0x2952cc,2, 0x295300,21, 0x295384,1, 0x295390,10, 0x2953c0,7, 0x2953e4,1, 0x2953ec,24, 0x295480,3, 0x2954a0,23, 0x295500,17, 0x295548,9, 0x295570,1, 0x295600,1, 0x295800,25, 0x295880,32, 0x295908,2, 0x295a00,16, 0x295a80,18, 0x295acc,2, 0x295b00,21, 0x295b84,1, 0x295b90,10, 0x295bc0,7, 0x295be4,1, 0x295bec,24, 0x295c80,3, 0x295ca0,23, 0x295d00,17, 0x295d48,9, 0x295d70,1, 0x295e00,1, 0x296000,13, 0x296040,9, 0x296068,2, 0x296080,27, 0x296100,3, 0x296110,3, 0x296120,5, 0x297000,19, 0x297c00,10, 0x297c80,3, 0x2a0000,25, 0x2a0080,32, 0x2a0108,2, 0x2a0200,16, 0x2a0280,18, 0x2a02cc,2, 0x2a0300,21, 0x2a0384,1, 0x2a0390,10, 0x2a03c0,7, 0x2a03e4,1, 0x2a03ec,24, 0x2a0480,3, 0x2a04a0,23, 0x2a0500,17, 0x2a0548,9, 0x2a0570,1, 0x2a0600,1, 0x2a0800,25, 0x2a0880,32, 0x2a0908,2, 0x2a0a00,16, 0x2a0a80,18, 0x2a0acc,2, 0x2a0b00,21, 0x2a0b84,1, 0x2a0b90,10, 0x2a0bc0,7, 0x2a0be4,1, 0x2a0bec,24, 0x2a0c80,3, 0x2a0ca0,23, 0x2a0d00,17, 0x2a0d48,9, 0x2a0d70,1, 0x2a0e00,1, 0x2a1000,25, 0x2a1080,32, 0x2a1108,2, 0x2a1200,16, 0x2a1280,18, 0x2a12cc,2, 0x2a1300,21, 0x2a1384,1, 0x2a1390,10, 0x2a13c0,7, 0x2a13e4,1, 0x2a13ec,24, 0x2a1480,3, 0x2a14a0,23, 0x2a1500,17, 0x2a1548,9, 0x2a1570,1, 0x2a1600,1, 0x2a1800,25, 0x2a1880,32, 0x2a1908,2, 0x2a1a00,16, 0x2a1a80,18, 0x2a1acc,2, 0x2a1b00,21, 0x2a1b84,1, 0x2a1b90,10, 0x2a1bc0,7, 0x2a1be4,1, 0x2a1bec,24, 0x2a1c80,3, 0x2a1ca0,23, 0x2a1d00,17, 0x2a1d48,9, 0x2a1d70,1, 0x2a1e00,1, 0x2a2000,25, 0x2a2080,32, 0x2a2108,2, 0x2a2200,16, 0x2a2280,18, 0x2a22cc,2, 0x2a2300,21, 0x2a2384,1, 0x2a2390,10, 0x2a23c0,7, 0x2a23e4,1, 0x2a23ec,24, 0x2a2480,3, 0x2a24a0,23, 0x2a2500,17, 0x2a2548,9, 0x2a2570,1, 0x2a2600,1, 0x2a2800,25, 0x2a2880,32, 0x2a2908,2, 0x2a2a00,16, 0x2a2a80,18, 0x2a2acc,2, 0x2a2b00,21, 0x2a2b84,1, 0x2a2b90,10, 0x2a2bc0,7, 0x2a2be4,1, 0x2a2bec,24, 0x2a2c80,3, 0x2a2ca0,23, 0x2a2d00,17, 0x2a2d48,9, 0x2a2d70,1, 0x2a2e00,1, 0x2a3000,25, 0x2a3080,32, 0x2a3108,2, 0x2a3200,16, 0x2a3280,18, 0x2a32cc,2, 0x2a3300,21, 0x2a3384,1, 0x2a3390,10, 0x2a33c0,7, 0x2a33e4,1, 0x2a33ec,24, 0x2a3480,3, 0x2a34a0,23, 0x2a3500,17, 0x2a3548,9, 0x2a3570,1, 0x2a3600,1, 0x2a3800,25, 0x2a3880,32, 0x2a3908,2, 0x2a3a00,16, 0x2a3a80,18, 0x2a3acc,2, 0x2a3b00,21, 0x2a3b84,1, 0x2a3b90,10, 0x2a3bc0,7, 0x2a3be4,1, 0x2a3bec,24, 0x2a3c80,3, 0x2a3ca0,23, 0x2a3d00,17, 0x2a3d48,9, 0x2a3d70,1, 0x2a3e00,1, 0x2a4000,25, 0x2a4080,32, 0x2a4108,2, 0x2a4200,16, 0x2a4280,18, 0x2a42cc,2, 0x2a4300,21, 0x2a4384,1, 0x2a4390,10, 0x2a43c0,7, 0x2a43e4,1, 0x2a43ec,24, 0x2a4480,3, 0x2a44a0,23, 0x2a4500,17, 0x2a4548,9, 0x2a4570,1, 0x2a4600,1, 0x2a4800,25, 0x2a4880,32, 0x2a4908,2, 0x2a4a00,16, 0x2a4a80,18, 0x2a4acc,2, 0x2a4b00,21, 0x2a4b84,1, 0x2a4b90,10, 0x2a4bc0,7, 0x2a4be4,1, 0x2a4bec,24, 0x2a4c80,3, 0x2a4ca0,23, 0x2a4d00,17, 0x2a4d48,9, 0x2a4d70,1, 0x2a4e00,1, 0x2a5000,25, 0x2a5080,32, 0x2a5108,2, 0x2a5200,16, 0x2a5280,18, 0x2a52cc,2, 0x2a5300,21, 0x2a5384,1, 0x2a5390,10, 0x2a53c0,7, 0x2a53e4,1, 0x2a53ec,24, 0x2a5480,3, 0x2a54a0,23, 0x2a5500,17, 0x2a5548,9, 0x2a5570,1, 0x2a5600,1, 0x2a5800,25, 0x2a5880,32, 0x2a5908,2, 0x2a5a00,16, 0x2a5a80,18, 0x2a5acc,2, 0x2a5b00,21, 0x2a5b84,1, 0x2a5b90,10, 0x2a5bc0,7, 0x2a5be4,1, 0x2a5bec,24, 0x2a5c80,3, 0x2a5ca0,23, 0x2a5d00,17, 0x2a5d48,9, 0x2a5d70,1, 0x2a5e00,1, 0x2a6000,25, 0x2a6080,32, 0x2a6108,2, 0x2a6200,16, 0x2a6280,18, 0x2a62cc,2, 0x2a6300,21, 0x2a6384,1, 0x2a6390,10, 0x2a63c0,7, 0x2a63e4,1, 0x2a63ec,24, 0x2a6480,3, 0x2a64a0,23, 0x2a6500,17, 0x2a6548,9, 0x2a6570,1, 0x2a6600,1, 0x2a6800,25, 0x2a6880,32, 0x2a6908,2, 0x2a6a00,16, 0x2a6a80,18, 0x2a6acc,2, 0x2a6b00,21, 0x2a6b84,1, 0x2a6b90,10, 0x2a6bc0,7, 0x2a6be4,1, 0x2a6bec,24, 0x2a6c80,3, 0x2a6ca0,23, 0x2a6d00,17, 0x2a6d48,9, 0x2a6d70,1, 0x2a6e00,1, 0x2a7000,25, 0x2a7080,32, 0x2a7108,2, 0x2a7200,16, 0x2a7280,18, 0x2a72cc,2, 0x2a7300,21, 0x2a7384,1, 0x2a7390,10, 0x2a73c0,7, 0x2a73e4,1, 0x2a73ec,24, 0x2a7480,3, 0x2a74a0,23, 0x2a7500,17, 0x2a7548,9, 0x2a7570,1, 0x2a7600,1, 0x2a7800,25, 0x2a7880,32, 0x2a7908,2, 0x2a7a00,16, 0x2a7a80,18, 0x2a7acc,2, 0x2a7b00,21, 0x2a7b84,1, 0x2a7b90,10, 0x2a7bc0,7, 0x2a7be4,1, 0x2a7bec,24, 0x2a7c80,3, 0x2a7ca0,23, 0x2a7d00,17, 0x2a7d48,9, 0x2a7d70,1, 0x2a7e00,1, 0x2a8000,25, 0x2a8080,32, 0x2a8108,2, 0x2a8200,16, 0x2a8280,18, 0x2a82cc,2, 0x2a8300,21, 0x2a8384,1, 0x2a8390,10, 0x2a83c0,7, 0x2a83e4,1, 0x2a83ec,24, 0x2a8480,3, 0x2a84a0,23, 0x2a8500,17, 0x2a8548,9, 0x2a8570,1, 0x2a8600,1, 0x2a8800,25, 0x2a8880,32, 0x2a8908,2, 0x2a8a00,16, 0x2a8a80,18, 0x2a8acc,2, 0x2a8b00,21, 0x2a8b84,1, 0x2a8b90,10, 0x2a8bc0,7, 0x2a8be4,1, 0x2a8bec,24, 0x2a8c80,3, 0x2a8ca0,23, 0x2a8d00,17, 0x2a8d48,9, 0x2a8d70,1, 0x2a8e00,1, 0x2a9000,25, 0x2a9080,32, 0x2a9108,2, 0x2a9200,16, 0x2a9280,18, 0x2a92cc,2, 0x2a9300,21, 0x2a9384,1, 0x2a9390,10, 0x2a93c0,7, 0x2a93e4,1, 0x2a93ec,24, 0x2a9480,3, 0x2a94a0,23, 0x2a9500,17, 0x2a9548,9, 0x2a9570,1, 0x2a9600,1, 0x2a9800,25, 0x2a9880,32, 0x2a9908,2, 0x2a9a00,16, 0x2a9a80,18, 0x2a9acc,2, 0x2a9b00,21, 0x2a9b84,1, 0x2a9b90,10, 0x2a9bc0,7, 0x2a9be4,1, 0x2a9bec,24, 0x2a9c80,3, 0x2a9ca0,23, 0x2a9d00,17, 0x2a9d48,9, 0x2a9d70,1, 0x2a9e00,1, 0x2aa000,25, 0x2aa080,32, 0x2aa108,2, 0x2aa200,16, 0x2aa280,18, 0x2aa2cc,2, 0x2aa300,21, 0x2aa384,1, 0x2aa390,10, 0x2aa3c0,7, 0x2aa3e4,1, 0x2aa3ec,24, 0x2aa480,3, 0x2aa4a0,23, 0x2aa500,17, 0x2aa548,9, 0x2aa570,1, 0x2aa600,1, 0x2aa800,25, 0x2aa880,32, 0x2aa908,2, 0x2aaa00,16, 0x2aaa80,18, 0x2aaacc,2, 0x2aab00,21, 0x2aab84,1, 0x2aab90,10, 0x2aabc0,7, 0x2aabe4,1, 0x2aabec,24, 0x2aac80,3, 0x2aaca0,23, 0x2aad00,17, 0x2aad48,9, 0x2aad70,1, 0x2aae00,1, 0x2ab000,25, 0x2ab080,32, 0x2ab108,2, 0x2ab200,16, 0x2ab280,18, 0x2ab2cc,2, 0x2ab300,21, 0x2ab384,1, 0x2ab390,10, 0x2ab3c0,7, 0x2ab3e4,1, 0x2ab3ec,24, 0x2ab480,3, 0x2ab4a0,23, 0x2ab500,17, 0x2ab548,9, 0x2ab570,1, 0x2ab600,1, 0x2ab800,25, 0x2ab880,32, 0x2ab908,2, 0x2aba00,16, 0x2aba80,18, 0x2abacc,2, 0x2abb00,21, 0x2abb84,1, 0x2abb90,10, 0x2abbc0,7, 0x2abbe4,1, 0x2abbec,24, 0x2abc80,3, 0x2abca0,23, 0x2abd00,17, 0x2abd48,9, 0x2abd70,1, 0x2abe00,1, 0x2ac000,25, 0x2ac080,32, 0x2ac108,2, 0x2ac200,16, 0x2ac280,18, 0x2ac2cc,2, 0x2ac300,21, 0x2ac384,1, 0x2ac390,10, 0x2ac3c0,7, 0x2ac3e4,1, 0x2ac3ec,24, 0x2ac480,3, 0x2ac4a0,23, 0x2ac500,17, 0x2ac548,9, 0x2ac570,1, 0x2ac600,1, 0x2ac800,25, 0x2ac880,32, 0x2ac908,2, 0x2aca00,16, 0x2aca80,18, 0x2acacc,2, 0x2acb00,21, 0x2acb84,1, 0x2acb90,10, 0x2acbc0,7, 0x2acbe4,1, 0x2acbec,24, 0x2acc80,3, 0x2acca0,23, 0x2acd00,17, 0x2acd48,9, 0x2acd70,1, 0x2ace00,1, 0x2ad000,25, 0x2ad080,32, 0x2ad108,2, 0x2ad200,16, 0x2ad280,18, 0x2ad2cc,2, 0x2ad300,21, 0x2ad384,1, 0x2ad390,10, 0x2ad3c0,7, 0x2ad3e4,1, 0x2ad3ec,24, 0x2ad480,3, 0x2ad4a0,23, 0x2ad500,17, 0x2ad548,9, 0x2ad570,1, 0x2ad600,1, 0x2ad800,25, 0x2ad880,32, 0x2ad908,2, 0x2ada00,16, 0x2ada80,18, 0x2adacc,2, 0x2adb00,21, 0x2adb84,1, 0x2adb90,10, 0x2adbc0,7, 0x2adbe4,1, 0x2adbec,24, 0x2adc80,3, 0x2adca0,23, 0x2add00,17, 0x2add48,9, 0x2add70,1, 0x2ade00,1, 0x2ae000,25, 0x2ae080,32, 0x2ae108,2, 0x2ae200,16, 0x2ae280,18, 0x2ae2cc,2, 0x2ae300,21, 0x2ae384,1, 0x2ae390,10, 0x2ae3c0,7, 0x2ae3e4,1, 0x2ae3ec,24, 0x2ae480,3, 0x2ae4a0,23, 0x2ae500,17, 0x2ae548,9, 0x2ae570,1, 0x2ae600,1, 0x2ae800,25, 0x2ae880,32, 0x2ae908,2, 0x2aea00,16, 0x2aea80,18, 0x2aeacc,2, 0x2aeb00,21, 0x2aeb84,1, 0x2aeb90,10, 0x2aebc0,7, 0x2aebe4,1, 0x2aebec,24, 0x2aec80,3, 0x2aeca0,23, 0x2aed00,17, 0x2aed48,9, 0x2aed70,1, 0x2aee00,1, 0x2af000,25, 0x2af080,32, 0x2af108,2, 0x2af200,16, 0x2af280,18, 0x2af2cc,2, 0x2af300,21, 0x2af384,1, 0x2af390,10, 0x2af3c0,7, 0x2af3e4,1, 0x2af3ec,24, 0x2af480,3, 0x2af4a0,23, 0x2af500,17, 0x2af548,9, 0x2af570,1, 0x2af600,1, 0x2af800,25, 0x2af880,32, 0x2af908,2, 0x2afa00,16, 0x2afa80,18, 0x2afacc,2, 0x2afb00,21, 0x2afb84,1, 0x2afb90,10, 0x2afbc0,7, 0x2afbe4,1, 0x2afbec,24, 0x2afc80,3, 0x2afca0,23, 0x2afd00,17, 0x2afd48,9, 0x2afd70,1, 0x2afe00,1, 0x2b0000,25, 0x2b0080,32, 0x2b0108,2, 0x2b0200,16, 0x2b0280,18, 0x2b02cc,2, 0x2b0300,21, 0x2b0384,1, 0x2b0390,10, 0x2b03c0,7, 0x2b03e4,1, 0x2b03ec,24, 0x2b0480,3, 0x2b04a0,23, 0x2b0500,17, 0x2b0548,9, 0x2b0570,1, 0x2b0600,1, 0x2b0800,25, 0x2b0880,32, 0x2b0908,2, 0x2b0a00,16, 0x2b0a80,18, 0x2b0acc,2, 0x2b0b00,21, 0x2b0b84,1, 0x2b0b90,10, 0x2b0bc0,7, 0x2b0be4,1, 0x2b0bec,24, 0x2b0c80,3, 0x2b0ca0,23, 0x2b0d00,17, 0x2b0d48,9, 0x2b0d70,1, 0x2b0e00,1, 0x2b1000,25, 0x2b1080,32, 0x2b1108,2, 0x2b1200,16, 0x2b1280,18, 0x2b12cc,2, 0x2b1300,21, 0x2b1384,1, 0x2b1390,10, 0x2b13c0,7, 0x2b13e4,1, 0x2b13ec,24, 0x2b1480,3, 0x2b14a0,23, 0x2b1500,17, 0x2b1548,9, 0x2b1570,1, 0x2b1600,1, 0x2b1800,25, 0x2b1880,32, 0x2b1908,2, 0x2b1a00,16, 0x2b1a80,18, 0x2b1acc,2, 0x2b1b00,21, 0x2b1b84,1, 0x2b1b90,10, 0x2b1bc0,7, 0x2b1be4,1, 0x2b1bec,24, 0x2b1c80,3, 0x2b1ca0,23, 0x2b1d00,17, 0x2b1d48,9, 0x2b1d70,1, 0x2b1e00,1, 0x2b2000,25, 0x2b2080,32, 0x2b2108,2, 0x2b2200,16, 0x2b2280,18, 0x2b22cc,2, 0x2b2300,21, 0x2b2384,1, 0x2b2390,10, 0x2b23c0,7, 0x2b23e4,1, 0x2b23ec,24, 0x2b2480,3, 0x2b24a0,23, 0x2b2500,17, 0x2b2548,9, 0x2b2570,1, 0x2b2600,1, 0x2b2800,25, 0x2b2880,32, 0x2b2908,2, 0x2b2a00,16, 0x2b2a80,18, 0x2b2acc,2, 0x2b2b00,21, 0x2b2b84,1, 0x2b2b90,10, 0x2b2bc0,7, 0x2b2be4,1, 0x2b2bec,24, 0x2b2c80,3, 0x2b2ca0,23, 0x2b2d00,17, 0x2b2d48,9, 0x2b2d70,1, 0x2b2e00,1, 0x2b3000,25, 0x2b3080,32, 0x2b3108,2, 0x2b3200,16, 0x2b3280,18, 0x2b32cc,2, 0x2b3300,21, 0x2b3384,1, 0x2b3390,10, 0x2b33c0,7, 0x2b33e4,1, 0x2b33ec,24, 0x2b3480,3, 0x2b34a0,23, 0x2b3500,17, 0x2b3548,9, 0x2b3570,1, 0x2b3600,1, 0x2b3800,25, 0x2b3880,32, 0x2b3908,2, 0x2b3a00,16, 0x2b3a80,18, 0x2b3acc,2, 0x2b3b00,21, 0x2b3b84,1, 0x2b3b90,10, 0x2b3bc0,7, 0x2b3be4,1, 0x2b3bec,24, 0x2b3c80,3, 0x2b3ca0,23, 0x2b3d00,17, 0x2b3d48,9, 0x2b3d70,1, 0x2b3e00,1, 0x2b4000,25, 0x2b4080,32, 0x2b4108,2, 0x2b4200,16, 0x2b4280,18, 0x2b42cc,2, 0x2b4300,21, 0x2b4384,1, 0x2b4390,10, 0x2b43c0,7, 0x2b43e4,1, 0x2b43ec,24, 0x2b4480,3, 0x2b44a0,23, 0x2b4500,17, 0x2b4548,9, 0x2b4570,1, 0x2b4600,1, 0x2b4800,25, 0x2b4880,32, 0x2b4908,2, 0x2b4a00,16, 0x2b4a80,18, 0x2b4acc,2, 0x2b4b00,21, 0x2b4b84,1, 0x2b4b90,10, 0x2b4bc0,7, 0x2b4be4,1, 0x2b4bec,24, 0x2b4c80,3, 0x2b4ca0,23, 0x2b4d00,17, 0x2b4d48,9, 0x2b4d70,1, 0x2b4e00,1, 0x2b5000,25, 0x2b5080,32, 0x2b5108,2, 0x2b5200,16, 0x2b5280,18, 0x2b52cc,2, 0x2b5300,21, 0x2b5384,1, 0x2b5390,10, 0x2b53c0,7, 0x2b53e4,1, 0x2b53ec,24, 0x2b5480,3, 0x2b54a0,23, 0x2b5500,17, 0x2b5548,9, 0x2b5570,1, 0x2b5600,1, 0x2b5800,25, 0x2b5880,32, 0x2b5908,2, 0x2b5a00,16, 0x2b5a80,18, 0x2b5acc,2, 0x2b5b00,21, 0x2b5b84,1, 0x2b5b90,10, 0x2b5bc0,7, 0x2b5be4,1, 0x2b5bec,24, 0x2b5c80,3, 0x2b5ca0,23, 0x2b5d00,17, 0x2b5d48,9, 0x2b5d70,1, 0x2b5e00,1, 0x2b6000,13, 0x2b6040,9, 0x2b6068,2, 0x2b6080,27, 0x2b6100,3, 0x2b6110,3, 0x2b6120,5, 0x2b7000,19, 0x2b7c00,10, 0x2b7c80,3, 0x2c0004,1, 0x2c0040,20, 0x2c0094,2, 0x2c00a0,16, 0x2c0104,1, 0x2c010c,4, 0x2c0124,1, 0x2c012c,4, 0x2c0140,6, 0x2c0160,71, 0x2c02a0,46, 0x2c0364,5, 0x2c0384,5, 0x2c03a4,1, 0x2c03ac,3, 0x2c03c4,1, 0x2c03cc,3, 0x2c0404,1, 0x2c0420,8, 0x2c0448,7, 0x2c0468,1, 0x2c0470,13, 0x2c0500,19, 0x2c0580,4, 0x2c05a0,7, 0x2c05c0,7, 0x2c05e0,2, 0x2c0650,7, 0x2c0804,1, 0x2c0840,20, 0x2c0894,2, 0x2c08a0,16, 0x2c0904,1, 0x2c090c,4, 0x2c0924,1, 0x2c092c,4, 0x2c0940,6, 0x2c0960,71, 0x2c0aa0,46, 0x2c0b64,5, 0x2c0b84,5, 0x2c0ba4,1, 0x2c0bac,3, 0x2c0bc4,1, 0x2c0bcc,3, 0x2c0c04,1, 0x2c0c20,8, 0x2c0c48,7, 0x2c0c68,1, 0x2c0c70,13, 0x2c0d00,19, 0x2c0d80,4, 0x2c0da0,7, 0x2c0dc0,7, 0x2c0de0,2, 0x2c0e50,7, 0x2c1004,1, 0x2c1040,20, 0x2c1094,2, 0x2c10a0,16, 0x2c1104,1, 0x2c110c,4, 0x2c1124,1, 0x2c112c,4, 0x2c1140,6, 0x2c1160,71, 0x2c12a0,46, 0x2c1364,5, 0x2c1384,5, 0x2c13a4,1, 0x2c13ac,3, 0x2c13c4,1, 0x2c13cc,3, 0x2c1404,1, 0x2c1420,8, 0x2c1448,7, 0x2c1468,1, 0x2c1470,13, 0x2c1500,19, 0x2c1580,4, 0x2c15a0,7, 0x2c15c0,7, 0x2c15e0,2, 0x2c1650,7, 0x2c1804,1, 0x2c1840,20, 0x2c1894,2, 0x2c18a0,16, 0x2c1904,1, 0x2c190c,4, 0x2c1924,1, 0x2c192c,4, 0x2c1940,6, 0x2c1960,71, 0x2c1aa0,46, 0x2c1b64,5, 0x2c1b84,5, 0x2c1ba4,1, 0x2c1bac,3, 0x2c1bc4,1, 0x2c1bcc,3, 0x2c1c04,1, 0x2c1c20,8, 0x2c1c48,7, 0x2c1c68,1, 0x2c1c70,13, 0x2c1d00,19, 0x2c1d80,4, 0x2c1da0,7, 0x2c1dc0,7, 0x2c1de0,2, 0x2c1e50,7, 0x2c2004,1, 0x2c2040,20, 0x2c2094,2, 0x2c20a0,16, 0x2c2104,1, 0x2c210c,4, 0x2c2124,1, 0x2c212c,4, 0x2c2140,6, 0x2c2160,71, 0x2c22a0,46, 0x2c2364,5, 0x2c2384,5, 0x2c23a4,1, 0x2c23ac,3, 0x2c23c4,1, 0x2c23cc,3, 0x2c2404,1, 0x2c2420,8, 0x2c2448,7, 0x2c2468,1, 0x2c2470,13, 0x2c2500,19, 0x2c2580,4, 0x2c25a0,7, 0x2c25c0,7, 0x2c25e0,2, 0x2c2650,7, 0x2c2804,1, 0x2c2840,20, 0x2c2894,2, 0x2c28a0,16, 0x2c2904,1, 0x2c290c,4, 0x2c2924,1, 0x2c292c,4, 0x2c2940,6, 0x2c2960,71, 0x2c2aa0,46, 0x2c2b64,5, 0x2c2b84,5, 0x2c2ba4,1, 0x2c2bac,3, 0x2c2bc4,1, 0x2c2bcc,3, 0x2c2c04,1, 0x2c2c20,8, 0x2c2c48,7, 0x2c2c68,1, 0x2c2c70,13, 0x2c2d00,19, 0x2c2d80,4, 0x2c2da0,7, 0x2c2dc0,7, 0x2c2de0,2, 0x2c2e50,7, 0x2c3004,1, 0x2c3040,20, 0x2c3094,2, 0x2c30a0,16, 0x2c3104,1, 0x2c310c,4, 0x2c3124,1, 0x2c312c,4, 0x2c3140,6, 0x2c3160,71, 0x2c32a0,46, 0x2c3364,5, 0x2c3384,5, 0x2c33a4,1, 0x2c33ac,3, 0x2c33c4,1, 0x2c33cc,3, 0x2c3404,1, 0x2c3420,8, 0x2c3448,7, 0x2c3468,1, 0x2c3470,13, 0x2c3500,19, 0x2c3580,4, 0x2c35a0,7, 0x2c35c0,7, 0x2c35e0,2, 0x2c3650,7, 0x2c3804,1, 0x2c3840,20, 0x2c3894,2, 0x2c38a0,16, 0x2c3904,1, 0x2c390c,4, 0x2c3924,1, 0x2c392c,4, 0x2c3940,6, 0x2c3960,71, 0x2c3aa0,46, 0x2c3b64,5, 0x2c3b84,5, 0x2c3ba4,1, 0x2c3bac,3, 0x2c3bc4,1, 0x2c3bcc,3, 0x2c3c04,1, 0x2c3c20,8, 0x2c3c48,7, 0x2c3c68,1, 0x2c3c70,13, 0x2c3d00,19, 0x2c3d80,4, 0x2c3da0,7, 0x2c3dc0,7, 0x2c3de0,2, 0x2c3e50,7, 0x2c4004,1, 0x2c4040,20, 0x2c4094,2, 0x2c40a0,16, 0x2c4104,1, 0x2c410c,4, 0x2c4124,1, 0x2c412c,4, 0x2c4140,6, 0x2c4160,71, 0x2c42a0,46, 0x2c4364,5, 0x2c4384,5, 0x2c43a4,1, 0x2c43ac,3, 0x2c43c4,1, 0x2c43cc,3, 0x2c4404,1, 0x2c4420,8, 0x2c4448,7, 0x2c4468,1, 0x2c4470,13, 0x2c4500,19, 0x2c4580,4, 0x2c45a0,7, 0x2c45c0,7, 0x2c45e0,2, 0x2c4650,7, 0x2c4804,1, 0x2c4840,20, 0x2c4894,2, 0x2c48a0,16, 0x2c4904,1, 0x2c490c,4, 0x2c4924,1, 0x2c492c,4, 0x2c4940,6, 0x2c4960,71, 0x2c4aa0,46, 0x2c4b64,5, 0x2c4b84,5, 0x2c4ba4,1, 0x2c4bac,3, 0x2c4bc4,1, 0x2c4bcc,3, 0x2c4c04,1, 0x2c4c20,8, 0x2c4c48,7, 0x2c4c68,1, 0x2c4c70,13, 0x2c4d00,19, 0x2c4d80,4, 0x2c4da0,7, 0x2c4dc0,7, 0x2c4de0,2, 0x2c4e50,7, 0x2c5004,1, 0x2c5040,20, 0x2c5094,2, 0x2c50a0,16, 0x2c5104,1, 0x2c510c,4, 0x2c5124,1, 0x2c512c,4, 0x2c5140,6, 0x2c5160,71, 0x2c52a0,46, 0x2c5364,5, 0x2c5384,5, 0x2c53a4,1, 0x2c53ac,3, 0x2c53c4,1, 0x2c53cc,3, 0x2c5404,1, 0x2c5420,8, 0x2c5448,7, 0x2c5468,1, 0x2c5470,13, 0x2c5500,19, 0x2c5580,4, 0x2c55a0,7, 0x2c55c0,7, 0x2c55e0,2, 0x2c5650,7, 0x2c5804,1, 0x2c5840,20, 0x2c5894,2, 0x2c58a0,16, 0x2c5904,1, 0x2c590c,4, 0x2c5924,1, 0x2c592c,4, 0x2c5940,6, 0x2c5960,71, 0x2c5aa0,46, 0x2c5b64,5, 0x2c5b84,5, 0x2c5ba4,1, 0x2c5bac,3, 0x2c5bc4,1, 0x2c5bcc,3, 0x2c5c04,1, 0x2c5c20,8, 0x2c5c48,7, 0x2c5c68,1, 0x2c5c70,13, 0x2c5d00,19, 0x2c5d80,4, 0x2c5da0,7, 0x2c5dc0,7, 0x2c5de0,2, 0x2c5e50,7, 0x2c6004,1, 0x2c6040,20, 0x2c6094,2, 0x2c60a0,16, 0x2c6104,1, 0x2c610c,4, 0x2c6124,1, 0x2c612c,4, 0x2c6140,6, 0x2c6160,71, 0x2c62a0,46, 0x2c6364,5, 0x2c6384,5, 0x2c63a4,1, 0x2c63ac,3, 0x2c63c4,1, 0x2c63cc,3, 0x2c6404,1, 0x2c6420,8, 0x2c6448,7, 0x2c6468,1, 0x2c6470,13, 0x2c6500,19, 0x2c6580,4, 0x2c65a0,7, 0x2c65c0,7, 0x2c65e0,2, 0x2c6650,7, 0x2c6804,1, 0x2c6840,20, 0x2c6894,2, 0x2c68a0,16, 0x2c6904,1, 0x2c690c,4, 0x2c6924,1, 0x2c692c,4, 0x2c6940,6, 0x2c6960,71, 0x2c6aa0,46, 0x2c6b64,5, 0x2c6b84,5, 0x2c6ba4,1, 0x2c6bac,3, 0x2c6bc4,1, 0x2c6bcc,3, 0x2c6c04,1, 0x2c6c20,8, 0x2c6c48,7, 0x2c6c68,1, 0x2c6c70,13, 0x2c6d00,19, 0x2c6d80,4, 0x2c6da0,7, 0x2c6dc0,7, 0x2c6de0,2, 0x2c6e50,7, 0x2c7004,1, 0x2c7040,20, 0x2c7094,2, 0x2c70a0,16, 0x2c7104,1, 0x2c710c,4, 0x2c7124,1, 0x2c712c,4, 0x2c7140,6, 0x2c7160,71, 0x2c72a0,46, 0x2c7364,5, 0x2c7384,5, 0x2c73a4,1, 0x2c73ac,3, 0x2c73c4,1, 0x2c73cc,3, 0x2c7404,1, 0x2c7420,8, 0x2c7448,7, 0x2c7468,1, 0x2c7470,13, 0x2c7500,19, 0x2c7580,4, 0x2c75a0,7, 0x2c75c0,7, 0x2c75e0,2, 0x2c7650,7, 0x2c7804,1, 0x2c7840,20, 0x2c7894,2, 0x2c78a0,16, 0x2c7904,1, 0x2c790c,4, 0x2c7924,1, 0x2c792c,4, 0x2c7940,6, 0x2c7960,71, 0x2c7aa0,46, 0x2c7b64,5, 0x2c7b84,5, 0x2c7ba4,1, 0x2c7bac,3, 0x2c7bc4,1, 0x2c7bcc,3, 0x2c7c04,1, 0x2c7c20,8, 0x2c7c48,7, 0x2c7c68,1, 0x2c7c70,13, 0x2c7d00,19, 0x2c7d80,4, 0x2c7da0,7, 0x2c7dc0,7, 0x2c7de0,2, 0x2c7e50,7, 0x2c8004,1, 0x2c8040,20, 0x2c8094,2, 0x2c80a0,16, 0x2c8104,1, 0x2c810c,4, 0x2c8124,1, 0x2c812c,4, 0x2c8140,6, 0x2c8160,71, 0x2c82a0,46, 0x2c8364,5, 0x2c8384,5, 0x2c83a4,1, 0x2c83ac,3, 0x2c83c4,1, 0x2c83cc,3, 0x2c8404,1, 0x2c8420,8, 0x2c8448,7, 0x2c8468,1, 0x2c8470,13, 0x2c8500,19, 0x2c8580,4, 0x2c85a0,7, 0x2c85c0,7, 0x2c85e0,2, 0x2c8650,7, 0x2c8804,1, 0x2c8840,20, 0x2c8894,2, 0x2c88a0,16, 0x2c8904,1, 0x2c890c,4, 0x2c8924,1, 0x2c892c,4, 0x2c8940,6, 0x2c8960,71, 0x2c8aa0,46, 0x2c8b64,5, 0x2c8b84,5, 0x2c8ba4,1, 0x2c8bac,3, 0x2c8bc4,1, 0x2c8bcc,3, 0x2c8c04,1, 0x2c8c20,8, 0x2c8c48,7, 0x2c8c68,1, 0x2c8c70,13, 0x2c8d00,19, 0x2c8d80,4, 0x2c8da0,7, 0x2c8dc0,7, 0x2c8de0,2, 0x2c8e50,7, 0x2c9004,1, 0x2c9040,20, 0x2c9094,2, 0x2c90a0,16, 0x2c9104,1, 0x2c910c,4, 0x2c9124,1, 0x2c912c,4, 0x2c9140,6, 0x2c9160,71, 0x2c92a0,46, 0x2c9364,5, 0x2c9384,5, 0x2c93a4,1, 0x2c93ac,3, 0x2c93c4,1, 0x2c93cc,3, 0x2c9404,1, 0x2c9420,8, 0x2c9448,7, 0x2c9468,1, 0x2c9470,13, 0x2c9500,19, 0x2c9580,4, 0x2c95a0,7, 0x2c95c0,7, 0x2c95e0,2, 0x2c9650,7, 0x2c9804,1, 0x2c9840,20, 0x2c9894,2, 0x2c98a0,16, 0x2c9904,1, 0x2c990c,4, 0x2c9924,1, 0x2c992c,4, 0x2c9940,6, 0x2c9960,71, 0x2c9aa0,46, 0x2c9b64,5, 0x2c9b84,5, 0x2c9ba4,1, 0x2c9bac,3, 0x2c9bc4,1, 0x2c9bcc,3, 0x2c9c04,1, 0x2c9c20,8, 0x2c9c48,7, 0x2c9c68,1, 0x2c9c70,13, 0x2c9d00,19, 0x2c9d80,4, 0x2c9da0,7, 0x2c9dc0,7, 0x2c9de0,2, 0x2c9e50,7, 0x2ca004,1, 0x2ca040,20, 0x2ca094,2, 0x2ca0a0,16, 0x2ca104,1, 0x2ca10c,4, 0x2ca124,1, 0x2ca12c,4, 0x2ca140,6, 0x2ca160,71, 0x2ca2a0,46, 0x2ca364,5, 0x2ca384,5, 0x2ca3a4,1, 0x2ca3ac,3, 0x2ca3c4,1, 0x2ca3cc,3, 0x2ca404,1, 0x2ca420,8, 0x2ca448,7, 0x2ca468,1, 0x2ca470,13, 0x2ca500,19, 0x2ca580,4, 0x2ca5a0,7, 0x2ca5c0,7, 0x2ca5e0,2, 0x2ca650,7, 0x2ca800,3, 0x2ca810,32, 0x2ca8a0,5, 0x2ca8b8,64, 0x2caa00,137, 0x2cac38,46, 0x2cad04,5, 0x2cad24,5, 0x2cad44,1, 0x2cad4c,3, 0x2cad64,1, 0x2cad6c,3, 0x2cad84,1, 0x2cad8c,22, 0x2cade8,1, 0x2cadf0,2, 0x2cae00,19, 0x2cae80,4, 0x2caea0,7, 0x2caf20,7, 0x2caf40,2, 0x2caf50,9, 0x2cb800,19, 0x2cb880,5, 0x2cb900,25, 0x2cb980,1, 0x2cc000,83, 0x2ccc00,10, 0x2ccc80,3, 0x2cfffc,1, 0x2d0004,1, 0x2d0040,20, 0x2d0094,2, 0x2d00a0,16, 0x2d0104,1, 0x2d010c,4, 0x2d0124,1, 0x2d012c,4, 0x2d0140,6, 0x2d0160,71, 0x2d02a0,46, 0x2d0364,5, 0x2d0384,5, 0x2d03a4,1, 0x2d03ac,3, 0x2d03c4,1, 0x2d03cc,3, 0x2d0404,1, 0x2d0420,8, 0x2d0448,7, 0x2d0468,1, 0x2d0470,13, 0x2d0500,19, 0x2d0580,4, 0x2d05a0,7, 0x2d05c0,7, 0x2d05e0,2, 0x2d0650,7, 0x2d0804,1, 0x2d0840,20, 0x2d0894,2, 0x2d08a0,16, 0x2d0904,1, 0x2d090c,4, 0x2d0924,1, 0x2d092c,4, 0x2d0940,6, 0x2d0960,71, 0x2d0aa0,46, 0x2d0b64,5, 0x2d0b84,5, 0x2d0ba4,1, 0x2d0bac,3, 0x2d0bc4,1, 0x2d0bcc,3, 0x2d0c04,1, 0x2d0c20,8, 0x2d0c48,7, 0x2d0c68,1, 0x2d0c70,13, 0x2d0d00,19, 0x2d0d80,4, 0x2d0da0,7, 0x2d0dc0,7, 0x2d0de0,2, 0x2d0e50,7, 0x2d1004,1, 0x2d1040,20, 0x2d1094,2, 0x2d10a0,16, 0x2d1104,1, 0x2d110c,4, 0x2d1124,1, 0x2d112c,4, 0x2d1140,6, 0x2d1160,71, 0x2d12a0,46, 0x2d1364,5, 0x2d1384,5, 0x2d13a4,1, 0x2d13ac,3, 0x2d13c4,1, 0x2d13cc,3, 0x2d1404,1, 0x2d1420,8, 0x2d1448,7, 0x2d1468,1, 0x2d1470,13, 0x2d1500,19, 0x2d1580,4, 0x2d15a0,7, 0x2d15c0,7, 0x2d15e0,2, 0x2d1650,7, 0x2d1804,1, 0x2d1840,20, 0x2d1894,2, 0x2d18a0,16, 0x2d1904,1, 0x2d190c,4, 0x2d1924,1, 0x2d192c,4, 0x2d1940,6, 0x2d1960,71, 0x2d1aa0,46, 0x2d1b64,5, 0x2d1b84,5, 0x2d1ba4,1, 0x2d1bac,3, 0x2d1bc4,1, 0x2d1bcc,3, 0x2d1c04,1, 0x2d1c20,8, 0x2d1c48,7, 0x2d1c68,1, 0x2d1c70,13, 0x2d1d00,19, 0x2d1d80,4, 0x2d1da0,7, 0x2d1dc0,7, 0x2d1de0,2, 0x2d1e50,7, 0x2d2004,1, 0x2d2040,20, 0x2d2094,2, 0x2d20a0,16, 0x2d2104,1, 0x2d210c,4, 0x2d2124,1, 0x2d212c,4, 0x2d2140,6, 0x2d2160,71, 0x2d22a0,46, 0x2d2364,5, 0x2d2384,5, 0x2d23a4,1, 0x2d23ac,3, 0x2d23c4,1, 0x2d23cc,3, 0x2d2404,1, 0x2d2420,8, 0x2d2448,7, 0x2d2468,1, 0x2d2470,13, 0x2d2500,19, 0x2d2580,4, 0x2d25a0,7, 0x2d25c0,7, 0x2d25e0,2, 0x2d2650,7, 0x2d2804,1, 0x2d2840,20, 0x2d2894,2, 0x2d28a0,16, 0x2d2904,1, 0x2d290c,4, 0x2d2924,1, 0x2d292c,4, 0x2d2940,6, 0x2d2960,71, 0x2d2aa0,46, 0x2d2b64,5, 0x2d2b84,5, 0x2d2ba4,1, 0x2d2bac,3, 0x2d2bc4,1, 0x2d2bcc,3, 0x2d2c04,1, 0x2d2c20,8, 0x2d2c48,7, 0x2d2c68,1, 0x2d2c70,13, 0x2d2d00,19, 0x2d2d80,4, 0x2d2da0,7, 0x2d2dc0,7, 0x2d2de0,2, 0x2d2e50,7, 0x2d3004,1, 0x2d3040,20, 0x2d3094,2, 0x2d30a0,16, 0x2d3104,1, 0x2d310c,4, 0x2d3124,1, 0x2d312c,4, 0x2d3140,6, 0x2d3160,71, 0x2d32a0,46, 0x2d3364,5, 0x2d3384,5, 0x2d33a4,1, 0x2d33ac,3, 0x2d33c4,1, 0x2d33cc,3, 0x2d3404,1, 0x2d3420,8, 0x2d3448,7, 0x2d3468,1, 0x2d3470,13, 0x2d3500,19, 0x2d3580,4, 0x2d35a0,7, 0x2d35c0,7, 0x2d35e0,2, 0x2d3650,7, 0x2d3804,1, 0x2d3840,20, 0x2d3894,2, 0x2d38a0,16, 0x2d3904,1, 0x2d390c,4, 0x2d3924,1, 0x2d392c,4, 0x2d3940,6, 0x2d3960,71, 0x2d3aa0,46, 0x2d3b64,5, 0x2d3b84,5, 0x2d3ba4,1, 0x2d3bac,3, 0x2d3bc4,1, 0x2d3bcc,3, 0x2d3c04,1, 0x2d3c20,8, 0x2d3c48,7, 0x2d3c68,1, 0x2d3c70,13, 0x2d3d00,19, 0x2d3d80,4, 0x2d3da0,7, 0x2d3dc0,7, 0x2d3de0,2, 0x2d3e50,7, 0x2d4004,1, 0x2d4040,20, 0x2d4094,2, 0x2d40a0,16, 0x2d4104,1, 0x2d410c,4, 0x2d4124,1, 0x2d412c,4, 0x2d4140,6, 0x2d4160,71, 0x2d42a0,46, 0x2d4364,5, 0x2d4384,5, 0x2d43a4,1, 0x2d43ac,3, 0x2d43c4,1, 0x2d43cc,3, 0x2d4404,1, 0x2d4420,8, 0x2d4448,7, 0x2d4468,1, 0x2d4470,13, 0x2d4500,19, 0x2d4580,4, 0x2d45a0,7, 0x2d45c0,7, 0x2d45e0,2, 0x2d4650,7, 0x2d4804,1, 0x2d4840,20, 0x2d4894,2, 0x2d48a0,16, 0x2d4904,1, 0x2d490c,4, 0x2d4924,1, 0x2d492c,4, 0x2d4940,6, 0x2d4960,71, 0x2d4aa0,46, 0x2d4b64,5, 0x2d4b84,5, 0x2d4ba4,1, 0x2d4bac,3, 0x2d4bc4,1, 0x2d4bcc,3, 0x2d4c04,1, 0x2d4c20,8, 0x2d4c48,7, 0x2d4c68,1, 0x2d4c70,13, 0x2d4d00,19, 0x2d4d80,4, 0x2d4da0,7, 0x2d4dc0,7, 0x2d4de0,2, 0x2d4e50,7, 0x2d5004,1, 0x2d5040,20, 0x2d5094,2, 0x2d50a0,16, 0x2d5104,1, 0x2d510c,4, 0x2d5124,1, 0x2d512c,4, 0x2d5140,6, 0x2d5160,71, 0x2d52a0,46, 0x2d5364,5, 0x2d5384,5, 0x2d53a4,1, 0x2d53ac,3, 0x2d53c4,1, 0x2d53cc,3, 0x2d5404,1, 0x2d5420,8, 0x2d5448,7, 0x2d5468,1, 0x2d5470,13, 0x2d5500,19, 0x2d5580,4, 0x2d55a0,7, 0x2d55c0,7, 0x2d55e0,2, 0x2d5650,7, 0x2d5804,1, 0x2d5840,20, 0x2d5894,2, 0x2d58a0,16, 0x2d5904,1, 0x2d590c,4, 0x2d5924,1, 0x2d592c,4, 0x2d5940,6, 0x2d5960,71, 0x2d5aa0,46, 0x2d5b64,5, 0x2d5b84,5, 0x2d5ba4,1, 0x2d5bac,3, 0x2d5bc4,1, 0x2d5bcc,3, 0x2d5c04,1, 0x2d5c20,8, 0x2d5c48,7, 0x2d5c68,1, 0x2d5c70,13, 0x2d5d00,19, 0x2d5d80,4, 0x2d5da0,7, 0x2d5dc0,7, 0x2d5de0,2, 0x2d5e50,7, 0x2d6004,1, 0x2d6040,20, 0x2d6094,2, 0x2d60a0,16, 0x2d6104,1, 0x2d610c,4, 0x2d6124,1, 0x2d612c,4, 0x2d6140,6, 0x2d6160,71, 0x2d62a0,46, 0x2d6364,5, 0x2d6384,5, 0x2d63a4,1, 0x2d63ac,3, 0x2d63c4,1, 0x2d63cc,3, 0x2d6404,1, 0x2d6420,8, 0x2d6448,7, 0x2d6468,1, 0x2d6470,13, 0x2d6500,19, 0x2d6580,4, 0x2d65a0,7, 0x2d65c0,7, 0x2d65e0,2, 0x2d6650,7, 0x2d6804,1, 0x2d6840,20, 0x2d6894,2, 0x2d68a0,16, 0x2d6904,1, 0x2d690c,4, 0x2d6924,1, 0x2d692c,4, 0x2d6940,6, 0x2d6960,71, 0x2d6aa0,46, 0x2d6b64,5, 0x2d6b84,5, 0x2d6ba4,1, 0x2d6bac,3, 0x2d6bc4,1, 0x2d6bcc,3, 0x2d6c04,1, 0x2d6c20,8, 0x2d6c48,7, 0x2d6c68,1, 0x2d6c70,13, 0x2d6d00,19, 0x2d6d80,4, 0x2d6da0,7, 0x2d6dc0,7, 0x2d6de0,2, 0x2d6e50,7, 0x2d7004,1, 0x2d7040,20, 0x2d7094,2, 0x2d70a0,16, 0x2d7104,1, 0x2d710c,4, 0x2d7124,1, 0x2d712c,4, 0x2d7140,6, 0x2d7160,71, 0x2d72a0,46, 0x2d7364,5, 0x2d7384,5, 0x2d73a4,1, 0x2d73ac,3, 0x2d73c4,1, 0x2d73cc,3, 0x2d7404,1, 0x2d7420,8, 0x2d7448,7, 0x2d7468,1, 0x2d7470,13, 0x2d7500,19, 0x2d7580,4, 0x2d75a0,7, 0x2d75c0,7, 0x2d75e0,2, 0x2d7650,7, 0x2d7804,1, 0x2d7840,20, 0x2d7894,2, 0x2d78a0,16, 0x2d7904,1, 0x2d790c,4, 0x2d7924,1, 0x2d792c,4, 0x2d7940,6, 0x2d7960,71, 0x2d7aa0,46, 0x2d7b64,5, 0x2d7b84,5, 0x2d7ba4,1, 0x2d7bac,3, 0x2d7bc4,1, 0x2d7bcc,3, 0x2d7c04,1, 0x2d7c20,8, 0x2d7c48,7, 0x2d7c68,1, 0x2d7c70,13, 0x2d7d00,19, 0x2d7d80,4, 0x2d7da0,7, 0x2d7dc0,7, 0x2d7de0,2, 0x2d7e50,7, 0x2d8004,1, 0x2d8040,20, 0x2d8094,2, 0x2d80a0,16, 0x2d8104,1, 0x2d810c,4, 0x2d8124,1, 0x2d812c,4, 0x2d8140,6, 0x2d8160,71, 0x2d82a0,46, 0x2d8364,5, 0x2d8384,5, 0x2d83a4,1, 0x2d83ac,3, 0x2d83c4,1, 0x2d83cc,3, 0x2d8404,1, 0x2d8420,8, 0x2d8448,7, 0x2d8468,1, 0x2d8470,13, 0x2d8500,19, 0x2d8580,4, 0x2d85a0,7, 0x2d85c0,7, 0x2d85e0,2, 0x2d8650,7, 0x2d8804,1, 0x2d8840,20, 0x2d8894,2, 0x2d88a0,16, 0x2d8904,1, 0x2d890c,4, 0x2d8924,1, 0x2d892c,4, 0x2d8940,6, 0x2d8960,71, 0x2d8aa0,46, 0x2d8b64,5, 0x2d8b84,5, 0x2d8ba4,1, 0x2d8bac,3, 0x2d8bc4,1, 0x2d8bcc,3, 0x2d8c04,1, 0x2d8c20,8, 0x2d8c48,7, 0x2d8c68,1, 0x2d8c70,13, 0x2d8d00,19, 0x2d8d80,4, 0x2d8da0,7, 0x2d8dc0,7, 0x2d8de0,2, 0x2d8e50,7, 0x2d9004,1, 0x2d9040,20, 0x2d9094,2, 0x2d90a0,16, 0x2d9104,1, 0x2d910c,4, 0x2d9124,1, 0x2d912c,4, 0x2d9140,6, 0x2d9160,71, 0x2d92a0,46, 0x2d9364,5, 0x2d9384,5, 0x2d93a4,1, 0x2d93ac,3, 0x2d93c4,1, 0x2d93cc,3, 0x2d9404,1, 0x2d9420,8, 0x2d9448,7, 0x2d9468,1, 0x2d9470,13, 0x2d9500,19, 0x2d9580,4, 0x2d95a0,7, 0x2d95c0,7, 0x2d95e0,2, 0x2d9650,7, 0x2d9804,1, 0x2d9840,20, 0x2d9894,2, 0x2d98a0,16, 0x2d9904,1, 0x2d990c,4, 0x2d9924,1, 0x2d992c,4, 0x2d9940,6, 0x2d9960,71, 0x2d9aa0,46, 0x2d9b64,5, 0x2d9b84,5, 0x2d9ba4,1, 0x2d9bac,3, 0x2d9bc4,1, 0x2d9bcc,3, 0x2d9c04,1, 0x2d9c20,8, 0x2d9c48,7, 0x2d9c68,1, 0x2d9c70,13, 0x2d9d00,19, 0x2d9d80,4, 0x2d9da0,7, 0x2d9dc0,7, 0x2d9de0,2, 0x2d9e50,7, 0x2da004,1, 0x2da040,20, 0x2da094,2, 0x2da0a0,16, 0x2da104,1, 0x2da10c,4, 0x2da124,1, 0x2da12c,4, 0x2da140,6, 0x2da160,71, 0x2da2a0,46, 0x2da364,5, 0x2da384,5, 0x2da3a4,1, 0x2da3ac,3, 0x2da3c4,1, 0x2da3cc,3, 0x2da404,1, 0x2da420,8, 0x2da448,7, 0x2da468,1, 0x2da470,13, 0x2da500,19, 0x2da580,4, 0x2da5a0,7, 0x2da5c0,7, 0x2da5e0,2, 0x2da650,7, 0x2da800,3, 0x2da810,32, 0x2da8a0,5, 0x2da8b8,64, 0x2daa00,137, 0x2dac38,46, 0x2dad04,5, 0x2dad24,5, 0x2dad44,1, 0x2dad4c,3, 0x2dad64,1, 0x2dad6c,3, 0x2dad84,1, 0x2dad8c,22, 0x2dade8,1, 0x2dadf0,2, 0x2dae00,19, 0x2dae80,4, 0x2daea0,7, 0x2daf20,7, 0x2daf40,2, 0x2daf50,9, 0x2db800,19, 0x2db880,5, 0x2db900,25, 0x2db980,1, 0x2dc000,83, 0x2dcc00,10, 0x2dcc80,3, 0x2dfffc,8, 0x2e0020,6, 0x2e0040,43, 0x2e0100,7, 0x2e0120,6, 0x2e0140,43, 0x2e0200,7, 0x2e0220,6, 0x2e0240,43, 0x2e0300,7, 0x2e0320,6, 0x2e0340,43, 0x2e0400,7, 0x2e0420,6, 0x2e0440,43, 0x2e0500,7, 0x2e0520,6, 0x2e0540,43, 0x2e0600,7, 0x2e0620,6, 0x2e0640,43, 0x2e0700,7, 0x2e0720,6, 0x2e0740,43, 0x2e0800,7, 0x2e0820,6, 0x2e0840,43, 0x2e0900,7, 0x2e0920,6, 0x2e0940,43, 0x2e0a00,7, 0x2e0a20,6, 0x2e0a40,43, 0x2e0b00,7, 0x2e0b20,6, 0x2e0b40,43, 0x2e0c00,7, 0x2e0c20,6, 0x2e0c40,43, 0x2e0d00,7, 0x2e0d20,6, 0x2e0d40,43, 0x2e0e00,7, 0x2e0e20,6, 0x2e0e40,43, 0x2e0f00,7, 0x2e0f20,6, 0x2e0f40,43, 0x2e1000,7, 0x2e1020,6, 0x2e1040,43, 0x2e1100,7, 0x2e1120,6, 0x2e1140,43, 0x2e1200,7, 0x2e1220,6, 0x2e1240,43, 0x2e1300,7, 0x2e1320,6, 0x2e1340,43, 0x2e1400,7, 0x2e1420,6, 0x2e1440,43, 0x2e1500,7, 0x2e1520,6, 0x2e1540,43, 0x2e1600,7, 0x2e1620,6, 0x2e1640,43, 0x2e1700,7, 0x2e1720,6, 0x2e1740,43, 0x2e1800,7, 0x2e1820,6, 0x2e1840,43, 0x2e1900,7, 0x2e1920,6, 0x2e1940,43, 0x2e1a00,7, 0x2e1a20,6, 0x2e1a40,43, 0x2e1b00,7, 0x2e1b20,6, 0x2e1b40,43, 0x2e1c00,7, 0x2e1c20,6, 0x2e1c40,43, 0x2e1d00,7, 0x2e1d20,6, 0x2e1d40,43, 0x2e1e00,7, 0x2e1e20,6, 0x2e1e40,43, 0x2e1f00,7, 0x2e1f20,6, 0x2e1f40,43, 0x2e2000,7, 0x2e2020,6, 0x2e2040,43, 0x2e2100,7, 0x2e2120,6, 0x2e2140,43, 0x2e2200,7, 0x2e2220,6, 0x2e2240,43, 0x2e2300,7, 0x2e2320,6, 0x2e2340,43, 0x2e2400,7, 0x2e2420,6, 0x2e2440,43, 0x2e2500,7, 0x2e2520,6, 0x2e2540,43, 0x2e2600,7, 0x2e2620,6, 0x2e2640,43, 0x2e2700,7, 0x2e2720,6, 0x2e2740,43, 0x2e2800,7, 0x2e2820,6, 0x2e2840,43, 0x2e2900,7, 0x2e2920,6, 0x2e2940,43, 0x2e2a00,9, 0x2e2a40,20, 0x2e2a94,2, 0x2e2aa0,1, 0x2e2b00,9, 0x2e2b40,20, 0x2e2b94,2, 0x2e2ba0,1, 0x2e2c00,9, 0x2e2c40,20, 0x2e2c94,2, 0x2e2ca0,1, 0x2e2d00,9, 0x2e2d40,20, 0x2e2d94,2, 0x2e2da0,1, 0x2e3000,9, 0x2e3040,20, 0x2e3094,2, 0x2e30a0,1, 0x2e3100,9, 0x2e3140,20, 0x2e3194,2, 0x2e31a0,1, 0x2e3200,9, 0x2e3240,20, 0x2e3294,2, 0x2e32a0,1, 0x2e3300,9, 0x2e3340,20, 0x2e3394,2, 0x2e33a0,1, 0x2e3400,9, 0x2e3440,20, 0x2e3494,2, 0x2e34a0,1, 0x2e3500,9, 0x2e3540,20, 0x2e3594,2, 0x2e35a0,1, 0x2e3600,9, 0x2e3640,20, 0x2e3694,2, 0x2e36a0,1, 0x2e3700,9, 0x2e3740,20, 0x2e3794,2, 0x2e37a0,1, 0x2e3800,9, 0x2e3840,20, 0x2e3894,2, 0x2e38a0,1, 0x2e3900,9, 0x2e3940,20, 0x2e3994,2, 0x2e39a0,1, 0x2e3a00,9, 0x2e3a40,20, 0x2e3a94,2, 0x2e3aa0,1, 0x2e3b00,9, 0x2e3b40,20, 0x2e3b94,2, 0x2e3ba0,1, 0x2e3c00,9, 0x2e3c40,20, 0x2e3c94,2, 0x2e3ca0,1, 0x2e3d00,9, 0x2e3d40,20, 0x2e3d94,2, 0x2e3da0,1, 0x2e3e00,9, 0x2e3e40,20, 0x2e3e94,2, 0x2e3ea0,1, 0x2e3f00,9, 0x2e3f40,20, 0x2e3f94,2, 0x2e3fa0,1, 0x2e4000,9, 0x2e4040,20, 0x2e4094,2, 0x2e40a0,1, 0x2e4100,9, 0x2e4140,20, 0x2e4194,2, 0x2e41a0,1, 0x2e4200,9, 0x2e4240,20, 0x2e4294,2, 0x2e42a0,1, 0x2e4300,9, 0x2e4340,20, 0x2e4394,2, 0x2e43a0,1, 0x2e4400,9, 0x2e4440,20, 0x2e4494,2, 0x2e44a0,1, 0x2e4500,9, 0x2e4540,20, 0x2e4594,2, 0x2e45a0,1, 0x2e4600,9, 0x2e4640,20, 0x2e4694,2, 0x2e46a0,1, 0x2e4700,9, 0x2e4740,20, 0x2e4794,2, 0x2e47a0,1, 0x2e4800,9, 0x2e4840,20, 0x2e4894,2, 0x2e48a0,1, 0x2e4900,9, 0x2e4940,20, 0x2e4994,2, 0x2e49a0,1, 0x2e4a00,9, 0x2e4a40,20, 0x2e4a94,2, 0x2e4aa0,1, 0x2e4b00,9, 0x2e4b40,20, 0x2e4b94,2, 0x2e4ba0,1, 0x2e4c00,9, 0x2e4c40,20, 0x2e4c94,2, 0x2e4ca0,1, 0x2e4d00,9, 0x2e4d40,20, 0x2e4d94,2, 0x2e4da0,1, 0x2e4e00,9, 0x2e4e40,20, 0x2e4e94,2, 0x2e4ea0,1, 0x2e4f00,9, 0x2e4f40,20, 0x2e4f94,2, 0x2e4fa0,1, 0x2e5000,9, 0x2e5040,20, 0x2e5094,2, 0x2e50a0,1, 0x2e5100,9, 0x2e5140,20, 0x2e5194,2, 0x2e51a0,1, 0x2e5200,9, 0x2e5240,20, 0x2e5294,2, 0x2e52a0,1, 0x2e5300,9, 0x2e5340,20, 0x2e5394,2, 0x2e53a0,1, 0x2e5400,9, 0x2e5440,20, 0x2e5494,2, 0x2e54a0,1, 0x2e5500,9, 0x2e5540,20, 0x2e5594,2, 0x2e55a0,1, 0x2e5600,9, 0x2e5640,20, 0x2e5694,2, 0x2e56a0,1, 0x2e5700,9, 0x2e5740,20, 0x2e5794,2, 0x2e57a0,1, 0x2e5800,27, 0x2e5880,13, 0x2e58c0,3, 0x2e58d0,3, 0x2e58e0,2, 0x2e5900,14, 0x2e59f8,4, 0x2e5b00,24, 0x2e5b84,2, 0x2e6000,183, 0x2e6400,198, 0x2e6720,3, 0x2e6800,1, 0x2e6808,1, 0x2e6810,1, 0x2e6818,1, 0x2e6820,1, 0x2e6828,1, 0x2e6830,1, 0x2e6838,1, 0x2e6840,1, 0x2e6848,1, 0x2e6850,1, 0x2e6858,1, 0x2e6860,1, 0x2e6868,1, 0x2e6870,1, 0x2e6878,1, 0x2e6880,1, 0x2e6888,1, 0x2e6890,1, 0x2e6898,1, 0x2e68a0,1, 0x2e68a8,1, 0x2e68b0,1, 0x2e68b8,1, 0x2e68c0,1, 0x2e68c8,1, 0x2e68d0,1, 0x2e68d8,1, 0x2e68e0,1, 0x2e68e8,1, 0x2e68f0,1, 0x2e68f8,1, 0x2e6900,1, 0x2e6908,1, 0x2e6910,1, 0x2e6918,1, 0x2e6920,1, 0x2e6928,1, 0x2e6930,1, 0x2e6938,1, 0x2e6940,1, 0x2e6948,1, 0x2e6a00,1, 0x2e6a08,1, 0x2e6a10,1, 0x2e6a18,2, 0x2e6b00,2, 0x2e7000,10, 0x2e7080,3, 0x2e70e0,1, 0x2e8800,4, 0x2e8820,7, 0x2e8840,4, 0x2e8860,7, 0x2e8880,5, 0x2e8900,4, 0x2e8920,7, 0x2e8940,4, 0x2e8960,7, 0x2e8980,5, 0x2e8a00,4, 0x2e8a20,7, 0x2e8a40,4, 0x2e8a60,7, 0x2e8a80,5, 0x2e8b00,4, 0x2e8b20,7, 0x2e8b40,4, 0x2e8b60,7, 0x2e8b80,5, 0x2e8c00,4, 0x2e8c20,7, 0x2e8c40,4, 0x2e8c60,7, 0x2e8c80,5, 0x2e8d00,4, 0x2e8d20,7, 0x2e8d40,4, 0x2e8d60,7, 0x2e8d80,5, 0x2e8e00,4, 0x2e8e20,7, 0x2e8e40,4, 0x2e8e60,7, 0x2e8e80,5, 0x2e8f00,4, 0x2e8f20,7, 0x2e8f40,4, 0x2e8f60,7, 0x2e8f80,5, 0x2e9000,4, 0x2e9020,7, 0x2e9040,4, 0x2e9060,7, 0x2e9080,5, 0x2e9100,4, 0x2e9120,7, 0x2e9140,4, 0x2e9160,7, 0x2e9180,5, 0x2e9200,4, 0x2e9220,7, 0x2e9240,4, 0x2e9260,7, 0x2e9280,5, 0x2e9300,4, 0x2e9320,7, 0x2e9340,4, 0x2e9360,7, 0x2e9380,5, 0x2e9400,4, 0x2e9420,7, 0x2e9440,4, 0x2e9460,7, 0x2e9480,5, 0x2e9500,4, 0x2e9520,7, 0x2e9540,4, 0x2e9560,7, 0x2e9580,5, 0x2e9600,4, 0x2e9620,7, 0x2e9640,4, 0x2e9660,7, 0x2e9680,5, 0x2e9700,4, 0x2e9720,7, 0x2e9740,4, 0x2e9760,7, 0x2e9780,5, 0x2e9800,4, 0x2e9820,7, 0x2e9840,4, 0x2e9860,7, 0x2e9880,5, 0x2e9900,4, 0x2e9920,7, 0x2e9940,4, 0x2e9960,7, 0x2e9980,5, 0x2e9a00,4, 0x2e9a20,7, 0x2e9a40,4, 0x2e9a60,7, 0x2e9a80,5, 0x2e9b00,4, 0x2e9b20,7, 0x2e9b40,4, 0x2e9b60,7, 0x2e9b80,5, 0x2e9c00,4, 0x2e9c20,7, 0x2e9c40,4, 0x2e9c60,7, 0x2e9c80,5, 0x2e9d00,4, 0x2e9d20,7, 0x2e9d40,4, 0x2e9d60,7, 0x2e9d80,5, 0x2e9e00,23, 0x2e9e60,1, 0x2e9e68,1, 0x2e9e70,27, 0x2e9ee0,1, 0x2e9ee8,1, 0x2e9ef0,27, 0x2e9f60,1, 0x2e9f68,1, 0x2e9f70,27, 0x2e9fe0,1, 0x2e9fe8,1, 0x2e9ff0,27, 0x2ea060,1, 0x2ea068,1, 0x2ea070,27, 0x2ea0e0,1, 0x2ea0e8,1, 0x2ea0f0,27, 0x2ea160,1, 0x2ea168,1, 0x2ea170,27, 0x2ea1e0,1, 0x2ea1e8,1, 0x2ea1f0,27, 0x2ea260,1, 0x2ea268,1, 0x2ea270,27, 0x2ea2e0,1, 0x2ea2e8,1, 0x2ea2f0,27, 0x2ea360,1, 0x2ea368,1, 0x2ea370,27, 0x2ea3e0,1, 0x2ea3e8,1, 0x2ea3f0,27, 0x2ea460,1, 0x2ea468,1, 0x2ea470,27, 0x2ea4e0,1, 0x2ea4e8,1, 0x2ea4f0,27, 0x2ea560,1, 0x2ea568,1, 0x2ea570,27, 0x2ea5e0,1, 0x2ea5e8,1, 0x2ea5f0,27, 0x2ea660,1, 0x2ea668,1, 0x2ea670,27, 0x2ea6e0,1, 0x2ea6e8,1, 0x2ea6f0,27, 0x2ea760,1, 0x2ea768,1, 0x2ea770,27, 0x2ea7e0,1, 0x2ea7e8,1, 0x2ea7f0,27, 0x2ea860,1, 0x2ea868,1, 0x2ea870,27, 0x2ea8e0,1, 0x2ea8e8,1, 0x2ea8f0,27, 0x2ea960,1, 0x2ea968,1, 0x2ea970,27, 0x2ea9e0,1, 0x2ea9e8,1, 0x2ea9f0,27, 0x2eaa60,1, 0x2eaa68,1, 0x2eaa70,27, 0x2eaae0,1, 0x2eaae8,1, 0x2eaaf0,27, 0x2eab60,1, 0x2eab68,1, 0x2eab70,27, 0x2eabe0,1, 0x2eabe8,1, 0x2eabf0,27, 0x2eac60,1, 0x2eac68,1, 0x2eac70,27, 0x2eace0,1, 0x2eace8,1, 0x2eacf0,27, 0x2ead60,1, 0x2ead68,1, 0x2ead70,27, 0x2eade0,1, 0x2eade8,1, 0x2eadf0,27, 0x2eae60,1, 0x2eae68,1, 0x2eae70,27, 0x2eaee0,1, 0x2eaee8,1, 0x2eaef0,27, 0x2eaf60,1, 0x2eaf68,1, 0x2eaf70,27, 0x2eafe0,1, 0x2eafe8,1, 0x2eaff0,27, 0x2eb060,1, 0x2eb068,1, 0x2eb070,27, 0x2eb0e0,1, 0x2eb0e8,1, 0x2eb0f0,27, 0x2eb160,1, 0x2eb168,1, 0x2eb170,27, 0x2eb1e0,1, 0x2eb1e8,1, 0x2eb1f0,27, 0x2eb260,1, 0x2eb268,1, 0x2eb270,27, 0x2eb2e0,1, 0x2eb2e8,1, 0x2eb2f0,27, 0x2eb360,1, 0x2eb368,1, 0x2eb370,4, 0x2eb3a8,1, 0x2eb3bc,1, 0x2ebd00,7, 0x2ebd20,3, 0x2ebd30,11, 0x2ebd70,3, 0x2ebd80,8, 0x2ebda4,10, 0x2ebde0,1, 0x2ebe00,1, 0x2ec000,13, 0x2ec400,198, 0x2ec720,3, 0x2ec800,189, 0x2ecb00,3, 0x2ecc00,198, 0x2ecf20,3, 0x2ed000,27, 0x2ed200,43, 0x2ed300,4, 0x2ed320,1, 0x2ed328,1, 0x2ed800,2, 0x2ee000,83, 0x2ee800,14, 0x2ee840,14, 0x2ee880,28, 0x2eec00,10, 0x2eec80,3, 0x2eecc0,1, 0x2f0000,2, 0x2f000c,3, 0x2f001c,3, 0x2f002c,3, 0x2f003c,3, 0x2f004c,3, 0x2f005c,3, 0x2f006c,3, 0x2f007c,3, 0x2f008c,3, 0x2f009c,3, 0x2f00ac,3, 0x2f00bc,3, 0x2f00cc,3, 0x2f00dc,3, 0x2f00ec,3, 0x2f00fc,3, 0x2f010c,3, 0x2f011c,3, 0x2f012c,3, 0x2f013c,3, 0x2f014c,3, 0x2f015c,3, 0x2f016c,3, 0x2f017c,3, 0x2f018c,3, 0x2f019c,3, 0x2f01ac,3, 0x2f01bc,3, 0x2f01cc,3, 0x2f01dc,3, 0x2f01ec,3, 0x2f01fc,3, 0x2f020c,3, 0x2f021c,3, 0x2f022c,3, 0x2f023c,3, 0x2f024c,3, 0x2f025c,3, 0x2f026c,3, 0x2f027c,1, 0x2f0400,3, 0x2f0410,3, 0x2f0420,3, 0x2f0430,3, 0x2f0440,3, 0x2f0450,3, 0x2f0460,3, 0x2f0470,3, 0x2f0480,3, 0x2f0490,3, 0x2f04a0,3, 0x2f04b0,3, 0x2f04c0,3, 0x2f04d0,3, 0x2f04e0,3, 0x2f04f0,3, 0x2f0500,3, 0x2f0510,3, 0x2f0520,3, 0x2f0530,3, 0x2f0540,3, 0x2f0550,3, 0x2f0560,3, 0x2f0570,3, 0x2f0580,3, 0x2f0590,3, 0x2f05a0,3, 0x2f05b0,3, 0x2f05c0,3, 0x2f05d0,3, 0x2f05e0,3, 0x2f05f0,3, 0x2f0600,3, 0x2f0610,3, 0x2f0620,3, 0x2f0630,3, 0x2f0640,3, 0x2f0650,3, 0x2f0660,3, 0x2f0670,3, 0x2f0680,11, 0x2f0800,162, 0x2f0c00,83, 0x2f0d50,3, 0x2f0e00,324, 0x2f13f4,3, 0x2f2000,4, 0x2f2100,40, 0x2f2200,110, 0x2f2400,40, 0x2f2500,4, 0x2f2520,6, 0x2f2540,4, 0x2f2560,6, 0x2f2580,4, 0x2f25a0,6, 0x2f25c0,4, 0x2f25e0,6, 0x2f2600,4, 0x2f2620,6, 0x2f2640,4, 0x2f2660,6, 0x2f2680,4, 0x2f26a0,6, 0x2f26c0,4, 0x2f26e0,6, 0x2f27f8,3, 0x2f2820,6, 0x2f2880,2, 0x2f2900,1, 0x2f2908,3, 0x2f2918,6, 0x2f2934,6, 0x2f2950,5, 0x2f2980,6, 0x2f29f4,22, 0x2f2a80,7, 0x2f2aa0,3, 0x2f2ab0,2, 0x2f2be0,1, 0x300000,4, 0x300014,1, 0x300020,3, 0x300030,3, 0x300040,5, 0x300064,5, 0x30007c,2, 0x3000a0,28, 0x300114,1, 0x300120,3, 0x300130,3, 0x300140,5, 0x300164,5, 0x30017c,2, 0x3001a0,28, 0x300214,1, 0x300220,3, 0x300230,3, 0x300240,5, 0x300264,5, 0x30027c,2, 0x3002a0,28, 0x300314,1, 0x300320,3, 0x300330,3, 0x300340,5, 0x300364,5, 0x30037c,2, 0x3003a0,24, 0x3005c0,1, 0x300600,1, 0x300608,3, 0x300618,2, 0x300800,18, 0x300880,10, 0x3008ac,2, 0x3008f0,3, 0x300900,18, 0x300980,10, 0x3009ac,2, 0x3009f0,3, 0x300c00,18, 0x300c50,2, 0x300c60,6, 0x300c80,18, 0x300cd0,2, 0x300ce0,6, 0x300e00,4, 0x300e20,4, 0x300e80,16, 0x300f00,5, 0x300f20,5, 0x301000,12, 0x301200,1, 0x301208,6, 0x301228,9, 0x301280,1, 0x301288,6, 0x3012a8,9, 0x301400,15, 0x301440,15, 0x301600,7, 0x301620,7, 0x301680,4, 0x30169c,11, 0x3016d0,2, 0x301800,27, 0x301880,4, 0x301898,3, 0x3019a4,1, 0x301a00,4, 0x301a20,4, 0x301a40,6, 0x301a80,4, 0x301aa0,4, 0x301ac0,6, 0x302000,16, 0x302060,7, 0x302080,16, 0x3020e0,7, 0x302200,19, 0x302280,19, 0x302400,14, 0x30243c,9, 0x302464,6, 0x302480,7, 0x3024a0,2, 0x3024ac,2, 0x302500,14, 0x30253c,9, 0x302564,6, 0x302580,7, 0x3025a0,2, 0x3025ac,2, 0x302800,19, 0x302880,19, 0x302b00,1, 0x302b20,1, 0x302b28,4, 0x302b40,1, 0x302b60,1, 0x302b68,4, 0x302c00,7, 0x302c20,1, 0x302c54,18, 0x302ca0,1, 0x302cd4,11, 0x302e00,8, 0x303000,16, 0x303100,7, 0x303120,7, 0x303180,3, 0x304000,4, 0x304014,1, 0x304020,3, 0x304030,3, 0x304040,5, 0x304064,5, 0x30407c,2, 0x3040a0,28, 0x304114,1, 0x304120,3, 0x304130,3, 0x304140,5, 0x304164,5, 0x30417c,2, 0x3041a0,28, 0x304214,1, 0x304220,3, 0x304230,3, 0x304240,5, 0x304264,5, 0x30427c,2, 0x3042a0,28, 0x304314,1, 0x304320,3, 0x304330,3, 0x304340,5, 0x304364,5, 0x30437c,2, 0x3043a0,24, 0x3045c0,1, 0x304600,1, 0x304608,3, 0x304618,2, 0x304800,18, 0x304880,10, 0x3048ac,2, 0x3048f0,3, 0x304900,18, 0x304980,10, 0x3049ac,2, 0x3049f0,3, 0x304c00,18, 0x304c50,2, 0x304c60,6, 0x304c80,18, 0x304cd0,2, 0x304ce0,6, 0x304e00,4, 0x304e20,4, 0x304e80,16, 0x304f00,5, 0x304f20,5, 0x305000,12, 0x305200,1, 0x305208,6, 0x305228,9, 0x305280,1, 0x305288,6, 0x3052a8,9, 0x305400,15, 0x305440,15, 0x305600,7, 0x305620,7, 0x305680,4, 0x30569c,11, 0x3056d0,2, 0x305800,27, 0x305880,4, 0x305898,3, 0x3059a4,1, 0x305a00,4, 0x305a20,4, 0x305a40,6, 0x305a80,4, 0x305aa0,4, 0x305ac0,6, 0x306000,16, 0x306060,7, 0x306080,16, 0x3060e0,7, 0x306200,19, 0x306280,19, 0x306400,14, 0x30643c,9, 0x306464,6, 0x306480,7, 0x3064a0,2, 0x3064ac,2, 0x306500,14, 0x30653c,9, 0x306564,6, 0x306580,7, 0x3065a0,2, 0x3065ac,2, 0x306800,19, 0x306880,19, 0x306b00,1, 0x306b20,1, 0x306b28,4, 0x306b40,1, 0x306b60,1, 0x306b68,4, 0x306c00,7, 0x306c20,1, 0x306c54,18, 0x306ca0,1, 0x306cd4,11, 0x306e00,8, 0x307000,16, 0x307100,7, 0x307120,7, 0x307180,3, 0x30c000,22, 0x30c060,6, 0x30c080,11, 0x30c100,11, 0x30c204,1, 0x30c224,21, 0x30c280,16, 0x30d000,8, 0x30d024,10, 0x30d050,22, 0x30d100,8, 0x30d124,10, 0x30d150,22, 0x30d200,8, 0x30d224,10, 0x30d250,22, 0x30d300,8, 0x30d324,10, 0x30d350,22, 0x30d400,8, 0x30d424,10, 0x30d450,22, 0x30d500,8, 0x30d524,10, 0x30d550,22, 0x30d600,8, 0x30d624,10, 0x30d650,22, 0x30d700,8, 0x30d724,10, 0x30d750,22, 0x30d800,8, 0x30d824,10, 0x30d850,22, 0x30d904,1, 0x30d914,10, 0x30d948,11, 0x30d980,1, 0x30da00,6, 0x30da20,2, 0x30da2c,2, 0x30e800,1, 0x30e808,3, 0x30e838,1, 0x30e844,1, 0x30e850,2, 0x30e860,8, 0x30e900,13, 0x30e940,19, 0x30e990,4, 0x30f000,35, 0x30fc00,10, 0x30fc80,3, 0x30fcc0,1, 0x310000,13, 0x310040,2, 0x310054,4, 0x310080,27, 0x310100,12, 0x310140,11, 0x310170,2, 0x310180,28, 0x310200,6, 0x310240,6, 0x31025c,3, 0x310280,5, 0x3102a0,8, 0x310400,14, 0x310440,14, 0x310480,14, 0x3104c0,14, 0x310540,3, 0x310600,7, 0x310620,14, 0x310680,5, 0x3106a0,7, 0x310800,13, 0x310840,2, 0x310854,4, 0x310880,27, 0x310900,12, 0x310940,11, 0x310970,2, 0x310980,28, 0x310a00,6, 0x310a40,6, 0x310a5c,3, 0x310a80,5, 0x310aa0,8, 0x310c00,14, 0x310c40,14, 0x310c80,14, 0x310cc0,14, 0x310d40,3, 0x310e00,7, 0x310e20,14, 0x310e80,5, 0x310ea0,7, 0x311000,13, 0x311040,2, 0x311054,4, 0x311080,27, 0x311100,12, 0x311140,11, 0x311170,2, 0x311180,28, 0x311200,6, 0x311240,6, 0x31125c,3, 0x311280,5, 0x3112a0,8, 0x311400,14, 0x311440,14, 0x311480,14, 0x3114c0,14, 0x311540,3, 0x311600,7, 0x311620,14, 0x311680,5, 0x3116a0,7, 0x311800,13, 0x311840,2, 0x311854,4, 0x311880,27, 0x311900,12, 0x311940,11, 0x311970,2, 0x311980,28, 0x311a00,6, 0x311a40,6, 0x311a5c,3, 0x311a80,5, 0x311aa0,8, 0x311c00,14, 0x311c40,14, 0x311c80,14, 0x311cc0,14, 0x311d40,3, 0x311e00,7, 0x311e20,14, 0x311e80,5, 0x311ea0,7, 0x312000,8, 0x312040,8, 0x312080,1, 0x312098,6, 0x312100,10, 0x312140,3, 0x312150,2, 0x312180,2, 0x312200,6, 0x312220,17, 0x312280,4, 0x312300,8, 0x312400,2, 0x312480,2, 0x313000,40, 0x313100,64, 0x314000,13, 0x314040,2, 0x314054,4, 0x314080,27, 0x314100,12, 0x314140,11, 0x314170,2, 0x314180,28, 0x314200,6, 0x314240,6, 0x31425c,3, 0x314280,5, 0x3142a0,8, 0x314400,14, 0x314440,14, 0x314480,14, 0x3144c0,14, 0x314540,3, 0x314600,7, 0x314620,14, 0x314680,5, 0x3146a0,7, 0x314800,13, 0x314840,2, 0x314854,4, 0x314880,27, 0x314900,12, 0x314940,11, 0x314970,2, 0x314980,28, 0x314a00,6, 0x314a40,6, 0x314a5c,3, 0x314a80,5, 0x314aa0,8, 0x314c00,14, 0x314c40,14, 0x314c80,14, 0x314cc0,14, 0x314d40,3, 0x314e00,7, 0x314e20,14, 0x314e80,5, 0x314ea0,7, 0x315000,13, 0x315040,2, 0x315054,4, 0x315080,27, 0x315100,12, 0x315140,11, 0x315170,2, 0x315180,28, 0x315200,6, 0x315240,6, 0x31525c,3, 0x315280,5, 0x3152a0,8, 0x315400,14, 0x315440,14, 0x315480,14, 0x3154c0,14, 0x315540,3, 0x315600,7, 0x315620,14, 0x315680,5, 0x3156a0,7, 0x315800,13, 0x315840,2, 0x315854,4, 0x315880,27, 0x315900,12, 0x315940,11, 0x315970,2, 0x315980,28, 0x315a00,6, 0x315a40,6, 0x315a5c,3, 0x315a80,5, 0x315aa0,8, 0x315c00,14, 0x315c40,14, 0x315c80,14, 0x315cc0,14, 0x315d40,3, 0x315e00,7, 0x315e20,14, 0x315e80,5, 0x315ea0,7, 0x316000,8, 0x316040,8, 0x316080,1, 0x316098,6, 0x316100,10, 0x316140,3, 0x316150,2, 0x316180,2, 0x316200,6, 0x316220,17, 0x316280,4, 0x316300,8, 0x316400,2, 0x316480,2, 0x317000,40, 0x317100,64, 0x320000,11, 0x320040,11, 0x320070,3, 0x320084,5, 0x3200a4,5, 0x320200,7, 0x320220,6, 0x320240,7, 0x320260,6, 0x320280,6, 0x3202a0,2, 0x3202ac,2, 0x3202c0,7, 0x3202e0,7, 0x320300,2, 0x32030c,2, 0x320320,6, 0x321000,19, 0x322000,25, 0x322070,6, 0x32208c,1, 0x322094,1, 0x32209c,8, 0x322104,23, 0x322180,7, 0x3221a0,6, 0x3221c0,7, 0x3221e0,6, 0x322400,61, 0x322500,25, 0x322568,4, 0x322580,2, 0x3225a0,1, 0x3225c0,11, 0x322600,9, 0x322640,3, 0x322650,3, 0x322664,3, 0x322680,22, 0x322700,17, 0x322800,11, 0x323000,594, 0x324000,25, 0x324070,6, 0x32408c,1, 0x324094,1, 0x32409c,8, 0x324104,23, 0x324180,7, 0x3241a0,6, 0x3241c0,7, 0x3241e0,6, 0x324400,61, 0x324500,25, 0x324568,4, 0x324580,2, 0x3245a0,1, 0x3245c0,11, 0x324600,9, 0x324640,3, 0x324650,3, 0x324664,3, 0x324680,22, 0x324700,17, 0x324800,11, 0x325000,594, 0x32a000,25, 0x32a070,6, 0x32a08c,1, 0x32a094,1, 0x32a09c,8, 0x32a104,23, 0x32a180,7, 0x32a1a0,6, 0x32a1c0,7, 0x32a1e0,6, 0x32a400,61, 0x32a500,25, 0x32a568,4, 0x32a580,2, 0x32a5a0,1, 0x32a5c0,11, 0x32a600,9, 0x32a640,3, 0x32a650,3, 0x32a664,3, 0x32a680,22, 0x32a700,17, 0x32a800,11, 0x32b000,594, 0x32c000,25, 0x32c070,6, 0x32c08c,1, 0x32c094,1, 0x32c09c,8, 0x32c104,23, 0x32c180,7, 0x32c1a0,6, 0x32c1c0,7, 0x32c1e0,6, 0x32c400,61, 0x32c500,25, 0x32c568,4, 0x32c580,2, 0x32c5a0,1, 0x32c5c0,11, 0x32c600,9, 0x32c640,3, 0x32c650,3, 0x32c664,3, 0x32c680,22, 0x32c700,17, 0x32c800,11, 0x32d000,594, 0x33f000,7, 0x33f048,7, 0x33f080,8, 0x33f100,7, 0x33f148,7, 0x33f180,8, 0x33f400,7, 0x33f448,7, 0x33f480,8, 0x33f500,7, 0x33f548,7, 0x33f580,8, 0x340000,31, 0x340080,31, 0x340100,31, 0x340180,31, 0x340200,31, 0x340280,31, 0x340300,31, 0x340380,31, 0x340400,64, 0x340504,5, 0x340520,1, 0x340600,6, 0x340620,6, 0x340640,6, 0x340660,6, 0x340680,6, 0x3406a0,6, 0x3406c0,6, 0x3406e0,6, 0x340700,4, 0x340720,3, 0x340730,3, 0x340760,3, 0x340770,1, 0x340780,5, 0x340800,31, 0x340880,31, 0x340900,31, 0x340980,31, 0x340a00,31, 0x340a80,31, 0x340b00,31, 0x340b80,31, 0x340c00,64, 0x340d04,5, 0x340d20,1, 0x340e00,6, 0x340e20,6, 0x340e40,6, 0x340e60,6, 0x340e80,6, 0x340ea0,6, 0x340ec0,6, 0x340ee0,6, 0x340f00,4, 0x340f20,3, 0x340f30,3, 0x340f60,3, 0x340f70,1, 0x340f80,5, 0x341000,11, 0x341040,11, 0x341080,11, 0x3410c0,11, 0x341100,21, 0x341160,5, 0x341180,3, 0x341190,3, 0x3411a0,11, 0x3411d0,3, 0x3411e0,3, 0x341200,86, 0x341400,5, 0x34141c,1, 0x341440,6, 0x341460,1, 0x341480,3, 0x341490,1, 0x341800,11, 0x341840,11, 0x341880,11, 0x3418c0,11, 0x341900,21, 0x341960,5, 0x341980,3, 0x341990,3, 0x3419a0,11, 0x3419d0,3, 0x3419e0,3, 0x341a00,86, 0x341c00,5, 0x341c1c,1, 0x341c40,6, 0x341c60,1, 0x341c80,3, 0x341c90,1, 0x342000,32, 0x342084,1, 0x342094,3, 0x3420c4,3, 0x342100,1, 0x34210c,3, 0x342120,3, 0x342140,1, 0x342150,9, 0x342180,2, 0x3421a4,1, 0x3421b4,8, 0x342200,20, 0x342260,6, 0x342280,4, 0x3422a0,6, 0x343000,31, 0x343080,31, 0x343100,31, 0x343180,31, 0x343200,31, 0x343280,31, 0x343300,31, 0x343380,31, 0x343400,64, 0x343504,5, 0x343520,1, 0x343600,6, 0x343620,6, 0x343640,6, 0x343660,6, 0x343680,6, 0x3436a0,6, 0x3436c0,6, 0x3436e0,6, 0x343700,4, 0x343720,3, 0x343730,3, 0x343760,3, 0x343770,1, 0x343780,5, 0x343800,31, 0x343880,31, 0x343900,31, 0x343980,31, 0x343a00,31, 0x343a80,31, 0x343b00,31, 0x343b80,31, 0x343c00,64, 0x343d04,5, 0x343d20,1, 0x343e00,6, 0x343e20,6, 0x343e40,6, 0x343e60,6, 0x343e80,6, 0x343ea0,6, 0x343ec0,6, 0x343ee0,6, 0x343f00,4, 0x343f20,3, 0x343f30,3, 0x343f60,3, 0x343f70,1, 0x343f80,5, 0x344000,11, 0x344040,11, 0x344080,11, 0x3440c0,11, 0x344100,21, 0x344160,5, 0x344180,3, 0x344190,3, 0x3441a0,11, 0x3441d0,3, 0x3441e0,3, 0x344200,86, 0x344400,5, 0x34441c,1, 0x344440,6, 0x344460,1, 0x344480,3, 0x344490,1, 0x344800,11, 0x344840,11, 0x344880,11, 0x3448c0,11, 0x344900,21, 0x344960,5, 0x344980,3, 0x344990,3, 0x3449a0,11, 0x3449d0,3, 0x3449e0,3, 0x344a00,86, 0x344c00,5, 0x344c1c,1, 0x344c40,6, 0x344c60,1, 0x344c80,3, 0x344c90,1, 0x345000,32, 0x345084,1, 0x345094,3, 0x3450c4,3, 0x345100,1, 0x34510c,3, 0x345120,3, 0x345140,1, 0x345150,9, 0x345180,2, 0x3451a4,1, 0x3451b4,8, 0x345200,20, 0x345260,6, 0x345280,4, 0x3452a0,6, 0x346100,1, 0x34610c,4, 0x346120,16, 0x346180,1, 0x346200,91, 0x346508,1, 0x346540,1, 0x347000,1, 0x347014,1, 0x34701c,2, 0x347034,1, 0x34703c,5, 0x347060,6, 0x347080,4, 0x3470a0,6, 0x3470c0,3, 0x3470d0,2, 0x347100,11, 0x347134,4, 0x347150,3, 0x347200,3, 0x347210,1, 0x347220,9, 0x347260,2, 0x347300,25, 0x349000,19, 0x350000,286, 0x350800,3, 0x350810,3, 0x350820,3, 0x350830,4, 0x350844,7, 0x351000,3, 0x351010,86, 0x351170,18, 0x351200,1, 0x351220,1, 0x351240,1, 0x351254,1, 0x35125c,4, 0x351270,1, 0x351278,1, 0x351400,3, 0x351410,86, 0x351570,20, 0x351604,1, 0x351640,48, 0x351704,1, 0x351710,5, 0x351740,6, 0x3518e0,12, 0x351920,4, 0x351a00,7, 0x351a20,37, 0x351b00,41, 0x351bb0,3, 0x351c00,25, 0x351c80,7, 0x351ca0,6, 0x351cc0,7, 0x351d00,7, 0x351d20,5, 0x351d40,10, 0x352000,286, 0x352800,3, 0x352810,3, 0x352820,3, 0x352830,4, 0x352844,7, 0x353000,3, 0x353010,86, 0x353170,18, 0x353200,1, 0x353220,1, 0x353240,1, 0x353254,1, 0x35325c,4, 0x353270,1, 0x353278,1, 0x353400,3, 0x353410,86, 0x353570,20, 0x353604,1, 0x353640,48, 0x353704,1, 0x353710,5, 0x353740,6, 0x3538e0,12, 0x353920,4, 0x353a00,7, 0x353a20,37, 0x353b00,41, 0x353bb0,3, 0x353c00,25, 0x353c80,7, 0x353ca0,6, 0x353cc0,7, 0x353d00,7, 0x353d20,5, 0x353d40,10, 0x354000,19, 0x355000,11, 0x355040,5, 0x355058,1, 0x355060,1, 0x360000,3, 0x360010,3, 0x360020,5, 0x360038,9, 0x360060,8, 0x360100,17, 0x360200,3, 0x360210,3, 0x360220,5, 0x360238,9, 0x360260,8, 0x360300,17, 0x360400,3, 0x360414,1, 0x36041c,33, 0x360540,33, 0x3605c8,12, 0x360800,2, 0x360844,1, 0x36084c,1, 0x360880,27, 0x360900,4, 0x360980,19, 0x360a00,4, 0x360a80,19, 0x360b00,1, 0x360b40,5, 0x360b60,5, 0x360b80,6, 0x360bb0,17, 0x360c00,13, 0x360c40,5, 0x360c80,12, 0x361000,3, 0x361010,3, 0x361020,5, 0x361038,9, 0x361060,8, 0x361100,17, 0x361200,3, 0x361210,3, 0x361220,5, 0x361238,9, 0x361260,8, 0x361300,17, 0x361400,3, 0x361414,1, 0x36141c,33, 0x361540,33, 0x3615c8,12, 0x361800,2, 0x361844,1, 0x36184c,1, 0x361880,27, 0x361900,4, 0x361980,19, 0x361a00,4, 0x361a80,19, 0x361b00,1, 0x361b40,5, 0x361b60,5, 0x361b80,6, 0x361bb0,17, 0x361c00,13, 0x361c40,5, 0x361c80,12, 0x362000,19, 0x362080,4, 0x363000,19, 0x364000,2, 0x36400c,5, 0x364028,3, 0x364038,3, 0x364050,1, 0x364080,13, 0x364120,4, 0x364140,1, 0x364400,26, 0x364470,3, 0x364580,10, 0x3645c0,8, 0x3645e8,2, 0x3645f4,2, 0x364600,5, 0x364618,1, 0x364620,1, 0x364628,1, 0x364630,2, 0x364640,2, 0x364650,2, 0x364690,4, 0x364740,2, 0x364800,2, 0x36480c,5, 0x364828,3, 0x364838,3, 0x364850,1, 0x364880,13, 0x364920,4, 0x364940,1, 0x364c00,26, 0x364c70,3, 0x364d80,10, 0x364dc0,8, 0x364de8,2, 0x364df4,2, 0x364e00,5, 0x364e18,1, 0x364e20,1, 0x364e28,1, 0x364e30,2, 0x364e40,2, 0x364e50,2, 0x364e90,4, 0x364f40,2, 0x365800,11, 0x365880,2, 0x3658b0,2, 0x366000,35, 0x366c00,10, 0x366c80,3, 0x380000,4, 0x380014,1, 0x380020,3, 0x380030,3, 0x380040,5, 0x380064,5, 0x38007c,2, 0x3800a0,28, 0x380114,1, 0x380120,3, 0x380130,3, 0x380140,5, 0x380164,5, 0x38017c,2, 0x3801a0,28, 0x380214,1, 0x380220,3, 0x380230,3, 0x380240,5, 0x380264,5, 0x38027c,2, 0x3802a0,28, 0x380314,1, 0x380320,3, 0x380330,3, 0x380340,5, 0x380364,5, 0x38037c,2, 0x3803a0,24, 0x3805c0,1, 0x380600,1, 0x380608,3, 0x380618,2, 0x380800,18, 0x380880,10, 0x3808ac,2, 0x3808f0,3, 0x380900,18, 0x380980,10, 0x3809ac,2, 0x3809f0,3, 0x380c00,18, 0x380c50,2, 0x380c60,6, 0x380c80,18, 0x380cd0,2, 0x380ce0,6, 0x380e00,4, 0x380e20,4, 0x380e80,16, 0x380f00,5, 0x380f20,5, 0x381000,12, 0x381200,1, 0x381208,6, 0x381228,9, 0x381280,1, 0x381288,6, 0x3812a8,9, 0x381400,15, 0x381440,15, 0x381600,7, 0x381620,7, 0x381680,4, 0x38169c,11, 0x3816d0,2, 0x381800,27, 0x381880,4, 0x381898,3, 0x3819a4,1, 0x381a00,4, 0x381a20,4, 0x381a40,6, 0x381a80,4, 0x381aa0,4, 0x381ac0,6, 0x382000,16, 0x382060,7, 0x382080,16, 0x3820e0,7, 0x382200,19, 0x382280,19, 0x382400,14, 0x38243c,9, 0x382464,6, 0x382480,7, 0x3824a0,2, 0x3824ac,2, 0x382500,14, 0x38253c,9, 0x382564,6, 0x382580,7, 0x3825a0,2, 0x3825ac,2, 0x382800,19, 0x382880,19, 0x382b00,1, 0x382b20,1, 0x382b28,4, 0x382b40,1, 0x382b60,1, 0x382b68,4, 0x382c00,7, 0x382c20,1, 0x382c54,18, 0x382ca0,1, 0x382cd4,11, 0x382e00,8, 0x383000,16, 0x383100,7, 0x383120,7, 0x383180,3, 0x384000,4, 0x384014,1, 0x384020,3, 0x384030,3, 0x384040,5, 0x384064,5, 0x38407c,2, 0x3840a0,28, 0x384114,1, 0x384120,3, 0x384130,3, 0x384140,5, 0x384164,5, 0x38417c,2, 0x3841a0,28, 0x384214,1, 0x384220,3, 0x384230,3, 0x384240,5, 0x384264,5, 0x38427c,2, 0x3842a0,28, 0x384314,1, 0x384320,3, 0x384330,3, 0x384340,5, 0x384364,5, 0x38437c,2, 0x3843a0,24, 0x3845c0,1, 0x384600,1, 0x384608,3, 0x384618,2, 0x384800,18, 0x384880,10, 0x3848ac,2, 0x3848f0,3, 0x384900,18, 0x384980,10, 0x3849ac,2, 0x3849f0,3, 0x384c00,18, 0x384c50,2, 0x384c60,6, 0x384c80,18, 0x384cd0,2, 0x384ce0,6, 0x384e00,4, 0x384e20,4, 0x384e80,16, 0x384f00,5, 0x384f20,5, 0x385000,12, 0x385200,1, 0x385208,6, 0x385228,9, 0x385280,1, 0x385288,6, 0x3852a8,9, 0x385400,15, 0x385440,15, 0x385600,7, 0x385620,7, 0x385680,4, 0x38569c,11, 0x3856d0,2, 0x385800,27, 0x385880,4, 0x385898,3, 0x3859a4,1, 0x385a00,4, 0x385a20,4, 0x385a40,6, 0x385a80,4, 0x385aa0,4, 0x385ac0,6, 0x386000,16, 0x386060,7, 0x386080,16, 0x3860e0,7, 0x386200,19, 0x386280,19, 0x386400,14, 0x38643c,9, 0x386464,6, 0x386480,7, 0x3864a0,2, 0x3864ac,2, 0x386500,14, 0x38653c,9, 0x386564,6, 0x386580,7, 0x3865a0,2, 0x3865ac,2, 0x386800,19, 0x386880,19, 0x386b00,1, 0x386b20,1, 0x386b28,4, 0x386b40,1, 0x386b60,1, 0x386b68,4, 0x386c00,7, 0x386c20,1, 0x386c54,18, 0x386ca0,1, 0x386cd4,11, 0x386e00,8, 0x387000,16, 0x387100,7, 0x387120,7, 0x387180,3, 0x38c000,22, 0x38c060,6, 0x38c080,11, 0x38c100,11, 0x38c204,1, 0x38c224,21, 0x38c280,16, 0x38d000,8, 0x38d024,10, 0x38d050,22, 0x38d100,8, 0x38d124,10, 0x38d150,22, 0x38d200,8, 0x38d224,10, 0x38d250,22, 0x38d300,8, 0x38d324,10, 0x38d350,22, 0x38d400,8, 0x38d424,10, 0x38d450,22, 0x38d500,8, 0x38d524,10, 0x38d550,22, 0x38d600,8, 0x38d624,10, 0x38d650,22, 0x38d700,8, 0x38d724,10, 0x38d750,22, 0x38d800,8, 0x38d824,10, 0x38d850,22, 0x38d904,1, 0x38d914,10, 0x38d948,11, 0x38d980,1, 0x38da00,6, 0x38da20,2, 0x38da2c,2, 0x38e800,1, 0x38e808,3, 0x38e838,1, 0x38e844,1, 0x38e850,2, 0x38e860,8, 0x38e900,13, 0x38e940,19, 0x38e990,4, 0x38f000,35, 0x38fc00,10, 0x38fc80,3, 0x38fcc0,1, 0x390000,13, 0x390040,2, 0x390054,4, 0x390080,27, 0x390100,12, 0x390140,11, 0x390170,2, 0x390180,28, 0x390200,6, 0x390240,6, 0x39025c,3, 0x390280,5, 0x3902a0,8, 0x390400,14, 0x390440,14, 0x390480,14, 0x3904c0,14, 0x390540,3, 0x390600,7, 0x390620,14, 0x390680,5, 0x3906a0,7, 0x390800,13, 0x390840,2, 0x390854,4, 0x390880,27, 0x390900,12, 0x390940,11, 0x390970,2, 0x390980,28, 0x390a00,6, 0x390a40,6, 0x390a5c,3, 0x390a80,5, 0x390aa0,8, 0x390c00,14, 0x390c40,14, 0x390c80,14, 0x390cc0,14, 0x390d40,3, 0x390e00,7, 0x390e20,14, 0x390e80,5, 0x390ea0,7, 0x391000,13, 0x391040,2, 0x391054,4, 0x391080,27, 0x391100,12, 0x391140,11, 0x391170,2, 0x391180,28, 0x391200,6, 0x391240,6, 0x39125c,3, 0x391280,5, 0x3912a0,8, 0x391400,14, 0x391440,14, 0x391480,14, 0x3914c0,14, 0x391540,3, 0x391600,7, 0x391620,14, 0x391680,5, 0x3916a0,7, 0x391800,13, 0x391840,2, 0x391854,4, 0x391880,27, 0x391900,12, 0x391940,11, 0x391970,2, 0x391980,28, 0x391a00,6, 0x391a40,6, 0x391a5c,3, 0x391a80,5, 0x391aa0,8, 0x391c00,14, 0x391c40,14, 0x391c80,14, 0x391cc0,14, 0x391d40,3, 0x391e00,7, 0x391e20,14, 0x391e80,5, 0x391ea0,7, 0x392000,8, 0x392040,8, 0x392080,1, 0x392098,6, 0x392100,10, 0x392140,3, 0x392150,2, 0x392180,2, 0x392200,6, 0x392220,17, 0x392280,4, 0x392300,8, 0x392400,2, 0x392480,2, 0x393000,40, 0x393100,64, 0x394000,13, 0x394040,2, 0x394054,4, 0x394080,27, 0x394100,12, 0x394140,11, 0x394170,2, 0x394180,28, 0x394200,6, 0x394240,6, 0x39425c,3, 0x394280,5, 0x3942a0,8, 0x394400,14, 0x394440,14, 0x394480,14, 0x3944c0,14, 0x394540,3, 0x394600,7, 0x394620,14, 0x394680,5, 0x3946a0,7, 0x394800,13, 0x394840,2, 0x394854,4, 0x394880,27, 0x394900,12, 0x394940,11, 0x394970,2, 0x394980,28, 0x394a00,6, 0x394a40,6, 0x394a5c,3, 0x394a80,5, 0x394aa0,8, 0x394c00,14, 0x394c40,14, 0x394c80,14, 0x394cc0,14, 0x394d40,3, 0x394e00,7, 0x394e20,14, 0x394e80,5, 0x394ea0,7, 0x395000,13, 0x395040,2, 0x395054,4, 0x395080,27, 0x395100,12, 0x395140,11, 0x395170,2, 0x395180,28, 0x395200,6, 0x395240,6, 0x39525c,3, 0x395280,5, 0x3952a0,8, 0x395400,14, 0x395440,14, 0x395480,14, 0x3954c0,14, 0x395540,3, 0x395600,7, 0x395620,14, 0x395680,5, 0x3956a0,7, 0x395800,13, 0x395840,2, 0x395854,4, 0x395880,27, 0x395900,12, 0x395940,11, 0x395970,2, 0x395980,28, 0x395a00,6, 0x395a40,6, 0x395a5c,3, 0x395a80,5, 0x395aa0,8, 0x395c00,14, 0x395c40,14, 0x395c80,14, 0x395cc0,14, 0x395d40,3, 0x395e00,7, 0x395e20,14, 0x395e80,5, 0x395ea0,7, 0x396000,8, 0x396040,8, 0x396080,1, 0x396098,6, 0x396100,10, 0x396140,3, 0x396150,2, 0x396180,2, 0x396200,6, 0x396220,17, 0x396280,4, 0x396300,8, 0x396400,2, 0x396480,2, 0x397000,40, 0x397100,64, 0x3a0000,11, 0x3a0040,11, 0x3a0070,3, 0x3a0084,5, 0x3a00a4,5, 0x3a0200,7, 0x3a0220,6, 0x3a0240,7, 0x3a0260,6, 0x3a0280,6, 0x3a02a0,2, 0x3a02ac,2, 0x3a02c0,7, 0x3a02e0,7, 0x3a0300,2, 0x3a030c,2, 0x3a0320,6, 0x3a1000,19, 0x3a2000,25, 0x3a2070,6, 0x3a208c,1, 0x3a2094,1, 0x3a209c,8, 0x3a2104,23, 0x3a2180,7, 0x3a21a0,6, 0x3a21c0,7, 0x3a21e0,6, 0x3a2400,61, 0x3a2500,25, 0x3a2568,4, 0x3a2580,2, 0x3a25a0,1, 0x3a25c0,11, 0x3a2600,9, 0x3a2640,3, 0x3a2650,3, 0x3a2664,3, 0x3a2680,22, 0x3a2700,17, 0x3a2800,11, 0x3a3000,594, 0x3a4000,25, 0x3a4070,6, 0x3a408c,1, 0x3a4094,1, 0x3a409c,8, 0x3a4104,23, 0x3a4180,7, 0x3a41a0,6, 0x3a41c0,7, 0x3a41e0,6, 0x3a4400,61, 0x3a4500,25, 0x3a4568,4, 0x3a4580,2, 0x3a45a0,1, 0x3a45c0,11, 0x3a4600,9, 0x3a4640,3, 0x3a4650,3, 0x3a4664,3, 0x3a4680,22, 0x3a4700,17, 0x3a4800,11, 0x3a5000,594, 0x3aa000,25, 0x3aa070,6, 0x3aa08c,1, 0x3aa094,1, 0x3aa09c,8, 0x3aa104,23, 0x3aa180,7, 0x3aa1a0,6, 0x3aa1c0,7, 0x3aa1e0,6, 0x3aa400,61, 0x3aa500,25, 0x3aa568,4, 0x3aa580,2, 0x3aa5a0,1, 0x3aa5c0,11, 0x3aa600,9, 0x3aa640,3, 0x3aa650,3, 0x3aa664,3, 0x3aa680,22, 0x3aa700,17, 0x3aa800,11, 0x3ab000,594, 0x3ac000,25, 0x3ac070,6, 0x3ac08c,1, 0x3ac094,1, 0x3ac09c,8, 0x3ac104,23, 0x3ac180,7, 0x3ac1a0,6, 0x3ac1c0,7, 0x3ac1e0,6, 0x3ac400,61, 0x3ac500,25, 0x3ac568,4, 0x3ac580,2, 0x3ac5a0,1, 0x3ac5c0,11, 0x3ac600,9, 0x3ac640,3, 0x3ac650,3, 0x3ac664,3, 0x3ac680,22, 0x3ac700,17, 0x3ac800,11, 0x3ad000,594, 0x3bf000,7, 0x3bf048,7, 0x3bf080,8, 0x3bf100,7, 0x3bf148,7, 0x3bf180,8, 0x3bf400,7, 0x3bf448,7, 0x3bf480,8, 0x3bf500,7, 0x3bf548,7, 0x3bf580,8, 0x3c0000,31, 0x3c0080,31, 0x3c0100,31, 0x3c0180,31, 0x3c0200,31, 0x3c0280,31, 0x3c0300,31, 0x3c0380,31, 0x3c0400,64, 0x3c0504,5, 0x3c0520,1, 0x3c0600,6, 0x3c0620,6, 0x3c0640,6, 0x3c0660,6, 0x3c0680,6, 0x3c06a0,6, 0x3c06c0,6, 0x3c06e0,6, 0x3c0700,4, 0x3c0720,3, 0x3c0730,3, 0x3c0760,3, 0x3c0770,1, 0x3c0780,5, 0x3c0800,31, 0x3c0880,31, 0x3c0900,31, 0x3c0980,31, 0x3c0a00,31, 0x3c0a80,31, 0x3c0b00,31, 0x3c0b80,31, 0x3c0c00,64, 0x3c0d04,5, 0x3c0d20,1, 0x3c0e00,6, 0x3c0e20,6, 0x3c0e40,6, 0x3c0e60,6, 0x3c0e80,6, 0x3c0ea0,6, 0x3c0ec0,6, 0x3c0ee0,6, 0x3c0f00,4, 0x3c0f20,3, 0x3c0f30,3, 0x3c0f60,3, 0x3c0f70,1, 0x3c0f80,5, 0x3c1000,11, 0x3c1040,11, 0x3c1080,11, 0x3c10c0,11, 0x3c1100,21, 0x3c1160,5, 0x3c1180,3, 0x3c1190,3, 0x3c11a0,11, 0x3c11d0,3, 0x3c11e0,3, 0x3c1200,86, 0x3c1400,5, 0x3c141c,1, 0x3c1440,6, 0x3c1460,1, 0x3c1480,3, 0x3c1490,1, 0x3c1800,11, 0x3c1840,11, 0x3c1880,11, 0x3c18c0,11, 0x3c1900,21, 0x3c1960,5, 0x3c1980,3, 0x3c1990,3, 0x3c19a0,11, 0x3c19d0,3, 0x3c19e0,3, 0x3c1a00,86, 0x3c1c00,5, 0x3c1c1c,1, 0x3c1c40,6, 0x3c1c60,1, 0x3c1c80,3, 0x3c1c90,1, 0x3c2000,32, 0x3c2084,1, 0x3c2094,3, 0x3c20c4,3, 0x3c2100,1, 0x3c210c,3, 0x3c2120,3, 0x3c2140,1, 0x3c2150,9, 0x3c2180,2, 0x3c21a4,1, 0x3c21b4,8, 0x3c2200,20, 0x3c2260,6, 0x3c2280,4, 0x3c22a0,6, 0x3c3000,31, 0x3c3080,31, 0x3c3100,31, 0x3c3180,31, 0x3c3200,31, 0x3c3280,31, 0x3c3300,31, 0x3c3380,31, 0x3c3400,64, 0x3c3504,5, 0x3c3520,1, 0x3c3600,6, 0x3c3620,6, 0x3c3640,6, 0x3c3660,6, 0x3c3680,6, 0x3c36a0,6, 0x3c36c0,6, 0x3c36e0,6, 0x3c3700,4, 0x3c3720,3, 0x3c3730,3, 0x3c3760,3, 0x3c3770,1, 0x3c3780,5, 0x3c3800,31, 0x3c3880,31, 0x3c3900,31, 0x3c3980,31, 0x3c3a00,31, 0x3c3a80,31, 0x3c3b00,31, 0x3c3b80,31, 0x3c3c00,64, 0x3c3d04,5, 0x3c3d20,1, 0x3c3e00,6, 0x3c3e20,6, 0x3c3e40,6, 0x3c3e60,6, 0x3c3e80,6, 0x3c3ea0,6, 0x3c3ec0,6, 0x3c3ee0,6, 0x3c3f00,4, 0x3c3f20,3, 0x3c3f30,3, 0x3c3f60,3, 0x3c3f70,1, 0x3c3f80,5, 0x3c4000,11, 0x3c4040,11, 0x3c4080,11, 0x3c40c0,11, 0x3c4100,21, 0x3c4160,5, 0x3c4180,3, 0x3c4190,3, 0x3c41a0,11, 0x3c41d0,3, 0x3c41e0,3, 0x3c4200,86, 0x3c4400,5, 0x3c441c,1, 0x3c4440,6, 0x3c4460,1, 0x3c4480,3, 0x3c4490,1, 0x3c4800,11, 0x3c4840,11, 0x3c4880,11, 0x3c48c0,11, 0x3c4900,21, 0x3c4960,5, 0x3c4980,3, 0x3c4990,3, 0x3c49a0,11, 0x3c49d0,3, 0x3c49e0,3, 0x3c4a00,86, 0x3c4c00,5, 0x3c4c1c,1, 0x3c4c40,6, 0x3c4c60,1, 0x3c4c80,3, 0x3c4c90,1, 0x3c5000,32, 0x3c5084,1, 0x3c5094,3, 0x3c50c4,3, 0x3c5100,1, 0x3c510c,3, 0x3c5120,3, 0x3c5140,1, 0x3c5150,9, 0x3c5180,2, 0x3c51a4,1, 0x3c51b4,8, 0x3c5200,20, 0x3c5260,6, 0x3c5280,4, 0x3c52a0,6, 0x3c6100,1, 0x3c610c,4, 0x3c6120,16, 0x3c6180,1, 0x3c6200,91, 0x3c6508,1, 0x3c6540,1, 0x3c7000,1, 0x3c7014,1, 0x3c701c,2, 0x3c7034,1, 0x3c703c,5, 0x3c7060,6, 0x3c7080,4, 0x3c70a0,6, 0x3c70c0,3, 0x3c70d0,2, 0x3c7100,11, 0x3c7134,4, 0x3c7150,3, 0x3c7200,3, 0x3c7210,1, 0x3c7220,9, 0x3c7260,2, 0x3c7300,25, 0x3c9000,19, 0x3d0000,286, 0x3d0800,3, 0x3d0810,3, 0x3d0820,3, 0x3d0830,4, 0x3d0844,7, 0x3d1000,3, 0x3d1010,86, 0x3d1170,18, 0x3d1200,1, 0x3d1220,1, 0x3d1240,1, 0x3d1254,1, 0x3d125c,4, 0x3d1270,1, 0x3d1278,1, 0x3d1400,3, 0x3d1410,86, 0x3d1570,20, 0x3d1604,1, 0x3d1640,48, 0x3d1704,1, 0x3d1710,5, 0x3d1740,6, 0x3d18e0,12, 0x3d1920,4, 0x3d1a00,7, 0x3d1a20,37, 0x3d1b00,41, 0x3d1bb0,3, 0x3d1c00,25, 0x3d1c80,7, 0x3d1ca0,6, 0x3d1cc0,7, 0x3d1d00,7, 0x3d1d20,5, 0x3d1d40,10, 0x3d2000,286, 0x3d2800,3, 0x3d2810,3, 0x3d2820,3, 0x3d2830,4, 0x3d2844,7, 0x3d3000,3, 0x3d3010,86, 0x3d3170,18, 0x3d3200,1, 0x3d3220,1, 0x3d3240,1, 0x3d3254,1, 0x3d325c,4, 0x3d3270,1, 0x3d3278,1, 0x3d3400,3, 0x3d3410,86, 0x3d3570,20, 0x3d3604,1, 0x3d3640,48, 0x3d3704,1, 0x3d3710,5, 0x3d3740,6, 0x3d38e0,12, 0x3d3920,4, 0x3d3a00,7, 0x3d3a20,37, 0x3d3b00,41, 0x3d3bb0,3, 0x3d3c00,25, 0x3d3c80,7, 0x3d3ca0,6, 0x3d3cc0,7, 0x3d3d00,7, 0x3d3d20,5, 0x3d3d40,10, 0x3d4000,19, 0x3d5000,11, 0x3d5040,5, 0x3d5058,1, 0x3d5060,1, 0x3e0000,3, 0x3e0010,3, 0x3e0020,5, 0x3e0038,9, 0x3e0060,8, 0x3e0100,17, 0x3e0200,3, 0x3e0210,3, 0x3e0220,5, 0x3e0238,9, 0x3e0260,8, 0x3e0300,17, 0x3e0400,3, 0x3e0414,1, 0x3e041c,33, 0x3e0540,33, 0x3e05c8,12, 0x3e0800,2, 0x3e0844,1, 0x3e084c,1, 0x3e0880,27, 0x3e0900,4, 0x3e0980,19, 0x3e0a00,4, 0x3e0a80,19, 0x3e0b00,1, 0x3e0b40,5, 0x3e0b60,5, 0x3e0b80,6, 0x3e0bb0,17, 0x3e0c00,13, 0x3e0c40,5, 0x3e0c80,12, 0x3e1000,3, 0x3e1010,3, 0x3e1020,5, 0x3e1038,9, 0x3e1060,8, 0x3e1100,17, 0x3e1200,3, 0x3e1210,3, 0x3e1220,5, 0x3e1238,9, 0x3e1260,8, 0x3e1300,17, 0x3e1400,3, 0x3e1414,1, 0x3e141c,33, 0x3e1540,33, 0x3e15c8,12, 0x3e1800,2, 0x3e1844,1, 0x3e184c,1, 0x3e1880,27, 0x3e1900,4, 0x3e1980,19, 0x3e1a00,4, 0x3e1a80,19, 0x3e1b00,1, 0x3e1b40,5, 0x3e1b60,5, 0x3e1b80,6, 0x3e1bb0,17, 0x3e1c00,13, 0x3e1c40,5, 0x3e1c80,12, 0x3e2000,19, 0x3e2080,4, 0x3e3000,19, 0x3e4000,2, 0x3e400c,5, 0x3e4028,3, 0x3e4038,3, 0x3e4050,1, 0x3e4080,13, 0x3e4120,4, 0x3e4140,1, 0x3e4400,26, 0x3e4470,3, 0x3e4580,10, 0x3e45c0,8, 0x3e45e8,2, 0x3e45f4,2, 0x3e4600,5, 0x3e4618,1, 0x3e4620,1, 0x3e4628,1, 0x3e4630,2, 0x3e4640,2, 0x3e4650,2, 0x3e4690,4, 0x3e4740,2, 0x3e4800,2, 0x3e480c,5, 0x3e4828,3, 0x3e4838,3, 0x3e4850,1, 0x3e4880,13, 0x3e4920,4, 0x3e4940,1, 0x3e4c00,26, 0x3e4c70,3, 0x3e4d80,10, 0x3e4dc0,8, 0x3e4de8,2, 0x3e4df4,2, 0x3e4e00,5, 0x3e4e18,1, 0x3e4e20,1, 0x3e4e28,1, 0x3e4e30,2, 0x3e4e40,2, 0x3e4e50,2, 0x3e4e90,4, 0x3e4f40,2, 0x3e5800,11, 0x3e5880,2, 0x3e58b0,2, 0x3e6000,35, 0x3e6c00,10, 0x3e6c80,3, 0x400000,4, 0x400014,1, 0x400020,3, 0x400030,3, 0x400040,5, 0x400064,5, 0x40007c,2, 0x4000a0,28, 0x400114,1, 0x400120,3, 0x400130,3, 0x400140,5, 0x400164,5, 0x40017c,2, 0x4001a0,28, 0x400214,1, 0x400220,3, 0x400230,3, 0x400240,5, 0x400264,5, 0x40027c,2, 0x4002a0,28, 0x400314,1, 0x400320,3, 0x400330,3, 0x400340,5, 0x400364,5, 0x40037c,2, 0x4003a0,24, 0x4005c0,1, 0x400600,1, 0x400608,3, 0x400618,2, 0x400800,18, 0x400880,10, 0x4008ac,2, 0x4008f0,3, 0x400900,18, 0x400980,10, 0x4009ac,2, 0x4009f0,3, 0x400c00,18, 0x400c50,2, 0x400c60,6, 0x400c80,18, 0x400cd0,2, 0x400ce0,6, 0x400e00,4, 0x400e20,4, 0x400e80,16, 0x400f00,5, 0x400f20,5, 0x401000,12, 0x401200,1, 0x401208,6, 0x401228,9, 0x401280,1, 0x401288,6, 0x4012a8,9, 0x401400,15, 0x401440,15, 0x401600,7, 0x401620,7, 0x401680,4, 0x40169c,11, 0x4016d0,2, 0x401800,27, 0x401880,4, 0x401898,3, 0x4019a4,1, 0x401a00,4, 0x401a20,4, 0x401a40,6, 0x401a80,4, 0x401aa0,4, 0x401ac0,6, 0x402000,16, 0x402060,7, 0x402080,16, 0x4020e0,7, 0x402200,19, 0x402280,19, 0x402400,14, 0x40243c,9, 0x402464,6, 0x402480,7, 0x4024a0,2, 0x4024ac,2, 0x402500,14, 0x40253c,9, 0x402564,6, 0x402580,7, 0x4025a0,2, 0x4025ac,2, 0x402800,19, 0x402880,19, 0x402b00,1, 0x402b20,1, 0x402b28,4, 0x402b40,1, 0x402b60,1, 0x402b68,4, 0x402c00,7, 0x402c20,1, 0x402c54,18, 0x402ca0,1, 0x402cd4,11, 0x402e00,8, 0x403000,16, 0x403100,7, 0x403120,7, 0x403180,3, 0x404000,4, 0x404014,1, 0x404020,3, 0x404030,3, 0x404040,5, 0x404064,5, 0x40407c,2, 0x4040a0,28, 0x404114,1, 0x404120,3, 0x404130,3, 0x404140,5, 0x404164,5, 0x40417c,2, 0x4041a0,28, 0x404214,1, 0x404220,3, 0x404230,3, 0x404240,5, 0x404264,5, 0x40427c,2, 0x4042a0,28, 0x404314,1, 0x404320,3, 0x404330,3, 0x404340,5, 0x404364,5, 0x40437c,2, 0x4043a0,24, 0x4045c0,1, 0x404600,1, 0x404608,3, 0x404618,2, 0x404800,18, 0x404880,10, 0x4048ac,2, 0x4048f0,3, 0x404900,18, 0x404980,10, 0x4049ac,2, 0x4049f0,3, 0x404c00,18, 0x404c50,2, 0x404c60,6, 0x404c80,18, 0x404cd0,2, 0x404ce0,6, 0x404e00,4, 0x404e20,4, 0x404e80,16, 0x404f00,5, 0x404f20,5, 0x405000,12, 0x405200,1, 0x405208,6, 0x405228,9, 0x405280,1, 0x405288,6, 0x4052a8,9, 0x405400,15, 0x405440,15, 0x405600,7, 0x405620,7, 0x405680,4, 0x40569c,11, 0x4056d0,2, 0x405800,27, 0x405880,4, 0x405898,3, 0x4059a4,1, 0x405a00,4, 0x405a20,4, 0x405a40,6, 0x405a80,4, 0x405aa0,4, 0x405ac0,6, 0x406000,16, 0x406060,7, 0x406080,16, 0x4060e0,7, 0x406200,19, 0x406280,19, 0x406400,14, 0x40643c,9, 0x406464,6, 0x406480,7, 0x4064a0,2, 0x4064ac,2, 0x406500,14, 0x40653c,9, 0x406564,6, 0x406580,7, 0x4065a0,2, 0x4065ac,2, 0x406800,19, 0x406880,19, 0x406b00,1, 0x406b20,1, 0x406b28,4, 0x406b40,1, 0x406b60,1, 0x406b68,4, 0x406c00,7, 0x406c20,1, 0x406c54,18, 0x406ca0,1, 0x406cd4,11, 0x406e00,8, 0x407000,16, 0x407100,7, 0x407120,7, 0x407180,3, 0x40c000,22, 0x40c060,6, 0x40c080,11, 0x40c100,11, 0x40c204,1, 0x40c224,21, 0x40c280,16, 0x40d000,8, 0x40d024,10, 0x40d050,22, 0x40d100,8, 0x40d124,10, 0x40d150,22, 0x40d200,8, 0x40d224,10, 0x40d250,22, 0x40d300,8, 0x40d324,10, 0x40d350,22, 0x40d400,8, 0x40d424,10, 0x40d450,22, 0x40d500,8, 0x40d524,10, 0x40d550,22, 0x40d600,8, 0x40d624,10, 0x40d650,22, 0x40d700,8, 0x40d724,10, 0x40d750,22, 0x40d800,8, 0x40d824,10, 0x40d850,22, 0x40d904,1, 0x40d914,10, 0x40d948,11, 0x40d980,1, 0x40da00,6, 0x40da20,2, 0x40da2c,2, 0x40e800,1, 0x40e808,3, 0x40e838,1, 0x40e844,1, 0x40e850,2, 0x40e860,8, 0x40e900,13, 0x40e940,19, 0x40e990,4, 0x40f000,35, 0x40fc00,10, 0x40fc80,3, 0x40fcc0,1, 0x410000,13, 0x410040,2, 0x410054,4, 0x410080,27, 0x410100,12, 0x410140,11, 0x410170,2, 0x410180,28, 0x410200,6, 0x410240,6, 0x41025c,3, 0x410280,5, 0x4102a0,8, 0x410400,14, 0x410440,14, 0x410480,14, 0x4104c0,14, 0x410540,3, 0x410600,7, 0x410620,14, 0x410680,5, 0x4106a0,7, 0x410800,13, 0x410840,2, 0x410854,4, 0x410880,27, 0x410900,12, 0x410940,11, 0x410970,2, 0x410980,28, 0x410a00,6, 0x410a40,6, 0x410a5c,3, 0x410a80,5, 0x410aa0,8, 0x410c00,14, 0x410c40,14, 0x410c80,14, 0x410cc0,14, 0x410d40,3, 0x410e00,7, 0x410e20,14, 0x410e80,5, 0x410ea0,7, 0x411000,13, 0x411040,2, 0x411054,4, 0x411080,27, 0x411100,12, 0x411140,11, 0x411170,2, 0x411180,28, 0x411200,6, 0x411240,6, 0x41125c,3, 0x411280,5, 0x4112a0,8, 0x411400,14, 0x411440,14, 0x411480,14, 0x4114c0,14, 0x411540,3, 0x411600,7, 0x411620,14, 0x411680,5, 0x4116a0,7, 0x411800,13, 0x411840,2, 0x411854,4, 0x411880,27, 0x411900,12, 0x411940,11, 0x411970,2, 0x411980,28, 0x411a00,6, 0x411a40,6, 0x411a5c,3, 0x411a80,5, 0x411aa0,8, 0x411c00,14, 0x411c40,14, 0x411c80,14, 0x411cc0,14, 0x411d40,3, 0x411e00,7, 0x411e20,14, 0x411e80,5, 0x411ea0,7, 0x412000,8, 0x412040,8, 0x412080,1, 0x412098,6, 0x412100,10, 0x412140,3, 0x412150,2, 0x412180,2, 0x412200,6, 0x412220,17, 0x412280,4, 0x412300,8, 0x412400,2, 0x412480,2, 0x413000,40, 0x413100,64, 0x414000,13, 0x414040,2, 0x414054,4, 0x414080,27, 0x414100,12, 0x414140,11, 0x414170,2, 0x414180,28, 0x414200,6, 0x414240,6, 0x41425c,3, 0x414280,5, 0x4142a0,8, 0x414400,14, 0x414440,14, 0x414480,14, 0x4144c0,14, 0x414540,3, 0x414600,7, 0x414620,14, 0x414680,5, 0x4146a0,7, 0x414800,13, 0x414840,2, 0x414854,4, 0x414880,27, 0x414900,12, 0x414940,11, 0x414970,2, 0x414980,28, 0x414a00,6, 0x414a40,6, 0x414a5c,3, 0x414a80,5, 0x414aa0,8, 0x414c00,14, 0x414c40,14, 0x414c80,14, 0x414cc0,14, 0x414d40,3, 0x414e00,7, 0x414e20,14, 0x414e80,5, 0x414ea0,7, 0x415000,13, 0x415040,2, 0x415054,4, 0x415080,27, 0x415100,12, 0x415140,11, 0x415170,2, 0x415180,28, 0x415200,6, 0x415240,6, 0x41525c,3, 0x415280,5, 0x4152a0,8, 0x415400,14, 0x415440,14, 0x415480,14, 0x4154c0,14, 0x415540,3, 0x415600,7, 0x415620,14, 0x415680,5, 0x4156a0,7, 0x415800,13, 0x415840,2, 0x415854,4, 0x415880,27, 0x415900,12, 0x415940,11, 0x415970,2, 0x415980,28, 0x415a00,6, 0x415a40,6, 0x415a5c,3, 0x415a80,5, 0x415aa0,8, 0x415c00,14, 0x415c40,14, 0x415c80,14, 0x415cc0,14, 0x415d40,3, 0x415e00,7, 0x415e20,14, 0x415e80,5, 0x415ea0,7, 0x416000,8, 0x416040,8, 0x416080,1, 0x416098,6, 0x416100,10, 0x416140,3, 0x416150,2, 0x416180,2, 0x416200,6, 0x416220,17, 0x416280,4, 0x416300,8, 0x416400,2, 0x416480,2, 0x417000,40, 0x417100,64, 0x420000,11, 0x420040,11, 0x420070,3, 0x420084,5, 0x4200a4,5, 0x420200,7, 0x420220,6, 0x420240,7, 0x420260,6, 0x420280,6, 0x4202a0,2, 0x4202ac,2, 0x4202c0,7, 0x4202e0,7, 0x420300,2, 0x42030c,2, 0x420320,6, 0x421000,19, 0x422000,25, 0x422070,6, 0x42208c,1, 0x422094,1, 0x42209c,8, 0x422104,23, 0x422180,7, 0x4221a0,6, 0x4221c0,7, 0x4221e0,6, 0x422400,61, 0x422500,25, 0x422568,4, 0x422580,2, 0x4225a0,1, 0x4225c0,11, 0x422600,9, 0x422640,3, 0x422650,3, 0x422664,3, 0x422680,22, 0x422700,17, 0x422800,11, 0x423000,594, 0x424000,25, 0x424070,6, 0x42408c,1, 0x424094,1, 0x42409c,8, 0x424104,23, 0x424180,7, 0x4241a0,6, 0x4241c0,7, 0x4241e0,6, 0x424400,61, 0x424500,25, 0x424568,4, 0x424580,2, 0x4245a0,1, 0x4245c0,11, 0x424600,9, 0x424640,3, 0x424650,3, 0x424664,3, 0x424680,22, 0x424700,17, 0x424800,11, 0x425000,594, 0x42a000,25, 0x42a070,6, 0x42a08c,1, 0x42a094,1, 0x42a09c,8, 0x42a104,23, 0x42a180,7, 0x42a1a0,6, 0x42a1c0,7, 0x42a1e0,6, 0x42a400,61, 0x42a500,25, 0x42a568,4, 0x42a580,2, 0x42a5a0,1, 0x42a5c0,11, 0x42a600,9, 0x42a640,3, 0x42a650,3, 0x42a664,3, 0x42a680,22, 0x42a700,17, 0x42a800,11, 0x42b000,594, 0x42c000,25, 0x42c070,6, 0x42c08c,1, 0x42c094,1, 0x42c09c,8, 0x42c104,23, 0x42c180,7, 0x42c1a0,6, 0x42c1c0,7, 0x42c1e0,6, 0x42c400,61, 0x42c500,25, 0x42c568,4, 0x42c580,2, 0x42c5a0,1, 0x42c5c0,11, 0x42c600,9, 0x42c640,3, 0x42c650,3, 0x42c664,3, 0x42c680,22, 0x42c700,17, 0x42c800,11, 0x42d000,594, 0x43f000,7, 0x43f048,7, 0x43f080,8, 0x43f100,7, 0x43f148,7, 0x43f180,8, 0x43f400,7, 0x43f448,7, 0x43f480,8, 0x43f500,7, 0x43f548,7, 0x43f580,8, 0x440000,31, 0x440080,31, 0x440100,31, 0x440180,31, 0x440200,31, 0x440280,31, 0x440300,31, 0x440380,31, 0x440400,64, 0x440504,5, 0x440520,1, 0x440600,6, 0x440620,6, 0x440640,6, 0x440660,6, 0x440680,6, 0x4406a0,6, 0x4406c0,6, 0x4406e0,6, 0x440700,4, 0x440720,3, 0x440730,3, 0x440760,3, 0x440770,1, 0x440780,5, 0x440800,31, 0x440880,31, 0x440900,31, 0x440980,31, 0x440a00,31, 0x440a80,31, 0x440b00,31, 0x440b80,31, 0x440c00,64, 0x440d04,5, 0x440d20,1, 0x440e00,6, 0x440e20,6, 0x440e40,6, 0x440e60,6, 0x440e80,6, 0x440ea0,6, 0x440ec0,6, 0x440ee0,6, 0x440f00,4, 0x440f20,3, 0x440f30,3, 0x440f60,3, 0x440f70,1, 0x440f80,5, 0x441000,11, 0x441040,11, 0x441080,11, 0x4410c0,11, 0x441100,21, 0x441160,5, 0x441180,3, 0x441190,3, 0x4411a0,11, 0x4411d0,3, 0x4411e0,3, 0x441200,86, 0x441400,5, 0x44141c,1, 0x441440,6, 0x441460,1, 0x441480,3, 0x441490,1, 0x441800,11, 0x441840,11, 0x441880,11, 0x4418c0,11, 0x441900,21, 0x441960,5, 0x441980,3, 0x441990,3, 0x4419a0,11, 0x4419d0,3, 0x4419e0,3, 0x441a00,86, 0x441c00,5, 0x441c1c,1, 0x441c40,6, 0x441c60,1, 0x441c80,3, 0x441c90,1, 0x442000,32, 0x442084,1, 0x442094,3, 0x4420c4,3, 0x442100,1, 0x44210c,3, 0x442120,3, 0x442140,1, 0x442150,9, 0x442180,2, 0x4421a4,1, 0x4421b4,8, 0x442200,20, 0x442260,6, 0x442280,4, 0x4422a0,6, 0x443000,31, 0x443080,31, 0x443100,31, 0x443180,31, 0x443200,31, 0x443280,31, 0x443300,31, 0x443380,31, 0x443400,64, 0x443504,5, 0x443520,1, 0x443600,6, 0x443620,6, 0x443640,6, 0x443660,6, 0x443680,6, 0x4436a0,6, 0x4436c0,6, 0x4436e0,6, 0x443700,4, 0x443720,3, 0x443730,3, 0x443760,3, 0x443770,1, 0x443780,5, 0x443800,31, 0x443880,31, 0x443900,31, 0x443980,31, 0x443a00,31, 0x443a80,31, 0x443b00,31, 0x443b80,31, 0x443c00,64, 0x443d04,5, 0x443d20,1, 0x443e00,6, 0x443e20,6, 0x443e40,6, 0x443e60,6, 0x443e80,6, 0x443ea0,6, 0x443ec0,6, 0x443ee0,6, 0x443f00,4, 0x443f20,3, 0x443f30,3, 0x443f60,3, 0x443f70,1, 0x443f80,5, 0x444000,11, 0x444040,11, 0x444080,11, 0x4440c0,11, 0x444100,21, 0x444160,5, 0x444180,3, 0x444190,3, 0x4441a0,11, 0x4441d0,3, 0x4441e0,3, 0x444200,86, 0x444400,5, 0x44441c,1, 0x444440,6, 0x444460,1, 0x444480,3, 0x444490,1, 0x444800,11, 0x444840,11, 0x444880,11, 0x4448c0,11, 0x444900,21, 0x444960,5, 0x444980,3, 0x444990,3, 0x4449a0,11, 0x4449d0,3, 0x4449e0,3, 0x444a00,86, 0x444c00,5, 0x444c1c,1, 0x444c40,6, 0x444c60,1, 0x444c80,3, 0x444c90,1, 0x445000,32, 0x445084,1, 0x445094,3, 0x4450c4,3, 0x445100,1, 0x44510c,3, 0x445120,3, 0x445140,1, 0x445150,9, 0x445180,2, 0x4451a4,1, 0x4451b4,8, 0x445200,20, 0x445260,6, 0x445280,4, 0x4452a0,6, 0x446100,1, 0x44610c,4, 0x446120,16, 0x446180,1, 0x446200,91, 0x446508,1, 0x446540,1, 0x447000,1, 0x447014,1, 0x44701c,2, 0x447034,1, 0x44703c,5, 0x447060,6, 0x447080,4, 0x4470a0,6, 0x4470c0,3, 0x4470d0,2, 0x447100,11, 0x447134,4, 0x447150,3, 0x447200,3, 0x447210,1, 0x447220,9, 0x447260,2, 0x447300,25, 0x449000,19, 0x450000,286, 0x450800,3, 0x450810,3, 0x450820,3, 0x450830,4, 0x450844,7, 0x451000,3, 0x451010,86, 0x451170,18, 0x451200,1, 0x451220,1, 0x451240,1, 0x451254,1, 0x45125c,4, 0x451270,1, 0x451278,1, 0x451400,3, 0x451410,86, 0x451570,20, 0x451604,1, 0x451640,48, 0x451704,1, 0x451710,5, 0x451740,6, 0x4518e0,12, 0x451920,4, 0x451a00,7, 0x451a20,37, 0x451b00,41, 0x451bb0,3, 0x451c00,25, 0x451c80,7, 0x451ca0,6, 0x451cc0,7, 0x451d00,7, 0x451d20,5, 0x451d40,10, 0x452000,286, 0x452800,3, 0x452810,3, 0x452820,3, 0x452830,4, 0x452844,7, 0x453000,3, 0x453010,86, 0x453170,18, 0x453200,1, 0x453220,1, 0x453240,1, 0x453254,1, 0x45325c,4, 0x453270,1, 0x453278,1, 0x453400,3, 0x453410,86, 0x453570,20, 0x453604,1, 0x453640,48, 0x453704,1, 0x453710,5, 0x453740,6, 0x4538e0,12, 0x453920,4, 0x453a00,7, 0x453a20,37, 0x453b00,41, 0x453bb0,3, 0x453c00,25, 0x453c80,7, 0x453ca0,6, 0x453cc0,7, 0x453d00,7, 0x453d20,5, 0x453d40,10, 0x454000,19, 0x455000,11, 0x455040,5, 0x455058,1, 0x455060,1, 0x460000,3, 0x460010,3, 0x460020,5, 0x460038,9, 0x460060,8, 0x460100,17, 0x460200,3, 0x460210,3, 0x460220,5, 0x460238,9, 0x460260,8, 0x460300,17, 0x460400,3, 0x460414,1, 0x46041c,33, 0x460540,33, 0x4605c8,12, 0x460800,2, 0x460844,1, 0x46084c,1, 0x460880,27, 0x460900,4, 0x460980,19, 0x460a00,4, 0x460a80,19, 0x460b00,1, 0x460b40,5, 0x460b60,5, 0x460b80,6, 0x460bb0,17, 0x460c00,13, 0x460c40,5, 0x460c80,12, 0x461000,3, 0x461010,3, 0x461020,5, 0x461038,9, 0x461060,8, 0x461100,17, 0x461200,3, 0x461210,3, 0x461220,5, 0x461238,9, 0x461260,8, 0x461300,17, 0x461400,3, 0x461414,1, 0x46141c,33, 0x461540,33, 0x4615c8,12, 0x461800,2, 0x461844,1, 0x46184c,1, 0x461880,27, 0x461900,4, 0x461980,19, 0x461a00,4, 0x461a80,19, 0x461b00,1, 0x461b40,5, 0x461b60,5, 0x461b80,6, 0x461bb0,17, 0x461c00,13, 0x461c40,5, 0x461c80,12, 0x462000,19, 0x462080,4, 0x463000,19, 0x464000,2, 0x46400c,5, 0x464028,3, 0x464038,3, 0x464050,1, 0x464080,13, 0x464120,4, 0x464140,1, 0x464400,26, 0x464470,3, 0x464580,10, 0x4645c0,8, 0x4645e8,2, 0x4645f4,2, 0x464600,5, 0x464618,1, 0x464620,1, 0x464628,1, 0x464630,2, 0x464640,2, 0x464650,2, 0x464690,4, 0x464740,2, 0x464800,2, 0x46480c,5, 0x464828,3, 0x464838,3, 0x464850,1, 0x464880,13, 0x464920,4, 0x464940,1, 0x464c00,26, 0x464c70,3, 0x464d80,10, 0x464dc0,8, 0x464de8,2, 0x464df4,2, 0x464e00,5, 0x464e18,1, 0x464e20,1, 0x464e28,1, 0x464e30,2, 0x464e40,2, 0x464e50,2, 0x464e90,4, 0x464f40,2, 0x465800,11, 0x465880,2, 0x4658b0,2, 0x466000,35, 0x466c00,10, 0x466c80,3, 0x480000,4, 0x480014,1, 0x480020,3, 0x480030,3, 0x480040,5, 0x480064,5, 0x48007c,2, 0x4800a0,28, 0x480114,1, 0x480120,3, 0x480130,3, 0x480140,5, 0x480164,5, 0x48017c,2, 0x4801a0,28, 0x480214,1, 0x480220,3, 0x480230,3, 0x480240,5, 0x480264,5, 0x48027c,2, 0x4802a0,28, 0x480314,1, 0x480320,3, 0x480330,3, 0x480340,5, 0x480364,5, 0x48037c,2, 0x4803a0,24, 0x4805c0,1, 0x480600,1, 0x480608,3, 0x480618,2, 0x480800,18, 0x480880,10, 0x4808ac,2, 0x4808f0,3, 0x480900,18, 0x480980,10, 0x4809ac,2, 0x4809f0,3, 0x480c00,18, 0x480c50,2, 0x480c60,6, 0x480c80,18, 0x480cd0,2, 0x480ce0,6, 0x480e00,4, 0x480e20,4, 0x480e80,16, 0x480f00,5, 0x480f20,5, 0x481000,12, 0x481200,1, 0x481208,6, 0x481228,9, 0x481280,1, 0x481288,6, 0x4812a8,9, 0x481400,15, 0x481440,15, 0x481600,7, 0x481620,7, 0x481680,4, 0x48169c,11, 0x4816d0,2, 0x481800,27, 0x481880,4, 0x481898,3, 0x4819a4,1, 0x481a00,4, 0x481a20,4, 0x481a40,6, 0x481a80,4, 0x481aa0,4, 0x481ac0,6, 0x482000,16, 0x482060,7, 0x482080,16, 0x4820e0,7, 0x482200,19, 0x482280,19, 0x482400,14, 0x48243c,9, 0x482464,6, 0x482480,7, 0x4824a0,2, 0x4824ac,2, 0x482500,14, 0x48253c,9, 0x482564,6, 0x482580,7, 0x4825a0,2, 0x4825ac,2, 0x482800,19, 0x482880,19, 0x482b00,1, 0x482b20,1, 0x482b28,4, 0x482b40,1, 0x482b60,1, 0x482b68,4, 0x482c00,7, 0x482c20,1, 0x482c54,18, 0x482ca0,1, 0x482cd4,11, 0x482e00,8, 0x483000,16, 0x483100,7, 0x483120,7, 0x483180,3, 0x484000,4, 0x484014,1, 0x484020,3, 0x484030,3, 0x484040,5, 0x484064,5, 0x48407c,2, 0x4840a0,28, 0x484114,1, 0x484120,3, 0x484130,3, 0x484140,5, 0x484164,5, 0x48417c,2, 0x4841a0,28, 0x484214,1, 0x484220,3, 0x484230,3, 0x484240,5, 0x484264,5, 0x48427c,2, 0x4842a0,28, 0x484314,1, 0x484320,3, 0x484330,3, 0x484340,5, 0x484364,5, 0x48437c,2, 0x4843a0,24, 0x4845c0,1, 0x484600,1, 0x484608,3, 0x484618,2, 0x484800,18, 0x484880,10, 0x4848ac,2, 0x4848f0,3, 0x484900,18, 0x484980,10, 0x4849ac,2, 0x4849f0,3, 0x484c00,18, 0x484c50,2, 0x484c60,6, 0x484c80,18, 0x484cd0,2, 0x484ce0,6, 0x484e00,4, 0x484e20,4, 0x484e80,16, 0x484f00,5, 0x484f20,5, 0x485000,12, 0x485200,1, 0x485208,6, 0x485228,9, 0x485280,1, 0x485288,6, 0x4852a8,9, 0x485400,15, 0x485440,15, 0x485600,7, 0x485620,7, 0x485680,4, 0x48569c,11, 0x4856d0,2, 0x485800,27, 0x485880,4, 0x485898,3, 0x4859a4,1, 0x485a00,4, 0x485a20,4, 0x485a40,6, 0x485a80,4, 0x485aa0,4, 0x485ac0,6, 0x486000,16, 0x486060,7, 0x486080,16, 0x4860e0,7, 0x486200,19, 0x486280,19, 0x486400,14, 0x48643c,9, 0x486464,6, 0x486480,7, 0x4864a0,2, 0x4864ac,2, 0x486500,14, 0x48653c,9, 0x486564,6, 0x486580,7, 0x4865a0,2, 0x4865ac,2, 0x486800,19, 0x486880,19, 0x486b00,1, 0x486b20,1, 0x486b28,4, 0x486b40,1, 0x486b60,1, 0x486b68,4, 0x486c00,7, 0x486c20,1, 0x486c54,18, 0x486ca0,1, 0x486cd4,11, 0x486e00,8, 0x487000,16, 0x487100,7, 0x487120,7, 0x487180,3, 0x48c000,22, 0x48c060,6, 0x48c080,11, 0x48c100,11, 0x48c204,1, 0x48c224,21, 0x48c280,16, 0x48d000,8, 0x48d024,10, 0x48d050,22, 0x48d100,8, 0x48d124,10, 0x48d150,22, 0x48d200,8, 0x48d224,10, 0x48d250,22, 0x48d300,8, 0x48d324,10, 0x48d350,22, 0x48d400,8, 0x48d424,10, 0x48d450,22, 0x48d500,8, 0x48d524,10, 0x48d550,22, 0x48d600,8, 0x48d624,10, 0x48d650,22, 0x48d700,8, 0x48d724,10, 0x48d750,22, 0x48d800,8, 0x48d824,10, 0x48d850,22, 0x48d904,1, 0x48d914,10, 0x48d948,11, 0x48d980,1, 0x48da00,6, 0x48da20,2, 0x48da2c,2, 0x48e800,1, 0x48e808,3, 0x48e838,1, 0x48e844,1, 0x48e850,2, 0x48e860,8, 0x48e900,13, 0x48e940,19, 0x48e990,4, 0x48f000,35, 0x48fc00,10, 0x48fc80,3, 0x48fcc0,1, 0x490000,13, 0x490040,2, 0x490054,4, 0x490080,27, 0x490100,12, 0x490140,11, 0x490170,2, 0x490180,28, 0x490200,6, 0x490240,6, 0x49025c,3, 0x490280,5, 0x4902a0,8, 0x490400,14, 0x490440,14, 0x490480,14, 0x4904c0,14, 0x490540,3, 0x490600,7, 0x490620,14, 0x490680,5, 0x4906a0,7, 0x490800,13, 0x490840,2, 0x490854,4, 0x490880,27, 0x490900,12, 0x490940,11, 0x490970,2, 0x490980,28, 0x490a00,6, 0x490a40,6, 0x490a5c,3, 0x490a80,5, 0x490aa0,8, 0x490c00,14, 0x490c40,14, 0x490c80,14, 0x490cc0,14, 0x490d40,3, 0x490e00,7, 0x490e20,14, 0x490e80,5, 0x490ea0,7, 0x491000,13, 0x491040,2, 0x491054,4, 0x491080,27, 0x491100,12, 0x491140,11, 0x491170,2, 0x491180,28, 0x491200,6, 0x491240,6, 0x49125c,3, 0x491280,5, 0x4912a0,8, 0x491400,14, 0x491440,14, 0x491480,14, 0x4914c0,14, 0x491540,3, 0x491600,7, 0x491620,14, 0x491680,5, 0x4916a0,7, 0x491800,13, 0x491840,2, 0x491854,4, 0x491880,27, 0x491900,12, 0x491940,11, 0x491970,2, 0x491980,28, 0x491a00,6, 0x491a40,6, 0x491a5c,3, 0x491a80,5, 0x491aa0,8, 0x491c00,14, 0x491c40,14, 0x491c80,14, 0x491cc0,14, 0x491d40,3, 0x491e00,7, 0x491e20,14, 0x491e80,5, 0x491ea0,7, 0x492000,8, 0x492040,8, 0x492080,1, 0x492098,6, 0x492100,10, 0x492140,3, 0x492150,2, 0x492180,2, 0x492200,6, 0x492220,17, 0x492280,4, 0x492300,8, 0x492400,2, 0x492480,2, 0x493000,40, 0x493100,64, 0x494000,13, 0x494040,2, 0x494054,4, 0x494080,27, 0x494100,12, 0x494140,11, 0x494170,2, 0x494180,28, 0x494200,6, 0x494240,6, 0x49425c,3, 0x494280,5, 0x4942a0,8, 0x494400,14, 0x494440,14, 0x494480,14, 0x4944c0,14, 0x494540,3, 0x494600,7, 0x494620,14, 0x494680,5, 0x4946a0,7, 0x494800,13, 0x494840,2, 0x494854,4, 0x494880,27, 0x494900,12, 0x494940,11, 0x494970,2, 0x494980,28, 0x494a00,6, 0x494a40,6, 0x494a5c,3, 0x494a80,5, 0x494aa0,8, 0x494c00,14, 0x494c40,14, 0x494c80,14, 0x494cc0,14, 0x494d40,3, 0x494e00,7, 0x494e20,14, 0x494e80,5, 0x494ea0,7, 0x495000,13, 0x495040,2, 0x495054,4, 0x495080,27, 0x495100,12, 0x495140,11, 0x495170,2, 0x495180,28, 0x495200,6, 0x495240,6, 0x49525c,3, 0x495280,5, 0x4952a0,8, 0x495400,14, 0x495440,14, 0x495480,14, 0x4954c0,14, 0x495540,3, 0x495600,7, 0x495620,14, 0x495680,5, 0x4956a0,7, 0x495800,13, 0x495840,2, 0x495854,4, 0x495880,27, 0x495900,12, 0x495940,11, 0x495970,2, 0x495980,28, 0x495a00,6, 0x495a40,6, 0x495a5c,3, 0x495a80,5, 0x495aa0,8, 0x495c00,14, 0x495c40,14, 0x495c80,14, 0x495cc0,14, 0x495d40,3, 0x495e00,7, 0x495e20,14, 0x495e80,5, 0x495ea0,7, 0x496000,8, 0x496040,8, 0x496080,1, 0x496098,6, 0x496100,10, 0x496140,3, 0x496150,2, 0x496180,2, 0x496200,6, 0x496220,17, 0x496280,4, 0x496300,8, 0x496400,2, 0x496480,2, 0x497000,40, 0x497100,64, 0x4a0000,11, 0x4a0040,11, 0x4a0070,3, 0x4a0084,5, 0x4a00a4,5, 0x4a0200,7, 0x4a0220,6, 0x4a0240,7, 0x4a0260,6, 0x4a0280,6, 0x4a02a0,2, 0x4a02ac,2, 0x4a02c0,7, 0x4a02e0,7, 0x4a0300,2, 0x4a030c,2, 0x4a0320,6, 0x4a1000,19, 0x4a2000,25, 0x4a2070,6, 0x4a208c,1, 0x4a2094,1, 0x4a209c,8, 0x4a2104,23, 0x4a2180,7, 0x4a21a0,6, 0x4a21c0,7, 0x4a21e0,6, 0x4a2400,61, 0x4a2500,25, 0x4a2568,4, 0x4a2580,2, 0x4a25a0,1, 0x4a25c0,11, 0x4a2600,9, 0x4a2640,3, 0x4a2650,3, 0x4a2664,3, 0x4a2680,22, 0x4a2700,17, 0x4a2800,11, 0x4a3000,594, 0x4a4000,25, 0x4a4070,6, 0x4a408c,1, 0x4a4094,1, 0x4a409c,8, 0x4a4104,23, 0x4a4180,7, 0x4a41a0,6, 0x4a41c0,7, 0x4a41e0,6, 0x4a4400,61, 0x4a4500,25, 0x4a4568,4, 0x4a4580,2, 0x4a45a0,1, 0x4a45c0,11, 0x4a4600,9, 0x4a4640,3, 0x4a4650,3, 0x4a4664,3, 0x4a4680,22, 0x4a4700,17, 0x4a4800,11, 0x4a5000,594, 0x4aa000,25, 0x4aa070,6, 0x4aa08c,1, 0x4aa094,1, 0x4aa09c,8, 0x4aa104,23, 0x4aa180,7, 0x4aa1a0,6, 0x4aa1c0,7, 0x4aa1e0,6, 0x4aa400,61, 0x4aa500,25, 0x4aa568,4, 0x4aa580,2, 0x4aa5a0,1, 0x4aa5c0,11, 0x4aa600,9, 0x4aa640,3, 0x4aa650,3, 0x4aa664,3, 0x4aa680,22, 0x4aa700,17, 0x4aa800,11, 0x4ab000,594, 0x4ac000,25, 0x4ac070,6, 0x4ac08c,1, 0x4ac094,1, 0x4ac09c,8, 0x4ac104,23, 0x4ac180,7, 0x4ac1a0,6, 0x4ac1c0,7, 0x4ac1e0,6, 0x4ac400,61, 0x4ac500,25, 0x4ac568,4, 0x4ac580,2, 0x4ac5a0,1, 0x4ac5c0,11, 0x4ac600,9, 0x4ac640,3, 0x4ac650,3, 0x4ac664,3, 0x4ac680,22, 0x4ac700,17, 0x4ac800,11, 0x4ad000,594, 0x4bf000,7, 0x4bf048,7, 0x4bf080,8, 0x4bf100,7, 0x4bf148,7, 0x4bf180,8, 0x4bf400,7, 0x4bf448,7, 0x4bf480,8, 0x4bf500,7, 0x4bf548,7, 0x4bf580,8, 0x4c0000,31, 0x4c0080,31, 0x4c0100,31, 0x4c0180,31, 0x4c0200,31, 0x4c0280,31, 0x4c0300,31, 0x4c0380,31, 0x4c0400,64, 0x4c0504,5, 0x4c0520,1, 0x4c0600,6, 0x4c0620,6, 0x4c0640,6, 0x4c0660,6, 0x4c0680,6, 0x4c06a0,6, 0x4c06c0,6, 0x4c06e0,6, 0x4c0700,4, 0x4c0720,3, 0x4c0730,3, 0x4c0760,3, 0x4c0770,1, 0x4c0780,5, 0x4c0800,31, 0x4c0880,31, 0x4c0900,31, 0x4c0980,31, 0x4c0a00,31, 0x4c0a80,31, 0x4c0b00,31, 0x4c0b80,31, 0x4c0c00,64, 0x4c0d04,5, 0x4c0d20,1, 0x4c0e00,6, 0x4c0e20,6, 0x4c0e40,6, 0x4c0e60,6, 0x4c0e80,6, 0x4c0ea0,6, 0x4c0ec0,6, 0x4c0ee0,6, 0x4c0f00,4, 0x4c0f20,3, 0x4c0f30,3, 0x4c0f60,3, 0x4c0f70,1, 0x4c0f80,5, 0x4c1000,11, 0x4c1040,11, 0x4c1080,11, 0x4c10c0,11, 0x4c1100,21, 0x4c1160,5, 0x4c1180,3, 0x4c1190,3, 0x4c11a0,11, 0x4c11d0,3, 0x4c11e0,3, 0x4c1200,86, 0x4c1400,5, 0x4c141c,1, 0x4c1440,6, 0x4c1460,1, 0x4c1480,3, 0x4c1490,1, 0x4c1800,11, 0x4c1840,11, 0x4c1880,11, 0x4c18c0,11, 0x4c1900,21, 0x4c1960,5, 0x4c1980,3, 0x4c1990,3, 0x4c19a0,11, 0x4c19d0,3, 0x4c19e0,3, 0x4c1a00,86, 0x4c1c00,5, 0x4c1c1c,1, 0x4c1c40,6, 0x4c1c60,1, 0x4c1c80,3, 0x4c1c90,1, 0x4c2000,32, 0x4c2084,1, 0x4c2094,3, 0x4c20c4,3, 0x4c2100,1, 0x4c210c,3, 0x4c2120,3, 0x4c2140,1, 0x4c2150,9, 0x4c2180,2, 0x4c21a4,1, 0x4c21b4,8, 0x4c2200,20, 0x4c2260,6, 0x4c2280,4, 0x4c22a0,6, 0x4c3000,31, 0x4c3080,31, 0x4c3100,31, 0x4c3180,31, 0x4c3200,31, 0x4c3280,31, 0x4c3300,31, 0x4c3380,31, 0x4c3400,64, 0x4c3504,5, 0x4c3520,1, 0x4c3600,6, 0x4c3620,6, 0x4c3640,6, 0x4c3660,6, 0x4c3680,6, 0x4c36a0,6, 0x4c36c0,6, 0x4c36e0,6, 0x4c3700,4, 0x4c3720,3, 0x4c3730,3, 0x4c3760,3, 0x4c3770,1, 0x4c3780,5, 0x4c3800,31, 0x4c3880,31, 0x4c3900,31, 0x4c3980,31, 0x4c3a00,31, 0x4c3a80,31, 0x4c3b00,31, 0x4c3b80,31, 0x4c3c00,64, 0x4c3d04,5, 0x4c3d20,1, 0x4c3e00,6, 0x4c3e20,6, 0x4c3e40,6, 0x4c3e60,6, 0x4c3e80,6, 0x4c3ea0,6, 0x4c3ec0,6, 0x4c3ee0,6, 0x4c3f00,4, 0x4c3f20,3, 0x4c3f30,3, 0x4c3f60,3, 0x4c3f70,1, 0x4c3f80,5, 0x4c4000,11, 0x4c4040,11, 0x4c4080,11, 0x4c40c0,11, 0x4c4100,21, 0x4c4160,5, 0x4c4180,3, 0x4c4190,3, 0x4c41a0,11, 0x4c41d0,3, 0x4c41e0,3, 0x4c4200,86, 0x4c4400,5, 0x4c441c,1, 0x4c4440,6, 0x4c4460,1, 0x4c4480,3, 0x4c4490,1, 0x4c4800,11, 0x4c4840,11, 0x4c4880,11, 0x4c48c0,11, 0x4c4900,21, 0x4c4960,5, 0x4c4980,3, 0x4c4990,3, 0x4c49a0,11, 0x4c49d0,3, 0x4c49e0,3, 0x4c4a00,86, 0x4c4c00,5, 0x4c4c1c,1, 0x4c4c40,6, 0x4c4c60,1, 0x4c4c80,3, 0x4c4c90,1, 0x4c5000,32, 0x4c5084,1, 0x4c5094,3, 0x4c50c4,3, 0x4c5100,1, 0x4c510c,3, 0x4c5120,3, 0x4c5140,1, 0x4c5150,9, 0x4c5180,2, 0x4c51a4,1, 0x4c51b4,8, 0x4c5200,20, 0x4c5260,6, 0x4c5280,4, 0x4c52a0,6, 0x4c6100,1, 0x4c610c,4, 0x4c6120,16, 0x4c6180,1, 0x4c6200,91, 0x4c6508,1, 0x4c6540,1, 0x4c7000,1, 0x4c7014,1, 0x4c701c,2, 0x4c7034,1, 0x4c703c,5, 0x4c7060,6, 0x4c7080,4, 0x4c70a0,6, 0x4c70c0,3, 0x4c70d0,2, 0x4c7100,11, 0x4c7134,4, 0x4c7150,3, 0x4c7200,3, 0x4c7210,1, 0x4c7220,9, 0x4c7260,2, 0x4c7300,25, 0x4c9000,19, 0x4d0000,286, 0x4d0800,3, 0x4d0810,3, 0x4d0820,3, 0x4d0830,4, 0x4d0844,7, 0x4d1000,3, 0x4d1010,86, 0x4d1170,18, 0x4d1200,1, 0x4d1220,1, 0x4d1240,1, 0x4d1254,1, 0x4d125c,4, 0x4d1270,1, 0x4d1278,1, 0x4d1400,3, 0x4d1410,86, 0x4d1570,20, 0x4d1604,1, 0x4d1640,48, 0x4d1704,1, 0x4d1710,5, 0x4d1740,6, 0x4d18e0,12, 0x4d1920,4, 0x4d1a00,7, 0x4d1a20,37, 0x4d1b00,41, 0x4d1bb0,3, 0x4d1c00,25, 0x4d1c80,7, 0x4d1ca0,6, 0x4d1cc0,7, 0x4d1d00,7, 0x4d1d20,5, 0x4d1d40,10, 0x4d2000,286, 0x4d2800,3, 0x4d2810,3, 0x4d2820,3, 0x4d2830,4, 0x4d2844,7, 0x4d3000,3, 0x4d3010,86, 0x4d3170,18, 0x4d3200,1, 0x4d3220,1, 0x4d3240,1, 0x4d3254,1, 0x4d325c,4, 0x4d3270,1, 0x4d3278,1, 0x4d3400,3, 0x4d3410,86, 0x4d3570,20, 0x4d3604,1, 0x4d3640,48, 0x4d3704,1, 0x4d3710,5, 0x4d3740,6, 0x4d38e0,12, 0x4d3920,4, 0x4d3a00,7, 0x4d3a20,37, 0x4d3b00,41, 0x4d3bb0,3, 0x4d3c00,25, 0x4d3c80,7, 0x4d3ca0,6, 0x4d3cc0,7, 0x4d3d00,7, 0x4d3d20,5, 0x4d3d40,10, 0x4d4000,19, 0x4d5000,11, 0x4d5040,5, 0x4d5058,1, 0x4d5060,1, 0x4e0000,3, 0x4e0010,3, 0x4e0020,5, 0x4e0038,9, 0x4e0060,8, 0x4e0100,17, 0x4e0200,3, 0x4e0210,3, 0x4e0220,5, 0x4e0238,9, 0x4e0260,8, 0x4e0300,17, 0x4e0400,3, 0x4e0414,1, 0x4e041c,33, 0x4e0540,33, 0x4e05c8,12, 0x4e0800,2, 0x4e0844,1, 0x4e084c,1, 0x4e0880,27, 0x4e0900,4, 0x4e0980,19, 0x4e0a00,4, 0x4e0a80,19, 0x4e0b00,1, 0x4e0b40,5, 0x4e0b60,5, 0x4e0b80,6, 0x4e0bb0,17, 0x4e0c00,13, 0x4e0c40,5, 0x4e0c80,12, 0x4e1000,3, 0x4e1010,3, 0x4e1020,5, 0x4e1038,9, 0x4e1060,8, 0x4e1100,17, 0x4e1200,3, 0x4e1210,3, 0x4e1220,5, 0x4e1238,9, 0x4e1260,8, 0x4e1300,17, 0x4e1400,3, 0x4e1414,1, 0x4e141c,33, 0x4e1540,33, 0x4e15c8,12, 0x4e1800,2, 0x4e1844,1, 0x4e184c,1, 0x4e1880,27, 0x4e1900,4, 0x4e1980,19, 0x4e1a00,4, 0x4e1a80,19, 0x4e1b00,1, 0x4e1b40,5, 0x4e1b60,5, 0x4e1b80,6, 0x4e1bb0,17, 0x4e1c00,13, 0x4e1c40,5, 0x4e1c80,12, 0x4e2000,19, 0x4e2080,4, 0x4e3000,19, 0x4e4000,2, 0x4e400c,5, 0x4e4028,3, 0x4e4038,3, 0x4e4050,1, 0x4e4080,13, 0x4e4120,4, 0x4e4140,1, 0x4e4400,26, 0x4e4470,3, 0x4e4580,10, 0x4e45c0,8, 0x4e45e8,2, 0x4e45f4,2, 0x4e4600,5, 0x4e4618,1, 0x4e4620,1, 0x4e4628,1, 0x4e4630,2, 0x4e4640,2, 0x4e4650,2, 0x4e4690,4, 0x4e4740,2, 0x4e4800,2, 0x4e480c,5, 0x4e4828,3, 0x4e4838,3, 0x4e4850,1, 0x4e4880,13, 0x4e4920,4, 0x4e4940,1, 0x4e4c00,26, 0x4e4c70,3, 0x4e4d80,10, 0x4e4dc0,8, 0x4e4de8,2, 0x4e4df4,2, 0x4e4e00,5, 0x4e4e18,1, 0x4e4e20,1, 0x4e4e28,1, 0x4e4e30,2, 0x4e4e40,2, 0x4e4e50,2, 0x4e4e90,4, 0x4e4f40,2, 0x4e5800,11, 0x4e5880,2, 0x4e58b0,2, 0x4e6000,35, 0x4e6c00,10, 0x4e6c80,3, 0x500000,4, 0x500014,1, 0x500020,3, 0x500030,3, 0x500040,5, 0x500064,5, 0x50007c,2, 0x5000a0,28, 0x500114,1, 0x500120,3, 0x500130,3, 0x500140,5, 0x500164,5, 0x50017c,2, 0x5001a0,28, 0x500214,1, 0x500220,3, 0x500230,3, 0x500240,5, 0x500264,5, 0x50027c,2, 0x5002a0,28, 0x500314,1, 0x500320,3, 0x500330,3, 0x500340,5, 0x500364,5, 0x50037c,2, 0x5003a0,24, 0x5005c0,1, 0x500600,1, 0x500608,3, 0x500618,2, 0x500800,18, 0x500880,10, 0x5008ac,2, 0x5008f0,3, 0x500900,18, 0x500980,10, 0x5009ac,2, 0x5009f0,3, 0x500c00,18, 0x500c50,2, 0x500c60,6, 0x500c80,18, 0x500cd0,2, 0x500ce0,6, 0x500e00,4, 0x500e20,4, 0x500e80,16, 0x500f00,5, 0x500f20,5, 0x501000,12, 0x501200,1, 0x501208,6, 0x501228,9, 0x501280,1, 0x501288,6, 0x5012a8,9, 0x501400,15, 0x501440,15, 0x501600,7, 0x501620,7, 0x501680,4, 0x50169c,11, 0x5016d0,2, 0x501800,27, 0x501880,4, 0x501898,3, 0x5019a4,1, 0x501a00,4, 0x501a20,4, 0x501a40,6, 0x501a80,4, 0x501aa0,4, 0x501ac0,6, 0x502000,16, 0x502060,7, 0x502080,16, 0x5020e0,7, 0x502200,19, 0x502280,19, 0x502400,14, 0x50243c,9, 0x502464,6, 0x502480,7, 0x5024a0,2, 0x5024ac,2, 0x502500,14, 0x50253c,9, 0x502564,6, 0x502580,7, 0x5025a0,2, 0x5025ac,2, 0x502800,19, 0x502880,19, 0x502b00,1, 0x502b20,1, 0x502b28,4, 0x502b40,1, 0x502b60,1, 0x502b68,4, 0x502c00,7, 0x502c20,1, 0x502c54,18, 0x502ca0,1, 0x502cd4,11, 0x502e00,8, 0x503000,16, 0x503100,7, 0x503120,7, 0x503180,3, 0x504000,4, 0x504014,1, 0x504020,3, 0x504030,3, 0x504040,5, 0x504064,5, 0x50407c,2, 0x5040a0,28, 0x504114,1, 0x504120,3, 0x504130,3, 0x504140,5, 0x504164,5, 0x50417c,2, 0x5041a0,28, 0x504214,1, 0x504220,3, 0x504230,3, 0x504240,5, 0x504264,5, 0x50427c,2, 0x5042a0,28, 0x504314,1, 0x504320,3, 0x504330,3, 0x504340,5, 0x504364,5, 0x50437c,2, 0x5043a0,24, 0x5045c0,1, 0x504600,1, 0x504608,3, 0x504618,2, 0x504800,18, 0x504880,10, 0x5048ac,2, 0x5048f0,3, 0x504900,18, 0x504980,10, 0x5049ac,2, 0x5049f0,3, 0x504c00,18, 0x504c50,2, 0x504c60,6, 0x504c80,18, 0x504cd0,2, 0x504ce0,6, 0x504e00,4, 0x504e20,4, 0x504e80,16, 0x504f00,5, 0x504f20,5, 0x505000,12, 0x505200,1, 0x505208,6, 0x505228,9, 0x505280,1, 0x505288,6, 0x5052a8,9, 0x505400,15, 0x505440,15, 0x505600,7, 0x505620,7, 0x505680,4, 0x50569c,11, 0x5056d0,2, 0x505800,27, 0x505880,4, 0x505898,3, 0x5059a4,1, 0x505a00,4, 0x505a20,4, 0x505a40,6, 0x505a80,4, 0x505aa0,4, 0x505ac0,6, 0x506000,16, 0x506060,7, 0x506080,16, 0x5060e0,7, 0x506200,19, 0x506280,19, 0x506400,14, 0x50643c,9, 0x506464,6, 0x506480,7, 0x5064a0,2, 0x5064ac,2, 0x506500,14, 0x50653c,9, 0x506564,6, 0x506580,7, 0x5065a0,2, 0x5065ac,2, 0x506800,19, 0x506880,19, 0x506b00,1, 0x506b20,1, 0x506b28,4, 0x506b40,1, 0x506b60,1, 0x506b68,4, 0x506c00,7, 0x506c20,1, 0x506c54,18, 0x506ca0,1, 0x506cd4,11, 0x506e00,8, 0x507000,16, 0x507100,7, 0x507120,7, 0x507180,3, 0x50c000,22, 0x50c060,6, 0x50c080,11, 0x50c100,11, 0x50c204,1, 0x50c224,21, 0x50c280,16, 0x50d000,8, 0x50d024,10, 0x50d050,22, 0x50d100,8, 0x50d124,10, 0x50d150,22, 0x50d200,8, 0x50d224,10, 0x50d250,22, 0x50d300,8, 0x50d324,10, 0x50d350,22, 0x50d400,8, 0x50d424,10, 0x50d450,22, 0x50d500,8, 0x50d524,10, 0x50d550,22, 0x50d600,8, 0x50d624,10, 0x50d650,22, 0x50d700,8, 0x50d724,10, 0x50d750,22, 0x50d800,8, 0x50d824,10, 0x50d850,22, 0x50d904,1, 0x50d914,10, 0x50d948,11, 0x50d980,1, 0x50da00,6, 0x50da20,2, 0x50da2c,2, 0x50e800,1, 0x50e808,3, 0x50e838,1, 0x50e844,1, 0x50e850,2, 0x50e860,8, 0x50e900,13, 0x50e940,19, 0x50e990,4, 0x50f000,35, 0x50fc00,10, 0x50fc80,3, 0x50fcc0,1, 0x510000,13, 0x510040,2, 0x510054,4, 0x510080,27, 0x510100,12, 0x510140,11, 0x510170,2, 0x510180,28, 0x510200,6, 0x510240,6, 0x51025c,3, 0x510280,5, 0x5102a0,8, 0x510400,14, 0x510440,14, 0x510480,14, 0x5104c0,14, 0x510540,3, 0x510600,7, 0x510620,14, 0x510680,5, 0x5106a0,7, 0x510800,13, 0x510840,2, 0x510854,4, 0x510880,27, 0x510900,12, 0x510940,11, 0x510970,2, 0x510980,28, 0x510a00,6, 0x510a40,6, 0x510a5c,3, 0x510a80,5, 0x510aa0,8, 0x510c00,14, 0x510c40,14, 0x510c80,14, 0x510cc0,14, 0x510d40,3, 0x510e00,7, 0x510e20,14, 0x510e80,5, 0x510ea0,7, 0x511000,13, 0x511040,2, 0x511054,4, 0x511080,27, 0x511100,12, 0x511140,11, 0x511170,2, 0x511180,28, 0x511200,6, 0x511240,6, 0x51125c,3, 0x511280,5, 0x5112a0,8, 0x511400,14, 0x511440,14, 0x511480,14, 0x5114c0,14, 0x511540,3, 0x511600,7, 0x511620,14, 0x511680,5, 0x5116a0,7, 0x511800,13, 0x511840,2, 0x511854,4, 0x511880,27, 0x511900,12, 0x511940,11, 0x511970,2, 0x511980,28, 0x511a00,6, 0x511a40,6, 0x511a5c,3, 0x511a80,5, 0x511aa0,8, 0x511c00,14, 0x511c40,14, 0x511c80,14, 0x511cc0,14, 0x511d40,3, 0x511e00,7, 0x511e20,14, 0x511e80,5, 0x511ea0,7, 0x512000,8, 0x512040,8, 0x512080,1, 0x512098,6, 0x512100,10, 0x512140,3, 0x512150,2, 0x512180,2, 0x512200,6, 0x512220,17, 0x512280,4, 0x512300,8, 0x512400,2, 0x512480,2, 0x513000,40, 0x513100,64, 0x514000,13, 0x514040,2, 0x514054,4, 0x514080,27, 0x514100,12, 0x514140,11, 0x514170,2, 0x514180,28, 0x514200,6, 0x514240,6, 0x51425c,3, 0x514280,5, 0x5142a0,8, 0x514400,14, 0x514440,14, 0x514480,14, 0x5144c0,14, 0x514540,3, 0x514600,7, 0x514620,14, 0x514680,5, 0x5146a0,7, 0x514800,13, 0x514840,2, 0x514854,4, 0x514880,27, 0x514900,12, 0x514940,11, 0x514970,2, 0x514980,28, 0x514a00,6, 0x514a40,6, 0x514a5c,3, 0x514a80,5, 0x514aa0,8, 0x514c00,14, 0x514c40,14, 0x514c80,14, 0x514cc0,14, 0x514d40,3, 0x514e00,7, 0x514e20,14, 0x514e80,5, 0x514ea0,7, 0x515000,13, 0x515040,2, 0x515054,4, 0x515080,27, 0x515100,12, 0x515140,11, 0x515170,2, 0x515180,28, 0x515200,6, 0x515240,6, 0x51525c,3, 0x515280,5, 0x5152a0,8, 0x515400,14, 0x515440,14, 0x515480,14, 0x5154c0,14, 0x515540,3, 0x515600,7, 0x515620,14, 0x515680,5, 0x5156a0,7, 0x515800,13, 0x515840,2, 0x515854,4, 0x515880,27, 0x515900,12, 0x515940,11, 0x515970,2, 0x515980,28, 0x515a00,6, 0x515a40,6, 0x515a5c,3, 0x515a80,5, 0x515aa0,8, 0x515c00,14, 0x515c40,14, 0x515c80,14, 0x515cc0,14, 0x515d40,3, 0x515e00,7, 0x515e20,14, 0x515e80,5, 0x515ea0,7, 0x516000,8, 0x516040,8, 0x516080,1, 0x516098,6, 0x516100,10, 0x516140,3, 0x516150,2, 0x516180,2, 0x516200,6, 0x516220,17, 0x516280,4, 0x516300,8, 0x516400,2, 0x516480,2, 0x517000,40, 0x517100,64, 0x520000,11, 0x520040,11, 0x520070,3, 0x520084,5, 0x5200a4,5, 0x520200,7, 0x520220,6, 0x520240,7, 0x520260,6, 0x520280,6, 0x5202a0,2, 0x5202ac,2, 0x5202c0,7, 0x5202e0,7, 0x520300,2, 0x52030c,2, 0x520320,6, 0x521000,19, 0x522000,25, 0x522070,6, 0x52208c,1, 0x522094,1, 0x52209c,8, 0x522104,23, 0x522180,7, 0x5221a0,6, 0x5221c0,7, 0x5221e0,6, 0x522400,61, 0x522500,25, 0x522568,4, 0x522580,2, 0x5225a0,1, 0x5225c0,11, 0x522600,9, 0x522640,3, 0x522650,3, 0x522664,3, 0x522680,22, 0x522700,17, 0x522800,11, 0x523000,594, 0x524000,25, 0x524070,6, 0x52408c,1, 0x524094,1, 0x52409c,8, 0x524104,23, 0x524180,7, 0x5241a0,6, 0x5241c0,7, 0x5241e0,6, 0x524400,61, 0x524500,25, 0x524568,4, 0x524580,2, 0x5245a0,1, 0x5245c0,11, 0x524600,9, 0x524640,3, 0x524650,3, 0x524664,3, 0x524680,22, 0x524700,17, 0x524800,11, 0x525000,594, 0x52a000,25, 0x52a070,6, 0x52a08c,1, 0x52a094,1, 0x52a09c,8, 0x52a104,23, 0x52a180,7, 0x52a1a0,6, 0x52a1c0,7, 0x52a1e0,6, 0x52a400,61, 0x52a500,25, 0x52a568,4, 0x52a580,2, 0x52a5a0,1, 0x52a5c0,11, 0x52a600,9, 0x52a640,3, 0x52a650,3, 0x52a664,3, 0x52a680,22, 0x52a700,17, 0x52a800,11, 0x52b000,594, 0x52c000,25, 0x52c070,6, 0x52c08c,1, 0x52c094,1, 0x52c09c,8, 0x52c104,23, 0x52c180,7, 0x52c1a0,6, 0x52c1c0,7, 0x52c1e0,6, 0x52c400,61, 0x52c500,25, 0x52c568,4, 0x52c580,2, 0x52c5a0,1, 0x52c5c0,11, 0x52c600,9, 0x52c640,3, 0x52c650,3, 0x52c664,3, 0x52c680,22, 0x52c700,17, 0x52c800,11, 0x52d000,594, 0x53f000,7, 0x53f048,7, 0x53f080,8, 0x53f100,7, 0x53f148,7, 0x53f180,8, 0x53f400,7, 0x53f448,7, 0x53f480,8, 0x53f500,7, 0x53f548,7, 0x53f580,8, 0x540000,31, 0x540080,31, 0x540100,31, 0x540180,31, 0x540200,31, 0x540280,31, 0x540300,31, 0x540380,31, 0x540400,64, 0x540504,5, 0x540520,1, 0x540600,6, 0x540620,6, 0x540640,6, 0x540660,6, 0x540680,6, 0x5406a0,6, 0x5406c0,6, 0x5406e0,6, 0x540700,4, 0x540720,3, 0x540730,3, 0x540760,3, 0x540770,1, 0x540780,5, 0x540800,31, 0x540880,31, 0x540900,31, 0x540980,31, 0x540a00,31, 0x540a80,31, 0x540b00,31, 0x540b80,31, 0x540c00,64, 0x540d04,5, 0x540d20,1, 0x540e00,6, 0x540e20,6, 0x540e40,6, 0x540e60,6, 0x540e80,6, 0x540ea0,6, 0x540ec0,6, 0x540ee0,6, 0x540f00,4, 0x540f20,3, 0x540f30,3, 0x540f60,3, 0x540f70,1, 0x540f80,5, 0x541000,11, 0x541040,11, 0x541080,11, 0x5410c0,11, 0x541100,21, 0x541160,5, 0x541180,3, 0x541190,3, 0x5411a0,11, 0x5411d0,3, 0x5411e0,3, 0x541200,86, 0x541400,5, 0x54141c,1, 0x541440,6, 0x541460,1, 0x541480,3, 0x541490,1, 0x541800,11, 0x541840,11, 0x541880,11, 0x5418c0,11, 0x541900,21, 0x541960,5, 0x541980,3, 0x541990,3, 0x5419a0,11, 0x5419d0,3, 0x5419e0,3, 0x541a00,86, 0x541c00,5, 0x541c1c,1, 0x541c40,6, 0x541c60,1, 0x541c80,3, 0x541c90,1, 0x542000,32, 0x542084,1, 0x542094,3, 0x5420c4,3, 0x542100,1, 0x54210c,3, 0x542120,3, 0x542140,1, 0x542150,9, 0x542180,2, 0x5421a4,1, 0x5421b4,8, 0x542200,20, 0x542260,6, 0x542280,4, 0x5422a0,6, 0x543000,31, 0x543080,31, 0x543100,31, 0x543180,31, 0x543200,31, 0x543280,31, 0x543300,31, 0x543380,31, 0x543400,64, 0x543504,5, 0x543520,1, 0x543600,6, 0x543620,6, 0x543640,6, 0x543660,6, 0x543680,6, 0x5436a0,6, 0x5436c0,6, 0x5436e0,6, 0x543700,4, 0x543720,3, 0x543730,3, 0x543760,3, 0x543770,1, 0x543780,5, 0x543800,31, 0x543880,31, 0x543900,31, 0x543980,31, 0x543a00,31, 0x543a80,31, 0x543b00,31, 0x543b80,31, 0x543c00,64, 0x543d04,5, 0x543d20,1, 0x543e00,6, 0x543e20,6, 0x543e40,6, 0x543e60,6, 0x543e80,6, 0x543ea0,6, 0x543ec0,6, 0x543ee0,6, 0x543f00,4, 0x543f20,3, 0x543f30,3, 0x543f60,3, 0x543f70,1, 0x543f80,5, 0x544000,11, 0x544040,11, 0x544080,11, 0x5440c0,11, 0x544100,21, 0x544160,5, 0x544180,3, 0x544190,3, 0x5441a0,11, 0x5441d0,3, 0x5441e0,3, 0x544200,86, 0x544400,5, 0x54441c,1, 0x544440,6, 0x544460,1, 0x544480,3, 0x544490,1, 0x544800,11, 0x544840,11, 0x544880,11, 0x5448c0,11, 0x544900,21, 0x544960,5, 0x544980,3, 0x544990,3, 0x5449a0,11, 0x5449d0,3, 0x5449e0,3, 0x544a00,86, 0x544c00,5, 0x544c1c,1, 0x544c40,6, 0x544c60,1, 0x544c80,3, 0x544c90,1, 0x545000,32, 0x545084,1, 0x545094,3, 0x5450c4,3, 0x545100,1, 0x54510c,3, 0x545120,3, 0x545140,1, 0x545150,9, 0x545180,2, 0x5451a4,1, 0x5451b4,8, 0x545200,20, 0x545260,6, 0x545280,4, 0x5452a0,6, 0x546100,1, 0x54610c,4, 0x546120,16, 0x546180,1, 0x546200,91, 0x546508,1, 0x546540,1, 0x547000,1, 0x547014,1, 0x54701c,2, 0x547034,1, 0x54703c,5, 0x547060,6, 0x547080,4, 0x5470a0,6, 0x5470c0,3, 0x5470d0,2, 0x547100,11, 0x547134,4, 0x547150,3, 0x547200,3, 0x547210,1, 0x547220,9, 0x547260,2, 0x547300,25, 0x549000,19, 0x550000,286, 0x550800,3, 0x550810,3, 0x550820,3, 0x550830,4, 0x550844,7, 0x551000,3, 0x551010,86, 0x551170,18, 0x551200,1, 0x551220,1, 0x551240,1, 0x551254,1, 0x55125c,4, 0x551270,1, 0x551278,1, 0x551400,3, 0x551410,86, 0x551570,20, 0x551604,1, 0x551640,48, 0x551704,1, 0x551710,5, 0x551740,6, 0x5518e0,12, 0x551920,4, 0x551a00,7, 0x551a20,37, 0x551b00,41, 0x551bb0,3, 0x551c00,25, 0x551c80,7, 0x551ca0,6, 0x551cc0,7, 0x551d00,7, 0x551d20,5, 0x551d40,10, 0x552000,286, 0x552800,3, 0x552810,3, 0x552820,3, 0x552830,4, 0x552844,7, 0x553000,3, 0x553010,86, 0x553170,18, 0x553200,1, 0x553220,1, 0x553240,1, 0x553254,1, 0x55325c,4, 0x553270,1, 0x553278,1, 0x553400,3, 0x553410,86, 0x553570,20, 0x553604,1, 0x553640,48, 0x553704,1, 0x553710,5, 0x553740,6, 0x5538e0,12, 0x553920,4, 0x553a00,7, 0x553a20,37, 0x553b00,41, 0x553bb0,3, 0x553c00,25, 0x553c80,7, 0x553ca0,6, 0x553cc0,7, 0x553d00,7, 0x553d20,5, 0x553d40,10, 0x554000,19, 0x555000,11, 0x555040,5, 0x555058,1, 0x555060,1, 0x560000,3, 0x560010,3, 0x560020,5, 0x560038,9, 0x560060,8, 0x560100,17, 0x560200,3, 0x560210,3, 0x560220,5, 0x560238,9, 0x560260,8, 0x560300,17, 0x560400,3, 0x560414,1, 0x56041c,33, 0x560540,33, 0x5605c8,12, 0x560800,2, 0x560844,1, 0x56084c,1, 0x560880,27, 0x560900,4, 0x560980,19, 0x560a00,4, 0x560a80,19, 0x560b00,1, 0x560b40,5, 0x560b60,5, 0x560b80,6, 0x560bb0,17, 0x560c00,13, 0x560c40,5, 0x560c80,12, 0x561000,3, 0x561010,3, 0x561020,5, 0x561038,9, 0x561060,8, 0x561100,17, 0x561200,3, 0x561210,3, 0x561220,5, 0x561238,9, 0x561260,8, 0x561300,17, 0x561400,3, 0x561414,1, 0x56141c,33, 0x561540,33, 0x5615c8,12, 0x561800,2, 0x561844,1, 0x56184c,1, 0x561880,27, 0x561900,4, 0x561980,19, 0x561a00,4, 0x561a80,19, 0x561b00,1, 0x561b40,5, 0x561b60,5, 0x561b80,6, 0x561bb0,17, 0x561c00,13, 0x561c40,5, 0x561c80,12, 0x562000,19, 0x562080,4, 0x563000,19, 0x564000,2, 0x56400c,5, 0x564028,3, 0x564038,3, 0x564050,1, 0x564080,13, 0x564120,4, 0x564140,1, 0x564400,26, 0x564470,3, 0x564580,10, 0x5645c0,8, 0x5645e8,2, 0x5645f4,2, 0x564600,5, 0x564618,1, 0x564620,1, 0x564628,1, 0x564630,2, 0x564640,2, 0x564650,2, 0x564690,4, 0x564740,2, 0x564800,2, 0x56480c,5, 0x564828,3, 0x564838,3, 0x564850,1, 0x564880,13, 0x564920,4, 0x564940,1, 0x564c00,26, 0x564c70,3, 0x564d80,10, 0x564dc0,8, 0x564de8,2, 0x564df4,2, 0x564e00,5, 0x564e18,1, 0x564e20,1, 0x564e28,1, 0x564e30,2, 0x564e40,2, 0x564e50,2, 0x564e90,4, 0x564f40,2, 0x565800,11, 0x565880,2, 0x5658b0,2, 0x566000,35, 0x566c00,10, 0x566c80,3, 0x580000,4, 0x580014,1, 0x580020,3, 0x580030,3, 0x580040,5, 0x580064,5, 0x58007c,2, 0x5800a0,28, 0x580114,1, 0x580120,3, 0x580130,3, 0x580140,5, 0x580164,5, 0x58017c,2, 0x5801a0,28, 0x580214,1, 0x580220,3, 0x580230,3, 0x580240,5, 0x580264,5, 0x58027c,2, 0x5802a0,28, 0x580314,1, 0x580320,3, 0x580330,3, 0x580340,5, 0x580364,5, 0x58037c,2, 0x5803a0,24, 0x5805c0,1, 0x580600,1, 0x580608,3, 0x580618,2, 0x580800,18, 0x580880,10, 0x5808ac,2, 0x5808f0,3, 0x580900,18, 0x580980,10, 0x5809ac,2, 0x5809f0,3, 0x580c00,18, 0x580c50,2, 0x580c60,6, 0x580c80,18, 0x580cd0,2, 0x580ce0,6, 0x580e00,4, 0x580e20,4, 0x580e80,16, 0x580f00,5, 0x580f20,5, 0x581000,12, 0x581200,1, 0x581208,6, 0x581228,9, 0x581280,1, 0x581288,6, 0x5812a8,9, 0x581400,15, 0x581440,15, 0x581600,7, 0x581620,7, 0x581680,4, 0x58169c,11, 0x5816d0,2, 0x581800,27, 0x581880,4, 0x581898,3, 0x5819a4,1, 0x581a00,4, 0x581a20,4, 0x581a40,6, 0x581a80,4, 0x581aa0,4, 0x581ac0,6, 0x582000,16, 0x582060,7, 0x582080,16, 0x5820e0,7, 0x582200,19, 0x582280,19, 0x582400,14, 0x58243c,9, 0x582464,6, 0x582480,7, 0x5824a0,2, 0x5824ac,2, 0x582500,14, 0x58253c,9, 0x582564,6, 0x582580,7, 0x5825a0,2, 0x5825ac,2, 0x582800,19, 0x582880,19, 0x582b00,1, 0x582b20,1, 0x582b28,4, 0x582b40,1, 0x582b60,1, 0x582b68,4, 0x582c00,7, 0x582c20,1, 0x582c54,18, 0x582ca0,1, 0x582cd4,11, 0x582e00,8, 0x583000,16, 0x583100,7, 0x583120,7, 0x583180,3, 0x584000,4, 0x584014,1, 0x584020,3, 0x584030,3, 0x584040,5, 0x584064,5, 0x58407c,2, 0x5840a0,28, 0x584114,1, 0x584120,3, 0x584130,3, 0x584140,5, 0x584164,5, 0x58417c,2, 0x5841a0,28, 0x584214,1, 0x584220,3, 0x584230,3, 0x584240,5, 0x584264,5, 0x58427c,2, 0x5842a0,28, 0x584314,1, 0x584320,3, 0x584330,3, 0x584340,5, 0x584364,5, 0x58437c,2, 0x5843a0,24, 0x5845c0,1, 0x584600,1, 0x584608,3, 0x584618,2, 0x584800,18, 0x584880,10, 0x5848ac,2, 0x5848f0,3, 0x584900,18, 0x584980,10, 0x5849ac,2, 0x5849f0,3, 0x584c00,18, 0x584c50,2, 0x584c60,6, 0x584c80,18, 0x584cd0,2, 0x584ce0,6, 0x584e00,4, 0x584e20,4, 0x584e80,16, 0x584f00,5, 0x584f20,5, 0x585000,12, 0x585200,1, 0x585208,6, 0x585228,9, 0x585280,1, 0x585288,6, 0x5852a8,9, 0x585400,15, 0x585440,15, 0x585600,7, 0x585620,7, 0x585680,4, 0x58569c,11, 0x5856d0,2, 0x585800,27, 0x585880,4, 0x585898,3, 0x5859a4,1, 0x585a00,4, 0x585a20,4, 0x585a40,6, 0x585a80,4, 0x585aa0,4, 0x585ac0,6, 0x586000,16, 0x586060,7, 0x586080,16, 0x5860e0,7, 0x586200,19, 0x586280,19, 0x586400,14, 0x58643c,9, 0x586464,6, 0x586480,7, 0x5864a0,2, 0x5864ac,2, 0x586500,14, 0x58653c,9, 0x586564,6, 0x586580,7, 0x5865a0,2, 0x5865ac,2, 0x586800,19, 0x586880,19, 0x586b00,1, 0x586b20,1, 0x586b28,4, 0x586b40,1, 0x586b60,1, 0x586b68,4, 0x586c00,7, 0x586c20,1, 0x586c54,18, 0x586ca0,1, 0x586cd4,11, 0x586e00,8, 0x587000,16, 0x587100,7, 0x587120,7, 0x587180,3, 0x58c000,22, 0x58c060,6, 0x58c080,11, 0x58c100,11, 0x58c204,1, 0x58c224,21, 0x58c280,16, 0x58d000,8, 0x58d024,10, 0x58d050,22, 0x58d100,8, 0x58d124,10, 0x58d150,22, 0x58d200,8, 0x58d224,10, 0x58d250,22, 0x58d300,8, 0x58d324,10, 0x58d350,22, 0x58d400,8, 0x58d424,10, 0x58d450,22, 0x58d500,8, 0x58d524,10, 0x58d550,22, 0x58d600,8, 0x58d624,10, 0x58d650,22, 0x58d700,8, 0x58d724,10, 0x58d750,22, 0x58d800,8, 0x58d824,10, 0x58d850,22, 0x58d904,1, 0x58d914,10, 0x58d948,11, 0x58d980,1, 0x58da00,6, 0x58da20,2, 0x58da2c,2, 0x58e800,1, 0x58e808,3, 0x58e838,1, 0x58e844,1, 0x58e850,2, 0x58e860,8, 0x58e900,13, 0x58e940,19, 0x58e990,4, 0x58f000,35, 0x58fc00,10, 0x58fc80,3, 0x58fcc0,1, 0x590000,13, 0x590040,2, 0x590054,4, 0x590080,27, 0x590100,12, 0x590140,11, 0x590170,2, 0x590180,28, 0x590200,6, 0x590240,6, 0x59025c,3, 0x590280,5, 0x5902a0,8, 0x590400,14, 0x590440,14, 0x590480,14, 0x5904c0,14, 0x590540,3, 0x590600,7, 0x590620,14, 0x590680,5, 0x5906a0,7, 0x590800,13, 0x590840,2, 0x590854,4, 0x590880,27, 0x590900,12, 0x590940,11, 0x590970,2, 0x590980,28, 0x590a00,6, 0x590a40,6, 0x590a5c,3, 0x590a80,5, 0x590aa0,8, 0x590c00,14, 0x590c40,14, 0x590c80,14, 0x590cc0,14, 0x590d40,3, 0x590e00,7, 0x590e20,14, 0x590e80,5, 0x590ea0,7, 0x591000,13, 0x591040,2, 0x591054,4, 0x591080,27, 0x591100,12, 0x591140,11, 0x591170,2, 0x591180,28, 0x591200,6, 0x591240,6, 0x59125c,3, 0x591280,5, 0x5912a0,8, 0x591400,14, 0x591440,14, 0x591480,14, 0x5914c0,14, 0x591540,3, 0x591600,7, 0x591620,14, 0x591680,5, 0x5916a0,7, 0x591800,13, 0x591840,2, 0x591854,4, 0x591880,27, 0x591900,12, 0x591940,11, 0x591970,2, 0x591980,28, 0x591a00,6, 0x591a40,6, 0x591a5c,3, 0x591a80,5, 0x591aa0,8, 0x591c00,14, 0x591c40,14, 0x591c80,14, 0x591cc0,14, 0x591d40,3, 0x591e00,7, 0x591e20,14, 0x591e80,5, 0x591ea0,7, 0x592000,8, 0x592040,8, 0x592080,1, 0x592098,6, 0x592100,10, 0x592140,3, 0x592150,2, 0x592180,2, 0x592200,6, 0x592220,17, 0x592280,4, 0x592300,8, 0x592400,2, 0x592480,2, 0x593000,40, 0x593100,64, 0x594000,13, 0x594040,2, 0x594054,4, 0x594080,27, 0x594100,12, 0x594140,11, 0x594170,2, 0x594180,28, 0x594200,6, 0x594240,6, 0x59425c,3, 0x594280,5, 0x5942a0,8, 0x594400,14, 0x594440,14, 0x594480,14, 0x5944c0,14, 0x594540,3, 0x594600,7, 0x594620,14, 0x594680,5, 0x5946a0,7, 0x594800,13, 0x594840,2, 0x594854,4, 0x594880,27, 0x594900,12, 0x594940,11, 0x594970,2, 0x594980,28, 0x594a00,6, 0x594a40,6, 0x594a5c,3, 0x594a80,5, 0x594aa0,8, 0x594c00,14, 0x594c40,14, 0x594c80,14, 0x594cc0,14, 0x594d40,3, 0x594e00,7, 0x594e20,14, 0x594e80,5, 0x594ea0,7, 0x595000,13, 0x595040,2, 0x595054,4, 0x595080,27, 0x595100,12, 0x595140,11, 0x595170,2, 0x595180,28, 0x595200,6, 0x595240,6, 0x59525c,3, 0x595280,5, 0x5952a0,8, 0x595400,14, 0x595440,14, 0x595480,14, 0x5954c0,14, 0x595540,3, 0x595600,7, 0x595620,14, 0x595680,5, 0x5956a0,7, 0x595800,13, 0x595840,2, 0x595854,4, 0x595880,27, 0x595900,12, 0x595940,11, 0x595970,2, 0x595980,28, 0x595a00,6, 0x595a40,6, 0x595a5c,3, 0x595a80,5, 0x595aa0,8, 0x595c00,14, 0x595c40,14, 0x595c80,14, 0x595cc0,14, 0x595d40,3, 0x595e00,7, 0x595e20,14, 0x595e80,5, 0x595ea0,7, 0x596000,8, 0x596040,8, 0x596080,1, 0x596098,6, 0x596100,10, 0x596140,3, 0x596150,2, 0x596180,2, 0x596200,6, 0x596220,17, 0x596280,4, 0x596300,8, 0x596400,2, 0x596480,2, 0x597000,40, 0x597100,64, 0x5a0000,11, 0x5a0040,11, 0x5a0070,3, 0x5a0084,5, 0x5a00a4,5, 0x5a0200,7, 0x5a0220,6, 0x5a0240,7, 0x5a0260,6, 0x5a0280,6, 0x5a02a0,2, 0x5a02ac,2, 0x5a02c0,7, 0x5a02e0,7, 0x5a0300,2, 0x5a030c,2, 0x5a0320,6, 0x5a1000,19, 0x5a2000,25, 0x5a2070,6, 0x5a208c,1, 0x5a2094,1, 0x5a209c,8, 0x5a2104,23, 0x5a2180,7, 0x5a21a0,6, 0x5a21c0,7, 0x5a21e0,6, 0x5a2400,61, 0x5a2500,25, 0x5a2568,4, 0x5a2580,2, 0x5a25a0,1, 0x5a25c0,11, 0x5a2600,9, 0x5a2640,3, 0x5a2650,3, 0x5a2664,3, 0x5a2680,22, 0x5a2700,17, 0x5a2800,11, 0x5a3000,594, 0x5a4000,25, 0x5a4070,6, 0x5a408c,1, 0x5a4094,1, 0x5a409c,8, 0x5a4104,23, 0x5a4180,7, 0x5a41a0,6, 0x5a41c0,7, 0x5a41e0,6, 0x5a4400,61, 0x5a4500,25, 0x5a4568,4, 0x5a4580,2, 0x5a45a0,1, 0x5a45c0,11, 0x5a4600,9, 0x5a4640,3, 0x5a4650,3, 0x5a4664,3, 0x5a4680,22, 0x5a4700,17, 0x5a4800,11, 0x5a5000,594, 0x5aa000,25, 0x5aa070,6, 0x5aa08c,1, 0x5aa094,1, 0x5aa09c,8, 0x5aa104,23, 0x5aa180,7, 0x5aa1a0,6, 0x5aa1c0,7, 0x5aa1e0,6, 0x5aa400,61, 0x5aa500,25, 0x5aa568,4, 0x5aa580,2, 0x5aa5a0,1, 0x5aa5c0,11, 0x5aa600,9, 0x5aa640,3, 0x5aa650,3, 0x5aa664,3, 0x5aa680,22, 0x5aa700,17, 0x5aa800,11, 0x5ab000,594, 0x5ac000,25, 0x5ac070,6, 0x5ac08c,1, 0x5ac094,1, 0x5ac09c,8, 0x5ac104,23, 0x5ac180,7, 0x5ac1a0,6, 0x5ac1c0,7, 0x5ac1e0,6, 0x5ac400,61, 0x5ac500,25, 0x5ac568,4, 0x5ac580,2, 0x5ac5a0,1, 0x5ac5c0,11, 0x5ac600,9, 0x5ac640,3, 0x5ac650,3, 0x5ac664,3, 0x5ac680,22, 0x5ac700,17, 0x5ac800,11, 0x5ad000,594, 0x5bf000,7, 0x5bf048,7, 0x5bf080,8, 0x5bf100,7, 0x5bf148,7, 0x5bf180,8, 0x5bf400,7, 0x5bf448,7, 0x5bf480,8, 0x5bf500,7, 0x5bf548,7, 0x5bf580,8, 0x5c0000,31, 0x5c0080,31, 0x5c0100,31, 0x5c0180,31, 0x5c0200,31, 0x5c0280,31, 0x5c0300,31, 0x5c0380,31, 0x5c0400,64, 0x5c0504,5, 0x5c0520,1, 0x5c0600,6, 0x5c0620,6, 0x5c0640,6, 0x5c0660,6, 0x5c0680,6, 0x5c06a0,6, 0x5c06c0,6, 0x5c06e0,6, 0x5c0700,4, 0x5c0720,3, 0x5c0730,3, 0x5c0760,3, 0x5c0770,1, 0x5c0780,5, 0x5c0800,31, 0x5c0880,31, 0x5c0900,31, 0x5c0980,31, 0x5c0a00,31, 0x5c0a80,31, 0x5c0b00,31, 0x5c0b80,31, 0x5c0c00,64, 0x5c0d04,5, 0x5c0d20,1, 0x5c0e00,6, 0x5c0e20,6, 0x5c0e40,6, 0x5c0e60,6, 0x5c0e80,6, 0x5c0ea0,6, 0x5c0ec0,6, 0x5c0ee0,6, 0x5c0f00,4, 0x5c0f20,3, 0x5c0f30,3, 0x5c0f60,3, 0x5c0f70,1, 0x5c0f80,5, 0x5c1000,11, 0x5c1040,11, 0x5c1080,11, 0x5c10c0,11, 0x5c1100,21, 0x5c1160,5, 0x5c1180,3, 0x5c1190,3, 0x5c11a0,11, 0x5c11d0,3, 0x5c11e0,3, 0x5c1200,86, 0x5c1400,5, 0x5c141c,1, 0x5c1440,6, 0x5c1460,1, 0x5c1480,3, 0x5c1490,1, 0x5c1800,11, 0x5c1840,11, 0x5c1880,11, 0x5c18c0,11, 0x5c1900,21, 0x5c1960,5, 0x5c1980,3, 0x5c1990,3, 0x5c19a0,11, 0x5c19d0,3, 0x5c19e0,3, 0x5c1a00,86, 0x5c1c00,5, 0x5c1c1c,1, 0x5c1c40,6, 0x5c1c60,1, 0x5c1c80,3, 0x5c1c90,1, 0x5c2000,32, 0x5c2084,1, 0x5c2094,3, 0x5c20c4,3, 0x5c2100,1, 0x5c210c,3, 0x5c2120,3, 0x5c2140,1, 0x5c2150,9, 0x5c2180,2, 0x5c21a4,1, 0x5c21b4,8, 0x5c2200,20, 0x5c2260,6, 0x5c2280,4, 0x5c22a0,6, 0x5c3000,31, 0x5c3080,31, 0x5c3100,31, 0x5c3180,31, 0x5c3200,31, 0x5c3280,31, 0x5c3300,31, 0x5c3380,31, 0x5c3400,64, 0x5c3504,5, 0x5c3520,1, 0x5c3600,6, 0x5c3620,6, 0x5c3640,6, 0x5c3660,6, 0x5c3680,6, 0x5c36a0,6, 0x5c36c0,6, 0x5c36e0,6, 0x5c3700,4, 0x5c3720,3, 0x5c3730,3, 0x5c3760,3, 0x5c3770,1, 0x5c3780,5, 0x5c3800,31, 0x5c3880,31, 0x5c3900,31, 0x5c3980,31, 0x5c3a00,31, 0x5c3a80,31, 0x5c3b00,31, 0x5c3b80,31, 0x5c3c00,64, 0x5c3d04,5, 0x5c3d20,1, 0x5c3e00,6, 0x5c3e20,6, 0x5c3e40,6, 0x5c3e60,6, 0x5c3e80,6, 0x5c3ea0,6, 0x5c3ec0,6, 0x5c3ee0,6, 0x5c3f00,4, 0x5c3f20,3, 0x5c3f30,3, 0x5c3f60,3, 0x5c3f70,1, 0x5c3f80,5, 0x5c4000,11, 0x5c4040,11, 0x5c4080,11, 0x5c40c0,11, 0x5c4100,21, 0x5c4160,5, 0x5c4180,3, 0x5c4190,3, 0x5c41a0,11, 0x5c41d0,3, 0x5c41e0,3, 0x5c4200,86, 0x5c4400,5, 0x5c441c,1, 0x5c4440,6, 0x5c4460,1, 0x5c4480,3, 0x5c4490,1, 0x5c4800,11, 0x5c4840,11, 0x5c4880,11, 0x5c48c0,11, 0x5c4900,21, 0x5c4960,5, 0x5c4980,3, 0x5c4990,3, 0x5c49a0,11, 0x5c49d0,3, 0x5c49e0,3, 0x5c4a00,86, 0x5c4c00,5, 0x5c4c1c,1, 0x5c4c40,6, 0x5c4c60,1, 0x5c4c80,3, 0x5c4c90,1, 0x5c5000,32, 0x5c5084,1, 0x5c5094,3, 0x5c50c4,3, 0x5c5100,1, 0x5c510c,3, 0x5c5120,3, 0x5c5140,1, 0x5c5150,9, 0x5c5180,2, 0x5c51a4,1, 0x5c51b4,8, 0x5c5200,20, 0x5c5260,6, 0x5c5280,4, 0x5c52a0,6, 0x5c6100,1, 0x5c610c,4, 0x5c6120,16, 0x5c6180,1, 0x5c6200,91, 0x5c6508,1, 0x5c6540,1, 0x5c7000,1, 0x5c7014,1, 0x5c701c,2, 0x5c7034,1, 0x5c703c,5, 0x5c7060,6, 0x5c7080,4, 0x5c70a0,6, 0x5c70c0,3, 0x5c70d0,2, 0x5c7100,11, 0x5c7134,4, 0x5c7150,3, 0x5c7200,3, 0x5c7210,1, 0x5c7220,9, 0x5c7260,2, 0x5c7300,25, 0x5c9000,19, 0x5d0000,286, 0x5d0800,3, 0x5d0810,3, 0x5d0820,3, 0x5d0830,4, 0x5d0844,7, 0x5d1000,3, 0x5d1010,86, 0x5d1170,18, 0x5d1200,1, 0x5d1220,1, 0x5d1240,1, 0x5d1254,1, 0x5d125c,4, 0x5d1270,1, 0x5d1278,1, 0x5d1400,3, 0x5d1410,86, 0x5d1570,20, 0x5d1604,1, 0x5d1640,48, 0x5d1704,1, 0x5d1710,5, 0x5d1740,6, 0x5d18e0,12, 0x5d1920,4, 0x5d1a00,7, 0x5d1a20,37, 0x5d1b00,41, 0x5d1bb0,3, 0x5d1c00,25, 0x5d1c80,7, 0x5d1ca0,6, 0x5d1cc0,7, 0x5d1d00,7, 0x5d1d20,5, 0x5d1d40,10, 0x5d2000,286, 0x5d2800,3, 0x5d2810,3, 0x5d2820,3, 0x5d2830,4, 0x5d2844,7, 0x5d3000,3, 0x5d3010,86, 0x5d3170,18, 0x5d3200,1, 0x5d3220,1, 0x5d3240,1, 0x5d3254,1, 0x5d325c,4, 0x5d3270,1, 0x5d3278,1, 0x5d3400,3, 0x5d3410,86, 0x5d3570,20, 0x5d3604,1, 0x5d3640,48, 0x5d3704,1, 0x5d3710,5, 0x5d3740,6, 0x5d38e0,12, 0x5d3920,4, 0x5d3a00,7, 0x5d3a20,37, 0x5d3b00,41, 0x5d3bb0,3, 0x5d3c00,25, 0x5d3c80,7, 0x5d3ca0,6, 0x5d3cc0,7, 0x5d3d00,7, 0x5d3d20,5, 0x5d3d40,10, 0x5d4000,19, 0x5d5000,11, 0x5d5040,5, 0x5d5058,1, 0x5d5060,1, 0x5e0000,3, 0x5e0010,3, 0x5e0020,5, 0x5e0038,9, 0x5e0060,8, 0x5e0100,17, 0x5e0200,3, 0x5e0210,3, 0x5e0220,5, 0x5e0238,9, 0x5e0260,8, 0x5e0300,17, 0x5e0400,3, 0x5e0414,1, 0x5e041c,33, 0x5e0540,33, 0x5e05c8,12, 0x5e0800,2, 0x5e0844,1, 0x5e084c,1, 0x5e0880,27, 0x5e0900,4, 0x5e0980,19, 0x5e0a00,4, 0x5e0a80,19, 0x5e0b00,1, 0x5e0b40,5, 0x5e0b60,5, 0x5e0b80,6, 0x5e0bb0,17, 0x5e0c00,13, 0x5e0c40,5, 0x5e0c80,12, 0x5e1000,3, 0x5e1010,3, 0x5e1020,5, 0x5e1038,9, 0x5e1060,8, 0x5e1100,17, 0x5e1200,3, 0x5e1210,3, 0x5e1220,5, 0x5e1238,9, 0x5e1260,8, 0x5e1300,17, 0x5e1400,3, 0x5e1414,1, 0x5e141c,33, 0x5e1540,33, 0x5e15c8,12, 0x5e1800,2, 0x5e1844,1, 0x5e184c,1, 0x5e1880,27, 0x5e1900,4, 0x5e1980,19, 0x5e1a00,4, 0x5e1a80,19, 0x5e1b00,1, 0x5e1b40,5, 0x5e1b60,5, 0x5e1b80,6, 0x5e1bb0,17, 0x5e1c00,13, 0x5e1c40,5, 0x5e1c80,12, 0x5e2000,19, 0x5e2080,4, 0x5e3000,19, 0x5e4000,2, 0x5e400c,5, 0x5e4028,3, 0x5e4038,3, 0x5e4050,1, 0x5e4080,13, 0x5e4120,4, 0x5e4140,1, 0x5e4400,26, 0x5e4470,3, 0x5e4580,10, 0x5e45c0,8, 0x5e45e8,2, 0x5e45f4,2, 0x5e4600,5, 0x5e4618,1, 0x5e4620,1, 0x5e4628,1, 0x5e4630,2, 0x5e4640,2, 0x5e4650,2, 0x5e4690,4, 0x5e4740,2, 0x5e4800,2, 0x5e480c,5, 0x5e4828,3, 0x5e4838,3, 0x5e4850,1, 0x5e4880,13, 0x5e4920,4, 0x5e4940,1, 0x5e4c00,26, 0x5e4c70,3, 0x5e4d80,10, 0x5e4dc0,8, 0x5e4de8,2, 0x5e4df4,2, 0x5e4e00,5, 0x5e4e18,1, 0x5e4e20,1, 0x5e4e28,1, 0x5e4e30,2, 0x5e4e40,2, 0x5e4e50,2, 0x5e4e90,4, 0x5e4f40,2, 0x5e5800,11, 0x5e5880,2, 0x5e58b0,2, 0x5e6000,35, 0x5e6c00,10, 0x5e6c80,3, 0x600000,4, 0x600014,1, 0x600020,3, 0x600030,3, 0x600040,5, 0x600064,5, 0x60007c,2, 0x6000a0,28, 0x600114,1, 0x600120,3, 0x600130,3, 0x600140,5, 0x600164,5, 0x60017c,2, 0x6001a0,28, 0x600214,1, 0x600220,3, 0x600230,3, 0x600240,5, 0x600264,5, 0x60027c,2, 0x6002a0,28, 0x600314,1, 0x600320,3, 0x600330,3, 0x600340,5, 0x600364,5, 0x60037c,2, 0x6003a0,24, 0x6005c0,1, 0x600600,1, 0x600608,3, 0x600618,2, 0x600800,18, 0x600880,10, 0x6008ac,2, 0x6008f0,3, 0x600900,18, 0x600980,10, 0x6009ac,2, 0x6009f0,3, 0x600c00,18, 0x600c50,2, 0x600c60,6, 0x600c80,18, 0x600cd0,2, 0x600ce0,6, 0x600e00,4, 0x600e20,4, 0x600e80,16, 0x600f00,5, 0x600f20,5, 0x601000,12, 0x601200,1, 0x601208,6, 0x601228,9, 0x601280,1, 0x601288,6, 0x6012a8,9, 0x601400,15, 0x601440,15, 0x601600,7, 0x601620,7, 0x601680,4, 0x60169c,11, 0x6016d0,2, 0x601800,27, 0x601880,4, 0x601898,3, 0x6019a4,1, 0x601a00,4, 0x601a20,4, 0x601a40,6, 0x601a80,4, 0x601aa0,4, 0x601ac0,6, 0x602000,16, 0x602060,7, 0x602080,16, 0x6020e0,7, 0x602200,19, 0x602280,19, 0x602400,14, 0x60243c,9, 0x602464,6, 0x602480,7, 0x6024a0,2, 0x6024ac,2, 0x602500,14, 0x60253c,9, 0x602564,6, 0x602580,7, 0x6025a0,2, 0x6025ac,2, 0x602800,19, 0x602880,19, 0x602b00,1, 0x602b20,1, 0x602b28,4, 0x602b40,1, 0x602b60,1, 0x602b68,4, 0x602c00,7, 0x602c20,1, 0x602c54,18, 0x602ca0,1, 0x602cd4,11, 0x602e00,8, 0x603000,16, 0x603100,7, 0x603120,7, 0x603180,3, 0x604000,4, 0x604014,1, 0x604020,3, 0x604030,3, 0x604040,5, 0x604064,5, 0x60407c,2, 0x6040a0,28, 0x604114,1, 0x604120,3, 0x604130,3, 0x604140,5, 0x604164,5, 0x60417c,2, 0x6041a0,28, 0x604214,1, 0x604220,3, 0x604230,3, 0x604240,5, 0x604264,5, 0x60427c,2, 0x6042a0,28, 0x604314,1, 0x604320,3, 0x604330,3, 0x604340,5, 0x604364,5, 0x60437c,2, 0x6043a0,24, 0x6045c0,1, 0x604600,1, 0x604608,3, 0x604618,2, 0x604800,18, 0x604880,10, 0x6048ac,2, 0x6048f0,3, 0x604900,18, 0x604980,10, 0x6049ac,2, 0x6049f0,3, 0x604c00,18, 0x604c50,2, 0x604c60,6, 0x604c80,18, 0x604cd0,2, 0x604ce0,6, 0x604e00,4, 0x604e20,4, 0x604e80,16, 0x604f00,5, 0x604f20,5, 0x605000,12, 0x605200,1, 0x605208,6, 0x605228,9, 0x605280,1, 0x605288,6, 0x6052a8,9, 0x605400,15, 0x605440,15, 0x605600,7, 0x605620,7, 0x605680,4, 0x60569c,11, 0x6056d0,2, 0x605800,27, 0x605880,4, 0x605898,3, 0x6059a4,1, 0x605a00,4, 0x605a20,4, 0x605a40,6, 0x605a80,4, 0x605aa0,4, 0x605ac0,6, 0x606000,16, 0x606060,7, 0x606080,16, 0x6060e0,7, 0x606200,19, 0x606280,19, 0x606400,14, 0x60643c,9, 0x606464,6, 0x606480,7, 0x6064a0,2, 0x6064ac,2, 0x606500,14, 0x60653c,9, 0x606564,6, 0x606580,7, 0x6065a0,2, 0x6065ac,2, 0x606800,19, 0x606880,19, 0x606b00,1, 0x606b20,1, 0x606b28,4, 0x606b40,1, 0x606b60,1, 0x606b68,4, 0x606c00,7, 0x606c20,1, 0x606c54,18, 0x606ca0,1, 0x606cd4,11, 0x606e00,8, 0x607000,16, 0x607100,7, 0x607120,7, 0x607180,3, 0x60c000,22, 0x60c060,6, 0x60c080,11, 0x60c100,11, 0x60c204,1, 0x60c224,21, 0x60c280,16, 0x60d000,8, 0x60d024,10, 0x60d050,22, 0x60d100,8, 0x60d124,10, 0x60d150,22, 0x60d200,8, 0x60d224,10, 0x60d250,22, 0x60d300,8, 0x60d324,10, 0x60d350,22, 0x60d400,8, 0x60d424,10, 0x60d450,22, 0x60d500,8, 0x60d524,10, 0x60d550,22, 0x60d600,8, 0x60d624,10, 0x60d650,22, 0x60d700,8, 0x60d724,10, 0x60d750,22, 0x60d800,8, 0x60d824,10, 0x60d850,22, 0x60d904,1, 0x60d914,10, 0x60d948,11, 0x60d980,1, 0x60da00,6, 0x60da20,2, 0x60da2c,2, 0x60e800,1, 0x60e808,3, 0x60e838,1, 0x60e844,1, 0x60e850,2, 0x60e860,8, 0x60e900,13, 0x60e940,19, 0x60e990,4, 0x60f000,35, 0x60fc00,10, 0x60fc80,3, 0x60fcc0,1, 0x610000,13, 0x610040,2, 0x610054,4, 0x610080,27, 0x610100,12, 0x610140,11, 0x610170,2, 0x610180,28, 0x610200,6, 0x610240,6, 0x61025c,3, 0x610280,5, 0x6102a0,8, 0x610400,14, 0x610440,14, 0x610480,14, 0x6104c0,14, 0x610540,3, 0x610600,7, 0x610620,14, 0x610680,5, 0x6106a0,7, 0x610800,13, 0x610840,2, 0x610854,4, 0x610880,27, 0x610900,12, 0x610940,11, 0x610970,2, 0x610980,28, 0x610a00,6, 0x610a40,6, 0x610a5c,3, 0x610a80,5, 0x610aa0,8, 0x610c00,14, 0x610c40,14, 0x610c80,14, 0x610cc0,14, 0x610d40,3, 0x610e00,7, 0x610e20,14, 0x610e80,5, 0x610ea0,7, 0x611000,13, 0x611040,2, 0x611054,4, 0x611080,27, 0x611100,12, 0x611140,11, 0x611170,2, 0x611180,28, 0x611200,6, 0x611240,6, 0x61125c,3, 0x611280,5, 0x6112a0,8, 0x611400,14, 0x611440,14, 0x611480,14, 0x6114c0,14, 0x611540,3, 0x611600,7, 0x611620,14, 0x611680,5, 0x6116a0,7, 0x611800,13, 0x611840,2, 0x611854,4, 0x611880,27, 0x611900,12, 0x611940,11, 0x611970,2, 0x611980,28, 0x611a00,6, 0x611a40,6, 0x611a5c,3, 0x611a80,5, 0x611aa0,8, 0x611c00,14, 0x611c40,14, 0x611c80,14, 0x611cc0,14, 0x611d40,3, 0x611e00,7, 0x611e20,14, 0x611e80,5, 0x611ea0,7, 0x612000,8, 0x612040,8, 0x612080,1, 0x612098,6, 0x612100,10, 0x612140,3, 0x612150,2, 0x612180,2, 0x612200,6, 0x612220,17, 0x612280,4, 0x612300,8, 0x612400,2, 0x612480,2, 0x613000,40, 0x613100,64, 0x614000,13, 0x614040,2, 0x614054,4, 0x614080,27, 0x614100,12, 0x614140,11, 0x614170,2, 0x614180,28, 0x614200,6, 0x614240,6, 0x61425c,3, 0x614280,5, 0x6142a0,8, 0x614400,14, 0x614440,14, 0x614480,14, 0x6144c0,14, 0x614540,3, 0x614600,7, 0x614620,14, 0x614680,5, 0x6146a0,7, 0x614800,13, 0x614840,2, 0x614854,4, 0x614880,27, 0x614900,12, 0x614940,11, 0x614970,2, 0x614980,28, 0x614a00,6, 0x614a40,6, 0x614a5c,3, 0x614a80,5, 0x614aa0,8, 0x614c00,14, 0x614c40,14, 0x614c80,14, 0x614cc0,14, 0x614d40,3, 0x614e00,7, 0x614e20,14, 0x614e80,5, 0x614ea0,7, 0x615000,13, 0x615040,2, 0x615054,4, 0x615080,27, 0x615100,12, 0x615140,11, 0x615170,2, 0x615180,28, 0x615200,6, 0x615240,6, 0x61525c,3, 0x615280,5, 0x6152a0,8, 0x615400,14, 0x615440,14, 0x615480,14, 0x6154c0,14, 0x615540,3, 0x615600,7, 0x615620,14, 0x615680,5, 0x6156a0,7, 0x615800,13, 0x615840,2, 0x615854,4, 0x615880,27, 0x615900,12, 0x615940,11, 0x615970,2, 0x615980,28, 0x615a00,6, 0x615a40,6, 0x615a5c,3, 0x615a80,5, 0x615aa0,8, 0x615c00,14, 0x615c40,14, 0x615c80,14, 0x615cc0,14, 0x615d40,3, 0x615e00,7, 0x615e20,14, 0x615e80,5, 0x615ea0,7, 0x616000,8, 0x616040,8, 0x616080,1, 0x616098,6, 0x616100,10, 0x616140,3, 0x616150,2, 0x616180,2, 0x616200,6, 0x616220,17, 0x616280,4, 0x616300,8, 0x616400,2, 0x616480,2, 0x617000,40, 0x617100,64, 0x620000,11, 0x620040,11, 0x620070,3, 0x620084,5, 0x6200a4,5, 0x620200,7, 0x620220,6, 0x620240,7, 0x620260,6, 0x620280,6, 0x6202a0,2, 0x6202ac,2, 0x6202c0,7, 0x6202e0,7, 0x620300,2, 0x62030c,2, 0x620320,6, 0x621000,19, 0x622000,25, 0x622070,6, 0x62208c,1, 0x622094,1, 0x62209c,8, 0x622104,23, 0x622180,7, 0x6221a0,6, 0x6221c0,7, 0x6221e0,6, 0x622400,61, 0x622500,25, 0x622568,4, 0x622580,2, 0x6225a0,1, 0x6225c0,11, 0x622600,9, 0x622640,3, 0x622650,3, 0x622664,3, 0x622680,22, 0x622700,17, 0x622800,11, 0x623000,594, 0x624000,25, 0x624070,6, 0x62408c,1, 0x624094,1, 0x62409c,8, 0x624104,23, 0x624180,7, 0x6241a0,6, 0x6241c0,7, 0x6241e0,6, 0x624400,61, 0x624500,25, 0x624568,4, 0x624580,2, 0x6245a0,1, 0x6245c0,11, 0x624600,9, 0x624640,3, 0x624650,3, 0x624664,3, 0x624680,22, 0x624700,17, 0x624800,11, 0x625000,594, 0x62a000,25, 0x62a070,6, 0x62a08c,1, 0x62a094,1, 0x62a09c,8, 0x62a104,23, 0x62a180,7, 0x62a1a0,6, 0x62a1c0,7, 0x62a1e0,6, 0x62a400,61, 0x62a500,25, 0x62a568,4, 0x62a580,2, 0x62a5a0,1, 0x62a5c0,11, 0x62a600,9, 0x62a640,3, 0x62a650,3, 0x62a664,3, 0x62a680,22, 0x62a700,17, 0x62a800,11, 0x62b000,594, 0x62c000,25, 0x62c070,6, 0x62c08c,1, 0x62c094,1, 0x62c09c,8, 0x62c104,23, 0x62c180,7, 0x62c1a0,6, 0x62c1c0,7, 0x62c1e0,6, 0x62c400,61, 0x62c500,25, 0x62c568,4, 0x62c580,2, 0x62c5a0,1, 0x62c5c0,11, 0x62c600,9, 0x62c640,3, 0x62c650,3, 0x62c664,3, 0x62c680,22, 0x62c700,17, 0x62c800,11, 0x62d000,594, 0x63f000,7, 0x63f048,7, 0x63f080,8, 0x63f100,7, 0x63f148,7, 0x63f180,8, 0x63f400,7, 0x63f448,7, 0x63f480,8, 0x63f500,7, 0x63f548,7, 0x63f580,8, 0x640000,31, 0x640080,31, 0x640100,31, 0x640180,31, 0x640200,31, 0x640280,31, 0x640300,31, 0x640380,31, 0x640400,64, 0x640504,5, 0x640520,1, 0x640600,6, 0x640620,6, 0x640640,6, 0x640660,6, 0x640680,6, 0x6406a0,6, 0x6406c0,6, 0x6406e0,6, 0x640700,4, 0x640720,3, 0x640730,3, 0x640760,3, 0x640770,1, 0x640780,5, 0x640800,31, 0x640880,31, 0x640900,31, 0x640980,31, 0x640a00,31, 0x640a80,31, 0x640b00,31, 0x640b80,31, 0x640c00,64, 0x640d04,5, 0x640d20,1, 0x640e00,6, 0x640e20,6, 0x640e40,6, 0x640e60,6, 0x640e80,6, 0x640ea0,6, 0x640ec0,6, 0x640ee0,6, 0x640f00,4, 0x640f20,3, 0x640f30,3, 0x640f60,3, 0x640f70,1, 0x640f80,5, 0x641000,11, 0x641040,11, 0x641080,11, 0x6410c0,11, 0x641100,21, 0x641160,5, 0x641180,3, 0x641190,3, 0x6411a0,11, 0x6411d0,3, 0x6411e0,3, 0x641200,86, 0x641400,5, 0x64141c,1, 0x641440,6, 0x641460,1, 0x641480,3, 0x641490,1, 0x641800,11, 0x641840,11, 0x641880,11, 0x6418c0,11, 0x641900,21, 0x641960,5, 0x641980,3, 0x641990,3, 0x6419a0,11, 0x6419d0,3, 0x6419e0,3, 0x641a00,86, 0x641c00,5, 0x641c1c,1, 0x641c40,6, 0x641c60,1, 0x641c80,3, 0x641c90,1, 0x642000,32, 0x642084,1, 0x642094,3, 0x6420c4,3, 0x642100,1, 0x64210c,3, 0x642120,3, 0x642140,1, 0x642150,9, 0x642180,2, 0x6421a4,1, 0x6421b4,8, 0x642200,20, 0x642260,6, 0x642280,4, 0x6422a0,6, 0x643000,31, 0x643080,31, 0x643100,31, 0x643180,31, 0x643200,31, 0x643280,31, 0x643300,31, 0x643380,31, 0x643400,64, 0x643504,5, 0x643520,1, 0x643600,6, 0x643620,6, 0x643640,6, 0x643660,6, 0x643680,6, 0x6436a0,6, 0x6436c0,6, 0x6436e0,6, 0x643700,4, 0x643720,3, 0x643730,3, 0x643760,3, 0x643770,1, 0x643780,5, 0x643800,31, 0x643880,31, 0x643900,31, 0x643980,31, 0x643a00,31, 0x643a80,31, 0x643b00,31, 0x643b80,31, 0x643c00,64, 0x643d04,5, 0x643d20,1, 0x643e00,6, 0x643e20,6, 0x643e40,6, 0x643e60,6, 0x643e80,6, 0x643ea0,6, 0x643ec0,6, 0x643ee0,6, 0x643f00,4, 0x643f20,3, 0x643f30,3, 0x643f60,3, 0x643f70,1, 0x643f80,5, 0x644000,11, 0x644040,11, 0x644080,11, 0x6440c0,11, 0x644100,21, 0x644160,5, 0x644180,3, 0x644190,3, 0x6441a0,11, 0x6441d0,3, 0x6441e0,3, 0x644200,86, 0x644400,5, 0x64441c,1, 0x644440,6, 0x644460,1, 0x644480,3, 0x644490,1, 0x644800,11, 0x644840,11, 0x644880,11, 0x6448c0,11, 0x644900,21, 0x644960,5, 0x644980,3, 0x644990,3, 0x6449a0,11, 0x6449d0,3, 0x6449e0,3, 0x644a00,86, 0x644c00,5, 0x644c1c,1, 0x644c40,6, 0x644c60,1, 0x644c80,3, 0x644c90,1, 0x645000,32, 0x645084,1, 0x645094,3, 0x6450c4,3, 0x645100,1, 0x64510c,3, 0x645120,3, 0x645140,1, 0x645150,9, 0x645180,2, 0x6451a4,1, 0x6451b4,8, 0x645200,20, 0x645260,6, 0x645280,4, 0x6452a0,6, 0x646100,1, 0x64610c,4, 0x646120,16, 0x646180,1, 0x646200,91, 0x646508,1, 0x646540,1, 0x647000,1, 0x647014,1, 0x64701c,2, 0x647034,1, 0x64703c,5, 0x647060,6, 0x647080,4, 0x6470a0,6, 0x6470c0,3, 0x6470d0,2, 0x647100,11, 0x647134,4, 0x647150,3, 0x647200,3, 0x647210,1, 0x647220,9, 0x647260,2, 0x647300,25, 0x649000,19, 0x650000,286, 0x650800,3, 0x650810,3, 0x650820,3, 0x650830,4, 0x650844,7, 0x651000,3, 0x651010,86, 0x651170,18, 0x651200,1, 0x651220,1, 0x651240,1, 0x651254,1, 0x65125c,4, 0x651270,1, 0x651278,1, 0x651400,3, 0x651410,86, 0x651570,20, 0x651604,1, 0x651640,48, 0x651704,1, 0x651710,5, 0x651740,6, 0x6518e0,12, 0x651920,4, 0x651a00,7, 0x651a20,37, 0x651b00,41, 0x651bb0,3, 0x651c00,25, 0x651c80,7, 0x651ca0,6, 0x651cc0,7, 0x651d00,7, 0x651d20,5, 0x651d40,10, 0x652000,286, 0x652800,3, 0x652810,3, 0x652820,3, 0x652830,4, 0x652844,7, 0x653000,3, 0x653010,86, 0x653170,18, 0x653200,1, 0x653220,1, 0x653240,1, 0x653254,1, 0x65325c,4, 0x653270,1, 0x653278,1, 0x653400,3, 0x653410,86, 0x653570,20, 0x653604,1, 0x653640,48, 0x653704,1, 0x653710,5, 0x653740,6, 0x6538e0,12, 0x653920,4, 0x653a00,7, 0x653a20,37, 0x653b00,41, 0x653bb0,3, 0x653c00,25, 0x653c80,7, 0x653ca0,6, 0x653cc0,7, 0x653d00,7, 0x653d20,5, 0x653d40,10, 0x654000,19, 0x655000,11, 0x655040,5, 0x655058,1, 0x655060,1, 0x660000,3, 0x660010,3, 0x660020,5, 0x660038,9, 0x660060,8, 0x660100,17, 0x660200,3, 0x660210,3, 0x660220,5, 0x660238,9, 0x660260,8, 0x660300,17, 0x660400,3, 0x660414,1, 0x66041c,33, 0x660540,33, 0x6605c8,12, 0x660800,2, 0x660844,1, 0x66084c,1, 0x660880,27, 0x660900,4, 0x660980,19, 0x660a00,4, 0x660a80,19, 0x660b00,1, 0x660b40,5, 0x660b60,5, 0x660b80,6, 0x660bb0,17, 0x660c00,13, 0x660c40,5, 0x660c80,12, 0x661000,3, 0x661010,3, 0x661020,5, 0x661038,9, 0x661060,8, 0x661100,17, 0x661200,3, 0x661210,3, 0x661220,5, 0x661238,9, 0x661260,8, 0x661300,17, 0x661400,3, 0x661414,1, 0x66141c,33, 0x661540,33, 0x6615c8,12, 0x661800,2, 0x661844,1, 0x66184c,1, 0x661880,27, 0x661900,4, 0x661980,19, 0x661a00,4, 0x661a80,19, 0x661b00,1, 0x661b40,5, 0x661b60,5, 0x661b80,6, 0x661bb0,17, 0x661c00,13, 0x661c40,5, 0x661c80,12, 0x662000,19, 0x662080,4, 0x663000,19, 0x664000,2, 0x66400c,5, 0x664028,3, 0x664038,3, 0x664050,1, 0x664080,13, 0x664120,4, 0x664140,1, 0x664400,26, 0x664470,3, 0x664580,10, 0x6645c0,8, 0x6645e8,2, 0x6645f4,2, 0x664600,5, 0x664618,1, 0x664620,1, 0x664628,1, 0x664630,2, 0x664640,2, 0x664650,2, 0x664690,4, 0x664740,2, 0x664800,2, 0x66480c,5, 0x664828,3, 0x664838,3, 0x664850,1, 0x664880,13, 0x664920,4, 0x664940,1, 0x664c00,26, 0x664c70,3, 0x664d80,10, 0x664dc0,8, 0x664de8,2, 0x664df4,2, 0x664e00,5, 0x664e18,1, 0x664e20,1, 0x664e28,1, 0x664e30,2, 0x664e40,2, 0x664e50,2, 0x664e90,4, 0x664f40,2, 0x665800,11, 0x665880,2, 0x6658b0,2, 0x666000,35, 0x666c00,10, 0x666c80,3, 0x680000,4, 0x680014,1, 0x680020,3, 0x680030,3, 0x680040,5, 0x680064,5, 0x68007c,2, 0x6800a0,28, 0x680114,1, 0x680120,3, 0x680130,3, 0x680140,5, 0x680164,5, 0x68017c,2, 0x6801a0,28, 0x680214,1, 0x680220,3, 0x680230,3, 0x680240,5, 0x680264,5, 0x68027c,2, 0x6802a0,28, 0x680314,1, 0x680320,3, 0x680330,3, 0x680340,5, 0x680364,5, 0x68037c,2, 0x6803a0,24, 0x6805c0,1, 0x680600,1, 0x680608,3, 0x680618,2, 0x680800,18, 0x680880,10, 0x6808ac,2, 0x6808f0,3, 0x680900,18, 0x680980,10, 0x6809ac,2, 0x6809f0,3, 0x680c00,18, 0x680c50,2, 0x680c60,6, 0x680c80,18, 0x680cd0,2, 0x680ce0,6, 0x680e00,4, 0x680e20,4, 0x680e80,16, 0x680f00,5, 0x680f20,5, 0x681000,12, 0x681200,1, 0x681208,6, 0x681228,9, 0x681280,1, 0x681288,6, 0x6812a8,9, 0x681400,15, 0x681440,15, 0x681600,7, 0x681620,7, 0x681680,4, 0x68169c,11, 0x6816d0,2, 0x681800,27, 0x681880,4, 0x681898,3, 0x6819a4,1, 0x681a00,4, 0x681a20,4, 0x681a40,6, 0x681a80,4, 0x681aa0,4, 0x681ac0,6, 0x682000,16, 0x682060,7, 0x682080,16, 0x6820e0,7, 0x682200,19, 0x682280,19, 0x682400,14, 0x68243c,9, 0x682464,6, 0x682480,7, 0x6824a0,2, 0x6824ac,2, 0x682500,14, 0x68253c,9, 0x682564,6, 0x682580,7, 0x6825a0,2, 0x6825ac,2, 0x682800,19, 0x682880,19, 0x682b00,1, 0x682b20,1, 0x682b28,4, 0x682b40,1, 0x682b60,1, 0x682b68,4, 0x682c00,7, 0x682c20,1, 0x682c54,18, 0x682ca0,1, 0x682cd4,11, 0x682e00,8, 0x683000,16, 0x683100,7, 0x683120,7, 0x683180,3, 0x684000,4, 0x684014,1, 0x684020,3, 0x684030,3, 0x684040,5, 0x684064,5, 0x68407c,2, 0x6840a0,28, 0x684114,1, 0x684120,3, 0x684130,3, 0x684140,5, 0x684164,5, 0x68417c,2, 0x6841a0,28, 0x684214,1, 0x684220,3, 0x684230,3, 0x684240,5, 0x684264,5, 0x68427c,2, 0x6842a0,28, 0x684314,1, 0x684320,3, 0x684330,3, 0x684340,5, 0x684364,5, 0x68437c,2, 0x6843a0,24, 0x6845c0,1, 0x684600,1, 0x684608,3, 0x684618,2, 0x684800,18, 0x684880,10, 0x6848ac,2, 0x6848f0,3, 0x684900,18, 0x684980,10, 0x6849ac,2, 0x6849f0,3, 0x684c00,18, 0x684c50,2, 0x684c60,6, 0x684c80,18, 0x684cd0,2, 0x684ce0,6, 0x684e00,4, 0x684e20,4, 0x684e80,16, 0x684f00,5, 0x684f20,5, 0x685000,12, 0x685200,1, 0x685208,6, 0x685228,9, 0x685280,1, 0x685288,6, 0x6852a8,9, 0x685400,15, 0x685440,15, 0x685600,7, 0x685620,7, 0x685680,4, 0x68569c,11, 0x6856d0,2, 0x685800,27, 0x685880,4, 0x685898,3, 0x6859a4,1, 0x685a00,4, 0x685a20,4, 0x685a40,6, 0x685a80,4, 0x685aa0,4, 0x685ac0,6, 0x686000,16, 0x686060,7, 0x686080,16, 0x6860e0,7, 0x686200,19, 0x686280,19, 0x686400,14, 0x68643c,9, 0x686464,6, 0x686480,7, 0x6864a0,2, 0x6864ac,2, 0x686500,14, 0x68653c,9, 0x686564,6, 0x686580,7, 0x6865a0,2, 0x6865ac,2, 0x686800,19, 0x686880,19, 0x686b00,1, 0x686b20,1, 0x686b28,4, 0x686b40,1, 0x686b60,1, 0x686b68,4, 0x686c00,7, 0x686c20,1, 0x686c54,18, 0x686ca0,1, 0x686cd4,11, 0x686e00,8, 0x687000,16, 0x687100,7, 0x687120,7, 0x687180,3, 0x68c000,22, 0x68c060,6, 0x68c080,11, 0x68c100,11, 0x68c204,1, 0x68c224,21, 0x68c280,16, 0x68d000,8, 0x68d024,10, 0x68d050,22, 0x68d100,8, 0x68d124,10, 0x68d150,22, 0x68d200,8, 0x68d224,10, 0x68d250,22, 0x68d300,8, 0x68d324,10, 0x68d350,22, 0x68d400,8, 0x68d424,10, 0x68d450,22, 0x68d500,8, 0x68d524,10, 0x68d550,22, 0x68d600,8, 0x68d624,10, 0x68d650,22, 0x68d700,8, 0x68d724,10, 0x68d750,22, 0x68d800,8, 0x68d824,10, 0x68d850,22, 0x68d904,1, 0x68d914,10, 0x68d948,11, 0x68d980,1, 0x68da00,6, 0x68da20,2, 0x68da2c,2, 0x68e800,1, 0x68e808,3, 0x68e838,1, 0x68e844,1, 0x68e850,2, 0x68e860,8, 0x68e900,13, 0x68e940,19, 0x68e990,4, 0x68f000,35, 0x68fc00,10, 0x68fc80,3, 0x68fcc0,1, 0x690000,13, 0x690040,2, 0x690054,4, 0x690080,27, 0x690100,12, 0x690140,11, 0x690170,2, 0x690180,28, 0x690200,6, 0x690240,6, 0x69025c,3, 0x690280,5, 0x6902a0,8, 0x690400,14, 0x690440,14, 0x690480,14, 0x6904c0,14, 0x690540,3, 0x690600,7, 0x690620,14, 0x690680,5, 0x6906a0,7, 0x690800,13, 0x690840,2, 0x690854,4, 0x690880,27, 0x690900,12, 0x690940,11, 0x690970,2, 0x690980,28, 0x690a00,6, 0x690a40,6, 0x690a5c,3, 0x690a80,5, 0x690aa0,8, 0x690c00,14, 0x690c40,14, 0x690c80,14, 0x690cc0,14, 0x690d40,3, 0x690e00,7, 0x690e20,14, 0x690e80,5, 0x690ea0,7, 0x691000,13, 0x691040,2, 0x691054,4, 0x691080,27, 0x691100,12, 0x691140,11, 0x691170,2, 0x691180,28, 0x691200,6, 0x691240,6, 0x69125c,3, 0x691280,5, 0x6912a0,8, 0x691400,14, 0x691440,14, 0x691480,14, 0x6914c0,14, 0x691540,3, 0x691600,7, 0x691620,14, 0x691680,5, 0x6916a0,7, 0x691800,13, 0x691840,2, 0x691854,4, 0x691880,27, 0x691900,12, 0x691940,11, 0x691970,2, 0x691980,28, 0x691a00,6, 0x691a40,6, 0x691a5c,3, 0x691a80,5, 0x691aa0,8, 0x691c00,14, 0x691c40,14, 0x691c80,14, 0x691cc0,14, 0x691d40,3, 0x691e00,7, 0x691e20,14, 0x691e80,5, 0x691ea0,7, 0x692000,8, 0x692040,8, 0x692080,1, 0x692098,6, 0x692100,10, 0x692140,3, 0x692150,2, 0x692180,2, 0x692200,6, 0x692220,17, 0x692280,4, 0x692300,8, 0x692400,2, 0x692480,2, 0x693000,40, 0x693100,64, 0x694000,13, 0x694040,2, 0x694054,4, 0x694080,27, 0x694100,12, 0x694140,11, 0x694170,2, 0x694180,28, 0x694200,6, 0x694240,6, 0x69425c,3, 0x694280,5, 0x6942a0,8, 0x694400,14, 0x694440,14, 0x694480,14, 0x6944c0,14, 0x694540,3, 0x694600,7, 0x694620,14, 0x694680,5, 0x6946a0,7, 0x694800,13, 0x694840,2, 0x694854,4, 0x694880,27, 0x694900,12, 0x694940,11, 0x694970,2, 0x694980,28, 0x694a00,6, 0x694a40,6, 0x694a5c,3, 0x694a80,5, 0x694aa0,8, 0x694c00,14, 0x694c40,14, 0x694c80,14, 0x694cc0,14, 0x694d40,3, 0x694e00,7, 0x694e20,14, 0x694e80,5, 0x694ea0,7, 0x695000,13, 0x695040,2, 0x695054,4, 0x695080,27, 0x695100,12, 0x695140,11, 0x695170,2, 0x695180,28, 0x695200,6, 0x695240,6, 0x69525c,3, 0x695280,5, 0x6952a0,8, 0x695400,14, 0x695440,14, 0x695480,14, 0x6954c0,14, 0x695540,3, 0x695600,7, 0x695620,14, 0x695680,5, 0x6956a0,7, 0x695800,13, 0x695840,2, 0x695854,4, 0x695880,27, 0x695900,12, 0x695940,11, 0x695970,2, 0x695980,28, 0x695a00,6, 0x695a40,6, 0x695a5c,3, 0x695a80,5, 0x695aa0,8, 0x695c00,14, 0x695c40,14, 0x695c80,14, 0x695cc0,14, 0x695d40,3, 0x695e00,7, 0x695e20,14, 0x695e80,5, 0x695ea0,7, 0x696000,8, 0x696040,8, 0x696080,1, 0x696098,6, 0x696100,10, 0x696140,3, 0x696150,2, 0x696180,2, 0x696200,6, 0x696220,17, 0x696280,4, 0x696300,8, 0x696400,2, 0x696480,2, 0x697000,40, 0x697100,64, 0x6a0000,11, 0x6a0040,11, 0x6a0070,3, 0x6a0084,5, 0x6a00a4,5, 0x6a0200,7, 0x6a0220,6, 0x6a0240,7, 0x6a0260,6, 0x6a0280,6, 0x6a02a0,2, 0x6a02ac,2, 0x6a02c0,7, 0x6a02e0,7, 0x6a0300,2, 0x6a030c,2, 0x6a0320,6, 0x6a1000,19, 0x6a2000,25, 0x6a2070,6, 0x6a208c,1, 0x6a2094,1, 0x6a209c,8, 0x6a2104,23, 0x6a2180,7, 0x6a21a0,6, 0x6a21c0,7, 0x6a21e0,6, 0x6a2400,61, 0x6a2500,25, 0x6a2568,4, 0x6a2580,2, 0x6a25a0,1, 0x6a25c0,11, 0x6a2600,9, 0x6a2640,3, 0x6a2650,3, 0x6a2664,3, 0x6a2680,22, 0x6a2700,17, 0x6a2800,11, 0x6a3000,594, 0x6a4000,25, 0x6a4070,6, 0x6a408c,1, 0x6a4094,1, 0x6a409c,8, 0x6a4104,23, 0x6a4180,7, 0x6a41a0,6, 0x6a41c0,7, 0x6a41e0,6, 0x6a4400,61, 0x6a4500,25, 0x6a4568,4, 0x6a4580,2, 0x6a45a0,1, 0x6a45c0,11, 0x6a4600,9, 0x6a4640,3, 0x6a4650,3, 0x6a4664,3, 0x6a4680,22, 0x6a4700,17, 0x6a4800,11, 0x6a5000,594, 0x6aa000,25, 0x6aa070,6, 0x6aa08c,1, 0x6aa094,1, 0x6aa09c,8, 0x6aa104,23, 0x6aa180,7, 0x6aa1a0,6, 0x6aa1c0,7, 0x6aa1e0,6, 0x6aa400,61, 0x6aa500,25, 0x6aa568,4, 0x6aa580,2, 0x6aa5a0,1, 0x6aa5c0,11, 0x6aa600,9, 0x6aa640,3, 0x6aa650,3, 0x6aa664,3, 0x6aa680,22, 0x6aa700,17, 0x6aa800,11, 0x6ab000,594, 0x6ac000,25, 0x6ac070,6, 0x6ac08c,1, 0x6ac094,1, 0x6ac09c,8, 0x6ac104,23, 0x6ac180,7, 0x6ac1a0,6, 0x6ac1c0,7, 0x6ac1e0,6, 0x6ac400,61, 0x6ac500,25, 0x6ac568,4, 0x6ac580,2, 0x6ac5a0,1, 0x6ac5c0,11, 0x6ac600,9, 0x6ac640,3, 0x6ac650,3, 0x6ac664,3, 0x6ac680,22, 0x6ac700,17, 0x6ac800,11, 0x6ad000,594, 0x6bf000,7, 0x6bf048,7, 0x6bf080,8, 0x6bf100,7, 0x6bf148,7, 0x6bf180,8, 0x6bf400,7, 0x6bf448,7, 0x6bf480,8, 0x6bf500,7, 0x6bf548,7, 0x6bf580,8, 0x6c0000,31, 0x6c0080,31, 0x6c0100,31, 0x6c0180,31, 0x6c0200,31, 0x6c0280,31, 0x6c0300,31, 0x6c0380,31, 0x6c0400,64, 0x6c0504,5, 0x6c0520,1, 0x6c0600,6, 0x6c0620,6, 0x6c0640,6, 0x6c0660,6, 0x6c0680,6, 0x6c06a0,6, 0x6c06c0,6, 0x6c06e0,6, 0x6c0700,4, 0x6c0720,3, 0x6c0730,3, 0x6c0760,3, 0x6c0770,1, 0x6c0780,5, 0x6c0800,31, 0x6c0880,31, 0x6c0900,31, 0x6c0980,31, 0x6c0a00,31, 0x6c0a80,31, 0x6c0b00,31, 0x6c0b80,31, 0x6c0c00,64, 0x6c0d04,5, 0x6c0d20,1, 0x6c0e00,6, 0x6c0e20,6, 0x6c0e40,6, 0x6c0e60,6, 0x6c0e80,6, 0x6c0ea0,6, 0x6c0ec0,6, 0x6c0ee0,6, 0x6c0f00,4, 0x6c0f20,3, 0x6c0f30,3, 0x6c0f60,3, 0x6c0f70,1, 0x6c0f80,5, 0x6c1000,11, 0x6c1040,11, 0x6c1080,11, 0x6c10c0,11, 0x6c1100,21, 0x6c1160,5, 0x6c1180,3, 0x6c1190,3, 0x6c11a0,11, 0x6c11d0,3, 0x6c11e0,3, 0x6c1200,86, 0x6c1400,5, 0x6c141c,1, 0x6c1440,6, 0x6c1460,1, 0x6c1480,3, 0x6c1490,1, 0x6c1800,11, 0x6c1840,11, 0x6c1880,11, 0x6c18c0,11, 0x6c1900,21, 0x6c1960,5, 0x6c1980,3, 0x6c1990,3, 0x6c19a0,11, 0x6c19d0,3, 0x6c19e0,3, 0x6c1a00,86, 0x6c1c00,5, 0x6c1c1c,1, 0x6c1c40,6, 0x6c1c60,1, 0x6c1c80,3, 0x6c1c90,1, 0x6c2000,32, 0x6c2084,1, 0x6c2094,3, 0x6c20c4,3, 0x6c2100,1, 0x6c210c,3, 0x6c2120,3, 0x6c2140,1, 0x6c2150,9, 0x6c2180,2, 0x6c21a4,1, 0x6c21b4,8, 0x6c2200,20, 0x6c2260,6, 0x6c2280,4, 0x6c22a0,6, 0x6c3000,31, 0x6c3080,31, 0x6c3100,31, 0x6c3180,31, 0x6c3200,31, 0x6c3280,31, 0x6c3300,31, 0x6c3380,31, 0x6c3400,64, 0x6c3504,5, 0x6c3520,1, 0x6c3600,6, 0x6c3620,6, 0x6c3640,6, 0x6c3660,6, 0x6c3680,6, 0x6c36a0,6, 0x6c36c0,6, 0x6c36e0,6, 0x6c3700,4, 0x6c3720,3, 0x6c3730,3, 0x6c3760,3, 0x6c3770,1, 0x6c3780,5, 0x6c3800,31, 0x6c3880,31, 0x6c3900,31, 0x6c3980,31, 0x6c3a00,31, 0x6c3a80,31, 0x6c3b00,31, 0x6c3b80,31, 0x6c3c00,64, 0x6c3d04,5, 0x6c3d20,1, 0x6c3e00,6, 0x6c3e20,6, 0x6c3e40,6, 0x6c3e60,6, 0x6c3e80,6, 0x6c3ea0,6, 0x6c3ec0,6, 0x6c3ee0,6, 0x6c3f00,4, 0x6c3f20,3, 0x6c3f30,3, 0x6c3f60,3, 0x6c3f70,1, 0x6c3f80,5, 0x6c4000,11, 0x6c4040,11, 0x6c4080,11, 0x6c40c0,11, 0x6c4100,21, 0x6c4160,5, 0x6c4180,3, 0x6c4190,3, 0x6c41a0,11, 0x6c41d0,3, 0x6c41e0,3, 0x6c4200,86, 0x6c4400,5, 0x6c441c,1, 0x6c4440,6, 0x6c4460,1, 0x6c4480,3, 0x6c4490,1, 0x6c4800,11, 0x6c4840,11, 0x6c4880,11, 0x6c48c0,11, 0x6c4900,21, 0x6c4960,5, 0x6c4980,3, 0x6c4990,3, 0x6c49a0,11, 0x6c49d0,3, 0x6c49e0,3, 0x6c4a00,86, 0x6c4c00,5, 0x6c4c1c,1, 0x6c4c40,6, 0x6c4c60,1, 0x6c4c80,3, 0x6c4c90,1, 0x6c5000,32, 0x6c5084,1, 0x6c5094,3, 0x6c50c4,3, 0x6c5100,1, 0x6c510c,3, 0x6c5120,3, 0x6c5140,1, 0x6c5150,9, 0x6c5180,2, 0x6c51a4,1, 0x6c51b4,8, 0x6c5200,20, 0x6c5260,6, 0x6c5280,4, 0x6c52a0,6, 0x6c6100,1, 0x6c610c,4, 0x6c6120,16, 0x6c6180,1, 0x6c6200,91, 0x6c6508,1, 0x6c6540,1, 0x6c7000,1, 0x6c7014,1, 0x6c701c,2, 0x6c7034,1, 0x6c703c,5, 0x6c7060,6, 0x6c7080,4, 0x6c70a0,6, 0x6c70c0,3, 0x6c70d0,2, 0x6c7100,11, 0x6c7134,4, 0x6c7150,3, 0x6c7200,3, 0x6c7210,1, 0x6c7220,9, 0x6c7260,2, 0x6c7300,25, 0x6c9000,19, 0x6d0000,286, 0x6d0800,3, 0x6d0810,3, 0x6d0820,3, 0x6d0830,4, 0x6d0844,7, 0x6d1000,3, 0x6d1010,86, 0x6d1170,18, 0x6d1200,1, 0x6d1220,1, 0x6d1240,1, 0x6d1254,1, 0x6d125c,4, 0x6d1270,1, 0x6d1278,1, 0x6d1400,3, 0x6d1410,86, 0x6d1570,20, 0x6d1604,1, 0x6d1640,48, 0x6d1704,1, 0x6d1710,5, 0x6d1740,6, 0x6d18e0,12, 0x6d1920,4, 0x6d1a00,7, 0x6d1a20,37, 0x6d1b00,41, 0x6d1bb0,3, 0x6d1c00,25, 0x6d1c80,7, 0x6d1ca0,6, 0x6d1cc0,7, 0x6d1d00,7, 0x6d1d20,5, 0x6d1d40,10, 0x6d2000,286, 0x6d2800,3, 0x6d2810,3, 0x6d2820,3, 0x6d2830,4, 0x6d2844,7, 0x6d3000,3, 0x6d3010,86, 0x6d3170,18, 0x6d3200,1, 0x6d3220,1, 0x6d3240,1, 0x6d3254,1, 0x6d325c,4, 0x6d3270,1, 0x6d3278,1, 0x6d3400,3, 0x6d3410,86, 0x6d3570,20, 0x6d3604,1, 0x6d3640,48, 0x6d3704,1, 0x6d3710,5, 0x6d3740,6, 0x6d38e0,12, 0x6d3920,4, 0x6d3a00,7, 0x6d3a20,37, 0x6d3b00,41, 0x6d3bb0,3, 0x6d3c00,25, 0x6d3c80,7, 0x6d3ca0,6, 0x6d3cc0,7, 0x6d3d00,7, 0x6d3d20,5, 0x6d3d40,10, 0x6d4000,19, 0x6d5000,11, 0x6d5040,5, 0x6d5058,1, 0x6d5060,1, 0x6e0000,3, 0x6e0010,3, 0x6e0020,5, 0x6e0038,9, 0x6e0060,8, 0x6e0100,17, 0x6e0200,3, 0x6e0210,3, 0x6e0220,5, 0x6e0238,9, 0x6e0260,8, 0x6e0300,17, 0x6e0400,3, 0x6e0414,1, 0x6e041c,33, 0x6e0540,33, 0x6e05c8,12, 0x6e0800,2, 0x6e0844,1, 0x6e084c,1, 0x6e0880,27, 0x6e0900,4, 0x6e0980,19, 0x6e0a00,4, 0x6e0a80,19, 0x6e0b00,1, 0x6e0b40,5, 0x6e0b60,5, 0x6e0b80,6, 0x6e0bb0,17, 0x6e0c00,13, 0x6e0c40,5, 0x6e0c80,12, 0x6e1000,3, 0x6e1010,3, 0x6e1020,5, 0x6e1038,9, 0x6e1060,8, 0x6e1100,17, 0x6e1200,3, 0x6e1210,3, 0x6e1220,5, 0x6e1238,9, 0x6e1260,8, 0x6e1300,17, 0x6e1400,3, 0x6e1414,1, 0x6e141c,33, 0x6e1540,33, 0x6e15c8,12, 0x6e1800,2, 0x6e1844,1, 0x6e184c,1, 0x6e1880,27, 0x6e1900,4, 0x6e1980,19, 0x6e1a00,4, 0x6e1a80,19, 0x6e1b00,1, 0x6e1b40,5, 0x6e1b60,5, 0x6e1b80,6, 0x6e1bb0,17, 0x6e1c00,13, 0x6e1c40,5, 0x6e1c80,12, 0x6e2000,19, 0x6e2080,4, 0x6e3000,19, 0x6e4000,2, 0x6e400c,5, 0x6e4028,3, 0x6e4038,3, 0x6e4050,1, 0x6e4080,13, 0x6e4120,4, 0x6e4140,1, 0x6e4400,26, 0x6e4470,3, 0x6e4580,10, 0x6e45c0,8, 0x6e45e8,2, 0x6e45f4,2, 0x6e4600,5, 0x6e4618,1, 0x6e4620,1, 0x6e4628,1, 0x6e4630,2, 0x6e4640,2, 0x6e4650,2, 0x6e4690,4, 0x6e4740,2, 0x6e4800,2, 0x6e480c,5, 0x6e4828,3, 0x6e4838,3, 0x6e4850,1, 0x6e4880,13, 0x6e4920,4, 0x6e4940,1, 0x6e4c00,26, 0x6e4c70,3, 0x6e4d80,10, 0x6e4dc0,8, 0x6e4de8,2, 0x6e4df4,2, 0x6e4e00,5, 0x6e4e18,1, 0x6e4e20,1, 0x6e4e28,1, 0x6e4e30,2, 0x6e4e40,2, 0x6e4e50,2, 0x6e4e90,4, 0x6e4f40,2, 0x6e5800,11, 0x6e5880,2, 0x6e58b0,2, 0x6e6000,35, 0x6e6c00,10, 0x6e6c80,3, 0x700000,4, 0x700014,1, 0x700020,3, 0x700030,3, 0x700040,5, 0x700064,5, 0x70007c,2, 0x7000a0,28, 0x700114,1, 0x700120,3, 0x700130,3, 0x700140,5, 0x700164,5, 0x70017c,2, 0x7001a0,28, 0x700214,1, 0x700220,3, 0x700230,3, 0x700240,5, 0x700264,5, 0x70027c,2, 0x7002a0,28, 0x700314,1, 0x700320,3, 0x700330,3, 0x700340,5, 0x700364,5, 0x70037c,2, 0x7003a0,24, 0x7005c0,1, 0x700600,1, 0x700608,3, 0x700618,2, 0x700800,18, 0x700880,10, 0x7008ac,2, 0x7008f0,3, 0x700900,18, 0x700980,10, 0x7009ac,2, 0x7009f0,3, 0x700c00,18, 0x700c50,2, 0x700c60,6, 0x700c80,18, 0x700cd0,2, 0x700ce0,6, 0x700e00,4, 0x700e20,4, 0x700e80,16, 0x700f00,5, 0x700f20,5, 0x701000,12, 0x701200,1, 0x701208,6, 0x701228,9, 0x701280,1, 0x701288,6, 0x7012a8,9, 0x701400,15, 0x701440,15, 0x701600,7, 0x701620,7, 0x701680,4, 0x70169c,11, 0x7016d0,2, 0x701800,27, 0x701880,4, 0x701898,3, 0x7019a4,1, 0x701a00,4, 0x701a20,4, 0x701a40,6, 0x701a80,4, 0x701aa0,4, 0x701ac0,6, 0x702000,16, 0x702060,7, 0x702080,16, 0x7020e0,7, 0x702200,19, 0x702280,19, 0x702400,14, 0x70243c,9, 0x702464,6, 0x702480,7, 0x7024a0,2, 0x7024ac,2, 0x702500,14, 0x70253c,9, 0x702564,6, 0x702580,7, 0x7025a0,2, 0x7025ac,2, 0x702800,19, 0x702880,19, 0x702b00,1, 0x702b20,1, 0x702b28,4, 0x702b40,1, 0x702b60,1, 0x702b68,4, 0x702c00,7, 0x702c20,1, 0x702c54,18, 0x702ca0,1, 0x702cd4,11, 0x702e00,8, 0x703000,16, 0x703100,7, 0x703120,7, 0x703180,3, 0x704000,4, 0x704014,1, 0x704020,3, 0x704030,3, 0x704040,5, 0x704064,5, 0x70407c,2, 0x7040a0,28, 0x704114,1, 0x704120,3, 0x704130,3, 0x704140,5, 0x704164,5, 0x70417c,2, 0x7041a0,28, 0x704214,1, 0x704220,3, 0x704230,3, 0x704240,5, 0x704264,5, 0x70427c,2, 0x7042a0,28, 0x704314,1, 0x704320,3, 0x704330,3, 0x704340,5, 0x704364,5, 0x70437c,2, 0x7043a0,24, 0x7045c0,1, 0x704600,1, 0x704608,3, 0x704618,2, 0x704800,18, 0x704880,10, 0x7048ac,2, 0x7048f0,3, 0x704900,18, 0x704980,10, 0x7049ac,2, 0x7049f0,3, 0x704c00,18, 0x704c50,2, 0x704c60,6, 0x704c80,18, 0x704cd0,2, 0x704ce0,6, 0x704e00,4, 0x704e20,4, 0x704e80,16, 0x704f00,5, 0x704f20,5, 0x705000,12, 0x705200,1, 0x705208,6, 0x705228,9, 0x705280,1, 0x705288,6, 0x7052a8,9, 0x705400,15, 0x705440,15, 0x705600,7, 0x705620,7, 0x705680,4, 0x70569c,11, 0x7056d0,2, 0x705800,27, 0x705880,4, 0x705898,3, 0x7059a4,1, 0x705a00,4, 0x705a20,4, 0x705a40,6, 0x705a80,4, 0x705aa0,4, 0x705ac0,6, 0x706000,16, 0x706060,7, 0x706080,16, 0x7060e0,7, 0x706200,19, 0x706280,19, 0x706400,14, 0x70643c,9, 0x706464,6, 0x706480,7, 0x7064a0,2, 0x7064ac,2, 0x706500,14, 0x70653c,9, 0x706564,6, 0x706580,7, 0x7065a0,2, 0x7065ac,2, 0x706800,19, 0x706880,19, 0x706b00,1, 0x706b20,1, 0x706b28,4, 0x706b40,1, 0x706b60,1, 0x706b68,4, 0x706c00,7, 0x706c20,1, 0x706c54,18, 0x706ca0,1, 0x706cd4,11, 0x706e00,8, 0x707000,16, 0x707100,7, 0x707120,7, 0x707180,3, 0x70c000,22, 0x70c060,6, 0x70c080,11, 0x70c100,11, 0x70c204,1, 0x70c224,21, 0x70c280,16, 0x70d000,8, 0x70d024,10, 0x70d050,22, 0x70d100,8, 0x70d124,10, 0x70d150,22, 0x70d200,8, 0x70d224,10, 0x70d250,22, 0x70d300,8, 0x70d324,10, 0x70d350,22, 0x70d400,8, 0x70d424,10, 0x70d450,22, 0x70d500,8, 0x70d524,10, 0x70d550,22, 0x70d600,8, 0x70d624,10, 0x70d650,22, 0x70d700,8, 0x70d724,10, 0x70d750,22, 0x70d800,8, 0x70d824,10, 0x70d850,22, 0x70d904,1, 0x70d914,10, 0x70d948,11, 0x70d980,1, 0x70da00,6, 0x70da20,2, 0x70da2c,2, 0x70e800,1, 0x70e808,3, 0x70e838,1, 0x70e844,1, 0x70e850,2, 0x70e860,8, 0x70e900,13, 0x70e940,19, 0x70e990,4, 0x70f000,35, 0x70fc00,10, 0x70fc80,3, 0x70fcc0,1, 0x710000,13, 0x710040,2, 0x710054,4, 0x710080,27, 0x710100,12, 0x710140,11, 0x710170,2, 0x710180,28, 0x710200,6, 0x710240,6, 0x71025c,3, 0x710280,5, 0x7102a0,8, 0x710400,14, 0x710440,14, 0x710480,14, 0x7104c0,14, 0x710540,3, 0x710600,7, 0x710620,14, 0x710680,5, 0x7106a0,7, 0x710800,13, 0x710840,2, 0x710854,4, 0x710880,27, 0x710900,12, 0x710940,11, 0x710970,2, 0x710980,28, 0x710a00,6, 0x710a40,6, 0x710a5c,3, 0x710a80,5, 0x710aa0,8, 0x710c00,14, 0x710c40,14, 0x710c80,14, 0x710cc0,14, 0x710d40,3, 0x710e00,7, 0x710e20,14, 0x710e80,5, 0x710ea0,7, 0x711000,13, 0x711040,2, 0x711054,4, 0x711080,27, 0x711100,12, 0x711140,11, 0x711170,2, 0x711180,28, 0x711200,6, 0x711240,6, 0x71125c,3, 0x711280,5, 0x7112a0,8, 0x711400,14, 0x711440,14, 0x711480,14, 0x7114c0,14, 0x711540,3, 0x711600,7, 0x711620,14, 0x711680,5, 0x7116a0,7, 0x711800,13, 0x711840,2, 0x711854,4, 0x711880,27, 0x711900,12, 0x711940,11, 0x711970,2, 0x711980,28, 0x711a00,6, 0x711a40,6, 0x711a5c,3, 0x711a80,5, 0x711aa0,8, 0x711c00,14, 0x711c40,14, 0x711c80,14, 0x711cc0,14, 0x711d40,3, 0x711e00,7, 0x711e20,14, 0x711e80,5, 0x711ea0,7, 0x712000,8, 0x712040,8, 0x712080,1, 0x712098,6, 0x712100,10, 0x712140,3, 0x712150,2, 0x712180,2, 0x712200,6, 0x712220,17, 0x712280,4, 0x712300,8, 0x712400,2, 0x712480,2, 0x713000,40, 0x713100,64, 0x714000,13, 0x714040,2, 0x714054,4, 0x714080,27, 0x714100,12, 0x714140,11, 0x714170,2, 0x714180,28, 0x714200,6, 0x714240,6, 0x71425c,3, 0x714280,5, 0x7142a0,8, 0x714400,14, 0x714440,14, 0x714480,14, 0x7144c0,14, 0x714540,3, 0x714600,7, 0x714620,14, 0x714680,5, 0x7146a0,7, 0x714800,13, 0x714840,2, 0x714854,4, 0x714880,27, 0x714900,12, 0x714940,11, 0x714970,2, 0x714980,28, 0x714a00,6, 0x714a40,6, 0x714a5c,3, 0x714a80,5, 0x714aa0,8, 0x714c00,14, 0x714c40,14, 0x714c80,14, 0x714cc0,14, 0x714d40,3, 0x714e00,7, 0x714e20,14, 0x714e80,5, 0x714ea0,7, 0x715000,13, 0x715040,2, 0x715054,4, 0x715080,27, 0x715100,12, 0x715140,11, 0x715170,2, 0x715180,28, 0x715200,6, 0x715240,6, 0x71525c,3, 0x715280,5, 0x7152a0,8, 0x715400,14, 0x715440,14, 0x715480,14, 0x7154c0,14, 0x715540,3, 0x715600,7, 0x715620,14, 0x715680,5, 0x7156a0,7, 0x715800,13, 0x715840,2, 0x715854,4, 0x715880,27, 0x715900,12, 0x715940,11, 0x715970,2, 0x715980,28, 0x715a00,6, 0x715a40,6, 0x715a5c,3, 0x715a80,5, 0x715aa0,8, 0x715c00,14, 0x715c40,14, 0x715c80,14, 0x715cc0,14, 0x715d40,3, 0x715e00,7, 0x715e20,14, 0x715e80,5, 0x715ea0,7, 0x716000,8, 0x716040,8, 0x716080,1, 0x716098,6, 0x716100,10, 0x716140,3, 0x716150,2, 0x716180,2, 0x716200,6, 0x716220,17, 0x716280,4, 0x716300,8, 0x716400,2, 0x716480,2, 0x717000,40, 0x717100,64, 0x720000,11, 0x720040,11, 0x720070,3, 0x720084,5, 0x7200a4,5, 0x720200,7, 0x720220,6, 0x720240,7, 0x720260,6, 0x720280,6, 0x7202a0,2, 0x7202ac,2, 0x7202c0,7, 0x7202e0,7, 0x720300,2, 0x72030c,2, 0x720320,6, 0x721000,19, 0x722000,25, 0x722070,6, 0x72208c,1, 0x722094,1, 0x72209c,8, 0x722104,23, 0x722180,7, 0x7221a0,6, 0x7221c0,7, 0x7221e0,6, 0x722400,61, 0x722500,25, 0x722568,4, 0x722580,2, 0x7225a0,1, 0x7225c0,11, 0x722600,9, 0x722640,3, 0x722650,3, 0x722664,3, 0x722680,22, 0x722700,17, 0x722800,11, 0x723000,594, 0x724000,25, 0x724070,6, 0x72408c,1, 0x724094,1, 0x72409c,8, 0x724104,23, 0x724180,7, 0x7241a0,6, 0x7241c0,7, 0x7241e0,6, 0x724400,61, 0x724500,25, 0x724568,4, 0x724580,2, 0x7245a0,1, 0x7245c0,11, 0x724600,9, 0x724640,3, 0x724650,3, 0x724664,3, 0x724680,22, 0x724700,17, 0x724800,11, 0x725000,594, 0x72a000,25, 0x72a070,6, 0x72a08c,1, 0x72a094,1, 0x72a09c,8, 0x72a104,23, 0x72a180,7, 0x72a1a0,6, 0x72a1c0,7, 0x72a1e0,6, 0x72a400,61, 0x72a500,25, 0x72a568,4, 0x72a580,2, 0x72a5a0,1, 0x72a5c0,11, 0x72a600,9, 0x72a640,3, 0x72a650,3, 0x72a664,3, 0x72a680,22, 0x72a700,17, 0x72a800,11, 0x72b000,594, 0x72c000,25, 0x72c070,6, 0x72c08c,1, 0x72c094,1, 0x72c09c,8, 0x72c104,23, 0x72c180,7, 0x72c1a0,6, 0x72c1c0,7, 0x72c1e0,6, 0x72c400,61, 0x72c500,25, 0x72c568,4, 0x72c580,2, 0x72c5a0,1, 0x72c5c0,11, 0x72c600,9, 0x72c640,3, 0x72c650,3, 0x72c664,3, 0x72c680,22, 0x72c700,17, 0x72c800,11, 0x72d000,594, 0x73f000,7, 0x73f048,7, 0x73f080,8, 0x73f100,7, 0x73f148,7, 0x73f180,8, 0x73f400,7, 0x73f448,7, 0x73f480,8, 0x73f500,7, 0x73f548,7, 0x73f580,8, 0x740000,31, 0x740080,31, 0x740100,31, 0x740180,31, 0x740200,31, 0x740280,31, 0x740300,31, 0x740380,31, 0x740400,64, 0x740504,5, 0x740520,1, 0x740600,6, 0x740620,6, 0x740640,6, 0x740660,6, 0x740680,6, 0x7406a0,6, 0x7406c0,6, 0x7406e0,6, 0x740700,4, 0x740720,3, 0x740730,3, 0x740760,3, 0x740770,1, 0x740780,5, 0x740800,31, 0x740880,31, 0x740900,31, 0x740980,31, 0x740a00,31, 0x740a80,31, 0x740b00,31, 0x740b80,31, 0x740c00,64, 0x740d04,5, 0x740d20,1, 0x740e00,6, 0x740e20,6, 0x740e40,6, 0x740e60,6, 0x740e80,6, 0x740ea0,6, 0x740ec0,6, 0x740ee0,6, 0x740f00,4, 0x740f20,3, 0x740f30,3, 0x740f60,3, 0x740f70,1, 0x740f80,5, 0x741000,11, 0x741040,11, 0x741080,11, 0x7410c0,11, 0x741100,21, 0x741160,5, 0x741180,3, 0x741190,3, 0x7411a0,11, 0x7411d0,3, 0x7411e0,3, 0x741200,86, 0x741400,5, 0x74141c,1, 0x741440,6, 0x741460,1, 0x741480,3, 0x741490,1, 0x741800,11, 0x741840,11, 0x741880,11, 0x7418c0,11, 0x741900,21, 0x741960,5, 0x741980,3, 0x741990,3, 0x7419a0,11, 0x7419d0,3, 0x7419e0,3, 0x741a00,86, 0x741c00,5, 0x741c1c,1, 0x741c40,6, 0x741c60,1, 0x741c80,3, 0x741c90,1, 0x742000,32, 0x742084,1, 0x742094,3, 0x7420c4,3, 0x742100,1, 0x74210c,3, 0x742120,3, 0x742140,1, 0x742150,9, 0x742180,2, 0x7421a4,1, 0x7421b4,8, 0x742200,20, 0x742260,6, 0x742280,4, 0x7422a0,6, 0x743000,31, 0x743080,31, 0x743100,31, 0x743180,31, 0x743200,31, 0x743280,31, 0x743300,31, 0x743380,31, 0x743400,64, 0x743504,5, 0x743520,1, 0x743600,6, 0x743620,6, 0x743640,6, 0x743660,6, 0x743680,6, 0x7436a0,6, 0x7436c0,6, 0x7436e0,6, 0x743700,4, 0x743720,3, 0x743730,3, 0x743760,3, 0x743770,1, 0x743780,5, 0x743800,31, 0x743880,31, 0x743900,31, 0x743980,31, 0x743a00,31, 0x743a80,31, 0x743b00,31, 0x743b80,31, 0x743c00,64, 0x743d04,5, 0x743d20,1, 0x743e00,6, 0x743e20,6, 0x743e40,6, 0x743e60,6, 0x743e80,6, 0x743ea0,6, 0x743ec0,6, 0x743ee0,6, 0x743f00,4, 0x743f20,3, 0x743f30,3, 0x743f60,3, 0x743f70,1, 0x743f80,5, 0x744000,11, 0x744040,11, 0x744080,11, 0x7440c0,11, 0x744100,21, 0x744160,5, 0x744180,3, 0x744190,3, 0x7441a0,11, 0x7441d0,3, 0x7441e0,3, 0x744200,86, 0x744400,5, 0x74441c,1, 0x744440,6, 0x744460,1, 0x744480,3, 0x744490,1, 0x744800,11, 0x744840,11, 0x744880,11, 0x7448c0,11, 0x744900,21, 0x744960,5, 0x744980,3, 0x744990,3, 0x7449a0,11, 0x7449d0,3, 0x7449e0,3, 0x744a00,86, 0x744c00,5, 0x744c1c,1, 0x744c40,6, 0x744c60,1, 0x744c80,3, 0x744c90,1, 0x745000,32, 0x745084,1, 0x745094,3, 0x7450c4,3, 0x745100,1, 0x74510c,3, 0x745120,3, 0x745140,1, 0x745150,9, 0x745180,2, 0x7451a4,1, 0x7451b4,8, 0x745200,20, 0x745260,6, 0x745280,4, 0x7452a0,6, 0x746100,1, 0x74610c,4, 0x746120,16, 0x746180,1, 0x746200,91, 0x746508,1, 0x746540,1, 0x747000,1, 0x747014,1, 0x74701c,2, 0x747034,1, 0x74703c,5, 0x747060,6, 0x747080,4, 0x7470a0,6, 0x7470c0,3, 0x7470d0,2, 0x747100,11, 0x747134,4, 0x747150,3, 0x747200,3, 0x747210,1, 0x747220,9, 0x747260,2, 0x747300,25, 0x749000,19, 0x750000,286, 0x750800,3, 0x750810,3, 0x750820,3, 0x750830,4, 0x750844,7, 0x751000,3, 0x751010,86, 0x751170,18, 0x751200,1, 0x751220,1, 0x751240,1, 0x751254,1, 0x75125c,4, 0x751270,1, 0x751278,1, 0x751400,3, 0x751410,86, 0x751570,20, 0x751604,1, 0x751640,48, 0x751704,1, 0x751710,5, 0x751740,6, 0x7518e0,12, 0x751920,4, 0x751a00,7, 0x751a20,37, 0x751b00,41, 0x751bb0,3, 0x751c00,25, 0x751c80,7, 0x751ca0,6, 0x751cc0,7, 0x751d00,7, 0x751d20,5, 0x751d40,10, 0x752000,286, 0x752800,3, 0x752810,3, 0x752820,3, 0x752830,4, 0x752844,7, 0x753000,3, 0x753010,86, 0x753170,18, 0x753200,1, 0x753220,1, 0x753240,1, 0x753254,1, 0x75325c,4, 0x753270,1, 0x753278,1, 0x753400,3, 0x753410,86, 0x753570,20, 0x753604,1, 0x753640,48, 0x753704,1, 0x753710,5, 0x753740,6, 0x7538e0,12, 0x753920,4, 0x753a00,7, 0x753a20,37, 0x753b00,41, 0x753bb0,3, 0x753c00,25, 0x753c80,7, 0x753ca0,6, 0x753cc0,7, 0x753d00,7, 0x753d20,5, 0x753d40,10, 0x754000,19, 0x755000,11, 0x755040,5, 0x755058,1, 0x755060,1, 0x760000,3, 0x760010,3, 0x760020,5, 0x760038,9, 0x760060,8, 0x760100,17, 0x760200,3, 0x760210,3, 0x760220,5, 0x760238,9, 0x760260,8, 0x760300,17, 0x760400,3, 0x760414,1, 0x76041c,33, 0x760540,33, 0x7605c8,12, 0x760800,2, 0x760844,1, 0x76084c,1, 0x760880,27, 0x760900,4, 0x760980,19, 0x760a00,4, 0x760a80,19, 0x760b00,1, 0x760b40,5, 0x760b60,5, 0x760b80,6, 0x760bb0,17, 0x760c00,13, 0x760c40,5, 0x760c80,12, 0x761000,3, 0x761010,3, 0x761020,5, 0x761038,9, 0x761060,8, 0x761100,17, 0x761200,3, 0x761210,3, 0x761220,5, 0x761238,9, 0x761260,8, 0x761300,17, 0x761400,3, 0x761414,1, 0x76141c,33, 0x761540,33, 0x7615c8,12, 0x761800,2, 0x761844,1, 0x76184c,1, 0x761880,27, 0x761900,4, 0x761980,19, 0x761a00,4, 0x761a80,19, 0x761b00,1, 0x761b40,5, 0x761b60,5, 0x761b80,6, 0x761bb0,17, 0x761c00,13, 0x761c40,5, 0x761c80,12, 0x762000,19, 0x762080,4, 0x763000,19, 0x764000,2, 0x76400c,5, 0x764028,3, 0x764038,3, 0x764050,1, 0x764080,13, 0x764120,4, 0x764140,1, 0x764400,26, 0x764470,3, 0x764580,10, 0x7645c0,8, 0x7645e8,2, 0x7645f4,2, 0x764600,5, 0x764618,1, 0x764620,1, 0x764628,1, 0x764630,2, 0x764640,2, 0x764650,2, 0x764690,4, 0x764740,2, 0x764800,2, 0x76480c,5, 0x764828,3, 0x764838,3, 0x764850,1, 0x764880,13, 0x764920,4, 0x764940,1, 0x764c00,26, 0x764c70,3, 0x764d80,10, 0x764dc0,8, 0x764de8,2, 0x764df4,2, 0x764e00,5, 0x764e18,1, 0x764e20,1, 0x764e28,1, 0x764e30,2, 0x764e40,2, 0x764e50,2, 0x764e90,4, 0x764f40,2, 0x765800,11, 0x765880,2, 0x7658b0,2, 0x766000,35, 0x766c00,10, 0x766c80,3, 0x780000,4, 0x780014,1, 0x780020,3, 0x780030,3, 0x780040,5, 0x780064,5, 0x78007c,2, 0x7800a0,28, 0x780114,1, 0x780120,3, 0x780130,3, 0x780140,5, 0x780164,5, 0x78017c,2, 0x7801a0,28, 0x780214,1, 0x780220,3, 0x780230,3, 0x780240,5, 0x780264,5, 0x78027c,2, 0x7802a0,28, 0x780314,1, 0x780320,3, 0x780330,3, 0x780340,5, 0x780364,5, 0x78037c,2, 0x7803a0,24, 0x7805c0,1, 0x780600,1, 0x780608,3, 0x780618,2, 0x780800,18, 0x780880,10, 0x7808ac,2, 0x7808f0,3, 0x780900,18, 0x780980,10, 0x7809ac,2, 0x7809f0,3, 0x780c00,18, 0x780c50,2, 0x780c60,6, 0x780c80,18, 0x780cd0,2, 0x780ce0,6, 0x780e00,4, 0x780e20,4, 0x780e80,16, 0x780f00,5, 0x780f20,5, 0x781000,12, 0x781200,1, 0x781208,6, 0x781228,9, 0x781280,1, 0x781288,6, 0x7812a8,9, 0x781400,15, 0x781440,15, 0x781600,7, 0x781620,7, 0x781680,4, 0x78169c,11, 0x7816d0,2, 0x781800,27, 0x781880,4, 0x781898,3, 0x7819a4,1, 0x781a00,4, 0x781a20,4, 0x781a40,6, 0x781a80,4, 0x781aa0,4, 0x781ac0,6, 0x782000,16, 0x782060,7, 0x782080,16, 0x7820e0,7, 0x782200,19, 0x782280,19, 0x782400,14, 0x78243c,9, 0x782464,6, 0x782480,7, 0x7824a0,2, 0x7824ac,2, 0x782500,14, 0x78253c,9, 0x782564,6, 0x782580,7, 0x7825a0,2, 0x7825ac,2, 0x782800,19, 0x782880,19, 0x782b00,1, 0x782b20,1, 0x782b28,4, 0x782b40,1, 0x782b60,1, 0x782b68,4, 0x782c00,7, 0x782c20,1, 0x782c54,18, 0x782ca0,1, 0x782cd4,11, 0x782e00,8, 0x783000,16, 0x783100,7, 0x783120,7, 0x783180,3, 0x784000,4, 0x784014,1, 0x784020,3, 0x784030,3, 0x784040,5, 0x784064,5, 0x78407c,2, 0x7840a0,28, 0x784114,1, 0x784120,3, 0x784130,3, 0x784140,5, 0x784164,5, 0x78417c,2, 0x7841a0,28, 0x784214,1, 0x784220,3, 0x784230,3, 0x784240,5, 0x784264,5, 0x78427c,2, 0x7842a0,28, 0x784314,1, 0x784320,3, 0x784330,3, 0x784340,5, 0x784364,5, 0x78437c,2, 0x7843a0,24, 0x7845c0,1, 0x784600,1, 0x784608,3, 0x784618,2, 0x784800,18, 0x784880,10, 0x7848ac,2, 0x7848f0,3, 0x784900,18, 0x784980,10, 0x7849ac,2, 0x7849f0,3, 0x784c00,18, 0x784c50,2, 0x784c60,6, 0x784c80,18, 0x784cd0,2, 0x784ce0,6, 0x784e00,4, 0x784e20,4, 0x784e80,16, 0x784f00,5, 0x784f20,5, 0x785000,12, 0x785200,1, 0x785208,6, 0x785228,9, 0x785280,1, 0x785288,6, 0x7852a8,9, 0x785400,15, 0x785440,15, 0x785600,7, 0x785620,7, 0x785680,4, 0x78569c,11, 0x7856d0,2, 0x785800,27, 0x785880,4, 0x785898,3, 0x7859a4,1, 0x785a00,4, 0x785a20,4, 0x785a40,6, 0x785a80,4, 0x785aa0,4, 0x785ac0,6, 0x786000,16, 0x786060,7, 0x786080,16, 0x7860e0,7, 0x786200,19, 0x786280,19, 0x786400,14, 0x78643c,9, 0x786464,6, 0x786480,7, 0x7864a0,2, 0x7864ac,2, 0x786500,14, 0x78653c,9, 0x786564,6, 0x786580,7, 0x7865a0,2, 0x7865ac,2, 0x786800,19, 0x786880,19, 0x786b00,1, 0x786b20,1, 0x786b28,4, 0x786b40,1, 0x786b60,1, 0x786b68,4, 0x786c00,7, 0x786c20,1, 0x786c54,18, 0x786ca0,1, 0x786cd4,11, 0x786e00,8, 0x787000,16, 0x787100,7, 0x787120,7, 0x787180,3, 0x78c000,22, 0x78c060,6, 0x78c080,11, 0x78c100,11, 0x78c204,1, 0x78c224,21, 0x78c280,16, 0x78c800,21, 0x78c860,5, 0x78c880,6, 0x78c8a0,5, 0x78c8c0,6, 0x78c900,21, 0x78c960,5, 0x78c980,6, 0x78c9a0,5, 0x78c9c0,6, 0x78ca00,21, 0x78ca60,5, 0x78ca80,6, 0x78caa0,5, 0x78cac0,6, 0x78cb00,21, 0x78cb60,5, 0x78cb80,6, 0x78cba0,5, 0x78cbc0,6, 0x78cc00,9, 0x78cc48,7, 0x78cc68,2, 0x78cc74,9, 0x78cc9c,2, 0x78cd00,14, 0x78cd40,14, 0x78cd80,28, 0x78ce00,19, 0x78ce50,3, 0x78ce60,25, 0x78cec8,1, 0x78ced0,2, 0x78cee0,7, 0x78cf00,1, 0x78cf08,2, 0x78cffc,9, 0x78d024,10, 0x78d050,22, 0x78d100,8, 0x78d124,10, 0x78d150,22, 0x78d200,8, 0x78d224,10, 0x78d250,22, 0x78d300,8, 0x78d324,10, 0x78d350,22, 0x78d400,8, 0x78d424,10, 0x78d450,22, 0x78d500,8, 0x78d524,10, 0x78d550,22, 0x78d600,8, 0x78d624,10, 0x78d650,22, 0x78d700,8, 0x78d724,10, 0x78d750,22, 0x78d800,8, 0x78d824,10, 0x78d850,22, 0x78d904,1, 0x78d914,10, 0x78d948,11, 0x78d980,1, 0x78da00,6, 0x78da20,2, 0x78da2c,2, 0x78e800,1, 0x78e808,3, 0x78e838,1, 0x78e844,1, 0x78e850,2, 0x78e860,8, 0x78e900,13, 0x78e940,19, 0x78e990,4, 0x78f000,35, 0x78fc00,10, 0x78fc80,3, 0x78fcc0,1, 0x790000,13, 0x790040,2, 0x790054,4, 0x790080,27, 0x790100,12, 0x790140,11, 0x790170,2, 0x790180,28, 0x790200,6, 0x790240,6, 0x79025c,3, 0x790280,5, 0x7902a0,8, 0x790400,14, 0x790440,14, 0x790480,14, 0x7904c0,14, 0x790540,3, 0x790600,7, 0x790620,14, 0x790680,5, 0x7906a0,7, 0x790800,13, 0x790840,2, 0x790854,4, 0x790880,27, 0x790900,12, 0x790940,11, 0x790970,2, 0x790980,28, 0x790a00,6, 0x790a40,6, 0x790a5c,3, 0x790a80,5, 0x790aa0,8, 0x790c00,14, 0x790c40,14, 0x790c80,14, 0x790cc0,14, 0x790d40,3, 0x790e00,7, 0x790e20,14, 0x790e80,5, 0x790ea0,7, 0x791000,13, 0x791040,2, 0x791054,4, 0x791080,27, 0x791100,12, 0x791140,11, 0x791170,2, 0x791180,28, 0x791200,6, 0x791240,6, 0x79125c,3, 0x791280,5, 0x7912a0,8, 0x791400,14, 0x791440,14, 0x791480,14, 0x7914c0,14, 0x791540,3, 0x791600,7, 0x791620,14, 0x791680,5, 0x7916a0,7, 0x791800,13, 0x791840,2, 0x791854,4, 0x791880,27, 0x791900,12, 0x791940,11, 0x791970,2, 0x791980,28, 0x791a00,6, 0x791a40,6, 0x791a5c,3, 0x791a80,5, 0x791aa0,8, 0x791c00,14, 0x791c40,14, 0x791c80,14, 0x791cc0,14, 0x791d40,3, 0x791e00,7, 0x791e20,14, 0x791e80,5, 0x791ea0,7, 0x792000,8, 0x792040,8, 0x792080,1, 0x792098,6, 0x792100,10, 0x792140,3, 0x792150,2, 0x792180,2, 0x792200,6, 0x792220,17, 0x792280,4, 0x792300,8, 0x792400,2, 0x792480,2, 0x793000,40, 0x793100,64, 0x794000,13, 0x794040,2, 0x794054,4, 0x794080,27, 0x794100,12, 0x794140,11, 0x794170,2, 0x794180,28, 0x794200,6, 0x794240,6, 0x79425c,3, 0x794280,5, 0x7942a0,8, 0x794400,14, 0x794440,14, 0x794480,14, 0x7944c0,14, 0x794540,3, 0x794600,7, 0x794620,14, 0x794680,5, 0x7946a0,7, 0x794800,13, 0x794840,2, 0x794854,4, 0x794880,27, 0x794900,12, 0x794940,11, 0x794970,2, 0x794980,28, 0x794a00,6, 0x794a40,6, 0x794a5c,3, 0x794a80,5, 0x794aa0,8, 0x794c00,14, 0x794c40,14, 0x794c80,14, 0x794cc0,14, 0x794d40,3, 0x794e00,7, 0x794e20,14, 0x794e80,5, 0x794ea0,7, 0x795000,13, 0x795040,2, 0x795054,4, 0x795080,27, 0x795100,12, 0x795140,11, 0x795170,2, 0x795180,28, 0x795200,6, 0x795240,6, 0x79525c,3, 0x795280,5, 0x7952a0,8, 0x795400,14, 0x795440,14, 0x795480,14, 0x7954c0,14, 0x795540,3, 0x795600,7, 0x795620,14, 0x795680,5, 0x7956a0,7, 0x795800,13, 0x795840,2, 0x795854,4, 0x795880,27, 0x795900,12, 0x795940,11, 0x795970,2, 0x795980,28, 0x795a00,6, 0x795a40,6, 0x795a5c,3, 0x795a80,5, 0x795aa0,8, 0x795c00,14, 0x795c40,14, 0x795c80,14, 0x795cc0,14, 0x795d40,3, 0x795e00,7, 0x795e20,14, 0x795e80,5, 0x795ea0,7, 0x796000,8, 0x796040,8, 0x796080,1, 0x796098,6, 0x796100,10, 0x796140,3, 0x796150,2, 0x796180,2, 0x796200,6, 0x796220,17, 0x796280,4, 0x796300,8, 0x796400,2, 0x796480,2, 0x797000,40, 0x797100,64, 0x7a0000,11, 0x7a0040,11, 0x7a0070,3, 0x7a0084,5, 0x7a00a4,5, 0x7a0200,7, 0x7a0220,6, 0x7a0240,7, 0x7a0260,6, 0x7a0280,6, 0x7a02a0,2, 0x7a02ac,2, 0x7a02c0,7, 0x7a02e0,7, 0x7a0300,2, 0x7a030c,2, 0x7a0320,6, 0x7a1000,19, 0x7a2000,25, 0x7a2070,6, 0x7a208c,1, 0x7a2094,1, 0x7a209c,8, 0x7a2104,23, 0x7a2180,7, 0x7a21a0,6, 0x7a21c0,7, 0x7a21e0,6, 0x7a2400,61, 0x7a2500,25, 0x7a2568,4, 0x7a2580,2, 0x7a25a0,1, 0x7a25c0,11, 0x7a2600,9, 0x7a2640,3, 0x7a2650,3, 0x7a2664,3, 0x7a2680,22, 0x7a2700,17, 0x7a2800,11, 0x7a3000,594, 0x7a4000,25, 0x7a4070,6, 0x7a408c,1, 0x7a4094,1, 0x7a409c,8, 0x7a4104,23, 0x7a4180,7, 0x7a41a0,6, 0x7a41c0,7, 0x7a41e0,6, 0x7a4400,61, 0x7a4500,25, 0x7a4568,4, 0x7a4580,2, 0x7a45a0,1, 0x7a45c0,11, 0x7a4600,9, 0x7a4640,3, 0x7a4650,3, 0x7a4664,3, 0x7a4680,22, 0x7a4700,17, 0x7a4800,11, 0x7a5000,594, 0x7aa000,25, 0x7aa070,6, 0x7aa08c,1, 0x7aa094,1, 0x7aa09c,8, 0x7aa104,23, 0x7aa180,7, 0x7aa1a0,6, 0x7aa1c0,7, 0x7aa1e0,6, 0x7aa400,61, 0x7aa500,25, 0x7aa568,4, 0x7aa580,2, 0x7aa5a0,1, 0x7aa5c0,11, 0x7aa600,9, 0x7aa640,3, 0x7aa650,3, 0x7aa664,3, 0x7aa680,22, 0x7aa700,17, 0x7aa800,11, 0x7ab000,594, 0x7ac000,25, 0x7ac070,6, 0x7ac08c,1, 0x7ac094,1, 0x7ac09c,8, 0x7ac104,23, 0x7ac180,7, 0x7ac1a0,6, 0x7ac1c0,7, 0x7ac1e0,6, 0x7ac400,61, 0x7ac500,25, 0x7ac568,4, 0x7ac580,2, 0x7ac5a0,1, 0x7ac5c0,11, 0x7ac600,9, 0x7ac640,3, 0x7ac650,3, 0x7ac664,3, 0x7ac680,22, 0x7ac700,17, 0x7ac800,11, 0x7ad000,594, 0x7bf000,7, 0x7bf048,7, 0x7bf080,8, 0x7bf100,7, 0x7bf148,7, 0x7bf180,8, 0x7bf400,7, 0x7bf448,7, 0x7bf480,8, 0x7bf500,7, 0x7bf548,7, 0x7bf580,8, 0x7c0000,31, 0x7c0080,31, 0x7c0100,31, 0x7c0180,31, 0x7c0200,31, 0x7c0280,31, 0x7c0300,31, 0x7c0380,31, 0x7c0400,64, 0x7c0504,5, 0x7c0520,1, 0x7c0600,6, 0x7c0620,6, 0x7c0640,6, 0x7c0660,6, 0x7c0680,6, 0x7c06a0,6, 0x7c06c0,6, 0x7c06e0,6, 0x7c0700,4, 0x7c0720,3, 0x7c0730,3, 0x7c0760,3, 0x7c0770,1, 0x7c0780,5, 0x7c0800,31, 0x7c0880,31, 0x7c0900,31, 0x7c0980,31, 0x7c0a00,31, 0x7c0a80,31, 0x7c0b00,31, 0x7c0b80,31, 0x7c0c00,64, 0x7c0d04,5, 0x7c0d20,1, 0x7c0e00,6, 0x7c0e20,6, 0x7c0e40,6, 0x7c0e60,6, 0x7c0e80,6, 0x7c0ea0,6, 0x7c0ec0,6, 0x7c0ee0,6, 0x7c0f00,4, 0x7c0f20,3, 0x7c0f30,3, 0x7c0f60,3, 0x7c0f70,1, 0x7c0f80,5, 0x7c1000,11, 0x7c1040,11, 0x7c1080,11, 0x7c10c0,11, 0x7c1100,21, 0x7c1160,5, 0x7c1180,3, 0x7c1190,3, 0x7c11a0,11, 0x7c11d0,3, 0x7c11e0,3, 0x7c1200,86, 0x7c1400,5, 0x7c141c,1, 0x7c1440,6, 0x7c1460,1, 0x7c1480,3, 0x7c1490,1, 0x7c1800,11, 0x7c1840,11, 0x7c1880,11, 0x7c18c0,11, 0x7c1900,21, 0x7c1960,5, 0x7c1980,3, 0x7c1990,3, 0x7c19a0,11, 0x7c19d0,3, 0x7c19e0,3, 0x7c1a00,86, 0x7c1c00,5, 0x7c1c1c,1, 0x7c1c40,6, 0x7c1c60,1, 0x7c1c80,3, 0x7c1c90,1, 0x7c2000,32, 0x7c2084,1, 0x7c2094,3, 0x7c20c4,3, 0x7c2100,1, 0x7c210c,3, 0x7c2120,3, 0x7c2140,1, 0x7c2150,9, 0x7c2180,2, 0x7c21a4,1, 0x7c21b4,8, 0x7c2200,20, 0x7c2260,6, 0x7c2280,4, 0x7c22a0,6, 0x7c3000,31, 0x7c3080,31, 0x7c3100,31, 0x7c3180,31, 0x7c3200,31, 0x7c3280,31, 0x7c3300,31, 0x7c3380,31, 0x7c3400,64, 0x7c3504,5, 0x7c3520,1, 0x7c3600,6, 0x7c3620,6, 0x7c3640,6, 0x7c3660,6, 0x7c3680,6, 0x7c36a0,6, 0x7c36c0,6, 0x7c36e0,6, 0x7c3700,4, 0x7c3720,3, 0x7c3730,3, 0x7c3760,3, 0x7c3770,1, 0x7c3780,5, 0x7c3800,31, 0x7c3880,31, 0x7c3900,31, 0x7c3980,31, 0x7c3a00,31, 0x7c3a80,31, 0x7c3b00,31, 0x7c3b80,31, 0x7c3c00,64, 0x7c3d04,5, 0x7c3d20,1, 0x7c3e00,6, 0x7c3e20,6, 0x7c3e40,6, 0x7c3e60,6, 0x7c3e80,6, 0x7c3ea0,6, 0x7c3ec0,6, 0x7c3ee0,6, 0x7c3f00,4, 0x7c3f20,3, 0x7c3f30,3, 0x7c3f60,3, 0x7c3f70,1, 0x7c3f80,5, 0x7c4000,11, 0x7c4040,11, 0x7c4080,11, 0x7c40c0,11, 0x7c4100,21, 0x7c4160,5, 0x7c4180,3, 0x7c4190,3, 0x7c41a0,11, 0x7c41d0,3, 0x7c41e0,3, 0x7c4200,86, 0x7c4400,5, 0x7c441c,1, 0x7c4440,6, 0x7c4460,1, 0x7c4480,3, 0x7c4490,1, 0x7c4800,11, 0x7c4840,11, 0x7c4880,11, 0x7c48c0,11, 0x7c4900,21, 0x7c4960,5, 0x7c4980,3, 0x7c4990,3, 0x7c49a0,11, 0x7c49d0,3, 0x7c49e0,3, 0x7c4a00,86, 0x7c4c00,5, 0x7c4c1c,1, 0x7c4c40,6, 0x7c4c60,1, 0x7c4c80,3, 0x7c4c90,1, 0x7c5000,32, 0x7c5084,1, 0x7c5094,3, 0x7c50c4,3, 0x7c5100,1, 0x7c510c,3, 0x7c5120,3, 0x7c5140,1, 0x7c5150,9, 0x7c5180,2, 0x7c51a4,1, 0x7c51b4,8, 0x7c5200,20, 0x7c5260,6, 0x7c5280,4, 0x7c52a0,6, 0x7c6100,1, 0x7c610c,4, 0x7c6120,16, 0x7c6180,1, 0x7c6200,91, 0x7c6508,1, 0x7c6540,1, 0x7c7000,1, 0x7c7014,1, 0x7c701c,2, 0x7c7034,1, 0x7c703c,5, 0x7c7060,6, 0x7c7080,4, 0x7c70a0,6, 0x7c70c0,3, 0x7c70d0,2, 0x7c7100,11, 0x7c7134,4, 0x7c7150,3, 0x7c7200,3, 0x7c7210,1, 0x7c7220,9, 0x7c7260,2, 0x7c7300,25, 0x7c9000,19, 0x7d0000,286, 0x7d0800,3, 0x7d0810,3, 0x7d0820,3, 0x7d0830,4, 0x7d0844,7, 0x7d1000,3, 0x7d1010,86, 0x7d1170,18, 0x7d1200,1, 0x7d1220,1, 0x7d1240,1, 0x7d1254,1, 0x7d125c,4, 0x7d1270,1, 0x7d1278,1, 0x7d1400,3, 0x7d1410,86, 0x7d1570,20, 0x7d1604,1, 0x7d1640,48, 0x7d1704,1, 0x7d1710,5, 0x7d1740,6, 0x7d18e0,12, 0x7d1920,4, 0x7d1a00,7, 0x7d1a20,37, 0x7d1b00,41, 0x7d1bb0,3, 0x7d1c00,25, 0x7d1c80,7, 0x7d1ca0,6, 0x7d1cc0,7, 0x7d1d00,7, 0x7d1d20,5, 0x7d1d40,10, 0x7d2000,286, 0x7d2800,3, 0x7d2810,3, 0x7d2820,3, 0x7d2830,4, 0x7d2844,7, 0x7d3000,3, 0x7d3010,86, 0x7d3170,18, 0x7d3200,1, 0x7d3220,1, 0x7d3240,1, 0x7d3254,1, 0x7d325c,4, 0x7d3270,1, 0x7d3278,1, 0x7d3400,3, 0x7d3410,86, 0x7d3570,20, 0x7d3604,1, 0x7d3640,48, 0x7d3704,1, 0x7d3710,5, 0x7d3740,6, 0x7d38e0,12, 0x7d3920,4, 0x7d3a00,7, 0x7d3a20,37, 0x7d3b00,41, 0x7d3bb0,3, 0x7d3c00,25, 0x7d3c80,7, 0x7d3ca0,6, 0x7d3cc0,7, 0x7d3d00,7, 0x7d3d20,5, 0x7d3d40,10, 0x7d4000,19, 0x7d5000,11, 0x7d5040,5, 0x7d5058,1, 0x7d5060,1, 0x7e0000,3, 0x7e0010,3, 0x7e0020,5, 0x7e0038,9, 0x7e0060,8, 0x7e0100,17, 0x7e0200,3, 0x7e0210,3, 0x7e0220,5, 0x7e0238,9, 0x7e0260,8, 0x7e0300,17, 0x7e0400,3, 0x7e0414,1, 0x7e041c,33, 0x7e0540,33, 0x7e05c8,12, 0x7e0800,2, 0x7e0844,1, 0x7e084c,1, 0x7e0880,27, 0x7e0900,4, 0x7e0980,19, 0x7e0a00,4, 0x7e0a80,19, 0x7e0b00,1, 0x7e0b40,5, 0x7e0b60,5, 0x7e0b80,6, 0x7e0bb0,17, 0x7e0c00,13, 0x7e0c40,5, 0x7e0c80,12, 0x7e1000,3, 0x7e1010,3, 0x7e1020,5, 0x7e1038,9, 0x7e1060,8, 0x7e1100,17, 0x7e1200,3, 0x7e1210,3, 0x7e1220,5, 0x7e1238,9, 0x7e1260,8, 0x7e1300,17, 0x7e1400,3, 0x7e1414,1, 0x7e141c,33, 0x7e1540,33, 0x7e15c8,12, 0x7e1800,2, 0x7e1844,1, 0x7e184c,1, 0x7e1880,27, 0x7e1900,4, 0x7e1980,19, 0x7e1a00,4, 0x7e1a80,19, 0x7e1b00,1, 0x7e1b40,5, 0x7e1b60,5, 0x7e1b80,6, 0x7e1bb0,17, 0x7e1c00,13, 0x7e1c40,5, 0x7e1c80,12, 0x7e2000,19, 0x7e2080,4, 0x7e3000,19, 0x7e4000,2, 0x7e400c,5, 0x7e4028,3, 0x7e4038,3, 0x7e4050,1, 0x7e4080,13, 0x7e4120,4, 0x7e4140,1, 0x7e4400,26, 0x7e4470,3, 0x7e4580,10, 0x7e45c0,8, 0x7e45e8,2, 0x7e45f4,2, 0x7e4600,5, 0x7e4618,1, 0x7e4620,1, 0x7e4628,1, 0x7e4630,2, 0x7e4640,2, 0x7e4650,2, 0x7e4690,4, 0x7e4740,2, 0x7e4800,2, 0x7e480c,5, 0x7e4828,3, 0x7e4838,3, 0x7e4850,1, 0x7e4880,13, 0x7e4920,4, 0x7e4940,1, 0x7e4c00,26, 0x7e4c70,3, 0x7e4d80,10, 0x7e4dc0,8, 0x7e4de8,2, 0x7e4df4,2, 0x7e4e00,5, 0x7e4e18,1, 0x7e4e20,1, 0x7e4e28,1, 0x7e4e30,2, 0x7e4e40,2, 0x7e4e50,2, 0x7e4e90,4, 0x7e4f40,2, 0x7e5800,11, 0x7e5880,2, 0x7e58b0,2, 0x7e6000,35, 0x7e6c00,10, 0x7e6c80,3, 0x800000,4, 0x800014,1, 0x800020,3, 0x800030,3, 0x800040,5, 0x800064,5, 0x80007c,2, 0x8000a0,28, 0x800114,1, 0x800120,3, 0x800130,3, 0x800140,5, 0x800164,5, 0x80017c,2, 0x8001a0,28, 0x800214,1, 0x800220,3, 0x800230,3, 0x800240,5, 0x800264,5, 0x80027c,2, 0x8002a0,28, 0x800314,1, 0x800320,3, 0x800330,3, 0x800340,5, 0x800364,5, 0x80037c,2, 0x8003a0,24, 0x8005c0,1, 0x800600,1, 0x800608,3, 0x800618,2, 0x800800,18, 0x800880,10, 0x8008ac,2, 0x8008f0,3, 0x800900,18, 0x800980,10, 0x8009ac,2, 0x8009f0,3, 0x800c00,18, 0x800c50,2, 0x800c60,6, 0x800c80,18, 0x800cd0,2, 0x800ce0,6, 0x800e00,4, 0x800e20,4, 0x800e80,16, 0x800f00,5, 0x800f20,5, 0x801000,12, 0x801200,1, 0x801208,6, 0x801228,9, 0x801280,1, 0x801288,6, 0x8012a8,9, 0x801400,15, 0x801440,15, 0x801600,7, 0x801620,7, 0x801680,4, 0x80169c,11, 0x8016d0,2, 0x801800,27, 0x801880,4, 0x801898,3, 0x8019a4,1, 0x801a00,4, 0x801a20,4, 0x801a40,6, 0x801a80,4, 0x801aa0,4, 0x801ac0,6, 0x802000,16, 0x802060,7, 0x802080,16, 0x8020e0,7, 0x802200,19, 0x802280,19, 0x802400,14, 0x80243c,9, 0x802464,6, 0x802480,7, 0x8024a0,2, 0x8024ac,2, 0x802500,14, 0x80253c,9, 0x802564,6, 0x802580,7, 0x8025a0,2, 0x8025ac,2, 0x802800,19, 0x802880,19, 0x802b00,1, 0x802b20,1, 0x802b28,4, 0x802b40,1, 0x802b60,1, 0x802b68,4, 0x802c00,7, 0x802c20,1, 0x802c54,18, 0x802ca0,1, 0x802cd4,11, 0x802e00,8, 0x803000,16, 0x803100,7, 0x803120,7, 0x803180,3, 0x804000,4, 0x804014,1, 0x804020,3, 0x804030,3, 0x804040,5, 0x804064,5, 0x80407c,2, 0x8040a0,28, 0x804114,1, 0x804120,3, 0x804130,3, 0x804140,5, 0x804164,5, 0x80417c,2, 0x8041a0,28, 0x804214,1, 0x804220,3, 0x804230,3, 0x804240,5, 0x804264,5, 0x80427c,2, 0x8042a0,28, 0x804314,1, 0x804320,3, 0x804330,3, 0x804340,5, 0x804364,5, 0x80437c,2, 0x8043a0,24, 0x8045c0,1, 0x804600,1, 0x804608,3, 0x804618,2, 0x804800,18, 0x804880,10, 0x8048ac,2, 0x8048f0,3, 0x804900,18, 0x804980,10, 0x8049ac,2, 0x8049f0,3, 0x804c00,18, 0x804c50,2, 0x804c60,6, 0x804c80,18, 0x804cd0,2, 0x804ce0,6, 0x804e00,4, 0x804e20,4, 0x804e80,16, 0x804f00,5, 0x804f20,5, 0x805000,12, 0x805200,1, 0x805208,6, 0x805228,9, 0x805280,1, 0x805288,6, 0x8052a8,9, 0x805400,15, 0x805440,15, 0x805600,7, 0x805620,7, 0x805680,4, 0x80569c,11, 0x8056d0,2, 0x805800,27, 0x805880,4, 0x805898,3, 0x8059a4,1, 0x805a00,4, 0x805a20,4, 0x805a40,6, 0x805a80,4, 0x805aa0,4, 0x805ac0,6, 0x806000,16, 0x806060,7, 0x806080,16, 0x8060e0,7, 0x806200,19, 0x806280,19, 0x806400,14, 0x80643c,9, 0x806464,6, 0x806480,7, 0x8064a0,2, 0x8064ac,2, 0x806500,14, 0x80653c,9, 0x806564,6, 0x806580,7, 0x8065a0,2, 0x8065ac,2, 0x806800,19, 0x806880,19, 0x806b00,1, 0x806b20,1, 0x806b28,4, 0x806b40,1, 0x806b60,1, 0x806b68,4, 0x806c00,7, 0x806c20,1, 0x806c54,18, 0x806ca0,1, 0x806cd4,11, 0x806e00,8, 0x807000,16, 0x807100,7, 0x807120,7, 0x807180,3, 0x80c000,22, 0x80c060,6, 0x80c080,11, 0x80c100,11, 0x80c204,1, 0x80c224,21, 0x80c280,16, 0x80d000,8, 0x80d024,10, 0x80d050,22, 0x80d100,8, 0x80d124,10, 0x80d150,22, 0x80d200,8, 0x80d224,10, 0x80d250,22, 0x80d300,8, 0x80d324,10, 0x80d350,22, 0x80d400,8, 0x80d424,10, 0x80d450,22, 0x80d500,8, 0x80d524,10, 0x80d550,22, 0x80d600,8, 0x80d624,10, 0x80d650,22, 0x80d700,8, 0x80d724,10, 0x80d750,22, 0x80d800,8, 0x80d824,10, 0x80d850,22, 0x80d904,1, 0x80d914,10, 0x80d948,11, 0x80d980,1, 0x80da00,6, 0x80da20,2, 0x80da2c,2, 0x80e800,1, 0x80e808,3, 0x80e838,1, 0x80e844,1, 0x80e850,2, 0x80e860,8, 0x80e900,13, 0x80e940,19, 0x80e990,4, 0x80f000,35, 0x80fc00,10, 0x80fc80,3, 0x80fcc0,1, 0x810000,13, 0x810040,2, 0x810054,4, 0x810080,27, 0x810100,12, 0x810140,11, 0x810170,2, 0x810180,28, 0x810200,6, 0x810240,6, 0x81025c,3, 0x810280,5, 0x8102a0,8, 0x810400,14, 0x810440,14, 0x810480,14, 0x8104c0,14, 0x810540,3, 0x810600,7, 0x810620,14, 0x810680,5, 0x8106a0,7, 0x810800,13, 0x810840,2, 0x810854,4, 0x810880,27, 0x810900,12, 0x810940,11, 0x810970,2, 0x810980,28, 0x810a00,6, 0x810a40,6, 0x810a5c,3, 0x810a80,5, 0x810aa0,8, 0x810c00,14, 0x810c40,14, 0x810c80,14, 0x810cc0,14, 0x810d40,3, 0x810e00,7, 0x810e20,14, 0x810e80,5, 0x810ea0,7, 0x811000,13, 0x811040,2, 0x811054,4, 0x811080,27, 0x811100,12, 0x811140,11, 0x811170,2, 0x811180,28, 0x811200,6, 0x811240,6, 0x81125c,3, 0x811280,5, 0x8112a0,8, 0x811400,14, 0x811440,14, 0x811480,14, 0x8114c0,14, 0x811540,3, 0x811600,7, 0x811620,14, 0x811680,5, 0x8116a0,7, 0x811800,13, 0x811840,2, 0x811854,4, 0x811880,27, 0x811900,12, 0x811940,11, 0x811970,2, 0x811980,28, 0x811a00,6, 0x811a40,6, 0x811a5c,3, 0x811a80,5, 0x811aa0,8, 0x811c00,14, 0x811c40,14, 0x811c80,14, 0x811cc0,14, 0x811d40,3, 0x811e00,7, 0x811e20,14, 0x811e80,5, 0x811ea0,7, 0x812000,8, 0x812040,8, 0x812080,1, 0x812098,6, 0x812100,10, 0x812140,3, 0x812150,2, 0x812180,2, 0x812200,6, 0x812220,17, 0x812280,4, 0x812300,8, 0x812400,2, 0x812480,2, 0x813000,40, 0x813100,64, 0x814000,13, 0x814040,2, 0x814054,4, 0x814080,27, 0x814100,12, 0x814140,11, 0x814170,2, 0x814180,28, 0x814200,6, 0x814240,6, 0x81425c,3, 0x814280,5, 0x8142a0,8, 0x814400,14, 0x814440,14, 0x814480,14, 0x8144c0,14, 0x814540,3, 0x814600,7, 0x814620,14, 0x814680,5, 0x8146a0,7, 0x814800,13, 0x814840,2, 0x814854,4, 0x814880,27, 0x814900,12, 0x814940,11, 0x814970,2, 0x814980,28, 0x814a00,6, 0x814a40,6, 0x814a5c,3, 0x814a80,5, 0x814aa0,8, 0x814c00,14, 0x814c40,14, 0x814c80,14, 0x814cc0,14, 0x814d40,3, 0x814e00,7, 0x814e20,14, 0x814e80,5, 0x814ea0,7, 0x815000,13, 0x815040,2, 0x815054,4, 0x815080,27, 0x815100,12, 0x815140,11, 0x815170,2, 0x815180,28, 0x815200,6, 0x815240,6, 0x81525c,3, 0x815280,5, 0x8152a0,8, 0x815400,14, 0x815440,14, 0x815480,14, 0x8154c0,14, 0x815540,3, 0x815600,7, 0x815620,14, 0x815680,5, 0x8156a0,7, 0x815800,13, 0x815840,2, 0x815854,4, 0x815880,27, 0x815900,12, 0x815940,11, 0x815970,2, 0x815980,28, 0x815a00,6, 0x815a40,6, 0x815a5c,3, 0x815a80,5, 0x815aa0,8, 0x815c00,14, 0x815c40,14, 0x815c80,14, 0x815cc0,14, 0x815d40,3, 0x815e00,7, 0x815e20,14, 0x815e80,5, 0x815ea0,7, 0x816000,8, 0x816040,8, 0x816080,1, 0x816098,6, 0x816100,10, 0x816140,3, 0x816150,2, 0x816180,2, 0x816200,6, 0x816220,17, 0x816280,4, 0x816300,8, 0x816400,2, 0x816480,2, 0x817000,40, 0x817100,64, 0x820000,11, 0x820040,11, 0x820070,3, 0x820084,5, 0x8200a4,5, 0x820200,7, 0x820220,6, 0x820240,7, 0x820260,6, 0x820280,6, 0x8202a0,2, 0x8202ac,2, 0x8202c0,7, 0x8202e0,7, 0x820300,2, 0x82030c,2, 0x820320,6, 0x821000,19, 0x822000,25, 0x822070,6, 0x82208c,1, 0x822094,1, 0x82209c,8, 0x822104,23, 0x822180,7, 0x8221a0,6, 0x8221c0,7, 0x8221e0,6, 0x822400,61, 0x822500,25, 0x822568,4, 0x822580,2, 0x8225a0,1, 0x8225c0,11, 0x822600,9, 0x822640,3, 0x822650,3, 0x822664,3, 0x822680,22, 0x822700,17, 0x822800,11, 0x823000,594, 0x824000,25, 0x824070,6, 0x82408c,1, 0x824094,1, 0x82409c,8, 0x824104,23, 0x824180,7, 0x8241a0,6, 0x8241c0,7, 0x8241e0,6, 0x824400,61, 0x824500,25, 0x824568,4, 0x824580,2, 0x8245a0,1, 0x8245c0,11, 0x824600,9, 0x824640,3, 0x824650,3, 0x824664,3, 0x824680,22, 0x824700,17, 0x824800,11, 0x825000,594, 0x82a000,25, 0x82a070,6, 0x82a08c,1, 0x82a094,1, 0x82a09c,8, 0x82a104,23, 0x82a180,7, 0x82a1a0,6, 0x82a1c0,7, 0x82a1e0,6, 0x82a400,61, 0x82a500,25, 0x82a568,4, 0x82a580,2, 0x82a5a0,1, 0x82a5c0,11, 0x82a600,9, 0x82a640,3, 0x82a650,3, 0x82a664,3, 0x82a680,22, 0x82a700,17, 0x82a800,11, 0x82b000,594, 0x82c000,25, 0x82c070,6, 0x82c08c,1, 0x82c094,1, 0x82c09c,8, 0x82c104,23, 0x82c180,7, 0x82c1a0,6, 0x82c1c0,7, 0x82c1e0,6, 0x82c400,61, 0x82c500,25, 0x82c568,4, 0x82c580,2, 0x82c5a0,1, 0x82c5c0,11, 0x82c600,9, 0x82c640,3, 0x82c650,3, 0x82c664,3, 0x82c680,22, 0x82c700,17, 0x82c800,11, 0x82d000,594, 0x83f000,7, 0x83f048,7, 0x83f080,8, 0x83f100,7, 0x83f148,7, 0x83f180,8, 0x83f400,7, 0x83f448,7, 0x83f480,8, 0x83f500,7, 0x83f548,7, 0x83f580,8, 0x840000,31, 0x840080,31, 0x840100,31, 0x840180,31, 0x840200,31, 0x840280,31, 0x840300,31, 0x840380,31, 0x840400,64, 0x840504,5, 0x840520,1, 0x840600,6, 0x840620,6, 0x840640,6, 0x840660,6, 0x840680,6, 0x8406a0,6, 0x8406c0,6, 0x8406e0,6, 0x840700,4, 0x840720,3, 0x840730,3, 0x840760,3, 0x840770,1, 0x840780,5, 0x840800,31, 0x840880,31, 0x840900,31, 0x840980,31, 0x840a00,31, 0x840a80,31, 0x840b00,31, 0x840b80,31, 0x840c00,64, 0x840d04,5, 0x840d20,1, 0x840e00,6, 0x840e20,6, 0x840e40,6, 0x840e60,6, 0x840e80,6, 0x840ea0,6, 0x840ec0,6, 0x840ee0,6, 0x840f00,4, 0x840f20,3, 0x840f30,3, 0x840f60,3, 0x840f70,1, 0x840f80,5, 0x841000,11, 0x841040,11, 0x841080,11, 0x8410c0,11, 0x841100,21, 0x841160,5, 0x841180,3, 0x841190,3, 0x8411a0,11, 0x8411d0,3, 0x8411e0,3, 0x841200,86, 0x841400,5, 0x84141c,1, 0x841440,6, 0x841460,1, 0x841480,3, 0x841490,1, 0x841800,11, 0x841840,11, 0x841880,11, 0x8418c0,11, 0x841900,21, 0x841960,5, 0x841980,3, 0x841990,3, 0x8419a0,11, 0x8419d0,3, 0x8419e0,3, 0x841a00,86, 0x841c00,5, 0x841c1c,1, 0x841c40,6, 0x841c60,1, 0x841c80,3, 0x841c90,1, 0x842000,32, 0x842084,1, 0x842094,3, 0x8420c4,3, 0x842100,1, 0x84210c,3, 0x842120,3, 0x842140,1, 0x842150,9, 0x842180,2, 0x8421a4,1, 0x8421b4,8, 0x842200,20, 0x842260,6, 0x842280,4, 0x8422a0,6, 0x843000,31, 0x843080,31, 0x843100,31, 0x843180,31, 0x843200,31, 0x843280,31, 0x843300,31, 0x843380,31, 0x843400,64, 0x843504,5, 0x843520,1, 0x843600,6, 0x843620,6, 0x843640,6, 0x843660,6, 0x843680,6, 0x8436a0,6, 0x8436c0,6, 0x8436e0,6, 0x843700,4, 0x843720,3, 0x843730,3, 0x843760,3, 0x843770,1, 0x843780,5, 0x843800,31, 0x843880,31, 0x843900,31, 0x843980,31, 0x843a00,31, 0x843a80,31, 0x843b00,31, 0x843b80,31, 0x843c00,64, 0x843d04,5, 0x843d20,1, 0x843e00,6, 0x843e20,6, 0x843e40,6, 0x843e60,6, 0x843e80,6, 0x843ea0,6, 0x843ec0,6, 0x843ee0,6, 0x843f00,4, 0x843f20,3, 0x843f30,3, 0x843f60,3, 0x843f70,1, 0x843f80,5, 0x844000,11, 0x844040,11, 0x844080,11, 0x8440c0,11, 0x844100,21, 0x844160,5, 0x844180,3, 0x844190,3, 0x8441a0,11, 0x8441d0,3, 0x8441e0,3, 0x844200,86, 0x844400,5, 0x84441c,1, 0x844440,6, 0x844460,1, 0x844480,3, 0x844490,1, 0x844800,11, 0x844840,11, 0x844880,11, 0x8448c0,11, 0x844900,21, 0x844960,5, 0x844980,3, 0x844990,3, 0x8449a0,11, 0x8449d0,3, 0x8449e0,3, 0x844a00,86, 0x844c00,5, 0x844c1c,1, 0x844c40,6, 0x844c60,1, 0x844c80,3, 0x844c90,1, 0x845000,32, 0x845084,1, 0x845094,3, 0x8450c4,3, 0x845100,1, 0x84510c,3, 0x845120,3, 0x845140,1, 0x845150,9, 0x845180,2, 0x8451a4,1, 0x8451b4,8, 0x845200,20, 0x845260,6, 0x845280,4, 0x8452a0,6, 0x846100,1, 0x84610c,4, 0x846120,16, 0x846180,1, 0x846200,91, 0x846508,1, 0x846540,1, 0x847000,1, 0x847014,1, 0x84701c,2, 0x847034,1, 0x84703c,5, 0x847060,6, 0x847080,4, 0x8470a0,6, 0x8470c0,3, 0x8470d0,2, 0x847100,11, 0x847134,4, 0x847150,3, 0x847200,3, 0x847210,1, 0x847220,9, 0x847260,2, 0x847300,25, 0x849000,19, 0x850000,286, 0x850800,3, 0x850810,3, 0x850820,3, 0x850830,4, 0x850844,7, 0x851000,3, 0x851010,86, 0x851170,18, 0x851200,1, 0x851220,1, 0x851240,1, 0x851254,1, 0x85125c,4, 0x851270,1, 0x851278,1, 0x851400,3, 0x851410,86, 0x851570,20, 0x851604,1, 0x851640,48, 0x851704,1, 0x851710,5, 0x851740,6, 0x8518e0,12, 0x851920,4, 0x851a00,7, 0x851a20,37, 0x851b00,41, 0x851bb0,3, 0x851c00,25, 0x851c80,7, 0x851ca0,6, 0x851cc0,7, 0x851d00,7, 0x851d20,5, 0x851d40,10, 0x852000,286, 0x852800,3, 0x852810,3, 0x852820,3, 0x852830,4, 0x852844,7, 0x853000,3, 0x853010,86, 0x853170,18, 0x853200,1, 0x853220,1, 0x853240,1, 0x853254,1, 0x85325c,4, 0x853270,1, 0x853278,1, 0x853400,3, 0x853410,86, 0x853570,20, 0x853604,1, 0x853640,48, 0x853704,1, 0x853710,5, 0x853740,6, 0x8538e0,12, 0x853920,4, 0x853a00,7, 0x853a20,37, 0x853b00,41, 0x853bb0,3, 0x853c00,25, 0x853c80,7, 0x853ca0,6, 0x853cc0,7, 0x853d00,7, 0x853d20,5, 0x853d40,10, 0x854000,19, 0x855000,11, 0x855040,5, 0x855058,1, 0x855060,1, 0x860000,3, 0x860010,3, 0x860020,5, 0x860038,9, 0x860060,8, 0x860100,17, 0x860200,3, 0x860210,3, 0x860220,5, 0x860238,9, 0x860260,8, 0x860300,17, 0x860400,3, 0x860414,1, 0x86041c,33, 0x860540,33, 0x8605c8,12, 0x860800,2, 0x860844,1, 0x86084c,1, 0x860880,27, 0x860900,4, 0x860980,19, 0x860a00,4, 0x860a80,19, 0x860b00,1, 0x860b40,5, 0x860b60,5, 0x860b80,6, 0x860bb0,17, 0x860c00,13, 0x860c40,5, 0x860c80,12, 0x861000,3, 0x861010,3, 0x861020,5, 0x861038,9, 0x861060,8, 0x861100,17, 0x861200,3, 0x861210,3, 0x861220,5, 0x861238,9, 0x861260,8, 0x861300,17, 0x861400,3, 0x861414,1, 0x86141c,33, 0x861540,33, 0x8615c8,12, 0x861800,2, 0x861844,1, 0x86184c,1, 0x861880,27, 0x861900,4, 0x861980,19, 0x861a00,4, 0x861a80,19, 0x861b00,1, 0x861b40,5, 0x861b60,5, 0x861b80,6, 0x861bb0,17, 0x861c00,13, 0x861c40,5, 0x861c80,12, 0x862000,19, 0x862080,4, 0x863000,19, 0x864000,2, 0x86400c,5, 0x864028,3, 0x864038,3, 0x864050,1, 0x864080,13, 0x864120,4, 0x864140,1, 0x864400,26, 0x864470,3, 0x864580,10, 0x8645c0,8, 0x8645e8,2, 0x8645f4,2, 0x864600,5, 0x864618,1, 0x864620,1, 0x864628,1, 0x864630,2, 0x864640,2, 0x864650,2, 0x864690,4, 0x864740,2, 0x864800,2, 0x86480c,5, 0x864828,3, 0x864838,3, 0x864850,1, 0x864880,13, 0x864920,4, 0x864940,1, 0x864c00,26, 0x864c70,3, 0x864d80,10, 0x864dc0,8, 0x864de8,2, 0x864df4,2, 0x864e00,5, 0x864e18,1, 0x864e20,1, 0x864e28,1, 0x864e30,2, 0x864e40,2, 0x864e50,2, 0x864e90,4, 0x864f40,2, 0x865800,11, 0x865880,2, 0x8658b0,2, 0x866000,35, 0x866c00,10, 0x866c80,3, 0x880000,4, 0x880014,1, 0x880020,3, 0x880030,3, 0x880040,5, 0x880064,5, 0x88007c,2, 0x8800a0,28, 0x880114,1, 0x880120,3, 0x880130,3, 0x880140,5, 0x880164,5, 0x88017c,2, 0x8801a0,28, 0x880214,1, 0x880220,3, 0x880230,3, 0x880240,5, 0x880264,5, 0x88027c,2, 0x8802a0,28, 0x880314,1, 0x880320,3, 0x880330,3, 0x880340,5, 0x880364,5, 0x88037c,2, 0x8803a0,24, 0x8805c0,1, 0x880600,1, 0x880608,3, 0x880618,2, 0x880800,18, 0x880880,10, 0x8808ac,2, 0x8808f0,3, 0x880900,18, 0x880980,10, 0x8809ac,2, 0x8809f0,3, 0x880c00,18, 0x880c50,2, 0x880c60,6, 0x880c80,18, 0x880cd0,2, 0x880ce0,6, 0x880e00,4, 0x880e20,4, 0x880e80,16, 0x880f00,5, 0x880f20,5, 0x881000,12, 0x881200,1, 0x881208,6, 0x881228,9, 0x881280,1, 0x881288,6, 0x8812a8,9, 0x881400,15, 0x881440,15, 0x881600,7, 0x881620,7, 0x881680,4, 0x88169c,11, 0x8816d0,2, 0x881800,27, 0x881880,4, 0x881898,3, 0x8819a4,1, 0x881a00,4, 0x881a20,4, 0x881a40,6, 0x881a80,4, 0x881aa0,4, 0x881ac0,6, 0x882000,16, 0x882060,7, 0x882080,16, 0x8820e0,7, 0x882200,19, 0x882280,19, 0x882400,14, 0x88243c,9, 0x882464,6, 0x882480,7, 0x8824a0,2, 0x8824ac,2, 0x882500,14, 0x88253c,9, 0x882564,6, 0x882580,7, 0x8825a0,2, 0x8825ac,2, 0x882800,19, 0x882880,19, 0x882b00,1, 0x882b20,1, 0x882b28,4, 0x882b40,1, 0x882b60,1, 0x882b68,4, 0x882c00,7, 0x882c20,1, 0x882c54,18, 0x882ca0,1, 0x882cd4,11, 0x882e00,8, 0x883000,16, 0x883100,7, 0x883120,7, 0x883180,3, 0x884000,4, 0x884014,1, 0x884020,3, 0x884030,3, 0x884040,5, 0x884064,5, 0x88407c,2, 0x8840a0,28, 0x884114,1, 0x884120,3, 0x884130,3, 0x884140,5, 0x884164,5, 0x88417c,2, 0x8841a0,28, 0x884214,1, 0x884220,3, 0x884230,3, 0x884240,5, 0x884264,5, 0x88427c,2, 0x8842a0,28, 0x884314,1, 0x884320,3, 0x884330,3, 0x884340,5, 0x884364,5, 0x88437c,2, 0x8843a0,24, 0x8845c0,1, 0x884600,1, 0x884608,3, 0x884618,2, 0x884800,18, 0x884880,10, 0x8848ac,2, 0x8848f0,3, 0x884900,18, 0x884980,10, 0x8849ac,2, 0x8849f0,3, 0x884c00,18, 0x884c50,2, 0x884c60,6, 0x884c80,18, 0x884cd0,2, 0x884ce0,6, 0x884e00,4, 0x884e20,4, 0x884e80,16, 0x884f00,5, 0x884f20,5, 0x885000,12, 0x885200,1, 0x885208,6, 0x885228,9, 0x885280,1, 0x885288,6, 0x8852a8,9, 0x885400,15, 0x885440,15, 0x885600,7, 0x885620,7, 0x885680,4, 0x88569c,11, 0x8856d0,2, 0x885800,27, 0x885880,4, 0x885898,3, 0x8859a4,1, 0x885a00,4, 0x885a20,4, 0x885a40,6, 0x885a80,4, 0x885aa0,4, 0x885ac0,6, 0x886000,16, 0x886060,7, 0x886080,16, 0x8860e0,7, 0x886200,19, 0x886280,19, 0x886400,14, 0x88643c,9, 0x886464,6, 0x886480,7, 0x8864a0,2, 0x8864ac,2, 0x886500,14, 0x88653c,9, 0x886564,6, 0x886580,7, 0x8865a0,2, 0x8865ac,2, 0x886800,19, 0x886880,19, 0x886b00,1, 0x886b20,1, 0x886b28,4, 0x886b40,1, 0x886b60,1, 0x886b68,4, 0x886c00,7, 0x886c20,1, 0x886c54,18, 0x886ca0,1, 0x886cd4,11, 0x886e00,8, 0x887000,16, 0x887100,7, 0x887120,7, 0x887180,3, 0x88c000,22, 0x88c060,6, 0x88c080,11, 0x88c100,11, 0x88c204,1, 0x88c224,21, 0x88c280,16, 0x88d000,8, 0x88d024,10, 0x88d050,22, 0x88d100,8, 0x88d124,10, 0x88d150,22, 0x88d200,8, 0x88d224,10, 0x88d250,22, 0x88d300,8, 0x88d324,10, 0x88d350,22, 0x88d400,8, 0x88d424,10, 0x88d450,22, 0x88d500,8, 0x88d524,10, 0x88d550,22, 0x88d600,8, 0x88d624,10, 0x88d650,22, 0x88d700,8, 0x88d724,10, 0x88d750,22, 0x88d800,8, 0x88d824,10, 0x88d850,22, 0x88d904,1, 0x88d914,10, 0x88d948,11, 0x88d980,1, 0x88da00,6, 0x88da20,2, 0x88da2c,2, 0x88e800,1, 0x88e808,3, 0x88e838,1, 0x88e844,1, 0x88e850,2, 0x88e860,8, 0x88e900,13, 0x88e940,19, 0x88e990,4, 0x88f000,35, 0x88fc00,10, 0x88fc80,3, 0x88fcc0,1, 0x890000,13, 0x890040,2, 0x890054,4, 0x890080,27, 0x890100,12, 0x890140,11, 0x890170,2, 0x890180,28, 0x890200,6, 0x890240,6, 0x89025c,3, 0x890280,5, 0x8902a0,8, 0x890400,14, 0x890440,14, 0x890480,14, 0x8904c0,14, 0x890540,3, 0x890600,7, 0x890620,14, 0x890680,5, 0x8906a0,7, 0x890800,13, 0x890840,2, 0x890854,4, 0x890880,27, 0x890900,12, 0x890940,11, 0x890970,2, 0x890980,28, 0x890a00,6, 0x890a40,6, 0x890a5c,3, 0x890a80,5, 0x890aa0,8, 0x890c00,14, 0x890c40,14, 0x890c80,14, 0x890cc0,14, 0x890d40,3, 0x890e00,7, 0x890e20,14, 0x890e80,5, 0x890ea0,7, 0x891000,13, 0x891040,2, 0x891054,4, 0x891080,27, 0x891100,12, 0x891140,11, 0x891170,2, 0x891180,28, 0x891200,6, 0x891240,6, 0x89125c,3, 0x891280,5, 0x8912a0,8, 0x891400,14, 0x891440,14, 0x891480,14, 0x8914c0,14, 0x891540,3, 0x891600,7, 0x891620,14, 0x891680,5, 0x8916a0,7, 0x891800,13, 0x891840,2, 0x891854,4, 0x891880,27, 0x891900,12, 0x891940,11, 0x891970,2, 0x891980,28, 0x891a00,6, 0x891a40,6, 0x891a5c,3, 0x891a80,5, 0x891aa0,8, 0x891c00,14, 0x891c40,14, 0x891c80,14, 0x891cc0,14, 0x891d40,3, 0x891e00,7, 0x891e20,14, 0x891e80,5, 0x891ea0,7, 0x892000,8, 0x892040,8, 0x892080,1, 0x892098,6, 0x892100,10, 0x892140,3, 0x892150,2, 0x892180,2, 0x892200,6, 0x892220,17, 0x892280,4, 0x892300,8, 0x892400,2, 0x892480,2, 0x893000,40, 0x893100,64, 0x894000,13, 0x894040,2, 0x894054,4, 0x894080,27, 0x894100,12, 0x894140,11, 0x894170,2, 0x894180,28, 0x894200,6, 0x894240,6, 0x89425c,3, 0x894280,5, 0x8942a0,8, 0x894400,14, 0x894440,14, 0x894480,14, 0x8944c0,14, 0x894540,3, 0x894600,7, 0x894620,14, 0x894680,5, 0x8946a0,7, 0x894800,13, 0x894840,2, 0x894854,4, 0x894880,27, 0x894900,12, 0x894940,11, 0x894970,2, 0x894980,28, 0x894a00,6, 0x894a40,6, 0x894a5c,3, 0x894a80,5, 0x894aa0,8, 0x894c00,14, 0x894c40,14, 0x894c80,14, 0x894cc0,14, 0x894d40,3, 0x894e00,7, 0x894e20,14, 0x894e80,5, 0x894ea0,7, 0x895000,13, 0x895040,2, 0x895054,4, 0x895080,27, 0x895100,12, 0x895140,11, 0x895170,2, 0x895180,28, 0x895200,6, 0x895240,6, 0x89525c,3, 0x895280,5, 0x8952a0,8, 0x895400,14, 0x895440,14, 0x895480,14, 0x8954c0,14, 0x895540,3, 0x895600,7, 0x895620,14, 0x895680,5, 0x8956a0,7, 0x895800,13, 0x895840,2, 0x895854,4, 0x895880,27, 0x895900,12, 0x895940,11, 0x895970,2, 0x895980,28, 0x895a00,6, 0x895a40,6, 0x895a5c,3, 0x895a80,5, 0x895aa0,8, 0x895c00,14, 0x895c40,14, 0x895c80,14, 0x895cc0,14, 0x895d40,3, 0x895e00,7, 0x895e20,14, 0x895e80,5, 0x895ea0,7, 0x896000,8, 0x896040,8, 0x896080,1, 0x896098,6, 0x896100,10, 0x896140,3, 0x896150,2, 0x896180,2, 0x896200,6, 0x896220,17, 0x896280,4, 0x896300,8, 0x896400,2, 0x896480,2, 0x897000,40, 0x897100,64, 0x8a0000,11, 0x8a0040,11, 0x8a0070,3, 0x8a0084,5, 0x8a00a4,5, 0x8a0200,7, 0x8a0220,6, 0x8a0240,7, 0x8a0260,6, 0x8a0280,6, 0x8a02a0,2, 0x8a02ac,2, 0x8a02c0,7, 0x8a02e0,7, 0x8a0300,2, 0x8a030c,2, 0x8a0320,6, 0x8a1000,19, 0x8a2000,25, 0x8a2070,6, 0x8a208c,1, 0x8a2094,1, 0x8a209c,8, 0x8a2104,23, 0x8a2180,7, 0x8a21a0,6, 0x8a21c0,7, 0x8a21e0,6, 0x8a2400,61, 0x8a2500,25, 0x8a2568,4, 0x8a2580,2, 0x8a25a0,1, 0x8a25c0,11, 0x8a2600,9, 0x8a2640,3, 0x8a2650,3, 0x8a2664,3, 0x8a2680,22, 0x8a2700,17, 0x8a2800,11, 0x8a3000,594, 0x8a4000,25, 0x8a4070,6, 0x8a408c,1, 0x8a4094,1, 0x8a409c,8, 0x8a4104,23, 0x8a4180,7, 0x8a41a0,6, 0x8a41c0,7, 0x8a41e0,6, 0x8a4400,61, 0x8a4500,25, 0x8a4568,4, 0x8a4580,2, 0x8a45a0,1, 0x8a45c0,11, 0x8a4600,9, 0x8a4640,3, 0x8a4650,3, 0x8a4664,3, 0x8a4680,22, 0x8a4700,17, 0x8a4800,11, 0x8a5000,594, 0x8aa000,25, 0x8aa070,6, 0x8aa08c,1, 0x8aa094,1, 0x8aa09c,8, 0x8aa104,23, 0x8aa180,7, 0x8aa1a0,6, 0x8aa1c0,7, 0x8aa1e0,6, 0x8aa400,61, 0x8aa500,25, 0x8aa568,4, 0x8aa580,2, 0x8aa5a0,1, 0x8aa5c0,11, 0x8aa600,9, 0x8aa640,3, 0x8aa650,3, 0x8aa664,3, 0x8aa680,22, 0x8aa700,17, 0x8aa800,11, 0x8ab000,594, 0x8ac000,25, 0x8ac070,6, 0x8ac08c,1, 0x8ac094,1, 0x8ac09c,8, 0x8ac104,23, 0x8ac180,7, 0x8ac1a0,6, 0x8ac1c0,7, 0x8ac1e0,6, 0x8ac400,61, 0x8ac500,25, 0x8ac568,4, 0x8ac580,2, 0x8ac5a0,1, 0x8ac5c0,11, 0x8ac600,9, 0x8ac640,3, 0x8ac650,3, 0x8ac664,3, 0x8ac680,22, 0x8ac700,17, 0x8ac800,11, 0x8ad000,594, 0x8bf000,7, 0x8bf048,7, 0x8bf080,8, 0x8bf100,7, 0x8bf148,7, 0x8bf180,8, 0x8bf400,7, 0x8bf448,7, 0x8bf480,8, 0x8bf500,7, 0x8bf548,7, 0x8bf580,8, 0x8c0000,31, 0x8c0080,31, 0x8c0100,31, 0x8c0180,31, 0x8c0200,31, 0x8c0280,31, 0x8c0300,31, 0x8c0380,31, 0x8c0400,64, 0x8c0504,5, 0x8c0520,1, 0x8c0600,6, 0x8c0620,6, 0x8c0640,6, 0x8c0660,6, 0x8c0680,6, 0x8c06a0,6, 0x8c06c0,6, 0x8c06e0,6, 0x8c0700,4, 0x8c0720,3, 0x8c0730,3, 0x8c0760,3, 0x8c0770,1, 0x8c0780,5, 0x8c0800,31, 0x8c0880,31, 0x8c0900,31, 0x8c0980,31, 0x8c0a00,31, 0x8c0a80,31, 0x8c0b00,31, 0x8c0b80,31, 0x8c0c00,64, 0x8c0d04,5, 0x8c0d20,1, 0x8c0e00,6, 0x8c0e20,6, 0x8c0e40,6, 0x8c0e60,6, 0x8c0e80,6, 0x8c0ea0,6, 0x8c0ec0,6, 0x8c0ee0,6, 0x8c0f00,4, 0x8c0f20,3, 0x8c0f30,3, 0x8c0f60,3, 0x8c0f70,1, 0x8c0f80,5, 0x8c1000,11, 0x8c1040,11, 0x8c1080,11, 0x8c10c0,11, 0x8c1100,21, 0x8c1160,5, 0x8c1180,3, 0x8c1190,3, 0x8c11a0,11, 0x8c11d0,3, 0x8c11e0,3, 0x8c1200,86, 0x8c1400,5, 0x8c141c,1, 0x8c1440,6, 0x8c1460,1, 0x8c1480,3, 0x8c1490,1, 0x8c1800,11, 0x8c1840,11, 0x8c1880,11, 0x8c18c0,11, 0x8c1900,21, 0x8c1960,5, 0x8c1980,3, 0x8c1990,3, 0x8c19a0,11, 0x8c19d0,3, 0x8c19e0,3, 0x8c1a00,86, 0x8c1c00,5, 0x8c1c1c,1, 0x8c1c40,6, 0x8c1c60,1, 0x8c1c80,3, 0x8c1c90,1, 0x8c2000,32, 0x8c2084,1, 0x8c2094,3, 0x8c20c4,3, 0x8c2100,1, 0x8c210c,3, 0x8c2120,3, 0x8c2140,1, 0x8c2150,9, 0x8c2180,2, 0x8c21a4,1, 0x8c21b4,8, 0x8c2200,20, 0x8c2260,6, 0x8c2280,4, 0x8c22a0,6, 0x8c3000,31, 0x8c3080,31, 0x8c3100,31, 0x8c3180,31, 0x8c3200,31, 0x8c3280,31, 0x8c3300,31, 0x8c3380,31, 0x8c3400,64, 0x8c3504,5, 0x8c3520,1, 0x8c3600,6, 0x8c3620,6, 0x8c3640,6, 0x8c3660,6, 0x8c3680,6, 0x8c36a0,6, 0x8c36c0,6, 0x8c36e0,6, 0x8c3700,4, 0x8c3720,3, 0x8c3730,3, 0x8c3760,3, 0x8c3770,1, 0x8c3780,5, 0x8c3800,31, 0x8c3880,31, 0x8c3900,31, 0x8c3980,31, 0x8c3a00,31, 0x8c3a80,31, 0x8c3b00,31, 0x8c3b80,31, 0x8c3c00,64, 0x8c3d04,5, 0x8c3d20,1, 0x8c3e00,6, 0x8c3e20,6, 0x8c3e40,6, 0x8c3e60,6, 0x8c3e80,6, 0x8c3ea0,6, 0x8c3ec0,6, 0x8c3ee0,6, 0x8c3f00,4, 0x8c3f20,3, 0x8c3f30,3, 0x8c3f60,3, 0x8c3f70,1, 0x8c3f80,5, 0x8c4000,11, 0x8c4040,11, 0x8c4080,11, 0x8c40c0,11, 0x8c4100,21, 0x8c4160,5, 0x8c4180,3, 0x8c4190,3, 0x8c41a0,11, 0x8c41d0,3, 0x8c41e0,3, 0x8c4200,86, 0x8c4400,5, 0x8c441c,1, 0x8c4440,6, 0x8c4460,1, 0x8c4480,3, 0x8c4490,1, 0x8c4800,11, 0x8c4840,11, 0x8c4880,11, 0x8c48c0,11, 0x8c4900,21, 0x8c4960,5, 0x8c4980,3, 0x8c4990,3, 0x8c49a0,11, 0x8c49d0,3, 0x8c49e0,3, 0x8c4a00,86, 0x8c4c00,5, 0x8c4c1c,1, 0x8c4c40,6, 0x8c4c60,1, 0x8c4c80,3, 0x8c4c90,1, 0x8c5000,32, 0x8c5084,1, 0x8c5094,3, 0x8c50c4,3, 0x8c5100,1, 0x8c510c,3, 0x8c5120,3, 0x8c5140,1, 0x8c5150,9, 0x8c5180,2, 0x8c51a4,1, 0x8c51b4,8, 0x8c5200,20, 0x8c5260,6, 0x8c5280,4, 0x8c52a0,6, 0x8c6100,1, 0x8c610c,4, 0x8c6120,16, 0x8c6180,1, 0x8c6200,91, 0x8c6508,1, 0x8c6540,1, 0x8c7000,1, 0x8c7014,1, 0x8c701c,2, 0x8c7034,1, 0x8c703c,5, 0x8c7060,6, 0x8c7080,4, 0x8c70a0,6, 0x8c70c0,3, 0x8c70d0,2, 0x8c7100,11, 0x8c7134,4, 0x8c7150,3, 0x8c7200,3, 0x8c7210,1, 0x8c7220,9, 0x8c7260,2, 0x8c7300,25, 0x8c9000,19, 0x8d0000,286, 0x8d0800,3, 0x8d0810,3, 0x8d0820,3, 0x8d0830,4, 0x8d0844,7, 0x8d1000,3, 0x8d1010,86, 0x8d1170,18, 0x8d1200,1, 0x8d1220,1, 0x8d1240,1, 0x8d1254,1, 0x8d125c,4, 0x8d1270,1, 0x8d1278,1, 0x8d1400,3, 0x8d1410,86, 0x8d1570,20, 0x8d1604,1, 0x8d1640,48, 0x8d1704,1, 0x8d1710,5, 0x8d1740,6, 0x8d18e0,12, 0x8d1920,4, 0x8d1a00,7, 0x8d1a20,37, 0x8d1b00,41, 0x8d1bb0,3, 0x8d1c00,25, 0x8d1c80,7, 0x8d1ca0,6, 0x8d1cc0,7, 0x8d1d00,7, 0x8d1d20,5, 0x8d1d40,10, 0x8d2000,286, 0x8d2800,3, 0x8d2810,3, 0x8d2820,3, 0x8d2830,4, 0x8d2844,7, 0x8d3000,3, 0x8d3010,86, 0x8d3170,18, 0x8d3200,1, 0x8d3220,1, 0x8d3240,1, 0x8d3254,1, 0x8d325c,4, 0x8d3270,1, 0x8d3278,1, 0x8d3400,3, 0x8d3410,86, 0x8d3570,20, 0x8d3604,1, 0x8d3640,48, 0x8d3704,1, 0x8d3710,5, 0x8d3740,6, 0x8d38e0,12, 0x8d3920,4, 0x8d3a00,7, 0x8d3a20,37, 0x8d3b00,41, 0x8d3bb0,3, 0x8d3c00,25, 0x8d3c80,7, 0x8d3ca0,6, 0x8d3cc0,7, 0x8d3d00,7, 0x8d3d20,5, 0x8d3d40,10, 0x8d4000,19, 0x8d5000,11, 0x8d5040,5, 0x8d5058,1, 0x8d5060,1, 0x8e0000,3, 0x8e0010,3, 0x8e0020,5, 0x8e0038,9, 0x8e0060,8, 0x8e0100,17, 0x8e0200,3, 0x8e0210,3, 0x8e0220,5, 0x8e0238,9, 0x8e0260,8, 0x8e0300,17, 0x8e0400,3, 0x8e0414,1, 0x8e041c,33, 0x8e0540,33, 0x8e05c8,12, 0x8e0800,2, 0x8e0844,1, 0x8e084c,1, 0x8e0880,27, 0x8e0900,4, 0x8e0980,19, 0x8e0a00,4, 0x8e0a80,19, 0x8e0b00,1, 0x8e0b40,5, 0x8e0b60,5, 0x8e0b80,6, 0x8e0bb0,17, 0x8e0c00,13, 0x8e0c40,5, 0x8e0c80,12, 0x8e1000,3, 0x8e1010,3, 0x8e1020,5, 0x8e1038,9, 0x8e1060,8, 0x8e1100,17, 0x8e1200,3, 0x8e1210,3, 0x8e1220,5, 0x8e1238,9, 0x8e1260,8, 0x8e1300,17, 0x8e1400,3, 0x8e1414,1, 0x8e141c,33, 0x8e1540,33, 0x8e15c8,12, 0x8e1800,2, 0x8e1844,1, 0x8e184c,1, 0x8e1880,27, 0x8e1900,4, 0x8e1980,19, 0x8e1a00,4, 0x8e1a80,19, 0x8e1b00,1, 0x8e1b40,5, 0x8e1b60,5, 0x8e1b80,6, 0x8e1bb0,17, 0x8e1c00,13, 0x8e1c40,5, 0x8e1c80,12, 0x8e2000,19, 0x8e2080,4, 0x8e3000,19, 0x8e4000,2, 0x8e400c,5, 0x8e4028,3, 0x8e4038,3, 0x8e4050,1, 0x8e4080,13, 0x8e4120,4, 0x8e4140,1, 0x8e4400,26, 0x8e4470,3, 0x8e4580,10, 0x8e45c0,8, 0x8e45e8,2, 0x8e45f4,2, 0x8e4600,5, 0x8e4618,1, 0x8e4620,1, 0x8e4628,1, 0x8e4630,2, 0x8e4640,2, 0x8e4650,2, 0x8e4690,4, 0x8e4740,2, 0x8e4800,2, 0x8e480c,5, 0x8e4828,3, 0x8e4838,3, 0x8e4850,1, 0x8e4880,13, 0x8e4920,4, 0x8e4940,1, 0x8e4c00,26, 0x8e4c70,3, 0x8e4d80,10, 0x8e4dc0,8, 0x8e4de8,2, 0x8e4df4,2, 0x8e4e00,5, 0x8e4e18,1, 0x8e4e20,1, 0x8e4e28,1, 0x8e4e30,2, 0x8e4e40,2, 0x8e4e50,2, 0x8e4e90,4, 0x8e4f40,2, 0x8e5800,11, 0x8e5880,2, 0x8e58b0,2, 0x8e6000,35, 0x8e6c00,10, 0x8e6c80,3, 0x900000,4, 0x900014,1, 0x900020,3, 0x900030,3, 0x900040,5, 0x900064,5, 0x90007c,2, 0x9000a0,28, 0x900114,1, 0x900120,3, 0x900130,3, 0x900140,5, 0x900164,5, 0x90017c,2, 0x9001a0,28, 0x900214,1, 0x900220,3, 0x900230,3, 0x900240,5, 0x900264,5, 0x90027c,2, 0x9002a0,28, 0x900314,1, 0x900320,3, 0x900330,3, 0x900340,5, 0x900364,5, 0x90037c,2, 0x9003a0,24, 0x9005c0,1, 0x900600,1, 0x900608,3, 0x900618,2, 0x900800,18, 0x900880,10, 0x9008ac,2, 0x9008f0,3, 0x900900,18, 0x900980,10, 0x9009ac,2, 0x9009f0,3, 0x900c00,18, 0x900c50,2, 0x900c60,6, 0x900c80,18, 0x900cd0,2, 0x900ce0,6, 0x900e00,4, 0x900e20,4, 0x900e80,16, 0x900f00,5, 0x900f20,5, 0x901000,12, 0x901200,1, 0x901208,6, 0x901228,9, 0x901280,1, 0x901288,6, 0x9012a8,9, 0x901400,15, 0x901440,15, 0x901600,7, 0x901620,7, 0x901680,4, 0x90169c,11, 0x9016d0,2, 0x901800,27, 0x901880,4, 0x901898,3, 0x9019a4,1, 0x901a00,4, 0x901a20,4, 0x901a40,6, 0x901a80,4, 0x901aa0,4, 0x901ac0,6, 0x902000,16, 0x902060,7, 0x902080,16, 0x9020e0,7, 0x902200,19, 0x902280,19, 0x902400,14, 0x90243c,9, 0x902464,6, 0x902480,7, 0x9024a0,2, 0x9024ac,2, 0x902500,14, 0x90253c,9, 0x902564,6, 0x902580,7, 0x9025a0,2, 0x9025ac,2, 0x902800,19, 0x902880,19, 0x902b00,1, 0x902b20,1, 0x902b28,4, 0x902b40,1, 0x902b60,1, 0x902b68,4, 0x902c00,7, 0x902c20,1, 0x902c54,18, 0x902ca0,1, 0x902cd4,11, 0x902e00,8, 0x903000,16, 0x903100,7, 0x903120,7, 0x903180,3, 0x904000,4, 0x904014,1, 0x904020,3, 0x904030,3, 0x904040,5, 0x904064,5, 0x90407c,2, 0x9040a0,28, 0x904114,1, 0x904120,3, 0x904130,3, 0x904140,5, 0x904164,5, 0x90417c,2, 0x9041a0,28, 0x904214,1, 0x904220,3, 0x904230,3, 0x904240,5, 0x904264,5, 0x90427c,2, 0x9042a0,28, 0x904314,1, 0x904320,3, 0x904330,3, 0x904340,5, 0x904364,5, 0x90437c,2, 0x9043a0,24, 0x9045c0,1, 0x904600,1, 0x904608,3, 0x904618,2, 0x904800,18, 0x904880,10, 0x9048ac,2, 0x9048f0,3, 0x904900,18, 0x904980,10, 0x9049ac,2, 0x9049f0,3, 0x904c00,18, 0x904c50,2, 0x904c60,6, 0x904c80,18, 0x904cd0,2, 0x904ce0,6, 0x904e00,4, 0x904e20,4, 0x904e80,16, 0x904f00,5, 0x904f20,5, 0x905000,12, 0x905200,1, 0x905208,6, 0x905228,9, 0x905280,1, 0x905288,6, 0x9052a8,9, 0x905400,15, 0x905440,15, 0x905600,7, 0x905620,7, 0x905680,4, 0x90569c,11, 0x9056d0,2, 0x905800,27, 0x905880,4, 0x905898,3, 0x9059a4,1, 0x905a00,4, 0x905a20,4, 0x905a40,6, 0x905a80,4, 0x905aa0,4, 0x905ac0,6, 0x906000,16, 0x906060,7, 0x906080,16, 0x9060e0,7, 0x906200,19, 0x906280,19, 0x906400,14, 0x90643c,9, 0x906464,6, 0x906480,7, 0x9064a0,2, 0x9064ac,2, 0x906500,14, 0x90653c,9, 0x906564,6, 0x906580,7, 0x9065a0,2, 0x9065ac,2, 0x906800,19, 0x906880,19, 0x906b00,1, 0x906b20,1, 0x906b28,4, 0x906b40,1, 0x906b60,1, 0x906b68,4, 0x906c00,7, 0x906c20,1, 0x906c54,18, 0x906ca0,1, 0x906cd4,11, 0x906e00,8, 0x907000,16, 0x907100,7, 0x907120,7, 0x907180,3, 0x90c000,22, 0x90c060,6, 0x90c080,11, 0x90c100,11, 0x90c204,1, 0x90c224,21, 0x90c280,16, 0x90d000,8, 0x90d024,10, 0x90d050,22, 0x90d100,8, 0x90d124,10, 0x90d150,22, 0x90d200,8, 0x90d224,10, 0x90d250,22, 0x90d300,8, 0x90d324,10, 0x90d350,22, 0x90d400,8, 0x90d424,10, 0x90d450,22, 0x90d500,8, 0x90d524,10, 0x90d550,22, 0x90d600,8, 0x90d624,10, 0x90d650,22, 0x90d700,8, 0x90d724,10, 0x90d750,22, 0x90d800,8, 0x90d824,10, 0x90d850,22, 0x90d904,1, 0x90d914,10, 0x90d948,11, 0x90d980,1, 0x90da00,6, 0x90da20,2, 0x90da2c,2, 0x90e800,1, 0x90e808,3, 0x90e838,1, 0x90e844,1, 0x90e850,2, 0x90e860,8, 0x90e900,13, 0x90e940,19, 0x90e990,4, 0x90f000,35, 0x90fc00,10, 0x90fc80,3, 0x90fcc0,1, 0x910000,13, 0x910040,2, 0x910054,4, 0x910080,27, 0x910100,12, 0x910140,11, 0x910170,2, 0x910180,28, 0x910200,6, 0x910240,6, 0x91025c,3, 0x910280,5, 0x9102a0,8, 0x910400,14, 0x910440,14, 0x910480,14, 0x9104c0,14, 0x910540,3, 0x910600,7, 0x910620,14, 0x910680,5, 0x9106a0,7, 0x910800,13, 0x910840,2, 0x910854,4, 0x910880,27, 0x910900,12, 0x910940,11, 0x910970,2, 0x910980,28, 0x910a00,6, 0x910a40,6, 0x910a5c,3, 0x910a80,5, 0x910aa0,8, 0x910c00,14, 0x910c40,14, 0x910c80,14, 0x910cc0,14, 0x910d40,3, 0x910e00,7, 0x910e20,14, 0x910e80,5, 0x910ea0,7, 0x911000,13, 0x911040,2, 0x911054,4, 0x911080,27, 0x911100,12, 0x911140,11, 0x911170,2, 0x911180,28, 0x911200,6, 0x911240,6, 0x91125c,3, 0x911280,5, 0x9112a0,8, 0x911400,14, 0x911440,14, 0x911480,14, 0x9114c0,14, 0x911540,3, 0x911600,7, 0x911620,14, 0x911680,5, 0x9116a0,7, 0x911800,13, 0x911840,2, 0x911854,4, 0x911880,27, 0x911900,12, 0x911940,11, 0x911970,2, 0x911980,28, 0x911a00,6, 0x911a40,6, 0x911a5c,3, 0x911a80,5, 0x911aa0,8, 0x911c00,14, 0x911c40,14, 0x911c80,14, 0x911cc0,14, 0x911d40,3, 0x911e00,7, 0x911e20,14, 0x911e80,5, 0x911ea0,7, 0x912000,8, 0x912040,8, 0x912080,1, 0x912098,6, 0x912100,10, 0x912140,3, 0x912150,2, 0x912180,2, 0x912200,6, 0x912220,17, 0x912280,4, 0x912300,8, 0x912400,2, 0x912480,2, 0x913000,40, 0x913100,64, 0x914000,13, 0x914040,2, 0x914054,4, 0x914080,27, 0x914100,12, 0x914140,11, 0x914170,2, 0x914180,28, 0x914200,6, 0x914240,6, 0x91425c,3, 0x914280,5, 0x9142a0,8, 0x914400,14, 0x914440,14, 0x914480,14, 0x9144c0,14, 0x914540,3, 0x914600,7, 0x914620,14, 0x914680,5, 0x9146a0,7, 0x914800,13, 0x914840,2, 0x914854,4, 0x914880,27, 0x914900,12, 0x914940,11, 0x914970,2, 0x914980,28, 0x914a00,6, 0x914a40,6, 0x914a5c,3, 0x914a80,5, 0x914aa0,8, 0x914c00,14, 0x914c40,14, 0x914c80,14, 0x914cc0,14, 0x914d40,3, 0x914e00,7, 0x914e20,14, 0x914e80,5, 0x914ea0,7, 0x915000,13, 0x915040,2, 0x915054,4, 0x915080,27, 0x915100,12, 0x915140,11, 0x915170,2, 0x915180,28, 0x915200,6, 0x915240,6, 0x91525c,3, 0x915280,5, 0x9152a0,8, 0x915400,14, 0x915440,14, 0x915480,14, 0x9154c0,14, 0x915540,3, 0x915600,7, 0x915620,14, 0x915680,5, 0x9156a0,7, 0x915800,13, 0x915840,2, 0x915854,4, 0x915880,27, 0x915900,12, 0x915940,11, 0x915970,2, 0x915980,28, 0x915a00,6, 0x915a40,6, 0x915a5c,3, 0x915a80,5, 0x915aa0,8, 0x915c00,14, 0x915c40,14, 0x915c80,14, 0x915cc0,14, 0x915d40,3, 0x915e00,7, 0x915e20,14, 0x915e80,5, 0x915ea0,7, 0x916000,8, 0x916040,8, 0x916080,1, 0x916098,6, 0x916100,10, 0x916140,3, 0x916150,2, 0x916180,2, 0x916200,6, 0x916220,17, 0x916280,4, 0x916300,8, 0x916400,2, 0x916480,2, 0x917000,40, 0x917100,64, 0x920000,11, 0x920040,11, 0x920070,3, 0x920084,5, 0x9200a4,5, 0x920200,7, 0x920220,6, 0x920240,7, 0x920260,6, 0x920280,6, 0x9202a0,2, 0x9202ac,2, 0x9202c0,7, 0x9202e0,7, 0x920300,2, 0x92030c,2, 0x920320,6, 0x921000,19, 0x922000,25, 0x922070,6, 0x92208c,1, 0x922094,1, 0x92209c,8, 0x922104,23, 0x922180,7, 0x9221a0,6, 0x9221c0,7, 0x9221e0,6, 0x922400,61, 0x922500,25, 0x922568,4, 0x922580,2, 0x9225a0,1, 0x9225c0,11, 0x922600,9, 0x922640,3, 0x922650,3, 0x922664,3, 0x922680,22, 0x922700,17, 0x922800,11, 0x923000,594, 0x924000,25, 0x924070,6, 0x92408c,1, 0x924094,1, 0x92409c,8, 0x924104,23, 0x924180,7, 0x9241a0,6, 0x9241c0,7, 0x9241e0,6, 0x924400,61, 0x924500,25, 0x924568,4, 0x924580,2, 0x9245a0,1, 0x9245c0,11, 0x924600,9, 0x924640,3, 0x924650,3, 0x924664,3, 0x924680,22, 0x924700,17, 0x924800,11, 0x925000,594, 0x92a000,25, 0x92a070,6, 0x92a08c,1, 0x92a094,1, 0x92a09c,8, 0x92a104,23, 0x92a180,7, 0x92a1a0,6, 0x92a1c0,7, 0x92a1e0,6, 0x92a400,61, 0x92a500,25, 0x92a568,4, 0x92a580,2, 0x92a5a0,1, 0x92a5c0,11, 0x92a600,9, 0x92a640,3, 0x92a650,3, 0x92a664,3, 0x92a680,22, 0x92a700,17, 0x92a800,11, 0x92b000,594, 0x92c000,25, 0x92c070,6, 0x92c08c,1, 0x92c094,1, 0x92c09c,8, 0x92c104,23, 0x92c180,7, 0x92c1a0,6, 0x92c1c0,7, 0x92c1e0,6, 0x92c400,61, 0x92c500,25, 0x92c568,4, 0x92c580,2, 0x92c5a0,1, 0x92c5c0,11, 0x92c600,9, 0x92c640,3, 0x92c650,3, 0x92c664,3, 0x92c680,22, 0x92c700,17, 0x92c800,11, 0x92d000,594, 0x93f000,7, 0x93f048,7, 0x93f080,8, 0x93f100,7, 0x93f148,7, 0x93f180,8, 0x93f400,7, 0x93f448,7, 0x93f480,8, 0x93f500,7, 0x93f548,7, 0x93f580,8, 0x940000,31, 0x940080,31, 0x940100,31, 0x940180,31, 0x940200,31, 0x940280,31, 0x940300,31, 0x940380,31, 0x940400,64, 0x940504,5, 0x940520,1, 0x940600,6, 0x940620,6, 0x940640,6, 0x940660,6, 0x940680,6, 0x9406a0,6, 0x9406c0,6, 0x9406e0,6, 0x940700,4, 0x940720,3, 0x940730,3, 0x940760,3, 0x940770,1, 0x940780,5, 0x940800,31, 0x940880,31, 0x940900,31, 0x940980,31, 0x940a00,31, 0x940a80,31, 0x940b00,31, 0x940b80,31, 0x940c00,64, 0x940d04,5, 0x940d20,1, 0x940e00,6, 0x940e20,6, 0x940e40,6, 0x940e60,6, 0x940e80,6, 0x940ea0,6, 0x940ec0,6, 0x940ee0,6, 0x940f00,4, 0x940f20,3, 0x940f30,3, 0x940f60,3, 0x940f70,1, 0x940f80,5, 0x941000,11, 0x941040,11, 0x941080,11, 0x9410c0,11, 0x941100,21, 0x941160,5, 0x941180,3, 0x941190,3, 0x9411a0,11, 0x9411d0,3, 0x9411e0,3, 0x941200,86, 0x941400,5, 0x94141c,1, 0x941440,6, 0x941460,1, 0x941480,3, 0x941490,1, 0x941800,11, 0x941840,11, 0x941880,11, 0x9418c0,11, 0x941900,21, 0x941960,5, 0x941980,3, 0x941990,3, 0x9419a0,11, 0x9419d0,3, 0x9419e0,3, 0x941a00,86, 0x941c00,5, 0x941c1c,1, 0x941c40,6, 0x941c60,1, 0x941c80,3, 0x941c90,1, 0x942000,32, 0x942084,1, 0x942094,3, 0x9420c4,3, 0x942100,1, 0x94210c,3, 0x942120,3, 0x942140,1, 0x942150,9, 0x942180,2, 0x9421a4,1, 0x9421b4,8, 0x942200,20, 0x942260,6, 0x942280,4, 0x9422a0,6, 0x943000,31, 0x943080,31, 0x943100,31, 0x943180,31, 0x943200,31, 0x943280,31, 0x943300,31, 0x943380,31, 0x943400,64, 0x943504,5, 0x943520,1, 0x943600,6, 0x943620,6, 0x943640,6, 0x943660,6, 0x943680,6, 0x9436a0,6, 0x9436c0,6, 0x9436e0,6, 0x943700,4, 0x943720,3, 0x943730,3, 0x943760,3, 0x943770,1, 0x943780,5, 0x943800,31, 0x943880,31, 0x943900,31, 0x943980,31, 0x943a00,31, 0x943a80,31, 0x943b00,31, 0x943b80,31, 0x943c00,64, 0x943d04,5, 0x943d20,1, 0x943e00,6, 0x943e20,6, 0x943e40,6, 0x943e60,6, 0x943e80,6, 0x943ea0,6, 0x943ec0,6, 0x943ee0,6, 0x943f00,4, 0x943f20,3, 0x943f30,3, 0x943f60,3, 0x943f70,1, 0x943f80,5, 0x944000,11, 0x944040,11, 0x944080,11, 0x9440c0,11, 0x944100,21, 0x944160,5, 0x944180,3, 0x944190,3, 0x9441a0,11, 0x9441d0,3, 0x9441e0,3, 0x944200,86, 0x944400,5, 0x94441c,1, 0x944440,6, 0x944460,1, 0x944480,3, 0x944490,1, 0x944800,11, 0x944840,11, 0x944880,11, 0x9448c0,11, 0x944900,21, 0x944960,5, 0x944980,3, 0x944990,3, 0x9449a0,11, 0x9449d0,3, 0x9449e0,3, 0x944a00,86, 0x944c00,5, 0x944c1c,1, 0x944c40,6, 0x944c60,1, 0x944c80,3, 0x944c90,1, 0x945000,32, 0x945084,1, 0x945094,3, 0x9450c4,3, 0x945100,1, 0x94510c,3, 0x945120,3, 0x945140,1, 0x945150,9, 0x945180,2, 0x9451a4,1, 0x9451b4,8, 0x945200,20, 0x945260,6, 0x945280,4, 0x9452a0,6, 0x946100,1, 0x94610c,4, 0x946120,16, 0x946180,1, 0x946200,91, 0x946508,1, 0x946540,1, 0x947000,1, 0x947014,1, 0x94701c,2, 0x947034,1, 0x94703c,5, 0x947060,6, 0x947080,4, 0x9470a0,6, 0x9470c0,3, 0x9470d0,2, 0x947100,11, 0x947134,4, 0x947150,3, 0x947200,3, 0x947210,1, 0x947220,9, 0x947260,2, 0x947300,25, 0x949000,19, 0x950000,286, 0x950800,3, 0x950810,3, 0x950820,3, 0x950830,4, 0x950844,7, 0x951000,3, 0x951010,86, 0x951170,18, 0x951200,1, 0x951220,1, 0x951240,1, 0x951254,1, 0x95125c,4, 0x951270,1, 0x951278,1, 0x951400,3, 0x951410,86, 0x951570,20, 0x951604,1, 0x951640,48, 0x951704,1, 0x951710,5, 0x951740,6, 0x9518e0,12, 0x951920,4, 0x951a00,7, 0x951a20,37, 0x951b00,41, 0x951bb0,3, 0x951c00,25, 0x951c80,7, 0x951ca0,6, 0x951cc0,7, 0x951d00,7, 0x951d20,5, 0x951d40,10, 0x952000,286, 0x952800,3, 0x952810,3, 0x952820,3, 0x952830,4, 0x952844,7, 0x953000,3, 0x953010,86, 0x953170,18, 0x953200,1, 0x953220,1, 0x953240,1, 0x953254,1, 0x95325c,4, 0x953270,1, 0x953278,1, 0x953400,3, 0x953410,86, 0x953570,20, 0x953604,1, 0x953640,48, 0x953704,1, 0x953710,5, 0x953740,6, 0x9538e0,12, 0x953920,4, 0x953a00,7, 0x953a20,37, 0x953b00,41, 0x953bb0,3, 0x953c00,25, 0x953c80,7, 0x953ca0,6, 0x953cc0,7, 0x953d00,7, 0x953d20,5, 0x953d40,10, 0x954000,19, 0x955000,11, 0x955040,5, 0x955058,1, 0x955060,1, 0x960000,3, 0x960010,3, 0x960020,5, 0x960038,9, 0x960060,8, 0x960100,17, 0x960200,3, 0x960210,3, 0x960220,5, 0x960238,9, 0x960260,8, 0x960300,17, 0x960400,3, 0x960414,1, 0x96041c,33, 0x960540,33, 0x9605c8,12, 0x960800,2, 0x960844,1, 0x96084c,1, 0x960880,27, 0x960900,4, 0x960980,19, 0x960a00,4, 0x960a80,19, 0x960b00,1, 0x960b40,5, 0x960b60,5, 0x960b80,6, 0x960bb0,17, 0x960c00,13, 0x960c40,5, 0x960c80,12, 0x961000,3, 0x961010,3, 0x961020,5, 0x961038,9, 0x961060,8, 0x961100,17, 0x961200,3, 0x961210,3, 0x961220,5, 0x961238,9, 0x961260,8, 0x961300,17, 0x961400,3, 0x961414,1, 0x96141c,33, 0x961540,33, 0x9615c8,12, 0x961800,2, 0x961844,1, 0x96184c,1, 0x961880,27, 0x961900,4, 0x961980,19, 0x961a00,4, 0x961a80,19, 0x961b00,1, 0x961b40,5, 0x961b60,5, 0x961b80,6, 0x961bb0,17, 0x961c00,13, 0x961c40,5, 0x961c80,12, 0x962000,19, 0x962080,4, 0x963000,19, 0x964000,2, 0x96400c,5, 0x964028,3, 0x964038,3, 0x964050,1, 0x964080,13, 0x964120,4, 0x964140,1, 0x964400,26, 0x964470,3, 0x964580,10, 0x9645c0,8, 0x9645e8,2, 0x9645f4,2, 0x964600,5, 0x964618,1, 0x964620,1, 0x964628,1, 0x964630,2, 0x964640,2, 0x964650,2, 0x964690,4, 0x964740,2, 0x964800,2, 0x96480c,5, 0x964828,3, 0x964838,3, 0x964850,1, 0x964880,13, 0x964920,4, 0x964940,1, 0x964c00,26, 0x964c70,3, 0x964d80,10, 0x964dc0,8, 0x964de8,2, 0x964df4,2, 0x964e00,5, 0x964e18,1, 0x964e20,1, 0x964e28,1, 0x964e30,2, 0x964e40,2, 0x964e50,2, 0x964e90,4, 0x964f40,2, 0x965800,11, 0x965880,2, 0x9658b0,2, 0x966000,35, 0x966c00,10, 0x966c80,3, 0x980000,4, 0x980014,1, 0x980020,3, 0x980030,3, 0x980040,5, 0x980064,5, 0x98007c,2, 0x9800a0,28, 0x980114,1, 0x980120,3, 0x980130,3, 0x980140,5, 0x980164,5, 0x98017c,2, 0x9801a0,28, 0x980214,1, 0x980220,3, 0x980230,3, 0x980240,5, 0x980264,5, 0x98027c,2, 0x9802a0,28, 0x980314,1, 0x980320,3, 0x980330,3, 0x980340,5, 0x980364,5, 0x98037c,2, 0x9803a0,24, 0x9805c0,1, 0x980600,1, 0x980608,3, 0x980618,2, 0x980800,18, 0x980880,10, 0x9808ac,2, 0x9808f0,3, 0x980900,18, 0x980980,10, 0x9809ac,2, 0x9809f0,3, 0x980c00,18, 0x980c50,2, 0x980c60,6, 0x980c80,18, 0x980cd0,2, 0x980ce0,6, 0x980e00,4, 0x980e20,4, 0x980e80,16, 0x980f00,5, 0x980f20,5, 0x981000,12, 0x981200,1, 0x981208,6, 0x981228,9, 0x981280,1, 0x981288,6, 0x9812a8,9, 0x981400,15, 0x981440,15, 0x981600,7, 0x981620,7, 0x981680,4, 0x98169c,11, 0x9816d0,2, 0x981800,27, 0x981880,4, 0x981898,3, 0x9819a4,1, 0x981a00,4, 0x981a20,4, 0x981a40,6, 0x981a80,4, 0x981aa0,4, 0x981ac0,6, 0x982000,16, 0x982060,7, 0x982080,16, 0x9820e0,7, 0x982200,19, 0x982280,19, 0x982400,14, 0x98243c,9, 0x982464,6, 0x982480,7, 0x9824a0,2, 0x9824ac,2, 0x982500,14, 0x98253c,9, 0x982564,6, 0x982580,7, 0x9825a0,2, 0x9825ac,2, 0x982800,19, 0x982880,19, 0x982b00,1, 0x982b20,1, 0x982b28,4, 0x982b40,1, 0x982b60,1, 0x982b68,4, 0x982c00,7, 0x982c20,1, 0x982c54,18, 0x982ca0,1, 0x982cd4,11, 0x982e00,8, 0x983000,16, 0x983100,7, 0x983120,7, 0x983180,3, 0x984000,4, 0x984014,1, 0x984020,3, 0x984030,3, 0x984040,5, 0x984064,5, 0x98407c,2, 0x9840a0,28, 0x984114,1, 0x984120,3, 0x984130,3, 0x984140,5, 0x984164,5, 0x98417c,2, 0x9841a0,28, 0x984214,1, 0x984220,3, 0x984230,3, 0x984240,5, 0x984264,5, 0x98427c,2, 0x9842a0,28, 0x984314,1, 0x984320,3, 0x984330,3, 0x984340,5, 0x984364,5, 0x98437c,2, 0x9843a0,24, 0x9845c0,1, 0x984600,1, 0x984608,3, 0x984618,2, 0x984800,18, 0x984880,10, 0x9848ac,2, 0x9848f0,3, 0x984900,18, 0x984980,10, 0x9849ac,2, 0x9849f0,3, 0x984c00,18, 0x984c50,2, 0x984c60,6, 0x984c80,18, 0x984cd0,2, 0x984ce0,6, 0x984e00,4, 0x984e20,4, 0x984e80,16, 0x984f00,5, 0x984f20,5, 0x985000,12, 0x985200,1, 0x985208,6, 0x985228,9, 0x985280,1, 0x985288,6, 0x9852a8,9, 0x985400,15, 0x985440,15, 0x985600,7, 0x985620,7, 0x985680,4, 0x98569c,11, 0x9856d0,2, 0x985800,27, 0x985880,4, 0x985898,3, 0x9859a4,1, 0x985a00,4, 0x985a20,4, 0x985a40,6, 0x985a80,4, 0x985aa0,4, 0x985ac0,6, 0x986000,16, 0x986060,7, 0x986080,16, 0x9860e0,7, 0x986200,19, 0x986280,19, 0x986400,14, 0x98643c,9, 0x986464,6, 0x986480,7, 0x9864a0,2, 0x9864ac,2, 0x986500,14, 0x98653c,9, 0x986564,6, 0x986580,7, 0x9865a0,2, 0x9865ac,2, 0x986800,19, 0x986880,19, 0x986b00,1, 0x986b20,1, 0x986b28,4, 0x986b40,1, 0x986b60,1, 0x986b68,4, 0x986c00,7, 0x986c20,1, 0x986c54,18, 0x986ca0,1, 0x986cd4,11, 0x986e00,8, 0x987000,16, 0x987100,7, 0x987120,7, 0x987180,3, 0x98c000,22, 0x98c060,6, 0x98c080,11, 0x98c100,11, 0x98c204,1, 0x98c224,21, 0x98c280,16, 0x98d000,8, 0x98d024,10, 0x98d050,22, 0x98d100,8, 0x98d124,10, 0x98d150,22, 0x98d200,8, 0x98d224,10, 0x98d250,22, 0x98d300,8, 0x98d324,10, 0x98d350,22, 0x98d400,8, 0x98d424,10, 0x98d450,22, 0x98d500,8, 0x98d524,10, 0x98d550,22, 0x98d600,8, 0x98d624,10, 0x98d650,22, 0x98d700,8, 0x98d724,10, 0x98d750,22, 0x98d800,8, 0x98d824,10, 0x98d850,22, 0x98d904,1, 0x98d914,10, 0x98d948,11, 0x98d980,1, 0x98da00,6, 0x98da20,2, 0x98da2c,2, 0x98e800,1, 0x98e808,3, 0x98e838,1, 0x98e844,1, 0x98e850,2, 0x98e860,8, 0x98e900,13, 0x98e940,19, 0x98e990,4, 0x98f000,35, 0x98fc00,10, 0x98fc80,3, 0x98fcc0,1, 0x990000,13, 0x990040,2, 0x990054,4, 0x990080,27, 0x990100,12, 0x990140,11, 0x990170,2, 0x990180,28, 0x990200,6, 0x990240,6, 0x99025c,3, 0x990280,5, 0x9902a0,8, 0x990400,14, 0x990440,14, 0x990480,14, 0x9904c0,14, 0x990540,3, 0x990600,7, 0x990620,14, 0x990680,5, 0x9906a0,7, 0x990800,13, 0x990840,2, 0x990854,4, 0x990880,27, 0x990900,12, 0x990940,11, 0x990970,2, 0x990980,28, 0x990a00,6, 0x990a40,6, 0x990a5c,3, 0x990a80,5, 0x990aa0,8, 0x990c00,14, 0x990c40,14, 0x990c80,14, 0x990cc0,14, 0x990d40,3, 0x990e00,7, 0x990e20,14, 0x990e80,5, 0x990ea0,7, 0x991000,13, 0x991040,2, 0x991054,4, 0x991080,27, 0x991100,12, 0x991140,11, 0x991170,2, 0x991180,28, 0x991200,6, 0x991240,6, 0x99125c,3, 0x991280,5, 0x9912a0,8, 0x991400,14, 0x991440,14, 0x991480,14, 0x9914c0,14, 0x991540,3, 0x991600,7, 0x991620,14, 0x991680,5, 0x9916a0,7, 0x991800,13, 0x991840,2, 0x991854,4, 0x991880,27, 0x991900,12, 0x991940,11, 0x991970,2, 0x991980,28, 0x991a00,6, 0x991a40,6, 0x991a5c,3, 0x991a80,5, 0x991aa0,8, 0x991c00,14, 0x991c40,14, 0x991c80,14, 0x991cc0,14, 0x991d40,3, 0x991e00,7, 0x991e20,14, 0x991e80,5, 0x991ea0,7, 0x992000,8, 0x992040,8, 0x992080,1, 0x992098,6, 0x992100,10, 0x992140,3, 0x992150,2, 0x992180,2, 0x992200,6, 0x992220,17, 0x992280,4, 0x992300,8, 0x992400,2, 0x992480,2, 0x993000,40, 0x993100,64, 0x994000,13, 0x994040,2, 0x994054,4, 0x994080,27, 0x994100,12, 0x994140,11, 0x994170,2, 0x994180,28, 0x994200,6, 0x994240,6, 0x99425c,3, 0x994280,5, 0x9942a0,8, 0x994400,14, 0x994440,14, 0x994480,14, 0x9944c0,14, 0x994540,3, 0x994600,7, 0x994620,14, 0x994680,5, 0x9946a0,7, 0x994800,13, 0x994840,2, 0x994854,4, 0x994880,27, 0x994900,12, 0x994940,11, 0x994970,2, 0x994980,28, 0x994a00,6, 0x994a40,6, 0x994a5c,3, 0x994a80,5, 0x994aa0,8, 0x994c00,14, 0x994c40,14, 0x994c80,14, 0x994cc0,14, 0x994d40,3, 0x994e00,7, 0x994e20,14, 0x994e80,5, 0x994ea0,7, 0x995000,13, 0x995040,2, 0x995054,4, 0x995080,27, 0x995100,12, 0x995140,11, 0x995170,2, 0x995180,28, 0x995200,6, 0x995240,6, 0x99525c,3, 0x995280,5, 0x9952a0,8, 0x995400,14, 0x995440,14, 0x995480,14, 0x9954c0,14, 0x995540,3, 0x995600,7, 0x995620,14, 0x995680,5, 0x9956a0,7, 0x995800,13, 0x995840,2, 0x995854,4, 0x995880,27, 0x995900,12, 0x995940,11, 0x995970,2, 0x995980,28, 0x995a00,6, 0x995a40,6, 0x995a5c,3, 0x995a80,5, 0x995aa0,8, 0x995c00,14, 0x995c40,14, 0x995c80,14, 0x995cc0,14, 0x995d40,3, 0x995e00,7, 0x995e20,14, 0x995e80,5, 0x995ea0,7, 0x996000,8, 0x996040,8, 0x996080,1, 0x996098,6, 0x996100,10, 0x996140,3, 0x996150,2, 0x996180,2, 0x996200,6, 0x996220,17, 0x996280,4, 0x996300,8, 0x996400,2, 0x996480,2, 0x997000,40, 0x997100,64, 0x9a0000,11, 0x9a0040,11, 0x9a0070,3, 0x9a0084,5, 0x9a00a4,5, 0x9a0200,7, 0x9a0220,6, 0x9a0240,7, 0x9a0260,6, 0x9a0280,6, 0x9a02a0,2, 0x9a02ac,2, 0x9a02c0,7, 0x9a02e0,7, 0x9a0300,2, 0x9a030c,2, 0x9a0320,6, 0x9a1000,19, 0x9a2000,25, 0x9a2070,6, 0x9a208c,1, 0x9a2094,1, 0x9a209c,8, 0x9a2104,23, 0x9a2180,7, 0x9a21a0,6, 0x9a21c0,7, 0x9a21e0,6, 0x9a2400,61, 0x9a2500,25, 0x9a2568,4, 0x9a2580,2, 0x9a25a0,1, 0x9a25c0,11, 0x9a2600,9, 0x9a2640,3, 0x9a2650,3, 0x9a2664,3, 0x9a2680,22, 0x9a2700,17, 0x9a2800,11, 0x9a3000,594, 0x9a4000,25, 0x9a4070,6, 0x9a408c,1, 0x9a4094,1, 0x9a409c,8, 0x9a4104,23, 0x9a4180,7, 0x9a41a0,6, 0x9a41c0,7, 0x9a41e0,6, 0x9a4400,61, 0x9a4500,25, 0x9a4568,4, 0x9a4580,2, 0x9a45a0,1, 0x9a45c0,11, 0x9a4600,9, 0x9a4640,3, 0x9a4650,3, 0x9a4664,3, 0x9a4680,22, 0x9a4700,17, 0x9a4800,11, 0x9a5000,594, 0x9aa000,25, 0x9aa070,6, 0x9aa08c,1, 0x9aa094,1, 0x9aa09c,8, 0x9aa104,23, 0x9aa180,7, 0x9aa1a0,6, 0x9aa1c0,7, 0x9aa1e0,6, 0x9aa400,61, 0x9aa500,25, 0x9aa568,4, 0x9aa580,2, 0x9aa5a0,1, 0x9aa5c0,11, 0x9aa600,9, 0x9aa640,3, 0x9aa650,3, 0x9aa664,3, 0x9aa680,22, 0x9aa700,17, 0x9aa800,11, 0x9ab000,594, 0x9ac000,25, 0x9ac070,6, 0x9ac08c,1, 0x9ac094,1, 0x9ac09c,8, 0x9ac104,23, 0x9ac180,7, 0x9ac1a0,6, 0x9ac1c0,7, 0x9ac1e0,6, 0x9ac400,61, 0x9ac500,25, 0x9ac568,4, 0x9ac580,2, 0x9ac5a0,1, 0x9ac5c0,11, 0x9ac600,9, 0x9ac640,3, 0x9ac650,3, 0x9ac664,3, 0x9ac680,22, 0x9ac700,17, 0x9ac800,11, 0x9ad000,594, 0x9bf000,7, 0x9bf048,7, 0x9bf080,8, 0x9bf100,7, 0x9bf148,7, 0x9bf180,8, 0x9bf400,7, 0x9bf448,7, 0x9bf480,8, 0x9bf500,7, 0x9bf548,7, 0x9bf580,8, 0x9c0000,31, 0x9c0080,31, 0x9c0100,31, 0x9c0180,31, 0x9c0200,31, 0x9c0280,31, 0x9c0300,31, 0x9c0380,31, 0x9c0400,64, 0x9c0504,5, 0x9c0520,1, 0x9c0600,6, 0x9c0620,6, 0x9c0640,6, 0x9c0660,6, 0x9c0680,6, 0x9c06a0,6, 0x9c06c0,6, 0x9c06e0,6, 0x9c0700,4, 0x9c0720,3, 0x9c0730,3, 0x9c0760,3, 0x9c0770,1, 0x9c0780,5, 0x9c0800,31, 0x9c0880,31, 0x9c0900,31, 0x9c0980,31, 0x9c0a00,31, 0x9c0a80,31, 0x9c0b00,31, 0x9c0b80,31, 0x9c0c00,64, 0x9c0d04,5, 0x9c0d20,1, 0x9c0e00,6, 0x9c0e20,6, 0x9c0e40,6, 0x9c0e60,6, 0x9c0e80,6, 0x9c0ea0,6, 0x9c0ec0,6, 0x9c0ee0,6, 0x9c0f00,4, 0x9c0f20,3, 0x9c0f30,3, 0x9c0f60,3, 0x9c0f70,1, 0x9c0f80,5, 0x9c1000,11, 0x9c1040,11, 0x9c1080,11, 0x9c10c0,11, 0x9c1100,21, 0x9c1160,5, 0x9c1180,3, 0x9c1190,3, 0x9c11a0,11, 0x9c11d0,3, 0x9c11e0,3, 0x9c1200,86, 0x9c1400,5, 0x9c141c,1, 0x9c1440,6, 0x9c1460,1, 0x9c1480,3, 0x9c1490,1, 0x9c1800,11, 0x9c1840,11, 0x9c1880,11, 0x9c18c0,11, 0x9c1900,21, 0x9c1960,5, 0x9c1980,3, 0x9c1990,3, 0x9c19a0,11, 0x9c19d0,3, 0x9c19e0,3, 0x9c1a00,86, 0x9c1c00,5, 0x9c1c1c,1, 0x9c1c40,6, 0x9c1c60,1, 0x9c1c80,3, 0x9c1c90,1, 0x9c2000,32, 0x9c2084,1, 0x9c2094,3, 0x9c20c4,3, 0x9c2100,1, 0x9c210c,3, 0x9c2120,3, 0x9c2140,1, 0x9c2150,9, 0x9c2180,2, 0x9c21a4,1, 0x9c21b4,8, 0x9c2200,20, 0x9c2260,6, 0x9c2280,4, 0x9c22a0,6, 0x9c3000,31, 0x9c3080,31, 0x9c3100,31, 0x9c3180,31, 0x9c3200,31, 0x9c3280,31, 0x9c3300,31, 0x9c3380,31, 0x9c3400,64, 0x9c3504,5, 0x9c3520,1, 0x9c3600,6, 0x9c3620,6, 0x9c3640,6, 0x9c3660,6, 0x9c3680,6, 0x9c36a0,6, 0x9c36c0,6, 0x9c36e0,6, 0x9c3700,4, 0x9c3720,3, 0x9c3730,3, 0x9c3760,3, 0x9c3770,1, 0x9c3780,5, 0x9c3800,31, 0x9c3880,31, 0x9c3900,31, 0x9c3980,31, 0x9c3a00,31, 0x9c3a80,31, 0x9c3b00,31, 0x9c3b80,31, 0x9c3c00,64, 0x9c3d04,5, 0x9c3d20,1, 0x9c3e00,6, 0x9c3e20,6, 0x9c3e40,6, 0x9c3e60,6, 0x9c3e80,6, 0x9c3ea0,6, 0x9c3ec0,6, 0x9c3ee0,6, 0x9c3f00,4, 0x9c3f20,3, 0x9c3f30,3, 0x9c3f60,3, 0x9c3f70,1, 0x9c3f80,5, 0x9c4000,11, 0x9c4040,11, 0x9c4080,11, 0x9c40c0,11, 0x9c4100,21, 0x9c4160,5, 0x9c4180,3, 0x9c4190,3, 0x9c41a0,11, 0x9c41d0,3, 0x9c41e0,3, 0x9c4200,86, 0x9c4400,5, 0x9c441c,1, 0x9c4440,6, 0x9c4460,1, 0x9c4480,3, 0x9c4490,1, 0x9c4800,11, 0x9c4840,11, 0x9c4880,11, 0x9c48c0,11, 0x9c4900,21, 0x9c4960,5, 0x9c4980,3, 0x9c4990,3, 0x9c49a0,11, 0x9c49d0,3, 0x9c49e0,3, 0x9c4a00,86, 0x9c4c00,5, 0x9c4c1c,1, 0x9c4c40,6, 0x9c4c60,1, 0x9c4c80,3, 0x9c4c90,1, 0x9c5000,32, 0x9c5084,1, 0x9c5094,3, 0x9c50c4,3, 0x9c5100,1, 0x9c510c,3, 0x9c5120,3, 0x9c5140,1, 0x9c5150,9, 0x9c5180,2, 0x9c51a4,1, 0x9c51b4,8, 0x9c5200,20, 0x9c5260,6, 0x9c5280,4, 0x9c52a0,6, 0x9c6100,1, 0x9c610c,4, 0x9c6120,16, 0x9c6180,1, 0x9c6200,91, 0x9c6508,1, 0x9c6540,1, 0x9c7000,1, 0x9c7014,1, 0x9c701c,2, 0x9c7034,1, 0x9c703c,5, 0x9c7060,6, 0x9c7080,4, 0x9c70a0,6, 0x9c70c0,3, 0x9c70d0,2, 0x9c7100,11, 0x9c7134,4, 0x9c7150,3, 0x9c7200,3, 0x9c7210,1, 0x9c7220,9, 0x9c7260,2, 0x9c7300,25, 0x9c9000,19, 0x9d0000,286, 0x9d0800,3, 0x9d0810,3, 0x9d0820,3, 0x9d0830,4, 0x9d0844,7, 0x9d1000,3, 0x9d1010,86, 0x9d1170,18, 0x9d1200,1, 0x9d1220,1, 0x9d1240,1, 0x9d1254,1, 0x9d125c,4, 0x9d1270,1, 0x9d1278,1, 0x9d1400,3, 0x9d1410,86, 0x9d1570,20, 0x9d1604,1, 0x9d1640,48, 0x9d1704,1, 0x9d1710,5, 0x9d1740,6, 0x9d18e0,12, 0x9d1920,4, 0x9d1a00,7, 0x9d1a20,37, 0x9d1b00,41, 0x9d1bb0,3, 0x9d1c00,25, 0x9d1c80,7, 0x9d1ca0,6, 0x9d1cc0,7, 0x9d1d00,7, 0x9d1d20,5, 0x9d1d40,10, 0x9d2000,286, 0x9d2800,3, 0x9d2810,3, 0x9d2820,3, 0x9d2830,4, 0x9d2844,7, 0x9d3000,3, 0x9d3010,86, 0x9d3170,18, 0x9d3200,1, 0x9d3220,1, 0x9d3240,1, 0x9d3254,1, 0x9d325c,4, 0x9d3270,1, 0x9d3278,1, 0x9d3400,3, 0x9d3410,86, 0x9d3570,20, 0x9d3604,1, 0x9d3640,48, 0x9d3704,1, 0x9d3710,5, 0x9d3740,6, 0x9d38e0,12, 0x9d3920,4, 0x9d3a00,7, 0x9d3a20,37, 0x9d3b00,41, 0x9d3bb0,3, 0x9d3c00,25, 0x9d3c80,7, 0x9d3ca0,6, 0x9d3cc0,7, 0x9d3d00,7, 0x9d3d20,5, 0x9d3d40,10, 0x9d4000,19, 0x9d5000,11, 0x9d5040,5, 0x9d5058,1, 0x9d5060,1, 0x9e0000,3, 0x9e0010,3, 0x9e0020,5, 0x9e0038,9, 0x9e0060,8, 0x9e0100,17, 0x9e0200,3, 0x9e0210,3, 0x9e0220,5, 0x9e0238,9, 0x9e0260,8, 0x9e0300,17, 0x9e0400,3, 0x9e0414,1, 0x9e041c,33, 0x9e0540,33, 0x9e05c8,12, 0x9e0800,2, 0x9e0844,1, 0x9e084c,1, 0x9e0880,27, 0x9e0900,4, 0x9e0980,19, 0x9e0a00,4, 0x9e0a80,19, 0x9e0b00,1, 0x9e0b40,5, 0x9e0b60,5, 0x9e0b80,6, 0x9e0bb0,17, 0x9e0c00,13, 0x9e0c40,5, 0x9e0c80,12, 0x9e1000,3, 0x9e1010,3, 0x9e1020,5, 0x9e1038,9, 0x9e1060,8, 0x9e1100,17, 0x9e1200,3, 0x9e1210,3, 0x9e1220,5, 0x9e1238,9, 0x9e1260,8, 0x9e1300,17, 0x9e1400,3, 0x9e1414,1, 0x9e141c,33, 0x9e1540,33, 0x9e15c8,12, 0x9e1800,2, 0x9e1844,1, 0x9e184c,1, 0x9e1880,27, 0x9e1900,4, 0x9e1980,19, 0x9e1a00,4, 0x9e1a80,19, 0x9e1b00,1, 0x9e1b40,5, 0x9e1b60,5, 0x9e1b80,6, 0x9e1bb0,17, 0x9e1c00,13, 0x9e1c40,5, 0x9e1c80,12, 0x9e2000,19, 0x9e2080,4, 0x9e3000,19, 0x9e4000,2, 0x9e400c,5, 0x9e4028,3, 0x9e4038,3, 0x9e4050,1, 0x9e4080,13, 0x9e4120,4, 0x9e4140,1, 0x9e4400,26, 0x9e4470,3, 0x9e4580,10, 0x9e45c0,8, 0x9e45e8,2, 0x9e45f4,2, 0x9e4600,5, 0x9e4618,1, 0x9e4620,1, 0x9e4628,1, 0x9e4630,2, 0x9e4640,2, 0x9e4650,2, 0x9e4690,4, 0x9e4740,2, 0x9e4800,2, 0x9e480c,5, 0x9e4828,3, 0x9e4838,3, 0x9e4850,1, 0x9e4880,13, 0x9e4920,4, 0x9e4940,1, 0x9e4c00,26, 0x9e4c70,3, 0x9e4d80,10, 0x9e4dc0,8, 0x9e4de8,2, 0x9e4df4,2, 0x9e4e00,5, 0x9e4e18,1, 0x9e4e20,1, 0x9e4e28,1, 0x9e4e30,2, 0x9e4e40,2, 0x9e4e50,2, 0x9e4e90,4, 0x9e4f40,2, 0x9e5800,11, 0x9e5880,2, 0x9e58b0,2, 0x9e6000,35, 0x9e6c00,10, 0x9e6c80,3, 0xa00000,4, 0xa00014,1, 0xa00020,3, 0xa00030,3, 0xa00040,5, 0xa00064,5, 0xa0007c,2, 0xa000a0,28, 0xa00114,1, 0xa00120,3, 0xa00130,3, 0xa00140,5, 0xa00164,5, 0xa0017c,2, 0xa001a0,28, 0xa00214,1, 0xa00220,3, 0xa00230,3, 0xa00240,5, 0xa00264,5, 0xa0027c,2, 0xa002a0,28, 0xa00314,1, 0xa00320,3, 0xa00330,3, 0xa00340,5, 0xa00364,5, 0xa0037c,2, 0xa003a0,24, 0xa005c0,1, 0xa00600,1, 0xa00608,3, 0xa00618,2, 0xa00800,18, 0xa00880,10, 0xa008ac,2, 0xa008f0,3, 0xa00900,18, 0xa00980,10, 0xa009ac,2, 0xa009f0,3, 0xa00c00,18, 0xa00c50,2, 0xa00c60,6, 0xa00c80,18, 0xa00cd0,2, 0xa00ce0,6, 0xa00e00,4, 0xa00e20,4, 0xa00e80,16, 0xa00f00,5, 0xa00f20,5, 0xa01000,12, 0xa01200,1, 0xa01208,6, 0xa01228,9, 0xa01280,1, 0xa01288,6, 0xa012a8,9, 0xa01400,15, 0xa01440,15, 0xa01600,7, 0xa01620,7, 0xa01680,4, 0xa0169c,11, 0xa016d0,2, 0xa01800,27, 0xa01880,4, 0xa01898,3, 0xa019a4,1, 0xa01a00,4, 0xa01a20,4, 0xa01a40,6, 0xa01a80,4, 0xa01aa0,4, 0xa01ac0,6, 0xa02000,16, 0xa02060,7, 0xa02080,16, 0xa020e0,7, 0xa02200,19, 0xa02280,19, 0xa02400,14, 0xa0243c,9, 0xa02464,6, 0xa02480,7, 0xa024a0,2, 0xa024ac,2, 0xa02500,14, 0xa0253c,9, 0xa02564,6, 0xa02580,7, 0xa025a0,2, 0xa025ac,2, 0xa02800,19, 0xa02880,19, 0xa02b00,1, 0xa02b20,1, 0xa02b28,4, 0xa02b40,1, 0xa02b60,1, 0xa02b68,4, 0xa02c00,7, 0xa02c20,1, 0xa02c54,18, 0xa02ca0,1, 0xa02cd4,11, 0xa02e00,8, 0xa03000,16, 0xa03100,7, 0xa03120,7, 0xa03180,3, 0xa04000,4, 0xa04014,1, 0xa04020,3, 0xa04030,3, 0xa04040,5, 0xa04064,5, 0xa0407c,2, 0xa040a0,28, 0xa04114,1, 0xa04120,3, 0xa04130,3, 0xa04140,5, 0xa04164,5, 0xa0417c,2, 0xa041a0,28, 0xa04214,1, 0xa04220,3, 0xa04230,3, 0xa04240,5, 0xa04264,5, 0xa0427c,2, 0xa042a0,28, 0xa04314,1, 0xa04320,3, 0xa04330,3, 0xa04340,5, 0xa04364,5, 0xa0437c,2, 0xa043a0,24, 0xa045c0,1, 0xa04600,1, 0xa04608,3, 0xa04618,2, 0xa04800,18, 0xa04880,10, 0xa048ac,2, 0xa048f0,3, 0xa04900,18, 0xa04980,10, 0xa049ac,2, 0xa049f0,3, 0xa04c00,18, 0xa04c50,2, 0xa04c60,6, 0xa04c80,18, 0xa04cd0,2, 0xa04ce0,6, 0xa04e00,4, 0xa04e20,4, 0xa04e80,16, 0xa04f00,5, 0xa04f20,5, 0xa05000,12, 0xa05200,1, 0xa05208,6, 0xa05228,9, 0xa05280,1, 0xa05288,6, 0xa052a8,9, 0xa05400,15, 0xa05440,15, 0xa05600,7, 0xa05620,7, 0xa05680,4, 0xa0569c,11, 0xa056d0,2, 0xa05800,27, 0xa05880,4, 0xa05898,3, 0xa059a4,1, 0xa05a00,4, 0xa05a20,4, 0xa05a40,6, 0xa05a80,4, 0xa05aa0,4, 0xa05ac0,6, 0xa06000,16, 0xa06060,7, 0xa06080,16, 0xa060e0,7, 0xa06200,19, 0xa06280,19, 0xa06400,14, 0xa0643c,9, 0xa06464,6, 0xa06480,7, 0xa064a0,2, 0xa064ac,2, 0xa06500,14, 0xa0653c,9, 0xa06564,6, 0xa06580,7, 0xa065a0,2, 0xa065ac,2, 0xa06800,19, 0xa06880,19, 0xa06b00,1, 0xa06b20,1, 0xa06b28,4, 0xa06b40,1, 0xa06b60,1, 0xa06b68,4, 0xa06c00,7, 0xa06c20,1, 0xa06c54,18, 0xa06ca0,1, 0xa06cd4,11, 0xa06e00,8, 0xa07000,16, 0xa07100,7, 0xa07120,7, 0xa07180,3, 0xa0c000,22, 0xa0c060,6, 0xa0c080,11, 0xa0c100,11, 0xa0c204,1, 0xa0c224,21, 0xa0c280,16, 0xa0d000,8, 0xa0d024,10, 0xa0d050,22, 0xa0d100,8, 0xa0d124,10, 0xa0d150,22, 0xa0d200,8, 0xa0d224,10, 0xa0d250,22, 0xa0d300,8, 0xa0d324,10, 0xa0d350,22, 0xa0d400,8, 0xa0d424,10, 0xa0d450,22, 0xa0d500,8, 0xa0d524,10, 0xa0d550,22, 0xa0d600,8, 0xa0d624,10, 0xa0d650,22, 0xa0d700,8, 0xa0d724,10, 0xa0d750,22, 0xa0d800,8, 0xa0d824,10, 0xa0d850,22, 0xa0d904,1, 0xa0d914,10, 0xa0d948,11, 0xa0d980,1, 0xa0da00,6, 0xa0da20,2, 0xa0da2c,2, 0xa0e800,1, 0xa0e808,3, 0xa0e838,1, 0xa0e844,1, 0xa0e850,2, 0xa0e860,8, 0xa0e900,13, 0xa0e940,19, 0xa0e990,4, 0xa0f000,35, 0xa0fc00,10, 0xa0fc80,3, 0xa0fcc0,1, 0xa10000,13, 0xa10040,2, 0xa10054,4, 0xa10080,27, 0xa10100,12, 0xa10140,11, 0xa10170,2, 0xa10180,28, 0xa10200,6, 0xa10240,6, 0xa1025c,3, 0xa10280,5, 0xa102a0,8, 0xa10400,14, 0xa10440,14, 0xa10480,14, 0xa104c0,14, 0xa10540,3, 0xa10600,7, 0xa10620,14, 0xa10680,5, 0xa106a0,7, 0xa10800,13, 0xa10840,2, 0xa10854,4, 0xa10880,27, 0xa10900,12, 0xa10940,11, 0xa10970,2, 0xa10980,28, 0xa10a00,6, 0xa10a40,6, 0xa10a5c,3, 0xa10a80,5, 0xa10aa0,8, 0xa10c00,14, 0xa10c40,14, 0xa10c80,14, 0xa10cc0,14, 0xa10d40,3, 0xa10e00,7, 0xa10e20,14, 0xa10e80,5, 0xa10ea0,7, 0xa11000,13, 0xa11040,2, 0xa11054,4, 0xa11080,27, 0xa11100,12, 0xa11140,11, 0xa11170,2, 0xa11180,28, 0xa11200,6, 0xa11240,6, 0xa1125c,3, 0xa11280,5, 0xa112a0,8, 0xa11400,14, 0xa11440,14, 0xa11480,14, 0xa114c0,14, 0xa11540,3, 0xa11600,7, 0xa11620,14, 0xa11680,5, 0xa116a0,7, 0xa11800,13, 0xa11840,2, 0xa11854,4, 0xa11880,27, 0xa11900,12, 0xa11940,11, 0xa11970,2, 0xa11980,28, 0xa11a00,6, 0xa11a40,6, 0xa11a5c,3, 0xa11a80,5, 0xa11aa0,8, 0xa11c00,14, 0xa11c40,14, 0xa11c80,14, 0xa11cc0,14, 0xa11d40,3, 0xa11e00,7, 0xa11e20,14, 0xa11e80,5, 0xa11ea0,7, 0xa12000,8, 0xa12040,8, 0xa12080,1, 0xa12098,6, 0xa12100,10, 0xa12140,3, 0xa12150,2, 0xa12180,2, 0xa12200,6, 0xa12220,17, 0xa12280,4, 0xa12300,8, 0xa12400,2, 0xa12480,2, 0xa13000,40, 0xa13100,64, 0xa14000,13, 0xa14040,2, 0xa14054,4, 0xa14080,27, 0xa14100,12, 0xa14140,11, 0xa14170,2, 0xa14180,28, 0xa14200,6, 0xa14240,6, 0xa1425c,3, 0xa14280,5, 0xa142a0,8, 0xa14400,14, 0xa14440,14, 0xa14480,14, 0xa144c0,14, 0xa14540,3, 0xa14600,7, 0xa14620,14, 0xa14680,5, 0xa146a0,7, 0xa14800,13, 0xa14840,2, 0xa14854,4, 0xa14880,27, 0xa14900,12, 0xa14940,11, 0xa14970,2, 0xa14980,28, 0xa14a00,6, 0xa14a40,6, 0xa14a5c,3, 0xa14a80,5, 0xa14aa0,8, 0xa14c00,14, 0xa14c40,14, 0xa14c80,14, 0xa14cc0,14, 0xa14d40,3, 0xa14e00,7, 0xa14e20,14, 0xa14e80,5, 0xa14ea0,7, 0xa15000,13, 0xa15040,2, 0xa15054,4, 0xa15080,27, 0xa15100,12, 0xa15140,11, 0xa15170,2, 0xa15180,28, 0xa15200,6, 0xa15240,6, 0xa1525c,3, 0xa15280,5, 0xa152a0,8, 0xa15400,14, 0xa15440,14, 0xa15480,14, 0xa154c0,14, 0xa15540,3, 0xa15600,7, 0xa15620,14, 0xa15680,5, 0xa156a0,7, 0xa15800,13, 0xa15840,2, 0xa15854,4, 0xa15880,27, 0xa15900,12, 0xa15940,11, 0xa15970,2, 0xa15980,28, 0xa15a00,6, 0xa15a40,6, 0xa15a5c,3, 0xa15a80,5, 0xa15aa0,8, 0xa15c00,14, 0xa15c40,14, 0xa15c80,14, 0xa15cc0,14, 0xa15d40,3, 0xa15e00,7, 0xa15e20,14, 0xa15e80,5, 0xa15ea0,7, 0xa16000,8, 0xa16040,8, 0xa16080,1, 0xa16098,6, 0xa16100,10, 0xa16140,3, 0xa16150,2, 0xa16180,2, 0xa16200,6, 0xa16220,17, 0xa16280,4, 0xa16300,8, 0xa16400,2, 0xa16480,2, 0xa17000,40, 0xa17100,64, 0xa20000,11, 0xa20040,11, 0xa20070,3, 0xa20084,5, 0xa200a4,5, 0xa20200,7, 0xa20220,6, 0xa20240,7, 0xa20260,6, 0xa20280,6, 0xa202a0,2, 0xa202ac,2, 0xa202c0,7, 0xa202e0,7, 0xa20300,2, 0xa2030c,2, 0xa20320,6, 0xa21000,19, 0xa22000,25, 0xa22070,6, 0xa2208c,1, 0xa22094,1, 0xa2209c,8, 0xa22104,23, 0xa22180,7, 0xa221a0,6, 0xa221c0,7, 0xa221e0,6, 0xa22400,61, 0xa22500,25, 0xa22568,4, 0xa22580,2, 0xa225a0,1, 0xa225c0,11, 0xa22600,9, 0xa22640,3, 0xa22650,3, 0xa22664,3, 0xa22680,22, 0xa22700,17, 0xa22800,11, 0xa23000,594, 0xa24000,25, 0xa24070,6, 0xa2408c,1, 0xa24094,1, 0xa2409c,8, 0xa24104,23, 0xa24180,7, 0xa241a0,6, 0xa241c0,7, 0xa241e0,6, 0xa24400,61, 0xa24500,25, 0xa24568,4, 0xa24580,2, 0xa245a0,1, 0xa245c0,11, 0xa24600,9, 0xa24640,3, 0xa24650,3, 0xa24664,3, 0xa24680,22, 0xa24700,17, 0xa24800,11, 0xa25000,594, 0xa2a000,25, 0xa2a070,6, 0xa2a08c,1, 0xa2a094,1, 0xa2a09c,8, 0xa2a104,23, 0xa2a180,7, 0xa2a1a0,6, 0xa2a1c0,7, 0xa2a1e0,6, 0xa2a400,61, 0xa2a500,25, 0xa2a568,4, 0xa2a580,2, 0xa2a5a0,1, 0xa2a5c0,11, 0xa2a600,9, 0xa2a640,3, 0xa2a650,3, 0xa2a664,3, 0xa2a680,22, 0xa2a700,17, 0xa2a800,11, 0xa2b000,594, 0xa2c000,25, 0xa2c070,6, 0xa2c08c,1, 0xa2c094,1, 0xa2c09c,8, 0xa2c104,23, 0xa2c180,7, 0xa2c1a0,6, 0xa2c1c0,7, 0xa2c1e0,6, 0xa2c400,61, 0xa2c500,25, 0xa2c568,4, 0xa2c580,2, 0xa2c5a0,1, 0xa2c5c0,11, 0xa2c600,9, 0xa2c640,3, 0xa2c650,3, 0xa2c664,3, 0xa2c680,22, 0xa2c700,17, 0xa2c800,11, 0xa2d000,594, 0xa3f000,7, 0xa3f048,7, 0xa3f080,8, 0xa3f100,7, 0xa3f148,7, 0xa3f180,8, 0xa3f400,7, 0xa3f448,7, 0xa3f480,8, 0xa3f500,7, 0xa3f548,7, 0xa3f580,8, 0xa40000,31, 0xa40080,31, 0xa40100,31, 0xa40180,31, 0xa40200,31, 0xa40280,31, 0xa40300,31, 0xa40380,31, 0xa40400,64, 0xa40504,5, 0xa40520,1, 0xa40600,6, 0xa40620,6, 0xa40640,6, 0xa40660,6, 0xa40680,6, 0xa406a0,6, 0xa406c0,6, 0xa406e0,6, 0xa40700,4, 0xa40720,3, 0xa40730,3, 0xa40760,3, 0xa40770,1, 0xa40780,5, 0xa40800,31, 0xa40880,31, 0xa40900,31, 0xa40980,31, 0xa40a00,31, 0xa40a80,31, 0xa40b00,31, 0xa40b80,31, 0xa40c00,64, 0xa40d04,5, 0xa40d20,1, 0xa40e00,6, 0xa40e20,6, 0xa40e40,6, 0xa40e60,6, 0xa40e80,6, 0xa40ea0,6, 0xa40ec0,6, 0xa40ee0,6, 0xa40f00,4, 0xa40f20,3, 0xa40f30,3, 0xa40f60,3, 0xa40f70,1, 0xa40f80,5, 0xa41000,11, 0xa41040,11, 0xa41080,11, 0xa410c0,11, 0xa41100,21, 0xa41160,5, 0xa41180,3, 0xa41190,3, 0xa411a0,11, 0xa411d0,3, 0xa411e0,3, 0xa41200,86, 0xa41400,5, 0xa4141c,1, 0xa41440,6, 0xa41460,1, 0xa41480,3, 0xa41490,1, 0xa41800,11, 0xa41840,11, 0xa41880,11, 0xa418c0,11, 0xa41900,21, 0xa41960,5, 0xa41980,3, 0xa41990,3, 0xa419a0,11, 0xa419d0,3, 0xa419e0,3, 0xa41a00,86, 0xa41c00,5, 0xa41c1c,1, 0xa41c40,6, 0xa41c60,1, 0xa41c80,3, 0xa41c90,1, 0xa42000,32, 0xa42084,1, 0xa42094,3, 0xa420c4,3, 0xa42100,1, 0xa4210c,3, 0xa42120,3, 0xa42140,1, 0xa42150,9, 0xa42180,2, 0xa421a4,1, 0xa421b4,8, 0xa42200,20, 0xa42260,6, 0xa42280,4, 0xa422a0,6, 0xa43000,31, 0xa43080,31, 0xa43100,31, 0xa43180,31, 0xa43200,31, 0xa43280,31, 0xa43300,31, 0xa43380,31, 0xa43400,64, 0xa43504,5, 0xa43520,1, 0xa43600,6, 0xa43620,6, 0xa43640,6, 0xa43660,6, 0xa43680,6, 0xa436a0,6, 0xa436c0,6, 0xa436e0,6, 0xa43700,4, 0xa43720,3, 0xa43730,3, 0xa43760,3, 0xa43770,1, 0xa43780,5, 0xa43800,31, 0xa43880,31, 0xa43900,31, 0xa43980,31, 0xa43a00,31, 0xa43a80,31, 0xa43b00,31, 0xa43b80,31, 0xa43c00,64, 0xa43d04,5, 0xa43d20,1, 0xa43e00,6, 0xa43e20,6, 0xa43e40,6, 0xa43e60,6, 0xa43e80,6, 0xa43ea0,6, 0xa43ec0,6, 0xa43ee0,6, 0xa43f00,4, 0xa43f20,3, 0xa43f30,3, 0xa43f60,3, 0xa43f70,1, 0xa43f80,5, 0xa44000,11, 0xa44040,11, 0xa44080,11, 0xa440c0,11, 0xa44100,21, 0xa44160,5, 0xa44180,3, 0xa44190,3, 0xa441a0,11, 0xa441d0,3, 0xa441e0,3, 0xa44200,86, 0xa44400,5, 0xa4441c,1, 0xa44440,6, 0xa44460,1, 0xa44480,3, 0xa44490,1, 0xa44800,11, 0xa44840,11, 0xa44880,11, 0xa448c0,11, 0xa44900,21, 0xa44960,5, 0xa44980,3, 0xa44990,3, 0xa449a0,11, 0xa449d0,3, 0xa449e0,3, 0xa44a00,86, 0xa44c00,5, 0xa44c1c,1, 0xa44c40,6, 0xa44c60,1, 0xa44c80,3, 0xa44c90,1, 0xa45000,32, 0xa45084,1, 0xa45094,3, 0xa450c4,3, 0xa45100,1, 0xa4510c,3, 0xa45120,3, 0xa45140,1, 0xa45150,9, 0xa45180,2, 0xa451a4,1, 0xa451b4,8, 0xa45200,20, 0xa45260,6, 0xa45280,4, 0xa452a0,6, 0xa46100,1, 0xa4610c,4, 0xa46120,16, 0xa46180,1, 0xa46200,91, 0xa46508,1, 0xa46540,1, 0xa47000,1, 0xa47014,1, 0xa4701c,2, 0xa47034,1, 0xa4703c,5, 0xa47060,6, 0xa47080,4, 0xa470a0,6, 0xa470c0,3, 0xa470d0,2, 0xa47100,11, 0xa47134,4, 0xa47150,3, 0xa47200,3, 0xa47210,1, 0xa47220,9, 0xa47260,2, 0xa47300,25, 0xa49000,19, 0xa50000,286, 0xa50800,3, 0xa50810,3, 0xa50820,3, 0xa50830,4, 0xa50844,7, 0xa51000,3, 0xa51010,86, 0xa51170,18, 0xa51200,1, 0xa51220,1, 0xa51240,1, 0xa51254,1, 0xa5125c,4, 0xa51270,1, 0xa51278,1, 0xa51400,3, 0xa51410,86, 0xa51570,20, 0xa51604,1, 0xa51640,48, 0xa51704,1, 0xa51710,5, 0xa51740,6, 0xa518e0,12, 0xa51920,4, 0xa51a00,7, 0xa51a20,37, 0xa51b00,41, 0xa51bb0,3, 0xa51c00,25, 0xa51c80,7, 0xa51ca0,6, 0xa51cc0,7, 0xa51d00,7, 0xa51d20,5, 0xa51d40,10, 0xa52000,286, 0xa52800,3, 0xa52810,3, 0xa52820,3, 0xa52830,4, 0xa52844,7, 0xa53000,3, 0xa53010,86, 0xa53170,18, 0xa53200,1, 0xa53220,1, 0xa53240,1, 0xa53254,1, 0xa5325c,4, 0xa53270,1, 0xa53278,1, 0xa53400,3, 0xa53410,86, 0xa53570,20, 0xa53604,1, 0xa53640,48, 0xa53704,1, 0xa53710,5, 0xa53740,6, 0xa538e0,12, 0xa53920,4, 0xa53a00,7, 0xa53a20,37, 0xa53b00,41, 0xa53bb0,3, 0xa53c00,25, 0xa53c80,7, 0xa53ca0,6, 0xa53cc0,7, 0xa53d00,7, 0xa53d20,5, 0xa53d40,10, 0xa54000,19, 0xa55000,11, 0xa55040,5, 0xa55058,1, 0xa55060,1, 0xa60000,3, 0xa60010,3, 0xa60020,5, 0xa60038,9, 0xa60060,8, 0xa60100,17, 0xa60200,3, 0xa60210,3, 0xa60220,5, 0xa60238,9, 0xa60260,8, 0xa60300,17, 0xa60400,3, 0xa60414,1, 0xa6041c,33, 0xa60540,33, 0xa605c8,12, 0xa60800,2, 0xa60844,1, 0xa6084c,1, 0xa60880,27, 0xa60900,4, 0xa60980,19, 0xa60a00,4, 0xa60a80,19, 0xa60b00,1, 0xa60b40,5, 0xa60b60,5, 0xa60b80,6, 0xa60bb0,17, 0xa60c00,13, 0xa60c40,5, 0xa60c80,12, 0xa61000,3, 0xa61010,3, 0xa61020,5, 0xa61038,9, 0xa61060,8, 0xa61100,17, 0xa61200,3, 0xa61210,3, 0xa61220,5, 0xa61238,9, 0xa61260,8, 0xa61300,17, 0xa61400,3, 0xa61414,1, 0xa6141c,33, 0xa61540,33, 0xa615c8,12, 0xa61800,2, 0xa61844,1, 0xa6184c,1, 0xa61880,27, 0xa61900,4, 0xa61980,19, 0xa61a00,4, 0xa61a80,19, 0xa61b00,1, 0xa61b40,5, 0xa61b60,5, 0xa61b80,6, 0xa61bb0,17, 0xa61c00,13, 0xa61c40,5, 0xa61c80,12, 0xa62000,19, 0xa62080,4, 0xa63000,19, 0xa64000,2, 0xa6400c,5, 0xa64028,3, 0xa64038,3, 0xa64050,1, 0xa64080,13, 0xa64120,4, 0xa64140,1, 0xa64400,26, 0xa64470,3, 0xa64580,10, 0xa645c0,8, 0xa645e8,2, 0xa645f4,2, 0xa64600,5, 0xa64618,1, 0xa64620,1, 0xa64628,1, 0xa64630,2, 0xa64640,2, 0xa64650,2, 0xa64690,4, 0xa64740,2, 0xa64800,2, 0xa6480c,5, 0xa64828,3, 0xa64838,3, 0xa64850,1, 0xa64880,13, 0xa64920,4, 0xa64940,1, 0xa64c00,26, 0xa64c70,3, 0xa64d80,10, 0xa64dc0,8, 0xa64de8,2, 0xa64df4,2, 0xa64e00,5, 0xa64e18,1, 0xa64e20,1, 0xa64e28,1, 0xa64e30,2, 0xa64e40,2, 0xa64e50,2, 0xa64e90,4, 0xa64f40,2, 0xa65800,11, 0xa65880,2, 0xa658b0,2, 0xa66000,35, 0xa66c00,10, 0xa66c80,3, 0xa80000,4, 0xa80014,1, 0xa80020,3, 0xa80030,3, 0xa80040,5, 0xa80064,5, 0xa8007c,2, 0xa800a0,28, 0xa80114,1, 0xa80120,3, 0xa80130,3, 0xa80140,5, 0xa80164,5, 0xa8017c,2, 0xa801a0,28, 0xa80214,1, 0xa80220,3, 0xa80230,3, 0xa80240,5, 0xa80264,5, 0xa8027c,2, 0xa802a0,28, 0xa80314,1, 0xa80320,3, 0xa80330,3, 0xa80340,5, 0xa80364,5, 0xa8037c,2, 0xa803a0,24, 0xa805c0,1, 0xa80600,1, 0xa80608,3, 0xa80618,2, 0xa80800,18, 0xa80880,10, 0xa808ac,2, 0xa808f0,3, 0xa80900,18, 0xa80980,10, 0xa809ac,2, 0xa809f0,3, 0xa80c00,18, 0xa80c50,2, 0xa80c60,6, 0xa80c80,18, 0xa80cd0,2, 0xa80ce0,6, 0xa80e00,4, 0xa80e20,4, 0xa80e80,16, 0xa80f00,5, 0xa80f20,5, 0xa81000,12, 0xa81200,1, 0xa81208,6, 0xa81228,9, 0xa81280,1, 0xa81288,6, 0xa812a8,9, 0xa81400,15, 0xa81440,15, 0xa81600,7, 0xa81620,7, 0xa81680,4, 0xa8169c,11, 0xa816d0,2, 0xa81800,27, 0xa81880,4, 0xa81898,3, 0xa819a4,1, 0xa81a00,4, 0xa81a20,4, 0xa81a40,6, 0xa81a80,4, 0xa81aa0,4, 0xa81ac0,6, 0xa82000,16, 0xa82060,7, 0xa82080,16, 0xa820e0,7, 0xa82200,19, 0xa82280,19, 0xa82400,14, 0xa8243c,9, 0xa82464,6, 0xa82480,7, 0xa824a0,2, 0xa824ac,2, 0xa82500,14, 0xa8253c,9, 0xa82564,6, 0xa82580,7, 0xa825a0,2, 0xa825ac,2, 0xa82800,19, 0xa82880,19, 0xa82b00,1, 0xa82b20,1, 0xa82b28,4, 0xa82b40,1, 0xa82b60,1, 0xa82b68,4, 0xa82c00,7, 0xa82c20,1, 0xa82c54,18, 0xa82ca0,1, 0xa82cd4,11, 0xa82e00,8, 0xa83000,16, 0xa83100,7, 0xa83120,7, 0xa83180,3, 0xa84000,4, 0xa84014,1, 0xa84020,3, 0xa84030,3, 0xa84040,5, 0xa84064,5, 0xa8407c,2, 0xa840a0,28, 0xa84114,1, 0xa84120,3, 0xa84130,3, 0xa84140,5, 0xa84164,5, 0xa8417c,2, 0xa841a0,28, 0xa84214,1, 0xa84220,3, 0xa84230,3, 0xa84240,5, 0xa84264,5, 0xa8427c,2, 0xa842a0,28, 0xa84314,1, 0xa84320,3, 0xa84330,3, 0xa84340,5, 0xa84364,5, 0xa8437c,2, 0xa843a0,24, 0xa845c0,1, 0xa84600,1, 0xa84608,3, 0xa84618,2, 0xa84800,18, 0xa84880,10, 0xa848ac,2, 0xa848f0,3, 0xa84900,18, 0xa84980,10, 0xa849ac,2, 0xa849f0,3, 0xa84c00,18, 0xa84c50,2, 0xa84c60,6, 0xa84c80,18, 0xa84cd0,2, 0xa84ce0,6, 0xa84e00,4, 0xa84e20,4, 0xa84e80,16, 0xa84f00,5, 0xa84f20,5, 0xa85000,12, 0xa85200,1, 0xa85208,6, 0xa85228,9, 0xa85280,1, 0xa85288,6, 0xa852a8,9, 0xa85400,15, 0xa85440,15, 0xa85600,7, 0xa85620,7, 0xa85680,4, 0xa8569c,11, 0xa856d0,2, 0xa85800,27, 0xa85880,4, 0xa85898,3, 0xa859a4,1, 0xa85a00,4, 0xa85a20,4, 0xa85a40,6, 0xa85a80,4, 0xa85aa0,4, 0xa85ac0,6, 0xa86000,16, 0xa86060,7, 0xa86080,16, 0xa860e0,7, 0xa86200,19, 0xa86280,19, 0xa86400,14, 0xa8643c,9, 0xa86464,6, 0xa86480,7, 0xa864a0,2, 0xa864ac,2, 0xa86500,14, 0xa8653c,9, 0xa86564,6, 0xa86580,7, 0xa865a0,2, 0xa865ac,2, 0xa86800,19, 0xa86880,19, 0xa86b00,1, 0xa86b20,1, 0xa86b28,4, 0xa86b40,1, 0xa86b60,1, 0xa86b68,4, 0xa86c00,7, 0xa86c20,1, 0xa86c54,18, 0xa86ca0,1, 0xa86cd4,11, 0xa86e00,8, 0xa87000,16, 0xa87100,7, 0xa87120,7, 0xa87180,3, 0xa8c000,22, 0xa8c060,6, 0xa8c080,11, 0xa8c100,11, 0xa8c204,1, 0xa8c224,21, 0xa8c280,16, 0xa8d000,8, 0xa8d024,10, 0xa8d050,22, 0xa8d100,8, 0xa8d124,10, 0xa8d150,22, 0xa8d200,8, 0xa8d224,10, 0xa8d250,22, 0xa8d300,8, 0xa8d324,10, 0xa8d350,22, 0xa8d400,8, 0xa8d424,10, 0xa8d450,22, 0xa8d500,8, 0xa8d524,10, 0xa8d550,22, 0xa8d600,8, 0xa8d624,10, 0xa8d650,22, 0xa8d700,8, 0xa8d724,10, 0xa8d750,22, 0xa8d800,8, 0xa8d824,10, 0xa8d850,22, 0xa8d904,1, 0xa8d914,10, 0xa8d948,11, 0xa8d980,1, 0xa8da00,6, 0xa8da20,2, 0xa8da2c,2, 0xa8e800,1, 0xa8e808,3, 0xa8e838,1, 0xa8e844,1, 0xa8e850,2, 0xa8e860,8, 0xa8e900,13, 0xa8e940,19, 0xa8e990,4, 0xa8f000,35, 0xa8fc00,10, 0xa8fc80,3, 0xa8fcc0,1, 0xa90000,13, 0xa90040,2, 0xa90054,4, 0xa90080,27, 0xa90100,12, 0xa90140,11, 0xa90170,2, 0xa90180,28, 0xa90200,6, 0xa90240,6, 0xa9025c,3, 0xa90280,5, 0xa902a0,8, 0xa90400,14, 0xa90440,14, 0xa90480,14, 0xa904c0,14, 0xa90540,3, 0xa90600,7, 0xa90620,14, 0xa90680,5, 0xa906a0,7, 0xa90800,13, 0xa90840,2, 0xa90854,4, 0xa90880,27, 0xa90900,12, 0xa90940,11, 0xa90970,2, 0xa90980,28, 0xa90a00,6, 0xa90a40,6, 0xa90a5c,3, 0xa90a80,5, 0xa90aa0,8, 0xa90c00,14, 0xa90c40,14, 0xa90c80,14, 0xa90cc0,14, 0xa90d40,3, 0xa90e00,7, 0xa90e20,14, 0xa90e80,5, 0xa90ea0,7, 0xa91000,13, 0xa91040,2, 0xa91054,4, 0xa91080,27, 0xa91100,12, 0xa91140,11, 0xa91170,2, 0xa91180,28, 0xa91200,6, 0xa91240,6, 0xa9125c,3, 0xa91280,5, 0xa912a0,8, 0xa91400,14, 0xa91440,14, 0xa91480,14, 0xa914c0,14, 0xa91540,3, 0xa91600,7, 0xa91620,14, 0xa91680,5, 0xa916a0,7, 0xa91800,13, 0xa91840,2, 0xa91854,4, 0xa91880,27, 0xa91900,12, 0xa91940,11, 0xa91970,2, 0xa91980,28, 0xa91a00,6, 0xa91a40,6, 0xa91a5c,3, 0xa91a80,5, 0xa91aa0,8, 0xa91c00,14, 0xa91c40,14, 0xa91c80,14, 0xa91cc0,14, 0xa91d40,3, 0xa91e00,7, 0xa91e20,14, 0xa91e80,5, 0xa91ea0,7, 0xa92000,8, 0xa92040,8, 0xa92080,1, 0xa92098,6, 0xa92100,10, 0xa92140,3, 0xa92150,2, 0xa92180,2, 0xa92200,6, 0xa92220,17, 0xa92280,4, 0xa92300,8, 0xa92400,2, 0xa92480,2, 0xa93000,40, 0xa93100,64, 0xa94000,13, 0xa94040,2, 0xa94054,4, 0xa94080,27, 0xa94100,12, 0xa94140,11, 0xa94170,2, 0xa94180,28, 0xa94200,6, 0xa94240,6, 0xa9425c,3, 0xa94280,5, 0xa942a0,8, 0xa94400,14, 0xa94440,14, 0xa94480,14, 0xa944c0,14, 0xa94540,3, 0xa94600,7, 0xa94620,14, 0xa94680,5, 0xa946a0,7, 0xa94800,13, 0xa94840,2, 0xa94854,4, 0xa94880,27, 0xa94900,12, 0xa94940,11, 0xa94970,2, 0xa94980,28, 0xa94a00,6, 0xa94a40,6, 0xa94a5c,3, 0xa94a80,5, 0xa94aa0,8, 0xa94c00,14, 0xa94c40,14, 0xa94c80,14, 0xa94cc0,14, 0xa94d40,3, 0xa94e00,7, 0xa94e20,14, 0xa94e80,5, 0xa94ea0,7, 0xa95000,13, 0xa95040,2, 0xa95054,4, 0xa95080,27, 0xa95100,12, 0xa95140,11, 0xa95170,2, 0xa95180,28, 0xa95200,6, 0xa95240,6, 0xa9525c,3, 0xa95280,5, 0xa952a0,8, 0xa95400,14, 0xa95440,14, 0xa95480,14, 0xa954c0,14, 0xa95540,3, 0xa95600,7, 0xa95620,14, 0xa95680,5, 0xa956a0,7, 0xa95800,13, 0xa95840,2, 0xa95854,4, 0xa95880,27, 0xa95900,12, 0xa95940,11, 0xa95970,2, 0xa95980,28, 0xa95a00,6, 0xa95a40,6, 0xa95a5c,3, 0xa95a80,5, 0xa95aa0,8, 0xa95c00,14, 0xa95c40,14, 0xa95c80,14, 0xa95cc0,14, 0xa95d40,3, 0xa95e00,7, 0xa95e20,14, 0xa95e80,5, 0xa95ea0,7, 0xa96000,8, 0xa96040,8, 0xa96080,1, 0xa96098,6, 0xa96100,10, 0xa96140,3, 0xa96150,2, 0xa96180,2, 0xa96200,6, 0xa96220,17, 0xa96280,4, 0xa96300,8, 0xa96400,2, 0xa96480,2, 0xa97000,40, 0xa97100,64, 0xaa0000,11, 0xaa0040,11, 0xaa0070,3, 0xaa0084,5, 0xaa00a4,5, 0xaa0200,7, 0xaa0220,6, 0xaa0240,7, 0xaa0260,6, 0xaa0280,6, 0xaa02a0,2, 0xaa02ac,2, 0xaa02c0,7, 0xaa02e0,7, 0xaa0300,2, 0xaa030c,2, 0xaa0320,6, 0xaa1000,19, 0xaa2000,25, 0xaa2070,6, 0xaa208c,1, 0xaa2094,1, 0xaa209c,8, 0xaa2104,23, 0xaa2180,7, 0xaa21a0,6, 0xaa21c0,7, 0xaa21e0,6, 0xaa2400,61, 0xaa2500,25, 0xaa2568,4, 0xaa2580,2, 0xaa25a0,1, 0xaa25c0,11, 0xaa2600,9, 0xaa2640,3, 0xaa2650,3, 0xaa2664,3, 0xaa2680,22, 0xaa2700,17, 0xaa2800,11, 0xaa3000,594, 0xaa4000,25, 0xaa4070,6, 0xaa408c,1, 0xaa4094,1, 0xaa409c,8, 0xaa4104,23, 0xaa4180,7, 0xaa41a0,6, 0xaa41c0,7, 0xaa41e0,6, 0xaa4400,61, 0xaa4500,25, 0xaa4568,4, 0xaa4580,2, 0xaa45a0,1, 0xaa45c0,11, 0xaa4600,9, 0xaa4640,3, 0xaa4650,3, 0xaa4664,3, 0xaa4680,22, 0xaa4700,17, 0xaa4800,11, 0xaa5000,594, 0xaaa000,25, 0xaaa070,6, 0xaaa08c,1, 0xaaa094,1, 0xaaa09c,8, 0xaaa104,23, 0xaaa180,7, 0xaaa1a0,6, 0xaaa1c0,7, 0xaaa1e0,6, 0xaaa400,61, 0xaaa500,25, 0xaaa568,4, 0xaaa580,2, 0xaaa5a0,1, 0xaaa5c0,11, 0xaaa600,9, 0xaaa640,3, 0xaaa650,3, 0xaaa664,3, 0xaaa680,22, 0xaaa700,17, 0xaaa800,11, 0xaab000,594, 0xaac000,25, 0xaac070,6, 0xaac08c,1, 0xaac094,1, 0xaac09c,8, 0xaac104,23, 0xaac180,7, 0xaac1a0,6, 0xaac1c0,7, 0xaac1e0,6, 0xaac400,61, 0xaac500,25, 0xaac568,4, 0xaac580,2, 0xaac5a0,1, 0xaac5c0,11, 0xaac600,9, 0xaac640,3, 0xaac650,3, 0xaac664,3, 0xaac680,22, 0xaac700,17, 0xaac800,11, 0xaad000,594, 0xabf000,7, 0xabf048,7, 0xabf080,8, 0xabf100,7, 0xabf148,7, 0xabf180,8, 0xabf400,7, 0xabf448,7, 0xabf480,8, 0xabf500,7, 0xabf548,7, 0xabf580,8, 0xac0000,31, 0xac0080,31, 0xac0100,31, 0xac0180,31, 0xac0200,31, 0xac0280,31, 0xac0300,31, 0xac0380,31, 0xac0400,64, 0xac0504,5, 0xac0520,1, 0xac0600,6, 0xac0620,6, 0xac0640,6, 0xac0660,6, 0xac0680,6, 0xac06a0,6, 0xac06c0,6, 0xac06e0,6, 0xac0700,4, 0xac0720,3, 0xac0730,3, 0xac0760,3, 0xac0770,1, 0xac0780,5, 0xac0800,31, 0xac0880,31, 0xac0900,31, 0xac0980,31, 0xac0a00,31, 0xac0a80,31, 0xac0b00,31, 0xac0b80,31, 0xac0c00,64, 0xac0d04,5, 0xac0d20,1, 0xac0e00,6, 0xac0e20,6, 0xac0e40,6, 0xac0e60,6, 0xac0e80,6, 0xac0ea0,6, 0xac0ec0,6, 0xac0ee0,6, 0xac0f00,4, 0xac0f20,3, 0xac0f30,3, 0xac0f60,3, 0xac0f70,1, 0xac0f80,5, 0xac1000,11, 0xac1040,11, 0xac1080,11, 0xac10c0,11, 0xac1100,21, 0xac1160,5, 0xac1180,3, 0xac1190,3, 0xac11a0,11, 0xac11d0,3, 0xac11e0,3, 0xac1200,86, 0xac1400,5, 0xac141c,1, 0xac1440,6, 0xac1460,1, 0xac1480,3, 0xac1490,1, 0xac1800,11, 0xac1840,11, 0xac1880,11, 0xac18c0,11, 0xac1900,21, 0xac1960,5, 0xac1980,3, 0xac1990,3, 0xac19a0,11, 0xac19d0,3, 0xac19e0,3, 0xac1a00,86, 0xac1c00,5, 0xac1c1c,1, 0xac1c40,6, 0xac1c60,1, 0xac1c80,3, 0xac1c90,1, 0xac2000,32, 0xac2084,1, 0xac2094,3, 0xac20c4,3, 0xac2100,1, 0xac210c,3, 0xac2120,3, 0xac2140,1, 0xac2150,9, 0xac2180,2, 0xac21a4,1, 0xac21b4,8, 0xac2200,20, 0xac2260,6, 0xac2280,4, 0xac22a0,6, 0xac3000,31, 0xac3080,31, 0xac3100,31, 0xac3180,31, 0xac3200,31, 0xac3280,31, 0xac3300,31, 0xac3380,31, 0xac3400,64, 0xac3504,5, 0xac3520,1, 0xac3600,6, 0xac3620,6, 0xac3640,6, 0xac3660,6, 0xac3680,6, 0xac36a0,6, 0xac36c0,6, 0xac36e0,6, 0xac3700,4, 0xac3720,3, 0xac3730,3, 0xac3760,3, 0xac3770,1, 0xac3780,5, 0xac3800,31, 0xac3880,31, 0xac3900,31, 0xac3980,31, 0xac3a00,31, 0xac3a80,31, 0xac3b00,31, 0xac3b80,31, 0xac3c00,64, 0xac3d04,5, 0xac3d20,1, 0xac3e00,6, 0xac3e20,6, 0xac3e40,6, 0xac3e60,6, 0xac3e80,6, 0xac3ea0,6, 0xac3ec0,6, 0xac3ee0,6, 0xac3f00,4, 0xac3f20,3, 0xac3f30,3, 0xac3f60,3, 0xac3f70,1, 0xac3f80,5, 0xac4000,11, 0xac4040,11, 0xac4080,11, 0xac40c0,11, 0xac4100,21, 0xac4160,5, 0xac4180,3, 0xac4190,3, 0xac41a0,11, 0xac41d0,3, 0xac41e0,3, 0xac4200,86, 0xac4400,5, 0xac441c,1, 0xac4440,6, 0xac4460,1, 0xac4480,3, 0xac4490,1, 0xac4800,11, 0xac4840,11, 0xac4880,11, 0xac48c0,11, 0xac4900,21, 0xac4960,5, 0xac4980,3, 0xac4990,3, 0xac49a0,11, 0xac49d0,3, 0xac49e0,3, 0xac4a00,86, 0xac4c00,5, 0xac4c1c,1, 0xac4c40,6, 0xac4c60,1, 0xac4c80,3, 0xac4c90,1, 0xac5000,32, 0xac5084,1, 0xac5094,3, 0xac50c4,3, 0xac5100,1, 0xac510c,3, 0xac5120,3, 0xac5140,1, 0xac5150,9, 0xac5180,2, 0xac51a4,1, 0xac51b4,8, 0xac5200,20, 0xac5260,6, 0xac5280,4, 0xac52a0,6, 0xac6100,1, 0xac610c,4, 0xac6120,16, 0xac6180,1, 0xac6200,91, 0xac6508,1, 0xac6540,1, 0xac7000,1, 0xac7014,1, 0xac701c,2, 0xac7034,1, 0xac703c,5, 0xac7060,6, 0xac7080,4, 0xac70a0,6, 0xac70c0,3, 0xac70d0,2, 0xac7100,11, 0xac7134,4, 0xac7150,3, 0xac7200,3, 0xac7210,1, 0xac7220,9, 0xac7260,2, 0xac7300,25, 0xac9000,19, 0xad0000,286, 0xad0800,3, 0xad0810,3, 0xad0820,3, 0xad0830,4, 0xad0844,7, 0xad1000,3, 0xad1010,86, 0xad1170,18, 0xad1200,1, 0xad1220,1, 0xad1240,1, 0xad1254,1, 0xad125c,4, 0xad1270,1, 0xad1278,1, 0xad1400,3, 0xad1410,86, 0xad1570,20, 0xad1604,1, 0xad1640,48, 0xad1704,1, 0xad1710,5, 0xad1740,6, 0xad18e0,12, 0xad1920,4, 0xad1a00,7, 0xad1a20,37, 0xad1b00,41, 0xad1bb0,3, 0xad1c00,25, 0xad1c80,7, 0xad1ca0,6, 0xad1cc0,7, 0xad1d00,7, 0xad1d20,5, 0xad1d40,10, 0xad2000,286, 0xad2800,3, 0xad2810,3, 0xad2820,3, 0xad2830,4, 0xad2844,7, 0xad3000,3, 0xad3010,86, 0xad3170,18, 0xad3200,1, 0xad3220,1, 0xad3240,1, 0xad3254,1, 0xad325c,4, 0xad3270,1, 0xad3278,1, 0xad3400,3, 0xad3410,86, 0xad3570,20, 0xad3604,1, 0xad3640,48, 0xad3704,1, 0xad3710,5, 0xad3740,6, 0xad38e0,12, 0xad3920,4, 0xad3a00,7, 0xad3a20,37, 0xad3b00,41, 0xad3bb0,3, 0xad3c00,25, 0xad3c80,7, 0xad3ca0,6, 0xad3cc0,7, 0xad3d00,7, 0xad3d20,5, 0xad3d40,10, 0xad4000,19, 0xad5000,11, 0xad5040,5, 0xad5058,1, 0xad5060,1, 0xae0000,3, 0xae0010,3, 0xae0020,5, 0xae0038,9, 0xae0060,8, 0xae0100,17, 0xae0200,3, 0xae0210,3, 0xae0220,5, 0xae0238,9, 0xae0260,8, 0xae0300,17, 0xae0400,3, 0xae0414,1, 0xae041c,33, 0xae0540,33, 0xae05c8,12, 0xae0800,2, 0xae0844,1, 0xae084c,1, 0xae0880,27, 0xae0900,4, 0xae0980,19, 0xae0a00,4, 0xae0a80,19, 0xae0b00,1, 0xae0b40,5, 0xae0b60,5, 0xae0b80,6, 0xae0bb0,17, 0xae0c00,13, 0xae0c40,5, 0xae0c80,12, 0xae1000,3, 0xae1010,3, 0xae1020,5, 0xae1038,9, 0xae1060,8, 0xae1100,17, 0xae1200,3, 0xae1210,3, 0xae1220,5, 0xae1238,9, 0xae1260,8, 0xae1300,17, 0xae1400,3, 0xae1414,1, 0xae141c,33, 0xae1540,33, 0xae15c8,12, 0xae1800,2, 0xae1844,1, 0xae184c,1, 0xae1880,27, 0xae1900,4, 0xae1980,19, 0xae1a00,4, 0xae1a80,19, 0xae1b00,1, 0xae1b40,5, 0xae1b60,5, 0xae1b80,6, 0xae1bb0,17, 0xae1c00,13, 0xae1c40,5, 0xae1c80,12, 0xae2000,19, 0xae2080,4, 0xae3000,19, 0xae4000,2, 0xae400c,5, 0xae4028,3, 0xae4038,3, 0xae4050,1, 0xae4080,13, 0xae4120,4, 0xae4140,1, 0xae4400,26, 0xae4470,3, 0xae4580,10, 0xae45c0,8, 0xae45e8,2, 0xae45f4,2, 0xae4600,5, 0xae4618,1, 0xae4620,1, 0xae4628,1, 0xae4630,2, 0xae4640,2, 0xae4650,2, 0xae4690,4, 0xae4740,2, 0xae4800,2, 0xae480c,5, 0xae4828,3, 0xae4838,3, 0xae4850,1, 0xae4880,13, 0xae4920,4, 0xae4940,1, 0xae4c00,26, 0xae4c70,3, 0xae4d80,10, 0xae4dc0,8, 0xae4de8,2, 0xae4df4,2, 0xae4e00,5, 0xae4e18,1, 0xae4e20,1, 0xae4e28,1, 0xae4e30,2, 0xae4e40,2, 0xae4e50,2, 0xae4e90,4, 0xae4f40,2, 0xae5800,11, 0xae5880,2, 0xae58b0,2, 0xae6000,35, 0xae6c00,10, 0xae6c80,3, 0xb00000,4, 0xb00014,1, 0xb00020,3, 0xb00030,3, 0xb00040,5, 0xb00064,5, 0xb0007c,2, 0xb000a0,28, 0xb00114,1, 0xb00120,3, 0xb00130,3, 0xb00140,5, 0xb00164,5, 0xb0017c,2, 0xb001a0,28, 0xb00214,1, 0xb00220,3, 0xb00230,3, 0xb00240,5, 0xb00264,5, 0xb0027c,2, 0xb002a0,28, 0xb00314,1, 0xb00320,3, 0xb00330,3, 0xb00340,5, 0xb00364,5, 0xb0037c,2, 0xb003a0,24, 0xb005c0,1, 0xb00600,1, 0xb00608,3, 0xb00618,2, 0xb00800,18, 0xb00880,10, 0xb008ac,2, 0xb008f0,3, 0xb00900,18, 0xb00980,10, 0xb009ac,2, 0xb009f0,3, 0xb00c00,18, 0xb00c50,2, 0xb00c60,6, 0xb00c80,18, 0xb00cd0,2, 0xb00ce0,6, 0xb00e00,4, 0xb00e20,4, 0xb00e80,16, 0xb00f00,5, 0xb00f20,5, 0xb01000,12, 0xb01200,1, 0xb01208,6, 0xb01228,9, 0xb01280,1, 0xb01288,6, 0xb012a8,9, 0xb01400,15, 0xb01440,15, 0xb01600,7, 0xb01620,7, 0xb01680,4, 0xb0169c,11, 0xb016d0,2, 0xb01800,27, 0xb01880,4, 0xb01898,3, 0xb019a4,1, 0xb01a00,4, 0xb01a20,4, 0xb01a40,6, 0xb01a80,4, 0xb01aa0,4, 0xb01ac0,6, 0xb02000,16, 0xb02060,7, 0xb02080,16, 0xb020e0,7, 0xb02200,19, 0xb02280,19, 0xb02400,14, 0xb0243c,9, 0xb02464,6, 0xb02480,7, 0xb024a0,2, 0xb024ac,2, 0xb02500,14, 0xb0253c,9, 0xb02564,6, 0xb02580,7, 0xb025a0,2, 0xb025ac,2, 0xb02800,19, 0xb02880,19, 0xb02b00,1, 0xb02b20,1, 0xb02b28,4, 0xb02b40,1, 0xb02b60,1, 0xb02b68,4, 0xb02c00,7, 0xb02c20,1, 0xb02c54,18, 0xb02ca0,1, 0xb02cd4,11, 0xb02e00,8, 0xb03000,16, 0xb03100,7, 0xb03120,7, 0xb03180,3, 0xb04000,4, 0xb04014,1, 0xb04020,3, 0xb04030,3, 0xb04040,5, 0xb04064,5, 0xb0407c,2, 0xb040a0,28, 0xb04114,1, 0xb04120,3, 0xb04130,3, 0xb04140,5, 0xb04164,5, 0xb0417c,2, 0xb041a0,28, 0xb04214,1, 0xb04220,3, 0xb04230,3, 0xb04240,5, 0xb04264,5, 0xb0427c,2, 0xb042a0,28, 0xb04314,1, 0xb04320,3, 0xb04330,3, 0xb04340,5, 0xb04364,5, 0xb0437c,2, 0xb043a0,24, 0xb045c0,1, 0xb04600,1, 0xb04608,3, 0xb04618,2, 0xb04800,18, 0xb04880,10, 0xb048ac,2, 0xb048f0,3, 0xb04900,18, 0xb04980,10, 0xb049ac,2, 0xb049f0,3, 0xb04c00,18, 0xb04c50,2, 0xb04c60,6, 0xb04c80,18, 0xb04cd0,2, 0xb04ce0,6, 0xb04e00,4, 0xb04e20,4, 0xb04e80,16, 0xb04f00,5, 0xb04f20,5, 0xb05000,12, 0xb05200,1, 0xb05208,6, 0xb05228,9, 0xb05280,1, 0xb05288,6, 0xb052a8,9, 0xb05400,15, 0xb05440,15, 0xb05600,7, 0xb05620,7, 0xb05680,4, 0xb0569c,11, 0xb056d0,2, 0xb05800,27, 0xb05880,4, 0xb05898,3, 0xb059a4,1, 0xb05a00,4, 0xb05a20,4, 0xb05a40,6, 0xb05a80,4, 0xb05aa0,4, 0xb05ac0,6, 0xb06000,16, 0xb06060,7, 0xb06080,16, 0xb060e0,7, 0xb06200,19, 0xb06280,19, 0xb06400,14, 0xb0643c,9, 0xb06464,6, 0xb06480,7, 0xb064a0,2, 0xb064ac,2, 0xb06500,14, 0xb0653c,9, 0xb06564,6, 0xb06580,7, 0xb065a0,2, 0xb065ac,2, 0xb06800,19, 0xb06880,19, 0xb06b00,1, 0xb06b20,1, 0xb06b28,4, 0xb06b40,1, 0xb06b60,1, 0xb06b68,4, 0xb06c00,7, 0xb06c20,1, 0xb06c54,18, 0xb06ca0,1, 0xb06cd4,11, 0xb06e00,8, 0xb07000,16, 0xb07100,7, 0xb07120,7, 0xb07180,3, 0xb0c000,22, 0xb0c060,6, 0xb0c080,11, 0xb0c100,11, 0xb0c204,1, 0xb0c224,21, 0xb0c280,16, 0xb0d000,8, 0xb0d024,10, 0xb0d050,22, 0xb0d100,8, 0xb0d124,10, 0xb0d150,22, 0xb0d200,8, 0xb0d224,10, 0xb0d250,22, 0xb0d300,8, 0xb0d324,10, 0xb0d350,22, 0xb0d400,8, 0xb0d424,10, 0xb0d450,22, 0xb0d500,8, 0xb0d524,10, 0xb0d550,22, 0xb0d600,8, 0xb0d624,10, 0xb0d650,22, 0xb0d700,8, 0xb0d724,10, 0xb0d750,22, 0xb0d800,8, 0xb0d824,10, 0xb0d850,22, 0xb0d904,1, 0xb0d914,10, 0xb0d948,11, 0xb0d980,1, 0xb0da00,6, 0xb0da20,2, 0xb0da2c,2, 0xb0e800,1, 0xb0e808,3, 0xb0e838,1, 0xb0e844,1, 0xb0e850,2, 0xb0e860,8, 0xb0e900,13, 0xb0e940,19, 0xb0e990,4, 0xb0f000,35, 0xb0fc00,10, 0xb0fc80,3, 0xb0fcc0,1, 0xb10000,13, 0xb10040,2, 0xb10054,4, 0xb10080,27, 0xb10100,12, 0xb10140,11, 0xb10170,2, 0xb10180,28, 0xb10200,6, 0xb10240,6, 0xb1025c,3, 0xb10280,5, 0xb102a0,8, 0xb10400,14, 0xb10440,14, 0xb10480,14, 0xb104c0,14, 0xb10540,3, 0xb10600,7, 0xb10620,14, 0xb10680,5, 0xb106a0,7, 0xb10800,13, 0xb10840,2, 0xb10854,4, 0xb10880,27, 0xb10900,12, 0xb10940,11, 0xb10970,2, 0xb10980,28, 0xb10a00,6, 0xb10a40,6, 0xb10a5c,3, 0xb10a80,5, 0xb10aa0,8, 0xb10c00,14, 0xb10c40,14, 0xb10c80,14, 0xb10cc0,14, 0xb10d40,3, 0xb10e00,7, 0xb10e20,14, 0xb10e80,5, 0xb10ea0,7, 0xb11000,13, 0xb11040,2, 0xb11054,4, 0xb11080,27, 0xb11100,12, 0xb11140,11, 0xb11170,2, 0xb11180,28, 0xb11200,6, 0xb11240,6, 0xb1125c,3, 0xb11280,5, 0xb112a0,8, 0xb11400,14, 0xb11440,14, 0xb11480,14, 0xb114c0,14, 0xb11540,3, 0xb11600,7, 0xb11620,14, 0xb11680,5, 0xb116a0,7, 0xb11800,13, 0xb11840,2, 0xb11854,4, 0xb11880,27, 0xb11900,12, 0xb11940,11, 0xb11970,2, 0xb11980,28, 0xb11a00,6, 0xb11a40,6, 0xb11a5c,3, 0xb11a80,5, 0xb11aa0,8, 0xb11c00,14, 0xb11c40,14, 0xb11c80,14, 0xb11cc0,14, 0xb11d40,3, 0xb11e00,7, 0xb11e20,14, 0xb11e80,5, 0xb11ea0,7, 0xb12000,8, 0xb12040,8, 0xb12080,1, 0xb12098,6, 0xb12100,10, 0xb12140,3, 0xb12150,2, 0xb12180,2, 0xb12200,6, 0xb12220,17, 0xb12280,4, 0xb12300,8, 0xb12400,2, 0xb12480,2, 0xb13000,40, 0xb13100,64, 0xb14000,13, 0xb14040,2, 0xb14054,4, 0xb14080,27, 0xb14100,12, 0xb14140,11, 0xb14170,2, 0xb14180,28, 0xb14200,6, 0xb14240,6, 0xb1425c,3, 0xb14280,5, 0xb142a0,8, 0xb14400,14, 0xb14440,14, 0xb14480,14, 0xb144c0,14, 0xb14540,3, 0xb14600,7, 0xb14620,14, 0xb14680,5, 0xb146a0,7, 0xb14800,13, 0xb14840,2, 0xb14854,4, 0xb14880,27, 0xb14900,12, 0xb14940,11, 0xb14970,2, 0xb14980,28, 0xb14a00,6, 0xb14a40,6, 0xb14a5c,3, 0xb14a80,5, 0xb14aa0,8, 0xb14c00,14, 0xb14c40,14, 0xb14c80,14, 0xb14cc0,14, 0xb14d40,3, 0xb14e00,7, 0xb14e20,14, 0xb14e80,5, 0xb14ea0,7, 0xb15000,13, 0xb15040,2, 0xb15054,4, 0xb15080,27, 0xb15100,12, 0xb15140,11, 0xb15170,2, 0xb15180,28, 0xb15200,6, 0xb15240,6, 0xb1525c,3, 0xb15280,5, 0xb152a0,8, 0xb15400,14, 0xb15440,14, 0xb15480,14, 0xb154c0,14, 0xb15540,3, 0xb15600,7, 0xb15620,14, 0xb15680,5, 0xb156a0,7, 0xb15800,13, 0xb15840,2, 0xb15854,4, 0xb15880,27, 0xb15900,12, 0xb15940,11, 0xb15970,2, 0xb15980,28, 0xb15a00,6, 0xb15a40,6, 0xb15a5c,3, 0xb15a80,5, 0xb15aa0,8, 0xb15c00,14, 0xb15c40,14, 0xb15c80,14, 0xb15cc0,14, 0xb15d40,3, 0xb15e00,7, 0xb15e20,14, 0xb15e80,5, 0xb15ea0,7, 0xb16000,8, 0xb16040,8, 0xb16080,1, 0xb16098,6, 0xb16100,10, 0xb16140,3, 0xb16150,2, 0xb16180,2, 0xb16200,6, 0xb16220,17, 0xb16280,4, 0xb16300,8, 0xb16400,2, 0xb16480,2, 0xb17000,40, 0xb17100,64, 0xb20000,11, 0xb20040,11, 0xb20070,3, 0xb20084,5, 0xb200a4,5, 0xb20200,7, 0xb20220,6, 0xb20240,7, 0xb20260,6, 0xb20280,6, 0xb202a0,2, 0xb202ac,2, 0xb202c0,7, 0xb202e0,7, 0xb20300,2, 0xb2030c,2, 0xb20320,6, 0xb21000,19, 0xb22000,25, 0xb22070,6, 0xb2208c,1, 0xb22094,1, 0xb2209c,8, 0xb22104,23, 0xb22180,7, 0xb221a0,6, 0xb221c0,7, 0xb221e0,6, 0xb22400,61, 0xb22500,25, 0xb22568,4, 0xb22580,2, 0xb225a0,1, 0xb225c0,11, 0xb22600,9, 0xb22640,3, 0xb22650,3, 0xb22664,3, 0xb22680,22, 0xb22700,17, 0xb22800,11, 0xb23000,594, 0xb24000,25, 0xb24070,6, 0xb2408c,1, 0xb24094,1, 0xb2409c,8, 0xb24104,23, 0xb24180,7, 0xb241a0,6, 0xb241c0,7, 0xb241e0,6, 0xb24400,61, 0xb24500,25, 0xb24568,4, 0xb24580,2, 0xb245a0,1, 0xb245c0,11, 0xb24600,9, 0xb24640,3, 0xb24650,3, 0xb24664,3, 0xb24680,22, 0xb24700,17, 0xb24800,11, 0xb25000,594, 0xb2a000,25, 0xb2a070,6, 0xb2a08c,1, 0xb2a094,1, 0xb2a09c,8, 0xb2a104,23, 0xb2a180,7, 0xb2a1a0,6, 0xb2a1c0,7, 0xb2a1e0,6, 0xb2a400,61, 0xb2a500,25, 0xb2a568,4, 0xb2a580,2, 0xb2a5a0,1, 0xb2a5c0,11, 0xb2a600,9, 0xb2a640,3, 0xb2a650,3, 0xb2a664,3, 0xb2a680,22, 0xb2a700,17, 0xb2a800,11, 0xb2b000,594, 0xb2c000,25, 0xb2c070,6, 0xb2c08c,1, 0xb2c094,1, 0xb2c09c,8, 0xb2c104,23, 0xb2c180,7, 0xb2c1a0,6, 0xb2c1c0,7, 0xb2c1e0,6, 0xb2c400,61, 0xb2c500,25, 0xb2c568,4, 0xb2c580,2, 0xb2c5a0,1, 0xb2c5c0,11, 0xb2c600,9, 0xb2c640,3, 0xb2c650,3, 0xb2c664,3, 0xb2c680,22, 0xb2c700,17, 0xb2c800,11, 0xb2d000,594, 0xb3f000,7, 0xb3f048,7, 0xb3f080,8, 0xb3f100,7, 0xb3f148,7, 0xb3f180,8, 0xb3f400,7, 0xb3f448,7, 0xb3f480,8, 0xb3f500,7, 0xb3f548,7, 0xb3f580,8, 0xb40000,31, 0xb40080,31, 0xb40100,31, 0xb40180,31, 0xb40200,31, 0xb40280,31, 0xb40300,31, 0xb40380,31, 0xb40400,64, 0xb40504,5, 0xb40520,1, 0xb40600,6, 0xb40620,6, 0xb40640,6, 0xb40660,6, 0xb40680,6, 0xb406a0,6, 0xb406c0,6, 0xb406e0,6, 0xb40700,4, 0xb40720,3, 0xb40730,3, 0xb40760,3, 0xb40770,1, 0xb40780,5, 0xb40800,31, 0xb40880,31, 0xb40900,31, 0xb40980,31, 0xb40a00,31, 0xb40a80,31, 0xb40b00,31, 0xb40b80,31, 0xb40c00,64, 0xb40d04,5, 0xb40d20,1, 0xb40e00,6, 0xb40e20,6, 0xb40e40,6, 0xb40e60,6, 0xb40e80,6, 0xb40ea0,6, 0xb40ec0,6, 0xb40ee0,6, 0xb40f00,4, 0xb40f20,3, 0xb40f30,3, 0xb40f60,3, 0xb40f70,1, 0xb40f80,5, 0xb41000,11, 0xb41040,11, 0xb41080,11, 0xb410c0,11, 0xb41100,21, 0xb41160,5, 0xb41180,3, 0xb41190,3, 0xb411a0,11, 0xb411d0,3, 0xb411e0,3, 0xb41200,86, 0xb41400,5, 0xb4141c,1, 0xb41440,6, 0xb41460,1, 0xb41480,3, 0xb41490,1, 0xb41800,11, 0xb41840,11, 0xb41880,11, 0xb418c0,11, 0xb41900,21, 0xb41960,5, 0xb41980,3, 0xb41990,3, 0xb419a0,11, 0xb419d0,3, 0xb419e0,3, 0xb41a00,86, 0xb41c00,5, 0xb41c1c,1, 0xb41c40,6, 0xb41c60,1, 0xb41c80,3, 0xb41c90,1, 0xb42000,32, 0xb42084,1, 0xb42094,3, 0xb420c4,3, 0xb42100,1, 0xb4210c,3, 0xb42120,3, 0xb42140,1, 0xb42150,9, 0xb42180,2, 0xb421a4,1, 0xb421b4,8, 0xb42200,20, 0xb42260,6, 0xb42280,4, 0xb422a0,6, 0xb43000,31, 0xb43080,31, 0xb43100,31, 0xb43180,31, 0xb43200,31, 0xb43280,31, 0xb43300,31, 0xb43380,31, 0xb43400,64, 0xb43504,5, 0xb43520,1, 0xb43600,6, 0xb43620,6, 0xb43640,6, 0xb43660,6, 0xb43680,6, 0xb436a0,6, 0xb436c0,6, 0xb436e0,6, 0xb43700,4, 0xb43720,3, 0xb43730,3, 0xb43760,3, 0xb43770,1, 0xb43780,5, 0xb43800,31, 0xb43880,31, 0xb43900,31, 0xb43980,31, 0xb43a00,31, 0xb43a80,31, 0xb43b00,31, 0xb43b80,31, 0xb43c00,64, 0xb43d04,5, 0xb43d20,1, 0xb43e00,6, 0xb43e20,6, 0xb43e40,6, 0xb43e60,6, 0xb43e80,6, 0xb43ea0,6, 0xb43ec0,6, 0xb43ee0,6, 0xb43f00,4, 0xb43f20,3, 0xb43f30,3, 0xb43f60,3, 0xb43f70,1, 0xb43f80,5, 0xb44000,11, 0xb44040,11, 0xb44080,11, 0xb440c0,11, 0xb44100,21, 0xb44160,5, 0xb44180,3, 0xb44190,3, 0xb441a0,11, 0xb441d0,3, 0xb441e0,3, 0xb44200,86, 0xb44400,5, 0xb4441c,1, 0xb44440,6, 0xb44460,1, 0xb44480,3, 0xb44490,1, 0xb44800,11, 0xb44840,11, 0xb44880,11, 0xb448c0,11, 0xb44900,21, 0xb44960,5, 0xb44980,3, 0xb44990,3, 0xb449a0,11, 0xb449d0,3, 0xb449e0,3, 0xb44a00,86, 0xb44c00,5, 0xb44c1c,1, 0xb44c40,6, 0xb44c60,1, 0xb44c80,3, 0xb44c90,1, 0xb45000,32, 0xb45084,1, 0xb45094,3, 0xb450c4,3, 0xb45100,1, 0xb4510c,3, 0xb45120,3, 0xb45140,1, 0xb45150,9, 0xb45180,2, 0xb451a4,1, 0xb451b4,8, 0xb45200,20, 0xb45260,6, 0xb45280,4, 0xb452a0,6, 0xb46100,1, 0xb4610c,4, 0xb46120,16, 0xb46180,1, 0xb46200,91, 0xb46508,1, 0xb46540,1, 0xb47000,1, 0xb47014,1, 0xb4701c,2, 0xb47034,1, 0xb4703c,5, 0xb47060,6, 0xb47080,4, 0xb470a0,6, 0xb470c0,3, 0xb470d0,2, 0xb47100,11, 0xb47134,4, 0xb47150,3, 0xb47200,3, 0xb47210,1, 0xb47220,9, 0xb47260,2, 0xb47300,25, 0xb49000,19, 0xb50000,286, 0xb50800,3, 0xb50810,3, 0xb50820,3, 0xb50830,4, 0xb50844,7, 0xb51000,3, 0xb51010,86, 0xb51170,18, 0xb51200,1, 0xb51220,1, 0xb51240,1, 0xb51254,1, 0xb5125c,4, 0xb51270,1, 0xb51278,1, 0xb51400,3, 0xb51410,86, 0xb51570,20, 0xb51604,1, 0xb51640,48, 0xb51704,1, 0xb51710,5, 0xb51740,6, 0xb518e0,12, 0xb51920,4, 0xb51a00,7, 0xb51a20,37, 0xb51b00,41, 0xb51bb0,3, 0xb51c00,25, 0xb51c80,7, 0xb51ca0,6, 0xb51cc0,7, 0xb51d00,7, 0xb51d20,5, 0xb51d40,10, 0xb52000,286, 0xb52800,3, 0xb52810,3, 0xb52820,3, 0xb52830,4, 0xb52844,7, 0xb53000,3, 0xb53010,86, 0xb53170,18, 0xb53200,1, 0xb53220,1, 0xb53240,1, 0xb53254,1, 0xb5325c,4, 0xb53270,1, 0xb53278,1, 0xb53400,3, 0xb53410,86, 0xb53570,20, 0xb53604,1, 0xb53640,48, 0xb53704,1, 0xb53710,5, 0xb53740,6, 0xb538e0,12, 0xb53920,4, 0xb53a00,7, 0xb53a20,37, 0xb53b00,41, 0xb53bb0,3, 0xb53c00,25, 0xb53c80,7, 0xb53ca0,6, 0xb53cc0,7, 0xb53d00,7, 0xb53d20,5, 0xb53d40,10, 0xb54000,19, 0xb55000,11, 0xb55040,5, 0xb55058,1, 0xb55060,1, 0xb60000,3, 0xb60010,3, 0xb60020,5, 0xb60038,9, 0xb60060,8, 0xb60100,17, 0xb60200,3, 0xb60210,3, 0xb60220,5, 0xb60238,9, 0xb60260,8, 0xb60300,17, 0xb60400,3, 0xb60414,1, 0xb6041c,33, 0xb60540,33, 0xb605c8,12, 0xb60800,2, 0xb60844,1, 0xb6084c,1, 0xb60880,27, 0xb60900,4, 0xb60980,19, 0xb60a00,4, 0xb60a80,19, 0xb60b00,1, 0xb60b40,5, 0xb60b60,5, 0xb60b80,6, 0xb60bb0,17, 0xb60c00,13, 0xb60c40,5, 0xb60c80,12, 0xb61000,3, 0xb61010,3, 0xb61020,5, 0xb61038,9, 0xb61060,8, 0xb61100,17, 0xb61200,3, 0xb61210,3, 0xb61220,5, 0xb61238,9, 0xb61260,8, 0xb61300,17, 0xb61400,3, 0xb61414,1, 0xb6141c,33, 0xb61540,33, 0xb615c8,12, 0xb61800,2, 0xb61844,1, 0xb6184c,1, 0xb61880,27, 0xb61900,4, 0xb61980,19, 0xb61a00,4, 0xb61a80,19, 0xb61b00,1, 0xb61b40,5, 0xb61b60,5, 0xb61b80,6, 0xb61bb0,17, 0xb61c00,13, 0xb61c40,5, 0xb61c80,12, 0xb62000,19, 0xb62080,4, 0xb63000,19, 0xb64000,2, 0xb6400c,5, 0xb64028,3, 0xb64038,3, 0xb64050,1, 0xb64080,13, 0xb64120,4, 0xb64140,1, 0xb64400,26, 0xb64470,3, 0xb64580,10, 0xb645c0,8, 0xb645e8,2, 0xb645f4,2, 0xb64600,5, 0xb64618,1, 0xb64620,1, 0xb64628,1, 0xb64630,2, 0xb64640,2, 0xb64650,2, 0xb64690,4, 0xb64740,2, 0xb64800,2, 0xb6480c,5, 0xb64828,3, 0xb64838,3, 0xb64850,1, 0xb64880,13, 0xb64920,4, 0xb64940,1, 0xb64c00,26, 0xb64c70,3, 0xb64d80,10, 0xb64dc0,8, 0xb64de8,2, 0xb64df4,2, 0xb64e00,5, 0xb64e18,1, 0xb64e20,1, 0xb64e28,1, 0xb64e30,2, 0xb64e40,2, 0xb64e50,2, 0xb64e90,4, 0xb64f40,2, 0xb65800,11, 0xb65880,2, 0xb658b0,2, 0xb66000,35, 0xb66c00,10, 0xb66c80,3, 0xb80000,4, 0xb80014,1, 0xb80020,3, 0xb80030,3, 0xb80040,5, 0xb80064,5, 0xb8007c,2, 0xb800a0,28, 0xb80114,1, 0xb80120,3, 0xb80130,3, 0xb80140,5, 0xb80164,5, 0xb8017c,2, 0xb801a0,28, 0xb80214,1, 0xb80220,3, 0xb80230,3, 0xb80240,5, 0xb80264,5, 0xb8027c,2, 0xb802a0,28, 0xb80314,1, 0xb80320,3, 0xb80330,3, 0xb80340,5, 0xb80364,5, 0xb8037c,2, 0xb803a0,24, 0xb805c0,1, 0xb80600,1, 0xb80608,3, 0xb80618,2, 0xb80800,18, 0xb80880,10, 0xb808ac,2, 0xb808f0,3, 0xb80900,18, 0xb80980,10, 0xb809ac,2, 0xb809f0,3, 0xb80c00,18, 0xb80c50,2, 0xb80c60,6, 0xb80c80,18, 0xb80cd0,2, 0xb80ce0,6, 0xb80e00,4, 0xb80e20,4, 0xb80e80,16, 0xb80f00,5, 0xb80f20,5, 0xb81000,12, 0xb81200,1, 0xb81208,6, 0xb81228,9, 0xb81280,1, 0xb81288,6, 0xb812a8,9, 0xb81400,15, 0xb81440,15, 0xb81600,7, 0xb81620,7, 0xb81680,4, 0xb8169c,11, 0xb816d0,2, 0xb81800,27, 0xb81880,4, 0xb81898,3, 0xb819a4,1, 0xb81a00,4, 0xb81a20,4, 0xb81a40,6, 0xb81a80,4, 0xb81aa0,4, 0xb81ac0,6, 0xb82000,16, 0xb82060,7, 0xb82080,16, 0xb820e0,7, 0xb82200,19, 0xb82280,19, 0xb82400,14, 0xb8243c,9, 0xb82464,6, 0xb82480,7, 0xb824a0,2, 0xb824ac,2, 0xb82500,14, 0xb8253c,9, 0xb82564,6, 0xb82580,7, 0xb825a0,2, 0xb825ac,2, 0xb82800,19, 0xb82880,19, 0xb82b00,1, 0xb82b20,1, 0xb82b28,4, 0xb82b40,1, 0xb82b60,1, 0xb82b68,4, 0xb82c00,7, 0xb82c20,1, 0xb82c54,18, 0xb82ca0,1, 0xb82cd4,11, 0xb82e00,8, 0xb83000,16, 0xb83100,7, 0xb83120,7, 0xb83180,3, 0xb84000,4, 0xb84014,1, 0xb84020,3, 0xb84030,3, 0xb84040,5, 0xb84064,5, 0xb8407c,2, 0xb840a0,28, 0xb84114,1, 0xb84120,3, 0xb84130,3, 0xb84140,5, 0xb84164,5, 0xb8417c,2, 0xb841a0,28, 0xb84214,1, 0xb84220,3, 0xb84230,3, 0xb84240,5, 0xb84264,5, 0xb8427c,2, 0xb842a0,28, 0xb84314,1, 0xb84320,3, 0xb84330,3, 0xb84340,5, 0xb84364,5, 0xb8437c,2, 0xb843a0,24, 0xb845c0,1, 0xb84600,1, 0xb84608,3, 0xb84618,2, 0xb84800,18, 0xb84880,10, 0xb848ac,2, 0xb848f0,3, 0xb84900,18, 0xb84980,10, 0xb849ac,2, 0xb849f0,3, 0xb84c00,18, 0xb84c50,2, 0xb84c60,6, 0xb84c80,18, 0xb84cd0,2, 0xb84ce0,6, 0xb84e00,4, 0xb84e20,4, 0xb84e80,16, 0xb84f00,5, 0xb84f20,5, 0xb85000,12, 0xb85200,1, 0xb85208,6, 0xb85228,9, 0xb85280,1, 0xb85288,6, 0xb852a8,9, 0xb85400,15, 0xb85440,15, 0xb85600,7, 0xb85620,7, 0xb85680,4, 0xb8569c,11, 0xb856d0,2, 0xb85800,27, 0xb85880,4, 0xb85898,3, 0xb859a4,1, 0xb85a00,4, 0xb85a20,4, 0xb85a40,6, 0xb85a80,4, 0xb85aa0,4, 0xb85ac0,6, 0xb86000,16, 0xb86060,7, 0xb86080,16, 0xb860e0,7, 0xb86200,19, 0xb86280,19, 0xb86400,14, 0xb8643c,9, 0xb86464,6, 0xb86480,7, 0xb864a0,2, 0xb864ac,2, 0xb86500,14, 0xb8653c,9, 0xb86564,6, 0xb86580,7, 0xb865a0,2, 0xb865ac,2, 0xb86800,19, 0xb86880,19, 0xb86b00,1, 0xb86b20,1, 0xb86b28,4, 0xb86b40,1, 0xb86b60,1, 0xb86b68,4, 0xb86c00,7, 0xb86c20,1, 0xb86c54,18, 0xb86ca0,1, 0xb86cd4,11, 0xb86e00,8, 0xb87000,16, 0xb87100,7, 0xb87120,7, 0xb87180,3, 0xb8c000,22, 0xb8c060,6, 0xb8c080,11, 0xb8c100,11, 0xb8c204,1, 0xb8c224,21, 0xb8c280,16, 0xb8d000,8, 0xb8d024,10, 0xb8d050,22, 0xb8d100,8, 0xb8d124,10, 0xb8d150,22, 0xb8d200,8, 0xb8d224,10, 0xb8d250,22, 0xb8d300,8, 0xb8d324,10, 0xb8d350,22, 0xb8d400,8, 0xb8d424,10, 0xb8d450,22, 0xb8d500,8, 0xb8d524,10, 0xb8d550,22, 0xb8d600,8, 0xb8d624,10, 0xb8d650,22, 0xb8d700,8, 0xb8d724,10, 0xb8d750,22, 0xb8d800,8, 0xb8d824,10, 0xb8d850,22, 0xb8d904,1, 0xb8d914,10, 0xb8d948,11, 0xb8d980,1, 0xb8da00,6, 0xb8da20,2, 0xb8da2c,2, 0xb8e800,1, 0xb8e808,3, 0xb8e838,1, 0xb8e844,1, 0xb8e850,2, 0xb8e860,8, 0xb8e900,13, 0xb8e940,19, 0xb8e990,4, 0xb8f000,35, 0xb8fc00,10, 0xb8fc80,3, 0xb8fcc0,1, 0xb90000,13, 0xb90040,2, 0xb90054,4, 0xb90080,27, 0xb90100,12, 0xb90140,11, 0xb90170,2, 0xb90180,28, 0xb90200,6, 0xb90240,6, 0xb9025c,3, 0xb90280,5, 0xb902a0,8, 0xb90400,14, 0xb90440,14, 0xb90480,14, 0xb904c0,14, 0xb90540,3, 0xb90600,7, 0xb90620,14, 0xb90680,5, 0xb906a0,7, 0xb90800,13, 0xb90840,2, 0xb90854,4, 0xb90880,27, 0xb90900,12, 0xb90940,11, 0xb90970,2, 0xb90980,28, 0xb90a00,6, 0xb90a40,6, 0xb90a5c,3, 0xb90a80,5, 0xb90aa0,8, 0xb90c00,14, 0xb90c40,14, 0xb90c80,14, 0xb90cc0,14, 0xb90d40,3, 0xb90e00,7, 0xb90e20,14, 0xb90e80,5, 0xb90ea0,7, 0xb91000,13, 0xb91040,2, 0xb91054,4, 0xb91080,27, 0xb91100,12, 0xb91140,11, 0xb91170,2, 0xb91180,28, 0xb91200,6, 0xb91240,6, 0xb9125c,3, 0xb91280,5, 0xb912a0,8, 0xb91400,14, 0xb91440,14, 0xb91480,14, 0xb914c0,14, 0xb91540,3, 0xb91600,7, 0xb91620,14, 0xb91680,5, 0xb916a0,7, 0xb91800,13, 0xb91840,2, 0xb91854,4, 0xb91880,27, 0xb91900,12, 0xb91940,11, 0xb91970,2, 0xb91980,28, 0xb91a00,6, 0xb91a40,6, 0xb91a5c,3, 0xb91a80,5, 0xb91aa0,8, 0xb91c00,14, 0xb91c40,14, 0xb91c80,14, 0xb91cc0,14, 0xb91d40,3, 0xb91e00,7, 0xb91e20,14, 0xb91e80,5, 0xb91ea0,7, 0xb92000,8, 0xb92040,8, 0xb92080,1, 0xb92098,6, 0xb92100,10, 0xb92140,3, 0xb92150,2, 0xb92180,2, 0xb92200,6, 0xb92220,17, 0xb92280,4, 0xb92300,8, 0xb92400,2, 0xb92480,2, 0xb93000,40, 0xb93100,64, 0xb94000,13, 0xb94040,2, 0xb94054,4, 0xb94080,27, 0xb94100,12, 0xb94140,11, 0xb94170,2, 0xb94180,28, 0xb94200,6, 0xb94240,6, 0xb9425c,3, 0xb94280,5, 0xb942a0,8, 0xb94400,14, 0xb94440,14, 0xb94480,14, 0xb944c0,14, 0xb94540,3, 0xb94600,7, 0xb94620,14, 0xb94680,5, 0xb946a0,7, 0xb94800,13, 0xb94840,2, 0xb94854,4, 0xb94880,27, 0xb94900,12, 0xb94940,11, 0xb94970,2, 0xb94980,28, 0xb94a00,6, 0xb94a40,6, 0xb94a5c,3, 0xb94a80,5, 0xb94aa0,8, 0xb94c00,14, 0xb94c40,14, 0xb94c80,14, 0xb94cc0,14, 0xb94d40,3, 0xb94e00,7, 0xb94e20,14, 0xb94e80,5, 0xb94ea0,7, 0xb95000,13, 0xb95040,2, 0xb95054,4, 0xb95080,27, 0xb95100,12, 0xb95140,11, 0xb95170,2, 0xb95180,28, 0xb95200,6, 0xb95240,6, 0xb9525c,3, 0xb95280,5, 0xb952a0,8, 0xb95400,14, 0xb95440,14, 0xb95480,14, 0xb954c0,14, 0xb95540,3, 0xb95600,7, 0xb95620,14, 0xb95680,5, 0xb956a0,7, 0xb95800,13, 0xb95840,2, 0xb95854,4, 0xb95880,27, 0xb95900,12, 0xb95940,11, 0xb95970,2, 0xb95980,28, 0xb95a00,6, 0xb95a40,6, 0xb95a5c,3, 0xb95a80,5, 0xb95aa0,8, 0xb95c00,14, 0xb95c40,14, 0xb95c80,14, 0xb95cc0,14, 0xb95d40,3, 0xb95e00,7, 0xb95e20,14, 0xb95e80,5, 0xb95ea0,7, 0xb96000,8, 0xb96040,8, 0xb96080,1, 0xb96098,6, 0xb96100,10, 0xb96140,3, 0xb96150,2, 0xb96180,2, 0xb96200,6, 0xb96220,17, 0xb96280,4, 0xb96300,8, 0xb96400,2, 0xb96480,2, 0xb97000,40, 0xb97100,64, 0xba0000,11, 0xba0040,11, 0xba0070,3, 0xba0084,5, 0xba00a4,5, 0xba0200,7, 0xba0220,6, 0xba0240,7, 0xba0260,6, 0xba0280,6, 0xba02a0,2, 0xba02ac,2, 0xba02c0,7, 0xba02e0,7, 0xba0300,2, 0xba030c,2, 0xba0320,6, 0xba1000,19, 0xba2000,25, 0xba2070,6, 0xba208c,1, 0xba2094,1, 0xba209c,8, 0xba2104,23, 0xba2180,7, 0xba21a0,6, 0xba21c0,7, 0xba21e0,6, 0xba2400,61, 0xba2500,25, 0xba2568,4, 0xba2580,2, 0xba25a0,1, 0xba25c0,11, 0xba2600,9, 0xba2640,3, 0xba2650,3, 0xba2664,3, 0xba2680,22, 0xba2700,17, 0xba2800,11, 0xba3000,594, 0xba4000,25, 0xba4070,6, 0xba408c,1, 0xba4094,1, 0xba409c,8, 0xba4104,23, 0xba4180,7, 0xba41a0,6, 0xba41c0,7, 0xba41e0,6, 0xba4400,61, 0xba4500,25, 0xba4568,4, 0xba4580,2, 0xba45a0,1, 0xba45c0,11, 0xba4600,9, 0xba4640,3, 0xba4650,3, 0xba4664,3, 0xba4680,22, 0xba4700,17, 0xba4800,11, 0xba5000,594, 0xbaa000,25, 0xbaa070,6, 0xbaa08c,1, 0xbaa094,1, 0xbaa09c,8, 0xbaa104,23, 0xbaa180,7, 0xbaa1a0,6, 0xbaa1c0,7, 0xbaa1e0,6, 0xbaa400,61, 0xbaa500,25, 0xbaa568,4, 0xbaa580,2, 0xbaa5a0,1, 0xbaa5c0,11, 0xbaa600,9, 0xbaa640,3, 0xbaa650,3, 0xbaa664,3, 0xbaa680,22, 0xbaa700,17, 0xbaa800,11, 0xbab000,594, 0xbac000,25, 0xbac070,6, 0xbac08c,1, 0xbac094,1, 0xbac09c,8, 0xbac104,23, 0xbac180,7, 0xbac1a0,6, 0xbac1c0,7, 0xbac1e0,6, 0xbac400,61, 0xbac500,25, 0xbac568,4, 0xbac580,2, 0xbac5a0,1, 0xbac5c0,11, 0xbac600,9, 0xbac640,3, 0xbac650,3, 0xbac664,3, 0xbac680,22, 0xbac700,17, 0xbac800,11, 0xbad000,594, 0xbbf000,7, 0xbbf048,7, 0xbbf080,8, 0xbbf100,7, 0xbbf148,7, 0xbbf180,8, 0xbbf400,7, 0xbbf448,7, 0xbbf480,8, 0xbbf500,7, 0xbbf548,7, 0xbbf580,8, 0xbc0000,31, 0xbc0080,31, 0xbc0100,31, 0xbc0180,31, 0xbc0200,31, 0xbc0280,31, 0xbc0300,31, 0xbc0380,31, 0xbc0400,64, 0xbc0504,5, 0xbc0520,1, 0xbc0600,6, 0xbc0620,6, 0xbc0640,6, 0xbc0660,6, 0xbc0680,6, 0xbc06a0,6, 0xbc06c0,6, 0xbc06e0,6, 0xbc0700,4, 0xbc0720,3, 0xbc0730,3, 0xbc0760,3, 0xbc0770,1, 0xbc0780,5, 0xbc0800,31, 0xbc0880,31, 0xbc0900,31, 0xbc0980,31, 0xbc0a00,31, 0xbc0a80,31, 0xbc0b00,31, 0xbc0b80,31, 0xbc0c00,64, 0xbc0d04,5, 0xbc0d20,1, 0xbc0e00,6, 0xbc0e20,6, 0xbc0e40,6, 0xbc0e60,6, 0xbc0e80,6, 0xbc0ea0,6, 0xbc0ec0,6, 0xbc0ee0,6, 0xbc0f00,4, 0xbc0f20,3, 0xbc0f30,3, 0xbc0f60,3, 0xbc0f70,1, 0xbc0f80,5, 0xbc1000,11, 0xbc1040,11, 0xbc1080,11, 0xbc10c0,11, 0xbc1100,21, 0xbc1160,5, 0xbc1180,3, 0xbc1190,3, 0xbc11a0,11, 0xbc11d0,3, 0xbc11e0,3, 0xbc1200,86, 0xbc1400,5, 0xbc141c,1, 0xbc1440,6, 0xbc1460,1, 0xbc1480,3, 0xbc1490,1, 0xbc1800,11, 0xbc1840,11, 0xbc1880,11, 0xbc18c0,11, 0xbc1900,21, 0xbc1960,5, 0xbc1980,3, 0xbc1990,3, 0xbc19a0,11, 0xbc19d0,3, 0xbc19e0,3, 0xbc1a00,86, 0xbc1c00,5, 0xbc1c1c,1, 0xbc1c40,6, 0xbc1c60,1, 0xbc1c80,3, 0xbc1c90,1, 0xbc2000,32, 0xbc2084,1, 0xbc2094,3, 0xbc20c4,3, 0xbc2100,1, 0xbc210c,3, 0xbc2120,3, 0xbc2140,1, 0xbc2150,9, 0xbc2180,2, 0xbc21a4,1, 0xbc21b4,8, 0xbc2200,20, 0xbc2260,6, 0xbc2280,4, 0xbc22a0,6, 0xbc3000,31, 0xbc3080,31, 0xbc3100,31, 0xbc3180,31, 0xbc3200,31, 0xbc3280,31, 0xbc3300,31, 0xbc3380,31, 0xbc3400,64, 0xbc3504,5, 0xbc3520,1, 0xbc3600,6, 0xbc3620,6, 0xbc3640,6, 0xbc3660,6, 0xbc3680,6, 0xbc36a0,6, 0xbc36c0,6, 0xbc36e0,6, 0xbc3700,4, 0xbc3720,3, 0xbc3730,3, 0xbc3760,3, 0xbc3770,1, 0xbc3780,5, 0xbc3800,31, 0xbc3880,31, 0xbc3900,31, 0xbc3980,31, 0xbc3a00,31, 0xbc3a80,31, 0xbc3b00,31, 0xbc3b80,31, 0xbc3c00,64, 0xbc3d04,5, 0xbc3d20,1, 0xbc3e00,6, 0xbc3e20,6, 0xbc3e40,6, 0xbc3e60,6, 0xbc3e80,6, 0xbc3ea0,6, 0xbc3ec0,6, 0xbc3ee0,6, 0xbc3f00,4, 0xbc3f20,3, 0xbc3f30,3, 0xbc3f60,3, 0xbc3f70,1, 0xbc3f80,5, 0xbc4000,11, 0xbc4040,11, 0xbc4080,11, 0xbc40c0,11, 0xbc4100,21, 0xbc4160,5, 0xbc4180,3, 0xbc4190,3, 0xbc41a0,11, 0xbc41d0,3, 0xbc41e0,3, 0xbc4200,86, 0xbc4400,5, 0xbc441c,1, 0xbc4440,6, 0xbc4460,1, 0xbc4480,3, 0xbc4490,1, 0xbc4800,11, 0xbc4840,11, 0xbc4880,11, 0xbc48c0,11, 0xbc4900,21, 0xbc4960,5, 0xbc4980,3, 0xbc4990,3, 0xbc49a0,11, 0xbc49d0,3, 0xbc49e0,3, 0xbc4a00,86, 0xbc4c00,5, 0xbc4c1c,1, 0xbc4c40,6, 0xbc4c60,1, 0xbc4c80,3, 0xbc4c90,1, 0xbc5000,32, 0xbc5084,1, 0xbc5094,3, 0xbc50c4,3, 0xbc5100,1, 0xbc510c,3, 0xbc5120,3, 0xbc5140,1, 0xbc5150,9, 0xbc5180,2, 0xbc51a4,1, 0xbc51b4,8, 0xbc5200,20, 0xbc5260,6, 0xbc5280,4, 0xbc52a0,6, 0xbc6100,1, 0xbc610c,4, 0xbc6120,16, 0xbc6180,1, 0xbc6200,91, 0xbc6508,1, 0xbc6540,1, 0xbc7000,1, 0xbc7014,1, 0xbc701c,2, 0xbc7034,1, 0xbc703c,5, 0xbc7060,6, 0xbc7080,4, 0xbc70a0,6, 0xbc70c0,3, 0xbc70d0,2, 0xbc7100,11, 0xbc7134,4, 0xbc7150,3, 0xbc7200,3, 0xbc7210,1, 0xbc7220,9, 0xbc7260,2, 0xbc7300,25, 0xbc9000,19, 0xbd0000,286, 0xbd0800,3, 0xbd0810,3, 0xbd0820,3, 0xbd0830,4, 0xbd0844,7, 0xbd1000,3, 0xbd1010,86, 0xbd1170,18, 0xbd1200,1, 0xbd1220,1, 0xbd1240,1, 0xbd1254,1, 0xbd125c,4, 0xbd1270,1, 0xbd1278,1, 0xbd1400,3, 0xbd1410,86, 0xbd1570,20, 0xbd1604,1, 0xbd1640,48, 0xbd1704,1, 0xbd1710,5, 0xbd1740,6, 0xbd18e0,12, 0xbd1920,4, 0xbd1a00,7, 0xbd1a20,37, 0xbd1b00,41, 0xbd1bb0,3, 0xbd1c00,25, 0xbd1c80,7, 0xbd1ca0,6, 0xbd1cc0,7, 0xbd1d00,7, 0xbd1d20,5, 0xbd1d40,10, 0xbd2000,286, 0xbd2800,3, 0xbd2810,3, 0xbd2820,3, 0xbd2830,4, 0xbd2844,7, 0xbd3000,3, 0xbd3010,86, 0xbd3170,18, 0xbd3200,1, 0xbd3220,1, 0xbd3240,1, 0xbd3254,1, 0xbd325c,4, 0xbd3270,1, 0xbd3278,1, 0xbd3400,3, 0xbd3410,86, 0xbd3570,20, 0xbd3604,1, 0xbd3640,48, 0xbd3704,1, 0xbd3710,5, 0xbd3740,6, 0xbd38e0,12, 0xbd3920,4, 0xbd3a00,7, 0xbd3a20,37, 0xbd3b00,41, 0xbd3bb0,3, 0xbd3c00,25, 0xbd3c80,7, 0xbd3ca0,6, 0xbd3cc0,7, 0xbd3d00,7, 0xbd3d20,5, 0xbd3d40,10, 0xbd4000,19, 0xbd5000,11, 0xbd5040,5, 0xbd5058,1, 0xbd5060,1, 0xbe0000,3, 0xbe0010,3, 0xbe0020,5, 0xbe0038,9, 0xbe0060,8, 0xbe0100,17, 0xbe0200,3, 0xbe0210,3, 0xbe0220,5, 0xbe0238,9, 0xbe0260,8, 0xbe0300,17, 0xbe0400,3, 0xbe0414,1, 0xbe041c,33, 0xbe0540,33, 0xbe05c8,12, 0xbe0800,2, 0xbe0844,1, 0xbe084c,1, 0xbe0880,27, 0xbe0900,4, 0xbe0980,19, 0xbe0a00,4, 0xbe0a80,19, 0xbe0b00,1, 0xbe0b40,5, 0xbe0b60,5, 0xbe0b80,6, 0xbe0bb0,17, 0xbe0c00,13, 0xbe0c40,5, 0xbe0c80,12, 0xbe1000,3, 0xbe1010,3, 0xbe1020,5, 0xbe1038,9, 0xbe1060,8, 0xbe1100,17, 0xbe1200,3, 0xbe1210,3, 0xbe1220,5, 0xbe1238,9, 0xbe1260,8, 0xbe1300,17, 0xbe1400,3, 0xbe1414,1, 0xbe141c,33, 0xbe1540,33, 0xbe15c8,12, 0xbe1800,2, 0xbe1844,1, 0xbe184c,1, 0xbe1880,27, 0xbe1900,4, 0xbe1980,19, 0xbe1a00,4, 0xbe1a80,19, 0xbe1b00,1, 0xbe1b40,5, 0xbe1b60,5, 0xbe1b80,6, 0xbe1bb0,17, 0xbe1c00,13, 0xbe1c40,5, 0xbe1c80,12, 0xbe2000,19, 0xbe2080,4, 0xbe3000,19, 0xbe4000,2, 0xbe400c,5, 0xbe4028,3, 0xbe4038,3, 0xbe4050,1, 0xbe4080,13, 0xbe4120,4, 0xbe4140,1, 0xbe4400,26, 0xbe4470,3, 0xbe4580,10, 0xbe45c0,8, 0xbe45e8,2, 0xbe45f4,2, 0xbe4600,5, 0xbe4618,1, 0xbe4620,1, 0xbe4628,1, 0xbe4630,2, 0xbe4640,2, 0xbe4650,2, 0xbe4690,4, 0xbe4740,2, 0xbe4800,2, 0xbe480c,5, 0xbe4828,3, 0xbe4838,3, 0xbe4850,1, 0xbe4880,13, 0xbe4920,4, 0xbe4940,1, 0xbe4c00,26, 0xbe4c70,3, 0xbe4d80,10, 0xbe4dc0,8, 0xbe4de8,2, 0xbe4df4,2, 0xbe4e00,5, 0xbe4e18,1, 0xbe4e20,1, 0xbe4e28,1, 0xbe4e30,2, 0xbe4e40,2, 0xbe4e50,2, 0xbe4e90,4, 0xbe4f40,2, 0xbe5800,11, 0xbe5880,2, 0xbe58b0,2, 0xbe6000,35, 0xbe6c00,10, 0xbe6c80,3, 0xc00000,4, 0xc00014,1, 0xc00020,3, 0xc00030,3, 0xc00040,5, 0xc00064,5, 0xc0007c,2, 0xc000a0,28, 0xc00114,1, 0xc00120,3, 0xc00130,3, 0xc00140,5, 0xc00164,5, 0xc0017c,2, 0xc001a0,28, 0xc00214,1, 0xc00220,3, 0xc00230,3, 0xc00240,5, 0xc00264,5, 0xc0027c,2, 0xc002a0,28, 0xc00314,1, 0xc00320,3, 0xc00330,3, 0xc00340,5, 0xc00364,5, 0xc0037c,2, 0xc003a0,24, 0xc005c0,1, 0xc00600,1, 0xc00608,3, 0xc00618,2, 0xc00800,18, 0xc00880,10, 0xc008ac,2, 0xc008f0,3, 0xc00900,18, 0xc00980,10, 0xc009ac,2, 0xc009f0,3, 0xc00c00,18, 0xc00c50,2, 0xc00c60,6, 0xc00c80,18, 0xc00cd0,2, 0xc00ce0,6, 0xc00e00,4, 0xc00e20,4, 0xc00e80,16, 0xc00f00,5, 0xc00f20,5, 0xc01000,12, 0xc01200,1, 0xc01208,6, 0xc01228,9, 0xc01280,1, 0xc01288,6, 0xc012a8,9, 0xc01400,15, 0xc01440,15, 0xc01600,7, 0xc01620,7, 0xc01680,4, 0xc0169c,11, 0xc016d0,2, 0xc01800,27, 0xc01880,4, 0xc01898,3, 0xc019a4,1, 0xc01a00,4, 0xc01a20,4, 0xc01a40,6, 0xc01a80,4, 0xc01aa0,4, 0xc01ac0,6, 0xc02000,16, 0xc02060,7, 0xc02080,16, 0xc020e0,7, 0xc02200,19, 0xc02280,19, 0xc02400,14, 0xc0243c,9, 0xc02464,6, 0xc02480,7, 0xc024a0,2, 0xc024ac,2, 0xc02500,14, 0xc0253c,9, 0xc02564,6, 0xc02580,7, 0xc025a0,2, 0xc025ac,2, 0xc02800,19, 0xc02880,19, 0xc02b00,1, 0xc02b20,1, 0xc02b28,4, 0xc02b40,1, 0xc02b60,1, 0xc02b68,4, 0xc02c00,7, 0xc02c20,1, 0xc02c54,18, 0xc02ca0,1, 0xc02cd4,11, 0xc02e00,8, 0xc03000,16, 0xc03100,7, 0xc03120,7, 0xc03180,3, 0xc04000,4, 0xc04014,1, 0xc04020,3, 0xc04030,3, 0xc04040,5, 0xc04064,5, 0xc0407c,2, 0xc040a0,28, 0xc04114,1, 0xc04120,3, 0xc04130,3, 0xc04140,5, 0xc04164,5, 0xc0417c,2, 0xc041a0,28, 0xc04214,1, 0xc04220,3, 0xc04230,3, 0xc04240,5, 0xc04264,5, 0xc0427c,2, 0xc042a0,28, 0xc04314,1, 0xc04320,3, 0xc04330,3, 0xc04340,5, 0xc04364,5, 0xc0437c,2, 0xc043a0,24, 0xc045c0,1, 0xc04600,1, 0xc04608,3, 0xc04618,2, 0xc04800,18, 0xc04880,10, 0xc048ac,2, 0xc048f0,3, 0xc04900,18, 0xc04980,10, 0xc049ac,2, 0xc049f0,3, 0xc04c00,18, 0xc04c50,2, 0xc04c60,6, 0xc04c80,18, 0xc04cd0,2, 0xc04ce0,6, 0xc04e00,4, 0xc04e20,4, 0xc04e80,16, 0xc04f00,5, 0xc04f20,5, 0xc05000,12, 0xc05200,1, 0xc05208,6, 0xc05228,9, 0xc05280,1, 0xc05288,6, 0xc052a8,9, 0xc05400,15, 0xc05440,15, 0xc05600,7, 0xc05620,7, 0xc05680,4, 0xc0569c,11, 0xc056d0,2, 0xc05800,27, 0xc05880,4, 0xc05898,3, 0xc059a4,1, 0xc05a00,4, 0xc05a20,4, 0xc05a40,6, 0xc05a80,4, 0xc05aa0,4, 0xc05ac0,6, 0xc06000,16, 0xc06060,7, 0xc06080,16, 0xc060e0,7, 0xc06200,19, 0xc06280,19, 0xc06400,14, 0xc0643c,9, 0xc06464,6, 0xc06480,7, 0xc064a0,2, 0xc064ac,2, 0xc06500,14, 0xc0653c,9, 0xc06564,6, 0xc06580,7, 0xc065a0,2, 0xc065ac,2, 0xc06800,19, 0xc06880,19, 0xc06b00,1, 0xc06b20,1, 0xc06b28,4, 0xc06b40,1, 0xc06b60,1, 0xc06b68,4, 0xc06c00,7, 0xc06c20,1, 0xc06c54,18, 0xc06ca0,1, 0xc06cd4,11, 0xc06e00,8, 0xc07000,16, 0xc07100,7, 0xc07120,7, 0xc07180,3, 0xc0c000,22, 0xc0c060,6, 0xc0c080,11, 0xc0c100,11, 0xc0c204,1, 0xc0c224,21, 0xc0c280,16, 0xc0d000,8, 0xc0d024,10, 0xc0d050,22, 0xc0d100,8, 0xc0d124,10, 0xc0d150,22, 0xc0d200,8, 0xc0d224,10, 0xc0d250,22, 0xc0d300,8, 0xc0d324,10, 0xc0d350,22, 0xc0d400,8, 0xc0d424,10, 0xc0d450,22, 0xc0d500,8, 0xc0d524,10, 0xc0d550,22, 0xc0d600,8, 0xc0d624,10, 0xc0d650,22, 0xc0d700,8, 0xc0d724,10, 0xc0d750,22, 0xc0d800,8, 0xc0d824,10, 0xc0d850,22, 0xc0d904,1, 0xc0d914,10, 0xc0d948,11, 0xc0d980,1, 0xc0da00,6, 0xc0da20,2, 0xc0da2c,2, 0xc0e800,1, 0xc0e808,3, 0xc0e838,1, 0xc0e844,1, 0xc0e850,2, 0xc0e860,8, 0xc0e900,13, 0xc0e940,19, 0xc0e990,4, 0xc0f000,35, 0xc0fc00,10, 0xc0fc80,3, 0xc0fcc0,1, 0xc10000,13, 0xc10040,2, 0xc10054,4, 0xc10080,27, 0xc10100,12, 0xc10140,11, 0xc10170,2, 0xc10180,28, 0xc10200,6, 0xc10240,6, 0xc1025c,3, 0xc10280,5, 0xc102a0,8, 0xc10400,14, 0xc10440,14, 0xc10480,14, 0xc104c0,14, 0xc10540,3, 0xc10600,7, 0xc10620,14, 0xc10680,5, 0xc106a0,7, 0xc10800,13, 0xc10840,2, 0xc10854,4, 0xc10880,27, 0xc10900,12, 0xc10940,11, 0xc10970,2, 0xc10980,28, 0xc10a00,6, 0xc10a40,6, 0xc10a5c,3, 0xc10a80,5, 0xc10aa0,8, 0xc10c00,14, 0xc10c40,14, 0xc10c80,14, 0xc10cc0,14, 0xc10d40,3, 0xc10e00,7, 0xc10e20,14, 0xc10e80,5, 0xc10ea0,7, 0xc11000,13, 0xc11040,2, 0xc11054,4, 0xc11080,27, 0xc11100,12, 0xc11140,11, 0xc11170,2, 0xc11180,28, 0xc11200,6, 0xc11240,6, 0xc1125c,3, 0xc11280,5, 0xc112a0,8, 0xc11400,14, 0xc11440,14, 0xc11480,14, 0xc114c0,14, 0xc11540,3, 0xc11600,7, 0xc11620,14, 0xc11680,5, 0xc116a0,7, 0xc11800,13, 0xc11840,2, 0xc11854,4, 0xc11880,27, 0xc11900,12, 0xc11940,11, 0xc11970,2, 0xc11980,28, 0xc11a00,6, 0xc11a40,6, 0xc11a5c,3, 0xc11a80,5, 0xc11aa0,8, 0xc11c00,14, 0xc11c40,14, 0xc11c80,14, 0xc11cc0,14, 0xc11d40,3, 0xc11e00,7, 0xc11e20,14, 0xc11e80,5, 0xc11ea0,7, 0xc12000,8, 0xc12040,8, 0xc12080,1, 0xc12098,6, 0xc12100,10, 0xc12140,3, 0xc12150,2, 0xc12180,2, 0xc12200,6, 0xc12220,17, 0xc12280,4, 0xc12300,8, 0xc12400,2, 0xc12480,2, 0xc13000,40, 0xc13100,64, 0xc14000,13, 0xc14040,2, 0xc14054,4, 0xc14080,27, 0xc14100,12, 0xc14140,11, 0xc14170,2, 0xc14180,28, 0xc14200,6, 0xc14240,6, 0xc1425c,3, 0xc14280,5, 0xc142a0,8, 0xc14400,14, 0xc14440,14, 0xc14480,14, 0xc144c0,14, 0xc14540,3, 0xc14600,7, 0xc14620,14, 0xc14680,5, 0xc146a0,7, 0xc14800,13, 0xc14840,2, 0xc14854,4, 0xc14880,27, 0xc14900,12, 0xc14940,11, 0xc14970,2, 0xc14980,28, 0xc14a00,6, 0xc14a40,6, 0xc14a5c,3, 0xc14a80,5, 0xc14aa0,8, 0xc14c00,14, 0xc14c40,14, 0xc14c80,14, 0xc14cc0,14, 0xc14d40,3, 0xc14e00,7, 0xc14e20,14, 0xc14e80,5, 0xc14ea0,7, 0xc15000,13, 0xc15040,2, 0xc15054,4, 0xc15080,27, 0xc15100,12, 0xc15140,11, 0xc15170,2, 0xc15180,28, 0xc15200,6, 0xc15240,6, 0xc1525c,3, 0xc15280,5, 0xc152a0,8, 0xc15400,14, 0xc15440,14, 0xc15480,14, 0xc154c0,14, 0xc15540,3, 0xc15600,7, 0xc15620,14, 0xc15680,5, 0xc156a0,7, 0xc15800,13, 0xc15840,2, 0xc15854,4, 0xc15880,27, 0xc15900,12, 0xc15940,11, 0xc15970,2, 0xc15980,28, 0xc15a00,6, 0xc15a40,6, 0xc15a5c,3, 0xc15a80,5, 0xc15aa0,8, 0xc15c00,14, 0xc15c40,14, 0xc15c80,14, 0xc15cc0,14, 0xc15d40,3, 0xc15e00,7, 0xc15e20,14, 0xc15e80,5, 0xc15ea0,7, 0xc16000,8, 0xc16040,8, 0xc16080,1, 0xc16098,6, 0xc16100,10, 0xc16140,3, 0xc16150,2, 0xc16180,2, 0xc16200,6, 0xc16220,17, 0xc16280,4, 0xc16300,8, 0xc16400,2, 0xc16480,2, 0xc17000,40, 0xc17100,64, 0xc20000,11, 0xc20040,11, 0xc20070,3, 0xc20084,5, 0xc200a4,5, 0xc20200,7, 0xc20220,6, 0xc20240,7, 0xc20260,6, 0xc20280,6, 0xc202a0,2, 0xc202ac,2, 0xc202c0,7, 0xc202e0,7, 0xc20300,2, 0xc2030c,2, 0xc20320,6, 0xc21000,19, 0xc22000,25, 0xc22070,6, 0xc2208c,1, 0xc22094,1, 0xc2209c,8, 0xc22104,23, 0xc22180,7, 0xc221a0,6, 0xc221c0,7, 0xc221e0,6, 0xc22400,61, 0xc22500,25, 0xc22568,4, 0xc22580,2, 0xc225a0,1, 0xc225c0,11, 0xc22600,9, 0xc22640,3, 0xc22650,3, 0xc22664,3, 0xc22680,22, 0xc22700,17, 0xc22800,11, 0xc23000,594, 0xc24000,25, 0xc24070,6, 0xc2408c,1, 0xc24094,1, 0xc2409c,8, 0xc24104,23, 0xc24180,7, 0xc241a0,6, 0xc241c0,7, 0xc241e0,6, 0xc24400,61, 0xc24500,25, 0xc24568,4, 0xc24580,2, 0xc245a0,1, 0xc245c0,11, 0xc24600,9, 0xc24640,3, 0xc24650,3, 0xc24664,3, 0xc24680,22, 0xc24700,17, 0xc24800,11, 0xc25000,594, 0xc2a000,25, 0xc2a070,6, 0xc2a08c,1, 0xc2a094,1, 0xc2a09c,8, 0xc2a104,23, 0xc2a180,7, 0xc2a1a0,6, 0xc2a1c0,7, 0xc2a1e0,6, 0xc2a400,61, 0xc2a500,25, 0xc2a568,4, 0xc2a580,2, 0xc2a5a0,1, 0xc2a5c0,11, 0xc2a600,9, 0xc2a640,3, 0xc2a650,3, 0xc2a664,3, 0xc2a680,22, 0xc2a700,17, 0xc2a800,11, 0xc2b000,594, 0xc2c000,25, 0xc2c070,6, 0xc2c08c,1, 0xc2c094,1, 0xc2c09c,8, 0xc2c104,23, 0xc2c180,7, 0xc2c1a0,6, 0xc2c1c0,7, 0xc2c1e0,6, 0xc2c400,61, 0xc2c500,25, 0xc2c568,4, 0xc2c580,2, 0xc2c5a0,1, 0xc2c5c0,11, 0xc2c600,9, 0xc2c640,3, 0xc2c650,3, 0xc2c664,3, 0xc2c680,22, 0xc2c700,17, 0xc2c800,11, 0xc2d000,594, 0xc3f000,7, 0xc3f048,7, 0xc3f080,8, 0xc3f100,7, 0xc3f148,7, 0xc3f180,8, 0xc3f400,7, 0xc3f448,7, 0xc3f480,8, 0xc3f500,7, 0xc3f548,7, 0xc3f580,8, 0xc40000,31, 0xc40080,31, 0xc40100,31, 0xc40180,31, 0xc40200,31, 0xc40280,31, 0xc40300,31, 0xc40380,31, 0xc40400,64, 0xc40504,5, 0xc40520,1, 0xc40600,6, 0xc40620,6, 0xc40640,6, 0xc40660,6, 0xc40680,6, 0xc406a0,6, 0xc406c0,6, 0xc406e0,6, 0xc40700,4, 0xc40720,3, 0xc40730,3, 0xc40760,3, 0xc40770,1, 0xc40780,5, 0xc40800,31, 0xc40880,31, 0xc40900,31, 0xc40980,31, 0xc40a00,31, 0xc40a80,31, 0xc40b00,31, 0xc40b80,31, 0xc40c00,64, 0xc40d04,5, 0xc40d20,1, 0xc40e00,6, 0xc40e20,6, 0xc40e40,6, 0xc40e60,6, 0xc40e80,6, 0xc40ea0,6, 0xc40ec0,6, 0xc40ee0,6, 0xc40f00,4, 0xc40f20,3, 0xc40f30,3, 0xc40f60,3, 0xc40f70,1, 0xc40f80,5, 0xc41000,11, 0xc41040,11, 0xc41080,11, 0xc410c0,11, 0xc41100,21, 0xc41160,5, 0xc41180,3, 0xc41190,3, 0xc411a0,11, 0xc411d0,3, 0xc411e0,3, 0xc41200,86, 0xc41400,5, 0xc4141c,1, 0xc41440,6, 0xc41460,1, 0xc41480,3, 0xc41490,1, 0xc41800,11, 0xc41840,11, 0xc41880,11, 0xc418c0,11, 0xc41900,21, 0xc41960,5, 0xc41980,3, 0xc41990,3, 0xc419a0,11, 0xc419d0,3, 0xc419e0,3, 0xc41a00,86, 0xc41c00,5, 0xc41c1c,1, 0xc41c40,6, 0xc41c60,1, 0xc41c80,3, 0xc41c90,1, 0xc42000,32, 0xc42084,1, 0xc42094,3, 0xc420c4,3, 0xc42100,1, 0xc4210c,3, 0xc42120,3, 0xc42140,1, 0xc42150,9, 0xc42180,2, 0xc421a4,1, 0xc421b4,8, 0xc42200,20, 0xc42260,6, 0xc42280,4, 0xc422a0,6, 0xc43000,31, 0xc43080,31, 0xc43100,31, 0xc43180,31, 0xc43200,31, 0xc43280,31, 0xc43300,31, 0xc43380,31, 0xc43400,64, 0xc43504,5, 0xc43520,1, 0xc43600,6, 0xc43620,6, 0xc43640,6, 0xc43660,6, 0xc43680,6, 0xc436a0,6, 0xc436c0,6, 0xc436e0,6, 0xc43700,4, 0xc43720,3, 0xc43730,3, 0xc43760,3, 0xc43770,1, 0xc43780,5, 0xc43800,31, 0xc43880,31, 0xc43900,31, 0xc43980,31, 0xc43a00,31, 0xc43a80,31, 0xc43b00,31, 0xc43b80,31, 0xc43c00,64, 0xc43d04,5, 0xc43d20,1, 0xc43e00,6, 0xc43e20,6, 0xc43e40,6, 0xc43e60,6, 0xc43e80,6, 0xc43ea0,6, 0xc43ec0,6, 0xc43ee0,6, 0xc43f00,4, 0xc43f20,3, 0xc43f30,3, 0xc43f60,3, 0xc43f70,1, 0xc43f80,5, 0xc44000,11, 0xc44040,11, 0xc44080,11, 0xc440c0,11, 0xc44100,21, 0xc44160,5, 0xc44180,3, 0xc44190,3, 0xc441a0,11, 0xc441d0,3, 0xc441e0,3, 0xc44200,86, 0xc44400,5, 0xc4441c,1, 0xc44440,6, 0xc44460,1, 0xc44480,3, 0xc44490,1, 0xc44800,11, 0xc44840,11, 0xc44880,11, 0xc448c0,11, 0xc44900,21, 0xc44960,5, 0xc44980,3, 0xc44990,3, 0xc449a0,11, 0xc449d0,3, 0xc449e0,3, 0xc44a00,86, 0xc44c00,5, 0xc44c1c,1, 0xc44c40,6, 0xc44c60,1, 0xc44c80,3, 0xc44c90,1, 0xc45000,32, 0xc45084,1, 0xc45094,3, 0xc450c4,3, 0xc45100,1, 0xc4510c,3, 0xc45120,3, 0xc45140,1, 0xc45150,9, 0xc45180,2, 0xc451a4,1, 0xc451b4,8, 0xc45200,20, 0xc45260,6, 0xc45280,4, 0xc452a0,6, 0xc46100,1, 0xc4610c,4, 0xc46120,16, 0xc46180,1, 0xc46200,91, 0xc46508,1, 0xc46540,1, 0xc47000,1, 0xc47014,1, 0xc4701c,2, 0xc47034,1, 0xc4703c,5, 0xc47060,6, 0xc47080,4, 0xc470a0,6, 0xc470c0,3, 0xc470d0,2, 0xc47100,11, 0xc47134,4, 0xc47150,3, 0xc47200,3, 0xc47210,1, 0xc47220,9, 0xc47260,2, 0xc47300,25, 0xc49000,19, 0xc50000,286, 0xc50800,3, 0xc50810,3, 0xc50820,3, 0xc50830,4, 0xc50844,7, 0xc51000,3, 0xc51010,86, 0xc51170,18, 0xc51200,1, 0xc51220,1, 0xc51240,1, 0xc51254,1, 0xc5125c,4, 0xc51270,1, 0xc51278,1, 0xc51400,3, 0xc51410,86, 0xc51570,20, 0xc51604,1, 0xc51640,48, 0xc51704,1, 0xc51710,5, 0xc51740,6, 0xc518e0,12, 0xc51920,4, 0xc51a00,7, 0xc51a20,37, 0xc51b00,41, 0xc51bb0,3, 0xc51c00,25, 0xc51c80,7, 0xc51ca0,6, 0xc51cc0,7, 0xc51d00,7, 0xc51d20,5, 0xc51d40,10, 0xc52000,286, 0xc52800,3, 0xc52810,3, 0xc52820,3, 0xc52830,4, 0xc52844,7, 0xc53000,3, 0xc53010,86, 0xc53170,18, 0xc53200,1, 0xc53220,1, 0xc53240,1, 0xc53254,1, 0xc5325c,4, 0xc53270,1, 0xc53278,1, 0xc53400,3, 0xc53410,86, 0xc53570,20, 0xc53604,1, 0xc53640,48, 0xc53704,1, 0xc53710,5, 0xc53740,6, 0xc538e0,12, 0xc53920,4, 0xc53a00,7, 0xc53a20,37, 0xc53b00,41, 0xc53bb0,3, 0xc53c00,25, 0xc53c80,7, 0xc53ca0,6, 0xc53cc0,7, 0xc53d00,7, 0xc53d20,5, 0xc53d40,10, 0xc54000,19, 0xc55000,11, 0xc55040,5, 0xc55058,1, 0xc55060,1, 0xc60000,3, 0xc60010,3, 0xc60020,5, 0xc60038,9, 0xc60060,8, 0xc60100,17, 0xc60200,3, 0xc60210,3, 0xc60220,5, 0xc60238,9, 0xc60260,8, 0xc60300,17, 0xc60400,3, 0xc60414,1, 0xc6041c,33, 0xc60540,33, 0xc605c8,12, 0xc60800,2, 0xc60844,1, 0xc6084c,1, 0xc60880,27, 0xc60900,4, 0xc60980,19, 0xc60a00,4, 0xc60a80,19, 0xc60b00,1, 0xc60b40,5, 0xc60b60,5, 0xc60b80,6, 0xc60bb0,17, 0xc60c00,13, 0xc60c40,5, 0xc60c80,12, 0xc61000,3, 0xc61010,3, 0xc61020,5, 0xc61038,9, 0xc61060,8, 0xc61100,17, 0xc61200,3, 0xc61210,3, 0xc61220,5, 0xc61238,9, 0xc61260,8, 0xc61300,17, 0xc61400,3, 0xc61414,1, 0xc6141c,33, 0xc61540,33, 0xc615c8,12, 0xc61800,2, 0xc61844,1, 0xc6184c,1, 0xc61880,27, 0xc61900,4, 0xc61980,19, 0xc61a00,4, 0xc61a80,19, 0xc61b00,1, 0xc61b40,5, 0xc61b60,5, 0xc61b80,6, 0xc61bb0,17, 0xc61c00,13, 0xc61c40,5, 0xc61c80,12, 0xc62000,19, 0xc62080,4, 0xc63000,19, 0xc64000,2, 0xc6400c,5, 0xc64028,3, 0xc64038,3, 0xc64050,1, 0xc64080,13, 0xc64120,4, 0xc64140,1, 0xc64400,26, 0xc64470,3, 0xc64580,10, 0xc645c0,8, 0xc645e8,2, 0xc645f4,2, 0xc64600,5, 0xc64618,1, 0xc64620,1, 0xc64628,1, 0xc64630,2, 0xc64640,2, 0xc64650,2, 0xc64690,4, 0xc64740,2, 0xc64800,2, 0xc6480c,5, 0xc64828,3, 0xc64838,3, 0xc64850,1, 0xc64880,13, 0xc64920,4, 0xc64940,1, 0xc64c00,26, 0xc64c70,3, 0xc64d80,10, 0xc64dc0,8, 0xc64de8,2, 0xc64df4,2, 0xc64e00,5, 0xc64e18,1, 0xc64e20,1, 0xc64e28,1, 0xc64e30,2, 0xc64e40,2, 0xc64e50,2, 0xc64e90,4, 0xc64f40,2, 0xc65800,11, 0xc65880,2, 0xc658b0,2, 0xc66000,35, 0xc66c00,10, 0xc66c80,3, 0xc80000,4, 0xc80014,1, 0xc80020,3, 0xc80030,3, 0xc80040,5, 0xc80064,5, 0xc8007c,2, 0xc800a0,28, 0xc80114,1, 0xc80120,3, 0xc80130,3, 0xc80140,5, 0xc80164,5, 0xc8017c,2, 0xc801a0,28, 0xc80214,1, 0xc80220,3, 0xc80230,3, 0xc80240,5, 0xc80264,5, 0xc8027c,2, 0xc802a0,28, 0xc80314,1, 0xc80320,3, 0xc80330,3, 0xc80340,5, 0xc80364,5, 0xc8037c,2, 0xc803a0,24, 0xc805c0,1, 0xc80600,1, 0xc80608,3, 0xc80618,2, 0xc80800,18, 0xc80880,10, 0xc808ac,2, 0xc808f0,3, 0xc80900,18, 0xc80980,10, 0xc809ac,2, 0xc809f0,3, 0xc80c00,18, 0xc80c50,2, 0xc80c60,6, 0xc80c80,18, 0xc80cd0,2, 0xc80ce0,6, 0xc80e00,4, 0xc80e20,4, 0xc80e80,16, 0xc80f00,5, 0xc80f20,5, 0xc81000,12, 0xc81200,1, 0xc81208,6, 0xc81228,9, 0xc81280,1, 0xc81288,6, 0xc812a8,9, 0xc81400,15, 0xc81440,15, 0xc81600,7, 0xc81620,7, 0xc81680,4, 0xc8169c,11, 0xc816d0,2, 0xc81800,27, 0xc81880,4, 0xc81898,3, 0xc819a4,1, 0xc81a00,4, 0xc81a20,4, 0xc81a40,6, 0xc81a80,4, 0xc81aa0,4, 0xc81ac0,6, 0xc82000,16, 0xc82060,7, 0xc82080,16, 0xc820e0,7, 0xc82200,19, 0xc82280,19, 0xc82400,14, 0xc8243c,9, 0xc82464,6, 0xc82480,7, 0xc824a0,2, 0xc824ac,2, 0xc82500,14, 0xc8253c,9, 0xc82564,6, 0xc82580,7, 0xc825a0,2, 0xc825ac,2, 0xc82800,19, 0xc82880,19, 0xc82b00,1, 0xc82b20,1, 0xc82b28,4, 0xc82b40,1, 0xc82b60,1, 0xc82b68,4, 0xc82c00,7, 0xc82c20,1, 0xc82c54,18, 0xc82ca0,1, 0xc82cd4,11, 0xc82e00,8, 0xc83000,16, 0xc83100,7, 0xc83120,7, 0xc83180,3, 0xc84000,4, 0xc84014,1, 0xc84020,3, 0xc84030,3, 0xc84040,5, 0xc84064,5, 0xc8407c,2, 0xc840a0,28, 0xc84114,1, 0xc84120,3, 0xc84130,3, 0xc84140,5, 0xc84164,5, 0xc8417c,2, 0xc841a0,28, 0xc84214,1, 0xc84220,3, 0xc84230,3, 0xc84240,5, 0xc84264,5, 0xc8427c,2, 0xc842a0,28, 0xc84314,1, 0xc84320,3, 0xc84330,3, 0xc84340,5, 0xc84364,5, 0xc8437c,2, 0xc843a0,24, 0xc845c0,1, 0xc84600,1, 0xc84608,3, 0xc84618,2, 0xc84800,18, 0xc84880,10, 0xc848ac,2, 0xc848f0,3, 0xc84900,18, 0xc84980,10, 0xc849ac,2, 0xc849f0,3, 0xc84c00,18, 0xc84c50,2, 0xc84c60,6, 0xc84c80,18, 0xc84cd0,2, 0xc84ce0,6, 0xc84e00,4, 0xc84e20,4, 0xc84e80,16, 0xc84f00,5, 0xc84f20,5, 0xc85000,12, 0xc85200,1, 0xc85208,6, 0xc85228,9, 0xc85280,1, 0xc85288,6, 0xc852a8,9, 0xc85400,15, 0xc85440,15, 0xc85600,7, 0xc85620,7, 0xc85680,4, 0xc8569c,11, 0xc856d0,2, 0xc85800,27, 0xc85880,4, 0xc85898,3, 0xc859a4,1, 0xc85a00,4, 0xc85a20,4, 0xc85a40,6, 0xc85a80,4, 0xc85aa0,4, 0xc85ac0,6, 0xc86000,16, 0xc86060,7, 0xc86080,16, 0xc860e0,7, 0xc86200,19, 0xc86280,19, 0xc86400,14, 0xc8643c,9, 0xc86464,6, 0xc86480,7, 0xc864a0,2, 0xc864ac,2, 0xc86500,14, 0xc8653c,9, 0xc86564,6, 0xc86580,7, 0xc865a0,2, 0xc865ac,2, 0xc86800,19, 0xc86880,19, 0xc86b00,1, 0xc86b20,1, 0xc86b28,4, 0xc86b40,1, 0xc86b60,1, 0xc86b68,4, 0xc86c00,7, 0xc86c20,1, 0xc86c54,18, 0xc86ca0,1, 0xc86cd4,11, 0xc86e00,8, 0xc87000,16, 0xc87100,7, 0xc87120,7, 0xc87180,3, 0xc8c000,22, 0xc8c060,6, 0xc8c080,11, 0xc8c100,11, 0xc8c204,1, 0xc8c224,21, 0xc8c280,16, 0xc8c800,21, 0xc8c860,5, 0xc8c880,6, 0xc8c8a0,5, 0xc8c8c0,6, 0xc8c900,21, 0xc8c960,5, 0xc8c980,6, 0xc8c9a0,5, 0xc8c9c0,6, 0xc8ca00,21, 0xc8ca60,5, 0xc8ca80,6, 0xc8caa0,5, 0xc8cac0,6, 0xc8cb00,21, 0xc8cb60,5, 0xc8cb80,6, 0xc8cba0,5, 0xc8cbc0,6, 0xc8cc00,9, 0xc8cc48,7, 0xc8cc68,2, 0xc8cc74,9, 0xc8cc9c,2, 0xc8cd00,14, 0xc8cd40,14, 0xc8cd80,28, 0xc8ce00,19, 0xc8ce50,3, 0xc8ce60,25, 0xc8cec8,1, 0xc8ced0,2, 0xc8cee0,7, 0xc8cf00,1, 0xc8cf08,2, 0xc8cffc,9, 0xc8d024,10, 0xc8d050,22, 0xc8d100,8, 0xc8d124,10, 0xc8d150,22, 0xc8d200,8, 0xc8d224,10, 0xc8d250,22, 0xc8d300,8, 0xc8d324,10, 0xc8d350,22, 0xc8d400,8, 0xc8d424,10, 0xc8d450,22, 0xc8d500,8, 0xc8d524,10, 0xc8d550,22, 0xc8d600,8, 0xc8d624,10, 0xc8d650,22, 0xc8d700,8, 0xc8d724,10, 0xc8d750,22, 0xc8d800,8, 0xc8d824,10, 0xc8d850,22, 0xc8d904,1, 0xc8d914,10, 0xc8d948,11, 0xc8d980,1, 0xc8da00,6, 0xc8da20,2, 0xc8da2c,2, 0xc8e800,1, 0xc8e808,3, 0xc8e838,1, 0xc8e844,1, 0xc8e850,2, 0xc8e860,8, 0xc8e900,13, 0xc8e940,19, 0xc8e990,4, 0xc8f000,35, 0xc8fc00,10, 0xc8fc80,3, 0xc8fcc0,1, 0xc90000,13, 0xc90040,2, 0xc90054,4, 0xc90080,27, 0xc90100,12, 0xc90140,11, 0xc90170,2, 0xc90180,28, 0xc90200,6, 0xc90240,6, 0xc9025c,3, 0xc90280,5, 0xc902a0,8, 0xc90400,14, 0xc90440,14, 0xc90480,14, 0xc904c0,14, 0xc90540,3, 0xc90600,7, 0xc90620,14, 0xc90680,5, 0xc906a0,7, 0xc90800,13, 0xc90840,2, 0xc90854,4, 0xc90880,27, 0xc90900,12, 0xc90940,11, 0xc90970,2, 0xc90980,28, 0xc90a00,6, 0xc90a40,6, 0xc90a5c,3, 0xc90a80,5, 0xc90aa0,8, 0xc90c00,14, 0xc90c40,14, 0xc90c80,14, 0xc90cc0,14, 0xc90d40,3, 0xc90e00,7, 0xc90e20,14, 0xc90e80,5, 0xc90ea0,7, 0xc91000,13, 0xc91040,2, 0xc91054,4, 0xc91080,27, 0xc91100,12, 0xc91140,11, 0xc91170,2, 0xc91180,28, 0xc91200,6, 0xc91240,6, 0xc9125c,3, 0xc91280,5, 0xc912a0,8, 0xc91400,14, 0xc91440,14, 0xc91480,14, 0xc914c0,14, 0xc91540,3, 0xc91600,7, 0xc91620,14, 0xc91680,5, 0xc916a0,7, 0xc91800,13, 0xc91840,2, 0xc91854,4, 0xc91880,27, 0xc91900,12, 0xc91940,11, 0xc91970,2, 0xc91980,28, 0xc91a00,6, 0xc91a40,6, 0xc91a5c,3, 0xc91a80,5, 0xc91aa0,8, 0xc91c00,14, 0xc91c40,14, 0xc91c80,14, 0xc91cc0,14, 0xc91d40,3, 0xc91e00,7, 0xc91e20,14, 0xc91e80,5, 0xc91ea0,7, 0xc92000,8, 0xc92040,8, 0xc92080,1, 0xc92098,6, 0xc92100,10, 0xc92140,3, 0xc92150,2, 0xc92180,2, 0xc92200,6, 0xc92220,17, 0xc92280,4, 0xc92300,8, 0xc92400,2, 0xc92480,2, 0xc93000,40, 0xc93100,64, 0xc94000,13, 0xc94040,2, 0xc94054,4, 0xc94080,27, 0xc94100,12, 0xc94140,11, 0xc94170,2, 0xc94180,28, 0xc94200,6, 0xc94240,6, 0xc9425c,3, 0xc94280,5, 0xc942a0,8, 0xc94400,14, 0xc94440,14, 0xc94480,14, 0xc944c0,14, 0xc94540,3, 0xc94600,7, 0xc94620,14, 0xc94680,5, 0xc946a0,7, 0xc94800,13, 0xc94840,2, 0xc94854,4, 0xc94880,27, 0xc94900,12, 0xc94940,11, 0xc94970,2, 0xc94980,28, 0xc94a00,6, 0xc94a40,6, 0xc94a5c,3, 0xc94a80,5, 0xc94aa0,8, 0xc94c00,14, 0xc94c40,14, 0xc94c80,14, 0xc94cc0,14, 0xc94d40,3, 0xc94e00,7, 0xc94e20,14, 0xc94e80,5, 0xc94ea0,7, 0xc95000,13, 0xc95040,2, 0xc95054,4, 0xc95080,27, 0xc95100,12, 0xc95140,11, 0xc95170,2, 0xc95180,28, 0xc95200,6, 0xc95240,6, 0xc9525c,3, 0xc95280,5, 0xc952a0,8, 0xc95400,14, 0xc95440,14, 0xc95480,14, 0xc954c0,14, 0xc95540,3, 0xc95600,7, 0xc95620,14, 0xc95680,5, 0xc956a0,7, 0xc95800,13, 0xc95840,2, 0xc95854,4, 0xc95880,27, 0xc95900,12, 0xc95940,11, 0xc95970,2, 0xc95980,28, 0xc95a00,6, 0xc95a40,6, 0xc95a5c,3, 0xc95a80,5, 0xc95aa0,8, 0xc95c00,14, 0xc95c40,14, 0xc95c80,14, 0xc95cc0,14, 0xc95d40,3, 0xc95e00,7, 0xc95e20,14, 0xc95e80,5, 0xc95ea0,7, 0xc96000,8, 0xc96040,8, 0xc96080,1, 0xc96098,6, 0xc96100,10, 0xc96140,3, 0xc96150,2, 0xc96180,2, 0xc96200,6, 0xc96220,17, 0xc96280,4, 0xc96300,8, 0xc96400,2, 0xc96480,2, 0xc97000,40, 0xc97100,64, 0xca0000,11, 0xca0040,11, 0xca0070,3, 0xca0084,5, 0xca00a4,5, 0xca0200,7, 0xca0220,6, 0xca0240,7, 0xca0260,6, 0xca0280,6, 0xca02a0,2, 0xca02ac,2, 0xca02c0,7, 0xca02e0,7, 0xca0300,2, 0xca030c,2, 0xca0320,6, 0xca1000,19, 0xca2000,25, 0xca2070,6, 0xca208c,1, 0xca2094,1, 0xca209c,8, 0xca2104,23, 0xca2180,7, 0xca21a0,6, 0xca21c0,7, 0xca21e0,6, 0xca2400,61, 0xca2500,25, 0xca2568,4, 0xca2580,2, 0xca25a0,1, 0xca25c0,11, 0xca2600,9, 0xca2640,3, 0xca2650,3, 0xca2664,3, 0xca2680,22, 0xca2700,17, 0xca2800,11, 0xca3000,594, 0xca4000,25, 0xca4070,6, 0xca408c,1, 0xca4094,1, 0xca409c,8, 0xca4104,23, 0xca4180,7, 0xca41a0,6, 0xca41c0,7, 0xca41e0,6, 0xca4400,61, 0xca4500,25, 0xca4568,4, 0xca4580,2, 0xca45a0,1, 0xca45c0,11, 0xca4600,9, 0xca4640,3, 0xca4650,3, 0xca4664,3, 0xca4680,22, 0xca4700,17, 0xca4800,11, 0xca5000,594, 0xcaa000,25, 0xcaa070,6, 0xcaa08c,1, 0xcaa094,1, 0xcaa09c,8, 0xcaa104,23, 0xcaa180,7, 0xcaa1a0,6, 0xcaa1c0,7, 0xcaa1e0,6, 0xcaa400,61, 0xcaa500,25, 0xcaa568,4, 0xcaa580,2, 0xcaa5a0,1, 0xcaa5c0,11, 0xcaa600,9, 0xcaa640,3, 0xcaa650,3, 0xcaa664,3, 0xcaa680,22, 0xcaa700,17, 0xcaa800,11, 0xcab000,594, 0xcac000,25, 0xcac070,6, 0xcac08c,1, 0xcac094,1, 0xcac09c,8, 0xcac104,23, 0xcac180,7, 0xcac1a0,6, 0xcac1c0,7, 0xcac1e0,6, 0xcac400,61, 0xcac500,25, 0xcac568,4, 0xcac580,2, 0xcac5a0,1, 0xcac5c0,11, 0xcac600,9, 0xcac640,3, 0xcac650,3, 0xcac664,3, 0xcac680,22, 0xcac700,17, 0xcac800,11, 0xcad000,594, 0xcbf000,7, 0xcbf048,7, 0xcbf080,8, 0xcbf100,7, 0xcbf148,7, 0xcbf180,8, 0xcbf400,7, 0xcbf448,7, 0xcbf480,8, 0xcbf500,7, 0xcbf548,7, 0xcbf580,8, 0xcc0000,31, 0xcc0080,31, 0xcc0100,31, 0xcc0180,31, 0xcc0200,31, 0xcc0280,31, 0xcc0300,31, 0xcc0380,31, 0xcc0400,64, 0xcc0504,5, 0xcc0520,1, 0xcc0600,6, 0xcc0620,6, 0xcc0640,6, 0xcc0660,6, 0xcc0680,6, 0xcc06a0,6, 0xcc06c0,6, 0xcc06e0,6, 0xcc0700,4, 0xcc0720,3, 0xcc0730,3, 0xcc0760,3, 0xcc0770,1, 0xcc0780,5, 0xcc0800,31, 0xcc0880,31, 0xcc0900,31, 0xcc0980,31, 0xcc0a00,31, 0xcc0a80,31, 0xcc0b00,31, 0xcc0b80,31, 0xcc0c00,64, 0xcc0d04,5, 0xcc0d20,1, 0xcc0e00,6, 0xcc0e20,6, 0xcc0e40,6, 0xcc0e60,6, 0xcc0e80,6, 0xcc0ea0,6, 0xcc0ec0,6, 0xcc0ee0,6, 0xcc0f00,4, 0xcc0f20,3, 0xcc0f30,3, 0xcc0f60,3, 0xcc0f70,1, 0xcc0f80,5, 0xcc1000,11, 0xcc1040,11, 0xcc1080,11, 0xcc10c0,11, 0xcc1100,21, 0xcc1160,5, 0xcc1180,3, 0xcc1190,3, 0xcc11a0,11, 0xcc11d0,3, 0xcc11e0,3, 0xcc1200,86, 0xcc1400,5, 0xcc141c,1, 0xcc1440,6, 0xcc1460,1, 0xcc1480,3, 0xcc1490,1, 0xcc1800,11, 0xcc1840,11, 0xcc1880,11, 0xcc18c0,11, 0xcc1900,21, 0xcc1960,5, 0xcc1980,3, 0xcc1990,3, 0xcc19a0,11, 0xcc19d0,3, 0xcc19e0,3, 0xcc1a00,86, 0xcc1c00,5, 0xcc1c1c,1, 0xcc1c40,6, 0xcc1c60,1, 0xcc1c80,3, 0xcc1c90,1, 0xcc2000,32, 0xcc2084,1, 0xcc2094,3, 0xcc20c4,3, 0xcc2100,1, 0xcc210c,3, 0xcc2120,3, 0xcc2140,1, 0xcc2150,9, 0xcc2180,2, 0xcc21a4,1, 0xcc21b4,8, 0xcc2200,20, 0xcc2260,6, 0xcc2280,4, 0xcc22a0,6, 0xcc3000,31, 0xcc3080,31, 0xcc3100,31, 0xcc3180,31, 0xcc3200,31, 0xcc3280,31, 0xcc3300,31, 0xcc3380,31, 0xcc3400,64, 0xcc3504,5, 0xcc3520,1, 0xcc3600,6, 0xcc3620,6, 0xcc3640,6, 0xcc3660,6, 0xcc3680,6, 0xcc36a0,6, 0xcc36c0,6, 0xcc36e0,6, 0xcc3700,4, 0xcc3720,3, 0xcc3730,3, 0xcc3760,3, 0xcc3770,1, 0xcc3780,5, 0xcc3800,31, 0xcc3880,31, 0xcc3900,31, 0xcc3980,31, 0xcc3a00,31, 0xcc3a80,31, 0xcc3b00,31, 0xcc3b80,31, 0xcc3c00,64, 0xcc3d04,5, 0xcc3d20,1, 0xcc3e00,6, 0xcc3e20,6, 0xcc3e40,6, 0xcc3e60,6, 0xcc3e80,6, 0xcc3ea0,6, 0xcc3ec0,6, 0xcc3ee0,6, 0xcc3f00,4, 0xcc3f20,3, 0xcc3f30,3, 0xcc3f60,3, 0xcc3f70,1, 0xcc3f80,5, 0xcc4000,11, 0xcc4040,11, 0xcc4080,11, 0xcc40c0,11, 0xcc4100,21, 0xcc4160,5, 0xcc4180,3, 0xcc4190,3, 0xcc41a0,11, 0xcc41d0,3, 0xcc41e0,3, 0xcc4200,86, 0xcc4400,5, 0xcc441c,1, 0xcc4440,6, 0xcc4460,1, 0xcc4480,3, 0xcc4490,1, 0xcc4800,11, 0xcc4840,11, 0xcc4880,11, 0xcc48c0,11, 0xcc4900,21, 0xcc4960,5, 0xcc4980,3, 0xcc4990,3, 0xcc49a0,11, 0xcc49d0,3, 0xcc49e0,3, 0xcc4a00,86, 0xcc4c00,5, 0xcc4c1c,1, 0xcc4c40,6, 0xcc4c60,1, 0xcc4c80,3, 0xcc4c90,1, 0xcc5000,32, 0xcc5084,1, 0xcc5094,3, 0xcc50c4,3, 0xcc5100,1, 0xcc510c,3, 0xcc5120,3, 0xcc5140,1, 0xcc5150,9, 0xcc5180,2, 0xcc51a4,1, 0xcc51b4,8, 0xcc5200,20, 0xcc5260,6, 0xcc5280,4, 0xcc52a0,6, 0xcc6100,1, 0xcc610c,4, 0xcc6120,16, 0xcc6180,1, 0xcc6200,91, 0xcc6508,1, 0xcc6540,1, 0xcc7000,1, 0xcc7014,1, 0xcc701c,2, 0xcc7034,1, 0xcc703c,5, 0xcc7060,6, 0xcc7080,4, 0xcc70a0,6, 0xcc70c0,3, 0xcc70d0,2, 0xcc7100,11, 0xcc7134,4, 0xcc7150,3, 0xcc7200,3, 0xcc7210,1, 0xcc7220,9, 0xcc7260,2, 0xcc7300,25, 0xcc9000,19, 0xcd0000,286, 0xcd0800,3, 0xcd0810,3, 0xcd0820,3, 0xcd0830,4, 0xcd0844,7, 0xcd1000,3, 0xcd1010,86, 0xcd1170,18, 0xcd1200,1, 0xcd1220,1, 0xcd1240,1, 0xcd1254,1, 0xcd125c,4, 0xcd1270,1, 0xcd1278,1, 0xcd1400,3, 0xcd1410,86, 0xcd1570,20, 0xcd1604,1, 0xcd1640,48, 0xcd1704,1, 0xcd1710,5, 0xcd1740,6, 0xcd18e0,12, 0xcd1920,4, 0xcd1a00,7, 0xcd1a20,37, 0xcd1b00,41, 0xcd1bb0,3, 0xcd1c00,25, 0xcd1c80,7, 0xcd1ca0,6, 0xcd1cc0,7, 0xcd1d00,7, 0xcd1d20,5, 0xcd1d40,10, 0xcd2000,286, 0xcd2800,3, 0xcd2810,3, 0xcd2820,3, 0xcd2830,4, 0xcd2844,7, 0xcd3000,3, 0xcd3010,86, 0xcd3170,18, 0xcd3200,1, 0xcd3220,1, 0xcd3240,1, 0xcd3254,1, 0xcd325c,4, 0xcd3270,1, 0xcd3278,1, 0xcd3400,3, 0xcd3410,86, 0xcd3570,20, 0xcd3604,1, 0xcd3640,48, 0xcd3704,1, 0xcd3710,5, 0xcd3740,6, 0xcd38e0,12, 0xcd3920,4, 0xcd3a00,7, 0xcd3a20,37, 0xcd3b00,41, 0xcd3bb0,3, 0xcd3c00,25, 0xcd3c80,7, 0xcd3ca0,6, 0xcd3cc0,7, 0xcd3d00,7, 0xcd3d20,5, 0xcd3d40,10, 0xcd4000,19, 0xcd5000,11, 0xcd5040,5, 0xcd5058,1, 0xcd5060,1, 0xce0000,3, 0xce0010,3, 0xce0020,5, 0xce0038,9, 0xce0060,8, 0xce0100,17, 0xce0200,3, 0xce0210,3, 0xce0220,5, 0xce0238,9, 0xce0260,8, 0xce0300,17, 0xce0400,3, 0xce0414,1, 0xce041c,33, 0xce0540,33, 0xce05c8,12, 0xce0800,2, 0xce0844,1, 0xce084c,1, 0xce0880,27, 0xce0900,4, 0xce0980,19, 0xce0a00,4, 0xce0a80,19, 0xce0b00,1, 0xce0b40,5, 0xce0b60,5, 0xce0b80,6, 0xce0bb0,17, 0xce0c00,13, 0xce0c40,5, 0xce0c80,12, 0xce1000,3, 0xce1010,3, 0xce1020,5, 0xce1038,9, 0xce1060,8, 0xce1100,17, 0xce1200,3, 0xce1210,3, 0xce1220,5, 0xce1238,9, 0xce1260,8, 0xce1300,17, 0xce1400,3, 0xce1414,1, 0xce141c,33, 0xce1540,33, 0xce15c8,12, 0xce1800,2, 0xce1844,1, 0xce184c,1, 0xce1880,27, 0xce1900,4, 0xce1980,19, 0xce1a00,4, 0xce1a80,19, 0xce1b00,1, 0xce1b40,5, 0xce1b60,5, 0xce1b80,6, 0xce1bb0,17, 0xce1c00,13, 0xce1c40,5, 0xce1c80,12, 0xce2000,19, 0xce2080,4, 0xce3000,19, 0xce4000,2, 0xce400c,5, 0xce4028,3, 0xce4038,3, 0xce4050,1, 0xce4080,13, 0xce4120,4, 0xce4140,1, 0xce4400,26, 0xce4470,3, 0xce4580,10, 0xce45c0,8, 0xce45e8,2, 0xce45f4,2, 0xce4600,5, 0xce4618,1, 0xce4620,1, 0xce4628,1, 0xce4630,2, 0xce4640,2, 0xce4650,2, 0xce4690,4, 0xce4740,2, 0xce4800,2, 0xce480c,5, 0xce4828,3, 0xce4838,3, 0xce4850,1, 0xce4880,13, 0xce4920,4, 0xce4940,1, 0xce4c00,26, 0xce4c70,3, 0xce4d80,10, 0xce4dc0,8, 0xce4de8,2, 0xce4df4,2, 0xce4e00,5, 0xce4e18,1, 0xce4e20,1, 0xce4e28,1, 0xce4e30,2, 0xce4e40,2, 0xce4e50,2, 0xce4e90,4, 0xce4f40,2, 0xce5800,11, 0xce5880,2, 0xce58b0,2, 0xce6000,35, 0xce6c00,10, 0xce6c80,3, mstflint-4.26.0/mstdump/mstdump_dbs/AbirGearBox.csv0000644000175000017500000023702514522641732022570 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x001800,7, 0x001820,3, 0x001830,11, 0x001860,14, 0x001900,9, 0x001a00,6, 0x001a20,10, 0x001c00,27, 0x001c80,9, 0x001cc0,6, 0x001ce0,4, 0x001d00,5, 0x001d18,5, 0x001d30,9, 0x001d58,5, 0x001d70,7, 0x001e80,28, 0x001f00,6, 0x040000,271, 0x040480,3, 0x040494,22, 0x0404f4,35, 0x040584,44, 0x040638,27, 0x0406a8,5, 0x0406c0,48, 0x040784,44, 0x04083c,4, 0x040858,69, 0x040978,12, 0x0409b8,8, 0x040a38,1, 0x040a80,3, 0x040a94,22, 0x040af4,35, 0x040b84,44, 0x040c38,27, 0x040ca8,5, 0x040cc0,48, 0x040d84,44, 0x040e3c,4, 0x040e58,69, 0x040f78,12, 0x040fb8,8, 0x041038,1, 0x041080,3, 0x041094,22, 0x0410f4,35, 0x041184,44, 0x041238,27, 0x0412a8,5, 0x0412c0,48, 0x041384,44, 0x04143c,4, 0x041458,69, 0x041578,12, 0x0415b8,8, 0x041638,1, 0x041680,3, 0x041694,22, 0x0416f4,35, 0x041784,44, 0x041838,27, 0x0418a8,5, 0x0418c0,48, 0x041984,44, 0x041a3c,4, 0x041a58,69, 0x041b78,12, 0x041bb8,8, 0x041c38,1, 0x041c80,3, 0x041c94,22, 0x041cf4,35, 0x041d84,44, 0x041e38,27, 0x041ea8,5, 0x041ec0,48, 0x041f84,44, 0x04203c,4, 0x042058,69, 0x042178,12, 0x0421b8,8, 0x042238,1, 0x042280,3, 0x042294,22, 0x0422f4,35, 0x042384,44, 0x042438,27, 0x0424a8,5, 0x0424c0,48, 0x042584,44, 0x04263c,4, 0x042658,69, 0x042778,12, 0x0427b8,8, 0x042838,1, 0x042880,3, 0x042894,22, 0x0428f4,35, 0x042984,44, 0x042a38,27, 0x042aa8,5, 0x042ac0,48, 0x042b84,44, 0x042c3c,4, 0x042c58,69, 0x042d78,12, 0x042db8,8, 0x042e38,1, 0x042e80,3, 0x042e94,22, 0x042ef4,35, 0x042f84,44, 0x043038,27, 0x0430a8,5, 0x0430c0,48, 0x043184,44, 0x04323c,4, 0x043258,69, 0x043378,12, 0x0433b8,8, 0x043438,1, 0x043480,3, 0x043494,22, 0x0434f4,35, 0x043584,44, 0x043638,27, 0x0436a8,5, 0x0436c0,48, 0x043784,44, 0x04383c,4, 0x043858,69, 0x043978,12, 0x0439b8,8, 0x043a38,1, 0x043a80,3, 0x043a94,22, 0x043af4,35, 0x043b84,44, 0x043c38,27, 0x043ca8,5, 0x043cc0,48, 0x043d84,44, 0x043e3c,4, 0x043e58,69, 0x043f78,12, 0x043fb8,8, 0x044038,1, 0x044080,3, 0x044094,22, 0x0440f4,35, 0x044184,44, 0x044238,27, 0x0442a8,5, 0x0442c0,48, 0x044384,44, 0x04443c,4, 0x044458,69, 0x044578,12, 0x0445b8,8, 0x044638,1, 0x044680,3, 0x044694,22, 0x0446f4,35, 0x044784,44, 0x044838,27, 0x0448a8,5, 0x0448c0,48, 0x044984,44, 0x044a3c,4, 0x044a58,69, 0x044b78,12, 0x044bb8,8, 0x044c38,1, 0x044c80,3, 0x044c94,22, 0x044cf4,35, 0x044d84,44, 0x044e38,27, 0x044ea8,5, 0x044ec0,48, 0x044f84,44, 0x04503c,4, 0x045058,69, 0x045178,12, 0x0451b8,8, 0x045238,1, 0x045280,3, 0x045294,22, 0x0452f4,35, 0x045384,44, 0x045438,27, 0x0454a8,5, 0x0454c0,48, 0x045584,44, 0x04563c,4, 0x045658,69, 0x045778,12, 0x0457b8,8, 0x045838,1, 0x045880,3, 0x045894,22, 0x0458f4,35, 0x045984,44, 0x045a38,27, 0x045aa8,5, 0x045ac0,48, 0x045b84,44, 0x045c3c,4, 0x045c58,69, 0x045d78,12, 0x045db8,8, 0x045e38,1, 0x045e80,3, 0x045e94,22, 0x045ef4,35, 0x045f84,44, 0x046038,27, 0x0460a8,5, 0x0460c0,48, 0x046184,44, 0x04623c,4, 0x046258,69, 0x046378,12, 0x0463b8,8, 0x046438,1, 0x046480,3, 0x046494,22, 0x0464f4,35, 0x046584,44, 0x046638,27, 0x0466a8,5, 0x0466c0,48, 0x046784,44, 0x04683c,4, 0x046858,69, 0x046978,12, 0x0469b8,8, 0x046a38,1, 0x046a80,3, 0x046a94,22, 0x046af4,35, 0x046b84,44, 0x046c38,27, 0x046ca8,5, 0x046cc0,48, 0x046d84,44, 0x046e3c,4, 0x046e58,69, 0x046f78,12, 0x046fb8,8, 0x047038,1, 0x047080,3, 0x047094,22, 0x0470f4,35, 0x047184,44, 0x047238,27, 0x0472a8,5, 0x0472c0,48, 0x047384,44, 0x04743c,4, 0x047458,69, 0x047578,12, 0x0475b8,8, 0x047638,1, 0x047680,3, 0x047694,22, 0x0476f4,35, 0x047784,44, 0x047838,27, 0x0478a8,5, 0x0478c0,48, 0x047984,44, 0x047a3c,4, 0x047a58,69, 0x047b78,12, 0x047bb8,8, 0x047c38,1, 0x047c80,3, 0x047c94,22, 0x047cf4,35, 0x047d84,44, 0x047e38,27, 0x047ea8,5, 0x047ec0,48, 0x047f84,44, 0x04803c,4, 0x048058,69, 0x048178,12, 0x0481b8,8, 0x048238,1, 0x048280,3, 0x048294,22, 0x0482f4,35, 0x048384,44, 0x048438,27, 0x0484a8,5, 0x0484c0,48, 0x048584,44, 0x04863c,4, 0x048658,69, 0x048778,12, 0x0487b8,8, 0x048838,1, 0x048880,3, 0x048894,22, 0x0488f4,35, 0x048984,44, 0x048a38,27, 0x048aa8,5, 0x048ac0,48, 0x048b84,44, 0x048c3c,4, 0x048c58,69, 0x048d78,12, 0x048db8,8, 0x048e38,1, 0x048e80,3, 0x048e94,22, 0x048ef4,35, 0x048f84,44, 0x049038,27, 0x0490a8,5, 0x0490c0,48, 0x049184,44, 0x04923c,4, 0x049258,69, 0x049378,12, 0x0493b8,8, 0x049438,1, 0x049480,3, 0x049494,22, 0x0494f4,35, 0x049584,44, 0x049638,27, 0x0496a8,5, 0x0496c0,48, 0x049784,44, 0x04983c,4, 0x049858,69, 0x049978,12, 0x0499b8,8, 0x049a38,1, 0x049a80,3, 0x049a94,22, 0x049af4,35, 0x049b84,44, 0x049c38,27, 0x049ca8,5, 0x049cc0,48, 0x049d84,44, 0x049e3c,4, 0x049e58,69, 0x049f78,12, 0x049fb8,8, 0x04a038,1, 0x04a080,3, 0x04a094,22, 0x04a0f4,35, 0x04a184,44, 0x04a238,27, 0x04a2a8,5, 0x04a2c0,48, 0x04a384,44, 0x04a43c,4, 0x04a458,69, 0x04a578,12, 0x04a5b8,8, 0x04a638,1, 0x04a680,3, 0x04a694,22, 0x04a6f4,35, 0x04a784,44, 0x04a838,27, 0x04a8a8,5, 0x04a8c0,48, 0x04a984,44, 0x04aa3c,4, 0x04aa58,69, 0x04ab78,12, 0x04abb8,8, 0x04ac38,1, 0x04ac80,3, 0x04ac94,22, 0x04acf4,35, 0x04ad84,44, 0x04ae38,27, 0x04aea8,5, 0x04aec0,48, 0x04af84,44, 0x04b03c,4, 0x04b058,69, 0x04b178,12, 0x04b1b8,8, 0x04b238,1, 0x04b280,3, 0x04b294,22, 0x04b2f4,35, 0x04b384,44, 0x04b438,27, 0x04b4a8,5, 0x04b4c0,48, 0x04b584,44, 0x04b63c,4, 0x04b658,69, 0x04b778,12, 0x04b7b8,8, 0x04b838,1, 0x04b880,3, 0x04b894,22, 0x04b8f4,35, 0x04b984,44, 0x04ba38,27, 0x04baa8,5, 0x04bac0,48, 0x04bb84,44, 0x04bc3c,4, 0x04bc58,69, 0x04bd78,12, 0x04bdb8,8, 0x04be38,1, 0x04be80,3, 0x04be94,22, 0x04bef4,35, 0x04bf84,44, 0x04c038,27, 0x04c0a8,5, 0x04c0c0,48, 0x04c184,44, 0x04c23c,4, 0x04c258,69, 0x04c378,12, 0x04c3b8,8, 0x04c438,1, 0x04c480,3, 0x04c494,22, 0x04c4f4,35, 0x04c584,44, 0x04c638,27, 0x04c6a8,5, 0x04c6c0,48, 0x04c784,44, 0x04c83c,4, 0x04c858,69, 0x04c978,12, 0x04c9b8,8, 0x04ca38,2, 0x04ca7c,72, 0x04cd8c,2, 0x04cdd4,42, 0x04ce84,31, 0x04d038,4, 0x04d238,8, 0x04d25c,8, 0x04d280,8, 0x04d2a4,8, 0x04d2c8,8, 0x04d2ec,8, 0x04d310,8, 0x04d334,8, 0x04d358,8, 0x04d37c,8, 0x04d3a0,8, 0x04d3c4,8, 0x04d3e8,8, 0x04d40c,8, 0x04d430,8, 0x04d454,8, 0x04d478,8, 0x04d49c,75, 0x04d5cc,19, 0x04d61c,3, 0x04d62c,17, 0x04d690,12, 0x04d6c8,6, 0x04d6e4,5, 0x04d70c,90, 0x04d8b0,13, 0x04d8e8,32, 0x04d96c,10, 0x04d99c,77, 0x04dca4,64, 0x04ddc4,49, 0x04dec4,18, 0x04df14,11, 0x04df44,3, 0x04df68,45, 0x04e06c,9, 0x04e09c,4, 0x04e0b4,2, 0x04e0ec,14, 0x04e128,12, 0x04e26c,3, 0x04e27c,4, 0x04e294,3, 0x04e2a8,4, 0x04e2bc,7, 0x04e30c,8, 0x04e360,1, 0x04e36c,4, 0x04e384,3, 0x04e398,4, 0x04e3ac,7, 0x04e3fc,8, 0x04e450,1, 0x04e45c,4, 0x04e474,3, 0x04e488,4, 0x04e49c,7, 0x04e4ec,8, 0x04e540,1, 0x04e54c,4, 0x04e564,3, 0x04e578,4, 0x04e58c,7, 0x04e5dc,8, 0x04e630,1, 0x04e63c,4, 0x04e654,3, 0x04e668,4, 0x04e67c,7, 0x04e6cc,8, 0x04e720,1, 0x04e72c,4, 0x04e744,3, 0x04e758,4, 0x04e76c,7, 0x04e7bc,8, 0x04e810,1, 0x04e81c,4, 0x04e834,3, 0x04e848,4, 0x04e85c,7, 0x04e8ac,8, 0x04e900,1, 0x04e90c,4, 0x04e924,3, 0x04e938,4, 0x04e94c,7, 0x04e99c,8, 0x04e9f0,1, 0x04e9fc,4, 0x04ea14,3, 0x04ea28,4, 0x04ea3c,7, 0x04ea8c,8, 0x04eae0,1, 0x04eaec,4, 0x04eb04,3, 0x04eb18,4, 0x04eb2c,7, 0x04eb7c,8, 0x04ebd0,1, 0x04ebdc,4, 0x04ebf4,3, 0x04ec08,4, 0x04ec1c,7, 0x04ec6c,8, 0x04ecc0,1, 0x04eccc,4, 0x04ece4,3, 0x04ecf8,4, 0x04ed0c,7, 0x04ed5c,8, 0x04edb0,1, 0x04edbc,4, 0x04edd4,3, 0x04ede8,4, 0x04edfc,7, 0x04ee4c,8, 0x04eea0,1, 0x04eeac,4, 0x04eec4,3, 0x04eed8,4, 0x04eeec,7, 0x04ef3c,8, 0x04ef90,1, 0x04ef9c,4, 0x04efb4,3, 0x04efc8,4, 0x04efdc,7, 0x04f02c,8, 0x04f080,1, 0x04f08c,4, 0x04f0a4,3, 0x04f0b8,4, 0x04f0cc,7, 0x04f11c,8, 0x04f170,1, 0x04f17c,4, 0x04f194,3, 0x04f1a8,4, 0x04f1bc,7, 0x04f20c,8, 0x04f260,1, 0x04f26c,4, 0x04f284,3, 0x04f298,4, 0x04f2ac,7, 0x04f2fc,8, 0x04f350,1, 0x04f35c,4, 0x04f374,3, 0x04f388,4, 0x04f39c,7, 0x04f3ec,8, 0x04f440,1, 0x04f44c,4, 0x04f464,3, 0x04f478,4, 0x04f48c,7, 0x04f4dc,8, 0x04f530,1, 0x04f53c,4, 0x04f554,3, 0x04f568,4, 0x04f57c,7, 0x04f5cc,8, 0x04f620,1, 0x04f62c,4, 0x04f644,3, 0x04f658,4, 0x04f66c,7, 0x04f6bc,8, 0x04f710,1, 0x04f71c,4, 0x04f734,3, 0x04f748,4, 0x04f75c,7, 0x04f7ac,8, 0x04f800,1, 0x04f80c,4, 0x04f824,3, 0x04f838,4, 0x04f84c,7, 0x04f89c,8, 0x04f8f0,1, 0x04f8fc,4, 0x04f914,3, 0x04f928,4, 0x04f93c,7, 0x04f98c,8, 0x04f9e0,1, 0x04f9ec,4, 0x04fa04,3, 0x04fa18,4, 0x04fa2c,7, 0x04fa7c,8, 0x04fad0,1, 0x04fadc,4, 0x04faf4,3, 0x04fb08,4, 0x04fb1c,7, 0x04fb6c,8, 0x04fbc0,1, 0x04fbcc,4, 0x04fbe4,3, 0x04fbf8,4, 0x04fc0c,7, 0x04fc5c,8, 0x04fcb0,1, 0x04fcbc,4, 0x04fcd4,3, 0x04fce8,4, 0x04fcfc,7, 0x04fd4c,8, 0x04fda0,1, 0x04fdac,4, 0x04fdc4,3, 0x04fdd8,4, 0x04fdec,7, 0x04fe3c,8, 0x04fe90,1, 0x04fe9c,4, 0x04feb4,3, 0x04fec8,4, 0x04fedc,7, 0x04ff2c,8, 0x04ff80,1, 0x04ff8c,4, 0x04ffa4,3, 0x04ffb8,4, 0x04ffcc,7, 0x05001c,8, 0x050070,1, 0x05007c,4, 0x050094,3, 0x0500a8,4, 0x0500bc,7, 0x05010c,8, 0x050160,1, 0x05026c,64, 0x0503cc,4, 0x05061c,27, 0x050870,11, 0x0508a0,14, 0x0508e0,2, 0x0508ec,1, 0x0508f4,1, 0x0508fc,1, 0x050924,2, 0x050930,89, 0x050a9c,89, 0x050c08,89, 0x050d74,89, 0x050ee0,89, 0x05104c,89, 0x0511b8,89, 0x051324,89, 0x051490,89, 0x0515fc,89, 0x051768,89, 0x0518d4,89, 0x051a40,89, 0x051bac,89, 0x051d18,89, 0x051e84,89, 0x051ff0,89, 0x05215c,89, 0x0522c8,89, 0x052434,89, 0x0525a0,89, 0x05270c,89, 0x052878,89, 0x0529e4,89, 0x052b50,89, 0x052cbc,89, 0x052e28,89, 0x052f94,89, 0x053100,89, 0x05326c,89, 0x0533d8,89, 0x053544,89, 0x0536b0,89, 0x054220,5, 0x0542f4,2, 0x054300,1, 0x054314,13, 0x0543e0,12, 0x054560,390, 0x054c60,390, 0x055360,390, 0x055a60,390, 0x056160,11, 0x056984,164, 0x056cd4,2, 0x057760,1, 0x0577b0,1, 0x057860,8, 0x057a00,99, 0x057ba0,1, 0x057bb0,147, 0x057e00,1, 0x057ec8,1, 0x057ef8,9, 0x057f20,17, 0x057f78,17, 0x057fc0,28, 0x058050,5, 0x0580b0,5, 0x058ba0,7, 0x058bc4,59, 0x058cb8,5, 0x058d60,73, 0x058eb4,3, 0x058ee0,40, 0x058fa0,4, 0x058fbc,2, 0x058fc8,3, 0x058fd8,3, 0x058fe8,3, 0x058ff8,26, 0x059110,1, 0x05b1b0,2690, 0x0a0000,4, 0x0a0018,17, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,14, 0x0a0140,3, 0x0a0150,9, 0x0a0180,15, 0x0a01c0,7, 0x0a01e0,1, 0x0a01f0,8, 0x0a0218,17, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,14, 0x0a0340,3, 0x0a0350,9, 0x0a0380,15, 0x0a03c0,7, 0x0a03e0,1, 0x0a03f0,8, 0x0a0418,17, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,14, 0x0a0540,3, 0x0a0550,9, 0x0a0580,15, 0x0a05c0,7, 0x0a05e0,1, 0x0a05f0,8, 0x0a0618,17, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,14, 0x0a0740,3, 0x0a0750,9, 0x0a0780,15, 0x0a07c0,7, 0x0a07e0,1, 0x0a07f0,8, 0x0a0818,17, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,14, 0x0a0940,3, 0x0a0950,9, 0x0a0980,15, 0x0a09c0,7, 0x0a09e0,1, 0x0a09f0,4, 0x0a1844,2, 0x0a1850,3, 0x0a1860,3, 0x0a1870,7, 0x0a1890,6, 0x0a18c0,1, 0x0a18e0,7, 0x0a1900,11, 0x0a1930,3, 0x0a1980,4, 0x0a19c0,14, 0x0a1c00,5, 0x0a1c18,95, 0x0a1da0,44, 0x0a2000,16, 0x0a2100,36, 0x0a2200,44, 0x0a2400,100, 0x0a2600,45, 0x0a2700,20, 0x0a2780,2, 0x0a278c,72, 0x0a2c00,2, 0x0a2c40,38, 0x0a2ce0,7, 0x0a2d00,7, 0x0a2d20,7, 0x0a2d40,7, 0x0a2d60,7, 0x0a2d80,7, 0x0a2da0,7, 0x0a2dc0,7, 0x0a2e00,9, 0x0a2e3c,2, 0x0a2e50,6, 0x0a2e80,11, 0x0a3000,2, 0x0a31f8,130, 0x0a3c00,1, 0x0a3c20,10, 0x0a3c60,14, 0x0a3d00,34, 0x0a3d94,6, 0x0a3e00,88, 0x0a4a00,4, 0x0a4b00,33, 0x0a4b90,3, 0x0a4c00,12, 0x0a4cc0,4, 0x0a4d00,15, 0x0a4e00,25, 0x0a4e80,2, 0x0a4ea0,13, 0x0a5000,2, 0x0a5200,132, 0x0a5420,10, 0x0a544c,3, 0x0a545c,10, 0x0a5800,3, 0x0a5810,3, 0x0a5820,3, 0x0a5830,3, 0x0a5840,3, 0x0a5850,3, 0x0a5860,3, 0x0a5870,3, 0x0a5880,3, 0x0a5890,3, 0x0a58a0,3, 0x0a58b0,3, 0x0a58c0,3, 0x0a58d0,3, 0x0a58e0,3, 0x0a58f0,3, 0x0a5900,3, 0x0a5910,3, 0x0a5920,3, 0x0a5930,3, 0x0a5940,3, 0x0a5950,3, 0x0a5960,3, 0x0a5970,3, 0x0a5980,3, 0x0a5990,3, 0x0a59a0,3, 0x0a59b0,3, 0x0a59c0,3, 0x0a59d0,3, 0x0a59e0,3, 0x0a59f0,3, 0x0a5a00,3, 0x0a5a10,3, 0x0a5a20,3, 0x0a5a30,3, 0x0a5a40,3, 0x0a5a50,3, 0x0a5a60,3, 0x0a5a70,3, 0x0a5a80,3, 0x0a5a90,3, 0x0a5aa0,3, 0x0a5ab0,3, 0x0a5ac0,3, 0x0a5ad0,3, 0x0a5ae0,3, 0x0a5af0,3, 0x0a5b00,3, 0x0a5b10,3, 0x0a5b20,3, 0x0a5b30,3, 0x0a5b40,3, 0x0a5b50,3, 0x0a5b60,3, 0x0a5b70,3, 0x0a5b80,3, 0x0a5b90,3, 0x0a5ba0,3, 0x0a5bb0,3, 0x0a5bc0,3, 0x0a5bd0,3, 0x0a5be0,3, 0x0a5bf0,3, 0x0a5c00,1, 0x0a5c08,16, 0x0a5c4c,2, 0x0a5c58,2, 0x0a6000,11, 0x0a6030,1, 0x0a6080,2, 0x0a60c4,2, 0x0a60d0,1, 0x0a60d8,1, 0x0a60e0,1, 0x0a60f4,3, 0x0a7000,128, 0x0a7208,256, 0x0a7610,145, 0x0a8000,24, 0x0a8078,1, 0x0a8080,1, 0x0f0000,1, 0x0f000c,4, 0x0f0020,7, 0x0f0040,2, 0x0f0400,2, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,7, 0x0f04a0,7, 0x0f0500,13, 0x0f0540,10, 0x0f0580,10, 0x0f05c0,3, 0x0f0600,20, 0x0f0680,2, 0x0f0800,5, 0x0f0a00,27, 0x0f0a80,3, 0x0f0c00,2, 0x0f0d90,206, 0x0f1100,3, 0x0f1110,12, 0x0f1400,1, 0x0f1480,18, 0x0f1500,1, 0x0f1600,2, 0x0f1610,3, 0x0f1620,3, 0x0f1630,3, 0x0f1640,3, 0x0f1650,3, 0x0f1660,3, 0x0f1670,3, 0x0f1680,3, 0x0f1690,3, 0x0f16a0,3, 0x0f16b0,3, 0x0f16c0,3, 0x0f16d0,3, 0x0f16e0,3, 0x0f16f0,3, 0x0f1700,3, 0x0f2000,84, 0x0f2400,2, 0x0f2410,3, 0x0f2420,3, 0x0f2430,3, 0x0f2440,3, 0x0f2450,3, 0x0f2460,3, 0x0f2470,3, 0x0f2480,3, 0x0f2490,3, 0x0f24a0,3, 0x0f24b0,3, 0x0f24c0,3, 0x0f24d0,3, 0x0f24e0,3, 0x0f24f0,3, 0x0f2500,3, 0x0f2600,7, 0x0f2620,3, 0x0f2630,1, 0x0f2800,8, 0x0f2900,2, 0x0f2910,3, 0x0f2920,3, 0x0f2930,3, 0x0f2940,3, 0x0f2950,3, 0x0f2960,3, 0x0f2970,3, 0x0f2980,3, 0x0f2a00,3, 0x0f3000,15, 0x0f3040,2, 0x0f3080,9, 0x0f30c0,1, 0x0f3100,2, 0x0f3110,3, 0x0f3120,3, 0x0f3130,3, 0x0f3140,3, 0x0f3150,3, 0x0f3160,3, 0x0f3170,3, 0x0f3180,3, 0x0f3200,2, 0x0f3220,2, 0x0f3234,9, 0x0f325c,1, 0x0f3300,2, 0x0f337c,35, 0x0f340c,1, 0x0f3480,18, 0x0f3600,5, 0x0f3640,9, 0x0f3680,9, 0x0f36c0,27, 0x0f3730,2, 0x0f3740,9, 0x0f3780,3, 0x0f37a0,8, 0x0f3800,6, 0x0f3820,7, 0x0f3840,6, 0x0f3860,7, 0x0f3880,3, 0x0f3890,1, 0x0f3900,2, 0x0f4000,2, 0x0f4080,35, 0x0f4110,10, 0x0f413c,3, 0x0f4200,2, 0x0f4280,38, 0x0f4400,20, 0x0f4480,9, 0x0f4800,2, 0x0f4880,35, 0x0f4910,10, 0x0f493c,3, 0x0f4a00,2, 0x0f4a80,38, 0x0f4c00,20, 0x0f4c80,9, 0x0f5000,2, 0x0f5080,35, 0x0f5110,10, 0x0f513c,3, 0x0f5200,2, 0x0f5280,38, 0x0f5400,20, 0x0f5480,9, 0x0f5800,20, 0x0f5880,2, 0x0f588c,1, 0x0f58c0,12, 0x0f5900,3, 0x0f5a00,20, 0x0f5a80,2, 0x0f5a8c,1, 0x0f5ac0,12, 0x0f5b00,3, 0x0f5c00,20, 0x0f5c80,2, 0x0f5c8c,1, 0x0f5cc0,12, 0x0f5d00,3, 0x0f5e00,7, 0x0f5e80,28, 0x0f5f00,12, 0x0f5f40,11, 0x0f6000,2, 0x0f600c,33, 0x0f6100,3, 0x0f6140,2, 0x0f6150,13, 0x0f6400,2, 0x0f6410,3, 0x0f6420,3, 0x0f6430,3, 0x0f6440,3, 0x0f6450,3, 0x0f6460,3, 0x0f6470,3, 0x0f6480,3, 0x0f6490,3, 0x0f64a0,3, 0x0f64b0,3, 0x0f64c0,3, 0x0f64d0,3, 0x0f64e0,3, 0x0f64f0,3, 0x0f6500,3, 0x0f6600,2, 0x0f6614,13, 0x0f6650,3, 0x0f6680,9, 0x0f66c0,9, 0x0f6700,6, 0x0f6720,16, 0x0f7000,2, 0x0f7010,3, 0x0f7020,3, 0x0f7030,3, 0x0f7040,3, 0x0f7050,3, 0x0f7060,3, 0x0f7070,3, 0x0f7080,3, 0x0f7090,3, 0x0f70a0,3, 0x0f70b0,3, 0x0f70c0,3, 0x0f70d0,3, 0x0f70e0,3, 0x0f70f0,3, 0x0f7100,3, 0x0f7200,10, 0x0f7400,2, 0x0f7414,3, 0x0f7800,256, 0x0f8000,1, 0x100000,22, 0x100060,6, 0x100080,6, 0x1000a0,6, 0x1000c0,6, 0x100400,6, 0x100420,2, 0x100434,5, 0x100600,130, 0x100828,88, 0x100c00,1, 0x100c80,1, 0x100c90,2, 0x100d00,20, 0x100d80,1, 0x100da0,5, 0x180000,36, 0x180800,10, 0x180880,1, 0x180a00,1, 0x181000,36, 0x181800,10, 0x181880,1, 0x181a00,1, 0x182000,36, 0x182800,10, 0x182880,1, 0x182a00,1, 0x183000,36, 0x183800,10, 0x183880,1, 0x183a00,1, 0x184000,36, 0x184800,10, 0x184880,1, 0x184a00,1, 0x185000,36, 0x185800,10, 0x185880,1, 0x185a00,1, 0x186000,36, 0x186800,10, 0x186880,1, 0x186a00,1, 0x187000,36, 0x187800,10, 0x187880,1, 0x187a00,1, 0x188000,36, 0x188800,10, 0x188880,1, 0x188a00,1, 0x189000,36, 0x189800,10, 0x189880,1, 0x189a00,1, 0x18a000,36, 0x18a800,10, 0x18a880,1, 0x18aa00,1, 0x18b000,36, 0x18b800,10, 0x18b880,1, 0x18ba00,1, 0x18c000,36, 0x18c800,10, 0x18c880,1, 0x18ca00,1, 0x18d000,36, 0x18d800,10, 0x18d880,1, 0x18da00,1, 0x18e000,36, 0x18e800,10, 0x18e880,1, 0x18ea00,1, 0x18f000,36, 0x18f800,10, 0x18f880,1, 0x18fa00,1, 0x190000,10, 0x190080,5, 0x190200,1, 0x191000,10, 0x191080,5, 0x191200,1, 0x192000,10, 0x192080,5, 0x192200,1, 0x193000,10, 0x193080,5, 0x193200,1, 0x194000,10, 0x194080,5, 0x194200,1, 0x195000,10, 0x195080,5, 0x195200,1, 0x196000,10, 0x196080,5, 0x196200,1, 0x197000,10, 0x197080,5, 0x197200,1, 0x198000,20, 0x198800,10, 0x198a00,1, 0x199000,20, 0x199800,10, 0x199a00,1, 0x19a000,20, 0x19a800,10, 0x19aa00,1, 0x19b000,20, 0x19b800,10, 0x19ba00,1, 0x19c000,20, 0x19c800,10, 0x19ca00,1, 0x19d000,20, 0x19d800,10, 0x19da00,1, 0x19e000,20, 0x19e800,10, 0x19ea00,1, 0x19f000,20, 0x19f800,10, 0x19fa00,1, 0x1a0000,36, 0x1a0800,10, 0x1a0a00,6, 0x1a0a20,3, 0x1a0a80,1, 0x1a1000,20, 0x1a1800,10, 0x1a1880,5, 0x1a1a00,1, 0x1a2000,20, 0x1a2800,1, 0x1a3000,20, 0x1a3800,1, 0x1a4000,20, 0x1a4800,10, 0x1a4880,5, 0x1a4a00,1, 0x1a5000,20, 0x1a5800,1, 0x1a6000,20, 0x1a6800,1, 0x1a7000,20, 0x1a7800,10, 0x1a7880,5, 0x1a7a00,1, 0x1a8000,20, 0x1a8800,1, 0x1a9000,20, 0x1a9800,1, 0x1aa000,20, 0x1aa800,10, 0x1aa880,5, 0x1aaa00,1, 0x1ab000,20, 0x1ab800,1, 0x1ac000,20, 0x1ac800,1, 0x1ad000,20, 0x1ad800,10, 0x1ad880,5, 0x1ada00,1, 0x1ae000,20, 0x1ae800,1, 0x1af000,20, 0x1af800,1, 0x1b0000,20, 0x1b0800,10, 0x1b0880,5, 0x1b0a00,1, 0x1b1000,20, 0x1b1800,1, 0x1b2000,20, 0x1b2800,1, 0x1b3000,20, 0x1b3800,10, 0x1b3880,5, 0x1b3a00,1, 0x1b4000,20, 0x1b4800,1, 0x1b5000,20, 0x1b5800,1, 0x1b6000,20, 0x1b6800,10, 0x1b6880,5, 0x1b6a00,1, 0x1b7000,20, 0x1b7800,1, 0x1b8000,20, 0x1b8800,1, 0x1ba000,20, 0x1ba800,10, 0x1baa00,9, 0x1baa40,9, 0x1baa80,9, 0x1baac0,9, 0x1bab00,1, 0x1bc000,20, 0x1bc800,10, 0x1bca00,9, 0x1bca40,9, 0x1bca80,9, 0x1bcac0,9, 0x1bcb00,1, 0x1be000,20, 0x1be800,10, 0x1bea00,9, 0x1bea40,9, 0x1bea80,9, 0x1beac0,9, 0x1beb00,1, 0x1c0000,20, 0x1c0800,10, 0x1c0a00,9, 0x1c0a40,9, 0x1c0a80,9, 0x1c0ac0,9, 0x1c0b00,1, 0x1c2000,20, 0x1c2800,10, 0x1c2a00,9, 0x1c2a40,9, 0x1c2a80,9, 0x1c2ac0,9, 0x1c2b00,1, 0x1c4000,20, 0x1c4800,10, 0x1c4a00,9, 0x1c4a40,9, 0x1c4a80,9, 0x1c4ac0,9, 0x1c4b00,1, 0x1c6000,20, 0x1c6800,10, 0x1c6a00,9, 0x1c6a40,9, 0x1c6a80,9, 0x1c6ac0,9, 0x1c6b00,1, 0x1c8000,20, 0x1c8800,10, 0x1c8a00,9, 0x1c8a40,9, 0x1c8a80,9, 0x1c8ac0,9, 0x1c8b00,1, 0x200000,188, 0x200400,2, 0x200440,9, 0x200480,7, 0x200800,188, 0x200c00,2, 0x200c40,9, 0x200c80,7, 0x201000,188, 0x201400,188, 0x201800,7, 0x201820,7, 0x201880,2, 0x201900,2, 0x201918,28, 0x201990,8, 0x202000,2, 0x202200,2, 0x202300,2, 0x202378,40, 0x202800,2, 0x202a00,2, 0x202b00,2, 0x202b78,40, 0x203000,33, 0x203100,33, 0x203200,1, 0x203400,12, 0x203500,45, 0x2035c0,4, 0x203600,2, 0x208000,4, 0x208100,42, 0x208200,1, 0x208210,3, 0x208220,3, 0x208230,3, 0x208240,1, 0x208248,3, 0x208400,4, 0x208500,58, 0x208600,1, 0x208610,3, 0x208620,3, 0x208630,3, 0x208640,1, 0x208648,3, 0x208800,4, 0x208900,36, 0x208a00,1, 0x208c00,4, 0x208c80,27, 0x208d00,1, 0x208d10,3, 0x208d20,3, 0x208d30,3, 0x208d40,1, 0x208d48,3, 0x208e00,4, 0x208e80,31, 0x208f00,1, 0x208f10,3, 0x208f20,3, 0x208f30,3, 0x208f40,1, 0x208f48,3, 0x209000,4, 0x209040,13, 0x209080,1, 0x209200,15, 0x209240,4, 0x209260,17, 0x2092c0,6, 0x2092e0,6, 0x209300,17, 0x209400,68, 0x209600,60, 0x209700,4, 0x209720,5, 0x209740,1, 0x209780,2, 0x20978c,2, 0x2097a0,1, 0x2097c0,12, 0x209800,7, 0x209820,5, 0x209900,49, 0x209a00,1, 0x209a08,23, 0x209a80,2, 0x209a8c,3, 0x209a9c,2, 0x209ac0,1, 0x209c00,10, 0x209c40,1, 0x209c50,3, 0x209c80,10, 0x209cc0,12, 0x209d00,3, 0x209e00,1, 0x20a000,4, 0x20a100,42, 0x20a200,1, 0x20a210,3, 0x20a220,3, 0x20a230,3, 0x20a240,1, 0x20a248,3, 0x20a400,4, 0x20a500,58, 0x20a600,1, 0x20a610,3, 0x20a620,3, 0x20a630,3, 0x20a640,1, 0x20a648,3, 0x20a800,4, 0x20a900,36, 0x20aa00,1, 0x20ac00,4, 0x20ac80,27, 0x20ad00,1, 0x20ad10,3, 0x20ad20,3, 0x20ad30,3, 0x20ad40,1, 0x20ad48,3, 0x20ae00,4, 0x20ae80,31, 0x20af00,1, 0x20af10,3, 0x20af20,3, 0x20af30,3, 0x20af40,1, 0x20af48,3, 0x20b000,4, 0x20b040,13, 0x20b080,1, 0x20b200,15, 0x20b240,4, 0x20b260,17, 0x20b2c0,6, 0x20b2e0,6, 0x20b300,17, 0x20b400,68, 0x20b600,60, 0x20b700,4, 0x20b720,5, 0x20b740,1, 0x20b780,2, 0x20b78c,2, 0x20b7a0,1, 0x20b7c0,12, 0x20b800,7, 0x20b820,5, 0x20b900,49, 0x20ba00,1, 0x20ba08,23, 0x20ba80,2, 0x20ba8c,3, 0x20ba9c,2, 0x20bac0,1, 0x20bc00,10, 0x20bc40,1, 0x20bc50,3, 0x20bc80,10, 0x20bcc0,12, 0x20bd00,3, 0x20be00,1, 0x20c000,20, 0x20c080,3, 0x20c090,1, 0x20c098,4, 0x212000,20, 0x212080,10, 0x212100,20, 0x212180,10, 0x212200,5, 0x212400,20, 0x212480,10, 0x212500,20, 0x212580,10, 0x212600,5, 0x212800,3, 0x212840,12, 0x212880,12, 0x2128c0,12, 0x212900,12, 0x212940,12, 0x212980,12, 0x2129c0,12, 0x212a00,12, 0x212c00,12, 0x212c40,7, 0x212c60,10, 0x213000,2, 0x213044,43, 0x213100,7, 0x213120,7, 0x213140,2, 0x21314c,2, 0x213160,2, 0x21316c,2, 0x213180,15, 0x2131c0,2, 0x213200,2, 0x213220,10, 0x213260,20, 0x2132c0,9, 0x213300,15, 0x213340,9, 0x213380,6, 0x2133a0,4, 0x213400,5, 0x214000,53, 0x214100,3, 0x214110,15, 0x214200,53, 0x214300,3, 0x214310,15, 0x214400,5, 0x214420,5, 0x214440,18, 0x214800,3, 0x214810,2, 0x214820,3, 0x214830,2, 0x214840,1, 0x215000,11, 0x215040,11, 0x215080,19, 0x215100,19, 0x215180,25, 0x215200,20, 0x215280,20, 0x215300,8, 0x215340,4, 0x215380,15, 0x2153c0,15, 0x215400,9, 0x215430,5, 0x216000,9, 0x216028,2, 0x216040,11, 0x216070,1, 0x218000,82, 0x218200,2, 0x218240,9, 0x218280,7, 0x218400,82, 0x218600,7, 0x218700,15, 0x218740,9, 0x218780,6, 0x2187a0,6, 0x218800,2, 0x218810,3, 0x218880,26, 0x2188f0,12, 0x220000,22, 0x220080,22, 0x220100,5, 0x220120,5, 0x220140,3, 0x220160,23, 0x2201c0,7, 0x220200,15, 0x220240,3, 0x220250,3, 0x220260,24, 0x220300,15, 0x220340,3, 0x220350,3, 0x220360,24, 0x220400,15, 0x220440,3, 0x220450,3, 0x220460,24, 0x220500,15, 0x220540,3, 0x220550,3, 0x220560,24, 0x220800,4, 0x220820,16, 0x220880,10, 0x2208c0,10, 0x220900,6, 0x220920,6, 0x220940,4, 0x220980,13, 0x2209c0,13, 0x220a00,9, 0x221000,86, 0x221200,2, 0x221240,9, 0x221280,7, 0x221400,86, 0x221600,7, 0x221800,86, 0x221a00,2, 0x221a40,9, 0x221a80,7, 0x221c00,86, 0x221e00,7, 0x222000,15, 0x222040,4, 0x222060,17, 0x2220c0,6, 0x2220e0,9, 0x222140,10, 0x222180,30, 0x222200,5, 0x224000,22, 0x224080,22, 0x224100,5, 0x224120,5, 0x224140,3, 0x224160,23, 0x2241c0,7, 0x224200,15, 0x224240,3, 0x224250,3, 0x224260,24, 0x224300,15, 0x224340,3, 0x224350,3, 0x224360,24, 0x224400,15, 0x224440,3, 0x224450,3, 0x224460,24, 0x224500,15, 0x224540,3, 0x224550,3, 0x224560,24, 0x224800,4, 0x224820,16, 0x224880,10, 0x2248c0,10, 0x224900,6, 0x224920,6, 0x224940,4, 0x224980,13, 0x2249c0,13, 0x224a00,9, 0x225000,86, 0x225200,2, 0x225240,9, 0x225280,7, 0x225400,86, 0x225600,7, 0x225800,86, 0x225a00,2, 0x225a40,9, 0x225a80,7, 0x225c00,86, 0x225e00,7, 0x226000,15, 0x226040,4, 0x226060,17, 0x2260c0,6, 0x2260e0,9, 0x226140,10, 0x226180,30, 0x226200,5, 0x228000,9, 0x228040,9, 0x228080,5, 0x228100,21, 0x228160,5, 0x228180,45, 0x228240,13, 0x228280,9, 0x228400,9, 0x228440,9, 0x228480,5, 0x228500,21, 0x228560,5, 0x228580,45, 0x228640,13, 0x228680,9, 0x228800,4, 0x228900,15, 0x228940,4, 0x228960,17, 0x2289c0,6, 0x2289e0,34, 0x22c000,30, 0x22c080,3, 0x22c090,19, 0x22c100,30, 0x22c180,3, 0x22c190,19, 0x22c200,30, 0x22c280,3, 0x22c290,19, 0x22c300,30, 0x22c380,3, 0x22c390,19, 0x22c400,30, 0x22c480,3, 0x22c490,19, 0x22c500,30, 0x22c580,3, 0x22c590,19, 0x22c600,30, 0x22c680,3, 0x22c690,19, 0x22c700,30, 0x22c780,3, 0x22c790,19, 0x22c800,12, 0x22c840,2, 0x22c854,8, 0x22c880,7, 0x22c8a0,2, 0x22c8ac,2, 0x22c8c0,42, 0x22c980,4, 0x22c9a0,5, 0x22c9c0,1, 0x22d000,3, 0x22d010,3, 0x22d020,3, 0x22d030,3, 0x22d040,3, 0x22d050,3, 0x22d060,3, 0x22d070,3, 0x22d080,6, 0x22d0a0,6, 0x22d0c0,6, 0x22d0e0,6, 0x22d100,6, 0x22d120,6, 0x22d140,6, 0x22d160,6, 0x22d200,68, 0x22d400,1, 0x22d800,2, 0x22d844,54, 0x22da00,11, 0x22da40,11, 0x22da80,11, 0x22dac0,11, 0x22db00,11, 0x22db40,11, 0x22db80,11, 0x22dbc0,11, 0x22dc00,28, 0x22dc80,7, 0x22dca0,2, 0x22e000,3, 0x22e020,6, 0x22e040,6, 0x22e060,15, 0x22e100,26, 0x22e180,15, 0x22e200,15, 0x22e240,4, 0x22e260,17, 0x22e2c0,6, 0x22e2e0,23, 0x22e340,4, 0x22e360,17, 0x22e3c0,6, 0x22e3e0,20, 0x240000,3, 0x240080,20, 0x240100,10, 0x240140,1, 0x240150,2, 0x24015c,2, 0x240200,15, 0x240240,4, 0x240260,17, 0x2402c0,6, 0x2402e0,6, 0x240300,10, 0x240400,4, 0x240440,20, 0x2404c0,9, 0x240500,33, 0x240600,11, 0x240640,11, 0x240680,1, 0x242000,1, 0x242200,4, 0x242300,53, 0x242400,4, 0x242500,40, 0x242600,15, 0x242640,4, 0x242660,17, 0x2426c0,6, 0x2426e0,6, 0x242700,10, 0x242800,20, 0x242c00,53, 0x242d00,53, 0x242e00,1, 0x243000,40, 0x243100,40, 0x243200,1, 0x243400,1, 0x243800,2, 0x24383c,51, 0x243980,3, 0x2439c0,2, 0x2439d0,12, 0x244000,2, 0x244200,27, 0x244280,4, 0x2442c0,25, 0x244340,6, 0x244360,6, 0x244380,10, 0x244400,12, 0x244440,1, 0x248000,3, 0x248080,20, 0x248100,10, 0x248140,1, 0x248150,2, 0x24815c,2, 0x248200,15, 0x248240,4, 0x248260,17, 0x2482c0,6, 0x2482e0,6, 0x248300,10, 0x248400,4, 0x248440,20, 0x2484c0,9, 0x248500,33, 0x248600,11, 0x248640,11, 0x248680,1, 0x24a000,1, 0x24a200,4, 0x24a300,53, 0x24a400,4, 0x24a500,40, 0x24a600,15, 0x24a640,4, 0x24a660,17, 0x24a6c0,6, 0x24a6e0,6, 0x24a700,10, 0x24a800,20, 0x24ac00,53, 0x24ad00,53, 0x24ae00,1, 0x24b000,40, 0x24b100,40, 0x24b200,1, 0x24b400,1, 0x24b800,2, 0x24b83c,51, 0x24b980,3, 0x24b9c0,2, 0x24b9d0,12, 0x24c000,2, 0x24c200,27, 0x24c280,4, 0x24c2c0,25, 0x24c340,6, 0x24c360,6, 0x24c380,10, 0x24c400,12, 0x24c440,1, 0x250000,4, 0x250020,3, 0x250030,2, 0x250200,1, 0x250220,11, 0x250250,5, 0x250280,1, 0x250288,24, 0x250300,2, 0x250400,2, 0x250414,5, 0x250500,36, 0x250600,3, 0x250800,2, 0x251000,1, 0x251008,21, 0x251080,1, 0x251088,21, 0x251100,1, 0x251108,21, 0x251180,1, 0x251188,21, 0x251200,1, 0x251208,21, 0x251280,1, 0x251288,21, 0x251300,1, 0x251308,21, 0x251380,1, 0x251388,21, 0x251400,21, 0x251800,139, 0x251a30,2, 0x252000,4, 0x252100,39, 0x252200,3, 0x252210,4, 0x254000,2, 0x254020,26, 0x254090,2, 0x25409c,2, 0x2540c0,6, 0x254100,2, 0x258000,18, 0x258050,2, 0x25805c,2, 0x258080,1, 0x2580a0,2, 0x2580b0,5, 0x258100,2, 0x258200,2, 0x258400,1, 0x258600,27, 0x258680,4, 0x2586c0,25, 0x258740,6, 0x258760,6, 0x258780,12, 0x258800,44, 0x258900,1, 0x260000,1, 0x260200,27, 0x260280,4, 0x2602c0,25, 0x260340,6, 0x260360,6, 0x260380,10, 0x260400,20, 0x260480,3, 0x260490,9, 0x280000,188, 0x280400,2, 0x280440,9, 0x280480,7, 0x280800,188, 0x280c00,2, 0x280c40,9, 0x280c80,7, 0x281000,188, 0x281400,188, 0x281800,7, 0x281820,7, 0x281880,2, 0x281900,2, 0x281918,28, 0x281990,8, 0x282000,2, 0x282200,2, 0x282300,2, 0x282378,40, 0x282800,2, 0x282a00,2, 0x282b00,2, 0x282b78,40, 0x283000,33, 0x283100,33, 0x283200,1, 0x283400,12, 0x283500,45, 0x2835c0,4, 0x283600,2, 0x288000,4, 0x288100,42, 0x288200,1, 0x288210,3, 0x288220,3, 0x288230,3, 0x288240,1, 0x288248,3, 0x288400,4, 0x288500,58, 0x288600,1, 0x288610,3, 0x288620,3, 0x288630,3, 0x288640,1, 0x288648,3, 0x288800,4, 0x288900,36, 0x288a00,1, 0x288c00,4, 0x288c80,27, 0x288d00,1, 0x288d10,3, 0x288d20,3, 0x288d30,3, 0x288d40,1, 0x288d48,3, 0x288e00,4, 0x288e80,31, 0x288f00,1, 0x288f10,3, 0x288f20,3, 0x288f30,3, 0x288f40,1, 0x288f48,3, 0x289000,4, 0x289040,13, 0x289080,1, 0x289200,15, 0x289240,4, 0x289260,17, 0x2892c0,6, 0x2892e0,6, 0x289300,17, 0x289400,68, 0x289600,60, 0x289700,4, 0x289720,5, 0x289740,1, 0x289780,2, 0x28978c,2, 0x2897a0,1, 0x2897c0,12, 0x289800,7, 0x289820,5, 0x289900,49, 0x289a00,1, 0x289a08,23, 0x289a80,2, 0x289a8c,3, 0x289a9c,2, 0x289ac0,1, 0x289c00,10, 0x289c40,1, 0x289c50,3, 0x289c80,10, 0x289cc0,12, 0x289d00,3, 0x289e00,1, 0x28a000,4, 0x28a100,42, 0x28a200,1, 0x28a210,3, 0x28a220,3, 0x28a230,3, 0x28a240,1, 0x28a248,3, 0x28a400,4, 0x28a500,58, 0x28a600,1, 0x28a610,3, 0x28a620,3, 0x28a630,3, 0x28a640,1, 0x28a648,3, 0x28a800,4, 0x28a900,36, 0x28aa00,1, 0x28ac00,4, 0x28ac80,27, 0x28ad00,1, 0x28ad10,3, 0x28ad20,3, 0x28ad30,3, 0x28ad40,1, 0x28ad48,3, 0x28ae00,4, 0x28ae80,31, 0x28af00,1, 0x28af10,3, 0x28af20,3, 0x28af30,3, 0x28af40,1, 0x28af48,3, 0x28b000,4, 0x28b040,13, 0x28b080,1, 0x28b200,15, 0x28b240,4, 0x28b260,17, 0x28b2c0,6, 0x28b2e0,6, 0x28b300,17, 0x28b400,68, 0x28b600,60, 0x28b700,4, 0x28b720,5, 0x28b740,1, 0x28b780,2, 0x28b78c,2, 0x28b7a0,1, 0x28b7c0,12, 0x28b800,7, 0x28b820,5, 0x28b900,49, 0x28ba00,1, 0x28ba08,23, 0x28ba80,2, 0x28ba8c,3, 0x28ba9c,2, 0x28bac0,1, 0x28bc00,10, 0x28bc40,1, 0x28bc50,3, 0x28bc80,10, 0x28bcc0,12, 0x28bd00,3, 0x28be00,1, 0x28c000,20, 0x28c080,3, 0x28c090,1, 0x28c098,4, 0x292000,20, 0x292080,10, 0x292100,20, 0x292180,10, 0x292200,5, 0x292400,20, 0x292480,10, 0x292500,20, 0x292580,10, 0x292600,5, 0x292800,3, 0x292840,12, 0x292880,12, 0x2928c0,12, 0x292900,12, 0x292940,12, 0x292980,12, 0x2929c0,12, 0x292a00,12, 0x292c00,12, 0x292c40,7, 0x292c60,10, 0x293000,2, 0x293044,43, 0x293100,7, 0x293120,7, 0x293140,2, 0x29314c,2, 0x293160,2, 0x29316c,2, 0x293180,15, 0x2931c0,2, 0x293200,2, 0x293220,10, 0x293260,20, 0x2932c0,9, 0x293300,15, 0x293340,9, 0x293380,6, 0x2933a0,4, 0x293400,5, 0x294000,53, 0x294100,3, 0x294110,15, 0x294200,53, 0x294300,3, 0x294310,15, 0x294400,5, 0x294420,5, 0x294440,18, 0x294800,3, 0x294810,2, 0x294820,3, 0x294830,2, 0x294840,1, 0x295000,11, 0x295040,11, 0x295080,19, 0x295100,19, 0x295180,25, 0x295200,20, 0x295280,20, 0x295300,8, 0x295340,4, 0x295380,15, 0x2953c0,15, 0x295400,9, 0x295430,5, 0x296000,9, 0x296028,2, 0x296040,11, 0x296070,1, 0x298000,82, 0x298200,2, 0x298240,9, 0x298280,7, 0x298400,82, 0x298600,7, 0x298700,15, 0x298740,9, 0x298780,6, 0x2987a0,6, 0x298800,2, 0x298810,3, 0x298880,26, 0x2988f0,12, 0x2a0000,22, 0x2a0080,22, 0x2a0100,5, 0x2a0120,5, 0x2a0140,3, 0x2a0160,23, 0x2a01c0,7, 0x2a0200,15, 0x2a0240,3, 0x2a0250,3, 0x2a0260,24, 0x2a0300,15, 0x2a0340,3, 0x2a0350,3, 0x2a0360,24, 0x2a0400,15, 0x2a0440,3, 0x2a0450,3, 0x2a0460,24, 0x2a0500,15, 0x2a0540,3, 0x2a0550,3, 0x2a0560,24, 0x2a0800,4, 0x2a0820,16, 0x2a0880,10, 0x2a08c0,10, 0x2a0900,6, 0x2a0920,6, 0x2a0940,4, 0x2a0980,13, 0x2a09c0,13, 0x2a0a00,9, 0x2a1000,86, 0x2a1200,2, 0x2a1240,9, 0x2a1280,7, 0x2a1400,86, 0x2a1600,7, 0x2a1800,86, 0x2a1a00,2, 0x2a1a40,9, 0x2a1a80,7, 0x2a1c00,86, 0x2a1e00,7, 0x2a2000,15, 0x2a2040,4, 0x2a2060,17, 0x2a20c0,6, 0x2a20e0,9, 0x2a2140,10, 0x2a2180,30, 0x2a2200,5, 0x2a4000,22, 0x2a4080,22, 0x2a4100,5, 0x2a4120,5, 0x2a4140,3, 0x2a4160,23, 0x2a41c0,7, 0x2a4200,15, 0x2a4240,3, 0x2a4250,3, 0x2a4260,24, 0x2a4300,15, 0x2a4340,3, 0x2a4350,3, 0x2a4360,24, 0x2a4400,15, 0x2a4440,3, 0x2a4450,3, 0x2a4460,24, 0x2a4500,15, 0x2a4540,3, 0x2a4550,3, 0x2a4560,24, 0x2a4800,4, 0x2a4820,16, 0x2a4880,10, 0x2a48c0,10, 0x2a4900,6, 0x2a4920,6, 0x2a4940,4, 0x2a4980,13, 0x2a49c0,13, 0x2a4a00,9, 0x2a5000,86, 0x2a5200,2, 0x2a5240,9, 0x2a5280,7, 0x2a5400,86, 0x2a5600,7, 0x2a5800,86, 0x2a5a00,2, 0x2a5a40,9, 0x2a5a80,7, 0x2a5c00,86, 0x2a5e00,7, 0x2a6000,15, 0x2a6040,4, 0x2a6060,17, 0x2a60c0,6, 0x2a60e0,9, 0x2a6140,10, 0x2a6180,30, 0x2a6200,5, 0x2a8000,9, 0x2a8040,9, 0x2a8080,5, 0x2a8100,21, 0x2a8160,5, 0x2a8180,45, 0x2a8240,13, 0x2a8280,9, 0x2a8400,9, 0x2a8440,9, 0x2a8480,5, 0x2a8500,21, 0x2a8560,5, 0x2a8580,45, 0x2a8640,13, 0x2a8680,9, 0x2a8800,4, 0x2a8900,15, 0x2a8940,4, 0x2a8960,17, 0x2a89c0,6, 0x2a89e0,34, 0x2ac000,30, 0x2ac080,3, 0x2ac090,19, 0x2ac100,30, 0x2ac180,3, 0x2ac190,19, 0x2ac200,30, 0x2ac280,3, 0x2ac290,19, 0x2ac300,30, 0x2ac380,3, 0x2ac390,19, 0x2ac400,30, 0x2ac480,3, 0x2ac490,19, 0x2ac500,30, 0x2ac580,3, 0x2ac590,19, 0x2ac600,30, 0x2ac680,3, 0x2ac690,19, 0x2ac700,30, 0x2ac780,3, 0x2ac790,19, 0x2ac800,12, 0x2ac840,2, 0x2ac854,8, 0x2ac880,7, 0x2ac8a0,2, 0x2ac8ac,2, 0x2ac8c0,42, 0x2ac980,4, 0x2ac9a0,5, 0x2ac9c0,1, 0x2ad000,3, 0x2ad010,3, 0x2ad020,3, 0x2ad030,3, 0x2ad040,3, 0x2ad050,3, 0x2ad060,3, 0x2ad070,3, 0x2ad080,6, 0x2ad0a0,6, 0x2ad0c0,6, 0x2ad0e0,6, 0x2ad100,6, 0x2ad120,6, 0x2ad140,6, 0x2ad160,6, 0x2ad200,68, 0x2ad400,1, 0x2ad800,2, 0x2ad844,54, 0x2ada00,11, 0x2ada40,11, 0x2ada80,11, 0x2adac0,11, 0x2adb00,11, 0x2adb40,11, 0x2adb80,11, 0x2adbc0,11, 0x2adc00,28, 0x2adc80,7, 0x2adca0,2, 0x2ae000,3, 0x2ae020,6, 0x2ae040,6, 0x2ae060,15, 0x2ae100,26, 0x2ae180,15, 0x2ae200,15, 0x2ae240,4, 0x2ae260,17, 0x2ae2c0,6, 0x2ae2e0,23, 0x2ae340,4, 0x2ae360,17, 0x2ae3c0,6, 0x2ae3e0,20, 0x2c0000,3, 0x2c0080,20, 0x2c0100,10, 0x2c0140,1, 0x2c0150,2, 0x2c015c,2, 0x2c0200,15, 0x2c0240,4, 0x2c0260,17, 0x2c02c0,6, 0x2c02e0,6, 0x2c0300,10, 0x2c0400,4, 0x2c0440,20, 0x2c04c0,9, 0x2c0500,33, 0x2c0600,11, 0x2c0640,11, 0x2c0680,1, 0x2c2000,1, 0x2c2200,4, 0x2c2300,53, 0x2c2400,4, 0x2c2500,40, 0x2c2600,15, 0x2c2640,4, 0x2c2660,17, 0x2c26c0,6, 0x2c26e0,6, 0x2c2700,10, 0x2c2800,20, 0x2c2c00,53, 0x2c2d00,53, 0x2c2e00,1, 0x2c3000,40, 0x2c3100,40, 0x2c3200,1, 0x2c3400,1, 0x2c3800,2, 0x2c383c,51, 0x2c3980,3, 0x2c39c0,2, 0x2c39d0,12, 0x2c4000,2, 0x2c4200,27, 0x2c4280,4, 0x2c42c0,25, 0x2c4340,6, 0x2c4360,6, 0x2c4380,10, 0x2c4400,12, 0x2c4440,1, 0x2c8000,3, 0x2c8080,20, 0x2c8100,10, 0x2c8140,1, 0x2c8150,2, 0x2c815c,2, 0x2c8200,15, 0x2c8240,4, 0x2c8260,17, 0x2c82c0,6, 0x2c82e0,6, 0x2c8300,10, 0x2c8400,4, 0x2c8440,20, 0x2c84c0,9, 0x2c8500,33, 0x2c8600,11, 0x2c8640,11, 0x2c8680,1, 0x2ca000,1, 0x2ca200,4, 0x2ca300,53, 0x2ca400,4, 0x2ca500,40, 0x2ca600,15, 0x2ca640,4, 0x2ca660,17, 0x2ca6c0,6, 0x2ca6e0,6, 0x2ca700,10, 0x2ca800,20, 0x2cac00,53, 0x2cad00,53, 0x2cae00,1, 0x2cb000,40, 0x2cb100,40, 0x2cb200,1, 0x2cb400,1, 0x2cb800,2, 0x2cb83c,51, 0x2cb980,3, 0x2cb9c0,2, 0x2cb9d0,12, 0x2cc000,2, 0x2cc200,27, 0x2cc280,4, 0x2cc2c0,25, 0x2cc340,6, 0x2cc360,6, 0x2cc380,10, 0x2cc400,12, 0x2cc440,1, 0x2d0000,4, 0x2d0020,3, 0x2d0030,2, 0x2d0200,1, 0x2d0220,11, 0x2d0250,5, 0x2d0280,1, 0x2d0288,24, 0x2d0300,2, 0x2d0400,2, 0x2d0414,5, 0x2d0500,36, 0x2d0600,3, 0x2d0800,2, 0x2d1000,1, 0x2d1008,21, 0x2d1080,1, 0x2d1088,21, 0x2d1100,1, 0x2d1108,21, 0x2d1180,1, 0x2d1188,21, 0x2d1200,1, 0x2d1208,21, 0x2d1280,1, 0x2d1288,21, 0x2d1300,1, 0x2d1308,21, 0x2d1380,1, 0x2d1388,21, 0x2d1400,21, 0x2d1800,139, 0x2d1a30,2, 0x2d2000,4, 0x2d2100,39, 0x2d2200,3, 0x2d2210,4, 0x2d4000,2, 0x2d4020,26, 0x2d4090,2, 0x2d409c,2, 0x2d40c0,6, 0x2d4100,2, 0x2d8000,18, 0x2d8050,2, 0x2d805c,2, 0x2d8080,1, 0x2d80a0,2, 0x2d80b0,5, 0x2d8100,2, 0x2d8200,2, 0x2d8400,1, 0x2d8600,27, 0x2d8680,4, 0x2d86c0,25, 0x2d8740,6, 0x2d8760,6, 0x2d8780,12, 0x2d8800,44, 0x2d8900,1, 0x2e0000,1, 0x2e0200,27, 0x2e0280,4, 0x2e02c0,25, 0x2e0340,6, 0x2e0360,6, 0x2e0380,10, 0x2e0400,20, 0x2e0480,3, 0x2e0490,9, 0x300000,188, 0x300400,2, 0x300440,9, 0x300480,7, 0x300800,188, 0x300c00,2, 0x300c40,9, 0x300c80,7, 0x301000,188, 0x301400,188, 0x301800,7, 0x301820,7, 0x301880,2, 0x301900,2, 0x301918,28, 0x301990,8, 0x302000,2, 0x302200,2, 0x302300,2, 0x302378,40, 0x302800,2, 0x302a00,2, 0x302b00,2, 0x302b78,40, 0x303000,33, 0x303100,33, 0x303200,1, 0x303400,12, 0x303500,45, 0x3035c0,4, 0x303600,2, 0x308000,4, 0x308100,42, 0x308200,1, 0x308210,3, 0x308220,3, 0x308230,3, 0x308240,1, 0x308248,3, 0x308400,4, 0x308500,58, 0x308600,1, 0x308610,3, 0x308620,3, 0x308630,3, 0x308640,1, 0x308648,3, 0x308800,4, 0x308900,36, 0x308a00,1, 0x308c00,4, 0x308c80,27, 0x308d00,1, 0x308d10,3, 0x308d20,3, 0x308d30,3, 0x308d40,1, 0x308d48,3, 0x308e00,4, 0x308e80,31, 0x308f00,1, 0x308f10,3, 0x308f20,3, 0x308f30,3, 0x308f40,1, 0x308f48,3, 0x309000,4, 0x309040,13, 0x309080,1, 0x309200,15, 0x309240,4, 0x309260,17, 0x3092c0,6, 0x3092e0,6, 0x309300,17, 0x309400,68, 0x309600,60, 0x309700,4, 0x309720,5, 0x309740,1, 0x309780,2, 0x30978c,2, 0x3097a0,1, 0x3097c0,12, 0x309800,7, 0x309820,5, 0x309900,49, 0x309a00,1, 0x309a08,23, 0x309a80,2, 0x309a8c,3, 0x309a9c,2, 0x309ac0,1, 0x309c00,10, 0x309c40,1, 0x309c50,3, 0x309c80,10, 0x309cc0,12, 0x309d00,3, 0x309e00,1, 0x30a000,4, 0x30a100,42, 0x30a200,1, 0x30a210,3, 0x30a220,3, 0x30a230,3, 0x30a240,1, 0x30a248,3, 0x30a400,4, 0x30a500,58, 0x30a600,1, 0x30a610,3, 0x30a620,3, 0x30a630,3, 0x30a640,1, 0x30a648,3, 0x30a800,4, 0x30a900,36, 0x30aa00,1, 0x30ac00,4, 0x30ac80,27, 0x30ad00,1, 0x30ad10,3, 0x30ad20,3, 0x30ad30,3, 0x30ad40,1, 0x30ad48,3, 0x30ae00,4, 0x30ae80,31, 0x30af00,1, 0x30af10,3, 0x30af20,3, 0x30af30,3, 0x30af40,1, 0x30af48,3, 0x30b000,4, 0x30b040,13, 0x30b080,1, 0x30b200,15, 0x30b240,4, 0x30b260,17, 0x30b2c0,6, 0x30b2e0,6, 0x30b300,17, 0x30b400,68, 0x30b600,60, 0x30b700,4, 0x30b720,5, 0x30b740,1, 0x30b780,2, 0x30b78c,2, 0x30b7a0,1, 0x30b7c0,12, 0x30b800,7, 0x30b820,5, 0x30b900,49, 0x30ba00,1, 0x30ba08,23, 0x30ba80,2, 0x30ba8c,3, 0x30ba9c,2, 0x30bac0,1, 0x30bc00,10, 0x30bc40,1, 0x30bc50,3, 0x30bc80,10, 0x30bcc0,12, 0x30bd00,3, 0x30be00,1, 0x30c000,20, 0x30c080,3, 0x30c090,1, 0x30c098,4, 0x312000,20, 0x312080,10, 0x312100,20, 0x312180,10, 0x312200,5, 0x312400,20, 0x312480,10, 0x312500,20, 0x312580,10, 0x312600,5, 0x312800,3, 0x312840,12, 0x312880,12, 0x3128c0,12, 0x312900,12, 0x312940,12, 0x312980,12, 0x3129c0,12, 0x312a00,12, 0x312c00,12, 0x312c40,7, 0x312c60,10, 0x313000,2, 0x313044,43, 0x313100,7, 0x313120,7, 0x313140,2, 0x31314c,2, 0x313160,2, 0x31316c,2, 0x313180,15, 0x3131c0,2, 0x313200,2, 0x313220,10, 0x313260,20, 0x3132c0,9, 0x313300,15, 0x313340,9, 0x313380,6, 0x3133a0,4, 0x313400,5, 0x314000,53, 0x314100,3, 0x314110,15, 0x314200,53, 0x314300,3, 0x314310,15, 0x314400,5, 0x314420,5, 0x314440,18, 0x314800,3, 0x314810,2, 0x314820,3, 0x314830,2, 0x314840,1, 0x315000,11, 0x315040,11, 0x315080,19, 0x315100,19, 0x315180,25, 0x315200,20, 0x315280,20, 0x315300,8, 0x315340,4, 0x315380,15, 0x3153c0,15, 0x315400,9, 0x315430,5, 0x316000,9, 0x316028,2, 0x316040,11, 0x316070,1, 0x318000,82, 0x318200,2, 0x318240,9, 0x318280,7, 0x318400,82, 0x318600,7, 0x318700,15, 0x318740,9, 0x318780,6, 0x3187a0,6, 0x318800,2, 0x318810,3, 0x318880,26, 0x3188f0,12, 0x320000,22, 0x320080,22, 0x320100,5, 0x320120,5, 0x320140,3, 0x320160,23, 0x3201c0,7, 0x320200,15, 0x320240,3, 0x320250,3, 0x320260,24, 0x320300,15, 0x320340,3, 0x320350,3, 0x320360,24, 0x320400,15, 0x320440,3, 0x320450,3, 0x320460,24, 0x320500,15, 0x320540,3, 0x320550,3, 0x320560,24, 0x320800,4, 0x320820,16, 0x320880,10, 0x3208c0,10, 0x320900,6, 0x320920,6, 0x320940,4, 0x320980,13, 0x3209c0,13, 0x320a00,9, 0x321000,86, 0x321200,2, 0x321240,9, 0x321280,7, 0x321400,86, 0x321600,7, 0x321800,86, 0x321a00,2, 0x321a40,9, 0x321a80,7, 0x321c00,86, 0x321e00,7, 0x322000,15, 0x322040,4, 0x322060,17, 0x3220c0,6, 0x3220e0,9, 0x322140,10, 0x322180,30, 0x322200,5, 0x324000,22, 0x324080,22, 0x324100,5, 0x324120,5, 0x324140,3, 0x324160,23, 0x3241c0,7, 0x324200,15, 0x324240,3, 0x324250,3, 0x324260,24, 0x324300,15, 0x324340,3, 0x324350,3, 0x324360,24, 0x324400,15, 0x324440,3, 0x324450,3, 0x324460,24, 0x324500,15, 0x324540,3, 0x324550,3, 0x324560,24, 0x324800,4, 0x324820,16, 0x324880,10, 0x3248c0,10, 0x324900,6, 0x324920,6, 0x324940,4, 0x324980,13, 0x3249c0,13, 0x324a00,9, 0x325000,86, 0x325200,2, 0x325240,9, 0x325280,7, 0x325400,86, 0x325600,7, 0x325800,86, 0x325a00,2, 0x325a40,9, 0x325a80,7, 0x325c00,86, 0x325e00,7, 0x326000,15, 0x326040,4, 0x326060,17, 0x3260c0,6, 0x3260e0,9, 0x326140,10, 0x326180,30, 0x326200,5, 0x328000,9, 0x328040,9, 0x328080,5, 0x328100,21, 0x328160,5, 0x328180,45, 0x328240,13, 0x328280,9, 0x328400,9, 0x328440,9, 0x328480,5, 0x328500,21, 0x328560,5, 0x328580,45, 0x328640,13, 0x328680,9, 0x328800,4, 0x328900,15, 0x328940,4, 0x328960,17, 0x3289c0,6, 0x3289e0,34, 0x32c000,30, 0x32c080,3, 0x32c090,19, 0x32c100,30, 0x32c180,3, 0x32c190,19, 0x32c200,30, 0x32c280,3, 0x32c290,19, 0x32c300,30, 0x32c380,3, 0x32c390,19, 0x32c400,30, 0x32c480,3, 0x32c490,19, 0x32c500,30, 0x32c580,3, 0x32c590,19, 0x32c600,30, 0x32c680,3, 0x32c690,19, 0x32c700,30, 0x32c780,3, 0x32c790,19, 0x32c800,12, 0x32c840,2, 0x32c854,8, 0x32c880,7, 0x32c8a0,2, 0x32c8ac,2, 0x32c8c0,42, 0x32c980,4, 0x32c9a0,5, 0x32c9c0,1, 0x32d000,3, 0x32d010,3, 0x32d020,3, 0x32d030,3, 0x32d040,3, 0x32d050,3, 0x32d060,3, 0x32d070,3, 0x32d080,6, 0x32d0a0,6, 0x32d0c0,6, 0x32d0e0,6, 0x32d100,6, 0x32d120,6, 0x32d140,6, 0x32d160,6, 0x32d200,68, 0x32d400,1, 0x32d800,2, 0x32d844,54, 0x32da00,11, 0x32da40,11, 0x32da80,11, 0x32dac0,11, 0x32db00,11, 0x32db40,11, 0x32db80,11, 0x32dbc0,11, 0x32dc00,28, 0x32dc80,7, 0x32dca0,2, 0x32e000,3, 0x32e020,6, 0x32e040,6, 0x32e060,15, 0x32e100,26, 0x32e180,15, 0x32e200,15, 0x32e240,4, 0x32e260,17, 0x32e2c0,6, 0x32e2e0,23, 0x32e340,4, 0x32e360,17, 0x32e3c0,6, 0x32e3e0,20, 0x340000,3, 0x340080,20, 0x340100,10, 0x340140,1, 0x340150,2, 0x34015c,2, 0x340200,15, 0x340240,4, 0x340260,17, 0x3402c0,6, 0x3402e0,6, 0x340300,10, 0x340400,4, 0x340440,20, 0x3404c0,9, 0x340500,33, 0x340600,11, 0x340640,11, 0x340680,1, 0x342000,1, 0x342200,4, 0x342300,53, 0x342400,4, 0x342500,40, 0x342600,15, 0x342640,4, 0x342660,17, 0x3426c0,6, 0x3426e0,6, 0x342700,10, 0x342800,20, 0x342c00,53, 0x342d00,53, 0x342e00,1, 0x343000,40, 0x343100,40, 0x343200,1, 0x343400,1, 0x343800,2, 0x34383c,51, 0x343980,3, 0x3439c0,2, 0x3439d0,12, 0x344000,2, 0x344200,27, 0x344280,4, 0x3442c0,25, 0x344340,6, 0x344360,6, 0x344380,10, 0x344400,12, 0x344440,1, 0x348000,3, 0x348080,20, 0x348100,10, 0x348140,1, 0x348150,2, 0x34815c,2, 0x348200,15, 0x348240,4, 0x348260,17, 0x3482c0,6, 0x3482e0,6, 0x348300,10, 0x348400,4, 0x348440,20, 0x3484c0,9, 0x348500,33, 0x348600,11, 0x348640,11, 0x348680,1, 0x34a000,1, 0x34a200,4, 0x34a300,53, 0x34a400,4, 0x34a500,40, 0x34a600,15, 0x34a640,4, 0x34a660,17, 0x34a6c0,6, 0x34a6e0,6, 0x34a700,10, 0x34a800,20, 0x34ac00,53, 0x34ad00,53, 0x34ae00,1, 0x34b000,40, 0x34b100,40, 0x34b200,1, 0x34b400,1, 0x34b800,2, 0x34b83c,51, 0x34b980,3, 0x34b9c0,2, 0x34b9d0,12, 0x34c000,2, 0x34c200,27, 0x34c280,4, 0x34c2c0,25, 0x34c340,6, 0x34c360,6, 0x34c380,10, 0x34c400,12, 0x34c440,1, 0x350000,4, 0x350020,3, 0x350030,2, 0x350200,1, 0x350220,11, 0x350250,5, 0x350280,1, 0x350288,24, 0x350300,2, 0x350400,2, 0x350414,5, 0x350500,36, 0x350600,3, 0x350800,2, 0x351000,1, 0x351008,21, 0x351080,1, 0x351088,21, 0x351100,1, 0x351108,21, 0x351180,1, 0x351188,21, 0x351200,1, 0x351208,21, 0x351280,1, 0x351288,21, 0x351300,1, 0x351308,21, 0x351380,1, 0x351388,21, 0x351400,21, 0x351800,139, 0x351a30,2, 0x352000,4, 0x352100,39, 0x352200,3, 0x352210,4, 0x354000,2, 0x354020,26, 0x354090,2, 0x35409c,2, 0x3540c0,6, 0x354100,2, 0x358000,18, 0x358050,2, 0x35805c,2, 0x358080,1, 0x3580a0,2, 0x3580b0,5, 0x358100,2, 0x358200,2, 0x358400,1, 0x358600,27, 0x358680,4, 0x3586c0,25, 0x358740,6, 0x358760,6, 0x358780,12, 0x358800,44, 0x358900,1, 0x360000,1, 0x360200,27, 0x360280,4, 0x3602c0,25, 0x360340,6, 0x360360,6, 0x360380,10, 0x360400,20, 0x360480,3, 0x360490,9, 0x380000,188, 0x380400,2, 0x380440,9, 0x380480,7, 0x380800,188, 0x380c00,2, 0x380c40,9, 0x380c80,7, 0x381000,188, 0x381400,188, 0x381800,7, 0x381820,7, 0x381880,2, 0x381900,2, 0x381918,28, 0x381990,8, 0x382000,2, 0x382200,2, 0x382300,2, 0x382378,40, 0x382800,2, 0x382a00,2, 0x382b00,2, 0x382b78,40, 0x383000,33, 0x383100,33, 0x383200,1, 0x383400,12, 0x383500,45, 0x3835c0,4, 0x383600,2, 0x388000,4, 0x388100,42, 0x388200,1, 0x388210,3, 0x388220,3, 0x388230,3, 0x388240,1, 0x388248,3, 0x388400,4, 0x388500,58, 0x388600,1, 0x388610,3, 0x388620,3, 0x388630,3, 0x388640,1, 0x388648,3, 0x388800,4, 0x388900,36, 0x388a00,1, 0x388c00,4, 0x388c80,27, 0x388d00,1, 0x388d10,3, 0x388d20,3, 0x388d30,3, 0x388d40,1, 0x388d48,3, 0x388e00,4, 0x388e80,31, 0x388f00,1, 0x388f10,3, 0x388f20,3, 0x388f30,3, 0x388f40,1, 0x388f48,3, 0x389000,4, 0x389040,13, 0x389080,1, 0x389200,15, 0x389240,4, 0x389260,17, 0x3892c0,6, 0x3892e0,6, 0x389300,17, 0x389400,68, 0x389600,60, 0x389700,4, 0x389720,5, 0x389740,1, 0x389780,2, 0x38978c,2, 0x3897a0,1, 0x3897c0,12, 0x389800,7, 0x389820,5, 0x389900,49, 0x389a00,1, 0x389a08,23, 0x389a80,2, 0x389a8c,3, 0x389a9c,2, 0x389ac0,1, 0x389c00,10, 0x389c40,1, 0x389c50,3, 0x389c80,10, 0x389cc0,12, 0x389d00,3, 0x389e00,1, 0x38a000,4, 0x38a100,42, 0x38a200,1, 0x38a210,3, 0x38a220,3, 0x38a230,3, 0x38a240,1, 0x38a248,3, 0x38a400,4, 0x38a500,58, 0x38a600,1, 0x38a610,3, 0x38a620,3, 0x38a630,3, 0x38a640,1, 0x38a648,3, 0x38a800,4, 0x38a900,36, 0x38aa00,1, 0x38ac00,4, 0x38ac80,27, 0x38ad00,1, 0x38ad10,3, 0x38ad20,3, 0x38ad30,3, 0x38ad40,1, 0x38ad48,3, 0x38ae00,4, 0x38ae80,31, 0x38af00,1, 0x38af10,3, 0x38af20,3, 0x38af30,3, 0x38af40,1, 0x38af48,3, 0x38b000,4, 0x38b040,13, 0x38b080,1, 0x38b200,15, 0x38b240,4, 0x38b260,17, 0x38b2c0,6, 0x38b2e0,6, 0x38b300,17, 0x38b400,68, 0x38b600,60, 0x38b700,4, 0x38b720,5, 0x38b740,1, 0x38b780,2, 0x38b78c,2, 0x38b7a0,1, 0x38b7c0,12, 0x38b800,7, 0x38b820,5, 0x38b900,49, 0x38ba00,1, 0x38ba08,23, 0x38ba80,2, 0x38ba8c,3, 0x38ba9c,2, 0x38bac0,1, 0x38bc00,10, 0x38bc40,1, 0x38bc50,3, 0x38bc80,10, 0x38bcc0,12, 0x38bd00,3, 0x38be00,1, 0x38c000,20, 0x38c080,3, 0x38c090,1, 0x38c098,4, 0x392000,20, 0x392080,10, 0x392100,20, 0x392180,10, 0x392200,5, 0x392400,20, 0x392480,10, 0x392500,20, 0x392580,10, 0x392600,5, 0x392800,3, 0x392840,12, 0x392880,12, 0x3928c0,12, 0x392900,12, 0x392940,12, 0x392980,12, 0x3929c0,12, 0x392a00,12, 0x392c00,12, 0x392c40,7, 0x392c60,10, 0x393000,2, 0x393044,43, 0x393100,7, 0x393120,7, 0x393140,2, 0x39314c,2, 0x393160,2, 0x39316c,2, 0x393180,15, 0x3931c0,2, 0x393200,2, 0x393220,10, 0x393260,20, 0x3932c0,9, 0x393300,15, 0x393340,9, 0x393380,6, 0x3933a0,4, 0x393400,5, 0x394000,53, 0x394100,3, 0x394110,15, 0x394200,53, 0x394300,3, 0x394310,15, 0x394400,5, 0x394420,5, 0x394440,18, 0x394800,3, 0x394810,2, 0x394820,3, 0x394830,2, 0x394840,1, 0x395000,11, 0x395040,11, 0x395080,19, 0x395100,19, 0x395180,25, 0x395200,20, 0x395280,20, 0x395300,8, 0x395340,4, 0x395380,15, 0x3953c0,15, 0x395400,9, 0x395430,5, 0x396000,9, 0x396028,2, 0x396040,11, 0x396070,1, 0x398000,82, 0x398200,2, 0x398240,9, 0x398280,7, 0x398400,82, 0x398600,7, 0x398700,15, 0x398740,9, 0x398780,6, 0x3987a0,6, 0x398800,2, 0x398810,3, 0x398880,26, 0x3988f0,12, 0x3a0000,22, 0x3a0080,22, 0x3a0100,5, 0x3a0120,5, 0x3a0140,3, 0x3a0160,23, 0x3a01c0,7, 0x3a0200,15, 0x3a0240,3, 0x3a0250,3, 0x3a0260,24, 0x3a0300,15, 0x3a0340,3, 0x3a0350,3, 0x3a0360,24, 0x3a0400,15, 0x3a0440,3, 0x3a0450,3, 0x3a0460,24, 0x3a0500,15, 0x3a0540,3, 0x3a0550,3, 0x3a0560,24, 0x3a0800,4, 0x3a0820,16, 0x3a0880,10, 0x3a08c0,10, 0x3a0900,6, 0x3a0920,6, 0x3a0940,4, 0x3a0980,13, 0x3a09c0,13, 0x3a0a00,9, 0x3a1000,86, 0x3a1200,2, 0x3a1240,9, 0x3a1280,7, 0x3a1400,86, 0x3a1600,7, 0x3a1800,86, 0x3a1a00,2, 0x3a1a40,9, 0x3a1a80,7, 0x3a1c00,86, 0x3a1e00,7, 0x3a2000,15, 0x3a2040,4, 0x3a2060,17, 0x3a20c0,6, 0x3a20e0,9, 0x3a2140,10, 0x3a2180,30, 0x3a2200,5, 0x3a4000,22, 0x3a4080,22, 0x3a4100,5, 0x3a4120,5, 0x3a4140,3, 0x3a4160,23, 0x3a41c0,7, 0x3a4200,15, 0x3a4240,3, 0x3a4250,3, 0x3a4260,24, 0x3a4300,15, 0x3a4340,3, 0x3a4350,3, 0x3a4360,24, 0x3a4400,15, 0x3a4440,3, 0x3a4450,3, 0x3a4460,24, 0x3a4500,15, 0x3a4540,3, 0x3a4550,3, 0x3a4560,24, 0x3a4800,4, 0x3a4820,16, 0x3a4880,10, 0x3a48c0,10, 0x3a4900,6, 0x3a4920,6, 0x3a4940,4, 0x3a4980,13, 0x3a49c0,13, 0x3a4a00,9, 0x3a5000,86, 0x3a5200,2, 0x3a5240,9, 0x3a5280,7, 0x3a5400,86, 0x3a5600,7, 0x3a5800,86, 0x3a5a00,2, 0x3a5a40,9, 0x3a5a80,7, 0x3a5c00,86, 0x3a5e00,7, 0x3a6000,15, 0x3a6040,4, 0x3a6060,17, 0x3a60c0,6, 0x3a60e0,9, 0x3a6140,10, 0x3a6180,30, 0x3a6200,5, 0x3a8000,9, 0x3a8040,9, 0x3a8080,5, 0x3a8100,21, 0x3a8160,5, 0x3a8180,45, 0x3a8240,13, 0x3a8280,9, 0x3a8400,9, 0x3a8440,9, 0x3a8480,5, 0x3a8500,21, 0x3a8560,5, 0x3a8580,45, 0x3a8640,13, 0x3a8680,9, 0x3a8800,4, 0x3a8900,15, 0x3a8940,4, 0x3a8960,17, 0x3a89c0,6, 0x3a89e0,34, 0x3ac000,30, 0x3ac080,3, 0x3ac090,19, 0x3ac100,30, 0x3ac180,3, 0x3ac190,19, 0x3ac200,30, 0x3ac280,3, 0x3ac290,19, 0x3ac300,30, 0x3ac380,3, 0x3ac390,19, 0x3ac400,30, 0x3ac480,3, 0x3ac490,19, 0x3ac500,30, 0x3ac580,3, 0x3ac590,19, 0x3ac600,30, 0x3ac680,3, 0x3ac690,19, 0x3ac700,30, 0x3ac780,3, 0x3ac790,19, 0x3ac800,12, 0x3ac840,2, 0x3ac854,8, 0x3ac880,7, 0x3ac8a0,2, 0x3ac8ac,2, 0x3ac8c0,42, 0x3ac980,4, 0x3ac9a0,5, 0x3ac9c0,1, 0x3ad000,3, 0x3ad010,3, 0x3ad020,3, 0x3ad030,3, 0x3ad040,3, 0x3ad050,3, 0x3ad060,3, 0x3ad070,3, 0x3ad080,6, 0x3ad0a0,6, 0x3ad0c0,6, 0x3ad0e0,6, 0x3ad100,6, 0x3ad120,6, 0x3ad140,6, 0x3ad160,6, 0x3ad200,68, 0x3ad400,1, 0x3ad800,2, 0x3ad844,54, 0x3ada00,11, 0x3ada40,11, 0x3ada80,11, 0x3adac0,11, 0x3adb00,11, 0x3adb40,11, 0x3adb80,11, 0x3adbc0,11, 0x3adc00,28, 0x3adc80,7, 0x3adca0,2, 0x3ae000,3, 0x3ae020,6, 0x3ae040,6, 0x3ae060,15, 0x3ae100,26, 0x3ae180,15, 0x3ae200,15, 0x3ae240,4, 0x3ae260,17, 0x3ae2c0,6, 0x3ae2e0,23, 0x3ae340,4, 0x3ae360,17, 0x3ae3c0,6, 0x3ae3e0,20, 0x3c0000,3, 0x3c0080,20, 0x3c0100,10, 0x3c0140,1, 0x3c0150,2, 0x3c015c,2, 0x3c0200,15, 0x3c0240,4, 0x3c0260,17, 0x3c02c0,6, 0x3c02e0,6, 0x3c0300,10, 0x3c0400,4, 0x3c0440,20, 0x3c04c0,9, 0x3c0500,33, 0x3c0600,11, 0x3c0640,11, 0x3c0680,1, 0x3c2000,1, 0x3c2200,4, 0x3c2300,53, 0x3c2400,4, 0x3c2500,40, 0x3c2600,15, 0x3c2640,4, 0x3c2660,17, 0x3c26c0,6, 0x3c26e0,6, 0x3c2700,10, 0x3c2800,20, 0x3c2c00,53, 0x3c2d00,53, 0x3c2e00,1, 0x3c3000,40, 0x3c3100,40, 0x3c3200,1, 0x3c3400,1, 0x3c3800,2, 0x3c383c,51, 0x3c3980,3, 0x3c39c0,2, 0x3c39d0,12, 0x3c4000,2, 0x3c4200,27, 0x3c4280,4, 0x3c42c0,25, 0x3c4340,6, 0x3c4360,6, 0x3c4380,10, 0x3c4400,12, 0x3c4440,1, 0x3c8000,3, 0x3c8080,20, 0x3c8100,10, 0x3c8140,1, 0x3c8150,2, 0x3c815c,2, 0x3c8200,15, 0x3c8240,4, 0x3c8260,17, 0x3c82c0,6, 0x3c82e0,6, 0x3c8300,10, 0x3c8400,4, 0x3c8440,20, 0x3c84c0,9, 0x3c8500,33, 0x3c8600,11, 0x3c8640,11, 0x3c8680,1, 0x3ca000,1, 0x3ca200,4, 0x3ca300,53, 0x3ca400,4, 0x3ca500,40, 0x3ca600,15, 0x3ca640,4, 0x3ca660,17, 0x3ca6c0,6, 0x3ca6e0,6, 0x3ca700,10, 0x3ca800,20, 0x3cac00,53, 0x3cad00,53, 0x3cae00,1, 0x3cb000,40, 0x3cb100,40, 0x3cb200,1, 0x3cb400,1, 0x3cb800,2, 0x3cb83c,51, 0x3cb980,3, 0x3cb9c0,2, 0x3cb9d0,12, 0x3cc000,2, 0x3cc200,27, 0x3cc280,4, 0x3cc2c0,25, 0x3cc340,6, 0x3cc360,6, 0x3cc380,10, 0x3cc400,12, 0x3cc440,1, 0x3d0000,4, 0x3d0020,3, 0x3d0030,2, 0x3d0200,1, 0x3d0220,11, 0x3d0250,5, 0x3d0280,1, 0x3d0288,24, 0x3d0300,2, 0x3d0400,2, 0x3d0414,5, 0x3d0500,36, 0x3d0600,3, 0x3d0800,2, 0x3d1000,1, 0x3d1008,21, 0x3d1080,1, 0x3d1088,21, 0x3d1100,1, 0x3d1108,21, 0x3d1180,1, 0x3d1188,21, 0x3d1200,1, 0x3d1208,21, 0x3d1280,1, 0x3d1288,21, 0x3d1300,1, 0x3d1308,21, 0x3d1380,1, 0x3d1388,21, 0x3d1400,21, 0x3d1800,139, 0x3d1a30,2, 0x3d2000,4, 0x3d2100,39, 0x3d2200,3, 0x3d2210,4, 0x3d4000,2, 0x3d4020,26, 0x3d4090,2, 0x3d409c,2, 0x3d40c0,6, 0x3d4100,2, 0x3d8000,18, 0x3d8050,2, 0x3d805c,2, 0x3d8080,1, 0x3d80a0,2, 0x3d80b0,5, 0x3d8100,2, 0x3d8200,2, 0x3d8400,1, 0x3d8600,27, 0x3d8680,4, 0x3d86c0,25, 0x3d8740,6, 0x3d8760,6, 0x3d8780,12, 0x3d8800,44, 0x3d8900,1, 0x3e0000,1, 0x3e0200,27, 0x3e0280,4, 0x3e02c0,25, 0x3e0340,6, 0x3e0360,6, 0x3e0380,10, 0x3e0400,20, 0x3e0480,3, 0x3e0490,9, 0x400000,188, 0x400400,2, 0x400440,9, 0x400480,7, 0x400800,188, 0x400c00,2, 0x400c40,9, 0x400c80,7, 0x401000,188, 0x401400,188, 0x401800,7, 0x401820,7, 0x401880,2, 0x401900,2, 0x401918,28, 0x401990,8, 0x402000,2, 0x402200,2, 0x402300,2, 0x402378,40, 0x402800,2, 0x402a00,2, 0x402b00,2, 0x402b78,40, 0x403000,33, 0x403100,33, 0x403200,1, 0x403400,12, 0x403500,45, 0x4035c0,4, 0x403600,2, 0x408000,4, 0x408100,42, 0x408200,1, 0x408210,3, 0x408220,3, 0x408230,3, 0x408240,1, 0x408248,3, 0x408400,4, 0x408500,58, 0x408600,1, 0x408610,3, 0x408620,3, 0x408630,3, 0x408640,1, 0x408648,3, 0x408800,4, 0x408900,36, 0x408a00,1, 0x408c00,4, 0x408c80,27, 0x408d00,1, 0x408d10,3, 0x408d20,3, 0x408d30,3, 0x408d40,1, 0x408d48,3, 0x408e00,4, 0x408e80,31, 0x408f00,1, 0x408f10,3, 0x408f20,3, 0x408f30,3, 0x408f40,1, 0x408f48,3, 0x409000,4, 0x409040,13, 0x409080,1, 0x409200,15, 0x409240,4, 0x409260,17, 0x4092c0,6, 0x4092e0,6, 0x409300,17, 0x409400,68, 0x409600,60, 0x409700,4, 0x409720,5, 0x409740,1, 0x409780,2, 0x40978c,2, 0x4097a0,1, 0x4097c0,12, 0x409800,7, 0x409820,5, 0x409900,49, 0x409a00,1, 0x409a08,23, 0x409a80,2, 0x409a8c,3, 0x409a9c,2, 0x409ac0,1, 0x409c00,10, 0x409c40,1, 0x409c50,3, 0x409c80,10, 0x409cc0,12, 0x409d00,3, 0x409e00,1, 0x40a000,4, 0x40a100,42, 0x40a200,1, 0x40a210,3, 0x40a220,3, 0x40a230,3, 0x40a240,1, 0x40a248,3, 0x40a400,4, 0x40a500,58, 0x40a600,1, 0x40a610,3, 0x40a620,3, 0x40a630,3, 0x40a640,1, 0x40a648,3, 0x40a800,4, 0x40a900,36, 0x40aa00,1, 0x40ac00,4, 0x40ac80,27, 0x40ad00,1, 0x40ad10,3, 0x40ad20,3, 0x40ad30,3, 0x40ad40,1, 0x40ad48,3, 0x40ae00,4, 0x40ae80,31, 0x40af00,1, 0x40af10,3, 0x40af20,3, 0x40af30,3, 0x40af40,1, 0x40af48,3, 0x40b000,4, 0x40b040,13, 0x40b080,1, 0x40b200,15, 0x40b240,4, 0x40b260,17, 0x40b2c0,6, 0x40b2e0,6, 0x40b300,17, 0x40b400,68, 0x40b600,60, 0x40b700,4, 0x40b720,5, 0x40b740,1, 0x40b780,2, 0x40b78c,2, 0x40b7a0,1, 0x40b7c0,12, 0x40b800,7, 0x40b820,5, 0x40b900,49, 0x40ba00,1, 0x40ba08,23, 0x40ba80,2, 0x40ba8c,3, 0x40ba9c,2, 0x40bac0,1, 0x40bc00,10, 0x40bc40,1, 0x40bc50,3, 0x40bc80,10, 0x40bcc0,12, 0x40bd00,3, 0x40be00,1, 0x40c000,20, 0x40c080,3, 0x40c090,1, 0x40c098,4, 0x412000,20, 0x412080,10, 0x412100,20, 0x412180,10, 0x412200,5, 0x412400,20, 0x412480,10, 0x412500,20, 0x412580,10, 0x412600,5, 0x412800,3, 0x412840,12, 0x412880,12, 0x4128c0,12, 0x412900,12, 0x412940,12, 0x412980,12, 0x4129c0,12, 0x412a00,12, 0x412c00,12, 0x412c40,7, 0x412c60,10, 0x413000,2, 0x413044,43, 0x413100,7, 0x413120,7, 0x413140,2, 0x41314c,2, 0x413160,2, 0x41316c,2, 0x413180,15, 0x4131c0,2, 0x413200,2, 0x413220,10, 0x413260,20, 0x4132c0,9, 0x413300,15, 0x413340,9, 0x413380,6, 0x4133a0,4, 0x413400,5, 0x414000,53, 0x414100,3, 0x414110,15, 0x414200,53, 0x414300,3, 0x414310,15, 0x414400,5, 0x414420,5, 0x414440,18, 0x414800,3, 0x414810,2, 0x414820,3, 0x414830,2, 0x414840,1, 0x415000,11, 0x415040,11, 0x415080,19, 0x415100,19, 0x415180,25, 0x415200,20, 0x415280,20, 0x415300,8, 0x415340,4, 0x415380,15, 0x4153c0,15, 0x415400,9, 0x415430,5, 0x416000,9, 0x416028,2, 0x416040,11, 0x416070,1, 0x418000,82, 0x418200,2, 0x418240,9, 0x418280,7, 0x418400,82, 0x418600,7, 0x418700,15, 0x418740,9, 0x418780,6, 0x4187a0,6, 0x418800,2, 0x418810,3, 0x418880,26, 0x4188f0,12, 0x420000,22, 0x420080,22, 0x420100,5, 0x420120,5, 0x420140,3, 0x420160,23, 0x4201c0,7, 0x420200,15, 0x420240,3, 0x420250,3, 0x420260,24, 0x420300,15, 0x420340,3, 0x420350,3, 0x420360,24, 0x420400,15, 0x420440,3, 0x420450,3, 0x420460,24, 0x420500,15, 0x420540,3, 0x420550,3, 0x420560,24, 0x420800,4, 0x420820,16, 0x420880,10, 0x4208c0,10, 0x420900,6, 0x420920,6, 0x420940,4, 0x420980,13, 0x4209c0,13, 0x420a00,9, 0x421000,86, 0x421200,2, 0x421240,9, 0x421280,7, 0x421400,86, 0x421600,7, 0x421800,86, 0x421a00,2, 0x421a40,9, 0x421a80,7, 0x421c00,86, 0x421e00,7, 0x422000,15, 0x422040,4, 0x422060,17, 0x4220c0,6, 0x4220e0,9, 0x422140,10, 0x422180,30, 0x422200,5, 0x424000,22, 0x424080,22, 0x424100,5, 0x424120,5, 0x424140,3, 0x424160,23, 0x4241c0,7, 0x424200,15, 0x424240,3, 0x424250,3, 0x424260,24, 0x424300,15, 0x424340,3, 0x424350,3, 0x424360,24, 0x424400,15, 0x424440,3, 0x424450,3, 0x424460,24, 0x424500,15, 0x424540,3, 0x424550,3, 0x424560,24, 0x424800,4, 0x424820,16, 0x424880,10, 0x4248c0,10, 0x424900,6, 0x424920,6, 0x424940,4, 0x424980,13, 0x4249c0,13, 0x424a00,9, 0x425000,86, 0x425200,2, 0x425240,9, 0x425280,7, 0x425400,86, 0x425600,7, 0x425800,86, 0x425a00,2, 0x425a40,9, 0x425a80,7, 0x425c00,86, 0x425e00,7, 0x426000,15, 0x426040,4, 0x426060,17, 0x4260c0,6, 0x4260e0,9, 0x426140,10, 0x426180,30, 0x426200,5, 0x428000,9, 0x428040,9, 0x428080,5, 0x428100,21, 0x428160,5, 0x428180,45, 0x428240,13, 0x428280,9, 0x428400,9, 0x428440,9, 0x428480,5, 0x428500,21, 0x428560,5, 0x428580,45, 0x428640,13, 0x428680,9, 0x428800,4, 0x428900,15, 0x428940,4, 0x428960,17, 0x4289c0,6, 0x4289e0,34, 0x42c000,30, 0x42c080,3, 0x42c090,19, 0x42c100,30, 0x42c180,3, 0x42c190,19, 0x42c200,30, 0x42c280,3, 0x42c290,19, 0x42c300,30, 0x42c380,3, 0x42c390,19, 0x42c400,30, 0x42c480,3, 0x42c490,19, 0x42c500,30, 0x42c580,3, 0x42c590,19, 0x42c600,30, 0x42c680,3, 0x42c690,19, 0x42c700,30, 0x42c780,3, 0x42c790,19, 0x42c800,12, 0x42c840,2, 0x42c854,8, 0x42c880,7, 0x42c8a0,2, 0x42c8ac,2, 0x42c8c0,42, 0x42c980,4, 0x42c9a0,5, 0x42c9c0,1, 0x42d000,3, 0x42d010,3, 0x42d020,3, 0x42d030,3, 0x42d040,3, 0x42d050,3, 0x42d060,3, 0x42d070,3, 0x42d080,6, 0x42d0a0,6, 0x42d0c0,6, 0x42d0e0,6, 0x42d100,6, 0x42d120,6, 0x42d140,6, 0x42d160,6, 0x42d200,68, 0x42d400,1, 0x42d800,2, 0x42d844,54, 0x42da00,11, 0x42da40,11, 0x42da80,11, 0x42dac0,11, 0x42db00,11, 0x42db40,11, 0x42db80,11, 0x42dbc0,11, 0x42dc00,28, 0x42dc80,7, 0x42dca0,2, 0x42e000,3, 0x42e020,6, 0x42e040,6, 0x42e060,15, 0x42e100,26, 0x42e180,15, 0x42e200,15, 0x42e240,4, 0x42e260,17, 0x42e2c0,6, 0x42e2e0,23, 0x42e340,4, 0x42e360,17, 0x42e3c0,6, 0x42e3e0,20, 0x440000,3, 0x440080,20, 0x440100,10, 0x440140,1, 0x440150,2, 0x44015c,2, 0x440200,15, 0x440240,4, 0x440260,17, 0x4402c0,6, 0x4402e0,6, 0x440300,10, 0x440400,4, 0x440440,20, 0x4404c0,9, 0x440500,33, 0x440600,11, 0x440640,11, 0x440680,1, 0x442000,1, 0x442200,4, 0x442300,53, 0x442400,4, 0x442500,40, 0x442600,15, 0x442640,4, 0x442660,17, 0x4426c0,6, 0x4426e0,6, 0x442700,10, 0x442800,20, 0x442c00,53, 0x442d00,53, 0x442e00,1, 0x443000,40, 0x443100,40, 0x443200,1, 0x443400,1, 0x443800,2, 0x44383c,51, 0x443980,3, 0x4439c0,2, 0x4439d0,12, 0x444000,2, 0x444200,27, 0x444280,4, 0x4442c0,25, 0x444340,6, 0x444360,6, 0x444380,10, 0x444400,12, 0x444440,1, 0x448000,3, 0x448080,20, 0x448100,10, 0x448140,1, 0x448150,2, 0x44815c,2, 0x448200,15, 0x448240,4, 0x448260,17, 0x4482c0,6, 0x4482e0,6, 0x448300,10, 0x448400,4, 0x448440,20, 0x4484c0,9, 0x448500,33, 0x448600,11, 0x448640,11, 0x448680,1, 0x44a000,1, 0x44a200,4, 0x44a300,53, 0x44a400,4, 0x44a500,40, 0x44a600,15, 0x44a640,4, 0x44a660,17, 0x44a6c0,6, 0x44a6e0,6, 0x44a700,10, 0x44a800,20, 0x44ac00,53, 0x44ad00,53, 0x44ae00,1, 0x44b000,40, 0x44b100,40, 0x44b200,1, 0x44b400,1, 0x44b800,2, 0x44b83c,51, 0x44b980,3, 0x44b9c0,2, 0x44b9d0,12, 0x44c000,2, 0x44c200,27, 0x44c280,4, 0x44c2c0,25, 0x44c340,6, 0x44c360,6, 0x44c380,10, 0x44c400,12, 0x44c440,1, 0x450000,4, 0x450020,3, 0x450030,2, 0x450200,1, 0x450220,11, 0x450250,5, 0x450280,1, 0x450288,24, 0x450300,2, 0x450400,2, 0x450414,5, 0x450500,36, 0x450600,3, 0x450800,2, 0x451000,1, 0x451008,21, 0x451080,1, 0x451088,21, 0x451100,1, 0x451108,21, 0x451180,1, 0x451188,21, 0x451200,1, 0x451208,21, 0x451280,1, 0x451288,21, 0x451300,1, 0x451308,21, 0x451380,1, 0x451388,21, 0x451400,21, 0x451800,139, 0x451a30,2, 0x452000,4, 0x452100,39, 0x452200,3, 0x452210,4, 0x454000,2, 0x454020,26, 0x454090,2, 0x45409c,2, 0x4540c0,6, 0x454100,2, 0x458000,18, 0x458050,2, 0x45805c,2, 0x458080,1, 0x4580a0,2, 0x4580b0,5, 0x458100,2, 0x458200,2, 0x458400,1, 0x458600,27, 0x458680,4, 0x4586c0,25, 0x458740,6, 0x458760,6, 0x458780,12, 0x458800,44, 0x458900,1, 0x460000,1, 0x460200,27, 0x460280,4, 0x4602c0,25, 0x460340,6, 0x460360,6, 0x460380,10, 0x460400,20, 0x460480,3, 0x460490,9, 0x480000,188, 0x480400,2, 0x480440,9, 0x480480,7, 0x480800,188, 0x480c00,2, 0x480c40,9, 0x480c80,7, 0x481000,188, 0x481400,188, 0x481800,7, 0x481820,7, 0x481880,2, 0x481900,2, 0x481918,28, 0x481990,8, 0x482000,2, 0x482200,2, 0x482300,2, 0x482378,40, 0x482800,2, 0x482a00,2, 0x482b00,2, 0x482b78,40, 0x483000,33, 0x483100,33, 0x483200,1, 0x483400,12, 0x483500,45, 0x4835c0,4, 0x483600,2, 0x488000,4, 0x488100,42, 0x488200,1, 0x488210,3, 0x488220,3, 0x488230,3, 0x488240,1, 0x488248,3, 0x488400,4, 0x488500,58, 0x488600,1, 0x488610,3, 0x488620,3, 0x488630,3, 0x488640,1, 0x488648,3, 0x488800,4, 0x488900,36, 0x488a00,1, 0x488c00,4, 0x488c80,27, 0x488d00,1, 0x488d10,3, 0x488d20,3, 0x488d30,3, 0x488d40,1, 0x488d48,3, 0x488e00,4, 0x488e80,31, 0x488f00,1, 0x488f10,3, 0x488f20,3, 0x488f30,3, 0x488f40,1, 0x488f48,3, 0x489000,4, 0x489040,13, 0x489080,1, 0x489200,15, 0x489240,4, 0x489260,17, 0x4892c0,6, 0x4892e0,6, 0x489300,17, 0x489400,68, 0x489600,60, 0x489700,4, 0x489720,5, 0x489740,1, 0x489780,2, 0x48978c,2, 0x4897a0,1, 0x4897c0,12, 0x489800,7, 0x489820,5, 0x489900,49, 0x489a00,1, 0x489a08,23, 0x489a80,2, 0x489a8c,3, 0x489a9c,2, 0x489ac0,1, 0x489c00,10, 0x489c40,1, 0x489c50,3, 0x489c80,10, 0x489cc0,12, 0x489d00,3, 0x489e00,1, 0x48a000,4, 0x48a100,42, 0x48a200,1, 0x48a210,3, 0x48a220,3, 0x48a230,3, 0x48a240,1, 0x48a248,3, 0x48a400,4, 0x48a500,58, 0x48a600,1, 0x48a610,3, 0x48a620,3, 0x48a630,3, 0x48a640,1, 0x48a648,3, 0x48a800,4, 0x48a900,36, 0x48aa00,1, 0x48ac00,4, 0x48ac80,27, 0x48ad00,1, 0x48ad10,3, 0x48ad20,3, 0x48ad30,3, 0x48ad40,1, 0x48ad48,3, 0x48ae00,4, 0x48ae80,31, 0x48af00,1, 0x48af10,3, 0x48af20,3, 0x48af30,3, 0x48af40,1, 0x48af48,3, 0x48b000,4, 0x48b040,13, 0x48b080,1, 0x48b200,15, 0x48b240,4, 0x48b260,17, 0x48b2c0,6, 0x48b2e0,6, 0x48b300,17, 0x48b400,68, 0x48b600,60, 0x48b700,4, 0x48b720,5, 0x48b740,1, 0x48b780,2, 0x48b78c,2, 0x48b7a0,1, 0x48b7c0,12, 0x48b800,7, 0x48b820,5, 0x48b900,49, 0x48ba00,1, 0x48ba08,23, 0x48ba80,2, 0x48ba8c,3, 0x48ba9c,2, 0x48bac0,1, 0x48bc00,10, 0x48bc40,1, 0x48bc50,3, 0x48bc80,10, 0x48bcc0,12, 0x48bd00,3, 0x48be00,1, 0x48c000,20, 0x48c080,3, 0x48c090,1, 0x48c098,4, 0x492000,20, 0x492080,10, 0x492100,20, 0x492180,10, 0x492200,5, 0x492400,20, 0x492480,10, 0x492500,20, 0x492580,10, 0x492600,5, 0x492800,3, 0x492840,12, 0x492880,12, 0x4928c0,12, 0x492900,12, 0x492940,12, 0x492980,12, 0x4929c0,12, 0x492a00,12, 0x492c00,12, 0x492c40,7, 0x492c60,10, 0x493000,2, 0x493044,43, 0x493100,7, 0x493120,7, 0x493140,2, 0x49314c,2, 0x493160,2, 0x49316c,2, 0x493180,15, 0x4931c0,2, 0x493200,2, 0x493220,10, 0x493260,20, 0x4932c0,9, 0x493300,15, 0x493340,9, 0x493380,6, 0x4933a0,4, 0x493400,5, 0x494000,53, 0x494100,3, 0x494110,15, 0x494200,53, 0x494300,3, 0x494310,15, 0x494400,5, 0x494420,5, 0x494440,18, 0x494800,3, 0x494810,2, 0x494820,3, 0x494830,2, 0x494840,1, 0x495000,11, 0x495040,11, 0x495080,19, 0x495100,19, 0x495180,25, 0x495200,20, 0x495280,20, 0x495300,8, 0x495340,4, 0x495380,15, 0x4953c0,15, 0x495400,9, 0x495430,5, 0x496000,9, 0x496028,2, 0x496040,11, 0x496070,1, 0x498000,82, 0x498200,2, 0x498240,9, 0x498280,7, 0x498400,82, 0x498600,7, 0x498700,15, 0x498740,9, 0x498780,6, 0x4987a0,6, 0x498800,2, 0x498810,3, 0x498880,26, 0x4988f0,12, 0x4a0000,22, 0x4a0080,22, 0x4a0100,5, 0x4a0120,5, 0x4a0140,3, 0x4a0160,23, 0x4a01c0,7, 0x4a0200,15, 0x4a0240,3, 0x4a0250,3, 0x4a0260,24, 0x4a0300,15, 0x4a0340,3, 0x4a0350,3, 0x4a0360,24, 0x4a0400,15, 0x4a0440,3, 0x4a0450,3, 0x4a0460,24, 0x4a0500,15, 0x4a0540,3, 0x4a0550,3, 0x4a0560,24, 0x4a0800,4, 0x4a0820,16, 0x4a0880,10, 0x4a08c0,10, 0x4a0900,6, 0x4a0920,6, 0x4a0940,4, 0x4a0980,13, 0x4a09c0,13, 0x4a0a00,9, 0x4a1000,86, 0x4a1200,2, 0x4a1240,9, 0x4a1280,7, 0x4a1400,86, 0x4a1600,7, 0x4a1800,86, 0x4a1a00,2, 0x4a1a40,9, 0x4a1a80,7, 0x4a1c00,86, 0x4a1e00,7, 0x4a2000,15, 0x4a2040,4, 0x4a2060,17, 0x4a20c0,6, 0x4a20e0,9, 0x4a2140,10, 0x4a2180,30, 0x4a2200,5, 0x4a4000,22, 0x4a4080,22, 0x4a4100,5, 0x4a4120,5, 0x4a4140,3, 0x4a4160,23, 0x4a41c0,7, 0x4a4200,15, 0x4a4240,3, 0x4a4250,3, 0x4a4260,24, 0x4a4300,15, 0x4a4340,3, 0x4a4350,3, 0x4a4360,24, 0x4a4400,15, 0x4a4440,3, 0x4a4450,3, 0x4a4460,24, 0x4a4500,15, 0x4a4540,3, 0x4a4550,3, 0x4a4560,24, 0x4a4800,4, 0x4a4820,16, 0x4a4880,10, 0x4a48c0,10, 0x4a4900,6, 0x4a4920,6, 0x4a4940,4, 0x4a4980,13, 0x4a49c0,13, 0x4a4a00,9, 0x4a5000,86, 0x4a5200,2, 0x4a5240,9, 0x4a5280,7, 0x4a5400,86, 0x4a5600,7, 0x4a5800,86, 0x4a5a00,2, 0x4a5a40,9, 0x4a5a80,7, 0x4a5c00,86, 0x4a5e00,7, 0x4a6000,15, 0x4a6040,4, 0x4a6060,17, 0x4a60c0,6, 0x4a60e0,9, 0x4a6140,10, 0x4a6180,30, 0x4a6200,5, 0x4a8000,9, 0x4a8040,9, 0x4a8080,5, 0x4a8100,21, 0x4a8160,5, 0x4a8180,45, 0x4a8240,13, 0x4a8280,9, 0x4a8400,9, 0x4a8440,9, 0x4a8480,5, 0x4a8500,21, 0x4a8560,5, 0x4a8580,45, 0x4a8640,13, 0x4a8680,9, 0x4a8800,4, 0x4a8900,15, 0x4a8940,4, 0x4a8960,17, 0x4a89c0,6, 0x4a89e0,34, 0x4ac000,30, 0x4ac080,3, 0x4ac090,19, 0x4ac100,30, 0x4ac180,3, 0x4ac190,19, 0x4ac200,30, 0x4ac280,3, 0x4ac290,19, 0x4ac300,30, 0x4ac380,3, 0x4ac390,19, 0x4ac400,30, 0x4ac480,3, 0x4ac490,19, 0x4ac500,30, 0x4ac580,3, 0x4ac590,19, 0x4ac600,30, 0x4ac680,3, 0x4ac690,19, 0x4ac700,30, 0x4ac780,3, 0x4ac790,19, 0x4ac800,12, 0x4ac840,2, 0x4ac854,8, 0x4ac880,7, 0x4ac8a0,2, 0x4ac8ac,2, 0x4ac8c0,42, 0x4ac980,4, 0x4ac9a0,5, 0x4ac9c0,1, 0x4ad000,3, 0x4ad010,3, 0x4ad020,3, 0x4ad030,3, 0x4ad040,3, 0x4ad050,3, 0x4ad060,3, 0x4ad070,3, 0x4ad080,6, 0x4ad0a0,6, 0x4ad0c0,6, 0x4ad0e0,6, 0x4ad100,6, 0x4ad120,6, 0x4ad140,6, 0x4ad160,6, 0x4ad200,68, 0x4ad400,1, 0x4ad800,2, 0x4ad844,54, 0x4ada00,11, 0x4ada40,11, 0x4ada80,11, 0x4adac0,11, 0x4adb00,11, 0x4adb40,11, 0x4adb80,11, 0x4adbc0,11, 0x4adc00,28, 0x4adc80,7, 0x4adca0,2, 0x4ae000,3, 0x4ae020,6, 0x4ae040,6, 0x4ae060,15, 0x4ae100,26, 0x4ae180,15, 0x4ae200,15, 0x4ae240,4, 0x4ae260,17, 0x4ae2c0,6, 0x4ae2e0,23, 0x4ae340,4, 0x4ae360,17, 0x4ae3c0,6, 0x4ae3e0,20, 0x4c0000,3, 0x4c0080,20, 0x4c0100,10, 0x4c0140,1, 0x4c0150,2, 0x4c015c,2, 0x4c0200,15, 0x4c0240,4, 0x4c0260,17, 0x4c02c0,6, 0x4c02e0,6, 0x4c0300,10, 0x4c0400,4, 0x4c0440,20, 0x4c04c0,9, 0x4c0500,33, 0x4c0600,11, 0x4c0640,11, 0x4c0680,1, 0x4c2000,1, 0x4c2200,4, 0x4c2300,53, 0x4c2400,4, 0x4c2500,40, 0x4c2600,15, 0x4c2640,4, 0x4c2660,17, 0x4c26c0,6, 0x4c26e0,6, 0x4c2700,10, 0x4c2800,20, 0x4c2c00,53, 0x4c2d00,53, 0x4c2e00,1, 0x4c3000,40, 0x4c3100,40, 0x4c3200,1, 0x4c3400,1, 0x4c3800,2, 0x4c383c,51, 0x4c3980,3, 0x4c39c0,2, 0x4c39d0,12, 0x4c4000,2, 0x4c4200,27, 0x4c4280,4, 0x4c42c0,25, 0x4c4340,6, 0x4c4360,6, 0x4c4380,10, 0x4c4400,12, 0x4c4440,1, 0x4c8000,3, 0x4c8080,20, 0x4c8100,10, 0x4c8140,1, 0x4c8150,2, 0x4c815c,2, 0x4c8200,15, 0x4c8240,4, 0x4c8260,17, 0x4c82c0,6, 0x4c82e0,6, 0x4c8300,10, 0x4c8400,4, 0x4c8440,20, 0x4c84c0,9, 0x4c8500,33, 0x4c8600,11, 0x4c8640,11, 0x4c8680,1, 0x4ca000,1, 0x4ca200,4, 0x4ca300,53, 0x4ca400,4, 0x4ca500,40, 0x4ca600,15, 0x4ca640,4, 0x4ca660,17, 0x4ca6c0,6, 0x4ca6e0,6, 0x4ca700,10, 0x4ca800,20, 0x4cac00,53, 0x4cad00,53, 0x4cae00,1, 0x4cb000,40, 0x4cb100,40, 0x4cb200,1, 0x4cb400,1, 0x4cb800,2, 0x4cb83c,51, 0x4cb980,3, 0x4cb9c0,2, 0x4cb9d0,12, 0x4cc000,2, 0x4cc200,27, 0x4cc280,4, 0x4cc2c0,25, 0x4cc340,6, 0x4cc360,6, 0x4cc380,10, 0x4cc400,12, 0x4cc440,1, 0x4d0000,4, 0x4d0020,3, 0x4d0030,2, 0x4d0200,1, 0x4d0220,11, 0x4d0250,5, 0x4d0280,1, 0x4d0288,24, 0x4d0300,2, 0x4d0400,2, 0x4d0414,5, 0x4d0500,36, 0x4d0600,3, 0x4d0800,2, 0x4d1000,1, 0x4d1008,21, 0x4d1080,1, 0x4d1088,21, 0x4d1100,1, 0x4d1108,21, 0x4d1180,1, 0x4d1188,21, 0x4d1200,1, 0x4d1208,21, 0x4d1280,1, 0x4d1288,21, 0x4d1300,1, 0x4d1308,21, 0x4d1380,1, 0x4d1388,21, 0x4d1400,21, 0x4d1800,139, 0x4d1a30,2, 0x4d2000,4, 0x4d2100,39, 0x4d2200,3, 0x4d2210,4, 0x4d4000,2, 0x4d4020,26, 0x4d4090,2, 0x4d409c,2, 0x4d40c0,6, 0x4d4100,2, 0x4d8000,18, 0x4d8050,2, 0x4d805c,2, 0x4d8080,1, 0x4d80a0,2, 0x4d80b0,5, 0x4d8100,2, 0x4d8200,2, 0x4d8400,1, 0x4d8600,27, 0x4d8680,4, 0x4d86c0,25, 0x4d8740,6, 0x4d8760,6, 0x4d8780,12, 0x4d8800,44, 0x4d8900,1, 0x4e0000,1, 0x4e0200,27, 0x4e0280,4, 0x4e02c0,25, 0x4e0340,6, 0x4e0360,6, 0x4e0380,10, 0x4e0400,20, 0x4e0480,3, 0x4e0490,9, 0x500000,188, 0x500400,2, 0x500440,9, 0x500480,7, 0x500800,188, 0x500c00,2, 0x500c40,9, 0x500c80,7, 0x501000,188, 0x501400,188, 0x501800,7, 0x501820,7, 0x501880,2, 0x501900,2, 0x501918,28, 0x501990,8, 0x502000,2, 0x502200,2, 0x502300,2, 0x502378,40, 0x502800,2, 0x502a00,2, 0x502b00,2, 0x502b78,40, 0x503000,33, 0x503100,33, 0x503200,1, 0x503400,12, 0x503500,45, 0x5035c0,4, 0x503600,2, 0x508000,4, 0x508100,42, 0x508200,1, 0x508210,3, 0x508220,3, 0x508230,3, 0x508240,1, 0x508248,3, 0x508400,4, 0x508500,58, 0x508600,1, 0x508610,3, 0x508620,3, 0x508630,3, 0x508640,1, 0x508648,3, 0x508800,4, 0x508900,36, 0x508a00,1, 0x508c00,4, 0x508c80,27, 0x508d00,1, 0x508d10,3, 0x508d20,3, 0x508d30,3, 0x508d40,1, 0x508d48,3, 0x508e00,4, 0x508e80,31, 0x508f00,1, 0x508f10,3, 0x508f20,3, 0x508f30,3, 0x508f40,1, 0x508f48,3, 0x509000,4, 0x509040,13, 0x509080,1, 0x509200,15, 0x509240,4, 0x509260,17, 0x5092c0,6, 0x5092e0,6, 0x509300,17, 0x509400,68, 0x509600,60, 0x509700,4, 0x509720,5, 0x509740,1, 0x509780,2, 0x50978c,2, 0x5097a0,1, 0x5097c0,12, 0x509800,7, 0x509820,5, 0x509900,49, 0x509a00,1, 0x509a08,23, 0x509a80,2, 0x509a8c,3, 0x509a9c,2, 0x509ac0,1, 0x509c00,10, 0x509c40,1, 0x509c50,3, 0x509c80,10, 0x509cc0,12, 0x509d00,3, 0x509e00,1, 0x50a000,4, 0x50a100,42, 0x50a200,1, 0x50a210,3, 0x50a220,3, 0x50a230,3, 0x50a240,1, 0x50a248,3, 0x50a400,4, 0x50a500,58, 0x50a600,1, 0x50a610,3, 0x50a620,3, 0x50a630,3, 0x50a640,1, 0x50a648,3, 0x50a800,4, 0x50a900,36, 0x50aa00,1, 0x50ac00,4, 0x50ac80,27, 0x50ad00,1, 0x50ad10,3, 0x50ad20,3, 0x50ad30,3, 0x50ad40,1, 0x50ad48,3, 0x50ae00,4, 0x50ae80,31, 0x50af00,1, 0x50af10,3, 0x50af20,3, 0x50af30,3, 0x50af40,1, 0x50af48,3, 0x50b000,4, 0x50b040,13, 0x50b080,1, 0x50b200,15, 0x50b240,4, 0x50b260,17, 0x50b2c0,6, 0x50b2e0,6, 0x50b300,17, 0x50b400,68, 0x50b600,60, 0x50b700,4, 0x50b720,5, 0x50b740,1, 0x50b780,2, 0x50b78c,2, 0x50b7a0,1, 0x50b7c0,12, 0x50b800,7, 0x50b820,5, 0x50b900,49, 0x50ba00,1, 0x50ba08,23, 0x50ba80,2, 0x50ba8c,3, 0x50ba9c,2, 0x50bac0,1, 0x50bc00,10, 0x50bc40,1, 0x50bc50,3, 0x50bc80,10, 0x50bcc0,12, 0x50bd00,3, 0x50be00,1, 0x50c000,20, 0x50c080,3, 0x50c090,1, 0x50c098,4, 0x512000,20, 0x512080,10, 0x512100,20, 0x512180,10, 0x512200,5, 0x512400,20, 0x512480,10, 0x512500,20, 0x512580,10, 0x512600,5, 0x512800,3, 0x512840,12, 0x512880,12, 0x5128c0,12, 0x512900,12, 0x512940,12, 0x512980,12, 0x5129c0,12, 0x512a00,12, 0x512c00,12, 0x512c40,7, 0x512c60,10, 0x513000,2, 0x513044,43, 0x513100,7, 0x513120,7, 0x513140,2, 0x51314c,2, 0x513160,2, 0x51316c,2, 0x513180,15, 0x5131c0,2, 0x513200,2, 0x513220,10, 0x513260,20, 0x5132c0,9, 0x513300,15, 0x513340,9, 0x513380,6, 0x5133a0,4, 0x513400,5, 0x514000,53, 0x514100,3, 0x514110,15, 0x514200,53, 0x514300,3, 0x514310,15, 0x514400,5, 0x514420,5, 0x514440,18, 0x514800,3, 0x514810,2, 0x514820,3, 0x514830,2, 0x514840,1, 0x515000,11, 0x515040,11, 0x515080,19, 0x515100,19, 0x515180,25, 0x515200,20, 0x515280,20, 0x515300,8, 0x515340,4, 0x515380,15, 0x5153c0,15, 0x515400,9, 0x515430,5, 0x516000,9, 0x516028,2, 0x516040,11, 0x516070,1, 0x518000,82, 0x518200,2, 0x518240,9, 0x518280,7, 0x518400,82, 0x518600,7, 0x518700,15, 0x518740,9, 0x518780,6, 0x5187a0,6, 0x518800,2, 0x518810,3, 0x518880,26, 0x5188f0,12, 0x520000,22, 0x520080,22, 0x520100,5, 0x520120,5, 0x520140,3, 0x520160,23, 0x5201c0,7, 0x520200,15, 0x520240,3, 0x520250,3, 0x520260,24, 0x520300,15, 0x520340,3, 0x520350,3, 0x520360,24, 0x520400,15, 0x520440,3, 0x520450,3, 0x520460,24, 0x520500,15, 0x520540,3, 0x520550,3, 0x520560,24, 0x520800,4, 0x520820,16, 0x520880,10, 0x5208c0,10, 0x520900,6, 0x520920,6, 0x520940,4, 0x520980,13, 0x5209c0,13, 0x520a00,9, 0x521000,86, 0x521200,2, 0x521240,9, 0x521280,7, 0x521400,86, 0x521600,7, 0x521800,86, 0x521a00,2, 0x521a40,9, 0x521a80,7, 0x521c00,86, 0x521e00,7, 0x522000,15, 0x522040,4, 0x522060,17, 0x5220c0,6, 0x5220e0,9, 0x522140,10, 0x522180,30, 0x522200,5, 0x524000,22, 0x524080,22, 0x524100,5, 0x524120,5, 0x524140,3, 0x524160,23, 0x5241c0,7, 0x524200,15, 0x524240,3, 0x524250,3, 0x524260,24, 0x524300,15, 0x524340,3, 0x524350,3, 0x524360,24, 0x524400,15, 0x524440,3, 0x524450,3, 0x524460,24, 0x524500,15, 0x524540,3, 0x524550,3, 0x524560,24, 0x524800,4, 0x524820,16, 0x524880,10, 0x5248c0,10, 0x524900,6, 0x524920,6, 0x524940,4, 0x524980,13, 0x5249c0,13, 0x524a00,9, 0x525000,86, 0x525200,2, 0x525240,9, 0x525280,7, 0x525400,86, 0x525600,7, 0x525800,86, 0x525a00,2, 0x525a40,9, 0x525a80,7, 0x525c00,86, 0x525e00,7, 0x526000,15, 0x526040,4, 0x526060,17, 0x5260c0,6, 0x5260e0,9, 0x526140,10, 0x526180,30, 0x526200,5, 0x528000,9, 0x528040,9, 0x528080,5, 0x528100,21, 0x528160,5, 0x528180,45, 0x528240,13, 0x528280,9, 0x528400,9, 0x528440,9, 0x528480,5, 0x528500,21, 0x528560,5, 0x528580,45, 0x528640,13, 0x528680,9, 0x528800,4, 0x528900,15, 0x528940,4, 0x528960,17, 0x5289c0,6, 0x5289e0,34, 0x52c000,30, 0x52c080,3, 0x52c090,19, 0x52c100,30, 0x52c180,3, 0x52c190,19, 0x52c200,30, 0x52c280,3, 0x52c290,19, 0x52c300,30, 0x52c380,3, 0x52c390,19, 0x52c400,30, 0x52c480,3, 0x52c490,19, 0x52c500,30, 0x52c580,3, 0x52c590,19, 0x52c600,30, 0x52c680,3, 0x52c690,19, 0x52c700,30, 0x52c780,3, 0x52c790,19, 0x52c800,12, 0x52c840,2, 0x52c854,8, 0x52c880,7, 0x52c8a0,2, 0x52c8ac,2, 0x52c8c0,42, 0x52c980,4, 0x52c9a0,5, 0x52c9c0,1, 0x52d000,3, 0x52d010,3, 0x52d020,3, 0x52d030,3, 0x52d040,3, 0x52d050,3, 0x52d060,3, 0x52d070,3, 0x52d080,6, 0x52d0a0,6, 0x52d0c0,6, 0x52d0e0,6, 0x52d100,6, 0x52d120,6, 0x52d140,6, 0x52d160,6, 0x52d200,68, 0x52d400,1, 0x52d800,2, 0x52d844,54, 0x52da00,11, 0x52da40,11, 0x52da80,11, 0x52dac0,11, 0x52db00,11, 0x52db40,11, 0x52db80,11, 0x52dbc0,11, 0x52dc00,28, 0x52dc80,7, 0x52dca0,2, 0x52e000,3, 0x52e020,6, 0x52e040,6, 0x52e060,15, 0x52e100,26, 0x52e180,15, 0x52e200,15, 0x52e240,4, 0x52e260,17, 0x52e2c0,6, 0x52e2e0,23, 0x52e340,4, 0x52e360,17, 0x52e3c0,6, 0x52e3e0,20, 0x540000,3, 0x540080,20, 0x540100,10, 0x540140,1, 0x540150,2, 0x54015c,2, 0x540200,15, 0x540240,4, 0x540260,17, 0x5402c0,6, 0x5402e0,6, 0x540300,10, 0x540400,4, 0x540440,20, 0x5404c0,9, 0x540500,33, 0x540600,11, 0x540640,11, 0x540680,1, 0x542000,1, 0x542200,4, 0x542300,53, 0x542400,4, 0x542500,40, 0x542600,15, 0x542640,4, 0x542660,17, 0x5426c0,6, 0x5426e0,6, 0x542700,10, 0x542800,20, 0x542c00,53, 0x542d00,53, 0x542e00,1, 0x543000,40, 0x543100,40, 0x543200,1, 0x543400,1, 0x543800,2, 0x54383c,51, 0x543980,3, 0x5439c0,2, 0x5439d0,12, 0x544000,2, 0x544200,27, 0x544280,4, 0x5442c0,25, 0x544340,6, 0x544360,6, 0x544380,10, 0x544400,12, 0x544440,1, 0x548000,3, 0x548080,20, 0x548100,10, 0x548140,1, 0x548150,2, 0x54815c,2, 0x548200,15, 0x548240,4, 0x548260,17, 0x5482c0,6, 0x5482e0,6, 0x548300,10, 0x548400,4, 0x548440,20, 0x5484c0,9, 0x548500,33, 0x548600,11, 0x548640,11, 0x548680,1, 0x54a000,1, 0x54a200,4, 0x54a300,53, 0x54a400,4, 0x54a500,40, 0x54a600,15, 0x54a640,4, 0x54a660,17, 0x54a6c0,6, 0x54a6e0,6, 0x54a700,10, 0x54a800,20, 0x54ac00,53, 0x54ad00,53, 0x54ae00,1, 0x54b000,40, 0x54b100,40, 0x54b200,1, 0x54b400,1, 0x54b800,2, 0x54b83c,51, 0x54b980,3, 0x54b9c0,2, 0x54b9d0,12, 0x54c000,2, 0x54c200,27, 0x54c280,4, 0x54c2c0,25, 0x54c340,6, 0x54c360,6, 0x54c380,10, 0x54c400,12, 0x54c440,1, 0x550000,4, 0x550020,3, 0x550030,2, 0x550200,1, 0x550220,11, 0x550250,5, 0x550280,1, 0x550288,24, 0x550300,2, 0x550400,2, 0x550414,5, 0x550500,36, 0x550600,3, 0x550800,2, 0x551000,1, 0x551008,21, 0x551080,1, 0x551088,21, 0x551100,1, 0x551108,21, 0x551180,1, 0x551188,21, 0x551200,1, 0x551208,21, 0x551280,1, 0x551288,21, 0x551300,1, 0x551308,21, 0x551380,1, 0x551388,21, 0x551400,21, 0x551800,139, 0x551a30,2, 0x552000,4, 0x552100,39, 0x552200,3, 0x552210,4, 0x554000,2, 0x554020,26, 0x554090,2, 0x55409c,2, 0x5540c0,6, 0x554100,2, 0x558000,18, 0x558050,2, 0x55805c,2, 0x558080,1, 0x5580a0,2, 0x5580b0,5, 0x558100,2, 0x558200,2, 0x558400,1, 0x558600,27, 0x558680,4, 0x5586c0,25, 0x558740,6, 0x558760,6, 0x558780,12, 0x558800,44, 0x558900,1, 0x560000,1, 0x560200,27, 0x560280,4, 0x5602c0,25, 0x560340,6, 0x560360,6, 0x560380,10, 0x560400,20, 0x560480,3, 0x560490,9, 0x580000,188, 0x580400,2, 0x580440,9, 0x580480,7, 0x580800,188, 0x580c00,2, 0x580c40,9, 0x580c80,7, 0x581000,188, 0x581400,188, 0x581800,7, 0x581820,7, 0x581880,2, 0x581900,2, 0x581918,28, 0x581990,8, 0x582000,2, 0x582200,2, 0x582300,2, 0x582378,40, 0x582800,2, 0x582a00,2, 0x582b00,2, 0x582b78,40, 0x583000,33, 0x583100,33, 0x583200,1, 0x583400,12, 0x583500,45, 0x5835c0,4, 0x583600,2, 0x588000,4, 0x588100,42, 0x588200,1, 0x588210,3, 0x588220,3, 0x588230,3, 0x588240,1, 0x588248,3, 0x588400,4, 0x588500,58, 0x588600,1, 0x588610,3, 0x588620,3, 0x588630,3, 0x588640,1, 0x588648,3, 0x588800,4, 0x588900,36, 0x588a00,1, 0x588c00,4, 0x588c80,27, 0x588d00,1, 0x588d10,3, 0x588d20,3, 0x588d30,3, 0x588d40,1, 0x588d48,3, 0x588e00,4, 0x588e80,31, 0x588f00,1, 0x588f10,3, 0x588f20,3, 0x588f30,3, 0x588f40,1, 0x588f48,3, 0x589000,4, 0x589040,13, 0x589080,1, 0x589200,15, 0x589240,4, 0x589260,17, 0x5892c0,6, 0x5892e0,6, 0x589300,17, 0x589400,68, 0x589600,60, 0x589700,4, 0x589720,5, 0x589740,1, 0x589780,2, 0x58978c,2, 0x5897a0,1, 0x5897c0,12, 0x589800,7, 0x589820,5, 0x589900,49, 0x589a00,1, 0x589a08,23, 0x589a80,2, 0x589a8c,3, 0x589a9c,2, 0x589ac0,1, 0x589c00,10, 0x589c40,1, 0x589c50,3, 0x589c80,10, 0x589cc0,12, 0x589d00,3, 0x589e00,1, 0x58a000,4, 0x58a100,42, 0x58a200,1, 0x58a210,3, 0x58a220,3, 0x58a230,3, 0x58a240,1, 0x58a248,3, 0x58a400,4, 0x58a500,58, 0x58a600,1, 0x58a610,3, 0x58a620,3, 0x58a630,3, 0x58a640,1, 0x58a648,3, 0x58a800,4, 0x58a900,36, 0x58aa00,1, 0x58ac00,4, 0x58ac80,27, 0x58ad00,1, 0x58ad10,3, 0x58ad20,3, 0x58ad30,3, 0x58ad40,1, 0x58ad48,3, 0x58ae00,4, 0x58ae80,31, 0x58af00,1, 0x58af10,3, 0x58af20,3, 0x58af30,3, 0x58af40,1, 0x58af48,3, 0x58b000,4, 0x58b040,13, 0x58b080,1, 0x58b200,15, 0x58b240,4, 0x58b260,17, 0x58b2c0,6, 0x58b2e0,6, 0x58b300,17, 0x58b400,68, 0x58b600,60, 0x58b700,4, 0x58b720,5, 0x58b740,1, 0x58b780,2, 0x58b78c,2, 0x58b7a0,1, 0x58b7c0,12, 0x58b800,7, 0x58b820,5, 0x58b900,49, 0x58ba00,1, 0x58ba08,23, 0x58ba80,2, 0x58ba8c,3, 0x58ba9c,2, 0x58bac0,1, 0x58bc00,10, 0x58bc40,1, 0x58bc50,3, 0x58bc80,10, 0x58bcc0,12, 0x58bd00,3, 0x58be00,1, 0x58c000,20, 0x58c080,3, 0x58c090,1, 0x58c098,4, 0x592000,20, 0x592080,10, 0x592100,20, 0x592180,10, 0x592200,5, 0x592400,20, 0x592480,10, 0x592500,20, 0x592580,10, 0x592600,5, 0x592800,3, 0x592840,12, 0x592880,12, 0x5928c0,12, 0x592900,12, 0x592940,12, 0x592980,12, 0x5929c0,12, 0x592a00,12, 0x592c00,12, 0x592c40,7, 0x592c60,10, 0x593000,2, 0x593044,43, 0x593100,7, 0x593120,7, 0x593140,2, 0x59314c,2, 0x593160,2, 0x59316c,2, 0x593180,15, 0x5931c0,2, 0x593200,2, 0x593220,10, 0x593260,20, 0x5932c0,9, 0x593300,15, 0x593340,9, 0x593380,6, 0x5933a0,4, 0x593400,5, 0x594000,53, 0x594100,3, 0x594110,15, 0x594200,53, 0x594300,3, 0x594310,15, 0x594400,5, 0x594420,5, 0x594440,18, 0x594800,3, 0x594810,2, 0x594820,3, 0x594830,2, 0x594840,1, 0x595000,11, 0x595040,11, 0x595080,19, 0x595100,19, 0x595180,25, 0x595200,20, 0x595280,20, 0x595300,8, 0x595340,4, 0x595380,15, 0x5953c0,15, 0x595400,9, 0x595430,5, 0x596000,9, 0x596028,2, 0x596040,11, 0x596070,1, 0x598000,82, 0x598200,2, 0x598240,9, 0x598280,7, 0x598400,82, 0x598600,7, 0x598700,15, 0x598740,9, 0x598780,6, 0x5987a0,6, 0x598800,2, 0x598810,3, 0x598880,26, 0x5988f0,12, 0x5a0000,22, 0x5a0080,22, 0x5a0100,5, 0x5a0120,5, 0x5a0140,3, 0x5a0160,23, 0x5a01c0,7, 0x5a0200,15, 0x5a0240,3, 0x5a0250,3, 0x5a0260,24, 0x5a0300,15, 0x5a0340,3, 0x5a0350,3, 0x5a0360,24, 0x5a0400,15, 0x5a0440,3, 0x5a0450,3, 0x5a0460,24, 0x5a0500,15, 0x5a0540,3, 0x5a0550,3, 0x5a0560,24, 0x5a0800,4, 0x5a0820,16, 0x5a0880,10, 0x5a08c0,10, 0x5a0900,6, 0x5a0920,6, 0x5a0940,4, 0x5a0980,13, 0x5a09c0,13, 0x5a0a00,9, 0x5a1000,86, 0x5a1200,2, 0x5a1240,9, 0x5a1280,7, 0x5a1400,86, 0x5a1600,7, 0x5a1800,86, 0x5a1a00,2, 0x5a1a40,9, 0x5a1a80,7, 0x5a1c00,86, 0x5a1e00,7, 0x5a2000,15, 0x5a2040,4, 0x5a2060,17, 0x5a20c0,6, 0x5a20e0,9, 0x5a2140,10, 0x5a2180,30, 0x5a2200,5, 0x5a4000,22, 0x5a4080,22, 0x5a4100,5, 0x5a4120,5, 0x5a4140,3, 0x5a4160,23, 0x5a41c0,7, 0x5a4200,15, 0x5a4240,3, 0x5a4250,3, 0x5a4260,24, 0x5a4300,15, 0x5a4340,3, 0x5a4350,3, 0x5a4360,24, 0x5a4400,15, 0x5a4440,3, 0x5a4450,3, 0x5a4460,24, 0x5a4500,15, 0x5a4540,3, 0x5a4550,3, 0x5a4560,24, 0x5a4800,4, 0x5a4820,16, 0x5a4880,10, 0x5a48c0,10, 0x5a4900,6, 0x5a4920,6, 0x5a4940,4, 0x5a4980,13, 0x5a49c0,13, 0x5a4a00,9, 0x5a5000,86, 0x5a5200,2, 0x5a5240,9, 0x5a5280,7, 0x5a5400,86, 0x5a5600,7, 0x5a5800,86, 0x5a5a00,2, 0x5a5a40,9, 0x5a5a80,7, 0x5a5c00,86, 0x5a5e00,7, 0x5a6000,15, 0x5a6040,4, 0x5a6060,17, 0x5a60c0,6, 0x5a60e0,9, 0x5a6140,10, 0x5a6180,30, 0x5a6200,5, 0x5a8000,9, 0x5a8040,9, 0x5a8080,5, 0x5a8100,21, 0x5a8160,5, 0x5a8180,45, 0x5a8240,13, 0x5a8280,9, 0x5a8400,9, 0x5a8440,9, 0x5a8480,5, 0x5a8500,21, 0x5a8560,5, 0x5a8580,45, 0x5a8640,13, 0x5a8680,9, 0x5a8800,4, 0x5a8900,15, 0x5a8940,4, 0x5a8960,17, 0x5a89c0,6, 0x5a89e0,34, 0x5ac000,30, 0x5ac080,3, 0x5ac090,19, 0x5ac100,30, 0x5ac180,3, 0x5ac190,19, 0x5ac200,30, 0x5ac280,3, 0x5ac290,19, 0x5ac300,30, 0x5ac380,3, 0x5ac390,19, 0x5ac400,30, 0x5ac480,3, 0x5ac490,19, 0x5ac500,30, 0x5ac580,3, 0x5ac590,19, 0x5ac600,30, 0x5ac680,3, 0x5ac690,19, 0x5ac700,30, 0x5ac780,3, 0x5ac790,19, 0x5ac800,12, 0x5ac840,2, 0x5ac854,8, 0x5ac880,7, 0x5ac8a0,2, 0x5ac8ac,2, 0x5ac8c0,42, 0x5ac980,4, 0x5ac9a0,5, 0x5ac9c0,1, 0x5ad000,3, 0x5ad010,3, 0x5ad020,3, 0x5ad030,3, 0x5ad040,3, 0x5ad050,3, 0x5ad060,3, 0x5ad070,3, 0x5ad080,6, 0x5ad0a0,6, 0x5ad0c0,6, 0x5ad0e0,6, 0x5ad100,6, 0x5ad120,6, 0x5ad140,6, 0x5ad160,6, 0x5ad200,68, 0x5ad400,1, 0x5ad800,2, 0x5ad844,54, 0x5ada00,11, 0x5ada40,11, 0x5ada80,11, 0x5adac0,11, 0x5adb00,11, 0x5adb40,11, 0x5adb80,11, 0x5adbc0,11, 0x5adc00,28, 0x5adc80,7, 0x5adca0,2, 0x5ae000,3, 0x5ae020,6, 0x5ae040,6, 0x5ae060,15, 0x5ae100,26, 0x5ae180,15, 0x5ae200,15, 0x5ae240,4, 0x5ae260,17, 0x5ae2c0,6, 0x5ae2e0,23, 0x5ae340,4, 0x5ae360,17, 0x5ae3c0,6, 0x5ae3e0,20, 0x5c0000,3, 0x5c0080,20, 0x5c0100,10, 0x5c0140,1, 0x5c0150,2, 0x5c015c,2, 0x5c0200,15, 0x5c0240,4, 0x5c0260,17, 0x5c02c0,6, 0x5c02e0,6, 0x5c0300,10, 0x5c0400,4, 0x5c0440,20, 0x5c04c0,9, 0x5c0500,33, 0x5c0600,11, 0x5c0640,11, 0x5c0680,1, 0x5c2000,1, 0x5c2200,4, 0x5c2300,53, 0x5c2400,4, 0x5c2500,40, 0x5c2600,15, 0x5c2640,4, 0x5c2660,17, 0x5c26c0,6, 0x5c26e0,6, 0x5c2700,10, 0x5c2800,20, 0x5c2c00,53, 0x5c2d00,53, 0x5c2e00,1, 0x5c3000,40, 0x5c3100,40, 0x5c3200,1, 0x5c3400,1, 0x5c3800,2, 0x5c383c,51, 0x5c3980,3, 0x5c39c0,2, 0x5c39d0,12, 0x5c4000,2, 0x5c4200,27, 0x5c4280,4, 0x5c42c0,25, 0x5c4340,6, 0x5c4360,6, 0x5c4380,10, 0x5c4400,12, 0x5c4440,1, 0x5c8000,3, 0x5c8080,20, 0x5c8100,10, 0x5c8140,1, 0x5c8150,2, 0x5c815c,2, 0x5c8200,15, 0x5c8240,4, 0x5c8260,17, 0x5c82c0,6, 0x5c82e0,6, 0x5c8300,10, 0x5c8400,4, 0x5c8440,20, 0x5c84c0,9, 0x5c8500,33, 0x5c8600,11, 0x5c8640,11, 0x5c8680,1, 0x5ca000,1, 0x5ca200,4, 0x5ca300,53, 0x5ca400,4, 0x5ca500,40, 0x5ca600,15, 0x5ca640,4, 0x5ca660,17, 0x5ca6c0,6, 0x5ca6e0,6, 0x5ca700,10, 0x5ca800,20, 0x5cac00,53, 0x5cad00,53, 0x5cae00,1, 0x5cb000,40, 0x5cb100,40, 0x5cb200,1, 0x5cb400,1, 0x5cb800,2, 0x5cb83c,51, 0x5cb980,3, 0x5cb9c0,2, 0x5cb9d0,12, 0x5cc000,2, 0x5cc200,27, 0x5cc280,4, 0x5cc2c0,25, 0x5cc340,6, 0x5cc360,6, 0x5cc380,10, 0x5cc400,12, 0x5cc440,1, 0x5d0000,4, 0x5d0020,3, 0x5d0030,2, 0x5d0200,1, 0x5d0220,11, 0x5d0250,5, 0x5d0280,1, 0x5d0288,24, 0x5d0300,2, 0x5d0400,2, 0x5d0414,5, 0x5d0500,36, 0x5d0600,3, 0x5d0800,2, 0x5d1000,1, 0x5d1008,21, 0x5d1080,1, 0x5d1088,21, 0x5d1100,1, 0x5d1108,21, 0x5d1180,1, 0x5d1188,21, 0x5d1200,1, 0x5d1208,21, 0x5d1280,1, 0x5d1288,21, 0x5d1300,1, 0x5d1308,21, 0x5d1380,1, 0x5d1388,21, 0x5d1400,21, 0x5d1800,139, 0x5d1a30,2, 0x5d2000,4, 0x5d2100,39, 0x5d2200,3, 0x5d2210,4, 0x5d4000,2, 0x5d4020,26, 0x5d4090,2, 0x5d409c,2, 0x5d40c0,6, 0x5d4100,2, 0x5d8000,18, 0x5d8050,2, 0x5d805c,2, 0x5d8080,1, 0x5d80a0,2, 0x5d80b0,5, 0x5d8100,2, 0x5d8200,2, 0x5d8400,1, 0x5d8600,27, 0x5d8680,4, 0x5d86c0,25, 0x5d8740,6, 0x5d8760,6, 0x5d8780,12, 0x5d8800,44, 0x5d8900,1, 0x5e0000,1, 0x5e0200,27, 0x5e0280,4, 0x5e02c0,25, 0x5e0340,6, 0x5e0360,6, 0x5e0380,10, 0x5e0400,20, 0x5e0480,3, 0x5e0490,9, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX6LX.csv0000644000175000017500000017570514522641732022524 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16385, 0x010008,4, 0x010024,4, 0x010040,2, 0x010064,1, 0x01006c,14, 0x0100a8,5, 0x0100c4,5, 0x010104,1, 0x010178,34, 0x010204,3, 0x010224,4, 0x010244,3, 0x010264,3, 0x010284,1, 0x010290,4, 0x0102a4,1, 0x0102b4,3, 0x0102c4,1, 0x0102cc,1, 0x0102e4,1, 0x0102ec,1, 0x0102f4,1, 0x0102fc,1, 0x010304,1, 0x01030c,1, 0x010314,1, 0x01031c,1, 0x010324,1, 0x01032c,1, 0x010334,1, 0x01033c,1, 0x010344,3, 0x010354,3, 0x010364,6, 0x010380,32, 0x010404,1, 0x010438,18, 0x010500,3, 0x010524,4, 0x010580,2, 0x010594,3, 0x0105a4,1, 0x0105b0,4, 0x0105c4,3, 0x0105e0,1, 0x0105f0,4, 0x010608,11, 0x010640,1, 0x010648,2, 0x010700,6, 0x010800,1, 0x010820,9, 0x010850,5, 0x010870,5, 0x0108a0,8, 0x010900,1, 0x010920,9, 0x010950,4, 0x01096c,37, 0x010a40,1, 0x010a50,5, 0x010a68,23, 0x010ad8,1, 0x010ae0,4, 0x010b04,3, 0x010b30,3, 0x010b40,1, 0x010b64,1, 0x010b70,11, 0x010bc0,4, 0x010c00,1, 0x010c14,4, 0x010c30,1, 0x010c40,1, 0x010c50,1, 0x010c64,1, 0x010c6c,2, 0x010c90,1, 0x010ca0,1, 0x010cb0,1, 0x010cc0,1, 0x010cd0,1, 0x010ce0,1, 0x010cf0,1, 0x010d10,1, 0x010d20,1, 0x010d30,1, 0x010d40,1, 0x010d50,1, 0x010d60,1, 0x010d70,1, 0x010d80,1, 0x010d90,1, 0x010db0,1, 0x010dc0,1, 0x010de0,1, 0x010df0,1, 0x010e00,1, 0x010e10,1, 0x010e20,1, 0x010e30,1, 0x010e40,1, 0x010e50,1, 0x010e60,1, 0x010e70,1, 0x010e80,1, 0x010e90,1, 0x010ea4,5, 0x010ec0,1, 0x010ed0,1, 0x010f00,65, 0x011010,7, 0x011030,2, 0x011040,1, 0x011060,10, 0x011180,4, 0x0111a0,10, 0x011200,7, 0x011220,4, 0x011234,1, 0x01123c,4, 0x011250,2, 0x011260,1, 0x011270,1, 0x011288,16, 0x0112d0,1, 0x011300,1, 0x011320,8, 0x011344,6, 0x011400,9, 0x011440,3, 0x011460,1, 0x011480,3, 0x011504,5, 0x011580,47, 0x011640,6, 0x011680,6, 0x011800,3, 0x011810,3, 0x011820,3, 0x011830,3, 0x011840,3, 0x011850,3, 0x011860,3, 0x011870,3, 0x011880,3, 0x011890,3, 0x0118a0,3, 0x0118b0,3, 0x0118c0,3, 0x0118d0,3, 0x0118e0,3, 0x0118f0,3, 0x011900,2, 0x012000,215, 0x012400,2, 0x013000,30, 0x01307c,19, 0x013400,59, 0x013500,9, 0x013600,7, 0x013620,7, 0x013660,7, 0x013704,1, 0x013740,18, 0x0137a0,10, 0x0137e0,29, 0x013860,3, 0x013870,7, 0x0138a0,7, 0x0138c0,2, 0x013900,7, 0x013920,7, 0x013960,7, 0x013980,1, 0x014020,14, 0x014080,17, 0x014100,64, 0x014280,32, 0x014304,3, 0x014404,14, 0x014504,1, 0x01450c,12, 0x018004,1, 0x018078,36, 0x018204,5, 0x018300,9, 0x018340,6, 0x018360,2, 0x018400,7, 0x018420,2, 0x018484,5, 0x0184b4,1, 0x0187f0,1, 0x018800,1, 0x018810,1, 0x018820,1, 0x018830,1, 0x018840,1, 0x018850,1, 0x018860,1, 0x018870,1, 0x018880,1, 0x018890,1, 0x018a00,32, 0x018a84,3, 0x018aa4,3, 0x018acc,2, 0x018ad8,12, 0x018b44,1, 0x018b5c,9, 0x018c00,3, 0x018c24,4, 0x018d04,1, 0x018d0c,9, 0x018d34,1, 0x018d40,2, 0x018d50,1, 0x018d58,2, 0x018f04,5, 0x018f40,16, 0x018fe8,1, 0x018ff0,2, 0x019004,5, 0x019080,32, 0x019108,5, 0x019120,1, 0x019130,1, 0x019140,1, 0x019150,1, 0x019160,1, 0x019170,1, 0x019180,1, 0x019190,1, 0x0191b0,2, 0x0191c0,6, 0x019200,1, 0x019810,1, 0x019820,1, 0x019830,1, 0x019840,1, 0x019850,1, 0x019860,1, 0x019870,1, 0x019880,1, 0x019890,1, 0x0198a0,1, 0x0198b0,1, 0x0198c0,1, 0x0198e0,1, 0x0198f0,1, 0x019900,1, 0x019910,1, 0x019920,1, 0x019930,1, 0x019940,1, 0x019998,2, 0x019a08,1, 0x019a20,1, 0x019a28,4, 0x019b00,14, 0x019b3c,3, 0x019b54,1, 0x019b5c,1, 0x019b64,1, 0x019b6c,2, 0x019c00,2, 0x01a020,3, 0x01a030,2, 0x01a04c,3, 0x01a090,1, 0x01a0a0,1, 0x01a0b0,1, 0x01a0c0,1, 0x01a0e8,2, 0x01a200,25, 0x01a280,1, 0x01a2a0,6, 0x01a300,6, 0x01a320,7, 0x01a3c0,2, 0x01a400,3, 0x01a424,4, 0x01a440,7, 0x01a484,3, 0x01a4c0,6, 0x01a4e0,1, 0x01a600,107, 0x01b000,35, 0x01ba00,10, 0x01ba80,3, 0x01c000,3, 0x01c020,4, 0x01c038,4, 0x01c054,5, 0x01c074,5, 0x01c0c4,1, 0x01c0d4,13, 0x01c144,1, 0x01c14c,13, 0x01c184,9, 0x01c1b0,3, 0x01c200,13, 0x01c240,11, 0x01c270,6, 0x01c300,4, 0x01c320,2, 0x01c400,9, 0x020000,34, 0x020090,1, 0x020098,2, 0x020100,40, 0x020200,2, 0x020400,3, 0x020414,2, 0x020420,1, 0x020444,4, 0x020480,2, 0x020490,3, 0x020590,1, 0x020600,7, 0x020800,4, 0x020818,2, 0x020828,14, 0x020880,2, 0x0208a4,1, 0x0208b0,6, 0x0208e4,1, 0x0208f0,4, 0x021138,1, 0x021140,3, 0x021150,1, 0x021160,12, 0x0211a0,7, 0x0211e0,15, 0x021240,2, 0x021264,1, 0x021274,10, 0x0212a0,7, 0x0212c0,1, 0x021300,64, 0x021480,4, 0x0214a0,4, 0x024000,1, 0x024010,3, 0x024020,3, 0x024044,4, 0x024084,1, 0x024094,10, 0x0240c0,2, 0x0240d0,1, 0x0240e0,2, 0x024100,3, 0x024110,3, 0x024120,1, 0x024140,2, 0x024200,1, 0x024210,3, 0x024220,3, 0x024244,4, 0x024284,1, 0x024294,9, 0x0242c0,2, 0x0242d0,1, 0x0242e0,2, 0x024300,5, 0x024320,2, 0x024400,25, 0x024480,2, 0x025000,1, 0x025010,3, 0x025020,3, 0x025044,4, 0x025084,1, 0x025094,3, 0x0250c0,2, 0x0250d0,1, 0x0250e0,2, 0x025100,5, 0x025120,5, 0x025140,1, 0x025180,4, 0x0251a0,5, 0x0251c0,2, 0x025200,64, 0x025380,10, 0x0253b0,3, 0x0253c0,4, 0x0253e0,5, 0x026000,18, 0x026400,18, 0x027000,23, 0x02706c,1, 0x027094,11, 0x027200,1, 0x027280,1, 0x028000,144, 0x028500,16, 0x028600,36, 0x028700,36, 0x0287e0,2, 0x02c000,4, 0x02c020,4, 0x02c040,4, 0x02c060,4, 0x02c080,4, 0x02c0a0,4, 0x02c0c0,4, 0x02c0e0,4, 0x02c100,4, 0x02d000,4, 0x02d100,4, 0x02d200,4, 0x02d300,4, 0x02d400,4, 0x02d500,4, 0x02d600,4, 0x02d700,4, 0x02d800,4, 0x02e000,16, 0x02e080,4, 0x02e0a0,4, 0x02e100,3, 0x02f000,1, 0x02f010,1, 0x02f040,1, 0x02f050,1, 0x02f080,1, 0x02f090,1, 0x02f0c0,1, 0x02f0d0,1, 0x02f100,1, 0x02f110,1, 0x02f140,1, 0x02f150,1, 0x02f180,1, 0x02f190,1, 0x02f1c0,1, 0x02f1d0,1, 0x02f200,1, 0x02f210,1, 0x02f400,18, 0x02f490,2, 0x02f4a0,2, 0x02f4b0,2, 0x02f4d4,1, 0x02f500,2, 0x02f580,1, 0x02f5c0,8, 0x02f600,2, 0x02f60c,3, 0x02f644,2, 0x02f650,2, 0x02f660,3, 0x02f670,1, 0x02f684,1, 0x02f68c,7, 0x030080,1, 0x030090,3, 0x0300a0,3, 0x0300c4,4, 0x030100,194, 0x030420,30, 0x0304a0,2, 0x030504,4, 0x030520,6, 0x030600,4, 0x030680,21, 0x030800,261, 0x030c20,5, 0x030c40,5, 0x030c60,5, 0x030c80,5, 0x030ca0,5, 0x030cc0,5, 0x030ce0,5, 0x030d00,5, 0x030d20,5, 0x030d40,5, 0x030d60,5, 0x030d80,5, 0x030da0,5, 0x030dc0,5, 0x030de0,5, 0x030e00,5, 0x030e20,5, 0x030e40,5, 0x030e60,5, 0x030e80,5, 0x030ea0,5, 0x030ec0,5, 0x030ee0,5, 0x030f00,5, 0x030f20,5, 0x030f40,5, 0x030f60,5, 0x030f80,5, 0x030fa0,5, 0x030fc0,5, 0x030fe0,5, 0x031000,2, 0x031084,1, 0x0310b4,53, 0x031194,5, 0x0311b4,1, 0x0311bc,10, 0x0311e8,4, 0x031204,5, 0x031280,2, 0x031404,5, 0x031440,1, 0x031450,15, 0x031500,64, 0x031804,5, 0x031844,1, 0x031850,4, 0x031864,1, 0x031874,3, 0x031884,1, 0x03188c,1, 0x031894,3, 0x0318c0,4, 0x0318e0,5, 0x031900,9, 0x031a00,4, 0x031a20,60, 0x031b18,2, 0x031b40,16, 0x031c00,2, 0x031c84,1, 0x031cb0,27, 0x031d20,17, 0x031d68,6, 0x032000,3, 0x032010,3, 0x032020,3, 0x032030,3, 0x032040,3, 0x032050,3, 0x032060,3, 0x032070,3, 0x032080,9, 0x032100,3, 0x032110,3, 0x032120,3, 0x032130,3, 0x032140,3, 0x032150,3, 0x032160,3, 0x032170,3, 0x032180,9, 0x032204,1, 0x03227c,35, 0x032400,4, 0x032420,5, 0x032440,1, 0x032500,15, 0x032540,2, 0x032550,3, 0x032560,4, 0x032600,25, 0x032680,1, 0x0326a0,6, 0x032700,4, 0x032740,11, 0x032800,155, 0x032c00,11, 0x032c40,11, 0x032c80,1, 0x032d00,8, 0x033000,19, 0x033a00,10, 0x033a80,3, 0x034000,1, 0x034080,1, 0x034100,1, 0x034180,1, 0x034200,1, 0x034280,1, 0x034300,1, 0x034380,1, 0x034400,1, 0x034480,1, 0x034500,4, 0x034514,3, 0x034524,1, 0x03452c,3, 0x034800,4, 0x034c00,4, 0x035000,1, 0x035040,1, 0x035080,1, 0x0350c0,1, 0x035100,1, 0x035140,1, 0x035184,6, 0x0351a0,9, 0x0351d0,8, 0x035200,32, 0x036000,14, 0x036040,14, 0x036080,14, 0x0360c0,14, 0x036100,14, 0x036140,14, 0x036180,14, 0x0361c0,14, 0x036200,14, 0x036240,14, 0x036280,14, 0x0362c0,14, 0x036300,14, 0x036340,14, 0x036380,14, 0x0363c0,14, 0x036400,14, 0x036440,14, 0x036480,14, 0x0364c0,14, 0x036500,14, 0x036540,14, 0x036580,14, 0x0365c0,14, 0x036600,14, 0x036640,14, 0x036680,14, 0x0366c0,14, 0x036700,14, 0x036740,14, 0x036780,14, 0x0367c0,14, 0x038000,65, 0x038108,4, 0x038124,4, 0x038200,1, 0x038240,4, 0x038260,7, 0x038280,1, 0x0382a0,4, 0x0382bc,7, 0x038300,7, 0x038320,7, 0x038340,1, 0x038380,20, 0x038400,64, 0x040000,31, 0x040080,6, 0x0400a8,5, 0x0400c0,24, 0x040140,1, 0x040150,4, 0x040200,35, 0x040400,31, 0x040480,6, 0x0404a8,5, 0x0404c0,24, 0x040540,1, 0x040550,4, 0x040600,35, 0x040800,11, 0x040830,45, 0x0408f0,16, 0x040940,12, 0x040a00,2, 0x040a40,10, 0x040b00,4, 0x040c00,1, 0x040c08,2, 0x040c20,1, 0x040c28,4, 0x041000,2, 0x041080,27, 0x0410f4,1, 0x041100,8, 0x041138,2, 0x041400,2, 0x041480,27, 0x0414f4,1, 0x041500,8, 0x041538,2, 0x041800,8, 0x041824,2, 0x041830,7, 0x042000,7, 0x042020,4, 0x042100,7, 0x042120,4, 0x042200,17, 0x042248,20, 0x042304,1, 0x04230c,4, 0x042320,6, 0x042480,8, 0x042500,2, 0x042514,5, 0x042534,5, 0x042600,2, 0x042610,1, 0x042618,1, 0x042620,1, 0x042640,6, 0x044000,2, 0x044084,1, 0x0440b4,21, 0x044184,1, 0x0441b8,20, 0x044284,1, 0x0442b8,27, 0x044380,35, 0x044410,1, 0x044430,4, 0x044444,3, 0x044454,1, 0x04445c,2, 0x044484,1, 0x0444c0,32, 0x044544,5, 0x044564,5, 0x044580,2, 0x044590,6, 0x0445c0,8, 0x044600,1, 0x044608,4, 0x044620,3, 0x044640,1, 0x044648,4, 0x044660,3, 0x044680,5, 0x044700,1, 0x044708,4, 0x044720,3, 0x044730,2, 0x044740,1, 0x044748,4, 0x044760,3, 0x044770,2, 0x044780,5, 0x0447c0,3, 0x0447d0,3, 0x044c00,2, 0x044d04,1, 0x044d4c,47, 0x044e84,1, 0x044ebc,24, 0x044f24,4, 0x044f40,3, 0x044f50,6, 0x044f80,2, 0x044f94,1, 0x044f9c,2, 0x045000,2, 0x04500c,3, 0x045044,5, 0x045080,10, 0x045100,2, 0x045110,2, 0x045120,2, 0x045130,2, 0x045140,1, 0x045150,10, 0x047000,6, 0x047020,6, 0x047040,6, 0x047060,2, 0x04706c,2, 0x047080,7, 0x0470a0,7, 0x0470c0,4, 0x0470e0,5, 0x047100,7, 0x047120,6, 0x047140,6, 0x047160,7, 0x047180,7, 0x0471c0,7, 0x0471e0,3, 0x047200,7, 0x047220,7, 0x047400,5, 0x047420,5, 0x047440,1, 0x047480,5, 0x0474a0,5, 0x0474c0,5, 0x047500,3, 0x047510,3, 0x047520,1, 0x047540,3, 0x047550,3, 0x047560,1, 0x047580,7, 0x0475a0,7, 0x0475c0,1, 0x048000,8, 0x048040,1, 0x048048,2, 0x048060,1, 0x048068,4, 0x048080,2, 0x0480a4,1, 0x0480b4,7, 0x048240,24, 0x048300,25, 0x048380,1, 0x0483a0,6, 0x048400,75, 0x048600,1, 0x048608,4, 0x048620,1, 0x048628,4, 0x048800,2, 0x048880,3, 0x048890,3, 0x0488a0,3, 0x0488b0,3, 0x0488c0,2, 0x048a44,5, 0x048a80,6, 0x048aa0,3, 0x048ab0,3, 0x048ad0,4, 0x048c04,4, 0x048c20,3, 0x048c30,1, 0x048c80,13, 0x048cc0,5, 0x049000,35, 0x049a00,10, 0x049a80,3, 0x04a000,10, 0x04a034,3, 0x04a100,256, 0x04a800,5, 0x04a824,3, 0x04a880,128, 0x04ac00,5, 0x04ac24,3, 0x04ac80,128, 0x04b004,1, 0x04b00c,8, 0x04b030,1, 0x04b038,2, 0x04b100,9, 0x04b140,9, 0x04b200,8, 0x04b240,8, 0x050000,35, 0x050090,3, 0x050900,1, 0x051000,4, 0x051084,1, 0x0510c0,16, 0x051180,1, 0x0511c0,2, 0x0511e4,1, 0x0511f4,5, 0x051224,1, 0x051234,5, 0x051264,1, 0x051274,5, 0x0512a4,1, 0x0512b4,5, 0x0512e4,1, 0x0512f4,4, 0x051308,1, 0x051400,2, 0x051410,2, 0x051424,2, 0x051444,3, 0x051500,11, 0x051540,11, 0x051584,1, 0x0515c0,26, 0x051630,2, 0x051644,3, 0x051654,1, 0x05165c,2, 0x051680,2, 0x051694,2, 0x0516a4,1, 0x0516ac,3, 0x0516c0,3, 0x051700,8, 0x051740,8, 0x051780,1, 0x051788,2, 0x0517a0,1, 0x0517a8,4, 0x051800,2, 0x05180c,3, 0x05181c,1, 0x051980,3, 0x051c04,1, 0x051c40,16, 0x051d00,6, 0x051e04,1, 0x051e14,5, 0x051e34,1, 0x051e3c,3, 0x051f00,4, 0x052000,35, 0x052100,25, 0x052180,1, 0x0521a0,6, 0x052200,7, 0x052220,6, 0x052240,7, 0x052260,2, 0x05226c,3, 0x054000,9, 0x054080,19, 0x054100,4, 0x054180,30, 0x054200,4, 0x054300,35, 0x054400,2, 0x054484,1, 0x0544b4,19, 0x054600,4, 0x054644,1, 0x054650,12, 0x054800,13, 0x054880,1, 0x054888,8, 0x0548c0,6, 0x0548e0,1, 0x0548e8,2, 0x054904,1, 0x054a00,17, 0x054a80,17, 0x054b00,1, 0x054c00,6, 0x054c20,6, 0x054c40,1, 0x054c80,1, 0x055000,1, 0x055008,14, 0x055048,2, 0x055058,2, 0x060000,8, 0x060100,4, 0x060120,1, 0x060128,4, 0x060140,7, 0x060160,9, 0x060188,4, 0x0601a0,4, 0x0601b8,6, 0x0601d8,2, 0x060200,1, 0x060240,7, 0x06027c,1, 0x060284,1, 0x06028c,1, 0x060294,1, 0x06029c,1, 0x060304,5, 0x060324,4, 0x060340,1, 0x060350,7, 0x060380,2, 0x060390,1, 0x0603b4,3, 0x060800,12, 0x060838,3, 0x060860,8, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,3, 0x060a94,1, 0x060a9c,5, 0x060ac4,1, 0x060ae4,7, 0x060b04,1, 0x060b14,13, 0x060b4c,4, 0x060bf0,12, 0x060c24,1, 0x060c2c,1, 0x060c34,1, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062074,1, 0x06207c,7, 0x0620a0,1, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e0,3, 0x0621f0,3, 0x062200,1, 0x062208,4, 0x062404,5, 0x062440,7, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,8, 0x062908,1, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,4, 0x063000,1, 0x063010,4, 0x063024,3, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,4, 0x0630c4,1, 0x0630cc,1, 0x0630d4,3, 0x0630e4,3, 0x063100,1, 0x063124,3, 0x063140,3, 0x063150,1, 0x063164,3, 0x063180,8, 0x0631bc,4, 0x0631d0,1, 0x0631e0,1, 0x0631e8,4, 0x063208,1, 0x063210,1, 0x063218,16, 0x063260,6, 0x063280,7, 0x0632a0,6, 0x0632c0,1, 0x0632c8,4, 0x0632e0,2, 0x0632f4,1, 0x0632fc,10, 0x064004,5, 0x064020,1, 0x064028,4, 0x064100,3, 0x0642c0,2, 0x0642e4,1, 0x0642f4,9, 0x064320,6, 0x064340,6, 0x064380,4, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,5, 0x064440,1, 0x064464,3, 0x064500,2, 0x064584,1, 0x0645b8,18, 0x064804,1, 0x064880,2, 0x0648c4,15, 0x065020,6, 0x065040,2, 0x065078,2, 0x065114,1, 0x065200,43, 0x065300,1, 0x065400,25, 0x065480,1, 0x0654a0,6, 0x065f00,2, 0x066000,9, 0x066440,3, 0x066450,3, 0x067000,19, 0x067a00,10, 0x067a80,3, 0x070004,5, 0x070020,6, 0x070040,2, 0x07004c,2, 0x070104,1, 0x07010c,1, 0x0703e0,8, 0x070410,25, 0x070480,5, 0x070500,3, 0x070510,1, 0x07051c,1, 0x070524,4, 0x070540,4, 0x070560,5, 0x070580,2, 0x070700,32, 0x070800,6, 0x070820,6, 0x070840,6, 0x070860,6, 0x070880,6, 0x0708a0,6, 0x0708c0,6, 0x0708e0,6, 0x070900,6, 0x070920,6, 0x070940,6, 0x070960,6, 0x070980,6, 0x0709a0,6, 0x0709c0,6, 0x0709e0,6, 0x070a00,6, 0x070a20,6, 0x070a40,6, 0x070a60,6, 0x070a80,6, 0x070aa0,6, 0x070ac0,6, 0x070ae0,6, 0x070b00,6, 0x070b20,6, 0x070b40,6, 0x070b60,6, 0x070b80,6, 0x070ba0,6, 0x070bc0,6, 0x070be0,6, 0x070c00,4, 0x070c30,2, 0x070d00,2, 0x070d84,1, 0x070da0,24, 0x070e04,1, 0x070e40,22, 0x070ea0,6, 0x070ec0,2, 0x070ecc,3, 0x070ee0,2, 0x070eec,2, 0x071000,2, 0x071094,1, 0x071100,2, 0x071184,1, 0x0711c0,16, 0x071204,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071444,1, 0x07144c,1, 0x071454,1, 0x07145c,2, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,6, 0x072020,2, 0x07202c,2, 0x072040,4, 0x072804,5, 0x072880,2, 0x0728a0,6, 0x0728c0,2, 0x0728cc,2, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,8, 0x07383c,1, 0x074800,6, 0x074820,6, 0x074840,2, 0x074880,19, 0x074900,25, 0x074980,1, 0x0749a0,6, 0x074a00,4, 0x074b00,9, 0x075000,5, 0x075020,3, 0x075100,4, 0x075120,7, 0x075200,1, 0x075208,4, 0x076000,19, 0x080000,30, 0x080300,15, 0x080340,6, 0x080360,6, 0x08037c,3, 0x08038c,3, 0x0803c0,2, 0x0803e0,3, 0x0803f0,3, 0x080404,5, 0x080804,1, 0x080874,36, 0x080a00,2, 0x080b04,1, 0x080b74,37, 0x080c14,5, 0x080c34,5, 0x080c64,1, 0x080c6c,7, 0x080ca4,1, 0x080cac,7, 0x080ce4,1, 0x080cec,5, 0x081200,1, 0x081210,4, 0x081224,6, 0x081240,2, 0x081254,5, 0x081280,2, 0x081294,3, 0x0812a4,1, 0x0812b0,9, 0x0812fc,3, 0x08130c,1, 0x081344,3, 0x081360,4, 0x081520,1, 0x081528,15, 0x08156c,6, 0x08158c,1, 0x0815c0,5, 0x0815e0,5, 0x081600,5, 0x081620,5, 0x081640,5, 0x081660,5, 0x081680,5, 0x0816a0,5, 0x0816c0,5, 0x0816e4,3, 0x081704,4, 0x08171c,15, 0x081800,2, 0x081824,1, 0x081830,9, 0x081860,3, 0x081870,1, 0x081c00,5, 0x081c20,5, 0x081c40,5, 0x081c60,5, 0x081c80,5, 0x081ca0,5, 0x081cc0,5, 0x081ce0,5, 0x081d00,5, 0x081d20,5, 0x081d40,5, 0x081d60,5, 0x081d80,5, 0x081da0,5, 0x081dc0,5, 0x081de0,5, 0x081e00,5, 0x081e20,5, 0x081e40,5, 0x081e60,5, 0x081e80,5, 0x081ea0,5, 0x081ec0,5, 0x081ee0,5, 0x081f00,5, 0x081f20,5, 0x081f40,5, 0x081f60,5, 0x081f80,5, 0x081fa0,5, 0x081fc0,5, 0x081fe0,5, 0x082000,30, 0x082300,15, 0x082340,6, 0x082360,6, 0x08237c,3, 0x08238c,3, 0x0823c0,2, 0x0823e0,3, 0x0823f0,3, 0x082404,4, 0x082804,1, 0x082874,35, 0x082904,1, 0x082974,37, 0x082a24,1, 0x082a2c,7, 0x082a64,1, 0x082a6c,7, 0x082ac4,1, 0x082ad8,12, 0x082b24,1, 0x082b2c,5, 0x082f00,2, 0x083200,1, 0x083210,7, 0x083240,5, 0x083260,2, 0x08326c,1, 0x083274,3, 0x083284,3, 0x0832a4,1, 0x0832b0,9, 0x0832fc,5, 0x083340,1, 0x083348,16, 0x0833a4,1, 0x0833b0,4, 0x083400,5, 0x083420,5, 0x083440,5, 0x083460,5, 0x083480,5, 0x0834a0,5, 0x0834c0,5, 0x0834e0,5, 0x083500,5, 0x083520,5, 0x083540,5, 0x083560,5, 0x083580,5, 0x0835a0,5, 0x0835c0,5, 0x0835e0,5, 0x083600,5, 0x083620,5, 0x083640,5, 0x083660,5, 0x083680,5, 0x0836a0,5, 0x0836c0,5, 0x0836e0,5, 0x083700,5, 0x083720,5, 0x083740,5, 0x083760,5, 0x083780,5, 0x0837a0,5, 0x0837c0,5, 0x0837e0,5, 0x084000,30, 0x084300,15, 0x084340,6, 0x084360,6, 0x08437c,3, 0x08438c,3, 0x0843c0,2, 0x0843e0,3, 0x0843f0,3, 0x084404,4, 0x084804,1, 0x084874,35, 0x084904,1, 0x084974,37, 0x084a24,1, 0x084a30,6, 0x084a54,5, 0x084a74,5, 0x084a94,3, 0x084ac0,2, 0x084ae4,1, 0x084af0,6, 0x084b14,3, 0x084f00,2, 0x085000,2, 0x085044,1, 0x085064,13, 0x085200,1, 0x085210,4, 0x085224,3, 0x085280,8, 0x0852a4,1, 0x0852b0,8, 0x085304,3, 0x085320,2, 0x0853c0,5, 0x0853fc,2, 0x085408,7, 0x085470,3, 0x085600,70, 0x085720,6, 0x085800,5, 0x085820,5, 0x085840,5, 0x085860,5, 0x085880,5, 0x0858a0,5, 0x0858c0,5, 0x0858e0,5, 0x085c00,4, 0x086000,2, 0x086020,2, 0x086044,3, 0x086054,1, 0x086080,2, 0x086400,13, 0x086440,13, 0x086800,75, 0x086a80,4, 0x086c00,22, 0x086c60,7, 0x086c80,7, 0x086ca0,6, 0x086cc0,6, 0x086ce0,7, 0x086d00,6, 0x086d20,6, 0x086d40,6, 0x086d60,7, 0x086d80,1, 0x086e00,25, 0x086e80,1, 0x086ea0,6, 0x086f00,1, 0x086f08,4, 0x086f20,1, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b8,7, 0x0871e0,6, 0x087208,6, 0x087800,8, 0x087840,4, 0x087860,4, 0x087880,8, 0x087900,5, 0x088000,19, 0x090204,1, 0x090224,23, 0x090500,19, 0x090580,7, 0x0905a0,2, 0x0905b4,5, 0x0905e0,1, 0x0905e8,4, 0x090800,45, 0x0908b8,4, 0x0908d0,2, 0x090a04,1, 0x090a40,25, 0x090aa8,2, 0x090ac0,9, 0x090ae8,2, 0x090c20,10, 0x090c50,3, 0x090c60,3, 0x090c70,3, 0x090c80,4, 0x090ca0,5, 0x090cc0,32, 0x090e20,10, 0x090e50,3, 0x090e60,3, 0x090e70,3, 0x090e80,4, 0x090ea0,5, 0x090ec0,32, 0x091004,3, 0x091800,11, 0x091840,22, 0x0918a0,8, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,3, 0x093210,2, 0x093404,1, 0x093440,16, 0x093600,1, 0x093608,4, 0x093804,1, 0x09383c,29, 0x0938b8,2, 0x0938c8,1, 0x0938d0,10, 0x094080,3, 0x0940c0,1, 0x0940c8,4, 0x094100,25, 0x094180,1, 0x0941a0,6, 0x094200,4, 0x094220,6, 0x094300,3, 0x094324,4, 0x094344,12, 0x094378,4, 0x0943a0,8, 0x095000,19, 0x095a00,10, 0x095a80,3, 0x096000,1, 0x096010,4, 0x096024,1, 0x09602c,4, 0x096104,1, 0x09610c,7, 0x096204,4, 0x096488,1, 0x096498,4, 0x0964b0,4, 0x096504,4, 0x096584,4, 0x096700,34, 0x096800,11, 0x096840,4, 0x096884,3, 0x0968a0,6, 0x0968c0,6, 0x0968e0,6, 0x096900,6, 0x096920,6, 0x096940,6, 0x097100,8, 0x097140,1, 0x097200,18, 0x097254,7, 0x097274,6, 0x097300,2, 0x097384,1, 0x0973bc,17, 0x098000,3, 0x099000,19, 0x09a000,11, 0x09a040,2, 0x09a060,6, 0x09a080,7, 0x09a104,1, 0x09a164,40, 0x09a208,2, 0x09a224,3, 0x09a240,1, 0x09a250,4, 0x09a264,6, 0x09a280,20, 0x09a300,25, 0x09a380,1, 0x09a3a0,6, 0x09a400,1, 0x09a408,4, 0x09a420,2, 0x09a460,1, 0x09a468,10, 0x09a500,3, 0x09a510,2, 0x09a524,3, 0x09a600,2, 0x09a680,1, 0x09a6c0,2, 0x09a6d4,6, 0x09a6f0,1, 0x09a6f8,2, 0x09a800,1, 0x09a820,3, 0x09a830,4, 0x09aa00,92, 0x09ac00,2, 0x09b000,67, 0x09b800,260, 0x0a1800,2, 0x0a1844,1, 0x0a1850,14, 0x0a18c4,1, 0x0a18d0,15, 0x0a1910,2, 0x0a1920,2, 0x0a192c,4, 0x0a1940,1, 0x0a1948,2, 0x0a1960,6, 0x0a1980,2, 0x0a19c4,1, 0x0a19d0,22, 0x0a1a40,10, 0x0a1a80,10, 0x0a1ac0,10, 0x0a1b00,10, 0x0a1c00,2, 0x0a1c44,1, 0x0a1c50,12, 0x0a2004,5, 0x0a2020,6, 0x0a2040,6, 0x0a2400,2, 0x0a240c,9, 0x0a2440,1, 0x0a2450,4, 0x0a2464,6, 0x0a2480,1, 0x0a24a0,8, 0x0a24d0,10, 0x0a2500,5, 0x0a2520,5, 0x0a2540,5, 0x0a2560,5, 0x0a2580,4, 0x0a25ac,5, 0x0a2804,5, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c64,6, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,5, 0x0a3040,2, 0x0a3060,3, 0x0a3070,3, 0x0a31fc,10, 0x0a3230,2, 0x0a323c,4, 0x0a3250,2, 0x0a3260,1, 0x0a3270,6, 0x0a32a0,6, 0x0a3300,1, 0x0a3310,6, 0x0a3a90,1, 0x0a3aa0,1, 0x0a3aa8,4, 0x0a3ac0,5, 0x0a3ae0,5, 0x0a3b00,64, 0x0a3c04,1, 0x0a3c84,42, 0x0a3d3c,1, 0x0a4100,1, 0x0a4108,4, 0x0a4120,1, 0x0a4140,8, 0x0a4200,1, 0x0a4208,5, 0x0a4220,2, 0x0a422c,7, 0x0a4264,1, 0x0a4270,6, 0x0a42c4,1, 0x0a42d8,16, 0x0a4400,51, 0x0a44d8,5, 0x0a44f0,3, 0x0a4500,5, 0x0a451c,2, 0x0a4528,4, 0x0a4540,1, 0x0a4560,1, 0x0a4804,4, 0x0a4840,2, 0x0a4860,10, 0x0a488c,2, 0x0a48a0,6, 0x0a48c0,2, 0x0a48cc,2, 0x0a48e0,6, 0x0a4c00,6, 0x0a4c1c,1, 0x0a4c50,8, 0x0a4c78,25, 0x0a4d00,2, 0x0a4d84,1, 0x0a4dc0,16, 0x0a4e04,3, 0x0a4e20,6, 0x0a5000,26, 0x0a5080,6, 0x0a6000,4, 0x0a6020,10, 0x0a604c,2, 0x0a6060,1, 0x0a6068,4, 0x0a6080,10, 0x0a60b8,1, 0x0a60c0,4, 0x0a6100,25, 0x0a6180,1, 0x0a61a0,6, 0x0a6400,75, 0x0a6680,6, 0x0a66a0,2, 0x0a66c0,7, 0x0a7000,19, 0x0a7a00,10, 0x0a7a80,3, 0x0a8000,3, 0x0a8010,10, 0x0a8040,9, 0x0a8070,14, 0x0a80ac,1, 0x0a80b4,13, 0x0a80ec,6, 0x0a8108,4, 0x0a8120,1, 0x0a8128,4, 0x0a8140,8, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,8, 0x0a89b0,3, 0x0a89c0,1, 0x0a8a00,2, 0x0a8a0c,4, 0x0a8a20,2, 0x0a8a34,1, 0x0a8a3c,17, 0x0a8ac0,4, 0x0a8ad4,1, 0x0a8ae8,5, 0x0a8b00,2, 0x0a8b80,4, 0x0a9804,4, 0x0aa020,1, 0x0aa028,3, 0x0aa100,25, 0x0aa180,1, 0x0aa1a0,6, 0x0aa400,48, 0x0aa500,12, 0x0aa540,1, 0x0b0000,32, 0x0b0100,25, 0x0b0180,1, 0x0b01a0,6, 0x0b0204,4, 0x0b0218,1, 0x0b0220,6, 0x0b0240,1, 0x0b0248,2, 0x0b0400,32, 0x0b0500,25, 0x0b0580,1, 0x0b05a0,6, 0x0b0604,4, 0x0b0618,1, 0x0b0620,6, 0x0b0640,1, 0x0b0648,2, 0x0b0800,32, 0x0b0900,25, 0x0b0980,1, 0x0b09a0,6, 0x0b0a04,4, 0x0b0a18,1, 0x0b0a20,6, 0x0b0a40,1, 0x0b0a48,2, 0x0b0c00,32, 0x0b0d00,25, 0x0b0d80,1, 0x0b0da0,6, 0x0b0e04,4, 0x0b0e18,1, 0x0b0e20,6, 0x0b0e40,1, 0x0b0e48,2, 0x0b1000,32, 0x0b1100,25, 0x0b1180,1, 0x0b11a0,6, 0x0b1204,4, 0x0b1218,1, 0x0b1220,6, 0x0b1240,1, 0x0b1248,2, 0x0b1400,32, 0x0b1500,25, 0x0b1580,1, 0x0b15a0,6, 0x0b1604,4, 0x0b1618,1, 0x0b1620,6, 0x0b1640,1, 0x0b1648,2, 0x0b1800,32, 0x0b1900,25, 0x0b1980,1, 0x0b19a0,6, 0x0b1a04,4, 0x0b1a18,1, 0x0b1a20,6, 0x0b1a40,1, 0x0b1a48,2, 0x0b1c00,32, 0x0b1d00,25, 0x0b1d80,1, 0x0b1da0,6, 0x0b1e04,4, 0x0b1e18,1, 0x0b1e20,6, 0x0b1e40,1, 0x0b1e48,2, 0x0b2000,88, 0x0b2180,35, 0x0b4000,194, 0x0b4310,2, 0x0b4320,2, 0x0b4340,5, 0x0b4364,31, 0x0b4400,9, 0x0b4480,32, 0x0b4804,4, 0x0b4900,1, 0x0b4920,8, 0x0b4980,1, 0x0b49a0,8, 0x0b4a04,4, 0x0b4a24,4, 0x0b4a44,3, 0x0b4b00,25, 0x0b4b80,1, 0x0b4ba0,6, 0x0b4c00,64, 0x0b4e04,5, 0x0b4e40,4, 0x0b4e60,2, 0x0b4e70,2, 0x0b4e80,8, 0x0b4ea8,4, 0x0b4ec0,7, 0x0b4ee0,7, 0x0b4f00,7, 0x0b4f20,1, 0x0b4f28,4, 0x0b5000,7, 0x0b5040,6, 0x0b5080,6, 0x0b5100,6, 0x0b5140,6, 0x0b5180,6, 0x0b51c0,6, 0x0b5200,7, 0x0b5240,1, 0x0b5260,6, 0x0b5800,91, 0x0b5a00,4, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5da0,1, 0x0b5da8,4, 0x0b5dc0,28, 0x0b5e40,12, 0x0b5e80,8, 0x0b5f00,14, 0x0b5f40,2, 0x0b6000,16, 0x0b6080,22, 0x0b6200,46, 0x0b62c0,2, 0x0b6300,24, 0x0b6364,1, 0x0b6400,20, 0x0b6454,1, 0x0b6500,16, 0x0b6544,1, 0x0b6600,42, 0x0b66b0,2, 0x0b6700,12, 0x0b6734,1, 0x0b6800,20, 0x0b6854,1, 0x0b6900,14, 0x0b693c,1, 0x0b6a00,8, 0x0b6a24,1, 0x0b6b00,11, 0x0b6b30,2, 0x0b6b3c,1, 0x0b6c00,30, 0x0b6c7c,1, 0x0b6d00,12, 0x0b6d34,1, 0x0b6e00,27, 0x0b6e70,2, 0x0b6e7c,1, 0x0b6f00,20, 0x0b6f54,1, 0x0b7000,8, 0x0b7024,1, 0x0b7100,6, 0x0b711c,1, 0x0b7200,8, 0x0b7224,1, 0x0b7300,8, 0x0b7324,1, 0x0b7500,25, 0x0b7580,1, 0x0b75a0,6, 0x0b7600,6, 0x0b7620,6, 0x0b7640,6, 0x0b7660,6, 0x0b7680,6, 0x0b76a0,6, 0x0b76c0,6, 0x0b76e0,6, 0x0b7700,6, 0x0b7720,6, 0x0b7740,6, 0x0b8000,35, 0x0b8a00,10, 0x0b8a80,3, 0x0b8ac0,1, 0x0c0000,37, 0x0c0104,1, 0x0c0140,16, 0x0c0184,7, 0x0c01b4,4, 0x0c01c8,10, 0x0c0400,9, 0x0c0440,9, 0x0c0480,9, 0x0c04c0,9, 0x0c0500,9, 0x0c0540,9, 0x0c0580,9, 0x0c05c0,9, 0x0c0604,4, 0x0c0620,1, 0x0c0630,5, 0x0c0650,5, 0x0c0670,1, 0x0c0680,1, 0x0c0690,1, 0x0c06a0,6, 0x0c06c8,1, 0x0c06e0,15, 0x0c0720,7, 0x0c0740,1, 0x0c0780,2, 0x0c078c,2, 0x0c07a0,2, 0x0c07ac,3, 0x0c07c0,3, 0x0c07d0,3, 0x0c0800,1, 0x0c0810,1, 0x0c0844,1, 0x0c0854,4, 0x0c0880,10, 0x0c0900,11, 0x0c0940,11, 0x0c0980,5, 0x0c0c00,1, 0x0c0c10,4, 0x0c0c24,6, 0x0c0c40,1, 0x0c0c50,5, 0x0c0c70,5, 0x0c0c90,4, 0x0c0d04,4, 0x0c0d20,1, 0x0c0d30,1, 0x0c0d40,9, 0x0c0d80,12, 0x0c0e00,22, 0x0c0e80,4, 0x0c0f00,6, 0x0c0f20,6, 0x0c0f40,1, 0x0c0f80,9, 0x0c1000,1, 0x0c1010,4, 0x0c1024,6, 0x0c1040,1, 0x0c1050,5, 0x0c1070,5, 0x0c1090,4, 0x0c1104,4, 0x0c1120,1, 0x0c1130,1, 0x0c1140,9, 0x0c1180,12, 0x0c1200,22, 0x0c1280,4, 0x0c1300,6, 0x0c1320,6, 0x0c1340,1, 0x0c1380,9, 0x0c2000,32, 0x0c2100,48, 0x0c2400,3, 0x0c2410,3, 0x0c2440,11, 0x0c2480,3, 0x0c2490,3, 0x0c24c0,11, 0x0c2500,3, 0x0c2510,3, 0x0c2540,11, 0x0c2580,3, 0x0c2590,3, 0x0c25c0,11, 0x0c2600,3, 0x0c2610,3, 0x0c2640,11, 0x0c2680,3, 0x0c2690,3, 0x0c26c0,11, 0x0c2700,3, 0x0c2710,3, 0x0c2740,11, 0x0c2780,3, 0x0c2790,3, 0x0c27c0,11, 0x0c2800,2, 0x0c280c,2, 0x0c2818,18, 0x0c2900,1, 0x0c2908,11, 0x0c2a00,21, 0x0c2a60,5, 0x0c3000,3, 0x0c3024,1, 0x0c302c,5, 0x0c3100,3, 0x0c3110,2, 0x0c3128,2, 0x0c3180,1, 0x0c3188,4, 0x0c31a0,2, 0x0c3200,6, 0x0c3220,6, 0x0c3240,2, 0x0c3300,9, 0x0c3380,6, 0x0c33a0,6, 0x0c33c0,1, 0x0c3400,25, 0x0c3480,1, 0x0c34a0,6, 0x0c3500,35, 0x0c4000,35, 0x0c4a00,10, 0x0c4a80,3, 0x0d0000,37, 0x0d0104,1, 0x0d0140,16, 0x0d0184,7, 0x0d01b4,4, 0x0d01c8,10, 0x0d0400,9, 0x0d0440,9, 0x0d0480,9, 0x0d04c0,9, 0x0d0500,9, 0x0d0540,9, 0x0d0580,9, 0x0d05c0,9, 0x0d0604,4, 0x0d0620,1, 0x0d0630,5, 0x0d0650,5, 0x0d0670,1, 0x0d0680,1, 0x0d0690,1, 0x0d06a0,6, 0x0d06c8,1, 0x0d06e0,15, 0x0d0720,7, 0x0d0740,1, 0x0d0780,2, 0x0d078c,2, 0x0d07a0,2, 0x0d07ac,3, 0x0d07c0,3, 0x0d07d0,3, 0x0d0800,1, 0x0d0810,1, 0x0d0844,1, 0x0d0854,4, 0x0d0880,10, 0x0d0900,11, 0x0d0940,11, 0x0d0980,5, 0x0d0c00,1, 0x0d0c10,4, 0x0d0c24,6, 0x0d0c40,1, 0x0d0c50,5, 0x0d0c70,5, 0x0d0c90,4, 0x0d0d04,4, 0x0d0d20,1, 0x0d0d30,1, 0x0d0d40,9, 0x0d0d80,12, 0x0d0e00,22, 0x0d0e80,4, 0x0d0f00,6, 0x0d0f20,6, 0x0d0f40,1, 0x0d0f80,9, 0x0d1000,1, 0x0d1010,4, 0x0d1024,6, 0x0d1040,1, 0x0d1050,5, 0x0d1070,5, 0x0d1090,4, 0x0d1104,4, 0x0d1120,1, 0x0d1130,1, 0x0d1140,9, 0x0d1180,12, 0x0d1200,22, 0x0d1280,4, 0x0d1300,6, 0x0d1320,6, 0x0d1340,1, 0x0d1380,9, 0x0d2000,32, 0x0d2100,48, 0x0d2400,3, 0x0d2410,3, 0x0d2440,11, 0x0d2480,3, 0x0d2490,3, 0x0d24c0,11, 0x0d2500,3, 0x0d2510,3, 0x0d2540,11, 0x0d2580,3, 0x0d2590,3, 0x0d25c0,11, 0x0d2600,3, 0x0d2610,3, 0x0d2640,11, 0x0d2680,3, 0x0d2690,3, 0x0d26c0,11, 0x0d2700,3, 0x0d2710,3, 0x0d2740,11, 0x0d2780,3, 0x0d2790,3, 0x0d27c0,11, 0x0d2800,2, 0x0d280c,2, 0x0d2818,18, 0x0d2900,1, 0x0d2908,11, 0x0d2a00,21, 0x0d2a60,5, 0x0d3000,3, 0x0d3024,1, 0x0d302c,5, 0x0d3100,3, 0x0d3110,2, 0x0d3128,2, 0x0d3180,1, 0x0d3188,4, 0x0d31a0,2, 0x0d3200,6, 0x0d3220,6, 0x0d3240,2, 0x0d3300,9, 0x0d3380,6, 0x0d33a0,6, 0x0d33c0,1, 0x0d3400,25, 0x0d3480,1, 0x0d34a0,6, 0x0d3500,35, 0x0d4000,35, 0x0d4a00,10, 0x0d4a80,3, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0160,2, 0x0e0180,3, 0x0e019c,18, 0x0e01ec,4, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0240,1, 0x0e027c,6, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0560,2, 0x0e0580,3, 0x0e059c,18, 0x0e05ec,4, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0640,1, 0x0e067c,6, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0960,2, 0x0e0980,3, 0x0e099c,18, 0x0e09ec,4, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0a40,1, 0x0e0a7c,6, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d60,2, 0x0e0d80,3, 0x0e0d9c,18, 0x0e0dec,4, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e0e40,1, 0x0e0e7c,6, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1160,2, 0x0e1180,3, 0x0e119c,18, 0x0e11ec,4, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1240,1, 0x0e127c,6, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1560,2, 0x0e1580,3, 0x0e159c,18, 0x0e15ec,4, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1640,1, 0x0e167c,6, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1960,2, 0x0e1980,3, 0x0e199c,18, 0x0e19ec,4, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1a40,1, 0x0e1a7c,6, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d60,2, 0x0e1d80,3, 0x0e1d9c,18, 0x0e1dec,4, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e1e40,1, 0x0e1e7c,6, 0x0e3008,23, 0x0e3070,2, 0x0e3080,2, 0x0e308c,1, 0x0e3098,3, 0x0e3200,17, 0x0e3248,4, 0x0e3260,5, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,5, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,5, 0x0e3300,1, 0x0e3308,4, 0x0e3320,5, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,4, 0x0e34bc,11, 0x0e34f0,68, 0x0e3660,9, 0x0e3690,13, 0x0e36e0,2, 0x0e36ec,2, 0x0e3804,1, 0x0e387c,103, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,5, 0x0e3c40,16, 0x0e3c84,1, 0x0e3c8c,2, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,36, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e4900,3, 0x0e4910,5, 0x0e4928,2, 0x0e4980,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c00,14, 0x0e4c40,1, 0x0e4c48,1, 0x0e4c58,10, 0x0e4c84,1, 0x0e4ca0,8, 0x0e4d00,12, 0x0e4d40,1, 0x0e4e00,26, 0x0e4e80,25, 0x0e5000,35, 0x0e5a00,10, 0x0e5a80,3, 0x0e6000,28, 0x0e6074,1, 0x0e607c,1, 0x0e6084,1, 0x0e60a0,10, 0x0e6100,66, 0x0e6224,1, 0x0e622c,12, 0x0e6264,1, 0x0e626c,11, 0x0e62c8,12, 0x0e62fc,2, 0x0e6380,64, 0x0e6484,1, 0x0e64c0,23, 0x0e6520,7, 0x0e65c8,12, 0x0e65fc,2, 0x0e6680,64, 0x0e6784,1, 0x0e67c0,23, 0x0e6820,7, 0x0e6844,6, 0x0e6860,1, 0x0e6868,4, 0x0e6880,1, 0x0e6898,3, 0x0e68a8,4, 0x0e68c4,2, 0x0e6900,6, 0x0e6920,6, 0x0e6940,6, 0x0e6960,6, 0x0e6980,65, 0x0e6a88,3, 0x0e6a98,3, 0x0e6aa8,3, 0x0e6ab8,2, 0x0e6b00,36, 0x0e6c00,38, 0x0e6ca0,6, 0x0e6cc0,5, 0x0e6ce0,5, 0x0e6d00,5, 0x0e6d20,5, 0x0e6d40,1, 0x0e6d80,9, 0x0e6da8,4, 0x0e7000,40, 0x0e7120,1, 0x0e7178,54, 0x0e7300,33, 0x0e7388,4, 0x0e73a0,4, 0x0e7450,3, 0x0e7464,3, 0x0e74d0,4, 0x0e7500,1, 0x0e7510,12, 0x0e7580,3, 0x0e75c0,3, 0x0e7600,19, 0x0e7680,19, 0x0e7708,2, 0x0e7720,7, 0x0e7740,7, 0x0e7760,4, 0x0e7800,99, 0x0e7a00,16, 0x0e7a80,27, 0x0e7b00,3, 0x0e7b80,4, 0x0e7bc0,9, 0x0e7c00,107, 0x0e7e00,62, 0x0e7f20,14, 0x0e7f70,3, 0x0e7f88,1, 0x0e7f90,12, 0x0e8000,11, 0x0e8030,1, 0x0e8080,2, 0x0e80c4,2, 0x0e80d0,1, 0x0e80d8,1, 0x0e80e0,1, 0x0e80f4,3, 0x0e9000,128, 0x0e9208,256, 0x0e9610,128, 0x0e9818,1, 0x0e9fc0,40, 0x0ea078,1, 0x0ea100,2, 0x0f0000,4, 0x0f0014,2, 0x0f0020,10, 0x0f0054,1, 0x0f005c,7, 0x0f007c,2, 0x0f0088,20, 0x0f00dc,1, 0x0f01e0,4, 0x0f0200,6, 0x0f0228,4, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,5, 0x0f0480,8, 0x0f0500,28, 0x0f0580,7, 0x0f05a0,1, 0x0f05c0,14, 0x0f0af0,3, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba0,1, 0x0f0ba8,1, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,60, 0x0f0d50,18, 0x0f0dd0,3, 0x0f0de0,1, 0x0f0ffc,4, 0x0f1030,2, 0x0f1040,10, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,24, 0x0f1400,67, 0x0f1800,19, 0x0f1880,11, 0x0f18d0,3, 0x0f1c00,4, 0x0f1c1c,2, 0x0f1de8,9, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f00,6, 0x0f1f20,1, 0x0f1f28,2, 0x0f1f40,2, 0x0f1f80,14, 0x0f1fc0,4, 0x0f2000,24, 0x0f2080,24, 0x0f2100,24, 0x0f2180,24, 0x0f2200,24, 0x0f2280,24, 0x0f2300,24, 0x0f2380,24, 0x0f2400,24, 0x0f24a4,1, 0x0f2800,2, 0x0f2840,16, 0x0f3000,5, 0x0f3024,1, 0x0f302c,1, 0x0f3204,1, 0x0f32f0,68, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0fc000,5, 0x0fc01c,12, 0x0fc05c,3, 0x0fc080,8, 0x0fc100,5, 0x0fc11c,12, 0x0fc15c,3, 0x0fc180,8, 0x0fc200,5, 0x0fc21c,12, 0x0fc25c,3, 0x0fc280,8, 0x0fc300,5, 0x0fc31c,12, 0x0fc35c,3, 0x0fc380,8, 0x0fc400,5, 0x0fc41c,12, 0x0fc45c,3, 0x0fc480,8, 0x0fc500,5, 0x0fc51c,12, 0x0fc55c,3, 0x0fc580,8, 0x0fc600,5, 0x0fc61c,12, 0x0fc65c,3, 0x0fc680,8, 0x0fc700,5, 0x0fc71c,12, 0x0fc75c,3, 0x0fc780,8, 0x101100,1, 0x101140,2, 0x101200,19, 0x101250,4, 0x101264,2, 0x101274,3, 0x101a00,2, 0x101a10,6, 0x101ab4,2, 0x104000,4, 0x104014,2, 0x104020,3, 0x104030,4, 0x10404c,4, 0x104060,3, 0x104880,17, 0x105000,3, 0x105010,5, 0x105204,1, 0x105214,5, 0x105300,3, 0x105494,4, 0x105500,36, 0x1055c8,9, 0x1055f0,2, 0x106000,82, 0x106780,16, 0x106800,16, 0x106844,1, 0x106858,3, 0x108000,46, 0x108100,46, 0x108204,4, 0x108220,2, 0x108230,3, 0x108240,10, 0x108280,4, 0x1082e0,6, 0x108300,1, 0x108340,2, 0x1083c0,2, 0x1083d8,2, 0x1083e4,10, 0x108500,2, 0x10850c,3, 0x10851c,2, 0x108540,17, 0x109020,8, 0x109080,5, 0x10909c,6, 0x1090c0,1, 0x109100,8, 0x109580,3, 0x109800,32, 0x10a010,4, 0x10a040,1, 0x10a11c,1, 0x10a140,18, 0x10a200,1, 0x10a220,7, 0x10a800,19, 0x10b010,4, 0x10b040,2, 0x10b800,19, 0x10c000,1, 0x10c040,1, 0x10c100,2, 0x10c200,1, 0x10c2dc,1, 0x10c2e4,7, 0x10c424,2, 0x10c800,16, 0x10d000,32, 0x10d200,19, 0x10d480,3, 0x10d500,5, 0x10d524,7, 0x10d544,7, 0x10d564,7, 0x10d590,1, 0x10d5a0,8, 0x10d704,7, 0x10d904,7, 0x10db00,1, 0x10db80,9, 0x10dbb0,1, 0x10dbc0,1, 0x10dbc8,8, 0x10dc00,8, 0x10dc40,7, 0x10dc60,7, 0x10dc80,7, 0x10dd00,2, 0x10dd0c,3, 0x10e100,10, 0x10e140,4, 0x10e158,1, 0x10e200,25, 0x10e280,1, 0x10e2a0,6, 0x10e300,25, 0x10e380,1, 0x10e3a0,6, 0x10e400,25, 0x10e480,1, 0x10e4a0,6, 0x10e500,25, 0x10ed00,4, 0x10ed20,1, 0x111c00,7, 0x111e00,2, 0x113000,16, 0x113048,3, 0x11305c,6, 0x114800,4, 0x114900,4, 0x114a00,4, 0x114b00,4, 0x114c00,4, 0x114d00,4, 0x115000,5, 0x115020,5, 0x115040,5, 0x115060,5, 0x115080,5, 0x1150a0,5, 0x1150c0,5, 0x1150e0,5, 0x115100,5, 0x115120,5, 0x115140,5, 0x115160,5, 0x115180,5, 0x1151a0,5, 0x1151c0,5, 0x1151e0,5, 0x115200,5, 0x115220,5, 0x115240,5, 0x115260,5, 0x115280,5, 0x1152a0,5, 0x1152c0,5, 0x1152e0,5, 0x115300,5, 0x115320,5, 0x115340,5, 0x115360,5, 0x115380,5, 0x1153a0,5, 0x1153c0,5, 0x1153e0,5, 0x115400,5, 0x115420,5, 0x115440,5, 0x115460,5, 0x115480,5, 0x1154a0,5, 0x1154c0,5, 0x1154e0,5, 0x115500,5, 0x115520,5, 0x115540,5, 0x115560,5, 0x115580,5, 0x1155a0,5, 0x1155c0,5, 0x1155e0,5, 0x115600,5, 0x115620,5, 0x115640,5, 0x115660,5, 0x115680,5, 0x1156a0,5, 0x1156c0,5, 0x1156e0,5, 0x115700,5, 0x115720,5, 0x115740,5, 0x115760,5, 0x115780,5, 0x1157a0,5, 0x1157c0,5, 0x1157e0,5, 0x115800,12, 0x115840,1, 0x115850,12, 0x115884,1, 0x1158c0,16, 0x116000,5, 0x116020,5, 0x116040,5, 0x116060,5, 0x116080,5, 0x1160a0,5, 0x1160c0,5, 0x1160e0,5, 0x116100,5, 0x116120,5, 0x116140,5, 0x116160,5, 0x116180,5, 0x1161a0,5, 0x1161c0,5, 0x1161e0,5, 0x116200,5, 0x116220,5, 0x116240,5, 0x116260,5, 0x116280,5, 0x1162a0,5, 0x1162c0,5, 0x1162e0,5, 0x116300,5, 0x116320,5, 0x116340,5, 0x116360,5, 0x116380,5, 0x1163a0,5, 0x1163c0,5, 0x1163e0,5, 0x116400,5, 0x116420,5, 0x116440,5, 0x116460,5, 0x116480,5, 0x1164a0,5, 0x1164c0,5, 0x1164e0,5, 0x116500,5, 0x116520,5, 0x116540,5, 0x116560,5, 0x116580,5, 0x1165a0,5, 0x1165c0,5, 0x1165e0,5, 0x116600,5, 0x116620,5, 0x116640,5, 0x116660,5, 0x116680,5, 0x1166a0,5, 0x1166c0,5, 0x1166e0,5, 0x116700,5, 0x116720,5, 0x116740,5, 0x116760,5, 0x116780,5, 0x1167a0,5, 0x1167c0,5, 0x1167e0,5, 0x116800,12, 0x116840,1, 0x116850,12, 0x116884,1, 0x1168c0,8, 0x11e000,19, 0x11ea00,10, 0x11ea80,3, 0x11fffc,1, 0x140010,10, 0x140040,7, 0x140064,6, 0x140080,5, 0x140100,11, 0x140130,7, 0x140180,16, 0x142000,18, 0x142064,1, 0x142088,15, 0x143000,2, 0x143010,11, 0x143040,3, 0x143ffc,26, 0x144800,25, 0x146000,19, 0x146a00,10, 0x146a80,3, 0x147000,11, 0x147030,5, 0x147048,1, 0x1470a0,1, 0x150000,8, 0x150024,10, 0x150050,22, 0x150100,8, 0x150124,10, 0x150150,22, 0x150200,8, 0x150224,10, 0x150250,22, 0x150300,8, 0x150324,10, 0x150350,22, 0x150400,8, 0x150424,10, 0x150450,22, 0x150500,8, 0x150524,10, 0x150550,22, 0x150600,8, 0x150624,10, 0x150650,22, 0x150700,8, 0x150724,10, 0x150750,22, 0x150800,8, 0x150824,10, 0x150850,22, 0x150904,1, 0x150914,10, 0x150948,11, 0x150980,1, 0x1509a0,6, 0x1509c0,2, 0x1509cc,2, 0x155000,72, 0x157000,17, 0x157048,9, 0x157070,3, 0x157080,1, 0x157090,13, 0x1570d0,1, 0x1570e0,6, 0x158000,7, 0x158020,3, 0x158030,7, 0x158050,1, 0x158080,7, 0x1580a0,3, 0x1580b0,7, 0x1580d0,1, 0x158100,7, 0x158120,3, 0x158130,7, 0x158150,1, 0x158180,7, 0x1581a0,3, 0x1581b0,7, 0x1581d0,1, 0x158200,7, 0x158220,3, 0x158230,7, 0x158250,1, 0x158280,7, 0x1582a0,3, 0x1582b0,7, 0x1582d0,1, 0x158300,7, 0x158320,3, 0x158330,7, 0x158350,1, 0x158380,7, 0x1583a0,3, 0x1583b0,7, 0x1583d0,1, 0x158800,20, 0x159008,2, 0x159018,2, 0x159040,3, 0x159050,2, 0x1590a0,2, 0x1590ac,1, 0x1590b8,1, 0x1590c4,2, 0x159200,48, 0x159400,96, 0x159600,5, 0x159620,5, 0x159640,5, 0x159660,5, 0x159680,5, 0x1596a0,5, 0x1596c0,5, 0x1596e0,5, 0x159700,29, 0x159778,3, 0x159800,32, 0x159900,8, 0x159944,1, 0x159950,6, 0x159980,8, 0x1599c0,8, 0x159a00,40, 0x159ac0,8, 0x159b00,2, 0x15a000,8, 0x15a040,8, 0x15a080,8, 0x15a0c0,8, 0x15a100,8, 0x15a140,8, 0x15a188,6, 0x15a200,3, 0x15a210,2, 0x15a21c,12, 0x15a250,3, 0x15a260,2, 0x15a270,2, 0x15aa00,8, 0x15aa40,1, 0x15aa48,3, 0x15ab00,7, 0x15ab80,8, 0x15abc0,4, 0x15abe0,2, 0x15ac00,5, 0x15ac20,5, 0x15ac40,5, 0x15ac60,5, 0x15ac80,5, 0x15aca0,5, 0x15acc0,5, 0x15ace0,5, 0x15ad00,29, 0x15ad78,3, 0x15ae00,8, 0x15b000,97, 0x15f000,21, 0x15f060,5, 0x15f080,6, 0x15f0a0,5, 0x15f0c0,6, 0x15f100,21, 0x15f160,5, 0x15f180,6, 0x15f1a0,5, 0x15f1c0,6, 0x15f200,21, 0x15f260,5, 0x15f280,6, 0x15f2a0,5, 0x15f2c0,6, 0x15f300,21, 0x15f360,5, 0x15f380,6, 0x15f3a0,5, 0x15f3c0,6, 0x15f400,9, 0x15f448,7, 0x15f468,2, 0x15f474,9, 0x15f49c,2, 0x15f500,14, 0x15f540,14, 0x15f580,24, 0x15f600,19, 0x15f650,3, 0x15f660,25, 0x15f6c8,1, 0x15f6d0,2, 0x15f6e0,7, 0x15f700,1, 0x15f708,2, 0x15f7fc,129, 0x15fa04,9, 0x15fc04,1, 0x15fc24,21, 0x15fc80,16, 0x15fd00,8, 0x15fd40,3, 0x15fd50,3, 0x15fd60,3, 0x15fd84,1, 0x15fd8c,1, 0x15fd94,1, 0x15fd9c,4, 0x15fdb0,3, 0x15fdc0,8, 0x15fe00,13, 0x15fe3c,1, 0x15fe44,2, 0x15fe50,1, 0x15fe58,1, 0x15fe60,1, 0x15fe68,1, 0x15fe70,1, 0x15fe78,1, 0x15fe80,3, 0x15fe98,1, 0x15fea0,3, 0x15feb0,3, 0x15ff00,1, 0x15ff40,1, 0x15ff80,1, 0x160000,13, 0x160040,2, 0x160054,4, 0x160080,27, 0x160100,12, 0x160140,14, 0x160180,28, 0x160200,6, 0x160240,6, 0x16025c,3, 0x160280,5, 0x1602a0,8, 0x160400,14, 0x160440,14, 0x160480,14, 0x1604c0,14, 0x160540,3, 0x160600,7, 0x160620,14, 0x160680,5, 0x1606a0,7, 0x160800,13, 0x160840,2, 0x160854,4, 0x160880,27, 0x160900,12, 0x160940,14, 0x160980,28, 0x160a00,6, 0x160a40,6, 0x160a5c,3, 0x160a80,5, 0x160aa0,8, 0x160c00,14, 0x160c40,14, 0x160c80,14, 0x160cc0,14, 0x160d40,3, 0x160e00,7, 0x160e20,14, 0x160e80,5, 0x160ea0,7, 0x161000,13, 0x161040,2, 0x161054,4, 0x161080,27, 0x161100,12, 0x161140,14, 0x161180,28, 0x161200,6, 0x161240,6, 0x16125c,3, 0x161280,5, 0x1612a0,8, 0x161400,14, 0x161440,14, 0x161480,14, 0x1614c0,14, 0x161540,3, 0x161600,7, 0x161620,14, 0x161680,5, 0x1616a0,7, 0x161800,13, 0x161840,2, 0x161854,4, 0x161880,27, 0x161900,12, 0x161940,14, 0x161980,28, 0x161a00,6, 0x161a40,6, 0x161a5c,3, 0x161a80,5, 0x161aa0,8, 0x161c00,14, 0x161c40,14, 0x161c80,14, 0x161cc0,14, 0x161d40,3, 0x161e00,7, 0x161e20,14, 0x161e80,5, 0x161ea0,7, 0x162000,8, 0x162040,8, 0x162080,1, 0x162098,6, 0x162100,10, 0x162140,3, 0x162150,2, 0x162180,2, 0x162200,6, 0x162220,18, 0x162280,4, 0x162300,8, 0x162400,2, 0x162480,2, 0x163000,40, 0x163100,64, 0x164000,13, 0x164040,2, 0x164054,4, 0x164080,27, 0x164100,12, 0x164140,14, 0x164180,28, 0x164200,6, 0x164240,6, 0x16425c,3, 0x164280,5, 0x1642a0,8, 0x164400,14, 0x164440,14, 0x164480,14, 0x1644c0,14, 0x164540,3, 0x164600,7, 0x164620,14, 0x164680,5, 0x1646a0,7, 0x164800,13, 0x164840,2, 0x164854,4, 0x164880,27, 0x164900,12, 0x164940,14, 0x164980,28, 0x164a00,6, 0x164a40,6, 0x164a5c,3, 0x164a80,5, 0x164aa0,8, 0x164c00,14, 0x164c40,14, 0x164c80,14, 0x164cc0,14, 0x164d40,3, 0x164e00,7, 0x164e20,14, 0x164e80,5, 0x164ea0,7, 0x165000,13, 0x165040,2, 0x165054,4, 0x165080,27, 0x165100,12, 0x165140,14, 0x165180,28, 0x165200,6, 0x165240,6, 0x16525c,3, 0x165280,5, 0x1652a0,8, 0x165400,14, 0x165440,14, 0x165480,14, 0x1654c0,14, 0x165540,3, 0x165600,7, 0x165620,14, 0x165680,5, 0x1656a0,7, 0x165800,13, 0x165840,2, 0x165854,4, 0x165880,27, 0x165900,12, 0x165940,14, 0x165980,28, 0x165a00,6, 0x165a40,6, 0x165a5c,3, 0x165a80,5, 0x165aa0,8, 0x165c00,14, 0x165c40,14, 0x165c80,14, 0x165cc0,14, 0x165d40,3, 0x165e00,7, 0x165e20,14, 0x165e80,5, 0x165ea0,7, 0x166000,8, 0x166040,8, 0x166080,1, 0x166098,6, 0x166100,10, 0x166140,3, 0x166150,2, 0x166180,2, 0x166200,6, 0x166220,18, 0x166280,4, 0x166300,8, 0x166400,2, 0x166480,2, 0x167000,40, 0x167100,64, 0x180020,3, 0x180034,1, 0x180d00,1, 0x180d08,4, 0x180d20,4, 0x181008,2, 0x181100,10, 0x181140,7, 0x181160,2, 0x181200,1, 0x181240,9, 0x181280,9, 0x181300,1, 0x181340,9, 0x181380,9, 0x181404,1, 0x18141c,14, 0x181460,1, 0x181480,16, 0x181500,1, 0x181810,4, 0x181a00,6, 0x181a20,2, 0x181a2c,1, 0x181a34,4, 0x181a50,2, 0x181a68,12, 0x181aa4,1, 0x181ab0,9, 0x181adc,9, 0x181bf0,2, 0x181c00,20, 0x181cd8,43, 0x181e00,1, 0x182404,20, 0x182494,36, 0x182530,2, 0x182540,3, 0x182550,1, 0x182564,3, 0x182580,48, 0x182800,1, 0x182900,10, 0x182a00,6, 0x182a80,4, 0x182c00,2, 0x183020,6, 0x183100,2, 0x183184,1, 0x1831a4,23, 0x183300,3, 0x183310,1, 0x183384,1, 0x1833ac,21, 0x183404,1, 0x1834ec,70, 0x183610,2, 0x184084,1, 0x1840a0,13, 0x18501c,10, 0x185048,2, 0x185080,9, 0x185104,6, 0x185120,1, 0x185140,7, 0x185280,9, 0x1852c0,1, 0x185410,2, 0x185600,8, 0x185700,8, 0x185800,8, 0x186000,4, 0x186020,2, 0x18602c,2, 0x186044,5, 0x186060,1, 0x186104,1, 0x186170,36, 0x188004,1, 0x188084,1, 0x1880a4,8, 0x188104,1, 0x188180,2, 0x188200,1, 0x18820c,7, 0x18822c,3, 0x188280,16, 0x188304,7, 0x188324,1, 0x188334,1, 0x188500,5, 0x188518,7, 0x188540,1, 0x188548,4, 0x188580,2, 0x18c010,1, 0x18c018,1, 0x18c020,7, 0x18c0a0,4, 0x18c0c4,1, 0x18c480,8, 0x18d010,1, 0x18d018,1, 0x18d020,4, 0x18d880,8, 0x18e008,2, 0x18e018,1, 0x18e820,8, 0x18f880,1, 0x18f8a0,6, 0x18f8c4,3, 0x18f910,2, 0x18f950,2, 0x18fa00,45, 0x18fb00,10, 0x18fb40,3, 0x18fb80,3, 0x18fb98,2, 0x18fba4,1, 0x18fbb0,14, 0x18fc00,2, 0x18fd04,1, 0x18fd7c,34, 0x190000,72, 0x190ffc,1, 0x192000,5, 0x192024,2, 0x192204,9, 0x19222c,3, 0x19223c,1, 0x1922e0,33, 0x194000,4, 0x194020,4, 0x194040,4, 0x194060,4, 0x194080,4, 0x1940a0,4, 0x1940c0,4, 0x1940e0,4, 0x194100,4, 0x194120,4, 0x194140,4, 0x194160,4, 0x194180,4, 0x1941a0,4, 0x1941c0,4, 0x1941e0,4, 0x194200,4, 0x194220,4, 0x194f00,2, 0x194f10,2, 0x194ffc,1, 0x196080,8, 0x197000,43, 0x197280,8, 0x197320,3, 0x197330,3, 0x197380,8, 0x1973c8,8, 0x197420,7, 0x197440,7, 0x197460,7, 0x197480,7, 0x1974a0,23, 0x197500,7, 0x197520,7, 0x197540,14, 0x197580,6, 0x1975a0,6, 0x1975e0,6, 0x197620,10, 0x19764c,2, 0x197800,3, 0x197824,5, 0x197844,5, 0x197864,5, 0x1978a4,7, 0x197a04,1, 0x198000,25, 0x198080,1, 0x1980a0,6, 0x198100,25, 0x198180,1, 0x1981a0,6, 0x198200,25, 0x198280,1, 0x1982a0,6, 0x199000,19, 0x19b000,1, 0x19b00c,1, 0x19b014,2, 0x19b020,1, 0x19b030,1, 0x19b038,3, 0x19c000,4, 0x19f000,1, 0x1a0000,4, 0x1a0014,1, 0x1a0020,3, 0x1a0030,3, 0x1a0040,13, 0x1a0078,4, 0x1a009c,29, 0x1a0114,1, 0x1a0120,3, 0x1a0130,3, 0x1a0140,13, 0x1a0178,4, 0x1a019c,29, 0x1a0214,1, 0x1a0220,3, 0x1a0230,3, 0x1a0240,13, 0x1a0278,4, 0x1a029c,29, 0x1a0314,1, 0x1a0320,3, 0x1a0330,3, 0x1a0340,13, 0x1a0378,4, 0x1a039c,29, 0x1a0420,2, 0x1a042c,2, 0x1a0440,4, 0x1a0460,2, 0x1a046c,2, 0x1a0480,4, 0x1a04a0,2, 0x1a04ac,2, 0x1a04c0,4, 0x1a04e0,2, 0x1a04ec,2, 0x1a0500,2, 0x1a050c,4, 0x1a0520,2, 0x1a052c,4, 0x1a0540,2, 0x1a054c,4, 0x1a0560,2, 0x1a056c,4, 0x1a05c0,1, 0x1a0600,16, 0x1a0800,18, 0x1a0880,13, 0x1a08f0,3, 0x1a0900,18, 0x1a0980,13, 0x1a09f0,3, 0x1a0a00,18, 0x1a0a80,13, 0x1a0af0,3, 0x1a0b00,18, 0x1a0b80,13, 0x1a0bf0,3, 0x1a0c00,24, 0x1a0c80,24, 0x1a0d00,24, 0x1a0d80,24, 0x1a0e00,4, 0x1a0e20,4, 0x1a0e40,4, 0x1a0e60,4, 0x1a0e80,37, 0x1a0f20,5, 0x1a0f40,5, 0x1a0f60,5, 0x1a1000,12, 0x1a1200,1, 0x1a1208,6, 0x1a1228,9, 0x1a1280,1, 0x1a1288,6, 0x1a12a8,9, 0x1a1300,1, 0x1a1308,6, 0x1a1328,9, 0x1a1380,1, 0x1a1388,6, 0x1a13a8,9, 0x1a1400,4, 0x1a1420,2, 0x1a1480,4, 0x1a14a0,2, 0x1a1500,4, 0x1a1520,2, 0x1a1580,4, 0x1a15a0,2, 0x1a1600,71, 0x1a1720,7, 0x1a1740,7, 0x1a1760,7, 0x1a1780,4, 0x1a179c,11, 0x1a17d0,2, 0x1a17e0,2, 0x1a17f0,2, 0x1a1800,7, 0x1a1820,7, 0x1a1840,7, 0x1a1860,7, 0x1a18c0,64, 0x1a1aa0,2, 0x1a1ac0,8, 0x1a2000,7, 0x1a2020,4, 0x1a2040,4, 0x1a2060,7, 0x1a2080,7, 0x1a20a0,4, 0x1a20c0,4, 0x1a20e0,7, 0x1a2100,7, 0x1a2120,4, 0x1a2140,4, 0x1a2160,7, 0x1a2180,7, 0x1a21a0,4, 0x1a21c0,4, 0x1a21e0,7, 0x1a2200,19, 0x1a2280,19, 0x1a2300,19, 0x1a2380,19, 0x1a2400,14, 0x1a243c,9, 0x1a2464,14, 0x1a24a0,2, 0x1a24ac,2, 0x1a2500,14, 0x1a253c,9, 0x1a2564,14, 0x1a25a0,2, 0x1a25ac,2, 0x1a2600,14, 0x1a263c,9, 0x1a2664,14, 0x1a26a0,2, 0x1a26ac,2, 0x1a2700,14, 0x1a273c,9, 0x1a2764,14, 0x1a27a0,2, 0x1a27ac,2, 0x1a2800,19, 0x1a2880,19, 0x1a2900,19, 0x1a2980,19, 0x1a2a10,2, 0x1a2a1c,1, 0x1a2a50,2, 0x1a2a5c,1, 0x1a2a90,2, 0x1a2a9c,1, 0x1a2ad0,2, 0x1a2adc,1, 0x1a2b00,1, 0x1a2b20,1, 0x1a2b28,4, 0x1a2b40,1, 0x1a2b60,1, 0x1a2b68,4, 0x1a2b80,1, 0x1a2ba0,1, 0x1a2ba8,4, 0x1a2bc0,1, 0x1a2be0,1, 0x1a2be8,4, 0x1a2c00,7, 0x1a2c20,1, 0x1a2c54,18, 0x1a2ca0,1, 0x1a2cd4,18, 0x1a2d20,1, 0x1a2d54,18, 0x1a2da0,1, 0x1a2dd4,12, 0x1a2e08,6, 0x1a3000,32, 0x1a3100,7, 0x1a3120,7, 0x1a3140,7, 0x1a3160,7, 0x1a3180,3, 0x1a8000,21, 0x1ac000,6, 0x1ac01c,9, 0x1ac080,11, 0x1ac100,11, 0x1ac204,1, 0x1ac224,21, 0x1ac280,16, 0x1ac300,11, 0x1ac800,21, 0x1ac860,5, 0x1ac880,6, 0x1ac8a0,5, 0x1ac8c0,6, 0x1ac900,21, 0x1ac960,5, 0x1ac980,6, 0x1ac9a0,5, 0x1ac9c0,6, 0x1aca00,21, 0x1aca60,5, 0x1aca80,6, 0x1acaa0,5, 0x1acac0,6, 0x1acb00,21, 0x1acb60,5, 0x1acb80,6, 0x1acba0,5, 0x1acbc0,6, 0x1acc00,9, 0x1acc48,7, 0x1acc68,2, 0x1acc74,9, 0x1acc9c,2, 0x1acd00,14, 0x1acd40,14, 0x1acd80,24, 0x1ace00,19, 0x1ace50,3, 0x1ace60,25, 0x1acec8,1, 0x1aced0,2, 0x1acee0,7, 0x1acf00,1, 0x1acf08,2, 0x1acffc,20, 0x1ad050,22, 0x1ad100,19, 0x1ad150,22, 0x1ad200,19, 0x1ad250,22, 0x1ad300,19, 0x1ad350,22, 0x1ad400,19, 0x1ad450,22, 0x1ad504,1, 0x1ad514,10, 0x1ad548,4, 0x1ad560,5, 0x1ad580,1, 0x1ad5a0,6, 0x1ad5c0,2, 0x1ad5cc,2, 0x1ae000,19, 0x1aea00,10, 0x1aea80,3, 0x1aeac0,1, 0x1af000,1, 0x1af008,3, 0x1af038,1, 0x1af044,1, 0x1af050,2, 0x1af060,8, 0x1af100,13, 0x1af140,19, 0x1af190,5, 0x1b0000,13, 0x1b0040,2, 0x1b0054,4, 0x1b0080,27, 0x1b0100,12, 0x1b0140,14, 0x1b0180,28, 0x1b0200,6, 0x1b0240,6, 0x1b025c,3, 0x1b0280,5, 0x1b02a0,8, 0x1b0400,14, 0x1b0440,14, 0x1b0480,14, 0x1b04c0,14, 0x1b0540,3, 0x1b0600,7, 0x1b0620,14, 0x1b0680,5, 0x1b06a0,7, 0x1b0800,13, 0x1b0840,2, 0x1b0854,4, 0x1b0880,27, 0x1b0900,12, 0x1b0940,14, 0x1b0980,28, 0x1b0a00,6, 0x1b0a40,6, 0x1b0a5c,3, 0x1b0a80,5, 0x1b0aa0,8, 0x1b0c00,14, 0x1b0c40,14, 0x1b0c80,14, 0x1b0cc0,14, 0x1b0d40,3, 0x1b0e00,7, 0x1b0e20,14, 0x1b0e80,5, 0x1b0ea0,7, 0x1b1000,13, 0x1b1040,2, 0x1b1054,4, 0x1b1080,27, 0x1b1100,12, 0x1b1140,14, 0x1b1180,28, 0x1b1200,6, 0x1b1240,6, 0x1b125c,3, 0x1b1280,5, 0x1b12a0,8, 0x1b1400,14, 0x1b1440,14, 0x1b1480,14, 0x1b14c0,14, 0x1b1540,3, 0x1b1600,7, 0x1b1620,14, 0x1b1680,5, 0x1b16a0,7, 0x1b1800,13, 0x1b1840,2, 0x1b1854,4, 0x1b1880,27, 0x1b1900,12, 0x1b1940,14, 0x1b1980,28, 0x1b1a00,6, 0x1b1a40,6, 0x1b1a5c,3, 0x1b1a80,5, 0x1b1aa0,8, 0x1b1c00,14, 0x1b1c40,14, 0x1b1c80,14, 0x1b1cc0,14, 0x1b1d40,3, 0x1b1e00,7, 0x1b1e20,14, 0x1b1e80,5, 0x1b1ea0,7, 0x1b2000,8, 0x1b2040,8, 0x1b2080,1, 0x1b2098,6, 0x1b2100,10, 0x1b2140,3, 0x1b2150,2, 0x1b2180,2, 0x1b2200,6, 0x1b2220,18, 0x1b2280,4, 0x1b2300,8, 0x1b2400,2, 0x1b2480,2, 0x1b3000,40, 0x1b3100,64, 0x1c0000,11, 0x1c0040,16, 0x1c0200,7, 0x1c0220,6, 0x1c0240,7, 0x1c0260,6, 0x1c0280,6, 0x1c02a0,2, 0x1c02ac,2, 0x1c02c0,7, 0x1c02e0,7, 0x1c0300,2, 0x1c030c,2, 0x1c0320,6, 0x1c0400,2, 0x1c1000,19, 0x1c2000,25, 0x1c2070,6, 0x1c208c,1, 0x1c2094,1, 0x1c209c,8, 0x1c2104,23, 0x1c2180,7, 0x1c21a0,6, 0x1c21c0,7, 0x1c21e0,6, 0x1c2200,4, 0x1c2220,4, 0x1c2240,11, 0x1c2270,32, 0x1c2300,24, 0x1c2380,20, 0x1c2400,61, 0x1c2500,25, 0x1c2568,4, 0x1c2580,2, 0x1c25a0,1, 0x1c25c0,11, 0x1c2600,9, 0x1c2680,22, 0x1c2700,17, 0x1c2800,11, 0x1c2a00,25, 0x1c2a80,1, 0x1c2a88,8, 0x1c2ac0,6, 0x1c2ae0,1, 0x1c2ae8,2, 0x1c2b04,4, 0x1c3000,650, 0x1c4000,25, 0x1c4070,6, 0x1c408c,1, 0x1c4094,1, 0x1c409c,8, 0x1c4104,23, 0x1c4180,7, 0x1c41a0,6, 0x1c41c0,7, 0x1c41e0,6, 0x1c4200,4, 0x1c4220,4, 0x1c4240,11, 0x1c4270,32, 0x1c4300,24, 0x1c4380,20, 0x1c4400,61, 0x1c4500,25, 0x1c4568,4, 0x1c4580,2, 0x1c45a0,1, 0x1c45c0,11, 0x1c4600,9, 0x1c4680,22, 0x1c4700,17, 0x1c4800,11, 0x1c4a00,25, 0x1c4a80,1, 0x1c4a88,8, 0x1c4ac0,6, 0x1c4ae0,1, 0x1c4ae8,2, 0x1c4b04,4, 0x1c5000,650, 0x1ca000,7, 0x1ca048,8, 0x1ca080,8, 0x1ca100,7, 0x1ca148,8, 0x1ca180,8, 0x1ca200,2, 0x1d0000,19, 0x1d1000,2, 0x1d100c,4, 0x1d1028,3, 0x1d1038,4, 0x1d1050,2, 0x1d1080,4, 0x1d1098,7, 0x1d1120,4, 0x1d1200,4, 0x1d1214,5, 0x1d1240,4, 0x1d1254,5, 0x1d1280,8, 0x1d12c0,5, 0x1d1300,2, 0x1d130c,3, 0x1d1400,24, 0x1d1464,2, 0x1d1470,3, 0x1d1500,25, 0x1d15c0,8, 0x1d15e8,5, 0x1d1600,5, 0x1d1618,1, 0x1d1620,1, 0x1d1628,1, 0x1d1630,2, 0x1d1640,2, 0x1d1650,2, 0x1d1690,2, 0x1d1740,2, 0x1d1760,6, 0x1d1780,6, 0x1d17a0,6, 0x1d17c0,6, 0x1d17e0,1, 0x1d1800,19, 0x1d1880,2, 0x1d18b0,2, 0x1d18c0,2, 0x1d2040,3, 0x1d2054,2, 0x1d2064,2, 0x1d2098,2, 0x1d20a8,2, 0x1d20b8,2, 0x1d20ec,2, 0x1d20fc,2, 0x1d210c,2, 0x1d2140,2, 0x1d2150,2, 0x1d2160,2, 0x1d2170,2, 0x1d2194,2, 0x1d21a4,2, 0x1d21b4,2, 0x1d21c4,2, 0x1d21e8,2, 0x1d21f8,2, 0x1d2208,2, 0x1d2218,2, 0x1d223c,2, 0x1d224c,2, 0x1d225c,7, 0x1d2400,1, 0x1d8000,1, 0x1d8008,4, 0x1d8020,1, 0x1d8030,5, 0x1d8080,8, 0x1d80c0,1, 0x1d8100,4, 0x1d8180,18, 0x1d8200,4, 0x1d8220,5, 0x1d8240,14, 0x1d8280,6, 0x1d82a0,2, 0x1d82ac,2, 0x1d82c0,2, 0x1d82cc,2, 0x1d8300,4, 0x1d8340,9, 0x1d8400,18, 0x1d8480,18, 0x1d8500,5, 0x1d8520,5, 0x1d8540,18, 0x1d8590,2, 0x1d8600,9, 0x1d8640,9, 0x1d8e00,13, 0x1d8e80,1, 0x1d8e88,8, 0x1d8ec0,6, 0x1d8ee0,1, 0x1d8ee8,2, 0x1d8f04,2, 0x1d9000,68, 0x1d9200,6, 0x1d9220,1, 0x1d9240,2, 0x1d924c,2, 0x1d9260,11, 0x1d9290,10, 0x1d92c0,1, 0x1d92e0,1, 0x1d92f0,7, 0x1d9310,10, 0x1d9344,1, 0x1d935c,28, 0x1d9400,25, 0x1d9480,1, 0x1d9488,8, 0x1d94c0,6, 0x1d94e0,1, 0x1d94e8,2, 0x1d9504,13, 0x1d9600,2, 0x1d9620,8, 0x1d9700,7, 0x1d9800,2, 0x1d980c,2, 0x1d9820,2, 0x1d982c,2, 0x1d9900,2, 0x1d9910,2, 0x1d9b00,2, 0x1d9c00,2, 0x1d9c84,1, 0x1d9cb4,19, 0x1d9d04,1, 0x1d9d0c,7, 0x1d9d84,1, 0x1d9d9c,11, 0x1d9e00,4, 0x1d9e44,1, 0x1d9e50,12, 0x1da000,6, 0x1da020,3, 0x1da100,11, 0x1da200,13, 0x1da240,1, 0x1da260,6, 0x1db000,19, 0x1e0000,135, 0x1e0300,6, 0x1e0320,6, 0x1e0340,6, 0x1e0360,6, 0x1e0380,6, 0x1e03a0,6, 0x1e03c0,6, 0x1e03e0,6, 0x1e0400,6, 0x1e0420,6, 0x1e0440,6, 0x1e0460,6, 0x1e0480,6, 0x1e04a0,6, 0x1e04c0,6, 0x1e04e0,6, 0x1e2d00,2, 0x1e4400,2, 0x1e4410,2, 0x1e4424,2, 0x1e4444,3, 0x1e4500,2, 0x1e4544,1, 0x1e4564,9, 0x1e45d0,2, 0x1e45e0,2, 0x1e45ec,3, 0x1e4600,5, 0x1e4800,4, 0x1e4840,2, 0x1e4900,4, 0x1e4980,23, 0x1e5000,6, 0x1e8004,1, 0x1e803c,17, 0x1e8100,8, 0x1e8300,1, 0x1e8308,1, 0x1e8310,1, 0x1e8358,1, 0x1e8400,2, 0x1e8484,1, 0x1e84bc,18, 0x1e8600,2, 0x1e8684,1, 0x1e86bc,19, 0x1e8800,4, 0x1e8900,3, 0x1e8910,3, 0x1e8a80,2, 0x1e8b80,3, 0x1e8c04,1, 0x1e8c2c,21, 0x1e8d00,3, 0x1e8e00,8, 0x1e9044,1, 0x1e904c,1, 0x1e9080,5, 0x1e9100,1, 0x1e9108,2, 0x1e9120,1, 0x1e9200,32, 0x1e9300,5, 0x1e931c,1, 0x1e9400,2, 0x1e940c,3, 0x1e9420,7, 0x1e9440,7, 0x1e9460,6, 0x1e9500,25, 0x1e9580,1, 0x1e95a0,6, 0x1e9600,27, 0x1f0000,19, 0x1f0080,19, 0x1f0100,3, 0x1f0a00,10, 0x1f0a80,3, 0x1f1000,24, 0x1f1500,4, 0x1f1600,25, 0x1f1680,4, 0x1f1700,1, 0x1f1708,4, 0x1f2000,2, 0x1f2084,1, 0x1f2098,28, 0x1f2184,1, 0x1f21bc,35, 0x1f224c,2, 0x1f2260,6, 0x1f3000,2, 0x1f3400,7, 0x1f3500,2, 0x1f4000,11, 0x1f4030,11, 0x1f4064,48, 0x1f4210,4, 0x1f4224,1, 0x1f4400,3, 0x1f4414,19, 0x1f44b0,3, 0x1f44c0,7, 0x1f4500,8, 0x1f4524,5, 0x1f4580,2, 0x1f458c,2, 0x1f45a0,1, 0x1f45c0,1, 0x1f4600,3, 0x1f4614,3, 0x1f4650,4, 0x1f4680,4, 0x1f46b0,3, 0x1f46c0,7, 0x1f4700,8, 0x1f4724,5, 0x1f4780,2, 0x1f478c,2, 0x1f47a0,1, 0x1f47c0,1, 0x1f4800,6, 0x1f4824,3, 0x1f4834,3, 0x1f4844,7, 0x1f5000,66, 0x1f5118,2, 0x1f5128,2, 0x1f5140,11, 0x1f5178,2, 0x1f5200,107, 0x1f5400,4, 0x1f5500,34, 0x1f5600,2, 0x1f560c,2, 0x1f5620,4, 0x1f5640,4, 0x1f5654,6, 0x1f5670,3, 0x1f5800,10, 0x1f5830,18, 0x1f5880,1, 0x1f5900,10, 0x1f5940,10, 0x1f5980,10, 0x1f59c0,10, 0x1f5a00,10, 0x1f5c00,3, 0x1f5c20,2, 0x1f5c68,2, 0x1f5c98,2, 0x1f5d00,64, 0x1f6000,5, 0x1f6020,7, 0x1f6040,6, 0x1f6060,2, 0x1f606c,2, 0x1f6100,2, 0x1f6184,1, 0x1f61c4,17, 0x1f6284,1, 0x1f62c4,15, 0x1f6400,21, 0x1f6500,40, 0x1f6600,4, 0x1f6620,2, 0x1f662c,2, 0x1f6800,43, 0x200000,1, 0x200008,2, 0x200050,2, 0x200080,42, 0x200144,3, 0x200190,2, 0x2001a0,6, 0x2001c0,5, 0x2001e0,2, 0x2001ec,3, 0x200404,4, 0x200420,4, 0x200440,1, 0x200490,8, 0x2004c0,1, 0x2004c8,4, 0x200500,2, 0x200524,1, 0x200530,6, 0x200580,2, 0x2005a0,2, 0x2005b4,9, 0x2005e0,7, 0x200600,5, 0x200620,2, 0x200640,3, 0x200650,3, 0x200660,1, 0x200680,1, 0x200688,2, 0x201000,19, 0x202000,43, 0x202200,25, 0x202280,1, 0x202288,8, 0x2022c0,6, 0x2022e0,1, 0x2022e8,2, 0x204000,11, 0x204044,4, 0x204400,2, 0x204484,1, 0x2044b4,19, 0x204600,4, 0x204644,1, 0x204650,12, 0x204a00,19, 0x205000,13, 0x205080,1, 0x205088,8, 0x2050c0,6, 0x2050e0,1, 0x2050e8,2, 0x205104,1, 0x205200,4, 0x205280,25, 0x205300,4, 0x205380,17, 0x205400,4, 0x205500,42, 0x205600,25, 0x205680,25, 0x205700,1, 0x205800,17, 0x205880,17, 0x205900,1, 0x205c00,42, 0x205d00,42, 0x205e00,1, 0x206000,1, 0x206008,4, 0x206020,1, 0x206030,5, 0x206080,8, 0x2060c0,1, 0x206100,4, 0x206180,18, 0x206200,4, 0x206220,5, 0x206240,14, 0x206280,6, 0x2062a0,2, 0x2062ac,2, 0x2062c0,2, 0x2062cc,2, 0x206300,4, 0x206340,9, 0x206400,18, 0x206480,18, 0x206500,5, 0x206520,5, 0x206540,18, 0x206590,2, 0x206600,9, 0x206640,9, 0x206e00,13, 0x206e80,1, 0x206e88,8, 0x206ec0,6, 0x206ee0,1, 0x206ee8,2, 0x206f04,2, 0x207000,68, 0x207200,6, 0x207220,1, 0x207240,2, 0x20724c,2, 0x207260,11, 0x207290,10, 0x2072c0,1, 0x2072e0,1, 0x2072f0,7, 0x207310,10, 0x207344,1, 0x20735c,28, 0x207400,25, 0x207480,1, 0x207488,8, 0x2074c0,6, 0x2074e0,1, 0x2074e8,2, 0x207504,13, 0x207600,2, 0x207620,8, 0x207700,7, 0x207800,2, 0x20780c,2, 0x207820,2, 0x20782c,2, 0x207900,2, 0x207910,2, 0x207b00,2, 0x207c00,2, 0x207c84,1, 0x207cb4,19, 0x207d04,1, 0x207d0c,7, 0x207d84,1, 0x207d9c,11, 0x207e00,4, 0x207e44,1, 0x207e50,12, 0x210000,12, 0x210044,3, 0x210080,2, 0x210180,2, 0x210200,2, 0x210260,3, 0x210280,4, 0x2102c0,4, 0x210304,1, 0x210340,16, 0x210400,8, 0x210580,8, 0x210700,4, 0x210740,4, 0x210780,4, 0x2107c0,4, 0x210800,8, 0x210880,8, 0x2108c0,7, 0x210900,2, 0x210910,2, 0x210920,2, 0x210930,1, 0x210938,1, 0x210950,1, 0x21095c,1, 0x210a00,1, 0x210a10,1, 0x210a20,1, 0x211b00,62, 0x211c00,8, 0x211c80,11, 0x211cc0,2, 0x211cd0,2, 0x212000,6, 0x212020,13, 0x212058,1, 0x212060,1, 0x212068,1, 0x212104,1, 0x212120,47, 0x212204,1, 0x212210,4, 0x212224,1, 0x21222c,1, 0x212244,3, 0x212260,2, 0x212270,3, 0x212280,5, 0x212304,1, 0x212310,4, 0x212384,1, 0x21238c,3, 0x212604,1, 0x212620,46, 0x212704,1, 0x212710,4, 0x212780,2, 0x212794,1, 0x21279c,2, 0x2127b0,2, 0x2127c8,1, 0x2127dc,1, 0x212804,1, 0x212848,46, 0x212a04,1, 0x212a10,28, 0x212b04,31, 0x212c04,1, 0x212c10,28, 0x213004,1, 0x213010,12, 0x213084,1, 0x2130a0,8, 0x2130c4,1, 0x2130e0,8, 0x213104,1, 0x213120,8, 0x213144,7, 0x213184,7, 0x2131c4,7, 0x213204,1, 0x213220,8, 0x213244,7, 0x213284,7, 0x2132c4,7, 0x213304,1, 0x213320,8, 0x213344,7, 0x213384,7, 0x2133c4,7, 0x213404,1, 0x213420,8, 0x213604,1, 0x213610,4, 0x213624,1, 0x21362c,1, 0x213634,1, 0x21363c,2, 0x213648,2, 0x214000,3, 0x214020,1, 0x214028,3, 0x214048,1, 0x214050,1, 0x214060,4, 0x214104,6, 0x214144,1, 0x21414c,4, 0x214164,1, 0x21416c,4, 0x214184,1, 0x21418c,4, 0x2141a4,1, 0x2141ac,4, 0x2141c4,1, 0x2141cc,4, 0x214244,1, 0x21424c,4, 0x214264,1, 0x21426c,4, 0x214284,1, 0x21428c,4, 0x2142a4,1, 0x2142ac,4, 0x2142c4,1, 0x2142cc,4, 0x2142e4,1, 0x2142ec,4, 0x214400,15, 0x214500,13, 0x214580,13, 0x214600,23, 0x214700,21, 0x214780,21, 0x214800,13, 0x214880,13, 0x214900,14, 0x214980,14, 0x214a00,13, 0x214a80,13, 0x214c00,9, 0x214c40,9, 0x214c80,4, 0x214c94,1, 0x215400,67, 0x215900,13, 0x215a00,4, 0x215a40,11, 0x215b00,1, 0x215b08,1, 0x217000,19, 0x228000,19, 0x229000,25, 0x229080,1, 0x2290a0,6, 0x229100,2, 0x229110,26, 0x229184,7, 0x229200,2, 0x229284,1, 0x2292b0,21, 0x229310,5, 0x229330,4, 0x229804,1, 0x229840,16, 0x229884,1, 0x2298c0,16, 0x229904,1, 0x229930,20, 0x229984,1, 0x2299c0,16, 0x229a04,1, 0x229a14,11, 0x229a84,1, 0x229ac0,16, 0x229b04,1, 0x229b40,16, 0x229b84,1, 0x229bc0,16, 0x229c04,1, 0x229c3c,17, 0x229c84,1, 0x229ca0,10, 0x22a000,294, 0x22a49c,1, 0x22a4a4,3, 0x22a4c4,3, 0x22a4fc,21, 0x22a580,20, 0x22a600,22, 0x22a664,1, 0x22a674,3, 0x22b000,2, 0x22b018,16, 0x22b060,1, 0x22b068,4, 0x22b080,4, 0x22b0a0,5, 0x22b0c0,4, 0x22b0e0,7, 0x22b100,4, 0x22b180,22, 0x22b200,4, 0x22b300,34, 0x22b400,4, 0x22b440,13, 0x22b480,7, 0x22b4a0,6, 0x22b4c0,6, 0x22b4e0,7, 0x22b500,4, 0x22b580,22, 0x22b600,4, 0x22b680,25, 0x22b700,4, 0x22b780,22, 0x22b800,4, 0x22b840,14, 0x22b880,4, 0x22b8a0,8, 0x22be00,75, 0x22c000,9, 0x22c040,9, 0x22c080,9, 0x22c0c0,9, 0x22c100,9, 0x22c140,9, 0x22c180,9, 0x22c1c0,9, 0x22c200,13, 0x22c23c,1, 0x22c270,12, 0x22c2c0,7, 0x22c2e0,7, 0x22c300,4, 0x22c318,15, 0x22c400,36, 0x22c500,36, 0x22c600,36, 0x22c700,36, 0x240400,19, 0x240480,12, 0x240500,4, 0x260000,3, 0x260018,2, 0x260024,13, 0x260060,27, 0x2600d0,3, 0x2600e0,3, 0x2600f0,3, 0x260100,4, 0x260114,9, 0x260140,3, 0x260160,2, 0x260180,3, 0x26019c,18, 0x2601ec,4, 0x260200,11, 0x260240,1, 0x26027c,4, 0x260400,3, 0x260418,2, 0x260424,13, 0x260460,27, 0x2604d0,3, 0x2604e0,3, 0x2604f0,3, 0x260500,4, 0x260514,9, 0x260540,3, 0x260560,2, 0x260580,3, 0x26059c,18, 0x2605ec,4, 0x260600,11, 0x260640,1, 0x26067c,4, 0x260800,3, 0x260818,2, 0x260824,13, 0x260860,27, 0x2608d0,3, 0x2608e0,3, 0x2608f0,3, 0x260900,4, 0x260914,9, 0x260940,3, 0x260960,2, 0x260980,3, 0x26099c,18, 0x2609ec,4, 0x260a00,11, 0x260a40,1, 0x260a7c,4, 0x260c00,3, 0x260c18,2, 0x260c24,13, 0x260c60,27, 0x260cd0,3, 0x260ce0,3, 0x260cf0,3, 0x260d00,4, 0x260d14,9, 0x260d40,3, 0x260d60,2, 0x260d80,3, 0x260d9c,18, 0x260dec,4, 0x260e00,11, 0x260e40,1, 0x260e7c,4, 0x263008,23, 0x263070,2, 0x263080,2, 0x26308c,1, 0x263098,2, 0x263100,5, 0x263200,17, 0x263248,4, 0x263260,5, 0x263280,1, 0x263288,4, 0x2632a0,5, 0x2632c0,1, 0x2632c8,4, 0x2632e0,5, 0x263300,1, 0x263308,4, 0x263320,5, 0x263404,1, 0x263440,24, 0x2634a4,2, 0x2634bc,9, 0x2634f0,3, 0x263500,64, 0x263660,7, 0x263690,13, 0x2636e0,2, 0x2636ec,2, 0x263a00,6, 0x263a20,2, 0x263a30,1, 0x263a40,8, 0x263a64,5, 0x263e00,67, 0x2645f0,4, 0x264604,1, 0x264640,16, 0x2646f0,4, 0x264704,1, 0x264740,16, 0x264a04,3, 0x264b00,33, 0x264b90,3, 0x264e08,4, 0x264e20,10, 0x264e80,25, 0x267450,3, 0x267464,3, 0x2674dc,1, 0x267500,1, 0x267510,12, 0x267580,3, 0x2675c0,3, 0x267600,8, 0x267680,19, 0x267708,2, 0x267720,7, 0x267740,7, 0x267760,4, 0x267800,99, 0x267a00,16, 0x267a80,1, 0x267b00,3, 0x267b80,8, 0x267bc0,9, 0x267c00,91, 0x267e00,10, 0x267f20,9, 0x267f50,2, 0x267f68,1, 0x267f70,12, 0x280004,5, 0x280020,1, 0x280040,7, 0x280060,3, 0x280070,1, 0x280080,5, 0x280800,32, 0x280980,32, 0x280b00,32, 0x280c80,32, 0x280e00,32, 0x280f80,32, 0x281100,32, 0x282000,4, 0x28203c,1, 0x283004,5, 0x283020,6, 0x283040,11, 0x283070,3, 0x283080,3, 0x283104,5, 0x283140,16, 0x284000,9, 0x284040,4, 0x284060,5, 0x284080,6, 0x284400,6, 0x284420,6, 0x284440,6, 0x284464,3, 0x284484,1, 0x284494,3, 0x2844a4,5, 0x2844c4,1, 0x2844cc,3, 0x2844dc,1, 0x284804,5, 0x284824,4, 0x284844,4, 0x284a04,5, 0x284a80,33, 0x284b08,4, 0x284b20,3, 0x288000,39, 0x2880c0,32, 0x288400,5, 0x288420,1, 0x288430,4, 0x288500,5, 0x288520,1, 0x288530,4, 0x288600,5, 0x288620,1, 0x288630,4, 0x288708,2, 0x288800,3, 0x288810,92, 0x288984,2, 0x289000,6, 0x289020,6, 0x289140,6, 0x289160,6, 0x289280,6, 0x2892a0,6, 0x2893c0,6, 0x2893e0,6, 0x289500,6, 0x289520,6, 0x289a80,1, 0x289aa0,3, 0x289ab0,3, 0x289ac0,3, 0x289ad0,3, 0x289ae0,3, 0x289af0,3, 0x289b00,3, 0x289b10,3, 0x289b20,3, 0x289b30,9, 0x289b64,2, 0x289b74,1, 0x289b7c,8, 0x289ba0,3, 0x289bb0,3, 0x289bc0,3, 0x289bd0,3, 0x289be0,3, 0x289bf0,3, 0x289c00,3, 0x28a000,16, 0x28a044,1, 0x28a04c,1, 0x28a054,1, 0x28a05c,2, 0x28a080,2, 0x28a094,1, 0x28a09c,3, 0x28a0b4,1, 0x28a0bc,1, 0x28a100,6, 0x28a120,6, 0x28a160,6, 0x28a184,24, 0x28a200,6, 0x28a220,6, 0x28a260,6, 0x28a284,1, 0x28a28c,1, 0x28a294,1, 0x28a29c,1, 0x28a2c0,4, 0x28a2e0,7, 0x28a300,4, 0x28a318,2, 0x28a324,1, 0x28a32c,1, 0x28a340,2, 0x28a360,3, 0x28a370,3, 0x28a384,4, 0x28a3a0,23, 0x28a400,6, 0x28a43c,8, 0x28a464,1, 0x28a46c,7, 0x28a4a4,8, 0x28a4d4,1, 0x28a4dc,1, 0x28a4e4,1, 0x28a4f4,35, 0x28a584,1, 0x28a590,4, 0x28a5a4,1, 0x28a5ac,4, 0x28a5c0,3, 0x28a5d4,1, 0x28a5dc,33, 0x28a760,32, 0x28a8e0,32, 0x28aa60,32, 0x28abe0,3, 0x28b440,7, 0x28b460,7, 0x28b480,4, 0x28b4a0,5, 0x28b4c0,5, 0x28b4e0,5, 0x28b500,3, 0x28b510,3, 0x28b520,2, 0x28b600,25, 0x28b674,1, 0x28b67c,1, 0x28b684,1, 0x28b694,45, 0x28b7a0,2, 0x28c000,135, 0x28c224,4, 0x28c240,3, 0x28c264,1, 0x28c26c,15, 0x28c404,1, 0x28c4c0,84, 0x28c680,23, 0x28c800,3, 0x28c824,4, 0x28c840,2, 0x28c900,4, 0x28c980,23, 0x28ca04,1, 0x28cac8,78, 0x28d004,4, 0x28d020,9, 0x28d054,1, 0x28d05c,1, 0x28d064,1, 0x28d06c,1, 0x28d080,9, 0x28d0c0,32, 0x28d440,24, 0x28d4c0,6, 0x28d4e0,6, 0x28d500,4, 0x28d520,6, 0x28d604,1, 0x28d670,71, 0x28d800,8, 0x28d824,1, 0x28d82c,1, 0x28d834,1, 0x28d83c,1, 0x28d844,3, 0x28d864,4, 0x28d884,4, 0x28d8a0,8, 0x28d8c4,1, 0x28d8dc,15, 0x28d920,6, 0x28d940,4, 0x28d960,6, 0x28d980,10, 0x28d9b0,10, 0x28d9e0,8, 0x28da04,1, 0x28daf4,76, 0x28dc80,2, 0x28dcc4,1, 0x28dcd4,13, 0x28dd44,1, 0x28dd54,11, 0x28e000,12, 0x28e040,12, 0x28e084,9, 0x28e0b4,4, 0x28e104,1, 0x28e120,12, 0x28e160,8, 0x28e204,1, 0x28e274,35, 0x28e400,4, 0x28e414,4, 0x28e450,1, 0x28e480,1, 0x28e4c0,6, 0x28e500,1, 0x28e508,10, 0x290000,40, 0x2900a8,3, 0x290384,5, 0x2903a0,3, 0x2903b4,1, 0x2903bc,1, 0x2903c4,1, 0x2903cc,1, 0x2903d4,1, 0x2903dc,3, 0x290400,4, 0x290420,5, 0x290440,4, 0x290460,9, 0x290488,4, 0x2904a4,3, 0x290800,5, 0x290824,3, 0x290880,128, 0x294000,6, 0x294020,1, 0x294100,13, 0x294204,7, 0x294224,1, 0x29422c,2, 0x294244,1, 0x294250,10, 0x29427c,7, 0x2942a4,1, 0x294300,3, 0x294314,1, 0x29431c,1, 0x294324,1, 0x29432c,1, 0x294380,9, 0x2943a8,4, 0x2943c4,1, 0x2943cc,1, 0x294400,83, 0x294600,6, 0x294620,6, 0x294700,25, 0x294780,1, 0x2947a0,6, 0x294800,5, 0x295000,35, 0x295a00,10, 0x295a80,3, 0x296000,171, 0x2b0000,8192, 0x400000,1, 0x40000c,5, 0x400044,1, 0x400054,5, 0x400200,128, 0x400404,1, 0x400414,27, 0x400600,32, 0x400704,1, 0x400800,1, 0x400900,1, 0x400910,2, 0x400920,3, 0x400980,10, 0x400a00,19, 0x400b00,1, 0x500000,35, 0x500a00,10, 0x500a80,3, 0x501000,19, 0x501a00,10, 0x501a80,3, 0x502000,19, 0x503000,19, 0x504000,35, 0x504a00,10, 0x504a80,3, 0x504ac0,1, 0x505000,19, 0x505a00,10, 0x505a80,3, 0x506000,19, 0x507000,19, 0x508000,19, 0x508a00,10, 0x508a80,3, 0x509000,35, 0x509a00,10, 0x509a80,3, 0x50a000,35, 0x50aa00,10, 0x50aa80,3, 0x50b000,35, 0x50ba00,10, 0x50ba80,3, 0x50c000,35, 0x50ca00,10, 0x50ca80,3, 0x50d000,19, 0x50da00,10, 0x50da80,3, 0x50e000,19, 0x50ea00,10, 0x50ea80,3, 0x50f000,19, 0x510000,19, 0x510a00,10, 0x510a80,3, 0x511000,19, 0x511a00,10, 0x511a80,3, 0x511ac0,1, 0x512000,19, 0x513000,19, 0x514000,19, 0x514080,19, 0x514100,3, 0x514a00,10, 0x514a80,3, 0x515000,19, 0x516000,19, 0x517000,19, 0x518000,35, 0x518a00,10, 0x518a80,3, 0x519000,19, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX6.csv0000644000175000017500000027561114522641732022255 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16418, 0x010100,7, 0x010120,2, 0x010140,4, 0x010160,5, 0x010180,18, 0x010200,5, 0x010220,5, 0x010240,1, 0x011000,34, 0x011090,1, 0x011098,2, 0x011100,40, 0x011200,2, 0x011400,3, 0x011414,2, 0x011420,1, 0x011444,4, 0x011480,2, 0x011490,3, 0x011590,1, 0x011600,7, 0x011800,16, 0x011848,6, 0x012000,129, 0x012208,4, 0x012224,4, 0x012240,4, 0x012260,6, 0x012280,1, 0x012290,1, 0x0122a0,5, 0x0122b8,5, 0x012300,6, 0x012320,6, 0x012340,1, 0x012380,8, 0x013000,33, 0x013090,1, 0x0130a0,1, 0x0130b4,4, 0x0130d0,3, 0x0130e0,17, 0x013130,1, 0x013140,22, 0x013400,7, 0x013420,7, 0x013440,7, 0x013460,7, 0x013480,7, 0x0134a0,7, 0x0134c0,7, 0x0134e0,7, 0x013500,7, 0x013520,7, 0x013540,7, 0x013560,7, 0x013580,7, 0x0135a0,7, 0x0135c0,7, 0x0135e0,7, 0x013600,7, 0x013620,7, 0x013640,7, 0x013660,7, 0x013680,7, 0x0136a0,7, 0x0136c0,7, 0x0136e0,7, 0x013700,7, 0x013720,7, 0x013740,7, 0x013760,7, 0x013780,7, 0x0137a0,7, 0x0137c0,7, 0x0137e0,7, 0x014000,6, 0x014020,6, 0x014040,6, 0x014060,6, 0x014080,6, 0x0140a0,6, 0x0140c0,6, 0x0140e0,6, 0x014100,6, 0x014120,6, 0x014140,6, 0x014160,6, 0x014180,6, 0x0141a0,6, 0x0141c0,6, 0x0141e0,6, 0x014200,6, 0x014220,6, 0x014240,54, 0x014400,6, 0x014420,6, 0x014440,6, 0x014460,6, 0x014480,6, 0x0144a0,6, 0x0144c0,6, 0x0144e0,6, 0x014500,6, 0x014520,6, 0x014540,6, 0x014560,6, 0x014580,6, 0x0145a0,6, 0x0145c0,6, 0x0145e0,6, 0x014600,6, 0x014620,6, 0x014640,54, 0x014800,6, 0x014820,6, 0x014840,6, 0x014860,6, 0x014880,6, 0x0148a0,6, 0x0148c0,6, 0x0148e0,6, 0x014900,6, 0x014920,6, 0x014940,6, 0x014960,6, 0x014980,6, 0x0149a0,6, 0x0149c0,6, 0x0149e0,6, 0x014a00,6, 0x014a20,6, 0x014a40,54, 0x014c00,6, 0x014c20,6, 0x014c40,6, 0x014c60,6, 0x014c80,6, 0x014ca0,6, 0x014cc0,6, 0x014ce0,6, 0x014d00,6, 0x014d20,6, 0x014d40,6, 0x014d60,6, 0x014d80,6, 0x014da0,6, 0x014dc0,6, 0x014de0,6, 0x014e00,6, 0x014e20,6, 0x014e40,54, 0x015000,6, 0x015020,6, 0x015040,6, 0x015060,6, 0x015080,6, 0x0150a0,6, 0x0150c0,6, 0x0150e0,6, 0x015100,6, 0x015120,6, 0x015140,6, 0x015160,6, 0x015180,6, 0x0151a0,6, 0x0151c0,6, 0x0151e0,6, 0x015200,6, 0x015220,6, 0x015240,54, 0x015400,6, 0x015420,6, 0x015440,6, 0x015460,6, 0x015480,6, 0x0154a0,6, 0x0154c0,6, 0x0154e0,6, 0x015500,6, 0x015520,6, 0x015540,6, 0x015560,6, 0x015580,6, 0x0155a0,6, 0x0155c0,6, 0x0155e0,6, 0x015600,6, 0x015620,6, 0x015640,54, 0x015800,6, 0x015820,6, 0x015840,6, 0x015860,6, 0x015880,6, 0x0158a0,6, 0x0158c0,6, 0x0158e0,6, 0x015900,6, 0x015920,6, 0x015940,6, 0x015960,6, 0x015980,6, 0x0159a0,6, 0x0159c0,6, 0x0159e0,6, 0x015a00,6, 0x015a20,6, 0x015a40,54, 0x015c00,6, 0x015c20,6, 0x015c40,6, 0x015c60,6, 0x015c80,6, 0x015ca0,6, 0x015cc0,6, 0x015ce0,6, 0x015d00,6, 0x015d20,6, 0x015d40,6, 0x015d60,6, 0x015d80,6, 0x015da0,6, 0x015dc0,6, 0x015de0,6, 0x015e00,6, 0x015e20,6, 0x015e40,54, 0x016000,288, 0x016800,288, 0x017000,1, 0x017010,1, 0x017020,1, 0x017030,1, 0x017040,1, 0x017050,1, 0x017060,1, 0x017070,1, 0x017080,1, 0x017090,1, 0x0170a0,1, 0x0170b0,1, 0x0170c0,1, 0x0170d0,1, 0x0170e0,1, 0x0170f0,1, 0x017100,1, 0x017110,1, 0x017400,6, 0x017420,6, 0x017440,7, 0x017480,6, 0x0174a0,6, 0x0174c0,7, 0x017500,6, 0x017520,6, 0x017540,7, 0x017580,6, 0x0175a0,6, 0x0175c0,7, 0x017600,6, 0x017620,6, 0x017640,7, 0x017680,6, 0x0176a0,6, 0x0176c0,7, 0x017700,6, 0x017720,6, 0x017740,7, 0x017780,6, 0x0177a0,6, 0x0177c0,7, 0x017800,21, 0x017860,20, 0x017900,35, 0x017990,1, 0x0179a4,1, 0x0179b4,5, 0x018000,1, 0x018008,4, 0x018024,4, 0x018044,1, 0x018054,10, 0x018080,2, 0x018090,1, 0x0180a0,1, 0x0180b0,2, 0x018100,3, 0x018110,3, 0x018120,1, 0x018200,1, 0x018208,4, 0x018224,4, 0x018244,1, 0x018254,9, 0x018280,2, 0x018290,1, 0x0182a0,1, 0x0182b0,2, 0x018300,5, 0x018400,38, 0x019000,288, 0x019500,1, 0x019510,1, 0x019520,1, 0x019530,1, 0x019540,1, 0x019550,1, 0x019560,1, 0x019570,1, 0x019580,1, 0x019590,1, 0x0195a0,1, 0x0195b0,1, 0x0195c0,1, 0x0195d0,1, 0x0195e0,1, 0x0195f0,1, 0x019600,40, 0x01a000,1, 0x01a008,4, 0x01a024,4, 0x01a044,1, 0x01a054,11, 0x01a090,2, 0x01a0a0,1, 0x01a0b0,1, 0x01a0c0,2, 0x01a100,9, 0x01a200,42, 0x01a2b0,3, 0x01a2c0,4, 0x01a2e0,5, 0x01b000,3, 0x01b010,3, 0x01b020,3, 0x01b030,3, 0x01b040,3, 0x01b050,3, 0x01b060,3, 0x01b070,3, 0x01b080,3, 0x01b090,3, 0x01b0a0,3, 0x01b0b0,3, 0x01b0c0,3, 0x01b0d0,3, 0x01b0e0,3, 0x01b0f0,3, 0x01b100,3, 0x01b110,3, 0x01b120,3, 0x01b130,3, 0x01b140,3, 0x01b150,3, 0x01b160,3, 0x01b170,3, 0x01b180,3, 0x01b190,3, 0x01b1a0,3, 0x01b1b0,3, 0x01b1c0,3, 0x01b1d0,3, 0x01b1e0,3, 0x01b1f0,3, 0x01b200,129, 0x01b408,4, 0x01b424,4, 0x01b440,4, 0x01b460,6, 0x01b480,1, 0x01b490,14, 0x01b500,2, 0x01c000,2, 0x01c084,1, 0x01c0b4,19, 0x01c104,5, 0x01c140,1, 0x01c150,8, 0x01c180,34, 0x01c214,5, 0x01c234,1, 0x01c23c,3, 0x01c250,1, 0x01c258,2, 0x01c26c,13, 0x01c404,5, 0x01c444,1, 0x01c450,4, 0x01c464,1, 0x01c474,3, 0x01c484,1, 0x01c48c,1, 0x01c494,3, 0x01c4c0,4, 0x01c4e0,5, 0x01c500,9, 0x01c608,3, 0x01c618,4, 0x01c63c,2, 0x01c680,4, 0x01c6a0,20, 0x01c700,2, 0x01c784,1, 0x01c7b0,22, 0x01c820,6, 0x01c840,14, 0x01c880,2, 0x01d000,3, 0x01d010,3, 0x01d020,3, 0x01d030,3, 0x01d040,3, 0x01d050,3, 0x01d060,3, 0x01d070,3, 0x01d080,9, 0x01d100,3, 0x01d110,3, 0x01d120,3, 0x01d130,3, 0x01d140,3, 0x01d150,3, 0x01d160,3, 0x01d170,3, 0x01d180,9, 0x01d204,1, 0x01d23c,19, 0x01d400,4, 0x01d420,5, 0x01d440,1, 0x01d500,14, 0x01d540,2, 0x01d550,3, 0x01d560,4, 0x01d600,25, 0x01d680,1, 0x01d6a0,6, 0x01d700,4, 0x01d720,7, 0x01d780,7, 0x01d7a0,7, 0x01d7c0,1, 0x01d800,131, 0x01dc00,8, 0x01e000,19, 0x01ec00,10, 0x01ec80,3, 0x01ecc0,1, 0x020004,5, 0x020020,1, 0x020060,7, 0x020088,1, 0x020098,1, 0x020100,2, 0x02010c,3, 0x020800,224, 0x020c00,16, 0x021004,5, 0x0213e0,6, 0x021408,3, 0x021418,7, 0x021480,1, 0x021700,2, 0x0217fc,3, 0x021844,1, 0x021884,5, 0x0218c0,16, 0x022280,2, 0x02228c,5, 0x0222b0,2, 0x0222c0,6, 0x0222e0,6, 0x022400,6, 0x022420,6, 0x022440,6, 0x022464,3, 0x022484,1, 0x022494,3, 0x022504,5, 0x022624,1, 0x02262c,3, 0x02263c,1, 0x022804,5, 0x022904,4, 0x022924,4, 0x022a04,5, 0x022a80,33, 0x022b08,4, 0x022b20,2, 0x024000,32, 0x024084,7, 0x0240c0,21, 0x024120,11, 0x024200,5, 0x024220,1, 0x024230,8, 0x024258,1, 0x024260,1, 0x024270,9, 0x0242a0,1, 0x0242b0,4, 0x0242c8,2, 0x024300,3, 0x024310,10, 0x024344,3, 0x024398,10, 0x0243c4,15, 0x024480,16, 0x0244cc,14, 0x024508,2, 0x024514,1, 0x02451c,3, 0x024530,2, 0x024540,3, 0x024550,3, 0x024560,3, 0x024570,3, 0x024580,3, 0x024590,3, 0x0245a0,3, 0x0245b0,3, 0x024604,3, 0x024884,11, 0x0248b4,3, 0x0248c4,1, 0x0248cc,1, 0x0248d4,1, 0x0248dc,3, 0x0248f4,1, 0x0248fc,1, 0x024908,6, 0x024928,6, 0x024968,6, 0x02499c,6, 0x0249b8,18, 0x024a08,6, 0x024a28,6, 0x024a68,6, 0x024a84,1, 0x024a8c,1, 0x024a94,1, 0x024a9c,3, 0x024ab4,3, 0x024ac8,2, 0x024b00,4, 0x024b20,7, 0x024b60,4, 0x024b78,2, 0x024b84,1, 0x024b8c,1, 0x024c00,2, 0x024c20,3, 0x024c30,3, 0x025004,5, 0x0257f0,42, 0x0258d8,2, 0x025904,1, 0x02590c,4, 0x026000,1, 0x026040,2, 0x026200,5, 0x026224,4, 0x026240,1, 0x026260,6, 0x026404,4, 0x026420,4, 0x026474,3, 0x026488,1, 0x026494,1, 0x02649c,1, 0x0264a4,1, 0x0264ac,1, 0x0264e0,93, 0x026660,5, 0x026680,4, 0x0266a0,5, 0x026704,1, 0x026770,39, 0x026810,5, 0x026834,1, 0x02683c,1, 0x026844,1, 0x02684c,1, 0x026854,3, 0x026884,4, 0x0268a4,4, 0x0268c0,8, 0x026904,1, 0x02691c,11, 0x026964,1, 0x026974,9, 0x0269a0,6, 0x0269c0,4, 0x0269e0,6, 0x026a00,10, 0x026a30,10, 0x026a60,8, 0x026c04,1, 0x026d00,64, 0x026e04,8, 0x026e28,4, 0x026e50,4, 0x026f00,2, 0x026f44,1, 0x026f60,10, 0x026fc4,1, 0x026fe0,8, 0x027400,131, 0x027d00,7, 0x027d20,7, 0x027d40,3, 0x027d50,3, 0x027de0,7, 0x027e00,3, 0x027e10,3, 0x027e20,3, 0x027e30,3, 0x027e40,3, 0x027e50,3, 0x027e60,3, 0x027e70,3, 0x027e80,3, 0x027e90,3, 0x027ea0,3, 0x027eb0,3, 0x027ec0,3, 0x027ed0,3, 0x027ee0,3, 0x027ef0,3, 0x027f00,2, 0x02aa04,5, 0x02aaf8,2, 0x02ab04,39, 0x02aba4,1, 0x02abac,1, 0x02abb4,1, 0x02abbc,1, 0x02abc4,1, 0x02abcc,1, 0x02abe8,1, 0x02abf8,4, 0x02ac10,3, 0x02ac44,3, 0x02ad00,1, 0x02ad08,1, 0x02ad10,1, 0x02ad18,1, 0x02ad20,1, 0x02ad28,1, 0x02ad30,1, 0x02ad38,1, 0x02ad40,1, 0x02ad48,1, 0x02ad50,1, 0x02ad58,1, 0x02ad60,1, 0x02ad68,1, 0x02ad70,1, 0x02ad78,1, 0x02ad80,1, 0x02ad88,1, 0x02ad90,1, 0x02ad98,1, 0x02ada0,1, 0x02ada8,1, 0x02adb0,1, 0x02adb8,1, 0x02adc0,1, 0x02adc8,1, 0x02add0,1, 0x02add8,1, 0x02ade0,1, 0x02ade8,1, 0x02adf0,1, 0x02adf8,1, 0x02ae00,6, 0x02ae40,4, 0x02ae60,5, 0x02ae80,4, 0x02aee0,6, 0x02af00,1, 0x02af08,4, 0x02c000,7, 0x02c040,2, 0x02c064,1, 0x02c070,4, 0x02c100,11, 0x02c204,1, 0x02c214,3, 0x02c224,1, 0x02c22c,1, 0x02c234,2, 0x02c244,3, 0x02c254,2, 0x02c260,5, 0x02c280,3, 0x02c294,1, 0x02c29c,1, 0x02c304,1, 0x02c30c,1, 0x02c3c0,2, 0x02c3cc,3, 0x02c3e0,1, 0x02c3e8,4, 0x02c800,235, 0x02cc20,6, 0x02cc50,4, 0x02ccf8,27, 0x02cd80,1, 0x02cda0,6, 0x02ce00,2, 0x02d000,35, 0x02dc00,10, 0x02dc80,3, 0x030000,2, 0x030084,1, 0x0300b4,19, 0x030200,2, 0x030284,1, 0x0302bc,19, 0x030384,1, 0x0303b8,20, 0x030444,1, 0x030460,17, 0x030500,8, 0x030530,2, 0x030540,2, 0x03054c,2, 0x030558,3, 0x030584,1, 0x0305c0,16, 0x030604,5, 0x030624,5, 0x030700,1, 0x030708,4, 0x030720,3, 0x030740,1, 0x030748,4, 0x030760,3, 0x030780,4, 0x030800,20, 0x030900,4, 0x030a00,2, 0x030a84,1, 0x030ab0,20, 0x031480,1, 0x0314bc,1, 0x0314c8,4, 0x031704,5, 0x032000,7, 0x032020,3, 0x032100,7, 0x032120,3, 0x032200,18, 0x032280,6, 0x032304,1, 0x03230c,3, 0x032480,8, 0x032500,6, 0x032520,1, 0x032540,2, 0x032564,1, 0x032574,5, 0x0325a4,1, 0x0325b4,3, 0x032610,1, 0x032618,1, 0x032620,1, 0x032640,6, 0x034000,31, 0x034080,13, 0x0340f0,12, 0x034140,1, 0x034150,4, 0x034200,35, 0x034400,31, 0x034480,13, 0x0344f0,12, 0x034540,1, 0x034550,4, 0x034600,35, 0x034800,7, 0x034820,3, 0x034830,2, 0x034840,36, 0x034900,5, 0x034920,5, 0x034940,3, 0x034950,3, 0x034980,12, 0x0349c0,12, 0x034a04,5, 0x034b00,2, 0x035000,1, 0x035080,10, 0x0350ac,4, 0x035100,1, 0x035108,3, 0x035400,1, 0x035480,10, 0x0354ac,4, 0x035500,1, 0x035508,3, 0x035800,4, 0x035824,1, 0x036000,2, 0x036010,3, 0x036044,3, 0x036100,66, 0x036210,3, 0x036244,3, 0x036300,64, 0x036404,1, 0x03640c,8, 0x036430,1, 0x036438,2, 0x036600,2, 0x036610,3, 0x036644,3, 0x036700,64, 0x036a00,2, 0x036a14,1, 0x036a1c,1, 0x036a44,5, 0x036a80,6, 0x036a9c,4, 0x036ab0,3, 0x038000,3, 0x038010,2, 0x038104,4, 0x038120,3, 0x038130,1, 0x038180,14, 0x0381c0,4, 0x038200,6, 0x038220,6, 0x038240,6, 0x038260,2, 0x03826c,2, 0x038280,7, 0x0382a0,7, 0x0382c0,6, 0x038300,6, 0x038320,6, 0x038340,6, 0x038360,7, 0x038380,7, 0x0383a0,6, 0x0383c0,3, 0x038400,5, 0x038420,5, 0x038440,1, 0x038480,5, 0x0384a0,5, 0x0384c0,5, 0x038500,3, 0x038510,3, 0x038520,1, 0x038540,3, 0x038550,3, 0x038560,1, 0x038580,5, 0x0385a0,5, 0x0385c0,1, 0x038840,16, 0x038900,25, 0x038980,1, 0x0389a0,6, 0x038c00,51, 0x038e00,1, 0x038e08,4, 0x038e20,1, 0x038e28,4, 0x038f00,2, 0x038f80,3, 0x038f90,3, 0x038fa0,3, 0x038fb0,3, 0x038fc0,2, 0x039000,35, 0x039c00,10, 0x039c80,3, 0x03c000,35, 0x03c090,3, 0x03c100,35, 0x03c190,3, 0x03c200,35, 0x03c290,3, 0x03c300,35, 0x03c390,3, 0x03c400,35, 0x03c490,3, 0x03c500,35, 0x03c590,3, 0x03c600,35, 0x03c690,3, 0x03c700,35, 0x03c790,3, 0x03c800,35, 0x03c890,3, 0x03c900,1, 0x03d000,4, 0x03d084,1, 0x03d0c0,16, 0x03d180,1, 0x03d1c0,2, 0x03d1e4,1, 0x03d1f0,6, 0x03d224,1, 0x03d230,6, 0x03d264,1, 0x03d270,6, 0x03d2a4,1, 0x03d2b0,6, 0x03d2e4,1, 0x03d2f0,5, 0x03d308,1, 0x03d400,2, 0x03d40c,3, 0x03d424,2, 0x03d444,3, 0x03d500,11, 0x03d540,11, 0x03d584,1, 0x03d5c0,26, 0x03d630,2, 0x03d644,3, 0x03d654,1, 0x03d65c,2, 0x03d680,2, 0x03d694,2, 0x03d6a4,1, 0x03d6ac,3, 0x03d6c0,3, 0x03d700,8, 0x03d740,8, 0x03d800,2, 0x03d80c,3, 0x03d81c,3, 0x03d82c,3, 0x03d83c,3, 0x03d84c,3, 0x03d85c,3, 0x03d86c,3, 0x03d87c,3, 0x03d88c,3, 0x03d89c,3, 0x03d8ac,3, 0x03d8bc,3, 0x03d8cc,3, 0x03d8dc,3, 0x03d8ec,3, 0x03d8fc,3, 0x03d90c,3, 0x03d91c,1, 0x03d980,2, 0x03dc04,1, 0x03dc40,16, 0x03dd00,38, 0x03de04,1, 0x03de14,5, 0x03de34,1, 0x03de3c,3, 0x03df00,4, 0x03e000,35, 0x03e100,25, 0x03e180,1, 0x03e1a0,6, 0x03e200,7, 0x03e220,6, 0x03e240,7, 0x03e260,6, 0x040000,6, 0x040020,1, 0x040084,1, 0x0400ac,46, 0x040180,1, 0x0401a0,6, 0x040204,3, 0x040224,3, 0x040244,1, 0x04024c,3, 0x040304,1, 0x040340,16, 0x040390,1, 0x0403a0,1, 0x0403b0,1, 0x0403c0,1, 0x0403d0,6, 0x040400,9, 0x040430,32, 0x040504,23, 0x040600,8, 0x040800,4, 0x040818,7, 0x040928,9, 0x040954,4, 0x040970,1, 0x040980,3, 0x0409a0,8, 0x0409c4,13, 0x040a04,5, 0x040a40,1, 0x040a50,5, 0x040a70,5, 0x040a90,1, 0x040aa0,1, 0x040ab0,1, 0x040ac0,6, 0x040c04,5, 0x040c40,1, 0x040c60,16, 0x040cc0,3, 0x040cd0,3, 0x040ce0,1, 0x040d40,1, 0x040d90,3, 0x040e04,5, 0x040e40,1, 0x040e60,16, 0x040ec0,3, 0x040ed0,3, 0x040ee0,1, 0x040f40,1, 0x040f90,3, 0x041004,7, 0x041040,4, 0x041080,24, 0x041100,8, 0x041180,13, 0x0411c0,11, 0x041400,6, 0x04141c,1, 0x041440,10, 0x041480,6, 0x04149c,1, 0x0414c0,10, 0x041500,6, 0x04151c,1, 0x041540,10, 0x041580,6, 0x04159c,1, 0x0415c0,10, 0x041600,6, 0x04161c,1, 0x041640,10, 0x041680,6, 0x04169c,1, 0x0416c0,10, 0x041700,6, 0x04171c,1, 0x041740,10, 0x041780,6, 0x04179c,1, 0x0417c0,10, 0x041804,1, 0x04180c,12, 0x041880,9, 0x0418c0,9, 0x042000,19, 0x042c00,10, 0x042c80,3, 0x043000,3, 0x043024,4, 0x043084,12, 0x0430b8,4, 0x043100,51, 0x043200,25, 0x043280,1, 0x0432a0,6, 0x043300,17, 0x044040,9, 0x044070,1, 0x044100,1, 0x044110,5, 0x044130,5, 0x044150,1, 0x044228,22, 0x044284,1, 0x0442c0,16, 0x044344,5, 0x044384,5, 0x0443c4,5, 0x0443e4,17, 0x044480,21, 0x0444e0,5, 0x044600,7, 0x044620,1, 0x044644,1, 0x04464c,13, 0x044700,25, 0x044780,1, 0x0447a0,6, 0x045000,24, 0x045400,6, 0x04541c,1, 0x045440,10, 0x045480,6, 0x04549c,1, 0x0454c0,10, 0x045500,6, 0x04551c,1, 0x045540,10, 0x045580,6, 0x04559c,1, 0x0455c0,10, 0x045600,6, 0x04561c,1, 0x045640,10, 0x045680,6, 0x04569c,1, 0x0456c0,10, 0x045700,6, 0x04571c,1, 0x045740,10, 0x045780,6, 0x04579c,1, 0x0457c0,10, 0x0459e8,1, 0x045c80,4, 0x045cb0,7, 0x045d00,13, 0x045e00,21, 0x045e60,5, 0x046000,3, 0x046024,4, 0x046084,12, 0x0460b8,4, 0x046100,14, 0x046140,2, 0x046180,1, 0x046188,4, 0x046200,6, 0x046220,2, 0x04622c,3, 0x046240,2, 0x046300,9, 0x046380,5, 0x0463a0,5, 0x0463c0,1, 0x046400,25, 0x046480,1, 0x0464a0,6, 0x046600,27, 0x047000,19, 0x047c00,10, 0x047c80,3, 0x048000,3, 0x048010,3, 0x048020,3, 0x048040,16, 0x048090,2, 0x0480a0,3, 0x0480c0,12, 0x0480f4,1, 0x048100,2, 0x048110,3, 0x048120,1, 0x048140,11, 0x048180,2, 0x048200,4, 0x048214,3, 0x048224,2, 0x048230,4, 0x048250,5, 0x048268,1, 0x048300,14, 0x048340,14, 0x048380,78, 0x0484c0,5, 0x048500,32, 0x048604,4, 0x048700,3, 0x048800,15, 0x048880,14, 0x0488c0,5, 0x0488e0,2, 0x0488ec,3, 0x048900,1, 0x048910,5, 0x048930,5, 0x048950,5, 0x048970,6, 0x0489a4,3, 0x0489c0,1, 0x0489c8,4, 0x0489e0,1, 0x048a00,34, 0x048b00,20, 0x048b80,1, 0x048b90,3, 0x048bf0,1, 0x048bf8,9, 0x048c20,7, 0x048c40,7, 0x048c60,7, 0x048c80,1, 0x048d00,3, 0x048d10,1, 0x048d18,1, 0x048d20,1, 0x048d30,1, 0x048d40,1, 0x048d48,4, 0x048d60,4, 0x048d80,2, 0x048d90,6, 0x048db4,1, 0x048dbc,3, 0x048dd0,3, 0x049000,2, 0x049084,1, 0x0490bc,19, 0x049184,1, 0x0491b0,22, 0x049244,1, 0x04925c,11, 0x0492c4,1, 0x0492dc,9, 0x049304,1, 0x04934c,45, 0x049404,4, 0x049420,1, 0x049430,4, 0x049444,1, 0x04944c,6, 0x049468,4, 0x049480,4, 0x0494c0,19, 0x049510,6, 0x049600,5, 0x04961c,10, 0x049650,4, 0x049664,4, 0x049c04,1, 0x049c10,12, 0x049c44,1, 0x049c50,12, 0x049c84,1, 0x049c90,12, 0x049cc4,1, 0x049cd0,12, 0x049d04,1, 0x049d20,26, 0x049dc4,1, 0x049ddc,11, 0x049e84,1, 0x049ea8,24, 0x049f24,1, 0x049f2c,7, 0x049f64,1, 0x049f6c,6, 0x049f88,8, 0x049fc0,1, 0x049fc8,10, 0x04a004,5, 0x04a104,4, 0x04a204,4, 0x04a300,2, 0x04b000,30, 0x04b080,2, 0x04b0a4,1, 0x04b0b4,4, 0x04b100,2, 0x04b184,1, 0x04b1c4,17, 0x04b284,1, 0x04b2b4,21, 0x04b310,1, 0x04b320,2, 0x04b330,5, 0x04b400,32, 0x04b4c0,11, 0x04b700,2, 0x04b710,2, 0x04b720,2, 0x04b800,2, 0x04b884,34, 0x04ba00,25, 0x04ba80,1, 0x04baa0,6, 0x04c000,19, 0x04cc00,10, 0x04cc80,3, 0x050000,1, 0x050008,4, 0x050024,4, 0x050040,2, 0x050064,1, 0x05006c,5, 0x0500a0,1, 0x0500a8,5, 0x0500c4,5, 0x050104,1, 0x050178,34, 0x050204,3, 0x050224,4, 0x050244,3, 0x050264,3, 0x050284,1, 0x050290,4, 0x0502a4,1, 0x0502b4,3, 0x0502c4,1, 0x0502cc,1, 0x0502e4,1, 0x0502ec,1, 0x0502f4,1, 0x0502fc,1, 0x050304,1, 0x05030c,1, 0x050314,1, 0x05031c,1, 0x050324,1, 0x05032c,1, 0x050334,1, 0x05033c,1, 0x050344,3, 0x050354,3, 0x050364,6, 0x050380,32, 0x050404,1, 0x050438,18, 0x050500,3, 0x050524,4, 0x050580,2, 0x050594,3, 0x0505a4,1, 0x0505b0,4, 0x0505c4,3, 0x0505e0,1, 0x0505f0,17, 0x050640,1, 0x050648,2, 0x050700,6, 0x050800,1, 0x050820,9, 0x050850,5, 0x050870,5, 0x0508a0,8, 0x050900,1, 0x050920,9, 0x050950,4, 0x05096c,37, 0x050a04,4, 0x050a40,1, 0x050a50,29, 0x050ad4,2, 0x050ae0,4, 0x050b04,3, 0x050b30,5, 0x050b64,1, 0x050b70,11, 0x050bb0,1, 0x050bc0,4, 0x050c00,1, 0x050c14,4, 0x050c30,1, 0x050c40,1, 0x050c50,1, 0x050c64,1, 0x050c6c,2, 0x050c90,1, 0x050ca0,1, 0x050cb0,1, 0x050cc0,1, 0x050cd0,1, 0x050ce0,1, 0x050cf0,1, 0x050d00,1, 0x050d10,1, 0x050d20,1, 0x050d30,1, 0x050d40,1, 0x050d50,1, 0x050d60,1, 0x050d70,1, 0x050d80,1, 0x050d90,1, 0x050db0,1, 0x050dc0,1, 0x050de0,1, 0x050df0,1, 0x050e00,1, 0x050e10,1, 0x050e20,1, 0x050e30,1, 0x050e40,1, 0x050e50,1, 0x050e60,1, 0x050e70,1, 0x050e80,1, 0x050e90,1, 0x050ea4,5, 0x050ec0,1, 0x050ed0,1, 0x050f00,65, 0x051010,7, 0x051030,2, 0x051040,1, 0x051060,10, 0x051180,4, 0x0511a0,10, 0x051200,7, 0x051220,4, 0x051234,1, 0x05123c,4, 0x051250,2, 0x051260,1, 0x051270,1, 0x051280,18, 0x051300,1, 0x051320,8, 0x051344,6, 0x051400,9, 0x051440,3, 0x051460,1, 0x051480,3, 0x051504,5, 0x051580,47, 0x051640,6, 0x051680,6, 0x051800,3, 0x051810,3, 0x051820,3, 0x051830,3, 0x051840,3, 0x051850,3, 0x051860,3, 0x051870,3, 0x051880,3, 0x051890,3, 0x0518a0,3, 0x0518b0,3, 0x0518c0,3, 0x0518d0,3, 0x0518e0,3, 0x0518f0,3, 0x051900,2, 0x052000,215, 0x052400,2, 0x053000,50, 0x053400,59, 0x053500,8, 0x053604,7, 0x053624,7, 0x053664,7, 0x053704,1, 0x053740,18, 0x0537a0,10, 0x0537e0,29, 0x053860,11, 0x0538a4,7, 0x054000,2, 0x054014,1, 0x05401c,1, 0x058004,5, 0x058300,9, 0x058340,6, 0x058400,7, 0x058420,6, 0x058444,2, 0x058460,8, 0x058484,5, 0x0587f0,1, 0x058800,1, 0x058810,1, 0x058820,1, 0x058830,1, 0x058840,1, 0x058850,1, 0x058860,1, 0x058870,1, 0x058880,1, 0x058890,1, 0x058904,3, 0x058978,66, 0x058a84,3, 0x058aa4,3, 0x058acc,2, 0x058ad8,2, 0x058c00,3, 0x058c24,4, 0x058d04,1, 0x058d0c,9, 0x058d34,1, 0x058d40,2, 0x058d50,1, 0x058d58,2, 0x058f04,5, 0x058f40,16, 0x058fe8,6, 0x059004,5, 0x059080,32, 0x059108,5, 0x059120,1, 0x059130,1, 0x059140,1, 0x059150,1, 0x059160,1, 0x059170,1, 0x059180,1, 0x059190,1, 0x0591b0,2, 0x0591c0,6, 0x059800,1, 0x059810,1, 0x059820,1, 0x059830,1, 0x059840,1, 0x059850,1, 0x059860,1, 0x059870,1, 0x059880,1, 0x059890,1, 0x0598a0,1, 0x0598b0,1, 0x0598c0,1, 0x0598d0,1, 0x0598e0,1, 0x0598f0,1, 0x059900,1, 0x059910,1, 0x059920,1, 0x059930,1, 0x059940,1, 0x059998,2, 0x059a08,1, 0x059a20,1, 0x059a28,4, 0x059b00,18, 0x059b54,1, 0x059b5c,1, 0x059b64,1, 0x059b6c,2, 0x05a000,7, 0x05a04c,3, 0x05a090,1, 0x05a0a0,1, 0x05a0b0,1, 0x05a0c0,1, 0x05a0e8,2, 0x05a200,25, 0x05a280,1, 0x05a2a0,6, 0x05a300,7, 0x05a320,6, 0x05a3c0,2, 0x05a400,3, 0x05a424,4, 0x05a484,3, 0x05a4c0,6, 0x05a4e0,1, 0x05a600,107, 0x05b000,35, 0x05bc00,10, 0x05bc80,3, 0x060020,8, 0x060120,1, 0x060128,4, 0x060140,7, 0x060160,7, 0x060180,1, 0x060188,4, 0x0601a0,4, 0x0601b8,3, 0x060240,16, 0x060284,1, 0x06028c,1, 0x060304,5, 0x060324,4, 0x060340,1, 0x060350,7, 0x060380,2, 0x060390,1, 0x0603b4,3, 0x060800,4, 0x060820,4, 0x060838,3, 0x060860,8, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,1, 0x060a8c,1, 0x060a94,1, 0x060a9c,5, 0x060ac4,1, 0x060ae4,7, 0x060b04,1, 0x060b14,13, 0x060b4c,4, 0x060bf0,12, 0x060c24,1, 0x060c2c,1, 0x060c34,1, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062074,1, 0x06207c,7, 0x0620a0,1, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e0,3, 0x0621f0,3, 0x062200,1, 0x062208,4, 0x062404,5, 0x062440,4, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,8, 0x062904,2, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,4, 0x063000,1, 0x063010,4, 0x063024,3, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,4, 0x0630c4,1, 0x0630cc,1, 0x0630d4,3, 0x0630e4,3, 0x063100,1, 0x063124,3, 0x063140,3, 0x063150,1, 0x063164,3, 0x063180,19, 0x0631e0,1, 0x0631e8,4, 0x063208,1, 0x063210,1, 0x063218,16, 0x063260,6, 0x063280,7, 0x0632a0,6, 0x0632c0,1, 0x0632c8,4, 0x0632e0,2, 0x0632f4,1, 0x0632fc,9, 0x064004,1, 0x06400c,4, 0x064100,3, 0x0642f0,1, 0x064300,6, 0x064320,6, 0x064340,6, 0x064360,2, 0x064374,6, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,5, 0x064440,1, 0x064464,3, 0x064500,2, 0x064584,1, 0x0645b8,18, 0x064804,1, 0x064880,2, 0x0648c4,15, 0x065020,6, 0x065040,2, 0x065078,2, 0x065114,1, 0x065200,43, 0x065300,1, 0x065400,25, 0x065480,1, 0x0654a0,6, 0x065f00,2, 0x066400,11, 0x06643c,1, 0x067000,19, 0x067c00,10, 0x067c80,3, 0x070004,5, 0x070020,6, 0x070040,2, 0x07004c,2, 0x070400,7, 0x070420,10, 0x070460,5, 0x070500,5, 0x07051c,1, 0x070524,4, 0x070540,7, 0x070600,132, 0x070830,2, 0x070884,2, 0x0708a8,22, 0x070904,1, 0x070940,22, 0x0709a0,6, 0x0709c0,2, 0x0709cc,3, 0x0709e0,2, 0x0709ec,2, 0x071000,1, 0x071094,1, 0x071100,2, 0x071184,1, 0x0711c0,16, 0x071204,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,6, 0x072020,2, 0x07202c,2, 0x072804,5, 0x072880,2, 0x0728a0,6, 0x0728c0,2, 0x0728cc,2, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,16, 0x074800,6, 0x074820,6, 0x074840,2, 0x074850,4, 0x074880,19, 0x074900,25, 0x074980,1, 0x0749a0,6, 0x074a00,4, 0x075000,5, 0x075020,3, 0x075030,9, 0x075100,5, 0x075200,1, 0x075208,4, 0x076000,19, 0x076c00,10, 0x076c80,3, 0x078000,1, 0x078008,18, 0x078054,9, 0x07807c,3, 0x07808c,12, 0x0780c0,1, 0x078100,5, 0x078118,4, 0x078130,2, 0x078300,7, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,2, 0x0783e8,2, 0x078404,4, 0x078600,2, 0x078684,1, 0x0786c0,18, 0x078784,1, 0x0787c0,35, 0x078850,4, 0x078884,1, 0x07889c,8, 0x078900,16, 0x079000,2, 0x079084,1, 0x0790c4,17, 0x079184,1, 0x0791b4,21, 0x079220,7, 0x079240,1, 0x079400,10, 0x079440,1, 0x079448,4, 0x079460,1, 0x079500,48, 0x079600,2, 0x079624,9, 0x079664,9, 0x0796a4,8, 0x0796d0,6, 0x079704,3, 0x079720,1, 0x079804,4, 0x079900,2, 0x079984,1, 0x0799bc,19, 0x079a24,1, 0x079a34,3, 0x079a80,2, 0x079ac4,1, 0x079ae4,14, 0x079b20,7, 0x079b60,2, 0x079b6c,1, 0x079b74,1, 0x079b7c,3, 0x079b8c,1, 0x079c00,2, 0x079c84,1, 0x079cbc,42, 0x079d80,1, 0x079da0,6, 0x079fa0,3, 0x079fb0,1, 0x079fc0,3, 0x07a000,3, 0x07a010,3, 0x07a020,3, 0x07a040,16, 0x07a090,2, 0x07a0a0,3, 0x07a0c0,12, 0x07a0f4,1, 0x07a100,2, 0x07a110,3, 0x07a120,1, 0x07a140,11, 0x07a180,2, 0x07a200,4, 0x07a214,3, 0x07a224,2, 0x07a230,4, 0x07a250,5, 0x07a268,1, 0x07a300,14, 0x07a340,14, 0x07a380,78, 0x07a4c0,5, 0x07a500,32, 0x07a604,4, 0x07a700,3, 0x07a800,15, 0x07a880,14, 0x07a8c0,5, 0x07a8e0,2, 0x07a8ec,3, 0x07a900,1, 0x07a910,5, 0x07a930,5, 0x07a950,5, 0x07a970,6, 0x07a9a4,3, 0x07a9c0,1, 0x07a9c8,4, 0x07a9e0,1, 0x07aa00,34, 0x07ab00,20, 0x07ab80,1, 0x07ab90,3, 0x07abf0,1, 0x07abf8,9, 0x07ac20,7, 0x07ac40,7, 0x07ac60,7, 0x07ac80,1, 0x07ad00,3, 0x07ad10,1, 0x07ad18,1, 0x07ad20,1, 0x07ad30,1, 0x07ad40,1, 0x07ad48,4, 0x07ad60,4, 0x07ad80,2, 0x07ad90,6, 0x07adb4,1, 0x07adbc,3, 0x07add0,3, 0x07b000,2, 0x07b084,1, 0x07b0bc,19, 0x07b184,1, 0x07b1b0,22, 0x07b244,1, 0x07b25c,11, 0x07b2c4,1, 0x07b2dc,9, 0x07b304,1, 0x07b34c,45, 0x07b404,4, 0x07b420,1, 0x07b430,4, 0x07b444,1, 0x07b44c,6, 0x07b468,4, 0x07b480,4, 0x07b4c0,19, 0x07b510,6, 0x07b600,5, 0x07b61c,10, 0x07b650,4, 0x07b664,4, 0x07bc04,1, 0x07bc10,12, 0x07bc44,1, 0x07bc50,12, 0x07bc84,1, 0x07bc90,12, 0x07bcc4,1, 0x07bcd0,12, 0x07bd04,1, 0x07bd20,26, 0x07bdc4,1, 0x07bddc,11, 0x07be84,1, 0x07bea8,24, 0x07bf24,1, 0x07bf2c,7, 0x07bf64,1, 0x07bf6c,6, 0x07bf88,8, 0x07bfc0,1, 0x07bfc8,10, 0x080000,29, 0x080300,15, 0x080340,6, 0x080360,6, 0x08037c,3, 0x08038c,3, 0x0803c0,2, 0x0803e0,3, 0x0803f0,3, 0x080404,5, 0x080804,1, 0x080874,36, 0x080a00,2, 0x080b04,1, 0x080b74,37, 0x080c14,5, 0x080c34,5, 0x080c64,1, 0x080c70,6, 0x080ca4,1, 0x080cb0,6, 0x080ce4,1, 0x080cf0,4, 0x081200,1, 0x081210,4, 0x081224,6, 0x081240,2, 0x081254,5, 0x081280,2, 0x081294,3, 0x0812a4,1, 0x0812b0,22, 0x081344,3, 0x081520,1, 0x081528,15, 0x08156c,6, 0x08158c,1, 0x0815c0,5, 0x0815e0,5, 0x081600,5, 0x081620,5, 0x081640,5, 0x081660,5, 0x081680,5, 0x0816a0,5, 0x0816c0,5, 0x0816e4,3, 0x081704,4, 0x08171c,15, 0x081800,2, 0x081824,1, 0x081830,9, 0x081860,3, 0x081870,1, 0x081c00,5, 0x081c20,5, 0x081c40,5, 0x081c60,5, 0x081c80,5, 0x081ca0,5, 0x081cc0,5, 0x081ce0,5, 0x081d00,5, 0x081d20,5, 0x081d40,5, 0x081d60,5, 0x081d80,5, 0x081da0,5, 0x081dc0,5, 0x081de0,5, 0x081e00,5, 0x081e20,5, 0x081e40,5, 0x081e60,5, 0x081e80,5, 0x081ea0,5, 0x081ec0,5, 0x081ee0,5, 0x081f00,5, 0x081f20,5, 0x081f40,5, 0x081f60,5, 0x081f80,5, 0x081fa0,5, 0x081fc0,5, 0x081fe0,5, 0x082000,29, 0x082300,15, 0x082340,6, 0x082360,6, 0x08237c,3, 0x08238c,3, 0x0823c0,2, 0x0823e0,3, 0x0823f0,3, 0x082404,4, 0x082804,1, 0x082874,35, 0x082904,1, 0x082974,37, 0x082a24,1, 0x082a2c,7, 0x082a64,1, 0x082a70,6, 0x082ac4,1, 0x082ad8,10, 0x082f00,2, 0x083200,1, 0x083210,7, 0x083240,5, 0x083274,3, 0x083284,3, 0x0832a4,1, 0x0832b0,20, 0x083340,1, 0x083348,16, 0x0833a4,1, 0x0833b0,4, 0x083400,5, 0x083420,5, 0x083440,5, 0x083460,5, 0x083480,5, 0x0834a0,5, 0x0834c0,5, 0x0834e0,5, 0x083500,5, 0x083520,5, 0x083540,5, 0x083560,5, 0x083580,5, 0x0835a0,5, 0x0835c0,5, 0x0835e0,5, 0x083600,5, 0x083620,5, 0x083640,5, 0x083660,5, 0x083680,5, 0x0836a0,5, 0x0836c0,5, 0x0836e0,5, 0x083700,5, 0x083720,5, 0x083740,5, 0x083760,5, 0x083780,5, 0x0837a0,5, 0x0837c0,5, 0x0837e0,5, 0x084000,29, 0x084300,15, 0x084340,6, 0x084360,6, 0x08437c,3, 0x08438c,3, 0x0843c0,2, 0x0843e0,3, 0x0843f0,3, 0x084404,4, 0x084804,1, 0x084874,35, 0x084904,1, 0x084974,37, 0x084a24,1, 0x084a30,6, 0x084a54,5, 0x084a74,5, 0x084a94,3, 0x084f00,2, 0x085200,1, 0x085210,8, 0x085240,12, 0x085280,4, 0x0852a4,1, 0x0852b0,4, 0x085304,3, 0x0853c0,17, 0x085408,5, 0x085800,5, 0x085820,5, 0x085840,5, 0x085860,5, 0x085880,5, 0x0858a0,5, 0x0858c0,5, 0x0858e0,5, 0x086000,2, 0x086020,2, 0x086044,3, 0x086054,1, 0x086080,2, 0x086400,6, 0x08641c,4, 0x086430,2, 0x086800,67, 0x086a80,4, 0x086c00,22, 0x086c60,7, 0x086c80,7, 0x086ca0,6, 0x086cc0,6, 0x086ce0,7, 0x086d00,6, 0x086d20,6, 0x086d40,6, 0x086d60,1, 0x086e00,25, 0x086e80,1, 0x086ea0,6, 0x086f00,1, 0x086f08,4, 0x086f20,1, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b8,7, 0x0871e0,6, 0x087208,6, 0x088000,19, 0x090204,1, 0x090224,23, 0x090320,10, 0x090350,3, 0x090360,3, 0x090370,2, 0x090380,4, 0x0903a0,5, 0x090420,10, 0x090450,3, 0x090460,3, 0x090470,2, 0x090480,4, 0x0904a0,5, 0x090500,19, 0x090580,7, 0x0905a0,2, 0x0905b4,5, 0x0905e0,1, 0x0905e8,4, 0x090800,30, 0x09087c,1, 0x090a04,1, 0x090a40,25, 0x090aa8,2, 0x090ac0,9, 0x090ae8,2, 0x091004,3, 0x091800,11, 0x091840,22, 0x0918a0,8, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,6, 0x093404,1, 0x093440,16, 0x093504,1, 0x09353c,33, 0x0935c8,1, 0x0935e0,6, 0x093600,1, 0x093608,4, 0x094080,3, 0x0940c0,1, 0x0940c8,4, 0x094100,25, 0x094180,1, 0x0941a0,6, 0x095000,19, 0x095c00,10, 0x095c80,3, 0x096000,1, 0x096010,4, 0x096024,1, 0x09602c,4, 0x096104,1, 0x09610c,7, 0x096204,4, 0x096488,1, 0x096498,4, 0x0964b0,4, 0x096504,4, 0x096584,4, 0x096700,34, 0x096808,9, 0x096830,4, 0x096884,3, 0x0968a0,6, 0x0968c0,6, 0x0968e0,6, 0x096900,6, 0x096920,6, 0x096940,6, 0x097100,8, 0x097140,1, 0x097200,18, 0x097254,11, 0x097300,2, 0x097384,1, 0x0973bc,17, 0x098000,1, 0x098010,12, 0x098044,1, 0x098054,5, 0x098404,1, 0x098428,54, 0x098600,32, 0x098704,1, 0x098800,1, 0x098900,1, 0x098a00,2, 0x098a20,11, 0x098a80,10, 0x098b00,1, 0x0a1000,70, 0x0a1120,32, 0x0a1244,4, 0x0a1260,9, 0x0a1288,6, 0x0a12a4,4, 0x0a12bc,3, 0x0a12e4,1, 0x0a12ec,5, 0x0a1310,3, 0x0a1324,6, 0x0a135c,5, 0x0a13b4,1, 0x0a13bc,2, 0x0a13e0,10, 0x0a1414,1, 0x0a141c,3, 0x0a1430,18, 0x0a147c,8, 0x0a14c0,1, 0x0a14c8,4, 0x0a14e0,1, 0x0a14e8,2, 0x0a1500,4, 0x0a1520,6, 0x0a1580,3, 0x0a1590,3, 0x0a15a0,3, 0x0a15b0,3, 0x0a15c0,3, 0x0a15d0,3, 0x0a15e0,3, 0x0a15f0,3, 0x0a1600,5, 0x0a1620,5, 0x0a1640,5, 0x0a1660,5, 0x0a1680,5, 0x0a16a0,5, 0x0a16c0,3, 0x0a1800,2, 0x0a1844,1, 0x0a1854,13, 0x0a18c4,1, 0x0a18d4,13, 0x0a1910,2, 0x0a1920,2, 0x0a192c,6, 0x0a1948,2, 0x0a1960,6, 0x0a1980,2, 0x0a19c4,1, 0x0a19d4,21, 0x0a1a40,10, 0x0a1a80,10, 0x0a1ac0,10, 0x0a1b00,10, 0x0a2004,5, 0x0a2020,6, 0x0a2400,2, 0x0a240c,8, 0x0a2440,1, 0x0a2450,4, 0x0a2464,6, 0x0a2480,1, 0x0a24a0,8, 0x0a24d0,4, 0x0a24e4,5, 0x0a2500,5, 0x0a2520,5, 0x0a2540,5, 0x0a2560,5, 0x0a2580,4, 0x0a2804,5, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c64,6, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,5, 0x0a3040,2, 0x0a3060,3, 0x0a3070,3, 0x0a31fc,10, 0x0a3230,2, 0x0a323c,2, 0x0a3250,2, 0x0a3260,1, 0x0a3270,6, 0x0a32a0,6, 0x0a3300,1, 0x0a3310,6, 0x0a3a04,31, 0x0a3a90,1, 0x0a3aa0,1, 0x0a3aa8,4, 0x0a3ac0,5, 0x0a3ae0,5, 0x0a3b00,80, 0x0a4000,51, 0x0a40d8,5, 0x0a4100,1, 0x0a4108,4, 0x0a4120,1, 0x0a4140,8, 0x0a4200,1, 0x0a4208,4, 0x0a4220,2, 0x0a422c,7, 0x0a4264,1, 0x0a4270,6, 0x0a42c4,1, 0x0a42d8,16, 0x0a4804,4, 0x0a4840,2, 0x0a4860,10, 0x0a488c,2, 0x0a48a0,6, 0x0a48c0,2, 0x0a48cc,2, 0x0a48e0,6, 0x0a4c00,6, 0x0a4c1c,1, 0x0a4c50,8, 0x0a4c78,19, 0x0a4d00,2, 0x0a4d84,1, 0x0a4dc0,16, 0x0a4e04,3, 0x0a4e20,6, 0x0a5000,16, 0x0a5048,2, 0x0a5060,6, 0x0a6000,15, 0x0a6040,2, 0x0a604c,2, 0x0a6060,1, 0x0a6068,4, 0x0a6100,25, 0x0a6180,1, 0x0a61a0,6, 0x0a6400,67, 0x0a6680,6, 0x0a66c0,7, 0x0a7000,35, 0x0a7c00,10, 0x0a7c80,3, 0x0a8000,3, 0x0a8010,10, 0x0a8040,9, 0x0a8070,14, 0x0a80ac,1, 0x0a80b4,13, 0x0a80ec,6, 0x0a8108,4, 0x0a8120,1, 0x0a8128,4, 0x0a8408,5, 0x0a8420,7, 0x0a8440,2, 0x0a8454,1, 0x0a845c,3, 0x0a8474,1, 0x0a847c,4, 0x0a8490,2, 0x0a849c,4, 0x0a84c0,8, 0x0a8504,5, 0x0a8604,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,8, 0x0a89a4,1, 0x0a89ac,4, 0x0a89c0,1, 0x0a8a00,4, 0x0a8a20,2, 0x0a8a34,1, 0x0a8a3c,17, 0x0a8aa4,3, 0x0a8ac0,2, 0x0a8ad4,1, 0x0a8ae4,6, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,4, 0x0a9000,25, 0x0a9080,7, 0x0a90a0,2, 0x0a9100,11, 0x0a9140,8, 0x0a9200,14, 0x0a9240,22, 0x0a92a4,1, 0x0a92b4,3, 0x0a9300,14, 0x0a9340,26, 0x0a9400,14, 0x0a9440,22, 0x0a949c,9, 0x0a9500,2, 0x0a950c,3, 0x0a9524,1, 0x0a9540,14, 0x0a9580,8, 0x0a9804,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,4, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d44,6, 0x0a9d80,1, 0x0a9dc0,3, 0x0a9dd0,3, 0x0a9de0,3, 0x0a9df0,3, 0x0a9e00,1, 0x0a9e20,8, 0x0a9e44,6, 0x0a9e80,1, 0x0a9ea0,8, 0x0a9ec4,6, 0x0a9f00,1, 0x0a9f20,8, 0x0a9f44,1, 0x0a9f54,2, 0x0a9f60,8, 0x0aa000,13, 0x0aa040,17, 0x0aa088,4, 0x0aa100,25, 0x0aa180,1, 0x0aa1a0,6, 0x0aa204,4, 0x0aa400,8, 0x0aa440,8, 0x0aa480,8, 0x0aa4c0,27, 0x0b0000,89, 0x0b0180,1, 0x0b01a0,6, 0x0b0204,4, 0x0b0218,1, 0x0b0220,6, 0x0b0240,1, 0x0b0400,89, 0x0b0580,1, 0x0b05a0,6, 0x0b0604,4, 0x0b0618,1, 0x0b0620,6, 0x0b0640,1, 0x0b0800,89, 0x0b0980,1, 0x0b09a0,6, 0x0b0a04,4, 0x0b0a18,1, 0x0b0a20,6, 0x0b0a40,1, 0x0b0c00,89, 0x0b0d80,1, 0x0b0da0,6, 0x0b0e04,4, 0x0b0e18,1, 0x0b0e20,6, 0x0b0e40,1, 0x0b1000,89, 0x0b1180,1, 0x0b11a0,6, 0x0b1204,4, 0x0b1218,1, 0x0b1220,6, 0x0b1240,1, 0x0b1400,89, 0x0b1580,1, 0x0b15a0,6, 0x0b1604,4, 0x0b1618,1, 0x0b1620,6, 0x0b1640,1, 0x0b1800,89, 0x0b1980,1, 0x0b19a0,6, 0x0b1a04,4, 0x0b1a18,1, 0x0b1a20,6, 0x0b1a40,1, 0x0b1c00,89, 0x0b1d80,1, 0x0b1da0,6, 0x0b1e04,4, 0x0b1e18,1, 0x0b1e20,6, 0x0b1e40,1, 0x0b2000,88, 0x0b2180,34, 0x0b4000,196, 0x0b4340,40, 0x0b4400,9, 0x0b4480,32, 0x0b4804,4, 0x0b4a04,4, 0x0b4b04,4, 0x0b4b44,3, 0x0b4c00,89, 0x0b4d80,1, 0x0b4da0,6, 0x0b4e00,2, 0x0b4e10,4, 0x0b4e24,5, 0x0b4e40,1, 0x0b4e60,22, 0x0b4ec0,7, 0x0b4ee0,7, 0x0b4f00,7, 0x0b4f20,1, 0x0b4f28,4, 0x0b4f40,1, 0x0b4f60,8, 0x0b5000,7, 0x0b5040,6, 0x0b5080,6, 0x0b5100,6, 0x0b5140,6, 0x0b5180,6, 0x0b51c0,6, 0x0b5200,25, 0x0b5280,1, 0x0b52a0,6, 0x0b5800,83, 0x0b5a00,4, 0x0b5c00,1, 0x0b5c08,4, 0x0b5c20,1, 0x0b5c28,4, 0x0b5c40,1, 0x0b5c48,4, 0x0b5c60,1, 0x0b5c68,4, 0x0b5c80,1, 0x0b5c88,4, 0x0b5ca0,1, 0x0b5ca8,4, 0x0b5cc0,1, 0x0b5cc8,4, 0x0b5ce0,1, 0x0b5ce8,4, 0x0b5d00,1, 0x0b5d08,4, 0x0b5d20,1, 0x0b5d28,4, 0x0b5d40,1, 0x0b5d48,4, 0x0b5d60,44, 0x0b5f00,14, 0x0b5f40,2, 0x0b6000,16, 0x0b6080,22, 0x0b6100,11, 0x0b6130,1, 0x0b6200,17, 0x0b6248,1, 0x0b6400,18, 0x0b644c,1, 0x0b6600,8, 0x0b6624,1, 0x0b6680,8, 0x0b66a4,1, 0x0b6800,32, 0x0b6884,1, 0x0b6a00,10, 0x0b6a2c,1, 0x0b6b00,14, 0x0b6b3c,1, 0x0b6c00,8, 0x0b6c24,1, 0x0b6d00,10, 0x0b6d2c,1, 0x0b6e00,14, 0x0b6e3c,1, 0x0b6f00,10, 0x0b6f2c,1, 0x0b7000,20, 0x0b7054,1, 0x0b7200,8, 0x0b7224,1, 0x0b7280,8, 0x0b72a4,1, 0x0b7300,6, 0x0b731c,1, 0x0b7380,8, 0x0b73a4,1, 0x0b7400,8, 0x0b7424,1, 0x0b7500,25, 0x0b7580,1, 0x0b75a0,6, 0x0b7600,6, 0x0b7620,6, 0x0b7640,6, 0x0b7660,6, 0x0b7680,6, 0x0b76a0,6, 0x0b76c0,6, 0x0b76e0,6, 0x0b7700,6, 0x0b7720,6, 0x0b7740,6, 0x0b8000,35, 0x0b8c00,10, 0x0b8c80,3, 0x0e0000,3, 0x0e0018,2, 0x0e0024,13, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,9, 0x0e0140,3, 0x0e0150,1, 0x0e015c,3, 0x0e0180,3, 0x0e019c,18, 0x0e01e8,5, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0400,3, 0x0e0418,2, 0x0e0424,13, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,9, 0x0e0540,3, 0x0e0550,1, 0x0e055c,3, 0x0e0580,3, 0x0e059c,18, 0x0e05e8,5, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0800,3, 0x0e0818,2, 0x0e0824,13, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,9, 0x0e0940,3, 0x0e0950,1, 0x0e095c,3, 0x0e0980,3, 0x0e099c,18, 0x0e09e8,5, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0c00,3, 0x0e0c18,2, 0x0e0c24,13, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,9, 0x0e0d40,3, 0x0e0d50,1, 0x0e0d5c,3, 0x0e0d80,3, 0x0e0d9c,18, 0x0e0de8,5, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e1000,3, 0x0e1018,2, 0x0e1024,13, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,9, 0x0e1140,3, 0x0e1150,1, 0x0e115c,3, 0x0e1180,3, 0x0e119c,18, 0x0e11e8,5, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1400,3, 0x0e1418,2, 0x0e1424,13, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,9, 0x0e1540,3, 0x0e1550,1, 0x0e155c,3, 0x0e1580,3, 0x0e159c,18, 0x0e15e8,5, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1800,3, 0x0e1818,2, 0x0e1824,13, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,9, 0x0e1940,3, 0x0e1950,1, 0x0e195c,3, 0x0e1980,3, 0x0e199c,18, 0x0e19e8,5, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1c00,3, 0x0e1c18,2, 0x0e1c24,13, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,9, 0x0e1d40,3, 0x0e1d50,1, 0x0e1d5c,3, 0x0e1d80,3, 0x0e1d9c,18, 0x0e1de8,5, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e2000,3, 0x0e2018,2, 0x0e2024,13, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,9, 0x0e2140,3, 0x0e2150,1, 0x0e215c,3, 0x0e2180,3, 0x0e219c,18, 0x0e21e8,5, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2400,3, 0x0e2418,2, 0x0e2424,13, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,9, 0x0e2540,3, 0x0e2550,1, 0x0e255c,3, 0x0e2580,3, 0x0e259c,18, 0x0e25e8,5, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2800,3, 0x0e2818,2, 0x0e2824,13, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,9, 0x0e2940,3, 0x0e2950,1, 0x0e295c,3, 0x0e2980,3, 0x0e299c,18, 0x0e29e8,5, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e3008,16, 0x0e3070,1, 0x0e3080,2, 0x0e308c,1, 0x0e3098,3, 0x0e3200,17, 0x0e3248,4, 0x0e3260,5, 0x0e3280,1, 0x0e3288,4, 0x0e32a0,5, 0x0e32c0,1, 0x0e32c8,4, 0x0e32e0,5, 0x0e3300,1, 0x0e3308,4, 0x0e3320,5, 0x0e3404,1, 0x0e3440,24, 0x0e34a4,87, 0x0e3660,11, 0x0e3690,13, 0x0e36e0,2, 0x0e36ec,2, 0x0e3804,1, 0x0e387c,103, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3b00,32, 0x0e3b84,5, 0x0e3c40,16, 0x0e3c84,1, 0x0e3c8c,1, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,18, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e4900,3, 0x0e4910,5, 0x0e4928,2, 0x0e4980,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4c00,14, 0x0e4c40,1, 0x0e4c48,1, 0x0e4c58,10, 0x0e4c84,1, 0x0e4ca0,8, 0x0e4d00,11, 0x0e4d40,1, 0x0e4e00,18, 0x0e4e80,25, 0x0e5000,35, 0x0e5c00,10, 0x0e5c80,3, 0x0e6000,31, 0x0e6084,1, 0x0e60a0,10, 0x0e6100,66, 0x0e6224,1, 0x0e6234,10, 0x0e6264,1, 0x0e6274,9, 0x0e62c8,12, 0x0e62fc,2, 0x0e6380,64, 0x0e6484,1, 0x0e64c0,23, 0x0e6520,7, 0x0e65c8,12, 0x0e65fc,2, 0x0e6680,64, 0x0e6784,1, 0x0e67c0,23, 0x0e6820,7, 0x0e6844,6, 0x0e6860,1, 0x0e6868,4, 0x0e6880,1, 0x0e6898,3, 0x0e68a8,4, 0x0e68c4,2, 0x0e7000,25, 0x0e7078,16, 0x0e70c0,24, 0x0e7140,1, 0x0e7148,4, 0x0e7160,4, 0x0e7450,3, 0x0e7464,3, 0x0e74d0,4, 0x0e7500,1, 0x0e7510,12, 0x0e7580,3, 0x0e75c0,3, 0x0e7600,19, 0x0e7680,19, 0x0e7708,2, 0x0e7720,7, 0x0e7740,7, 0x0e7760,4, 0x0e7800,99, 0x0e7a00,16, 0x0e7a80,23, 0x0e7b00,3, 0x0e7b80,4, 0x0e7bc0,10, 0x0e7c00,91, 0x0e7e00,54, 0x0e7f00,9, 0x0e7f30,4, 0x0e7f48,1, 0x0e7f50,4, 0x0e7f80,8, 0x0f0000,4, 0x0f0014,11, 0x0f0044,10, 0x0f007c,2, 0x0f0088,20, 0x0f0180,6, 0x0f01a8,4, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,5, 0x0f0480,22, 0x0f0500,28, 0x0f0580,7, 0x0f05a0,1, 0x0f05c0,14, 0x0f0af0,3, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba0,1, 0x0f0ba8,1, 0x0f0c00,4, 0x0f0c20,3, 0x0f0c30,6, 0x0f0c50,52, 0x0f0d50,20, 0x0f0dd0,2, 0x0f0de0,1, 0x0f0ffc,4, 0x0f1030,2, 0x0f1040,10, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,28, 0x0f1400,179, 0x0f1800,19, 0x0f1880,11, 0x0f18d0,3, 0x0f1c00,5, 0x0f1c1c,2, 0x0f1db8,21, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f00,6, 0x0f1f20,1, 0x0f1f28,2, 0x0f1f40,2, 0x0f1f80,14, 0x0f1fbc,4, 0x0f2000,24, 0x0f2080,24, 0x0f2100,24, 0x0f2180,24, 0x0f2200,24, 0x0f2280,24, 0x0f2300,24, 0x0f2380,24, 0x0f2400,24, 0x0f24a4,1, 0x0f2800,2, 0x0f2840,16, 0x0f3000,5, 0x0f3024,1, 0x0f302c,1, 0x0f3204,1, 0x0f32dc,73, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x0f7800,7, 0x0f7820,4, 0x0f7a04,1, 0x0f7a80,35, 0x0f7b10,4, 0x0f7c04,1, 0x0f7c80,34, 0x0f7d10,10, 0x0f7d3c,3, 0x0f8000,7, 0x0f8020,4, 0x0f8204,1, 0x0f8280,35, 0x0f8310,4, 0x0f8404,1, 0x0f8480,34, 0x0f8510,10, 0x0f853c,3, 0x0f8800,7, 0x0f8820,4, 0x0f8a04,1, 0x0f8a80,35, 0x0f8b10,4, 0x0f8c04,1, 0x0f8c80,34, 0x0f8d10,10, 0x0f8d3c,3, 0x0f9000,7, 0x0f9020,4, 0x0f9204,1, 0x0f9280,35, 0x0f9310,4, 0x0f9404,1, 0x0f9480,34, 0x0f9510,10, 0x0f953c,3, 0x0fc000,5, 0x0fc01c,12, 0x0fc05c,3, 0x0fc080,8, 0x0fc100,5, 0x0fc11c,12, 0x0fc15c,3, 0x0fc180,8, 0x0fc200,5, 0x0fc21c,12, 0x0fc25c,3, 0x0fc280,8, 0x0fc300,5, 0x0fc31c,12, 0x0fc35c,3, 0x0fc380,8, 0x0fc400,5, 0x0fc41c,12, 0x0fc45c,3, 0x0fc480,8, 0x0fc500,5, 0x0fc51c,12, 0x0fc55c,3, 0x0fc580,8, 0x0fc600,5, 0x0fc61c,12, 0x0fc65c,3, 0x0fc680,8, 0x0fc700,5, 0x0fc71c,12, 0x0fc75c,3, 0x0fc780,8, 0x0fc800,5, 0x0fc81c,12, 0x0fc85c,3, 0x0fc880,8, 0x0fc900,5, 0x0fc91c,12, 0x0fc95c,3, 0x0fc980,8, 0x0fca00,5, 0x0fca1c,12, 0x0fca5c,3, 0x0fca80,8, 0x0fcb00,5, 0x0fcb1c,12, 0x0fcb5c,3, 0x0fcb80,8, 0x0fcc00,5, 0x0fcc1c,12, 0x0fcc5c,3, 0x0fcc80,8, 0x0fcd00,5, 0x0fcd1c,12, 0x0fcd5c,3, 0x0fcd80,8, 0x0fce00,5, 0x0fce1c,12, 0x0fce5c,3, 0x0fce80,8, 0x0fcf00,5, 0x0fcf1c,12, 0x0fcf5c,3, 0x0fcf80,8, 0x0fd000,5, 0x0fd01c,12, 0x0fd05c,3, 0x0fd080,8, 0x0fd100,5, 0x0fd11c,12, 0x0fd15c,3, 0x0fd180,8, 0x0fd200,5, 0x0fd21c,12, 0x0fd25c,3, 0x0fd280,8, 0x0fd300,5, 0x0fd31c,12, 0x0fd35c,3, 0x0fd380,8, 0x101100,18, 0x101200,19, 0x101250,4, 0x101264,2, 0x101274,22, 0x1012d0,4, 0x1012e4,2, 0x1012f4,22, 0x101350,4, 0x101364,2, 0x101374,22, 0x1013d0,4, 0x1013e4,2, 0x1013f4,22, 0x101450,4, 0x101464,2, 0x101474,22, 0x1014d0,4, 0x1014e4,2, 0x1014f4,22, 0x101550,4, 0x101564,2, 0x101574,22, 0x1015d0,4, 0x1015e4,2, 0x1015f4,22, 0x101650,4, 0x101664,2, 0x101674,22, 0x1016d0,4, 0x1016e4,2, 0x1016f4,22, 0x101750,4, 0x101764,2, 0x101774,22, 0x1017d0,4, 0x1017e4,2, 0x1017f4,22, 0x101850,4, 0x101864,2, 0x101874,22, 0x1018d0,4, 0x1018e4,2, 0x1018f4,22, 0x101950,4, 0x101964,2, 0x101974,22, 0x1019d0,4, 0x1019e4,2, 0x1019f4,13, 0x101a30,2, 0x101b00,6, 0x102014,2, 0x104000,4, 0x104014,2, 0x104020,3, 0x104030,4, 0x104044,6, 0x104060,3, 0x104080,4, 0x104094,2, 0x1040a0,3, 0x1040b0,4, 0x1040c4,6, 0x1040e0,3, 0x104100,4, 0x104114,2, 0x104120,3, 0x104130,4, 0x104144,6, 0x104160,3, 0x104180,4, 0x104194,2, 0x1041a0,3, 0x1041b0,4, 0x1041c4,6, 0x1041e0,3, 0x104200,4, 0x104214,2, 0x104220,3, 0x104230,4, 0x104244,6, 0x104260,3, 0x104280,4, 0x104294,2, 0x1042a0,3, 0x1042b0,4, 0x1042c4,6, 0x1042e0,3, 0x104300,4, 0x104314,2, 0x104320,3, 0x104330,4, 0x104344,6, 0x104360,3, 0x104380,4, 0x104394,2, 0x1043a0,3, 0x1043b0,4, 0x1043c4,6, 0x1043e0,3, 0x104400,4, 0x104414,2, 0x104420,3, 0x104430,4, 0x104444,6, 0x104460,3, 0x104480,4, 0x104494,2, 0x1044a0,3, 0x1044b0,4, 0x1044c4,6, 0x1044e0,3, 0x104500,4, 0x104514,2, 0x104520,3, 0x104530,4, 0x104544,6, 0x104560,3, 0x104580,4, 0x104594,2, 0x1045a0,3, 0x1045b0,4, 0x1045c4,6, 0x1045e0,3, 0x104600,4, 0x104614,2, 0x104620,3, 0x104630,4, 0x104644,6, 0x104660,3, 0x104680,4, 0x104694,2, 0x1046a0,3, 0x1046b0,4, 0x1046c4,6, 0x1046e0,3, 0x104700,4, 0x104714,2, 0x104720,3, 0x104730,4, 0x104744,6, 0x104760,3, 0x104780,4, 0x104794,2, 0x1047a0,3, 0x1047b0,4, 0x1047c4,6, 0x1047e0,3, 0x104880,17, 0x104bbc,22, 0x104c20,4, 0x104c40,5, 0x104c60,4, 0x104c80,5, 0x104ca0,4, 0x104cc0,5, 0x104ce0,4, 0x104d00,5, 0x104d20,4, 0x104d40,5, 0x104d60,4, 0x104d80,5, 0x104da0,4, 0x104dc0,5, 0x104de0,4, 0x104e00,5, 0x104e20,4, 0x104e60,1, 0x105000,3, 0x105010,5, 0x105480,2, 0x105490,4, 0x1054b8,5, 0x1054d0,3, 0x1054e0,3, 0x1054f0,3, 0x105500,35, 0x1055c8,9, 0x1055f0,2, 0x105600,32, 0x105700,2, 0x105800,64, 0x105a00,3, 0x105c04,1, 0x105c18,10, 0x105d04,1, 0x105d78,34, 0x105e04,1, 0x105e18,12, 0x106000,81, 0x106800,16, 0x106844,1, 0x106858,4, 0x106880,16, 0x1068c4,1, 0x1068d8,4, 0x106900,16, 0x106944,1, 0x106958,4, 0x106980,16, 0x1069c4,1, 0x1069d8,4, 0x106a00,16, 0x106a44,1, 0x106a58,4, 0x106a80,16, 0x106ac4,1, 0x106ad8,4, 0x106b00,16, 0x106b44,1, 0x106b58,4, 0x106b80,16, 0x106bc4,1, 0x106bd8,4, 0x106c00,16, 0x106c44,1, 0x106c58,4, 0x106c80,16, 0x106cc4,1, 0x106cd8,4, 0x106d00,16, 0x106d44,1, 0x106d58,4, 0x106d80,16, 0x106dc4,1, 0x106dd8,4, 0x106e00,16, 0x106e44,1, 0x106e58,4, 0x106e80,16, 0x106ec4,1, 0x106ed8,4, 0x106f00,16, 0x106f44,1, 0x106f58,4, 0x106f80,16, 0x106fc4,1, 0x106fd8,4, 0x108000,46, 0x108100,46, 0x108204,4, 0x108220,2, 0x108230,3, 0x108240,10, 0x108280,1, 0x1082e0,6, 0x108300,50, 0x1083d8,2, 0x1083e4,10, 0x108500,2, 0x10850c,3, 0x10851c,2, 0x109000,24, 0x109080,4, 0x10909c,6, 0x1090c0,24, 0x109700,3, 0x109710,3, 0x109720,3, 0x109730,3, 0x109740,3, 0x109750,3, 0x109760,3, 0x109770,3, 0x109780,3, 0x109790,3, 0x1097a0,3, 0x1097b0,3, 0x1097c0,3, 0x1097d0,3, 0x1097e0,3, 0x1097f0,3, 0x109800,525, 0x10a11c,1, 0x10a140,17, 0x10a400,1, 0x10a420,7, 0x10a440,1, 0x10a460,7, 0x10a480,1, 0x10a4a0,7, 0x10a4c0,1, 0x10a4e0,7, 0x10a500,1, 0x10a520,7, 0x10a540,1, 0x10a560,7, 0x10a580,1, 0x10a5a0,7, 0x10a5c0,1, 0x10a5e0,7, 0x10a600,1, 0x10a620,7, 0x10a640,1, 0x10a660,7, 0x10a680,1, 0x10a6a0,7, 0x10a6c0,1, 0x10a6e0,7, 0x10a700,1, 0x10a720,7, 0x10a740,1, 0x10a760,7, 0x10a780,1, 0x10a7a0,7, 0x10a7c0,1, 0x10a7e0,7, 0x10a800,19, 0x10a880,19, 0x10a900,19, 0x10a980,19, 0x10aa00,19, 0x10aa80,19, 0x10ab00,19, 0x10ab80,19, 0x10ac00,19, 0x10ac80,19, 0x10ad00,19, 0x10ad80,19, 0x10ae00,19, 0x10ae80,19, 0x10af00,19, 0x10af80,19, 0x10b000,13, 0x10b800,19, 0x10b880,19, 0x10b900,19, 0x10b980,19, 0x10ba00,19, 0x10ba80,19, 0x10bb00,19, 0x10bb80,19, 0x10bc00,19, 0x10bc80,19, 0x10bd00,19, 0x10bd80,19, 0x10be00,19, 0x10be80,19, 0x10bf00,19, 0x10bf80,19, 0x10c000,1, 0x10c008,1, 0x10c010,1, 0x10c018,1, 0x10c020,1, 0x10c028,1, 0x10c030,1, 0x10c038,1, 0x10c040,1, 0x10c100,32, 0x10c200,4, 0x10c220,1, 0x10c228,5, 0x10c258,2, 0x10c264,7, 0x10c2dc,1, 0x10c2e4,7, 0x10c408,1, 0x10c410,4, 0x10c800,16, 0x10c880,16, 0x10c900,16, 0x10c980,16, 0x10ca00,16, 0x10ca80,16, 0x10cb00,16, 0x10cb80,16, 0x10cc00,16, 0x10cc80,16, 0x10cd00,16, 0x10cd80,16, 0x10ce00,16, 0x10ce80,16, 0x10cf00,16, 0x10cf80,16, 0x10d000,32, 0x10d200,51, 0x10d480,3, 0x10d500,5, 0x10d524,5, 0x10d544,5, 0x10d564,5, 0x10d590,1, 0x10d5a0,8, 0x10d704,7, 0x10d724,7, 0x10d744,7, 0x10d764,7, 0x10d784,7, 0x10d7a4,7, 0x10d7c4,7, 0x10d7e4,7, 0x10d804,7, 0x10d824,7, 0x10d844,7, 0x10d864,7, 0x10d884,7, 0x10d8a4,7, 0x10d8c4,7, 0x10d8e4,7, 0x10d904,7, 0x10d924,7, 0x10d944,7, 0x10d964,7, 0x10d984,7, 0x10d9a4,7, 0x10d9c4,7, 0x10d9e4,7, 0x10da04,7, 0x10da24,7, 0x10da44,7, 0x10da64,7, 0x10da84,7, 0x10daa4,7, 0x10dac4,7, 0x10dae4,7, 0x10dbf8,1, 0x10dc00,14, 0x10dc40,7, 0x10dc60,7, 0x10dc80,7, 0x10dd00,2, 0x10dd0c,3, 0x10dd20,2, 0x10dd2c,3, 0x10dd40,2, 0x10dd4c,3, 0x10dd60,2, 0x10dd6c,3, 0x10dd80,2, 0x10dd8c,3, 0x10dda0,2, 0x10ddac,3, 0x10ddc0,2, 0x10ddcc,3, 0x10dde0,2, 0x10ddec,3, 0x10de00,2, 0x10de0c,3, 0x10de20,2, 0x10de2c,3, 0x10de40,2, 0x10de4c,3, 0x10de60,2, 0x10de6c,3, 0x10de80,2, 0x10de8c,3, 0x10dea0,2, 0x10deac,3, 0x10dec0,2, 0x10decc,3, 0x10dee0,2, 0x10deec,3, 0x10e100,14, 0x10e140,4, 0x10e158,1, 0x10e200,25, 0x10e280,1, 0x10e2a0,6, 0x10e300,25, 0x10e380,1, 0x10e3a0,6, 0x10e400,25, 0x10e480,1, 0x10e4a0,6, 0x10e500,25, 0x10e580,25, 0x10e600,25, 0x10e680,25, 0x10e700,25, 0x10e780,25, 0x10e800,25, 0x10e880,25, 0x10e900,25, 0x10e980,25, 0x10ea00,25, 0x10ea80,25, 0x10eb00,25, 0x10eb80,25, 0x10ec00,25, 0x10ec80,25, 0x10ed00,4, 0x10ed20,1, 0x110000,2, 0x110200,32, 0x110400,72, 0x110600,72, 0x112000,7, 0x112020,7, 0x112040,7, 0x112060,7, 0x112080,7, 0x1120a0,7, 0x1120c0,7, 0x1120e0,7, 0x112100,7, 0x112120,7, 0x112140,7, 0x112160,7, 0x112180,7, 0x1121a0,7, 0x1121c0,7, 0x1121e0,7, 0x112200,2, 0x113000,22, 0x113060,5, 0x113100,18, 0x11315c,6, 0x113180,18, 0x1131dc,6, 0x113200,18, 0x11325c,6, 0x113280,18, 0x1132dc,6, 0x113300,21, 0x11335c,6, 0x113380,21, 0x1133dc,6, 0x113400,21, 0x11345c,6, 0x113480,21, 0x1134dc,6, 0x113500,21, 0x11355c,6, 0x113580,21, 0x1135dc,6, 0x113600,21, 0x11365c,6, 0x113680,21, 0x1136dc,6, 0x113700,21, 0x11375c,6, 0x113780,21, 0x1137dc,6, 0x113800,21, 0x11385c,6, 0x113880,21, 0x1138dc,6, 0x113900,21, 0x11395c,6, 0x113980,21, 0x1139dc,6, 0x113a00,21, 0x113a5c,6, 0x113a80,21, 0x113adc,6, 0x113b00,21, 0x113b5c,6, 0x113b80,21, 0x113bdc,6, 0x114800,18, 0x114900,18, 0x114a00,18, 0x114b00,18, 0x114c00,18, 0x114d00,4, 0x115000,5, 0x115020,5, 0x115040,5, 0x115060,5, 0x115080,5, 0x1150a0,5, 0x1150c0,5, 0x1150e0,5, 0x115100,5, 0x115120,5, 0x115140,5, 0x115160,5, 0x115180,5, 0x1151a0,5, 0x1151c0,5, 0x1151e0,5, 0x115200,5, 0x115220,5, 0x115240,5, 0x115260,5, 0x115280,5, 0x1152a0,5, 0x1152c0,5, 0x1152e0,5, 0x115300,5, 0x115320,5, 0x115340,5, 0x115360,5, 0x115380,5, 0x1153a0,5, 0x1153c0,5, 0x1153e0,5, 0x115400,5, 0x115420,5, 0x115440,5, 0x115460,5, 0x115480,5, 0x1154a0,5, 0x1154c0,5, 0x1154e0,5, 0x115500,5, 0x115520,5, 0x115540,5, 0x115560,5, 0x115580,5, 0x1155a0,5, 0x1155c0,5, 0x1155e0,5, 0x115600,5, 0x115620,5, 0x115640,5, 0x115660,5, 0x115680,5, 0x1156a0,5, 0x1156c0,5, 0x1156e0,5, 0x115700,5, 0x115720,5, 0x115740,5, 0x115760,5, 0x115780,5, 0x1157a0,5, 0x1157c0,5, 0x1157e0,5, 0x115800,9, 0x115828,2, 0x115834,10, 0x115860,1, 0x115884,6, 0x1158a0,8, 0x116000,5, 0x116020,5, 0x116040,5, 0x116060,5, 0x116080,5, 0x1160a0,5, 0x1160c0,5, 0x1160e0,5, 0x116100,5, 0x116120,5, 0x116140,5, 0x116160,5, 0x116180,5, 0x1161a0,5, 0x1161c0,5, 0x1161e0,5, 0x116200,5, 0x116220,5, 0x116240,5, 0x116260,5, 0x116280,5, 0x1162a0,5, 0x1162c0,5, 0x1162e0,5, 0x116300,5, 0x116320,5, 0x116340,5, 0x116360,5, 0x116380,5, 0x1163a0,5, 0x1163c0,5, 0x1163e0,5, 0x116400,5, 0x116420,5, 0x116440,5, 0x116460,5, 0x116480,5, 0x1164a0,5, 0x1164c0,5, 0x1164e0,5, 0x116500,5, 0x116520,5, 0x116540,5, 0x116560,5, 0x116580,5, 0x1165a0,5, 0x1165c0,5, 0x1165e0,5, 0x116600,5, 0x116620,5, 0x116640,5, 0x116660,5, 0x116680,5, 0x1166a0,5, 0x1166c0,5, 0x1166e0,5, 0x116700,5, 0x116720,5, 0x116740,5, 0x116760,5, 0x116780,5, 0x1167a0,5, 0x1167c0,5, 0x1167e0,5, 0x116800,9, 0x116828,2, 0x116834,10, 0x116860,1, 0x116884,6, 0x11e000,19, 0x11ec00,10, 0x11ec80,3, 0x11fffc,1, 0x140014,9, 0x140040,7, 0x140064,6, 0x140080,5, 0x140100,10, 0x140130,7, 0x140180,16, 0x140214,9, 0x140240,7, 0x140264,6, 0x140280,5, 0x140300,10, 0x140330,7, 0x140380,16, 0x140414,9, 0x140440,7, 0x140464,6, 0x140480,5, 0x140500,10, 0x140530,7, 0x140580,16, 0x140614,9, 0x140640,7, 0x140664,6, 0x140680,5, 0x140700,10, 0x140730,7, 0x140780,16, 0x140814,9, 0x140840,7, 0x140864,6, 0x140880,5, 0x140900,10, 0x140930,7, 0x140980,16, 0x140a14,9, 0x140a40,7, 0x140a64,6, 0x140a80,5, 0x140b00,10, 0x140b30,7, 0x140b80,16, 0x140c14,9, 0x140c40,7, 0x140c64,6, 0x140c80,5, 0x140d00,10, 0x140d30,7, 0x140d80,16, 0x140e14,9, 0x140e40,7, 0x140e64,6, 0x140e80,5, 0x140f00,10, 0x140f30,7, 0x140f80,16, 0x141014,9, 0x141040,7, 0x141064,6, 0x141080,5, 0x141100,10, 0x141130,7, 0x141180,16, 0x141214,9, 0x141240,7, 0x141264,6, 0x141280,5, 0x141300,10, 0x141330,7, 0x141380,16, 0x141414,9, 0x141440,7, 0x141464,6, 0x141480,5, 0x141500,10, 0x141530,7, 0x141580,16, 0x141614,9, 0x141640,7, 0x141664,6, 0x141680,5, 0x141700,10, 0x141730,7, 0x141780,16, 0x141814,9, 0x141840,7, 0x141864,6, 0x141880,5, 0x141900,10, 0x141930,7, 0x141980,16, 0x141a14,9, 0x141a40,7, 0x141a64,6, 0x141a80,5, 0x141b00,10, 0x141b30,7, 0x141b80,16, 0x141c14,9, 0x141c40,7, 0x141c64,6, 0x141c80,5, 0x141d00,10, 0x141d30,7, 0x141d80,16, 0x141e14,9, 0x141e40,7, 0x141e64,6, 0x141e80,5, 0x141f00,10, 0x141f30,7, 0x141f80,16, 0x142000,49, 0x143000,2, 0x143010,11, 0x143040,3, 0x143ffc,26, 0x144080,25, 0x144100,25, 0x144180,25, 0x144200,25, 0x144280,25, 0x144300,25, 0x144380,25, 0x144400,25, 0x144480,25, 0x144500,25, 0x144580,25, 0x144600,25, 0x144680,25, 0x144700,25, 0x144780,25, 0x144800,25, 0x146000,19, 0x146c00,10, 0x146c80,3, 0x146cc0,1, 0x147000,11, 0x147030,7, 0x1470a0,2, 0x150000,8, 0x150024,10, 0x150050,22, 0x150100,8, 0x150124,10, 0x150150,22, 0x150200,8, 0x150224,10, 0x150250,22, 0x150300,8, 0x150324,10, 0x150350,22, 0x150400,8, 0x150424,10, 0x150450,22, 0x150500,8, 0x150524,10, 0x150550,22, 0x150600,8, 0x150624,10, 0x150650,22, 0x150700,8, 0x150724,10, 0x150750,22, 0x150800,8, 0x150824,10, 0x150850,22, 0x150904,1, 0x150914,10, 0x150948,11, 0x150980,1, 0x1509a0,6, 0x1509c0,2, 0x1509cc,2, 0x151000,8, 0x151024,10, 0x151050,22, 0x151100,8, 0x151124,10, 0x151150,22, 0x151200,8, 0x151224,10, 0x151250,22, 0x151300,8, 0x151324,10, 0x151350,22, 0x151400,8, 0x151424,10, 0x151450,22, 0x151500,8, 0x151524,10, 0x151550,22, 0x151600,8, 0x151624,10, 0x151650,22, 0x151700,8, 0x151724,10, 0x151750,22, 0x151800,8, 0x151824,10, 0x151850,22, 0x151904,1, 0x151914,10, 0x151948,11, 0x151980,1, 0x1519a0,6, 0x1519c0,2, 0x1519cc,2, 0x155000,72, 0x155400,72, 0x155800,72, 0x155c00,72, 0x156000,72, 0x156400,72, 0x156800,72, 0x156c00,72, 0x157000,17, 0x157048,9, 0x157070,3, 0x157090,13, 0x1570d0,1, 0x1570e0,6, 0x157200,17, 0x157248,9, 0x157270,3, 0x157290,13, 0x1572d0,1, 0x1572e0,6, 0x157400,17, 0x157448,9, 0x157470,3, 0x157490,13, 0x1574d0,1, 0x1574e0,6, 0x157600,17, 0x157648,9, 0x157670,3, 0x157690,13, 0x1576d0,1, 0x1576e0,6, 0x157800,17, 0x157848,9, 0x157870,3, 0x157890,13, 0x1578d0,1, 0x1578e0,6, 0x157a00,17, 0x157a48,9, 0x157a70,3, 0x157a90,13, 0x157ad0,1, 0x157ae0,6, 0x157c00,17, 0x157c48,9, 0x157c70,3, 0x157c90,13, 0x157cd0,1, 0x157ce0,6, 0x157e00,17, 0x157e48,9, 0x157e70,3, 0x157e90,13, 0x157ed0,1, 0x157ee0,6, 0x158000,7, 0x158028,9, 0x158050,1, 0x158080,7, 0x1580a8,9, 0x1580d0,1, 0x158100,7, 0x158128,9, 0x158150,1, 0x158180,7, 0x1581a8,9, 0x1581d0,1, 0x158200,7, 0x158228,9, 0x158250,1, 0x158280,7, 0x1582a8,9, 0x1582d0,1, 0x158300,7, 0x158328,9, 0x158350,1, 0x158380,7, 0x1583a8,9, 0x1583d0,1, 0x158400,7, 0x158428,9, 0x158450,1, 0x158480,7, 0x1584a8,9, 0x1584d0,1, 0x158500,7, 0x158528,9, 0x158550,1, 0x158580,7, 0x1585a8,9, 0x1585d0,1, 0x158600,7, 0x158628,9, 0x158650,1, 0x158680,7, 0x1586a8,9, 0x1586d0,1, 0x158700,7, 0x158728,9, 0x158750,1, 0x158780,7, 0x1587a8,9, 0x1587d0,1, 0x158800,20, 0x158900,20, 0x158a00,20, 0x158b00,20, 0x158c00,20, 0x158d00,20, 0x158e00,20, 0x158f00,20, 0x159000,8, 0x159040,3, 0x159050,2, 0x1590a0,2, 0x1590ac,1, 0x1590b8,1, 0x1590c4,2, 0x159200,48, 0x159400,96, 0x159600,5, 0x159620,5, 0x159640,5, 0x159660,5, 0x159680,5, 0x1596a0,5, 0x1596c0,5, 0x1596e0,5, 0x159700,29, 0x159778,3, 0x159800,80, 0x159944,1, 0x159950,6, 0x159980,98, 0x15a000,104, 0x15a200,3, 0x15a210,2, 0x15a21c,16, 0x15a264,1, 0x15a270,2, 0x15a300,3, 0x15a310,2, 0x15a31c,16, 0x15a364,1, 0x15a370,2, 0x15a400,3, 0x15a410,2, 0x15a41c,16, 0x15a464,1, 0x15a470,2, 0x15a500,3, 0x15a510,2, 0x15a51c,16, 0x15a564,1, 0x15a570,2, 0x15a600,3, 0x15a610,2, 0x15a61c,16, 0x15a664,1, 0x15a670,2, 0x15a700,3, 0x15a710,2, 0x15a71c,16, 0x15a764,1, 0x15a770,2, 0x15a800,3, 0x15a810,2, 0x15a81c,16, 0x15a864,1, 0x15a870,2, 0x15a900,3, 0x15a910,2, 0x15a91c,16, 0x15a964,1, 0x15a970,2, 0x15aa00,17, 0x15aa48,3, 0x15ab00,7, 0x15ab80,20, 0x15abe0,2, 0x15ac00,5, 0x15ac20,5, 0x15ac40,5, 0x15ac60,5, 0x15ac80,5, 0x15aca0,5, 0x15acc0,5, 0x15ace0,5, 0x15ad00,29, 0x15ad78,3, 0x15ae00,16, 0x15b000,97, 0x15b400,97, 0x15b800,97, 0x15bc00,97, 0x15c000,97, 0x15c400,97, 0x15c800,97, 0x15cc00,97, 0x15f000,21, 0x15f060,5, 0x15f080,6, 0x15f0a0,5, 0x15f0c0,6, 0x15f100,21, 0x15f160,5, 0x15f180,6, 0x15f1a0,5, 0x15f1c0,6, 0x15f200,21, 0x15f260,5, 0x15f280,6, 0x15f2a0,5, 0x15f2c0,6, 0x15f300,21, 0x15f360,5, 0x15f380,6, 0x15f3a0,5, 0x15f3c0,6, 0x15f400,9, 0x15f448,7, 0x15f468,2, 0x15f474,9, 0x15f49c,2, 0x15f500,14, 0x15f540,14, 0x15f580,28, 0x15f600,19, 0x15f650,3, 0x15f660,25, 0x15f6c8,1, 0x15f6d0,2, 0x15f6e0,7, 0x15f700,1, 0x15f708,2, 0x15f7fc,129, 0x15fa04,9, 0x15fc04,1, 0x15fc24,21, 0x15fc80,16, 0x15fd00,8, 0x15fd40,3, 0x15fd50,3, 0x15fd60,3, 0x15fd80,11, 0x15fdb0,3, 0x15fdc0,29, 0x15fe3c,4, 0x15fe50,1, 0x15fe58,1, 0x15fe60,1, 0x15fe68,1, 0x15fe70,1, 0x15fe78,1, 0x15fe80,3, 0x15fe98,1, 0x15fea0,2, 0x15feb0,3, 0x15ff00,17, 0x15ff80,1, 0x15ff88,1, 0x15ff90,1, 0x15ff98,1, 0x15ffa0,1, 0x15ffa8,1, 0x15ffb0,1, 0x15ffb8,1, 0x160000,13, 0x160040,2, 0x160054,4, 0x160080,27, 0x160100,12, 0x160140,11, 0x160170,2, 0x160180,28, 0x160200,6, 0x160240,6, 0x16025c,3, 0x160280,5, 0x1602a0,8, 0x160400,14, 0x160440,14, 0x160480,14, 0x1604c0,14, 0x160540,3, 0x160600,7, 0x160620,14, 0x160680,5, 0x1606a0,7, 0x160800,13, 0x160840,2, 0x160854,4, 0x160880,27, 0x160900,12, 0x160940,11, 0x160970,2, 0x160980,28, 0x160a00,6, 0x160a40,6, 0x160a5c,3, 0x160a80,5, 0x160aa0,8, 0x160c00,14, 0x160c40,14, 0x160c80,14, 0x160cc0,14, 0x160d40,3, 0x160e00,7, 0x160e20,14, 0x160e80,5, 0x160ea0,7, 0x161000,13, 0x161040,2, 0x161054,4, 0x161080,27, 0x161100,12, 0x161140,11, 0x161170,2, 0x161180,28, 0x161200,6, 0x161240,6, 0x16125c,3, 0x161280,5, 0x1612a0,8, 0x161400,14, 0x161440,14, 0x161480,14, 0x1614c0,14, 0x161540,3, 0x161600,7, 0x161620,14, 0x161680,5, 0x1616a0,7, 0x161800,13, 0x161840,2, 0x161854,4, 0x161880,27, 0x161900,12, 0x161940,11, 0x161970,2, 0x161980,28, 0x161a00,6, 0x161a40,6, 0x161a5c,3, 0x161a80,5, 0x161aa0,8, 0x161c00,14, 0x161c40,14, 0x161c80,14, 0x161cc0,14, 0x161d40,3, 0x161e00,7, 0x161e20,14, 0x161e80,5, 0x161ea0,7, 0x162000,8, 0x162040,8, 0x162080,1, 0x162098,6, 0x162100,10, 0x162140,3, 0x162150,2, 0x162180,2, 0x162200,6, 0x162220,18, 0x162280,4, 0x162300,8, 0x162400,2, 0x162480,2, 0x163000,40, 0x163100,64, 0x164000,13, 0x164040,2, 0x164054,4, 0x164080,27, 0x164100,12, 0x164140,11, 0x164170,2, 0x164180,28, 0x164200,6, 0x164240,6, 0x16425c,3, 0x164280,5, 0x1642a0,8, 0x164400,14, 0x164440,14, 0x164480,14, 0x1644c0,14, 0x164540,3, 0x164600,7, 0x164620,14, 0x164680,5, 0x1646a0,7, 0x164800,13, 0x164840,2, 0x164854,4, 0x164880,27, 0x164900,12, 0x164940,11, 0x164970,2, 0x164980,28, 0x164a00,6, 0x164a40,6, 0x164a5c,3, 0x164a80,5, 0x164aa0,8, 0x164c00,14, 0x164c40,14, 0x164c80,14, 0x164cc0,14, 0x164d40,3, 0x164e00,7, 0x164e20,14, 0x164e80,5, 0x164ea0,7, 0x165000,13, 0x165040,2, 0x165054,4, 0x165080,27, 0x165100,12, 0x165140,11, 0x165170,2, 0x165180,28, 0x165200,6, 0x165240,6, 0x16525c,3, 0x165280,5, 0x1652a0,8, 0x165400,14, 0x165440,14, 0x165480,14, 0x1654c0,14, 0x165540,3, 0x165600,7, 0x165620,14, 0x165680,5, 0x1656a0,7, 0x165800,13, 0x165840,2, 0x165854,4, 0x165880,27, 0x165900,12, 0x165940,11, 0x165970,2, 0x165980,28, 0x165a00,6, 0x165a40,6, 0x165a5c,3, 0x165a80,5, 0x165aa0,8, 0x165c00,14, 0x165c40,14, 0x165c80,14, 0x165cc0,14, 0x165d40,3, 0x165e00,7, 0x165e20,14, 0x165e80,5, 0x165ea0,7, 0x166000,8, 0x166040,8, 0x166080,1, 0x166098,6, 0x166100,10, 0x166140,3, 0x166150,2, 0x166180,2, 0x166200,6, 0x166220,18, 0x166280,4, 0x166300,8, 0x166400,2, 0x166480,2, 0x167000,40, 0x167100,64, 0x168000,13, 0x168040,2, 0x168054,4, 0x168080,27, 0x168100,12, 0x168140,11, 0x168170,2, 0x168180,28, 0x168200,6, 0x168240,6, 0x16825c,3, 0x168280,5, 0x1682a0,8, 0x168400,14, 0x168440,14, 0x168480,14, 0x1684c0,14, 0x168540,3, 0x168600,7, 0x168620,14, 0x168680,5, 0x1686a0,7, 0x168800,13, 0x168840,2, 0x168854,4, 0x168880,27, 0x168900,12, 0x168940,11, 0x168970,2, 0x168980,28, 0x168a00,6, 0x168a40,6, 0x168a5c,3, 0x168a80,5, 0x168aa0,8, 0x168c00,14, 0x168c40,14, 0x168c80,14, 0x168cc0,14, 0x168d40,3, 0x168e00,7, 0x168e20,14, 0x168e80,5, 0x168ea0,7, 0x169000,13, 0x169040,2, 0x169054,4, 0x169080,27, 0x169100,12, 0x169140,11, 0x169170,2, 0x169180,28, 0x169200,6, 0x169240,6, 0x16925c,3, 0x169280,5, 0x1692a0,8, 0x169400,14, 0x169440,14, 0x169480,14, 0x1694c0,14, 0x169540,3, 0x169600,7, 0x169620,14, 0x169680,5, 0x1696a0,7, 0x169800,13, 0x169840,2, 0x169854,4, 0x169880,27, 0x169900,12, 0x169940,11, 0x169970,2, 0x169980,28, 0x169a00,6, 0x169a40,6, 0x169a5c,3, 0x169a80,5, 0x169aa0,8, 0x169c00,14, 0x169c40,14, 0x169c80,14, 0x169cc0,14, 0x169d40,3, 0x169e00,7, 0x169e20,14, 0x169e80,5, 0x169ea0,7, 0x16a000,8, 0x16a040,8, 0x16a080,1, 0x16a098,6, 0x16a100,10, 0x16a140,3, 0x16a150,2, 0x16a180,2, 0x16a200,6, 0x16a220,18, 0x16a280,4, 0x16a300,8, 0x16a400,2, 0x16a480,2, 0x16b000,40, 0x16b100,64, 0x16c000,13, 0x16c040,2, 0x16c054,4, 0x16c080,27, 0x16c100,12, 0x16c140,11, 0x16c170,2, 0x16c180,28, 0x16c200,6, 0x16c240,6, 0x16c25c,3, 0x16c280,5, 0x16c2a0,8, 0x16c400,14, 0x16c440,14, 0x16c480,14, 0x16c4c0,14, 0x16c540,3, 0x16c600,7, 0x16c620,14, 0x16c680,5, 0x16c6a0,7, 0x16c800,13, 0x16c840,2, 0x16c854,4, 0x16c880,27, 0x16c900,12, 0x16c940,11, 0x16c970,2, 0x16c980,28, 0x16ca00,6, 0x16ca40,6, 0x16ca5c,3, 0x16ca80,5, 0x16caa0,8, 0x16cc00,14, 0x16cc40,14, 0x16cc80,14, 0x16ccc0,14, 0x16cd40,3, 0x16ce00,7, 0x16ce20,14, 0x16ce80,5, 0x16cea0,7, 0x16d000,13, 0x16d040,2, 0x16d054,4, 0x16d080,27, 0x16d100,12, 0x16d140,11, 0x16d170,2, 0x16d180,28, 0x16d200,6, 0x16d240,6, 0x16d25c,3, 0x16d280,5, 0x16d2a0,8, 0x16d400,14, 0x16d440,14, 0x16d480,14, 0x16d4c0,14, 0x16d540,3, 0x16d600,7, 0x16d620,14, 0x16d680,5, 0x16d6a0,7, 0x16d800,13, 0x16d840,2, 0x16d854,4, 0x16d880,27, 0x16d900,12, 0x16d940,11, 0x16d970,2, 0x16d980,28, 0x16da00,6, 0x16da40,6, 0x16da5c,3, 0x16da80,5, 0x16daa0,8, 0x16dc00,14, 0x16dc40,14, 0x16dc80,14, 0x16dcc0,14, 0x16dd40,3, 0x16de00,7, 0x16de20,14, 0x16de80,5, 0x16dea0,7, 0x16e000,8, 0x16e040,8, 0x16e080,1, 0x16e098,6, 0x16e100,10, 0x16e140,3, 0x16e150,2, 0x16e180,2, 0x16e200,6, 0x16e220,18, 0x16e280,4, 0x16e300,8, 0x16e400,2, 0x16e480,2, 0x16f000,40, 0x16f100,64, 0x181100,18, 0x181200,19, 0x181250,4, 0x181264,2, 0x181274,22, 0x1812d0,4, 0x1812e4,2, 0x1812f4,22, 0x181350,4, 0x181364,2, 0x181374,22, 0x1813d0,4, 0x1813e4,2, 0x1813f4,22, 0x181450,4, 0x181464,2, 0x181474,22, 0x1814d0,4, 0x1814e4,2, 0x1814f4,22, 0x181550,4, 0x181564,2, 0x181574,22, 0x1815d0,4, 0x1815e4,2, 0x1815f4,22, 0x181650,4, 0x181664,2, 0x181674,22, 0x1816d0,4, 0x1816e4,2, 0x1816f4,22, 0x181750,4, 0x181764,2, 0x181774,22, 0x1817d0,4, 0x1817e4,2, 0x1817f4,22, 0x181850,4, 0x181864,2, 0x181874,22, 0x1818d0,4, 0x1818e4,2, 0x1818f4,22, 0x181950,4, 0x181964,2, 0x181974,22, 0x1819d0,4, 0x1819e4,2, 0x1819f4,13, 0x181a30,2, 0x181b00,6, 0x182014,2, 0x184000,4, 0x184014,2, 0x184020,3, 0x184030,4, 0x184044,6, 0x184060,3, 0x184080,4, 0x184094,2, 0x1840a0,3, 0x1840b0,4, 0x1840c4,6, 0x1840e0,3, 0x184100,4, 0x184114,2, 0x184120,3, 0x184130,4, 0x184144,6, 0x184160,3, 0x184180,4, 0x184194,2, 0x1841a0,3, 0x1841b0,4, 0x1841c4,6, 0x1841e0,3, 0x184200,4, 0x184214,2, 0x184220,3, 0x184230,4, 0x184244,6, 0x184260,3, 0x184280,4, 0x184294,2, 0x1842a0,3, 0x1842b0,4, 0x1842c4,6, 0x1842e0,3, 0x184300,4, 0x184314,2, 0x184320,3, 0x184330,4, 0x184344,6, 0x184360,3, 0x184380,4, 0x184394,2, 0x1843a0,3, 0x1843b0,4, 0x1843c4,6, 0x1843e0,3, 0x184400,4, 0x184414,2, 0x184420,3, 0x184430,4, 0x184444,6, 0x184460,3, 0x184480,4, 0x184494,2, 0x1844a0,3, 0x1844b0,4, 0x1844c4,6, 0x1844e0,3, 0x184500,4, 0x184514,2, 0x184520,3, 0x184530,4, 0x184544,6, 0x184560,3, 0x184580,4, 0x184594,2, 0x1845a0,3, 0x1845b0,4, 0x1845c4,6, 0x1845e0,3, 0x184600,4, 0x184614,2, 0x184620,3, 0x184630,4, 0x184644,6, 0x184660,3, 0x184680,4, 0x184694,2, 0x1846a0,3, 0x1846b0,4, 0x1846c4,6, 0x1846e0,3, 0x184700,4, 0x184714,2, 0x184720,3, 0x184730,4, 0x184744,6, 0x184760,3, 0x184780,4, 0x184794,2, 0x1847a0,3, 0x1847b0,4, 0x1847c4,6, 0x1847e0,3, 0x184880,17, 0x184bbc,22, 0x184c20,4, 0x184c40,5, 0x184c60,4, 0x184c80,5, 0x184ca0,4, 0x184cc0,5, 0x184ce0,4, 0x184d00,5, 0x184d20,4, 0x184d40,5, 0x184d60,4, 0x184d80,5, 0x184da0,4, 0x184dc0,5, 0x184de0,4, 0x184e00,5, 0x184e20,4, 0x184e60,1, 0x185000,3, 0x185010,5, 0x185480,2, 0x185490,4, 0x1854b8,5, 0x1854d0,3, 0x1854e0,3, 0x1854f0,3, 0x185500,35, 0x1855c8,9, 0x1855f0,2, 0x185600,32, 0x185700,2, 0x185800,64, 0x185a00,3, 0x185c04,1, 0x185c18,10, 0x185d04,1, 0x185d78,34, 0x185e04,1, 0x185e18,12, 0x186000,81, 0x186800,16, 0x186844,1, 0x186858,4, 0x186880,16, 0x1868c4,1, 0x1868d8,4, 0x186900,16, 0x186944,1, 0x186958,4, 0x186980,16, 0x1869c4,1, 0x1869d8,4, 0x186a00,16, 0x186a44,1, 0x186a58,4, 0x186a80,16, 0x186ac4,1, 0x186ad8,4, 0x186b00,16, 0x186b44,1, 0x186b58,4, 0x186b80,16, 0x186bc4,1, 0x186bd8,4, 0x186c00,16, 0x186c44,1, 0x186c58,4, 0x186c80,16, 0x186cc4,1, 0x186cd8,4, 0x186d00,16, 0x186d44,1, 0x186d58,4, 0x186d80,16, 0x186dc4,1, 0x186dd8,4, 0x186e00,16, 0x186e44,1, 0x186e58,4, 0x186e80,16, 0x186ec4,1, 0x186ed8,4, 0x186f00,16, 0x186f44,1, 0x186f58,4, 0x186f80,16, 0x186fc4,1, 0x186fd8,4, 0x188000,46, 0x188100,46, 0x188204,4, 0x188220,2, 0x188230,3, 0x188240,10, 0x188280,1, 0x1882e0,6, 0x188300,50, 0x1883d8,2, 0x1883e4,10, 0x188500,2, 0x18850c,3, 0x18851c,2, 0x189000,24, 0x189080,4, 0x18909c,6, 0x1890c0,24, 0x189700,3, 0x189710,3, 0x189720,3, 0x189730,3, 0x189740,3, 0x189750,3, 0x189760,3, 0x189770,3, 0x189780,3, 0x189790,3, 0x1897a0,3, 0x1897b0,3, 0x1897c0,3, 0x1897d0,3, 0x1897e0,3, 0x1897f0,3, 0x189800,525, 0x18a11c,1, 0x18a140,17, 0x18a400,1, 0x18a420,7, 0x18a440,1, 0x18a460,7, 0x18a480,1, 0x18a4a0,7, 0x18a4c0,1, 0x18a4e0,7, 0x18a500,1, 0x18a520,7, 0x18a540,1, 0x18a560,7, 0x18a580,1, 0x18a5a0,7, 0x18a5c0,1, 0x18a5e0,7, 0x18a600,1, 0x18a620,7, 0x18a640,1, 0x18a660,7, 0x18a680,1, 0x18a6a0,7, 0x18a6c0,1, 0x18a6e0,7, 0x18a700,1, 0x18a720,7, 0x18a740,1, 0x18a760,7, 0x18a780,1, 0x18a7a0,7, 0x18a7c0,1, 0x18a7e0,7, 0x18a800,19, 0x18a880,19, 0x18a900,19, 0x18a980,19, 0x18aa00,19, 0x18aa80,19, 0x18ab00,19, 0x18ab80,19, 0x18ac00,19, 0x18ac80,19, 0x18ad00,19, 0x18ad80,19, 0x18ae00,19, 0x18ae80,19, 0x18af00,19, 0x18af80,19, 0x18b000,13, 0x18b800,19, 0x18b880,19, 0x18b900,19, 0x18b980,19, 0x18ba00,19, 0x18ba80,19, 0x18bb00,19, 0x18bb80,19, 0x18bc00,19, 0x18bc80,19, 0x18bd00,19, 0x18bd80,19, 0x18be00,19, 0x18be80,19, 0x18bf00,19, 0x18bf80,19, 0x18c000,1, 0x18c008,1, 0x18c010,1, 0x18c018,1, 0x18c020,1, 0x18c028,1, 0x18c030,1, 0x18c038,1, 0x18c040,1, 0x18c100,32, 0x18c200,4, 0x18c220,1, 0x18c228,5, 0x18c258,2, 0x18c264,7, 0x18c2dc,1, 0x18c2e4,7, 0x18c408,1, 0x18c410,4, 0x18c800,16, 0x18c880,16, 0x18c900,16, 0x18c980,16, 0x18ca00,16, 0x18ca80,16, 0x18cb00,16, 0x18cb80,16, 0x18cc00,16, 0x18cc80,16, 0x18cd00,16, 0x18cd80,16, 0x18ce00,16, 0x18ce80,16, 0x18cf00,16, 0x18cf80,16, 0x18d000,32, 0x18d200,51, 0x18d480,3, 0x18d500,5, 0x18d524,5, 0x18d544,5, 0x18d564,5, 0x18d590,1, 0x18d5a0,8, 0x18d704,7, 0x18d724,7, 0x18d744,7, 0x18d764,7, 0x18d784,7, 0x18d7a4,7, 0x18d7c4,7, 0x18d7e4,7, 0x18d804,7, 0x18d824,7, 0x18d844,7, 0x18d864,7, 0x18d884,7, 0x18d8a4,7, 0x18d8c4,7, 0x18d8e4,7, 0x18d904,7, 0x18d924,7, 0x18d944,7, 0x18d964,7, 0x18d984,7, 0x18d9a4,7, 0x18d9c4,7, 0x18d9e4,7, 0x18da04,7, 0x18da24,7, 0x18da44,7, 0x18da64,7, 0x18da84,7, 0x18daa4,7, 0x18dac4,7, 0x18dae4,7, 0x18dbf8,1, 0x18dc00,14, 0x18dc40,7, 0x18dc60,7, 0x18dc80,7, 0x18dd00,2, 0x18dd0c,3, 0x18dd20,2, 0x18dd2c,3, 0x18dd40,2, 0x18dd4c,3, 0x18dd60,2, 0x18dd6c,3, 0x18dd80,2, 0x18dd8c,3, 0x18dda0,2, 0x18ddac,3, 0x18ddc0,2, 0x18ddcc,3, 0x18dde0,2, 0x18ddec,3, 0x18de00,2, 0x18de0c,3, 0x18de20,2, 0x18de2c,3, 0x18de40,2, 0x18de4c,3, 0x18de60,2, 0x18de6c,3, 0x18de80,2, 0x18de8c,3, 0x18dea0,2, 0x18deac,3, 0x18dec0,2, 0x18decc,3, 0x18dee0,2, 0x18deec,3, 0x18e100,14, 0x18e140,4, 0x18e158,1, 0x18e200,25, 0x18e280,1, 0x18e2a0,6, 0x18e300,25, 0x18e380,1, 0x18e3a0,6, 0x18e400,25, 0x18e480,1, 0x18e4a0,6, 0x18e500,25, 0x18e580,25, 0x18e600,25, 0x18e680,25, 0x18e700,25, 0x18e780,25, 0x18e800,25, 0x18e880,25, 0x18e900,25, 0x18e980,25, 0x18ea00,25, 0x18ea80,25, 0x18eb00,25, 0x18eb80,25, 0x18ec00,25, 0x18ec80,25, 0x18ed00,4, 0x18ed20,1, 0x190000,2, 0x190200,32, 0x190400,72, 0x190600,72, 0x192000,7, 0x192020,7, 0x192040,7, 0x192060,7, 0x192080,7, 0x1920a0,7, 0x1920c0,7, 0x1920e0,7, 0x192100,7, 0x192120,7, 0x192140,7, 0x192160,7, 0x192180,7, 0x1921a0,7, 0x1921c0,7, 0x1921e0,7, 0x192200,2, 0x193000,22, 0x193060,5, 0x193100,18, 0x19315c,6, 0x193180,18, 0x1931dc,6, 0x193200,18, 0x19325c,6, 0x193280,18, 0x1932dc,6, 0x193300,21, 0x19335c,6, 0x193380,21, 0x1933dc,6, 0x193400,21, 0x19345c,6, 0x193480,21, 0x1934dc,6, 0x193500,21, 0x19355c,6, 0x193580,21, 0x1935dc,6, 0x193600,21, 0x19365c,6, 0x193680,21, 0x1936dc,6, 0x193700,21, 0x19375c,6, 0x193780,21, 0x1937dc,6, 0x193800,21, 0x19385c,6, 0x193880,21, 0x1938dc,6, 0x193900,21, 0x19395c,6, 0x193980,21, 0x1939dc,6, 0x193a00,21, 0x193a5c,6, 0x193a80,21, 0x193adc,6, 0x193b00,21, 0x193b5c,6, 0x193b80,21, 0x193bdc,6, 0x194800,18, 0x194900,18, 0x194a00,18, 0x194b00,18, 0x194c00,18, 0x194d00,4, 0x195000,5, 0x195020,5, 0x195040,5, 0x195060,5, 0x195080,5, 0x1950a0,5, 0x1950c0,5, 0x1950e0,5, 0x195100,5, 0x195120,5, 0x195140,5, 0x195160,5, 0x195180,5, 0x1951a0,5, 0x1951c0,5, 0x1951e0,5, 0x195200,5, 0x195220,5, 0x195240,5, 0x195260,5, 0x195280,5, 0x1952a0,5, 0x1952c0,5, 0x1952e0,5, 0x195300,5, 0x195320,5, 0x195340,5, 0x195360,5, 0x195380,5, 0x1953a0,5, 0x1953c0,5, 0x1953e0,5, 0x195400,5, 0x195420,5, 0x195440,5, 0x195460,5, 0x195480,5, 0x1954a0,5, 0x1954c0,5, 0x1954e0,5, 0x195500,5, 0x195520,5, 0x195540,5, 0x195560,5, 0x195580,5, 0x1955a0,5, 0x1955c0,5, 0x1955e0,5, 0x195600,5, 0x195620,5, 0x195640,5, 0x195660,5, 0x195680,5, 0x1956a0,5, 0x1956c0,5, 0x1956e0,5, 0x195700,5, 0x195720,5, 0x195740,5, 0x195760,5, 0x195780,5, 0x1957a0,5, 0x1957c0,5, 0x1957e0,5, 0x195800,9, 0x195828,2, 0x195834,10, 0x195860,1, 0x195884,6, 0x1958a0,8, 0x196000,5, 0x196020,5, 0x196040,5, 0x196060,5, 0x196080,5, 0x1960a0,5, 0x1960c0,5, 0x1960e0,5, 0x196100,5, 0x196120,5, 0x196140,5, 0x196160,5, 0x196180,5, 0x1961a0,5, 0x1961c0,5, 0x1961e0,5, 0x196200,5, 0x196220,5, 0x196240,5, 0x196260,5, 0x196280,5, 0x1962a0,5, 0x1962c0,5, 0x1962e0,5, 0x196300,5, 0x196320,5, 0x196340,5, 0x196360,5, 0x196380,5, 0x1963a0,5, 0x1963c0,5, 0x1963e0,5, 0x196400,5, 0x196420,5, 0x196440,5, 0x196460,5, 0x196480,5, 0x1964a0,5, 0x1964c0,5, 0x1964e0,5, 0x196500,5, 0x196520,5, 0x196540,5, 0x196560,5, 0x196580,5, 0x1965a0,5, 0x1965c0,5, 0x1965e0,5, 0x196600,5, 0x196620,5, 0x196640,5, 0x196660,5, 0x196680,5, 0x1966a0,5, 0x1966c0,5, 0x1966e0,5, 0x196700,5, 0x196720,5, 0x196740,5, 0x196760,5, 0x196780,5, 0x1967a0,5, 0x1967c0,5, 0x1967e0,5, 0x196800,9, 0x196828,2, 0x196834,10, 0x196860,1, 0x196884,6, 0x19e000,19, 0x19ec00,10, 0x19ec80,3, 0x19fffc,1, 0x1c0014,9, 0x1c0040,7, 0x1c0064,6, 0x1c0080,5, 0x1c0100,10, 0x1c0130,7, 0x1c0180,16, 0x1c0214,9, 0x1c0240,7, 0x1c0264,6, 0x1c0280,5, 0x1c0300,10, 0x1c0330,7, 0x1c0380,16, 0x1c0414,9, 0x1c0440,7, 0x1c0464,6, 0x1c0480,5, 0x1c0500,10, 0x1c0530,7, 0x1c0580,16, 0x1c0614,9, 0x1c0640,7, 0x1c0664,6, 0x1c0680,5, 0x1c0700,10, 0x1c0730,7, 0x1c0780,16, 0x1c0814,9, 0x1c0840,7, 0x1c0864,6, 0x1c0880,5, 0x1c0900,10, 0x1c0930,7, 0x1c0980,16, 0x1c0a14,9, 0x1c0a40,7, 0x1c0a64,6, 0x1c0a80,5, 0x1c0b00,10, 0x1c0b30,7, 0x1c0b80,16, 0x1c0c14,9, 0x1c0c40,7, 0x1c0c64,6, 0x1c0c80,5, 0x1c0d00,10, 0x1c0d30,7, 0x1c0d80,16, 0x1c0e14,9, 0x1c0e40,7, 0x1c0e64,6, 0x1c0e80,5, 0x1c0f00,10, 0x1c0f30,7, 0x1c0f80,16, 0x1c1014,9, 0x1c1040,7, 0x1c1064,6, 0x1c1080,5, 0x1c1100,10, 0x1c1130,7, 0x1c1180,16, 0x1c1214,9, 0x1c1240,7, 0x1c1264,6, 0x1c1280,5, 0x1c1300,10, 0x1c1330,7, 0x1c1380,16, 0x1c1414,9, 0x1c1440,7, 0x1c1464,6, 0x1c1480,5, 0x1c1500,10, 0x1c1530,7, 0x1c1580,16, 0x1c1614,9, 0x1c1640,7, 0x1c1664,6, 0x1c1680,5, 0x1c1700,10, 0x1c1730,7, 0x1c1780,16, 0x1c1814,9, 0x1c1840,7, 0x1c1864,6, 0x1c1880,5, 0x1c1900,10, 0x1c1930,7, 0x1c1980,16, 0x1c1a14,9, 0x1c1a40,7, 0x1c1a64,6, 0x1c1a80,5, 0x1c1b00,10, 0x1c1b30,7, 0x1c1b80,16, 0x1c1c14,9, 0x1c1c40,7, 0x1c1c64,6, 0x1c1c80,5, 0x1c1d00,10, 0x1c1d30,7, 0x1c1d80,16, 0x1c1e14,9, 0x1c1e40,7, 0x1c1e64,6, 0x1c1e80,5, 0x1c1f00,10, 0x1c1f30,7, 0x1c1f80,16, 0x1c2000,49, 0x1c3000,2, 0x1c3010,11, 0x1c3040,3, 0x1c3ffc,26, 0x1c4080,25, 0x1c4100,25, 0x1c4180,25, 0x1c4200,25, 0x1c4280,25, 0x1c4300,25, 0x1c4380,25, 0x1c4400,25, 0x1c4480,25, 0x1c4500,25, 0x1c4580,25, 0x1c4600,25, 0x1c4680,25, 0x1c4700,25, 0x1c4780,25, 0x1c4800,25, 0x1c6000,19, 0x1c6c00,10, 0x1c6c80,3, 0x1c6cc0,1, 0x1c7000,11, 0x1c7030,7, 0x1c70a0,2, 0x1d0000,8, 0x1d0024,10, 0x1d0050,22, 0x1d0100,8, 0x1d0124,10, 0x1d0150,22, 0x1d0200,8, 0x1d0224,10, 0x1d0250,22, 0x1d0300,8, 0x1d0324,10, 0x1d0350,22, 0x1d0400,8, 0x1d0424,10, 0x1d0450,22, 0x1d0500,8, 0x1d0524,10, 0x1d0550,22, 0x1d0600,8, 0x1d0624,10, 0x1d0650,22, 0x1d0700,8, 0x1d0724,10, 0x1d0750,22, 0x1d0800,8, 0x1d0824,10, 0x1d0850,22, 0x1d0904,1, 0x1d0914,10, 0x1d0948,11, 0x1d0980,1, 0x1d09a0,6, 0x1d09c0,2, 0x1d09cc,2, 0x1d1000,8, 0x1d1024,10, 0x1d1050,22, 0x1d1100,8, 0x1d1124,10, 0x1d1150,22, 0x1d1200,8, 0x1d1224,10, 0x1d1250,22, 0x1d1300,8, 0x1d1324,10, 0x1d1350,22, 0x1d1400,8, 0x1d1424,10, 0x1d1450,22, 0x1d1500,8, 0x1d1524,10, 0x1d1550,22, 0x1d1600,8, 0x1d1624,10, 0x1d1650,22, 0x1d1700,8, 0x1d1724,10, 0x1d1750,22, 0x1d1800,8, 0x1d1824,10, 0x1d1850,22, 0x1d1904,1, 0x1d1914,10, 0x1d1948,11, 0x1d1980,1, 0x1d19a0,6, 0x1d19c0,2, 0x1d19cc,2, 0x1d5000,72, 0x1d5400,72, 0x1d5800,72, 0x1d5c00,72, 0x1d6000,72, 0x1d6400,72, 0x1d6800,72, 0x1d6c00,72, 0x1d7000,17, 0x1d7048,9, 0x1d7070,3, 0x1d7090,13, 0x1d70d0,1, 0x1d70e0,6, 0x1d7200,17, 0x1d7248,9, 0x1d7270,3, 0x1d7290,13, 0x1d72d0,1, 0x1d72e0,6, 0x1d7400,17, 0x1d7448,9, 0x1d7470,3, 0x1d7490,13, 0x1d74d0,1, 0x1d74e0,6, 0x1d7600,17, 0x1d7648,9, 0x1d7670,3, 0x1d7690,13, 0x1d76d0,1, 0x1d76e0,6, 0x1d7800,17, 0x1d7848,9, 0x1d7870,3, 0x1d7890,13, 0x1d78d0,1, 0x1d78e0,6, 0x1d7a00,17, 0x1d7a48,9, 0x1d7a70,3, 0x1d7a90,13, 0x1d7ad0,1, 0x1d7ae0,6, 0x1d7c00,17, 0x1d7c48,9, 0x1d7c70,3, 0x1d7c90,13, 0x1d7cd0,1, 0x1d7ce0,6, 0x1d7e00,17, 0x1d7e48,9, 0x1d7e70,3, 0x1d7e90,13, 0x1d7ed0,1, 0x1d7ee0,6, 0x1d8000,7, 0x1d8028,9, 0x1d8050,1, 0x1d8080,7, 0x1d80a8,9, 0x1d80d0,1, 0x1d8100,7, 0x1d8128,9, 0x1d8150,1, 0x1d8180,7, 0x1d81a8,9, 0x1d81d0,1, 0x1d8200,7, 0x1d8228,9, 0x1d8250,1, 0x1d8280,7, 0x1d82a8,9, 0x1d82d0,1, 0x1d8300,7, 0x1d8328,9, 0x1d8350,1, 0x1d8380,7, 0x1d83a8,9, 0x1d83d0,1, 0x1d8400,7, 0x1d8428,9, 0x1d8450,1, 0x1d8480,7, 0x1d84a8,9, 0x1d84d0,1, 0x1d8500,7, 0x1d8528,9, 0x1d8550,1, 0x1d8580,7, 0x1d85a8,9, 0x1d85d0,1, 0x1d8600,7, 0x1d8628,9, 0x1d8650,1, 0x1d8680,7, 0x1d86a8,9, 0x1d86d0,1, 0x1d8700,7, 0x1d8728,9, 0x1d8750,1, 0x1d8780,7, 0x1d87a8,9, 0x1d87d0,1, 0x1d8800,20, 0x1d8900,20, 0x1d8a00,20, 0x1d8b00,20, 0x1d8c00,20, 0x1d8d00,20, 0x1d8e00,20, 0x1d8f00,20, 0x1d9000,8, 0x1d9040,3, 0x1d9050,2, 0x1d90a0,2, 0x1d90ac,1, 0x1d90b8,1, 0x1d90c4,2, 0x1d9200,48, 0x1d9400,96, 0x1d9600,5, 0x1d9620,5, 0x1d9640,5, 0x1d9660,5, 0x1d9680,5, 0x1d96a0,5, 0x1d96c0,5, 0x1d96e0,5, 0x1d9700,29, 0x1d9778,3, 0x1d9800,80, 0x1d9944,1, 0x1d9950,6, 0x1d9980,98, 0x1da000,104, 0x1da200,3, 0x1da210,2, 0x1da21c,16, 0x1da264,1, 0x1da270,2, 0x1da300,3, 0x1da310,2, 0x1da31c,16, 0x1da364,1, 0x1da370,2, 0x1da400,3, 0x1da410,2, 0x1da41c,16, 0x1da464,1, 0x1da470,2, 0x1da500,3, 0x1da510,2, 0x1da51c,16, 0x1da564,1, 0x1da570,2, 0x1da600,3, 0x1da610,2, 0x1da61c,16, 0x1da664,1, 0x1da670,2, 0x1da700,3, 0x1da710,2, 0x1da71c,16, 0x1da764,1, 0x1da770,2, 0x1da800,3, 0x1da810,2, 0x1da81c,16, 0x1da864,1, 0x1da870,2, 0x1da900,3, 0x1da910,2, 0x1da91c,16, 0x1da964,1, 0x1da970,2, 0x1daa00,17, 0x1daa48,3, 0x1dab00,7, 0x1dab80,20, 0x1dabe0,2, 0x1dac00,5, 0x1dac20,5, 0x1dac40,5, 0x1dac60,5, 0x1dac80,5, 0x1daca0,5, 0x1dacc0,5, 0x1dace0,5, 0x1dad00,29, 0x1dad78,3, 0x1dae00,16, 0x1db000,97, 0x1db400,97, 0x1db800,97, 0x1dbc00,97, 0x1dc000,97, 0x1dc400,97, 0x1dc800,97, 0x1dcc00,97, 0x1df800,128, 0x1dfa04,9, 0x1dfc04,1, 0x1dfc24,21, 0x1dfc80,16, 0x1dfd00,8, 0x1dfd40,3, 0x1dfd50,3, 0x1dfd60,3, 0x1dfd80,11, 0x1dfdb0,3, 0x1dfdc0,29, 0x1dfe3c,4, 0x1dfe50,1, 0x1dfe58,1, 0x1dfe60,1, 0x1dfe68,1, 0x1dfe70,1, 0x1dfe78,1, 0x1dfe80,3, 0x1dfe98,1, 0x1dfea0,2, 0x1dfeb0,3, 0x1dff00,17, 0x1dff80,1, 0x1dff88,1, 0x1dff90,1, 0x1dff98,1, 0x1dffa0,1, 0x1dffa8,1, 0x1dffb0,1, 0x1dffb8,1, 0x1e0000,13, 0x1e0040,2, 0x1e0054,4, 0x1e0080,27, 0x1e0100,12, 0x1e0140,11, 0x1e0170,2, 0x1e0180,28, 0x1e0200,6, 0x1e0240,6, 0x1e025c,3, 0x1e0280,5, 0x1e02a0,8, 0x1e0400,14, 0x1e0440,14, 0x1e0480,14, 0x1e04c0,14, 0x1e0540,3, 0x1e0600,7, 0x1e0620,14, 0x1e0680,5, 0x1e06a0,7, 0x1e0800,13, 0x1e0840,2, 0x1e0854,4, 0x1e0880,27, 0x1e0900,12, 0x1e0940,11, 0x1e0970,2, 0x1e0980,28, 0x1e0a00,6, 0x1e0a40,6, 0x1e0a5c,3, 0x1e0a80,5, 0x1e0aa0,8, 0x1e0c00,14, 0x1e0c40,14, 0x1e0c80,14, 0x1e0cc0,14, 0x1e0d40,3, 0x1e0e00,7, 0x1e0e20,14, 0x1e0e80,5, 0x1e0ea0,7, 0x1e1000,13, 0x1e1040,2, 0x1e1054,4, 0x1e1080,27, 0x1e1100,12, 0x1e1140,11, 0x1e1170,2, 0x1e1180,28, 0x1e1200,6, 0x1e1240,6, 0x1e125c,3, 0x1e1280,5, 0x1e12a0,8, 0x1e1400,14, 0x1e1440,14, 0x1e1480,14, 0x1e14c0,14, 0x1e1540,3, 0x1e1600,7, 0x1e1620,14, 0x1e1680,5, 0x1e16a0,7, 0x1e1800,13, 0x1e1840,2, 0x1e1854,4, 0x1e1880,27, 0x1e1900,12, 0x1e1940,11, 0x1e1970,2, 0x1e1980,28, 0x1e1a00,6, 0x1e1a40,6, 0x1e1a5c,3, 0x1e1a80,5, 0x1e1aa0,8, 0x1e1c00,14, 0x1e1c40,14, 0x1e1c80,14, 0x1e1cc0,14, 0x1e1d40,3, 0x1e1e00,7, 0x1e1e20,14, 0x1e1e80,5, 0x1e1ea0,7, 0x1e2000,8, 0x1e2040,8, 0x1e2080,1, 0x1e2098,6, 0x1e2100,10, 0x1e2140,3, 0x1e2150,2, 0x1e2180,2, 0x1e2200,6, 0x1e2220,18, 0x1e2280,4, 0x1e2300,8, 0x1e2400,2, 0x1e2480,2, 0x1e3000,40, 0x1e3100,64, 0x1e4000,13, 0x1e4040,2, 0x1e4054,4, 0x1e4080,27, 0x1e4100,12, 0x1e4140,11, 0x1e4170,2, 0x1e4180,28, 0x1e4200,6, 0x1e4240,6, 0x1e425c,3, 0x1e4280,5, 0x1e42a0,8, 0x1e4400,14, 0x1e4440,14, 0x1e4480,14, 0x1e44c0,14, 0x1e4540,3, 0x1e4600,7, 0x1e4620,14, 0x1e4680,5, 0x1e46a0,7, 0x1e4800,13, 0x1e4840,2, 0x1e4854,4, 0x1e4880,27, 0x1e4900,12, 0x1e4940,11, 0x1e4970,2, 0x1e4980,28, 0x1e4a00,6, 0x1e4a40,6, 0x1e4a5c,3, 0x1e4a80,5, 0x1e4aa0,8, 0x1e4c00,14, 0x1e4c40,14, 0x1e4c80,14, 0x1e4cc0,14, 0x1e4d40,3, 0x1e4e00,7, 0x1e4e20,14, 0x1e4e80,5, 0x1e4ea0,7, 0x1e5000,13, 0x1e5040,2, 0x1e5054,4, 0x1e5080,27, 0x1e5100,12, 0x1e5140,11, 0x1e5170,2, 0x1e5180,28, 0x1e5200,6, 0x1e5240,6, 0x1e525c,3, 0x1e5280,5, 0x1e52a0,8, 0x1e5400,14, 0x1e5440,14, 0x1e5480,14, 0x1e54c0,14, 0x1e5540,3, 0x1e5600,7, 0x1e5620,14, 0x1e5680,5, 0x1e56a0,7, 0x1e5800,13, 0x1e5840,2, 0x1e5854,4, 0x1e5880,27, 0x1e5900,12, 0x1e5940,11, 0x1e5970,2, 0x1e5980,28, 0x1e5a00,6, 0x1e5a40,6, 0x1e5a5c,3, 0x1e5a80,5, 0x1e5aa0,8, 0x1e5c00,14, 0x1e5c40,14, 0x1e5c80,14, 0x1e5cc0,14, 0x1e5d40,3, 0x1e5e00,7, 0x1e5e20,14, 0x1e5e80,5, 0x1e5ea0,7, 0x1e6000,8, 0x1e6040,8, 0x1e6080,1, 0x1e6098,6, 0x1e6100,10, 0x1e6140,3, 0x1e6150,2, 0x1e6180,2, 0x1e6200,6, 0x1e6220,18, 0x1e6280,4, 0x1e6300,8, 0x1e6400,2, 0x1e6480,2, 0x1e7000,40, 0x1e7100,64, 0x1e8000,13, 0x1e8040,2, 0x1e8054,4, 0x1e8080,27, 0x1e8100,12, 0x1e8140,11, 0x1e8170,2, 0x1e8180,28, 0x1e8200,6, 0x1e8240,6, 0x1e825c,3, 0x1e8280,5, 0x1e82a0,8, 0x1e8400,14, 0x1e8440,14, 0x1e8480,14, 0x1e84c0,14, 0x1e8540,3, 0x1e8600,7, 0x1e8620,14, 0x1e8680,5, 0x1e86a0,7, 0x1e8800,13, 0x1e8840,2, 0x1e8854,4, 0x1e8880,27, 0x1e8900,12, 0x1e8940,11, 0x1e8970,2, 0x1e8980,28, 0x1e8a00,6, 0x1e8a40,6, 0x1e8a5c,3, 0x1e8a80,5, 0x1e8aa0,8, 0x1e8c00,14, 0x1e8c40,14, 0x1e8c80,14, 0x1e8cc0,14, 0x1e8d40,3, 0x1e8e00,7, 0x1e8e20,14, 0x1e8e80,5, 0x1e8ea0,7, 0x1e9000,13, 0x1e9040,2, 0x1e9054,4, 0x1e9080,27, 0x1e9100,12, 0x1e9140,11, 0x1e9170,2, 0x1e9180,28, 0x1e9200,6, 0x1e9240,6, 0x1e925c,3, 0x1e9280,5, 0x1e92a0,8, 0x1e9400,14, 0x1e9440,14, 0x1e9480,14, 0x1e94c0,14, 0x1e9540,3, 0x1e9600,7, 0x1e9620,14, 0x1e9680,5, 0x1e96a0,7, 0x1e9800,13, 0x1e9840,2, 0x1e9854,4, 0x1e9880,27, 0x1e9900,12, 0x1e9940,11, 0x1e9970,2, 0x1e9980,28, 0x1e9a00,6, 0x1e9a40,6, 0x1e9a5c,3, 0x1e9a80,5, 0x1e9aa0,8, 0x1e9c00,14, 0x1e9c40,14, 0x1e9c80,14, 0x1e9cc0,14, 0x1e9d40,3, 0x1e9e00,7, 0x1e9e20,14, 0x1e9e80,5, 0x1e9ea0,7, 0x1ea000,8, 0x1ea040,8, 0x1ea080,1, 0x1ea098,6, 0x1ea100,10, 0x1ea140,3, 0x1ea150,2, 0x1ea180,2, 0x1ea200,6, 0x1ea220,18, 0x1ea280,4, 0x1ea300,8, 0x1ea400,2, 0x1ea480,2, 0x1eb000,40, 0x1eb100,64, 0x1ec000,13, 0x1ec040,2, 0x1ec054,4, 0x1ec080,27, 0x1ec100,12, 0x1ec140,11, 0x1ec170,2, 0x1ec180,28, 0x1ec200,6, 0x1ec240,6, 0x1ec25c,3, 0x1ec280,5, 0x1ec2a0,8, 0x1ec400,14, 0x1ec440,14, 0x1ec480,14, 0x1ec4c0,14, 0x1ec540,3, 0x1ec600,7, 0x1ec620,14, 0x1ec680,5, 0x1ec6a0,7, 0x1ec800,13, 0x1ec840,2, 0x1ec854,4, 0x1ec880,27, 0x1ec900,12, 0x1ec940,11, 0x1ec970,2, 0x1ec980,28, 0x1eca00,6, 0x1eca40,6, 0x1eca5c,3, 0x1eca80,5, 0x1ecaa0,8, 0x1ecc00,14, 0x1ecc40,14, 0x1ecc80,14, 0x1eccc0,14, 0x1ecd40,3, 0x1ece00,7, 0x1ece20,14, 0x1ece80,5, 0x1ecea0,7, 0x1ed000,13, 0x1ed040,2, 0x1ed054,4, 0x1ed080,27, 0x1ed100,12, 0x1ed140,11, 0x1ed170,2, 0x1ed180,28, 0x1ed200,6, 0x1ed240,6, 0x1ed25c,3, 0x1ed280,5, 0x1ed2a0,8, 0x1ed400,14, 0x1ed440,14, 0x1ed480,14, 0x1ed4c0,14, 0x1ed540,3, 0x1ed600,7, 0x1ed620,14, 0x1ed680,5, 0x1ed6a0,7, 0x1ed800,13, 0x1ed840,2, 0x1ed854,4, 0x1ed880,27, 0x1ed900,12, 0x1ed940,11, 0x1ed970,2, 0x1ed980,28, 0x1eda00,6, 0x1eda40,6, 0x1eda5c,3, 0x1eda80,5, 0x1edaa0,8, 0x1edc00,14, 0x1edc40,14, 0x1edc80,14, 0x1edcc0,14, 0x1edd40,3, 0x1ede00,7, 0x1ede20,14, 0x1ede80,5, 0x1edea0,7, 0x1ee000,8, 0x1ee040,8, 0x1ee080,1, 0x1ee098,6, 0x1ee100,10, 0x1ee140,3, 0x1ee150,2, 0x1ee180,2, 0x1ee200,6, 0x1ee220,18, 0x1ee280,4, 0x1ee300,8, 0x1ee400,2, 0x1ee480,2, 0x1ef000,40, 0x1ef100,64, 0x200020,3, 0x200030,2, 0x200040,3, 0x200050,2, 0x200060,3, 0x200070,2, 0x200080,3, 0x200090,2, 0x2000a0,3, 0x2000b0,2, 0x2000c0,3, 0x2000d0,2, 0x2000e0,3, 0x2000f0,2, 0x200100,3, 0x200110,2, 0x200120,3, 0x200130,2, 0x200140,3, 0x200150,2, 0x200160,3, 0x200170,2, 0x200180,3, 0x200190,2, 0x2001a0,3, 0x2001b0,2, 0x2001c0,3, 0x2001d0,2, 0x2001e0,3, 0x2001f0,2, 0x200200,3, 0x200210,2, 0x200d00,1, 0x200d08,10, 0x201104,16, 0x201184,1, 0x20118c,1, 0x201198,3, 0x2011a8,5, 0x201200,4, 0x201264,1, 0x2012c8,4, 0x201620,6, 0x201640,6, 0x201800,2, 0x201840,2, 0x201860,7, 0x201880,1, 0x201888,2, 0x2018a4,13, 0x201a04,5, 0x201a24,5, 0x201a44,5, 0x201a64,5, 0x201a84,5, 0x201aa4,5, 0x201ac4,5, 0x201ae4,5, 0x201b04,5, 0x201b24,5, 0x201b44,5, 0x201b64,5, 0x201b84,5, 0x201ba4,5, 0x201bc4,5, 0x201be4,5, 0x201c04,20, 0x201c94,36, 0x201d30,2, 0x201d40,3, 0x201d50,1, 0x201d64,3, 0x201d80,48, 0x202008,1, 0x202014,2, 0x202200,2, 0x202284,1, 0x2022a4,25, 0x202384,1, 0x2023a4,23, 0x202410,64, 0x202600,6, 0x202620,1, 0x202640,1, 0x202648,22, 0x2026a4,1, 0x2026b0,9, 0x2026dc,71, 0x202808,32, 0x202900,11, 0x202940,7, 0x202960,1, 0x202a00,1, 0x202a40,9, 0x202a80,9, 0x202b00,1, 0x202b40,9, 0x202b80,9, 0x202c04,1, 0x202c1c,14, 0x202c60,1, 0x202c80,40, 0x202d40,12, 0x202d80,1, 0x203000,20, 0x2030d8,5, 0x2030f0,37, 0x203200,1, 0x203400,1, 0x203500,38, 0x203600,20, 0x203680,4, 0x204084,1, 0x2040a0,13, 0x204104,1, 0x204120,13, 0x204184,1, 0x2041a0,13, 0x204204,1, 0x204220,13, 0x204284,1, 0x2042a0,13, 0x204304,1, 0x204320,13, 0x204384,1, 0x2043a0,13, 0x204404,1, 0x204420,13, 0x204484,1, 0x2044a0,13, 0x204504,1, 0x204520,13, 0x204584,1, 0x2045a0,13, 0x204604,1, 0x204620,13, 0x204684,1, 0x2046a0,13, 0x204704,1, 0x204720,13, 0x204784,1, 0x2047a0,13, 0x204804,1, 0x204820,13, 0x20501c,10, 0x205048,2, 0x205080,9, 0x205100,9, 0x205140,7, 0x205160,9, 0x205280,9, 0x205300,9, 0x205410,2, 0x205420,2, 0x205600,38, 0x205700,38, 0x205800,38, 0x206000,4, 0x206020,2, 0x20602c,2, 0x206044,5, 0x206060,1, 0x206104,1, 0x206170,40, 0x206220,2, 0x20622c,2, 0x206244,5, 0x206260,1, 0x206304,1, 0x206370,40, 0x206420,2, 0x20642c,2, 0x206444,5, 0x206460,1, 0x206504,1, 0x206570,40, 0x206620,2, 0x20662c,2, 0x206644,5, 0x206660,1, 0x206704,1, 0x206770,40, 0x206820,2, 0x20682c,2, 0x206844,5, 0x206860,1, 0x206904,1, 0x206970,40, 0x206a20,2, 0x206a2c,2, 0x206a44,5, 0x206a60,1, 0x206b04,1, 0x206b70,40, 0x206c20,2, 0x206c2c,2, 0x206c44,5, 0x206c60,1, 0x206d04,1, 0x206d70,40, 0x206e20,2, 0x206e2c,2, 0x206e44,5, 0x206e60,1, 0x206f04,1, 0x206f70,36, 0x208004,16, 0x208084,1, 0x2080a4,8, 0x208104,16, 0x208180,2, 0x208200,1, 0x20820c,7, 0x20822c,3, 0x208280,16, 0x208304,12, 0x208500,5, 0x208518,7, 0x208540,1, 0x208548,4, 0x208580,2, 0x208600,5, 0x208618,7, 0x208640,1, 0x208648,4, 0x208680,2, 0x208700,5, 0x208718,7, 0x208740,1, 0x208748,4, 0x208780,2, 0x208800,5, 0x208818,7, 0x208840,1, 0x208848,4, 0x208880,2, 0x208900,5, 0x208918,7, 0x208940,1, 0x208948,4, 0x208980,2, 0x208a00,5, 0x208a18,7, 0x208a40,1, 0x208a48,4, 0x208a80,2, 0x208b00,5, 0x208b18,7, 0x208b40,1, 0x208b48,4, 0x208b80,2, 0x208c00,5, 0x208c18,7, 0x208c40,1, 0x208c48,4, 0x208c80,2, 0x208d00,5, 0x208d18,7, 0x208d40,1, 0x208d48,4, 0x208d80,2, 0x208e00,5, 0x208e18,7, 0x208e40,1, 0x208e48,4, 0x208e80,2, 0x208f00,5, 0x208f18,7, 0x208f40,1, 0x208f48,4, 0x208f80,2, 0x209000,5, 0x209018,7, 0x209040,1, 0x209048,4, 0x209080,2, 0x209100,5, 0x209118,7, 0x209140,1, 0x209148,4, 0x209180,2, 0x209200,5, 0x209218,7, 0x209240,1, 0x209248,4, 0x209280,2, 0x209300,5, 0x209318,7, 0x209340,1, 0x209348,4, 0x209380,2, 0x209400,5, 0x209418,7, 0x209440,1, 0x209448,4, 0x209480,2, 0x20c5fc,1, 0x20c604,1, 0x20c6ec,72, 0x20c810,1, 0x20c884,1, 0x20c8ac,21, 0x20c950,2, 0x20ca80,128, 0x20db00,3, 0x20db10,2, 0x20db40,8, 0x20db80,19, 0x20dc00,96, 0x20df00,3, 0x20dff8,1, 0x20e000,7, 0x20e020,7, 0x20e040,7, 0x20e060,7, 0x20e080,23, 0x20e0e0,7, 0x20e100,7, 0x20e120,14, 0x20e160,6, 0x20e180,6, 0x20e1a0,7, 0x20e1c0,6, 0x20f000,25, 0x20f080,1, 0x20f0a0,6, 0x20f100,25, 0x20f180,1, 0x20f1a0,6, 0x20f200,25, 0x20f280,1, 0x20f2a0,6, 0x20f300,25, 0x20f380,1, 0x20f3a0,6, 0x20f400,25, 0x20f480,1, 0x20f4a0,6, 0x20f500,25, 0x20f580,1, 0x20f5a0,6, 0x20f600,25, 0x20f680,1, 0x20f6a0,6, 0x20f700,25, 0x20f780,1, 0x20f7a0,6, 0x20f800,25, 0x20f880,1, 0x20f8a0,6, 0x20f900,25, 0x20f980,1, 0x20f9a0,6, 0x210000,4, 0x211000,288, 0x211ffc,4, 0x212200,32, 0x212400,72, 0x212600,72, 0x213000,5, 0x213020,3, 0x213204,13, 0x2132e0,33, 0x214010,11, 0x2140a0,4, 0x2140c4,16, 0x214480,19, 0x214500,19, 0x215010,8, 0x215880,19, 0x215900,19, 0x216008,2, 0x216018,1, 0x216820,16, 0x217880,1, 0x2178a0,6, 0x2178c0,4, 0x217910,2, 0x217920,2, 0x217930,2, 0x217a20,2, 0x217b00,9, 0x217b40,3, 0x217b80,25, 0x217c00,2, 0x217d04,1, 0x217d7c,34, 0x218000,3, 0x2180a4,7, 0x219000,288, 0x219700,2, 0x219710,2, 0x219ffc,1, 0x21a040,12, 0x21a0fc,1, 0x21b000,19, 0x21bc00,10, 0x21bc80,3, 0x21f800,1, 0x240000,4, 0x240014,1, 0x240020,3, 0x240030,3, 0x240040,13, 0x240078,4, 0x24009c,29, 0x240114,1, 0x240120,3, 0x240130,3, 0x240140,13, 0x240178,4, 0x24019c,29, 0x240214,1, 0x240220,3, 0x240230,3, 0x240240,13, 0x240278,4, 0x24029c,29, 0x240314,1, 0x240320,3, 0x240330,3, 0x240340,13, 0x240378,4, 0x24039c,29, 0x240420,2, 0x24042c,2, 0x240440,4, 0x240460,2, 0x24046c,2, 0x240480,4, 0x2404a0,2, 0x2404ac,2, 0x2404c0,4, 0x2404e0,2, 0x2404ec,2, 0x240500,2, 0x24050c,4, 0x240520,2, 0x24052c,4, 0x240540,2, 0x24054c,4, 0x240560,2, 0x24056c,4, 0x2405c0,1, 0x240600,16, 0x240800,18, 0x240880,13, 0x2408f0,3, 0x240900,18, 0x240980,13, 0x2409f0,3, 0x240a00,18, 0x240a80,13, 0x240af0,3, 0x240b00,18, 0x240b80,13, 0x240bf0,3, 0x240c00,30, 0x240c80,30, 0x240d00,30, 0x240d80,30, 0x240e00,4, 0x240e20,4, 0x240e40,4, 0x240e60,4, 0x240e80,37, 0x240f20,5, 0x240f40,5, 0x240f60,5, 0x241000,12, 0x241200,1, 0x241208,6, 0x241228,9, 0x241280,1, 0x241288,6, 0x2412a8,9, 0x241300,1, 0x241308,6, 0x241328,9, 0x241380,1, 0x241388,6, 0x2413a8,9, 0x241400,4, 0x241420,4, 0x241440,6, 0x241480,4, 0x2414a0,4, 0x2414c0,6, 0x241500,4, 0x241520,4, 0x241540,6, 0x241580,4, 0x2415a0,4, 0x2415c0,6, 0x241600,71, 0x241720,7, 0x241740,7, 0x241760,7, 0x241780,4, 0x24179c,11, 0x2417d0,2, 0x2417e0,2, 0x2417f0,2, 0x241800,7, 0x241820,7, 0x241840,7, 0x241860,7, 0x2418c0,64, 0x241aa0,2, 0x241ac0,8, 0x242000,7, 0x242020,4, 0x242040,4, 0x242060,7, 0x242080,7, 0x2420a0,4, 0x2420c0,4, 0x2420e0,7, 0x242100,7, 0x242120,4, 0x242140,4, 0x242160,7, 0x242180,7, 0x2421a0,4, 0x2421c0,4, 0x2421e0,7, 0x242200,19, 0x242280,19, 0x242300,19, 0x242380,19, 0x242400,14, 0x24243c,9, 0x242464,6, 0x242480,7, 0x2424a0,2, 0x2424ac,2, 0x242500,14, 0x24253c,9, 0x242564,6, 0x242580,7, 0x2425a0,2, 0x2425ac,2, 0x242600,14, 0x24263c,9, 0x242664,6, 0x242680,7, 0x2426a0,2, 0x2426ac,2, 0x242700,14, 0x24273c,9, 0x242764,6, 0x242780,7, 0x2427a0,2, 0x2427ac,2, 0x242800,19, 0x242880,19, 0x242900,19, 0x242980,19, 0x242a10,2, 0x242a1c,1, 0x242a50,2, 0x242a5c,1, 0x242a90,2, 0x242a9c,1, 0x242ad0,2, 0x242adc,1, 0x242b00,1, 0x242b20,1, 0x242b28,4, 0x242b40,1, 0x242b60,1, 0x242b68,4, 0x242b80,1, 0x242ba0,1, 0x242ba8,4, 0x242bc0,1, 0x242be0,1, 0x242be8,4, 0x242c00,7, 0x242c20,1, 0x242c54,18, 0x242ca0,1, 0x242cd4,18, 0x242d20,1, 0x242d54,18, 0x242da0,1, 0x242dd4,12, 0x242e08,6, 0x243000,32, 0x243100,7, 0x243120,7, 0x243140,7, 0x243160,7, 0x243180,3, 0x244000,4, 0x244014,1, 0x244020,3, 0x244030,3, 0x244040,13, 0x244078,4, 0x24409c,29, 0x244114,1, 0x244120,3, 0x244130,3, 0x244140,13, 0x244178,4, 0x24419c,29, 0x244214,1, 0x244220,3, 0x244230,3, 0x244240,13, 0x244278,4, 0x24429c,29, 0x244314,1, 0x244320,3, 0x244330,3, 0x244340,13, 0x244378,4, 0x24439c,29, 0x244420,2, 0x24442c,2, 0x244440,4, 0x244460,2, 0x24446c,2, 0x244480,4, 0x2444a0,2, 0x2444ac,2, 0x2444c0,4, 0x2444e0,2, 0x2444ec,2, 0x244500,2, 0x24450c,4, 0x244520,2, 0x24452c,4, 0x244540,2, 0x24454c,4, 0x244560,2, 0x24456c,4, 0x2445c0,1, 0x244600,16, 0x244800,18, 0x244880,13, 0x2448f0,3, 0x244900,18, 0x244980,13, 0x2449f0,3, 0x244a00,18, 0x244a80,13, 0x244af0,3, 0x244b00,18, 0x244b80,13, 0x244bf0,3, 0x244c00,30, 0x244c80,30, 0x244d00,30, 0x244d80,30, 0x244e00,4, 0x244e20,4, 0x244e40,4, 0x244e60,4, 0x244e80,37, 0x244f20,5, 0x244f40,5, 0x244f60,5, 0x245000,12, 0x245200,1, 0x245208,6, 0x245228,9, 0x245280,1, 0x245288,6, 0x2452a8,9, 0x245300,1, 0x245308,6, 0x245328,9, 0x245380,1, 0x245388,6, 0x2453a8,9, 0x245400,4, 0x245420,4, 0x245440,6, 0x245480,4, 0x2454a0,4, 0x2454c0,6, 0x245500,4, 0x245520,4, 0x245540,6, 0x245580,4, 0x2455a0,4, 0x2455c0,6, 0x245600,71, 0x245720,7, 0x245740,7, 0x245760,7, 0x245780,4, 0x24579c,11, 0x2457d0,2, 0x2457e0,2, 0x2457f0,2, 0x245800,7, 0x245820,7, 0x245840,7, 0x245860,7, 0x2458c0,64, 0x245aa0,2, 0x245ac0,8, 0x246000,7, 0x246020,4, 0x246040,4, 0x246060,7, 0x246080,7, 0x2460a0,4, 0x2460c0,4, 0x2460e0,7, 0x246100,7, 0x246120,4, 0x246140,4, 0x246160,7, 0x246180,7, 0x2461a0,4, 0x2461c0,4, 0x2461e0,7, 0x246200,19, 0x246280,19, 0x246300,19, 0x246380,19, 0x246400,14, 0x24643c,9, 0x246464,6, 0x246480,7, 0x2464a0,2, 0x2464ac,2, 0x246500,14, 0x24653c,9, 0x246564,6, 0x246580,7, 0x2465a0,2, 0x2465ac,2, 0x246600,14, 0x24663c,9, 0x246664,6, 0x246680,7, 0x2466a0,2, 0x2466ac,2, 0x246700,14, 0x24673c,9, 0x246764,6, 0x246780,7, 0x2467a0,2, 0x2467ac,2, 0x246800,19, 0x246880,19, 0x246900,19, 0x246980,19, 0x246a10,2, 0x246a1c,1, 0x246a50,2, 0x246a5c,1, 0x246a90,2, 0x246a9c,1, 0x246ad0,2, 0x246adc,1, 0x246b00,1, 0x246b20,1, 0x246b28,4, 0x246b40,1, 0x246b60,1, 0x246b68,4, 0x246b80,1, 0x246ba0,1, 0x246ba8,4, 0x246bc0,1, 0x246be0,1, 0x246be8,4, 0x246c00,7, 0x246c20,1, 0x246c54,18, 0x246ca0,1, 0x246cd4,18, 0x246d20,1, 0x246d54,18, 0x246da0,1, 0x246dd4,12, 0x246e08,6, 0x247000,32, 0x247100,7, 0x247120,7, 0x247140,7, 0x247160,7, 0x247180,3, 0x248000,21, 0x24c000,16, 0x24c080,11, 0x24c100,11, 0x24c204,1, 0x24c224,21, 0x24c280,16, 0x24c300,11, 0x24c340,11, 0x24c800,21, 0x24c860,5, 0x24c880,6, 0x24c8a0,5, 0x24c8c0,6, 0x24c900,21, 0x24c960,5, 0x24c980,6, 0x24c9a0,5, 0x24c9c0,6, 0x24ca00,21, 0x24ca60,5, 0x24ca80,6, 0x24caa0,5, 0x24cac0,6, 0x24cb00,21, 0x24cb60,5, 0x24cb80,6, 0x24cba0,5, 0x24cbc0,6, 0x24cc00,9, 0x24cc48,7, 0x24cc68,2, 0x24cc74,9, 0x24cc9c,2, 0x24cd00,14, 0x24cd40,14, 0x24cd80,28, 0x24ce00,19, 0x24ce50,3, 0x24ce60,25, 0x24cec8,1, 0x24ced0,2, 0x24cee0,7, 0x24cf00,1, 0x24cf08,2, 0x24cffc,9, 0x24d024,10, 0x24d050,22, 0x24d100,8, 0x24d124,10, 0x24d150,22, 0x24d200,8, 0x24d224,10, 0x24d250,22, 0x24d300,8, 0x24d324,10, 0x24d350,22, 0x24d400,8, 0x24d424,10, 0x24d450,22, 0x24d500,8, 0x24d524,10, 0x24d550,22, 0x24d600,8, 0x24d624,10, 0x24d650,22, 0x24d700,8, 0x24d724,10, 0x24d750,22, 0x24d800,8, 0x24d824,10, 0x24d850,22, 0x24d904,1, 0x24d914,10, 0x24d948,11, 0x24d980,1, 0x24d9a0,6, 0x24d9c0,2, 0x24d9cc,2, 0x24e000,35, 0x24ec00,10, 0x24ec80,3, 0x24ecc0,1, 0x24f000,1, 0x24f008,3, 0x24f038,1, 0x24f044,1, 0x24f050,2, 0x24f060,8, 0x24f100,13, 0x24f140,19, 0x24f190,4, 0x250000,13, 0x250040,2, 0x250054,4, 0x250080,27, 0x250100,12, 0x250140,11, 0x250170,2, 0x250180,28, 0x250200,6, 0x250240,6, 0x25025c,3, 0x250280,5, 0x2502a0,8, 0x250400,14, 0x250440,14, 0x250480,14, 0x2504c0,14, 0x250540,3, 0x250600,7, 0x250620,14, 0x250680,5, 0x2506a0,7, 0x250800,13, 0x250840,2, 0x250854,4, 0x250880,27, 0x250900,12, 0x250940,11, 0x250970,2, 0x250980,28, 0x250a00,6, 0x250a40,6, 0x250a5c,3, 0x250a80,5, 0x250aa0,8, 0x250c00,14, 0x250c40,14, 0x250c80,14, 0x250cc0,14, 0x250d40,3, 0x250e00,7, 0x250e20,14, 0x250e80,5, 0x250ea0,7, 0x251000,13, 0x251040,2, 0x251054,4, 0x251080,27, 0x251100,12, 0x251140,11, 0x251170,2, 0x251180,28, 0x251200,6, 0x251240,6, 0x25125c,3, 0x251280,5, 0x2512a0,8, 0x251400,14, 0x251440,14, 0x251480,14, 0x2514c0,14, 0x251540,3, 0x251600,7, 0x251620,14, 0x251680,5, 0x2516a0,7, 0x251800,13, 0x251840,2, 0x251854,4, 0x251880,27, 0x251900,12, 0x251940,11, 0x251970,2, 0x251980,28, 0x251a00,6, 0x251a40,6, 0x251a5c,3, 0x251a80,5, 0x251aa0,8, 0x251c00,14, 0x251c40,14, 0x251c80,14, 0x251cc0,14, 0x251d40,3, 0x251e00,7, 0x251e20,14, 0x251e80,5, 0x251ea0,7, 0x252000,8, 0x252040,8, 0x252080,1, 0x252098,6, 0x252100,10, 0x252140,3, 0x252150,2, 0x252180,2, 0x252200,6, 0x252220,18, 0x252280,4, 0x252300,8, 0x252400,2, 0x252480,2, 0x253000,40, 0x253100,64, 0x254000,13, 0x254040,2, 0x254054,4, 0x254080,27, 0x254100,12, 0x254140,11, 0x254170,2, 0x254180,28, 0x254200,6, 0x254240,6, 0x25425c,3, 0x254280,5, 0x2542a0,8, 0x254400,14, 0x254440,14, 0x254480,14, 0x2544c0,14, 0x254540,3, 0x254600,7, 0x254620,14, 0x254680,5, 0x2546a0,7, 0x254800,13, 0x254840,2, 0x254854,4, 0x254880,27, 0x254900,12, 0x254940,11, 0x254970,2, 0x254980,28, 0x254a00,6, 0x254a40,6, 0x254a5c,3, 0x254a80,5, 0x254aa0,8, 0x254c00,14, 0x254c40,14, 0x254c80,14, 0x254cc0,14, 0x254d40,3, 0x254e00,7, 0x254e20,14, 0x254e80,5, 0x254ea0,7, 0x255000,13, 0x255040,2, 0x255054,4, 0x255080,27, 0x255100,12, 0x255140,11, 0x255170,2, 0x255180,28, 0x255200,6, 0x255240,6, 0x25525c,3, 0x255280,5, 0x2552a0,8, 0x255400,14, 0x255440,14, 0x255480,14, 0x2554c0,14, 0x255540,3, 0x255600,7, 0x255620,14, 0x255680,5, 0x2556a0,7, 0x255800,13, 0x255840,2, 0x255854,4, 0x255880,27, 0x255900,12, 0x255940,11, 0x255970,2, 0x255980,28, 0x255a00,6, 0x255a40,6, 0x255a5c,3, 0x255a80,5, 0x255aa0,8, 0x255c00,14, 0x255c40,14, 0x255c80,14, 0x255cc0,14, 0x255d40,3, 0x255e00,7, 0x255e20,14, 0x255e80,5, 0x255ea0,7, 0x256000,8, 0x256040,8, 0x256080,1, 0x256098,6, 0x256100,10, 0x256140,3, 0x256150,2, 0x256180,2, 0x256200,6, 0x256220,18, 0x256280,4, 0x256300,8, 0x256400,2, 0x256480,2, 0x257000,40, 0x257100,64, 0x260000,11, 0x260030,10, 0x260060,8, 0x260088,4, 0x260100,25, 0x260180,1, 0x2601a0,6, 0x260200,4, 0x260220,4, 0x260240,4, 0x260260,4, 0x260280,2, 0x2602a0,2, 0x2602c0,4, 0x2602e0,2, 0x260300,2, 0x260320,2, 0x260340,2, 0x260400,2, 0x261000,37, 0x261100,26, 0x26116c,7, 0x2611a0,1, 0x2611c0,9, 0x2611e8,1, 0x261200,16, 0x261248,4, 0x261280,6, 0x26129c,1, 0x2612a4,2, 0x2612b8,9, 0x2612e0,4, 0x261304,15, 0x261344,7, 0x261380,7, 0x2613a0,6, 0x2613c0,7, 0x2613e0,6, 0x261400,7, 0x261424,3, 0x261438,17, 0x261480,3, 0x261490,24, 0x261500,20, 0x261700,7, 0x261744,9, 0x26176c,2, 0x261780,10, 0x261800,37, 0x261900,26, 0x26196c,7, 0x2619a0,1, 0x2619c0,9, 0x2619e8,1, 0x261a00,16, 0x261a48,4, 0x261a80,6, 0x261a9c,1, 0x261aa4,2, 0x261ab8,9, 0x261ae0,4, 0x261b04,15, 0x261b44,7, 0x261b80,7, 0x261ba0,6, 0x261bc0,7, 0x261be0,6, 0x261c00,7, 0x261c24,3, 0x261c38,17, 0x261c80,3, 0x261c90,24, 0x261d00,20, 0x261f00,7, 0x261f44,9, 0x261f6c,2, 0x261f80,10, 0x262000,598, 0x263000,598, 0x264000,35, 0x264c00,10, 0x264c80,3, 0x268000,4, 0x268018,18, 0x268100,4, 0x268118,18, 0x268200,13, 0x268300,6, 0x268320,5, 0x268340,6, 0x268360,5, 0x268380,6, 0x268480,12, 0x2684c4,1, 0x2684cc,1, 0x2684d4,1, 0x2684e0,4, 0x26850c,7, 0x268544,2, 0x26855c,9, 0x268584,2, 0x2685a4,7, 0x2685c4,2, 0x2685d8,2, 0x2685e4,2, 0x2685f8,2, 0x268604,2, 0x268614,11, 0x268644,5, 0x268660,2, 0x268700,25, 0x268780,1, 0x2687a0,6, 0x268f00,8, 0x268fbc,8, 0x268fe0,2, 0x268fec,2, 0x269000,8, 0x26a000,2, 0x26a00c,3, 0x26a024,2, 0x26a044,3, 0x26a104,1, 0x26a10c,1, 0x26a200,10, 0x26a280,18, 0x26a2d0,2, 0x26a300,2, 0x26a344,1, 0x26a364,7, 0x26a804,1, 0x26a838,18, 0x26a900,40, 0x26ab00,1, 0x26ab08,1, 0x26ab10,1, 0x26ab18,1, 0x26ab20,1, 0x26ab28,1, 0x26ab30,1, 0x26ab38,1, 0x26ab40,1, 0x26ab48,1, 0x26ab50,1, 0x26ab58,1, 0x26ab60,1, 0x26ab68,1, 0x26ab70,1, 0x26ab78,1, 0x26ab80,1, 0x26ab88,1, 0x26ab90,1, 0x26ab98,1, 0x26ac00,2, 0x26ac84,1, 0x26acb8,19, 0x26ae00,2, 0x26ae84,1, 0x26aeb8,20, 0x26b000,36, 0x26b100,3, 0x26b110,3, 0x26b120,3, 0x26b130,3, 0x26b140,3, 0x26b150,3, 0x26b160,3, 0x26b170,3, 0x26b180,3, 0x26b190,3, 0x26b1a0,3, 0x26b1b0,3, 0x26b1c0,3, 0x26b1d0,3, 0x26b1e0,3, 0x26b1f0,3, 0x26b200,3, 0x26b210,3, 0x26b280,18, 0x26b380,3, 0x26b404,1, 0x26b42c,21, 0x26b500,3, 0x26b510,3, 0x26b520,3, 0x26b530,3, 0x26b540,3, 0x26b550,3, 0x26b560,3, 0x26b570,3, 0x26b580,3, 0x26b600,7, 0x26b800,1, 0x26b808,2, 0x26b820,1, 0x26b900,32, 0x26ba00,5, 0x26ba1c,1, 0x26bb00,6, 0x26bb20,7, 0x26bb40,7, 0x26bb60,8, 0x26bc00,25, 0x26bc80,1, 0x26bca0,6, 0x26bd00,35, 0x26c000,135, 0x26c300,6, 0x26c320,6, 0x26c340,6, 0x26c360,6, 0x26c380,6, 0x26c3a0,6, 0x26c3c0,6, 0x26c3e0,6, 0x26c400,6, 0x26c420,6, 0x26c440,6, 0x26c460,6, 0x26c480,6, 0x26c4a0,6, 0x26c4c0,6, 0x26c4e0,6, 0x26c500,135, 0x26c800,6, 0x26c820,6, 0x26c840,6, 0x26c860,6, 0x26c880,6, 0x26c8a0,6, 0x26c8c0,6, 0x26c8e0,6, 0x26c900,6, 0x26c920,6, 0x26c940,6, 0x26c960,6, 0x26c980,6, 0x26c9a0,6, 0x26c9c0,6, 0x26c9e0,6, 0x26ca00,135, 0x26cd00,6, 0x26cd20,6, 0x26cd40,6, 0x26cd60,6, 0x26cd80,6, 0x26cda0,6, 0x26cdc0,6, 0x26cde0,6, 0x26ce00,6, 0x26ce20,6, 0x26ce40,6, 0x26ce60,6, 0x26ce80,6, 0x26cea0,6, 0x26cec0,6, 0x26cee0,6, 0x26cf00,135, 0x26d200,6, 0x26d220,6, 0x26d240,6, 0x26d260,6, 0x26d280,6, 0x26d2a0,6, 0x26d2c0,6, 0x26d2e0,6, 0x26d300,6, 0x26d320,6, 0x26d340,6, 0x26d360,6, 0x26d380,6, 0x26d3a0,6, 0x26d3c0,6, 0x26d3e0,6, 0x26d400,135, 0x26d700,6, 0x26d720,6, 0x26d740,6, 0x26d760,6, 0x26d780,6, 0x26d7a0,6, 0x26d7c0,6, 0x26d7e0,6, 0x26d800,6, 0x26d820,6, 0x26d840,6, 0x26d860,6, 0x26d880,6, 0x26d8a0,6, 0x26d8c0,6, 0x26d8e0,6, 0x26d900,135, 0x26dc00,6, 0x26dc20,6, 0x26dc40,6, 0x26dc60,6, 0x26dc80,6, 0x26dca0,6, 0x26dcc0,6, 0x26dce0,6, 0x26dd00,6, 0x26dd20,6, 0x26dd40,6, 0x26dd60,6, 0x26dd80,6, 0x26dda0,6, 0x26ddc0,6, 0x26dde0,6, 0x26de00,135, 0x26e100,6, 0x26e120,6, 0x26e140,6, 0x26e160,6, 0x26e180,6, 0x26e1a0,6, 0x26e1c0,6, 0x26e1e0,6, 0x26e200,6, 0x26e220,6, 0x26e240,6, 0x26e260,6, 0x26e280,6, 0x26e2a0,6, 0x26e2c0,6, 0x26e2e0,6, 0x26e300,135, 0x26e600,6, 0x26e620,6, 0x26e640,6, 0x26e660,6, 0x26e680,6, 0x26e6a0,6, 0x26e6c0,6, 0x26e6e0,6, 0x26e700,6, 0x26e720,6, 0x26e740,6, 0x26e760,6, 0x26e780,6, 0x26e7a0,6, 0x26e7c0,6, 0x26e7e0,6, 0x26e800,135, 0x26eb00,6, 0x26eb20,6, 0x26eb40,6, 0x26eb60,6, 0x26eb80,6, 0x26eba0,6, 0x26ebc0,6, 0x26ebe0,6, 0x26ec00,6, 0x26ec20,6, 0x26ec40,6, 0x26ec60,6, 0x26ec80,6, 0x26eca0,6, 0x26ecc0,6, 0x26ece0,6, 0x26ed00,2, mstflint-4.26.0/mstdump/mstdump_dbs/Spectrum4.csv0000644000175000017500001601767514522641732022347 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,28, 0x000480,27, 0x000500,5, 0x000518,2, 0x000800,28, 0x000880,27, 0x000900,5, 0x000918,2, 0x000c00,28, 0x000c80,27, 0x000d00,5, 0x000d18,2, 0x001000,28, 0x001080,27, 0x001100,5, 0x001118,2, 0x001400,28, 0x001480,27, 0x001500,5, 0x001518,2, 0x001800,28, 0x001880,27, 0x001900,5, 0x001918,2, 0x001c00,28, 0x001c80,27, 0x001d00,5, 0x001d18,2, 0x002000,28, 0x002080,27, 0x002100,5, 0x002118,2, 0x002400,28, 0x002480,27, 0x002500,5, 0x002518,2, 0x002800,28, 0x002880,27, 0x002900,5, 0x002918,2, 0x002c00,28, 0x002c80,27, 0x002d00,5, 0x002d18,2, 0x003000,28, 0x003080,27, 0x003100,5, 0x003118,2, 0x003400,28, 0x003480,27, 0x003500,5, 0x003518,2, 0x003800,28, 0x003880,27, 0x003900,5, 0x003918,2, 0x003c00,28, 0x003c80,27, 0x003d00,5, 0x003d18,2, 0x004000,28, 0x004080,27, 0x004100,5, 0x004118,2, 0x004400,28, 0x004480,27, 0x004500,5, 0x004518,2, 0x004800,28, 0x004880,27, 0x004900,5, 0x004918,2, 0x004c00,28, 0x004c80,27, 0x004d00,5, 0x004d18,2, 0x005000,28, 0x005080,27, 0x005100,5, 0x005118,2, 0x005400,28, 0x005480,27, 0x005500,5, 0x005518,2, 0x005800,28, 0x005880,27, 0x005900,5, 0x005918,2, 0x005c00,28, 0x005c80,27, 0x005d00,5, 0x005d18,2, 0x006000,28, 0x006080,27, 0x006100,5, 0x006118,2, 0x006400,28, 0x006480,27, 0x006500,5, 0x006518,2, 0x006800,28, 0x006880,27, 0x006900,5, 0x006918,2, 0x006c00,28, 0x006c80,27, 0x006d00,5, 0x006d18,2, 0x007000,28, 0x007080,27, 0x007100,5, 0x007118,2, 0x007400,28, 0x007480,27, 0x007500,5, 0x007518,2, 0x007800,28, 0x007880,27, 0x007900,5, 0x007918,2, 0x007c00,28, 0x007c80,27, 0x007d00,5, 0x007d18,2, 0x008000,28, 0x008080,27, 0x008100,5, 0x008118,2, 0x008400,28, 0x008480,27, 0x008500,5, 0x008518,2, 0x008800,28, 0x008880,27, 0x008900,5, 0x008918,2, 0x008c00,28, 0x008c80,27, 0x008d00,5, 0x008d18,2, 0x009000,28, 0x009080,27, 0x009100,5, 0x009118,2, 0x009400,28, 0x009480,27, 0x009500,5, 0x009518,2, 0x009800,28, 0x009880,27, 0x009900,5, 0x009918,2, 0x009c00,28, 0x009c80,27, 0x009d00,5, 0x009d18,2, 0x00a000,28, 0x00a080,27, 0x00a100,5, 0x00a118,2, 0x00a400,28, 0x00a480,27, 0x00a500,5, 0x00a518,2, 0x00a800,28, 0x00a880,27, 0x00a900,5, 0x00a918,2, 0x00ac00,28, 0x00ac80,27, 0x00ad00,5, 0x00ad18,2, 0x00b000,28, 0x00b080,27, 0x00b100,5, 0x00b118,2, 0x00b400,28, 0x00b480,27, 0x00b500,5, 0x00b518,2, 0x00b800,28, 0x00b880,27, 0x00b900,5, 0x00b918,2, 0x00bc00,28, 0x00bc80,27, 0x00bd00,5, 0x00bd18,2, 0x00c000,28, 0x00c080,27, 0x00c100,5, 0x00c118,2, 0x00c400,28, 0x00c480,27, 0x00c500,5, 0x00c518,2, 0x00c800,28, 0x00c880,27, 0x00c900,5, 0x00c918,2, 0x00cc00,28, 0x00cc80,27, 0x00cd00,5, 0x00cd18,2, 0x00d000,28, 0x00d080,27, 0x00d100,5, 0x00d118,2, 0x00d400,28, 0x00d480,27, 0x00d500,5, 0x00d518,2, 0x00d800,28, 0x00d880,27, 0x00d900,5, 0x00d918,2, 0x00dc00,28, 0x00dc80,27, 0x00dd00,5, 0x00dd18,2, 0x00e000,28, 0x00e080,27, 0x00e100,5, 0x00e118,2, 0x00e400,28, 0x00e480,27, 0x00e500,5, 0x00e518,2, 0x00e800,28, 0x00e880,27, 0x00e900,5, 0x00e918,2, 0x00ec00,28, 0x00ec80,27, 0x00ed00,5, 0x00ed18,2, 0x00f000,28, 0x00f080,27, 0x00f100,5, 0x00f118,2, 0x00f400,28, 0x00f480,27, 0x00f500,5, 0x00f518,2, 0x00f800,28, 0x00f880,27, 0x00f900,5, 0x00f918,2, 0x00fc00,28, 0x00fc80,27, 0x00fd00,5, 0x00fd18,2, 0x010000,28, 0x010080,27, 0x010100,5, 0x010118,2, 0x010400,28, 0x010480,27, 0x010500,5, 0x010518,2, 0x010800,28, 0x010880,25, 0x010900,4, 0x010c00,28, 0x010c80,15, 0x010cc0,4, 0x011000,28, 0x011080,11, 0x0110c0,5, 0x0110d8,2, 0x011400,28, 0x011480,11, 0x0114c0,5, 0x0114d8,2, 0x011800,28, 0x011880,27, 0x011900,4, 0x011c00,28, 0x011c80,23, 0x011d00,4, 0x012000,28, 0x012080,23, 0x012100,4, 0x012400,28, 0x012480,23, 0x012500,4, 0x012800,28, 0x012880,23, 0x012900,4, 0x012c00,28, 0x012c80,19, 0x012d00,4, 0x013000,28, 0x013080,19, 0x013100,4, 0x040000,2244, 0x044000,2, 0x044040,9, 0x044080,7, 0x048000,2244, 0x04c000,28, 0x04c080,14, 0x04c0c0,23, 0x04c120,2, 0x04c130,8, 0x04c180,8, 0x04c1c0,28, 0x04c240,7, 0x04c400,28, 0x04c480,14, 0x04c4c0,23, 0x04c520,2, 0x04c530,8, 0x04c580,8, 0x04c5c0,28, 0x04c640,7, 0x04c800,28, 0x04c880,14, 0x04c8c0,23, 0x04c920,2, 0x04c930,8, 0x04c980,8, 0x04c9c0,28, 0x04ca40,7, 0x04cc00,7, 0x04cc20,7, 0x04cc40,7, 0x04cc60,7, 0x04cc80,7, 0x04cca0,7, 0x04ccc0,7, 0x04cce0,7, 0x04cd00,54, 0x04d000,22, 0x04d080,22, 0x04d100,22, 0x04d180,22, 0x04d200,22, 0x04d280,22, 0x04d300,22, 0x04d380,22, 0x04d400,134, 0x04d640,14, 0x04d680,4, 0x04d6a0,6, 0x04d6c0,8, 0x04d700,22, 0x04d760,6, 0x04d780,3, 0x04d790,2, 0x04e000,2, 0x04e084,5, 0x04e0a4,1, 0x04e0ac,3, 0x04e0c4,1, 0x04e0cc,3, 0x04e0e0,5, 0x04e104,5, 0x04e124,1, 0x04e12c,3, 0x04e144,1, 0x04e14c,3, 0x04e160,5, 0x04e180,4, 0x04e200,4, 0x04e280,31, 0x04e300,1, 0x04e380,10, 0x04e3c0,10, 0x04e400,2, 0x04e500,4, 0x04e580,31, 0x04e600,1, 0x04e680,10, 0x04e6c0,10, 0x04e700,15, 0x04e740,9, 0x04e800,4, 0x04e880,31, 0x04e900,1, 0x04e980,10, 0x04e9c0,10, 0x04ea00,15, 0x04ea40,9, 0x04f000,532, 0x050000,153, 0x050284,1, 0x050294,15, 0x050300,19, 0x050380,17, 0x050400,12, 0x051004,1, 0x05102c,21, 0x051084,1, 0x0510ac,48, 0x051180,11, 0x0511c0,11, 0x051200,11, 0x051240,11, 0x051280,3, 0x0512c0,11, 0x051300,11, 0x051340,11, 0x051380,11, 0x0513c0,11, 0x051400,11, 0x051440,5, 0x051458,14, 0x0514c0,7, 0x0514e0,1, 0x051500,11, 0x051540,11, 0x051580,4, 0x0515c0,7, 0x0515e0,1, 0x051600,11, 0x051640,11, 0x051680,1, 0x0516c0,7, 0x0516e0,1, 0x051700,11, 0x051740,11, 0x051780,43, 0x052000,114, 0x0521d0,3, 0x0521e0,3, 0x0521f0,3, 0x052200,58, 0x052400,52, 0x052600,96, 0x052784,1, 0x052790,4, 0x052800,48, 0x0528c4,7, 0x052a04,12, 0x052a38,6, 0x052a80,16, 0x052b00,23, 0x052b80,8, 0x052c00,27, 0x052c80,4, 0x052cc0,25, 0x052d40,6, 0x052d60,4, 0x052d74,3, 0x052e00,8, 0x052e24,28, 0x053000,48, 0x0530c4,6, 0x0530e0,7, 0x053100,1, 0x053110,18, 0x053160,3, 0x053170,8, 0x053200,14, 0x053240,18, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c00,11, 0x060c40,6, 0x060c60,7, 0x060c80,2, 0x060ca4,1, 0x060cb0,4, 0x060cc4,1, 0x060ccc,12, 0x060d00,2, 0x060e00,6, 0x060e20,41, 0x060f04,1, 0x060f40,21, 0x060f98,9, 0x061004,1, 0x061020,15, 0x061064,1, 0x061074,6, 0x061090,5, 0x0610c0,6, 0x0610e0,6, 0x061100,3, 0x061110,11, 0x061140,18, 0x061200,37, 0x061298,5, 0x061400,70, 0x061600,8, 0x061630,2, 0x06163c,9, 0x061664,2, 0x061680,6, 0x0616a0,14, 0x0616e0,7, 0x061700,2, 0x06170c,3, 0x061720,7, 0x061740,1, 0x064000,7, 0x064020,7, 0x064040,19, 0x0640c4,1, 0x0640cc,19, 0x064120,3, 0x064130,3, 0x064140,3, 0x064160,7, 0x064180,7, 0x0641a0,17, 0x064204,1, 0x06420c,18, 0x064284,1, 0x06429c,10, 0x0642c8,3, 0x068000,5, 0x068020,1, 0x068030,1, 0x068040,1, 0x068050,1, 0x068060,1, 0x068070,1, 0x068080,1, 0x068090,1, 0x0680a0,1, 0x0680b0,1, 0x0680c0,1, 0x0680d0,1, 0x0680e0,1, 0x0680f0,1, 0x068100,1, 0x068110,1, 0x068120,1, 0x068130,1, 0x068140,1, 0x068150,1, 0x068160,1, 0x068170,1, 0x068180,1, 0x068190,1, 0x0681a0,1, 0x0681b0,1, 0x0681c0,1, 0x0681d0,1, 0x0681e0,1, 0x0681f0,1, 0x068200,1, 0x068210,1, 0x068220,1, 0x068230,1, 0x068240,1, 0x068250,1, 0x068260,1, 0x068270,1, 0x068280,1, 0x068290,1, 0x0682a0,1, 0x0682b0,1, 0x0682c0,1, 0x0682d0,1, 0x0682e0,1, 0x0682f0,1, 0x068300,1, 0x068310,1, 0x068320,1, 0x068330,1, 0x068340,1, 0x068350,1, 0x068360,1, 0x068370,1, 0x068380,1, 0x068390,1, 0x0683a0,1, 0x0683b0,1, 0x0683c0,1, 0x0683d0,1, 0x0683e0,1, 0x0683f0,1, 0x068400,1, 0x068410,1, 0x068420,1, 0x068430,1, 0x068440,1, 0x068450,1, 0x068460,1, 0x068470,1, 0x068480,1, 0x068490,1, 0x0684a0,1, 0x0684b0,1, 0x0684c0,1, 0x0684d0,1, 0x0684e0,1, 0x0684f0,1, 0x068500,1, 0x068510,1, 0x068520,1, 0x068530,1, 0x068540,1, 0x068550,1, 0x068560,1, 0x068570,1, 0x068580,1, 0x068590,1, 0x0685a0,1, 0x0685b0,1, 0x0685c0,1, 0x0685d0,1, 0x0685e0,1, 0x0685f0,1, 0x068600,1, 0x068610,1, 0x068620,1, 0x068630,1, 0x068640,1, 0x068650,1, 0x068660,1, 0x068670,1, 0x068680,1, 0x068690,1, 0x0686a0,1, 0x0686b0,1, 0x0686c0,1, 0x0686d0,1, 0x0686e0,1, 0x0686f0,1, 0x068700,1, 0x068710,1, 0x068720,1, 0x068730,1, 0x068740,1, 0x068750,1, 0x068760,1, 0x068770,1, 0x068780,1, 0x068790,1, 0x0687a0,1, 0x0687b0,1, 0x0687c0,1, 0x0687d0,1, 0x0687e0,1, 0x0687f0,1, 0x068800,1, 0x068810,1, 0x068820,1, 0x068830,1, 0x068840,1, 0x068850,1, 0x068860,1, 0x068870,1, 0x068880,1, 0x068890,1, 0x0688a0,1, 0x0688b0,1, 0x0688c0,1, 0x0688d0,1, 0x0688e0,1, 0x0688f0,1, 0x068900,1, 0x068910,1, 0x068920,1, 0x068930,1, 0x068940,1, 0x068950,1, 0x068960,1, 0x068970,1, 0x068980,1, 0x068990,1, 0x0689a0,1, 0x0689b0,1, 0x0689c0,1, 0x0689d0,1, 0x0689e0,1, 0x0689f0,1, 0x068a00,1, 0x068a10,1, 0x068a20,1, 0x068a30,1, 0x068a40,1, 0x068a50,1, 0x068a60,1, 0x068a70,1, 0x068a80,1, 0x068a90,1, 0x068aa0,1, 0x068ab0,1, 0x068ac0,1, 0x068ad0,1, 0x068ae0,1, 0x068af0,1, 0x068b00,1, 0x068b10,1, 0x068b20,1, 0x068b30,1, 0x068b40,1, 0x068b50,1, 0x068b60,1, 0x068b70,1, 0x068b80,1, 0x068b90,1, 0x068ba0,1, 0x068bb0,1, 0x068bc0,1, 0x068bd0,1, 0x068be0,1, 0x068bf0,1, 0x068c00,1, 0x068c10,1, 0x068c20,1, 0x068c30,1, 0x068c40,1, 0x068c50,1, 0x068c60,1, 0x068c70,1, 0x068c80,1, 0x068c90,1, 0x068ca0,1, 0x068cb0,1, 0x068cc0,1, 0x068cd0,1, 0x068ce0,1, 0x068cf0,1, 0x068d00,1, 0x068d10,1, 0x068d20,1, 0x068d30,1, 0x068d40,1, 0x068d50,1, 0x068d60,1, 0x068d70,1, 0x068d80,1, 0x068d90,1, 0x068da0,1, 0x068db0,1, 0x068dc0,1, 0x068dd0,1, 0x068de0,1, 0x068df0,1, 0x068e00,1, 0x068e10,1, 0x068e20,1, 0x068e30,1, 0x068e40,1, 0x068e50,1, 0x068e60,1, 0x068e70,1, 0x068e80,1, 0x068e90,1, 0x068ea0,1, 0x068eb0,1, 0x068ec0,1, 0x068ed0,1, 0x068ee0,1, 0x068ef0,1, 0x068f00,1, 0x068f10,1, 0x068f20,1, 0x068f30,1, 0x068f40,1, 0x068f50,1, 0x068f60,1, 0x068f70,1, 0x068f80,1, 0x068f90,1, 0x068fa0,1, 0x068fb0,1, 0x068fc0,1, 0x068fd0,1, 0x068fe0,1, 0x068ff0,1, 0x069000,8, 0x06a000,5, 0x06a020,1, 0x06a030,1, 0x06a040,1, 0x06a050,1, 0x06a060,1, 0x06a070,1, 0x06a080,1, 0x06a090,1, 0x06a0a0,1, 0x06a0b0,1, 0x06a0c0,1, 0x06a0d0,1, 0x06a0e0,1, 0x06a0f0,1, 0x06a100,1, 0x06a110,1, 0x06a120,1, 0x06a130,1, 0x06a140,1, 0x06a150,1, 0x06a160,1, 0x06a170,1, 0x06a180,1, 0x06a190,1, 0x06a1a0,1, 0x06a1b0,1, 0x06a1c0,1, 0x06a1d0,1, 0x06a1e0,1, 0x06a1f0,1, 0x06a200,1, 0x06a210,1, 0x06a220,1, 0x06a230,1, 0x06a240,1, 0x06a250,1, 0x06a260,1, 0x06a270,1, 0x06a280,1, 0x06a290,1, 0x06a2a0,1, 0x06a2b0,1, 0x06a2c0,1, 0x06a2d0,1, 0x06a2e0,1, 0x06a2f0,1, 0x06a300,1, 0x06a310,1, 0x06a320,1, 0x06a330,1, 0x06a340,1, 0x06a350,1, 0x06a360,1, 0x06a370,1, 0x06a380,1, 0x06a390,1, 0x06a3a0,1, 0x06a3b0,1, 0x06a3c0,1, 0x06a3d0,1, 0x06a3e0,1, 0x06a3f0,1, 0x06a400,1, 0x06a410,1, 0x06a420,1, 0x06a430,1, 0x06a440,1, 0x06a450,1, 0x06a460,1, 0x06a470,1, 0x06a480,1, 0x06a490,1, 0x06a4a0,1, 0x06a4b0,1, 0x06a4c0,1, 0x06a4d0,1, 0x06a4e0,1, 0x06a4f0,1, 0x06a500,1, 0x06a510,1, 0x06a520,1, 0x06a530,1, 0x06a540,1, 0x06a550,1, 0x06a560,1, 0x06a570,1, 0x06a580,1, 0x06a590,1, 0x06a5a0,1, 0x06a5b0,1, 0x06a5c0,1, 0x06a5d0,1, 0x06a5e0,1, 0x06a5f0,1, 0x06a600,1, 0x06a610,1, 0x06a620,1, 0x06a630,1, 0x06a640,1, 0x06a650,1, 0x06a660,1, 0x06a670,1, 0x06a680,1, 0x06a690,1, 0x06a6a0,1, 0x06a6b0,1, 0x06a6c0,1, 0x06a6d0,1, 0x06a6e0,1, 0x06a6f0,1, 0x06a700,1, 0x06a710,1, 0x06a720,1, 0x06a730,1, 0x06a740,1, 0x06a750,1, 0x06a760,1, 0x06a770,1, 0x06a780,1, 0x06a790,1, 0x06a7a0,1, 0x06a7b0,1, 0x06a7c0,1, 0x06a7d0,1, 0x06a7e0,1, 0x06a7f0,1, 0x06a800,1, 0x06a810,1, 0x06a820,1, 0x06a830,1, 0x06a840,1, 0x06a850,1, 0x06a860,1, 0x06a870,1, 0x06a880,1, 0x06a890,1, 0x06a8a0,1, 0x06a8b0,1, 0x06a8c0,1, 0x06a8d0,1, 0x06a8e0,1, 0x06a8f0,1, 0x06a900,1, 0x06a910,1, 0x06a920,1, 0x06a930,1, 0x06a940,1, 0x06a950,1, 0x06a960,1, 0x06a970,1, 0x06a980,1, 0x06a990,1, 0x06a9a0,1, 0x06a9b0,1, 0x06a9c0,1, 0x06a9d0,1, 0x06a9e0,1, 0x06a9f0,1, 0x06aa00,1, 0x06aa10,1, 0x06aa20,1, 0x06aa30,1, 0x06aa40,1, 0x06aa50,1, 0x06aa60,1, 0x06aa70,1, 0x06aa80,1, 0x06aa90,1, 0x06aaa0,1, 0x06aab0,1, 0x06aac0,1, 0x06aad0,1, 0x06aae0,1, 0x06aaf0,1, 0x06ab00,1, 0x06ab10,1, 0x06ab20,1, 0x06ab30,1, 0x06ab40,1, 0x06ab50,1, 0x06ab60,1, 0x06ab70,1, 0x06ab80,1, 0x06ab90,1, 0x06aba0,1, 0x06abb0,1, 0x06abc0,1, 0x06abd0,1, 0x06abe0,1, 0x06abf0,1, 0x06ac00,1, 0x06ac10,1, 0x06ac20,1, 0x06ac30,1, 0x06ac40,1, 0x06ac50,1, 0x06ac60,1, 0x06ac70,1, 0x06ac80,1, 0x06ac90,1, 0x06aca0,1, 0x06acb0,1, 0x06acc0,1, 0x06acd0,1, 0x06ace0,1, 0x06acf0,1, 0x06ad00,1, 0x06ad10,1, 0x06ad20,1, 0x06ad30,1, 0x06ad40,1, 0x06ad50,1, 0x06ad60,1, 0x06ad70,1, 0x06ad80,1, 0x06ad90,1, 0x06ada0,1, 0x06adb0,1, 0x06adc0,1, 0x06add0,1, 0x06ade0,1, 0x06adf0,1, 0x06ae00,1, 0x06ae10,1, 0x06ae20,1, 0x06ae30,1, 0x06ae40,1, 0x06ae50,1, 0x06ae60,1, 0x06ae70,1, 0x06ae80,1, 0x06ae90,1, 0x06aea0,1, 0x06aeb0,1, 0x06aec0,1, 0x06aed0,1, 0x06aee0,1, 0x06aef0,1, 0x06af00,1, 0x06af10,1, 0x06af20,1, 0x06af30,1, 0x06af40,1, 0x06af50,1, 0x06af60,1, 0x06af70,1, 0x06af80,1, 0x06af90,1, 0x06afa0,1, 0x06afb0,1, 0x06afc0,1, 0x06afd0,1, 0x06afe0,1, 0x06aff0,1, 0x06b000,16, 0x06b100,8, 0x06b124,7, 0x06b144,7, 0x06b200,3, 0x06b7f8,2, 0x071000,7, 0x072000,7, 0x080000,3616, 0x084540,3374, 0x087a00,6176, 0x08de80,446, 0x0a0000,3, 0x0a0018,2, 0x0a0024,14, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,14, 0x0a0140,3, 0x0a0150,1, 0x0a015c,4, 0x0a0170,1, 0x0a0180,15, 0x0a01c0,1, 0x0a01c8,5, 0x0a01e0,1, 0x0a01f0,7, 0x0a0218,2, 0x0a0224,14, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,14, 0x0a0340,3, 0x0a0350,1, 0x0a035c,4, 0x0a0370,1, 0x0a0380,15, 0x0a03c0,1, 0x0a03c8,5, 0x0a03e0,1, 0x0a03f0,7, 0x0a0418,2, 0x0a0424,14, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,14, 0x0a0540,3, 0x0a0550,1, 0x0a055c,4, 0x0a0570,1, 0x0a0580,15, 0x0a05c0,1, 0x0a05c8,5, 0x0a05e0,1, 0x0a05f0,7, 0x0a0618,2, 0x0a0624,14, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,14, 0x0a0740,3, 0x0a0750,1, 0x0a075c,4, 0x0a0770,1, 0x0a0780,15, 0x0a07c0,1, 0x0a07c8,5, 0x0a07e0,1, 0x0a07f0,7, 0x0a0818,2, 0x0a0824,14, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,14, 0x0a0940,3, 0x0a0950,1, 0x0a095c,4, 0x0a0970,1, 0x0a0980,15, 0x0a09c0,1, 0x0a09c8,5, 0x0a09e0,1, 0x0a09f0,7, 0x0a0a18,2, 0x0a0a24,14, 0x0a0a60,27, 0x0a0ad0,3, 0x0a0ae0,3, 0x0a0af0,3, 0x0a0b00,14, 0x0a0b40,3, 0x0a0b50,1, 0x0a0b5c,4, 0x0a0b70,1, 0x0a0b80,15, 0x0a0bc0,1, 0x0a0bc8,5, 0x0a0be0,1, 0x0a0bf0,7, 0x0a0c18,2, 0x0a0c24,14, 0x0a0c60,27, 0x0a0cd0,3, 0x0a0ce0,3, 0x0a0cf0,3, 0x0a0d00,14, 0x0a0d40,3, 0x0a0d50,1, 0x0a0d5c,4, 0x0a0d70,1, 0x0a0d80,15, 0x0a0dc0,1, 0x0a0dc8,5, 0x0a0de0,1, 0x0a0df0,7, 0x0a0e18,2, 0x0a0e24,14, 0x0a0e60,27, 0x0a0ed0,3, 0x0a0ee0,3, 0x0a0ef0,3, 0x0a0f00,14, 0x0a0f40,3, 0x0a0f50,1, 0x0a0f5c,4, 0x0a0f70,1, 0x0a0f80,15, 0x0a0fc0,1, 0x0a0fc8,5, 0x0a0fe0,1, 0x0a0ff0,7, 0x0a1018,2, 0x0a1024,14, 0x0a1060,27, 0x0a10d0,3, 0x0a10e0,3, 0x0a10f0,3, 0x0a1100,14, 0x0a1140,3, 0x0a1150,1, 0x0a115c,4, 0x0a1170,1, 0x0a1180,15, 0x0a11c0,1, 0x0a11c8,5, 0x0a11e0,1, 0x0a11f0,7, 0x0a1218,2, 0x0a1224,14, 0x0a1260,27, 0x0a12d0,3, 0x0a12e0,3, 0x0a12f0,3, 0x0a1300,14, 0x0a1340,3, 0x0a1350,1, 0x0a135c,4, 0x0a1370,1, 0x0a1380,15, 0x0a13c0,1, 0x0a13c8,5, 0x0a13e0,1, 0x0a13f0,4, 0x0a1844,1, 0x0a1850,3, 0x0a1860,3, 0x0a1870,8, 0x0a1894,5, 0x0a18c0,1, 0x0a18e0,7, 0x0a1900,11, 0x0a1930,3, 0x0a1a00,4, 0x0a1a80,24, 0x0a2000,7, 0x0a2020,165, 0x0a22c0,117, 0x0a2800,16, 0x0a2900,60, 0x0a2a00,76, 0x0a2c00,100, 0x0a2e00,78, 0x0a3000,4, 0x0a3080,20, 0x0a3100,75, 0x0a3230,3, 0x0a3404,1, 0x0a3440,28, 0x0a34b4,10, 0x0a34e0,7, 0x0a3500,7, 0x0a3520,7, 0x0a3540,7, 0x0a3560,7, 0x0a3580,7, 0x0a35a0,7, 0x0a35c0,7, 0x0a3600,9, 0x0a363c,2, 0x0a3650,6, 0x0a3684,10, 0x0a3804,1, 0x0a39f8,131, 0x0a3c20,10, 0x0a3c60,8, 0x0a3c84,5, 0x0a3d00,32, 0x0a3d84,1, 0x0a3d94,6, 0x0a3e40,71, 0x0a4000,128, 0x0a4204,6, 0x0a4a04,3, 0x0a4b00,33, 0x0a4b90,3, 0x0a4c00,52, 0x0a4d00,15, 0x0a4e00,28, 0x0a4e84,1, 0x0a4ea0,37, 0x0a5000,3, 0x0a5400,4, 0x0a5420,8, 0x0a5444,1, 0x0a544c,1, 0x0a5454,1, 0x0a545c,10, 0x0a5800,3, 0x0a5810,3, 0x0a5820,3, 0x0a5830,3, 0x0a5840,3, 0x0a5850,3, 0x0a5860,3, 0x0a5870,3, 0x0a5880,3, 0x0a5890,3, 0x0a58a0,3, 0x0a58b0,3, 0x0a58c0,3, 0x0a58d0,3, 0x0a58e0,3, 0x0a58f0,3, 0x0a5900,3, 0x0a5910,3, 0x0a5920,3, 0x0a5930,3, 0x0a5940,3, 0x0a5950,3, 0x0a5960,3, 0x0a5970,3, 0x0a5980,3, 0x0a5990,3, 0x0a59a0,3, 0x0a59b0,3, 0x0a59c0,3, 0x0a59d0,3, 0x0a59e0,3, 0x0a59f0,3, 0x0a5a00,3, 0x0a5a10,3, 0x0a5a20,3, 0x0a5a30,3, 0x0a5a40,3, 0x0a5a50,3, 0x0a5a60,3, 0x0a5a70,3, 0x0a5a80,3, 0x0a5a90,3, 0x0a5aa0,3, 0x0a5ab0,3, 0x0a5ac0,3, 0x0a5ad0,3, 0x0a5ae0,3, 0x0a5af0,3, 0x0a5b00,3, 0x0a5b10,3, 0x0a5b20,3, 0x0a5b30,3, 0x0a5b40,3, 0x0a5b50,3, 0x0a5b60,3, 0x0a5b70,3, 0x0a5b80,3, 0x0a5b90,3, 0x0a5ba0,3, 0x0a5bb0,3, 0x0a5bc0,3, 0x0a5bd0,3, 0x0a5be0,3, 0x0a5bf0,3, 0x0a5c00,1, 0x0a5c08,17, 0x0a5c84,1, 0x0a5cc0,16, 0x0a5d04,1, 0x0a5d40,16, 0x0a5d84,1, 0x0a5dc0,34, 0x0a6000,11, 0x0a6030,1, 0x0a6080,2, 0x0a60c4,2, 0x0a60d0,1, 0x0a60d8,1, 0x0a60e0,1, 0x0a60f4,3, 0x0a7000,128, 0x0a7208,256, 0x0a7610,145, 0x0a8000,24, 0x0a8078,1, 0x0a8080,1, 0x0b0000,1, 0x0b0020,2, 0x0b002c,2, 0x0b0040,2, 0x0b004c,2, 0x0b0060,5, 0x0b0080,1, 0x0b00a0,2, 0x0b00ac,2, 0x0b00c0,2, 0x0b00cc,2, 0x0b00e0,5, 0x0b0100,9, 0x0b0200,1, 0x0b0220,2, 0x0b022c,2, 0x0b0240,2, 0x0b024c,2, 0x0b0260,5, 0x0b0280,1, 0x0b02a0,2, 0x0b02ac,2, 0x0b02c0,2, 0x0b02cc,2, 0x0b02e0,5, 0x0b0300,9, 0x0b0404,1, 0x0b0410,4, 0x0b0424,1, 0x0b0430,6, 0x0b0500,36, 0x0b0600,1, 0x0b0800,66, 0x0b0920,2, 0x0b0934,1, 0x0b093c,1, 0x0b0980,20, 0x0b0a00,1, 0x0b0c00,132, 0x0b1000,2, 0x0b100c,2, 0x0b1020,6, 0x0b1040,6, 0x0b1080,6, 0x0b10a0,2, 0x0b10ac,2, 0x0b10c0,6, 0x0b1100,20, 0x0b1200,15, 0x0b1240,4, 0x0b1260,17, 0x0b12c0,6, 0x0b12e0,4, 0x0b12f4,11, 0x0b1324,10, 0x0b1400,5, 0x0b1420,3, 0x0b1430,4, 0x0b1480,28, 0x0b1500,2, 0x0c0000,144, 0x0c02a8,8, 0x0c0328,8, 0x0c03a8,8, 0x0c0428,8, 0x0c04a8,8, 0x0c0528,8, 0x0c05a8,8, 0x0c0628,8, 0x0c06a8,8, 0x0c0728,8, 0x0c07a8,8, 0x0c0828,8, 0x0c08a8,8, 0x0c0928,8, 0x0c09a8,8, 0x0c0a28,8, 0x0c0aa8,8, 0x0c0b28,8, 0x0c0ba8,8, 0x0c0c28,8, 0x0c0ca8,8, 0x0c0d28,8, 0x0c0da8,8, 0x0c0e28,8, 0x0c0ea8,8, 0x0c0f28,8, 0x0c0fa8,8, 0x0c1028,8, 0x0c10a8,8, 0x0c1128,8, 0x0c11a8,8, 0x0c1228,8, 0x0c12a8,8, 0x0c1328,8, 0x0c13a8,8, 0x0c1428,8, 0x0c14a8,8, 0x0c1528,8, 0x0c15a8,8, 0x0c1628,8, 0x0c16a8,8, 0x0c1728,8, 0x0c17a8,8, 0x0c1828,8, 0x0c18a8,8, 0x0c1928,8, 0x0c19a8,8, 0x0c1a28,8, 0x0c1aa8,8, 0x0c1b28,8, 0x0c1ba8,8, 0x0c1c28,8, 0x0c1ca8,8, 0x0c1d28,8, 0x0c1da8,8, 0x0c1e28,8, 0x0c1ea8,8, 0x0c1f28,8, 0x0c1fa8,8, 0x0c2028,8, 0x0c20a8,8, 0x0c2128,8, 0x0c21a8,8, 0x0c2228,8, 0x0c22a8,8, 0x0c2328,8, 0x0c23a8,8, 0x0c2428,8, 0x0c24a8,8, 0x0c2528,8, 0x0c25a8,8, 0x0c2628,8, 0x0c26a8,8, 0x0c2728,8, 0x0c27a8,8, 0x0c2828,8, 0x0c28a8,8, 0x0c2928,8, 0x0c29a8,8, 0x0c2a28,8, 0x0c2aa8,8, 0x0c2b28,8, 0x0c2ba8,8, 0x0c2c28,8, 0x0c2ca8,8, 0x0c2d28,8, 0x0c2da8,8, 0x0c2e28,8, 0x0c2ea8,8, 0x0c2f28,8, 0x0c2fa8,8, 0x0c3028,8, 0x0c30a8,8, 0x0c3128,8, 0x0c31a8,8, 0x0c3228,8, 0x0c32a8,8, 0x0c3328,8, 0x0c33a8,8, 0x0c3428,8, 0x0c34a8,8, 0x0c3528,8, 0x0c35a8,8, 0x0c3628,8, 0x0c36a8,8, 0x0c3728,8, 0x0c37a8,8, 0x0c3828,8, 0x0c38a8,8, 0x0c3928,8, 0x0c39a8,8, 0x0c3a28,8, 0x0c3aa8,8, 0x0c3b28,8, 0x0c3ba8,8, 0x0c3c28,8, 0x0c3ca8,8, 0x0c3d28,8, 0x0c3da8,8, 0x0c3e28,8, 0x0c3ea8,8, 0x0c3f28,8, 0x0c3fa8,8, 0x0c4028,8, 0x0c40a8,8, 0x0c4128,8, 0x0c41a8,8, 0x0c4228,8, 0x0c42a8,8, 0x0c4328,8, 0x0c43a8,8, 0x0c4428,8, 0x0c44a8,8, 0x0c4528,8, 0x0c45a8,8, 0x0c4628,8, 0x0c46a8,8, 0x0c4728,8, 0x0c47a8,8, 0x0c4828,8, 0x0c48a8,8, 0x0c4928,8, 0x0c49a8,8, 0x0c4a28,8, 0x0c4aa8,8, 0x0c4b28,8, 0x0c4ba8,8, 0x0c4c28,8, 0x0c4ca8,8, 0x0c4d28,8, 0x0c4da8,8, 0x0c4e28,8, 0x0c4ea8,8, 0x0c4f28,8, 0x0c4fa8,8, 0x0c5028,8, 0x0c50a8,8, 0x0c5128,8, 0x0c51a8,8, 0x0c5228,8, 0x0c52a8,8, 0x0c5328,8, 0x0c53a8,8, 0x0c5428,8, 0x0c54a8,8, 0x0c5528,8, 0x0c55a8,8, 0x0c5628,8, 0x0c56a8,8, 0x0c5728,8, 0x0c57a8,8, 0x0c5828,8, 0x0c58a8,8, 0x0c5928,8, 0x0c59a8,8, 0x0c5a28,8, 0x0c5aa8,8, 0x0c5b28,8, 0x0c5ba8,8, 0x0c5c28,8, 0x0c5ca8,8, 0x0c5d28,8, 0x0c5da8,8, 0x0c5e28,8, 0x0c5ea8,8, 0x0c5f28,8, 0x0c5fa8,8, 0x0c6028,8, 0x0c60a8,8, 0x0c6128,8, 0x0c61a8,8, 0x0c6228,8, 0x0c62a8,8, 0x0c6328,8, 0x0c63a8,8, 0x0c6428,8, 0x0c64a8,8, 0x0c6528,8, 0x0c65a8,8, 0x0c6628,8, 0x0c66a8,8, 0x0c6728,8, 0x0c67a8,8, 0x0c6828,8, 0x0c68a8,8, 0x0c6928,8, 0x0c69a8,8, 0x0c6a28,8, 0x0c6aa8,8, 0x0c6b28,8, 0x0c6ba8,8, 0x0c6c28,8, 0x0c6ca8,8, 0x0c6d28,8, 0x0c6da8,8, 0x0c6e28,8, 0x0c6ea8,8, 0x0c6f28,8, 0x0c6fa8,8, 0x0c7028,8, 0x0c70a8,8, 0x0c7128,8, 0x0c71a8,8, 0x0c7228,8, 0x0c72a8,8, 0x0c7328,8, 0x0c73a8,8, 0x0c7428,8, 0x0c74a8,8, 0x0c7528,8, 0x0c75a8,8, 0x0c7628,8, 0x0c76a8,8, 0x0c7728,8, 0x0c77a8,8, 0x0c7828,8, 0x0c78a8,8, 0x0c7928,8, 0x0c79a8,8, 0x0c7a28,8, 0x0c7aa8,8, 0x0c7b28,8, 0x0c7ba8,8, 0x0c7c28,8, 0x0c7ca8,8, 0x0c7d28,8, 0x0c7da8,8, 0x0c7e28,8, 0x0c7ea8,8, 0x0c7f28,8, 0x0c7fa8,8, 0x0c8028,8, 0x0c80a8,8, 0x0c8128,8, 0x0c81a8,8, 0x0c8228,8, 0x0c82a8,8, 0x0c8328,8, 0x0c83a8,8, 0x0c8400,3, 0x0c8410,3, 0x0c8420,3, 0x0c8800,260, 0x0c9000,260, 0x0c9800,260, 0x0ca000,260, 0x0ca800,260, 0x0cb000,260, 0x0cb800,260, 0x0cc000,260, 0x0cc800,28, 0x0cc880,41, 0x0cc930,4, 0x0f0000,1, 0x0f000c,12, 0x0f0040,2, 0x0f0080,13, 0x0f0404,1, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,7, 0x0f04a0,7, 0x0f0520,4, 0x0f0540,10, 0x0f0580,10, 0x0f05c0,3, 0x0f0600,20, 0x0f0680,2, 0x0f0800,5, 0x0f0a00,29, 0x0f0a80,3, 0x0f1004,1, 0x0f13b0,277, 0x0f1880,18, 0x0f1900,1, 0x0f1a00,2, 0x0f1a10,3, 0x0f1a20,3, 0x0f1a30,3, 0x0f1a40,3, 0x0f1a50,3, 0x0f1a60,3, 0x0f1a70,3, 0x0f1a80,3, 0x0f1a90,3, 0x0f1aa0,3, 0x0f1ab0,3, 0x0f1ac0,3, 0x0f1ad0,3, 0x0f1ae0,3, 0x0f1af0,3, 0x0f1b00,3, 0x0f2000,1010, 0x0f3000,2, 0x0f3010,3, 0x0f3020,3, 0x0f3030,3, 0x0f3040,3, 0x0f3050,3, 0x0f3060,3, 0x0f3070,3, 0x0f3080,3, 0x0f3090,3, 0x0f30a0,3, 0x0f30b0,3, 0x0f30c0,3, 0x0f30d0,3, 0x0f30e0,3, 0x0f30f0,3, 0x0f3100,3, 0x0f3200,70, 0x0f3400,29, 0x0f3480,1, 0x0f3800,8, 0x0f3900,2, 0x0f3910,3, 0x0f3920,3, 0x0f3930,3, 0x0f3940,3, 0x0f3950,3, 0x0f3960,3, 0x0f3970,3, 0x0f3980,3, 0x0f3a00,3, 0x0f4000,15, 0x0f4040,3, 0x0f4080,14, 0x0f40c0,3, 0x0f4100,2, 0x0f4140,12, 0x0f4180,1, 0x0f4200,2, 0x0f4210,3, 0x0f4220,3, 0x0f4230,3, 0x0f4240,3, 0x0f4250,3, 0x0f4260,3, 0x0f4270,3, 0x0f4280,3, 0x0f4300,1, 0x0f4310,2, 0x0f4324,1, 0x0f4334,3, 0x0f4344,3, 0x0f4354,1, 0x0f435c,1, 0x0f4404,1, 0x0f447c,33, 0x0f4504,1, 0x0f450c,1, 0x0f4580,18, 0x0f4600,5, 0x0f4640,9, 0x0f4680,9, 0x0f46c0,27, 0x0f4730,2, 0x0f4740,9, 0x0f4780,3, 0x0f47a0,8, 0x0f4800,6, 0x0f4820,7, 0x0f4840,6, 0x0f4860,7, 0x0f4880,3, 0x0f4890,1, 0x0f4900,2, 0x0f5000,18, 0x0f5400,262, 0x0f5820,9, 0x0f6000,1, 0x0f6008,4, 0x0f6804,1, 0x0f6880,34, 0x0f6910,10, 0x0f693c,3, 0x0f6a04,1, 0x0f6a80,36, 0x0f6b14,1, 0x0f6c00,20, 0x0f6c80,9, 0x0f7004,1, 0x0f7080,34, 0x0f7110,10, 0x0f713c,3, 0x0f7204,1, 0x0f7280,36, 0x0f7314,1, 0x0f7400,20, 0x0f7480,9, 0x0f7804,1, 0x0f7880,34, 0x0f7910,10, 0x0f793c,3, 0x0f7a04,1, 0x0f7a80,36, 0x0f7b14,1, 0x0f7c00,20, 0x0f7c80,9, 0x0f8004,1, 0x0f8080,34, 0x0f8110,10, 0x0f813c,3, 0x0f8204,1, 0x0f8280,36, 0x0f8314,1, 0x0f8400,20, 0x0f8480,9, 0x0f8804,1, 0x0f8880,34, 0x0f8910,10, 0x0f893c,3, 0x0f8a04,1, 0x0f8a80,36, 0x0f8b14,1, 0x0f8c00,20, 0x0f8c80,9, 0x0f9004,1, 0x0f9080,34, 0x0f9110,10, 0x0f913c,3, 0x0f9204,1, 0x0f9280,36, 0x0f9314,1, 0x0f9400,20, 0x0f9480,9, 0x0f9804,1, 0x0f9880,34, 0x0f9910,10, 0x0f993c,3, 0x0f9a04,1, 0x0f9a80,36, 0x0f9b14,1, 0x0f9c00,20, 0x0f9c80,9, 0x0fa004,1, 0x0fa080,34, 0x0fa110,10, 0x0fa13c,3, 0x0fa204,1, 0x0fa280,36, 0x0fa314,1, 0x0fa400,20, 0x0fa480,9, 0x0fa804,1, 0x0fa880,34, 0x0fa910,10, 0x0fa93c,3, 0x0faa04,1, 0x0faa80,36, 0x0fab14,1, 0x0fac00,20, 0x0fac80,9, 0x0fb004,1, 0x0fb080,34, 0x0fb110,10, 0x0fb13c,3, 0x0fb204,1, 0x0fb280,36, 0x0fb314,1, 0x0fb400,20, 0x0fb480,9, 0x0fb800,20, 0x0fb884,1, 0x0fb88c,1, 0x0fb8c0,12, 0x0fb900,3, 0x0fba00,20, 0x0fba84,1, 0x0fba8c,1, 0x0fbac0,12, 0x0fbb00,3, 0x0fbc00,20, 0x0fbc84,1, 0x0fbc8c,1, 0x0fbcc0,12, 0x0fbd00,3, 0x0fbe00,20, 0x0fbe84,1, 0x0fbe8c,1, 0x0fbec0,12, 0x0fbf00,3, 0x0fc000,20, 0x0fc084,1, 0x0fc08c,1, 0x0fc0c0,12, 0x0fc100,3, 0x0fc200,20, 0x0fc284,1, 0x0fc28c,1, 0x0fc2c0,12, 0x0fc300,3, 0x0fc400,20, 0x0fc484,1, 0x0fc48c,1, 0x0fc4c0,12, 0x0fc500,3, 0x0fc600,20, 0x0fc684,1, 0x0fc68c,1, 0x0fc6c0,12, 0x0fc700,3, 0x0fc800,20, 0x0fc884,1, 0x0fc88c,1, 0x0fc8c0,12, 0x0fc900,3, 0x0fca00,20, 0x0fca84,1, 0x0fca8c,1, 0x0fcac0,12, 0x0fcb00,3, 0x0fcc00,20, 0x0fcc84,1, 0x0fcc8c,1, 0x0fccc0,12, 0x0fcd00,3, 0x0fce00,20, 0x0fce84,1, 0x0fce8c,1, 0x0fcec0,12, 0x0fcf00,3, 0x0fd000,20, 0x0fd084,1, 0x0fd08c,1, 0x0fd0c0,12, 0x0fd100,3, 0x0fd400,29, 0x0fd600,116, 0x0fd800,28, 0x0fd880,17, 0x0fdc04,1, 0x0fdc14,19, 0x0fdc80,5, 0x0fdd00,3, 0x0fdd44,1, 0x0fdd50,4, 0x0fdd80,1, 0x0fde00,1, 0x0fe000,2, 0x0fe010,3, 0x0fe020,3, 0x0fe030,3, 0x0fe040,3, 0x0fe050,3, 0x0fe060,3, 0x0fe070,3, 0x0fe080,3, 0x0fe090,3, 0x0fe0a0,3, 0x0fe0b0,3, 0x0fe0c0,3, 0x0fe0d0,3, 0x0fe0e0,3, 0x0fe0f0,3, 0x0fe100,3, 0x0fe204,1, 0x0fe214,3, 0x0fe240,11, 0x0fe280,2, 0x0fe290,3, 0x0fe2a0,3, 0x0fe2b0,3, 0x0fe2c0,9, 0x0fe300,9, 0x0fe340,9, 0x0fe380,7, 0x0fe3a0,16, 0x0ff000,2, 0x0ff010,3, 0x0ff020,3, 0x0ff030,3, 0x0ff040,3, 0x0ff050,3, 0x0ff060,3, 0x0ff070,3, 0x0ff080,3, 0x0ff090,3, 0x0ff0a0,3, 0x0ff0b0,3, 0x0ff0c0,3, 0x0ff0d0,3, 0x0ff0e0,3, 0x0ff0f0,3, 0x0ff100,3, 0x0ff200,10, 0x0ff404,1, 0x0ff418,10, 0x0ff800,409, 0x100000,229376, 0x200000,49, 0x200100,12, 0x200140,4, 0x200184,1, 0x200198,2, 0x2001a4,1, 0x2001b8,7, 0x2001e0,4, 0x200200,20, 0x200280,3, 0x200290,9, 0x2002c0,6, 0x2002e0,1, 0x2002e8,7, 0x200400,49, 0x200500,12, 0x200540,4, 0x200584,1, 0x200598,2, 0x2005a4,1, 0x2005b8,7, 0x2005e0,4, 0x200600,20, 0x200680,3, 0x200690,9, 0x2006c0,6, 0x2006e0,1, 0x2006e8,7, 0x200800,33, 0x200900,22, 0x200a00,5, 0x200a18,9, 0x200a40,5, 0x200a58,5, 0x200a70,3, 0x200a80,4, 0x200b00,36, 0x200c00,4, 0x200c20,5, 0x200c40,8, 0x200c80,7, 0x200ca0,9, 0x200d00,2, 0x201000,49, 0x201100,12, 0x201140,4, 0x201184,1, 0x201198,2, 0x2011a4,1, 0x2011b8,7, 0x2011e0,4, 0x201200,20, 0x201280,3, 0x201290,9, 0x2012c0,6, 0x2012e0,1, 0x2012e8,7, 0x201400,49, 0x201500,12, 0x201540,4, 0x201584,1, 0x201598,2, 0x2015a4,1, 0x2015b8,7, 0x2015e0,4, 0x201600,20, 0x201680,3, 0x201690,9, 0x2016c0,6, 0x2016e0,1, 0x2016e8,7, 0x201800,33, 0x201900,22, 0x201a00,5, 0x201a18,9, 0x201a40,5, 0x201a58,5, 0x201a70,3, 0x201a80,4, 0x201b00,36, 0x201c00,4, 0x201c20,5, 0x201c40,8, 0x201c80,7, 0x201ca0,9, 0x201d00,2, 0x202000,49, 0x202100,12, 0x202140,4, 0x202184,1, 0x202198,2, 0x2021a4,1, 0x2021b8,7, 0x2021e0,4, 0x202200,20, 0x202280,3, 0x202290,9, 0x2022c0,6, 0x2022e0,1, 0x2022e8,7, 0x202400,49, 0x202500,12, 0x202540,4, 0x202584,1, 0x202598,2, 0x2025a4,1, 0x2025b8,7, 0x2025e0,4, 0x202600,20, 0x202680,3, 0x202690,9, 0x2026c0,6, 0x2026e0,1, 0x2026e8,7, 0x202800,33, 0x202900,22, 0x202a00,5, 0x202a18,9, 0x202a40,5, 0x202a58,5, 0x202a70,3, 0x202a80,4, 0x202b00,36, 0x202c00,4, 0x202c20,5, 0x202c40,8, 0x202c80,7, 0x202ca0,9, 0x202d00,2, 0x203000,49, 0x203100,12, 0x203140,4, 0x203184,1, 0x203198,2, 0x2031a4,1, 0x2031b8,7, 0x2031e0,4, 0x203200,20, 0x203280,3, 0x203290,9, 0x2032c0,6, 0x2032e0,1, 0x2032e8,7, 0x203400,49, 0x203500,12, 0x203540,4, 0x203584,1, 0x203598,2, 0x2035a4,1, 0x2035b8,7, 0x2035e0,4, 0x203600,20, 0x203680,3, 0x203690,9, 0x2036c0,6, 0x2036e0,1, 0x2036e8,7, 0x203800,33, 0x203900,22, 0x203a00,5, 0x203a18,9, 0x203a40,5, 0x203a58,5, 0x203a70,3, 0x203a80,4, 0x203b00,36, 0x203c00,4, 0x203c20,5, 0x203c40,8, 0x203c80,7, 0x203ca0,9, 0x203d00,2, 0x204000,49, 0x204100,12, 0x204140,4, 0x204184,1, 0x204198,2, 0x2041a4,1, 0x2041b8,7, 0x2041e0,4, 0x204200,20, 0x204280,3, 0x204290,9, 0x2042c0,6, 0x2042e0,1, 0x2042e8,7, 0x204400,49, 0x204500,12, 0x204540,4, 0x204584,1, 0x204598,2, 0x2045a4,1, 0x2045b8,7, 0x2045e0,4, 0x204600,20, 0x204680,3, 0x204690,9, 0x2046c0,6, 0x2046e0,1, 0x2046e8,7, 0x204800,33, 0x204900,22, 0x204a00,5, 0x204a18,9, 0x204a40,5, 0x204a58,5, 0x204a70,3, 0x204a80,4, 0x204b00,36, 0x204c00,4, 0x204c20,5, 0x204c40,8, 0x204c80,7, 0x204ca0,9, 0x204d00,2, 0x205000,49, 0x205100,12, 0x205140,4, 0x205184,1, 0x205198,2, 0x2051a4,1, 0x2051b8,7, 0x2051e0,4, 0x205200,20, 0x205280,3, 0x205290,9, 0x2052c0,6, 0x2052e0,1, 0x2052e8,7, 0x205400,49, 0x205500,12, 0x205540,4, 0x205584,1, 0x205598,2, 0x2055a4,1, 0x2055b8,7, 0x2055e0,4, 0x205600,20, 0x205680,3, 0x205690,9, 0x2056c0,6, 0x2056e0,1, 0x2056e8,7, 0x205800,33, 0x205900,22, 0x205a00,5, 0x205a18,9, 0x205a40,5, 0x205a58,5, 0x205a70,3, 0x205a80,4, 0x205b00,36, 0x205c00,4, 0x205c20,5, 0x205c40,8, 0x205c80,7, 0x205ca0,9, 0x205d00,2, 0x206000,49, 0x206100,12, 0x206140,4, 0x206184,1, 0x206198,2, 0x2061a4,1, 0x2061b8,7, 0x2061e0,4, 0x206200,20, 0x206280,3, 0x206290,9, 0x2062c0,6, 0x2062e0,1, 0x2062e8,7, 0x206400,49, 0x206500,12, 0x206540,4, 0x206584,1, 0x206598,2, 0x2065a4,1, 0x2065b8,7, 0x2065e0,4, 0x206600,20, 0x206680,3, 0x206690,9, 0x2066c0,6, 0x2066e0,1, 0x2066e8,7, 0x206800,33, 0x206900,22, 0x206a00,5, 0x206a18,9, 0x206a40,5, 0x206a58,5, 0x206a70,3, 0x206a80,4, 0x206b00,36, 0x206c00,4, 0x206c20,5, 0x206c40,8, 0x206c80,7, 0x206ca0,9, 0x206d00,2, 0x207000,49, 0x207100,12, 0x207140,4, 0x207184,1, 0x207198,2, 0x2071a4,1, 0x2071b8,7, 0x2071e0,4, 0x207200,20, 0x207280,3, 0x207290,9, 0x2072c0,6, 0x2072e0,1, 0x2072e8,7, 0x207400,49, 0x207500,12, 0x207540,4, 0x207584,1, 0x207598,2, 0x2075a4,1, 0x2075b8,7, 0x2075e0,4, 0x207600,20, 0x207680,3, 0x207690,9, 0x2076c0,6, 0x2076e0,1, 0x2076e8,7, 0x207800,33, 0x207900,22, 0x207a00,5, 0x207a18,9, 0x207a40,5, 0x207a58,5, 0x207a70,3, 0x207a80,4, 0x207b00,36, 0x207c00,4, 0x207c20,5, 0x207c40,8, 0x207c80,7, 0x207ca0,9, 0x207d00,2, 0x208000,27, 0x208080,9, 0x2080c0,6, 0x2080e0,4, 0x208100,20, 0x208180,5, 0x208200,6, 0x208220,6, 0x208240,6, 0x208260,6, 0x208280,6, 0x2082a0,6, 0x2082c0,6, 0x2082e0,6, 0x208300,6, 0x208320,6, 0x208340,6, 0x208360,6, 0x208380,6, 0x2083a0,6, 0x2083c0,6, 0x2083e0,6, 0x208400,2, 0x240000,2, 0x240100,1, 0x240200,57, 0x240300,2, 0x24030c,4, 0x240800,27, 0x240870,3, 0x240880,1, 0x240888,25, 0x240904,1, 0x240910,6, 0x240930,10, 0x240960,9, 0x2409a0,17, 0x240a00,5, 0x240a20,3, 0x240a30,15, 0x240c04,1, 0x240c10,12, 0x240d04,1, 0x240d50,44, 0x240e04,1, 0x240e1c,11, 0x241000,34, 0x2410c0,12, 0x242000,48, 0x242100,48, 0x242204,1, 0x24221c,11, 0x242280,3, 0x2422a0,5, 0x2422c0,9, 0x242300,3, 0x242320,6, 0x242340,11, 0x242380,5, 0x2423a0,1, 0x2423b0,30, 0x242800,43, 0x2428b0,10, 0x242900,36, 0x242a00,36, 0x242b00,36, 0x242c00,26, 0x242c80,1, 0x242ca0,8, 0x242d00,20, 0x242d80,20, 0x242e00,20, 0x242e80,20, 0x243000,3, 0x243010,3, 0x243020,3, 0x243030,3, 0x243040,3, 0x243050,3, 0x243060,3, 0x243070,3, 0x243080,4, 0x243100,28, 0x243180,28, 0x243200,28, 0x243400,4, 0x244000,2, 0x244020,9, 0x244080,2, 0x244100,2, 0x244110,1, 0x244118,1, 0x244120,1, 0x244144,8, 0x244180,8, 0x244200,1, 0x244208,7, 0x244280,20, 0x244300,36, 0x244400,28, 0x244480,4, 0x2444a0,1, 0x2444c0,1, 0x2444e0,7, 0x244500,7, 0x244520,1, 0x244540,7, 0x244560,7, 0x244580,1, 0x2445a0,7, 0x2445c0,7, 0x2445e0,1, 0x244600,7, 0x244620,7, 0x244640,3, 0x244650,7, 0x244670,22, 0x2446e0,15, 0x244720,15, 0x244780,2, 0x24478c,3, 0x244800,11, 0x244840,6, 0x24485c,3, 0x244a00,27, 0x244a80,1, 0x244aa0,6, 0x244c00,27, 0x244c80,4, 0x244cc0,25, 0x244d40,6, 0x244d60,2, 0x244d6c,3, 0x244d80,8, 0x244da4,7, 0x244e00,27, 0x244e80,1, 0x244ea0,6, 0x244f00,27, 0x244f80,2, 0x244f90,3, 0x244fa0,1, 0x245000,33, 0x246000,6, 0x246020,2, 0x248000,9, 0x248028,8, 0x248080,3, 0x2480a0,5, 0x248100,9, 0x248128,8, 0x248180,3, 0x2481a0,5, 0x248200,9, 0x248228,8, 0x248280,3, 0x2482a0,5, 0x248300,9, 0x248328,8, 0x248380,6, 0x2483a0,5, 0x248400,9, 0x248428,8, 0x248480,3, 0x2484a0,5, 0x248800,9, 0x248828,8, 0x248880,3, 0x2488a0,5, 0x248900,9, 0x248928,8, 0x248980,3, 0x2489a0,5, 0x248a00,9, 0x248a28,8, 0x248a80,3, 0x248aa0,5, 0x248b00,9, 0x248b28,8, 0x248b80,6, 0x248ba0,5, 0x248c00,9, 0x248c28,8, 0x248c80,3, 0x248ca0,5, 0x249000,9, 0x249028,8, 0x249080,6, 0x2490a0,5, 0x249100,9, 0x249128,8, 0x249180,4, 0x2491c0,13, 0x249200,6, 0x249220,5, 0x24a000,3, 0x24a010,3, 0x24a020,2, 0x24a040,3, 0x24a050,3, 0x24a060,2, 0x24a080,3, 0x24a090,3, 0x24a0a0,2, 0x24a0c0,12, 0x24b000,5, 0x24b020,5, 0x24b040,5, 0x24b060,5, 0x24b080,5, 0x24b0a0,5, 0x24b0c0,5, 0x24b0e0,5, 0x24b100,5, 0x24b120,5, 0x24b140,5, 0x24b160,5, 0x24b180,5, 0x24b1a0,5, 0x24b1c0,5, 0x24b1e0,5, 0x24b200,5, 0x24b220,5, 0x24b240,5, 0x24b260,5, 0x24b280,5, 0x24b2a0,5, 0x24b2c0,5, 0x24b2e0,5, 0x24b300,5, 0x24b320,5, 0x24b340,5, 0x24b360,5, 0x24b380,5, 0x24b3a0,5, 0x24b3c0,5, 0x24b3e0,5, 0x24b400,5, 0x24b420,5, 0x24b440,5, 0x24b460,5, 0x24b480,5, 0x24b4a0,5, 0x24b4c0,5, 0x24b4e0,5, 0x24b500,5, 0x24b520,5, 0x24b540,5, 0x24b560,5, 0x24b580,5, 0x24b5a0,5, 0x24b5c0,5, 0x24b5e0,5, 0x24b600,5, 0x24b620,5, 0x24b640,5, 0x24b660,5, 0x24b680,5, 0x24b6a0,5, 0x24b6c0,5, 0x24b6e0,5, 0x24b700,5, 0x24b720,5, 0x24b740,5, 0x24b760,5, 0x24b780,5, 0x24b7a0,5, 0x24b7c0,5, 0x24b7e0,5, 0x24b800,22, 0x24b860,10, 0x24b890,6, 0x24b8b0,3, 0x24c000,5, 0x24c020,5, 0x24c040,5, 0x24c060,5, 0x24c080,5, 0x24c0a0,5, 0x24c0c0,5, 0x24c0e0,5, 0x24c100,5, 0x24c120,5, 0x24c140,5, 0x24c160,5, 0x24c180,5, 0x24c1a0,5, 0x24c1c0,5, 0x24c1e0,5, 0x24c200,5, 0x24c220,5, 0x24c240,5, 0x24c260,5, 0x24c280,5, 0x24c2a0,5, 0x24c2c0,5, 0x24c2e0,5, 0x24c300,5, 0x24c320,5, 0x24c340,5, 0x24c360,5, 0x24c380,5, 0x24c3a0,5, 0x24c3c0,5, 0x24c3e0,5, 0x24c400,5, 0x24c420,5, 0x24c440,5, 0x24c460,5, 0x24c480,5, 0x24c4a0,5, 0x24c4c0,5, 0x24c4e0,5, 0x24c500,5, 0x24c520,5, 0x24c540,5, 0x24c560,5, 0x24c580,5, 0x24c5a0,5, 0x24c5c0,5, 0x24c5e0,5, 0x24c600,5, 0x24c620,5, 0x24c640,5, 0x24c660,5, 0x24c680,5, 0x24c6a0,5, 0x24c6c0,5, 0x24c6e0,5, 0x24c700,5, 0x24c720,5, 0x24c740,5, 0x24c760,5, 0x24c780,5, 0x24c7a0,5, 0x24c7c0,5, 0x24c7e0,5, 0x24c800,22, 0x24c860,10, 0x24d000,11, 0x24d030,7, 0x24d080,11, 0x24d0b0,7, 0x24d100,5, 0x280000,1, 0x281000,1020, 0x282000,194, 0x283000,1020, 0x284000,1020, 0x285000,1020, 0x286000,1020, 0x287000,194, 0x288000,194, 0x289000,3, 0x289010,13, 0x289080,16, 0x289100,20, 0x289184,1, 0x28918c,4, 0x289200,3, 0x289210,13, 0x289280,16, 0x289300,20, 0x289384,1, 0x28938c,4, 0x289400,3, 0x289410,13, 0x289480,16, 0x289500,20, 0x289584,1, 0x28958c,4, 0x289600,3, 0x289610,13, 0x289680,16, 0x289700,20, 0x289784,1, 0x28978c,4, 0x289800,3, 0x289810,13, 0x289880,16, 0x289900,20, 0x289984,1, 0x28998c,4, 0x289a00,18, 0x289a50,2, 0x289a60,4, 0x28a000,1, 0x28a014,1, 0x28a01c,19, 0x28a080,1, 0x28a094,1, 0x28a09c,19, 0x28a100,1, 0x28a114,1, 0x28a11c,19, 0x28a180,8, 0x28a200,11, 0x28a240,9, 0x28a280,12, 0x28a2c0,4, 0x290000,21, 0x290060,29, 0x2900e0,29, 0x290160,29, 0x2901e0,37, 0x290280,5, 0x2902a0,14, 0x2902dc,1, 0x2902e4,2, 0x290300,20, 0x290380,20, 0x290400,128, 0x290800,5, 0x290820,5, 0x290840,5, 0x290860,5, 0x290880,5, 0x2908a0,5, 0x2908c0,5, 0x2908e0,5, 0x290900,5, 0x290920,5, 0x290940,5, 0x290960,5, 0x290980,5, 0x2909a0,5, 0x2909c0,5, 0x2909e0,5, 0x290a00,33, 0x290c00,8, 0x290c24,1, 0x290c2c,3, 0x290c40,6, 0x290c60,3, 0x290c70,3, 0x290c80,3, 0x290c90,3, 0x290ca0,3, 0x290cb0,3, 0x290cc0,3, 0x290cd0,3, 0x290ce0,3, 0x290cf0,3, 0x290d00,3, 0x290d10,3, 0x290d20,3, 0x290d30,3, 0x290d40,3, 0x290d50,3, 0x290d60,19, 0x290db0,3, 0x290dc0,3, 0x290dd0,3, 0x291000,28, 0x291080,25, 0x291100,2, 0x291180,8, 0x2911a4,8, 0x291200,8, 0x291224,8, 0x291280,8, 0x2912a4,8, 0x291300,8, 0x291324,8, 0x291380,4, 0x291394,19, 0x291400,5, 0x291420,5, 0x291440,5, 0x291460,5, 0x291480,5, 0x2914a0,5, 0x2914c0,5, 0x2914e0,5, 0x291500,5, 0x291520,5, 0x291540,5, 0x291560,5, 0x291580,5, 0x2915a0,5, 0x2915c0,5, 0x2915e0,5, 0x291600,33, 0x291800,44, 0x292000,20, 0x292080,16, 0x292100,28, 0x292180,28, 0x292200,16, 0x292280,20, 0x292300,1, 0x292400,128, 0x292604,9, 0x292800,72, 0x292a00,18, 0x292a80,18, 0x292b00,18, 0x292b80,18, 0x292c00,46, 0x292cc0,2, 0x292cd0,9, 0x292d00,22, 0x292d5c,7, 0x292e00,12, 0x292e44,1, 0x292e54,8, 0x292e80,7, 0x292ea0,2, 0x292eac,2, 0x292ec0,16, 0x292f40,1, 0x293000,37, 0x293098,16, 0x293100,11, 0x293400,30, 0x293480,3, 0x293490,19, 0x293500,30, 0x293580,3, 0x293590,19, 0x293600,30, 0x293680,3, 0x293690,19, 0x293700,30, 0x293780,3, 0x293790,19, 0x293804,1, 0x293810,4, 0x293840,28, 0x293900,11, 0x293940,11, 0x293980,11, 0x2939c0,11, 0x293a00,8, 0x293a40,12, 0x293a80,2, 0x293c00,18, 0x293c80,6, 0x293ca0,8, 0x294000,7, 0x294020,31, 0x2940a0,2, 0x2940c0,7, 0x2940e0,7, 0x294100,6, 0x294120,5, 0x294140,1, 0x294180,13, 0x2941c0,5, 0x2941e0,1, 0x294200,14, 0x294240,5, 0x294400,3, 0x294410,3, 0x294420,3, 0x294430,3, 0x294440,3, 0x294450,3, 0x294460,3, 0x294470,3, 0x294480,3, 0x294490,3, 0x2944a0,3, 0x2944b0,3, 0x2944c0,3, 0x2944d0,3, 0x2944e0,3, 0x2944f0,3, 0x294500,3, 0x294510,3, 0x294520,3, 0x294530,3, 0x294540,3, 0x294550,3, 0x294560,3, 0x294570,3, 0x294580,3, 0x294590,3, 0x2945a0,3, 0x2945b0,3, 0x2945c0,3, 0x2945d0,3, 0x2945e0,3, 0x2945f0,3, 0x294600,2, 0x29460c,12, 0x294640,20, 0x294800,20, 0x294884,3, 0x295000,27, 0x295080,27, 0x295100,27, 0x295180,27, 0x295200,15, 0x295240,10, 0x2c0000,3, 0x2c0200,2, 0x2c0304,1, 0x2c0344,53, 0x2c0600,3, 0x2c0620,15, 0x2c0680,3, 0x2c0690,3, 0x2c06a0,3, 0x2c06b0,3, 0x2c06c0,3, 0x2c06d0,3, 0x2c0700,2, 0x2c0720,9, 0x2c0760,9, 0x2c07a0,8, 0x2c0800,1, 0x2c0808,13, 0x2c0900,35, 0x2c0990,11, 0x2c09c0,2, 0x2c09e4,1, 0x2c09ec,11, 0x2c0a24,7, 0x2c0c00,8, 0x2c0d00,47, 0x2c0e00,10, 0x2c0f00,47, 0x2c1000,20, 0x2c1080,6, 0x2c10a0,2, 0x2c10ac,2, 0x2c10c0,1, 0x2c10d0,19, 0x2c1120,7, 0x2c1140,7, 0x2c1160,6, 0x2c1180,6, 0x2c11a0,9, 0x2c11c8,5, 0x2c1200,15, 0x2c1280,20, 0x2c1300,17, 0x2e0000,8, 0x2e0040,12, 0x2e0100,516, 0x2e0984,1, 0x2e09b8,29, 0x2e0a30,1, 0x2e0a38,7, 0x2e0b04,1, 0x2e0b0c,1, 0x2e0b40,9, 0x2e0b80,1, 0x2e0c00,20, 0x2e0c60,21, 0x2e0cc0,5, 0x2e0ce0,5, 0x2e0d00,1, 0x2e0d08,5, 0x2e0d20,1, 0x2e0d40,5, 0x2e0d60,3, 0x2e0d80,10, 0x2e0db0,1, 0x2e0db8,2, 0x2e2000,13, 0x2e2200,121, 0x2e23e8,2, 0x2e2400,4, 0x2e2500,4, 0x2e2580,24, 0x2e2600,5, 0x2e2618,10, 0x2e2680,6, 0x2e26a0,6, 0x2e26c0,1, 0x2e2700,5, 0x2e2720,5, 0x2e2740,1, 0x2e2780,5, 0x2e2800,27, 0x2e2880,4, 0x2e28c0,25, 0x2e2940,6, 0x2e2960,4, 0x2e2974,11, 0x2e29a4,17, 0x2e2a00,4, 0x2e2b00,37, 0x2e2c00,4, 0x2e2d00,37, 0x2e2e00,18, 0x2e2e80,18, 0x2e2f00,2, 0x2e2f40,3, 0x2e2f50,17, 0x2e2f98,3, 0x2e2fa8,7, 0x2e2fc8,4, 0x2e3000,9, 0x2e3028,3, 0x2e3038,7, 0x2e4000,8, 0x2e4040,12, 0x2e4100,516, 0x2e4984,1, 0x2e49b8,29, 0x2e4a30,1, 0x2e4a38,7, 0x2e4b04,1, 0x2e4b0c,1, 0x2e4b40,9, 0x2e4b80,1, 0x2e4c00,20, 0x2e4c60,21, 0x2e4cc0,5, 0x2e4ce0,5, 0x2e4d00,1, 0x2e4d08,5, 0x2e4d20,1, 0x2e4d40,5, 0x2e4d60,3, 0x2e4d80,10, 0x2e4db0,1, 0x2e4db8,2, 0x2e6000,13, 0x2e6200,121, 0x2e63e8,2, 0x2e6400,4, 0x2e6500,4, 0x2e6580,24, 0x2e6600,5, 0x2e6618,10, 0x2e6680,6, 0x2e66a0,6, 0x2e66c0,1, 0x2e6700,5, 0x2e6720,5, 0x2e6740,1, 0x2e6780,5, 0x2e6800,27, 0x2e6880,4, 0x2e68c0,25, 0x2e6940,6, 0x2e6960,4, 0x2e6974,11, 0x2e69a4,17, 0x2e6a00,4, 0x2e6b00,37, 0x2e6c00,4, 0x2e6d00,37, 0x2e6e00,18, 0x2e6e80,18, 0x2e6f00,2, 0x2e6f40,3, 0x2e6f50,17, 0x2e6f98,3, 0x2e6fa8,7, 0x2e6fc8,4, 0x2e7000,9, 0x2e7028,3, 0x2e7038,7, 0x2e8000,8, 0x2e8040,12, 0x2e8100,516, 0x2e8984,1, 0x2e89b8,29, 0x2e8a30,1, 0x2e8a38,7, 0x2e8b04,1, 0x2e8b0c,1, 0x2e8b40,9, 0x2e8b80,1, 0x2e8c00,20, 0x2e8c60,21, 0x2e8cc0,5, 0x2e8ce0,5, 0x2e8d00,1, 0x2e8d08,5, 0x2e8d20,1, 0x2e8d40,5, 0x2e8d60,3, 0x2e8d80,10, 0x2e8db0,1, 0x2e8db8,2, 0x2ea000,13, 0x2ea200,121, 0x2ea3e8,2, 0x2ea400,4, 0x2ea500,4, 0x2ea580,24, 0x2ea600,5, 0x2ea618,10, 0x2ea680,6, 0x2ea6a0,6, 0x2ea6c0,1, 0x2ea700,5, 0x2ea720,5, 0x2ea740,1, 0x2ea780,5, 0x2ea800,27, 0x2ea880,4, 0x2ea8c0,25, 0x2ea940,6, 0x2ea960,4, 0x2ea974,11, 0x2ea9a4,17, 0x2eaa00,4, 0x2eab00,37, 0x2eac00,4, 0x2ead00,37, 0x2eae00,18, 0x2eae80,18, 0x2eaf00,2, 0x2eaf40,3, 0x2eaf50,17, 0x2eaf98,3, 0x2eafa8,7, 0x2eafc8,4, 0x2eb000,9, 0x2eb028,3, 0x2eb038,7, 0x2ec000,8, 0x2ec040,12, 0x2ec100,516, 0x2ec984,1, 0x2ec9b8,29, 0x2eca30,1, 0x2eca38,7, 0x2ecb04,1, 0x2ecb0c,1, 0x2ecb40,9, 0x2ecb80,1, 0x2ecc00,20, 0x2ecc60,21, 0x2eccc0,5, 0x2ecce0,5, 0x2ecd00,1, 0x2ecd08,5, 0x2ecd20,1, 0x2ecd40,5, 0x2ecd60,3, 0x2ecd80,10, 0x2ecdb0,1, 0x2ecdb8,2, 0x2ee000,13, 0x2ee200,121, 0x2ee3e8,2, 0x2ee400,4, 0x2ee500,4, 0x2ee580,24, 0x2ee600,5, 0x2ee618,10, 0x2ee680,6, 0x2ee6a0,6, 0x2ee6c0,1, 0x2ee700,5, 0x2ee720,5, 0x2ee740,1, 0x2ee780,5, 0x2ee800,27, 0x2ee880,4, 0x2ee8c0,25, 0x2ee940,6, 0x2ee960,4, 0x2ee974,11, 0x2ee9a4,17, 0x2eea00,4, 0x2eeb00,37, 0x2eec00,4, 0x2eed00,37, 0x2eee00,18, 0x2eee80,18, 0x2eef00,2, 0x2eef40,3, 0x2eef50,17, 0x2eef98,3, 0x2eefa8,7, 0x2eefc8,4, 0x2ef000,9, 0x2ef028,3, 0x2ef038,7, 0x2f0000,8, 0x2f0040,12, 0x2f0100,516, 0x2f0984,1, 0x2f09b8,29, 0x2f0a30,1, 0x2f0a38,7, 0x2f0b04,1, 0x2f0b0c,1, 0x2f0b40,9, 0x2f0b80,1, 0x2f0c00,20, 0x2f0c60,21, 0x2f0cc0,5, 0x2f0ce0,5, 0x2f0d00,1, 0x2f0d08,5, 0x2f0d20,1, 0x2f0d40,5, 0x2f0d60,3, 0x2f0d80,10, 0x2f0db0,1, 0x2f0db8,2, 0x2f2000,13, 0x2f2200,121, 0x2f23e8,2, 0x2f2400,4, 0x2f2500,4, 0x2f2580,24, 0x2f2600,5, 0x2f2618,10, 0x2f2680,6, 0x2f26a0,6, 0x2f26c0,1, 0x2f2700,5, 0x2f2720,5, 0x2f2740,1, 0x2f2780,5, 0x2f2800,27, 0x2f2880,4, 0x2f28c0,25, 0x2f2940,6, 0x2f2960,4, 0x2f2974,11, 0x2f29a4,17, 0x2f2a00,4, 0x2f2b00,37, 0x2f2c00,4, 0x2f2d00,37, 0x2f2e00,18, 0x2f2e80,18, 0x2f2f00,2, 0x2f2f40,3, 0x2f2f50,17, 0x2f2f98,3, 0x2f2fa8,7, 0x2f2fc8,4, 0x2f3000,9, 0x2f3028,3, 0x2f3038,7, 0x2f4000,8, 0x2f4040,12, 0x2f4100,516, 0x2f4984,1, 0x2f49b8,29, 0x2f4a30,1, 0x2f4a38,7, 0x2f4b04,1, 0x2f4b0c,1, 0x2f4b40,9, 0x2f4b80,1, 0x2f4c00,20, 0x2f4c60,21, 0x2f4cc0,5, 0x2f4ce0,5, 0x2f4d00,1, 0x2f4d08,5, 0x2f4d20,1, 0x2f4d40,5, 0x2f4d60,3, 0x2f4d80,10, 0x2f4db0,1, 0x2f4db8,2, 0x2f6000,13, 0x2f6200,121, 0x2f63e8,2, 0x2f6400,4, 0x2f6500,4, 0x2f6580,24, 0x2f6600,5, 0x2f6618,10, 0x2f6680,6, 0x2f66a0,6, 0x2f66c0,1, 0x2f6700,5, 0x2f6720,5, 0x2f6740,1, 0x2f6780,5, 0x2f6800,27, 0x2f6880,4, 0x2f68c0,25, 0x2f6940,6, 0x2f6960,4, 0x2f6974,11, 0x2f69a4,17, 0x2f6a00,4, 0x2f6b00,37, 0x2f6c00,4, 0x2f6d00,37, 0x2f6e00,18, 0x2f6e80,18, 0x2f6f00,2, 0x2f6f40,3, 0x2f6f50,17, 0x2f6f98,3, 0x2f6fa8,7, 0x2f6fc8,4, 0x2f7000,9, 0x2f7028,3, 0x2f7038,7, 0x2f8000,8, 0x2f8040,12, 0x2f8100,516, 0x2f8984,1, 0x2f89b8,29, 0x2f8a30,1, 0x2f8a38,7, 0x2f8b04,1, 0x2f8b0c,1, 0x2f8b40,9, 0x2f8b80,1, 0x2f8c00,20, 0x2f8c60,21, 0x2f8cc0,5, 0x2f8ce0,5, 0x2f8d00,1, 0x2f8d08,5, 0x2f8d20,1, 0x2f8d40,5, 0x2f8d60,3, 0x2f8d80,10, 0x2f8db0,1, 0x2f8db8,2, 0x2fa000,13, 0x2fa200,121, 0x2fa3e8,2, 0x2fa400,4, 0x2fa500,4, 0x2fa580,24, 0x2fa600,5, 0x2fa618,10, 0x2fa680,6, 0x2fa6a0,6, 0x2fa6c0,1, 0x2fa700,5, 0x2fa720,5, 0x2fa740,1, 0x2fa780,5, 0x2fa800,27, 0x2fa880,4, 0x2fa8c0,25, 0x2fa940,6, 0x2fa960,4, 0x2fa974,11, 0x2fa9a4,17, 0x2faa00,4, 0x2fab00,37, 0x2fac00,4, 0x2fad00,37, 0x2fae00,18, 0x2fae80,18, 0x2faf00,2, 0x2faf40,3, 0x2faf50,17, 0x2faf98,3, 0x2fafa8,7, 0x2fafc8,4, 0x2fb000,9, 0x2fb028,3, 0x2fb038,7, 0x2fc000,8, 0x2fc040,12, 0x2fc100,516, 0x2fc984,1, 0x2fc9b8,29, 0x2fca30,1, 0x2fca38,7, 0x2fcb04,1, 0x2fcb0c,1, 0x2fcb40,9, 0x2fcb80,1, 0x2fcc00,20, 0x2fcc60,21, 0x2fccc0,5, 0x2fcce0,5, 0x2fcd00,1, 0x2fcd08,5, 0x2fcd20,1, 0x2fcd40,5, 0x2fcd60,3, 0x2fcd80,10, 0x2fcdb0,1, 0x2fcdb8,2, 0x2fe000,13, 0x2fe200,121, 0x2fe3e8,2, 0x2fe400,4, 0x2fe500,4, 0x2fe580,24, 0x2fe600,5, 0x2fe618,10, 0x2fe680,6, 0x2fe6a0,6, 0x2fe6c0,1, 0x2fe700,5, 0x2fe720,5, 0x2fe740,1, 0x2fe780,5, 0x2fe800,27, 0x2fe880,4, 0x2fe8c0,25, 0x2fe940,6, 0x2fe960,4, 0x2fe974,11, 0x2fe9a4,17, 0x2fea00,4, 0x2feb00,37, 0x2fec00,4, 0x2fed00,37, 0x2fee00,18, 0x2fee80,18, 0x2fef00,2, 0x2fef40,3, 0x2fef50,17, 0x2fef98,3, 0x2fefa8,7, 0x2fefc8,4, 0x2ff000,9, 0x2ff028,3, 0x2ff038,7, 0x300000,8, 0x300040,12, 0x300100,516, 0x300984,1, 0x3009b8,29, 0x300a30,1, 0x300a38,7, 0x300b04,1, 0x300b0c,1, 0x300b40,9, 0x300b80,1, 0x300c00,20, 0x300c60,21, 0x300cc0,5, 0x300ce0,5, 0x300d00,1, 0x300d08,5, 0x300d20,1, 0x300d40,5, 0x300d60,3, 0x300d80,10, 0x300db0,1, 0x300db8,2, 0x302000,13, 0x302200,121, 0x3023e8,2, 0x302400,4, 0x302500,4, 0x302580,24, 0x302600,5, 0x302618,10, 0x302680,6, 0x3026a0,6, 0x3026c0,1, 0x302700,5, 0x302720,5, 0x302740,1, 0x302780,5, 0x302800,27, 0x302880,4, 0x3028c0,25, 0x302940,6, 0x302960,4, 0x302974,11, 0x3029a4,17, 0x302a00,4, 0x302b00,37, 0x302c00,4, 0x302d00,37, 0x302e00,18, 0x302e80,18, 0x302f00,2, 0x302f40,3, 0x302f50,17, 0x302f98,3, 0x302fa8,7, 0x302fc8,4, 0x303000,9, 0x303028,3, 0x303038,7, 0x304000,8, 0x304040,12, 0x304100,516, 0x304984,1, 0x3049b8,29, 0x304a30,1, 0x304a38,7, 0x304b04,1, 0x304b0c,1, 0x304b40,9, 0x304b80,1, 0x304c00,20, 0x304c60,21, 0x304cc0,5, 0x304ce0,5, 0x304d00,1, 0x304d08,5, 0x304d20,1, 0x304d40,5, 0x304d60,3, 0x304d80,10, 0x304db0,1, 0x304db8,2, 0x306000,13, 0x306200,121, 0x3063e8,2, 0x306400,4, 0x306500,4, 0x306580,24, 0x306600,5, 0x306618,10, 0x306680,6, 0x3066a0,6, 0x3066c0,1, 0x306700,5, 0x306720,5, 0x306740,1, 0x306780,5, 0x306800,27, 0x306880,4, 0x3068c0,25, 0x306940,6, 0x306960,4, 0x306974,11, 0x3069a4,17, 0x306a00,4, 0x306b00,37, 0x306c00,4, 0x306d00,37, 0x306e00,18, 0x306e80,18, 0x306f00,2, 0x306f40,3, 0x306f50,17, 0x306f98,3, 0x306fa8,7, 0x306fc8,4, 0x307000,9, 0x307028,3, 0x307038,7, 0x308000,8, 0x308040,12, 0x308100,516, 0x308984,1, 0x3089b8,29, 0x308a30,1, 0x308a38,7, 0x308b04,1, 0x308b0c,1, 0x308b40,9, 0x308b80,1, 0x308c00,20, 0x308c60,21, 0x308cc0,5, 0x308ce0,5, 0x308d00,1, 0x308d08,5, 0x308d20,1, 0x308d40,5, 0x308d60,3, 0x308d80,10, 0x308db0,1, 0x308db8,2, 0x30a000,13, 0x30a200,121, 0x30a3e8,2, 0x30a400,4, 0x30a500,4, 0x30a580,24, 0x30a600,5, 0x30a618,10, 0x30a680,6, 0x30a6a0,6, 0x30a6c0,1, 0x30a700,5, 0x30a720,5, 0x30a740,1, 0x30a780,5, 0x30a800,27, 0x30a880,4, 0x30a8c0,25, 0x30a940,6, 0x30a960,4, 0x30a974,11, 0x30a9a4,17, 0x30aa00,4, 0x30ab00,37, 0x30ac00,4, 0x30ad00,37, 0x30ae00,18, 0x30ae80,18, 0x30af00,2, 0x30af40,3, 0x30af50,17, 0x30af98,3, 0x30afa8,7, 0x30afc8,4, 0x30b000,9, 0x30b028,3, 0x30b038,7, 0x30c000,8, 0x30c040,12, 0x30c100,516, 0x30c984,1, 0x30c9b8,29, 0x30ca30,1, 0x30ca38,7, 0x30cb04,1, 0x30cb0c,1, 0x30cb40,9, 0x30cb80,1, 0x30cc00,20, 0x30cc60,21, 0x30ccc0,5, 0x30cce0,5, 0x30cd00,1, 0x30cd08,5, 0x30cd20,1, 0x30cd40,5, 0x30cd60,3, 0x30cd80,10, 0x30cdb0,1, 0x30cdb8,2, 0x30e000,13, 0x30e200,121, 0x30e3e8,2, 0x30e400,4, 0x30e500,4, 0x30e580,24, 0x30e600,5, 0x30e618,10, 0x30e680,6, 0x30e6a0,6, 0x30e6c0,1, 0x30e700,5, 0x30e720,5, 0x30e740,1, 0x30e780,5, 0x30e800,27, 0x30e880,4, 0x30e8c0,25, 0x30e940,6, 0x30e960,4, 0x30e974,11, 0x30e9a4,17, 0x30ea00,4, 0x30eb00,37, 0x30ec00,4, 0x30ed00,37, 0x30ee00,18, 0x30ee80,18, 0x30ef00,2, 0x30ef40,3, 0x30ef50,17, 0x30ef98,3, 0x30efa8,7, 0x30efc8,4, 0x30f000,9, 0x30f028,3, 0x30f038,7, 0x310000,8, 0x310040,12, 0x310100,516, 0x310984,1, 0x3109b8,29, 0x310a30,1, 0x310a38,7, 0x310b04,1, 0x310b0c,1, 0x310b40,9, 0x310b80,1, 0x310c00,20, 0x310c60,21, 0x310cc0,5, 0x310ce0,5, 0x310d00,1, 0x310d08,5, 0x310d20,1, 0x310d40,5, 0x310d60,3, 0x310d80,10, 0x310db0,1, 0x310db8,2, 0x312000,13, 0x312200,121, 0x3123e8,2, 0x312400,4, 0x312500,4, 0x312580,24, 0x312600,5, 0x312618,10, 0x312680,6, 0x3126a0,6, 0x3126c0,1, 0x312700,5, 0x312720,5, 0x312740,1, 0x312780,5, 0x312800,27, 0x312880,4, 0x3128c0,25, 0x312940,6, 0x312960,4, 0x312974,11, 0x3129a4,17, 0x312a00,4, 0x312b00,37, 0x312c00,4, 0x312d00,37, 0x312e00,18, 0x312e80,18, 0x312f00,2, 0x312f40,3, 0x312f50,17, 0x312f98,3, 0x312fa8,7, 0x312fc8,4, 0x313000,9, 0x313028,3, 0x313038,7, 0x314000,8, 0x314040,12, 0x314100,516, 0x314984,1, 0x3149b8,29, 0x314a30,1, 0x314a38,7, 0x314b04,1, 0x314b0c,1, 0x314b40,9, 0x314b80,1, 0x314c00,20, 0x314c60,21, 0x314cc0,5, 0x314ce0,5, 0x314d00,1, 0x314d08,5, 0x314d20,1, 0x314d40,5, 0x314d60,3, 0x314d80,10, 0x314db0,1, 0x314db8,2, 0x316000,13, 0x316200,121, 0x3163e8,2, 0x316400,4, 0x316500,4, 0x316580,24, 0x316600,5, 0x316618,10, 0x316680,6, 0x3166a0,6, 0x3166c0,1, 0x316700,5, 0x316720,5, 0x316740,1, 0x316780,5, 0x316800,27, 0x316880,4, 0x3168c0,25, 0x316940,6, 0x316960,4, 0x316974,11, 0x3169a4,17, 0x316a00,4, 0x316b00,37, 0x316c00,4, 0x316d00,37, 0x316e00,18, 0x316e80,18, 0x316f00,2, 0x316f40,3, 0x316f50,17, 0x316f98,3, 0x316fa8,7, 0x316fc8,4, 0x317000,9, 0x317028,3, 0x317038,7, 0x318000,8, 0x318040,12, 0x318100,516, 0x318984,1, 0x3189b8,29, 0x318a30,1, 0x318a38,7, 0x318b04,1, 0x318b0c,1, 0x318b40,9, 0x318b80,1, 0x318c00,20, 0x318c60,21, 0x318cc0,5, 0x318ce0,5, 0x318d00,1, 0x318d08,5, 0x318d20,1, 0x318d40,5, 0x318d60,3, 0x318d80,10, 0x318db0,1, 0x318db8,2, 0x31a000,13, 0x31a200,121, 0x31a3e8,2, 0x31a400,4, 0x31a500,4, 0x31a580,24, 0x31a600,5, 0x31a618,10, 0x31a680,6, 0x31a6a0,6, 0x31a6c0,1, 0x31a700,5, 0x31a720,5, 0x31a740,1, 0x31a780,5, 0x31a800,27, 0x31a880,4, 0x31a8c0,25, 0x31a940,6, 0x31a960,4, 0x31a974,11, 0x31a9a4,17, 0x31aa00,4, 0x31ab00,37, 0x31ac00,4, 0x31ad00,37, 0x31ae00,18, 0x31ae80,18, 0x31af00,2, 0x31af40,3, 0x31af50,17, 0x31af98,3, 0x31afa8,7, 0x31afc8,4, 0x31b000,9, 0x31b028,3, 0x31b038,7, 0x31c000,8, 0x31c040,12, 0x31c100,516, 0x31c984,1, 0x31c9b8,29, 0x31ca30,1, 0x31ca38,7, 0x31cb04,1, 0x31cb0c,1, 0x31cb40,9, 0x31cb80,1, 0x31cc00,20, 0x31cc60,21, 0x31ccc0,5, 0x31cce0,5, 0x31cd00,1, 0x31cd08,5, 0x31cd20,1, 0x31cd40,5, 0x31cd60,3, 0x31cd80,10, 0x31cdb0,1, 0x31cdb8,2, 0x31e000,13, 0x31e200,121, 0x31e3e8,2, 0x31e400,4, 0x31e500,4, 0x31e580,24, 0x31e600,5, 0x31e618,10, 0x31e680,6, 0x31e6a0,6, 0x31e6c0,1, 0x31e700,5, 0x31e720,5, 0x31e740,1, 0x31e780,5, 0x31e800,27, 0x31e880,4, 0x31e8c0,25, 0x31e940,6, 0x31e960,4, 0x31e974,11, 0x31e9a4,17, 0x31ea00,4, 0x31eb00,37, 0x31ec00,4, 0x31ed00,37, 0x31ee00,18, 0x31ee80,18, 0x31ef00,2, 0x31ef40,3, 0x31ef50,17, 0x31ef98,3, 0x31efa8,7, 0x31efc8,4, 0x31f000,9, 0x31f028,3, 0x31f038,7, 0x320000,8, 0x320040,12, 0x320100,516, 0x320984,1, 0x3209b8,29, 0x320a30,1, 0x320a38,7, 0x320b04,1, 0x320b0c,1, 0x320b40,9, 0x320b80,1, 0x320c00,20, 0x320c60,21, 0x320cc0,5, 0x320ce0,5, 0x320d00,1, 0x320d08,5, 0x320d20,1, 0x320d40,5, 0x320d60,3, 0x320d80,10, 0x320db0,1, 0x320db8,2, 0x322000,13, 0x322200,121, 0x3223e8,2, 0x322400,4, 0x322500,4, 0x322580,24, 0x322600,5, 0x322618,10, 0x322680,6, 0x3226a0,6, 0x3226c0,1, 0x322700,5, 0x322720,5, 0x322740,1, 0x322780,5, 0x322800,27, 0x322880,4, 0x3228c0,25, 0x322940,6, 0x322960,4, 0x322974,11, 0x3229a4,17, 0x322a00,4, 0x322b00,37, 0x322c00,4, 0x322d00,37, 0x322e00,18, 0x322e80,18, 0x322f00,2, 0x322f40,3, 0x322f50,17, 0x322f98,3, 0x322fa8,7, 0x322fc8,4, 0x323000,9, 0x323028,3, 0x323038,7, 0x324000,8, 0x324040,12, 0x324100,516, 0x324984,1, 0x3249b8,29, 0x324a30,1, 0x324a38,7, 0x324b04,1, 0x324b0c,1, 0x324b40,9, 0x324b80,1, 0x324c00,20, 0x324c60,21, 0x324cc0,5, 0x324ce0,5, 0x324d00,1, 0x324d08,5, 0x324d20,1, 0x324d40,5, 0x324d60,3, 0x324d80,10, 0x324db0,1, 0x324db8,2, 0x326000,13, 0x326200,121, 0x3263e8,2, 0x326400,4, 0x326500,4, 0x326580,24, 0x326600,5, 0x326618,10, 0x326680,6, 0x3266a0,6, 0x3266c0,1, 0x326700,5, 0x326720,5, 0x326740,1, 0x326780,5, 0x326800,27, 0x326880,4, 0x3268c0,25, 0x326940,6, 0x326960,4, 0x326974,11, 0x3269a4,17, 0x326a00,4, 0x326b00,37, 0x326c00,4, 0x326d00,37, 0x326e00,18, 0x326e80,18, 0x326f00,2, 0x326f40,3, 0x326f50,17, 0x326f98,3, 0x326fa8,7, 0x326fc8,4, 0x327000,9, 0x327028,3, 0x327038,7, 0x328000,8, 0x328040,12, 0x328100,516, 0x328984,1, 0x3289b8,29, 0x328a30,1, 0x328a38,7, 0x328b04,1, 0x328b0c,1, 0x328b40,9, 0x328b80,1, 0x328c00,20, 0x328c60,21, 0x328cc0,5, 0x328ce0,5, 0x328d00,1, 0x328d08,5, 0x328d20,1, 0x328d40,5, 0x328d60,3, 0x328d80,10, 0x328db0,1, 0x328db8,2, 0x32a000,13, 0x32a200,121, 0x32a3e8,2, 0x32a400,4, 0x32a500,4, 0x32a580,24, 0x32a600,5, 0x32a618,10, 0x32a680,6, 0x32a6a0,6, 0x32a6c0,1, 0x32a700,5, 0x32a720,5, 0x32a740,1, 0x32a780,5, 0x32a800,27, 0x32a880,4, 0x32a8c0,25, 0x32a940,6, 0x32a960,4, 0x32a974,11, 0x32a9a4,17, 0x32aa00,4, 0x32ab00,37, 0x32ac00,4, 0x32ad00,37, 0x32ae00,18, 0x32ae80,18, 0x32af00,2, 0x32af40,3, 0x32af50,17, 0x32af98,3, 0x32afa8,7, 0x32afc8,4, 0x32b000,9, 0x32b028,3, 0x32b038,7, 0x32c000,8, 0x32c040,12, 0x32c100,516, 0x32c984,1, 0x32c9b8,29, 0x32ca30,1, 0x32ca38,7, 0x32cb04,1, 0x32cb0c,1, 0x32cb40,9, 0x32cb80,1, 0x32cc00,20, 0x32cc60,21, 0x32ccc0,5, 0x32cce0,5, 0x32cd00,1, 0x32cd08,5, 0x32cd20,1, 0x32cd40,5, 0x32cd60,3, 0x32cd80,10, 0x32cdb0,1, 0x32cdb8,2, 0x32e000,13, 0x32e200,121, 0x32e3e8,2, 0x32e400,4, 0x32e500,4, 0x32e580,24, 0x32e600,5, 0x32e618,10, 0x32e680,6, 0x32e6a0,6, 0x32e6c0,1, 0x32e700,5, 0x32e720,5, 0x32e740,1, 0x32e780,5, 0x32e800,27, 0x32e880,4, 0x32e8c0,25, 0x32e940,6, 0x32e960,4, 0x32e974,11, 0x32e9a4,17, 0x32ea00,4, 0x32eb00,37, 0x32ec00,4, 0x32ed00,37, 0x32ee00,18, 0x32ee80,18, 0x32ef00,2, 0x32ef40,3, 0x32ef50,17, 0x32ef98,3, 0x32efa8,7, 0x32efc8,4, 0x32f000,9, 0x32f028,3, 0x32f038,7, 0x330000,8, 0x330040,12, 0x330100,516, 0x330984,1, 0x3309b8,29, 0x330a30,1, 0x330a38,7, 0x330b04,1, 0x330b0c,1, 0x330b40,9, 0x330b80,1, 0x330c00,20, 0x330c60,21, 0x330cc0,5, 0x330ce0,5, 0x330d00,1, 0x330d08,5, 0x330d20,1, 0x330d40,5, 0x330d60,3, 0x330d80,10, 0x330db0,1, 0x330db8,2, 0x332000,13, 0x332200,121, 0x3323e8,2, 0x332400,4, 0x332500,4, 0x332580,24, 0x332600,5, 0x332618,10, 0x332680,6, 0x3326a0,6, 0x3326c0,1, 0x332700,5, 0x332720,5, 0x332740,1, 0x332780,5, 0x332800,27, 0x332880,4, 0x3328c0,25, 0x332940,6, 0x332960,4, 0x332974,11, 0x3329a4,17, 0x332a00,4, 0x332b00,37, 0x332c00,4, 0x332d00,37, 0x332e00,18, 0x332e80,18, 0x332f00,2, 0x332f40,3, 0x332f50,17, 0x332f98,3, 0x332fa8,7, 0x332fc8,4, 0x333000,9, 0x333028,3, 0x333038,7, 0x334000,8, 0x334040,12, 0x334100,516, 0x334984,1, 0x3349b8,29, 0x334a30,1, 0x334a38,7, 0x334b04,1, 0x334b0c,1, 0x334b40,9, 0x334b80,1, 0x334c00,20, 0x334c60,21, 0x334cc0,5, 0x334ce0,5, 0x334d00,1, 0x334d08,5, 0x334d20,1, 0x334d40,5, 0x334d60,3, 0x334d80,10, 0x334db0,1, 0x334db8,2, 0x336000,13, 0x336200,121, 0x3363e8,2, 0x336400,4, 0x336500,4, 0x336580,24, 0x336600,5, 0x336618,10, 0x336680,6, 0x3366a0,6, 0x3366c0,1, 0x336700,5, 0x336720,5, 0x336740,1, 0x336780,5, 0x336800,27, 0x336880,4, 0x3368c0,25, 0x336940,6, 0x336960,4, 0x336974,11, 0x3369a4,17, 0x336a00,4, 0x336b00,37, 0x336c00,4, 0x336d00,37, 0x336e00,18, 0x336e80,18, 0x336f00,2, 0x336f40,3, 0x336f50,17, 0x336f98,3, 0x336fa8,7, 0x336fc8,4, 0x337000,9, 0x337028,3, 0x337038,7, 0x338000,8, 0x338040,12, 0x338100,516, 0x338984,1, 0x3389b8,29, 0x338a30,1, 0x338a38,7, 0x338b04,1, 0x338b0c,1, 0x338b40,9, 0x338b80,1, 0x338c00,20, 0x338c60,21, 0x338cc0,5, 0x338ce0,5, 0x338d00,1, 0x338d08,5, 0x338d20,1, 0x338d40,5, 0x338d60,3, 0x338d80,10, 0x338db0,1, 0x338db8,2, 0x33a000,13, 0x33a200,121, 0x33a3e8,2, 0x33a400,4, 0x33a500,4, 0x33a580,24, 0x33a600,5, 0x33a618,10, 0x33a680,6, 0x33a6a0,6, 0x33a6c0,1, 0x33a700,5, 0x33a720,5, 0x33a740,1, 0x33a780,5, 0x33a800,27, 0x33a880,4, 0x33a8c0,25, 0x33a940,6, 0x33a960,4, 0x33a974,11, 0x33a9a4,17, 0x33aa00,4, 0x33ab00,37, 0x33ac00,4, 0x33ad00,37, 0x33ae00,18, 0x33ae80,18, 0x33af00,2, 0x33af40,3, 0x33af50,17, 0x33af98,3, 0x33afa8,7, 0x33afc8,4, 0x33b000,9, 0x33b028,3, 0x33b038,7, 0x33c000,8, 0x33c040,12, 0x33c100,516, 0x33c984,1, 0x33c9b8,29, 0x33ca30,1, 0x33ca38,7, 0x33cb04,1, 0x33cb0c,1, 0x33cb40,9, 0x33cb80,1, 0x33cc00,20, 0x33cc60,21, 0x33ccc0,5, 0x33cce0,5, 0x33cd00,1, 0x33cd08,5, 0x33cd20,1, 0x33cd40,5, 0x33cd60,3, 0x33cd80,10, 0x33cdb0,1, 0x33cdb8,2, 0x33e000,13, 0x33e200,121, 0x33e3e8,2, 0x33e400,4, 0x33e500,4, 0x33e580,24, 0x33e600,5, 0x33e618,10, 0x33e680,6, 0x33e6a0,6, 0x33e6c0,1, 0x33e700,5, 0x33e720,5, 0x33e740,1, 0x33e780,5, 0x33e800,27, 0x33e880,4, 0x33e8c0,25, 0x33e940,6, 0x33e960,4, 0x33e974,11, 0x33e9a4,17, 0x33ea00,4, 0x33eb00,37, 0x33ec00,4, 0x33ed00,37, 0x33ee00,18, 0x33ee80,18, 0x33ef00,2, 0x33ef40,3, 0x33ef50,17, 0x33ef98,3, 0x33efa8,7, 0x33efc8,4, 0x33f000,9, 0x33f028,3, 0x33f038,7, 0x340000,8, 0x340040,12, 0x340100,516, 0x340984,1, 0x3409b8,29, 0x340a30,1, 0x340a38,7, 0x340b04,1, 0x340b0c,1, 0x340b40,9, 0x340b80,1, 0x340c00,20, 0x340c60,21, 0x340cc0,5, 0x340ce0,5, 0x340d00,1, 0x340d08,5, 0x340d20,1, 0x340d40,5, 0x340d60,3, 0x340d80,10, 0x340db0,1, 0x340db8,2, 0x342000,13, 0x342200,121, 0x3423e8,2, 0x342400,4, 0x342500,4, 0x342580,24, 0x342600,5, 0x342618,10, 0x342680,6, 0x3426a0,6, 0x3426c0,1, 0x342700,5, 0x342720,5, 0x342740,1, 0x342780,5, 0x342800,27, 0x342880,4, 0x3428c0,25, 0x342940,6, 0x342960,4, 0x342974,11, 0x3429a4,17, 0x342a00,4, 0x342b00,37, 0x342c00,4, 0x342d00,37, 0x342e00,18, 0x342e80,18, 0x342f00,2, 0x342f40,3, 0x342f50,17, 0x342f98,3, 0x342fa8,7, 0x342fc8,4, 0x343000,9, 0x343028,3, 0x343038,7, 0x344000,8, 0x344040,12, 0x344100,516, 0x344984,1, 0x3449b8,29, 0x344a30,1, 0x344a38,7, 0x344b04,1, 0x344b0c,1, 0x344b40,9, 0x344b80,1, 0x344c00,20, 0x344c60,21, 0x344cc0,5, 0x344ce0,5, 0x344d00,1, 0x344d08,5, 0x344d20,1, 0x344d40,5, 0x344d60,3, 0x344d80,10, 0x344db0,1, 0x344db8,2, 0x346000,13, 0x346200,121, 0x3463e8,2, 0x346400,4, 0x346500,4, 0x346580,24, 0x346600,5, 0x346618,10, 0x346680,6, 0x3466a0,6, 0x3466c0,1, 0x346700,5, 0x346720,5, 0x346740,1, 0x346780,5, 0x346800,27, 0x346880,4, 0x3468c0,25, 0x346940,6, 0x346960,4, 0x346974,11, 0x3469a4,17, 0x346a00,4, 0x346b00,37, 0x346c00,4, 0x346d00,37, 0x346e00,18, 0x346e80,18, 0x346f00,2, 0x346f40,3, 0x346f50,17, 0x346f98,3, 0x346fa8,7, 0x346fc8,4, 0x347000,9, 0x347028,3, 0x347038,7, 0x348000,8, 0x348040,12, 0x348100,516, 0x348984,1, 0x3489b8,29, 0x348a30,1, 0x348a38,7, 0x348b04,1, 0x348b0c,1, 0x348b40,9, 0x348b80,1, 0x348c00,20, 0x348c60,21, 0x348cc0,5, 0x348ce0,5, 0x348d00,1, 0x348d08,5, 0x348d20,1, 0x348d40,5, 0x348d60,3, 0x348d80,10, 0x348db0,1, 0x348db8,2, 0x34a000,13, 0x34a200,121, 0x34a3e8,2, 0x34a400,4, 0x34a500,4, 0x34a580,24, 0x34a600,5, 0x34a618,10, 0x34a680,6, 0x34a6a0,6, 0x34a6c0,1, 0x34a700,5, 0x34a720,5, 0x34a740,1, 0x34a780,5, 0x34a800,27, 0x34a880,4, 0x34a8c0,25, 0x34a940,6, 0x34a960,4, 0x34a974,11, 0x34a9a4,17, 0x34aa00,4, 0x34ab00,37, 0x34ac00,4, 0x34ad00,37, 0x34ae00,18, 0x34ae80,18, 0x34af00,2, 0x34af40,3, 0x34af50,17, 0x34af98,3, 0x34afa8,7, 0x34afc8,4, 0x34b000,9, 0x34b028,3, 0x34b038,7, 0x34c000,8, 0x34c040,12, 0x34c100,516, 0x34c984,1, 0x34c9b8,29, 0x34ca30,1, 0x34ca38,7, 0x34cb04,1, 0x34cb0c,1, 0x34cb40,9, 0x34cb80,1, 0x34cc00,20, 0x34cc60,21, 0x34ccc0,5, 0x34cce0,5, 0x34cd00,1, 0x34cd08,5, 0x34cd20,1, 0x34cd40,5, 0x34cd60,3, 0x34cd80,10, 0x34cdb0,1, 0x34cdb8,2, 0x34e000,13, 0x34e200,121, 0x34e3e8,2, 0x34e400,4, 0x34e500,4, 0x34e580,24, 0x34e600,5, 0x34e618,10, 0x34e680,6, 0x34e6a0,6, 0x34e6c0,1, 0x34e700,5, 0x34e720,5, 0x34e740,1, 0x34e780,5, 0x34e800,27, 0x34e880,4, 0x34e8c0,25, 0x34e940,6, 0x34e960,4, 0x34e974,11, 0x34e9a4,17, 0x34ea00,4, 0x34eb00,37, 0x34ec00,4, 0x34ed00,37, 0x34ee00,18, 0x34ee80,18, 0x34ef00,2, 0x34ef40,3, 0x34ef50,17, 0x34ef98,3, 0x34efa8,7, 0x34efc8,4, 0x34f000,9, 0x34f028,3, 0x34f038,7, 0x350000,8, 0x350040,12, 0x350100,516, 0x350984,1, 0x3509b8,29, 0x350a30,1, 0x350a38,7, 0x350b04,1, 0x350b0c,1, 0x350b40,9, 0x350b80,1, 0x350c00,20, 0x350c60,21, 0x350cc0,5, 0x350ce0,5, 0x350d00,1, 0x350d08,5, 0x350d20,1, 0x350d40,5, 0x350d60,3, 0x350d80,10, 0x350db0,1, 0x350db8,2, 0x352000,13, 0x352200,121, 0x3523e8,2, 0x352400,4, 0x352500,4, 0x352580,24, 0x352600,5, 0x352618,10, 0x352680,6, 0x3526a0,6, 0x3526c0,1, 0x352700,5, 0x352720,5, 0x352740,1, 0x352780,5, 0x352800,27, 0x352880,4, 0x3528c0,25, 0x352940,6, 0x352960,4, 0x352974,11, 0x3529a4,17, 0x352a00,4, 0x352b00,37, 0x352c00,4, 0x352d00,37, 0x352e00,18, 0x352e80,18, 0x352f00,2, 0x352f40,3, 0x352f50,17, 0x352f98,3, 0x352fa8,7, 0x352fc8,4, 0x353000,9, 0x353028,3, 0x353038,7, 0x354000,8, 0x354040,12, 0x354100,516, 0x354984,1, 0x3549b8,29, 0x354a30,1, 0x354a38,7, 0x354b04,1, 0x354b0c,1, 0x354b40,9, 0x354b80,1, 0x354c00,20, 0x354c60,21, 0x354cc0,5, 0x354ce0,5, 0x354d00,1, 0x354d08,5, 0x354d20,1, 0x354d40,5, 0x354d60,3, 0x354d80,10, 0x354db0,1, 0x354db8,2, 0x356000,13, 0x356200,121, 0x3563e8,2, 0x356400,4, 0x356500,4, 0x356580,24, 0x356600,5, 0x356618,10, 0x356680,6, 0x3566a0,6, 0x3566c0,1, 0x356700,5, 0x356720,5, 0x356740,1, 0x356780,5, 0x356800,27, 0x356880,4, 0x3568c0,25, 0x356940,6, 0x356960,4, 0x356974,11, 0x3569a4,17, 0x356a00,4, 0x356b00,37, 0x356c00,4, 0x356d00,37, 0x356e00,18, 0x356e80,18, 0x356f00,2, 0x356f40,3, 0x356f50,17, 0x356f98,3, 0x356fa8,7, 0x356fc8,4, 0x357000,9, 0x357028,3, 0x357038,7, 0x358000,8, 0x358040,12, 0x358100,516, 0x358984,1, 0x3589b8,29, 0x358a30,1, 0x358a38,7, 0x358b04,1, 0x358b0c,1, 0x358b40,9, 0x358b80,1, 0x358c00,20, 0x358c60,21, 0x358cc0,5, 0x358ce0,5, 0x358d00,1, 0x358d08,5, 0x358d20,1, 0x358d40,5, 0x358d60,3, 0x358d80,10, 0x358db0,1, 0x358db8,2, 0x35a000,13, 0x35a200,121, 0x35a3e8,2, 0x35a400,4, 0x35a500,4, 0x35a580,24, 0x35a600,5, 0x35a618,10, 0x35a680,6, 0x35a6a0,6, 0x35a6c0,1, 0x35a700,5, 0x35a720,5, 0x35a740,1, 0x35a780,5, 0x35a800,27, 0x35a880,4, 0x35a8c0,25, 0x35a940,6, 0x35a960,4, 0x35a974,11, 0x35a9a4,17, 0x35aa00,4, 0x35ab00,37, 0x35ac00,4, 0x35ad00,37, 0x35ae00,18, 0x35ae80,18, 0x35af00,2, 0x35af40,3, 0x35af50,17, 0x35af98,3, 0x35afa8,7, 0x35afc8,4, 0x35b000,9, 0x35b028,3, 0x35b038,7, 0x35c000,8, 0x35c040,12, 0x35c100,516, 0x35c984,1, 0x35c9b8,29, 0x35ca30,1, 0x35ca38,7, 0x35cb04,1, 0x35cb0c,1, 0x35cb40,9, 0x35cb80,1, 0x35cc00,20, 0x35cc60,21, 0x35ccc0,5, 0x35cce0,5, 0x35cd00,1, 0x35cd08,5, 0x35cd20,1, 0x35cd40,5, 0x35cd60,3, 0x35cd80,10, 0x35cdb0,1, 0x35cdb8,2, 0x35e000,13, 0x35e200,121, 0x35e3e8,2, 0x35e400,4, 0x35e500,4, 0x35e580,24, 0x35e600,5, 0x35e618,10, 0x35e680,6, 0x35e6a0,6, 0x35e6c0,1, 0x35e700,5, 0x35e720,5, 0x35e740,1, 0x35e780,5, 0x35e800,27, 0x35e880,4, 0x35e8c0,25, 0x35e940,6, 0x35e960,4, 0x35e974,11, 0x35e9a4,17, 0x35ea00,4, 0x35eb00,37, 0x35ec00,4, 0x35ed00,37, 0x35ee00,18, 0x35ee80,18, 0x35ef00,2, 0x35ef40,3, 0x35ef50,17, 0x35ef98,3, 0x35efa8,7, 0x35efc8,4, 0x35f000,9, 0x35f028,3, 0x35f038,7, 0x360000,8, 0x360040,12, 0x360100,516, 0x360984,1, 0x3609b8,29, 0x360a30,1, 0x360a38,7, 0x360b04,1, 0x360b0c,1, 0x360b40,9, 0x360b80,1, 0x360c00,20, 0x360c60,21, 0x360cc0,5, 0x360ce0,5, 0x360d00,1, 0x360d08,5, 0x360d20,1, 0x360d40,5, 0x360d60,3, 0x360d80,10, 0x360db0,1, 0x360db8,2, 0x362000,13, 0x362200,121, 0x3623e8,2, 0x362400,4, 0x362500,4, 0x362580,24, 0x362600,5, 0x362618,10, 0x362680,6, 0x3626a0,6, 0x3626c0,1, 0x362700,5, 0x362720,5, 0x362740,1, 0x362780,5, 0x362800,27, 0x362880,4, 0x3628c0,25, 0x362940,6, 0x362960,4, 0x362974,11, 0x3629a4,17, 0x362a00,4, 0x362b00,37, 0x362c00,4, 0x362d00,37, 0x362e00,18, 0x362e80,18, 0x362f00,2, 0x362f40,3, 0x362f50,17, 0x362f98,3, 0x362fa8,7, 0x362fc8,4, 0x363000,9, 0x363028,3, 0x363038,7, 0x364000,8, 0x364040,12, 0x364100,516, 0x364984,1, 0x3649b8,29, 0x364a30,1, 0x364a38,7, 0x364b04,1, 0x364b0c,1, 0x364b40,9, 0x364b80,1, 0x364c00,20, 0x364c60,21, 0x364cc0,5, 0x364ce0,5, 0x364d00,1, 0x364d08,5, 0x364d20,1, 0x364d40,5, 0x364d60,3, 0x364d80,10, 0x364db0,1, 0x364db8,2, 0x366000,13, 0x366200,121, 0x3663e8,2, 0x366400,4, 0x366500,4, 0x366580,24, 0x366600,5, 0x366618,10, 0x366680,6, 0x3666a0,6, 0x3666c0,1, 0x366700,5, 0x366720,5, 0x366740,1, 0x366780,5, 0x366800,27, 0x366880,4, 0x3668c0,25, 0x366940,6, 0x366960,4, 0x366974,11, 0x3669a4,17, 0x366a00,4, 0x366b00,37, 0x366c00,4, 0x366d00,37, 0x366e00,18, 0x366e80,18, 0x366f00,2, 0x366f40,3, 0x366f50,17, 0x366f98,3, 0x366fa8,7, 0x366fc8,4, 0x367000,9, 0x367028,3, 0x367038,7, 0x368000,8, 0x368040,12, 0x368100,516, 0x368984,1, 0x3689b8,29, 0x368a30,1, 0x368a38,7, 0x368b04,1, 0x368b0c,1, 0x368b40,9, 0x368b80,1, 0x368c00,20, 0x368c60,21, 0x368cc0,5, 0x368ce0,5, 0x368d00,1, 0x368d08,5, 0x368d20,1, 0x368d40,5, 0x368d60,3, 0x368d80,10, 0x368db0,1, 0x368db8,2, 0x36a000,13, 0x36a200,121, 0x36a3e8,2, 0x36a400,4, 0x36a500,4, 0x36a580,24, 0x36a600,5, 0x36a618,10, 0x36a680,6, 0x36a6a0,6, 0x36a6c0,1, 0x36a700,5, 0x36a720,5, 0x36a740,1, 0x36a780,5, 0x36a800,27, 0x36a880,4, 0x36a8c0,25, 0x36a940,6, 0x36a960,4, 0x36a974,11, 0x36a9a4,17, 0x36aa00,4, 0x36ab00,37, 0x36ac00,4, 0x36ad00,37, 0x36ae00,18, 0x36ae80,18, 0x36af00,2, 0x36af40,3, 0x36af50,17, 0x36af98,3, 0x36afa8,7, 0x36afc8,4, 0x36b000,9, 0x36b028,3, 0x36b038,7, 0x36c000,8, 0x36c040,12, 0x36c100,516, 0x36c984,1, 0x36c9b8,29, 0x36ca30,1, 0x36ca38,7, 0x36cb04,1, 0x36cb0c,1, 0x36cb40,9, 0x36cb80,1, 0x36cc00,20, 0x36cc60,21, 0x36ccc0,5, 0x36cce0,5, 0x36cd00,1, 0x36cd08,5, 0x36cd20,1, 0x36cd40,5, 0x36cd60,3, 0x36cd80,10, 0x36cdb0,1, 0x36cdb8,2, 0x36e000,13, 0x36e200,121, 0x36e3e8,2, 0x36e400,4, 0x36e500,4, 0x36e580,24, 0x36e600,5, 0x36e618,10, 0x36e680,6, 0x36e6a0,6, 0x36e6c0,1, 0x36e700,5, 0x36e720,5, 0x36e740,1, 0x36e780,5, 0x36e800,27, 0x36e880,4, 0x36e8c0,25, 0x36e940,6, 0x36e960,4, 0x36e974,11, 0x36e9a4,17, 0x36ea00,4, 0x36eb00,37, 0x36ec00,4, 0x36ed00,37, 0x36ee00,18, 0x36ee80,18, 0x36ef00,2, 0x36ef40,3, 0x36ef50,17, 0x36ef98,3, 0x36efa8,7, 0x36efc8,4, 0x36f000,9, 0x36f028,3, 0x36f038,7, 0x370000,8, 0x370040,12, 0x370100,516, 0x370984,1, 0x3709b8,29, 0x370a30,1, 0x370a38,7, 0x370b04,1, 0x370b0c,1, 0x370b40,9, 0x370b80,1, 0x370c00,20, 0x370c60,21, 0x370cc0,5, 0x370ce0,5, 0x370d00,1, 0x370d08,5, 0x370d20,1, 0x370d40,5, 0x370d60,3, 0x370d80,10, 0x370db0,1, 0x370db8,2, 0x372000,13, 0x372200,121, 0x3723e8,2, 0x372400,4, 0x372500,4, 0x372580,24, 0x372600,5, 0x372618,10, 0x372680,6, 0x3726a0,6, 0x3726c0,1, 0x372700,5, 0x372720,5, 0x372740,1, 0x372780,5, 0x372800,27, 0x372880,4, 0x3728c0,25, 0x372940,6, 0x372960,4, 0x372974,11, 0x3729a4,17, 0x372a00,4, 0x372b00,37, 0x372c00,4, 0x372d00,37, 0x372e00,18, 0x372e80,18, 0x372f00,2, 0x372f40,3, 0x372f50,17, 0x372f98,3, 0x372fa8,7, 0x372fc8,4, 0x373000,9, 0x373028,3, 0x373038,7, 0x374000,8, 0x374040,12, 0x374100,516, 0x374984,1, 0x3749b8,29, 0x374a30,1, 0x374a38,7, 0x374b04,1, 0x374b0c,1, 0x374b40,9, 0x374b80,1, 0x374c00,20, 0x374c60,21, 0x374cc0,5, 0x374ce0,5, 0x374d00,1, 0x374d08,5, 0x374d20,1, 0x374d40,5, 0x374d60,3, 0x374d80,10, 0x374db0,1, 0x374db8,2, 0x376000,13, 0x376200,121, 0x3763e8,2, 0x376400,4, 0x376500,4, 0x376580,24, 0x376600,5, 0x376618,10, 0x376680,6, 0x3766a0,6, 0x3766c0,1, 0x376700,5, 0x376720,5, 0x376740,1, 0x376780,5, 0x376800,27, 0x376880,4, 0x3768c0,25, 0x376940,6, 0x376960,4, 0x376974,11, 0x3769a4,17, 0x376a00,4, 0x376b00,37, 0x376c00,4, 0x376d00,37, 0x376e00,18, 0x376e80,18, 0x376f00,2, 0x376f40,3, 0x376f50,17, 0x376f98,3, 0x376fa8,7, 0x376fc8,4, 0x377000,9, 0x377028,3, 0x377038,7, 0x378000,8, 0x378040,12, 0x378100,516, 0x378984,1, 0x3789b8,29, 0x378a30,1, 0x378a38,7, 0x378b04,1, 0x378b0c,1, 0x378b40,9, 0x378b80,1, 0x378c00,20, 0x378c60,21, 0x378cc0,5, 0x378ce0,5, 0x378d00,1, 0x378d08,5, 0x378d20,1, 0x378d40,5, 0x378d60,3, 0x378d80,10, 0x378db0,1, 0x378db8,2, 0x37a000,13, 0x37a200,121, 0x37a3e8,2, 0x37a400,4, 0x37a500,4, 0x37a580,24, 0x37a600,5, 0x37a618,10, 0x37a680,6, 0x37a6a0,6, 0x37a6c0,1, 0x37a700,5, 0x37a720,5, 0x37a740,1, 0x37a780,5, 0x37a800,27, 0x37a880,4, 0x37a8c0,25, 0x37a940,6, 0x37a960,4, 0x37a974,11, 0x37a9a4,17, 0x37aa00,4, 0x37ab00,37, 0x37ac00,4, 0x37ad00,37, 0x37ae00,18, 0x37ae80,18, 0x37af00,2, 0x37af40,3, 0x37af50,17, 0x37af98,3, 0x37afa8,7, 0x37afc8,4, 0x37b000,9, 0x37b028,3, 0x37b038,7, 0x37c000,8, 0x37c040,12, 0x37c100,516, 0x37c984,1, 0x37c9b8,29, 0x37ca30,1, 0x37ca38,7, 0x37cb04,1, 0x37cb0c,1, 0x37cb40,9, 0x37cb80,1, 0x37cc00,20, 0x37cc60,21, 0x37ccc0,5, 0x37cce0,5, 0x37cd00,1, 0x37cd08,5, 0x37cd20,1, 0x37cd40,5, 0x37cd60,3, 0x37cd80,10, 0x37cdb0,1, 0x37cdb8,2, 0x37e000,13, 0x37e200,121, 0x37e3e8,2, 0x37e400,4, 0x37e500,4, 0x37e580,24, 0x37e600,5, 0x37e618,10, 0x37e680,6, 0x37e6a0,6, 0x37e6c0,1, 0x37e700,5, 0x37e720,5, 0x37e740,1, 0x37e780,5, 0x37e800,27, 0x37e880,4, 0x37e8c0,25, 0x37e940,6, 0x37e960,4, 0x37e974,11, 0x37e9a4,17, 0x37ea00,4, 0x37eb00,37, 0x37ec00,4, 0x37ed00,37, 0x37ee00,18, 0x37ee80,18, 0x37ef00,2, 0x37ef40,3, 0x37ef50,17, 0x37ef98,3, 0x37efa8,7, 0x37efc8,4, 0x37f000,9, 0x37f028,3, 0x37f038,7, 0x380000,8, 0x380040,12, 0x380100,516, 0x380984,1, 0x3809b8,29, 0x380a30,1, 0x380a38,7, 0x380b04,1, 0x380b0c,1, 0x380b40,9, 0x380b80,1, 0x380c00,20, 0x380c60,21, 0x380cc0,5, 0x380ce0,5, 0x380d00,1, 0x380d08,5, 0x380d20,1, 0x380d40,5, 0x380d60,3, 0x380d80,10, 0x380db0,1, 0x380db8,2, 0x382000,13, 0x382200,121, 0x3823e8,2, 0x382400,4, 0x382500,4, 0x382580,24, 0x382600,5, 0x382618,10, 0x382680,6, 0x3826a0,6, 0x3826c0,1, 0x382700,5, 0x382720,5, 0x382740,1, 0x382780,5, 0x382800,27, 0x382880,4, 0x3828c0,25, 0x382940,6, 0x382960,4, 0x382974,11, 0x3829a4,17, 0x382a00,4, 0x382b00,37, 0x382c00,4, 0x382d00,37, 0x382e00,18, 0x382e80,18, 0x382f00,2, 0x382f40,3, 0x382f50,17, 0x382f98,3, 0x382fa8,7, 0x382fc8,4, 0x383000,9, 0x383028,3, 0x383038,7, 0x384000,8, 0x384040,12, 0x384100,516, 0x384984,1, 0x3849b8,29, 0x384a30,1, 0x384a38,7, 0x384b04,1, 0x384b0c,1, 0x384b40,9, 0x384b80,1, 0x384c00,20, 0x384c60,21, 0x384cc0,5, 0x384ce0,5, 0x384d00,1, 0x384d08,5, 0x384d20,1, 0x384d40,5, 0x384d60,3, 0x384d80,10, 0x384db0,1, 0x384db8,2, 0x386000,13, 0x386200,121, 0x3863e8,2, 0x386400,4, 0x386500,4, 0x386580,24, 0x386600,5, 0x386618,10, 0x386680,6, 0x3866a0,6, 0x3866c0,1, 0x386700,5, 0x386720,5, 0x386740,1, 0x386780,5, 0x386800,27, 0x386880,4, 0x3868c0,25, 0x386940,6, 0x386960,4, 0x386974,11, 0x3869a4,17, 0x386a00,4, 0x386b00,37, 0x386c00,4, 0x386d00,37, 0x386e00,18, 0x386e80,18, 0x386f00,2, 0x386f40,3, 0x386f50,17, 0x386f98,3, 0x386fa8,7, 0x386fc8,4, 0x387000,9, 0x387028,3, 0x387038,7, 0x388000,8, 0x388040,12, 0x388100,516, 0x388984,1, 0x3889b8,29, 0x388a30,1, 0x388a38,7, 0x388b04,1, 0x388b0c,1, 0x388b40,9, 0x388b80,1, 0x388c00,20, 0x388c60,21, 0x388cc0,5, 0x388ce0,5, 0x388d00,1, 0x388d08,5, 0x388d20,1, 0x388d40,5, 0x388d60,3, 0x388d80,10, 0x388db0,1, 0x388db8,2, 0x38a000,13, 0x38a200,121, 0x38a3e8,2, 0x38a400,4, 0x38a500,4, 0x38a580,24, 0x38a600,5, 0x38a618,10, 0x38a680,6, 0x38a6a0,6, 0x38a6c0,1, 0x38a700,5, 0x38a720,5, 0x38a740,1, 0x38a780,5, 0x38a800,27, 0x38a880,4, 0x38a8c0,25, 0x38a940,6, 0x38a960,4, 0x38a974,11, 0x38a9a4,17, 0x38aa00,4, 0x38ab00,37, 0x38ac00,4, 0x38ad00,37, 0x38ae00,18, 0x38ae80,18, 0x38af00,2, 0x38af40,3, 0x38af50,17, 0x38af98,3, 0x38afa8,7, 0x38afc8,4, 0x38b000,9, 0x38b028,3, 0x38b038,7, 0x38c000,8, 0x38c040,12, 0x38c100,516, 0x38c984,1, 0x38c9b8,29, 0x38ca30,1, 0x38ca38,7, 0x38cb04,1, 0x38cb0c,1, 0x38cb40,9, 0x38cb80,1, 0x38cc00,20, 0x38cc60,21, 0x38ccc0,5, 0x38cce0,5, 0x38cd00,1, 0x38cd08,5, 0x38cd20,1, 0x38cd40,5, 0x38cd60,3, 0x38cd80,10, 0x38cdb0,1, 0x38cdb8,2, 0x38e000,13, 0x38e200,121, 0x38e3e8,2, 0x38e400,4, 0x38e500,4, 0x38e580,24, 0x38e600,5, 0x38e618,10, 0x38e680,6, 0x38e6a0,6, 0x38e6c0,1, 0x38e700,5, 0x38e720,5, 0x38e740,1, 0x38e780,5, 0x38e800,27, 0x38e880,4, 0x38e8c0,25, 0x38e940,6, 0x38e960,4, 0x38e974,11, 0x38e9a4,17, 0x38ea00,4, 0x38eb00,37, 0x38ec00,4, 0x38ed00,37, 0x38ee00,18, 0x38ee80,18, 0x38ef00,2, 0x38ef40,3, 0x38ef50,17, 0x38ef98,3, 0x38efa8,7, 0x38efc8,4, 0x38f000,9, 0x38f028,3, 0x38f038,7, 0x390000,8, 0x390040,12, 0x390100,516, 0x390984,1, 0x3909b8,29, 0x390a30,1, 0x390a38,7, 0x390b04,1, 0x390b0c,1, 0x390b40,9, 0x390b80,1, 0x390c00,20, 0x390c60,21, 0x390cc0,5, 0x390ce0,5, 0x390d00,1, 0x390d08,5, 0x390d20,1, 0x390d40,5, 0x390d60,3, 0x390d80,10, 0x390db0,1, 0x390db8,2, 0x392000,13, 0x392200,121, 0x3923e8,2, 0x392400,4, 0x392500,4, 0x392580,24, 0x392600,5, 0x392618,10, 0x392680,6, 0x3926a0,6, 0x3926c0,1, 0x392700,5, 0x392720,5, 0x392740,1, 0x392780,5, 0x392800,27, 0x392880,4, 0x3928c0,25, 0x392940,6, 0x392960,4, 0x392974,11, 0x3929a4,17, 0x392a00,4, 0x392b00,37, 0x392c00,4, 0x392d00,37, 0x392e00,18, 0x392e80,18, 0x392f00,2, 0x392f40,3, 0x392f50,17, 0x392f98,3, 0x392fa8,7, 0x392fc8,4, 0x393000,9, 0x393028,3, 0x393038,7, 0x394000,8, 0x394040,12, 0x394100,516, 0x394984,1, 0x3949b8,29, 0x394a30,1, 0x394a38,7, 0x394b04,1, 0x394b0c,1, 0x394b40,9, 0x394b80,1, 0x394c00,20, 0x394c60,21, 0x394cc0,5, 0x394ce0,5, 0x394d00,1, 0x394d08,5, 0x394d20,1, 0x394d40,5, 0x394d60,3, 0x394d80,10, 0x394db0,1, 0x394db8,2, 0x396000,13, 0x396200,121, 0x3963e8,2, 0x396400,4, 0x396500,4, 0x396580,24, 0x396600,5, 0x396618,10, 0x396680,6, 0x3966a0,6, 0x3966c0,1, 0x396700,5, 0x396720,5, 0x396740,1, 0x396780,5, 0x396800,27, 0x396880,4, 0x3968c0,25, 0x396940,6, 0x396960,4, 0x396974,11, 0x3969a4,17, 0x396a00,4, 0x396b00,37, 0x396c00,4, 0x396d00,37, 0x396e00,18, 0x396e80,18, 0x396f00,2, 0x396f40,3, 0x396f50,17, 0x396f98,3, 0x396fa8,7, 0x396fc8,4, 0x397000,9, 0x397028,3, 0x397038,7, 0x398000,8, 0x398040,12, 0x398100,516, 0x398984,1, 0x3989b8,29, 0x398a30,1, 0x398a38,7, 0x398b04,1, 0x398b0c,1, 0x398b40,9, 0x398b80,1, 0x398c00,20, 0x398c60,21, 0x398cc0,5, 0x398ce0,5, 0x398d00,1, 0x398d08,5, 0x398d20,1, 0x398d40,5, 0x398d60,3, 0x398d80,10, 0x398db0,1, 0x398db8,2, 0x39a000,13, 0x39a200,121, 0x39a3e8,2, 0x39a400,4, 0x39a500,4, 0x39a580,24, 0x39a600,5, 0x39a618,10, 0x39a680,6, 0x39a6a0,6, 0x39a6c0,1, 0x39a700,5, 0x39a720,5, 0x39a740,1, 0x39a780,5, 0x39a800,27, 0x39a880,4, 0x39a8c0,25, 0x39a940,6, 0x39a960,4, 0x39a974,11, 0x39a9a4,17, 0x39aa00,4, 0x39ab00,37, 0x39ac00,4, 0x39ad00,37, 0x39ae00,18, 0x39ae80,18, 0x39af00,2, 0x39af40,3, 0x39af50,17, 0x39af98,3, 0x39afa8,7, 0x39afc8,4, 0x39b000,9, 0x39b028,3, 0x39b038,7, 0x39c000,8, 0x39c040,12, 0x39c100,516, 0x39c984,1, 0x39c9b8,29, 0x39ca30,1, 0x39ca38,7, 0x39cb04,1, 0x39cb0c,1, 0x39cb40,9, 0x39cb80,1, 0x39cc00,20, 0x39cc60,21, 0x39ccc0,5, 0x39cce0,5, 0x39cd00,1, 0x39cd08,5, 0x39cd20,1, 0x39cd40,5, 0x39cd60,3, 0x39cd80,10, 0x39cdb0,1, 0x39cdb8,2, 0x39e000,13, 0x39e200,121, 0x39e3e8,2, 0x39e400,4, 0x39e500,4, 0x39e580,24, 0x39e600,5, 0x39e618,10, 0x39e680,6, 0x39e6a0,6, 0x39e6c0,1, 0x39e700,5, 0x39e720,5, 0x39e740,1, 0x39e780,5, 0x39e800,27, 0x39e880,4, 0x39e8c0,25, 0x39e940,6, 0x39e960,4, 0x39e974,11, 0x39e9a4,17, 0x39ea00,4, 0x39eb00,37, 0x39ec00,4, 0x39ed00,37, 0x39ee00,18, 0x39ee80,18, 0x39ef00,2, 0x39ef40,3, 0x39ef50,17, 0x39ef98,3, 0x39efa8,7, 0x39efc8,4, 0x39f000,9, 0x39f028,3, 0x39f038,7, 0x3a0000,8, 0x3a0040,12, 0x3a0100,516, 0x3a0984,1, 0x3a09b8,29, 0x3a0a30,1, 0x3a0a38,7, 0x3a0b04,1, 0x3a0b0c,1, 0x3a0b40,9, 0x3a0b80,1, 0x3a0c00,20, 0x3a0c60,21, 0x3a0cc0,5, 0x3a0ce0,5, 0x3a0d00,1, 0x3a0d08,5, 0x3a0d20,1, 0x3a0d40,5, 0x3a0d60,3, 0x3a0d80,10, 0x3a0db0,1, 0x3a0db8,2, 0x3a2000,13, 0x3a2200,121, 0x3a23e8,2, 0x3a2400,4, 0x3a2500,4, 0x3a2580,24, 0x3a2600,5, 0x3a2618,10, 0x3a2680,6, 0x3a26a0,6, 0x3a26c0,1, 0x3a2700,5, 0x3a2720,5, 0x3a2740,1, 0x3a2780,5, 0x3a2800,27, 0x3a2880,4, 0x3a28c0,25, 0x3a2940,6, 0x3a2960,4, 0x3a2974,11, 0x3a29a4,17, 0x3a2a00,4, 0x3a2b00,37, 0x3a2c00,4, 0x3a2d00,37, 0x3a2e00,18, 0x3a2e80,18, 0x3a2f00,2, 0x3a2f40,3, 0x3a2f50,17, 0x3a2f98,3, 0x3a2fa8,7, 0x3a2fc8,4, 0x3a3000,9, 0x3a3028,3, 0x3a3038,7, 0x3a4000,8, 0x3a4040,12, 0x3a4100,516, 0x3a4984,1, 0x3a49b8,29, 0x3a4a30,1, 0x3a4a38,7, 0x3a4b04,1, 0x3a4b0c,1, 0x3a4b40,9, 0x3a4b80,1, 0x3a4c00,20, 0x3a4c60,21, 0x3a4cc0,5, 0x3a4ce0,5, 0x3a4d00,1, 0x3a4d08,5, 0x3a4d20,1, 0x3a4d40,5, 0x3a4d60,3, 0x3a4d80,10, 0x3a4db0,1, 0x3a4db8,2, 0x3a6000,13, 0x3a6200,121, 0x3a63e8,2, 0x3a6400,4, 0x3a6500,4, 0x3a6580,24, 0x3a6600,5, 0x3a6618,10, 0x3a6680,6, 0x3a66a0,6, 0x3a66c0,1, 0x3a6700,5, 0x3a6720,5, 0x3a6740,1, 0x3a6780,5, 0x3a6800,27, 0x3a6880,4, 0x3a68c0,25, 0x3a6940,6, 0x3a6960,4, 0x3a6974,11, 0x3a69a4,17, 0x3a6a00,4, 0x3a6b00,37, 0x3a6c00,4, 0x3a6d00,37, 0x3a6e00,18, 0x3a6e80,18, 0x3a6f00,2, 0x3a6f40,3, 0x3a6f50,17, 0x3a6f98,3, 0x3a6fa8,7, 0x3a6fc8,4, 0x3a7000,9, 0x3a7028,3, 0x3a7038,7, 0x3a8000,8, 0x3a8040,12, 0x3a8100,516, 0x3a8984,1, 0x3a89b8,29, 0x3a8a30,1, 0x3a8a38,7, 0x3a8b04,1, 0x3a8b0c,1, 0x3a8b40,9, 0x3a8b80,1, 0x3a8c00,20, 0x3a8c60,21, 0x3a8cc0,5, 0x3a8ce0,5, 0x3a8d00,1, 0x3a8d08,5, 0x3a8d20,1, 0x3a8d40,5, 0x3a8d60,3, 0x3a8d80,10, 0x3a8db0,1, 0x3a8db8,2, 0x3aa000,13, 0x3aa200,121, 0x3aa3e8,2, 0x3aa400,4, 0x3aa500,4, 0x3aa580,24, 0x3aa600,5, 0x3aa618,10, 0x3aa680,6, 0x3aa6a0,6, 0x3aa6c0,1, 0x3aa700,5, 0x3aa720,5, 0x3aa740,1, 0x3aa780,5, 0x3aa800,27, 0x3aa880,4, 0x3aa8c0,25, 0x3aa940,6, 0x3aa960,4, 0x3aa974,11, 0x3aa9a4,17, 0x3aaa00,4, 0x3aab00,37, 0x3aac00,4, 0x3aad00,37, 0x3aae00,18, 0x3aae80,18, 0x3aaf00,2, 0x3aaf40,3, 0x3aaf50,17, 0x3aaf98,3, 0x3aafa8,7, 0x3aafc8,4, 0x3ab000,9, 0x3ab028,3, 0x3ab038,7, 0x3ac000,8, 0x3ac040,12, 0x3ac100,516, 0x3ac984,1, 0x3ac9b8,29, 0x3aca30,1, 0x3aca38,7, 0x3acb04,1, 0x3acb0c,1, 0x3acb40,9, 0x3acb80,1, 0x3acc00,20, 0x3acc60,21, 0x3accc0,5, 0x3acce0,5, 0x3acd00,1, 0x3acd08,5, 0x3acd20,1, 0x3acd40,5, 0x3acd60,3, 0x3acd80,10, 0x3acdb0,1, 0x3acdb8,2, 0x3ae000,13, 0x3ae200,121, 0x3ae3e8,2, 0x3ae400,4, 0x3ae500,4, 0x3ae580,24, 0x3ae600,5, 0x3ae618,10, 0x3ae680,6, 0x3ae6a0,6, 0x3ae6c0,1, 0x3ae700,5, 0x3ae720,5, 0x3ae740,1, 0x3ae780,5, 0x3ae800,27, 0x3ae880,4, 0x3ae8c0,25, 0x3ae940,6, 0x3ae960,4, 0x3ae974,11, 0x3ae9a4,17, 0x3aea00,4, 0x3aeb00,37, 0x3aec00,4, 0x3aed00,37, 0x3aee00,18, 0x3aee80,18, 0x3aef00,2, 0x3aef40,3, 0x3aef50,17, 0x3aef98,3, 0x3aefa8,7, 0x3aefc8,4, 0x3af000,9, 0x3af028,3, 0x3af038,7, 0x3b0000,8, 0x3b0040,12, 0x3b0100,516, 0x3b0984,1, 0x3b09b8,29, 0x3b0a30,1, 0x3b0a38,7, 0x3b0b04,1, 0x3b0b0c,1, 0x3b0b40,9, 0x3b0b80,1, 0x3b0c00,20, 0x3b0c60,21, 0x3b0cc0,5, 0x3b0ce0,5, 0x3b0d00,1, 0x3b0d08,5, 0x3b0d20,1, 0x3b0d40,5, 0x3b0d60,3, 0x3b0d80,10, 0x3b0db0,1, 0x3b0db8,2, 0x3b2000,13, 0x3b2200,121, 0x3b23e8,2, 0x3b2400,4, 0x3b2500,4, 0x3b2580,24, 0x3b2600,5, 0x3b2618,10, 0x3b2680,6, 0x3b26a0,6, 0x3b26c0,1, 0x3b2700,5, 0x3b2720,5, 0x3b2740,1, 0x3b2780,5, 0x3b2800,27, 0x3b2880,4, 0x3b28c0,25, 0x3b2940,6, 0x3b2960,4, 0x3b2974,11, 0x3b29a4,17, 0x3b2a00,4, 0x3b2b00,37, 0x3b2c00,4, 0x3b2d00,37, 0x3b2e00,18, 0x3b2e80,18, 0x3b2f00,2, 0x3b2f40,3, 0x3b2f50,17, 0x3b2f98,3, 0x3b2fa8,7, 0x3b2fc8,4, 0x3b3000,9, 0x3b3028,3, 0x3b3038,7, 0x3b4000,8, 0x3b4040,12, 0x3b4100,516, 0x3b4984,1, 0x3b49b8,29, 0x3b4a30,1, 0x3b4a38,7, 0x3b4b04,1, 0x3b4b0c,1, 0x3b4b40,9, 0x3b4b80,1, 0x3b4c00,20, 0x3b4c60,21, 0x3b4cc0,5, 0x3b4ce0,5, 0x3b4d00,1, 0x3b4d08,5, 0x3b4d20,1, 0x3b4d40,5, 0x3b4d60,3, 0x3b4d80,10, 0x3b4db0,1, 0x3b4db8,2, 0x3b6000,13, 0x3b6200,121, 0x3b63e8,2, 0x3b6400,4, 0x3b6500,4, 0x3b6580,24, 0x3b6600,5, 0x3b6618,10, 0x3b6680,6, 0x3b66a0,6, 0x3b66c0,1, 0x3b6700,5, 0x3b6720,5, 0x3b6740,1, 0x3b6780,5, 0x3b6800,27, 0x3b6880,4, 0x3b68c0,25, 0x3b6940,6, 0x3b6960,4, 0x3b6974,11, 0x3b69a4,17, 0x3b6a00,4, 0x3b6b00,37, 0x3b6c00,4, 0x3b6d00,37, 0x3b6e00,18, 0x3b6e80,18, 0x3b6f00,2, 0x3b6f40,3, 0x3b6f50,17, 0x3b6f98,3, 0x3b6fa8,7, 0x3b6fc8,4, 0x3b7000,9, 0x3b7028,3, 0x3b7038,7, 0x3b8000,8, 0x3b8040,12, 0x3b8100,516, 0x3b8984,1, 0x3b89b8,29, 0x3b8a30,1, 0x3b8a38,7, 0x3b8b04,1, 0x3b8b0c,1, 0x3b8b40,9, 0x3b8b80,1, 0x3b8c00,20, 0x3b8c60,21, 0x3b8cc0,5, 0x3b8ce0,5, 0x3b8d00,1, 0x3b8d08,5, 0x3b8d20,1, 0x3b8d40,5, 0x3b8d60,3, 0x3b8d80,10, 0x3b8db0,1, 0x3b8db8,2, 0x3ba000,13, 0x3ba200,121, 0x3ba3e8,2, 0x3ba400,4, 0x3ba500,4, 0x3ba580,24, 0x3ba600,5, 0x3ba618,10, 0x3ba680,6, 0x3ba6a0,6, 0x3ba6c0,1, 0x3ba700,5, 0x3ba720,5, 0x3ba740,1, 0x3ba780,5, 0x3ba800,27, 0x3ba880,4, 0x3ba8c0,25, 0x3ba940,6, 0x3ba960,4, 0x3ba974,11, 0x3ba9a4,17, 0x3baa00,4, 0x3bab00,37, 0x3bac00,4, 0x3bad00,37, 0x3bae00,18, 0x3bae80,18, 0x3baf00,2, 0x3baf40,3, 0x3baf50,17, 0x3baf98,3, 0x3bafa8,7, 0x3bafc8,4, 0x3bb000,9, 0x3bb028,3, 0x3bb038,7, 0x3bc000,8, 0x3bc040,12, 0x3bc100,516, 0x3bc984,1, 0x3bc9b8,29, 0x3bca30,1, 0x3bca38,7, 0x3bcb04,1, 0x3bcb0c,1, 0x3bcb40,9, 0x3bcb80,1, 0x3bcc00,20, 0x3bcc60,21, 0x3bccc0,5, 0x3bcce0,5, 0x3bcd00,1, 0x3bcd08,5, 0x3bcd20,1, 0x3bcd40,5, 0x3bcd60,3, 0x3bcd80,10, 0x3bcdb0,1, 0x3bcdb8,2, 0x3be000,13, 0x3be200,121, 0x3be3e8,2, 0x3be400,4, 0x3be500,4, 0x3be580,24, 0x3be600,5, 0x3be618,10, 0x3be680,6, 0x3be6a0,6, 0x3be6c0,1, 0x3be700,5, 0x3be720,5, 0x3be740,1, 0x3be780,5, 0x3be800,27, 0x3be880,4, 0x3be8c0,25, 0x3be940,6, 0x3be960,4, 0x3be974,11, 0x3be9a4,17, 0x3bea00,4, 0x3beb00,37, 0x3bec00,4, 0x3bed00,37, 0x3bee00,18, 0x3bee80,18, 0x3bef00,2, 0x3bef40,3, 0x3bef50,17, 0x3bef98,3, 0x3befa8,7, 0x3befc8,4, 0x3bf000,9, 0x3bf028,3, 0x3bf038,7, 0x3c0000,8, 0x3c0040,12, 0x3c0100,516, 0x3c0984,1, 0x3c09b8,29, 0x3c0a30,1, 0x3c0a38,7, 0x3c0b04,1, 0x3c0b0c,1, 0x3c0b40,9, 0x3c0b80,1, 0x3c0c00,20, 0x3c0c60,21, 0x3c0cc0,5, 0x3c0ce0,5, 0x3c0d00,1, 0x3c0d08,5, 0x3c0d20,1, 0x3c0d40,5, 0x3c0d60,3, 0x3c0d80,10, 0x3c0db0,1, 0x3c0db8,2, 0x3c2000,13, 0x3c2200,121, 0x3c23e8,2, 0x3c2400,4, 0x3c2500,4, 0x3c2580,24, 0x3c2600,5, 0x3c2618,10, 0x3c2680,6, 0x3c26a0,6, 0x3c26c0,1, 0x3c2700,5, 0x3c2720,5, 0x3c2740,1, 0x3c2780,5, 0x3c2800,27, 0x3c2880,4, 0x3c28c0,25, 0x3c2940,6, 0x3c2960,4, 0x3c2974,11, 0x3c29a4,17, 0x3c2a00,4, 0x3c2b00,37, 0x3c2c00,4, 0x3c2d00,37, 0x3c2e00,18, 0x3c2e80,18, 0x3c2f00,2, 0x3c2f40,3, 0x3c2f50,17, 0x3c2f98,3, 0x3c2fa8,7, 0x3c2fc8,4, 0x3c3000,9, 0x3c3028,3, 0x3c3038,7, 0x3c4000,8, 0x3c4040,12, 0x3c4100,516, 0x3c4984,1, 0x3c49b8,29, 0x3c4a30,1, 0x3c4a38,7, 0x3c4b04,1, 0x3c4b0c,1, 0x3c4b40,9, 0x3c4b80,1, 0x3c4c00,20, 0x3c4c60,21, 0x3c4cc0,5, 0x3c4ce0,5, 0x3c4d00,1, 0x3c4d08,5, 0x3c4d20,1, 0x3c4d40,5, 0x3c4d60,3, 0x3c4d80,10, 0x3c4db0,1, 0x3c4db8,2, 0x3c6000,13, 0x3c6200,121, 0x3c63e8,2, 0x3c6400,4, 0x3c6500,4, 0x3c6580,24, 0x3c6600,5, 0x3c6618,10, 0x3c6680,6, 0x3c66a0,6, 0x3c66c0,1, 0x3c6700,5, 0x3c6720,5, 0x3c6740,1, 0x3c6780,5, 0x3c6800,27, 0x3c6880,4, 0x3c68c0,25, 0x3c6940,6, 0x3c6960,4, 0x3c6974,11, 0x3c69a4,17, 0x3c6a00,4, 0x3c6b00,37, 0x3c6c00,4, 0x3c6d00,37, 0x3c6e00,18, 0x3c6e80,18, 0x3c6f00,2, 0x3c6f40,3, 0x3c6f50,17, 0x3c6f98,3, 0x3c6fa8,7, 0x3c6fc8,4, 0x3c7000,9, 0x3c7028,3, 0x3c7038,7, 0x3c8000,8, 0x3c8040,12, 0x3c8100,516, 0x3c8984,1, 0x3c89b8,29, 0x3c8a30,1, 0x3c8a38,7, 0x3c8b04,1, 0x3c8b0c,1, 0x3c8b40,9, 0x3c8b80,1, 0x3c8c00,20, 0x3c8c60,21, 0x3c8cc0,5, 0x3c8ce0,5, 0x3c8d00,1, 0x3c8d08,5, 0x3c8d20,1, 0x3c8d40,5, 0x3c8d60,3, 0x3c8d80,10, 0x3c8db0,1, 0x3c8db8,2, 0x3ca000,13, 0x3ca200,121, 0x3ca3e8,2, 0x3ca400,4, 0x3ca500,4, 0x3ca580,24, 0x3ca600,5, 0x3ca618,10, 0x3ca680,6, 0x3ca6a0,6, 0x3ca6c0,1, 0x3ca700,5, 0x3ca720,5, 0x3ca740,1, 0x3ca780,5, 0x3ca800,27, 0x3ca880,4, 0x3ca8c0,25, 0x3ca940,6, 0x3ca960,4, 0x3ca974,11, 0x3ca9a4,17, 0x3caa00,4, 0x3cab00,37, 0x3cac00,4, 0x3cad00,37, 0x3cae00,18, 0x3cae80,18, 0x3caf00,2, 0x3caf40,3, 0x3caf50,17, 0x3caf98,3, 0x3cafa8,7, 0x3cafc8,4, 0x3cb000,9, 0x3cb028,3, 0x3cb038,7, 0x3cc000,8, 0x3cc040,12, 0x3cc100,516, 0x3cc984,1, 0x3cc9b8,29, 0x3cca30,1, 0x3cca38,7, 0x3ccb04,1, 0x3ccb0c,1, 0x3ccb40,9, 0x3ccb80,1, 0x3ccc00,20, 0x3ccc60,21, 0x3cccc0,5, 0x3ccce0,5, 0x3ccd00,1, 0x3ccd08,5, 0x3ccd20,1, 0x3ccd40,5, 0x3ccd60,3, 0x3ccd80,10, 0x3ccdb0,1, 0x3ccdb8,2, 0x3ce000,13, 0x3ce200,121, 0x3ce3e8,2, 0x3ce400,4, 0x3ce500,4, 0x3ce580,24, 0x3ce600,5, 0x3ce618,10, 0x3ce680,6, 0x3ce6a0,6, 0x3ce6c0,1, 0x3ce700,5, 0x3ce720,5, 0x3ce740,1, 0x3ce780,5, 0x3ce800,27, 0x3ce880,4, 0x3ce8c0,25, 0x3ce940,6, 0x3ce960,4, 0x3ce974,11, 0x3ce9a4,17, 0x3cea00,4, 0x3ceb00,37, 0x3cec00,4, 0x3ced00,37, 0x3cee00,18, 0x3cee80,18, 0x3cef00,2, 0x3cef40,3, 0x3cef50,17, 0x3cef98,3, 0x3cefa8,7, 0x3cefc8,4, 0x3cf000,9, 0x3cf028,3, 0x3cf038,7, 0x3d0000,8, 0x3d0040,12, 0x3d0100,516, 0x3d0984,1, 0x3d09b8,29, 0x3d0a30,1, 0x3d0a38,7, 0x3d0b04,1, 0x3d0b0c,1, 0x3d0b40,9, 0x3d0b80,1, 0x3d0c00,20, 0x3d0c60,21, 0x3d0cc0,5, 0x3d0ce0,5, 0x3d0d00,1, 0x3d0d08,5, 0x3d0d20,1, 0x3d0d40,5, 0x3d0d60,3, 0x3d0d80,10, 0x3d0db0,1, 0x3d0db8,2, 0x3d2000,13, 0x3d2200,121, 0x3d23e8,2, 0x3d2400,4, 0x3d2500,4, 0x3d2580,24, 0x3d2600,5, 0x3d2618,10, 0x3d2680,6, 0x3d26a0,6, 0x3d26c0,1, 0x3d2700,5, 0x3d2720,5, 0x3d2740,1, 0x3d2780,5, 0x3d2800,27, 0x3d2880,4, 0x3d28c0,25, 0x3d2940,6, 0x3d2960,4, 0x3d2974,11, 0x3d29a4,17, 0x3d2a00,4, 0x3d2b00,37, 0x3d2c00,4, 0x3d2d00,37, 0x3d2e00,18, 0x3d2e80,18, 0x3d2f00,2, 0x3d2f40,3, 0x3d2f50,17, 0x3d2f98,3, 0x3d2fa8,7, 0x3d2fc8,4, 0x3d3000,9, 0x3d3028,3, 0x3d3038,7, 0x3d4000,8, 0x3d4040,12, 0x3d4100,516, 0x3d4984,1, 0x3d49b8,29, 0x3d4a30,1, 0x3d4a38,7, 0x3d4b04,1, 0x3d4b0c,1, 0x3d4b40,9, 0x3d4b80,1, 0x3d4c00,20, 0x3d4c60,21, 0x3d4cc0,5, 0x3d4ce0,5, 0x3d4d00,1, 0x3d4d08,5, 0x3d4d20,1, 0x3d4d40,5, 0x3d4d60,3, 0x3d4d80,10, 0x3d4db0,1, 0x3d4db8,2, 0x3d6000,13, 0x3d6200,121, 0x3d63e8,2, 0x3d6400,4, 0x3d6500,4, 0x3d6580,24, 0x3d6600,5, 0x3d6618,10, 0x3d6680,6, 0x3d66a0,6, 0x3d66c0,1, 0x3d6700,5, 0x3d6720,5, 0x3d6740,1, 0x3d6780,5, 0x3d6800,27, 0x3d6880,4, 0x3d68c0,25, 0x3d6940,6, 0x3d6960,4, 0x3d6974,11, 0x3d69a4,17, 0x3d6a00,4, 0x3d6b00,37, 0x3d6c00,4, 0x3d6d00,37, 0x3d6e00,18, 0x3d6e80,18, 0x3d6f00,2, 0x3d6f40,3, 0x3d6f50,17, 0x3d6f98,3, 0x3d6fa8,7, 0x3d6fc8,4, 0x3d7000,9, 0x3d7028,3, 0x3d7038,7, 0x3d8000,8, 0x3d8040,12, 0x3d8100,516, 0x3d8984,1, 0x3d89b8,29, 0x3d8a30,1, 0x3d8a38,7, 0x3d8b04,1, 0x3d8b0c,1, 0x3d8b40,9, 0x3d8b80,1, 0x3d8c00,20, 0x3d8c60,21, 0x3d8cc0,5, 0x3d8ce0,5, 0x3d8d00,1, 0x3d8d08,5, 0x3d8d20,1, 0x3d8d40,5, 0x3d8d60,3, 0x3d8d80,10, 0x3d8db0,1, 0x3d8db8,2, 0x3da000,13, 0x3da200,121, 0x3da3e8,2, 0x3da400,4, 0x3da500,4, 0x3da580,24, 0x3da600,5, 0x3da618,10, 0x3da680,6, 0x3da6a0,6, 0x3da6c0,1, 0x3da700,5, 0x3da720,5, 0x3da740,1, 0x3da780,5, 0x3da800,27, 0x3da880,4, 0x3da8c0,25, 0x3da940,6, 0x3da960,4, 0x3da974,11, 0x3da9a4,17, 0x3daa00,4, 0x3dab00,37, 0x3dac00,4, 0x3dad00,37, 0x3dae00,18, 0x3dae80,18, 0x3daf00,2, 0x3daf40,3, 0x3daf50,17, 0x3daf98,3, 0x3dafa8,7, 0x3dafc8,4, 0x3db000,9, 0x3db028,3, 0x3db038,7, 0x3dc000,8, 0x3dc040,12, 0x3dc100,516, 0x3dc984,1, 0x3dc9b8,29, 0x3dca30,1, 0x3dca38,7, 0x3dcb04,1, 0x3dcb0c,1, 0x3dcb40,9, 0x3dcb80,1, 0x3dcc00,20, 0x3dcc60,21, 0x3dccc0,5, 0x3dcce0,5, 0x3dcd00,1, 0x3dcd08,5, 0x3dcd20,1, 0x3dcd40,5, 0x3dcd60,3, 0x3dcd80,10, 0x3dcdb0,1, 0x3dcdb8,2, 0x3de000,13, 0x3de200,121, 0x3de3e8,2, 0x3de400,4, 0x3de500,4, 0x3de580,24, 0x3de600,5, 0x3de618,10, 0x3de680,6, 0x3de6a0,6, 0x3de6c0,1, 0x3de700,5, 0x3de720,5, 0x3de740,1, 0x3de780,5, 0x3de800,27, 0x3de880,4, 0x3de8c0,25, 0x3de940,6, 0x3de960,4, 0x3de974,11, 0x3de9a4,17, 0x3dea00,4, 0x3deb00,37, 0x3dec00,4, 0x3ded00,37, 0x3dee00,18, 0x3dee80,18, 0x3def00,2, 0x3def40,3, 0x3def50,17, 0x3def98,3, 0x3defa8,7, 0x3defc8,4, 0x3df000,9, 0x3df028,3, 0x3df038,7, 0x3e0000,8, 0x3e0040,12, 0x3e0100,516, 0x3e0984,1, 0x3e09b8,29, 0x3e0a30,1, 0x3e0a38,7, 0x3e0b04,1, 0x3e0b0c,1, 0x3e0b40,9, 0x3e0b80,1, 0x3e0c00,20, 0x3e0c60,21, 0x3e0cc0,5, 0x3e0ce0,5, 0x3e0d00,1, 0x3e0d08,5, 0x3e0d20,1, 0x3e0d40,5, 0x3e0d60,3, 0x3e0d80,10, 0x3e0db0,1, 0x3e0db8,2, 0x3e2000,13, 0x3e2200,121, 0x3e23e8,2, 0x3e2400,4, 0x3e2500,4, 0x3e2580,24, 0x3e2600,5, 0x3e2618,10, 0x3e2680,6, 0x3e26a0,6, 0x3e26c0,1, 0x3e2700,5, 0x3e2720,5, 0x3e2740,1, 0x3e2780,5, 0x3e2800,27, 0x3e2880,4, 0x3e28c0,25, 0x3e2940,6, 0x3e2960,4, 0x3e2974,11, 0x3e29a4,17, 0x3e2a00,4, 0x3e2b00,37, 0x3e2c00,4, 0x3e2d00,37, 0x3e2e00,18, 0x3e2e80,18, 0x3e2f00,2, 0x3e2f40,3, 0x3e2f50,17, 0x3e2f98,3, 0x3e2fa8,7, 0x3e2fc8,4, 0x3e3000,9, 0x3e3028,3, 0x3e3038,7, 0x400000,20, 0x400080,3, 0x400090,22, 0x400100,3, 0x400110,22, 0x400180,3, 0x400190,22, 0x400200,3, 0x400210,22, 0x400280,3, 0x400290,22, 0x400300,3, 0x400310,22, 0x400380,3, 0x400390,22, 0x400400,3, 0x400410,22, 0x400804,3, 0x400a00,3, 0x400a40,12, 0x400a80,12, 0x400ac0,5, 0x400ad8,3, 0x400af0,3, 0x400b00,3, 0x400c00,11, 0x400c40,12, 0x400c80,12, 0x400cc0,12, 0x400d00,2, 0x400d10,3, 0x400d20,9, 0x401004,3, 0x401200,3, 0x401240,12, 0x401280,12, 0x4012c0,5, 0x4012d8,3, 0x4012f0,3, 0x401300,3, 0x401400,11, 0x401440,12, 0x401480,12, 0x4014c0,12, 0x401500,2, 0x401510,3, 0x401520,9, 0x401804,3, 0x401a00,3, 0x401a40,12, 0x401a80,12, 0x401ac0,5, 0x401ad8,3, 0x401af0,3, 0x401b00,3, 0x401c00,11, 0x401c40,12, 0x401c80,12, 0x401cc0,12, 0x401d00,2, 0x401d10,3, 0x401d20,9, 0x402004,3, 0x402200,3, 0x402240,12, 0x402280,12, 0x4022c0,5, 0x4022d8,3, 0x4022f0,3, 0x402300,3, 0x402400,11, 0x402440,12, 0x402480,12, 0x4024c0,12, 0x402500,2, 0x402510,3, 0x402520,9, 0x402804,3, 0x402a00,3, 0x402a40,12, 0x402a80,12, 0x402ac0,5, 0x402ad8,3, 0x402af0,3, 0x402b00,3, 0x402c00,11, 0x402c40,12, 0x402c80,12, 0x402cc0,12, 0x402d00,2, 0x402d10,3, 0x402d20,9, 0x403004,3, 0x403200,3, 0x403240,12, 0x403280,12, 0x4032c0,5, 0x4032d8,3, 0x4032f0,3, 0x403300,3, 0x403400,11, 0x403440,12, 0x403480,12, 0x4034c0,12, 0x403500,2, 0x403510,3, 0x403520,9, 0x403804,3, 0x403a00,3, 0x403a40,12, 0x403a80,12, 0x403ac0,5, 0x403ad8,3, 0x403af0,3, 0x403b00,3, 0x403c00,11, 0x403c40,12, 0x403c80,12, 0x403cc0,12, 0x403d00,2, 0x403d10,3, 0x403d20,9, 0x404004,3, 0x404200,3, 0x404240,12, 0x404280,12, 0x4042c0,5, 0x4042d8,3, 0x4042f0,3, 0x404300,3, 0x404400,11, 0x404440,12, 0x404480,12, 0x4044c0,12, 0x404500,2, 0x404510,3, 0x404520,9, 0x404800,27, 0x404880,4, 0x4048c0,25, 0x404940,6, 0x404960,4, 0x404974,3, 0x404a00,8, 0x404a24,46, 0x404c00,27, 0x404c80,4, 0x404cc0,25, 0x404d40,6, 0x404d60,4, 0x404d74,3, 0x404e00,8, 0x404e24,46, 0x405000,27, 0x405080,4, 0x4050c0,25, 0x405140,6, 0x405160,4, 0x405174,3, 0x405200,8, 0x405224,46, 0x405400,27, 0x405480,4, 0x4054c0,25, 0x405540,6, 0x405560,4, 0x405574,3, 0x405600,8, 0x405624,46, 0x405800,27, 0x405880,4, 0x4058c0,25, 0x405940,6, 0x405960,4, 0x405974,3, 0x405a00,8, 0x405a24,46, 0x405c00,27, 0x405c80,4, 0x405cc0,25, 0x405d40,6, 0x405d60,4, 0x405d74,3, 0x405e00,8, 0x405e24,46, 0x406000,27, 0x406080,4, 0x4060c0,25, 0x406140,6, 0x406160,4, 0x406174,3, 0x406200,8, 0x406224,46, 0x406400,27, 0x406480,4, 0x4064c0,25, 0x406540,6, 0x406560,4, 0x406574,3, 0x406600,8, 0x406624,46, 0x406800,3, 0x406810,1, 0x406818,7, 0x408000,4, 0x408200,110, 0x408400,97, 0x408600,36, 0x408700,12, 0x408740,43, 0x4087f0,214, 0x408c00,1, 0x408c08,12, 0x408e00,65, 0x409000,11, 0x409040,6, 0x409100,3, 0x409110,34, 0x409200,29, 0x409284,5, 0x409300,42, 0x409400,3, 0x409410,37, 0x4094c0,6, 0x40a000,4, 0x40a200,110, 0x40a400,97, 0x40a600,36, 0x40a700,12, 0x40a740,43, 0x40a7f0,214, 0x40ac00,1, 0x40ac08,12, 0x40ae00,65, 0x40b000,11, 0x40b040,6, 0x40b100,3, 0x40b110,34, 0x40b200,29, 0x40b284,5, 0x40b300,42, 0x40b400,3, 0x40b410,37, 0x40b4c0,6, 0x40c000,4, 0x40c200,110, 0x40c400,97, 0x40c600,36, 0x40c700,12, 0x40c740,43, 0x40c7f0,214, 0x40cc00,1, 0x40cc08,12, 0x40ce00,65, 0x40d000,11, 0x40d040,6, 0x40d100,3, 0x40d110,34, 0x40d200,29, 0x40d284,5, 0x40d300,42, 0x40d400,3, 0x40d410,37, 0x40d4c0,6, 0x40e000,4, 0x40e200,110, 0x40e400,97, 0x40e600,36, 0x40e700,12, 0x40e740,43, 0x40e7f0,214, 0x40ec00,1, 0x40ec08,12, 0x40ee00,65, 0x40f000,11, 0x40f040,6, 0x40f100,3, 0x40f110,34, 0x40f200,29, 0x40f284,5, 0x40f300,42, 0x40f400,3, 0x40f410,37, 0x40f4c0,6, 0x410000,4, 0x410200,110, 0x410400,97, 0x410600,36, 0x410700,12, 0x410740,43, 0x4107f0,214, 0x410c00,1, 0x410c08,12, 0x410e00,65, 0x411000,11, 0x411040,6, 0x411100,3, 0x411110,34, 0x411200,29, 0x411284,5, 0x411300,42, 0x411400,3, 0x411410,37, 0x4114c0,6, 0x412000,4, 0x412200,110, 0x412400,97, 0x412600,36, 0x412700,12, 0x412740,43, 0x4127f0,214, 0x412c00,1, 0x412c08,12, 0x412e00,65, 0x413000,11, 0x413040,6, 0x413100,3, 0x413110,34, 0x413200,29, 0x413284,5, 0x413300,42, 0x413400,3, 0x413410,37, 0x4134c0,6, 0x414000,4, 0x414200,110, 0x414400,97, 0x414600,36, 0x414700,12, 0x414740,43, 0x4147f0,214, 0x414c00,1, 0x414c08,12, 0x414e00,65, 0x415000,11, 0x415040,6, 0x415100,3, 0x415110,34, 0x415200,29, 0x415284,5, 0x415300,42, 0x415400,3, 0x415410,37, 0x4154c0,6, 0x416000,4, 0x416200,110, 0x416400,97, 0x416600,36, 0x416700,12, 0x416740,43, 0x4167f0,214, 0x416c00,1, 0x416c08,12, 0x416e00,65, 0x417000,11, 0x417040,6, 0x417100,3, 0x417110,34, 0x417200,29, 0x417284,5, 0x417300,42, 0x417400,3, 0x417410,37, 0x4174c0,6, 0x418004,3, 0x418014,3, 0x418024,3, 0x418034,3, 0x418044,3, 0x418054,3, 0x418064,3, 0x418074,3, 0x418084,1, 0x4180a4,7, 0x4180c4,1, 0x4180e4,7, 0x418104,1, 0x418124,7, 0x418144,1, 0x418164,7, 0x418184,1, 0x4181a4,7, 0x4181c4,1, 0x4181e4,7, 0x418204,1, 0x418224,7, 0x418244,1, 0x418264,7, 0x420000,20, 0x420080,3, 0x420090,22, 0x420100,3, 0x420110,22, 0x420180,3, 0x420190,22, 0x420200,3, 0x420210,22, 0x420280,3, 0x420290,22, 0x420300,3, 0x420310,22, 0x420380,3, 0x420390,22, 0x420400,3, 0x420410,22, 0x420804,3, 0x420a00,3, 0x420a40,12, 0x420a80,12, 0x420ac0,5, 0x420ad8,3, 0x420af0,3, 0x420b00,3, 0x420c00,11, 0x420c40,12, 0x420c80,12, 0x420cc0,12, 0x420d00,2, 0x420d10,3, 0x420d20,9, 0x421004,3, 0x421200,3, 0x421240,12, 0x421280,12, 0x4212c0,5, 0x4212d8,3, 0x4212f0,3, 0x421300,3, 0x421400,11, 0x421440,12, 0x421480,12, 0x4214c0,12, 0x421500,2, 0x421510,3, 0x421520,9, 0x421804,3, 0x421a00,3, 0x421a40,12, 0x421a80,12, 0x421ac0,5, 0x421ad8,3, 0x421af0,3, 0x421b00,3, 0x421c00,11, 0x421c40,12, 0x421c80,12, 0x421cc0,12, 0x421d00,2, 0x421d10,3, 0x421d20,9, 0x422004,3, 0x422200,3, 0x422240,12, 0x422280,12, 0x4222c0,5, 0x4222d8,3, 0x4222f0,3, 0x422300,3, 0x422400,11, 0x422440,12, 0x422480,12, 0x4224c0,12, 0x422500,2, 0x422510,3, 0x422520,9, 0x422804,3, 0x422a00,3, 0x422a40,12, 0x422a80,12, 0x422ac0,5, 0x422ad8,3, 0x422af0,3, 0x422b00,3, 0x422c00,11, 0x422c40,12, 0x422c80,12, 0x422cc0,12, 0x422d00,2, 0x422d10,3, 0x422d20,9, 0x423004,3, 0x423200,3, 0x423240,12, 0x423280,12, 0x4232c0,5, 0x4232d8,3, 0x4232f0,3, 0x423300,3, 0x423400,11, 0x423440,12, 0x423480,12, 0x4234c0,12, 0x423500,2, 0x423510,3, 0x423520,9, 0x423804,3, 0x423a00,3, 0x423a40,12, 0x423a80,12, 0x423ac0,5, 0x423ad8,3, 0x423af0,3, 0x423b00,3, 0x423c00,11, 0x423c40,12, 0x423c80,12, 0x423cc0,12, 0x423d00,2, 0x423d10,3, 0x423d20,9, 0x424004,3, 0x424200,3, 0x424240,12, 0x424280,12, 0x4242c0,5, 0x4242d8,3, 0x4242f0,3, 0x424300,3, 0x424400,11, 0x424440,12, 0x424480,12, 0x4244c0,12, 0x424500,2, 0x424510,3, 0x424520,9, 0x424800,27, 0x424880,4, 0x4248c0,25, 0x424940,6, 0x424960,4, 0x424974,3, 0x424a00,8, 0x424a24,46, 0x424c00,27, 0x424c80,4, 0x424cc0,25, 0x424d40,6, 0x424d60,4, 0x424d74,3, 0x424e00,8, 0x424e24,46, 0x425000,27, 0x425080,4, 0x4250c0,25, 0x425140,6, 0x425160,4, 0x425174,3, 0x425200,8, 0x425224,46, 0x425400,27, 0x425480,4, 0x4254c0,25, 0x425540,6, 0x425560,4, 0x425574,3, 0x425600,8, 0x425624,46, 0x425800,27, 0x425880,4, 0x4258c0,25, 0x425940,6, 0x425960,4, 0x425974,3, 0x425a00,8, 0x425a24,46, 0x425c00,27, 0x425c80,4, 0x425cc0,25, 0x425d40,6, 0x425d60,4, 0x425d74,3, 0x425e00,8, 0x425e24,46, 0x426000,27, 0x426080,4, 0x4260c0,25, 0x426140,6, 0x426160,4, 0x426174,3, 0x426200,8, 0x426224,46, 0x426400,27, 0x426480,4, 0x4264c0,25, 0x426540,6, 0x426560,4, 0x426574,3, 0x426600,8, 0x426624,46, 0x426800,3, 0x426810,1, 0x426818,7, 0x428000,4, 0x428200,110, 0x428400,97, 0x428600,36, 0x428700,12, 0x428740,43, 0x4287f0,214, 0x428c00,1, 0x428c08,12, 0x428e00,65, 0x429000,11, 0x429040,6, 0x429100,3, 0x429110,34, 0x429200,29, 0x429284,5, 0x429300,42, 0x429400,3, 0x429410,37, 0x4294c0,6, 0x42a000,4, 0x42a200,110, 0x42a400,97, 0x42a600,36, 0x42a700,12, 0x42a740,43, 0x42a7f0,214, 0x42ac00,1, 0x42ac08,12, 0x42ae00,65, 0x42b000,11, 0x42b040,6, 0x42b100,3, 0x42b110,34, 0x42b200,29, 0x42b284,5, 0x42b300,42, 0x42b400,3, 0x42b410,37, 0x42b4c0,6, 0x42c000,4, 0x42c200,110, 0x42c400,97, 0x42c600,36, 0x42c700,12, 0x42c740,43, 0x42c7f0,214, 0x42cc00,1, 0x42cc08,12, 0x42ce00,65, 0x42d000,11, 0x42d040,6, 0x42d100,3, 0x42d110,34, 0x42d200,29, 0x42d284,5, 0x42d300,42, 0x42d400,3, 0x42d410,37, 0x42d4c0,6, 0x42e000,4, 0x42e200,110, 0x42e400,97, 0x42e600,36, 0x42e700,12, 0x42e740,43, 0x42e7f0,214, 0x42ec00,1, 0x42ec08,12, 0x42ee00,65, 0x42f000,11, 0x42f040,6, 0x42f100,3, 0x42f110,34, 0x42f200,29, 0x42f284,5, 0x42f300,42, 0x42f400,3, 0x42f410,37, 0x42f4c0,6, 0x430000,4, 0x430200,110, 0x430400,97, 0x430600,36, 0x430700,12, 0x430740,43, 0x4307f0,214, 0x430c00,1, 0x430c08,12, 0x430e00,65, 0x431000,11, 0x431040,6, 0x431100,3, 0x431110,34, 0x431200,29, 0x431284,5, 0x431300,42, 0x431400,3, 0x431410,37, 0x4314c0,6, 0x432000,4, 0x432200,110, 0x432400,97, 0x432600,36, 0x432700,12, 0x432740,43, 0x4327f0,214, 0x432c00,1, 0x432c08,12, 0x432e00,65, 0x433000,11, 0x433040,6, 0x433100,3, 0x433110,34, 0x433200,29, 0x433284,5, 0x433300,42, 0x433400,3, 0x433410,37, 0x4334c0,6, 0x434000,4, 0x434200,110, 0x434400,97, 0x434600,36, 0x434700,12, 0x434740,43, 0x4347f0,214, 0x434c00,1, 0x434c08,12, 0x434e00,65, 0x435000,11, 0x435040,6, 0x435100,3, 0x435110,34, 0x435200,29, 0x435284,5, 0x435300,42, 0x435400,3, 0x435410,37, 0x4354c0,6, 0x436000,4, 0x436200,110, 0x436400,97, 0x436600,36, 0x436700,12, 0x436740,43, 0x4367f0,214, 0x436c00,1, 0x436c08,12, 0x436e00,65, 0x437000,11, 0x437040,6, 0x437100,3, 0x437110,34, 0x437200,29, 0x437284,5, 0x437300,42, 0x437400,3, 0x437410,37, 0x4374c0,6, 0x438004,3, 0x438014,3, 0x438024,3, 0x438034,3, 0x438044,3, 0x438054,3, 0x438064,3, 0x438074,3, 0x438084,1, 0x4380a4,7, 0x4380c4,1, 0x4380e4,7, 0x438104,1, 0x438124,7, 0x438144,1, 0x438164,7, 0x438184,1, 0x4381a4,7, 0x4381c4,1, 0x4381e4,7, 0x438204,1, 0x438224,7, 0x438244,1, 0x438264,7, 0x440000,41, 0x4400ac,8, 0x440100,41, 0x4401ac,8, 0x440200,21, 0x440258,59, 0x440380,20, 0x440400,25, 0x440480,6, 0x4404a0,3, 0x4404b0,3, 0x4404c0,2, 0x4404e0,3, 0x4404f0,2, 0x440500,2, 0x440580,24, 0x4405e4,1, 0x4405f0,4, 0x441000,2, 0x441400,135, 0x441620,4, 0x441800,6, 0x441840,12, 0x441880,27, 0x442000,2, 0x442400,135, 0x442620,4, 0x442800,6, 0x442840,12, 0x442880,27, 0x443000,2, 0x443400,135, 0x443620,4, 0x443800,6, 0x443840,12, 0x443880,27, 0x444000,2, 0x444400,135, 0x444620,4, 0x444800,6, 0x444840,12, 0x444880,27, 0x445000,2, 0x445400,135, 0x445620,4, 0x445800,6, 0x445840,12, 0x445880,27, 0x446000,2, 0x446400,135, 0x446620,4, 0x446800,6, 0x446840,12, 0x446880,27, 0x447000,2, 0x447400,135, 0x447620,4, 0x447800,6, 0x447840,12, 0x447880,27, 0x448000,2, 0x448400,135, 0x448620,4, 0x448800,6, 0x448840,12, 0x448880,27, 0x449000,2, 0x449400,135, 0x449620,4, 0x449800,6, 0x449840,12, 0x449880,27, 0x44a000,2, 0x44a400,135, 0x44a620,4, 0x44a800,6, 0x44a840,12, 0x44a880,27, 0x44b000,2, 0x44b400,135, 0x44b620,4, 0x44b800,6, 0x44b840,12, 0x44b880,27, 0x44c000,2, 0x44c400,135, 0x44c620,4, 0x44c800,6, 0x44c840,12, 0x44c880,27, 0x44d000,2, 0x44d400,135, 0x44d620,4, 0x44d800,6, 0x44d840,12, 0x44d880,27, 0x44e000,2, 0x44e400,135, 0x44e620,4, 0x44e800,6, 0x44e840,12, 0x44e880,27, 0x44f000,2, 0x44f400,135, 0x44f620,4, 0x44f800,6, 0x44f840,12, 0x44f880,27, 0x450000,2, 0x450400,135, 0x450620,4, 0x450800,6, 0x450840,12, 0x450880,27, 0x451000,27, 0x451080,4, 0x4510c0,25, 0x451140,6, 0x451160,4, 0x451174,3, 0x451200,8, 0x451224,25, 0x451400,27, 0x451480,4, 0x4514c0,25, 0x451540,6, 0x451560,4, 0x451574,3, 0x451600,8, 0x451624,25, 0x451800,27, 0x451880,4, 0x4518c0,25, 0x451940,6, 0x451960,4, 0x451974,3, 0x451a00,8, 0x451a24,25, 0x451c00,27, 0x451c80,4, 0x451cc0,25, 0x451d40,6, 0x451d60,4, 0x451d74,3, 0x451e00,8, 0x451e24,25, 0x452000,27, 0x452080,4, 0x4520c0,25, 0x452140,6, 0x452160,4, 0x452174,3, 0x452200,8, 0x452224,25, 0x452400,27, 0x452480,4, 0x4524c0,25, 0x452540,6, 0x452560,4, 0x452574,3, 0x452600,8, 0x452624,25, 0x452800,27, 0x452880,4, 0x4528c0,25, 0x452940,6, 0x452960,4, 0x452974,3, 0x452a00,8, 0x452a24,25, 0x452c00,27, 0x452c80,4, 0x452cc0,25, 0x452d40,6, 0x452d60,4, 0x452d74,3, 0x452e00,8, 0x452e24,25, 0x453000,27, 0x453080,4, 0x4530c0,25, 0x453140,6, 0x453160,4, 0x453174,3, 0x453200,8, 0x453224,25, 0x453400,27, 0x453480,4, 0x4534c0,25, 0x453540,6, 0x453560,4, 0x453574,3, 0x453600,8, 0x453624,25, 0x453800,27, 0x453880,4, 0x4538c0,25, 0x453940,6, 0x453960,4, 0x453974,3, 0x453a00,8, 0x453a24,25, 0x453c00,27, 0x453c80,4, 0x453cc0,25, 0x453d40,6, 0x453d60,4, 0x453d74,3, 0x453e00,8, 0x453e24,25, 0x454000,27, 0x454080,4, 0x4540c0,25, 0x454140,6, 0x454160,4, 0x454174,3, 0x454200,8, 0x454224,25, 0x454400,27, 0x454480,4, 0x4544c0,25, 0x454540,6, 0x454560,4, 0x454574,3, 0x454600,8, 0x454624,25, 0x454800,27, 0x454880,4, 0x4548c0,25, 0x454940,6, 0x454960,4, 0x454974,3, 0x454a00,8, 0x454a24,25, 0x454c00,27, 0x454c80,4, 0x454cc0,25, 0x454d40,6, 0x454d60,4, 0x454d74,3, 0x454e00,8, 0x454e24,25, 0x460004,1, 0x460030,20, 0x460084,3, 0x460104,1, 0x460134,19, 0x460184,6, 0x4601a0,5, 0x4601c0,5, 0x460200,4, 0x460300,46, 0x460400,5, 0x460420,7, 0x460440,1, 0x460448,94, 0x460804,1, 0x460830,20, 0x460884,3, 0x460904,1, 0x460934,19, 0x460984,6, 0x4609a0,5, 0x4609c0,5, 0x460a00,4, 0x460b00,46, 0x460c00,5, 0x460c20,7, 0x460c40,1, 0x460c48,94, 0x461004,1, 0x461030,20, 0x461084,3, 0x461104,1, 0x461134,19, 0x461184,6, 0x4611a0,5, 0x4611c0,5, 0x461200,4, 0x461300,46, 0x461400,5, 0x461420,7, 0x461440,1, 0x461448,94, 0x461804,1, 0x461830,20, 0x461884,3, 0x461904,1, 0x461934,19, 0x461984,6, 0x4619a0,5, 0x4619c0,5, 0x461a00,4, 0x461b00,46, 0x461c00,5, 0x461c20,7, 0x461c40,1, 0x461c48,94, 0x464000,4, 0x464040,13, 0x464080,3, 0x464090,2, 0x464100,4, 0x464140,13, 0x464180,3, 0x464190,2, 0x464200,4, 0x464240,13, 0x464280,3, 0x464290,2, 0x464300,4, 0x464340,13, 0x464380,3, 0x464390,2, 0x464400,4, 0x464440,13, 0x464480,3, 0x464490,2, 0x464500,4, 0x464540,13, 0x464580,3, 0x464590,2, 0x464600,4, 0x464640,13, 0x464680,3, 0x464690,2, 0x464700,4, 0x464740,13, 0x464780,3, 0x464790,2, 0x464800,4, 0x464840,13, 0x464880,3, 0x464890,2, 0x464900,4, 0x464940,13, 0x464980,3, 0x464990,2, 0x464a00,4, 0x464a40,13, 0x464a80,3, 0x464a90,2, 0x464b00,4, 0x464b40,13, 0x464b80,3, 0x464b90,2, 0x464c00,4, 0x464c40,13, 0x464c80,3, 0x464c90,2, 0x465000,2, 0x465044,9, 0x465084,9, 0x4650c4,9, 0x465104,9, 0x465144,5, 0x465164,5, 0x465184,5, 0x4651a4,5, 0x4651c4,9, 0x465204,5, 0x465280,18, 0x465300,11, 0x465400,2, 0x465444,9, 0x465484,9, 0x4654c4,9, 0x465504,9, 0x465544,5, 0x465564,5, 0x465584,5, 0x4655a4,5, 0x4655c4,9, 0x465604,5, 0x465680,18, 0x465700,11, 0x465800,2, 0x465844,9, 0x465884,9, 0x4658c4,9, 0x465904,9, 0x465944,5, 0x465964,5, 0x465984,5, 0x4659a4,5, 0x4659c4,9, 0x465a04,5, 0x465a80,18, 0x465b00,11, 0x465c00,2, 0x465c44,9, 0x465c84,9, 0x465cc4,9, 0x465d04,9, 0x465d44,5, 0x465d64,5, 0x465d84,5, 0x465da4,5, 0x465dc4,9, 0x465e04,5, 0x465e80,18, 0x465f00,11, 0x466004,1, 0x466028,29, 0x468000,3, 0x468010,3, 0x468020,3, 0x468030,3, 0x468040,3, 0x468050,3, 0x468060,3, 0x468070,3, 0x468080,3, 0x468090,3, 0x4680a0,3, 0x4680b0,3, 0x4680c0,3, 0x4680d0,3, 0x4680e0,3, 0x4680f0,3, 0x468100,3, 0x468110,3, 0x468120,3, 0x468130,3, 0x468140,3, 0x468150,3, 0x468160,3, 0x468170,3, 0x468180,3, 0x468190,3, 0x4681a0,3, 0x4681b0,3, 0x4681c0,3, 0x4681d0,3, 0x4681e0,3, 0x4681f0,3, 0x468200,3, 0x468210,3, 0x468220,3, 0x468230,3, 0x468240,3, 0x468250,3, 0x468260,3, 0x468270,3, 0x468280,3, 0x468290,3, 0x4682a0,3, 0x4682b0,3, 0x4682c0,3, 0x4682d0,3, 0x4682e0,3, 0x4682f0,3, 0x468300,3, 0x468310,3, 0x468320,3, 0x468330,3, 0x468340,3, 0x468350,3, 0x468360,3, 0x468370,3, 0x468380,3, 0x468390,3, 0x4683a0,3, 0x4683b0,3, 0x4683c0,3, 0x4683d0,3, 0x4683e0,3, 0x4683f0,3, 0x468400,3, 0x468410,3, 0x468420,3, 0x468430,3, 0x468440,3, 0x468450,3, 0x468460,3, 0x468470,3, 0x468480,3, 0x468490,3, 0x4684a0,3, 0x4684b0,3, 0x4684c0,3, 0x4684d0,3, 0x4684e0,3, 0x4684f0,3, 0x468500,3, 0x468510,3, 0x468520,3, 0x468530,3, 0x468540,3, 0x468550,3, 0x468560,3, 0x468570,3, 0x468580,3, 0x468590,3, 0x4685a0,3, 0x4685b0,3, 0x4685c0,3, 0x4685d0,3, 0x4685e0,3, 0x4685f0,3, 0x468600,3, 0x468610,3, 0x468620,3, 0x468630,3, 0x468640,3, 0x468650,3, 0x468660,3, 0x468670,3, 0x468680,3, 0x468690,3, 0x4686a0,3, 0x4686b0,3, 0x4686c0,3, 0x4686d0,3, 0x4686e0,3, 0x4686f0,3, 0x468700,3, 0x468710,3, 0x468720,3, 0x468730,3, 0x468740,3, 0x468750,3, 0x468760,3, 0x468770,3, 0x468780,3, 0x468790,3, 0x4687a0,3, 0x4687b0,3, 0x4687c0,3, 0x4687d0,3, 0x4687e0,3, 0x4687f0,3, 0x468800,3, 0x468810,3, 0x468820,3, 0x468830,3, 0x468840,3, 0x468850,3, 0x468860,3, 0x468870,3, 0x468880,3, 0x468890,3, 0x4688a0,3, 0x4688b0,3, 0x4688c0,3, 0x4688d0,3, 0x4688e0,3, 0x4688f0,3, 0x468900,3, 0x468910,3, 0x468920,3, 0x468930,3, 0x468940,3, 0x468950,3, 0x468960,3, 0x468970,3, 0x468980,3, 0x468990,3, 0x4689a0,3, 0x4689b0,3, 0x4689c0,3, 0x4689d0,3, 0x4689e0,3, 0x4689f0,3, 0x468a00,3, 0x468a10,3, 0x468a20,3, 0x468a30,3, 0x468a40,3, 0x468a50,3, 0x468a60,3, 0x468a70,3, 0x468a80,3, 0x468a90,3, 0x468aa0,3, 0x468ab0,3, 0x468ac0,3, 0x468ad0,3, 0x468ae0,3, 0x468af0,3, 0x468b00,3, 0x468b10,3, 0x468b20,3, 0x468b30,3, 0x468b40,3, 0x468b50,3, 0x468b60,3, 0x468b70,3, 0x468b80,3, 0x468b90,3, 0x468ba0,3, 0x468bb0,3, 0x468bc0,3, 0x468bd0,3, 0x468be0,3, 0x468bf0,3, 0x468c00,3, 0x468c10,3, 0x468c20,3, 0x468c30,3, 0x468c40,3, 0x468c50,3, 0x468c60,3, 0x468c70,3, 0x468c80,3, 0x468c90,3, 0x468ca0,3, 0x468cb0,3, 0x468cc0,3, 0x468cd0,3, 0x468ce0,3, 0x468cf0,3, 0x468d00,3, 0x468d10,3, 0x468d20,3, 0x468d30,3, 0x468d40,3, 0x468d50,3, 0x468d60,3, 0x468d70,3, 0x468d80,3, 0x468d90,3, 0x468da0,3, 0x468db0,3, 0x468dc0,3, 0x468dd0,3, 0x468de0,3, 0x468df0,3, 0x468e00,3, 0x468e10,3, 0x468e20,3, 0x468e30,3, 0x468e40,3, 0x468e50,3, 0x468e60,3, 0x468e70,3, 0x468e80,3, 0x468e90,3, 0x468ea0,3, 0x468eb0,3, 0x468ec0,3, 0x468ed0,3, 0x468ee0,3, 0x468ef0,3, 0x468f00,3, 0x468f10,3, 0x468f20,3, 0x468f30,3, 0x468f40,3, 0x468f50,3, 0x468f60,3, 0x468f70,3, 0x468f80,3, 0x468f90,3, 0x468fa0,3, 0x468fb0,3, 0x468fc0,3, 0x468fd0,3, 0x468fe0,3, 0x468ff0,3, 0x469000,3, 0x469010,3, 0x469020,37, 0x469100,41, 0x4691a8,3, 0x469200,41, 0x4692a8,3, 0x469300,517, 0x469b40,4, 0x469b80,9, 0x469bc0,9, 0x469c00,21, 0x469c84,1, 0x469c9c,12, 0x469d04,1, 0x469d1c,12, 0x469d84,1, 0x469d9c,12, 0x469e04,1, 0x469e1c,12, 0x469e84,1, 0x469e9c,12, 0x469f04,1, 0x469f1c,12, 0x469f84,1, 0x469f9c,12, 0x46a004,1, 0x46a01c,12, 0x46a084,1, 0x46a09c,12, 0x46a100,105, 0x46a300,20, 0x46a380,20, 0x46a400,20, 0x46a480,20, 0x46a800,157, 0x46aa80,3, 0x46ac00,27, 0x46ac80,4, 0x46acc0,25, 0x46ad40,6, 0x46ad60,4, 0x46ad74,3, 0x46ae00,8, 0x46ae24,36, 0x46b000,36, 0x46b100,16, 0x46b144,6, 0x470004,1, 0x470030,20, 0x470084,3, 0x470104,1, 0x470134,19, 0x470184,6, 0x4701a0,5, 0x4701c0,5, 0x470200,4, 0x470300,46, 0x470400,5, 0x470420,7, 0x470440,1, 0x470448,94, 0x470804,1, 0x470830,20, 0x470884,3, 0x470904,1, 0x470934,19, 0x470984,6, 0x4709a0,5, 0x4709c0,5, 0x470a00,4, 0x470b00,46, 0x470c00,5, 0x470c20,7, 0x470c40,1, 0x470c48,94, 0x471004,1, 0x471030,20, 0x471084,3, 0x471104,1, 0x471134,19, 0x471184,6, 0x4711a0,5, 0x4711c0,5, 0x471200,4, 0x471300,46, 0x471400,5, 0x471420,7, 0x471440,1, 0x471448,94, 0x471804,1, 0x471830,20, 0x471884,3, 0x471904,1, 0x471934,19, 0x471984,6, 0x4719a0,5, 0x4719c0,5, 0x471a00,4, 0x471b00,46, 0x471c00,5, 0x471c20,7, 0x471c40,1, 0x471c48,94, 0x474000,4, 0x474040,13, 0x474080,3, 0x474090,2, 0x474100,4, 0x474140,13, 0x474180,3, 0x474190,2, 0x474200,4, 0x474240,13, 0x474280,3, 0x474290,2, 0x474300,4, 0x474340,13, 0x474380,3, 0x474390,2, 0x474400,4, 0x474440,13, 0x474480,3, 0x474490,2, 0x474500,4, 0x474540,13, 0x474580,3, 0x474590,2, 0x474600,4, 0x474640,13, 0x474680,3, 0x474690,2, 0x474700,4, 0x474740,13, 0x474780,3, 0x474790,2, 0x474800,4, 0x474840,13, 0x474880,3, 0x474890,2, 0x474900,4, 0x474940,13, 0x474980,3, 0x474990,2, 0x474a00,4, 0x474a40,13, 0x474a80,3, 0x474a90,2, 0x474b00,4, 0x474b40,13, 0x474b80,3, 0x474b90,2, 0x474c00,4, 0x474c40,13, 0x474c80,3, 0x474c90,2, 0x475000,2, 0x475044,9, 0x475084,9, 0x4750c4,9, 0x475104,9, 0x475144,5, 0x475164,5, 0x475184,5, 0x4751a4,5, 0x4751c4,9, 0x475204,5, 0x475280,18, 0x475300,11, 0x475400,2, 0x475444,9, 0x475484,9, 0x4754c4,9, 0x475504,9, 0x475544,5, 0x475564,5, 0x475584,5, 0x4755a4,5, 0x4755c4,9, 0x475604,5, 0x475680,18, 0x475700,11, 0x475800,2, 0x475844,9, 0x475884,9, 0x4758c4,9, 0x475904,9, 0x475944,5, 0x475964,5, 0x475984,5, 0x4759a4,5, 0x4759c4,9, 0x475a04,5, 0x475a80,18, 0x475b00,11, 0x475c00,2, 0x475c44,9, 0x475c84,9, 0x475cc4,9, 0x475d04,9, 0x475d44,5, 0x475d64,5, 0x475d84,5, 0x475da4,5, 0x475dc4,9, 0x475e04,5, 0x475e80,18, 0x475f00,11, 0x476004,1, 0x476028,29, 0x478000,3, 0x478010,3, 0x478020,3, 0x478030,3, 0x478040,3, 0x478050,3, 0x478060,3, 0x478070,3, 0x478080,3, 0x478090,3, 0x4780a0,3, 0x4780b0,3, 0x4780c0,3, 0x4780d0,3, 0x4780e0,3, 0x4780f0,3, 0x478100,3, 0x478110,3, 0x478120,3, 0x478130,3, 0x478140,3, 0x478150,3, 0x478160,3, 0x478170,3, 0x478180,3, 0x478190,3, 0x4781a0,3, 0x4781b0,3, 0x4781c0,3, 0x4781d0,3, 0x4781e0,3, 0x4781f0,3, 0x478200,3, 0x478210,3, 0x478220,3, 0x478230,3, 0x478240,3, 0x478250,3, 0x478260,3, 0x478270,3, 0x478280,3, 0x478290,3, 0x4782a0,3, 0x4782b0,3, 0x4782c0,3, 0x4782d0,3, 0x4782e0,3, 0x4782f0,3, 0x478300,3, 0x478310,3, 0x478320,3, 0x478330,3, 0x478340,3, 0x478350,3, 0x478360,3, 0x478370,3, 0x478380,3, 0x478390,3, 0x4783a0,3, 0x4783b0,3, 0x4783c0,3, 0x4783d0,3, 0x4783e0,3, 0x4783f0,3, 0x478400,3, 0x478410,3, 0x478420,3, 0x478430,3, 0x478440,3, 0x478450,3, 0x478460,3, 0x478470,3, 0x478480,3, 0x478490,3, 0x4784a0,3, 0x4784b0,3, 0x4784c0,3, 0x4784d0,3, 0x4784e0,3, 0x4784f0,3, 0x478500,3, 0x478510,3, 0x478520,3, 0x478530,3, 0x478540,3, 0x478550,3, 0x478560,3, 0x478570,3, 0x478580,3, 0x478590,3, 0x4785a0,3, 0x4785b0,3, 0x4785c0,3, 0x4785d0,3, 0x4785e0,3, 0x4785f0,3, 0x478600,3, 0x478610,3, 0x478620,3, 0x478630,3, 0x478640,3, 0x478650,3, 0x478660,3, 0x478670,3, 0x478680,3, 0x478690,3, 0x4786a0,3, 0x4786b0,3, 0x4786c0,3, 0x4786d0,3, 0x4786e0,3, 0x4786f0,3, 0x478700,3, 0x478710,3, 0x478720,3, 0x478730,3, 0x478740,3, 0x478750,3, 0x478760,3, 0x478770,3, 0x478780,3, 0x478790,3, 0x4787a0,3, 0x4787b0,3, 0x4787c0,3, 0x4787d0,3, 0x4787e0,3, 0x4787f0,3, 0x478800,3, 0x478810,3, 0x478820,3, 0x478830,3, 0x478840,3, 0x478850,3, 0x478860,3, 0x478870,3, 0x478880,3, 0x478890,3, 0x4788a0,3, 0x4788b0,3, 0x4788c0,3, 0x4788d0,3, 0x4788e0,3, 0x4788f0,3, 0x478900,3, 0x478910,3, 0x478920,3, 0x478930,3, 0x478940,3, 0x478950,3, 0x478960,3, 0x478970,3, 0x478980,3, 0x478990,3, 0x4789a0,3, 0x4789b0,3, 0x4789c0,3, 0x4789d0,3, 0x4789e0,3, 0x4789f0,3, 0x478a00,3, 0x478a10,3, 0x478a20,3, 0x478a30,3, 0x478a40,3, 0x478a50,3, 0x478a60,3, 0x478a70,3, 0x478a80,3, 0x478a90,3, 0x478aa0,3, 0x478ab0,3, 0x478ac0,3, 0x478ad0,3, 0x478ae0,3, 0x478af0,3, 0x478b00,3, 0x478b10,3, 0x478b20,3, 0x478b30,3, 0x478b40,3, 0x478b50,3, 0x478b60,3, 0x478b70,3, 0x478b80,3, 0x478b90,3, 0x478ba0,3, 0x478bb0,3, 0x478bc0,3, 0x478bd0,3, 0x478be0,3, 0x478bf0,3, 0x478c00,3, 0x478c10,3, 0x478c20,3, 0x478c30,3, 0x478c40,3, 0x478c50,3, 0x478c60,3, 0x478c70,3, 0x478c80,3, 0x478c90,3, 0x478ca0,3, 0x478cb0,3, 0x478cc0,3, 0x478cd0,3, 0x478ce0,3, 0x478cf0,3, 0x478d00,3, 0x478d10,3, 0x478d20,3, 0x478d30,3, 0x478d40,3, 0x478d50,3, 0x478d60,3, 0x478d70,3, 0x478d80,3, 0x478d90,3, 0x478da0,3, 0x478db0,3, 0x478dc0,3, 0x478dd0,3, 0x478de0,3, 0x478df0,3, 0x478e00,3, 0x478e10,3, 0x478e20,3, 0x478e30,3, 0x478e40,3, 0x478e50,3, 0x478e60,3, 0x478e70,3, 0x478e80,3, 0x478e90,3, 0x478ea0,3, 0x478eb0,3, 0x478ec0,3, 0x478ed0,3, 0x478ee0,3, 0x478ef0,3, 0x478f00,3, 0x478f10,3, 0x478f20,3, 0x478f30,3, 0x478f40,3, 0x478f50,3, 0x478f60,3, 0x478f70,3, 0x478f80,3, 0x478f90,3, 0x478fa0,3, 0x478fb0,3, 0x478fc0,3, 0x478fd0,3, 0x478fe0,3, 0x478ff0,3, 0x479000,3, 0x479010,3, 0x479020,37, 0x479100,41, 0x4791a8,3, 0x479200,41, 0x4792a8,3, 0x479300,517, 0x479b40,4, 0x479b80,9, 0x479bc0,9, 0x479c00,21, 0x479c84,1, 0x479c9c,12, 0x479d04,1, 0x479d1c,12, 0x479d84,1, 0x479d9c,12, 0x479e04,1, 0x479e1c,12, 0x479e84,1, 0x479e9c,12, 0x479f04,1, 0x479f1c,12, 0x479f84,1, 0x479f9c,12, 0x47a004,1, 0x47a01c,12, 0x47a084,1, 0x47a09c,12, 0x47a100,105, 0x47a300,20, 0x47a380,20, 0x47a400,20, 0x47a480,20, 0x47a800,157, 0x47aa80,3, 0x47ac00,27, 0x47ac80,4, 0x47acc0,25, 0x47ad40,6, 0x47ad60,4, 0x47ad74,3, 0x47ae00,8, 0x47ae24,36, 0x47b000,36, 0x47b100,16, 0x47b144,6, 0x480000,363, 0x4805b0,1, 0x4805b8,2, 0x480600,52, 0x480700,35, 0x480794,2, 0x481000,5, 0x481400,135, 0x481620,3, 0x481630,2, 0x481800,1, 0x482000,5, 0x482400,135, 0x482620,3, 0x482630,2, 0x482800,1, 0x483000,5, 0x483400,135, 0x483620,3, 0x483630,2, 0x483800,1, 0x484000,5, 0x484400,135, 0x484620,3, 0x484630,2, 0x484800,1, 0x485000,5, 0x485400,135, 0x485620,3, 0x485630,2, 0x485800,1, 0x486000,5, 0x486400,135, 0x486620,3, 0x486630,2, 0x486800,1, 0x487000,5, 0x487400,135, 0x487620,3, 0x487630,2, 0x487800,1, 0x488000,5, 0x488400,135, 0x488620,3, 0x488630,2, 0x488800,1, 0x489000,5, 0x489400,135, 0x489620,3, 0x489630,2, 0x489800,1, 0x48a000,5, 0x48a400,135, 0x48a620,3, 0x48a630,2, 0x48a800,1, 0x48b000,5, 0x48b400,135, 0x48b620,3, 0x48b630,2, 0x48b800,1, 0x48c000,5, 0x48c400,135, 0x48c620,3, 0x48c630,2, 0x48c800,1, 0x48d000,5, 0x48d400,135, 0x48d620,3, 0x48d630,2, 0x48d800,1, 0x48e000,5, 0x48e400,135, 0x48e620,3, 0x48e630,2, 0x48e800,1, 0x48f000,5, 0x48f400,135, 0x48f620,3, 0x48f630,2, 0x48f800,1, 0x490000,5, 0x490400,135, 0x490620,3, 0x490630,2, 0x490800,1, 0x491000,5, 0x491400,135, 0x491620,3, 0x491630,2, 0x491800,1, 0x492000,5, 0x492400,135, 0x492620,3, 0x492630,2, 0x492800,1, 0x493000,5, 0x493400,135, 0x493620,3, 0x493630,2, 0x493800,1, 0x494000,5, 0x494400,135, 0x494620,3, 0x494630,2, 0x494800,1, 0x495000,5, 0x495400,135, 0x495620,3, 0x495630,2, 0x495800,1, 0x496000,5, 0x496400,135, 0x496620,3, 0x496630,2, 0x496800,1, 0x497000,5, 0x497400,135, 0x497620,3, 0x497630,2, 0x497800,1, 0x498000,5, 0x498400,135, 0x498620,3, 0x498630,2, 0x498800,1, 0x499000,5, 0x499400,135, 0x499620,3, 0x499630,2, 0x499800,1, 0x49a000,5, 0x49a400,135, 0x49a620,3, 0x49a630,2, 0x49a800,1, 0x49b000,5, 0x49b400,135, 0x49b620,3, 0x49b630,2, 0x49b800,1, 0x49c000,5, 0x49c400,135, 0x49c620,3, 0x49c630,2, 0x49c800,1, 0x49d000,3, 0x49d010,1, 0x49d400,27, 0x49d480,4, 0x49d4c0,25, 0x49d540,6, 0x49d560,4, 0x49d574,3, 0x49d600,8, 0x49d624,86, 0x49d800,3, 0x49da00,1, 0x49da08,3, 0x49da18,3, 0x49da28,3, 0x49da38,3, 0x49da48,3, 0x49da58,3, 0x49da68,3, 0x49da78,3, 0x49da88,3, 0x49da98,3, 0x49daa8,3, 0x49dab8,3, 0x49dac8,3, 0x49dad8,3, 0x49dae8,3, 0x49daf8,3, 0x49db08,3, 0x49db18,3, 0x49db28,3, 0x49db38,3, 0x49db48,3, 0x49db58,3, 0x49db68,3, 0x49db78,3, 0x49db88,3, 0x49db98,3, 0x49dba8,3, 0x49dbb8,3, 0x49dbc8,3, 0x49dbd8,3, 0x49dbe8,3, 0x49dbf8,2, 0x4a0000,6, 0x4a0100,3, 0x4a0124,1, 0x4a012c,8, 0x4a0160,3, 0x4a0170,15, 0x4a0200,3, 0x4a0224,1, 0x4a022c,8, 0x4a0260,3, 0x4a0270,15, 0x4a0300,3, 0x4a0324,1, 0x4a032c,8, 0x4a0360,3, 0x4a0370,15, 0x4a0400,3, 0x4a0424,1, 0x4a042c,8, 0x4a0460,3, 0x4a0470,15, 0x4a0500,3, 0x4a0520,3, 0x4a0540,3, 0x4a0550,15, 0x4a0600,3, 0x4a0800,1, 0x4a0808,3, 0x4a0820,1, 0x4a0828,3, 0x4a0840,1, 0x4a0848,3, 0x4a0860,1, 0x4a0868,3, 0x4a0880,1, 0x4a0888,3, 0x4a08a0,1, 0x4a08a8,3, 0x4a08c0,1, 0x4a08c8,3, 0x4a08e0,1, 0x4a08e8,3, 0x4a0900,1, 0x4a0908,3, 0x4a0920,1, 0x4a0928,3, 0x4a0940,1, 0x4a0948,3, 0x4a0960,1, 0x4a0968,3, 0x4a0980,1, 0x4a0988,3, 0x4a09a0,1, 0x4a09a8,3, 0x4a09c0,1, 0x4a09c8,3, 0x4a09e0,1, 0x4a09e8,3, 0x4a0a00,1, 0x4a0a08,3, 0x4a0a20,1, 0x4a0a28,3, 0x4a0c00,18, 0x4a0c60,31, 0x4a0ce0,3, 0x4a0e00,8, 0x4a0f04,1, 0x4a0f44,74, 0x4a1080,9, 0x4a10c0,6, 0x4a10e0,6, 0x4a1104,21, 0x4a1400,120, 0x4a15e4,5, 0x4a1600,4, 0x4a8000,44, 0x4a8100,42, 0x4a81b0,3, 0x4a8200,15, 0x4a8240,9, 0x4a8280,6, 0x4a82a0,6, 0x4a82bc,1, 0x4c0000,3, 0x4c0010,95, 0x4c4000,3, 0x4c4010,95, 0x4c8000,3, 0x4c8010,95, 0x4cc000,3, 0x4cc010,95, 0x4d0000,3, 0x4d0010,95, 0x4d4000,3, 0x4d4010,95, 0x4d8000,3, 0x4d8010,95, 0x4dc000,3, 0x4dc010,95, 0x4e0000,6, 0x4e0100,4, 0x4e0200,36, 0x4e0300,712, 0x500000,3, 0x500010,95, 0x504000,3, 0x504010,95, 0x508000,3, 0x508010,95, 0x50c000,3, 0x50c010,95, 0x510000,3, 0x510010,95, 0x514000,3, 0x514010,95, 0x518000,3, 0x518010,95, 0x51c000,3, 0x51c010,95, 0x520000,6, 0x520100,4, 0x520200,36, 0x520300,712, 0x540000,23, 0x540080,23, 0x540100,23, 0x540180,23, 0x540200,13, 0x540404,1, 0x54047c,33, 0x540504,1, 0x540514,3, 0x540524,1, 0x54052c,1, 0x540600,96, 0x540784,1, 0x540790,4, 0x541000,76, 0x542000,582, 0x543000,13, 0x543400,27, 0x543480,4, 0x5434c0,25, 0x543540,6, 0x543560,4, 0x543574,3, 0x543600,8, 0x543624,59, 0x543800,4, 0x543880,36, 0x543980,17, 0x543a00,6, 0x543a20,165, 0x543d00,12, 0x543d40,2, 0x543d50,3, 0x543d60,1, 0x543d80,12, 0x543dc0,2, 0x543dd0,3, 0x543de0,1, 0x543e00,12, 0x543e40,2, 0x543e50,3, 0x543e60,1, 0x543e80,12, 0x543ec0,2, 0x543ed0,3, 0x543ee0,1, 0x543f00,9, 0x543f80,3, 0x543f90,5, 0x543fa8,5, 0x543fc0,5, 0x543fd8,2, 0x544000,1, 0x544010,6, 0x544030,78, 0x544180,18, 0x548004,6, 0x549000,650, 0x54a000,650, 0x54b000,2, 0x54b040,9, 0x54b080,7, 0x54c000,34, 0x54c090,9, 0x54c0b8,11, 0x550000,11, 0x550040,11, 0x550080,11, 0x5500c0,11, 0x550104,1, 0x55011c,10, 0x550148,2, 0x550154,1, 0x55015c,24, 0x5501c0,3, 0x5501d0,3, 0x5501e0,3, 0x5501f0,33, 0x550280,3, 0x550290,3, 0x5502a0,3, 0x5502b0,3, 0x5502c0,5, 0x5502d8,8, 0x550400,145, 0x550800,4, 0x550880,25, 0x550900,5, 0x550920,1, 0x551000,11, 0x551040,11, 0x551080,11, 0x5510c0,11, 0x551100,11, 0x551140,11, 0x551180,11, 0x5511c0,11, 0x551200,1, 0x551208,19, 0x551260,2, 0x55126c,3, 0x551280,5, 0x551400,3, 0x551410,30, 0x5514a4,1, 0x5514b4,23, 0x551520,6, 0x551540,3, 0x551560,2, 0x55156c,2, 0x551580,2, 0x5515c0,3, 0x5515d0,3, 0x5515e0,1, 0x551600,1, 0x551800,1, 0x551814,12, 0x551848,5, 0x551860,7, 0x551880,5, 0x551898,5, 0x5518b0,5, 0x5518c8,7, 0x5518e8,7, 0x551908,5, 0x551920,11, 0x551950,55, 0x551a40,2, 0x551a4c,2, 0x551a60,2, 0x551a80,6, 0x551ac0,3, 0x551ad0,3, 0x551ae0,1, 0x551b00,1, 0x552000,2, 0x552010,47, 0x5520e0,6, 0x552100,6, 0x552120,2, 0x55212c,3, 0x552140,6, 0x552200,5, 0x552224,1, 0x552234,3, 0x552280,20, 0x552404,1, 0x5524e4,71, 0x552604,1, 0x552670,38, 0x552800,27, 0x552880,4, 0x5528c0,25, 0x552940,6, 0x552960,4, 0x552974,11, 0x5529a4,7, 0x552a00,12, 0x552a40,2, 0x552a50,1, 0x552a58,5, 0x552a70,5, 0x560000,19, 0x560080,19, 0x560100,19, 0x560180,19, 0x560200,12, 0x560280,1, 0x5602a0,6, 0x5602c0,6, 0x5602e0,6, 0x560300,6, 0x560320,6, 0x560340,6, 0x560360,6, 0x560380,9, 0x5603c0,13, 0x560400,3, 0x560410,159, 0x560690,16, 0x5606e0,5, 0x560700,5, 0x560720,5, 0x560740,5, 0x560760,5, 0x560780,5, 0x5607a0,5, 0x5607c0,5, 0x5607e0,6, 0x560800,6, 0x560820,6, 0x560840,6, 0x560860,6, 0x560880,6, 0x5608a0,6, 0x5608c0,6, 0x5608e0,6, 0x560900,6, 0x560920,6, 0x560940,6, 0x560960,6, 0x560980,6, 0x5609a0,6, 0x5609c0,6, 0x560a00,22, 0x560a80,1, 0x560a88,3, 0x560aa0,5, 0x560ac0,1, 0x560ad0,3, 0x560ae0,1, 0x560af0,3, 0x560b00,1, 0x560b10,3, 0x560b20,1, 0x560b30,3, 0x560b40,1, 0x560b48,3, 0x560b58,3, 0x560b68,3, 0x560b78,3, 0x560b88,3, 0x560ba0,3, 0x560bb0,1, 0x560bc0,3, 0x560bd0,1, 0x560be0,3, 0x560bf0,1, 0x560c00,3, 0x560c10,1, 0x560c20,3, 0x560c30,1, 0x560c40,3, 0x560c50,1, 0x560c80,6, 0x560ca0,6, 0x560cc0,1, 0x560d00,1, 0x560d10,3, 0x560d20,1, 0x560d30,3, 0x560d40,1, 0x560d60,5, 0x560d80,1, 0x560d90,3, 0x560da0,1, 0x560dc0,5, 0x560de0,1, 0x560df0,3, 0x560e00,1, 0x560e10,3, 0x560e20,5, 0x560e40,2, 0x560e50,3, 0x560e60,5, 0x560e80,2, 0x560e90,3, 0x560ea0,3, 0x560eb0,3, 0x560ec0,3, 0x560ed0,3, 0x560ee0,5, 0x560f00,3, 0x560f20,5, 0x560f40,5, 0x560f60,3, 0x560f70,3, 0x560f80,5, 0x560fa0,3, 0x560fb0,3, 0x560fc0,3, 0x560fd0,3, 0x560fe0,3, 0x560ff0,3, 0x561000,6, 0x561020,3, 0x561040,3, 0x561050,3, 0x561060,1, 0x561080,3, 0x561090,3, 0x5610a0,1, 0x5610c0,3, 0x5610e0,5, 0x561100,11, 0x561130,3, 0x561140,3, 0x561150,3, 0x561160,5, 0x561180,5, 0x5611a0,3, 0x5611b0,3, 0x5611c0,3, 0x5611d0,3, 0x5611e0,2, 0x5611f0,3, 0x561200,7, 0x561220,3, 0x561230,2, 0x561240,3, 0x561250,3, 0x561260,2, 0x561400,15, 0x561440,4, 0x561460,17, 0x5614c0,6, 0x5614e0,4, 0x5614f4,11, 0x561524,54, 0x561604,1, 0x56160c,1, 0x561614,1, 0x56161c,15, 0x561660,6, 0x561680,4, 0x5616a0,5, 0x5616c0,4, 0x5616e0,5, 0x561700,4, 0x561720,5, 0x561740,4, 0x561760,5, 0x561780,4, 0x5617c0,15, 0x561800,4, 0x561880,19, 0x561900,1, 0x561980,24, 0x561a00,24, 0x561a80,24, 0x561b00,24, 0x561b80,1, 0x561b88,2, 0x562000,451, 0x562740,169, 0x563000,260, 0x563800,12, 0x563a04,1, 0x563a0c,8, 0x563a44,1, 0x563a50,7, 0x563a84,1, 0x563a94,27, 0x563b04,3, 0x563b14,3, 0x563b24,3, 0x563b34,21, 0x563ba0,5, 0x563bc0,1, 0x563c04,1, 0x563c14,3, 0x563c24,3, 0x563c34,3, 0x563c44,1, 0x563c60,8, 0x563c84,1, 0x563ca0,8, 0x563cc4,1, 0x563ce0,11, 0x563e04,1, 0x563e0c,2, 0x563e18,1, 0x563e20,3, 0x563e30,3, 0x563e40,1, 0x563e48,3, 0x563e58,3, 0x563e70,4, 0x564000,44, 0x564100,19, 0x564180,22, 0x564200,27, 0x564280,27, 0x564300,11, 0x564380,17, 0x564400,27, 0x564480,2, 0x5644a0,6, 0x5644c0,3, 0x5644d0,4, 0x564500,35, 0x564600,34, 0x564700,26, 0x564780,23, 0x564800,15, 0x564848,4, 0x568000,20, 0x568100,49, 0x568200,20, 0x568300,49, 0x568400,20, 0x568500,49, 0x568600,20, 0x568700,49, 0x568800,8, 0x569000,20, 0x569100,49, 0x569200,20, 0x569300,49, 0x569400,20, 0x569500,49, 0x569600,20, 0x569700,49, 0x569800,8, 0x56a000,15, 0x56a040,3, 0x56a050,1, 0x56a058,4, 0x56a080,10, 0x56a0b0,3, 0x56a0c4,7, 0x56a100,44, 0x56a200,5, 0x56a218,5, 0x56a280,20, 0x56a300,1, 0x56a800,52, 0x56a8e0,5, 0x56a900,5, 0x56aa00,52, 0x56aae0,5, 0x56ab00,5, 0x56ac00,18, 0x56ac50,10, 0x56ad00,36, 0x56ada0,5, 0x56adc0,5, 0x56b000,20, 0x56b080,20, 0x56b100,20, 0x56b180,20, 0x56b200,10, 0x56b400,10, 0x56b440,10, 0x56b480,10, 0x56b4c0,10, 0x56b500,1, 0x56b600,1, 0x56b608,32, 0x56b6a0,6, 0x56b6c0,6, 0x56b6e0,6, 0x56b700,6, 0x56b720,6, 0x56b740,6, 0x56b760,6, 0x56b780,6, 0x56b800,76, 0x56ba00,76, 0x56bc00,33, 0x56c000,76, 0x56c200,76, 0x56c400,33, 0x56c800,4, 0x56ca00,72, 0x56cc00,17, 0x56cc48,4, 0x56ce00,27, 0x56ce80,4, 0x56cec0,25, 0x56cf40,6, 0x56cf60,4, 0x56cf74,11, 0x56cfa4,16, 0x56d000,12, 0x56d040,2, 0x56d050,1, 0x56d058,5, 0x56d070,3, 0x580000,23, 0x580080,23, 0x580100,23, 0x580180,23, 0x580200,13, 0x580404,1, 0x58047c,33, 0x580504,1, 0x580514,3, 0x580524,1, 0x58052c,1, 0x580600,96, 0x580784,1, 0x580790,4, 0x581000,76, 0x582000,582, 0x583000,13, 0x583400,27, 0x583480,4, 0x5834c0,25, 0x583540,6, 0x583560,4, 0x583574,3, 0x583600,8, 0x583624,59, 0x583800,4, 0x583880,36, 0x583980,17, 0x583a00,6, 0x583a20,165, 0x583d00,12, 0x583d40,2, 0x583d50,3, 0x583d60,1, 0x583d80,12, 0x583dc0,2, 0x583dd0,3, 0x583de0,1, 0x583e00,12, 0x583e40,2, 0x583e50,3, 0x583e60,1, 0x583e80,12, 0x583ec0,2, 0x583ed0,3, 0x583ee0,1, 0x583f00,9, 0x583f80,3, 0x583f90,5, 0x583fa8,5, 0x583fc0,5, 0x583fd8,2, 0x584000,1, 0x584010,6, 0x584030,78, 0x584180,18, 0x588004,6, 0x589000,650, 0x58a000,650, 0x58b000,2, 0x58b040,9, 0x58b080,7, 0x58c000,34, 0x58c090,9, 0x58c0b8,11, 0x590000,11, 0x590040,11, 0x590080,11, 0x5900c0,11, 0x590104,1, 0x59011c,10, 0x590148,2, 0x590154,1, 0x59015c,24, 0x5901c0,3, 0x5901d0,3, 0x5901e0,3, 0x5901f0,33, 0x590280,3, 0x590290,3, 0x5902a0,3, 0x5902b0,3, 0x5902c0,5, 0x5902d8,8, 0x590400,145, 0x590800,4, 0x590880,25, 0x590900,5, 0x590920,1, 0x591000,11, 0x591040,11, 0x591080,11, 0x5910c0,11, 0x591100,11, 0x591140,11, 0x591180,11, 0x5911c0,11, 0x591200,1, 0x591208,19, 0x591260,2, 0x59126c,3, 0x591280,5, 0x591400,3, 0x591410,30, 0x5914a4,1, 0x5914b4,23, 0x591520,6, 0x591540,3, 0x591560,2, 0x59156c,2, 0x591580,2, 0x5915c0,3, 0x5915d0,3, 0x5915e0,1, 0x591600,1, 0x591800,1, 0x591814,12, 0x591848,5, 0x591860,7, 0x591880,5, 0x591898,5, 0x5918b0,5, 0x5918c8,7, 0x5918e8,7, 0x591908,5, 0x591920,11, 0x591950,55, 0x591a40,2, 0x591a4c,2, 0x591a60,2, 0x591a80,6, 0x591ac0,3, 0x591ad0,3, 0x591ae0,1, 0x591b00,1, 0x592000,2, 0x592010,47, 0x5920e0,6, 0x592100,6, 0x592120,2, 0x59212c,3, 0x592140,6, 0x592200,5, 0x592224,1, 0x592234,3, 0x592280,20, 0x592404,1, 0x5924e4,71, 0x592604,1, 0x592670,38, 0x592800,27, 0x592880,4, 0x5928c0,25, 0x592940,6, 0x592960,4, 0x592974,11, 0x5929a4,7, 0x592a00,12, 0x592a40,2, 0x592a50,1, 0x592a58,5, 0x592a70,5, 0x5a0000,19, 0x5a0080,19, 0x5a0100,19, 0x5a0180,19, 0x5a0200,12, 0x5a0280,1, 0x5a02a0,6, 0x5a02c0,6, 0x5a02e0,6, 0x5a0300,6, 0x5a0320,6, 0x5a0340,6, 0x5a0360,6, 0x5a0380,9, 0x5a03c0,13, 0x5a0400,3, 0x5a0410,159, 0x5a0690,16, 0x5a06e0,5, 0x5a0700,5, 0x5a0720,5, 0x5a0740,5, 0x5a0760,5, 0x5a0780,5, 0x5a07a0,5, 0x5a07c0,5, 0x5a07e0,6, 0x5a0800,6, 0x5a0820,6, 0x5a0840,6, 0x5a0860,6, 0x5a0880,6, 0x5a08a0,6, 0x5a08c0,6, 0x5a08e0,6, 0x5a0900,6, 0x5a0920,6, 0x5a0940,6, 0x5a0960,6, 0x5a0980,6, 0x5a09a0,6, 0x5a09c0,6, 0x5a0a00,22, 0x5a0a80,1, 0x5a0a88,3, 0x5a0aa0,5, 0x5a0ac0,1, 0x5a0ad0,3, 0x5a0ae0,1, 0x5a0af0,3, 0x5a0b00,1, 0x5a0b10,3, 0x5a0b20,1, 0x5a0b30,3, 0x5a0b40,1, 0x5a0b48,3, 0x5a0b58,3, 0x5a0b68,3, 0x5a0b78,3, 0x5a0b88,3, 0x5a0ba0,3, 0x5a0bb0,1, 0x5a0bc0,3, 0x5a0bd0,1, 0x5a0be0,3, 0x5a0bf0,1, 0x5a0c00,3, 0x5a0c10,1, 0x5a0c20,3, 0x5a0c30,1, 0x5a0c40,3, 0x5a0c50,1, 0x5a0c80,6, 0x5a0ca0,6, 0x5a0cc0,1, 0x5a0d00,1, 0x5a0d10,3, 0x5a0d20,1, 0x5a0d30,3, 0x5a0d40,1, 0x5a0d60,5, 0x5a0d80,1, 0x5a0d90,3, 0x5a0da0,1, 0x5a0dc0,5, 0x5a0de0,1, 0x5a0df0,3, 0x5a0e00,1, 0x5a0e10,3, 0x5a0e20,5, 0x5a0e40,2, 0x5a0e50,3, 0x5a0e60,5, 0x5a0e80,2, 0x5a0e90,3, 0x5a0ea0,3, 0x5a0eb0,3, 0x5a0ec0,3, 0x5a0ed0,3, 0x5a0ee0,5, 0x5a0f00,3, 0x5a0f20,5, 0x5a0f40,5, 0x5a0f60,3, 0x5a0f70,3, 0x5a0f80,5, 0x5a0fa0,3, 0x5a0fb0,3, 0x5a0fc0,3, 0x5a0fd0,3, 0x5a0fe0,3, 0x5a0ff0,3, 0x5a1000,6, 0x5a1020,3, 0x5a1040,3, 0x5a1050,3, 0x5a1060,1, 0x5a1080,3, 0x5a1090,3, 0x5a10a0,1, 0x5a10c0,3, 0x5a10e0,5, 0x5a1100,11, 0x5a1130,3, 0x5a1140,3, 0x5a1150,3, 0x5a1160,5, 0x5a1180,5, 0x5a11a0,3, 0x5a11b0,3, 0x5a11c0,3, 0x5a11d0,3, 0x5a11e0,2, 0x5a11f0,3, 0x5a1200,7, 0x5a1220,3, 0x5a1230,2, 0x5a1240,3, 0x5a1250,3, 0x5a1260,2, 0x5a1400,15, 0x5a1440,4, 0x5a1460,17, 0x5a14c0,6, 0x5a14e0,4, 0x5a14f4,11, 0x5a1524,54, 0x5a1604,1, 0x5a160c,1, 0x5a1614,1, 0x5a161c,15, 0x5a1660,6, 0x5a1680,4, 0x5a16a0,5, 0x5a16c0,4, 0x5a16e0,5, 0x5a1700,4, 0x5a1720,5, 0x5a1740,4, 0x5a1760,5, 0x5a1780,4, 0x5a17c0,15, 0x5a1800,4, 0x5a1880,19, 0x5a1900,1, 0x5a1980,24, 0x5a1a00,24, 0x5a1a80,24, 0x5a1b00,24, 0x5a1b80,1, 0x5a1b88,2, 0x5a2000,451, 0x5a2740,169, 0x5a3000,260, 0x5a3800,12, 0x5a3a04,1, 0x5a3a0c,8, 0x5a3a44,1, 0x5a3a50,7, 0x5a3a84,1, 0x5a3a94,27, 0x5a3b04,3, 0x5a3b14,3, 0x5a3b24,3, 0x5a3b34,21, 0x5a3ba0,5, 0x5a3bc0,1, 0x5a3c04,1, 0x5a3c14,3, 0x5a3c24,3, 0x5a3c34,3, 0x5a3c44,1, 0x5a3c60,8, 0x5a3c84,1, 0x5a3ca0,8, 0x5a3cc4,1, 0x5a3ce0,11, 0x5a3e04,1, 0x5a3e0c,2, 0x5a3e18,1, 0x5a3e20,3, 0x5a3e30,3, 0x5a3e40,1, 0x5a3e48,3, 0x5a3e58,3, 0x5a3e70,4, 0x5a4000,44, 0x5a4100,19, 0x5a4180,22, 0x5a4200,27, 0x5a4280,27, 0x5a4300,11, 0x5a4380,17, 0x5a4400,27, 0x5a4480,2, 0x5a44a0,6, 0x5a44c0,3, 0x5a44d0,4, 0x5a4500,35, 0x5a4600,34, 0x5a4700,26, 0x5a4780,23, 0x5a4800,15, 0x5a4848,4, 0x5a8000,20, 0x5a8100,49, 0x5a8200,20, 0x5a8300,49, 0x5a8400,20, 0x5a8500,49, 0x5a8600,20, 0x5a8700,49, 0x5a8800,8, 0x5a9000,20, 0x5a9100,49, 0x5a9200,20, 0x5a9300,49, 0x5a9400,20, 0x5a9500,49, 0x5a9600,20, 0x5a9700,49, 0x5a9800,8, 0x5aa000,15, 0x5aa040,3, 0x5aa050,1, 0x5aa058,4, 0x5aa080,10, 0x5aa0b0,3, 0x5aa0c4,7, 0x5aa100,44, 0x5aa200,5, 0x5aa218,5, 0x5aa280,20, 0x5aa300,1, 0x5aa800,52, 0x5aa8e0,5, 0x5aa900,5, 0x5aaa00,52, 0x5aaae0,5, 0x5aab00,5, 0x5aac00,18, 0x5aac50,10, 0x5aad00,36, 0x5aada0,5, 0x5aadc0,5, 0x5ab000,20, 0x5ab080,20, 0x5ab100,20, 0x5ab180,20, 0x5ab200,10, 0x5ab400,10, 0x5ab440,10, 0x5ab480,10, 0x5ab4c0,10, 0x5ab500,1, 0x5ab600,1, 0x5ab608,32, 0x5ab6a0,6, 0x5ab6c0,6, 0x5ab6e0,6, 0x5ab700,6, 0x5ab720,6, 0x5ab740,6, 0x5ab760,6, 0x5ab780,6, 0x5ab800,76, 0x5aba00,76, 0x5abc00,33, 0x5ac000,76, 0x5ac200,76, 0x5ac400,33, 0x5ac800,4, 0x5aca00,72, 0x5acc00,17, 0x5acc48,4, 0x5ace00,27, 0x5ace80,4, 0x5acec0,25, 0x5acf40,6, 0x5acf60,4, 0x5acf74,11, 0x5acfa4,16, 0x5ad000,12, 0x5ad040,2, 0x5ad050,1, 0x5ad058,5, 0x5ad070,3, 0x5c0000,23, 0x5c0080,23, 0x5c0100,23, 0x5c0180,23, 0x5c0200,13, 0x5c0404,1, 0x5c047c,33, 0x5c0504,1, 0x5c0514,3, 0x5c0524,1, 0x5c052c,1, 0x5c0600,96, 0x5c0784,1, 0x5c0790,4, 0x5c1000,76, 0x5c2000,582, 0x5c3000,13, 0x5c3400,27, 0x5c3480,4, 0x5c34c0,25, 0x5c3540,6, 0x5c3560,4, 0x5c3574,3, 0x5c3600,8, 0x5c3624,59, 0x5c3800,4, 0x5c3880,36, 0x5c3980,17, 0x5c3a00,6, 0x5c3a20,165, 0x5c3d00,12, 0x5c3d40,2, 0x5c3d50,3, 0x5c3d60,1, 0x5c3d80,12, 0x5c3dc0,2, 0x5c3dd0,3, 0x5c3de0,1, 0x5c3e00,12, 0x5c3e40,2, 0x5c3e50,3, 0x5c3e60,1, 0x5c3e80,12, 0x5c3ec0,2, 0x5c3ed0,3, 0x5c3ee0,1, 0x5c3f00,9, 0x5c3f80,3, 0x5c3f90,5, 0x5c3fa8,5, 0x5c3fc0,5, 0x5c3fd8,2, 0x5c4000,1, 0x5c4010,6, 0x5c4030,78, 0x5c4180,18, 0x5c8004,6, 0x5c9000,650, 0x5ca000,650, 0x5cb000,2, 0x5cb040,9, 0x5cb080,7, 0x5cc000,34, 0x5cc090,9, 0x5cc0b8,11, 0x5d0000,11, 0x5d0040,11, 0x5d0080,11, 0x5d00c0,11, 0x5d0104,1, 0x5d011c,10, 0x5d0148,2, 0x5d0154,1, 0x5d015c,24, 0x5d01c0,3, 0x5d01d0,3, 0x5d01e0,3, 0x5d01f0,33, 0x5d0280,3, 0x5d0290,3, 0x5d02a0,3, 0x5d02b0,3, 0x5d02c0,5, 0x5d02d8,8, 0x5d0400,145, 0x5d0800,4, 0x5d0880,25, 0x5d0900,5, 0x5d0920,1, 0x5d1000,11, 0x5d1040,11, 0x5d1080,11, 0x5d10c0,11, 0x5d1100,11, 0x5d1140,11, 0x5d1180,11, 0x5d11c0,11, 0x5d1200,1, 0x5d1208,19, 0x5d1260,2, 0x5d126c,3, 0x5d1280,5, 0x5d1400,3, 0x5d1410,30, 0x5d14a4,1, 0x5d14b4,23, 0x5d1520,6, 0x5d1540,3, 0x5d1560,2, 0x5d156c,2, 0x5d1580,2, 0x5d15c0,3, 0x5d15d0,3, 0x5d15e0,1, 0x5d1600,1, 0x5d1800,1, 0x5d1814,12, 0x5d1848,5, 0x5d1860,7, 0x5d1880,5, 0x5d1898,5, 0x5d18b0,5, 0x5d18c8,7, 0x5d18e8,7, 0x5d1908,5, 0x5d1920,11, 0x5d1950,55, 0x5d1a40,2, 0x5d1a4c,2, 0x5d1a60,2, 0x5d1a80,6, 0x5d1ac0,3, 0x5d1ad0,3, 0x5d1ae0,1, 0x5d1b00,1, 0x5d2000,2, 0x5d2010,47, 0x5d20e0,6, 0x5d2100,6, 0x5d2120,2, 0x5d212c,3, 0x5d2140,6, 0x5d2200,5, 0x5d2224,1, 0x5d2234,3, 0x5d2280,20, 0x5d2404,1, 0x5d24e4,71, 0x5d2604,1, 0x5d2670,38, 0x5d2800,27, 0x5d2880,4, 0x5d28c0,25, 0x5d2940,6, 0x5d2960,4, 0x5d2974,11, 0x5d29a4,7, 0x5d2a00,12, 0x5d2a40,2, 0x5d2a50,1, 0x5d2a58,5, 0x5d2a70,5, 0x5e0000,19, 0x5e0080,19, 0x5e0100,19, 0x5e0180,19, 0x5e0200,12, 0x5e0280,1, 0x5e02a0,6, 0x5e02c0,6, 0x5e02e0,6, 0x5e0300,6, 0x5e0320,6, 0x5e0340,6, 0x5e0360,6, 0x5e0380,9, 0x5e03c0,13, 0x5e0400,3, 0x5e0410,159, 0x5e0690,16, 0x5e06e0,5, 0x5e0700,5, 0x5e0720,5, 0x5e0740,5, 0x5e0760,5, 0x5e0780,5, 0x5e07a0,5, 0x5e07c0,5, 0x5e07e0,6, 0x5e0800,6, 0x5e0820,6, 0x5e0840,6, 0x5e0860,6, 0x5e0880,6, 0x5e08a0,6, 0x5e08c0,6, 0x5e08e0,6, 0x5e0900,6, 0x5e0920,6, 0x5e0940,6, 0x5e0960,6, 0x5e0980,6, 0x5e09a0,6, 0x5e09c0,6, 0x5e0a00,22, 0x5e0a80,1, 0x5e0a88,3, 0x5e0aa0,5, 0x5e0ac0,1, 0x5e0ad0,3, 0x5e0ae0,1, 0x5e0af0,3, 0x5e0b00,1, 0x5e0b10,3, 0x5e0b20,1, 0x5e0b30,3, 0x5e0b40,1, 0x5e0b48,3, 0x5e0b58,3, 0x5e0b68,3, 0x5e0b78,3, 0x5e0b88,3, 0x5e0ba0,3, 0x5e0bb0,1, 0x5e0bc0,3, 0x5e0bd0,1, 0x5e0be0,3, 0x5e0bf0,1, 0x5e0c00,3, 0x5e0c10,1, 0x5e0c20,3, 0x5e0c30,1, 0x5e0c40,3, 0x5e0c50,1, 0x5e0c80,6, 0x5e0ca0,6, 0x5e0cc0,1, 0x5e0d00,1, 0x5e0d10,3, 0x5e0d20,1, 0x5e0d30,3, 0x5e0d40,1, 0x5e0d60,5, 0x5e0d80,1, 0x5e0d90,3, 0x5e0da0,1, 0x5e0dc0,5, 0x5e0de0,1, 0x5e0df0,3, 0x5e0e00,1, 0x5e0e10,3, 0x5e0e20,5, 0x5e0e40,2, 0x5e0e50,3, 0x5e0e60,5, 0x5e0e80,2, 0x5e0e90,3, 0x5e0ea0,3, 0x5e0eb0,3, 0x5e0ec0,3, 0x5e0ed0,3, 0x5e0ee0,5, 0x5e0f00,3, 0x5e0f20,5, 0x5e0f40,5, 0x5e0f60,3, 0x5e0f70,3, 0x5e0f80,5, 0x5e0fa0,3, 0x5e0fb0,3, 0x5e0fc0,3, 0x5e0fd0,3, 0x5e0fe0,3, 0x5e0ff0,3, 0x5e1000,6, 0x5e1020,3, 0x5e1040,3, 0x5e1050,3, 0x5e1060,1, 0x5e1080,3, 0x5e1090,3, 0x5e10a0,1, 0x5e10c0,3, 0x5e10e0,5, 0x5e1100,11, 0x5e1130,3, 0x5e1140,3, 0x5e1150,3, 0x5e1160,5, 0x5e1180,5, 0x5e11a0,3, 0x5e11b0,3, 0x5e11c0,3, 0x5e11d0,3, 0x5e11e0,2, 0x5e11f0,3, 0x5e1200,7, 0x5e1220,3, 0x5e1230,2, 0x5e1240,3, 0x5e1250,3, 0x5e1260,2, 0x5e1400,15, 0x5e1440,4, 0x5e1460,17, 0x5e14c0,6, 0x5e14e0,4, 0x5e14f4,11, 0x5e1524,54, 0x5e1604,1, 0x5e160c,1, 0x5e1614,1, 0x5e161c,15, 0x5e1660,6, 0x5e1680,4, 0x5e16a0,5, 0x5e16c0,4, 0x5e16e0,5, 0x5e1700,4, 0x5e1720,5, 0x5e1740,4, 0x5e1760,5, 0x5e1780,4, 0x5e17c0,15, 0x5e1800,4, 0x5e1880,19, 0x5e1900,1, 0x5e1980,24, 0x5e1a00,24, 0x5e1a80,24, 0x5e1b00,24, 0x5e1b80,1, 0x5e1b88,2, 0x5e2000,451, 0x5e2740,169, 0x5e3000,260, 0x5e3800,12, 0x5e3a04,1, 0x5e3a0c,8, 0x5e3a44,1, 0x5e3a50,7, 0x5e3a84,1, 0x5e3a94,27, 0x5e3b04,3, 0x5e3b14,3, 0x5e3b24,3, 0x5e3b34,21, 0x5e3ba0,5, 0x5e3bc0,1, 0x5e3c04,1, 0x5e3c14,3, 0x5e3c24,3, 0x5e3c34,3, 0x5e3c44,1, 0x5e3c60,8, 0x5e3c84,1, 0x5e3ca0,8, 0x5e3cc4,1, 0x5e3ce0,11, 0x5e3e04,1, 0x5e3e0c,2, 0x5e3e18,1, 0x5e3e20,3, 0x5e3e30,3, 0x5e3e40,1, 0x5e3e48,3, 0x5e3e58,3, 0x5e3e70,4, 0x5e4000,44, 0x5e4100,19, 0x5e4180,22, 0x5e4200,27, 0x5e4280,27, 0x5e4300,11, 0x5e4380,17, 0x5e4400,27, 0x5e4480,2, 0x5e44a0,6, 0x5e44c0,3, 0x5e44d0,4, 0x5e4500,35, 0x5e4600,34, 0x5e4700,26, 0x5e4780,23, 0x5e4800,15, 0x5e4848,4, 0x5e8000,20, 0x5e8100,49, 0x5e8200,20, 0x5e8300,49, 0x5e8400,20, 0x5e8500,49, 0x5e8600,20, 0x5e8700,49, 0x5e8800,8, 0x5e9000,20, 0x5e9100,49, 0x5e9200,20, 0x5e9300,49, 0x5e9400,20, 0x5e9500,49, 0x5e9600,20, 0x5e9700,49, 0x5e9800,8, 0x5ea000,15, 0x5ea040,3, 0x5ea050,1, 0x5ea058,4, 0x5ea080,10, 0x5ea0b0,3, 0x5ea0c4,7, 0x5ea100,44, 0x5ea200,5, 0x5ea218,5, 0x5ea280,20, 0x5ea300,1, 0x5ea800,52, 0x5ea8e0,5, 0x5ea900,5, 0x5eaa00,52, 0x5eaae0,5, 0x5eab00,5, 0x5eac00,18, 0x5eac50,10, 0x5ead00,36, 0x5eada0,5, 0x5eadc0,5, 0x5eb000,20, 0x5eb080,20, 0x5eb100,20, 0x5eb180,20, 0x5eb200,10, 0x5eb400,10, 0x5eb440,10, 0x5eb480,10, 0x5eb4c0,10, 0x5eb500,1, 0x5eb600,1, 0x5eb608,32, 0x5eb6a0,6, 0x5eb6c0,6, 0x5eb6e0,6, 0x5eb700,6, 0x5eb720,6, 0x5eb740,6, 0x5eb760,6, 0x5eb780,6, 0x5eb800,76, 0x5eba00,76, 0x5ebc00,33, 0x5ec000,76, 0x5ec200,76, 0x5ec400,33, 0x5ec800,4, 0x5eca00,72, 0x5ecc00,17, 0x5ecc48,4, 0x5ece00,27, 0x5ece80,4, 0x5ecec0,25, 0x5ecf40,6, 0x5ecf60,4, 0x5ecf74,11, 0x5ecfa4,16, 0x5ed000,12, 0x5ed040,2, 0x5ed050,1, 0x5ed058,5, 0x5ed070,3, 0x600000,23, 0x600080,23, 0x600100,23, 0x600180,23, 0x600200,13, 0x600404,1, 0x60047c,33, 0x600504,1, 0x600514,3, 0x600524,1, 0x60052c,1, 0x600600,96, 0x600784,1, 0x600790,4, 0x601000,76, 0x602000,582, 0x603000,13, 0x603400,27, 0x603480,4, 0x6034c0,25, 0x603540,6, 0x603560,4, 0x603574,3, 0x603600,8, 0x603624,59, 0x603800,4, 0x603880,36, 0x603980,17, 0x603a00,6, 0x603a20,165, 0x603d00,12, 0x603d40,2, 0x603d50,3, 0x603d60,1, 0x603d80,12, 0x603dc0,2, 0x603dd0,3, 0x603de0,1, 0x603e00,12, 0x603e40,2, 0x603e50,3, 0x603e60,1, 0x603e80,12, 0x603ec0,2, 0x603ed0,3, 0x603ee0,1, 0x603f00,9, 0x603f80,3, 0x603f90,5, 0x603fa8,5, 0x603fc0,5, 0x603fd8,2, 0x604000,1, 0x604010,6, 0x604030,78, 0x604180,18, 0x608004,6, 0x609000,650, 0x60a000,650, 0x60b000,2, 0x60b040,9, 0x60b080,7, 0x60c000,34, 0x60c090,9, 0x60c0b8,11, 0x610000,11, 0x610040,11, 0x610080,11, 0x6100c0,11, 0x610104,1, 0x61011c,10, 0x610148,2, 0x610154,1, 0x61015c,24, 0x6101c0,3, 0x6101d0,3, 0x6101e0,3, 0x6101f0,33, 0x610280,3, 0x610290,3, 0x6102a0,3, 0x6102b0,3, 0x6102c0,5, 0x6102d8,8, 0x610400,145, 0x610800,4, 0x610880,25, 0x610900,5, 0x610920,1, 0x611000,11, 0x611040,11, 0x611080,11, 0x6110c0,11, 0x611100,11, 0x611140,11, 0x611180,11, 0x6111c0,11, 0x611200,1, 0x611208,19, 0x611260,2, 0x61126c,3, 0x611280,5, 0x611400,3, 0x611410,30, 0x6114a4,1, 0x6114b4,23, 0x611520,6, 0x611540,3, 0x611560,2, 0x61156c,2, 0x611580,2, 0x6115c0,3, 0x6115d0,3, 0x6115e0,1, 0x611600,1, 0x611800,1, 0x611814,12, 0x611848,5, 0x611860,7, 0x611880,5, 0x611898,5, 0x6118b0,5, 0x6118c8,7, 0x6118e8,7, 0x611908,5, 0x611920,11, 0x611950,55, 0x611a40,2, 0x611a4c,2, 0x611a60,2, 0x611a80,6, 0x611ac0,3, 0x611ad0,3, 0x611ae0,1, 0x611b00,1, 0x612000,2, 0x612010,47, 0x6120e0,6, 0x612100,6, 0x612120,2, 0x61212c,3, 0x612140,6, 0x612200,5, 0x612224,1, 0x612234,3, 0x612280,20, 0x612404,1, 0x6124e4,71, 0x612604,1, 0x612670,38, 0x612800,27, 0x612880,4, 0x6128c0,25, 0x612940,6, 0x612960,4, 0x612974,11, 0x6129a4,7, 0x612a00,12, 0x612a40,2, 0x612a50,1, 0x612a58,5, 0x612a70,5, 0x620000,19, 0x620080,19, 0x620100,19, 0x620180,19, 0x620200,12, 0x620280,1, 0x6202a0,6, 0x6202c0,6, 0x6202e0,6, 0x620300,6, 0x620320,6, 0x620340,6, 0x620360,6, 0x620380,9, 0x6203c0,13, 0x620400,3, 0x620410,159, 0x620690,16, 0x6206e0,5, 0x620700,5, 0x620720,5, 0x620740,5, 0x620760,5, 0x620780,5, 0x6207a0,5, 0x6207c0,5, 0x6207e0,6, 0x620800,6, 0x620820,6, 0x620840,6, 0x620860,6, 0x620880,6, 0x6208a0,6, 0x6208c0,6, 0x6208e0,6, 0x620900,6, 0x620920,6, 0x620940,6, 0x620960,6, 0x620980,6, 0x6209a0,6, 0x6209c0,6, 0x620a00,22, 0x620a80,1, 0x620a88,3, 0x620aa0,5, 0x620ac0,1, 0x620ad0,3, 0x620ae0,1, 0x620af0,3, 0x620b00,1, 0x620b10,3, 0x620b20,1, 0x620b30,3, 0x620b40,1, 0x620b48,3, 0x620b58,3, 0x620b68,3, 0x620b78,3, 0x620b88,3, 0x620ba0,3, 0x620bb0,1, 0x620bc0,3, 0x620bd0,1, 0x620be0,3, 0x620bf0,1, 0x620c00,3, 0x620c10,1, 0x620c20,3, 0x620c30,1, 0x620c40,3, 0x620c50,1, 0x620c80,6, 0x620ca0,6, 0x620cc0,1, 0x620d00,1, 0x620d10,3, 0x620d20,1, 0x620d30,3, 0x620d40,1, 0x620d60,5, 0x620d80,1, 0x620d90,3, 0x620da0,1, 0x620dc0,5, 0x620de0,1, 0x620df0,3, 0x620e00,1, 0x620e10,3, 0x620e20,5, 0x620e40,2, 0x620e50,3, 0x620e60,5, 0x620e80,2, 0x620e90,3, 0x620ea0,3, 0x620eb0,3, 0x620ec0,3, 0x620ed0,3, 0x620ee0,5, 0x620f00,3, 0x620f20,5, 0x620f40,5, 0x620f60,3, 0x620f70,3, 0x620f80,5, 0x620fa0,3, 0x620fb0,3, 0x620fc0,3, 0x620fd0,3, 0x620fe0,3, 0x620ff0,3, 0x621000,6, 0x621020,3, 0x621040,3, 0x621050,3, 0x621060,1, 0x621080,3, 0x621090,3, 0x6210a0,1, 0x6210c0,3, 0x6210e0,5, 0x621100,11, 0x621130,3, 0x621140,3, 0x621150,3, 0x621160,5, 0x621180,5, 0x6211a0,3, 0x6211b0,3, 0x6211c0,3, 0x6211d0,3, 0x6211e0,2, 0x6211f0,3, 0x621200,7, 0x621220,3, 0x621230,2, 0x621240,3, 0x621250,3, 0x621260,2, 0x621400,15, 0x621440,4, 0x621460,17, 0x6214c0,6, 0x6214e0,4, 0x6214f4,11, 0x621524,54, 0x621604,1, 0x62160c,1, 0x621614,1, 0x62161c,15, 0x621660,6, 0x621680,4, 0x6216a0,5, 0x6216c0,4, 0x6216e0,5, 0x621700,4, 0x621720,5, 0x621740,4, 0x621760,5, 0x621780,4, 0x6217c0,15, 0x621800,4, 0x621880,19, 0x621900,1, 0x621980,24, 0x621a00,24, 0x621a80,24, 0x621b00,24, 0x621b80,1, 0x621b88,2, 0x622000,451, 0x622740,169, 0x623000,260, 0x623800,12, 0x623a04,1, 0x623a0c,8, 0x623a44,1, 0x623a50,7, 0x623a84,1, 0x623a94,27, 0x623b04,3, 0x623b14,3, 0x623b24,3, 0x623b34,21, 0x623ba0,5, 0x623bc0,1, 0x623c04,1, 0x623c14,3, 0x623c24,3, 0x623c34,3, 0x623c44,1, 0x623c60,8, 0x623c84,1, 0x623ca0,8, 0x623cc4,1, 0x623ce0,11, 0x623e04,1, 0x623e0c,2, 0x623e18,1, 0x623e20,3, 0x623e30,3, 0x623e40,1, 0x623e48,3, 0x623e58,3, 0x623e70,4, 0x624000,44, 0x624100,19, 0x624180,22, 0x624200,27, 0x624280,27, 0x624300,11, 0x624380,17, 0x624400,27, 0x624480,2, 0x6244a0,6, 0x6244c0,3, 0x6244d0,4, 0x624500,35, 0x624600,34, 0x624700,26, 0x624780,23, 0x624800,15, 0x624848,4, 0x628000,20, 0x628100,49, 0x628200,20, 0x628300,49, 0x628400,20, 0x628500,49, 0x628600,20, 0x628700,49, 0x628800,8, 0x629000,20, 0x629100,49, 0x629200,20, 0x629300,49, 0x629400,20, 0x629500,49, 0x629600,20, 0x629700,49, 0x629800,8, 0x62a000,15, 0x62a040,3, 0x62a050,1, 0x62a058,4, 0x62a080,10, 0x62a0b0,3, 0x62a0c4,7, 0x62a100,44, 0x62a200,5, 0x62a218,5, 0x62a280,20, 0x62a300,1, 0x62a800,52, 0x62a8e0,5, 0x62a900,5, 0x62aa00,52, 0x62aae0,5, 0x62ab00,5, 0x62ac00,18, 0x62ac50,10, 0x62ad00,36, 0x62ada0,5, 0x62adc0,5, 0x62b000,20, 0x62b080,20, 0x62b100,20, 0x62b180,20, 0x62b200,10, 0x62b400,10, 0x62b440,10, 0x62b480,10, 0x62b4c0,10, 0x62b500,1, 0x62b600,1, 0x62b608,32, 0x62b6a0,6, 0x62b6c0,6, 0x62b6e0,6, 0x62b700,6, 0x62b720,6, 0x62b740,6, 0x62b760,6, 0x62b780,6, 0x62b800,76, 0x62ba00,76, 0x62bc00,33, 0x62c000,76, 0x62c200,76, 0x62c400,33, 0x62c800,4, 0x62ca00,72, 0x62cc00,17, 0x62cc48,4, 0x62ce00,27, 0x62ce80,4, 0x62cec0,25, 0x62cf40,6, 0x62cf60,4, 0x62cf74,11, 0x62cfa4,16, 0x62d000,12, 0x62d040,2, 0x62d050,1, 0x62d058,5, 0x62d070,3, 0x640000,23, 0x640080,23, 0x640100,23, 0x640180,23, 0x640200,13, 0x640404,1, 0x64047c,33, 0x640504,1, 0x640514,3, 0x640524,1, 0x64052c,1, 0x640600,96, 0x640784,1, 0x640790,4, 0x641000,76, 0x642000,582, 0x643000,13, 0x643400,27, 0x643480,4, 0x6434c0,25, 0x643540,6, 0x643560,4, 0x643574,3, 0x643600,8, 0x643624,59, 0x643800,4, 0x643880,36, 0x643980,17, 0x643a00,6, 0x643a20,165, 0x643d00,12, 0x643d40,2, 0x643d50,3, 0x643d60,1, 0x643d80,12, 0x643dc0,2, 0x643dd0,3, 0x643de0,1, 0x643e00,12, 0x643e40,2, 0x643e50,3, 0x643e60,1, 0x643e80,12, 0x643ec0,2, 0x643ed0,3, 0x643ee0,1, 0x643f00,9, 0x643f80,3, 0x643f90,5, 0x643fa8,5, 0x643fc0,5, 0x643fd8,2, 0x644000,1, 0x644010,6, 0x644030,78, 0x644180,18, 0x648004,6, 0x649000,650, 0x64a000,650, 0x64b000,2, 0x64b040,9, 0x64b080,7, 0x64c000,34, 0x64c090,9, 0x64c0b8,11, 0x650000,11, 0x650040,11, 0x650080,11, 0x6500c0,11, 0x650104,1, 0x65011c,10, 0x650148,2, 0x650154,1, 0x65015c,24, 0x6501c0,3, 0x6501d0,3, 0x6501e0,3, 0x6501f0,33, 0x650280,3, 0x650290,3, 0x6502a0,3, 0x6502b0,3, 0x6502c0,5, 0x6502d8,8, 0x650400,145, 0x650800,4, 0x650880,25, 0x650900,5, 0x650920,1, 0x651000,11, 0x651040,11, 0x651080,11, 0x6510c0,11, 0x651100,11, 0x651140,11, 0x651180,11, 0x6511c0,11, 0x651200,1, 0x651208,19, 0x651260,2, 0x65126c,3, 0x651280,5, 0x651400,3, 0x651410,30, 0x6514a4,1, 0x6514b4,23, 0x651520,6, 0x651540,3, 0x651560,2, 0x65156c,2, 0x651580,2, 0x6515c0,3, 0x6515d0,3, 0x6515e0,1, 0x651600,1, 0x651800,1, 0x651814,12, 0x651848,5, 0x651860,7, 0x651880,5, 0x651898,5, 0x6518b0,5, 0x6518c8,7, 0x6518e8,7, 0x651908,5, 0x651920,11, 0x651950,55, 0x651a40,2, 0x651a4c,2, 0x651a60,2, 0x651a80,6, 0x651ac0,3, 0x651ad0,3, 0x651ae0,1, 0x651b00,1, 0x652000,2, 0x652010,47, 0x6520e0,6, 0x652100,6, 0x652120,2, 0x65212c,3, 0x652140,6, 0x652200,5, 0x652224,1, 0x652234,3, 0x652280,20, 0x652404,1, 0x6524e4,71, 0x652604,1, 0x652670,38, 0x652800,27, 0x652880,4, 0x6528c0,25, 0x652940,6, 0x652960,4, 0x652974,11, 0x6529a4,7, 0x652a00,12, 0x652a40,2, 0x652a50,1, 0x652a58,5, 0x652a70,5, 0x660000,19, 0x660080,19, 0x660100,19, 0x660180,19, 0x660200,12, 0x660280,1, 0x6602a0,6, 0x6602c0,6, 0x6602e0,6, 0x660300,6, 0x660320,6, 0x660340,6, 0x660360,6, 0x660380,9, 0x6603c0,13, 0x660400,3, 0x660410,159, 0x660690,16, 0x6606e0,5, 0x660700,5, 0x660720,5, 0x660740,5, 0x660760,5, 0x660780,5, 0x6607a0,5, 0x6607c0,5, 0x6607e0,6, 0x660800,6, 0x660820,6, 0x660840,6, 0x660860,6, 0x660880,6, 0x6608a0,6, 0x6608c0,6, 0x6608e0,6, 0x660900,6, 0x660920,6, 0x660940,6, 0x660960,6, 0x660980,6, 0x6609a0,6, 0x6609c0,6, 0x660a00,22, 0x660a80,1, 0x660a88,3, 0x660aa0,5, 0x660ac0,1, 0x660ad0,3, 0x660ae0,1, 0x660af0,3, 0x660b00,1, 0x660b10,3, 0x660b20,1, 0x660b30,3, 0x660b40,1, 0x660b48,3, 0x660b58,3, 0x660b68,3, 0x660b78,3, 0x660b88,3, 0x660ba0,3, 0x660bb0,1, 0x660bc0,3, 0x660bd0,1, 0x660be0,3, 0x660bf0,1, 0x660c00,3, 0x660c10,1, 0x660c20,3, 0x660c30,1, 0x660c40,3, 0x660c50,1, 0x660c80,6, 0x660ca0,6, 0x660cc0,1, 0x660d00,1, 0x660d10,3, 0x660d20,1, 0x660d30,3, 0x660d40,1, 0x660d60,5, 0x660d80,1, 0x660d90,3, 0x660da0,1, 0x660dc0,5, 0x660de0,1, 0x660df0,3, 0x660e00,1, 0x660e10,3, 0x660e20,5, 0x660e40,2, 0x660e50,3, 0x660e60,5, 0x660e80,2, 0x660e90,3, 0x660ea0,3, 0x660eb0,3, 0x660ec0,3, 0x660ed0,3, 0x660ee0,5, 0x660f00,3, 0x660f20,5, 0x660f40,5, 0x660f60,3, 0x660f70,3, 0x660f80,5, 0x660fa0,3, 0x660fb0,3, 0x660fc0,3, 0x660fd0,3, 0x660fe0,3, 0x660ff0,3, 0x661000,6, 0x661020,3, 0x661040,3, 0x661050,3, 0x661060,1, 0x661080,3, 0x661090,3, 0x6610a0,1, 0x6610c0,3, 0x6610e0,5, 0x661100,11, 0x661130,3, 0x661140,3, 0x661150,3, 0x661160,5, 0x661180,5, 0x6611a0,3, 0x6611b0,3, 0x6611c0,3, 0x6611d0,3, 0x6611e0,2, 0x6611f0,3, 0x661200,7, 0x661220,3, 0x661230,2, 0x661240,3, 0x661250,3, 0x661260,2, 0x661400,15, 0x661440,4, 0x661460,17, 0x6614c0,6, 0x6614e0,4, 0x6614f4,11, 0x661524,54, 0x661604,1, 0x66160c,1, 0x661614,1, 0x66161c,15, 0x661660,6, 0x661680,4, 0x6616a0,5, 0x6616c0,4, 0x6616e0,5, 0x661700,4, 0x661720,5, 0x661740,4, 0x661760,5, 0x661780,4, 0x6617c0,15, 0x661800,4, 0x661880,19, 0x661900,1, 0x661980,24, 0x661a00,24, 0x661a80,24, 0x661b00,24, 0x661b80,1, 0x661b88,2, 0x662000,451, 0x662740,169, 0x663000,260, 0x663800,12, 0x663a04,1, 0x663a0c,8, 0x663a44,1, 0x663a50,7, 0x663a84,1, 0x663a94,27, 0x663b04,3, 0x663b14,3, 0x663b24,3, 0x663b34,21, 0x663ba0,5, 0x663bc0,1, 0x663c04,1, 0x663c14,3, 0x663c24,3, 0x663c34,3, 0x663c44,1, 0x663c60,8, 0x663c84,1, 0x663ca0,8, 0x663cc4,1, 0x663ce0,11, 0x663e04,1, 0x663e0c,2, 0x663e18,1, 0x663e20,3, 0x663e30,3, 0x663e40,1, 0x663e48,3, 0x663e58,3, 0x663e70,4, 0x664000,44, 0x664100,19, 0x664180,22, 0x664200,27, 0x664280,27, 0x664300,11, 0x664380,17, 0x664400,27, 0x664480,2, 0x6644a0,6, 0x6644c0,3, 0x6644d0,4, 0x664500,35, 0x664600,34, 0x664700,26, 0x664780,23, 0x664800,15, 0x664848,4, 0x668000,20, 0x668100,49, 0x668200,20, 0x668300,49, 0x668400,20, 0x668500,49, 0x668600,20, 0x668700,49, 0x668800,8, 0x669000,20, 0x669100,49, 0x669200,20, 0x669300,49, 0x669400,20, 0x669500,49, 0x669600,20, 0x669700,49, 0x669800,8, 0x66a000,15, 0x66a040,3, 0x66a050,1, 0x66a058,4, 0x66a080,10, 0x66a0b0,3, 0x66a0c4,7, 0x66a100,44, 0x66a200,5, 0x66a218,5, 0x66a280,20, 0x66a300,1, 0x66a800,52, 0x66a8e0,5, 0x66a900,5, 0x66aa00,52, 0x66aae0,5, 0x66ab00,5, 0x66ac00,18, 0x66ac50,10, 0x66ad00,36, 0x66ada0,5, 0x66adc0,5, 0x66b000,20, 0x66b080,20, 0x66b100,20, 0x66b180,20, 0x66b200,10, 0x66b400,10, 0x66b440,10, 0x66b480,10, 0x66b4c0,10, 0x66b500,1, 0x66b600,1, 0x66b608,32, 0x66b6a0,6, 0x66b6c0,6, 0x66b6e0,6, 0x66b700,6, 0x66b720,6, 0x66b740,6, 0x66b760,6, 0x66b780,6, 0x66b800,76, 0x66ba00,76, 0x66bc00,33, 0x66c000,76, 0x66c200,76, 0x66c400,33, 0x66c800,4, 0x66ca00,72, 0x66cc00,17, 0x66cc48,4, 0x66ce00,27, 0x66ce80,4, 0x66cec0,25, 0x66cf40,6, 0x66cf60,4, 0x66cf74,11, 0x66cfa4,16, 0x66d000,12, 0x66d040,2, 0x66d050,1, 0x66d058,5, 0x66d070,3, 0x680000,23, 0x680080,23, 0x680100,23, 0x680180,23, 0x680200,13, 0x680404,1, 0x68047c,33, 0x680504,1, 0x680514,3, 0x680524,1, 0x68052c,1, 0x680600,96, 0x680784,1, 0x680790,4, 0x681000,76, 0x682000,582, 0x683000,13, 0x683400,27, 0x683480,4, 0x6834c0,25, 0x683540,6, 0x683560,4, 0x683574,3, 0x683600,8, 0x683624,59, 0x683800,4, 0x683880,36, 0x683980,17, 0x683a00,6, 0x683a20,165, 0x683d00,12, 0x683d40,2, 0x683d50,3, 0x683d60,1, 0x683d80,12, 0x683dc0,2, 0x683dd0,3, 0x683de0,1, 0x683e00,12, 0x683e40,2, 0x683e50,3, 0x683e60,1, 0x683e80,12, 0x683ec0,2, 0x683ed0,3, 0x683ee0,1, 0x683f00,9, 0x683f80,3, 0x683f90,5, 0x683fa8,5, 0x683fc0,5, 0x683fd8,2, 0x684000,1, 0x684010,6, 0x684030,78, 0x684180,18, 0x688004,6, 0x689000,650, 0x68a000,650, 0x68b000,2, 0x68b040,9, 0x68b080,7, 0x68c000,34, 0x68c090,9, 0x68c0b8,11, 0x690000,11, 0x690040,11, 0x690080,11, 0x6900c0,11, 0x690104,1, 0x69011c,10, 0x690148,2, 0x690154,1, 0x69015c,24, 0x6901c0,3, 0x6901d0,3, 0x6901e0,3, 0x6901f0,33, 0x690280,3, 0x690290,3, 0x6902a0,3, 0x6902b0,3, 0x6902c0,5, 0x6902d8,8, 0x690400,145, 0x690800,4, 0x690880,25, 0x690900,5, 0x690920,1, 0x691000,11, 0x691040,11, 0x691080,11, 0x6910c0,11, 0x691100,11, 0x691140,11, 0x691180,11, 0x6911c0,11, 0x691200,1, 0x691208,19, 0x691260,2, 0x69126c,3, 0x691280,5, 0x691400,3, 0x691410,30, 0x6914a4,1, 0x6914b4,23, 0x691520,6, 0x691540,3, 0x691560,2, 0x69156c,2, 0x691580,2, 0x6915c0,3, 0x6915d0,3, 0x6915e0,1, 0x691600,1, 0x691800,1, 0x691814,12, 0x691848,5, 0x691860,7, 0x691880,5, 0x691898,5, 0x6918b0,5, 0x6918c8,7, 0x6918e8,7, 0x691908,5, 0x691920,11, 0x691950,55, 0x691a40,2, 0x691a4c,2, 0x691a60,2, 0x691a80,6, 0x691ac0,3, 0x691ad0,3, 0x691ae0,1, 0x691b00,1, 0x692000,2, 0x692010,47, 0x6920e0,6, 0x692100,6, 0x692120,2, 0x69212c,3, 0x692140,6, 0x692200,5, 0x692224,1, 0x692234,3, 0x692280,20, 0x692404,1, 0x6924e4,71, 0x692604,1, 0x692670,38, 0x692800,27, 0x692880,4, 0x6928c0,25, 0x692940,6, 0x692960,4, 0x692974,11, 0x6929a4,7, 0x692a00,12, 0x692a40,2, 0x692a50,1, 0x692a58,5, 0x692a70,5, 0x6a0000,19, 0x6a0080,19, 0x6a0100,19, 0x6a0180,19, 0x6a0200,12, 0x6a0280,1, 0x6a02a0,6, 0x6a02c0,6, 0x6a02e0,6, 0x6a0300,6, 0x6a0320,6, 0x6a0340,6, 0x6a0360,6, 0x6a0380,9, 0x6a03c0,13, 0x6a0400,3, 0x6a0410,159, 0x6a0690,16, 0x6a06e0,5, 0x6a0700,5, 0x6a0720,5, 0x6a0740,5, 0x6a0760,5, 0x6a0780,5, 0x6a07a0,5, 0x6a07c0,5, 0x6a07e0,6, 0x6a0800,6, 0x6a0820,6, 0x6a0840,6, 0x6a0860,6, 0x6a0880,6, 0x6a08a0,6, 0x6a08c0,6, 0x6a08e0,6, 0x6a0900,6, 0x6a0920,6, 0x6a0940,6, 0x6a0960,6, 0x6a0980,6, 0x6a09a0,6, 0x6a09c0,6, 0x6a0a00,22, 0x6a0a80,1, 0x6a0a88,3, 0x6a0aa0,5, 0x6a0ac0,1, 0x6a0ad0,3, 0x6a0ae0,1, 0x6a0af0,3, 0x6a0b00,1, 0x6a0b10,3, 0x6a0b20,1, 0x6a0b30,3, 0x6a0b40,1, 0x6a0b48,3, 0x6a0b58,3, 0x6a0b68,3, 0x6a0b78,3, 0x6a0b88,3, 0x6a0ba0,3, 0x6a0bb0,1, 0x6a0bc0,3, 0x6a0bd0,1, 0x6a0be0,3, 0x6a0bf0,1, 0x6a0c00,3, 0x6a0c10,1, 0x6a0c20,3, 0x6a0c30,1, 0x6a0c40,3, 0x6a0c50,1, 0x6a0c80,6, 0x6a0ca0,6, 0x6a0cc0,1, 0x6a0d00,1, 0x6a0d10,3, 0x6a0d20,1, 0x6a0d30,3, 0x6a0d40,1, 0x6a0d60,5, 0x6a0d80,1, 0x6a0d90,3, 0x6a0da0,1, 0x6a0dc0,5, 0x6a0de0,1, 0x6a0df0,3, 0x6a0e00,1, 0x6a0e10,3, 0x6a0e20,5, 0x6a0e40,2, 0x6a0e50,3, 0x6a0e60,5, 0x6a0e80,2, 0x6a0e90,3, 0x6a0ea0,3, 0x6a0eb0,3, 0x6a0ec0,3, 0x6a0ed0,3, 0x6a0ee0,5, 0x6a0f00,3, 0x6a0f20,5, 0x6a0f40,5, 0x6a0f60,3, 0x6a0f70,3, 0x6a0f80,5, 0x6a0fa0,3, 0x6a0fb0,3, 0x6a0fc0,3, 0x6a0fd0,3, 0x6a0fe0,3, 0x6a0ff0,3, 0x6a1000,6, 0x6a1020,3, 0x6a1040,3, 0x6a1050,3, 0x6a1060,1, 0x6a1080,3, 0x6a1090,3, 0x6a10a0,1, 0x6a10c0,3, 0x6a10e0,5, 0x6a1100,11, 0x6a1130,3, 0x6a1140,3, 0x6a1150,3, 0x6a1160,5, 0x6a1180,5, 0x6a11a0,3, 0x6a11b0,3, 0x6a11c0,3, 0x6a11d0,3, 0x6a11e0,2, 0x6a11f0,3, 0x6a1200,7, 0x6a1220,3, 0x6a1230,2, 0x6a1240,3, 0x6a1250,3, 0x6a1260,2, 0x6a1400,15, 0x6a1440,4, 0x6a1460,17, 0x6a14c0,6, 0x6a14e0,4, 0x6a14f4,11, 0x6a1524,54, 0x6a1604,1, 0x6a160c,1, 0x6a1614,1, 0x6a161c,15, 0x6a1660,6, 0x6a1680,4, 0x6a16a0,5, 0x6a16c0,4, 0x6a16e0,5, 0x6a1700,4, 0x6a1720,5, 0x6a1740,4, 0x6a1760,5, 0x6a1780,4, 0x6a17c0,15, 0x6a1800,4, 0x6a1880,19, 0x6a1900,1, 0x6a1980,24, 0x6a1a00,24, 0x6a1a80,24, 0x6a1b00,24, 0x6a1b80,1, 0x6a1b88,2, 0x6a2000,451, 0x6a2740,169, 0x6a3000,260, 0x6a3800,12, 0x6a3a04,1, 0x6a3a0c,8, 0x6a3a44,1, 0x6a3a50,7, 0x6a3a84,1, 0x6a3a94,27, 0x6a3b04,3, 0x6a3b14,3, 0x6a3b24,3, 0x6a3b34,21, 0x6a3ba0,5, 0x6a3bc0,1, 0x6a3c04,1, 0x6a3c14,3, 0x6a3c24,3, 0x6a3c34,3, 0x6a3c44,1, 0x6a3c60,8, 0x6a3c84,1, 0x6a3ca0,8, 0x6a3cc4,1, 0x6a3ce0,11, 0x6a3e04,1, 0x6a3e0c,2, 0x6a3e18,1, 0x6a3e20,3, 0x6a3e30,3, 0x6a3e40,1, 0x6a3e48,3, 0x6a3e58,3, 0x6a3e70,4, 0x6a4000,44, 0x6a4100,19, 0x6a4180,22, 0x6a4200,27, 0x6a4280,27, 0x6a4300,11, 0x6a4380,17, 0x6a4400,27, 0x6a4480,2, 0x6a44a0,6, 0x6a44c0,3, 0x6a44d0,4, 0x6a4500,35, 0x6a4600,34, 0x6a4700,26, 0x6a4780,23, 0x6a4800,15, 0x6a4848,4, 0x6a8000,20, 0x6a8100,49, 0x6a8200,20, 0x6a8300,49, 0x6a8400,20, 0x6a8500,49, 0x6a8600,20, 0x6a8700,49, 0x6a8800,8, 0x6a9000,20, 0x6a9100,49, 0x6a9200,20, 0x6a9300,49, 0x6a9400,20, 0x6a9500,49, 0x6a9600,20, 0x6a9700,49, 0x6a9800,8, 0x6aa000,15, 0x6aa040,3, 0x6aa050,1, 0x6aa058,4, 0x6aa080,10, 0x6aa0b0,3, 0x6aa0c4,7, 0x6aa100,44, 0x6aa200,5, 0x6aa218,5, 0x6aa280,20, 0x6aa300,1, 0x6aa800,52, 0x6aa8e0,5, 0x6aa900,5, 0x6aaa00,52, 0x6aaae0,5, 0x6aab00,5, 0x6aac00,18, 0x6aac50,10, 0x6aad00,36, 0x6aada0,5, 0x6aadc0,5, 0x6ab000,20, 0x6ab080,20, 0x6ab100,20, 0x6ab180,20, 0x6ab200,10, 0x6ab400,10, 0x6ab440,10, 0x6ab480,10, 0x6ab4c0,10, 0x6ab500,1, 0x6ab600,1, 0x6ab608,32, 0x6ab6a0,6, 0x6ab6c0,6, 0x6ab6e0,6, 0x6ab700,6, 0x6ab720,6, 0x6ab740,6, 0x6ab760,6, 0x6ab780,6, 0x6ab800,76, 0x6aba00,76, 0x6abc00,33, 0x6ac000,76, 0x6ac200,76, 0x6ac400,33, 0x6ac800,4, 0x6aca00,72, 0x6acc00,17, 0x6acc48,4, 0x6ace00,27, 0x6ace80,4, 0x6acec0,25, 0x6acf40,6, 0x6acf60,4, 0x6acf74,11, 0x6acfa4,16, 0x6ad000,12, 0x6ad040,2, 0x6ad050,1, 0x6ad058,5, 0x6ad070,3, 0x6c0000,23, 0x6c0080,23, 0x6c0100,23, 0x6c0180,23, 0x6c0200,13, 0x6c0404,1, 0x6c047c,33, 0x6c0504,1, 0x6c0514,3, 0x6c0524,1, 0x6c052c,1, 0x6c0600,96, 0x6c0784,1, 0x6c0790,4, 0x6c1000,76, 0x6c2000,582, 0x6c3000,13, 0x6c3400,27, 0x6c3480,4, 0x6c34c0,25, 0x6c3540,6, 0x6c3560,4, 0x6c3574,3, 0x6c3600,8, 0x6c3624,59, 0x6c3800,4, 0x6c3880,36, 0x6c3980,17, 0x6c3a00,6, 0x6c3a20,165, 0x6c3d00,12, 0x6c3d40,2, 0x6c3d50,3, 0x6c3d60,1, 0x6c3d80,12, 0x6c3dc0,2, 0x6c3dd0,3, 0x6c3de0,1, 0x6c3e00,12, 0x6c3e40,2, 0x6c3e50,3, 0x6c3e60,1, 0x6c3e80,12, 0x6c3ec0,2, 0x6c3ed0,3, 0x6c3ee0,1, 0x6c3f00,9, 0x6c3f80,3, 0x6c3f90,5, 0x6c3fa8,5, 0x6c3fc0,5, 0x6c3fd8,2, 0x6c4000,1, 0x6c4010,6, 0x6c4030,78, 0x6c4180,18, 0x6c8004,6, 0x6c9000,650, 0x6ca000,650, 0x6cb000,2, 0x6cb040,9, 0x6cb080,7, 0x6cc000,34, 0x6cc090,9, 0x6cc0b8,11, 0x6d0000,11, 0x6d0040,11, 0x6d0080,11, 0x6d00c0,11, 0x6d0104,1, 0x6d011c,10, 0x6d0148,2, 0x6d0154,1, 0x6d015c,24, 0x6d01c0,3, 0x6d01d0,3, 0x6d01e0,3, 0x6d01f0,33, 0x6d0280,3, 0x6d0290,3, 0x6d02a0,3, 0x6d02b0,3, 0x6d02c0,5, 0x6d02d8,8, 0x6d0400,145, 0x6d0800,4, 0x6d0880,25, 0x6d0900,5, 0x6d0920,1, 0x6d1000,11, 0x6d1040,11, 0x6d1080,11, 0x6d10c0,11, 0x6d1100,11, 0x6d1140,11, 0x6d1180,11, 0x6d11c0,11, 0x6d1200,1, 0x6d1208,19, 0x6d1260,2, 0x6d126c,3, 0x6d1280,5, 0x6d1400,3, 0x6d1410,30, 0x6d14a4,1, 0x6d14b4,23, 0x6d1520,6, 0x6d1540,3, 0x6d1560,2, 0x6d156c,2, 0x6d1580,2, 0x6d15c0,3, 0x6d15d0,3, 0x6d15e0,1, 0x6d1600,1, 0x6d1800,1, 0x6d1814,12, 0x6d1848,5, 0x6d1860,7, 0x6d1880,5, 0x6d1898,5, 0x6d18b0,5, 0x6d18c8,7, 0x6d18e8,7, 0x6d1908,5, 0x6d1920,11, 0x6d1950,55, 0x6d1a40,2, 0x6d1a4c,2, 0x6d1a60,2, 0x6d1a80,6, 0x6d1ac0,3, 0x6d1ad0,3, 0x6d1ae0,1, 0x6d1b00,1, 0x6d2000,2, 0x6d2010,47, 0x6d20e0,6, 0x6d2100,6, 0x6d2120,2, 0x6d212c,3, 0x6d2140,6, 0x6d2200,5, 0x6d2224,1, 0x6d2234,3, 0x6d2280,20, 0x6d2404,1, 0x6d24e4,71, 0x6d2604,1, 0x6d2670,38, 0x6d2800,27, 0x6d2880,4, 0x6d28c0,25, 0x6d2940,6, 0x6d2960,4, 0x6d2974,11, 0x6d29a4,7, 0x6d2a00,12, 0x6d2a40,2, 0x6d2a50,1, 0x6d2a58,5, 0x6d2a70,5, 0x6e0000,19, 0x6e0080,19, 0x6e0100,19, 0x6e0180,19, 0x6e0200,12, 0x6e0280,1, 0x6e02a0,6, 0x6e02c0,6, 0x6e02e0,6, 0x6e0300,6, 0x6e0320,6, 0x6e0340,6, 0x6e0360,6, 0x6e0380,9, 0x6e03c0,13, 0x6e0400,3, 0x6e0410,159, 0x6e0690,16, 0x6e06e0,5, 0x6e0700,5, 0x6e0720,5, 0x6e0740,5, 0x6e0760,5, 0x6e0780,5, 0x6e07a0,5, 0x6e07c0,5, 0x6e07e0,6, 0x6e0800,6, 0x6e0820,6, 0x6e0840,6, 0x6e0860,6, 0x6e0880,6, 0x6e08a0,6, 0x6e08c0,6, 0x6e08e0,6, 0x6e0900,6, 0x6e0920,6, 0x6e0940,6, 0x6e0960,6, 0x6e0980,6, 0x6e09a0,6, 0x6e09c0,6, 0x6e0a00,22, 0x6e0a80,1, 0x6e0a88,3, 0x6e0aa0,5, 0x6e0ac0,1, 0x6e0ad0,3, 0x6e0ae0,1, 0x6e0af0,3, 0x6e0b00,1, 0x6e0b10,3, 0x6e0b20,1, 0x6e0b30,3, 0x6e0b40,1, 0x6e0b48,3, 0x6e0b58,3, 0x6e0b68,3, 0x6e0b78,3, 0x6e0b88,3, 0x6e0ba0,3, 0x6e0bb0,1, 0x6e0bc0,3, 0x6e0bd0,1, 0x6e0be0,3, 0x6e0bf0,1, 0x6e0c00,3, 0x6e0c10,1, 0x6e0c20,3, 0x6e0c30,1, 0x6e0c40,3, 0x6e0c50,1, 0x6e0c80,6, 0x6e0ca0,6, 0x6e0cc0,1, 0x6e0d00,1, 0x6e0d10,3, 0x6e0d20,1, 0x6e0d30,3, 0x6e0d40,1, 0x6e0d60,5, 0x6e0d80,1, 0x6e0d90,3, 0x6e0da0,1, 0x6e0dc0,5, 0x6e0de0,1, 0x6e0df0,3, 0x6e0e00,1, 0x6e0e10,3, 0x6e0e20,5, 0x6e0e40,2, 0x6e0e50,3, 0x6e0e60,5, 0x6e0e80,2, 0x6e0e90,3, 0x6e0ea0,3, 0x6e0eb0,3, 0x6e0ec0,3, 0x6e0ed0,3, 0x6e0ee0,5, 0x6e0f00,3, 0x6e0f20,5, 0x6e0f40,5, 0x6e0f60,3, 0x6e0f70,3, 0x6e0f80,5, 0x6e0fa0,3, 0x6e0fb0,3, 0x6e0fc0,3, 0x6e0fd0,3, 0x6e0fe0,3, 0x6e0ff0,3, 0x6e1000,6, 0x6e1020,3, 0x6e1040,3, 0x6e1050,3, 0x6e1060,1, 0x6e1080,3, 0x6e1090,3, 0x6e10a0,1, 0x6e10c0,3, 0x6e10e0,5, 0x6e1100,11, 0x6e1130,3, 0x6e1140,3, 0x6e1150,3, 0x6e1160,5, 0x6e1180,5, 0x6e11a0,3, 0x6e11b0,3, 0x6e11c0,3, 0x6e11d0,3, 0x6e11e0,2, 0x6e11f0,3, 0x6e1200,7, 0x6e1220,3, 0x6e1230,2, 0x6e1240,3, 0x6e1250,3, 0x6e1260,2, 0x6e1400,15, 0x6e1440,4, 0x6e1460,17, 0x6e14c0,6, 0x6e14e0,4, 0x6e14f4,11, 0x6e1524,54, 0x6e1604,1, 0x6e160c,1, 0x6e1614,1, 0x6e161c,15, 0x6e1660,6, 0x6e1680,4, 0x6e16a0,5, 0x6e16c0,4, 0x6e16e0,5, 0x6e1700,4, 0x6e1720,5, 0x6e1740,4, 0x6e1760,5, 0x6e1780,4, 0x6e17c0,15, 0x6e1800,4, 0x6e1880,19, 0x6e1900,1, 0x6e1980,24, 0x6e1a00,24, 0x6e1a80,24, 0x6e1b00,24, 0x6e1b80,1, 0x6e1b88,2, 0x6e2000,451, 0x6e2740,169, 0x6e3000,260, 0x6e3800,12, 0x6e3a04,1, 0x6e3a0c,8, 0x6e3a44,1, 0x6e3a50,7, 0x6e3a84,1, 0x6e3a94,27, 0x6e3b04,3, 0x6e3b14,3, 0x6e3b24,3, 0x6e3b34,21, 0x6e3ba0,5, 0x6e3bc0,1, 0x6e3c04,1, 0x6e3c14,3, 0x6e3c24,3, 0x6e3c34,3, 0x6e3c44,1, 0x6e3c60,8, 0x6e3c84,1, 0x6e3ca0,8, 0x6e3cc4,1, 0x6e3ce0,11, 0x6e3e04,1, 0x6e3e0c,2, 0x6e3e18,1, 0x6e3e20,3, 0x6e3e30,3, 0x6e3e40,1, 0x6e3e48,3, 0x6e3e58,3, 0x6e3e70,4, 0x6e4000,44, 0x6e4100,19, 0x6e4180,22, 0x6e4200,27, 0x6e4280,27, 0x6e4300,11, 0x6e4380,17, 0x6e4400,27, 0x6e4480,2, 0x6e44a0,6, 0x6e44c0,3, 0x6e44d0,4, 0x6e4500,35, 0x6e4600,34, 0x6e4700,26, 0x6e4780,23, 0x6e4800,15, 0x6e4848,4, 0x6e8000,20, 0x6e8100,49, 0x6e8200,20, 0x6e8300,49, 0x6e8400,20, 0x6e8500,49, 0x6e8600,20, 0x6e8700,49, 0x6e8800,8, 0x6e9000,20, 0x6e9100,49, 0x6e9200,20, 0x6e9300,49, 0x6e9400,20, 0x6e9500,49, 0x6e9600,20, 0x6e9700,49, 0x6e9800,8, 0x6ea000,15, 0x6ea040,3, 0x6ea050,1, 0x6ea058,4, 0x6ea080,10, 0x6ea0b0,3, 0x6ea0c4,7, 0x6ea100,44, 0x6ea200,5, 0x6ea218,5, 0x6ea280,20, 0x6ea300,1, 0x6ea800,52, 0x6ea8e0,5, 0x6ea900,5, 0x6eaa00,52, 0x6eaae0,5, 0x6eab00,5, 0x6eac00,18, 0x6eac50,10, 0x6ead00,36, 0x6eada0,5, 0x6eadc0,5, 0x6eb000,20, 0x6eb080,20, 0x6eb100,20, 0x6eb180,20, 0x6eb200,10, 0x6eb400,10, 0x6eb440,10, 0x6eb480,10, 0x6eb4c0,10, 0x6eb500,1, 0x6eb600,1, 0x6eb608,32, 0x6eb6a0,6, 0x6eb6c0,6, 0x6eb6e0,6, 0x6eb700,6, 0x6eb720,6, 0x6eb740,6, 0x6eb760,6, 0x6eb780,6, 0x6eb800,76, 0x6eba00,76, 0x6ebc00,33, 0x6ec000,76, 0x6ec200,76, 0x6ec400,33, 0x6ec800,4, 0x6eca00,72, 0x6ecc00,17, 0x6ecc48,4, 0x6ece00,27, 0x6ece80,4, 0x6ecec0,25, 0x6ecf40,6, 0x6ecf60,4, 0x6ecf74,11, 0x6ecfa4,16, 0x6ed000,12, 0x6ed040,2, 0x6ed050,1, 0x6ed058,5, 0x6ed070,3, 0x700000,23, 0x700080,23, 0x700100,23, 0x700180,23, 0x700200,13, 0x700404,1, 0x70047c,33, 0x700504,1, 0x700514,3, 0x700524,1, 0x70052c,1, 0x700600,96, 0x700784,1, 0x700790,4, 0x701000,76, 0x702000,582, 0x703000,13, 0x703400,27, 0x703480,4, 0x7034c0,25, 0x703540,6, 0x703560,4, 0x703574,3, 0x703600,8, 0x703624,59, 0x703800,4, 0x703880,36, 0x703980,17, 0x703a00,6, 0x703a20,165, 0x703d00,12, 0x703d40,2, 0x703d50,3, 0x703d60,1, 0x703d80,12, 0x703dc0,2, 0x703dd0,3, 0x703de0,1, 0x703e00,12, 0x703e40,2, 0x703e50,3, 0x703e60,1, 0x703e80,12, 0x703ec0,2, 0x703ed0,3, 0x703ee0,1, 0x703f00,9, 0x703f80,3, 0x703f90,5, 0x703fa8,5, 0x703fc0,5, 0x703fd8,2, 0x704000,1, 0x704010,6, 0x704030,78, 0x704180,18, 0x708004,6, 0x709000,650, 0x70a000,650, 0x70b000,2, 0x70b040,9, 0x70b080,7, 0x70c000,34, 0x70c090,9, 0x70c0b8,11, 0x710000,11, 0x710040,11, 0x710080,11, 0x7100c0,11, 0x710104,1, 0x71011c,10, 0x710148,2, 0x710154,1, 0x71015c,24, 0x7101c0,3, 0x7101d0,3, 0x7101e0,3, 0x7101f0,33, 0x710280,3, 0x710290,3, 0x7102a0,3, 0x7102b0,3, 0x7102c0,5, 0x7102d8,8, 0x710400,145, 0x710800,4, 0x710880,25, 0x710900,5, 0x710920,1, 0x711000,11, 0x711040,11, 0x711080,11, 0x7110c0,11, 0x711100,11, 0x711140,11, 0x711180,11, 0x7111c0,11, 0x711200,1, 0x711208,19, 0x711260,2, 0x71126c,3, 0x711280,5, 0x711400,3, 0x711410,30, 0x7114a4,1, 0x7114b4,23, 0x711520,6, 0x711540,3, 0x711560,2, 0x71156c,2, 0x711580,2, 0x7115c0,3, 0x7115d0,3, 0x7115e0,1, 0x711600,1, 0x711800,1, 0x711814,12, 0x711848,5, 0x711860,7, 0x711880,5, 0x711898,5, 0x7118b0,5, 0x7118c8,7, 0x7118e8,7, 0x711908,5, 0x711920,11, 0x711950,55, 0x711a40,2, 0x711a4c,2, 0x711a60,2, 0x711a80,6, 0x711ac0,3, 0x711ad0,3, 0x711ae0,1, 0x711b00,1, 0x712000,2, 0x712010,47, 0x7120e0,6, 0x712100,6, 0x712120,2, 0x71212c,3, 0x712140,6, 0x712200,5, 0x712224,1, 0x712234,3, 0x712280,20, 0x712404,1, 0x7124e4,71, 0x712604,1, 0x712670,38, 0x712800,27, 0x712880,4, 0x7128c0,25, 0x712940,6, 0x712960,4, 0x712974,11, 0x7129a4,7, 0x712a00,12, 0x712a40,2, 0x712a50,1, 0x712a58,5, 0x712a70,5, 0x720000,19, 0x720080,19, 0x720100,19, 0x720180,19, 0x720200,12, 0x720280,1, 0x7202a0,6, 0x7202c0,6, 0x7202e0,6, 0x720300,6, 0x720320,6, 0x720340,6, 0x720360,6, 0x720380,9, 0x7203c0,13, 0x720400,3, 0x720410,159, 0x720690,16, 0x7206e0,5, 0x720700,5, 0x720720,5, 0x720740,5, 0x720760,5, 0x720780,5, 0x7207a0,5, 0x7207c0,5, 0x7207e0,6, 0x720800,6, 0x720820,6, 0x720840,6, 0x720860,6, 0x720880,6, 0x7208a0,6, 0x7208c0,6, 0x7208e0,6, 0x720900,6, 0x720920,6, 0x720940,6, 0x720960,6, 0x720980,6, 0x7209a0,6, 0x7209c0,6, 0x720a00,22, 0x720a80,1, 0x720a88,3, 0x720aa0,5, 0x720ac0,1, 0x720ad0,3, 0x720ae0,1, 0x720af0,3, 0x720b00,1, 0x720b10,3, 0x720b20,1, 0x720b30,3, 0x720b40,1, 0x720b48,3, 0x720b58,3, 0x720b68,3, 0x720b78,3, 0x720b88,3, 0x720ba0,3, 0x720bb0,1, 0x720bc0,3, 0x720bd0,1, 0x720be0,3, 0x720bf0,1, 0x720c00,3, 0x720c10,1, 0x720c20,3, 0x720c30,1, 0x720c40,3, 0x720c50,1, 0x720c80,6, 0x720ca0,6, 0x720cc0,1, 0x720d00,1, 0x720d10,3, 0x720d20,1, 0x720d30,3, 0x720d40,1, 0x720d60,5, 0x720d80,1, 0x720d90,3, 0x720da0,1, 0x720dc0,5, 0x720de0,1, 0x720df0,3, 0x720e00,1, 0x720e10,3, 0x720e20,5, 0x720e40,2, 0x720e50,3, 0x720e60,5, 0x720e80,2, 0x720e90,3, 0x720ea0,3, 0x720eb0,3, 0x720ec0,3, 0x720ed0,3, 0x720ee0,5, 0x720f00,3, 0x720f20,5, 0x720f40,5, 0x720f60,3, 0x720f70,3, 0x720f80,5, 0x720fa0,3, 0x720fb0,3, 0x720fc0,3, 0x720fd0,3, 0x720fe0,3, 0x720ff0,3, 0x721000,6, 0x721020,3, 0x721040,3, 0x721050,3, 0x721060,1, 0x721080,3, 0x721090,3, 0x7210a0,1, 0x7210c0,3, 0x7210e0,5, 0x721100,11, 0x721130,3, 0x721140,3, 0x721150,3, 0x721160,5, 0x721180,5, 0x7211a0,3, 0x7211b0,3, 0x7211c0,3, 0x7211d0,3, 0x7211e0,2, 0x7211f0,3, 0x721200,7, 0x721220,3, 0x721230,2, 0x721240,3, 0x721250,3, 0x721260,2, 0x721400,15, 0x721440,4, 0x721460,17, 0x7214c0,6, 0x7214e0,4, 0x7214f4,11, 0x721524,54, 0x721604,1, 0x72160c,1, 0x721614,1, 0x72161c,15, 0x721660,6, 0x721680,4, 0x7216a0,5, 0x7216c0,4, 0x7216e0,5, 0x721700,4, 0x721720,5, 0x721740,4, 0x721760,5, 0x721780,4, 0x7217c0,15, 0x721800,4, 0x721880,19, 0x721900,1, 0x721980,24, 0x721a00,24, 0x721a80,24, 0x721b00,24, 0x721b80,1, 0x721b88,2, 0x722000,451, 0x722740,169, 0x723000,260, 0x723800,12, 0x723a04,1, 0x723a0c,8, 0x723a44,1, 0x723a50,7, 0x723a84,1, 0x723a94,27, 0x723b04,3, 0x723b14,3, 0x723b24,3, 0x723b34,21, 0x723ba0,5, 0x723bc0,1, 0x723c04,1, 0x723c14,3, 0x723c24,3, 0x723c34,3, 0x723c44,1, 0x723c60,8, 0x723c84,1, 0x723ca0,8, 0x723cc4,1, 0x723ce0,11, 0x723e04,1, 0x723e0c,2, 0x723e18,1, 0x723e20,3, 0x723e30,3, 0x723e40,1, 0x723e48,3, 0x723e58,3, 0x723e70,4, 0x724000,44, 0x724100,19, 0x724180,22, 0x724200,27, 0x724280,27, 0x724300,11, 0x724380,17, 0x724400,27, 0x724480,2, 0x7244a0,6, 0x7244c0,3, 0x7244d0,4, 0x724500,35, 0x724600,34, 0x724700,26, 0x724780,23, 0x724800,15, 0x724848,4, 0x728000,20, 0x728100,49, 0x728200,20, 0x728300,49, 0x728400,20, 0x728500,49, 0x728600,20, 0x728700,49, 0x728800,8, 0x729000,20, 0x729100,49, 0x729200,20, 0x729300,49, 0x729400,20, 0x729500,49, 0x729600,20, 0x729700,49, 0x729800,8, 0x72a000,15, 0x72a040,3, 0x72a050,1, 0x72a058,4, 0x72a080,10, 0x72a0b0,3, 0x72a0c4,7, 0x72a100,44, 0x72a200,5, 0x72a218,5, 0x72a280,20, 0x72a300,1, 0x72a800,52, 0x72a8e0,5, 0x72a900,5, 0x72aa00,52, 0x72aae0,5, 0x72ab00,5, 0x72ac00,18, 0x72ac50,10, 0x72ad00,36, 0x72ada0,5, 0x72adc0,5, 0x72b000,20, 0x72b080,20, 0x72b100,20, 0x72b180,20, 0x72b200,10, 0x72b400,10, 0x72b440,10, 0x72b480,10, 0x72b4c0,10, 0x72b500,1, 0x72b600,1, 0x72b608,32, 0x72b6a0,6, 0x72b6c0,6, 0x72b6e0,6, 0x72b700,6, 0x72b720,6, 0x72b740,6, 0x72b760,6, 0x72b780,6, 0x72b800,76, 0x72ba00,76, 0x72bc00,33, 0x72c000,76, 0x72c200,76, 0x72c400,33, 0x72c800,4, 0x72ca00,72, 0x72cc00,17, 0x72cc48,4, 0x72ce00,27, 0x72ce80,4, 0x72cec0,25, 0x72cf40,6, 0x72cf60,4, 0x72cf74,11, 0x72cfa4,16, 0x72d000,12, 0x72d040,2, 0x72d050,1, 0x72d058,5, 0x72d070,3, 0x740000,23, 0x740080,23, 0x740100,23, 0x740180,23, 0x740200,13, 0x740404,1, 0x74047c,33, 0x740504,1, 0x740514,3, 0x740524,1, 0x74052c,1, 0x740600,96, 0x740784,1, 0x740790,4, 0x741000,76, 0x742000,582, 0x743000,13, 0x743400,27, 0x743480,4, 0x7434c0,25, 0x743540,6, 0x743560,4, 0x743574,3, 0x743600,8, 0x743624,59, 0x743800,4, 0x743880,36, 0x743980,17, 0x743a00,6, 0x743a20,165, 0x743d00,12, 0x743d40,2, 0x743d50,3, 0x743d60,1, 0x743d80,12, 0x743dc0,2, 0x743dd0,3, 0x743de0,1, 0x743e00,12, 0x743e40,2, 0x743e50,3, 0x743e60,1, 0x743e80,12, 0x743ec0,2, 0x743ed0,3, 0x743ee0,1, 0x743f00,9, 0x743f80,3, 0x743f90,5, 0x743fa8,5, 0x743fc0,5, 0x743fd8,2, 0x744000,1, 0x744010,6, 0x744030,78, 0x744180,18, 0x748004,6, 0x749000,650, 0x74a000,650, 0x74b000,2, 0x74b040,9, 0x74b080,7, 0x74c000,34, 0x74c090,9, 0x74c0b8,11, 0x750000,11, 0x750040,11, 0x750080,11, 0x7500c0,11, 0x750104,1, 0x75011c,10, 0x750148,2, 0x750154,1, 0x75015c,24, 0x7501c0,3, 0x7501d0,3, 0x7501e0,3, 0x7501f0,33, 0x750280,3, 0x750290,3, 0x7502a0,3, 0x7502b0,3, 0x7502c0,5, 0x7502d8,8, 0x750400,145, 0x750800,4, 0x750880,25, 0x750900,5, 0x750920,1, 0x751000,11, 0x751040,11, 0x751080,11, 0x7510c0,11, 0x751100,11, 0x751140,11, 0x751180,11, 0x7511c0,11, 0x751200,1, 0x751208,19, 0x751260,2, 0x75126c,3, 0x751280,5, 0x751400,3, 0x751410,30, 0x7514a4,1, 0x7514b4,23, 0x751520,6, 0x751540,3, 0x751560,2, 0x75156c,2, 0x751580,2, 0x7515c0,3, 0x7515d0,3, 0x7515e0,1, 0x751600,1, 0x751800,1, 0x751814,12, 0x751848,5, 0x751860,7, 0x751880,5, 0x751898,5, 0x7518b0,5, 0x7518c8,7, 0x7518e8,7, 0x751908,5, 0x751920,11, 0x751950,55, 0x751a40,2, 0x751a4c,2, 0x751a60,2, 0x751a80,6, 0x751ac0,3, 0x751ad0,3, 0x751ae0,1, 0x751b00,1, 0x752000,2, 0x752010,47, 0x7520e0,6, 0x752100,6, 0x752120,2, 0x75212c,3, 0x752140,6, 0x752200,5, 0x752224,1, 0x752234,3, 0x752280,20, 0x752404,1, 0x7524e4,71, 0x752604,1, 0x752670,38, 0x752800,27, 0x752880,4, 0x7528c0,25, 0x752940,6, 0x752960,4, 0x752974,11, 0x7529a4,7, 0x752a00,12, 0x752a40,2, 0x752a50,1, 0x752a58,5, 0x752a70,5, 0x760000,19, 0x760080,19, 0x760100,19, 0x760180,19, 0x760200,12, 0x760280,1, 0x7602a0,6, 0x7602c0,6, 0x7602e0,6, 0x760300,6, 0x760320,6, 0x760340,6, 0x760360,6, 0x760380,9, 0x7603c0,13, 0x760400,3, 0x760410,159, 0x760690,16, 0x7606e0,5, 0x760700,5, 0x760720,5, 0x760740,5, 0x760760,5, 0x760780,5, 0x7607a0,5, 0x7607c0,5, 0x7607e0,6, 0x760800,6, 0x760820,6, 0x760840,6, 0x760860,6, 0x760880,6, 0x7608a0,6, 0x7608c0,6, 0x7608e0,6, 0x760900,6, 0x760920,6, 0x760940,6, 0x760960,6, 0x760980,6, 0x7609a0,6, 0x7609c0,6, 0x760a00,22, 0x760a80,1, 0x760a88,3, 0x760aa0,5, 0x760ac0,1, 0x760ad0,3, 0x760ae0,1, 0x760af0,3, 0x760b00,1, 0x760b10,3, 0x760b20,1, 0x760b30,3, 0x760b40,1, 0x760b48,3, 0x760b58,3, 0x760b68,3, 0x760b78,3, 0x760b88,3, 0x760ba0,3, 0x760bb0,1, 0x760bc0,3, 0x760bd0,1, 0x760be0,3, 0x760bf0,1, 0x760c00,3, 0x760c10,1, 0x760c20,3, 0x760c30,1, 0x760c40,3, 0x760c50,1, 0x760c80,6, 0x760ca0,6, 0x760cc0,1, 0x760d00,1, 0x760d10,3, 0x760d20,1, 0x760d30,3, 0x760d40,1, 0x760d60,5, 0x760d80,1, 0x760d90,3, 0x760da0,1, 0x760dc0,5, 0x760de0,1, 0x760df0,3, 0x760e00,1, 0x760e10,3, 0x760e20,5, 0x760e40,2, 0x760e50,3, 0x760e60,5, 0x760e80,2, 0x760e90,3, 0x760ea0,3, 0x760eb0,3, 0x760ec0,3, 0x760ed0,3, 0x760ee0,5, 0x760f00,3, 0x760f20,5, 0x760f40,5, 0x760f60,3, 0x760f70,3, 0x760f80,5, 0x760fa0,3, 0x760fb0,3, 0x760fc0,3, 0x760fd0,3, 0x760fe0,3, 0x760ff0,3, 0x761000,6, 0x761020,3, 0x761040,3, 0x761050,3, 0x761060,1, 0x761080,3, 0x761090,3, 0x7610a0,1, 0x7610c0,3, 0x7610e0,5, 0x761100,11, 0x761130,3, 0x761140,3, 0x761150,3, 0x761160,5, 0x761180,5, 0x7611a0,3, 0x7611b0,3, 0x7611c0,3, 0x7611d0,3, 0x7611e0,2, 0x7611f0,3, 0x761200,7, 0x761220,3, 0x761230,2, 0x761240,3, 0x761250,3, 0x761260,2, 0x761400,15, 0x761440,4, 0x761460,17, 0x7614c0,6, 0x7614e0,4, 0x7614f4,11, 0x761524,54, 0x761604,1, 0x76160c,1, 0x761614,1, 0x76161c,15, 0x761660,6, 0x761680,4, 0x7616a0,5, 0x7616c0,4, 0x7616e0,5, 0x761700,4, 0x761720,5, 0x761740,4, 0x761760,5, 0x761780,4, 0x7617c0,15, 0x761800,4, 0x761880,19, 0x761900,1, 0x761980,24, 0x761a00,24, 0x761a80,24, 0x761b00,24, 0x761b80,1, 0x761b88,2, 0x762000,451, 0x762740,169, 0x763000,260, 0x763800,12, 0x763a04,1, 0x763a0c,8, 0x763a44,1, 0x763a50,7, 0x763a84,1, 0x763a94,27, 0x763b04,3, 0x763b14,3, 0x763b24,3, 0x763b34,21, 0x763ba0,5, 0x763bc0,1, 0x763c04,1, 0x763c14,3, 0x763c24,3, 0x763c34,3, 0x763c44,1, 0x763c60,8, 0x763c84,1, 0x763ca0,8, 0x763cc4,1, 0x763ce0,11, 0x763e04,1, 0x763e0c,2, 0x763e18,1, 0x763e20,3, 0x763e30,3, 0x763e40,1, 0x763e48,3, 0x763e58,3, 0x763e70,4, 0x764000,44, 0x764100,19, 0x764180,22, 0x764200,27, 0x764280,27, 0x764300,11, 0x764380,17, 0x764400,27, 0x764480,2, 0x7644a0,6, 0x7644c0,3, 0x7644d0,4, 0x764500,35, 0x764600,34, 0x764700,26, 0x764780,23, 0x764800,15, 0x764848,4, 0x768000,20, 0x768100,49, 0x768200,20, 0x768300,49, 0x768400,20, 0x768500,49, 0x768600,20, 0x768700,49, 0x768800,8, 0x769000,20, 0x769100,49, 0x769200,20, 0x769300,49, 0x769400,20, 0x769500,49, 0x769600,20, 0x769700,49, 0x769800,8, 0x76a000,15, 0x76a040,3, 0x76a050,1, 0x76a058,4, 0x76a080,10, 0x76a0b0,3, 0x76a0c4,7, 0x76a100,44, 0x76a200,5, 0x76a218,5, 0x76a280,20, 0x76a300,1, 0x76a800,52, 0x76a8e0,5, 0x76a900,5, 0x76aa00,52, 0x76aae0,5, 0x76ab00,5, 0x76ac00,18, 0x76ac50,10, 0x76ad00,36, 0x76ada0,5, 0x76adc0,5, 0x76b000,20, 0x76b080,20, 0x76b100,20, 0x76b180,20, 0x76b200,10, 0x76b400,10, 0x76b440,10, 0x76b480,10, 0x76b4c0,10, 0x76b500,1, 0x76b600,1, 0x76b608,32, 0x76b6a0,6, 0x76b6c0,6, 0x76b6e0,6, 0x76b700,6, 0x76b720,6, 0x76b740,6, 0x76b760,6, 0x76b780,6, 0x76b800,76, 0x76ba00,76, 0x76bc00,33, 0x76c000,76, 0x76c200,76, 0x76c400,33, 0x76c800,4, 0x76ca00,72, 0x76cc00,17, 0x76cc48,4, 0x76ce00,27, 0x76ce80,4, 0x76cec0,25, 0x76cf40,6, 0x76cf60,4, 0x76cf74,11, 0x76cfa4,16, 0x76d000,12, 0x76d040,2, 0x76d050,1, 0x76d058,5, 0x76d070,3, 0x780000,23, 0x780080,23, 0x780100,23, 0x780180,23, 0x780200,13, 0x780404,1, 0x78047c,33, 0x780504,1, 0x780514,3, 0x780524,1, 0x78052c,1, 0x780600,96, 0x780784,1, 0x780790,4, 0x781000,76, 0x782000,582, 0x783000,13, 0x783400,27, 0x783480,4, 0x7834c0,25, 0x783540,6, 0x783560,4, 0x783574,3, 0x783600,8, 0x783624,59, 0x783800,4, 0x783880,36, 0x783980,17, 0x783a00,6, 0x783a20,165, 0x783d00,12, 0x783d40,2, 0x783d50,3, 0x783d60,1, 0x783d80,12, 0x783dc0,2, 0x783dd0,3, 0x783de0,1, 0x783e00,12, 0x783e40,2, 0x783e50,3, 0x783e60,1, 0x783e80,12, 0x783ec0,2, 0x783ed0,3, 0x783ee0,1, 0x783f00,9, 0x783f80,3, 0x783f90,5, 0x783fa8,5, 0x783fc0,5, 0x783fd8,2, 0x784000,1, 0x784010,6, 0x784030,78, 0x784180,18, 0x788004,6, 0x789000,650, 0x78a000,650, 0x78b000,2, 0x78b040,9, 0x78b080,7, 0x78c000,34, 0x78c090,9, 0x78c0b8,11, 0x790000,11, 0x790040,11, 0x790080,11, 0x7900c0,11, 0x790104,1, 0x79011c,10, 0x790148,2, 0x790154,1, 0x79015c,24, 0x7901c0,3, 0x7901d0,3, 0x7901e0,3, 0x7901f0,33, 0x790280,3, 0x790290,3, 0x7902a0,3, 0x7902b0,3, 0x7902c0,5, 0x7902d8,8, 0x790400,145, 0x790800,4, 0x790880,25, 0x790900,5, 0x790920,1, 0x791000,11, 0x791040,11, 0x791080,11, 0x7910c0,11, 0x791100,11, 0x791140,11, 0x791180,11, 0x7911c0,11, 0x791200,1, 0x791208,19, 0x791260,2, 0x79126c,3, 0x791280,5, 0x791400,3, 0x791410,30, 0x7914a4,1, 0x7914b4,23, 0x791520,6, 0x791540,3, 0x791560,2, 0x79156c,2, 0x791580,2, 0x7915c0,3, 0x7915d0,3, 0x7915e0,1, 0x791600,1, 0x791800,1, 0x791814,12, 0x791848,5, 0x791860,7, 0x791880,5, 0x791898,5, 0x7918b0,5, 0x7918c8,7, 0x7918e8,7, 0x791908,5, 0x791920,11, 0x791950,55, 0x791a40,2, 0x791a4c,2, 0x791a60,2, 0x791a80,6, 0x791ac0,3, 0x791ad0,3, 0x791ae0,1, 0x791b00,1, 0x792000,2, 0x792010,47, 0x7920e0,6, 0x792100,6, 0x792120,2, 0x79212c,3, 0x792140,6, 0x792200,5, 0x792224,1, 0x792234,3, 0x792280,20, 0x792404,1, 0x7924e4,71, 0x792604,1, 0x792670,38, 0x792800,27, 0x792880,4, 0x7928c0,25, 0x792940,6, 0x792960,4, 0x792974,11, 0x7929a4,7, 0x792a00,12, 0x792a40,2, 0x792a50,1, 0x792a58,5, 0x792a70,5, 0x7a0000,19, 0x7a0080,19, 0x7a0100,19, 0x7a0180,19, 0x7a0200,12, 0x7a0280,1, 0x7a02a0,6, 0x7a02c0,6, 0x7a02e0,6, 0x7a0300,6, 0x7a0320,6, 0x7a0340,6, 0x7a0360,6, 0x7a0380,9, 0x7a03c0,13, 0x7a0400,3, 0x7a0410,159, 0x7a0690,16, 0x7a06e0,5, 0x7a0700,5, 0x7a0720,5, 0x7a0740,5, 0x7a0760,5, 0x7a0780,5, 0x7a07a0,5, 0x7a07c0,5, 0x7a07e0,6, 0x7a0800,6, 0x7a0820,6, 0x7a0840,6, 0x7a0860,6, 0x7a0880,6, 0x7a08a0,6, 0x7a08c0,6, 0x7a08e0,6, 0x7a0900,6, 0x7a0920,6, 0x7a0940,6, 0x7a0960,6, 0x7a0980,6, 0x7a09a0,6, 0x7a09c0,6, 0x7a0a00,22, 0x7a0a80,1, 0x7a0a88,3, 0x7a0aa0,5, 0x7a0ac0,1, 0x7a0ad0,3, 0x7a0ae0,1, 0x7a0af0,3, 0x7a0b00,1, 0x7a0b10,3, 0x7a0b20,1, 0x7a0b30,3, 0x7a0b40,1, 0x7a0b48,3, 0x7a0b58,3, 0x7a0b68,3, 0x7a0b78,3, 0x7a0b88,3, 0x7a0ba0,3, 0x7a0bb0,1, 0x7a0bc0,3, 0x7a0bd0,1, 0x7a0be0,3, 0x7a0bf0,1, 0x7a0c00,3, 0x7a0c10,1, 0x7a0c20,3, 0x7a0c30,1, 0x7a0c40,3, 0x7a0c50,1, 0x7a0c80,6, 0x7a0ca0,6, 0x7a0cc0,1, 0x7a0d00,1, 0x7a0d10,3, 0x7a0d20,1, 0x7a0d30,3, 0x7a0d40,1, 0x7a0d60,5, 0x7a0d80,1, 0x7a0d90,3, 0x7a0da0,1, 0x7a0dc0,5, 0x7a0de0,1, 0x7a0df0,3, 0x7a0e00,1, 0x7a0e10,3, 0x7a0e20,5, 0x7a0e40,2, 0x7a0e50,3, 0x7a0e60,5, 0x7a0e80,2, 0x7a0e90,3, 0x7a0ea0,3, 0x7a0eb0,3, 0x7a0ec0,3, 0x7a0ed0,3, 0x7a0ee0,5, 0x7a0f00,3, 0x7a0f20,5, 0x7a0f40,5, 0x7a0f60,3, 0x7a0f70,3, 0x7a0f80,5, 0x7a0fa0,3, 0x7a0fb0,3, 0x7a0fc0,3, 0x7a0fd0,3, 0x7a0fe0,3, 0x7a0ff0,3, 0x7a1000,6, 0x7a1020,3, 0x7a1040,3, 0x7a1050,3, 0x7a1060,1, 0x7a1080,3, 0x7a1090,3, 0x7a10a0,1, 0x7a10c0,3, 0x7a10e0,5, 0x7a1100,11, 0x7a1130,3, 0x7a1140,3, 0x7a1150,3, 0x7a1160,5, 0x7a1180,5, 0x7a11a0,3, 0x7a11b0,3, 0x7a11c0,3, 0x7a11d0,3, 0x7a11e0,2, 0x7a11f0,3, 0x7a1200,7, 0x7a1220,3, 0x7a1230,2, 0x7a1240,3, 0x7a1250,3, 0x7a1260,2, 0x7a1400,15, 0x7a1440,4, 0x7a1460,17, 0x7a14c0,6, 0x7a14e0,4, 0x7a14f4,11, 0x7a1524,54, 0x7a1604,1, 0x7a160c,1, 0x7a1614,1, 0x7a161c,15, 0x7a1660,6, 0x7a1680,4, 0x7a16a0,5, 0x7a16c0,4, 0x7a16e0,5, 0x7a1700,4, 0x7a1720,5, 0x7a1740,4, 0x7a1760,5, 0x7a1780,4, 0x7a17c0,15, 0x7a1800,4, 0x7a1880,19, 0x7a1900,1, 0x7a1980,24, 0x7a1a00,24, 0x7a1a80,24, 0x7a1b00,24, 0x7a1b80,1, 0x7a1b88,2, 0x7a2000,451, 0x7a2740,169, 0x7a3000,260, 0x7a3800,12, 0x7a3a04,1, 0x7a3a0c,8, 0x7a3a44,1, 0x7a3a50,7, 0x7a3a84,1, 0x7a3a94,27, 0x7a3b04,3, 0x7a3b14,3, 0x7a3b24,3, 0x7a3b34,21, 0x7a3ba0,5, 0x7a3bc0,1, 0x7a3c04,1, 0x7a3c14,3, 0x7a3c24,3, 0x7a3c34,3, 0x7a3c44,1, 0x7a3c60,8, 0x7a3c84,1, 0x7a3ca0,8, 0x7a3cc4,1, 0x7a3ce0,11, 0x7a3e04,1, 0x7a3e0c,2, 0x7a3e18,1, 0x7a3e20,3, 0x7a3e30,3, 0x7a3e40,1, 0x7a3e48,3, 0x7a3e58,3, 0x7a3e70,4, 0x7a4000,44, 0x7a4100,19, 0x7a4180,22, 0x7a4200,27, 0x7a4280,27, 0x7a4300,11, 0x7a4380,17, 0x7a4400,27, 0x7a4480,2, 0x7a44a0,6, 0x7a44c0,3, 0x7a44d0,4, 0x7a4500,35, 0x7a4600,34, 0x7a4700,26, 0x7a4780,23, 0x7a4800,15, 0x7a4848,4, 0x7a8000,20, 0x7a8100,49, 0x7a8200,20, 0x7a8300,49, 0x7a8400,20, 0x7a8500,49, 0x7a8600,20, 0x7a8700,49, 0x7a8800,8, 0x7a9000,20, 0x7a9100,49, 0x7a9200,20, 0x7a9300,49, 0x7a9400,20, 0x7a9500,49, 0x7a9600,20, 0x7a9700,49, 0x7a9800,8, 0x7aa000,15, 0x7aa040,3, 0x7aa050,1, 0x7aa058,4, 0x7aa080,10, 0x7aa0b0,3, 0x7aa0c4,7, 0x7aa100,44, 0x7aa200,5, 0x7aa218,5, 0x7aa280,20, 0x7aa300,1, 0x7aa800,52, 0x7aa8e0,5, 0x7aa900,5, 0x7aaa00,52, 0x7aaae0,5, 0x7aab00,5, 0x7aac00,18, 0x7aac50,10, 0x7aad00,36, 0x7aada0,5, 0x7aadc0,5, 0x7ab000,20, 0x7ab080,20, 0x7ab100,20, 0x7ab180,20, 0x7ab200,10, 0x7ab400,10, 0x7ab440,10, 0x7ab480,10, 0x7ab4c0,10, 0x7ab500,1, 0x7ab600,1, 0x7ab608,32, 0x7ab6a0,6, 0x7ab6c0,6, 0x7ab6e0,6, 0x7ab700,6, 0x7ab720,6, 0x7ab740,6, 0x7ab760,6, 0x7ab780,6, 0x7ab800,76, 0x7aba00,76, 0x7abc00,33, 0x7ac000,76, 0x7ac200,76, 0x7ac400,33, 0x7ac800,4, 0x7aca00,72, 0x7acc00,17, 0x7acc48,4, 0x7ace00,27, 0x7ace80,4, 0x7acec0,25, 0x7acf40,6, 0x7acf60,4, 0x7acf74,11, 0x7acfa4,16, 0x7ad000,12, 0x7ad040,2, 0x7ad050,1, 0x7ad058,5, 0x7ad070,3, 0x7c0000,23, 0x7c0080,23, 0x7c0100,23, 0x7c0180,23, 0x7c0200,13, 0x7c0404,1, 0x7c047c,33, 0x7c0504,1, 0x7c0514,3, 0x7c0524,1, 0x7c052c,1, 0x7c0600,96, 0x7c0784,1, 0x7c0790,4, 0x7c1000,76, 0x7c2000,582, 0x7c3000,13, 0x7c3400,27, 0x7c3480,4, 0x7c34c0,25, 0x7c3540,6, 0x7c3560,4, 0x7c3574,3, 0x7c3600,8, 0x7c3624,59, 0x7c3800,4, 0x7c3880,36, 0x7c3980,17, 0x7c3a00,6, 0x7c3a20,165, 0x7c3d00,12, 0x7c3d40,2, 0x7c3d50,3, 0x7c3d60,1, 0x7c3d80,12, 0x7c3dc0,2, 0x7c3dd0,3, 0x7c3de0,1, 0x7c3e00,12, 0x7c3e40,2, 0x7c3e50,3, 0x7c3e60,1, 0x7c3e80,12, 0x7c3ec0,2, 0x7c3ed0,3, 0x7c3ee0,1, 0x7c3f00,9, 0x7c3f80,3, 0x7c3f90,5, 0x7c3fa8,5, 0x7c3fc0,5, 0x7c3fd8,2, 0x7c4000,1, 0x7c4010,6, 0x7c4030,78, 0x7c4180,18, 0x7c8004,6, 0x7c9000,650, 0x7ca000,650, 0x7cb000,2, 0x7cb040,9, 0x7cb080,7, 0x7cc000,34, 0x7cc090,9, 0x7cc0b8,11, 0x7d0000,11, 0x7d0040,11, 0x7d0080,11, 0x7d00c0,11, 0x7d0104,1, 0x7d011c,10, 0x7d0148,2, 0x7d0154,1, 0x7d015c,24, 0x7d01c0,3, 0x7d01d0,3, 0x7d01e0,3, 0x7d01f0,33, 0x7d0280,3, 0x7d0290,3, 0x7d02a0,3, 0x7d02b0,3, 0x7d02c0,5, 0x7d02d8,8, 0x7d0400,145, 0x7d0800,4, 0x7d0880,25, 0x7d0900,5, 0x7d0920,1, 0x7d1000,11, 0x7d1040,11, 0x7d1080,11, 0x7d10c0,11, 0x7d1100,11, 0x7d1140,11, 0x7d1180,11, 0x7d11c0,11, 0x7d1200,1, 0x7d1208,19, 0x7d1260,2, 0x7d126c,3, 0x7d1280,5, 0x7d1400,3, 0x7d1410,30, 0x7d14a4,1, 0x7d14b4,23, 0x7d1520,6, 0x7d1540,3, 0x7d1560,2, 0x7d156c,2, 0x7d1580,2, 0x7d15c0,3, 0x7d15d0,3, 0x7d15e0,1, 0x7d1600,1, 0x7d1800,1, 0x7d1814,12, 0x7d1848,5, 0x7d1860,7, 0x7d1880,5, 0x7d1898,5, 0x7d18b0,5, 0x7d18c8,7, 0x7d18e8,7, 0x7d1908,5, 0x7d1920,11, 0x7d1950,55, 0x7d1a40,2, 0x7d1a4c,2, 0x7d1a60,2, 0x7d1a80,6, 0x7d1ac0,3, 0x7d1ad0,3, 0x7d1ae0,1, 0x7d1b00,1, 0x7d2000,2, 0x7d2010,47, 0x7d20e0,6, 0x7d2100,6, 0x7d2120,2, 0x7d212c,3, 0x7d2140,6, 0x7d2200,5, 0x7d2224,1, 0x7d2234,3, 0x7d2280,20, 0x7d2404,1, 0x7d24e4,71, 0x7d2604,1, 0x7d2670,38, 0x7d2800,27, 0x7d2880,4, 0x7d28c0,25, 0x7d2940,6, 0x7d2960,4, 0x7d2974,11, 0x7d29a4,7, 0x7d2a00,12, 0x7d2a40,2, 0x7d2a50,1, 0x7d2a58,5, 0x7d2a70,5, 0x7e0000,19, 0x7e0080,19, 0x7e0100,19, 0x7e0180,19, 0x7e0200,12, 0x7e0280,1, 0x7e02a0,6, 0x7e02c0,6, 0x7e02e0,6, 0x7e0300,6, 0x7e0320,6, 0x7e0340,6, 0x7e0360,6, 0x7e0380,9, 0x7e03c0,13, 0x7e0400,3, 0x7e0410,159, 0x7e0690,16, 0x7e06e0,5, 0x7e0700,5, 0x7e0720,5, 0x7e0740,5, 0x7e0760,5, 0x7e0780,5, 0x7e07a0,5, 0x7e07c0,5, 0x7e07e0,6, 0x7e0800,6, 0x7e0820,6, 0x7e0840,6, 0x7e0860,6, 0x7e0880,6, 0x7e08a0,6, 0x7e08c0,6, 0x7e08e0,6, 0x7e0900,6, 0x7e0920,6, 0x7e0940,6, 0x7e0960,6, 0x7e0980,6, 0x7e09a0,6, 0x7e09c0,6, 0x7e0a00,22, 0x7e0a80,1, 0x7e0a88,3, 0x7e0aa0,5, 0x7e0ac0,1, 0x7e0ad0,3, 0x7e0ae0,1, 0x7e0af0,3, 0x7e0b00,1, 0x7e0b10,3, 0x7e0b20,1, 0x7e0b30,3, 0x7e0b40,1, 0x7e0b48,3, 0x7e0b58,3, 0x7e0b68,3, 0x7e0b78,3, 0x7e0b88,3, 0x7e0ba0,3, 0x7e0bb0,1, 0x7e0bc0,3, 0x7e0bd0,1, 0x7e0be0,3, 0x7e0bf0,1, 0x7e0c00,3, 0x7e0c10,1, 0x7e0c20,3, 0x7e0c30,1, 0x7e0c40,3, 0x7e0c50,1, 0x7e0c80,6, 0x7e0ca0,6, 0x7e0cc0,1, 0x7e0d00,1, 0x7e0d10,3, 0x7e0d20,1, 0x7e0d30,3, 0x7e0d40,1, 0x7e0d60,5, 0x7e0d80,1, 0x7e0d90,3, 0x7e0da0,1, 0x7e0dc0,5, 0x7e0de0,1, 0x7e0df0,3, 0x7e0e00,1, 0x7e0e10,3, 0x7e0e20,5, 0x7e0e40,2, 0x7e0e50,3, 0x7e0e60,5, 0x7e0e80,2, 0x7e0e90,3, 0x7e0ea0,3, 0x7e0eb0,3, 0x7e0ec0,3, 0x7e0ed0,3, 0x7e0ee0,5, 0x7e0f00,3, 0x7e0f20,5, 0x7e0f40,5, 0x7e0f60,3, 0x7e0f70,3, 0x7e0f80,5, 0x7e0fa0,3, 0x7e0fb0,3, 0x7e0fc0,3, 0x7e0fd0,3, 0x7e0fe0,3, 0x7e0ff0,3, 0x7e1000,6, 0x7e1020,3, 0x7e1040,3, 0x7e1050,3, 0x7e1060,1, 0x7e1080,3, 0x7e1090,3, 0x7e10a0,1, 0x7e10c0,3, 0x7e10e0,5, 0x7e1100,11, 0x7e1130,3, 0x7e1140,3, 0x7e1150,3, 0x7e1160,5, 0x7e1180,5, 0x7e11a0,3, 0x7e11b0,3, 0x7e11c0,3, 0x7e11d0,3, 0x7e11e0,2, 0x7e11f0,3, 0x7e1200,7, 0x7e1220,3, 0x7e1230,2, 0x7e1240,3, 0x7e1250,3, 0x7e1260,2, 0x7e1400,15, 0x7e1440,4, 0x7e1460,17, 0x7e14c0,6, 0x7e14e0,4, 0x7e14f4,11, 0x7e1524,54, 0x7e1604,1, 0x7e160c,1, 0x7e1614,1, 0x7e161c,15, 0x7e1660,6, 0x7e1680,4, 0x7e16a0,5, 0x7e16c0,4, 0x7e16e0,5, 0x7e1700,4, 0x7e1720,5, 0x7e1740,4, 0x7e1760,5, 0x7e1780,4, 0x7e17c0,15, 0x7e1800,4, 0x7e1880,19, 0x7e1900,1, 0x7e1980,24, 0x7e1a00,24, 0x7e1a80,24, 0x7e1b00,24, 0x7e1b80,1, 0x7e1b88,2, 0x7e2000,451, 0x7e2740,169, 0x7e3000,260, 0x7e3800,12, 0x7e3a04,1, 0x7e3a0c,8, 0x7e3a44,1, 0x7e3a50,7, 0x7e3a84,1, 0x7e3a94,27, 0x7e3b04,3, 0x7e3b14,3, 0x7e3b24,3, 0x7e3b34,21, 0x7e3ba0,5, 0x7e3bc0,1, 0x7e3c04,1, 0x7e3c14,3, 0x7e3c24,3, 0x7e3c34,3, 0x7e3c44,1, 0x7e3c60,8, 0x7e3c84,1, 0x7e3ca0,8, 0x7e3cc4,1, 0x7e3ce0,11, 0x7e3e04,1, 0x7e3e0c,2, 0x7e3e18,1, 0x7e3e20,3, 0x7e3e30,3, 0x7e3e40,1, 0x7e3e48,3, 0x7e3e58,3, 0x7e3e70,4, 0x7e4000,44, 0x7e4100,19, 0x7e4180,22, 0x7e4200,27, 0x7e4280,27, 0x7e4300,11, 0x7e4380,17, 0x7e4400,27, 0x7e4480,2, 0x7e44a0,6, 0x7e44c0,3, 0x7e44d0,4, 0x7e4500,35, 0x7e4600,34, 0x7e4700,26, 0x7e4780,23, 0x7e4800,15, 0x7e4848,4, 0x7e8000,20, 0x7e8100,49, 0x7e8200,20, 0x7e8300,49, 0x7e8400,20, 0x7e8500,49, 0x7e8600,20, 0x7e8700,49, 0x7e8800,8, 0x7e9000,20, 0x7e9100,49, 0x7e9200,20, 0x7e9300,49, 0x7e9400,20, 0x7e9500,49, 0x7e9600,20, 0x7e9700,49, 0x7e9800,8, 0x7ea000,15, 0x7ea040,3, 0x7ea050,1, 0x7ea058,4, 0x7ea080,10, 0x7ea0b0,3, 0x7ea0c4,7, 0x7ea100,44, 0x7ea200,5, 0x7ea218,5, 0x7ea280,20, 0x7ea300,1, 0x7ea800,52, 0x7ea8e0,5, 0x7ea900,5, 0x7eaa00,52, 0x7eaae0,5, 0x7eab00,5, 0x7eac00,18, 0x7eac50,10, 0x7ead00,36, 0x7eada0,5, 0x7eadc0,5, 0x7eb000,20, 0x7eb080,20, 0x7eb100,20, 0x7eb180,20, 0x7eb200,10, 0x7eb400,10, 0x7eb440,10, 0x7eb480,10, 0x7eb4c0,10, 0x7eb500,1, 0x7eb600,1, 0x7eb608,32, 0x7eb6a0,6, 0x7eb6c0,6, 0x7eb6e0,6, 0x7eb700,6, 0x7eb720,6, 0x7eb740,6, 0x7eb760,6, 0x7eb780,6, 0x7eb800,76, 0x7eba00,76, 0x7ebc00,33, 0x7ec000,76, 0x7ec200,76, 0x7ec400,33, 0x7ec800,4, 0x7eca00,72, 0x7ecc00,17, 0x7ecc48,4, 0x7ece00,27, 0x7ece80,4, 0x7ecec0,25, 0x7ecf40,6, 0x7ecf60,4, 0x7ecf74,11, 0x7ecfa4,16, 0x7ed000,12, 0x7ed040,2, 0x7ed050,1, 0x7ed058,5, 0x7ed070,3, 0x800000,23, 0x800080,23, 0x800100,23, 0x800180,23, 0x800200,13, 0x800404,1, 0x80047c,33, 0x800504,1, 0x800514,3, 0x800524,1, 0x80052c,1, 0x800600,96, 0x800784,1, 0x800790,4, 0x801000,76, 0x802000,582, 0x803000,13, 0x803400,27, 0x803480,4, 0x8034c0,25, 0x803540,6, 0x803560,4, 0x803574,3, 0x803600,8, 0x803624,59, 0x803800,4, 0x803880,36, 0x803980,17, 0x803a00,6, 0x803a20,165, 0x803d00,12, 0x803d40,2, 0x803d50,3, 0x803d60,1, 0x803d80,12, 0x803dc0,2, 0x803dd0,3, 0x803de0,1, 0x803e00,12, 0x803e40,2, 0x803e50,3, 0x803e60,1, 0x803e80,12, 0x803ec0,2, 0x803ed0,3, 0x803ee0,1, 0x803f00,9, 0x803f80,3, 0x803f90,5, 0x803fa8,5, 0x803fc0,5, 0x803fd8,2, 0x804000,1, 0x804010,6, 0x804030,78, 0x804180,18, 0x808004,6, 0x809000,650, 0x80a000,650, 0x80b000,2, 0x80b040,9, 0x80b080,7, 0x80c000,34, 0x80c090,9, 0x80c0b8,11, 0x810000,11, 0x810040,11, 0x810080,11, 0x8100c0,11, 0x810104,1, 0x81011c,10, 0x810148,2, 0x810154,1, 0x81015c,24, 0x8101c0,3, 0x8101d0,3, 0x8101e0,3, 0x8101f0,33, 0x810280,3, 0x810290,3, 0x8102a0,3, 0x8102b0,3, 0x8102c0,5, 0x8102d8,8, 0x810400,145, 0x810800,4, 0x810880,25, 0x810900,5, 0x810920,1, 0x811000,11, 0x811040,11, 0x811080,11, 0x8110c0,11, 0x811100,11, 0x811140,11, 0x811180,11, 0x8111c0,11, 0x811200,1, 0x811208,19, 0x811260,2, 0x81126c,3, 0x811280,5, 0x811400,3, 0x811410,30, 0x8114a4,1, 0x8114b4,23, 0x811520,6, 0x811540,3, 0x811560,2, 0x81156c,2, 0x811580,2, 0x8115c0,3, 0x8115d0,3, 0x8115e0,1, 0x811600,1, 0x811800,1, 0x811814,12, 0x811848,5, 0x811860,7, 0x811880,5, 0x811898,5, 0x8118b0,5, 0x8118c8,7, 0x8118e8,7, 0x811908,5, 0x811920,11, 0x811950,55, 0x811a40,2, 0x811a4c,2, 0x811a60,2, 0x811a80,6, 0x811ac0,3, 0x811ad0,3, 0x811ae0,1, 0x811b00,1, 0x812000,2, 0x812010,47, 0x8120e0,6, 0x812100,6, 0x812120,2, 0x81212c,3, 0x812140,6, 0x812200,5, 0x812224,1, 0x812234,3, 0x812280,20, 0x812404,1, 0x8124e4,71, 0x812604,1, 0x812670,38, 0x812800,27, 0x812880,4, 0x8128c0,25, 0x812940,6, 0x812960,4, 0x812974,11, 0x8129a4,7, 0x812a00,12, 0x812a40,2, 0x812a50,1, 0x812a58,5, 0x812a70,5, 0x820000,19, 0x820080,19, 0x820100,19, 0x820180,19, 0x820200,12, 0x820280,1, 0x8202a0,6, 0x8202c0,6, 0x8202e0,6, 0x820300,6, 0x820320,6, 0x820340,6, 0x820360,6, 0x820380,9, 0x8203c0,13, 0x820400,3, 0x820410,159, 0x820690,16, 0x8206e0,5, 0x820700,5, 0x820720,5, 0x820740,5, 0x820760,5, 0x820780,5, 0x8207a0,5, 0x8207c0,5, 0x8207e0,6, 0x820800,6, 0x820820,6, 0x820840,6, 0x820860,6, 0x820880,6, 0x8208a0,6, 0x8208c0,6, 0x8208e0,6, 0x820900,6, 0x820920,6, 0x820940,6, 0x820960,6, 0x820980,6, 0x8209a0,6, 0x8209c0,6, 0x820a00,22, 0x820a80,1, 0x820a88,3, 0x820aa0,5, 0x820ac0,1, 0x820ad0,3, 0x820ae0,1, 0x820af0,3, 0x820b00,1, 0x820b10,3, 0x820b20,1, 0x820b30,3, 0x820b40,1, 0x820b48,3, 0x820b58,3, 0x820b68,3, 0x820b78,3, 0x820b88,3, 0x820ba0,3, 0x820bb0,1, 0x820bc0,3, 0x820bd0,1, 0x820be0,3, 0x820bf0,1, 0x820c00,3, 0x820c10,1, 0x820c20,3, 0x820c30,1, 0x820c40,3, 0x820c50,1, 0x820c80,6, 0x820ca0,6, 0x820cc0,1, 0x820d00,1, 0x820d10,3, 0x820d20,1, 0x820d30,3, 0x820d40,1, 0x820d60,5, 0x820d80,1, 0x820d90,3, 0x820da0,1, 0x820dc0,5, 0x820de0,1, 0x820df0,3, 0x820e00,1, 0x820e10,3, 0x820e20,5, 0x820e40,2, 0x820e50,3, 0x820e60,5, 0x820e80,2, 0x820e90,3, 0x820ea0,3, 0x820eb0,3, 0x820ec0,3, 0x820ed0,3, 0x820ee0,5, 0x820f00,3, 0x820f20,5, 0x820f40,5, 0x820f60,3, 0x820f70,3, 0x820f80,5, 0x820fa0,3, 0x820fb0,3, 0x820fc0,3, 0x820fd0,3, 0x820fe0,3, 0x820ff0,3, 0x821000,6, 0x821020,3, 0x821040,3, 0x821050,3, 0x821060,1, 0x821080,3, 0x821090,3, 0x8210a0,1, 0x8210c0,3, 0x8210e0,5, 0x821100,11, 0x821130,3, 0x821140,3, 0x821150,3, 0x821160,5, 0x821180,5, 0x8211a0,3, 0x8211b0,3, 0x8211c0,3, 0x8211d0,3, 0x8211e0,2, 0x8211f0,3, 0x821200,7, 0x821220,3, 0x821230,2, 0x821240,3, 0x821250,3, 0x821260,2, 0x821400,15, 0x821440,4, 0x821460,17, 0x8214c0,6, 0x8214e0,4, 0x8214f4,11, 0x821524,54, 0x821604,1, 0x82160c,1, 0x821614,1, 0x82161c,15, 0x821660,6, 0x821680,4, 0x8216a0,5, 0x8216c0,4, 0x8216e0,5, 0x821700,4, 0x821720,5, 0x821740,4, 0x821760,5, 0x821780,4, 0x8217c0,15, 0x821800,4, 0x821880,19, 0x821900,1, 0x821980,24, 0x821a00,24, 0x821a80,24, 0x821b00,24, 0x821b80,1, 0x821b88,2, 0x822000,451, 0x822740,169, 0x823000,260, 0x823800,12, 0x823a04,1, 0x823a0c,8, 0x823a44,1, 0x823a50,7, 0x823a84,1, 0x823a94,27, 0x823b04,3, 0x823b14,3, 0x823b24,3, 0x823b34,21, 0x823ba0,5, 0x823bc0,1, 0x823c04,1, 0x823c14,3, 0x823c24,3, 0x823c34,3, 0x823c44,1, 0x823c60,8, 0x823c84,1, 0x823ca0,8, 0x823cc4,1, 0x823ce0,11, 0x823e04,1, 0x823e0c,2, 0x823e18,1, 0x823e20,3, 0x823e30,3, 0x823e40,1, 0x823e48,3, 0x823e58,3, 0x823e70,4, 0x824000,44, 0x824100,19, 0x824180,22, 0x824200,27, 0x824280,27, 0x824300,11, 0x824380,17, 0x824400,27, 0x824480,2, 0x8244a0,6, 0x8244c0,3, 0x8244d0,4, 0x824500,35, 0x824600,34, 0x824700,26, 0x824780,23, 0x824800,15, 0x824848,4, 0x828000,20, 0x828100,49, 0x828200,20, 0x828300,49, 0x828400,20, 0x828500,49, 0x828600,20, 0x828700,49, 0x828800,8, 0x829000,20, 0x829100,49, 0x829200,20, 0x829300,49, 0x829400,20, 0x829500,49, 0x829600,20, 0x829700,49, 0x829800,8, 0x82a000,15, 0x82a040,3, 0x82a050,1, 0x82a058,4, 0x82a080,10, 0x82a0b0,3, 0x82a0c4,7, 0x82a100,44, 0x82a200,5, 0x82a218,5, 0x82a280,20, 0x82a300,1, 0x82a800,52, 0x82a8e0,5, 0x82a900,5, 0x82aa00,52, 0x82aae0,5, 0x82ab00,5, 0x82ac00,18, 0x82ac50,10, 0x82ad00,36, 0x82ada0,5, 0x82adc0,5, 0x82b000,20, 0x82b080,20, 0x82b100,20, 0x82b180,20, 0x82b200,10, 0x82b400,10, 0x82b440,10, 0x82b480,10, 0x82b4c0,10, 0x82b500,1, 0x82b600,1, 0x82b608,32, 0x82b6a0,6, 0x82b6c0,6, 0x82b6e0,6, 0x82b700,6, 0x82b720,6, 0x82b740,6, 0x82b760,6, 0x82b780,6, 0x82b800,76, 0x82ba00,76, 0x82bc00,33, 0x82c000,76, 0x82c200,76, 0x82c400,33, 0x82c800,4, 0x82ca00,72, 0x82cc00,17, 0x82cc48,4, 0x82ce00,27, 0x82ce80,4, 0x82cec0,25, 0x82cf40,6, 0x82cf60,4, 0x82cf74,11, 0x82cfa4,16, 0x82d000,12, 0x82d040,2, 0x82d050,1, 0x82d058,5, 0x82d070,3, 0x840000,23, 0x840080,23, 0x840100,23, 0x840180,23, 0x840200,13, 0x840404,1, 0x84047c,33, 0x840504,1, 0x840514,3, 0x840524,1, 0x84052c,1, 0x840600,96, 0x840784,1, 0x840790,4, 0x841000,76, 0x842000,582, 0x843000,13, 0x843400,27, 0x843480,4, 0x8434c0,25, 0x843540,6, 0x843560,4, 0x843574,3, 0x843600,8, 0x843624,59, 0x843800,4, 0x843880,36, 0x843980,17, 0x843a00,6, 0x843a20,165, 0x843d00,12, 0x843d40,2, 0x843d50,3, 0x843d60,1, 0x843d80,12, 0x843dc0,2, 0x843dd0,3, 0x843de0,1, 0x843e00,12, 0x843e40,2, 0x843e50,3, 0x843e60,1, 0x843e80,12, 0x843ec0,2, 0x843ed0,3, 0x843ee0,1, 0x843f00,9, 0x843f80,3, 0x843f90,5, 0x843fa8,5, 0x843fc0,5, 0x843fd8,2, 0x844000,1, 0x844010,6, 0x844030,78, 0x844180,18, 0x848004,6, 0x849000,650, 0x84a000,650, 0x84b000,2, 0x84b040,9, 0x84b080,7, 0x84c000,34, 0x84c090,9, 0x84c0b8,11, 0x850000,11, 0x850040,11, 0x850080,11, 0x8500c0,11, 0x850104,1, 0x85011c,10, 0x850148,2, 0x850154,1, 0x85015c,24, 0x8501c0,3, 0x8501d0,3, 0x8501e0,3, 0x8501f0,33, 0x850280,3, 0x850290,3, 0x8502a0,3, 0x8502b0,3, 0x8502c0,5, 0x8502d8,8, 0x850400,145, 0x850800,4, 0x850880,25, 0x850900,5, 0x850920,1, 0x851000,11, 0x851040,11, 0x851080,11, 0x8510c0,11, 0x851100,11, 0x851140,11, 0x851180,11, 0x8511c0,11, 0x851200,1, 0x851208,19, 0x851260,2, 0x85126c,3, 0x851280,5, 0x851400,3, 0x851410,30, 0x8514a4,1, 0x8514b4,23, 0x851520,6, 0x851540,3, 0x851560,2, 0x85156c,2, 0x851580,2, 0x8515c0,3, 0x8515d0,3, 0x8515e0,1, 0x851600,1, 0x851800,1, 0x851814,12, 0x851848,5, 0x851860,7, 0x851880,5, 0x851898,5, 0x8518b0,5, 0x8518c8,7, 0x8518e8,7, 0x851908,5, 0x851920,11, 0x851950,55, 0x851a40,2, 0x851a4c,2, 0x851a60,2, 0x851a80,6, 0x851ac0,3, 0x851ad0,3, 0x851ae0,1, 0x851b00,1, 0x852000,2, 0x852010,47, 0x8520e0,6, 0x852100,6, 0x852120,2, 0x85212c,3, 0x852140,6, 0x852200,5, 0x852224,1, 0x852234,3, 0x852280,20, 0x852404,1, 0x8524e4,71, 0x852604,1, 0x852670,38, 0x852800,27, 0x852880,4, 0x8528c0,25, 0x852940,6, 0x852960,4, 0x852974,11, 0x8529a4,7, 0x852a00,12, 0x852a40,2, 0x852a50,1, 0x852a58,5, 0x852a70,5, 0x860000,19, 0x860080,19, 0x860100,19, 0x860180,19, 0x860200,12, 0x860280,1, 0x8602a0,6, 0x8602c0,6, 0x8602e0,6, 0x860300,6, 0x860320,6, 0x860340,6, 0x860360,6, 0x860380,9, 0x8603c0,13, 0x860400,3, 0x860410,159, 0x860690,16, 0x8606e0,5, 0x860700,5, 0x860720,5, 0x860740,5, 0x860760,5, 0x860780,5, 0x8607a0,5, 0x8607c0,5, 0x8607e0,6, 0x860800,6, 0x860820,6, 0x860840,6, 0x860860,6, 0x860880,6, 0x8608a0,6, 0x8608c0,6, 0x8608e0,6, 0x860900,6, 0x860920,6, 0x860940,6, 0x860960,6, 0x860980,6, 0x8609a0,6, 0x8609c0,6, 0x860a00,22, 0x860a80,1, 0x860a88,3, 0x860aa0,5, 0x860ac0,1, 0x860ad0,3, 0x860ae0,1, 0x860af0,3, 0x860b00,1, 0x860b10,3, 0x860b20,1, 0x860b30,3, 0x860b40,1, 0x860b48,3, 0x860b58,3, 0x860b68,3, 0x860b78,3, 0x860b88,3, 0x860ba0,3, 0x860bb0,1, 0x860bc0,3, 0x860bd0,1, 0x860be0,3, 0x860bf0,1, 0x860c00,3, 0x860c10,1, 0x860c20,3, 0x860c30,1, 0x860c40,3, 0x860c50,1, 0x860c80,6, 0x860ca0,6, 0x860cc0,1, 0x860d00,1, 0x860d10,3, 0x860d20,1, 0x860d30,3, 0x860d40,1, 0x860d60,5, 0x860d80,1, 0x860d90,3, 0x860da0,1, 0x860dc0,5, 0x860de0,1, 0x860df0,3, 0x860e00,1, 0x860e10,3, 0x860e20,5, 0x860e40,2, 0x860e50,3, 0x860e60,5, 0x860e80,2, 0x860e90,3, 0x860ea0,3, 0x860eb0,3, 0x860ec0,3, 0x860ed0,3, 0x860ee0,5, 0x860f00,3, 0x860f20,5, 0x860f40,5, 0x860f60,3, 0x860f70,3, 0x860f80,5, 0x860fa0,3, 0x860fb0,3, 0x860fc0,3, 0x860fd0,3, 0x860fe0,3, 0x860ff0,3, 0x861000,6, 0x861020,3, 0x861040,3, 0x861050,3, 0x861060,1, 0x861080,3, 0x861090,3, 0x8610a0,1, 0x8610c0,3, 0x8610e0,5, 0x861100,11, 0x861130,3, 0x861140,3, 0x861150,3, 0x861160,5, 0x861180,5, 0x8611a0,3, 0x8611b0,3, 0x8611c0,3, 0x8611d0,3, 0x8611e0,2, 0x8611f0,3, 0x861200,7, 0x861220,3, 0x861230,2, 0x861240,3, 0x861250,3, 0x861260,2, 0x861400,15, 0x861440,4, 0x861460,17, 0x8614c0,6, 0x8614e0,4, 0x8614f4,11, 0x861524,54, 0x861604,1, 0x86160c,1, 0x861614,1, 0x86161c,15, 0x861660,6, 0x861680,4, 0x8616a0,5, 0x8616c0,4, 0x8616e0,5, 0x861700,4, 0x861720,5, 0x861740,4, 0x861760,5, 0x861780,4, 0x8617c0,15, 0x861800,4, 0x861880,19, 0x861900,1, 0x861980,24, 0x861a00,24, 0x861a80,24, 0x861b00,24, 0x861b80,1, 0x861b88,2, 0x862000,451, 0x862740,169, 0x863000,260, 0x863800,12, 0x863a04,1, 0x863a0c,8, 0x863a44,1, 0x863a50,7, 0x863a84,1, 0x863a94,27, 0x863b04,3, 0x863b14,3, 0x863b24,3, 0x863b34,21, 0x863ba0,5, 0x863bc0,1, 0x863c04,1, 0x863c14,3, 0x863c24,3, 0x863c34,3, 0x863c44,1, 0x863c60,8, 0x863c84,1, 0x863ca0,8, 0x863cc4,1, 0x863ce0,11, 0x863e04,1, 0x863e0c,2, 0x863e18,1, 0x863e20,3, 0x863e30,3, 0x863e40,1, 0x863e48,3, 0x863e58,3, 0x863e70,4, 0x864000,44, 0x864100,19, 0x864180,22, 0x864200,27, 0x864280,27, 0x864300,11, 0x864380,17, 0x864400,27, 0x864480,2, 0x8644a0,6, 0x8644c0,3, 0x8644d0,4, 0x864500,35, 0x864600,34, 0x864700,26, 0x864780,23, 0x864800,15, 0x864848,4, 0x868000,20, 0x868100,49, 0x868200,20, 0x868300,49, 0x868400,20, 0x868500,49, 0x868600,20, 0x868700,49, 0x868800,8, 0x869000,20, 0x869100,49, 0x869200,20, 0x869300,49, 0x869400,20, 0x869500,49, 0x869600,20, 0x869700,49, 0x869800,8, 0x86a000,15, 0x86a040,3, 0x86a050,1, 0x86a058,4, 0x86a080,10, 0x86a0b0,3, 0x86a0c4,7, 0x86a100,44, 0x86a200,5, 0x86a218,5, 0x86a280,20, 0x86a300,1, 0x86a800,52, 0x86a8e0,5, 0x86a900,5, 0x86aa00,52, 0x86aae0,5, 0x86ab00,5, 0x86ac00,18, 0x86ac50,10, 0x86ad00,36, 0x86ada0,5, 0x86adc0,5, 0x86b000,20, 0x86b080,20, 0x86b100,20, 0x86b180,20, 0x86b200,10, 0x86b400,10, 0x86b440,10, 0x86b480,10, 0x86b4c0,10, 0x86b500,1, 0x86b600,1, 0x86b608,32, 0x86b6a0,6, 0x86b6c0,6, 0x86b6e0,6, 0x86b700,6, 0x86b720,6, 0x86b740,6, 0x86b760,6, 0x86b780,6, 0x86b800,76, 0x86ba00,76, 0x86bc00,33, 0x86c000,76, 0x86c200,76, 0x86c400,33, 0x86c800,4, 0x86ca00,72, 0x86cc00,17, 0x86cc48,4, 0x86ce00,27, 0x86ce80,4, 0x86cec0,25, 0x86cf40,6, 0x86cf60,4, 0x86cf74,11, 0x86cfa4,16, 0x86d000,12, 0x86d040,2, 0x86d050,1, 0x86d058,5, 0x86d070,3, 0x880000,23, 0x880080,23, 0x880100,23, 0x880180,23, 0x880200,13, 0x880404,1, 0x88047c,33, 0x880504,1, 0x880514,3, 0x880524,1, 0x88052c,1, 0x880600,96, 0x880784,1, 0x880790,4, 0x881000,76, 0x882000,582, 0x883000,13, 0x883400,27, 0x883480,4, 0x8834c0,25, 0x883540,6, 0x883560,4, 0x883574,3, 0x883600,8, 0x883624,59, 0x883800,4, 0x883880,36, 0x883980,17, 0x883a00,6, 0x883a20,165, 0x883d00,12, 0x883d40,2, 0x883d50,3, 0x883d60,1, 0x883d80,12, 0x883dc0,2, 0x883dd0,3, 0x883de0,1, 0x883e00,12, 0x883e40,2, 0x883e50,3, 0x883e60,1, 0x883e80,12, 0x883ec0,2, 0x883ed0,3, 0x883ee0,1, 0x883f00,9, 0x883f80,3, 0x883f90,5, 0x883fa8,5, 0x883fc0,5, 0x883fd8,2, 0x884000,1, 0x884010,6, 0x884030,78, 0x884180,18, 0x888004,6, 0x889000,650, 0x88a000,650, 0x88b000,2, 0x88b040,9, 0x88b080,7, 0x88c000,34, 0x88c090,9, 0x88c0b8,11, 0x890000,11, 0x890040,11, 0x890080,11, 0x8900c0,11, 0x890104,1, 0x89011c,10, 0x890148,2, 0x890154,1, 0x89015c,24, 0x8901c0,3, 0x8901d0,3, 0x8901e0,3, 0x8901f0,33, 0x890280,3, 0x890290,3, 0x8902a0,3, 0x8902b0,3, 0x8902c0,5, 0x8902d8,8, 0x890400,145, 0x890800,4, 0x890880,25, 0x890900,5, 0x890920,1, 0x891000,11, 0x891040,11, 0x891080,11, 0x8910c0,11, 0x891100,11, 0x891140,11, 0x891180,11, 0x8911c0,11, 0x891200,1, 0x891208,19, 0x891260,2, 0x89126c,3, 0x891280,5, 0x891400,3, 0x891410,30, 0x8914a4,1, 0x8914b4,23, 0x891520,6, 0x891540,3, 0x891560,2, 0x89156c,2, 0x891580,2, 0x8915c0,3, 0x8915d0,3, 0x8915e0,1, 0x891600,1, 0x891800,1, 0x891814,12, 0x891848,5, 0x891860,7, 0x891880,5, 0x891898,5, 0x8918b0,5, 0x8918c8,7, 0x8918e8,7, 0x891908,5, 0x891920,11, 0x891950,55, 0x891a40,2, 0x891a4c,2, 0x891a60,2, 0x891a80,6, 0x891ac0,3, 0x891ad0,3, 0x891ae0,1, 0x891b00,1, 0x892000,2, 0x892010,47, 0x8920e0,6, 0x892100,6, 0x892120,2, 0x89212c,3, 0x892140,6, 0x892200,5, 0x892224,1, 0x892234,3, 0x892280,20, 0x892404,1, 0x8924e4,71, 0x892604,1, 0x892670,38, 0x892800,27, 0x892880,4, 0x8928c0,25, 0x892940,6, 0x892960,4, 0x892974,11, 0x8929a4,7, 0x892a00,12, 0x892a40,2, 0x892a50,1, 0x892a58,5, 0x892a70,5, 0x8a0000,19, 0x8a0080,19, 0x8a0100,19, 0x8a0180,19, 0x8a0200,12, 0x8a0280,1, 0x8a02a0,6, 0x8a02c0,6, 0x8a02e0,6, 0x8a0300,6, 0x8a0320,6, 0x8a0340,6, 0x8a0360,6, 0x8a0380,9, 0x8a03c0,13, 0x8a0400,3, 0x8a0410,159, 0x8a0690,16, 0x8a06e0,5, 0x8a0700,5, 0x8a0720,5, 0x8a0740,5, 0x8a0760,5, 0x8a0780,5, 0x8a07a0,5, 0x8a07c0,5, 0x8a07e0,6, 0x8a0800,6, 0x8a0820,6, 0x8a0840,6, 0x8a0860,6, 0x8a0880,6, 0x8a08a0,6, 0x8a08c0,6, 0x8a08e0,6, 0x8a0900,6, 0x8a0920,6, 0x8a0940,6, 0x8a0960,6, 0x8a0980,6, 0x8a09a0,6, 0x8a09c0,6, 0x8a0a00,22, 0x8a0a80,1, 0x8a0a88,3, 0x8a0aa0,5, 0x8a0ac0,1, 0x8a0ad0,3, 0x8a0ae0,1, 0x8a0af0,3, 0x8a0b00,1, 0x8a0b10,3, 0x8a0b20,1, 0x8a0b30,3, 0x8a0b40,1, 0x8a0b48,3, 0x8a0b58,3, 0x8a0b68,3, 0x8a0b78,3, 0x8a0b88,3, 0x8a0ba0,3, 0x8a0bb0,1, 0x8a0bc0,3, 0x8a0bd0,1, 0x8a0be0,3, 0x8a0bf0,1, 0x8a0c00,3, 0x8a0c10,1, 0x8a0c20,3, 0x8a0c30,1, 0x8a0c40,3, 0x8a0c50,1, 0x8a0c80,6, 0x8a0ca0,6, 0x8a0cc0,1, 0x8a0d00,1, 0x8a0d10,3, 0x8a0d20,1, 0x8a0d30,3, 0x8a0d40,1, 0x8a0d60,5, 0x8a0d80,1, 0x8a0d90,3, 0x8a0da0,1, 0x8a0dc0,5, 0x8a0de0,1, 0x8a0df0,3, 0x8a0e00,1, 0x8a0e10,3, 0x8a0e20,5, 0x8a0e40,2, 0x8a0e50,3, 0x8a0e60,5, 0x8a0e80,2, 0x8a0e90,3, 0x8a0ea0,3, 0x8a0eb0,3, 0x8a0ec0,3, 0x8a0ed0,3, 0x8a0ee0,5, 0x8a0f00,3, 0x8a0f20,5, 0x8a0f40,5, 0x8a0f60,3, 0x8a0f70,3, 0x8a0f80,5, 0x8a0fa0,3, 0x8a0fb0,3, 0x8a0fc0,3, 0x8a0fd0,3, 0x8a0fe0,3, 0x8a0ff0,3, 0x8a1000,6, 0x8a1020,3, 0x8a1040,3, 0x8a1050,3, 0x8a1060,1, 0x8a1080,3, 0x8a1090,3, 0x8a10a0,1, 0x8a10c0,3, 0x8a10e0,5, 0x8a1100,11, 0x8a1130,3, 0x8a1140,3, 0x8a1150,3, 0x8a1160,5, 0x8a1180,5, 0x8a11a0,3, 0x8a11b0,3, 0x8a11c0,3, 0x8a11d0,3, 0x8a11e0,2, 0x8a11f0,3, 0x8a1200,7, 0x8a1220,3, 0x8a1230,2, 0x8a1240,3, 0x8a1250,3, 0x8a1260,2, 0x8a1400,15, 0x8a1440,4, 0x8a1460,17, 0x8a14c0,6, 0x8a14e0,4, 0x8a14f4,11, 0x8a1524,54, 0x8a1604,1, 0x8a160c,1, 0x8a1614,1, 0x8a161c,15, 0x8a1660,6, 0x8a1680,4, 0x8a16a0,5, 0x8a16c0,4, 0x8a16e0,5, 0x8a1700,4, 0x8a1720,5, 0x8a1740,4, 0x8a1760,5, 0x8a1780,4, 0x8a17c0,15, 0x8a1800,4, 0x8a1880,19, 0x8a1900,1, 0x8a1980,24, 0x8a1a00,24, 0x8a1a80,24, 0x8a1b00,24, 0x8a1b80,1, 0x8a1b88,2, 0x8a2000,451, 0x8a2740,169, 0x8a3000,260, 0x8a3800,12, 0x8a3a04,1, 0x8a3a0c,8, 0x8a3a44,1, 0x8a3a50,7, 0x8a3a84,1, 0x8a3a94,27, 0x8a3b04,3, 0x8a3b14,3, 0x8a3b24,3, 0x8a3b34,21, 0x8a3ba0,5, 0x8a3bc0,1, 0x8a3c04,1, 0x8a3c14,3, 0x8a3c24,3, 0x8a3c34,3, 0x8a3c44,1, 0x8a3c60,8, 0x8a3c84,1, 0x8a3ca0,8, 0x8a3cc4,1, 0x8a3ce0,11, 0x8a3e04,1, 0x8a3e0c,2, 0x8a3e18,1, 0x8a3e20,3, 0x8a3e30,3, 0x8a3e40,1, 0x8a3e48,3, 0x8a3e58,3, 0x8a3e70,4, 0x8a4000,44, 0x8a4100,19, 0x8a4180,22, 0x8a4200,27, 0x8a4280,27, 0x8a4300,11, 0x8a4380,17, 0x8a4400,27, 0x8a4480,2, 0x8a44a0,6, 0x8a44c0,3, 0x8a44d0,4, 0x8a4500,35, 0x8a4600,34, 0x8a4700,26, 0x8a4780,23, 0x8a4800,15, 0x8a4848,4, 0x8a8000,20, 0x8a8100,49, 0x8a8200,20, 0x8a8300,49, 0x8a8400,20, 0x8a8500,49, 0x8a8600,20, 0x8a8700,49, 0x8a8800,8, 0x8a9000,20, 0x8a9100,49, 0x8a9200,20, 0x8a9300,49, 0x8a9400,20, 0x8a9500,49, 0x8a9600,20, 0x8a9700,49, 0x8a9800,8, 0x8aa000,15, 0x8aa040,3, 0x8aa050,1, 0x8aa058,4, 0x8aa080,10, 0x8aa0b0,3, 0x8aa0c4,7, 0x8aa100,44, 0x8aa200,5, 0x8aa218,5, 0x8aa280,20, 0x8aa300,1, 0x8aa800,52, 0x8aa8e0,5, 0x8aa900,5, 0x8aaa00,52, 0x8aaae0,5, 0x8aab00,5, 0x8aac00,18, 0x8aac50,10, 0x8aad00,36, 0x8aada0,5, 0x8aadc0,5, 0x8ab000,20, 0x8ab080,20, 0x8ab100,20, 0x8ab180,20, 0x8ab200,10, 0x8ab400,10, 0x8ab440,10, 0x8ab480,10, 0x8ab4c0,10, 0x8ab500,1, 0x8ab600,1, 0x8ab608,32, 0x8ab6a0,6, 0x8ab6c0,6, 0x8ab6e0,6, 0x8ab700,6, 0x8ab720,6, 0x8ab740,6, 0x8ab760,6, 0x8ab780,6, 0x8ab800,76, 0x8aba00,76, 0x8abc00,33, 0x8ac000,76, 0x8ac200,76, 0x8ac400,33, 0x8ac800,4, 0x8aca00,72, 0x8acc00,17, 0x8acc48,4, 0x8ace00,27, 0x8ace80,4, 0x8acec0,25, 0x8acf40,6, 0x8acf60,4, 0x8acf74,11, 0x8acfa4,16, 0x8ad000,12, 0x8ad040,2, 0x8ad050,1, 0x8ad058,5, 0x8ad070,3, 0x8c0000,23, 0x8c0080,23, 0x8c0100,23, 0x8c0180,23, 0x8c0200,13, 0x8c0404,1, 0x8c047c,33, 0x8c0504,1, 0x8c0514,3, 0x8c0524,1, 0x8c052c,1, 0x8c0600,96, 0x8c0784,1, 0x8c0790,4, 0x8c1000,76, 0x8c2000,582, 0x8c3000,13, 0x8c3400,27, 0x8c3480,4, 0x8c34c0,25, 0x8c3540,6, 0x8c3560,4, 0x8c3574,3, 0x8c3600,8, 0x8c3624,59, 0x8c3800,4, 0x8c3880,36, 0x8c3980,17, 0x8c3a00,6, 0x8c3a20,165, 0x8c3d00,12, 0x8c3d40,2, 0x8c3d50,3, 0x8c3d60,1, 0x8c3d80,12, 0x8c3dc0,2, 0x8c3dd0,3, 0x8c3de0,1, 0x8c3e00,12, 0x8c3e40,2, 0x8c3e50,3, 0x8c3e60,1, 0x8c3e80,12, 0x8c3ec0,2, 0x8c3ed0,3, 0x8c3ee0,1, 0x8c3f00,9, 0x8c3f80,3, 0x8c3f90,5, 0x8c3fa8,5, 0x8c3fc0,5, 0x8c3fd8,2, 0x8c4000,1, 0x8c4010,6, 0x8c4030,78, 0x8c4180,18, 0x8c8004,6, 0x8c9000,650, 0x8ca000,650, 0x8cb000,2, 0x8cb040,9, 0x8cb080,7, 0x8cc000,34, 0x8cc090,9, 0x8cc0b8,11, 0x8d0000,11, 0x8d0040,11, 0x8d0080,11, 0x8d00c0,11, 0x8d0104,1, 0x8d011c,10, 0x8d0148,2, 0x8d0154,1, 0x8d015c,24, 0x8d01c0,3, 0x8d01d0,3, 0x8d01e0,3, 0x8d01f0,33, 0x8d0280,3, 0x8d0290,3, 0x8d02a0,3, 0x8d02b0,3, 0x8d02c0,5, 0x8d02d8,8, 0x8d0400,145, 0x8d0800,4, 0x8d0880,25, 0x8d0900,5, 0x8d0920,1, 0x8d1000,11, 0x8d1040,11, 0x8d1080,11, 0x8d10c0,11, 0x8d1100,11, 0x8d1140,11, 0x8d1180,11, 0x8d11c0,11, 0x8d1200,1, 0x8d1208,19, 0x8d1260,2, 0x8d126c,3, 0x8d1280,5, 0x8d1400,3, 0x8d1410,30, 0x8d14a4,1, 0x8d14b4,23, 0x8d1520,6, 0x8d1540,3, 0x8d1560,2, 0x8d156c,2, 0x8d1580,2, 0x8d15c0,3, 0x8d15d0,3, 0x8d15e0,1, 0x8d1600,1, 0x8d1800,1, 0x8d1814,12, 0x8d1848,5, 0x8d1860,7, 0x8d1880,5, 0x8d1898,5, 0x8d18b0,5, 0x8d18c8,7, 0x8d18e8,7, 0x8d1908,5, 0x8d1920,11, 0x8d1950,55, 0x8d1a40,2, 0x8d1a4c,2, 0x8d1a60,2, 0x8d1a80,6, 0x8d1ac0,3, 0x8d1ad0,3, 0x8d1ae0,1, 0x8d1b00,1, 0x8d2000,2, 0x8d2010,47, 0x8d20e0,6, 0x8d2100,6, 0x8d2120,2, 0x8d212c,3, 0x8d2140,6, 0x8d2200,5, 0x8d2224,1, 0x8d2234,3, 0x8d2280,20, 0x8d2404,1, 0x8d24e4,71, 0x8d2604,1, 0x8d2670,38, 0x8d2800,27, 0x8d2880,4, 0x8d28c0,25, 0x8d2940,6, 0x8d2960,4, 0x8d2974,11, 0x8d29a4,7, 0x8d2a00,12, 0x8d2a40,2, 0x8d2a50,1, 0x8d2a58,5, 0x8d2a70,5, 0x8e0000,19, 0x8e0080,19, 0x8e0100,19, 0x8e0180,19, 0x8e0200,12, 0x8e0280,1, 0x8e02a0,6, 0x8e02c0,6, 0x8e02e0,6, 0x8e0300,6, 0x8e0320,6, 0x8e0340,6, 0x8e0360,6, 0x8e0380,9, 0x8e03c0,13, 0x8e0400,3, 0x8e0410,159, 0x8e0690,16, 0x8e06e0,5, 0x8e0700,5, 0x8e0720,5, 0x8e0740,5, 0x8e0760,5, 0x8e0780,5, 0x8e07a0,5, 0x8e07c0,5, 0x8e07e0,6, 0x8e0800,6, 0x8e0820,6, 0x8e0840,6, 0x8e0860,6, 0x8e0880,6, 0x8e08a0,6, 0x8e08c0,6, 0x8e08e0,6, 0x8e0900,6, 0x8e0920,6, 0x8e0940,6, 0x8e0960,6, 0x8e0980,6, 0x8e09a0,6, 0x8e09c0,6, 0x8e0a00,22, 0x8e0a80,1, 0x8e0a88,3, 0x8e0aa0,5, 0x8e0ac0,1, 0x8e0ad0,3, 0x8e0ae0,1, 0x8e0af0,3, 0x8e0b00,1, 0x8e0b10,3, 0x8e0b20,1, 0x8e0b30,3, 0x8e0b40,1, 0x8e0b48,3, 0x8e0b58,3, 0x8e0b68,3, 0x8e0b78,3, 0x8e0b88,3, 0x8e0ba0,3, 0x8e0bb0,1, 0x8e0bc0,3, 0x8e0bd0,1, 0x8e0be0,3, 0x8e0bf0,1, 0x8e0c00,3, 0x8e0c10,1, 0x8e0c20,3, 0x8e0c30,1, 0x8e0c40,3, 0x8e0c50,1, 0x8e0c80,6, 0x8e0ca0,6, 0x8e0cc0,1, 0x8e0d00,1, 0x8e0d10,3, 0x8e0d20,1, 0x8e0d30,3, 0x8e0d40,1, 0x8e0d60,5, 0x8e0d80,1, 0x8e0d90,3, 0x8e0da0,1, 0x8e0dc0,5, 0x8e0de0,1, 0x8e0df0,3, 0x8e0e00,1, 0x8e0e10,3, 0x8e0e20,5, 0x8e0e40,2, 0x8e0e50,3, 0x8e0e60,5, 0x8e0e80,2, 0x8e0e90,3, 0x8e0ea0,3, 0x8e0eb0,3, 0x8e0ec0,3, 0x8e0ed0,3, 0x8e0ee0,5, 0x8e0f00,3, 0x8e0f20,5, 0x8e0f40,5, 0x8e0f60,3, 0x8e0f70,3, 0x8e0f80,5, 0x8e0fa0,3, 0x8e0fb0,3, 0x8e0fc0,3, 0x8e0fd0,3, 0x8e0fe0,3, 0x8e0ff0,3, 0x8e1000,6, 0x8e1020,3, 0x8e1040,3, 0x8e1050,3, 0x8e1060,1, 0x8e1080,3, 0x8e1090,3, 0x8e10a0,1, 0x8e10c0,3, 0x8e10e0,5, 0x8e1100,11, 0x8e1130,3, 0x8e1140,3, 0x8e1150,3, 0x8e1160,5, 0x8e1180,5, 0x8e11a0,3, 0x8e11b0,3, 0x8e11c0,3, 0x8e11d0,3, 0x8e11e0,2, 0x8e11f0,3, 0x8e1200,7, 0x8e1220,3, 0x8e1230,2, 0x8e1240,3, 0x8e1250,3, 0x8e1260,2, 0x8e1400,15, 0x8e1440,4, 0x8e1460,17, 0x8e14c0,6, 0x8e14e0,4, 0x8e14f4,11, 0x8e1524,54, 0x8e1604,1, 0x8e160c,1, 0x8e1614,1, 0x8e161c,15, 0x8e1660,6, 0x8e1680,4, 0x8e16a0,5, 0x8e16c0,4, 0x8e16e0,5, 0x8e1700,4, 0x8e1720,5, 0x8e1740,4, 0x8e1760,5, 0x8e1780,4, 0x8e17c0,15, 0x8e1800,4, 0x8e1880,19, 0x8e1900,1, 0x8e1980,24, 0x8e1a00,24, 0x8e1a80,24, 0x8e1b00,24, 0x8e1b80,1, 0x8e1b88,2, 0x8e2000,451, 0x8e2740,169, 0x8e3000,260, 0x8e3800,12, 0x8e3a04,1, 0x8e3a0c,8, 0x8e3a44,1, 0x8e3a50,7, 0x8e3a84,1, 0x8e3a94,27, 0x8e3b04,3, 0x8e3b14,3, 0x8e3b24,3, 0x8e3b34,21, 0x8e3ba0,5, 0x8e3bc0,1, 0x8e3c04,1, 0x8e3c14,3, 0x8e3c24,3, 0x8e3c34,3, 0x8e3c44,1, 0x8e3c60,8, 0x8e3c84,1, 0x8e3ca0,8, 0x8e3cc4,1, 0x8e3ce0,11, 0x8e3e04,1, 0x8e3e0c,2, 0x8e3e18,1, 0x8e3e20,3, 0x8e3e30,3, 0x8e3e40,1, 0x8e3e48,3, 0x8e3e58,3, 0x8e3e70,4, 0x8e4000,44, 0x8e4100,19, 0x8e4180,22, 0x8e4200,27, 0x8e4280,27, 0x8e4300,11, 0x8e4380,17, 0x8e4400,27, 0x8e4480,2, 0x8e44a0,6, 0x8e44c0,3, 0x8e44d0,4, 0x8e4500,35, 0x8e4600,34, 0x8e4700,26, 0x8e4780,23, 0x8e4800,15, 0x8e4848,4, 0x8e8000,20, 0x8e8100,49, 0x8e8200,20, 0x8e8300,49, 0x8e8400,20, 0x8e8500,49, 0x8e8600,20, 0x8e8700,49, 0x8e8800,8, 0x8e9000,20, 0x8e9100,49, 0x8e9200,20, 0x8e9300,49, 0x8e9400,20, 0x8e9500,49, 0x8e9600,20, 0x8e9700,49, 0x8e9800,8, 0x8ea000,15, 0x8ea040,3, 0x8ea050,1, 0x8ea058,4, 0x8ea080,10, 0x8ea0b0,3, 0x8ea0c4,7, 0x8ea100,44, 0x8ea200,5, 0x8ea218,5, 0x8ea280,20, 0x8ea300,1, 0x8ea800,52, 0x8ea8e0,5, 0x8ea900,5, 0x8eaa00,52, 0x8eaae0,5, 0x8eab00,5, 0x8eac00,18, 0x8eac50,10, 0x8ead00,36, 0x8eada0,5, 0x8eadc0,5, 0x8eb000,20, 0x8eb080,20, 0x8eb100,20, 0x8eb180,20, 0x8eb200,10, 0x8eb400,10, 0x8eb440,10, 0x8eb480,10, 0x8eb4c0,10, 0x8eb500,1, 0x8eb600,1, 0x8eb608,32, 0x8eb6a0,6, 0x8eb6c0,6, 0x8eb6e0,6, 0x8eb700,6, 0x8eb720,6, 0x8eb740,6, 0x8eb760,6, 0x8eb780,6, 0x8eb800,76, 0x8eba00,76, 0x8ebc00,33, 0x8ec000,76, 0x8ec200,76, 0x8ec400,33, 0x8ec800,4, 0x8eca00,72, 0x8ecc00,17, 0x8ecc48,4, 0x8ece00,27, 0x8ece80,4, 0x8ecec0,25, 0x8ecf40,6, 0x8ecf60,4, 0x8ecf74,11, 0x8ecfa4,16, 0x8ed000,12, 0x8ed040,2, 0x8ed050,1, 0x8ed058,5, 0x8ed070,3, 0x900000,23, 0x900080,23, 0x900100,23, 0x900180,23, 0x900200,13, 0x900404,1, 0x90047c,33, 0x900504,1, 0x900514,3, 0x900524,1, 0x90052c,1, 0x900600,96, 0x900784,1, 0x900790,4, 0x901000,76, 0x902000,582, 0x903000,13, 0x903400,27, 0x903480,4, 0x9034c0,25, 0x903540,6, 0x903560,4, 0x903574,3, 0x903600,8, 0x903624,59, 0x903800,4, 0x903880,36, 0x903980,17, 0x903a00,6, 0x903a20,165, 0x903d00,12, 0x903d40,2, 0x903d50,3, 0x903d60,1, 0x903d80,12, 0x903dc0,2, 0x903dd0,3, 0x903de0,1, 0x903e00,12, 0x903e40,2, 0x903e50,3, 0x903e60,1, 0x903e80,12, 0x903ec0,2, 0x903ed0,3, 0x903ee0,1, 0x903f00,9, 0x903f80,3, 0x903f90,5, 0x903fa8,5, 0x903fc0,5, 0x903fd8,2, 0x904000,1, 0x904010,6, 0x904030,78, 0x904180,18, 0x908004,6, 0x909000,650, 0x90a000,650, 0x90b000,2, 0x90b040,9, 0x90b080,7, 0x90c000,34, 0x90c090,9, 0x90c0b8,11, 0x910000,11, 0x910040,11, 0x910080,11, 0x9100c0,11, 0x910104,1, 0x91011c,10, 0x910148,2, 0x910154,1, 0x91015c,24, 0x9101c0,3, 0x9101d0,3, 0x9101e0,3, 0x9101f0,33, 0x910280,3, 0x910290,3, 0x9102a0,3, 0x9102b0,3, 0x9102c0,5, 0x9102d8,8, 0x910400,145, 0x910800,4, 0x910880,25, 0x910900,5, 0x910920,1, 0x911000,11, 0x911040,11, 0x911080,11, 0x9110c0,11, 0x911100,11, 0x911140,11, 0x911180,11, 0x9111c0,11, 0x911200,1, 0x911208,19, 0x911260,2, 0x91126c,3, 0x911280,5, 0x911400,3, 0x911410,30, 0x9114a4,1, 0x9114b4,23, 0x911520,6, 0x911540,3, 0x911560,2, 0x91156c,2, 0x911580,2, 0x9115c0,3, 0x9115d0,3, 0x9115e0,1, 0x911600,1, 0x911800,1, 0x911814,12, 0x911848,5, 0x911860,7, 0x911880,5, 0x911898,5, 0x9118b0,5, 0x9118c8,7, 0x9118e8,7, 0x911908,5, 0x911920,11, 0x911950,55, 0x911a40,2, 0x911a4c,2, 0x911a60,2, 0x911a80,6, 0x911ac0,3, 0x911ad0,3, 0x911ae0,1, 0x911b00,1, 0x912000,2, 0x912010,47, 0x9120e0,6, 0x912100,6, 0x912120,2, 0x91212c,3, 0x912140,6, 0x912200,5, 0x912224,1, 0x912234,3, 0x912280,20, 0x912404,1, 0x9124e4,71, 0x912604,1, 0x912670,38, 0x912800,27, 0x912880,4, 0x9128c0,25, 0x912940,6, 0x912960,4, 0x912974,11, 0x9129a4,7, 0x912a00,12, 0x912a40,2, 0x912a50,1, 0x912a58,5, 0x912a70,5, 0x920000,19, 0x920080,19, 0x920100,19, 0x920180,19, 0x920200,12, 0x920280,1, 0x9202a0,6, 0x9202c0,6, 0x9202e0,6, 0x920300,6, 0x920320,6, 0x920340,6, 0x920360,6, 0x920380,9, 0x9203c0,13, 0x920400,3, 0x920410,159, 0x920690,16, 0x9206e0,5, 0x920700,5, 0x920720,5, 0x920740,5, 0x920760,5, 0x920780,5, 0x9207a0,5, 0x9207c0,5, 0x9207e0,6, 0x920800,6, 0x920820,6, 0x920840,6, 0x920860,6, 0x920880,6, 0x9208a0,6, 0x9208c0,6, 0x9208e0,6, 0x920900,6, 0x920920,6, 0x920940,6, 0x920960,6, 0x920980,6, 0x9209a0,6, 0x9209c0,6, 0x920a00,22, 0x920a80,1, 0x920a88,3, 0x920aa0,5, 0x920ac0,1, 0x920ad0,3, 0x920ae0,1, 0x920af0,3, 0x920b00,1, 0x920b10,3, 0x920b20,1, 0x920b30,3, 0x920b40,1, 0x920b48,3, 0x920b58,3, 0x920b68,3, 0x920b78,3, 0x920b88,3, 0x920ba0,3, 0x920bb0,1, 0x920bc0,3, 0x920bd0,1, 0x920be0,3, 0x920bf0,1, 0x920c00,3, 0x920c10,1, 0x920c20,3, 0x920c30,1, 0x920c40,3, 0x920c50,1, 0x920c80,6, 0x920ca0,6, 0x920cc0,1, 0x920d00,1, 0x920d10,3, 0x920d20,1, 0x920d30,3, 0x920d40,1, 0x920d60,5, 0x920d80,1, 0x920d90,3, 0x920da0,1, 0x920dc0,5, 0x920de0,1, 0x920df0,3, 0x920e00,1, 0x920e10,3, 0x920e20,5, 0x920e40,2, 0x920e50,3, 0x920e60,5, 0x920e80,2, 0x920e90,3, 0x920ea0,3, 0x920eb0,3, 0x920ec0,3, 0x920ed0,3, 0x920ee0,5, 0x920f00,3, 0x920f20,5, 0x920f40,5, 0x920f60,3, 0x920f70,3, 0x920f80,5, 0x920fa0,3, 0x920fb0,3, 0x920fc0,3, 0x920fd0,3, 0x920fe0,3, 0x920ff0,3, 0x921000,6, 0x921020,3, 0x921040,3, 0x921050,3, 0x921060,1, 0x921080,3, 0x921090,3, 0x9210a0,1, 0x9210c0,3, 0x9210e0,5, 0x921100,11, 0x921130,3, 0x921140,3, 0x921150,3, 0x921160,5, 0x921180,5, 0x9211a0,3, 0x9211b0,3, 0x9211c0,3, 0x9211d0,3, 0x9211e0,2, 0x9211f0,3, 0x921200,7, 0x921220,3, 0x921230,2, 0x921240,3, 0x921250,3, 0x921260,2, 0x921400,15, 0x921440,4, 0x921460,17, 0x9214c0,6, 0x9214e0,4, 0x9214f4,11, 0x921524,54, 0x921604,1, 0x92160c,1, 0x921614,1, 0x92161c,15, 0x921660,6, 0x921680,4, 0x9216a0,5, 0x9216c0,4, 0x9216e0,5, 0x921700,4, 0x921720,5, 0x921740,4, 0x921760,5, 0x921780,4, 0x9217c0,15, 0x921800,4, 0x921880,19, 0x921900,1, 0x921980,24, 0x921a00,24, 0x921a80,24, 0x921b00,24, 0x921b80,1, 0x921b88,2, 0x922000,451, 0x922740,169, 0x923000,260, 0x923800,12, 0x923a04,1, 0x923a0c,8, 0x923a44,1, 0x923a50,7, 0x923a84,1, 0x923a94,27, 0x923b04,3, 0x923b14,3, 0x923b24,3, 0x923b34,21, 0x923ba0,5, 0x923bc0,1, 0x923c04,1, 0x923c14,3, 0x923c24,3, 0x923c34,3, 0x923c44,1, 0x923c60,8, 0x923c84,1, 0x923ca0,8, 0x923cc4,1, 0x923ce0,11, 0x923e04,1, 0x923e0c,2, 0x923e18,1, 0x923e20,3, 0x923e30,3, 0x923e40,1, 0x923e48,3, 0x923e58,3, 0x923e70,4, 0x924000,44, 0x924100,19, 0x924180,22, 0x924200,27, 0x924280,27, 0x924300,11, 0x924380,17, 0x924400,27, 0x924480,2, 0x9244a0,6, 0x9244c0,3, 0x9244d0,4, 0x924500,35, 0x924600,34, 0x924700,26, 0x924780,23, 0x924800,15, 0x924848,4, 0x928000,20, 0x928100,49, 0x928200,20, 0x928300,49, 0x928400,20, 0x928500,49, 0x928600,20, 0x928700,49, 0x928800,8, 0x929000,20, 0x929100,49, 0x929200,20, 0x929300,49, 0x929400,20, 0x929500,49, 0x929600,20, 0x929700,49, 0x929800,8, 0x92a000,15, 0x92a040,3, 0x92a050,1, 0x92a058,4, 0x92a080,10, 0x92a0b0,3, 0x92a0c4,7, 0x92a100,44, 0x92a200,5, 0x92a218,5, 0x92a280,20, 0x92a300,1, 0x92a800,52, 0x92a8e0,5, 0x92a900,5, 0x92aa00,52, 0x92aae0,5, 0x92ab00,5, 0x92ac00,18, 0x92ac50,10, 0x92ad00,36, 0x92ada0,5, 0x92adc0,5, 0x92b000,20, 0x92b080,20, 0x92b100,20, 0x92b180,20, 0x92b200,10, 0x92b400,10, 0x92b440,10, 0x92b480,10, 0x92b4c0,10, 0x92b500,1, 0x92b600,1, 0x92b608,32, 0x92b6a0,6, 0x92b6c0,6, 0x92b6e0,6, 0x92b700,6, 0x92b720,6, 0x92b740,6, 0x92b760,6, 0x92b780,6, 0x92b800,76, 0x92ba00,76, 0x92bc00,33, 0x92c000,76, 0x92c200,76, 0x92c400,33, 0x92c800,4, 0x92ca00,72, 0x92cc00,17, 0x92cc48,4, 0x92ce00,27, 0x92ce80,4, 0x92cec0,25, 0x92cf40,6, 0x92cf60,4, 0x92cf74,11, 0x92cfa4,16, 0x92d000,12, 0x92d040,2, 0x92d050,1, 0x92d058,5, 0x92d070,3, 0x940000,23, 0x940080,23, 0x940100,23, 0x940180,23, 0x940200,13, 0x940404,1, 0x94047c,33, 0x940504,1, 0x940514,3, 0x940524,1, 0x94052c,1, 0x940600,96, 0x940784,1, 0x940790,4, 0x941000,76, 0x942000,582, 0x943000,13, 0x943400,27, 0x943480,4, 0x9434c0,25, 0x943540,6, 0x943560,4, 0x943574,3, 0x943600,8, 0x943624,59, 0x943800,4, 0x943880,36, 0x943980,17, 0x943a00,6, 0x943a20,165, 0x943d00,12, 0x943d40,2, 0x943d50,3, 0x943d60,1, 0x943d80,12, 0x943dc0,2, 0x943dd0,3, 0x943de0,1, 0x943e00,12, 0x943e40,2, 0x943e50,3, 0x943e60,1, 0x943e80,12, 0x943ec0,2, 0x943ed0,3, 0x943ee0,1, 0x943f00,9, 0x943f80,3, 0x943f90,5, 0x943fa8,5, 0x943fc0,5, 0x943fd8,2, 0x944000,1, 0x944010,6, 0x944030,78, 0x944180,18, 0x948004,6, 0x949000,650, 0x94a000,650, 0x94b000,2, 0x94b040,9, 0x94b080,7, 0x94c000,34, 0x94c090,9, 0x94c0b8,11, 0x950000,11, 0x950040,11, 0x950080,11, 0x9500c0,11, 0x950104,1, 0x95011c,10, 0x950148,2, 0x950154,1, 0x95015c,24, 0x9501c0,3, 0x9501d0,3, 0x9501e0,3, 0x9501f0,33, 0x950280,3, 0x950290,3, 0x9502a0,3, 0x9502b0,3, 0x9502c0,5, 0x9502d8,8, 0x950400,145, 0x950800,4, 0x950880,25, 0x950900,5, 0x950920,1, 0x951000,11, 0x951040,11, 0x951080,11, 0x9510c0,11, 0x951100,11, 0x951140,11, 0x951180,11, 0x9511c0,11, 0x951200,1, 0x951208,19, 0x951260,2, 0x95126c,3, 0x951280,5, 0x951400,3, 0x951410,30, 0x9514a4,1, 0x9514b4,23, 0x951520,6, 0x951540,3, 0x951560,2, 0x95156c,2, 0x951580,2, 0x9515c0,3, 0x9515d0,3, 0x9515e0,1, 0x951600,1, 0x951800,1, 0x951814,12, 0x951848,5, 0x951860,7, 0x951880,5, 0x951898,5, 0x9518b0,5, 0x9518c8,7, 0x9518e8,7, 0x951908,5, 0x951920,11, 0x951950,55, 0x951a40,2, 0x951a4c,2, 0x951a60,2, 0x951a80,6, 0x951ac0,3, 0x951ad0,3, 0x951ae0,1, 0x951b00,1, 0x952000,2, 0x952010,47, 0x9520e0,6, 0x952100,6, 0x952120,2, 0x95212c,3, 0x952140,6, 0x952200,5, 0x952224,1, 0x952234,3, 0x952280,20, 0x952404,1, 0x9524e4,71, 0x952604,1, 0x952670,38, 0x952800,27, 0x952880,4, 0x9528c0,25, 0x952940,6, 0x952960,4, 0x952974,11, 0x9529a4,7, 0x952a00,12, 0x952a40,2, 0x952a50,1, 0x952a58,5, 0x952a70,5, 0x960000,19, 0x960080,19, 0x960100,19, 0x960180,19, 0x960200,12, 0x960280,1, 0x9602a0,6, 0x9602c0,6, 0x9602e0,6, 0x960300,6, 0x960320,6, 0x960340,6, 0x960360,6, 0x960380,9, 0x9603c0,13, 0x960400,3, 0x960410,159, 0x960690,16, 0x9606e0,5, 0x960700,5, 0x960720,5, 0x960740,5, 0x960760,5, 0x960780,5, 0x9607a0,5, 0x9607c0,5, 0x9607e0,6, 0x960800,6, 0x960820,6, 0x960840,6, 0x960860,6, 0x960880,6, 0x9608a0,6, 0x9608c0,6, 0x9608e0,6, 0x960900,6, 0x960920,6, 0x960940,6, 0x960960,6, 0x960980,6, 0x9609a0,6, 0x9609c0,6, 0x960a00,22, 0x960a80,1, 0x960a88,3, 0x960aa0,5, 0x960ac0,1, 0x960ad0,3, 0x960ae0,1, 0x960af0,3, 0x960b00,1, 0x960b10,3, 0x960b20,1, 0x960b30,3, 0x960b40,1, 0x960b48,3, 0x960b58,3, 0x960b68,3, 0x960b78,3, 0x960b88,3, 0x960ba0,3, 0x960bb0,1, 0x960bc0,3, 0x960bd0,1, 0x960be0,3, 0x960bf0,1, 0x960c00,3, 0x960c10,1, 0x960c20,3, 0x960c30,1, 0x960c40,3, 0x960c50,1, 0x960c80,6, 0x960ca0,6, 0x960cc0,1, 0x960d00,1, 0x960d10,3, 0x960d20,1, 0x960d30,3, 0x960d40,1, 0x960d60,5, 0x960d80,1, 0x960d90,3, 0x960da0,1, 0x960dc0,5, 0x960de0,1, 0x960df0,3, 0x960e00,1, 0x960e10,3, 0x960e20,5, 0x960e40,2, 0x960e50,3, 0x960e60,5, 0x960e80,2, 0x960e90,3, 0x960ea0,3, 0x960eb0,3, 0x960ec0,3, 0x960ed0,3, 0x960ee0,5, 0x960f00,3, 0x960f20,5, 0x960f40,5, 0x960f60,3, 0x960f70,3, 0x960f80,5, 0x960fa0,3, 0x960fb0,3, 0x960fc0,3, 0x960fd0,3, 0x960fe0,3, 0x960ff0,3, 0x961000,6, 0x961020,3, 0x961040,3, 0x961050,3, 0x961060,1, 0x961080,3, 0x961090,3, 0x9610a0,1, 0x9610c0,3, 0x9610e0,5, 0x961100,11, 0x961130,3, 0x961140,3, 0x961150,3, 0x961160,5, 0x961180,5, 0x9611a0,3, 0x9611b0,3, 0x9611c0,3, 0x9611d0,3, 0x9611e0,2, 0x9611f0,3, 0x961200,7, 0x961220,3, 0x961230,2, 0x961240,3, 0x961250,3, 0x961260,2, 0x961400,15, 0x961440,4, 0x961460,17, 0x9614c0,6, 0x9614e0,4, 0x9614f4,11, 0x961524,54, 0x961604,1, 0x96160c,1, 0x961614,1, 0x96161c,15, 0x961660,6, 0x961680,4, 0x9616a0,5, 0x9616c0,4, 0x9616e0,5, 0x961700,4, 0x961720,5, 0x961740,4, 0x961760,5, 0x961780,4, 0x9617c0,15, 0x961800,4, 0x961880,19, 0x961900,1, 0x961980,24, 0x961a00,24, 0x961a80,24, 0x961b00,24, 0x961b80,1, 0x961b88,2, 0x962000,451, 0x962740,169, 0x963000,260, 0x963800,12, 0x963a04,1, 0x963a0c,8, 0x963a44,1, 0x963a50,7, 0x963a84,1, 0x963a94,27, 0x963b04,3, 0x963b14,3, 0x963b24,3, 0x963b34,21, 0x963ba0,5, 0x963bc0,1, 0x963c04,1, 0x963c14,3, 0x963c24,3, 0x963c34,3, 0x963c44,1, 0x963c60,8, 0x963c84,1, 0x963ca0,8, 0x963cc4,1, 0x963ce0,11, 0x963e04,1, 0x963e0c,2, 0x963e18,1, 0x963e20,3, 0x963e30,3, 0x963e40,1, 0x963e48,3, 0x963e58,3, 0x963e70,4, 0x964000,44, 0x964100,19, 0x964180,22, 0x964200,27, 0x964280,27, 0x964300,11, 0x964380,17, 0x964400,27, 0x964480,2, 0x9644a0,6, 0x9644c0,3, 0x9644d0,4, 0x964500,35, 0x964600,34, 0x964700,26, 0x964780,23, 0x964800,15, 0x964848,4, 0x968000,20, 0x968100,49, 0x968200,20, 0x968300,49, 0x968400,20, 0x968500,49, 0x968600,20, 0x968700,49, 0x968800,8, 0x969000,20, 0x969100,49, 0x969200,20, 0x969300,49, 0x969400,20, 0x969500,49, 0x969600,20, 0x969700,49, 0x969800,8, 0x96a000,15, 0x96a040,3, 0x96a050,1, 0x96a058,4, 0x96a080,10, 0x96a0b0,3, 0x96a0c4,7, 0x96a100,44, 0x96a200,5, 0x96a218,5, 0x96a280,20, 0x96a300,1, 0x96a800,52, 0x96a8e0,5, 0x96a900,5, 0x96aa00,52, 0x96aae0,5, 0x96ab00,5, 0x96ac00,18, 0x96ac50,10, 0x96ad00,36, 0x96ada0,5, 0x96adc0,5, 0x96b000,20, 0x96b080,20, 0x96b100,20, 0x96b180,20, 0x96b200,10, 0x96b400,10, 0x96b440,10, 0x96b480,10, 0x96b4c0,10, 0x96b500,1, 0x96b600,1, 0x96b608,32, 0x96b6a0,6, 0x96b6c0,6, 0x96b6e0,6, 0x96b700,6, 0x96b720,6, 0x96b740,6, 0x96b760,6, 0x96b780,6, 0x96b800,76, 0x96ba00,76, 0x96bc00,33, 0x96c000,76, 0x96c200,76, 0x96c400,33, 0x96c800,4, 0x96ca00,72, 0x96cc00,17, 0x96cc48,4, 0x96ce00,27, 0x96ce80,4, 0x96cec0,25, 0x96cf40,6, 0x96cf60,4, 0x96cf74,11, 0x96cfa4,16, 0x96d000,12, 0x96d040,2, 0x96d050,1, 0x96d058,5, 0x96d070,3, 0x980000,23, 0x980080,23, 0x980100,23, 0x980180,23, 0x980200,13, 0x980404,1, 0x98047c,33, 0x980504,1, 0x980514,3, 0x980524,1, 0x98052c,1, 0x980600,96, 0x980784,1, 0x980790,4, 0x981000,76, 0x982000,582, 0x983000,13, 0x983400,27, 0x983480,4, 0x9834c0,25, 0x983540,6, 0x983560,4, 0x983574,3, 0x983600,8, 0x983624,59, 0x983800,4, 0x983880,36, 0x983980,17, 0x983a00,6, 0x983a20,165, 0x983d00,12, 0x983d40,2, 0x983d50,3, 0x983d60,1, 0x983d80,12, 0x983dc0,2, 0x983dd0,3, 0x983de0,1, 0x983e00,12, 0x983e40,2, 0x983e50,3, 0x983e60,1, 0x983e80,12, 0x983ec0,2, 0x983ed0,3, 0x983ee0,1, 0x983f00,9, 0x983f80,3, 0x983f90,5, 0x983fa8,5, 0x983fc0,5, 0x983fd8,2, 0x984000,1, 0x984010,6, 0x984030,78, 0x984180,18, 0x988004,6, 0x989000,650, 0x98a000,650, 0x98b000,2, 0x98b040,9, 0x98b080,7, 0x98c000,34, 0x98c090,9, 0x98c0b8,11, 0x990000,11, 0x990040,11, 0x990080,11, 0x9900c0,11, 0x990104,1, 0x99011c,10, 0x990148,2, 0x990154,1, 0x99015c,24, 0x9901c0,3, 0x9901d0,3, 0x9901e0,3, 0x9901f0,33, 0x990280,3, 0x990290,3, 0x9902a0,3, 0x9902b0,3, 0x9902c0,5, 0x9902d8,8, 0x990400,145, 0x990800,4, 0x990880,25, 0x990900,5, 0x990920,1, 0x991000,11, 0x991040,11, 0x991080,11, 0x9910c0,11, 0x991100,11, 0x991140,11, 0x991180,11, 0x9911c0,11, 0x991200,1, 0x991208,19, 0x991260,2, 0x99126c,3, 0x991280,5, 0x991400,3, 0x991410,30, 0x9914a4,1, 0x9914b4,23, 0x991520,6, 0x991540,3, 0x991560,2, 0x99156c,2, 0x991580,2, 0x9915c0,3, 0x9915d0,3, 0x9915e0,1, 0x991600,1, 0x991800,1, 0x991814,12, 0x991848,5, 0x991860,7, 0x991880,5, 0x991898,5, 0x9918b0,5, 0x9918c8,7, 0x9918e8,7, 0x991908,5, 0x991920,11, 0x991950,55, 0x991a40,2, 0x991a4c,2, 0x991a60,2, 0x991a80,6, 0x991ac0,3, 0x991ad0,3, 0x991ae0,1, 0x991b00,1, 0x992000,2, 0x992010,47, 0x9920e0,6, 0x992100,6, 0x992120,2, 0x99212c,3, 0x992140,6, 0x992200,5, 0x992224,1, 0x992234,3, 0x992280,20, 0x992404,1, 0x9924e4,71, 0x992604,1, 0x992670,38, 0x992800,27, 0x992880,4, 0x9928c0,25, 0x992940,6, 0x992960,4, 0x992974,11, 0x9929a4,7, 0x992a00,12, 0x992a40,2, 0x992a50,1, 0x992a58,5, 0x992a70,5, 0x9a0000,19, 0x9a0080,19, 0x9a0100,19, 0x9a0180,19, 0x9a0200,12, 0x9a0280,1, 0x9a02a0,6, 0x9a02c0,6, 0x9a02e0,6, 0x9a0300,6, 0x9a0320,6, 0x9a0340,6, 0x9a0360,6, 0x9a0380,9, 0x9a03c0,13, 0x9a0400,3, 0x9a0410,159, 0x9a0690,16, 0x9a06e0,5, 0x9a0700,5, 0x9a0720,5, 0x9a0740,5, 0x9a0760,5, 0x9a0780,5, 0x9a07a0,5, 0x9a07c0,5, 0x9a07e0,6, 0x9a0800,6, 0x9a0820,6, 0x9a0840,6, 0x9a0860,6, 0x9a0880,6, 0x9a08a0,6, 0x9a08c0,6, 0x9a08e0,6, 0x9a0900,6, 0x9a0920,6, 0x9a0940,6, 0x9a0960,6, 0x9a0980,6, 0x9a09a0,6, 0x9a09c0,6, 0x9a0a00,22, 0x9a0a80,1, 0x9a0a88,3, 0x9a0aa0,5, 0x9a0ac0,1, 0x9a0ad0,3, 0x9a0ae0,1, 0x9a0af0,3, 0x9a0b00,1, 0x9a0b10,3, 0x9a0b20,1, 0x9a0b30,3, 0x9a0b40,1, 0x9a0b48,3, 0x9a0b58,3, 0x9a0b68,3, 0x9a0b78,3, 0x9a0b88,3, 0x9a0ba0,3, 0x9a0bb0,1, 0x9a0bc0,3, 0x9a0bd0,1, 0x9a0be0,3, 0x9a0bf0,1, 0x9a0c00,3, 0x9a0c10,1, 0x9a0c20,3, 0x9a0c30,1, 0x9a0c40,3, 0x9a0c50,1, 0x9a0c80,6, 0x9a0ca0,6, 0x9a0cc0,1, 0x9a0d00,1, 0x9a0d10,3, 0x9a0d20,1, 0x9a0d30,3, 0x9a0d40,1, 0x9a0d60,5, 0x9a0d80,1, 0x9a0d90,3, 0x9a0da0,1, 0x9a0dc0,5, 0x9a0de0,1, 0x9a0df0,3, 0x9a0e00,1, 0x9a0e10,3, 0x9a0e20,5, 0x9a0e40,2, 0x9a0e50,3, 0x9a0e60,5, 0x9a0e80,2, 0x9a0e90,3, 0x9a0ea0,3, 0x9a0eb0,3, 0x9a0ec0,3, 0x9a0ed0,3, 0x9a0ee0,5, 0x9a0f00,3, 0x9a0f20,5, 0x9a0f40,5, 0x9a0f60,3, 0x9a0f70,3, 0x9a0f80,5, 0x9a0fa0,3, 0x9a0fb0,3, 0x9a0fc0,3, 0x9a0fd0,3, 0x9a0fe0,3, 0x9a0ff0,3, 0x9a1000,6, 0x9a1020,3, 0x9a1040,3, 0x9a1050,3, 0x9a1060,1, 0x9a1080,3, 0x9a1090,3, 0x9a10a0,1, 0x9a10c0,3, 0x9a10e0,5, 0x9a1100,11, 0x9a1130,3, 0x9a1140,3, 0x9a1150,3, 0x9a1160,5, 0x9a1180,5, 0x9a11a0,3, 0x9a11b0,3, 0x9a11c0,3, 0x9a11d0,3, 0x9a11e0,2, 0x9a11f0,3, 0x9a1200,7, 0x9a1220,3, 0x9a1230,2, 0x9a1240,3, 0x9a1250,3, 0x9a1260,2, 0x9a1400,15, 0x9a1440,4, 0x9a1460,17, 0x9a14c0,6, 0x9a14e0,4, 0x9a14f4,11, 0x9a1524,54, 0x9a1604,1, 0x9a160c,1, 0x9a1614,1, 0x9a161c,15, 0x9a1660,6, 0x9a1680,4, 0x9a16a0,5, 0x9a16c0,4, 0x9a16e0,5, 0x9a1700,4, 0x9a1720,5, 0x9a1740,4, 0x9a1760,5, 0x9a1780,4, 0x9a17c0,15, 0x9a1800,4, 0x9a1880,19, 0x9a1900,1, 0x9a1980,24, 0x9a1a00,24, 0x9a1a80,24, 0x9a1b00,24, 0x9a1b80,1, 0x9a1b88,2, 0x9a2000,451, 0x9a2740,169, 0x9a3000,260, 0x9a3800,12, 0x9a3a04,1, 0x9a3a0c,8, 0x9a3a44,1, 0x9a3a50,7, 0x9a3a84,1, 0x9a3a94,27, 0x9a3b04,3, 0x9a3b14,3, 0x9a3b24,3, 0x9a3b34,21, 0x9a3ba0,5, 0x9a3bc0,1, 0x9a3c04,1, 0x9a3c14,3, 0x9a3c24,3, 0x9a3c34,3, 0x9a3c44,1, 0x9a3c60,8, 0x9a3c84,1, 0x9a3ca0,8, 0x9a3cc4,1, 0x9a3ce0,11, 0x9a3e04,1, 0x9a3e0c,2, 0x9a3e18,1, 0x9a3e20,3, 0x9a3e30,3, 0x9a3e40,1, 0x9a3e48,3, 0x9a3e58,3, 0x9a3e70,4, 0x9a4000,44, 0x9a4100,19, 0x9a4180,22, 0x9a4200,27, 0x9a4280,27, 0x9a4300,11, 0x9a4380,17, 0x9a4400,27, 0x9a4480,2, 0x9a44a0,6, 0x9a44c0,3, 0x9a44d0,4, 0x9a4500,35, 0x9a4600,34, 0x9a4700,26, 0x9a4780,23, 0x9a4800,15, 0x9a4848,4, 0x9a8000,20, 0x9a8100,49, 0x9a8200,20, 0x9a8300,49, 0x9a8400,20, 0x9a8500,49, 0x9a8600,20, 0x9a8700,49, 0x9a8800,8, 0x9a9000,20, 0x9a9100,49, 0x9a9200,20, 0x9a9300,49, 0x9a9400,20, 0x9a9500,49, 0x9a9600,20, 0x9a9700,49, 0x9a9800,8, 0x9aa000,15, 0x9aa040,3, 0x9aa050,1, 0x9aa058,4, 0x9aa080,10, 0x9aa0b0,3, 0x9aa0c4,7, 0x9aa100,44, 0x9aa200,5, 0x9aa218,5, 0x9aa280,20, 0x9aa300,1, 0x9aa800,52, 0x9aa8e0,5, 0x9aa900,5, 0x9aaa00,52, 0x9aaae0,5, 0x9aab00,5, 0x9aac00,18, 0x9aac50,10, 0x9aad00,36, 0x9aada0,5, 0x9aadc0,5, 0x9ab000,20, 0x9ab080,20, 0x9ab100,20, 0x9ab180,20, 0x9ab200,10, 0x9ab400,10, 0x9ab440,10, 0x9ab480,10, 0x9ab4c0,10, 0x9ab500,1, 0x9ab600,1, 0x9ab608,32, 0x9ab6a0,6, 0x9ab6c0,6, 0x9ab6e0,6, 0x9ab700,6, 0x9ab720,6, 0x9ab740,6, 0x9ab760,6, 0x9ab780,6, 0x9ab800,76, 0x9aba00,76, 0x9abc00,33, 0x9ac000,76, 0x9ac200,76, 0x9ac400,33, 0x9ac800,4, 0x9aca00,72, 0x9acc00,17, 0x9acc48,4, 0x9ace00,27, 0x9ace80,4, 0x9acec0,25, 0x9acf40,6, 0x9acf60,4, 0x9acf74,11, 0x9acfa4,16, 0x9ad000,12, 0x9ad040,2, 0x9ad050,1, 0x9ad058,5, 0x9ad070,3, 0x9c0000,23, 0x9c0080,23, 0x9c0100,23, 0x9c0180,23, 0x9c0200,13, 0x9c0404,1, 0x9c047c,33, 0x9c0504,1, 0x9c0514,3, 0x9c0524,1, 0x9c052c,1, 0x9c0600,96, 0x9c0784,1, 0x9c0790,4, 0x9c1000,76, 0x9c2000,582, 0x9c3000,13, 0x9c3400,27, 0x9c3480,4, 0x9c34c0,25, 0x9c3540,6, 0x9c3560,4, 0x9c3574,3, 0x9c3600,8, 0x9c3624,59, 0x9c3800,4, 0x9c3880,36, 0x9c3980,17, 0x9c3a00,6, 0x9c3a20,165, 0x9c3d00,12, 0x9c3d40,2, 0x9c3d50,3, 0x9c3d60,1, 0x9c3d80,12, 0x9c3dc0,2, 0x9c3dd0,3, 0x9c3de0,1, 0x9c3e00,12, 0x9c3e40,2, 0x9c3e50,3, 0x9c3e60,1, 0x9c3e80,12, 0x9c3ec0,2, 0x9c3ed0,3, 0x9c3ee0,1, 0x9c3f00,9, 0x9c3f80,3, 0x9c3f90,5, 0x9c3fa8,5, 0x9c3fc0,5, 0x9c3fd8,2, 0x9c4000,1, 0x9c4010,6, 0x9c4030,78, 0x9c4180,18, 0x9c8004,6, 0x9c9000,650, 0x9ca000,650, 0x9cb000,2, 0x9cb040,9, 0x9cb080,7, 0x9cc000,34, 0x9cc090,9, 0x9cc0b8,11, 0x9d0000,11, 0x9d0040,11, 0x9d0080,11, 0x9d00c0,11, 0x9d0104,1, 0x9d011c,10, 0x9d0148,2, 0x9d0154,1, 0x9d015c,24, 0x9d01c0,3, 0x9d01d0,3, 0x9d01e0,3, 0x9d01f0,33, 0x9d0280,3, 0x9d0290,3, 0x9d02a0,3, 0x9d02b0,3, 0x9d02c0,5, 0x9d02d8,8, 0x9d0400,145, 0x9d0800,4, 0x9d0880,25, 0x9d0900,5, 0x9d0920,1, 0x9d1000,11, 0x9d1040,11, 0x9d1080,11, 0x9d10c0,11, 0x9d1100,11, 0x9d1140,11, 0x9d1180,11, 0x9d11c0,11, 0x9d1200,1, 0x9d1208,19, 0x9d1260,2, 0x9d126c,3, 0x9d1280,5, 0x9d1400,3, 0x9d1410,30, 0x9d14a4,1, 0x9d14b4,23, 0x9d1520,6, 0x9d1540,3, 0x9d1560,2, 0x9d156c,2, 0x9d1580,2, 0x9d15c0,3, 0x9d15d0,3, 0x9d15e0,1, 0x9d1600,1, 0x9d1800,1, 0x9d1814,12, 0x9d1848,5, 0x9d1860,7, 0x9d1880,5, 0x9d1898,5, 0x9d18b0,5, 0x9d18c8,7, 0x9d18e8,7, 0x9d1908,5, 0x9d1920,11, 0x9d1950,55, 0x9d1a40,2, 0x9d1a4c,2, 0x9d1a60,2, 0x9d1a80,6, 0x9d1ac0,3, 0x9d1ad0,3, 0x9d1ae0,1, 0x9d1b00,1, 0x9d2000,2, 0x9d2010,47, 0x9d20e0,6, 0x9d2100,6, 0x9d2120,2, 0x9d212c,3, 0x9d2140,6, 0x9d2200,5, 0x9d2224,1, 0x9d2234,3, 0x9d2280,20, 0x9d2404,1, 0x9d24e4,71, 0x9d2604,1, 0x9d2670,38, 0x9d2800,27, 0x9d2880,4, 0x9d28c0,25, 0x9d2940,6, 0x9d2960,4, 0x9d2974,11, 0x9d29a4,7, 0x9d2a00,12, 0x9d2a40,2, 0x9d2a50,1, 0x9d2a58,5, 0x9d2a70,5, 0x9e0000,19, 0x9e0080,19, 0x9e0100,19, 0x9e0180,19, 0x9e0200,12, 0x9e0280,1, 0x9e02a0,6, 0x9e02c0,6, 0x9e02e0,6, 0x9e0300,6, 0x9e0320,6, 0x9e0340,6, 0x9e0360,6, 0x9e0380,9, 0x9e03c0,13, 0x9e0400,3, 0x9e0410,159, 0x9e0690,16, 0x9e06e0,5, 0x9e0700,5, 0x9e0720,5, 0x9e0740,5, 0x9e0760,5, 0x9e0780,5, 0x9e07a0,5, 0x9e07c0,5, 0x9e07e0,6, 0x9e0800,6, 0x9e0820,6, 0x9e0840,6, 0x9e0860,6, 0x9e0880,6, 0x9e08a0,6, 0x9e08c0,6, 0x9e08e0,6, 0x9e0900,6, 0x9e0920,6, 0x9e0940,6, 0x9e0960,6, 0x9e0980,6, 0x9e09a0,6, 0x9e09c0,6, 0x9e0a00,22, 0x9e0a80,1, 0x9e0a88,3, 0x9e0aa0,5, 0x9e0ac0,1, 0x9e0ad0,3, 0x9e0ae0,1, 0x9e0af0,3, 0x9e0b00,1, 0x9e0b10,3, 0x9e0b20,1, 0x9e0b30,3, 0x9e0b40,1, 0x9e0b48,3, 0x9e0b58,3, 0x9e0b68,3, 0x9e0b78,3, 0x9e0b88,3, 0x9e0ba0,3, 0x9e0bb0,1, 0x9e0bc0,3, 0x9e0bd0,1, 0x9e0be0,3, 0x9e0bf0,1, 0x9e0c00,3, 0x9e0c10,1, 0x9e0c20,3, 0x9e0c30,1, 0x9e0c40,3, 0x9e0c50,1, 0x9e0c80,6, 0x9e0ca0,6, 0x9e0cc0,1, 0x9e0d00,1, 0x9e0d10,3, 0x9e0d20,1, 0x9e0d30,3, 0x9e0d40,1, 0x9e0d60,5, 0x9e0d80,1, 0x9e0d90,3, 0x9e0da0,1, 0x9e0dc0,5, 0x9e0de0,1, 0x9e0df0,3, 0x9e0e00,1, 0x9e0e10,3, 0x9e0e20,5, 0x9e0e40,2, 0x9e0e50,3, 0x9e0e60,5, 0x9e0e80,2, 0x9e0e90,3, 0x9e0ea0,3, 0x9e0eb0,3, 0x9e0ec0,3, 0x9e0ed0,3, 0x9e0ee0,5, 0x9e0f00,3, 0x9e0f20,5, 0x9e0f40,5, 0x9e0f60,3, 0x9e0f70,3, 0x9e0f80,5, 0x9e0fa0,3, 0x9e0fb0,3, 0x9e0fc0,3, 0x9e0fd0,3, 0x9e0fe0,3, 0x9e0ff0,3, 0x9e1000,6, 0x9e1020,3, 0x9e1040,3, 0x9e1050,3, 0x9e1060,1, 0x9e1080,3, 0x9e1090,3, 0x9e10a0,1, 0x9e10c0,3, 0x9e10e0,5, 0x9e1100,11, 0x9e1130,3, 0x9e1140,3, 0x9e1150,3, 0x9e1160,5, 0x9e1180,5, 0x9e11a0,3, 0x9e11b0,3, 0x9e11c0,3, 0x9e11d0,3, 0x9e11e0,2, 0x9e11f0,3, 0x9e1200,7, 0x9e1220,3, 0x9e1230,2, 0x9e1240,3, 0x9e1250,3, 0x9e1260,2, 0x9e1400,15, 0x9e1440,4, 0x9e1460,17, 0x9e14c0,6, 0x9e14e0,4, 0x9e14f4,11, 0x9e1524,54, 0x9e1604,1, 0x9e160c,1, 0x9e1614,1, 0x9e161c,15, 0x9e1660,6, 0x9e1680,4, 0x9e16a0,5, 0x9e16c0,4, 0x9e16e0,5, 0x9e1700,4, 0x9e1720,5, 0x9e1740,4, 0x9e1760,5, 0x9e1780,4, 0x9e17c0,15, 0x9e1800,4, 0x9e1880,19, 0x9e1900,1, 0x9e1980,24, 0x9e1a00,24, 0x9e1a80,24, 0x9e1b00,24, 0x9e1b80,1, 0x9e1b88,2, 0x9e2000,451, 0x9e2740,169, 0x9e3000,260, 0x9e3800,12, 0x9e3a04,1, 0x9e3a0c,8, 0x9e3a44,1, 0x9e3a50,7, 0x9e3a84,1, 0x9e3a94,27, 0x9e3b04,3, 0x9e3b14,3, 0x9e3b24,3, 0x9e3b34,21, 0x9e3ba0,5, 0x9e3bc0,1, 0x9e3c04,1, 0x9e3c14,3, 0x9e3c24,3, 0x9e3c34,3, 0x9e3c44,1, 0x9e3c60,8, 0x9e3c84,1, 0x9e3ca0,8, 0x9e3cc4,1, 0x9e3ce0,11, 0x9e3e04,1, 0x9e3e0c,2, 0x9e3e18,1, 0x9e3e20,3, 0x9e3e30,3, 0x9e3e40,1, 0x9e3e48,3, 0x9e3e58,3, 0x9e3e70,4, 0x9e4000,44, 0x9e4100,19, 0x9e4180,22, 0x9e4200,27, 0x9e4280,27, 0x9e4300,11, 0x9e4380,17, 0x9e4400,27, 0x9e4480,2, 0x9e44a0,6, 0x9e44c0,3, 0x9e44d0,4, 0x9e4500,35, 0x9e4600,34, 0x9e4700,26, 0x9e4780,23, 0x9e4800,15, 0x9e4848,4, 0x9e8000,20, 0x9e8100,49, 0x9e8200,20, 0x9e8300,49, 0x9e8400,20, 0x9e8500,49, 0x9e8600,20, 0x9e8700,49, 0x9e8800,8, 0x9e9000,20, 0x9e9100,49, 0x9e9200,20, 0x9e9300,49, 0x9e9400,20, 0x9e9500,49, 0x9e9600,20, 0x9e9700,49, 0x9e9800,8, 0x9ea000,15, 0x9ea040,3, 0x9ea050,1, 0x9ea058,4, 0x9ea080,10, 0x9ea0b0,3, 0x9ea0c4,7, 0x9ea100,44, 0x9ea200,5, 0x9ea218,5, 0x9ea280,20, 0x9ea300,1, 0x9ea800,52, 0x9ea8e0,5, 0x9ea900,5, 0x9eaa00,52, 0x9eaae0,5, 0x9eab00,5, 0x9eac00,18, 0x9eac50,10, 0x9ead00,36, 0x9eada0,5, 0x9eadc0,5, 0x9eb000,20, 0x9eb080,20, 0x9eb100,20, 0x9eb180,20, 0x9eb200,10, 0x9eb400,10, 0x9eb440,10, 0x9eb480,10, 0x9eb4c0,10, 0x9eb500,1, 0x9eb600,1, 0x9eb608,32, 0x9eb6a0,6, 0x9eb6c0,6, 0x9eb6e0,6, 0x9eb700,6, 0x9eb720,6, 0x9eb740,6, 0x9eb760,6, 0x9eb780,6, 0x9eb800,76, 0x9eba00,76, 0x9ebc00,33, 0x9ec000,76, 0x9ec200,76, 0x9ec400,33, 0x9ec800,4, 0x9eca00,72, 0x9ecc00,17, 0x9ecc48,4, 0x9ece00,27, 0x9ece80,4, 0x9ecec0,25, 0x9ecf40,6, 0x9ecf60,4, 0x9ecf74,11, 0x9ecfa4,16, 0x9ed000,12, 0x9ed040,2, 0x9ed050,1, 0x9ed058,5, 0x9ed070,3, 0xa00000,23, 0xa00080,23, 0xa00100,23, 0xa00180,23, 0xa00200,13, 0xa00404,1, 0xa0047c,33, 0xa00504,1, 0xa00514,3, 0xa00524,1, 0xa0052c,1, 0xa00600,96, 0xa00784,1, 0xa00790,4, 0xa01000,76, 0xa02000,582, 0xa03000,13, 0xa03400,27, 0xa03480,4, 0xa034c0,25, 0xa03540,6, 0xa03560,4, 0xa03574,3, 0xa03600,8, 0xa03624,59, 0xa03800,4, 0xa03880,36, 0xa03980,17, 0xa03a00,6, 0xa03a20,165, 0xa03d00,12, 0xa03d40,2, 0xa03d50,3, 0xa03d60,1, 0xa03d80,12, 0xa03dc0,2, 0xa03dd0,3, 0xa03de0,1, 0xa03e00,12, 0xa03e40,2, 0xa03e50,3, 0xa03e60,1, 0xa03e80,12, 0xa03ec0,2, 0xa03ed0,3, 0xa03ee0,1, 0xa03f00,9, 0xa03f80,3, 0xa03f90,5, 0xa03fa8,5, 0xa03fc0,5, 0xa03fd8,2, 0xa04000,1, 0xa04010,6, 0xa04030,78, 0xa04180,18, 0xa08004,6, 0xa09000,650, 0xa0a000,650, 0xa0b000,2, 0xa0b040,9, 0xa0b080,7, 0xa0c000,34, 0xa0c090,9, 0xa0c0b8,11, 0xa10000,11, 0xa10040,11, 0xa10080,11, 0xa100c0,11, 0xa10104,1, 0xa1011c,10, 0xa10148,2, 0xa10154,1, 0xa1015c,24, 0xa101c0,3, 0xa101d0,3, 0xa101e0,3, 0xa101f0,33, 0xa10280,3, 0xa10290,3, 0xa102a0,3, 0xa102b0,3, 0xa102c0,5, 0xa102d8,8, 0xa10400,145, 0xa10800,4, 0xa10880,25, 0xa10900,5, 0xa10920,1, 0xa11000,11, 0xa11040,11, 0xa11080,11, 0xa110c0,11, 0xa11100,11, 0xa11140,11, 0xa11180,11, 0xa111c0,11, 0xa11200,1, 0xa11208,19, 0xa11260,2, 0xa1126c,3, 0xa11280,5, 0xa11400,3, 0xa11410,30, 0xa114a4,1, 0xa114b4,23, 0xa11520,6, 0xa11540,3, 0xa11560,2, 0xa1156c,2, 0xa11580,2, 0xa115c0,3, 0xa115d0,3, 0xa115e0,1, 0xa11600,1, 0xa11800,1, 0xa11814,12, 0xa11848,5, 0xa11860,7, 0xa11880,5, 0xa11898,5, 0xa118b0,5, 0xa118c8,7, 0xa118e8,7, 0xa11908,5, 0xa11920,11, 0xa11950,55, 0xa11a40,2, 0xa11a4c,2, 0xa11a60,2, 0xa11a80,6, 0xa11ac0,3, 0xa11ad0,3, 0xa11ae0,1, 0xa11b00,1, 0xa12000,2, 0xa12010,47, 0xa120e0,6, 0xa12100,6, 0xa12120,2, 0xa1212c,3, 0xa12140,6, 0xa12200,5, 0xa12224,1, 0xa12234,3, 0xa12280,20, 0xa12404,1, 0xa124e4,71, 0xa12604,1, 0xa12670,38, 0xa12800,27, 0xa12880,4, 0xa128c0,25, 0xa12940,6, 0xa12960,4, 0xa12974,11, 0xa129a4,7, 0xa12a00,12, 0xa12a40,2, 0xa12a50,1, 0xa12a58,5, 0xa12a70,5, 0xa20000,19, 0xa20080,19, 0xa20100,19, 0xa20180,19, 0xa20200,12, 0xa20280,1, 0xa202a0,6, 0xa202c0,6, 0xa202e0,6, 0xa20300,6, 0xa20320,6, 0xa20340,6, 0xa20360,6, 0xa20380,9, 0xa203c0,13, 0xa20400,3, 0xa20410,159, 0xa20690,16, 0xa206e0,5, 0xa20700,5, 0xa20720,5, 0xa20740,5, 0xa20760,5, 0xa20780,5, 0xa207a0,5, 0xa207c0,5, 0xa207e0,6, 0xa20800,6, 0xa20820,6, 0xa20840,6, 0xa20860,6, 0xa20880,6, 0xa208a0,6, 0xa208c0,6, 0xa208e0,6, 0xa20900,6, 0xa20920,6, 0xa20940,6, 0xa20960,6, 0xa20980,6, 0xa209a0,6, 0xa209c0,6, 0xa20a00,22, 0xa20a80,1, 0xa20a88,3, 0xa20aa0,5, 0xa20ac0,1, 0xa20ad0,3, 0xa20ae0,1, 0xa20af0,3, 0xa20b00,1, 0xa20b10,3, 0xa20b20,1, 0xa20b30,3, 0xa20b40,1, 0xa20b48,3, 0xa20b58,3, 0xa20b68,3, 0xa20b78,3, 0xa20b88,3, 0xa20ba0,3, 0xa20bb0,1, 0xa20bc0,3, 0xa20bd0,1, 0xa20be0,3, 0xa20bf0,1, 0xa20c00,3, 0xa20c10,1, 0xa20c20,3, 0xa20c30,1, 0xa20c40,3, 0xa20c50,1, 0xa20c80,6, 0xa20ca0,6, 0xa20cc0,1, 0xa20d00,1, 0xa20d10,3, 0xa20d20,1, 0xa20d30,3, 0xa20d40,1, 0xa20d60,5, 0xa20d80,1, 0xa20d90,3, 0xa20da0,1, 0xa20dc0,5, 0xa20de0,1, 0xa20df0,3, 0xa20e00,1, 0xa20e10,3, 0xa20e20,5, 0xa20e40,2, 0xa20e50,3, 0xa20e60,5, 0xa20e80,2, 0xa20e90,3, 0xa20ea0,3, 0xa20eb0,3, 0xa20ec0,3, 0xa20ed0,3, 0xa20ee0,5, 0xa20f00,3, 0xa20f20,5, 0xa20f40,5, 0xa20f60,3, 0xa20f70,3, 0xa20f80,5, 0xa20fa0,3, 0xa20fb0,3, 0xa20fc0,3, 0xa20fd0,3, 0xa20fe0,3, 0xa20ff0,3, 0xa21000,6, 0xa21020,3, 0xa21040,3, 0xa21050,3, 0xa21060,1, 0xa21080,3, 0xa21090,3, 0xa210a0,1, 0xa210c0,3, 0xa210e0,5, 0xa21100,11, 0xa21130,3, 0xa21140,3, 0xa21150,3, 0xa21160,5, 0xa21180,5, 0xa211a0,3, 0xa211b0,3, 0xa211c0,3, 0xa211d0,3, 0xa211e0,2, 0xa211f0,3, 0xa21200,7, 0xa21220,3, 0xa21230,2, 0xa21240,3, 0xa21250,3, 0xa21260,2, 0xa21400,15, 0xa21440,4, 0xa21460,17, 0xa214c0,6, 0xa214e0,4, 0xa214f4,11, 0xa21524,54, 0xa21604,1, 0xa2160c,1, 0xa21614,1, 0xa2161c,15, 0xa21660,6, 0xa21680,4, 0xa216a0,5, 0xa216c0,4, 0xa216e0,5, 0xa21700,4, 0xa21720,5, 0xa21740,4, 0xa21760,5, 0xa21780,4, 0xa217c0,15, 0xa21800,4, 0xa21880,19, 0xa21900,1, 0xa21980,24, 0xa21a00,24, 0xa21a80,24, 0xa21b00,24, 0xa21b80,1, 0xa21b88,2, 0xa22000,451, 0xa22740,169, 0xa23000,260, 0xa23800,12, 0xa23a04,1, 0xa23a0c,8, 0xa23a44,1, 0xa23a50,7, 0xa23a84,1, 0xa23a94,27, 0xa23b04,3, 0xa23b14,3, 0xa23b24,3, 0xa23b34,21, 0xa23ba0,5, 0xa23bc0,1, 0xa23c04,1, 0xa23c14,3, 0xa23c24,3, 0xa23c34,3, 0xa23c44,1, 0xa23c60,8, 0xa23c84,1, 0xa23ca0,8, 0xa23cc4,1, 0xa23ce0,11, 0xa23e04,1, 0xa23e0c,2, 0xa23e18,1, 0xa23e20,3, 0xa23e30,3, 0xa23e40,1, 0xa23e48,3, 0xa23e58,3, 0xa23e70,4, 0xa24000,44, 0xa24100,19, 0xa24180,22, 0xa24200,27, 0xa24280,27, 0xa24300,11, 0xa24380,17, 0xa24400,27, 0xa24480,2, 0xa244a0,6, 0xa244c0,3, 0xa244d0,4, 0xa24500,35, 0xa24600,34, 0xa24700,26, 0xa24780,23, 0xa24800,15, 0xa24848,4, 0xa28000,20, 0xa28100,49, 0xa28200,20, 0xa28300,49, 0xa28400,20, 0xa28500,49, 0xa28600,20, 0xa28700,49, 0xa28800,8, 0xa29000,20, 0xa29100,49, 0xa29200,20, 0xa29300,49, 0xa29400,20, 0xa29500,49, 0xa29600,20, 0xa29700,49, 0xa29800,8, 0xa2a000,15, 0xa2a040,3, 0xa2a050,1, 0xa2a058,4, 0xa2a080,10, 0xa2a0b0,3, 0xa2a0c4,7, 0xa2a100,44, 0xa2a200,5, 0xa2a218,5, 0xa2a280,20, 0xa2a300,1, 0xa2a800,52, 0xa2a8e0,5, 0xa2a900,5, 0xa2aa00,52, 0xa2aae0,5, 0xa2ab00,5, 0xa2ac00,18, 0xa2ac50,10, 0xa2ad00,36, 0xa2ada0,5, 0xa2adc0,5, 0xa2b000,20, 0xa2b080,20, 0xa2b100,20, 0xa2b180,20, 0xa2b200,10, 0xa2b400,10, 0xa2b440,10, 0xa2b480,10, 0xa2b4c0,10, 0xa2b500,1, 0xa2b600,1, 0xa2b608,32, 0xa2b6a0,6, 0xa2b6c0,6, 0xa2b6e0,6, 0xa2b700,6, 0xa2b720,6, 0xa2b740,6, 0xa2b760,6, 0xa2b780,6, 0xa2b800,76, 0xa2ba00,76, 0xa2bc00,33, 0xa2c000,76, 0xa2c200,76, 0xa2c400,33, 0xa2c800,4, 0xa2ca00,72, 0xa2cc00,17, 0xa2cc48,4, 0xa2ce00,27, 0xa2ce80,4, 0xa2cec0,25, 0xa2cf40,6, 0xa2cf60,4, 0xa2cf74,11, 0xa2cfa4,16, 0xa2d000,12, 0xa2d040,2, 0xa2d050,1, 0xa2d058,5, 0xa2d070,3, 0xa40000,23, 0xa40080,23, 0xa40100,23, 0xa40180,23, 0xa40200,13, 0xa40404,1, 0xa4047c,33, 0xa40504,1, 0xa40514,3, 0xa40524,1, 0xa4052c,1, 0xa40600,96, 0xa40784,1, 0xa40790,4, 0xa41000,76, 0xa42000,582, 0xa43000,13, 0xa43400,27, 0xa43480,4, 0xa434c0,25, 0xa43540,6, 0xa43560,4, 0xa43574,3, 0xa43600,8, 0xa43624,59, 0xa43800,4, 0xa43880,36, 0xa43980,17, 0xa43a00,6, 0xa43a20,165, 0xa43d00,12, 0xa43d40,2, 0xa43d50,3, 0xa43d60,1, 0xa43d80,12, 0xa43dc0,2, 0xa43dd0,3, 0xa43de0,1, 0xa43e00,12, 0xa43e40,2, 0xa43e50,3, 0xa43e60,1, 0xa43e80,12, 0xa43ec0,2, 0xa43ed0,3, 0xa43ee0,1, 0xa43f00,9, 0xa43f80,3, 0xa43f90,5, 0xa43fa8,5, 0xa43fc0,5, 0xa43fd8,2, 0xa44000,1, 0xa44010,6, 0xa44030,78, 0xa44180,18, 0xa48004,6, 0xa49000,650, 0xa4a000,650, 0xa4b000,2, 0xa4b040,9, 0xa4b080,7, 0xa4c000,34, 0xa4c090,9, 0xa4c0b8,11, 0xa50000,11, 0xa50040,11, 0xa50080,11, 0xa500c0,11, 0xa50104,1, 0xa5011c,10, 0xa50148,2, 0xa50154,1, 0xa5015c,24, 0xa501c0,3, 0xa501d0,3, 0xa501e0,3, 0xa501f0,33, 0xa50280,3, 0xa50290,3, 0xa502a0,3, 0xa502b0,3, 0xa502c0,5, 0xa502d8,8, 0xa50400,145, 0xa50800,4, 0xa50880,25, 0xa50900,5, 0xa50920,1, 0xa51000,11, 0xa51040,11, 0xa51080,11, 0xa510c0,11, 0xa51100,11, 0xa51140,11, 0xa51180,11, 0xa511c0,11, 0xa51200,1, 0xa51208,19, 0xa51260,2, 0xa5126c,3, 0xa51280,5, 0xa51400,3, 0xa51410,30, 0xa514a4,1, 0xa514b4,23, 0xa51520,6, 0xa51540,3, 0xa51560,2, 0xa5156c,2, 0xa51580,2, 0xa515c0,3, 0xa515d0,3, 0xa515e0,1, 0xa51600,1, 0xa51800,1, 0xa51814,12, 0xa51848,5, 0xa51860,7, 0xa51880,5, 0xa51898,5, 0xa518b0,5, 0xa518c8,7, 0xa518e8,7, 0xa51908,5, 0xa51920,11, 0xa51950,55, 0xa51a40,2, 0xa51a4c,2, 0xa51a60,2, 0xa51a80,6, 0xa51ac0,3, 0xa51ad0,3, 0xa51ae0,1, 0xa51b00,1, 0xa52000,2, 0xa52010,47, 0xa520e0,6, 0xa52100,6, 0xa52120,2, 0xa5212c,3, 0xa52140,6, 0xa52200,5, 0xa52224,1, 0xa52234,3, 0xa52280,20, 0xa52404,1, 0xa524e4,71, 0xa52604,1, 0xa52670,38, 0xa52800,27, 0xa52880,4, 0xa528c0,25, 0xa52940,6, 0xa52960,4, 0xa52974,11, 0xa529a4,7, 0xa52a00,12, 0xa52a40,2, 0xa52a50,1, 0xa52a58,5, 0xa52a70,5, 0xa60000,19, 0xa60080,19, 0xa60100,19, 0xa60180,19, 0xa60200,12, 0xa60280,1, 0xa602a0,6, 0xa602c0,6, 0xa602e0,6, 0xa60300,6, 0xa60320,6, 0xa60340,6, 0xa60360,6, 0xa60380,9, 0xa603c0,13, 0xa60400,3, 0xa60410,159, 0xa60690,16, 0xa606e0,5, 0xa60700,5, 0xa60720,5, 0xa60740,5, 0xa60760,5, 0xa60780,5, 0xa607a0,5, 0xa607c0,5, 0xa607e0,6, 0xa60800,6, 0xa60820,6, 0xa60840,6, 0xa60860,6, 0xa60880,6, 0xa608a0,6, 0xa608c0,6, 0xa608e0,6, 0xa60900,6, 0xa60920,6, 0xa60940,6, 0xa60960,6, 0xa60980,6, 0xa609a0,6, 0xa609c0,6, 0xa60a00,22, 0xa60a80,1, 0xa60a88,3, 0xa60aa0,5, 0xa60ac0,1, 0xa60ad0,3, 0xa60ae0,1, 0xa60af0,3, 0xa60b00,1, 0xa60b10,3, 0xa60b20,1, 0xa60b30,3, 0xa60b40,1, 0xa60b48,3, 0xa60b58,3, 0xa60b68,3, 0xa60b78,3, 0xa60b88,3, 0xa60ba0,3, 0xa60bb0,1, 0xa60bc0,3, 0xa60bd0,1, 0xa60be0,3, 0xa60bf0,1, 0xa60c00,3, 0xa60c10,1, 0xa60c20,3, 0xa60c30,1, 0xa60c40,3, 0xa60c50,1, 0xa60c80,6, 0xa60ca0,6, 0xa60cc0,1, 0xa60d00,1, 0xa60d10,3, 0xa60d20,1, 0xa60d30,3, 0xa60d40,1, 0xa60d60,5, 0xa60d80,1, 0xa60d90,3, 0xa60da0,1, 0xa60dc0,5, 0xa60de0,1, 0xa60df0,3, 0xa60e00,1, 0xa60e10,3, 0xa60e20,5, 0xa60e40,2, 0xa60e50,3, 0xa60e60,5, 0xa60e80,2, 0xa60e90,3, 0xa60ea0,3, 0xa60eb0,3, 0xa60ec0,3, 0xa60ed0,3, 0xa60ee0,5, 0xa60f00,3, 0xa60f20,5, 0xa60f40,5, 0xa60f60,3, 0xa60f70,3, 0xa60f80,5, 0xa60fa0,3, 0xa60fb0,3, 0xa60fc0,3, 0xa60fd0,3, 0xa60fe0,3, 0xa60ff0,3, 0xa61000,6, 0xa61020,3, 0xa61040,3, 0xa61050,3, 0xa61060,1, 0xa61080,3, 0xa61090,3, 0xa610a0,1, 0xa610c0,3, 0xa610e0,5, 0xa61100,11, 0xa61130,3, 0xa61140,3, 0xa61150,3, 0xa61160,5, 0xa61180,5, 0xa611a0,3, 0xa611b0,3, 0xa611c0,3, 0xa611d0,3, 0xa611e0,2, 0xa611f0,3, 0xa61200,7, 0xa61220,3, 0xa61230,2, 0xa61240,3, 0xa61250,3, 0xa61260,2, 0xa61400,15, 0xa61440,4, 0xa61460,17, 0xa614c0,6, 0xa614e0,4, 0xa614f4,11, 0xa61524,54, 0xa61604,1, 0xa6160c,1, 0xa61614,1, 0xa6161c,15, 0xa61660,6, 0xa61680,4, 0xa616a0,5, 0xa616c0,4, 0xa616e0,5, 0xa61700,4, 0xa61720,5, 0xa61740,4, 0xa61760,5, 0xa61780,4, 0xa617c0,15, 0xa61800,4, 0xa61880,19, 0xa61900,1, 0xa61980,24, 0xa61a00,24, 0xa61a80,24, 0xa61b00,24, 0xa61b80,1, 0xa61b88,2, 0xa62000,451, 0xa62740,169, 0xa63000,260, 0xa63800,12, 0xa63a04,1, 0xa63a0c,8, 0xa63a44,1, 0xa63a50,7, 0xa63a84,1, 0xa63a94,27, 0xa63b04,3, 0xa63b14,3, 0xa63b24,3, 0xa63b34,21, 0xa63ba0,5, 0xa63bc0,1, 0xa63c04,1, 0xa63c14,3, 0xa63c24,3, 0xa63c34,3, 0xa63c44,1, 0xa63c60,8, 0xa63c84,1, 0xa63ca0,8, 0xa63cc4,1, 0xa63ce0,11, 0xa63e04,1, 0xa63e0c,2, 0xa63e18,1, 0xa63e20,3, 0xa63e30,3, 0xa63e40,1, 0xa63e48,3, 0xa63e58,3, 0xa63e70,4, 0xa64000,44, 0xa64100,19, 0xa64180,22, 0xa64200,27, 0xa64280,27, 0xa64300,11, 0xa64380,17, 0xa64400,27, 0xa64480,2, 0xa644a0,6, 0xa644c0,3, 0xa644d0,4, 0xa64500,35, 0xa64600,34, 0xa64700,26, 0xa64780,23, 0xa64800,15, 0xa64848,4, 0xa68000,20, 0xa68100,49, 0xa68200,20, 0xa68300,49, 0xa68400,20, 0xa68500,49, 0xa68600,20, 0xa68700,49, 0xa68800,8, 0xa69000,20, 0xa69100,49, 0xa69200,20, 0xa69300,49, 0xa69400,20, 0xa69500,49, 0xa69600,20, 0xa69700,49, 0xa69800,8, 0xa6a000,15, 0xa6a040,3, 0xa6a050,1, 0xa6a058,4, 0xa6a080,10, 0xa6a0b0,3, 0xa6a0c4,7, 0xa6a100,44, 0xa6a200,5, 0xa6a218,5, 0xa6a280,20, 0xa6a300,1, 0xa6a800,52, 0xa6a8e0,5, 0xa6a900,5, 0xa6aa00,52, 0xa6aae0,5, 0xa6ab00,5, 0xa6ac00,18, 0xa6ac50,10, 0xa6ad00,36, 0xa6ada0,5, 0xa6adc0,5, 0xa6b000,20, 0xa6b080,20, 0xa6b100,20, 0xa6b180,20, 0xa6b200,10, 0xa6b400,10, 0xa6b440,10, 0xa6b480,10, 0xa6b4c0,10, 0xa6b500,1, 0xa6b600,1, 0xa6b608,32, 0xa6b6a0,6, 0xa6b6c0,6, 0xa6b6e0,6, 0xa6b700,6, 0xa6b720,6, 0xa6b740,6, 0xa6b760,6, 0xa6b780,6, 0xa6b800,76, 0xa6ba00,76, 0xa6bc00,33, 0xa6c000,76, 0xa6c200,76, 0xa6c400,33, 0xa6c800,4, 0xa6ca00,72, 0xa6cc00,17, 0xa6cc48,4, 0xa6ce00,27, 0xa6ce80,4, 0xa6cec0,25, 0xa6cf40,6, 0xa6cf60,4, 0xa6cf74,11, 0xa6cfa4,16, 0xa6d000,12, 0xa6d040,2, 0xa6d050,1, 0xa6d058,5, 0xa6d070,3, 0xa80000,23, 0xa80080,23, 0xa80100,23, 0xa80180,23, 0xa80200,13, 0xa80404,1, 0xa8047c,33, 0xa80504,1, 0xa80514,3, 0xa80524,1, 0xa8052c,1, 0xa80600,96, 0xa80784,1, 0xa80790,4, 0xa81000,76, 0xa82000,582, 0xa83000,13, 0xa83400,27, 0xa83480,4, 0xa834c0,25, 0xa83540,6, 0xa83560,4, 0xa83574,3, 0xa83600,8, 0xa83624,59, 0xa83800,4, 0xa83880,36, 0xa83980,17, 0xa83a00,6, 0xa83a20,165, 0xa83d00,12, 0xa83d40,2, 0xa83d50,3, 0xa83d60,1, 0xa83d80,12, 0xa83dc0,2, 0xa83dd0,3, 0xa83de0,1, 0xa83e00,12, 0xa83e40,2, 0xa83e50,3, 0xa83e60,1, 0xa83e80,12, 0xa83ec0,2, 0xa83ed0,3, 0xa83ee0,1, 0xa83f00,9, 0xa83f80,3, 0xa83f90,5, 0xa83fa8,5, 0xa83fc0,5, 0xa83fd8,2, 0xa84000,1, 0xa84010,6, 0xa84030,78, 0xa84180,18, 0xa88004,6, 0xa89000,650, 0xa8a000,650, 0xa8b000,2, 0xa8b040,9, 0xa8b080,7, 0xa8c000,34, 0xa8c090,9, 0xa8c0b8,11, 0xa90000,11, 0xa90040,11, 0xa90080,11, 0xa900c0,11, 0xa90104,1, 0xa9011c,10, 0xa90148,2, 0xa90154,1, 0xa9015c,24, 0xa901c0,3, 0xa901d0,3, 0xa901e0,3, 0xa901f0,33, 0xa90280,3, 0xa90290,3, 0xa902a0,3, 0xa902b0,3, 0xa902c0,5, 0xa902d8,8, 0xa90400,145, 0xa90800,4, 0xa90880,25, 0xa90900,5, 0xa90920,1, 0xa91000,11, 0xa91040,11, 0xa91080,11, 0xa910c0,11, 0xa91100,11, 0xa91140,11, 0xa91180,11, 0xa911c0,11, 0xa91200,1, 0xa91208,19, 0xa91260,2, 0xa9126c,3, 0xa91280,5, 0xa91400,3, 0xa91410,30, 0xa914a4,1, 0xa914b4,23, 0xa91520,6, 0xa91540,3, 0xa91560,2, 0xa9156c,2, 0xa91580,2, 0xa915c0,3, 0xa915d0,3, 0xa915e0,1, 0xa91600,1, 0xa91800,1, 0xa91814,12, 0xa91848,5, 0xa91860,7, 0xa91880,5, 0xa91898,5, 0xa918b0,5, 0xa918c8,7, 0xa918e8,7, 0xa91908,5, 0xa91920,11, 0xa91950,55, 0xa91a40,2, 0xa91a4c,2, 0xa91a60,2, 0xa91a80,6, 0xa91ac0,3, 0xa91ad0,3, 0xa91ae0,1, 0xa91b00,1, 0xa92000,2, 0xa92010,47, 0xa920e0,6, 0xa92100,6, 0xa92120,2, 0xa9212c,3, 0xa92140,6, 0xa92200,5, 0xa92224,1, 0xa92234,3, 0xa92280,20, 0xa92404,1, 0xa924e4,71, 0xa92604,1, 0xa92670,38, 0xa92800,27, 0xa92880,4, 0xa928c0,25, 0xa92940,6, 0xa92960,4, 0xa92974,11, 0xa929a4,7, 0xa92a00,12, 0xa92a40,2, 0xa92a50,1, 0xa92a58,5, 0xa92a70,5, 0xaa0000,19, 0xaa0080,19, 0xaa0100,19, 0xaa0180,19, 0xaa0200,12, 0xaa0280,1, 0xaa02a0,6, 0xaa02c0,6, 0xaa02e0,6, 0xaa0300,6, 0xaa0320,6, 0xaa0340,6, 0xaa0360,6, 0xaa0380,9, 0xaa03c0,13, 0xaa0400,3, 0xaa0410,159, 0xaa0690,16, 0xaa06e0,5, 0xaa0700,5, 0xaa0720,5, 0xaa0740,5, 0xaa0760,5, 0xaa0780,5, 0xaa07a0,5, 0xaa07c0,5, 0xaa07e0,6, 0xaa0800,6, 0xaa0820,6, 0xaa0840,6, 0xaa0860,6, 0xaa0880,6, 0xaa08a0,6, 0xaa08c0,6, 0xaa08e0,6, 0xaa0900,6, 0xaa0920,6, 0xaa0940,6, 0xaa0960,6, 0xaa0980,6, 0xaa09a0,6, 0xaa09c0,6, 0xaa0a00,22, 0xaa0a80,1, 0xaa0a88,3, 0xaa0aa0,5, 0xaa0ac0,1, 0xaa0ad0,3, 0xaa0ae0,1, 0xaa0af0,3, 0xaa0b00,1, 0xaa0b10,3, 0xaa0b20,1, 0xaa0b30,3, 0xaa0b40,1, 0xaa0b48,3, 0xaa0b58,3, 0xaa0b68,3, 0xaa0b78,3, 0xaa0b88,3, 0xaa0ba0,3, 0xaa0bb0,1, 0xaa0bc0,3, 0xaa0bd0,1, 0xaa0be0,3, 0xaa0bf0,1, 0xaa0c00,3, 0xaa0c10,1, 0xaa0c20,3, 0xaa0c30,1, 0xaa0c40,3, 0xaa0c50,1, 0xaa0c80,6, 0xaa0ca0,6, 0xaa0cc0,1, 0xaa0d00,1, 0xaa0d10,3, 0xaa0d20,1, 0xaa0d30,3, 0xaa0d40,1, 0xaa0d60,5, 0xaa0d80,1, 0xaa0d90,3, 0xaa0da0,1, 0xaa0dc0,5, 0xaa0de0,1, 0xaa0df0,3, 0xaa0e00,1, 0xaa0e10,3, 0xaa0e20,5, 0xaa0e40,2, 0xaa0e50,3, 0xaa0e60,5, 0xaa0e80,2, 0xaa0e90,3, 0xaa0ea0,3, 0xaa0eb0,3, 0xaa0ec0,3, 0xaa0ed0,3, 0xaa0ee0,5, 0xaa0f00,3, 0xaa0f20,5, 0xaa0f40,5, 0xaa0f60,3, 0xaa0f70,3, 0xaa0f80,5, 0xaa0fa0,3, 0xaa0fb0,3, 0xaa0fc0,3, 0xaa0fd0,3, 0xaa0fe0,3, 0xaa0ff0,3, 0xaa1000,6, 0xaa1020,3, 0xaa1040,3, 0xaa1050,3, 0xaa1060,1, 0xaa1080,3, 0xaa1090,3, 0xaa10a0,1, 0xaa10c0,3, 0xaa10e0,5, 0xaa1100,11, 0xaa1130,3, 0xaa1140,3, 0xaa1150,3, 0xaa1160,5, 0xaa1180,5, 0xaa11a0,3, 0xaa11b0,3, 0xaa11c0,3, 0xaa11d0,3, 0xaa11e0,2, 0xaa11f0,3, 0xaa1200,7, 0xaa1220,3, 0xaa1230,2, 0xaa1240,3, 0xaa1250,3, 0xaa1260,2, 0xaa1400,15, 0xaa1440,4, 0xaa1460,17, 0xaa14c0,6, 0xaa14e0,4, 0xaa14f4,11, 0xaa1524,54, 0xaa1604,1, 0xaa160c,1, 0xaa1614,1, 0xaa161c,15, 0xaa1660,6, 0xaa1680,4, 0xaa16a0,5, 0xaa16c0,4, 0xaa16e0,5, 0xaa1700,4, 0xaa1720,5, 0xaa1740,4, 0xaa1760,5, 0xaa1780,4, 0xaa17c0,15, 0xaa1800,4, 0xaa1880,19, 0xaa1900,1, 0xaa1980,24, 0xaa1a00,24, 0xaa1a80,24, 0xaa1b00,24, 0xaa1b80,1, 0xaa1b88,2, 0xaa2000,451, 0xaa2740,169, 0xaa3000,260, 0xaa3800,12, 0xaa3a04,1, 0xaa3a0c,8, 0xaa3a44,1, 0xaa3a50,7, 0xaa3a84,1, 0xaa3a94,27, 0xaa3b04,3, 0xaa3b14,3, 0xaa3b24,3, 0xaa3b34,21, 0xaa3ba0,5, 0xaa3bc0,1, 0xaa3c04,1, 0xaa3c14,3, 0xaa3c24,3, 0xaa3c34,3, 0xaa3c44,1, 0xaa3c60,8, 0xaa3c84,1, 0xaa3ca0,8, 0xaa3cc4,1, 0xaa3ce0,11, 0xaa3e04,1, 0xaa3e0c,2, 0xaa3e18,1, 0xaa3e20,3, 0xaa3e30,3, 0xaa3e40,1, 0xaa3e48,3, 0xaa3e58,3, 0xaa3e70,4, 0xaa4000,44, 0xaa4100,19, 0xaa4180,22, 0xaa4200,27, 0xaa4280,27, 0xaa4300,11, 0xaa4380,17, 0xaa4400,27, 0xaa4480,2, 0xaa44a0,6, 0xaa44c0,3, 0xaa44d0,4, 0xaa4500,35, 0xaa4600,34, 0xaa4700,26, 0xaa4780,23, 0xaa4800,15, 0xaa4848,4, 0xaa8000,20, 0xaa8100,49, 0xaa8200,20, 0xaa8300,49, 0xaa8400,20, 0xaa8500,49, 0xaa8600,20, 0xaa8700,49, 0xaa8800,8, 0xaa9000,20, 0xaa9100,49, 0xaa9200,20, 0xaa9300,49, 0xaa9400,20, 0xaa9500,49, 0xaa9600,20, 0xaa9700,49, 0xaa9800,8, 0xaaa000,15, 0xaaa040,3, 0xaaa050,1, 0xaaa058,4, 0xaaa080,10, 0xaaa0b0,3, 0xaaa0c4,7, 0xaaa100,44, 0xaaa200,5, 0xaaa218,5, 0xaaa280,20, 0xaaa300,1, 0xaaa800,52, 0xaaa8e0,5, 0xaaa900,5, 0xaaaa00,52, 0xaaaae0,5, 0xaaab00,5, 0xaaac00,18, 0xaaac50,10, 0xaaad00,36, 0xaaada0,5, 0xaaadc0,5, 0xaab000,20, 0xaab080,20, 0xaab100,20, 0xaab180,20, 0xaab200,10, 0xaab400,10, 0xaab440,10, 0xaab480,10, 0xaab4c0,10, 0xaab500,1, 0xaab600,1, 0xaab608,32, 0xaab6a0,6, 0xaab6c0,6, 0xaab6e0,6, 0xaab700,6, 0xaab720,6, 0xaab740,6, 0xaab760,6, 0xaab780,6, 0xaab800,76, 0xaaba00,76, 0xaabc00,33, 0xaac000,76, 0xaac200,76, 0xaac400,33, 0xaac800,4, 0xaaca00,72, 0xaacc00,17, 0xaacc48,4, 0xaace00,27, 0xaace80,4, 0xaacec0,25, 0xaacf40,6, 0xaacf60,4, 0xaacf74,11, 0xaacfa4,16, 0xaad000,12, 0xaad040,2, 0xaad050,1, 0xaad058,5, 0xaad070,3, 0xac0000,23, 0xac0080,23, 0xac0100,23, 0xac0180,23, 0xac0200,13, 0xac0404,1, 0xac047c,33, 0xac0504,1, 0xac0514,3, 0xac0524,1, 0xac052c,1, 0xac0600,96, 0xac0784,1, 0xac0790,4, 0xac1000,76, 0xac2000,582, 0xac3000,13, 0xac3400,27, 0xac3480,4, 0xac34c0,25, 0xac3540,6, 0xac3560,4, 0xac3574,3, 0xac3600,8, 0xac3624,59, 0xac3800,4, 0xac3880,36, 0xac3980,17, 0xac3a00,6, 0xac3a20,165, 0xac3d00,12, 0xac3d40,2, 0xac3d50,3, 0xac3d60,1, 0xac3d80,12, 0xac3dc0,2, 0xac3dd0,3, 0xac3de0,1, 0xac3e00,12, 0xac3e40,2, 0xac3e50,3, 0xac3e60,1, 0xac3e80,12, 0xac3ec0,2, 0xac3ed0,3, 0xac3ee0,1, 0xac3f00,9, 0xac3f80,3, 0xac3f90,5, 0xac3fa8,5, 0xac3fc0,5, 0xac3fd8,2, 0xac4000,1, 0xac4010,6, 0xac4030,78, 0xac4180,18, 0xac8004,6, 0xac9000,650, 0xaca000,650, 0xacb000,2, 0xacb040,9, 0xacb080,7, 0xacc000,34, 0xacc090,9, 0xacc0b8,11, 0xad0000,11, 0xad0040,11, 0xad0080,11, 0xad00c0,11, 0xad0104,1, 0xad011c,10, 0xad0148,2, 0xad0154,1, 0xad015c,24, 0xad01c0,3, 0xad01d0,3, 0xad01e0,3, 0xad01f0,33, 0xad0280,3, 0xad0290,3, 0xad02a0,3, 0xad02b0,3, 0xad02c0,5, 0xad02d8,8, 0xad0400,145, 0xad0800,4, 0xad0880,25, 0xad0900,5, 0xad0920,1, 0xad1000,11, 0xad1040,11, 0xad1080,11, 0xad10c0,11, 0xad1100,11, 0xad1140,11, 0xad1180,11, 0xad11c0,11, 0xad1200,1, 0xad1208,19, 0xad1260,2, 0xad126c,3, 0xad1280,5, 0xad1400,3, 0xad1410,30, 0xad14a4,1, 0xad14b4,23, 0xad1520,6, 0xad1540,3, 0xad1560,2, 0xad156c,2, 0xad1580,2, 0xad15c0,3, 0xad15d0,3, 0xad15e0,1, 0xad1600,1, 0xad1800,1, 0xad1814,12, 0xad1848,5, 0xad1860,7, 0xad1880,5, 0xad1898,5, 0xad18b0,5, 0xad18c8,7, 0xad18e8,7, 0xad1908,5, 0xad1920,11, 0xad1950,55, 0xad1a40,2, 0xad1a4c,2, 0xad1a60,2, 0xad1a80,6, 0xad1ac0,3, 0xad1ad0,3, 0xad1ae0,1, 0xad1b00,1, 0xad2000,2, 0xad2010,47, 0xad20e0,6, 0xad2100,6, 0xad2120,2, 0xad212c,3, 0xad2140,6, 0xad2200,5, 0xad2224,1, 0xad2234,3, 0xad2280,20, 0xad2404,1, 0xad24e4,71, 0xad2604,1, 0xad2670,38, 0xad2800,27, 0xad2880,4, 0xad28c0,25, 0xad2940,6, 0xad2960,4, 0xad2974,11, 0xad29a4,7, 0xad2a00,12, 0xad2a40,2, 0xad2a50,1, 0xad2a58,5, 0xad2a70,5, 0xae0000,19, 0xae0080,19, 0xae0100,19, 0xae0180,19, 0xae0200,12, 0xae0280,1, 0xae02a0,6, 0xae02c0,6, 0xae02e0,6, 0xae0300,6, 0xae0320,6, 0xae0340,6, 0xae0360,6, 0xae0380,9, 0xae03c0,13, 0xae0400,3, 0xae0410,159, 0xae0690,16, 0xae06e0,5, 0xae0700,5, 0xae0720,5, 0xae0740,5, 0xae0760,5, 0xae0780,5, 0xae07a0,5, 0xae07c0,5, 0xae07e0,6, 0xae0800,6, 0xae0820,6, 0xae0840,6, 0xae0860,6, 0xae0880,6, 0xae08a0,6, 0xae08c0,6, 0xae08e0,6, 0xae0900,6, 0xae0920,6, 0xae0940,6, 0xae0960,6, 0xae0980,6, 0xae09a0,6, 0xae09c0,6, 0xae0a00,22, 0xae0a80,1, 0xae0a88,3, 0xae0aa0,5, 0xae0ac0,1, 0xae0ad0,3, 0xae0ae0,1, 0xae0af0,3, 0xae0b00,1, 0xae0b10,3, 0xae0b20,1, 0xae0b30,3, 0xae0b40,1, 0xae0b48,3, 0xae0b58,3, 0xae0b68,3, 0xae0b78,3, 0xae0b88,3, 0xae0ba0,3, 0xae0bb0,1, 0xae0bc0,3, 0xae0bd0,1, 0xae0be0,3, 0xae0bf0,1, 0xae0c00,3, 0xae0c10,1, 0xae0c20,3, 0xae0c30,1, 0xae0c40,3, 0xae0c50,1, 0xae0c80,6, 0xae0ca0,6, 0xae0cc0,1, 0xae0d00,1, 0xae0d10,3, 0xae0d20,1, 0xae0d30,3, 0xae0d40,1, 0xae0d60,5, 0xae0d80,1, 0xae0d90,3, 0xae0da0,1, 0xae0dc0,5, 0xae0de0,1, 0xae0df0,3, 0xae0e00,1, 0xae0e10,3, 0xae0e20,5, 0xae0e40,2, 0xae0e50,3, 0xae0e60,5, 0xae0e80,2, 0xae0e90,3, 0xae0ea0,3, 0xae0eb0,3, 0xae0ec0,3, 0xae0ed0,3, 0xae0ee0,5, 0xae0f00,3, 0xae0f20,5, 0xae0f40,5, 0xae0f60,3, 0xae0f70,3, 0xae0f80,5, 0xae0fa0,3, 0xae0fb0,3, 0xae0fc0,3, 0xae0fd0,3, 0xae0fe0,3, 0xae0ff0,3, 0xae1000,6, 0xae1020,3, 0xae1040,3, 0xae1050,3, 0xae1060,1, 0xae1080,3, 0xae1090,3, 0xae10a0,1, 0xae10c0,3, 0xae10e0,5, 0xae1100,11, 0xae1130,3, 0xae1140,3, 0xae1150,3, 0xae1160,5, 0xae1180,5, 0xae11a0,3, 0xae11b0,3, 0xae11c0,3, 0xae11d0,3, 0xae11e0,2, 0xae11f0,3, 0xae1200,7, 0xae1220,3, 0xae1230,2, 0xae1240,3, 0xae1250,3, 0xae1260,2, 0xae1400,15, 0xae1440,4, 0xae1460,17, 0xae14c0,6, 0xae14e0,4, 0xae14f4,11, 0xae1524,54, 0xae1604,1, 0xae160c,1, 0xae1614,1, 0xae161c,15, 0xae1660,6, 0xae1680,4, 0xae16a0,5, 0xae16c0,4, 0xae16e0,5, 0xae1700,4, 0xae1720,5, 0xae1740,4, 0xae1760,5, 0xae1780,4, 0xae17c0,15, 0xae1800,4, 0xae1880,19, 0xae1900,1, 0xae1980,24, 0xae1a00,24, 0xae1a80,24, 0xae1b00,24, 0xae1b80,1, 0xae1b88,2, 0xae2000,451, 0xae2740,169, 0xae3000,260, 0xae3800,12, 0xae3a04,1, 0xae3a0c,8, 0xae3a44,1, 0xae3a50,7, 0xae3a84,1, 0xae3a94,27, 0xae3b04,3, 0xae3b14,3, 0xae3b24,3, 0xae3b34,21, 0xae3ba0,5, 0xae3bc0,1, 0xae3c04,1, 0xae3c14,3, 0xae3c24,3, 0xae3c34,3, 0xae3c44,1, 0xae3c60,8, 0xae3c84,1, 0xae3ca0,8, 0xae3cc4,1, 0xae3ce0,11, 0xae3e04,1, 0xae3e0c,2, 0xae3e18,1, 0xae3e20,3, 0xae3e30,3, 0xae3e40,1, 0xae3e48,3, 0xae3e58,3, 0xae3e70,4, 0xae4000,44, 0xae4100,19, 0xae4180,22, 0xae4200,27, 0xae4280,27, 0xae4300,11, 0xae4380,17, 0xae4400,27, 0xae4480,2, 0xae44a0,6, 0xae44c0,3, 0xae44d0,4, 0xae4500,35, 0xae4600,34, 0xae4700,26, 0xae4780,23, 0xae4800,15, 0xae4848,4, 0xae8000,20, 0xae8100,49, 0xae8200,20, 0xae8300,49, 0xae8400,20, 0xae8500,49, 0xae8600,20, 0xae8700,49, 0xae8800,8, 0xae9000,20, 0xae9100,49, 0xae9200,20, 0xae9300,49, 0xae9400,20, 0xae9500,49, 0xae9600,20, 0xae9700,49, 0xae9800,8, 0xaea000,15, 0xaea040,3, 0xaea050,1, 0xaea058,4, 0xaea080,10, 0xaea0b0,3, 0xaea0c4,7, 0xaea100,44, 0xaea200,5, 0xaea218,5, 0xaea280,20, 0xaea300,1, 0xaea800,52, 0xaea8e0,5, 0xaea900,5, 0xaeaa00,52, 0xaeaae0,5, 0xaeab00,5, 0xaeac00,18, 0xaeac50,10, 0xaead00,36, 0xaeada0,5, 0xaeadc0,5, 0xaeb000,20, 0xaeb080,20, 0xaeb100,20, 0xaeb180,20, 0xaeb200,10, 0xaeb400,10, 0xaeb440,10, 0xaeb480,10, 0xaeb4c0,10, 0xaeb500,1, 0xaeb600,1, 0xaeb608,32, 0xaeb6a0,6, 0xaeb6c0,6, 0xaeb6e0,6, 0xaeb700,6, 0xaeb720,6, 0xaeb740,6, 0xaeb760,6, 0xaeb780,6, 0xaeb800,76, 0xaeba00,76, 0xaebc00,33, 0xaec000,76, 0xaec200,76, 0xaec400,33, 0xaec800,4, 0xaeca00,72, 0xaecc00,17, 0xaecc48,4, 0xaece00,27, 0xaece80,4, 0xaecec0,25, 0xaecf40,6, 0xaecf60,4, 0xaecf74,11, 0xaecfa4,16, 0xaed000,12, 0xaed040,2, 0xaed050,1, 0xaed058,5, 0xaed070,3, 0xb00000,23, 0xb00080,23, 0xb00100,23, 0xb00180,23, 0xb00200,13, 0xb00404,1, 0xb0047c,33, 0xb00504,1, 0xb00514,3, 0xb00524,1, 0xb0052c,1, 0xb00600,96, 0xb00784,1, 0xb00790,4, 0xb01000,76, 0xb02000,582, 0xb03000,13, 0xb03400,27, 0xb03480,4, 0xb034c0,25, 0xb03540,6, 0xb03560,4, 0xb03574,3, 0xb03600,8, 0xb03624,59, 0xb03800,4, 0xb03880,36, 0xb03980,17, 0xb03a00,6, 0xb03a20,165, 0xb03d00,12, 0xb03d40,2, 0xb03d50,3, 0xb03d60,1, 0xb03d80,12, 0xb03dc0,2, 0xb03dd0,3, 0xb03de0,1, 0xb03e00,12, 0xb03e40,2, 0xb03e50,3, 0xb03e60,1, 0xb03e80,12, 0xb03ec0,2, 0xb03ed0,3, 0xb03ee0,1, 0xb03f00,9, 0xb03f80,3, 0xb03f90,5, 0xb03fa8,5, 0xb03fc0,5, 0xb03fd8,2, 0xb04000,1, 0xb04010,6, 0xb04030,78, 0xb04180,18, 0xb08004,6, 0xb09000,650, 0xb0a000,650, 0xb0b000,2, 0xb0b040,9, 0xb0b080,7, 0xb0c000,34, 0xb0c090,9, 0xb0c0b8,11, 0xb10000,11, 0xb10040,11, 0xb10080,11, 0xb100c0,11, 0xb10104,1, 0xb1011c,10, 0xb10148,2, 0xb10154,1, 0xb1015c,24, 0xb101c0,3, 0xb101d0,3, 0xb101e0,3, 0xb101f0,33, 0xb10280,3, 0xb10290,3, 0xb102a0,3, 0xb102b0,3, 0xb102c0,5, 0xb102d8,8, 0xb10400,145, 0xb10800,4, 0xb10880,25, 0xb10900,5, 0xb10920,1, 0xb11000,11, 0xb11040,11, 0xb11080,11, 0xb110c0,11, 0xb11100,11, 0xb11140,11, 0xb11180,11, 0xb111c0,11, 0xb11200,1, 0xb11208,19, 0xb11260,2, 0xb1126c,3, 0xb11280,5, 0xb11400,3, 0xb11410,30, 0xb114a4,1, 0xb114b4,23, 0xb11520,6, 0xb11540,3, 0xb11560,2, 0xb1156c,2, 0xb11580,2, 0xb115c0,3, 0xb115d0,3, 0xb115e0,1, 0xb11600,1, 0xb11800,1, 0xb11814,12, 0xb11848,5, 0xb11860,7, 0xb11880,5, 0xb11898,5, 0xb118b0,5, 0xb118c8,7, 0xb118e8,7, 0xb11908,5, 0xb11920,11, 0xb11950,55, 0xb11a40,2, 0xb11a4c,2, 0xb11a60,2, 0xb11a80,6, 0xb11ac0,3, 0xb11ad0,3, 0xb11ae0,1, 0xb11b00,1, 0xb12000,2, 0xb12010,47, 0xb120e0,6, 0xb12100,6, 0xb12120,2, 0xb1212c,3, 0xb12140,6, 0xb12200,5, 0xb12224,1, 0xb12234,3, 0xb12280,20, 0xb12404,1, 0xb124e4,71, 0xb12604,1, 0xb12670,38, 0xb12800,27, 0xb12880,4, 0xb128c0,25, 0xb12940,6, 0xb12960,4, 0xb12974,11, 0xb129a4,7, 0xb12a00,12, 0xb12a40,2, 0xb12a50,1, 0xb12a58,5, 0xb12a70,5, 0xb20000,19, 0xb20080,19, 0xb20100,19, 0xb20180,19, 0xb20200,12, 0xb20280,1, 0xb202a0,6, 0xb202c0,6, 0xb202e0,6, 0xb20300,6, 0xb20320,6, 0xb20340,6, 0xb20360,6, 0xb20380,9, 0xb203c0,13, 0xb20400,3, 0xb20410,159, 0xb20690,16, 0xb206e0,5, 0xb20700,5, 0xb20720,5, 0xb20740,5, 0xb20760,5, 0xb20780,5, 0xb207a0,5, 0xb207c0,5, 0xb207e0,6, 0xb20800,6, 0xb20820,6, 0xb20840,6, 0xb20860,6, 0xb20880,6, 0xb208a0,6, 0xb208c0,6, 0xb208e0,6, 0xb20900,6, 0xb20920,6, 0xb20940,6, 0xb20960,6, 0xb20980,6, 0xb209a0,6, 0xb209c0,6, 0xb20a00,22, 0xb20a80,1, 0xb20a88,3, 0xb20aa0,5, 0xb20ac0,1, 0xb20ad0,3, 0xb20ae0,1, 0xb20af0,3, 0xb20b00,1, 0xb20b10,3, 0xb20b20,1, 0xb20b30,3, 0xb20b40,1, 0xb20b48,3, 0xb20b58,3, 0xb20b68,3, 0xb20b78,3, 0xb20b88,3, 0xb20ba0,3, 0xb20bb0,1, 0xb20bc0,3, 0xb20bd0,1, 0xb20be0,3, 0xb20bf0,1, 0xb20c00,3, 0xb20c10,1, 0xb20c20,3, 0xb20c30,1, 0xb20c40,3, 0xb20c50,1, 0xb20c80,6, 0xb20ca0,6, 0xb20cc0,1, 0xb20d00,1, 0xb20d10,3, 0xb20d20,1, 0xb20d30,3, 0xb20d40,1, 0xb20d60,5, 0xb20d80,1, 0xb20d90,3, 0xb20da0,1, 0xb20dc0,5, 0xb20de0,1, 0xb20df0,3, 0xb20e00,1, 0xb20e10,3, 0xb20e20,5, 0xb20e40,2, 0xb20e50,3, 0xb20e60,5, 0xb20e80,2, 0xb20e90,3, 0xb20ea0,3, 0xb20eb0,3, 0xb20ec0,3, 0xb20ed0,3, 0xb20ee0,5, 0xb20f00,3, 0xb20f20,5, 0xb20f40,5, 0xb20f60,3, 0xb20f70,3, 0xb20f80,5, 0xb20fa0,3, 0xb20fb0,3, 0xb20fc0,3, 0xb20fd0,3, 0xb20fe0,3, 0xb20ff0,3, 0xb21000,6, 0xb21020,3, 0xb21040,3, 0xb21050,3, 0xb21060,1, 0xb21080,3, 0xb21090,3, 0xb210a0,1, 0xb210c0,3, 0xb210e0,5, 0xb21100,11, 0xb21130,3, 0xb21140,3, 0xb21150,3, 0xb21160,5, 0xb21180,5, 0xb211a0,3, 0xb211b0,3, 0xb211c0,3, 0xb211d0,3, 0xb211e0,2, 0xb211f0,3, 0xb21200,7, 0xb21220,3, 0xb21230,2, 0xb21240,3, 0xb21250,3, 0xb21260,2, 0xb21400,15, 0xb21440,4, 0xb21460,17, 0xb214c0,6, 0xb214e0,4, 0xb214f4,11, 0xb21524,54, 0xb21604,1, 0xb2160c,1, 0xb21614,1, 0xb2161c,15, 0xb21660,6, 0xb21680,4, 0xb216a0,5, 0xb216c0,4, 0xb216e0,5, 0xb21700,4, 0xb21720,5, 0xb21740,4, 0xb21760,5, 0xb21780,4, 0xb217c0,15, 0xb21800,4, 0xb21880,19, 0xb21900,1, 0xb21980,24, 0xb21a00,24, 0xb21a80,24, 0xb21b00,24, 0xb21b80,1, 0xb21b88,2, 0xb22000,451, 0xb22740,169, 0xb23000,260, 0xb23800,12, 0xb23a04,1, 0xb23a0c,8, 0xb23a44,1, 0xb23a50,7, 0xb23a84,1, 0xb23a94,27, 0xb23b04,3, 0xb23b14,3, 0xb23b24,3, 0xb23b34,21, 0xb23ba0,5, 0xb23bc0,1, 0xb23c04,1, 0xb23c14,3, 0xb23c24,3, 0xb23c34,3, 0xb23c44,1, 0xb23c60,8, 0xb23c84,1, 0xb23ca0,8, 0xb23cc4,1, 0xb23ce0,11, 0xb23e04,1, 0xb23e0c,2, 0xb23e18,1, 0xb23e20,3, 0xb23e30,3, 0xb23e40,1, 0xb23e48,3, 0xb23e58,3, 0xb23e70,4, 0xb24000,44, 0xb24100,19, 0xb24180,22, 0xb24200,27, 0xb24280,27, 0xb24300,11, 0xb24380,17, 0xb24400,27, 0xb24480,2, 0xb244a0,6, 0xb244c0,3, 0xb244d0,4, 0xb24500,35, 0xb24600,34, 0xb24700,26, 0xb24780,23, 0xb24800,15, 0xb24848,4, 0xb28000,20, 0xb28100,49, 0xb28200,20, 0xb28300,49, 0xb28400,20, 0xb28500,49, 0xb28600,20, 0xb28700,49, 0xb28800,8, 0xb29000,20, 0xb29100,49, 0xb29200,20, 0xb29300,49, 0xb29400,20, 0xb29500,49, 0xb29600,20, 0xb29700,49, 0xb29800,8, 0xb2a000,15, 0xb2a040,3, 0xb2a050,1, 0xb2a058,4, 0xb2a080,10, 0xb2a0b0,3, 0xb2a0c4,7, 0xb2a100,44, 0xb2a200,5, 0xb2a218,5, 0xb2a280,20, 0xb2a300,1, 0xb2a800,52, 0xb2a8e0,5, 0xb2a900,5, 0xb2aa00,52, 0xb2aae0,5, 0xb2ab00,5, 0xb2ac00,18, 0xb2ac50,10, 0xb2ad00,36, 0xb2ada0,5, 0xb2adc0,5, 0xb2b000,20, 0xb2b080,20, 0xb2b100,20, 0xb2b180,20, 0xb2b200,10, 0xb2b400,10, 0xb2b440,10, 0xb2b480,10, 0xb2b4c0,10, 0xb2b500,1, 0xb2b600,1, 0xb2b608,32, 0xb2b6a0,6, 0xb2b6c0,6, 0xb2b6e0,6, 0xb2b700,6, 0xb2b720,6, 0xb2b740,6, 0xb2b760,6, 0xb2b780,6, 0xb2b800,76, 0xb2ba00,76, 0xb2bc00,33, 0xb2c000,76, 0xb2c200,76, 0xb2c400,33, 0xb2c800,4, 0xb2ca00,72, 0xb2cc00,17, 0xb2cc48,4, 0xb2ce00,27, 0xb2ce80,4, 0xb2cec0,25, 0xb2cf40,6, 0xb2cf60,4, 0xb2cf74,11, 0xb2cfa4,16, 0xb2d000,12, 0xb2d040,2, 0xb2d050,1, 0xb2d058,5, 0xb2d070,3, 0xb40000,23, 0xb40080,23, 0xb40100,23, 0xb40180,23, 0xb40200,13, 0xb40404,1, 0xb4047c,33, 0xb40504,1, 0xb40514,3, 0xb40524,1, 0xb4052c,1, 0xb40600,96, 0xb40784,1, 0xb40790,4, 0xb41000,76, 0xb42000,582, 0xb43000,13, 0xb43400,27, 0xb43480,4, 0xb434c0,25, 0xb43540,6, 0xb43560,4, 0xb43574,3, 0xb43600,8, 0xb43624,59, 0xb43800,4, 0xb43880,36, 0xb43980,17, 0xb43a00,6, 0xb43a20,165, 0xb43d00,12, 0xb43d40,2, 0xb43d50,3, 0xb43d60,1, 0xb43d80,12, 0xb43dc0,2, 0xb43dd0,3, 0xb43de0,1, 0xb43e00,12, 0xb43e40,2, 0xb43e50,3, 0xb43e60,1, 0xb43e80,12, 0xb43ec0,2, 0xb43ed0,3, 0xb43ee0,1, 0xb43f00,9, 0xb43f80,3, 0xb43f90,5, 0xb43fa8,5, 0xb43fc0,5, 0xb43fd8,2, 0xb44000,1, 0xb44010,6, 0xb44030,78, 0xb44180,18, 0xb48004,6, 0xb49000,650, 0xb4a000,650, 0xb4b000,2, 0xb4b040,9, 0xb4b080,7, 0xb4c000,34, 0xb4c090,9, 0xb4c0b8,11, 0xb50000,11, 0xb50040,11, 0xb50080,11, 0xb500c0,11, 0xb50104,1, 0xb5011c,10, 0xb50148,2, 0xb50154,1, 0xb5015c,24, 0xb501c0,3, 0xb501d0,3, 0xb501e0,3, 0xb501f0,33, 0xb50280,3, 0xb50290,3, 0xb502a0,3, 0xb502b0,3, 0xb502c0,5, 0xb502d8,8, 0xb50400,145, 0xb50800,4, 0xb50880,25, 0xb50900,5, 0xb50920,1, 0xb51000,11, 0xb51040,11, 0xb51080,11, 0xb510c0,11, 0xb51100,11, 0xb51140,11, 0xb51180,11, 0xb511c0,11, 0xb51200,1, 0xb51208,19, 0xb51260,2, 0xb5126c,3, 0xb51280,5, 0xb51400,3, 0xb51410,30, 0xb514a4,1, 0xb514b4,23, 0xb51520,6, 0xb51540,3, 0xb51560,2, 0xb5156c,2, 0xb51580,2, 0xb515c0,3, 0xb515d0,3, 0xb515e0,1, 0xb51600,1, 0xb51800,1, 0xb51814,12, 0xb51848,5, 0xb51860,7, 0xb51880,5, 0xb51898,5, 0xb518b0,5, 0xb518c8,7, 0xb518e8,7, 0xb51908,5, 0xb51920,11, 0xb51950,55, 0xb51a40,2, 0xb51a4c,2, 0xb51a60,2, 0xb51a80,6, 0xb51ac0,3, 0xb51ad0,3, 0xb51ae0,1, 0xb51b00,1, 0xb52000,2, 0xb52010,47, 0xb520e0,6, 0xb52100,6, 0xb52120,2, 0xb5212c,3, 0xb52140,6, 0xb52200,5, 0xb52224,1, 0xb52234,3, 0xb52280,20, 0xb52404,1, 0xb524e4,71, 0xb52604,1, 0xb52670,38, 0xb52800,27, 0xb52880,4, 0xb528c0,25, 0xb52940,6, 0xb52960,4, 0xb52974,11, 0xb529a4,7, 0xb52a00,12, 0xb52a40,2, 0xb52a50,1, 0xb52a58,5, 0xb52a70,5, 0xb60000,19, 0xb60080,19, 0xb60100,19, 0xb60180,19, 0xb60200,12, 0xb60280,1, 0xb602a0,6, 0xb602c0,6, 0xb602e0,6, 0xb60300,6, 0xb60320,6, 0xb60340,6, 0xb60360,6, 0xb60380,9, 0xb603c0,13, 0xb60400,3, 0xb60410,159, 0xb60690,16, 0xb606e0,5, 0xb60700,5, 0xb60720,5, 0xb60740,5, 0xb60760,5, 0xb60780,5, 0xb607a0,5, 0xb607c0,5, 0xb607e0,6, 0xb60800,6, 0xb60820,6, 0xb60840,6, 0xb60860,6, 0xb60880,6, 0xb608a0,6, 0xb608c0,6, 0xb608e0,6, 0xb60900,6, 0xb60920,6, 0xb60940,6, 0xb60960,6, 0xb60980,6, 0xb609a0,6, 0xb609c0,6, 0xb60a00,22, 0xb60a80,1, 0xb60a88,3, 0xb60aa0,5, 0xb60ac0,1, 0xb60ad0,3, 0xb60ae0,1, 0xb60af0,3, 0xb60b00,1, 0xb60b10,3, 0xb60b20,1, 0xb60b30,3, 0xb60b40,1, 0xb60b48,3, 0xb60b58,3, 0xb60b68,3, 0xb60b78,3, 0xb60b88,3, 0xb60ba0,3, 0xb60bb0,1, 0xb60bc0,3, 0xb60bd0,1, 0xb60be0,3, 0xb60bf0,1, 0xb60c00,3, 0xb60c10,1, 0xb60c20,3, 0xb60c30,1, 0xb60c40,3, 0xb60c50,1, 0xb60c80,6, 0xb60ca0,6, 0xb60cc0,1, 0xb60d00,1, 0xb60d10,3, 0xb60d20,1, 0xb60d30,3, 0xb60d40,1, 0xb60d60,5, 0xb60d80,1, 0xb60d90,3, 0xb60da0,1, 0xb60dc0,5, 0xb60de0,1, 0xb60df0,3, 0xb60e00,1, 0xb60e10,3, 0xb60e20,5, 0xb60e40,2, 0xb60e50,3, 0xb60e60,5, 0xb60e80,2, 0xb60e90,3, 0xb60ea0,3, 0xb60eb0,3, 0xb60ec0,3, 0xb60ed0,3, 0xb60ee0,5, 0xb60f00,3, 0xb60f20,5, 0xb60f40,5, 0xb60f60,3, 0xb60f70,3, 0xb60f80,5, 0xb60fa0,3, 0xb60fb0,3, 0xb60fc0,3, 0xb60fd0,3, 0xb60fe0,3, 0xb60ff0,3, 0xb61000,6, 0xb61020,3, 0xb61040,3, 0xb61050,3, 0xb61060,1, 0xb61080,3, 0xb61090,3, 0xb610a0,1, 0xb610c0,3, 0xb610e0,5, 0xb61100,11, 0xb61130,3, 0xb61140,3, 0xb61150,3, 0xb61160,5, 0xb61180,5, 0xb611a0,3, 0xb611b0,3, 0xb611c0,3, 0xb611d0,3, 0xb611e0,2, 0xb611f0,3, 0xb61200,7, 0xb61220,3, 0xb61230,2, 0xb61240,3, 0xb61250,3, 0xb61260,2, 0xb61400,15, 0xb61440,4, 0xb61460,17, 0xb614c0,6, 0xb614e0,4, 0xb614f4,11, 0xb61524,54, 0xb61604,1, 0xb6160c,1, 0xb61614,1, 0xb6161c,15, 0xb61660,6, 0xb61680,4, 0xb616a0,5, 0xb616c0,4, 0xb616e0,5, 0xb61700,4, 0xb61720,5, 0xb61740,4, 0xb61760,5, 0xb61780,4, 0xb617c0,15, 0xb61800,4, 0xb61880,19, 0xb61900,1, 0xb61980,24, 0xb61a00,24, 0xb61a80,24, 0xb61b00,24, 0xb61b80,1, 0xb61b88,2, 0xb62000,451, 0xb62740,169, 0xb63000,260, 0xb63800,12, 0xb63a04,1, 0xb63a0c,8, 0xb63a44,1, 0xb63a50,7, 0xb63a84,1, 0xb63a94,27, 0xb63b04,3, 0xb63b14,3, 0xb63b24,3, 0xb63b34,21, 0xb63ba0,5, 0xb63bc0,1, 0xb63c04,1, 0xb63c14,3, 0xb63c24,3, 0xb63c34,3, 0xb63c44,1, 0xb63c60,8, 0xb63c84,1, 0xb63ca0,8, 0xb63cc4,1, 0xb63ce0,11, 0xb63e04,1, 0xb63e0c,2, 0xb63e18,1, 0xb63e20,3, 0xb63e30,3, 0xb63e40,1, 0xb63e48,3, 0xb63e58,3, 0xb63e70,4, 0xb64000,44, 0xb64100,19, 0xb64180,22, 0xb64200,27, 0xb64280,27, 0xb64300,11, 0xb64380,17, 0xb64400,27, 0xb64480,2, 0xb644a0,6, 0xb644c0,3, 0xb644d0,4, 0xb64500,35, 0xb64600,34, 0xb64700,26, 0xb64780,23, 0xb64800,15, 0xb64848,4, 0xb68000,20, 0xb68100,49, 0xb68200,20, 0xb68300,49, 0xb68400,20, 0xb68500,49, 0xb68600,20, 0xb68700,49, 0xb68800,8, 0xb69000,20, 0xb69100,49, 0xb69200,20, 0xb69300,49, 0xb69400,20, 0xb69500,49, 0xb69600,20, 0xb69700,49, 0xb69800,8, 0xb6a000,15, 0xb6a040,3, 0xb6a050,1, 0xb6a058,4, 0xb6a080,10, 0xb6a0b0,3, 0xb6a0c4,7, 0xb6a100,44, 0xb6a200,5, 0xb6a218,5, 0xb6a280,20, 0xb6a300,1, 0xb6a800,52, 0xb6a8e0,5, 0xb6a900,5, 0xb6aa00,52, 0xb6aae0,5, 0xb6ab00,5, 0xb6ac00,18, 0xb6ac50,10, 0xb6ad00,36, 0xb6ada0,5, 0xb6adc0,5, 0xb6b000,20, 0xb6b080,20, 0xb6b100,20, 0xb6b180,20, 0xb6b200,10, 0xb6b400,10, 0xb6b440,10, 0xb6b480,10, 0xb6b4c0,10, 0xb6b500,1, 0xb6b600,1, 0xb6b608,32, 0xb6b6a0,6, 0xb6b6c0,6, 0xb6b6e0,6, 0xb6b700,6, 0xb6b720,6, 0xb6b740,6, 0xb6b760,6, 0xb6b780,6, 0xb6b800,76, 0xb6ba00,76, 0xb6bc00,33, 0xb6c000,76, 0xb6c200,76, 0xb6c400,33, 0xb6c800,4, 0xb6ca00,72, 0xb6cc00,17, 0xb6cc48,4, 0xb6ce00,27, 0xb6ce80,4, 0xb6cec0,25, 0xb6cf40,6, 0xb6cf60,4, 0xb6cf74,11, 0xb6cfa4,16, 0xb6d000,12, 0xb6d040,2, 0xb6d050,1, 0xb6d058,5, 0xb6d070,3, 0xb80000,23, 0xb80080,23, 0xb80100,23, 0xb80180,23, 0xb80200,13, 0xb80404,1, 0xb8047c,33, 0xb80504,1, 0xb80514,3, 0xb80524,1, 0xb8052c,1, 0xb80600,96, 0xb80784,1, 0xb80790,4, 0xb81000,76, 0xb82000,582, 0xb83000,13, 0xb83400,27, 0xb83480,4, 0xb834c0,25, 0xb83540,6, 0xb83560,4, 0xb83574,3, 0xb83600,8, 0xb83624,59, 0xb83800,4, 0xb83880,36, 0xb83980,17, 0xb83a00,6, 0xb83a20,165, 0xb83d00,12, 0xb83d40,2, 0xb83d50,3, 0xb83d60,1, 0xb83d80,12, 0xb83dc0,2, 0xb83dd0,3, 0xb83de0,1, 0xb83e00,12, 0xb83e40,2, 0xb83e50,3, 0xb83e60,1, 0xb83e80,12, 0xb83ec0,2, 0xb83ed0,3, 0xb83ee0,1, 0xb83f00,9, 0xb83f80,3, 0xb83f90,5, 0xb83fa8,5, 0xb83fc0,5, 0xb83fd8,2, 0xb84000,1, 0xb84010,6, 0xb84030,78, 0xb84180,18, 0xb88004,6, 0xb89000,650, 0xb8a000,650, 0xb8b000,2, 0xb8b040,9, 0xb8b080,7, 0xb8c000,34, 0xb8c090,9, 0xb8c0b8,11, 0xb90000,11, 0xb90040,11, 0xb90080,11, 0xb900c0,11, 0xb90104,1, 0xb9011c,10, 0xb90148,2, 0xb90154,1, 0xb9015c,24, 0xb901c0,3, 0xb901d0,3, 0xb901e0,3, 0xb901f0,33, 0xb90280,3, 0xb90290,3, 0xb902a0,3, 0xb902b0,3, 0xb902c0,5, 0xb902d8,8, 0xb90400,145, 0xb90800,4, 0xb90880,25, 0xb90900,5, 0xb90920,1, 0xb91000,11, 0xb91040,11, 0xb91080,11, 0xb910c0,11, 0xb91100,11, 0xb91140,11, 0xb91180,11, 0xb911c0,11, 0xb91200,1, 0xb91208,19, 0xb91260,2, 0xb9126c,3, 0xb91280,5, 0xb91400,3, 0xb91410,30, 0xb914a4,1, 0xb914b4,23, 0xb91520,6, 0xb91540,3, 0xb91560,2, 0xb9156c,2, 0xb91580,2, 0xb915c0,3, 0xb915d0,3, 0xb915e0,1, 0xb91600,1, 0xb91800,1, 0xb91814,12, 0xb91848,5, 0xb91860,7, 0xb91880,5, 0xb91898,5, 0xb918b0,5, 0xb918c8,7, 0xb918e8,7, 0xb91908,5, 0xb91920,11, 0xb91950,55, 0xb91a40,2, 0xb91a4c,2, 0xb91a60,2, 0xb91a80,6, 0xb91ac0,3, 0xb91ad0,3, 0xb91ae0,1, 0xb91b00,1, 0xb92000,2, 0xb92010,47, 0xb920e0,6, 0xb92100,6, 0xb92120,2, 0xb9212c,3, 0xb92140,6, 0xb92200,5, 0xb92224,1, 0xb92234,3, 0xb92280,20, 0xb92404,1, 0xb924e4,71, 0xb92604,1, 0xb92670,38, 0xb92800,27, 0xb92880,4, 0xb928c0,25, 0xb92940,6, 0xb92960,4, 0xb92974,11, 0xb929a4,7, 0xb92a00,12, 0xb92a40,2, 0xb92a50,1, 0xb92a58,5, 0xb92a70,5, 0xba0000,19, 0xba0080,19, 0xba0100,19, 0xba0180,19, 0xba0200,12, 0xba0280,1, 0xba02a0,6, 0xba02c0,6, 0xba02e0,6, 0xba0300,6, 0xba0320,6, 0xba0340,6, 0xba0360,6, 0xba0380,9, 0xba03c0,13, 0xba0400,3, 0xba0410,159, 0xba0690,16, 0xba06e0,5, 0xba0700,5, 0xba0720,5, 0xba0740,5, 0xba0760,5, 0xba0780,5, 0xba07a0,5, 0xba07c0,5, 0xba07e0,6, 0xba0800,6, 0xba0820,6, 0xba0840,6, 0xba0860,6, 0xba0880,6, 0xba08a0,6, 0xba08c0,6, 0xba08e0,6, 0xba0900,6, 0xba0920,6, 0xba0940,6, 0xba0960,6, 0xba0980,6, 0xba09a0,6, 0xba09c0,6, 0xba0a00,22, 0xba0a80,1, 0xba0a88,3, 0xba0aa0,5, 0xba0ac0,1, 0xba0ad0,3, 0xba0ae0,1, 0xba0af0,3, 0xba0b00,1, 0xba0b10,3, 0xba0b20,1, 0xba0b30,3, 0xba0b40,1, 0xba0b48,3, 0xba0b58,3, 0xba0b68,3, 0xba0b78,3, 0xba0b88,3, 0xba0ba0,3, 0xba0bb0,1, 0xba0bc0,3, 0xba0bd0,1, 0xba0be0,3, 0xba0bf0,1, 0xba0c00,3, 0xba0c10,1, 0xba0c20,3, 0xba0c30,1, 0xba0c40,3, 0xba0c50,1, 0xba0c80,6, 0xba0ca0,6, 0xba0cc0,1, 0xba0d00,1, 0xba0d10,3, 0xba0d20,1, 0xba0d30,3, 0xba0d40,1, 0xba0d60,5, 0xba0d80,1, 0xba0d90,3, 0xba0da0,1, 0xba0dc0,5, 0xba0de0,1, 0xba0df0,3, 0xba0e00,1, 0xba0e10,3, 0xba0e20,5, 0xba0e40,2, 0xba0e50,3, 0xba0e60,5, 0xba0e80,2, 0xba0e90,3, 0xba0ea0,3, 0xba0eb0,3, 0xba0ec0,3, 0xba0ed0,3, 0xba0ee0,5, 0xba0f00,3, 0xba0f20,5, 0xba0f40,5, 0xba0f60,3, 0xba0f70,3, 0xba0f80,5, 0xba0fa0,3, 0xba0fb0,3, 0xba0fc0,3, 0xba0fd0,3, 0xba0fe0,3, 0xba0ff0,3, 0xba1000,6, 0xba1020,3, 0xba1040,3, 0xba1050,3, 0xba1060,1, 0xba1080,3, 0xba1090,3, 0xba10a0,1, 0xba10c0,3, 0xba10e0,5, 0xba1100,11, 0xba1130,3, 0xba1140,3, 0xba1150,3, 0xba1160,5, 0xba1180,5, 0xba11a0,3, 0xba11b0,3, 0xba11c0,3, 0xba11d0,3, 0xba11e0,2, 0xba11f0,3, 0xba1200,7, 0xba1220,3, 0xba1230,2, 0xba1240,3, 0xba1250,3, 0xba1260,2, 0xba1400,15, 0xba1440,4, 0xba1460,17, 0xba14c0,6, 0xba14e0,4, 0xba14f4,11, 0xba1524,54, 0xba1604,1, 0xba160c,1, 0xba1614,1, 0xba161c,15, 0xba1660,6, 0xba1680,4, 0xba16a0,5, 0xba16c0,4, 0xba16e0,5, 0xba1700,4, 0xba1720,5, 0xba1740,4, 0xba1760,5, 0xba1780,4, 0xba17c0,15, 0xba1800,4, 0xba1880,19, 0xba1900,1, 0xba1980,24, 0xba1a00,24, 0xba1a80,24, 0xba1b00,24, 0xba1b80,1, 0xba1b88,2, 0xba2000,451, 0xba2740,169, 0xba3000,260, 0xba3800,12, 0xba3a04,1, 0xba3a0c,8, 0xba3a44,1, 0xba3a50,7, 0xba3a84,1, 0xba3a94,27, 0xba3b04,3, 0xba3b14,3, 0xba3b24,3, 0xba3b34,21, 0xba3ba0,5, 0xba3bc0,1, 0xba3c04,1, 0xba3c14,3, 0xba3c24,3, 0xba3c34,3, 0xba3c44,1, 0xba3c60,8, 0xba3c84,1, 0xba3ca0,8, 0xba3cc4,1, 0xba3ce0,11, 0xba3e04,1, 0xba3e0c,2, 0xba3e18,1, 0xba3e20,3, 0xba3e30,3, 0xba3e40,1, 0xba3e48,3, 0xba3e58,3, 0xba3e70,4, 0xba4000,44, 0xba4100,19, 0xba4180,22, 0xba4200,27, 0xba4280,27, 0xba4300,11, 0xba4380,17, 0xba4400,27, 0xba4480,2, 0xba44a0,6, 0xba44c0,3, 0xba44d0,4, 0xba4500,35, 0xba4600,34, 0xba4700,26, 0xba4780,23, 0xba4800,15, 0xba4848,4, 0xba8000,20, 0xba8100,49, 0xba8200,20, 0xba8300,49, 0xba8400,20, 0xba8500,49, 0xba8600,20, 0xba8700,49, 0xba8800,8, 0xba9000,20, 0xba9100,49, 0xba9200,20, 0xba9300,49, 0xba9400,20, 0xba9500,49, 0xba9600,20, 0xba9700,49, 0xba9800,8, 0xbaa000,15, 0xbaa040,3, 0xbaa050,1, 0xbaa058,4, 0xbaa080,10, 0xbaa0b0,3, 0xbaa0c4,7, 0xbaa100,44, 0xbaa200,5, 0xbaa218,5, 0xbaa280,20, 0xbaa300,1, 0xbaa800,52, 0xbaa8e0,5, 0xbaa900,5, 0xbaaa00,52, 0xbaaae0,5, 0xbaab00,5, 0xbaac00,18, 0xbaac50,10, 0xbaad00,36, 0xbaada0,5, 0xbaadc0,5, 0xbab000,20, 0xbab080,20, 0xbab100,20, 0xbab180,20, 0xbab200,10, 0xbab400,10, 0xbab440,10, 0xbab480,10, 0xbab4c0,10, 0xbab500,1, 0xbab600,1, 0xbab608,32, 0xbab6a0,6, 0xbab6c0,6, 0xbab6e0,6, 0xbab700,6, 0xbab720,6, 0xbab740,6, 0xbab760,6, 0xbab780,6, 0xbab800,76, 0xbaba00,76, 0xbabc00,33, 0xbac000,76, 0xbac200,76, 0xbac400,33, 0xbac800,4, 0xbaca00,72, 0xbacc00,17, 0xbacc48,4, 0xbace00,27, 0xbace80,4, 0xbacec0,25, 0xbacf40,6, 0xbacf60,4, 0xbacf74,11, 0xbacfa4,16, 0xbad000,12, 0xbad040,2, 0xbad050,1, 0xbad058,5, 0xbad070,3, 0xbc0000,23, 0xbc0080,23, 0xbc0100,23, 0xbc0180,23, 0xbc0200,13, 0xbc0404,1, 0xbc047c,33, 0xbc0504,1, 0xbc0514,3, 0xbc0524,1, 0xbc052c,1, 0xbc0600,96, 0xbc0784,1, 0xbc0790,4, 0xbc1000,76, 0xbc2000,582, 0xbc3000,13, 0xbc3400,27, 0xbc3480,4, 0xbc34c0,25, 0xbc3540,6, 0xbc3560,4, 0xbc3574,3, 0xbc3600,8, 0xbc3624,59, 0xbc3800,4, 0xbc3880,36, 0xbc3980,17, 0xbc3a00,6, 0xbc3a20,165, 0xbc3d00,12, 0xbc3d40,2, 0xbc3d50,3, 0xbc3d60,1, 0xbc3d80,12, 0xbc3dc0,2, 0xbc3dd0,3, 0xbc3de0,1, 0xbc3e00,12, 0xbc3e40,2, 0xbc3e50,3, 0xbc3e60,1, 0xbc3e80,12, 0xbc3ec0,2, 0xbc3ed0,3, 0xbc3ee0,1, 0xbc3f00,9, 0xbc3f80,3, 0xbc3f90,5, 0xbc3fa8,5, 0xbc3fc0,5, 0xbc3fd8,2, 0xbc4000,1, 0xbc4010,6, 0xbc4030,78, 0xbc4180,18, 0xbc8004,6, 0xbc9000,650, 0xbca000,650, 0xbcb000,2, 0xbcb040,9, 0xbcb080,7, 0xbcc000,34, 0xbcc090,9, 0xbcc0b8,11, 0xbd0000,11, 0xbd0040,11, 0xbd0080,11, 0xbd00c0,11, 0xbd0104,1, 0xbd011c,10, 0xbd0148,2, 0xbd0154,1, 0xbd015c,24, 0xbd01c0,3, 0xbd01d0,3, 0xbd01e0,3, 0xbd01f0,33, 0xbd0280,3, 0xbd0290,3, 0xbd02a0,3, 0xbd02b0,3, 0xbd02c0,5, 0xbd02d8,8, 0xbd0400,145, 0xbd0800,4, 0xbd0880,25, 0xbd0900,5, 0xbd0920,1, 0xbd1000,11, 0xbd1040,11, 0xbd1080,11, 0xbd10c0,11, 0xbd1100,11, 0xbd1140,11, 0xbd1180,11, 0xbd11c0,11, 0xbd1200,1, 0xbd1208,19, 0xbd1260,2, 0xbd126c,3, 0xbd1280,5, 0xbd1400,3, 0xbd1410,30, 0xbd14a4,1, 0xbd14b4,23, 0xbd1520,6, 0xbd1540,3, 0xbd1560,2, 0xbd156c,2, 0xbd1580,2, 0xbd15c0,3, 0xbd15d0,3, 0xbd15e0,1, 0xbd1600,1, 0xbd1800,1, 0xbd1814,12, 0xbd1848,5, 0xbd1860,7, 0xbd1880,5, 0xbd1898,5, 0xbd18b0,5, 0xbd18c8,7, 0xbd18e8,7, 0xbd1908,5, 0xbd1920,11, 0xbd1950,55, 0xbd1a40,2, 0xbd1a4c,2, 0xbd1a60,2, 0xbd1a80,6, 0xbd1ac0,3, 0xbd1ad0,3, 0xbd1ae0,1, 0xbd1b00,1, 0xbd2000,2, 0xbd2010,47, 0xbd20e0,6, 0xbd2100,6, 0xbd2120,2, 0xbd212c,3, 0xbd2140,6, 0xbd2200,5, 0xbd2224,1, 0xbd2234,3, 0xbd2280,20, 0xbd2404,1, 0xbd24e4,71, 0xbd2604,1, 0xbd2670,38, 0xbd2800,27, 0xbd2880,4, 0xbd28c0,25, 0xbd2940,6, 0xbd2960,4, 0xbd2974,11, 0xbd29a4,7, 0xbd2a00,12, 0xbd2a40,2, 0xbd2a50,1, 0xbd2a58,5, 0xbd2a70,5, 0xbe0000,19, 0xbe0080,19, 0xbe0100,19, 0xbe0180,19, 0xbe0200,12, 0xbe0280,1, 0xbe02a0,6, 0xbe02c0,6, 0xbe02e0,6, 0xbe0300,6, 0xbe0320,6, 0xbe0340,6, 0xbe0360,6, 0xbe0380,9, 0xbe03c0,13, 0xbe0400,3, 0xbe0410,159, 0xbe0690,16, 0xbe06e0,5, 0xbe0700,5, 0xbe0720,5, 0xbe0740,5, 0xbe0760,5, 0xbe0780,5, 0xbe07a0,5, 0xbe07c0,5, 0xbe07e0,6, 0xbe0800,6, 0xbe0820,6, 0xbe0840,6, 0xbe0860,6, 0xbe0880,6, 0xbe08a0,6, 0xbe08c0,6, 0xbe08e0,6, 0xbe0900,6, 0xbe0920,6, 0xbe0940,6, 0xbe0960,6, 0xbe0980,6, 0xbe09a0,6, 0xbe09c0,6, 0xbe0a00,22, 0xbe0a80,1, 0xbe0a88,3, 0xbe0aa0,5, 0xbe0ac0,1, 0xbe0ad0,3, 0xbe0ae0,1, 0xbe0af0,3, 0xbe0b00,1, 0xbe0b10,3, 0xbe0b20,1, 0xbe0b30,3, 0xbe0b40,1, 0xbe0b48,3, 0xbe0b58,3, 0xbe0b68,3, 0xbe0b78,3, 0xbe0b88,3, 0xbe0ba0,3, 0xbe0bb0,1, 0xbe0bc0,3, 0xbe0bd0,1, 0xbe0be0,3, 0xbe0bf0,1, 0xbe0c00,3, 0xbe0c10,1, 0xbe0c20,3, 0xbe0c30,1, 0xbe0c40,3, 0xbe0c50,1, 0xbe0c80,6, 0xbe0ca0,6, 0xbe0cc0,1, 0xbe0d00,1, 0xbe0d10,3, 0xbe0d20,1, 0xbe0d30,3, 0xbe0d40,1, 0xbe0d60,5, 0xbe0d80,1, 0xbe0d90,3, 0xbe0da0,1, 0xbe0dc0,5, 0xbe0de0,1, 0xbe0df0,3, 0xbe0e00,1, 0xbe0e10,3, 0xbe0e20,5, 0xbe0e40,2, 0xbe0e50,3, 0xbe0e60,5, 0xbe0e80,2, 0xbe0e90,3, 0xbe0ea0,3, 0xbe0eb0,3, 0xbe0ec0,3, 0xbe0ed0,3, 0xbe0ee0,5, 0xbe0f00,3, 0xbe0f20,5, 0xbe0f40,5, 0xbe0f60,3, 0xbe0f70,3, 0xbe0f80,5, 0xbe0fa0,3, 0xbe0fb0,3, 0xbe0fc0,3, 0xbe0fd0,3, 0xbe0fe0,3, 0xbe0ff0,3, 0xbe1000,6, 0xbe1020,3, 0xbe1040,3, 0xbe1050,3, 0xbe1060,1, 0xbe1080,3, 0xbe1090,3, 0xbe10a0,1, 0xbe10c0,3, 0xbe10e0,5, 0xbe1100,11, 0xbe1130,3, 0xbe1140,3, 0xbe1150,3, 0xbe1160,5, 0xbe1180,5, 0xbe11a0,3, 0xbe11b0,3, 0xbe11c0,3, 0xbe11d0,3, 0xbe11e0,2, 0xbe11f0,3, 0xbe1200,7, 0xbe1220,3, 0xbe1230,2, 0xbe1240,3, 0xbe1250,3, 0xbe1260,2, 0xbe1400,15, 0xbe1440,4, 0xbe1460,17, 0xbe14c0,6, 0xbe14e0,4, 0xbe14f4,11, 0xbe1524,54, 0xbe1604,1, 0xbe160c,1, 0xbe1614,1, 0xbe161c,15, 0xbe1660,6, 0xbe1680,4, 0xbe16a0,5, 0xbe16c0,4, 0xbe16e0,5, 0xbe1700,4, 0xbe1720,5, 0xbe1740,4, 0xbe1760,5, 0xbe1780,4, 0xbe17c0,15, 0xbe1800,4, 0xbe1880,19, 0xbe1900,1, 0xbe1980,24, 0xbe1a00,24, 0xbe1a80,24, 0xbe1b00,24, 0xbe1b80,1, 0xbe1b88,2, 0xbe2000,451, 0xbe2740,169, 0xbe3000,260, 0xbe3800,12, 0xbe3a04,1, 0xbe3a0c,8, 0xbe3a44,1, 0xbe3a50,7, 0xbe3a84,1, 0xbe3a94,27, 0xbe3b04,3, 0xbe3b14,3, 0xbe3b24,3, 0xbe3b34,21, 0xbe3ba0,5, 0xbe3bc0,1, 0xbe3c04,1, 0xbe3c14,3, 0xbe3c24,3, 0xbe3c34,3, 0xbe3c44,1, 0xbe3c60,8, 0xbe3c84,1, 0xbe3ca0,8, 0xbe3cc4,1, 0xbe3ce0,11, 0xbe3e04,1, 0xbe3e0c,2, 0xbe3e18,1, 0xbe3e20,3, 0xbe3e30,3, 0xbe3e40,1, 0xbe3e48,3, 0xbe3e58,3, 0xbe3e70,4, 0xbe4000,44, 0xbe4100,19, 0xbe4180,22, 0xbe4200,27, 0xbe4280,27, 0xbe4300,11, 0xbe4380,17, 0xbe4400,27, 0xbe4480,2, 0xbe44a0,6, 0xbe44c0,3, 0xbe44d0,4, 0xbe4500,35, 0xbe4600,34, 0xbe4700,26, 0xbe4780,23, 0xbe4800,15, 0xbe4848,4, 0xbe8000,20, 0xbe8100,49, 0xbe8200,20, 0xbe8300,49, 0xbe8400,20, 0xbe8500,49, 0xbe8600,20, 0xbe8700,49, 0xbe8800,8, 0xbe9000,20, 0xbe9100,49, 0xbe9200,20, 0xbe9300,49, 0xbe9400,20, 0xbe9500,49, 0xbe9600,20, 0xbe9700,49, 0xbe9800,8, 0xbea000,15, 0xbea040,3, 0xbea050,1, 0xbea058,4, 0xbea080,10, 0xbea0b0,3, 0xbea0c4,7, 0xbea100,44, 0xbea200,5, 0xbea218,5, 0xbea280,20, 0xbea300,1, 0xbea800,52, 0xbea8e0,5, 0xbea900,5, 0xbeaa00,52, 0xbeaae0,5, 0xbeab00,5, 0xbeac00,18, 0xbeac50,10, 0xbead00,36, 0xbeada0,5, 0xbeadc0,5, 0xbeb000,20, 0xbeb080,20, 0xbeb100,20, 0xbeb180,20, 0xbeb200,10, 0xbeb400,10, 0xbeb440,10, 0xbeb480,10, 0xbeb4c0,10, 0xbeb500,1, 0xbeb600,1, 0xbeb608,32, 0xbeb6a0,6, 0xbeb6c0,6, 0xbeb6e0,6, 0xbeb700,6, 0xbeb720,6, 0xbeb740,6, 0xbeb760,6, 0xbeb780,6, 0xbeb800,76, 0xbeba00,76, 0xbebc00,33, 0xbec000,76, 0xbec200,76, 0xbec400,33, 0xbec800,4, 0xbeca00,72, 0xbecc00,17, 0xbecc48,4, 0xbece00,27, 0xbece80,4, 0xbecec0,25, 0xbecf40,6, 0xbecf60,4, 0xbecf74,11, 0xbecfa4,16, 0xbed000,12, 0xbed040,2, 0xbed050,1, 0xbed058,5, 0xbed070,3, 0xc00000,23, 0xc00080,23, 0xc00100,23, 0xc00180,23, 0xc00200,13, 0xc00404,1, 0xc0047c,33, 0xc00504,1, 0xc00514,3, 0xc00524,1, 0xc0052c,1, 0xc00600,96, 0xc00784,1, 0xc00790,4, 0xc01000,76, 0xc02000,582, 0xc03000,13, 0xc03400,27, 0xc03480,4, 0xc034c0,25, 0xc03540,6, 0xc03560,4, 0xc03574,3, 0xc03600,8, 0xc03624,59, 0xc03800,4, 0xc03880,36, 0xc03980,17, 0xc03a00,6, 0xc03a20,165, 0xc03d00,12, 0xc03d40,2, 0xc03d50,3, 0xc03d60,1, 0xc03d80,12, 0xc03dc0,2, 0xc03dd0,3, 0xc03de0,1, 0xc03e00,12, 0xc03e40,2, 0xc03e50,3, 0xc03e60,1, 0xc03e80,12, 0xc03ec0,2, 0xc03ed0,3, 0xc03ee0,1, 0xc03f00,9, 0xc03f80,3, 0xc03f90,5, 0xc03fa8,5, 0xc03fc0,5, 0xc03fd8,2, 0xc04000,1, 0xc04010,6, 0xc04030,78, 0xc04180,18, 0xc08004,6, 0xc09000,650, 0xc0a000,650, 0xc0b000,2, 0xc0b040,9, 0xc0b080,7, 0xc0c000,34, 0xc0c090,9, 0xc0c0b8,11, 0xc10000,11, 0xc10040,11, 0xc10080,11, 0xc100c0,11, 0xc10104,1, 0xc1011c,10, 0xc10148,2, 0xc10154,1, 0xc1015c,24, 0xc101c0,3, 0xc101d0,3, 0xc101e0,3, 0xc101f0,33, 0xc10280,3, 0xc10290,3, 0xc102a0,3, 0xc102b0,3, 0xc102c0,5, 0xc102d8,8, 0xc10400,145, 0xc10800,4, 0xc10880,25, 0xc10900,5, 0xc10920,1, 0xc11000,11, 0xc11040,11, 0xc11080,11, 0xc110c0,11, 0xc11100,11, 0xc11140,11, 0xc11180,11, 0xc111c0,11, 0xc11200,1, 0xc11208,19, 0xc11260,2, 0xc1126c,3, 0xc11280,5, 0xc11400,3, 0xc11410,30, 0xc114a4,1, 0xc114b4,23, 0xc11520,6, 0xc11540,3, 0xc11560,2, 0xc1156c,2, 0xc11580,2, 0xc115c0,3, 0xc115d0,3, 0xc115e0,1, 0xc11600,1, 0xc11800,1, 0xc11814,12, 0xc11848,5, 0xc11860,7, 0xc11880,5, 0xc11898,5, 0xc118b0,5, 0xc118c8,7, 0xc118e8,7, 0xc11908,5, 0xc11920,11, 0xc11950,55, 0xc11a40,2, 0xc11a4c,2, 0xc11a60,2, 0xc11a80,6, 0xc11ac0,3, 0xc11ad0,3, 0xc11ae0,1, 0xc11b00,1, 0xc12000,2, 0xc12010,47, 0xc120e0,6, 0xc12100,6, 0xc12120,2, 0xc1212c,3, 0xc12140,6, 0xc12200,5, 0xc12224,1, 0xc12234,3, 0xc12280,20, 0xc12404,1, 0xc124e4,71, 0xc12604,1, 0xc12670,38, 0xc12800,27, 0xc12880,4, 0xc128c0,25, 0xc12940,6, 0xc12960,4, 0xc12974,11, 0xc129a4,7, 0xc12a00,12, 0xc12a40,2, 0xc12a50,1, 0xc12a58,5, 0xc12a70,5, 0xc20000,19, 0xc20080,19, 0xc20100,19, 0xc20180,19, 0xc20200,12, 0xc20280,1, 0xc202a0,6, 0xc202c0,6, 0xc202e0,6, 0xc20300,6, 0xc20320,6, 0xc20340,6, 0xc20360,6, 0xc20380,9, 0xc203c0,13, 0xc20400,3, 0xc20410,159, 0xc20690,16, 0xc206e0,5, 0xc20700,5, 0xc20720,5, 0xc20740,5, 0xc20760,5, 0xc20780,5, 0xc207a0,5, 0xc207c0,5, 0xc207e0,6, 0xc20800,6, 0xc20820,6, 0xc20840,6, 0xc20860,6, 0xc20880,6, 0xc208a0,6, 0xc208c0,6, 0xc208e0,6, 0xc20900,6, 0xc20920,6, 0xc20940,6, 0xc20960,6, 0xc20980,6, 0xc209a0,6, 0xc209c0,6, 0xc20a00,22, 0xc20a80,1, 0xc20a88,3, 0xc20aa0,5, 0xc20ac0,1, 0xc20ad0,3, 0xc20ae0,1, 0xc20af0,3, 0xc20b00,1, 0xc20b10,3, 0xc20b20,1, 0xc20b30,3, 0xc20b40,1, 0xc20b48,3, 0xc20b58,3, 0xc20b68,3, 0xc20b78,3, 0xc20b88,3, 0xc20ba0,3, 0xc20bb0,1, 0xc20bc0,3, 0xc20bd0,1, 0xc20be0,3, 0xc20bf0,1, 0xc20c00,3, 0xc20c10,1, 0xc20c20,3, 0xc20c30,1, 0xc20c40,3, 0xc20c50,1, 0xc20c80,6, 0xc20ca0,6, 0xc20cc0,1, 0xc20d00,1, 0xc20d10,3, 0xc20d20,1, 0xc20d30,3, 0xc20d40,1, 0xc20d60,5, 0xc20d80,1, 0xc20d90,3, 0xc20da0,1, 0xc20dc0,5, 0xc20de0,1, 0xc20df0,3, 0xc20e00,1, 0xc20e10,3, 0xc20e20,5, 0xc20e40,2, 0xc20e50,3, 0xc20e60,5, 0xc20e80,2, 0xc20e90,3, 0xc20ea0,3, 0xc20eb0,3, 0xc20ec0,3, 0xc20ed0,3, 0xc20ee0,5, 0xc20f00,3, 0xc20f20,5, 0xc20f40,5, 0xc20f60,3, 0xc20f70,3, 0xc20f80,5, 0xc20fa0,3, 0xc20fb0,3, 0xc20fc0,3, 0xc20fd0,3, 0xc20fe0,3, 0xc20ff0,3, 0xc21000,6, 0xc21020,3, 0xc21040,3, 0xc21050,3, 0xc21060,1, 0xc21080,3, 0xc21090,3, 0xc210a0,1, 0xc210c0,3, 0xc210e0,5, 0xc21100,11, 0xc21130,3, 0xc21140,3, 0xc21150,3, 0xc21160,5, 0xc21180,5, 0xc211a0,3, 0xc211b0,3, 0xc211c0,3, 0xc211d0,3, 0xc211e0,2, 0xc211f0,3, 0xc21200,7, 0xc21220,3, 0xc21230,2, 0xc21240,3, 0xc21250,3, 0xc21260,2, 0xc21400,15, 0xc21440,4, 0xc21460,17, 0xc214c0,6, 0xc214e0,4, 0xc214f4,11, 0xc21524,54, 0xc21604,1, 0xc2160c,1, 0xc21614,1, 0xc2161c,15, 0xc21660,6, 0xc21680,4, 0xc216a0,5, 0xc216c0,4, 0xc216e0,5, 0xc21700,4, 0xc21720,5, 0xc21740,4, 0xc21760,5, 0xc21780,4, 0xc217c0,15, 0xc21800,4, 0xc21880,19, 0xc21900,1, 0xc21980,24, 0xc21a00,24, 0xc21a80,24, 0xc21b00,24, 0xc21b80,1, 0xc21b88,2, 0xc22000,451, 0xc22740,169, 0xc23000,260, 0xc23800,12, 0xc23a04,1, 0xc23a0c,8, 0xc23a44,1, 0xc23a50,7, 0xc23a84,1, 0xc23a94,27, 0xc23b04,3, 0xc23b14,3, 0xc23b24,3, 0xc23b34,21, 0xc23ba0,5, 0xc23bc0,1, 0xc23c04,1, 0xc23c14,3, 0xc23c24,3, 0xc23c34,3, 0xc23c44,1, 0xc23c60,8, 0xc23c84,1, 0xc23ca0,8, 0xc23cc4,1, 0xc23ce0,11, 0xc23e04,1, 0xc23e0c,2, 0xc23e18,1, 0xc23e20,3, 0xc23e30,3, 0xc23e40,1, 0xc23e48,3, 0xc23e58,3, 0xc23e70,4, 0xc24000,44, 0xc24100,19, 0xc24180,22, 0xc24200,27, 0xc24280,27, 0xc24300,11, 0xc24380,17, 0xc24400,27, 0xc24480,2, 0xc244a0,6, 0xc244c0,3, 0xc244d0,4, 0xc24500,35, 0xc24600,34, 0xc24700,26, 0xc24780,23, 0xc24800,15, 0xc24848,4, 0xc28000,20, 0xc28100,49, 0xc28200,20, 0xc28300,49, 0xc28400,20, 0xc28500,49, 0xc28600,20, 0xc28700,49, 0xc28800,8, 0xc29000,20, 0xc29100,49, 0xc29200,20, 0xc29300,49, 0xc29400,20, 0xc29500,49, 0xc29600,20, 0xc29700,49, 0xc29800,8, 0xc2a000,15, 0xc2a040,3, 0xc2a050,1, 0xc2a058,4, 0xc2a080,10, 0xc2a0b0,3, 0xc2a0c4,7, 0xc2a100,44, 0xc2a200,5, 0xc2a218,5, 0xc2a280,20, 0xc2a300,1, 0xc2a800,52, 0xc2a8e0,5, 0xc2a900,5, 0xc2aa00,52, 0xc2aae0,5, 0xc2ab00,5, 0xc2ac00,18, 0xc2ac50,10, 0xc2ad00,36, 0xc2ada0,5, 0xc2adc0,5, 0xc2b000,20, 0xc2b080,20, 0xc2b100,20, 0xc2b180,20, 0xc2b200,10, 0xc2b400,10, 0xc2b440,10, 0xc2b480,10, 0xc2b4c0,10, 0xc2b500,1, 0xc2b600,1, 0xc2b608,32, 0xc2b6a0,6, 0xc2b6c0,6, 0xc2b6e0,6, 0xc2b700,6, 0xc2b720,6, 0xc2b740,6, 0xc2b760,6, 0xc2b780,6, 0xc2b800,76, 0xc2ba00,76, 0xc2bc00,33, 0xc2c000,76, 0xc2c200,76, 0xc2c400,33, 0xc2c800,4, 0xc2ca00,72, 0xc2cc00,17, 0xc2cc48,4, 0xc2ce00,27, 0xc2ce80,4, 0xc2cec0,25, 0xc2cf40,6, 0xc2cf60,4, 0xc2cf74,11, 0xc2cfa4,16, 0xc2d000,12, 0xc2d040,2, 0xc2d050,1, 0xc2d058,5, 0xc2d070,3, 0xc40000,23, 0xc40080,23, 0xc40100,23, 0xc40180,23, 0xc40200,13, 0xc40404,1, 0xc4047c,33, 0xc40504,1, 0xc40514,3, 0xc40524,1, 0xc4052c,1, 0xc40600,96, 0xc40784,1, 0xc40790,4, 0xc41000,76, 0xc42000,582, 0xc43000,13, 0xc43400,27, 0xc43480,4, 0xc434c0,25, 0xc43540,6, 0xc43560,4, 0xc43574,3, 0xc43600,8, 0xc43624,59, 0xc43800,4, 0xc43880,36, 0xc43980,17, 0xc43a00,6, 0xc43a20,165, 0xc43d00,12, 0xc43d40,2, 0xc43d50,3, 0xc43d60,1, 0xc43d80,12, 0xc43dc0,2, 0xc43dd0,3, 0xc43de0,1, 0xc43e00,12, 0xc43e40,2, 0xc43e50,3, 0xc43e60,1, 0xc43e80,12, 0xc43ec0,2, 0xc43ed0,3, 0xc43ee0,1, 0xc43f00,9, 0xc43f80,3, 0xc43f90,5, 0xc43fa8,5, 0xc43fc0,5, 0xc43fd8,2, 0xc44000,1, 0xc44010,6, 0xc44030,78, 0xc44180,18, 0xc48004,6, 0xc49000,650, 0xc4a000,650, 0xc4b000,2, 0xc4b040,9, 0xc4b080,7, 0xc4c000,34, 0xc4c090,9, 0xc4c0b8,11, 0xc50000,11, 0xc50040,11, 0xc50080,11, 0xc500c0,11, 0xc50104,1, 0xc5011c,10, 0xc50148,2, 0xc50154,1, 0xc5015c,24, 0xc501c0,3, 0xc501d0,3, 0xc501e0,3, 0xc501f0,33, 0xc50280,3, 0xc50290,3, 0xc502a0,3, 0xc502b0,3, 0xc502c0,5, 0xc502d8,8, 0xc50400,145, 0xc50800,4, 0xc50880,25, 0xc50900,5, 0xc50920,1, 0xc51000,11, 0xc51040,11, 0xc51080,11, 0xc510c0,11, 0xc51100,11, 0xc51140,11, 0xc51180,11, 0xc511c0,11, 0xc51200,1, 0xc51208,19, 0xc51260,2, 0xc5126c,3, 0xc51280,5, 0xc51400,3, 0xc51410,30, 0xc514a4,1, 0xc514b4,23, 0xc51520,6, 0xc51540,3, 0xc51560,2, 0xc5156c,2, 0xc51580,2, 0xc515c0,3, 0xc515d0,3, 0xc515e0,1, 0xc51600,1, 0xc51800,1, 0xc51814,12, 0xc51848,5, 0xc51860,7, 0xc51880,5, 0xc51898,5, 0xc518b0,5, 0xc518c8,7, 0xc518e8,7, 0xc51908,5, 0xc51920,11, 0xc51950,55, 0xc51a40,2, 0xc51a4c,2, 0xc51a60,2, 0xc51a80,6, 0xc51ac0,3, 0xc51ad0,3, 0xc51ae0,1, 0xc51b00,1, 0xc52000,2, 0xc52010,47, 0xc520e0,6, 0xc52100,6, 0xc52120,2, 0xc5212c,3, 0xc52140,6, 0xc52200,5, 0xc52224,1, 0xc52234,3, 0xc52280,20, 0xc52404,1, 0xc524e4,71, 0xc52604,1, 0xc52670,38, 0xc52800,27, 0xc52880,4, 0xc528c0,25, 0xc52940,6, 0xc52960,4, 0xc52974,11, 0xc529a4,7, 0xc52a00,12, 0xc52a40,2, 0xc52a50,1, 0xc52a58,5, 0xc52a70,5, 0xc60000,19, 0xc60080,19, 0xc60100,19, 0xc60180,19, 0xc60200,12, 0xc60280,1, 0xc602a0,6, 0xc602c0,6, 0xc602e0,6, 0xc60300,6, 0xc60320,6, 0xc60340,6, 0xc60360,6, 0xc60380,9, 0xc603c0,13, 0xc60400,3, 0xc60410,159, 0xc60690,16, 0xc606e0,5, 0xc60700,5, 0xc60720,5, 0xc60740,5, 0xc60760,5, 0xc60780,5, 0xc607a0,5, 0xc607c0,5, 0xc607e0,6, 0xc60800,6, 0xc60820,6, 0xc60840,6, 0xc60860,6, 0xc60880,6, 0xc608a0,6, 0xc608c0,6, 0xc608e0,6, 0xc60900,6, 0xc60920,6, 0xc60940,6, 0xc60960,6, 0xc60980,6, 0xc609a0,6, 0xc609c0,6, 0xc60a00,22, 0xc60a80,1, 0xc60a88,3, 0xc60aa0,5, 0xc60ac0,1, 0xc60ad0,3, 0xc60ae0,1, 0xc60af0,3, 0xc60b00,1, 0xc60b10,3, 0xc60b20,1, 0xc60b30,3, 0xc60b40,1, 0xc60b48,3, 0xc60b58,3, 0xc60b68,3, 0xc60b78,3, 0xc60b88,3, 0xc60ba0,3, 0xc60bb0,1, 0xc60bc0,3, 0xc60bd0,1, 0xc60be0,3, 0xc60bf0,1, 0xc60c00,3, 0xc60c10,1, 0xc60c20,3, 0xc60c30,1, 0xc60c40,3, 0xc60c50,1, 0xc60c80,6, 0xc60ca0,6, 0xc60cc0,1, 0xc60d00,1, 0xc60d10,3, 0xc60d20,1, 0xc60d30,3, 0xc60d40,1, 0xc60d60,5, 0xc60d80,1, 0xc60d90,3, 0xc60da0,1, 0xc60dc0,5, 0xc60de0,1, 0xc60df0,3, 0xc60e00,1, 0xc60e10,3, 0xc60e20,5, 0xc60e40,2, 0xc60e50,3, 0xc60e60,5, 0xc60e80,2, 0xc60e90,3, 0xc60ea0,3, 0xc60eb0,3, 0xc60ec0,3, 0xc60ed0,3, 0xc60ee0,5, 0xc60f00,3, 0xc60f20,5, 0xc60f40,5, 0xc60f60,3, 0xc60f70,3, 0xc60f80,5, 0xc60fa0,3, 0xc60fb0,3, 0xc60fc0,3, 0xc60fd0,3, 0xc60fe0,3, 0xc60ff0,3, 0xc61000,6, 0xc61020,3, 0xc61040,3, 0xc61050,3, 0xc61060,1, 0xc61080,3, 0xc61090,3, 0xc610a0,1, 0xc610c0,3, 0xc610e0,5, 0xc61100,11, 0xc61130,3, 0xc61140,3, 0xc61150,3, 0xc61160,5, 0xc61180,5, 0xc611a0,3, 0xc611b0,3, 0xc611c0,3, 0xc611d0,3, 0xc611e0,2, 0xc611f0,3, 0xc61200,7, 0xc61220,3, 0xc61230,2, 0xc61240,3, 0xc61250,3, 0xc61260,2, 0xc61400,15, 0xc61440,4, 0xc61460,17, 0xc614c0,6, 0xc614e0,4, 0xc614f4,11, 0xc61524,54, 0xc61604,1, 0xc6160c,1, 0xc61614,1, 0xc6161c,15, 0xc61660,6, 0xc61680,4, 0xc616a0,5, 0xc616c0,4, 0xc616e0,5, 0xc61700,4, 0xc61720,5, 0xc61740,4, 0xc61760,5, 0xc61780,4, 0xc617c0,15, 0xc61800,4, 0xc61880,19, 0xc61900,1, 0xc61980,24, 0xc61a00,24, 0xc61a80,24, 0xc61b00,24, 0xc61b80,1, 0xc61b88,2, 0xc62000,451, 0xc62740,169, 0xc63000,260, 0xc63800,12, 0xc63a04,1, 0xc63a0c,8, 0xc63a44,1, 0xc63a50,7, 0xc63a84,1, 0xc63a94,27, 0xc63b04,3, 0xc63b14,3, 0xc63b24,3, 0xc63b34,21, 0xc63ba0,5, 0xc63bc0,1, 0xc63c04,1, 0xc63c14,3, 0xc63c24,3, 0xc63c34,3, 0xc63c44,1, 0xc63c60,8, 0xc63c84,1, 0xc63ca0,8, 0xc63cc4,1, 0xc63ce0,11, 0xc63e04,1, 0xc63e0c,2, 0xc63e18,1, 0xc63e20,3, 0xc63e30,3, 0xc63e40,1, 0xc63e48,3, 0xc63e58,3, 0xc63e70,4, 0xc64000,44, 0xc64100,19, 0xc64180,22, 0xc64200,27, 0xc64280,27, 0xc64300,11, 0xc64380,17, 0xc64400,27, 0xc64480,2, 0xc644a0,6, 0xc644c0,3, 0xc644d0,4, 0xc64500,35, 0xc64600,34, 0xc64700,26, 0xc64780,23, 0xc64800,15, 0xc64848,4, 0xc68000,20, 0xc68100,49, 0xc68200,20, 0xc68300,49, 0xc68400,20, 0xc68500,49, 0xc68600,20, 0xc68700,49, 0xc68800,8, 0xc69000,20, 0xc69100,49, 0xc69200,20, 0xc69300,49, 0xc69400,20, 0xc69500,49, 0xc69600,20, 0xc69700,49, 0xc69800,8, 0xc6a000,15, 0xc6a040,3, 0xc6a050,1, 0xc6a058,4, 0xc6a080,10, 0xc6a0b0,3, 0xc6a0c4,7, 0xc6a100,44, 0xc6a200,5, 0xc6a218,5, 0xc6a280,20, 0xc6a300,1, 0xc6a800,52, 0xc6a8e0,5, 0xc6a900,5, 0xc6aa00,52, 0xc6aae0,5, 0xc6ab00,5, 0xc6ac00,18, 0xc6ac50,10, 0xc6ad00,36, 0xc6ada0,5, 0xc6adc0,5, 0xc6b000,20, 0xc6b080,20, 0xc6b100,20, 0xc6b180,20, 0xc6b200,10, 0xc6b400,10, 0xc6b440,10, 0xc6b480,10, 0xc6b4c0,10, 0xc6b500,1, 0xc6b600,1, 0xc6b608,32, 0xc6b6a0,6, 0xc6b6c0,6, 0xc6b6e0,6, 0xc6b700,6, 0xc6b720,6, 0xc6b740,6, 0xc6b760,6, 0xc6b780,6, 0xc6b800,76, 0xc6ba00,76, 0xc6bc00,33, 0xc6c000,76, 0xc6c200,76, 0xc6c400,33, 0xc6c800,4, 0xc6ca00,72, 0xc6cc00,17, 0xc6cc48,4, 0xc6ce00,27, 0xc6ce80,4, 0xc6cec0,25, 0xc6cf40,6, 0xc6cf60,4, 0xc6cf74,11, 0xc6cfa4,16, 0xc6d000,12, 0xc6d040,2, 0xc6d050,1, 0xc6d058,5, 0xc6d070,3, 0xc80000,23, 0xc80080,23, 0xc80100,23, 0xc80180,23, 0xc80200,13, 0xc80404,1, 0xc8047c,33, 0xc80504,1, 0xc80514,3, 0xc80524,1, 0xc8052c,1, 0xc80600,96, 0xc80784,1, 0xc80790,4, 0xc81000,76, 0xc82000,582, 0xc83000,13, 0xc83400,27, 0xc83480,4, 0xc834c0,25, 0xc83540,6, 0xc83560,4, 0xc83574,3, 0xc83600,8, 0xc83624,59, 0xc83800,4, 0xc83880,36, 0xc83980,17, 0xc83a00,6, 0xc83a20,165, 0xc83d00,12, 0xc83d40,2, 0xc83d50,3, 0xc83d60,1, 0xc83d80,12, 0xc83dc0,2, 0xc83dd0,3, 0xc83de0,1, 0xc83e00,12, 0xc83e40,2, 0xc83e50,3, 0xc83e60,1, 0xc83e80,12, 0xc83ec0,2, 0xc83ed0,3, 0xc83ee0,1, 0xc83f00,9, 0xc83f80,3, 0xc83f90,5, 0xc83fa8,5, 0xc83fc0,5, 0xc83fd8,2, 0xc84000,1, 0xc84010,6, 0xc84030,78, 0xc84180,18, 0xc88004,6, 0xc89000,650, 0xc8a000,650, 0xc8b000,2, 0xc8b040,9, 0xc8b080,7, 0xc8c000,34, 0xc8c090,9, 0xc8c0b8,11, 0xc90000,11, 0xc90040,11, 0xc90080,11, 0xc900c0,11, 0xc90104,1, 0xc9011c,10, 0xc90148,2, 0xc90154,1, 0xc9015c,24, 0xc901c0,3, 0xc901d0,3, 0xc901e0,3, 0xc901f0,33, 0xc90280,3, 0xc90290,3, 0xc902a0,3, 0xc902b0,3, 0xc902c0,5, 0xc902d8,8, 0xc90400,145, 0xc90800,4, 0xc90880,25, 0xc90900,5, 0xc90920,1, 0xc91000,11, 0xc91040,11, 0xc91080,11, 0xc910c0,11, 0xc91100,11, 0xc91140,11, 0xc91180,11, 0xc911c0,11, 0xc91200,1, 0xc91208,19, 0xc91260,2, 0xc9126c,3, 0xc91280,5, 0xc91400,3, 0xc91410,30, 0xc914a4,1, 0xc914b4,23, 0xc91520,6, 0xc91540,3, 0xc91560,2, 0xc9156c,2, 0xc91580,2, 0xc915c0,3, 0xc915d0,3, 0xc915e0,1, 0xc91600,1, 0xc91800,1, 0xc91814,12, 0xc91848,5, 0xc91860,7, 0xc91880,5, 0xc91898,5, 0xc918b0,5, 0xc918c8,7, 0xc918e8,7, 0xc91908,5, 0xc91920,11, 0xc91950,55, 0xc91a40,2, 0xc91a4c,2, 0xc91a60,2, 0xc91a80,6, 0xc91ac0,3, 0xc91ad0,3, 0xc91ae0,1, 0xc91b00,1, 0xc92000,2, 0xc92010,47, 0xc920e0,6, 0xc92100,6, 0xc92120,2, 0xc9212c,3, 0xc92140,6, 0xc92200,5, 0xc92224,1, 0xc92234,3, 0xc92280,20, 0xc92404,1, 0xc924e4,71, 0xc92604,1, 0xc92670,38, 0xc92800,27, 0xc92880,4, 0xc928c0,25, 0xc92940,6, 0xc92960,4, 0xc92974,11, 0xc929a4,7, 0xc92a00,12, 0xc92a40,2, 0xc92a50,1, 0xc92a58,5, 0xc92a70,5, 0xca0000,19, 0xca0080,19, 0xca0100,19, 0xca0180,19, 0xca0200,12, 0xca0280,1, 0xca02a0,6, 0xca02c0,6, 0xca02e0,6, 0xca0300,6, 0xca0320,6, 0xca0340,6, 0xca0360,6, 0xca0380,9, 0xca03c0,13, 0xca0400,3, 0xca0410,159, 0xca0690,16, 0xca06e0,5, 0xca0700,5, 0xca0720,5, 0xca0740,5, 0xca0760,5, 0xca0780,5, 0xca07a0,5, 0xca07c0,5, 0xca07e0,6, 0xca0800,6, 0xca0820,6, 0xca0840,6, 0xca0860,6, 0xca0880,6, 0xca08a0,6, 0xca08c0,6, 0xca08e0,6, 0xca0900,6, 0xca0920,6, 0xca0940,6, 0xca0960,6, 0xca0980,6, 0xca09a0,6, 0xca09c0,6, 0xca0a00,22, 0xca0a80,1, 0xca0a88,3, 0xca0aa0,5, 0xca0ac0,1, 0xca0ad0,3, 0xca0ae0,1, 0xca0af0,3, 0xca0b00,1, 0xca0b10,3, 0xca0b20,1, 0xca0b30,3, 0xca0b40,1, 0xca0b48,3, 0xca0b58,3, 0xca0b68,3, 0xca0b78,3, 0xca0b88,3, 0xca0ba0,3, 0xca0bb0,1, 0xca0bc0,3, 0xca0bd0,1, 0xca0be0,3, 0xca0bf0,1, 0xca0c00,3, 0xca0c10,1, 0xca0c20,3, 0xca0c30,1, 0xca0c40,3, 0xca0c50,1, 0xca0c80,6, 0xca0ca0,6, 0xca0cc0,1, 0xca0d00,1, 0xca0d10,3, 0xca0d20,1, 0xca0d30,3, 0xca0d40,1, 0xca0d60,5, 0xca0d80,1, 0xca0d90,3, 0xca0da0,1, 0xca0dc0,5, 0xca0de0,1, 0xca0df0,3, 0xca0e00,1, 0xca0e10,3, 0xca0e20,5, 0xca0e40,2, 0xca0e50,3, 0xca0e60,5, 0xca0e80,2, 0xca0e90,3, 0xca0ea0,3, 0xca0eb0,3, 0xca0ec0,3, 0xca0ed0,3, 0xca0ee0,5, 0xca0f00,3, 0xca0f20,5, 0xca0f40,5, 0xca0f60,3, 0xca0f70,3, 0xca0f80,5, 0xca0fa0,3, 0xca0fb0,3, 0xca0fc0,3, 0xca0fd0,3, 0xca0fe0,3, 0xca0ff0,3, 0xca1000,6, 0xca1020,3, 0xca1040,3, 0xca1050,3, 0xca1060,1, 0xca1080,3, 0xca1090,3, 0xca10a0,1, 0xca10c0,3, 0xca10e0,5, 0xca1100,11, 0xca1130,3, 0xca1140,3, 0xca1150,3, 0xca1160,5, 0xca1180,5, 0xca11a0,3, 0xca11b0,3, 0xca11c0,3, 0xca11d0,3, 0xca11e0,2, 0xca11f0,3, 0xca1200,7, 0xca1220,3, 0xca1230,2, 0xca1240,3, 0xca1250,3, 0xca1260,2, 0xca1400,15, 0xca1440,4, 0xca1460,17, 0xca14c0,6, 0xca14e0,4, 0xca14f4,11, 0xca1524,54, 0xca1604,1, 0xca160c,1, 0xca1614,1, 0xca161c,15, 0xca1660,6, 0xca1680,4, 0xca16a0,5, 0xca16c0,4, 0xca16e0,5, 0xca1700,4, 0xca1720,5, 0xca1740,4, 0xca1760,5, 0xca1780,4, 0xca17c0,15, 0xca1800,4, 0xca1880,19, 0xca1900,1, 0xca1980,24, 0xca1a00,24, 0xca1a80,24, 0xca1b00,24, 0xca1b80,1, 0xca1b88,2, 0xca2000,451, 0xca2740,169, 0xca3000,260, 0xca3800,12, 0xca3a04,1, 0xca3a0c,8, 0xca3a44,1, 0xca3a50,7, 0xca3a84,1, 0xca3a94,27, 0xca3b04,3, 0xca3b14,3, 0xca3b24,3, 0xca3b34,21, 0xca3ba0,5, 0xca3bc0,1, 0xca3c04,1, 0xca3c14,3, 0xca3c24,3, 0xca3c34,3, 0xca3c44,1, 0xca3c60,8, 0xca3c84,1, 0xca3ca0,8, 0xca3cc4,1, 0xca3ce0,11, 0xca3e04,1, 0xca3e0c,2, 0xca3e18,1, 0xca3e20,3, 0xca3e30,3, 0xca3e40,1, 0xca3e48,3, 0xca3e58,3, 0xca3e70,4, 0xca4000,44, 0xca4100,19, 0xca4180,22, 0xca4200,27, 0xca4280,27, 0xca4300,11, 0xca4380,17, 0xca4400,27, 0xca4480,2, 0xca44a0,6, 0xca44c0,3, 0xca44d0,4, 0xca4500,35, 0xca4600,34, 0xca4700,26, 0xca4780,23, 0xca4800,15, 0xca4848,4, 0xca8000,20, 0xca8100,49, 0xca8200,20, 0xca8300,49, 0xca8400,20, 0xca8500,49, 0xca8600,20, 0xca8700,49, 0xca8800,8, 0xca9000,20, 0xca9100,49, 0xca9200,20, 0xca9300,49, 0xca9400,20, 0xca9500,49, 0xca9600,20, 0xca9700,49, 0xca9800,8, 0xcaa000,15, 0xcaa040,3, 0xcaa050,1, 0xcaa058,4, 0xcaa080,10, 0xcaa0b0,3, 0xcaa0c4,7, 0xcaa100,44, 0xcaa200,5, 0xcaa218,5, 0xcaa280,20, 0xcaa300,1, 0xcaa800,52, 0xcaa8e0,5, 0xcaa900,5, 0xcaaa00,52, 0xcaaae0,5, 0xcaab00,5, 0xcaac00,18, 0xcaac50,10, 0xcaad00,36, 0xcaada0,5, 0xcaadc0,5, 0xcab000,20, 0xcab080,20, 0xcab100,20, 0xcab180,20, 0xcab200,10, 0xcab400,10, 0xcab440,10, 0xcab480,10, 0xcab4c0,10, 0xcab500,1, 0xcab600,1, 0xcab608,32, 0xcab6a0,6, 0xcab6c0,6, 0xcab6e0,6, 0xcab700,6, 0xcab720,6, 0xcab740,6, 0xcab760,6, 0xcab780,6, 0xcab800,76, 0xcaba00,76, 0xcabc00,33, 0xcac000,76, 0xcac200,76, 0xcac400,33, 0xcac800,4, 0xcaca00,72, 0xcacc00,17, 0xcacc48,4, 0xcace00,27, 0xcace80,4, 0xcacec0,25, 0xcacf40,6, 0xcacf60,4, 0xcacf74,11, 0xcacfa4,16, 0xcad000,12, 0xcad040,2, 0xcad050,1, 0xcad058,5, 0xcad070,3, 0xcc0000,23, 0xcc0080,23, 0xcc0100,23, 0xcc0180,23, 0xcc0200,13, 0xcc0404,1, 0xcc047c,33, 0xcc0504,1, 0xcc0514,3, 0xcc0524,1, 0xcc052c,1, 0xcc0600,96, 0xcc0784,1, 0xcc0790,4, 0xcc1000,76, 0xcc2000,582, 0xcc3000,13, 0xcc3400,27, 0xcc3480,4, 0xcc34c0,25, 0xcc3540,6, 0xcc3560,4, 0xcc3574,3, 0xcc3600,8, 0xcc3624,59, 0xcc3800,4, 0xcc3880,36, 0xcc3980,17, 0xcc3a00,6, 0xcc3a20,165, 0xcc3d00,12, 0xcc3d40,2, 0xcc3d50,3, 0xcc3d60,1, 0xcc3d80,12, 0xcc3dc0,2, 0xcc3dd0,3, 0xcc3de0,1, 0xcc3e00,12, 0xcc3e40,2, 0xcc3e50,3, 0xcc3e60,1, 0xcc3e80,12, 0xcc3ec0,2, 0xcc3ed0,3, 0xcc3ee0,1, 0xcc3f00,9, 0xcc3f80,3, 0xcc3f90,5, 0xcc3fa8,5, 0xcc3fc0,5, 0xcc3fd8,2, 0xcc4000,1, 0xcc4010,6, 0xcc4030,78, 0xcc4180,18, 0xcc8004,6, 0xcc9000,650, 0xcca000,650, 0xccb000,2, 0xccb040,9, 0xccb080,7, 0xccc000,34, 0xccc090,9, 0xccc0b8,11, 0xcd0000,11, 0xcd0040,11, 0xcd0080,11, 0xcd00c0,11, 0xcd0104,1, 0xcd011c,10, 0xcd0148,2, 0xcd0154,1, 0xcd015c,24, 0xcd01c0,3, 0xcd01d0,3, 0xcd01e0,3, 0xcd01f0,33, 0xcd0280,3, 0xcd0290,3, 0xcd02a0,3, 0xcd02b0,3, 0xcd02c0,5, 0xcd02d8,8, 0xcd0400,145, 0xcd0800,4, 0xcd0880,25, 0xcd0900,5, 0xcd0920,1, 0xcd1000,11, 0xcd1040,11, 0xcd1080,11, 0xcd10c0,11, 0xcd1100,11, 0xcd1140,11, 0xcd1180,11, 0xcd11c0,11, 0xcd1200,1, 0xcd1208,19, 0xcd1260,2, 0xcd126c,3, 0xcd1280,5, 0xcd1400,3, 0xcd1410,30, 0xcd14a4,1, 0xcd14b4,23, 0xcd1520,6, 0xcd1540,3, 0xcd1560,2, 0xcd156c,2, 0xcd1580,2, 0xcd15c0,3, 0xcd15d0,3, 0xcd15e0,1, 0xcd1600,1, 0xcd1800,1, 0xcd1814,12, 0xcd1848,5, 0xcd1860,7, 0xcd1880,5, 0xcd1898,5, 0xcd18b0,5, 0xcd18c8,7, 0xcd18e8,7, 0xcd1908,5, 0xcd1920,11, 0xcd1950,55, 0xcd1a40,2, 0xcd1a4c,2, 0xcd1a60,2, 0xcd1a80,6, 0xcd1ac0,3, 0xcd1ad0,3, 0xcd1ae0,1, 0xcd1b00,1, 0xcd2000,2, 0xcd2010,47, 0xcd20e0,6, 0xcd2100,6, 0xcd2120,2, 0xcd212c,3, 0xcd2140,6, 0xcd2200,5, 0xcd2224,1, 0xcd2234,3, 0xcd2280,20, 0xcd2404,1, 0xcd24e4,71, 0xcd2604,1, 0xcd2670,38, 0xcd2800,27, 0xcd2880,4, 0xcd28c0,25, 0xcd2940,6, 0xcd2960,4, 0xcd2974,11, 0xcd29a4,7, 0xcd2a00,12, 0xcd2a40,2, 0xcd2a50,1, 0xcd2a58,5, 0xcd2a70,5, 0xce0000,19, 0xce0080,19, 0xce0100,19, 0xce0180,19, 0xce0200,12, 0xce0280,1, 0xce02a0,6, 0xce02c0,6, 0xce02e0,6, 0xce0300,6, 0xce0320,6, 0xce0340,6, 0xce0360,6, 0xce0380,9, 0xce03c0,13, 0xce0400,3, 0xce0410,159, 0xce0690,16, 0xce06e0,5, 0xce0700,5, 0xce0720,5, 0xce0740,5, 0xce0760,5, 0xce0780,5, 0xce07a0,5, 0xce07c0,5, 0xce07e0,6, 0xce0800,6, 0xce0820,6, 0xce0840,6, 0xce0860,6, 0xce0880,6, 0xce08a0,6, 0xce08c0,6, 0xce08e0,6, 0xce0900,6, 0xce0920,6, 0xce0940,6, 0xce0960,6, 0xce0980,6, 0xce09a0,6, 0xce09c0,6, 0xce0a00,22, 0xce0a80,1, 0xce0a88,3, 0xce0aa0,5, 0xce0ac0,1, 0xce0ad0,3, 0xce0ae0,1, 0xce0af0,3, 0xce0b00,1, 0xce0b10,3, 0xce0b20,1, 0xce0b30,3, 0xce0b40,1, 0xce0b48,3, 0xce0b58,3, 0xce0b68,3, 0xce0b78,3, 0xce0b88,3, 0xce0ba0,3, 0xce0bb0,1, 0xce0bc0,3, 0xce0bd0,1, 0xce0be0,3, 0xce0bf0,1, 0xce0c00,3, 0xce0c10,1, 0xce0c20,3, 0xce0c30,1, 0xce0c40,3, 0xce0c50,1, 0xce0c80,6, 0xce0ca0,6, 0xce0cc0,1, 0xce0d00,1, 0xce0d10,3, 0xce0d20,1, 0xce0d30,3, 0xce0d40,1, 0xce0d60,5, 0xce0d80,1, 0xce0d90,3, 0xce0da0,1, 0xce0dc0,5, 0xce0de0,1, 0xce0df0,3, 0xce0e00,1, 0xce0e10,3, 0xce0e20,5, 0xce0e40,2, 0xce0e50,3, 0xce0e60,5, 0xce0e80,2, 0xce0e90,3, 0xce0ea0,3, 0xce0eb0,3, 0xce0ec0,3, 0xce0ed0,3, 0xce0ee0,5, 0xce0f00,3, 0xce0f20,5, 0xce0f40,5, 0xce0f60,3, 0xce0f70,3, 0xce0f80,5, 0xce0fa0,3, 0xce0fb0,3, 0xce0fc0,3, 0xce0fd0,3, 0xce0fe0,3, 0xce0ff0,3, 0xce1000,6, 0xce1020,3, 0xce1040,3, 0xce1050,3, 0xce1060,1, 0xce1080,3, 0xce1090,3, 0xce10a0,1, 0xce10c0,3, 0xce10e0,5, 0xce1100,11, 0xce1130,3, 0xce1140,3, 0xce1150,3, 0xce1160,5, 0xce1180,5, 0xce11a0,3, 0xce11b0,3, 0xce11c0,3, 0xce11d0,3, 0xce11e0,2, 0xce11f0,3, 0xce1200,7, 0xce1220,3, 0xce1230,2, 0xce1240,3, 0xce1250,3, 0xce1260,2, 0xce1400,15, 0xce1440,4, 0xce1460,17, 0xce14c0,6, 0xce14e0,4, 0xce14f4,11, 0xce1524,54, 0xce1604,1, 0xce160c,1, 0xce1614,1, 0xce161c,15, 0xce1660,6, 0xce1680,4, 0xce16a0,5, 0xce16c0,4, 0xce16e0,5, 0xce1700,4, 0xce1720,5, 0xce1740,4, 0xce1760,5, 0xce1780,4, 0xce17c0,15, 0xce1800,4, 0xce1880,19, 0xce1900,1, 0xce1980,24, 0xce1a00,24, 0xce1a80,24, 0xce1b00,24, 0xce1b80,1, 0xce1b88,2, 0xce2000,451, 0xce2740,169, 0xce3000,260, 0xce3800,12, 0xce3a04,1, 0xce3a0c,8, 0xce3a44,1, 0xce3a50,7, 0xce3a84,1, 0xce3a94,27, 0xce3b04,3, 0xce3b14,3, 0xce3b24,3, 0xce3b34,21, 0xce3ba0,5, 0xce3bc0,1, 0xce3c04,1, 0xce3c14,3, 0xce3c24,3, 0xce3c34,3, 0xce3c44,1, 0xce3c60,8, 0xce3c84,1, 0xce3ca0,8, 0xce3cc4,1, 0xce3ce0,11, 0xce3e04,1, 0xce3e0c,2, 0xce3e18,1, 0xce3e20,3, 0xce3e30,3, 0xce3e40,1, 0xce3e48,3, 0xce3e58,3, 0xce3e70,4, 0xce4000,44, 0xce4100,19, 0xce4180,22, 0xce4200,27, 0xce4280,27, 0xce4300,11, 0xce4380,17, 0xce4400,27, 0xce4480,2, 0xce44a0,6, 0xce44c0,3, 0xce44d0,4, 0xce4500,35, 0xce4600,34, 0xce4700,26, 0xce4780,23, 0xce4800,15, 0xce4848,4, 0xce8000,20, 0xce8100,49, 0xce8200,20, 0xce8300,49, 0xce8400,20, 0xce8500,49, 0xce8600,20, 0xce8700,49, 0xce8800,8, 0xce9000,20, 0xce9100,49, 0xce9200,20, 0xce9300,49, 0xce9400,20, 0xce9500,49, 0xce9600,20, 0xce9700,49, 0xce9800,8, 0xcea000,15, 0xcea040,3, 0xcea050,1, 0xcea058,4, 0xcea080,10, 0xcea0b0,3, 0xcea0c4,7, 0xcea100,44, 0xcea200,5, 0xcea218,5, 0xcea280,20, 0xcea300,1, 0xcea800,52, 0xcea8e0,5, 0xcea900,5, 0xceaa00,52, 0xceaae0,5, 0xceab00,5, 0xceac00,18, 0xceac50,10, 0xcead00,36, 0xceada0,5, 0xceadc0,5, 0xceb000,20, 0xceb080,20, 0xceb100,20, 0xceb180,20, 0xceb200,10, 0xceb400,10, 0xceb440,10, 0xceb480,10, 0xceb4c0,10, 0xceb500,1, 0xceb600,1, 0xceb608,32, 0xceb6a0,6, 0xceb6c0,6, 0xceb6e0,6, 0xceb700,6, 0xceb720,6, 0xceb740,6, 0xceb760,6, 0xceb780,6, 0xceb800,76, 0xceba00,76, 0xcebc00,33, 0xcec000,76, 0xcec200,76, 0xcec400,33, 0xcec800,4, 0xceca00,72, 0xcecc00,17, 0xcecc48,4, 0xcece00,27, 0xcece80,4, 0xcecec0,25, 0xcecf40,6, 0xcecf60,4, 0xcecf74,11, 0xcecfa4,16, 0xced000,12, 0xced040,2, 0xced050,1, 0xced058,5, 0xced070,3, 0xd00000,23, 0xd00080,23, 0xd00100,23, 0xd00180,23, 0xd00200,13, 0xd00404,1, 0xd0047c,33, 0xd00504,1, 0xd00514,3, 0xd00524,1, 0xd0052c,1, 0xd00600,96, 0xd00784,1, 0xd00790,4, 0xd01000,76, 0xd02000,582, 0xd03000,13, 0xd03400,27, 0xd03480,4, 0xd034c0,25, 0xd03540,6, 0xd03560,4, 0xd03574,3, 0xd03600,8, 0xd03624,59, 0xd03800,4, 0xd03880,36, 0xd03980,17, 0xd03a00,6, 0xd03a20,165, 0xd03d00,12, 0xd03d40,2, 0xd03d50,3, 0xd03d60,1, 0xd03d80,12, 0xd03dc0,2, 0xd03dd0,3, 0xd03de0,1, 0xd03e00,12, 0xd03e40,2, 0xd03e50,3, 0xd03e60,1, 0xd03e80,12, 0xd03ec0,2, 0xd03ed0,3, 0xd03ee0,1, 0xd03f00,9, 0xd03f80,3, 0xd03f90,5, 0xd03fa8,5, 0xd03fc0,5, 0xd03fd8,2, 0xd04000,1, 0xd04010,6, 0xd04030,78, 0xd04180,18, 0xd08004,6, 0xd09000,650, 0xd0a000,650, 0xd0b000,2, 0xd0b040,9, 0xd0b080,7, 0xd0c000,34, 0xd0c090,9, 0xd0c0b8,11, 0xd10000,11, 0xd10040,11, 0xd10080,11, 0xd100c0,11, 0xd10104,1, 0xd1011c,10, 0xd10148,2, 0xd10154,1, 0xd1015c,24, 0xd101c0,3, 0xd101d0,3, 0xd101e0,3, 0xd101f0,33, 0xd10280,3, 0xd10290,3, 0xd102a0,3, 0xd102b0,3, 0xd102c0,5, 0xd102d8,8, 0xd10400,145, 0xd10800,4, 0xd10880,25, 0xd10900,5, 0xd10920,1, 0xd11000,11, 0xd11040,11, 0xd11080,11, 0xd110c0,11, 0xd11100,11, 0xd11140,11, 0xd11180,11, 0xd111c0,11, 0xd11200,1, 0xd11208,19, 0xd11260,2, 0xd1126c,3, 0xd11280,5, 0xd11400,3, 0xd11410,30, 0xd114a4,1, 0xd114b4,23, 0xd11520,6, 0xd11540,3, 0xd11560,2, 0xd1156c,2, 0xd11580,2, 0xd115c0,3, 0xd115d0,3, 0xd115e0,1, 0xd11600,1, 0xd11800,1, 0xd11814,12, 0xd11848,5, 0xd11860,7, 0xd11880,5, 0xd11898,5, 0xd118b0,5, 0xd118c8,7, 0xd118e8,7, 0xd11908,5, 0xd11920,11, 0xd11950,55, 0xd11a40,2, 0xd11a4c,2, 0xd11a60,2, 0xd11a80,6, 0xd11ac0,3, 0xd11ad0,3, 0xd11ae0,1, 0xd11b00,1, 0xd12000,2, 0xd12010,47, 0xd120e0,6, 0xd12100,6, 0xd12120,2, 0xd1212c,3, 0xd12140,6, 0xd12200,5, 0xd12224,1, 0xd12234,3, 0xd12280,20, 0xd12404,1, 0xd124e4,71, 0xd12604,1, 0xd12670,38, 0xd12800,27, 0xd12880,4, 0xd128c0,25, 0xd12940,6, 0xd12960,4, 0xd12974,11, 0xd129a4,7, 0xd12a00,12, 0xd12a40,2, 0xd12a50,1, 0xd12a58,5, 0xd12a70,5, 0xd20000,19, 0xd20080,19, 0xd20100,19, 0xd20180,19, 0xd20200,12, 0xd20280,1, 0xd202a0,6, 0xd202c0,6, 0xd202e0,6, 0xd20300,6, 0xd20320,6, 0xd20340,6, 0xd20360,6, 0xd20380,9, 0xd203c0,13, 0xd20400,3, 0xd20410,159, 0xd20690,16, 0xd206e0,5, 0xd20700,5, 0xd20720,5, 0xd20740,5, 0xd20760,5, 0xd20780,5, 0xd207a0,5, 0xd207c0,5, 0xd207e0,6, 0xd20800,6, 0xd20820,6, 0xd20840,6, 0xd20860,6, 0xd20880,6, 0xd208a0,6, 0xd208c0,6, 0xd208e0,6, 0xd20900,6, 0xd20920,6, 0xd20940,6, 0xd20960,6, 0xd20980,6, 0xd209a0,6, 0xd209c0,6, 0xd20a00,22, 0xd20a80,1, 0xd20a88,3, 0xd20aa0,5, 0xd20ac0,1, 0xd20ad0,3, 0xd20ae0,1, 0xd20af0,3, 0xd20b00,1, 0xd20b10,3, 0xd20b20,1, 0xd20b30,3, 0xd20b40,1, 0xd20b48,3, 0xd20b58,3, 0xd20b68,3, 0xd20b78,3, 0xd20b88,3, 0xd20ba0,3, 0xd20bb0,1, 0xd20bc0,3, 0xd20bd0,1, 0xd20be0,3, 0xd20bf0,1, 0xd20c00,3, 0xd20c10,1, 0xd20c20,3, 0xd20c30,1, 0xd20c40,3, 0xd20c50,1, 0xd20c80,6, 0xd20ca0,6, 0xd20cc0,1, 0xd20d00,1, 0xd20d10,3, 0xd20d20,1, 0xd20d30,3, 0xd20d40,1, 0xd20d60,5, 0xd20d80,1, 0xd20d90,3, 0xd20da0,1, 0xd20dc0,5, 0xd20de0,1, 0xd20df0,3, 0xd20e00,1, 0xd20e10,3, 0xd20e20,5, 0xd20e40,2, 0xd20e50,3, 0xd20e60,5, 0xd20e80,2, 0xd20e90,3, 0xd20ea0,3, 0xd20eb0,3, 0xd20ec0,3, 0xd20ed0,3, 0xd20ee0,5, 0xd20f00,3, 0xd20f20,5, 0xd20f40,5, 0xd20f60,3, 0xd20f70,3, 0xd20f80,5, 0xd20fa0,3, 0xd20fb0,3, 0xd20fc0,3, 0xd20fd0,3, 0xd20fe0,3, 0xd20ff0,3, 0xd21000,6, 0xd21020,3, 0xd21040,3, 0xd21050,3, 0xd21060,1, 0xd21080,3, 0xd21090,3, 0xd210a0,1, 0xd210c0,3, 0xd210e0,5, 0xd21100,11, 0xd21130,3, 0xd21140,3, 0xd21150,3, 0xd21160,5, 0xd21180,5, 0xd211a0,3, 0xd211b0,3, 0xd211c0,3, 0xd211d0,3, 0xd211e0,2, 0xd211f0,3, 0xd21200,7, 0xd21220,3, 0xd21230,2, 0xd21240,3, 0xd21250,3, 0xd21260,2, 0xd21400,15, 0xd21440,4, 0xd21460,17, 0xd214c0,6, 0xd214e0,4, 0xd214f4,11, 0xd21524,54, 0xd21604,1, 0xd2160c,1, 0xd21614,1, 0xd2161c,15, 0xd21660,6, 0xd21680,4, 0xd216a0,5, 0xd216c0,4, 0xd216e0,5, 0xd21700,4, 0xd21720,5, 0xd21740,4, 0xd21760,5, 0xd21780,4, 0xd217c0,15, 0xd21800,4, 0xd21880,19, 0xd21900,1, 0xd21980,24, 0xd21a00,24, 0xd21a80,24, 0xd21b00,24, 0xd21b80,1, 0xd21b88,2, 0xd22000,451, 0xd22740,169, 0xd23000,260, 0xd23800,12, 0xd23a04,1, 0xd23a0c,8, 0xd23a44,1, 0xd23a50,7, 0xd23a84,1, 0xd23a94,27, 0xd23b04,3, 0xd23b14,3, 0xd23b24,3, 0xd23b34,21, 0xd23ba0,5, 0xd23bc0,1, 0xd23c04,1, 0xd23c14,3, 0xd23c24,3, 0xd23c34,3, 0xd23c44,1, 0xd23c60,8, 0xd23c84,1, 0xd23ca0,8, 0xd23cc4,1, 0xd23ce0,11, 0xd23e04,1, 0xd23e0c,2, 0xd23e18,1, 0xd23e20,3, 0xd23e30,3, 0xd23e40,1, 0xd23e48,3, 0xd23e58,3, 0xd23e70,4, 0xd24000,44, 0xd24100,19, 0xd24180,22, 0xd24200,27, 0xd24280,27, 0xd24300,11, 0xd24380,17, 0xd24400,27, 0xd24480,2, 0xd244a0,6, 0xd244c0,3, 0xd244d0,4, 0xd24500,35, 0xd24600,34, 0xd24700,26, 0xd24780,23, 0xd24800,15, 0xd24848,4, 0xd28000,20, 0xd28100,49, 0xd28200,20, 0xd28300,49, 0xd28400,20, 0xd28500,49, 0xd28600,20, 0xd28700,49, 0xd28800,8, 0xd29000,20, 0xd29100,49, 0xd29200,20, 0xd29300,49, 0xd29400,20, 0xd29500,49, 0xd29600,20, 0xd29700,49, 0xd29800,8, 0xd2a000,15, 0xd2a040,3, 0xd2a050,1, 0xd2a058,4, 0xd2a080,10, 0xd2a0b0,3, 0xd2a0c4,7, 0xd2a100,44, 0xd2a200,5, 0xd2a218,5, 0xd2a280,20, 0xd2a300,1, 0xd2a800,52, 0xd2a8e0,5, 0xd2a900,5, 0xd2aa00,52, 0xd2aae0,5, 0xd2ab00,5, 0xd2ac00,18, 0xd2ac50,10, 0xd2ad00,36, 0xd2ada0,5, 0xd2adc0,5, 0xd2b000,20, 0xd2b080,20, 0xd2b100,20, 0xd2b180,20, 0xd2b200,10, 0xd2b400,10, 0xd2b440,10, 0xd2b480,10, 0xd2b4c0,10, 0xd2b500,1, 0xd2b600,1, 0xd2b608,32, 0xd2b6a0,6, 0xd2b6c0,6, 0xd2b6e0,6, 0xd2b700,6, 0xd2b720,6, 0xd2b740,6, 0xd2b760,6, 0xd2b780,6, 0xd2b800,76, 0xd2ba00,76, 0xd2bc00,33, 0xd2c000,76, 0xd2c200,76, 0xd2c400,33, 0xd2c800,4, 0xd2ca00,72, 0xd2cc00,17, 0xd2cc48,4, 0xd2ce00,27, 0xd2ce80,4, 0xd2cec0,25, 0xd2cf40,6, 0xd2cf60,4, 0xd2cf74,11, 0xd2cfa4,16, 0xd2d000,12, 0xd2d040,2, 0xd2d050,1, 0xd2d058,5, 0xd2d070,3, 0xd40000,23, 0xd40080,23, 0xd40100,23, 0xd40180,23, 0xd40200,13, 0xd40404,1, 0xd4047c,33, 0xd40504,1, 0xd40514,3, 0xd40524,1, 0xd4052c,1, 0xd40600,96, 0xd40784,1, 0xd40790,4, 0xd41000,76, 0xd42000,582, 0xd43000,13, 0xd43400,27, 0xd43480,4, 0xd434c0,25, 0xd43540,6, 0xd43560,4, 0xd43574,3, 0xd43600,8, 0xd43624,59, 0xd43800,4, 0xd43880,36, 0xd43980,17, 0xd43a00,6, 0xd43a20,165, 0xd43d00,12, 0xd43d40,2, 0xd43d50,3, 0xd43d60,1, 0xd43d80,12, 0xd43dc0,2, 0xd43dd0,3, 0xd43de0,1, 0xd43e00,12, 0xd43e40,2, 0xd43e50,3, 0xd43e60,1, 0xd43e80,12, 0xd43ec0,2, 0xd43ed0,3, 0xd43ee0,1, 0xd43f00,9, 0xd43f80,3, 0xd43f90,5, 0xd43fa8,5, 0xd43fc0,5, 0xd43fd8,2, 0xd44000,1, 0xd44010,6, 0xd44030,78, 0xd44180,18, 0xd48004,6, 0xd49000,650, 0xd4a000,650, 0xd4b000,2, 0xd4b040,9, 0xd4b080,7, 0xd4c000,34, 0xd4c090,9, 0xd4c0b8,11, 0xd50000,11, 0xd50040,11, 0xd50080,11, 0xd500c0,11, 0xd50104,1, 0xd5011c,10, 0xd50148,2, 0xd50154,1, 0xd5015c,24, 0xd501c0,3, 0xd501d0,3, 0xd501e0,3, 0xd501f0,33, 0xd50280,3, 0xd50290,3, 0xd502a0,3, 0xd502b0,3, 0xd502c0,5, 0xd502d8,8, 0xd50400,145, 0xd50800,4, 0xd50880,25, 0xd50900,5, 0xd50920,1, 0xd51000,11, 0xd51040,11, 0xd51080,11, 0xd510c0,11, 0xd51100,11, 0xd51140,11, 0xd51180,11, 0xd511c0,11, 0xd51200,1, 0xd51208,19, 0xd51260,2, 0xd5126c,3, 0xd51280,5, 0xd51400,3, 0xd51410,30, 0xd514a4,1, 0xd514b4,23, 0xd51520,6, 0xd51540,3, 0xd51560,2, 0xd5156c,2, 0xd51580,2, 0xd515c0,3, 0xd515d0,3, 0xd515e0,1, 0xd51600,1, 0xd51800,1, 0xd51814,12, 0xd51848,5, 0xd51860,7, 0xd51880,5, 0xd51898,5, 0xd518b0,5, 0xd518c8,7, 0xd518e8,7, 0xd51908,5, 0xd51920,11, 0xd51950,55, 0xd51a40,2, 0xd51a4c,2, 0xd51a60,2, 0xd51a80,6, 0xd51ac0,3, 0xd51ad0,3, 0xd51ae0,1, 0xd51b00,1, 0xd52000,2, 0xd52010,47, 0xd520e0,6, 0xd52100,6, 0xd52120,2, 0xd5212c,3, 0xd52140,6, 0xd52200,5, 0xd52224,1, 0xd52234,3, 0xd52280,20, 0xd52404,1, 0xd524e4,71, 0xd52604,1, 0xd52670,38, 0xd52800,27, 0xd52880,4, 0xd528c0,25, 0xd52940,6, 0xd52960,4, 0xd52974,11, 0xd529a4,7, 0xd52a00,12, 0xd52a40,2, 0xd52a50,1, 0xd52a58,5, 0xd52a70,5, 0xd60000,19, 0xd60080,19, 0xd60100,19, 0xd60180,19, 0xd60200,12, 0xd60280,1, 0xd602a0,6, 0xd602c0,6, 0xd602e0,6, 0xd60300,6, 0xd60320,6, 0xd60340,6, 0xd60360,6, 0xd60380,9, 0xd603c0,13, 0xd60400,3, 0xd60410,159, 0xd60690,16, 0xd606e0,5, 0xd60700,5, 0xd60720,5, 0xd60740,5, 0xd60760,5, 0xd60780,5, 0xd607a0,5, 0xd607c0,5, 0xd607e0,6, 0xd60800,6, 0xd60820,6, 0xd60840,6, 0xd60860,6, 0xd60880,6, 0xd608a0,6, 0xd608c0,6, 0xd608e0,6, 0xd60900,6, 0xd60920,6, 0xd60940,6, 0xd60960,6, 0xd60980,6, 0xd609a0,6, 0xd609c0,6, 0xd60a00,22, 0xd60a80,1, 0xd60a88,3, 0xd60aa0,5, 0xd60ac0,1, 0xd60ad0,3, 0xd60ae0,1, 0xd60af0,3, 0xd60b00,1, 0xd60b10,3, 0xd60b20,1, 0xd60b30,3, 0xd60b40,1, 0xd60b48,3, 0xd60b58,3, 0xd60b68,3, 0xd60b78,3, 0xd60b88,3, 0xd60ba0,3, 0xd60bb0,1, 0xd60bc0,3, 0xd60bd0,1, 0xd60be0,3, 0xd60bf0,1, 0xd60c00,3, 0xd60c10,1, 0xd60c20,3, 0xd60c30,1, 0xd60c40,3, 0xd60c50,1, 0xd60c80,6, 0xd60ca0,6, 0xd60cc0,1, 0xd60d00,1, 0xd60d10,3, 0xd60d20,1, 0xd60d30,3, 0xd60d40,1, 0xd60d60,5, 0xd60d80,1, 0xd60d90,3, 0xd60da0,1, 0xd60dc0,5, 0xd60de0,1, 0xd60df0,3, 0xd60e00,1, 0xd60e10,3, 0xd60e20,5, 0xd60e40,2, 0xd60e50,3, 0xd60e60,5, 0xd60e80,2, 0xd60e90,3, 0xd60ea0,3, 0xd60eb0,3, 0xd60ec0,3, 0xd60ed0,3, 0xd60ee0,5, 0xd60f00,3, 0xd60f20,5, 0xd60f40,5, 0xd60f60,3, 0xd60f70,3, 0xd60f80,5, 0xd60fa0,3, 0xd60fb0,3, 0xd60fc0,3, 0xd60fd0,3, 0xd60fe0,3, 0xd60ff0,3, 0xd61000,6, 0xd61020,3, 0xd61040,3, 0xd61050,3, 0xd61060,1, 0xd61080,3, 0xd61090,3, 0xd610a0,1, 0xd610c0,3, 0xd610e0,5, 0xd61100,11, 0xd61130,3, 0xd61140,3, 0xd61150,3, 0xd61160,5, 0xd61180,5, 0xd611a0,3, 0xd611b0,3, 0xd611c0,3, 0xd611d0,3, 0xd611e0,2, 0xd611f0,3, 0xd61200,7, 0xd61220,3, 0xd61230,2, 0xd61240,3, 0xd61250,3, 0xd61260,2, 0xd61400,15, 0xd61440,4, 0xd61460,17, 0xd614c0,6, 0xd614e0,4, 0xd614f4,11, 0xd61524,54, 0xd61604,1, 0xd6160c,1, 0xd61614,1, 0xd6161c,15, 0xd61660,6, 0xd61680,4, 0xd616a0,5, 0xd616c0,4, 0xd616e0,5, 0xd61700,4, 0xd61720,5, 0xd61740,4, 0xd61760,5, 0xd61780,4, 0xd617c0,15, 0xd61800,4, 0xd61880,19, 0xd61900,1, 0xd61980,24, 0xd61a00,24, 0xd61a80,24, 0xd61b00,24, 0xd61b80,1, 0xd61b88,2, 0xd62000,451, 0xd62740,169, 0xd63000,260, 0xd63800,12, 0xd63a04,1, 0xd63a0c,8, 0xd63a44,1, 0xd63a50,7, 0xd63a84,1, 0xd63a94,27, 0xd63b04,3, 0xd63b14,3, 0xd63b24,3, 0xd63b34,21, 0xd63ba0,5, 0xd63bc0,1, 0xd63c04,1, 0xd63c14,3, 0xd63c24,3, 0xd63c34,3, 0xd63c44,1, 0xd63c60,8, 0xd63c84,1, 0xd63ca0,8, 0xd63cc4,1, 0xd63ce0,11, 0xd63e04,1, 0xd63e0c,2, 0xd63e18,1, 0xd63e20,3, 0xd63e30,3, 0xd63e40,1, 0xd63e48,3, 0xd63e58,3, 0xd63e70,4, 0xd64000,44, 0xd64100,19, 0xd64180,22, 0xd64200,27, 0xd64280,27, 0xd64300,11, 0xd64380,17, 0xd64400,27, 0xd64480,2, 0xd644a0,6, 0xd644c0,3, 0xd644d0,4, 0xd64500,35, 0xd64600,34, 0xd64700,26, 0xd64780,23, 0xd64800,15, 0xd64848,4, 0xd68000,20, 0xd68100,49, 0xd68200,20, 0xd68300,49, 0xd68400,20, 0xd68500,49, 0xd68600,20, 0xd68700,49, 0xd68800,8, 0xd69000,20, 0xd69100,49, 0xd69200,20, 0xd69300,49, 0xd69400,20, 0xd69500,49, 0xd69600,20, 0xd69700,49, 0xd69800,8, 0xd6a000,15, 0xd6a040,3, 0xd6a050,1, 0xd6a058,4, 0xd6a080,10, 0xd6a0b0,3, 0xd6a0c4,7, 0xd6a100,44, 0xd6a200,5, 0xd6a218,5, 0xd6a280,20, 0xd6a300,1, 0xd6a800,52, 0xd6a8e0,5, 0xd6a900,5, 0xd6aa00,52, 0xd6aae0,5, 0xd6ab00,5, 0xd6ac00,18, 0xd6ac50,10, 0xd6ad00,36, 0xd6ada0,5, 0xd6adc0,5, 0xd6b000,20, 0xd6b080,20, 0xd6b100,20, 0xd6b180,20, 0xd6b200,10, 0xd6b400,10, 0xd6b440,10, 0xd6b480,10, 0xd6b4c0,10, 0xd6b500,1, 0xd6b600,1, 0xd6b608,32, 0xd6b6a0,6, 0xd6b6c0,6, 0xd6b6e0,6, 0xd6b700,6, 0xd6b720,6, 0xd6b740,6, 0xd6b760,6, 0xd6b780,6, 0xd6b800,76, 0xd6ba00,76, 0xd6bc00,33, 0xd6c000,76, 0xd6c200,76, 0xd6c400,33, 0xd6c800,4, 0xd6ca00,72, 0xd6cc00,17, 0xd6cc48,4, 0xd6ce00,27, 0xd6ce80,4, 0xd6cec0,25, 0xd6cf40,6, 0xd6cf60,4, 0xd6cf74,11, 0xd6cfa4,16, 0xd6d000,12, 0xd6d040,2, 0xd6d050,1, 0xd6d058,5, 0xd6d070,3, 0xd80000,23, 0xd80080,23, 0xd80100,23, 0xd80180,23, 0xd80200,13, 0xd80404,1, 0xd8047c,33, 0xd80504,1, 0xd80514,3, 0xd80524,1, 0xd8052c,1, 0xd80600,96, 0xd80784,1, 0xd80790,4, 0xd81000,76, 0xd82000,582, 0xd83000,13, 0xd83400,27, 0xd83480,4, 0xd834c0,25, 0xd83540,6, 0xd83560,4, 0xd83574,3, 0xd83600,8, 0xd83624,59, 0xd83800,4, 0xd83880,36, 0xd83980,17, 0xd83a00,6, 0xd83a20,165, 0xd83d00,12, 0xd83d40,2, 0xd83d50,3, 0xd83d60,1, 0xd83d80,12, 0xd83dc0,2, 0xd83dd0,3, 0xd83de0,1, 0xd83e00,12, 0xd83e40,2, 0xd83e50,3, 0xd83e60,1, 0xd83e80,12, 0xd83ec0,2, 0xd83ed0,3, 0xd83ee0,1, 0xd83f00,9, 0xd83f80,3, 0xd83f90,5, 0xd83fa8,5, 0xd83fc0,5, 0xd83fd8,2, 0xd84000,1, 0xd84010,6, 0xd84030,78, 0xd84180,18, 0xd88004,6, 0xd89000,650, 0xd8a000,650, 0xd8b000,2, 0xd8b040,9, 0xd8b080,7, 0xd8c000,34, 0xd8c090,9, 0xd8c0b8,11, 0xd90000,11, 0xd90040,11, 0xd90080,11, 0xd900c0,11, 0xd90104,1, 0xd9011c,10, 0xd90148,2, 0xd90154,1, 0xd9015c,24, 0xd901c0,3, 0xd901d0,3, 0xd901e0,3, 0xd901f0,33, 0xd90280,3, 0xd90290,3, 0xd902a0,3, 0xd902b0,3, 0xd902c0,5, 0xd902d8,8, 0xd90400,145, 0xd90800,4, 0xd90880,25, 0xd90900,5, 0xd90920,1, 0xd91000,11, 0xd91040,11, 0xd91080,11, 0xd910c0,11, 0xd91100,11, 0xd91140,11, 0xd91180,11, 0xd911c0,11, 0xd91200,1, 0xd91208,19, 0xd91260,2, 0xd9126c,3, 0xd91280,5, 0xd91400,3, 0xd91410,30, 0xd914a4,1, 0xd914b4,23, 0xd91520,6, 0xd91540,3, 0xd91560,2, 0xd9156c,2, 0xd91580,2, 0xd915c0,3, 0xd915d0,3, 0xd915e0,1, 0xd91600,1, 0xd91800,1, 0xd91814,12, 0xd91848,5, 0xd91860,7, 0xd91880,5, 0xd91898,5, 0xd918b0,5, 0xd918c8,7, 0xd918e8,7, 0xd91908,5, 0xd91920,11, 0xd91950,55, 0xd91a40,2, 0xd91a4c,2, 0xd91a60,2, 0xd91a80,6, 0xd91ac0,3, 0xd91ad0,3, 0xd91ae0,1, 0xd91b00,1, 0xd92000,2, 0xd92010,47, 0xd920e0,6, 0xd92100,6, 0xd92120,2, 0xd9212c,3, 0xd92140,6, 0xd92200,5, 0xd92224,1, 0xd92234,3, 0xd92280,20, 0xd92404,1, 0xd924e4,71, 0xd92604,1, 0xd92670,38, 0xd92800,27, 0xd92880,4, 0xd928c0,25, 0xd92940,6, 0xd92960,4, 0xd92974,11, 0xd929a4,7, 0xd92a00,12, 0xd92a40,2, 0xd92a50,1, 0xd92a58,5, 0xd92a70,5, 0xda0000,19, 0xda0080,19, 0xda0100,19, 0xda0180,19, 0xda0200,12, 0xda0280,1, 0xda02a0,6, 0xda02c0,6, 0xda02e0,6, 0xda0300,6, 0xda0320,6, 0xda0340,6, 0xda0360,6, 0xda0380,9, 0xda03c0,13, 0xda0400,3, 0xda0410,159, 0xda0690,16, 0xda06e0,5, 0xda0700,5, 0xda0720,5, 0xda0740,5, 0xda0760,5, 0xda0780,5, 0xda07a0,5, 0xda07c0,5, 0xda07e0,6, 0xda0800,6, 0xda0820,6, 0xda0840,6, 0xda0860,6, 0xda0880,6, 0xda08a0,6, 0xda08c0,6, 0xda08e0,6, 0xda0900,6, 0xda0920,6, 0xda0940,6, 0xda0960,6, 0xda0980,6, 0xda09a0,6, 0xda09c0,6, 0xda0a00,22, 0xda0a80,1, 0xda0a88,3, 0xda0aa0,5, 0xda0ac0,1, 0xda0ad0,3, 0xda0ae0,1, 0xda0af0,3, 0xda0b00,1, 0xda0b10,3, 0xda0b20,1, 0xda0b30,3, 0xda0b40,1, 0xda0b48,3, 0xda0b58,3, 0xda0b68,3, 0xda0b78,3, 0xda0b88,3, 0xda0ba0,3, 0xda0bb0,1, 0xda0bc0,3, 0xda0bd0,1, 0xda0be0,3, 0xda0bf0,1, 0xda0c00,3, 0xda0c10,1, 0xda0c20,3, 0xda0c30,1, 0xda0c40,3, 0xda0c50,1, 0xda0c80,6, 0xda0ca0,6, 0xda0cc0,1, 0xda0d00,1, 0xda0d10,3, 0xda0d20,1, 0xda0d30,3, 0xda0d40,1, 0xda0d60,5, 0xda0d80,1, 0xda0d90,3, 0xda0da0,1, 0xda0dc0,5, 0xda0de0,1, 0xda0df0,3, 0xda0e00,1, 0xda0e10,3, 0xda0e20,5, 0xda0e40,2, 0xda0e50,3, 0xda0e60,5, 0xda0e80,2, 0xda0e90,3, 0xda0ea0,3, 0xda0eb0,3, 0xda0ec0,3, 0xda0ed0,3, 0xda0ee0,5, 0xda0f00,3, 0xda0f20,5, 0xda0f40,5, 0xda0f60,3, 0xda0f70,3, 0xda0f80,5, 0xda0fa0,3, 0xda0fb0,3, 0xda0fc0,3, 0xda0fd0,3, 0xda0fe0,3, 0xda0ff0,3, 0xda1000,6, 0xda1020,3, 0xda1040,3, 0xda1050,3, 0xda1060,1, 0xda1080,3, 0xda1090,3, 0xda10a0,1, 0xda10c0,3, 0xda10e0,5, 0xda1100,11, 0xda1130,3, 0xda1140,3, 0xda1150,3, 0xda1160,5, 0xda1180,5, 0xda11a0,3, 0xda11b0,3, 0xda11c0,3, 0xda11d0,3, 0xda11e0,2, 0xda11f0,3, 0xda1200,7, 0xda1220,3, 0xda1230,2, 0xda1240,3, 0xda1250,3, 0xda1260,2, 0xda1400,15, 0xda1440,4, 0xda1460,17, 0xda14c0,6, 0xda14e0,4, 0xda14f4,11, 0xda1524,54, 0xda1604,1, 0xda160c,1, 0xda1614,1, 0xda161c,15, 0xda1660,6, 0xda1680,4, 0xda16a0,5, 0xda16c0,4, 0xda16e0,5, 0xda1700,4, 0xda1720,5, 0xda1740,4, 0xda1760,5, 0xda1780,4, 0xda17c0,15, 0xda1800,4, 0xda1880,19, 0xda1900,1, 0xda1980,24, 0xda1a00,24, 0xda1a80,24, 0xda1b00,24, 0xda1b80,1, 0xda1b88,2, 0xda2000,451, 0xda2740,169, 0xda3000,260, 0xda3800,12, 0xda3a04,1, 0xda3a0c,8, 0xda3a44,1, 0xda3a50,7, 0xda3a84,1, 0xda3a94,27, 0xda3b04,3, 0xda3b14,3, 0xda3b24,3, 0xda3b34,21, 0xda3ba0,5, 0xda3bc0,1, 0xda3c04,1, 0xda3c14,3, 0xda3c24,3, 0xda3c34,3, 0xda3c44,1, 0xda3c60,8, 0xda3c84,1, 0xda3ca0,8, 0xda3cc4,1, 0xda3ce0,11, 0xda3e04,1, 0xda3e0c,2, 0xda3e18,1, 0xda3e20,3, 0xda3e30,3, 0xda3e40,1, 0xda3e48,3, 0xda3e58,3, 0xda3e70,4, 0xda4000,44, 0xda4100,19, 0xda4180,22, 0xda4200,27, 0xda4280,27, 0xda4300,11, 0xda4380,17, 0xda4400,27, 0xda4480,2, 0xda44a0,6, 0xda44c0,3, 0xda44d0,4, 0xda4500,35, 0xda4600,34, 0xda4700,26, 0xda4780,23, 0xda4800,15, 0xda4848,4, 0xda8000,20, 0xda8100,49, 0xda8200,20, 0xda8300,49, 0xda8400,20, 0xda8500,49, 0xda8600,20, 0xda8700,49, 0xda8800,8, 0xda9000,20, 0xda9100,49, 0xda9200,20, 0xda9300,49, 0xda9400,20, 0xda9500,49, 0xda9600,20, 0xda9700,49, 0xda9800,8, 0xdaa000,15, 0xdaa040,3, 0xdaa050,1, 0xdaa058,4, 0xdaa080,10, 0xdaa0b0,3, 0xdaa0c4,7, 0xdaa100,44, 0xdaa200,5, 0xdaa218,5, 0xdaa280,20, 0xdaa300,1, 0xdaa800,52, 0xdaa8e0,5, 0xdaa900,5, 0xdaaa00,52, 0xdaaae0,5, 0xdaab00,5, 0xdaac00,18, 0xdaac50,10, 0xdaad00,36, 0xdaada0,5, 0xdaadc0,5, 0xdab000,20, 0xdab080,20, 0xdab100,20, 0xdab180,20, 0xdab200,10, 0xdab400,10, 0xdab440,10, 0xdab480,10, 0xdab4c0,10, 0xdab500,1, 0xdab600,1, 0xdab608,32, 0xdab6a0,6, 0xdab6c0,6, 0xdab6e0,6, 0xdab700,6, 0xdab720,6, 0xdab740,6, 0xdab760,6, 0xdab780,6, 0xdab800,76, 0xdaba00,76, 0xdabc00,33, 0xdac000,76, 0xdac200,76, 0xdac400,33, 0xdac800,4, 0xdaca00,72, 0xdacc00,17, 0xdacc48,4, 0xdace00,27, 0xdace80,4, 0xdacec0,25, 0xdacf40,6, 0xdacf60,4, 0xdacf74,11, 0xdacfa4,16, 0xdad000,12, 0xdad040,2, 0xdad050,1, 0xdad058,5, 0xdad070,3, 0xdc0000,23, 0xdc0080,23, 0xdc0100,23, 0xdc0180,23, 0xdc0200,13, 0xdc0404,1, 0xdc047c,33, 0xdc0504,1, 0xdc0514,3, 0xdc0524,1, 0xdc052c,1, 0xdc0600,96, 0xdc0784,1, 0xdc0790,4, 0xdc1000,76, 0xdc2000,582, 0xdc3000,13, 0xdc3400,27, 0xdc3480,4, 0xdc34c0,25, 0xdc3540,6, 0xdc3560,4, 0xdc3574,3, 0xdc3600,8, 0xdc3624,59, 0xdc3800,4, 0xdc3880,36, 0xdc3980,17, 0xdc3a00,6, 0xdc3a20,165, 0xdc3d00,12, 0xdc3d40,2, 0xdc3d50,3, 0xdc3d60,1, 0xdc3d80,12, 0xdc3dc0,2, 0xdc3dd0,3, 0xdc3de0,1, 0xdc3e00,12, 0xdc3e40,2, 0xdc3e50,3, 0xdc3e60,1, 0xdc3e80,12, 0xdc3ec0,2, 0xdc3ed0,3, 0xdc3ee0,1, 0xdc3f00,9, 0xdc3f80,3, 0xdc3f90,5, 0xdc3fa8,5, 0xdc3fc0,5, 0xdc3fd8,2, 0xdc4000,1, 0xdc4010,6, 0xdc4030,78, 0xdc4180,18, 0xdc8004,6, 0xdc9000,650, 0xdca000,650, 0xdcb000,2, 0xdcb040,9, 0xdcb080,7, 0xdcc000,34, 0xdcc090,9, 0xdcc0b8,11, 0xdd0000,11, 0xdd0040,11, 0xdd0080,11, 0xdd00c0,11, 0xdd0104,1, 0xdd011c,10, 0xdd0148,2, 0xdd0154,1, 0xdd015c,24, 0xdd01c0,3, 0xdd01d0,3, 0xdd01e0,3, 0xdd01f0,33, 0xdd0280,3, 0xdd0290,3, 0xdd02a0,3, 0xdd02b0,3, 0xdd02c0,5, 0xdd02d8,8, 0xdd0400,145, 0xdd0800,4, 0xdd0880,25, 0xdd0900,5, 0xdd0920,1, 0xdd1000,11, 0xdd1040,11, 0xdd1080,11, 0xdd10c0,11, 0xdd1100,11, 0xdd1140,11, 0xdd1180,11, 0xdd11c0,11, 0xdd1200,1, 0xdd1208,19, 0xdd1260,2, 0xdd126c,3, 0xdd1280,5, 0xdd1400,3, 0xdd1410,30, 0xdd14a4,1, 0xdd14b4,23, 0xdd1520,6, 0xdd1540,3, 0xdd1560,2, 0xdd156c,2, 0xdd1580,2, 0xdd15c0,3, 0xdd15d0,3, 0xdd15e0,1, 0xdd1600,1, 0xdd1800,1, 0xdd1814,12, 0xdd1848,5, 0xdd1860,7, 0xdd1880,5, 0xdd1898,5, 0xdd18b0,5, 0xdd18c8,7, 0xdd18e8,7, 0xdd1908,5, 0xdd1920,11, 0xdd1950,55, 0xdd1a40,2, 0xdd1a4c,2, 0xdd1a60,2, 0xdd1a80,6, 0xdd1ac0,3, 0xdd1ad0,3, 0xdd1ae0,1, 0xdd1b00,1, 0xdd2000,2, 0xdd2010,47, 0xdd20e0,6, 0xdd2100,6, 0xdd2120,2, 0xdd212c,3, 0xdd2140,6, 0xdd2200,5, 0xdd2224,1, 0xdd2234,3, 0xdd2280,20, 0xdd2404,1, 0xdd24e4,71, 0xdd2604,1, 0xdd2670,38, 0xdd2800,27, 0xdd2880,4, 0xdd28c0,25, 0xdd2940,6, 0xdd2960,4, 0xdd2974,11, 0xdd29a4,7, 0xdd2a00,12, 0xdd2a40,2, 0xdd2a50,1, 0xdd2a58,5, 0xdd2a70,5, 0xde0000,19, 0xde0080,19, 0xde0100,19, 0xde0180,19, 0xde0200,12, 0xde0280,1, 0xde02a0,6, 0xde02c0,6, 0xde02e0,6, 0xde0300,6, 0xde0320,6, 0xde0340,6, 0xde0360,6, 0xde0380,9, 0xde03c0,13, 0xde0400,3, 0xde0410,159, 0xde0690,16, 0xde06e0,5, 0xde0700,5, 0xde0720,5, 0xde0740,5, 0xde0760,5, 0xde0780,5, 0xde07a0,5, 0xde07c0,5, 0xde07e0,6, 0xde0800,6, 0xde0820,6, 0xde0840,6, 0xde0860,6, 0xde0880,6, 0xde08a0,6, 0xde08c0,6, 0xde08e0,6, 0xde0900,6, 0xde0920,6, 0xde0940,6, 0xde0960,6, 0xde0980,6, 0xde09a0,6, 0xde09c0,6, 0xde0a00,22, 0xde0a80,1, 0xde0a88,3, 0xde0aa0,5, 0xde0ac0,1, 0xde0ad0,3, 0xde0ae0,1, 0xde0af0,3, 0xde0b00,1, 0xde0b10,3, 0xde0b20,1, 0xde0b30,3, 0xde0b40,1, 0xde0b48,3, 0xde0b58,3, 0xde0b68,3, 0xde0b78,3, 0xde0b88,3, 0xde0ba0,3, 0xde0bb0,1, 0xde0bc0,3, 0xde0bd0,1, 0xde0be0,3, 0xde0bf0,1, 0xde0c00,3, 0xde0c10,1, 0xde0c20,3, 0xde0c30,1, 0xde0c40,3, 0xde0c50,1, 0xde0c80,6, 0xde0ca0,6, 0xde0cc0,1, 0xde0d00,1, 0xde0d10,3, 0xde0d20,1, 0xde0d30,3, 0xde0d40,1, 0xde0d60,5, 0xde0d80,1, 0xde0d90,3, 0xde0da0,1, 0xde0dc0,5, 0xde0de0,1, 0xde0df0,3, 0xde0e00,1, 0xde0e10,3, 0xde0e20,5, 0xde0e40,2, 0xde0e50,3, 0xde0e60,5, 0xde0e80,2, 0xde0e90,3, 0xde0ea0,3, 0xde0eb0,3, 0xde0ec0,3, 0xde0ed0,3, 0xde0ee0,5, 0xde0f00,3, 0xde0f20,5, 0xde0f40,5, 0xde0f60,3, 0xde0f70,3, 0xde0f80,5, 0xde0fa0,3, 0xde0fb0,3, 0xde0fc0,3, 0xde0fd0,3, 0xde0fe0,3, 0xde0ff0,3, 0xde1000,6, 0xde1020,3, 0xde1040,3, 0xde1050,3, 0xde1060,1, 0xde1080,3, 0xde1090,3, 0xde10a0,1, 0xde10c0,3, 0xde10e0,5, 0xde1100,11, 0xde1130,3, 0xde1140,3, 0xde1150,3, 0xde1160,5, 0xde1180,5, 0xde11a0,3, 0xde11b0,3, 0xde11c0,3, 0xde11d0,3, 0xde11e0,2, 0xde11f0,3, 0xde1200,7, 0xde1220,3, 0xde1230,2, 0xde1240,3, 0xde1250,3, 0xde1260,2, 0xde1400,15, 0xde1440,4, 0xde1460,17, 0xde14c0,6, 0xde14e0,4, 0xde14f4,11, 0xde1524,54, 0xde1604,1, 0xde160c,1, 0xde1614,1, 0xde161c,15, 0xde1660,6, 0xde1680,4, 0xde16a0,5, 0xde16c0,4, 0xde16e0,5, 0xde1700,4, 0xde1720,5, 0xde1740,4, 0xde1760,5, 0xde1780,4, 0xde17c0,15, 0xde1800,4, 0xde1880,19, 0xde1900,1, 0xde1980,24, 0xde1a00,24, 0xde1a80,24, 0xde1b00,24, 0xde1b80,1, 0xde1b88,2, 0xde2000,451, 0xde2740,169, 0xde3000,260, 0xde3800,12, 0xde3a04,1, 0xde3a0c,8, 0xde3a44,1, 0xde3a50,7, 0xde3a84,1, 0xde3a94,27, 0xde3b04,3, 0xde3b14,3, 0xde3b24,3, 0xde3b34,21, 0xde3ba0,5, 0xde3bc0,1, 0xde3c04,1, 0xde3c14,3, 0xde3c24,3, 0xde3c34,3, 0xde3c44,1, 0xde3c60,8, 0xde3c84,1, 0xde3ca0,8, 0xde3cc4,1, 0xde3ce0,11, 0xde3e04,1, 0xde3e0c,2, 0xde3e18,1, 0xde3e20,3, 0xde3e30,3, 0xde3e40,1, 0xde3e48,3, 0xde3e58,3, 0xde3e70,4, 0xde4000,44, 0xde4100,19, 0xde4180,22, 0xde4200,27, 0xde4280,27, 0xde4300,11, 0xde4380,17, 0xde4400,27, 0xde4480,2, 0xde44a0,6, 0xde44c0,3, 0xde44d0,4, 0xde4500,35, 0xde4600,34, 0xde4700,26, 0xde4780,23, 0xde4800,15, 0xde4848,4, 0xde8000,20, 0xde8100,49, 0xde8200,20, 0xde8300,49, 0xde8400,20, 0xde8500,49, 0xde8600,20, 0xde8700,49, 0xde8800,8, 0xde9000,20, 0xde9100,49, 0xde9200,20, 0xde9300,49, 0xde9400,20, 0xde9500,49, 0xde9600,20, 0xde9700,49, 0xde9800,8, 0xdea000,15, 0xdea040,3, 0xdea050,1, 0xdea058,4, 0xdea080,10, 0xdea0b0,3, 0xdea0c4,7, 0xdea100,44, 0xdea200,5, 0xdea218,5, 0xdea280,20, 0xdea300,1, 0xdea800,52, 0xdea8e0,5, 0xdea900,5, 0xdeaa00,52, 0xdeaae0,5, 0xdeab00,5, 0xdeac00,18, 0xdeac50,10, 0xdead00,36, 0xdeada0,5, 0xdeadc0,5, 0xdeb000,20, 0xdeb080,20, 0xdeb100,20, 0xdeb180,20, 0xdeb200,10, 0xdeb400,10, 0xdeb440,10, 0xdeb480,10, 0xdeb4c0,10, 0xdeb500,1, 0xdeb600,1, 0xdeb608,32, 0xdeb6a0,6, 0xdeb6c0,6, 0xdeb6e0,6, 0xdeb700,6, 0xdeb720,6, 0xdeb740,6, 0xdeb760,6, 0xdeb780,6, 0xdeb800,76, 0xdeba00,76, 0xdebc00,33, 0xdec000,76, 0xdec200,76, 0xdec400,33, 0xdec800,4, 0xdeca00,72, 0xdecc00,17, 0xdecc48,4, 0xdece00,27, 0xdece80,4, 0xdecec0,25, 0xdecf40,6, 0xdecf60,4, 0xdecf74,11, 0xdecfa4,16, 0xded000,12, 0xded040,2, 0xded050,1, 0xded058,5, 0xded070,3, 0xe00000,23, 0xe00080,23, 0xe00100,23, 0xe00180,23, 0xe00200,13, 0xe00404,1, 0xe0047c,33, 0xe00504,1, 0xe00514,3, 0xe00524,1, 0xe0052c,1, 0xe00600,96, 0xe00784,1, 0xe00790,4, 0xe01000,76, 0xe02000,582, 0xe03000,13, 0xe03400,27, 0xe03480,4, 0xe034c0,25, 0xe03540,6, 0xe03560,4, 0xe03574,3, 0xe03600,8, 0xe03624,59, 0xe03800,4, 0xe03880,36, 0xe03980,17, 0xe03a00,6, 0xe03a20,165, 0xe03d00,12, 0xe03d40,2, 0xe03d50,3, 0xe03d60,1, 0xe03d80,12, 0xe03dc0,2, 0xe03dd0,3, 0xe03de0,1, 0xe03e00,12, 0xe03e40,2, 0xe03e50,3, 0xe03e60,1, 0xe03e80,12, 0xe03ec0,2, 0xe03ed0,3, 0xe03ee0,1, 0xe03f00,9, 0xe03f80,3, 0xe03f90,5, 0xe03fa8,5, 0xe03fc0,5, 0xe03fd8,2, 0xe04000,1, 0xe04010,6, 0xe04030,78, 0xe04180,18, 0xe08004,6, 0xe09000,650, 0xe0a000,650, 0xe0b000,2, 0xe0b040,9, 0xe0b080,7, 0xe0c000,34, 0xe0c090,9, 0xe0c0b8,11, 0xe10000,11, 0xe10040,11, 0xe10080,11, 0xe100c0,11, 0xe10104,1, 0xe1011c,10, 0xe10148,2, 0xe10154,1, 0xe1015c,24, 0xe101c0,3, 0xe101d0,3, 0xe101e0,3, 0xe101f0,33, 0xe10280,3, 0xe10290,3, 0xe102a0,3, 0xe102b0,3, 0xe102c0,5, 0xe102d8,8, 0xe10400,145, 0xe10800,4, 0xe10880,25, 0xe10900,5, 0xe10920,1, 0xe11000,11, 0xe11040,11, 0xe11080,11, 0xe110c0,11, 0xe11100,11, 0xe11140,11, 0xe11180,11, 0xe111c0,11, 0xe11200,1, 0xe11208,19, 0xe11260,2, 0xe1126c,3, 0xe11280,5, 0xe11400,3, 0xe11410,30, 0xe114a4,1, 0xe114b4,23, 0xe11520,6, 0xe11540,3, 0xe11560,2, 0xe1156c,2, 0xe11580,2, 0xe115c0,3, 0xe115d0,3, 0xe115e0,1, 0xe11600,1, 0xe11800,1, 0xe11814,12, 0xe11848,5, 0xe11860,7, 0xe11880,5, 0xe11898,5, 0xe118b0,5, 0xe118c8,7, 0xe118e8,7, 0xe11908,5, 0xe11920,11, 0xe11950,55, 0xe11a40,2, 0xe11a4c,2, 0xe11a60,2, 0xe11a80,6, 0xe11ac0,3, 0xe11ad0,3, 0xe11ae0,1, 0xe11b00,1, 0xe12000,2, 0xe12010,47, 0xe120e0,6, 0xe12100,6, 0xe12120,2, 0xe1212c,3, 0xe12140,6, 0xe12200,5, 0xe12224,1, 0xe12234,3, 0xe12280,20, 0xe12404,1, 0xe124e4,71, 0xe12604,1, 0xe12670,38, 0xe12800,27, 0xe12880,4, 0xe128c0,25, 0xe12940,6, 0xe12960,4, 0xe12974,11, 0xe129a4,7, 0xe12a00,12, 0xe12a40,2, 0xe12a50,1, 0xe12a58,5, 0xe12a70,5, 0xe20000,19, 0xe20080,19, 0xe20100,19, 0xe20180,19, 0xe20200,12, 0xe20280,1, 0xe202a0,6, 0xe202c0,6, 0xe202e0,6, 0xe20300,6, 0xe20320,6, 0xe20340,6, 0xe20360,6, 0xe20380,9, 0xe203c0,13, 0xe20400,3, 0xe20410,159, 0xe20690,16, 0xe206e0,5, 0xe20700,5, 0xe20720,5, 0xe20740,5, 0xe20760,5, 0xe20780,5, 0xe207a0,5, 0xe207c0,5, 0xe207e0,6, 0xe20800,6, 0xe20820,6, 0xe20840,6, 0xe20860,6, 0xe20880,6, 0xe208a0,6, 0xe208c0,6, 0xe208e0,6, 0xe20900,6, 0xe20920,6, 0xe20940,6, 0xe20960,6, 0xe20980,6, 0xe209a0,6, 0xe209c0,6, 0xe20a00,22, 0xe20a80,1, 0xe20a88,3, 0xe20aa0,5, 0xe20ac0,1, 0xe20ad0,3, 0xe20ae0,1, 0xe20af0,3, 0xe20b00,1, 0xe20b10,3, 0xe20b20,1, 0xe20b30,3, 0xe20b40,1, 0xe20b48,3, 0xe20b58,3, 0xe20b68,3, 0xe20b78,3, 0xe20b88,3, 0xe20ba0,3, 0xe20bb0,1, 0xe20bc0,3, 0xe20bd0,1, 0xe20be0,3, 0xe20bf0,1, 0xe20c00,3, 0xe20c10,1, 0xe20c20,3, 0xe20c30,1, 0xe20c40,3, 0xe20c50,1, 0xe20c80,6, 0xe20ca0,6, 0xe20cc0,1, 0xe20d00,1, 0xe20d10,3, 0xe20d20,1, 0xe20d30,3, 0xe20d40,1, 0xe20d60,5, 0xe20d80,1, 0xe20d90,3, 0xe20da0,1, 0xe20dc0,5, 0xe20de0,1, 0xe20df0,3, 0xe20e00,1, 0xe20e10,3, 0xe20e20,5, 0xe20e40,2, 0xe20e50,3, 0xe20e60,5, 0xe20e80,2, 0xe20e90,3, 0xe20ea0,3, 0xe20eb0,3, 0xe20ec0,3, 0xe20ed0,3, 0xe20ee0,5, 0xe20f00,3, 0xe20f20,5, 0xe20f40,5, 0xe20f60,3, 0xe20f70,3, 0xe20f80,5, 0xe20fa0,3, 0xe20fb0,3, 0xe20fc0,3, 0xe20fd0,3, 0xe20fe0,3, 0xe20ff0,3, 0xe21000,6, 0xe21020,3, 0xe21040,3, 0xe21050,3, 0xe21060,1, 0xe21080,3, 0xe21090,3, 0xe210a0,1, 0xe210c0,3, 0xe210e0,5, 0xe21100,11, 0xe21130,3, 0xe21140,3, 0xe21150,3, 0xe21160,5, 0xe21180,5, 0xe211a0,3, 0xe211b0,3, 0xe211c0,3, 0xe211d0,3, 0xe211e0,2, 0xe211f0,3, 0xe21200,7, 0xe21220,3, 0xe21230,2, 0xe21240,3, 0xe21250,3, 0xe21260,2, 0xe21400,15, 0xe21440,4, 0xe21460,17, 0xe214c0,6, 0xe214e0,4, 0xe214f4,11, 0xe21524,54, 0xe21604,1, 0xe2160c,1, 0xe21614,1, 0xe2161c,15, 0xe21660,6, 0xe21680,4, 0xe216a0,5, 0xe216c0,4, 0xe216e0,5, 0xe21700,4, 0xe21720,5, 0xe21740,4, 0xe21760,5, 0xe21780,4, 0xe217c0,15, 0xe21800,4, 0xe21880,19, 0xe21900,1, 0xe21980,24, 0xe21a00,24, 0xe21a80,24, 0xe21b00,24, 0xe21b80,1, 0xe21b88,2, 0xe22000,451, 0xe22740,169, 0xe23000,260, 0xe23800,12, 0xe23a04,1, 0xe23a0c,8, 0xe23a44,1, 0xe23a50,7, 0xe23a84,1, 0xe23a94,27, 0xe23b04,3, 0xe23b14,3, 0xe23b24,3, 0xe23b34,21, 0xe23ba0,5, 0xe23bc0,1, 0xe23c04,1, 0xe23c14,3, 0xe23c24,3, 0xe23c34,3, 0xe23c44,1, 0xe23c60,8, 0xe23c84,1, 0xe23ca0,8, 0xe23cc4,1, 0xe23ce0,11, 0xe23e04,1, 0xe23e0c,2, 0xe23e18,1, 0xe23e20,3, 0xe23e30,3, 0xe23e40,1, 0xe23e48,3, 0xe23e58,3, 0xe23e70,4, 0xe24000,44, 0xe24100,19, 0xe24180,22, 0xe24200,27, 0xe24280,27, 0xe24300,11, 0xe24380,17, 0xe24400,27, 0xe24480,2, 0xe244a0,6, 0xe244c0,3, 0xe244d0,4, 0xe24500,35, 0xe24600,34, 0xe24700,26, 0xe24780,23, 0xe24800,15, 0xe24848,4, 0xe28000,20, 0xe28100,49, 0xe28200,20, 0xe28300,49, 0xe28400,20, 0xe28500,49, 0xe28600,20, 0xe28700,49, 0xe28800,8, 0xe29000,20, 0xe29100,49, 0xe29200,20, 0xe29300,49, 0xe29400,20, 0xe29500,49, 0xe29600,20, 0xe29700,49, 0xe29800,8, 0xe2a000,15, 0xe2a040,3, 0xe2a050,1, 0xe2a058,4, 0xe2a080,10, 0xe2a0b0,3, 0xe2a0c4,7, 0xe2a100,44, 0xe2a200,5, 0xe2a218,5, 0xe2a280,20, 0xe2a300,1, 0xe2a800,52, 0xe2a8e0,5, 0xe2a900,5, 0xe2aa00,52, 0xe2aae0,5, 0xe2ab00,5, 0xe2ac00,18, 0xe2ac50,10, 0xe2ad00,36, 0xe2ada0,5, 0xe2adc0,5, 0xe2b000,20, 0xe2b080,20, 0xe2b100,20, 0xe2b180,20, 0xe2b200,10, 0xe2b400,10, 0xe2b440,10, 0xe2b480,10, 0xe2b4c0,10, 0xe2b500,1, 0xe2b600,1, 0xe2b608,32, 0xe2b6a0,6, 0xe2b6c0,6, 0xe2b6e0,6, 0xe2b700,6, 0xe2b720,6, 0xe2b740,6, 0xe2b760,6, 0xe2b780,6, 0xe2b800,76, 0xe2ba00,76, 0xe2bc00,33, 0xe2c000,76, 0xe2c200,76, 0xe2c400,33, 0xe2c800,4, 0xe2ca00,72, 0xe2cc00,17, 0xe2cc48,4, 0xe2ce00,27, 0xe2ce80,4, 0xe2cec0,25, 0xe2cf40,6, 0xe2cf60,4, 0xe2cf74,11, 0xe2cfa4,16, 0xe2d000,12, 0xe2d040,2, 0xe2d050,1, 0xe2d058,5, 0xe2d070,3, 0xe40000,23, 0xe40080,23, 0xe40100,23, 0xe40180,23, 0xe40200,13, 0xe40404,1, 0xe4047c,33, 0xe40504,1, 0xe40514,3, 0xe40524,1, 0xe4052c,1, 0xe40600,96, 0xe40784,1, 0xe40790,4, 0xe41000,76, 0xe42000,582, 0xe43000,13, 0xe43400,27, 0xe43480,4, 0xe434c0,25, 0xe43540,6, 0xe43560,4, 0xe43574,3, 0xe43600,8, 0xe43624,59, 0xe43800,4, 0xe43880,36, 0xe43980,17, 0xe43a00,6, 0xe43a20,165, 0xe43d00,12, 0xe43d40,2, 0xe43d50,3, 0xe43d60,1, 0xe43d80,12, 0xe43dc0,2, 0xe43dd0,3, 0xe43de0,1, 0xe43e00,12, 0xe43e40,2, 0xe43e50,3, 0xe43e60,1, 0xe43e80,12, 0xe43ec0,2, 0xe43ed0,3, 0xe43ee0,1, 0xe43f00,9, 0xe43f80,3, 0xe43f90,5, 0xe43fa8,5, 0xe43fc0,5, 0xe43fd8,2, 0xe44000,1, 0xe44010,6, 0xe44030,78, 0xe44180,18, 0xe48004,6, 0xe49000,650, 0xe4a000,650, 0xe4b000,2, 0xe4b040,9, 0xe4b080,7, 0xe4c000,34, 0xe4c090,9, 0xe4c0b8,11, 0xe50000,11, 0xe50040,11, 0xe50080,11, 0xe500c0,11, 0xe50104,1, 0xe5011c,10, 0xe50148,2, 0xe50154,1, 0xe5015c,24, 0xe501c0,3, 0xe501d0,3, 0xe501e0,3, 0xe501f0,33, 0xe50280,3, 0xe50290,3, 0xe502a0,3, 0xe502b0,3, 0xe502c0,5, 0xe502d8,8, 0xe50400,145, 0xe50800,4, 0xe50880,25, 0xe50900,5, 0xe50920,1, 0xe51000,11, 0xe51040,11, 0xe51080,11, 0xe510c0,11, 0xe51100,11, 0xe51140,11, 0xe51180,11, 0xe511c0,11, 0xe51200,1, 0xe51208,19, 0xe51260,2, 0xe5126c,3, 0xe51280,5, 0xe51400,3, 0xe51410,30, 0xe514a4,1, 0xe514b4,23, 0xe51520,6, 0xe51540,3, 0xe51560,2, 0xe5156c,2, 0xe51580,2, 0xe515c0,3, 0xe515d0,3, 0xe515e0,1, 0xe51600,1, 0xe51800,1, 0xe51814,12, 0xe51848,5, 0xe51860,7, 0xe51880,5, 0xe51898,5, 0xe518b0,5, 0xe518c8,7, 0xe518e8,7, 0xe51908,5, 0xe51920,11, 0xe51950,55, 0xe51a40,2, 0xe51a4c,2, 0xe51a60,2, 0xe51a80,6, 0xe51ac0,3, 0xe51ad0,3, 0xe51ae0,1, 0xe51b00,1, 0xe52000,2, 0xe52010,47, 0xe520e0,6, 0xe52100,6, 0xe52120,2, 0xe5212c,3, 0xe52140,6, 0xe52200,5, 0xe52224,1, 0xe52234,3, 0xe52280,20, 0xe52404,1, 0xe524e4,71, 0xe52604,1, 0xe52670,38, 0xe52800,27, 0xe52880,4, 0xe528c0,25, 0xe52940,6, 0xe52960,4, 0xe52974,11, 0xe529a4,7, 0xe52a00,12, 0xe52a40,2, 0xe52a50,1, 0xe52a58,5, 0xe52a70,5, 0xe60000,19, 0xe60080,19, 0xe60100,19, 0xe60180,19, 0xe60200,12, 0xe60280,1, 0xe602a0,6, 0xe602c0,6, 0xe602e0,6, 0xe60300,6, 0xe60320,6, 0xe60340,6, 0xe60360,6, 0xe60380,9, 0xe603c0,13, 0xe60400,3, 0xe60410,159, 0xe60690,16, 0xe606e0,5, 0xe60700,5, 0xe60720,5, 0xe60740,5, 0xe60760,5, 0xe60780,5, 0xe607a0,5, 0xe607c0,5, 0xe607e0,6, 0xe60800,6, 0xe60820,6, 0xe60840,6, 0xe60860,6, 0xe60880,6, 0xe608a0,6, 0xe608c0,6, 0xe608e0,6, 0xe60900,6, 0xe60920,6, 0xe60940,6, 0xe60960,6, 0xe60980,6, 0xe609a0,6, 0xe609c0,6, 0xe60a00,22, 0xe60a80,1, 0xe60a88,3, 0xe60aa0,5, 0xe60ac0,1, 0xe60ad0,3, 0xe60ae0,1, 0xe60af0,3, 0xe60b00,1, 0xe60b10,3, 0xe60b20,1, 0xe60b30,3, 0xe60b40,1, 0xe60b48,3, 0xe60b58,3, 0xe60b68,3, 0xe60b78,3, 0xe60b88,3, 0xe60ba0,3, 0xe60bb0,1, 0xe60bc0,3, 0xe60bd0,1, 0xe60be0,3, 0xe60bf0,1, 0xe60c00,3, 0xe60c10,1, 0xe60c20,3, 0xe60c30,1, 0xe60c40,3, 0xe60c50,1, 0xe60c80,6, 0xe60ca0,6, 0xe60cc0,1, 0xe60d00,1, 0xe60d10,3, 0xe60d20,1, 0xe60d30,3, 0xe60d40,1, 0xe60d60,5, 0xe60d80,1, 0xe60d90,3, 0xe60da0,1, 0xe60dc0,5, 0xe60de0,1, 0xe60df0,3, 0xe60e00,1, 0xe60e10,3, 0xe60e20,5, 0xe60e40,2, 0xe60e50,3, 0xe60e60,5, 0xe60e80,2, 0xe60e90,3, 0xe60ea0,3, 0xe60eb0,3, 0xe60ec0,3, 0xe60ed0,3, 0xe60ee0,5, 0xe60f00,3, 0xe60f20,5, 0xe60f40,5, 0xe60f60,3, 0xe60f70,3, 0xe60f80,5, 0xe60fa0,3, 0xe60fb0,3, 0xe60fc0,3, 0xe60fd0,3, 0xe60fe0,3, 0xe60ff0,3, 0xe61000,6, 0xe61020,3, 0xe61040,3, 0xe61050,3, 0xe61060,1, 0xe61080,3, 0xe61090,3, 0xe610a0,1, 0xe610c0,3, 0xe610e0,5, 0xe61100,11, 0xe61130,3, 0xe61140,3, 0xe61150,3, 0xe61160,5, 0xe61180,5, 0xe611a0,3, 0xe611b0,3, 0xe611c0,3, 0xe611d0,3, 0xe611e0,2, 0xe611f0,3, 0xe61200,7, 0xe61220,3, 0xe61230,2, 0xe61240,3, 0xe61250,3, 0xe61260,2, 0xe61400,15, 0xe61440,4, 0xe61460,17, 0xe614c0,6, 0xe614e0,4, 0xe614f4,11, 0xe61524,54, 0xe61604,1, 0xe6160c,1, 0xe61614,1, 0xe6161c,15, 0xe61660,6, 0xe61680,4, 0xe616a0,5, 0xe616c0,4, 0xe616e0,5, 0xe61700,4, 0xe61720,5, 0xe61740,4, 0xe61760,5, 0xe61780,4, 0xe617c0,15, 0xe61800,4, 0xe61880,19, 0xe61900,1, 0xe61980,24, 0xe61a00,24, 0xe61a80,24, 0xe61b00,24, 0xe61b80,1, 0xe61b88,2, 0xe62000,451, 0xe62740,169, 0xe63000,260, 0xe63800,12, 0xe63a04,1, 0xe63a0c,8, 0xe63a44,1, 0xe63a50,7, 0xe63a84,1, 0xe63a94,27, 0xe63b04,3, 0xe63b14,3, 0xe63b24,3, 0xe63b34,21, 0xe63ba0,5, 0xe63bc0,1, 0xe63c04,1, 0xe63c14,3, 0xe63c24,3, 0xe63c34,3, 0xe63c44,1, 0xe63c60,8, 0xe63c84,1, 0xe63ca0,8, 0xe63cc4,1, 0xe63ce0,11, 0xe63e04,1, 0xe63e0c,2, 0xe63e18,1, 0xe63e20,3, 0xe63e30,3, 0xe63e40,1, 0xe63e48,3, 0xe63e58,3, 0xe63e70,4, 0xe64000,44, 0xe64100,19, 0xe64180,22, 0xe64200,27, 0xe64280,27, 0xe64300,11, 0xe64380,17, 0xe64400,27, 0xe64480,2, 0xe644a0,6, 0xe644c0,3, 0xe644d0,4, 0xe64500,35, 0xe64600,34, 0xe64700,26, 0xe64780,23, 0xe64800,15, 0xe64848,4, 0xe68000,20, 0xe68100,49, 0xe68200,20, 0xe68300,49, 0xe68400,20, 0xe68500,49, 0xe68600,20, 0xe68700,49, 0xe68800,8, 0xe69000,20, 0xe69100,49, 0xe69200,20, 0xe69300,49, 0xe69400,20, 0xe69500,49, 0xe69600,20, 0xe69700,49, 0xe69800,8, 0xe6a000,15, 0xe6a040,3, 0xe6a050,1, 0xe6a058,4, 0xe6a080,10, 0xe6a0b0,3, 0xe6a0c4,7, 0xe6a100,44, 0xe6a200,5, 0xe6a218,5, 0xe6a280,20, 0xe6a300,1, 0xe6a800,52, 0xe6a8e0,5, 0xe6a900,5, 0xe6aa00,52, 0xe6aae0,5, 0xe6ab00,5, 0xe6ac00,18, 0xe6ac50,10, 0xe6ad00,36, 0xe6ada0,5, 0xe6adc0,5, 0xe6b000,20, 0xe6b080,20, 0xe6b100,20, 0xe6b180,20, 0xe6b200,10, 0xe6b400,10, 0xe6b440,10, 0xe6b480,10, 0xe6b4c0,10, 0xe6b500,1, 0xe6b600,1, 0xe6b608,32, 0xe6b6a0,6, 0xe6b6c0,6, 0xe6b6e0,6, 0xe6b700,6, 0xe6b720,6, 0xe6b740,6, 0xe6b760,6, 0xe6b780,6, 0xe6b800,76, 0xe6ba00,76, 0xe6bc00,33, 0xe6c000,76, 0xe6c200,76, 0xe6c400,33, 0xe6c800,4, 0xe6ca00,72, 0xe6cc00,17, 0xe6cc48,4, 0xe6ce00,27, 0xe6ce80,4, 0xe6cec0,25, 0xe6cf40,6, 0xe6cf60,4, 0xe6cf74,11, 0xe6cfa4,16, 0xe6d000,12, 0xe6d040,2, 0xe6d050,1, 0xe6d058,5, 0xe6d070,3, 0xe80000,23, 0xe80080,23, 0xe80100,23, 0xe80180,23, 0xe80200,13, 0xe80404,1, 0xe8047c,33, 0xe80504,1, 0xe80514,3, 0xe80524,1, 0xe8052c,1, 0xe80600,96, 0xe80784,1, 0xe80790,4, 0xe81000,76, 0xe82000,582, 0xe83000,13, 0xe83400,27, 0xe83480,4, 0xe834c0,25, 0xe83540,6, 0xe83560,4, 0xe83574,3, 0xe83600,8, 0xe83624,59, 0xe83800,4, 0xe83880,36, 0xe83980,17, 0xe83a00,6, 0xe83a20,165, 0xe83d00,12, 0xe83d40,2, 0xe83d50,3, 0xe83d60,1, 0xe83d80,12, 0xe83dc0,2, 0xe83dd0,3, 0xe83de0,1, 0xe83e00,12, 0xe83e40,2, 0xe83e50,3, 0xe83e60,1, 0xe83e80,12, 0xe83ec0,2, 0xe83ed0,3, 0xe83ee0,1, 0xe83f00,9, 0xe83f80,3, 0xe83f90,5, 0xe83fa8,5, 0xe83fc0,5, 0xe83fd8,2, 0xe84000,1, 0xe84010,6, 0xe84030,78, 0xe84180,18, 0xe88004,6, 0xe89000,650, 0xe8a000,650, 0xe8b000,2, 0xe8b040,9, 0xe8b080,7, 0xe8c000,34, 0xe8c090,9, 0xe8c0b8,11, 0xe90000,11, 0xe90040,11, 0xe90080,11, 0xe900c0,11, 0xe90104,1, 0xe9011c,10, 0xe90148,2, 0xe90154,1, 0xe9015c,24, 0xe901c0,3, 0xe901d0,3, 0xe901e0,3, 0xe901f0,33, 0xe90280,3, 0xe90290,3, 0xe902a0,3, 0xe902b0,3, 0xe902c0,5, 0xe902d8,8, 0xe90400,145, 0xe90800,4, 0xe90880,25, 0xe90900,5, 0xe90920,1, 0xe91000,11, 0xe91040,11, 0xe91080,11, 0xe910c0,11, 0xe91100,11, 0xe91140,11, 0xe91180,11, 0xe911c0,11, 0xe91200,1, 0xe91208,19, 0xe91260,2, 0xe9126c,3, 0xe91280,5, 0xe91400,3, 0xe91410,30, 0xe914a4,1, 0xe914b4,23, 0xe91520,6, 0xe91540,3, 0xe91560,2, 0xe9156c,2, 0xe91580,2, 0xe915c0,3, 0xe915d0,3, 0xe915e0,1, 0xe91600,1, 0xe91800,1, 0xe91814,12, 0xe91848,5, 0xe91860,7, 0xe91880,5, 0xe91898,5, 0xe918b0,5, 0xe918c8,7, 0xe918e8,7, 0xe91908,5, 0xe91920,11, 0xe91950,55, 0xe91a40,2, 0xe91a4c,2, 0xe91a60,2, 0xe91a80,6, 0xe91ac0,3, 0xe91ad0,3, 0xe91ae0,1, 0xe91b00,1, 0xe92000,2, 0xe92010,47, 0xe920e0,6, 0xe92100,6, 0xe92120,2, 0xe9212c,3, 0xe92140,6, 0xe92200,5, 0xe92224,1, 0xe92234,3, 0xe92280,20, 0xe92404,1, 0xe924e4,71, 0xe92604,1, 0xe92670,38, 0xe92800,27, 0xe92880,4, 0xe928c0,25, 0xe92940,6, 0xe92960,4, 0xe92974,11, 0xe929a4,7, 0xe92a00,12, 0xe92a40,2, 0xe92a50,1, 0xe92a58,5, 0xe92a70,5, 0xea0000,19, 0xea0080,19, 0xea0100,19, 0xea0180,19, 0xea0200,12, 0xea0280,1, 0xea02a0,6, 0xea02c0,6, 0xea02e0,6, 0xea0300,6, 0xea0320,6, 0xea0340,6, 0xea0360,6, 0xea0380,9, 0xea03c0,13, 0xea0400,3, 0xea0410,159, 0xea0690,16, 0xea06e0,5, 0xea0700,5, 0xea0720,5, 0xea0740,5, 0xea0760,5, 0xea0780,5, 0xea07a0,5, 0xea07c0,5, 0xea07e0,6, 0xea0800,6, 0xea0820,6, 0xea0840,6, 0xea0860,6, 0xea0880,6, 0xea08a0,6, 0xea08c0,6, 0xea08e0,6, 0xea0900,6, 0xea0920,6, 0xea0940,6, 0xea0960,6, 0xea0980,6, 0xea09a0,6, 0xea09c0,6, 0xea0a00,22, 0xea0a80,1, 0xea0a88,3, 0xea0aa0,5, 0xea0ac0,1, 0xea0ad0,3, 0xea0ae0,1, 0xea0af0,3, 0xea0b00,1, 0xea0b10,3, 0xea0b20,1, 0xea0b30,3, 0xea0b40,1, 0xea0b48,3, 0xea0b58,3, 0xea0b68,3, 0xea0b78,3, 0xea0b88,3, 0xea0ba0,3, 0xea0bb0,1, 0xea0bc0,3, 0xea0bd0,1, 0xea0be0,3, 0xea0bf0,1, 0xea0c00,3, 0xea0c10,1, 0xea0c20,3, 0xea0c30,1, 0xea0c40,3, 0xea0c50,1, 0xea0c80,6, 0xea0ca0,6, 0xea0cc0,1, 0xea0d00,1, 0xea0d10,3, 0xea0d20,1, 0xea0d30,3, 0xea0d40,1, 0xea0d60,5, 0xea0d80,1, 0xea0d90,3, 0xea0da0,1, 0xea0dc0,5, 0xea0de0,1, 0xea0df0,3, 0xea0e00,1, 0xea0e10,3, 0xea0e20,5, 0xea0e40,2, 0xea0e50,3, 0xea0e60,5, 0xea0e80,2, 0xea0e90,3, 0xea0ea0,3, 0xea0eb0,3, 0xea0ec0,3, 0xea0ed0,3, 0xea0ee0,5, 0xea0f00,3, 0xea0f20,5, 0xea0f40,5, 0xea0f60,3, 0xea0f70,3, 0xea0f80,5, 0xea0fa0,3, 0xea0fb0,3, 0xea0fc0,3, 0xea0fd0,3, 0xea0fe0,3, 0xea0ff0,3, 0xea1000,6, 0xea1020,3, 0xea1040,3, 0xea1050,3, 0xea1060,1, 0xea1080,3, 0xea1090,3, 0xea10a0,1, 0xea10c0,3, 0xea10e0,5, 0xea1100,11, 0xea1130,3, 0xea1140,3, 0xea1150,3, 0xea1160,5, 0xea1180,5, 0xea11a0,3, 0xea11b0,3, 0xea11c0,3, 0xea11d0,3, 0xea11e0,2, 0xea11f0,3, 0xea1200,7, 0xea1220,3, 0xea1230,2, 0xea1240,3, 0xea1250,3, 0xea1260,2, 0xea1400,15, 0xea1440,4, 0xea1460,17, 0xea14c0,6, 0xea14e0,4, 0xea14f4,11, 0xea1524,54, 0xea1604,1, 0xea160c,1, 0xea1614,1, 0xea161c,15, 0xea1660,6, 0xea1680,4, 0xea16a0,5, 0xea16c0,4, 0xea16e0,5, 0xea1700,4, 0xea1720,5, 0xea1740,4, 0xea1760,5, 0xea1780,4, 0xea17c0,15, 0xea1800,4, 0xea1880,19, 0xea1900,1, 0xea1980,24, 0xea1a00,24, 0xea1a80,24, 0xea1b00,24, 0xea1b80,1, 0xea1b88,2, 0xea2000,451, 0xea2740,169, 0xea3000,260, 0xea3800,12, 0xea3a04,1, 0xea3a0c,8, 0xea3a44,1, 0xea3a50,7, 0xea3a84,1, 0xea3a94,27, 0xea3b04,3, 0xea3b14,3, 0xea3b24,3, 0xea3b34,21, 0xea3ba0,5, 0xea3bc0,1, 0xea3c04,1, 0xea3c14,3, 0xea3c24,3, 0xea3c34,3, 0xea3c44,1, 0xea3c60,8, 0xea3c84,1, 0xea3ca0,8, 0xea3cc4,1, 0xea3ce0,11, 0xea3e04,1, 0xea3e0c,2, 0xea3e18,1, 0xea3e20,3, 0xea3e30,3, 0xea3e40,1, 0xea3e48,3, 0xea3e58,3, 0xea3e70,4, 0xea4000,44, 0xea4100,19, 0xea4180,22, 0xea4200,27, 0xea4280,27, 0xea4300,11, 0xea4380,17, 0xea4400,27, 0xea4480,2, 0xea44a0,6, 0xea44c0,3, 0xea44d0,4, 0xea4500,35, 0xea4600,34, 0xea4700,26, 0xea4780,23, 0xea4800,15, 0xea4848,4, 0xea8000,20, 0xea8100,49, 0xea8200,20, 0xea8300,49, 0xea8400,20, 0xea8500,49, 0xea8600,20, 0xea8700,49, 0xea8800,8, 0xea9000,20, 0xea9100,49, 0xea9200,20, 0xea9300,49, 0xea9400,20, 0xea9500,49, 0xea9600,20, 0xea9700,49, 0xea9800,8, 0xeaa000,15, 0xeaa040,3, 0xeaa050,1, 0xeaa058,4, 0xeaa080,10, 0xeaa0b0,3, 0xeaa0c4,7, 0xeaa100,44, 0xeaa200,5, 0xeaa218,5, 0xeaa280,20, 0xeaa300,1, 0xeaa800,52, 0xeaa8e0,5, 0xeaa900,5, 0xeaaa00,52, 0xeaaae0,5, 0xeaab00,5, 0xeaac00,18, 0xeaac50,10, 0xeaad00,36, 0xeaada0,5, 0xeaadc0,5, 0xeab000,20, 0xeab080,20, 0xeab100,20, 0xeab180,20, 0xeab200,10, 0xeab400,10, 0xeab440,10, 0xeab480,10, 0xeab4c0,10, 0xeab500,1, 0xeab600,1, 0xeab608,32, 0xeab6a0,6, 0xeab6c0,6, 0xeab6e0,6, 0xeab700,6, 0xeab720,6, 0xeab740,6, 0xeab760,6, 0xeab780,6, 0xeab800,76, 0xeaba00,76, 0xeabc00,33, 0xeac000,76, 0xeac200,76, 0xeac400,33, 0xeac800,4, 0xeaca00,72, 0xeacc00,17, 0xeacc48,4, 0xeace00,27, 0xeace80,4, 0xeacec0,25, 0xeacf40,6, 0xeacf60,4, 0xeacf74,11, 0xeacfa4,16, 0xead000,12, 0xead040,2, 0xead050,1, 0xead058,5, 0xead070,3, 0xec0000,23, 0xec0080,23, 0xec0100,23, 0xec0180,23, 0xec0200,13, 0xec0404,1, 0xec047c,33, 0xec0504,1, 0xec0514,3, 0xec0524,1, 0xec052c,1, 0xec0600,96, 0xec0784,1, 0xec0790,4, 0xec1000,76, 0xec2000,582, 0xec3000,13, 0xec3400,27, 0xec3480,4, 0xec34c0,25, 0xec3540,6, 0xec3560,4, 0xec3574,3, 0xec3600,8, 0xec3624,59, 0xec3800,4, 0xec3880,36, 0xec3980,17, 0xec3a00,6, 0xec3a20,165, 0xec3d00,12, 0xec3d40,2, 0xec3d50,3, 0xec3d60,1, 0xec3d80,12, 0xec3dc0,2, 0xec3dd0,3, 0xec3de0,1, 0xec3e00,12, 0xec3e40,2, 0xec3e50,3, 0xec3e60,1, 0xec3e80,12, 0xec3ec0,2, 0xec3ed0,3, 0xec3ee0,1, 0xec3f00,9, 0xec3f80,3, 0xec3f90,5, 0xec3fa8,5, 0xec3fc0,5, 0xec3fd8,2, 0xec4000,1, 0xec4010,6, 0xec4030,78, 0xec4180,18, 0xec8004,6, 0xec9000,650, 0xeca000,650, 0xecb000,2, 0xecb040,9, 0xecb080,7, 0xecc000,34, 0xecc090,9, 0xecc0b8,11, 0xed0000,11, 0xed0040,11, 0xed0080,11, 0xed00c0,11, 0xed0104,1, 0xed011c,10, 0xed0148,2, 0xed0154,1, 0xed015c,24, 0xed01c0,3, 0xed01d0,3, 0xed01e0,3, 0xed01f0,33, 0xed0280,3, 0xed0290,3, 0xed02a0,3, 0xed02b0,3, 0xed02c0,5, 0xed02d8,8, 0xed0400,145, 0xed0800,4, 0xed0880,25, 0xed0900,5, 0xed0920,1, 0xed1000,11, 0xed1040,11, 0xed1080,11, 0xed10c0,11, 0xed1100,11, 0xed1140,11, 0xed1180,11, 0xed11c0,11, 0xed1200,1, 0xed1208,19, 0xed1260,2, 0xed126c,3, 0xed1280,5, 0xed1400,3, 0xed1410,30, 0xed14a4,1, 0xed14b4,23, 0xed1520,6, 0xed1540,3, 0xed1560,2, 0xed156c,2, 0xed1580,2, 0xed15c0,3, 0xed15d0,3, 0xed15e0,1, 0xed1600,1, 0xed1800,1, 0xed1814,12, 0xed1848,5, 0xed1860,7, 0xed1880,5, 0xed1898,5, 0xed18b0,5, 0xed18c8,7, 0xed18e8,7, 0xed1908,5, 0xed1920,11, 0xed1950,55, 0xed1a40,2, 0xed1a4c,2, 0xed1a60,2, 0xed1a80,6, 0xed1ac0,3, 0xed1ad0,3, 0xed1ae0,1, 0xed1b00,1, 0xed2000,2, 0xed2010,47, 0xed20e0,6, 0xed2100,6, 0xed2120,2, 0xed212c,3, 0xed2140,6, 0xed2200,5, 0xed2224,1, 0xed2234,3, 0xed2280,20, 0xed2404,1, 0xed24e4,71, 0xed2604,1, 0xed2670,38, 0xed2800,27, 0xed2880,4, 0xed28c0,25, 0xed2940,6, 0xed2960,4, 0xed2974,11, 0xed29a4,7, 0xed2a00,12, 0xed2a40,2, 0xed2a50,1, 0xed2a58,5, 0xed2a70,5, 0xee0000,19, 0xee0080,19, 0xee0100,19, 0xee0180,19, 0xee0200,12, 0xee0280,1, 0xee02a0,6, 0xee02c0,6, 0xee02e0,6, 0xee0300,6, 0xee0320,6, 0xee0340,6, 0xee0360,6, 0xee0380,9, 0xee03c0,13, 0xee0400,3, 0xee0410,159, 0xee0690,16, 0xee06e0,5, 0xee0700,5, 0xee0720,5, 0xee0740,5, 0xee0760,5, 0xee0780,5, 0xee07a0,5, 0xee07c0,5, 0xee07e0,6, 0xee0800,6, 0xee0820,6, 0xee0840,6, 0xee0860,6, 0xee0880,6, 0xee08a0,6, 0xee08c0,6, 0xee08e0,6, 0xee0900,6, 0xee0920,6, 0xee0940,6, 0xee0960,6, 0xee0980,6, 0xee09a0,6, 0xee09c0,6, 0xee0a00,22, 0xee0a80,1, 0xee0a88,3, 0xee0aa0,5, 0xee0ac0,1, 0xee0ad0,3, 0xee0ae0,1, 0xee0af0,3, 0xee0b00,1, 0xee0b10,3, 0xee0b20,1, 0xee0b30,3, 0xee0b40,1, 0xee0b48,3, 0xee0b58,3, 0xee0b68,3, 0xee0b78,3, 0xee0b88,3, 0xee0ba0,3, 0xee0bb0,1, 0xee0bc0,3, 0xee0bd0,1, 0xee0be0,3, 0xee0bf0,1, 0xee0c00,3, 0xee0c10,1, 0xee0c20,3, 0xee0c30,1, 0xee0c40,3, 0xee0c50,1, 0xee0c80,6, 0xee0ca0,6, 0xee0cc0,1, 0xee0d00,1, 0xee0d10,3, 0xee0d20,1, 0xee0d30,3, 0xee0d40,1, 0xee0d60,5, 0xee0d80,1, 0xee0d90,3, 0xee0da0,1, 0xee0dc0,5, 0xee0de0,1, 0xee0df0,3, 0xee0e00,1, 0xee0e10,3, 0xee0e20,5, 0xee0e40,2, 0xee0e50,3, 0xee0e60,5, 0xee0e80,2, 0xee0e90,3, 0xee0ea0,3, 0xee0eb0,3, 0xee0ec0,3, 0xee0ed0,3, 0xee0ee0,5, 0xee0f00,3, 0xee0f20,5, 0xee0f40,5, 0xee0f60,3, 0xee0f70,3, 0xee0f80,5, 0xee0fa0,3, 0xee0fb0,3, 0xee0fc0,3, 0xee0fd0,3, 0xee0fe0,3, 0xee0ff0,3, 0xee1000,6, 0xee1020,3, 0xee1040,3, 0xee1050,3, 0xee1060,1, 0xee1080,3, 0xee1090,3, 0xee10a0,1, 0xee10c0,3, 0xee10e0,5, 0xee1100,11, 0xee1130,3, 0xee1140,3, 0xee1150,3, 0xee1160,5, 0xee1180,5, 0xee11a0,3, 0xee11b0,3, 0xee11c0,3, 0xee11d0,3, 0xee11e0,2, 0xee11f0,3, 0xee1200,7, 0xee1220,3, 0xee1230,2, 0xee1240,3, 0xee1250,3, 0xee1260,2, 0xee1400,15, 0xee1440,4, 0xee1460,17, 0xee14c0,6, 0xee14e0,4, 0xee14f4,11, 0xee1524,54, 0xee1604,1, 0xee160c,1, 0xee1614,1, 0xee161c,15, 0xee1660,6, 0xee1680,4, 0xee16a0,5, 0xee16c0,4, 0xee16e0,5, 0xee1700,4, 0xee1720,5, 0xee1740,4, 0xee1760,5, 0xee1780,4, 0xee17c0,15, 0xee1800,4, 0xee1880,19, 0xee1900,1, 0xee1980,24, 0xee1a00,24, 0xee1a80,24, 0xee1b00,24, 0xee1b80,1, 0xee1b88,2, 0xee2000,451, 0xee2740,169, 0xee3000,260, 0xee3800,12, 0xee3a04,1, 0xee3a0c,8, 0xee3a44,1, 0xee3a50,7, 0xee3a84,1, 0xee3a94,27, 0xee3b04,3, 0xee3b14,3, 0xee3b24,3, 0xee3b34,21, 0xee3ba0,5, 0xee3bc0,1, 0xee3c04,1, 0xee3c14,3, 0xee3c24,3, 0xee3c34,3, 0xee3c44,1, 0xee3c60,8, 0xee3c84,1, 0xee3ca0,8, 0xee3cc4,1, 0xee3ce0,11, 0xee3e04,1, 0xee3e0c,2, 0xee3e18,1, 0xee3e20,3, 0xee3e30,3, 0xee3e40,1, 0xee3e48,3, 0xee3e58,3, 0xee3e70,4, 0xee4000,44, 0xee4100,19, 0xee4180,22, 0xee4200,27, 0xee4280,27, 0xee4300,11, 0xee4380,17, 0xee4400,27, 0xee4480,2, 0xee44a0,6, 0xee44c0,3, 0xee44d0,4, 0xee4500,35, 0xee4600,34, 0xee4700,26, 0xee4780,23, 0xee4800,15, 0xee4848,4, 0xee8000,20, 0xee8100,49, 0xee8200,20, 0xee8300,49, 0xee8400,20, 0xee8500,49, 0xee8600,20, 0xee8700,49, 0xee8800,8, 0xee9000,20, 0xee9100,49, 0xee9200,20, 0xee9300,49, 0xee9400,20, 0xee9500,49, 0xee9600,20, 0xee9700,49, 0xee9800,8, 0xeea000,15, 0xeea040,3, 0xeea050,1, 0xeea058,4, 0xeea080,10, 0xeea0b0,3, 0xeea0c4,7, 0xeea100,44, 0xeea200,5, 0xeea218,5, 0xeea280,20, 0xeea300,1, 0xeea800,52, 0xeea8e0,5, 0xeea900,5, 0xeeaa00,52, 0xeeaae0,5, 0xeeab00,5, 0xeeac00,18, 0xeeac50,10, 0xeead00,36, 0xeeada0,5, 0xeeadc0,5, 0xeeb000,20, 0xeeb080,20, 0xeeb100,20, 0xeeb180,20, 0xeeb200,10, 0xeeb400,10, 0xeeb440,10, 0xeeb480,10, 0xeeb4c0,10, 0xeeb500,1, 0xeeb600,1, 0xeeb608,32, 0xeeb6a0,6, 0xeeb6c0,6, 0xeeb6e0,6, 0xeeb700,6, 0xeeb720,6, 0xeeb740,6, 0xeeb760,6, 0xeeb780,6, 0xeeb800,76, 0xeeba00,76, 0xeebc00,33, 0xeec000,76, 0xeec200,76, 0xeec400,33, 0xeec800,4, 0xeeca00,72, 0xeecc00,17, 0xeecc48,4, 0xeece00,27, 0xeece80,4, 0xeecec0,25, 0xeecf40,6, 0xeecf60,4, 0xeecf74,11, 0xeecfa4,16, 0xeed000,12, 0xeed040,2, 0xeed050,1, 0xeed058,5, 0xeed070,3, 0xf00000,23, 0xf00080,23, 0xf00100,23, 0xf00180,23, 0xf00200,13, 0xf00404,1, 0xf0047c,33, 0xf00504,1, 0xf00514,3, 0xf00524,1, 0xf0052c,1, 0xf00600,96, 0xf00784,1, 0xf00790,4, 0xf01000,76, 0xf02000,582, 0xf03000,13, 0xf03400,27, 0xf03480,4, 0xf034c0,25, 0xf03540,6, 0xf03560,4, 0xf03574,3, 0xf03600,8, 0xf03624,59, 0xf03800,4, 0xf03880,36, 0xf03980,17, 0xf03a00,6, 0xf03a20,165, 0xf03d00,12, 0xf03d40,2, 0xf03d50,3, 0xf03d60,1, 0xf03d80,12, 0xf03dc0,2, 0xf03dd0,3, 0xf03de0,1, 0xf03e00,12, 0xf03e40,2, 0xf03e50,3, 0xf03e60,1, 0xf03e80,12, 0xf03ec0,2, 0xf03ed0,3, 0xf03ee0,1, 0xf03f00,9, 0xf03f80,3, 0xf03f90,5, 0xf03fa8,5, 0xf03fc0,5, 0xf03fd8,2, 0xf04000,1, 0xf04010,6, 0xf04030,78, 0xf04180,18, 0xf08004,6, 0xf09000,650, 0xf0a000,650, 0xf0b000,2, 0xf0b040,9, 0xf0b080,7, 0xf0c000,34, 0xf0c090,9, 0xf0c0b8,11, 0xf10000,11, 0xf10040,11, 0xf10080,11, 0xf100c0,11, 0xf10104,1, 0xf1011c,10, 0xf10148,2, 0xf10154,1, 0xf1015c,24, 0xf101c0,3, 0xf101d0,3, 0xf101e0,3, 0xf101f0,33, 0xf10280,3, 0xf10290,3, 0xf102a0,3, 0xf102b0,3, 0xf102c0,5, 0xf102d8,8, 0xf10400,145, 0xf10800,4, 0xf10880,25, 0xf10900,5, 0xf10920,1, 0xf11000,11, 0xf11040,11, 0xf11080,11, 0xf110c0,11, 0xf11100,11, 0xf11140,11, 0xf11180,11, 0xf111c0,11, 0xf11200,1, 0xf11208,19, 0xf11260,2, 0xf1126c,3, 0xf11280,5, 0xf11400,3, 0xf11410,30, 0xf114a4,1, 0xf114b4,23, 0xf11520,6, 0xf11540,3, 0xf11560,2, 0xf1156c,2, 0xf11580,2, 0xf115c0,3, 0xf115d0,3, 0xf115e0,1, 0xf11600,1, 0xf11800,1, 0xf11814,12, 0xf11848,5, 0xf11860,7, 0xf11880,5, 0xf11898,5, 0xf118b0,5, 0xf118c8,7, 0xf118e8,7, 0xf11908,5, 0xf11920,11, 0xf11950,55, 0xf11a40,2, 0xf11a4c,2, 0xf11a60,2, 0xf11a80,6, 0xf11ac0,3, 0xf11ad0,3, 0xf11ae0,1, 0xf11b00,1, 0xf12000,2, 0xf12010,47, 0xf120e0,6, 0xf12100,6, 0xf12120,2, 0xf1212c,3, 0xf12140,6, 0xf12200,5, 0xf12224,1, 0xf12234,3, 0xf12280,20, 0xf12404,1, 0xf124e4,71, 0xf12604,1, 0xf12670,38, 0xf12800,27, 0xf12880,4, 0xf128c0,25, 0xf12940,6, 0xf12960,4, 0xf12974,11, 0xf129a4,7, 0xf12a00,12, 0xf12a40,2, 0xf12a50,1, 0xf12a58,5, 0xf12a70,5, 0xf20000,19, 0xf20080,19, 0xf20100,19, 0xf20180,19, 0xf20200,12, 0xf20280,1, 0xf202a0,6, 0xf202c0,6, 0xf202e0,6, 0xf20300,6, 0xf20320,6, 0xf20340,6, 0xf20360,6, 0xf20380,9, 0xf203c0,13, 0xf20400,3, 0xf20410,159, 0xf20690,16, 0xf206e0,5, 0xf20700,5, 0xf20720,5, 0xf20740,5, 0xf20760,5, 0xf20780,5, 0xf207a0,5, 0xf207c0,5, 0xf207e0,6, 0xf20800,6, 0xf20820,6, 0xf20840,6, 0xf20860,6, 0xf20880,6, 0xf208a0,6, 0xf208c0,6, 0xf208e0,6, 0xf20900,6, 0xf20920,6, 0xf20940,6, 0xf20960,6, 0xf20980,6, 0xf209a0,6, 0xf209c0,6, 0xf20a00,22, 0xf20a80,1, 0xf20a88,3, 0xf20aa0,5, 0xf20ac0,1, 0xf20ad0,3, 0xf20ae0,1, 0xf20af0,3, 0xf20b00,1, 0xf20b10,3, 0xf20b20,1, 0xf20b30,3, 0xf20b40,1, 0xf20b48,3, 0xf20b58,3, 0xf20b68,3, 0xf20b78,3, 0xf20b88,3, 0xf20ba0,3, 0xf20bb0,1, 0xf20bc0,3, 0xf20bd0,1, 0xf20be0,3, 0xf20bf0,1, 0xf20c00,3, 0xf20c10,1, 0xf20c20,3, 0xf20c30,1, 0xf20c40,3, 0xf20c50,1, 0xf20c80,6, 0xf20ca0,6, 0xf20cc0,1, 0xf20d00,1, 0xf20d10,3, 0xf20d20,1, 0xf20d30,3, 0xf20d40,1, 0xf20d60,5, 0xf20d80,1, 0xf20d90,3, 0xf20da0,1, 0xf20dc0,5, 0xf20de0,1, 0xf20df0,3, 0xf20e00,1, 0xf20e10,3, 0xf20e20,5, 0xf20e40,2, 0xf20e50,3, 0xf20e60,5, 0xf20e80,2, 0xf20e90,3, 0xf20ea0,3, 0xf20eb0,3, 0xf20ec0,3, 0xf20ed0,3, 0xf20ee0,5, 0xf20f00,3, 0xf20f20,5, 0xf20f40,5, 0xf20f60,3, 0xf20f70,3, 0xf20f80,5, 0xf20fa0,3, 0xf20fb0,3, 0xf20fc0,3, 0xf20fd0,3, 0xf20fe0,3, 0xf20ff0,3, 0xf21000,6, 0xf21020,3, 0xf21040,3, 0xf21050,3, 0xf21060,1, 0xf21080,3, 0xf21090,3, 0xf210a0,1, 0xf210c0,3, 0xf210e0,5, 0xf21100,11, 0xf21130,3, 0xf21140,3, 0xf21150,3, 0xf21160,5, 0xf21180,5, 0xf211a0,3, 0xf211b0,3, 0xf211c0,3, 0xf211d0,3, 0xf211e0,2, 0xf211f0,3, 0xf21200,7, 0xf21220,3, 0xf21230,2, 0xf21240,3, 0xf21250,3, 0xf21260,2, 0xf21400,15, 0xf21440,4, 0xf21460,17, 0xf214c0,6, 0xf214e0,4, 0xf214f4,11, 0xf21524,54, 0xf21604,1, 0xf2160c,1, 0xf21614,1, 0xf2161c,15, 0xf21660,6, 0xf21680,4, 0xf216a0,5, 0xf216c0,4, 0xf216e0,5, 0xf21700,4, 0xf21720,5, 0xf21740,4, 0xf21760,5, 0xf21780,4, 0xf217c0,15, 0xf21800,4, 0xf21880,19, 0xf21900,1, 0xf21980,24, 0xf21a00,24, 0xf21a80,24, 0xf21b00,24, 0xf21b80,1, 0xf21b88,2, 0xf22000,451, 0xf22740,169, 0xf23000,260, 0xf23800,12, 0xf23a04,1, 0xf23a0c,8, 0xf23a44,1, 0xf23a50,7, 0xf23a84,1, 0xf23a94,27, 0xf23b04,3, 0xf23b14,3, 0xf23b24,3, 0xf23b34,21, 0xf23ba0,5, 0xf23bc0,1, 0xf23c04,1, 0xf23c14,3, 0xf23c24,3, 0xf23c34,3, 0xf23c44,1, 0xf23c60,8, 0xf23c84,1, 0xf23ca0,8, 0xf23cc4,1, 0xf23ce0,11, 0xf23e04,1, 0xf23e0c,2, 0xf23e18,1, 0xf23e20,3, 0xf23e30,3, 0xf23e40,1, 0xf23e48,3, 0xf23e58,3, 0xf23e70,4, 0xf24000,44, 0xf24100,19, 0xf24180,22, 0xf24200,27, 0xf24280,27, 0xf24300,11, 0xf24380,17, 0xf24400,27, 0xf24480,2, 0xf244a0,6, 0xf244c0,3, 0xf244d0,4, 0xf24500,35, 0xf24600,34, 0xf24700,26, 0xf24780,23, 0xf24800,15, 0xf24848,4, 0xf28000,20, 0xf28100,49, 0xf28200,20, 0xf28300,49, 0xf28400,20, 0xf28500,49, 0xf28600,20, 0xf28700,49, 0xf28800,8, 0xf29000,20, 0xf29100,49, 0xf29200,20, 0xf29300,49, 0xf29400,20, 0xf29500,49, 0xf29600,20, 0xf29700,49, 0xf29800,8, 0xf2a000,15, 0xf2a040,3, 0xf2a050,1, 0xf2a058,4, 0xf2a080,10, 0xf2a0b0,3, 0xf2a0c4,7, 0xf2a100,44, 0xf2a200,5, 0xf2a218,5, 0xf2a280,20, 0xf2a300,1, 0xf2a800,52, 0xf2a8e0,5, 0xf2a900,5, 0xf2aa00,52, 0xf2aae0,5, 0xf2ab00,5, 0xf2ac00,18, 0xf2ac50,10, 0xf2ad00,36, 0xf2ada0,5, 0xf2adc0,5, 0xf2b000,20, 0xf2b080,20, 0xf2b100,20, 0xf2b180,20, 0xf2b200,10, 0xf2b400,10, 0xf2b440,10, 0xf2b480,10, 0xf2b4c0,10, 0xf2b500,1, 0xf2b600,1, 0xf2b608,32, 0xf2b6a0,6, 0xf2b6c0,6, 0xf2b6e0,6, 0xf2b700,6, 0xf2b720,6, 0xf2b740,6, 0xf2b760,6, 0xf2b780,6, 0xf2b800,76, 0xf2ba00,76, 0xf2bc00,33, 0xf2c000,76, 0xf2c200,76, 0xf2c400,33, 0xf2c800,4, 0xf2ca00,72, 0xf2cc00,17, 0xf2cc48,4, 0xf2ce00,27, 0xf2ce80,4, 0xf2cec0,25, 0xf2cf40,6, 0xf2cf60,4, 0xf2cf74,11, 0xf2cfa4,16, 0xf2d000,12, 0xf2d040,2, 0xf2d050,1, 0xf2d058,5, 0xf2d070,3, 0xf40000,23, 0xf40080,23, 0xf40100,23, 0xf40180,23, 0xf40200,13, 0xf40404,1, 0xf4047c,33, 0xf40504,1, 0xf40514,3, 0xf40524,1, 0xf4052c,1, 0xf40600,96, 0xf40784,1, 0xf40790,4, 0xf41000,76, 0xf42000,582, 0xf43000,13, 0xf43400,27, 0xf43480,4, 0xf434c0,25, 0xf43540,6, 0xf43560,4, 0xf43574,3, 0xf43600,8, 0xf43624,59, 0xf43800,4, 0xf43880,36, 0xf43980,17, 0xf43a00,6, 0xf43a20,165, 0xf43d00,12, 0xf43d40,2, 0xf43d50,3, 0xf43d60,1, 0xf43d80,12, 0xf43dc0,2, 0xf43dd0,3, 0xf43de0,1, 0xf43e00,12, 0xf43e40,2, 0xf43e50,3, 0xf43e60,1, 0xf43e80,12, 0xf43ec0,2, 0xf43ed0,3, 0xf43ee0,1, 0xf43f00,9, 0xf43f80,3, 0xf43f90,5, 0xf43fa8,5, 0xf43fc0,5, 0xf43fd8,2, 0xf44000,1, 0xf44010,6, 0xf44030,78, 0xf44180,18, 0xf48004,6, 0xf49000,650, 0xf4a000,650, 0xf4b000,2, 0xf4b040,9, 0xf4b080,7, 0xf4c000,34, 0xf4c090,9, 0xf4c0b8,11, 0xf50000,11, 0xf50040,11, 0xf50080,11, 0xf500c0,11, 0xf50104,1, 0xf5011c,10, 0xf50148,2, 0xf50154,1, 0xf5015c,24, 0xf501c0,3, 0xf501d0,3, 0xf501e0,3, 0xf501f0,33, 0xf50280,3, 0xf50290,3, 0xf502a0,3, 0xf502b0,3, 0xf502c0,5, 0xf502d8,8, 0xf50400,145, 0xf50800,4, 0xf50880,25, 0xf50900,5, 0xf50920,1, 0xf51000,11, 0xf51040,11, 0xf51080,11, 0xf510c0,11, 0xf51100,11, 0xf51140,11, 0xf51180,11, 0xf511c0,11, 0xf51200,1, 0xf51208,19, 0xf51260,2, 0xf5126c,3, 0xf51280,5, 0xf51400,3, 0xf51410,30, 0xf514a4,1, 0xf514b4,23, 0xf51520,6, 0xf51540,3, 0xf51560,2, 0xf5156c,2, 0xf51580,2, 0xf515c0,3, 0xf515d0,3, 0xf515e0,1, 0xf51600,1, 0xf51800,1, 0xf51814,12, 0xf51848,5, 0xf51860,7, 0xf51880,5, 0xf51898,5, 0xf518b0,5, 0xf518c8,7, 0xf518e8,7, 0xf51908,5, 0xf51920,11, 0xf51950,55, 0xf51a40,2, 0xf51a4c,2, 0xf51a60,2, 0xf51a80,6, 0xf51ac0,3, 0xf51ad0,3, 0xf51ae0,1, 0xf51b00,1, 0xf52000,2, 0xf52010,47, 0xf520e0,6, 0xf52100,6, 0xf52120,2, 0xf5212c,3, 0xf52140,6, 0xf52200,5, 0xf52224,1, 0xf52234,3, 0xf52280,20, 0xf52404,1, 0xf524e4,71, 0xf52604,1, 0xf52670,38, 0xf52800,27, 0xf52880,4, 0xf528c0,25, 0xf52940,6, 0xf52960,4, 0xf52974,11, 0xf529a4,7, 0xf52a00,12, 0xf52a40,2, 0xf52a50,1, 0xf52a58,5, 0xf52a70,5, 0xf60000,19, 0xf60080,19, 0xf60100,19, 0xf60180,19, 0xf60200,12, 0xf60280,1, 0xf602a0,6, 0xf602c0,6, 0xf602e0,6, 0xf60300,6, 0xf60320,6, 0xf60340,6, 0xf60360,6, 0xf60380,9, 0xf603c0,13, 0xf60400,3, 0xf60410,159, 0xf60690,16, 0xf606e0,5, 0xf60700,5, 0xf60720,5, 0xf60740,5, 0xf60760,5, 0xf60780,5, 0xf607a0,5, 0xf607c0,5, 0xf607e0,6, 0xf60800,6, 0xf60820,6, 0xf60840,6, 0xf60860,6, 0xf60880,6, 0xf608a0,6, 0xf608c0,6, 0xf608e0,6, 0xf60900,6, 0xf60920,6, 0xf60940,6, 0xf60960,6, 0xf60980,6, 0xf609a0,6, 0xf609c0,6, 0xf60a00,22, 0xf60a80,1, 0xf60a88,3, 0xf60aa0,5, 0xf60ac0,1, 0xf60ad0,3, 0xf60ae0,1, 0xf60af0,3, 0xf60b00,1, 0xf60b10,3, 0xf60b20,1, 0xf60b30,3, 0xf60b40,1, 0xf60b48,3, 0xf60b58,3, 0xf60b68,3, 0xf60b78,3, 0xf60b88,3, 0xf60ba0,3, 0xf60bb0,1, 0xf60bc0,3, 0xf60bd0,1, 0xf60be0,3, 0xf60bf0,1, 0xf60c00,3, 0xf60c10,1, 0xf60c20,3, 0xf60c30,1, 0xf60c40,3, 0xf60c50,1, 0xf60c80,6, 0xf60ca0,6, 0xf60cc0,1, 0xf60d00,1, 0xf60d10,3, 0xf60d20,1, 0xf60d30,3, 0xf60d40,1, 0xf60d60,5, 0xf60d80,1, 0xf60d90,3, 0xf60da0,1, 0xf60dc0,5, 0xf60de0,1, 0xf60df0,3, 0xf60e00,1, 0xf60e10,3, 0xf60e20,5, 0xf60e40,2, 0xf60e50,3, 0xf60e60,5, 0xf60e80,2, 0xf60e90,3, 0xf60ea0,3, 0xf60eb0,3, 0xf60ec0,3, 0xf60ed0,3, 0xf60ee0,5, 0xf60f00,3, 0xf60f20,5, 0xf60f40,5, 0xf60f60,3, 0xf60f70,3, 0xf60f80,5, 0xf60fa0,3, 0xf60fb0,3, 0xf60fc0,3, 0xf60fd0,3, 0xf60fe0,3, 0xf60ff0,3, 0xf61000,6, 0xf61020,3, 0xf61040,3, 0xf61050,3, 0xf61060,1, 0xf61080,3, 0xf61090,3, 0xf610a0,1, 0xf610c0,3, 0xf610e0,5, 0xf61100,11, 0xf61130,3, 0xf61140,3, 0xf61150,3, 0xf61160,5, 0xf61180,5, 0xf611a0,3, 0xf611b0,3, 0xf611c0,3, 0xf611d0,3, 0xf611e0,2, 0xf611f0,3, 0xf61200,7, 0xf61220,3, 0xf61230,2, 0xf61240,3, 0xf61250,3, 0xf61260,2, 0xf61400,15, 0xf61440,4, 0xf61460,17, 0xf614c0,6, 0xf614e0,4, 0xf614f4,11, 0xf61524,54, 0xf61604,1, 0xf6160c,1, 0xf61614,1, 0xf6161c,15, 0xf61660,6, 0xf61680,4, 0xf616a0,5, 0xf616c0,4, 0xf616e0,5, 0xf61700,4, 0xf61720,5, 0xf61740,4, 0xf61760,5, 0xf61780,4, 0xf617c0,15, 0xf61800,4, 0xf61880,19, 0xf61900,1, 0xf61980,24, 0xf61a00,24, 0xf61a80,24, 0xf61b00,24, 0xf61b80,1, 0xf61b88,2, 0xf62000,451, 0xf62740,169, 0xf63000,260, 0xf63800,12, 0xf63a04,1, 0xf63a0c,8, 0xf63a44,1, 0xf63a50,7, 0xf63a84,1, 0xf63a94,27, 0xf63b04,3, 0xf63b14,3, 0xf63b24,3, 0xf63b34,21, 0xf63ba0,5, 0xf63bc0,1, 0xf63c04,1, 0xf63c14,3, 0xf63c24,3, 0xf63c34,3, 0xf63c44,1, 0xf63c60,8, 0xf63c84,1, 0xf63ca0,8, 0xf63cc4,1, 0xf63ce0,11, 0xf63e04,1, 0xf63e0c,2, 0xf63e18,1, 0xf63e20,3, 0xf63e30,3, 0xf63e40,1, 0xf63e48,3, 0xf63e58,3, 0xf63e70,4, 0xf64000,44, 0xf64100,19, 0xf64180,22, 0xf64200,27, 0xf64280,27, 0xf64300,11, 0xf64380,17, 0xf64400,27, 0xf64480,2, 0xf644a0,6, 0xf644c0,3, 0xf644d0,4, 0xf64500,35, 0xf64600,34, 0xf64700,26, 0xf64780,23, 0xf64800,15, 0xf64848,4, 0xf68000,20, 0xf68100,49, 0xf68200,20, 0xf68300,49, 0xf68400,20, 0xf68500,49, 0xf68600,20, 0xf68700,49, 0xf68800,8, 0xf69000,20, 0xf69100,49, 0xf69200,20, 0xf69300,49, 0xf69400,20, 0xf69500,49, 0xf69600,20, 0xf69700,49, 0xf69800,8, 0xf6a000,15, 0xf6a040,3, 0xf6a050,1, 0xf6a058,4, 0xf6a080,10, 0xf6a0b0,3, 0xf6a0c4,7, 0xf6a100,44, 0xf6a200,5, 0xf6a218,5, 0xf6a280,20, 0xf6a300,1, 0xf6a800,52, 0xf6a8e0,5, 0xf6a900,5, 0xf6aa00,52, 0xf6aae0,5, 0xf6ab00,5, 0xf6ac00,18, 0xf6ac50,10, 0xf6ad00,36, 0xf6ada0,5, 0xf6adc0,5, 0xf6b000,20, 0xf6b080,20, 0xf6b100,20, 0xf6b180,20, 0xf6b200,10, 0xf6b400,10, 0xf6b440,10, 0xf6b480,10, 0xf6b4c0,10, 0xf6b500,1, 0xf6b600,1, 0xf6b608,32, 0xf6b6a0,6, 0xf6b6c0,6, 0xf6b6e0,6, 0xf6b700,6, 0xf6b720,6, 0xf6b740,6, 0xf6b760,6, 0xf6b780,6, 0xf6b800,76, 0xf6ba00,76, 0xf6bc00,33, 0xf6c000,76, 0xf6c200,76, 0xf6c400,33, 0xf6c800,4, 0xf6ca00,72, 0xf6cc00,17, 0xf6cc48,4, 0xf6ce00,27, 0xf6ce80,4, 0xf6cec0,25, 0xf6cf40,6, 0xf6cf60,4, 0xf6cf74,11, 0xf6cfa4,16, 0xf6d000,12, 0xf6d040,2, 0xf6d050,1, 0xf6d058,5, 0xf6d070,3, 0xf80000,23, 0xf80080,23, 0xf80100,23, 0xf80180,23, 0xf80200,13, 0xf80404,1, 0xf8047c,33, 0xf80504,1, 0xf80514,3, 0xf80524,1, 0xf8052c,1, 0xf80600,96, 0xf80784,1, 0xf80790,4, 0xf81000,76, 0xf82000,582, 0xf83000,13, 0xf83400,27, 0xf83480,4, 0xf834c0,25, 0xf83540,6, 0xf83560,4, 0xf83574,3, 0xf83600,8, 0xf83624,59, 0xf83800,4, 0xf83880,36, 0xf83980,17, 0xf83a00,6, 0xf83a20,165, 0xf83d00,12, 0xf83d40,2, 0xf83d50,3, 0xf83d60,1, 0xf83d80,12, 0xf83dc0,2, 0xf83dd0,3, 0xf83de0,1, 0xf83e00,12, 0xf83e40,2, 0xf83e50,3, 0xf83e60,1, 0xf83e80,12, 0xf83ec0,2, 0xf83ed0,3, 0xf83ee0,1, 0xf83f00,9, 0xf83f80,3, 0xf83f90,5, 0xf83fa8,5, 0xf83fc0,5, 0xf83fd8,2, 0xf84000,1, 0xf84010,6, 0xf84030,78, 0xf84180,18, 0xf88004,6, 0xf89000,650, 0xf8a000,650, 0xf8b000,2, 0xf8b040,9, 0xf8b080,7, 0xf8c000,34, 0xf8c090,9, 0xf8c0b8,11, 0xf90000,11, 0xf90040,11, 0xf90080,11, 0xf900c0,11, 0xf90104,1, 0xf9011c,10, 0xf90148,2, 0xf90154,1, 0xf9015c,24, 0xf901c0,3, 0xf901d0,3, 0xf901e0,3, 0xf901f0,33, 0xf90280,3, 0xf90290,3, 0xf902a0,3, 0xf902b0,3, 0xf902c0,5, 0xf902d8,8, 0xf90400,145, 0xf90800,4, 0xf90880,25, 0xf90900,5, 0xf90920,1, 0xf91000,11, 0xf91040,11, 0xf91080,11, 0xf910c0,11, 0xf91100,11, 0xf91140,11, 0xf91180,11, 0xf911c0,11, 0xf91200,1, 0xf91208,19, 0xf91260,2, 0xf9126c,3, 0xf91280,5, 0xf91400,3, 0xf91410,30, 0xf914a4,1, 0xf914b4,23, 0xf91520,6, 0xf91540,3, 0xf91560,2, 0xf9156c,2, 0xf91580,2, 0xf915c0,3, 0xf915d0,3, 0xf915e0,1, 0xf91600,1, 0xf91800,1, 0xf91814,12, 0xf91848,5, 0xf91860,7, 0xf91880,5, 0xf91898,5, 0xf918b0,5, 0xf918c8,7, 0xf918e8,7, 0xf91908,5, 0xf91920,11, 0xf91950,55, 0xf91a40,2, 0xf91a4c,2, 0xf91a60,2, 0xf91a80,6, 0xf91ac0,3, 0xf91ad0,3, 0xf91ae0,1, 0xf91b00,1, 0xf92000,2, 0xf92010,47, 0xf920e0,6, 0xf92100,6, 0xf92120,2, 0xf9212c,3, 0xf92140,6, 0xf92200,5, 0xf92224,1, 0xf92234,3, 0xf92280,20, 0xf92404,1, 0xf924e4,71, 0xf92604,1, 0xf92670,38, 0xf92800,27, 0xf92880,4, 0xf928c0,25, 0xf92940,6, 0xf92960,4, 0xf92974,11, 0xf929a4,7, 0xf92a00,12, 0xf92a40,2, 0xf92a50,1, 0xf92a58,5, 0xf92a70,5, 0xfa0000,19, 0xfa0080,19, 0xfa0100,19, 0xfa0180,19, 0xfa0200,12, 0xfa0280,1, 0xfa02a0,6, 0xfa02c0,6, 0xfa02e0,6, 0xfa0300,6, 0xfa0320,6, 0xfa0340,6, 0xfa0360,6, 0xfa0380,9, 0xfa03c0,13, 0xfa0400,3, 0xfa0410,159, 0xfa0690,16, 0xfa06e0,5, 0xfa0700,5, 0xfa0720,5, 0xfa0740,5, 0xfa0760,5, 0xfa0780,5, 0xfa07a0,5, 0xfa07c0,5, 0xfa07e0,6, 0xfa0800,6, 0xfa0820,6, 0xfa0840,6, 0xfa0860,6, 0xfa0880,6, 0xfa08a0,6, 0xfa08c0,6, 0xfa08e0,6, 0xfa0900,6, 0xfa0920,6, 0xfa0940,6, 0xfa0960,6, 0xfa0980,6, 0xfa09a0,6, 0xfa09c0,6, 0xfa0a00,22, 0xfa0a80,1, 0xfa0a88,3, 0xfa0aa0,5, 0xfa0ac0,1, 0xfa0ad0,3, 0xfa0ae0,1, 0xfa0af0,3, 0xfa0b00,1, 0xfa0b10,3, 0xfa0b20,1, 0xfa0b30,3, 0xfa0b40,1, 0xfa0b48,3, 0xfa0b58,3, 0xfa0b68,3, 0xfa0b78,3, 0xfa0b88,3, 0xfa0ba0,3, 0xfa0bb0,1, 0xfa0bc0,3, 0xfa0bd0,1, 0xfa0be0,3, 0xfa0bf0,1, 0xfa0c00,3, 0xfa0c10,1, 0xfa0c20,3, 0xfa0c30,1, 0xfa0c40,3, 0xfa0c50,1, 0xfa0c80,6, 0xfa0ca0,6, 0xfa0cc0,1, 0xfa0d00,1, 0xfa0d10,3, 0xfa0d20,1, 0xfa0d30,3, 0xfa0d40,1, 0xfa0d60,5, 0xfa0d80,1, 0xfa0d90,3, 0xfa0da0,1, 0xfa0dc0,5, 0xfa0de0,1, 0xfa0df0,3, 0xfa0e00,1, 0xfa0e10,3, 0xfa0e20,5, 0xfa0e40,2, 0xfa0e50,3, 0xfa0e60,5, 0xfa0e80,2, 0xfa0e90,3, 0xfa0ea0,3, 0xfa0eb0,3, 0xfa0ec0,3, 0xfa0ed0,3, 0xfa0ee0,5, 0xfa0f00,3, 0xfa0f20,5, 0xfa0f40,5, 0xfa0f60,3, 0xfa0f70,3, 0xfa0f80,5, 0xfa0fa0,3, 0xfa0fb0,3, 0xfa0fc0,3, 0xfa0fd0,3, 0xfa0fe0,3, 0xfa0ff0,3, 0xfa1000,6, 0xfa1020,3, 0xfa1040,3, 0xfa1050,3, 0xfa1060,1, 0xfa1080,3, 0xfa1090,3, 0xfa10a0,1, 0xfa10c0,3, 0xfa10e0,5, 0xfa1100,11, 0xfa1130,3, 0xfa1140,3, 0xfa1150,3, 0xfa1160,5, 0xfa1180,5, 0xfa11a0,3, 0xfa11b0,3, 0xfa11c0,3, 0xfa11d0,3, 0xfa11e0,2, 0xfa11f0,3, 0xfa1200,7, 0xfa1220,3, 0xfa1230,2, 0xfa1240,3, 0xfa1250,3, 0xfa1260,2, 0xfa1400,15, 0xfa1440,4, 0xfa1460,17, 0xfa14c0,6, 0xfa14e0,4, 0xfa14f4,11, 0xfa1524,54, 0xfa1604,1, 0xfa160c,1, 0xfa1614,1, 0xfa161c,15, 0xfa1660,6, 0xfa1680,4, 0xfa16a0,5, 0xfa16c0,4, 0xfa16e0,5, 0xfa1700,4, 0xfa1720,5, 0xfa1740,4, 0xfa1760,5, 0xfa1780,4, 0xfa17c0,15, 0xfa1800,4, 0xfa1880,19, 0xfa1900,1, 0xfa1980,24, 0xfa1a00,24, 0xfa1a80,24, 0xfa1b00,24, 0xfa1b80,1, 0xfa1b88,2, 0xfa2000,451, 0xfa2740,169, 0xfa3000,260, 0xfa3800,12, 0xfa3a04,1, 0xfa3a0c,8, 0xfa3a44,1, 0xfa3a50,7, 0xfa3a84,1, 0xfa3a94,27, 0xfa3b04,3, 0xfa3b14,3, 0xfa3b24,3, 0xfa3b34,21, 0xfa3ba0,5, 0xfa3bc0,1, 0xfa3c04,1, 0xfa3c14,3, 0xfa3c24,3, 0xfa3c34,3, 0xfa3c44,1, 0xfa3c60,8, 0xfa3c84,1, 0xfa3ca0,8, 0xfa3cc4,1, 0xfa3ce0,11, 0xfa3e04,1, 0xfa3e0c,2, 0xfa3e18,1, 0xfa3e20,3, 0xfa3e30,3, 0xfa3e40,1, 0xfa3e48,3, 0xfa3e58,3, 0xfa3e70,4, 0xfa4000,44, 0xfa4100,19, 0xfa4180,22, 0xfa4200,27, 0xfa4280,27, 0xfa4300,11, 0xfa4380,17, 0xfa4400,27, 0xfa4480,2, 0xfa44a0,6, 0xfa44c0,3, 0xfa44d0,4, 0xfa4500,35, 0xfa4600,34, 0xfa4700,26, 0xfa4780,23, 0xfa4800,15, 0xfa4848,4, 0xfa8000,20, 0xfa8100,49, 0xfa8200,20, 0xfa8300,49, 0xfa8400,20, 0xfa8500,49, 0xfa8600,20, 0xfa8700,49, 0xfa8800,8, 0xfa9000,20, 0xfa9100,49, 0xfa9200,20, 0xfa9300,49, 0xfa9400,20, 0xfa9500,49, 0xfa9600,20, 0xfa9700,49, 0xfa9800,8, 0xfaa000,15, 0xfaa040,3, 0xfaa050,1, 0xfaa058,4, 0xfaa080,10, 0xfaa0b0,3, 0xfaa0c4,7, 0xfaa100,44, 0xfaa200,5, 0xfaa218,5, 0xfaa280,20, 0xfaa300,1, 0xfaa800,52, 0xfaa8e0,5, 0xfaa900,5, 0xfaaa00,52, 0xfaaae0,5, 0xfaab00,5, 0xfaac00,18, 0xfaac50,10, 0xfaad00,36, 0xfaada0,5, 0xfaadc0,5, 0xfab000,20, 0xfab080,20, 0xfab100,20, 0xfab180,20, 0xfab200,10, 0xfab400,10, 0xfab440,10, 0xfab480,10, 0xfab4c0,10, 0xfab500,1, 0xfab600,1, 0xfab608,32, 0xfab6a0,6, 0xfab6c0,6, 0xfab6e0,6, 0xfab700,6, 0xfab720,6, 0xfab740,6, 0xfab760,6, 0xfab780,6, 0xfab800,76, 0xfaba00,76, 0xfabc00,33, 0xfac000,76, 0xfac200,76, 0xfac400,33, 0xfac800,4, 0xfaca00,72, 0xfacc00,17, 0xfacc48,4, 0xface00,27, 0xface80,4, 0xfacec0,25, 0xfacf40,6, 0xfacf60,4, 0xfacf74,11, 0xfacfa4,16, 0xfad000,12, 0xfad040,2, 0xfad050,1, 0xfad058,5, 0xfad070,3, 0xfc0000,23, 0xfc0080,23, 0xfc0100,23, 0xfc0180,23, 0xfc0200,13, 0xfc0404,1, 0xfc047c,33, 0xfc0504,1, 0xfc0514,3, 0xfc0524,1, 0xfc052c,1, 0xfc0600,96, 0xfc0784,1, 0xfc0790,4, 0xfc1000,76, 0xfc2000,582, 0xfc3000,13, 0xfc3400,27, 0xfc3480,4, 0xfc34c0,25, 0xfc3540,6, 0xfc3560,4, 0xfc3574,3, 0xfc3600,8, 0xfc3624,59, 0xfc3800,4, 0xfc3880,36, 0xfc3980,17, 0xfc3a00,6, 0xfc3a20,165, 0xfc3d00,12, 0xfc3d40,2, 0xfc3d50,3, 0xfc3d60,1, 0xfc3d80,12, 0xfc3dc0,2, 0xfc3dd0,3, 0xfc3de0,1, 0xfc3e00,12, 0xfc3e40,2, 0xfc3e50,3, 0xfc3e60,1, 0xfc3e80,12, 0xfc3ec0,2, 0xfc3ed0,3, 0xfc3ee0,1, 0xfc3f00,9, 0xfc3f80,3, 0xfc3f90,5, 0xfc3fa8,5, 0xfc3fc0,5, 0xfc3fd8,2, 0xfc4000,1, 0xfc4010,6, 0xfc4030,78, 0xfc4180,18, 0xfc8004,6, 0xfc9000,650, 0xfca000,650, 0xfcb000,2, 0xfcb040,9, 0xfcb080,7, 0xfcc000,34, 0xfcc090,9, 0xfcc0b8,11, 0xfd0000,11, 0xfd0040,11, 0xfd0080,11, 0xfd00c0,11, 0xfd0104,1, 0xfd011c,10, 0xfd0148,2, 0xfd0154,1, 0xfd015c,24, 0xfd01c0,3, 0xfd01d0,3, 0xfd01e0,3, 0xfd01f0,33, 0xfd0280,3, 0xfd0290,3, 0xfd02a0,3, 0xfd02b0,3, 0xfd02c0,5, 0xfd02d8,8, 0xfd0400,145, 0xfd0800,4, 0xfd0880,25, 0xfd0900,5, 0xfd0920,1, 0xfd1000,11, 0xfd1040,11, 0xfd1080,11, 0xfd10c0,11, 0xfd1100,11, 0xfd1140,11, 0xfd1180,11, 0xfd11c0,11, 0xfd1200,1, 0xfd1208,19, 0xfd1260,2, 0xfd126c,3, 0xfd1280,5, 0xfd1400,3, 0xfd1410,30, 0xfd14a4,1, 0xfd14b4,23, 0xfd1520,6, 0xfd1540,3, 0xfd1560,2, 0xfd156c,2, 0xfd1580,2, 0xfd15c0,3, 0xfd15d0,3, 0xfd15e0,1, 0xfd1600,1, 0xfd1800,1, 0xfd1814,12, 0xfd1848,5, 0xfd1860,7, 0xfd1880,5, 0xfd1898,5, 0xfd18b0,5, 0xfd18c8,7, 0xfd18e8,7, 0xfd1908,5, 0xfd1920,11, 0xfd1950,55, 0xfd1a40,2, 0xfd1a4c,2, 0xfd1a60,2, 0xfd1a80,6, 0xfd1ac0,3, 0xfd1ad0,3, 0xfd1ae0,1, 0xfd1b00,1, 0xfd2000,2, 0xfd2010,47, 0xfd20e0,6, 0xfd2100,6, 0xfd2120,2, 0xfd212c,3, 0xfd2140,6, 0xfd2200,5, 0xfd2224,1, 0xfd2234,3, 0xfd2280,20, 0xfd2404,1, 0xfd24e4,71, 0xfd2604,1, 0xfd2670,38, 0xfd2800,27, 0xfd2880,4, 0xfd28c0,25, 0xfd2940,6, 0xfd2960,4, 0xfd2974,11, 0xfd29a4,7, 0xfd2a00,12, 0xfd2a40,2, 0xfd2a50,1, 0xfd2a58,5, 0xfd2a70,5, 0xfe0000,19, 0xfe0080,19, 0xfe0100,19, 0xfe0180,19, 0xfe0200,12, 0xfe0280,1, 0xfe02a0,6, 0xfe02c0,6, 0xfe02e0,6, 0xfe0300,6, 0xfe0320,6, 0xfe0340,6, 0xfe0360,6, 0xfe0380,9, 0xfe03c0,13, 0xfe0400,3, 0xfe0410,159, 0xfe0690,16, 0xfe06e0,5, 0xfe0700,5, 0xfe0720,5, 0xfe0740,5, 0xfe0760,5, 0xfe0780,5, 0xfe07a0,5, 0xfe07c0,5, 0xfe07e0,6, 0xfe0800,6, 0xfe0820,6, 0xfe0840,6, 0xfe0860,6, 0xfe0880,6, 0xfe08a0,6, 0xfe08c0,6, 0xfe08e0,6, 0xfe0900,6, 0xfe0920,6, 0xfe0940,6, 0xfe0960,6, 0xfe0980,6, 0xfe09a0,6, 0xfe09c0,6, 0xfe0a00,22, 0xfe0a80,1, 0xfe0a88,3, 0xfe0aa0,5, 0xfe0ac0,1, 0xfe0ad0,3, 0xfe0ae0,1, 0xfe0af0,3, 0xfe0b00,1, 0xfe0b10,3, 0xfe0b20,1, 0xfe0b30,3, 0xfe0b40,1, 0xfe0b48,3, 0xfe0b58,3, 0xfe0b68,3, 0xfe0b78,3, 0xfe0b88,3, 0xfe0ba0,3, 0xfe0bb0,1, 0xfe0bc0,3, 0xfe0bd0,1, 0xfe0be0,3, 0xfe0bf0,1, 0xfe0c00,3, 0xfe0c10,1, 0xfe0c20,3, 0xfe0c30,1, 0xfe0c40,3, 0xfe0c50,1, 0xfe0c80,6, 0xfe0ca0,6, 0xfe0cc0,1, 0xfe0d00,1, 0xfe0d10,3, 0xfe0d20,1, 0xfe0d30,3, 0xfe0d40,1, 0xfe0d60,5, 0xfe0d80,1, 0xfe0d90,3, 0xfe0da0,1, 0xfe0dc0,5, 0xfe0de0,1, 0xfe0df0,3, 0xfe0e00,1, 0xfe0e10,3, 0xfe0e20,5, 0xfe0e40,2, 0xfe0e50,3, 0xfe0e60,5, 0xfe0e80,2, 0xfe0e90,3, 0xfe0ea0,3, 0xfe0eb0,3, 0xfe0ec0,3, 0xfe0ed0,3, 0xfe0ee0,5, 0xfe0f00,3, 0xfe0f20,5, 0xfe0f40,5, 0xfe0f60,3, 0xfe0f70,3, 0xfe0f80,5, 0xfe0fa0,3, 0xfe0fb0,3, 0xfe0fc0,3, 0xfe0fd0,3, 0xfe0fe0,3, 0xfe0ff0,3, 0xfe1000,6, 0xfe1020,3, 0xfe1040,3, 0xfe1050,3, 0xfe1060,1, 0xfe1080,3, 0xfe1090,3, 0xfe10a0,1, 0xfe10c0,3, 0xfe10e0,5, 0xfe1100,11, 0xfe1130,3, 0xfe1140,3, 0xfe1150,3, 0xfe1160,5, 0xfe1180,5, 0xfe11a0,3, 0xfe11b0,3, 0xfe11c0,3, 0xfe11d0,3, 0xfe11e0,2, 0xfe11f0,3, 0xfe1200,7, 0xfe1220,3, 0xfe1230,2, 0xfe1240,3, 0xfe1250,3, 0xfe1260,2, 0xfe1400,15, 0xfe1440,4, 0xfe1460,17, 0xfe14c0,6, 0xfe14e0,4, 0xfe14f4,11, 0xfe1524,54, 0xfe1604,1, 0xfe160c,1, 0xfe1614,1, 0xfe161c,15, 0xfe1660,6, 0xfe1680,4, 0xfe16a0,5, 0xfe16c0,4, 0xfe16e0,5, 0xfe1700,4, 0xfe1720,5, 0xfe1740,4, 0xfe1760,5, 0xfe1780,4, 0xfe17c0,15, 0xfe1800,4, 0xfe1880,19, 0xfe1900,1, 0xfe1980,24, 0xfe1a00,24, 0xfe1a80,24, 0xfe1b00,24, 0xfe1b80,1, 0xfe1b88,2, 0xfe2000,451, 0xfe2740,169, 0xfe3000,260, 0xfe3800,12, 0xfe3a04,1, 0xfe3a0c,8, 0xfe3a44,1, 0xfe3a50,7, 0xfe3a84,1, 0xfe3a94,27, 0xfe3b04,3, 0xfe3b14,3, 0xfe3b24,3, 0xfe3b34,21, 0xfe3ba0,5, 0xfe3bc0,1, 0xfe3c04,1, 0xfe3c14,3, 0xfe3c24,3, 0xfe3c34,3, 0xfe3c44,1, 0xfe3c60,8, 0xfe3c84,1, 0xfe3ca0,8, 0xfe3cc4,1, 0xfe3ce0,11, 0xfe3e04,1, 0xfe3e0c,2, 0xfe3e18,1, 0xfe3e20,3, 0xfe3e30,3, 0xfe3e40,1, 0xfe3e48,3, 0xfe3e58,3, 0xfe3e70,4, 0xfe4000,44, 0xfe4100,19, 0xfe4180,22, 0xfe4200,27, 0xfe4280,27, 0xfe4300,11, 0xfe4380,17, 0xfe4400,27, 0xfe4480,2, 0xfe44a0,6, 0xfe44c0,3, 0xfe44d0,4, 0xfe4500,35, 0xfe4600,34, 0xfe4700,26, 0xfe4780,23, 0xfe4800,15, 0xfe4848,4, 0xfe8000,20, 0xfe8100,49, 0xfe8200,20, 0xfe8300,49, 0xfe8400,20, 0xfe8500,49, 0xfe8600,20, 0xfe8700,49, 0xfe8800,8, 0xfe9000,20, 0xfe9100,49, 0xfe9200,20, 0xfe9300,49, 0xfe9400,20, 0xfe9500,49, 0xfe9600,20, 0xfe9700,49, 0xfe9800,8, 0xfea000,15, 0xfea040,3, 0xfea050,1, 0xfea058,4, 0xfea080,10, 0xfea0b0,3, 0xfea0c4,7, 0xfea100,44, 0xfea200,5, 0xfea218,5, 0xfea280,20, 0xfea300,1, 0xfea800,52, 0xfea8e0,5, 0xfea900,5, 0xfeaa00,52, 0xfeaae0,5, 0xfeab00,5, 0xfeac00,18, 0xfeac50,10, 0xfead00,36, 0xfeada0,5, 0xfeadc0,5, 0xfeb000,20, 0xfeb080,20, 0xfeb100,20, 0xfeb180,20, 0xfeb200,10, 0xfeb400,10, 0xfeb440,10, 0xfeb480,10, 0xfeb4c0,10, 0xfeb500,1, 0xfeb600,1, 0xfeb608,32, 0xfeb6a0,6, 0xfeb6c0,6, 0xfeb6e0,6, 0xfeb700,6, 0xfeb720,6, 0xfeb740,6, 0xfeb760,6, 0xfeb780,6, 0xfeb800,76, 0xfeba00,76, 0xfebc00,33, 0xfec000,76, 0xfec200,76, 0xfec400,33, 0xfec800,4, 0xfeca00,72, 0xfecc00,17, 0xfecc48,4, 0xfece00,27, 0xfece80,4, 0xfecec0,25, 0xfecf40,6, 0xfecf60,4, 0xfecf74,11, 0xfecfa4,16, 0xfed000,12, 0xfed040,2, 0xfed050,1, 0xfed058,5, 0xfed070,3, 0x1000000,23, 0x1000080,23, 0x1000100,23, 0x1000180,23, 0x1000200,13, 0x1000404,1, 0x100047c,33, 0x1000504,1, 0x1000514,3, 0x1000524,1, 0x100052c,1, 0x1000600,96, 0x1000784,1, 0x1000790,4, 0x1001000,76, 0x1002000,582, 0x1003000,13, 0x1003400,27, 0x1003480,4, 0x10034c0,25, 0x1003540,6, 0x1003560,4, 0x1003574,3, 0x1003600,8, 0x1003624,59, 0x1003800,4, 0x1003880,36, 0x1003980,17, 0x1003a00,6, 0x1003a20,165, 0x1003d00,12, 0x1003d40,2, 0x1003d50,3, 0x1003d60,1, 0x1003d80,12, 0x1003dc0,2, 0x1003dd0,3, 0x1003de0,1, 0x1003e00,12, 0x1003e40,2, 0x1003e50,3, 0x1003e60,1, 0x1003e80,12, 0x1003ec0,2, 0x1003ed0,3, 0x1003ee0,1, 0x1003f00,9, 0x1003f80,3, 0x1003f90,5, 0x1003fa8,5, 0x1003fc0,5, 0x1003fd8,2, 0x1004000,1, 0x1004010,6, 0x1004030,78, 0x1004180,18, 0x1008004,6, 0x1009000,650, 0x100a000,650, 0x100b000,2, 0x100b040,9, 0x100b080,7, 0x100c000,34, 0x100c090,9, 0x100c0b8,11, 0x1010000,11, 0x1010040,11, 0x1010080,11, 0x10100c0,11, 0x1010104,1, 0x101011c,10, 0x1010148,2, 0x1010154,1, 0x101015c,24, 0x10101c0,3, 0x10101d0,3, 0x10101e0,3, 0x10101f0,33, 0x1010280,3, 0x1010290,3, 0x10102a0,3, 0x10102b0,3, 0x10102c0,5, 0x10102d8,8, 0x1010400,145, 0x1010800,4, 0x1010880,25, 0x1010900,5, 0x1010920,1, 0x1011000,11, 0x1011040,11, 0x1011080,11, 0x10110c0,11, 0x1011100,11, 0x1011140,11, 0x1011180,11, 0x10111c0,11, 0x1011200,1, 0x1011208,19, 0x1011260,2, 0x101126c,3, 0x1011280,5, 0x1011400,3, 0x1011410,30, 0x10114a4,1, 0x10114b4,23, 0x1011520,6, 0x1011540,3, 0x1011560,2, 0x101156c,2, 0x1011580,2, 0x10115c0,3, 0x10115d0,3, 0x10115e0,1, 0x1011600,1, 0x1011800,1, 0x1011814,12, 0x1011848,5, 0x1011860,7, 0x1011880,5, 0x1011898,5, 0x10118b0,5, 0x10118c8,7, 0x10118e8,7, 0x1011908,5, 0x1011920,11, 0x1011950,55, 0x1011a40,2, 0x1011a4c,2, 0x1011a60,2, 0x1011a80,6, 0x1011ac0,3, 0x1011ad0,3, 0x1011ae0,1, 0x1011b00,1, 0x1012000,2, 0x1012010,47, 0x10120e0,6, 0x1012100,6, 0x1012120,2, 0x101212c,3, 0x1012140,6, 0x1012200,5, 0x1012224,1, 0x1012234,3, 0x1012280,20, 0x1012404,1, 0x10124e4,71, 0x1012604,1, 0x1012670,38, 0x1012800,27, 0x1012880,4, 0x10128c0,25, 0x1012940,6, 0x1012960,4, 0x1012974,11, 0x10129a4,7, 0x1012a00,12, 0x1012a40,2, 0x1012a50,1, 0x1012a58,5, 0x1012a70,5, 0x1020000,19, 0x1020080,19, 0x1020100,19, 0x1020180,19, 0x1020200,12, 0x1020280,1, 0x10202a0,6, 0x10202c0,6, 0x10202e0,6, 0x1020300,6, 0x1020320,6, 0x1020340,6, 0x1020360,6, 0x1020380,9, 0x10203c0,13, 0x1020400,3, 0x1020410,159, 0x1020690,16, 0x10206e0,5, 0x1020700,5, 0x1020720,5, 0x1020740,5, 0x1020760,5, 0x1020780,5, 0x10207a0,5, 0x10207c0,5, 0x10207e0,6, 0x1020800,6, 0x1020820,6, 0x1020840,6, 0x1020860,6, 0x1020880,6, 0x10208a0,6, 0x10208c0,6, 0x10208e0,6, 0x1020900,6, 0x1020920,6, 0x1020940,6, 0x1020960,6, 0x1020980,6, 0x10209a0,6, 0x10209c0,6, 0x1020a00,22, 0x1020a80,1, 0x1020a88,3, 0x1020aa0,5, 0x1020ac0,1, 0x1020ad0,3, 0x1020ae0,1, 0x1020af0,3, 0x1020b00,1, 0x1020b10,3, 0x1020b20,1, 0x1020b30,3, 0x1020b40,1, 0x1020b48,3, 0x1020b58,3, 0x1020b68,3, 0x1020b78,3, 0x1020b88,3, 0x1020ba0,3, 0x1020bb0,1, 0x1020bc0,3, 0x1020bd0,1, 0x1020be0,3, 0x1020bf0,1, 0x1020c00,3, 0x1020c10,1, 0x1020c20,3, 0x1020c30,1, 0x1020c40,3, 0x1020c50,1, 0x1020c80,6, 0x1020ca0,6, 0x1020cc0,1, 0x1020d00,1, 0x1020d10,3, 0x1020d20,1, 0x1020d30,3, 0x1020d40,1, 0x1020d60,5, 0x1020d80,1, 0x1020d90,3, 0x1020da0,1, 0x1020dc0,5, 0x1020de0,1, 0x1020df0,3, 0x1020e00,1, 0x1020e10,3, 0x1020e20,5, 0x1020e40,2, 0x1020e50,3, 0x1020e60,5, 0x1020e80,2, 0x1020e90,3, 0x1020ea0,3, 0x1020eb0,3, 0x1020ec0,3, 0x1020ed0,3, 0x1020ee0,5, 0x1020f00,3, 0x1020f20,5, 0x1020f40,5, 0x1020f60,3, 0x1020f70,3, 0x1020f80,5, 0x1020fa0,3, 0x1020fb0,3, 0x1020fc0,3, 0x1020fd0,3, 0x1020fe0,3, 0x1020ff0,3, 0x1021000,6, 0x1021020,3, 0x1021040,3, 0x1021050,3, 0x1021060,1, 0x1021080,3, 0x1021090,3, 0x10210a0,1, 0x10210c0,3, 0x10210e0,5, 0x1021100,11, 0x1021130,3, 0x1021140,3, 0x1021150,3, 0x1021160,5, 0x1021180,5, 0x10211a0,3, 0x10211b0,3, 0x10211c0,3, 0x10211d0,3, 0x10211e0,2, 0x10211f0,3, 0x1021200,7, 0x1021220,3, 0x1021230,2, 0x1021240,3, 0x1021250,3, 0x1021260,2, 0x1021400,15, 0x1021440,4, 0x1021460,17, 0x10214c0,6, 0x10214e0,4, 0x10214f4,11, 0x1021524,54, 0x1021604,1, 0x102160c,1, 0x1021614,1, 0x102161c,15, 0x1021660,6, 0x1021680,4, 0x10216a0,5, 0x10216c0,4, 0x10216e0,5, 0x1021700,4, 0x1021720,5, 0x1021740,4, 0x1021760,5, 0x1021780,4, 0x10217c0,15, 0x1021800,4, 0x1021880,19, 0x1021900,1, 0x1021980,24, 0x1021a00,24, 0x1021a80,24, 0x1021b00,24, 0x1021b80,1, 0x1021b88,2, 0x1022000,451, 0x1022740,169, 0x1023000,260, 0x1023800,12, 0x1023a04,1, 0x1023a0c,8, 0x1023a44,1, 0x1023a50,7, 0x1023a84,1, 0x1023a94,27, 0x1023b04,3, 0x1023b14,3, 0x1023b24,3, 0x1023b34,21, 0x1023ba0,5, 0x1023bc0,1, 0x1023c04,1, 0x1023c14,3, 0x1023c24,3, 0x1023c34,3, 0x1023c44,1, 0x1023c60,8, 0x1023c84,1, 0x1023ca0,8, 0x1023cc4,1, 0x1023ce0,11, 0x1023e04,1, 0x1023e0c,2, 0x1023e18,1, 0x1023e20,3, 0x1023e30,3, 0x1023e40,1, 0x1023e48,3, 0x1023e58,3, 0x1023e70,4, 0x1024000,44, 0x1024100,19, 0x1024180,22, 0x1024200,27, 0x1024280,27, 0x1024300,11, 0x1024380,17, 0x1024400,27, 0x1024480,2, 0x10244a0,6, 0x10244c0,3, 0x10244d0,4, 0x1024500,35, 0x1024600,34, 0x1024700,26, 0x1024780,23, 0x1024800,15, 0x1024848,4, 0x1028000,20, 0x1028100,49, 0x1028200,20, 0x1028300,49, 0x1028400,20, 0x1028500,49, 0x1028600,20, 0x1028700,49, 0x1028800,8, 0x1029000,20, 0x1029100,49, 0x1029200,20, 0x1029300,49, 0x1029400,20, 0x1029500,49, 0x1029600,20, 0x1029700,49, 0x1029800,8, 0x102a000,15, 0x102a040,3, 0x102a050,1, 0x102a058,4, 0x102a080,10, 0x102a0b0,3, 0x102a0c4,7, 0x102a100,44, 0x102a200,5, 0x102a218,5, 0x102a280,20, 0x102a300,1, 0x102a800,52, 0x102a8e0,5, 0x102a900,5, 0x102aa00,52, 0x102aae0,5, 0x102ab00,5, 0x102ac00,18, 0x102ac50,10, 0x102ad00,36, 0x102ada0,5, 0x102adc0,5, 0x102b000,20, 0x102b080,20, 0x102b100,20, 0x102b180,20, 0x102b200,10, 0x102b400,10, 0x102b440,10, 0x102b480,10, 0x102b4c0,10, 0x102b500,1, 0x102b600,1, 0x102b608,32, 0x102b6a0,6, 0x102b6c0,6, 0x102b6e0,6, 0x102b700,6, 0x102b720,6, 0x102b740,6, 0x102b760,6, 0x102b780,6, 0x102b800,76, 0x102ba00,76, 0x102bc00,33, 0x102c000,76, 0x102c200,76, 0x102c400,33, 0x102c800,4, 0x102ca00,72, 0x102cc00,17, 0x102cc48,4, 0x102ce00,27, 0x102ce80,4, 0x102cec0,25, 0x102cf40,6, 0x102cf60,4, 0x102cf74,11, 0x102cfa4,16, 0x102d000,12, 0x102d040,2, 0x102d050,1, 0x102d058,5, 0x102d070,3, 0x1040000,23, 0x1040080,23, 0x1040100,23, 0x1040180,23, 0x1040200,13, 0x1040404,1, 0x104047c,33, 0x1040504,1, 0x1040514,3, 0x1040524,1, 0x104052c,1, 0x1040600,96, 0x1040784,1, 0x1040790,4, 0x1041000,76, 0x1042000,582, 0x1043000,13, 0x1043400,27, 0x1043480,4, 0x10434c0,25, 0x1043540,6, 0x1043560,4, 0x1043574,3, 0x1043600,8, 0x1043624,59, 0x1043800,4, 0x1043880,36, 0x1043980,17, 0x1043a00,6, 0x1043a20,165, 0x1043d00,12, 0x1043d40,2, 0x1043d50,3, 0x1043d60,1, 0x1043d80,12, 0x1043dc0,2, 0x1043dd0,3, 0x1043de0,1, 0x1043e00,12, 0x1043e40,2, 0x1043e50,3, 0x1043e60,1, 0x1043e80,12, 0x1043ec0,2, 0x1043ed0,3, 0x1043ee0,1, 0x1043f00,9, 0x1043f80,3, 0x1043f90,5, 0x1043fa8,5, 0x1043fc0,5, 0x1043fd8,2, 0x1044000,1, 0x1044010,6, 0x1044030,78, 0x1044180,18, 0x1048004,6, 0x1049000,650, 0x104a000,650, 0x104b000,2, 0x104b040,9, 0x104b080,7, 0x104c000,34, 0x104c090,9, 0x104c0b8,11, 0x1050000,11, 0x1050040,11, 0x1050080,11, 0x10500c0,11, 0x1050104,1, 0x105011c,10, 0x1050148,2, 0x1050154,1, 0x105015c,24, 0x10501c0,3, 0x10501d0,3, 0x10501e0,3, 0x10501f0,33, 0x1050280,3, 0x1050290,3, 0x10502a0,3, 0x10502b0,3, 0x10502c0,5, 0x10502d8,8, 0x1050400,145, 0x1050800,4, 0x1050880,25, 0x1050900,5, 0x1050920,1, 0x1051000,11, 0x1051040,11, 0x1051080,11, 0x10510c0,11, 0x1051100,11, 0x1051140,11, 0x1051180,11, 0x10511c0,11, 0x1051200,1, 0x1051208,19, 0x1051260,2, 0x105126c,3, 0x1051280,5, 0x1051400,3, 0x1051410,30, 0x10514a4,1, 0x10514b4,23, 0x1051520,6, 0x1051540,3, 0x1051560,2, 0x105156c,2, 0x1051580,2, 0x10515c0,3, 0x10515d0,3, 0x10515e0,1, 0x1051600,1, 0x1051800,1, 0x1051814,12, 0x1051848,5, 0x1051860,7, 0x1051880,5, 0x1051898,5, 0x10518b0,5, 0x10518c8,7, 0x10518e8,7, 0x1051908,5, 0x1051920,11, 0x1051950,55, 0x1051a40,2, 0x1051a4c,2, 0x1051a60,2, 0x1051a80,6, 0x1051ac0,3, 0x1051ad0,3, 0x1051ae0,1, 0x1051b00,1, 0x1052000,2, 0x1052010,47, 0x10520e0,6, 0x1052100,6, 0x1052120,2, 0x105212c,3, 0x1052140,6, 0x1052200,5, 0x1052224,1, 0x1052234,3, 0x1052280,20, 0x1052404,1, 0x10524e4,71, 0x1052604,1, 0x1052670,38, 0x1052800,27, 0x1052880,4, 0x10528c0,25, 0x1052940,6, 0x1052960,4, 0x1052974,11, 0x10529a4,7, 0x1052a00,12, 0x1052a40,2, 0x1052a50,1, 0x1052a58,5, 0x1052a70,5, 0x1060000,19, 0x1060080,19, 0x1060100,19, 0x1060180,19, 0x1060200,12, 0x1060280,1, 0x10602a0,6, 0x10602c0,6, 0x10602e0,6, 0x1060300,6, 0x1060320,6, 0x1060340,6, 0x1060360,6, 0x1060380,9, 0x10603c0,13, 0x1060400,3, 0x1060410,159, 0x1060690,16, 0x10606e0,5, 0x1060700,5, 0x1060720,5, 0x1060740,5, 0x1060760,5, 0x1060780,5, 0x10607a0,5, 0x10607c0,5, 0x10607e0,6, 0x1060800,6, 0x1060820,6, 0x1060840,6, 0x1060860,6, 0x1060880,6, 0x10608a0,6, 0x10608c0,6, 0x10608e0,6, 0x1060900,6, 0x1060920,6, 0x1060940,6, 0x1060960,6, 0x1060980,6, 0x10609a0,6, 0x10609c0,6, 0x1060a00,22, 0x1060a80,1, 0x1060a88,3, 0x1060aa0,5, 0x1060ac0,1, 0x1060ad0,3, 0x1060ae0,1, 0x1060af0,3, 0x1060b00,1, 0x1060b10,3, 0x1060b20,1, 0x1060b30,3, 0x1060b40,1, 0x1060b48,3, 0x1060b58,3, 0x1060b68,3, 0x1060b78,3, 0x1060b88,3, 0x1060ba0,3, 0x1060bb0,1, 0x1060bc0,3, 0x1060bd0,1, 0x1060be0,3, 0x1060bf0,1, 0x1060c00,3, 0x1060c10,1, 0x1060c20,3, 0x1060c30,1, 0x1060c40,3, 0x1060c50,1, 0x1060c80,6, 0x1060ca0,6, 0x1060cc0,1, 0x1060d00,1, 0x1060d10,3, 0x1060d20,1, 0x1060d30,3, 0x1060d40,1, 0x1060d60,5, 0x1060d80,1, 0x1060d90,3, 0x1060da0,1, 0x1060dc0,5, 0x1060de0,1, 0x1060df0,3, 0x1060e00,1, 0x1060e10,3, 0x1060e20,5, 0x1060e40,2, 0x1060e50,3, 0x1060e60,5, 0x1060e80,2, 0x1060e90,3, 0x1060ea0,3, 0x1060eb0,3, 0x1060ec0,3, 0x1060ed0,3, 0x1060ee0,5, 0x1060f00,3, 0x1060f20,5, 0x1060f40,5, 0x1060f60,3, 0x1060f70,3, 0x1060f80,5, 0x1060fa0,3, 0x1060fb0,3, 0x1060fc0,3, 0x1060fd0,3, 0x1060fe0,3, 0x1060ff0,3, 0x1061000,6, 0x1061020,3, 0x1061040,3, 0x1061050,3, 0x1061060,1, 0x1061080,3, 0x1061090,3, 0x10610a0,1, 0x10610c0,3, 0x10610e0,5, 0x1061100,11, 0x1061130,3, 0x1061140,3, 0x1061150,3, 0x1061160,5, 0x1061180,5, 0x10611a0,3, 0x10611b0,3, 0x10611c0,3, 0x10611d0,3, 0x10611e0,2, 0x10611f0,3, 0x1061200,7, 0x1061220,3, 0x1061230,2, 0x1061240,3, 0x1061250,3, 0x1061260,2, 0x1061400,15, 0x1061440,4, 0x1061460,17, 0x10614c0,6, 0x10614e0,4, 0x10614f4,11, 0x1061524,54, 0x1061604,1, 0x106160c,1, 0x1061614,1, 0x106161c,15, 0x1061660,6, 0x1061680,4, 0x10616a0,5, 0x10616c0,4, 0x10616e0,5, 0x1061700,4, 0x1061720,5, 0x1061740,4, 0x1061760,5, 0x1061780,4, 0x10617c0,15, 0x1061800,4, 0x1061880,19, 0x1061900,1, 0x1061980,24, 0x1061a00,24, 0x1061a80,24, 0x1061b00,24, 0x1061b80,1, 0x1061b88,2, 0x1062000,451, 0x1062740,169, 0x1063000,260, 0x1063800,12, 0x1063a04,1, 0x1063a0c,8, 0x1063a44,1, 0x1063a50,7, 0x1063a84,1, 0x1063a94,27, 0x1063b04,3, 0x1063b14,3, 0x1063b24,3, 0x1063b34,21, 0x1063ba0,5, 0x1063bc0,1, 0x1063c04,1, 0x1063c14,3, 0x1063c24,3, 0x1063c34,3, 0x1063c44,1, 0x1063c60,8, 0x1063c84,1, 0x1063ca0,8, 0x1063cc4,1, 0x1063ce0,11, 0x1063e04,1, 0x1063e0c,2, 0x1063e18,1, 0x1063e20,3, 0x1063e30,3, 0x1063e40,1, 0x1063e48,3, 0x1063e58,3, 0x1063e70,4, 0x1064000,44, 0x1064100,19, 0x1064180,22, 0x1064200,27, 0x1064280,27, 0x1064300,11, 0x1064380,17, 0x1064400,27, 0x1064480,2, 0x10644a0,6, 0x10644c0,3, 0x10644d0,4, 0x1064500,35, 0x1064600,34, 0x1064700,26, 0x1064780,23, 0x1064800,15, 0x1064848,4, 0x1068000,20, 0x1068100,49, 0x1068200,20, 0x1068300,49, 0x1068400,20, 0x1068500,49, 0x1068600,20, 0x1068700,49, 0x1068800,8, 0x1069000,20, 0x1069100,49, 0x1069200,20, 0x1069300,49, 0x1069400,20, 0x1069500,49, 0x1069600,20, 0x1069700,49, 0x1069800,8, 0x106a000,15, 0x106a040,3, 0x106a050,1, 0x106a058,4, 0x106a080,10, 0x106a0b0,3, 0x106a0c4,7, 0x106a100,44, 0x106a200,5, 0x106a218,5, 0x106a280,20, 0x106a300,1, 0x106a800,52, 0x106a8e0,5, 0x106a900,5, 0x106aa00,52, 0x106aae0,5, 0x106ab00,5, 0x106ac00,18, 0x106ac50,10, 0x106ad00,36, 0x106ada0,5, 0x106adc0,5, 0x106b000,20, 0x106b080,20, 0x106b100,20, 0x106b180,20, 0x106b200,10, 0x106b400,10, 0x106b440,10, 0x106b480,10, 0x106b4c0,10, 0x106b500,1, 0x106b600,1, 0x106b608,32, 0x106b6a0,6, 0x106b6c0,6, 0x106b6e0,6, 0x106b700,6, 0x106b720,6, 0x106b740,6, 0x106b760,6, 0x106b780,6, 0x106b800,76, 0x106ba00,76, 0x106bc00,33, 0x106c000,76, 0x106c200,76, 0x106c400,33, 0x106c800,4, 0x106ca00,72, 0x106cc00,17, 0x106cc48,4, 0x106ce00,27, 0x106ce80,4, 0x106cec0,25, 0x106cf40,6, 0x106cf60,4, 0x106cf74,11, 0x106cfa4,16, 0x106d000,12, 0x106d040,2, 0x106d050,1, 0x106d058,5, 0x106d070,3, 0x1080000,23, 0x1080080,23, 0x1080100,23, 0x1080180,23, 0x1080200,13, 0x1080404,1, 0x108047c,33, 0x1080504,1, 0x1080514,3, 0x1080524,1, 0x108052c,1, 0x1080600,96, 0x1080784,1, 0x1080790,4, 0x1081000,76, 0x1082000,582, 0x1083000,13, 0x1083400,27, 0x1083480,4, 0x10834c0,25, 0x1083540,6, 0x1083560,4, 0x1083574,3, 0x1083600,8, 0x1083624,59, 0x1083800,4, 0x1083880,36, 0x1083980,17, 0x1083a00,6, 0x1083a20,165, 0x1083d00,12, 0x1083d40,2, 0x1083d50,3, 0x1083d60,1, 0x1083d80,12, 0x1083dc0,2, 0x1083dd0,3, 0x1083de0,1, 0x1083e00,12, 0x1083e40,2, 0x1083e50,3, 0x1083e60,1, 0x1083e80,12, 0x1083ec0,2, 0x1083ed0,3, 0x1083ee0,1, 0x1083f00,9, 0x1083f80,3, 0x1083f90,5, 0x1083fa8,5, 0x1083fc0,5, 0x1083fd8,2, 0x1084000,1, 0x1084010,6, 0x1084030,78, 0x1084180,18, 0x1088004,6, 0x1089000,650, 0x108a000,650, 0x108b000,2, 0x108b040,9, 0x108b080,7, 0x108c000,34, 0x108c090,9, 0x108c0b8,11, 0x1090000,11, 0x1090040,11, 0x1090080,11, 0x10900c0,11, 0x1090104,1, 0x109011c,10, 0x1090148,2, 0x1090154,1, 0x109015c,24, 0x10901c0,3, 0x10901d0,3, 0x10901e0,3, 0x10901f0,33, 0x1090280,3, 0x1090290,3, 0x10902a0,3, 0x10902b0,3, 0x10902c0,5, 0x10902d8,8, 0x1090400,145, 0x1090800,4, 0x1090880,25, 0x1090900,5, 0x1090920,1, 0x1091000,11, 0x1091040,11, 0x1091080,11, 0x10910c0,11, 0x1091100,11, 0x1091140,11, 0x1091180,11, 0x10911c0,11, 0x1091200,1, 0x1091208,19, 0x1091260,2, 0x109126c,3, 0x1091280,5, 0x1091400,3, 0x1091410,30, 0x10914a4,1, 0x10914b4,23, 0x1091520,6, 0x1091540,3, 0x1091560,2, 0x109156c,2, 0x1091580,2, 0x10915c0,3, 0x10915d0,3, 0x10915e0,1, 0x1091600,1, 0x1091800,1, 0x1091814,12, 0x1091848,5, 0x1091860,7, 0x1091880,5, 0x1091898,5, 0x10918b0,5, 0x10918c8,7, 0x10918e8,7, 0x1091908,5, 0x1091920,11, 0x1091950,55, 0x1091a40,2, 0x1091a4c,2, 0x1091a60,2, 0x1091a80,6, 0x1091ac0,3, 0x1091ad0,3, 0x1091ae0,1, 0x1091b00,1, 0x1092000,2, 0x1092010,47, 0x10920e0,6, 0x1092100,6, 0x1092120,2, 0x109212c,3, 0x1092140,6, 0x1092200,5, 0x1092224,1, 0x1092234,3, 0x1092280,20, 0x1092404,1, 0x10924e4,71, 0x1092604,1, 0x1092670,38, 0x1092800,27, 0x1092880,4, 0x10928c0,25, 0x1092940,6, 0x1092960,4, 0x1092974,11, 0x10929a4,7, 0x1092a00,12, 0x1092a40,2, 0x1092a50,1, 0x1092a58,5, 0x1092a70,5, 0x10a0000,19, 0x10a0080,19, 0x10a0100,19, 0x10a0180,19, 0x10a0200,12, 0x10a0280,1, 0x10a02a0,6, 0x10a02c0,6, 0x10a02e0,6, 0x10a0300,6, 0x10a0320,6, 0x10a0340,6, 0x10a0360,6, 0x10a0380,9, 0x10a03c0,13, 0x10a0400,3, 0x10a0410,159, 0x10a0690,16, 0x10a06e0,5, 0x10a0700,5, 0x10a0720,5, 0x10a0740,5, 0x10a0760,5, 0x10a0780,5, 0x10a07a0,5, 0x10a07c0,5, 0x10a07e0,6, 0x10a0800,6, 0x10a0820,6, 0x10a0840,6, 0x10a0860,6, 0x10a0880,6, 0x10a08a0,6, 0x10a08c0,6, 0x10a08e0,6, 0x10a0900,6, 0x10a0920,6, 0x10a0940,6, 0x10a0960,6, 0x10a0980,6, 0x10a09a0,6, 0x10a09c0,6, 0x10a0a00,22, 0x10a0a80,1, 0x10a0a88,3, 0x10a0aa0,5, 0x10a0ac0,1, 0x10a0ad0,3, 0x10a0ae0,1, 0x10a0af0,3, 0x10a0b00,1, 0x10a0b10,3, 0x10a0b20,1, 0x10a0b30,3, 0x10a0b40,1, 0x10a0b48,3, 0x10a0b58,3, 0x10a0b68,3, 0x10a0b78,3, 0x10a0b88,3, 0x10a0ba0,3, 0x10a0bb0,1, 0x10a0bc0,3, 0x10a0bd0,1, 0x10a0be0,3, 0x10a0bf0,1, 0x10a0c00,3, 0x10a0c10,1, 0x10a0c20,3, 0x10a0c30,1, 0x10a0c40,3, 0x10a0c50,1, 0x10a0c80,6, 0x10a0ca0,6, 0x10a0cc0,1, 0x10a0d00,1, 0x10a0d10,3, 0x10a0d20,1, 0x10a0d30,3, 0x10a0d40,1, 0x10a0d60,5, 0x10a0d80,1, 0x10a0d90,3, 0x10a0da0,1, 0x10a0dc0,5, 0x10a0de0,1, 0x10a0df0,3, 0x10a0e00,1, 0x10a0e10,3, 0x10a0e20,5, 0x10a0e40,2, 0x10a0e50,3, 0x10a0e60,5, 0x10a0e80,2, 0x10a0e90,3, 0x10a0ea0,3, 0x10a0eb0,3, 0x10a0ec0,3, 0x10a0ed0,3, 0x10a0ee0,5, 0x10a0f00,3, 0x10a0f20,5, 0x10a0f40,5, 0x10a0f60,3, 0x10a0f70,3, 0x10a0f80,5, 0x10a0fa0,3, 0x10a0fb0,3, 0x10a0fc0,3, 0x10a0fd0,3, 0x10a0fe0,3, 0x10a0ff0,3, 0x10a1000,6, 0x10a1020,3, 0x10a1040,3, 0x10a1050,3, 0x10a1060,1, 0x10a1080,3, 0x10a1090,3, 0x10a10a0,1, 0x10a10c0,3, 0x10a10e0,5, 0x10a1100,11, 0x10a1130,3, 0x10a1140,3, 0x10a1150,3, 0x10a1160,5, 0x10a1180,5, 0x10a11a0,3, 0x10a11b0,3, 0x10a11c0,3, 0x10a11d0,3, 0x10a11e0,2, 0x10a11f0,3, 0x10a1200,7, 0x10a1220,3, 0x10a1230,2, 0x10a1240,3, 0x10a1250,3, 0x10a1260,2, 0x10a1400,15, 0x10a1440,4, 0x10a1460,17, 0x10a14c0,6, 0x10a14e0,4, 0x10a14f4,11, 0x10a1524,54, 0x10a1604,1, 0x10a160c,1, 0x10a1614,1, 0x10a161c,15, 0x10a1660,6, 0x10a1680,4, 0x10a16a0,5, 0x10a16c0,4, 0x10a16e0,5, 0x10a1700,4, 0x10a1720,5, 0x10a1740,4, 0x10a1760,5, 0x10a1780,4, 0x10a17c0,15, 0x10a1800,4, 0x10a1880,19, 0x10a1900,1, 0x10a1980,24, 0x10a1a00,24, 0x10a1a80,24, 0x10a1b00,24, 0x10a1b80,1, 0x10a1b88,2, 0x10a2000,451, 0x10a2740,169, 0x10a3000,260, 0x10a3800,12, 0x10a3a04,1, 0x10a3a0c,8, 0x10a3a44,1, 0x10a3a50,7, 0x10a3a84,1, 0x10a3a94,27, 0x10a3b04,3, 0x10a3b14,3, 0x10a3b24,3, 0x10a3b34,21, 0x10a3ba0,5, 0x10a3bc0,1, 0x10a3c04,1, 0x10a3c14,3, 0x10a3c24,3, 0x10a3c34,3, 0x10a3c44,1, 0x10a3c60,8, 0x10a3c84,1, 0x10a3ca0,8, 0x10a3cc4,1, 0x10a3ce0,11, 0x10a3e04,1, 0x10a3e0c,2, 0x10a3e18,1, 0x10a3e20,3, 0x10a3e30,3, 0x10a3e40,1, 0x10a3e48,3, 0x10a3e58,3, 0x10a3e70,4, 0x10a4000,44, 0x10a4100,19, 0x10a4180,22, 0x10a4200,27, 0x10a4280,27, 0x10a4300,11, 0x10a4380,17, 0x10a4400,27, 0x10a4480,2, 0x10a44a0,6, 0x10a44c0,3, 0x10a44d0,4, 0x10a4500,35, 0x10a4600,34, 0x10a4700,26, 0x10a4780,23, 0x10a4800,15, 0x10a4848,4, 0x10a8000,20, 0x10a8100,49, 0x10a8200,20, 0x10a8300,49, 0x10a8400,20, 0x10a8500,49, 0x10a8600,20, 0x10a8700,49, 0x10a8800,8, 0x10a9000,20, 0x10a9100,49, 0x10a9200,20, 0x10a9300,49, 0x10a9400,20, 0x10a9500,49, 0x10a9600,20, 0x10a9700,49, 0x10a9800,8, 0x10aa000,15, 0x10aa040,3, 0x10aa050,1, 0x10aa058,4, 0x10aa080,10, 0x10aa0b0,3, 0x10aa0c4,7, 0x10aa100,44, 0x10aa200,5, 0x10aa218,5, 0x10aa280,20, 0x10aa300,1, 0x10aa800,52, 0x10aa8e0,5, 0x10aa900,5, 0x10aaa00,52, 0x10aaae0,5, 0x10aab00,5, 0x10aac00,18, 0x10aac50,10, 0x10aad00,36, 0x10aada0,5, 0x10aadc0,5, 0x10ab000,20, 0x10ab080,20, 0x10ab100,20, 0x10ab180,20, 0x10ab200,10, 0x10ab400,10, 0x10ab440,10, 0x10ab480,10, 0x10ab4c0,10, 0x10ab500,1, 0x10ab600,1, 0x10ab608,32, 0x10ab6a0,6, 0x10ab6c0,6, 0x10ab6e0,6, 0x10ab700,6, 0x10ab720,6, 0x10ab740,6, 0x10ab760,6, 0x10ab780,6, 0x10ab800,76, 0x10aba00,76, 0x10abc00,33, 0x10ac000,76, 0x10ac200,76, 0x10ac400,33, 0x10ac800,4, 0x10aca00,72, 0x10acc00,17, 0x10acc48,4, 0x10ace00,27, 0x10ace80,4, 0x10acec0,25, 0x10acf40,6, 0x10acf60,4, 0x10acf74,11, 0x10acfa4,16, 0x10ad000,12, 0x10ad040,2, 0x10ad050,1, 0x10ad058,5, 0x10ad070,3, 0x10c0000,23, 0x10c0080,23, 0x10c0100,23, 0x10c0180,23, 0x10c0200,13, 0x10c0404,1, 0x10c047c,33, 0x10c0504,1, 0x10c0514,3, 0x10c0524,1, 0x10c052c,1, 0x10c0600,96, 0x10c0784,1, 0x10c0790,4, 0x10c1000,76, 0x10c2000,582, 0x10c3000,13, 0x10c3400,27, 0x10c3480,4, 0x10c34c0,25, 0x10c3540,6, 0x10c3560,4, 0x10c3574,3, 0x10c3600,8, 0x10c3624,59, 0x10c3800,4, 0x10c3880,36, 0x10c3980,17, 0x10c3a00,6, 0x10c3a20,165, 0x10c3d00,12, 0x10c3d40,2, 0x10c3d50,3, 0x10c3d60,1, 0x10c3d80,12, 0x10c3dc0,2, 0x10c3dd0,3, 0x10c3de0,1, 0x10c3e00,12, 0x10c3e40,2, 0x10c3e50,3, 0x10c3e60,1, 0x10c3e80,12, 0x10c3ec0,2, 0x10c3ed0,3, 0x10c3ee0,1, 0x10c3f00,9, 0x10c3f80,3, 0x10c3f90,5, 0x10c3fa8,5, 0x10c3fc0,5, 0x10c3fd8,2, 0x10c4000,1, 0x10c4010,6, 0x10c4030,78, 0x10c4180,18, 0x10c8004,6, 0x10c9000,650, 0x10ca000,650, 0x10cb000,2, 0x10cb040,9, 0x10cb080,7, 0x10cc000,34, 0x10cc090,9, 0x10cc0b8,11, 0x10d0000,11, 0x10d0040,11, 0x10d0080,11, 0x10d00c0,11, 0x10d0104,1, 0x10d011c,10, 0x10d0148,2, 0x10d0154,1, 0x10d015c,24, 0x10d01c0,3, 0x10d01d0,3, 0x10d01e0,3, 0x10d01f0,33, 0x10d0280,3, 0x10d0290,3, 0x10d02a0,3, 0x10d02b0,3, 0x10d02c0,5, 0x10d02d8,8, 0x10d0400,145, 0x10d0800,4, 0x10d0880,25, 0x10d0900,5, 0x10d0920,1, 0x10d1000,11, 0x10d1040,11, 0x10d1080,11, 0x10d10c0,11, 0x10d1100,11, 0x10d1140,11, 0x10d1180,11, 0x10d11c0,11, 0x10d1200,1, 0x10d1208,19, 0x10d1260,2, 0x10d126c,3, 0x10d1280,5, 0x10d1400,3, 0x10d1410,30, 0x10d14a4,1, 0x10d14b4,23, 0x10d1520,6, 0x10d1540,3, 0x10d1560,2, 0x10d156c,2, 0x10d1580,2, 0x10d15c0,3, 0x10d15d0,3, 0x10d15e0,1, 0x10d1600,1, 0x10d1800,1, 0x10d1814,12, 0x10d1848,5, 0x10d1860,7, 0x10d1880,5, 0x10d1898,5, 0x10d18b0,5, 0x10d18c8,7, 0x10d18e8,7, 0x10d1908,5, 0x10d1920,11, 0x10d1950,55, 0x10d1a40,2, 0x10d1a4c,2, 0x10d1a60,2, 0x10d1a80,6, 0x10d1ac0,3, 0x10d1ad0,3, 0x10d1ae0,1, 0x10d1b00,1, 0x10d2000,2, 0x10d2010,47, 0x10d20e0,6, 0x10d2100,6, 0x10d2120,2, 0x10d212c,3, 0x10d2140,6, 0x10d2200,5, 0x10d2224,1, 0x10d2234,3, 0x10d2280,20, 0x10d2404,1, 0x10d24e4,71, 0x10d2604,1, 0x10d2670,38, 0x10d2800,27, 0x10d2880,4, 0x10d28c0,25, 0x10d2940,6, 0x10d2960,4, 0x10d2974,11, 0x10d29a4,7, 0x10d2a00,12, 0x10d2a40,2, 0x10d2a50,1, 0x10d2a58,5, 0x10d2a70,5, 0x10e0000,19, 0x10e0080,19, 0x10e0100,19, 0x10e0180,19, 0x10e0200,12, 0x10e0280,1, 0x10e02a0,6, 0x10e02c0,6, 0x10e02e0,6, 0x10e0300,6, 0x10e0320,6, 0x10e0340,6, 0x10e0360,6, 0x10e0380,9, 0x10e03c0,13, 0x10e0400,3, 0x10e0410,159, 0x10e0690,16, 0x10e06e0,5, 0x10e0700,5, 0x10e0720,5, 0x10e0740,5, 0x10e0760,5, 0x10e0780,5, 0x10e07a0,5, 0x10e07c0,5, 0x10e07e0,6, 0x10e0800,6, 0x10e0820,6, 0x10e0840,6, 0x10e0860,6, 0x10e0880,6, 0x10e08a0,6, 0x10e08c0,6, 0x10e08e0,6, 0x10e0900,6, 0x10e0920,6, 0x10e0940,6, 0x10e0960,6, 0x10e0980,6, 0x10e09a0,6, 0x10e09c0,6, 0x10e0a00,22, 0x10e0a80,1, 0x10e0a88,3, 0x10e0aa0,5, 0x10e0ac0,1, 0x10e0ad0,3, 0x10e0ae0,1, 0x10e0af0,3, 0x10e0b00,1, 0x10e0b10,3, 0x10e0b20,1, 0x10e0b30,3, 0x10e0b40,1, 0x10e0b48,3, 0x10e0b58,3, 0x10e0b68,3, 0x10e0b78,3, 0x10e0b88,3, 0x10e0ba0,3, 0x10e0bb0,1, 0x10e0bc0,3, 0x10e0bd0,1, 0x10e0be0,3, 0x10e0bf0,1, 0x10e0c00,3, 0x10e0c10,1, 0x10e0c20,3, 0x10e0c30,1, 0x10e0c40,3, 0x10e0c50,1, 0x10e0c80,6, 0x10e0ca0,6, 0x10e0cc0,1, 0x10e0d00,1, 0x10e0d10,3, 0x10e0d20,1, 0x10e0d30,3, 0x10e0d40,1, 0x10e0d60,5, 0x10e0d80,1, 0x10e0d90,3, 0x10e0da0,1, 0x10e0dc0,5, 0x10e0de0,1, 0x10e0df0,3, 0x10e0e00,1, 0x10e0e10,3, 0x10e0e20,5, 0x10e0e40,2, 0x10e0e50,3, 0x10e0e60,5, 0x10e0e80,2, 0x10e0e90,3, 0x10e0ea0,3, 0x10e0eb0,3, 0x10e0ec0,3, 0x10e0ed0,3, 0x10e0ee0,5, 0x10e0f00,3, 0x10e0f20,5, 0x10e0f40,5, 0x10e0f60,3, 0x10e0f70,3, 0x10e0f80,5, 0x10e0fa0,3, 0x10e0fb0,3, 0x10e0fc0,3, 0x10e0fd0,3, 0x10e0fe0,3, 0x10e0ff0,3, 0x10e1000,6, 0x10e1020,3, 0x10e1040,3, 0x10e1050,3, 0x10e1060,1, 0x10e1080,3, 0x10e1090,3, 0x10e10a0,1, 0x10e10c0,3, 0x10e10e0,5, 0x10e1100,11, 0x10e1130,3, 0x10e1140,3, 0x10e1150,3, 0x10e1160,5, 0x10e1180,5, 0x10e11a0,3, 0x10e11b0,3, 0x10e11c0,3, 0x10e11d0,3, 0x10e11e0,2, 0x10e11f0,3, 0x10e1200,7, 0x10e1220,3, 0x10e1230,2, 0x10e1240,3, 0x10e1250,3, 0x10e1260,2, 0x10e1400,15, 0x10e1440,4, 0x10e1460,17, 0x10e14c0,6, 0x10e14e0,4, 0x10e14f4,11, 0x10e1524,54, 0x10e1604,1, 0x10e160c,1, 0x10e1614,1, 0x10e161c,15, 0x10e1660,6, 0x10e1680,4, 0x10e16a0,5, 0x10e16c0,4, 0x10e16e0,5, 0x10e1700,4, 0x10e1720,5, 0x10e1740,4, 0x10e1760,5, 0x10e1780,4, 0x10e17c0,15, 0x10e1800,4, 0x10e1880,19, 0x10e1900,1, 0x10e1980,24, 0x10e1a00,24, 0x10e1a80,24, 0x10e1b00,24, 0x10e1b80,1, 0x10e1b88,2, 0x10e2000,451, 0x10e2740,169, 0x10e3000,260, 0x10e3800,12, 0x10e3a04,1, 0x10e3a0c,8, 0x10e3a44,1, 0x10e3a50,7, 0x10e3a84,1, 0x10e3a94,27, 0x10e3b04,3, 0x10e3b14,3, 0x10e3b24,3, 0x10e3b34,21, 0x10e3ba0,5, 0x10e3bc0,1, 0x10e3c04,1, 0x10e3c14,3, 0x10e3c24,3, 0x10e3c34,3, 0x10e3c44,1, 0x10e3c60,8, 0x10e3c84,1, 0x10e3ca0,8, 0x10e3cc4,1, 0x10e3ce0,11, 0x10e3e04,1, 0x10e3e0c,2, 0x10e3e18,1, 0x10e3e20,3, 0x10e3e30,3, 0x10e3e40,1, 0x10e3e48,3, 0x10e3e58,3, 0x10e3e70,4, 0x10e4000,44, 0x10e4100,19, 0x10e4180,22, 0x10e4200,27, 0x10e4280,27, 0x10e4300,11, 0x10e4380,17, 0x10e4400,27, 0x10e4480,2, 0x10e44a0,6, 0x10e44c0,3, 0x10e44d0,4, 0x10e4500,35, 0x10e4600,34, 0x10e4700,26, 0x10e4780,23, 0x10e4800,15, 0x10e4848,4, 0x10e8000,20, 0x10e8100,49, 0x10e8200,20, 0x10e8300,49, 0x10e8400,20, 0x10e8500,49, 0x10e8600,20, 0x10e8700,49, 0x10e8800,8, 0x10e9000,20, 0x10e9100,49, 0x10e9200,20, 0x10e9300,49, 0x10e9400,20, 0x10e9500,49, 0x10e9600,20, 0x10e9700,49, 0x10e9800,8, 0x10ea000,15, 0x10ea040,3, 0x10ea050,1, 0x10ea058,4, 0x10ea080,10, 0x10ea0b0,3, 0x10ea0c4,7, 0x10ea100,44, 0x10ea200,5, 0x10ea218,5, 0x10ea280,20, 0x10ea300,1, 0x10ea800,52, 0x10ea8e0,5, 0x10ea900,5, 0x10eaa00,52, 0x10eaae0,5, 0x10eab00,5, 0x10eac00,18, 0x10eac50,10, 0x10ead00,36, 0x10eada0,5, 0x10eadc0,5, 0x10eb000,20, 0x10eb080,20, 0x10eb100,20, 0x10eb180,20, 0x10eb200,10, 0x10eb400,10, 0x10eb440,10, 0x10eb480,10, 0x10eb4c0,10, 0x10eb500,1, 0x10eb600,1, 0x10eb608,32, 0x10eb6a0,6, 0x10eb6c0,6, 0x10eb6e0,6, 0x10eb700,6, 0x10eb720,6, 0x10eb740,6, 0x10eb760,6, 0x10eb780,6, 0x10eb800,76, 0x10eba00,76, 0x10ebc00,33, 0x10ec000,76, 0x10ec200,76, 0x10ec400,33, 0x10ec800,4, 0x10eca00,72, 0x10ecc00,17, 0x10ecc48,4, 0x10ece00,27, 0x10ece80,4, 0x10ecec0,25, 0x10ecf40,6, 0x10ecf60,4, 0x10ecf74,11, 0x10ecfa4,16, 0x10ed000,12, 0x10ed040,2, 0x10ed050,1, 0x10ed058,5, 0x10ed070,3, 0x1100000,23, 0x1100080,23, 0x1100100,23, 0x1100180,23, 0x1100200,13, 0x1100404,1, 0x110047c,33, 0x1100504,1, 0x1100514,3, 0x1100524,1, 0x110052c,1, 0x1100600,96, 0x1100784,1, 0x1100790,4, 0x1101000,76, 0x1102000,582, 0x1103000,13, 0x1103400,27, 0x1103480,4, 0x11034c0,25, 0x1103540,6, 0x1103560,4, 0x1103574,3, 0x1103600,8, 0x1103624,59, 0x1103800,4, 0x1103880,36, 0x1103980,17, 0x1103a00,6, 0x1103a20,165, 0x1103d00,12, 0x1103d40,2, 0x1103d50,3, 0x1103d60,1, 0x1103d80,12, 0x1103dc0,2, 0x1103dd0,3, 0x1103de0,1, 0x1103e00,12, 0x1103e40,2, 0x1103e50,3, 0x1103e60,1, 0x1103e80,12, 0x1103ec0,2, 0x1103ed0,3, 0x1103ee0,1, 0x1103f00,9, 0x1103f80,3, 0x1103f90,5, 0x1103fa8,5, 0x1103fc0,5, 0x1103fd8,2, 0x1104000,1, 0x1104010,6, 0x1104030,78, 0x1104180,18, 0x1108004,6, 0x1109000,650, 0x110a000,650, 0x110b000,2, 0x110b040,9, 0x110b080,7, 0x110c000,34, 0x110c090,9, 0x110c0b8,11, 0x1110000,11, 0x1110040,11, 0x1110080,11, 0x11100c0,11, 0x1110104,1, 0x111011c,10, 0x1110148,2, 0x1110154,1, 0x111015c,24, 0x11101c0,3, 0x11101d0,3, 0x11101e0,3, 0x11101f0,33, 0x1110280,3, 0x1110290,3, 0x11102a0,3, 0x11102b0,3, 0x11102c0,5, 0x11102d8,8, 0x1110400,145, 0x1110800,4, 0x1110880,25, 0x1110900,5, 0x1110920,1, 0x1111000,11, 0x1111040,11, 0x1111080,11, 0x11110c0,11, 0x1111100,11, 0x1111140,11, 0x1111180,11, 0x11111c0,11, 0x1111200,1, 0x1111208,19, 0x1111260,2, 0x111126c,3, 0x1111280,5, 0x1111400,3, 0x1111410,30, 0x11114a4,1, 0x11114b4,23, 0x1111520,6, 0x1111540,3, 0x1111560,2, 0x111156c,2, 0x1111580,2, 0x11115c0,3, 0x11115d0,3, 0x11115e0,1, 0x1111600,1, 0x1111800,1, 0x1111814,12, 0x1111848,5, 0x1111860,7, 0x1111880,5, 0x1111898,5, 0x11118b0,5, 0x11118c8,7, 0x11118e8,7, 0x1111908,5, 0x1111920,11, 0x1111950,55, 0x1111a40,2, 0x1111a4c,2, 0x1111a60,2, 0x1111a80,6, 0x1111ac0,3, 0x1111ad0,3, 0x1111ae0,1, 0x1111b00,1, 0x1112000,2, 0x1112010,47, 0x11120e0,6, 0x1112100,6, 0x1112120,2, 0x111212c,3, 0x1112140,6, 0x1112200,5, 0x1112224,1, 0x1112234,3, 0x1112280,20, 0x1112404,1, 0x11124e4,71, 0x1112604,1, 0x1112670,38, 0x1112800,27, 0x1112880,4, 0x11128c0,25, 0x1112940,6, 0x1112960,4, 0x1112974,11, 0x11129a4,7, 0x1112a00,12, 0x1112a40,2, 0x1112a50,1, 0x1112a58,5, 0x1112a70,5, 0x1120000,19, 0x1120080,19, 0x1120100,19, 0x1120180,19, 0x1120200,12, 0x1120280,1, 0x11202a0,6, 0x11202c0,6, 0x11202e0,6, 0x1120300,6, 0x1120320,6, 0x1120340,6, 0x1120360,6, 0x1120380,9, 0x11203c0,13, 0x1120400,3, 0x1120410,159, 0x1120690,16, 0x11206e0,5, 0x1120700,5, 0x1120720,5, 0x1120740,5, 0x1120760,5, 0x1120780,5, 0x11207a0,5, 0x11207c0,5, 0x11207e0,6, 0x1120800,6, 0x1120820,6, 0x1120840,6, 0x1120860,6, 0x1120880,6, 0x11208a0,6, 0x11208c0,6, 0x11208e0,6, 0x1120900,6, 0x1120920,6, 0x1120940,6, 0x1120960,6, 0x1120980,6, 0x11209a0,6, 0x11209c0,6, 0x1120a00,22, 0x1120a80,1, 0x1120a88,3, 0x1120aa0,5, 0x1120ac0,1, 0x1120ad0,3, 0x1120ae0,1, 0x1120af0,3, 0x1120b00,1, 0x1120b10,3, 0x1120b20,1, 0x1120b30,3, 0x1120b40,1, 0x1120b48,3, 0x1120b58,3, 0x1120b68,3, 0x1120b78,3, 0x1120b88,3, 0x1120ba0,3, 0x1120bb0,1, 0x1120bc0,3, 0x1120bd0,1, 0x1120be0,3, 0x1120bf0,1, 0x1120c00,3, 0x1120c10,1, 0x1120c20,3, 0x1120c30,1, 0x1120c40,3, 0x1120c50,1, 0x1120c80,6, 0x1120ca0,6, 0x1120cc0,1, 0x1120d00,1, 0x1120d10,3, 0x1120d20,1, 0x1120d30,3, 0x1120d40,1, 0x1120d60,5, 0x1120d80,1, 0x1120d90,3, 0x1120da0,1, 0x1120dc0,5, 0x1120de0,1, 0x1120df0,3, 0x1120e00,1, 0x1120e10,3, 0x1120e20,5, 0x1120e40,2, 0x1120e50,3, 0x1120e60,5, 0x1120e80,2, 0x1120e90,3, 0x1120ea0,3, 0x1120eb0,3, 0x1120ec0,3, 0x1120ed0,3, 0x1120ee0,5, 0x1120f00,3, 0x1120f20,5, 0x1120f40,5, 0x1120f60,3, 0x1120f70,3, 0x1120f80,5, 0x1120fa0,3, 0x1120fb0,3, 0x1120fc0,3, 0x1120fd0,3, 0x1120fe0,3, 0x1120ff0,3, 0x1121000,6, 0x1121020,3, 0x1121040,3, 0x1121050,3, 0x1121060,1, 0x1121080,3, 0x1121090,3, 0x11210a0,1, 0x11210c0,3, 0x11210e0,5, 0x1121100,11, 0x1121130,3, 0x1121140,3, 0x1121150,3, 0x1121160,5, 0x1121180,5, 0x11211a0,3, 0x11211b0,3, 0x11211c0,3, 0x11211d0,3, 0x11211e0,2, 0x11211f0,3, 0x1121200,7, 0x1121220,3, 0x1121230,2, 0x1121240,3, 0x1121250,3, 0x1121260,2, 0x1121400,15, 0x1121440,4, 0x1121460,17, 0x11214c0,6, 0x11214e0,4, 0x11214f4,11, 0x1121524,54, 0x1121604,1, 0x112160c,1, 0x1121614,1, 0x112161c,15, 0x1121660,6, 0x1121680,4, 0x11216a0,5, 0x11216c0,4, 0x11216e0,5, 0x1121700,4, 0x1121720,5, 0x1121740,4, 0x1121760,5, 0x1121780,4, 0x11217c0,15, 0x1121800,4, 0x1121880,19, 0x1121900,1, 0x1121980,24, 0x1121a00,24, 0x1121a80,24, 0x1121b00,24, 0x1121b80,1, 0x1121b88,2, 0x1122000,451, 0x1122740,169, 0x1123000,260, 0x1123800,12, 0x1123a04,1, 0x1123a0c,8, 0x1123a44,1, 0x1123a50,7, 0x1123a84,1, 0x1123a94,27, 0x1123b04,3, 0x1123b14,3, 0x1123b24,3, 0x1123b34,21, 0x1123ba0,5, 0x1123bc0,1, 0x1123c04,1, 0x1123c14,3, 0x1123c24,3, 0x1123c34,3, 0x1123c44,1, 0x1123c60,8, 0x1123c84,1, 0x1123ca0,8, 0x1123cc4,1, 0x1123ce0,11, 0x1123e04,1, 0x1123e0c,2, 0x1123e18,1, 0x1123e20,3, 0x1123e30,3, 0x1123e40,1, 0x1123e48,3, 0x1123e58,3, 0x1123e70,4, 0x1124000,44, 0x1124100,19, 0x1124180,22, 0x1124200,27, 0x1124280,27, 0x1124300,11, 0x1124380,17, 0x1124400,27, 0x1124480,2, 0x11244a0,6, 0x11244c0,3, 0x11244d0,4, 0x1124500,35, 0x1124600,34, 0x1124700,26, 0x1124780,23, 0x1124800,15, 0x1124848,4, 0x1128000,20, 0x1128100,49, 0x1128200,20, 0x1128300,49, 0x1128400,20, 0x1128500,49, 0x1128600,20, 0x1128700,49, 0x1128800,8, 0x1129000,20, 0x1129100,49, 0x1129200,20, 0x1129300,49, 0x1129400,20, 0x1129500,49, 0x1129600,20, 0x1129700,49, 0x1129800,8, 0x112a000,15, 0x112a040,3, 0x112a050,1, 0x112a058,4, 0x112a080,10, 0x112a0b0,3, 0x112a0c4,7, 0x112a100,44, 0x112a200,5, 0x112a218,5, 0x112a280,20, 0x112a300,1, 0x112a800,52, 0x112a8e0,5, 0x112a900,5, 0x112aa00,52, 0x112aae0,5, 0x112ab00,5, 0x112ac00,18, 0x112ac50,10, 0x112ad00,36, 0x112ada0,5, 0x112adc0,5, 0x112b000,20, 0x112b080,20, 0x112b100,20, 0x112b180,20, 0x112b200,10, 0x112b400,10, 0x112b440,10, 0x112b480,10, 0x112b4c0,10, 0x112b500,1, 0x112b600,1, 0x112b608,32, 0x112b6a0,6, 0x112b6c0,6, 0x112b6e0,6, 0x112b700,6, 0x112b720,6, 0x112b740,6, 0x112b760,6, 0x112b780,6, 0x112b800,76, 0x112ba00,76, 0x112bc00,33, 0x112c000,76, 0x112c200,76, 0x112c400,33, 0x112c800,4, 0x112ca00,72, 0x112cc00,17, 0x112cc48,4, 0x112ce00,27, 0x112ce80,4, 0x112cec0,25, 0x112cf40,6, 0x112cf60,4, 0x112cf74,11, 0x112cfa4,16, 0x112d000,12, 0x112d040,2, 0x112d050,1, 0x112d058,5, 0x112d070,3, 0x1140000,23, 0x1140080,23, 0x1140100,23, 0x1140180,23, 0x1140200,13, 0x1140404,1, 0x114047c,33, 0x1140504,1, 0x1140514,3, 0x1140524,1, 0x114052c,1, 0x1140600,96, 0x1140784,1, 0x1140790,4, 0x1141000,76, 0x1142000,582, 0x1143000,13, 0x1143400,27, 0x1143480,4, 0x11434c0,25, 0x1143540,6, 0x1143560,4, 0x1143574,3, 0x1143600,8, 0x1143624,59, 0x1143800,4, 0x1143880,36, 0x1143980,17, 0x1143a00,6, 0x1143a20,165, 0x1143d00,12, 0x1143d40,2, 0x1143d50,3, 0x1143d60,1, 0x1143d80,12, 0x1143dc0,2, 0x1143dd0,3, 0x1143de0,1, 0x1143e00,12, 0x1143e40,2, 0x1143e50,3, 0x1143e60,1, 0x1143e80,12, 0x1143ec0,2, 0x1143ed0,3, 0x1143ee0,1, 0x1143f00,9, 0x1143f80,3, 0x1143f90,5, 0x1143fa8,5, 0x1143fc0,5, 0x1143fd8,2, 0x1144000,1, 0x1144010,6, 0x1144030,78, 0x1144180,18, 0x1148004,6, 0x1149000,650, 0x114a000,650, 0x114b000,2, 0x114b040,9, 0x114b080,7, 0x114c000,34, 0x114c090,9, 0x114c0b8,11, 0x1150000,11, 0x1150040,11, 0x1150080,11, 0x11500c0,11, 0x1150104,1, 0x115011c,10, 0x1150148,2, 0x1150154,1, 0x115015c,24, 0x11501c0,3, 0x11501d0,3, 0x11501e0,3, 0x11501f0,33, 0x1150280,3, 0x1150290,3, 0x11502a0,3, 0x11502b0,3, 0x11502c0,5, 0x11502d8,8, 0x1150400,145, 0x1150800,4, 0x1150880,25, 0x1150900,5, 0x1150920,1, 0x1151000,11, 0x1151040,11, 0x1151080,11, 0x11510c0,11, 0x1151100,11, 0x1151140,11, 0x1151180,11, 0x11511c0,11, 0x1151200,1, 0x1151208,19, 0x1151260,2, 0x115126c,3, 0x1151280,5, 0x1151400,3, 0x1151410,30, 0x11514a4,1, 0x11514b4,23, 0x1151520,6, 0x1151540,3, 0x1151560,2, 0x115156c,2, 0x1151580,2, 0x11515c0,3, 0x11515d0,3, 0x11515e0,1, 0x1151600,1, 0x1151800,1, 0x1151814,12, 0x1151848,5, 0x1151860,7, 0x1151880,5, 0x1151898,5, 0x11518b0,5, 0x11518c8,7, 0x11518e8,7, 0x1151908,5, 0x1151920,11, 0x1151950,55, 0x1151a40,2, 0x1151a4c,2, 0x1151a60,2, 0x1151a80,6, 0x1151ac0,3, 0x1151ad0,3, 0x1151ae0,1, 0x1151b00,1, 0x1152000,2, 0x1152010,47, 0x11520e0,6, 0x1152100,6, 0x1152120,2, 0x115212c,3, 0x1152140,6, 0x1152200,5, 0x1152224,1, 0x1152234,3, 0x1152280,20, 0x1152404,1, 0x11524e4,71, 0x1152604,1, 0x1152670,38, 0x1152800,27, 0x1152880,4, 0x11528c0,25, 0x1152940,6, 0x1152960,4, 0x1152974,11, 0x11529a4,7, 0x1152a00,12, 0x1152a40,2, 0x1152a50,1, 0x1152a58,5, 0x1152a70,5, 0x1160000,19, 0x1160080,19, 0x1160100,19, 0x1160180,19, 0x1160200,12, 0x1160280,1, 0x11602a0,6, 0x11602c0,6, 0x11602e0,6, 0x1160300,6, 0x1160320,6, 0x1160340,6, 0x1160360,6, 0x1160380,9, 0x11603c0,13, 0x1160400,3, 0x1160410,159, 0x1160690,16, 0x11606e0,5, 0x1160700,5, 0x1160720,5, 0x1160740,5, 0x1160760,5, 0x1160780,5, 0x11607a0,5, 0x11607c0,5, 0x11607e0,6, 0x1160800,6, 0x1160820,6, 0x1160840,6, 0x1160860,6, 0x1160880,6, 0x11608a0,6, 0x11608c0,6, 0x11608e0,6, 0x1160900,6, 0x1160920,6, 0x1160940,6, 0x1160960,6, 0x1160980,6, 0x11609a0,6, 0x11609c0,6, 0x1160a00,22, 0x1160a80,1, 0x1160a88,3, 0x1160aa0,5, 0x1160ac0,1, 0x1160ad0,3, 0x1160ae0,1, 0x1160af0,3, 0x1160b00,1, 0x1160b10,3, 0x1160b20,1, 0x1160b30,3, 0x1160b40,1, 0x1160b48,3, 0x1160b58,3, 0x1160b68,3, 0x1160b78,3, 0x1160b88,3, 0x1160ba0,3, 0x1160bb0,1, 0x1160bc0,3, 0x1160bd0,1, 0x1160be0,3, 0x1160bf0,1, 0x1160c00,3, 0x1160c10,1, 0x1160c20,3, 0x1160c30,1, 0x1160c40,3, 0x1160c50,1, 0x1160c80,6, 0x1160ca0,6, 0x1160cc0,1, 0x1160d00,1, 0x1160d10,3, 0x1160d20,1, 0x1160d30,3, 0x1160d40,1, 0x1160d60,5, 0x1160d80,1, 0x1160d90,3, 0x1160da0,1, 0x1160dc0,5, 0x1160de0,1, 0x1160df0,3, 0x1160e00,1, 0x1160e10,3, 0x1160e20,5, 0x1160e40,2, 0x1160e50,3, 0x1160e60,5, 0x1160e80,2, 0x1160e90,3, 0x1160ea0,3, 0x1160eb0,3, 0x1160ec0,3, 0x1160ed0,3, 0x1160ee0,5, 0x1160f00,3, 0x1160f20,5, 0x1160f40,5, 0x1160f60,3, 0x1160f70,3, 0x1160f80,5, 0x1160fa0,3, 0x1160fb0,3, 0x1160fc0,3, 0x1160fd0,3, 0x1160fe0,3, 0x1160ff0,3, 0x1161000,6, 0x1161020,3, 0x1161040,3, 0x1161050,3, 0x1161060,1, 0x1161080,3, 0x1161090,3, 0x11610a0,1, 0x11610c0,3, 0x11610e0,5, 0x1161100,11, 0x1161130,3, 0x1161140,3, 0x1161150,3, 0x1161160,5, 0x1161180,5, 0x11611a0,3, 0x11611b0,3, 0x11611c0,3, 0x11611d0,3, 0x11611e0,2, 0x11611f0,3, 0x1161200,7, 0x1161220,3, 0x1161230,2, 0x1161240,3, 0x1161250,3, 0x1161260,2, 0x1161400,15, 0x1161440,4, 0x1161460,17, 0x11614c0,6, 0x11614e0,4, 0x11614f4,11, 0x1161524,54, 0x1161604,1, 0x116160c,1, 0x1161614,1, 0x116161c,15, 0x1161660,6, 0x1161680,4, 0x11616a0,5, 0x11616c0,4, 0x11616e0,5, 0x1161700,4, 0x1161720,5, 0x1161740,4, 0x1161760,5, 0x1161780,4, 0x11617c0,15, 0x1161800,4, 0x1161880,19, 0x1161900,1, 0x1161980,24, 0x1161a00,24, 0x1161a80,24, 0x1161b00,24, 0x1161b80,1, 0x1161b88,2, 0x1162000,451, 0x1162740,169, 0x1163000,260, 0x1163800,12, 0x1163a04,1, 0x1163a0c,8, 0x1163a44,1, 0x1163a50,7, 0x1163a84,1, 0x1163a94,27, 0x1163b04,3, 0x1163b14,3, 0x1163b24,3, 0x1163b34,21, 0x1163ba0,5, 0x1163bc0,1, 0x1163c04,1, 0x1163c14,3, 0x1163c24,3, 0x1163c34,3, 0x1163c44,1, 0x1163c60,8, 0x1163c84,1, 0x1163ca0,8, 0x1163cc4,1, 0x1163ce0,11, 0x1163e04,1, 0x1163e0c,2, 0x1163e18,1, 0x1163e20,3, 0x1163e30,3, 0x1163e40,1, 0x1163e48,3, 0x1163e58,3, 0x1163e70,4, 0x1164000,44, 0x1164100,19, 0x1164180,22, 0x1164200,27, 0x1164280,27, 0x1164300,11, 0x1164380,17, 0x1164400,27, 0x1164480,2, 0x11644a0,6, 0x11644c0,3, 0x11644d0,4, 0x1164500,35, 0x1164600,34, 0x1164700,26, 0x1164780,23, 0x1164800,15, 0x1164848,4, 0x1168000,20, 0x1168100,49, 0x1168200,20, 0x1168300,49, 0x1168400,20, 0x1168500,49, 0x1168600,20, 0x1168700,49, 0x1168800,8, 0x1169000,20, 0x1169100,49, 0x1169200,20, 0x1169300,49, 0x1169400,20, 0x1169500,49, 0x1169600,20, 0x1169700,49, 0x1169800,8, 0x116a000,15, 0x116a040,3, 0x116a050,1, 0x116a058,4, 0x116a080,10, 0x116a0b0,3, 0x116a0c4,7, 0x116a100,44, 0x116a200,5, 0x116a218,5, 0x116a280,20, 0x116a300,1, 0x116a800,52, 0x116a8e0,5, 0x116a900,5, 0x116aa00,52, 0x116aae0,5, 0x116ab00,5, 0x116ac00,18, 0x116ac50,10, 0x116ad00,36, 0x116ada0,5, 0x116adc0,5, 0x116b000,20, 0x116b080,20, 0x116b100,20, 0x116b180,20, 0x116b200,10, 0x116b400,10, 0x116b440,10, 0x116b480,10, 0x116b4c0,10, 0x116b500,1, 0x116b600,1, 0x116b608,32, 0x116b6a0,6, 0x116b6c0,6, 0x116b6e0,6, 0x116b700,6, 0x116b720,6, 0x116b740,6, 0x116b760,6, 0x116b780,6, 0x116b800,76, 0x116ba00,76, 0x116bc00,33, 0x116c000,76, 0x116c200,76, 0x116c400,33, 0x116c800,4, 0x116ca00,72, 0x116cc00,17, 0x116cc48,4, 0x116ce00,27, 0x116ce80,4, 0x116cec0,25, 0x116cf40,6, 0x116cf60,4, 0x116cf74,11, 0x116cfa4,16, 0x116d000,12, 0x116d040,2, 0x116d050,1, 0x116d058,5, 0x116d070,3, 0x1180000,23, 0x1180080,23, 0x1180100,23, 0x1180180,23, 0x1180200,13, 0x1180404,1, 0x118047c,33, 0x1180504,1, 0x1180514,3, 0x1180524,1, 0x118052c,1, 0x1180600,96, 0x1180784,1, 0x1180790,4, 0x1181000,76, 0x1182000,582, 0x1183000,13, 0x1183400,27, 0x1183480,4, 0x11834c0,25, 0x1183540,6, 0x1183560,4, 0x1183574,3, 0x1183600,8, 0x1183624,59, 0x1183800,4, 0x1183880,36, 0x1183980,17, 0x1183a00,6, 0x1183a20,165, 0x1183d00,12, 0x1183d40,2, 0x1183d50,3, 0x1183d60,1, 0x1183d80,12, 0x1183dc0,2, 0x1183dd0,3, 0x1183de0,1, 0x1183e00,12, 0x1183e40,2, 0x1183e50,3, 0x1183e60,1, 0x1183e80,12, 0x1183ec0,2, 0x1183ed0,3, 0x1183ee0,1, 0x1183f00,9, 0x1183f80,3, 0x1183f90,5, 0x1183fa8,5, 0x1183fc0,5, 0x1183fd8,2, 0x1184000,1, 0x1184010,6, 0x1184030,78, 0x1184180,18, 0x1188004,6, 0x1189000,650, 0x118a000,650, 0x118b000,2, 0x118b040,9, 0x118b080,7, 0x118c000,34, 0x118c090,9, 0x118c0b8,11, 0x1190000,11, 0x1190040,11, 0x1190080,11, 0x11900c0,11, 0x1190104,1, 0x119011c,10, 0x1190148,2, 0x1190154,1, 0x119015c,24, 0x11901c0,3, 0x11901d0,3, 0x11901e0,3, 0x11901f0,33, 0x1190280,3, 0x1190290,3, 0x11902a0,3, 0x11902b0,3, 0x11902c0,5, 0x11902d8,8, 0x1190400,145, 0x1190800,4, 0x1190880,25, 0x1190900,5, 0x1190920,1, 0x1191000,11, 0x1191040,11, 0x1191080,11, 0x11910c0,11, 0x1191100,11, 0x1191140,11, 0x1191180,11, 0x11911c0,11, 0x1191200,1, 0x1191208,19, 0x1191260,2, 0x119126c,3, 0x1191280,5, 0x1191400,3, 0x1191410,30, 0x11914a4,1, 0x11914b4,23, 0x1191520,6, 0x1191540,3, 0x1191560,2, 0x119156c,2, 0x1191580,2, 0x11915c0,3, 0x11915d0,3, 0x11915e0,1, 0x1191600,1, 0x1191800,1, 0x1191814,12, 0x1191848,5, 0x1191860,7, 0x1191880,5, 0x1191898,5, 0x11918b0,5, 0x11918c8,7, 0x11918e8,7, 0x1191908,5, 0x1191920,11, 0x1191950,55, 0x1191a40,2, 0x1191a4c,2, 0x1191a60,2, 0x1191a80,6, 0x1191ac0,3, 0x1191ad0,3, 0x1191ae0,1, 0x1191b00,1, 0x1192000,2, 0x1192010,47, 0x11920e0,6, 0x1192100,6, 0x1192120,2, 0x119212c,3, 0x1192140,6, 0x1192200,5, 0x1192224,1, 0x1192234,3, 0x1192280,20, 0x1192404,1, 0x11924e4,71, 0x1192604,1, 0x1192670,38, 0x1192800,27, 0x1192880,4, 0x11928c0,25, 0x1192940,6, 0x1192960,4, 0x1192974,11, 0x11929a4,7, 0x1192a00,12, 0x1192a40,2, 0x1192a50,1, 0x1192a58,5, 0x1192a70,5, 0x11a0000,19, 0x11a0080,19, 0x11a0100,19, 0x11a0180,19, 0x11a0200,12, 0x11a0280,1, 0x11a02a0,6, 0x11a02c0,6, 0x11a02e0,6, 0x11a0300,6, 0x11a0320,6, 0x11a0340,6, 0x11a0360,6, 0x11a0380,9, 0x11a03c0,13, 0x11a0400,3, 0x11a0410,159, 0x11a0690,16, 0x11a06e0,5, 0x11a0700,5, 0x11a0720,5, 0x11a0740,5, 0x11a0760,5, 0x11a0780,5, 0x11a07a0,5, 0x11a07c0,5, 0x11a07e0,6, 0x11a0800,6, 0x11a0820,6, 0x11a0840,6, 0x11a0860,6, 0x11a0880,6, 0x11a08a0,6, 0x11a08c0,6, 0x11a08e0,6, 0x11a0900,6, 0x11a0920,6, 0x11a0940,6, 0x11a0960,6, 0x11a0980,6, 0x11a09a0,6, 0x11a09c0,6, 0x11a0a00,22, 0x11a0a80,1, 0x11a0a88,3, 0x11a0aa0,5, 0x11a0ac0,1, 0x11a0ad0,3, 0x11a0ae0,1, 0x11a0af0,3, 0x11a0b00,1, 0x11a0b10,3, 0x11a0b20,1, 0x11a0b30,3, 0x11a0b40,1, 0x11a0b48,3, 0x11a0b58,3, 0x11a0b68,3, 0x11a0b78,3, 0x11a0b88,3, 0x11a0ba0,3, 0x11a0bb0,1, 0x11a0bc0,3, 0x11a0bd0,1, 0x11a0be0,3, 0x11a0bf0,1, 0x11a0c00,3, 0x11a0c10,1, 0x11a0c20,3, 0x11a0c30,1, 0x11a0c40,3, 0x11a0c50,1, 0x11a0c80,6, 0x11a0ca0,6, 0x11a0cc0,1, 0x11a0d00,1, 0x11a0d10,3, 0x11a0d20,1, 0x11a0d30,3, 0x11a0d40,1, 0x11a0d60,5, 0x11a0d80,1, 0x11a0d90,3, 0x11a0da0,1, 0x11a0dc0,5, 0x11a0de0,1, 0x11a0df0,3, 0x11a0e00,1, 0x11a0e10,3, 0x11a0e20,5, 0x11a0e40,2, 0x11a0e50,3, 0x11a0e60,5, 0x11a0e80,2, 0x11a0e90,3, 0x11a0ea0,3, 0x11a0eb0,3, 0x11a0ec0,3, 0x11a0ed0,3, 0x11a0ee0,5, 0x11a0f00,3, 0x11a0f20,5, 0x11a0f40,5, 0x11a0f60,3, 0x11a0f70,3, 0x11a0f80,5, 0x11a0fa0,3, 0x11a0fb0,3, 0x11a0fc0,3, 0x11a0fd0,3, 0x11a0fe0,3, 0x11a0ff0,3, 0x11a1000,6, 0x11a1020,3, 0x11a1040,3, 0x11a1050,3, 0x11a1060,1, 0x11a1080,3, 0x11a1090,3, 0x11a10a0,1, 0x11a10c0,3, 0x11a10e0,5, 0x11a1100,11, 0x11a1130,3, 0x11a1140,3, 0x11a1150,3, 0x11a1160,5, 0x11a1180,5, 0x11a11a0,3, 0x11a11b0,3, 0x11a11c0,3, 0x11a11d0,3, 0x11a11e0,2, 0x11a11f0,3, 0x11a1200,7, 0x11a1220,3, 0x11a1230,2, 0x11a1240,3, 0x11a1250,3, 0x11a1260,2, 0x11a1400,15, 0x11a1440,4, 0x11a1460,17, 0x11a14c0,6, 0x11a14e0,4, 0x11a14f4,11, 0x11a1524,54, 0x11a1604,1, 0x11a160c,1, 0x11a1614,1, 0x11a161c,15, 0x11a1660,6, 0x11a1680,4, 0x11a16a0,5, 0x11a16c0,4, 0x11a16e0,5, 0x11a1700,4, 0x11a1720,5, 0x11a1740,4, 0x11a1760,5, 0x11a1780,4, 0x11a17c0,15, 0x11a1800,4, 0x11a1880,19, 0x11a1900,1, 0x11a1980,24, 0x11a1a00,24, 0x11a1a80,24, 0x11a1b00,24, 0x11a1b80,1, 0x11a1b88,2, 0x11a2000,451, 0x11a2740,169, 0x11a3000,260, 0x11a3800,12, 0x11a3a04,1, 0x11a3a0c,8, 0x11a3a44,1, 0x11a3a50,7, 0x11a3a84,1, 0x11a3a94,27, 0x11a3b04,3, 0x11a3b14,3, 0x11a3b24,3, 0x11a3b34,21, 0x11a3ba0,5, 0x11a3bc0,1, 0x11a3c04,1, 0x11a3c14,3, 0x11a3c24,3, 0x11a3c34,3, 0x11a3c44,1, 0x11a3c60,8, 0x11a3c84,1, 0x11a3ca0,8, 0x11a3cc4,1, 0x11a3ce0,11, 0x11a3e04,1, 0x11a3e0c,2, 0x11a3e18,1, 0x11a3e20,3, 0x11a3e30,3, 0x11a3e40,1, 0x11a3e48,3, 0x11a3e58,3, 0x11a3e70,4, 0x11a4000,44, 0x11a4100,19, 0x11a4180,22, 0x11a4200,27, 0x11a4280,27, 0x11a4300,11, 0x11a4380,17, 0x11a4400,27, 0x11a4480,2, 0x11a44a0,6, 0x11a44c0,3, 0x11a44d0,4, 0x11a4500,35, 0x11a4600,34, 0x11a4700,26, 0x11a4780,23, 0x11a4800,15, 0x11a4848,4, 0x11a8000,20, 0x11a8100,49, 0x11a8200,20, 0x11a8300,49, 0x11a8400,20, 0x11a8500,49, 0x11a8600,20, 0x11a8700,49, 0x11a8800,8, 0x11a9000,20, 0x11a9100,49, 0x11a9200,20, 0x11a9300,49, 0x11a9400,20, 0x11a9500,49, 0x11a9600,20, 0x11a9700,49, 0x11a9800,8, 0x11aa000,15, 0x11aa040,3, 0x11aa050,1, 0x11aa058,4, 0x11aa080,10, 0x11aa0b0,3, 0x11aa0c4,7, 0x11aa100,44, 0x11aa200,5, 0x11aa218,5, 0x11aa280,20, 0x11aa300,1, 0x11aa800,52, 0x11aa8e0,5, 0x11aa900,5, 0x11aaa00,52, 0x11aaae0,5, 0x11aab00,5, 0x11aac00,18, 0x11aac50,10, 0x11aad00,36, 0x11aada0,5, 0x11aadc0,5, 0x11ab000,20, 0x11ab080,20, 0x11ab100,20, 0x11ab180,20, 0x11ab200,10, 0x11ab400,10, 0x11ab440,10, 0x11ab480,10, 0x11ab4c0,10, 0x11ab500,1, 0x11ab600,1, 0x11ab608,32, 0x11ab6a0,6, 0x11ab6c0,6, 0x11ab6e0,6, 0x11ab700,6, 0x11ab720,6, 0x11ab740,6, 0x11ab760,6, 0x11ab780,6, 0x11ab800,76, 0x11aba00,76, 0x11abc00,33, 0x11ac000,76, 0x11ac200,76, 0x11ac400,33, 0x11ac800,4, 0x11aca00,72, 0x11acc00,17, 0x11acc48,4, 0x11ace00,27, 0x11ace80,4, 0x11acec0,25, 0x11acf40,6, 0x11acf60,4, 0x11acf74,11, 0x11acfa4,16, 0x11ad000,12, 0x11ad040,2, 0x11ad050,1, 0x11ad058,5, 0x11ad070,3, 0x11c0000,23, 0x11c0080,23, 0x11c0100,23, 0x11c0180,23, 0x11c0200,13, 0x11c0404,1, 0x11c047c,33, 0x11c0504,1, 0x11c0514,3, 0x11c0524,1, 0x11c052c,1, 0x11c0600,96, 0x11c0784,1, 0x11c0790,4, 0x11c1000,76, 0x11c2000,582, 0x11c3000,13, 0x11c3400,27, 0x11c3480,4, 0x11c34c0,25, 0x11c3540,6, 0x11c3560,4, 0x11c3574,3, 0x11c3600,8, 0x11c3624,59, 0x11c3800,4, 0x11c3880,36, 0x11c3980,17, 0x11c3a00,6, 0x11c3a20,165, 0x11c3d00,12, 0x11c3d40,2, 0x11c3d50,3, 0x11c3d60,1, 0x11c3d80,12, 0x11c3dc0,2, 0x11c3dd0,3, 0x11c3de0,1, 0x11c3e00,12, 0x11c3e40,2, 0x11c3e50,3, 0x11c3e60,1, 0x11c3e80,12, 0x11c3ec0,2, 0x11c3ed0,3, 0x11c3ee0,1, 0x11c3f00,9, 0x11c3f80,3, 0x11c3f90,5, 0x11c3fa8,5, 0x11c3fc0,5, 0x11c3fd8,2, 0x11c4000,1, 0x11c4010,6, 0x11c4030,78, 0x11c4180,18, 0x11c8004,6, 0x11c9000,650, 0x11ca000,650, 0x11cb000,2, 0x11cb040,9, 0x11cb080,7, 0x11cc000,34, 0x11cc090,9, 0x11cc0b8,11, 0x11d0000,11, 0x11d0040,11, 0x11d0080,11, 0x11d00c0,11, 0x11d0104,1, 0x11d011c,10, 0x11d0148,2, 0x11d0154,1, 0x11d015c,24, 0x11d01c0,3, 0x11d01d0,3, 0x11d01e0,3, 0x11d01f0,33, 0x11d0280,3, 0x11d0290,3, 0x11d02a0,3, 0x11d02b0,3, 0x11d02c0,5, 0x11d02d8,8, 0x11d0400,145, 0x11d0800,4, 0x11d0880,25, 0x11d0900,5, 0x11d0920,1, 0x11d1000,11, 0x11d1040,11, 0x11d1080,11, 0x11d10c0,11, 0x11d1100,11, 0x11d1140,11, 0x11d1180,11, 0x11d11c0,11, 0x11d1200,1, 0x11d1208,19, 0x11d1260,2, 0x11d126c,3, 0x11d1280,5, 0x11d1400,3, 0x11d1410,30, 0x11d14a4,1, 0x11d14b4,23, 0x11d1520,6, 0x11d1540,3, 0x11d1560,2, 0x11d156c,2, 0x11d1580,2, 0x11d15c0,3, 0x11d15d0,3, 0x11d15e0,1, 0x11d1600,1, 0x11d1800,1, 0x11d1814,12, 0x11d1848,5, 0x11d1860,7, 0x11d1880,5, 0x11d1898,5, 0x11d18b0,5, 0x11d18c8,7, 0x11d18e8,7, 0x11d1908,5, 0x11d1920,11, 0x11d1950,55, 0x11d1a40,2, 0x11d1a4c,2, 0x11d1a60,2, 0x11d1a80,6, 0x11d1ac0,3, 0x11d1ad0,3, 0x11d1ae0,1, 0x11d1b00,1, 0x11d2000,2, 0x11d2010,47, 0x11d20e0,6, 0x11d2100,6, 0x11d2120,2, 0x11d212c,3, 0x11d2140,6, 0x11d2200,5, 0x11d2224,1, 0x11d2234,3, 0x11d2280,20, 0x11d2404,1, 0x11d24e4,71, 0x11d2604,1, 0x11d2670,38, 0x11d2800,27, 0x11d2880,4, 0x11d28c0,25, 0x11d2940,6, 0x11d2960,4, 0x11d2974,11, 0x11d29a4,7, 0x11d2a00,12, 0x11d2a40,2, 0x11d2a50,1, 0x11d2a58,5, 0x11d2a70,5, 0x11e0000,19, 0x11e0080,19, 0x11e0100,19, 0x11e0180,19, 0x11e0200,12, 0x11e0280,1, 0x11e02a0,6, 0x11e02c0,6, 0x11e02e0,6, 0x11e0300,6, 0x11e0320,6, 0x11e0340,6, 0x11e0360,6, 0x11e0380,9, 0x11e03c0,13, 0x11e0400,3, 0x11e0410,159, 0x11e0690,16, 0x11e06e0,5, 0x11e0700,5, 0x11e0720,5, 0x11e0740,5, 0x11e0760,5, 0x11e0780,5, 0x11e07a0,5, 0x11e07c0,5, 0x11e07e0,6, 0x11e0800,6, 0x11e0820,6, 0x11e0840,6, 0x11e0860,6, 0x11e0880,6, 0x11e08a0,6, 0x11e08c0,6, 0x11e08e0,6, 0x11e0900,6, 0x11e0920,6, 0x11e0940,6, 0x11e0960,6, 0x11e0980,6, 0x11e09a0,6, 0x11e09c0,6, 0x11e0a00,22, 0x11e0a80,1, 0x11e0a88,3, 0x11e0aa0,5, 0x11e0ac0,1, 0x11e0ad0,3, 0x11e0ae0,1, 0x11e0af0,3, 0x11e0b00,1, 0x11e0b10,3, 0x11e0b20,1, 0x11e0b30,3, 0x11e0b40,1, 0x11e0b48,3, 0x11e0b58,3, 0x11e0b68,3, 0x11e0b78,3, 0x11e0b88,3, 0x11e0ba0,3, 0x11e0bb0,1, 0x11e0bc0,3, 0x11e0bd0,1, 0x11e0be0,3, 0x11e0bf0,1, 0x11e0c00,3, 0x11e0c10,1, 0x11e0c20,3, 0x11e0c30,1, 0x11e0c40,3, 0x11e0c50,1, 0x11e0c80,6, 0x11e0ca0,6, 0x11e0cc0,1, 0x11e0d00,1, 0x11e0d10,3, 0x11e0d20,1, 0x11e0d30,3, 0x11e0d40,1, 0x11e0d60,5, 0x11e0d80,1, 0x11e0d90,3, 0x11e0da0,1, 0x11e0dc0,5, 0x11e0de0,1, 0x11e0df0,3, 0x11e0e00,1, 0x11e0e10,3, 0x11e0e20,5, 0x11e0e40,2, 0x11e0e50,3, 0x11e0e60,5, 0x11e0e80,2, 0x11e0e90,3, 0x11e0ea0,3, 0x11e0eb0,3, 0x11e0ec0,3, 0x11e0ed0,3, 0x11e0ee0,5, 0x11e0f00,3, 0x11e0f20,5, 0x11e0f40,5, 0x11e0f60,3, 0x11e0f70,3, 0x11e0f80,5, 0x11e0fa0,3, 0x11e0fb0,3, 0x11e0fc0,3, 0x11e0fd0,3, 0x11e0fe0,3, 0x11e0ff0,3, 0x11e1000,6, 0x11e1020,3, 0x11e1040,3, 0x11e1050,3, 0x11e1060,1, 0x11e1080,3, 0x11e1090,3, 0x11e10a0,1, 0x11e10c0,3, 0x11e10e0,5, 0x11e1100,11, 0x11e1130,3, 0x11e1140,3, 0x11e1150,3, 0x11e1160,5, 0x11e1180,5, 0x11e11a0,3, 0x11e11b0,3, 0x11e11c0,3, 0x11e11d0,3, 0x11e11e0,2, 0x11e11f0,3, 0x11e1200,7, 0x11e1220,3, 0x11e1230,2, 0x11e1240,3, 0x11e1250,3, 0x11e1260,2, 0x11e1400,15, 0x11e1440,4, 0x11e1460,17, 0x11e14c0,6, 0x11e14e0,4, 0x11e14f4,11, 0x11e1524,54, 0x11e1604,1, 0x11e160c,1, 0x11e1614,1, 0x11e161c,15, 0x11e1660,6, 0x11e1680,4, 0x11e16a0,5, 0x11e16c0,4, 0x11e16e0,5, 0x11e1700,4, 0x11e1720,5, 0x11e1740,4, 0x11e1760,5, 0x11e1780,4, 0x11e17c0,15, 0x11e1800,4, 0x11e1880,19, 0x11e1900,1, 0x11e1980,24, 0x11e1a00,24, 0x11e1a80,24, 0x11e1b00,24, 0x11e1b80,1, 0x11e1b88,2, 0x11e2000,451, 0x11e2740,169, 0x11e3000,260, 0x11e3800,12, 0x11e3a04,1, 0x11e3a0c,8, 0x11e3a44,1, 0x11e3a50,7, 0x11e3a84,1, 0x11e3a94,27, 0x11e3b04,3, 0x11e3b14,3, 0x11e3b24,3, 0x11e3b34,21, 0x11e3ba0,5, 0x11e3bc0,1, 0x11e3c04,1, 0x11e3c14,3, 0x11e3c24,3, 0x11e3c34,3, 0x11e3c44,1, 0x11e3c60,8, 0x11e3c84,1, 0x11e3ca0,8, 0x11e3cc4,1, 0x11e3ce0,11, 0x11e3e04,1, 0x11e3e0c,2, 0x11e3e18,1, 0x11e3e20,3, 0x11e3e30,3, 0x11e3e40,1, 0x11e3e48,3, 0x11e3e58,3, 0x11e3e70,4, 0x11e4000,44, 0x11e4100,19, 0x11e4180,22, 0x11e4200,27, 0x11e4280,27, 0x11e4300,11, 0x11e4380,17, 0x11e4400,27, 0x11e4480,2, 0x11e44a0,6, 0x11e44c0,3, 0x11e44d0,4, 0x11e4500,35, 0x11e4600,34, 0x11e4700,26, 0x11e4780,23, 0x11e4800,15, 0x11e4848,4, 0x11e8000,20, 0x11e8100,49, 0x11e8200,20, 0x11e8300,49, 0x11e8400,20, 0x11e8500,49, 0x11e8600,20, 0x11e8700,49, 0x11e8800,8, 0x11e9000,20, 0x11e9100,49, 0x11e9200,20, 0x11e9300,49, 0x11e9400,20, 0x11e9500,49, 0x11e9600,20, 0x11e9700,49, 0x11e9800,8, 0x11ea000,15, 0x11ea040,3, 0x11ea050,1, 0x11ea058,4, 0x11ea080,10, 0x11ea0b0,3, 0x11ea0c4,7, 0x11ea100,44, 0x11ea200,5, 0x11ea218,5, 0x11ea280,20, 0x11ea300,1, 0x11ea800,52, 0x11ea8e0,5, 0x11ea900,5, 0x11eaa00,52, 0x11eaae0,5, 0x11eab00,5, 0x11eac00,18, 0x11eac50,10, 0x11ead00,36, 0x11eada0,5, 0x11eadc0,5, 0x11eb000,20, 0x11eb080,20, 0x11eb100,20, 0x11eb180,20, 0x11eb200,10, 0x11eb400,10, 0x11eb440,10, 0x11eb480,10, 0x11eb4c0,10, 0x11eb500,1, 0x11eb600,1, 0x11eb608,32, 0x11eb6a0,6, 0x11eb6c0,6, 0x11eb6e0,6, 0x11eb700,6, 0x11eb720,6, 0x11eb740,6, 0x11eb760,6, 0x11eb780,6, 0x11eb800,76, 0x11eba00,76, 0x11ebc00,33, 0x11ec000,76, 0x11ec200,76, 0x11ec400,33, 0x11ec800,4, 0x11eca00,72, 0x11ecc00,17, 0x11ecc48,4, 0x11ece00,27, 0x11ece80,4, 0x11ecec0,25, 0x11ecf40,6, 0x11ecf60,4, 0x11ecf74,11, 0x11ecfa4,16, 0x11ed000,12, 0x11ed040,2, 0x11ed050,1, 0x11ed058,5, 0x11ed070,3, 0x1200000,23, 0x1200080,23, 0x1200100,23, 0x1200180,23, 0x1200200,13, 0x1200404,1, 0x120047c,33, 0x1200504,1, 0x1200514,3, 0x1200524,1, 0x120052c,1, 0x1200600,96, 0x1200784,1, 0x1200790,4, 0x1201000,76, 0x1202000,582, 0x1203000,13, 0x1203400,27, 0x1203480,4, 0x12034c0,25, 0x1203540,6, 0x1203560,4, 0x1203574,3, 0x1203600,8, 0x1203624,59, 0x1203800,4, 0x1203880,36, 0x1203980,17, 0x1203a00,6, 0x1203a20,165, 0x1203d00,12, 0x1203d40,2, 0x1203d50,3, 0x1203d60,1, 0x1203d80,12, 0x1203dc0,2, 0x1203dd0,3, 0x1203de0,1, 0x1203e00,12, 0x1203e40,2, 0x1203e50,3, 0x1203e60,1, 0x1203e80,12, 0x1203ec0,2, 0x1203ed0,3, 0x1203ee0,1, 0x1203f00,9, 0x1203f80,3, 0x1203f90,5, 0x1203fa8,5, 0x1203fc0,5, 0x1203fd8,2, 0x1204000,1, 0x1204010,6, 0x1204030,78, 0x1204180,18, 0x1208004,6, 0x1209000,650, 0x120a000,650, 0x120b000,2, 0x120b040,9, 0x120b080,7, 0x120c000,34, 0x120c090,9, 0x120c0b8,11, 0x1210000,11, 0x1210040,11, 0x1210080,11, 0x12100c0,11, 0x1210104,1, 0x121011c,10, 0x1210148,2, 0x1210154,1, 0x121015c,24, 0x12101c0,3, 0x12101d0,3, 0x12101e0,3, 0x12101f0,33, 0x1210280,3, 0x1210290,3, 0x12102a0,3, 0x12102b0,3, 0x12102c0,5, 0x12102d8,8, 0x1210400,145, 0x1210800,4, 0x1210880,25, 0x1210900,5, 0x1210920,1, 0x1211000,11, 0x1211040,11, 0x1211080,11, 0x12110c0,11, 0x1211100,11, 0x1211140,11, 0x1211180,11, 0x12111c0,11, 0x1211200,1, 0x1211208,19, 0x1211260,2, 0x121126c,3, 0x1211280,5, 0x1211400,3, 0x1211410,30, 0x12114a4,1, 0x12114b4,23, 0x1211520,6, 0x1211540,3, 0x1211560,2, 0x121156c,2, 0x1211580,2, 0x12115c0,3, 0x12115d0,3, 0x12115e0,1, 0x1211600,1, 0x1211800,1, 0x1211814,12, 0x1211848,5, 0x1211860,7, 0x1211880,5, 0x1211898,5, 0x12118b0,5, 0x12118c8,7, 0x12118e8,7, 0x1211908,5, 0x1211920,11, 0x1211950,55, 0x1211a40,2, 0x1211a4c,2, 0x1211a60,2, 0x1211a80,6, 0x1211ac0,3, 0x1211ad0,3, 0x1211ae0,1, 0x1211b00,1, 0x1212000,2, 0x1212010,47, 0x12120e0,6, 0x1212100,6, 0x1212120,2, 0x121212c,3, 0x1212140,6, 0x1212200,5, 0x1212224,1, 0x1212234,3, 0x1212280,20, 0x1212404,1, 0x12124e4,71, 0x1212604,1, 0x1212670,38, 0x1212800,27, 0x1212880,4, 0x12128c0,25, 0x1212940,6, 0x1212960,4, 0x1212974,11, 0x12129a4,7, 0x1212a00,12, 0x1212a40,2, 0x1212a50,1, 0x1212a58,5, 0x1212a70,5, 0x1220000,19, 0x1220080,19, 0x1220100,19, 0x1220180,19, 0x1220200,12, 0x1220280,1, 0x12202a0,6, 0x12202c0,6, 0x12202e0,6, 0x1220300,6, 0x1220320,6, 0x1220340,6, 0x1220360,6, 0x1220380,9, 0x12203c0,13, 0x1220400,3, 0x1220410,159, 0x1220690,16, 0x12206e0,5, 0x1220700,5, 0x1220720,5, 0x1220740,5, 0x1220760,5, 0x1220780,5, 0x12207a0,5, 0x12207c0,5, 0x12207e0,6, 0x1220800,6, 0x1220820,6, 0x1220840,6, 0x1220860,6, 0x1220880,6, 0x12208a0,6, 0x12208c0,6, 0x12208e0,6, 0x1220900,6, 0x1220920,6, 0x1220940,6, 0x1220960,6, 0x1220980,6, 0x12209a0,6, 0x12209c0,6, 0x1220a00,22, 0x1220a80,1, 0x1220a88,3, 0x1220aa0,5, 0x1220ac0,1, 0x1220ad0,3, 0x1220ae0,1, 0x1220af0,3, 0x1220b00,1, 0x1220b10,3, 0x1220b20,1, 0x1220b30,3, 0x1220b40,1, 0x1220b48,3, 0x1220b58,3, 0x1220b68,3, 0x1220b78,3, 0x1220b88,3, 0x1220ba0,3, 0x1220bb0,1, 0x1220bc0,3, 0x1220bd0,1, 0x1220be0,3, 0x1220bf0,1, 0x1220c00,3, 0x1220c10,1, 0x1220c20,3, 0x1220c30,1, 0x1220c40,3, 0x1220c50,1, 0x1220c80,6, 0x1220ca0,6, 0x1220cc0,1, 0x1220d00,1, 0x1220d10,3, 0x1220d20,1, 0x1220d30,3, 0x1220d40,1, 0x1220d60,5, 0x1220d80,1, 0x1220d90,3, 0x1220da0,1, 0x1220dc0,5, 0x1220de0,1, 0x1220df0,3, 0x1220e00,1, 0x1220e10,3, 0x1220e20,5, 0x1220e40,2, 0x1220e50,3, 0x1220e60,5, 0x1220e80,2, 0x1220e90,3, 0x1220ea0,3, 0x1220eb0,3, 0x1220ec0,3, 0x1220ed0,3, 0x1220ee0,5, 0x1220f00,3, 0x1220f20,5, 0x1220f40,5, 0x1220f60,3, 0x1220f70,3, 0x1220f80,5, 0x1220fa0,3, 0x1220fb0,3, 0x1220fc0,3, 0x1220fd0,3, 0x1220fe0,3, 0x1220ff0,3, 0x1221000,6, 0x1221020,3, 0x1221040,3, 0x1221050,3, 0x1221060,1, 0x1221080,3, 0x1221090,3, 0x12210a0,1, 0x12210c0,3, 0x12210e0,5, 0x1221100,11, 0x1221130,3, 0x1221140,3, 0x1221150,3, 0x1221160,5, 0x1221180,5, 0x12211a0,3, 0x12211b0,3, 0x12211c0,3, 0x12211d0,3, 0x12211e0,2, 0x12211f0,3, 0x1221200,7, 0x1221220,3, 0x1221230,2, 0x1221240,3, 0x1221250,3, 0x1221260,2, 0x1221400,15, 0x1221440,4, 0x1221460,17, 0x12214c0,6, 0x12214e0,4, 0x12214f4,11, 0x1221524,54, 0x1221604,1, 0x122160c,1, 0x1221614,1, 0x122161c,15, 0x1221660,6, 0x1221680,4, 0x12216a0,5, 0x12216c0,4, 0x12216e0,5, 0x1221700,4, 0x1221720,5, 0x1221740,4, 0x1221760,5, 0x1221780,4, 0x12217c0,15, 0x1221800,4, 0x1221880,19, 0x1221900,1, 0x1221980,24, 0x1221a00,24, 0x1221a80,24, 0x1221b00,24, 0x1221b80,1, 0x1221b88,2, 0x1222000,451, 0x1222740,169, 0x1223000,260, 0x1223800,12, 0x1223a04,1, 0x1223a0c,8, 0x1223a44,1, 0x1223a50,7, 0x1223a84,1, 0x1223a94,27, 0x1223b04,3, 0x1223b14,3, 0x1223b24,3, 0x1223b34,21, 0x1223ba0,5, 0x1223bc0,1, 0x1223c04,1, 0x1223c14,3, 0x1223c24,3, 0x1223c34,3, 0x1223c44,1, 0x1223c60,8, 0x1223c84,1, 0x1223ca0,8, 0x1223cc4,1, 0x1223ce0,11, 0x1223e04,1, 0x1223e0c,2, 0x1223e18,1, 0x1223e20,3, 0x1223e30,3, 0x1223e40,1, 0x1223e48,3, 0x1223e58,3, 0x1223e70,4, 0x1224000,44, 0x1224100,19, 0x1224180,22, 0x1224200,27, 0x1224280,27, 0x1224300,11, 0x1224380,17, 0x1224400,27, 0x1224480,2, 0x12244a0,6, 0x12244c0,3, 0x12244d0,4, 0x1224500,35, 0x1224600,34, 0x1224700,26, 0x1224780,23, 0x1224800,15, 0x1224848,4, 0x1228000,20, 0x1228100,49, 0x1228200,20, 0x1228300,49, 0x1228400,20, 0x1228500,49, 0x1228600,20, 0x1228700,49, 0x1228800,8, 0x1229000,20, 0x1229100,49, 0x1229200,20, 0x1229300,49, 0x1229400,20, 0x1229500,49, 0x1229600,20, 0x1229700,49, 0x1229800,8, 0x122a000,15, 0x122a040,3, 0x122a050,1, 0x122a058,4, 0x122a080,10, 0x122a0b0,3, 0x122a0c4,7, 0x122a100,44, 0x122a200,5, 0x122a218,5, 0x122a280,20, 0x122a300,1, 0x122a800,52, 0x122a8e0,5, 0x122a900,5, 0x122aa00,52, 0x122aae0,5, 0x122ab00,5, 0x122ac00,18, 0x122ac50,10, 0x122ad00,36, 0x122ada0,5, 0x122adc0,5, 0x122b000,20, 0x122b080,20, 0x122b100,20, 0x122b180,20, 0x122b200,10, 0x122b400,10, 0x122b440,10, 0x122b480,10, 0x122b4c0,10, 0x122b500,1, 0x122b600,1, 0x122b608,32, 0x122b6a0,6, 0x122b6c0,6, 0x122b6e0,6, 0x122b700,6, 0x122b720,6, 0x122b740,6, 0x122b760,6, 0x122b780,6, 0x122b800,76, 0x122ba00,76, 0x122bc00,33, 0x122c000,76, 0x122c200,76, 0x122c400,33, 0x122c800,4, 0x122ca00,72, 0x122cc00,17, 0x122cc48,4, 0x122ce00,27, 0x122ce80,4, 0x122cec0,25, 0x122cf40,6, 0x122cf60,4, 0x122cf74,11, 0x122cfa4,16, 0x122d000,12, 0x122d040,2, 0x122d050,1, 0x122d058,5, 0x122d070,3, 0x1240000,23, 0x1240080,23, 0x1240100,23, 0x1240180,23, 0x1240200,13, 0x1240404,1, 0x124047c,33, 0x1240504,1, 0x1240514,3, 0x1240524,1, 0x124052c,1, 0x1240600,96, 0x1240784,1, 0x1240790,4, 0x1241000,76, 0x1242000,582, 0x1243000,13, 0x1243400,27, 0x1243480,4, 0x12434c0,25, 0x1243540,6, 0x1243560,4, 0x1243574,3, 0x1243600,8, 0x1243624,59, 0x1243800,4, 0x1243880,36, 0x1243980,17, 0x1243a00,6, 0x1243a20,165, 0x1243d00,12, 0x1243d40,2, 0x1243d50,3, 0x1243d60,1, 0x1243d80,12, 0x1243dc0,2, 0x1243dd0,3, 0x1243de0,1, 0x1243e00,12, 0x1243e40,2, 0x1243e50,3, 0x1243e60,1, 0x1243e80,12, 0x1243ec0,2, 0x1243ed0,3, 0x1243ee0,1, 0x1243f00,9, 0x1243f80,3, 0x1243f90,5, 0x1243fa8,5, 0x1243fc0,5, 0x1243fd8,2, 0x1244000,1, 0x1244010,6, 0x1244030,78, 0x1244180,18, 0x1248004,6, 0x1249000,650, 0x124a000,650, 0x124b000,2, 0x124b040,9, 0x124b080,7, 0x124c000,34, 0x124c090,9, 0x124c0b8,11, 0x1250000,11, 0x1250040,11, 0x1250080,11, 0x12500c0,11, 0x1250104,1, 0x125011c,10, 0x1250148,2, 0x1250154,1, 0x125015c,24, 0x12501c0,3, 0x12501d0,3, 0x12501e0,3, 0x12501f0,33, 0x1250280,3, 0x1250290,3, 0x12502a0,3, 0x12502b0,3, 0x12502c0,5, 0x12502d8,8, 0x1250400,145, 0x1250800,4, 0x1250880,25, 0x1250900,5, 0x1250920,1, 0x1251000,11, 0x1251040,11, 0x1251080,11, 0x12510c0,11, 0x1251100,11, 0x1251140,11, 0x1251180,11, 0x12511c0,11, 0x1251200,1, 0x1251208,19, 0x1251260,2, 0x125126c,3, 0x1251280,5, 0x1251400,3, 0x1251410,30, 0x12514a4,1, 0x12514b4,23, 0x1251520,6, 0x1251540,3, 0x1251560,2, 0x125156c,2, 0x1251580,2, 0x12515c0,3, 0x12515d0,3, 0x12515e0,1, 0x1251600,1, 0x1251800,1, 0x1251814,12, 0x1251848,5, 0x1251860,7, 0x1251880,5, 0x1251898,5, 0x12518b0,5, 0x12518c8,7, 0x12518e8,7, 0x1251908,5, 0x1251920,11, 0x1251950,55, 0x1251a40,2, 0x1251a4c,2, 0x1251a60,2, 0x1251a80,6, 0x1251ac0,3, 0x1251ad0,3, 0x1251ae0,1, 0x1251b00,1, 0x1252000,2, 0x1252010,47, 0x12520e0,6, 0x1252100,6, 0x1252120,2, 0x125212c,3, 0x1252140,6, 0x1252200,5, 0x1252224,1, 0x1252234,3, 0x1252280,20, 0x1252404,1, 0x12524e4,71, 0x1252604,1, 0x1252670,38, 0x1252800,27, 0x1252880,4, 0x12528c0,25, 0x1252940,6, 0x1252960,4, 0x1252974,11, 0x12529a4,7, 0x1252a00,12, 0x1252a40,2, 0x1252a50,1, 0x1252a58,5, 0x1252a70,5, 0x1260000,19, 0x1260080,19, 0x1260100,19, 0x1260180,19, 0x1260200,12, 0x1260280,1, 0x12602a0,6, 0x12602c0,6, 0x12602e0,6, 0x1260300,6, 0x1260320,6, 0x1260340,6, 0x1260360,6, 0x1260380,9, 0x12603c0,13, 0x1260400,3, 0x1260410,159, 0x1260690,16, 0x12606e0,5, 0x1260700,5, 0x1260720,5, 0x1260740,5, 0x1260760,5, 0x1260780,5, 0x12607a0,5, 0x12607c0,5, 0x12607e0,6, 0x1260800,6, 0x1260820,6, 0x1260840,6, 0x1260860,6, 0x1260880,6, 0x12608a0,6, 0x12608c0,6, 0x12608e0,6, 0x1260900,6, 0x1260920,6, 0x1260940,6, 0x1260960,6, 0x1260980,6, 0x12609a0,6, 0x12609c0,6, 0x1260a00,22, 0x1260a80,1, 0x1260a88,3, 0x1260aa0,5, 0x1260ac0,1, 0x1260ad0,3, 0x1260ae0,1, 0x1260af0,3, 0x1260b00,1, 0x1260b10,3, 0x1260b20,1, 0x1260b30,3, 0x1260b40,1, 0x1260b48,3, 0x1260b58,3, 0x1260b68,3, 0x1260b78,3, 0x1260b88,3, 0x1260ba0,3, 0x1260bb0,1, 0x1260bc0,3, 0x1260bd0,1, 0x1260be0,3, 0x1260bf0,1, 0x1260c00,3, 0x1260c10,1, 0x1260c20,3, 0x1260c30,1, 0x1260c40,3, 0x1260c50,1, 0x1260c80,6, 0x1260ca0,6, 0x1260cc0,1, 0x1260d00,1, 0x1260d10,3, 0x1260d20,1, 0x1260d30,3, 0x1260d40,1, 0x1260d60,5, 0x1260d80,1, 0x1260d90,3, 0x1260da0,1, 0x1260dc0,5, 0x1260de0,1, 0x1260df0,3, 0x1260e00,1, 0x1260e10,3, 0x1260e20,5, 0x1260e40,2, 0x1260e50,3, 0x1260e60,5, 0x1260e80,2, 0x1260e90,3, 0x1260ea0,3, 0x1260eb0,3, 0x1260ec0,3, 0x1260ed0,3, 0x1260ee0,5, 0x1260f00,3, 0x1260f20,5, 0x1260f40,5, 0x1260f60,3, 0x1260f70,3, 0x1260f80,5, 0x1260fa0,3, 0x1260fb0,3, 0x1260fc0,3, 0x1260fd0,3, 0x1260fe0,3, 0x1260ff0,3, 0x1261000,6, 0x1261020,3, 0x1261040,3, 0x1261050,3, 0x1261060,1, 0x1261080,3, 0x1261090,3, 0x12610a0,1, 0x12610c0,3, 0x12610e0,5, 0x1261100,11, 0x1261130,3, 0x1261140,3, 0x1261150,3, 0x1261160,5, 0x1261180,5, 0x12611a0,3, 0x12611b0,3, 0x12611c0,3, 0x12611d0,3, 0x12611e0,2, 0x12611f0,3, 0x1261200,7, 0x1261220,3, 0x1261230,2, 0x1261240,3, 0x1261250,3, 0x1261260,2, 0x1261400,15, 0x1261440,4, 0x1261460,17, 0x12614c0,6, 0x12614e0,4, 0x12614f4,11, 0x1261524,54, 0x1261604,1, 0x126160c,1, 0x1261614,1, 0x126161c,15, 0x1261660,6, 0x1261680,4, 0x12616a0,5, 0x12616c0,4, 0x12616e0,5, 0x1261700,4, 0x1261720,5, 0x1261740,4, 0x1261760,5, 0x1261780,4, 0x12617c0,15, 0x1261800,4, 0x1261880,19, 0x1261900,1, 0x1261980,24, 0x1261a00,24, 0x1261a80,24, 0x1261b00,24, 0x1261b80,1, 0x1261b88,2, 0x1262000,451, 0x1262740,169, 0x1263000,260, 0x1263800,12, 0x1263a04,1, 0x1263a0c,8, 0x1263a44,1, 0x1263a50,7, 0x1263a84,1, 0x1263a94,27, 0x1263b04,3, 0x1263b14,3, 0x1263b24,3, 0x1263b34,21, 0x1263ba0,5, 0x1263bc0,1, 0x1263c04,1, 0x1263c14,3, 0x1263c24,3, 0x1263c34,3, 0x1263c44,1, 0x1263c60,8, 0x1263c84,1, 0x1263ca0,8, 0x1263cc4,1, 0x1263ce0,11, 0x1263e04,1, 0x1263e0c,2, 0x1263e18,1, 0x1263e20,3, 0x1263e30,3, 0x1263e40,1, 0x1263e48,3, 0x1263e58,3, 0x1263e70,4, 0x1264000,44, 0x1264100,19, 0x1264180,22, 0x1264200,27, 0x1264280,27, 0x1264300,11, 0x1264380,17, 0x1264400,27, 0x1264480,2, 0x12644a0,6, 0x12644c0,3, 0x12644d0,4, 0x1264500,35, 0x1264600,34, 0x1264700,26, 0x1264780,23, 0x1264800,15, 0x1264848,4, 0x1268000,20, 0x1268100,49, 0x1268200,20, 0x1268300,49, 0x1268400,20, 0x1268500,49, 0x1268600,20, 0x1268700,49, 0x1268800,8, 0x1269000,20, 0x1269100,49, 0x1269200,20, 0x1269300,49, 0x1269400,20, 0x1269500,49, 0x1269600,20, 0x1269700,49, 0x1269800,8, 0x126a000,15, 0x126a040,3, 0x126a050,1, 0x126a058,4, 0x126a080,10, 0x126a0b0,3, 0x126a0c4,7, 0x126a100,44, 0x126a200,5, 0x126a218,5, 0x126a280,20, 0x126a300,1, 0x126a800,52, 0x126a8e0,5, 0x126a900,5, 0x126aa00,52, 0x126aae0,5, 0x126ab00,5, 0x126ac00,18, 0x126ac50,10, 0x126ad00,36, 0x126ada0,5, 0x126adc0,5, 0x126b000,20, 0x126b080,20, 0x126b100,20, 0x126b180,20, 0x126b200,10, 0x126b400,10, 0x126b440,10, 0x126b480,10, 0x126b4c0,10, 0x126b500,1, 0x126b600,1, 0x126b608,32, 0x126b6a0,6, 0x126b6c0,6, 0x126b6e0,6, 0x126b700,6, 0x126b720,6, 0x126b740,6, 0x126b760,6, 0x126b780,6, 0x126b800,76, 0x126ba00,76, 0x126bc00,33, 0x126c000,76, 0x126c200,76, 0x126c400,33, 0x126c800,4, 0x126ca00,72, 0x126cc00,17, 0x126cc48,4, 0x126ce00,27, 0x126ce80,4, 0x126cec0,25, 0x126cf40,6, 0x126cf60,4, 0x126cf74,11, 0x126cfa4,16, 0x126d000,12, 0x126d040,2, 0x126d050,1, 0x126d058,5, 0x126d070,3, 0x1280000,23, 0x1280080,23, 0x1280100,23, 0x1280180,23, 0x1280200,13, 0x1280404,1, 0x128047c,33, 0x1280504,1, 0x1280514,3, 0x1280524,1, 0x128052c,1, 0x1280600,96, 0x1280784,1, 0x1280790,4, 0x1281000,76, 0x1282000,582, 0x1283000,13, 0x1283400,27, 0x1283480,4, 0x12834c0,25, 0x1283540,6, 0x1283560,4, 0x1283574,3, 0x1283600,8, 0x1283624,59, 0x1283800,4, 0x1283880,36, 0x1283980,17, 0x1283a00,6, 0x1283a20,165, 0x1283d00,12, 0x1283d40,2, 0x1283d50,3, 0x1283d60,1, 0x1283d80,12, 0x1283dc0,2, 0x1283dd0,3, 0x1283de0,1, 0x1283e00,12, 0x1283e40,2, 0x1283e50,3, 0x1283e60,1, 0x1283e80,12, 0x1283ec0,2, 0x1283ed0,3, 0x1283ee0,1, 0x1283f00,9, 0x1283f80,3, 0x1283f90,5, 0x1283fa8,5, 0x1283fc0,5, 0x1283fd8,2, 0x1284000,1, 0x1284010,6, 0x1284030,78, 0x1284180,18, 0x1288004,6, 0x1289000,650, 0x128a000,650, 0x128b000,2, 0x128b040,9, 0x128b080,7, 0x128c000,34, 0x128c090,9, 0x128c0b8,11, 0x1290000,11, 0x1290040,11, 0x1290080,11, 0x12900c0,11, 0x1290104,1, 0x129011c,10, 0x1290148,2, 0x1290154,1, 0x129015c,24, 0x12901c0,3, 0x12901d0,3, 0x12901e0,3, 0x12901f0,33, 0x1290280,3, 0x1290290,3, 0x12902a0,3, 0x12902b0,3, 0x12902c0,5, 0x12902d8,8, 0x1290400,145, 0x1290800,4, 0x1290880,25, 0x1290900,5, 0x1290920,1, 0x1291000,11, 0x1291040,11, 0x1291080,11, 0x12910c0,11, 0x1291100,11, 0x1291140,11, 0x1291180,11, 0x12911c0,11, 0x1291200,1, 0x1291208,19, 0x1291260,2, 0x129126c,3, 0x1291280,5, 0x1291400,3, 0x1291410,30, 0x12914a4,1, 0x12914b4,23, 0x1291520,6, 0x1291540,3, 0x1291560,2, 0x129156c,2, 0x1291580,2, 0x12915c0,3, 0x12915d0,3, 0x12915e0,1, 0x1291600,1, 0x1291800,1, 0x1291814,12, 0x1291848,5, 0x1291860,7, 0x1291880,5, 0x1291898,5, 0x12918b0,5, 0x12918c8,7, 0x12918e8,7, 0x1291908,5, 0x1291920,11, 0x1291950,55, 0x1291a40,2, 0x1291a4c,2, 0x1291a60,2, 0x1291a80,6, 0x1291ac0,3, 0x1291ad0,3, 0x1291ae0,1, 0x1291b00,1, 0x1292000,2, 0x1292010,47, 0x12920e0,6, 0x1292100,6, 0x1292120,2, 0x129212c,3, 0x1292140,6, 0x1292200,5, 0x1292224,1, 0x1292234,3, 0x1292280,20, 0x1292404,1, 0x12924e4,71, 0x1292604,1, 0x1292670,38, 0x1292800,27, 0x1292880,4, 0x12928c0,25, 0x1292940,6, 0x1292960,4, 0x1292974,11, 0x12929a4,7, 0x1292a00,12, 0x1292a40,2, 0x1292a50,1, 0x1292a58,5, 0x1292a70,5, 0x12a0000,19, 0x12a0080,19, 0x12a0100,19, 0x12a0180,19, 0x12a0200,12, 0x12a0280,1, 0x12a02a0,6, 0x12a02c0,6, 0x12a02e0,6, 0x12a0300,6, 0x12a0320,6, 0x12a0340,6, 0x12a0360,6, 0x12a0380,9, 0x12a03c0,13, 0x12a0400,3, 0x12a0410,159, 0x12a0690,16, 0x12a06e0,5, 0x12a0700,5, 0x12a0720,5, 0x12a0740,5, 0x12a0760,5, 0x12a0780,5, 0x12a07a0,5, 0x12a07c0,5, 0x12a07e0,6, 0x12a0800,6, 0x12a0820,6, 0x12a0840,6, 0x12a0860,6, 0x12a0880,6, 0x12a08a0,6, 0x12a08c0,6, 0x12a08e0,6, 0x12a0900,6, 0x12a0920,6, 0x12a0940,6, 0x12a0960,6, 0x12a0980,6, 0x12a09a0,6, 0x12a09c0,6, 0x12a0a00,22, 0x12a0a80,1, 0x12a0a88,3, 0x12a0aa0,5, 0x12a0ac0,1, 0x12a0ad0,3, 0x12a0ae0,1, 0x12a0af0,3, 0x12a0b00,1, 0x12a0b10,3, 0x12a0b20,1, 0x12a0b30,3, 0x12a0b40,1, 0x12a0b48,3, 0x12a0b58,3, 0x12a0b68,3, 0x12a0b78,3, 0x12a0b88,3, 0x12a0ba0,3, 0x12a0bb0,1, 0x12a0bc0,3, 0x12a0bd0,1, 0x12a0be0,3, 0x12a0bf0,1, 0x12a0c00,3, 0x12a0c10,1, 0x12a0c20,3, 0x12a0c30,1, 0x12a0c40,3, 0x12a0c50,1, 0x12a0c80,6, 0x12a0ca0,6, 0x12a0cc0,1, 0x12a0d00,1, 0x12a0d10,3, 0x12a0d20,1, 0x12a0d30,3, 0x12a0d40,1, 0x12a0d60,5, 0x12a0d80,1, 0x12a0d90,3, 0x12a0da0,1, 0x12a0dc0,5, 0x12a0de0,1, 0x12a0df0,3, 0x12a0e00,1, 0x12a0e10,3, 0x12a0e20,5, 0x12a0e40,2, 0x12a0e50,3, 0x12a0e60,5, 0x12a0e80,2, 0x12a0e90,3, 0x12a0ea0,3, 0x12a0eb0,3, 0x12a0ec0,3, 0x12a0ed0,3, 0x12a0ee0,5, 0x12a0f00,3, 0x12a0f20,5, 0x12a0f40,5, 0x12a0f60,3, 0x12a0f70,3, 0x12a0f80,5, 0x12a0fa0,3, 0x12a0fb0,3, 0x12a0fc0,3, 0x12a0fd0,3, 0x12a0fe0,3, 0x12a0ff0,3, 0x12a1000,6, 0x12a1020,3, 0x12a1040,3, 0x12a1050,3, 0x12a1060,1, 0x12a1080,3, 0x12a1090,3, 0x12a10a0,1, 0x12a10c0,3, 0x12a10e0,5, 0x12a1100,11, 0x12a1130,3, 0x12a1140,3, 0x12a1150,3, 0x12a1160,5, 0x12a1180,5, 0x12a11a0,3, 0x12a11b0,3, 0x12a11c0,3, 0x12a11d0,3, 0x12a11e0,2, 0x12a11f0,3, 0x12a1200,7, 0x12a1220,3, 0x12a1230,2, 0x12a1240,3, 0x12a1250,3, 0x12a1260,2, 0x12a1400,15, 0x12a1440,4, 0x12a1460,17, 0x12a14c0,6, 0x12a14e0,4, 0x12a14f4,11, 0x12a1524,54, 0x12a1604,1, 0x12a160c,1, 0x12a1614,1, 0x12a161c,15, 0x12a1660,6, 0x12a1680,4, 0x12a16a0,5, 0x12a16c0,4, 0x12a16e0,5, 0x12a1700,4, 0x12a1720,5, 0x12a1740,4, 0x12a1760,5, 0x12a1780,4, 0x12a17c0,15, 0x12a1800,4, 0x12a1880,19, 0x12a1900,1, 0x12a1980,24, 0x12a1a00,24, 0x12a1a80,24, 0x12a1b00,24, 0x12a1b80,1, 0x12a1b88,2, 0x12a2000,451, 0x12a2740,169, 0x12a3000,260, 0x12a3800,12, 0x12a3a04,1, 0x12a3a0c,8, 0x12a3a44,1, 0x12a3a50,7, 0x12a3a84,1, 0x12a3a94,27, 0x12a3b04,3, 0x12a3b14,3, 0x12a3b24,3, 0x12a3b34,21, 0x12a3ba0,5, 0x12a3bc0,1, 0x12a3c04,1, 0x12a3c14,3, 0x12a3c24,3, 0x12a3c34,3, 0x12a3c44,1, 0x12a3c60,8, 0x12a3c84,1, 0x12a3ca0,8, 0x12a3cc4,1, 0x12a3ce0,11, 0x12a3e04,1, 0x12a3e0c,2, 0x12a3e18,1, 0x12a3e20,3, 0x12a3e30,3, 0x12a3e40,1, 0x12a3e48,3, 0x12a3e58,3, 0x12a3e70,4, 0x12a4000,44, 0x12a4100,19, 0x12a4180,22, 0x12a4200,27, 0x12a4280,27, 0x12a4300,11, 0x12a4380,17, 0x12a4400,27, 0x12a4480,2, 0x12a44a0,6, 0x12a44c0,3, 0x12a44d0,4, 0x12a4500,35, 0x12a4600,34, 0x12a4700,26, 0x12a4780,23, 0x12a4800,15, 0x12a4848,4, 0x12a8000,20, 0x12a8100,49, 0x12a8200,20, 0x12a8300,49, 0x12a8400,20, 0x12a8500,49, 0x12a8600,20, 0x12a8700,49, 0x12a8800,8, 0x12a9000,20, 0x12a9100,49, 0x12a9200,20, 0x12a9300,49, 0x12a9400,20, 0x12a9500,49, 0x12a9600,20, 0x12a9700,49, 0x12a9800,8, 0x12aa000,15, 0x12aa040,3, 0x12aa050,1, 0x12aa058,4, 0x12aa080,10, 0x12aa0b0,3, 0x12aa0c4,7, 0x12aa100,44, 0x12aa200,5, 0x12aa218,5, 0x12aa280,20, 0x12aa300,1, 0x12aa800,52, 0x12aa8e0,5, 0x12aa900,5, 0x12aaa00,52, 0x12aaae0,5, 0x12aab00,5, 0x12aac00,18, 0x12aac50,10, 0x12aad00,36, 0x12aada0,5, 0x12aadc0,5, 0x12ab000,20, 0x12ab080,20, 0x12ab100,20, 0x12ab180,20, 0x12ab200,10, 0x12ab400,10, 0x12ab440,10, 0x12ab480,10, 0x12ab4c0,10, 0x12ab500,1, 0x12ab600,1, 0x12ab608,32, 0x12ab6a0,6, 0x12ab6c0,6, 0x12ab6e0,6, 0x12ab700,6, 0x12ab720,6, 0x12ab740,6, 0x12ab760,6, 0x12ab780,6, 0x12ab800,76, 0x12aba00,76, 0x12abc00,33, 0x12ac000,76, 0x12ac200,76, 0x12ac400,33, 0x12ac800,4, 0x12aca00,72, 0x12acc00,17, 0x12acc48,4, 0x12ace00,27, 0x12ace80,4, 0x12acec0,25, 0x12acf40,6, 0x12acf60,4, 0x12acf74,11, 0x12acfa4,16, 0x12ad000,12, 0x12ad040,2, 0x12ad050,1, 0x12ad058,5, 0x12ad070,3, 0x12c0000,23, 0x12c0080,23, 0x12c0100,23, 0x12c0180,23, 0x12c0200,13, 0x12c0404,1, 0x12c047c,33, 0x12c0504,1, 0x12c0514,3, 0x12c0524,1, 0x12c052c,1, 0x12c0600,96, 0x12c0784,1, 0x12c0790,4, 0x12c1000,76, 0x12c2000,582, 0x12c3000,13, 0x12c3400,27, 0x12c3480,4, 0x12c34c0,25, 0x12c3540,6, 0x12c3560,4, 0x12c3574,3, 0x12c3600,8, 0x12c3624,59, 0x12c3800,4, 0x12c3880,36, 0x12c3980,17, 0x12c3a00,6, 0x12c3a20,165, 0x12c3d00,12, 0x12c3d40,2, 0x12c3d50,3, 0x12c3d60,1, 0x12c3d80,12, 0x12c3dc0,2, 0x12c3dd0,3, 0x12c3de0,1, 0x12c3e00,12, 0x12c3e40,2, 0x12c3e50,3, 0x12c3e60,1, 0x12c3e80,12, 0x12c3ec0,2, 0x12c3ed0,3, 0x12c3ee0,1, 0x12c3f00,9, 0x12c3f80,3, 0x12c3f90,5, 0x12c3fa8,5, 0x12c3fc0,5, 0x12c3fd8,2, 0x12c4000,1, 0x12c4010,6, 0x12c4030,78, 0x12c4180,18, 0x12c8004,6, 0x12c9000,650, 0x12ca000,650, 0x12cb000,2, 0x12cb040,9, 0x12cb080,7, 0x12cc000,34, 0x12cc090,9, 0x12cc0b8,11, 0x12d0000,11, 0x12d0040,11, 0x12d0080,11, 0x12d00c0,11, 0x12d0104,1, 0x12d011c,10, 0x12d0148,2, 0x12d0154,1, 0x12d015c,24, 0x12d01c0,3, 0x12d01d0,3, 0x12d01e0,3, 0x12d01f0,33, 0x12d0280,3, 0x12d0290,3, 0x12d02a0,3, 0x12d02b0,3, 0x12d02c0,5, 0x12d02d8,8, 0x12d0400,145, 0x12d0800,4, 0x12d0880,25, 0x12d0900,5, 0x12d0920,1, 0x12d1000,11, 0x12d1040,11, 0x12d1080,11, 0x12d10c0,11, 0x12d1100,11, 0x12d1140,11, 0x12d1180,11, 0x12d11c0,11, 0x12d1200,1, 0x12d1208,19, 0x12d1260,2, 0x12d126c,3, 0x12d1280,5, 0x12d1400,3, 0x12d1410,30, 0x12d14a4,1, 0x12d14b4,23, 0x12d1520,6, 0x12d1540,3, 0x12d1560,2, 0x12d156c,2, 0x12d1580,2, 0x12d15c0,3, 0x12d15d0,3, 0x12d15e0,1, 0x12d1600,1, 0x12d1800,1, 0x12d1814,12, 0x12d1848,5, 0x12d1860,7, 0x12d1880,5, 0x12d1898,5, 0x12d18b0,5, 0x12d18c8,7, 0x12d18e8,7, 0x12d1908,5, 0x12d1920,11, 0x12d1950,55, 0x12d1a40,2, 0x12d1a4c,2, 0x12d1a60,2, 0x12d1a80,6, 0x12d1ac0,3, 0x12d1ad0,3, 0x12d1ae0,1, 0x12d1b00,1, 0x12d2000,2, 0x12d2010,47, 0x12d20e0,6, 0x12d2100,6, 0x12d2120,2, 0x12d212c,3, 0x12d2140,6, 0x12d2200,5, 0x12d2224,1, 0x12d2234,3, 0x12d2280,20, 0x12d2404,1, 0x12d24e4,71, 0x12d2604,1, 0x12d2670,38, 0x12d2800,27, 0x12d2880,4, 0x12d28c0,25, 0x12d2940,6, 0x12d2960,4, 0x12d2974,11, 0x12d29a4,7, 0x12d2a00,12, 0x12d2a40,2, 0x12d2a50,1, 0x12d2a58,5, 0x12d2a70,5, 0x12e0000,19, 0x12e0080,19, 0x12e0100,19, 0x12e0180,19, 0x12e0200,12, 0x12e0280,1, 0x12e02a0,6, 0x12e02c0,6, 0x12e02e0,6, 0x12e0300,6, 0x12e0320,6, 0x12e0340,6, 0x12e0360,6, 0x12e0380,9, 0x12e03c0,13, 0x12e0400,3, 0x12e0410,159, 0x12e0690,16, 0x12e06e0,5, 0x12e0700,5, 0x12e0720,5, 0x12e0740,5, 0x12e0760,5, 0x12e0780,5, 0x12e07a0,5, 0x12e07c0,5, 0x12e07e0,6, 0x12e0800,6, 0x12e0820,6, 0x12e0840,6, 0x12e0860,6, 0x12e0880,6, 0x12e08a0,6, 0x12e08c0,6, 0x12e08e0,6, 0x12e0900,6, 0x12e0920,6, 0x12e0940,6, 0x12e0960,6, 0x12e0980,6, 0x12e09a0,6, 0x12e09c0,6, 0x12e0a00,22, 0x12e0a80,1, 0x12e0a88,3, 0x12e0aa0,5, 0x12e0ac0,1, 0x12e0ad0,3, 0x12e0ae0,1, 0x12e0af0,3, 0x12e0b00,1, 0x12e0b10,3, 0x12e0b20,1, 0x12e0b30,3, 0x12e0b40,1, 0x12e0b48,3, 0x12e0b58,3, 0x12e0b68,3, 0x12e0b78,3, 0x12e0b88,3, 0x12e0ba0,3, 0x12e0bb0,1, 0x12e0bc0,3, 0x12e0bd0,1, 0x12e0be0,3, 0x12e0bf0,1, 0x12e0c00,3, 0x12e0c10,1, 0x12e0c20,3, 0x12e0c30,1, 0x12e0c40,3, 0x12e0c50,1, 0x12e0c80,6, 0x12e0ca0,6, 0x12e0cc0,1, 0x12e0d00,1, 0x12e0d10,3, 0x12e0d20,1, 0x12e0d30,3, 0x12e0d40,1, 0x12e0d60,5, 0x12e0d80,1, 0x12e0d90,3, 0x12e0da0,1, 0x12e0dc0,5, 0x12e0de0,1, 0x12e0df0,3, 0x12e0e00,1, 0x12e0e10,3, 0x12e0e20,5, 0x12e0e40,2, 0x12e0e50,3, 0x12e0e60,5, 0x12e0e80,2, 0x12e0e90,3, 0x12e0ea0,3, 0x12e0eb0,3, 0x12e0ec0,3, 0x12e0ed0,3, 0x12e0ee0,5, 0x12e0f00,3, 0x12e0f20,5, 0x12e0f40,5, 0x12e0f60,3, 0x12e0f70,3, 0x12e0f80,5, 0x12e0fa0,3, 0x12e0fb0,3, 0x12e0fc0,3, 0x12e0fd0,3, 0x12e0fe0,3, 0x12e0ff0,3, 0x12e1000,6, 0x12e1020,3, 0x12e1040,3, 0x12e1050,3, 0x12e1060,1, 0x12e1080,3, 0x12e1090,3, 0x12e10a0,1, 0x12e10c0,3, 0x12e10e0,5, 0x12e1100,11, 0x12e1130,3, 0x12e1140,3, 0x12e1150,3, 0x12e1160,5, 0x12e1180,5, 0x12e11a0,3, 0x12e11b0,3, 0x12e11c0,3, 0x12e11d0,3, 0x12e11e0,2, 0x12e11f0,3, 0x12e1200,7, 0x12e1220,3, 0x12e1230,2, 0x12e1240,3, 0x12e1250,3, 0x12e1260,2, 0x12e1400,15, 0x12e1440,4, 0x12e1460,17, 0x12e14c0,6, 0x12e14e0,4, 0x12e14f4,11, 0x12e1524,54, 0x12e1604,1, 0x12e160c,1, 0x12e1614,1, 0x12e161c,15, 0x12e1660,6, 0x12e1680,4, 0x12e16a0,5, 0x12e16c0,4, 0x12e16e0,5, 0x12e1700,4, 0x12e1720,5, 0x12e1740,4, 0x12e1760,5, 0x12e1780,4, 0x12e17c0,15, 0x12e1800,4, 0x12e1880,19, 0x12e1900,1, 0x12e1980,24, 0x12e1a00,24, 0x12e1a80,24, 0x12e1b00,24, 0x12e1b80,1, 0x12e1b88,2, 0x12e2000,451, 0x12e2740,169, 0x12e3000,260, 0x12e3800,12, 0x12e3a04,1, 0x12e3a0c,8, 0x12e3a44,1, 0x12e3a50,7, 0x12e3a84,1, 0x12e3a94,27, 0x12e3b04,3, 0x12e3b14,3, 0x12e3b24,3, 0x12e3b34,21, 0x12e3ba0,5, 0x12e3bc0,1, 0x12e3c04,1, 0x12e3c14,3, 0x12e3c24,3, 0x12e3c34,3, 0x12e3c44,1, 0x12e3c60,8, 0x12e3c84,1, 0x12e3ca0,8, 0x12e3cc4,1, 0x12e3ce0,11, 0x12e3e04,1, 0x12e3e0c,2, 0x12e3e18,1, 0x12e3e20,3, 0x12e3e30,3, 0x12e3e40,1, 0x12e3e48,3, 0x12e3e58,3, 0x12e3e70,4, 0x12e4000,44, 0x12e4100,19, 0x12e4180,22, 0x12e4200,27, 0x12e4280,27, 0x12e4300,11, 0x12e4380,17, 0x12e4400,27, 0x12e4480,2, 0x12e44a0,6, 0x12e44c0,3, 0x12e44d0,4, 0x12e4500,35, 0x12e4600,34, 0x12e4700,26, 0x12e4780,23, 0x12e4800,15, 0x12e4848,4, 0x12e8000,20, 0x12e8100,49, 0x12e8200,20, 0x12e8300,49, 0x12e8400,20, 0x12e8500,49, 0x12e8600,20, 0x12e8700,49, 0x12e8800,8, 0x12e9000,20, 0x12e9100,49, 0x12e9200,20, 0x12e9300,49, 0x12e9400,20, 0x12e9500,49, 0x12e9600,20, 0x12e9700,49, 0x12e9800,8, 0x12ea000,15, 0x12ea040,3, 0x12ea050,1, 0x12ea058,4, 0x12ea080,10, 0x12ea0b0,3, 0x12ea0c4,7, 0x12ea100,44, 0x12ea200,5, 0x12ea218,5, 0x12ea280,20, 0x12ea300,1, 0x12ea800,52, 0x12ea8e0,5, 0x12ea900,5, 0x12eaa00,52, 0x12eaae0,5, 0x12eab00,5, 0x12eac00,18, 0x12eac50,10, 0x12ead00,36, 0x12eada0,5, 0x12eadc0,5, 0x12eb000,20, 0x12eb080,20, 0x12eb100,20, 0x12eb180,20, 0x12eb200,10, 0x12eb400,10, 0x12eb440,10, 0x12eb480,10, 0x12eb4c0,10, 0x12eb500,1, 0x12eb600,1, 0x12eb608,32, 0x12eb6a0,6, 0x12eb6c0,6, 0x12eb6e0,6, 0x12eb700,6, 0x12eb720,6, 0x12eb740,6, 0x12eb760,6, 0x12eb780,6, 0x12eb800,76, 0x12eba00,76, 0x12ebc00,33, 0x12ec000,76, 0x12ec200,76, 0x12ec400,33, 0x12ec800,4, 0x12eca00,72, 0x12ecc00,17, 0x12ecc48,4, 0x12ece00,27, 0x12ece80,4, 0x12ecec0,25, 0x12ecf40,6, 0x12ecf60,4, 0x12ecf74,11, 0x12ecfa4,16, 0x12ed000,12, 0x12ed040,2, 0x12ed050,1, 0x12ed058,5, 0x12ed070,3, 0x1300000,23, 0x1300080,23, 0x1300100,23, 0x1300180,23, 0x1300200,13, 0x1300404,1, 0x130047c,33, 0x1300504,1, 0x1300514,3, 0x1300524,1, 0x130052c,1, 0x1300600,96, 0x1300784,1, 0x1300790,4, 0x1301000,76, 0x1302000,582, 0x1303000,13, 0x1303400,27, 0x1303480,4, 0x13034c0,25, 0x1303540,6, 0x1303560,4, 0x1303574,3, 0x1303600,8, 0x1303624,59, 0x1303800,4, 0x1303880,36, 0x1303980,17, 0x1303a00,6, 0x1303a20,165, 0x1303d00,12, 0x1303d40,2, 0x1303d50,3, 0x1303d60,1, 0x1303d80,12, 0x1303dc0,2, 0x1303dd0,3, 0x1303de0,1, 0x1303e00,12, 0x1303e40,2, 0x1303e50,3, 0x1303e60,1, 0x1303e80,12, 0x1303ec0,2, 0x1303ed0,3, 0x1303ee0,1, 0x1303f00,9, 0x1303f80,3, 0x1303f90,5, 0x1303fa8,5, 0x1303fc0,5, 0x1303fd8,2, 0x1304000,1, 0x1304010,6, 0x1304030,78, 0x1304180,18, 0x1308004,6, 0x1309000,650, 0x130a000,650, 0x130b000,2, 0x130b040,9, 0x130b080,7, 0x130c000,34, 0x130c090,9, 0x130c0b8,11, 0x1310000,11, 0x1310040,11, 0x1310080,11, 0x13100c0,11, 0x1310104,1, 0x131011c,10, 0x1310148,2, 0x1310154,1, 0x131015c,24, 0x13101c0,3, 0x13101d0,3, 0x13101e0,3, 0x13101f0,33, 0x1310280,3, 0x1310290,3, 0x13102a0,3, 0x13102b0,3, 0x13102c0,5, 0x13102d8,8, 0x1310400,145, 0x1310800,4, 0x1310880,25, 0x1310900,5, 0x1310920,1, 0x1311000,11, 0x1311040,11, 0x1311080,11, 0x13110c0,11, 0x1311100,11, 0x1311140,11, 0x1311180,11, 0x13111c0,11, 0x1311200,1, 0x1311208,19, 0x1311260,2, 0x131126c,3, 0x1311280,5, 0x1311400,3, 0x1311410,30, 0x13114a4,1, 0x13114b4,23, 0x1311520,6, 0x1311540,3, 0x1311560,2, 0x131156c,2, 0x1311580,2, 0x13115c0,3, 0x13115d0,3, 0x13115e0,1, 0x1311600,1, 0x1311800,1, 0x1311814,12, 0x1311848,5, 0x1311860,7, 0x1311880,5, 0x1311898,5, 0x13118b0,5, 0x13118c8,7, 0x13118e8,7, 0x1311908,5, 0x1311920,11, 0x1311950,55, 0x1311a40,2, 0x1311a4c,2, 0x1311a60,2, 0x1311a80,6, 0x1311ac0,3, 0x1311ad0,3, 0x1311ae0,1, 0x1311b00,1, 0x1312000,2, 0x1312010,47, 0x13120e0,6, 0x1312100,6, 0x1312120,2, 0x131212c,3, 0x1312140,6, 0x1312200,5, 0x1312224,1, 0x1312234,3, 0x1312280,20, 0x1312404,1, 0x13124e4,71, 0x1312604,1, 0x1312670,38, 0x1312800,27, 0x1312880,4, 0x13128c0,25, 0x1312940,6, 0x1312960,4, 0x1312974,11, 0x13129a4,7, 0x1312a00,12, 0x1312a40,2, 0x1312a50,1, 0x1312a58,5, 0x1312a70,5, 0x1320000,19, 0x1320080,19, 0x1320100,19, 0x1320180,19, 0x1320200,12, 0x1320280,1, 0x13202a0,6, 0x13202c0,6, 0x13202e0,6, 0x1320300,6, 0x1320320,6, 0x1320340,6, 0x1320360,6, 0x1320380,9, 0x13203c0,13, 0x1320400,3, 0x1320410,159, 0x1320690,16, 0x13206e0,5, 0x1320700,5, 0x1320720,5, 0x1320740,5, 0x1320760,5, 0x1320780,5, 0x13207a0,5, 0x13207c0,5, 0x13207e0,6, 0x1320800,6, 0x1320820,6, 0x1320840,6, 0x1320860,6, 0x1320880,6, 0x13208a0,6, 0x13208c0,6, 0x13208e0,6, 0x1320900,6, 0x1320920,6, 0x1320940,6, 0x1320960,6, 0x1320980,6, 0x13209a0,6, 0x13209c0,6, 0x1320a00,22, 0x1320a80,1, 0x1320a88,3, 0x1320aa0,5, 0x1320ac0,1, 0x1320ad0,3, 0x1320ae0,1, 0x1320af0,3, 0x1320b00,1, 0x1320b10,3, 0x1320b20,1, 0x1320b30,3, 0x1320b40,1, 0x1320b48,3, 0x1320b58,3, 0x1320b68,3, 0x1320b78,3, 0x1320b88,3, 0x1320ba0,3, 0x1320bb0,1, 0x1320bc0,3, 0x1320bd0,1, 0x1320be0,3, 0x1320bf0,1, 0x1320c00,3, 0x1320c10,1, 0x1320c20,3, 0x1320c30,1, 0x1320c40,3, 0x1320c50,1, 0x1320c80,6, 0x1320ca0,6, 0x1320cc0,1, 0x1320d00,1, 0x1320d10,3, 0x1320d20,1, 0x1320d30,3, 0x1320d40,1, 0x1320d60,5, 0x1320d80,1, 0x1320d90,3, 0x1320da0,1, 0x1320dc0,5, 0x1320de0,1, 0x1320df0,3, 0x1320e00,1, 0x1320e10,3, 0x1320e20,5, 0x1320e40,2, 0x1320e50,3, 0x1320e60,5, 0x1320e80,2, 0x1320e90,3, 0x1320ea0,3, 0x1320eb0,3, 0x1320ec0,3, 0x1320ed0,3, 0x1320ee0,5, 0x1320f00,3, 0x1320f20,5, 0x1320f40,5, 0x1320f60,3, 0x1320f70,3, 0x1320f80,5, 0x1320fa0,3, 0x1320fb0,3, 0x1320fc0,3, 0x1320fd0,3, 0x1320fe0,3, 0x1320ff0,3, 0x1321000,6, 0x1321020,3, 0x1321040,3, 0x1321050,3, 0x1321060,1, 0x1321080,3, 0x1321090,3, 0x13210a0,1, 0x13210c0,3, 0x13210e0,5, 0x1321100,11, 0x1321130,3, 0x1321140,3, 0x1321150,3, 0x1321160,5, 0x1321180,5, 0x13211a0,3, 0x13211b0,3, 0x13211c0,3, 0x13211d0,3, 0x13211e0,2, 0x13211f0,3, 0x1321200,7, 0x1321220,3, 0x1321230,2, 0x1321240,3, 0x1321250,3, 0x1321260,2, 0x1321400,15, 0x1321440,4, 0x1321460,17, 0x13214c0,6, 0x13214e0,4, 0x13214f4,11, 0x1321524,54, 0x1321604,1, 0x132160c,1, 0x1321614,1, 0x132161c,15, 0x1321660,6, 0x1321680,4, 0x13216a0,5, 0x13216c0,4, 0x13216e0,5, 0x1321700,4, 0x1321720,5, 0x1321740,4, 0x1321760,5, 0x1321780,4, 0x13217c0,15, 0x1321800,4, 0x1321880,19, 0x1321900,1, 0x1321980,24, 0x1321a00,24, 0x1321a80,24, 0x1321b00,24, 0x1321b80,1, 0x1321b88,2, 0x1322000,451, 0x1322740,169, 0x1323000,260, 0x1323800,12, 0x1323a04,1, 0x1323a0c,8, 0x1323a44,1, 0x1323a50,7, 0x1323a84,1, 0x1323a94,27, 0x1323b04,3, 0x1323b14,3, 0x1323b24,3, 0x1323b34,21, 0x1323ba0,5, 0x1323bc0,1, 0x1323c04,1, 0x1323c14,3, 0x1323c24,3, 0x1323c34,3, 0x1323c44,1, 0x1323c60,8, 0x1323c84,1, 0x1323ca0,8, 0x1323cc4,1, 0x1323ce0,11, 0x1323e04,1, 0x1323e0c,2, 0x1323e18,1, 0x1323e20,3, 0x1323e30,3, 0x1323e40,1, 0x1323e48,3, 0x1323e58,3, 0x1323e70,4, 0x1324000,44, 0x1324100,19, 0x1324180,22, 0x1324200,27, 0x1324280,27, 0x1324300,11, 0x1324380,17, 0x1324400,27, 0x1324480,2, 0x13244a0,6, 0x13244c0,3, 0x13244d0,4, 0x1324500,35, 0x1324600,34, 0x1324700,26, 0x1324780,23, 0x1324800,15, 0x1324848,4, 0x1328000,20, 0x1328100,49, 0x1328200,20, 0x1328300,49, 0x1328400,20, 0x1328500,49, 0x1328600,20, 0x1328700,49, 0x1328800,8, 0x1329000,20, 0x1329100,49, 0x1329200,20, 0x1329300,49, 0x1329400,20, 0x1329500,49, 0x1329600,20, 0x1329700,49, 0x1329800,8, 0x132a000,15, 0x132a040,3, 0x132a050,1, 0x132a058,4, 0x132a080,10, 0x132a0b0,3, 0x132a0c4,7, 0x132a100,44, 0x132a200,5, 0x132a218,5, 0x132a280,20, 0x132a300,1, 0x132a800,52, 0x132a8e0,5, 0x132a900,5, 0x132aa00,52, 0x132aae0,5, 0x132ab00,5, 0x132ac00,18, 0x132ac50,10, 0x132ad00,36, 0x132ada0,5, 0x132adc0,5, 0x132b000,20, 0x132b080,20, 0x132b100,20, 0x132b180,20, 0x132b200,10, 0x132b400,10, 0x132b440,10, 0x132b480,10, 0x132b4c0,10, 0x132b500,1, 0x132b600,1, 0x132b608,32, 0x132b6a0,6, 0x132b6c0,6, 0x132b6e0,6, 0x132b700,6, 0x132b720,6, 0x132b740,6, 0x132b760,6, 0x132b780,6, 0x132b800,76, 0x132ba00,76, 0x132bc00,33, 0x132c000,76, 0x132c200,76, 0x132c400,33, 0x132c800,4, 0x132ca00,72, 0x132cc00,17, 0x132cc48,4, 0x132ce00,27, 0x132ce80,4, 0x132cec0,25, 0x132cf40,6, 0x132cf60,4, 0x132cf74,11, 0x132cfa4,16, 0x132d000,12, 0x132d040,2, 0x132d050,1, 0x132d058,5, 0x132d070,3, 0x1340000,23, 0x1340080,23, 0x1340100,23, 0x1340180,23, 0x1340200,13, 0x1340404,1, 0x134047c,33, 0x1340504,1, 0x1340514,3, 0x1340524,1, 0x134052c,1, 0x1340600,96, 0x1340784,1, 0x1340790,4, 0x1341000,76, 0x1342000,582, 0x1343000,13, 0x1343400,27, 0x1343480,4, 0x13434c0,25, 0x1343540,6, 0x1343560,4, 0x1343574,3, 0x1343600,8, 0x1343624,59, 0x1343800,4, 0x1343880,36, 0x1343980,17, 0x1343a00,6, 0x1343a20,165, 0x1343d00,12, 0x1343d40,2, 0x1343d50,3, 0x1343d60,1, 0x1343d80,12, 0x1343dc0,2, 0x1343dd0,3, 0x1343de0,1, 0x1343e00,12, 0x1343e40,2, 0x1343e50,3, 0x1343e60,1, 0x1343e80,12, 0x1343ec0,2, 0x1343ed0,3, 0x1343ee0,1, 0x1343f00,9, 0x1343f80,3, 0x1343f90,5, 0x1343fa8,5, 0x1343fc0,5, 0x1343fd8,2, 0x1344000,1, 0x1344010,6, 0x1344030,78, 0x1344180,18, 0x1348004,6, 0x1349000,650, 0x134a000,650, 0x134b000,2, 0x134b040,9, 0x134b080,7, 0x134c000,34, 0x134c090,9, 0x134c0b8,11, 0x1350000,11, 0x1350040,11, 0x1350080,11, 0x13500c0,11, 0x1350104,1, 0x135011c,10, 0x1350148,2, 0x1350154,1, 0x135015c,24, 0x13501c0,3, 0x13501d0,3, 0x13501e0,3, 0x13501f0,33, 0x1350280,3, 0x1350290,3, 0x13502a0,3, 0x13502b0,3, 0x13502c0,5, 0x13502d8,8, 0x1350400,145, 0x1350800,4, 0x1350880,25, 0x1350900,5, 0x1350920,1, 0x1351000,11, 0x1351040,11, 0x1351080,11, 0x13510c0,11, 0x1351100,11, 0x1351140,11, 0x1351180,11, 0x13511c0,11, 0x1351200,1, 0x1351208,19, 0x1351260,2, 0x135126c,3, 0x1351280,5, 0x1351400,3, 0x1351410,30, 0x13514a4,1, 0x13514b4,23, 0x1351520,6, 0x1351540,3, 0x1351560,2, 0x135156c,2, 0x1351580,2, 0x13515c0,3, 0x13515d0,3, 0x13515e0,1, 0x1351600,1, 0x1351800,1, 0x1351814,12, 0x1351848,5, 0x1351860,7, 0x1351880,5, 0x1351898,5, 0x13518b0,5, 0x13518c8,7, 0x13518e8,7, 0x1351908,5, 0x1351920,11, 0x1351950,55, 0x1351a40,2, 0x1351a4c,2, 0x1351a60,2, 0x1351a80,6, 0x1351ac0,3, 0x1351ad0,3, 0x1351ae0,1, 0x1351b00,1, 0x1352000,2, 0x1352010,47, 0x13520e0,6, 0x1352100,6, 0x1352120,2, 0x135212c,3, 0x1352140,6, 0x1352200,5, 0x1352224,1, 0x1352234,3, 0x1352280,20, 0x1352404,1, 0x13524e4,71, 0x1352604,1, 0x1352670,38, 0x1352800,27, 0x1352880,4, 0x13528c0,25, 0x1352940,6, 0x1352960,4, 0x1352974,11, 0x13529a4,7, 0x1352a00,12, 0x1352a40,2, 0x1352a50,1, 0x1352a58,5, 0x1352a70,5, 0x1360000,19, 0x1360080,19, 0x1360100,19, 0x1360180,19, 0x1360200,12, 0x1360280,1, 0x13602a0,6, 0x13602c0,6, 0x13602e0,6, 0x1360300,6, 0x1360320,6, 0x1360340,6, 0x1360360,6, 0x1360380,9, 0x13603c0,13, 0x1360400,3, 0x1360410,159, 0x1360690,16, 0x13606e0,5, 0x1360700,5, 0x1360720,5, 0x1360740,5, 0x1360760,5, 0x1360780,5, 0x13607a0,5, 0x13607c0,5, 0x13607e0,6, 0x1360800,6, 0x1360820,6, 0x1360840,6, 0x1360860,6, 0x1360880,6, 0x13608a0,6, 0x13608c0,6, 0x13608e0,6, 0x1360900,6, 0x1360920,6, 0x1360940,6, 0x1360960,6, 0x1360980,6, 0x13609a0,6, 0x13609c0,6, 0x1360a00,22, 0x1360a80,1, 0x1360a88,3, 0x1360aa0,5, 0x1360ac0,1, 0x1360ad0,3, 0x1360ae0,1, 0x1360af0,3, 0x1360b00,1, 0x1360b10,3, 0x1360b20,1, 0x1360b30,3, 0x1360b40,1, 0x1360b48,3, 0x1360b58,3, 0x1360b68,3, 0x1360b78,3, 0x1360b88,3, 0x1360ba0,3, 0x1360bb0,1, 0x1360bc0,3, 0x1360bd0,1, 0x1360be0,3, 0x1360bf0,1, 0x1360c00,3, 0x1360c10,1, 0x1360c20,3, 0x1360c30,1, 0x1360c40,3, 0x1360c50,1, 0x1360c80,6, 0x1360ca0,6, 0x1360cc0,1, 0x1360d00,1, 0x1360d10,3, 0x1360d20,1, 0x1360d30,3, 0x1360d40,1, 0x1360d60,5, 0x1360d80,1, 0x1360d90,3, 0x1360da0,1, 0x1360dc0,5, 0x1360de0,1, 0x1360df0,3, 0x1360e00,1, 0x1360e10,3, 0x1360e20,5, 0x1360e40,2, 0x1360e50,3, 0x1360e60,5, 0x1360e80,2, 0x1360e90,3, 0x1360ea0,3, 0x1360eb0,3, 0x1360ec0,3, 0x1360ed0,3, 0x1360ee0,5, 0x1360f00,3, 0x1360f20,5, 0x1360f40,5, 0x1360f60,3, 0x1360f70,3, 0x1360f80,5, 0x1360fa0,3, 0x1360fb0,3, 0x1360fc0,3, 0x1360fd0,3, 0x1360fe0,3, 0x1360ff0,3, 0x1361000,6, 0x1361020,3, 0x1361040,3, 0x1361050,3, 0x1361060,1, 0x1361080,3, 0x1361090,3, 0x13610a0,1, 0x13610c0,3, 0x13610e0,5, 0x1361100,11, 0x1361130,3, 0x1361140,3, 0x1361150,3, 0x1361160,5, 0x1361180,5, 0x13611a0,3, 0x13611b0,3, 0x13611c0,3, 0x13611d0,3, 0x13611e0,2, 0x13611f0,3, 0x1361200,7, 0x1361220,3, 0x1361230,2, 0x1361240,3, 0x1361250,3, 0x1361260,2, 0x1361400,15, 0x1361440,4, 0x1361460,17, 0x13614c0,6, 0x13614e0,4, 0x13614f4,11, 0x1361524,54, 0x1361604,1, 0x136160c,1, 0x1361614,1, 0x136161c,15, 0x1361660,6, 0x1361680,4, 0x13616a0,5, 0x13616c0,4, 0x13616e0,5, 0x1361700,4, 0x1361720,5, 0x1361740,4, 0x1361760,5, 0x1361780,4, 0x13617c0,15, 0x1361800,4, 0x1361880,19, 0x1361900,1, 0x1361980,24, 0x1361a00,24, 0x1361a80,24, 0x1361b00,24, 0x1361b80,1, 0x1361b88,2, 0x1362000,451, 0x1362740,169, 0x1363000,260, 0x1363800,12, 0x1363a04,1, 0x1363a0c,8, 0x1363a44,1, 0x1363a50,7, 0x1363a84,1, 0x1363a94,27, 0x1363b04,3, 0x1363b14,3, 0x1363b24,3, 0x1363b34,21, 0x1363ba0,5, 0x1363bc0,1, 0x1363c04,1, 0x1363c14,3, 0x1363c24,3, 0x1363c34,3, 0x1363c44,1, 0x1363c60,8, 0x1363c84,1, 0x1363ca0,8, 0x1363cc4,1, 0x1363ce0,11, 0x1363e04,1, 0x1363e0c,2, 0x1363e18,1, 0x1363e20,3, 0x1363e30,3, 0x1363e40,1, 0x1363e48,3, 0x1363e58,3, 0x1363e70,4, 0x1364000,44, 0x1364100,19, 0x1364180,22, 0x1364200,27, 0x1364280,27, 0x1364300,11, 0x1364380,17, 0x1364400,27, 0x1364480,2, 0x13644a0,6, 0x13644c0,3, 0x13644d0,4, 0x1364500,35, 0x1364600,34, 0x1364700,26, 0x1364780,23, 0x1364800,15, 0x1364848,4, 0x1368000,20, 0x1368100,49, 0x1368200,20, 0x1368300,49, 0x1368400,20, 0x1368500,49, 0x1368600,20, 0x1368700,49, 0x1368800,8, 0x1369000,20, 0x1369100,49, 0x1369200,20, 0x1369300,49, 0x1369400,20, 0x1369500,49, 0x1369600,20, 0x1369700,49, 0x1369800,8, 0x136a000,15, 0x136a040,3, 0x136a050,1, 0x136a058,4, 0x136a080,10, 0x136a0b0,3, 0x136a0c4,7, 0x136a100,44, 0x136a200,5, 0x136a218,5, 0x136a280,20, 0x136a300,1, 0x136a800,52, 0x136a8e0,5, 0x136a900,5, 0x136aa00,52, 0x136aae0,5, 0x136ab00,5, 0x136ac00,18, 0x136ac50,10, 0x136ad00,36, 0x136ada0,5, 0x136adc0,5, 0x136b000,20, 0x136b080,20, 0x136b100,20, 0x136b180,20, 0x136b200,10, 0x136b400,10, 0x136b440,10, 0x136b480,10, 0x136b4c0,10, 0x136b500,1, 0x136b600,1, 0x136b608,32, 0x136b6a0,6, 0x136b6c0,6, 0x136b6e0,6, 0x136b700,6, 0x136b720,6, 0x136b740,6, 0x136b760,6, 0x136b780,6, 0x136b800,76, 0x136ba00,76, 0x136bc00,33, 0x136c000,76, 0x136c200,76, 0x136c400,33, 0x136c800,4, 0x136ca00,72, 0x136cc00,17, 0x136cc48,4, 0x136ce00,27, 0x136ce80,4, 0x136cec0,25, 0x136cf40,6, 0x136cf60,4, 0x136cf74,11, 0x136cfa4,16, 0x136d000,12, 0x136d040,2, 0x136d050,1, 0x136d058,5, 0x136d070,3, 0x1380000,23, 0x1380080,23, 0x1380100,23, 0x1380180,23, 0x1380200,13, 0x1380404,1, 0x138047c,33, 0x1380504,1, 0x1380514,3, 0x1380524,1, 0x138052c,1, 0x1380600,96, 0x1380784,1, 0x1380790,4, 0x1381000,76, 0x1382000,582, 0x1383000,13, 0x1383400,27, 0x1383480,4, 0x13834c0,25, 0x1383540,6, 0x1383560,4, 0x1383574,3, 0x1383600,8, 0x1383624,59, 0x1383800,4, 0x1383880,36, 0x1383980,17, 0x1383a00,6, 0x1383a20,165, 0x1383d00,12, 0x1383d40,2, 0x1383d50,3, 0x1383d60,1, 0x1383d80,12, 0x1383dc0,2, 0x1383dd0,3, 0x1383de0,1, 0x1383e00,12, 0x1383e40,2, 0x1383e50,3, 0x1383e60,1, 0x1383e80,12, 0x1383ec0,2, 0x1383ed0,3, 0x1383ee0,1, 0x1383f00,9, 0x1383f80,3, 0x1383f90,5, 0x1383fa8,5, 0x1383fc0,5, 0x1383fd8,2, 0x1384000,1, 0x1384010,6, 0x1384030,78, 0x1384180,18, 0x1388004,6, 0x1389000,650, 0x138a000,650, 0x138b000,2, 0x138b040,9, 0x138b080,7, 0x138c000,34, 0x138c090,9, 0x138c0b8,11, 0x1390000,11, 0x1390040,11, 0x1390080,11, 0x13900c0,11, 0x1390104,1, 0x139011c,10, 0x1390148,2, 0x1390154,1, 0x139015c,24, 0x13901c0,3, 0x13901d0,3, 0x13901e0,3, 0x13901f0,33, 0x1390280,3, 0x1390290,3, 0x13902a0,3, 0x13902b0,3, 0x13902c0,5, 0x13902d8,8, 0x1390400,145, 0x1390800,4, 0x1390880,25, 0x1390900,5, 0x1390920,1, 0x1391000,11, 0x1391040,11, 0x1391080,11, 0x13910c0,11, 0x1391100,11, 0x1391140,11, 0x1391180,11, 0x13911c0,11, 0x1391200,1, 0x1391208,19, 0x1391260,2, 0x139126c,3, 0x1391280,5, 0x1391400,3, 0x1391410,30, 0x13914a4,1, 0x13914b4,23, 0x1391520,6, 0x1391540,3, 0x1391560,2, 0x139156c,2, 0x1391580,2, 0x13915c0,3, 0x13915d0,3, 0x13915e0,1, 0x1391600,1, 0x1391800,1, 0x1391814,12, 0x1391848,5, 0x1391860,7, 0x1391880,5, 0x1391898,5, 0x13918b0,5, 0x13918c8,7, 0x13918e8,7, 0x1391908,5, 0x1391920,11, 0x1391950,55, 0x1391a40,2, 0x1391a4c,2, 0x1391a60,2, 0x1391a80,6, 0x1391ac0,3, 0x1391ad0,3, 0x1391ae0,1, 0x1391b00,1, 0x1392000,2, 0x1392010,47, 0x13920e0,6, 0x1392100,6, 0x1392120,2, 0x139212c,3, 0x1392140,6, 0x1392200,5, 0x1392224,1, 0x1392234,3, 0x1392280,20, 0x1392404,1, 0x13924e4,71, 0x1392604,1, 0x1392670,38, 0x1392800,27, 0x1392880,4, 0x13928c0,25, 0x1392940,6, 0x1392960,4, 0x1392974,11, 0x13929a4,7, 0x1392a00,12, 0x1392a40,2, 0x1392a50,1, 0x1392a58,5, 0x1392a70,5, 0x13a0000,19, 0x13a0080,19, 0x13a0100,19, 0x13a0180,19, 0x13a0200,12, 0x13a0280,1, 0x13a02a0,6, 0x13a02c0,6, 0x13a02e0,6, 0x13a0300,6, 0x13a0320,6, 0x13a0340,6, 0x13a0360,6, 0x13a0380,9, 0x13a03c0,13, 0x13a0400,3, 0x13a0410,159, 0x13a0690,16, 0x13a06e0,5, 0x13a0700,5, 0x13a0720,5, 0x13a0740,5, 0x13a0760,5, 0x13a0780,5, 0x13a07a0,5, 0x13a07c0,5, 0x13a07e0,6, 0x13a0800,6, 0x13a0820,6, 0x13a0840,6, 0x13a0860,6, 0x13a0880,6, 0x13a08a0,6, 0x13a08c0,6, 0x13a08e0,6, 0x13a0900,6, 0x13a0920,6, 0x13a0940,6, 0x13a0960,6, 0x13a0980,6, 0x13a09a0,6, 0x13a09c0,6, 0x13a0a00,22, 0x13a0a80,1, 0x13a0a88,3, 0x13a0aa0,5, 0x13a0ac0,1, 0x13a0ad0,3, 0x13a0ae0,1, 0x13a0af0,3, 0x13a0b00,1, 0x13a0b10,3, 0x13a0b20,1, 0x13a0b30,3, 0x13a0b40,1, 0x13a0b48,3, 0x13a0b58,3, 0x13a0b68,3, 0x13a0b78,3, 0x13a0b88,3, 0x13a0ba0,3, 0x13a0bb0,1, 0x13a0bc0,3, 0x13a0bd0,1, 0x13a0be0,3, 0x13a0bf0,1, 0x13a0c00,3, 0x13a0c10,1, 0x13a0c20,3, 0x13a0c30,1, 0x13a0c40,3, 0x13a0c50,1, 0x13a0c80,6, 0x13a0ca0,6, 0x13a0cc0,1, 0x13a0d00,1, 0x13a0d10,3, 0x13a0d20,1, 0x13a0d30,3, 0x13a0d40,1, 0x13a0d60,5, 0x13a0d80,1, 0x13a0d90,3, 0x13a0da0,1, 0x13a0dc0,5, 0x13a0de0,1, 0x13a0df0,3, 0x13a0e00,1, 0x13a0e10,3, 0x13a0e20,5, 0x13a0e40,2, 0x13a0e50,3, 0x13a0e60,5, 0x13a0e80,2, 0x13a0e90,3, 0x13a0ea0,3, 0x13a0eb0,3, 0x13a0ec0,3, 0x13a0ed0,3, 0x13a0ee0,5, 0x13a0f00,3, 0x13a0f20,5, 0x13a0f40,5, 0x13a0f60,3, 0x13a0f70,3, 0x13a0f80,5, 0x13a0fa0,3, 0x13a0fb0,3, 0x13a0fc0,3, 0x13a0fd0,3, 0x13a0fe0,3, 0x13a0ff0,3, 0x13a1000,6, 0x13a1020,3, 0x13a1040,3, 0x13a1050,3, 0x13a1060,1, 0x13a1080,3, 0x13a1090,3, 0x13a10a0,1, 0x13a10c0,3, 0x13a10e0,5, 0x13a1100,11, 0x13a1130,3, 0x13a1140,3, 0x13a1150,3, 0x13a1160,5, 0x13a1180,5, 0x13a11a0,3, 0x13a11b0,3, 0x13a11c0,3, 0x13a11d0,3, 0x13a11e0,2, 0x13a11f0,3, 0x13a1200,7, 0x13a1220,3, 0x13a1230,2, 0x13a1240,3, 0x13a1250,3, 0x13a1260,2, 0x13a1400,15, 0x13a1440,4, 0x13a1460,17, 0x13a14c0,6, 0x13a14e0,4, 0x13a14f4,11, 0x13a1524,54, 0x13a1604,1, 0x13a160c,1, 0x13a1614,1, 0x13a161c,15, 0x13a1660,6, 0x13a1680,4, 0x13a16a0,5, 0x13a16c0,4, 0x13a16e0,5, 0x13a1700,4, 0x13a1720,5, 0x13a1740,4, 0x13a1760,5, 0x13a1780,4, 0x13a17c0,15, 0x13a1800,4, 0x13a1880,19, 0x13a1900,1, 0x13a1980,24, 0x13a1a00,24, 0x13a1a80,24, 0x13a1b00,24, 0x13a1b80,1, 0x13a1b88,2, 0x13a2000,451, 0x13a2740,169, 0x13a3000,260, 0x13a3800,12, 0x13a3a04,1, 0x13a3a0c,8, 0x13a3a44,1, 0x13a3a50,7, 0x13a3a84,1, 0x13a3a94,27, 0x13a3b04,3, 0x13a3b14,3, 0x13a3b24,3, 0x13a3b34,21, 0x13a3ba0,5, 0x13a3bc0,1, 0x13a3c04,1, 0x13a3c14,3, 0x13a3c24,3, 0x13a3c34,3, 0x13a3c44,1, 0x13a3c60,8, 0x13a3c84,1, 0x13a3ca0,8, 0x13a3cc4,1, 0x13a3ce0,11, 0x13a3e04,1, 0x13a3e0c,2, 0x13a3e18,1, 0x13a3e20,3, 0x13a3e30,3, 0x13a3e40,1, 0x13a3e48,3, 0x13a3e58,3, 0x13a3e70,4, 0x13a4000,44, 0x13a4100,19, 0x13a4180,22, 0x13a4200,27, 0x13a4280,27, 0x13a4300,11, 0x13a4380,17, 0x13a4400,27, 0x13a4480,2, 0x13a44a0,6, 0x13a44c0,3, 0x13a44d0,4, 0x13a4500,35, 0x13a4600,34, 0x13a4700,26, 0x13a4780,23, 0x13a4800,15, 0x13a4848,4, 0x13a8000,20, 0x13a8100,49, 0x13a8200,20, 0x13a8300,49, 0x13a8400,20, 0x13a8500,49, 0x13a8600,20, 0x13a8700,49, 0x13a8800,8, 0x13a9000,20, 0x13a9100,49, 0x13a9200,20, 0x13a9300,49, 0x13a9400,20, 0x13a9500,49, 0x13a9600,20, 0x13a9700,49, 0x13a9800,8, 0x13aa000,15, 0x13aa040,3, 0x13aa050,1, 0x13aa058,4, 0x13aa080,10, 0x13aa0b0,3, 0x13aa0c4,7, 0x13aa100,44, 0x13aa200,5, 0x13aa218,5, 0x13aa280,20, 0x13aa300,1, 0x13aa800,52, 0x13aa8e0,5, 0x13aa900,5, 0x13aaa00,52, 0x13aaae0,5, 0x13aab00,5, 0x13aac00,18, 0x13aac50,10, 0x13aad00,36, 0x13aada0,5, 0x13aadc0,5, 0x13ab000,20, 0x13ab080,20, 0x13ab100,20, 0x13ab180,20, 0x13ab200,10, 0x13ab400,10, 0x13ab440,10, 0x13ab480,10, 0x13ab4c0,10, 0x13ab500,1, 0x13ab600,1, 0x13ab608,32, 0x13ab6a0,6, 0x13ab6c0,6, 0x13ab6e0,6, 0x13ab700,6, 0x13ab720,6, 0x13ab740,6, 0x13ab760,6, 0x13ab780,6, 0x13ab800,76, 0x13aba00,76, 0x13abc00,33, 0x13ac000,76, 0x13ac200,76, 0x13ac400,33, 0x13ac800,4, 0x13aca00,72, 0x13acc00,17, 0x13acc48,4, 0x13ace00,27, 0x13ace80,4, 0x13acec0,25, 0x13acf40,6, 0x13acf60,4, 0x13acf74,11, 0x13acfa4,16, 0x13ad000,12, 0x13ad040,2, 0x13ad050,1, 0x13ad058,5, 0x13ad070,3, 0x13c0000,23, 0x13c0080,23, 0x13c0100,23, 0x13c0180,23, 0x13c0200,13, 0x13c0404,1, 0x13c047c,33, 0x13c0504,1, 0x13c0514,3, 0x13c0524,1, 0x13c052c,1, 0x13c0600,96, 0x13c0784,1, 0x13c0790,4, 0x13c1000,76, 0x13c2000,582, 0x13c3000,13, 0x13c3400,27, 0x13c3480,4, 0x13c34c0,25, 0x13c3540,6, 0x13c3560,4, 0x13c3574,3, 0x13c3600,8, 0x13c3624,59, 0x13c3800,4, 0x13c3880,36, 0x13c3980,17, 0x13c3a00,6, 0x13c3a20,165, 0x13c3d00,12, 0x13c3d40,2, 0x13c3d50,3, 0x13c3d60,1, 0x13c3d80,12, 0x13c3dc0,2, 0x13c3dd0,3, 0x13c3de0,1, 0x13c3e00,12, 0x13c3e40,2, 0x13c3e50,3, 0x13c3e60,1, 0x13c3e80,12, 0x13c3ec0,2, 0x13c3ed0,3, 0x13c3ee0,1, 0x13c3f00,9, 0x13c3f80,3, 0x13c3f90,5, 0x13c3fa8,5, 0x13c3fc0,5, 0x13c3fd8,2, 0x13c4000,1, 0x13c4010,6, 0x13c4030,78, 0x13c4180,18, 0x13c8004,6, 0x13c9000,650, 0x13ca000,650, 0x13cb000,2, 0x13cb040,9, 0x13cb080,7, 0x13cc000,34, 0x13cc090,9, 0x13cc0b8,11, 0x13d0000,11, 0x13d0040,11, 0x13d0080,11, 0x13d00c0,11, 0x13d0104,1, 0x13d011c,10, 0x13d0148,2, 0x13d0154,1, 0x13d015c,24, 0x13d01c0,3, 0x13d01d0,3, 0x13d01e0,3, 0x13d01f0,33, 0x13d0280,3, 0x13d0290,3, 0x13d02a0,3, 0x13d02b0,3, 0x13d02c0,5, 0x13d02d8,8, 0x13d0400,145, 0x13d0800,4, 0x13d0880,25, 0x13d0900,5, 0x13d0920,1, 0x13d1000,11, 0x13d1040,11, 0x13d1080,11, 0x13d10c0,11, 0x13d1100,11, 0x13d1140,11, 0x13d1180,11, 0x13d11c0,11, 0x13d1200,1, 0x13d1208,19, 0x13d1260,2, 0x13d126c,3, 0x13d1280,5, 0x13d1400,3, 0x13d1410,30, 0x13d14a4,1, 0x13d14b4,23, 0x13d1520,6, 0x13d1540,3, 0x13d1560,2, 0x13d156c,2, 0x13d1580,2, 0x13d15c0,3, 0x13d15d0,3, 0x13d15e0,1, 0x13d1600,1, 0x13d1800,1, 0x13d1814,12, 0x13d1848,5, 0x13d1860,7, 0x13d1880,5, 0x13d1898,5, 0x13d18b0,5, 0x13d18c8,7, 0x13d18e8,7, 0x13d1908,5, 0x13d1920,11, 0x13d1950,55, 0x13d1a40,2, 0x13d1a4c,2, 0x13d1a60,2, 0x13d1a80,6, 0x13d1ac0,3, 0x13d1ad0,3, 0x13d1ae0,1, 0x13d1b00,1, 0x13d2000,2, 0x13d2010,47, 0x13d20e0,6, 0x13d2100,6, 0x13d2120,2, 0x13d212c,3, 0x13d2140,6, 0x13d2200,5, 0x13d2224,1, 0x13d2234,3, 0x13d2280,20, 0x13d2404,1, 0x13d24e4,71, 0x13d2604,1, 0x13d2670,38, 0x13d2800,27, 0x13d2880,4, 0x13d28c0,25, 0x13d2940,6, 0x13d2960,4, 0x13d2974,11, 0x13d29a4,7, 0x13d2a00,12, 0x13d2a40,2, 0x13d2a50,1, 0x13d2a58,5, 0x13d2a70,5, 0x13e0000,19, 0x13e0080,19, 0x13e0100,19, 0x13e0180,19, 0x13e0200,12, 0x13e0280,1, 0x13e02a0,6, 0x13e02c0,6, 0x13e02e0,6, 0x13e0300,6, 0x13e0320,6, 0x13e0340,6, 0x13e0360,6, 0x13e0380,9, 0x13e03c0,13, 0x13e0400,3, 0x13e0410,159, 0x13e0690,16, 0x13e06e0,5, 0x13e0700,5, 0x13e0720,5, 0x13e0740,5, 0x13e0760,5, 0x13e0780,5, 0x13e07a0,5, 0x13e07c0,5, 0x13e07e0,6, 0x13e0800,6, 0x13e0820,6, 0x13e0840,6, 0x13e0860,6, 0x13e0880,6, 0x13e08a0,6, 0x13e08c0,6, 0x13e08e0,6, 0x13e0900,6, 0x13e0920,6, 0x13e0940,6, 0x13e0960,6, 0x13e0980,6, 0x13e09a0,6, 0x13e09c0,6, 0x13e0a00,22, 0x13e0a80,1, 0x13e0a88,3, 0x13e0aa0,5, 0x13e0ac0,1, 0x13e0ad0,3, 0x13e0ae0,1, 0x13e0af0,3, 0x13e0b00,1, 0x13e0b10,3, 0x13e0b20,1, 0x13e0b30,3, 0x13e0b40,1, 0x13e0b48,3, 0x13e0b58,3, 0x13e0b68,3, 0x13e0b78,3, 0x13e0b88,3, 0x13e0ba0,3, 0x13e0bb0,1, 0x13e0bc0,3, 0x13e0bd0,1, 0x13e0be0,3, 0x13e0bf0,1, 0x13e0c00,3, 0x13e0c10,1, 0x13e0c20,3, 0x13e0c30,1, 0x13e0c40,3, 0x13e0c50,1, 0x13e0c80,6, 0x13e0ca0,6, 0x13e0cc0,1, 0x13e0d00,1, 0x13e0d10,3, 0x13e0d20,1, 0x13e0d30,3, 0x13e0d40,1, 0x13e0d60,5, 0x13e0d80,1, 0x13e0d90,3, 0x13e0da0,1, 0x13e0dc0,5, 0x13e0de0,1, 0x13e0df0,3, 0x13e0e00,1, 0x13e0e10,3, 0x13e0e20,5, 0x13e0e40,2, 0x13e0e50,3, 0x13e0e60,5, 0x13e0e80,2, 0x13e0e90,3, 0x13e0ea0,3, 0x13e0eb0,3, 0x13e0ec0,3, 0x13e0ed0,3, 0x13e0ee0,5, 0x13e0f00,3, 0x13e0f20,5, 0x13e0f40,5, 0x13e0f60,3, 0x13e0f70,3, 0x13e0f80,5, 0x13e0fa0,3, 0x13e0fb0,3, 0x13e0fc0,3, 0x13e0fd0,3, 0x13e0fe0,3, 0x13e0ff0,3, 0x13e1000,6, 0x13e1020,3, 0x13e1040,3, 0x13e1050,3, 0x13e1060,1, 0x13e1080,3, 0x13e1090,3, 0x13e10a0,1, 0x13e10c0,3, 0x13e10e0,5, 0x13e1100,11, 0x13e1130,3, 0x13e1140,3, 0x13e1150,3, 0x13e1160,5, 0x13e1180,5, 0x13e11a0,3, 0x13e11b0,3, 0x13e11c0,3, 0x13e11d0,3, 0x13e11e0,2, 0x13e11f0,3, 0x13e1200,7, 0x13e1220,3, 0x13e1230,2, 0x13e1240,3, 0x13e1250,3, 0x13e1260,2, 0x13e1400,15, 0x13e1440,4, 0x13e1460,17, 0x13e14c0,6, 0x13e14e0,4, 0x13e14f4,11, 0x13e1524,54, 0x13e1604,1, 0x13e160c,1, 0x13e1614,1, 0x13e161c,15, 0x13e1660,6, 0x13e1680,4, 0x13e16a0,5, 0x13e16c0,4, 0x13e16e0,5, 0x13e1700,4, 0x13e1720,5, 0x13e1740,4, 0x13e1760,5, 0x13e1780,4, 0x13e17c0,15, 0x13e1800,4, 0x13e1880,19, 0x13e1900,1, 0x13e1980,24, 0x13e1a00,24, 0x13e1a80,24, 0x13e1b00,24, 0x13e1b80,1, 0x13e1b88,2, 0x13e2000,451, 0x13e2740,169, 0x13e3000,260, 0x13e3800,12, 0x13e3a04,1, 0x13e3a0c,8, 0x13e3a44,1, 0x13e3a50,7, 0x13e3a84,1, 0x13e3a94,27, 0x13e3b04,3, 0x13e3b14,3, 0x13e3b24,3, 0x13e3b34,21, 0x13e3ba0,5, 0x13e3bc0,1, 0x13e3c04,1, 0x13e3c14,3, 0x13e3c24,3, 0x13e3c34,3, 0x13e3c44,1, 0x13e3c60,8, 0x13e3c84,1, 0x13e3ca0,8, 0x13e3cc4,1, 0x13e3ce0,11, 0x13e3e04,1, 0x13e3e0c,2, 0x13e3e18,1, 0x13e3e20,3, 0x13e3e30,3, 0x13e3e40,1, 0x13e3e48,3, 0x13e3e58,3, 0x13e3e70,4, 0x13e4000,44, 0x13e4100,19, 0x13e4180,22, 0x13e4200,27, 0x13e4280,27, 0x13e4300,11, 0x13e4380,17, 0x13e4400,27, 0x13e4480,2, 0x13e44a0,6, 0x13e44c0,3, 0x13e44d0,4, 0x13e4500,35, 0x13e4600,34, 0x13e4700,26, 0x13e4780,23, 0x13e4800,15, 0x13e4848,4, 0x13e8000,20, 0x13e8100,49, 0x13e8200,20, 0x13e8300,49, 0x13e8400,20, 0x13e8500,49, 0x13e8600,20, 0x13e8700,49, 0x13e8800,8, 0x13e9000,20, 0x13e9100,49, 0x13e9200,20, 0x13e9300,49, 0x13e9400,20, 0x13e9500,49, 0x13e9600,20, 0x13e9700,49, 0x13e9800,8, 0x13ea000,15, 0x13ea040,3, 0x13ea050,1, 0x13ea058,4, 0x13ea080,10, 0x13ea0b0,3, 0x13ea0c4,7, 0x13ea100,44, 0x13ea200,5, 0x13ea218,5, 0x13ea280,20, 0x13ea300,1, 0x13ea800,52, 0x13ea8e0,5, 0x13ea900,5, 0x13eaa00,52, 0x13eaae0,5, 0x13eab00,5, 0x13eac00,18, 0x13eac50,10, 0x13ead00,36, 0x13eada0,5, 0x13eadc0,5, 0x13eb000,20, 0x13eb080,20, 0x13eb100,20, 0x13eb180,20, 0x13eb200,10, 0x13eb400,10, 0x13eb440,10, 0x13eb480,10, 0x13eb4c0,10, 0x13eb500,1, 0x13eb600,1, 0x13eb608,32, 0x13eb6a0,6, 0x13eb6c0,6, 0x13eb6e0,6, 0x13eb700,6, 0x13eb720,6, 0x13eb740,6, 0x13eb760,6, 0x13eb780,6, 0x13eb800,76, 0x13eba00,76, 0x13ebc00,33, 0x13ec000,76, 0x13ec200,76, 0x13ec400,33, 0x13ec800,4, 0x13eca00,72, 0x13ecc00,17, 0x13ecc48,4, 0x13ece00,27, 0x13ece80,4, 0x13ecec0,25, 0x13ecf40,6, 0x13ecf60,4, 0x13ecf74,11, 0x13ecfa4,16, 0x13ed000,12, 0x13ed040,2, 0x13ed050,1, 0x13ed058,5, 0x13ed070,3, 0x1400000,23, 0x1400080,23, 0x1400100,23, 0x1400180,23, 0x1400200,13, 0x1400404,1, 0x140047c,33, 0x1400504,1, 0x1400514,3, 0x1400524,1, 0x140052c,1, 0x1400600,96, 0x1400784,1, 0x1400790,4, 0x1401000,76, 0x1402000,582, 0x1403000,13, 0x1403400,27, 0x1403480,4, 0x14034c0,25, 0x1403540,6, 0x1403560,4, 0x1403574,3, 0x1403600,8, 0x1403624,59, 0x1403800,4, 0x1403880,36, 0x1403980,17, 0x1403a00,6, 0x1403a20,165, 0x1403d00,12, 0x1403d40,2, 0x1403d50,3, 0x1403d60,1, 0x1403d80,12, 0x1403dc0,2, 0x1403dd0,3, 0x1403de0,1, 0x1403e00,12, 0x1403e40,2, 0x1403e50,3, 0x1403e60,1, 0x1403e80,12, 0x1403ec0,2, 0x1403ed0,3, 0x1403ee0,1, 0x1403f00,9, 0x1403f80,3, 0x1403f90,5, 0x1403fa8,5, 0x1403fc0,5, 0x1403fd8,2, 0x1404000,1, 0x1404010,6, 0x1404030,78, 0x1404180,18, 0x1408004,6, 0x1409000,650, 0x140a000,650, 0x140b000,2, 0x140b040,9, 0x140b080,7, 0x140c000,34, 0x140c090,9, 0x140c0b8,11, 0x1410000,11, 0x1410040,11, 0x1410080,11, 0x14100c0,11, 0x1410104,1, 0x141011c,10, 0x1410148,2, 0x1410154,1, 0x141015c,24, 0x14101c0,3, 0x14101d0,3, 0x14101e0,3, 0x14101f0,33, 0x1410280,3, 0x1410290,3, 0x14102a0,3, 0x14102b0,3, 0x14102c0,5, 0x14102d8,8, 0x1410400,145, 0x1410800,4, 0x1410880,25, 0x1410900,5, 0x1410920,1, 0x1411000,11, 0x1411040,11, 0x1411080,11, 0x14110c0,11, 0x1411100,11, 0x1411140,11, 0x1411180,11, 0x14111c0,11, 0x1411200,1, 0x1411208,19, 0x1411260,2, 0x141126c,3, 0x1411280,5, 0x1411400,3, 0x1411410,30, 0x14114a4,1, 0x14114b4,23, 0x1411520,6, 0x1411540,3, 0x1411560,2, 0x141156c,2, 0x1411580,2, 0x14115c0,3, 0x14115d0,3, 0x14115e0,1, 0x1411600,1, 0x1411800,1, 0x1411814,12, 0x1411848,5, 0x1411860,7, 0x1411880,5, 0x1411898,5, 0x14118b0,5, 0x14118c8,7, 0x14118e8,7, 0x1411908,5, 0x1411920,11, 0x1411950,55, 0x1411a40,2, 0x1411a4c,2, 0x1411a60,2, 0x1411a80,6, 0x1411ac0,3, 0x1411ad0,3, 0x1411ae0,1, 0x1411b00,1, 0x1412000,2, 0x1412010,47, 0x14120e0,6, 0x1412100,6, 0x1412120,2, 0x141212c,3, 0x1412140,6, 0x1412200,5, 0x1412224,1, 0x1412234,3, 0x1412280,20, 0x1412404,1, 0x14124e4,71, 0x1412604,1, 0x1412670,38, 0x1412800,27, 0x1412880,4, 0x14128c0,25, 0x1412940,6, 0x1412960,4, 0x1412974,11, 0x14129a4,7, 0x1412a00,12, 0x1412a40,2, 0x1412a50,1, 0x1412a58,5, 0x1412a70,5, 0x1420000,19, 0x1420080,19, 0x1420100,19, 0x1420180,19, 0x1420200,12, 0x1420280,1, 0x14202a0,6, 0x14202c0,6, 0x14202e0,6, 0x1420300,6, 0x1420320,6, 0x1420340,6, 0x1420360,6, 0x1420380,9, 0x14203c0,13, 0x1420400,3, 0x1420410,159, 0x1420690,16, 0x14206e0,5, 0x1420700,5, 0x1420720,5, 0x1420740,5, 0x1420760,5, 0x1420780,5, 0x14207a0,5, 0x14207c0,5, 0x14207e0,6, 0x1420800,6, 0x1420820,6, 0x1420840,6, 0x1420860,6, 0x1420880,6, 0x14208a0,6, 0x14208c0,6, 0x14208e0,6, 0x1420900,6, 0x1420920,6, 0x1420940,6, 0x1420960,6, 0x1420980,6, 0x14209a0,6, 0x14209c0,6, 0x1420a00,22, 0x1420a80,1, 0x1420a88,3, 0x1420aa0,5, 0x1420ac0,1, 0x1420ad0,3, 0x1420ae0,1, 0x1420af0,3, 0x1420b00,1, 0x1420b10,3, 0x1420b20,1, 0x1420b30,3, 0x1420b40,1, 0x1420b48,3, 0x1420b58,3, 0x1420b68,3, 0x1420b78,3, 0x1420b88,3, 0x1420ba0,3, 0x1420bb0,1, 0x1420bc0,3, 0x1420bd0,1, 0x1420be0,3, 0x1420bf0,1, 0x1420c00,3, 0x1420c10,1, 0x1420c20,3, 0x1420c30,1, 0x1420c40,3, 0x1420c50,1, 0x1420c80,6, 0x1420ca0,6, 0x1420cc0,1, 0x1420d00,1, 0x1420d10,3, 0x1420d20,1, 0x1420d30,3, 0x1420d40,1, 0x1420d60,5, 0x1420d80,1, 0x1420d90,3, 0x1420da0,1, 0x1420dc0,5, 0x1420de0,1, 0x1420df0,3, 0x1420e00,1, 0x1420e10,3, 0x1420e20,5, 0x1420e40,2, 0x1420e50,3, 0x1420e60,5, 0x1420e80,2, 0x1420e90,3, 0x1420ea0,3, 0x1420eb0,3, 0x1420ec0,3, 0x1420ed0,3, 0x1420ee0,5, 0x1420f00,3, 0x1420f20,5, 0x1420f40,5, 0x1420f60,3, 0x1420f70,3, 0x1420f80,5, 0x1420fa0,3, 0x1420fb0,3, 0x1420fc0,3, 0x1420fd0,3, 0x1420fe0,3, 0x1420ff0,3, 0x1421000,6, 0x1421020,3, 0x1421040,3, 0x1421050,3, 0x1421060,1, 0x1421080,3, 0x1421090,3, 0x14210a0,1, 0x14210c0,3, 0x14210e0,5, 0x1421100,11, 0x1421130,3, 0x1421140,3, 0x1421150,3, 0x1421160,5, 0x1421180,5, 0x14211a0,3, 0x14211b0,3, 0x14211c0,3, 0x14211d0,3, 0x14211e0,2, 0x14211f0,3, 0x1421200,7, 0x1421220,3, 0x1421230,2, 0x1421240,3, 0x1421250,3, 0x1421260,2, 0x1421400,15, 0x1421440,4, 0x1421460,17, 0x14214c0,6, 0x14214e0,4, 0x14214f4,11, 0x1421524,54, 0x1421604,1, 0x142160c,1, 0x1421614,1, 0x142161c,15, 0x1421660,6, 0x1421680,4, 0x14216a0,5, 0x14216c0,4, 0x14216e0,5, 0x1421700,4, 0x1421720,5, 0x1421740,4, 0x1421760,5, 0x1421780,4, 0x14217c0,15, 0x1421800,4, 0x1421880,19, 0x1421900,1, 0x1421980,24, 0x1421a00,24, 0x1421a80,24, 0x1421b00,24, 0x1421b80,1, 0x1421b88,2, 0x1422000,451, 0x1422740,169, 0x1423000,260, 0x1423800,12, 0x1423a04,1, 0x1423a0c,8, 0x1423a44,1, 0x1423a50,7, 0x1423a84,1, 0x1423a94,27, 0x1423b04,3, 0x1423b14,3, 0x1423b24,3, 0x1423b34,21, 0x1423ba0,5, 0x1423bc0,1, 0x1423c04,1, 0x1423c14,3, 0x1423c24,3, 0x1423c34,3, 0x1423c44,1, 0x1423c60,8, 0x1423c84,1, 0x1423ca0,8, 0x1423cc4,1, 0x1423ce0,11, 0x1423e04,1, 0x1423e0c,2, 0x1423e18,1, 0x1423e20,3, 0x1423e30,3, 0x1423e40,1, 0x1423e48,3, 0x1423e58,3, 0x1423e70,4, 0x1424000,44, 0x1424100,19, 0x1424180,22, 0x1424200,27, 0x1424280,27, 0x1424300,11, 0x1424380,17, 0x1424400,27, 0x1424480,2, 0x14244a0,6, 0x14244c0,3, 0x14244d0,4, 0x1424500,35, 0x1424600,34, 0x1424700,26, 0x1424780,23, 0x1424800,15, 0x1424848,4, 0x1428000,20, 0x1428100,49, 0x1428200,20, 0x1428300,49, 0x1428400,20, 0x1428500,49, 0x1428600,20, 0x1428700,49, 0x1428800,8, 0x1429000,20, 0x1429100,49, 0x1429200,20, 0x1429300,49, 0x1429400,20, 0x1429500,49, 0x1429600,20, 0x1429700,49, 0x1429800,8, 0x142a000,15, 0x142a040,3, 0x142a050,1, 0x142a058,4, 0x142a080,10, 0x142a0b0,3, 0x142a0c4,7, 0x142a100,44, 0x142a200,5, 0x142a218,5, 0x142a280,20, 0x142a300,1, 0x142a800,52, 0x142a8e0,5, 0x142a900,5, 0x142aa00,52, 0x142aae0,5, 0x142ab00,5, 0x142ac00,18, 0x142ac50,10, 0x142ad00,36, 0x142ada0,5, 0x142adc0,5, 0x142b000,20, 0x142b080,20, 0x142b100,20, 0x142b180,20, 0x142b200,10, 0x142b400,10, 0x142b440,10, 0x142b480,10, 0x142b4c0,10, 0x142b500,1, 0x142b600,1, 0x142b608,32, 0x142b6a0,6, 0x142b6c0,6, 0x142b6e0,6, 0x142b700,6, 0x142b720,6, 0x142b740,6, 0x142b760,6, 0x142b780,6, 0x142b800,76, 0x142ba00,76, 0x142bc00,33, 0x142c000,76, 0x142c200,76, 0x142c400,33, 0x142c800,4, 0x142ca00,72, 0x142cc00,17, 0x142cc48,4, 0x142ce00,27, 0x142ce80,4, 0x142cec0,25, 0x142cf40,6, 0x142cf60,4, 0x142cf74,11, 0x142cfa4,16, 0x142d000,12, 0x142d040,2, 0x142d050,1, 0x142d058,5, 0x142d070,3, 0x1440000,23, 0x1440080,23, 0x1440100,23, 0x1440180,23, 0x1440200,13, 0x1440404,1, 0x144047c,33, 0x1440504,1, 0x1440514,3, 0x1440524,1, 0x144052c,1, 0x1440600,96, 0x1440784,1, 0x1440790,4, 0x1441000,76, 0x1442000,582, 0x1443000,13, 0x1443400,27, 0x1443480,4, 0x14434c0,25, 0x1443540,6, 0x1443560,4, 0x1443574,3, 0x1443600,8, 0x1443624,59, 0x1443800,4, 0x1443880,36, 0x1443980,17, 0x1443a00,6, 0x1443a20,165, 0x1443d00,12, 0x1443d40,2, 0x1443d50,3, 0x1443d60,1, 0x1443d80,12, 0x1443dc0,2, 0x1443dd0,3, 0x1443de0,1, 0x1443e00,12, 0x1443e40,2, 0x1443e50,3, 0x1443e60,1, 0x1443e80,12, 0x1443ec0,2, 0x1443ed0,3, 0x1443ee0,1, 0x1443f00,9, 0x1443f80,3, 0x1443f90,5, 0x1443fa8,5, 0x1443fc0,5, 0x1443fd8,2, 0x1444000,1, 0x1444010,6, 0x1444030,78, 0x1444180,18, 0x1448004,6, 0x1449000,650, 0x144a000,650, 0x144b000,2, 0x144b040,9, 0x144b080,7, 0x144c000,34, 0x144c090,9, 0x144c0b8,11, 0x1450000,11, 0x1450040,11, 0x1450080,11, 0x14500c0,11, 0x1450104,1, 0x145011c,10, 0x1450148,2, 0x1450154,1, 0x145015c,24, 0x14501c0,3, 0x14501d0,3, 0x14501e0,3, 0x14501f0,33, 0x1450280,3, 0x1450290,3, 0x14502a0,3, 0x14502b0,3, 0x14502c0,5, 0x14502d8,8, 0x1450400,145, 0x1450800,4, 0x1450880,25, 0x1450900,5, 0x1450920,1, 0x1451000,11, 0x1451040,11, 0x1451080,11, 0x14510c0,11, 0x1451100,11, 0x1451140,11, 0x1451180,11, 0x14511c0,11, 0x1451200,1, 0x1451208,19, 0x1451260,2, 0x145126c,3, 0x1451280,5, 0x1451400,3, 0x1451410,30, 0x14514a4,1, 0x14514b4,23, 0x1451520,6, 0x1451540,3, 0x1451560,2, 0x145156c,2, 0x1451580,2, 0x14515c0,3, 0x14515d0,3, 0x14515e0,1, 0x1451600,1, 0x1451800,1, 0x1451814,12, 0x1451848,5, 0x1451860,7, 0x1451880,5, 0x1451898,5, 0x14518b0,5, 0x14518c8,7, 0x14518e8,7, 0x1451908,5, 0x1451920,11, 0x1451950,55, 0x1451a40,2, 0x1451a4c,2, 0x1451a60,2, 0x1451a80,6, 0x1451ac0,3, 0x1451ad0,3, 0x1451ae0,1, 0x1451b00,1, 0x1452000,2, 0x1452010,47, 0x14520e0,6, 0x1452100,6, 0x1452120,2, 0x145212c,3, 0x1452140,6, 0x1452200,5, 0x1452224,1, 0x1452234,3, 0x1452280,20, 0x1452404,1, 0x14524e4,71, 0x1452604,1, 0x1452670,38, 0x1452800,27, 0x1452880,4, 0x14528c0,25, 0x1452940,6, 0x1452960,4, 0x1452974,11, 0x14529a4,7, 0x1452a00,12, 0x1452a40,2, 0x1452a50,1, 0x1452a58,5, 0x1452a70,5, 0x1460000,19, 0x1460080,19, 0x1460100,19, 0x1460180,19, 0x1460200,12, 0x1460280,1, 0x14602a0,6, 0x14602c0,6, 0x14602e0,6, 0x1460300,6, 0x1460320,6, 0x1460340,6, 0x1460360,6, 0x1460380,9, 0x14603c0,13, 0x1460400,3, 0x1460410,159, 0x1460690,16, 0x14606e0,5, 0x1460700,5, 0x1460720,5, 0x1460740,5, 0x1460760,5, 0x1460780,5, 0x14607a0,5, 0x14607c0,5, 0x14607e0,6, 0x1460800,6, 0x1460820,6, 0x1460840,6, 0x1460860,6, 0x1460880,6, 0x14608a0,6, 0x14608c0,6, 0x14608e0,6, 0x1460900,6, 0x1460920,6, 0x1460940,6, 0x1460960,6, 0x1460980,6, 0x14609a0,6, 0x14609c0,6, 0x1460a00,22, 0x1460a80,1, 0x1460a88,3, 0x1460aa0,5, 0x1460ac0,1, 0x1460ad0,3, 0x1460ae0,1, 0x1460af0,3, 0x1460b00,1, 0x1460b10,3, 0x1460b20,1, 0x1460b30,3, 0x1460b40,1, 0x1460b48,3, 0x1460b58,3, 0x1460b68,3, 0x1460b78,3, 0x1460b88,3, 0x1460ba0,3, 0x1460bb0,1, 0x1460bc0,3, 0x1460bd0,1, 0x1460be0,3, 0x1460bf0,1, 0x1460c00,3, 0x1460c10,1, 0x1460c20,3, 0x1460c30,1, 0x1460c40,3, 0x1460c50,1, 0x1460c80,6, 0x1460ca0,6, 0x1460cc0,1, 0x1460d00,1, 0x1460d10,3, 0x1460d20,1, 0x1460d30,3, 0x1460d40,1, 0x1460d60,5, 0x1460d80,1, 0x1460d90,3, 0x1460da0,1, 0x1460dc0,5, 0x1460de0,1, 0x1460df0,3, 0x1460e00,1, 0x1460e10,3, 0x1460e20,5, 0x1460e40,2, 0x1460e50,3, 0x1460e60,5, 0x1460e80,2, 0x1460e90,3, 0x1460ea0,3, 0x1460eb0,3, 0x1460ec0,3, 0x1460ed0,3, 0x1460ee0,5, 0x1460f00,3, 0x1460f20,5, 0x1460f40,5, 0x1460f60,3, 0x1460f70,3, 0x1460f80,5, 0x1460fa0,3, 0x1460fb0,3, 0x1460fc0,3, 0x1460fd0,3, 0x1460fe0,3, 0x1460ff0,3, 0x1461000,6, 0x1461020,3, 0x1461040,3, 0x1461050,3, 0x1461060,1, 0x1461080,3, 0x1461090,3, 0x14610a0,1, 0x14610c0,3, 0x14610e0,5, 0x1461100,11, 0x1461130,3, 0x1461140,3, 0x1461150,3, 0x1461160,5, 0x1461180,5, 0x14611a0,3, 0x14611b0,3, 0x14611c0,3, 0x14611d0,3, 0x14611e0,2, 0x14611f0,3, 0x1461200,7, 0x1461220,3, 0x1461230,2, 0x1461240,3, 0x1461250,3, 0x1461260,2, 0x1461400,15, 0x1461440,4, 0x1461460,17, 0x14614c0,6, 0x14614e0,4, 0x14614f4,11, 0x1461524,54, 0x1461604,1, 0x146160c,1, 0x1461614,1, 0x146161c,15, 0x1461660,6, 0x1461680,4, 0x14616a0,5, 0x14616c0,4, 0x14616e0,5, 0x1461700,4, 0x1461720,5, 0x1461740,4, 0x1461760,5, 0x1461780,4, 0x14617c0,15, 0x1461800,4, 0x1461880,19, 0x1461900,1, 0x1461980,24, 0x1461a00,24, 0x1461a80,24, 0x1461b00,24, 0x1461b80,1, 0x1461b88,2, 0x1462000,451, 0x1462740,169, 0x1463000,260, 0x1463800,12, 0x1463a04,1, 0x1463a0c,8, 0x1463a44,1, 0x1463a50,7, 0x1463a84,1, 0x1463a94,27, 0x1463b04,3, 0x1463b14,3, 0x1463b24,3, 0x1463b34,21, 0x1463ba0,5, 0x1463bc0,1, 0x1463c04,1, 0x1463c14,3, 0x1463c24,3, 0x1463c34,3, 0x1463c44,1, 0x1463c60,8, 0x1463c84,1, 0x1463ca0,8, 0x1463cc4,1, 0x1463ce0,11, 0x1463e04,1, 0x1463e0c,2, 0x1463e18,1, 0x1463e20,3, 0x1463e30,3, 0x1463e40,1, 0x1463e48,3, 0x1463e58,3, 0x1463e70,4, 0x1464000,44, 0x1464100,19, 0x1464180,22, 0x1464200,27, 0x1464280,27, 0x1464300,11, 0x1464380,17, 0x1464400,27, 0x1464480,2, 0x14644a0,6, 0x14644c0,3, 0x14644d0,4, 0x1464500,35, 0x1464600,34, 0x1464700,26, 0x1464780,23, 0x1464800,15, 0x1464848,4, 0x1468000,20, 0x1468100,49, 0x1468200,20, 0x1468300,49, 0x1468400,20, 0x1468500,49, 0x1468600,20, 0x1468700,49, 0x1468800,8, 0x1469000,20, 0x1469100,49, 0x1469200,20, 0x1469300,49, 0x1469400,20, 0x1469500,49, 0x1469600,20, 0x1469700,49, 0x1469800,8, 0x146a000,15, 0x146a040,3, 0x146a050,1, 0x146a058,4, 0x146a080,10, 0x146a0b0,3, 0x146a0c4,7, 0x146a100,44, 0x146a200,5, 0x146a218,5, 0x146a280,20, 0x146a300,1, 0x146a800,52, 0x146a8e0,5, 0x146a900,5, 0x146aa00,52, 0x146aae0,5, 0x146ab00,5, 0x146ac00,18, 0x146ac50,10, 0x146ad00,36, 0x146ada0,5, 0x146adc0,5, 0x146b000,20, 0x146b080,20, 0x146b100,20, 0x146b180,20, 0x146b200,10, 0x146b400,10, 0x146b440,10, 0x146b480,10, 0x146b4c0,10, 0x146b500,1, 0x146b600,1, 0x146b608,32, 0x146b6a0,6, 0x146b6c0,6, 0x146b6e0,6, 0x146b700,6, 0x146b720,6, 0x146b740,6, 0x146b760,6, 0x146b780,6, 0x146b800,76, 0x146ba00,76, 0x146bc00,33, 0x146c000,76, 0x146c200,76, 0x146c400,33, 0x146c800,4, 0x146ca00,72, 0x146cc00,17, 0x146cc48,4, 0x146ce00,27, 0x146ce80,4, 0x146cec0,25, 0x146cf40,6, 0x146cf60,4, 0x146cf74,11, 0x146cfa4,16, 0x146d000,12, 0x146d040,2, 0x146d050,1, 0x146d058,5, 0x146d070,3, 0x1480000,23, 0x1480080,23, 0x1480100,23, 0x1480180,23, 0x1480200,13, 0x1480404,1, 0x148047c,33, 0x1480504,1, 0x1480514,3, 0x1480524,1, 0x148052c,1, 0x1480600,96, 0x1480784,1, 0x1480790,4, 0x1481000,76, 0x1482000,582, 0x1483000,13, 0x1483400,27, 0x1483480,4, 0x14834c0,25, 0x1483540,6, 0x1483560,4, 0x1483574,3, 0x1483600,8, 0x1483624,59, 0x1483800,4, 0x1483880,36, 0x1483980,17, 0x1483a00,6, 0x1483a20,165, 0x1483d00,12, 0x1483d40,2, 0x1483d50,3, 0x1483d60,1, 0x1483d80,12, 0x1483dc0,2, 0x1483dd0,3, 0x1483de0,1, 0x1483e00,12, 0x1483e40,2, 0x1483e50,3, 0x1483e60,1, 0x1483e80,12, 0x1483ec0,2, 0x1483ed0,3, 0x1483ee0,1, 0x1483f00,9, 0x1483f80,3, 0x1483f90,5, 0x1483fa8,5, 0x1483fc0,5, 0x1483fd8,2, 0x1484000,1, 0x1484010,6, 0x1484030,78, 0x1484180,18, 0x1488004,6, 0x1489000,650, 0x148a000,650, 0x148b000,2, 0x148b040,9, 0x148b080,7, 0x148c000,34, 0x148c090,9, 0x148c0b8,11, 0x1490000,11, 0x1490040,11, 0x1490080,11, 0x14900c0,11, 0x1490104,1, 0x149011c,10, 0x1490148,2, 0x1490154,1, 0x149015c,24, 0x14901c0,3, 0x14901d0,3, 0x14901e0,3, 0x14901f0,33, 0x1490280,3, 0x1490290,3, 0x14902a0,3, 0x14902b0,3, 0x14902c0,5, 0x14902d8,8, 0x1490400,145, 0x1490800,4, 0x1490880,25, 0x1490900,5, 0x1490920,1, 0x1491000,11, 0x1491040,11, 0x1491080,11, 0x14910c0,11, 0x1491100,11, 0x1491140,11, 0x1491180,11, 0x14911c0,11, 0x1491200,1, 0x1491208,19, 0x1491260,2, 0x149126c,3, 0x1491280,5, 0x1491400,3, 0x1491410,30, 0x14914a4,1, 0x14914b4,23, 0x1491520,6, 0x1491540,3, 0x1491560,2, 0x149156c,2, 0x1491580,2, 0x14915c0,3, 0x14915d0,3, 0x14915e0,1, 0x1491600,1, 0x1491800,1, 0x1491814,12, 0x1491848,5, 0x1491860,7, 0x1491880,5, 0x1491898,5, 0x14918b0,5, 0x14918c8,7, 0x14918e8,7, 0x1491908,5, 0x1491920,11, 0x1491950,55, 0x1491a40,2, 0x1491a4c,2, 0x1491a60,2, 0x1491a80,6, 0x1491ac0,3, 0x1491ad0,3, 0x1491ae0,1, 0x1491b00,1, 0x1492000,2, 0x1492010,47, 0x14920e0,6, 0x1492100,6, 0x1492120,2, 0x149212c,3, 0x1492140,6, 0x1492200,5, 0x1492224,1, 0x1492234,3, 0x1492280,20, 0x1492404,1, 0x14924e4,71, 0x1492604,1, 0x1492670,38, 0x1492800,27, 0x1492880,4, 0x14928c0,25, 0x1492940,6, 0x1492960,4, 0x1492974,11, 0x14929a4,7, 0x1492a00,12, 0x1492a40,2, 0x1492a50,1, 0x1492a58,5, 0x1492a70,5, 0x14a0000,19, 0x14a0080,19, 0x14a0100,19, 0x14a0180,19, 0x14a0200,12, 0x14a0280,1, 0x14a02a0,6, 0x14a02c0,6, 0x14a02e0,6, 0x14a0300,6, 0x14a0320,6, 0x14a0340,6, 0x14a0360,6, 0x14a0380,9, 0x14a03c0,13, 0x14a0400,3, 0x14a0410,159, 0x14a0690,16, 0x14a06e0,5, 0x14a0700,5, 0x14a0720,5, 0x14a0740,5, 0x14a0760,5, 0x14a0780,5, 0x14a07a0,5, 0x14a07c0,5, 0x14a07e0,6, 0x14a0800,6, 0x14a0820,6, 0x14a0840,6, 0x14a0860,6, 0x14a0880,6, 0x14a08a0,6, 0x14a08c0,6, 0x14a08e0,6, 0x14a0900,6, 0x14a0920,6, 0x14a0940,6, 0x14a0960,6, 0x14a0980,6, 0x14a09a0,6, 0x14a09c0,6, 0x14a0a00,22, 0x14a0a80,1, 0x14a0a88,3, 0x14a0aa0,5, 0x14a0ac0,1, 0x14a0ad0,3, 0x14a0ae0,1, 0x14a0af0,3, 0x14a0b00,1, 0x14a0b10,3, 0x14a0b20,1, 0x14a0b30,3, 0x14a0b40,1, 0x14a0b48,3, 0x14a0b58,3, 0x14a0b68,3, 0x14a0b78,3, 0x14a0b88,3, 0x14a0ba0,3, 0x14a0bb0,1, 0x14a0bc0,3, 0x14a0bd0,1, 0x14a0be0,3, 0x14a0bf0,1, 0x14a0c00,3, 0x14a0c10,1, 0x14a0c20,3, 0x14a0c30,1, 0x14a0c40,3, 0x14a0c50,1, 0x14a0c80,6, 0x14a0ca0,6, 0x14a0cc0,1, 0x14a0d00,1, 0x14a0d10,3, 0x14a0d20,1, 0x14a0d30,3, 0x14a0d40,1, 0x14a0d60,5, 0x14a0d80,1, 0x14a0d90,3, 0x14a0da0,1, 0x14a0dc0,5, 0x14a0de0,1, 0x14a0df0,3, 0x14a0e00,1, 0x14a0e10,3, 0x14a0e20,5, 0x14a0e40,2, 0x14a0e50,3, 0x14a0e60,5, 0x14a0e80,2, 0x14a0e90,3, 0x14a0ea0,3, 0x14a0eb0,3, 0x14a0ec0,3, 0x14a0ed0,3, 0x14a0ee0,5, 0x14a0f00,3, 0x14a0f20,5, 0x14a0f40,5, 0x14a0f60,3, 0x14a0f70,3, 0x14a0f80,5, 0x14a0fa0,3, 0x14a0fb0,3, 0x14a0fc0,3, 0x14a0fd0,3, 0x14a0fe0,3, 0x14a0ff0,3, 0x14a1000,6, 0x14a1020,3, 0x14a1040,3, 0x14a1050,3, 0x14a1060,1, 0x14a1080,3, 0x14a1090,3, 0x14a10a0,1, 0x14a10c0,3, 0x14a10e0,5, 0x14a1100,11, 0x14a1130,3, 0x14a1140,3, 0x14a1150,3, 0x14a1160,5, 0x14a1180,5, 0x14a11a0,3, 0x14a11b0,3, 0x14a11c0,3, 0x14a11d0,3, 0x14a11e0,2, 0x14a11f0,3, 0x14a1200,7, 0x14a1220,3, 0x14a1230,2, 0x14a1240,3, 0x14a1250,3, 0x14a1260,2, 0x14a1400,15, 0x14a1440,4, 0x14a1460,17, 0x14a14c0,6, 0x14a14e0,4, 0x14a14f4,11, 0x14a1524,54, 0x14a1604,1, 0x14a160c,1, 0x14a1614,1, 0x14a161c,15, 0x14a1660,6, 0x14a1680,4, 0x14a16a0,5, 0x14a16c0,4, 0x14a16e0,5, 0x14a1700,4, 0x14a1720,5, 0x14a1740,4, 0x14a1760,5, 0x14a1780,4, 0x14a17c0,15, 0x14a1800,4, 0x14a1880,19, 0x14a1900,1, 0x14a1980,24, 0x14a1a00,24, 0x14a1a80,24, 0x14a1b00,24, 0x14a1b80,1, 0x14a1b88,2, 0x14a2000,451, 0x14a2740,169, 0x14a3000,260, 0x14a3800,12, 0x14a3a04,1, 0x14a3a0c,8, 0x14a3a44,1, 0x14a3a50,7, 0x14a3a84,1, 0x14a3a94,27, 0x14a3b04,3, 0x14a3b14,3, 0x14a3b24,3, 0x14a3b34,21, 0x14a3ba0,5, 0x14a3bc0,1, 0x14a3c04,1, 0x14a3c14,3, 0x14a3c24,3, 0x14a3c34,3, 0x14a3c44,1, 0x14a3c60,8, 0x14a3c84,1, 0x14a3ca0,8, 0x14a3cc4,1, 0x14a3ce0,11, 0x14a3e04,1, 0x14a3e0c,2, 0x14a3e18,1, 0x14a3e20,3, 0x14a3e30,3, 0x14a3e40,1, 0x14a3e48,3, 0x14a3e58,3, 0x14a3e70,4, 0x14a4000,44, 0x14a4100,19, 0x14a4180,22, 0x14a4200,27, 0x14a4280,27, 0x14a4300,11, 0x14a4380,17, 0x14a4400,27, 0x14a4480,2, 0x14a44a0,6, 0x14a44c0,3, 0x14a44d0,4, 0x14a4500,35, 0x14a4600,34, 0x14a4700,26, 0x14a4780,23, 0x14a4800,15, 0x14a4848,4, 0x14a8000,20, 0x14a8100,49, 0x14a8200,20, 0x14a8300,49, 0x14a8400,20, 0x14a8500,49, 0x14a8600,20, 0x14a8700,49, 0x14a8800,8, 0x14a9000,20, 0x14a9100,49, 0x14a9200,20, 0x14a9300,49, 0x14a9400,20, 0x14a9500,49, 0x14a9600,20, 0x14a9700,49, 0x14a9800,8, 0x14aa000,15, 0x14aa040,3, 0x14aa050,1, 0x14aa058,4, 0x14aa080,10, 0x14aa0b0,3, 0x14aa0c4,7, 0x14aa100,44, 0x14aa200,5, 0x14aa218,5, 0x14aa280,20, 0x14aa300,1, 0x14aa800,52, 0x14aa8e0,5, 0x14aa900,5, 0x14aaa00,52, 0x14aaae0,5, 0x14aab00,5, 0x14aac00,18, 0x14aac50,10, 0x14aad00,36, 0x14aada0,5, 0x14aadc0,5, 0x14ab000,20, 0x14ab080,20, 0x14ab100,20, 0x14ab180,20, 0x14ab200,10, 0x14ab400,10, 0x14ab440,10, 0x14ab480,10, 0x14ab4c0,10, 0x14ab500,1, 0x14ab600,1, 0x14ab608,32, 0x14ab6a0,6, 0x14ab6c0,6, 0x14ab6e0,6, 0x14ab700,6, 0x14ab720,6, 0x14ab740,6, 0x14ab760,6, 0x14ab780,6, 0x14ab800,76, 0x14aba00,76, 0x14abc00,33, 0x14ac000,76, 0x14ac200,76, 0x14ac400,33, 0x14ac800,4, 0x14aca00,72, 0x14acc00,17, 0x14acc48,4, 0x14ace00,27, 0x14ace80,4, 0x14acec0,25, 0x14acf40,6, 0x14acf60,4, 0x14acf74,11, 0x14acfa4,16, 0x14ad000,12, 0x14ad040,2, 0x14ad050,1, 0x14ad058,5, 0x14ad070,3, 0x14c0000,23, 0x14c0080,23, 0x14c0100,23, 0x14c0180,23, 0x14c0200,13, 0x14c0404,1, 0x14c047c,33, 0x14c0504,1, 0x14c0514,3, 0x14c0524,1, 0x14c052c,1, 0x14c0600,96, 0x14c0784,1, 0x14c0790,4, 0x14c1000,76, 0x14c2000,582, 0x14c3000,13, 0x14c3400,27, 0x14c3480,4, 0x14c34c0,25, 0x14c3540,6, 0x14c3560,4, 0x14c3574,3, 0x14c3600,8, 0x14c3624,59, 0x14c3800,4, 0x14c3880,36, 0x14c3980,17, 0x14c3a00,6, 0x14c3a20,165, 0x14c3d00,12, 0x14c3d40,2, 0x14c3d50,3, 0x14c3d60,1, 0x14c3d80,12, 0x14c3dc0,2, 0x14c3dd0,3, 0x14c3de0,1, 0x14c3e00,12, 0x14c3e40,2, 0x14c3e50,3, 0x14c3e60,1, 0x14c3e80,12, 0x14c3ec0,2, 0x14c3ed0,3, 0x14c3ee0,1, 0x14c3f00,9, 0x14c3f80,3, 0x14c3f90,5, 0x14c3fa8,5, 0x14c3fc0,5, 0x14c3fd8,2, 0x14c4000,1, 0x14c4010,6, 0x14c4030,78, 0x14c4180,18, 0x14c8004,6, 0x14c9000,650, 0x14ca000,650, 0x14cb000,2, 0x14cb040,9, 0x14cb080,7, 0x14cc000,34, 0x14cc090,9, 0x14cc0b8,11, 0x14d0000,11, 0x14d0040,11, 0x14d0080,11, 0x14d00c0,11, 0x14d0104,1, 0x14d011c,10, 0x14d0148,2, 0x14d0154,1, 0x14d015c,24, 0x14d01c0,3, 0x14d01d0,3, 0x14d01e0,3, 0x14d01f0,33, 0x14d0280,3, 0x14d0290,3, 0x14d02a0,3, 0x14d02b0,3, 0x14d02c0,5, 0x14d02d8,8, 0x14d0400,145, 0x14d0800,4, 0x14d0880,25, 0x14d0900,5, 0x14d0920,1, 0x14d1000,11, 0x14d1040,11, 0x14d1080,11, 0x14d10c0,11, 0x14d1100,11, 0x14d1140,11, 0x14d1180,11, 0x14d11c0,11, 0x14d1200,1, 0x14d1208,19, 0x14d1260,2, 0x14d126c,3, 0x14d1280,5, 0x14d1400,3, 0x14d1410,30, 0x14d14a4,1, 0x14d14b4,23, 0x14d1520,6, 0x14d1540,3, 0x14d1560,2, 0x14d156c,2, 0x14d1580,2, 0x14d15c0,3, 0x14d15d0,3, 0x14d15e0,1, 0x14d1600,1, 0x14d1800,1, 0x14d1814,12, 0x14d1848,5, 0x14d1860,7, 0x14d1880,5, 0x14d1898,5, 0x14d18b0,5, 0x14d18c8,7, 0x14d18e8,7, 0x14d1908,5, 0x14d1920,11, 0x14d1950,55, 0x14d1a40,2, 0x14d1a4c,2, 0x14d1a60,2, 0x14d1a80,6, 0x14d1ac0,3, 0x14d1ad0,3, 0x14d1ae0,1, 0x14d1b00,1, 0x14d2000,2, 0x14d2010,47, 0x14d20e0,6, 0x14d2100,6, 0x14d2120,2, 0x14d212c,3, 0x14d2140,6, 0x14d2200,5, 0x14d2224,1, 0x14d2234,3, 0x14d2280,20, 0x14d2404,1, 0x14d24e4,71, 0x14d2604,1, 0x14d2670,38, 0x14d2800,27, 0x14d2880,4, 0x14d28c0,25, 0x14d2940,6, 0x14d2960,4, 0x14d2974,11, 0x14d29a4,7, 0x14d2a00,12, 0x14d2a40,2, 0x14d2a50,1, 0x14d2a58,5, 0x14d2a70,5, 0x14e0000,19, 0x14e0080,19, 0x14e0100,19, 0x14e0180,19, 0x14e0200,12, 0x14e0280,1, 0x14e02a0,6, 0x14e02c0,6, 0x14e02e0,6, 0x14e0300,6, 0x14e0320,6, 0x14e0340,6, 0x14e0360,6, 0x14e0380,9, 0x14e03c0,13, 0x14e0400,3, 0x14e0410,159, 0x14e0690,16, 0x14e06e0,5, 0x14e0700,5, 0x14e0720,5, 0x14e0740,5, 0x14e0760,5, 0x14e0780,5, 0x14e07a0,5, 0x14e07c0,5, 0x14e07e0,6, 0x14e0800,6, 0x14e0820,6, 0x14e0840,6, 0x14e0860,6, 0x14e0880,6, 0x14e08a0,6, 0x14e08c0,6, 0x14e08e0,6, 0x14e0900,6, 0x14e0920,6, 0x14e0940,6, 0x14e0960,6, 0x14e0980,6, 0x14e09a0,6, 0x14e09c0,6, 0x14e0a00,22, 0x14e0a80,1, 0x14e0a88,3, 0x14e0aa0,5, 0x14e0ac0,1, 0x14e0ad0,3, 0x14e0ae0,1, 0x14e0af0,3, 0x14e0b00,1, 0x14e0b10,3, 0x14e0b20,1, 0x14e0b30,3, 0x14e0b40,1, 0x14e0b48,3, 0x14e0b58,3, 0x14e0b68,3, 0x14e0b78,3, 0x14e0b88,3, 0x14e0ba0,3, 0x14e0bb0,1, 0x14e0bc0,3, 0x14e0bd0,1, 0x14e0be0,3, 0x14e0bf0,1, 0x14e0c00,3, 0x14e0c10,1, 0x14e0c20,3, 0x14e0c30,1, 0x14e0c40,3, 0x14e0c50,1, 0x14e0c80,6, 0x14e0ca0,6, 0x14e0cc0,1, 0x14e0d00,1, 0x14e0d10,3, 0x14e0d20,1, 0x14e0d30,3, 0x14e0d40,1, 0x14e0d60,5, 0x14e0d80,1, 0x14e0d90,3, 0x14e0da0,1, 0x14e0dc0,5, 0x14e0de0,1, 0x14e0df0,3, 0x14e0e00,1, 0x14e0e10,3, 0x14e0e20,5, 0x14e0e40,2, 0x14e0e50,3, 0x14e0e60,5, 0x14e0e80,2, 0x14e0e90,3, 0x14e0ea0,3, 0x14e0eb0,3, 0x14e0ec0,3, 0x14e0ed0,3, 0x14e0ee0,5, 0x14e0f00,3, 0x14e0f20,5, 0x14e0f40,5, 0x14e0f60,3, 0x14e0f70,3, 0x14e0f80,5, 0x14e0fa0,3, 0x14e0fb0,3, 0x14e0fc0,3, 0x14e0fd0,3, 0x14e0fe0,3, 0x14e0ff0,3, 0x14e1000,6, 0x14e1020,3, 0x14e1040,3, 0x14e1050,3, 0x14e1060,1, 0x14e1080,3, 0x14e1090,3, 0x14e10a0,1, 0x14e10c0,3, 0x14e10e0,5, 0x14e1100,11, 0x14e1130,3, 0x14e1140,3, 0x14e1150,3, 0x14e1160,5, 0x14e1180,5, 0x14e11a0,3, 0x14e11b0,3, 0x14e11c0,3, 0x14e11d0,3, 0x14e11e0,2, 0x14e11f0,3, 0x14e1200,7, 0x14e1220,3, 0x14e1230,2, 0x14e1240,3, 0x14e1250,3, 0x14e1260,2, 0x14e1400,15, 0x14e1440,4, 0x14e1460,17, 0x14e14c0,6, 0x14e14e0,4, 0x14e14f4,11, 0x14e1524,54, 0x14e1604,1, 0x14e160c,1, 0x14e1614,1, 0x14e161c,15, 0x14e1660,6, 0x14e1680,4, 0x14e16a0,5, 0x14e16c0,4, 0x14e16e0,5, 0x14e1700,4, 0x14e1720,5, 0x14e1740,4, 0x14e1760,5, 0x14e1780,4, 0x14e17c0,15, 0x14e1800,4, 0x14e1880,19, 0x14e1900,1, 0x14e1980,24, 0x14e1a00,24, 0x14e1a80,24, 0x14e1b00,24, 0x14e1b80,1, 0x14e1b88,2, 0x14e2000,451, 0x14e2740,169, 0x14e3000,260, 0x14e3800,12, 0x14e3a04,1, 0x14e3a0c,8, 0x14e3a44,1, 0x14e3a50,7, 0x14e3a84,1, 0x14e3a94,27, 0x14e3b04,3, 0x14e3b14,3, 0x14e3b24,3, 0x14e3b34,21, 0x14e3ba0,5, 0x14e3bc0,1, 0x14e3c04,1, 0x14e3c14,3, 0x14e3c24,3, 0x14e3c34,3, 0x14e3c44,1, 0x14e3c60,8, 0x14e3c84,1, 0x14e3ca0,8, 0x14e3cc4,1, 0x14e3ce0,11, 0x14e3e04,1, 0x14e3e0c,2, 0x14e3e18,1, 0x14e3e20,3, 0x14e3e30,3, 0x14e3e40,1, 0x14e3e48,3, 0x14e3e58,3, 0x14e3e70,4, 0x14e4000,44, 0x14e4100,19, 0x14e4180,22, 0x14e4200,27, 0x14e4280,27, 0x14e4300,11, 0x14e4380,17, 0x14e4400,27, 0x14e4480,2, 0x14e44a0,6, 0x14e44c0,3, 0x14e44d0,4, 0x14e4500,35, 0x14e4600,34, 0x14e4700,26, 0x14e4780,23, 0x14e4800,15, 0x14e4848,4, 0x14e8000,20, 0x14e8100,49, 0x14e8200,20, 0x14e8300,49, 0x14e8400,20, 0x14e8500,49, 0x14e8600,20, 0x14e8700,49, 0x14e8800,8, 0x14e9000,20, 0x14e9100,49, 0x14e9200,20, 0x14e9300,49, 0x14e9400,20, 0x14e9500,49, 0x14e9600,20, 0x14e9700,49, 0x14e9800,8, 0x14ea000,15, 0x14ea040,3, 0x14ea050,1, 0x14ea058,4, 0x14ea080,10, 0x14ea0b0,3, 0x14ea0c4,7, 0x14ea100,44, 0x14ea200,5, 0x14ea218,5, 0x14ea280,20, 0x14ea300,1, 0x14ea800,52, 0x14ea8e0,5, 0x14ea900,5, 0x14eaa00,52, 0x14eaae0,5, 0x14eab00,5, 0x14eac00,18, 0x14eac50,10, 0x14ead00,36, 0x14eada0,5, 0x14eadc0,5, 0x14eb000,20, 0x14eb080,20, 0x14eb100,20, 0x14eb180,20, 0x14eb200,10, 0x14eb400,10, 0x14eb440,10, 0x14eb480,10, 0x14eb4c0,10, 0x14eb500,1, 0x14eb600,1, 0x14eb608,32, 0x14eb6a0,6, 0x14eb6c0,6, 0x14eb6e0,6, 0x14eb700,6, 0x14eb720,6, 0x14eb740,6, 0x14eb760,6, 0x14eb780,6, 0x14eb800,76, 0x14eba00,76, 0x14ebc00,33, 0x14ec000,76, 0x14ec200,76, 0x14ec400,33, 0x14ec800,4, 0x14eca00,72, 0x14ecc00,17, 0x14ecc48,4, 0x14ece00,27, 0x14ece80,4, 0x14ecec0,25, 0x14ecf40,6, 0x14ecf60,4, 0x14ecf74,11, 0x14ecfa4,16, 0x14ed000,12, 0x14ed040,2, 0x14ed050,1, 0x14ed058,5, 0x14ed070,3, 0x1500000,23, 0x1500080,23, 0x1500100,23, 0x1500180,23, 0x1500200,13, 0x1500404,1, 0x150047c,33, 0x1500504,1, 0x1500514,3, 0x1500524,1, 0x150052c,1, 0x1500600,96, 0x1500784,1, 0x1500790,4, 0x1501000,76, 0x1502000,582, 0x1503000,13, 0x1503400,27, 0x1503480,4, 0x15034c0,25, 0x1503540,6, 0x1503560,4, 0x1503574,3, 0x1503600,8, 0x1503624,59, 0x1503800,4, 0x1503880,36, 0x1503980,17, 0x1503a00,6, 0x1503a20,165, 0x1503d00,12, 0x1503d40,2, 0x1503d50,3, 0x1503d60,1, 0x1503d80,12, 0x1503dc0,2, 0x1503dd0,3, 0x1503de0,1, 0x1503e00,12, 0x1503e40,2, 0x1503e50,3, 0x1503e60,1, 0x1503e80,12, 0x1503ec0,2, 0x1503ed0,3, 0x1503ee0,1, 0x1503f00,9, 0x1503f80,3, 0x1503f90,5, 0x1503fa8,5, 0x1503fc0,5, 0x1503fd8,2, 0x1504000,1, 0x1504010,6, 0x1504030,78, 0x1504180,18, 0x1508004,6, 0x1509000,650, 0x150a000,650, 0x150b000,2, 0x150b040,9, 0x150b080,7, 0x150c000,34, 0x150c090,9, 0x150c0b8,11, 0x1510000,11, 0x1510040,11, 0x1510080,11, 0x15100c0,11, 0x1510104,1, 0x151011c,10, 0x1510148,2, 0x1510154,1, 0x151015c,24, 0x15101c0,3, 0x15101d0,3, 0x15101e0,3, 0x15101f0,33, 0x1510280,3, 0x1510290,3, 0x15102a0,3, 0x15102b0,3, 0x15102c0,5, 0x15102d8,8, 0x1510400,145, 0x1510800,4, 0x1510880,25, 0x1510900,5, 0x1510920,1, 0x1511000,11, 0x1511040,11, 0x1511080,11, 0x15110c0,11, 0x1511100,11, 0x1511140,11, 0x1511180,11, 0x15111c0,11, 0x1511200,1, 0x1511208,19, 0x1511260,2, 0x151126c,3, 0x1511280,5, 0x1511400,3, 0x1511410,30, 0x15114a4,1, 0x15114b4,23, 0x1511520,6, 0x1511540,3, 0x1511560,2, 0x151156c,2, 0x1511580,2, 0x15115c0,3, 0x15115d0,3, 0x15115e0,1, 0x1511600,1, 0x1511800,1, 0x1511814,12, 0x1511848,5, 0x1511860,7, 0x1511880,5, 0x1511898,5, 0x15118b0,5, 0x15118c8,7, 0x15118e8,7, 0x1511908,5, 0x1511920,11, 0x1511950,55, 0x1511a40,2, 0x1511a4c,2, 0x1511a60,2, 0x1511a80,6, 0x1511ac0,3, 0x1511ad0,3, 0x1511ae0,1, 0x1511b00,1, 0x1512000,2, 0x1512010,47, 0x15120e0,6, 0x1512100,6, 0x1512120,2, 0x151212c,3, 0x1512140,6, 0x1512200,5, 0x1512224,1, 0x1512234,3, 0x1512280,20, 0x1512404,1, 0x15124e4,71, 0x1512604,1, 0x1512670,38, 0x1512800,27, 0x1512880,4, 0x15128c0,25, 0x1512940,6, 0x1512960,4, 0x1512974,11, 0x15129a4,7, 0x1512a00,12, 0x1512a40,2, 0x1512a50,1, 0x1512a58,5, 0x1512a70,5, 0x1520000,19, 0x1520080,19, 0x1520100,19, 0x1520180,19, 0x1520200,12, 0x1520280,1, 0x15202a0,6, 0x15202c0,6, 0x15202e0,6, 0x1520300,6, 0x1520320,6, 0x1520340,6, 0x1520360,6, 0x1520380,9, 0x15203c0,13, 0x1520400,3, 0x1520410,159, 0x1520690,16, 0x15206e0,5, 0x1520700,5, 0x1520720,5, 0x1520740,5, 0x1520760,5, 0x1520780,5, 0x15207a0,5, 0x15207c0,5, 0x15207e0,6, 0x1520800,6, 0x1520820,6, 0x1520840,6, 0x1520860,6, 0x1520880,6, 0x15208a0,6, 0x15208c0,6, 0x15208e0,6, 0x1520900,6, 0x1520920,6, 0x1520940,6, 0x1520960,6, 0x1520980,6, 0x15209a0,6, 0x15209c0,6, 0x1520a00,22, 0x1520a80,1, 0x1520a88,3, 0x1520aa0,5, 0x1520ac0,1, 0x1520ad0,3, 0x1520ae0,1, 0x1520af0,3, 0x1520b00,1, 0x1520b10,3, 0x1520b20,1, 0x1520b30,3, 0x1520b40,1, 0x1520b48,3, 0x1520b58,3, 0x1520b68,3, 0x1520b78,3, 0x1520b88,3, 0x1520ba0,3, 0x1520bb0,1, 0x1520bc0,3, 0x1520bd0,1, 0x1520be0,3, 0x1520bf0,1, 0x1520c00,3, 0x1520c10,1, 0x1520c20,3, 0x1520c30,1, 0x1520c40,3, 0x1520c50,1, 0x1520c80,6, 0x1520ca0,6, 0x1520cc0,1, 0x1520d00,1, 0x1520d10,3, 0x1520d20,1, 0x1520d30,3, 0x1520d40,1, 0x1520d60,5, 0x1520d80,1, 0x1520d90,3, 0x1520da0,1, 0x1520dc0,5, 0x1520de0,1, 0x1520df0,3, 0x1520e00,1, 0x1520e10,3, 0x1520e20,5, 0x1520e40,2, 0x1520e50,3, 0x1520e60,5, 0x1520e80,2, 0x1520e90,3, 0x1520ea0,3, 0x1520eb0,3, 0x1520ec0,3, 0x1520ed0,3, 0x1520ee0,5, 0x1520f00,3, 0x1520f20,5, 0x1520f40,5, 0x1520f60,3, 0x1520f70,3, 0x1520f80,5, 0x1520fa0,3, 0x1520fb0,3, 0x1520fc0,3, 0x1520fd0,3, 0x1520fe0,3, 0x1520ff0,3, 0x1521000,6, 0x1521020,3, 0x1521040,3, 0x1521050,3, 0x1521060,1, 0x1521080,3, 0x1521090,3, 0x15210a0,1, 0x15210c0,3, 0x15210e0,5, 0x1521100,11, 0x1521130,3, 0x1521140,3, 0x1521150,3, 0x1521160,5, 0x1521180,5, 0x15211a0,3, 0x15211b0,3, 0x15211c0,3, 0x15211d0,3, 0x15211e0,2, 0x15211f0,3, 0x1521200,7, 0x1521220,3, 0x1521230,2, 0x1521240,3, 0x1521250,3, 0x1521260,2, 0x1521400,15, 0x1521440,4, 0x1521460,17, 0x15214c0,6, 0x15214e0,4, 0x15214f4,11, 0x1521524,54, 0x1521604,1, 0x152160c,1, 0x1521614,1, 0x152161c,15, 0x1521660,6, 0x1521680,4, 0x15216a0,5, 0x15216c0,4, 0x15216e0,5, 0x1521700,4, 0x1521720,5, 0x1521740,4, 0x1521760,5, 0x1521780,4, 0x15217c0,15, 0x1521800,4, 0x1521880,19, 0x1521900,1, 0x1521980,24, 0x1521a00,24, 0x1521a80,24, 0x1521b00,24, 0x1521b80,1, 0x1521b88,2, 0x1522000,451, 0x1522740,169, 0x1523000,260, 0x1523800,12, 0x1523a04,1, 0x1523a0c,8, 0x1523a44,1, 0x1523a50,7, 0x1523a84,1, 0x1523a94,27, 0x1523b04,3, 0x1523b14,3, 0x1523b24,3, 0x1523b34,21, 0x1523ba0,5, 0x1523bc0,1, 0x1523c04,1, 0x1523c14,3, 0x1523c24,3, 0x1523c34,3, 0x1523c44,1, 0x1523c60,8, 0x1523c84,1, 0x1523ca0,8, 0x1523cc4,1, 0x1523ce0,11, 0x1523e04,1, 0x1523e0c,2, 0x1523e18,1, 0x1523e20,3, 0x1523e30,3, 0x1523e40,1, 0x1523e48,3, 0x1523e58,3, 0x1523e70,4, 0x1524000,44, 0x1524100,19, 0x1524180,22, 0x1524200,27, 0x1524280,27, 0x1524300,11, 0x1524380,17, 0x1524400,27, 0x1524480,2, 0x15244a0,6, 0x15244c0,3, 0x15244d0,4, 0x1524500,35, 0x1524600,34, 0x1524700,26, 0x1524780,23, 0x1524800,15, 0x1524848,4, 0x1528000,20, 0x1528100,49, 0x1528200,20, 0x1528300,49, 0x1528400,20, 0x1528500,49, 0x1528600,20, 0x1528700,49, 0x1528800,8, 0x1529000,20, 0x1529100,49, 0x1529200,20, 0x1529300,49, 0x1529400,20, 0x1529500,49, 0x1529600,20, 0x1529700,49, 0x1529800,8, 0x152a000,15, 0x152a040,3, 0x152a050,1, 0x152a058,4, 0x152a080,10, 0x152a0b0,3, 0x152a0c4,7, 0x152a100,44, 0x152a200,5, 0x152a218,5, 0x152a280,20, 0x152a300,1, 0x152a800,52, 0x152a8e0,5, 0x152a900,5, 0x152aa00,52, 0x152aae0,5, 0x152ab00,5, 0x152ac00,18, 0x152ac50,10, 0x152ad00,36, 0x152ada0,5, 0x152adc0,5, 0x152b000,20, 0x152b080,20, 0x152b100,20, 0x152b180,20, 0x152b200,10, 0x152b400,10, 0x152b440,10, 0x152b480,10, 0x152b4c0,10, 0x152b500,1, 0x152b600,1, 0x152b608,32, 0x152b6a0,6, 0x152b6c0,6, 0x152b6e0,6, 0x152b700,6, 0x152b720,6, 0x152b740,6, 0x152b760,6, 0x152b780,6, 0x152b800,76, 0x152ba00,76, 0x152bc00,33, 0x152c000,76, 0x152c200,76, 0x152c400,33, 0x152c800,4, 0x152ca00,72, 0x152cc00,17, 0x152cc48,4, 0x152ce00,27, 0x152ce80,4, 0x152cec0,25, 0x152cf40,6, 0x152cf60,4, 0x152cf74,11, 0x152cfa4,16, 0x152d000,12, 0x152d040,2, 0x152d050,1, 0x152d058,5, 0x152d070,3, 0x1540000,23, 0x1540080,23, 0x1540100,23, 0x1540180,23, 0x1540200,13, 0x1540404,1, 0x154047c,33, 0x1540504,1, 0x1540514,3, 0x1540524,1, 0x154052c,1, 0x1540600,96, 0x1540784,1, 0x1540790,4, 0x1541000,76, 0x1542000,582, 0x1543000,13, 0x1543400,27, 0x1543480,4, 0x15434c0,25, 0x1543540,6, 0x1543560,4, 0x1543574,3, 0x1543600,8, 0x1543624,59, 0x1543800,4, 0x1543880,36, 0x1543980,17, 0x1543a00,6, 0x1543a20,165, 0x1543d00,12, 0x1543d40,2, 0x1543d50,3, 0x1543d60,1, 0x1543d80,12, 0x1543dc0,2, 0x1543dd0,3, 0x1543de0,1, 0x1543e00,12, 0x1543e40,2, 0x1543e50,3, 0x1543e60,1, 0x1543e80,12, 0x1543ec0,2, 0x1543ed0,3, 0x1543ee0,1, 0x1543f00,9, 0x1543f80,3, 0x1543f90,5, 0x1543fa8,5, 0x1543fc0,5, 0x1543fd8,2, 0x1544000,1, 0x1544010,6, 0x1544030,78, 0x1544180,18, 0x1548004,6, 0x1549000,650, 0x154a000,650, 0x154b000,2, 0x154b040,9, 0x154b080,7, 0x154c000,34, 0x154c090,9, 0x154c0b8,11, 0x1550000,11, 0x1550040,11, 0x1550080,11, 0x15500c0,11, 0x1550104,1, 0x155011c,10, 0x1550148,2, 0x1550154,1, 0x155015c,24, 0x15501c0,3, 0x15501d0,3, 0x15501e0,3, 0x15501f0,33, 0x1550280,3, 0x1550290,3, 0x15502a0,3, 0x15502b0,3, 0x15502c0,5, 0x15502d8,8, 0x1550400,145, 0x1550800,4, 0x1550880,25, 0x1550900,5, 0x1550920,1, 0x1551000,11, 0x1551040,11, 0x1551080,11, 0x15510c0,11, 0x1551100,11, 0x1551140,11, 0x1551180,11, 0x15511c0,11, 0x1551200,1, 0x1551208,19, 0x1551260,2, 0x155126c,3, 0x1551280,5, 0x1551400,3, 0x1551410,30, 0x15514a4,1, 0x15514b4,23, 0x1551520,6, 0x1551540,3, 0x1551560,2, 0x155156c,2, 0x1551580,2, 0x15515c0,3, 0x15515d0,3, 0x15515e0,1, 0x1551600,1, 0x1551800,1, 0x1551814,12, 0x1551848,5, 0x1551860,7, 0x1551880,5, 0x1551898,5, 0x15518b0,5, 0x15518c8,7, 0x15518e8,7, 0x1551908,5, 0x1551920,11, 0x1551950,55, 0x1551a40,2, 0x1551a4c,2, 0x1551a60,2, 0x1551a80,6, 0x1551ac0,3, 0x1551ad0,3, 0x1551ae0,1, 0x1551b00,1, 0x1552000,2, 0x1552010,47, 0x15520e0,6, 0x1552100,6, 0x1552120,2, 0x155212c,3, 0x1552140,6, 0x1552200,5, 0x1552224,1, 0x1552234,3, 0x1552280,20, 0x1552404,1, 0x15524e4,71, 0x1552604,1, 0x1552670,38, 0x1552800,27, 0x1552880,4, 0x15528c0,25, 0x1552940,6, 0x1552960,4, 0x1552974,11, 0x15529a4,7, 0x1552a00,12, 0x1552a40,2, 0x1552a50,1, 0x1552a58,5, 0x1552a70,5, 0x1560000,19, 0x1560080,19, 0x1560100,19, 0x1560180,19, 0x1560200,12, 0x1560280,1, 0x15602a0,6, 0x15602c0,6, 0x15602e0,6, 0x1560300,6, 0x1560320,6, 0x1560340,6, 0x1560360,6, 0x1560380,9, 0x15603c0,13, 0x1560400,3, 0x1560410,159, 0x1560690,16, 0x15606e0,5, 0x1560700,5, 0x1560720,5, 0x1560740,5, 0x1560760,5, 0x1560780,5, 0x15607a0,5, 0x15607c0,5, 0x15607e0,6, 0x1560800,6, 0x1560820,6, 0x1560840,6, 0x1560860,6, 0x1560880,6, 0x15608a0,6, 0x15608c0,6, 0x15608e0,6, 0x1560900,6, 0x1560920,6, 0x1560940,6, 0x1560960,6, 0x1560980,6, 0x15609a0,6, 0x15609c0,6, 0x1560a00,22, 0x1560a80,1, 0x1560a88,3, 0x1560aa0,5, 0x1560ac0,1, 0x1560ad0,3, 0x1560ae0,1, 0x1560af0,3, 0x1560b00,1, 0x1560b10,3, 0x1560b20,1, 0x1560b30,3, 0x1560b40,1, 0x1560b48,3, 0x1560b58,3, 0x1560b68,3, 0x1560b78,3, 0x1560b88,3, 0x1560ba0,3, 0x1560bb0,1, 0x1560bc0,3, 0x1560bd0,1, 0x1560be0,3, 0x1560bf0,1, 0x1560c00,3, 0x1560c10,1, 0x1560c20,3, 0x1560c30,1, 0x1560c40,3, 0x1560c50,1, 0x1560c80,6, 0x1560ca0,6, 0x1560cc0,1, 0x1560d00,1, 0x1560d10,3, 0x1560d20,1, 0x1560d30,3, 0x1560d40,1, 0x1560d60,5, 0x1560d80,1, 0x1560d90,3, 0x1560da0,1, 0x1560dc0,5, 0x1560de0,1, 0x1560df0,3, 0x1560e00,1, 0x1560e10,3, 0x1560e20,5, 0x1560e40,2, 0x1560e50,3, 0x1560e60,5, 0x1560e80,2, 0x1560e90,3, 0x1560ea0,3, 0x1560eb0,3, 0x1560ec0,3, 0x1560ed0,3, 0x1560ee0,5, 0x1560f00,3, 0x1560f20,5, 0x1560f40,5, 0x1560f60,3, 0x1560f70,3, 0x1560f80,5, 0x1560fa0,3, 0x1560fb0,3, 0x1560fc0,3, 0x1560fd0,3, 0x1560fe0,3, 0x1560ff0,3, 0x1561000,6, 0x1561020,3, 0x1561040,3, 0x1561050,3, 0x1561060,1, 0x1561080,3, 0x1561090,3, 0x15610a0,1, 0x15610c0,3, 0x15610e0,5, 0x1561100,11, 0x1561130,3, 0x1561140,3, 0x1561150,3, 0x1561160,5, 0x1561180,5, 0x15611a0,3, 0x15611b0,3, 0x15611c0,3, 0x15611d0,3, 0x15611e0,2, 0x15611f0,3, 0x1561200,7, 0x1561220,3, 0x1561230,2, 0x1561240,3, 0x1561250,3, 0x1561260,2, 0x1561400,15, 0x1561440,4, 0x1561460,17, 0x15614c0,6, 0x15614e0,4, 0x15614f4,11, 0x1561524,54, 0x1561604,1, 0x156160c,1, 0x1561614,1, 0x156161c,15, 0x1561660,6, 0x1561680,4, 0x15616a0,5, 0x15616c0,4, 0x15616e0,5, 0x1561700,4, 0x1561720,5, 0x1561740,4, 0x1561760,5, 0x1561780,4, 0x15617c0,15, 0x1561800,4, 0x1561880,19, 0x1561900,1, 0x1561980,24, 0x1561a00,24, 0x1561a80,24, 0x1561b00,24, 0x1561b80,1, 0x1561b88,2, 0x1562000,451, 0x1562740,169, 0x1563000,260, 0x1563800,12, 0x1563a04,1, 0x1563a0c,8, 0x1563a44,1, 0x1563a50,7, 0x1563a84,1, 0x1563a94,27, 0x1563b04,3, 0x1563b14,3, 0x1563b24,3, 0x1563b34,21, 0x1563ba0,5, 0x1563bc0,1, 0x1563c04,1, 0x1563c14,3, 0x1563c24,3, 0x1563c34,3, 0x1563c44,1, 0x1563c60,8, 0x1563c84,1, 0x1563ca0,8, 0x1563cc4,1, 0x1563ce0,11, 0x1563e04,1, 0x1563e0c,2, 0x1563e18,1, 0x1563e20,3, 0x1563e30,3, 0x1563e40,1, 0x1563e48,3, 0x1563e58,3, 0x1563e70,4, 0x1564000,44, 0x1564100,19, 0x1564180,22, 0x1564200,27, 0x1564280,27, 0x1564300,11, 0x1564380,17, 0x1564400,27, 0x1564480,2, 0x15644a0,6, 0x15644c0,3, 0x15644d0,4, 0x1564500,35, 0x1564600,34, 0x1564700,26, 0x1564780,23, 0x1564800,15, 0x1564848,4, 0x1568000,20, 0x1568100,49, 0x1568200,20, 0x1568300,49, 0x1568400,20, 0x1568500,49, 0x1568600,20, 0x1568700,49, 0x1568800,8, 0x1569000,20, 0x1569100,49, 0x1569200,20, 0x1569300,49, 0x1569400,20, 0x1569500,49, 0x1569600,20, 0x1569700,49, 0x1569800,8, 0x156a000,15, 0x156a040,3, 0x156a050,1, 0x156a058,4, 0x156a080,10, 0x156a0b0,3, 0x156a0c4,7, 0x156a100,44, 0x156a200,5, 0x156a218,5, 0x156a280,20, 0x156a300,1, 0x156a800,52, 0x156a8e0,5, 0x156a900,5, 0x156aa00,52, 0x156aae0,5, 0x156ab00,5, 0x156ac00,18, 0x156ac50,10, 0x156ad00,36, 0x156ada0,5, 0x156adc0,5, 0x156b000,20, 0x156b080,20, 0x156b100,20, 0x156b180,20, 0x156b200,10, 0x156b400,10, 0x156b440,10, 0x156b480,10, 0x156b4c0,10, 0x156b500,1, 0x156b600,1, 0x156b608,32, 0x156b6a0,6, 0x156b6c0,6, 0x156b6e0,6, 0x156b700,6, 0x156b720,6, 0x156b740,6, 0x156b760,6, 0x156b780,6, 0x156b800,76, 0x156ba00,76, 0x156bc00,33, 0x156c000,76, 0x156c200,76, 0x156c400,33, 0x156c800,4, 0x156ca00,72, 0x156cc00,17, 0x156cc48,4, 0x156ce00,27, 0x156ce80,4, 0x156cec0,25, 0x156cf40,6, 0x156cf60,4, 0x156cf74,11, 0x156cfa4,16, 0x156d000,12, 0x156d040,2, 0x156d050,1, 0x156d058,5, 0x156d070,3, 0x1600000,36, 0x1600100,48, 0x1600200,38, 0x1600300,7, 0x1600320,6, 0x1600340,36, 0x1600400,36, 0x1600800,36, 0x1600900,48, 0x1600a00,38, 0x1600b00,7, 0x1600b20,6, 0x1600b40,36, 0x1600c00,36, 0x1601000,1, 0x1601008,22, 0x1602000,36, 0x1602100,48, 0x1602200,38, 0x1602300,7, 0x1602320,6, 0x1602340,36, 0x1602400,36, 0x1602800,36, 0x1602900,48, 0x1602a00,38, 0x1602b00,7, 0x1602b20,6, 0x1602b40,36, 0x1602c00,36, 0x1603000,1, 0x1603008,22, 0x1604000,36, 0x1604100,48, 0x1604200,38, 0x1604300,7, 0x1604320,6, 0x1604340,36, 0x1604400,36, 0x1604800,36, 0x1604900,48, 0x1604a00,38, 0x1604b00,7, 0x1604b20,6, 0x1604b40,36, 0x1604c00,36, 0x1605000,1, 0x1605008,22, 0x1606000,36, 0x1606100,48, 0x1606200,38, 0x1606300,7, 0x1606320,6, 0x1606340,36, 0x1606400,36, 0x1606800,36, 0x1606900,48, 0x1606a00,38, 0x1606b00,7, 0x1606b20,6, 0x1606b40,36, 0x1606c00,36, 0x1607000,1, 0x1607008,22, 0x1608000,36, 0x1608100,48, 0x1608200,38, 0x1608300,7, 0x1608320,6, 0x1608340,36, 0x1608400,36, 0x1608800,36, 0x1608900,48, 0x1608a00,38, 0x1608b00,7, 0x1608b20,6, 0x1608b40,36, 0x1608c00,36, 0x1609000,1, 0x1609008,22, 0x160a000,36, 0x160a100,48, 0x160a200,38, 0x160a300,7, 0x160a320,6, 0x160a340,36, 0x160a400,36, 0x160a800,36, 0x160a900,48, 0x160aa00,38, 0x160ab00,7, 0x160ab20,6, 0x160ab40,36, 0x160ac00,36, 0x160b000,1, 0x160b008,22, 0x160c000,36, 0x160c100,48, 0x160c200,38, 0x160c300,7, 0x160c320,6, 0x160c340,36, 0x160c400,36, 0x160c800,36, 0x160c900,48, 0x160ca00,38, 0x160cb00,7, 0x160cb20,6, 0x160cb40,36, 0x160cc00,36, 0x160d000,1, 0x160d008,22, 0x160e000,36, 0x160e100,48, 0x160e200,38, 0x160e300,7, 0x160e320,6, 0x160e340,36, 0x160e400,36, 0x160e800,36, 0x160e900,48, 0x160ea00,38, 0x160eb00,7, 0x160eb20,6, 0x160eb40,36, 0x160ec00,36, 0x160f000,1, 0x160f008,22, 0x1610000,36, 0x1610100,48, 0x1610200,38, 0x1610300,7, 0x1610320,6, 0x1610340,36, 0x1610400,36, 0x1610800,36, 0x1610900,48, 0x1610a00,38, 0x1610b00,7, 0x1610b20,6, 0x1610b40,36, 0x1610c00,36, 0x1611000,1, 0x1611008,22, 0x1612000,36, 0x1612100,48, 0x1612200,38, 0x1612300,7, 0x1612320,6, 0x1612340,36, 0x1612400,36, 0x1612800,36, 0x1612900,48, 0x1612a00,38, 0x1612b00,7, 0x1612b20,6, 0x1612b40,36, 0x1612c00,36, 0x1613000,1, 0x1613008,22, 0x1614000,36, 0x1614100,48, 0x1614200,38, 0x1614300,7, 0x1614320,6, 0x1614340,36, 0x1614400,36, 0x1614800,36, 0x1614900,48, 0x1614a00,38, 0x1614b00,7, 0x1614b20,6, 0x1614b40,36, 0x1614c00,36, 0x1615000,1, 0x1615008,22, 0x1616000,36, 0x1616100,48, 0x1616200,38, 0x1616300,7, 0x1616320,6, 0x1616340,36, 0x1616400,36, 0x1616800,36, 0x1616900,48, 0x1616a00,38, 0x1616b00,7, 0x1616b20,6, 0x1616b40,36, 0x1616c00,36, 0x1617000,1, 0x1617008,22, 0x1618000,36, 0x1618100,48, 0x1618200,38, 0x1618300,7, 0x1618320,6, 0x1618340,36, 0x1618400,36, 0x1618800,36, 0x1618900,48, 0x1618a00,38, 0x1618b00,7, 0x1618b20,6, 0x1618b40,36, 0x1618c00,36, 0x1619000,1, 0x1619008,22, 0x161a000,36, 0x161a100,48, 0x161a200,38, 0x161a300,7, 0x161a320,6, 0x161a340,36, 0x161a400,36, 0x161a800,36, 0x161a900,48, 0x161aa00,38, 0x161ab00,7, 0x161ab20,6, 0x161ab40,36, 0x161ac00,36, 0x161b000,1, 0x161b008,22, 0x161c000,36, 0x161c100,48, 0x161c200,38, 0x161c300,7, 0x161c320,6, 0x161c340,36, 0x161c400,36, 0x161c800,36, 0x161c900,48, 0x161ca00,38, 0x161cb00,7, 0x161cb20,6, 0x161cb40,36, 0x161cc00,36, 0x161d000,1, 0x161d008,22, 0x161e000,36, 0x161e100,48, 0x161e200,38, 0x161e300,7, 0x161e320,6, 0x161e340,36, 0x161e400,36, 0x161e800,36, 0x161e900,48, 0x161ea00,38, 0x161eb00,7, 0x161eb20,6, 0x161eb40,36, 0x161ec00,36, 0x161f000,1, 0x161f008,22, 0x1620000,36, 0x1620100,48, 0x1620200,38, 0x1620300,7, 0x1620320,6, 0x1620340,36, 0x1620400,36, 0x1620800,36, 0x1620900,48, 0x1620a00,38, 0x1620b00,7, 0x1620b20,6, 0x1620b40,36, 0x1620c00,36, 0x1621000,1, 0x1621008,22, 0x1622000,36, 0x1622100,48, 0x1622200,38, 0x1622300,7, 0x1622320,6, 0x1622340,36, 0x1622400,36, 0x1622800,36, 0x1622900,48, 0x1622a00,38, 0x1622b00,7, 0x1622b20,6, 0x1622b40,36, 0x1622c00,36, 0x1623000,1, 0x1623008,22, 0x1624000,3, 0x1624044,1, 0x1624058,14, 0x1624100,15, 0x1624140,9, 0x1624180,6, 0x16241a0,6, 0x16241c4,10, 0x1624200,13, 0x1624300,36, 0x1624400,10, 0x1624430,3, 0x1624440,12, 0x1640000,36, 0x1640100,48, 0x1640200,38, 0x1640300,7, 0x1640320,6, 0x1640340,36, 0x1640400,36, 0x1640800,36, 0x1640900,48, 0x1640a00,38, 0x1640b00,7, 0x1640b20,6, 0x1640b40,36, 0x1640c00,36, 0x1641000,1, 0x1641008,22, 0x1642000,36, 0x1642100,48, 0x1642200,38, 0x1642300,7, 0x1642320,6, 0x1642340,36, 0x1642400,36, 0x1642800,36, 0x1642900,48, 0x1642a00,38, 0x1642b00,7, 0x1642b20,6, 0x1642b40,36, 0x1642c00,36, 0x1643000,1, 0x1643008,22, 0x1644000,36, 0x1644100,48, 0x1644200,38, 0x1644300,7, 0x1644320,6, 0x1644340,36, 0x1644400,36, 0x1644800,36, 0x1644900,48, 0x1644a00,38, 0x1644b00,7, 0x1644b20,6, 0x1644b40,36, 0x1644c00,36, 0x1645000,1, 0x1645008,22, 0x1646000,36, 0x1646100,48, 0x1646200,38, 0x1646300,7, 0x1646320,6, 0x1646340,36, 0x1646400,36, 0x1646800,36, 0x1646900,48, 0x1646a00,38, 0x1646b00,7, 0x1646b20,6, 0x1646b40,36, 0x1646c00,36, 0x1647000,1, 0x1647008,22, 0x1648000,36, 0x1648100,48, 0x1648200,38, 0x1648300,7, 0x1648320,6, 0x1648340,36, 0x1648400,36, 0x1648800,36, 0x1648900,48, 0x1648a00,38, 0x1648b00,7, 0x1648b20,6, 0x1648b40,36, 0x1648c00,36, 0x1649000,1, 0x1649008,22, 0x164a000,36, 0x164a100,48, 0x164a200,38, 0x164a300,7, 0x164a320,6, 0x164a340,36, 0x164a400,36, 0x164a800,36, 0x164a900,48, 0x164aa00,38, 0x164ab00,7, 0x164ab20,6, 0x164ab40,36, 0x164ac00,36, 0x164b000,1, 0x164b008,22, 0x164c000,36, 0x164c100,48, 0x164c200,38, 0x164c300,7, 0x164c320,6, 0x164c340,36, 0x164c400,36, 0x164c800,36, 0x164c900,48, 0x164ca00,38, 0x164cb00,7, 0x164cb20,6, 0x164cb40,36, 0x164cc00,36, 0x164d000,1, 0x164d008,22, 0x164e000,36, 0x164e100,48, 0x164e200,38, 0x164e300,7, 0x164e320,6, 0x164e340,36, 0x164e400,36, 0x164e800,36, 0x164e900,48, 0x164ea00,38, 0x164eb00,7, 0x164eb20,6, 0x164eb40,36, 0x164ec00,36, 0x164f000,1, 0x164f008,22, 0x1650000,36, 0x1650100,48, 0x1650200,38, 0x1650300,7, 0x1650320,6, 0x1650340,36, 0x1650400,36, 0x1650800,36, 0x1650900,48, 0x1650a00,38, 0x1650b00,7, 0x1650b20,6, 0x1650b40,36, 0x1650c00,36, 0x1651000,1, 0x1651008,22, 0x1652000,36, 0x1652100,48, 0x1652200,38, 0x1652300,7, 0x1652320,6, 0x1652340,36, 0x1652400,36, 0x1652800,36, 0x1652900,48, 0x1652a00,38, 0x1652b00,7, 0x1652b20,6, 0x1652b40,36, 0x1652c00,36, 0x1653000,1, 0x1653008,22, 0x1654000,36, 0x1654100,48, 0x1654200,38, 0x1654300,7, 0x1654320,6, 0x1654340,36, 0x1654400,36, 0x1654800,36, 0x1654900,48, 0x1654a00,38, 0x1654b00,7, 0x1654b20,6, 0x1654b40,36, 0x1654c00,36, 0x1655000,1, 0x1655008,22, 0x1656000,36, 0x1656100,48, 0x1656200,38, 0x1656300,7, 0x1656320,6, 0x1656340,36, 0x1656400,36, 0x1656800,36, 0x1656900,48, 0x1656a00,38, 0x1656b00,7, 0x1656b20,6, 0x1656b40,36, 0x1656c00,36, 0x1657000,1, 0x1657008,22, 0x1658000,36, 0x1658100,48, 0x1658200,38, 0x1658300,7, 0x1658320,6, 0x1658340,36, 0x1658400,36, 0x1658800,36, 0x1658900,48, 0x1658a00,38, 0x1658b00,7, 0x1658b20,6, 0x1658b40,36, 0x1658c00,36, 0x1659000,1, 0x1659008,22, 0x165a000,36, 0x165a100,48, 0x165a200,38, 0x165a300,7, 0x165a320,6, 0x165a340,36, 0x165a400,36, 0x165a800,36, 0x165a900,48, 0x165aa00,38, 0x165ab00,7, 0x165ab20,6, 0x165ab40,36, 0x165ac00,36, 0x165b000,1, 0x165b008,22, 0x165c000,36, 0x165c100,48, 0x165c200,38, 0x165c300,7, 0x165c320,6, 0x165c340,36, 0x165c400,36, 0x165c800,36, 0x165c900,48, 0x165ca00,38, 0x165cb00,7, 0x165cb20,6, 0x165cb40,36, 0x165cc00,36, 0x165d000,1, 0x165d008,22, 0x165e000,36, 0x165e100,48, 0x165e200,38, 0x165e300,7, 0x165e320,6, 0x165e340,36, 0x165e400,36, 0x165e800,36, 0x165e900,48, 0x165ea00,38, 0x165eb00,7, 0x165eb20,6, 0x165eb40,36, 0x165ec00,36, 0x165f000,1, 0x165f008,22, 0x1660000,36, 0x1660100,48, 0x1660200,38, 0x1660300,7, 0x1660320,6, 0x1660340,36, 0x1660400,36, 0x1660800,36, 0x1660900,48, 0x1660a00,38, 0x1660b00,7, 0x1660b20,6, 0x1660b40,36, 0x1660c00,36, 0x1661000,1, 0x1661008,22, 0x1662000,36, 0x1662100,48, 0x1662200,38, 0x1662300,7, 0x1662320,6, 0x1662340,36, 0x1662400,36, 0x1662800,36, 0x1662900,48, 0x1662a00,38, 0x1662b00,7, 0x1662b20,6, 0x1662b40,36, 0x1662c00,36, 0x1663000,1, 0x1663008,22, 0x1664000,3, 0x1664044,1, 0x1664058,14, 0x1664100,15, 0x1664140,9, 0x1664180,6, 0x16641a0,6, 0x16641c4,10, 0x1664200,13, 0x1664300,36, 0x1664400,10, 0x1664430,3, 0x1664440,12, 0x1680000,36, 0x1680100,48, 0x1680200,38, 0x1680300,7, 0x1680320,6, 0x1680340,36, 0x1680400,36, 0x1680800,36, 0x1680900,48, 0x1680a00,38, 0x1680b00,7, 0x1680b20,6, 0x1680b40,36, 0x1680c00,36, 0x1681000,1, 0x1681008,22, 0x1682000,36, 0x1682100,48, 0x1682200,38, 0x1682300,7, 0x1682320,6, 0x1682340,36, 0x1682400,36, 0x1682800,36, 0x1682900,48, 0x1682a00,38, 0x1682b00,7, 0x1682b20,6, 0x1682b40,36, 0x1682c00,36, 0x1683000,1, 0x1683008,22, 0x1684000,36, 0x1684100,48, 0x1684200,38, 0x1684300,7, 0x1684320,6, 0x1684340,36, 0x1684400,36, 0x1684800,36, 0x1684900,48, 0x1684a00,38, 0x1684b00,7, 0x1684b20,6, 0x1684b40,36, 0x1684c00,36, 0x1685000,1, 0x1685008,22, 0x1686000,36, 0x1686100,48, 0x1686200,38, 0x1686300,7, 0x1686320,6, 0x1686340,36, 0x1686400,36, 0x1686800,36, 0x1686900,48, 0x1686a00,38, 0x1686b00,7, 0x1686b20,6, 0x1686b40,36, 0x1686c00,36, 0x1687000,1, 0x1687008,22, 0x1688000,36, 0x1688100,48, 0x1688200,38, 0x1688300,7, 0x1688320,6, 0x1688340,36, 0x1688400,36, 0x1688800,36, 0x1688900,48, 0x1688a00,38, 0x1688b00,7, 0x1688b20,6, 0x1688b40,36, 0x1688c00,36, 0x1689000,1, 0x1689008,22, 0x168a000,36, 0x168a100,48, 0x168a200,38, 0x168a300,7, 0x168a320,6, 0x168a340,36, 0x168a400,36, 0x168a800,36, 0x168a900,48, 0x168aa00,38, 0x168ab00,7, 0x168ab20,6, 0x168ab40,36, 0x168ac00,36, 0x168b000,1, 0x168b008,22, 0x168c000,36, 0x168c100,48, 0x168c200,38, 0x168c300,7, 0x168c320,6, 0x168c340,36, 0x168c400,36, 0x168c800,36, 0x168c900,48, 0x168ca00,38, 0x168cb00,7, 0x168cb20,6, 0x168cb40,36, 0x168cc00,36, 0x168d000,1, 0x168d008,22, 0x168e000,36, 0x168e100,48, 0x168e200,38, 0x168e300,7, 0x168e320,6, 0x168e340,36, 0x168e400,36, 0x168e800,36, 0x168e900,48, 0x168ea00,38, 0x168eb00,7, 0x168eb20,6, 0x168eb40,36, 0x168ec00,36, 0x168f000,1, 0x168f008,22, 0x1690000,36, 0x1690100,48, 0x1690200,38, 0x1690300,7, 0x1690320,6, 0x1690340,36, 0x1690400,36, 0x1690800,36, 0x1690900,48, 0x1690a00,38, 0x1690b00,7, 0x1690b20,6, 0x1690b40,36, 0x1690c00,36, 0x1691000,1, 0x1691008,22, 0x1692000,36, 0x1692100,48, 0x1692200,38, 0x1692300,7, 0x1692320,6, 0x1692340,36, 0x1692400,36, 0x1692800,36, 0x1692900,48, 0x1692a00,38, 0x1692b00,7, 0x1692b20,6, 0x1692b40,36, 0x1692c00,36, 0x1693000,1, 0x1693008,22, 0x1694000,36, 0x1694100,48, 0x1694200,38, 0x1694300,7, 0x1694320,6, 0x1694340,36, 0x1694400,36, 0x1694800,36, 0x1694900,48, 0x1694a00,38, 0x1694b00,7, 0x1694b20,6, 0x1694b40,36, 0x1694c00,36, 0x1695000,1, 0x1695008,22, 0x1696000,36, 0x1696100,48, 0x1696200,38, 0x1696300,7, 0x1696320,6, 0x1696340,36, 0x1696400,36, 0x1696800,36, 0x1696900,48, 0x1696a00,38, 0x1696b00,7, 0x1696b20,6, 0x1696b40,36, 0x1696c00,36, 0x1697000,1, 0x1697008,22, 0x1698000,36, 0x1698100,48, 0x1698200,38, 0x1698300,7, 0x1698320,6, 0x1698340,36, 0x1698400,36, 0x1698800,36, 0x1698900,48, 0x1698a00,38, 0x1698b00,7, 0x1698b20,6, 0x1698b40,36, 0x1698c00,36, 0x1699000,1, 0x1699008,22, 0x169a000,36, 0x169a100,48, 0x169a200,38, 0x169a300,7, 0x169a320,6, 0x169a340,36, 0x169a400,36, 0x169a800,36, 0x169a900,48, 0x169aa00,38, 0x169ab00,7, 0x169ab20,6, 0x169ab40,36, 0x169ac00,36, 0x169b000,1, 0x169b008,22, 0x169c000,36, 0x169c100,48, 0x169c200,38, 0x169c300,7, 0x169c320,6, 0x169c340,36, 0x169c400,36, 0x169c800,36, 0x169c900,48, 0x169ca00,38, 0x169cb00,7, 0x169cb20,6, 0x169cb40,36, 0x169cc00,36, 0x169d000,1, 0x169d008,22, 0x169e000,36, 0x169e100,48, 0x169e200,38, 0x169e300,7, 0x169e320,6, 0x169e340,36, 0x169e400,36, 0x169e800,36, 0x169e900,48, 0x169ea00,38, 0x169eb00,7, 0x169eb20,6, 0x169eb40,36, 0x169ec00,36, 0x169f000,1, 0x169f008,22, 0x16a0000,36, 0x16a0100,48, 0x16a0200,38, 0x16a0300,7, 0x16a0320,6, 0x16a0340,36, 0x16a0400,36, 0x16a0800,36, 0x16a0900,48, 0x16a0a00,38, 0x16a0b00,7, 0x16a0b20,6, 0x16a0b40,36, 0x16a0c00,36, 0x16a1000,1, 0x16a1008,22, 0x16a2000,36, 0x16a2100,48, 0x16a2200,38, 0x16a2300,7, 0x16a2320,6, 0x16a2340,36, 0x16a2400,36, 0x16a2800,36, 0x16a2900,48, 0x16a2a00,38, 0x16a2b00,7, 0x16a2b20,6, 0x16a2b40,36, 0x16a2c00,36, 0x16a3000,1, 0x16a3008,22, 0x16a4000,3, 0x16a4044,1, 0x16a4058,14, 0x16a4100,15, 0x16a4140,9, 0x16a4180,6, 0x16a41a0,6, 0x16a41c4,10, 0x16a4200,13, 0x16a4300,36, 0x16a4400,10, 0x16a4430,3, 0x16a4440,12, 0x16c0000,36, 0x16c0100,48, 0x16c0200,38, 0x16c0300,7, 0x16c0320,6, 0x16c0340,36, 0x16c0400,36, 0x16c0800,36, 0x16c0900,48, 0x16c0a00,38, 0x16c0b00,7, 0x16c0b20,6, 0x16c0b40,36, 0x16c0c00,36, 0x16c1000,1, 0x16c1008,22, 0x16c2000,36, 0x16c2100,48, 0x16c2200,38, 0x16c2300,7, 0x16c2320,6, 0x16c2340,36, 0x16c2400,36, 0x16c2800,36, 0x16c2900,48, 0x16c2a00,38, 0x16c2b00,7, 0x16c2b20,6, 0x16c2b40,36, 0x16c2c00,36, 0x16c3000,1, 0x16c3008,22, 0x16c4000,36, 0x16c4100,48, 0x16c4200,38, 0x16c4300,7, 0x16c4320,6, 0x16c4340,36, 0x16c4400,36, 0x16c4800,36, 0x16c4900,48, 0x16c4a00,38, 0x16c4b00,7, 0x16c4b20,6, 0x16c4b40,36, 0x16c4c00,36, 0x16c5000,1, 0x16c5008,22, 0x16c6000,36, 0x16c6100,48, 0x16c6200,38, 0x16c6300,7, 0x16c6320,6, 0x16c6340,36, 0x16c6400,36, 0x16c6800,36, 0x16c6900,48, 0x16c6a00,38, 0x16c6b00,7, 0x16c6b20,6, 0x16c6b40,36, 0x16c6c00,36, 0x16c7000,1, 0x16c7008,22, 0x16c8000,36, 0x16c8100,48, 0x16c8200,38, 0x16c8300,7, 0x16c8320,6, 0x16c8340,36, 0x16c8400,36, 0x16c8800,36, 0x16c8900,48, 0x16c8a00,38, 0x16c8b00,7, 0x16c8b20,6, 0x16c8b40,36, 0x16c8c00,36, 0x16c9000,1, 0x16c9008,22, 0x16ca000,36, 0x16ca100,48, 0x16ca200,38, 0x16ca300,7, 0x16ca320,6, 0x16ca340,36, 0x16ca400,36, 0x16ca800,36, 0x16ca900,48, 0x16caa00,38, 0x16cab00,7, 0x16cab20,6, 0x16cab40,36, 0x16cac00,36, 0x16cb000,1, 0x16cb008,22, 0x16cc000,36, 0x16cc100,48, 0x16cc200,38, 0x16cc300,7, 0x16cc320,6, 0x16cc340,36, 0x16cc400,36, 0x16cc800,36, 0x16cc900,48, 0x16cca00,38, 0x16ccb00,7, 0x16ccb20,6, 0x16ccb40,36, 0x16ccc00,36, 0x16cd000,1, 0x16cd008,22, 0x16ce000,36, 0x16ce100,48, 0x16ce200,38, 0x16ce300,7, 0x16ce320,6, 0x16ce340,36, 0x16ce400,36, 0x16ce800,36, 0x16ce900,48, 0x16cea00,38, 0x16ceb00,7, 0x16ceb20,6, 0x16ceb40,36, 0x16cec00,36, 0x16cf000,1, 0x16cf008,22, 0x16d0000,36, 0x16d0100,48, 0x16d0200,38, 0x16d0300,7, 0x16d0320,6, 0x16d0340,36, 0x16d0400,36, 0x16d0800,36, 0x16d0900,48, 0x16d0a00,38, 0x16d0b00,7, 0x16d0b20,6, 0x16d0b40,36, 0x16d0c00,36, 0x16d1000,1, 0x16d1008,22, 0x16d2000,36, 0x16d2100,48, 0x16d2200,38, 0x16d2300,7, 0x16d2320,6, 0x16d2340,36, 0x16d2400,36, 0x16d2800,36, 0x16d2900,48, 0x16d2a00,38, 0x16d2b00,7, 0x16d2b20,6, 0x16d2b40,36, 0x16d2c00,36, 0x16d3000,1, 0x16d3008,22, 0x16d4000,36, 0x16d4100,48, 0x16d4200,38, 0x16d4300,7, 0x16d4320,6, 0x16d4340,36, 0x16d4400,36, 0x16d4800,36, 0x16d4900,48, 0x16d4a00,38, 0x16d4b00,7, 0x16d4b20,6, 0x16d4b40,36, 0x16d4c00,36, 0x16d5000,1, 0x16d5008,22, 0x16d6000,36, 0x16d6100,48, 0x16d6200,38, 0x16d6300,7, 0x16d6320,6, 0x16d6340,36, 0x16d6400,36, 0x16d6800,36, 0x16d6900,48, 0x16d6a00,38, 0x16d6b00,7, 0x16d6b20,6, 0x16d6b40,36, 0x16d6c00,36, 0x16d7000,1, 0x16d7008,22, 0x16d8000,36, 0x16d8100,48, 0x16d8200,38, 0x16d8300,7, 0x16d8320,6, 0x16d8340,36, 0x16d8400,36, 0x16d8800,36, 0x16d8900,48, 0x16d8a00,38, 0x16d8b00,7, 0x16d8b20,6, 0x16d8b40,36, 0x16d8c00,36, 0x16d9000,1, 0x16d9008,22, 0x16da000,36, 0x16da100,48, 0x16da200,38, 0x16da300,7, 0x16da320,6, 0x16da340,36, 0x16da400,36, 0x16da800,36, 0x16da900,48, 0x16daa00,38, 0x16dab00,7, 0x16dab20,6, 0x16dab40,36, 0x16dac00,36, 0x16db000,1, 0x16db008,22, 0x16dc000,36, 0x16dc100,48, 0x16dc200,38, 0x16dc300,7, 0x16dc320,6, 0x16dc340,36, 0x16dc400,36, 0x16dc800,36, 0x16dc900,48, 0x16dca00,38, 0x16dcb00,7, 0x16dcb20,6, 0x16dcb40,36, 0x16dcc00,36, 0x16dd000,1, 0x16dd008,22, 0x16de000,36, 0x16de100,48, 0x16de200,38, 0x16de300,7, 0x16de320,6, 0x16de340,36, 0x16de400,36, 0x16de800,36, 0x16de900,48, 0x16dea00,38, 0x16deb00,7, 0x16deb20,6, 0x16deb40,36, 0x16dec00,36, 0x16df000,1, 0x16df008,22, 0x16e0000,36, 0x16e0100,48, 0x16e0200,38, 0x16e0300,7, 0x16e0320,6, 0x16e0340,36, 0x16e0400,36, 0x16e0800,36, 0x16e0900,48, 0x16e0a00,38, 0x16e0b00,7, 0x16e0b20,6, 0x16e0b40,36, 0x16e0c00,36, 0x16e1000,1, 0x16e1008,22, 0x16e2000,36, 0x16e2100,48, 0x16e2200,38, 0x16e2300,7, 0x16e2320,6, 0x16e2340,36, 0x16e2400,36, 0x16e2800,36, 0x16e2900,48, 0x16e2a00,38, 0x16e2b00,7, 0x16e2b20,6, 0x16e2b40,36, 0x16e2c00,36, 0x16e3000,1, 0x16e3008,22, 0x16e4000,3, 0x16e4044,1, 0x16e4058,14, 0x16e4100,15, 0x16e4140,9, 0x16e4180,6, 0x16e41a0,6, 0x16e41c4,10, 0x16e4200,13, 0x16e4300,36, 0x16e4400,10, 0x16e4430,3, 0x16e4440,12, 0x1700000,56, 0x1700100,13, 0x1700180,20, 0x1700200,20, 0x1700280,6, 0x17002a4,5, 0x17002c4,5, 0x17002e4,1, 0x17002ec,3, 0x1700304,1, 0x170030c,3, 0x1700344,1, 0x1700360,11, 0x1700390,3, 0x17003a0,3, 0x1700400,20, 0x1700480,4, 0x17004a0,5, 0x17004c0,4, 0x17004e0,5, 0x1700500,21, 0x1700560,14, 0x17005a4,1, 0x17005ac,3, 0x17005c4,1, 0x17005cc,3, 0x17005e4,1, 0x17005ec,3, 0x1700600,17, 0x1700800,56, 0x1700900,13, 0x1700980,20, 0x1700a00,20, 0x1700a80,6, 0x1700aa4,5, 0x1700ac4,5, 0x1700ae4,1, 0x1700aec,3, 0x1700b04,1, 0x1700b0c,3, 0x1700b44,1, 0x1700b60,11, 0x1700b90,3, 0x1700ba0,3, 0x1700c00,20, 0x1700c80,4, 0x1700ca0,5, 0x1700cc0,4, 0x1700ce0,5, 0x1700d00,21, 0x1700d60,14, 0x1700da4,1, 0x1700dac,3, 0x1700dc4,1, 0x1700dcc,3, 0x1700de4,1, 0x1700dec,3, 0x1700e00,17, 0x1701000,56, 0x1701100,13, 0x1701180,20, 0x1701200,20, 0x1701280,6, 0x17012a4,5, 0x17012c4,5, 0x17012e4,1, 0x17012ec,3, 0x1701304,1, 0x170130c,3, 0x1701344,1, 0x1701360,11, 0x1701390,3, 0x17013a0,3, 0x1701400,20, 0x1701480,4, 0x17014a0,5, 0x17014c0,4, 0x17014e0,5, 0x1701500,21, 0x1701560,14, 0x17015a4,1, 0x17015ac,3, 0x17015c4,1, 0x17015cc,3, 0x17015e4,1, 0x17015ec,3, 0x1701600,17, 0x1701800,56, 0x1701900,13, 0x1701980,20, 0x1701a00,20, 0x1701a80,6, 0x1701aa4,5, 0x1701ac4,5, 0x1701ae4,1, 0x1701aec,3, 0x1701b04,1, 0x1701b0c,3, 0x1701b44,1, 0x1701b60,11, 0x1701b90,3, 0x1701ba0,3, 0x1701c00,20, 0x1701c80,4, 0x1701ca0,5, 0x1701cc0,4, 0x1701ce0,5, 0x1701d00,21, 0x1701d60,14, 0x1701da4,1, 0x1701dac,3, 0x1701dc4,1, 0x1701dcc,3, 0x1701de4,1, 0x1701dec,3, 0x1701e00,17, 0x1702000,56, 0x1702100,13, 0x1702180,20, 0x1702200,20, 0x1702280,6, 0x17022a4,5, 0x17022c4,5, 0x17022e4,1, 0x17022ec,3, 0x1702304,1, 0x170230c,3, 0x1702344,1, 0x1702360,11, 0x1702390,3, 0x17023a0,3, 0x1702400,20, 0x1702480,4, 0x17024a0,5, 0x17024c0,4, 0x17024e0,5, 0x1702500,21, 0x1702560,14, 0x17025a4,1, 0x17025ac,3, 0x17025c4,1, 0x17025cc,3, 0x17025e4,1, 0x17025ec,3, 0x1702600,17, 0x1702800,56, 0x1702900,13, 0x1702980,20, 0x1702a00,20, 0x1702a80,6, 0x1702aa4,5, 0x1702ac4,5, 0x1702ae4,1, 0x1702aec,3, 0x1702b04,1, 0x1702b0c,3, 0x1702b44,1, 0x1702b60,11, 0x1702b90,3, 0x1702ba0,3, 0x1702c00,20, 0x1702c80,4, 0x1702ca0,5, 0x1702cc0,4, 0x1702ce0,5, 0x1702d00,21, 0x1702d60,14, 0x1702da4,1, 0x1702dac,3, 0x1702dc4,1, 0x1702dcc,3, 0x1702de4,1, 0x1702dec,3, 0x1702e00,17, 0x1703000,56, 0x1703100,13, 0x1703180,20, 0x1703200,20, 0x1703280,6, 0x17032a4,5, 0x17032c4,5, 0x17032e4,1, 0x17032ec,3, 0x1703304,1, 0x170330c,3, 0x1703344,1, 0x1703360,11, 0x1703390,3, 0x17033a0,3, 0x1703400,20, 0x1703480,4, 0x17034a0,5, 0x17034c0,4, 0x17034e0,5, 0x1703500,21, 0x1703560,14, 0x17035a4,1, 0x17035ac,3, 0x17035c4,1, 0x17035cc,3, 0x17035e4,1, 0x17035ec,3, 0x1703600,17, 0x1703800,56, 0x1703900,13, 0x1703980,20, 0x1703a00,20, 0x1703a80,6, 0x1703aa4,5, 0x1703ac4,5, 0x1703ae4,1, 0x1703aec,3, 0x1703b04,1, 0x1703b0c,3, 0x1703b44,1, 0x1703b60,11, 0x1703b90,3, 0x1703ba0,3, 0x1703c00,20, 0x1703c80,4, 0x1703ca0,5, 0x1703cc0,4, 0x1703ce0,5, 0x1703d00,21, 0x1703d60,14, 0x1703da4,1, 0x1703dac,3, 0x1703dc4,1, 0x1703dcc,3, 0x1703de4,1, 0x1703dec,3, 0x1703e00,17, 0x1704000,56, 0x1704100,13, 0x1704180,20, 0x1704200,20, 0x1704280,6, 0x17042a4,5, 0x17042c4,5, 0x17042e4,1, 0x17042ec,3, 0x1704304,1, 0x170430c,3, 0x1704344,1, 0x1704360,11, 0x1704390,3, 0x17043a0,3, 0x1704400,20, 0x1704480,4, 0x17044a0,5, 0x17044c0,4, 0x17044e0,5, 0x1704500,21, 0x1704560,14, 0x17045a4,1, 0x17045ac,3, 0x17045c4,1, 0x17045cc,3, 0x17045e4,1, 0x17045ec,3, 0x1704600,17, 0x1704800,56, 0x1704900,13, 0x1704980,20, 0x1704a00,20, 0x1704a80,6, 0x1704aa4,5, 0x1704ac4,5, 0x1704ae4,1, 0x1704aec,3, 0x1704b04,1, 0x1704b0c,3, 0x1704b44,1, 0x1704b60,11, 0x1704b90,3, 0x1704ba0,3, 0x1704c00,20, 0x1704c80,4, 0x1704ca0,5, 0x1704cc0,4, 0x1704ce0,5, 0x1704d00,21, 0x1704d60,14, 0x1704da4,1, 0x1704dac,3, 0x1704dc4,1, 0x1704dcc,3, 0x1704de4,1, 0x1704dec,3, 0x1704e00,17, 0x1705000,56, 0x1705100,13, 0x1705180,20, 0x1705200,20, 0x1705280,6, 0x17052a4,5, 0x17052c4,5, 0x17052e4,1, 0x17052ec,3, 0x1705304,1, 0x170530c,3, 0x1705344,1, 0x1705360,11, 0x1705390,3, 0x17053a0,3, 0x1705400,20, 0x1705480,4, 0x17054a0,5, 0x17054c0,4, 0x17054e0,5, 0x1705500,21, 0x1705560,14, 0x17055a4,1, 0x17055ac,3, 0x17055c4,1, 0x17055cc,3, 0x17055e4,1, 0x17055ec,3, 0x1705600,17, 0x1705800,56, 0x1705900,13, 0x1705980,20, 0x1705a00,20, 0x1705a80,6, 0x1705aa4,5, 0x1705ac4,5, 0x1705ae4,1, 0x1705aec,3, 0x1705b04,1, 0x1705b0c,3, 0x1705b44,1, 0x1705b60,11, 0x1705b90,3, 0x1705ba0,3, 0x1705c00,20, 0x1705c80,4, 0x1705ca0,5, 0x1705cc0,4, 0x1705ce0,5, 0x1705d00,21, 0x1705d60,14, 0x1705da4,1, 0x1705dac,3, 0x1705dc4,1, 0x1705dcc,3, 0x1705de4,1, 0x1705dec,3, 0x1705e00,17, 0x1706000,56, 0x1706100,13, 0x1706180,20, 0x1706200,20, 0x1706280,6, 0x17062a4,5, 0x17062c4,5, 0x17062e4,1, 0x17062ec,3, 0x1706304,1, 0x170630c,3, 0x1706344,1, 0x1706360,11, 0x1706390,3, 0x17063a0,3, 0x1706400,20, 0x1706480,4, 0x17064a0,5, 0x17064c0,4, 0x17064e0,5, 0x1706500,21, 0x1706560,14, 0x17065a4,1, 0x17065ac,3, 0x17065c4,1, 0x17065cc,3, 0x17065e4,1, 0x17065ec,3, 0x1706600,17, 0x1706800,56, 0x1706900,13, 0x1706980,20, 0x1706a00,20, 0x1706a80,6, 0x1706aa4,5, 0x1706ac4,5, 0x1706ae4,1, 0x1706aec,3, 0x1706b04,1, 0x1706b0c,3, 0x1706b44,1, 0x1706b60,11, 0x1706b90,3, 0x1706ba0,3, 0x1706c00,20, 0x1706c80,4, 0x1706ca0,5, 0x1706cc0,4, 0x1706ce0,5, 0x1706d00,21, 0x1706d60,14, 0x1706da4,1, 0x1706dac,3, 0x1706dc4,1, 0x1706dcc,3, 0x1706de4,1, 0x1706dec,3, 0x1706e00,17, 0x1707000,56, 0x1707100,13, 0x1707180,20, 0x1707200,20, 0x1707280,6, 0x17072a4,5, 0x17072c4,5, 0x17072e4,1, 0x17072ec,3, 0x1707304,1, 0x170730c,3, 0x1707344,1, 0x1707360,11, 0x1707390,3, 0x17073a0,3, 0x1707400,20, 0x1707480,4, 0x17074a0,5, 0x17074c0,4, 0x17074e0,5, 0x1707500,21, 0x1707560,14, 0x17075a4,1, 0x17075ac,3, 0x17075c4,1, 0x17075cc,3, 0x17075e4,1, 0x17075ec,3, 0x1707600,17, 0x1707800,56, 0x1707900,13, 0x1707980,20, 0x1707a00,20, 0x1707a80,6, 0x1707aa4,5, 0x1707ac4,5, 0x1707ae4,1, 0x1707aec,3, 0x1707b04,1, 0x1707b0c,3, 0x1707b44,1, 0x1707b60,11, 0x1707b90,3, 0x1707ba0,3, 0x1707c00,20, 0x1707c80,4, 0x1707ca0,5, 0x1707cc0,4, 0x1707ce0,5, 0x1707d00,21, 0x1707d60,14, 0x1707da4,1, 0x1707dac,3, 0x1707dc4,1, 0x1707dcc,3, 0x1707de4,1, 0x1707dec,3, 0x1707e00,17, 0x1708000,56, 0x1708100,13, 0x1708180,20, 0x1708200,20, 0x1708280,6, 0x17082a4,5, 0x17082c4,5, 0x17082e4,1, 0x17082ec,3, 0x1708304,1, 0x170830c,3, 0x1708344,1, 0x1708360,11, 0x1708390,3, 0x17083a0,3, 0x1708400,20, 0x1708480,4, 0x17084a0,5, 0x17084c0,4, 0x17084e0,5, 0x1708500,21, 0x1708560,14, 0x17085a4,1, 0x17085ac,3, 0x17085c4,1, 0x17085cc,3, 0x17085e4,1, 0x17085ec,3, 0x1708600,17, 0x1709000,137, 0x1709400,9, 0x1709480,20, 0x1709500,20, 0x1709580,6, 0x17095a4,5, 0x17095c4,5, 0x17095e4,1, 0x17095ec,3, 0x1709604,1, 0x170960c,3, 0x1709620,14, 0x1709660,14, 0x1709700,20, 0x1709780,4, 0x17097a0,5, 0x17097c0,25, 0x170a000,28, 0x170a080,2, 0x170a090,3, 0x170a200,27, 0x170a280,4, 0x170a2c0,25, 0x170a340,6, 0x170a360,4, 0x170a374,11, 0x170a3a4,10, 0x170a400,5, 0x1720000,56, 0x1720100,13, 0x1720180,20, 0x1720200,20, 0x1720280,6, 0x17202a4,5, 0x17202c4,5, 0x17202e4,1, 0x17202ec,3, 0x1720304,1, 0x172030c,3, 0x1720344,1, 0x1720360,11, 0x1720390,3, 0x17203a0,3, 0x1720400,20, 0x1720480,4, 0x17204a0,5, 0x17204c0,4, 0x17204e0,5, 0x1720500,21, 0x1720560,14, 0x17205a4,1, 0x17205ac,3, 0x17205c4,1, 0x17205cc,3, 0x17205e4,1, 0x17205ec,3, 0x1720600,17, 0x1720800,56, 0x1720900,13, 0x1720980,20, 0x1720a00,20, 0x1720a80,6, 0x1720aa4,5, 0x1720ac4,5, 0x1720ae4,1, 0x1720aec,3, 0x1720b04,1, 0x1720b0c,3, 0x1720b44,1, 0x1720b60,11, 0x1720b90,3, 0x1720ba0,3, 0x1720c00,20, 0x1720c80,4, 0x1720ca0,5, 0x1720cc0,4, 0x1720ce0,5, 0x1720d00,21, 0x1720d60,14, 0x1720da4,1, 0x1720dac,3, 0x1720dc4,1, 0x1720dcc,3, 0x1720de4,1, 0x1720dec,3, 0x1720e00,17, 0x1721000,56, 0x1721100,13, 0x1721180,20, 0x1721200,20, 0x1721280,6, 0x17212a4,5, 0x17212c4,5, 0x17212e4,1, 0x17212ec,3, 0x1721304,1, 0x172130c,3, 0x1721344,1, 0x1721360,11, 0x1721390,3, 0x17213a0,3, 0x1721400,20, 0x1721480,4, 0x17214a0,5, 0x17214c0,4, 0x17214e0,5, 0x1721500,21, 0x1721560,14, 0x17215a4,1, 0x17215ac,3, 0x17215c4,1, 0x17215cc,3, 0x17215e4,1, 0x17215ec,3, 0x1721600,17, 0x1721800,56, 0x1721900,13, 0x1721980,20, 0x1721a00,20, 0x1721a80,6, 0x1721aa4,5, 0x1721ac4,5, 0x1721ae4,1, 0x1721aec,3, 0x1721b04,1, 0x1721b0c,3, 0x1721b44,1, 0x1721b60,11, 0x1721b90,3, 0x1721ba0,3, 0x1721c00,20, 0x1721c80,4, 0x1721ca0,5, 0x1721cc0,4, 0x1721ce0,5, 0x1721d00,21, 0x1721d60,14, 0x1721da4,1, 0x1721dac,3, 0x1721dc4,1, 0x1721dcc,3, 0x1721de4,1, 0x1721dec,3, 0x1721e00,17, 0x1722000,56, 0x1722100,13, 0x1722180,20, 0x1722200,20, 0x1722280,6, 0x17222a4,5, 0x17222c4,5, 0x17222e4,1, 0x17222ec,3, 0x1722304,1, 0x172230c,3, 0x1722344,1, 0x1722360,11, 0x1722390,3, 0x17223a0,3, 0x1722400,20, 0x1722480,4, 0x17224a0,5, 0x17224c0,4, 0x17224e0,5, 0x1722500,21, 0x1722560,14, 0x17225a4,1, 0x17225ac,3, 0x17225c4,1, 0x17225cc,3, 0x17225e4,1, 0x17225ec,3, 0x1722600,17, 0x1722800,56, 0x1722900,13, 0x1722980,20, 0x1722a00,20, 0x1722a80,6, 0x1722aa4,5, 0x1722ac4,5, 0x1722ae4,1, 0x1722aec,3, 0x1722b04,1, 0x1722b0c,3, 0x1722b44,1, 0x1722b60,11, 0x1722b90,3, 0x1722ba0,3, 0x1722c00,20, 0x1722c80,4, 0x1722ca0,5, 0x1722cc0,4, 0x1722ce0,5, 0x1722d00,21, 0x1722d60,14, 0x1722da4,1, 0x1722dac,3, 0x1722dc4,1, 0x1722dcc,3, 0x1722de4,1, 0x1722dec,3, 0x1722e00,17, 0x1723000,56, 0x1723100,13, 0x1723180,20, 0x1723200,20, 0x1723280,6, 0x17232a4,5, 0x17232c4,5, 0x17232e4,1, 0x17232ec,3, 0x1723304,1, 0x172330c,3, 0x1723344,1, 0x1723360,11, 0x1723390,3, 0x17233a0,3, 0x1723400,20, 0x1723480,4, 0x17234a0,5, 0x17234c0,4, 0x17234e0,5, 0x1723500,21, 0x1723560,14, 0x17235a4,1, 0x17235ac,3, 0x17235c4,1, 0x17235cc,3, 0x17235e4,1, 0x17235ec,3, 0x1723600,17, 0x1723800,56, 0x1723900,13, 0x1723980,20, 0x1723a00,20, 0x1723a80,6, 0x1723aa4,5, 0x1723ac4,5, 0x1723ae4,1, 0x1723aec,3, 0x1723b04,1, 0x1723b0c,3, 0x1723b44,1, 0x1723b60,11, 0x1723b90,3, 0x1723ba0,3, 0x1723c00,20, 0x1723c80,4, 0x1723ca0,5, 0x1723cc0,4, 0x1723ce0,5, 0x1723d00,21, 0x1723d60,14, 0x1723da4,1, 0x1723dac,3, 0x1723dc4,1, 0x1723dcc,3, 0x1723de4,1, 0x1723dec,3, 0x1723e00,17, 0x1724000,56, 0x1724100,13, 0x1724180,20, 0x1724200,20, 0x1724280,6, 0x17242a4,5, 0x17242c4,5, 0x17242e4,1, 0x17242ec,3, 0x1724304,1, 0x172430c,3, 0x1724344,1, 0x1724360,11, 0x1724390,3, 0x17243a0,3, 0x1724400,20, 0x1724480,4, 0x17244a0,5, 0x17244c0,4, 0x17244e0,5, 0x1724500,21, 0x1724560,14, 0x17245a4,1, 0x17245ac,3, 0x17245c4,1, 0x17245cc,3, 0x17245e4,1, 0x17245ec,3, 0x1724600,17, 0x1724800,56, 0x1724900,13, 0x1724980,20, 0x1724a00,20, 0x1724a80,6, 0x1724aa4,5, 0x1724ac4,5, 0x1724ae4,1, 0x1724aec,3, 0x1724b04,1, 0x1724b0c,3, 0x1724b44,1, 0x1724b60,11, 0x1724b90,3, 0x1724ba0,3, 0x1724c00,20, 0x1724c80,4, 0x1724ca0,5, 0x1724cc0,4, 0x1724ce0,5, 0x1724d00,21, 0x1724d60,14, 0x1724da4,1, 0x1724dac,3, 0x1724dc4,1, 0x1724dcc,3, 0x1724de4,1, 0x1724dec,3, 0x1724e00,17, 0x1725000,56, 0x1725100,13, 0x1725180,20, 0x1725200,20, 0x1725280,6, 0x17252a4,5, 0x17252c4,5, 0x17252e4,1, 0x17252ec,3, 0x1725304,1, 0x172530c,3, 0x1725344,1, 0x1725360,11, 0x1725390,3, 0x17253a0,3, 0x1725400,20, 0x1725480,4, 0x17254a0,5, 0x17254c0,4, 0x17254e0,5, 0x1725500,21, 0x1725560,14, 0x17255a4,1, 0x17255ac,3, 0x17255c4,1, 0x17255cc,3, 0x17255e4,1, 0x17255ec,3, 0x1725600,17, 0x1725800,56, 0x1725900,13, 0x1725980,20, 0x1725a00,20, 0x1725a80,6, 0x1725aa4,5, 0x1725ac4,5, 0x1725ae4,1, 0x1725aec,3, 0x1725b04,1, 0x1725b0c,3, 0x1725b44,1, 0x1725b60,11, 0x1725b90,3, 0x1725ba0,3, 0x1725c00,20, 0x1725c80,4, 0x1725ca0,5, 0x1725cc0,4, 0x1725ce0,5, 0x1725d00,21, 0x1725d60,14, 0x1725da4,1, 0x1725dac,3, 0x1725dc4,1, 0x1725dcc,3, 0x1725de4,1, 0x1725dec,3, 0x1725e00,17, 0x1726000,56, 0x1726100,13, 0x1726180,20, 0x1726200,20, 0x1726280,6, 0x17262a4,5, 0x17262c4,5, 0x17262e4,1, 0x17262ec,3, 0x1726304,1, 0x172630c,3, 0x1726344,1, 0x1726360,11, 0x1726390,3, 0x17263a0,3, 0x1726400,20, 0x1726480,4, 0x17264a0,5, 0x17264c0,4, 0x17264e0,5, 0x1726500,21, 0x1726560,14, 0x17265a4,1, 0x17265ac,3, 0x17265c4,1, 0x17265cc,3, 0x17265e4,1, 0x17265ec,3, 0x1726600,17, 0x1726800,56, 0x1726900,13, 0x1726980,20, 0x1726a00,20, 0x1726a80,6, 0x1726aa4,5, 0x1726ac4,5, 0x1726ae4,1, 0x1726aec,3, 0x1726b04,1, 0x1726b0c,3, 0x1726b44,1, 0x1726b60,11, 0x1726b90,3, 0x1726ba0,3, 0x1726c00,20, 0x1726c80,4, 0x1726ca0,5, 0x1726cc0,4, 0x1726ce0,5, 0x1726d00,21, 0x1726d60,14, 0x1726da4,1, 0x1726dac,3, 0x1726dc4,1, 0x1726dcc,3, 0x1726de4,1, 0x1726dec,3, 0x1726e00,17, 0x1727000,56, 0x1727100,13, 0x1727180,20, 0x1727200,20, 0x1727280,6, 0x17272a4,5, 0x17272c4,5, 0x17272e4,1, 0x17272ec,3, 0x1727304,1, 0x172730c,3, 0x1727344,1, 0x1727360,11, 0x1727390,3, 0x17273a0,3, 0x1727400,20, 0x1727480,4, 0x17274a0,5, 0x17274c0,4, 0x17274e0,5, 0x1727500,21, 0x1727560,14, 0x17275a4,1, 0x17275ac,3, 0x17275c4,1, 0x17275cc,3, 0x17275e4,1, 0x17275ec,3, 0x1727600,17, 0x1727800,56, 0x1727900,13, 0x1727980,20, 0x1727a00,20, 0x1727a80,6, 0x1727aa4,5, 0x1727ac4,5, 0x1727ae4,1, 0x1727aec,3, 0x1727b04,1, 0x1727b0c,3, 0x1727b44,1, 0x1727b60,11, 0x1727b90,3, 0x1727ba0,3, 0x1727c00,20, 0x1727c80,4, 0x1727ca0,5, 0x1727cc0,4, 0x1727ce0,5, 0x1727d00,21, 0x1727d60,14, 0x1727da4,1, 0x1727dac,3, 0x1727dc4,1, 0x1727dcc,3, 0x1727de4,1, 0x1727dec,3, 0x1727e00,17, 0x1728000,56, 0x1728100,13, 0x1728180,20, 0x1728200,20, 0x1728280,6, 0x17282a4,5, 0x17282c4,5, 0x17282e4,1, 0x17282ec,3, 0x1728304,1, 0x172830c,3, 0x1728344,1, 0x1728360,11, 0x1728390,3, 0x17283a0,3, 0x1728400,20, 0x1728480,4, 0x17284a0,5, 0x17284c0,4, 0x17284e0,5, 0x1728500,21, 0x1728560,14, 0x17285a4,1, 0x17285ac,3, 0x17285c4,1, 0x17285cc,3, 0x17285e4,1, 0x17285ec,3, 0x1728600,17, 0x1729000,137, 0x1729400,9, 0x1729480,20, 0x1729500,20, 0x1729580,6, 0x17295a4,5, 0x17295c4,5, 0x17295e4,1, 0x17295ec,3, 0x1729604,1, 0x172960c,3, 0x1729620,14, 0x1729660,14, 0x1729700,20, 0x1729780,4, 0x17297a0,5, 0x17297c0,25, 0x172a000,28, 0x172a080,2, 0x172a090,3, 0x172a200,27, 0x172a280,4, 0x172a2c0,25, 0x172a340,6, 0x172a360,4, 0x172a374,11, 0x172a3a4,10, 0x172a400,5, 0x1740000,56, 0x1740100,13, 0x1740180,20, 0x1740200,20, 0x1740280,6, 0x17402a4,5, 0x17402c4,5, 0x17402e4,1, 0x17402ec,3, 0x1740304,1, 0x174030c,3, 0x1740344,1, 0x1740360,11, 0x1740390,3, 0x17403a0,3, 0x1740400,20, 0x1740480,4, 0x17404a0,5, 0x17404c0,4, 0x17404e0,5, 0x1740500,21, 0x1740560,14, 0x17405a4,1, 0x17405ac,3, 0x17405c4,1, 0x17405cc,3, 0x17405e4,1, 0x17405ec,3, 0x1740600,17, 0x1740800,56, 0x1740900,13, 0x1740980,20, 0x1740a00,20, 0x1740a80,6, 0x1740aa4,5, 0x1740ac4,5, 0x1740ae4,1, 0x1740aec,3, 0x1740b04,1, 0x1740b0c,3, 0x1740b44,1, 0x1740b60,11, 0x1740b90,3, 0x1740ba0,3, 0x1740c00,20, 0x1740c80,4, 0x1740ca0,5, 0x1740cc0,4, 0x1740ce0,5, 0x1740d00,21, 0x1740d60,14, 0x1740da4,1, 0x1740dac,3, 0x1740dc4,1, 0x1740dcc,3, 0x1740de4,1, 0x1740dec,3, 0x1740e00,17, 0x1741000,56, 0x1741100,13, 0x1741180,20, 0x1741200,20, 0x1741280,6, 0x17412a4,5, 0x17412c4,5, 0x17412e4,1, 0x17412ec,3, 0x1741304,1, 0x174130c,3, 0x1741344,1, 0x1741360,11, 0x1741390,3, 0x17413a0,3, 0x1741400,20, 0x1741480,4, 0x17414a0,5, 0x17414c0,4, 0x17414e0,5, 0x1741500,21, 0x1741560,14, 0x17415a4,1, 0x17415ac,3, 0x17415c4,1, 0x17415cc,3, 0x17415e4,1, 0x17415ec,3, 0x1741600,17, 0x1741800,56, 0x1741900,13, 0x1741980,20, 0x1741a00,20, 0x1741a80,6, 0x1741aa4,5, 0x1741ac4,5, 0x1741ae4,1, 0x1741aec,3, 0x1741b04,1, 0x1741b0c,3, 0x1741b44,1, 0x1741b60,11, 0x1741b90,3, 0x1741ba0,3, 0x1741c00,20, 0x1741c80,4, 0x1741ca0,5, 0x1741cc0,4, 0x1741ce0,5, 0x1741d00,21, 0x1741d60,14, 0x1741da4,1, 0x1741dac,3, 0x1741dc4,1, 0x1741dcc,3, 0x1741de4,1, 0x1741dec,3, 0x1741e00,17, 0x1742000,56, 0x1742100,13, 0x1742180,20, 0x1742200,20, 0x1742280,6, 0x17422a4,5, 0x17422c4,5, 0x17422e4,1, 0x17422ec,3, 0x1742304,1, 0x174230c,3, 0x1742344,1, 0x1742360,11, 0x1742390,3, 0x17423a0,3, 0x1742400,20, 0x1742480,4, 0x17424a0,5, 0x17424c0,4, 0x17424e0,5, 0x1742500,21, 0x1742560,14, 0x17425a4,1, 0x17425ac,3, 0x17425c4,1, 0x17425cc,3, 0x17425e4,1, 0x17425ec,3, 0x1742600,17, 0x1742800,56, 0x1742900,13, 0x1742980,20, 0x1742a00,20, 0x1742a80,6, 0x1742aa4,5, 0x1742ac4,5, 0x1742ae4,1, 0x1742aec,3, 0x1742b04,1, 0x1742b0c,3, 0x1742b44,1, 0x1742b60,11, 0x1742b90,3, 0x1742ba0,3, 0x1742c00,20, 0x1742c80,4, 0x1742ca0,5, 0x1742cc0,4, 0x1742ce0,5, 0x1742d00,21, 0x1742d60,14, 0x1742da4,1, 0x1742dac,3, 0x1742dc4,1, 0x1742dcc,3, 0x1742de4,1, 0x1742dec,3, 0x1742e00,17, 0x1743000,56, 0x1743100,13, 0x1743180,20, 0x1743200,20, 0x1743280,6, 0x17432a4,5, 0x17432c4,5, 0x17432e4,1, 0x17432ec,3, 0x1743304,1, 0x174330c,3, 0x1743344,1, 0x1743360,11, 0x1743390,3, 0x17433a0,3, 0x1743400,20, 0x1743480,4, 0x17434a0,5, 0x17434c0,4, 0x17434e0,5, 0x1743500,21, 0x1743560,14, 0x17435a4,1, 0x17435ac,3, 0x17435c4,1, 0x17435cc,3, 0x17435e4,1, 0x17435ec,3, 0x1743600,17, 0x1743800,56, 0x1743900,13, 0x1743980,20, 0x1743a00,20, 0x1743a80,6, 0x1743aa4,5, 0x1743ac4,5, 0x1743ae4,1, 0x1743aec,3, 0x1743b04,1, 0x1743b0c,3, 0x1743b44,1, 0x1743b60,11, 0x1743b90,3, 0x1743ba0,3, 0x1743c00,20, 0x1743c80,4, 0x1743ca0,5, 0x1743cc0,4, 0x1743ce0,5, 0x1743d00,21, 0x1743d60,14, 0x1743da4,1, 0x1743dac,3, 0x1743dc4,1, 0x1743dcc,3, 0x1743de4,1, 0x1743dec,3, 0x1743e00,17, 0x1744000,56, 0x1744100,13, 0x1744180,20, 0x1744200,20, 0x1744280,6, 0x17442a4,5, 0x17442c4,5, 0x17442e4,1, 0x17442ec,3, 0x1744304,1, 0x174430c,3, 0x1744344,1, 0x1744360,11, 0x1744390,3, 0x17443a0,3, 0x1744400,20, 0x1744480,4, 0x17444a0,5, 0x17444c0,4, 0x17444e0,5, 0x1744500,21, 0x1744560,14, 0x17445a4,1, 0x17445ac,3, 0x17445c4,1, 0x17445cc,3, 0x17445e4,1, 0x17445ec,3, 0x1744600,17, 0x1744800,56, 0x1744900,13, 0x1744980,20, 0x1744a00,20, 0x1744a80,6, 0x1744aa4,5, 0x1744ac4,5, 0x1744ae4,1, 0x1744aec,3, 0x1744b04,1, 0x1744b0c,3, 0x1744b44,1, 0x1744b60,11, 0x1744b90,3, 0x1744ba0,3, 0x1744c00,20, 0x1744c80,4, 0x1744ca0,5, 0x1744cc0,4, 0x1744ce0,5, 0x1744d00,21, 0x1744d60,14, 0x1744da4,1, 0x1744dac,3, 0x1744dc4,1, 0x1744dcc,3, 0x1744de4,1, 0x1744dec,3, 0x1744e00,17, 0x1745000,56, 0x1745100,13, 0x1745180,20, 0x1745200,20, 0x1745280,6, 0x17452a4,5, 0x17452c4,5, 0x17452e4,1, 0x17452ec,3, 0x1745304,1, 0x174530c,3, 0x1745344,1, 0x1745360,11, 0x1745390,3, 0x17453a0,3, 0x1745400,20, 0x1745480,4, 0x17454a0,5, 0x17454c0,4, 0x17454e0,5, 0x1745500,21, 0x1745560,14, 0x17455a4,1, 0x17455ac,3, 0x17455c4,1, 0x17455cc,3, 0x17455e4,1, 0x17455ec,3, 0x1745600,17, 0x1745800,56, 0x1745900,13, 0x1745980,20, 0x1745a00,20, 0x1745a80,6, 0x1745aa4,5, 0x1745ac4,5, 0x1745ae4,1, 0x1745aec,3, 0x1745b04,1, 0x1745b0c,3, 0x1745b44,1, 0x1745b60,11, 0x1745b90,3, 0x1745ba0,3, 0x1745c00,20, 0x1745c80,4, 0x1745ca0,5, 0x1745cc0,4, 0x1745ce0,5, 0x1745d00,21, 0x1745d60,14, 0x1745da4,1, 0x1745dac,3, 0x1745dc4,1, 0x1745dcc,3, 0x1745de4,1, 0x1745dec,3, 0x1745e00,17, 0x1746000,56, 0x1746100,13, 0x1746180,20, 0x1746200,20, 0x1746280,6, 0x17462a4,5, 0x17462c4,5, 0x17462e4,1, 0x17462ec,3, 0x1746304,1, 0x174630c,3, 0x1746344,1, 0x1746360,11, 0x1746390,3, 0x17463a0,3, 0x1746400,20, 0x1746480,4, 0x17464a0,5, 0x17464c0,4, 0x17464e0,5, 0x1746500,21, 0x1746560,14, 0x17465a4,1, 0x17465ac,3, 0x17465c4,1, 0x17465cc,3, 0x17465e4,1, 0x17465ec,3, 0x1746600,17, 0x1746800,56, 0x1746900,13, 0x1746980,20, 0x1746a00,20, 0x1746a80,6, 0x1746aa4,5, 0x1746ac4,5, 0x1746ae4,1, 0x1746aec,3, 0x1746b04,1, 0x1746b0c,3, 0x1746b44,1, 0x1746b60,11, 0x1746b90,3, 0x1746ba0,3, 0x1746c00,20, 0x1746c80,4, 0x1746ca0,5, 0x1746cc0,4, 0x1746ce0,5, 0x1746d00,21, 0x1746d60,14, 0x1746da4,1, 0x1746dac,3, 0x1746dc4,1, 0x1746dcc,3, 0x1746de4,1, 0x1746dec,3, 0x1746e00,17, 0x1747000,56, 0x1747100,13, 0x1747180,20, 0x1747200,20, 0x1747280,6, 0x17472a4,5, 0x17472c4,5, 0x17472e4,1, 0x17472ec,3, 0x1747304,1, 0x174730c,3, 0x1747344,1, 0x1747360,11, 0x1747390,3, 0x17473a0,3, 0x1747400,20, 0x1747480,4, 0x17474a0,5, 0x17474c0,4, 0x17474e0,5, 0x1747500,21, 0x1747560,14, 0x17475a4,1, 0x17475ac,3, 0x17475c4,1, 0x17475cc,3, 0x17475e4,1, 0x17475ec,3, 0x1747600,17, 0x1747800,56, 0x1747900,13, 0x1747980,20, 0x1747a00,20, 0x1747a80,6, 0x1747aa4,5, 0x1747ac4,5, 0x1747ae4,1, 0x1747aec,3, 0x1747b04,1, 0x1747b0c,3, 0x1747b44,1, 0x1747b60,11, 0x1747b90,3, 0x1747ba0,3, 0x1747c00,20, 0x1747c80,4, 0x1747ca0,5, 0x1747cc0,4, 0x1747ce0,5, 0x1747d00,21, 0x1747d60,14, 0x1747da4,1, 0x1747dac,3, 0x1747dc4,1, 0x1747dcc,3, 0x1747de4,1, 0x1747dec,3, 0x1747e00,17, 0x1748000,56, 0x1748100,13, 0x1748180,20, 0x1748200,20, 0x1748280,6, 0x17482a4,5, 0x17482c4,5, 0x17482e4,1, 0x17482ec,3, 0x1748304,1, 0x174830c,3, 0x1748344,1, 0x1748360,11, 0x1748390,3, 0x17483a0,3, 0x1748400,20, 0x1748480,4, 0x17484a0,5, 0x17484c0,4, 0x17484e0,5, 0x1748500,21, 0x1748560,14, 0x17485a4,1, 0x17485ac,3, 0x17485c4,1, 0x17485cc,3, 0x17485e4,1, 0x17485ec,3, 0x1748600,17, 0x1749000,137, 0x1749400,9, 0x1749480,20, 0x1749500,20, 0x1749580,6, 0x17495a4,5, 0x17495c4,5, 0x17495e4,1, 0x17495ec,3, 0x1749604,1, 0x174960c,3, 0x1749620,14, 0x1749660,14, 0x1749700,20, 0x1749780,4, 0x17497a0,5, 0x17497c0,25, 0x174a000,28, 0x174a080,2, 0x174a090,3, 0x174a200,27, 0x174a280,4, 0x174a2c0,25, 0x174a340,6, 0x174a360,4, 0x174a374,11, 0x174a3a4,10, 0x174a400,5, 0x1760000,56, 0x1760100,13, 0x1760180,20, 0x1760200,20, 0x1760280,6, 0x17602a4,5, 0x17602c4,5, 0x17602e4,1, 0x17602ec,3, 0x1760304,1, 0x176030c,3, 0x1760344,1, 0x1760360,11, 0x1760390,3, 0x17603a0,3, 0x1760400,20, 0x1760480,4, 0x17604a0,5, 0x17604c0,4, 0x17604e0,5, 0x1760500,21, 0x1760560,14, 0x17605a4,1, 0x17605ac,3, 0x17605c4,1, 0x17605cc,3, 0x17605e4,1, 0x17605ec,3, 0x1760600,17, 0x1760800,56, 0x1760900,13, 0x1760980,20, 0x1760a00,20, 0x1760a80,6, 0x1760aa4,5, 0x1760ac4,5, 0x1760ae4,1, 0x1760aec,3, 0x1760b04,1, 0x1760b0c,3, 0x1760b44,1, 0x1760b60,11, 0x1760b90,3, 0x1760ba0,3, 0x1760c00,20, 0x1760c80,4, 0x1760ca0,5, 0x1760cc0,4, 0x1760ce0,5, 0x1760d00,21, 0x1760d60,14, 0x1760da4,1, 0x1760dac,3, 0x1760dc4,1, 0x1760dcc,3, 0x1760de4,1, 0x1760dec,3, 0x1760e00,17, 0x1761000,56, 0x1761100,13, 0x1761180,20, 0x1761200,20, 0x1761280,6, 0x17612a4,5, 0x17612c4,5, 0x17612e4,1, 0x17612ec,3, 0x1761304,1, 0x176130c,3, 0x1761344,1, 0x1761360,11, 0x1761390,3, 0x17613a0,3, 0x1761400,20, 0x1761480,4, 0x17614a0,5, 0x17614c0,4, 0x17614e0,5, 0x1761500,21, 0x1761560,14, 0x17615a4,1, 0x17615ac,3, 0x17615c4,1, 0x17615cc,3, 0x17615e4,1, 0x17615ec,3, 0x1761600,17, 0x1761800,56, 0x1761900,13, 0x1761980,20, 0x1761a00,20, 0x1761a80,6, 0x1761aa4,5, 0x1761ac4,5, 0x1761ae4,1, 0x1761aec,3, 0x1761b04,1, 0x1761b0c,3, 0x1761b44,1, 0x1761b60,11, 0x1761b90,3, 0x1761ba0,3, 0x1761c00,20, 0x1761c80,4, 0x1761ca0,5, 0x1761cc0,4, 0x1761ce0,5, 0x1761d00,21, 0x1761d60,14, 0x1761da4,1, 0x1761dac,3, 0x1761dc4,1, 0x1761dcc,3, 0x1761de4,1, 0x1761dec,3, 0x1761e00,17, 0x1762000,56, 0x1762100,13, 0x1762180,20, 0x1762200,20, 0x1762280,6, 0x17622a4,5, 0x17622c4,5, 0x17622e4,1, 0x17622ec,3, 0x1762304,1, 0x176230c,3, 0x1762344,1, 0x1762360,11, 0x1762390,3, 0x17623a0,3, 0x1762400,20, 0x1762480,4, 0x17624a0,5, 0x17624c0,4, 0x17624e0,5, 0x1762500,21, 0x1762560,14, 0x17625a4,1, 0x17625ac,3, 0x17625c4,1, 0x17625cc,3, 0x17625e4,1, 0x17625ec,3, 0x1762600,17, 0x1762800,56, 0x1762900,13, 0x1762980,20, 0x1762a00,20, 0x1762a80,6, 0x1762aa4,5, 0x1762ac4,5, 0x1762ae4,1, 0x1762aec,3, 0x1762b04,1, 0x1762b0c,3, 0x1762b44,1, 0x1762b60,11, 0x1762b90,3, 0x1762ba0,3, 0x1762c00,20, 0x1762c80,4, 0x1762ca0,5, 0x1762cc0,4, 0x1762ce0,5, 0x1762d00,21, 0x1762d60,14, 0x1762da4,1, 0x1762dac,3, 0x1762dc4,1, 0x1762dcc,3, 0x1762de4,1, 0x1762dec,3, 0x1762e00,17, 0x1763000,56, 0x1763100,13, 0x1763180,20, 0x1763200,20, 0x1763280,6, 0x17632a4,5, 0x17632c4,5, 0x17632e4,1, 0x17632ec,3, 0x1763304,1, 0x176330c,3, 0x1763344,1, 0x1763360,11, 0x1763390,3, 0x17633a0,3, 0x1763400,20, 0x1763480,4, 0x17634a0,5, 0x17634c0,4, 0x17634e0,5, 0x1763500,21, 0x1763560,14, 0x17635a4,1, 0x17635ac,3, 0x17635c4,1, 0x17635cc,3, 0x17635e4,1, 0x17635ec,3, 0x1763600,17, 0x1763800,56, 0x1763900,13, 0x1763980,20, 0x1763a00,20, 0x1763a80,6, 0x1763aa4,5, 0x1763ac4,5, 0x1763ae4,1, 0x1763aec,3, 0x1763b04,1, 0x1763b0c,3, 0x1763b44,1, 0x1763b60,11, 0x1763b90,3, 0x1763ba0,3, 0x1763c00,20, 0x1763c80,4, 0x1763ca0,5, 0x1763cc0,4, 0x1763ce0,5, 0x1763d00,21, 0x1763d60,14, 0x1763da4,1, 0x1763dac,3, 0x1763dc4,1, 0x1763dcc,3, 0x1763de4,1, 0x1763dec,3, 0x1763e00,17, 0x1764000,56, 0x1764100,13, 0x1764180,20, 0x1764200,20, 0x1764280,6, 0x17642a4,5, 0x17642c4,5, 0x17642e4,1, 0x17642ec,3, 0x1764304,1, 0x176430c,3, 0x1764344,1, 0x1764360,11, 0x1764390,3, 0x17643a0,3, 0x1764400,20, 0x1764480,4, 0x17644a0,5, 0x17644c0,4, 0x17644e0,5, 0x1764500,21, 0x1764560,14, 0x17645a4,1, 0x17645ac,3, 0x17645c4,1, 0x17645cc,3, 0x17645e4,1, 0x17645ec,3, 0x1764600,17, 0x1764800,56, 0x1764900,13, 0x1764980,20, 0x1764a00,20, 0x1764a80,6, 0x1764aa4,5, 0x1764ac4,5, 0x1764ae4,1, 0x1764aec,3, 0x1764b04,1, 0x1764b0c,3, 0x1764b44,1, 0x1764b60,11, 0x1764b90,3, 0x1764ba0,3, 0x1764c00,20, 0x1764c80,4, 0x1764ca0,5, 0x1764cc0,4, 0x1764ce0,5, 0x1764d00,21, 0x1764d60,14, 0x1764da4,1, 0x1764dac,3, 0x1764dc4,1, 0x1764dcc,3, 0x1764de4,1, 0x1764dec,3, 0x1764e00,17, 0x1765000,56, 0x1765100,13, 0x1765180,20, 0x1765200,20, 0x1765280,6, 0x17652a4,5, 0x17652c4,5, 0x17652e4,1, 0x17652ec,3, 0x1765304,1, 0x176530c,3, 0x1765344,1, 0x1765360,11, 0x1765390,3, 0x17653a0,3, 0x1765400,20, 0x1765480,4, 0x17654a0,5, 0x17654c0,4, 0x17654e0,5, 0x1765500,21, 0x1765560,14, 0x17655a4,1, 0x17655ac,3, 0x17655c4,1, 0x17655cc,3, 0x17655e4,1, 0x17655ec,3, 0x1765600,17, 0x1765800,56, 0x1765900,13, 0x1765980,20, 0x1765a00,20, 0x1765a80,6, 0x1765aa4,5, 0x1765ac4,5, 0x1765ae4,1, 0x1765aec,3, 0x1765b04,1, 0x1765b0c,3, 0x1765b44,1, 0x1765b60,11, 0x1765b90,3, 0x1765ba0,3, 0x1765c00,20, 0x1765c80,4, 0x1765ca0,5, 0x1765cc0,4, 0x1765ce0,5, 0x1765d00,21, 0x1765d60,14, 0x1765da4,1, 0x1765dac,3, 0x1765dc4,1, 0x1765dcc,3, 0x1765de4,1, 0x1765dec,3, 0x1765e00,17, 0x1766000,56, 0x1766100,13, 0x1766180,20, 0x1766200,20, 0x1766280,6, 0x17662a4,5, 0x17662c4,5, 0x17662e4,1, 0x17662ec,3, 0x1766304,1, 0x176630c,3, 0x1766344,1, 0x1766360,11, 0x1766390,3, 0x17663a0,3, 0x1766400,20, 0x1766480,4, 0x17664a0,5, 0x17664c0,4, 0x17664e0,5, 0x1766500,21, 0x1766560,14, 0x17665a4,1, 0x17665ac,3, 0x17665c4,1, 0x17665cc,3, 0x17665e4,1, 0x17665ec,3, 0x1766600,17, 0x1766800,56, 0x1766900,13, 0x1766980,20, 0x1766a00,20, 0x1766a80,6, 0x1766aa4,5, 0x1766ac4,5, 0x1766ae4,1, 0x1766aec,3, 0x1766b04,1, 0x1766b0c,3, 0x1766b44,1, 0x1766b60,11, 0x1766b90,3, 0x1766ba0,3, 0x1766c00,20, 0x1766c80,4, 0x1766ca0,5, 0x1766cc0,4, 0x1766ce0,5, 0x1766d00,21, 0x1766d60,14, 0x1766da4,1, 0x1766dac,3, 0x1766dc4,1, 0x1766dcc,3, 0x1766de4,1, 0x1766dec,3, 0x1766e00,17, 0x1767000,56, 0x1767100,13, 0x1767180,20, 0x1767200,20, 0x1767280,6, 0x17672a4,5, 0x17672c4,5, 0x17672e4,1, 0x17672ec,3, 0x1767304,1, 0x176730c,3, 0x1767344,1, 0x1767360,11, 0x1767390,3, 0x17673a0,3, 0x1767400,20, 0x1767480,4, 0x17674a0,5, 0x17674c0,4, 0x17674e0,5, 0x1767500,21, 0x1767560,14, 0x17675a4,1, 0x17675ac,3, 0x17675c4,1, 0x17675cc,3, 0x17675e4,1, 0x17675ec,3, 0x1767600,17, 0x1767800,56, 0x1767900,13, 0x1767980,20, 0x1767a00,20, 0x1767a80,6, 0x1767aa4,5, 0x1767ac4,5, 0x1767ae4,1, 0x1767aec,3, 0x1767b04,1, 0x1767b0c,3, 0x1767b44,1, 0x1767b60,11, 0x1767b90,3, 0x1767ba0,3, 0x1767c00,20, 0x1767c80,4, 0x1767ca0,5, 0x1767cc0,4, 0x1767ce0,5, 0x1767d00,21, 0x1767d60,14, 0x1767da4,1, 0x1767dac,3, 0x1767dc4,1, 0x1767dcc,3, 0x1767de4,1, 0x1767dec,3, 0x1767e00,17, 0x1768000,56, 0x1768100,13, 0x1768180,20, 0x1768200,20, 0x1768280,6, 0x17682a4,5, 0x17682c4,5, 0x17682e4,1, 0x17682ec,3, 0x1768304,1, 0x176830c,3, 0x1768344,1, 0x1768360,11, 0x1768390,3, 0x17683a0,3, 0x1768400,20, 0x1768480,4, 0x17684a0,5, 0x17684c0,4, 0x17684e0,5, 0x1768500,21, 0x1768560,14, 0x17685a4,1, 0x17685ac,3, 0x17685c4,1, 0x17685cc,3, 0x17685e4,1, 0x17685ec,3, 0x1768600,17, 0x1769000,137, 0x1769400,9, 0x1769480,20, 0x1769500,20, 0x1769580,6, 0x17695a4,5, 0x17695c4,5, 0x17695e4,1, 0x17695ec,3, 0x1769604,1, 0x176960c,3, 0x1769620,14, 0x1769660,14, 0x1769700,20, 0x1769780,4, 0x17697a0,5, 0x17697c0,25, 0x176a000,28, 0x176a080,2, 0x176a090,3, 0x176a200,27, 0x176a280,4, 0x176a2c0,25, 0x176a340,6, 0x176a360,4, 0x176a374,11, 0x176a3a4,10, 0x176a400,5, 0x1780000,2, 0x1780044,1, 0x1780060,8, 0x1780084,1, 0x17800a0,8, 0x17800c4,1, 0x17800e0,8, 0x1780104,1, 0x1780120,8, 0x1780144,1, 0x1780160,8, 0x1780184,1, 0x17801a0,8, 0x17801c4,1, 0x17801e0,8, 0x1780204,1, 0x1780220,8, 0x1780244,1, 0x1780260,8, 0x1780284,1, 0x17802a0,8, 0x17802c4,1, 0x17802e0,8, 0x1780304,1, 0x1780320,8, 0x1780344,1, 0x1780360,8, 0x1780384,1, 0x17803a0,8, 0x17803c4,1, 0x17803e0,8, 0x1780404,1, 0x1780420,8, 0x1780444,1, 0x1780460,8, 0x1780484,1, 0x17804a0,8, 0x17804c4,1, 0x17804e0,8, 0x1780504,1, 0x1780520,8, 0x1780544,1, 0x1780560,8, 0x1780584,1, 0x17805a0,8, 0x17805c4,1, 0x17805e0,8, 0x1780604,1, 0x1780620,8, 0x1780644,1, 0x1780660,8, 0x1780684,1, 0x17806a0,8, 0x17806c4,1, 0x17806e0,8, 0x1780704,1, 0x1780720,8, 0x1780744,1, 0x1780760,8, 0x1780784,1, 0x17807a0,8, 0x17807c4,1, 0x17807e0,8, 0x1780804,1, 0x1780820,8, 0x1780844,1, 0x1780860,8, 0x1780884,1, 0x17808a0,8, 0x17808c4,1, 0x17808e0,8, 0x1780904,1, 0x1780920,8, 0x1780944,1, 0x1780960,8, 0x1780984,1, 0x17809a0,8, 0x17809c4,1, 0x17809e0,8, 0x1780a04,1, 0x1780a20,8, 0x1780a44,1, 0x1780a60,8, 0x1780a84,1, 0x1780aa0,8, 0x1780ac4,1, 0x1780ae0,8, 0x1780b04,1, 0x1780b20,8, 0x1780b44,1, 0x1780b60,8, 0x1780b84,1, 0x1780ba0,8, 0x1780bc4,1, 0x1780be0,8, 0x1780c04,1, 0x1780c20,8, 0x1780c44,1, 0x1780c60,8, 0x1780c84,1, 0x1780ca0,8, 0x1780cc4,1, 0x1780ce0,8, 0x1780d04,1, 0x1780d20,8, 0x1780d44,1, 0x1780d60,8, 0x1780d84,1, 0x1780da0,8, 0x1780dc4,1, 0x1780de0,8, 0x1780e04,1, 0x1780e20,8, 0x1780e44,1, 0x1780e60,8, 0x1780e84,1, 0x1780ea0,8, 0x1780ec4,1, 0x1780ee0,8, 0x1780f04,1, 0x1780f20,8, 0x1780f44,1, 0x1780f60,8, 0x1780f84,1, 0x1780fa0,8, 0x1780fc4,1, 0x1780fe0,8, 0x1781004,1, 0x1781020,8, 0x1781044,1, 0x1781060,8, 0x1781084,1, 0x1781090,4, 0x17810a4,1, 0x17810b0,4, 0x17810c4,1, 0x17810d0,4, 0x17810e4,1, 0x17810f0,4, 0x1781104,1, 0x1781110,4, 0x1781124,1, 0x1781130,4, 0x1781144,1, 0x1781150,4, 0x1781164,1, 0x1781170,4, 0x1781184,1, 0x1781190,4, 0x17811a4,1, 0x17811b0,4, 0x17811c4,1, 0x17811d0,4, 0x17811e4,1, 0x17811f0,4, 0x1781204,1, 0x1781210,4, 0x1781224,1, 0x1781230,4, 0x1781244,1, 0x1781250,4, 0x1781264,1, 0x1781270,4, 0x1781284,1, 0x1781290,4, 0x17812a4,1, 0x17812b0,4, 0x17812c4,1, 0x17812d0,4, 0x17812e4,1, 0x17812f0,4, 0x1781304,1, 0x1781310,4, 0x1781324,1, 0x1781330,4, 0x1781344,1, 0x1781350,4, 0x1781364,1, 0x1781370,4, 0x1781384,1, 0x1781390,4, 0x17813a4,1, 0x17813b0,4, 0x17813c4,1, 0x17813d0,4, 0x17813e4,1, 0x17813f0,4, 0x1781404,1, 0x1781410,4, 0x1781424,1, 0x1781430,4, 0x1781444,1, 0x1781450,4, 0x1781464,1, 0x1781470,4, 0x1781484,1, 0x1781490,4, 0x17814a4,1, 0x17814b0,4, 0x17814c4,1, 0x17814d0,4, 0x17814e4,1, 0x17814f0,4, 0x1781504,1, 0x1781510,4, 0x1781524,1, 0x1781530,4, 0x1781544,1, 0x1781550,4, 0x1781564,1, 0x1781570,4, 0x1781584,1, 0x1781590,4, 0x17815a4,1, 0x17815b0,4, 0x17815c4,1, 0x17815d0,4, 0x17815e4,1, 0x17815f0,4, 0x1781604,1, 0x1781610,4, 0x1781624,1, 0x1781630,4, 0x1781644,1, 0x1781650,4, 0x1781664,1, 0x1781670,4, 0x1781684,1, 0x1781690,4, 0x17816a4,1, 0x17816b0,4, 0x17816c4,1, 0x17816d0,4, 0x17816e4,1, 0x17816f0,4, 0x1781704,1, 0x1781710,4, 0x1781724,1, 0x1781730,4, 0x1781744,1, 0x1781750,4, 0x1781764,1, 0x1781770,4, 0x1781784,1, 0x1781790,4, 0x17817a4,1, 0x17817b0,4, 0x17817c4,1, 0x17817d0,4, 0x17817e4,1, 0x17817f0,4, 0x1781804,1, 0x1781810,4, 0x1781824,1, 0x1781830,4, 0x1781844,1, 0x1781850,4, 0x1781864,1, 0x1781870,4, 0x1781884,1, 0x1781890,4, 0x1781900,60, 0x1781a00,3, 0x1781a20,7, 0x1781a40,7, 0x1781a60,7, 0x1781a80,7, 0x1781aa0,7, 0x1781ac0,7, 0x1781ae0,7, 0x1781b00,7, 0x1781b20,7, 0x1781b40,7, 0x1781b60,7, 0x1781b80,7, 0x1781ba0,7, 0x1781bc0,7, 0x1781be0,7, 0x1781c00,7, 0x1781c20,7, 0x1781c40,7, 0x1781c60,7, 0x1781c80,7, 0x1781ca0,7, 0x1781cc0,7, 0x1781ce0,7, 0x1781d00,7, 0x1781d20,7, 0x1781d40,7, 0x1781d60,7, 0x1781d80,7, 0x1781da0,7, 0x1781dc0,7, 0x1781de0,7, 0x1781e00,7, 0x1781e20,7, 0x1781e40,7, 0x1781e60,7, 0x1781e80,7, 0x1781ea0,7, 0x1781ec0,7, 0x1781ee0,7, 0x1781f00,7, 0x1781f20,7, 0x1781f40,7, 0x1781f60,7, 0x1781f80,7, 0x1781fa0,7, 0x1781fc0,7, 0x1781fe0,7, 0x1782000,7, 0x1782020,7, 0x1782040,7, 0x1782060,7, 0x1782080,7, 0x17820a0,7, 0x17820c0,7, 0x17820e0,7, 0x1782100,7, 0x1782120,7, 0x1782140,7, 0x1782160,7, 0x1782180,7, 0x17821a0,7, 0x17821c0,7, 0x17821e0,7, 0x1782200,7, 0x1782220,7, 0x1782240,4, 0x1782260,12, 0x17822a0,12, 0x17822e0,12, 0x1782320,12, 0x1782360,12, 0x17823a0,12, 0x17823e0,12, 0x1782420,12, 0x1782460,12, 0x17824a0,12, 0x17824e0,12, 0x1782520,12, 0x1782560,12, 0x17825a0,12, 0x17825e0,12, 0x1782620,12, 0x1782660,12, 0x17826a0,12, 0x17826e0,12, 0x1782720,12, 0x1782760,12, 0x17827a0,12, 0x17827e0,12, 0x1782820,12, 0x1782860,12, 0x17828a0,12, 0x17828e0,12, 0x1782920,12, 0x1782960,12, 0x17829a0,12, 0x17829e0,12, 0x1782a20,12, 0x1782a60,12, 0x1782aa0,12, 0x1782ae0,12, 0x1782b20,12, 0x1782b60,12, 0x1782ba0,12, 0x1782be0,12, 0x1782c20,12, 0x1782c60,12, 0x1782ca0,12, 0x1782ce0,12, 0x1782d20,12, 0x1782d60,12, 0x1782da0,12, 0x1782de0,12, 0x1782e20,12, 0x1782e60,12, 0x1782ea0,12, 0x1782ee0,12, 0x1782f20,12, 0x1782f60,12, 0x1782fa0,12, 0x1782fe0,12, 0x1783020,12, 0x1783060,12, 0x17830a0,12, 0x17830e0,12, 0x1783120,12, 0x1783160,12, 0x17831a0,12, 0x17831e0,12, 0x1783220,12, 0x1783260,15, 0x17832c0,4, 0x17832e0,9, 0x1783400,27, 0x1783480,9, 0x17834c0,6, 0x17834e0,6, 0x1783504,11, 0x1783600,4, 0x1800000,36, 0x1800100,48, 0x1800200,38, 0x1800300,7, 0x1800320,6, 0x1800340,36, 0x1800400,36, 0x1800800,36, 0x1800900,48, 0x1800a00,38, 0x1800b00,7, 0x1800b20,6, 0x1800b40,36, 0x1800c00,36, 0x1801000,1, 0x1801008,22, 0x1802000,36, 0x1802100,48, 0x1802200,38, 0x1802300,7, 0x1802320,6, 0x1802340,36, 0x1802400,36, 0x1802800,36, 0x1802900,48, 0x1802a00,38, 0x1802b00,7, 0x1802b20,6, 0x1802b40,36, 0x1802c00,36, 0x1803000,1, 0x1803008,22, 0x1804000,36, 0x1804100,48, 0x1804200,38, 0x1804300,7, 0x1804320,6, 0x1804340,36, 0x1804400,36, 0x1804800,36, 0x1804900,48, 0x1804a00,38, 0x1804b00,7, 0x1804b20,6, 0x1804b40,36, 0x1804c00,36, 0x1805000,1, 0x1805008,22, 0x1806000,36, 0x1806100,48, 0x1806200,38, 0x1806300,7, 0x1806320,6, 0x1806340,36, 0x1806400,36, 0x1806800,36, 0x1806900,48, 0x1806a00,38, 0x1806b00,7, 0x1806b20,6, 0x1806b40,36, 0x1806c00,36, 0x1807000,1, 0x1807008,22, 0x1808000,36, 0x1808100,48, 0x1808200,38, 0x1808300,7, 0x1808320,6, 0x1808340,36, 0x1808400,36, 0x1808800,36, 0x1808900,48, 0x1808a00,38, 0x1808b00,7, 0x1808b20,6, 0x1808b40,36, 0x1808c00,36, 0x1809000,1, 0x1809008,22, 0x180a000,36, 0x180a100,48, 0x180a200,38, 0x180a300,7, 0x180a320,6, 0x180a340,36, 0x180a400,36, 0x180a800,36, 0x180a900,48, 0x180aa00,38, 0x180ab00,7, 0x180ab20,6, 0x180ab40,36, 0x180ac00,36, 0x180b000,1, 0x180b008,22, 0x180c000,36, 0x180c100,48, 0x180c200,38, 0x180c300,7, 0x180c320,6, 0x180c340,36, 0x180c400,36, 0x180c800,36, 0x180c900,48, 0x180ca00,38, 0x180cb00,7, 0x180cb20,6, 0x180cb40,36, 0x180cc00,36, 0x180d000,1, 0x180d008,22, 0x180e000,36, 0x180e100,48, 0x180e200,38, 0x180e300,7, 0x180e320,6, 0x180e340,36, 0x180e400,36, 0x180e800,36, 0x180e900,48, 0x180ea00,38, 0x180eb00,7, 0x180eb20,6, 0x180eb40,36, 0x180ec00,36, 0x180f000,1, 0x180f008,22, 0x1810000,36, 0x1810100,48, 0x1810200,38, 0x1810300,7, 0x1810320,6, 0x1810340,36, 0x1810400,36, 0x1810800,36, 0x1810900,48, 0x1810a00,38, 0x1810b00,7, 0x1810b20,6, 0x1810b40,36, 0x1810c00,36, 0x1811000,1, 0x1811008,22, 0x1812000,36, 0x1812100,48, 0x1812200,38, 0x1812300,7, 0x1812320,6, 0x1812340,36, 0x1812400,36, 0x1812800,36, 0x1812900,48, 0x1812a00,38, 0x1812b00,7, 0x1812b20,6, 0x1812b40,36, 0x1812c00,36, 0x1813000,1, 0x1813008,22, 0x1814000,36, 0x1814100,48, 0x1814200,38, 0x1814300,7, 0x1814320,6, 0x1814340,36, 0x1814400,36, 0x1814800,36, 0x1814900,48, 0x1814a00,38, 0x1814b00,7, 0x1814b20,6, 0x1814b40,36, 0x1814c00,36, 0x1815000,1, 0x1815008,22, 0x1816000,36, 0x1816100,48, 0x1816200,38, 0x1816300,7, 0x1816320,6, 0x1816340,36, 0x1816400,36, 0x1816800,36, 0x1816900,48, 0x1816a00,38, 0x1816b00,7, 0x1816b20,6, 0x1816b40,36, 0x1816c00,36, 0x1817000,1, 0x1817008,22, 0x1818000,36, 0x1818100,48, 0x1818200,38, 0x1818300,7, 0x1818320,6, 0x1818340,36, 0x1818400,36, 0x1818800,36, 0x1818900,48, 0x1818a00,38, 0x1818b00,7, 0x1818b20,6, 0x1818b40,36, 0x1818c00,36, 0x1819000,1, 0x1819008,22, 0x181a000,36, 0x181a100,48, 0x181a200,38, 0x181a300,7, 0x181a320,6, 0x181a340,36, 0x181a400,36, 0x181a800,36, 0x181a900,48, 0x181aa00,38, 0x181ab00,7, 0x181ab20,6, 0x181ab40,36, 0x181ac00,36, 0x181b000,1, 0x181b008,22, 0x181c000,36, 0x181c100,48, 0x181c200,38, 0x181c300,7, 0x181c320,6, 0x181c340,36, 0x181c400,36, 0x181c800,36, 0x181c900,48, 0x181ca00,38, 0x181cb00,7, 0x181cb20,6, 0x181cb40,36, 0x181cc00,36, 0x181d000,1, 0x181d008,22, 0x181e000,36, 0x181e100,48, 0x181e200,38, 0x181e300,7, 0x181e320,6, 0x181e340,36, 0x181e400,36, 0x181e800,36, 0x181e900,48, 0x181ea00,38, 0x181eb00,7, 0x181eb20,6, 0x181eb40,36, 0x181ec00,36, 0x181f000,1, 0x181f008,22, 0x1820000,36, 0x1820100,48, 0x1820200,38, 0x1820300,7, 0x1820320,6, 0x1820340,36, 0x1820400,36, 0x1820800,36, 0x1820900,48, 0x1820a00,38, 0x1820b00,7, 0x1820b20,6, 0x1820b40,36, 0x1820c00,36, 0x1821000,1, 0x1821008,22, 0x1822000,36, 0x1822100,48, 0x1822200,38, 0x1822300,7, 0x1822320,6, 0x1822340,36, 0x1822400,36, 0x1822800,36, 0x1822900,48, 0x1822a00,38, 0x1822b00,7, 0x1822b20,6, 0x1822b40,36, 0x1822c00,36, 0x1823000,1, 0x1823008,22, 0x1824000,3, 0x1824044,1, 0x1824058,14, 0x1824100,15, 0x1824140,9, 0x1824180,6, 0x18241a0,6, 0x18241c4,10, 0x1824200,13, 0x1824300,36, 0x1824400,10, 0x1824430,3, 0x1824440,12, 0x1840000,36, 0x1840100,48, 0x1840200,38, 0x1840300,7, 0x1840320,6, 0x1840340,36, 0x1840400,36, 0x1840800,36, 0x1840900,48, 0x1840a00,38, 0x1840b00,7, 0x1840b20,6, 0x1840b40,36, 0x1840c00,36, 0x1841000,1, 0x1841008,22, 0x1842000,36, 0x1842100,48, 0x1842200,38, 0x1842300,7, 0x1842320,6, 0x1842340,36, 0x1842400,36, 0x1842800,36, 0x1842900,48, 0x1842a00,38, 0x1842b00,7, 0x1842b20,6, 0x1842b40,36, 0x1842c00,36, 0x1843000,1, 0x1843008,22, 0x1844000,36, 0x1844100,48, 0x1844200,38, 0x1844300,7, 0x1844320,6, 0x1844340,36, 0x1844400,36, 0x1844800,36, 0x1844900,48, 0x1844a00,38, 0x1844b00,7, 0x1844b20,6, 0x1844b40,36, 0x1844c00,36, 0x1845000,1, 0x1845008,22, 0x1846000,36, 0x1846100,48, 0x1846200,38, 0x1846300,7, 0x1846320,6, 0x1846340,36, 0x1846400,36, 0x1846800,36, 0x1846900,48, 0x1846a00,38, 0x1846b00,7, 0x1846b20,6, 0x1846b40,36, 0x1846c00,36, 0x1847000,1, 0x1847008,22, 0x1848000,36, 0x1848100,48, 0x1848200,38, 0x1848300,7, 0x1848320,6, 0x1848340,36, 0x1848400,36, 0x1848800,36, 0x1848900,48, 0x1848a00,38, 0x1848b00,7, 0x1848b20,6, 0x1848b40,36, 0x1848c00,36, 0x1849000,1, 0x1849008,22, 0x184a000,36, 0x184a100,48, 0x184a200,38, 0x184a300,7, 0x184a320,6, 0x184a340,36, 0x184a400,36, 0x184a800,36, 0x184a900,48, 0x184aa00,38, 0x184ab00,7, 0x184ab20,6, 0x184ab40,36, 0x184ac00,36, 0x184b000,1, 0x184b008,22, 0x184c000,36, 0x184c100,48, 0x184c200,38, 0x184c300,7, 0x184c320,6, 0x184c340,36, 0x184c400,36, 0x184c800,36, 0x184c900,48, 0x184ca00,38, 0x184cb00,7, 0x184cb20,6, 0x184cb40,36, 0x184cc00,36, 0x184d000,1, 0x184d008,22, 0x184e000,36, 0x184e100,48, 0x184e200,38, 0x184e300,7, 0x184e320,6, 0x184e340,36, 0x184e400,36, 0x184e800,36, 0x184e900,48, 0x184ea00,38, 0x184eb00,7, 0x184eb20,6, 0x184eb40,36, 0x184ec00,36, 0x184f000,1, 0x184f008,22, 0x1850000,36, 0x1850100,48, 0x1850200,38, 0x1850300,7, 0x1850320,6, 0x1850340,36, 0x1850400,36, 0x1850800,36, 0x1850900,48, 0x1850a00,38, 0x1850b00,7, 0x1850b20,6, 0x1850b40,36, 0x1850c00,36, 0x1851000,1, 0x1851008,22, 0x1852000,36, 0x1852100,48, 0x1852200,38, 0x1852300,7, 0x1852320,6, 0x1852340,36, 0x1852400,36, 0x1852800,36, 0x1852900,48, 0x1852a00,38, 0x1852b00,7, 0x1852b20,6, 0x1852b40,36, 0x1852c00,36, 0x1853000,1, 0x1853008,22, 0x1854000,36, 0x1854100,48, 0x1854200,38, 0x1854300,7, 0x1854320,6, 0x1854340,36, 0x1854400,36, 0x1854800,36, 0x1854900,48, 0x1854a00,38, 0x1854b00,7, 0x1854b20,6, 0x1854b40,36, 0x1854c00,36, 0x1855000,1, 0x1855008,22, 0x1856000,36, 0x1856100,48, 0x1856200,38, 0x1856300,7, 0x1856320,6, 0x1856340,36, 0x1856400,36, 0x1856800,36, 0x1856900,48, 0x1856a00,38, 0x1856b00,7, 0x1856b20,6, 0x1856b40,36, 0x1856c00,36, 0x1857000,1, 0x1857008,22, 0x1858000,36, 0x1858100,48, 0x1858200,38, 0x1858300,7, 0x1858320,6, 0x1858340,36, 0x1858400,36, 0x1858800,36, 0x1858900,48, 0x1858a00,38, 0x1858b00,7, 0x1858b20,6, 0x1858b40,36, 0x1858c00,36, 0x1859000,1, 0x1859008,22, 0x185a000,36, 0x185a100,48, 0x185a200,38, 0x185a300,7, 0x185a320,6, 0x185a340,36, 0x185a400,36, 0x185a800,36, 0x185a900,48, 0x185aa00,38, 0x185ab00,7, 0x185ab20,6, 0x185ab40,36, 0x185ac00,36, 0x185b000,1, 0x185b008,22, 0x185c000,36, 0x185c100,48, 0x185c200,38, 0x185c300,7, 0x185c320,6, 0x185c340,36, 0x185c400,36, 0x185c800,36, 0x185c900,48, 0x185ca00,38, 0x185cb00,7, 0x185cb20,6, 0x185cb40,36, 0x185cc00,36, 0x185d000,1, 0x185d008,22, 0x185e000,36, 0x185e100,48, 0x185e200,38, 0x185e300,7, 0x185e320,6, 0x185e340,36, 0x185e400,36, 0x185e800,36, 0x185e900,48, 0x185ea00,38, 0x185eb00,7, 0x185eb20,6, 0x185eb40,36, 0x185ec00,36, 0x185f000,1, 0x185f008,22, 0x1860000,36, 0x1860100,48, 0x1860200,38, 0x1860300,7, 0x1860320,6, 0x1860340,36, 0x1860400,36, 0x1860800,36, 0x1860900,48, 0x1860a00,38, 0x1860b00,7, 0x1860b20,6, 0x1860b40,36, 0x1860c00,36, 0x1861000,1, 0x1861008,22, 0x1862000,36, 0x1862100,48, 0x1862200,38, 0x1862300,7, 0x1862320,6, 0x1862340,36, 0x1862400,36, 0x1862800,36, 0x1862900,48, 0x1862a00,38, 0x1862b00,7, 0x1862b20,6, 0x1862b40,36, 0x1862c00,36, 0x1863000,1, 0x1863008,22, 0x1864000,3, 0x1864044,1, 0x1864058,14, 0x1864100,15, 0x1864140,9, 0x1864180,6, 0x18641a0,6, 0x18641c4,10, 0x1864200,13, 0x1864300,36, 0x1864400,10, 0x1864430,3, 0x1864440,12, 0x1880000,36, 0x1880100,48, 0x1880200,38, 0x1880300,7, 0x1880320,6, 0x1880340,36, 0x1880400,36, 0x1880800,36, 0x1880900,48, 0x1880a00,38, 0x1880b00,7, 0x1880b20,6, 0x1880b40,36, 0x1880c00,36, 0x1881000,1, 0x1881008,22, 0x1882000,36, 0x1882100,48, 0x1882200,38, 0x1882300,7, 0x1882320,6, 0x1882340,36, 0x1882400,36, 0x1882800,36, 0x1882900,48, 0x1882a00,38, 0x1882b00,7, 0x1882b20,6, 0x1882b40,36, 0x1882c00,36, 0x1883000,1, 0x1883008,22, 0x1884000,36, 0x1884100,48, 0x1884200,38, 0x1884300,7, 0x1884320,6, 0x1884340,36, 0x1884400,36, 0x1884800,36, 0x1884900,48, 0x1884a00,38, 0x1884b00,7, 0x1884b20,6, 0x1884b40,36, 0x1884c00,36, 0x1885000,1, 0x1885008,22, 0x1886000,36, 0x1886100,48, 0x1886200,38, 0x1886300,7, 0x1886320,6, 0x1886340,36, 0x1886400,36, 0x1886800,36, 0x1886900,48, 0x1886a00,38, 0x1886b00,7, 0x1886b20,6, 0x1886b40,36, 0x1886c00,36, 0x1887000,1, 0x1887008,22, 0x1888000,36, 0x1888100,48, 0x1888200,38, 0x1888300,7, 0x1888320,6, 0x1888340,36, 0x1888400,36, 0x1888800,36, 0x1888900,48, 0x1888a00,38, 0x1888b00,7, 0x1888b20,6, 0x1888b40,36, 0x1888c00,36, 0x1889000,1, 0x1889008,22, 0x188a000,36, 0x188a100,48, 0x188a200,38, 0x188a300,7, 0x188a320,6, 0x188a340,36, 0x188a400,36, 0x188a800,36, 0x188a900,48, 0x188aa00,38, 0x188ab00,7, 0x188ab20,6, 0x188ab40,36, 0x188ac00,36, 0x188b000,1, 0x188b008,22, 0x188c000,36, 0x188c100,48, 0x188c200,38, 0x188c300,7, 0x188c320,6, 0x188c340,36, 0x188c400,36, 0x188c800,36, 0x188c900,48, 0x188ca00,38, 0x188cb00,7, 0x188cb20,6, 0x188cb40,36, 0x188cc00,36, 0x188d000,1, 0x188d008,22, 0x188e000,36, 0x188e100,48, 0x188e200,38, 0x188e300,7, 0x188e320,6, 0x188e340,36, 0x188e400,36, 0x188e800,36, 0x188e900,48, 0x188ea00,38, 0x188eb00,7, 0x188eb20,6, 0x188eb40,36, 0x188ec00,36, 0x188f000,1, 0x188f008,22, 0x1890000,36, 0x1890100,48, 0x1890200,38, 0x1890300,7, 0x1890320,6, 0x1890340,36, 0x1890400,36, 0x1890800,36, 0x1890900,48, 0x1890a00,38, 0x1890b00,7, 0x1890b20,6, 0x1890b40,36, 0x1890c00,36, 0x1891000,1, 0x1891008,22, 0x1892000,36, 0x1892100,48, 0x1892200,38, 0x1892300,7, 0x1892320,6, 0x1892340,36, 0x1892400,36, 0x1892800,36, 0x1892900,48, 0x1892a00,38, 0x1892b00,7, 0x1892b20,6, 0x1892b40,36, 0x1892c00,36, 0x1893000,1, 0x1893008,22, 0x1894000,36, 0x1894100,48, 0x1894200,38, 0x1894300,7, 0x1894320,6, 0x1894340,36, 0x1894400,36, 0x1894800,36, 0x1894900,48, 0x1894a00,38, 0x1894b00,7, 0x1894b20,6, 0x1894b40,36, 0x1894c00,36, 0x1895000,1, 0x1895008,22, 0x1896000,36, 0x1896100,48, 0x1896200,38, 0x1896300,7, 0x1896320,6, 0x1896340,36, 0x1896400,36, 0x1896800,36, 0x1896900,48, 0x1896a00,38, 0x1896b00,7, 0x1896b20,6, 0x1896b40,36, 0x1896c00,36, 0x1897000,1, 0x1897008,22, 0x1898000,36, 0x1898100,48, 0x1898200,38, 0x1898300,7, 0x1898320,6, 0x1898340,36, 0x1898400,36, 0x1898800,36, 0x1898900,48, 0x1898a00,38, 0x1898b00,7, 0x1898b20,6, 0x1898b40,36, 0x1898c00,36, 0x1899000,1, 0x1899008,22, 0x189a000,36, 0x189a100,48, 0x189a200,38, 0x189a300,7, 0x189a320,6, 0x189a340,36, 0x189a400,36, 0x189a800,36, 0x189a900,48, 0x189aa00,38, 0x189ab00,7, 0x189ab20,6, 0x189ab40,36, 0x189ac00,36, 0x189b000,1, 0x189b008,22, 0x189c000,36, 0x189c100,48, 0x189c200,38, 0x189c300,7, 0x189c320,6, 0x189c340,36, 0x189c400,36, 0x189c800,36, 0x189c900,48, 0x189ca00,38, 0x189cb00,7, 0x189cb20,6, 0x189cb40,36, 0x189cc00,36, 0x189d000,1, 0x189d008,22, 0x189e000,36, 0x189e100,48, 0x189e200,38, 0x189e300,7, 0x189e320,6, 0x189e340,36, 0x189e400,36, 0x189e800,36, 0x189e900,48, 0x189ea00,38, 0x189eb00,7, 0x189eb20,6, 0x189eb40,36, 0x189ec00,36, 0x189f000,1, 0x189f008,22, 0x18a0000,36, 0x18a0100,48, 0x18a0200,38, 0x18a0300,7, 0x18a0320,6, 0x18a0340,36, 0x18a0400,36, 0x18a0800,36, 0x18a0900,48, 0x18a0a00,38, 0x18a0b00,7, 0x18a0b20,6, 0x18a0b40,36, 0x18a0c00,36, 0x18a1000,1, 0x18a1008,22, 0x18a2000,36, 0x18a2100,48, 0x18a2200,38, 0x18a2300,7, 0x18a2320,6, 0x18a2340,36, 0x18a2400,36, 0x18a2800,36, 0x18a2900,48, 0x18a2a00,38, 0x18a2b00,7, 0x18a2b20,6, 0x18a2b40,36, 0x18a2c00,36, 0x18a3000,1, 0x18a3008,22, 0x18a4000,3, 0x18a4044,1, 0x18a4058,14, 0x18a4100,15, 0x18a4140,9, 0x18a4180,6, 0x18a41a0,6, 0x18a41c4,10, 0x18a4200,13, 0x18a4300,36, 0x18a4400,10, 0x18a4430,3, 0x18a4440,12, 0x18c0000,36, 0x18c0100,48, 0x18c0200,38, 0x18c0300,7, 0x18c0320,6, 0x18c0340,36, 0x18c0400,36, 0x18c0800,36, 0x18c0900,48, 0x18c0a00,38, 0x18c0b00,7, 0x18c0b20,6, 0x18c0b40,36, 0x18c0c00,36, 0x18c1000,1, 0x18c1008,22, 0x18c2000,36, 0x18c2100,48, 0x18c2200,38, 0x18c2300,7, 0x18c2320,6, 0x18c2340,36, 0x18c2400,36, 0x18c2800,36, 0x18c2900,48, 0x18c2a00,38, 0x18c2b00,7, 0x18c2b20,6, 0x18c2b40,36, 0x18c2c00,36, 0x18c3000,1, 0x18c3008,22, 0x18c4000,36, 0x18c4100,48, 0x18c4200,38, 0x18c4300,7, 0x18c4320,6, 0x18c4340,36, 0x18c4400,36, 0x18c4800,36, 0x18c4900,48, 0x18c4a00,38, 0x18c4b00,7, 0x18c4b20,6, 0x18c4b40,36, 0x18c4c00,36, 0x18c5000,1, 0x18c5008,22, 0x18c6000,36, 0x18c6100,48, 0x18c6200,38, 0x18c6300,7, 0x18c6320,6, 0x18c6340,36, 0x18c6400,36, 0x18c6800,36, 0x18c6900,48, 0x18c6a00,38, 0x18c6b00,7, 0x18c6b20,6, 0x18c6b40,36, 0x18c6c00,36, 0x18c7000,1, 0x18c7008,22, 0x18c8000,36, 0x18c8100,48, 0x18c8200,38, 0x18c8300,7, 0x18c8320,6, 0x18c8340,36, 0x18c8400,36, 0x18c8800,36, 0x18c8900,48, 0x18c8a00,38, 0x18c8b00,7, 0x18c8b20,6, 0x18c8b40,36, 0x18c8c00,36, 0x18c9000,1, 0x18c9008,22, 0x18ca000,36, 0x18ca100,48, 0x18ca200,38, 0x18ca300,7, 0x18ca320,6, 0x18ca340,36, 0x18ca400,36, 0x18ca800,36, 0x18ca900,48, 0x18caa00,38, 0x18cab00,7, 0x18cab20,6, 0x18cab40,36, 0x18cac00,36, 0x18cb000,1, 0x18cb008,22, 0x18cc000,36, 0x18cc100,48, 0x18cc200,38, 0x18cc300,7, 0x18cc320,6, 0x18cc340,36, 0x18cc400,36, 0x18cc800,36, 0x18cc900,48, 0x18cca00,38, 0x18ccb00,7, 0x18ccb20,6, 0x18ccb40,36, 0x18ccc00,36, 0x18cd000,1, 0x18cd008,22, 0x18ce000,36, 0x18ce100,48, 0x18ce200,38, 0x18ce300,7, 0x18ce320,6, 0x18ce340,36, 0x18ce400,36, 0x18ce800,36, 0x18ce900,48, 0x18cea00,38, 0x18ceb00,7, 0x18ceb20,6, 0x18ceb40,36, 0x18cec00,36, 0x18cf000,1, 0x18cf008,22, 0x18d0000,36, 0x18d0100,48, 0x18d0200,38, 0x18d0300,7, 0x18d0320,6, 0x18d0340,36, 0x18d0400,36, 0x18d0800,36, 0x18d0900,48, 0x18d0a00,38, 0x18d0b00,7, 0x18d0b20,6, 0x18d0b40,36, 0x18d0c00,36, 0x18d1000,1, 0x18d1008,22, 0x18d2000,36, 0x18d2100,48, 0x18d2200,38, 0x18d2300,7, 0x18d2320,6, 0x18d2340,36, 0x18d2400,36, 0x18d2800,36, 0x18d2900,48, 0x18d2a00,38, 0x18d2b00,7, 0x18d2b20,6, 0x18d2b40,36, 0x18d2c00,36, 0x18d3000,1, 0x18d3008,22, 0x18d4000,36, 0x18d4100,48, 0x18d4200,38, 0x18d4300,7, 0x18d4320,6, 0x18d4340,36, 0x18d4400,36, 0x18d4800,36, 0x18d4900,48, 0x18d4a00,38, 0x18d4b00,7, 0x18d4b20,6, 0x18d4b40,36, 0x18d4c00,36, 0x18d5000,1, 0x18d5008,22, 0x18d6000,36, 0x18d6100,48, 0x18d6200,38, 0x18d6300,7, 0x18d6320,6, 0x18d6340,36, 0x18d6400,36, 0x18d6800,36, 0x18d6900,48, 0x18d6a00,38, 0x18d6b00,7, 0x18d6b20,6, 0x18d6b40,36, 0x18d6c00,36, 0x18d7000,1, 0x18d7008,22, 0x18d8000,36, 0x18d8100,48, 0x18d8200,38, 0x18d8300,7, 0x18d8320,6, 0x18d8340,36, 0x18d8400,36, 0x18d8800,36, 0x18d8900,48, 0x18d8a00,38, 0x18d8b00,7, 0x18d8b20,6, 0x18d8b40,36, 0x18d8c00,36, 0x18d9000,1, 0x18d9008,22, 0x18da000,36, 0x18da100,48, 0x18da200,38, 0x18da300,7, 0x18da320,6, 0x18da340,36, 0x18da400,36, 0x18da800,36, 0x18da900,48, 0x18daa00,38, 0x18dab00,7, 0x18dab20,6, 0x18dab40,36, 0x18dac00,36, 0x18db000,1, 0x18db008,22, 0x18dc000,36, 0x18dc100,48, 0x18dc200,38, 0x18dc300,7, 0x18dc320,6, 0x18dc340,36, 0x18dc400,36, 0x18dc800,36, 0x18dc900,48, 0x18dca00,38, 0x18dcb00,7, 0x18dcb20,6, 0x18dcb40,36, 0x18dcc00,36, 0x18dd000,1, 0x18dd008,22, 0x18de000,36, 0x18de100,48, 0x18de200,38, 0x18de300,7, 0x18de320,6, 0x18de340,36, 0x18de400,36, 0x18de800,36, 0x18de900,48, 0x18dea00,38, 0x18deb00,7, 0x18deb20,6, 0x18deb40,36, 0x18dec00,36, 0x18df000,1, 0x18df008,22, 0x18e0000,36, 0x18e0100,48, 0x18e0200,38, 0x18e0300,7, 0x18e0320,6, 0x18e0340,36, 0x18e0400,36, 0x18e0800,36, 0x18e0900,48, 0x18e0a00,38, 0x18e0b00,7, 0x18e0b20,6, 0x18e0b40,36, 0x18e0c00,36, 0x18e1000,1, 0x18e1008,22, 0x18e2000,36, 0x18e2100,48, 0x18e2200,38, 0x18e2300,7, 0x18e2320,6, 0x18e2340,36, 0x18e2400,36, 0x18e2800,36, 0x18e2900,48, 0x18e2a00,38, 0x18e2b00,7, 0x18e2b20,6, 0x18e2b40,36, 0x18e2c00,36, 0x18e3000,1, 0x18e3008,22, 0x18e4000,3, 0x18e4044,1, 0x18e4058,14, 0x18e4100,15, 0x18e4140,9, 0x18e4180,6, 0x18e41a0,6, 0x18e41c4,10, 0x18e4200,13, 0x18e4300,36, 0x18e4400,10, 0x18e4430,3, 0x18e4440,12, 0x1900000,56, 0x1900100,13, 0x1900180,20, 0x1900200,20, 0x1900280,6, 0x19002a4,5, 0x19002c4,5, 0x19002e4,1, 0x19002ec,3, 0x1900304,1, 0x190030c,3, 0x1900344,1, 0x1900360,11, 0x1900390,3, 0x19003a0,3, 0x1900400,20, 0x1900480,4, 0x19004a0,5, 0x19004c0,4, 0x19004e0,5, 0x1900500,21, 0x1900560,14, 0x19005a4,1, 0x19005ac,3, 0x19005c4,1, 0x19005cc,3, 0x19005e4,1, 0x19005ec,3, 0x1900600,17, 0x1900800,56, 0x1900900,13, 0x1900980,20, 0x1900a00,20, 0x1900a80,6, 0x1900aa4,5, 0x1900ac4,5, 0x1900ae4,1, 0x1900aec,3, 0x1900b04,1, 0x1900b0c,3, 0x1900b44,1, 0x1900b60,11, 0x1900b90,3, 0x1900ba0,3, 0x1900c00,20, 0x1900c80,4, 0x1900ca0,5, 0x1900cc0,4, 0x1900ce0,5, 0x1900d00,21, 0x1900d60,14, 0x1900da4,1, 0x1900dac,3, 0x1900dc4,1, 0x1900dcc,3, 0x1900de4,1, 0x1900dec,3, 0x1900e00,17, 0x1901000,56, 0x1901100,13, 0x1901180,20, 0x1901200,20, 0x1901280,6, 0x19012a4,5, 0x19012c4,5, 0x19012e4,1, 0x19012ec,3, 0x1901304,1, 0x190130c,3, 0x1901344,1, 0x1901360,11, 0x1901390,3, 0x19013a0,3, 0x1901400,20, 0x1901480,4, 0x19014a0,5, 0x19014c0,4, 0x19014e0,5, 0x1901500,21, 0x1901560,14, 0x19015a4,1, 0x19015ac,3, 0x19015c4,1, 0x19015cc,3, 0x19015e4,1, 0x19015ec,3, 0x1901600,17, 0x1901800,56, 0x1901900,13, 0x1901980,20, 0x1901a00,20, 0x1901a80,6, 0x1901aa4,5, 0x1901ac4,5, 0x1901ae4,1, 0x1901aec,3, 0x1901b04,1, 0x1901b0c,3, 0x1901b44,1, 0x1901b60,11, 0x1901b90,3, 0x1901ba0,3, 0x1901c00,20, 0x1901c80,4, 0x1901ca0,5, 0x1901cc0,4, 0x1901ce0,5, 0x1901d00,21, 0x1901d60,14, 0x1901da4,1, 0x1901dac,3, 0x1901dc4,1, 0x1901dcc,3, 0x1901de4,1, 0x1901dec,3, 0x1901e00,17, 0x1902000,56, 0x1902100,13, 0x1902180,20, 0x1902200,20, 0x1902280,6, 0x19022a4,5, 0x19022c4,5, 0x19022e4,1, 0x19022ec,3, 0x1902304,1, 0x190230c,3, 0x1902344,1, 0x1902360,11, 0x1902390,3, 0x19023a0,3, 0x1902400,20, 0x1902480,4, 0x19024a0,5, 0x19024c0,4, 0x19024e0,5, 0x1902500,21, 0x1902560,14, 0x19025a4,1, 0x19025ac,3, 0x19025c4,1, 0x19025cc,3, 0x19025e4,1, 0x19025ec,3, 0x1902600,17, 0x1902800,56, 0x1902900,13, 0x1902980,20, 0x1902a00,20, 0x1902a80,6, 0x1902aa4,5, 0x1902ac4,5, 0x1902ae4,1, 0x1902aec,3, 0x1902b04,1, 0x1902b0c,3, 0x1902b44,1, 0x1902b60,11, 0x1902b90,3, 0x1902ba0,3, 0x1902c00,20, 0x1902c80,4, 0x1902ca0,5, 0x1902cc0,4, 0x1902ce0,5, 0x1902d00,21, 0x1902d60,14, 0x1902da4,1, 0x1902dac,3, 0x1902dc4,1, 0x1902dcc,3, 0x1902de4,1, 0x1902dec,3, 0x1902e00,17, 0x1903000,56, 0x1903100,13, 0x1903180,20, 0x1903200,20, 0x1903280,6, 0x19032a4,5, 0x19032c4,5, 0x19032e4,1, 0x19032ec,3, 0x1903304,1, 0x190330c,3, 0x1903344,1, 0x1903360,11, 0x1903390,3, 0x19033a0,3, 0x1903400,20, 0x1903480,4, 0x19034a0,5, 0x19034c0,4, 0x19034e0,5, 0x1903500,21, 0x1903560,14, 0x19035a4,1, 0x19035ac,3, 0x19035c4,1, 0x19035cc,3, 0x19035e4,1, 0x19035ec,3, 0x1903600,17, 0x1903800,56, 0x1903900,13, 0x1903980,20, 0x1903a00,20, 0x1903a80,6, 0x1903aa4,5, 0x1903ac4,5, 0x1903ae4,1, 0x1903aec,3, 0x1903b04,1, 0x1903b0c,3, 0x1903b44,1, 0x1903b60,11, 0x1903b90,3, 0x1903ba0,3, 0x1903c00,20, 0x1903c80,4, 0x1903ca0,5, 0x1903cc0,4, 0x1903ce0,5, 0x1903d00,21, 0x1903d60,14, 0x1903da4,1, 0x1903dac,3, 0x1903dc4,1, 0x1903dcc,3, 0x1903de4,1, 0x1903dec,3, 0x1903e00,17, 0x1904000,56, 0x1904100,13, 0x1904180,20, 0x1904200,20, 0x1904280,6, 0x19042a4,5, 0x19042c4,5, 0x19042e4,1, 0x19042ec,3, 0x1904304,1, 0x190430c,3, 0x1904344,1, 0x1904360,11, 0x1904390,3, 0x19043a0,3, 0x1904400,20, 0x1904480,4, 0x19044a0,5, 0x19044c0,4, 0x19044e0,5, 0x1904500,21, 0x1904560,14, 0x19045a4,1, 0x19045ac,3, 0x19045c4,1, 0x19045cc,3, 0x19045e4,1, 0x19045ec,3, 0x1904600,17, 0x1904800,56, 0x1904900,13, 0x1904980,20, 0x1904a00,20, 0x1904a80,6, 0x1904aa4,5, 0x1904ac4,5, 0x1904ae4,1, 0x1904aec,3, 0x1904b04,1, 0x1904b0c,3, 0x1904b44,1, 0x1904b60,11, 0x1904b90,3, 0x1904ba0,3, 0x1904c00,20, 0x1904c80,4, 0x1904ca0,5, 0x1904cc0,4, 0x1904ce0,5, 0x1904d00,21, 0x1904d60,14, 0x1904da4,1, 0x1904dac,3, 0x1904dc4,1, 0x1904dcc,3, 0x1904de4,1, 0x1904dec,3, 0x1904e00,17, 0x1905000,56, 0x1905100,13, 0x1905180,20, 0x1905200,20, 0x1905280,6, 0x19052a4,5, 0x19052c4,5, 0x19052e4,1, 0x19052ec,3, 0x1905304,1, 0x190530c,3, 0x1905344,1, 0x1905360,11, 0x1905390,3, 0x19053a0,3, 0x1905400,20, 0x1905480,4, 0x19054a0,5, 0x19054c0,4, 0x19054e0,5, 0x1905500,21, 0x1905560,14, 0x19055a4,1, 0x19055ac,3, 0x19055c4,1, 0x19055cc,3, 0x19055e4,1, 0x19055ec,3, 0x1905600,17, 0x1905800,56, 0x1905900,13, 0x1905980,20, 0x1905a00,20, 0x1905a80,6, 0x1905aa4,5, 0x1905ac4,5, 0x1905ae4,1, 0x1905aec,3, 0x1905b04,1, 0x1905b0c,3, 0x1905b44,1, 0x1905b60,11, 0x1905b90,3, 0x1905ba0,3, 0x1905c00,20, 0x1905c80,4, 0x1905ca0,5, 0x1905cc0,4, 0x1905ce0,5, 0x1905d00,21, 0x1905d60,14, 0x1905da4,1, 0x1905dac,3, 0x1905dc4,1, 0x1905dcc,3, 0x1905de4,1, 0x1905dec,3, 0x1905e00,17, 0x1906000,56, 0x1906100,13, 0x1906180,20, 0x1906200,20, 0x1906280,6, 0x19062a4,5, 0x19062c4,5, 0x19062e4,1, 0x19062ec,3, 0x1906304,1, 0x190630c,3, 0x1906344,1, 0x1906360,11, 0x1906390,3, 0x19063a0,3, 0x1906400,20, 0x1906480,4, 0x19064a0,5, 0x19064c0,4, 0x19064e0,5, 0x1906500,21, 0x1906560,14, 0x19065a4,1, 0x19065ac,3, 0x19065c4,1, 0x19065cc,3, 0x19065e4,1, 0x19065ec,3, 0x1906600,17, 0x1906800,56, 0x1906900,13, 0x1906980,20, 0x1906a00,20, 0x1906a80,6, 0x1906aa4,5, 0x1906ac4,5, 0x1906ae4,1, 0x1906aec,3, 0x1906b04,1, 0x1906b0c,3, 0x1906b44,1, 0x1906b60,11, 0x1906b90,3, 0x1906ba0,3, 0x1906c00,20, 0x1906c80,4, 0x1906ca0,5, 0x1906cc0,4, 0x1906ce0,5, 0x1906d00,21, 0x1906d60,14, 0x1906da4,1, 0x1906dac,3, 0x1906dc4,1, 0x1906dcc,3, 0x1906de4,1, 0x1906dec,3, 0x1906e00,17, 0x1907000,56, 0x1907100,13, 0x1907180,20, 0x1907200,20, 0x1907280,6, 0x19072a4,5, 0x19072c4,5, 0x19072e4,1, 0x19072ec,3, 0x1907304,1, 0x190730c,3, 0x1907344,1, 0x1907360,11, 0x1907390,3, 0x19073a0,3, 0x1907400,20, 0x1907480,4, 0x19074a0,5, 0x19074c0,4, 0x19074e0,5, 0x1907500,21, 0x1907560,14, 0x19075a4,1, 0x19075ac,3, 0x19075c4,1, 0x19075cc,3, 0x19075e4,1, 0x19075ec,3, 0x1907600,17, 0x1907800,56, 0x1907900,13, 0x1907980,20, 0x1907a00,20, 0x1907a80,6, 0x1907aa4,5, 0x1907ac4,5, 0x1907ae4,1, 0x1907aec,3, 0x1907b04,1, 0x1907b0c,3, 0x1907b44,1, 0x1907b60,11, 0x1907b90,3, 0x1907ba0,3, 0x1907c00,20, 0x1907c80,4, 0x1907ca0,5, 0x1907cc0,4, 0x1907ce0,5, 0x1907d00,21, 0x1907d60,14, 0x1907da4,1, 0x1907dac,3, 0x1907dc4,1, 0x1907dcc,3, 0x1907de4,1, 0x1907dec,3, 0x1907e00,17, 0x1908000,56, 0x1908100,13, 0x1908180,20, 0x1908200,20, 0x1908280,6, 0x19082a4,5, 0x19082c4,5, 0x19082e4,1, 0x19082ec,3, 0x1908304,1, 0x190830c,3, 0x1908344,1, 0x1908360,11, 0x1908390,3, 0x19083a0,3, 0x1908400,20, 0x1908480,4, 0x19084a0,5, 0x19084c0,4, 0x19084e0,5, 0x1908500,21, 0x1908560,14, 0x19085a4,1, 0x19085ac,3, 0x19085c4,1, 0x19085cc,3, 0x19085e4,1, 0x19085ec,3, 0x1908600,17, 0x1909000,137, 0x1909400,9, 0x1909480,20, 0x1909500,20, 0x1909580,6, 0x19095a4,5, 0x19095c4,5, 0x19095e4,1, 0x19095ec,3, 0x1909604,1, 0x190960c,3, 0x1909620,14, 0x1909660,14, 0x1909700,20, 0x1909780,4, 0x19097a0,5, 0x19097c0,25, 0x190a000,28, 0x190a080,2, 0x190a090,3, 0x190a200,27, 0x190a280,4, 0x190a2c0,25, 0x190a340,6, 0x190a360,4, 0x190a374,11, 0x190a3a4,10, 0x190a400,5, 0x1920000,56, 0x1920100,13, 0x1920180,20, 0x1920200,20, 0x1920280,6, 0x19202a4,5, 0x19202c4,5, 0x19202e4,1, 0x19202ec,3, 0x1920304,1, 0x192030c,3, 0x1920344,1, 0x1920360,11, 0x1920390,3, 0x19203a0,3, 0x1920400,20, 0x1920480,4, 0x19204a0,5, 0x19204c0,4, 0x19204e0,5, 0x1920500,21, 0x1920560,14, 0x19205a4,1, 0x19205ac,3, 0x19205c4,1, 0x19205cc,3, 0x19205e4,1, 0x19205ec,3, 0x1920600,17, 0x1920800,56, 0x1920900,13, 0x1920980,20, 0x1920a00,20, 0x1920a80,6, 0x1920aa4,5, 0x1920ac4,5, 0x1920ae4,1, 0x1920aec,3, 0x1920b04,1, 0x1920b0c,3, 0x1920b44,1, 0x1920b60,11, 0x1920b90,3, 0x1920ba0,3, 0x1920c00,20, 0x1920c80,4, 0x1920ca0,5, 0x1920cc0,4, 0x1920ce0,5, 0x1920d00,21, 0x1920d60,14, 0x1920da4,1, 0x1920dac,3, 0x1920dc4,1, 0x1920dcc,3, 0x1920de4,1, 0x1920dec,3, 0x1920e00,17, 0x1921000,56, 0x1921100,13, 0x1921180,20, 0x1921200,20, 0x1921280,6, 0x19212a4,5, 0x19212c4,5, 0x19212e4,1, 0x19212ec,3, 0x1921304,1, 0x192130c,3, 0x1921344,1, 0x1921360,11, 0x1921390,3, 0x19213a0,3, 0x1921400,20, 0x1921480,4, 0x19214a0,5, 0x19214c0,4, 0x19214e0,5, 0x1921500,21, 0x1921560,14, 0x19215a4,1, 0x19215ac,3, 0x19215c4,1, 0x19215cc,3, 0x19215e4,1, 0x19215ec,3, 0x1921600,17, 0x1921800,56, 0x1921900,13, 0x1921980,20, 0x1921a00,20, 0x1921a80,6, 0x1921aa4,5, 0x1921ac4,5, 0x1921ae4,1, 0x1921aec,3, 0x1921b04,1, 0x1921b0c,3, 0x1921b44,1, 0x1921b60,11, 0x1921b90,3, 0x1921ba0,3, 0x1921c00,20, 0x1921c80,4, 0x1921ca0,5, 0x1921cc0,4, 0x1921ce0,5, 0x1921d00,21, 0x1921d60,14, 0x1921da4,1, 0x1921dac,3, 0x1921dc4,1, 0x1921dcc,3, 0x1921de4,1, 0x1921dec,3, 0x1921e00,17, 0x1922000,56, 0x1922100,13, 0x1922180,20, 0x1922200,20, 0x1922280,6, 0x19222a4,5, 0x19222c4,5, 0x19222e4,1, 0x19222ec,3, 0x1922304,1, 0x192230c,3, 0x1922344,1, 0x1922360,11, 0x1922390,3, 0x19223a0,3, 0x1922400,20, 0x1922480,4, 0x19224a0,5, 0x19224c0,4, 0x19224e0,5, 0x1922500,21, 0x1922560,14, 0x19225a4,1, 0x19225ac,3, 0x19225c4,1, 0x19225cc,3, 0x19225e4,1, 0x19225ec,3, 0x1922600,17, 0x1922800,56, 0x1922900,13, 0x1922980,20, 0x1922a00,20, 0x1922a80,6, 0x1922aa4,5, 0x1922ac4,5, 0x1922ae4,1, 0x1922aec,3, 0x1922b04,1, 0x1922b0c,3, 0x1922b44,1, 0x1922b60,11, 0x1922b90,3, 0x1922ba0,3, 0x1922c00,20, 0x1922c80,4, 0x1922ca0,5, 0x1922cc0,4, 0x1922ce0,5, 0x1922d00,21, 0x1922d60,14, 0x1922da4,1, 0x1922dac,3, 0x1922dc4,1, 0x1922dcc,3, 0x1922de4,1, 0x1922dec,3, 0x1922e00,17, 0x1923000,56, 0x1923100,13, 0x1923180,20, 0x1923200,20, 0x1923280,6, 0x19232a4,5, 0x19232c4,5, 0x19232e4,1, 0x19232ec,3, 0x1923304,1, 0x192330c,3, 0x1923344,1, 0x1923360,11, 0x1923390,3, 0x19233a0,3, 0x1923400,20, 0x1923480,4, 0x19234a0,5, 0x19234c0,4, 0x19234e0,5, 0x1923500,21, 0x1923560,14, 0x19235a4,1, 0x19235ac,3, 0x19235c4,1, 0x19235cc,3, 0x19235e4,1, 0x19235ec,3, 0x1923600,17, 0x1923800,56, 0x1923900,13, 0x1923980,20, 0x1923a00,20, 0x1923a80,6, 0x1923aa4,5, 0x1923ac4,5, 0x1923ae4,1, 0x1923aec,3, 0x1923b04,1, 0x1923b0c,3, 0x1923b44,1, 0x1923b60,11, 0x1923b90,3, 0x1923ba0,3, 0x1923c00,20, 0x1923c80,4, 0x1923ca0,5, 0x1923cc0,4, 0x1923ce0,5, 0x1923d00,21, 0x1923d60,14, 0x1923da4,1, 0x1923dac,3, 0x1923dc4,1, 0x1923dcc,3, 0x1923de4,1, 0x1923dec,3, 0x1923e00,17, 0x1924000,56, 0x1924100,13, 0x1924180,20, 0x1924200,20, 0x1924280,6, 0x19242a4,5, 0x19242c4,5, 0x19242e4,1, 0x19242ec,3, 0x1924304,1, 0x192430c,3, 0x1924344,1, 0x1924360,11, 0x1924390,3, 0x19243a0,3, 0x1924400,20, 0x1924480,4, 0x19244a0,5, 0x19244c0,4, 0x19244e0,5, 0x1924500,21, 0x1924560,14, 0x19245a4,1, 0x19245ac,3, 0x19245c4,1, 0x19245cc,3, 0x19245e4,1, 0x19245ec,3, 0x1924600,17, 0x1924800,56, 0x1924900,13, 0x1924980,20, 0x1924a00,20, 0x1924a80,6, 0x1924aa4,5, 0x1924ac4,5, 0x1924ae4,1, 0x1924aec,3, 0x1924b04,1, 0x1924b0c,3, 0x1924b44,1, 0x1924b60,11, 0x1924b90,3, 0x1924ba0,3, 0x1924c00,20, 0x1924c80,4, 0x1924ca0,5, 0x1924cc0,4, 0x1924ce0,5, 0x1924d00,21, 0x1924d60,14, 0x1924da4,1, 0x1924dac,3, 0x1924dc4,1, 0x1924dcc,3, 0x1924de4,1, 0x1924dec,3, 0x1924e00,17, 0x1925000,56, 0x1925100,13, 0x1925180,20, 0x1925200,20, 0x1925280,6, 0x19252a4,5, 0x19252c4,5, 0x19252e4,1, 0x19252ec,3, 0x1925304,1, 0x192530c,3, 0x1925344,1, 0x1925360,11, 0x1925390,3, 0x19253a0,3, 0x1925400,20, 0x1925480,4, 0x19254a0,5, 0x19254c0,4, 0x19254e0,5, 0x1925500,21, 0x1925560,14, 0x19255a4,1, 0x19255ac,3, 0x19255c4,1, 0x19255cc,3, 0x19255e4,1, 0x19255ec,3, 0x1925600,17, 0x1925800,56, 0x1925900,13, 0x1925980,20, 0x1925a00,20, 0x1925a80,6, 0x1925aa4,5, 0x1925ac4,5, 0x1925ae4,1, 0x1925aec,3, 0x1925b04,1, 0x1925b0c,3, 0x1925b44,1, 0x1925b60,11, 0x1925b90,3, 0x1925ba0,3, 0x1925c00,20, 0x1925c80,4, 0x1925ca0,5, 0x1925cc0,4, 0x1925ce0,5, 0x1925d00,21, 0x1925d60,14, 0x1925da4,1, 0x1925dac,3, 0x1925dc4,1, 0x1925dcc,3, 0x1925de4,1, 0x1925dec,3, 0x1925e00,17, 0x1926000,56, 0x1926100,13, 0x1926180,20, 0x1926200,20, 0x1926280,6, 0x19262a4,5, 0x19262c4,5, 0x19262e4,1, 0x19262ec,3, 0x1926304,1, 0x192630c,3, 0x1926344,1, 0x1926360,11, 0x1926390,3, 0x19263a0,3, 0x1926400,20, 0x1926480,4, 0x19264a0,5, 0x19264c0,4, 0x19264e0,5, 0x1926500,21, 0x1926560,14, 0x19265a4,1, 0x19265ac,3, 0x19265c4,1, 0x19265cc,3, 0x19265e4,1, 0x19265ec,3, 0x1926600,17, 0x1926800,56, 0x1926900,13, 0x1926980,20, 0x1926a00,20, 0x1926a80,6, 0x1926aa4,5, 0x1926ac4,5, 0x1926ae4,1, 0x1926aec,3, 0x1926b04,1, 0x1926b0c,3, 0x1926b44,1, 0x1926b60,11, 0x1926b90,3, 0x1926ba0,3, 0x1926c00,20, 0x1926c80,4, 0x1926ca0,5, 0x1926cc0,4, 0x1926ce0,5, 0x1926d00,21, 0x1926d60,14, 0x1926da4,1, 0x1926dac,3, 0x1926dc4,1, 0x1926dcc,3, 0x1926de4,1, 0x1926dec,3, 0x1926e00,17, 0x1927000,56, 0x1927100,13, 0x1927180,20, 0x1927200,20, 0x1927280,6, 0x19272a4,5, 0x19272c4,5, 0x19272e4,1, 0x19272ec,3, 0x1927304,1, 0x192730c,3, 0x1927344,1, 0x1927360,11, 0x1927390,3, 0x19273a0,3, 0x1927400,20, 0x1927480,4, 0x19274a0,5, 0x19274c0,4, 0x19274e0,5, 0x1927500,21, 0x1927560,14, 0x19275a4,1, 0x19275ac,3, 0x19275c4,1, 0x19275cc,3, 0x19275e4,1, 0x19275ec,3, 0x1927600,17, 0x1927800,56, 0x1927900,13, 0x1927980,20, 0x1927a00,20, 0x1927a80,6, 0x1927aa4,5, 0x1927ac4,5, 0x1927ae4,1, 0x1927aec,3, 0x1927b04,1, 0x1927b0c,3, 0x1927b44,1, 0x1927b60,11, 0x1927b90,3, 0x1927ba0,3, 0x1927c00,20, 0x1927c80,4, 0x1927ca0,5, 0x1927cc0,4, 0x1927ce0,5, 0x1927d00,21, 0x1927d60,14, 0x1927da4,1, 0x1927dac,3, 0x1927dc4,1, 0x1927dcc,3, 0x1927de4,1, 0x1927dec,3, 0x1927e00,17, 0x1928000,56, 0x1928100,13, 0x1928180,20, 0x1928200,20, 0x1928280,6, 0x19282a4,5, 0x19282c4,5, 0x19282e4,1, 0x19282ec,3, 0x1928304,1, 0x192830c,3, 0x1928344,1, 0x1928360,11, 0x1928390,3, 0x19283a0,3, 0x1928400,20, 0x1928480,4, 0x19284a0,5, 0x19284c0,4, 0x19284e0,5, 0x1928500,21, 0x1928560,14, 0x19285a4,1, 0x19285ac,3, 0x19285c4,1, 0x19285cc,3, 0x19285e4,1, 0x19285ec,3, 0x1928600,17, 0x1929000,137, 0x1929400,9, 0x1929480,20, 0x1929500,20, 0x1929580,6, 0x19295a4,5, 0x19295c4,5, 0x19295e4,1, 0x19295ec,3, 0x1929604,1, 0x192960c,3, 0x1929620,14, 0x1929660,14, 0x1929700,20, 0x1929780,4, 0x19297a0,5, 0x19297c0,25, 0x192a000,28, 0x192a080,2, 0x192a090,3, 0x192a200,27, 0x192a280,4, 0x192a2c0,25, 0x192a340,6, 0x192a360,4, 0x192a374,11, 0x192a3a4,10, 0x192a400,5, 0x1940000,56, 0x1940100,13, 0x1940180,20, 0x1940200,20, 0x1940280,6, 0x19402a4,5, 0x19402c4,5, 0x19402e4,1, 0x19402ec,3, 0x1940304,1, 0x194030c,3, 0x1940344,1, 0x1940360,11, 0x1940390,3, 0x19403a0,3, 0x1940400,20, 0x1940480,4, 0x19404a0,5, 0x19404c0,4, 0x19404e0,5, 0x1940500,21, 0x1940560,14, 0x19405a4,1, 0x19405ac,3, 0x19405c4,1, 0x19405cc,3, 0x19405e4,1, 0x19405ec,3, 0x1940600,17, 0x1940800,56, 0x1940900,13, 0x1940980,20, 0x1940a00,20, 0x1940a80,6, 0x1940aa4,5, 0x1940ac4,5, 0x1940ae4,1, 0x1940aec,3, 0x1940b04,1, 0x1940b0c,3, 0x1940b44,1, 0x1940b60,11, 0x1940b90,3, 0x1940ba0,3, 0x1940c00,20, 0x1940c80,4, 0x1940ca0,5, 0x1940cc0,4, 0x1940ce0,5, 0x1940d00,21, 0x1940d60,14, 0x1940da4,1, 0x1940dac,3, 0x1940dc4,1, 0x1940dcc,3, 0x1940de4,1, 0x1940dec,3, 0x1940e00,17, 0x1941000,56, 0x1941100,13, 0x1941180,20, 0x1941200,20, 0x1941280,6, 0x19412a4,5, 0x19412c4,5, 0x19412e4,1, 0x19412ec,3, 0x1941304,1, 0x194130c,3, 0x1941344,1, 0x1941360,11, 0x1941390,3, 0x19413a0,3, 0x1941400,20, 0x1941480,4, 0x19414a0,5, 0x19414c0,4, 0x19414e0,5, 0x1941500,21, 0x1941560,14, 0x19415a4,1, 0x19415ac,3, 0x19415c4,1, 0x19415cc,3, 0x19415e4,1, 0x19415ec,3, 0x1941600,17, 0x1941800,56, 0x1941900,13, 0x1941980,20, 0x1941a00,20, 0x1941a80,6, 0x1941aa4,5, 0x1941ac4,5, 0x1941ae4,1, 0x1941aec,3, 0x1941b04,1, 0x1941b0c,3, 0x1941b44,1, 0x1941b60,11, 0x1941b90,3, 0x1941ba0,3, 0x1941c00,20, 0x1941c80,4, 0x1941ca0,5, 0x1941cc0,4, 0x1941ce0,5, 0x1941d00,21, 0x1941d60,14, 0x1941da4,1, 0x1941dac,3, 0x1941dc4,1, 0x1941dcc,3, 0x1941de4,1, 0x1941dec,3, 0x1941e00,17, 0x1942000,56, 0x1942100,13, 0x1942180,20, 0x1942200,20, 0x1942280,6, 0x19422a4,5, 0x19422c4,5, 0x19422e4,1, 0x19422ec,3, 0x1942304,1, 0x194230c,3, 0x1942344,1, 0x1942360,11, 0x1942390,3, 0x19423a0,3, 0x1942400,20, 0x1942480,4, 0x19424a0,5, 0x19424c0,4, 0x19424e0,5, 0x1942500,21, 0x1942560,14, 0x19425a4,1, 0x19425ac,3, 0x19425c4,1, 0x19425cc,3, 0x19425e4,1, 0x19425ec,3, 0x1942600,17, 0x1942800,56, 0x1942900,13, 0x1942980,20, 0x1942a00,20, 0x1942a80,6, 0x1942aa4,5, 0x1942ac4,5, 0x1942ae4,1, 0x1942aec,3, 0x1942b04,1, 0x1942b0c,3, 0x1942b44,1, 0x1942b60,11, 0x1942b90,3, 0x1942ba0,3, 0x1942c00,20, 0x1942c80,4, 0x1942ca0,5, 0x1942cc0,4, 0x1942ce0,5, 0x1942d00,21, 0x1942d60,14, 0x1942da4,1, 0x1942dac,3, 0x1942dc4,1, 0x1942dcc,3, 0x1942de4,1, 0x1942dec,3, 0x1942e00,17, 0x1943000,56, 0x1943100,13, 0x1943180,20, 0x1943200,20, 0x1943280,6, 0x19432a4,5, 0x19432c4,5, 0x19432e4,1, 0x19432ec,3, 0x1943304,1, 0x194330c,3, 0x1943344,1, 0x1943360,11, 0x1943390,3, 0x19433a0,3, 0x1943400,20, 0x1943480,4, 0x19434a0,5, 0x19434c0,4, 0x19434e0,5, 0x1943500,21, 0x1943560,14, 0x19435a4,1, 0x19435ac,3, 0x19435c4,1, 0x19435cc,3, 0x19435e4,1, 0x19435ec,3, 0x1943600,17, 0x1943800,56, 0x1943900,13, 0x1943980,20, 0x1943a00,20, 0x1943a80,6, 0x1943aa4,5, 0x1943ac4,5, 0x1943ae4,1, 0x1943aec,3, 0x1943b04,1, 0x1943b0c,3, 0x1943b44,1, 0x1943b60,11, 0x1943b90,3, 0x1943ba0,3, 0x1943c00,20, 0x1943c80,4, 0x1943ca0,5, 0x1943cc0,4, 0x1943ce0,5, 0x1943d00,21, 0x1943d60,14, 0x1943da4,1, 0x1943dac,3, 0x1943dc4,1, 0x1943dcc,3, 0x1943de4,1, 0x1943dec,3, 0x1943e00,17, 0x1944000,56, 0x1944100,13, 0x1944180,20, 0x1944200,20, 0x1944280,6, 0x19442a4,5, 0x19442c4,5, 0x19442e4,1, 0x19442ec,3, 0x1944304,1, 0x194430c,3, 0x1944344,1, 0x1944360,11, 0x1944390,3, 0x19443a0,3, 0x1944400,20, 0x1944480,4, 0x19444a0,5, 0x19444c0,4, 0x19444e0,5, 0x1944500,21, 0x1944560,14, 0x19445a4,1, 0x19445ac,3, 0x19445c4,1, 0x19445cc,3, 0x19445e4,1, 0x19445ec,3, 0x1944600,17, 0x1944800,56, 0x1944900,13, 0x1944980,20, 0x1944a00,20, 0x1944a80,6, 0x1944aa4,5, 0x1944ac4,5, 0x1944ae4,1, 0x1944aec,3, 0x1944b04,1, 0x1944b0c,3, 0x1944b44,1, 0x1944b60,11, 0x1944b90,3, 0x1944ba0,3, 0x1944c00,20, 0x1944c80,4, 0x1944ca0,5, 0x1944cc0,4, 0x1944ce0,5, 0x1944d00,21, 0x1944d60,14, 0x1944da4,1, 0x1944dac,3, 0x1944dc4,1, 0x1944dcc,3, 0x1944de4,1, 0x1944dec,3, 0x1944e00,17, 0x1945000,56, 0x1945100,13, 0x1945180,20, 0x1945200,20, 0x1945280,6, 0x19452a4,5, 0x19452c4,5, 0x19452e4,1, 0x19452ec,3, 0x1945304,1, 0x194530c,3, 0x1945344,1, 0x1945360,11, 0x1945390,3, 0x19453a0,3, 0x1945400,20, 0x1945480,4, 0x19454a0,5, 0x19454c0,4, 0x19454e0,5, 0x1945500,21, 0x1945560,14, 0x19455a4,1, 0x19455ac,3, 0x19455c4,1, 0x19455cc,3, 0x19455e4,1, 0x19455ec,3, 0x1945600,17, 0x1945800,56, 0x1945900,13, 0x1945980,20, 0x1945a00,20, 0x1945a80,6, 0x1945aa4,5, 0x1945ac4,5, 0x1945ae4,1, 0x1945aec,3, 0x1945b04,1, 0x1945b0c,3, 0x1945b44,1, 0x1945b60,11, 0x1945b90,3, 0x1945ba0,3, 0x1945c00,20, 0x1945c80,4, 0x1945ca0,5, 0x1945cc0,4, 0x1945ce0,5, 0x1945d00,21, 0x1945d60,14, 0x1945da4,1, 0x1945dac,3, 0x1945dc4,1, 0x1945dcc,3, 0x1945de4,1, 0x1945dec,3, 0x1945e00,17, 0x1946000,56, 0x1946100,13, 0x1946180,20, 0x1946200,20, 0x1946280,6, 0x19462a4,5, 0x19462c4,5, 0x19462e4,1, 0x19462ec,3, 0x1946304,1, 0x194630c,3, 0x1946344,1, 0x1946360,11, 0x1946390,3, 0x19463a0,3, 0x1946400,20, 0x1946480,4, 0x19464a0,5, 0x19464c0,4, 0x19464e0,5, 0x1946500,21, 0x1946560,14, 0x19465a4,1, 0x19465ac,3, 0x19465c4,1, 0x19465cc,3, 0x19465e4,1, 0x19465ec,3, 0x1946600,17, 0x1946800,56, 0x1946900,13, 0x1946980,20, 0x1946a00,20, 0x1946a80,6, 0x1946aa4,5, 0x1946ac4,5, 0x1946ae4,1, 0x1946aec,3, 0x1946b04,1, 0x1946b0c,3, 0x1946b44,1, 0x1946b60,11, 0x1946b90,3, 0x1946ba0,3, 0x1946c00,20, 0x1946c80,4, 0x1946ca0,5, 0x1946cc0,4, 0x1946ce0,5, 0x1946d00,21, 0x1946d60,14, 0x1946da4,1, 0x1946dac,3, 0x1946dc4,1, 0x1946dcc,3, 0x1946de4,1, 0x1946dec,3, 0x1946e00,17, 0x1947000,56, 0x1947100,13, 0x1947180,20, 0x1947200,20, 0x1947280,6, 0x19472a4,5, 0x19472c4,5, 0x19472e4,1, 0x19472ec,3, 0x1947304,1, 0x194730c,3, 0x1947344,1, 0x1947360,11, 0x1947390,3, 0x19473a0,3, 0x1947400,20, 0x1947480,4, 0x19474a0,5, 0x19474c0,4, 0x19474e0,5, 0x1947500,21, 0x1947560,14, 0x19475a4,1, 0x19475ac,3, 0x19475c4,1, 0x19475cc,3, 0x19475e4,1, 0x19475ec,3, 0x1947600,17, 0x1947800,56, 0x1947900,13, 0x1947980,20, 0x1947a00,20, 0x1947a80,6, 0x1947aa4,5, 0x1947ac4,5, 0x1947ae4,1, 0x1947aec,3, 0x1947b04,1, 0x1947b0c,3, 0x1947b44,1, 0x1947b60,11, 0x1947b90,3, 0x1947ba0,3, 0x1947c00,20, 0x1947c80,4, 0x1947ca0,5, 0x1947cc0,4, 0x1947ce0,5, 0x1947d00,21, 0x1947d60,14, 0x1947da4,1, 0x1947dac,3, 0x1947dc4,1, 0x1947dcc,3, 0x1947de4,1, 0x1947dec,3, 0x1947e00,17, 0x1948000,56, 0x1948100,13, 0x1948180,20, 0x1948200,20, 0x1948280,6, 0x19482a4,5, 0x19482c4,5, 0x19482e4,1, 0x19482ec,3, 0x1948304,1, 0x194830c,3, 0x1948344,1, 0x1948360,11, 0x1948390,3, 0x19483a0,3, 0x1948400,20, 0x1948480,4, 0x19484a0,5, 0x19484c0,4, 0x19484e0,5, 0x1948500,21, 0x1948560,14, 0x19485a4,1, 0x19485ac,3, 0x19485c4,1, 0x19485cc,3, 0x19485e4,1, 0x19485ec,3, 0x1948600,17, 0x1949000,137, 0x1949400,9, 0x1949480,20, 0x1949500,20, 0x1949580,6, 0x19495a4,5, 0x19495c4,5, 0x19495e4,1, 0x19495ec,3, 0x1949604,1, 0x194960c,3, 0x1949620,14, 0x1949660,14, 0x1949700,20, 0x1949780,4, 0x19497a0,5, 0x19497c0,25, 0x194a000,28, 0x194a080,2, 0x194a090,3, 0x194a200,27, 0x194a280,4, 0x194a2c0,25, 0x194a340,6, 0x194a360,4, 0x194a374,11, 0x194a3a4,10, 0x194a400,5, 0x1960000,56, 0x1960100,13, 0x1960180,20, 0x1960200,20, 0x1960280,6, 0x19602a4,5, 0x19602c4,5, 0x19602e4,1, 0x19602ec,3, 0x1960304,1, 0x196030c,3, 0x1960344,1, 0x1960360,11, 0x1960390,3, 0x19603a0,3, 0x1960400,20, 0x1960480,4, 0x19604a0,5, 0x19604c0,4, 0x19604e0,5, 0x1960500,21, 0x1960560,14, 0x19605a4,1, 0x19605ac,3, 0x19605c4,1, 0x19605cc,3, 0x19605e4,1, 0x19605ec,3, 0x1960600,17, 0x1960800,56, 0x1960900,13, 0x1960980,20, 0x1960a00,20, 0x1960a80,6, 0x1960aa4,5, 0x1960ac4,5, 0x1960ae4,1, 0x1960aec,3, 0x1960b04,1, 0x1960b0c,3, 0x1960b44,1, 0x1960b60,11, 0x1960b90,3, 0x1960ba0,3, 0x1960c00,20, 0x1960c80,4, 0x1960ca0,5, 0x1960cc0,4, 0x1960ce0,5, 0x1960d00,21, 0x1960d60,14, 0x1960da4,1, 0x1960dac,3, 0x1960dc4,1, 0x1960dcc,3, 0x1960de4,1, 0x1960dec,3, 0x1960e00,17, 0x1961000,56, 0x1961100,13, 0x1961180,20, 0x1961200,20, 0x1961280,6, 0x19612a4,5, 0x19612c4,5, 0x19612e4,1, 0x19612ec,3, 0x1961304,1, 0x196130c,3, 0x1961344,1, 0x1961360,11, 0x1961390,3, 0x19613a0,3, 0x1961400,20, 0x1961480,4, 0x19614a0,5, 0x19614c0,4, 0x19614e0,5, 0x1961500,21, 0x1961560,14, 0x19615a4,1, 0x19615ac,3, 0x19615c4,1, 0x19615cc,3, 0x19615e4,1, 0x19615ec,3, 0x1961600,17, 0x1961800,56, 0x1961900,13, 0x1961980,20, 0x1961a00,20, 0x1961a80,6, 0x1961aa4,5, 0x1961ac4,5, 0x1961ae4,1, 0x1961aec,3, 0x1961b04,1, 0x1961b0c,3, 0x1961b44,1, 0x1961b60,11, 0x1961b90,3, 0x1961ba0,3, 0x1961c00,20, 0x1961c80,4, 0x1961ca0,5, 0x1961cc0,4, 0x1961ce0,5, 0x1961d00,21, 0x1961d60,14, 0x1961da4,1, 0x1961dac,3, 0x1961dc4,1, 0x1961dcc,3, 0x1961de4,1, 0x1961dec,3, 0x1961e00,17, 0x1962000,56, 0x1962100,13, 0x1962180,20, 0x1962200,20, 0x1962280,6, 0x19622a4,5, 0x19622c4,5, 0x19622e4,1, 0x19622ec,3, 0x1962304,1, 0x196230c,3, 0x1962344,1, 0x1962360,11, 0x1962390,3, 0x19623a0,3, 0x1962400,20, 0x1962480,4, 0x19624a0,5, 0x19624c0,4, 0x19624e0,5, 0x1962500,21, 0x1962560,14, 0x19625a4,1, 0x19625ac,3, 0x19625c4,1, 0x19625cc,3, 0x19625e4,1, 0x19625ec,3, 0x1962600,17, 0x1962800,56, 0x1962900,13, 0x1962980,20, 0x1962a00,20, 0x1962a80,6, 0x1962aa4,5, 0x1962ac4,5, 0x1962ae4,1, 0x1962aec,3, 0x1962b04,1, 0x1962b0c,3, 0x1962b44,1, 0x1962b60,11, 0x1962b90,3, 0x1962ba0,3, 0x1962c00,20, 0x1962c80,4, 0x1962ca0,5, 0x1962cc0,4, 0x1962ce0,5, 0x1962d00,21, 0x1962d60,14, 0x1962da4,1, 0x1962dac,3, 0x1962dc4,1, 0x1962dcc,3, 0x1962de4,1, 0x1962dec,3, 0x1962e00,17, 0x1963000,56, 0x1963100,13, 0x1963180,20, 0x1963200,20, 0x1963280,6, 0x19632a4,5, 0x19632c4,5, 0x19632e4,1, 0x19632ec,3, 0x1963304,1, 0x196330c,3, 0x1963344,1, 0x1963360,11, 0x1963390,3, 0x19633a0,3, 0x1963400,20, 0x1963480,4, 0x19634a0,5, 0x19634c0,4, 0x19634e0,5, 0x1963500,21, 0x1963560,14, 0x19635a4,1, 0x19635ac,3, 0x19635c4,1, 0x19635cc,3, 0x19635e4,1, 0x19635ec,3, 0x1963600,17, 0x1963800,56, 0x1963900,13, 0x1963980,20, 0x1963a00,20, 0x1963a80,6, 0x1963aa4,5, 0x1963ac4,5, 0x1963ae4,1, 0x1963aec,3, 0x1963b04,1, 0x1963b0c,3, 0x1963b44,1, 0x1963b60,11, 0x1963b90,3, 0x1963ba0,3, 0x1963c00,20, 0x1963c80,4, 0x1963ca0,5, 0x1963cc0,4, 0x1963ce0,5, 0x1963d00,21, 0x1963d60,14, 0x1963da4,1, 0x1963dac,3, 0x1963dc4,1, 0x1963dcc,3, 0x1963de4,1, 0x1963dec,3, 0x1963e00,17, 0x1964000,56, 0x1964100,13, 0x1964180,20, 0x1964200,20, 0x1964280,6, 0x19642a4,5, 0x19642c4,5, 0x19642e4,1, 0x19642ec,3, 0x1964304,1, 0x196430c,3, 0x1964344,1, 0x1964360,11, 0x1964390,3, 0x19643a0,3, 0x1964400,20, 0x1964480,4, 0x19644a0,5, 0x19644c0,4, 0x19644e0,5, 0x1964500,21, 0x1964560,14, 0x19645a4,1, 0x19645ac,3, 0x19645c4,1, 0x19645cc,3, 0x19645e4,1, 0x19645ec,3, 0x1964600,17, 0x1964800,56, 0x1964900,13, 0x1964980,20, 0x1964a00,20, 0x1964a80,6, 0x1964aa4,5, 0x1964ac4,5, 0x1964ae4,1, 0x1964aec,3, 0x1964b04,1, 0x1964b0c,3, 0x1964b44,1, 0x1964b60,11, 0x1964b90,3, 0x1964ba0,3, 0x1964c00,20, 0x1964c80,4, 0x1964ca0,5, 0x1964cc0,4, 0x1964ce0,5, 0x1964d00,21, 0x1964d60,14, 0x1964da4,1, 0x1964dac,3, 0x1964dc4,1, 0x1964dcc,3, 0x1964de4,1, 0x1964dec,3, 0x1964e00,17, 0x1965000,56, 0x1965100,13, 0x1965180,20, 0x1965200,20, 0x1965280,6, 0x19652a4,5, 0x19652c4,5, 0x19652e4,1, 0x19652ec,3, 0x1965304,1, 0x196530c,3, 0x1965344,1, 0x1965360,11, 0x1965390,3, 0x19653a0,3, 0x1965400,20, 0x1965480,4, 0x19654a0,5, 0x19654c0,4, 0x19654e0,5, 0x1965500,21, 0x1965560,14, 0x19655a4,1, 0x19655ac,3, 0x19655c4,1, 0x19655cc,3, 0x19655e4,1, 0x19655ec,3, 0x1965600,17, 0x1965800,56, 0x1965900,13, 0x1965980,20, 0x1965a00,20, 0x1965a80,6, 0x1965aa4,5, 0x1965ac4,5, 0x1965ae4,1, 0x1965aec,3, 0x1965b04,1, 0x1965b0c,3, 0x1965b44,1, 0x1965b60,11, 0x1965b90,3, 0x1965ba0,3, 0x1965c00,20, 0x1965c80,4, 0x1965ca0,5, 0x1965cc0,4, 0x1965ce0,5, 0x1965d00,21, 0x1965d60,14, 0x1965da4,1, 0x1965dac,3, 0x1965dc4,1, 0x1965dcc,3, 0x1965de4,1, 0x1965dec,3, 0x1965e00,17, 0x1966000,56, 0x1966100,13, 0x1966180,20, 0x1966200,20, 0x1966280,6, 0x19662a4,5, 0x19662c4,5, 0x19662e4,1, 0x19662ec,3, 0x1966304,1, 0x196630c,3, 0x1966344,1, 0x1966360,11, 0x1966390,3, 0x19663a0,3, 0x1966400,20, 0x1966480,4, 0x19664a0,5, 0x19664c0,4, 0x19664e0,5, 0x1966500,21, 0x1966560,14, 0x19665a4,1, 0x19665ac,3, 0x19665c4,1, 0x19665cc,3, 0x19665e4,1, 0x19665ec,3, 0x1966600,17, 0x1966800,56, 0x1966900,13, 0x1966980,20, 0x1966a00,20, 0x1966a80,6, 0x1966aa4,5, 0x1966ac4,5, 0x1966ae4,1, 0x1966aec,3, 0x1966b04,1, 0x1966b0c,3, 0x1966b44,1, 0x1966b60,11, 0x1966b90,3, 0x1966ba0,3, 0x1966c00,20, 0x1966c80,4, 0x1966ca0,5, 0x1966cc0,4, 0x1966ce0,5, 0x1966d00,21, 0x1966d60,14, 0x1966da4,1, 0x1966dac,3, 0x1966dc4,1, 0x1966dcc,3, 0x1966de4,1, 0x1966dec,3, 0x1966e00,17, 0x1967000,56, 0x1967100,13, 0x1967180,20, 0x1967200,20, 0x1967280,6, 0x19672a4,5, 0x19672c4,5, 0x19672e4,1, 0x19672ec,3, 0x1967304,1, 0x196730c,3, 0x1967344,1, 0x1967360,11, 0x1967390,3, 0x19673a0,3, 0x1967400,20, 0x1967480,4, 0x19674a0,5, 0x19674c0,4, 0x19674e0,5, 0x1967500,21, 0x1967560,14, 0x19675a4,1, 0x19675ac,3, 0x19675c4,1, 0x19675cc,3, 0x19675e4,1, 0x19675ec,3, 0x1967600,17, 0x1967800,56, 0x1967900,13, 0x1967980,20, 0x1967a00,20, 0x1967a80,6, 0x1967aa4,5, 0x1967ac4,5, 0x1967ae4,1, 0x1967aec,3, 0x1967b04,1, 0x1967b0c,3, 0x1967b44,1, 0x1967b60,11, 0x1967b90,3, 0x1967ba0,3, 0x1967c00,20, 0x1967c80,4, 0x1967ca0,5, 0x1967cc0,4, 0x1967ce0,5, 0x1967d00,21, 0x1967d60,14, 0x1967da4,1, 0x1967dac,3, 0x1967dc4,1, 0x1967dcc,3, 0x1967de4,1, 0x1967dec,3, 0x1967e00,17, 0x1968000,56, 0x1968100,13, 0x1968180,20, 0x1968200,20, 0x1968280,6, 0x19682a4,5, 0x19682c4,5, 0x19682e4,1, 0x19682ec,3, 0x1968304,1, 0x196830c,3, 0x1968344,1, 0x1968360,11, 0x1968390,3, 0x19683a0,3, 0x1968400,20, 0x1968480,4, 0x19684a0,5, 0x19684c0,4, 0x19684e0,5, 0x1968500,21, 0x1968560,14, 0x19685a4,1, 0x19685ac,3, 0x19685c4,1, 0x19685cc,3, 0x19685e4,1, 0x19685ec,3, 0x1968600,17, 0x1969000,137, 0x1969400,9, 0x1969480,20, 0x1969500,20, 0x1969580,6, 0x19695a4,5, 0x19695c4,5, 0x19695e4,1, 0x19695ec,3, 0x1969604,1, 0x196960c,3, 0x1969620,14, 0x1969660,14, 0x1969700,20, 0x1969780,4, 0x19697a0,5, 0x19697c0,25, 0x196a000,28, 0x196a080,2, 0x196a090,3, 0x196a200,27, 0x196a280,4, 0x196a2c0,25, 0x196a340,6, 0x196a360,4, 0x196a374,11, 0x196a3a4,10, 0x196a400,5, 0x1980000,2, 0x1980044,1, 0x1980060,8, 0x1980084,1, 0x19800a0,8, 0x19800c4,1, 0x19800e0,8, 0x1980104,1, 0x1980120,8, 0x1980144,1, 0x1980160,8, 0x1980184,1, 0x19801a0,8, 0x19801c4,1, 0x19801e0,8, 0x1980204,1, 0x1980220,8, 0x1980244,1, 0x1980260,8, 0x1980284,1, 0x19802a0,8, 0x19802c4,1, 0x19802e0,8, 0x1980304,1, 0x1980320,8, 0x1980344,1, 0x1980360,8, 0x1980384,1, 0x19803a0,8, 0x19803c4,1, 0x19803e0,8, 0x1980404,1, 0x1980420,8, 0x1980444,1, 0x1980460,8, 0x1980484,1, 0x19804a0,8, 0x19804c4,1, 0x19804e0,8, 0x1980504,1, 0x1980520,8, 0x1980544,1, 0x1980560,8, 0x1980584,1, 0x19805a0,8, 0x19805c4,1, 0x19805e0,8, 0x1980604,1, 0x1980620,8, 0x1980644,1, 0x1980660,8, 0x1980684,1, 0x19806a0,8, 0x19806c4,1, 0x19806e0,8, 0x1980704,1, 0x1980720,8, 0x1980744,1, 0x1980760,8, 0x1980784,1, 0x19807a0,8, 0x19807c4,1, 0x19807e0,8, 0x1980804,1, 0x1980820,8, 0x1980844,1, 0x1980860,8, 0x1980884,1, 0x19808a0,8, 0x19808c4,1, 0x19808e0,8, 0x1980904,1, 0x1980920,8, 0x1980944,1, 0x1980960,8, 0x1980984,1, 0x19809a0,8, 0x19809c4,1, 0x19809e0,8, 0x1980a04,1, 0x1980a20,8, 0x1980a44,1, 0x1980a60,8, 0x1980a84,1, 0x1980aa0,8, 0x1980ac4,1, 0x1980ae0,8, 0x1980b04,1, 0x1980b20,8, 0x1980b44,1, 0x1980b60,8, 0x1980b84,1, 0x1980ba0,8, 0x1980bc4,1, 0x1980be0,8, 0x1980c04,1, 0x1980c20,8, 0x1980c44,1, 0x1980c60,8, 0x1980c84,1, 0x1980ca0,8, 0x1980cc4,1, 0x1980ce0,8, 0x1980d04,1, 0x1980d20,8, 0x1980d44,1, 0x1980d60,8, 0x1980d84,1, 0x1980da0,8, 0x1980dc4,1, 0x1980de0,8, 0x1980e04,1, 0x1980e20,8, 0x1980e44,1, 0x1980e60,8, 0x1980e84,1, 0x1980ea0,8, 0x1980ec4,1, 0x1980ee0,8, 0x1980f04,1, 0x1980f20,8, 0x1980f44,1, 0x1980f60,8, 0x1980f84,1, 0x1980fa0,8, 0x1980fc4,1, 0x1980fe0,8, 0x1981004,1, 0x1981020,8, 0x1981044,1, 0x1981060,8, 0x1981084,1, 0x1981090,4, 0x19810a4,1, 0x19810b0,4, 0x19810c4,1, 0x19810d0,4, 0x19810e4,1, 0x19810f0,4, 0x1981104,1, 0x1981110,4, 0x1981124,1, 0x1981130,4, 0x1981144,1, 0x1981150,4, 0x1981164,1, 0x1981170,4, 0x1981184,1, 0x1981190,4, 0x19811a4,1, 0x19811b0,4, 0x19811c4,1, 0x19811d0,4, 0x19811e4,1, 0x19811f0,4, 0x1981204,1, 0x1981210,4, 0x1981224,1, 0x1981230,4, 0x1981244,1, 0x1981250,4, 0x1981264,1, 0x1981270,4, 0x1981284,1, 0x1981290,4, 0x19812a4,1, 0x19812b0,4, 0x19812c4,1, 0x19812d0,4, 0x19812e4,1, 0x19812f0,4, 0x1981304,1, 0x1981310,4, 0x1981324,1, 0x1981330,4, 0x1981344,1, 0x1981350,4, 0x1981364,1, 0x1981370,4, 0x1981384,1, 0x1981390,4, 0x19813a4,1, 0x19813b0,4, 0x19813c4,1, 0x19813d0,4, 0x19813e4,1, 0x19813f0,4, 0x1981404,1, 0x1981410,4, 0x1981424,1, 0x1981430,4, 0x1981444,1, 0x1981450,4, 0x1981464,1, 0x1981470,4, 0x1981484,1, 0x1981490,4, 0x19814a4,1, 0x19814b0,4, 0x19814c4,1, 0x19814d0,4, 0x19814e4,1, 0x19814f0,4, 0x1981504,1, 0x1981510,4, 0x1981524,1, 0x1981530,4, 0x1981544,1, 0x1981550,4, 0x1981564,1, 0x1981570,4, 0x1981584,1, 0x1981590,4, 0x19815a4,1, 0x19815b0,4, 0x19815c4,1, 0x19815d0,4, 0x19815e4,1, 0x19815f0,4, 0x1981604,1, 0x1981610,4, 0x1981624,1, 0x1981630,4, 0x1981644,1, 0x1981650,4, 0x1981664,1, 0x1981670,4, 0x1981684,1, 0x1981690,4, 0x19816a4,1, 0x19816b0,4, 0x19816c4,1, 0x19816d0,4, 0x19816e4,1, 0x19816f0,4, 0x1981704,1, 0x1981710,4, 0x1981724,1, 0x1981730,4, 0x1981744,1, 0x1981750,4, 0x1981764,1, 0x1981770,4, 0x1981784,1, 0x1981790,4, 0x19817a4,1, 0x19817b0,4, 0x19817c4,1, 0x19817d0,4, 0x19817e4,1, 0x19817f0,4, 0x1981804,1, 0x1981810,4, 0x1981824,1, 0x1981830,4, 0x1981844,1, 0x1981850,4, 0x1981864,1, 0x1981870,4, 0x1981884,1, 0x1981890,4, 0x1981900,60, 0x1981a00,3, 0x1981a20,7, 0x1981a40,7, 0x1981a60,7, 0x1981a80,7, 0x1981aa0,7, 0x1981ac0,7, 0x1981ae0,7, 0x1981b00,7, 0x1981b20,7, 0x1981b40,7, 0x1981b60,7, 0x1981b80,7, 0x1981ba0,7, 0x1981bc0,7, 0x1981be0,7, 0x1981c00,7, 0x1981c20,7, 0x1981c40,7, 0x1981c60,7, 0x1981c80,7, 0x1981ca0,7, 0x1981cc0,7, 0x1981ce0,7, 0x1981d00,7, 0x1981d20,7, 0x1981d40,7, 0x1981d60,7, 0x1981d80,7, 0x1981da0,7, 0x1981dc0,7, 0x1981de0,7, 0x1981e00,7, 0x1981e20,7, 0x1981e40,7, 0x1981e60,7, 0x1981e80,7, 0x1981ea0,7, 0x1981ec0,7, 0x1981ee0,7, 0x1981f00,7, 0x1981f20,7, 0x1981f40,7, 0x1981f60,7, 0x1981f80,7, 0x1981fa0,7, 0x1981fc0,7, 0x1981fe0,7, 0x1982000,7, 0x1982020,7, 0x1982040,7, 0x1982060,7, 0x1982080,7, 0x19820a0,7, 0x19820c0,7, 0x19820e0,7, 0x1982100,7, 0x1982120,7, 0x1982140,7, 0x1982160,7, 0x1982180,7, 0x19821a0,7, 0x19821c0,7, 0x19821e0,7, 0x1982200,7, 0x1982220,7, 0x1982240,4, 0x1982260,12, 0x19822a0,12, 0x19822e0,12, 0x1982320,12, 0x1982360,12, 0x19823a0,12, 0x19823e0,12, 0x1982420,12, 0x1982460,12, 0x19824a0,12, 0x19824e0,12, 0x1982520,12, 0x1982560,12, 0x19825a0,12, 0x19825e0,12, 0x1982620,12, 0x1982660,12, 0x19826a0,12, 0x19826e0,12, 0x1982720,12, 0x1982760,12, 0x19827a0,12, 0x19827e0,12, 0x1982820,12, 0x1982860,12, 0x19828a0,12, 0x19828e0,12, 0x1982920,12, 0x1982960,12, 0x19829a0,12, 0x19829e0,12, 0x1982a20,12, 0x1982a60,12, 0x1982aa0,12, 0x1982ae0,12, 0x1982b20,12, 0x1982b60,12, 0x1982ba0,12, 0x1982be0,12, 0x1982c20,12, 0x1982c60,12, 0x1982ca0,12, 0x1982ce0,12, 0x1982d20,12, 0x1982d60,12, 0x1982da0,12, 0x1982de0,12, 0x1982e20,12, 0x1982e60,12, 0x1982ea0,12, 0x1982ee0,12, 0x1982f20,12, 0x1982f60,12, 0x1982fa0,12, 0x1982fe0,12, 0x1983020,12, 0x1983060,12, 0x19830a0,12, 0x19830e0,12, 0x1983120,12, 0x1983160,12, 0x19831a0,12, 0x19831e0,12, 0x1983220,12, 0x1983260,15, 0x19832c0,4, 0x19832e0,9, 0x1983400,27, 0x1983480,9, 0x19834c0,6, 0x19834e0,6, 0x1983504,11, 0x1983600,4, 0x1a00000,17, 0x1a00080,17, 0x1a00100,17, 0x1a00180,17, 0x1a00200,17, 0x1a00280,17, 0x1a00300,17, 0x1a00380,17, 0x1a00400,17, 0x1a00480,17, 0x1a00500,17, 0x1a00580,17, 0x1a00600,17, 0x1a00680,17, 0x1a00700,17, 0x1a00780,17, 0x1a00800,17, 0x1a00880,17, 0x1a00900,17, 0x1a00980,17, 0x1a00a00,17, 0x1a00a80,17, 0x1a00b00,17, 0x1a00b80,17, 0x1a00c00,17, 0x1a00c80,17, 0x1a00d00,17, 0x1a00d80,17, 0x1a00e00,17, 0x1a00e80,17, 0x1a00f00,17, 0x1a00f80,17, 0x1a01000,17, 0x1a01080,19, 0x1a01400,128, 0x1a01604,16, 0x1a01650,4, 0x1a01800,128, 0x1a01a04,16, 0x1a01a50,4, 0x1a01c00,8, 0x1a01c24,1, 0x1a01c80,20, 0x1a01d00,3, 0x1a08000,4, 0x1a08040,15, 0x1a08080,9, 0x1a080c0,10, 0x1a08100,2, 0x1a08200,4, 0x1a08240,15, 0x1a08280,9, 0x1a082c0,10, 0x1a08300,2, 0x1a08400,4, 0x1a08440,15, 0x1a08480,9, 0x1a084c0,10, 0x1a08500,2, 0x1a08600,4, 0x1a08640,15, 0x1a08680,9, 0x1a086c0,10, 0x1a08700,2, 0x1a08800,4, 0x1a08840,15, 0x1a08880,9, 0x1a088c0,10, 0x1a08900,2, 0x1a08a00,4, 0x1a08a40,15, 0x1a08a80,9, 0x1a08ac0,10, 0x1a08b00,2, 0x1a08c00,4, 0x1a08c40,15, 0x1a08c80,9, 0x1a08cc0,10, 0x1a08d00,2, 0x1a08e00,4, 0x1a08e40,15, 0x1a08e80,9, 0x1a08ec0,10, 0x1a08f00,2, 0x1a09000,4, 0x1a09040,15, 0x1a09080,9, 0x1a090c0,10, 0x1a09100,2, 0x1a09200,4, 0x1a09240,15, 0x1a09280,9, 0x1a092c0,10, 0x1a09300,2, 0x1a09400,4, 0x1a09440,15, 0x1a09480,9, 0x1a094c0,10, 0x1a09500,2, 0x1a09600,4, 0x1a09640,15, 0x1a09680,9, 0x1a096c0,10, 0x1a09700,2, 0x1a09800,4, 0x1a09840,15, 0x1a09880,9, 0x1a098c0,10, 0x1a09900,2, 0x1a09a00,4, 0x1a09a40,15, 0x1a09a80,9, 0x1a09ac0,10, 0x1a09b00,2, 0x1a09c00,4, 0x1a09c40,15, 0x1a09c80,9, 0x1a09cc0,10, 0x1a09d00,2, 0x1a09e00,4, 0x1a09e40,15, 0x1a09e80,9, 0x1a09ec0,10, 0x1a09f00,2, 0x1a0a000,4, 0x1a0a040,15, 0x1a0a080,9, 0x1a0a0c0,10, 0x1a0a100,2, 0x1a0a200,4, 0x1a0a240,15, 0x1a0a280,9, 0x1a0a2c0,10, 0x1a0a300,2, 0x1a0a400,4, 0x1a0a440,15, 0x1a0a480,9, 0x1a0a4c0,10, 0x1a0a500,2, 0x1a0a600,4, 0x1a0a640,15, 0x1a0a680,9, 0x1a0a6c0,10, 0x1a0a700,2, 0x1a0a800,4, 0x1a0a840,15, 0x1a0a880,9, 0x1a0a8c0,10, 0x1a0a900,2, 0x1a0aa00,4, 0x1a0aa40,15, 0x1a0aa80,9, 0x1a0aac0,10, 0x1a0ab00,2, 0x1a0ac00,4, 0x1a0ac40,15, 0x1a0ac80,9, 0x1a0acc0,10, 0x1a0ad00,2, 0x1a0ae00,4, 0x1a0ae40,15, 0x1a0ae80,9, 0x1a0aec0,10, 0x1a0af00,2, 0x1a0b000,4, 0x1a0b040,15, 0x1a0b080,9, 0x1a0b0c0,10, 0x1a0b100,2, 0x1a0b200,4, 0x1a0b240,15, 0x1a0b280,9, 0x1a0b2c0,10, 0x1a0b300,2, 0x1a0b400,4, 0x1a0b440,15, 0x1a0b480,9, 0x1a0b4c0,10, 0x1a0b500,2, 0x1a0b600,4, 0x1a0b640,15, 0x1a0b680,9, 0x1a0b6c0,10, 0x1a0b700,2, 0x1a0b800,4, 0x1a0b840,15, 0x1a0b880,9, 0x1a0b8c0,10, 0x1a0b900,2, 0x1a0ba00,4, 0x1a0ba40,15, 0x1a0ba80,9, 0x1a0bac0,10, 0x1a0bb00,2, 0x1a0bc00,4, 0x1a0bc40,15, 0x1a0bc80,9, 0x1a0bcc0,10, 0x1a0bd00,2, 0x1a0be00,4, 0x1a0be40,15, 0x1a0be80,9, 0x1a0bec0,10, 0x1a0bf00,2, 0x1a0c000,4, 0x1a0c040,15, 0x1a0c080,9, 0x1a0c0c0,6, 0x1a0c100,2, 0x1a0c200,4, 0x1a0c240,15, 0x1a0c280,9, 0x1a0c2c0,6, 0x1a0c300,2, 0x1a0c400,27, 0x1a0c480,4, 0x1a0c4c0,25, 0x1a0c540,6, 0x1a0c560,4, 0x1a0c574,11, 0x1a0c5a4,3, 0x1a0c600,1, 0x1a0c800,128, 0x1a0ca04,16, 0x1a0ca50,4, 0x1a0cc00,128, 0x1a0ce04,16, 0x1a0ce50,4, 0x1a0d000,16, 0x1a0d044,2, 0x1a0d050,4, 0x1a0d080,20, 0x1a0d100,3, 0x1a0d110,5, 0x1a10000,2, 0x1a10100,44, 0x1a10200,6, 0x1a12000,2, 0x1a12020,13, 0x1a20000,17, 0x1a20080,17, 0x1a20100,17, 0x1a20180,17, 0x1a20200,17, 0x1a20280,17, 0x1a20300,17, 0x1a20380,17, 0x1a20400,17, 0x1a20480,17, 0x1a20500,17, 0x1a20580,17, 0x1a20600,17, 0x1a20680,17, 0x1a20700,17, 0x1a20780,17, 0x1a20800,17, 0x1a20880,17, 0x1a20900,17, 0x1a20980,17, 0x1a20a00,17, 0x1a20a80,17, 0x1a20b00,17, 0x1a20b80,17, 0x1a20c00,17, 0x1a20c80,17, 0x1a20d00,17, 0x1a20d80,17, 0x1a20e00,17, 0x1a20e80,17, 0x1a20f00,17, 0x1a20f80,17, 0x1a21000,17, 0x1a21080,19, 0x1a21400,128, 0x1a21604,16, 0x1a21650,4, 0x1a21800,128, 0x1a21a04,16, 0x1a21a50,4, 0x1a21c00,8, 0x1a21c24,1, 0x1a21c80,20, 0x1a21d00,3, 0x1a28000,4, 0x1a28040,15, 0x1a28080,9, 0x1a280c0,10, 0x1a28100,2, 0x1a28200,4, 0x1a28240,15, 0x1a28280,9, 0x1a282c0,10, 0x1a28300,2, 0x1a28400,4, 0x1a28440,15, 0x1a28480,9, 0x1a284c0,10, 0x1a28500,2, 0x1a28600,4, 0x1a28640,15, 0x1a28680,9, 0x1a286c0,10, 0x1a28700,2, 0x1a28800,4, 0x1a28840,15, 0x1a28880,9, 0x1a288c0,10, 0x1a28900,2, 0x1a28a00,4, 0x1a28a40,15, 0x1a28a80,9, 0x1a28ac0,10, 0x1a28b00,2, 0x1a28c00,4, 0x1a28c40,15, 0x1a28c80,9, 0x1a28cc0,10, 0x1a28d00,2, 0x1a28e00,4, 0x1a28e40,15, 0x1a28e80,9, 0x1a28ec0,10, 0x1a28f00,2, 0x1a29000,4, 0x1a29040,15, 0x1a29080,9, 0x1a290c0,10, 0x1a29100,2, 0x1a29200,4, 0x1a29240,15, 0x1a29280,9, 0x1a292c0,10, 0x1a29300,2, 0x1a29400,4, 0x1a29440,15, 0x1a29480,9, 0x1a294c0,10, 0x1a29500,2, 0x1a29600,4, 0x1a29640,15, 0x1a29680,9, 0x1a296c0,10, 0x1a29700,2, 0x1a29800,4, 0x1a29840,15, 0x1a29880,9, 0x1a298c0,10, 0x1a29900,2, 0x1a29a00,4, 0x1a29a40,15, 0x1a29a80,9, 0x1a29ac0,10, 0x1a29b00,2, 0x1a29c00,4, 0x1a29c40,15, 0x1a29c80,9, 0x1a29cc0,10, 0x1a29d00,2, 0x1a29e00,4, 0x1a29e40,15, 0x1a29e80,9, 0x1a29ec0,10, 0x1a29f00,2, 0x1a2a000,4, 0x1a2a040,15, 0x1a2a080,9, 0x1a2a0c0,10, 0x1a2a100,2, 0x1a2a200,4, 0x1a2a240,15, 0x1a2a280,9, 0x1a2a2c0,10, 0x1a2a300,2, 0x1a2a400,4, 0x1a2a440,15, 0x1a2a480,9, 0x1a2a4c0,10, 0x1a2a500,2, 0x1a2a600,4, 0x1a2a640,15, 0x1a2a680,9, 0x1a2a6c0,10, 0x1a2a700,2, 0x1a2a800,4, 0x1a2a840,15, 0x1a2a880,9, 0x1a2a8c0,10, 0x1a2a900,2, 0x1a2aa00,4, 0x1a2aa40,15, 0x1a2aa80,9, 0x1a2aac0,10, 0x1a2ab00,2, 0x1a2ac00,4, 0x1a2ac40,15, 0x1a2ac80,9, 0x1a2acc0,10, 0x1a2ad00,2, 0x1a2ae00,4, 0x1a2ae40,15, 0x1a2ae80,9, 0x1a2aec0,10, 0x1a2af00,2, 0x1a2b000,4, 0x1a2b040,15, 0x1a2b080,9, 0x1a2b0c0,10, 0x1a2b100,2, 0x1a2b200,4, 0x1a2b240,15, 0x1a2b280,9, 0x1a2b2c0,10, 0x1a2b300,2, 0x1a2b400,4, 0x1a2b440,15, 0x1a2b480,9, 0x1a2b4c0,10, 0x1a2b500,2, 0x1a2b600,4, 0x1a2b640,15, 0x1a2b680,9, 0x1a2b6c0,10, 0x1a2b700,2, 0x1a2b800,4, 0x1a2b840,15, 0x1a2b880,9, 0x1a2b8c0,10, 0x1a2b900,2, 0x1a2ba00,4, 0x1a2ba40,15, 0x1a2ba80,9, 0x1a2bac0,10, 0x1a2bb00,2, 0x1a2bc00,4, 0x1a2bc40,15, 0x1a2bc80,9, 0x1a2bcc0,10, 0x1a2bd00,2, 0x1a2be00,4, 0x1a2be40,15, 0x1a2be80,9, 0x1a2bec0,10, 0x1a2bf00,2, 0x1a2c000,4, 0x1a2c040,15, 0x1a2c080,9, 0x1a2c0c0,6, 0x1a2c100,2, 0x1a2c200,4, 0x1a2c240,15, 0x1a2c280,9, 0x1a2c2c0,6, 0x1a2c300,2, 0x1a2c400,27, 0x1a2c480,4, 0x1a2c4c0,25, 0x1a2c540,6, 0x1a2c560,4, 0x1a2c574,11, 0x1a2c5a4,3, 0x1a2c600,1, 0x1a2c800,128, 0x1a2ca04,16, 0x1a2ca50,4, 0x1a2cc00,128, 0x1a2ce04,16, 0x1a2ce50,4, 0x1a2d000,16, 0x1a2d044,2, 0x1a2d050,4, 0x1a2d080,20, 0x1a2d100,3, 0x1a2d110,5, 0x1a30000,2, 0x1a30100,44, 0x1a30200,6, 0x1a32000,2, 0x1a32020,13, 0x1a40000,8, 0x1a42000,274, 0x1a42600,81, 0x1a42800,135, 0x1a42c00,140, 0x1a43000,4, 0x1a50000,4, 0x1a50020,6, 0x1a50040,2, 0x1a50080,2, 0x1a50100,4, 0x1a50120,6, 0x1a50140,2, 0x1a50180,2, 0x1a50200,4, 0x1a50220,6, 0x1a50240,2, 0x1a50280,2, 0x1a50300,4, 0x1a50320,6, 0x1a50340,2, 0x1a50380,2, 0x1a50400,4, 0x1a50420,6, 0x1a50440,2, 0x1a50480,2, 0x1a50500,4, 0x1a50520,6, 0x1a50540,2, 0x1a50580,2, 0x1a50600,4, 0x1a50620,6, 0x1a50640,2, 0x1a50680,2, 0x1a50700,4, 0x1a50720,6, 0x1a50740,2, 0x1a50780,2, 0x1a50800,4, 0x1a50820,6, 0x1a50840,2, 0x1a50880,2, 0x1a50900,4, 0x1a50920,6, 0x1a50940,2, 0x1a50980,2, 0x1a50a00,4, 0x1a50a20,6, 0x1a50a40,2, 0x1a50a80,2, 0x1a50b00,4, 0x1a50b20,6, 0x1a50b40,2, 0x1a50b80,2, 0x1a50c00,4, 0x1a50c20,6, 0x1a50c40,2, 0x1a50c80,2, 0x1a50d00,4, 0x1a50d20,6, 0x1a50d40,2, 0x1a50d80,2, 0x1a50e00,4, 0x1a50e20,6, 0x1a50e40,2, 0x1a50e80,2, 0x1a50f00,4, 0x1a50f20,6, 0x1a50f40,2, 0x1a50f80,2, 0x1a51000,4, 0x1a51020,6, 0x1a51040,2, 0x1a51080,2, 0x1a51100,4, 0x1a51120,6, 0x1a51140,2, 0x1a51180,2, 0x1a51200,4, 0x1a51220,6, 0x1a51240,2, 0x1a51280,2, 0x1a51300,4, 0x1a51320,6, 0x1a51340,2, 0x1a51380,2, 0x1a51400,4, 0x1a51420,6, 0x1a51440,2, 0x1a51480,2, 0x1a51500,4, 0x1a51520,6, 0x1a51540,2, 0x1a51580,2, 0x1a51600,4, 0x1a51620,6, 0x1a51640,2, 0x1a51680,2, 0x1a51700,4, 0x1a51720,6, 0x1a51740,2, 0x1a51780,2, 0x1a51800,4, 0x1a51820,6, 0x1a51840,2, 0x1a51880,2, 0x1a51900,4, 0x1a51920,6, 0x1a51940,2, 0x1a51980,2, 0x1a51a00,4, 0x1a51a20,6, 0x1a51a40,2, 0x1a51a80,2, 0x1a51b00,4, 0x1a51b20,6, 0x1a51b40,2, 0x1a51b80,2, 0x1a51c00,4, 0x1a51c20,6, 0x1a51c40,2, 0x1a51c80,2, 0x1a51d00,4, 0x1a51d20,6, 0x1a51d40,2, 0x1a51d80,2, 0x1a51e00,4, 0x1a51e20,6, 0x1a51e40,2, 0x1a51e80,2, 0x1a51f00,4, 0x1a51f20,6, 0x1a51f40,2, 0x1a51f80,2, 0x1a52000,4, 0x1a52020,6, 0x1a52040,2, 0x1a52080,2, 0x1a52100,4, 0x1a52120,6, 0x1a52140,2, 0x1a52180,2, 0x1a52200,4, 0x1a52220,6, 0x1a52240,2, 0x1a52280,2, 0x1a52300,4, 0x1a52320,6, 0x1a52340,2, 0x1a52380,2, 0x1a52400,4, 0x1a52420,6, 0x1a52440,2, 0x1a52480,2, 0x1a52500,4, 0x1a52520,6, 0x1a52540,2, 0x1a52580,2, 0x1a52600,4, 0x1a52620,6, 0x1a52640,2, 0x1a52680,2, 0x1a52700,4, 0x1a52720,6, 0x1a52740,2, 0x1a52780,2, 0x1a52800,4, 0x1a52820,6, 0x1a52840,2, 0x1a52880,2, 0x1a52900,4, 0x1a52920,6, 0x1a52940,2, 0x1a52980,2, 0x1a52a00,4, 0x1a52a20,6, 0x1a52a40,2, 0x1a52a80,2, 0x1a52b00,4, 0x1a52b20,6, 0x1a52b40,2, 0x1a52b80,2, 0x1a52c00,4, 0x1a52c20,6, 0x1a52c40,2, 0x1a52c80,2, 0x1a52d00,4, 0x1a52d20,6, 0x1a52d40,2, 0x1a52d80,2, 0x1a52e00,4, 0x1a52e20,6, 0x1a52e40,2, 0x1a52e80,2, 0x1a52f00,4, 0x1a52f20,6, 0x1a52f40,2, 0x1a52f80,2, 0x1a53000,4, 0x1a53020,6, 0x1a53040,2, 0x1a53080,2, 0x1a53100,4, 0x1a53120,6, 0x1a53140,2, 0x1a53180,2, 0x1a53200,4, 0x1a53220,6, 0x1a53240,2, 0x1a53280,2, 0x1a53300,4, 0x1a53320,6, 0x1a53340,2, 0x1a53380,2, 0x1a53400,4, 0x1a53420,6, 0x1a53440,2, 0x1a53480,2, 0x1a53500,4, 0x1a53520,6, 0x1a53540,2, 0x1a53580,2, 0x1a53600,4, 0x1a53620,6, 0x1a53640,2, 0x1a53680,2, 0x1a53700,4, 0x1a53720,6, 0x1a53740,2, 0x1a53780,2, 0x1a53800,4, 0x1a53820,6, 0x1a53840,2, 0x1a53880,2, 0x1a53900,4, 0x1a53920,6, 0x1a53940,2, 0x1a53980,2, 0x1a53a00,4, 0x1a53a20,6, 0x1a53a40,2, 0x1a53a80,2, 0x1a53b00,4, 0x1a53b20,6, 0x1a53b40,2, 0x1a53b80,2, 0x1a53c00,4, 0x1a53c20,6, 0x1a53c40,2, 0x1a53c80,2, 0x1a53d00,4, 0x1a53d20,6, 0x1a53d40,2, 0x1a53d80,2, 0x1a53e00,4, 0x1a53e20,6, 0x1a53e40,2, 0x1a53e80,2, 0x1a53f00,4, 0x1a53f20,6, 0x1a53f40,2, 0x1a53f80,2, 0x1a54000,4, 0x1a54020,6, 0x1a54040,2, 0x1a54080,2, 0x1a54100,4, 0x1a54120,6, 0x1a54140,2, 0x1a54180,2, 0x1a54200,1, 0x1a54208,13, 0x1a54240,1, 0x1a54248,13, 0x1a54280,1, 0x1a54288,13, 0x1a542c0,1, 0x1a542c8,13, 0x1a54300,1, 0x1a54308,13, 0x1a54340,1, 0x1a54348,13, 0x1a54380,1, 0x1a54388,13, 0x1a543c0,1, 0x1a543c8,13, 0x1a54400,1, 0x1a54408,13, 0x1a54440,1, 0x1a54448,13, 0x1a54480,1, 0x1a54488,13, 0x1a544c0,1, 0x1a544c8,13, 0x1a54500,1, 0x1a54508,13, 0x1a54540,1, 0x1a54548,13, 0x1a54580,1, 0x1a54588,13, 0x1a545c0,1, 0x1a545c8,13, 0x1a54600,1, 0x1a54608,13, 0x1a54640,1, 0x1a54648,13, 0x1a54680,1, 0x1a54688,13, 0x1a546c0,1, 0x1a546c8,13, 0x1a54700,1, 0x1a54708,13, 0x1a54740,1, 0x1a54748,13, 0x1a54780,1, 0x1a54788,13, 0x1a547c0,1, 0x1a547c8,13, 0x1a54800,1, 0x1a54808,13, 0x1a54840,1, 0x1a54848,13, 0x1a54880,1, 0x1a54888,13, 0x1a548c0,1, 0x1a548c8,13, 0x1a54900,1, 0x1a54908,13, 0x1a54940,1, 0x1a54948,13, 0x1a54980,1, 0x1a54988,13, 0x1a549c0,1, 0x1a549c8,13, 0x1a54a00,1, 0x1a54a08,13, 0x1a54a40,1, 0x1a54a48,13, 0x1a54a80,1, 0x1a54a88,13, 0x1a54ac0,1, 0x1a54ac8,13, 0x1a54b00,1, 0x1a54b08,13, 0x1a54b40,1, 0x1a54b48,13, 0x1a54b80,1, 0x1a54b88,13, 0x1a54bc0,1, 0x1a54bc8,13, 0x1a54c00,1, 0x1a54c08,13, 0x1a54c40,1, 0x1a54c48,13, 0x1a54c80,1, 0x1a54c88,13, 0x1a54cc0,1, 0x1a54cc8,13, 0x1a54d00,1, 0x1a54d08,13, 0x1a54d40,1, 0x1a54d48,13, 0x1a54d80,1, 0x1a54d88,13, 0x1a54dc0,1, 0x1a54dc8,13, 0x1a54e00,1, 0x1a54e08,13, 0x1a54e40,1, 0x1a54e48,13, 0x1a54e80,1, 0x1a54e88,13, 0x1a54ec0,1, 0x1a54ec8,13, 0x1a54f00,1, 0x1a54f08,13, 0x1a54f40,1, 0x1a54f48,13, 0x1a54f80,1, 0x1a54f88,13, 0x1a54fc0,1, 0x1a54fc8,13, 0x1a55000,1, 0x1a55008,13, 0x1a55040,1, 0x1a55048,13, 0x1a55080,1, 0x1a55088,13, 0x1a550c0,1, 0x1a550c8,13, 0x1a55100,1, 0x1a55108,13, 0x1a55140,1, 0x1a55148,13, 0x1a55180,1, 0x1a55188,13, 0x1a551c0,1, 0x1a551c8,13, 0x1a55200,1, 0x1a55208,13, 0x1a55240,1, 0x1a55248,13, 0x1a55280,4, 0x1a55400,27, 0x1a55480,4, 0x1a554c0,25, 0x1a55540,6, 0x1a55560,4, 0x1a55574,11, 0x1a555a4,18, 0x1a55600,1, 0x1a55800,128, 0x1a55a04,16, 0x1a55a50,4, 0x1a55c00,128, 0x1a55e04,16, 0x1a55e50,4, 0x1a56000,128, 0x1a56204,16, 0x1a56250,4, 0x1a56400,128, 0x1a56604,16, 0x1a56650,4, 0x1a56800,16, 0x1a56844,2, 0x1a56850,4, 0x1a56c00,128, 0x1a56e04,16, 0x1a56e50,4, 0x1a57000,128, 0x1a57204,16, 0x1a57250,4, 0x1a57400,128, 0x1a57604,16, 0x1a57650,4, 0x1a57800,128, 0x1a57a04,16, 0x1a57a50,4, 0x1a57c00,16, 0x1a57c44,2, 0x1a57c50,4, 0x1a57d00,44, 0x1a57e00,20, 0x1a57e80,3, 0x1a57e90,6, 0x1a60000,1, 0x1a60020,6, 0x1a60040,6, 0x1a60060,6, 0x1a60080,10, 0x1a60100,1, 0x1a60120,6, 0x1a60140,6, 0x1a60160,6, 0x1a60180,10, 0x1a60200,2, 0x1a60220,33, 0x1a602b4,2, 0x1a60400,1, 0x1a60420,6, 0x1a60440,6, 0x1a60460,6, 0x1a60480,10, 0x1a60500,1, 0x1a60520,6, 0x1a60540,6, 0x1a60560,6, 0x1a60580,10, 0x1a60600,2, 0x1a60620,33, 0x1a606b4,2, 0x1a60800,1, 0x1a60820,6, 0x1a60840,6, 0x1a60860,6, 0x1a60880,10, 0x1a60900,1, 0x1a60920,6, 0x1a60940,6, 0x1a60960,6, 0x1a60980,10, 0x1a60a00,2, 0x1a60a20,33, 0x1a60ab4,2, 0x1a60c00,1, 0x1a60c20,6, 0x1a60c40,6, 0x1a60c60,6, 0x1a60c80,10, 0x1a60d00,1, 0x1a60d20,6, 0x1a60d40,6, 0x1a60d60,6, 0x1a60d80,10, 0x1a60e00,2, 0x1a60e20,33, 0x1a60eb4,2, 0x1a61000,1, 0x1a61020,6, 0x1a61040,6, 0x1a61060,6, 0x1a61080,10, 0x1a61100,1, 0x1a61120,6, 0x1a61140,6, 0x1a61160,6, 0x1a61180,10, 0x1a61200,2, 0x1a61220,33, 0x1a612b4,2, 0x1a61400,1, 0x1a61420,6, 0x1a61440,6, 0x1a61460,6, 0x1a61480,10, 0x1a61500,1, 0x1a61520,6, 0x1a61540,6, 0x1a61560,6, 0x1a61580,10, 0x1a61600,2, 0x1a61620,33, 0x1a616b4,2, 0x1a61800,1, 0x1a61820,6, 0x1a61840,6, 0x1a61860,6, 0x1a61880,10, 0x1a61900,1, 0x1a61920,6, 0x1a61940,6, 0x1a61960,6, 0x1a61980,10, 0x1a61a00,2, 0x1a61a20,33, 0x1a61ab4,2, 0x1a61c00,1, 0x1a61c20,6, 0x1a61c40,6, 0x1a61c60,6, 0x1a61c80,10, 0x1a61d00,1, 0x1a61d20,6, 0x1a61d40,6, 0x1a61d60,6, 0x1a61d80,10, 0x1a61e00,2, 0x1a61e20,33, 0x1a61eb4,2, 0x1a62000,1, 0x1a62020,6, 0x1a62040,6, 0x1a62060,6, 0x1a62080,10, 0x1a62100,1, 0x1a62120,6, 0x1a62140,6, 0x1a62160,6, 0x1a62180,10, 0x1a62200,2, 0x1a62220,33, 0x1a622b4,2, 0x1a62400,1, 0x1a62420,6, 0x1a62440,6, 0x1a62460,6, 0x1a62480,10, 0x1a62500,1, 0x1a62520,6, 0x1a62540,6, 0x1a62560,6, 0x1a62580,10, 0x1a62600,2, 0x1a62620,33, 0x1a626b4,2, 0x1a62800,1, 0x1a62820,6, 0x1a62840,6, 0x1a62860,6, 0x1a62880,10, 0x1a62900,1, 0x1a62920,6, 0x1a62940,6, 0x1a62960,6, 0x1a62980,10, 0x1a62a00,2, 0x1a62a20,33, 0x1a62ab4,2, 0x1a62c00,1, 0x1a62c20,6, 0x1a62c40,6, 0x1a62c60,6, 0x1a62c80,10, 0x1a62d00,1, 0x1a62d20,6, 0x1a62d40,6, 0x1a62d60,6, 0x1a62d80,10, 0x1a62e00,2, 0x1a62e20,33, 0x1a62eb4,2, 0x1a63000,1, 0x1a63020,6, 0x1a63040,6, 0x1a63060,6, 0x1a63080,10, 0x1a63100,1, 0x1a63120,6, 0x1a63140,6, 0x1a63160,6, 0x1a63180,10, 0x1a63200,2, 0x1a63220,33, 0x1a632b4,2, 0x1a63400,1, 0x1a63420,6, 0x1a63440,6, 0x1a63460,6, 0x1a63480,10, 0x1a63500,1, 0x1a63520,6, 0x1a63540,6, 0x1a63560,6, 0x1a63580,10, 0x1a63600,2, 0x1a63620,33, 0x1a636b4,2, 0x1a63800,1, 0x1a63820,6, 0x1a63840,6, 0x1a63860,6, 0x1a63880,10, 0x1a63900,1, 0x1a63920,6, 0x1a63940,6, 0x1a63960,6, 0x1a63980,10, 0x1a63a00,2, 0x1a63a20,33, 0x1a63ab4,2, 0x1a63c00,1, 0x1a63c20,6, 0x1a63c40,6, 0x1a63c60,6, 0x1a63c80,10, 0x1a63d00,1, 0x1a63d20,6, 0x1a63d40,6, 0x1a63d60,6, 0x1a63d80,10, 0x1a63e00,2, 0x1a63e20,33, 0x1a63eb4,2, 0x1a64000,1, 0x1a64020,6, 0x1a64040,6, 0x1a64060,6, 0x1a64080,10, 0x1a64100,1, 0x1a64120,6, 0x1a64140,6, 0x1a64160,6, 0x1a64180,10, 0x1a64200,2, 0x1a64220,33, 0x1a642b4,2, 0x1a64400,1, 0x1a64420,6, 0x1a64440,6, 0x1a64460,6, 0x1a64480,10, 0x1a64500,1, 0x1a64520,6, 0x1a64540,6, 0x1a64560,6, 0x1a64580,10, 0x1a64600,2, 0x1a64620,33, 0x1a646b4,2, 0x1a64800,1, 0x1a64820,6, 0x1a64840,6, 0x1a64860,6, 0x1a64880,10, 0x1a64900,1, 0x1a64920,6, 0x1a64940,6, 0x1a64960,6, 0x1a64980,10, 0x1a64a00,2, 0x1a64a20,33, 0x1a64ab4,2, 0x1a64c00,1, 0x1a64c20,6, 0x1a64c40,6, 0x1a64c60,6, 0x1a64c80,10, 0x1a64d00,1, 0x1a64d20,6, 0x1a64d40,6, 0x1a64d60,6, 0x1a64d80,10, 0x1a64e00,2, 0x1a64e20,33, 0x1a64eb4,2, 0x1a65000,1, 0x1a65020,6, 0x1a65040,6, 0x1a65060,6, 0x1a65080,10, 0x1a65100,1, 0x1a65120,6, 0x1a65140,6, 0x1a65160,6, 0x1a65180,10, 0x1a65200,2, 0x1a65220,33, 0x1a652b4,2, 0x1a65400,1, 0x1a65420,6, 0x1a65440,6, 0x1a65460,6, 0x1a65480,10, 0x1a65500,1, 0x1a65520,6, 0x1a65540,6, 0x1a65560,6, 0x1a65580,10, 0x1a65600,2, 0x1a65620,33, 0x1a656b4,2, 0x1a65800,1, 0x1a65820,6, 0x1a65840,6, 0x1a65860,6, 0x1a65880,10, 0x1a65900,1, 0x1a65920,6, 0x1a65940,6, 0x1a65960,6, 0x1a65980,10, 0x1a65a00,2, 0x1a65a20,33, 0x1a65ab4,2, 0x1a65c00,1, 0x1a65c20,6, 0x1a65c40,6, 0x1a65c60,6, 0x1a65c80,10, 0x1a65d00,1, 0x1a65d20,6, 0x1a65d40,6, 0x1a65d60,6, 0x1a65d80,10, 0x1a65e00,2, 0x1a65e20,33, 0x1a65eb4,2, 0x1a66000,1, 0x1a66020,6, 0x1a66040,6, 0x1a66060,6, 0x1a66080,10, 0x1a66100,1, 0x1a66120,6, 0x1a66140,6, 0x1a66160,6, 0x1a66180,10, 0x1a66200,2, 0x1a66220,33, 0x1a662b4,2, 0x1a66400,1, 0x1a66420,6, 0x1a66440,6, 0x1a66460,6, 0x1a66480,10, 0x1a66500,1, 0x1a66520,6, 0x1a66540,6, 0x1a66560,6, 0x1a66580,10, 0x1a66600,2, 0x1a66620,33, 0x1a666b4,2, 0x1a66800,1, 0x1a66820,6, 0x1a66840,6, 0x1a66860,6, 0x1a66880,10, 0x1a66900,1, 0x1a66920,6, 0x1a66940,6, 0x1a66960,6, 0x1a66980,10, 0x1a66a00,2, 0x1a66a20,33, 0x1a66ab4,2, 0x1a66c00,1, 0x1a66c20,6, 0x1a66c40,6, 0x1a66c60,6, 0x1a66c80,10, 0x1a66d00,1, 0x1a66d20,6, 0x1a66d40,6, 0x1a66d60,6, 0x1a66d80,10, 0x1a66e00,2, 0x1a66e20,33, 0x1a66eb4,2, 0x1a67000,1, 0x1a67020,6, 0x1a67040,6, 0x1a67060,6, 0x1a67080,10, 0x1a67100,1, 0x1a67120,6, 0x1a67140,6, 0x1a67160,6, 0x1a67180,10, 0x1a67200,2, 0x1a67220,33, 0x1a672b4,2, 0x1a67400,1, 0x1a67420,6, 0x1a67440,6, 0x1a67460,6, 0x1a67480,10, 0x1a67500,1, 0x1a67520,6, 0x1a67540,6, 0x1a67560,6, 0x1a67580,10, 0x1a67600,2, 0x1a67620,33, 0x1a676b4,2, 0x1a67800,1, 0x1a67820,6, 0x1a67840,6, 0x1a67860,6, 0x1a67880,10, 0x1a67900,1, 0x1a67920,6, 0x1a67940,6, 0x1a67960,6, 0x1a67980,10, 0x1a67a00,2, 0x1a67a20,33, 0x1a67ab4,2, 0x1a67c00,1, 0x1a67c20,6, 0x1a67c40,6, 0x1a67c60,6, 0x1a67c80,10, 0x1a67d00,1, 0x1a67d20,6, 0x1a67d40,6, 0x1a67d60,6, 0x1a67d80,10, 0x1a67e00,2, 0x1a67e20,33, 0x1a67eb4,2, 0x1a68000,1, 0x1a68020,6, 0x1a68040,6, 0x1a68060,6, 0x1a68080,10, 0x1a68100,1, 0x1a68120,6, 0x1a68140,6, 0x1a68160,6, 0x1a68180,10, 0x1a68200,2, 0x1a68220,33, 0x1a682b4,2, 0x1a68404,1, 0x1a68410,17, 0x1a68484,1, 0x1a68490,17, 0x1a68504,1, 0x1a68510,17, 0x1a68584,1, 0x1a68590,17, 0x1a68604,1, 0x1a68610,17, 0x1a68684,1, 0x1a68690,17, 0x1a68704,1, 0x1a68710,17, 0x1a68784,1, 0x1a68790,17, 0x1a68804,1, 0x1a68810,17, 0x1a68884,1, 0x1a68890,17, 0x1a68904,1, 0x1a68910,17, 0x1a68984,1, 0x1a68990,17, 0x1a68a04,1, 0x1a68a10,17, 0x1a68a84,1, 0x1a68a90,17, 0x1a68b04,1, 0x1a68b10,17, 0x1a68b84,1, 0x1a68b90,17, 0x1a68c04,1, 0x1a68c10,17, 0x1a68c84,1, 0x1a68c90,17, 0x1a68d04,1, 0x1a68d10,17, 0x1a68d84,1, 0x1a68d90,17, 0x1a68e04,1, 0x1a68e10,17, 0x1a68e84,1, 0x1a68e90,17, 0x1a68f04,1, 0x1a68f10,17, 0x1a68f84,1, 0x1a68f90,17, 0x1a69004,1, 0x1a69010,17, 0x1a69084,1, 0x1a69090,17, 0x1a69104,1, 0x1a69110,17, 0x1a69184,1, 0x1a69190,17, 0x1a69204,1, 0x1a69210,17, 0x1a69284,1, 0x1a69290,17, 0x1a69304,1, 0x1a69310,17, 0x1a69384,1, 0x1a69390,17, 0x1a69404,1, 0x1a69410,17, 0x1a69484,1, 0x1a69490,17, 0x1a69504,1, 0x1a69510,17, 0x1a69584,1, 0x1a69590,17, 0x1a69604,1, 0x1a69610,17, 0x1a69684,1, 0x1a69690,17, 0x1a69704,1, 0x1a69710,17, 0x1a69784,1, 0x1a69790,17, 0x1a69804,1, 0x1a69810,17, 0x1a69884,1, 0x1a69890,17, 0x1a69904,1, 0x1a69910,17, 0x1a69984,1, 0x1a69990,17, 0x1a69a04,1, 0x1a69a10,17, 0x1a69a84,1, 0x1a69a90,17, 0x1a69b04,1, 0x1a69b10,17, 0x1a69b84,1, 0x1a69b90,17, 0x1a69c04,1, 0x1a69c10,17, 0x1a69c84,1, 0x1a69c90,17, 0x1a69d04,1, 0x1a69d10,17, 0x1a69d84,1, 0x1a69d90,17, 0x1a69e04,1, 0x1a69e10,17, 0x1a69e84,1, 0x1a69e90,17, 0x1a69f04,1, 0x1a69f10,17, 0x1a69f84,1, 0x1a69f90,17, 0x1a6a004,1, 0x1a6a010,17, 0x1a6a084,1, 0x1a6a090,17, 0x1a6a104,1, 0x1a6a110,17, 0x1a6a184,1, 0x1a6a190,17, 0x1a6a204,1, 0x1a6a210,17, 0x1a6a284,1, 0x1a6a290,17, 0x1a6a304,1, 0x1a6a310,17, 0x1a6a384,1, 0x1a6a390,17, 0x1a6a404,1, 0x1a6a410,17, 0x1a6a484,1, 0x1a6a490,17, 0x1a6a504,1, 0x1a6a510,17, 0x1a6a584,1, 0x1a6a590,17, 0x1a6a604,1, 0x1a6a610,17, 0x1a6a684,1, 0x1a6a690,17, 0x1a6a704,1, 0x1a6a710,17, 0x1a6a784,1, 0x1a6a790,17, 0x1a6a804,1, 0x1a6a810,17, 0x1a6a884,1, 0x1a6a890,17, 0x1a6a904,1, 0x1a6a910,17, 0x1a6a984,1, 0x1a6a990,17, 0x1a6aa04,1, 0x1a6aa10,17, 0x1a6aa84,1, 0x1a6aa90,17, 0x1a6ab04,1, 0x1a6ab10,17, 0x1a6ab84,1, 0x1a6ab90,17, 0x1a6ac04,1, 0x1a6ac10,17, 0x1a6ac84,1, 0x1a6ac90,17, 0x1a6ad04,1, 0x1a6ad10,17, 0x1a6ad84,1, 0x1a6ad90,17, 0x1a6ae04,1, 0x1a6ae10,17, 0x1a6ae84,1, 0x1a6ae90,17, 0x1a6af04,1, 0x1a6af10,17, 0x1a6af84,1, 0x1a6af90,17, 0x1a6b004,1, 0x1a6b010,17, 0x1a6b084,1, 0x1a6b090,17, 0x1a6b104,1, 0x1a6b110,17, 0x1a6b184,1, 0x1a6b190,17, 0x1a6b204,1, 0x1a6b210,17, 0x1a6b284,1, 0x1a6b290,17, 0x1a6b304,1, 0x1a6b310,17, 0x1a6b384,1, 0x1a6b390,17, 0x1a6b404,1, 0x1a6b410,17, 0x1a6b484,1, 0x1a6b490,17, 0x1a6b504,1, 0x1a6b510,17, 0x1a6b584,1, 0x1a6b590,17, 0x1a6b604,1, 0x1a6b610,17, 0x1a6b684,1, 0x1a6b690,17, 0x1a6b704,1, 0x1a6b710,17, 0x1a6b784,1, 0x1a6b790,17, 0x1a6b804,1, 0x1a6b810,17, 0x1a6b884,1, 0x1a6b890,17, 0x1a6b904,1, 0x1a6b910,17, 0x1a6b984,1, 0x1a6b990,17, 0x1a6ba04,1, 0x1a6ba10,17, 0x1a6ba84,1, 0x1a6ba90,17, 0x1a6bb04,1, 0x1a6bb10,17, 0x1a6bb84,1, 0x1a6bb90,17, 0x1a6bc04,1, 0x1a6bc10,17, 0x1a6bc84,1, 0x1a6bc90,17, 0x1a6bd04,1, 0x1a6bd10,17, 0x1a6bd84,1, 0x1a6bd90,17, 0x1a6be04,1, 0x1a6be10,17, 0x1a6be84,1, 0x1a6be90,17, 0x1a6bf04,1, 0x1a6bf10,17, 0x1a6bf84,1, 0x1a6bf90,17, 0x1a6c004,1, 0x1a6c010,17, 0x1a6c084,1, 0x1a6c090,17, 0x1a6c104,1, 0x1a6c110,17, 0x1a6c184,1, 0x1a6c190,17, 0x1a6c204,1, 0x1a6c210,17, 0x1a6c284,1, 0x1a6c290,17, 0x1a6c304,1, 0x1a6c310,17, 0x1a6c384,1, 0x1a6c390,17, 0x1a6c404,1, 0x1a6c410,17, 0x1a6c484,1, 0x1a6c490,17, 0x1a6c504,1, 0x1a6c510,17, 0x1a6c600,80, 0x1a6c744,1, 0x1a6c750,4, 0x1a6c800,15, 0x1a6c840,9, 0x1a6c880,6, 0x1a6c8a0,6, 0x1a6c900,3, 0x1a6c910,17, 0x1a70000,1, 0x1a70020,6, 0x1a70040,6, 0x1a70060,6, 0x1a70080,10, 0x1a70100,1, 0x1a70120,6, 0x1a70140,6, 0x1a70160,6, 0x1a70180,10, 0x1a70200,2, 0x1a70220,33, 0x1a702b4,2, 0x1a70400,1, 0x1a70420,6, 0x1a70440,6, 0x1a70460,6, 0x1a70480,10, 0x1a70500,1, 0x1a70520,6, 0x1a70540,6, 0x1a70560,6, 0x1a70580,10, 0x1a70600,2, 0x1a70620,33, 0x1a706b4,2, 0x1a70800,1, 0x1a70820,6, 0x1a70840,6, 0x1a70860,6, 0x1a70880,10, 0x1a70900,1, 0x1a70920,6, 0x1a70940,6, 0x1a70960,6, 0x1a70980,10, 0x1a70a00,2, 0x1a70a20,33, 0x1a70ab4,2, 0x1a70c00,1, 0x1a70c20,6, 0x1a70c40,6, 0x1a70c60,6, 0x1a70c80,10, 0x1a70d00,1, 0x1a70d20,6, 0x1a70d40,6, 0x1a70d60,6, 0x1a70d80,10, 0x1a70e00,2, 0x1a70e20,33, 0x1a70eb4,2, 0x1a71000,1, 0x1a71020,6, 0x1a71040,6, 0x1a71060,6, 0x1a71080,10, 0x1a71100,1, 0x1a71120,6, 0x1a71140,6, 0x1a71160,6, 0x1a71180,10, 0x1a71200,2, 0x1a71220,33, 0x1a712b4,2, 0x1a71400,1, 0x1a71420,6, 0x1a71440,6, 0x1a71460,6, 0x1a71480,10, 0x1a71500,1, 0x1a71520,6, 0x1a71540,6, 0x1a71560,6, 0x1a71580,10, 0x1a71600,2, 0x1a71620,33, 0x1a716b4,2, 0x1a71800,1, 0x1a71820,6, 0x1a71840,6, 0x1a71860,6, 0x1a71880,10, 0x1a71900,1, 0x1a71920,6, 0x1a71940,6, 0x1a71960,6, 0x1a71980,10, 0x1a71a00,2, 0x1a71a20,33, 0x1a71ab4,2, 0x1a71c00,1, 0x1a71c20,6, 0x1a71c40,6, 0x1a71c60,6, 0x1a71c80,10, 0x1a71d00,1, 0x1a71d20,6, 0x1a71d40,6, 0x1a71d60,6, 0x1a71d80,10, 0x1a71e00,2, 0x1a71e20,33, 0x1a71eb4,2, 0x1a72000,1, 0x1a72020,6, 0x1a72040,6, 0x1a72060,6, 0x1a72080,10, 0x1a72100,1, 0x1a72120,6, 0x1a72140,6, 0x1a72160,6, 0x1a72180,10, 0x1a72200,2, 0x1a72220,33, 0x1a722b4,2, 0x1a72400,1, 0x1a72420,6, 0x1a72440,6, 0x1a72460,6, 0x1a72480,10, 0x1a72500,1, 0x1a72520,6, 0x1a72540,6, 0x1a72560,6, 0x1a72580,10, 0x1a72600,2, 0x1a72620,33, 0x1a726b4,2, 0x1a72800,1, 0x1a72820,6, 0x1a72840,6, 0x1a72860,6, 0x1a72880,10, 0x1a72900,1, 0x1a72920,6, 0x1a72940,6, 0x1a72960,6, 0x1a72980,10, 0x1a72a00,2, 0x1a72a20,33, 0x1a72ab4,2, 0x1a72c00,1, 0x1a72c20,6, 0x1a72c40,6, 0x1a72c60,6, 0x1a72c80,10, 0x1a72d00,1, 0x1a72d20,6, 0x1a72d40,6, 0x1a72d60,6, 0x1a72d80,10, 0x1a72e00,2, 0x1a72e20,33, 0x1a72eb4,2, 0x1a73000,1, 0x1a73020,6, 0x1a73040,6, 0x1a73060,6, 0x1a73080,10, 0x1a73100,1, 0x1a73120,6, 0x1a73140,6, 0x1a73160,6, 0x1a73180,10, 0x1a73200,2, 0x1a73220,33, 0x1a732b4,2, 0x1a73400,1, 0x1a73420,6, 0x1a73440,6, 0x1a73460,6, 0x1a73480,10, 0x1a73500,1, 0x1a73520,6, 0x1a73540,6, 0x1a73560,6, 0x1a73580,10, 0x1a73600,2, 0x1a73620,33, 0x1a736b4,2, 0x1a73800,1, 0x1a73820,6, 0x1a73840,6, 0x1a73860,6, 0x1a73880,10, 0x1a73900,1, 0x1a73920,6, 0x1a73940,6, 0x1a73960,6, 0x1a73980,10, 0x1a73a00,2, 0x1a73a20,33, 0x1a73ab4,2, 0x1a73c00,1, 0x1a73c20,6, 0x1a73c40,6, 0x1a73c60,6, 0x1a73c80,10, 0x1a73d00,1, 0x1a73d20,6, 0x1a73d40,6, 0x1a73d60,6, 0x1a73d80,10, 0x1a73e00,2, 0x1a73e20,33, 0x1a73eb4,2, 0x1a74000,1, 0x1a74020,6, 0x1a74040,6, 0x1a74060,6, 0x1a74080,10, 0x1a74100,1, 0x1a74120,6, 0x1a74140,6, 0x1a74160,6, 0x1a74180,10, 0x1a74200,2, 0x1a74220,33, 0x1a742b4,2, 0x1a74400,1, 0x1a74420,6, 0x1a74440,6, 0x1a74460,6, 0x1a74480,10, 0x1a74500,1, 0x1a74520,6, 0x1a74540,6, 0x1a74560,6, 0x1a74580,10, 0x1a74600,2, 0x1a74620,33, 0x1a746b4,2, 0x1a74800,1, 0x1a74820,6, 0x1a74840,6, 0x1a74860,6, 0x1a74880,10, 0x1a74900,1, 0x1a74920,6, 0x1a74940,6, 0x1a74960,6, 0x1a74980,10, 0x1a74a00,2, 0x1a74a20,33, 0x1a74ab4,2, 0x1a74c00,1, 0x1a74c20,6, 0x1a74c40,6, 0x1a74c60,6, 0x1a74c80,10, 0x1a74d00,1, 0x1a74d20,6, 0x1a74d40,6, 0x1a74d60,6, 0x1a74d80,10, 0x1a74e00,2, 0x1a74e20,33, 0x1a74eb4,2, 0x1a75000,1, 0x1a75020,6, 0x1a75040,6, 0x1a75060,6, 0x1a75080,10, 0x1a75100,1, 0x1a75120,6, 0x1a75140,6, 0x1a75160,6, 0x1a75180,10, 0x1a75200,2, 0x1a75220,33, 0x1a752b4,2, 0x1a75400,1, 0x1a75420,6, 0x1a75440,6, 0x1a75460,6, 0x1a75480,10, 0x1a75500,1, 0x1a75520,6, 0x1a75540,6, 0x1a75560,6, 0x1a75580,10, 0x1a75600,2, 0x1a75620,33, 0x1a756b4,2, 0x1a75800,1, 0x1a75820,6, 0x1a75840,6, 0x1a75860,6, 0x1a75880,10, 0x1a75900,1, 0x1a75920,6, 0x1a75940,6, 0x1a75960,6, 0x1a75980,10, 0x1a75a00,2, 0x1a75a20,33, 0x1a75ab4,2, 0x1a75c00,1, 0x1a75c20,6, 0x1a75c40,6, 0x1a75c60,6, 0x1a75c80,10, 0x1a75d00,1, 0x1a75d20,6, 0x1a75d40,6, 0x1a75d60,6, 0x1a75d80,10, 0x1a75e00,2, 0x1a75e20,33, 0x1a75eb4,2, 0x1a76000,1, 0x1a76020,6, 0x1a76040,6, 0x1a76060,6, 0x1a76080,10, 0x1a76100,1, 0x1a76120,6, 0x1a76140,6, 0x1a76160,6, 0x1a76180,10, 0x1a76200,2, 0x1a76220,33, 0x1a762b4,2, 0x1a76400,1, 0x1a76420,6, 0x1a76440,6, 0x1a76460,6, 0x1a76480,10, 0x1a76500,1, 0x1a76520,6, 0x1a76540,6, 0x1a76560,6, 0x1a76580,10, 0x1a76600,2, 0x1a76620,33, 0x1a766b4,2, 0x1a76800,1, 0x1a76820,6, 0x1a76840,6, 0x1a76860,6, 0x1a76880,10, 0x1a76900,1, 0x1a76920,6, 0x1a76940,6, 0x1a76960,6, 0x1a76980,10, 0x1a76a00,2, 0x1a76a20,33, 0x1a76ab4,2, 0x1a76c00,1, 0x1a76c20,6, 0x1a76c40,6, 0x1a76c60,6, 0x1a76c80,10, 0x1a76d00,1, 0x1a76d20,6, 0x1a76d40,6, 0x1a76d60,6, 0x1a76d80,10, 0x1a76e00,2, 0x1a76e20,33, 0x1a76eb4,2, 0x1a77000,1, 0x1a77020,6, 0x1a77040,6, 0x1a77060,6, 0x1a77080,10, 0x1a77100,1, 0x1a77120,6, 0x1a77140,6, 0x1a77160,6, 0x1a77180,10, 0x1a77200,2, 0x1a77220,33, 0x1a772b4,2, 0x1a77400,1, 0x1a77420,6, 0x1a77440,6, 0x1a77460,6, 0x1a77480,10, 0x1a77500,1, 0x1a77520,6, 0x1a77540,6, 0x1a77560,6, 0x1a77580,10, 0x1a77600,2, 0x1a77620,33, 0x1a776b4,2, 0x1a77800,1, 0x1a77820,6, 0x1a77840,6, 0x1a77860,6, 0x1a77880,10, 0x1a77900,1, 0x1a77920,6, 0x1a77940,6, 0x1a77960,6, 0x1a77980,10, 0x1a77a00,2, 0x1a77a20,33, 0x1a77ab4,2, 0x1a77c00,1, 0x1a77c20,6, 0x1a77c40,6, 0x1a77c60,6, 0x1a77c80,10, 0x1a77d00,1, 0x1a77d20,6, 0x1a77d40,6, 0x1a77d60,6, 0x1a77d80,10, 0x1a77e00,2, 0x1a77e20,33, 0x1a77eb4,2, 0x1a78000,1, 0x1a78020,6, 0x1a78040,6, 0x1a78060,6, 0x1a78080,10, 0x1a78100,1, 0x1a78120,6, 0x1a78140,6, 0x1a78160,6, 0x1a78180,10, 0x1a78200,2, 0x1a78220,33, 0x1a782b4,2, 0x1a78404,1, 0x1a78410,17, 0x1a78484,1, 0x1a78490,17, 0x1a78504,1, 0x1a78510,17, 0x1a78584,1, 0x1a78590,17, 0x1a78604,1, 0x1a78610,17, 0x1a78684,1, 0x1a78690,17, 0x1a78704,1, 0x1a78710,17, 0x1a78784,1, 0x1a78790,17, 0x1a78804,1, 0x1a78810,17, 0x1a78884,1, 0x1a78890,17, 0x1a78904,1, 0x1a78910,17, 0x1a78984,1, 0x1a78990,17, 0x1a78a04,1, 0x1a78a10,17, 0x1a78a84,1, 0x1a78a90,17, 0x1a78b04,1, 0x1a78b10,17, 0x1a78b84,1, 0x1a78b90,17, 0x1a78c04,1, 0x1a78c10,17, 0x1a78c84,1, 0x1a78c90,17, 0x1a78d04,1, 0x1a78d10,17, 0x1a78d84,1, 0x1a78d90,17, 0x1a78e04,1, 0x1a78e10,17, 0x1a78e84,1, 0x1a78e90,17, 0x1a78f04,1, 0x1a78f10,17, 0x1a78f84,1, 0x1a78f90,17, 0x1a79004,1, 0x1a79010,17, 0x1a79084,1, 0x1a79090,17, 0x1a79104,1, 0x1a79110,17, 0x1a79184,1, 0x1a79190,17, 0x1a79204,1, 0x1a79210,17, 0x1a79284,1, 0x1a79290,17, 0x1a79304,1, 0x1a79310,17, 0x1a79384,1, 0x1a79390,17, 0x1a79404,1, 0x1a79410,17, 0x1a79484,1, 0x1a79490,17, 0x1a79504,1, 0x1a79510,17, 0x1a79584,1, 0x1a79590,17, 0x1a79604,1, 0x1a79610,17, 0x1a79684,1, 0x1a79690,17, 0x1a79704,1, 0x1a79710,17, 0x1a79784,1, 0x1a79790,17, 0x1a79804,1, 0x1a79810,17, 0x1a79884,1, 0x1a79890,17, 0x1a79904,1, 0x1a79910,17, 0x1a79984,1, 0x1a79990,17, 0x1a79a04,1, 0x1a79a10,17, 0x1a79a84,1, 0x1a79a90,17, 0x1a79b04,1, 0x1a79b10,17, 0x1a79b84,1, 0x1a79b90,17, 0x1a79c04,1, 0x1a79c10,17, 0x1a79c84,1, 0x1a79c90,17, 0x1a79d04,1, 0x1a79d10,17, 0x1a79d84,1, 0x1a79d90,17, 0x1a79e04,1, 0x1a79e10,17, 0x1a79e84,1, 0x1a79e90,17, 0x1a79f04,1, 0x1a79f10,17, 0x1a79f84,1, 0x1a79f90,17, 0x1a7a004,1, 0x1a7a010,17, 0x1a7a084,1, 0x1a7a090,17, 0x1a7a104,1, 0x1a7a110,17, 0x1a7a184,1, 0x1a7a190,17, 0x1a7a204,1, 0x1a7a210,17, 0x1a7a284,1, 0x1a7a290,17, 0x1a7a304,1, 0x1a7a310,17, 0x1a7a384,1, 0x1a7a390,17, 0x1a7a404,1, 0x1a7a410,17, 0x1a7a484,1, 0x1a7a490,17, 0x1a7a504,1, 0x1a7a510,17, 0x1a7a584,1, 0x1a7a590,17, 0x1a7a604,1, 0x1a7a610,17, 0x1a7a684,1, 0x1a7a690,17, 0x1a7a704,1, 0x1a7a710,17, 0x1a7a784,1, 0x1a7a790,17, 0x1a7a804,1, 0x1a7a810,17, 0x1a7a884,1, 0x1a7a890,17, 0x1a7a904,1, 0x1a7a910,17, 0x1a7a984,1, 0x1a7a990,17, 0x1a7aa04,1, 0x1a7aa10,17, 0x1a7aa84,1, 0x1a7aa90,17, 0x1a7ab04,1, 0x1a7ab10,17, 0x1a7ab84,1, 0x1a7ab90,17, 0x1a7ac04,1, 0x1a7ac10,17, 0x1a7ac84,1, 0x1a7ac90,17, 0x1a7ad04,1, 0x1a7ad10,17, 0x1a7ad84,1, 0x1a7ad90,17, 0x1a7ae04,1, 0x1a7ae10,17, 0x1a7ae84,1, 0x1a7ae90,17, 0x1a7af04,1, 0x1a7af10,17, 0x1a7af84,1, 0x1a7af90,17, 0x1a7b004,1, 0x1a7b010,17, 0x1a7b084,1, 0x1a7b090,17, 0x1a7b104,1, 0x1a7b110,17, 0x1a7b184,1, 0x1a7b190,17, 0x1a7b204,1, 0x1a7b210,17, 0x1a7b284,1, 0x1a7b290,17, 0x1a7b304,1, 0x1a7b310,17, 0x1a7b384,1, 0x1a7b390,17, 0x1a7b404,1, 0x1a7b410,17, 0x1a7b484,1, 0x1a7b490,17, 0x1a7b504,1, 0x1a7b510,17, 0x1a7b584,1, 0x1a7b590,17, 0x1a7b604,1, 0x1a7b610,17, 0x1a7b684,1, 0x1a7b690,17, 0x1a7b704,1, 0x1a7b710,17, 0x1a7b784,1, 0x1a7b790,17, 0x1a7b804,1, 0x1a7b810,17, 0x1a7b884,1, 0x1a7b890,17, 0x1a7b904,1, 0x1a7b910,17, 0x1a7b984,1, 0x1a7b990,17, 0x1a7ba04,1, 0x1a7ba10,17, 0x1a7ba84,1, 0x1a7ba90,17, 0x1a7bb04,1, 0x1a7bb10,17, 0x1a7bb84,1, 0x1a7bb90,17, 0x1a7bc04,1, 0x1a7bc10,17, 0x1a7bc84,1, 0x1a7bc90,17, 0x1a7bd04,1, 0x1a7bd10,17, 0x1a7bd84,1, 0x1a7bd90,17, 0x1a7be04,1, 0x1a7be10,17, 0x1a7be84,1, 0x1a7be90,17, 0x1a7bf04,1, 0x1a7bf10,17, 0x1a7bf84,1, 0x1a7bf90,17, 0x1a7c004,1, 0x1a7c010,17, 0x1a7c084,1, 0x1a7c090,17, 0x1a7c104,1, 0x1a7c110,17, 0x1a7c184,1, 0x1a7c190,17, 0x1a7c204,1, 0x1a7c210,17, 0x1a7c284,1, 0x1a7c290,17, 0x1a7c304,1, 0x1a7c310,17, 0x1a7c384,1, 0x1a7c390,17, 0x1a7c404,1, 0x1a7c410,17, 0x1a7c484,1, 0x1a7c490,17, 0x1a7c504,1, 0x1a7c510,17, 0x1a7c600,80, 0x1a7c744,1, 0x1a7c750,4, 0x1a7c800,15, 0x1a7c840,9, 0x1a7c880,6, 0x1a7c8a0,6, 0x1a7c900,3, 0x1a7c910,17, 0x1a80000,8, 0x1a80024,1, 0x1a80040,4, 0x1a80060,5, 0x1a80080,1, 0x1a80088,4, 0x1a800a0,1, 0x1a800a8,4, 0x1a800c0,8, 0x1a80100,8, 0x1a80124,1, 0x1a80140,4, 0x1a80160,5, 0x1a80180,1, 0x1a80188,4, 0x1a801a0,1, 0x1a801a8,4, 0x1a801c0,8, 0x1a80200,8, 0x1a80224,1, 0x1a80240,4, 0x1a80260,5, 0x1a80280,1, 0x1a80288,4, 0x1a802a0,1, 0x1a802a8,4, 0x1a802c0,8, 0x1a80300,8, 0x1a80324,1, 0x1a80340,4, 0x1a80360,5, 0x1a80380,1, 0x1a80388,4, 0x1a803a0,1, 0x1a803a8,4, 0x1a803c0,8, 0x1a80400,8, 0x1a80424,1, 0x1a80440,4, 0x1a80460,5, 0x1a80480,1, 0x1a80488,4, 0x1a804a0,1, 0x1a804a8,4, 0x1a804c0,8, 0x1a80500,8, 0x1a80524,1, 0x1a80540,4, 0x1a80560,5, 0x1a80580,1, 0x1a80588,4, 0x1a805a0,1, 0x1a805a8,4, 0x1a805c0,8, 0x1a80600,8, 0x1a80624,1, 0x1a80640,4, 0x1a80660,5, 0x1a80680,1, 0x1a80688,4, 0x1a806a0,1, 0x1a806a8,4, 0x1a806c0,8, 0x1a80700,8, 0x1a80724,1, 0x1a80740,4, 0x1a80760,5, 0x1a80780,1, 0x1a80788,4, 0x1a807a0,1, 0x1a807a8,4, 0x1a807c0,8, 0x1a80800,8, 0x1a80824,1, 0x1a80840,4, 0x1a80860,5, 0x1a80880,1, 0x1a80888,4, 0x1a808a0,1, 0x1a808a8,4, 0x1a808c0,8, 0x1a80900,8, 0x1a80924,1, 0x1a80940,4, 0x1a80960,5, 0x1a80980,1, 0x1a80988,4, 0x1a809a0,1, 0x1a809a8,4, 0x1a809c0,8, 0x1a80a00,8, 0x1a80a24,1, 0x1a80a40,4, 0x1a80a60,5, 0x1a80a80,1, 0x1a80a88,4, 0x1a80aa0,1, 0x1a80aa8,4, 0x1a80ac0,8, 0x1a80b00,8, 0x1a80b24,1, 0x1a80b40,4, 0x1a80b60,5, 0x1a80b80,1, 0x1a80b88,4, 0x1a80ba0,1, 0x1a80ba8,4, 0x1a80bc0,8, 0x1a80c00,8, 0x1a80c24,1, 0x1a80c40,4, 0x1a80c60,5, 0x1a80c80,1, 0x1a80c88,4, 0x1a80ca0,1, 0x1a80ca8,4, 0x1a80cc0,8, 0x1a80d00,8, 0x1a80d24,1, 0x1a80d40,4, 0x1a80d60,5, 0x1a80d80,1, 0x1a80d88,4, 0x1a80da0,1, 0x1a80da8,4, 0x1a80dc0,8, 0x1a80e00,8, 0x1a80e24,1, 0x1a80e40,4, 0x1a80e60,5, 0x1a80e80,1, 0x1a80e88,4, 0x1a80ea0,1, 0x1a80ea8,4, 0x1a80ec0,8, 0x1a80f00,8, 0x1a80f24,1, 0x1a80f40,4, 0x1a80f60,5, 0x1a80f80,1, 0x1a80f88,4, 0x1a80fa0,1, 0x1a80fa8,4, 0x1a80fc0,8, 0x1a81000,8, 0x1a81024,1, 0x1a81040,4, 0x1a81060,5, 0x1a81080,1, 0x1a81088,4, 0x1a810a0,1, 0x1a810a8,4, 0x1a810c0,8, 0x1a81100,8, 0x1a81124,1, 0x1a81140,4, 0x1a81160,5, 0x1a81180,1, 0x1a81188,4, 0x1a811a0,1, 0x1a811a8,4, 0x1a811c0,8, 0x1a81200,8, 0x1a81224,1, 0x1a81240,4, 0x1a81260,5, 0x1a81280,1, 0x1a81288,4, 0x1a812a0,1, 0x1a812a8,4, 0x1a812c0,8, 0x1a81300,8, 0x1a81324,1, 0x1a81340,4, 0x1a81360,5, 0x1a81380,1, 0x1a81388,4, 0x1a813a0,1, 0x1a813a8,4, 0x1a813c0,8, 0x1a81400,8, 0x1a81424,1, 0x1a81440,4, 0x1a81460,5, 0x1a81480,1, 0x1a81488,4, 0x1a814a0,1, 0x1a814a8,4, 0x1a814c0,8, 0x1a81500,8, 0x1a81524,1, 0x1a81540,4, 0x1a81560,5, 0x1a81580,1, 0x1a81588,4, 0x1a815a0,1, 0x1a815a8,4, 0x1a815c0,8, 0x1a81600,8, 0x1a81624,1, 0x1a81640,4, 0x1a81660,5, 0x1a81680,1, 0x1a81688,4, 0x1a816a0,1, 0x1a816a8,4, 0x1a816c0,8, 0x1a81700,8, 0x1a81724,1, 0x1a81740,4, 0x1a81760,5, 0x1a81780,1, 0x1a81788,4, 0x1a817a0,1, 0x1a817a8,4, 0x1a817c0,8, 0x1a81800,8, 0x1a81824,1, 0x1a81840,4, 0x1a81860,5, 0x1a81880,1, 0x1a81888,4, 0x1a818a0,1, 0x1a818a8,4, 0x1a818c0,8, 0x1a81900,8, 0x1a81924,1, 0x1a81940,4, 0x1a81960,5, 0x1a81980,1, 0x1a81988,4, 0x1a819a0,1, 0x1a819a8,4, 0x1a819c0,8, 0x1a81a00,8, 0x1a81a24,1, 0x1a81a40,4, 0x1a81a60,5, 0x1a81a80,1, 0x1a81a88,4, 0x1a81aa0,1, 0x1a81aa8,4, 0x1a81ac0,8, 0x1a81b00,8, 0x1a81b24,1, 0x1a81b40,4, 0x1a81b60,5, 0x1a81b80,1, 0x1a81b88,4, 0x1a81ba0,1, 0x1a81ba8,4, 0x1a81bc0,8, 0x1a81c00,8, 0x1a81c24,1, 0x1a81c40,4, 0x1a81c60,5, 0x1a81c80,1, 0x1a81c88,4, 0x1a81ca0,1, 0x1a81ca8,4, 0x1a81cc0,8, 0x1a81d00,8, 0x1a81d24,1, 0x1a81d40,4, 0x1a81d60,5, 0x1a81d80,1, 0x1a81d88,4, 0x1a81da0,1, 0x1a81da8,4, 0x1a81dc0,8, 0x1a81e00,8, 0x1a81e24,1, 0x1a81e40,4, 0x1a81e60,5, 0x1a81e80,1, 0x1a81e88,4, 0x1a81ea0,1, 0x1a81ea8,4, 0x1a81ec0,8, 0x1a81f00,8, 0x1a81f24,1, 0x1a81f40,4, 0x1a81f60,5, 0x1a81f80,1, 0x1a81f88,4, 0x1a81fa0,1, 0x1a81fa8,4, 0x1a81fc0,8, 0x1a82000,8, 0x1a82024,1, 0x1a82040,4, 0x1a82060,5, 0x1a82080,1, 0x1a82088,4, 0x1a820a0,1, 0x1a820a8,4, 0x1a820c0,8, 0x1a82100,8, 0x1a82124,1, 0x1a82140,4, 0x1a82160,5, 0x1a82180,1, 0x1a82188,4, 0x1a821a0,1, 0x1a821a8,4, 0x1a821c0,8, 0x1a82200,8, 0x1a82224,1, 0x1a82240,4, 0x1a82260,5, 0x1a82280,1, 0x1a82288,4, 0x1a822a0,1, 0x1a822a8,4, 0x1a822c0,8, 0x1a82300,8, 0x1a82324,1, 0x1a82340,4, 0x1a82360,5, 0x1a82380,1, 0x1a82388,4, 0x1a823a0,1, 0x1a823a8,4, 0x1a823c0,8, 0x1a82400,8, 0x1a82424,1, 0x1a82440,4, 0x1a82460,5, 0x1a82480,1, 0x1a82488,4, 0x1a824a0,1, 0x1a824a8,4, 0x1a824c0,8, 0x1a82500,8, 0x1a82524,1, 0x1a82540,4, 0x1a82560,5, 0x1a82580,1, 0x1a82588,4, 0x1a825a0,1, 0x1a825a8,4, 0x1a825c0,8, 0x1a82600,8, 0x1a82624,1, 0x1a82640,4, 0x1a82660,5, 0x1a82680,1, 0x1a82688,4, 0x1a826a0,1, 0x1a826a8,4, 0x1a826c0,8, 0x1a82700,8, 0x1a82724,1, 0x1a82740,4, 0x1a82760,5, 0x1a82780,1, 0x1a82788,4, 0x1a827a0,1, 0x1a827a8,4, 0x1a827c0,8, 0x1a82800,8, 0x1a82824,1, 0x1a82840,4, 0x1a82860,5, 0x1a82880,1, 0x1a82888,4, 0x1a828a0,1, 0x1a828a8,4, 0x1a828c0,8, 0x1a82900,8, 0x1a82924,1, 0x1a82940,4, 0x1a82960,5, 0x1a82980,1, 0x1a82988,4, 0x1a829a0,1, 0x1a829a8,4, 0x1a829c0,8, 0x1a82a00,8, 0x1a82a24,1, 0x1a82a40,4, 0x1a82a60,5, 0x1a82a80,1, 0x1a82a88,4, 0x1a82aa0,1, 0x1a82aa8,4, 0x1a82ac0,8, 0x1a82b00,8, 0x1a82b24,1, 0x1a82b40,4, 0x1a82b60,5, 0x1a82b80,1, 0x1a82b88,4, 0x1a82ba0,1, 0x1a82ba8,4, 0x1a82bc0,8, 0x1a82c00,8, 0x1a82c24,1, 0x1a82c40,4, 0x1a82c60,5, 0x1a82c80,1, 0x1a82c88,4, 0x1a82ca0,1, 0x1a82ca8,4, 0x1a82cc0,8, 0x1a82d00,8, 0x1a82d24,1, 0x1a82d40,4, 0x1a82d60,5, 0x1a82d80,1, 0x1a82d88,4, 0x1a82da0,1, 0x1a82da8,4, 0x1a82dc0,8, 0x1a82e00,8, 0x1a82e24,1, 0x1a82e40,4, 0x1a82e60,5, 0x1a82e80,1, 0x1a82e88,4, 0x1a82ea0,1, 0x1a82ea8,4, 0x1a82ec0,8, 0x1a82f00,8, 0x1a82f24,1, 0x1a82f40,4, 0x1a82f60,5, 0x1a82f80,1, 0x1a82f88,4, 0x1a82fa0,1, 0x1a82fa8,4, 0x1a82fc0,8, 0x1a83000,8, 0x1a83024,1, 0x1a83040,4, 0x1a83060,5, 0x1a83080,1, 0x1a83088,4, 0x1a830a0,1, 0x1a830a8,4, 0x1a830c0,8, 0x1a83100,8, 0x1a83124,1, 0x1a83140,4, 0x1a83160,5, 0x1a83180,1, 0x1a83188,4, 0x1a831a0,1, 0x1a831a8,4, 0x1a831c0,8, 0x1a83200,8, 0x1a83224,1, 0x1a83240,4, 0x1a83260,5, 0x1a83280,1, 0x1a83288,4, 0x1a832a0,1, 0x1a832a8,4, 0x1a832c0,8, 0x1a83300,8, 0x1a83324,1, 0x1a83340,4, 0x1a83360,5, 0x1a83380,1, 0x1a83388,4, 0x1a833a0,1, 0x1a833a8,4, 0x1a833c0,8, 0x1a83400,8, 0x1a83424,1, 0x1a83440,4, 0x1a83460,5, 0x1a83480,1, 0x1a83488,4, 0x1a834a0,1, 0x1a834a8,4, 0x1a834c0,8, 0x1a83500,8, 0x1a83524,1, 0x1a83540,4, 0x1a83560,5, 0x1a83580,1, 0x1a83588,4, 0x1a835a0,1, 0x1a835a8,4, 0x1a835c0,8, 0x1a83600,8, 0x1a83624,1, 0x1a83640,4, 0x1a83660,5, 0x1a83680,1, 0x1a83688,4, 0x1a836a0,1, 0x1a836a8,4, 0x1a836c0,8, 0x1a83700,8, 0x1a83724,1, 0x1a83740,4, 0x1a83760,5, 0x1a83780,1, 0x1a83788,4, 0x1a837a0,1, 0x1a837a8,4, 0x1a837c0,8, 0x1a83800,8, 0x1a83824,1, 0x1a83840,4, 0x1a83860,5, 0x1a83880,1, 0x1a83888,4, 0x1a838a0,1, 0x1a838a8,4, 0x1a838c0,8, 0x1a83900,8, 0x1a83924,1, 0x1a83940,4, 0x1a83960,5, 0x1a83980,1, 0x1a83988,4, 0x1a839a0,1, 0x1a839a8,4, 0x1a839c0,8, 0x1a83a00,8, 0x1a83a24,1, 0x1a83a40,4, 0x1a83a60,5, 0x1a83a80,1, 0x1a83a88,4, 0x1a83aa0,1, 0x1a83aa8,4, 0x1a83ac0,8, 0x1a83b00,8, 0x1a83b24,1, 0x1a83b40,4, 0x1a83b60,5, 0x1a83b80,1, 0x1a83b88,4, 0x1a83ba0,1, 0x1a83ba8,4, 0x1a83bc0,8, 0x1a83c00,8, 0x1a83c24,1, 0x1a83c40,4, 0x1a83c60,5, 0x1a83c80,1, 0x1a83c88,4, 0x1a83ca0,1, 0x1a83ca8,4, 0x1a83cc0,8, 0x1a83d00,8, 0x1a83d24,1, 0x1a83d40,4, 0x1a83d60,5, 0x1a83d80,1, 0x1a83d88,4, 0x1a83da0,1, 0x1a83da8,4, 0x1a83dc0,8, 0x1a83e00,8, 0x1a83e24,1, 0x1a83e40,4, 0x1a83e60,5, 0x1a83e80,1, 0x1a83e88,4, 0x1a83ea0,1, 0x1a83ea8,4, 0x1a83ec0,8, 0x1a83f00,8, 0x1a83f24,1, 0x1a83f40,4, 0x1a83f60,5, 0x1a83f80,1, 0x1a83f88,4, 0x1a83fa0,1, 0x1a83fa8,4, 0x1a83fc0,8, 0x1a84000,8, 0x1a84024,1, 0x1a84040,4, 0x1a84060,5, 0x1a84080,1, 0x1a84088,4, 0x1a840a0,1, 0x1a840a8,4, 0x1a840c0,8, 0x1a84100,8, 0x1a84124,1, 0x1a84140,4, 0x1a84160,5, 0x1a84180,1, 0x1a84188,4, 0x1a841a0,1, 0x1a841a8,4, 0x1a841c0,8, 0x1a84200,7, 0x1a84220,3, 0x1a84240,7, 0x1a84260,3, 0x1a84280,7, 0x1a842a0,3, 0x1a842c0,7, 0x1a842e0,3, 0x1a84300,7, 0x1a84320,3, 0x1a84340,7, 0x1a84360,3, 0x1a84380,7, 0x1a843a0,3, 0x1a843c0,7, 0x1a843e0,3, 0x1a84400,7, 0x1a84420,3, 0x1a84440,7, 0x1a84460,3, 0x1a84480,7, 0x1a844a0,3, 0x1a844c0,7, 0x1a844e0,3, 0x1a84500,7, 0x1a84520,3, 0x1a84540,7, 0x1a84560,3, 0x1a84580,7, 0x1a845a0,3, 0x1a845c0,7, 0x1a845e0,3, 0x1a84600,7, 0x1a84620,3, 0x1a84640,7, 0x1a84660,3, 0x1a84680,7, 0x1a846a0,3, 0x1a846c0,7, 0x1a846e0,3, 0x1a84700,7, 0x1a84720,3, 0x1a84740,7, 0x1a84760,3, 0x1a84780,7, 0x1a847a0,3, 0x1a847c0,7, 0x1a847e0,3, 0x1a84800,7, 0x1a84820,3, 0x1a84840,7, 0x1a84860,3, 0x1a84880,7, 0x1a848a0,3, 0x1a848c0,7, 0x1a848e0,3, 0x1a84900,7, 0x1a84920,3, 0x1a84940,7, 0x1a84960,3, 0x1a84980,7, 0x1a849a0,3, 0x1a849c0,7, 0x1a849e0,3, 0x1a84a00,7, 0x1a84a20,3, 0x1a84a40,7, 0x1a84a60,3, 0x1a84a80,7, 0x1a84aa0,3, 0x1a84ac0,7, 0x1a84ae0,3, 0x1a84b00,7, 0x1a84b20,3, 0x1a84b40,7, 0x1a84b60,3, 0x1a84b80,7, 0x1a84ba0,3, 0x1a84bc0,7, 0x1a84be0,3, 0x1a84c00,7, 0x1a84c20,3, 0x1a84c40,7, 0x1a84c60,3, 0x1a84c80,7, 0x1a84ca0,3, 0x1a84cc0,7, 0x1a84ce0,3, 0x1a84d00,7, 0x1a84d20,3, 0x1a84d40,7, 0x1a84d60,3, 0x1a84d80,7, 0x1a84da0,3, 0x1a84dc0,7, 0x1a84de0,3, 0x1a84e00,7, 0x1a84e20,3, 0x1a84e40,7, 0x1a84e60,3, 0x1a84e80,7, 0x1a84ea0,3, 0x1a84ec0,7, 0x1a84ee0,3, 0x1a84f00,7, 0x1a84f20,3, 0x1a84f40,7, 0x1a84f60,3, 0x1a84f80,7, 0x1a84fa0,3, 0x1a84fc0,7, 0x1a84fe0,3, 0x1a85000,7, 0x1a85020,3, 0x1a85040,7, 0x1a85060,3, 0x1a85080,7, 0x1a850a0,3, 0x1a850c0,7, 0x1a850e0,3, 0x1a85100,7, 0x1a85120,3, 0x1a85140,7, 0x1a85160,3, 0x1a85180,7, 0x1a851a0,3, 0x1a851c0,7, 0x1a851e0,3, 0x1a85200,7, 0x1a85220,3, 0x1a85240,7, 0x1a85260,3, 0x1a85280,28, 0x1a85400,15, 0x1a85440,9, 0x1a85480,6, 0x1a854a0,6, 0x1a85604,114, 0x1a85800,8, 0x1a85a04,66, 0x1a85c00,3, 0x1a85c10,58, 0x1a85d00,1, 0x1a85d08,3, 0x1a85d18,6, 0x1a88000,8, 0x1a88024,1, 0x1a88040,4, 0x1a88060,5, 0x1a88080,1, 0x1a88088,4, 0x1a880a0,1, 0x1a880a8,4, 0x1a880c0,8, 0x1a88100,8, 0x1a88124,1, 0x1a88140,4, 0x1a88160,5, 0x1a88180,1, 0x1a88188,4, 0x1a881a0,1, 0x1a881a8,4, 0x1a881c0,8, 0x1a88200,8, 0x1a88224,1, 0x1a88240,4, 0x1a88260,5, 0x1a88280,1, 0x1a88288,4, 0x1a882a0,1, 0x1a882a8,4, 0x1a882c0,8, 0x1a88300,8, 0x1a88324,1, 0x1a88340,4, 0x1a88360,5, 0x1a88380,1, 0x1a88388,4, 0x1a883a0,1, 0x1a883a8,4, 0x1a883c0,8, 0x1a88400,8, 0x1a88424,1, 0x1a88440,4, 0x1a88460,5, 0x1a88480,1, 0x1a88488,4, 0x1a884a0,1, 0x1a884a8,4, 0x1a884c0,8, 0x1a88500,8, 0x1a88524,1, 0x1a88540,4, 0x1a88560,5, 0x1a88580,1, 0x1a88588,4, 0x1a885a0,1, 0x1a885a8,4, 0x1a885c0,8, 0x1a88600,8, 0x1a88624,1, 0x1a88640,4, 0x1a88660,5, 0x1a88680,1, 0x1a88688,4, 0x1a886a0,1, 0x1a886a8,4, 0x1a886c0,8, 0x1a88700,8, 0x1a88724,1, 0x1a88740,4, 0x1a88760,5, 0x1a88780,1, 0x1a88788,4, 0x1a887a0,1, 0x1a887a8,4, 0x1a887c0,8, 0x1a88800,8, 0x1a88824,1, 0x1a88840,4, 0x1a88860,5, 0x1a88880,1, 0x1a88888,4, 0x1a888a0,1, 0x1a888a8,4, 0x1a888c0,8, 0x1a88900,8, 0x1a88924,1, 0x1a88940,4, 0x1a88960,5, 0x1a88980,1, 0x1a88988,4, 0x1a889a0,1, 0x1a889a8,4, 0x1a889c0,8, 0x1a88a00,8, 0x1a88a24,1, 0x1a88a40,4, 0x1a88a60,5, 0x1a88a80,1, 0x1a88a88,4, 0x1a88aa0,1, 0x1a88aa8,4, 0x1a88ac0,8, 0x1a88b00,8, 0x1a88b24,1, 0x1a88b40,4, 0x1a88b60,5, 0x1a88b80,1, 0x1a88b88,4, 0x1a88ba0,1, 0x1a88ba8,4, 0x1a88bc0,8, 0x1a88c00,8, 0x1a88c24,1, 0x1a88c40,4, 0x1a88c60,5, 0x1a88c80,1, 0x1a88c88,4, 0x1a88ca0,1, 0x1a88ca8,4, 0x1a88cc0,8, 0x1a88d00,8, 0x1a88d24,1, 0x1a88d40,4, 0x1a88d60,5, 0x1a88d80,1, 0x1a88d88,4, 0x1a88da0,1, 0x1a88da8,4, 0x1a88dc0,8, 0x1a88e00,8, 0x1a88e24,1, 0x1a88e40,4, 0x1a88e60,5, 0x1a88e80,1, 0x1a88e88,4, 0x1a88ea0,1, 0x1a88ea8,4, 0x1a88ec0,8, 0x1a88f00,8, 0x1a88f24,1, 0x1a88f40,4, 0x1a88f60,5, 0x1a88f80,1, 0x1a88f88,4, 0x1a88fa0,1, 0x1a88fa8,4, 0x1a88fc0,8, 0x1a89000,8, 0x1a89024,1, 0x1a89040,4, 0x1a89060,5, 0x1a89080,1, 0x1a89088,4, 0x1a890a0,1, 0x1a890a8,4, 0x1a890c0,8, 0x1a89100,8, 0x1a89124,1, 0x1a89140,4, 0x1a89160,5, 0x1a89180,1, 0x1a89188,4, 0x1a891a0,1, 0x1a891a8,4, 0x1a891c0,8, 0x1a89200,8, 0x1a89224,1, 0x1a89240,4, 0x1a89260,5, 0x1a89280,1, 0x1a89288,4, 0x1a892a0,1, 0x1a892a8,4, 0x1a892c0,8, 0x1a89300,8, 0x1a89324,1, 0x1a89340,4, 0x1a89360,5, 0x1a89380,1, 0x1a89388,4, 0x1a893a0,1, 0x1a893a8,4, 0x1a893c0,8, 0x1a89400,8, 0x1a89424,1, 0x1a89440,4, 0x1a89460,5, 0x1a89480,1, 0x1a89488,4, 0x1a894a0,1, 0x1a894a8,4, 0x1a894c0,8, 0x1a89500,8, 0x1a89524,1, 0x1a89540,4, 0x1a89560,5, 0x1a89580,1, 0x1a89588,4, 0x1a895a0,1, 0x1a895a8,4, 0x1a895c0,8, 0x1a89600,8, 0x1a89624,1, 0x1a89640,4, 0x1a89660,5, 0x1a89680,1, 0x1a89688,4, 0x1a896a0,1, 0x1a896a8,4, 0x1a896c0,8, 0x1a89700,8, 0x1a89724,1, 0x1a89740,4, 0x1a89760,5, 0x1a89780,1, 0x1a89788,4, 0x1a897a0,1, 0x1a897a8,4, 0x1a897c0,8, 0x1a89800,8, 0x1a89824,1, 0x1a89840,4, 0x1a89860,5, 0x1a89880,1, 0x1a89888,4, 0x1a898a0,1, 0x1a898a8,4, 0x1a898c0,8, 0x1a89900,8, 0x1a89924,1, 0x1a89940,4, 0x1a89960,5, 0x1a89980,1, 0x1a89988,4, 0x1a899a0,1, 0x1a899a8,4, 0x1a899c0,8, 0x1a89a00,8, 0x1a89a24,1, 0x1a89a40,4, 0x1a89a60,5, 0x1a89a80,1, 0x1a89a88,4, 0x1a89aa0,1, 0x1a89aa8,4, 0x1a89ac0,8, 0x1a89b00,8, 0x1a89b24,1, 0x1a89b40,4, 0x1a89b60,5, 0x1a89b80,1, 0x1a89b88,4, 0x1a89ba0,1, 0x1a89ba8,4, 0x1a89bc0,8, 0x1a89c00,8, 0x1a89c24,1, 0x1a89c40,4, 0x1a89c60,5, 0x1a89c80,1, 0x1a89c88,4, 0x1a89ca0,1, 0x1a89ca8,4, 0x1a89cc0,8, 0x1a89d00,8, 0x1a89d24,1, 0x1a89d40,4, 0x1a89d60,5, 0x1a89d80,1, 0x1a89d88,4, 0x1a89da0,1, 0x1a89da8,4, 0x1a89dc0,8, 0x1a89e00,8, 0x1a89e24,1, 0x1a89e40,4, 0x1a89e60,5, 0x1a89e80,1, 0x1a89e88,4, 0x1a89ea0,1, 0x1a89ea8,4, 0x1a89ec0,8, 0x1a89f00,8, 0x1a89f24,1, 0x1a89f40,4, 0x1a89f60,5, 0x1a89f80,1, 0x1a89f88,4, 0x1a89fa0,1, 0x1a89fa8,4, 0x1a89fc0,8, 0x1a8a000,8, 0x1a8a024,1, 0x1a8a040,4, 0x1a8a060,5, 0x1a8a080,1, 0x1a8a088,4, 0x1a8a0a0,1, 0x1a8a0a8,4, 0x1a8a0c0,8, 0x1a8a100,8, 0x1a8a124,1, 0x1a8a140,4, 0x1a8a160,5, 0x1a8a180,1, 0x1a8a188,4, 0x1a8a1a0,1, 0x1a8a1a8,4, 0x1a8a1c0,8, 0x1a8a200,8, 0x1a8a224,1, 0x1a8a240,4, 0x1a8a260,5, 0x1a8a280,1, 0x1a8a288,4, 0x1a8a2a0,1, 0x1a8a2a8,4, 0x1a8a2c0,8, 0x1a8a300,8, 0x1a8a324,1, 0x1a8a340,4, 0x1a8a360,5, 0x1a8a380,1, 0x1a8a388,4, 0x1a8a3a0,1, 0x1a8a3a8,4, 0x1a8a3c0,8, 0x1a8a400,8, 0x1a8a424,1, 0x1a8a440,4, 0x1a8a460,5, 0x1a8a480,1, 0x1a8a488,4, 0x1a8a4a0,1, 0x1a8a4a8,4, 0x1a8a4c0,8, 0x1a8a500,8, 0x1a8a524,1, 0x1a8a540,4, 0x1a8a560,5, 0x1a8a580,1, 0x1a8a588,4, 0x1a8a5a0,1, 0x1a8a5a8,4, 0x1a8a5c0,8, 0x1a8a600,8, 0x1a8a624,1, 0x1a8a640,4, 0x1a8a660,5, 0x1a8a680,1, 0x1a8a688,4, 0x1a8a6a0,1, 0x1a8a6a8,4, 0x1a8a6c0,8, 0x1a8a700,8, 0x1a8a724,1, 0x1a8a740,4, 0x1a8a760,5, 0x1a8a780,1, 0x1a8a788,4, 0x1a8a7a0,1, 0x1a8a7a8,4, 0x1a8a7c0,8, 0x1a8a800,8, 0x1a8a824,1, 0x1a8a840,4, 0x1a8a860,5, 0x1a8a880,1, 0x1a8a888,4, 0x1a8a8a0,1, 0x1a8a8a8,4, 0x1a8a8c0,8, 0x1a8a900,8, 0x1a8a924,1, 0x1a8a940,4, 0x1a8a960,5, 0x1a8a980,1, 0x1a8a988,4, 0x1a8a9a0,1, 0x1a8a9a8,4, 0x1a8a9c0,8, 0x1a8aa00,8, 0x1a8aa24,1, 0x1a8aa40,4, 0x1a8aa60,5, 0x1a8aa80,1, 0x1a8aa88,4, 0x1a8aaa0,1, 0x1a8aaa8,4, 0x1a8aac0,8, 0x1a8ab00,8, 0x1a8ab24,1, 0x1a8ab40,4, 0x1a8ab60,5, 0x1a8ab80,1, 0x1a8ab88,4, 0x1a8aba0,1, 0x1a8aba8,4, 0x1a8abc0,8, 0x1a8ac00,8, 0x1a8ac24,1, 0x1a8ac40,4, 0x1a8ac60,5, 0x1a8ac80,1, 0x1a8ac88,4, 0x1a8aca0,1, 0x1a8aca8,4, 0x1a8acc0,8, 0x1a8ad00,8, 0x1a8ad24,1, 0x1a8ad40,4, 0x1a8ad60,5, 0x1a8ad80,1, 0x1a8ad88,4, 0x1a8ada0,1, 0x1a8ada8,4, 0x1a8adc0,8, 0x1a8ae00,8, 0x1a8ae24,1, 0x1a8ae40,4, 0x1a8ae60,5, 0x1a8ae80,1, 0x1a8ae88,4, 0x1a8aea0,1, 0x1a8aea8,4, 0x1a8aec0,8, 0x1a8af00,8, 0x1a8af24,1, 0x1a8af40,4, 0x1a8af60,5, 0x1a8af80,1, 0x1a8af88,4, 0x1a8afa0,1, 0x1a8afa8,4, 0x1a8afc0,8, 0x1a8b000,8, 0x1a8b024,1, 0x1a8b040,4, 0x1a8b060,5, 0x1a8b080,1, 0x1a8b088,4, 0x1a8b0a0,1, 0x1a8b0a8,4, 0x1a8b0c0,8, 0x1a8b100,8, 0x1a8b124,1, 0x1a8b140,4, 0x1a8b160,5, 0x1a8b180,1, 0x1a8b188,4, 0x1a8b1a0,1, 0x1a8b1a8,4, 0x1a8b1c0,8, 0x1a8b200,8, 0x1a8b224,1, 0x1a8b240,4, 0x1a8b260,5, 0x1a8b280,1, 0x1a8b288,4, 0x1a8b2a0,1, 0x1a8b2a8,4, 0x1a8b2c0,8, 0x1a8b300,8, 0x1a8b324,1, 0x1a8b340,4, 0x1a8b360,5, 0x1a8b380,1, 0x1a8b388,4, 0x1a8b3a0,1, 0x1a8b3a8,4, 0x1a8b3c0,8, 0x1a8b400,8, 0x1a8b424,1, 0x1a8b440,4, 0x1a8b460,5, 0x1a8b480,1, 0x1a8b488,4, 0x1a8b4a0,1, 0x1a8b4a8,4, 0x1a8b4c0,8, 0x1a8b500,8, 0x1a8b524,1, 0x1a8b540,4, 0x1a8b560,5, 0x1a8b580,1, 0x1a8b588,4, 0x1a8b5a0,1, 0x1a8b5a8,4, 0x1a8b5c0,8, 0x1a8b600,8, 0x1a8b624,1, 0x1a8b640,4, 0x1a8b660,5, 0x1a8b680,1, 0x1a8b688,4, 0x1a8b6a0,1, 0x1a8b6a8,4, 0x1a8b6c0,8, 0x1a8b700,8, 0x1a8b724,1, 0x1a8b740,4, 0x1a8b760,5, 0x1a8b780,1, 0x1a8b788,4, 0x1a8b7a0,1, 0x1a8b7a8,4, 0x1a8b7c0,8, 0x1a8b800,8, 0x1a8b824,1, 0x1a8b840,4, 0x1a8b860,5, 0x1a8b880,1, 0x1a8b888,4, 0x1a8b8a0,1, 0x1a8b8a8,4, 0x1a8b8c0,8, 0x1a8b900,8, 0x1a8b924,1, 0x1a8b940,4, 0x1a8b960,5, 0x1a8b980,1, 0x1a8b988,4, 0x1a8b9a0,1, 0x1a8b9a8,4, 0x1a8b9c0,8, 0x1a8ba00,8, 0x1a8ba24,1, 0x1a8ba40,4, 0x1a8ba60,5, 0x1a8ba80,1, 0x1a8ba88,4, 0x1a8baa0,1, 0x1a8baa8,4, 0x1a8bac0,8, 0x1a8bb00,8, 0x1a8bb24,1, 0x1a8bb40,4, 0x1a8bb60,5, 0x1a8bb80,1, 0x1a8bb88,4, 0x1a8bba0,1, 0x1a8bba8,4, 0x1a8bbc0,8, 0x1a8bc00,8, 0x1a8bc24,1, 0x1a8bc40,4, 0x1a8bc60,5, 0x1a8bc80,1, 0x1a8bc88,4, 0x1a8bca0,1, 0x1a8bca8,4, 0x1a8bcc0,8, 0x1a8bd00,8, 0x1a8bd24,1, 0x1a8bd40,4, 0x1a8bd60,5, 0x1a8bd80,1, 0x1a8bd88,4, 0x1a8bda0,1, 0x1a8bda8,4, 0x1a8bdc0,8, 0x1a8be00,8, 0x1a8be24,1, 0x1a8be40,4, 0x1a8be60,5, 0x1a8be80,1, 0x1a8be88,4, 0x1a8bea0,1, 0x1a8bea8,4, 0x1a8bec0,8, 0x1a8bf00,8, 0x1a8bf24,1, 0x1a8bf40,4, 0x1a8bf60,5, 0x1a8bf80,1, 0x1a8bf88,4, 0x1a8bfa0,1, 0x1a8bfa8,4, 0x1a8bfc0,8, 0x1a8c000,8, 0x1a8c024,1, 0x1a8c040,4, 0x1a8c060,5, 0x1a8c080,1, 0x1a8c088,4, 0x1a8c0a0,1, 0x1a8c0a8,4, 0x1a8c0c0,8, 0x1a8c100,8, 0x1a8c124,1, 0x1a8c140,4, 0x1a8c160,5, 0x1a8c180,1, 0x1a8c188,4, 0x1a8c1a0,1, 0x1a8c1a8,4, 0x1a8c1c0,8, 0x1a8c200,7, 0x1a8c220,3, 0x1a8c240,7, 0x1a8c260,3, 0x1a8c280,7, 0x1a8c2a0,3, 0x1a8c2c0,7, 0x1a8c2e0,3, 0x1a8c300,7, 0x1a8c320,3, 0x1a8c340,7, 0x1a8c360,3, 0x1a8c380,7, 0x1a8c3a0,3, 0x1a8c3c0,7, 0x1a8c3e0,3, 0x1a8c400,7, 0x1a8c420,3, 0x1a8c440,7, 0x1a8c460,3, 0x1a8c480,7, 0x1a8c4a0,3, 0x1a8c4c0,7, 0x1a8c4e0,3, 0x1a8c500,7, 0x1a8c520,3, 0x1a8c540,7, 0x1a8c560,3, 0x1a8c580,7, 0x1a8c5a0,3, 0x1a8c5c0,7, 0x1a8c5e0,3, 0x1a8c600,7, 0x1a8c620,3, 0x1a8c640,7, 0x1a8c660,3, 0x1a8c680,7, 0x1a8c6a0,3, 0x1a8c6c0,7, 0x1a8c6e0,3, 0x1a8c700,7, 0x1a8c720,3, 0x1a8c740,7, 0x1a8c760,3, 0x1a8c780,7, 0x1a8c7a0,3, 0x1a8c7c0,7, 0x1a8c7e0,3, 0x1a8c800,7, 0x1a8c820,3, 0x1a8c840,7, 0x1a8c860,3, 0x1a8c880,7, 0x1a8c8a0,3, 0x1a8c8c0,7, 0x1a8c8e0,3, 0x1a8c900,7, 0x1a8c920,3, 0x1a8c940,7, 0x1a8c960,3, 0x1a8c980,7, 0x1a8c9a0,3, 0x1a8c9c0,7, 0x1a8c9e0,3, 0x1a8ca00,7, 0x1a8ca20,3, 0x1a8ca40,7, 0x1a8ca60,3, 0x1a8ca80,7, 0x1a8caa0,3, 0x1a8cac0,7, 0x1a8cae0,3, 0x1a8cb00,7, 0x1a8cb20,3, 0x1a8cb40,7, 0x1a8cb60,3, 0x1a8cb80,7, 0x1a8cba0,3, 0x1a8cbc0,7, 0x1a8cbe0,3, 0x1a8cc00,7, 0x1a8cc20,3, 0x1a8cc40,7, 0x1a8cc60,3, 0x1a8cc80,7, 0x1a8cca0,3, 0x1a8ccc0,7, 0x1a8cce0,3, 0x1a8cd00,7, 0x1a8cd20,3, 0x1a8cd40,7, 0x1a8cd60,3, 0x1a8cd80,7, 0x1a8cda0,3, 0x1a8cdc0,7, 0x1a8cde0,3, 0x1a8ce00,7, 0x1a8ce20,3, 0x1a8ce40,7, 0x1a8ce60,3, 0x1a8ce80,7, 0x1a8cea0,3, 0x1a8cec0,7, 0x1a8cee0,3, 0x1a8cf00,7, 0x1a8cf20,3, 0x1a8cf40,7, 0x1a8cf60,3, 0x1a8cf80,7, 0x1a8cfa0,3, 0x1a8cfc0,7, 0x1a8cfe0,3, 0x1a8d000,7, 0x1a8d020,3, 0x1a8d040,7, 0x1a8d060,3, 0x1a8d080,7, 0x1a8d0a0,3, 0x1a8d0c0,7, 0x1a8d0e0,3, 0x1a8d100,7, 0x1a8d120,3, 0x1a8d140,7, 0x1a8d160,3, 0x1a8d180,7, 0x1a8d1a0,3, 0x1a8d1c0,7, 0x1a8d1e0,3, 0x1a8d200,7, 0x1a8d220,3, 0x1a8d240,7, 0x1a8d260,3, 0x1a8d280,28, 0x1a8d400,15, 0x1a8d440,9, 0x1a8d480,6, 0x1a8d4a0,6, 0x1a8d604,114, 0x1a8d800,8, 0x1a8da04,66, 0x1a8dc00,3, 0x1a8dc10,58, 0x1a8dd00,1, 0x1a8dd08,3, 0x1a8dd18,6, 0x1b00000,534, 0x1b01000,2, 0x1b01040,9, 0x1b01080,7, 0x1b02000,534, 0x1b03000,12, 0x1b03044,6, 0x1b03080,8, 0x1b030a4,1, 0x1b030c0,7, 0x1b030e0,7, 0x1b03100,7, 0x1b03120,7, 0x1b03140,8, 0x1b03164,6, 0x1b03180,12, 0x1b04000,534, 0x1b05000,2, 0x1b05040,9, 0x1b05080,7, 0x1b06000,534, 0x1b07000,12, 0x1b07044,6, 0x1b07080,8, 0x1b070a4,1, 0x1b070c0,7, 0x1b070e0,7, 0x1b07100,7, 0x1b07120,7, 0x1b07140,8, 0x1b07164,6, 0x1b07180,12, 0x1b08004,5, 0x1b08200,27, 0x1b08280,4, 0x1b082c0,25, 0x1b08340,6, 0x1b08360,4, 0x1b08374,11, 0x1b083a4,5, 0x1b08400,1, 0x1b10000,397, 0x1b10800,93, 0x1b10980,6, 0x1b10a00,41, 0x1b10b00,2, 0x1b10b20,19, 0x1b10c00,25, 0x1b10c80,1, 0x1b10d00,28, 0x1b10d80,1, 0x1b11000,397, 0x1b11800,93, 0x1b11980,6, 0x1b11a00,41, 0x1b11b00,2, 0x1b11b20,19, 0x1b11c00,25, 0x1b11c80,1, 0x1b11d00,28, 0x1b11d80,1, 0x1b12000,7, 0x1b12040,9, 0x1b12080,4, 0x1b120a0,5, 0x1b120c0,2, 0x1b14000,3, 0x1b14010,6, 0x1b14200,7, 0x1b14220,6, 0x1b14240,7, 0x1b14260,6, 0x1b14280,2, 0x1b1428c,2, 0x1b142a0,2, 0x1b142ac,2, 0x1b142c0,7, 0x1b142e0,7, 0x1b14300,2, 0x1b1430c,2, 0x1b14320,6, 0x1b14340,7, 0x1b14360,6, 0x1b14380,6, 0x1b143a0,7, 0x1b143c0,6, 0x1b143e0,6, 0x1b14400,3, 0x1b14440,12, 0x1b14484,1, 0x1b144c0,16, 0x1b14800,7, 0x1b14820,14, 0x1b14880,9, 0x1b148a8,12, 0x1b14900,7, 0x1b14920,14, 0x1b14980,9, 0x1b149a8,12, 0x1b14a00,10, 0x1b14a40,2, 0x1b14a4c,3, 0x1b14c00,5, 0x1b14c20,1, 0x1b14c28,3, 0x1b20000,534, 0x1b21000,2, 0x1b21040,9, 0x1b21080,7, 0x1b22000,534, 0x1b23000,12, 0x1b23044,6, 0x1b23080,8, 0x1b230a4,1, 0x1b230c0,7, 0x1b230e0,7, 0x1b23100,7, 0x1b23120,7, 0x1b23140,8, 0x1b23164,6, 0x1b23180,12, 0x1b24000,534, 0x1b25000,2, 0x1b25040,9, 0x1b25080,7, 0x1b26000,534, 0x1b27000,12, 0x1b27044,6, 0x1b27080,8, 0x1b270a4,1, 0x1b270c0,7, 0x1b270e0,7, 0x1b27100,7, 0x1b27120,7, 0x1b27140,8, 0x1b27164,6, 0x1b27180,12, 0x1b28004,5, 0x1b28200,27, 0x1b28280,4, 0x1b282c0,25, 0x1b28340,6, 0x1b28360,4, 0x1b28374,11, 0x1b283a4,5, 0x1b28400,1, 0x1b30000,397, 0x1b30800,93, 0x1b30980,6, 0x1b30a00,41, 0x1b30b00,2, 0x1b30b20,19, 0x1b30c00,25, 0x1b30c80,1, 0x1b30d00,28, 0x1b30d80,1, 0x1b31000,397, 0x1b31800,93, 0x1b31980,6, 0x1b31a00,41, 0x1b31b00,2, 0x1b31b20,19, 0x1b31c00,25, 0x1b31c80,1, 0x1b31d00,28, 0x1b31d80,1, 0x1b32000,7, 0x1b32040,9, 0x1b32080,4, 0x1b320a0,5, 0x1b320c0,2, 0x1b34000,3, 0x1b34010,6, 0x1b34200,7, 0x1b34220,6, 0x1b34240,7, 0x1b34260,6, 0x1b34280,2, 0x1b3428c,2, 0x1b342a0,2, 0x1b342ac,2, 0x1b342c0,7, 0x1b342e0,7, 0x1b34300,2, 0x1b3430c,2, 0x1b34320,6, 0x1b34340,7, 0x1b34360,6, 0x1b34380,6, 0x1b343a0,7, 0x1b343c0,6, 0x1b343e0,6, 0x1b34400,3, 0x1b34440,12, 0x1b34484,1, 0x1b344c0,16, 0x1b34800,7, 0x1b34820,14, 0x1b34880,9, 0x1b348a8,12, 0x1b34900,7, 0x1b34920,14, 0x1b34980,9, 0x1b349a8,12, 0x1b34a00,10, 0x1b34a40,2, 0x1b34a4c,3, 0x1b34c00,5, 0x1b34c20,1, 0x1b34c28,3, 0x1b40000,37, 0x1b40100,3, 0x1b40110,15, 0x1b40200,37, 0x1b40300,3, 0x1b40310,15, 0x1b40400,5, 0x1b40420,5, 0x1b40440,18, 0x1b40800,3, 0x1b40810,2, 0x1b40820,3, 0x1b40830,2, 0x1b40840,1, 0x1b41000,12, 0x1b41040,12, 0x1b41080,2, 0x1b41100,19, 0x1b41180,19, 0x1b41200,26, 0x1b41400,20, 0x1b41480,20, 0x1b41500,8, 0x1b41540,4, 0x1b41580,15, 0x1b415c0,15, 0x1b41600,9, 0x1b41630,5, 0x1b42000,37, 0x1b42100,3, 0x1b42110,15, 0x1b42200,37, 0x1b42300,3, 0x1b42310,15, 0x1b42400,5, 0x1b42420,5, 0x1b42440,18, 0x1b42800,3, 0x1b42810,2, 0x1b42820,3, 0x1b42830,2, 0x1b42840,1, 0x1b43000,12, 0x1b43040,12, 0x1b43080,2, 0x1b43100,19, 0x1b43180,19, 0x1b43200,26, 0x1b43400,20, 0x1b43480,20, 0x1b43500,8, 0x1b43540,4, 0x1b43580,15, 0x1b435c0,15, 0x1b43600,9, 0x1b43630,5, 0x1b44000,6, 0x1b44020,1, 0x1b4402c,3, 0x1b44040,11, 0x1b44070,3, 0x1b44080,2, 0x1b48000,49, 0x1b48100,12, 0x1b48140,4, 0x1b48184,1, 0x1b48198,2, 0x1b481a4,1, 0x1b481b8,7, 0x1b481e0,4, 0x1b48200,20, 0x1b48280,3, 0x1b48290,9, 0x1b482c0,6, 0x1b482e0,1, 0x1b482e8,7, 0x1b48400,49, 0x1b48500,12, 0x1b48540,4, 0x1b48584,1, 0x1b48598,2, 0x1b485a4,1, 0x1b485b8,7, 0x1b485e0,4, 0x1b48600,20, 0x1b48680,3, 0x1b48690,9, 0x1b486c0,6, 0x1b486e0,1, 0x1b486e8,7, 0x1b48800,49, 0x1b48900,12, 0x1b48940,4, 0x1b48984,1, 0x1b48998,2, 0x1b489a4,1, 0x1b489b8,7, 0x1b489e0,4, 0x1b48a00,20, 0x1b48a80,3, 0x1b48a90,9, 0x1b48ac0,6, 0x1b48ae0,1, 0x1b48ae8,7, 0x1b48c00,49, 0x1b48d00,12, 0x1b48d40,4, 0x1b48d84,1, 0x1b48d98,2, 0x1b48da4,1, 0x1b48db8,7, 0x1b48de0,4, 0x1b48e00,20, 0x1b48e80,3, 0x1b48e90,9, 0x1b48ec0,6, 0x1b48ee0,1, 0x1b48ee8,7, 0x1b49000,49, 0x1b49100,12, 0x1b49140,4, 0x1b49184,1, 0x1b49198,2, 0x1b491a4,1, 0x1b491b8,7, 0x1b491e0,4, 0x1b49200,20, 0x1b49280,3, 0x1b49290,9, 0x1b492c0,6, 0x1b492e0,1, 0x1b492e8,7, 0x1b49400,49, 0x1b49500,12, 0x1b49540,4, 0x1b49584,1, 0x1b49598,2, 0x1b495a4,1, 0x1b495b8,7, 0x1b495e0,4, 0x1b49600,20, 0x1b49680,3, 0x1b49690,9, 0x1b496c0,6, 0x1b496e0,1, 0x1b496e8,7, 0x1b49800,49, 0x1b49900,12, 0x1b49940,4, 0x1b49984,1, 0x1b49998,2, 0x1b499a4,1, 0x1b499b8,7, 0x1b499e0,4, 0x1b49a00,20, 0x1b49a80,3, 0x1b49a90,9, 0x1b49ac0,6, 0x1b49ae0,1, 0x1b49ae8,7, 0x1b4a000,20, 0x1b4a080,2, 0x1b4a100,20, 0x1b4a180,2, 0x1b4a200,4, 0x1b4a400,20, 0x1b4a480,2, 0x1b4a500,20, 0x1b4a580,2, 0x1b4a600,4, 0x1b4a800,3, 0x1b4a840,12, 0x1b4a880,12, 0x1b4a8c0,12, 0x1b4a900,12, 0x1b4a940,12, 0x1b4a980,12, 0x1b4a9c0,12, 0x1b4aa00,12, 0x1b4ac00,12, 0x1b4ac40,7, 0x1b4ac60,10, 0x1b4b004,1, 0x1b4b018,40, 0x1b4b100,7, 0x1b4b120,7, 0x1b4b140,2, 0x1b4b14c,2, 0x1b4b160,2, 0x1b4b16c,2, 0x1b4b180,18, 0x1b4b200,2, 0x1b4b220,10, 0x1b4b260,20, 0x1b4b2c0,7, 0x1b4b300,15, 0x1b4b340,9, 0x1b4b380,6, 0x1b4b3a0,4, 0x1b4b400,4, 0x1b4c000,106, 0x1b4c200,2, 0x1b4c240,9, 0x1b4c280,7, 0x1b4c400,106, 0x1b4c604,6, 0x1b4c700,15, 0x1b4c740,9, 0x1b4c780,6, 0x1b4c7a0,6, 0x1b4c800,8, 0x1b4c824,1, 0x1b4c830,15, 0x1b4c870,3, 0x1b60000,518, 0x1b60900,45, 0x1b60a00,45, 0x1b60b00,45, 0x1b60c00,45, 0x1b60d00,45, 0x1b60e00,45, 0x1b60f00,45, 0x1b61000,45, 0x1b61800,9, 0x1b61840,364, 0x1b61e00,19, 0x1b62000,9, 0x1b62040,364, 0x1b62600,19, 0x1b62800,6, 0x1b62820,3, 0x1b62840,7, 0x1b62880,6, 0x1b628a0,3, 0x1b628c0,7, 0x1b62900,1, 0x1b62908,3, 0x1b62918,8, 0x1b62940,7, 0x1b63000,2, 0x1b63800,18, 0x1b63880,18, 0x1b63c00,4, 0x1b63c20,7, 0x1b63d00,4, 0x1b63d80,20, 0x1b63e00,1, 0x1b64000,21, 0x1b64058,3, 0x1b64100,1, 0x1b64124,1, 0x1b6412c,5, 0x1b64144,1, 0x1b6414c,6, 0x1b64184,6, 0x1b641a4,6, 0x1b641c4,1, 0x1b641cc,1, 0x1b64400,9, 0x1b64440,9, 0x1b64480,15, 0x1b644c0,15, 0x1b64500,15, 0x1b64540,15, 0x1b64580,15, 0x1b645c0,15, 0x1b64600,15, 0x1b64640,15, 0x1b64680,59, 0x1b64800,1, 0x1b64808,16, 0x1b64850,1, 0x1b64858,7, 0x1b68000,3, 0x1b68010,1, 0x1b68018,3, 0x1b6a000,4, 0x1b6a080,19, 0x1b6a100,12, 0x1b6a200,4, 0x1b6a280,19, 0x1b6a300,12, 0x1b6a400,2, 0x1b6a600,124, 0x1b6a800,4, 0x1b6a880,18, 0x1b6a900,4, 0x1b6a980,23, 0x1b6aa00,10, 0x1b6aa2c,2, 0x1b6aa40,2, 0x1b6aa4c,3, 0x1b6aa60,2, 0x1b6aa6c,3, 0x1b6aa80,2, 0x1b6aa8c,2, 0x1b6aaa0,2, 0x1b6aaac,2, 0x1b6aac0,2, 0x1b6aacc,2, 0x1b6ab00,4, 0x1b6ab40,15, 0x1b6ab80,3, 0x1b6ab90,7, 0x1b6abb0,3, 0x1b6abc0,3, 0x1b6abd0,3, 0x1b6abe0,1, 0x1b6ac00,17, 0x1b6ae00,15, 0x1b6ae40,4, 0x1b6ae60,17, 0x1b6aec0,6, 0x1b6aee0,4, 0x1b6aef4,11, 0x1b6af24,28, 0x1b6b000,1, 0x1b6b080,1, 0x1b6b0a0,5, 0x1b6b0c0,5, 0x1b6b0e0,5, 0x1b6b100,1, 0x1b6b120,5, 0x1b6b140,5, 0x1b6b160,5, 0x1b6b180,24, 0x1b6b200,5, 0x1b6c000,20, 0x1b70000,518, 0x1b70900,45, 0x1b70a00,45, 0x1b70b00,45, 0x1b70c00,45, 0x1b70d00,45, 0x1b70e00,45, 0x1b70f00,45, 0x1b71000,45, 0x1b71800,9, 0x1b71840,364, 0x1b71e00,19, 0x1b72000,9, 0x1b72040,364, 0x1b72600,19, 0x1b72800,6, 0x1b72820,3, 0x1b72840,7, 0x1b72880,6, 0x1b728a0,3, 0x1b728c0,7, 0x1b72900,1, 0x1b72908,3, 0x1b72918,8, 0x1b72940,7, 0x1b73000,2, 0x1b73800,18, 0x1b73880,18, 0x1b73c00,4, 0x1b73c20,7, 0x1b73d00,4, 0x1b73d80,20, 0x1b73e00,1, 0x1b74000,21, 0x1b74058,3, 0x1b74100,1, 0x1b74124,1, 0x1b7412c,5, 0x1b74144,1, 0x1b7414c,6, 0x1b74184,6, 0x1b741a4,6, 0x1b741c4,1, 0x1b741cc,1, 0x1b74400,9, 0x1b74440,9, 0x1b74480,15, 0x1b744c0,15, 0x1b74500,15, 0x1b74540,15, 0x1b74580,15, 0x1b745c0,15, 0x1b74600,15, 0x1b74640,15, 0x1b74680,59, 0x1b74800,1, 0x1b74808,16, 0x1b74850,1, 0x1b74858,7, 0x1b78000,3, 0x1b78010,1, 0x1b78018,3, 0x1b7a000,4, 0x1b7a080,19, 0x1b7a100,12, 0x1b7a200,4, 0x1b7a280,19, 0x1b7a300,12, 0x1b7a400,2, 0x1b7a600,124, 0x1b7a800,4, 0x1b7a880,18, 0x1b7a900,4, 0x1b7a980,23, 0x1b7aa00,10, 0x1b7aa2c,2, 0x1b7aa40,2, 0x1b7aa4c,3, 0x1b7aa60,2, 0x1b7aa6c,3, 0x1b7aa80,2, 0x1b7aa8c,2, 0x1b7aaa0,2, 0x1b7aaac,2, 0x1b7aac0,2, 0x1b7aacc,2, 0x1b7ab00,4, 0x1b7ab40,15, 0x1b7ab80,3, 0x1b7ab90,7, 0x1b7abb0,3, 0x1b7abc0,3, 0x1b7abd0,3, 0x1b7abe0,1, 0x1b7ac00,17, 0x1b7ae00,15, 0x1b7ae40,4, 0x1b7ae60,17, 0x1b7aec0,6, 0x1b7aee0,4, 0x1b7aef4,11, 0x1b7af24,28, 0x1b7b000,1, 0x1b7b080,1, 0x1b7b0a0,5, 0x1b7b0c0,5, 0x1b7b0e0,5, 0x1b7b100,1, 0x1b7b120,5, 0x1b7b140,5, 0x1b7b160,5, 0x1b7b180,24, 0x1b7b200,5, 0x1b7c000,20, 0x1b80000,18, 0x1b80050,3, 0x1b80060,3, 0x1b80070,14, 0x1b800c0,5, 0x1b80400,13, 0x1b80440,2, 0x1b8044c,3, 0x1b80460,2, 0x1b80480,13, 0x1b804c0,2, 0x1b804cc,3, 0x1b804e0,2, 0x1b80500,1, 0x1b80508,16, 0x1b80560,2, 0x1b8056c,3, 0x1b80600,4, 0x1b80680,19, 0x1b80800,24, 0x1b80864,2, 0x1b80870,4, 0x1b80a00,27, 0x1b80a80,4, 0x1b80ac0,25, 0x1b80b40,6, 0x1b80b60,4, 0x1b80b74,11, 0x1b80ba4,8, 0x1b80c00,3, 0x1b80c10,3, 0x1b80c20,1, 0x1b80c40,11, 0x1b80c80,23, 0x1b80ce0,15, 0x1b80d20,15, 0x1b80d60,2, 0x1b80d6c,2, 0x1b80d80,1, 0x1b81000,18, 0x1b81050,3, 0x1b81060,3, 0x1b81070,14, 0x1b810c0,5, 0x1b81400,13, 0x1b81440,2, 0x1b8144c,3, 0x1b81460,2, 0x1b81480,13, 0x1b814c0,2, 0x1b814cc,3, 0x1b814e0,2, 0x1b81500,1, 0x1b81508,16, 0x1b81560,2, 0x1b8156c,3, 0x1b81600,4, 0x1b81680,19, 0x1b81800,24, 0x1b81864,2, 0x1b81870,4, 0x1b81a00,27, 0x1b81a80,4, 0x1b81ac0,25, 0x1b81b40,6, 0x1b81b60,4, 0x1b81b74,11, 0x1b81ba4,8, 0x1b81c00,3, 0x1b81c10,3, 0x1b81c20,1, 0x1b81c40,11, 0x1b81c80,23, 0x1b81ce0,15, 0x1b81d20,15, 0x1b81d60,2, 0x1b81d6c,2, 0x1b81d80,1, 0x1b82000,20, 0x1b82080,7, 0x1b820a0,1, 0x1b820b0,1, 0x1b820b8,2, 0x1b84000,14, 0x1c00000,534, 0x1c01000,2, 0x1c01040,9, 0x1c01080,7, 0x1c02000,534, 0x1c03000,12, 0x1c03044,6, 0x1c03080,8, 0x1c030a4,1, 0x1c030c0,7, 0x1c030e0,7, 0x1c03100,7, 0x1c03120,7, 0x1c03140,8, 0x1c03164,6, 0x1c03180,12, 0x1c04000,534, 0x1c05000,2, 0x1c05040,9, 0x1c05080,7, 0x1c06000,534, 0x1c07000,12, 0x1c07044,6, 0x1c07080,8, 0x1c070a4,1, 0x1c070c0,7, 0x1c070e0,7, 0x1c07100,7, 0x1c07120,7, 0x1c07140,8, 0x1c07164,6, 0x1c07180,12, 0x1c08004,5, 0x1c08200,27, 0x1c08280,4, 0x1c082c0,25, 0x1c08340,6, 0x1c08360,4, 0x1c08374,11, 0x1c083a4,5, 0x1c08400,1, 0x1c10000,397, 0x1c10800,93, 0x1c10980,6, 0x1c10a00,41, 0x1c10b00,2, 0x1c10b20,19, 0x1c10c00,25, 0x1c10c80,1, 0x1c10d00,28, 0x1c10d80,1, 0x1c11000,397, 0x1c11800,93, 0x1c11980,6, 0x1c11a00,41, 0x1c11b00,2, 0x1c11b20,19, 0x1c11c00,25, 0x1c11c80,1, 0x1c11d00,28, 0x1c11d80,1, 0x1c12000,7, 0x1c12040,9, 0x1c12080,4, 0x1c120a0,5, 0x1c120c0,2, 0x1c14000,3, 0x1c14010,6, 0x1c14200,7, 0x1c14220,6, 0x1c14240,7, 0x1c14260,6, 0x1c14280,2, 0x1c1428c,2, 0x1c142a0,2, 0x1c142ac,2, 0x1c142c0,7, 0x1c142e0,7, 0x1c14300,2, 0x1c1430c,2, 0x1c14320,6, 0x1c14340,7, 0x1c14360,6, 0x1c14380,6, 0x1c143a0,7, 0x1c143c0,6, 0x1c143e0,6, 0x1c14400,3, 0x1c14440,12, 0x1c14484,1, 0x1c144c0,16, 0x1c14800,7, 0x1c14820,14, 0x1c14880,9, 0x1c148a8,12, 0x1c14900,7, 0x1c14920,14, 0x1c14980,9, 0x1c149a8,12, 0x1c14a00,10, 0x1c14a40,2, 0x1c14a4c,3, 0x1c14c00,5, 0x1c14c20,1, 0x1c14c28,3, 0x1c20000,534, 0x1c21000,2, 0x1c21040,9, 0x1c21080,7, 0x1c22000,534, 0x1c23000,12, 0x1c23044,6, 0x1c23080,8, 0x1c230a4,1, 0x1c230c0,7, 0x1c230e0,7, 0x1c23100,7, 0x1c23120,7, 0x1c23140,8, 0x1c23164,6, 0x1c23180,12, 0x1c24000,534, 0x1c25000,2, 0x1c25040,9, 0x1c25080,7, 0x1c26000,534, 0x1c27000,12, 0x1c27044,6, 0x1c27080,8, 0x1c270a4,1, 0x1c270c0,7, 0x1c270e0,7, 0x1c27100,7, 0x1c27120,7, 0x1c27140,8, 0x1c27164,6, 0x1c27180,12, 0x1c28004,5, 0x1c28200,27, 0x1c28280,4, 0x1c282c0,25, 0x1c28340,6, 0x1c28360,4, 0x1c28374,11, 0x1c283a4,5, 0x1c28400,1, 0x1c30000,397, 0x1c30800,93, 0x1c30980,6, 0x1c30a00,41, 0x1c30b00,2, 0x1c30b20,19, 0x1c30c00,25, 0x1c30c80,1, 0x1c30d00,28, 0x1c30d80,1, 0x1c31000,397, 0x1c31800,93, 0x1c31980,6, 0x1c31a00,41, 0x1c31b00,2, 0x1c31b20,19, 0x1c31c00,25, 0x1c31c80,1, 0x1c31d00,28, 0x1c31d80,1, 0x1c32000,7, 0x1c32040,9, 0x1c32080,4, 0x1c320a0,5, 0x1c320c0,2, 0x1c34000,3, 0x1c34010,6, 0x1c34200,7, 0x1c34220,6, 0x1c34240,7, 0x1c34260,6, 0x1c34280,2, 0x1c3428c,2, 0x1c342a0,2, 0x1c342ac,2, 0x1c342c0,7, 0x1c342e0,7, 0x1c34300,2, 0x1c3430c,2, 0x1c34320,6, 0x1c34340,7, 0x1c34360,6, 0x1c34380,6, 0x1c343a0,7, 0x1c343c0,6, 0x1c343e0,6, 0x1c34400,3, 0x1c34440,12, 0x1c34484,1, 0x1c344c0,16, 0x1c34800,7, 0x1c34820,14, 0x1c34880,9, 0x1c348a8,12, 0x1c34900,7, 0x1c34920,14, 0x1c34980,9, 0x1c349a8,12, 0x1c34a00,10, 0x1c34a40,2, 0x1c34a4c,3, 0x1c34c00,5, 0x1c34c20,1, 0x1c34c28,3, 0x1c40000,37, 0x1c40100,3, 0x1c40110,15, 0x1c40200,37, 0x1c40300,3, 0x1c40310,15, 0x1c40400,5, 0x1c40420,5, 0x1c40440,18, 0x1c40800,3, 0x1c40810,2, 0x1c40820,3, 0x1c40830,2, 0x1c40840,1, 0x1c41000,12, 0x1c41040,12, 0x1c41080,2, 0x1c41100,19, 0x1c41180,19, 0x1c41200,26, 0x1c41400,20, 0x1c41480,20, 0x1c41500,8, 0x1c41540,4, 0x1c41580,15, 0x1c415c0,15, 0x1c41600,9, 0x1c41630,5, 0x1c42000,37, 0x1c42100,3, 0x1c42110,15, 0x1c42200,37, 0x1c42300,3, 0x1c42310,15, 0x1c42400,5, 0x1c42420,5, 0x1c42440,18, 0x1c42800,3, 0x1c42810,2, 0x1c42820,3, 0x1c42830,2, 0x1c42840,1, 0x1c43000,12, 0x1c43040,12, 0x1c43080,2, 0x1c43100,19, 0x1c43180,19, 0x1c43200,26, 0x1c43400,20, 0x1c43480,20, 0x1c43500,8, 0x1c43540,4, 0x1c43580,15, 0x1c435c0,15, 0x1c43600,9, 0x1c43630,5, 0x1c44000,6, 0x1c44020,1, 0x1c4402c,3, 0x1c44040,11, 0x1c44070,3, 0x1c44080,2, 0x1c48000,49, 0x1c48100,12, 0x1c48140,4, 0x1c48184,1, 0x1c48198,2, 0x1c481a4,1, 0x1c481b8,7, 0x1c481e0,4, 0x1c48200,20, 0x1c48280,3, 0x1c48290,9, 0x1c482c0,6, 0x1c482e0,1, 0x1c482e8,7, 0x1c48400,49, 0x1c48500,12, 0x1c48540,4, 0x1c48584,1, 0x1c48598,2, 0x1c485a4,1, 0x1c485b8,7, 0x1c485e0,4, 0x1c48600,20, 0x1c48680,3, 0x1c48690,9, 0x1c486c0,6, 0x1c486e0,1, 0x1c486e8,7, 0x1c48800,49, 0x1c48900,12, 0x1c48940,4, 0x1c48984,1, 0x1c48998,2, 0x1c489a4,1, 0x1c489b8,7, 0x1c489e0,4, 0x1c48a00,20, 0x1c48a80,3, 0x1c48a90,9, 0x1c48ac0,6, 0x1c48ae0,1, 0x1c48ae8,7, 0x1c48c00,49, 0x1c48d00,12, 0x1c48d40,4, 0x1c48d84,1, 0x1c48d98,2, 0x1c48da4,1, 0x1c48db8,7, 0x1c48de0,4, 0x1c48e00,20, 0x1c48e80,3, 0x1c48e90,9, 0x1c48ec0,6, 0x1c48ee0,1, 0x1c48ee8,7, 0x1c49000,49, 0x1c49100,12, 0x1c49140,4, 0x1c49184,1, 0x1c49198,2, 0x1c491a4,1, 0x1c491b8,7, 0x1c491e0,4, 0x1c49200,20, 0x1c49280,3, 0x1c49290,9, 0x1c492c0,6, 0x1c492e0,1, 0x1c492e8,7, 0x1c49400,49, 0x1c49500,12, 0x1c49540,4, 0x1c49584,1, 0x1c49598,2, 0x1c495a4,1, 0x1c495b8,7, 0x1c495e0,4, 0x1c49600,20, 0x1c49680,3, 0x1c49690,9, 0x1c496c0,6, 0x1c496e0,1, 0x1c496e8,7, 0x1c49800,49, 0x1c49900,12, 0x1c49940,4, 0x1c49984,1, 0x1c49998,2, 0x1c499a4,1, 0x1c499b8,7, 0x1c499e0,4, 0x1c49a00,20, 0x1c49a80,3, 0x1c49a90,9, 0x1c49ac0,6, 0x1c49ae0,1, 0x1c49ae8,7, 0x1c4a000,20, 0x1c4a080,2, 0x1c4a100,20, 0x1c4a180,2, 0x1c4a200,4, 0x1c4a400,20, 0x1c4a480,2, 0x1c4a500,20, 0x1c4a580,2, 0x1c4a600,4, 0x1c4a800,3, 0x1c4a840,12, 0x1c4a880,12, 0x1c4a8c0,12, 0x1c4a900,12, 0x1c4a940,12, 0x1c4a980,12, 0x1c4a9c0,12, 0x1c4aa00,12, 0x1c4ac00,12, 0x1c4ac40,7, 0x1c4ac60,10, 0x1c4b004,1, 0x1c4b018,40, 0x1c4b100,7, 0x1c4b120,7, 0x1c4b140,2, 0x1c4b14c,2, 0x1c4b160,2, 0x1c4b16c,2, 0x1c4b180,18, 0x1c4b200,2, 0x1c4b220,10, 0x1c4b260,20, 0x1c4b2c0,7, 0x1c4b300,15, 0x1c4b340,9, 0x1c4b380,6, 0x1c4b3a0,4, 0x1c4b400,4, 0x1c4c000,106, 0x1c4c200,2, 0x1c4c240,9, 0x1c4c280,7, 0x1c4c400,106, 0x1c4c604,6, 0x1c4c700,15, 0x1c4c740,9, 0x1c4c780,6, 0x1c4c7a0,6, 0x1c4c800,8, 0x1c4c824,1, 0x1c4c830,15, 0x1c4c870,3, 0x1c60000,518, 0x1c60900,45, 0x1c60a00,45, 0x1c60b00,45, 0x1c60c00,45, 0x1c60d00,45, 0x1c60e00,45, 0x1c60f00,45, 0x1c61000,45, 0x1c61800,9, 0x1c61840,364, 0x1c61e00,19, 0x1c62000,9, 0x1c62040,364, 0x1c62600,19, 0x1c62800,6, 0x1c62820,3, 0x1c62840,7, 0x1c62880,6, 0x1c628a0,3, 0x1c628c0,7, 0x1c62900,1, 0x1c62908,3, 0x1c62918,8, 0x1c62940,7, 0x1c63000,2, 0x1c63800,18, 0x1c63880,18, 0x1c63c00,4, 0x1c63c20,7, 0x1c63d00,4, 0x1c63d80,20, 0x1c63e00,1, 0x1c64000,21, 0x1c64058,3, 0x1c64100,1, 0x1c64124,1, 0x1c6412c,5, 0x1c64144,1, 0x1c6414c,6, 0x1c64184,6, 0x1c641a4,6, 0x1c641c4,1, 0x1c641cc,1, 0x1c64400,9, 0x1c64440,9, 0x1c64480,15, 0x1c644c0,15, 0x1c64500,15, 0x1c64540,15, 0x1c64580,15, 0x1c645c0,15, 0x1c64600,15, 0x1c64640,15, 0x1c64680,59, 0x1c64800,1, 0x1c64808,16, 0x1c64850,1, 0x1c64858,7, 0x1c68000,3, 0x1c68010,1, 0x1c68018,3, 0x1c6a000,4, 0x1c6a080,19, 0x1c6a100,12, 0x1c6a200,4, 0x1c6a280,19, 0x1c6a300,12, 0x1c6a400,2, 0x1c6a600,124, 0x1c6a800,4, 0x1c6a880,18, 0x1c6a900,4, 0x1c6a980,23, 0x1c6aa00,10, 0x1c6aa2c,2, 0x1c6aa40,2, 0x1c6aa4c,3, 0x1c6aa60,2, 0x1c6aa6c,3, 0x1c6aa80,2, 0x1c6aa8c,2, 0x1c6aaa0,2, 0x1c6aaac,2, 0x1c6aac0,2, 0x1c6aacc,2, 0x1c6ab00,4, 0x1c6ab40,15, 0x1c6ab80,3, 0x1c6ab90,7, 0x1c6abb0,3, 0x1c6abc0,3, 0x1c6abd0,3, 0x1c6abe0,1, 0x1c6ac00,17, 0x1c6ae00,15, 0x1c6ae40,4, 0x1c6ae60,17, 0x1c6aec0,6, 0x1c6aee0,4, 0x1c6aef4,11, 0x1c6af24,28, 0x1c6b000,1, 0x1c6b080,1, 0x1c6b0a0,5, 0x1c6b0c0,5, 0x1c6b0e0,5, 0x1c6b100,1, 0x1c6b120,5, 0x1c6b140,5, 0x1c6b160,5, 0x1c6b180,24, 0x1c6b200,5, 0x1c6c000,20, 0x1c70000,518, 0x1c70900,45, 0x1c70a00,45, 0x1c70b00,45, 0x1c70c00,45, 0x1c70d00,45, 0x1c70e00,45, 0x1c70f00,45, 0x1c71000,45, 0x1c71800,9, 0x1c71840,364, 0x1c71e00,19, 0x1c72000,9, 0x1c72040,364, 0x1c72600,19, 0x1c72800,6, 0x1c72820,3, 0x1c72840,7, 0x1c72880,6, 0x1c728a0,3, 0x1c728c0,7, 0x1c72900,1, 0x1c72908,3, 0x1c72918,8, 0x1c72940,7, 0x1c73000,2, 0x1c73800,18, 0x1c73880,18, 0x1c73c00,4, 0x1c73c20,7, 0x1c73d00,4, 0x1c73d80,20, 0x1c73e00,1, 0x1c74000,21, 0x1c74058,3, 0x1c74100,1, 0x1c74124,1, 0x1c7412c,5, 0x1c74144,1, 0x1c7414c,6, 0x1c74184,6, 0x1c741a4,6, 0x1c741c4,1, 0x1c741cc,1, 0x1c74400,9, 0x1c74440,9, 0x1c74480,15, 0x1c744c0,15, 0x1c74500,15, 0x1c74540,15, 0x1c74580,15, 0x1c745c0,15, 0x1c74600,15, 0x1c74640,15, 0x1c74680,59, 0x1c74800,1, 0x1c74808,16, 0x1c74850,1, 0x1c74858,7, 0x1c78000,3, 0x1c78010,1, 0x1c78018,3, 0x1c7a000,4, 0x1c7a080,19, 0x1c7a100,12, 0x1c7a200,4, 0x1c7a280,19, 0x1c7a300,12, 0x1c7a400,2, 0x1c7a600,124, 0x1c7a800,4, 0x1c7a880,18, 0x1c7a900,4, 0x1c7a980,23, 0x1c7aa00,10, 0x1c7aa2c,2, 0x1c7aa40,2, 0x1c7aa4c,3, 0x1c7aa60,2, 0x1c7aa6c,3, 0x1c7aa80,2, 0x1c7aa8c,2, 0x1c7aaa0,2, 0x1c7aaac,2, 0x1c7aac0,2, 0x1c7aacc,2, 0x1c7ab00,4, 0x1c7ab40,15, 0x1c7ab80,3, 0x1c7ab90,7, 0x1c7abb0,3, 0x1c7abc0,3, 0x1c7abd0,3, 0x1c7abe0,1, 0x1c7ac00,17, 0x1c7ae00,15, 0x1c7ae40,4, 0x1c7ae60,17, 0x1c7aec0,6, 0x1c7aee0,4, 0x1c7aef4,11, 0x1c7af24,28, 0x1c7b000,1, 0x1c7b080,1, 0x1c7b0a0,5, 0x1c7b0c0,5, 0x1c7b0e0,5, 0x1c7b100,1, 0x1c7b120,5, 0x1c7b140,5, 0x1c7b160,5, 0x1c7b180,24, 0x1c7b200,5, 0x1c7c000,20, 0x1c80000,18, 0x1c80050,3, 0x1c80060,3, 0x1c80070,14, 0x1c800c0,5, 0x1c80400,13, 0x1c80440,2, 0x1c8044c,3, 0x1c80460,2, 0x1c80480,13, 0x1c804c0,2, 0x1c804cc,3, 0x1c804e0,2, 0x1c80500,1, 0x1c80508,16, 0x1c80560,2, 0x1c8056c,3, 0x1c80600,4, 0x1c80680,19, 0x1c80800,24, 0x1c80864,2, 0x1c80870,4, 0x1c80a00,27, 0x1c80a80,4, 0x1c80ac0,25, 0x1c80b40,6, 0x1c80b60,4, 0x1c80b74,11, 0x1c80ba4,8, 0x1c80c00,3, 0x1c80c10,3, 0x1c80c20,1, 0x1c80c40,11, 0x1c80c80,23, 0x1c80ce0,15, 0x1c80d20,15, 0x1c80d60,2, 0x1c80d6c,2, 0x1c80d80,1, 0x1c81000,18, 0x1c81050,3, 0x1c81060,3, 0x1c81070,14, 0x1c810c0,5, 0x1c81400,13, 0x1c81440,2, 0x1c8144c,3, 0x1c81460,2, 0x1c81480,13, 0x1c814c0,2, 0x1c814cc,3, 0x1c814e0,2, 0x1c81500,1, 0x1c81508,16, 0x1c81560,2, 0x1c8156c,3, 0x1c81600,4, 0x1c81680,19, 0x1c81800,24, 0x1c81864,2, 0x1c81870,4, 0x1c81a00,27, 0x1c81a80,4, 0x1c81ac0,25, 0x1c81b40,6, 0x1c81b60,4, 0x1c81b74,11, 0x1c81ba4,8, 0x1c81c00,3, 0x1c81c10,3, 0x1c81c20,1, 0x1c81c40,11, 0x1c81c80,23, 0x1c81ce0,15, 0x1c81d20,15, 0x1c81d60,2, 0x1c81d6c,2, 0x1c81d80,1, 0x1c82000,20, 0x1c82080,7, 0x1c820a0,1, 0x1c820b0,1, 0x1c820b8,2, 0x1c84000,14, 0x1d00000,534, 0x1d01000,2, 0x1d01040,9, 0x1d01080,7, 0x1d02000,534, 0x1d03000,12, 0x1d03044,6, 0x1d03080,8, 0x1d030a4,1, 0x1d030c0,7, 0x1d030e0,7, 0x1d03100,7, 0x1d03120,7, 0x1d03140,8, 0x1d03164,6, 0x1d03180,12, 0x1d04000,534, 0x1d05000,2, 0x1d05040,9, 0x1d05080,7, 0x1d06000,534, 0x1d07000,12, 0x1d07044,6, 0x1d07080,8, 0x1d070a4,1, 0x1d070c0,7, 0x1d070e0,7, 0x1d07100,7, 0x1d07120,7, 0x1d07140,8, 0x1d07164,6, 0x1d07180,12, 0x1d08004,5, 0x1d08200,27, 0x1d08280,4, 0x1d082c0,25, 0x1d08340,6, 0x1d08360,4, 0x1d08374,11, 0x1d083a4,5, 0x1d08400,1, 0x1d10000,397, 0x1d10800,93, 0x1d10980,6, 0x1d10a00,41, 0x1d10b00,2, 0x1d10b20,19, 0x1d10c00,25, 0x1d10c80,1, 0x1d10d00,28, 0x1d10d80,1, 0x1d11000,397, 0x1d11800,93, 0x1d11980,6, 0x1d11a00,41, 0x1d11b00,2, 0x1d11b20,19, 0x1d11c00,25, 0x1d11c80,1, 0x1d11d00,28, 0x1d11d80,1, 0x1d12000,7, 0x1d12040,9, 0x1d12080,4, 0x1d120a0,5, 0x1d120c0,2, 0x1d14000,3, 0x1d14010,6, 0x1d14200,7, 0x1d14220,6, 0x1d14240,7, 0x1d14260,6, 0x1d14280,2, 0x1d1428c,2, 0x1d142a0,2, 0x1d142ac,2, 0x1d142c0,7, 0x1d142e0,7, 0x1d14300,2, 0x1d1430c,2, 0x1d14320,6, 0x1d14340,7, 0x1d14360,6, 0x1d14380,6, 0x1d143a0,7, 0x1d143c0,6, 0x1d143e0,6, 0x1d14400,3, 0x1d14440,12, 0x1d14484,1, 0x1d144c0,16, 0x1d14800,7, 0x1d14820,14, 0x1d14880,9, 0x1d148a8,12, 0x1d14900,7, 0x1d14920,14, 0x1d14980,9, 0x1d149a8,12, 0x1d14a00,10, 0x1d14a40,2, 0x1d14a4c,3, 0x1d14c00,5, 0x1d14c20,1, 0x1d14c28,3, 0x1d20000,534, 0x1d21000,2, 0x1d21040,9, 0x1d21080,7, 0x1d22000,534, 0x1d23000,12, 0x1d23044,6, 0x1d23080,8, 0x1d230a4,1, 0x1d230c0,7, 0x1d230e0,7, 0x1d23100,7, 0x1d23120,7, 0x1d23140,8, 0x1d23164,6, 0x1d23180,12, 0x1d24000,534, 0x1d25000,2, 0x1d25040,9, 0x1d25080,7, 0x1d26000,534, 0x1d27000,12, 0x1d27044,6, 0x1d27080,8, 0x1d270a4,1, 0x1d270c0,7, 0x1d270e0,7, 0x1d27100,7, 0x1d27120,7, 0x1d27140,8, 0x1d27164,6, 0x1d27180,12, 0x1d28004,5, 0x1d28200,27, 0x1d28280,4, 0x1d282c0,25, 0x1d28340,6, 0x1d28360,4, 0x1d28374,11, 0x1d283a4,5, 0x1d28400,1, 0x1d30000,397, 0x1d30800,93, 0x1d30980,6, 0x1d30a00,41, 0x1d30b00,2, 0x1d30b20,19, 0x1d30c00,25, 0x1d30c80,1, 0x1d30d00,28, 0x1d30d80,1, 0x1d31000,397, 0x1d31800,93, 0x1d31980,6, 0x1d31a00,41, 0x1d31b00,2, 0x1d31b20,19, 0x1d31c00,25, 0x1d31c80,1, 0x1d31d00,28, 0x1d31d80,1, 0x1d32000,7, 0x1d32040,9, 0x1d32080,4, 0x1d320a0,5, 0x1d320c0,2, 0x1d34000,3, 0x1d34010,6, 0x1d34200,7, 0x1d34220,6, 0x1d34240,7, 0x1d34260,6, 0x1d34280,2, 0x1d3428c,2, 0x1d342a0,2, 0x1d342ac,2, 0x1d342c0,7, 0x1d342e0,7, 0x1d34300,2, 0x1d3430c,2, 0x1d34320,6, 0x1d34340,7, 0x1d34360,6, 0x1d34380,6, 0x1d343a0,7, 0x1d343c0,6, 0x1d343e0,6, 0x1d34400,3, 0x1d34440,12, 0x1d34484,1, 0x1d344c0,16, 0x1d34800,7, 0x1d34820,14, 0x1d34880,9, 0x1d348a8,12, 0x1d34900,7, 0x1d34920,14, 0x1d34980,9, 0x1d349a8,12, 0x1d34a00,10, 0x1d34a40,2, 0x1d34a4c,3, 0x1d34c00,5, 0x1d34c20,1, 0x1d34c28,3, 0x1d40000,37, 0x1d40100,3, 0x1d40110,15, 0x1d40200,37, 0x1d40300,3, 0x1d40310,15, 0x1d40400,5, 0x1d40420,5, 0x1d40440,18, 0x1d40800,3, 0x1d40810,2, 0x1d40820,3, 0x1d40830,2, 0x1d40840,1, 0x1d41000,12, 0x1d41040,12, 0x1d41080,2, 0x1d41100,19, 0x1d41180,19, 0x1d41200,26, 0x1d41400,20, 0x1d41480,20, 0x1d41500,8, 0x1d41540,4, 0x1d41580,15, 0x1d415c0,15, 0x1d41600,9, 0x1d41630,5, 0x1d42000,37, 0x1d42100,3, 0x1d42110,15, 0x1d42200,37, 0x1d42300,3, 0x1d42310,15, 0x1d42400,5, 0x1d42420,5, 0x1d42440,18, 0x1d42800,3, 0x1d42810,2, 0x1d42820,3, 0x1d42830,2, 0x1d42840,1, 0x1d43000,12, 0x1d43040,12, 0x1d43080,2, 0x1d43100,19, 0x1d43180,19, 0x1d43200,26, 0x1d43400,20, 0x1d43480,20, 0x1d43500,8, 0x1d43540,4, 0x1d43580,15, 0x1d435c0,15, 0x1d43600,9, 0x1d43630,5, 0x1d44000,6, 0x1d44020,1, 0x1d4402c,3, 0x1d44040,11, 0x1d44070,3, 0x1d44080,2, 0x1d48000,49, 0x1d48100,12, 0x1d48140,4, 0x1d48184,1, 0x1d48198,2, 0x1d481a4,1, 0x1d481b8,7, 0x1d481e0,4, 0x1d48200,20, 0x1d48280,3, 0x1d48290,9, 0x1d482c0,6, 0x1d482e0,1, 0x1d482e8,7, 0x1d48400,49, 0x1d48500,12, 0x1d48540,4, 0x1d48584,1, 0x1d48598,2, 0x1d485a4,1, 0x1d485b8,7, 0x1d485e0,4, 0x1d48600,20, 0x1d48680,3, 0x1d48690,9, 0x1d486c0,6, 0x1d486e0,1, 0x1d486e8,7, 0x1d48800,49, 0x1d48900,12, 0x1d48940,4, 0x1d48984,1, 0x1d48998,2, 0x1d489a4,1, 0x1d489b8,7, 0x1d489e0,4, 0x1d48a00,20, 0x1d48a80,3, 0x1d48a90,9, 0x1d48ac0,6, 0x1d48ae0,1, 0x1d48ae8,7, 0x1d48c00,49, 0x1d48d00,12, 0x1d48d40,4, 0x1d48d84,1, 0x1d48d98,2, 0x1d48da4,1, 0x1d48db8,7, 0x1d48de0,4, 0x1d48e00,20, 0x1d48e80,3, 0x1d48e90,9, 0x1d48ec0,6, 0x1d48ee0,1, 0x1d48ee8,7, 0x1d49000,49, 0x1d49100,12, 0x1d49140,4, 0x1d49184,1, 0x1d49198,2, 0x1d491a4,1, 0x1d491b8,7, 0x1d491e0,4, 0x1d49200,20, 0x1d49280,3, 0x1d49290,9, 0x1d492c0,6, 0x1d492e0,1, 0x1d492e8,7, 0x1d49400,49, 0x1d49500,12, 0x1d49540,4, 0x1d49584,1, 0x1d49598,2, 0x1d495a4,1, 0x1d495b8,7, 0x1d495e0,4, 0x1d49600,20, 0x1d49680,3, 0x1d49690,9, 0x1d496c0,6, 0x1d496e0,1, 0x1d496e8,7, 0x1d49800,49, 0x1d49900,12, 0x1d49940,4, 0x1d49984,1, 0x1d49998,2, 0x1d499a4,1, 0x1d499b8,7, 0x1d499e0,4, 0x1d49a00,20, 0x1d49a80,3, 0x1d49a90,9, 0x1d49ac0,6, 0x1d49ae0,1, 0x1d49ae8,7, 0x1d4a000,20, 0x1d4a080,2, 0x1d4a100,20, 0x1d4a180,2, 0x1d4a200,4, 0x1d4a400,20, 0x1d4a480,2, 0x1d4a500,20, 0x1d4a580,2, 0x1d4a600,4, 0x1d4a800,3, 0x1d4a840,12, 0x1d4a880,12, 0x1d4a8c0,12, 0x1d4a900,12, 0x1d4a940,12, 0x1d4a980,12, 0x1d4a9c0,12, 0x1d4aa00,12, 0x1d4ac00,12, 0x1d4ac40,7, 0x1d4ac60,10, 0x1d4b004,1, 0x1d4b018,40, 0x1d4b100,7, 0x1d4b120,7, 0x1d4b140,2, 0x1d4b14c,2, 0x1d4b160,2, 0x1d4b16c,2, 0x1d4b180,18, 0x1d4b200,2, 0x1d4b220,10, 0x1d4b260,20, 0x1d4b2c0,7, 0x1d4b300,15, 0x1d4b340,9, 0x1d4b380,6, 0x1d4b3a0,4, 0x1d4b400,4, 0x1d4c000,106, 0x1d4c200,2, 0x1d4c240,9, 0x1d4c280,7, 0x1d4c400,106, 0x1d4c604,6, 0x1d4c700,15, 0x1d4c740,9, 0x1d4c780,6, 0x1d4c7a0,6, 0x1d4c800,8, 0x1d4c824,1, 0x1d4c830,15, 0x1d4c870,3, 0x1d60000,518, 0x1d60900,45, 0x1d60a00,45, 0x1d60b00,45, 0x1d60c00,45, 0x1d60d00,45, 0x1d60e00,45, 0x1d60f00,45, 0x1d61000,45, 0x1d61800,9, 0x1d61840,364, 0x1d61e00,19, 0x1d62000,9, 0x1d62040,364, 0x1d62600,19, 0x1d62800,6, 0x1d62820,3, 0x1d62840,7, 0x1d62880,6, 0x1d628a0,3, 0x1d628c0,7, 0x1d62900,1, 0x1d62908,3, 0x1d62918,8, 0x1d62940,7, 0x1d63000,2, 0x1d63800,18, 0x1d63880,18, 0x1d63c00,4, 0x1d63c20,7, 0x1d63d00,4, 0x1d63d80,20, 0x1d63e00,1, 0x1d64000,21, 0x1d64058,3, 0x1d64100,1, 0x1d64124,1, 0x1d6412c,5, 0x1d64144,1, 0x1d6414c,6, 0x1d64184,6, 0x1d641a4,6, 0x1d641c4,1, 0x1d641cc,1, 0x1d64400,9, 0x1d64440,9, 0x1d64480,15, 0x1d644c0,15, 0x1d64500,15, 0x1d64540,15, 0x1d64580,15, 0x1d645c0,15, 0x1d64600,15, 0x1d64640,15, 0x1d64680,59, 0x1d64800,1, 0x1d64808,16, 0x1d64850,1, 0x1d64858,7, 0x1d68000,3, 0x1d68010,1, 0x1d68018,3, 0x1d6a000,4, 0x1d6a080,19, 0x1d6a100,12, 0x1d6a200,4, 0x1d6a280,19, 0x1d6a300,12, 0x1d6a400,2, 0x1d6a600,124, 0x1d6a800,4, 0x1d6a880,18, 0x1d6a900,4, 0x1d6a980,23, 0x1d6aa00,10, 0x1d6aa2c,2, 0x1d6aa40,2, 0x1d6aa4c,3, 0x1d6aa60,2, 0x1d6aa6c,3, 0x1d6aa80,2, 0x1d6aa8c,2, 0x1d6aaa0,2, 0x1d6aaac,2, 0x1d6aac0,2, 0x1d6aacc,2, 0x1d6ab00,4, 0x1d6ab40,15, 0x1d6ab80,3, 0x1d6ab90,7, 0x1d6abb0,3, 0x1d6abc0,3, 0x1d6abd0,3, 0x1d6abe0,1, 0x1d6ac00,17, 0x1d6ae00,15, 0x1d6ae40,4, 0x1d6ae60,17, 0x1d6aec0,6, 0x1d6aee0,4, 0x1d6aef4,11, 0x1d6af24,28, 0x1d6b000,1, 0x1d6b080,1, 0x1d6b0a0,5, 0x1d6b0c0,5, 0x1d6b0e0,5, 0x1d6b100,1, 0x1d6b120,5, 0x1d6b140,5, 0x1d6b160,5, 0x1d6b180,24, 0x1d6b200,5, 0x1d6c000,20, 0x1d70000,518, 0x1d70900,45, 0x1d70a00,45, 0x1d70b00,45, 0x1d70c00,45, 0x1d70d00,45, 0x1d70e00,45, 0x1d70f00,45, 0x1d71000,45, 0x1d71800,9, 0x1d71840,364, 0x1d71e00,19, 0x1d72000,9, 0x1d72040,364, 0x1d72600,19, 0x1d72800,6, 0x1d72820,3, 0x1d72840,7, 0x1d72880,6, 0x1d728a0,3, 0x1d728c0,7, 0x1d72900,1, 0x1d72908,3, 0x1d72918,8, 0x1d72940,7, 0x1d73000,2, 0x1d73800,18, 0x1d73880,18, 0x1d73c00,4, 0x1d73c20,7, 0x1d73d00,4, 0x1d73d80,20, 0x1d73e00,1, 0x1d74000,21, 0x1d74058,3, 0x1d74100,1, 0x1d74124,1, 0x1d7412c,5, 0x1d74144,1, 0x1d7414c,6, 0x1d74184,6, 0x1d741a4,6, 0x1d741c4,1, 0x1d741cc,1, 0x1d74400,9, 0x1d74440,9, 0x1d74480,15, 0x1d744c0,15, 0x1d74500,15, 0x1d74540,15, 0x1d74580,15, 0x1d745c0,15, 0x1d74600,15, 0x1d74640,15, 0x1d74680,59, 0x1d74800,1, 0x1d74808,16, 0x1d74850,1, 0x1d74858,7, 0x1d78000,3, 0x1d78010,1, 0x1d78018,3, 0x1d7a000,4, 0x1d7a080,19, 0x1d7a100,12, 0x1d7a200,4, 0x1d7a280,19, 0x1d7a300,12, 0x1d7a400,2, 0x1d7a600,124, 0x1d7a800,4, 0x1d7a880,18, 0x1d7a900,4, 0x1d7a980,23, 0x1d7aa00,10, 0x1d7aa2c,2, 0x1d7aa40,2, 0x1d7aa4c,3, 0x1d7aa60,2, 0x1d7aa6c,3, 0x1d7aa80,2, 0x1d7aa8c,2, 0x1d7aaa0,2, 0x1d7aaac,2, 0x1d7aac0,2, 0x1d7aacc,2, 0x1d7ab00,4, 0x1d7ab40,15, 0x1d7ab80,3, 0x1d7ab90,7, 0x1d7abb0,3, 0x1d7abc0,3, 0x1d7abd0,3, 0x1d7abe0,1, 0x1d7ac00,17, 0x1d7ae00,15, 0x1d7ae40,4, 0x1d7ae60,17, 0x1d7aec0,6, 0x1d7aee0,4, 0x1d7aef4,11, 0x1d7af24,28, 0x1d7b000,1, 0x1d7b080,1, 0x1d7b0a0,5, 0x1d7b0c0,5, 0x1d7b0e0,5, 0x1d7b100,1, 0x1d7b120,5, 0x1d7b140,5, 0x1d7b160,5, 0x1d7b180,24, 0x1d7b200,5, 0x1d7c000,20, 0x1d80000,18, 0x1d80050,3, 0x1d80060,3, 0x1d80070,14, 0x1d800c0,5, 0x1d80400,13, 0x1d80440,2, 0x1d8044c,3, 0x1d80460,2, 0x1d80480,13, 0x1d804c0,2, 0x1d804cc,3, 0x1d804e0,2, 0x1d80500,1, 0x1d80508,16, 0x1d80560,2, 0x1d8056c,3, 0x1d80600,4, 0x1d80680,19, 0x1d80800,24, 0x1d80864,2, 0x1d80870,4, 0x1d80a00,27, 0x1d80a80,4, 0x1d80ac0,25, 0x1d80b40,6, 0x1d80b60,4, 0x1d80b74,11, 0x1d80ba4,8, 0x1d80c00,3, 0x1d80c10,3, 0x1d80c20,1, 0x1d80c40,11, 0x1d80c80,23, 0x1d80ce0,15, 0x1d80d20,15, 0x1d80d60,2, 0x1d80d6c,2, 0x1d80d80,1, 0x1d81000,18, 0x1d81050,3, 0x1d81060,3, 0x1d81070,14, 0x1d810c0,5, 0x1d81400,13, 0x1d81440,2, 0x1d8144c,3, 0x1d81460,2, 0x1d81480,13, 0x1d814c0,2, 0x1d814cc,3, 0x1d814e0,2, 0x1d81500,1, 0x1d81508,16, 0x1d81560,2, 0x1d8156c,3, 0x1d81600,4, 0x1d81680,19, 0x1d81800,24, 0x1d81864,2, 0x1d81870,4, 0x1d81a00,27, 0x1d81a80,4, 0x1d81ac0,25, 0x1d81b40,6, 0x1d81b60,4, 0x1d81b74,11, 0x1d81ba4,8, 0x1d81c00,3, 0x1d81c10,3, 0x1d81c20,1, 0x1d81c40,11, 0x1d81c80,23, 0x1d81ce0,15, 0x1d81d20,15, 0x1d81d60,2, 0x1d81d6c,2, 0x1d81d80,1, 0x1d82000,20, 0x1d82080,7, 0x1d820a0,1, 0x1d820b0,1, 0x1d820b8,2, 0x1d84000,14, 0x1e00000,534, 0x1e01000,2, 0x1e01040,9, 0x1e01080,7, 0x1e02000,534, 0x1e03000,12, 0x1e03044,6, 0x1e03080,8, 0x1e030a4,1, 0x1e030c0,7, 0x1e030e0,7, 0x1e03100,7, 0x1e03120,7, 0x1e03140,8, 0x1e03164,6, 0x1e03180,12, 0x1e04000,534, 0x1e05000,2, 0x1e05040,9, 0x1e05080,7, 0x1e06000,534, 0x1e07000,12, 0x1e07044,6, 0x1e07080,8, 0x1e070a4,1, 0x1e070c0,7, 0x1e070e0,7, 0x1e07100,7, 0x1e07120,7, 0x1e07140,8, 0x1e07164,6, 0x1e07180,12, 0x1e08004,5, 0x1e08200,27, 0x1e08280,4, 0x1e082c0,25, 0x1e08340,6, 0x1e08360,4, 0x1e08374,11, 0x1e083a4,5, 0x1e08400,1, 0x1e10000,397, 0x1e10800,93, 0x1e10980,6, 0x1e10a00,41, 0x1e10b00,2, 0x1e10b20,19, 0x1e10c00,25, 0x1e10c80,1, 0x1e10d00,28, 0x1e10d80,1, 0x1e11000,397, 0x1e11800,93, 0x1e11980,6, 0x1e11a00,41, 0x1e11b00,2, 0x1e11b20,19, 0x1e11c00,25, 0x1e11c80,1, 0x1e11d00,28, 0x1e11d80,1, 0x1e12000,7, 0x1e12040,9, 0x1e12080,4, 0x1e120a0,5, 0x1e120c0,2, 0x1e14000,3, 0x1e14010,6, 0x1e14200,7, 0x1e14220,6, 0x1e14240,7, 0x1e14260,6, 0x1e14280,2, 0x1e1428c,2, 0x1e142a0,2, 0x1e142ac,2, 0x1e142c0,7, 0x1e142e0,7, 0x1e14300,2, 0x1e1430c,2, 0x1e14320,6, 0x1e14340,7, 0x1e14360,6, 0x1e14380,6, 0x1e143a0,7, 0x1e143c0,6, 0x1e143e0,6, 0x1e14400,3, 0x1e14440,12, 0x1e14484,1, 0x1e144c0,16, 0x1e14800,7, 0x1e14820,14, 0x1e14880,9, 0x1e148a8,12, 0x1e14900,7, 0x1e14920,14, 0x1e14980,9, 0x1e149a8,12, 0x1e14a00,10, 0x1e14a40,2, 0x1e14a4c,3, 0x1e14c00,5, 0x1e14c20,1, 0x1e14c28,3, 0x1e20000,534, 0x1e21000,2, 0x1e21040,9, 0x1e21080,7, 0x1e22000,534, 0x1e23000,12, 0x1e23044,6, 0x1e23080,8, 0x1e230a4,1, 0x1e230c0,7, 0x1e230e0,7, 0x1e23100,7, 0x1e23120,7, 0x1e23140,8, 0x1e23164,6, 0x1e23180,12, 0x1e24000,534, 0x1e25000,2, 0x1e25040,9, 0x1e25080,7, 0x1e26000,534, 0x1e27000,12, 0x1e27044,6, 0x1e27080,8, 0x1e270a4,1, 0x1e270c0,7, 0x1e270e0,7, 0x1e27100,7, 0x1e27120,7, 0x1e27140,8, 0x1e27164,6, 0x1e27180,12, 0x1e28004,5, 0x1e28200,27, 0x1e28280,4, 0x1e282c0,25, 0x1e28340,6, 0x1e28360,4, 0x1e28374,11, 0x1e283a4,5, 0x1e28400,1, 0x1e30000,397, 0x1e30800,93, 0x1e30980,6, 0x1e30a00,41, 0x1e30b00,2, 0x1e30b20,19, 0x1e30c00,25, 0x1e30c80,1, 0x1e30d00,28, 0x1e30d80,1, 0x1e31000,397, 0x1e31800,93, 0x1e31980,6, 0x1e31a00,41, 0x1e31b00,2, 0x1e31b20,19, 0x1e31c00,25, 0x1e31c80,1, 0x1e31d00,28, 0x1e31d80,1, 0x1e32000,7, 0x1e32040,9, 0x1e32080,4, 0x1e320a0,5, 0x1e320c0,2, 0x1e34000,3, 0x1e34010,6, 0x1e34200,7, 0x1e34220,6, 0x1e34240,7, 0x1e34260,6, 0x1e34280,2, 0x1e3428c,2, 0x1e342a0,2, 0x1e342ac,2, 0x1e342c0,7, 0x1e342e0,7, 0x1e34300,2, 0x1e3430c,2, 0x1e34320,6, 0x1e34340,7, 0x1e34360,6, 0x1e34380,6, 0x1e343a0,7, 0x1e343c0,6, 0x1e343e0,6, 0x1e34400,3, 0x1e34440,12, 0x1e34484,1, 0x1e344c0,16, 0x1e34800,7, 0x1e34820,14, 0x1e34880,9, 0x1e348a8,12, 0x1e34900,7, 0x1e34920,14, 0x1e34980,9, 0x1e349a8,12, 0x1e34a00,10, 0x1e34a40,2, 0x1e34a4c,3, 0x1e34c00,5, 0x1e34c20,1, 0x1e34c28,3, 0x1e40000,37, 0x1e40100,3, 0x1e40110,15, 0x1e40200,37, 0x1e40300,3, 0x1e40310,15, 0x1e40400,5, 0x1e40420,5, 0x1e40440,18, 0x1e40800,3, 0x1e40810,2, 0x1e40820,3, 0x1e40830,2, 0x1e40840,1, 0x1e41000,12, 0x1e41040,12, 0x1e41080,2, 0x1e41100,19, 0x1e41180,19, 0x1e41200,26, 0x1e41400,20, 0x1e41480,20, 0x1e41500,8, 0x1e41540,4, 0x1e41580,15, 0x1e415c0,15, 0x1e41600,9, 0x1e41630,5, 0x1e42000,37, 0x1e42100,3, 0x1e42110,15, 0x1e42200,37, 0x1e42300,3, 0x1e42310,15, 0x1e42400,5, 0x1e42420,5, 0x1e42440,18, 0x1e42800,3, 0x1e42810,2, 0x1e42820,3, 0x1e42830,2, 0x1e42840,1, 0x1e43000,12, 0x1e43040,12, 0x1e43080,2, 0x1e43100,19, 0x1e43180,19, 0x1e43200,26, 0x1e43400,20, 0x1e43480,20, 0x1e43500,8, 0x1e43540,4, 0x1e43580,15, 0x1e435c0,15, 0x1e43600,9, 0x1e43630,5, 0x1e44000,6, 0x1e44020,1, 0x1e4402c,3, 0x1e44040,11, 0x1e44070,3, 0x1e44080,2, 0x1e48000,49, 0x1e48100,12, 0x1e48140,4, 0x1e48184,1, 0x1e48198,2, 0x1e481a4,1, 0x1e481b8,7, 0x1e481e0,4, 0x1e48200,20, 0x1e48280,3, 0x1e48290,9, 0x1e482c0,6, 0x1e482e0,1, 0x1e482e8,7, 0x1e48400,49, 0x1e48500,12, 0x1e48540,4, 0x1e48584,1, 0x1e48598,2, 0x1e485a4,1, 0x1e485b8,7, 0x1e485e0,4, 0x1e48600,20, 0x1e48680,3, 0x1e48690,9, 0x1e486c0,6, 0x1e486e0,1, 0x1e486e8,7, 0x1e48800,49, 0x1e48900,12, 0x1e48940,4, 0x1e48984,1, 0x1e48998,2, 0x1e489a4,1, 0x1e489b8,7, 0x1e489e0,4, 0x1e48a00,20, 0x1e48a80,3, 0x1e48a90,9, 0x1e48ac0,6, 0x1e48ae0,1, 0x1e48ae8,7, 0x1e48c00,49, 0x1e48d00,12, 0x1e48d40,4, 0x1e48d84,1, 0x1e48d98,2, 0x1e48da4,1, 0x1e48db8,7, 0x1e48de0,4, 0x1e48e00,20, 0x1e48e80,3, 0x1e48e90,9, 0x1e48ec0,6, 0x1e48ee0,1, 0x1e48ee8,7, 0x1e49000,49, 0x1e49100,12, 0x1e49140,4, 0x1e49184,1, 0x1e49198,2, 0x1e491a4,1, 0x1e491b8,7, 0x1e491e0,4, 0x1e49200,20, 0x1e49280,3, 0x1e49290,9, 0x1e492c0,6, 0x1e492e0,1, 0x1e492e8,7, 0x1e49400,49, 0x1e49500,12, 0x1e49540,4, 0x1e49584,1, 0x1e49598,2, 0x1e495a4,1, 0x1e495b8,7, 0x1e495e0,4, 0x1e49600,20, 0x1e49680,3, 0x1e49690,9, 0x1e496c0,6, 0x1e496e0,1, 0x1e496e8,7, 0x1e49800,49, 0x1e49900,12, 0x1e49940,4, 0x1e49984,1, 0x1e49998,2, 0x1e499a4,1, 0x1e499b8,7, 0x1e499e0,4, 0x1e49a00,20, 0x1e49a80,3, 0x1e49a90,9, 0x1e49ac0,6, 0x1e49ae0,1, 0x1e49ae8,7, 0x1e4a000,20, 0x1e4a080,2, 0x1e4a100,20, 0x1e4a180,2, 0x1e4a200,4, 0x1e4a400,20, 0x1e4a480,2, 0x1e4a500,20, 0x1e4a580,2, 0x1e4a600,4, 0x1e4a800,3, 0x1e4a840,12, 0x1e4a880,12, 0x1e4a8c0,12, 0x1e4a900,12, 0x1e4a940,12, 0x1e4a980,12, 0x1e4a9c0,12, 0x1e4aa00,12, 0x1e4ac00,12, 0x1e4ac40,7, 0x1e4ac60,10, 0x1e4b004,1, 0x1e4b018,40, 0x1e4b100,7, 0x1e4b120,7, 0x1e4b140,2, 0x1e4b14c,2, 0x1e4b160,2, 0x1e4b16c,2, 0x1e4b180,18, 0x1e4b200,2, 0x1e4b220,10, 0x1e4b260,20, 0x1e4b2c0,7, 0x1e4b300,15, 0x1e4b340,9, 0x1e4b380,6, 0x1e4b3a0,4, 0x1e4b400,4, 0x1e4c000,106, 0x1e4c200,2, 0x1e4c240,9, 0x1e4c280,7, 0x1e4c400,106, 0x1e4c604,6, 0x1e4c700,15, 0x1e4c740,9, 0x1e4c780,6, 0x1e4c7a0,6, 0x1e4c800,8, 0x1e4c824,1, 0x1e4c830,15, 0x1e4c870,3, 0x1e60000,518, 0x1e60900,45, 0x1e60a00,45, 0x1e60b00,45, 0x1e60c00,45, 0x1e60d00,45, 0x1e60e00,45, 0x1e60f00,45, 0x1e61000,45, 0x1e61800,9, 0x1e61840,364, 0x1e61e00,19, 0x1e62000,9, 0x1e62040,364, 0x1e62600,19, 0x1e62800,6, 0x1e62820,3, 0x1e62840,7, 0x1e62880,6, 0x1e628a0,3, 0x1e628c0,7, 0x1e62900,1, 0x1e62908,3, 0x1e62918,8, 0x1e62940,7, 0x1e63000,2, 0x1e63800,18, 0x1e63880,18, 0x1e63c00,4, 0x1e63c20,7, 0x1e63d00,4, 0x1e63d80,20, 0x1e63e00,1, 0x1e64000,21, 0x1e64058,3, 0x1e64100,1, 0x1e64124,1, 0x1e6412c,5, 0x1e64144,1, 0x1e6414c,6, 0x1e64184,6, 0x1e641a4,6, 0x1e641c4,1, 0x1e641cc,1, 0x1e64400,9, 0x1e64440,9, 0x1e64480,15, 0x1e644c0,15, 0x1e64500,15, 0x1e64540,15, 0x1e64580,15, 0x1e645c0,15, 0x1e64600,15, 0x1e64640,15, 0x1e64680,59, 0x1e64800,1, 0x1e64808,16, 0x1e64850,1, 0x1e64858,7, 0x1e68000,3, 0x1e68010,1, 0x1e68018,3, 0x1e6a000,4, 0x1e6a080,19, 0x1e6a100,12, 0x1e6a200,4, 0x1e6a280,19, 0x1e6a300,12, 0x1e6a400,2, 0x1e6a600,124, 0x1e6a800,4, 0x1e6a880,18, 0x1e6a900,4, 0x1e6a980,23, 0x1e6aa00,10, 0x1e6aa2c,2, 0x1e6aa40,2, 0x1e6aa4c,3, 0x1e6aa60,2, 0x1e6aa6c,3, 0x1e6aa80,2, 0x1e6aa8c,2, 0x1e6aaa0,2, 0x1e6aaac,2, 0x1e6aac0,2, 0x1e6aacc,2, 0x1e6ab00,4, 0x1e6ab40,15, 0x1e6ab80,3, 0x1e6ab90,7, 0x1e6abb0,3, 0x1e6abc0,3, 0x1e6abd0,3, 0x1e6abe0,1, 0x1e6ac00,17, 0x1e6ae00,15, 0x1e6ae40,4, 0x1e6ae60,17, 0x1e6aec0,6, 0x1e6aee0,4, 0x1e6aef4,11, 0x1e6af24,28, 0x1e6b000,1, 0x1e6b080,1, 0x1e6b0a0,5, 0x1e6b0c0,5, 0x1e6b0e0,5, 0x1e6b100,1, 0x1e6b120,5, 0x1e6b140,5, 0x1e6b160,5, 0x1e6b180,24, 0x1e6b200,5, 0x1e6c000,20, 0x1e70000,518, 0x1e70900,45, 0x1e70a00,45, 0x1e70b00,45, 0x1e70c00,45, 0x1e70d00,45, 0x1e70e00,45, 0x1e70f00,45, 0x1e71000,45, 0x1e71800,9, 0x1e71840,364, 0x1e71e00,19, 0x1e72000,9, 0x1e72040,364, 0x1e72600,19, 0x1e72800,6, 0x1e72820,3, 0x1e72840,7, 0x1e72880,6, 0x1e728a0,3, 0x1e728c0,7, 0x1e72900,1, 0x1e72908,3, 0x1e72918,8, 0x1e72940,7, 0x1e73000,2, 0x1e73800,18, 0x1e73880,18, 0x1e73c00,4, 0x1e73c20,7, 0x1e73d00,4, 0x1e73d80,20, 0x1e73e00,1, 0x1e74000,21, 0x1e74058,3, 0x1e74100,1, 0x1e74124,1, 0x1e7412c,5, 0x1e74144,1, 0x1e7414c,6, 0x1e74184,6, 0x1e741a4,6, 0x1e741c4,1, 0x1e741cc,1, 0x1e74400,9, 0x1e74440,9, 0x1e74480,15, 0x1e744c0,15, 0x1e74500,15, 0x1e74540,15, 0x1e74580,15, 0x1e745c0,15, 0x1e74600,15, 0x1e74640,15, 0x1e74680,59, 0x1e74800,1, 0x1e74808,16, 0x1e74850,1, 0x1e74858,7, 0x1e78000,3, 0x1e78010,1, 0x1e78018,3, 0x1e7a000,4, 0x1e7a080,19, 0x1e7a100,12, 0x1e7a200,4, 0x1e7a280,19, 0x1e7a300,12, 0x1e7a400,2, 0x1e7a600,124, 0x1e7a800,4, 0x1e7a880,18, 0x1e7a900,4, 0x1e7a980,23, 0x1e7aa00,10, 0x1e7aa2c,2, 0x1e7aa40,2, 0x1e7aa4c,3, 0x1e7aa60,2, 0x1e7aa6c,3, 0x1e7aa80,2, 0x1e7aa8c,2, 0x1e7aaa0,2, 0x1e7aaac,2, 0x1e7aac0,2, 0x1e7aacc,2, 0x1e7ab00,4, 0x1e7ab40,15, 0x1e7ab80,3, 0x1e7ab90,7, 0x1e7abb0,3, 0x1e7abc0,3, 0x1e7abd0,3, 0x1e7abe0,1, 0x1e7ac00,17, 0x1e7ae00,15, 0x1e7ae40,4, 0x1e7ae60,17, 0x1e7aec0,6, 0x1e7aee0,4, 0x1e7aef4,11, 0x1e7af24,28, 0x1e7b000,1, 0x1e7b080,1, 0x1e7b0a0,5, 0x1e7b0c0,5, 0x1e7b0e0,5, 0x1e7b100,1, 0x1e7b120,5, 0x1e7b140,5, 0x1e7b160,5, 0x1e7b180,24, 0x1e7b200,5, 0x1e7c000,20, 0x1e80000,18, 0x1e80050,3, 0x1e80060,3, 0x1e80070,14, 0x1e800c0,5, 0x1e80400,13, 0x1e80440,2, 0x1e8044c,3, 0x1e80460,2, 0x1e80480,13, 0x1e804c0,2, 0x1e804cc,3, 0x1e804e0,2, 0x1e80500,1, 0x1e80508,16, 0x1e80560,2, 0x1e8056c,3, 0x1e80600,4, 0x1e80680,19, 0x1e80800,24, 0x1e80864,2, 0x1e80870,4, 0x1e80a00,27, 0x1e80a80,4, 0x1e80ac0,25, 0x1e80b40,6, 0x1e80b60,4, 0x1e80b74,11, 0x1e80ba4,8, 0x1e80c00,3, 0x1e80c10,3, 0x1e80c20,1, 0x1e80c40,11, 0x1e80c80,23, 0x1e80ce0,15, 0x1e80d20,15, 0x1e80d60,2, 0x1e80d6c,2, 0x1e80d80,1, 0x1e81000,18, 0x1e81050,3, 0x1e81060,3, 0x1e81070,14, 0x1e810c0,5, 0x1e81400,13, 0x1e81440,2, 0x1e8144c,3, 0x1e81460,2, 0x1e81480,13, 0x1e814c0,2, 0x1e814cc,3, 0x1e814e0,2, 0x1e81500,1, 0x1e81508,16, 0x1e81560,2, 0x1e8156c,3, 0x1e81600,4, 0x1e81680,19, 0x1e81800,24, 0x1e81864,2, 0x1e81870,4, 0x1e81a00,27, 0x1e81a80,4, 0x1e81ac0,25, 0x1e81b40,6, 0x1e81b60,4, 0x1e81b74,11, 0x1e81ba4,8, 0x1e81c00,3, 0x1e81c10,3, 0x1e81c20,1, 0x1e81c40,11, 0x1e81c80,23, 0x1e81ce0,15, 0x1e81d20,15, 0x1e81d60,2, 0x1e81d6c,2, 0x1e81d80,1, 0x1e82000,20, 0x1e82080,7, 0x1e820a0,1, 0x1e820b0,1, 0x1e820b8,2, 0x1e84000,14, 0x1f00000,534, 0x1f01000,2, 0x1f01040,9, 0x1f01080,7, 0x1f02000,534, 0x1f03000,12, 0x1f03044,6, 0x1f03080,8, 0x1f030a4,1, 0x1f030c0,7, 0x1f030e0,7, 0x1f03100,7, 0x1f03120,7, 0x1f03140,8, 0x1f03164,6, 0x1f03180,12, 0x1f04000,534, 0x1f05000,2, 0x1f05040,9, 0x1f05080,7, 0x1f06000,534, 0x1f07000,12, 0x1f07044,6, 0x1f07080,8, 0x1f070a4,1, 0x1f070c0,7, 0x1f070e0,7, 0x1f07100,7, 0x1f07120,7, 0x1f07140,8, 0x1f07164,6, 0x1f07180,12, 0x1f08004,5, 0x1f08200,27, 0x1f08280,4, 0x1f082c0,25, 0x1f08340,6, 0x1f08360,4, 0x1f08374,11, 0x1f083a4,5, 0x1f08400,1, 0x1f10000,397, 0x1f10800,93, 0x1f10980,6, 0x1f10a00,41, 0x1f10b00,2, 0x1f10b20,19, 0x1f10c00,25, 0x1f10c80,1, 0x1f10d00,28, 0x1f10d80,1, 0x1f11000,397, 0x1f11800,93, 0x1f11980,6, 0x1f11a00,41, 0x1f11b00,2, 0x1f11b20,19, 0x1f11c00,25, 0x1f11c80,1, 0x1f11d00,28, 0x1f11d80,1, 0x1f12000,7, 0x1f12040,9, 0x1f12080,4, 0x1f120a0,5, 0x1f120c0,2, 0x1f14000,3, 0x1f14010,6, 0x1f14200,7, 0x1f14220,6, 0x1f14240,7, 0x1f14260,6, 0x1f14280,2, 0x1f1428c,2, 0x1f142a0,2, 0x1f142ac,2, 0x1f142c0,7, 0x1f142e0,7, 0x1f14300,2, 0x1f1430c,2, 0x1f14320,6, 0x1f14340,7, 0x1f14360,6, 0x1f14380,6, 0x1f143a0,7, 0x1f143c0,6, 0x1f143e0,6, 0x1f14400,3, 0x1f14440,12, 0x1f14484,1, 0x1f144c0,16, 0x1f14800,7, 0x1f14820,14, 0x1f14880,9, 0x1f148a8,12, 0x1f14900,7, 0x1f14920,14, 0x1f14980,9, 0x1f149a8,12, 0x1f14a00,10, 0x1f14a40,2, 0x1f14a4c,3, 0x1f14c00,5, 0x1f14c20,1, 0x1f14c28,3, 0x1f20000,534, 0x1f21000,2, 0x1f21040,9, 0x1f21080,7, 0x1f22000,534, 0x1f23000,12, 0x1f23044,6, 0x1f23080,8, 0x1f230a4,1, 0x1f230c0,7, 0x1f230e0,7, 0x1f23100,7, 0x1f23120,7, 0x1f23140,8, 0x1f23164,6, 0x1f23180,12, 0x1f24000,534, 0x1f25000,2, 0x1f25040,9, 0x1f25080,7, 0x1f26000,534, 0x1f27000,12, 0x1f27044,6, 0x1f27080,8, 0x1f270a4,1, 0x1f270c0,7, 0x1f270e0,7, 0x1f27100,7, 0x1f27120,7, 0x1f27140,8, 0x1f27164,6, 0x1f27180,12, 0x1f28004,5, 0x1f28200,27, 0x1f28280,4, 0x1f282c0,25, 0x1f28340,6, 0x1f28360,4, 0x1f28374,11, 0x1f283a4,5, 0x1f28400,1, 0x1f30000,397, 0x1f30800,93, 0x1f30980,6, 0x1f30a00,41, 0x1f30b00,2, 0x1f30b20,19, 0x1f30c00,25, 0x1f30c80,1, 0x1f30d00,28, 0x1f30d80,1, 0x1f31000,397, 0x1f31800,93, 0x1f31980,6, 0x1f31a00,41, 0x1f31b00,2, 0x1f31b20,19, 0x1f31c00,25, 0x1f31c80,1, 0x1f31d00,28, 0x1f31d80,1, 0x1f32000,7, 0x1f32040,9, 0x1f32080,4, 0x1f320a0,5, 0x1f320c0,2, 0x1f34000,3, 0x1f34010,6, 0x1f34200,7, 0x1f34220,6, 0x1f34240,7, 0x1f34260,6, 0x1f34280,2, 0x1f3428c,2, 0x1f342a0,2, 0x1f342ac,2, 0x1f342c0,7, 0x1f342e0,7, 0x1f34300,2, 0x1f3430c,2, 0x1f34320,6, 0x1f34340,7, 0x1f34360,6, 0x1f34380,6, 0x1f343a0,7, 0x1f343c0,6, 0x1f343e0,6, 0x1f34400,3, 0x1f34440,12, 0x1f34484,1, 0x1f344c0,16, 0x1f34800,7, 0x1f34820,14, 0x1f34880,9, 0x1f348a8,12, 0x1f34900,7, 0x1f34920,14, 0x1f34980,9, 0x1f349a8,12, 0x1f34a00,10, 0x1f34a40,2, 0x1f34a4c,3, 0x1f34c00,5, 0x1f34c20,1, 0x1f34c28,3, 0x1f40000,37, 0x1f40100,3, 0x1f40110,15, 0x1f40200,37, 0x1f40300,3, 0x1f40310,15, 0x1f40400,5, 0x1f40420,5, 0x1f40440,18, 0x1f40800,3, 0x1f40810,2, 0x1f40820,3, 0x1f40830,2, 0x1f40840,1, 0x1f41000,12, 0x1f41040,12, 0x1f41080,2, 0x1f41100,19, 0x1f41180,19, 0x1f41200,26, 0x1f41400,20, 0x1f41480,20, 0x1f41500,8, 0x1f41540,4, 0x1f41580,15, 0x1f415c0,15, 0x1f41600,9, 0x1f41630,5, 0x1f42000,37, 0x1f42100,3, 0x1f42110,15, 0x1f42200,37, 0x1f42300,3, 0x1f42310,15, 0x1f42400,5, 0x1f42420,5, 0x1f42440,18, 0x1f42800,3, 0x1f42810,2, 0x1f42820,3, 0x1f42830,2, 0x1f42840,1, 0x1f43000,12, 0x1f43040,12, 0x1f43080,2, 0x1f43100,19, 0x1f43180,19, 0x1f43200,26, 0x1f43400,20, 0x1f43480,20, 0x1f43500,8, 0x1f43540,4, 0x1f43580,15, 0x1f435c0,15, 0x1f43600,9, 0x1f43630,5, 0x1f44000,6, 0x1f44020,1, 0x1f4402c,3, 0x1f44040,11, 0x1f44070,3, 0x1f44080,2, 0x1f48000,49, 0x1f48100,12, 0x1f48140,4, 0x1f48184,1, 0x1f48198,2, 0x1f481a4,1, 0x1f481b8,7, 0x1f481e0,4, 0x1f48200,20, 0x1f48280,3, 0x1f48290,9, 0x1f482c0,6, 0x1f482e0,1, 0x1f482e8,7, 0x1f48400,49, 0x1f48500,12, 0x1f48540,4, 0x1f48584,1, 0x1f48598,2, 0x1f485a4,1, 0x1f485b8,7, 0x1f485e0,4, 0x1f48600,20, 0x1f48680,3, 0x1f48690,9, 0x1f486c0,6, 0x1f486e0,1, 0x1f486e8,7, 0x1f48800,49, 0x1f48900,12, 0x1f48940,4, 0x1f48984,1, 0x1f48998,2, 0x1f489a4,1, 0x1f489b8,7, 0x1f489e0,4, 0x1f48a00,20, 0x1f48a80,3, 0x1f48a90,9, 0x1f48ac0,6, 0x1f48ae0,1, 0x1f48ae8,7, 0x1f48c00,49, 0x1f48d00,12, 0x1f48d40,4, 0x1f48d84,1, 0x1f48d98,2, 0x1f48da4,1, 0x1f48db8,7, 0x1f48de0,4, 0x1f48e00,20, 0x1f48e80,3, 0x1f48e90,9, 0x1f48ec0,6, 0x1f48ee0,1, 0x1f48ee8,7, 0x1f49000,49, 0x1f49100,12, 0x1f49140,4, 0x1f49184,1, 0x1f49198,2, 0x1f491a4,1, 0x1f491b8,7, 0x1f491e0,4, 0x1f49200,20, 0x1f49280,3, 0x1f49290,9, 0x1f492c0,6, 0x1f492e0,1, 0x1f492e8,7, 0x1f49400,49, 0x1f49500,12, 0x1f49540,4, 0x1f49584,1, 0x1f49598,2, 0x1f495a4,1, 0x1f495b8,7, 0x1f495e0,4, 0x1f49600,20, 0x1f49680,3, 0x1f49690,9, 0x1f496c0,6, 0x1f496e0,1, 0x1f496e8,7, 0x1f49800,49, 0x1f49900,12, 0x1f49940,4, 0x1f49984,1, 0x1f49998,2, 0x1f499a4,1, 0x1f499b8,7, 0x1f499e0,4, 0x1f49a00,20, 0x1f49a80,3, 0x1f49a90,9, 0x1f49ac0,6, 0x1f49ae0,1, 0x1f49ae8,7, 0x1f4a000,20, 0x1f4a080,2, 0x1f4a100,20, 0x1f4a180,2, 0x1f4a200,4, 0x1f4a400,20, 0x1f4a480,2, 0x1f4a500,20, 0x1f4a580,2, 0x1f4a600,4, 0x1f4a800,3, 0x1f4a840,12, 0x1f4a880,12, 0x1f4a8c0,12, 0x1f4a900,12, 0x1f4a940,12, 0x1f4a980,12, 0x1f4a9c0,12, 0x1f4aa00,12, 0x1f4ac00,12, 0x1f4ac40,7, 0x1f4ac60,10, 0x1f4b004,1, 0x1f4b018,40, 0x1f4b100,7, 0x1f4b120,7, 0x1f4b140,2, 0x1f4b14c,2, 0x1f4b160,2, 0x1f4b16c,2, 0x1f4b180,18, 0x1f4b200,2, 0x1f4b220,10, 0x1f4b260,20, 0x1f4b2c0,7, 0x1f4b300,15, 0x1f4b340,9, 0x1f4b380,6, 0x1f4b3a0,4, 0x1f4b400,4, 0x1f4c000,106, 0x1f4c200,2, 0x1f4c240,9, 0x1f4c280,7, 0x1f4c400,106, 0x1f4c604,6, 0x1f4c700,15, 0x1f4c740,9, 0x1f4c780,6, 0x1f4c7a0,6, 0x1f4c800,8, 0x1f4c824,1, 0x1f4c830,15, 0x1f4c870,3, 0x1f60000,518, 0x1f60900,45, 0x1f60a00,45, 0x1f60b00,45, 0x1f60c00,45, 0x1f60d00,45, 0x1f60e00,45, 0x1f60f00,45, 0x1f61000,45, 0x1f61800,9, 0x1f61840,364, 0x1f61e00,19, 0x1f62000,9, 0x1f62040,364, 0x1f62600,19, 0x1f62800,6, 0x1f62820,3, 0x1f62840,7, 0x1f62880,6, 0x1f628a0,3, 0x1f628c0,7, 0x1f62900,1, 0x1f62908,3, 0x1f62918,8, 0x1f62940,7, 0x1f63000,2, 0x1f63800,18, 0x1f63880,18, 0x1f63c00,4, 0x1f63c20,7, 0x1f63d00,4, 0x1f63d80,20, 0x1f63e00,1, 0x1f64000,21, 0x1f64058,3, 0x1f64100,1, 0x1f64124,1, 0x1f6412c,5, 0x1f64144,1, 0x1f6414c,6, 0x1f64184,6, 0x1f641a4,6, 0x1f641c4,1, 0x1f641cc,1, 0x1f64400,9, 0x1f64440,9, 0x1f64480,15, 0x1f644c0,15, 0x1f64500,15, 0x1f64540,15, 0x1f64580,15, 0x1f645c0,15, 0x1f64600,15, 0x1f64640,15, 0x1f64680,59, 0x1f64800,1, 0x1f64808,16, 0x1f64850,1, 0x1f64858,7, 0x1f68000,3, 0x1f68010,1, 0x1f68018,3, 0x1f6a000,4, 0x1f6a080,19, 0x1f6a100,12, 0x1f6a200,4, 0x1f6a280,19, 0x1f6a300,12, 0x1f6a400,2, 0x1f6a600,124, 0x1f6a800,4, 0x1f6a880,18, 0x1f6a900,4, 0x1f6a980,23, 0x1f6aa00,10, 0x1f6aa2c,2, 0x1f6aa40,2, 0x1f6aa4c,3, 0x1f6aa60,2, 0x1f6aa6c,3, 0x1f6aa80,2, 0x1f6aa8c,2, 0x1f6aaa0,2, 0x1f6aaac,2, 0x1f6aac0,2, 0x1f6aacc,2, 0x1f6ab00,4, 0x1f6ab40,15, 0x1f6ab80,3, 0x1f6ab90,7, 0x1f6abb0,3, 0x1f6abc0,3, 0x1f6abd0,3, 0x1f6abe0,1, 0x1f6ac00,17, 0x1f6ae00,15, 0x1f6ae40,4, 0x1f6ae60,17, 0x1f6aec0,6, 0x1f6aee0,4, 0x1f6aef4,11, 0x1f6af24,28, 0x1f6b000,1, 0x1f6b080,1, 0x1f6b0a0,5, 0x1f6b0c0,5, 0x1f6b0e0,5, 0x1f6b100,1, 0x1f6b120,5, 0x1f6b140,5, 0x1f6b160,5, 0x1f6b180,24, 0x1f6b200,5, 0x1f6c000,20, 0x1f70000,518, 0x1f70900,45, 0x1f70a00,45, 0x1f70b00,45, 0x1f70c00,45, 0x1f70d00,45, 0x1f70e00,45, 0x1f70f00,45, 0x1f71000,45, 0x1f71800,9, 0x1f71840,364, 0x1f71e00,19, 0x1f72000,9, 0x1f72040,364, 0x1f72600,19, 0x1f72800,6, 0x1f72820,3, 0x1f72840,7, 0x1f72880,6, 0x1f728a0,3, 0x1f728c0,7, 0x1f72900,1, 0x1f72908,3, 0x1f72918,8, 0x1f72940,7, 0x1f73000,2, 0x1f73800,18, 0x1f73880,18, 0x1f73c00,4, 0x1f73c20,7, 0x1f73d00,4, 0x1f73d80,20, 0x1f73e00,1, 0x1f74000,21, 0x1f74058,3, 0x1f74100,1, 0x1f74124,1, 0x1f7412c,5, 0x1f74144,1, 0x1f7414c,6, 0x1f74184,6, 0x1f741a4,6, 0x1f741c4,1, 0x1f741cc,1, 0x1f74400,9, 0x1f74440,9, 0x1f74480,15, 0x1f744c0,15, 0x1f74500,15, 0x1f74540,15, 0x1f74580,15, 0x1f745c0,15, 0x1f74600,15, 0x1f74640,15, 0x1f74680,59, 0x1f74800,1, 0x1f74808,16, 0x1f74850,1, 0x1f74858,7, 0x1f78000,3, 0x1f78010,1, 0x1f78018,3, 0x1f7a000,4, 0x1f7a080,19, 0x1f7a100,12, 0x1f7a200,4, 0x1f7a280,19, 0x1f7a300,12, 0x1f7a400,2, 0x1f7a600,124, 0x1f7a800,4, 0x1f7a880,18, 0x1f7a900,4, 0x1f7a980,23, 0x1f7aa00,10, 0x1f7aa2c,2, 0x1f7aa40,2, 0x1f7aa4c,3, 0x1f7aa60,2, 0x1f7aa6c,3, 0x1f7aa80,2, 0x1f7aa8c,2, 0x1f7aaa0,2, 0x1f7aaac,2, 0x1f7aac0,2, 0x1f7aacc,2, 0x1f7ab00,4, 0x1f7ab40,15, 0x1f7ab80,3, 0x1f7ab90,7, 0x1f7abb0,3, 0x1f7abc0,3, 0x1f7abd0,3, 0x1f7abe0,1, 0x1f7ac00,17, 0x1f7ae00,15, 0x1f7ae40,4, 0x1f7ae60,17, 0x1f7aec0,6, 0x1f7aee0,4, 0x1f7aef4,11, 0x1f7af24,28, 0x1f7b000,1, 0x1f7b080,1, 0x1f7b0a0,5, 0x1f7b0c0,5, 0x1f7b0e0,5, 0x1f7b100,1, 0x1f7b120,5, 0x1f7b140,5, 0x1f7b160,5, 0x1f7b180,24, 0x1f7b200,5, 0x1f7c000,20, 0x1f80000,18, 0x1f80050,3, 0x1f80060,3, 0x1f80070,14, 0x1f800c0,5, 0x1f80400,13, 0x1f80440,2, 0x1f8044c,3, 0x1f80460,2, 0x1f80480,13, 0x1f804c0,2, 0x1f804cc,3, 0x1f804e0,2, 0x1f80500,1, 0x1f80508,16, 0x1f80560,2, 0x1f8056c,3, 0x1f80600,4, 0x1f80680,19, 0x1f80800,24, 0x1f80864,2, 0x1f80870,4, 0x1f80a00,27, 0x1f80a80,4, 0x1f80ac0,25, 0x1f80b40,6, 0x1f80b60,4, 0x1f80b74,11, 0x1f80ba4,8, 0x1f80c00,3, 0x1f80c10,3, 0x1f80c20,1, 0x1f80c40,11, 0x1f80c80,23, 0x1f80ce0,15, 0x1f80d20,15, 0x1f80d60,2, 0x1f80d6c,2, 0x1f80d80,1, 0x1f81000,18, 0x1f81050,3, 0x1f81060,3, 0x1f81070,14, 0x1f810c0,5, 0x1f81400,13, 0x1f81440,2, 0x1f8144c,3, 0x1f81460,2, 0x1f81480,13, 0x1f814c0,2, 0x1f814cc,3, 0x1f814e0,2, 0x1f81500,1, 0x1f81508,16, 0x1f81560,2, 0x1f8156c,3, 0x1f81600,4, 0x1f81680,19, 0x1f81800,24, 0x1f81864,2, 0x1f81870,4, 0x1f81a00,27, 0x1f81a80,4, 0x1f81ac0,25, 0x1f81b40,6, 0x1f81b60,4, 0x1f81b74,11, 0x1f81ba4,8, 0x1f81c00,3, 0x1f81c10,3, 0x1f81c20,1, 0x1f81c40,11, 0x1f81c80,23, 0x1f81ce0,15, 0x1f81d20,15, 0x1f81d60,2, 0x1f81d6c,2, 0x1f81d80,1, 0x1f82000,20, 0x1f82080,7, 0x1f820a0,1, 0x1f820b0,1, 0x1f820b8,2, 0x1f84000,14, 0x2000000,534, 0x2001000,2, 0x2001040,9, 0x2001080,7, 0x2002000,534, 0x2003000,12, 0x2003044,6, 0x2003080,8, 0x20030a4,1, 0x20030c0,7, 0x20030e0,7, 0x2003100,7, 0x2003120,7, 0x2003140,8, 0x2003164,6, 0x2003180,12, 0x2004000,534, 0x2005000,2, 0x2005040,9, 0x2005080,7, 0x2006000,534, 0x2007000,12, 0x2007044,6, 0x2007080,8, 0x20070a4,1, 0x20070c0,7, 0x20070e0,7, 0x2007100,7, 0x2007120,7, 0x2007140,8, 0x2007164,6, 0x2007180,12, 0x2008004,5, 0x2008200,27, 0x2008280,4, 0x20082c0,25, 0x2008340,6, 0x2008360,4, 0x2008374,11, 0x20083a4,5, 0x2008400,1, 0x2010000,397, 0x2010800,93, 0x2010980,6, 0x2010a00,41, 0x2010b00,2, 0x2010b20,19, 0x2010c00,25, 0x2010c80,1, 0x2010d00,28, 0x2010d80,1, 0x2011000,397, 0x2011800,93, 0x2011980,6, 0x2011a00,41, 0x2011b00,2, 0x2011b20,19, 0x2011c00,25, 0x2011c80,1, 0x2011d00,28, 0x2011d80,1, 0x2012000,7, 0x2012040,9, 0x2012080,4, 0x20120a0,5, 0x20120c0,2, 0x2014000,3, 0x2014010,6, 0x2014200,7, 0x2014220,6, 0x2014240,7, 0x2014260,6, 0x2014280,2, 0x201428c,2, 0x20142a0,2, 0x20142ac,2, 0x20142c0,7, 0x20142e0,7, 0x2014300,2, 0x201430c,2, 0x2014320,6, 0x2014340,7, 0x2014360,6, 0x2014380,6, 0x20143a0,7, 0x20143c0,6, 0x20143e0,6, 0x2014400,3, 0x2014440,12, 0x2014484,1, 0x20144c0,16, 0x2014800,7, 0x2014820,14, 0x2014880,9, 0x20148a8,12, 0x2014900,7, 0x2014920,14, 0x2014980,9, 0x20149a8,12, 0x2014a00,10, 0x2014a40,2, 0x2014a4c,3, 0x2014c00,5, 0x2014c20,1, 0x2014c28,3, 0x2020000,534, 0x2021000,2, 0x2021040,9, 0x2021080,7, 0x2022000,534, 0x2023000,12, 0x2023044,6, 0x2023080,8, 0x20230a4,1, 0x20230c0,7, 0x20230e0,7, 0x2023100,7, 0x2023120,7, 0x2023140,8, 0x2023164,6, 0x2023180,12, 0x2024000,534, 0x2025000,2, 0x2025040,9, 0x2025080,7, 0x2026000,534, 0x2027000,12, 0x2027044,6, 0x2027080,8, 0x20270a4,1, 0x20270c0,7, 0x20270e0,7, 0x2027100,7, 0x2027120,7, 0x2027140,8, 0x2027164,6, 0x2027180,12, 0x2028004,5, 0x2028200,27, 0x2028280,4, 0x20282c0,25, 0x2028340,6, 0x2028360,4, 0x2028374,11, 0x20283a4,5, 0x2028400,1, 0x2030000,397, 0x2030800,93, 0x2030980,6, 0x2030a00,41, 0x2030b00,2, 0x2030b20,19, 0x2030c00,25, 0x2030c80,1, 0x2030d00,28, 0x2030d80,1, 0x2031000,397, 0x2031800,93, 0x2031980,6, 0x2031a00,41, 0x2031b00,2, 0x2031b20,19, 0x2031c00,25, 0x2031c80,1, 0x2031d00,28, 0x2031d80,1, 0x2032000,7, 0x2032040,9, 0x2032080,4, 0x20320a0,5, 0x20320c0,2, 0x2034000,3, 0x2034010,6, 0x2034200,7, 0x2034220,6, 0x2034240,7, 0x2034260,6, 0x2034280,2, 0x203428c,2, 0x20342a0,2, 0x20342ac,2, 0x20342c0,7, 0x20342e0,7, 0x2034300,2, 0x203430c,2, 0x2034320,6, 0x2034340,7, 0x2034360,6, 0x2034380,6, 0x20343a0,7, 0x20343c0,6, 0x20343e0,6, 0x2034400,3, 0x2034440,12, 0x2034484,1, 0x20344c0,16, 0x2034800,7, 0x2034820,14, 0x2034880,9, 0x20348a8,12, 0x2034900,7, 0x2034920,14, 0x2034980,9, 0x20349a8,12, 0x2034a00,10, 0x2034a40,2, 0x2034a4c,3, 0x2034c00,5, 0x2034c20,1, 0x2034c28,3, 0x2040000,37, 0x2040100,3, 0x2040110,15, 0x2040200,37, 0x2040300,3, 0x2040310,15, 0x2040400,5, 0x2040420,5, 0x2040440,18, 0x2040800,3, 0x2040810,2, 0x2040820,3, 0x2040830,2, 0x2040840,1, 0x2041000,12, 0x2041040,12, 0x2041080,2, 0x2041100,19, 0x2041180,19, 0x2041200,26, 0x2041400,20, 0x2041480,20, 0x2041500,8, 0x2041540,4, 0x2041580,15, 0x20415c0,15, 0x2041600,9, 0x2041630,5, 0x2042000,37, 0x2042100,3, 0x2042110,15, 0x2042200,37, 0x2042300,3, 0x2042310,15, 0x2042400,5, 0x2042420,5, 0x2042440,18, 0x2042800,3, 0x2042810,2, 0x2042820,3, 0x2042830,2, 0x2042840,1, 0x2043000,12, 0x2043040,12, 0x2043080,2, 0x2043100,19, 0x2043180,19, 0x2043200,26, 0x2043400,20, 0x2043480,20, 0x2043500,8, 0x2043540,4, 0x2043580,15, 0x20435c0,15, 0x2043600,9, 0x2043630,5, 0x2044000,6, 0x2044020,1, 0x204402c,3, 0x2044040,11, 0x2044070,3, 0x2044080,2, 0x2048000,49, 0x2048100,12, 0x2048140,4, 0x2048184,1, 0x2048198,2, 0x20481a4,1, 0x20481b8,7, 0x20481e0,4, 0x2048200,20, 0x2048280,3, 0x2048290,9, 0x20482c0,6, 0x20482e0,1, 0x20482e8,7, 0x2048400,49, 0x2048500,12, 0x2048540,4, 0x2048584,1, 0x2048598,2, 0x20485a4,1, 0x20485b8,7, 0x20485e0,4, 0x2048600,20, 0x2048680,3, 0x2048690,9, 0x20486c0,6, 0x20486e0,1, 0x20486e8,7, 0x2048800,49, 0x2048900,12, 0x2048940,4, 0x2048984,1, 0x2048998,2, 0x20489a4,1, 0x20489b8,7, 0x20489e0,4, 0x2048a00,20, 0x2048a80,3, 0x2048a90,9, 0x2048ac0,6, 0x2048ae0,1, 0x2048ae8,7, 0x2048c00,49, 0x2048d00,12, 0x2048d40,4, 0x2048d84,1, 0x2048d98,2, 0x2048da4,1, 0x2048db8,7, 0x2048de0,4, 0x2048e00,20, 0x2048e80,3, 0x2048e90,9, 0x2048ec0,6, 0x2048ee0,1, 0x2048ee8,7, 0x2049000,49, 0x2049100,12, 0x2049140,4, 0x2049184,1, 0x2049198,2, 0x20491a4,1, 0x20491b8,7, 0x20491e0,4, 0x2049200,20, 0x2049280,3, 0x2049290,9, 0x20492c0,6, 0x20492e0,1, 0x20492e8,7, 0x2049400,49, 0x2049500,12, 0x2049540,4, 0x2049584,1, 0x2049598,2, 0x20495a4,1, 0x20495b8,7, 0x20495e0,4, 0x2049600,20, 0x2049680,3, 0x2049690,9, 0x20496c0,6, 0x20496e0,1, 0x20496e8,7, 0x2049800,49, 0x2049900,12, 0x2049940,4, 0x2049984,1, 0x2049998,2, 0x20499a4,1, 0x20499b8,7, 0x20499e0,4, 0x2049a00,20, 0x2049a80,3, 0x2049a90,9, 0x2049ac0,6, 0x2049ae0,1, 0x2049ae8,7, 0x204a000,20, 0x204a080,2, 0x204a100,20, 0x204a180,2, 0x204a200,4, 0x204a400,20, 0x204a480,2, 0x204a500,20, 0x204a580,2, 0x204a600,4, 0x204a800,3, 0x204a840,12, 0x204a880,12, 0x204a8c0,12, 0x204a900,12, 0x204a940,12, 0x204a980,12, 0x204a9c0,12, 0x204aa00,12, 0x204ac00,12, 0x204ac40,7, 0x204ac60,10, 0x204b004,1, 0x204b018,40, 0x204b100,7, 0x204b120,7, 0x204b140,2, 0x204b14c,2, 0x204b160,2, 0x204b16c,2, 0x204b180,18, 0x204b200,2, 0x204b220,10, 0x204b260,20, 0x204b2c0,7, 0x204b300,15, 0x204b340,9, 0x204b380,6, 0x204b3a0,4, 0x204b400,4, 0x204c000,106, 0x204c200,2, 0x204c240,9, 0x204c280,7, 0x204c400,106, 0x204c604,6, 0x204c700,15, 0x204c740,9, 0x204c780,6, 0x204c7a0,6, 0x204c800,8, 0x204c824,1, 0x204c830,15, 0x204c870,3, 0x2060000,518, 0x2060900,45, 0x2060a00,45, 0x2060b00,45, 0x2060c00,45, 0x2060d00,45, 0x2060e00,45, 0x2060f00,45, 0x2061000,45, 0x2061800,9, 0x2061840,364, 0x2061e00,19, 0x2062000,9, 0x2062040,364, 0x2062600,19, 0x2062800,6, 0x2062820,3, 0x2062840,7, 0x2062880,6, 0x20628a0,3, 0x20628c0,7, 0x2062900,1, 0x2062908,3, 0x2062918,8, 0x2062940,7, 0x2063000,2, 0x2063800,18, 0x2063880,18, 0x2063c00,4, 0x2063c20,7, 0x2063d00,4, 0x2063d80,20, 0x2063e00,1, 0x2064000,21, 0x2064058,3, 0x2064100,1, 0x2064124,1, 0x206412c,5, 0x2064144,1, 0x206414c,6, 0x2064184,6, 0x20641a4,6, 0x20641c4,1, 0x20641cc,1, 0x2064400,9, 0x2064440,9, 0x2064480,15, 0x20644c0,15, 0x2064500,15, 0x2064540,15, 0x2064580,15, 0x20645c0,15, 0x2064600,15, 0x2064640,15, 0x2064680,59, 0x2064800,1, 0x2064808,16, 0x2064850,1, 0x2064858,7, 0x2068000,3, 0x2068010,1, 0x2068018,3, 0x206a000,4, 0x206a080,19, 0x206a100,12, 0x206a200,4, 0x206a280,19, 0x206a300,12, 0x206a400,2, 0x206a600,124, 0x206a800,4, 0x206a880,18, 0x206a900,4, 0x206a980,23, 0x206aa00,10, 0x206aa2c,2, 0x206aa40,2, 0x206aa4c,3, 0x206aa60,2, 0x206aa6c,3, 0x206aa80,2, 0x206aa8c,2, 0x206aaa0,2, 0x206aaac,2, 0x206aac0,2, 0x206aacc,2, 0x206ab00,4, 0x206ab40,15, 0x206ab80,3, 0x206ab90,7, 0x206abb0,3, 0x206abc0,3, 0x206abd0,3, 0x206abe0,1, 0x206ac00,17, 0x206ae00,15, 0x206ae40,4, 0x206ae60,17, 0x206aec0,6, 0x206aee0,4, 0x206aef4,11, 0x206af24,28, 0x206b000,1, 0x206b080,1, 0x206b0a0,5, 0x206b0c0,5, 0x206b0e0,5, 0x206b100,1, 0x206b120,5, 0x206b140,5, 0x206b160,5, 0x206b180,24, 0x206b200,5, 0x206c000,20, 0x2070000,518, 0x2070900,45, 0x2070a00,45, 0x2070b00,45, 0x2070c00,45, 0x2070d00,45, 0x2070e00,45, 0x2070f00,45, 0x2071000,45, 0x2071800,9, 0x2071840,364, 0x2071e00,19, 0x2072000,9, 0x2072040,364, 0x2072600,19, 0x2072800,6, 0x2072820,3, 0x2072840,7, 0x2072880,6, 0x20728a0,3, 0x20728c0,7, 0x2072900,1, 0x2072908,3, 0x2072918,8, 0x2072940,7, 0x2073000,2, 0x2073800,18, 0x2073880,18, 0x2073c00,4, 0x2073c20,7, 0x2073d00,4, 0x2073d80,20, 0x2073e00,1, 0x2074000,21, 0x2074058,3, 0x2074100,1, 0x2074124,1, 0x207412c,5, 0x2074144,1, 0x207414c,6, 0x2074184,6, 0x20741a4,6, 0x20741c4,1, 0x20741cc,1, 0x2074400,9, 0x2074440,9, 0x2074480,15, 0x20744c0,15, 0x2074500,15, 0x2074540,15, 0x2074580,15, 0x20745c0,15, 0x2074600,15, 0x2074640,15, 0x2074680,59, 0x2074800,1, 0x2074808,16, 0x2074850,1, 0x2074858,7, 0x2078000,3, 0x2078010,1, 0x2078018,3, 0x207a000,4, 0x207a080,19, 0x207a100,12, 0x207a200,4, 0x207a280,19, 0x207a300,12, 0x207a400,2, 0x207a600,124, 0x207a800,4, 0x207a880,18, 0x207a900,4, 0x207a980,23, 0x207aa00,10, 0x207aa2c,2, 0x207aa40,2, 0x207aa4c,3, 0x207aa60,2, 0x207aa6c,3, 0x207aa80,2, 0x207aa8c,2, 0x207aaa0,2, 0x207aaac,2, 0x207aac0,2, 0x207aacc,2, 0x207ab00,4, 0x207ab40,15, 0x207ab80,3, 0x207ab90,7, 0x207abb0,3, 0x207abc0,3, 0x207abd0,3, 0x207abe0,1, 0x207ac00,17, 0x207ae00,15, 0x207ae40,4, 0x207ae60,17, 0x207aec0,6, 0x207aee0,4, 0x207aef4,11, 0x207af24,28, 0x207b000,1, 0x207b080,1, 0x207b0a0,5, 0x207b0c0,5, 0x207b0e0,5, 0x207b100,1, 0x207b120,5, 0x207b140,5, 0x207b160,5, 0x207b180,24, 0x207b200,5, 0x207c000,20, 0x2080000,18, 0x2080050,3, 0x2080060,3, 0x2080070,14, 0x20800c0,5, 0x2080400,13, 0x2080440,2, 0x208044c,3, 0x2080460,2, 0x2080480,13, 0x20804c0,2, 0x20804cc,3, 0x20804e0,2, 0x2080500,1, 0x2080508,16, 0x2080560,2, 0x208056c,3, 0x2080600,4, 0x2080680,19, 0x2080800,24, 0x2080864,2, 0x2080870,4, 0x2080a00,27, 0x2080a80,4, 0x2080ac0,25, 0x2080b40,6, 0x2080b60,4, 0x2080b74,11, 0x2080ba4,8, 0x2080c00,3, 0x2080c10,3, 0x2080c20,1, 0x2080c40,11, 0x2080c80,23, 0x2080ce0,15, 0x2080d20,15, 0x2080d60,2, 0x2080d6c,2, 0x2080d80,1, 0x2081000,18, 0x2081050,3, 0x2081060,3, 0x2081070,14, 0x20810c0,5, 0x2081400,13, 0x2081440,2, 0x208144c,3, 0x2081460,2, 0x2081480,13, 0x20814c0,2, 0x20814cc,3, 0x20814e0,2, 0x2081500,1, 0x2081508,16, 0x2081560,2, 0x208156c,3, 0x2081600,4, 0x2081680,19, 0x2081800,24, 0x2081864,2, 0x2081870,4, 0x2081a00,27, 0x2081a80,4, 0x2081ac0,25, 0x2081b40,6, 0x2081b60,4, 0x2081b74,11, 0x2081ba4,8, 0x2081c00,3, 0x2081c10,3, 0x2081c20,1, 0x2081c40,11, 0x2081c80,23, 0x2081ce0,15, 0x2081d20,15, 0x2081d60,2, 0x2081d6c,2, 0x2081d80,1, 0x2082000,20, 0x2082080,7, 0x20820a0,1, 0x20820b0,1, 0x20820b8,2, 0x2084000,14, 0x2100000,534, 0x2101000,2, 0x2101040,9, 0x2101080,7, 0x2102000,534, 0x2103000,12, 0x2103044,6, 0x2103080,8, 0x21030a4,1, 0x21030c0,7, 0x21030e0,7, 0x2103100,7, 0x2103120,7, 0x2103140,8, 0x2103164,6, 0x2103180,12, 0x2104000,534, 0x2105000,2, 0x2105040,9, 0x2105080,7, 0x2106000,534, 0x2107000,12, 0x2107044,6, 0x2107080,8, 0x21070a4,1, 0x21070c0,7, 0x21070e0,7, 0x2107100,7, 0x2107120,7, 0x2107140,8, 0x2107164,6, 0x2107180,12, 0x2108004,5, 0x2108200,27, 0x2108280,4, 0x21082c0,25, 0x2108340,6, 0x2108360,4, 0x2108374,11, 0x21083a4,5, 0x2108400,1, 0x2110000,397, 0x2110800,93, 0x2110980,6, 0x2110a00,41, 0x2110b00,2, 0x2110b20,19, 0x2110c00,25, 0x2110c80,1, 0x2110d00,28, 0x2110d80,1, 0x2111000,397, 0x2111800,93, 0x2111980,6, 0x2111a00,41, 0x2111b00,2, 0x2111b20,19, 0x2111c00,25, 0x2111c80,1, 0x2111d00,28, 0x2111d80,1, 0x2112000,7, 0x2112040,9, 0x2112080,4, 0x21120a0,5, 0x21120c0,2, 0x2114000,3, 0x2114010,6, 0x2114200,7, 0x2114220,6, 0x2114240,7, 0x2114260,6, 0x2114280,2, 0x211428c,2, 0x21142a0,2, 0x21142ac,2, 0x21142c0,7, 0x21142e0,7, 0x2114300,2, 0x211430c,2, 0x2114320,6, 0x2114340,7, 0x2114360,6, 0x2114380,6, 0x21143a0,7, 0x21143c0,6, 0x21143e0,6, 0x2114400,3, 0x2114440,12, 0x2114484,1, 0x21144c0,16, 0x2114800,7, 0x2114820,14, 0x2114880,9, 0x21148a8,12, 0x2114900,7, 0x2114920,14, 0x2114980,9, 0x21149a8,12, 0x2114a00,10, 0x2114a40,2, 0x2114a4c,3, 0x2114c00,5, 0x2114c20,1, 0x2114c28,3, 0x2120000,534, 0x2121000,2, 0x2121040,9, 0x2121080,7, 0x2122000,534, 0x2123000,12, 0x2123044,6, 0x2123080,8, 0x21230a4,1, 0x21230c0,7, 0x21230e0,7, 0x2123100,7, 0x2123120,7, 0x2123140,8, 0x2123164,6, 0x2123180,12, 0x2124000,534, 0x2125000,2, 0x2125040,9, 0x2125080,7, 0x2126000,534, 0x2127000,12, 0x2127044,6, 0x2127080,8, 0x21270a4,1, 0x21270c0,7, 0x21270e0,7, 0x2127100,7, 0x2127120,7, 0x2127140,8, 0x2127164,6, 0x2127180,12, 0x2128004,5, 0x2128200,27, 0x2128280,4, 0x21282c0,25, 0x2128340,6, 0x2128360,4, 0x2128374,11, 0x21283a4,5, 0x2128400,1, 0x2130000,397, 0x2130800,93, 0x2130980,6, 0x2130a00,41, 0x2130b00,2, 0x2130b20,19, 0x2130c00,25, 0x2130c80,1, 0x2130d00,28, 0x2130d80,1, 0x2131000,397, 0x2131800,93, 0x2131980,6, 0x2131a00,41, 0x2131b00,2, 0x2131b20,19, 0x2131c00,25, 0x2131c80,1, 0x2131d00,28, 0x2131d80,1, 0x2132000,7, 0x2132040,9, 0x2132080,4, 0x21320a0,5, 0x21320c0,2, 0x2134000,3, 0x2134010,6, 0x2134200,7, 0x2134220,6, 0x2134240,7, 0x2134260,6, 0x2134280,2, 0x213428c,2, 0x21342a0,2, 0x21342ac,2, 0x21342c0,7, 0x21342e0,7, 0x2134300,2, 0x213430c,2, 0x2134320,6, 0x2134340,7, 0x2134360,6, 0x2134380,6, 0x21343a0,7, 0x21343c0,6, 0x21343e0,6, 0x2134400,3, 0x2134440,12, 0x2134484,1, 0x21344c0,16, 0x2134800,7, 0x2134820,14, 0x2134880,9, 0x21348a8,12, 0x2134900,7, 0x2134920,14, 0x2134980,9, 0x21349a8,12, 0x2134a00,10, 0x2134a40,2, 0x2134a4c,3, 0x2134c00,5, 0x2134c20,1, 0x2134c28,3, 0x2140000,37, 0x2140100,3, 0x2140110,15, 0x2140200,37, 0x2140300,3, 0x2140310,15, 0x2140400,5, 0x2140420,5, 0x2140440,18, 0x2140800,3, 0x2140810,2, 0x2140820,3, 0x2140830,2, 0x2140840,1, 0x2141000,12, 0x2141040,12, 0x2141080,2, 0x2141100,19, 0x2141180,19, 0x2141200,26, 0x2141400,20, 0x2141480,20, 0x2141500,8, 0x2141540,4, 0x2141580,15, 0x21415c0,15, 0x2141600,9, 0x2141630,5, 0x2142000,37, 0x2142100,3, 0x2142110,15, 0x2142200,37, 0x2142300,3, 0x2142310,15, 0x2142400,5, 0x2142420,5, 0x2142440,18, 0x2142800,3, 0x2142810,2, 0x2142820,3, 0x2142830,2, 0x2142840,1, 0x2143000,12, 0x2143040,12, 0x2143080,2, 0x2143100,19, 0x2143180,19, 0x2143200,26, 0x2143400,20, 0x2143480,20, 0x2143500,8, 0x2143540,4, 0x2143580,15, 0x21435c0,15, 0x2143600,9, 0x2143630,5, 0x2144000,6, 0x2144020,1, 0x214402c,3, 0x2144040,11, 0x2144070,3, 0x2144080,2, 0x2148000,49, 0x2148100,12, 0x2148140,4, 0x2148184,1, 0x2148198,2, 0x21481a4,1, 0x21481b8,7, 0x21481e0,4, 0x2148200,20, 0x2148280,3, 0x2148290,9, 0x21482c0,6, 0x21482e0,1, 0x21482e8,7, 0x2148400,49, 0x2148500,12, 0x2148540,4, 0x2148584,1, 0x2148598,2, 0x21485a4,1, 0x21485b8,7, 0x21485e0,4, 0x2148600,20, 0x2148680,3, 0x2148690,9, 0x21486c0,6, 0x21486e0,1, 0x21486e8,7, 0x2148800,49, 0x2148900,12, 0x2148940,4, 0x2148984,1, 0x2148998,2, 0x21489a4,1, 0x21489b8,7, 0x21489e0,4, 0x2148a00,20, 0x2148a80,3, 0x2148a90,9, 0x2148ac0,6, 0x2148ae0,1, 0x2148ae8,7, 0x2148c00,49, 0x2148d00,12, 0x2148d40,4, 0x2148d84,1, 0x2148d98,2, 0x2148da4,1, 0x2148db8,7, 0x2148de0,4, 0x2148e00,20, 0x2148e80,3, 0x2148e90,9, 0x2148ec0,6, 0x2148ee0,1, 0x2148ee8,7, 0x2149000,49, 0x2149100,12, 0x2149140,4, 0x2149184,1, 0x2149198,2, 0x21491a4,1, 0x21491b8,7, 0x21491e0,4, 0x2149200,20, 0x2149280,3, 0x2149290,9, 0x21492c0,6, 0x21492e0,1, 0x21492e8,7, 0x2149400,49, 0x2149500,12, 0x2149540,4, 0x2149584,1, 0x2149598,2, 0x21495a4,1, 0x21495b8,7, 0x21495e0,4, 0x2149600,20, 0x2149680,3, 0x2149690,9, 0x21496c0,6, 0x21496e0,1, 0x21496e8,7, 0x2149800,49, 0x2149900,12, 0x2149940,4, 0x2149984,1, 0x2149998,2, 0x21499a4,1, 0x21499b8,7, 0x21499e0,4, 0x2149a00,20, 0x2149a80,3, 0x2149a90,9, 0x2149ac0,6, 0x2149ae0,1, 0x2149ae8,7, 0x214a000,20, 0x214a080,2, 0x214a100,20, 0x214a180,2, 0x214a200,4, 0x214a400,20, 0x214a480,2, 0x214a500,20, 0x214a580,2, 0x214a600,4, 0x214a800,3, 0x214a840,12, 0x214a880,12, 0x214a8c0,12, 0x214a900,12, 0x214a940,12, 0x214a980,12, 0x214a9c0,12, 0x214aa00,12, 0x214ac00,12, 0x214ac40,7, 0x214ac60,10, 0x214b004,1, 0x214b018,40, 0x214b100,7, 0x214b120,7, 0x214b140,2, 0x214b14c,2, 0x214b160,2, 0x214b16c,2, 0x214b180,18, 0x214b200,2, 0x214b220,10, 0x214b260,20, 0x214b2c0,7, 0x214b300,15, 0x214b340,9, 0x214b380,6, 0x214b3a0,4, 0x214b400,4, 0x214c000,106, 0x214c200,2, 0x214c240,9, 0x214c280,7, 0x214c400,106, 0x214c604,6, 0x214c700,15, 0x214c740,9, 0x214c780,6, 0x214c7a0,6, 0x214c800,8, 0x214c824,1, 0x214c830,15, 0x214c870,3, 0x2160000,518, 0x2160900,45, 0x2160a00,45, 0x2160b00,45, 0x2160c00,45, 0x2160d00,45, 0x2160e00,45, 0x2160f00,45, 0x2161000,45, 0x2161800,9, 0x2161840,364, 0x2161e00,19, 0x2162000,9, 0x2162040,364, 0x2162600,19, 0x2162800,6, 0x2162820,3, 0x2162840,7, 0x2162880,6, 0x21628a0,3, 0x21628c0,7, 0x2162900,1, 0x2162908,3, 0x2162918,8, 0x2162940,7, 0x2163000,2, 0x2163800,18, 0x2163880,18, 0x2163c00,4, 0x2163c20,7, 0x2163d00,4, 0x2163d80,20, 0x2163e00,1, 0x2164000,21, 0x2164058,3, 0x2164100,1, 0x2164124,1, 0x216412c,5, 0x2164144,1, 0x216414c,6, 0x2164184,6, 0x21641a4,6, 0x21641c4,1, 0x21641cc,1, 0x2164400,9, 0x2164440,9, 0x2164480,15, 0x21644c0,15, 0x2164500,15, 0x2164540,15, 0x2164580,15, 0x21645c0,15, 0x2164600,15, 0x2164640,15, 0x2164680,59, 0x2164800,1, 0x2164808,16, 0x2164850,1, 0x2164858,7, 0x2168000,3, 0x2168010,1, 0x2168018,3, 0x216a000,4, 0x216a080,19, 0x216a100,12, 0x216a200,4, 0x216a280,19, 0x216a300,12, 0x216a400,2, 0x216a600,124, 0x216a800,4, 0x216a880,18, 0x216a900,4, 0x216a980,23, 0x216aa00,10, 0x216aa2c,2, 0x216aa40,2, 0x216aa4c,3, 0x216aa60,2, 0x216aa6c,3, 0x216aa80,2, 0x216aa8c,2, 0x216aaa0,2, 0x216aaac,2, 0x216aac0,2, 0x216aacc,2, 0x216ab00,4, 0x216ab40,15, 0x216ab80,3, 0x216ab90,7, 0x216abb0,3, 0x216abc0,3, 0x216abd0,3, 0x216abe0,1, 0x216ac00,17, 0x216ae00,15, 0x216ae40,4, 0x216ae60,17, 0x216aec0,6, 0x216aee0,4, 0x216aef4,11, 0x216af24,28, 0x216b000,1, 0x216b080,1, 0x216b0a0,5, 0x216b0c0,5, 0x216b0e0,5, 0x216b100,1, 0x216b120,5, 0x216b140,5, 0x216b160,5, 0x216b180,24, 0x216b200,5, 0x216c000,20, 0x2170000,518, 0x2170900,45, 0x2170a00,45, 0x2170b00,45, 0x2170c00,45, 0x2170d00,45, 0x2170e00,45, 0x2170f00,45, 0x2171000,45, 0x2171800,9, 0x2171840,364, 0x2171e00,19, 0x2172000,9, 0x2172040,364, 0x2172600,19, 0x2172800,6, 0x2172820,3, 0x2172840,7, 0x2172880,6, 0x21728a0,3, 0x21728c0,7, 0x2172900,1, 0x2172908,3, 0x2172918,8, 0x2172940,7, 0x2173000,2, 0x2173800,18, 0x2173880,18, 0x2173c00,4, 0x2173c20,7, 0x2173d00,4, 0x2173d80,20, 0x2173e00,1, 0x2174000,21, 0x2174058,3, 0x2174100,1, 0x2174124,1, 0x217412c,5, 0x2174144,1, 0x217414c,6, 0x2174184,6, 0x21741a4,6, 0x21741c4,1, 0x21741cc,1, 0x2174400,9, 0x2174440,9, 0x2174480,15, 0x21744c0,15, 0x2174500,15, 0x2174540,15, 0x2174580,15, 0x21745c0,15, 0x2174600,15, 0x2174640,15, 0x2174680,59, 0x2174800,1, 0x2174808,16, 0x2174850,1, 0x2174858,7, 0x2178000,3, 0x2178010,1, 0x2178018,3, 0x217a000,4, 0x217a080,19, 0x217a100,12, 0x217a200,4, 0x217a280,19, 0x217a300,12, 0x217a400,2, 0x217a600,124, 0x217a800,4, 0x217a880,18, 0x217a900,4, 0x217a980,23, 0x217aa00,10, 0x217aa2c,2, 0x217aa40,2, 0x217aa4c,3, 0x217aa60,2, 0x217aa6c,3, 0x217aa80,2, 0x217aa8c,2, 0x217aaa0,2, 0x217aaac,2, 0x217aac0,2, 0x217aacc,2, 0x217ab00,4, 0x217ab40,15, 0x217ab80,3, 0x217ab90,7, 0x217abb0,3, 0x217abc0,3, 0x217abd0,3, 0x217abe0,1, 0x217ac00,17, 0x217ae00,15, 0x217ae40,4, 0x217ae60,17, 0x217aec0,6, 0x217aee0,4, 0x217aef4,11, 0x217af24,28, 0x217b000,1, 0x217b080,1, 0x217b0a0,5, 0x217b0c0,5, 0x217b0e0,5, 0x217b100,1, 0x217b120,5, 0x217b140,5, 0x217b160,5, 0x217b180,24, 0x217b200,5, 0x217c000,20, 0x2180000,18, 0x2180050,3, 0x2180060,3, 0x2180070,14, 0x21800c0,5, 0x2180400,13, 0x2180440,2, 0x218044c,3, 0x2180460,2, 0x2180480,13, 0x21804c0,2, 0x21804cc,3, 0x21804e0,2, 0x2180500,1, 0x2180508,16, 0x2180560,2, 0x218056c,3, 0x2180600,4, 0x2180680,19, 0x2180800,24, 0x2180864,2, 0x2180870,4, 0x2180a00,27, 0x2180a80,4, 0x2180ac0,25, 0x2180b40,6, 0x2180b60,4, 0x2180b74,11, 0x2180ba4,8, 0x2180c00,3, 0x2180c10,3, 0x2180c20,1, 0x2180c40,11, 0x2180c80,23, 0x2180ce0,15, 0x2180d20,15, 0x2180d60,2, 0x2180d6c,2, 0x2180d80,1, 0x2181000,18, 0x2181050,3, 0x2181060,3, 0x2181070,14, 0x21810c0,5, 0x2181400,13, 0x2181440,2, 0x218144c,3, 0x2181460,2, 0x2181480,13, 0x21814c0,2, 0x21814cc,3, 0x21814e0,2, 0x2181500,1, 0x2181508,16, 0x2181560,2, 0x218156c,3, 0x2181600,4, 0x2181680,19, 0x2181800,24, 0x2181864,2, 0x2181870,4, 0x2181a00,27, 0x2181a80,4, 0x2181ac0,25, 0x2181b40,6, 0x2181b60,4, 0x2181b74,11, 0x2181ba4,8, 0x2181c00,3, 0x2181c10,3, 0x2181c20,1, 0x2181c40,11, 0x2181c80,23, 0x2181ce0,15, 0x2181d20,15, 0x2181d60,2, 0x2181d6c,2, 0x2181d80,1, 0x2182000,20, 0x2182080,7, 0x21820a0,1, 0x21820b0,1, 0x21820b8,2, 0x2184000,14, 0x2200000,534, 0x2201000,2, 0x2201040,9, 0x2201080,7, 0x2202000,534, 0x2203000,12, 0x2203044,6, 0x2203080,8, 0x22030a4,1, 0x22030c0,7, 0x22030e0,7, 0x2203100,7, 0x2203120,7, 0x2203140,8, 0x2203164,6, 0x2203180,12, 0x2204000,534, 0x2205000,2, 0x2205040,9, 0x2205080,7, 0x2206000,534, 0x2207000,12, 0x2207044,6, 0x2207080,8, 0x22070a4,1, 0x22070c0,7, 0x22070e0,7, 0x2207100,7, 0x2207120,7, 0x2207140,8, 0x2207164,6, 0x2207180,12, 0x2208004,5, 0x2208200,27, 0x2208280,4, 0x22082c0,25, 0x2208340,6, 0x2208360,4, 0x2208374,11, 0x22083a4,5, 0x2208400,1, 0x2210000,397, 0x2210800,93, 0x2210980,6, 0x2210a00,41, 0x2210b00,2, 0x2210b20,19, 0x2210c00,25, 0x2210c80,1, 0x2210d00,28, 0x2210d80,1, 0x2211000,397, 0x2211800,93, 0x2211980,6, 0x2211a00,41, 0x2211b00,2, 0x2211b20,19, 0x2211c00,25, 0x2211c80,1, 0x2211d00,28, 0x2211d80,1, 0x2212000,7, 0x2212040,9, 0x2212080,4, 0x22120a0,5, 0x22120c0,2, 0x2214000,3, 0x2214010,6, 0x2214200,7, 0x2214220,6, 0x2214240,7, 0x2214260,6, 0x2214280,2, 0x221428c,2, 0x22142a0,2, 0x22142ac,2, 0x22142c0,7, 0x22142e0,7, 0x2214300,2, 0x221430c,2, 0x2214320,6, 0x2214340,7, 0x2214360,6, 0x2214380,6, 0x22143a0,7, 0x22143c0,6, 0x22143e0,6, 0x2214400,3, 0x2214440,12, 0x2214484,1, 0x22144c0,16, 0x2214800,7, 0x2214820,14, 0x2214880,9, 0x22148a8,12, 0x2214900,7, 0x2214920,14, 0x2214980,9, 0x22149a8,12, 0x2214a00,10, 0x2214a40,2, 0x2214a4c,3, 0x2214c00,5, 0x2214c20,1, 0x2214c28,3, 0x2220000,534, 0x2221000,2, 0x2221040,9, 0x2221080,7, 0x2222000,534, 0x2223000,12, 0x2223044,6, 0x2223080,8, 0x22230a4,1, 0x22230c0,7, 0x22230e0,7, 0x2223100,7, 0x2223120,7, 0x2223140,8, 0x2223164,6, 0x2223180,12, 0x2224000,534, 0x2225000,2, 0x2225040,9, 0x2225080,7, 0x2226000,534, 0x2227000,12, 0x2227044,6, 0x2227080,8, 0x22270a4,1, 0x22270c0,7, 0x22270e0,7, 0x2227100,7, 0x2227120,7, 0x2227140,8, 0x2227164,6, 0x2227180,12, 0x2228004,5, 0x2228200,27, 0x2228280,4, 0x22282c0,25, 0x2228340,6, 0x2228360,4, 0x2228374,11, 0x22283a4,5, 0x2228400,1, 0x2230000,397, 0x2230800,93, 0x2230980,6, 0x2230a00,41, 0x2230b00,2, 0x2230b20,19, 0x2230c00,25, 0x2230c80,1, 0x2230d00,28, 0x2230d80,1, 0x2231000,397, 0x2231800,93, 0x2231980,6, 0x2231a00,41, 0x2231b00,2, 0x2231b20,19, 0x2231c00,25, 0x2231c80,1, 0x2231d00,28, 0x2231d80,1, 0x2232000,7, 0x2232040,9, 0x2232080,4, 0x22320a0,5, 0x22320c0,2, 0x2234000,3, 0x2234010,6, 0x2234200,7, 0x2234220,6, 0x2234240,7, 0x2234260,6, 0x2234280,2, 0x223428c,2, 0x22342a0,2, 0x22342ac,2, 0x22342c0,7, 0x22342e0,7, 0x2234300,2, 0x223430c,2, 0x2234320,6, 0x2234340,7, 0x2234360,6, 0x2234380,6, 0x22343a0,7, 0x22343c0,6, 0x22343e0,6, 0x2234400,3, 0x2234440,12, 0x2234484,1, 0x22344c0,16, 0x2234800,7, 0x2234820,14, 0x2234880,9, 0x22348a8,12, 0x2234900,7, 0x2234920,14, 0x2234980,9, 0x22349a8,12, 0x2234a00,10, 0x2234a40,2, 0x2234a4c,3, 0x2234c00,5, 0x2234c20,1, 0x2234c28,3, 0x2240000,37, 0x2240100,3, 0x2240110,15, 0x2240200,37, 0x2240300,3, 0x2240310,15, 0x2240400,5, 0x2240420,5, 0x2240440,18, 0x2240800,3, 0x2240810,2, 0x2240820,3, 0x2240830,2, 0x2240840,1, 0x2241000,12, 0x2241040,12, 0x2241080,2, 0x2241100,19, 0x2241180,19, 0x2241200,26, 0x2241400,20, 0x2241480,20, 0x2241500,8, 0x2241540,4, 0x2241580,15, 0x22415c0,15, 0x2241600,9, 0x2241630,5, 0x2242000,37, 0x2242100,3, 0x2242110,15, 0x2242200,37, 0x2242300,3, 0x2242310,15, 0x2242400,5, 0x2242420,5, 0x2242440,18, 0x2242800,3, 0x2242810,2, 0x2242820,3, 0x2242830,2, 0x2242840,1, 0x2243000,12, 0x2243040,12, 0x2243080,2, 0x2243100,19, 0x2243180,19, 0x2243200,26, 0x2243400,20, 0x2243480,20, 0x2243500,8, 0x2243540,4, 0x2243580,15, 0x22435c0,15, 0x2243600,9, 0x2243630,5, 0x2244000,6, 0x2244020,1, 0x224402c,3, 0x2244040,11, 0x2244070,3, 0x2244080,2, 0x2248000,49, 0x2248100,12, 0x2248140,4, 0x2248184,1, 0x2248198,2, 0x22481a4,1, 0x22481b8,7, 0x22481e0,4, 0x2248200,20, 0x2248280,3, 0x2248290,9, 0x22482c0,6, 0x22482e0,1, 0x22482e8,7, 0x2248400,49, 0x2248500,12, 0x2248540,4, 0x2248584,1, 0x2248598,2, 0x22485a4,1, 0x22485b8,7, 0x22485e0,4, 0x2248600,20, 0x2248680,3, 0x2248690,9, 0x22486c0,6, 0x22486e0,1, 0x22486e8,7, 0x2248800,49, 0x2248900,12, 0x2248940,4, 0x2248984,1, 0x2248998,2, 0x22489a4,1, 0x22489b8,7, 0x22489e0,4, 0x2248a00,20, 0x2248a80,3, 0x2248a90,9, 0x2248ac0,6, 0x2248ae0,1, 0x2248ae8,7, 0x2248c00,49, 0x2248d00,12, 0x2248d40,4, 0x2248d84,1, 0x2248d98,2, 0x2248da4,1, 0x2248db8,7, 0x2248de0,4, 0x2248e00,20, 0x2248e80,3, 0x2248e90,9, 0x2248ec0,6, 0x2248ee0,1, 0x2248ee8,7, 0x2249000,49, 0x2249100,12, 0x2249140,4, 0x2249184,1, 0x2249198,2, 0x22491a4,1, 0x22491b8,7, 0x22491e0,4, 0x2249200,20, 0x2249280,3, 0x2249290,9, 0x22492c0,6, 0x22492e0,1, 0x22492e8,7, 0x2249400,49, 0x2249500,12, 0x2249540,4, 0x2249584,1, 0x2249598,2, 0x22495a4,1, 0x22495b8,7, 0x22495e0,4, 0x2249600,20, 0x2249680,3, 0x2249690,9, 0x22496c0,6, 0x22496e0,1, 0x22496e8,7, 0x2249800,49, 0x2249900,12, 0x2249940,4, 0x2249984,1, 0x2249998,2, 0x22499a4,1, 0x22499b8,7, 0x22499e0,4, 0x2249a00,20, 0x2249a80,3, 0x2249a90,9, 0x2249ac0,6, 0x2249ae0,1, 0x2249ae8,7, 0x224a000,20, 0x224a080,2, 0x224a100,20, 0x224a180,2, 0x224a200,4, 0x224a400,20, 0x224a480,2, 0x224a500,20, 0x224a580,2, 0x224a600,4, 0x224a800,3, 0x224a840,12, 0x224a880,12, 0x224a8c0,12, 0x224a900,12, 0x224a940,12, 0x224a980,12, 0x224a9c0,12, 0x224aa00,12, 0x224ac00,12, 0x224ac40,7, 0x224ac60,10, 0x224b004,1, 0x224b018,40, 0x224b100,7, 0x224b120,7, 0x224b140,2, 0x224b14c,2, 0x224b160,2, 0x224b16c,2, 0x224b180,18, 0x224b200,2, 0x224b220,10, 0x224b260,20, 0x224b2c0,7, 0x224b300,15, 0x224b340,9, 0x224b380,6, 0x224b3a0,4, 0x224b400,4, 0x224c000,106, 0x224c200,2, 0x224c240,9, 0x224c280,7, 0x224c400,106, 0x224c604,6, 0x224c700,15, 0x224c740,9, 0x224c780,6, 0x224c7a0,6, 0x224c800,8, 0x224c824,1, 0x224c830,15, 0x224c870,3, 0x2260000,518, 0x2260900,45, 0x2260a00,45, 0x2260b00,45, 0x2260c00,45, 0x2260d00,45, 0x2260e00,45, 0x2260f00,45, 0x2261000,45, 0x2261800,9, 0x2261840,364, 0x2261e00,19, 0x2262000,9, 0x2262040,364, 0x2262600,19, 0x2262800,6, 0x2262820,3, 0x2262840,7, 0x2262880,6, 0x22628a0,3, 0x22628c0,7, 0x2262900,1, 0x2262908,3, 0x2262918,8, 0x2262940,7, 0x2263000,2, 0x2263800,18, 0x2263880,18, 0x2263c00,4, 0x2263c20,7, 0x2263d00,4, 0x2263d80,20, 0x2263e00,1, 0x2264000,21, 0x2264058,3, 0x2264100,1, 0x2264124,1, 0x226412c,5, 0x2264144,1, 0x226414c,6, 0x2264184,6, 0x22641a4,6, 0x22641c4,1, 0x22641cc,1, 0x2264400,9, 0x2264440,9, 0x2264480,15, 0x22644c0,15, 0x2264500,15, 0x2264540,15, 0x2264580,15, 0x22645c0,15, 0x2264600,15, 0x2264640,15, 0x2264680,59, 0x2264800,1, 0x2264808,16, 0x2264850,1, 0x2264858,7, 0x2268000,3, 0x2268010,1, 0x2268018,3, 0x226a000,4, 0x226a080,19, 0x226a100,12, 0x226a200,4, 0x226a280,19, 0x226a300,12, 0x226a400,2, 0x226a600,124, 0x226a800,4, 0x226a880,18, 0x226a900,4, 0x226a980,23, 0x226aa00,10, 0x226aa2c,2, 0x226aa40,2, 0x226aa4c,3, 0x226aa60,2, 0x226aa6c,3, 0x226aa80,2, 0x226aa8c,2, 0x226aaa0,2, 0x226aaac,2, 0x226aac0,2, 0x226aacc,2, 0x226ab00,4, 0x226ab40,15, 0x226ab80,3, 0x226ab90,7, 0x226abb0,3, 0x226abc0,3, 0x226abd0,3, 0x226abe0,1, 0x226ac00,17, 0x226ae00,15, 0x226ae40,4, 0x226ae60,17, 0x226aec0,6, 0x226aee0,4, 0x226aef4,11, 0x226af24,28, 0x226b000,1, 0x226b080,1, 0x226b0a0,5, 0x226b0c0,5, 0x226b0e0,5, 0x226b100,1, 0x226b120,5, 0x226b140,5, 0x226b160,5, 0x226b180,24, 0x226b200,5, 0x226c000,20, 0x2270000,518, 0x2270900,45, 0x2270a00,45, 0x2270b00,45, 0x2270c00,45, 0x2270d00,45, 0x2270e00,45, 0x2270f00,45, 0x2271000,45, 0x2271800,9, 0x2271840,364, 0x2271e00,19, 0x2272000,9, 0x2272040,364, 0x2272600,19, 0x2272800,6, 0x2272820,3, 0x2272840,7, 0x2272880,6, 0x22728a0,3, 0x22728c0,7, 0x2272900,1, 0x2272908,3, 0x2272918,8, 0x2272940,7, 0x2273000,2, 0x2273800,18, 0x2273880,18, 0x2273c00,4, 0x2273c20,7, 0x2273d00,4, 0x2273d80,20, 0x2273e00,1, 0x2274000,21, 0x2274058,3, 0x2274100,1, 0x2274124,1, 0x227412c,5, 0x2274144,1, 0x227414c,6, 0x2274184,6, 0x22741a4,6, 0x22741c4,1, 0x22741cc,1, 0x2274400,9, 0x2274440,9, 0x2274480,15, 0x22744c0,15, 0x2274500,15, 0x2274540,15, 0x2274580,15, 0x22745c0,15, 0x2274600,15, 0x2274640,15, 0x2274680,59, 0x2274800,1, 0x2274808,16, 0x2274850,1, 0x2274858,7, 0x2278000,3, 0x2278010,1, 0x2278018,3, 0x227a000,4, 0x227a080,19, 0x227a100,12, 0x227a200,4, 0x227a280,19, 0x227a300,12, 0x227a400,2, 0x227a600,124, 0x227a800,4, 0x227a880,18, 0x227a900,4, 0x227a980,23, 0x227aa00,10, 0x227aa2c,2, 0x227aa40,2, 0x227aa4c,3, 0x227aa60,2, 0x227aa6c,3, 0x227aa80,2, 0x227aa8c,2, 0x227aaa0,2, 0x227aaac,2, 0x227aac0,2, 0x227aacc,2, 0x227ab00,4, 0x227ab40,15, 0x227ab80,3, 0x227ab90,7, 0x227abb0,3, 0x227abc0,3, 0x227abd0,3, 0x227abe0,1, 0x227ac00,17, 0x227ae00,15, 0x227ae40,4, 0x227ae60,17, 0x227aec0,6, 0x227aee0,4, 0x227aef4,11, 0x227af24,28, 0x227b000,1, 0x227b080,1, 0x227b0a0,5, 0x227b0c0,5, 0x227b0e0,5, 0x227b100,1, 0x227b120,5, 0x227b140,5, 0x227b160,5, 0x227b180,24, 0x227b200,5, 0x227c000,20, 0x2280000,18, 0x2280050,3, 0x2280060,3, 0x2280070,14, 0x22800c0,5, 0x2280400,13, 0x2280440,2, 0x228044c,3, 0x2280460,2, 0x2280480,13, 0x22804c0,2, 0x22804cc,3, 0x22804e0,2, 0x2280500,1, 0x2280508,16, 0x2280560,2, 0x228056c,3, 0x2280600,4, 0x2280680,19, 0x2280800,24, 0x2280864,2, 0x2280870,4, 0x2280a00,27, 0x2280a80,4, 0x2280ac0,25, 0x2280b40,6, 0x2280b60,4, 0x2280b74,11, 0x2280ba4,8, 0x2280c00,3, 0x2280c10,3, 0x2280c20,1, 0x2280c40,11, 0x2280c80,23, 0x2280ce0,15, 0x2280d20,15, 0x2280d60,2, 0x2280d6c,2, 0x2280d80,1, 0x2281000,18, 0x2281050,3, 0x2281060,3, 0x2281070,14, 0x22810c0,5, 0x2281400,13, 0x2281440,2, 0x228144c,3, 0x2281460,2, 0x2281480,13, 0x22814c0,2, 0x22814cc,3, 0x22814e0,2, 0x2281500,1, 0x2281508,16, 0x2281560,2, 0x228156c,3, 0x2281600,4, 0x2281680,19, 0x2281800,24, 0x2281864,2, 0x2281870,4, 0x2281a00,27, 0x2281a80,4, 0x2281ac0,25, 0x2281b40,6, 0x2281b60,4, 0x2281b74,11, 0x2281ba4,8, 0x2281c00,3, 0x2281c10,3, 0x2281c20,1, 0x2281c40,11, 0x2281c80,23, 0x2281ce0,15, 0x2281d20,15, 0x2281d60,2, 0x2281d6c,2, 0x2281d80,1, 0x2282000,20, 0x2282080,7, 0x22820a0,1, 0x22820b0,1, 0x22820b8,2, 0x2284000,14, 0x2300000,534, 0x2301000,2, 0x2301040,9, 0x2301080,7, 0x2302000,534, 0x2303000,12, 0x2303044,6, 0x2303080,8, 0x23030a4,1, 0x23030c0,7, 0x23030e0,7, 0x2303100,7, 0x2303120,7, 0x2303140,8, 0x2303164,6, 0x2303180,12, 0x2304000,534, 0x2305000,2, 0x2305040,9, 0x2305080,7, 0x2306000,534, 0x2307000,12, 0x2307044,6, 0x2307080,8, 0x23070a4,1, 0x23070c0,7, 0x23070e0,7, 0x2307100,7, 0x2307120,7, 0x2307140,8, 0x2307164,6, 0x2307180,12, 0x2308004,5, 0x2308200,27, 0x2308280,4, 0x23082c0,25, 0x2308340,6, 0x2308360,4, 0x2308374,11, 0x23083a4,5, 0x2308400,1, 0x2310000,397, 0x2310800,93, 0x2310980,6, 0x2310a00,41, 0x2310b00,2, 0x2310b20,19, 0x2310c00,25, 0x2310c80,1, 0x2310d00,28, 0x2310d80,1, 0x2311000,397, 0x2311800,93, 0x2311980,6, 0x2311a00,41, 0x2311b00,2, 0x2311b20,19, 0x2311c00,25, 0x2311c80,1, 0x2311d00,28, 0x2311d80,1, 0x2312000,7, 0x2312040,9, 0x2312080,4, 0x23120a0,5, 0x23120c0,2, 0x2314000,3, 0x2314010,6, 0x2314200,7, 0x2314220,6, 0x2314240,7, 0x2314260,6, 0x2314280,2, 0x231428c,2, 0x23142a0,2, 0x23142ac,2, 0x23142c0,7, 0x23142e0,7, 0x2314300,2, 0x231430c,2, 0x2314320,6, 0x2314340,7, 0x2314360,6, 0x2314380,6, 0x23143a0,7, 0x23143c0,6, 0x23143e0,6, 0x2314400,3, 0x2314440,12, 0x2314484,1, 0x23144c0,16, 0x2314800,7, 0x2314820,14, 0x2314880,9, 0x23148a8,12, 0x2314900,7, 0x2314920,14, 0x2314980,9, 0x23149a8,12, 0x2314a00,10, 0x2314a40,2, 0x2314a4c,3, 0x2314c00,5, 0x2314c20,1, 0x2314c28,3, 0x2320000,534, 0x2321000,2, 0x2321040,9, 0x2321080,7, 0x2322000,534, 0x2323000,12, 0x2323044,6, 0x2323080,8, 0x23230a4,1, 0x23230c0,7, 0x23230e0,7, 0x2323100,7, 0x2323120,7, 0x2323140,8, 0x2323164,6, 0x2323180,12, 0x2324000,534, 0x2325000,2, 0x2325040,9, 0x2325080,7, 0x2326000,534, 0x2327000,12, 0x2327044,6, 0x2327080,8, 0x23270a4,1, 0x23270c0,7, 0x23270e0,7, 0x2327100,7, 0x2327120,7, 0x2327140,8, 0x2327164,6, 0x2327180,12, 0x2328004,5, 0x2328200,27, 0x2328280,4, 0x23282c0,25, 0x2328340,6, 0x2328360,4, 0x2328374,11, 0x23283a4,5, 0x2328400,1, 0x2330000,397, 0x2330800,93, 0x2330980,6, 0x2330a00,41, 0x2330b00,2, 0x2330b20,19, 0x2330c00,25, 0x2330c80,1, 0x2330d00,28, 0x2330d80,1, 0x2331000,397, 0x2331800,93, 0x2331980,6, 0x2331a00,41, 0x2331b00,2, 0x2331b20,19, 0x2331c00,25, 0x2331c80,1, 0x2331d00,28, 0x2331d80,1, 0x2332000,7, 0x2332040,9, 0x2332080,4, 0x23320a0,5, 0x23320c0,2, 0x2334000,3, 0x2334010,6, 0x2334200,7, 0x2334220,6, 0x2334240,7, 0x2334260,6, 0x2334280,2, 0x233428c,2, 0x23342a0,2, 0x23342ac,2, 0x23342c0,7, 0x23342e0,7, 0x2334300,2, 0x233430c,2, 0x2334320,6, 0x2334340,7, 0x2334360,6, 0x2334380,6, 0x23343a0,7, 0x23343c0,6, 0x23343e0,6, 0x2334400,3, 0x2334440,12, 0x2334484,1, 0x23344c0,16, 0x2334800,7, 0x2334820,14, 0x2334880,9, 0x23348a8,12, 0x2334900,7, 0x2334920,14, 0x2334980,9, 0x23349a8,12, 0x2334a00,10, 0x2334a40,2, 0x2334a4c,3, 0x2334c00,5, 0x2334c20,1, 0x2334c28,3, 0x2340000,37, 0x2340100,3, 0x2340110,15, 0x2340200,37, 0x2340300,3, 0x2340310,15, 0x2340400,5, 0x2340420,5, 0x2340440,18, 0x2340800,3, 0x2340810,2, 0x2340820,3, 0x2340830,2, 0x2340840,1, 0x2341000,12, 0x2341040,12, 0x2341080,2, 0x2341100,19, 0x2341180,19, 0x2341200,26, 0x2341400,20, 0x2341480,20, 0x2341500,8, 0x2341540,4, 0x2341580,15, 0x23415c0,15, 0x2341600,9, 0x2341630,5, 0x2342000,37, 0x2342100,3, 0x2342110,15, 0x2342200,37, 0x2342300,3, 0x2342310,15, 0x2342400,5, 0x2342420,5, 0x2342440,18, 0x2342800,3, 0x2342810,2, 0x2342820,3, 0x2342830,2, 0x2342840,1, 0x2343000,12, 0x2343040,12, 0x2343080,2, 0x2343100,19, 0x2343180,19, 0x2343200,26, 0x2343400,20, 0x2343480,20, 0x2343500,8, 0x2343540,4, 0x2343580,15, 0x23435c0,15, 0x2343600,9, 0x2343630,5, 0x2344000,6, 0x2344020,1, 0x234402c,3, 0x2344040,11, 0x2344070,3, 0x2344080,2, 0x2348000,49, 0x2348100,12, 0x2348140,4, 0x2348184,1, 0x2348198,2, 0x23481a4,1, 0x23481b8,7, 0x23481e0,4, 0x2348200,20, 0x2348280,3, 0x2348290,9, 0x23482c0,6, 0x23482e0,1, 0x23482e8,7, 0x2348400,49, 0x2348500,12, 0x2348540,4, 0x2348584,1, 0x2348598,2, 0x23485a4,1, 0x23485b8,7, 0x23485e0,4, 0x2348600,20, 0x2348680,3, 0x2348690,9, 0x23486c0,6, 0x23486e0,1, 0x23486e8,7, 0x2348800,49, 0x2348900,12, 0x2348940,4, 0x2348984,1, 0x2348998,2, 0x23489a4,1, 0x23489b8,7, 0x23489e0,4, 0x2348a00,20, 0x2348a80,3, 0x2348a90,9, 0x2348ac0,6, 0x2348ae0,1, 0x2348ae8,7, 0x2348c00,49, 0x2348d00,12, 0x2348d40,4, 0x2348d84,1, 0x2348d98,2, 0x2348da4,1, 0x2348db8,7, 0x2348de0,4, 0x2348e00,20, 0x2348e80,3, 0x2348e90,9, 0x2348ec0,6, 0x2348ee0,1, 0x2348ee8,7, 0x2349000,49, 0x2349100,12, 0x2349140,4, 0x2349184,1, 0x2349198,2, 0x23491a4,1, 0x23491b8,7, 0x23491e0,4, 0x2349200,20, 0x2349280,3, 0x2349290,9, 0x23492c0,6, 0x23492e0,1, 0x23492e8,7, 0x2349400,49, 0x2349500,12, 0x2349540,4, 0x2349584,1, 0x2349598,2, 0x23495a4,1, 0x23495b8,7, 0x23495e0,4, 0x2349600,20, 0x2349680,3, 0x2349690,9, 0x23496c0,6, 0x23496e0,1, 0x23496e8,7, 0x2349800,49, 0x2349900,12, 0x2349940,4, 0x2349984,1, 0x2349998,2, 0x23499a4,1, 0x23499b8,7, 0x23499e0,4, 0x2349a00,20, 0x2349a80,3, 0x2349a90,9, 0x2349ac0,6, 0x2349ae0,1, 0x2349ae8,7, 0x234a000,20, 0x234a080,2, 0x234a100,20, 0x234a180,2, 0x234a200,4, 0x234a400,20, 0x234a480,2, 0x234a500,20, 0x234a580,2, 0x234a600,4, 0x234a800,3, 0x234a840,12, 0x234a880,12, 0x234a8c0,12, 0x234a900,12, 0x234a940,12, 0x234a980,12, 0x234a9c0,12, 0x234aa00,12, 0x234ac00,12, 0x234ac40,7, 0x234ac60,10, 0x234b004,1, 0x234b018,40, 0x234b100,7, 0x234b120,7, 0x234b140,2, 0x234b14c,2, 0x234b160,2, 0x234b16c,2, 0x234b180,18, 0x234b200,2, 0x234b220,10, 0x234b260,20, 0x234b2c0,7, 0x234b300,15, 0x234b340,9, 0x234b380,6, 0x234b3a0,4, 0x234b400,4, 0x234c000,106, 0x234c200,2, 0x234c240,9, 0x234c280,7, 0x234c400,106, 0x234c604,6, 0x234c700,15, 0x234c740,9, 0x234c780,6, 0x234c7a0,6, 0x234c800,8, 0x234c824,1, 0x234c830,15, 0x234c870,3, 0x2360000,518, 0x2360900,45, 0x2360a00,45, 0x2360b00,45, 0x2360c00,45, 0x2360d00,45, 0x2360e00,45, 0x2360f00,45, 0x2361000,45, 0x2361800,9, 0x2361840,364, 0x2361e00,19, 0x2362000,9, 0x2362040,364, 0x2362600,19, 0x2362800,6, 0x2362820,3, 0x2362840,7, 0x2362880,6, 0x23628a0,3, 0x23628c0,7, 0x2362900,1, 0x2362908,3, 0x2362918,8, 0x2362940,7, 0x2363000,2, 0x2363800,18, 0x2363880,18, 0x2363c00,4, 0x2363c20,7, 0x2363d00,4, 0x2363d80,20, 0x2363e00,1, 0x2364000,21, 0x2364058,3, 0x2364100,1, 0x2364124,1, 0x236412c,5, 0x2364144,1, 0x236414c,6, 0x2364184,6, 0x23641a4,6, 0x23641c4,1, 0x23641cc,1, 0x2364400,9, 0x2364440,9, 0x2364480,15, 0x23644c0,15, 0x2364500,15, 0x2364540,15, 0x2364580,15, 0x23645c0,15, 0x2364600,15, 0x2364640,15, 0x2364680,59, 0x2364800,1, 0x2364808,16, 0x2364850,1, 0x2364858,7, 0x2368000,3, 0x2368010,1, 0x2368018,3, 0x236a000,4, 0x236a080,19, 0x236a100,12, 0x236a200,4, 0x236a280,19, 0x236a300,12, 0x236a400,2, 0x236a600,124, 0x236a800,4, 0x236a880,18, 0x236a900,4, 0x236a980,23, 0x236aa00,10, 0x236aa2c,2, 0x236aa40,2, 0x236aa4c,3, 0x236aa60,2, 0x236aa6c,3, 0x236aa80,2, 0x236aa8c,2, 0x236aaa0,2, 0x236aaac,2, 0x236aac0,2, 0x236aacc,2, 0x236ab00,4, 0x236ab40,15, 0x236ab80,3, 0x236ab90,7, 0x236abb0,3, 0x236abc0,3, 0x236abd0,3, 0x236abe0,1, 0x236ac00,17, 0x236ae00,15, 0x236ae40,4, 0x236ae60,17, 0x236aec0,6, 0x236aee0,4, 0x236aef4,11, 0x236af24,28, 0x236b000,1, 0x236b080,1, 0x236b0a0,5, 0x236b0c0,5, 0x236b0e0,5, 0x236b100,1, 0x236b120,5, 0x236b140,5, 0x236b160,5, 0x236b180,24, 0x236b200,5, 0x236c000,20, 0x2370000,518, 0x2370900,45, 0x2370a00,45, 0x2370b00,45, 0x2370c00,45, 0x2370d00,45, 0x2370e00,45, 0x2370f00,45, 0x2371000,45, 0x2371800,9, 0x2371840,364, 0x2371e00,19, 0x2372000,9, 0x2372040,364, 0x2372600,19, 0x2372800,6, 0x2372820,3, 0x2372840,7, 0x2372880,6, 0x23728a0,3, 0x23728c0,7, 0x2372900,1, 0x2372908,3, 0x2372918,8, 0x2372940,7, 0x2373000,2, 0x2373800,18, 0x2373880,18, 0x2373c00,4, 0x2373c20,7, 0x2373d00,4, 0x2373d80,20, 0x2373e00,1, 0x2374000,21, 0x2374058,3, 0x2374100,1, 0x2374124,1, 0x237412c,5, 0x2374144,1, 0x237414c,6, 0x2374184,6, 0x23741a4,6, 0x23741c4,1, 0x23741cc,1, 0x2374400,9, 0x2374440,9, 0x2374480,15, 0x23744c0,15, 0x2374500,15, 0x2374540,15, 0x2374580,15, 0x23745c0,15, 0x2374600,15, 0x2374640,15, 0x2374680,59, 0x2374800,1, 0x2374808,16, 0x2374850,1, 0x2374858,7, 0x2378000,3, 0x2378010,1, 0x2378018,3, 0x237a000,4, 0x237a080,19, 0x237a100,12, 0x237a200,4, 0x237a280,19, 0x237a300,12, 0x237a400,2, 0x237a600,124, 0x237a800,4, 0x237a880,18, 0x237a900,4, 0x237a980,23, 0x237aa00,10, 0x237aa2c,2, 0x237aa40,2, 0x237aa4c,3, 0x237aa60,2, 0x237aa6c,3, 0x237aa80,2, 0x237aa8c,2, 0x237aaa0,2, 0x237aaac,2, 0x237aac0,2, 0x237aacc,2, 0x237ab00,4, 0x237ab40,15, 0x237ab80,3, 0x237ab90,7, 0x237abb0,3, 0x237abc0,3, 0x237abd0,3, 0x237abe0,1, 0x237ac00,17, 0x237ae00,15, 0x237ae40,4, 0x237ae60,17, 0x237aec0,6, 0x237aee0,4, 0x237aef4,11, 0x237af24,28, 0x237b000,1, 0x237b080,1, 0x237b0a0,5, 0x237b0c0,5, 0x237b0e0,5, 0x237b100,1, 0x237b120,5, 0x237b140,5, 0x237b160,5, 0x237b180,24, 0x237b200,5, 0x237c000,20, 0x2380000,18, 0x2380050,3, 0x2380060,3, 0x2380070,14, 0x23800c0,5, 0x2380400,13, 0x2380440,2, 0x238044c,3, 0x2380460,2, 0x2380480,13, 0x23804c0,2, 0x23804cc,3, 0x23804e0,2, 0x2380500,1, 0x2380508,16, 0x2380560,2, 0x238056c,3, 0x2380600,4, 0x2380680,19, 0x2380800,24, 0x2380864,2, 0x2380870,4, 0x2380a00,27, 0x2380a80,4, 0x2380ac0,25, 0x2380b40,6, 0x2380b60,4, 0x2380b74,11, 0x2380ba4,8, 0x2380c00,3, 0x2380c10,3, 0x2380c20,1, 0x2380c40,11, 0x2380c80,23, 0x2380ce0,15, 0x2380d20,15, 0x2380d60,2, 0x2380d6c,2, 0x2380d80,1, 0x2381000,18, 0x2381050,3, 0x2381060,3, 0x2381070,14, 0x23810c0,5, 0x2381400,13, 0x2381440,2, 0x238144c,3, 0x2381460,2, 0x2381480,13, 0x23814c0,2, 0x23814cc,3, 0x23814e0,2, 0x2381500,1, 0x2381508,16, 0x2381560,2, 0x238156c,3, 0x2381600,4, 0x2381680,19, 0x2381800,24, 0x2381864,2, 0x2381870,4, 0x2381a00,27, 0x2381a80,4, 0x2381ac0,25, 0x2381b40,6, 0x2381b60,4, 0x2381b74,11, 0x2381ba4,8, 0x2381c00,3, 0x2381c10,3, 0x2381c20,1, 0x2381c40,11, 0x2381c80,23, 0x2381ce0,15, 0x2381d20,15, 0x2381d60,2, 0x2381d6c,2, 0x2381d80,1, 0x2382000,20, 0x2382080,7, 0x23820a0,1, 0x23820b0,1, 0x23820b8,2, 0x2384000,14, 0x2400000,534, 0x2401000,2, 0x2401040,9, 0x2401080,7, 0x2402000,534, 0x2403000,12, 0x2403044,6, 0x2403080,8, 0x24030a4,1, 0x24030c0,7, 0x24030e0,7, 0x2403100,7, 0x2403120,7, 0x2403140,8, 0x2403164,6, 0x2403180,12, 0x2404000,534, 0x2405000,2, 0x2405040,9, 0x2405080,7, 0x2406000,534, 0x2407000,12, 0x2407044,6, 0x2407080,8, 0x24070a4,1, 0x24070c0,7, 0x24070e0,7, 0x2407100,7, 0x2407120,7, 0x2407140,8, 0x2407164,6, 0x2407180,12, 0x2408004,5, 0x2408200,27, 0x2408280,4, 0x24082c0,25, 0x2408340,6, 0x2408360,4, 0x2408374,11, 0x24083a4,5, 0x2408400,1, 0x2410000,397, 0x2410800,93, 0x2410980,6, 0x2410a00,41, 0x2410b00,2, 0x2410b20,19, 0x2410c00,25, 0x2410c80,1, 0x2410d00,28, 0x2410d80,1, 0x2411000,397, 0x2411800,93, 0x2411980,6, 0x2411a00,41, 0x2411b00,2, 0x2411b20,19, 0x2411c00,25, 0x2411c80,1, 0x2411d00,28, 0x2411d80,1, 0x2412000,7, 0x2412040,9, 0x2412080,4, 0x24120a0,5, 0x24120c0,2, 0x2414000,3, 0x2414010,6, 0x2414200,7, 0x2414220,6, 0x2414240,7, 0x2414260,6, 0x2414280,2, 0x241428c,2, 0x24142a0,2, 0x24142ac,2, 0x24142c0,7, 0x24142e0,7, 0x2414300,2, 0x241430c,2, 0x2414320,6, 0x2414340,7, 0x2414360,6, 0x2414380,6, 0x24143a0,7, 0x24143c0,6, 0x24143e0,6, 0x2414400,3, 0x2414440,12, 0x2414484,1, 0x24144c0,16, 0x2414800,7, 0x2414820,14, 0x2414880,9, 0x24148a8,12, 0x2414900,7, 0x2414920,14, 0x2414980,9, 0x24149a8,12, 0x2414a00,10, 0x2414a40,2, 0x2414a4c,3, 0x2414c00,5, 0x2414c20,1, 0x2414c28,3, 0x2420000,534, 0x2421000,2, 0x2421040,9, 0x2421080,7, 0x2422000,534, 0x2423000,12, 0x2423044,6, 0x2423080,8, 0x24230a4,1, 0x24230c0,7, 0x24230e0,7, 0x2423100,7, 0x2423120,7, 0x2423140,8, 0x2423164,6, 0x2423180,12, 0x2424000,534, 0x2425000,2, 0x2425040,9, 0x2425080,7, 0x2426000,534, 0x2427000,12, 0x2427044,6, 0x2427080,8, 0x24270a4,1, 0x24270c0,7, 0x24270e0,7, 0x2427100,7, 0x2427120,7, 0x2427140,8, 0x2427164,6, 0x2427180,12, 0x2428004,5, 0x2428200,27, 0x2428280,4, 0x24282c0,25, 0x2428340,6, 0x2428360,4, 0x2428374,11, 0x24283a4,5, 0x2428400,1, 0x2430000,397, 0x2430800,93, 0x2430980,6, 0x2430a00,41, 0x2430b00,2, 0x2430b20,19, 0x2430c00,25, 0x2430c80,1, 0x2430d00,28, 0x2430d80,1, 0x2431000,397, 0x2431800,93, 0x2431980,6, 0x2431a00,41, 0x2431b00,2, 0x2431b20,19, 0x2431c00,25, 0x2431c80,1, 0x2431d00,28, 0x2431d80,1, 0x2432000,7, 0x2432040,9, 0x2432080,4, 0x24320a0,5, 0x24320c0,2, 0x2434000,3, 0x2434010,6, 0x2434200,7, 0x2434220,6, 0x2434240,7, 0x2434260,6, 0x2434280,2, 0x243428c,2, 0x24342a0,2, 0x24342ac,2, 0x24342c0,7, 0x24342e0,7, 0x2434300,2, 0x243430c,2, 0x2434320,6, 0x2434340,7, 0x2434360,6, 0x2434380,6, 0x24343a0,7, 0x24343c0,6, 0x24343e0,6, 0x2434400,3, 0x2434440,12, 0x2434484,1, 0x24344c0,16, 0x2434800,7, 0x2434820,14, 0x2434880,9, 0x24348a8,12, 0x2434900,7, 0x2434920,14, 0x2434980,9, 0x24349a8,12, 0x2434a00,10, 0x2434a40,2, 0x2434a4c,3, 0x2434c00,5, 0x2434c20,1, 0x2434c28,3, 0x2440000,37, 0x2440100,3, 0x2440110,15, 0x2440200,37, 0x2440300,3, 0x2440310,15, 0x2440400,5, 0x2440420,5, 0x2440440,18, 0x2440800,3, 0x2440810,2, 0x2440820,3, 0x2440830,2, 0x2440840,1, 0x2441000,12, 0x2441040,12, 0x2441080,2, 0x2441100,19, 0x2441180,19, 0x2441200,26, 0x2441400,20, 0x2441480,20, 0x2441500,8, 0x2441540,4, 0x2441580,15, 0x24415c0,15, 0x2441600,9, 0x2441630,5, 0x2442000,37, 0x2442100,3, 0x2442110,15, 0x2442200,37, 0x2442300,3, 0x2442310,15, 0x2442400,5, 0x2442420,5, 0x2442440,18, 0x2442800,3, 0x2442810,2, 0x2442820,3, 0x2442830,2, 0x2442840,1, 0x2443000,12, 0x2443040,12, 0x2443080,2, 0x2443100,19, 0x2443180,19, 0x2443200,26, 0x2443400,20, 0x2443480,20, 0x2443500,8, 0x2443540,4, 0x2443580,15, 0x24435c0,15, 0x2443600,9, 0x2443630,5, 0x2444000,6, 0x2444020,1, 0x244402c,3, 0x2444040,11, 0x2444070,3, 0x2444080,2, 0x2448000,49, 0x2448100,12, 0x2448140,4, 0x2448184,1, 0x2448198,2, 0x24481a4,1, 0x24481b8,7, 0x24481e0,4, 0x2448200,20, 0x2448280,3, 0x2448290,9, 0x24482c0,6, 0x24482e0,1, 0x24482e8,7, 0x2448400,49, 0x2448500,12, 0x2448540,4, 0x2448584,1, 0x2448598,2, 0x24485a4,1, 0x24485b8,7, 0x24485e0,4, 0x2448600,20, 0x2448680,3, 0x2448690,9, 0x24486c0,6, 0x24486e0,1, 0x24486e8,7, 0x2448800,49, 0x2448900,12, 0x2448940,4, 0x2448984,1, 0x2448998,2, 0x24489a4,1, 0x24489b8,7, 0x24489e0,4, 0x2448a00,20, 0x2448a80,3, 0x2448a90,9, 0x2448ac0,6, 0x2448ae0,1, 0x2448ae8,7, 0x2448c00,49, 0x2448d00,12, 0x2448d40,4, 0x2448d84,1, 0x2448d98,2, 0x2448da4,1, 0x2448db8,7, 0x2448de0,4, 0x2448e00,20, 0x2448e80,3, 0x2448e90,9, 0x2448ec0,6, 0x2448ee0,1, 0x2448ee8,7, 0x2449000,49, 0x2449100,12, 0x2449140,4, 0x2449184,1, 0x2449198,2, 0x24491a4,1, 0x24491b8,7, 0x24491e0,4, 0x2449200,20, 0x2449280,3, 0x2449290,9, 0x24492c0,6, 0x24492e0,1, 0x24492e8,7, 0x2449400,49, 0x2449500,12, 0x2449540,4, 0x2449584,1, 0x2449598,2, 0x24495a4,1, 0x24495b8,7, 0x24495e0,4, 0x2449600,20, 0x2449680,3, 0x2449690,9, 0x24496c0,6, 0x24496e0,1, 0x24496e8,7, 0x2449800,49, 0x2449900,12, 0x2449940,4, 0x2449984,1, 0x2449998,2, 0x24499a4,1, 0x24499b8,7, 0x24499e0,4, 0x2449a00,20, 0x2449a80,3, 0x2449a90,9, 0x2449ac0,6, 0x2449ae0,1, 0x2449ae8,7, 0x244a000,20, 0x244a080,2, 0x244a100,20, 0x244a180,2, 0x244a200,4, 0x244a400,20, 0x244a480,2, 0x244a500,20, 0x244a580,2, 0x244a600,4, 0x244a800,3, 0x244a840,12, 0x244a880,12, 0x244a8c0,12, 0x244a900,12, 0x244a940,12, 0x244a980,12, 0x244a9c0,12, 0x244aa00,12, 0x244ac00,12, 0x244ac40,7, 0x244ac60,10, 0x244b004,1, 0x244b018,40, 0x244b100,7, 0x244b120,7, 0x244b140,2, 0x244b14c,2, 0x244b160,2, 0x244b16c,2, 0x244b180,18, 0x244b200,2, 0x244b220,10, 0x244b260,20, 0x244b2c0,7, 0x244b300,15, 0x244b340,9, 0x244b380,6, 0x244b3a0,4, 0x244b400,4, 0x244c000,106, 0x244c200,2, 0x244c240,9, 0x244c280,7, 0x244c400,106, 0x244c604,6, 0x244c700,15, 0x244c740,9, 0x244c780,6, 0x244c7a0,6, 0x244c800,8, 0x244c824,1, 0x244c830,15, 0x244c870,3, 0x2460000,518, 0x2460900,45, 0x2460a00,45, 0x2460b00,45, 0x2460c00,45, 0x2460d00,45, 0x2460e00,45, 0x2460f00,45, 0x2461000,45, 0x2461800,9, 0x2461840,364, 0x2461e00,19, 0x2462000,9, 0x2462040,364, 0x2462600,19, 0x2462800,6, 0x2462820,3, 0x2462840,7, 0x2462880,6, 0x24628a0,3, 0x24628c0,7, 0x2462900,1, 0x2462908,3, 0x2462918,8, 0x2462940,7, 0x2463000,2, 0x2463800,18, 0x2463880,18, 0x2463c00,4, 0x2463c20,7, 0x2463d00,4, 0x2463d80,20, 0x2463e00,1, 0x2464000,21, 0x2464058,3, 0x2464100,1, 0x2464124,1, 0x246412c,5, 0x2464144,1, 0x246414c,6, 0x2464184,6, 0x24641a4,6, 0x24641c4,1, 0x24641cc,1, 0x2464400,9, 0x2464440,9, 0x2464480,15, 0x24644c0,15, 0x2464500,15, 0x2464540,15, 0x2464580,15, 0x24645c0,15, 0x2464600,15, 0x2464640,15, 0x2464680,59, 0x2464800,1, 0x2464808,16, 0x2464850,1, 0x2464858,7, 0x2468000,3, 0x2468010,1, 0x2468018,3, 0x246a000,4, 0x246a080,19, 0x246a100,12, 0x246a200,4, 0x246a280,19, 0x246a300,12, 0x246a400,2, 0x246a600,124, 0x246a800,4, 0x246a880,18, 0x246a900,4, 0x246a980,23, 0x246aa00,10, 0x246aa2c,2, 0x246aa40,2, 0x246aa4c,3, 0x246aa60,2, 0x246aa6c,3, 0x246aa80,2, 0x246aa8c,2, 0x246aaa0,2, 0x246aaac,2, 0x246aac0,2, 0x246aacc,2, 0x246ab00,4, 0x246ab40,15, 0x246ab80,3, 0x246ab90,7, 0x246abb0,3, 0x246abc0,3, 0x246abd0,3, 0x246abe0,1, 0x246ac00,17, 0x246ae00,15, 0x246ae40,4, 0x246ae60,17, 0x246aec0,6, 0x246aee0,4, 0x246aef4,11, 0x246af24,28, 0x246b000,1, 0x246b080,1, 0x246b0a0,5, 0x246b0c0,5, 0x246b0e0,5, 0x246b100,1, 0x246b120,5, 0x246b140,5, 0x246b160,5, 0x246b180,24, 0x246b200,5, 0x246c000,20, 0x2470000,518, 0x2470900,45, 0x2470a00,45, 0x2470b00,45, 0x2470c00,45, 0x2470d00,45, 0x2470e00,45, 0x2470f00,45, 0x2471000,45, 0x2471800,9, 0x2471840,364, 0x2471e00,19, 0x2472000,9, 0x2472040,364, 0x2472600,19, 0x2472800,6, 0x2472820,3, 0x2472840,7, 0x2472880,6, 0x24728a0,3, 0x24728c0,7, 0x2472900,1, 0x2472908,3, 0x2472918,8, 0x2472940,7, 0x2473000,2, 0x2473800,18, 0x2473880,18, 0x2473c00,4, 0x2473c20,7, 0x2473d00,4, 0x2473d80,20, 0x2473e00,1, 0x2474000,21, 0x2474058,3, 0x2474100,1, 0x2474124,1, 0x247412c,5, 0x2474144,1, 0x247414c,6, 0x2474184,6, 0x24741a4,6, 0x24741c4,1, 0x24741cc,1, 0x2474400,9, 0x2474440,9, 0x2474480,15, 0x24744c0,15, 0x2474500,15, 0x2474540,15, 0x2474580,15, 0x24745c0,15, 0x2474600,15, 0x2474640,15, 0x2474680,59, 0x2474800,1, 0x2474808,16, 0x2474850,1, 0x2474858,7, 0x2478000,3, 0x2478010,1, 0x2478018,3, 0x247a000,4, 0x247a080,19, 0x247a100,12, 0x247a200,4, 0x247a280,19, 0x247a300,12, 0x247a400,2, 0x247a600,124, 0x247a800,4, 0x247a880,18, 0x247a900,4, 0x247a980,23, 0x247aa00,10, 0x247aa2c,2, 0x247aa40,2, 0x247aa4c,3, 0x247aa60,2, 0x247aa6c,3, 0x247aa80,2, 0x247aa8c,2, 0x247aaa0,2, 0x247aaac,2, 0x247aac0,2, 0x247aacc,2, 0x247ab00,4, 0x247ab40,15, 0x247ab80,3, 0x247ab90,7, 0x247abb0,3, 0x247abc0,3, 0x247abd0,3, 0x247abe0,1, 0x247ac00,17, 0x247ae00,15, 0x247ae40,4, 0x247ae60,17, 0x247aec0,6, 0x247aee0,4, 0x247aef4,11, 0x247af24,28, 0x247b000,1, 0x247b080,1, 0x247b0a0,5, 0x247b0c0,5, 0x247b0e0,5, 0x247b100,1, 0x247b120,5, 0x247b140,5, 0x247b160,5, 0x247b180,24, 0x247b200,5, 0x247c000,20, 0x2480000,18, 0x2480050,3, 0x2480060,3, 0x2480070,14, 0x24800c0,5, 0x2480400,13, 0x2480440,2, 0x248044c,3, 0x2480460,2, 0x2480480,13, 0x24804c0,2, 0x24804cc,3, 0x24804e0,2, 0x2480500,1, 0x2480508,16, 0x2480560,2, 0x248056c,3, 0x2480600,4, 0x2480680,19, 0x2480800,24, 0x2480864,2, 0x2480870,4, 0x2480a00,27, 0x2480a80,4, 0x2480ac0,25, 0x2480b40,6, 0x2480b60,4, 0x2480b74,11, 0x2480ba4,8, 0x2480c00,3, 0x2480c10,3, 0x2480c20,1, 0x2480c40,11, 0x2480c80,23, 0x2480ce0,15, 0x2480d20,15, 0x2480d60,2, 0x2480d6c,2, 0x2480d80,1, 0x2481000,18, 0x2481050,3, 0x2481060,3, 0x2481070,14, 0x24810c0,5, 0x2481400,13, 0x2481440,2, 0x248144c,3, 0x2481460,2, 0x2481480,13, 0x24814c0,2, 0x24814cc,3, 0x24814e0,2, 0x2481500,1, 0x2481508,16, 0x2481560,2, 0x248156c,3, 0x2481600,4, 0x2481680,19, 0x2481800,24, 0x2481864,2, 0x2481870,4, 0x2481a00,27, 0x2481a80,4, 0x2481ac0,25, 0x2481b40,6, 0x2481b60,4, 0x2481b74,11, 0x2481ba4,8, 0x2481c00,3, 0x2481c10,3, 0x2481c20,1, 0x2481c40,11, 0x2481c80,23, 0x2481ce0,15, 0x2481d20,15, 0x2481d60,2, 0x2481d6c,2, 0x2481d80,1, 0x2482000,20, 0x2482080,7, 0x24820a0,1, 0x24820b0,1, 0x24820b8,2, 0x2484000,14, 0x2500000,534, 0x2501000,2, 0x2501040,9, 0x2501080,7, 0x2502000,534, 0x2503000,12, 0x2503044,6, 0x2503080,8, 0x25030a4,1, 0x25030c0,7, 0x25030e0,7, 0x2503100,7, 0x2503120,7, 0x2503140,8, 0x2503164,6, 0x2503180,12, 0x2504000,534, 0x2505000,2, 0x2505040,9, 0x2505080,7, 0x2506000,534, 0x2507000,12, 0x2507044,6, 0x2507080,8, 0x25070a4,1, 0x25070c0,7, 0x25070e0,7, 0x2507100,7, 0x2507120,7, 0x2507140,8, 0x2507164,6, 0x2507180,12, 0x2508004,5, 0x2508200,27, 0x2508280,4, 0x25082c0,25, 0x2508340,6, 0x2508360,4, 0x2508374,11, 0x25083a4,5, 0x2508400,1, 0x2510000,397, 0x2510800,93, 0x2510980,6, 0x2510a00,41, 0x2510b00,2, 0x2510b20,19, 0x2510c00,25, 0x2510c80,1, 0x2510d00,28, 0x2510d80,1, 0x2511000,397, 0x2511800,93, 0x2511980,6, 0x2511a00,41, 0x2511b00,2, 0x2511b20,19, 0x2511c00,25, 0x2511c80,1, 0x2511d00,28, 0x2511d80,1, 0x2512000,7, 0x2512040,9, 0x2512080,4, 0x25120a0,5, 0x25120c0,2, 0x2514000,3, 0x2514010,6, 0x2514200,7, 0x2514220,6, 0x2514240,7, 0x2514260,6, 0x2514280,2, 0x251428c,2, 0x25142a0,2, 0x25142ac,2, 0x25142c0,7, 0x25142e0,7, 0x2514300,2, 0x251430c,2, 0x2514320,6, 0x2514340,7, 0x2514360,6, 0x2514380,6, 0x25143a0,7, 0x25143c0,6, 0x25143e0,6, 0x2514400,3, 0x2514440,12, 0x2514484,1, 0x25144c0,16, 0x2514800,7, 0x2514820,14, 0x2514880,9, 0x25148a8,12, 0x2514900,7, 0x2514920,14, 0x2514980,9, 0x25149a8,12, 0x2514a00,10, 0x2514a40,2, 0x2514a4c,3, 0x2514c00,5, 0x2514c20,1, 0x2514c28,3, 0x2520000,534, 0x2521000,2, 0x2521040,9, 0x2521080,7, 0x2522000,534, 0x2523000,12, 0x2523044,6, 0x2523080,8, 0x25230a4,1, 0x25230c0,7, 0x25230e0,7, 0x2523100,7, 0x2523120,7, 0x2523140,8, 0x2523164,6, 0x2523180,12, 0x2524000,534, 0x2525000,2, 0x2525040,9, 0x2525080,7, 0x2526000,534, 0x2527000,12, 0x2527044,6, 0x2527080,8, 0x25270a4,1, 0x25270c0,7, 0x25270e0,7, 0x2527100,7, 0x2527120,7, 0x2527140,8, 0x2527164,6, 0x2527180,12, 0x2528004,5, 0x2528200,27, 0x2528280,4, 0x25282c0,25, 0x2528340,6, 0x2528360,4, 0x2528374,11, 0x25283a4,5, 0x2528400,1, 0x2530000,397, 0x2530800,93, 0x2530980,6, 0x2530a00,41, 0x2530b00,2, 0x2530b20,19, 0x2530c00,25, 0x2530c80,1, 0x2530d00,28, 0x2530d80,1, 0x2531000,397, 0x2531800,93, 0x2531980,6, 0x2531a00,41, 0x2531b00,2, 0x2531b20,19, 0x2531c00,25, 0x2531c80,1, 0x2531d00,28, 0x2531d80,1, 0x2532000,7, 0x2532040,9, 0x2532080,4, 0x25320a0,5, 0x25320c0,2, 0x2534000,3, 0x2534010,6, 0x2534200,7, 0x2534220,6, 0x2534240,7, 0x2534260,6, 0x2534280,2, 0x253428c,2, 0x25342a0,2, 0x25342ac,2, 0x25342c0,7, 0x25342e0,7, 0x2534300,2, 0x253430c,2, 0x2534320,6, 0x2534340,7, 0x2534360,6, 0x2534380,6, 0x25343a0,7, 0x25343c0,6, 0x25343e0,6, 0x2534400,3, 0x2534440,12, 0x2534484,1, 0x25344c0,16, 0x2534800,7, 0x2534820,14, 0x2534880,9, 0x25348a8,12, 0x2534900,7, 0x2534920,14, 0x2534980,9, 0x25349a8,12, 0x2534a00,10, 0x2534a40,2, 0x2534a4c,3, 0x2534c00,5, 0x2534c20,1, 0x2534c28,3, 0x2540000,37, 0x2540100,3, 0x2540110,15, 0x2540200,37, 0x2540300,3, 0x2540310,15, 0x2540400,5, 0x2540420,5, 0x2540440,18, 0x2540800,3, 0x2540810,2, 0x2540820,3, 0x2540830,2, 0x2540840,1, 0x2541000,12, 0x2541040,12, 0x2541080,2, 0x2541100,19, 0x2541180,19, 0x2541200,26, 0x2541400,20, 0x2541480,20, 0x2541500,8, 0x2541540,4, 0x2541580,15, 0x25415c0,15, 0x2541600,9, 0x2541630,5, 0x2542000,37, 0x2542100,3, 0x2542110,15, 0x2542200,37, 0x2542300,3, 0x2542310,15, 0x2542400,5, 0x2542420,5, 0x2542440,18, 0x2542800,3, 0x2542810,2, 0x2542820,3, 0x2542830,2, 0x2542840,1, 0x2543000,12, 0x2543040,12, 0x2543080,2, 0x2543100,19, 0x2543180,19, 0x2543200,26, 0x2543400,20, 0x2543480,20, 0x2543500,8, 0x2543540,4, 0x2543580,15, 0x25435c0,15, 0x2543600,9, 0x2543630,5, 0x2544000,6, 0x2544020,1, 0x254402c,3, 0x2544040,11, 0x2544070,3, 0x2544080,2, 0x2548000,49, 0x2548100,12, 0x2548140,4, 0x2548184,1, 0x2548198,2, 0x25481a4,1, 0x25481b8,7, 0x25481e0,4, 0x2548200,20, 0x2548280,3, 0x2548290,9, 0x25482c0,6, 0x25482e0,1, 0x25482e8,7, 0x2548400,49, 0x2548500,12, 0x2548540,4, 0x2548584,1, 0x2548598,2, 0x25485a4,1, 0x25485b8,7, 0x25485e0,4, 0x2548600,20, 0x2548680,3, 0x2548690,9, 0x25486c0,6, 0x25486e0,1, 0x25486e8,7, 0x2548800,49, 0x2548900,12, 0x2548940,4, 0x2548984,1, 0x2548998,2, 0x25489a4,1, 0x25489b8,7, 0x25489e0,4, 0x2548a00,20, 0x2548a80,3, 0x2548a90,9, 0x2548ac0,6, 0x2548ae0,1, 0x2548ae8,7, 0x2548c00,49, 0x2548d00,12, 0x2548d40,4, 0x2548d84,1, 0x2548d98,2, 0x2548da4,1, 0x2548db8,7, 0x2548de0,4, 0x2548e00,20, 0x2548e80,3, 0x2548e90,9, 0x2548ec0,6, 0x2548ee0,1, 0x2548ee8,7, 0x2549000,49, 0x2549100,12, 0x2549140,4, 0x2549184,1, 0x2549198,2, 0x25491a4,1, 0x25491b8,7, 0x25491e0,4, 0x2549200,20, 0x2549280,3, 0x2549290,9, 0x25492c0,6, 0x25492e0,1, 0x25492e8,7, 0x2549400,49, 0x2549500,12, 0x2549540,4, 0x2549584,1, 0x2549598,2, 0x25495a4,1, 0x25495b8,7, 0x25495e0,4, 0x2549600,20, 0x2549680,3, 0x2549690,9, 0x25496c0,6, 0x25496e0,1, 0x25496e8,7, 0x2549800,49, 0x2549900,12, 0x2549940,4, 0x2549984,1, 0x2549998,2, 0x25499a4,1, 0x25499b8,7, 0x25499e0,4, 0x2549a00,20, 0x2549a80,3, 0x2549a90,9, 0x2549ac0,6, 0x2549ae0,1, 0x2549ae8,7, 0x254a000,20, 0x254a080,2, 0x254a100,20, 0x254a180,2, 0x254a200,4, 0x254a400,20, 0x254a480,2, 0x254a500,20, 0x254a580,2, 0x254a600,4, 0x254a800,3, 0x254a840,12, 0x254a880,12, 0x254a8c0,12, 0x254a900,12, 0x254a940,12, 0x254a980,12, 0x254a9c0,12, 0x254aa00,12, 0x254ac00,12, 0x254ac40,7, 0x254ac60,10, 0x254b004,1, 0x254b018,40, 0x254b100,7, 0x254b120,7, 0x254b140,2, 0x254b14c,2, 0x254b160,2, 0x254b16c,2, 0x254b180,18, 0x254b200,2, 0x254b220,10, 0x254b260,20, 0x254b2c0,7, 0x254b300,15, 0x254b340,9, 0x254b380,6, 0x254b3a0,4, 0x254b400,4, 0x254c000,106, 0x254c200,2, 0x254c240,9, 0x254c280,7, 0x254c400,106, 0x254c604,6, 0x254c700,15, 0x254c740,9, 0x254c780,6, 0x254c7a0,6, 0x254c800,8, 0x254c824,1, 0x254c830,15, 0x254c870,3, 0x2560000,518, 0x2560900,45, 0x2560a00,45, 0x2560b00,45, 0x2560c00,45, 0x2560d00,45, 0x2560e00,45, 0x2560f00,45, 0x2561000,45, 0x2561800,9, 0x2561840,364, 0x2561e00,19, 0x2562000,9, 0x2562040,364, 0x2562600,19, 0x2562800,6, 0x2562820,3, 0x2562840,7, 0x2562880,6, 0x25628a0,3, 0x25628c0,7, 0x2562900,1, 0x2562908,3, 0x2562918,8, 0x2562940,7, 0x2563000,2, 0x2563800,18, 0x2563880,18, 0x2563c00,4, 0x2563c20,7, 0x2563d00,4, 0x2563d80,20, 0x2563e00,1, 0x2564000,21, 0x2564058,3, 0x2564100,1, 0x2564124,1, 0x256412c,5, 0x2564144,1, 0x256414c,6, 0x2564184,6, 0x25641a4,6, 0x25641c4,1, 0x25641cc,1, 0x2564400,9, 0x2564440,9, 0x2564480,15, 0x25644c0,15, 0x2564500,15, 0x2564540,15, 0x2564580,15, 0x25645c0,15, 0x2564600,15, 0x2564640,15, 0x2564680,59, 0x2564800,1, 0x2564808,16, 0x2564850,1, 0x2564858,7, 0x2568000,3, 0x2568010,1, 0x2568018,3, 0x256a000,4, 0x256a080,19, 0x256a100,12, 0x256a200,4, 0x256a280,19, 0x256a300,12, 0x256a400,2, 0x256a600,124, 0x256a800,4, 0x256a880,18, 0x256a900,4, 0x256a980,23, 0x256aa00,10, 0x256aa2c,2, 0x256aa40,2, 0x256aa4c,3, 0x256aa60,2, 0x256aa6c,3, 0x256aa80,2, 0x256aa8c,2, 0x256aaa0,2, 0x256aaac,2, 0x256aac0,2, 0x256aacc,2, 0x256ab00,4, 0x256ab40,15, 0x256ab80,3, 0x256ab90,7, 0x256abb0,3, 0x256abc0,3, 0x256abd0,3, 0x256abe0,1, 0x256ac00,17, 0x256ae00,15, 0x256ae40,4, 0x256ae60,17, 0x256aec0,6, 0x256aee0,4, 0x256aef4,11, 0x256af24,28, 0x256b000,1, 0x256b080,1, 0x256b0a0,5, 0x256b0c0,5, 0x256b0e0,5, 0x256b100,1, 0x256b120,5, 0x256b140,5, 0x256b160,5, 0x256b180,24, 0x256b200,5, 0x256c000,20, 0x2570000,518, 0x2570900,45, 0x2570a00,45, 0x2570b00,45, 0x2570c00,45, 0x2570d00,45, 0x2570e00,45, 0x2570f00,45, 0x2571000,45, 0x2571800,9, 0x2571840,364, 0x2571e00,19, 0x2572000,9, 0x2572040,364, 0x2572600,19, 0x2572800,6, 0x2572820,3, 0x2572840,7, 0x2572880,6, 0x25728a0,3, 0x25728c0,7, 0x2572900,1, 0x2572908,3, 0x2572918,8, 0x2572940,7, 0x2573000,2, 0x2573800,18, 0x2573880,18, 0x2573c00,4, 0x2573c20,7, 0x2573d00,4, 0x2573d80,20, 0x2573e00,1, 0x2574000,21, 0x2574058,3, 0x2574100,1, 0x2574124,1, 0x257412c,5, 0x2574144,1, 0x257414c,6, 0x2574184,6, 0x25741a4,6, 0x25741c4,1, 0x25741cc,1, 0x2574400,9, 0x2574440,9, 0x2574480,15, 0x25744c0,15, 0x2574500,15, 0x2574540,15, 0x2574580,15, 0x25745c0,15, 0x2574600,15, 0x2574640,15, 0x2574680,59, 0x2574800,1, 0x2574808,16, 0x2574850,1, 0x2574858,7, 0x2578000,3, 0x2578010,1, 0x2578018,3, 0x257a000,4, 0x257a080,19, 0x257a100,12, 0x257a200,4, 0x257a280,19, 0x257a300,12, 0x257a400,2, 0x257a600,124, 0x257a800,4, 0x257a880,18, 0x257a900,4, 0x257a980,23, 0x257aa00,10, 0x257aa2c,2, 0x257aa40,2, 0x257aa4c,3, 0x257aa60,2, 0x257aa6c,3, 0x257aa80,2, 0x257aa8c,2, 0x257aaa0,2, 0x257aaac,2, 0x257aac0,2, 0x257aacc,2, 0x257ab00,4, 0x257ab40,15, 0x257ab80,3, 0x257ab90,7, 0x257abb0,3, 0x257abc0,3, 0x257abd0,3, 0x257abe0,1, 0x257ac00,17, 0x257ae00,15, 0x257ae40,4, 0x257ae60,17, 0x257aec0,6, 0x257aee0,4, 0x257aef4,11, 0x257af24,28, 0x257b000,1, 0x257b080,1, 0x257b0a0,5, 0x257b0c0,5, 0x257b0e0,5, 0x257b100,1, 0x257b120,5, 0x257b140,5, 0x257b160,5, 0x257b180,24, 0x257b200,5, 0x257c000,20, 0x2580000,18, 0x2580050,3, 0x2580060,3, 0x2580070,14, 0x25800c0,5, 0x2580400,13, 0x2580440,2, 0x258044c,3, 0x2580460,2, 0x2580480,13, 0x25804c0,2, 0x25804cc,3, 0x25804e0,2, 0x2580500,1, 0x2580508,16, 0x2580560,2, 0x258056c,3, 0x2580600,4, 0x2580680,19, 0x2580800,24, 0x2580864,2, 0x2580870,4, 0x2580a00,27, 0x2580a80,4, 0x2580ac0,25, 0x2580b40,6, 0x2580b60,4, 0x2580b74,11, 0x2580ba4,8, 0x2580c00,3, 0x2580c10,3, 0x2580c20,1, 0x2580c40,11, 0x2580c80,23, 0x2580ce0,15, 0x2580d20,15, 0x2580d60,2, 0x2580d6c,2, 0x2580d80,1, 0x2581000,18, 0x2581050,3, 0x2581060,3, 0x2581070,14, 0x25810c0,5, 0x2581400,13, 0x2581440,2, 0x258144c,3, 0x2581460,2, 0x2581480,13, 0x25814c0,2, 0x25814cc,3, 0x25814e0,2, 0x2581500,1, 0x2581508,16, 0x2581560,2, 0x258156c,3, 0x2581600,4, 0x2581680,19, 0x2581800,24, 0x2581864,2, 0x2581870,4, 0x2581a00,27, 0x2581a80,4, 0x2581ac0,25, 0x2581b40,6, 0x2581b60,4, 0x2581b74,11, 0x2581ba4,8, 0x2581c00,3, 0x2581c10,3, 0x2581c20,1, 0x2581c40,11, 0x2581c80,23, 0x2581ce0,15, 0x2581d20,15, 0x2581d60,2, 0x2581d6c,2, 0x2581d80,1, 0x2582000,20, 0x2582080,7, 0x25820a0,1, 0x25820b0,1, 0x25820b8,2, 0x2584000,14, 0x2600000,534, 0x2601000,2, 0x2601040,9, 0x2601080,7, 0x2602000,534, 0x2603000,12, 0x2603044,6, 0x2603080,8, 0x26030a4,1, 0x26030c0,7, 0x26030e0,7, 0x2603100,7, 0x2603120,7, 0x2603140,8, 0x2603164,6, 0x2603180,12, 0x2604000,534, 0x2605000,2, 0x2605040,9, 0x2605080,7, 0x2606000,534, 0x2607000,12, 0x2607044,6, 0x2607080,8, 0x26070a4,1, 0x26070c0,7, 0x26070e0,7, 0x2607100,7, 0x2607120,7, 0x2607140,8, 0x2607164,6, 0x2607180,12, 0x2608004,5, 0x2608200,27, 0x2608280,4, 0x26082c0,25, 0x2608340,6, 0x2608360,4, 0x2608374,11, 0x26083a4,5, 0x2608400,1, 0x2610000,397, 0x2610800,93, 0x2610980,6, 0x2610a00,41, 0x2610b00,2, 0x2610b20,19, 0x2610c00,25, 0x2610c80,1, 0x2610d00,28, 0x2610d80,1, 0x2611000,397, 0x2611800,93, 0x2611980,6, 0x2611a00,41, 0x2611b00,2, 0x2611b20,19, 0x2611c00,25, 0x2611c80,1, 0x2611d00,28, 0x2611d80,1, 0x2612000,7, 0x2612040,9, 0x2612080,4, 0x26120a0,5, 0x26120c0,2, 0x2614000,3, 0x2614010,6, 0x2614200,7, 0x2614220,6, 0x2614240,7, 0x2614260,6, 0x2614280,2, 0x261428c,2, 0x26142a0,2, 0x26142ac,2, 0x26142c0,7, 0x26142e0,7, 0x2614300,2, 0x261430c,2, 0x2614320,6, 0x2614340,7, 0x2614360,6, 0x2614380,6, 0x26143a0,7, 0x26143c0,6, 0x26143e0,6, 0x2614400,3, 0x2614440,12, 0x2614484,1, 0x26144c0,16, 0x2614800,7, 0x2614820,14, 0x2614880,9, 0x26148a8,12, 0x2614900,7, 0x2614920,14, 0x2614980,9, 0x26149a8,12, 0x2614a00,10, 0x2614a40,2, 0x2614a4c,3, 0x2614c00,5, 0x2614c20,1, 0x2614c28,3, 0x2620000,534, 0x2621000,2, 0x2621040,9, 0x2621080,7, 0x2622000,534, 0x2623000,12, 0x2623044,6, 0x2623080,8, 0x26230a4,1, 0x26230c0,7, 0x26230e0,7, 0x2623100,7, 0x2623120,7, 0x2623140,8, 0x2623164,6, 0x2623180,12, 0x2624000,534, 0x2625000,2, 0x2625040,9, 0x2625080,7, 0x2626000,534, 0x2627000,12, 0x2627044,6, 0x2627080,8, 0x26270a4,1, 0x26270c0,7, 0x26270e0,7, 0x2627100,7, 0x2627120,7, 0x2627140,8, 0x2627164,6, 0x2627180,12, 0x2628004,5, 0x2628200,27, 0x2628280,4, 0x26282c0,25, 0x2628340,6, 0x2628360,4, 0x2628374,11, 0x26283a4,5, 0x2628400,1, 0x2630000,397, 0x2630800,93, 0x2630980,6, 0x2630a00,41, 0x2630b00,2, 0x2630b20,19, 0x2630c00,25, 0x2630c80,1, 0x2630d00,28, 0x2630d80,1, 0x2631000,397, 0x2631800,93, 0x2631980,6, 0x2631a00,41, 0x2631b00,2, 0x2631b20,19, 0x2631c00,25, 0x2631c80,1, 0x2631d00,28, 0x2631d80,1, 0x2632000,7, 0x2632040,9, 0x2632080,4, 0x26320a0,5, 0x26320c0,2, 0x2634000,3, 0x2634010,6, 0x2634200,7, 0x2634220,6, 0x2634240,7, 0x2634260,6, 0x2634280,2, 0x263428c,2, 0x26342a0,2, 0x26342ac,2, 0x26342c0,7, 0x26342e0,7, 0x2634300,2, 0x263430c,2, 0x2634320,6, 0x2634340,7, 0x2634360,6, 0x2634380,6, 0x26343a0,7, 0x26343c0,6, 0x26343e0,6, 0x2634400,3, 0x2634440,12, 0x2634484,1, 0x26344c0,16, 0x2634800,7, 0x2634820,14, 0x2634880,9, 0x26348a8,12, 0x2634900,7, 0x2634920,14, 0x2634980,9, 0x26349a8,12, 0x2634a00,10, 0x2634a40,2, 0x2634a4c,3, 0x2634c00,5, 0x2634c20,1, 0x2634c28,3, 0x2640000,37, 0x2640100,3, 0x2640110,15, 0x2640200,37, 0x2640300,3, 0x2640310,15, 0x2640400,5, 0x2640420,5, 0x2640440,18, 0x2640800,3, 0x2640810,2, 0x2640820,3, 0x2640830,2, 0x2640840,1, 0x2641000,12, 0x2641040,12, 0x2641080,2, 0x2641100,19, 0x2641180,19, 0x2641200,26, 0x2641400,20, 0x2641480,20, 0x2641500,8, 0x2641540,4, 0x2641580,15, 0x26415c0,15, 0x2641600,9, 0x2641630,5, 0x2642000,37, 0x2642100,3, 0x2642110,15, 0x2642200,37, 0x2642300,3, 0x2642310,15, 0x2642400,5, 0x2642420,5, 0x2642440,18, 0x2642800,3, 0x2642810,2, 0x2642820,3, 0x2642830,2, 0x2642840,1, 0x2643000,12, 0x2643040,12, 0x2643080,2, 0x2643100,19, 0x2643180,19, 0x2643200,26, 0x2643400,20, 0x2643480,20, 0x2643500,8, 0x2643540,4, 0x2643580,15, 0x26435c0,15, 0x2643600,9, 0x2643630,5, 0x2644000,6, 0x2644020,1, 0x264402c,3, 0x2644040,11, 0x2644070,3, 0x2644080,2, 0x2648000,49, 0x2648100,12, 0x2648140,4, 0x2648184,1, 0x2648198,2, 0x26481a4,1, 0x26481b8,7, 0x26481e0,4, 0x2648200,20, 0x2648280,3, 0x2648290,9, 0x26482c0,6, 0x26482e0,1, 0x26482e8,7, 0x2648400,49, 0x2648500,12, 0x2648540,4, 0x2648584,1, 0x2648598,2, 0x26485a4,1, 0x26485b8,7, 0x26485e0,4, 0x2648600,20, 0x2648680,3, 0x2648690,9, 0x26486c0,6, 0x26486e0,1, 0x26486e8,7, 0x2648800,49, 0x2648900,12, 0x2648940,4, 0x2648984,1, 0x2648998,2, 0x26489a4,1, 0x26489b8,7, 0x26489e0,4, 0x2648a00,20, 0x2648a80,3, 0x2648a90,9, 0x2648ac0,6, 0x2648ae0,1, 0x2648ae8,7, 0x2648c00,49, 0x2648d00,12, 0x2648d40,4, 0x2648d84,1, 0x2648d98,2, 0x2648da4,1, 0x2648db8,7, 0x2648de0,4, 0x2648e00,20, 0x2648e80,3, 0x2648e90,9, 0x2648ec0,6, 0x2648ee0,1, 0x2648ee8,7, 0x2649000,49, 0x2649100,12, 0x2649140,4, 0x2649184,1, 0x2649198,2, 0x26491a4,1, 0x26491b8,7, 0x26491e0,4, 0x2649200,20, 0x2649280,3, 0x2649290,9, 0x26492c0,6, 0x26492e0,1, 0x26492e8,7, 0x2649400,49, 0x2649500,12, 0x2649540,4, 0x2649584,1, 0x2649598,2, 0x26495a4,1, 0x26495b8,7, 0x26495e0,4, 0x2649600,20, 0x2649680,3, 0x2649690,9, 0x26496c0,6, 0x26496e0,1, 0x26496e8,7, 0x2649800,49, 0x2649900,12, 0x2649940,4, 0x2649984,1, 0x2649998,2, 0x26499a4,1, 0x26499b8,7, 0x26499e0,4, 0x2649a00,20, 0x2649a80,3, 0x2649a90,9, 0x2649ac0,6, 0x2649ae0,1, 0x2649ae8,7, 0x264a000,20, 0x264a080,2, 0x264a100,20, 0x264a180,2, 0x264a200,4, 0x264a400,20, 0x264a480,2, 0x264a500,20, 0x264a580,2, 0x264a600,4, 0x264a800,3, 0x264a840,12, 0x264a880,12, 0x264a8c0,12, 0x264a900,12, 0x264a940,12, 0x264a980,12, 0x264a9c0,12, 0x264aa00,12, 0x264ac00,12, 0x264ac40,7, 0x264ac60,10, 0x264b004,1, 0x264b018,40, 0x264b100,7, 0x264b120,7, 0x264b140,2, 0x264b14c,2, 0x264b160,2, 0x264b16c,2, 0x264b180,18, 0x264b200,2, 0x264b220,10, 0x264b260,20, 0x264b2c0,7, 0x264b300,15, 0x264b340,9, 0x264b380,6, 0x264b3a0,4, 0x264b400,4, 0x264c000,106, 0x264c200,2, 0x264c240,9, 0x264c280,7, 0x264c400,106, 0x264c604,6, 0x264c700,15, 0x264c740,9, 0x264c780,6, 0x264c7a0,6, 0x264c800,8, 0x264c824,1, 0x264c830,15, 0x264c870,3, 0x2660000,518, 0x2660900,45, 0x2660a00,45, 0x2660b00,45, 0x2660c00,45, 0x2660d00,45, 0x2660e00,45, 0x2660f00,45, 0x2661000,45, 0x2661800,9, 0x2661840,364, 0x2661e00,19, 0x2662000,9, 0x2662040,364, 0x2662600,19, 0x2662800,6, 0x2662820,3, 0x2662840,7, 0x2662880,6, 0x26628a0,3, 0x26628c0,7, 0x2662900,1, 0x2662908,3, 0x2662918,8, 0x2662940,7, 0x2663000,2, 0x2663800,18, 0x2663880,18, 0x2663c00,4, 0x2663c20,7, 0x2663d00,4, 0x2663d80,20, 0x2663e00,1, 0x2664000,21, 0x2664058,3, 0x2664100,1, 0x2664124,1, 0x266412c,5, 0x2664144,1, 0x266414c,6, 0x2664184,6, 0x26641a4,6, 0x26641c4,1, 0x26641cc,1, 0x2664400,9, 0x2664440,9, 0x2664480,15, 0x26644c0,15, 0x2664500,15, 0x2664540,15, 0x2664580,15, 0x26645c0,15, 0x2664600,15, 0x2664640,15, 0x2664680,59, 0x2664800,1, 0x2664808,16, 0x2664850,1, 0x2664858,7, 0x2668000,3, 0x2668010,1, 0x2668018,3, 0x266a000,4, 0x266a080,19, 0x266a100,12, 0x266a200,4, 0x266a280,19, 0x266a300,12, 0x266a400,2, 0x266a600,124, 0x266a800,4, 0x266a880,18, 0x266a900,4, 0x266a980,23, 0x266aa00,10, 0x266aa2c,2, 0x266aa40,2, 0x266aa4c,3, 0x266aa60,2, 0x266aa6c,3, 0x266aa80,2, 0x266aa8c,2, 0x266aaa0,2, 0x266aaac,2, 0x266aac0,2, 0x266aacc,2, 0x266ab00,4, 0x266ab40,15, 0x266ab80,3, 0x266ab90,7, 0x266abb0,3, 0x266abc0,3, 0x266abd0,3, 0x266abe0,1, 0x266ac00,17, 0x266ae00,15, 0x266ae40,4, 0x266ae60,17, 0x266aec0,6, 0x266aee0,4, 0x266aef4,11, 0x266af24,28, 0x266b000,1, 0x266b080,1, 0x266b0a0,5, 0x266b0c0,5, 0x266b0e0,5, 0x266b100,1, 0x266b120,5, 0x266b140,5, 0x266b160,5, 0x266b180,24, 0x266b200,5, 0x266c000,20, 0x2670000,518, 0x2670900,45, 0x2670a00,45, 0x2670b00,45, 0x2670c00,45, 0x2670d00,45, 0x2670e00,45, 0x2670f00,45, 0x2671000,45, 0x2671800,9, 0x2671840,364, 0x2671e00,19, 0x2672000,9, 0x2672040,364, 0x2672600,19, 0x2672800,6, 0x2672820,3, 0x2672840,7, 0x2672880,6, 0x26728a0,3, 0x26728c0,7, 0x2672900,1, 0x2672908,3, 0x2672918,8, 0x2672940,7, 0x2673000,2, 0x2673800,18, 0x2673880,18, 0x2673c00,4, 0x2673c20,7, 0x2673d00,4, 0x2673d80,20, 0x2673e00,1, 0x2674000,21, 0x2674058,3, 0x2674100,1, 0x2674124,1, 0x267412c,5, 0x2674144,1, 0x267414c,6, 0x2674184,6, 0x26741a4,6, 0x26741c4,1, 0x26741cc,1, 0x2674400,9, 0x2674440,9, 0x2674480,15, 0x26744c0,15, 0x2674500,15, 0x2674540,15, 0x2674580,15, 0x26745c0,15, 0x2674600,15, 0x2674640,15, 0x2674680,59, 0x2674800,1, 0x2674808,16, 0x2674850,1, 0x2674858,7, 0x2678000,3, 0x2678010,1, 0x2678018,3, 0x267a000,4, 0x267a080,19, 0x267a100,12, 0x267a200,4, 0x267a280,19, 0x267a300,12, 0x267a400,2, 0x267a600,124, 0x267a800,4, 0x267a880,18, 0x267a900,4, 0x267a980,23, 0x267aa00,10, 0x267aa2c,2, 0x267aa40,2, 0x267aa4c,3, 0x267aa60,2, 0x267aa6c,3, 0x267aa80,2, 0x267aa8c,2, 0x267aaa0,2, 0x267aaac,2, 0x267aac0,2, 0x267aacc,2, 0x267ab00,4, 0x267ab40,15, 0x267ab80,3, 0x267ab90,7, 0x267abb0,3, 0x267abc0,3, 0x267abd0,3, 0x267abe0,1, 0x267ac00,17, 0x267ae00,15, 0x267ae40,4, 0x267ae60,17, 0x267aec0,6, 0x267aee0,4, 0x267aef4,11, 0x267af24,28, 0x267b000,1, 0x267b080,1, 0x267b0a0,5, 0x267b0c0,5, 0x267b0e0,5, 0x267b100,1, 0x267b120,5, 0x267b140,5, 0x267b160,5, 0x267b180,24, 0x267b200,5, 0x267c000,20, 0x2680000,18, 0x2680050,3, 0x2680060,3, 0x2680070,14, 0x26800c0,5, 0x2680400,13, 0x2680440,2, 0x268044c,3, 0x2680460,2, 0x2680480,13, 0x26804c0,2, 0x26804cc,3, 0x26804e0,2, 0x2680500,1, 0x2680508,16, 0x2680560,2, 0x268056c,3, 0x2680600,4, 0x2680680,19, 0x2680800,24, 0x2680864,2, 0x2680870,4, 0x2680a00,27, 0x2680a80,4, 0x2680ac0,25, 0x2680b40,6, 0x2680b60,4, 0x2680b74,11, 0x2680ba4,8, 0x2680c00,3, 0x2680c10,3, 0x2680c20,1, 0x2680c40,11, 0x2680c80,23, 0x2680ce0,15, 0x2680d20,15, 0x2680d60,2, 0x2680d6c,2, 0x2680d80,1, 0x2681000,18, 0x2681050,3, 0x2681060,3, 0x2681070,14, 0x26810c0,5, 0x2681400,13, 0x2681440,2, 0x268144c,3, 0x2681460,2, 0x2681480,13, 0x26814c0,2, 0x26814cc,3, 0x26814e0,2, 0x2681500,1, 0x2681508,16, 0x2681560,2, 0x268156c,3, 0x2681600,4, 0x2681680,19, 0x2681800,24, 0x2681864,2, 0x2681870,4, 0x2681a00,27, 0x2681a80,4, 0x2681ac0,25, 0x2681b40,6, 0x2681b60,4, 0x2681b74,11, 0x2681ba4,8, 0x2681c00,3, 0x2681c10,3, 0x2681c20,1, 0x2681c40,11, 0x2681c80,23, 0x2681ce0,15, 0x2681d20,15, 0x2681d60,2, 0x2681d6c,2, 0x2681d80,1, 0x2682000,20, 0x2682080,7, 0x26820a0,1, 0x26820b0,1, 0x26820b8,2, 0x2684000,14, 0x2700000,534, 0x2701000,2, 0x2701040,9, 0x2701080,7, 0x2702000,534, 0x2703000,12, 0x2703044,6, 0x2703080,8, 0x27030a4,1, 0x27030c0,7, 0x27030e0,7, 0x2703100,7, 0x2703120,7, 0x2703140,8, 0x2703164,6, 0x2703180,12, 0x2704000,534, 0x2705000,2, 0x2705040,9, 0x2705080,7, 0x2706000,534, 0x2707000,12, 0x2707044,6, 0x2707080,8, 0x27070a4,1, 0x27070c0,7, 0x27070e0,7, 0x2707100,7, 0x2707120,7, 0x2707140,8, 0x2707164,6, 0x2707180,12, 0x2708004,5, 0x2708200,27, 0x2708280,4, 0x27082c0,25, 0x2708340,6, 0x2708360,4, 0x2708374,11, 0x27083a4,5, 0x2708400,1, 0x2710000,397, 0x2710800,93, 0x2710980,6, 0x2710a00,41, 0x2710b00,2, 0x2710b20,19, 0x2710c00,25, 0x2710c80,1, 0x2710d00,28, 0x2710d80,1, 0x2711000,397, 0x2711800,93, 0x2711980,6, 0x2711a00,41, 0x2711b00,2, 0x2711b20,19, 0x2711c00,25, 0x2711c80,1, 0x2711d00,28, 0x2711d80,1, 0x2712000,7, 0x2712040,9, 0x2712080,4, 0x27120a0,5, 0x27120c0,2, 0x2714000,3, 0x2714010,6, 0x2714200,7, 0x2714220,6, 0x2714240,7, 0x2714260,6, 0x2714280,2, 0x271428c,2, 0x27142a0,2, 0x27142ac,2, 0x27142c0,7, 0x27142e0,7, 0x2714300,2, 0x271430c,2, 0x2714320,6, 0x2714340,7, 0x2714360,6, 0x2714380,6, 0x27143a0,7, 0x27143c0,6, 0x27143e0,6, 0x2714400,3, 0x2714440,12, 0x2714484,1, 0x27144c0,16, 0x2714800,7, 0x2714820,14, 0x2714880,9, 0x27148a8,12, 0x2714900,7, 0x2714920,14, 0x2714980,9, 0x27149a8,12, 0x2714a00,10, 0x2714a40,2, 0x2714a4c,3, 0x2714c00,5, 0x2714c20,1, 0x2714c28,3, 0x2720000,534, 0x2721000,2, 0x2721040,9, 0x2721080,7, 0x2722000,534, 0x2723000,12, 0x2723044,6, 0x2723080,8, 0x27230a4,1, 0x27230c0,7, 0x27230e0,7, 0x2723100,7, 0x2723120,7, 0x2723140,8, 0x2723164,6, 0x2723180,12, 0x2724000,534, 0x2725000,2, 0x2725040,9, 0x2725080,7, 0x2726000,534, 0x2727000,12, 0x2727044,6, 0x2727080,8, 0x27270a4,1, 0x27270c0,7, 0x27270e0,7, 0x2727100,7, 0x2727120,7, 0x2727140,8, 0x2727164,6, 0x2727180,12, 0x2728004,5, 0x2728200,27, 0x2728280,4, 0x27282c0,25, 0x2728340,6, 0x2728360,4, 0x2728374,11, 0x27283a4,5, 0x2728400,1, 0x2730000,397, 0x2730800,93, 0x2730980,6, 0x2730a00,41, 0x2730b00,2, 0x2730b20,19, 0x2730c00,25, 0x2730c80,1, 0x2730d00,28, 0x2730d80,1, 0x2731000,397, 0x2731800,93, 0x2731980,6, 0x2731a00,41, 0x2731b00,2, 0x2731b20,19, 0x2731c00,25, 0x2731c80,1, 0x2731d00,28, 0x2731d80,1, 0x2732000,7, 0x2732040,9, 0x2732080,4, 0x27320a0,5, 0x27320c0,2, 0x2734000,3, 0x2734010,6, 0x2734200,7, 0x2734220,6, 0x2734240,7, 0x2734260,6, 0x2734280,2, 0x273428c,2, 0x27342a0,2, 0x27342ac,2, 0x27342c0,7, 0x27342e0,7, 0x2734300,2, 0x273430c,2, 0x2734320,6, 0x2734340,7, 0x2734360,6, 0x2734380,6, 0x27343a0,7, 0x27343c0,6, 0x27343e0,6, 0x2734400,3, 0x2734440,12, 0x2734484,1, 0x27344c0,16, 0x2734800,7, 0x2734820,14, 0x2734880,9, 0x27348a8,12, 0x2734900,7, 0x2734920,14, 0x2734980,9, 0x27349a8,12, 0x2734a00,10, 0x2734a40,2, 0x2734a4c,3, 0x2734c00,5, 0x2734c20,1, 0x2734c28,3, 0x2740000,37, 0x2740100,3, 0x2740110,15, 0x2740200,37, 0x2740300,3, 0x2740310,15, 0x2740400,5, 0x2740420,5, 0x2740440,18, 0x2740800,3, 0x2740810,2, 0x2740820,3, 0x2740830,2, 0x2740840,1, 0x2741000,12, 0x2741040,12, 0x2741080,2, 0x2741100,19, 0x2741180,19, 0x2741200,26, 0x2741400,20, 0x2741480,20, 0x2741500,8, 0x2741540,4, 0x2741580,15, 0x27415c0,15, 0x2741600,9, 0x2741630,5, 0x2742000,37, 0x2742100,3, 0x2742110,15, 0x2742200,37, 0x2742300,3, 0x2742310,15, 0x2742400,5, 0x2742420,5, 0x2742440,18, 0x2742800,3, 0x2742810,2, 0x2742820,3, 0x2742830,2, 0x2742840,1, 0x2743000,12, 0x2743040,12, 0x2743080,2, 0x2743100,19, 0x2743180,19, 0x2743200,26, 0x2743400,20, 0x2743480,20, 0x2743500,8, 0x2743540,4, 0x2743580,15, 0x27435c0,15, 0x2743600,9, 0x2743630,5, 0x2744000,6, 0x2744020,1, 0x274402c,3, 0x2744040,11, 0x2744070,3, 0x2744080,2, 0x2748000,49, 0x2748100,12, 0x2748140,4, 0x2748184,1, 0x2748198,2, 0x27481a4,1, 0x27481b8,7, 0x27481e0,4, 0x2748200,20, 0x2748280,3, 0x2748290,9, 0x27482c0,6, 0x27482e0,1, 0x27482e8,7, 0x2748400,49, 0x2748500,12, 0x2748540,4, 0x2748584,1, 0x2748598,2, 0x27485a4,1, 0x27485b8,7, 0x27485e0,4, 0x2748600,20, 0x2748680,3, 0x2748690,9, 0x27486c0,6, 0x27486e0,1, 0x27486e8,7, 0x2748800,49, 0x2748900,12, 0x2748940,4, 0x2748984,1, 0x2748998,2, 0x27489a4,1, 0x27489b8,7, 0x27489e0,4, 0x2748a00,20, 0x2748a80,3, 0x2748a90,9, 0x2748ac0,6, 0x2748ae0,1, 0x2748ae8,7, 0x2748c00,49, 0x2748d00,12, 0x2748d40,4, 0x2748d84,1, 0x2748d98,2, 0x2748da4,1, 0x2748db8,7, 0x2748de0,4, 0x2748e00,20, 0x2748e80,3, 0x2748e90,9, 0x2748ec0,6, 0x2748ee0,1, 0x2748ee8,7, 0x2749000,49, 0x2749100,12, 0x2749140,4, 0x2749184,1, 0x2749198,2, 0x27491a4,1, 0x27491b8,7, 0x27491e0,4, 0x2749200,20, 0x2749280,3, 0x2749290,9, 0x27492c0,6, 0x27492e0,1, 0x27492e8,7, 0x2749400,49, 0x2749500,12, 0x2749540,4, 0x2749584,1, 0x2749598,2, 0x27495a4,1, 0x27495b8,7, 0x27495e0,4, 0x2749600,20, 0x2749680,3, 0x2749690,9, 0x27496c0,6, 0x27496e0,1, 0x27496e8,7, 0x2749800,49, 0x2749900,12, 0x2749940,4, 0x2749984,1, 0x2749998,2, 0x27499a4,1, 0x27499b8,7, 0x27499e0,4, 0x2749a00,20, 0x2749a80,3, 0x2749a90,9, 0x2749ac0,6, 0x2749ae0,1, 0x2749ae8,7, 0x274a000,20, 0x274a080,2, 0x274a100,20, 0x274a180,2, 0x274a200,4, 0x274a400,20, 0x274a480,2, 0x274a500,20, 0x274a580,2, 0x274a600,4, 0x274a800,3, 0x274a840,12, 0x274a880,12, 0x274a8c0,12, 0x274a900,12, 0x274a940,12, 0x274a980,12, 0x274a9c0,12, 0x274aa00,12, 0x274ac00,12, 0x274ac40,7, 0x274ac60,10, 0x274b004,1, 0x274b018,40, 0x274b100,7, 0x274b120,7, 0x274b140,2, 0x274b14c,2, 0x274b160,2, 0x274b16c,2, 0x274b180,18, 0x274b200,2, 0x274b220,10, 0x274b260,20, 0x274b2c0,7, 0x274b300,15, 0x274b340,9, 0x274b380,6, 0x274b3a0,4, 0x274b400,4, 0x274c000,106, 0x274c200,2, 0x274c240,9, 0x274c280,7, 0x274c400,106, 0x274c604,6, 0x274c700,15, 0x274c740,9, 0x274c780,6, 0x274c7a0,6, 0x274c800,8, 0x274c824,1, 0x274c830,15, 0x274c870,3, 0x2760000,518, 0x2760900,45, 0x2760a00,45, 0x2760b00,45, 0x2760c00,45, 0x2760d00,45, 0x2760e00,45, 0x2760f00,45, 0x2761000,45, 0x2761800,9, 0x2761840,364, 0x2761e00,19, 0x2762000,9, 0x2762040,364, 0x2762600,19, 0x2762800,6, 0x2762820,3, 0x2762840,7, 0x2762880,6, 0x27628a0,3, 0x27628c0,7, 0x2762900,1, 0x2762908,3, 0x2762918,8, 0x2762940,7, 0x2763000,2, 0x2763800,18, 0x2763880,18, 0x2763c00,4, 0x2763c20,7, 0x2763d00,4, 0x2763d80,20, 0x2763e00,1, 0x2764000,21, 0x2764058,3, 0x2764100,1, 0x2764124,1, 0x276412c,5, 0x2764144,1, 0x276414c,6, 0x2764184,6, 0x27641a4,6, 0x27641c4,1, 0x27641cc,1, 0x2764400,9, 0x2764440,9, 0x2764480,15, 0x27644c0,15, 0x2764500,15, 0x2764540,15, 0x2764580,15, 0x27645c0,15, 0x2764600,15, 0x2764640,15, 0x2764680,59, 0x2764800,1, 0x2764808,16, 0x2764850,1, 0x2764858,7, 0x2768000,3, 0x2768010,1, 0x2768018,3, 0x276a000,4, 0x276a080,19, 0x276a100,12, 0x276a200,4, 0x276a280,19, 0x276a300,12, 0x276a400,2, 0x276a600,124, 0x276a800,4, 0x276a880,18, 0x276a900,4, 0x276a980,23, 0x276aa00,10, 0x276aa2c,2, 0x276aa40,2, 0x276aa4c,3, 0x276aa60,2, 0x276aa6c,3, 0x276aa80,2, 0x276aa8c,2, 0x276aaa0,2, 0x276aaac,2, 0x276aac0,2, 0x276aacc,2, 0x276ab00,4, 0x276ab40,15, 0x276ab80,3, 0x276ab90,7, 0x276abb0,3, 0x276abc0,3, 0x276abd0,3, 0x276abe0,1, 0x276ac00,17, 0x276ae00,15, 0x276ae40,4, 0x276ae60,17, 0x276aec0,6, 0x276aee0,4, 0x276aef4,11, 0x276af24,28, 0x276b000,1, 0x276b080,1, 0x276b0a0,5, 0x276b0c0,5, 0x276b0e0,5, 0x276b100,1, 0x276b120,5, 0x276b140,5, 0x276b160,5, 0x276b180,24, 0x276b200,5, 0x276c000,20, 0x2770000,518, 0x2770900,45, 0x2770a00,45, 0x2770b00,45, 0x2770c00,45, 0x2770d00,45, 0x2770e00,45, 0x2770f00,45, 0x2771000,45, 0x2771800,9, 0x2771840,364, 0x2771e00,19, 0x2772000,9, 0x2772040,364, 0x2772600,19, 0x2772800,6, 0x2772820,3, 0x2772840,7, 0x2772880,6, 0x27728a0,3, 0x27728c0,7, 0x2772900,1, 0x2772908,3, 0x2772918,8, 0x2772940,7, 0x2773000,2, 0x2773800,18, 0x2773880,18, 0x2773c00,4, 0x2773c20,7, 0x2773d00,4, 0x2773d80,20, 0x2773e00,1, 0x2774000,21, 0x2774058,3, 0x2774100,1, 0x2774124,1, 0x277412c,5, 0x2774144,1, 0x277414c,6, 0x2774184,6, 0x27741a4,6, 0x27741c4,1, 0x27741cc,1, 0x2774400,9, 0x2774440,9, 0x2774480,15, 0x27744c0,15, 0x2774500,15, 0x2774540,15, 0x2774580,15, 0x27745c0,15, 0x2774600,15, 0x2774640,15, 0x2774680,59, 0x2774800,1, 0x2774808,16, 0x2774850,1, 0x2774858,7, 0x2778000,3, 0x2778010,1, 0x2778018,3, 0x277a000,4, 0x277a080,19, 0x277a100,12, 0x277a200,4, 0x277a280,19, 0x277a300,12, 0x277a400,2, 0x277a600,124, 0x277a800,4, 0x277a880,18, 0x277a900,4, 0x277a980,23, 0x277aa00,10, 0x277aa2c,2, 0x277aa40,2, 0x277aa4c,3, 0x277aa60,2, 0x277aa6c,3, 0x277aa80,2, 0x277aa8c,2, 0x277aaa0,2, 0x277aaac,2, 0x277aac0,2, 0x277aacc,2, 0x277ab00,4, 0x277ab40,15, 0x277ab80,3, 0x277ab90,7, 0x277abb0,3, 0x277abc0,3, 0x277abd0,3, 0x277abe0,1, 0x277ac00,17, 0x277ae00,15, 0x277ae40,4, 0x277ae60,17, 0x277aec0,6, 0x277aee0,4, 0x277aef4,11, 0x277af24,28, 0x277b000,1, 0x277b080,1, 0x277b0a0,5, 0x277b0c0,5, 0x277b0e0,5, 0x277b100,1, 0x277b120,5, 0x277b140,5, 0x277b160,5, 0x277b180,24, 0x277b200,5, 0x277c000,20, 0x2780000,18, 0x2780050,3, 0x2780060,3, 0x2780070,14, 0x27800c0,5, 0x2780400,13, 0x2780440,2, 0x278044c,3, 0x2780460,2, 0x2780480,13, 0x27804c0,2, 0x27804cc,3, 0x27804e0,2, 0x2780500,1, 0x2780508,16, 0x2780560,2, 0x278056c,3, 0x2780600,4, 0x2780680,19, 0x2780800,24, 0x2780864,2, 0x2780870,4, 0x2780a00,27, 0x2780a80,4, 0x2780ac0,25, 0x2780b40,6, 0x2780b60,4, 0x2780b74,11, 0x2780ba4,8, 0x2780c00,3, 0x2780c10,3, 0x2780c20,1, 0x2780c40,11, 0x2780c80,23, 0x2780ce0,15, 0x2780d20,15, 0x2780d60,2, 0x2780d6c,2, 0x2780d80,1, 0x2781000,18, 0x2781050,3, 0x2781060,3, 0x2781070,14, 0x27810c0,5, 0x2781400,13, 0x2781440,2, 0x278144c,3, 0x2781460,2, 0x2781480,13, 0x27814c0,2, 0x27814cc,3, 0x27814e0,2, 0x2781500,1, 0x2781508,16, 0x2781560,2, 0x278156c,3, 0x2781600,4, 0x2781680,19, 0x2781800,24, 0x2781864,2, 0x2781870,4, 0x2781a00,27, 0x2781a80,4, 0x2781ac0,25, 0x2781b40,6, 0x2781b60,4, 0x2781b74,11, 0x2781ba4,8, 0x2781c00,3, 0x2781c10,3, 0x2781c20,1, 0x2781c40,11, 0x2781c80,23, 0x2781ce0,15, 0x2781d20,15, 0x2781d60,2, 0x2781d6c,2, 0x2781d80,1, 0x2782000,20, 0x2782080,7, 0x27820a0,1, 0x27820b0,1, 0x27820b8,2, 0x2784000,14, 0x2800000,534, 0x2801000,2, 0x2801040,9, 0x2801080,7, 0x2802000,534, 0x2803000,12, 0x2803044,6, 0x2803080,8, 0x28030a4,1, 0x28030c0,7, 0x28030e0,7, 0x2803100,7, 0x2803120,7, 0x2803140,8, 0x2803164,6, 0x2803180,12, 0x2804000,534, 0x2805000,2, 0x2805040,9, 0x2805080,7, 0x2806000,534, 0x2807000,12, 0x2807044,6, 0x2807080,8, 0x28070a4,1, 0x28070c0,7, 0x28070e0,7, 0x2807100,7, 0x2807120,7, 0x2807140,8, 0x2807164,6, 0x2807180,12, 0x2808004,5, 0x2808200,27, 0x2808280,4, 0x28082c0,25, 0x2808340,6, 0x2808360,4, 0x2808374,11, 0x28083a4,5, 0x2808400,1, 0x2810000,397, 0x2810800,93, 0x2810980,6, 0x2810a00,41, 0x2810b00,2, 0x2810b20,19, 0x2810c00,25, 0x2810c80,1, 0x2810d00,28, 0x2810d80,1, 0x2811000,397, 0x2811800,93, 0x2811980,6, 0x2811a00,41, 0x2811b00,2, 0x2811b20,19, 0x2811c00,25, 0x2811c80,1, 0x2811d00,28, 0x2811d80,1, 0x2812000,7, 0x2812040,9, 0x2812080,4, 0x28120a0,5, 0x28120c0,2, 0x2814000,3, 0x2814010,6, 0x2814200,7, 0x2814220,6, 0x2814240,7, 0x2814260,6, 0x2814280,2, 0x281428c,2, 0x28142a0,2, 0x28142ac,2, 0x28142c0,7, 0x28142e0,7, 0x2814300,2, 0x281430c,2, 0x2814320,6, 0x2814340,7, 0x2814360,6, 0x2814380,6, 0x28143a0,7, 0x28143c0,6, 0x28143e0,6, 0x2814400,3, 0x2814440,12, 0x2814484,1, 0x28144c0,16, 0x2814800,7, 0x2814820,14, 0x2814880,9, 0x28148a8,12, 0x2814900,7, 0x2814920,14, 0x2814980,9, 0x28149a8,12, 0x2814a00,10, 0x2814a40,2, 0x2814a4c,3, 0x2814c00,5, 0x2814c20,1, 0x2814c28,3, 0x2820000,534, 0x2821000,2, 0x2821040,9, 0x2821080,7, 0x2822000,534, 0x2823000,12, 0x2823044,6, 0x2823080,8, 0x28230a4,1, 0x28230c0,7, 0x28230e0,7, 0x2823100,7, 0x2823120,7, 0x2823140,8, 0x2823164,6, 0x2823180,12, 0x2824000,534, 0x2825000,2, 0x2825040,9, 0x2825080,7, 0x2826000,534, 0x2827000,12, 0x2827044,6, 0x2827080,8, 0x28270a4,1, 0x28270c0,7, 0x28270e0,7, 0x2827100,7, 0x2827120,7, 0x2827140,8, 0x2827164,6, 0x2827180,12, 0x2828004,5, 0x2828200,27, 0x2828280,4, 0x28282c0,25, 0x2828340,6, 0x2828360,4, 0x2828374,11, 0x28283a4,5, 0x2828400,1, 0x2830000,397, 0x2830800,93, 0x2830980,6, 0x2830a00,41, 0x2830b00,2, 0x2830b20,19, 0x2830c00,25, 0x2830c80,1, 0x2830d00,28, 0x2830d80,1, 0x2831000,397, 0x2831800,93, 0x2831980,6, 0x2831a00,41, 0x2831b00,2, 0x2831b20,19, 0x2831c00,25, 0x2831c80,1, 0x2831d00,28, 0x2831d80,1, 0x2832000,7, 0x2832040,9, 0x2832080,4, 0x28320a0,5, 0x28320c0,2, 0x2834000,3, 0x2834010,6, 0x2834200,7, 0x2834220,6, 0x2834240,7, 0x2834260,6, 0x2834280,2, 0x283428c,2, 0x28342a0,2, 0x28342ac,2, 0x28342c0,7, 0x28342e0,7, 0x2834300,2, 0x283430c,2, 0x2834320,6, 0x2834340,7, 0x2834360,6, 0x2834380,6, 0x28343a0,7, 0x28343c0,6, 0x28343e0,6, 0x2834400,3, 0x2834440,12, 0x2834484,1, 0x28344c0,16, 0x2834800,7, 0x2834820,14, 0x2834880,9, 0x28348a8,12, 0x2834900,7, 0x2834920,14, 0x2834980,9, 0x28349a8,12, 0x2834a00,10, 0x2834a40,2, 0x2834a4c,3, 0x2834c00,5, 0x2834c20,1, 0x2834c28,3, 0x2840000,37, 0x2840100,3, 0x2840110,15, 0x2840200,37, 0x2840300,3, 0x2840310,15, 0x2840400,5, 0x2840420,5, 0x2840440,18, 0x2840800,3, 0x2840810,2, 0x2840820,3, 0x2840830,2, 0x2840840,1, 0x2841000,12, 0x2841040,12, 0x2841080,2, 0x2841100,19, 0x2841180,19, 0x2841200,26, 0x2841400,20, 0x2841480,20, 0x2841500,8, 0x2841540,4, 0x2841580,15, 0x28415c0,15, 0x2841600,9, 0x2841630,5, 0x2842000,37, 0x2842100,3, 0x2842110,15, 0x2842200,37, 0x2842300,3, 0x2842310,15, 0x2842400,5, 0x2842420,5, 0x2842440,18, 0x2842800,3, 0x2842810,2, 0x2842820,3, 0x2842830,2, 0x2842840,1, 0x2843000,12, 0x2843040,12, 0x2843080,2, 0x2843100,19, 0x2843180,19, 0x2843200,26, 0x2843400,20, 0x2843480,20, 0x2843500,8, 0x2843540,4, 0x2843580,15, 0x28435c0,15, 0x2843600,9, 0x2843630,5, 0x2844000,6, 0x2844020,1, 0x284402c,3, 0x2844040,11, 0x2844070,3, 0x2844080,2, 0x2848000,49, 0x2848100,12, 0x2848140,4, 0x2848184,1, 0x2848198,2, 0x28481a4,1, 0x28481b8,7, 0x28481e0,4, 0x2848200,20, 0x2848280,3, 0x2848290,9, 0x28482c0,6, 0x28482e0,1, 0x28482e8,7, 0x2848400,49, 0x2848500,12, 0x2848540,4, 0x2848584,1, 0x2848598,2, 0x28485a4,1, 0x28485b8,7, 0x28485e0,4, 0x2848600,20, 0x2848680,3, 0x2848690,9, 0x28486c0,6, 0x28486e0,1, 0x28486e8,7, 0x2848800,49, 0x2848900,12, 0x2848940,4, 0x2848984,1, 0x2848998,2, 0x28489a4,1, 0x28489b8,7, 0x28489e0,4, 0x2848a00,20, 0x2848a80,3, 0x2848a90,9, 0x2848ac0,6, 0x2848ae0,1, 0x2848ae8,7, 0x2848c00,49, 0x2848d00,12, 0x2848d40,4, 0x2848d84,1, 0x2848d98,2, 0x2848da4,1, 0x2848db8,7, 0x2848de0,4, 0x2848e00,20, 0x2848e80,3, 0x2848e90,9, 0x2848ec0,6, 0x2848ee0,1, 0x2848ee8,7, 0x2849000,49, 0x2849100,12, 0x2849140,4, 0x2849184,1, 0x2849198,2, 0x28491a4,1, 0x28491b8,7, 0x28491e0,4, 0x2849200,20, 0x2849280,3, 0x2849290,9, 0x28492c0,6, 0x28492e0,1, 0x28492e8,7, 0x2849400,49, 0x2849500,12, 0x2849540,4, 0x2849584,1, 0x2849598,2, 0x28495a4,1, 0x28495b8,7, 0x28495e0,4, 0x2849600,20, 0x2849680,3, 0x2849690,9, 0x28496c0,6, 0x28496e0,1, 0x28496e8,7, 0x2849800,49, 0x2849900,12, 0x2849940,4, 0x2849984,1, 0x2849998,2, 0x28499a4,1, 0x28499b8,7, 0x28499e0,4, 0x2849a00,20, 0x2849a80,3, 0x2849a90,9, 0x2849ac0,6, 0x2849ae0,1, 0x2849ae8,7, 0x284a000,20, 0x284a080,2, 0x284a100,20, 0x284a180,2, 0x284a200,4, 0x284a400,20, 0x284a480,2, 0x284a500,20, 0x284a580,2, 0x284a600,4, 0x284a800,3, 0x284a840,12, 0x284a880,12, 0x284a8c0,12, 0x284a900,12, 0x284a940,12, 0x284a980,12, 0x284a9c0,12, 0x284aa00,12, 0x284ac00,12, 0x284ac40,7, 0x284ac60,10, 0x284b004,1, 0x284b018,40, 0x284b100,7, 0x284b120,7, 0x284b140,2, 0x284b14c,2, 0x284b160,2, 0x284b16c,2, 0x284b180,18, 0x284b200,2, 0x284b220,10, 0x284b260,20, 0x284b2c0,7, 0x284b300,15, 0x284b340,9, 0x284b380,6, 0x284b3a0,4, 0x284b400,4, 0x284c000,106, 0x284c200,2, 0x284c240,9, 0x284c280,7, 0x284c400,106, 0x284c604,6, 0x284c700,15, 0x284c740,9, 0x284c780,6, 0x284c7a0,6, 0x284c800,8, 0x284c824,1, 0x284c830,15, 0x284c870,3, 0x2860000,518, 0x2860900,45, 0x2860a00,45, 0x2860b00,45, 0x2860c00,45, 0x2860d00,45, 0x2860e00,45, 0x2860f00,45, 0x2861000,45, 0x2861800,9, 0x2861840,364, 0x2861e00,19, 0x2862000,9, 0x2862040,364, 0x2862600,19, 0x2862800,6, 0x2862820,3, 0x2862840,7, 0x2862880,6, 0x28628a0,3, 0x28628c0,7, 0x2862900,1, 0x2862908,3, 0x2862918,8, 0x2862940,7, 0x2863000,2, 0x2863800,18, 0x2863880,18, 0x2863c00,4, 0x2863c20,7, 0x2863d00,4, 0x2863d80,20, 0x2863e00,1, 0x2864000,21, 0x2864058,3, 0x2864100,1, 0x2864124,1, 0x286412c,5, 0x2864144,1, 0x286414c,6, 0x2864184,6, 0x28641a4,6, 0x28641c4,1, 0x28641cc,1, 0x2864400,9, 0x2864440,9, 0x2864480,15, 0x28644c0,15, 0x2864500,15, 0x2864540,15, 0x2864580,15, 0x28645c0,15, 0x2864600,15, 0x2864640,15, 0x2864680,59, 0x2864800,1, 0x2864808,16, 0x2864850,1, 0x2864858,7, 0x2868000,3, 0x2868010,1, 0x2868018,3, 0x286a000,4, 0x286a080,19, 0x286a100,12, 0x286a200,4, 0x286a280,19, 0x286a300,12, 0x286a400,2, 0x286a600,124, 0x286a800,4, 0x286a880,18, 0x286a900,4, 0x286a980,23, 0x286aa00,10, 0x286aa2c,2, 0x286aa40,2, 0x286aa4c,3, 0x286aa60,2, 0x286aa6c,3, 0x286aa80,2, 0x286aa8c,2, 0x286aaa0,2, 0x286aaac,2, 0x286aac0,2, 0x286aacc,2, 0x286ab00,4, 0x286ab40,15, 0x286ab80,3, 0x286ab90,7, 0x286abb0,3, 0x286abc0,3, 0x286abd0,3, 0x286abe0,1, 0x286ac00,17, 0x286ae00,15, 0x286ae40,4, 0x286ae60,17, 0x286aec0,6, 0x286aee0,4, 0x286aef4,11, 0x286af24,28, 0x286b000,1, 0x286b080,1, 0x286b0a0,5, 0x286b0c0,5, 0x286b0e0,5, 0x286b100,1, 0x286b120,5, 0x286b140,5, 0x286b160,5, 0x286b180,24, 0x286b200,5, 0x286c000,20, 0x2870000,518, 0x2870900,45, 0x2870a00,45, 0x2870b00,45, 0x2870c00,45, 0x2870d00,45, 0x2870e00,45, 0x2870f00,45, 0x2871000,45, 0x2871800,9, 0x2871840,364, 0x2871e00,19, 0x2872000,9, 0x2872040,364, 0x2872600,19, 0x2872800,6, 0x2872820,3, 0x2872840,7, 0x2872880,6, 0x28728a0,3, 0x28728c0,7, 0x2872900,1, 0x2872908,3, 0x2872918,8, 0x2872940,7, 0x2873000,2, 0x2873800,18, 0x2873880,18, 0x2873c00,4, 0x2873c20,7, 0x2873d00,4, 0x2873d80,20, 0x2873e00,1, 0x2874000,21, 0x2874058,3, 0x2874100,1, 0x2874124,1, 0x287412c,5, 0x2874144,1, 0x287414c,6, 0x2874184,6, 0x28741a4,6, 0x28741c4,1, 0x28741cc,1, 0x2874400,9, 0x2874440,9, 0x2874480,15, 0x28744c0,15, 0x2874500,15, 0x2874540,15, 0x2874580,15, 0x28745c0,15, 0x2874600,15, 0x2874640,15, 0x2874680,59, 0x2874800,1, 0x2874808,16, 0x2874850,1, 0x2874858,7, 0x2878000,3, 0x2878010,1, 0x2878018,3, 0x287a000,4, 0x287a080,19, 0x287a100,12, 0x287a200,4, 0x287a280,19, 0x287a300,12, 0x287a400,2, 0x287a600,124, 0x287a800,4, 0x287a880,18, 0x287a900,4, 0x287a980,23, 0x287aa00,10, 0x287aa2c,2, 0x287aa40,2, 0x287aa4c,3, 0x287aa60,2, 0x287aa6c,3, 0x287aa80,2, 0x287aa8c,2, 0x287aaa0,2, 0x287aaac,2, 0x287aac0,2, 0x287aacc,2, 0x287ab00,4, 0x287ab40,15, 0x287ab80,3, 0x287ab90,7, 0x287abb0,3, 0x287abc0,3, 0x287abd0,3, 0x287abe0,1, 0x287ac00,17, 0x287ae00,15, 0x287ae40,4, 0x287ae60,17, 0x287aec0,6, 0x287aee0,4, 0x287aef4,11, 0x287af24,28, 0x287b000,1, 0x287b080,1, 0x287b0a0,5, 0x287b0c0,5, 0x287b0e0,5, 0x287b100,1, 0x287b120,5, 0x287b140,5, 0x287b160,5, 0x287b180,24, 0x287b200,5, 0x287c000,20, 0x2880000,18, 0x2880050,3, 0x2880060,3, 0x2880070,14, 0x28800c0,5, 0x2880400,13, 0x2880440,2, 0x288044c,3, 0x2880460,2, 0x2880480,13, 0x28804c0,2, 0x28804cc,3, 0x28804e0,2, 0x2880500,1, 0x2880508,16, 0x2880560,2, 0x288056c,3, 0x2880600,4, 0x2880680,19, 0x2880800,24, 0x2880864,2, 0x2880870,4, 0x2880a00,27, 0x2880a80,4, 0x2880ac0,25, 0x2880b40,6, 0x2880b60,4, 0x2880b74,11, 0x2880ba4,8, 0x2880c00,3, 0x2880c10,3, 0x2880c20,1, 0x2880c40,11, 0x2880c80,23, 0x2880ce0,15, 0x2880d20,15, 0x2880d60,2, 0x2880d6c,2, 0x2880d80,1, 0x2881000,18, 0x2881050,3, 0x2881060,3, 0x2881070,14, 0x28810c0,5, 0x2881400,13, 0x2881440,2, 0x288144c,3, 0x2881460,2, 0x2881480,13, 0x28814c0,2, 0x28814cc,3, 0x28814e0,2, 0x2881500,1, 0x2881508,16, 0x2881560,2, 0x288156c,3, 0x2881600,4, 0x2881680,19, 0x2881800,24, 0x2881864,2, 0x2881870,4, 0x2881a00,27, 0x2881a80,4, 0x2881ac0,25, 0x2881b40,6, 0x2881b60,4, 0x2881b74,11, 0x2881ba4,8, 0x2881c00,3, 0x2881c10,3, 0x2881c20,1, 0x2881c40,11, 0x2881c80,23, 0x2881ce0,15, 0x2881d20,15, 0x2881d60,2, 0x2881d6c,2, 0x2881d80,1, 0x2882000,20, 0x2882080,7, 0x28820a0,1, 0x28820b0,1, 0x28820b8,2, 0x2884000,14, 0x2900000,534, 0x2901000,2, 0x2901040,9, 0x2901080,7, 0x2902000,534, 0x2903000,12, 0x2903044,6, 0x2903080,8, 0x29030a4,1, 0x29030c0,7, 0x29030e0,7, 0x2903100,7, 0x2903120,7, 0x2903140,8, 0x2903164,6, 0x2903180,12, 0x2904000,534, 0x2905000,2, 0x2905040,9, 0x2905080,7, 0x2906000,534, 0x2907000,12, 0x2907044,6, 0x2907080,8, 0x29070a4,1, 0x29070c0,7, 0x29070e0,7, 0x2907100,7, 0x2907120,7, 0x2907140,8, 0x2907164,6, 0x2907180,12, 0x2908004,5, 0x2908200,27, 0x2908280,4, 0x29082c0,25, 0x2908340,6, 0x2908360,4, 0x2908374,11, 0x29083a4,5, 0x2908400,1, 0x2910000,397, 0x2910800,93, 0x2910980,6, 0x2910a00,41, 0x2910b00,2, 0x2910b20,19, 0x2910c00,25, 0x2910c80,1, 0x2910d00,28, 0x2910d80,1, 0x2911000,397, 0x2911800,93, 0x2911980,6, 0x2911a00,41, 0x2911b00,2, 0x2911b20,19, 0x2911c00,25, 0x2911c80,1, 0x2911d00,28, 0x2911d80,1, 0x2912000,7, 0x2912040,9, 0x2912080,4, 0x29120a0,5, 0x29120c0,2, 0x2914000,3, 0x2914010,6, 0x2914200,7, 0x2914220,6, 0x2914240,7, 0x2914260,6, 0x2914280,2, 0x291428c,2, 0x29142a0,2, 0x29142ac,2, 0x29142c0,7, 0x29142e0,7, 0x2914300,2, 0x291430c,2, 0x2914320,6, 0x2914340,7, 0x2914360,6, 0x2914380,6, 0x29143a0,7, 0x29143c0,6, 0x29143e0,6, 0x2914400,3, 0x2914440,12, 0x2914484,1, 0x29144c0,16, 0x2914800,7, 0x2914820,14, 0x2914880,9, 0x29148a8,12, 0x2914900,7, 0x2914920,14, 0x2914980,9, 0x29149a8,12, 0x2914a00,10, 0x2914a40,2, 0x2914a4c,3, 0x2914c00,5, 0x2914c20,1, 0x2914c28,3, 0x2920000,534, 0x2921000,2, 0x2921040,9, 0x2921080,7, 0x2922000,534, 0x2923000,12, 0x2923044,6, 0x2923080,8, 0x29230a4,1, 0x29230c0,7, 0x29230e0,7, 0x2923100,7, 0x2923120,7, 0x2923140,8, 0x2923164,6, 0x2923180,12, 0x2924000,534, 0x2925000,2, 0x2925040,9, 0x2925080,7, 0x2926000,534, 0x2927000,12, 0x2927044,6, 0x2927080,8, 0x29270a4,1, 0x29270c0,7, 0x29270e0,7, 0x2927100,7, 0x2927120,7, 0x2927140,8, 0x2927164,6, 0x2927180,12, 0x2928004,5, 0x2928200,27, 0x2928280,4, 0x29282c0,25, 0x2928340,6, 0x2928360,4, 0x2928374,11, 0x29283a4,5, 0x2928400,1, 0x2930000,397, 0x2930800,93, 0x2930980,6, 0x2930a00,41, 0x2930b00,2, 0x2930b20,19, 0x2930c00,25, 0x2930c80,1, 0x2930d00,28, 0x2930d80,1, 0x2931000,397, 0x2931800,93, 0x2931980,6, 0x2931a00,41, 0x2931b00,2, 0x2931b20,19, 0x2931c00,25, 0x2931c80,1, 0x2931d00,28, 0x2931d80,1, 0x2932000,7, 0x2932040,9, 0x2932080,4, 0x29320a0,5, 0x29320c0,2, 0x2934000,3, 0x2934010,6, 0x2934200,7, 0x2934220,6, 0x2934240,7, 0x2934260,6, 0x2934280,2, 0x293428c,2, 0x29342a0,2, 0x29342ac,2, 0x29342c0,7, 0x29342e0,7, 0x2934300,2, 0x293430c,2, 0x2934320,6, 0x2934340,7, 0x2934360,6, 0x2934380,6, 0x29343a0,7, 0x29343c0,6, 0x29343e0,6, 0x2934400,3, 0x2934440,12, 0x2934484,1, 0x29344c0,16, 0x2934800,7, 0x2934820,14, 0x2934880,9, 0x29348a8,12, 0x2934900,7, 0x2934920,14, 0x2934980,9, 0x29349a8,12, 0x2934a00,10, 0x2934a40,2, 0x2934a4c,3, 0x2934c00,5, 0x2934c20,1, 0x2934c28,3, 0x2940000,37, 0x2940100,3, 0x2940110,15, 0x2940200,37, 0x2940300,3, 0x2940310,15, 0x2940400,5, 0x2940420,5, 0x2940440,18, 0x2940800,3, 0x2940810,2, 0x2940820,3, 0x2940830,2, 0x2940840,1, 0x2941000,12, 0x2941040,12, 0x2941080,2, 0x2941100,19, 0x2941180,19, 0x2941200,26, 0x2941400,20, 0x2941480,20, 0x2941500,8, 0x2941540,4, 0x2941580,15, 0x29415c0,15, 0x2941600,9, 0x2941630,5, 0x2942000,37, 0x2942100,3, 0x2942110,15, 0x2942200,37, 0x2942300,3, 0x2942310,15, 0x2942400,5, 0x2942420,5, 0x2942440,18, 0x2942800,3, 0x2942810,2, 0x2942820,3, 0x2942830,2, 0x2942840,1, 0x2943000,12, 0x2943040,12, 0x2943080,2, 0x2943100,19, 0x2943180,19, 0x2943200,26, 0x2943400,20, 0x2943480,20, 0x2943500,8, 0x2943540,4, 0x2943580,15, 0x29435c0,15, 0x2943600,9, 0x2943630,5, 0x2944000,6, 0x2944020,1, 0x294402c,3, 0x2944040,11, 0x2944070,3, 0x2944080,2, 0x2948000,49, 0x2948100,12, 0x2948140,4, 0x2948184,1, 0x2948198,2, 0x29481a4,1, 0x29481b8,7, 0x29481e0,4, 0x2948200,20, 0x2948280,3, 0x2948290,9, 0x29482c0,6, 0x29482e0,1, 0x29482e8,7, 0x2948400,49, 0x2948500,12, 0x2948540,4, 0x2948584,1, 0x2948598,2, 0x29485a4,1, 0x29485b8,7, 0x29485e0,4, 0x2948600,20, 0x2948680,3, 0x2948690,9, 0x29486c0,6, 0x29486e0,1, 0x29486e8,7, 0x2948800,49, 0x2948900,12, 0x2948940,4, 0x2948984,1, 0x2948998,2, 0x29489a4,1, 0x29489b8,7, 0x29489e0,4, 0x2948a00,20, 0x2948a80,3, 0x2948a90,9, 0x2948ac0,6, 0x2948ae0,1, 0x2948ae8,7, 0x2948c00,49, 0x2948d00,12, 0x2948d40,4, 0x2948d84,1, 0x2948d98,2, 0x2948da4,1, 0x2948db8,7, 0x2948de0,4, 0x2948e00,20, 0x2948e80,3, 0x2948e90,9, 0x2948ec0,6, 0x2948ee0,1, 0x2948ee8,7, 0x2949000,49, 0x2949100,12, 0x2949140,4, 0x2949184,1, 0x2949198,2, 0x29491a4,1, 0x29491b8,7, 0x29491e0,4, 0x2949200,20, 0x2949280,3, 0x2949290,9, 0x29492c0,6, 0x29492e0,1, 0x29492e8,7, 0x2949400,49, 0x2949500,12, 0x2949540,4, 0x2949584,1, 0x2949598,2, 0x29495a4,1, 0x29495b8,7, 0x29495e0,4, 0x2949600,20, 0x2949680,3, 0x2949690,9, 0x29496c0,6, 0x29496e0,1, 0x29496e8,7, 0x2949800,49, 0x2949900,12, 0x2949940,4, 0x2949984,1, 0x2949998,2, 0x29499a4,1, 0x29499b8,7, 0x29499e0,4, 0x2949a00,20, 0x2949a80,3, 0x2949a90,9, 0x2949ac0,6, 0x2949ae0,1, 0x2949ae8,7, 0x294a000,20, 0x294a080,2, 0x294a100,20, 0x294a180,2, 0x294a200,4, 0x294a400,20, 0x294a480,2, 0x294a500,20, 0x294a580,2, 0x294a600,4, 0x294a800,3, 0x294a840,12, 0x294a880,12, 0x294a8c0,12, 0x294a900,12, 0x294a940,12, 0x294a980,12, 0x294a9c0,12, 0x294aa00,12, 0x294ac00,12, 0x294ac40,7, 0x294ac60,10, 0x294b004,1, 0x294b018,40, 0x294b100,7, 0x294b120,7, 0x294b140,2, 0x294b14c,2, 0x294b160,2, 0x294b16c,2, 0x294b180,18, 0x294b200,2, 0x294b220,10, 0x294b260,20, 0x294b2c0,7, 0x294b300,15, 0x294b340,9, 0x294b380,6, 0x294b3a0,4, 0x294b400,4, 0x294c000,106, 0x294c200,2, 0x294c240,9, 0x294c280,7, 0x294c400,106, 0x294c604,6, 0x294c700,15, 0x294c740,9, 0x294c780,6, 0x294c7a0,6, 0x294c800,8, 0x294c824,1, 0x294c830,15, 0x294c870,3, 0x2960000,518, 0x2960900,45, 0x2960a00,45, 0x2960b00,45, 0x2960c00,45, 0x2960d00,45, 0x2960e00,45, 0x2960f00,45, 0x2961000,45, 0x2961800,9, 0x2961840,364, 0x2961e00,19, 0x2962000,9, 0x2962040,364, 0x2962600,19, 0x2962800,6, 0x2962820,3, 0x2962840,7, 0x2962880,6, 0x29628a0,3, 0x29628c0,7, 0x2962900,1, 0x2962908,3, 0x2962918,8, 0x2962940,7, 0x2963000,2, 0x2963800,18, 0x2963880,18, 0x2963c00,4, 0x2963c20,7, 0x2963d00,4, 0x2963d80,20, 0x2963e00,1, 0x2964000,21, 0x2964058,3, 0x2964100,1, 0x2964124,1, 0x296412c,5, 0x2964144,1, 0x296414c,6, 0x2964184,6, 0x29641a4,6, 0x29641c4,1, 0x29641cc,1, 0x2964400,9, 0x2964440,9, 0x2964480,15, 0x29644c0,15, 0x2964500,15, 0x2964540,15, 0x2964580,15, 0x29645c0,15, 0x2964600,15, 0x2964640,15, 0x2964680,59, 0x2964800,1, 0x2964808,16, 0x2964850,1, 0x2964858,7, 0x2968000,3, 0x2968010,1, 0x2968018,3, 0x296a000,4, 0x296a080,19, 0x296a100,12, 0x296a200,4, 0x296a280,19, 0x296a300,12, 0x296a400,2, 0x296a600,124, 0x296a800,4, 0x296a880,18, 0x296a900,4, 0x296a980,23, 0x296aa00,10, 0x296aa2c,2, 0x296aa40,2, 0x296aa4c,3, 0x296aa60,2, 0x296aa6c,3, 0x296aa80,2, 0x296aa8c,2, 0x296aaa0,2, 0x296aaac,2, 0x296aac0,2, 0x296aacc,2, 0x296ab00,4, 0x296ab40,15, 0x296ab80,3, 0x296ab90,7, 0x296abb0,3, 0x296abc0,3, 0x296abd0,3, 0x296abe0,1, 0x296ac00,17, 0x296ae00,15, 0x296ae40,4, 0x296ae60,17, 0x296aec0,6, 0x296aee0,4, 0x296aef4,11, 0x296af24,28, 0x296b000,1, 0x296b080,1, 0x296b0a0,5, 0x296b0c0,5, 0x296b0e0,5, 0x296b100,1, 0x296b120,5, 0x296b140,5, 0x296b160,5, 0x296b180,24, 0x296b200,5, 0x296c000,20, 0x2970000,518, 0x2970900,45, 0x2970a00,45, 0x2970b00,45, 0x2970c00,45, 0x2970d00,45, 0x2970e00,45, 0x2970f00,45, 0x2971000,45, 0x2971800,9, 0x2971840,364, 0x2971e00,19, 0x2972000,9, 0x2972040,364, 0x2972600,19, 0x2972800,6, 0x2972820,3, 0x2972840,7, 0x2972880,6, 0x29728a0,3, 0x29728c0,7, 0x2972900,1, 0x2972908,3, 0x2972918,8, 0x2972940,7, 0x2973000,2, 0x2973800,18, 0x2973880,18, 0x2973c00,4, 0x2973c20,7, 0x2973d00,4, 0x2973d80,20, 0x2973e00,1, 0x2974000,21, 0x2974058,3, 0x2974100,1, 0x2974124,1, 0x297412c,5, 0x2974144,1, 0x297414c,6, 0x2974184,6, 0x29741a4,6, 0x29741c4,1, 0x29741cc,1, 0x2974400,9, 0x2974440,9, 0x2974480,15, 0x29744c0,15, 0x2974500,15, 0x2974540,15, 0x2974580,15, 0x29745c0,15, 0x2974600,15, 0x2974640,15, 0x2974680,59, 0x2974800,1, 0x2974808,16, 0x2974850,1, 0x2974858,7, 0x2978000,3, 0x2978010,1, 0x2978018,3, 0x297a000,4, 0x297a080,19, 0x297a100,12, 0x297a200,4, 0x297a280,19, 0x297a300,12, 0x297a400,2, 0x297a600,124, 0x297a800,4, 0x297a880,18, 0x297a900,4, 0x297a980,23, 0x297aa00,10, 0x297aa2c,2, 0x297aa40,2, 0x297aa4c,3, 0x297aa60,2, 0x297aa6c,3, 0x297aa80,2, 0x297aa8c,2, 0x297aaa0,2, 0x297aaac,2, 0x297aac0,2, 0x297aacc,2, 0x297ab00,4, 0x297ab40,15, 0x297ab80,3, 0x297ab90,7, 0x297abb0,3, 0x297abc0,3, 0x297abd0,3, 0x297abe0,1, 0x297ac00,17, 0x297ae00,15, 0x297ae40,4, 0x297ae60,17, 0x297aec0,6, 0x297aee0,4, 0x297aef4,11, 0x297af24,28, 0x297b000,1, 0x297b080,1, 0x297b0a0,5, 0x297b0c0,5, 0x297b0e0,5, 0x297b100,1, 0x297b120,5, 0x297b140,5, 0x297b160,5, 0x297b180,24, 0x297b200,5, 0x297c000,20, 0x2980000,18, 0x2980050,3, 0x2980060,3, 0x2980070,14, 0x29800c0,5, 0x2980400,13, 0x2980440,2, 0x298044c,3, 0x2980460,2, 0x2980480,13, 0x29804c0,2, 0x29804cc,3, 0x29804e0,2, 0x2980500,1, 0x2980508,16, 0x2980560,2, 0x298056c,3, 0x2980600,4, 0x2980680,19, 0x2980800,24, 0x2980864,2, 0x2980870,4, 0x2980a00,27, 0x2980a80,4, 0x2980ac0,25, 0x2980b40,6, 0x2980b60,4, 0x2980b74,11, 0x2980ba4,8, 0x2980c00,3, 0x2980c10,3, 0x2980c20,1, 0x2980c40,11, 0x2980c80,23, 0x2980ce0,15, 0x2980d20,15, 0x2980d60,2, 0x2980d6c,2, 0x2980d80,1, 0x2981000,18, 0x2981050,3, 0x2981060,3, 0x2981070,14, 0x29810c0,5, 0x2981400,13, 0x2981440,2, 0x298144c,3, 0x2981460,2, 0x2981480,13, 0x29814c0,2, 0x29814cc,3, 0x29814e0,2, 0x2981500,1, 0x2981508,16, 0x2981560,2, 0x298156c,3, 0x2981600,4, 0x2981680,19, 0x2981800,24, 0x2981864,2, 0x2981870,4, 0x2981a00,27, 0x2981a80,4, 0x2981ac0,25, 0x2981b40,6, 0x2981b60,4, 0x2981b74,11, 0x2981ba4,8, 0x2981c00,3, 0x2981c10,3, 0x2981c20,1, 0x2981c40,11, 0x2981c80,23, 0x2981ce0,15, 0x2981d20,15, 0x2981d60,2, 0x2981d6c,2, 0x2981d80,1, 0x2982000,20, 0x2982080,7, 0x29820a0,1, 0x29820b0,1, 0x29820b8,2, 0x2984000,14, 0x2a00000,534, 0x2a01000,2, 0x2a01040,9, 0x2a01080,7, 0x2a02000,534, 0x2a03000,12, 0x2a03044,6, 0x2a03080,8, 0x2a030a4,1, 0x2a030c0,7, 0x2a030e0,7, 0x2a03100,7, 0x2a03120,7, 0x2a03140,8, 0x2a03164,6, 0x2a03180,12, 0x2a04000,534, 0x2a05000,2, 0x2a05040,9, 0x2a05080,7, 0x2a06000,534, 0x2a07000,12, 0x2a07044,6, 0x2a07080,8, 0x2a070a4,1, 0x2a070c0,7, 0x2a070e0,7, 0x2a07100,7, 0x2a07120,7, 0x2a07140,8, 0x2a07164,6, 0x2a07180,12, 0x2a08004,5, 0x2a08200,27, 0x2a08280,4, 0x2a082c0,25, 0x2a08340,6, 0x2a08360,4, 0x2a08374,11, 0x2a083a4,5, 0x2a08400,1, 0x2a10000,397, 0x2a10800,93, 0x2a10980,6, 0x2a10a00,41, 0x2a10b00,2, 0x2a10b20,19, 0x2a10c00,25, 0x2a10c80,1, 0x2a10d00,28, 0x2a10d80,1, 0x2a11000,397, 0x2a11800,93, 0x2a11980,6, 0x2a11a00,41, 0x2a11b00,2, 0x2a11b20,19, 0x2a11c00,25, 0x2a11c80,1, 0x2a11d00,28, 0x2a11d80,1, 0x2a12000,7, 0x2a12040,9, 0x2a12080,4, 0x2a120a0,5, 0x2a120c0,2, 0x2a14000,3, 0x2a14010,6, 0x2a14200,7, 0x2a14220,6, 0x2a14240,7, 0x2a14260,6, 0x2a14280,2, 0x2a1428c,2, 0x2a142a0,2, 0x2a142ac,2, 0x2a142c0,7, 0x2a142e0,7, 0x2a14300,2, 0x2a1430c,2, 0x2a14320,6, 0x2a14340,7, 0x2a14360,6, 0x2a14380,6, 0x2a143a0,7, 0x2a143c0,6, 0x2a143e0,6, 0x2a14400,3, 0x2a14440,12, 0x2a14484,1, 0x2a144c0,16, 0x2a14800,7, 0x2a14820,14, 0x2a14880,9, 0x2a148a8,12, 0x2a14900,7, 0x2a14920,14, 0x2a14980,9, 0x2a149a8,12, 0x2a14a00,10, 0x2a14a40,2, 0x2a14a4c,3, 0x2a14c00,5, 0x2a14c20,1, 0x2a14c28,3, 0x2a20000,534, 0x2a21000,2, 0x2a21040,9, 0x2a21080,7, 0x2a22000,534, 0x2a23000,12, 0x2a23044,6, 0x2a23080,8, 0x2a230a4,1, 0x2a230c0,7, 0x2a230e0,7, 0x2a23100,7, 0x2a23120,7, 0x2a23140,8, 0x2a23164,6, 0x2a23180,12, 0x2a24000,534, 0x2a25000,2, 0x2a25040,9, 0x2a25080,7, 0x2a26000,534, 0x2a27000,12, 0x2a27044,6, 0x2a27080,8, 0x2a270a4,1, 0x2a270c0,7, 0x2a270e0,7, 0x2a27100,7, 0x2a27120,7, 0x2a27140,8, 0x2a27164,6, 0x2a27180,12, 0x2a28004,5, 0x2a28200,27, 0x2a28280,4, 0x2a282c0,25, 0x2a28340,6, 0x2a28360,4, 0x2a28374,11, 0x2a283a4,5, 0x2a28400,1, 0x2a30000,397, 0x2a30800,93, 0x2a30980,6, 0x2a30a00,41, 0x2a30b00,2, 0x2a30b20,19, 0x2a30c00,25, 0x2a30c80,1, 0x2a30d00,28, 0x2a30d80,1, 0x2a31000,397, 0x2a31800,93, 0x2a31980,6, 0x2a31a00,41, 0x2a31b00,2, 0x2a31b20,19, 0x2a31c00,25, 0x2a31c80,1, 0x2a31d00,28, 0x2a31d80,1, 0x2a32000,7, 0x2a32040,9, 0x2a32080,4, 0x2a320a0,5, 0x2a320c0,2, 0x2a34000,3, 0x2a34010,6, 0x2a34200,7, 0x2a34220,6, 0x2a34240,7, 0x2a34260,6, 0x2a34280,2, 0x2a3428c,2, 0x2a342a0,2, 0x2a342ac,2, 0x2a342c0,7, 0x2a342e0,7, 0x2a34300,2, 0x2a3430c,2, 0x2a34320,6, 0x2a34340,7, 0x2a34360,6, 0x2a34380,6, 0x2a343a0,7, 0x2a343c0,6, 0x2a343e0,6, 0x2a34400,3, 0x2a34440,12, 0x2a34484,1, 0x2a344c0,16, 0x2a34800,7, 0x2a34820,14, 0x2a34880,9, 0x2a348a8,12, 0x2a34900,7, 0x2a34920,14, 0x2a34980,9, 0x2a349a8,12, 0x2a34a00,10, 0x2a34a40,2, 0x2a34a4c,3, 0x2a34c00,5, 0x2a34c20,1, 0x2a34c28,3, 0x2a40000,37, 0x2a40100,3, 0x2a40110,15, 0x2a40200,37, 0x2a40300,3, 0x2a40310,15, 0x2a40400,5, 0x2a40420,5, 0x2a40440,18, 0x2a40800,3, 0x2a40810,2, 0x2a40820,3, 0x2a40830,2, 0x2a40840,1, 0x2a41000,12, 0x2a41040,12, 0x2a41080,2, 0x2a41100,19, 0x2a41180,19, 0x2a41200,26, 0x2a41400,20, 0x2a41480,20, 0x2a41500,8, 0x2a41540,4, 0x2a41580,15, 0x2a415c0,15, 0x2a41600,9, 0x2a41630,5, 0x2a42000,37, 0x2a42100,3, 0x2a42110,15, 0x2a42200,37, 0x2a42300,3, 0x2a42310,15, 0x2a42400,5, 0x2a42420,5, 0x2a42440,18, 0x2a42800,3, 0x2a42810,2, 0x2a42820,3, 0x2a42830,2, 0x2a42840,1, 0x2a43000,12, 0x2a43040,12, 0x2a43080,2, 0x2a43100,19, 0x2a43180,19, 0x2a43200,26, 0x2a43400,20, 0x2a43480,20, 0x2a43500,8, 0x2a43540,4, 0x2a43580,15, 0x2a435c0,15, 0x2a43600,9, 0x2a43630,5, 0x2a44000,6, 0x2a44020,1, 0x2a4402c,3, 0x2a44040,11, 0x2a44070,3, 0x2a44080,2, 0x2a48000,49, 0x2a48100,12, 0x2a48140,4, 0x2a48184,1, 0x2a48198,2, 0x2a481a4,1, 0x2a481b8,7, 0x2a481e0,4, 0x2a48200,20, 0x2a48280,3, 0x2a48290,9, 0x2a482c0,6, 0x2a482e0,1, 0x2a482e8,7, 0x2a48400,49, 0x2a48500,12, 0x2a48540,4, 0x2a48584,1, 0x2a48598,2, 0x2a485a4,1, 0x2a485b8,7, 0x2a485e0,4, 0x2a48600,20, 0x2a48680,3, 0x2a48690,9, 0x2a486c0,6, 0x2a486e0,1, 0x2a486e8,7, 0x2a48800,49, 0x2a48900,12, 0x2a48940,4, 0x2a48984,1, 0x2a48998,2, 0x2a489a4,1, 0x2a489b8,7, 0x2a489e0,4, 0x2a48a00,20, 0x2a48a80,3, 0x2a48a90,9, 0x2a48ac0,6, 0x2a48ae0,1, 0x2a48ae8,7, 0x2a48c00,49, 0x2a48d00,12, 0x2a48d40,4, 0x2a48d84,1, 0x2a48d98,2, 0x2a48da4,1, 0x2a48db8,7, 0x2a48de0,4, 0x2a48e00,20, 0x2a48e80,3, 0x2a48e90,9, 0x2a48ec0,6, 0x2a48ee0,1, 0x2a48ee8,7, 0x2a49000,49, 0x2a49100,12, 0x2a49140,4, 0x2a49184,1, 0x2a49198,2, 0x2a491a4,1, 0x2a491b8,7, 0x2a491e0,4, 0x2a49200,20, 0x2a49280,3, 0x2a49290,9, 0x2a492c0,6, 0x2a492e0,1, 0x2a492e8,7, 0x2a49400,49, 0x2a49500,12, 0x2a49540,4, 0x2a49584,1, 0x2a49598,2, 0x2a495a4,1, 0x2a495b8,7, 0x2a495e0,4, 0x2a49600,20, 0x2a49680,3, 0x2a49690,9, 0x2a496c0,6, 0x2a496e0,1, 0x2a496e8,7, 0x2a49800,49, 0x2a49900,12, 0x2a49940,4, 0x2a49984,1, 0x2a49998,2, 0x2a499a4,1, 0x2a499b8,7, 0x2a499e0,4, 0x2a49a00,20, 0x2a49a80,3, 0x2a49a90,9, 0x2a49ac0,6, 0x2a49ae0,1, 0x2a49ae8,7, 0x2a4a000,20, 0x2a4a080,2, 0x2a4a100,20, 0x2a4a180,2, 0x2a4a200,4, 0x2a4a400,20, 0x2a4a480,2, 0x2a4a500,20, 0x2a4a580,2, 0x2a4a600,4, 0x2a4a800,3, 0x2a4a840,12, 0x2a4a880,12, 0x2a4a8c0,12, 0x2a4a900,12, 0x2a4a940,12, 0x2a4a980,12, 0x2a4a9c0,12, 0x2a4aa00,12, 0x2a4ac00,12, 0x2a4ac40,7, 0x2a4ac60,10, 0x2a4b004,1, 0x2a4b018,40, 0x2a4b100,7, 0x2a4b120,7, 0x2a4b140,2, 0x2a4b14c,2, 0x2a4b160,2, 0x2a4b16c,2, 0x2a4b180,18, 0x2a4b200,2, 0x2a4b220,10, 0x2a4b260,20, 0x2a4b2c0,7, 0x2a4b300,15, 0x2a4b340,9, 0x2a4b380,6, 0x2a4b3a0,4, 0x2a4b400,4, 0x2a4c000,106, 0x2a4c200,2, 0x2a4c240,9, 0x2a4c280,7, 0x2a4c400,106, 0x2a4c604,6, 0x2a4c700,15, 0x2a4c740,9, 0x2a4c780,6, 0x2a4c7a0,6, 0x2a4c800,8, 0x2a4c824,1, 0x2a4c830,15, 0x2a4c870,3, 0x2a60000,518, 0x2a60900,45, 0x2a60a00,45, 0x2a60b00,45, 0x2a60c00,45, 0x2a60d00,45, 0x2a60e00,45, 0x2a60f00,45, 0x2a61000,45, 0x2a61800,9, 0x2a61840,364, 0x2a61e00,19, 0x2a62000,9, 0x2a62040,364, 0x2a62600,19, 0x2a62800,6, 0x2a62820,3, 0x2a62840,7, 0x2a62880,6, 0x2a628a0,3, 0x2a628c0,7, 0x2a62900,1, 0x2a62908,3, 0x2a62918,8, 0x2a62940,7, 0x2a63000,2, 0x2a63800,18, 0x2a63880,18, 0x2a63c00,4, 0x2a63c20,7, 0x2a63d00,4, 0x2a63d80,20, 0x2a63e00,1, 0x2a64000,21, 0x2a64058,3, 0x2a64100,1, 0x2a64124,1, 0x2a6412c,5, 0x2a64144,1, 0x2a6414c,6, 0x2a64184,6, 0x2a641a4,6, 0x2a641c4,1, 0x2a641cc,1, 0x2a64400,9, 0x2a64440,9, 0x2a64480,15, 0x2a644c0,15, 0x2a64500,15, 0x2a64540,15, 0x2a64580,15, 0x2a645c0,15, 0x2a64600,15, 0x2a64640,15, 0x2a64680,59, 0x2a64800,1, 0x2a64808,16, 0x2a64850,1, 0x2a64858,7, 0x2a68000,3, 0x2a68010,1, 0x2a68018,3, 0x2a6a000,4, 0x2a6a080,19, 0x2a6a100,12, 0x2a6a200,4, 0x2a6a280,19, 0x2a6a300,12, 0x2a6a400,2, 0x2a6a600,124, 0x2a6a800,4, 0x2a6a880,18, 0x2a6a900,4, 0x2a6a980,23, 0x2a6aa00,10, 0x2a6aa2c,2, 0x2a6aa40,2, 0x2a6aa4c,3, 0x2a6aa60,2, 0x2a6aa6c,3, 0x2a6aa80,2, 0x2a6aa8c,2, 0x2a6aaa0,2, 0x2a6aaac,2, 0x2a6aac0,2, 0x2a6aacc,2, 0x2a6ab00,4, 0x2a6ab40,15, 0x2a6ab80,3, 0x2a6ab90,7, 0x2a6abb0,3, 0x2a6abc0,3, 0x2a6abd0,3, 0x2a6abe0,1, 0x2a6ac00,17, 0x2a6ae00,15, 0x2a6ae40,4, 0x2a6ae60,17, 0x2a6aec0,6, 0x2a6aee0,4, 0x2a6aef4,11, 0x2a6af24,28, 0x2a6b000,1, 0x2a6b080,1, 0x2a6b0a0,5, 0x2a6b0c0,5, 0x2a6b0e0,5, 0x2a6b100,1, 0x2a6b120,5, 0x2a6b140,5, 0x2a6b160,5, 0x2a6b180,24, 0x2a6b200,5, 0x2a6c000,20, 0x2a70000,518, 0x2a70900,45, 0x2a70a00,45, 0x2a70b00,45, 0x2a70c00,45, 0x2a70d00,45, 0x2a70e00,45, 0x2a70f00,45, 0x2a71000,45, 0x2a71800,9, 0x2a71840,364, 0x2a71e00,19, 0x2a72000,9, 0x2a72040,364, 0x2a72600,19, 0x2a72800,6, 0x2a72820,3, 0x2a72840,7, 0x2a72880,6, 0x2a728a0,3, 0x2a728c0,7, 0x2a72900,1, 0x2a72908,3, 0x2a72918,8, 0x2a72940,7, 0x2a73000,2, 0x2a73800,18, 0x2a73880,18, 0x2a73c00,4, 0x2a73c20,7, 0x2a73d00,4, 0x2a73d80,20, 0x2a73e00,1, 0x2a74000,21, 0x2a74058,3, 0x2a74100,1, 0x2a74124,1, 0x2a7412c,5, 0x2a74144,1, 0x2a7414c,6, 0x2a74184,6, 0x2a741a4,6, 0x2a741c4,1, 0x2a741cc,1, 0x2a74400,9, 0x2a74440,9, 0x2a74480,15, 0x2a744c0,15, 0x2a74500,15, 0x2a74540,15, 0x2a74580,15, 0x2a745c0,15, 0x2a74600,15, 0x2a74640,15, 0x2a74680,59, 0x2a74800,1, 0x2a74808,16, 0x2a74850,1, 0x2a74858,7, 0x2a78000,3, 0x2a78010,1, 0x2a78018,3, 0x2a7a000,4, 0x2a7a080,19, 0x2a7a100,12, 0x2a7a200,4, 0x2a7a280,19, 0x2a7a300,12, 0x2a7a400,2, 0x2a7a600,124, 0x2a7a800,4, 0x2a7a880,18, 0x2a7a900,4, 0x2a7a980,23, 0x2a7aa00,10, 0x2a7aa2c,2, 0x2a7aa40,2, 0x2a7aa4c,3, 0x2a7aa60,2, 0x2a7aa6c,3, 0x2a7aa80,2, 0x2a7aa8c,2, 0x2a7aaa0,2, 0x2a7aaac,2, 0x2a7aac0,2, 0x2a7aacc,2, 0x2a7ab00,4, 0x2a7ab40,15, 0x2a7ab80,3, 0x2a7ab90,7, 0x2a7abb0,3, 0x2a7abc0,3, 0x2a7abd0,3, 0x2a7abe0,1, 0x2a7ac00,17, 0x2a7ae00,15, 0x2a7ae40,4, 0x2a7ae60,17, 0x2a7aec0,6, 0x2a7aee0,4, 0x2a7aef4,11, 0x2a7af24,28, 0x2a7b000,1, 0x2a7b080,1, 0x2a7b0a0,5, 0x2a7b0c0,5, 0x2a7b0e0,5, 0x2a7b100,1, 0x2a7b120,5, 0x2a7b140,5, 0x2a7b160,5, 0x2a7b180,24, 0x2a7b200,5, 0x2a7c000,20, 0x2a80000,18, 0x2a80050,3, 0x2a80060,3, 0x2a80070,14, 0x2a800c0,5, 0x2a80400,13, 0x2a80440,2, 0x2a8044c,3, 0x2a80460,2, 0x2a80480,13, 0x2a804c0,2, 0x2a804cc,3, 0x2a804e0,2, 0x2a80500,1, 0x2a80508,16, 0x2a80560,2, 0x2a8056c,3, 0x2a80600,4, 0x2a80680,19, 0x2a80800,24, 0x2a80864,2, 0x2a80870,4, 0x2a80a00,27, 0x2a80a80,4, 0x2a80ac0,25, 0x2a80b40,6, 0x2a80b60,4, 0x2a80b74,11, 0x2a80ba4,8, 0x2a80c00,3, 0x2a80c10,3, 0x2a80c20,1, 0x2a80c40,11, 0x2a80c80,23, 0x2a80ce0,15, 0x2a80d20,15, 0x2a80d60,2, 0x2a80d6c,2, 0x2a80d80,1, 0x2a81000,18, 0x2a81050,3, 0x2a81060,3, 0x2a81070,14, 0x2a810c0,5, 0x2a81400,13, 0x2a81440,2, 0x2a8144c,3, 0x2a81460,2, 0x2a81480,13, 0x2a814c0,2, 0x2a814cc,3, 0x2a814e0,2, 0x2a81500,1, 0x2a81508,16, 0x2a81560,2, 0x2a8156c,3, 0x2a81600,4, 0x2a81680,19, 0x2a81800,24, 0x2a81864,2, 0x2a81870,4, 0x2a81a00,27, 0x2a81a80,4, 0x2a81ac0,25, 0x2a81b40,6, 0x2a81b60,4, 0x2a81b74,11, 0x2a81ba4,8, 0x2a81c00,3, 0x2a81c10,3, 0x2a81c20,1, 0x2a81c40,11, 0x2a81c80,23, 0x2a81ce0,15, 0x2a81d20,15, 0x2a81d60,2, 0x2a81d6c,2, 0x2a81d80,1, 0x2a82000,20, 0x2a82080,7, 0x2a820a0,1, 0x2a820b0,1, 0x2a820b8,2, 0x2a84000,14, 0x2b00000,534, 0x2b01000,2, 0x2b01040,9, 0x2b01080,7, 0x2b02000,534, 0x2b03000,12, 0x2b03044,6, 0x2b03080,8, 0x2b030a4,1, 0x2b030c0,7, 0x2b030e0,7, 0x2b03100,7, 0x2b03120,7, 0x2b03140,8, 0x2b03164,6, 0x2b03180,12, 0x2b04000,534, 0x2b05000,2, 0x2b05040,9, 0x2b05080,7, 0x2b06000,534, 0x2b07000,12, 0x2b07044,6, 0x2b07080,8, 0x2b070a4,1, 0x2b070c0,7, 0x2b070e0,7, 0x2b07100,7, 0x2b07120,7, 0x2b07140,8, 0x2b07164,6, 0x2b07180,12, 0x2b08004,5, 0x2b08200,27, 0x2b08280,4, 0x2b082c0,25, 0x2b08340,6, 0x2b08360,4, 0x2b08374,11, 0x2b083a4,5, 0x2b08400,1, 0x2b10000,397, 0x2b10800,93, 0x2b10980,6, 0x2b10a00,41, 0x2b10b00,2, 0x2b10b20,19, 0x2b10c00,25, 0x2b10c80,1, 0x2b10d00,28, 0x2b10d80,1, 0x2b11000,397, 0x2b11800,93, 0x2b11980,6, 0x2b11a00,41, 0x2b11b00,2, 0x2b11b20,19, 0x2b11c00,25, 0x2b11c80,1, 0x2b11d00,28, 0x2b11d80,1, 0x2b12000,7, 0x2b12040,9, 0x2b12080,4, 0x2b120a0,5, 0x2b120c0,2, 0x2b14000,3, 0x2b14010,6, 0x2b14200,7, 0x2b14220,6, 0x2b14240,7, 0x2b14260,6, 0x2b14280,2, 0x2b1428c,2, 0x2b142a0,2, 0x2b142ac,2, 0x2b142c0,7, 0x2b142e0,7, 0x2b14300,2, 0x2b1430c,2, 0x2b14320,6, 0x2b14340,7, 0x2b14360,6, 0x2b14380,6, 0x2b143a0,7, 0x2b143c0,6, 0x2b143e0,6, 0x2b14400,3, 0x2b14440,12, 0x2b14484,1, 0x2b144c0,16, 0x2b14800,7, 0x2b14820,14, 0x2b14880,9, 0x2b148a8,12, 0x2b14900,7, 0x2b14920,14, 0x2b14980,9, 0x2b149a8,12, 0x2b14a00,10, 0x2b14a40,2, 0x2b14a4c,3, 0x2b14c00,5, 0x2b14c20,1, 0x2b14c28,3, 0x2b20000,534, 0x2b21000,2, 0x2b21040,9, 0x2b21080,7, 0x2b22000,534, 0x2b23000,12, 0x2b23044,6, 0x2b23080,8, 0x2b230a4,1, 0x2b230c0,7, 0x2b230e0,7, 0x2b23100,7, 0x2b23120,7, 0x2b23140,8, 0x2b23164,6, 0x2b23180,12, 0x2b24000,534, 0x2b25000,2, 0x2b25040,9, 0x2b25080,7, 0x2b26000,534, 0x2b27000,12, 0x2b27044,6, 0x2b27080,8, 0x2b270a4,1, 0x2b270c0,7, 0x2b270e0,7, 0x2b27100,7, 0x2b27120,7, 0x2b27140,8, 0x2b27164,6, 0x2b27180,12, 0x2b28004,5, 0x2b28200,27, 0x2b28280,4, 0x2b282c0,25, 0x2b28340,6, 0x2b28360,4, 0x2b28374,11, 0x2b283a4,5, 0x2b28400,1, 0x2b30000,397, 0x2b30800,93, 0x2b30980,6, 0x2b30a00,41, 0x2b30b00,2, 0x2b30b20,19, 0x2b30c00,25, 0x2b30c80,1, 0x2b30d00,28, 0x2b30d80,1, 0x2b31000,397, 0x2b31800,93, 0x2b31980,6, 0x2b31a00,41, 0x2b31b00,2, 0x2b31b20,19, 0x2b31c00,25, 0x2b31c80,1, 0x2b31d00,28, 0x2b31d80,1, 0x2b32000,7, 0x2b32040,9, 0x2b32080,4, 0x2b320a0,5, 0x2b320c0,2, 0x2b34000,3, 0x2b34010,6, 0x2b34200,7, 0x2b34220,6, 0x2b34240,7, 0x2b34260,6, 0x2b34280,2, 0x2b3428c,2, 0x2b342a0,2, 0x2b342ac,2, 0x2b342c0,7, 0x2b342e0,7, 0x2b34300,2, 0x2b3430c,2, 0x2b34320,6, 0x2b34340,7, 0x2b34360,6, 0x2b34380,6, 0x2b343a0,7, 0x2b343c0,6, 0x2b343e0,6, 0x2b34400,3, 0x2b34440,12, 0x2b34484,1, 0x2b344c0,16, 0x2b34800,7, 0x2b34820,14, 0x2b34880,9, 0x2b348a8,12, 0x2b34900,7, 0x2b34920,14, 0x2b34980,9, 0x2b349a8,12, 0x2b34a00,10, 0x2b34a40,2, 0x2b34a4c,3, 0x2b34c00,5, 0x2b34c20,1, 0x2b34c28,3, 0x2b40000,37, 0x2b40100,3, 0x2b40110,15, 0x2b40200,37, 0x2b40300,3, 0x2b40310,15, 0x2b40400,5, 0x2b40420,5, 0x2b40440,18, 0x2b40800,3, 0x2b40810,2, 0x2b40820,3, 0x2b40830,2, 0x2b40840,1, 0x2b41000,12, 0x2b41040,12, 0x2b41080,2, 0x2b41100,19, 0x2b41180,19, 0x2b41200,26, 0x2b41400,20, 0x2b41480,20, 0x2b41500,8, 0x2b41540,4, 0x2b41580,15, 0x2b415c0,15, 0x2b41600,9, 0x2b41630,5, 0x2b42000,37, 0x2b42100,3, 0x2b42110,15, 0x2b42200,37, 0x2b42300,3, 0x2b42310,15, 0x2b42400,5, 0x2b42420,5, 0x2b42440,18, 0x2b42800,3, 0x2b42810,2, 0x2b42820,3, 0x2b42830,2, 0x2b42840,1, 0x2b43000,12, 0x2b43040,12, 0x2b43080,2, 0x2b43100,19, 0x2b43180,19, 0x2b43200,26, 0x2b43400,20, 0x2b43480,20, 0x2b43500,8, 0x2b43540,4, 0x2b43580,15, 0x2b435c0,15, 0x2b43600,9, 0x2b43630,5, 0x2b44000,6, 0x2b44020,1, 0x2b4402c,3, 0x2b44040,11, 0x2b44070,3, 0x2b44080,2, 0x2b48000,49, 0x2b48100,12, 0x2b48140,4, 0x2b48184,1, 0x2b48198,2, 0x2b481a4,1, 0x2b481b8,7, 0x2b481e0,4, 0x2b48200,20, 0x2b48280,3, 0x2b48290,9, 0x2b482c0,6, 0x2b482e0,1, 0x2b482e8,7, 0x2b48400,49, 0x2b48500,12, 0x2b48540,4, 0x2b48584,1, 0x2b48598,2, 0x2b485a4,1, 0x2b485b8,7, 0x2b485e0,4, 0x2b48600,20, 0x2b48680,3, 0x2b48690,9, 0x2b486c0,6, 0x2b486e0,1, 0x2b486e8,7, 0x2b48800,49, 0x2b48900,12, 0x2b48940,4, 0x2b48984,1, 0x2b48998,2, 0x2b489a4,1, 0x2b489b8,7, 0x2b489e0,4, 0x2b48a00,20, 0x2b48a80,3, 0x2b48a90,9, 0x2b48ac0,6, 0x2b48ae0,1, 0x2b48ae8,7, 0x2b48c00,49, 0x2b48d00,12, 0x2b48d40,4, 0x2b48d84,1, 0x2b48d98,2, 0x2b48da4,1, 0x2b48db8,7, 0x2b48de0,4, 0x2b48e00,20, 0x2b48e80,3, 0x2b48e90,9, 0x2b48ec0,6, 0x2b48ee0,1, 0x2b48ee8,7, 0x2b49000,49, 0x2b49100,12, 0x2b49140,4, 0x2b49184,1, 0x2b49198,2, 0x2b491a4,1, 0x2b491b8,7, 0x2b491e0,4, 0x2b49200,20, 0x2b49280,3, 0x2b49290,9, 0x2b492c0,6, 0x2b492e0,1, 0x2b492e8,7, 0x2b49400,49, 0x2b49500,12, 0x2b49540,4, 0x2b49584,1, 0x2b49598,2, 0x2b495a4,1, 0x2b495b8,7, 0x2b495e0,4, 0x2b49600,20, 0x2b49680,3, 0x2b49690,9, 0x2b496c0,6, 0x2b496e0,1, 0x2b496e8,7, 0x2b49800,49, 0x2b49900,12, 0x2b49940,4, 0x2b49984,1, 0x2b49998,2, 0x2b499a4,1, 0x2b499b8,7, 0x2b499e0,4, 0x2b49a00,20, 0x2b49a80,3, 0x2b49a90,9, 0x2b49ac0,6, 0x2b49ae0,1, 0x2b49ae8,7, 0x2b4a000,20, 0x2b4a080,2, 0x2b4a100,20, 0x2b4a180,2, 0x2b4a200,4, 0x2b4a400,20, 0x2b4a480,2, 0x2b4a500,20, 0x2b4a580,2, 0x2b4a600,4, 0x2b4a800,3, 0x2b4a840,12, 0x2b4a880,12, 0x2b4a8c0,12, 0x2b4a900,12, 0x2b4a940,12, 0x2b4a980,12, 0x2b4a9c0,12, 0x2b4aa00,12, 0x2b4ac00,12, 0x2b4ac40,7, 0x2b4ac60,10, 0x2b4b004,1, 0x2b4b018,40, 0x2b4b100,7, 0x2b4b120,7, 0x2b4b140,2, 0x2b4b14c,2, 0x2b4b160,2, 0x2b4b16c,2, 0x2b4b180,18, 0x2b4b200,2, 0x2b4b220,10, 0x2b4b260,20, 0x2b4b2c0,7, 0x2b4b300,15, 0x2b4b340,9, 0x2b4b380,6, 0x2b4b3a0,4, 0x2b4b400,4, 0x2b4c000,106, 0x2b4c200,2, 0x2b4c240,9, 0x2b4c280,7, 0x2b4c400,106, 0x2b4c604,6, 0x2b4c700,15, 0x2b4c740,9, 0x2b4c780,6, 0x2b4c7a0,6, 0x2b4c800,8, 0x2b4c824,1, 0x2b4c830,15, 0x2b4c870,3, 0x2b60000,518, 0x2b60900,45, 0x2b60a00,45, 0x2b60b00,45, 0x2b60c00,45, 0x2b60d00,45, 0x2b60e00,45, 0x2b60f00,45, 0x2b61000,45, 0x2b61800,9, 0x2b61840,364, 0x2b61e00,19, 0x2b62000,9, 0x2b62040,364, 0x2b62600,19, 0x2b62800,6, 0x2b62820,3, 0x2b62840,7, 0x2b62880,6, 0x2b628a0,3, 0x2b628c0,7, 0x2b62900,1, 0x2b62908,3, 0x2b62918,8, 0x2b62940,7, 0x2b63000,2, 0x2b63800,18, 0x2b63880,18, 0x2b63c00,4, 0x2b63c20,7, 0x2b63d00,4, 0x2b63d80,20, 0x2b63e00,1, 0x2b64000,21, 0x2b64058,3, 0x2b64100,1, 0x2b64124,1, 0x2b6412c,5, 0x2b64144,1, 0x2b6414c,6, 0x2b64184,6, 0x2b641a4,6, 0x2b641c4,1, 0x2b641cc,1, 0x2b64400,9, 0x2b64440,9, 0x2b64480,15, 0x2b644c0,15, 0x2b64500,15, 0x2b64540,15, 0x2b64580,15, 0x2b645c0,15, 0x2b64600,15, 0x2b64640,15, 0x2b64680,59, 0x2b64800,1, 0x2b64808,16, 0x2b64850,1, 0x2b64858,7, 0x2b68000,3, 0x2b68010,1, 0x2b68018,3, 0x2b6a000,4, 0x2b6a080,19, 0x2b6a100,12, 0x2b6a200,4, 0x2b6a280,19, 0x2b6a300,12, 0x2b6a400,2, 0x2b6a600,124, 0x2b6a800,4, 0x2b6a880,18, 0x2b6a900,4, 0x2b6a980,23, 0x2b6aa00,10, 0x2b6aa2c,2, 0x2b6aa40,2, 0x2b6aa4c,3, 0x2b6aa60,2, 0x2b6aa6c,3, 0x2b6aa80,2, 0x2b6aa8c,2, 0x2b6aaa0,2, 0x2b6aaac,2, 0x2b6aac0,2, 0x2b6aacc,2, 0x2b6ab00,4, 0x2b6ab40,15, 0x2b6ab80,3, 0x2b6ab90,7, 0x2b6abb0,3, 0x2b6abc0,3, 0x2b6abd0,3, 0x2b6abe0,1, 0x2b6ac00,17, 0x2b6ae00,15, 0x2b6ae40,4, 0x2b6ae60,17, 0x2b6aec0,6, 0x2b6aee0,4, 0x2b6aef4,11, 0x2b6af24,28, 0x2b6b000,1, 0x2b6b080,1, 0x2b6b0a0,5, 0x2b6b0c0,5, 0x2b6b0e0,5, 0x2b6b100,1, 0x2b6b120,5, 0x2b6b140,5, 0x2b6b160,5, 0x2b6b180,24, 0x2b6b200,5, 0x2b6c000,20, 0x2b70000,518, 0x2b70900,45, 0x2b70a00,45, 0x2b70b00,45, 0x2b70c00,45, 0x2b70d00,45, 0x2b70e00,45, 0x2b70f00,45, 0x2b71000,45, 0x2b71800,9, 0x2b71840,364, 0x2b71e00,19, 0x2b72000,9, 0x2b72040,364, 0x2b72600,19, 0x2b72800,6, 0x2b72820,3, 0x2b72840,7, 0x2b72880,6, 0x2b728a0,3, 0x2b728c0,7, 0x2b72900,1, 0x2b72908,3, 0x2b72918,8, 0x2b72940,7, 0x2b73000,2, 0x2b73800,18, 0x2b73880,18, 0x2b73c00,4, 0x2b73c20,7, 0x2b73d00,4, 0x2b73d80,20, 0x2b73e00,1, 0x2b74000,21, 0x2b74058,3, 0x2b74100,1, 0x2b74124,1, 0x2b7412c,5, 0x2b74144,1, 0x2b7414c,6, 0x2b74184,6, 0x2b741a4,6, 0x2b741c4,1, 0x2b741cc,1, 0x2b74400,9, 0x2b74440,9, 0x2b74480,15, 0x2b744c0,15, 0x2b74500,15, 0x2b74540,15, 0x2b74580,15, 0x2b745c0,15, 0x2b74600,15, 0x2b74640,15, 0x2b74680,59, 0x2b74800,1, 0x2b74808,16, 0x2b74850,1, 0x2b74858,7, 0x2b78000,3, 0x2b78010,1, 0x2b78018,3, 0x2b7a000,4, 0x2b7a080,19, 0x2b7a100,12, 0x2b7a200,4, 0x2b7a280,19, 0x2b7a300,12, 0x2b7a400,2, 0x2b7a600,124, 0x2b7a800,4, 0x2b7a880,18, 0x2b7a900,4, 0x2b7a980,23, 0x2b7aa00,10, 0x2b7aa2c,2, 0x2b7aa40,2, 0x2b7aa4c,3, 0x2b7aa60,2, 0x2b7aa6c,3, 0x2b7aa80,2, 0x2b7aa8c,2, 0x2b7aaa0,2, 0x2b7aaac,2, 0x2b7aac0,2, 0x2b7aacc,2, 0x2b7ab00,4, 0x2b7ab40,15, 0x2b7ab80,3, 0x2b7ab90,7, 0x2b7abb0,3, 0x2b7abc0,3, 0x2b7abd0,3, 0x2b7abe0,1, 0x2b7ac00,17, 0x2b7ae00,15, 0x2b7ae40,4, 0x2b7ae60,17, 0x2b7aec0,6, 0x2b7aee0,4, 0x2b7aef4,11, 0x2b7af24,28, 0x2b7b000,1, 0x2b7b080,1, 0x2b7b0a0,5, 0x2b7b0c0,5, 0x2b7b0e0,5, 0x2b7b100,1, 0x2b7b120,5, 0x2b7b140,5, 0x2b7b160,5, 0x2b7b180,24, 0x2b7b200,5, 0x2b7c000,20, 0x2b80000,18, 0x2b80050,3, 0x2b80060,3, 0x2b80070,14, 0x2b800c0,5, 0x2b80400,13, 0x2b80440,2, 0x2b8044c,3, 0x2b80460,2, 0x2b80480,13, 0x2b804c0,2, 0x2b804cc,3, 0x2b804e0,2, 0x2b80500,1, 0x2b80508,16, 0x2b80560,2, 0x2b8056c,3, 0x2b80600,4, 0x2b80680,19, 0x2b80800,24, 0x2b80864,2, 0x2b80870,4, 0x2b80a00,27, 0x2b80a80,4, 0x2b80ac0,25, 0x2b80b40,6, 0x2b80b60,4, 0x2b80b74,11, 0x2b80ba4,8, 0x2b80c00,3, 0x2b80c10,3, 0x2b80c20,1, 0x2b80c40,11, 0x2b80c80,23, 0x2b80ce0,15, 0x2b80d20,15, 0x2b80d60,2, 0x2b80d6c,2, 0x2b80d80,1, 0x2b81000,18, 0x2b81050,3, 0x2b81060,3, 0x2b81070,14, 0x2b810c0,5, 0x2b81400,13, 0x2b81440,2, 0x2b8144c,3, 0x2b81460,2, 0x2b81480,13, 0x2b814c0,2, 0x2b814cc,3, 0x2b814e0,2, 0x2b81500,1, 0x2b81508,16, 0x2b81560,2, 0x2b8156c,3, 0x2b81600,4, 0x2b81680,19, 0x2b81800,24, 0x2b81864,2, 0x2b81870,4, 0x2b81a00,27, 0x2b81a80,4, 0x2b81ac0,25, 0x2b81b40,6, 0x2b81b60,4, 0x2b81b74,11, 0x2b81ba4,8, 0x2b81c00,3, 0x2b81c10,3, 0x2b81c20,1, 0x2b81c40,11, 0x2b81c80,23, 0x2b81ce0,15, 0x2b81d20,15, 0x2b81d60,2, 0x2b81d6c,2, 0x2b81d80,1, 0x2b82000,20, 0x2b82080,7, 0x2b820a0,1, 0x2b820b0,1, 0x2b820b8,2, 0x2b84000,14, 0x2c00000,534, 0x2c01000,2, 0x2c01040,9, 0x2c01080,7, 0x2c02000,534, 0x2c03000,12, 0x2c03044,6, 0x2c03080,8, 0x2c030a4,1, 0x2c030c0,7, 0x2c030e0,7, 0x2c03100,7, 0x2c03120,7, 0x2c03140,8, 0x2c03164,6, 0x2c03180,12, 0x2c04000,534, 0x2c05000,2, 0x2c05040,9, 0x2c05080,7, 0x2c06000,534, 0x2c07000,12, 0x2c07044,6, 0x2c07080,8, 0x2c070a4,1, 0x2c070c0,7, 0x2c070e0,7, 0x2c07100,7, 0x2c07120,7, 0x2c07140,8, 0x2c07164,6, 0x2c07180,12, 0x2c08004,5, 0x2c08200,27, 0x2c08280,4, 0x2c082c0,25, 0x2c08340,6, 0x2c08360,4, 0x2c08374,11, 0x2c083a4,5, 0x2c08400,1, 0x2c10000,397, 0x2c10800,93, 0x2c10980,6, 0x2c10a00,41, 0x2c10b00,2, 0x2c10b20,19, 0x2c10c00,25, 0x2c10c80,1, 0x2c10d00,28, 0x2c10d80,1, 0x2c11000,397, 0x2c11800,93, 0x2c11980,6, 0x2c11a00,41, 0x2c11b00,2, 0x2c11b20,19, 0x2c11c00,25, 0x2c11c80,1, 0x2c11d00,28, 0x2c11d80,1, 0x2c12000,7, 0x2c12040,9, 0x2c12080,4, 0x2c120a0,5, 0x2c120c0,2, 0x2c14000,3, 0x2c14010,6, 0x2c14200,7, 0x2c14220,6, 0x2c14240,7, 0x2c14260,6, 0x2c14280,2, 0x2c1428c,2, 0x2c142a0,2, 0x2c142ac,2, 0x2c142c0,7, 0x2c142e0,7, 0x2c14300,2, 0x2c1430c,2, 0x2c14320,6, 0x2c14340,7, 0x2c14360,6, 0x2c14380,6, 0x2c143a0,7, 0x2c143c0,6, 0x2c143e0,6, 0x2c14400,3, 0x2c14440,12, 0x2c14484,1, 0x2c144c0,16, 0x2c14800,7, 0x2c14820,14, 0x2c14880,9, 0x2c148a8,12, 0x2c14900,7, 0x2c14920,14, 0x2c14980,9, 0x2c149a8,12, 0x2c14a00,10, 0x2c14a40,2, 0x2c14a4c,3, 0x2c14c00,5, 0x2c14c20,1, 0x2c14c28,3, 0x2c20000,534, 0x2c21000,2, 0x2c21040,9, 0x2c21080,7, 0x2c22000,534, 0x2c23000,12, 0x2c23044,6, 0x2c23080,8, 0x2c230a4,1, 0x2c230c0,7, 0x2c230e0,7, 0x2c23100,7, 0x2c23120,7, 0x2c23140,8, 0x2c23164,6, 0x2c23180,12, 0x2c24000,534, 0x2c25000,2, 0x2c25040,9, 0x2c25080,7, 0x2c26000,534, 0x2c27000,12, 0x2c27044,6, 0x2c27080,8, 0x2c270a4,1, 0x2c270c0,7, 0x2c270e0,7, 0x2c27100,7, 0x2c27120,7, 0x2c27140,8, 0x2c27164,6, 0x2c27180,12, 0x2c28004,5, 0x2c28200,27, 0x2c28280,4, 0x2c282c0,25, 0x2c28340,6, 0x2c28360,4, 0x2c28374,11, 0x2c283a4,5, 0x2c28400,1, 0x2c30000,397, 0x2c30800,93, 0x2c30980,6, 0x2c30a00,41, 0x2c30b00,2, 0x2c30b20,19, 0x2c30c00,25, 0x2c30c80,1, 0x2c30d00,28, 0x2c30d80,1, 0x2c31000,397, 0x2c31800,93, 0x2c31980,6, 0x2c31a00,41, 0x2c31b00,2, 0x2c31b20,19, 0x2c31c00,25, 0x2c31c80,1, 0x2c31d00,28, 0x2c31d80,1, 0x2c32000,7, 0x2c32040,9, 0x2c32080,4, 0x2c320a0,5, 0x2c320c0,2, 0x2c34000,3, 0x2c34010,6, 0x2c34200,7, 0x2c34220,6, 0x2c34240,7, 0x2c34260,6, 0x2c34280,2, 0x2c3428c,2, 0x2c342a0,2, 0x2c342ac,2, 0x2c342c0,7, 0x2c342e0,7, 0x2c34300,2, 0x2c3430c,2, 0x2c34320,6, 0x2c34340,7, 0x2c34360,6, 0x2c34380,6, 0x2c343a0,7, 0x2c343c0,6, 0x2c343e0,6, 0x2c34400,3, 0x2c34440,12, 0x2c34484,1, 0x2c344c0,16, 0x2c34800,7, 0x2c34820,14, 0x2c34880,9, 0x2c348a8,12, 0x2c34900,7, 0x2c34920,14, 0x2c34980,9, 0x2c349a8,12, 0x2c34a00,10, 0x2c34a40,2, 0x2c34a4c,3, 0x2c34c00,5, 0x2c34c20,1, 0x2c34c28,3, 0x2c40000,37, 0x2c40100,3, 0x2c40110,15, 0x2c40200,37, 0x2c40300,3, 0x2c40310,15, 0x2c40400,5, 0x2c40420,5, 0x2c40440,18, 0x2c40800,3, 0x2c40810,2, 0x2c40820,3, 0x2c40830,2, 0x2c40840,1, 0x2c41000,12, 0x2c41040,12, 0x2c41080,2, 0x2c41100,19, 0x2c41180,19, 0x2c41200,26, 0x2c41400,20, 0x2c41480,20, 0x2c41500,8, 0x2c41540,4, 0x2c41580,15, 0x2c415c0,15, 0x2c41600,9, 0x2c41630,5, 0x2c42000,37, 0x2c42100,3, 0x2c42110,15, 0x2c42200,37, 0x2c42300,3, 0x2c42310,15, 0x2c42400,5, 0x2c42420,5, 0x2c42440,18, 0x2c42800,3, 0x2c42810,2, 0x2c42820,3, 0x2c42830,2, 0x2c42840,1, 0x2c43000,12, 0x2c43040,12, 0x2c43080,2, 0x2c43100,19, 0x2c43180,19, 0x2c43200,26, 0x2c43400,20, 0x2c43480,20, 0x2c43500,8, 0x2c43540,4, 0x2c43580,15, 0x2c435c0,15, 0x2c43600,9, 0x2c43630,5, 0x2c44000,6, 0x2c44020,1, 0x2c4402c,3, 0x2c44040,11, 0x2c44070,3, 0x2c44080,2, 0x2c48000,49, 0x2c48100,12, 0x2c48140,4, 0x2c48184,1, 0x2c48198,2, 0x2c481a4,1, 0x2c481b8,7, 0x2c481e0,4, 0x2c48200,20, 0x2c48280,3, 0x2c48290,9, 0x2c482c0,6, 0x2c482e0,1, 0x2c482e8,7, 0x2c48400,49, 0x2c48500,12, 0x2c48540,4, 0x2c48584,1, 0x2c48598,2, 0x2c485a4,1, 0x2c485b8,7, 0x2c485e0,4, 0x2c48600,20, 0x2c48680,3, 0x2c48690,9, 0x2c486c0,6, 0x2c486e0,1, 0x2c486e8,7, 0x2c48800,49, 0x2c48900,12, 0x2c48940,4, 0x2c48984,1, 0x2c48998,2, 0x2c489a4,1, 0x2c489b8,7, 0x2c489e0,4, 0x2c48a00,20, 0x2c48a80,3, 0x2c48a90,9, 0x2c48ac0,6, 0x2c48ae0,1, 0x2c48ae8,7, 0x2c48c00,49, 0x2c48d00,12, 0x2c48d40,4, 0x2c48d84,1, 0x2c48d98,2, 0x2c48da4,1, 0x2c48db8,7, 0x2c48de0,4, 0x2c48e00,20, 0x2c48e80,3, 0x2c48e90,9, 0x2c48ec0,6, 0x2c48ee0,1, 0x2c48ee8,7, 0x2c49000,49, 0x2c49100,12, 0x2c49140,4, 0x2c49184,1, 0x2c49198,2, 0x2c491a4,1, 0x2c491b8,7, 0x2c491e0,4, 0x2c49200,20, 0x2c49280,3, 0x2c49290,9, 0x2c492c0,6, 0x2c492e0,1, 0x2c492e8,7, 0x2c49400,49, 0x2c49500,12, 0x2c49540,4, 0x2c49584,1, 0x2c49598,2, 0x2c495a4,1, 0x2c495b8,7, 0x2c495e0,4, 0x2c49600,20, 0x2c49680,3, 0x2c49690,9, 0x2c496c0,6, 0x2c496e0,1, 0x2c496e8,7, 0x2c49800,49, 0x2c49900,12, 0x2c49940,4, 0x2c49984,1, 0x2c49998,2, 0x2c499a4,1, 0x2c499b8,7, 0x2c499e0,4, 0x2c49a00,20, 0x2c49a80,3, 0x2c49a90,9, 0x2c49ac0,6, 0x2c49ae0,1, 0x2c49ae8,7, 0x2c4a000,20, 0x2c4a080,2, 0x2c4a100,20, 0x2c4a180,2, 0x2c4a200,4, 0x2c4a400,20, 0x2c4a480,2, 0x2c4a500,20, 0x2c4a580,2, 0x2c4a600,4, 0x2c4a800,3, 0x2c4a840,12, 0x2c4a880,12, 0x2c4a8c0,12, 0x2c4a900,12, 0x2c4a940,12, 0x2c4a980,12, 0x2c4a9c0,12, 0x2c4aa00,12, 0x2c4ac00,12, 0x2c4ac40,7, 0x2c4ac60,10, 0x2c4b004,1, 0x2c4b018,40, 0x2c4b100,7, 0x2c4b120,7, 0x2c4b140,2, 0x2c4b14c,2, 0x2c4b160,2, 0x2c4b16c,2, 0x2c4b180,18, 0x2c4b200,2, 0x2c4b220,10, 0x2c4b260,20, 0x2c4b2c0,7, 0x2c4b300,15, 0x2c4b340,9, 0x2c4b380,6, 0x2c4b3a0,4, 0x2c4b400,4, 0x2c4c000,106, 0x2c4c200,2, 0x2c4c240,9, 0x2c4c280,7, 0x2c4c400,106, 0x2c4c604,6, 0x2c4c700,15, 0x2c4c740,9, 0x2c4c780,6, 0x2c4c7a0,6, 0x2c4c800,8, 0x2c4c824,1, 0x2c4c830,15, 0x2c4c870,3, 0x2c60000,518, 0x2c60900,45, 0x2c60a00,45, 0x2c60b00,45, 0x2c60c00,45, 0x2c60d00,45, 0x2c60e00,45, 0x2c60f00,45, 0x2c61000,45, 0x2c61800,9, 0x2c61840,364, 0x2c61e00,19, 0x2c62000,9, 0x2c62040,364, 0x2c62600,19, 0x2c62800,6, 0x2c62820,3, 0x2c62840,7, 0x2c62880,6, 0x2c628a0,3, 0x2c628c0,7, 0x2c62900,1, 0x2c62908,3, 0x2c62918,8, 0x2c62940,7, 0x2c63000,2, 0x2c63800,18, 0x2c63880,18, 0x2c63c00,4, 0x2c63c20,7, 0x2c63d00,4, 0x2c63d80,20, 0x2c63e00,1, 0x2c64000,21, 0x2c64058,3, 0x2c64100,1, 0x2c64124,1, 0x2c6412c,5, 0x2c64144,1, 0x2c6414c,6, 0x2c64184,6, 0x2c641a4,6, 0x2c641c4,1, 0x2c641cc,1, 0x2c64400,9, 0x2c64440,9, 0x2c64480,15, 0x2c644c0,15, 0x2c64500,15, 0x2c64540,15, 0x2c64580,15, 0x2c645c0,15, 0x2c64600,15, 0x2c64640,15, 0x2c64680,59, 0x2c64800,1, 0x2c64808,16, 0x2c64850,1, 0x2c64858,7, 0x2c68000,3, 0x2c68010,1, 0x2c68018,3, 0x2c6a000,4, 0x2c6a080,19, 0x2c6a100,12, 0x2c6a200,4, 0x2c6a280,19, 0x2c6a300,12, 0x2c6a400,2, 0x2c6a600,124, 0x2c6a800,4, 0x2c6a880,18, 0x2c6a900,4, 0x2c6a980,23, 0x2c6aa00,10, 0x2c6aa2c,2, 0x2c6aa40,2, 0x2c6aa4c,3, 0x2c6aa60,2, 0x2c6aa6c,3, 0x2c6aa80,2, 0x2c6aa8c,2, 0x2c6aaa0,2, 0x2c6aaac,2, 0x2c6aac0,2, 0x2c6aacc,2, 0x2c6ab00,4, 0x2c6ab40,15, 0x2c6ab80,3, 0x2c6ab90,7, 0x2c6abb0,3, 0x2c6abc0,3, 0x2c6abd0,3, 0x2c6abe0,1, 0x2c6ac00,17, 0x2c6ae00,15, 0x2c6ae40,4, 0x2c6ae60,17, 0x2c6aec0,6, 0x2c6aee0,4, 0x2c6aef4,11, 0x2c6af24,28, 0x2c6b000,1, 0x2c6b080,1, 0x2c6b0a0,5, 0x2c6b0c0,5, 0x2c6b0e0,5, 0x2c6b100,1, 0x2c6b120,5, 0x2c6b140,5, 0x2c6b160,5, 0x2c6b180,24, 0x2c6b200,5, 0x2c6c000,20, 0x2c70000,518, 0x2c70900,45, 0x2c70a00,45, 0x2c70b00,45, 0x2c70c00,45, 0x2c70d00,45, 0x2c70e00,45, 0x2c70f00,45, 0x2c71000,45, 0x2c71800,9, 0x2c71840,364, 0x2c71e00,19, 0x2c72000,9, 0x2c72040,364, 0x2c72600,19, 0x2c72800,6, 0x2c72820,3, 0x2c72840,7, 0x2c72880,6, 0x2c728a0,3, 0x2c728c0,7, 0x2c72900,1, 0x2c72908,3, 0x2c72918,8, 0x2c72940,7, 0x2c73000,2, 0x2c73800,18, 0x2c73880,18, 0x2c73c00,4, 0x2c73c20,7, 0x2c73d00,4, 0x2c73d80,20, 0x2c73e00,1, 0x2c74000,21, 0x2c74058,3, 0x2c74100,1, 0x2c74124,1, 0x2c7412c,5, 0x2c74144,1, 0x2c7414c,6, 0x2c74184,6, 0x2c741a4,6, 0x2c741c4,1, 0x2c741cc,1, 0x2c74400,9, 0x2c74440,9, 0x2c74480,15, 0x2c744c0,15, 0x2c74500,15, 0x2c74540,15, 0x2c74580,15, 0x2c745c0,15, 0x2c74600,15, 0x2c74640,15, 0x2c74680,59, 0x2c74800,1, 0x2c74808,16, 0x2c74850,1, 0x2c74858,7, 0x2c78000,3, 0x2c78010,1, 0x2c78018,3, 0x2c7a000,4, 0x2c7a080,19, 0x2c7a100,12, 0x2c7a200,4, 0x2c7a280,19, 0x2c7a300,12, 0x2c7a400,2, 0x2c7a600,124, 0x2c7a800,4, 0x2c7a880,18, 0x2c7a900,4, 0x2c7a980,23, 0x2c7aa00,10, 0x2c7aa2c,2, 0x2c7aa40,2, 0x2c7aa4c,3, 0x2c7aa60,2, 0x2c7aa6c,3, 0x2c7aa80,2, 0x2c7aa8c,2, 0x2c7aaa0,2, 0x2c7aaac,2, 0x2c7aac0,2, 0x2c7aacc,2, 0x2c7ab00,4, 0x2c7ab40,15, 0x2c7ab80,3, 0x2c7ab90,7, 0x2c7abb0,3, 0x2c7abc0,3, 0x2c7abd0,3, 0x2c7abe0,1, 0x2c7ac00,17, 0x2c7ae00,15, 0x2c7ae40,4, 0x2c7ae60,17, 0x2c7aec0,6, 0x2c7aee0,4, 0x2c7aef4,11, 0x2c7af24,28, 0x2c7b000,1, 0x2c7b080,1, 0x2c7b0a0,5, 0x2c7b0c0,5, 0x2c7b0e0,5, 0x2c7b100,1, 0x2c7b120,5, 0x2c7b140,5, 0x2c7b160,5, 0x2c7b180,24, 0x2c7b200,5, 0x2c7c000,20, 0x2c80000,18, 0x2c80050,3, 0x2c80060,3, 0x2c80070,14, 0x2c800c0,5, 0x2c80400,13, 0x2c80440,2, 0x2c8044c,3, 0x2c80460,2, 0x2c80480,13, 0x2c804c0,2, 0x2c804cc,3, 0x2c804e0,2, 0x2c80500,1, 0x2c80508,16, 0x2c80560,2, 0x2c8056c,3, 0x2c80600,4, 0x2c80680,19, 0x2c80800,24, 0x2c80864,2, 0x2c80870,4, 0x2c80a00,27, 0x2c80a80,4, 0x2c80ac0,25, 0x2c80b40,6, 0x2c80b60,4, 0x2c80b74,11, 0x2c80ba4,8, 0x2c80c00,3, 0x2c80c10,3, 0x2c80c20,1, 0x2c80c40,11, 0x2c80c80,23, 0x2c80ce0,15, 0x2c80d20,15, 0x2c80d60,2, 0x2c80d6c,2, 0x2c80d80,1, 0x2c81000,18, 0x2c81050,3, 0x2c81060,3, 0x2c81070,14, 0x2c810c0,5, 0x2c81400,13, 0x2c81440,2, 0x2c8144c,3, 0x2c81460,2, 0x2c81480,13, 0x2c814c0,2, 0x2c814cc,3, 0x2c814e0,2, 0x2c81500,1, 0x2c81508,16, 0x2c81560,2, 0x2c8156c,3, 0x2c81600,4, 0x2c81680,19, 0x2c81800,24, 0x2c81864,2, 0x2c81870,4, 0x2c81a00,27, 0x2c81a80,4, 0x2c81ac0,25, 0x2c81b40,6, 0x2c81b60,4, 0x2c81b74,11, 0x2c81ba4,8, 0x2c81c00,3, 0x2c81c10,3, 0x2c81c20,1, 0x2c81c40,11, 0x2c81c80,23, 0x2c81ce0,15, 0x2c81d20,15, 0x2c81d60,2, 0x2c81d6c,2, 0x2c81d80,1, 0x2c82000,20, 0x2c82080,7, 0x2c820a0,1, 0x2c820b0,1, 0x2c820b8,2, 0x2c84000,14, 0x2d00000,534, 0x2d01000,2, 0x2d01040,9, 0x2d01080,7, 0x2d02000,534, 0x2d03000,12, 0x2d03044,6, 0x2d03080,8, 0x2d030a4,1, 0x2d030c0,7, 0x2d030e0,7, 0x2d03100,7, 0x2d03120,7, 0x2d03140,8, 0x2d03164,6, 0x2d03180,12, 0x2d04000,534, 0x2d05000,2, 0x2d05040,9, 0x2d05080,7, 0x2d06000,534, 0x2d07000,12, 0x2d07044,6, 0x2d07080,8, 0x2d070a4,1, 0x2d070c0,7, 0x2d070e0,7, 0x2d07100,7, 0x2d07120,7, 0x2d07140,8, 0x2d07164,6, 0x2d07180,12, 0x2d08004,5, 0x2d08200,27, 0x2d08280,4, 0x2d082c0,25, 0x2d08340,6, 0x2d08360,4, 0x2d08374,11, 0x2d083a4,5, 0x2d08400,1, 0x2d10000,397, 0x2d10800,93, 0x2d10980,6, 0x2d10a00,41, 0x2d10b00,2, 0x2d10b20,19, 0x2d10c00,25, 0x2d10c80,1, 0x2d10d00,28, 0x2d10d80,1, 0x2d11000,397, 0x2d11800,93, 0x2d11980,6, 0x2d11a00,41, 0x2d11b00,2, 0x2d11b20,19, 0x2d11c00,25, 0x2d11c80,1, 0x2d11d00,28, 0x2d11d80,1, 0x2d12000,7, 0x2d12040,9, 0x2d12080,4, 0x2d120a0,5, 0x2d120c0,2, 0x2d14000,3, 0x2d14010,6, 0x2d14200,7, 0x2d14220,6, 0x2d14240,7, 0x2d14260,6, 0x2d14280,2, 0x2d1428c,2, 0x2d142a0,2, 0x2d142ac,2, 0x2d142c0,7, 0x2d142e0,7, 0x2d14300,2, 0x2d1430c,2, 0x2d14320,6, 0x2d14340,7, 0x2d14360,6, 0x2d14380,6, 0x2d143a0,7, 0x2d143c0,6, 0x2d143e0,6, 0x2d14400,3, 0x2d14440,12, 0x2d14484,1, 0x2d144c0,16, 0x2d14800,7, 0x2d14820,14, 0x2d14880,9, 0x2d148a8,12, 0x2d14900,7, 0x2d14920,14, 0x2d14980,9, 0x2d149a8,12, 0x2d14a00,10, 0x2d14a40,2, 0x2d14a4c,3, 0x2d14c00,5, 0x2d14c20,1, 0x2d14c28,3, 0x2d20000,534, 0x2d21000,2, 0x2d21040,9, 0x2d21080,7, 0x2d22000,534, 0x2d23000,12, 0x2d23044,6, 0x2d23080,8, 0x2d230a4,1, 0x2d230c0,7, 0x2d230e0,7, 0x2d23100,7, 0x2d23120,7, 0x2d23140,8, 0x2d23164,6, 0x2d23180,12, 0x2d24000,534, 0x2d25000,2, 0x2d25040,9, 0x2d25080,7, 0x2d26000,534, 0x2d27000,12, 0x2d27044,6, 0x2d27080,8, 0x2d270a4,1, 0x2d270c0,7, 0x2d270e0,7, 0x2d27100,7, 0x2d27120,7, 0x2d27140,8, 0x2d27164,6, 0x2d27180,12, 0x2d28004,5, 0x2d28200,27, 0x2d28280,4, 0x2d282c0,25, 0x2d28340,6, 0x2d28360,4, 0x2d28374,11, 0x2d283a4,5, 0x2d28400,1, 0x2d30000,397, 0x2d30800,93, 0x2d30980,6, 0x2d30a00,41, 0x2d30b00,2, 0x2d30b20,19, 0x2d30c00,25, 0x2d30c80,1, 0x2d30d00,28, 0x2d30d80,1, 0x2d31000,397, 0x2d31800,93, 0x2d31980,6, 0x2d31a00,41, 0x2d31b00,2, 0x2d31b20,19, 0x2d31c00,25, 0x2d31c80,1, 0x2d31d00,28, 0x2d31d80,1, 0x2d32000,7, 0x2d32040,9, 0x2d32080,4, 0x2d320a0,5, 0x2d320c0,2, 0x2d34000,3, 0x2d34010,6, 0x2d34200,7, 0x2d34220,6, 0x2d34240,7, 0x2d34260,6, 0x2d34280,2, 0x2d3428c,2, 0x2d342a0,2, 0x2d342ac,2, 0x2d342c0,7, 0x2d342e0,7, 0x2d34300,2, 0x2d3430c,2, 0x2d34320,6, 0x2d34340,7, 0x2d34360,6, 0x2d34380,6, 0x2d343a0,7, 0x2d343c0,6, 0x2d343e0,6, 0x2d34400,3, 0x2d34440,12, 0x2d34484,1, 0x2d344c0,16, 0x2d34800,7, 0x2d34820,14, 0x2d34880,9, 0x2d348a8,12, 0x2d34900,7, 0x2d34920,14, 0x2d34980,9, 0x2d349a8,12, 0x2d34a00,10, 0x2d34a40,2, 0x2d34a4c,3, 0x2d34c00,5, 0x2d34c20,1, 0x2d34c28,3, 0x2d40000,37, 0x2d40100,3, 0x2d40110,15, 0x2d40200,37, 0x2d40300,3, 0x2d40310,15, 0x2d40400,5, 0x2d40420,5, 0x2d40440,18, 0x2d40800,3, 0x2d40810,2, 0x2d40820,3, 0x2d40830,2, 0x2d40840,1, 0x2d41000,12, 0x2d41040,12, 0x2d41080,2, 0x2d41100,19, 0x2d41180,19, 0x2d41200,26, 0x2d41400,20, 0x2d41480,20, 0x2d41500,8, 0x2d41540,4, 0x2d41580,15, 0x2d415c0,15, 0x2d41600,9, 0x2d41630,5, 0x2d42000,37, 0x2d42100,3, 0x2d42110,15, 0x2d42200,37, 0x2d42300,3, 0x2d42310,15, 0x2d42400,5, 0x2d42420,5, 0x2d42440,18, 0x2d42800,3, 0x2d42810,2, 0x2d42820,3, 0x2d42830,2, 0x2d42840,1, 0x2d43000,12, 0x2d43040,12, 0x2d43080,2, 0x2d43100,19, 0x2d43180,19, 0x2d43200,26, 0x2d43400,20, 0x2d43480,20, 0x2d43500,8, 0x2d43540,4, 0x2d43580,15, 0x2d435c0,15, 0x2d43600,9, 0x2d43630,5, 0x2d44000,6, 0x2d44020,1, 0x2d4402c,3, 0x2d44040,11, 0x2d44070,3, 0x2d44080,2, 0x2d48000,49, 0x2d48100,12, 0x2d48140,4, 0x2d48184,1, 0x2d48198,2, 0x2d481a4,1, 0x2d481b8,7, 0x2d481e0,4, 0x2d48200,20, 0x2d48280,3, 0x2d48290,9, 0x2d482c0,6, 0x2d482e0,1, 0x2d482e8,7, 0x2d48400,49, 0x2d48500,12, 0x2d48540,4, 0x2d48584,1, 0x2d48598,2, 0x2d485a4,1, 0x2d485b8,7, 0x2d485e0,4, 0x2d48600,20, 0x2d48680,3, 0x2d48690,9, 0x2d486c0,6, 0x2d486e0,1, 0x2d486e8,7, 0x2d48800,49, 0x2d48900,12, 0x2d48940,4, 0x2d48984,1, 0x2d48998,2, 0x2d489a4,1, 0x2d489b8,7, 0x2d489e0,4, 0x2d48a00,20, 0x2d48a80,3, 0x2d48a90,9, 0x2d48ac0,6, 0x2d48ae0,1, 0x2d48ae8,7, 0x2d48c00,49, 0x2d48d00,12, 0x2d48d40,4, 0x2d48d84,1, 0x2d48d98,2, 0x2d48da4,1, 0x2d48db8,7, 0x2d48de0,4, 0x2d48e00,20, 0x2d48e80,3, 0x2d48e90,9, 0x2d48ec0,6, 0x2d48ee0,1, 0x2d48ee8,7, 0x2d49000,49, 0x2d49100,12, 0x2d49140,4, 0x2d49184,1, 0x2d49198,2, 0x2d491a4,1, 0x2d491b8,7, 0x2d491e0,4, 0x2d49200,20, 0x2d49280,3, 0x2d49290,9, 0x2d492c0,6, 0x2d492e0,1, 0x2d492e8,7, 0x2d49400,49, 0x2d49500,12, 0x2d49540,4, 0x2d49584,1, 0x2d49598,2, 0x2d495a4,1, 0x2d495b8,7, 0x2d495e0,4, 0x2d49600,20, 0x2d49680,3, 0x2d49690,9, 0x2d496c0,6, 0x2d496e0,1, 0x2d496e8,7, 0x2d49800,49, 0x2d49900,12, 0x2d49940,4, 0x2d49984,1, 0x2d49998,2, 0x2d499a4,1, 0x2d499b8,7, 0x2d499e0,4, 0x2d49a00,20, 0x2d49a80,3, 0x2d49a90,9, 0x2d49ac0,6, 0x2d49ae0,1, 0x2d49ae8,7, 0x2d4a000,20, 0x2d4a080,2, 0x2d4a100,20, 0x2d4a180,2, 0x2d4a200,4, 0x2d4a400,20, 0x2d4a480,2, 0x2d4a500,20, 0x2d4a580,2, 0x2d4a600,4, 0x2d4a800,3, 0x2d4a840,12, 0x2d4a880,12, 0x2d4a8c0,12, 0x2d4a900,12, 0x2d4a940,12, 0x2d4a980,12, 0x2d4a9c0,12, 0x2d4aa00,12, 0x2d4ac00,12, 0x2d4ac40,7, 0x2d4ac60,10, 0x2d4b004,1, 0x2d4b018,40, 0x2d4b100,7, 0x2d4b120,7, 0x2d4b140,2, 0x2d4b14c,2, 0x2d4b160,2, 0x2d4b16c,2, 0x2d4b180,18, 0x2d4b200,2, 0x2d4b220,10, 0x2d4b260,20, 0x2d4b2c0,7, 0x2d4b300,15, 0x2d4b340,9, 0x2d4b380,6, 0x2d4b3a0,4, 0x2d4b400,4, 0x2d4c000,106, 0x2d4c200,2, 0x2d4c240,9, 0x2d4c280,7, 0x2d4c400,106, 0x2d4c604,6, 0x2d4c700,15, 0x2d4c740,9, 0x2d4c780,6, 0x2d4c7a0,6, 0x2d4c800,8, 0x2d4c824,1, 0x2d4c830,15, 0x2d4c870,3, 0x2d60000,518, 0x2d60900,45, 0x2d60a00,45, 0x2d60b00,45, 0x2d60c00,45, 0x2d60d00,45, 0x2d60e00,45, 0x2d60f00,45, 0x2d61000,45, 0x2d61800,9, 0x2d61840,364, 0x2d61e00,19, 0x2d62000,9, 0x2d62040,364, 0x2d62600,19, 0x2d62800,6, 0x2d62820,3, 0x2d62840,7, 0x2d62880,6, 0x2d628a0,3, 0x2d628c0,7, 0x2d62900,1, 0x2d62908,3, 0x2d62918,8, 0x2d62940,7, 0x2d63000,2, 0x2d63800,18, 0x2d63880,18, 0x2d63c00,4, 0x2d63c20,7, 0x2d63d00,4, 0x2d63d80,20, 0x2d63e00,1, 0x2d64000,21, 0x2d64058,3, 0x2d64100,1, 0x2d64124,1, 0x2d6412c,5, 0x2d64144,1, 0x2d6414c,6, 0x2d64184,6, 0x2d641a4,6, 0x2d641c4,1, 0x2d641cc,1, 0x2d64400,9, 0x2d64440,9, 0x2d64480,15, 0x2d644c0,15, 0x2d64500,15, 0x2d64540,15, 0x2d64580,15, 0x2d645c0,15, 0x2d64600,15, 0x2d64640,15, 0x2d64680,59, 0x2d64800,1, 0x2d64808,16, 0x2d64850,1, 0x2d64858,7, 0x2d68000,3, 0x2d68010,1, 0x2d68018,3, 0x2d6a000,4, 0x2d6a080,19, 0x2d6a100,12, 0x2d6a200,4, 0x2d6a280,19, 0x2d6a300,12, 0x2d6a400,2, 0x2d6a600,124, 0x2d6a800,4, 0x2d6a880,18, 0x2d6a900,4, 0x2d6a980,23, 0x2d6aa00,10, 0x2d6aa2c,2, 0x2d6aa40,2, 0x2d6aa4c,3, 0x2d6aa60,2, 0x2d6aa6c,3, 0x2d6aa80,2, 0x2d6aa8c,2, 0x2d6aaa0,2, 0x2d6aaac,2, 0x2d6aac0,2, 0x2d6aacc,2, 0x2d6ab00,4, 0x2d6ab40,15, 0x2d6ab80,3, 0x2d6ab90,7, 0x2d6abb0,3, 0x2d6abc0,3, 0x2d6abd0,3, 0x2d6abe0,1, 0x2d6ac00,17, 0x2d6ae00,15, 0x2d6ae40,4, 0x2d6ae60,17, 0x2d6aec0,6, 0x2d6aee0,4, 0x2d6aef4,11, 0x2d6af24,28, 0x2d6b000,1, 0x2d6b080,1, 0x2d6b0a0,5, 0x2d6b0c0,5, 0x2d6b0e0,5, 0x2d6b100,1, 0x2d6b120,5, 0x2d6b140,5, 0x2d6b160,5, 0x2d6b180,24, 0x2d6b200,5, 0x2d6c000,20, 0x2d70000,518, 0x2d70900,45, 0x2d70a00,45, 0x2d70b00,45, 0x2d70c00,45, 0x2d70d00,45, 0x2d70e00,45, 0x2d70f00,45, 0x2d71000,45, 0x2d71800,9, 0x2d71840,364, 0x2d71e00,19, 0x2d72000,9, 0x2d72040,364, 0x2d72600,19, 0x2d72800,6, 0x2d72820,3, 0x2d72840,7, 0x2d72880,6, 0x2d728a0,3, 0x2d728c0,7, 0x2d72900,1, 0x2d72908,3, 0x2d72918,8, 0x2d72940,7, 0x2d73000,2, 0x2d73800,18, 0x2d73880,18, 0x2d73c00,4, 0x2d73c20,7, 0x2d73d00,4, 0x2d73d80,20, 0x2d73e00,1, 0x2d74000,21, 0x2d74058,3, 0x2d74100,1, 0x2d74124,1, 0x2d7412c,5, 0x2d74144,1, 0x2d7414c,6, 0x2d74184,6, 0x2d741a4,6, 0x2d741c4,1, 0x2d741cc,1, 0x2d74400,9, 0x2d74440,9, 0x2d74480,15, 0x2d744c0,15, 0x2d74500,15, 0x2d74540,15, 0x2d74580,15, 0x2d745c0,15, 0x2d74600,15, 0x2d74640,15, 0x2d74680,59, 0x2d74800,1, 0x2d74808,16, 0x2d74850,1, 0x2d74858,7, 0x2d78000,3, 0x2d78010,1, 0x2d78018,3, 0x2d7a000,4, 0x2d7a080,19, 0x2d7a100,12, 0x2d7a200,4, 0x2d7a280,19, 0x2d7a300,12, 0x2d7a400,2, 0x2d7a600,124, 0x2d7a800,4, 0x2d7a880,18, 0x2d7a900,4, 0x2d7a980,23, 0x2d7aa00,10, 0x2d7aa2c,2, 0x2d7aa40,2, 0x2d7aa4c,3, 0x2d7aa60,2, 0x2d7aa6c,3, 0x2d7aa80,2, 0x2d7aa8c,2, 0x2d7aaa0,2, 0x2d7aaac,2, 0x2d7aac0,2, 0x2d7aacc,2, 0x2d7ab00,4, 0x2d7ab40,15, 0x2d7ab80,3, 0x2d7ab90,7, 0x2d7abb0,3, 0x2d7abc0,3, 0x2d7abd0,3, 0x2d7abe0,1, 0x2d7ac00,17, 0x2d7ae00,15, 0x2d7ae40,4, 0x2d7ae60,17, 0x2d7aec0,6, 0x2d7aee0,4, 0x2d7aef4,11, 0x2d7af24,28, 0x2d7b000,1, 0x2d7b080,1, 0x2d7b0a0,5, 0x2d7b0c0,5, 0x2d7b0e0,5, 0x2d7b100,1, 0x2d7b120,5, 0x2d7b140,5, 0x2d7b160,5, 0x2d7b180,24, 0x2d7b200,5, 0x2d7c000,20, 0x2d80000,18, 0x2d80050,3, 0x2d80060,3, 0x2d80070,14, 0x2d800c0,5, 0x2d80400,13, 0x2d80440,2, 0x2d8044c,3, 0x2d80460,2, 0x2d80480,13, 0x2d804c0,2, 0x2d804cc,3, 0x2d804e0,2, 0x2d80500,1, 0x2d80508,16, 0x2d80560,2, 0x2d8056c,3, 0x2d80600,4, 0x2d80680,19, 0x2d80800,24, 0x2d80864,2, 0x2d80870,4, 0x2d80a00,27, 0x2d80a80,4, 0x2d80ac0,25, 0x2d80b40,6, 0x2d80b60,4, 0x2d80b74,11, 0x2d80ba4,8, 0x2d80c00,3, 0x2d80c10,3, 0x2d80c20,1, 0x2d80c40,11, 0x2d80c80,23, 0x2d80ce0,15, 0x2d80d20,15, 0x2d80d60,2, 0x2d80d6c,2, 0x2d80d80,1, 0x2d81000,18, 0x2d81050,3, 0x2d81060,3, 0x2d81070,14, 0x2d810c0,5, 0x2d81400,13, 0x2d81440,2, 0x2d8144c,3, 0x2d81460,2, 0x2d81480,13, 0x2d814c0,2, 0x2d814cc,3, 0x2d814e0,2, 0x2d81500,1, 0x2d81508,16, 0x2d81560,2, 0x2d8156c,3, 0x2d81600,4, 0x2d81680,19, 0x2d81800,24, 0x2d81864,2, 0x2d81870,4, 0x2d81a00,27, 0x2d81a80,4, 0x2d81ac0,25, 0x2d81b40,6, 0x2d81b60,4, 0x2d81b74,11, 0x2d81ba4,8, 0x2d81c00,3, 0x2d81c10,3, 0x2d81c20,1, 0x2d81c40,11, 0x2d81c80,23, 0x2d81ce0,15, 0x2d81d20,15, 0x2d81d60,2, 0x2d81d6c,2, 0x2d81d80,1, 0x2d82000,20, 0x2d82080,7, 0x2d820a0,1, 0x2d820b0,1, 0x2d820b8,2, 0x2d84000,14, 0x2e00000,534, 0x2e01000,2, 0x2e01040,9, 0x2e01080,7, 0x2e02000,534, 0x2e03000,12, 0x2e03044,6, 0x2e03080,8, 0x2e030a4,1, 0x2e030c0,7, 0x2e030e0,7, 0x2e03100,7, 0x2e03120,7, 0x2e03140,8, 0x2e03164,6, 0x2e03180,12, 0x2e04000,534, 0x2e05000,2, 0x2e05040,9, 0x2e05080,7, 0x2e06000,534, 0x2e07000,12, 0x2e07044,6, 0x2e07080,8, 0x2e070a4,1, 0x2e070c0,7, 0x2e070e0,7, 0x2e07100,7, 0x2e07120,7, 0x2e07140,8, 0x2e07164,6, 0x2e07180,12, 0x2e08004,5, 0x2e08200,27, 0x2e08280,4, 0x2e082c0,25, 0x2e08340,6, 0x2e08360,4, 0x2e08374,11, 0x2e083a4,5, 0x2e08400,1, 0x2e10000,397, 0x2e10800,93, 0x2e10980,6, 0x2e10a00,41, 0x2e10b00,2, 0x2e10b20,19, 0x2e10c00,25, 0x2e10c80,1, 0x2e10d00,28, 0x2e10d80,1, 0x2e11000,397, 0x2e11800,93, 0x2e11980,6, 0x2e11a00,41, 0x2e11b00,2, 0x2e11b20,19, 0x2e11c00,25, 0x2e11c80,1, 0x2e11d00,28, 0x2e11d80,1, 0x2e12000,7, 0x2e12040,9, 0x2e12080,4, 0x2e120a0,5, 0x2e120c0,2, 0x2e14000,3, 0x2e14010,6, 0x2e14200,7, 0x2e14220,6, 0x2e14240,7, 0x2e14260,6, 0x2e14280,2, 0x2e1428c,2, 0x2e142a0,2, 0x2e142ac,2, 0x2e142c0,7, 0x2e142e0,7, 0x2e14300,2, 0x2e1430c,2, 0x2e14320,6, 0x2e14340,7, 0x2e14360,6, 0x2e14380,6, 0x2e143a0,7, 0x2e143c0,6, 0x2e143e0,6, 0x2e14400,3, 0x2e14440,12, 0x2e14484,1, 0x2e144c0,16, 0x2e14800,7, 0x2e14820,14, 0x2e14880,9, 0x2e148a8,12, 0x2e14900,7, 0x2e14920,14, 0x2e14980,9, 0x2e149a8,12, 0x2e14a00,10, 0x2e14a40,2, 0x2e14a4c,3, 0x2e14c00,5, 0x2e14c20,1, 0x2e14c28,3, 0x2e20000,534, 0x2e21000,2, 0x2e21040,9, 0x2e21080,7, 0x2e22000,534, 0x2e23000,12, 0x2e23044,6, 0x2e23080,8, 0x2e230a4,1, 0x2e230c0,7, 0x2e230e0,7, 0x2e23100,7, 0x2e23120,7, 0x2e23140,8, 0x2e23164,6, 0x2e23180,12, 0x2e24000,534, 0x2e25000,2, 0x2e25040,9, 0x2e25080,7, 0x2e26000,534, 0x2e27000,12, 0x2e27044,6, 0x2e27080,8, 0x2e270a4,1, 0x2e270c0,7, 0x2e270e0,7, 0x2e27100,7, 0x2e27120,7, 0x2e27140,8, 0x2e27164,6, 0x2e27180,12, 0x2e28004,5, 0x2e28200,27, 0x2e28280,4, 0x2e282c0,25, 0x2e28340,6, 0x2e28360,4, 0x2e28374,11, 0x2e283a4,5, 0x2e28400,1, 0x2e30000,397, 0x2e30800,93, 0x2e30980,6, 0x2e30a00,41, 0x2e30b00,2, 0x2e30b20,19, 0x2e30c00,25, 0x2e30c80,1, 0x2e30d00,28, 0x2e30d80,1, 0x2e31000,397, 0x2e31800,93, 0x2e31980,6, 0x2e31a00,41, 0x2e31b00,2, 0x2e31b20,19, 0x2e31c00,25, 0x2e31c80,1, 0x2e31d00,28, 0x2e31d80,1, 0x2e32000,7, 0x2e32040,9, 0x2e32080,4, 0x2e320a0,5, 0x2e320c0,2, 0x2e34000,3, 0x2e34010,6, 0x2e34200,7, 0x2e34220,6, 0x2e34240,7, 0x2e34260,6, 0x2e34280,2, 0x2e3428c,2, 0x2e342a0,2, 0x2e342ac,2, 0x2e342c0,7, 0x2e342e0,7, 0x2e34300,2, 0x2e3430c,2, 0x2e34320,6, 0x2e34340,7, 0x2e34360,6, 0x2e34380,6, 0x2e343a0,7, 0x2e343c0,6, 0x2e343e0,6, 0x2e34400,3, 0x2e34440,12, 0x2e34484,1, 0x2e344c0,16, 0x2e34800,7, 0x2e34820,14, 0x2e34880,9, 0x2e348a8,12, 0x2e34900,7, 0x2e34920,14, 0x2e34980,9, 0x2e349a8,12, 0x2e34a00,10, 0x2e34a40,2, 0x2e34a4c,3, 0x2e34c00,5, 0x2e34c20,1, 0x2e34c28,3, 0x2e40000,37, 0x2e40100,3, 0x2e40110,15, 0x2e40200,37, 0x2e40300,3, 0x2e40310,15, 0x2e40400,5, 0x2e40420,5, 0x2e40440,18, 0x2e40800,3, 0x2e40810,2, 0x2e40820,3, 0x2e40830,2, 0x2e40840,1, 0x2e41000,12, 0x2e41040,12, 0x2e41080,2, 0x2e41100,19, 0x2e41180,19, 0x2e41200,26, 0x2e41400,20, 0x2e41480,20, 0x2e41500,8, 0x2e41540,4, 0x2e41580,15, 0x2e415c0,15, 0x2e41600,9, 0x2e41630,5, 0x2e42000,37, 0x2e42100,3, 0x2e42110,15, 0x2e42200,37, 0x2e42300,3, 0x2e42310,15, 0x2e42400,5, 0x2e42420,5, 0x2e42440,18, 0x2e42800,3, 0x2e42810,2, 0x2e42820,3, 0x2e42830,2, 0x2e42840,1, 0x2e43000,12, 0x2e43040,12, 0x2e43080,2, 0x2e43100,19, 0x2e43180,19, 0x2e43200,26, 0x2e43400,20, 0x2e43480,20, 0x2e43500,8, 0x2e43540,4, 0x2e43580,15, 0x2e435c0,15, 0x2e43600,9, 0x2e43630,5, 0x2e44000,6, 0x2e44020,1, 0x2e4402c,3, 0x2e44040,11, 0x2e44070,3, 0x2e44080,2, 0x2e48000,49, 0x2e48100,12, 0x2e48140,4, 0x2e48184,1, 0x2e48198,2, 0x2e481a4,1, 0x2e481b8,7, 0x2e481e0,4, 0x2e48200,20, 0x2e48280,3, 0x2e48290,9, 0x2e482c0,6, 0x2e482e0,1, 0x2e482e8,7, 0x2e48400,49, 0x2e48500,12, 0x2e48540,4, 0x2e48584,1, 0x2e48598,2, 0x2e485a4,1, 0x2e485b8,7, 0x2e485e0,4, 0x2e48600,20, 0x2e48680,3, 0x2e48690,9, 0x2e486c0,6, 0x2e486e0,1, 0x2e486e8,7, 0x2e48800,49, 0x2e48900,12, 0x2e48940,4, 0x2e48984,1, 0x2e48998,2, 0x2e489a4,1, 0x2e489b8,7, 0x2e489e0,4, 0x2e48a00,20, 0x2e48a80,3, 0x2e48a90,9, 0x2e48ac0,6, 0x2e48ae0,1, 0x2e48ae8,7, 0x2e48c00,49, 0x2e48d00,12, 0x2e48d40,4, 0x2e48d84,1, 0x2e48d98,2, 0x2e48da4,1, 0x2e48db8,7, 0x2e48de0,4, 0x2e48e00,20, 0x2e48e80,3, 0x2e48e90,9, 0x2e48ec0,6, 0x2e48ee0,1, 0x2e48ee8,7, 0x2e49000,49, 0x2e49100,12, 0x2e49140,4, 0x2e49184,1, 0x2e49198,2, 0x2e491a4,1, 0x2e491b8,7, 0x2e491e0,4, 0x2e49200,20, 0x2e49280,3, 0x2e49290,9, 0x2e492c0,6, 0x2e492e0,1, 0x2e492e8,7, 0x2e49400,49, 0x2e49500,12, 0x2e49540,4, 0x2e49584,1, 0x2e49598,2, 0x2e495a4,1, 0x2e495b8,7, 0x2e495e0,4, 0x2e49600,20, 0x2e49680,3, 0x2e49690,9, 0x2e496c0,6, 0x2e496e0,1, 0x2e496e8,7, 0x2e49800,49, 0x2e49900,12, 0x2e49940,4, 0x2e49984,1, 0x2e49998,2, 0x2e499a4,1, 0x2e499b8,7, 0x2e499e0,4, 0x2e49a00,20, 0x2e49a80,3, 0x2e49a90,9, 0x2e49ac0,6, 0x2e49ae0,1, 0x2e49ae8,7, 0x2e4a000,20, 0x2e4a080,2, 0x2e4a100,20, 0x2e4a180,2, 0x2e4a200,4, 0x2e4a400,20, 0x2e4a480,2, 0x2e4a500,20, 0x2e4a580,2, 0x2e4a600,4, 0x2e4a800,3, 0x2e4a840,12, 0x2e4a880,12, 0x2e4a8c0,12, 0x2e4a900,12, 0x2e4a940,12, 0x2e4a980,12, 0x2e4a9c0,12, 0x2e4aa00,12, 0x2e4ac00,12, 0x2e4ac40,7, 0x2e4ac60,10, 0x2e4b004,1, 0x2e4b018,40, 0x2e4b100,7, 0x2e4b120,7, 0x2e4b140,2, 0x2e4b14c,2, 0x2e4b160,2, 0x2e4b16c,2, 0x2e4b180,18, 0x2e4b200,2, 0x2e4b220,10, 0x2e4b260,20, 0x2e4b2c0,7, 0x2e4b300,15, 0x2e4b340,9, 0x2e4b380,6, 0x2e4b3a0,4, 0x2e4b400,4, 0x2e4c000,106, 0x2e4c200,2, 0x2e4c240,9, 0x2e4c280,7, 0x2e4c400,106, 0x2e4c604,6, 0x2e4c700,15, 0x2e4c740,9, 0x2e4c780,6, 0x2e4c7a0,6, 0x2e4c800,8, 0x2e4c824,1, 0x2e4c830,15, 0x2e4c870,3, 0x2e60000,518, 0x2e60900,45, 0x2e60a00,45, 0x2e60b00,45, 0x2e60c00,45, 0x2e60d00,45, 0x2e60e00,45, 0x2e60f00,45, 0x2e61000,45, 0x2e61800,9, 0x2e61840,364, 0x2e61e00,19, 0x2e62000,9, 0x2e62040,364, 0x2e62600,19, 0x2e62800,6, 0x2e62820,3, 0x2e62840,7, 0x2e62880,6, 0x2e628a0,3, 0x2e628c0,7, 0x2e62900,1, 0x2e62908,3, 0x2e62918,8, 0x2e62940,7, 0x2e63000,2, 0x2e63800,18, 0x2e63880,18, 0x2e63c00,4, 0x2e63c20,7, 0x2e63d00,4, 0x2e63d80,20, 0x2e63e00,1, 0x2e64000,21, 0x2e64058,3, 0x2e64100,1, 0x2e64124,1, 0x2e6412c,5, 0x2e64144,1, 0x2e6414c,6, 0x2e64184,6, 0x2e641a4,6, 0x2e641c4,1, 0x2e641cc,1, 0x2e64400,9, 0x2e64440,9, 0x2e64480,15, 0x2e644c0,15, 0x2e64500,15, 0x2e64540,15, 0x2e64580,15, 0x2e645c0,15, 0x2e64600,15, 0x2e64640,15, 0x2e64680,59, 0x2e64800,1, 0x2e64808,16, 0x2e64850,1, 0x2e64858,7, 0x2e68000,3, 0x2e68010,1, 0x2e68018,3, 0x2e6a000,4, 0x2e6a080,19, 0x2e6a100,12, 0x2e6a200,4, 0x2e6a280,19, 0x2e6a300,12, 0x2e6a400,2, 0x2e6a600,124, 0x2e6a800,4, 0x2e6a880,18, 0x2e6a900,4, 0x2e6a980,23, 0x2e6aa00,10, 0x2e6aa2c,2, 0x2e6aa40,2, 0x2e6aa4c,3, 0x2e6aa60,2, 0x2e6aa6c,3, 0x2e6aa80,2, 0x2e6aa8c,2, 0x2e6aaa0,2, 0x2e6aaac,2, 0x2e6aac0,2, 0x2e6aacc,2, 0x2e6ab00,4, 0x2e6ab40,15, 0x2e6ab80,3, 0x2e6ab90,7, 0x2e6abb0,3, 0x2e6abc0,3, 0x2e6abd0,3, 0x2e6abe0,1, 0x2e6ac00,17, 0x2e6ae00,15, 0x2e6ae40,4, 0x2e6ae60,17, 0x2e6aec0,6, 0x2e6aee0,4, 0x2e6aef4,11, 0x2e6af24,28, 0x2e6b000,1, 0x2e6b080,1, 0x2e6b0a0,5, 0x2e6b0c0,5, 0x2e6b0e0,5, 0x2e6b100,1, 0x2e6b120,5, 0x2e6b140,5, 0x2e6b160,5, 0x2e6b180,24, 0x2e6b200,5, 0x2e6c000,20, 0x2e70000,518, 0x2e70900,45, 0x2e70a00,45, 0x2e70b00,45, 0x2e70c00,45, 0x2e70d00,45, 0x2e70e00,45, 0x2e70f00,45, 0x2e71000,45, 0x2e71800,9, 0x2e71840,364, 0x2e71e00,19, 0x2e72000,9, 0x2e72040,364, 0x2e72600,19, 0x2e72800,6, 0x2e72820,3, 0x2e72840,7, 0x2e72880,6, 0x2e728a0,3, 0x2e728c0,7, 0x2e72900,1, 0x2e72908,3, 0x2e72918,8, 0x2e72940,7, 0x2e73000,2, 0x2e73800,18, 0x2e73880,18, 0x2e73c00,4, 0x2e73c20,7, 0x2e73d00,4, 0x2e73d80,20, 0x2e73e00,1, 0x2e74000,21, 0x2e74058,3, 0x2e74100,1, 0x2e74124,1, 0x2e7412c,5, 0x2e74144,1, 0x2e7414c,6, 0x2e74184,6, 0x2e741a4,6, 0x2e741c4,1, 0x2e741cc,1, 0x2e74400,9, 0x2e74440,9, 0x2e74480,15, 0x2e744c0,15, 0x2e74500,15, 0x2e74540,15, 0x2e74580,15, 0x2e745c0,15, 0x2e74600,15, 0x2e74640,15, 0x2e74680,59, 0x2e74800,1, 0x2e74808,16, 0x2e74850,1, 0x2e74858,7, 0x2e78000,3, 0x2e78010,1, 0x2e78018,3, 0x2e7a000,4, 0x2e7a080,19, 0x2e7a100,12, 0x2e7a200,4, 0x2e7a280,19, 0x2e7a300,12, 0x2e7a400,2, 0x2e7a600,124, 0x2e7a800,4, 0x2e7a880,18, 0x2e7a900,4, 0x2e7a980,23, 0x2e7aa00,10, 0x2e7aa2c,2, 0x2e7aa40,2, 0x2e7aa4c,3, 0x2e7aa60,2, 0x2e7aa6c,3, 0x2e7aa80,2, 0x2e7aa8c,2, 0x2e7aaa0,2, 0x2e7aaac,2, 0x2e7aac0,2, 0x2e7aacc,2, 0x2e7ab00,4, 0x2e7ab40,15, 0x2e7ab80,3, 0x2e7ab90,7, 0x2e7abb0,3, 0x2e7abc0,3, 0x2e7abd0,3, 0x2e7abe0,1, 0x2e7ac00,17, 0x2e7ae00,15, 0x2e7ae40,4, 0x2e7ae60,17, 0x2e7aec0,6, 0x2e7aee0,4, 0x2e7aef4,11, 0x2e7af24,28, 0x2e7b000,1, 0x2e7b080,1, 0x2e7b0a0,5, 0x2e7b0c0,5, 0x2e7b0e0,5, 0x2e7b100,1, 0x2e7b120,5, 0x2e7b140,5, 0x2e7b160,5, 0x2e7b180,24, 0x2e7b200,5, 0x2e7c000,20, 0x2e80000,18, 0x2e80050,3, 0x2e80060,3, 0x2e80070,14, 0x2e800c0,5, 0x2e80400,13, 0x2e80440,2, 0x2e8044c,3, 0x2e80460,2, 0x2e80480,13, 0x2e804c0,2, 0x2e804cc,3, 0x2e804e0,2, 0x2e80500,1, 0x2e80508,16, 0x2e80560,2, 0x2e8056c,3, 0x2e80600,4, 0x2e80680,19, 0x2e80800,24, 0x2e80864,2, 0x2e80870,4, 0x2e80a00,27, 0x2e80a80,4, 0x2e80ac0,25, 0x2e80b40,6, 0x2e80b60,4, 0x2e80b74,11, 0x2e80ba4,8, 0x2e80c00,3, 0x2e80c10,3, 0x2e80c20,1, 0x2e80c40,11, 0x2e80c80,23, 0x2e80ce0,15, 0x2e80d20,15, 0x2e80d60,2, 0x2e80d6c,2, 0x2e80d80,1, 0x2e81000,18, 0x2e81050,3, 0x2e81060,3, 0x2e81070,14, 0x2e810c0,5, 0x2e81400,13, 0x2e81440,2, 0x2e8144c,3, 0x2e81460,2, 0x2e81480,13, 0x2e814c0,2, 0x2e814cc,3, 0x2e814e0,2, 0x2e81500,1, 0x2e81508,16, 0x2e81560,2, 0x2e8156c,3, 0x2e81600,4, 0x2e81680,19, 0x2e81800,24, 0x2e81864,2, 0x2e81870,4, 0x2e81a00,27, 0x2e81a80,4, 0x2e81ac0,25, 0x2e81b40,6, 0x2e81b60,4, 0x2e81b74,11, 0x2e81ba4,8, 0x2e81c00,3, 0x2e81c10,3, 0x2e81c20,1, 0x2e81c40,11, 0x2e81c80,23, 0x2e81ce0,15, 0x2e81d20,15, 0x2e81d60,2, 0x2e81d6c,2, 0x2e81d80,1, 0x2e82000,20, 0x2e82080,7, 0x2e820a0,1, 0x2e820b0,1, 0x2e820b8,2, 0x2e84000,14, 0x2f00000,534, 0x2f01000,2, 0x2f01040,9, 0x2f01080,7, 0x2f02000,534, 0x2f03000,12, 0x2f03044,6, 0x2f03080,8, 0x2f030a4,1, 0x2f030c0,7, 0x2f030e0,7, 0x2f03100,7, 0x2f03120,7, 0x2f03140,8, 0x2f03164,6, 0x2f03180,12, 0x2f04000,534, 0x2f05000,2, 0x2f05040,9, 0x2f05080,7, 0x2f06000,534, 0x2f07000,12, 0x2f07044,6, 0x2f07080,8, 0x2f070a4,1, 0x2f070c0,7, 0x2f070e0,7, 0x2f07100,7, 0x2f07120,7, 0x2f07140,8, 0x2f07164,6, 0x2f07180,12, 0x2f08004,5, 0x2f08200,27, 0x2f08280,4, 0x2f082c0,25, 0x2f08340,6, 0x2f08360,4, 0x2f08374,11, 0x2f083a4,5, 0x2f08400,1, 0x2f10000,397, 0x2f10800,93, 0x2f10980,6, 0x2f10a00,41, 0x2f10b00,2, 0x2f10b20,19, 0x2f10c00,25, 0x2f10c80,1, 0x2f10d00,28, 0x2f10d80,1, 0x2f11000,397, 0x2f11800,93, 0x2f11980,6, 0x2f11a00,41, 0x2f11b00,2, 0x2f11b20,19, 0x2f11c00,25, 0x2f11c80,1, 0x2f11d00,28, 0x2f11d80,1, 0x2f12000,7, 0x2f12040,9, 0x2f12080,4, 0x2f120a0,5, 0x2f120c0,2, 0x2f14000,3, 0x2f14010,6, 0x2f14200,7, 0x2f14220,6, 0x2f14240,7, 0x2f14260,6, 0x2f14280,2, 0x2f1428c,2, 0x2f142a0,2, 0x2f142ac,2, 0x2f142c0,7, 0x2f142e0,7, 0x2f14300,2, 0x2f1430c,2, 0x2f14320,6, 0x2f14340,7, 0x2f14360,6, 0x2f14380,6, 0x2f143a0,7, 0x2f143c0,6, 0x2f143e0,6, 0x2f14400,3, 0x2f14440,12, 0x2f14484,1, 0x2f144c0,16, 0x2f14800,7, 0x2f14820,14, 0x2f14880,9, 0x2f148a8,12, 0x2f14900,7, 0x2f14920,14, 0x2f14980,9, 0x2f149a8,12, 0x2f14a00,10, 0x2f14a40,2, 0x2f14a4c,3, 0x2f14c00,5, 0x2f14c20,1, 0x2f14c28,3, 0x2f20000,534, 0x2f21000,2, 0x2f21040,9, 0x2f21080,7, 0x2f22000,534, 0x2f23000,12, 0x2f23044,6, 0x2f23080,8, 0x2f230a4,1, 0x2f230c0,7, 0x2f230e0,7, 0x2f23100,7, 0x2f23120,7, 0x2f23140,8, 0x2f23164,6, 0x2f23180,12, 0x2f24000,534, 0x2f25000,2, 0x2f25040,9, 0x2f25080,7, 0x2f26000,534, 0x2f27000,12, 0x2f27044,6, 0x2f27080,8, 0x2f270a4,1, 0x2f270c0,7, 0x2f270e0,7, 0x2f27100,7, 0x2f27120,7, 0x2f27140,8, 0x2f27164,6, 0x2f27180,12, 0x2f28004,5, 0x2f28200,27, 0x2f28280,4, 0x2f282c0,25, 0x2f28340,6, 0x2f28360,4, 0x2f28374,11, 0x2f283a4,5, 0x2f28400,1, 0x2f30000,397, 0x2f30800,93, 0x2f30980,6, 0x2f30a00,41, 0x2f30b00,2, 0x2f30b20,19, 0x2f30c00,25, 0x2f30c80,1, 0x2f30d00,28, 0x2f30d80,1, 0x2f31000,397, 0x2f31800,93, 0x2f31980,6, 0x2f31a00,41, 0x2f31b00,2, 0x2f31b20,19, 0x2f31c00,25, 0x2f31c80,1, 0x2f31d00,28, 0x2f31d80,1, 0x2f32000,7, 0x2f32040,9, 0x2f32080,4, 0x2f320a0,5, 0x2f320c0,2, 0x2f34000,3, 0x2f34010,6, 0x2f34200,7, 0x2f34220,6, 0x2f34240,7, 0x2f34260,6, 0x2f34280,2, 0x2f3428c,2, 0x2f342a0,2, 0x2f342ac,2, 0x2f342c0,7, 0x2f342e0,7, 0x2f34300,2, 0x2f3430c,2, 0x2f34320,6, 0x2f34340,7, 0x2f34360,6, 0x2f34380,6, 0x2f343a0,7, 0x2f343c0,6, 0x2f343e0,6, 0x2f34400,3, 0x2f34440,12, 0x2f34484,1, 0x2f344c0,16, 0x2f34800,7, 0x2f34820,14, 0x2f34880,9, 0x2f348a8,12, 0x2f34900,7, 0x2f34920,14, 0x2f34980,9, 0x2f349a8,12, 0x2f34a00,10, 0x2f34a40,2, 0x2f34a4c,3, 0x2f34c00,5, 0x2f34c20,1, 0x2f34c28,3, 0x2f40000,37, 0x2f40100,3, 0x2f40110,15, 0x2f40200,37, 0x2f40300,3, 0x2f40310,15, 0x2f40400,5, 0x2f40420,5, 0x2f40440,18, 0x2f40800,3, 0x2f40810,2, 0x2f40820,3, 0x2f40830,2, 0x2f40840,1, 0x2f41000,12, 0x2f41040,12, 0x2f41080,2, 0x2f41100,19, 0x2f41180,19, 0x2f41200,26, 0x2f41400,20, 0x2f41480,20, 0x2f41500,8, 0x2f41540,4, 0x2f41580,15, 0x2f415c0,15, 0x2f41600,9, 0x2f41630,5, 0x2f42000,37, 0x2f42100,3, 0x2f42110,15, 0x2f42200,37, 0x2f42300,3, 0x2f42310,15, 0x2f42400,5, 0x2f42420,5, 0x2f42440,18, 0x2f42800,3, 0x2f42810,2, 0x2f42820,3, 0x2f42830,2, 0x2f42840,1, 0x2f43000,12, 0x2f43040,12, 0x2f43080,2, 0x2f43100,19, 0x2f43180,19, 0x2f43200,26, 0x2f43400,20, 0x2f43480,20, 0x2f43500,8, 0x2f43540,4, 0x2f43580,15, 0x2f435c0,15, 0x2f43600,9, 0x2f43630,5, 0x2f44000,6, 0x2f44020,1, 0x2f4402c,3, 0x2f44040,11, 0x2f44070,3, 0x2f44080,2, 0x2f48000,49, 0x2f48100,12, 0x2f48140,4, 0x2f48184,1, 0x2f48198,2, 0x2f481a4,1, 0x2f481b8,7, 0x2f481e0,4, 0x2f48200,20, 0x2f48280,3, 0x2f48290,9, 0x2f482c0,6, 0x2f482e0,1, 0x2f482e8,7, 0x2f48400,49, 0x2f48500,12, 0x2f48540,4, 0x2f48584,1, 0x2f48598,2, 0x2f485a4,1, 0x2f485b8,7, 0x2f485e0,4, 0x2f48600,20, 0x2f48680,3, 0x2f48690,9, 0x2f486c0,6, 0x2f486e0,1, 0x2f486e8,7, 0x2f48800,49, 0x2f48900,12, 0x2f48940,4, 0x2f48984,1, 0x2f48998,2, 0x2f489a4,1, 0x2f489b8,7, 0x2f489e0,4, 0x2f48a00,20, 0x2f48a80,3, 0x2f48a90,9, 0x2f48ac0,6, 0x2f48ae0,1, 0x2f48ae8,7, 0x2f48c00,49, 0x2f48d00,12, 0x2f48d40,4, 0x2f48d84,1, 0x2f48d98,2, 0x2f48da4,1, 0x2f48db8,7, 0x2f48de0,4, 0x2f48e00,20, 0x2f48e80,3, 0x2f48e90,9, 0x2f48ec0,6, 0x2f48ee0,1, 0x2f48ee8,7, 0x2f49000,49, 0x2f49100,12, 0x2f49140,4, 0x2f49184,1, 0x2f49198,2, 0x2f491a4,1, 0x2f491b8,7, 0x2f491e0,4, 0x2f49200,20, 0x2f49280,3, 0x2f49290,9, 0x2f492c0,6, 0x2f492e0,1, 0x2f492e8,7, 0x2f49400,49, 0x2f49500,12, 0x2f49540,4, 0x2f49584,1, 0x2f49598,2, 0x2f495a4,1, 0x2f495b8,7, 0x2f495e0,4, 0x2f49600,20, 0x2f49680,3, 0x2f49690,9, 0x2f496c0,6, 0x2f496e0,1, 0x2f496e8,7, 0x2f49800,49, 0x2f49900,12, 0x2f49940,4, 0x2f49984,1, 0x2f49998,2, 0x2f499a4,1, 0x2f499b8,7, 0x2f499e0,4, 0x2f49a00,20, 0x2f49a80,3, 0x2f49a90,9, 0x2f49ac0,6, 0x2f49ae0,1, 0x2f49ae8,7, 0x2f4a000,20, 0x2f4a080,2, 0x2f4a100,20, 0x2f4a180,2, 0x2f4a200,4, 0x2f4a400,20, 0x2f4a480,2, 0x2f4a500,20, 0x2f4a580,2, 0x2f4a600,4, 0x2f4a800,3, 0x2f4a840,12, 0x2f4a880,12, 0x2f4a8c0,12, 0x2f4a900,12, 0x2f4a940,12, 0x2f4a980,12, 0x2f4a9c0,12, 0x2f4aa00,12, 0x2f4ac00,12, 0x2f4ac40,7, 0x2f4ac60,10, 0x2f4b004,1, 0x2f4b018,40, 0x2f4b100,7, 0x2f4b120,7, 0x2f4b140,2, 0x2f4b14c,2, 0x2f4b160,2, 0x2f4b16c,2, 0x2f4b180,18, 0x2f4b200,2, 0x2f4b220,10, 0x2f4b260,20, 0x2f4b2c0,7, 0x2f4b300,15, 0x2f4b340,9, 0x2f4b380,6, 0x2f4b3a0,4, 0x2f4b400,4, 0x2f4c000,106, 0x2f4c200,2, 0x2f4c240,9, 0x2f4c280,7, 0x2f4c400,106, 0x2f4c604,6, 0x2f4c700,15, 0x2f4c740,9, 0x2f4c780,6, 0x2f4c7a0,6, 0x2f4c800,8, 0x2f4c824,1, 0x2f4c830,15, 0x2f4c870,3, 0x2f60000,518, 0x2f60900,45, 0x2f60a00,45, 0x2f60b00,45, 0x2f60c00,45, 0x2f60d00,45, 0x2f60e00,45, 0x2f60f00,45, 0x2f61000,45, 0x2f61800,9, 0x2f61840,364, 0x2f61e00,19, 0x2f62000,9, 0x2f62040,364, 0x2f62600,19, 0x2f62800,6, 0x2f62820,3, 0x2f62840,7, 0x2f62880,6, 0x2f628a0,3, 0x2f628c0,7, 0x2f62900,1, 0x2f62908,3, 0x2f62918,8, 0x2f62940,7, 0x2f63000,2, 0x2f63800,18, 0x2f63880,18, 0x2f63c00,4, 0x2f63c20,7, 0x2f63d00,4, 0x2f63d80,20, 0x2f63e00,1, 0x2f64000,21, 0x2f64058,3, 0x2f64100,1, 0x2f64124,1, 0x2f6412c,5, 0x2f64144,1, 0x2f6414c,6, 0x2f64184,6, 0x2f641a4,6, 0x2f641c4,1, 0x2f641cc,1, 0x2f64400,9, 0x2f64440,9, 0x2f64480,15, 0x2f644c0,15, 0x2f64500,15, 0x2f64540,15, 0x2f64580,15, 0x2f645c0,15, 0x2f64600,15, 0x2f64640,15, 0x2f64680,59, 0x2f64800,1, 0x2f64808,16, 0x2f64850,1, 0x2f64858,7, 0x2f68000,3, 0x2f68010,1, 0x2f68018,3, 0x2f6a000,4, 0x2f6a080,19, 0x2f6a100,12, 0x2f6a200,4, 0x2f6a280,19, 0x2f6a300,12, 0x2f6a400,2, 0x2f6a600,124, 0x2f6a800,4, 0x2f6a880,18, 0x2f6a900,4, 0x2f6a980,23, 0x2f6aa00,10, 0x2f6aa2c,2, 0x2f6aa40,2, 0x2f6aa4c,3, 0x2f6aa60,2, 0x2f6aa6c,3, 0x2f6aa80,2, 0x2f6aa8c,2, 0x2f6aaa0,2, 0x2f6aaac,2, 0x2f6aac0,2, 0x2f6aacc,2, 0x2f6ab00,4, 0x2f6ab40,15, 0x2f6ab80,3, 0x2f6ab90,7, 0x2f6abb0,3, 0x2f6abc0,3, 0x2f6abd0,3, 0x2f6abe0,1, 0x2f6ac00,17, 0x2f6ae00,15, 0x2f6ae40,4, 0x2f6ae60,17, 0x2f6aec0,6, 0x2f6aee0,4, 0x2f6aef4,11, 0x2f6af24,28, 0x2f6b000,1, 0x2f6b080,1, 0x2f6b0a0,5, 0x2f6b0c0,5, 0x2f6b0e0,5, 0x2f6b100,1, 0x2f6b120,5, 0x2f6b140,5, 0x2f6b160,5, 0x2f6b180,24, 0x2f6b200,5, 0x2f6c000,20, 0x2f70000,518, 0x2f70900,45, 0x2f70a00,45, 0x2f70b00,45, 0x2f70c00,45, 0x2f70d00,45, 0x2f70e00,45, 0x2f70f00,45, 0x2f71000,45, 0x2f71800,9, 0x2f71840,364, 0x2f71e00,19, 0x2f72000,9, 0x2f72040,364, 0x2f72600,19, 0x2f72800,6, 0x2f72820,3, 0x2f72840,7, 0x2f72880,6, 0x2f728a0,3, 0x2f728c0,7, 0x2f72900,1, 0x2f72908,3, 0x2f72918,8, 0x2f72940,7, 0x2f73000,2, 0x2f73800,18, 0x2f73880,18, 0x2f73c00,4, 0x2f73c20,7, 0x2f73d00,4, 0x2f73d80,20, 0x2f73e00,1, 0x2f74000,21, 0x2f74058,3, 0x2f74100,1, 0x2f74124,1, 0x2f7412c,5, 0x2f74144,1, 0x2f7414c,6, 0x2f74184,6, 0x2f741a4,6, 0x2f741c4,1, 0x2f741cc,1, 0x2f74400,9, 0x2f74440,9, 0x2f74480,15, 0x2f744c0,15, 0x2f74500,15, 0x2f74540,15, 0x2f74580,15, 0x2f745c0,15, 0x2f74600,15, 0x2f74640,15, 0x2f74680,59, 0x2f74800,1, 0x2f74808,16, 0x2f74850,1, 0x2f74858,7, 0x2f78000,3, 0x2f78010,1, 0x2f78018,3, 0x2f7a000,4, 0x2f7a080,19, 0x2f7a100,12, 0x2f7a200,4, 0x2f7a280,19, 0x2f7a300,12, 0x2f7a400,2, 0x2f7a600,124, 0x2f7a800,4, 0x2f7a880,18, 0x2f7a900,4, 0x2f7a980,23, 0x2f7aa00,10, 0x2f7aa2c,2, 0x2f7aa40,2, 0x2f7aa4c,3, 0x2f7aa60,2, 0x2f7aa6c,3, 0x2f7aa80,2, 0x2f7aa8c,2, 0x2f7aaa0,2, 0x2f7aaac,2, 0x2f7aac0,2, 0x2f7aacc,2, 0x2f7ab00,4, 0x2f7ab40,15, 0x2f7ab80,3, 0x2f7ab90,7, 0x2f7abb0,3, 0x2f7abc0,3, 0x2f7abd0,3, 0x2f7abe0,1, 0x2f7ac00,17, 0x2f7ae00,15, 0x2f7ae40,4, 0x2f7ae60,17, 0x2f7aec0,6, 0x2f7aee0,4, 0x2f7aef4,11, 0x2f7af24,28, 0x2f7b000,1, 0x2f7b080,1, 0x2f7b0a0,5, 0x2f7b0c0,5, 0x2f7b0e0,5, 0x2f7b100,1, 0x2f7b120,5, 0x2f7b140,5, 0x2f7b160,5, 0x2f7b180,24, 0x2f7b200,5, 0x2f7c000,20, 0x2f80000,18, 0x2f80050,3, 0x2f80060,3, 0x2f80070,14, 0x2f800c0,5, 0x2f80400,13, 0x2f80440,2, 0x2f8044c,3, 0x2f80460,2, 0x2f80480,13, 0x2f804c0,2, 0x2f804cc,3, 0x2f804e0,2, 0x2f80500,1, 0x2f80508,16, 0x2f80560,2, 0x2f8056c,3, 0x2f80600,4, 0x2f80680,19, 0x2f80800,24, 0x2f80864,2, 0x2f80870,4, 0x2f80a00,27, 0x2f80a80,4, 0x2f80ac0,25, 0x2f80b40,6, 0x2f80b60,4, 0x2f80b74,11, 0x2f80ba4,8, 0x2f80c00,3, 0x2f80c10,3, 0x2f80c20,1, 0x2f80c40,11, 0x2f80c80,23, 0x2f80ce0,15, 0x2f80d20,15, 0x2f80d60,2, 0x2f80d6c,2, 0x2f80d80,1, 0x2f81000,18, 0x2f81050,3, 0x2f81060,3, 0x2f81070,14, 0x2f810c0,5, 0x2f81400,13, 0x2f81440,2, 0x2f8144c,3, 0x2f81460,2, 0x2f81480,13, 0x2f814c0,2, 0x2f814cc,3, 0x2f814e0,2, 0x2f81500,1, 0x2f81508,16, 0x2f81560,2, 0x2f8156c,3, 0x2f81600,4, 0x2f81680,19, 0x2f81800,24, 0x2f81864,2, 0x2f81870,4, 0x2f81a00,27, 0x2f81a80,4, 0x2f81ac0,25, 0x2f81b40,6, 0x2f81b60,4, 0x2f81b74,11, 0x2f81ba4,8, 0x2f81c00,3, 0x2f81c10,3, 0x2f81c20,1, 0x2f81c40,11, 0x2f81c80,23, 0x2f81ce0,15, 0x2f81d20,15, 0x2f81d60,2, 0x2f81d6c,2, 0x2f81d80,1, 0x2f82000,20, 0x2f82080,7, 0x2f820a0,1, 0x2f820b0,1, 0x2f820b8,2, 0x2f84000,14, 0x3000000,534, 0x3001000,2, 0x3001040,9, 0x3001080,7, 0x3002000,534, 0x3003000,12, 0x3003044,6, 0x3003080,8, 0x30030a4,1, 0x30030c0,7, 0x30030e0,7, 0x3003100,7, 0x3003120,7, 0x3003140,8, 0x3003164,6, 0x3003180,12, 0x3004000,534, 0x3005000,2, 0x3005040,9, 0x3005080,7, 0x3006000,534, 0x3007000,12, 0x3007044,6, 0x3007080,8, 0x30070a4,1, 0x30070c0,7, 0x30070e0,7, 0x3007100,7, 0x3007120,7, 0x3007140,8, 0x3007164,6, 0x3007180,12, 0x3008004,5, 0x3008200,27, 0x3008280,4, 0x30082c0,25, 0x3008340,6, 0x3008360,4, 0x3008374,11, 0x30083a4,5, 0x3008400,1, 0x3010000,397, 0x3010800,93, 0x3010980,6, 0x3010a00,41, 0x3010b00,2, 0x3010b20,19, 0x3010c00,25, 0x3010c80,1, 0x3010d00,28, 0x3010d80,1, 0x3011000,397, 0x3011800,93, 0x3011980,6, 0x3011a00,41, 0x3011b00,2, 0x3011b20,19, 0x3011c00,25, 0x3011c80,1, 0x3011d00,28, 0x3011d80,1, 0x3012000,7, 0x3012040,9, 0x3012080,4, 0x30120a0,5, 0x30120c0,2, 0x3014000,3, 0x3014010,6, 0x3014200,7, 0x3014220,6, 0x3014240,7, 0x3014260,6, 0x3014280,2, 0x301428c,2, 0x30142a0,2, 0x30142ac,2, 0x30142c0,7, 0x30142e0,7, 0x3014300,2, 0x301430c,2, 0x3014320,6, 0x3014340,7, 0x3014360,6, 0x3014380,6, 0x30143a0,7, 0x30143c0,6, 0x30143e0,6, 0x3014400,3, 0x3014440,12, 0x3014484,1, 0x30144c0,16, 0x3014800,7, 0x3014820,14, 0x3014880,9, 0x30148a8,12, 0x3014900,7, 0x3014920,14, 0x3014980,9, 0x30149a8,12, 0x3014a00,10, 0x3014a40,2, 0x3014a4c,3, 0x3014c00,5, 0x3014c20,1, 0x3014c28,3, 0x3020000,534, 0x3021000,2, 0x3021040,9, 0x3021080,7, 0x3022000,534, 0x3023000,12, 0x3023044,6, 0x3023080,8, 0x30230a4,1, 0x30230c0,7, 0x30230e0,7, 0x3023100,7, 0x3023120,7, 0x3023140,8, 0x3023164,6, 0x3023180,12, 0x3024000,534, 0x3025000,2, 0x3025040,9, 0x3025080,7, 0x3026000,534, 0x3027000,12, 0x3027044,6, 0x3027080,8, 0x30270a4,1, 0x30270c0,7, 0x30270e0,7, 0x3027100,7, 0x3027120,7, 0x3027140,8, 0x3027164,6, 0x3027180,12, 0x3028004,5, 0x3028200,27, 0x3028280,4, 0x30282c0,25, 0x3028340,6, 0x3028360,4, 0x3028374,11, 0x30283a4,5, 0x3028400,1, 0x3030000,397, 0x3030800,93, 0x3030980,6, 0x3030a00,41, 0x3030b00,2, 0x3030b20,19, 0x3030c00,25, 0x3030c80,1, 0x3030d00,28, 0x3030d80,1, 0x3031000,397, 0x3031800,93, 0x3031980,6, 0x3031a00,41, 0x3031b00,2, 0x3031b20,19, 0x3031c00,25, 0x3031c80,1, 0x3031d00,28, 0x3031d80,1, 0x3032000,7, 0x3032040,9, 0x3032080,4, 0x30320a0,5, 0x30320c0,2, 0x3034000,3, 0x3034010,6, 0x3034200,7, 0x3034220,6, 0x3034240,7, 0x3034260,6, 0x3034280,2, 0x303428c,2, 0x30342a0,2, 0x30342ac,2, 0x30342c0,7, 0x30342e0,7, 0x3034300,2, 0x303430c,2, 0x3034320,6, 0x3034340,7, 0x3034360,6, 0x3034380,6, 0x30343a0,7, 0x30343c0,6, 0x30343e0,6, 0x3034400,3, 0x3034440,12, 0x3034484,1, 0x30344c0,16, 0x3034800,7, 0x3034820,14, 0x3034880,9, 0x30348a8,12, 0x3034900,7, 0x3034920,14, 0x3034980,9, 0x30349a8,12, 0x3034a00,10, 0x3034a40,2, 0x3034a4c,3, 0x3034c00,5, 0x3034c20,1, 0x3034c28,3, 0x3040000,37, 0x3040100,3, 0x3040110,15, 0x3040200,37, 0x3040300,3, 0x3040310,15, 0x3040400,5, 0x3040420,5, 0x3040440,18, 0x3040800,3, 0x3040810,2, 0x3040820,3, 0x3040830,2, 0x3040840,1, 0x3041000,12, 0x3041040,12, 0x3041080,2, 0x3041100,19, 0x3041180,19, 0x3041200,26, 0x3041400,20, 0x3041480,20, 0x3041500,8, 0x3041540,4, 0x3041580,15, 0x30415c0,15, 0x3041600,9, 0x3041630,5, 0x3042000,37, 0x3042100,3, 0x3042110,15, 0x3042200,37, 0x3042300,3, 0x3042310,15, 0x3042400,5, 0x3042420,5, 0x3042440,18, 0x3042800,3, 0x3042810,2, 0x3042820,3, 0x3042830,2, 0x3042840,1, 0x3043000,12, 0x3043040,12, 0x3043080,2, 0x3043100,19, 0x3043180,19, 0x3043200,26, 0x3043400,20, 0x3043480,20, 0x3043500,8, 0x3043540,4, 0x3043580,15, 0x30435c0,15, 0x3043600,9, 0x3043630,5, 0x3044000,6, 0x3044020,1, 0x304402c,3, 0x3044040,11, 0x3044070,3, 0x3044080,2, 0x3048000,49, 0x3048100,12, 0x3048140,4, 0x3048184,1, 0x3048198,2, 0x30481a4,1, 0x30481b8,7, 0x30481e0,4, 0x3048200,20, 0x3048280,3, 0x3048290,9, 0x30482c0,6, 0x30482e0,1, 0x30482e8,7, 0x3048400,49, 0x3048500,12, 0x3048540,4, 0x3048584,1, 0x3048598,2, 0x30485a4,1, 0x30485b8,7, 0x30485e0,4, 0x3048600,20, 0x3048680,3, 0x3048690,9, 0x30486c0,6, 0x30486e0,1, 0x30486e8,7, 0x3048800,49, 0x3048900,12, 0x3048940,4, 0x3048984,1, 0x3048998,2, 0x30489a4,1, 0x30489b8,7, 0x30489e0,4, 0x3048a00,20, 0x3048a80,3, 0x3048a90,9, 0x3048ac0,6, 0x3048ae0,1, 0x3048ae8,7, 0x3048c00,49, 0x3048d00,12, 0x3048d40,4, 0x3048d84,1, 0x3048d98,2, 0x3048da4,1, 0x3048db8,7, 0x3048de0,4, 0x3048e00,20, 0x3048e80,3, 0x3048e90,9, 0x3048ec0,6, 0x3048ee0,1, 0x3048ee8,7, 0x3049000,49, 0x3049100,12, 0x3049140,4, 0x3049184,1, 0x3049198,2, 0x30491a4,1, 0x30491b8,7, 0x30491e0,4, 0x3049200,20, 0x3049280,3, 0x3049290,9, 0x30492c0,6, 0x30492e0,1, 0x30492e8,7, 0x3049400,49, 0x3049500,12, 0x3049540,4, 0x3049584,1, 0x3049598,2, 0x30495a4,1, 0x30495b8,7, 0x30495e0,4, 0x3049600,20, 0x3049680,3, 0x3049690,9, 0x30496c0,6, 0x30496e0,1, 0x30496e8,7, 0x3049800,49, 0x3049900,12, 0x3049940,4, 0x3049984,1, 0x3049998,2, 0x30499a4,1, 0x30499b8,7, 0x30499e0,4, 0x3049a00,20, 0x3049a80,3, 0x3049a90,9, 0x3049ac0,6, 0x3049ae0,1, 0x3049ae8,7, 0x304a000,20, 0x304a080,2, 0x304a100,20, 0x304a180,2, 0x304a200,4, 0x304a400,20, 0x304a480,2, 0x304a500,20, 0x304a580,2, 0x304a600,4, 0x304a800,3, 0x304a840,12, 0x304a880,12, 0x304a8c0,12, 0x304a900,12, 0x304a940,12, 0x304a980,12, 0x304a9c0,12, 0x304aa00,12, 0x304ac00,12, 0x304ac40,7, 0x304ac60,10, 0x304b004,1, 0x304b018,40, 0x304b100,7, 0x304b120,7, 0x304b140,2, 0x304b14c,2, 0x304b160,2, 0x304b16c,2, 0x304b180,18, 0x304b200,2, 0x304b220,10, 0x304b260,20, 0x304b2c0,7, 0x304b300,15, 0x304b340,9, 0x304b380,6, 0x304b3a0,4, 0x304b400,4, 0x304c000,106, 0x304c200,2, 0x304c240,9, 0x304c280,7, 0x304c400,106, 0x304c604,6, 0x304c700,15, 0x304c740,9, 0x304c780,6, 0x304c7a0,6, 0x304c800,8, 0x304c824,1, 0x304c830,15, 0x304c870,3, 0x3060000,518, 0x3060900,45, 0x3060a00,45, 0x3060b00,45, 0x3060c00,45, 0x3060d00,45, 0x3060e00,45, 0x3060f00,45, 0x3061000,45, 0x3061800,9, 0x3061840,364, 0x3061e00,19, 0x3062000,9, 0x3062040,364, 0x3062600,19, 0x3062800,6, 0x3062820,3, 0x3062840,7, 0x3062880,6, 0x30628a0,3, 0x30628c0,7, 0x3062900,1, 0x3062908,3, 0x3062918,8, 0x3062940,7, 0x3063000,2, 0x3063800,18, 0x3063880,18, 0x3063c00,4, 0x3063c20,7, 0x3063d00,4, 0x3063d80,20, 0x3063e00,1, 0x3064000,21, 0x3064058,3, 0x3064100,1, 0x3064124,1, 0x306412c,5, 0x3064144,1, 0x306414c,6, 0x3064184,6, 0x30641a4,6, 0x30641c4,1, 0x30641cc,1, 0x3064400,9, 0x3064440,9, 0x3064480,15, 0x30644c0,15, 0x3064500,15, 0x3064540,15, 0x3064580,15, 0x30645c0,15, 0x3064600,15, 0x3064640,15, 0x3064680,59, 0x3064800,1, 0x3064808,16, 0x3064850,1, 0x3064858,7, 0x3068000,3, 0x3068010,1, 0x3068018,3, 0x306a000,4, 0x306a080,19, 0x306a100,12, 0x306a200,4, 0x306a280,19, 0x306a300,12, 0x306a400,2, 0x306a600,124, 0x306a800,4, 0x306a880,18, 0x306a900,4, 0x306a980,23, 0x306aa00,10, 0x306aa2c,2, 0x306aa40,2, 0x306aa4c,3, 0x306aa60,2, 0x306aa6c,3, 0x306aa80,2, 0x306aa8c,2, 0x306aaa0,2, 0x306aaac,2, 0x306aac0,2, 0x306aacc,2, 0x306ab00,4, 0x306ab40,15, 0x306ab80,3, 0x306ab90,7, 0x306abb0,3, 0x306abc0,3, 0x306abd0,3, 0x306abe0,1, 0x306ac00,17, 0x306ae00,15, 0x306ae40,4, 0x306ae60,17, 0x306aec0,6, 0x306aee0,4, 0x306aef4,11, 0x306af24,28, 0x306b000,1, 0x306b080,1, 0x306b0a0,5, 0x306b0c0,5, 0x306b0e0,5, 0x306b100,1, 0x306b120,5, 0x306b140,5, 0x306b160,5, 0x306b180,24, 0x306b200,5, 0x306c000,20, 0x3070000,518, 0x3070900,45, 0x3070a00,45, 0x3070b00,45, 0x3070c00,45, 0x3070d00,45, 0x3070e00,45, 0x3070f00,45, 0x3071000,45, 0x3071800,9, 0x3071840,364, 0x3071e00,19, 0x3072000,9, 0x3072040,364, 0x3072600,19, 0x3072800,6, 0x3072820,3, 0x3072840,7, 0x3072880,6, 0x30728a0,3, 0x30728c0,7, 0x3072900,1, 0x3072908,3, 0x3072918,8, 0x3072940,7, 0x3073000,2, 0x3073800,18, 0x3073880,18, 0x3073c00,4, 0x3073c20,7, 0x3073d00,4, 0x3073d80,20, 0x3073e00,1, 0x3074000,21, 0x3074058,3, 0x3074100,1, 0x3074124,1, 0x307412c,5, 0x3074144,1, 0x307414c,6, 0x3074184,6, 0x30741a4,6, 0x30741c4,1, 0x30741cc,1, 0x3074400,9, 0x3074440,9, 0x3074480,15, 0x30744c0,15, 0x3074500,15, 0x3074540,15, 0x3074580,15, 0x30745c0,15, 0x3074600,15, 0x3074640,15, 0x3074680,59, 0x3074800,1, 0x3074808,16, 0x3074850,1, 0x3074858,7, 0x3078000,3, 0x3078010,1, 0x3078018,3, 0x307a000,4, 0x307a080,19, 0x307a100,12, 0x307a200,4, 0x307a280,19, 0x307a300,12, 0x307a400,2, 0x307a600,124, 0x307a800,4, 0x307a880,18, 0x307a900,4, 0x307a980,23, 0x307aa00,10, 0x307aa2c,2, 0x307aa40,2, 0x307aa4c,3, 0x307aa60,2, 0x307aa6c,3, 0x307aa80,2, 0x307aa8c,2, 0x307aaa0,2, 0x307aaac,2, 0x307aac0,2, 0x307aacc,2, 0x307ab00,4, 0x307ab40,15, 0x307ab80,3, 0x307ab90,7, 0x307abb0,3, 0x307abc0,3, 0x307abd0,3, 0x307abe0,1, 0x307ac00,17, 0x307ae00,15, 0x307ae40,4, 0x307ae60,17, 0x307aec0,6, 0x307aee0,4, 0x307aef4,11, 0x307af24,28, 0x307b000,1, 0x307b080,1, 0x307b0a0,5, 0x307b0c0,5, 0x307b0e0,5, 0x307b100,1, 0x307b120,5, 0x307b140,5, 0x307b160,5, 0x307b180,24, 0x307b200,5, 0x307c000,20, 0x3080000,18, 0x3080050,3, 0x3080060,3, 0x3080070,14, 0x30800c0,5, 0x3080400,13, 0x3080440,2, 0x308044c,3, 0x3080460,2, 0x3080480,13, 0x30804c0,2, 0x30804cc,3, 0x30804e0,2, 0x3080500,1, 0x3080508,16, 0x3080560,2, 0x308056c,3, 0x3080600,4, 0x3080680,19, 0x3080800,24, 0x3080864,2, 0x3080870,4, 0x3080a00,27, 0x3080a80,4, 0x3080ac0,25, 0x3080b40,6, 0x3080b60,4, 0x3080b74,11, 0x3080ba4,8, 0x3080c00,3, 0x3080c10,3, 0x3080c20,1, 0x3080c40,11, 0x3080c80,23, 0x3080ce0,15, 0x3080d20,15, 0x3080d60,2, 0x3080d6c,2, 0x3080d80,1, 0x3081000,18, 0x3081050,3, 0x3081060,3, 0x3081070,14, 0x30810c0,5, 0x3081400,13, 0x3081440,2, 0x308144c,3, 0x3081460,2, 0x3081480,13, 0x30814c0,2, 0x30814cc,3, 0x30814e0,2, 0x3081500,1, 0x3081508,16, 0x3081560,2, 0x308156c,3, 0x3081600,4, 0x3081680,19, 0x3081800,24, 0x3081864,2, 0x3081870,4, 0x3081a00,27, 0x3081a80,4, 0x3081ac0,25, 0x3081b40,6, 0x3081b60,4, 0x3081b74,11, 0x3081ba4,8, 0x3081c00,3, 0x3081c10,3, 0x3081c20,1, 0x3081c40,11, 0x3081c80,23, 0x3081ce0,15, 0x3081d20,15, 0x3081d60,2, 0x3081d6c,2, 0x3081d80,1, 0x3082000,20, 0x3082080,7, 0x30820a0,1, 0x30820b0,1, 0x30820b8,2, 0x3084000,14, 0x3100000,534, 0x3101000,2, 0x3101040,9, 0x3101080,7, 0x3102000,534, 0x3103000,12, 0x3103044,6, 0x3103080,8, 0x31030a4,1, 0x31030c0,7, 0x31030e0,7, 0x3103100,7, 0x3103120,7, 0x3103140,8, 0x3103164,6, 0x3103180,12, 0x3104000,534, 0x3105000,2, 0x3105040,9, 0x3105080,7, 0x3106000,534, 0x3107000,12, 0x3107044,6, 0x3107080,8, 0x31070a4,1, 0x31070c0,7, 0x31070e0,7, 0x3107100,7, 0x3107120,7, 0x3107140,8, 0x3107164,6, 0x3107180,12, 0x3108004,5, 0x3108200,27, 0x3108280,4, 0x31082c0,25, 0x3108340,6, 0x3108360,4, 0x3108374,11, 0x31083a4,5, 0x3108400,1, 0x3110000,397, 0x3110800,93, 0x3110980,6, 0x3110a00,41, 0x3110b00,2, 0x3110b20,19, 0x3110c00,25, 0x3110c80,1, 0x3110d00,28, 0x3110d80,1, 0x3111000,397, 0x3111800,93, 0x3111980,6, 0x3111a00,41, 0x3111b00,2, 0x3111b20,19, 0x3111c00,25, 0x3111c80,1, 0x3111d00,28, 0x3111d80,1, 0x3112000,7, 0x3112040,9, 0x3112080,4, 0x31120a0,5, 0x31120c0,2, 0x3114000,3, 0x3114010,6, 0x3114200,7, 0x3114220,6, 0x3114240,7, 0x3114260,6, 0x3114280,2, 0x311428c,2, 0x31142a0,2, 0x31142ac,2, 0x31142c0,7, 0x31142e0,7, 0x3114300,2, 0x311430c,2, 0x3114320,6, 0x3114340,7, 0x3114360,6, 0x3114380,6, 0x31143a0,7, 0x31143c0,6, 0x31143e0,6, 0x3114400,3, 0x3114440,12, 0x3114484,1, 0x31144c0,16, 0x3114800,7, 0x3114820,14, 0x3114880,9, 0x31148a8,12, 0x3114900,7, 0x3114920,14, 0x3114980,9, 0x31149a8,12, 0x3114a00,10, 0x3114a40,2, 0x3114a4c,3, 0x3114c00,5, 0x3114c20,1, 0x3114c28,3, 0x3120000,534, 0x3121000,2, 0x3121040,9, 0x3121080,7, 0x3122000,534, 0x3123000,12, 0x3123044,6, 0x3123080,8, 0x31230a4,1, 0x31230c0,7, 0x31230e0,7, 0x3123100,7, 0x3123120,7, 0x3123140,8, 0x3123164,6, 0x3123180,12, 0x3124000,534, 0x3125000,2, 0x3125040,9, 0x3125080,7, 0x3126000,534, 0x3127000,12, 0x3127044,6, 0x3127080,8, 0x31270a4,1, 0x31270c0,7, 0x31270e0,7, 0x3127100,7, 0x3127120,7, 0x3127140,8, 0x3127164,6, 0x3127180,12, 0x3128004,5, 0x3128200,27, 0x3128280,4, 0x31282c0,25, 0x3128340,6, 0x3128360,4, 0x3128374,11, 0x31283a4,5, 0x3128400,1, 0x3130000,397, 0x3130800,93, 0x3130980,6, 0x3130a00,41, 0x3130b00,2, 0x3130b20,19, 0x3130c00,25, 0x3130c80,1, 0x3130d00,28, 0x3130d80,1, 0x3131000,397, 0x3131800,93, 0x3131980,6, 0x3131a00,41, 0x3131b00,2, 0x3131b20,19, 0x3131c00,25, 0x3131c80,1, 0x3131d00,28, 0x3131d80,1, 0x3132000,7, 0x3132040,9, 0x3132080,4, 0x31320a0,5, 0x31320c0,2, 0x3134000,3, 0x3134010,6, 0x3134200,7, 0x3134220,6, 0x3134240,7, 0x3134260,6, 0x3134280,2, 0x313428c,2, 0x31342a0,2, 0x31342ac,2, 0x31342c0,7, 0x31342e0,7, 0x3134300,2, 0x313430c,2, 0x3134320,6, 0x3134340,7, 0x3134360,6, 0x3134380,6, 0x31343a0,7, 0x31343c0,6, 0x31343e0,6, 0x3134400,3, 0x3134440,12, 0x3134484,1, 0x31344c0,16, 0x3134800,7, 0x3134820,14, 0x3134880,9, 0x31348a8,12, 0x3134900,7, 0x3134920,14, 0x3134980,9, 0x31349a8,12, 0x3134a00,10, 0x3134a40,2, 0x3134a4c,3, 0x3134c00,5, 0x3134c20,1, 0x3134c28,3, 0x3140000,37, 0x3140100,3, 0x3140110,15, 0x3140200,37, 0x3140300,3, 0x3140310,15, 0x3140400,5, 0x3140420,5, 0x3140440,18, 0x3140800,3, 0x3140810,2, 0x3140820,3, 0x3140830,2, 0x3140840,1, 0x3141000,12, 0x3141040,12, 0x3141080,2, 0x3141100,19, 0x3141180,19, 0x3141200,26, 0x3141400,20, 0x3141480,20, 0x3141500,8, 0x3141540,4, 0x3141580,15, 0x31415c0,15, 0x3141600,9, 0x3141630,5, 0x3142000,37, 0x3142100,3, 0x3142110,15, 0x3142200,37, 0x3142300,3, 0x3142310,15, 0x3142400,5, 0x3142420,5, 0x3142440,18, 0x3142800,3, 0x3142810,2, 0x3142820,3, 0x3142830,2, 0x3142840,1, 0x3143000,12, 0x3143040,12, 0x3143080,2, 0x3143100,19, 0x3143180,19, 0x3143200,26, 0x3143400,20, 0x3143480,20, 0x3143500,8, 0x3143540,4, 0x3143580,15, 0x31435c0,15, 0x3143600,9, 0x3143630,5, 0x3144000,6, 0x3144020,1, 0x314402c,3, 0x3144040,11, 0x3144070,3, 0x3144080,2, 0x3148000,49, 0x3148100,12, 0x3148140,4, 0x3148184,1, 0x3148198,2, 0x31481a4,1, 0x31481b8,7, 0x31481e0,4, 0x3148200,20, 0x3148280,3, 0x3148290,9, 0x31482c0,6, 0x31482e0,1, 0x31482e8,7, 0x3148400,49, 0x3148500,12, 0x3148540,4, 0x3148584,1, 0x3148598,2, 0x31485a4,1, 0x31485b8,7, 0x31485e0,4, 0x3148600,20, 0x3148680,3, 0x3148690,9, 0x31486c0,6, 0x31486e0,1, 0x31486e8,7, 0x3148800,49, 0x3148900,12, 0x3148940,4, 0x3148984,1, 0x3148998,2, 0x31489a4,1, 0x31489b8,7, 0x31489e0,4, 0x3148a00,20, 0x3148a80,3, 0x3148a90,9, 0x3148ac0,6, 0x3148ae0,1, 0x3148ae8,7, 0x3148c00,49, 0x3148d00,12, 0x3148d40,4, 0x3148d84,1, 0x3148d98,2, 0x3148da4,1, 0x3148db8,7, 0x3148de0,4, 0x3148e00,20, 0x3148e80,3, 0x3148e90,9, 0x3148ec0,6, 0x3148ee0,1, 0x3148ee8,7, 0x3149000,49, 0x3149100,12, 0x3149140,4, 0x3149184,1, 0x3149198,2, 0x31491a4,1, 0x31491b8,7, 0x31491e0,4, 0x3149200,20, 0x3149280,3, 0x3149290,9, 0x31492c0,6, 0x31492e0,1, 0x31492e8,7, 0x3149400,49, 0x3149500,12, 0x3149540,4, 0x3149584,1, 0x3149598,2, 0x31495a4,1, 0x31495b8,7, 0x31495e0,4, 0x3149600,20, 0x3149680,3, 0x3149690,9, 0x31496c0,6, 0x31496e0,1, 0x31496e8,7, 0x3149800,49, 0x3149900,12, 0x3149940,4, 0x3149984,1, 0x3149998,2, 0x31499a4,1, 0x31499b8,7, 0x31499e0,4, 0x3149a00,20, 0x3149a80,3, 0x3149a90,9, 0x3149ac0,6, 0x3149ae0,1, 0x3149ae8,7, 0x314a000,20, 0x314a080,2, 0x314a100,20, 0x314a180,2, 0x314a200,4, 0x314a400,20, 0x314a480,2, 0x314a500,20, 0x314a580,2, 0x314a600,4, 0x314a800,3, 0x314a840,12, 0x314a880,12, 0x314a8c0,12, 0x314a900,12, 0x314a940,12, 0x314a980,12, 0x314a9c0,12, 0x314aa00,12, 0x314ac00,12, 0x314ac40,7, 0x314ac60,10, 0x314b004,1, 0x314b018,40, 0x314b100,7, 0x314b120,7, 0x314b140,2, 0x314b14c,2, 0x314b160,2, 0x314b16c,2, 0x314b180,18, 0x314b200,2, 0x314b220,10, 0x314b260,20, 0x314b2c0,7, 0x314b300,15, 0x314b340,9, 0x314b380,6, 0x314b3a0,4, 0x314b400,4, 0x314c000,106, 0x314c200,2, 0x314c240,9, 0x314c280,7, 0x314c400,106, 0x314c604,6, 0x314c700,15, 0x314c740,9, 0x314c780,6, 0x314c7a0,6, 0x314c800,8, 0x314c824,1, 0x314c830,15, 0x314c870,3, 0x3160000,518, 0x3160900,45, 0x3160a00,45, 0x3160b00,45, 0x3160c00,45, 0x3160d00,45, 0x3160e00,45, 0x3160f00,45, 0x3161000,45, 0x3161800,9, 0x3161840,364, 0x3161e00,19, 0x3162000,9, 0x3162040,364, 0x3162600,19, 0x3162800,6, 0x3162820,3, 0x3162840,7, 0x3162880,6, 0x31628a0,3, 0x31628c0,7, 0x3162900,1, 0x3162908,3, 0x3162918,8, 0x3162940,7, 0x3163000,2, 0x3163800,18, 0x3163880,18, 0x3163c00,4, 0x3163c20,7, 0x3163d00,4, 0x3163d80,20, 0x3163e00,1, 0x3164000,21, 0x3164058,3, 0x3164100,1, 0x3164124,1, 0x316412c,5, 0x3164144,1, 0x316414c,6, 0x3164184,6, 0x31641a4,6, 0x31641c4,1, 0x31641cc,1, 0x3164400,9, 0x3164440,9, 0x3164480,15, 0x31644c0,15, 0x3164500,15, 0x3164540,15, 0x3164580,15, 0x31645c0,15, 0x3164600,15, 0x3164640,15, 0x3164680,59, 0x3164800,1, 0x3164808,16, 0x3164850,1, 0x3164858,7, 0x3168000,3, 0x3168010,1, 0x3168018,3, 0x316a000,4, 0x316a080,19, 0x316a100,12, 0x316a200,4, 0x316a280,19, 0x316a300,12, 0x316a400,2, 0x316a600,124, 0x316a800,4, 0x316a880,18, 0x316a900,4, 0x316a980,23, 0x316aa00,10, 0x316aa2c,2, 0x316aa40,2, 0x316aa4c,3, 0x316aa60,2, 0x316aa6c,3, 0x316aa80,2, 0x316aa8c,2, 0x316aaa0,2, 0x316aaac,2, 0x316aac0,2, 0x316aacc,2, 0x316ab00,4, 0x316ab40,15, 0x316ab80,3, 0x316ab90,7, 0x316abb0,3, 0x316abc0,3, 0x316abd0,3, 0x316abe0,1, 0x316ac00,17, 0x316ae00,15, 0x316ae40,4, 0x316ae60,17, 0x316aec0,6, 0x316aee0,4, 0x316aef4,11, 0x316af24,28, 0x316b000,1, 0x316b080,1, 0x316b0a0,5, 0x316b0c0,5, 0x316b0e0,5, 0x316b100,1, 0x316b120,5, 0x316b140,5, 0x316b160,5, 0x316b180,24, 0x316b200,5, 0x316c000,20, 0x3170000,518, 0x3170900,45, 0x3170a00,45, 0x3170b00,45, 0x3170c00,45, 0x3170d00,45, 0x3170e00,45, 0x3170f00,45, 0x3171000,45, 0x3171800,9, 0x3171840,364, 0x3171e00,19, 0x3172000,9, 0x3172040,364, 0x3172600,19, 0x3172800,6, 0x3172820,3, 0x3172840,7, 0x3172880,6, 0x31728a0,3, 0x31728c0,7, 0x3172900,1, 0x3172908,3, 0x3172918,8, 0x3172940,7, 0x3173000,2, 0x3173800,18, 0x3173880,18, 0x3173c00,4, 0x3173c20,7, 0x3173d00,4, 0x3173d80,20, 0x3173e00,1, 0x3174000,21, 0x3174058,3, 0x3174100,1, 0x3174124,1, 0x317412c,5, 0x3174144,1, 0x317414c,6, 0x3174184,6, 0x31741a4,6, 0x31741c4,1, 0x31741cc,1, 0x3174400,9, 0x3174440,9, 0x3174480,15, 0x31744c0,15, 0x3174500,15, 0x3174540,15, 0x3174580,15, 0x31745c0,15, 0x3174600,15, 0x3174640,15, 0x3174680,59, 0x3174800,1, 0x3174808,16, 0x3174850,1, 0x3174858,7, 0x3178000,3, 0x3178010,1, 0x3178018,3, 0x317a000,4, 0x317a080,19, 0x317a100,12, 0x317a200,4, 0x317a280,19, 0x317a300,12, 0x317a400,2, 0x317a600,124, 0x317a800,4, 0x317a880,18, 0x317a900,4, 0x317a980,23, 0x317aa00,10, 0x317aa2c,2, 0x317aa40,2, 0x317aa4c,3, 0x317aa60,2, 0x317aa6c,3, 0x317aa80,2, 0x317aa8c,2, 0x317aaa0,2, 0x317aaac,2, 0x317aac0,2, 0x317aacc,2, 0x317ab00,4, 0x317ab40,15, 0x317ab80,3, 0x317ab90,7, 0x317abb0,3, 0x317abc0,3, 0x317abd0,3, 0x317abe0,1, 0x317ac00,17, 0x317ae00,15, 0x317ae40,4, 0x317ae60,17, 0x317aec0,6, 0x317aee0,4, 0x317aef4,11, 0x317af24,28, 0x317b000,1, 0x317b080,1, 0x317b0a0,5, 0x317b0c0,5, 0x317b0e0,5, 0x317b100,1, 0x317b120,5, 0x317b140,5, 0x317b160,5, 0x317b180,24, 0x317b200,5, 0x317c000,20, 0x3180000,18, 0x3180050,3, 0x3180060,3, 0x3180070,14, 0x31800c0,5, 0x3180400,13, 0x3180440,2, 0x318044c,3, 0x3180460,2, 0x3180480,13, 0x31804c0,2, 0x31804cc,3, 0x31804e0,2, 0x3180500,1, 0x3180508,16, 0x3180560,2, 0x318056c,3, 0x3180600,4, 0x3180680,19, 0x3180800,24, 0x3180864,2, 0x3180870,4, 0x3180a00,27, 0x3180a80,4, 0x3180ac0,25, 0x3180b40,6, 0x3180b60,4, 0x3180b74,11, 0x3180ba4,8, 0x3180c00,3, 0x3180c10,3, 0x3180c20,1, 0x3180c40,11, 0x3180c80,23, 0x3180ce0,15, 0x3180d20,15, 0x3180d60,2, 0x3180d6c,2, 0x3180d80,1, 0x3181000,18, 0x3181050,3, 0x3181060,3, 0x3181070,14, 0x31810c0,5, 0x3181400,13, 0x3181440,2, 0x318144c,3, 0x3181460,2, 0x3181480,13, 0x31814c0,2, 0x31814cc,3, 0x31814e0,2, 0x3181500,1, 0x3181508,16, 0x3181560,2, 0x318156c,3, 0x3181600,4, 0x3181680,19, 0x3181800,24, 0x3181864,2, 0x3181870,4, 0x3181a00,27, 0x3181a80,4, 0x3181ac0,25, 0x3181b40,6, 0x3181b60,4, 0x3181b74,11, 0x3181ba4,8, 0x3181c00,3, 0x3181c10,3, 0x3181c20,1, 0x3181c40,11, 0x3181c80,23, 0x3181ce0,15, 0x3181d20,15, 0x3181d60,2, 0x3181d6c,2, 0x3181d80,1, 0x3182000,20, 0x3182080,7, 0x31820a0,1, 0x31820b0,1, 0x31820b8,2, 0x3184000,14, 0x3200000,534, 0x3201000,2, 0x3201040,9, 0x3201080,7, 0x3202000,534, 0x3203000,12, 0x3203044,6, 0x3203080,8, 0x32030a4,1, 0x32030c0,7, 0x32030e0,7, 0x3203100,7, 0x3203120,7, 0x3203140,8, 0x3203164,6, 0x3203180,12, 0x3204000,534, 0x3205000,2, 0x3205040,9, 0x3205080,7, 0x3206000,534, 0x3207000,12, 0x3207044,6, 0x3207080,8, 0x32070a4,1, 0x32070c0,7, 0x32070e0,7, 0x3207100,7, 0x3207120,7, 0x3207140,8, 0x3207164,6, 0x3207180,12, 0x3208004,5, 0x3208200,27, 0x3208280,4, 0x32082c0,25, 0x3208340,6, 0x3208360,4, 0x3208374,11, 0x32083a4,5, 0x3208400,1, 0x3210000,397, 0x3210800,93, 0x3210980,6, 0x3210a00,41, 0x3210b00,2, 0x3210b20,19, 0x3210c00,25, 0x3210c80,1, 0x3210d00,28, 0x3210d80,1, 0x3211000,397, 0x3211800,93, 0x3211980,6, 0x3211a00,41, 0x3211b00,2, 0x3211b20,19, 0x3211c00,25, 0x3211c80,1, 0x3211d00,28, 0x3211d80,1, 0x3212000,7, 0x3212040,9, 0x3212080,4, 0x32120a0,5, 0x32120c0,2, 0x3214000,3, 0x3214010,6, 0x3214200,7, 0x3214220,6, 0x3214240,7, 0x3214260,6, 0x3214280,2, 0x321428c,2, 0x32142a0,2, 0x32142ac,2, 0x32142c0,7, 0x32142e0,7, 0x3214300,2, 0x321430c,2, 0x3214320,6, 0x3214340,7, 0x3214360,6, 0x3214380,6, 0x32143a0,7, 0x32143c0,6, 0x32143e0,6, 0x3214400,3, 0x3214440,12, 0x3214484,1, 0x32144c0,16, 0x3214800,7, 0x3214820,14, 0x3214880,9, 0x32148a8,12, 0x3214900,7, 0x3214920,14, 0x3214980,9, 0x32149a8,12, 0x3214a00,10, 0x3214a40,2, 0x3214a4c,3, 0x3214c00,5, 0x3214c20,1, 0x3214c28,3, 0x3220000,534, 0x3221000,2, 0x3221040,9, 0x3221080,7, 0x3222000,534, 0x3223000,12, 0x3223044,6, 0x3223080,8, 0x32230a4,1, 0x32230c0,7, 0x32230e0,7, 0x3223100,7, 0x3223120,7, 0x3223140,8, 0x3223164,6, 0x3223180,12, 0x3224000,534, 0x3225000,2, 0x3225040,9, 0x3225080,7, 0x3226000,534, 0x3227000,12, 0x3227044,6, 0x3227080,8, 0x32270a4,1, 0x32270c0,7, 0x32270e0,7, 0x3227100,7, 0x3227120,7, 0x3227140,8, 0x3227164,6, 0x3227180,12, 0x3228004,5, 0x3228200,27, 0x3228280,4, 0x32282c0,25, 0x3228340,6, 0x3228360,4, 0x3228374,11, 0x32283a4,5, 0x3228400,1, 0x3230000,397, 0x3230800,93, 0x3230980,6, 0x3230a00,41, 0x3230b00,2, 0x3230b20,19, 0x3230c00,25, 0x3230c80,1, 0x3230d00,28, 0x3230d80,1, 0x3231000,397, 0x3231800,93, 0x3231980,6, 0x3231a00,41, 0x3231b00,2, 0x3231b20,19, 0x3231c00,25, 0x3231c80,1, 0x3231d00,28, 0x3231d80,1, 0x3232000,7, 0x3232040,9, 0x3232080,4, 0x32320a0,5, 0x32320c0,2, 0x3234000,3, 0x3234010,6, 0x3234200,7, 0x3234220,6, 0x3234240,7, 0x3234260,6, 0x3234280,2, 0x323428c,2, 0x32342a0,2, 0x32342ac,2, 0x32342c0,7, 0x32342e0,7, 0x3234300,2, 0x323430c,2, 0x3234320,6, 0x3234340,7, 0x3234360,6, 0x3234380,6, 0x32343a0,7, 0x32343c0,6, 0x32343e0,6, 0x3234400,3, 0x3234440,12, 0x3234484,1, 0x32344c0,16, 0x3234800,7, 0x3234820,14, 0x3234880,9, 0x32348a8,12, 0x3234900,7, 0x3234920,14, 0x3234980,9, 0x32349a8,12, 0x3234a00,10, 0x3234a40,2, 0x3234a4c,3, 0x3234c00,5, 0x3234c20,1, 0x3234c28,3, 0x3240000,37, 0x3240100,3, 0x3240110,15, 0x3240200,37, 0x3240300,3, 0x3240310,15, 0x3240400,5, 0x3240420,5, 0x3240440,18, 0x3240800,3, 0x3240810,2, 0x3240820,3, 0x3240830,2, 0x3240840,1, 0x3241000,12, 0x3241040,12, 0x3241080,2, 0x3241100,19, 0x3241180,19, 0x3241200,26, 0x3241400,20, 0x3241480,20, 0x3241500,8, 0x3241540,4, 0x3241580,15, 0x32415c0,15, 0x3241600,9, 0x3241630,5, 0x3242000,37, 0x3242100,3, 0x3242110,15, 0x3242200,37, 0x3242300,3, 0x3242310,15, 0x3242400,5, 0x3242420,5, 0x3242440,18, 0x3242800,3, 0x3242810,2, 0x3242820,3, 0x3242830,2, 0x3242840,1, 0x3243000,12, 0x3243040,12, 0x3243080,2, 0x3243100,19, 0x3243180,19, 0x3243200,26, 0x3243400,20, 0x3243480,20, 0x3243500,8, 0x3243540,4, 0x3243580,15, 0x32435c0,15, 0x3243600,9, 0x3243630,5, 0x3244000,6, 0x3244020,1, 0x324402c,3, 0x3244040,11, 0x3244070,3, 0x3244080,2, 0x3248000,49, 0x3248100,12, 0x3248140,4, 0x3248184,1, 0x3248198,2, 0x32481a4,1, 0x32481b8,7, 0x32481e0,4, 0x3248200,20, 0x3248280,3, 0x3248290,9, 0x32482c0,6, 0x32482e0,1, 0x32482e8,7, 0x3248400,49, 0x3248500,12, 0x3248540,4, 0x3248584,1, 0x3248598,2, 0x32485a4,1, 0x32485b8,7, 0x32485e0,4, 0x3248600,20, 0x3248680,3, 0x3248690,9, 0x32486c0,6, 0x32486e0,1, 0x32486e8,7, 0x3248800,49, 0x3248900,12, 0x3248940,4, 0x3248984,1, 0x3248998,2, 0x32489a4,1, 0x32489b8,7, 0x32489e0,4, 0x3248a00,20, 0x3248a80,3, 0x3248a90,9, 0x3248ac0,6, 0x3248ae0,1, 0x3248ae8,7, 0x3248c00,49, 0x3248d00,12, 0x3248d40,4, 0x3248d84,1, 0x3248d98,2, 0x3248da4,1, 0x3248db8,7, 0x3248de0,4, 0x3248e00,20, 0x3248e80,3, 0x3248e90,9, 0x3248ec0,6, 0x3248ee0,1, 0x3248ee8,7, 0x3249000,49, 0x3249100,12, 0x3249140,4, 0x3249184,1, 0x3249198,2, 0x32491a4,1, 0x32491b8,7, 0x32491e0,4, 0x3249200,20, 0x3249280,3, 0x3249290,9, 0x32492c0,6, 0x32492e0,1, 0x32492e8,7, 0x3249400,49, 0x3249500,12, 0x3249540,4, 0x3249584,1, 0x3249598,2, 0x32495a4,1, 0x32495b8,7, 0x32495e0,4, 0x3249600,20, 0x3249680,3, 0x3249690,9, 0x32496c0,6, 0x32496e0,1, 0x32496e8,7, 0x3249800,49, 0x3249900,12, 0x3249940,4, 0x3249984,1, 0x3249998,2, 0x32499a4,1, 0x32499b8,7, 0x32499e0,4, 0x3249a00,20, 0x3249a80,3, 0x3249a90,9, 0x3249ac0,6, 0x3249ae0,1, 0x3249ae8,7, 0x324a000,20, 0x324a080,2, 0x324a100,20, 0x324a180,2, 0x324a200,4, 0x324a400,20, 0x324a480,2, 0x324a500,20, 0x324a580,2, 0x324a600,4, 0x324a800,3, 0x324a840,12, 0x324a880,12, 0x324a8c0,12, 0x324a900,12, 0x324a940,12, 0x324a980,12, 0x324a9c0,12, 0x324aa00,12, 0x324ac00,12, 0x324ac40,7, 0x324ac60,10, 0x324b004,1, 0x324b018,40, 0x324b100,7, 0x324b120,7, 0x324b140,2, 0x324b14c,2, 0x324b160,2, 0x324b16c,2, 0x324b180,18, 0x324b200,2, 0x324b220,10, 0x324b260,20, 0x324b2c0,7, 0x324b300,15, 0x324b340,9, 0x324b380,6, 0x324b3a0,4, 0x324b400,4, 0x324c000,106, 0x324c200,2, 0x324c240,9, 0x324c280,7, 0x324c400,106, 0x324c604,6, 0x324c700,15, 0x324c740,9, 0x324c780,6, 0x324c7a0,6, 0x324c800,8, 0x324c824,1, 0x324c830,15, 0x324c870,3, 0x3260000,518, 0x3260900,45, 0x3260a00,45, 0x3260b00,45, 0x3260c00,45, 0x3260d00,45, 0x3260e00,45, 0x3260f00,45, 0x3261000,45, 0x3261800,9, 0x3261840,364, 0x3261e00,19, 0x3262000,9, 0x3262040,364, 0x3262600,19, 0x3262800,6, 0x3262820,3, 0x3262840,7, 0x3262880,6, 0x32628a0,3, 0x32628c0,7, 0x3262900,1, 0x3262908,3, 0x3262918,8, 0x3262940,7, 0x3263000,2, 0x3263800,18, 0x3263880,18, 0x3263c00,4, 0x3263c20,7, 0x3263d00,4, 0x3263d80,20, 0x3263e00,1, 0x3264000,21, 0x3264058,3, 0x3264100,1, 0x3264124,1, 0x326412c,5, 0x3264144,1, 0x326414c,6, 0x3264184,6, 0x32641a4,6, 0x32641c4,1, 0x32641cc,1, 0x3264400,9, 0x3264440,9, 0x3264480,15, 0x32644c0,15, 0x3264500,15, 0x3264540,15, 0x3264580,15, 0x32645c0,15, 0x3264600,15, 0x3264640,15, 0x3264680,59, 0x3264800,1, 0x3264808,16, 0x3264850,1, 0x3264858,7, 0x3268000,3, 0x3268010,1, 0x3268018,3, 0x326a000,4, 0x326a080,19, 0x326a100,12, 0x326a200,4, 0x326a280,19, 0x326a300,12, 0x326a400,2, 0x326a600,124, 0x326a800,4, 0x326a880,18, 0x326a900,4, 0x326a980,23, 0x326aa00,10, 0x326aa2c,2, 0x326aa40,2, 0x326aa4c,3, 0x326aa60,2, 0x326aa6c,3, 0x326aa80,2, 0x326aa8c,2, 0x326aaa0,2, 0x326aaac,2, 0x326aac0,2, 0x326aacc,2, 0x326ab00,4, 0x326ab40,15, 0x326ab80,3, 0x326ab90,7, 0x326abb0,3, 0x326abc0,3, 0x326abd0,3, 0x326abe0,1, 0x326ac00,17, 0x326ae00,15, 0x326ae40,4, 0x326ae60,17, 0x326aec0,6, 0x326aee0,4, 0x326aef4,11, 0x326af24,28, 0x326b000,1, 0x326b080,1, 0x326b0a0,5, 0x326b0c0,5, 0x326b0e0,5, 0x326b100,1, 0x326b120,5, 0x326b140,5, 0x326b160,5, 0x326b180,24, 0x326b200,5, 0x326c000,20, 0x3270000,518, 0x3270900,45, 0x3270a00,45, 0x3270b00,45, 0x3270c00,45, 0x3270d00,45, 0x3270e00,45, 0x3270f00,45, 0x3271000,45, 0x3271800,9, 0x3271840,364, 0x3271e00,19, 0x3272000,9, 0x3272040,364, 0x3272600,19, 0x3272800,6, 0x3272820,3, 0x3272840,7, 0x3272880,6, 0x32728a0,3, 0x32728c0,7, 0x3272900,1, 0x3272908,3, 0x3272918,8, 0x3272940,7, 0x3273000,2, 0x3273800,18, 0x3273880,18, 0x3273c00,4, 0x3273c20,7, 0x3273d00,4, 0x3273d80,20, 0x3273e00,1, 0x3274000,21, 0x3274058,3, 0x3274100,1, 0x3274124,1, 0x327412c,5, 0x3274144,1, 0x327414c,6, 0x3274184,6, 0x32741a4,6, 0x32741c4,1, 0x32741cc,1, 0x3274400,9, 0x3274440,9, 0x3274480,15, 0x32744c0,15, 0x3274500,15, 0x3274540,15, 0x3274580,15, 0x32745c0,15, 0x3274600,15, 0x3274640,15, 0x3274680,59, 0x3274800,1, 0x3274808,16, 0x3274850,1, 0x3274858,7, 0x3278000,3, 0x3278010,1, 0x3278018,3, 0x327a000,4, 0x327a080,19, 0x327a100,12, 0x327a200,4, 0x327a280,19, 0x327a300,12, 0x327a400,2, 0x327a600,124, 0x327a800,4, 0x327a880,18, 0x327a900,4, 0x327a980,23, 0x327aa00,10, 0x327aa2c,2, 0x327aa40,2, 0x327aa4c,3, 0x327aa60,2, 0x327aa6c,3, 0x327aa80,2, 0x327aa8c,2, 0x327aaa0,2, 0x327aaac,2, 0x327aac0,2, 0x327aacc,2, 0x327ab00,4, 0x327ab40,15, 0x327ab80,3, 0x327ab90,7, 0x327abb0,3, 0x327abc0,3, 0x327abd0,3, 0x327abe0,1, 0x327ac00,17, 0x327ae00,15, 0x327ae40,4, 0x327ae60,17, 0x327aec0,6, 0x327aee0,4, 0x327aef4,11, 0x327af24,28, 0x327b000,1, 0x327b080,1, 0x327b0a0,5, 0x327b0c0,5, 0x327b0e0,5, 0x327b100,1, 0x327b120,5, 0x327b140,5, 0x327b160,5, 0x327b180,24, 0x327b200,5, 0x327c000,20, 0x3280000,18, 0x3280050,3, 0x3280060,3, 0x3280070,14, 0x32800c0,5, 0x3280400,13, 0x3280440,2, 0x328044c,3, 0x3280460,2, 0x3280480,13, 0x32804c0,2, 0x32804cc,3, 0x32804e0,2, 0x3280500,1, 0x3280508,16, 0x3280560,2, 0x328056c,3, 0x3280600,4, 0x3280680,19, 0x3280800,24, 0x3280864,2, 0x3280870,4, 0x3280a00,27, 0x3280a80,4, 0x3280ac0,25, 0x3280b40,6, 0x3280b60,4, 0x3280b74,11, 0x3280ba4,8, 0x3280c00,3, 0x3280c10,3, 0x3280c20,1, 0x3280c40,11, 0x3280c80,23, 0x3280ce0,15, 0x3280d20,15, 0x3280d60,2, 0x3280d6c,2, 0x3280d80,1, 0x3281000,18, 0x3281050,3, 0x3281060,3, 0x3281070,14, 0x32810c0,5, 0x3281400,13, 0x3281440,2, 0x328144c,3, 0x3281460,2, 0x3281480,13, 0x32814c0,2, 0x32814cc,3, 0x32814e0,2, 0x3281500,1, 0x3281508,16, 0x3281560,2, 0x328156c,3, 0x3281600,4, 0x3281680,19, 0x3281800,24, 0x3281864,2, 0x3281870,4, 0x3281a00,27, 0x3281a80,4, 0x3281ac0,25, 0x3281b40,6, 0x3281b60,4, 0x3281b74,11, 0x3281ba4,8, 0x3281c00,3, 0x3281c10,3, 0x3281c20,1, 0x3281c40,11, 0x3281c80,23, 0x3281ce0,15, 0x3281d20,15, 0x3281d60,2, 0x3281d6c,2, 0x3281d80,1, 0x3282000,20, 0x3282080,7, 0x32820a0,1, 0x32820b0,1, 0x32820b8,2, 0x3284000,14, 0x3300000,534, 0x3301000,2, 0x3301040,9, 0x3301080,7, 0x3302000,534, 0x3303000,12, 0x3303044,6, 0x3303080,8, 0x33030a4,1, 0x33030c0,7, 0x33030e0,7, 0x3303100,7, 0x3303120,7, 0x3303140,8, 0x3303164,6, 0x3303180,12, 0x3304000,534, 0x3305000,2, 0x3305040,9, 0x3305080,7, 0x3306000,534, 0x3307000,12, 0x3307044,6, 0x3307080,8, 0x33070a4,1, 0x33070c0,7, 0x33070e0,7, 0x3307100,7, 0x3307120,7, 0x3307140,8, 0x3307164,6, 0x3307180,12, 0x3308004,5, 0x3308200,27, 0x3308280,4, 0x33082c0,25, 0x3308340,6, 0x3308360,4, 0x3308374,11, 0x33083a4,5, 0x3308400,1, 0x3310000,397, 0x3310800,93, 0x3310980,6, 0x3310a00,41, 0x3310b00,2, 0x3310b20,19, 0x3310c00,25, 0x3310c80,1, 0x3310d00,28, 0x3310d80,1, 0x3311000,397, 0x3311800,93, 0x3311980,6, 0x3311a00,41, 0x3311b00,2, 0x3311b20,19, 0x3311c00,25, 0x3311c80,1, 0x3311d00,28, 0x3311d80,1, 0x3312000,7, 0x3312040,9, 0x3312080,4, 0x33120a0,5, 0x33120c0,2, 0x3314000,3, 0x3314010,6, 0x3314200,7, 0x3314220,6, 0x3314240,7, 0x3314260,6, 0x3314280,2, 0x331428c,2, 0x33142a0,2, 0x33142ac,2, 0x33142c0,7, 0x33142e0,7, 0x3314300,2, 0x331430c,2, 0x3314320,6, 0x3314340,7, 0x3314360,6, 0x3314380,6, 0x33143a0,7, 0x33143c0,6, 0x33143e0,6, 0x3314400,3, 0x3314440,12, 0x3314484,1, 0x33144c0,16, 0x3314800,7, 0x3314820,14, 0x3314880,9, 0x33148a8,12, 0x3314900,7, 0x3314920,14, 0x3314980,9, 0x33149a8,12, 0x3314a00,10, 0x3314a40,2, 0x3314a4c,3, 0x3314c00,5, 0x3314c20,1, 0x3314c28,3, 0x3320000,534, 0x3321000,2, 0x3321040,9, 0x3321080,7, 0x3322000,534, 0x3323000,12, 0x3323044,6, 0x3323080,8, 0x33230a4,1, 0x33230c0,7, 0x33230e0,7, 0x3323100,7, 0x3323120,7, 0x3323140,8, 0x3323164,6, 0x3323180,12, 0x3324000,534, 0x3325000,2, 0x3325040,9, 0x3325080,7, 0x3326000,534, 0x3327000,12, 0x3327044,6, 0x3327080,8, 0x33270a4,1, 0x33270c0,7, 0x33270e0,7, 0x3327100,7, 0x3327120,7, 0x3327140,8, 0x3327164,6, 0x3327180,12, 0x3328004,5, 0x3328200,27, 0x3328280,4, 0x33282c0,25, 0x3328340,6, 0x3328360,4, 0x3328374,11, 0x33283a4,5, 0x3328400,1, 0x3330000,397, 0x3330800,93, 0x3330980,6, 0x3330a00,41, 0x3330b00,2, 0x3330b20,19, 0x3330c00,25, 0x3330c80,1, 0x3330d00,28, 0x3330d80,1, 0x3331000,397, 0x3331800,93, 0x3331980,6, 0x3331a00,41, 0x3331b00,2, 0x3331b20,19, 0x3331c00,25, 0x3331c80,1, 0x3331d00,28, 0x3331d80,1, 0x3332000,7, 0x3332040,9, 0x3332080,4, 0x33320a0,5, 0x33320c0,2, 0x3334000,3, 0x3334010,6, 0x3334200,7, 0x3334220,6, 0x3334240,7, 0x3334260,6, 0x3334280,2, 0x333428c,2, 0x33342a0,2, 0x33342ac,2, 0x33342c0,7, 0x33342e0,7, 0x3334300,2, 0x333430c,2, 0x3334320,6, 0x3334340,7, 0x3334360,6, 0x3334380,6, 0x33343a0,7, 0x33343c0,6, 0x33343e0,6, 0x3334400,3, 0x3334440,12, 0x3334484,1, 0x33344c0,16, 0x3334800,7, 0x3334820,14, 0x3334880,9, 0x33348a8,12, 0x3334900,7, 0x3334920,14, 0x3334980,9, 0x33349a8,12, 0x3334a00,10, 0x3334a40,2, 0x3334a4c,3, 0x3334c00,5, 0x3334c20,1, 0x3334c28,3, 0x3340000,37, 0x3340100,3, 0x3340110,15, 0x3340200,37, 0x3340300,3, 0x3340310,15, 0x3340400,5, 0x3340420,5, 0x3340440,18, 0x3340800,3, 0x3340810,2, 0x3340820,3, 0x3340830,2, 0x3340840,1, 0x3341000,12, 0x3341040,12, 0x3341080,2, 0x3341100,19, 0x3341180,19, 0x3341200,26, 0x3341400,20, 0x3341480,20, 0x3341500,8, 0x3341540,4, 0x3341580,15, 0x33415c0,15, 0x3341600,9, 0x3341630,5, 0x3342000,37, 0x3342100,3, 0x3342110,15, 0x3342200,37, 0x3342300,3, 0x3342310,15, 0x3342400,5, 0x3342420,5, 0x3342440,18, 0x3342800,3, 0x3342810,2, 0x3342820,3, 0x3342830,2, 0x3342840,1, 0x3343000,12, 0x3343040,12, 0x3343080,2, 0x3343100,19, 0x3343180,19, 0x3343200,26, 0x3343400,20, 0x3343480,20, 0x3343500,8, 0x3343540,4, 0x3343580,15, 0x33435c0,15, 0x3343600,9, 0x3343630,5, 0x3344000,6, 0x3344020,1, 0x334402c,3, 0x3344040,11, 0x3344070,3, 0x3344080,2, 0x3348000,49, 0x3348100,12, 0x3348140,4, 0x3348184,1, 0x3348198,2, 0x33481a4,1, 0x33481b8,7, 0x33481e0,4, 0x3348200,20, 0x3348280,3, 0x3348290,9, 0x33482c0,6, 0x33482e0,1, 0x33482e8,7, 0x3348400,49, 0x3348500,12, 0x3348540,4, 0x3348584,1, 0x3348598,2, 0x33485a4,1, 0x33485b8,7, 0x33485e0,4, 0x3348600,20, 0x3348680,3, 0x3348690,9, 0x33486c0,6, 0x33486e0,1, 0x33486e8,7, 0x3348800,49, 0x3348900,12, 0x3348940,4, 0x3348984,1, 0x3348998,2, 0x33489a4,1, 0x33489b8,7, 0x33489e0,4, 0x3348a00,20, 0x3348a80,3, 0x3348a90,9, 0x3348ac0,6, 0x3348ae0,1, 0x3348ae8,7, 0x3348c00,49, 0x3348d00,12, 0x3348d40,4, 0x3348d84,1, 0x3348d98,2, 0x3348da4,1, 0x3348db8,7, 0x3348de0,4, 0x3348e00,20, 0x3348e80,3, 0x3348e90,9, 0x3348ec0,6, 0x3348ee0,1, 0x3348ee8,7, 0x3349000,49, 0x3349100,12, 0x3349140,4, 0x3349184,1, 0x3349198,2, 0x33491a4,1, 0x33491b8,7, 0x33491e0,4, 0x3349200,20, 0x3349280,3, 0x3349290,9, 0x33492c0,6, 0x33492e0,1, 0x33492e8,7, 0x3349400,49, 0x3349500,12, 0x3349540,4, 0x3349584,1, 0x3349598,2, 0x33495a4,1, 0x33495b8,7, 0x33495e0,4, 0x3349600,20, 0x3349680,3, 0x3349690,9, 0x33496c0,6, 0x33496e0,1, 0x33496e8,7, 0x3349800,49, 0x3349900,12, 0x3349940,4, 0x3349984,1, 0x3349998,2, 0x33499a4,1, 0x33499b8,7, 0x33499e0,4, 0x3349a00,20, 0x3349a80,3, 0x3349a90,9, 0x3349ac0,6, 0x3349ae0,1, 0x3349ae8,7, 0x334a000,20, 0x334a080,2, 0x334a100,20, 0x334a180,2, 0x334a200,4, 0x334a400,20, 0x334a480,2, 0x334a500,20, 0x334a580,2, 0x334a600,4, 0x334a800,3, 0x334a840,12, 0x334a880,12, 0x334a8c0,12, 0x334a900,12, 0x334a940,12, 0x334a980,12, 0x334a9c0,12, 0x334aa00,12, 0x334ac00,12, 0x334ac40,7, 0x334ac60,10, 0x334b004,1, 0x334b018,40, 0x334b100,7, 0x334b120,7, 0x334b140,2, 0x334b14c,2, 0x334b160,2, 0x334b16c,2, 0x334b180,18, 0x334b200,2, 0x334b220,10, 0x334b260,20, 0x334b2c0,7, 0x334b300,15, 0x334b340,9, 0x334b380,6, 0x334b3a0,4, 0x334b400,4, 0x334c000,106, 0x334c200,2, 0x334c240,9, 0x334c280,7, 0x334c400,106, 0x334c604,6, 0x334c700,15, 0x334c740,9, 0x334c780,6, 0x334c7a0,6, 0x334c800,8, 0x334c824,1, 0x334c830,15, 0x334c870,3, 0x3360000,518, 0x3360900,45, 0x3360a00,45, 0x3360b00,45, 0x3360c00,45, 0x3360d00,45, 0x3360e00,45, 0x3360f00,45, 0x3361000,45, 0x3361800,9, 0x3361840,364, 0x3361e00,19, 0x3362000,9, 0x3362040,364, 0x3362600,19, 0x3362800,6, 0x3362820,3, 0x3362840,7, 0x3362880,6, 0x33628a0,3, 0x33628c0,7, 0x3362900,1, 0x3362908,3, 0x3362918,8, 0x3362940,7, 0x3363000,2, 0x3363800,18, 0x3363880,18, 0x3363c00,4, 0x3363c20,7, 0x3363d00,4, 0x3363d80,20, 0x3363e00,1, 0x3364000,21, 0x3364058,3, 0x3364100,1, 0x3364124,1, 0x336412c,5, 0x3364144,1, 0x336414c,6, 0x3364184,6, 0x33641a4,6, 0x33641c4,1, 0x33641cc,1, 0x3364400,9, 0x3364440,9, 0x3364480,15, 0x33644c0,15, 0x3364500,15, 0x3364540,15, 0x3364580,15, 0x33645c0,15, 0x3364600,15, 0x3364640,15, 0x3364680,59, 0x3364800,1, 0x3364808,16, 0x3364850,1, 0x3364858,7, 0x3368000,3, 0x3368010,1, 0x3368018,3, 0x336a000,4, 0x336a080,19, 0x336a100,12, 0x336a200,4, 0x336a280,19, 0x336a300,12, 0x336a400,2, 0x336a600,124, 0x336a800,4, 0x336a880,18, 0x336a900,4, 0x336a980,23, 0x336aa00,10, 0x336aa2c,2, 0x336aa40,2, 0x336aa4c,3, 0x336aa60,2, 0x336aa6c,3, 0x336aa80,2, 0x336aa8c,2, 0x336aaa0,2, 0x336aaac,2, 0x336aac0,2, 0x336aacc,2, 0x336ab00,4, 0x336ab40,15, 0x336ab80,3, 0x336ab90,7, 0x336abb0,3, 0x336abc0,3, 0x336abd0,3, 0x336abe0,1, 0x336ac00,17, 0x336ae00,15, 0x336ae40,4, 0x336ae60,17, 0x336aec0,6, 0x336aee0,4, 0x336aef4,11, 0x336af24,28, 0x336b000,1, 0x336b080,1, 0x336b0a0,5, 0x336b0c0,5, 0x336b0e0,5, 0x336b100,1, 0x336b120,5, 0x336b140,5, 0x336b160,5, 0x336b180,24, 0x336b200,5, 0x336c000,20, 0x3370000,518, 0x3370900,45, 0x3370a00,45, 0x3370b00,45, 0x3370c00,45, 0x3370d00,45, 0x3370e00,45, 0x3370f00,45, 0x3371000,45, 0x3371800,9, 0x3371840,364, 0x3371e00,19, 0x3372000,9, 0x3372040,364, 0x3372600,19, 0x3372800,6, 0x3372820,3, 0x3372840,7, 0x3372880,6, 0x33728a0,3, 0x33728c0,7, 0x3372900,1, 0x3372908,3, 0x3372918,8, 0x3372940,7, 0x3373000,2, 0x3373800,18, 0x3373880,18, 0x3373c00,4, 0x3373c20,7, 0x3373d00,4, 0x3373d80,20, 0x3373e00,1, 0x3374000,21, 0x3374058,3, 0x3374100,1, 0x3374124,1, 0x337412c,5, 0x3374144,1, 0x337414c,6, 0x3374184,6, 0x33741a4,6, 0x33741c4,1, 0x33741cc,1, 0x3374400,9, 0x3374440,9, 0x3374480,15, 0x33744c0,15, 0x3374500,15, 0x3374540,15, 0x3374580,15, 0x33745c0,15, 0x3374600,15, 0x3374640,15, 0x3374680,59, 0x3374800,1, 0x3374808,16, 0x3374850,1, 0x3374858,7, 0x3378000,3, 0x3378010,1, 0x3378018,3, 0x337a000,4, 0x337a080,19, 0x337a100,12, 0x337a200,4, 0x337a280,19, 0x337a300,12, 0x337a400,2, 0x337a600,124, 0x337a800,4, 0x337a880,18, 0x337a900,4, 0x337a980,23, 0x337aa00,10, 0x337aa2c,2, 0x337aa40,2, 0x337aa4c,3, 0x337aa60,2, 0x337aa6c,3, 0x337aa80,2, 0x337aa8c,2, 0x337aaa0,2, 0x337aaac,2, 0x337aac0,2, 0x337aacc,2, 0x337ab00,4, 0x337ab40,15, 0x337ab80,3, 0x337ab90,7, 0x337abb0,3, 0x337abc0,3, 0x337abd0,3, 0x337abe0,1, 0x337ac00,17, 0x337ae00,15, 0x337ae40,4, 0x337ae60,17, 0x337aec0,6, 0x337aee0,4, 0x337aef4,11, 0x337af24,28, 0x337b000,1, 0x337b080,1, 0x337b0a0,5, 0x337b0c0,5, 0x337b0e0,5, 0x337b100,1, 0x337b120,5, 0x337b140,5, 0x337b160,5, 0x337b180,24, 0x337b200,5, 0x337c000,20, 0x3380000,18, 0x3380050,3, 0x3380060,3, 0x3380070,14, 0x33800c0,5, 0x3380400,13, 0x3380440,2, 0x338044c,3, 0x3380460,2, 0x3380480,13, 0x33804c0,2, 0x33804cc,3, 0x33804e0,2, 0x3380500,1, 0x3380508,16, 0x3380560,2, 0x338056c,3, 0x3380600,4, 0x3380680,19, 0x3380800,24, 0x3380864,2, 0x3380870,4, 0x3380a00,27, 0x3380a80,4, 0x3380ac0,25, 0x3380b40,6, 0x3380b60,4, 0x3380b74,11, 0x3380ba4,8, 0x3380c00,3, 0x3380c10,3, 0x3380c20,1, 0x3380c40,11, 0x3380c80,23, 0x3380ce0,15, 0x3380d20,15, 0x3380d60,2, 0x3380d6c,2, 0x3380d80,1, 0x3381000,18, 0x3381050,3, 0x3381060,3, 0x3381070,14, 0x33810c0,5, 0x3381400,13, 0x3381440,2, 0x338144c,3, 0x3381460,2, 0x3381480,13, 0x33814c0,2, 0x33814cc,3, 0x33814e0,2, 0x3381500,1, 0x3381508,16, 0x3381560,2, 0x338156c,3, 0x3381600,4, 0x3381680,19, 0x3381800,24, 0x3381864,2, 0x3381870,4, 0x3381a00,27, 0x3381a80,4, 0x3381ac0,25, 0x3381b40,6, 0x3381b60,4, 0x3381b74,11, 0x3381ba4,8, 0x3381c00,3, 0x3381c10,3, 0x3381c20,1, 0x3381c40,11, 0x3381c80,23, 0x3381ce0,15, 0x3381d20,15, 0x3381d60,2, 0x3381d6c,2, 0x3381d80,1, 0x3382000,20, 0x3382080,7, 0x33820a0,1, 0x33820b0,1, 0x33820b8,2, 0x3384000,14, 0x3400000,534, 0x3401000,2, 0x3401040,9, 0x3401080,7, 0x3402000,534, 0x3403000,12, 0x3403044,6, 0x3403080,8, 0x34030a4,1, 0x34030c0,7, 0x34030e0,7, 0x3403100,7, 0x3403120,7, 0x3403140,8, 0x3403164,6, 0x3403180,12, 0x3404000,534, 0x3405000,2, 0x3405040,9, 0x3405080,7, 0x3406000,534, 0x3407000,12, 0x3407044,6, 0x3407080,8, 0x34070a4,1, 0x34070c0,7, 0x34070e0,7, 0x3407100,7, 0x3407120,7, 0x3407140,8, 0x3407164,6, 0x3407180,12, 0x3408004,5, 0x3408200,27, 0x3408280,4, 0x34082c0,25, 0x3408340,6, 0x3408360,4, 0x3408374,11, 0x34083a4,5, 0x3408400,1, 0x3410000,397, 0x3410800,93, 0x3410980,6, 0x3410a00,41, 0x3410b00,2, 0x3410b20,19, 0x3410c00,25, 0x3410c80,1, 0x3410d00,28, 0x3410d80,1, 0x3411000,397, 0x3411800,93, 0x3411980,6, 0x3411a00,41, 0x3411b00,2, 0x3411b20,19, 0x3411c00,25, 0x3411c80,1, 0x3411d00,28, 0x3411d80,1, 0x3412000,7, 0x3412040,9, 0x3412080,4, 0x34120a0,5, 0x34120c0,2, 0x3414000,3, 0x3414010,6, 0x3414200,7, 0x3414220,6, 0x3414240,7, 0x3414260,6, 0x3414280,2, 0x341428c,2, 0x34142a0,2, 0x34142ac,2, 0x34142c0,7, 0x34142e0,7, 0x3414300,2, 0x341430c,2, 0x3414320,6, 0x3414340,7, 0x3414360,6, 0x3414380,6, 0x34143a0,7, 0x34143c0,6, 0x34143e0,6, 0x3414400,3, 0x3414440,12, 0x3414484,1, 0x34144c0,16, 0x3414800,7, 0x3414820,14, 0x3414880,9, 0x34148a8,12, 0x3414900,7, 0x3414920,14, 0x3414980,9, 0x34149a8,12, 0x3414a00,10, 0x3414a40,2, 0x3414a4c,3, 0x3414c00,5, 0x3414c20,1, 0x3414c28,3, 0x3420000,534, 0x3421000,2, 0x3421040,9, 0x3421080,7, 0x3422000,534, 0x3423000,12, 0x3423044,6, 0x3423080,8, 0x34230a4,1, 0x34230c0,7, 0x34230e0,7, 0x3423100,7, 0x3423120,7, 0x3423140,8, 0x3423164,6, 0x3423180,12, 0x3424000,534, 0x3425000,2, 0x3425040,9, 0x3425080,7, 0x3426000,534, 0x3427000,12, 0x3427044,6, 0x3427080,8, 0x34270a4,1, 0x34270c0,7, 0x34270e0,7, 0x3427100,7, 0x3427120,7, 0x3427140,8, 0x3427164,6, 0x3427180,12, 0x3428004,5, 0x3428200,27, 0x3428280,4, 0x34282c0,25, 0x3428340,6, 0x3428360,4, 0x3428374,11, 0x34283a4,5, 0x3428400,1, 0x3430000,397, 0x3430800,93, 0x3430980,6, 0x3430a00,41, 0x3430b00,2, 0x3430b20,19, 0x3430c00,25, 0x3430c80,1, 0x3430d00,28, 0x3430d80,1, 0x3431000,397, 0x3431800,93, 0x3431980,6, 0x3431a00,41, 0x3431b00,2, 0x3431b20,19, 0x3431c00,25, 0x3431c80,1, 0x3431d00,28, 0x3431d80,1, 0x3432000,7, 0x3432040,9, 0x3432080,4, 0x34320a0,5, 0x34320c0,2, 0x3434000,3, 0x3434010,6, 0x3434200,7, 0x3434220,6, 0x3434240,7, 0x3434260,6, 0x3434280,2, 0x343428c,2, 0x34342a0,2, 0x34342ac,2, 0x34342c0,7, 0x34342e0,7, 0x3434300,2, 0x343430c,2, 0x3434320,6, 0x3434340,7, 0x3434360,6, 0x3434380,6, 0x34343a0,7, 0x34343c0,6, 0x34343e0,6, 0x3434400,3, 0x3434440,12, 0x3434484,1, 0x34344c0,16, 0x3434800,7, 0x3434820,14, 0x3434880,9, 0x34348a8,12, 0x3434900,7, 0x3434920,14, 0x3434980,9, 0x34349a8,12, 0x3434a00,10, 0x3434a40,2, 0x3434a4c,3, 0x3434c00,5, 0x3434c20,1, 0x3434c28,3, 0x3440000,37, 0x3440100,3, 0x3440110,15, 0x3440200,37, 0x3440300,3, 0x3440310,15, 0x3440400,5, 0x3440420,5, 0x3440440,18, 0x3440800,3, 0x3440810,2, 0x3440820,3, 0x3440830,2, 0x3440840,1, 0x3441000,12, 0x3441040,12, 0x3441080,2, 0x3441100,19, 0x3441180,19, 0x3441200,26, 0x3441400,20, 0x3441480,20, 0x3441500,8, 0x3441540,4, 0x3441580,15, 0x34415c0,15, 0x3441600,9, 0x3441630,5, 0x3442000,37, 0x3442100,3, 0x3442110,15, 0x3442200,37, 0x3442300,3, 0x3442310,15, 0x3442400,5, 0x3442420,5, 0x3442440,18, 0x3442800,3, 0x3442810,2, 0x3442820,3, 0x3442830,2, 0x3442840,1, 0x3443000,12, 0x3443040,12, 0x3443080,2, 0x3443100,19, 0x3443180,19, 0x3443200,26, 0x3443400,20, 0x3443480,20, 0x3443500,8, 0x3443540,4, 0x3443580,15, 0x34435c0,15, 0x3443600,9, 0x3443630,5, 0x3444000,6, 0x3444020,1, 0x344402c,3, 0x3444040,11, 0x3444070,3, 0x3444080,2, 0x3448000,49, 0x3448100,12, 0x3448140,4, 0x3448184,1, 0x3448198,2, 0x34481a4,1, 0x34481b8,7, 0x34481e0,4, 0x3448200,20, 0x3448280,3, 0x3448290,9, 0x34482c0,6, 0x34482e0,1, 0x34482e8,7, 0x3448400,49, 0x3448500,12, 0x3448540,4, 0x3448584,1, 0x3448598,2, 0x34485a4,1, 0x34485b8,7, 0x34485e0,4, 0x3448600,20, 0x3448680,3, 0x3448690,9, 0x34486c0,6, 0x34486e0,1, 0x34486e8,7, 0x3448800,49, 0x3448900,12, 0x3448940,4, 0x3448984,1, 0x3448998,2, 0x34489a4,1, 0x34489b8,7, 0x34489e0,4, 0x3448a00,20, 0x3448a80,3, 0x3448a90,9, 0x3448ac0,6, 0x3448ae0,1, 0x3448ae8,7, 0x3448c00,49, 0x3448d00,12, 0x3448d40,4, 0x3448d84,1, 0x3448d98,2, 0x3448da4,1, 0x3448db8,7, 0x3448de0,4, 0x3448e00,20, 0x3448e80,3, 0x3448e90,9, 0x3448ec0,6, 0x3448ee0,1, 0x3448ee8,7, 0x3449000,49, 0x3449100,12, 0x3449140,4, 0x3449184,1, 0x3449198,2, 0x34491a4,1, 0x34491b8,7, 0x34491e0,4, 0x3449200,20, 0x3449280,3, 0x3449290,9, 0x34492c0,6, 0x34492e0,1, 0x34492e8,7, 0x3449400,49, 0x3449500,12, 0x3449540,4, 0x3449584,1, 0x3449598,2, 0x34495a4,1, 0x34495b8,7, 0x34495e0,4, 0x3449600,20, 0x3449680,3, 0x3449690,9, 0x34496c0,6, 0x34496e0,1, 0x34496e8,7, 0x3449800,49, 0x3449900,12, 0x3449940,4, 0x3449984,1, 0x3449998,2, 0x34499a4,1, 0x34499b8,7, 0x34499e0,4, 0x3449a00,20, 0x3449a80,3, 0x3449a90,9, 0x3449ac0,6, 0x3449ae0,1, 0x3449ae8,7, 0x344a000,20, 0x344a080,2, 0x344a100,20, 0x344a180,2, 0x344a200,4, 0x344a400,20, 0x344a480,2, 0x344a500,20, 0x344a580,2, 0x344a600,4, 0x344a800,3, 0x344a840,12, 0x344a880,12, 0x344a8c0,12, 0x344a900,12, 0x344a940,12, 0x344a980,12, 0x344a9c0,12, 0x344aa00,12, 0x344ac00,12, 0x344ac40,7, 0x344ac60,10, 0x344b004,1, 0x344b018,40, 0x344b100,7, 0x344b120,7, 0x344b140,2, 0x344b14c,2, 0x344b160,2, 0x344b16c,2, 0x344b180,18, 0x344b200,2, 0x344b220,10, 0x344b260,20, 0x344b2c0,7, 0x344b300,15, 0x344b340,9, 0x344b380,6, 0x344b3a0,4, 0x344b400,4, 0x344c000,106, 0x344c200,2, 0x344c240,9, 0x344c280,7, 0x344c400,106, 0x344c604,6, 0x344c700,15, 0x344c740,9, 0x344c780,6, 0x344c7a0,6, 0x344c800,8, 0x344c824,1, 0x344c830,15, 0x344c870,3, 0x3460000,518, 0x3460900,45, 0x3460a00,45, 0x3460b00,45, 0x3460c00,45, 0x3460d00,45, 0x3460e00,45, 0x3460f00,45, 0x3461000,45, 0x3461800,9, 0x3461840,364, 0x3461e00,19, 0x3462000,9, 0x3462040,364, 0x3462600,19, 0x3462800,6, 0x3462820,3, 0x3462840,7, 0x3462880,6, 0x34628a0,3, 0x34628c0,7, 0x3462900,1, 0x3462908,3, 0x3462918,8, 0x3462940,7, 0x3463000,2, 0x3463800,18, 0x3463880,18, 0x3463c00,4, 0x3463c20,7, 0x3463d00,4, 0x3463d80,20, 0x3463e00,1, 0x3464000,21, 0x3464058,3, 0x3464100,1, 0x3464124,1, 0x346412c,5, 0x3464144,1, 0x346414c,6, 0x3464184,6, 0x34641a4,6, 0x34641c4,1, 0x34641cc,1, 0x3464400,9, 0x3464440,9, 0x3464480,15, 0x34644c0,15, 0x3464500,15, 0x3464540,15, 0x3464580,15, 0x34645c0,15, 0x3464600,15, 0x3464640,15, 0x3464680,59, 0x3464800,1, 0x3464808,16, 0x3464850,1, 0x3464858,7, 0x3468000,3, 0x3468010,1, 0x3468018,3, 0x346a000,4, 0x346a080,19, 0x346a100,12, 0x346a200,4, 0x346a280,19, 0x346a300,12, 0x346a400,2, 0x346a600,124, 0x346a800,4, 0x346a880,18, 0x346a900,4, 0x346a980,23, 0x346aa00,10, 0x346aa2c,2, 0x346aa40,2, 0x346aa4c,3, 0x346aa60,2, 0x346aa6c,3, 0x346aa80,2, 0x346aa8c,2, 0x346aaa0,2, 0x346aaac,2, 0x346aac0,2, 0x346aacc,2, 0x346ab00,4, 0x346ab40,15, 0x346ab80,3, 0x346ab90,7, 0x346abb0,3, 0x346abc0,3, 0x346abd0,3, 0x346abe0,1, 0x346ac00,17, 0x346ae00,15, 0x346ae40,4, 0x346ae60,17, 0x346aec0,6, 0x346aee0,4, 0x346aef4,11, 0x346af24,28, 0x346b000,1, 0x346b080,1, 0x346b0a0,5, 0x346b0c0,5, 0x346b0e0,5, 0x346b100,1, 0x346b120,5, 0x346b140,5, 0x346b160,5, 0x346b180,24, 0x346b200,5, 0x346c000,20, 0x3470000,518, 0x3470900,45, 0x3470a00,45, 0x3470b00,45, 0x3470c00,45, 0x3470d00,45, 0x3470e00,45, 0x3470f00,45, 0x3471000,45, 0x3471800,9, 0x3471840,364, 0x3471e00,19, 0x3472000,9, 0x3472040,364, 0x3472600,19, 0x3472800,6, 0x3472820,3, 0x3472840,7, 0x3472880,6, 0x34728a0,3, 0x34728c0,7, 0x3472900,1, 0x3472908,3, 0x3472918,8, 0x3472940,7, 0x3473000,2, 0x3473800,18, 0x3473880,18, 0x3473c00,4, 0x3473c20,7, 0x3473d00,4, 0x3473d80,20, 0x3473e00,1, 0x3474000,21, 0x3474058,3, 0x3474100,1, 0x3474124,1, 0x347412c,5, 0x3474144,1, 0x347414c,6, 0x3474184,6, 0x34741a4,6, 0x34741c4,1, 0x34741cc,1, 0x3474400,9, 0x3474440,9, 0x3474480,15, 0x34744c0,15, 0x3474500,15, 0x3474540,15, 0x3474580,15, 0x34745c0,15, 0x3474600,15, 0x3474640,15, 0x3474680,59, 0x3474800,1, 0x3474808,16, 0x3474850,1, 0x3474858,7, 0x3478000,3, 0x3478010,1, 0x3478018,3, 0x347a000,4, 0x347a080,19, 0x347a100,12, 0x347a200,4, 0x347a280,19, 0x347a300,12, 0x347a400,2, 0x347a600,124, 0x347a800,4, 0x347a880,18, 0x347a900,4, 0x347a980,23, 0x347aa00,10, 0x347aa2c,2, 0x347aa40,2, 0x347aa4c,3, 0x347aa60,2, 0x347aa6c,3, 0x347aa80,2, 0x347aa8c,2, 0x347aaa0,2, 0x347aaac,2, 0x347aac0,2, 0x347aacc,2, 0x347ab00,4, 0x347ab40,15, 0x347ab80,3, 0x347ab90,7, 0x347abb0,3, 0x347abc0,3, 0x347abd0,3, 0x347abe0,1, 0x347ac00,17, 0x347ae00,15, 0x347ae40,4, 0x347ae60,17, 0x347aec0,6, 0x347aee0,4, 0x347aef4,11, 0x347af24,28, 0x347b000,1, 0x347b080,1, 0x347b0a0,5, 0x347b0c0,5, 0x347b0e0,5, 0x347b100,1, 0x347b120,5, 0x347b140,5, 0x347b160,5, 0x347b180,24, 0x347b200,5, 0x347c000,20, 0x3480000,18, 0x3480050,3, 0x3480060,3, 0x3480070,14, 0x34800c0,5, 0x3480400,13, 0x3480440,2, 0x348044c,3, 0x3480460,2, 0x3480480,13, 0x34804c0,2, 0x34804cc,3, 0x34804e0,2, 0x3480500,1, 0x3480508,16, 0x3480560,2, 0x348056c,3, 0x3480600,4, 0x3480680,19, 0x3480800,24, 0x3480864,2, 0x3480870,4, 0x3480a00,27, 0x3480a80,4, 0x3480ac0,25, 0x3480b40,6, 0x3480b60,4, 0x3480b74,11, 0x3480ba4,8, 0x3480c00,3, 0x3480c10,3, 0x3480c20,1, 0x3480c40,11, 0x3480c80,23, 0x3480ce0,15, 0x3480d20,15, 0x3480d60,2, 0x3480d6c,2, 0x3480d80,1, 0x3481000,18, 0x3481050,3, 0x3481060,3, 0x3481070,14, 0x34810c0,5, 0x3481400,13, 0x3481440,2, 0x348144c,3, 0x3481460,2, 0x3481480,13, 0x34814c0,2, 0x34814cc,3, 0x34814e0,2, 0x3481500,1, 0x3481508,16, 0x3481560,2, 0x348156c,3, 0x3481600,4, 0x3481680,19, 0x3481800,24, 0x3481864,2, 0x3481870,4, 0x3481a00,27, 0x3481a80,4, 0x3481ac0,25, 0x3481b40,6, 0x3481b60,4, 0x3481b74,11, 0x3481ba4,8, 0x3481c00,3, 0x3481c10,3, 0x3481c20,1, 0x3481c40,11, 0x3481c80,23, 0x3481ce0,15, 0x3481d20,15, 0x3481d60,2, 0x3481d6c,2, 0x3481d80,1, 0x3482000,20, 0x3482080,7, 0x34820a0,1, 0x34820b0,1, 0x34820b8,2, 0x3484000,14, 0x3500000,534, 0x3501000,2, 0x3501040,9, 0x3501080,7, 0x3502000,534, 0x3503000,12, 0x3503044,6, 0x3503080,8, 0x35030a4,1, 0x35030c0,7, 0x35030e0,7, 0x3503100,7, 0x3503120,7, 0x3503140,8, 0x3503164,6, 0x3503180,12, 0x3504000,534, 0x3505000,2, 0x3505040,9, 0x3505080,7, 0x3506000,534, 0x3507000,12, 0x3507044,6, 0x3507080,8, 0x35070a4,1, 0x35070c0,7, 0x35070e0,7, 0x3507100,7, 0x3507120,7, 0x3507140,8, 0x3507164,6, 0x3507180,12, 0x3508004,5, 0x3508200,27, 0x3508280,4, 0x35082c0,25, 0x3508340,6, 0x3508360,4, 0x3508374,11, 0x35083a4,5, 0x3508400,1, 0x3510000,397, 0x3510800,93, 0x3510980,6, 0x3510a00,41, 0x3510b00,2, 0x3510b20,19, 0x3510c00,25, 0x3510c80,1, 0x3510d00,28, 0x3510d80,1, 0x3511000,397, 0x3511800,93, 0x3511980,6, 0x3511a00,41, 0x3511b00,2, 0x3511b20,19, 0x3511c00,25, 0x3511c80,1, 0x3511d00,28, 0x3511d80,1, 0x3512000,7, 0x3512040,9, 0x3512080,4, 0x35120a0,5, 0x35120c0,2, 0x3514000,3, 0x3514010,6, 0x3514200,7, 0x3514220,6, 0x3514240,7, 0x3514260,6, 0x3514280,2, 0x351428c,2, 0x35142a0,2, 0x35142ac,2, 0x35142c0,7, 0x35142e0,7, 0x3514300,2, 0x351430c,2, 0x3514320,6, 0x3514340,7, 0x3514360,6, 0x3514380,6, 0x35143a0,7, 0x35143c0,6, 0x35143e0,6, 0x3514400,3, 0x3514440,12, 0x3514484,1, 0x35144c0,16, 0x3514800,7, 0x3514820,14, 0x3514880,9, 0x35148a8,12, 0x3514900,7, 0x3514920,14, 0x3514980,9, 0x35149a8,12, 0x3514a00,10, 0x3514a40,2, 0x3514a4c,3, 0x3514c00,5, 0x3514c20,1, 0x3514c28,3, 0x3520000,534, 0x3521000,2, 0x3521040,9, 0x3521080,7, 0x3522000,534, 0x3523000,12, 0x3523044,6, 0x3523080,8, 0x35230a4,1, 0x35230c0,7, 0x35230e0,7, 0x3523100,7, 0x3523120,7, 0x3523140,8, 0x3523164,6, 0x3523180,12, 0x3524000,534, 0x3525000,2, 0x3525040,9, 0x3525080,7, 0x3526000,534, 0x3527000,12, 0x3527044,6, 0x3527080,8, 0x35270a4,1, 0x35270c0,7, 0x35270e0,7, 0x3527100,7, 0x3527120,7, 0x3527140,8, 0x3527164,6, 0x3527180,12, 0x3528004,5, 0x3528200,27, 0x3528280,4, 0x35282c0,25, 0x3528340,6, 0x3528360,4, 0x3528374,11, 0x35283a4,5, 0x3528400,1, 0x3530000,397, 0x3530800,93, 0x3530980,6, 0x3530a00,41, 0x3530b00,2, 0x3530b20,19, 0x3530c00,25, 0x3530c80,1, 0x3530d00,28, 0x3530d80,1, 0x3531000,397, 0x3531800,93, 0x3531980,6, 0x3531a00,41, 0x3531b00,2, 0x3531b20,19, 0x3531c00,25, 0x3531c80,1, 0x3531d00,28, 0x3531d80,1, 0x3532000,7, 0x3532040,9, 0x3532080,4, 0x35320a0,5, 0x35320c0,2, 0x3534000,3, 0x3534010,6, 0x3534200,7, 0x3534220,6, 0x3534240,7, 0x3534260,6, 0x3534280,2, 0x353428c,2, 0x35342a0,2, 0x35342ac,2, 0x35342c0,7, 0x35342e0,7, 0x3534300,2, 0x353430c,2, 0x3534320,6, 0x3534340,7, 0x3534360,6, 0x3534380,6, 0x35343a0,7, 0x35343c0,6, 0x35343e0,6, 0x3534400,3, 0x3534440,12, 0x3534484,1, 0x35344c0,16, 0x3534800,7, 0x3534820,14, 0x3534880,9, 0x35348a8,12, 0x3534900,7, 0x3534920,14, 0x3534980,9, 0x35349a8,12, 0x3534a00,10, 0x3534a40,2, 0x3534a4c,3, 0x3534c00,5, 0x3534c20,1, 0x3534c28,3, 0x3540000,37, 0x3540100,3, 0x3540110,15, 0x3540200,37, 0x3540300,3, 0x3540310,15, 0x3540400,5, 0x3540420,5, 0x3540440,18, 0x3540800,3, 0x3540810,2, 0x3540820,3, 0x3540830,2, 0x3540840,1, 0x3541000,12, 0x3541040,12, 0x3541080,2, 0x3541100,19, 0x3541180,19, 0x3541200,26, 0x3541400,20, 0x3541480,20, 0x3541500,8, 0x3541540,4, 0x3541580,15, 0x35415c0,15, 0x3541600,9, 0x3541630,5, 0x3542000,37, 0x3542100,3, 0x3542110,15, 0x3542200,37, 0x3542300,3, 0x3542310,15, 0x3542400,5, 0x3542420,5, 0x3542440,18, 0x3542800,3, 0x3542810,2, 0x3542820,3, 0x3542830,2, 0x3542840,1, 0x3543000,12, 0x3543040,12, 0x3543080,2, 0x3543100,19, 0x3543180,19, 0x3543200,26, 0x3543400,20, 0x3543480,20, 0x3543500,8, 0x3543540,4, 0x3543580,15, 0x35435c0,15, 0x3543600,9, 0x3543630,5, 0x3544000,6, 0x3544020,1, 0x354402c,3, 0x3544040,11, 0x3544070,3, 0x3544080,2, 0x3548000,49, 0x3548100,12, 0x3548140,4, 0x3548184,1, 0x3548198,2, 0x35481a4,1, 0x35481b8,7, 0x35481e0,4, 0x3548200,20, 0x3548280,3, 0x3548290,9, 0x35482c0,6, 0x35482e0,1, 0x35482e8,7, 0x3548400,49, 0x3548500,12, 0x3548540,4, 0x3548584,1, 0x3548598,2, 0x35485a4,1, 0x35485b8,7, 0x35485e0,4, 0x3548600,20, 0x3548680,3, 0x3548690,9, 0x35486c0,6, 0x35486e0,1, 0x35486e8,7, 0x3548800,49, 0x3548900,12, 0x3548940,4, 0x3548984,1, 0x3548998,2, 0x35489a4,1, 0x35489b8,7, 0x35489e0,4, 0x3548a00,20, 0x3548a80,3, 0x3548a90,9, 0x3548ac0,6, 0x3548ae0,1, 0x3548ae8,7, 0x3548c00,49, 0x3548d00,12, 0x3548d40,4, 0x3548d84,1, 0x3548d98,2, 0x3548da4,1, 0x3548db8,7, 0x3548de0,4, 0x3548e00,20, 0x3548e80,3, 0x3548e90,9, 0x3548ec0,6, 0x3548ee0,1, 0x3548ee8,7, 0x3549000,49, 0x3549100,12, 0x3549140,4, 0x3549184,1, 0x3549198,2, 0x35491a4,1, 0x35491b8,7, 0x35491e0,4, 0x3549200,20, 0x3549280,3, 0x3549290,9, 0x35492c0,6, 0x35492e0,1, 0x35492e8,7, 0x3549400,49, 0x3549500,12, 0x3549540,4, 0x3549584,1, 0x3549598,2, 0x35495a4,1, 0x35495b8,7, 0x35495e0,4, 0x3549600,20, 0x3549680,3, 0x3549690,9, 0x35496c0,6, 0x35496e0,1, 0x35496e8,7, 0x3549800,49, 0x3549900,12, 0x3549940,4, 0x3549984,1, 0x3549998,2, 0x35499a4,1, 0x35499b8,7, 0x35499e0,4, 0x3549a00,20, 0x3549a80,3, 0x3549a90,9, 0x3549ac0,6, 0x3549ae0,1, 0x3549ae8,7, 0x354a000,20, 0x354a080,2, 0x354a100,20, 0x354a180,2, 0x354a200,4, 0x354a400,20, 0x354a480,2, 0x354a500,20, 0x354a580,2, 0x354a600,4, 0x354a800,3, 0x354a840,12, 0x354a880,12, 0x354a8c0,12, 0x354a900,12, 0x354a940,12, 0x354a980,12, 0x354a9c0,12, 0x354aa00,12, 0x354ac00,12, 0x354ac40,7, 0x354ac60,10, 0x354b004,1, 0x354b018,40, 0x354b100,7, 0x354b120,7, 0x354b140,2, 0x354b14c,2, 0x354b160,2, 0x354b16c,2, 0x354b180,18, 0x354b200,2, 0x354b220,10, 0x354b260,20, 0x354b2c0,7, 0x354b300,15, 0x354b340,9, 0x354b380,6, 0x354b3a0,4, 0x354b400,4, 0x354c000,106, 0x354c200,2, 0x354c240,9, 0x354c280,7, 0x354c400,106, 0x354c604,6, 0x354c700,15, 0x354c740,9, 0x354c780,6, 0x354c7a0,6, 0x354c800,8, 0x354c824,1, 0x354c830,15, 0x354c870,3, 0x3560000,518, 0x3560900,45, 0x3560a00,45, 0x3560b00,45, 0x3560c00,45, 0x3560d00,45, 0x3560e00,45, 0x3560f00,45, 0x3561000,45, 0x3561800,9, 0x3561840,364, 0x3561e00,19, 0x3562000,9, 0x3562040,364, 0x3562600,19, 0x3562800,6, 0x3562820,3, 0x3562840,7, 0x3562880,6, 0x35628a0,3, 0x35628c0,7, 0x3562900,1, 0x3562908,3, 0x3562918,8, 0x3562940,7, 0x3563000,2, 0x3563800,18, 0x3563880,18, 0x3563c00,4, 0x3563c20,7, 0x3563d00,4, 0x3563d80,20, 0x3563e00,1, 0x3564000,21, 0x3564058,3, 0x3564100,1, 0x3564124,1, 0x356412c,5, 0x3564144,1, 0x356414c,6, 0x3564184,6, 0x35641a4,6, 0x35641c4,1, 0x35641cc,1, 0x3564400,9, 0x3564440,9, 0x3564480,15, 0x35644c0,15, 0x3564500,15, 0x3564540,15, 0x3564580,15, 0x35645c0,15, 0x3564600,15, 0x3564640,15, 0x3564680,59, 0x3564800,1, 0x3564808,16, 0x3564850,1, 0x3564858,7, 0x3568000,3, 0x3568010,1, 0x3568018,3, 0x356a000,4, 0x356a080,19, 0x356a100,12, 0x356a200,4, 0x356a280,19, 0x356a300,12, 0x356a400,2, 0x356a600,124, 0x356a800,4, 0x356a880,18, 0x356a900,4, 0x356a980,23, 0x356aa00,10, 0x356aa2c,2, 0x356aa40,2, 0x356aa4c,3, 0x356aa60,2, 0x356aa6c,3, 0x356aa80,2, 0x356aa8c,2, 0x356aaa0,2, 0x356aaac,2, 0x356aac0,2, 0x356aacc,2, 0x356ab00,4, 0x356ab40,15, 0x356ab80,3, 0x356ab90,7, 0x356abb0,3, 0x356abc0,3, 0x356abd0,3, 0x356abe0,1, 0x356ac00,17, 0x356ae00,15, 0x356ae40,4, 0x356ae60,17, 0x356aec0,6, 0x356aee0,4, 0x356aef4,11, 0x356af24,28, 0x356b000,1, 0x356b080,1, 0x356b0a0,5, 0x356b0c0,5, 0x356b0e0,5, 0x356b100,1, 0x356b120,5, 0x356b140,5, 0x356b160,5, 0x356b180,24, 0x356b200,5, 0x356c000,20, 0x3570000,518, 0x3570900,45, 0x3570a00,45, 0x3570b00,45, 0x3570c00,45, 0x3570d00,45, 0x3570e00,45, 0x3570f00,45, 0x3571000,45, 0x3571800,9, 0x3571840,364, 0x3571e00,19, 0x3572000,9, 0x3572040,364, 0x3572600,19, 0x3572800,6, 0x3572820,3, 0x3572840,7, 0x3572880,6, 0x35728a0,3, 0x35728c0,7, 0x3572900,1, 0x3572908,3, 0x3572918,8, 0x3572940,7, 0x3573000,2, 0x3573800,18, 0x3573880,18, 0x3573c00,4, 0x3573c20,7, 0x3573d00,4, 0x3573d80,20, 0x3573e00,1, 0x3574000,21, 0x3574058,3, 0x3574100,1, 0x3574124,1, 0x357412c,5, 0x3574144,1, 0x357414c,6, 0x3574184,6, 0x35741a4,6, 0x35741c4,1, 0x35741cc,1, 0x3574400,9, 0x3574440,9, 0x3574480,15, 0x35744c0,15, 0x3574500,15, 0x3574540,15, 0x3574580,15, 0x35745c0,15, 0x3574600,15, 0x3574640,15, 0x3574680,59, 0x3574800,1, 0x3574808,16, 0x3574850,1, 0x3574858,7, 0x3578000,3, 0x3578010,1, 0x3578018,3, 0x357a000,4, 0x357a080,19, 0x357a100,12, 0x357a200,4, 0x357a280,19, 0x357a300,12, 0x357a400,2, 0x357a600,124, 0x357a800,4, 0x357a880,18, 0x357a900,4, 0x357a980,23, 0x357aa00,10, 0x357aa2c,2, 0x357aa40,2, 0x357aa4c,3, 0x357aa60,2, 0x357aa6c,3, 0x357aa80,2, 0x357aa8c,2, 0x357aaa0,2, 0x357aaac,2, 0x357aac0,2, 0x357aacc,2, 0x357ab00,4, 0x357ab40,15, 0x357ab80,3, 0x357ab90,7, 0x357abb0,3, 0x357abc0,3, 0x357abd0,3, 0x357abe0,1, 0x357ac00,17, 0x357ae00,15, 0x357ae40,4, 0x357ae60,17, 0x357aec0,6, 0x357aee0,4, 0x357aef4,11, 0x357af24,28, 0x357b000,1, 0x357b080,1, 0x357b0a0,5, 0x357b0c0,5, 0x357b0e0,5, 0x357b100,1, 0x357b120,5, 0x357b140,5, 0x357b160,5, 0x357b180,24, 0x357b200,5, 0x357c000,20, 0x3580000,18, 0x3580050,3, 0x3580060,3, 0x3580070,14, 0x35800c0,5, 0x3580400,13, 0x3580440,2, 0x358044c,3, 0x3580460,2, 0x3580480,13, 0x35804c0,2, 0x35804cc,3, 0x35804e0,2, 0x3580500,1, 0x3580508,16, 0x3580560,2, 0x358056c,3, 0x3580600,4, 0x3580680,19, 0x3580800,24, 0x3580864,2, 0x3580870,4, 0x3580a00,27, 0x3580a80,4, 0x3580ac0,25, 0x3580b40,6, 0x3580b60,4, 0x3580b74,11, 0x3580ba4,8, 0x3580c00,3, 0x3580c10,3, 0x3580c20,1, 0x3580c40,11, 0x3580c80,23, 0x3580ce0,15, 0x3580d20,15, 0x3580d60,2, 0x3580d6c,2, 0x3580d80,1, 0x3581000,18, 0x3581050,3, 0x3581060,3, 0x3581070,14, 0x35810c0,5, 0x3581400,13, 0x3581440,2, 0x358144c,3, 0x3581460,2, 0x3581480,13, 0x35814c0,2, 0x35814cc,3, 0x35814e0,2, 0x3581500,1, 0x3581508,16, 0x3581560,2, 0x358156c,3, 0x3581600,4, 0x3581680,19, 0x3581800,24, 0x3581864,2, 0x3581870,4, 0x3581a00,27, 0x3581a80,4, 0x3581ac0,25, 0x3581b40,6, 0x3581b60,4, 0x3581b74,11, 0x3581ba4,8, 0x3581c00,3, 0x3581c10,3, 0x3581c20,1, 0x3581c40,11, 0x3581c80,23, 0x3581ce0,15, 0x3581d20,15, 0x3581d60,2, 0x3581d6c,2, 0x3581d80,1, 0x3582000,20, 0x3582080,7, 0x35820a0,1, 0x35820b0,1, 0x35820b8,2, 0x3584000,14, 0x3600000,534, 0x3601000,2, 0x3601040,9, 0x3601080,7, 0x3602000,534, 0x3603000,12, 0x3603044,6, 0x3603080,8, 0x36030a4,1, 0x36030c0,7, 0x36030e0,7, 0x3603100,7, 0x3603120,7, 0x3603140,8, 0x3603164,6, 0x3603180,12, 0x3604000,534, 0x3605000,2, 0x3605040,9, 0x3605080,7, 0x3606000,534, 0x3607000,12, 0x3607044,6, 0x3607080,8, 0x36070a4,1, 0x36070c0,7, 0x36070e0,7, 0x3607100,7, 0x3607120,7, 0x3607140,8, 0x3607164,6, 0x3607180,12, 0x3608004,5, 0x3608200,27, 0x3608280,4, 0x36082c0,25, 0x3608340,6, 0x3608360,4, 0x3608374,11, 0x36083a4,5, 0x3608400,1, 0x3610000,397, 0x3610800,93, 0x3610980,6, 0x3610a00,41, 0x3610b00,2, 0x3610b20,19, 0x3610c00,25, 0x3610c80,1, 0x3610d00,28, 0x3610d80,1, 0x3611000,397, 0x3611800,93, 0x3611980,6, 0x3611a00,41, 0x3611b00,2, 0x3611b20,19, 0x3611c00,25, 0x3611c80,1, 0x3611d00,28, 0x3611d80,1, 0x3612000,7, 0x3612040,9, 0x3612080,4, 0x36120a0,5, 0x36120c0,2, 0x3614000,3, 0x3614010,6, 0x3614200,7, 0x3614220,6, 0x3614240,7, 0x3614260,6, 0x3614280,2, 0x361428c,2, 0x36142a0,2, 0x36142ac,2, 0x36142c0,7, 0x36142e0,7, 0x3614300,2, 0x361430c,2, 0x3614320,6, 0x3614340,7, 0x3614360,6, 0x3614380,6, 0x36143a0,7, 0x36143c0,6, 0x36143e0,6, 0x3614400,3, 0x3614440,12, 0x3614484,1, 0x36144c0,16, 0x3614800,7, 0x3614820,14, 0x3614880,9, 0x36148a8,12, 0x3614900,7, 0x3614920,14, 0x3614980,9, 0x36149a8,12, 0x3614a00,10, 0x3614a40,2, 0x3614a4c,3, 0x3614c00,5, 0x3614c20,1, 0x3614c28,3, 0x3620000,534, 0x3621000,2, 0x3621040,9, 0x3621080,7, 0x3622000,534, 0x3623000,12, 0x3623044,6, 0x3623080,8, 0x36230a4,1, 0x36230c0,7, 0x36230e0,7, 0x3623100,7, 0x3623120,7, 0x3623140,8, 0x3623164,6, 0x3623180,12, 0x3624000,534, 0x3625000,2, 0x3625040,9, 0x3625080,7, 0x3626000,534, 0x3627000,12, 0x3627044,6, 0x3627080,8, 0x36270a4,1, 0x36270c0,7, 0x36270e0,7, 0x3627100,7, 0x3627120,7, 0x3627140,8, 0x3627164,6, 0x3627180,12, 0x3628004,5, 0x3628200,27, 0x3628280,4, 0x36282c0,25, 0x3628340,6, 0x3628360,4, 0x3628374,11, 0x36283a4,5, 0x3628400,1, 0x3630000,397, 0x3630800,93, 0x3630980,6, 0x3630a00,41, 0x3630b00,2, 0x3630b20,19, 0x3630c00,25, 0x3630c80,1, 0x3630d00,28, 0x3630d80,1, 0x3631000,397, 0x3631800,93, 0x3631980,6, 0x3631a00,41, 0x3631b00,2, 0x3631b20,19, 0x3631c00,25, 0x3631c80,1, 0x3631d00,28, 0x3631d80,1, 0x3632000,7, 0x3632040,9, 0x3632080,4, 0x36320a0,5, 0x36320c0,2, 0x3634000,3, 0x3634010,6, 0x3634200,7, 0x3634220,6, 0x3634240,7, 0x3634260,6, 0x3634280,2, 0x363428c,2, 0x36342a0,2, 0x36342ac,2, 0x36342c0,7, 0x36342e0,7, 0x3634300,2, 0x363430c,2, 0x3634320,6, 0x3634340,7, 0x3634360,6, 0x3634380,6, 0x36343a0,7, 0x36343c0,6, 0x36343e0,6, 0x3634400,3, 0x3634440,12, 0x3634484,1, 0x36344c0,16, 0x3634800,7, 0x3634820,14, 0x3634880,9, 0x36348a8,12, 0x3634900,7, 0x3634920,14, 0x3634980,9, 0x36349a8,12, 0x3634a00,10, 0x3634a40,2, 0x3634a4c,3, 0x3634c00,5, 0x3634c20,1, 0x3634c28,3, 0x3640000,37, 0x3640100,3, 0x3640110,15, 0x3640200,37, 0x3640300,3, 0x3640310,15, 0x3640400,5, 0x3640420,5, 0x3640440,18, 0x3640800,3, 0x3640810,2, 0x3640820,3, 0x3640830,2, 0x3640840,1, 0x3641000,12, 0x3641040,12, 0x3641080,2, 0x3641100,19, 0x3641180,19, 0x3641200,26, 0x3641400,20, 0x3641480,20, 0x3641500,8, 0x3641540,4, 0x3641580,15, 0x36415c0,15, 0x3641600,9, 0x3641630,5, 0x3642000,37, 0x3642100,3, 0x3642110,15, 0x3642200,37, 0x3642300,3, 0x3642310,15, 0x3642400,5, 0x3642420,5, 0x3642440,18, 0x3642800,3, 0x3642810,2, 0x3642820,3, 0x3642830,2, 0x3642840,1, 0x3643000,12, 0x3643040,12, 0x3643080,2, 0x3643100,19, 0x3643180,19, 0x3643200,26, 0x3643400,20, 0x3643480,20, 0x3643500,8, 0x3643540,4, 0x3643580,15, 0x36435c0,15, 0x3643600,9, 0x3643630,5, 0x3644000,6, 0x3644020,1, 0x364402c,3, 0x3644040,11, 0x3644070,3, 0x3644080,2, 0x3648000,49, 0x3648100,12, 0x3648140,4, 0x3648184,1, 0x3648198,2, 0x36481a4,1, 0x36481b8,7, 0x36481e0,4, 0x3648200,20, 0x3648280,3, 0x3648290,9, 0x36482c0,6, 0x36482e0,1, 0x36482e8,7, 0x3648400,49, 0x3648500,12, 0x3648540,4, 0x3648584,1, 0x3648598,2, 0x36485a4,1, 0x36485b8,7, 0x36485e0,4, 0x3648600,20, 0x3648680,3, 0x3648690,9, 0x36486c0,6, 0x36486e0,1, 0x36486e8,7, 0x3648800,49, 0x3648900,12, 0x3648940,4, 0x3648984,1, 0x3648998,2, 0x36489a4,1, 0x36489b8,7, 0x36489e0,4, 0x3648a00,20, 0x3648a80,3, 0x3648a90,9, 0x3648ac0,6, 0x3648ae0,1, 0x3648ae8,7, 0x3648c00,49, 0x3648d00,12, 0x3648d40,4, 0x3648d84,1, 0x3648d98,2, 0x3648da4,1, 0x3648db8,7, 0x3648de0,4, 0x3648e00,20, 0x3648e80,3, 0x3648e90,9, 0x3648ec0,6, 0x3648ee0,1, 0x3648ee8,7, 0x3649000,49, 0x3649100,12, 0x3649140,4, 0x3649184,1, 0x3649198,2, 0x36491a4,1, 0x36491b8,7, 0x36491e0,4, 0x3649200,20, 0x3649280,3, 0x3649290,9, 0x36492c0,6, 0x36492e0,1, 0x36492e8,7, 0x3649400,49, 0x3649500,12, 0x3649540,4, 0x3649584,1, 0x3649598,2, 0x36495a4,1, 0x36495b8,7, 0x36495e0,4, 0x3649600,20, 0x3649680,3, 0x3649690,9, 0x36496c0,6, 0x36496e0,1, 0x36496e8,7, 0x3649800,49, 0x3649900,12, 0x3649940,4, 0x3649984,1, 0x3649998,2, 0x36499a4,1, 0x36499b8,7, 0x36499e0,4, 0x3649a00,20, 0x3649a80,3, 0x3649a90,9, 0x3649ac0,6, 0x3649ae0,1, 0x3649ae8,7, 0x364a000,20, 0x364a080,2, 0x364a100,20, 0x364a180,2, 0x364a200,4, 0x364a400,20, 0x364a480,2, 0x364a500,20, 0x364a580,2, 0x364a600,4, 0x364a800,3, 0x364a840,12, 0x364a880,12, 0x364a8c0,12, 0x364a900,12, 0x364a940,12, 0x364a980,12, 0x364a9c0,12, 0x364aa00,12, 0x364ac00,12, 0x364ac40,7, 0x364ac60,10, 0x364b004,1, 0x364b018,40, 0x364b100,7, 0x364b120,7, 0x364b140,2, 0x364b14c,2, 0x364b160,2, 0x364b16c,2, 0x364b180,18, 0x364b200,2, 0x364b220,10, 0x364b260,20, 0x364b2c0,7, 0x364b300,15, 0x364b340,9, 0x364b380,6, 0x364b3a0,4, 0x364b400,4, 0x364c000,106, 0x364c200,2, 0x364c240,9, 0x364c280,7, 0x364c400,106, 0x364c604,6, 0x364c700,15, 0x364c740,9, 0x364c780,6, 0x364c7a0,6, 0x364c800,8, 0x364c824,1, 0x364c830,15, 0x364c870,3, 0x3660000,518, 0x3660900,45, 0x3660a00,45, 0x3660b00,45, 0x3660c00,45, 0x3660d00,45, 0x3660e00,45, 0x3660f00,45, 0x3661000,45, 0x3661800,9, 0x3661840,364, 0x3661e00,19, 0x3662000,9, 0x3662040,364, 0x3662600,19, 0x3662800,6, 0x3662820,3, 0x3662840,7, 0x3662880,6, 0x36628a0,3, 0x36628c0,7, 0x3662900,1, 0x3662908,3, 0x3662918,8, 0x3662940,7, 0x3663000,2, 0x3663800,18, 0x3663880,18, 0x3663c00,4, 0x3663c20,7, 0x3663d00,4, 0x3663d80,20, 0x3663e00,1, 0x3664000,21, 0x3664058,3, 0x3664100,1, 0x3664124,1, 0x366412c,5, 0x3664144,1, 0x366414c,6, 0x3664184,6, 0x36641a4,6, 0x36641c4,1, 0x36641cc,1, 0x3664400,9, 0x3664440,9, 0x3664480,15, 0x36644c0,15, 0x3664500,15, 0x3664540,15, 0x3664580,15, 0x36645c0,15, 0x3664600,15, 0x3664640,15, 0x3664680,59, 0x3664800,1, 0x3664808,16, 0x3664850,1, 0x3664858,7, 0x3668000,3, 0x3668010,1, 0x3668018,3, 0x366a000,4, 0x366a080,19, 0x366a100,12, 0x366a200,4, 0x366a280,19, 0x366a300,12, 0x366a400,2, 0x366a600,124, 0x366a800,4, 0x366a880,18, 0x366a900,4, 0x366a980,23, 0x366aa00,10, 0x366aa2c,2, 0x366aa40,2, 0x366aa4c,3, 0x366aa60,2, 0x366aa6c,3, 0x366aa80,2, 0x366aa8c,2, 0x366aaa0,2, 0x366aaac,2, 0x366aac0,2, 0x366aacc,2, 0x366ab00,4, 0x366ab40,15, 0x366ab80,3, 0x366ab90,7, 0x366abb0,3, 0x366abc0,3, 0x366abd0,3, 0x366abe0,1, 0x366ac00,17, 0x366ae00,15, 0x366ae40,4, 0x366ae60,17, 0x366aec0,6, 0x366aee0,4, 0x366aef4,11, 0x366af24,28, 0x366b000,1, 0x366b080,1, 0x366b0a0,5, 0x366b0c0,5, 0x366b0e0,5, 0x366b100,1, 0x366b120,5, 0x366b140,5, 0x366b160,5, 0x366b180,24, 0x366b200,5, 0x366c000,20, 0x3670000,518, 0x3670900,45, 0x3670a00,45, 0x3670b00,45, 0x3670c00,45, 0x3670d00,45, 0x3670e00,45, 0x3670f00,45, 0x3671000,45, 0x3671800,9, 0x3671840,364, 0x3671e00,19, 0x3672000,9, 0x3672040,364, 0x3672600,19, 0x3672800,6, 0x3672820,3, 0x3672840,7, 0x3672880,6, 0x36728a0,3, 0x36728c0,7, 0x3672900,1, 0x3672908,3, 0x3672918,8, 0x3672940,7, 0x3673000,2, 0x3673800,18, 0x3673880,18, 0x3673c00,4, 0x3673c20,7, 0x3673d00,4, 0x3673d80,20, 0x3673e00,1, 0x3674000,21, 0x3674058,3, 0x3674100,1, 0x3674124,1, 0x367412c,5, 0x3674144,1, 0x367414c,6, 0x3674184,6, 0x36741a4,6, 0x36741c4,1, 0x36741cc,1, 0x3674400,9, 0x3674440,9, 0x3674480,15, 0x36744c0,15, 0x3674500,15, 0x3674540,15, 0x3674580,15, 0x36745c0,15, 0x3674600,15, 0x3674640,15, 0x3674680,59, 0x3674800,1, 0x3674808,16, 0x3674850,1, 0x3674858,7, 0x3678000,3, 0x3678010,1, 0x3678018,3, 0x367a000,4, 0x367a080,19, 0x367a100,12, 0x367a200,4, 0x367a280,19, 0x367a300,12, 0x367a400,2, 0x367a600,124, 0x367a800,4, 0x367a880,18, 0x367a900,4, 0x367a980,23, 0x367aa00,10, 0x367aa2c,2, 0x367aa40,2, 0x367aa4c,3, 0x367aa60,2, 0x367aa6c,3, 0x367aa80,2, 0x367aa8c,2, 0x367aaa0,2, 0x367aaac,2, 0x367aac0,2, 0x367aacc,2, 0x367ab00,4, 0x367ab40,15, 0x367ab80,3, 0x367ab90,7, 0x367abb0,3, 0x367abc0,3, 0x367abd0,3, 0x367abe0,1, 0x367ac00,17, 0x367ae00,15, 0x367ae40,4, 0x367ae60,17, 0x367aec0,6, 0x367aee0,4, 0x367aef4,11, 0x367af24,28, 0x367b000,1, 0x367b080,1, 0x367b0a0,5, 0x367b0c0,5, 0x367b0e0,5, 0x367b100,1, 0x367b120,5, 0x367b140,5, 0x367b160,5, 0x367b180,24, 0x367b200,5, 0x367c000,20, 0x3680000,18, 0x3680050,3, 0x3680060,3, 0x3680070,14, 0x36800c0,5, 0x3680400,13, 0x3680440,2, 0x368044c,3, 0x3680460,2, 0x3680480,13, 0x36804c0,2, 0x36804cc,3, 0x36804e0,2, 0x3680500,1, 0x3680508,16, 0x3680560,2, 0x368056c,3, 0x3680600,4, 0x3680680,19, 0x3680800,24, 0x3680864,2, 0x3680870,4, 0x3680a00,27, 0x3680a80,4, 0x3680ac0,25, 0x3680b40,6, 0x3680b60,4, 0x3680b74,11, 0x3680ba4,8, 0x3680c00,3, 0x3680c10,3, 0x3680c20,1, 0x3680c40,11, 0x3680c80,23, 0x3680ce0,15, 0x3680d20,15, 0x3680d60,2, 0x3680d6c,2, 0x3680d80,1, 0x3681000,18, 0x3681050,3, 0x3681060,3, 0x3681070,14, 0x36810c0,5, 0x3681400,13, 0x3681440,2, 0x368144c,3, 0x3681460,2, 0x3681480,13, 0x36814c0,2, 0x36814cc,3, 0x36814e0,2, 0x3681500,1, 0x3681508,16, 0x3681560,2, 0x368156c,3, 0x3681600,4, 0x3681680,19, 0x3681800,24, 0x3681864,2, 0x3681870,4, 0x3681a00,27, 0x3681a80,4, 0x3681ac0,25, 0x3681b40,6, 0x3681b60,4, 0x3681b74,11, 0x3681ba4,8, 0x3681c00,3, 0x3681c10,3, 0x3681c20,1, 0x3681c40,11, 0x3681c80,23, 0x3681ce0,15, 0x3681d20,15, 0x3681d60,2, 0x3681d6c,2, 0x3681d80,1, 0x3682000,20, 0x3682080,7, 0x36820a0,1, 0x36820b0,1, 0x36820b8,2, 0x3684000,14, 0x3700000,534, 0x3701000,2, 0x3701040,9, 0x3701080,7, 0x3702000,534, 0x3703000,12, 0x3703044,6, 0x3703080,8, 0x37030a4,1, 0x37030c0,7, 0x37030e0,7, 0x3703100,7, 0x3703120,7, 0x3703140,8, 0x3703164,6, 0x3703180,12, 0x3704000,534, 0x3705000,2, 0x3705040,9, 0x3705080,7, 0x3706000,534, 0x3707000,12, 0x3707044,6, 0x3707080,8, 0x37070a4,1, 0x37070c0,7, 0x37070e0,7, 0x3707100,7, 0x3707120,7, 0x3707140,8, 0x3707164,6, 0x3707180,12, 0x3708004,5, 0x3708200,27, 0x3708280,4, 0x37082c0,25, 0x3708340,6, 0x3708360,4, 0x3708374,11, 0x37083a4,5, 0x3708400,1, 0x3710000,397, 0x3710800,93, 0x3710980,6, 0x3710a00,41, 0x3710b00,2, 0x3710b20,19, 0x3710c00,25, 0x3710c80,1, 0x3710d00,28, 0x3710d80,1, 0x3711000,397, 0x3711800,93, 0x3711980,6, 0x3711a00,41, 0x3711b00,2, 0x3711b20,19, 0x3711c00,25, 0x3711c80,1, 0x3711d00,28, 0x3711d80,1, 0x3712000,7, 0x3712040,9, 0x3712080,4, 0x37120a0,5, 0x37120c0,2, 0x3714000,3, 0x3714010,6, 0x3714200,7, 0x3714220,6, 0x3714240,7, 0x3714260,6, 0x3714280,2, 0x371428c,2, 0x37142a0,2, 0x37142ac,2, 0x37142c0,7, 0x37142e0,7, 0x3714300,2, 0x371430c,2, 0x3714320,6, 0x3714340,7, 0x3714360,6, 0x3714380,6, 0x37143a0,7, 0x37143c0,6, 0x37143e0,6, 0x3714400,3, 0x3714440,12, 0x3714484,1, 0x37144c0,16, 0x3714800,7, 0x3714820,14, 0x3714880,9, 0x37148a8,12, 0x3714900,7, 0x3714920,14, 0x3714980,9, 0x37149a8,12, 0x3714a00,10, 0x3714a40,2, 0x3714a4c,3, 0x3714c00,5, 0x3714c20,1, 0x3714c28,3, 0x3720000,534, 0x3721000,2, 0x3721040,9, 0x3721080,7, 0x3722000,534, 0x3723000,12, 0x3723044,6, 0x3723080,8, 0x37230a4,1, 0x37230c0,7, 0x37230e0,7, 0x3723100,7, 0x3723120,7, 0x3723140,8, 0x3723164,6, 0x3723180,12, 0x3724000,534, 0x3725000,2, 0x3725040,9, 0x3725080,7, 0x3726000,534, 0x3727000,12, 0x3727044,6, 0x3727080,8, 0x37270a4,1, 0x37270c0,7, 0x37270e0,7, 0x3727100,7, 0x3727120,7, 0x3727140,8, 0x3727164,6, 0x3727180,12, 0x3728004,5, 0x3728200,27, 0x3728280,4, 0x37282c0,25, 0x3728340,6, 0x3728360,4, 0x3728374,11, 0x37283a4,5, 0x3728400,1, 0x3730000,397, 0x3730800,93, 0x3730980,6, 0x3730a00,41, 0x3730b00,2, 0x3730b20,19, 0x3730c00,25, 0x3730c80,1, 0x3730d00,28, 0x3730d80,1, 0x3731000,397, 0x3731800,93, 0x3731980,6, 0x3731a00,41, 0x3731b00,2, 0x3731b20,19, 0x3731c00,25, 0x3731c80,1, 0x3731d00,28, 0x3731d80,1, 0x3732000,7, 0x3732040,9, 0x3732080,4, 0x37320a0,5, 0x37320c0,2, 0x3734000,3, 0x3734010,6, 0x3734200,7, 0x3734220,6, 0x3734240,7, 0x3734260,6, 0x3734280,2, 0x373428c,2, 0x37342a0,2, 0x37342ac,2, 0x37342c0,7, 0x37342e0,7, 0x3734300,2, 0x373430c,2, 0x3734320,6, 0x3734340,7, 0x3734360,6, 0x3734380,6, 0x37343a0,7, 0x37343c0,6, 0x37343e0,6, 0x3734400,3, 0x3734440,12, 0x3734484,1, 0x37344c0,16, 0x3734800,7, 0x3734820,14, 0x3734880,9, 0x37348a8,12, 0x3734900,7, 0x3734920,14, 0x3734980,9, 0x37349a8,12, 0x3734a00,10, 0x3734a40,2, 0x3734a4c,3, 0x3734c00,5, 0x3734c20,1, 0x3734c28,3, 0x3740000,37, 0x3740100,3, 0x3740110,15, 0x3740200,37, 0x3740300,3, 0x3740310,15, 0x3740400,5, 0x3740420,5, 0x3740440,18, 0x3740800,3, 0x3740810,2, 0x3740820,3, 0x3740830,2, 0x3740840,1, 0x3741000,12, 0x3741040,12, 0x3741080,2, 0x3741100,19, 0x3741180,19, 0x3741200,26, 0x3741400,20, 0x3741480,20, 0x3741500,8, 0x3741540,4, 0x3741580,15, 0x37415c0,15, 0x3741600,9, 0x3741630,5, 0x3742000,37, 0x3742100,3, 0x3742110,15, 0x3742200,37, 0x3742300,3, 0x3742310,15, 0x3742400,5, 0x3742420,5, 0x3742440,18, 0x3742800,3, 0x3742810,2, 0x3742820,3, 0x3742830,2, 0x3742840,1, 0x3743000,12, 0x3743040,12, 0x3743080,2, 0x3743100,19, 0x3743180,19, 0x3743200,26, 0x3743400,20, 0x3743480,20, 0x3743500,8, 0x3743540,4, 0x3743580,15, 0x37435c0,15, 0x3743600,9, 0x3743630,5, 0x3744000,6, 0x3744020,1, 0x374402c,3, 0x3744040,11, 0x3744070,3, 0x3744080,2, 0x3748000,49, 0x3748100,12, 0x3748140,4, 0x3748184,1, 0x3748198,2, 0x37481a4,1, 0x37481b8,7, 0x37481e0,4, 0x3748200,20, 0x3748280,3, 0x3748290,9, 0x37482c0,6, 0x37482e0,1, 0x37482e8,7, 0x3748400,49, 0x3748500,12, 0x3748540,4, 0x3748584,1, 0x3748598,2, 0x37485a4,1, 0x37485b8,7, 0x37485e0,4, 0x3748600,20, 0x3748680,3, 0x3748690,9, 0x37486c0,6, 0x37486e0,1, 0x37486e8,7, 0x3748800,49, 0x3748900,12, 0x3748940,4, 0x3748984,1, 0x3748998,2, 0x37489a4,1, 0x37489b8,7, 0x37489e0,4, 0x3748a00,20, 0x3748a80,3, 0x3748a90,9, 0x3748ac0,6, 0x3748ae0,1, 0x3748ae8,7, 0x3748c00,49, 0x3748d00,12, 0x3748d40,4, 0x3748d84,1, 0x3748d98,2, 0x3748da4,1, 0x3748db8,7, 0x3748de0,4, 0x3748e00,20, 0x3748e80,3, 0x3748e90,9, 0x3748ec0,6, 0x3748ee0,1, 0x3748ee8,7, 0x3749000,49, 0x3749100,12, 0x3749140,4, 0x3749184,1, 0x3749198,2, 0x37491a4,1, 0x37491b8,7, 0x37491e0,4, 0x3749200,20, 0x3749280,3, 0x3749290,9, 0x37492c0,6, 0x37492e0,1, 0x37492e8,7, 0x3749400,49, 0x3749500,12, 0x3749540,4, 0x3749584,1, 0x3749598,2, 0x37495a4,1, 0x37495b8,7, 0x37495e0,4, 0x3749600,20, 0x3749680,3, 0x3749690,9, 0x37496c0,6, 0x37496e0,1, 0x37496e8,7, 0x3749800,49, 0x3749900,12, 0x3749940,4, 0x3749984,1, 0x3749998,2, 0x37499a4,1, 0x37499b8,7, 0x37499e0,4, 0x3749a00,20, 0x3749a80,3, 0x3749a90,9, 0x3749ac0,6, 0x3749ae0,1, 0x3749ae8,7, 0x374a000,20, 0x374a080,2, 0x374a100,20, 0x374a180,2, 0x374a200,4, 0x374a400,20, 0x374a480,2, 0x374a500,20, 0x374a580,2, 0x374a600,4, 0x374a800,3, 0x374a840,12, 0x374a880,12, 0x374a8c0,12, 0x374a900,12, 0x374a940,12, 0x374a980,12, 0x374a9c0,12, 0x374aa00,12, 0x374ac00,12, 0x374ac40,7, 0x374ac60,10, 0x374b004,1, 0x374b018,40, 0x374b100,7, 0x374b120,7, 0x374b140,2, 0x374b14c,2, 0x374b160,2, 0x374b16c,2, 0x374b180,18, 0x374b200,2, 0x374b220,10, 0x374b260,20, 0x374b2c0,7, 0x374b300,15, 0x374b340,9, 0x374b380,6, 0x374b3a0,4, 0x374b400,4, 0x374c000,106, 0x374c200,2, 0x374c240,9, 0x374c280,7, 0x374c400,106, 0x374c604,6, 0x374c700,15, 0x374c740,9, 0x374c780,6, 0x374c7a0,6, 0x374c800,8, 0x374c824,1, 0x374c830,15, 0x374c870,3, 0x3760000,518, 0x3760900,45, 0x3760a00,45, 0x3760b00,45, 0x3760c00,45, 0x3760d00,45, 0x3760e00,45, 0x3760f00,45, 0x3761000,45, 0x3761800,9, 0x3761840,364, 0x3761e00,19, 0x3762000,9, 0x3762040,364, 0x3762600,19, 0x3762800,6, 0x3762820,3, 0x3762840,7, 0x3762880,6, 0x37628a0,3, 0x37628c0,7, 0x3762900,1, 0x3762908,3, 0x3762918,8, 0x3762940,7, 0x3763000,2, 0x3763800,18, 0x3763880,18, 0x3763c00,4, 0x3763c20,7, 0x3763d00,4, 0x3763d80,20, 0x3763e00,1, 0x3764000,21, 0x3764058,3, 0x3764100,1, 0x3764124,1, 0x376412c,5, 0x3764144,1, 0x376414c,6, 0x3764184,6, 0x37641a4,6, 0x37641c4,1, 0x37641cc,1, 0x3764400,9, 0x3764440,9, 0x3764480,15, 0x37644c0,15, 0x3764500,15, 0x3764540,15, 0x3764580,15, 0x37645c0,15, 0x3764600,15, 0x3764640,15, 0x3764680,59, 0x3764800,1, 0x3764808,16, 0x3764850,1, 0x3764858,7, 0x3768000,3, 0x3768010,1, 0x3768018,3, 0x376a000,4, 0x376a080,19, 0x376a100,12, 0x376a200,4, 0x376a280,19, 0x376a300,12, 0x376a400,2, 0x376a600,124, 0x376a800,4, 0x376a880,18, 0x376a900,4, 0x376a980,23, 0x376aa00,10, 0x376aa2c,2, 0x376aa40,2, 0x376aa4c,3, 0x376aa60,2, 0x376aa6c,3, 0x376aa80,2, 0x376aa8c,2, 0x376aaa0,2, 0x376aaac,2, 0x376aac0,2, 0x376aacc,2, 0x376ab00,4, 0x376ab40,15, 0x376ab80,3, 0x376ab90,7, 0x376abb0,3, 0x376abc0,3, 0x376abd0,3, 0x376abe0,1, 0x376ac00,17, 0x376ae00,15, 0x376ae40,4, 0x376ae60,17, 0x376aec0,6, 0x376aee0,4, 0x376aef4,11, 0x376af24,28, 0x376b000,1, 0x376b080,1, 0x376b0a0,5, 0x376b0c0,5, 0x376b0e0,5, 0x376b100,1, 0x376b120,5, 0x376b140,5, 0x376b160,5, 0x376b180,24, 0x376b200,5, 0x376c000,20, 0x3770000,518, 0x3770900,45, 0x3770a00,45, 0x3770b00,45, 0x3770c00,45, 0x3770d00,45, 0x3770e00,45, 0x3770f00,45, 0x3771000,45, 0x3771800,9, 0x3771840,364, 0x3771e00,19, 0x3772000,9, 0x3772040,364, 0x3772600,19, 0x3772800,6, 0x3772820,3, 0x3772840,7, 0x3772880,6, 0x37728a0,3, 0x37728c0,7, 0x3772900,1, 0x3772908,3, 0x3772918,8, 0x3772940,7, 0x3773000,2, 0x3773800,18, 0x3773880,18, 0x3773c00,4, 0x3773c20,7, 0x3773d00,4, 0x3773d80,20, 0x3773e00,1, 0x3774000,21, 0x3774058,3, 0x3774100,1, 0x3774124,1, 0x377412c,5, 0x3774144,1, 0x377414c,6, 0x3774184,6, 0x37741a4,6, 0x37741c4,1, 0x37741cc,1, 0x3774400,9, 0x3774440,9, 0x3774480,15, 0x37744c0,15, 0x3774500,15, 0x3774540,15, 0x3774580,15, 0x37745c0,15, 0x3774600,15, 0x3774640,15, 0x3774680,59, 0x3774800,1, 0x3774808,16, 0x3774850,1, 0x3774858,7, 0x3778000,3, 0x3778010,1, 0x3778018,3, 0x377a000,4, 0x377a080,19, 0x377a100,12, 0x377a200,4, 0x377a280,19, 0x377a300,12, 0x377a400,2, 0x377a600,124, 0x377a800,4, 0x377a880,18, 0x377a900,4, 0x377a980,23, 0x377aa00,10, 0x377aa2c,2, 0x377aa40,2, 0x377aa4c,3, 0x377aa60,2, 0x377aa6c,3, 0x377aa80,2, 0x377aa8c,2, 0x377aaa0,2, 0x377aaac,2, 0x377aac0,2, 0x377aacc,2, 0x377ab00,4, 0x377ab40,15, 0x377ab80,3, 0x377ab90,7, 0x377abb0,3, 0x377abc0,3, 0x377abd0,3, 0x377abe0,1, 0x377ac00,17, 0x377ae00,15, 0x377ae40,4, 0x377ae60,17, 0x377aec0,6, 0x377aee0,4, 0x377aef4,11, 0x377af24,28, 0x377b000,1, 0x377b080,1, 0x377b0a0,5, 0x377b0c0,5, 0x377b0e0,5, 0x377b100,1, 0x377b120,5, 0x377b140,5, 0x377b160,5, 0x377b180,24, 0x377b200,5, 0x377c000,20, 0x3780000,18, 0x3780050,3, 0x3780060,3, 0x3780070,14, 0x37800c0,5, 0x3780400,13, 0x3780440,2, 0x378044c,3, 0x3780460,2, 0x3780480,13, 0x37804c0,2, 0x37804cc,3, 0x37804e0,2, 0x3780500,1, 0x3780508,16, 0x3780560,2, 0x378056c,3, 0x3780600,4, 0x3780680,19, 0x3780800,24, 0x3780864,2, 0x3780870,4, 0x3780a00,27, 0x3780a80,4, 0x3780ac0,25, 0x3780b40,6, 0x3780b60,4, 0x3780b74,11, 0x3780ba4,8, 0x3780c00,3, 0x3780c10,3, 0x3780c20,1, 0x3780c40,11, 0x3780c80,23, 0x3780ce0,15, 0x3780d20,15, 0x3780d60,2, 0x3780d6c,2, 0x3780d80,1, 0x3781000,18, 0x3781050,3, 0x3781060,3, 0x3781070,14, 0x37810c0,5, 0x3781400,13, 0x3781440,2, 0x378144c,3, 0x3781460,2, 0x3781480,13, 0x37814c0,2, 0x37814cc,3, 0x37814e0,2, 0x3781500,1, 0x3781508,16, 0x3781560,2, 0x378156c,3, 0x3781600,4, 0x3781680,19, 0x3781800,24, 0x3781864,2, 0x3781870,4, 0x3781a00,27, 0x3781a80,4, 0x3781ac0,25, 0x3781b40,6, 0x3781b60,4, 0x3781b74,11, 0x3781ba4,8, 0x3781c00,3, 0x3781c10,3, 0x3781c20,1, 0x3781c40,11, 0x3781c80,23, 0x3781ce0,15, 0x3781d20,15, 0x3781d60,2, 0x3781d6c,2, 0x3781d80,1, 0x3782000,20, 0x3782080,7, 0x37820a0,1, 0x37820b0,1, 0x37820b8,2, 0x3784000,14, 0x3800000,534, 0x3801000,2, 0x3801040,9, 0x3801080,7, 0x3802000,534, 0x3803000,12, 0x3803044,6, 0x3803080,8, 0x38030a4,1, 0x38030c0,7, 0x38030e0,7, 0x3803100,7, 0x3803120,7, 0x3803140,8, 0x3803164,6, 0x3803180,12, 0x3804000,534, 0x3805000,2, 0x3805040,9, 0x3805080,7, 0x3806000,534, 0x3807000,12, 0x3807044,6, 0x3807080,8, 0x38070a4,1, 0x38070c0,7, 0x38070e0,7, 0x3807100,7, 0x3807120,7, 0x3807140,8, 0x3807164,6, 0x3807180,12, 0x3808004,5, 0x3808200,27, 0x3808280,4, 0x38082c0,25, 0x3808340,6, 0x3808360,4, 0x3808374,11, 0x38083a4,5, 0x3808400,1, 0x3810000,397, 0x3810800,93, 0x3810980,6, 0x3810a00,41, 0x3810b00,2, 0x3810b20,19, 0x3810c00,25, 0x3810c80,1, 0x3810d00,28, 0x3810d80,1, 0x3811000,397, 0x3811800,93, 0x3811980,6, 0x3811a00,41, 0x3811b00,2, 0x3811b20,19, 0x3811c00,25, 0x3811c80,1, 0x3811d00,28, 0x3811d80,1, 0x3812000,7, 0x3812040,9, 0x3812080,4, 0x38120a0,5, 0x38120c0,2, 0x3814000,3, 0x3814010,6, 0x3814200,7, 0x3814220,6, 0x3814240,7, 0x3814260,6, 0x3814280,2, 0x381428c,2, 0x38142a0,2, 0x38142ac,2, 0x38142c0,7, 0x38142e0,7, 0x3814300,2, 0x381430c,2, 0x3814320,6, 0x3814340,7, 0x3814360,6, 0x3814380,6, 0x38143a0,7, 0x38143c0,6, 0x38143e0,6, 0x3814400,3, 0x3814440,12, 0x3814484,1, 0x38144c0,16, 0x3814800,7, 0x3814820,14, 0x3814880,9, 0x38148a8,12, 0x3814900,7, 0x3814920,14, 0x3814980,9, 0x38149a8,12, 0x3814a00,10, 0x3814a40,2, 0x3814a4c,3, 0x3814c00,5, 0x3814c20,1, 0x3814c28,3, 0x3820000,534, 0x3821000,2, 0x3821040,9, 0x3821080,7, 0x3822000,534, 0x3823000,12, 0x3823044,6, 0x3823080,8, 0x38230a4,1, 0x38230c0,7, 0x38230e0,7, 0x3823100,7, 0x3823120,7, 0x3823140,8, 0x3823164,6, 0x3823180,12, 0x3824000,534, 0x3825000,2, 0x3825040,9, 0x3825080,7, 0x3826000,534, 0x3827000,12, 0x3827044,6, 0x3827080,8, 0x38270a4,1, 0x38270c0,7, 0x38270e0,7, 0x3827100,7, 0x3827120,7, 0x3827140,8, 0x3827164,6, 0x3827180,12, 0x3828004,5, 0x3828200,27, 0x3828280,4, 0x38282c0,25, 0x3828340,6, 0x3828360,4, 0x3828374,11, 0x38283a4,5, 0x3828400,1, 0x3830000,397, 0x3830800,93, 0x3830980,6, 0x3830a00,41, 0x3830b00,2, 0x3830b20,19, 0x3830c00,25, 0x3830c80,1, 0x3830d00,28, 0x3830d80,1, 0x3831000,397, 0x3831800,93, 0x3831980,6, 0x3831a00,41, 0x3831b00,2, 0x3831b20,19, 0x3831c00,25, 0x3831c80,1, 0x3831d00,28, 0x3831d80,1, 0x3832000,7, 0x3832040,9, 0x3832080,4, 0x38320a0,5, 0x38320c0,2, 0x3834000,3, 0x3834010,6, 0x3834200,7, 0x3834220,6, 0x3834240,7, 0x3834260,6, 0x3834280,2, 0x383428c,2, 0x38342a0,2, 0x38342ac,2, 0x38342c0,7, 0x38342e0,7, 0x3834300,2, 0x383430c,2, 0x3834320,6, 0x3834340,7, 0x3834360,6, 0x3834380,6, 0x38343a0,7, 0x38343c0,6, 0x38343e0,6, 0x3834400,3, 0x3834440,12, 0x3834484,1, 0x38344c0,16, 0x3834800,7, 0x3834820,14, 0x3834880,9, 0x38348a8,12, 0x3834900,7, 0x3834920,14, 0x3834980,9, 0x38349a8,12, 0x3834a00,10, 0x3834a40,2, 0x3834a4c,3, 0x3834c00,5, 0x3834c20,1, 0x3834c28,3, 0x3840000,37, 0x3840100,3, 0x3840110,15, 0x3840200,37, 0x3840300,3, 0x3840310,15, 0x3840400,5, 0x3840420,5, 0x3840440,18, 0x3840800,3, 0x3840810,2, 0x3840820,3, 0x3840830,2, 0x3840840,1, 0x3841000,12, 0x3841040,12, 0x3841080,2, 0x3841100,19, 0x3841180,19, 0x3841200,26, 0x3841400,20, 0x3841480,20, 0x3841500,8, 0x3841540,4, 0x3841580,15, 0x38415c0,15, 0x3841600,9, 0x3841630,5, 0x3842000,37, 0x3842100,3, 0x3842110,15, 0x3842200,37, 0x3842300,3, 0x3842310,15, 0x3842400,5, 0x3842420,5, 0x3842440,18, 0x3842800,3, 0x3842810,2, 0x3842820,3, 0x3842830,2, 0x3842840,1, 0x3843000,12, 0x3843040,12, 0x3843080,2, 0x3843100,19, 0x3843180,19, 0x3843200,26, 0x3843400,20, 0x3843480,20, 0x3843500,8, 0x3843540,4, 0x3843580,15, 0x38435c0,15, 0x3843600,9, 0x3843630,5, 0x3844000,6, 0x3844020,1, 0x384402c,3, 0x3844040,11, 0x3844070,3, 0x3844080,2, 0x3848000,49, 0x3848100,12, 0x3848140,4, 0x3848184,1, 0x3848198,2, 0x38481a4,1, 0x38481b8,7, 0x38481e0,4, 0x3848200,20, 0x3848280,3, 0x3848290,9, 0x38482c0,6, 0x38482e0,1, 0x38482e8,7, 0x3848400,49, 0x3848500,12, 0x3848540,4, 0x3848584,1, 0x3848598,2, 0x38485a4,1, 0x38485b8,7, 0x38485e0,4, 0x3848600,20, 0x3848680,3, 0x3848690,9, 0x38486c0,6, 0x38486e0,1, 0x38486e8,7, 0x3848800,49, 0x3848900,12, 0x3848940,4, 0x3848984,1, 0x3848998,2, 0x38489a4,1, 0x38489b8,7, 0x38489e0,4, 0x3848a00,20, 0x3848a80,3, 0x3848a90,9, 0x3848ac0,6, 0x3848ae0,1, 0x3848ae8,7, 0x3848c00,49, 0x3848d00,12, 0x3848d40,4, 0x3848d84,1, 0x3848d98,2, 0x3848da4,1, 0x3848db8,7, 0x3848de0,4, 0x3848e00,20, 0x3848e80,3, 0x3848e90,9, 0x3848ec0,6, 0x3848ee0,1, 0x3848ee8,7, 0x3849000,49, 0x3849100,12, 0x3849140,4, 0x3849184,1, 0x3849198,2, 0x38491a4,1, 0x38491b8,7, 0x38491e0,4, 0x3849200,20, 0x3849280,3, 0x3849290,9, 0x38492c0,6, 0x38492e0,1, 0x38492e8,7, 0x3849400,49, 0x3849500,12, 0x3849540,4, 0x3849584,1, 0x3849598,2, 0x38495a4,1, 0x38495b8,7, 0x38495e0,4, 0x3849600,20, 0x3849680,3, 0x3849690,9, 0x38496c0,6, 0x38496e0,1, 0x38496e8,7, 0x3849800,49, 0x3849900,12, 0x3849940,4, 0x3849984,1, 0x3849998,2, 0x38499a4,1, 0x38499b8,7, 0x38499e0,4, 0x3849a00,20, 0x3849a80,3, 0x3849a90,9, 0x3849ac0,6, 0x3849ae0,1, 0x3849ae8,7, 0x384a000,20, 0x384a080,2, 0x384a100,20, 0x384a180,2, 0x384a200,4, 0x384a400,20, 0x384a480,2, 0x384a500,20, 0x384a580,2, 0x384a600,4, 0x384a800,3, 0x384a840,12, 0x384a880,12, 0x384a8c0,12, 0x384a900,12, 0x384a940,12, 0x384a980,12, 0x384a9c0,12, 0x384aa00,12, 0x384ac00,12, 0x384ac40,7, 0x384ac60,10, 0x384b004,1, 0x384b018,40, 0x384b100,7, 0x384b120,7, 0x384b140,2, 0x384b14c,2, 0x384b160,2, 0x384b16c,2, 0x384b180,18, 0x384b200,2, 0x384b220,10, 0x384b260,20, 0x384b2c0,7, 0x384b300,15, 0x384b340,9, 0x384b380,6, 0x384b3a0,4, 0x384b400,4, 0x384c000,106, 0x384c200,2, 0x384c240,9, 0x384c280,7, 0x384c400,106, 0x384c604,6, 0x384c700,15, 0x384c740,9, 0x384c780,6, 0x384c7a0,6, 0x384c800,8, 0x384c824,1, 0x384c830,15, 0x384c870,3, 0x3860000,518, 0x3860900,45, 0x3860a00,45, 0x3860b00,45, 0x3860c00,45, 0x3860d00,45, 0x3860e00,45, 0x3860f00,45, 0x3861000,45, 0x3861800,9, 0x3861840,364, 0x3861e00,19, 0x3862000,9, 0x3862040,364, 0x3862600,19, 0x3862800,6, 0x3862820,3, 0x3862840,7, 0x3862880,6, 0x38628a0,3, 0x38628c0,7, 0x3862900,1, 0x3862908,3, 0x3862918,8, 0x3862940,7, 0x3863000,2, 0x3863800,18, 0x3863880,18, 0x3863c00,4, 0x3863c20,7, 0x3863d00,4, 0x3863d80,20, 0x3863e00,1, 0x3864000,21, 0x3864058,3, 0x3864100,1, 0x3864124,1, 0x386412c,5, 0x3864144,1, 0x386414c,6, 0x3864184,6, 0x38641a4,6, 0x38641c4,1, 0x38641cc,1, 0x3864400,9, 0x3864440,9, 0x3864480,15, 0x38644c0,15, 0x3864500,15, 0x3864540,15, 0x3864580,15, 0x38645c0,15, 0x3864600,15, 0x3864640,15, 0x3864680,59, 0x3864800,1, 0x3864808,16, 0x3864850,1, 0x3864858,7, 0x3868000,3, 0x3868010,1, 0x3868018,3, 0x386a000,4, 0x386a080,19, 0x386a100,12, 0x386a200,4, 0x386a280,19, 0x386a300,12, 0x386a400,2, 0x386a600,124, 0x386a800,4, 0x386a880,18, 0x386a900,4, 0x386a980,23, 0x386aa00,10, 0x386aa2c,2, 0x386aa40,2, 0x386aa4c,3, 0x386aa60,2, 0x386aa6c,3, 0x386aa80,2, 0x386aa8c,2, 0x386aaa0,2, 0x386aaac,2, 0x386aac0,2, 0x386aacc,2, 0x386ab00,4, 0x386ab40,15, 0x386ab80,3, 0x386ab90,7, 0x386abb0,3, 0x386abc0,3, 0x386abd0,3, 0x386abe0,1, 0x386ac00,17, 0x386ae00,15, 0x386ae40,4, 0x386ae60,17, 0x386aec0,6, 0x386aee0,4, 0x386aef4,11, 0x386af24,28, 0x386b000,1, 0x386b080,1, 0x386b0a0,5, 0x386b0c0,5, 0x386b0e0,5, 0x386b100,1, 0x386b120,5, 0x386b140,5, 0x386b160,5, 0x386b180,24, 0x386b200,5, 0x386c000,20, 0x3870000,518, 0x3870900,45, 0x3870a00,45, 0x3870b00,45, 0x3870c00,45, 0x3870d00,45, 0x3870e00,45, 0x3870f00,45, 0x3871000,45, 0x3871800,9, 0x3871840,364, 0x3871e00,19, 0x3872000,9, 0x3872040,364, 0x3872600,19, 0x3872800,6, 0x3872820,3, 0x3872840,7, 0x3872880,6, 0x38728a0,3, 0x38728c0,7, 0x3872900,1, 0x3872908,3, 0x3872918,8, 0x3872940,7, 0x3873000,2, 0x3873800,18, 0x3873880,18, 0x3873c00,4, 0x3873c20,7, 0x3873d00,4, 0x3873d80,20, 0x3873e00,1, 0x3874000,21, 0x3874058,3, 0x3874100,1, 0x3874124,1, 0x387412c,5, 0x3874144,1, 0x387414c,6, 0x3874184,6, 0x38741a4,6, 0x38741c4,1, 0x38741cc,1, 0x3874400,9, 0x3874440,9, 0x3874480,15, 0x38744c0,15, 0x3874500,15, 0x3874540,15, 0x3874580,15, 0x38745c0,15, 0x3874600,15, 0x3874640,15, 0x3874680,59, 0x3874800,1, 0x3874808,16, 0x3874850,1, 0x3874858,7, 0x3878000,3, 0x3878010,1, 0x3878018,3, 0x387a000,4, 0x387a080,19, 0x387a100,12, 0x387a200,4, 0x387a280,19, 0x387a300,12, 0x387a400,2, 0x387a600,124, 0x387a800,4, 0x387a880,18, 0x387a900,4, 0x387a980,23, 0x387aa00,10, 0x387aa2c,2, 0x387aa40,2, 0x387aa4c,3, 0x387aa60,2, 0x387aa6c,3, 0x387aa80,2, 0x387aa8c,2, 0x387aaa0,2, 0x387aaac,2, 0x387aac0,2, 0x387aacc,2, 0x387ab00,4, 0x387ab40,15, 0x387ab80,3, 0x387ab90,7, 0x387abb0,3, 0x387abc0,3, 0x387abd0,3, 0x387abe0,1, 0x387ac00,17, 0x387ae00,15, 0x387ae40,4, 0x387ae60,17, 0x387aec0,6, 0x387aee0,4, 0x387aef4,11, 0x387af24,28, 0x387b000,1, 0x387b080,1, 0x387b0a0,5, 0x387b0c0,5, 0x387b0e0,5, 0x387b100,1, 0x387b120,5, 0x387b140,5, 0x387b160,5, 0x387b180,24, 0x387b200,5, 0x387c000,20, 0x3880000,18, 0x3880050,3, 0x3880060,3, 0x3880070,14, 0x38800c0,5, 0x3880400,13, 0x3880440,2, 0x388044c,3, 0x3880460,2, 0x3880480,13, 0x38804c0,2, 0x38804cc,3, 0x38804e0,2, 0x3880500,1, 0x3880508,16, 0x3880560,2, 0x388056c,3, 0x3880600,4, 0x3880680,19, 0x3880800,24, 0x3880864,2, 0x3880870,4, 0x3880a00,27, 0x3880a80,4, 0x3880ac0,25, 0x3880b40,6, 0x3880b60,4, 0x3880b74,11, 0x3880ba4,8, 0x3880c00,3, 0x3880c10,3, 0x3880c20,1, 0x3880c40,11, 0x3880c80,23, 0x3880ce0,15, 0x3880d20,15, 0x3880d60,2, 0x3880d6c,2, 0x3880d80,1, 0x3881000,18, 0x3881050,3, 0x3881060,3, 0x3881070,14, 0x38810c0,5, 0x3881400,13, 0x3881440,2, 0x388144c,3, 0x3881460,2, 0x3881480,13, 0x38814c0,2, 0x38814cc,3, 0x38814e0,2, 0x3881500,1, 0x3881508,16, 0x3881560,2, 0x388156c,3, 0x3881600,4, 0x3881680,19, 0x3881800,24, 0x3881864,2, 0x3881870,4, 0x3881a00,27, 0x3881a80,4, 0x3881ac0,25, 0x3881b40,6, 0x3881b60,4, 0x3881b74,11, 0x3881ba4,8, 0x3881c00,3, 0x3881c10,3, 0x3881c20,1, 0x3881c40,11, 0x3881c80,23, 0x3881ce0,15, 0x3881d20,15, 0x3881d60,2, 0x3881d6c,2, 0x3881d80,1, 0x3882000,20, 0x3882080,7, 0x38820a0,1, 0x38820b0,1, 0x38820b8,2, 0x3884000,14, 0x3900000,534, 0x3901000,2, 0x3901040,9, 0x3901080,7, 0x3902000,534, 0x3903000,12, 0x3903044,6, 0x3903080,8, 0x39030a4,1, 0x39030c0,7, 0x39030e0,7, 0x3903100,7, 0x3903120,7, 0x3903140,8, 0x3903164,6, 0x3903180,12, 0x3904000,534, 0x3905000,2, 0x3905040,9, 0x3905080,7, 0x3906000,534, 0x3907000,12, 0x3907044,6, 0x3907080,8, 0x39070a4,1, 0x39070c0,7, 0x39070e0,7, 0x3907100,7, 0x3907120,7, 0x3907140,8, 0x3907164,6, 0x3907180,12, 0x3908004,5, 0x3908200,27, 0x3908280,4, 0x39082c0,25, 0x3908340,6, 0x3908360,4, 0x3908374,11, 0x39083a4,5, 0x3908400,1, 0x3910000,397, 0x3910800,93, 0x3910980,6, 0x3910a00,41, 0x3910b00,2, 0x3910b20,19, 0x3910c00,25, 0x3910c80,1, 0x3910d00,28, 0x3910d80,1, 0x3911000,397, 0x3911800,93, 0x3911980,6, 0x3911a00,41, 0x3911b00,2, 0x3911b20,19, 0x3911c00,25, 0x3911c80,1, 0x3911d00,28, 0x3911d80,1, 0x3912000,7, 0x3912040,9, 0x3912080,4, 0x39120a0,5, 0x39120c0,2, 0x3914000,3, 0x3914010,6, 0x3914200,7, 0x3914220,6, 0x3914240,7, 0x3914260,6, 0x3914280,2, 0x391428c,2, 0x39142a0,2, 0x39142ac,2, 0x39142c0,7, 0x39142e0,7, 0x3914300,2, 0x391430c,2, 0x3914320,6, 0x3914340,7, 0x3914360,6, 0x3914380,6, 0x39143a0,7, 0x39143c0,6, 0x39143e0,6, 0x3914400,3, 0x3914440,12, 0x3914484,1, 0x39144c0,16, 0x3914800,7, 0x3914820,14, 0x3914880,9, 0x39148a8,12, 0x3914900,7, 0x3914920,14, 0x3914980,9, 0x39149a8,12, 0x3914a00,10, 0x3914a40,2, 0x3914a4c,3, 0x3914c00,5, 0x3914c20,1, 0x3914c28,3, 0x3920000,534, 0x3921000,2, 0x3921040,9, 0x3921080,7, 0x3922000,534, 0x3923000,12, 0x3923044,6, 0x3923080,8, 0x39230a4,1, 0x39230c0,7, 0x39230e0,7, 0x3923100,7, 0x3923120,7, 0x3923140,8, 0x3923164,6, 0x3923180,12, 0x3924000,534, 0x3925000,2, 0x3925040,9, 0x3925080,7, 0x3926000,534, 0x3927000,12, 0x3927044,6, 0x3927080,8, 0x39270a4,1, 0x39270c0,7, 0x39270e0,7, 0x3927100,7, 0x3927120,7, 0x3927140,8, 0x3927164,6, 0x3927180,12, 0x3928004,5, 0x3928200,27, 0x3928280,4, 0x39282c0,25, 0x3928340,6, 0x3928360,4, 0x3928374,11, 0x39283a4,5, 0x3928400,1, 0x3930000,397, 0x3930800,93, 0x3930980,6, 0x3930a00,41, 0x3930b00,2, 0x3930b20,19, 0x3930c00,25, 0x3930c80,1, 0x3930d00,28, 0x3930d80,1, 0x3931000,397, 0x3931800,93, 0x3931980,6, 0x3931a00,41, 0x3931b00,2, 0x3931b20,19, 0x3931c00,25, 0x3931c80,1, 0x3931d00,28, 0x3931d80,1, 0x3932000,7, 0x3932040,9, 0x3932080,4, 0x39320a0,5, 0x39320c0,2, 0x3934000,3, 0x3934010,6, 0x3934200,7, 0x3934220,6, 0x3934240,7, 0x3934260,6, 0x3934280,2, 0x393428c,2, 0x39342a0,2, 0x39342ac,2, 0x39342c0,7, 0x39342e0,7, 0x3934300,2, 0x393430c,2, 0x3934320,6, 0x3934340,7, 0x3934360,6, 0x3934380,6, 0x39343a0,7, 0x39343c0,6, 0x39343e0,6, 0x3934400,3, 0x3934440,12, 0x3934484,1, 0x39344c0,16, 0x3934800,7, 0x3934820,14, 0x3934880,9, 0x39348a8,12, 0x3934900,7, 0x3934920,14, 0x3934980,9, 0x39349a8,12, 0x3934a00,10, 0x3934a40,2, 0x3934a4c,3, 0x3934c00,5, 0x3934c20,1, 0x3934c28,3, 0x3940000,37, 0x3940100,3, 0x3940110,15, 0x3940200,37, 0x3940300,3, 0x3940310,15, 0x3940400,5, 0x3940420,5, 0x3940440,18, 0x3940800,3, 0x3940810,2, 0x3940820,3, 0x3940830,2, 0x3940840,1, 0x3941000,12, 0x3941040,12, 0x3941080,2, 0x3941100,19, 0x3941180,19, 0x3941200,26, 0x3941400,20, 0x3941480,20, 0x3941500,8, 0x3941540,4, 0x3941580,15, 0x39415c0,15, 0x3941600,9, 0x3941630,5, 0x3942000,37, 0x3942100,3, 0x3942110,15, 0x3942200,37, 0x3942300,3, 0x3942310,15, 0x3942400,5, 0x3942420,5, 0x3942440,18, 0x3942800,3, 0x3942810,2, 0x3942820,3, 0x3942830,2, 0x3942840,1, 0x3943000,12, 0x3943040,12, 0x3943080,2, 0x3943100,19, 0x3943180,19, 0x3943200,26, 0x3943400,20, 0x3943480,20, 0x3943500,8, 0x3943540,4, 0x3943580,15, 0x39435c0,15, 0x3943600,9, 0x3943630,5, 0x3944000,6, 0x3944020,1, 0x394402c,3, 0x3944040,11, 0x3944070,3, 0x3944080,2, 0x3948000,49, 0x3948100,12, 0x3948140,4, 0x3948184,1, 0x3948198,2, 0x39481a4,1, 0x39481b8,7, 0x39481e0,4, 0x3948200,20, 0x3948280,3, 0x3948290,9, 0x39482c0,6, 0x39482e0,1, 0x39482e8,7, 0x3948400,49, 0x3948500,12, 0x3948540,4, 0x3948584,1, 0x3948598,2, 0x39485a4,1, 0x39485b8,7, 0x39485e0,4, 0x3948600,20, 0x3948680,3, 0x3948690,9, 0x39486c0,6, 0x39486e0,1, 0x39486e8,7, 0x3948800,49, 0x3948900,12, 0x3948940,4, 0x3948984,1, 0x3948998,2, 0x39489a4,1, 0x39489b8,7, 0x39489e0,4, 0x3948a00,20, 0x3948a80,3, 0x3948a90,9, 0x3948ac0,6, 0x3948ae0,1, 0x3948ae8,7, 0x3948c00,49, 0x3948d00,12, 0x3948d40,4, 0x3948d84,1, 0x3948d98,2, 0x3948da4,1, 0x3948db8,7, 0x3948de0,4, 0x3948e00,20, 0x3948e80,3, 0x3948e90,9, 0x3948ec0,6, 0x3948ee0,1, 0x3948ee8,7, 0x3949000,49, 0x3949100,12, 0x3949140,4, 0x3949184,1, 0x3949198,2, 0x39491a4,1, 0x39491b8,7, 0x39491e0,4, 0x3949200,20, 0x3949280,3, 0x3949290,9, 0x39492c0,6, 0x39492e0,1, 0x39492e8,7, 0x3949400,49, 0x3949500,12, 0x3949540,4, 0x3949584,1, 0x3949598,2, 0x39495a4,1, 0x39495b8,7, 0x39495e0,4, 0x3949600,20, 0x3949680,3, 0x3949690,9, 0x39496c0,6, 0x39496e0,1, 0x39496e8,7, 0x3949800,49, 0x3949900,12, 0x3949940,4, 0x3949984,1, 0x3949998,2, 0x39499a4,1, 0x39499b8,7, 0x39499e0,4, 0x3949a00,20, 0x3949a80,3, 0x3949a90,9, 0x3949ac0,6, 0x3949ae0,1, 0x3949ae8,7, 0x394a000,20, 0x394a080,2, 0x394a100,20, 0x394a180,2, 0x394a200,4, 0x394a400,20, 0x394a480,2, 0x394a500,20, 0x394a580,2, 0x394a600,4, 0x394a800,3, 0x394a840,12, 0x394a880,12, 0x394a8c0,12, 0x394a900,12, 0x394a940,12, 0x394a980,12, 0x394a9c0,12, 0x394aa00,12, 0x394ac00,12, 0x394ac40,7, 0x394ac60,10, 0x394b004,1, 0x394b018,40, 0x394b100,7, 0x394b120,7, 0x394b140,2, 0x394b14c,2, 0x394b160,2, 0x394b16c,2, 0x394b180,18, 0x394b200,2, 0x394b220,10, 0x394b260,20, 0x394b2c0,7, 0x394b300,15, 0x394b340,9, 0x394b380,6, 0x394b3a0,4, 0x394b400,4, 0x394c000,106, 0x394c200,2, 0x394c240,9, 0x394c280,7, 0x394c400,106, 0x394c604,6, 0x394c700,15, 0x394c740,9, 0x394c780,6, 0x394c7a0,6, 0x394c800,8, 0x394c824,1, 0x394c830,15, 0x394c870,3, 0x3960000,518, 0x3960900,45, 0x3960a00,45, 0x3960b00,45, 0x3960c00,45, 0x3960d00,45, 0x3960e00,45, 0x3960f00,45, 0x3961000,45, 0x3961800,9, 0x3961840,364, 0x3961e00,19, 0x3962000,9, 0x3962040,364, 0x3962600,19, 0x3962800,6, 0x3962820,3, 0x3962840,7, 0x3962880,6, 0x39628a0,3, 0x39628c0,7, 0x3962900,1, 0x3962908,3, 0x3962918,8, 0x3962940,7, 0x3963000,2, 0x3963800,18, 0x3963880,18, 0x3963c00,4, 0x3963c20,7, 0x3963d00,4, 0x3963d80,20, 0x3963e00,1, 0x3964000,21, 0x3964058,3, 0x3964100,1, 0x3964124,1, 0x396412c,5, 0x3964144,1, 0x396414c,6, 0x3964184,6, 0x39641a4,6, 0x39641c4,1, 0x39641cc,1, 0x3964400,9, 0x3964440,9, 0x3964480,15, 0x39644c0,15, 0x3964500,15, 0x3964540,15, 0x3964580,15, 0x39645c0,15, 0x3964600,15, 0x3964640,15, 0x3964680,59, 0x3964800,1, 0x3964808,16, 0x3964850,1, 0x3964858,7, 0x3968000,3, 0x3968010,1, 0x3968018,3, 0x396a000,4, 0x396a080,19, 0x396a100,12, 0x396a200,4, 0x396a280,19, 0x396a300,12, 0x396a400,2, 0x396a600,124, 0x396a800,4, 0x396a880,18, 0x396a900,4, 0x396a980,23, 0x396aa00,10, 0x396aa2c,2, 0x396aa40,2, 0x396aa4c,3, 0x396aa60,2, 0x396aa6c,3, 0x396aa80,2, 0x396aa8c,2, 0x396aaa0,2, 0x396aaac,2, 0x396aac0,2, 0x396aacc,2, 0x396ab00,4, 0x396ab40,15, 0x396ab80,3, 0x396ab90,7, 0x396abb0,3, 0x396abc0,3, 0x396abd0,3, 0x396abe0,1, 0x396ac00,17, 0x396ae00,15, 0x396ae40,4, 0x396ae60,17, 0x396aec0,6, 0x396aee0,4, 0x396aef4,11, 0x396af24,28, 0x396b000,1, 0x396b080,1, 0x396b0a0,5, 0x396b0c0,5, 0x396b0e0,5, 0x396b100,1, 0x396b120,5, 0x396b140,5, 0x396b160,5, 0x396b180,24, 0x396b200,5, 0x396c000,20, 0x3970000,518, 0x3970900,45, 0x3970a00,45, 0x3970b00,45, 0x3970c00,45, 0x3970d00,45, 0x3970e00,45, 0x3970f00,45, 0x3971000,45, 0x3971800,9, 0x3971840,364, 0x3971e00,19, 0x3972000,9, 0x3972040,364, 0x3972600,19, 0x3972800,6, 0x3972820,3, 0x3972840,7, 0x3972880,6, 0x39728a0,3, 0x39728c0,7, 0x3972900,1, 0x3972908,3, 0x3972918,8, 0x3972940,7, 0x3973000,2, 0x3973800,18, 0x3973880,18, 0x3973c00,4, 0x3973c20,7, 0x3973d00,4, 0x3973d80,20, 0x3973e00,1, 0x3974000,21, 0x3974058,3, 0x3974100,1, 0x3974124,1, 0x397412c,5, 0x3974144,1, 0x397414c,6, 0x3974184,6, 0x39741a4,6, 0x39741c4,1, 0x39741cc,1, 0x3974400,9, 0x3974440,9, 0x3974480,15, 0x39744c0,15, 0x3974500,15, 0x3974540,15, 0x3974580,15, 0x39745c0,15, 0x3974600,15, 0x3974640,15, 0x3974680,59, 0x3974800,1, 0x3974808,16, 0x3974850,1, 0x3974858,7, 0x3978000,3, 0x3978010,1, 0x3978018,3, 0x397a000,4, 0x397a080,19, 0x397a100,12, 0x397a200,4, 0x397a280,19, 0x397a300,12, 0x397a400,2, 0x397a600,124, 0x397a800,4, 0x397a880,18, 0x397a900,4, 0x397a980,23, 0x397aa00,10, 0x397aa2c,2, 0x397aa40,2, 0x397aa4c,3, 0x397aa60,2, 0x397aa6c,3, 0x397aa80,2, 0x397aa8c,2, 0x397aaa0,2, 0x397aaac,2, 0x397aac0,2, 0x397aacc,2, 0x397ab00,4, 0x397ab40,15, 0x397ab80,3, 0x397ab90,7, 0x397abb0,3, 0x397abc0,3, 0x397abd0,3, 0x397abe0,1, 0x397ac00,17, 0x397ae00,15, 0x397ae40,4, 0x397ae60,17, 0x397aec0,6, 0x397aee0,4, 0x397aef4,11, 0x397af24,28, 0x397b000,1, 0x397b080,1, 0x397b0a0,5, 0x397b0c0,5, 0x397b0e0,5, 0x397b100,1, 0x397b120,5, 0x397b140,5, 0x397b160,5, 0x397b180,24, 0x397b200,5, 0x397c000,20, 0x3980000,18, 0x3980050,3, 0x3980060,3, 0x3980070,14, 0x39800c0,5, 0x3980400,13, 0x3980440,2, 0x398044c,3, 0x3980460,2, 0x3980480,13, 0x39804c0,2, 0x39804cc,3, 0x39804e0,2, 0x3980500,1, 0x3980508,16, 0x3980560,2, 0x398056c,3, 0x3980600,4, 0x3980680,19, 0x3980800,24, 0x3980864,2, 0x3980870,4, 0x3980a00,27, 0x3980a80,4, 0x3980ac0,25, 0x3980b40,6, 0x3980b60,4, 0x3980b74,11, 0x3980ba4,8, 0x3980c00,3, 0x3980c10,3, 0x3980c20,1, 0x3980c40,11, 0x3980c80,23, 0x3980ce0,15, 0x3980d20,15, 0x3980d60,2, 0x3980d6c,2, 0x3980d80,1, 0x3981000,18, 0x3981050,3, 0x3981060,3, 0x3981070,14, 0x39810c0,5, 0x3981400,13, 0x3981440,2, 0x398144c,3, 0x3981460,2, 0x3981480,13, 0x39814c0,2, 0x39814cc,3, 0x39814e0,2, 0x3981500,1, 0x3981508,16, 0x3981560,2, 0x398156c,3, 0x3981600,4, 0x3981680,19, 0x3981800,24, 0x3981864,2, 0x3981870,4, 0x3981a00,27, 0x3981a80,4, 0x3981ac0,25, 0x3981b40,6, 0x3981b60,4, 0x3981b74,11, 0x3981ba4,8, 0x3981c00,3, 0x3981c10,3, 0x3981c20,1, 0x3981c40,11, 0x3981c80,23, 0x3981ce0,15, 0x3981d20,15, 0x3981d60,2, 0x3981d6c,2, 0x3981d80,1, 0x3982000,20, 0x3982080,7, 0x39820a0,1, 0x39820b0,1, 0x39820b8,2, 0x3984000,14, 0x3a00000,534, 0x3a01000,2, 0x3a01040,9, 0x3a01080,7, 0x3a02000,534, 0x3a03000,12, 0x3a03044,6, 0x3a03080,8, 0x3a030a4,1, 0x3a030c0,7, 0x3a030e0,7, 0x3a03100,7, 0x3a03120,7, 0x3a03140,8, 0x3a03164,6, 0x3a03180,12, 0x3a04000,534, 0x3a05000,2, 0x3a05040,9, 0x3a05080,7, 0x3a06000,534, 0x3a07000,12, 0x3a07044,6, 0x3a07080,8, 0x3a070a4,1, 0x3a070c0,7, 0x3a070e0,7, 0x3a07100,7, 0x3a07120,7, 0x3a07140,8, 0x3a07164,6, 0x3a07180,12, 0x3a08004,5, 0x3a08200,27, 0x3a08280,4, 0x3a082c0,25, 0x3a08340,6, 0x3a08360,4, 0x3a08374,11, 0x3a083a4,5, 0x3a08400,1, 0x3a10000,397, 0x3a10800,93, 0x3a10980,6, 0x3a10a00,41, 0x3a10b00,2, 0x3a10b20,19, 0x3a10c00,25, 0x3a10c80,1, 0x3a10d00,28, 0x3a10d80,1, 0x3a11000,397, 0x3a11800,93, 0x3a11980,6, 0x3a11a00,41, 0x3a11b00,2, 0x3a11b20,19, 0x3a11c00,25, 0x3a11c80,1, 0x3a11d00,28, 0x3a11d80,1, 0x3a12000,7, 0x3a12040,9, 0x3a12080,4, 0x3a120a0,5, 0x3a120c0,2, 0x3a14000,3, 0x3a14010,6, 0x3a14200,7, 0x3a14220,6, 0x3a14240,7, 0x3a14260,6, 0x3a14280,2, 0x3a1428c,2, 0x3a142a0,2, 0x3a142ac,2, 0x3a142c0,7, 0x3a142e0,7, 0x3a14300,2, 0x3a1430c,2, 0x3a14320,6, 0x3a14340,7, 0x3a14360,6, 0x3a14380,6, 0x3a143a0,7, 0x3a143c0,6, 0x3a143e0,6, 0x3a14400,3, 0x3a14440,12, 0x3a14484,1, 0x3a144c0,16, 0x3a14800,7, 0x3a14820,14, 0x3a14880,9, 0x3a148a8,12, 0x3a14900,7, 0x3a14920,14, 0x3a14980,9, 0x3a149a8,12, 0x3a14a00,10, 0x3a14a40,2, 0x3a14a4c,3, 0x3a14c00,5, 0x3a14c20,1, 0x3a14c28,3, 0x3a20000,534, 0x3a21000,2, 0x3a21040,9, 0x3a21080,7, 0x3a22000,534, 0x3a23000,12, 0x3a23044,6, 0x3a23080,8, 0x3a230a4,1, 0x3a230c0,7, 0x3a230e0,7, 0x3a23100,7, 0x3a23120,7, 0x3a23140,8, 0x3a23164,6, 0x3a23180,12, 0x3a24000,534, 0x3a25000,2, 0x3a25040,9, 0x3a25080,7, 0x3a26000,534, 0x3a27000,12, 0x3a27044,6, 0x3a27080,8, 0x3a270a4,1, 0x3a270c0,7, 0x3a270e0,7, 0x3a27100,7, 0x3a27120,7, 0x3a27140,8, 0x3a27164,6, 0x3a27180,12, 0x3a28004,5, 0x3a28200,27, 0x3a28280,4, 0x3a282c0,25, 0x3a28340,6, 0x3a28360,4, 0x3a28374,11, 0x3a283a4,5, 0x3a28400,1, 0x3a30000,397, 0x3a30800,93, 0x3a30980,6, 0x3a30a00,41, 0x3a30b00,2, 0x3a30b20,19, 0x3a30c00,25, 0x3a30c80,1, 0x3a30d00,28, 0x3a30d80,1, 0x3a31000,397, 0x3a31800,93, 0x3a31980,6, 0x3a31a00,41, 0x3a31b00,2, 0x3a31b20,19, 0x3a31c00,25, 0x3a31c80,1, 0x3a31d00,28, 0x3a31d80,1, 0x3a32000,7, 0x3a32040,9, 0x3a32080,4, 0x3a320a0,5, 0x3a320c0,2, 0x3a34000,3, 0x3a34010,6, 0x3a34200,7, 0x3a34220,6, 0x3a34240,7, 0x3a34260,6, 0x3a34280,2, 0x3a3428c,2, 0x3a342a0,2, 0x3a342ac,2, 0x3a342c0,7, 0x3a342e0,7, 0x3a34300,2, 0x3a3430c,2, 0x3a34320,6, 0x3a34340,7, 0x3a34360,6, 0x3a34380,6, 0x3a343a0,7, 0x3a343c0,6, 0x3a343e0,6, 0x3a34400,3, 0x3a34440,12, 0x3a34484,1, 0x3a344c0,16, 0x3a34800,7, 0x3a34820,14, 0x3a34880,9, 0x3a348a8,12, 0x3a34900,7, 0x3a34920,14, 0x3a34980,9, 0x3a349a8,12, 0x3a34a00,10, 0x3a34a40,2, 0x3a34a4c,3, 0x3a34c00,5, 0x3a34c20,1, 0x3a34c28,3, 0x3a40000,37, 0x3a40100,3, 0x3a40110,15, 0x3a40200,37, 0x3a40300,3, 0x3a40310,15, 0x3a40400,5, 0x3a40420,5, 0x3a40440,18, 0x3a40800,3, 0x3a40810,2, 0x3a40820,3, 0x3a40830,2, 0x3a40840,1, 0x3a41000,12, 0x3a41040,12, 0x3a41080,2, 0x3a41100,19, 0x3a41180,19, 0x3a41200,26, 0x3a41400,20, 0x3a41480,20, 0x3a41500,8, 0x3a41540,4, 0x3a41580,15, 0x3a415c0,15, 0x3a41600,9, 0x3a41630,5, 0x3a42000,37, 0x3a42100,3, 0x3a42110,15, 0x3a42200,37, 0x3a42300,3, 0x3a42310,15, 0x3a42400,5, 0x3a42420,5, 0x3a42440,18, 0x3a42800,3, 0x3a42810,2, 0x3a42820,3, 0x3a42830,2, 0x3a42840,1, 0x3a43000,12, 0x3a43040,12, 0x3a43080,2, 0x3a43100,19, 0x3a43180,19, 0x3a43200,26, 0x3a43400,20, 0x3a43480,20, 0x3a43500,8, 0x3a43540,4, 0x3a43580,15, 0x3a435c0,15, 0x3a43600,9, 0x3a43630,5, 0x3a44000,6, 0x3a44020,1, 0x3a4402c,3, 0x3a44040,11, 0x3a44070,3, 0x3a44080,2, 0x3a48000,49, 0x3a48100,12, 0x3a48140,4, 0x3a48184,1, 0x3a48198,2, 0x3a481a4,1, 0x3a481b8,7, 0x3a481e0,4, 0x3a48200,20, 0x3a48280,3, 0x3a48290,9, 0x3a482c0,6, 0x3a482e0,1, 0x3a482e8,7, 0x3a48400,49, 0x3a48500,12, 0x3a48540,4, 0x3a48584,1, 0x3a48598,2, 0x3a485a4,1, 0x3a485b8,7, 0x3a485e0,4, 0x3a48600,20, 0x3a48680,3, 0x3a48690,9, 0x3a486c0,6, 0x3a486e0,1, 0x3a486e8,7, 0x3a48800,49, 0x3a48900,12, 0x3a48940,4, 0x3a48984,1, 0x3a48998,2, 0x3a489a4,1, 0x3a489b8,7, 0x3a489e0,4, 0x3a48a00,20, 0x3a48a80,3, 0x3a48a90,9, 0x3a48ac0,6, 0x3a48ae0,1, 0x3a48ae8,7, 0x3a48c00,49, 0x3a48d00,12, 0x3a48d40,4, 0x3a48d84,1, 0x3a48d98,2, 0x3a48da4,1, 0x3a48db8,7, 0x3a48de0,4, 0x3a48e00,20, 0x3a48e80,3, 0x3a48e90,9, 0x3a48ec0,6, 0x3a48ee0,1, 0x3a48ee8,7, 0x3a49000,49, 0x3a49100,12, 0x3a49140,4, 0x3a49184,1, 0x3a49198,2, 0x3a491a4,1, 0x3a491b8,7, 0x3a491e0,4, 0x3a49200,20, 0x3a49280,3, 0x3a49290,9, 0x3a492c0,6, 0x3a492e0,1, 0x3a492e8,7, 0x3a49400,49, 0x3a49500,12, 0x3a49540,4, 0x3a49584,1, 0x3a49598,2, 0x3a495a4,1, 0x3a495b8,7, 0x3a495e0,4, 0x3a49600,20, 0x3a49680,3, 0x3a49690,9, 0x3a496c0,6, 0x3a496e0,1, 0x3a496e8,7, 0x3a49800,49, 0x3a49900,12, 0x3a49940,4, 0x3a49984,1, 0x3a49998,2, 0x3a499a4,1, 0x3a499b8,7, 0x3a499e0,4, 0x3a49a00,20, 0x3a49a80,3, 0x3a49a90,9, 0x3a49ac0,6, 0x3a49ae0,1, 0x3a49ae8,7, 0x3a4a000,20, 0x3a4a080,2, 0x3a4a100,20, 0x3a4a180,2, 0x3a4a200,4, 0x3a4a400,20, 0x3a4a480,2, 0x3a4a500,20, 0x3a4a580,2, 0x3a4a600,4, 0x3a4a800,3, 0x3a4a840,12, 0x3a4a880,12, 0x3a4a8c0,12, 0x3a4a900,12, 0x3a4a940,12, 0x3a4a980,12, 0x3a4a9c0,12, 0x3a4aa00,12, 0x3a4ac00,12, 0x3a4ac40,7, 0x3a4ac60,10, 0x3a4b004,1, 0x3a4b018,40, 0x3a4b100,7, 0x3a4b120,7, 0x3a4b140,2, 0x3a4b14c,2, 0x3a4b160,2, 0x3a4b16c,2, 0x3a4b180,18, 0x3a4b200,2, 0x3a4b220,10, 0x3a4b260,20, 0x3a4b2c0,7, 0x3a4b300,15, 0x3a4b340,9, 0x3a4b380,6, 0x3a4b3a0,4, 0x3a4b400,4, 0x3a4c000,106, 0x3a4c200,2, 0x3a4c240,9, 0x3a4c280,7, 0x3a4c400,106, 0x3a4c604,6, 0x3a4c700,15, 0x3a4c740,9, 0x3a4c780,6, 0x3a4c7a0,6, 0x3a4c800,8, 0x3a4c824,1, 0x3a4c830,15, 0x3a4c870,3, 0x3a60000,518, 0x3a60900,45, 0x3a60a00,45, 0x3a60b00,45, 0x3a60c00,45, 0x3a60d00,45, 0x3a60e00,45, 0x3a60f00,45, 0x3a61000,45, 0x3a61800,9, 0x3a61840,364, 0x3a61e00,19, 0x3a62000,9, 0x3a62040,364, 0x3a62600,19, 0x3a62800,6, 0x3a62820,3, 0x3a62840,7, 0x3a62880,6, 0x3a628a0,3, 0x3a628c0,7, 0x3a62900,1, 0x3a62908,3, 0x3a62918,8, 0x3a62940,7, 0x3a63000,2, 0x3a63800,18, 0x3a63880,18, 0x3a63c00,4, 0x3a63c20,7, 0x3a63d00,4, 0x3a63d80,20, 0x3a63e00,1, 0x3a64000,21, 0x3a64058,3, 0x3a64100,1, 0x3a64124,1, 0x3a6412c,5, 0x3a64144,1, 0x3a6414c,6, 0x3a64184,6, 0x3a641a4,6, 0x3a641c4,1, 0x3a641cc,1, 0x3a64400,9, 0x3a64440,9, 0x3a64480,15, 0x3a644c0,15, 0x3a64500,15, 0x3a64540,15, 0x3a64580,15, 0x3a645c0,15, 0x3a64600,15, 0x3a64640,15, 0x3a64680,59, 0x3a64800,1, 0x3a64808,16, 0x3a64850,1, 0x3a64858,7, 0x3a68000,3, 0x3a68010,1, 0x3a68018,3, 0x3a6a000,4, 0x3a6a080,19, 0x3a6a100,12, 0x3a6a200,4, 0x3a6a280,19, 0x3a6a300,12, 0x3a6a400,2, 0x3a6a600,124, 0x3a6a800,4, 0x3a6a880,18, 0x3a6a900,4, 0x3a6a980,23, 0x3a6aa00,10, 0x3a6aa2c,2, 0x3a6aa40,2, 0x3a6aa4c,3, 0x3a6aa60,2, 0x3a6aa6c,3, 0x3a6aa80,2, 0x3a6aa8c,2, 0x3a6aaa0,2, 0x3a6aaac,2, 0x3a6aac0,2, 0x3a6aacc,2, 0x3a6ab00,4, 0x3a6ab40,15, 0x3a6ab80,3, 0x3a6ab90,7, 0x3a6abb0,3, 0x3a6abc0,3, 0x3a6abd0,3, 0x3a6abe0,1, 0x3a6ac00,17, 0x3a6ae00,15, 0x3a6ae40,4, 0x3a6ae60,17, 0x3a6aec0,6, 0x3a6aee0,4, 0x3a6aef4,11, 0x3a6af24,28, 0x3a6b000,1, 0x3a6b080,1, 0x3a6b0a0,5, 0x3a6b0c0,5, 0x3a6b0e0,5, 0x3a6b100,1, 0x3a6b120,5, 0x3a6b140,5, 0x3a6b160,5, 0x3a6b180,24, 0x3a6b200,5, 0x3a6c000,20, 0x3a70000,518, 0x3a70900,45, 0x3a70a00,45, 0x3a70b00,45, 0x3a70c00,45, 0x3a70d00,45, 0x3a70e00,45, 0x3a70f00,45, 0x3a71000,45, 0x3a71800,9, 0x3a71840,364, 0x3a71e00,19, 0x3a72000,9, 0x3a72040,364, 0x3a72600,19, 0x3a72800,6, 0x3a72820,3, 0x3a72840,7, 0x3a72880,6, 0x3a728a0,3, 0x3a728c0,7, 0x3a72900,1, 0x3a72908,3, 0x3a72918,8, 0x3a72940,7, 0x3a73000,2, 0x3a73800,18, 0x3a73880,18, 0x3a73c00,4, 0x3a73c20,7, 0x3a73d00,4, 0x3a73d80,20, 0x3a73e00,1, 0x3a74000,21, 0x3a74058,3, 0x3a74100,1, 0x3a74124,1, 0x3a7412c,5, 0x3a74144,1, 0x3a7414c,6, 0x3a74184,6, 0x3a741a4,6, 0x3a741c4,1, 0x3a741cc,1, 0x3a74400,9, 0x3a74440,9, 0x3a74480,15, 0x3a744c0,15, 0x3a74500,15, 0x3a74540,15, 0x3a74580,15, 0x3a745c0,15, 0x3a74600,15, 0x3a74640,15, 0x3a74680,59, 0x3a74800,1, 0x3a74808,16, 0x3a74850,1, 0x3a74858,7, 0x3a78000,3, 0x3a78010,1, 0x3a78018,3, 0x3a7a000,4, 0x3a7a080,19, 0x3a7a100,12, 0x3a7a200,4, 0x3a7a280,19, 0x3a7a300,12, 0x3a7a400,2, 0x3a7a600,124, 0x3a7a800,4, 0x3a7a880,18, 0x3a7a900,4, 0x3a7a980,23, 0x3a7aa00,10, 0x3a7aa2c,2, 0x3a7aa40,2, 0x3a7aa4c,3, 0x3a7aa60,2, 0x3a7aa6c,3, 0x3a7aa80,2, 0x3a7aa8c,2, 0x3a7aaa0,2, 0x3a7aaac,2, 0x3a7aac0,2, 0x3a7aacc,2, 0x3a7ab00,4, 0x3a7ab40,15, 0x3a7ab80,3, 0x3a7ab90,7, 0x3a7abb0,3, 0x3a7abc0,3, 0x3a7abd0,3, 0x3a7abe0,1, 0x3a7ac00,17, 0x3a7ae00,15, 0x3a7ae40,4, 0x3a7ae60,17, 0x3a7aec0,6, 0x3a7aee0,4, 0x3a7aef4,11, 0x3a7af24,28, 0x3a7b000,1, 0x3a7b080,1, 0x3a7b0a0,5, 0x3a7b0c0,5, 0x3a7b0e0,5, 0x3a7b100,1, 0x3a7b120,5, 0x3a7b140,5, 0x3a7b160,5, 0x3a7b180,24, 0x3a7b200,5, 0x3a7c000,20, 0x3a80000,18, 0x3a80050,3, 0x3a80060,3, 0x3a80070,14, 0x3a800c0,5, 0x3a80400,13, 0x3a80440,2, 0x3a8044c,3, 0x3a80460,2, 0x3a80480,13, 0x3a804c0,2, 0x3a804cc,3, 0x3a804e0,2, 0x3a80500,1, 0x3a80508,16, 0x3a80560,2, 0x3a8056c,3, 0x3a80600,4, 0x3a80680,19, 0x3a80800,24, 0x3a80864,2, 0x3a80870,4, 0x3a80a00,27, 0x3a80a80,4, 0x3a80ac0,25, 0x3a80b40,6, 0x3a80b60,4, 0x3a80b74,11, 0x3a80ba4,8, 0x3a80c00,3, 0x3a80c10,3, 0x3a80c20,1, 0x3a80c40,11, 0x3a80c80,23, 0x3a80ce0,15, 0x3a80d20,15, 0x3a80d60,2, 0x3a80d6c,2, 0x3a80d80,1, 0x3a81000,18, 0x3a81050,3, 0x3a81060,3, 0x3a81070,14, 0x3a810c0,5, 0x3a81400,13, 0x3a81440,2, 0x3a8144c,3, 0x3a81460,2, 0x3a81480,13, 0x3a814c0,2, 0x3a814cc,3, 0x3a814e0,2, 0x3a81500,1, 0x3a81508,16, 0x3a81560,2, 0x3a8156c,3, 0x3a81600,4, 0x3a81680,19, 0x3a81800,24, 0x3a81864,2, 0x3a81870,4, 0x3a81a00,27, 0x3a81a80,4, 0x3a81ac0,25, 0x3a81b40,6, 0x3a81b60,4, 0x3a81b74,11, 0x3a81ba4,8, 0x3a81c00,3, 0x3a81c10,3, 0x3a81c20,1, 0x3a81c40,11, 0x3a81c80,23, 0x3a81ce0,15, 0x3a81d20,15, 0x3a81d60,2, 0x3a81d6c,2, 0x3a81d80,1, 0x3a82000,20, 0x3a82080,7, 0x3a820a0,1, 0x3a820b0,1, 0x3a820b8,2, 0x3a84000,14, 0x3b00000,534, 0x3b01000,2, 0x3b01040,9, 0x3b01080,7, 0x3b02000,534, 0x3b03000,12, 0x3b03044,6, 0x3b03080,8, 0x3b030a4,1, 0x3b030c0,7, 0x3b030e0,7, 0x3b03100,7, 0x3b03120,7, 0x3b03140,8, 0x3b03164,6, 0x3b03180,12, 0x3b04000,534, 0x3b05000,2, 0x3b05040,9, 0x3b05080,7, 0x3b06000,534, 0x3b07000,12, 0x3b07044,6, 0x3b07080,8, 0x3b070a4,1, 0x3b070c0,7, 0x3b070e0,7, 0x3b07100,7, 0x3b07120,7, 0x3b07140,8, 0x3b07164,6, 0x3b07180,12, 0x3b08004,5, 0x3b08200,27, 0x3b08280,4, 0x3b082c0,25, 0x3b08340,6, 0x3b08360,4, 0x3b08374,11, 0x3b083a4,5, 0x3b08400,1, 0x3b10000,397, 0x3b10800,93, 0x3b10980,6, 0x3b10a00,41, 0x3b10b00,2, 0x3b10b20,19, 0x3b10c00,25, 0x3b10c80,1, 0x3b10d00,28, 0x3b10d80,1, 0x3b11000,397, 0x3b11800,93, 0x3b11980,6, 0x3b11a00,41, 0x3b11b00,2, 0x3b11b20,19, 0x3b11c00,25, 0x3b11c80,1, 0x3b11d00,28, 0x3b11d80,1, 0x3b12000,7, 0x3b12040,9, 0x3b12080,4, 0x3b120a0,5, 0x3b120c0,2, 0x3b14000,3, 0x3b14010,6, 0x3b14200,7, 0x3b14220,6, 0x3b14240,7, 0x3b14260,6, 0x3b14280,2, 0x3b1428c,2, 0x3b142a0,2, 0x3b142ac,2, 0x3b142c0,7, 0x3b142e0,7, 0x3b14300,2, 0x3b1430c,2, 0x3b14320,6, 0x3b14340,7, 0x3b14360,6, 0x3b14380,6, 0x3b143a0,7, 0x3b143c0,6, 0x3b143e0,6, 0x3b14400,3, 0x3b14440,12, 0x3b14484,1, 0x3b144c0,16, 0x3b14800,7, 0x3b14820,14, 0x3b14880,9, 0x3b148a8,12, 0x3b14900,7, 0x3b14920,14, 0x3b14980,9, 0x3b149a8,12, 0x3b14a00,10, 0x3b14a40,2, 0x3b14a4c,3, 0x3b14c00,5, 0x3b14c20,1, 0x3b14c28,3, 0x3b20000,534, 0x3b21000,2, 0x3b21040,9, 0x3b21080,7, 0x3b22000,534, 0x3b23000,12, 0x3b23044,6, 0x3b23080,8, 0x3b230a4,1, 0x3b230c0,7, 0x3b230e0,7, 0x3b23100,7, 0x3b23120,7, 0x3b23140,8, 0x3b23164,6, 0x3b23180,12, 0x3b24000,534, 0x3b25000,2, 0x3b25040,9, 0x3b25080,7, 0x3b26000,534, 0x3b27000,12, 0x3b27044,6, 0x3b27080,8, 0x3b270a4,1, 0x3b270c0,7, 0x3b270e0,7, 0x3b27100,7, 0x3b27120,7, 0x3b27140,8, 0x3b27164,6, 0x3b27180,12, 0x3b28004,5, 0x3b28200,27, 0x3b28280,4, 0x3b282c0,25, 0x3b28340,6, 0x3b28360,4, 0x3b28374,11, 0x3b283a4,5, 0x3b28400,1, 0x3b30000,397, 0x3b30800,93, 0x3b30980,6, 0x3b30a00,41, 0x3b30b00,2, 0x3b30b20,19, 0x3b30c00,25, 0x3b30c80,1, 0x3b30d00,28, 0x3b30d80,1, 0x3b31000,397, 0x3b31800,93, 0x3b31980,6, 0x3b31a00,41, 0x3b31b00,2, 0x3b31b20,19, 0x3b31c00,25, 0x3b31c80,1, 0x3b31d00,28, 0x3b31d80,1, 0x3b32000,7, 0x3b32040,9, 0x3b32080,4, 0x3b320a0,5, 0x3b320c0,2, 0x3b34000,3, 0x3b34010,6, 0x3b34200,7, 0x3b34220,6, 0x3b34240,7, 0x3b34260,6, 0x3b34280,2, 0x3b3428c,2, 0x3b342a0,2, 0x3b342ac,2, 0x3b342c0,7, 0x3b342e0,7, 0x3b34300,2, 0x3b3430c,2, 0x3b34320,6, 0x3b34340,7, 0x3b34360,6, 0x3b34380,6, 0x3b343a0,7, 0x3b343c0,6, 0x3b343e0,6, 0x3b34400,3, 0x3b34440,12, 0x3b34484,1, 0x3b344c0,16, 0x3b34800,7, 0x3b34820,14, 0x3b34880,9, 0x3b348a8,12, 0x3b34900,7, 0x3b34920,14, 0x3b34980,9, 0x3b349a8,12, 0x3b34a00,10, 0x3b34a40,2, 0x3b34a4c,3, 0x3b34c00,5, 0x3b34c20,1, 0x3b34c28,3, 0x3b40000,37, 0x3b40100,3, 0x3b40110,15, 0x3b40200,37, 0x3b40300,3, 0x3b40310,15, 0x3b40400,5, 0x3b40420,5, 0x3b40440,18, 0x3b40800,3, 0x3b40810,2, 0x3b40820,3, 0x3b40830,2, 0x3b40840,1, 0x3b41000,12, 0x3b41040,12, 0x3b41080,2, 0x3b41100,19, 0x3b41180,19, 0x3b41200,26, 0x3b41400,20, 0x3b41480,20, 0x3b41500,8, 0x3b41540,4, 0x3b41580,15, 0x3b415c0,15, 0x3b41600,9, 0x3b41630,5, 0x3b42000,37, 0x3b42100,3, 0x3b42110,15, 0x3b42200,37, 0x3b42300,3, 0x3b42310,15, 0x3b42400,5, 0x3b42420,5, 0x3b42440,18, 0x3b42800,3, 0x3b42810,2, 0x3b42820,3, 0x3b42830,2, 0x3b42840,1, 0x3b43000,12, 0x3b43040,12, 0x3b43080,2, 0x3b43100,19, 0x3b43180,19, 0x3b43200,26, 0x3b43400,20, 0x3b43480,20, 0x3b43500,8, 0x3b43540,4, 0x3b43580,15, 0x3b435c0,15, 0x3b43600,9, 0x3b43630,5, 0x3b44000,6, 0x3b44020,1, 0x3b4402c,3, 0x3b44040,11, 0x3b44070,3, 0x3b44080,2, 0x3b48000,49, 0x3b48100,12, 0x3b48140,4, 0x3b48184,1, 0x3b48198,2, 0x3b481a4,1, 0x3b481b8,7, 0x3b481e0,4, 0x3b48200,20, 0x3b48280,3, 0x3b48290,9, 0x3b482c0,6, 0x3b482e0,1, 0x3b482e8,7, 0x3b48400,49, 0x3b48500,12, 0x3b48540,4, 0x3b48584,1, 0x3b48598,2, 0x3b485a4,1, 0x3b485b8,7, 0x3b485e0,4, 0x3b48600,20, 0x3b48680,3, 0x3b48690,9, 0x3b486c0,6, 0x3b486e0,1, 0x3b486e8,7, 0x3b48800,49, 0x3b48900,12, 0x3b48940,4, 0x3b48984,1, 0x3b48998,2, 0x3b489a4,1, 0x3b489b8,7, 0x3b489e0,4, 0x3b48a00,20, 0x3b48a80,3, 0x3b48a90,9, 0x3b48ac0,6, 0x3b48ae0,1, 0x3b48ae8,7, 0x3b48c00,49, 0x3b48d00,12, 0x3b48d40,4, 0x3b48d84,1, 0x3b48d98,2, 0x3b48da4,1, 0x3b48db8,7, 0x3b48de0,4, 0x3b48e00,20, 0x3b48e80,3, 0x3b48e90,9, 0x3b48ec0,6, 0x3b48ee0,1, 0x3b48ee8,7, 0x3b49000,49, 0x3b49100,12, 0x3b49140,4, 0x3b49184,1, 0x3b49198,2, 0x3b491a4,1, 0x3b491b8,7, 0x3b491e0,4, 0x3b49200,20, 0x3b49280,3, 0x3b49290,9, 0x3b492c0,6, 0x3b492e0,1, 0x3b492e8,7, 0x3b49400,49, 0x3b49500,12, 0x3b49540,4, 0x3b49584,1, 0x3b49598,2, 0x3b495a4,1, 0x3b495b8,7, 0x3b495e0,4, 0x3b49600,20, 0x3b49680,3, 0x3b49690,9, 0x3b496c0,6, 0x3b496e0,1, 0x3b496e8,7, 0x3b49800,49, 0x3b49900,12, 0x3b49940,4, 0x3b49984,1, 0x3b49998,2, 0x3b499a4,1, 0x3b499b8,7, 0x3b499e0,4, 0x3b49a00,20, 0x3b49a80,3, 0x3b49a90,9, 0x3b49ac0,6, 0x3b49ae0,1, 0x3b49ae8,7, 0x3b4a000,20, 0x3b4a080,2, 0x3b4a100,20, 0x3b4a180,2, 0x3b4a200,4, 0x3b4a400,20, 0x3b4a480,2, 0x3b4a500,20, 0x3b4a580,2, 0x3b4a600,4, 0x3b4a800,3, 0x3b4a840,12, 0x3b4a880,12, 0x3b4a8c0,12, 0x3b4a900,12, 0x3b4a940,12, 0x3b4a980,12, 0x3b4a9c0,12, 0x3b4aa00,12, 0x3b4ac00,12, 0x3b4ac40,7, 0x3b4ac60,10, 0x3b4b004,1, 0x3b4b018,40, 0x3b4b100,7, 0x3b4b120,7, 0x3b4b140,2, 0x3b4b14c,2, 0x3b4b160,2, 0x3b4b16c,2, 0x3b4b180,18, 0x3b4b200,2, 0x3b4b220,10, 0x3b4b260,20, 0x3b4b2c0,7, 0x3b4b300,15, 0x3b4b340,9, 0x3b4b380,6, 0x3b4b3a0,4, 0x3b4b400,4, 0x3b4c000,106, 0x3b4c200,2, 0x3b4c240,9, 0x3b4c280,7, 0x3b4c400,106, 0x3b4c604,6, 0x3b4c700,15, 0x3b4c740,9, 0x3b4c780,6, 0x3b4c7a0,6, 0x3b4c800,8, 0x3b4c824,1, 0x3b4c830,15, 0x3b4c870,3, 0x3b60000,518, 0x3b60900,45, 0x3b60a00,45, 0x3b60b00,45, 0x3b60c00,45, 0x3b60d00,45, 0x3b60e00,45, 0x3b60f00,45, 0x3b61000,45, 0x3b61800,9, 0x3b61840,364, 0x3b61e00,19, 0x3b62000,9, 0x3b62040,364, 0x3b62600,19, 0x3b62800,6, 0x3b62820,3, 0x3b62840,7, 0x3b62880,6, 0x3b628a0,3, 0x3b628c0,7, 0x3b62900,1, 0x3b62908,3, 0x3b62918,8, 0x3b62940,7, 0x3b63000,2, 0x3b63800,18, 0x3b63880,18, 0x3b63c00,4, 0x3b63c20,7, 0x3b63d00,4, 0x3b63d80,20, 0x3b63e00,1, 0x3b64000,21, 0x3b64058,3, 0x3b64100,1, 0x3b64124,1, 0x3b6412c,5, 0x3b64144,1, 0x3b6414c,6, 0x3b64184,6, 0x3b641a4,6, 0x3b641c4,1, 0x3b641cc,1, 0x3b64400,9, 0x3b64440,9, 0x3b64480,15, 0x3b644c0,15, 0x3b64500,15, 0x3b64540,15, 0x3b64580,15, 0x3b645c0,15, 0x3b64600,15, 0x3b64640,15, 0x3b64680,59, 0x3b64800,1, 0x3b64808,16, 0x3b64850,1, 0x3b64858,7, 0x3b68000,3, 0x3b68010,1, 0x3b68018,3, 0x3b6a000,4, 0x3b6a080,19, 0x3b6a100,12, 0x3b6a200,4, 0x3b6a280,19, 0x3b6a300,12, 0x3b6a400,2, 0x3b6a600,124, 0x3b6a800,4, 0x3b6a880,18, 0x3b6a900,4, 0x3b6a980,23, 0x3b6aa00,10, 0x3b6aa2c,2, 0x3b6aa40,2, 0x3b6aa4c,3, 0x3b6aa60,2, 0x3b6aa6c,3, 0x3b6aa80,2, 0x3b6aa8c,2, 0x3b6aaa0,2, 0x3b6aaac,2, 0x3b6aac0,2, 0x3b6aacc,2, 0x3b6ab00,4, 0x3b6ab40,15, 0x3b6ab80,3, 0x3b6ab90,7, 0x3b6abb0,3, 0x3b6abc0,3, 0x3b6abd0,3, 0x3b6abe0,1, 0x3b6ac00,17, 0x3b6ae00,15, 0x3b6ae40,4, 0x3b6ae60,17, 0x3b6aec0,6, 0x3b6aee0,4, 0x3b6aef4,11, 0x3b6af24,28, 0x3b6b000,1, 0x3b6b080,1, 0x3b6b0a0,5, 0x3b6b0c0,5, 0x3b6b0e0,5, 0x3b6b100,1, 0x3b6b120,5, 0x3b6b140,5, 0x3b6b160,5, 0x3b6b180,24, 0x3b6b200,5, 0x3b6c000,20, 0x3b70000,518, 0x3b70900,45, 0x3b70a00,45, 0x3b70b00,45, 0x3b70c00,45, 0x3b70d00,45, 0x3b70e00,45, 0x3b70f00,45, 0x3b71000,45, 0x3b71800,9, 0x3b71840,364, 0x3b71e00,19, 0x3b72000,9, 0x3b72040,364, 0x3b72600,19, 0x3b72800,6, 0x3b72820,3, 0x3b72840,7, 0x3b72880,6, 0x3b728a0,3, 0x3b728c0,7, 0x3b72900,1, 0x3b72908,3, 0x3b72918,8, 0x3b72940,7, 0x3b73000,2, 0x3b73800,18, 0x3b73880,18, 0x3b73c00,4, 0x3b73c20,7, 0x3b73d00,4, 0x3b73d80,20, 0x3b73e00,1, 0x3b74000,21, 0x3b74058,3, 0x3b74100,1, 0x3b74124,1, 0x3b7412c,5, 0x3b74144,1, 0x3b7414c,6, 0x3b74184,6, 0x3b741a4,6, 0x3b741c4,1, 0x3b741cc,1, 0x3b74400,9, 0x3b74440,9, 0x3b74480,15, 0x3b744c0,15, 0x3b74500,15, 0x3b74540,15, 0x3b74580,15, 0x3b745c0,15, 0x3b74600,15, 0x3b74640,15, 0x3b74680,59, 0x3b74800,1, 0x3b74808,16, 0x3b74850,1, 0x3b74858,7, 0x3b78000,3, 0x3b78010,1, 0x3b78018,3, 0x3b7a000,4, 0x3b7a080,19, 0x3b7a100,12, 0x3b7a200,4, 0x3b7a280,19, 0x3b7a300,12, 0x3b7a400,2, 0x3b7a600,124, 0x3b7a800,4, 0x3b7a880,18, 0x3b7a900,4, 0x3b7a980,23, 0x3b7aa00,10, 0x3b7aa2c,2, 0x3b7aa40,2, 0x3b7aa4c,3, 0x3b7aa60,2, 0x3b7aa6c,3, 0x3b7aa80,2, 0x3b7aa8c,2, 0x3b7aaa0,2, 0x3b7aaac,2, 0x3b7aac0,2, 0x3b7aacc,2, 0x3b7ab00,4, 0x3b7ab40,15, 0x3b7ab80,3, 0x3b7ab90,7, 0x3b7abb0,3, 0x3b7abc0,3, 0x3b7abd0,3, 0x3b7abe0,1, 0x3b7ac00,17, 0x3b7ae00,15, 0x3b7ae40,4, 0x3b7ae60,17, 0x3b7aec0,6, 0x3b7aee0,4, 0x3b7aef4,11, 0x3b7af24,28, 0x3b7b000,1, 0x3b7b080,1, 0x3b7b0a0,5, 0x3b7b0c0,5, 0x3b7b0e0,5, 0x3b7b100,1, 0x3b7b120,5, 0x3b7b140,5, 0x3b7b160,5, 0x3b7b180,24, 0x3b7b200,5, 0x3b7c000,20, 0x3b80000,18, 0x3b80050,3, 0x3b80060,3, 0x3b80070,14, 0x3b800c0,5, 0x3b80400,13, 0x3b80440,2, 0x3b8044c,3, 0x3b80460,2, 0x3b80480,13, 0x3b804c0,2, 0x3b804cc,3, 0x3b804e0,2, 0x3b80500,1, 0x3b80508,16, 0x3b80560,2, 0x3b8056c,3, 0x3b80600,4, 0x3b80680,19, 0x3b80800,24, 0x3b80864,2, 0x3b80870,4, 0x3b80a00,27, 0x3b80a80,4, 0x3b80ac0,25, 0x3b80b40,6, 0x3b80b60,4, 0x3b80b74,11, 0x3b80ba4,8, 0x3b80c00,3, 0x3b80c10,3, 0x3b80c20,1, 0x3b80c40,11, 0x3b80c80,23, 0x3b80ce0,15, 0x3b80d20,15, 0x3b80d60,2, 0x3b80d6c,2, 0x3b80d80,1, 0x3b81000,18, 0x3b81050,3, 0x3b81060,3, 0x3b81070,14, 0x3b810c0,5, 0x3b81400,13, 0x3b81440,2, 0x3b8144c,3, 0x3b81460,2, 0x3b81480,13, 0x3b814c0,2, 0x3b814cc,3, 0x3b814e0,2, 0x3b81500,1, 0x3b81508,16, 0x3b81560,2, 0x3b8156c,3, 0x3b81600,4, 0x3b81680,19, 0x3b81800,24, 0x3b81864,2, 0x3b81870,4, 0x3b81a00,27, 0x3b81a80,4, 0x3b81ac0,25, 0x3b81b40,6, 0x3b81b60,4, 0x3b81b74,11, 0x3b81ba4,8, 0x3b81c00,3, 0x3b81c10,3, 0x3b81c20,1, 0x3b81c40,11, 0x3b81c80,23, 0x3b81ce0,15, 0x3b81d20,15, 0x3b81d60,2, 0x3b81d6c,2, 0x3b81d80,1, 0x3b82000,20, 0x3b82080,7, 0x3b820a0,1, 0x3b820b0,1, 0x3b820b8,2, 0x3b84000,14, 0x3c00000,534, 0x3c01000,2, 0x3c01040,9, 0x3c01080,7, 0x3c02000,534, 0x3c03000,12, 0x3c03044,6, 0x3c03080,8, 0x3c030a4,1, 0x3c030c0,7, 0x3c030e0,7, 0x3c03100,7, 0x3c03120,7, 0x3c03140,8, 0x3c03164,6, 0x3c03180,12, 0x3c04000,534, 0x3c05000,2, 0x3c05040,9, 0x3c05080,7, 0x3c06000,534, 0x3c07000,12, 0x3c07044,6, 0x3c07080,8, 0x3c070a4,1, 0x3c070c0,7, 0x3c070e0,7, 0x3c07100,7, 0x3c07120,7, 0x3c07140,8, 0x3c07164,6, 0x3c07180,12, 0x3c08004,5, 0x3c08200,27, 0x3c08280,4, 0x3c082c0,25, 0x3c08340,6, 0x3c08360,4, 0x3c08374,11, 0x3c083a4,5, 0x3c08400,1, 0x3c10000,397, 0x3c10800,93, 0x3c10980,6, 0x3c10a00,41, 0x3c10b00,2, 0x3c10b20,19, 0x3c10c00,25, 0x3c10c80,1, 0x3c10d00,28, 0x3c10d80,1, 0x3c11000,397, 0x3c11800,93, 0x3c11980,6, 0x3c11a00,41, 0x3c11b00,2, 0x3c11b20,19, 0x3c11c00,25, 0x3c11c80,1, 0x3c11d00,28, 0x3c11d80,1, 0x3c12000,7, 0x3c12040,9, 0x3c12080,4, 0x3c120a0,5, 0x3c120c0,2, 0x3c14000,3, 0x3c14010,6, 0x3c14200,7, 0x3c14220,6, 0x3c14240,7, 0x3c14260,6, 0x3c14280,2, 0x3c1428c,2, 0x3c142a0,2, 0x3c142ac,2, 0x3c142c0,7, 0x3c142e0,7, 0x3c14300,2, 0x3c1430c,2, 0x3c14320,6, 0x3c14340,7, 0x3c14360,6, 0x3c14380,6, 0x3c143a0,7, 0x3c143c0,6, 0x3c143e0,6, 0x3c14400,3, 0x3c14440,12, 0x3c14484,1, 0x3c144c0,16, 0x3c14800,7, 0x3c14820,14, 0x3c14880,9, 0x3c148a8,12, 0x3c14900,7, 0x3c14920,14, 0x3c14980,9, 0x3c149a8,12, 0x3c14a00,10, 0x3c14a40,2, 0x3c14a4c,3, 0x3c14c00,5, 0x3c14c20,1, 0x3c14c28,3, 0x3c20000,534, 0x3c21000,2, 0x3c21040,9, 0x3c21080,7, 0x3c22000,534, 0x3c23000,12, 0x3c23044,6, 0x3c23080,8, 0x3c230a4,1, 0x3c230c0,7, 0x3c230e0,7, 0x3c23100,7, 0x3c23120,7, 0x3c23140,8, 0x3c23164,6, 0x3c23180,12, 0x3c24000,534, 0x3c25000,2, 0x3c25040,9, 0x3c25080,7, 0x3c26000,534, 0x3c27000,12, 0x3c27044,6, 0x3c27080,8, 0x3c270a4,1, 0x3c270c0,7, 0x3c270e0,7, 0x3c27100,7, 0x3c27120,7, 0x3c27140,8, 0x3c27164,6, 0x3c27180,12, 0x3c28004,5, 0x3c28200,27, 0x3c28280,4, 0x3c282c0,25, 0x3c28340,6, 0x3c28360,4, 0x3c28374,11, 0x3c283a4,5, 0x3c28400,1, 0x3c30000,397, 0x3c30800,93, 0x3c30980,6, 0x3c30a00,41, 0x3c30b00,2, 0x3c30b20,19, 0x3c30c00,25, 0x3c30c80,1, 0x3c30d00,28, 0x3c30d80,1, 0x3c31000,397, 0x3c31800,93, 0x3c31980,6, 0x3c31a00,41, 0x3c31b00,2, 0x3c31b20,19, 0x3c31c00,25, 0x3c31c80,1, 0x3c31d00,28, 0x3c31d80,1, 0x3c32000,7, 0x3c32040,9, 0x3c32080,4, 0x3c320a0,5, 0x3c320c0,2, 0x3c34000,3, 0x3c34010,6, 0x3c34200,7, 0x3c34220,6, 0x3c34240,7, 0x3c34260,6, 0x3c34280,2, 0x3c3428c,2, 0x3c342a0,2, 0x3c342ac,2, 0x3c342c0,7, 0x3c342e0,7, 0x3c34300,2, 0x3c3430c,2, 0x3c34320,6, 0x3c34340,7, 0x3c34360,6, 0x3c34380,6, 0x3c343a0,7, 0x3c343c0,6, 0x3c343e0,6, 0x3c34400,3, 0x3c34440,12, 0x3c34484,1, 0x3c344c0,16, 0x3c34800,7, 0x3c34820,14, 0x3c34880,9, 0x3c348a8,12, 0x3c34900,7, 0x3c34920,14, 0x3c34980,9, 0x3c349a8,12, 0x3c34a00,10, 0x3c34a40,2, 0x3c34a4c,3, 0x3c34c00,5, 0x3c34c20,1, 0x3c34c28,3, 0x3c40000,37, 0x3c40100,3, 0x3c40110,15, 0x3c40200,37, 0x3c40300,3, 0x3c40310,15, 0x3c40400,5, 0x3c40420,5, 0x3c40440,18, 0x3c40800,3, 0x3c40810,2, 0x3c40820,3, 0x3c40830,2, 0x3c40840,1, 0x3c41000,12, 0x3c41040,12, 0x3c41080,2, 0x3c41100,19, 0x3c41180,19, 0x3c41200,26, 0x3c41400,20, 0x3c41480,20, 0x3c41500,8, 0x3c41540,4, 0x3c41580,15, 0x3c415c0,15, 0x3c41600,9, 0x3c41630,5, 0x3c42000,37, 0x3c42100,3, 0x3c42110,15, 0x3c42200,37, 0x3c42300,3, 0x3c42310,15, 0x3c42400,5, 0x3c42420,5, 0x3c42440,18, 0x3c42800,3, 0x3c42810,2, 0x3c42820,3, 0x3c42830,2, 0x3c42840,1, 0x3c43000,12, 0x3c43040,12, 0x3c43080,2, 0x3c43100,19, 0x3c43180,19, 0x3c43200,26, 0x3c43400,20, 0x3c43480,20, 0x3c43500,8, 0x3c43540,4, 0x3c43580,15, 0x3c435c0,15, 0x3c43600,9, 0x3c43630,5, 0x3c44000,6, 0x3c44020,1, 0x3c4402c,3, 0x3c44040,11, 0x3c44070,3, 0x3c44080,2, 0x3c48000,49, 0x3c48100,12, 0x3c48140,4, 0x3c48184,1, 0x3c48198,2, 0x3c481a4,1, 0x3c481b8,7, 0x3c481e0,4, 0x3c48200,20, 0x3c48280,3, 0x3c48290,9, 0x3c482c0,6, 0x3c482e0,1, 0x3c482e8,7, 0x3c48400,49, 0x3c48500,12, 0x3c48540,4, 0x3c48584,1, 0x3c48598,2, 0x3c485a4,1, 0x3c485b8,7, 0x3c485e0,4, 0x3c48600,20, 0x3c48680,3, 0x3c48690,9, 0x3c486c0,6, 0x3c486e0,1, 0x3c486e8,7, 0x3c48800,49, 0x3c48900,12, 0x3c48940,4, 0x3c48984,1, 0x3c48998,2, 0x3c489a4,1, 0x3c489b8,7, 0x3c489e0,4, 0x3c48a00,20, 0x3c48a80,3, 0x3c48a90,9, 0x3c48ac0,6, 0x3c48ae0,1, 0x3c48ae8,7, 0x3c48c00,49, 0x3c48d00,12, 0x3c48d40,4, 0x3c48d84,1, 0x3c48d98,2, 0x3c48da4,1, 0x3c48db8,7, 0x3c48de0,4, 0x3c48e00,20, 0x3c48e80,3, 0x3c48e90,9, 0x3c48ec0,6, 0x3c48ee0,1, 0x3c48ee8,7, 0x3c49000,49, 0x3c49100,12, 0x3c49140,4, 0x3c49184,1, 0x3c49198,2, 0x3c491a4,1, 0x3c491b8,7, 0x3c491e0,4, 0x3c49200,20, 0x3c49280,3, 0x3c49290,9, 0x3c492c0,6, 0x3c492e0,1, 0x3c492e8,7, 0x3c49400,49, 0x3c49500,12, 0x3c49540,4, 0x3c49584,1, 0x3c49598,2, 0x3c495a4,1, 0x3c495b8,7, 0x3c495e0,4, 0x3c49600,20, 0x3c49680,3, 0x3c49690,9, 0x3c496c0,6, 0x3c496e0,1, 0x3c496e8,7, 0x3c49800,49, 0x3c49900,12, 0x3c49940,4, 0x3c49984,1, 0x3c49998,2, 0x3c499a4,1, 0x3c499b8,7, 0x3c499e0,4, 0x3c49a00,20, 0x3c49a80,3, 0x3c49a90,9, 0x3c49ac0,6, 0x3c49ae0,1, 0x3c49ae8,7, 0x3c4a000,20, 0x3c4a080,2, 0x3c4a100,20, 0x3c4a180,2, 0x3c4a200,4, 0x3c4a400,20, 0x3c4a480,2, 0x3c4a500,20, 0x3c4a580,2, 0x3c4a600,4, 0x3c4a800,3, 0x3c4a840,12, 0x3c4a880,12, 0x3c4a8c0,12, 0x3c4a900,12, 0x3c4a940,12, 0x3c4a980,12, 0x3c4a9c0,12, 0x3c4aa00,12, 0x3c4ac00,12, 0x3c4ac40,7, 0x3c4ac60,10, 0x3c4b004,1, 0x3c4b018,40, 0x3c4b100,7, 0x3c4b120,7, 0x3c4b140,2, 0x3c4b14c,2, 0x3c4b160,2, 0x3c4b16c,2, 0x3c4b180,18, 0x3c4b200,2, 0x3c4b220,10, 0x3c4b260,20, 0x3c4b2c0,7, 0x3c4b300,15, 0x3c4b340,9, 0x3c4b380,6, 0x3c4b3a0,4, 0x3c4b400,4, 0x3c4c000,106, 0x3c4c200,2, 0x3c4c240,9, 0x3c4c280,7, 0x3c4c400,106, 0x3c4c604,6, 0x3c4c700,15, 0x3c4c740,9, 0x3c4c780,6, 0x3c4c7a0,6, 0x3c4c800,8, 0x3c4c824,1, 0x3c4c830,15, 0x3c4c870,3, 0x3c60000,518, 0x3c60900,45, 0x3c60a00,45, 0x3c60b00,45, 0x3c60c00,45, 0x3c60d00,45, 0x3c60e00,45, 0x3c60f00,45, 0x3c61000,45, 0x3c61800,9, 0x3c61840,364, 0x3c61e00,19, 0x3c62000,9, 0x3c62040,364, 0x3c62600,19, 0x3c62800,6, 0x3c62820,3, 0x3c62840,7, 0x3c62880,6, 0x3c628a0,3, 0x3c628c0,7, 0x3c62900,1, 0x3c62908,3, 0x3c62918,8, 0x3c62940,7, 0x3c63000,2, 0x3c63800,18, 0x3c63880,18, 0x3c63c00,4, 0x3c63c20,7, 0x3c63d00,4, 0x3c63d80,20, 0x3c63e00,1, 0x3c64000,21, 0x3c64058,3, 0x3c64100,1, 0x3c64124,1, 0x3c6412c,5, 0x3c64144,1, 0x3c6414c,6, 0x3c64184,6, 0x3c641a4,6, 0x3c641c4,1, 0x3c641cc,1, 0x3c64400,9, 0x3c64440,9, 0x3c64480,15, 0x3c644c0,15, 0x3c64500,15, 0x3c64540,15, 0x3c64580,15, 0x3c645c0,15, 0x3c64600,15, 0x3c64640,15, 0x3c64680,59, 0x3c64800,1, 0x3c64808,16, 0x3c64850,1, 0x3c64858,7, 0x3c68000,3, 0x3c68010,1, 0x3c68018,3, 0x3c6a000,4, 0x3c6a080,19, 0x3c6a100,12, 0x3c6a200,4, 0x3c6a280,19, 0x3c6a300,12, 0x3c6a400,2, 0x3c6a600,124, 0x3c6a800,4, 0x3c6a880,18, 0x3c6a900,4, 0x3c6a980,23, 0x3c6aa00,10, 0x3c6aa2c,2, 0x3c6aa40,2, 0x3c6aa4c,3, 0x3c6aa60,2, 0x3c6aa6c,3, 0x3c6aa80,2, 0x3c6aa8c,2, 0x3c6aaa0,2, 0x3c6aaac,2, 0x3c6aac0,2, 0x3c6aacc,2, 0x3c6ab00,4, 0x3c6ab40,15, 0x3c6ab80,3, 0x3c6ab90,7, 0x3c6abb0,3, 0x3c6abc0,3, 0x3c6abd0,3, 0x3c6abe0,1, 0x3c6ac00,17, 0x3c6ae00,15, 0x3c6ae40,4, 0x3c6ae60,17, 0x3c6aec0,6, 0x3c6aee0,4, 0x3c6aef4,11, 0x3c6af24,28, 0x3c6b000,1, 0x3c6b080,1, 0x3c6b0a0,5, 0x3c6b0c0,5, 0x3c6b0e0,5, 0x3c6b100,1, 0x3c6b120,5, 0x3c6b140,5, 0x3c6b160,5, 0x3c6b180,24, 0x3c6b200,5, 0x3c6c000,20, 0x3c70000,518, 0x3c70900,45, 0x3c70a00,45, 0x3c70b00,45, 0x3c70c00,45, 0x3c70d00,45, 0x3c70e00,45, 0x3c70f00,45, 0x3c71000,45, 0x3c71800,9, 0x3c71840,364, 0x3c71e00,19, 0x3c72000,9, 0x3c72040,364, 0x3c72600,19, 0x3c72800,6, 0x3c72820,3, 0x3c72840,7, 0x3c72880,6, 0x3c728a0,3, 0x3c728c0,7, 0x3c72900,1, 0x3c72908,3, 0x3c72918,8, 0x3c72940,7, 0x3c73000,2, 0x3c73800,18, 0x3c73880,18, 0x3c73c00,4, 0x3c73c20,7, 0x3c73d00,4, 0x3c73d80,20, 0x3c73e00,1, 0x3c74000,21, 0x3c74058,3, 0x3c74100,1, 0x3c74124,1, 0x3c7412c,5, 0x3c74144,1, 0x3c7414c,6, 0x3c74184,6, 0x3c741a4,6, 0x3c741c4,1, 0x3c741cc,1, 0x3c74400,9, 0x3c74440,9, 0x3c74480,15, 0x3c744c0,15, 0x3c74500,15, 0x3c74540,15, 0x3c74580,15, 0x3c745c0,15, 0x3c74600,15, 0x3c74640,15, 0x3c74680,59, 0x3c74800,1, 0x3c74808,16, 0x3c74850,1, 0x3c74858,7, 0x3c78000,3, 0x3c78010,1, 0x3c78018,3, 0x3c7a000,4, 0x3c7a080,19, 0x3c7a100,12, 0x3c7a200,4, 0x3c7a280,19, 0x3c7a300,12, 0x3c7a400,2, 0x3c7a600,124, 0x3c7a800,4, 0x3c7a880,18, 0x3c7a900,4, 0x3c7a980,23, 0x3c7aa00,10, 0x3c7aa2c,2, 0x3c7aa40,2, 0x3c7aa4c,3, 0x3c7aa60,2, 0x3c7aa6c,3, 0x3c7aa80,2, 0x3c7aa8c,2, 0x3c7aaa0,2, 0x3c7aaac,2, 0x3c7aac0,2, 0x3c7aacc,2, 0x3c7ab00,4, 0x3c7ab40,15, 0x3c7ab80,3, 0x3c7ab90,7, 0x3c7abb0,3, 0x3c7abc0,3, 0x3c7abd0,3, 0x3c7abe0,1, 0x3c7ac00,17, 0x3c7ae00,15, 0x3c7ae40,4, 0x3c7ae60,17, 0x3c7aec0,6, 0x3c7aee0,4, 0x3c7aef4,11, 0x3c7af24,28, 0x3c7b000,1, 0x3c7b080,1, 0x3c7b0a0,5, 0x3c7b0c0,5, 0x3c7b0e0,5, 0x3c7b100,1, 0x3c7b120,5, 0x3c7b140,5, 0x3c7b160,5, 0x3c7b180,24, 0x3c7b200,5, 0x3c7c000,20, 0x3c80000,18, 0x3c80050,3, 0x3c80060,3, 0x3c80070,14, 0x3c800c0,5, 0x3c80400,13, 0x3c80440,2, 0x3c8044c,3, 0x3c80460,2, 0x3c80480,13, 0x3c804c0,2, 0x3c804cc,3, 0x3c804e0,2, 0x3c80500,1, 0x3c80508,16, 0x3c80560,2, 0x3c8056c,3, 0x3c80600,4, 0x3c80680,19, 0x3c80800,24, 0x3c80864,2, 0x3c80870,4, 0x3c80a00,27, 0x3c80a80,4, 0x3c80ac0,25, 0x3c80b40,6, 0x3c80b60,4, 0x3c80b74,11, 0x3c80ba4,8, 0x3c80c00,3, 0x3c80c10,3, 0x3c80c20,1, 0x3c80c40,11, 0x3c80c80,23, 0x3c80ce0,15, 0x3c80d20,15, 0x3c80d60,2, 0x3c80d6c,2, 0x3c80d80,1, 0x3c81000,18, 0x3c81050,3, 0x3c81060,3, 0x3c81070,14, 0x3c810c0,5, 0x3c81400,13, 0x3c81440,2, 0x3c8144c,3, 0x3c81460,2, 0x3c81480,13, 0x3c814c0,2, 0x3c814cc,3, 0x3c814e0,2, 0x3c81500,1, 0x3c81508,16, 0x3c81560,2, 0x3c8156c,3, 0x3c81600,4, 0x3c81680,19, 0x3c81800,24, 0x3c81864,2, 0x3c81870,4, 0x3c81a00,27, 0x3c81a80,4, 0x3c81ac0,25, 0x3c81b40,6, 0x3c81b60,4, 0x3c81b74,11, 0x3c81ba4,8, 0x3c81c00,3, 0x3c81c10,3, 0x3c81c20,1, 0x3c81c40,11, 0x3c81c80,23, 0x3c81ce0,15, 0x3c81d20,15, 0x3c81d60,2, 0x3c81d6c,2, 0x3c81d80,1, 0x3c82000,20, 0x3c82080,7, 0x3c820a0,1, 0x3c820b0,1, 0x3c820b8,2, 0x3c84000,14, 0x3d00000,534, 0x3d01000,2, 0x3d01040,9, 0x3d01080,7, 0x3d02000,534, 0x3d03000,12, 0x3d03044,6, 0x3d03080,8, 0x3d030a4,1, 0x3d030c0,7, 0x3d030e0,7, 0x3d03100,7, 0x3d03120,7, 0x3d03140,8, 0x3d03164,6, 0x3d03180,12, 0x3d04000,534, 0x3d05000,2, 0x3d05040,9, 0x3d05080,7, 0x3d06000,534, 0x3d07000,12, 0x3d07044,6, 0x3d07080,8, 0x3d070a4,1, 0x3d070c0,7, 0x3d070e0,7, 0x3d07100,7, 0x3d07120,7, 0x3d07140,8, 0x3d07164,6, 0x3d07180,12, 0x3d08004,5, 0x3d08200,27, 0x3d08280,4, 0x3d082c0,25, 0x3d08340,6, 0x3d08360,4, 0x3d08374,11, 0x3d083a4,5, 0x3d08400,1, 0x3d10000,397, 0x3d10800,93, 0x3d10980,6, 0x3d10a00,41, 0x3d10b00,2, 0x3d10b20,19, 0x3d10c00,25, 0x3d10c80,1, 0x3d10d00,28, 0x3d10d80,1, 0x3d11000,397, 0x3d11800,93, 0x3d11980,6, 0x3d11a00,41, 0x3d11b00,2, 0x3d11b20,19, 0x3d11c00,25, 0x3d11c80,1, 0x3d11d00,28, 0x3d11d80,1, 0x3d12000,7, 0x3d12040,9, 0x3d12080,4, 0x3d120a0,5, 0x3d120c0,2, 0x3d14000,3, 0x3d14010,6, 0x3d14200,7, 0x3d14220,6, 0x3d14240,7, 0x3d14260,6, 0x3d14280,2, 0x3d1428c,2, 0x3d142a0,2, 0x3d142ac,2, 0x3d142c0,7, 0x3d142e0,7, 0x3d14300,2, 0x3d1430c,2, 0x3d14320,6, 0x3d14340,7, 0x3d14360,6, 0x3d14380,6, 0x3d143a0,7, 0x3d143c0,6, 0x3d143e0,6, 0x3d14400,3, 0x3d14440,12, 0x3d14484,1, 0x3d144c0,16, 0x3d14800,7, 0x3d14820,14, 0x3d14880,9, 0x3d148a8,12, 0x3d14900,7, 0x3d14920,14, 0x3d14980,9, 0x3d149a8,12, 0x3d14a00,10, 0x3d14a40,2, 0x3d14a4c,3, 0x3d14c00,5, 0x3d14c20,1, 0x3d14c28,3, 0x3d20000,534, 0x3d21000,2, 0x3d21040,9, 0x3d21080,7, 0x3d22000,534, 0x3d23000,12, 0x3d23044,6, 0x3d23080,8, 0x3d230a4,1, 0x3d230c0,7, 0x3d230e0,7, 0x3d23100,7, 0x3d23120,7, 0x3d23140,8, 0x3d23164,6, 0x3d23180,12, 0x3d24000,534, 0x3d25000,2, 0x3d25040,9, 0x3d25080,7, 0x3d26000,534, 0x3d27000,12, 0x3d27044,6, 0x3d27080,8, 0x3d270a4,1, 0x3d270c0,7, 0x3d270e0,7, 0x3d27100,7, 0x3d27120,7, 0x3d27140,8, 0x3d27164,6, 0x3d27180,12, 0x3d28004,5, 0x3d28200,27, 0x3d28280,4, 0x3d282c0,25, 0x3d28340,6, 0x3d28360,4, 0x3d28374,11, 0x3d283a4,5, 0x3d28400,1, 0x3d30000,397, 0x3d30800,93, 0x3d30980,6, 0x3d30a00,41, 0x3d30b00,2, 0x3d30b20,19, 0x3d30c00,25, 0x3d30c80,1, 0x3d30d00,28, 0x3d30d80,1, 0x3d31000,397, 0x3d31800,93, 0x3d31980,6, 0x3d31a00,41, 0x3d31b00,2, 0x3d31b20,19, 0x3d31c00,25, 0x3d31c80,1, 0x3d31d00,28, 0x3d31d80,1, 0x3d32000,7, 0x3d32040,9, 0x3d32080,4, 0x3d320a0,5, 0x3d320c0,2, 0x3d34000,3, 0x3d34010,6, 0x3d34200,7, 0x3d34220,6, 0x3d34240,7, 0x3d34260,6, 0x3d34280,2, 0x3d3428c,2, 0x3d342a0,2, 0x3d342ac,2, 0x3d342c0,7, 0x3d342e0,7, 0x3d34300,2, 0x3d3430c,2, 0x3d34320,6, 0x3d34340,7, 0x3d34360,6, 0x3d34380,6, 0x3d343a0,7, 0x3d343c0,6, 0x3d343e0,6, 0x3d34400,3, 0x3d34440,12, 0x3d34484,1, 0x3d344c0,16, 0x3d34800,7, 0x3d34820,14, 0x3d34880,9, 0x3d348a8,12, 0x3d34900,7, 0x3d34920,14, 0x3d34980,9, 0x3d349a8,12, 0x3d34a00,10, 0x3d34a40,2, 0x3d34a4c,3, 0x3d34c00,5, 0x3d34c20,1, 0x3d34c28,3, 0x3d40000,37, 0x3d40100,3, 0x3d40110,15, 0x3d40200,37, 0x3d40300,3, 0x3d40310,15, 0x3d40400,5, 0x3d40420,5, 0x3d40440,18, 0x3d40800,3, 0x3d40810,2, 0x3d40820,3, 0x3d40830,2, 0x3d40840,1, 0x3d41000,12, 0x3d41040,12, 0x3d41080,2, 0x3d41100,19, 0x3d41180,19, 0x3d41200,26, 0x3d41400,20, 0x3d41480,20, 0x3d41500,8, 0x3d41540,4, 0x3d41580,15, 0x3d415c0,15, 0x3d41600,9, 0x3d41630,5, 0x3d42000,37, 0x3d42100,3, 0x3d42110,15, 0x3d42200,37, 0x3d42300,3, 0x3d42310,15, 0x3d42400,5, 0x3d42420,5, 0x3d42440,18, 0x3d42800,3, 0x3d42810,2, 0x3d42820,3, 0x3d42830,2, 0x3d42840,1, 0x3d43000,12, 0x3d43040,12, 0x3d43080,2, 0x3d43100,19, 0x3d43180,19, 0x3d43200,26, 0x3d43400,20, 0x3d43480,20, 0x3d43500,8, 0x3d43540,4, 0x3d43580,15, 0x3d435c0,15, 0x3d43600,9, 0x3d43630,5, 0x3d44000,6, 0x3d44020,1, 0x3d4402c,3, 0x3d44040,11, 0x3d44070,3, 0x3d44080,2, 0x3d48000,49, 0x3d48100,12, 0x3d48140,4, 0x3d48184,1, 0x3d48198,2, 0x3d481a4,1, 0x3d481b8,7, 0x3d481e0,4, 0x3d48200,20, 0x3d48280,3, 0x3d48290,9, 0x3d482c0,6, 0x3d482e0,1, 0x3d482e8,7, 0x3d48400,49, 0x3d48500,12, 0x3d48540,4, 0x3d48584,1, 0x3d48598,2, 0x3d485a4,1, 0x3d485b8,7, 0x3d485e0,4, 0x3d48600,20, 0x3d48680,3, 0x3d48690,9, 0x3d486c0,6, 0x3d486e0,1, 0x3d486e8,7, 0x3d48800,49, 0x3d48900,12, 0x3d48940,4, 0x3d48984,1, 0x3d48998,2, 0x3d489a4,1, 0x3d489b8,7, 0x3d489e0,4, 0x3d48a00,20, 0x3d48a80,3, 0x3d48a90,9, 0x3d48ac0,6, 0x3d48ae0,1, 0x3d48ae8,7, 0x3d48c00,49, 0x3d48d00,12, 0x3d48d40,4, 0x3d48d84,1, 0x3d48d98,2, 0x3d48da4,1, 0x3d48db8,7, 0x3d48de0,4, 0x3d48e00,20, 0x3d48e80,3, 0x3d48e90,9, 0x3d48ec0,6, 0x3d48ee0,1, 0x3d48ee8,7, 0x3d49000,49, 0x3d49100,12, 0x3d49140,4, 0x3d49184,1, 0x3d49198,2, 0x3d491a4,1, 0x3d491b8,7, 0x3d491e0,4, 0x3d49200,20, 0x3d49280,3, 0x3d49290,9, 0x3d492c0,6, 0x3d492e0,1, 0x3d492e8,7, 0x3d49400,49, 0x3d49500,12, 0x3d49540,4, 0x3d49584,1, 0x3d49598,2, 0x3d495a4,1, 0x3d495b8,7, 0x3d495e0,4, 0x3d49600,20, 0x3d49680,3, 0x3d49690,9, 0x3d496c0,6, 0x3d496e0,1, 0x3d496e8,7, 0x3d49800,49, 0x3d49900,12, 0x3d49940,4, 0x3d49984,1, 0x3d49998,2, 0x3d499a4,1, 0x3d499b8,7, 0x3d499e0,4, 0x3d49a00,20, 0x3d49a80,3, 0x3d49a90,9, 0x3d49ac0,6, 0x3d49ae0,1, 0x3d49ae8,7, 0x3d4a000,20, 0x3d4a080,2, 0x3d4a100,20, 0x3d4a180,2, 0x3d4a200,4, 0x3d4a400,20, 0x3d4a480,2, 0x3d4a500,20, 0x3d4a580,2, 0x3d4a600,4, 0x3d4a800,3, 0x3d4a840,12, 0x3d4a880,12, 0x3d4a8c0,12, 0x3d4a900,12, 0x3d4a940,12, 0x3d4a980,12, 0x3d4a9c0,12, 0x3d4aa00,12, 0x3d4ac00,12, 0x3d4ac40,7, 0x3d4ac60,10, 0x3d4b004,1, 0x3d4b018,40, 0x3d4b100,7, 0x3d4b120,7, 0x3d4b140,2, 0x3d4b14c,2, 0x3d4b160,2, 0x3d4b16c,2, 0x3d4b180,18, 0x3d4b200,2, 0x3d4b220,10, 0x3d4b260,20, 0x3d4b2c0,7, 0x3d4b300,15, 0x3d4b340,9, 0x3d4b380,6, 0x3d4b3a0,4, 0x3d4b400,4, 0x3d4c000,106, 0x3d4c200,2, 0x3d4c240,9, 0x3d4c280,7, 0x3d4c400,106, 0x3d4c604,6, 0x3d4c700,15, 0x3d4c740,9, 0x3d4c780,6, 0x3d4c7a0,6, 0x3d4c800,8, 0x3d4c824,1, 0x3d4c830,15, 0x3d4c870,3, 0x3d60000,518, 0x3d60900,45, 0x3d60a00,45, 0x3d60b00,45, 0x3d60c00,45, 0x3d60d00,45, 0x3d60e00,45, 0x3d60f00,45, 0x3d61000,45, 0x3d61800,9, 0x3d61840,364, 0x3d61e00,19, 0x3d62000,9, 0x3d62040,364, 0x3d62600,19, 0x3d62800,6, 0x3d62820,3, 0x3d62840,7, 0x3d62880,6, 0x3d628a0,3, 0x3d628c0,7, 0x3d62900,1, 0x3d62908,3, 0x3d62918,8, 0x3d62940,7, 0x3d63000,2, 0x3d63800,18, 0x3d63880,18, 0x3d63c00,4, 0x3d63c20,7, 0x3d63d00,4, 0x3d63d80,20, 0x3d63e00,1, 0x3d64000,21, 0x3d64058,3, 0x3d64100,1, 0x3d64124,1, 0x3d6412c,5, 0x3d64144,1, 0x3d6414c,6, 0x3d64184,6, 0x3d641a4,6, 0x3d641c4,1, 0x3d641cc,1, 0x3d64400,9, 0x3d64440,9, 0x3d64480,15, 0x3d644c0,15, 0x3d64500,15, 0x3d64540,15, 0x3d64580,15, 0x3d645c0,15, 0x3d64600,15, 0x3d64640,15, 0x3d64680,59, 0x3d64800,1, 0x3d64808,16, 0x3d64850,1, 0x3d64858,7, 0x3d68000,3, 0x3d68010,1, 0x3d68018,3, 0x3d6a000,4, 0x3d6a080,19, 0x3d6a100,12, 0x3d6a200,4, 0x3d6a280,19, 0x3d6a300,12, 0x3d6a400,2, 0x3d6a600,124, 0x3d6a800,4, 0x3d6a880,18, 0x3d6a900,4, 0x3d6a980,23, 0x3d6aa00,10, 0x3d6aa2c,2, 0x3d6aa40,2, 0x3d6aa4c,3, 0x3d6aa60,2, 0x3d6aa6c,3, 0x3d6aa80,2, 0x3d6aa8c,2, 0x3d6aaa0,2, 0x3d6aaac,2, 0x3d6aac0,2, 0x3d6aacc,2, 0x3d6ab00,4, 0x3d6ab40,15, 0x3d6ab80,3, 0x3d6ab90,7, 0x3d6abb0,3, 0x3d6abc0,3, 0x3d6abd0,3, 0x3d6abe0,1, 0x3d6ac00,17, 0x3d6ae00,15, 0x3d6ae40,4, 0x3d6ae60,17, 0x3d6aec0,6, 0x3d6aee0,4, 0x3d6aef4,11, 0x3d6af24,28, 0x3d6b000,1, 0x3d6b080,1, 0x3d6b0a0,5, 0x3d6b0c0,5, 0x3d6b0e0,5, 0x3d6b100,1, 0x3d6b120,5, 0x3d6b140,5, 0x3d6b160,5, 0x3d6b180,24, 0x3d6b200,5, 0x3d6c000,20, 0x3d70000,518, 0x3d70900,45, 0x3d70a00,45, 0x3d70b00,45, 0x3d70c00,45, 0x3d70d00,45, 0x3d70e00,45, 0x3d70f00,45, 0x3d71000,45, 0x3d71800,9, 0x3d71840,364, 0x3d71e00,19, 0x3d72000,9, 0x3d72040,364, 0x3d72600,19, 0x3d72800,6, 0x3d72820,3, 0x3d72840,7, 0x3d72880,6, 0x3d728a0,3, 0x3d728c0,7, 0x3d72900,1, 0x3d72908,3, 0x3d72918,8, 0x3d72940,7, 0x3d73000,2, 0x3d73800,18, 0x3d73880,18, 0x3d73c00,4, 0x3d73c20,7, 0x3d73d00,4, 0x3d73d80,20, 0x3d73e00,1, 0x3d74000,21, 0x3d74058,3, 0x3d74100,1, 0x3d74124,1, 0x3d7412c,5, 0x3d74144,1, 0x3d7414c,6, 0x3d74184,6, 0x3d741a4,6, 0x3d741c4,1, 0x3d741cc,1, 0x3d74400,9, 0x3d74440,9, 0x3d74480,15, 0x3d744c0,15, 0x3d74500,15, 0x3d74540,15, 0x3d74580,15, 0x3d745c0,15, 0x3d74600,15, 0x3d74640,15, 0x3d74680,59, 0x3d74800,1, 0x3d74808,16, 0x3d74850,1, 0x3d74858,7, 0x3d78000,3, 0x3d78010,1, 0x3d78018,3, 0x3d7a000,4, 0x3d7a080,19, 0x3d7a100,12, 0x3d7a200,4, 0x3d7a280,19, 0x3d7a300,12, 0x3d7a400,2, 0x3d7a600,124, 0x3d7a800,4, 0x3d7a880,18, 0x3d7a900,4, 0x3d7a980,23, 0x3d7aa00,10, 0x3d7aa2c,2, 0x3d7aa40,2, 0x3d7aa4c,3, 0x3d7aa60,2, 0x3d7aa6c,3, 0x3d7aa80,2, 0x3d7aa8c,2, 0x3d7aaa0,2, 0x3d7aaac,2, 0x3d7aac0,2, 0x3d7aacc,2, 0x3d7ab00,4, 0x3d7ab40,15, 0x3d7ab80,3, 0x3d7ab90,7, 0x3d7abb0,3, 0x3d7abc0,3, 0x3d7abd0,3, 0x3d7abe0,1, 0x3d7ac00,17, 0x3d7ae00,15, 0x3d7ae40,4, 0x3d7ae60,17, 0x3d7aec0,6, 0x3d7aee0,4, 0x3d7aef4,11, 0x3d7af24,28, 0x3d7b000,1, 0x3d7b080,1, 0x3d7b0a0,5, 0x3d7b0c0,5, 0x3d7b0e0,5, 0x3d7b100,1, 0x3d7b120,5, 0x3d7b140,5, 0x3d7b160,5, 0x3d7b180,24, 0x3d7b200,5, 0x3d7c000,20, 0x3d80000,18, 0x3d80050,3, 0x3d80060,3, 0x3d80070,14, 0x3d800c0,5, 0x3d80400,13, 0x3d80440,2, 0x3d8044c,3, 0x3d80460,2, 0x3d80480,13, 0x3d804c0,2, 0x3d804cc,3, 0x3d804e0,2, 0x3d80500,1, 0x3d80508,16, 0x3d80560,2, 0x3d8056c,3, 0x3d80600,4, 0x3d80680,19, 0x3d80800,24, 0x3d80864,2, 0x3d80870,4, 0x3d80a00,27, 0x3d80a80,4, 0x3d80ac0,25, 0x3d80b40,6, 0x3d80b60,4, 0x3d80b74,11, 0x3d80ba4,8, 0x3d80c00,3, 0x3d80c10,3, 0x3d80c20,1, 0x3d80c40,11, 0x3d80c80,23, 0x3d80ce0,15, 0x3d80d20,15, 0x3d80d60,2, 0x3d80d6c,2, 0x3d80d80,1, 0x3d81000,18, 0x3d81050,3, 0x3d81060,3, 0x3d81070,14, 0x3d810c0,5, 0x3d81400,13, 0x3d81440,2, 0x3d8144c,3, 0x3d81460,2, 0x3d81480,13, 0x3d814c0,2, 0x3d814cc,3, 0x3d814e0,2, 0x3d81500,1, 0x3d81508,16, 0x3d81560,2, 0x3d8156c,3, 0x3d81600,4, 0x3d81680,19, 0x3d81800,24, 0x3d81864,2, 0x3d81870,4, 0x3d81a00,27, 0x3d81a80,4, 0x3d81ac0,25, 0x3d81b40,6, 0x3d81b60,4, 0x3d81b74,11, 0x3d81ba4,8, 0x3d81c00,3, 0x3d81c10,3, 0x3d81c20,1, 0x3d81c40,11, 0x3d81c80,23, 0x3d81ce0,15, 0x3d81d20,15, 0x3d81d60,2, 0x3d81d6c,2, 0x3d81d80,1, 0x3d82000,20, 0x3d82080,7, 0x3d820a0,1, 0x3d820b0,1, 0x3d820b8,2, 0x3d84000,14, 0x3e00000,534, 0x3e01000,2, 0x3e01040,9, 0x3e01080,7, 0x3e02000,534, 0x3e03000,12, 0x3e03044,6, 0x3e03080,8, 0x3e030a4,1, 0x3e030c0,7, 0x3e030e0,7, 0x3e03100,7, 0x3e03120,7, 0x3e03140,8, 0x3e03164,6, 0x3e03180,12, 0x3e04000,534, 0x3e05000,2, 0x3e05040,9, 0x3e05080,7, 0x3e06000,534, 0x3e07000,12, 0x3e07044,6, 0x3e07080,8, 0x3e070a4,1, 0x3e070c0,7, 0x3e070e0,7, 0x3e07100,7, 0x3e07120,7, 0x3e07140,8, 0x3e07164,6, 0x3e07180,12, 0x3e08004,5, 0x3e08200,27, 0x3e08280,4, 0x3e082c0,25, 0x3e08340,6, 0x3e08360,4, 0x3e08374,11, 0x3e083a4,5, 0x3e08400,1, 0x3e10000,397, 0x3e10800,93, 0x3e10980,6, 0x3e10a00,41, 0x3e10b00,2, 0x3e10b20,19, 0x3e10c00,25, 0x3e10c80,1, 0x3e10d00,28, 0x3e10d80,1, 0x3e11000,397, 0x3e11800,93, 0x3e11980,6, 0x3e11a00,41, 0x3e11b00,2, 0x3e11b20,19, 0x3e11c00,25, 0x3e11c80,1, 0x3e11d00,28, 0x3e11d80,1, 0x3e12000,7, 0x3e12040,9, 0x3e12080,4, 0x3e120a0,5, 0x3e120c0,2, 0x3e14000,3, 0x3e14010,6, 0x3e14200,7, 0x3e14220,6, 0x3e14240,7, 0x3e14260,6, 0x3e14280,2, 0x3e1428c,2, 0x3e142a0,2, 0x3e142ac,2, 0x3e142c0,7, 0x3e142e0,7, 0x3e14300,2, 0x3e1430c,2, 0x3e14320,6, 0x3e14340,7, 0x3e14360,6, 0x3e14380,6, 0x3e143a0,7, 0x3e143c0,6, 0x3e143e0,6, 0x3e14400,3, 0x3e14440,12, 0x3e14484,1, 0x3e144c0,16, 0x3e14800,7, 0x3e14820,14, 0x3e14880,9, 0x3e148a8,12, 0x3e14900,7, 0x3e14920,14, 0x3e14980,9, 0x3e149a8,12, 0x3e14a00,10, 0x3e14a40,2, 0x3e14a4c,3, 0x3e14c00,5, 0x3e14c20,1, 0x3e14c28,3, 0x3e20000,534, 0x3e21000,2, 0x3e21040,9, 0x3e21080,7, 0x3e22000,534, 0x3e23000,12, 0x3e23044,6, 0x3e23080,8, 0x3e230a4,1, 0x3e230c0,7, 0x3e230e0,7, 0x3e23100,7, 0x3e23120,7, 0x3e23140,8, 0x3e23164,6, 0x3e23180,12, 0x3e24000,534, 0x3e25000,2, 0x3e25040,9, 0x3e25080,7, 0x3e26000,534, 0x3e27000,12, 0x3e27044,6, 0x3e27080,8, 0x3e270a4,1, 0x3e270c0,7, 0x3e270e0,7, 0x3e27100,7, 0x3e27120,7, 0x3e27140,8, 0x3e27164,6, 0x3e27180,12, 0x3e28004,5, 0x3e28200,27, 0x3e28280,4, 0x3e282c0,25, 0x3e28340,6, 0x3e28360,4, 0x3e28374,11, 0x3e283a4,5, 0x3e28400,1, 0x3e30000,397, 0x3e30800,93, 0x3e30980,6, 0x3e30a00,41, 0x3e30b00,2, 0x3e30b20,19, 0x3e30c00,25, 0x3e30c80,1, 0x3e30d00,28, 0x3e30d80,1, 0x3e31000,397, 0x3e31800,93, 0x3e31980,6, 0x3e31a00,41, 0x3e31b00,2, 0x3e31b20,19, 0x3e31c00,25, 0x3e31c80,1, 0x3e31d00,28, 0x3e31d80,1, 0x3e32000,7, 0x3e32040,9, 0x3e32080,4, 0x3e320a0,5, 0x3e320c0,2, 0x3e34000,3, 0x3e34010,6, 0x3e34200,7, 0x3e34220,6, 0x3e34240,7, 0x3e34260,6, 0x3e34280,2, 0x3e3428c,2, 0x3e342a0,2, 0x3e342ac,2, 0x3e342c0,7, 0x3e342e0,7, 0x3e34300,2, 0x3e3430c,2, 0x3e34320,6, 0x3e34340,7, 0x3e34360,6, 0x3e34380,6, 0x3e343a0,7, 0x3e343c0,6, 0x3e343e0,6, 0x3e34400,3, 0x3e34440,12, 0x3e34484,1, 0x3e344c0,16, 0x3e34800,7, 0x3e34820,14, 0x3e34880,9, 0x3e348a8,12, 0x3e34900,7, 0x3e34920,14, 0x3e34980,9, 0x3e349a8,12, 0x3e34a00,10, 0x3e34a40,2, 0x3e34a4c,3, 0x3e34c00,5, 0x3e34c20,1, 0x3e34c28,3, 0x3e40000,37, 0x3e40100,3, 0x3e40110,15, 0x3e40200,37, 0x3e40300,3, 0x3e40310,15, 0x3e40400,5, 0x3e40420,5, 0x3e40440,18, 0x3e40800,3, 0x3e40810,2, 0x3e40820,3, 0x3e40830,2, 0x3e40840,1, 0x3e41000,12, 0x3e41040,12, 0x3e41080,2, 0x3e41100,19, 0x3e41180,19, 0x3e41200,26, 0x3e41400,20, 0x3e41480,20, 0x3e41500,8, 0x3e41540,4, 0x3e41580,15, 0x3e415c0,15, 0x3e41600,9, 0x3e41630,5, 0x3e42000,37, 0x3e42100,3, 0x3e42110,15, 0x3e42200,37, 0x3e42300,3, 0x3e42310,15, 0x3e42400,5, 0x3e42420,5, 0x3e42440,18, 0x3e42800,3, 0x3e42810,2, 0x3e42820,3, 0x3e42830,2, 0x3e42840,1, 0x3e43000,12, 0x3e43040,12, 0x3e43080,2, 0x3e43100,19, 0x3e43180,19, 0x3e43200,26, 0x3e43400,20, 0x3e43480,20, 0x3e43500,8, 0x3e43540,4, 0x3e43580,15, 0x3e435c0,15, 0x3e43600,9, 0x3e43630,5, 0x3e44000,6, 0x3e44020,1, 0x3e4402c,3, 0x3e44040,11, 0x3e44070,3, 0x3e44080,2, 0x3e48000,49, 0x3e48100,12, 0x3e48140,4, 0x3e48184,1, 0x3e48198,2, 0x3e481a4,1, 0x3e481b8,7, 0x3e481e0,4, 0x3e48200,20, 0x3e48280,3, 0x3e48290,9, 0x3e482c0,6, 0x3e482e0,1, 0x3e482e8,7, 0x3e48400,49, 0x3e48500,12, 0x3e48540,4, 0x3e48584,1, 0x3e48598,2, 0x3e485a4,1, 0x3e485b8,7, 0x3e485e0,4, 0x3e48600,20, 0x3e48680,3, 0x3e48690,9, 0x3e486c0,6, 0x3e486e0,1, 0x3e486e8,7, 0x3e48800,49, 0x3e48900,12, 0x3e48940,4, 0x3e48984,1, 0x3e48998,2, 0x3e489a4,1, 0x3e489b8,7, 0x3e489e0,4, 0x3e48a00,20, 0x3e48a80,3, 0x3e48a90,9, 0x3e48ac0,6, 0x3e48ae0,1, 0x3e48ae8,7, 0x3e48c00,49, 0x3e48d00,12, 0x3e48d40,4, 0x3e48d84,1, 0x3e48d98,2, 0x3e48da4,1, 0x3e48db8,7, 0x3e48de0,4, 0x3e48e00,20, 0x3e48e80,3, 0x3e48e90,9, 0x3e48ec0,6, 0x3e48ee0,1, 0x3e48ee8,7, 0x3e49000,49, 0x3e49100,12, 0x3e49140,4, 0x3e49184,1, 0x3e49198,2, 0x3e491a4,1, 0x3e491b8,7, 0x3e491e0,4, 0x3e49200,20, 0x3e49280,3, 0x3e49290,9, 0x3e492c0,6, 0x3e492e0,1, 0x3e492e8,7, 0x3e49400,49, 0x3e49500,12, 0x3e49540,4, 0x3e49584,1, 0x3e49598,2, 0x3e495a4,1, 0x3e495b8,7, 0x3e495e0,4, 0x3e49600,20, 0x3e49680,3, 0x3e49690,9, 0x3e496c0,6, 0x3e496e0,1, 0x3e496e8,7, 0x3e49800,49, 0x3e49900,12, 0x3e49940,4, 0x3e49984,1, 0x3e49998,2, 0x3e499a4,1, 0x3e499b8,7, 0x3e499e0,4, 0x3e49a00,20, 0x3e49a80,3, 0x3e49a90,9, 0x3e49ac0,6, 0x3e49ae0,1, 0x3e49ae8,7, 0x3e4a000,20, 0x3e4a080,2, 0x3e4a100,20, 0x3e4a180,2, 0x3e4a200,4, 0x3e4a400,20, 0x3e4a480,2, 0x3e4a500,20, 0x3e4a580,2, 0x3e4a600,4, 0x3e4a800,3, 0x3e4a840,12, 0x3e4a880,12, 0x3e4a8c0,12, 0x3e4a900,12, 0x3e4a940,12, 0x3e4a980,12, 0x3e4a9c0,12, 0x3e4aa00,12, 0x3e4ac00,12, 0x3e4ac40,7, 0x3e4ac60,10, 0x3e4b004,1, 0x3e4b018,40, 0x3e4b100,7, 0x3e4b120,7, 0x3e4b140,2, 0x3e4b14c,2, 0x3e4b160,2, 0x3e4b16c,2, 0x3e4b180,18, 0x3e4b200,2, 0x3e4b220,10, 0x3e4b260,20, 0x3e4b2c0,7, 0x3e4b300,15, 0x3e4b340,9, 0x3e4b380,6, 0x3e4b3a0,4, 0x3e4b400,4, 0x3e4c000,106, 0x3e4c200,2, 0x3e4c240,9, 0x3e4c280,7, 0x3e4c400,106, 0x3e4c604,6, 0x3e4c700,15, 0x3e4c740,9, 0x3e4c780,6, 0x3e4c7a0,6, 0x3e4c800,8, 0x3e4c824,1, 0x3e4c830,15, 0x3e4c870,3, 0x3e60000,518, 0x3e60900,45, 0x3e60a00,45, 0x3e60b00,45, 0x3e60c00,45, 0x3e60d00,45, 0x3e60e00,45, 0x3e60f00,45, 0x3e61000,45, 0x3e61800,9, 0x3e61840,364, 0x3e61e00,19, 0x3e62000,9, 0x3e62040,364, 0x3e62600,19, 0x3e62800,6, 0x3e62820,3, 0x3e62840,7, 0x3e62880,6, 0x3e628a0,3, 0x3e628c0,7, 0x3e62900,1, 0x3e62908,3, 0x3e62918,8, 0x3e62940,7, 0x3e63000,2, 0x3e63800,18, 0x3e63880,18, 0x3e63c00,4, 0x3e63c20,7, 0x3e63d00,4, 0x3e63d80,20, 0x3e63e00,1, 0x3e64000,21, 0x3e64058,3, 0x3e64100,1, 0x3e64124,1, 0x3e6412c,5, 0x3e64144,1, 0x3e6414c,6, 0x3e64184,6, 0x3e641a4,6, 0x3e641c4,1, 0x3e641cc,1, 0x3e64400,9, 0x3e64440,9, 0x3e64480,15, 0x3e644c0,15, 0x3e64500,15, 0x3e64540,15, 0x3e64580,15, 0x3e645c0,15, 0x3e64600,15, 0x3e64640,15, 0x3e64680,59, 0x3e64800,1, 0x3e64808,16, 0x3e64850,1, 0x3e64858,7, 0x3e68000,3, 0x3e68010,1, 0x3e68018,3, 0x3e6a000,4, 0x3e6a080,19, 0x3e6a100,12, 0x3e6a200,4, 0x3e6a280,19, 0x3e6a300,12, 0x3e6a400,2, 0x3e6a600,124, 0x3e6a800,4, 0x3e6a880,18, 0x3e6a900,4, 0x3e6a980,23, 0x3e6aa00,10, 0x3e6aa2c,2, 0x3e6aa40,2, 0x3e6aa4c,3, 0x3e6aa60,2, 0x3e6aa6c,3, 0x3e6aa80,2, 0x3e6aa8c,2, 0x3e6aaa0,2, 0x3e6aaac,2, 0x3e6aac0,2, 0x3e6aacc,2, 0x3e6ab00,4, 0x3e6ab40,15, 0x3e6ab80,3, 0x3e6ab90,7, 0x3e6abb0,3, 0x3e6abc0,3, 0x3e6abd0,3, 0x3e6abe0,1, 0x3e6ac00,17, 0x3e6ae00,15, 0x3e6ae40,4, 0x3e6ae60,17, 0x3e6aec0,6, 0x3e6aee0,4, 0x3e6aef4,11, 0x3e6af24,28, 0x3e6b000,1, 0x3e6b080,1, 0x3e6b0a0,5, 0x3e6b0c0,5, 0x3e6b0e0,5, 0x3e6b100,1, 0x3e6b120,5, 0x3e6b140,5, 0x3e6b160,5, 0x3e6b180,24, 0x3e6b200,5, 0x3e6c000,20, 0x3e70000,518, 0x3e70900,45, 0x3e70a00,45, 0x3e70b00,45, 0x3e70c00,45, 0x3e70d00,45, 0x3e70e00,45, 0x3e70f00,45, 0x3e71000,45, 0x3e71800,9, 0x3e71840,364, 0x3e71e00,19, 0x3e72000,9, 0x3e72040,364, 0x3e72600,19, 0x3e72800,6, 0x3e72820,3, 0x3e72840,7, 0x3e72880,6, 0x3e728a0,3, 0x3e728c0,7, 0x3e72900,1, 0x3e72908,3, 0x3e72918,8, 0x3e72940,7, 0x3e73000,2, 0x3e73800,18, 0x3e73880,18, 0x3e73c00,4, 0x3e73c20,7, 0x3e73d00,4, 0x3e73d80,20, 0x3e73e00,1, 0x3e74000,21, 0x3e74058,3, 0x3e74100,1, 0x3e74124,1, 0x3e7412c,5, 0x3e74144,1, 0x3e7414c,6, 0x3e74184,6, 0x3e741a4,6, 0x3e741c4,1, 0x3e741cc,1, 0x3e74400,9, 0x3e74440,9, 0x3e74480,15, 0x3e744c0,15, 0x3e74500,15, 0x3e74540,15, 0x3e74580,15, 0x3e745c0,15, 0x3e74600,15, 0x3e74640,15, 0x3e74680,59, 0x3e74800,1, 0x3e74808,16, 0x3e74850,1, 0x3e74858,7, 0x3e78000,3, 0x3e78010,1, 0x3e78018,3, 0x3e7a000,4, 0x3e7a080,19, 0x3e7a100,12, 0x3e7a200,4, 0x3e7a280,19, 0x3e7a300,12, 0x3e7a400,2, 0x3e7a600,124, 0x3e7a800,4, 0x3e7a880,18, 0x3e7a900,4, 0x3e7a980,23, 0x3e7aa00,10, 0x3e7aa2c,2, 0x3e7aa40,2, 0x3e7aa4c,3, 0x3e7aa60,2, 0x3e7aa6c,3, 0x3e7aa80,2, 0x3e7aa8c,2, 0x3e7aaa0,2, 0x3e7aaac,2, 0x3e7aac0,2, 0x3e7aacc,2, 0x3e7ab00,4, 0x3e7ab40,15, 0x3e7ab80,3, 0x3e7ab90,7, 0x3e7abb0,3, 0x3e7abc0,3, 0x3e7abd0,3, 0x3e7abe0,1, 0x3e7ac00,17, 0x3e7ae00,15, 0x3e7ae40,4, 0x3e7ae60,17, 0x3e7aec0,6, 0x3e7aee0,4, 0x3e7aef4,11, 0x3e7af24,28, 0x3e7b000,1, 0x3e7b080,1, 0x3e7b0a0,5, 0x3e7b0c0,5, 0x3e7b0e0,5, 0x3e7b100,1, 0x3e7b120,5, 0x3e7b140,5, 0x3e7b160,5, 0x3e7b180,24, 0x3e7b200,5, 0x3e7c000,20, 0x3e80000,18, 0x3e80050,3, 0x3e80060,3, 0x3e80070,14, 0x3e800c0,5, 0x3e80400,13, 0x3e80440,2, 0x3e8044c,3, 0x3e80460,2, 0x3e80480,13, 0x3e804c0,2, 0x3e804cc,3, 0x3e804e0,2, 0x3e80500,1, 0x3e80508,16, 0x3e80560,2, 0x3e8056c,3, 0x3e80600,4, 0x3e80680,19, 0x3e80800,24, 0x3e80864,2, 0x3e80870,4, 0x3e80a00,27, 0x3e80a80,4, 0x3e80ac0,25, 0x3e80b40,6, 0x3e80b60,4, 0x3e80b74,11, 0x3e80ba4,8, 0x3e80c00,3, 0x3e80c10,3, 0x3e80c20,1, 0x3e80c40,11, 0x3e80c80,23, 0x3e80ce0,15, 0x3e80d20,15, 0x3e80d60,2, 0x3e80d6c,2, 0x3e80d80,1, 0x3e81000,18, 0x3e81050,3, 0x3e81060,3, 0x3e81070,14, 0x3e810c0,5, 0x3e81400,13, 0x3e81440,2, 0x3e8144c,3, 0x3e81460,2, 0x3e81480,13, 0x3e814c0,2, 0x3e814cc,3, 0x3e814e0,2, 0x3e81500,1, 0x3e81508,16, 0x3e81560,2, 0x3e8156c,3, 0x3e81600,4, 0x3e81680,19, 0x3e81800,24, 0x3e81864,2, 0x3e81870,4, 0x3e81a00,27, 0x3e81a80,4, 0x3e81ac0,25, 0x3e81b40,6, 0x3e81b60,4, 0x3e81b74,11, 0x3e81ba4,8, 0x3e81c00,3, 0x3e81c10,3, 0x3e81c20,1, 0x3e81c40,11, 0x3e81c80,23, 0x3e81ce0,15, 0x3e81d20,15, 0x3e81d60,2, 0x3e81d6c,2, 0x3e81d80,1, 0x3e82000,20, 0x3e82080,7, 0x3e820a0,1, 0x3e820b0,1, 0x3e820b8,2, 0x3e84000,14, 0x3f00000,534, 0x3f01000,2, 0x3f01040,9, 0x3f01080,7, 0x3f02000,534, 0x3f03000,12, 0x3f03044,6, 0x3f03080,8, 0x3f030a4,1, 0x3f030c0,7, 0x3f030e0,7, 0x3f03100,7, 0x3f03120,7, 0x3f03140,8, 0x3f03164,6, 0x3f03180,12, 0x3f04000,534, 0x3f05000,2, 0x3f05040,9, 0x3f05080,7, 0x3f06000,534, 0x3f07000,12, 0x3f07044,6, 0x3f07080,8, 0x3f070a4,1, 0x3f070c0,7, 0x3f070e0,7, 0x3f07100,7, 0x3f07120,7, 0x3f07140,8, 0x3f07164,6, 0x3f07180,12, 0x3f08004,5, 0x3f08200,27, 0x3f08280,4, 0x3f082c0,25, 0x3f08340,6, 0x3f08360,4, 0x3f08374,11, 0x3f083a4,5, 0x3f08400,1, 0x3f10000,397, 0x3f10800,93, 0x3f10980,6, 0x3f10a00,41, 0x3f10b00,2, 0x3f10b20,19, 0x3f10c00,25, 0x3f10c80,1, 0x3f10d00,28, 0x3f10d80,1, 0x3f11000,397, 0x3f11800,93, 0x3f11980,6, 0x3f11a00,41, 0x3f11b00,2, 0x3f11b20,19, 0x3f11c00,25, 0x3f11c80,1, 0x3f11d00,28, 0x3f11d80,1, 0x3f12000,7, 0x3f12040,9, 0x3f12080,4, 0x3f120a0,5, 0x3f120c0,2, 0x3f14000,3, 0x3f14010,6, 0x3f14200,7, 0x3f14220,6, 0x3f14240,7, 0x3f14260,6, 0x3f14280,2, 0x3f1428c,2, 0x3f142a0,2, 0x3f142ac,2, 0x3f142c0,7, 0x3f142e0,7, 0x3f14300,2, 0x3f1430c,2, 0x3f14320,6, 0x3f14340,7, 0x3f14360,6, 0x3f14380,6, 0x3f143a0,7, 0x3f143c0,6, 0x3f143e0,6, 0x3f14400,3, 0x3f14440,12, 0x3f14484,1, 0x3f144c0,16, 0x3f14800,7, 0x3f14820,14, 0x3f14880,9, 0x3f148a8,12, 0x3f14900,7, 0x3f14920,14, 0x3f14980,9, 0x3f149a8,12, 0x3f14a00,10, 0x3f14a40,2, 0x3f14a4c,3, 0x3f14c00,5, 0x3f14c20,1, 0x3f14c28,3, 0x3f20000,534, 0x3f21000,2, 0x3f21040,9, 0x3f21080,7, 0x3f22000,534, 0x3f23000,12, 0x3f23044,6, 0x3f23080,8, 0x3f230a4,1, 0x3f230c0,7, 0x3f230e0,7, 0x3f23100,7, 0x3f23120,7, 0x3f23140,8, 0x3f23164,6, 0x3f23180,12, 0x3f24000,534, 0x3f25000,2, 0x3f25040,9, 0x3f25080,7, 0x3f26000,534, 0x3f27000,12, 0x3f27044,6, 0x3f27080,8, 0x3f270a4,1, 0x3f270c0,7, 0x3f270e0,7, 0x3f27100,7, 0x3f27120,7, 0x3f27140,8, 0x3f27164,6, 0x3f27180,12, 0x3f28004,5, 0x3f28200,27, 0x3f28280,4, 0x3f282c0,25, 0x3f28340,6, 0x3f28360,4, 0x3f28374,11, 0x3f283a4,5, 0x3f28400,1, 0x3f30000,397, 0x3f30800,93, 0x3f30980,6, 0x3f30a00,41, 0x3f30b00,2, 0x3f30b20,19, 0x3f30c00,25, 0x3f30c80,1, 0x3f30d00,28, 0x3f30d80,1, 0x3f31000,397, 0x3f31800,93, 0x3f31980,6, 0x3f31a00,41, 0x3f31b00,2, 0x3f31b20,19, 0x3f31c00,25, 0x3f31c80,1, 0x3f31d00,28, 0x3f31d80,1, 0x3f32000,7, 0x3f32040,9, 0x3f32080,4, 0x3f320a0,5, 0x3f320c0,2, 0x3f34000,3, 0x3f34010,6, 0x3f34200,7, 0x3f34220,6, 0x3f34240,7, 0x3f34260,6, 0x3f34280,2, 0x3f3428c,2, 0x3f342a0,2, 0x3f342ac,2, 0x3f342c0,7, 0x3f342e0,7, 0x3f34300,2, 0x3f3430c,2, 0x3f34320,6, 0x3f34340,7, 0x3f34360,6, 0x3f34380,6, 0x3f343a0,7, 0x3f343c0,6, 0x3f343e0,6, 0x3f34400,3, 0x3f34440,12, 0x3f34484,1, 0x3f344c0,16, 0x3f34800,7, 0x3f34820,14, 0x3f34880,9, 0x3f348a8,12, 0x3f34900,7, 0x3f34920,14, 0x3f34980,9, 0x3f349a8,12, 0x3f34a00,10, 0x3f34a40,2, 0x3f34a4c,3, 0x3f34c00,5, 0x3f34c20,1, 0x3f34c28,3, 0x3f40000,37, 0x3f40100,3, 0x3f40110,15, 0x3f40200,37, 0x3f40300,3, 0x3f40310,15, 0x3f40400,5, 0x3f40420,5, 0x3f40440,18, 0x3f40800,3, 0x3f40810,2, 0x3f40820,3, 0x3f40830,2, 0x3f40840,1, 0x3f41000,12, 0x3f41040,12, 0x3f41080,2, 0x3f41100,19, 0x3f41180,19, 0x3f41200,26, 0x3f41400,20, 0x3f41480,20, 0x3f41500,8, 0x3f41540,4, 0x3f41580,15, 0x3f415c0,15, 0x3f41600,9, 0x3f41630,5, 0x3f42000,37, 0x3f42100,3, 0x3f42110,15, 0x3f42200,37, 0x3f42300,3, 0x3f42310,15, 0x3f42400,5, 0x3f42420,5, 0x3f42440,18, 0x3f42800,3, 0x3f42810,2, 0x3f42820,3, 0x3f42830,2, 0x3f42840,1, 0x3f43000,12, 0x3f43040,12, 0x3f43080,2, 0x3f43100,19, 0x3f43180,19, 0x3f43200,26, 0x3f43400,20, 0x3f43480,20, 0x3f43500,8, 0x3f43540,4, 0x3f43580,15, 0x3f435c0,15, 0x3f43600,9, 0x3f43630,5, 0x3f44000,6, 0x3f44020,1, 0x3f4402c,3, 0x3f44040,11, 0x3f44070,3, 0x3f44080,2, 0x3f48000,49, 0x3f48100,12, 0x3f48140,4, 0x3f48184,1, 0x3f48198,2, 0x3f481a4,1, 0x3f481b8,7, 0x3f481e0,4, 0x3f48200,20, 0x3f48280,3, 0x3f48290,9, 0x3f482c0,6, 0x3f482e0,1, 0x3f482e8,7, 0x3f48400,49, 0x3f48500,12, 0x3f48540,4, 0x3f48584,1, 0x3f48598,2, 0x3f485a4,1, 0x3f485b8,7, 0x3f485e0,4, 0x3f48600,20, 0x3f48680,3, 0x3f48690,9, 0x3f486c0,6, 0x3f486e0,1, 0x3f486e8,7, 0x3f48800,49, 0x3f48900,12, 0x3f48940,4, 0x3f48984,1, 0x3f48998,2, 0x3f489a4,1, 0x3f489b8,7, 0x3f489e0,4, 0x3f48a00,20, 0x3f48a80,3, 0x3f48a90,9, 0x3f48ac0,6, 0x3f48ae0,1, 0x3f48ae8,7, 0x3f48c00,49, 0x3f48d00,12, 0x3f48d40,4, 0x3f48d84,1, 0x3f48d98,2, 0x3f48da4,1, 0x3f48db8,7, 0x3f48de0,4, 0x3f48e00,20, 0x3f48e80,3, 0x3f48e90,9, 0x3f48ec0,6, 0x3f48ee0,1, 0x3f48ee8,7, 0x3f49000,49, 0x3f49100,12, 0x3f49140,4, 0x3f49184,1, 0x3f49198,2, 0x3f491a4,1, 0x3f491b8,7, 0x3f491e0,4, 0x3f49200,20, 0x3f49280,3, 0x3f49290,9, 0x3f492c0,6, 0x3f492e0,1, 0x3f492e8,7, 0x3f49400,49, 0x3f49500,12, 0x3f49540,4, 0x3f49584,1, 0x3f49598,2, 0x3f495a4,1, 0x3f495b8,7, 0x3f495e0,4, 0x3f49600,20, 0x3f49680,3, 0x3f49690,9, 0x3f496c0,6, 0x3f496e0,1, 0x3f496e8,7, 0x3f49800,49, 0x3f49900,12, 0x3f49940,4, 0x3f49984,1, 0x3f49998,2, 0x3f499a4,1, 0x3f499b8,7, 0x3f499e0,4, 0x3f49a00,20, 0x3f49a80,3, 0x3f49a90,9, 0x3f49ac0,6, 0x3f49ae0,1, 0x3f49ae8,7, 0x3f4a000,20, 0x3f4a080,2, 0x3f4a100,20, 0x3f4a180,2, 0x3f4a200,4, 0x3f4a400,20, 0x3f4a480,2, 0x3f4a500,20, 0x3f4a580,2, 0x3f4a600,4, 0x3f4a800,3, 0x3f4a840,12, 0x3f4a880,12, 0x3f4a8c0,12, 0x3f4a900,12, 0x3f4a940,12, 0x3f4a980,12, 0x3f4a9c0,12, 0x3f4aa00,12, 0x3f4ac00,12, 0x3f4ac40,7, 0x3f4ac60,10, 0x3f4b004,1, 0x3f4b018,40, 0x3f4b100,7, 0x3f4b120,7, 0x3f4b140,2, 0x3f4b14c,2, 0x3f4b160,2, 0x3f4b16c,2, 0x3f4b180,18, 0x3f4b200,2, 0x3f4b220,10, 0x3f4b260,20, 0x3f4b2c0,7, 0x3f4b300,15, 0x3f4b340,9, 0x3f4b380,6, 0x3f4b3a0,4, 0x3f4b400,4, 0x3f4c000,106, 0x3f4c200,2, 0x3f4c240,9, 0x3f4c280,7, 0x3f4c400,106, 0x3f4c604,6, 0x3f4c700,15, 0x3f4c740,9, 0x3f4c780,6, 0x3f4c7a0,6, 0x3f4c800,8, 0x3f4c824,1, 0x3f4c830,15, 0x3f4c870,3, 0x3f60000,518, 0x3f60900,45, 0x3f60a00,45, 0x3f60b00,45, 0x3f60c00,45, 0x3f60d00,45, 0x3f60e00,45, 0x3f60f00,45, 0x3f61000,45, 0x3f61800,9, 0x3f61840,364, 0x3f61e00,19, 0x3f62000,9, 0x3f62040,364, 0x3f62600,19, 0x3f62800,6, 0x3f62820,3, 0x3f62840,7, 0x3f62880,6, 0x3f628a0,3, 0x3f628c0,7, 0x3f62900,1, 0x3f62908,3, 0x3f62918,8, 0x3f62940,7, 0x3f63000,2, 0x3f63800,18, 0x3f63880,18, 0x3f63c00,4, 0x3f63c20,7, 0x3f63d00,4, 0x3f63d80,20, 0x3f63e00,1, 0x3f64000,21, 0x3f64058,3, 0x3f64100,1, 0x3f64124,1, 0x3f6412c,5, 0x3f64144,1, 0x3f6414c,6, 0x3f64184,6, 0x3f641a4,6, 0x3f641c4,1, 0x3f641cc,1, 0x3f64400,9, 0x3f64440,9, 0x3f64480,15, 0x3f644c0,15, 0x3f64500,15, 0x3f64540,15, 0x3f64580,15, 0x3f645c0,15, 0x3f64600,15, 0x3f64640,15, 0x3f64680,59, 0x3f64800,1, 0x3f64808,16, 0x3f64850,1, 0x3f64858,7, 0x3f68000,3, 0x3f68010,1, 0x3f68018,3, 0x3f6a000,4, 0x3f6a080,19, 0x3f6a100,12, 0x3f6a200,4, 0x3f6a280,19, 0x3f6a300,12, 0x3f6a400,2, 0x3f6a600,124, 0x3f6a800,4, 0x3f6a880,18, 0x3f6a900,4, 0x3f6a980,23, 0x3f6aa00,10, 0x3f6aa2c,2, 0x3f6aa40,2, 0x3f6aa4c,3, 0x3f6aa60,2, 0x3f6aa6c,3, 0x3f6aa80,2, 0x3f6aa8c,2, 0x3f6aaa0,2, 0x3f6aaac,2, 0x3f6aac0,2, 0x3f6aacc,2, 0x3f6ab00,4, 0x3f6ab40,15, 0x3f6ab80,3, 0x3f6ab90,7, 0x3f6abb0,3, 0x3f6abc0,3, 0x3f6abd0,3, 0x3f6abe0,1, 0x3f6ac00,17, 0x3f6ae00,15, 0x3f6ae40,4, 0x3f6ae60,17, 0x3f6aec0,6, 0x3f6aee0,4, 0x3f6aef4,11, 0x3f6af24,28, 0x3f6b000,1, 0x3f6b080,1, 0x3f6b0a0,5, 0x3f6b0c0,5, 0x3f6b0e0,5, 0x3f6b100,1, 0x3f6b120,5, 0x3f6b140,5, 0x3f6b160,5, 0x3f6b180,24, 0x3f6b200,5, 0x3f6c000,20, 0x3f70000,518, 0x3f70900,45, 0x3f70a00,45, 0x3f70b00,45, 0x3f70c00,45, 0x3f70d00,45, 0x3f70e00,45, 0x3f70f00,45, 0x3f71000,45, 0x3f71800,9, 0x3f71840,364, 0x3f71e00,19, 0x3f72000,9, 0x3f72040,364, 0x3f72600,19, 0x3f72800,6, 0x3f72820,3, 0x3f72840,7, 0x3f72880,6, 0x3f728a0,3, 0x3f728c0,7, 0x3f72900,1, 0x3f72908,3, 0x3f72918,8, 0x3f72940,7, 0x3f73000,2, 0x3f73800,18, 0x3f73880,18, 0x3f73c00,4, 0x3f73c20,7, 0x3f73d00,4, 0x3f73d80,20, 0x3f73e00,1, 0x3f74000,21, 0x3f74058,3, 0x3f74100,1, 0x3f74124,1, 0x3f7412c,5, 0x3f74144,1, 0x3f7414c,6, 0x3f74184,6, 0x3f741a4,6, 0x3f741c4,1, 0x3f741cc,1, 0x3f74400,9, 0x3f74440,9, 0x3f74480,15, 0x3f744c0,15, 0x3f74500,15, 0x3f74540,15, 0x3f74580,15, 0x3f745c0,15, 0x3f74600,15, 0x3f74640,15, 0x3f74680,59, 0x3f74800,1, 0x3f74808,16, 0x3f74850,1, 0x3f74858,7, 0x3f78000,3, 0x3f78010,1, 0x3f78018,3, 0x3f7a000,4, 0x3f7a080,19, 0x3f7a100,12, 0x3f7a200,4, 0x3f7a280,19, 0x3f7a300,12, 0x3f7a400,2, 0x3f7a600,124, 0x3f7a800,4, 0x3f7a880,18, 0x3f7a900,4, 0x3f7a980,23, 0x3f7aa00,10, 0x3f7aa2c,2, 0x3f7aa40,2, 0x3f7aa4c,3, 0x3f7aa60,2, 0x3f7aa6c,3, 0x3f7aa80,2, 0x3f7aa8c,2, 0x3f7aaa0,2, 0x3f7aaac,2, 0x3f7aac0,2, 0x3f7aacc,2, 0x3f7ab00,4, 0x3f7ab40,15, 0x3f7ab80,3, 0x3f7ab90,7, 0x3f7abb0,3, 0x3f7abc0,3, 0x3f7abd0,3, 0x3f7abe0,1, 0x3f7ac00,17, 0x3f7ae00,15, 0x3f7ae40,4, 0x3f7ae60,17, 0x3f7aec0,6, 0x3f7aee0,4, 0x3f7aef4,11, 0x3f7af24,28, 0x3f7b000,1, 0x3f7b080,1, 0x3f7b0a0,5, 0x3f7b0c0,5, 0x3f7b0e0,5, 0x3f7b100,1, 0x3f7b120,5, 0x3f7b140,5, 0x3f7b160,5, 0x3f7b180,24, 0x3f7b200,5, 0x3f7c000,20, 0x3f80000,18, 0x3f80050,3, 0x3f80060,3, 0x3f80070,14, 0x3f800c0,5, 0x3f80400,13, 0x3f80440,2, 0x3f8044c,3, 0x3f80460,2, 0x3f80480,13, 0x3f804c0,2, 0x3f804cc,3, 0x3f804e0,2, 0x3f80500,1, 0x3f80508,16, 0x3f80560,2, 0x3f8056c,3, 0x3f80600,4, 0x3f80680,19, 0x3f80800,24, 0x3f80864,2, 0x3f80870,4, 0x3f80a00,27, 0x3f80a80,4, 0x3f80ac0,25, 0x3f80b40,6, 0x3f80b60,4, 0x3f80b74,11, 0x3f80ba4,8, 0x3f80c00,3, 0x3f80c10,3, 0x3f80c20,1, 0x3f80c40,11, 0x3f80c80,23, 0x3f80ce0,15, 0x3f80d20,15, 0x3f80d60,2, 0x3f80d6c,2, 0x3f80d80,1, 0x3f81000,18, 0x3f81050,3, 0x3f81060,3, 0x3f81070,14, 0x3f810c0,5, 0x3f81400,13, 0x3f81440,2, 0x3f8144c,3, 0x3f81460,2, 0x3f81480,13, 0x3f814c0,2, 0x3f814cc,3, 0x3f814e0,2, 0x3f81500,1, 0x3f81508,16, 0x3f81560,2, 0x3f8156c,3, 0x3f81600,4, 0x3f81680,19, 0x3f81800,24, 0x3f81864,2, 0x3f81870,4, 0x3f81a00,27, 0x3f81a80,4, 0x3f81ac0,25, 0x3f81b40,6, 0x3f81b60,4, 0x3f81b74,11, 0x3f81ba4,8, 0x3f81c00,3, 0x3f81c10,3, 0x3f81c20,1, 0x3f81c40,11, 0x3f81c80,23, 0x3f81ce0,15, 0x3f81d20,15, 0x3f81d60,2, 0x3f81d6c,2, 0x3f81d80,1, 0x3f82000,20, 0x3f82080,7, 0x3f820a0,1, 0x3f820b0,1, 0x3f820b8,2, 0x3f84000,14, 0x4000000,534, 0x4001000,2, 0x4001040,9, 0x4001080,7, 0x4002000,534, 0x4003000,12, 0x4003044,6, 0x4003080,8, 0x40030a4,1, 0x40030c0,7, 0x40030e0,7, 0x4003100,7, 0x4003120,7, 0x4003140,8, 0x4003164,6, 0x4003180,12, 0x4004000,534, 0x4005000,2, 0x4005040,9, 0x4005080,7, 0x4006000,534, 0x4007000,12, 0x4007044,6, 0x4007080,8, 0x40070a4,1, 0x40070c0,7, 0x40070e0,7, 0x4007100,7, 0x4007120,7, 0x4007140,8, 0x4007164,6, 0x4007180,12, 0x4008004,5, 0x4008200,27, 0x4008280,4, 0x40082c0,25, 0x4008340,6, 0x4008360,4, 0x4008374,11, 0x40083a4,5, 0x4008400,1, 0x4010000,397, 0x4010800,93, 0x4010980,6, 0x4010a00,41, 0x4010b00,2, 0x4010b20,19, 0x4010c00,25, 0x4010c80,1, 0x4010d00,28, 0x4010d80,1, 0x4011000,397, 0x4011800,93, 0x4011980,6, 0x4011a00,41, 0x4011b00,2, 0x4011b20,19, 0x4011c00,25, 0x4011c80,1, 0x4011d00,28, 0x4011d80,1, 0x4012000,7, 0x4012040,9, 0x4012080,4, 0x40120a0,5, 0x40120c0,2, 0x4014000,3, 0x4014010,6, 0x4014200,7, 0x4014220,6, 0x4014240,7, 0x4014260,6, 0x4014280,2, 0x401428c,2, 0x40142a0,2, 0x40142ac,2, 0x40142c0,7, 0x40142e0,7, 0x4014300,2, 0x401430c,2, 0x4014320,6, 0x4014340,7, 0x4014360,6, 0x4014380,6, 0x40143a0,7, 0x40143c0,6, 0x40143e0,6, 0x4014400,3, 0x4014440,12, 0x4014484,1, 0x40144c0,16, 0x4014800,7, 0x4014820,14, 0x4014880,9, 0x40148a8,12, 0x4014900,7, 0x4014920,14, 0x4014980,9, 0x40149a8,12, 0x4014a00,10, 0x4014a40,2, 0x4014a4c,3, 0x4014c00,5, 0x4014c20,1, 0x4014c28,3, 0x4020000,534, 0x4021000,2, 0x4021040,9, 0x4021080,7, 0x4022000,534, 0x4023000,12, 0x4023044,6, 0x4023080,8, 0x40230a4,1, 0x40230c0,7, 0x40230e0,7, 0x4023100,7, 0x4023120,7, 0x4023140,8, 0x4023164,6, 0x4023180,12, 0x4024000,534, 0x4025000,2, 0x4025040,9, 0x4025080,7, 0x4026000,534, 0x4027000,12, 0x4027044,6, 0x4027080,8, 0x40270a4,1, 0x40270c0,7, 0x40270e0,7, 0x4027100,7, 0x4027120,7, 0x4027140,8, 0x4027164,6, 0x4027180,12, 0x4028004,5, 0x4028200,27, 0x4028280,4, 0x40282c0,25, 0x4028340,6, 0x4028360,4, 0x4028374,11, 0x40283a4,5, 0x4028400,1, 0x4030000,397, 0x4030800,93, 0x4030980,6, 0x4030a00,41, 0x4030b00,2, 0x4030b20,19, 0x4030c00,25, 0x4030c80,1, 0x4030d00,28, 0x4030d80,1, 0x4031000,397, 0x4031800,93, 0x4031980,6, 0x4031a00,41, 0x4031b00,2, 0x4031b20,19, 0x4031c00,25, 0x4031c80,1, 0x4031d00,28, 0x4031d80,1, 0x4032000,7, 0x4032040,9, 0x4032080,4, 0x40320a0,5, 0x40320c0,2, 0x4034000,3, 0x4034010,6, 0x4034200,7, 0x4034220,6, 0x4034240,7, 0x4034260,6, 0x4034280,2, 0x403428c,2, 0x40342a0,2, 0x40342ac,2, 0x40342c0,7, 0x40342e0,7, 0x4034300,2, 0x403430c,2, 0x4034320,6, 0x4034340,7, 0x4034360,6, 0x4034380,6, 0x40343a0,7, 0x40343c0,6, 0x40343e0,6, 0x4034400,3, 0x4034440,12, 0x4034484,1, 0x40344c0,16, 0x4034800,7, 0x4034820,14, 0x4034880,9, 0x40348a8,12, 0x4034900,7, 0x4034920,14, 0x4034980,9, 0x40349a8,12, 0x4034a00,10, 0x4034a40,2, 0x4034a4c,3, 0x4034c00,5, 0x4034c20,1, 0x4034c28,3, 0x4040000,37, 0x4040100,3, 0x4040110,15, 0x4040200,37, 0x4040300,3, 0x4040310,15, 0x4040400,5, 0x4040420,5, 0x4040440,18, 0x4040800,3, 0x4040810,2, 0x4040820,3, 0x4040830,2, 0x4040840,1, 0x4041000,12, 0x4041040,12, 0x4041080,2, 0x4041100,19, 0x4041180,19, 0x4041200,26, 0x4041400,20, 0x4041480,20, 0x4041500,8, 0x4041540,4, 0x4041580,15, 0x40415c0,15, 0x4041600,9, 0x4041630,5, 0x4042000,37, 0x4042100,3, 0x4042110,15, 0x4042200,37, 0x4042300,3, 0x4042310,15, 0x4042400,5, 0x4042420,5, 0x4042440,18, 0x4042800,3, 0x4042810,2, 0x4042820,3, 0x4042830,2, 0x4042840,1, 0x4043000,12, 0x4043040,12, 0x4043080,2, 0x4043100,19, 0x4043180,19, 0x4043200,26, 0x4043400,20, 0x4043480,20, 0x4043500,8, 0x4043540,4, 0x4043580,15, 0x40435c0,15, 0x4043600,9, 0x4043630,5, 0x4044000,6, 0x4044020,1, 0x404402c,3, 0x4044040,11, 0x4044070,3, 0x4044080,2, 0x4048000,49, 0x4048100,12, 0x4048140,4, 0x4048184,1, 0x4048198,2, 0x40481a4,1, 0x40481b8,7, 0x40481e0,4, 0x4048200,20, 0x4048280,3, 0x4048290,9, 0x40482c0,6, 0x40482e0,1, 0x40482e8,7, 0x4048400,49, 0x4048500,12, 0x4048540,4, 0x4048584,1, 0x4048598,2, 0x40485a4,1, 0x40485b8,7, 0x40485e0,4, 0x4048600,20, 0x4048680,3, 0x4048690,9, 0x40486c0,6, 0x40486e0,1, 0x40486e8,7, 0x4048800,49, 0x4048900,12, 0x4048940,4, 0x4048984,1, 0x4048998,2, 0x40489a4,1, 0x40489b8,7, 0x40489e0,4, 0x4048a00,20, 0x4048a80,3, 0x4048a90,9, 0x4048ac0,6, 0x4048ae0,1, 0x4048ae8,7, 0x4048c00,49, 0x4048d00,12, 0x4048d40,4, 0x4048d84,1, 0x4048d98,2, 0x4048da4,1, 0x4048db8,7, 0x4048de0,4, 0x4048e00,20, 0x4048e80,3, 0x4048e90,9, 0x4048ec0,6, 0x4048ee0,1, 0x4048ee8,7, 0x4049000,49, 0x4049100,12, 0x4049140,4, 0x4049184,1, 0x4049198,2, 0x40491a4,1, 0x40491b8,7, 0x40491e0,4, 0x4049200,20, 0x4049280,3, 0x4049290,9, 0x40492c0,6, 0x40492e0,1, 0x40492e8,7, 0x4049400,49, 0x4049500,12, 0x4049540,4, 0x4049584,1, 0x4049598,2, 0x40495a4,1, 0x40495b8,7, 0x40495e0,4, 0x4049600,20, 0x4049680,3, 0x4049690,9, 0x40496c0,6, 0x40496e0,1, 0x40496e8,7, 0x4049800,49, 0x4049900,12, 0x4049940,4, 0x4049984,1, 0x4049998,2, 0x40499a4,1, 0x40499b8,7, 0x40499e0,4, 0x4049a00,20, 0x4049a80,3, 0x4049a90,9, 0x4049ac0,6, 0x4049ae0,1, 0x4049ae8,7, 0x404a000,20, 0x404a080,2, 0x404a100,20, 0x404a180,2, 0x404a200,4, 0x404a400,20, 0x404a480,2, 0x404a500,20, 0x404a580,2, 0x404a600,4, 0x404a800,3, 0x404a840,12, 0x404a880,12, 0x404a8c0,12, 0x404a900,12, 0x404a940,12, 0x404a980,12, 0x404a9c0,12, 0x404aa00,12, 0x404ac00,12, 0x404ac40,7, 0x404ac60,10, 0x404b004,1, 0x404b018,40, 0x404b100,7, 0x404b120,7, 0x404b140,2, 0x404b14c,2, 0x404b160,2, 0x404b16c,2, 0x404b180,18, 0x404b200,2, 0x404b220,10, 0x404b260,20, 0x404b2c0,7, 0x404b300,15, 0x404b340,9, 0x404b380,6, 0x404b3a0,4, 0x404b400,4, 0x404c000,106, 0x404c200,2, 0x404c240,9, 0x404c280,7, 0x404c400,106, 0x404c604,6, 0x404c700,15, 0x404c740,9, 0x404c780,6, 0x404c7a0,6, 0x404c800,8, 0x404c824,1, 0x404c830,15, 0x404c870,3, 0x4060000,518, 0x4060900,45, 0x4060a00,45, 0x4060b00,45, 0x4060c00,45, 0x4060d00,45, 0x4060e00,45, 0x4060f00,45, 0x4061000,45, 0x4061800,9, 0x4061840,364, 0x4061e00,19, 0x4062000,9, 0x4062040,364, 0x4062600,19, 0x4062800,6, 0x4062820,3, 0x4062840,7, 0x4062880,6, 0x40628a0,3, 0x40628c0,7, 0x4062900,1, 0x4062908,3, 0x4062918,8, 0x4062940,7, 0x4063000,2, 0x4063800,18, 0x4063880,18, 0x4063c00,4, 0x4063c20,7, 0x4063d00,4, 0x4063d80,20, 0x4063e00,1, 0x4064000,21, 0x4064058,3, 0x4064100,1, 0x4064124,1, 0x406412c,5, 0x4064144,1, 0x406414c,6, 0x4064184,6, 0x40641a4,6, 0x40641c4,1, 0x40641cc,1, 0x4064400,9, 0x4064440,9, 0x4064480,15, 0x40644c0,15, 0x4064500,15, 0x4064540,15, 0x4064580,15, 0x40645c0,15, 0x4064600,15, 0x4064640,15, 0x4064680,59, 0x4064800,1, 0x4064808,16, 0x4064850,1, 0x4064858,7, 0x4068000,3, 0x4068010,1, 0x4068018,3, 0x406a000,4, 0x406a080,19, 0x406a100,12, 0x406a200,4, 0x406a280,19, 0x406a300,12, 0x406a400,2, 0x406a600,124, 0x406a800,4, 0x406a880,18, 0x406a900,4, 0x406a980,23, 0x406aa00,10, 0x406aa2c,2, 0x406aa40,2, 0x406aa4c,3, 0x406aa60,2, 0x406aa6c,3, 0x406aa80,2, 0x406aa8c,2, 0x406aaa0,2, 0x406aaac,2, 0x406aac0,2, 0x406aacc,2, 0x406ab00,4, 0x406ab40,15, 0x406ab80,3, 0x406ab90,7, 0x406abb0,3, 0x406abc0,3, 0x406abd0,3, 0x406abe0,1, 0x406ac00,17, 0x406ae00,15, 0x406ae40,4, 0x406ae60,17, 0x406aec0,6, 0x406aee0,4, 0x406aef4,11, 0x406af24,28, 0x406b000,1, 0x406b080,1, 0x406b0a0,5, 0x406b0c0,5, 0x406b0e0,5, 0x406b100,1, 0x406b120,5, 0x406b140,5, 0x406b160,5, 0x406b180,24, 0x406b200,5, 0x406c000,20, 0x4070000,518, 0x4070900,45, 0x4070a00,45, 0x4070b00,45, 0x4070c00,45, 0x4070d00,45, 0x4070e00,45, 0x4070f00,45, 0x4071000,45, 0x4071800,9, 0x4071840,364, 0x4071e00,19, 0x4072000,9, 0x4072040,364, 0x4072600,19, 0x4072800,6, 0x4072820,3, 0x4072840,7, 0x4072880,6, 0x40728a0,3, 0x40728c0,7, 0x4072900,1, 0x4072908,3, 0x4072918,8, 0x4072940,7, 0x4073000,2, 0x4073800,18, 0x4073880,18, 0x4073c00,4, 0x4073c20,7, 0x4073d00,4, 0x4073d80,20, 0x4073e00,1, 0x4074000,21, 0x4074058,3, 0x4074100,1, 0x4074124,1, 0x407412c,5, 0x4074144,1, 0x407414c,6, 0x4074184,6, 0x40741a4,6, 0x40741c4,1, 0x40741cc,1, 0x4074400,9, 0x4074440,9, 0x4074480,15, 0x40744c0,15, 0x4074500,15, 0x4074540,15, 0x4074580,15, 0x40745c0,15, 0x4074600,15, 0x4074640,15, 0x4074680,59, 0x4074800,1, 0x4074808,16, 0x4074850,1, 0x4074858,7, 0x4078000,3, 0x4078010,1, 0x4078018,3, 0x407a000,4, 0x407a080,19, 0x407a100,12, 0x407a200,4, 0x407a280,19, 0x407a300,12, 0x407a400,2, 0x407a600,124, 0x407a800,4, 0x407a880,18, 0x407a900,4, 0x407a980,23, 0x407aa00,10, 0x407aa2c,2, 0x407aa40,2, 0x407aa4c,3, 0x407aa60,2, 0x407aa6c,3, 0x407aa80,2, 0x407aa8c,2, 0x407aaa0,2, 0x407aaac,2, 0x407aac0,2, 0x407aacc,2, 0x407ab00,4, 0x407ab40,15, 0x407ab80,3, 0x407ab90,7, 0x407abb0,3, 0x407abc0,3, 0x407abd0,3, 0x407abe0,1, 0x407ac00,17, 0x407ae00,15, 0x407ae40,4, 0x407ae60,17, 0x407aec0,6, 0x407aee0,4, 0x407aef4,11, 0x407af24,28, 0x407b000,1, 0x407b080,1, 0x407b0a0,5, 0x407b0c0,5, 0x407b0e0,5, 0x407b100,1, 0x407b120,5, 0x407b140,5, 0x407b160,5, 0x407b180,24, 0x407b200,5, 0x407c000,20, 0x4080000,18, 0x4080050,3, 0x4080060,3, 0x4080070,14, 0x40800c0,5, 0x4080400,13, 0x4080440,2, 0x408044c,3, 0x4080460,2, 0x4080480,13, 0x40804c0,2, 0x40804cc,3, 0x40804e0,2, 0x4080500,1, 0x4080508,16, 0x4080560,2, 0x408056c,3, 0x4080600,4, 0x4080680,19, 0x4080800,24, 0x4080864,2, 0x4080870,4, 0x4080a00,27, 0x4080a80,4, 0x4080ac0,25, 0x4080b40,6, 0x4080b60,4, 0x4080b74,11, 0x4080ba4,8, 0x4080c00,3, 0x4080c10,3, 0x4080c20,1, 0x4080c40,11, 0x4080c80,23, 0x4080ce0,15, 0x4080d20,15, 0x4080d60,2, 0x4080d6c,2, 0x4080d80,1, 0x4081000,18, 0x4081050,3, 0x4081060,3, 0x4081070,14, 0x40810c0,5, 0x4081400,13, 0x4081440,2, 0x408144c,3, 0x4081460,2, 0x4081480,13, 0x40814c0,2, 0x40814cc,3, 0x40814e0,2, 0x4081500,1, 0x4081508,16, 0x4081560,2, 0x408156c,3, 0x4081600,4, 0x4081680,19, 0x4081800,24, 0x4081864,2, 0x4081870,4, 0x4081a00,27, 0x4081a80,4, 0x4081ac0,25, 0x4081b40,6, 0x4081b60,4, 0x4081b74,11, 0x4081ba4,8, 0x4081c00,3, 0x4081c10,3, 0x4081c20,1, 0x4081c40,11, 0x4081c80,23, 0x4081ce0,15, 0x4081d20,15, 0x4081d60,2, 0x4081d6c,2, 0x4081d80,1, 0x4082000,20, 0x4082080,7, 0x40820a0,1, 0x40820b0,1, 0x40820b8,2, 0x4084000,14, 0x4100000,534, 0x4101000,2, 0x4101040,9, 0x4101080,7, 0x4102000,534, 0x4103000,12, 0x4103044,6, 0x4103080,8, 0x41030a4,1, 0x41030c0,7, 0x41030e0,7, 0x4103100,7, 0x4103120,7, 0x4103140,8, 0x4103164,6, 0x4103180,12, 0x4104000,534, 0x4105000,2, 0x4105040,9, 0x4105080,7, 0x4106000,534, 0x4107000,12, 0x4107044,6, 0x4107080,8, 0x41070a4,1, 0x41070c0,7, 0x41070e0,7, 0x4107100,7, 0x4107120,7, 0x4107140,8, 0x4107164,6, 0x4107180,12, 0x4108004,5, 0x4108200,27, 0x4108280,4, 0x41082c0,25, 0x4108340,6, 0x4108360,4, 0x4108374,11, 0x41083a4,5, 0x4108400,1, 0x4110000,397, 0x4110800,93, 0x4110980,6, 0x4110a00,41, 0x4110b00,2, 0x4110b20,19, 0x4110c00,25, 0x4110c80,1, 0x4110d00,28, 0x4110d80,1, 0x4111000,397, 0x4111800,93, 0x4111980,6, 0x4111a00,41, 0x4111b00,2, 0x4111b20,19, 0x4111c00,25, 0x4111c80,1, 0x4111d00,28, 0x4111d80,1, 0x4112000,7, 0x4112040,9, 0x4112080,4, 0x41120a0,5, 0x41120c0,2, 0x4114000,3, 0x4114010,6, 0x4114200,7, 0x4114220,6, 0x4114240,7, 0x4114260,6, 0x4114280,2, 0x411428c,2, 0x41142a0,2, 0x41142ac,2, 0x41142c0,7, 0x41142e0,7, 0x4114300,2, 0x411430c,2, 0x4114320,6, 0x4114340,7, 0x4114360,6, 0x4114380,6, 0x41143a0,7, 0x41143c0,6, 0x41143e0,6, 0x4114400,3, 0x4114440,12, 0x4114484,1, 0x41144c0,16, 0x4114800,7, 0x4114820,14, 0x4114880,9, 0x41148a8,12, 0x4114900,7, 0x4114920,14, 0x4114980,9, 0x41149a8,12, 0x4114a00,10, 0x4114a40,2, 0x4114a4c,3, 0x4114c00,5, 0x4114c20,1, 0x4114c28,3, 0x4120000,534, 0x4121000,2, 0x4121040,9, 0x4121080,7, 0x4122000,534, 0x4123000,12, 0x4123044,6, 0x4123080,8, 0x41230a4,1, 0x41230c0,7, 0x41230e0,7, 0x4123100,7, 0x4123120,7, 0x4123140,8, 0x4123164,6, 0x4123180,12, 0x4124000,534, 0x4125000,2, 0x4125040,9, 0x4125080,7, 0x4126000,534, 0x4127000,12, 0x4127044,6, 0x4127080,8, 0x41270a4,1, 0x41270c0,7, 0x41270e0,7, 0x4127100,7, 0x4127120,7, 0x4127140,8, 0x4127164,6, 0x4127180,12, 0x4128004,5, 0x4128200,27, 0x4128280,4, 0x41282c0,25, 0x4128340,6, 0x4128360,4, 0x4128374,11, 0x41283a4,5, 0x4128400,1, 0x4130000,397, 0x4130800,93, 0x4130980,6, 0x4130a00,41, 0x4130b00,2, 0x4130b20,19, 0x4130c00,25, 0x4130c80,1, 0x4130d00,28, 0x4130d80,1, 0x4131000,397, 0x4131800,93, 0x4131980,6, 0x4131a00,41, 0x4131b00,2, 0x4131b20,19, 0x4131c00,25, 0x4131c80,1, 0x4131d00,28, 0x4131d80,1, 0x4132000,7, 0x4132040,9, 0x4132080,4, 0x41320a0,5, 0x41320c0,2, 0x4134000,3, 0x4134010,6, 0x4134200,7, 0x4134220,6, 0x4134240,7, 0x4134260,6, 0x4134280,2, 0x413428c,2, 0x41342a0,2, 0x41342ac,2, 0x41342c0,7, 0x41342e0,7, 0x4134300,2, 0x413430c,2, 0x4134320,6, 0x4134340,7, 0x4134360,6, 0x4134380,6, 0x41343a0,7, 0x41343c0,6, 0x41343e0,6, 0x4134400,3, 0x4134440,12, 0x4134484,1, 0x41344c0,16, 0x4134800,7, 0x4134820,14, 0x4134880,9, 0x41348a8,12, 0x4134900,7, 0x4134920,14, 0x4134980,9, 0x41349a8,12, 0x4134a00,10, 0x4134a40,2, 0x4134a4c,3, 0x4134c00,5, 0x4134c20,1, 0x4134c28,3, 0x4140000,37, 0x4140100,3, 0x4140110,15, 0x4140200,37, 0x4140300,3, 0x4140310,15, 0x4140400,5, 0x4140420,5, 0x4140440,18, 0x4140800,3, 0x4140810,2, 0x4140820,3, 0x4140830,2, 0x4140840,1, 0x4141000,12, 0x4141040,12, 0x4141080,2, 0x4141100,19, 0x4141180,19, 0x4141200,26, 0x4141400,20, 0x4141480,20, 0x4141500,8, 0x4141540,4, 0x4141580,15, 0x41415c0,15, 0x4141600,9, 0x4141630,5, 0x4142000,37, 0x4142100,3, 0x4142110,15, 0x4142200,37, 0x4142300,3, 0x4142310,15, 0x4142400,5, 0x4142420,5, 0x4142440,18, 0x4142800,3, 0x4142810,2, 0x4142820,3, 0x4142830,2, 0x4142840,1, 0x4143000,12, 0x4143040,12, 0x4143080,2, 0x4143100,19, 0x4143180,19, 0x4143200,26, 0x4143400,20, 0x4143480,20, 0x4143500,8, 0x4143540,4, 0x4143580,15, 0x41435c0,15, 0x4143600,9, 0x4143630,5, 0x4144000,6, 0x4144020,1, 0x414402c,3, 0x4144040,11, 0x4144070,3, 0x4144080,2, 0x4148000,49, 0x4148100,12, 0x4148140,4, 0x4148184,1, 0x4148198,2, 0x41481a4,1, 0x41481b8,7, 0x41481e0,4, 0x4148200,20, 0x4148280,3, 0x4148290,9, 0x41482c0,6, 0x41482e0,1, 0x41482e8,7, 0x4148400,49, 0x4148500,12, 0x4148540,4, 0x4148584,1, 0x4148598,2, 0x41485a4,1, 0x41485b8,7, 0x41485e0,4, 0x4148600,20, 0x4148680,3, 0x4148690,9, 0x41486c0,6, 0x41486e0,1, 0x41486e8,7, 0x4148800,49, 0x4148900,12, 0x4148940,4, 0x4148984,1, 0x4148998,2, 0x41489a4,1, 0x41489b8,7, 0x41489e0,4, 0x4148a00,20, 0x4148a80,3, 0x4148a90,9, 0x4148ac0,6, 0x4148ae0,1, 0x4148ae8,7, 0x4148c00,49, 0x4148d00,12, 0x4148d40,4, 0x4148d84,1, 0x4148d98,2, 0x4148da4,1, 0x4148db8,7, 0x4148de0,4, 0x4148e00,20, 0x4148e80,3, 0x4148e90,9, 0x4148ec0,6, 0x4148ee0,1, 0x4148ee8,7, 0x4149000,49, 0x4149100,12, 0x4149140,4, 0x4149184,1, 0x4149198,2, 0x41491a4,1, 0x41491b8,7, 0x41491e0,4, 0x4149200,20, 0x4149280,3, 0x4149290,9, 0x41492c0,6, 0x41492e0,1, 0x41492e8,7, 0x4149400,49, 0x4149500,12, 0x4149540,4, 0x4149584,1, 0x4149598,2, 0x41495a4,1, 0x41495b8,7, 0x41495e0,4, 0x4149600,20, 0x4149680,3, 0x4149690,9, 0x41496c0,6, 0x41496e0,1, 0x41496e8,7, 0x4149800,49, 0x4149900,12, 0x4149940,4, 0x4149984,1, 0x4149998,2, 0x41499a4,1, 0x41499b8,7, 0x41499e0,4, 0x4149a00,20, 0x4149a80,3, 0x4149a90,9, 0x4149ac0,6, 0x4149ae0,1, 0x4149ae8,7, 0x414a000,20, 0x414a080,2, 0x414a100,20, 0x414a180,2, 0x414a200,4, 0x414a400,20, 0x414a480,2, 0x414a500,20, 0x414a580,2, 0x414a600,4, 0x414a800,3, 0x414a840,12, 0x414a880,12, 0x414a8c0,12, 0x414a900,12, 0x414a940,12, 0x414a980,12, 0x414a9c0,12, 0x414aa00,12, 0x414ac00,12, 0x414ac40,7, 0x414ac60,10, 0x414b004,1, 0x414b018,40, 0x414b100,7, 0x414b120,7, 0x414b140,2, 0x414b14c,2, 0x414b160,2, 0x414b16c,2, 0x414b180,18, 0x414b200,2, 0x414b220,10, 0x414b260,20, 0x414b2c0,7, 0x414b300,15, 0x414b340,9, 0x414b380,6, 0x414b3a0,4, 0x414b400,4, 0x414c000,106, 0x414c200,2, 0x414c240,9, 0x414c280,7, 0x414c400,106, 0x414c604,6, 0x414c700,15, 0x414c740,9, 0x414c780,6, 0x414c7a0,6, 0x414c800,8, 0x414c824,1, 0x414c830,15, 0x414c870,3, 0x4160000,518, 0x4160900,45, 0x4160a00,45, 0x4160b00,45, 0x4160c00,45, 0x4160d00,45, 0x4160e00,45, 0x4160f00,45, 0x4161000,45, 0x4161800,9, 0x4161840,364, 0x4161e00,19, 0x4162000,9, 0x4162040,364, 0x4162600,19, 0x4162800,6, 0x4162820,3, 0x4162840,7, 0x4162880,6, 0x41628a0,3, 0x41628c0,7, 0x4162900,1, 0x4162908,3, 0x4162918,8, 0x4162940,7, 0x4163000,2, 0x4163800,18, 0x4163880,18, 0x4163c00,4, 0x4163c20,7, 0x4163d00,4, 0x4163d80,20, 0x4163e00,1, 0x4164000,21, 0x4164058,3, 0x4164100,1, 0x4164124,1, 0x416412c,5, 0x4164144,1, 0x416414c,6, 0x4164184,6, 0x41641a4,6, 0x41641c4,1, 0x41641cc,1, 0x4164400,9, 0x4164440,9, 0x4164480,15, 0x41644c0,15, 0x4164500,15, 0x4164540,15, 0x4164580,15, 0x41645c0,15, 0x4164600,15, 0x4164640,15, 0x4164680,59, 0x4164800,1, 0x4164808,16, 0x4164850,1, 0x4164858,7, 0x4168000,3, 0x4168010,1, 0x4168018,3, 0x416a000,4, 0x416a080,19, 0x416a100,12, 0x416a200,4, 0x416a280,19, 0x416a300,12, 0x416a400,2, 0x416a600,124, 0x416a800,4, 0x416a880,18, 0x416a900,4, 0x416a980,23, 0x416aa00,10, 0x416aa2c,2, 0x416aa40,2, 0x416aa4c,3, 0x416aa60,2, 0x416aa6c,3, 0x416aa80,2, 0x416aa8c,2, 0x416aaa0,2, 0x416aaac,2, 0x416aac0,2, 0x416aacc,2, 0x416ab00,4, 0x416ab40,15, 0x416ab80,3, 0x416ab90,7, 0x416abb0,3, 0x416abc0,3, 0x416abd0,3, 0x416abe0,1, 0x416ac00,17, 0x416ae00,15, 0x416ae40,4, 0x416ae60,17, 0x416aec0,6, 0x416aee0,4, 0x416aef4,11, 0x416af24,28, 0x416b000,1, 0x416b080,1, 0x416b0a0,5, 0x416b0c0,5, 0x416b0e0,5, 0x416b100,1, 0x416b120,5, 0x416b140,5, 0x416b160,5, 0x416b180,24, 0x416b200,5, 0x416c000,20, 0x4170000,518, 0x4170900,45, 0x4170a00,45, 0x4170b00,45, 0x4170c00,45, 0x4170d00,45, 0x4170e00,45, 0x4170f00,45, 0x4171000,45, 0x4171800,9, 0x4171840,364, 0x4171e00,19, 0x4172000,9, 0x4172040,364, 0x4172600,19, 0x4172800,6, 0x4172820,3, 0x4172840,7, 0x4172880,6, 0x41728a0,3, 0x41728c0,7, 0x4172900,1, 0x4172908,3, 0x4172918,8, 0x4172940,7, 0x4173000,2, 0x4173800,18, 0x4173880,18, 0x4173c00,4, 0x4173c20,7, 0x4173d00,4, 0x4173d80,20, 0x4173e00,1, 0x4174000,21, 0x4174058,3, 0x4174100,1, 0x4174124,1, 0x417412c,5, 0x4174144,1, 0x417414c,6, 0x4174184,6, 0x41741a4,6, 0x41741c4,1, 0x41741cc,1, 0x4174400,9, 0x4174440,9, 0x4174480,15, 0x41744c0,15, 0x4174500,15, 0x4174540,15, 0x4174580,15, 0x41745c0,15, 0x4174600,15, 0x4174640,15, 0x4174680,59, 0x4174800,1, 0x4174808,16, 0x4174850,1, 0x4174858,7, 0x4178000,3, 0x4178010,1, 0x4178018,3, 0x417a000,4, 0x417a080,19, 0x417a100,12, 0x417a200,4, 0x417a280,19, 0x417a300,12, 0x417a400,2, 0x417a600,124, 0x417a800,4, 0x417a880,18, 0x417a900,4, 0x417a980,23, 0x417aa00,10, 0x417aa2c,2, 0x417aa40,2, 0x417aa4c,3, 0x417aa60,2, 0x417aa6c,3, 0x417aa80,2, 0x417aa8c,2, 0x417aaa0,2, 0x417aaac,2, 0x417aac0,2, 0x417aacc,2, 0x417ab00,4, 0x417ab40,15, 0x417ab80,3, 0x417ab90,7, 0x417abb0,3, 0x417abc0,3, 0x417abd0,3, 0x417abe0,1, 0x417ac00,17, 0x417ae00,15, 0x417ae40,4, 0x417ae60,17, 0x417aec0,6, 0x417aee0,4, 0x417aef4,11, 0x417af24,28, 0x417b000,1, 0x417b080,1, 0x417b0a0,5, 0x417b0c0,5, 0x417b0e0,5, 0x417b100,1, 0x417b120,5, 0x417b140,5, 0x417b160,5, 0x417b180,24, 0x417b200,5, 0x417c000,20, 0x4180000,18, 0x4180050,3, 0x4180060,3, 0x4180070,14, 0x41800c0,5, 0x4180400,13, 0x4180440,2, 0x418044c,3, 0x4180460,2, 0x4180480,13, 0x41804c0,2, 0x41804cc,3, 0x41804e0,2, 0x4180500,1, 0x4180508,16, 0x4180560,2, 0x418056c,3, 0x4180600,4, 0x4180680,19, 0x4180800,24, 0x4180864,2, 0x4180870,4, 0x4180a00,27, 0x4180a80,4, 0x4180ac0,25, 0x4180b40,6, 0x4180b60,4, 0x4180b74,11, 0x4180ba4,8, 0x4180c00,3, 0x4180c10,3, 0x4180c20,1, 0x4180c40,11, 0x4180c80,23, 0x4180ce0,15, 0x4180d20,15, 0x4180d60,2, 0x4180d6c,2, 0x4180d80,1, 0x4181000,18, 0x4181050,3, 0x4181060,3, 0x4181070,14, 0x41810c0,5, 0x4181400,13, 0x4181440,2, 0x418144c,3, 0x4181460,2, 0x4181480,13, 0x41814c0,2, 0x41814cc,3, 0x41814e0,2, 0x4181500,1, 0x4181508,16, 0x4181560,2, 0x418156c,3, 0x4181600,4, 0x4181680,19, 0x4181800,24, 0x4181864,2, 0x4181870,4, 0x4181a00,27, 0x4181a80,4, 0x4181ac0,25, 0x4181b40,6, 0x4181b60,4, 0x4181b74,11, 0x4181ba4,8, 0x4181c00,3, 0x4181c10,3, 0x4181c20,1, 0x4181c40,11, 0x4181c80,23, 0x4181ce0,15, 0x4181d20,15, 0x4181d60,2, 0x4181d6c,2, 0x4181d80,1, 0x4182000,20, 0x4182080,7, 0x41820a0,1, 0x41820b0,1, 0x41820b8,2, 0x4184000,14, 0x4200000,534, 0x4201000,2, 0x4201040,9, 0x4201080,7, 0x4202000,534, 0x4203000,12, 0x4203044,6, 0x4203080,8, 0x42030a4,1, 0x42030c0,7, 0x42030e0,7, 0x4203100,7, 0x4203120,7, 0x4203140,8, 0x4203164,6, 0x4203180,12, 0x4204000,534, 0x4205000,2, 0x4205040,9, 0x4205080,7, 0x4206000,534, 0x4207000,12, 0x4207044,6, 0x4207080,8, 0x42070a4,1, 0x42070c0,7, 0x42070e0,7, 0x4207100,7, 0x4207120,7, 0x4207140,8, 0x4207164,6, 0x4207180,12, 0x4208004,5, 0x4208200,27, 0x4208280,4, 0x42082c0,25, 0x4208340,6, 0x4208360,4, 0x4208374,11, 0x42083a4,5, 0x4208400,1, 0x4210000,397, 0x4210800,93, 0x4210980,6, 0x4210a00,41, 0x4210b00,2, 0x4210b20,19, 0x4210c00,25, 0x4210c80,1, 0x4210d00,28, 0x4210d80,1, 0x4211000,397, 0x4211800,93, 0x4211980,6, 0x4211a00,41, 0x4211b00,2, 0x4211b20,19, 0x4211c00,25, 0x4211c80,1, 0x4211d00,28, 0x4211d80,1, 0x4212000,7, 0x4212040,9, 0x4212080,4, 0x42120a0,5, 0x42120c0,2, 0x4214000,3, 0x4214010,6, 0x4214200,7, 0x4214220,6, 0x4214240,7, 0x4214260,6, 0x4214280,2, 0x421428c,2, 0x42142a0,2, 0x42142ac,2, 0x42142c0,7, 0x42142e0,7, 0x4214300,2, 0x421430c,2, 0x4214320,6, 0x4214340,7, 0x4214360,6, 0x4214380,6, 0x42143a0,7, 0x42143c0,6, 0x42143e0,6, 0x4214400,3, 0x4214440,12, 0x4214484,1, 0x42144c0,16, 0x4214800,7, 0x4214820,14, 0x4214880,9, 0x42148a8,12, 0x4214900,7, 0x4214920,14, 0x4214980,9, 0x42149a8,12, 0x4214a00,10, 0x4214a40,2, 0x4214a4c,3, 0x4214c00,5, 0x4214c20,1, 0x4214c28,3, 0x4220000,534, 0x4221000,2, 0x4221040,9, 0x4221080,7, 0x4222000,534, 0x4223000,12, 0x4223044,6, 0x4223080,8, 0x42230a4,1, 0x42230c0,7, 0x42230e0,7, 0x4223100,7, 0x4223120,7, 0x4223140,8, 0x4223164,6, 0x4223180,12, 0x4224000,534, 0x4225000,2, 0x4225040,9, 0x4225080,7, 0x4226000,534, 0x4227000,12, 0x4227044,6, 0x4227080,8, 0x42270a4,1, 0x42270c0,7, 0x42270e0,7, 0x4227100,7, 0x4227120,7, 0x4227140,8, 0x4227164,6, 0x4227180,12, 0x4228004,5, 0x4228200,27, 0x4228280,4, 0x42282c0,25, 0x4228340,6, 0x4228360,4, 0x4228374,11, 0x42283a4,5, 0x4228400,1, 0x4230000,397, 0x4230800,93, 0x4230980,6, 0x4230a00,41, 0x4230b00,2, 0x4230b20,19, 0x4230c00,25, 0x4230c80,1, 0x4230d00,28, 0x4230d80,1, 0x4231000,397, 0x4231800,93, 0x4231980,6, 0x4231a00,41, 0x4231b00,2, 0x4231b20,19, 0x4231c00,25, 0x4231c80,1, 0x4231d00,28, 0x4231d80,1, 0x4232000,7, 0x4232040,9, 0x4232080,4, 0x42320a0,5, 0x42320c0,2, 0x4234000,3, 0x4234010,6, 0x4234200,7, 0x4234220,6, 0x4234240,7, 0x4234260,6, 0x4234280,2, 0x423428c,2, 0x42342a0,2, 0x42342ac,2, 0x42342c0,7, 0x42342e0,7, 0x4234300,2, 0x423430c,2, 0x4234320,6, 0x4234340,7, 0x4234360,6, 0x4234380,6, 0x42343a0,7, 0x42343c0,6, 0x42343e0,6, 0x4234400,3, 0x4234440,12, 0x4234484,1, 0x42344c0,16, 0x4234800,7, 0x4234820,14, 0x4234880,9, 0x42348a8,12, 0x4234900,7, 0x4234920,14, 0x4234980,9, 0x42349a8,12, 0x4234a00,10, 0x4234a40,2, 0x4234a4c,3, 0x4234c00,5, 0x4234c20,1, 0x4234c28,3, 0x4240000,37, 0x4240100,3, 0x4240110,15, 0x4240200,37, 0x4240300,3, 0x4240310,15, 0x4240400,5, 0x4240420,5, 0x4240440,18, 0x4240800,3, 0x4240810,2, 0x4240820,3, 0x4240830,2, 0x4240840,1, 0x4241000,12, 0x4241040,12, 0x4241080,2, 0x4241100,19, 0x4241180,19, 0x4241200,26, 0x4241400,20, 0x4241480,20, 0x4241500,8, 0x4241540,4, 0x4241580,15, 0x42415c0,15, 0x4241600,9, 0x4241630,5, 0x4242000,37, 0x4242100,3, 0x4242110,15, 0x4242200,37, 0x4242300,3, 0x4242310,15, 0x4242400,5, 0x4242420,5, 0x4242440,18, 0x4242800,3, 0x4242810,2, 0x4242820,3, 0x4242830,2, 0x4242840,1, 0x4243000,12, 0x4243040,12, 0x4243080,2, 0x4243100,19, 0x4243180,19, 0x4243200,26, 0x4243400,20, 0x4243480,20, 0x4243500,8, 0x4243540,4, 0x4243580,15, 0x42435c0,15, 0x4243600,9, 0x4243630,5, 0x4244000,6, 0x4244020,1, 0x424402c,3, 0x4244040,11, 0x4244070,3, 0x4244080,2, 0x4248000,49, 0x4248100,12, 0x4248140,4, 0x4248184,1, 0x4248198,2, 0x42481a4,1, 0x42481b8,7, 0x42481e0,4, 0x4248200,20, 0x4248280,3, 0x4248290,9, 0x42482c0,6, 0x42482e0,1, 0x42482e8,7, 0x4248400,49, 0x4248500,12, 0x4248540,4, 0x4248584,1, 0x4248598,2, 0x42485a4,1, 0x42485b8,7, 0x42485e0,4, 0x4248600,20, 0x4248680,3, 0x4248690,9, 0x42486c0,6, 0x42486e0,1, 0x42486e8,7, 0x4248800,49, 0x4248900,12, 0x4248940,4, 0x4248984,1, 0x4248998,2, 0x42489a4,1, 0x42489b8,7, 0x42489e0,4, 0x4248a00,20, 0x4248a80,3, 0x4248a90,9, 0x4248ac0,6, 0x4248ae0,1, 0x4248ae8,7, 0x4248c00,49, 0x4248d00,12, 0x4248d40,4, 0x4248d84,1, 0x4248d98,2, 0x4248da4,1, 0x4248db8,7, 0x4248de0,4, 0x4248e00,20, 0x4248e80,3, 0x4248e90,9, 0x4248ec0,6, 0x4248ee0,1, 0x4248ee8,7, 0x4249000,49, 0x4249100,12, 0x4249140,4, 0x4249184,1, 0x4249198,2, 0x42491a4,1, 0x42491b8,7, 0x42491e0,4, 0x4249200,20, 0x4249280,3, 0x4249290,9, 0x42492c0,6, 0x42492e0,1, 0x42492e8,7, 0x4249400,49, 0x4249500,12, 0x4249540,4, 0x4249584,1, 0x4249598,2, 0x42495a4,1, 0x42495b8,7, 0x42495e0,4, 0x4249600,20, 0x4249680,3, 0x4249690,9, 0x42496c0,6, 0x42496e0,1, 0x42496e8,7, 0x4249800,49, 0x4249900,12, 0x4249940,4, 0x4249984,1, 0x4249998,2, 0x42499a4,1, 0x42499b8,7, 0x42499e0,4, 0x4249a00,20, 0x4249a80,3, 0x4249a90,9, 0x4249ac0,6, 0x4249ae0,1, 0x4249ae8,7, 0x424a000,20, 0x424a080,2, 0x424a100,20, 0x424a180,2, 0x424a200,4, 0x424a400,20, 0x424a480,2, 0x424a500,20, 0x424a580,2, 0x424a600,4, 0x424a800,3, 0x424a840,12, 0x424a880,12, 0x424a8c0,12, 0x424a900,12, 0x424a940,12, 0x424a980,12, 0x424a9c0,12, 0x424aa00,12, 0x424ac00,12, 0x424ac40,7, 0x424ac60,10, 0x424b004,1, 0x424b018,40, 0x424b100,7, 0x424b120,7, 0x424b140,2, 0x424b14c,2, 0x424b160,2, 0x424b16c,2, 0x424b180,18, 0x424b200,2, 0x424b220,10, 0x424b260,20, 0x424b2c0,7, 0x424b300,15, 0x424b340,9, 0x424b380,6, 0x424b3a0,4, 0x424b400,4, 0x424c000,106, 0x424c200,2, 0x424c240,9, 0x424c280,7, 0x424c400,106, 0x424c604,6, 0x424c700,15, 0x424c740,9, 0x424c780,6, 0x424c7a0,6, 0x424c800,8, 0x424c824,1, 0x424c830,15, 0x424c870,3, 0x4260000,518, 0x4260900,45, 0x4260a00,45, 0x4260b00,45, 0x4260c00,45, 0x4260d00,45, 0x4260e00,45, 0x4260f00,45, 0x4261000,45, 0x4261800,9, 0x4261840,364, 0x4261e00,19, 0x4262000,9, 0x4262040,364, 0x4262600,19, 0x4262800,6, 0x4262820,3, 0x4262840,7, 0x4262880,6, 0x42628a0,3, 0x42628c0,7, 0x4262900,1, 0x4262908,3, 0x4262918,8, 0x4262940,7, 0x4263000,2, 0x4263800,18, 0x4263880,18, 0x4263c00,4, 0x4263c20,7, 0x4263d00,4, 0x4263d80,20, 0x4263e00,1, 0x4264000,21, 0x4264058,3, 0x4264100,1, 0x4264124,1, 0x426412c,5, 0x4264144,1, 0x426414c,6, 0x4264184,6, 0x42641a4,6, 0x42641c4,1, 0x42641cc,1, 0x4264400,9, 0x4264440,9, 0x4264480,15, 0x42644c0,15, 0x4264500,15, 0x4264540,15, 0x4264580,15, 0x42645c0,15, 0x4264600,15, 0x4264640,15, 0x4264680,59, 0x4264800,1, 0x4264808,16, 0x4264850,1, 0x4264858,7, 0x4268000,3, 0x4268010,1, 0x4268018,3, 0x426a000,4, 0x426a080,19, 0x426a100,12, 0x426a200,4, 0x426a280,19, 0x426a300,12, 0x426a400,2, 0x426a600,124, 0x426a800,4, 0x426a880,18, 0x426a900,4, 0x426a980,23, 0x426aa00,10, 0x426aa2c,2, 0x426aa40,2, 0x426aa4c,3, 0x426aa60,2, 0x426aa6c,3, 0x426aa80,2, 0x426aa8c,2, 0x426aaa0,2, 0x426aaac,2, 0x426aac0,2, 0x426aacc,2, 0x426ab00,4, 0x426ab40,15, 0x426ab80,3, 0x426ab90,7, 0x426abb0,3, 0x426abc0,3, 0x426abd0,3, 0x426abe0,1, 0x426ac00,17, 0x426ae00,15, 0x426ae40,4, 0x426ae60,17, 0x426aec0,6, 0x426aee0,4, 0x426aef4,11, 0x426af24,28, 0x426b000,1, 0x426b080,1, 0x426b0a0,5, 0x426b0c0,5, 0x426b0e0,5, 0x426b100,1, 0x426b120,5, 0x426b140,5, 0x426b160,5, 0x426b180,24, 0x426b200,5, 0x426c000,20, 0x4270000,518, 0x4270900,45, 0x4270a00,45, 0x4270b00,45, 0x4270c00,45, 0x4270d00,45, 0x4270e00,45, 0x4270f00,45, 0x4271000,45, 0x4271800,9, 0x4271840,364, 0x4271e00,19, 0x4272000,9, 0x4272040,364, 0x4272600,19, 0x4272800,6, 0x4272820,3, 0x4272840,7, 0x4272880,6, 0x42728a0,3, 0x42728c0,7, 0x4272900,1, 0x4272908,3, 0x4272918,8, 0x4272940,7, 0x4273000,2, 0x4273800,18, 0x4273880,18, 0x4273c00,4, 0x4273c20,7, 0x4273d00,4, 0x4273d80,20, 0x4273e00,1, 0x4274000,21, 0x4274058,3, 0x4274100,1, 0x4274124,1, 0x427412c,5, 0x4274144,1, 0x427414c,6, 0x4274184,6, 0x42741a4,6, 0x42741c4,1, 0x42741cc,1, 0x4274400,9, 0x4274440,9, 0x4274480,15, 0x42744c0,15, 0x4274500,15, 0x4274540,15, 0x4274580,15, 0x42745c0,15, 0x4274600,15, 0x4274640,15, 0x4274680,59, 0x4274800,1, 0x4274808,16, 0x4274850,1, 0x4274858,7, 0x4278000,3, 0x4278010,1, 0x4278018,3, 0x427a000,4, 0x427a080,19, 0x427a100,12, 0x427a200,4, 0x427a280,19, 0x427a300,12, 0x427a400,2, 0x427a600,124, 0x427a800,4, 0x427a880,18, 0x427a900,4, 0x427a980,23, 0x427aa00,10, 0x427aa2c,2, 0x427aa40,2, 0x427aa4c,3, 0x427aa60,2, 0x427aa6c,3, 0x427aa80,2, 0x427aa8c,2, 0x427aaa0,2, 0x427aaac,2, 0x427aac0,2, 0x427aacc,2, 0x427ab00,4, 0x427ab40,15, 0x427ab80,3, 0x427ab90,7, 0x427abb0,3, 0x427abc0,3, 0x427abd0,3, 0x427abe0,1, 0x427ac00,17, 0x427ae00,15, 0x427ae40,4, 0x427ae60,17, 0x427aec0,6, 0x427aee0,4, 0x427aef4,11, 0x427af24,28, 0x427b000,1, 0x427b080,1, 0x427b0a0,5, 0x427b0c0,5, 0x427b0e0,5, 0x427b100,1, 0x427b120,5, 0x427b140,5, 0x427b160,5, 0x427b180,24, 0x427b200,5, 0x427c000,20, 0x4280000,18, 0x4280050,3, 0x4280060,3, 0x4280070,14, 0x42800c0,5, 0x4280400,13, 0x4280440,2, 0x428044c,3, 0x4280460,2, 0x4280480,13, 0x42804c0,2, 0x42804cc,3, 0x42804e0,2, 0x4280500,1, 0x4280508,16, 0x4280560,2, 0x428056c,3, 0x4280600,4, 0x4280680,19, 0x4280800,24, 0x4280864,2, 0x4280870,4, 0x4280a00,27, 0x4280a80,4, 0x4280ac0,25, 0x4280b40,6, 0x4280b60,4, 0x4280b74,11, 0x4280ba4,8, 0x4280c00,3, 0x4280c10,3, 0x4280c20,1, 0x4280c40,11, 0x4280c80,23, 0x4280ce0,15, 0x4280d20,15, 0x4280d60,2, 0x4280d6c,2, 0x4280d80,1, 0x4281000,18, 0x4281050,3, 0x4281060,3, 0x4281070,14, 0x42810c0,5, 0x4281400,13, 0x4281440,2, 0x428144c,3, 0x4281460,2, 0x4281480,13, 0x42814c0,2, 0x42814cc,3, 0x42814e0,2, 0x4281500,1, 0x4281508,16, 0x4281560,2, 0x428156c,3, 0x4281600,4, 0x4281680,19, 0x4281800,24, 0x4281864,2, 0x4281870,4, 0x4281a00,27, 0x4281a80,4, 0x4281ac0,25, 0x4281b40,6, 0x4281b60,4, 0x4281b74,11, 0x4281ba4,8, 0x4281c00,3, 0x4281c10,3, 0x4281c20,1, 0x4281c40,11, 0x4281c80,23, 0x4281ce0,15, 0x4281d20,15, 0x4281d60,2, 0x4281d6c,2, 0x4281d80,1, 0x4282000,20, 0x4282080,7, 0x42820a0,1, 0x42820b0,1, 0x42820b8,2, 0x4284000,14, 0x4300000,534, 0x4301000,2, 0x4301040,9, 0x4301080,7, 0x4302000,534, 0x4303000,12, 0x4303044,6, 0x4303080,8, 0x43030a4,1, 0x43030c0,7, 0x43030e0,7, 0x4303100,7, 0x4303120,7, 0x4303140,8, 0x4303164,6, 0x4303180,12, 0x4304000,534, 0x4305000,2, 0x4305040,9, 0x4305080,7, 0x4306000,534, 0x4307000,12, 0x4307044,6, 0x4307080,8, 0x43070a4,1, 0x43070c0,7, 0x43070e0,7, 0x4307100,7, 0x4307120,7, 0x4307140,8, 0x4307164,6, 0x4307180,12, 0x4308004,5, 0x4308200,27, 0x4308280,4, 0x43082c0,25, 0x4308340,6, 0x4308360,4, 0x4308374,11, 0x43083a4,5, 0x4308400,1, 0x4310000,397, 0x4310800,93, 0x4310980,6, 0x4310a00,41, 0x4310b00,2, 0x4310b20,19, 0x4310c00,25, 0x4310c80,1, 0x4310d00,28, 0x4310d80,1, 0x4311000,397, 0x4311800,93, 0x4311980,6, 0x4311a00,41, 0x4311b00,2, 0x4311b20,19, 0x4311c00,25, 0x4311c80,1, 0x4311d00,28, 0x4311d80,1, 0x4312000,7, 0x4312040,9, 0x4312080,4, 0x43120a0,5, 0x43120c0,2, 0x4314000,3, 0x4314010,6, 0x4314200,7, 0x4314220,6, 0x4314240,7, 0x4314260,6, 0x4314280,2, 0x431428c,2, 0x43142a0,2, 0x43142ac,2, 0x43142c0,7, 0x43142e0,7, 0x4314300,2, 0x431430c,2, 0x4314320,6, 0x4314340,7, 0x4314360,6, 0x4314380,6, 0x43143a0,7, 0x43143c0,6, 0x43143e0,6, 0x4314400,3, 0x4314440,12, 0x4314484,1, 0x43144c0,16, 0x4314800,7, 0x4314820,14, 0x4314880,9, 0x43148a8,12, 0x4314900,7, 0x4314920,14, 0x4314980,9, 0x43149a8,12, 0x4314a00,10, 0x4314a40,2, 0x4314a4c,3, 0x4314c00,5, 0x4314c20,1, 0x4314c28,3, 0x4320000,534, 0x4321000,2, 0x4321040,9, 0x4321080,7, 0x4322000,534, 0x4323000,12, 0x4323044,6, 0x4323080,8, 0x43230a4,1, 0x43230c0,7, 0x43230e0,7, 0x4323100,7, 0x4323120,7, 0x4323140,8, 0x4323164,6, 0x4323180,12, 0x4324000,534, 0x4325000,2, 0x4325040,9, 0x4325080,7, 0x4326000,534, 0x4327000,12, 0x4327044,6, 0x4327080,8, 0x43270a4,1, 0x43270c0,7, 0x43270e0,7, 0x4327100,7, 0x4327120,7, 0x4327140,8, 0x4327164,6, 0x4327180,12, 0x4328004,5, 0x4328200,27, 0x4328280,4, 0x43282c0,25, 0x4328340,6, 0x4328360,4, 0x4328374,11, 0x43283a4,5, 0x4328400,1, 0x4330000,397, 0x4330800,93, 0x4330980,6, 0x4330a00,41, 0x4330b00,2, 0x4330b20,19, 0x4330c00,25, 0x4330c80,1, 0x4330d00,28, 0x4330d80,1, 0x4331000,397, 0x4331800,93, 0x4331980,6, 0x4331a00,41, 0x4331b00,2, 0x4331b20,19, 0x4331c00,25, 0x4331c80,1, 0x4331d00,28, 0x4331d80,1, 0x4332000,7, 0x4332040,9, 0x4332080,4, 0x43320a0,5, 0x43320c0,2, 0x4334000,3, 0x4334010,6, 0x4334200,7, 0x4334220,6, 0x4334240,7, 0x4334260,6, 0x4334280,2, 0x433428c,2, 0x43342a0,2, 0x43342ac,2, 0x43342c0,7, 0x43342e0,7, 0x4334300,2, 0x433430c,2, 0x4334320,6, 0x4334340,7, 0x4334360,6, 0x4334380,6, 0x43343a0,7, 0x43343c0,6, 0x43343e0,6, 0x4334400,3, 0x4334440,12, 0x4334484,1, 0x43344c0,16, 0x4334800,7, 0x4334820,14, 0x4334880,9, 0x43348a8,12, 0x4334900,7, 0x4334920,14, 0x4334980,9, 0x43349a8,12, 0x4334a00,10, 0x4334a40,2, 0x4334a4c,3, 0x4334c00,5, 0x4334c20,1, 0x4334c28,3, 0x4340000,37, 0x4340100,3, 0x4340110,15, 0x4340200,37, 0x4340300,3, 0x4340310,15, 0x4340400,5, 0x4340420,5, 0x4340440,18, 0x4340800,3, 0x4340810,2, 0x4340820,3, 0x4340830,2, 0x4340840,1, 0x4341000,12, 0x4341040,12, 0x4341080,2, 0x4341100,19, 0x4341180,19, 0x4341200,26, 0x4341400,20, 0x4341480,20, 0x4341500,8, 0x4341540,4, 0x4341580,15, 0x43415c0,15, 0x4341600,9, 0x4341630,5, 0x4342000,37, 0x4342100,3, 0x4342110,15, 0x4342200,37, 0x4342300,3, 0x4342310,15, 0x4342400,5, 0x4342420,5, 0x4342440,18, 0x4342800,3, 0x4342810,2, 0x4342820,3, 0x4342830,2, 0x4342840,1, 0x4343000,12, 0x4343040,12, 0x4343080,2, 0x4343100,19, 0x4343180,19, 0x4343200,26, 0x4343400,20, 0x4343480,20, 0x4343500,8, 0x4343540,4, 0x4343580,15, 0x43435c0,15, 0x4343600,9, 0x4343630,5, 0x4344000,6, 0x4344020,1, 0x434402c,3, 0x4344040,11, 0x4344070,3, 0x4344080,2, 0x4348000,49, 0x4348100,12, 0x4348140,4, 0x4348184,1, 0x4348198,2, 0x43481a4,1, 0x43481b8,7, 0x43481e0,4, 0x4348200,20, 0x4348280,3, 0x4348290,9, 0x43482c0,6, 0x43482e0,1, 0x43482e8,7, 0x4348400,49, 0x4348500,12, 0x4348540,4, 0x4348584,1, 0x4348598,2, 0x43485a4,1, 0x43485b8,7, 0x43485e0,4, 0x4348600,20, 0x4348680,3, 0x4348690,9, 0x43486c0,6, 0x43486e0,1, 0x43486e8,7, 0x4348800,49, 0x4348900,12, 0x4348940,4, 0x4348984,1, 0x4348998,2, 0x43489a4,1, 0x43489b8,7, 0x43489e0,4, 0x4348a00,20, 0x4348a80,3, 0x4348a90,9, 0x4348ac0,6, 0x4348ae0,1, 0x4348ae8,7, 0x4348c00,49, 0x4348d00,12, 0x4348d40,4, 0x4348d84,1, 0x4348d98,2, 0x4348da4,1, 0x4348db8,7, 0x4348de0,4, 0x4348e00,20, 0x4348e80,3, 0x4348e90,9, 0x4348ec0,6, 0x4348ee0,1, 0x4348ee8,7, 0x4349000,49, 0x4349100,12, 0x4349140,4, 0x4349184,1, 0x4349198,2, 0x43491a4,1, 0x43491b8,7, 0x43491e0,4, 0x4349200,20, 0x4349280,3, 0x4349290,9, 0x43492c0,6, 0x43492e0,1, 0x43492e8,7, 0x4349400,49, 0x4349500,12, 0x4349540,4, 0x4349584,1, 0x4349598,2, 0x43495a4,1, 0x43495b8,7, 0x43495e0,4, 0x4349600,20, 0x4349680,3, 0x4349690,9, 0x43496c0,6, 0x43496e0,1, 0x43496e8,7, 0x4349800,49, 0x4349900,12, 0x4349940,4, 0x4349984,1, 0x4349998,2, 0x43499a4,1, 0x43499b8,7, 0x43499e0,4, 0x4349a00,20, 0x4349a80,3, 0x4349a90,9, 0x4349ac0,6, 0x4349ae0,1, 0x4349ae8,7, 0x434a000,20, 0x434a080,2, 0x434a100,20, 0x434a180,2, 0x434a200,4, 0x434a400,20, 0x434a480,2, 0x434a500,20, 0x434a580,2, 0x434a600,4, 0x434a800,3, 0x434a840,12, 0x434a880,12, 0x434a8c0,12, 0x434a900,12, 0x434a940,12, 0x434a980,12, 0x434a9c0,12, 0x434aa00,12, 0x434ac00,12, 0x434ac40,7, 0x434ac60,10, 0x434b004,1, 0x434b018,40, 0x434b100,7, 0x434b120,7, 0x434b140,2, 0x434b14c,2, 0x434b160,2, 0x434b16c,2, 0x434b180,18, 0x434b200,2, 0x434b220,10, 0x434b260,20, 0x434b2c0,7, 0x434b300,15, 0x434b340,9, 0x434b380,6, 0x434b3a0,4, 0x434b400,4, 0x434c000,106, 0x434c200,2, 0x434c240,9, 0x434c280,7, 0x434c400,106, 0x434c604,6, 0x434c700,15, 0x434c740,9, 0x434c780,6, 0x434c7a0,6, 0x434c800,8, 0x434c824,1, 0x434c830,15, 0x434c870,3, 0x4360000,518, 0x4360900,45, 0x4360a00,45, 0x4360b00,45, 0x4360c00,45, 0x4360d00,45, 0x4360e00,45, 0x4360f00,45, 0x4361000,45, 0x4361800,9, 0x4361840,364, 0x4361e00,19, 0x4362000,9, 0x4362040,364, 0x4362600,19, 0x4362800,6, 0x4362820,3, 0x4362840,7, 0x4362880,6, 0x43628a0,3, 0x43628c0,7, 0x4362900,1, 0x4362908,3, 0x4362918,8, 0x4362940,7, 0x4363000,2, 0x4363800,18, 0x4363880,18, 0x4363c00,4, 0x4363c20,7, 0x4363d00,4, 0x4363d80,20, 0x4363e00,1, 0x4364000,21, 0x4364058,3, 0x4364100,1, 0x4364124,1, 0x436412c,5, 0x4364144,1, 0x436414c,6, 0x4364184,6, 0x43641a4,6, 0x43641c4,1, 0x43641cc,1, 0x4364400,9, 0x4364440,9, 0x4364480,15, 0x43644c0,15, 0x4364500,15, 0x4364540,15, 0x4364580,15, 0x43645c0,15, 0x4364600,15, 0x4364640,15, 0x4364680,59, 0x4364800,1, 0x4364808,16, 0x4364850,1, 0x4364858,7, 0x4368000,3, 0x4368010,1, 0x4368018,3, 0x436a000,4, 0x436a080,19, 0x436a100,12, 0x436a200,4, 0x436a280,19, 0x436a300,12, 0x436a400,2, 0x436a600,124, 0x436a800,4, 0x436a880,18, 0x436a900,4, 0x436a980,23, 0x436aa00,10, 0x436aa2c,2, 0x436aa40,2, 0x436aa4c,3, 0x436aa60,2, 0x436aa6c,3, 0x436aa80,2, 0x436aa8c,2, 0x436aaa0,2, 0x436aaac,2, 0x436aac0,2, 0x436aacc,2, 0x436ab00,4, 0x436ab40,15, 0x436ab80,3, 0x436ab90,7, 0x436abb0,3, 0x436abc0,3, 0x436abd0,3, 0x436abe0,1, 0x436ac00,17, 0x436ae00,15, 0x436ae40,4, 0x436ae60,17, 0x436aec0,6, 0x436aee0,4, 0x436aef4,11, 0x436af24,28, 0x436b000,1, 0x436b080,1, 0x436b0a0,5, 0x436b0c0,5, 0x436b0e0,5, 0x436b100,1, 0x436b120,5, 0x436b140,5, 0x436b160,5, 0x436b180,24, 0x436b200,5, 0x436c000,20, 0x4370000,518, 0x4370900,45, 0x4370a00,45, 0x4370b00,45, 0x4370c00,45, 0x4370d00,45, 0x4370e00,45, 0x4370f00,45, 0x4371000,45, 0x4371800,9, 0x4371840,364, 0x4371e00,19, 0x4372000,9, 0x4372040,364, 0x4372600,19, 0x4372800,6, 0x4372820,3, 0x4372840,7, 0x4372880,6, 0x43728a0,3, 0x43728c0,7, 0x4372900,1, 0x4372908,3, 0x4372918,8, 0x4372940,7, 0x4373000,2, 0x4373800,18, 0x4373880,18, 0x4373c00,4, 0x4373c20,7, 0x4373d00,4, 0x4373d80,20, 0x4373e00,1, 0x4374000,21, 0x4374058,3, 0x4374100,1, 0x4374124,1, 0x437412c,5, 0x4374144,1, 0x437414c,6, 0x4374184,6, 0x43741a4,6, 0x43741c4,1, 0x43741cc,1, 0x4374400,9, 0x4374440,9, 0x4374480,15, 0x43744c0,15, 0x4374500,15, 0x4374540,15, 0x4374580,15, 0x43745c0,15, 0x4374600,15, 0x4374640,15, 0x4374680,59, 0x4374800,1, 0x4374808,16, 0x4374850,1, 0x4374858,7, 0x4378000,3, 0x4378010,1, 0x4378018,3, 0x437a000,4, 0x437a080,19, 0x437a100,12, 0x437a200,4, 0x437a280,19, 0x437a300,12, 0x437a400,2, 0x437a600,124, 0x437a800,4, 0x437a880,18, 0x437a900,4, 0x437a980,23, 0x437aa00,10, 0x437aa2c,2, 0x437aa40,2, 0x437aa4c,3, 0x437aa60,2, 0x437aa6c,3, 0x437aa80,2, 0x437aa8c,2, 0x437aaa0,2, 0x437aaac,2, 0x437aac0,2, 0x437aacc,2, 0x437ab00,4, 0x437ab40,15, 0x437ab80,3, 0x437ab90,7, 0x437abb0,3, 0x437abc0,3, 0x437abd0,3, 0x437abe0,1, 0x437ac00,17, 0x437ae00,15, 0x437ae40,4, 0x437ae60,17, 0x437aec0,6, 0x437aee0,4, 0x437aef4,11, 0x437af24,28, 0x437b000,1, 0x437b080,1, 0x437b0a0,5, 0x437b0c0,5, 0x437b0e0,5, 0x437b100,1, 0x437b120,5, 0x437b140,5, 0x437b160,5, 0x437b180,24, 0x437b200,5, 0x437c000,20, 0x4380000,18, 0x4380050,3, 0x4380060,3, 0x4380070,14, 0x43800c0,5, 0x4380400,13, 0x4380440,2, 0x438044c,3, 0x4380460,2, 0x4380480,13, 0x43804c0,2, 0x43804cc,3, 0x43804e0,2, 0x4380500,1, 0x4380508,16, 0x4380560,2, 0x438056c,3, 0x4380600,4, 0x4380680,19, 0x4380800,24, 0x4380864,2, 0x4380870,4, 0x4380a00,27, 0x4380a80,4, 0x4380ac0,25, 0x4380b40,6, 0x4380b60,4, 0x4380b74,11, 0x4380ba4,8, 0x4380c00,3, 0x4380c10,3, 0x4380c20,1, 0x4380c40,11, 0x4380c80,23, 0x4380ce0,15, 0x4380d20,15, 0x4380d60,2, 0x4380d6c,2, 0x4380d80,1, 0x4381000,18, 0x4381050,3, 0x4381060,3, 0x4381070,14, 0x43810c0,5, 0x4381400,13, 0x4381440,2, 0x438144c,3, 0x4381460,2, 0x4381480,13, 0x43814c0,2, 0x43814cc,3, 0x43814e0,2, 0x4381500,1, 0x4381508,16, 0x4381560,2, 0x438156c,3, 0x4381600,4, 0x4381680,19, 0x4381800,24, 0x4381864,2, 0x4381870,4, 0x4381a00,27, 0x4381a80,4, 0x4381ac0,25, 0x4381b40,6, 0x4381b60,4, 0x4381b74,11, 0x4381ba4,8, 0x4381c00,3, 0x4381c10,3, 0x4381c20,1, 0x4381c40,11, 0x4381c80,23, 0x4381ce0,15, 0x4381d20,15, 0x4381d60,2, 0x4381d6c,2, 0x4381d80,1, 0x4382000,20, 0x4382080,7, 0x43820a0,1, 0x43820b0,1, 0x43820b8,2, 0x4384000,14, 0x4400000,534, 0x4401000,2, 0x4401040,9, 0x4401080,7, 0x4402000,534, 0x4403000,12, 0x4403044,6, 0x4403080,8, 0x44030a4,1, 0x44030c0,7, 0x44030e0,7, 0x4403100,7, 0x4403120,7, 0x4403140,8, 0x4403164,6, 0x4403180,12, 0x4404000,534, 0x4405000,2, 0x4405040,9, 0x4405080,7, 0x4406000,534, 0x4407000,12, 0x4407044,6, 0x4407080,8, 0x44070a4,1, 0x44070c0,7, 0x44070e0,7, 0x4407100,7, 0x4407120,7, 0x4407140,8, 0x4407164,6, 0x4407180,12, 0x4408004,5, 0x4408200,27, 0x4408280,4, 0x44082c0,25, 0x4408340,6, 0x4408360,4, 0x4408374,11, 0x44083a4,5, 0x4408400,1, 0x4410000,397, 0x4410800,93, 0x4410980,6, 0x4410a00,41, 0x4410b00,2, 0x4410b20,19, 0x4410c00,25, 0x4410c80,1, 0x4410d00,28, 0x4410d80,1, 0x4411000,397, 0x4411800,93, 0x4411980,6, 0x4411a00,41, 0x4411b00,2, 0x4411b20,19, 0x4411c00,25, 0x4411c80,1, 0x4411d00,28, 0x4411d80,1, 0x4412000,7, 0x4412040,9, 0x4412080,4, 0x44120a0,5, 0x44120c0,2, 0x4414000,3, 0x4414010,6, 0x4414200,7, 0x4414220,6, 0x4414240,7, 0x4414260,6, 0x4414280,2, 0x441428c,2, 0x44142a0,2, 0x44142ac,2, 0x44142c0,7, 0x44142e0,7, 0x4414300,2, 0x441430c,2, 0x4414320,6, 0x4414340,7, 0x4414360,6, 0x4414380,6, 0x44143a0,7, 0x44143c0,6, 0x44143e0,6, 0x4414400,3, 0x4414440,12, 0x4414484,1, 0x44144c0,16, 0x4414800,7, 0x4414820,14, 0x4414880,9, 0x44148a8,12, 0x4414900,7, 0x4414920,14, 0x4414980,9, 0x44149a8,12, 0x4414a00,10, 0x4414a40,2, 0x4414a4c,3, 0x4414c00,5, 0x4414c20,1, 0x4414c28,3, 0x4420000,534, 0x4421000,2, 0x4421040,9, 0x4421080,7, 0x4422000,534, 0x4423000,12, 0x4423044,6, 0x4423080,8, 0x44230a4,1, 0x44230c0,7, 0x44230e0,7, 0x4423100,7, 0x4423120,7, 0x4423140,8, 0x4423164,6, 0x4423180,12, 0x4424000,534, 0x4425000,2, 0x4425040,9, 0x4425080,7, 0x4426000,534, 0x4427000,12, 0x4427044,6, 0x4427080,8, 0x44270a4,1, 0x44270c0,7, 0x44270e0,7, 0x4427100,7, 0x4427120,7, 0x4427140,8, 0x4427164,6, 0x4427180,12, 0x4428004,5, 0x4428200,27, 0x4428280,4, 0x44282c0,25, 0x4428340,6, 0x4428360,4, 0x4428374,11, 0x44283a4,5, 0x4428400,1, 0x4430000,397, 0x4430800,93, 0x4430980,6, 0x4430a00,41, 0x4430b00,2, 0x4430b20,19, 0x4430c00,25, 0x4430c80,1, 0x4430d00,28, 0x4430d80,1, 0x4431000,397, 0x4431800,93, 0x4431980,6, 0x4431a00,41, 0x4431b00,2, 0x4431b20,19, 0x4431c00,25, 0x4431c80,1, 0x4431d00,28, 0x4431d80,1, 0x4432000,7, 0x4432040,9, 0x4432080,4, 0x44320a0,5, 0x44320c0,2, 0x4434000,3, 0x4434010,6, 0x4434200,7, 0x4434220,6, 0x4434240,7, 0x4434260,6, 0x4434280,2, 0x443428c,2, 0x44342a0,2, 0x44342ac,2, 0x44342c0,7, 0x44342e0,7, 0x4434300,2, 0x443430c,2, 0x4434320,6, 0x4434340,7, 0x4434360,6, 0x4434380,6, 0x44343a0,7, 0x44343c0,6, 0x44343e0,6, 0x4434400,3, 0x4434440,12, 0x4434484,1, 0x44344c0,16, 0x4434800,7, 0x4434820,14, 0x4434880,9, 0x44348a8,12, 0x4434900,7, 0x4434920,14, 0x4434980,9, 0x44349a8,12, 0x4434a00,10, 0x4434a40,2, 0x4434a4c,3, 0x4434c00,5, 0x4434c20,1, 0x4434c28,3, 0x4440000,37, 0x4440100,3, 0x4440110,15, 0x4440200,37, 0x4440300,3, 0x4440310,15, 0x4440400,5, 0x4440420,5, 0x4440440,18, 0x4440800,3, 0x4440810,2, 0x4440820,3, 0x4440830,2, 0x4440840,1, 0x4441000,12, 0x4441040,12, 0x4441080,2, 0x4441100,19, 0x4441180,19, 0x4441200,26, 0x4441400,20, 0x4441480,20, 0x4441500,8, 0x4441540,4, 0x4441580,15, 0x44415c0,15, 0x4441600,9, 0x4441630,5, 0x4442000,37, 0x4442100,3, 0x4442110,15, 0x4442200,37, 0x4442300,3, 0x4442310,15, 0x4442400,5, 0x4442420,5, 0x4442440,18, 0x4442800,3, 0x4442810,2, 0x4442820,3, 0x4442830,2, 0x4442840,1, 0x4443000,12, 0x4443040,12, 0x4443080,2, 0x4443100,19, 0x4443180,19, 0x4443200,26, 0x4443400,20, 0x4443480,20, 0x4443500,8, 0x4443540,4, 0x4443580,15, 0x44435c0,15, 0x4443600,9, 0x4443630,5, 0x4444000,6, 0x4444020,1, 0x444402c,3, 0x4444040,11, 0x4444070,3, 0x4444080,2, 0x4448000,49, 0x4448100,12, 0x4448140,4, 0x4448184,1, 0x4448198,2, 0x44481a4,1, 0x44481b8,7, 0x44481e0,4, 0x4448200,20, 0x4448280,3, 0x4448290,9, 0x44482c0,6, 0x44482e0,1, 0x44482e8,7, 0x4448400,49, 0x4448500,12, 0x4448540,4, 0x4448584,1, 0x4448598,2, 0x44485a4,1, 0x44485b8,7, 0x44485e0,4, 0x4448600,20, 0x4448680,3, 0x4448690,9, 0x44486c0,6, 0x44486e0,1, 0x44486e8,7, 0x4448800,49, 0x4448900,12, 0x4448940,4, 0x4448984,1, 0x4448998,2, 0x44489a4,1, 0x44489b8,7, 0x44489e0,4, 0x4448a00,20, 0x4448a80,3, 0x4448a90,9, 0x4448ac0,6, 0x4448ae0,1, 0x4448ae8,7, 0x4448c00,49, 0x4448d00,12, 0x4448d40,4, 0x4448d84,1, 0x4448d98,2, 0x4448da4,1, 0x4448db8,7, 0x4448de0,4, 0x4448e00,20, 0x4448e80,3, 0x4448e90,9, 0x4448ec0,6, 0x4448ee0,1, 0x4448ee8,7, 0x4449000,49, 0x4449100,12, 0x4449140,4, 0x4449184,1, 0x4449198,2, 0x44491a4,1, 0x44491b8,7, 0x44491e0,4, 0x4449200,20, 0x4449280,3, 0x4449290,9, 0x44492c0,6, 0x44492e0,1, 0x44492e8,7, 0x4449400,49, 0x4449500,12, 0x4449540,4, 0x4449584,1, 0x4449598,2, 0x44495a4,1, 0x44495b8,7, 0x44495e0,4, 0x4449600,20, 0x4449680,3, 0x4449690,9, 0x44496c0,6, 0x44496e0,1, 0x44496e8,7, 0x4449800,49, 0x4449900,12, 0x4449940,4, 0x4449984,1, 0x4449998,2, 0x44499a4,1, 0x44499b8,7, 0x44499e0,4, 0x4449a00,20, 0x4449a80,3, 0x4449a90,9, 0x4449ac0,6, 0x4449ae0,1, 0x4449ae8,7, 0x444a000,20, 0x444a080,2, 0x444a100,20, 0x444a180,2, 0x444a200,4, 0x444a400,20, 0x444a480,2, 0x444a500,20, 0x444a580,2, 0x444a600,4, 0x444a800,3, 0x444a840,12, 0x444a880,12, 0x444a8c0,12, 0x444a900,12, 0x444a940,12, 0x444a980,12, 0x444a9c0,12, 0x444aa00,12, 0x444ac00,12, 0x444ac40,7, 0x444ac60,10, 0x444b004,1, 0x444b018,40, 0x444b100,7, 0x444b120,7, 0x444b140,2, 0x444b14c,2, 0x444b160,2, 0x444b16c,2, 0x444b180,18, 0x444b200,2, 0x444b220,10, 0x444b260,20, 0x444b2c0,7, 0x444b300,15, 0x444b340,9, 0x444b380,6, 0x444b3a0,4, 0x444b400,4, 0x444c000,106, 0x444c200,2, 0x444c240,9, 0x444c280,7, 0x444c400,106, 0x444c604,6, 0x444c700,15, 0x444c740,9, 0x444c780,6, 0x444c7a0,6, 0x444c800,8, 0x444c824,1, 0x444c830,15, 0x444c870,3, 0x4460000,518, 0x4460900,45, 0x4460a00,45, 0x4460b00,45, 0x4460c00,45, 0x4460d00,45, 0x4460e00,45, 0x4460f00,45, 0x4461000,45, 0x4461800,9, 0x4461840,364, 0x4461e00,19, 0x4462000,9, 0x4462040,364, 0x4462600,19, 0x4462800,6, 0x4462820,3, 0x4462840,7, 0x4462880,6, 0x44628a0,3, 0x44628c0,7, 0x4462900,1, 0x4462908,3, 0x4462918,8, 0x4462940,7, 0x4463000,2, 0x4463800,18, 0x4463880,18, 0x4463c00,4, 0x4463c20,7, 0x4463d00,4, 0x4463d80,20, 0x4463e00,1, 0x4464000,21, 0x4464058,3, 0x4464100,1, 0x4464124,1, 0x446412c,5, 0x4464144,1, 0x446414c,6, 0x4464184,6, 0x44641a4,6, 0x44641c4,1, 0x44641cc,1, 0x4464400,9, 0x4464440,9, 0x4464480,15, 0x44644c0,15, 0x4464500,15, 0x4464540,15, 0x4464580,15, 0x44645c0,15, 0x4464600,15, 0x4464640,15, 0x4464680,59, 0x4464800,1, 0x4464808,16, 0x4464850,1, 0x4464858,7, 0x4468000,3, 0x4468010,1, 0x4468018,3, 0x446a000,4, 0x446a080,19, 0x446a100,12, 0x446a200,4, 0x446a280,19, 0x446a300,12, 0x446a400,2, 0x446a600,124, 0x446a800,4, 0x446a880,18, 0x446a900,4, 0x446a980,23, 0x446aa00,10, 0x446aa2c,2, 0x446aa40,2, 0x446aa4c,3, 0x446aa60,2, 0x446aa6c,3, 0x446aa80,2, 0x446aa8c,2, 0x446aaa0,2, 0x446aaac,2, 0x446aac0,2, 0x446aacc,2, 0x446ab00,4, 0x446ab40,15, 0x446ab80,3, 0x446ab90,7, 0x446abb0,3, 0x446abc0,3, 0x446abd0,3, 0x446abe0,1, 0x446ac00,17, 0x446ae00,15, 0x446ae40,4, 0x446ae60,17, 0x446aec0,6, 0x446aee0,4, 0x446aef4,11, 0x446af24,28, 0x446b000,1, 0x446b080,1, 0x446b0a0,5, 0x446b0c0,5, 0x446b0e0,5, 0x446b100,1, 0x446b120,5, 0x446b140,5, 0x446b160,5, 0x446b180,24, 0x446b200,5, 0x446c000,20, 0x4470000,518, 0x4470900,45, 0x4470a00,45, 0x4470b00,45, 0x4470c00,45, 0x4470d00,45, 0x4470e00,45, 0x4470f00,45, 0x4471000,45, 0x4471800,9, 0x4471840,364, 0x4471e00,19, 0x4472000,9, 0x4472040,364, 0x4472600,19, 0x4472800,6, 0x4472820,3, 0x4472840,7, 0x4472880,6, 0x44728a0,3, 0x44728c0,7, 0x4472900,1, 0x4472908,3, 0x4472918,8, 0x4472940,7, 0x4473000,2, 0x4473800,18, 0x4473880,18, 0x4473c00,4, 0x4473c20,7, 0x4473d00,4, 0x4473d80,20, 0x4473e00,1, 0x4474000,21, 0x4474058,3, 0x4474100,1, 0x4474124,1, 0x447412c,5, 0x4474144,1, 0x447414c,6, 0x4474184,6, 0x44741a4,6, 0x44741c4,1, 0x44741cc,1, 0x4474400,9, 0x4474440,9, 0x4474480,15, 0x44744c0,15, 0x4474500,15, 0x4474540,15, 0x4474580,15, 0x44745c0,15, 0x4474600,15, 0x4474640,15, 0x4474680,59, 0x4474800,1, 0x4474808,16, 0x4474850,1, 0x4474858,7, 0x4478000,3, 0x4478010,1, 0x4478018,3, 0x447a000,4, 0x447a080,19, 0x447a100,12, 0x447a200,4, 0x447a280,19, 0x447a300,12, 0x447a400,2, 0x447a600,124, 0x447a800,4, 0x447a880,18, 0x447a900,4, 0x447a980,23, 0x447aa00,10, 0x447aa2c,2, 0x447aa40,2, 0x447aa4c,3, 0x447aa60,2, 0x447aa6c,3, 0x447aa80,2, 0x447aa8c,2, 0x447aaa0,2, 0x447aaac,2, 0x447aac0,2, 0x447aacc,2, 0x447ab00,4, 0x447ab40,15, 0x447ab80,3, 0x447ab90,7, 0x447abb0,3, 0x447abc0,3, 0x447abd0,3, 0x447abe0,1, 0x447ac00,17, 0x447ae00,15, 0x447ae40,4, 0x447ae60,17, 0x447aec0,6, 0x447aee0,4, 0x447aef4,11, 0x447af24,28, 0x447b000,1, 0x447b080,1, 0x447b0a0,5, 0x447b0c0,5, 0x447b0e0,5, 0x447b100,1, 0x447b120,5, 0x447b140,5, 0x447b160,5, 0x447b180,24, 0x447b200,5, 0x447c000,20, 0x4480000,18, 0x4480050,3, 0x4480060,3, 0x4480070,14, 0x44800c0,5, 0x4480400,13, 0x4480440,2, 0x448044c,3, 0x4480460,2, 0x4480480,13, 0x44804c0,2, 0x44804cc,3, 0x44804e0,2, 0x4480500,1, 0x4480508,16, 0x4480560,2, 0x448056c,3, 0x4480600,4, 0x4480680,19, 0x4480800,24, 0x4480864,2, 0x4480870,4, 0x4480a00,27, 0x4480a80,4, 0x4480ac0,25, 0x4480b40,6, 0x4480b60,4, 0x4480b74,11, 0x4480ba4,8, 0x4480c00,3, 0x4480c10,3, 0x4480c20,1, 0x4480c40,11, 0x4480c80,23, 0x4480ce0,15, 0x4480d20,15, 0x4480d60,2, 0x4480d6c,2, 0x4480d80,1, 0x4481000,18, 0x4481050,3, 0x4481060,3, 0x4481070,14, 0x44810c0,5, 0x4481400,13, 0x4481440,2, 0x448144c,3, 0x4481460,2, 0x4481480,13, 0x44814c0,2, 0x44814cc,3, 0x44814e0,2, 0x4481500,1, 0x4481508,16, 0x4481560,2, 0x448156c,3, 0x4481600,4, 0x4481680,19, 0x4481800,24, 0x4481864,2, 0x4481870,4, 0x4481a00,27, 0x4481a80,4, 0x4481ac0,25, 0x4481b40,6, 0x4481b60,4, 0x4481b74,11, 0x4481ba4,8, 0x4481c00,3, 0x4481c10,3, 0x4481c20,1, 0x4481c40,11, 0x4481c80,23, 0x4481ce0,15, 0x4481d20,15, 0x4481d60,2, 0x4481d6c,2, 0x4481d80,1, 0x4482000,20, 0x4482080,7, 0x44820a0,1, 0x44820b0,1, 0x44820b8,2, 0x4484000,14, 0x4500000,534, 0x4501000,2, 0x4501040,9, 0x4501080,7, 0x4502000,534, 0x4503000,12, 0x4503044,6, 0x4503080,8, 0x45030a4,1, 0x45030c0,7, 0x45030e0,7, 0x4503100,7, 0x4503120,7, 0x4503140,8, 0x4503164,6, 0x4503180,12, 0x4504000,534, 0x4505000,2, 0x4505040,9, 0x4505080,7, 0x4506000,534, 0x4507000,12, 0x4507044,6, 0x4507080,8, 0x45070a4,1, 0x45070c0,7, 0x45070e0,7, 0x4507100,7, 0x4507120,7, 0x4507140,8, 0x4507164,6, 0x4507180,12, 0x4508004,5, 0x4508200,27, 0x4508280,4, 0x45082c0,25, 0x4508340,6, 0x4508360,4, 0x4508374,11, 0x45083a4,5, 0x4508400,1, 0x4510000,397, 0x4510800,93, 0x4510980,6, 0x4510a00,41, 0x4510b00,2, 0x4510b20,19, 0x4510c00,25, 0x4510c80,1, 0x4510d00,28, 0x4510d80,1, 0x4511000,397, 0x4511800,93, 0x4511980,6, 0x4511a00,41, 0x4511b00,2, 0x4511b20,19, 0x4511c00,25, 0x4511c80,1, 0x4511d00,28, 0x4511d80,1, 0x4512000,7, 0x4512040,9, 0x4512080,4, 0x45120a0,5, 0x45120c0,2, 0x4514000,3, 0x4514010,6, 0x4514200,7, 0x4514220,6, 0x4514240,7, 0x4514260,6, 0x4514280,2, 0x451428c,2, 0x45142a0,2, 0x45142ac,2, 0x45142c0,7, 0x45142e0,7, 0x4514300,2, 0x451430c,2, 0x4514320,6, 0x4514340,7, 0x4514360,6, 0x4514380,6, 0x45143a0,7, 0x45143c0,6, 0x45143e0,6, 0x4514400,3, 0x4514440,12, 0x4514484,1, 0x45144c0,16, 0x4514800,7, 0x4514820,14, 0x4514880,9, 0x45148a8,12, 0x4514900,7, 0x4514920,14, 0x4514980,9, 0x45149a8,12, 0x4514a00,10, 0x4514a40,2, 0x4514a4c,3, 0x4514c00,5, 0x4514c20,1, 0x4514c28,3, 0x4520000,534, 0x4521000,2, 0x4521040,9, 0x4521080,7, 0x4522000,534, 0x4523000,12, 0x4523044,6, 0x4523080,8, 0x45230a4,1, 0x45230c0,7, 0x45230e0,7, 0x4523100,7, 0x4523120,7, 0x4523140,8, 0x4523164,6, 0x4523180,12, 0x4524000,534, 0x4525000,2, 0x4525040,9, 0x4525080,7, 0x4526000,534, 0x4527000,12, 0x4527044,6, 0x4527080,8, 0x45270a4,1, 0x45270c0,7, 0x45270e0,7, 0x4527100,7, 0x4527120,7, 0x4527140,8, 0x4527164,6, 0x4527180,12, 0x4528004,5, 0x4528200,27, 0x4528280,4, 0x45282c0,25, 0x4528340,6, 0x4528360,4, 0x4528374,11, 0x45283a4,5, 0x4528400,1, 0x4530000,397, 0x4530800,93, 0x4530980,6, 0x4530a00,41, 0x4530b00,2, 0x4530b20,19, 0x4530c00,25, 0x4530c80,1, 0x4530d00,28, 0x4530d80,1, 0x4531000,397, 0x4531800,93, 0x4531980,6, 0x4531a00,41, 0x4531b00,2, 0x4531b20,19, 0x4531c00,25, 0x4531c80,1, 0x4531d00,28, 0x4531d80,1, 0x4532000,7, 0x4532040,9, 0x4532080,4, 0x45320a0,5, 0x45320c0,2, 0x4534000,3, 0x4534010,6, 0x4534200,7, 0x4534220,6, 0x4534240,7, 0x4534260,6, 0x4534280,2, 0x453428c,2, 0x45342a0,2, 0x45342ac,2, 0x45342c0,7, 0x45342e0,7, 0x4534300,2, 0x453430c,2, 0x4534320,6, 0x4534340,7, 0x4534360,6, 0x4534380,6, 0x45343a0,7, 0x45343c0,6, 0x45343e0,6, 0x4534400,3, 0x4534440,12, 0x4534484,1, 0x45344c0,16, 0x4534800,7, 0x4534820,14, 0x4534880,9, 0x45348a8,12, 0x4534900,7, 0x4534920,14, 0x4534980,9, 0x45349a8,12, 0x4534a00,10, 0x4534a40,2, 0x4534a4c,3, 0x4534c00,5, 0x4534c20,1, 0x4534c28,3, 0x4540000,37, 0x4540100,3, 0x4540110,15, 0x4540200,37, 0x4540300,3, 0x4540310,15, 0x4540400,5, 0x4540420,5, 0x4540440,18, 0x4540800,3, 0x4540810,2, 0x4540820,3, 0x4540830,2, 0x4540840,1, 0x4541000,12, 0x4541040,12, 0x4541080,2, 0x4541100,19, 0x4541180,19, 0x4541200,26, 0x4541400,20, 0x4541480,20, 0x4541500,8, 0x4541540,4, 0x4541580,15, 0x45415c0,15, 0x4541600,9, 0x4541630,5, 0x4542000,37, 0x4542100,3, 0x4542110,15, 0x4542200,37, 0x4542300,3, 0x4542310,15, 0x4542400,5, 0x4542420,5, 0x4542440,18, 0x4542800,3, 0x4542810,2, 0x4542820,3, 0x4542830,2, 0x4542840,1, 0x4543000,12, 0x4543040,12, 0x4543080,2, 0x4543100,19, 0x4543180,19, 0x4543200,26, 0x4543400,20, 0x4543480,20, 0x4543500,8, 0x4543540,4, 0x4543580,15, 0x45435c0,15, 0x4543600,9, 0x4543630,5, 0x4544000,6, 0x4544020,1, 0x454402c,3, 0x4544040,11, 0x4544070,3, 0x4544080,2, 0x4548000,49, 0x4548100,12, 0x4548140,4, 0x4548184,1, 0x4548198,2, 0x45481a4,1, 0x45481b8,7, 0x45481e0,4, 0x4548200,20, 0x4548280,3, 0x4548290,9, 0x45482c0,6, 0x45482e0,1, 0x45482e8,7, 0x4548400,49, 0x4548500,12, 0x4548540,4, 0x4548584,1, 0x4548598,2, 0x45485a4,1, 0x45485b8,7, 0x45485e0,4, 0x4548600,20, 0x4548680,3, 0x4548690,9, 0x45486c0,6, 0x45486e0,1, 0x45486e8,7, 0x4548800,49, 0x4548900,12, 0x4548940,4, 0x4548984,1, 0x4548998,2, 0x45489a4,1, 0x45489b8,7, 0x45489e0,4, 0x4548a00,20, 0x4548a80,3, 0x4548a90,9, 0x4548ac0,6, 0x4548ae0,1, 0x4548ae8,7, 0x4548c00,49, 0x4548d00,12, 0x4548d40,4, 0x4548d84,1, 0x4548d98,2, 0x4548da4,1, 0x4548db8,7, 0x4548de0,4, 0x4548e00,20, 0x4548e80,3, 0x4548e90,9, 0x4548ec0,6, 0x4548ee0,1, 0x4548ee8,7, 0x4549000,49, 0x4549100,12, 0x4549140,4, 0x4549184,1, 0x4549198,2, 0x45491a4,1, 0x45491b8,7, 0x45491e0,4, 0x4549200,20, 0x4549280,3, 0x4549290,9, 0x45492c0,6, 0x45492e0,1, 0x45492e8,7, 0x4549400,49, 0x4549500,12, 0x4549540,4, 0x4549584,1, 0x4549598,2, 0x45495a4,1, 0x45495b8,7, 0x45495e0,4, 0x4549600,20, 0x4549680,3, 0x4549690,9, 0x45496c0,6, 0x45496e0,1, 0x45496e8,7, 0x4549800,49, 0x4549900,12, 0x4549940,4, 0x4549984,1, 0x4549998,2, 0x45499a4,1, 0x45499b8,7, 0x45499e0,4, 0x4549a00,20, 0x4549a80,3, 0x4549a90,9, 0x4549ac0,6, 0x4549ae0,1, 0x4549ae8,7, 0x454a000,20, 0x454a080,2, 0x454a100,20, 0x454a180,2, 0x454a200,4, 0x454a400,20, 0x454a480,2, 0x454a500,20, 0x454a580,2, 0x454a600,4, 0x454a800,3, 0x454a840,12, 0x454a880,12, 0x454a8c0,12, 0x454a900,12, 0x454a940,12, 0x454a980,12, 0x454a9c0,12, 0x454aa00,12, 0x454ac00,12, 0x454ac40,7, 0x454ac60,10, 0x454b004,1, 0x454b018,40, 0x454b100,7, 0x454b120,7, 0x454b140,2, 0x454b14c,2, 0x454b160,2, 0x454b16c,2, 0x454b180,18, 0x454b200,2, 0x454b220,10, 0x454b260,20, 0x454b2c0,7, 0x454b300,15, 0x454b340,9, 0x454b380,6, 0x454b3a0,4, 0x454b400,4, 0x454c000,106, 0x454c200,2, 0x454c240,9, 0x454c280,7, 0x454c400,106, 0x454c604,6, 0x454c700,15, 0x454c740,9, 0x454c780,6, 0x454c7a0,6, 0x454c800,8, 0x454c824,1, 0x454c830,15, 0x454c870,3, 0x4560000,518, 0x4560900,45, 0x4560a00,45, 0x4560b00,45, 0x4560c00,45, 0x4560d00,45, 0x4560e00,45, 0x4560f00,45, 0x4561000,45, 0x4561800,9, 0x4561840,364, 0x4561e00,19, 0x4562000,9, 0x4562040,364, 0x4562600,19, 0x4562800,6, 0x4562820,3, 0x4562840,7, 0x4562880,6, 0x45628a0,3, 0x45628c0,7, 0x4562900,1, 0x4562908,3, 0x4562918,8, 0x4562940,7, 0x4563000,2, 0x4563800,18, 0x4563880,18, 0x4563c00,4, 0x4563c20,7, 0x4563d00,4, 0x4563d80,20, 0x4563e00,1, 0x4564000,21, 0x4564058,3, 0x4564100,1, 0x4564124,1, 0x456412c,5, 0x4564144,1, 0x456414c,6, 0x4564184,6, 0x45641a4,6, 0x45641c4,1, 0x45641cc,1, 0x4564400,9, 0x4564440,9, 0x4564480,15, 0x45644c0,15, 0x4564500,15, 0x4564540,15, 0x4564580,15, 0x45645c0,15, 0x4564600,15, 0x4564640,15, 0x4564680,59, 0x4564800,1, 0x4564808,16, 0x4564850,1, 0x4564858,7, 0x4568000,3, 0x4568010,1, 0x4568018,3, 0x456a000,4, 0x456a080,19, 0x456a100,12, 0x456a200,4, 0x456a280,19, 0x456a300,12, 0x456a400,2, 0x456a600,124, 0x456a800,4, 0x456a880,18, 0x456a900,4, 0x456a980,23, 0x456aa00,10, 0x456aa2c,2, 0x456aa40,2, 0x456aa4c,3, 0x456aa60,2, 0x456aa6c,3, 0x456aa80,2, 0x456aa8c,2, 0x456aaa0,2, 0x456aaac,2, 0x456aac0,2, 0x456aacc,2, 0x456ab00,4, 0x456ab40,15, 0x456ab80,3, 0x456ab90,7, 0x456abb0,3, 0x456abc0,3, 0x456abd0,3, 0x456abe0,1, 0x456ac00,17, 0x456ae00,15, 0x456ae40,4, 0x456ae60,17, 0x456aec0,6, 0x456aee0,4, 0x456aef4,11, 0x456af24,28, 0x456b000,1, 0x456b080,1, 0x456b0a0,5, 0x456b0c0,5, 0x456b0e0,5, 0x456b100,1, 0x456b120,5, 0x456b140,5, 0x456b160,5, 0x456b180,24, 0x456b200,5, 0x456c000,20, 0x4570000,518, 0x4570900,45, 0x4570a00,45, 0x4570b00,45, 0x4570c00,45, 0x4570d00,45, 0x4570e00,45, 0x4570f00,45, 0x4571000,45, 0x4571800,9, 0x4571840,364, 0x4571e00,19, 0x4572000,9, 0x4572040,364, 0x4572600,19, 0x4572800,6, 0x4572820,3, 0x4572840,7, 0x4572880,6, 0x45728a0,3, 0x45728c0,7, 0x4572900,1, 0x4572908,3, 0x4572918,8, 0x4572940,7, 0x4573000,2, 0x4573800,18, 0x4573880,18, 0x4573c00,4, 0x4573c20,7, 0x4573d00,4, 0x4573d80,20, 0x4573e00,1, 0x4574000,21, 0x4574058,3, 0x4574100,1, 0x4574124,1, 0x457412c,5, 0x4574144,1, 0x457414c,6, 0x4574184,6, 0x45741a4,6, 0x45741c4,1, 0x45741cc,1, 0x4574400,9, 0x4574440,9, 0x4574480,15, 0x45744c0,15, 0x4574500,15, 0x4574540,15, 0x4574580,15, 0x45745c0,15, 0x4574600,15, 0x4574640,15, 0x4574680,59, 0x4574800,1, 0x4574808,16, 0x4574850,1, 0x4574858,7, 0x4578000,3, 0x4578010,1, 0x4578018,3, 0x457a000,4, 0x457a080,19, 0x457a100,12, 0x457a200,4, 0x457a280,19, 0x457a300,12, 0x457a400,2, 0x457a600,124, 0x457a800,4, 0x457a880,18, 0x457a900,4, 0x457a980,23, 0x457aa00,10, 0x457aa2c,2, 0x457aa40,2, 0x457aa4c,3, 0x457aa60,2, 0x457aa6c,3, 0x457aa80,2, 0x457aa8c,2, 0x457aaa0,2, 0x457aaac,2, 0x457aac0,2, 0x457aacc,2, 0x457ab00,4, 0x457ab40,15, 0x457ab80,3, 0x457ab90,7, 0x457abb0,3, 0x457abc0,3, 0x457abd0,3, 0x457abe0,1, 0x457ac00,17, 0x457ae00,15, 0x457ae40,4, 0x457ae60,17, 0x457aec0,6, 0x457aee0,4, 0x457aef4,11, 0x457af24,28, 0x457b000,1, 0x457b080,1, 0x457b0a0,5, 0x457b0c0,5, 0x457b0e0,5, 0x457b100,1, 0x457b120,5, 0x457b140,5, 0x457b160,5, 0x457b180,24, 0x457b200,5, 0x457c000,20, 0x4580000,18, 0x4580050,3, 0x4580060,3, 0x4580070,14, 0x45800c0,5, 0x4580400,13, 0x4580440,2, 0x458044c,3, 0x4580460,2, 0x4580480,13, 0x45804c0,2, 0x45804cc,3, 0x45804e0,2, 0x4580500,1, 0x4580508,16, 0x4580560,2, 0x458056c,3, 0x4580600,4, 0x4580680,19, 0x4580800,24, 0x4580864,2, 0x4580870,4, 0x4580a00,27, 0x4580a80,4, 0x4580ac0,25, 0x4580b40,6, 0x4580b60,4, 0x4580b74,11, 0x4580ba4,8, 0x4580c00,3, 0x4580c10,3, 0x4580c20,1, 0x4580c40,11, 0x4580c80,23, 0x4580ce0,15, 0x4580d20,15, 0x4580d60,2, 0x4580d6c,2, 0x4580d80,1, 0x4581000,18, 0x4581050,3, 0x4581060,3, 0x4581070,14, 0x45810c0,5, 0x4581400,13, 0x4581440,2, 0x458144c,3, 0x4581460,2, 0x4581480,13, 0x45814c0,2, 0x45814cc,3, 0x45814e0,2, 0x4581500,1, 0x4581508,16, 0x4581560,2, 0x458156c,3, 0x4581600,4, 0x4581680,19, 0x4581800,24, 0x4581864,2, 0x4581870,4, 0x4581a00,27, 0x4581a80,4, 0x4581ac0,25, 0x4581b40,6, 0x4581b60,4, 0x4581b74,11, 0x4581ba4,8, 0x4581c00,3, 0x4581c10,3, 0x4581c20,1, 0x4581c40,11, 0x4581c80,23, 0x4581ce0,15, 0x4581d20,15, 0x4581d60,2, 0x4581d6c,2, 0x4581d80,1, 0x4582000,20, 0x4582080,7, 0x45820a0,1, 0x45820b0,1, 0x45820b8,2, 0x4584000,14, 0x4600000,534, 0x4601000,2, 0x4601040,9, 0x4601080,7, 0x4602000,534, 0x4603000,12, 0x4603044,6, 0x4603080,8, 0x46030a4,1, 0x46030c0,7, 0x46030e0,7, 0x4603100,7, 0x4603120,7, 0x4603140,8, 0x4603164,6, 0x4603180,12, 0x4604000,534, 0x4605000,2, 0x4605040,9, 0x4605080,7, 0x4606000,534, 0x4607000,12, 0x4607044,6, 0x4607080,8, 0x46070a4,1, 0x46070c0,7, 0x46070e0,7, 0x4607100,7, 0x4607120,7, 0x4607140,8, 0x4607164,6, 0x4607180,12, 0x4608004,5, 0x4608200,27, 0x4608280,4, 0x46082c0,25, 0x4608340,6, 0x4608360,4, 0x4608374,11, 0x46083a4,5, 0x4608400,1, 0x4610000,397, 0x4610800,93, 0x4610980,6, 0x4610a00,41, 0x4610b00,2, 0x4610b20,19, 0x4610c00,25, 0x4610c80,1, 0x4610d00,28, 0x4610d80,1, 0x4611000,397, 0x4611800,93, 0x4611980,6, 0x4611a00,41, 0x4611b00,2, 0x4611b20,19, 0x4611c00,25, 0x4611c80,1, 0x4611d00,28, 0x4611d80,1, 0x4612000,7, 0x4612040,9, 0x4612080,4, 0x46120a0,5, 0x46120c0,2, 0x4614000,3, 0x4614010,6, 0x4614200,7, 0x4614220,6, 0x4614240,7, 0x4614260,6, 0x4614280,2, 0x461428c,2, 0x46142a0,2, 0x46142ac,2, 0x46142c0,7, 0x46142e0,7, 0x4614300,2, 0x461430c,2, 0x4614320,6, 0x4614340,7, 0x4614360,6, 0x4614380,6, 0x46143a0,7, 0x46143c0,6, 0x46143e0,6, 0x4614400,3, 0x4614440,12, 0x4614484,1, 0x46144c0,16, 0x4614800,7, 0x4614820,14, 0x4614880,9, 0x46148a8,12, 0x4614900,7, 0x4614920,14, 0x4614980,9, 0x46149a8,12, 0x4614a00,10, 0x4614a40,2, 0x4614a4c,3, 0x4614c00,5, 0x4614c20,1, 0x4614c28,3, 0x4620000,534, 0x4621000,2, 0x4621040,9, 0x4621080,7, 0x4622000,534, 0x4623000,12, 0x4623044,6, 0x4623080,8, 0x46230a4,1, 0x46230c0,7, 0x46230e0,7, 0x4623100,7, 0x4623120,7, 0x4623140,8, 0x4623164,6, 0x4623180,12, 0x4624000,534, 0x4625000,2, 0x4625040,9, 0x4625080,7, 0x4626000,534, 0x4627000,12, 0x4627044,6, 0x4627080,8, 0x46270a4,1, 0x46270c0,7, 0x46270e0,7, 0x4627100,7, 0x4627120,7, 0x4627140,8, 0x4627164,6, 0x4627180,12, 0x4628004,5, 0x4628200,27, 0x4628280,4, 0x46282c0,25, 0x4628340,6, 0x4628360,4, 0x4628374,11, 0x46283a4,5, 0x4628400,1, 0x4630000,397, 0x4630800,93, 0x4630980,6, 0x4630a00,41, 0x4630b00,2, 0x4630b20,19, 0x4630c00,25, 0x4630c80,1, 0x4630d00,28, 0x4630d80,1, 0x4631000,397, 0x4631800,93, 0x4631980,6, 0x4631a00,41, 0x4631b00,2, 0x4631b20,19, 0x4631c00,25, 0x4631c80,1, 0x4631d00,28, 0x4631d80,1, 0x4632000,7, 0x4632040,9, 0x4632080,4, 0x46320a0,5, 0x46320c0,2, 0x4634000,3, 0x4634010,6, 0x4634200,7, 0x4634220,6, 0x4634240,7, 0x4634260,6, 0x4634280,2, 0x463428c,2, 0x46342a0,2, 0x46342ac,2, 0x46342c0,7, 0x46342e0,7, 0x4634300,2, 0x463430c,2, 0x4634320,6, 0x4634340,7, 0x4634360,6, 0x4634380,6, 0x46343a0,7, 0x46343c0,6, 0x46343e0,6, 0x4634400,3, 0x4634440,12, 0x4634484,1, 0x46344c0,16, 0x4634800,7, 0x4634820,14, 0x4634880,9, 0x46348a8,12, 0x4634900,7, 0x4634920,14, 0x4634980,9, 0x46349a8,12, 0x4634a00,10, 0x4634a40,2, 0x4634a4c,3, 0x4634c00,5, 0x4634c20,1, 0x4634c28,3, 0x4640000,37, 0x4640100,3, 0x4640110,15, 0x4640200,37, 0x4640300,3, 0x4640310,15, 0x4640400,5, 0x4640420,5, 0x4640440,18, 0x4640800,3, 0x4640810,2, 0x4640820,3, 0x4640830,2, 0x4640840,1, 0x4641000,12, 0x4641040,12, 0x4641080,2, 0x4641100,19, 0x4641180,19, 0x4641200,26, 0x4641400,20, 0x4641480,20, 0x4641500,8, 0x4641540,4, 0x4641580,15, 0x46415c0,15, 0x4641600,9, 0x4641630,5, 0x4642000,37, 0x4642100,3, 0x4642110,15, 0x4642200,37, 0x4642300,3, 0x4642310,15, 0x4642400,5, 0x4642420,5, 0x4642440,18, 0x4642800,3, 0x4642810,2, 0x4642820,3, 0x4642830,2, 0x4642840,1, 0x4643000,12, 0x4643040,12, 0x4643080,2, 0x4643100,19, 0x4643180,19, 0x4643200,26, 0x4643400,20, 0x4643480,20, 0x4643500,8, 0x4643540,4, 0x4643580,15, 0x46435c0,15, 0x4643600,9, 0x4643630,5, 0x4644000,6, 0x4644020,1, 0x464402c,3, 0x4644040,11, 0x4644070,3, 0x4644080,2, 0x4648000,49, 0x4648100,12, 0x4648140,4, 0x4648184,1, 0x4648198,2, 0x46481a4,1, 0x46481b8,7, 0x46481e0,4, 0x4648200,20, 0x4648280,3, 0x4648290,9, 0x46482c0,6, 0x46482e0,1, 0x46482e8,7, 0x4648400,49, 0x4648500,12, 0x4648540,4, 0x4648584,1, 0x4648598,2, 0x46485a4,1, 0x46485b8,7, 0x46485e0,4, 0x4648600,20, 0x4648680,3, 0x4648690,9, 0x46486c0,6, 0x46486e0,1, 0x46486e8,7, 0x4648800,49, 0x4648900,12, 0x4648940,4, 0x4648984,1, 0x4648998,2, 0x46489a4,1, 0x46489b8,7, 0x46489e0,4, 0x4648a00,20, 0x4648a80,3, 0x4648a90,9, 0x4648ac0,6, 0x4648ae0,1, 0x4648ae8,7, 0x4648c00,49, 0x4648d00,12, 0x4648d40,4, 0x4648d84,1, 0x4648d98,2, 0x4648da4,1, 0x4648db8,7, 0x4648de0,4, 0x4648e00,20, 0x4648e80,3, 0x4648e90,9, 0x4648ec0,6, 0x4648ee0,1, 0x4648ee8,7, 0x4649000,49, 0x4649100,12, 0x4649140,4, 0x4649184,1, 0x4649198,2, 0x46491a4,1, 0x46491b8,7, 0x46491e0,4, 0x4649200,20, 0x4649280,3, 0x4649290,9, 0x46492c0,6, 0x46492e0,1, 0x46492e8,7, 0x4649400,49, 0x4649500,12, 0x4649540,4, 0x4649584,1, 0x4649598,2, 0x46495a4,1, 0x46495b8,7, 0x46495e0,4, 0x4649600,20, 0x4649680,3, 0x4649690,9, 0x46496c0,6, 0x46496e0,1, 0x46496e8,7, 0x4649800,49, 0x4649900,12, 0x4649940,4, 0x4649984,1, 0x4649998,2, 0x46499a4,1, 0x46499b8,7, 0x46499e0,4, 0x4649a00,20, 0x4649a80,3, 0x4649a90,9, 0x4649ac0,6, 0x4649ae0,1, 0x4649ae8,7, 0x464a000,20, 0x464a080,2, 0x464a100,20, 0x464a180,2, 0x464a200,4, 0x464a400,20, 0x464a480,2, 0x464a500,20, 0x464a580,2, 0x464a600,4, 0x464a800,3, 0x464a840,12, 0x464a880,12, 0x464a8c0,12, 0x464a900,12, 0x464a940,12, 0x464a980,12, 0x464a9c0,12, 0x464aa00,12, 0x464ac00,12, 0x464ac40,7, 0x464ac60,10, 0x464b004,1, 0x464b018,40, 0x464b100,7, 0x464b120,7, 0x464b140,2, 0x464b14c,2, 0x464b160,2, 0x464b16c,2, 0x464b180,18, 0x464b200,2, 0x464b220,10, 0x464b260,20, 0x464b2c0,7, 0x464b300,15, 0x464b340,9, 0x464b380,6, 0x464b3a0,4, 0x464b400,4, 0x464c000,106, 0x464c200,2, 0x464c240,9, 0x464c280,7, 0x464c400,106, 0x464c604,6, 0x464c700,15, 0x464c740,9, 0x464c780,6, 0x464c7a0,6, 0x464c800,8, 0x464c824,1, 0x464c830,15, 0x464c870,3, 0x4660000,518, 0x4660900,45, 0x4660a00,45, 0x4660b00,45, 0x4660c00,45, 0x4660d00,45, 0x4660e00,45, 0x4660f00,45, 0x4661000,45, 0x4661800,9, 0x4661840,364, 0x4661e00,19, 0x4662000,9, 0x4662040,364, 0x4662600,19, 0x4662800,6, 0x4662820,3, 0x4662840,7, 0x4662880,6, 0x46628a0,3, 0x46628c0,7, 0x4662900,1, 0x4662908,3, 0x4662918,8, 0x4662940,7, 0x4663000,2, 0x4663800,18, 0x4663880,18, 0x4663c00,4, 0x4663c20,7, 0x4663d00,4, 0x4663d80,20, 0x4663e00,1, 0x4664000,21, 0x4664058,3, 0x4664100,1, 0x4664124,1, 0x466412c,5, 0x4664144,1, 0x466414c,6, 0x4664184,6, 0x46641a4,6, 0x46641c4,1, 0x46641cc,1, 0x4664400,9, 0x4664440,9, 0x4664480,15, 0x46644c0,15, 0x4664500,15, 0x4664540,15, 0x4664580,15, 0x46645c0,15, 0x4664600,15, 0x4664640,15, 0x4664680,59, 0x4664800,1, 0x4664808,16, 0x4664850,1, 0x4664858,7, 0x4668000,3, 0x4668010,1, 0x4668018,3, 0x466a000,4, 0x466a080,19, 0x466a100,12, 0x466a200,4, 0x466a280,19, 0x466a300,12, 0x466a400,2, 0x466a600,124, 0x466a800,4, 0x466a880,18, 0x466a900,4, 0x466a980,23, 0x466aa00,10, 0x466aa2c,2, 0x466aa40,2, 0x466aa4c,3, 0x466aa60,2, 0x466aa6c,3, 0x466aa80,2, 0x466aa8c,2, 0x466aaa0,2, 0x466aaac,2, 0x466aac0,2, 0x466aacc,2, 0x466ab00,4, 0x466ab40,15, 0x466ab80,3, 0x466ab90,7, 0x466abb0,3, 0x466abc0,3, 0x466abd0,3, 0x466abe0,1, 0x466ac00,17, 0x466ae00,15, 0x466ae40,4, 0x466ae60,17, 0x466aec0,6, 0x466aee0,4, 0x466aef4,11, 0x466af24,28, 0x466b000,1, 0x466b080,1, 0x466b0a0,5, 0x466b0c0,5, 0x466b0e0,5, 0x466b100,1, 0x466b120,5, 0x466b140,5, 0x466b160,5, 0x466b180,24, 0x466b200,5, 0x466c000,20, 0x4670000,518, 0x4670900,45, 0x4670a00,45, 0x4670b00,45, 0x4670c00,45, 0x4670d00,45, 0x4670e00,45, 0x4670f00,45, 0x4671000,45, 0x4671800,9, 0x4671840,364, 0x4671e00,19, 0x4672000,9, 0x4672040,364, 0x4672600,19, 0x4672800,6, 0x4672820,3, 0x4672840,7, 0x4672880,6, 0x46728a0,3, 0x46728c0,7, 0x4672900,1, 0x4672908,3, 0x4672918,8, 0x4672940,7, 0x4673000,2, 0x4673800,18, 0x4673880,18, 0x4673c00,4, 0x4673c20,7, 0x4673d00,4, 0x4673d80,20, 0x4673e00,1, 0x4674000,21, 0x4674058,3, 0x4674100,1, 0x4674124,1, 0x467412c,5, 0x4674144,1, 0x467414c,6, 0x4674184,6, 0x46741a4,6, 0x46741c4,1, 0x46741cc,1, 0x4674400,9, 0x4674440,9, 0x4674480,15, 0x46744c0,15, 0x4674500,15, 0x4674540,15, 0x4674580,15, 0x46745c0,15, 0x4674600,15, 0x4674640,15, 0x4674680,59, 0x4674800,1, 0x4674808,16, 0x4674850,1, 0x4674858,7, 0x4678000,3, 0x4678010,1, 0x4678018,3, 0x467a000,4, 0x467a080,19, 0x467a100,12, 0x467a200,4, 0x467a280,19, 0x467a300,12, 0x467a400,2, 0x467a600,124, 0x467a800,4, 0x467a880,18, 0x467a900,4, 0x467a980,23, 0x467aa00,10, 0x467aa2c,2, 0x467aa40,2, 0x467aa4c,3, 0x467aa60,2, 0x467aa6c,3, 0x467aa80,2, 0x467aa8c,2, 0x467aaa0,2, 0x467aaac,2, 0x467aac0,2, 0x467aacc,2, 0x467ab00,4, 0x467ab40,15, 0x467ab80,3, 0x467ab90,7, 0x467abb0,3, 0x467abc0,3, 0x467abd0,3, 0x467abe0,1, 0x467ac00,17, 0x467ae00,15, 0x467ae40,4, 0x467ae60,17, 0x467aec0,6, 0x467aee0,4, 0x467aef4,11, 0x467af24,28, 0x467b000,1, 0x467b080,1, 0x467b0a0,5, 0x467b0c0,5, 0x467b0e0,5, 0x467b100,1, 0x467b120,5, 0x467b140,5, 0x467b160,5, 0x467b180,24, 0x467b200,5, 0x467c000,20, 0x4680000,18, 0x4680050,3, 0x4680060,3, 0x4680070,14, 0x46800c0,5, 0x4680400,13, 0x4680440,2, 0x468044c,3, 0x4680460,2, 0x4680480,13, 0x46804c0,2, 0x46804cc,3, 0x46804e0,2, 0x4680500,1, 0x4680508,16, 0x4680560,2, 0x468056c,3, 0x4680600,4, 0x4680680,19, 0x4680800,24, 0x4680864,2, 0x4680870,4, 0x4680a00,27, 0x4680a80,4, 0x4680ac0,25, 0x4680b40,6, 0x4680b60,4, 0x4680b74,11, 0x4680ba4,8, 0x4680c00,3, 0x4680c10,3, 0x4680c20,1, 0x4680c40,11, 0x4680c80,23, 0x4680ce0,15, 0x4680d20,15, 0x4680d60,2, 0x4680d6c,2, 0x4680d80,1, 0x4681000,18, 0x4681050,3, 0x4681060,3, 0x4681070,14, 0x46810c0,5, 0x4681400,13, 0x4681440,2, 0x468144c,3, 0x4681460,2, 0x4681480,13, 0x46814c0,2, 0x46814cc,3, 0x46814e0,2, 0x4681500,1, 0x4681508,16, 0x4681560,2, 0x468156c,3, 0x4681600,4, 0x4681680,19, 0x4681800,24, 0x4681864,2, 0x4681870,4, 0x4681a00,27, 0x4681a80,4, 0x4681ac0,25, 0x4681b40,6, 0x4681b60,4, 0x4681b74,11, 0x4681ba4,8, 0x4681c00,3, 0x4681c10,3, 0x4681c20,1, 0x4681c40,11, 0x4681c80,23, 0x4681ce0,15, 0x4681d20,15, 0x4681d60,2, 0x4681d6c,2, 0x4681d80,1, 0x4682000,20, 0x4682080,7, 0x46820a0,1, 0x46820b0,1, 0x46820b8,2, 0x4684000,14, 0x4700000,534, 0x4701000,2, 0x4701040,9, 0x4701080,7, 0x4702000,534, 0x4703000,12, 0x4703044,6, 0x4703080,8, 0x47030a4,1, 0x47030c0,7, 0x47030e0,7, 0x4703100,7, 0x4703120,7, 0x4703140,8, 0x4703164,6, 0x4703180,12, 0x4704000,534, 0x4705000,2, 0x4705040,9, 0x4705080,7, 0x4706000,534, 0x4707000,12, 0x4707044,6, 0x4707080,8, 0x47070a4,1, 0x47070c0,7, 0x47070e0,7, 0x4707100,7, 0x4707120,7, 0x4707140,8, 0x4707164,6, 0x4707180,12, 0x4708004,5, 0x4708200,27, 0x4708280,4, 0x47082c0,25, 0x4708340,6, 0x4708360,4, 0x4708374,11, 0x47083a4,5, 0x4708400,1, 0x4710000,397, 0x4710800,93, 0x4710980,6, 0x4710a00,41, 0x4710b00,2, 0x4710b20,19, 0x4710c00,25, 0x4710c80,1, 0x4710d00,28, 0x4710d80,1, 0x4711000,397, 0x4711800,93, 0x4711980,6, 0x4711a00,41, 0x4711b00,2, 0x4711b20,19, 0x4711c00,25, 0x4711c80,1, 0x4711d00,28, 0x4711d80,1, 0x4712000,7, 0x4712040,9, 0x4712080,4, 0x47120a0,5, 0x47120c0,2, 0x4714000,3, 0x4714010,6, 0x4714200,7, 0x4714220,6, 0x4714240,7, 0x4714260,6, 0x4714280,2, 0x471428c,2, 0x47142a0,2, 0x47142ac,2, 0x47142c0,7, 0x47142e0,7, 0x4714300,2, 0x471430c,2, 0x4714320,6, 0x4714340,7, 0x4714360,6, 0x4714380,6, 0x47143a0,7, 0x47143c0,6, 0x47143e0,6, 0x4714400,3, 0x4714440,12, 0x4714484,1, 0x47144c0,16, 0x4714800,7, 0x4714820,14, 0x4714880,9, 0x47148a8,12, 0x4714900,7, 0x4714920,14, 0x4714980,9, 0x47149a8,12, 0x4714a00,10, 0x4714a40,2, 0x4714a4c,3, 0x4714c00,5, 0x4714c20,1, 0x4714c28,3, 0x4720000,534, 0x4721000,2, 0x4721040,9, 0x4721080,7, 0x4722000,534, 0x4723000,12, 0x4723044,6, 0x4723080,8, 0x47230a4,1, 0x47230c0,7, 0x47230e0,7, 0x4723100,7, 0x4723120,7, 0x4723140,8, 0x4723164,6, 0x4723180,12, 0x4724000,534, 0x4725000,2, 0x4725040,9, 0x4725080,7, 0x4726000,534, 0x4727000,12, 0x4727044,6, 0x4727080,8, 0x47270a4,1, 0x47270c0,7, 0x47270e0,7, 0x4727100,7, 0x4727120,7, 0x4727140,8, 0x4727164,6, 0x4727180,12, 0x4728004,5, 0x4728200,27, 0x4728280,4, 0x47282c0,25, 0x4728340,6, 0x4728360,4, 0x4728374,11, 0x47283a4,5, 0x4728400,1, 0x4730000,397, 0x4730800,93, 0x4730980,6, 0x4730a00,41, 0x4730b00,2, 0x4730b20,19, 0x4730c00,25, 0x4730c80,1, 0x4730d00,28, 0x4730d80,1, 0x4731000,397, 0x4731800,93, 0x4731980,6, 0x4731a00,41, 0x4731b00,2, 0x4731b20,19, 0x4731c00,25, 0x4731c80,1, 0x4731d00,28, 0x4731d80,1, 0x4732000,7, 0x4732040,9, 0x4732080,4, 0x47320a0,5, 0x47320c0,2, 0x4734000,3, 0x4734010,6, 0x4734200,7, 0x4734220,6, 0x4734240,7, 0x4734260,6, 0x4734280,2, 0x473428c,2, 0x47342a0,2, 0x47342ac,2, 0x47342c0,7, 0x47342e0,7, 0x4734300,2, 0x473430c,2, 0x4734320,6, 0x4734340,7, 0x4734360,6, 0x4734380,6, 0x47343a0,7, 0x47343c0,6, 0x47343e0,6, 0x4734400,3, 0x4734440,12, 0x4734484,1, 0x47344c0,16, 0x4734800,7, 0x4734820,14, 0x4734880,9, 0x47348a8,12, 0x4734900,7, 0x4734920,14, 0x4734980,9, 0x47349a8,12, 0x4734a00,10, 0x4734a40,2, 0x4734a4c,3, 0x4734c00,5, 0x4734c20,1, 0x4734c28,3, 0x4740000,37, 0x4740100,3, 0x4740110,15, 0x4740200,37, 0x4740300,3, 0x4740310,15, 0x4740400,5, 0x4740420,5, 0x4740440,18, 0x4740800,3, 0x4740810,2, 0x4740820,3, 0x4740830,2, 0x4740840,1, 0x4741000,12, 0x4741040,12, 0x4741080,2, 0x4741100,19, 0x4741180,19, 0x4741200,26, 0x4741400,20, 0x4741480,20, 0x4741500,8, 0x4741540,4, 0x4741580,15, 0x47415c0,15, 0x4741600,9, 0x4741630,5, 0x4742000,37, 0x4742100,3, 0x4742110,15, 0x4742200,37, 0x4742300,3, 0x4742310,15, 0x4742400,5, 0x4742420,5, 0x4742440,18, 0x4742800,3, 0x4742810,2, 0x4742820,3, 0x4742830,2, 0x4742840,1, 0x4743000,12, 0x4743040,12, 0x4743080,2, 0x4743100,19, 0x4743180,19, 0x4743200,26, 0x4743400,20, 0x4743480,20, 0x4743500,8, 0x4743540,4, 0x4743580,15, 0x47435c0,15, 0x4743600,9, 0x4743630,5, 0x4744000,6, 0x4744020,1, 0x474402c,3, 0x4744040,11, 0x4744070,3, 0x4744080,2, 0x4748000,49, 0x4748100,12, 0x4748140,4, 0x4748184,1, 0x4748198,2, 0x47481a4,1, 0x47481b8,7, 0x47481e0,4, 0x4748200,20, 0x4748280,3, 0x4748290,9, 0x47482c0,6, 0x47482e0,1, 0x47482e8,7, 0x4748400,49, 0x4748500,12, 0x4748540,4, 0x4748584,1, 0x4748598,2, 0x47485a4,1, 0x47485b8,7, 0x47485e0,4, 0x4748600,20, 0x4748680,3, 0x4748690,9, 0x47486c0,6, 0x47486e0,1, 0x47486e8,7, 0x4748800,49, 0x4748900,12, 0x4748940,4, 0x4748984,1, 0x4748998,2, 0x47489a4,1, 0x47489b8,7, 0x47489e0,4, 0x4748a00,20, 0x4748a80,3, 0x4748a90,9, 0x4748ac0,6, 0x4748ae0,1, 0x4748ae8,7, 0x4748c00,49, 0x4748d00,12, 0x4748d40,4, 0x4748d84,1, 0x4748d98,2, 0x4748da4,1, 0x4748db8,7, 0x4748de0,4, 0x4748e00,20, 0x4748e80,3, 0x4748e90,9, 0x4748ec0,6, 0x4748ee0,1, 0x4748ee8,7, 0x4749000,49, 0x4749100,12, 0x4749140,4, 0x4749184,1, 0x4749198,2, 0x47491a4,1, 0x47491b8,7, 0x47491e0,4, 0x4749200,20, 0x4749280,3, 0x4749290,9, 0x47492c0,6, 0x47492e0,1, 0x47492e8,7, 0x4749400,49, 0x4749500,12, 0x4749540,4, 0x4749584,1, 0x4749598,2, 0x47495a4,1, 0x47495b8,7, 0x47495e0,4, 0x4749600,20, 0x4749680,3, 0x4749690,9, 0x47496c0,6, 0x47496e0,1, 0x47496e8,7, 0x4749800,49, 0x4749900,12, 0x4749940,4, 0x4749984,1, 0x4749998,2, 0x47499a4,1, 0x47499b8,7, 0x47499e0,4, 0x4749a00,20, 0x4749a80,3, 0x4749a90,9, 0x4749ac0,6, 0x4749ae0,1, 0x4749ae8,7, 0x474a000,20, 0x474a080,2, 0x474a100,20, 0x474a180,2, 0x474a200,4, 0x474a400,20, 0x474a480,2, 0x474a500,20, 0x474a580,2, 0x474a600,4, 0x474a800,3, 0x474a840,12, 0x474a880,12, 0x474a8c0,12, 0x474a900,12, 0x474a940,12, 0x474a980,12, 0x474a9c0,12, 0x474aa00,12, 0x474ac00,12, 0x474ac40,7, 0x474ac60,10, 0x474b004,1, 0x474b018,40, 0x474b100,7, 0x474b120,7, 0x474b140,2, 0x474b14c,2, 0x474b160,2, 0x474b16c,2, 0x474b180,18, 0x474b200,2, 0x474b220,10, 0x474b260,20, 0x474b2c0,7, 0x474b300,15, 0x474b340,9, 0x474b380,6, 0x474b3a0,4, 0x474b400,4, 0x474c000,106, 0x474c200,2, 0x474c240,9, 0x474c280,7, 0x474c400,106, 0x474c604,6, 0x474c700,15, 0x474c740,9, 0x474c780,6, 0x474c7a0,6, 0x474c800,8, 0x474c824,1, 0x474c830,15, 0x474c870,3, 0x4760000,518, 0x4760900,45, 0x4760a00,45, 0x4760b00,45, 0x4760c00,45, 0x4760d00,45, 0x4760e00,45, 0x4760f00,45, 0x4761000,45, 0x4761800,9, 0x4761840,364, 0x4761e00,19, 0x4762000,9, 0x4762040,364, 0x4762600,19, 0x4762800,6, 0x4762820,3, 0x4762840,7, 0x4762880,6, 0x47628a0,3, 0x47628c0,7, 0x4762900,1, 0x4762908,3, 0x4762918,8, 0x4762940,7, 0x4763000,2, 0x4763800,18, 0x4763880,18, 0x4763c00,4, 0x4763c20,7, 0x4763d00,4, 0x4763d80,20, 0x4763e00,1, 0x4764000,21, 0x4764058,3, 0x4764100,1, 0x4764124,1, 0x476412c,5, 0x4764144,1, 0x476414c,6, 0x4764184,6, 0x47641a4,6, 0x47641c4,1, 0x47641cc,1, 0x4764400,9, 0x4764440,9, 0x4764480,15, 0x47644c0,15, 0x4764500,15, 0x4764540,15, 0x4764580,15, 0x47645c0,15, 0x4764600,15, 0x4764640,15, 0x4764680,59, 0x4764800,1, 0x4764808,16, 0x4764850,1, 0x4764858,7, 0x4768000,3, 0x4768010,1, 0x4768018,3, 0x476a000,4, 0x476a080,19, 0x476a100,12, 0x476a200,4, 0x476a280,19, 0x476a300,12, 0x476a400,2, 0x476a600,124, 0x476a800,4, 0x476a880,18, 0x476a900,4, 0x476a980,23, 0x476aa00,10, 0x476aa2c,2, 0x476aa40,2, 0x476aa4c,3, 0x476aa60,2, 0x476aa6c,3, 0x476aa80,2, 0x476aa8c,2, 0x476aaa0,2, 0x476aaac,2, 0x476aac0,2, 0x476aacc,2, 0x476ab00,4, 0x476ab40,15, 0x476ab80,3, 0x476ab90,7, 0x476abb0,3, 0x476abc0,3, 0x476abd0,3, 0x476abe0,1, 0x476ac00,17, 0x476ae00,15, 0x476ae40,4, 0x476ae60,17, 0x476aec0,6, 0x476aee0,4, 0x476aef4,11, 0x476af24,28, 0x476b000,1, 0x476b080,1, 0x476b0a0,5, 0x476b0c0,5, 0x476b0e0,5, 0x476b100,1, 0x476b120,5, 0x476b140,5, 0x476b160,5, 0x476b180,24, 0x476b200,5, 0x476c000,20, 0x4770000,518, 0x4770900,45, 0x4770a00,45, 0x4770b00,45, 0x4770c00,45, 0x4770d00,45, 0x4770e00,45, 0x4770f00,45, 0x4771000,45, 0x4771800,9, 0x4771840,364, 0x4771e00,19, 0x4772000,9, 0x4772040,364, 0x4772600,19, 0x4772800,6, 0x4772820,3, 0x4772840,7, 0x4772880,6, 0x47728a0,3, 0x47728c0,7, 0x4772900,1, 0x4772908,3, 0x4772918,8, 0x4772940,7, 0x4773000,2, 0x4773800,18, 0x4773880,18, 0x4773c00,4, 0x4773c20,7, 0x4773d00,4, 0x4773d80,20, 0x4773e00,1, 0x4774000,21, 0x4774058,3, 0x4774100,1, 0x4774124,1, 0x477412c,5, 0x4774144,1, 0x477414c,6, 0x4774184,6, 0x47741a4,6, 0x47741c4,1, 0x47741cc,1, 0x4774400,9, 0x4774440,9, 0x4774480,15, 0x47744c0,15, 0x4774500,15, 0x4774540,15, 0x4774580,15, 0x47745c0,15, 0x4774600,15, 0x4774640,15, 0x4774680,59, 0x4774800,1, 0x4774808,16, 0x4774850,1, 0x4774858,7, 0x4778000,3, 0x4778010,1, 0x4778018,3, 0x477a000,4, 0x477a080,19, 0x477a100,12, 0x477a200,4, 0x477a280,19, 0x477a300,12, 0x477a400,2, 0x477a600,124, 0x477a800,4, 0x477a880,18, 0x477a900,4, 0x477a980,23, 0x477aa00,10, 0x477aa2c,2, 0x477aa40,2, 0x477aa4c,3, 0x477aa60,2, 0x477aa6c,3, 0x477aa80,2, 0x477aa8c,2, 0x477aaa0,2, 0x477aaac,2, 0x477aac0,2, 0x477aacc,2, 0x477ab00,4, 0x477ab40,15, 0x477ab80,3, 0x477ab90,7, 0x477abb0,3, 0x477abc0,3, 0x477abd0,3, 0x477abe0,1, 0x477ac00,17, 0x477ae00,15, 0x477ae40,4, 0x477ae60,17, 0x477aec0,6, 0x477aee0,4, 0x477aef4,11, 0x477af24,28, 0x477b000,1, 0x477b080,1, 0x477b0a0,5, 0x477b0c0,5, 0x477b0e0,5, 0x477b100,1, 0x477b120,5, 0x477b140,5, 0x477b160,5, 0x477b180,24, 0x477b200,5, 0x477c000,20, 0x4780000,18, 0x4780050,3, 0x4780060,3, 0x4780070,14, 0x47800c0,5, 0x4780400,13, 0x4780440,2, 0x478044c,3, 0x4780460,2, 0x4780480,13, 0x47804c0,2, 0x47804cc,3, 0x47804e0,2, 0x4780500,1, 0x4780508,16, 0x4780560,2, 0x478056c,3, 0x4780600,4, 0x4780680,19, 0x4780800,24, 0x4780864,2, 0x4780870,4, 0x4780a00,27, 0x4780a80,4, 0x4780ac0,25, 0x4780b40,6, 0x4780b60,4, 0x4780b74,11, 0x4780ba4,8, 0x4780c00,3, 0x4780c10,3, 0x4780c20,1, 0x4780c40,11, 0x4780c80,23, 0x4780ce0,15, 0x4780d20,15, 0x4780d60,2, 0x4780d6c,2, 0x4780d80,1, 0x4781000,18, 0x4781050,3, 0x4781060,3, 0x4781070,14, 0x47810c0,5, 0x4781400,13, 0x4781440,2, 0x478144c,3, 0x4781460,2, 0x4781480,13, 0x47814c0,2, 0x47814cc,3, 0x47814e0,2, 0x4781500,1, 0x4781508,16, 0x4781560,2, 0x478156c,3, 0x4781600,4, 0x4781680,19, 0x4781800,24, 0x4781864,2, 0x4781870,4, 0x4781a00,27, 0x4781a80,4, 0x4781ac0,25, 0x4781b40,6, 0x4781b60,4, 0x4781b74,11, 0x4781ba4,8, 0x4781c00,3, 0x4781c10,3, 0x4781c20,1, 0x4781c40,11, 0x4781c80,23, 0x4781ce0,15, 0x4781d20,15, 0x4781d60,2, 0x4781d6c,2, 0x4781d80,1, 0x4782000,20, 0x4782080,7, 0x47820a0,1, 0x47820b0,1, 0x47820b8,2, 0x4784000,14, 0x4800000,534, 0x4801000,2, 0x4801040,9, 0x4801080,7, 0x4802000,534, 0x4803000,12, 0x4803044,6, 0x4803080,8, 0x48030a4,1, 0x48030c0,7, 0x48030e0,7, 0x4803100,7, 0x4803120,7, 0x4803140,8, 0x4803164,6, 0x4803180,12, 0x4804000,534, 0x4805000,2, 0x4805040,9, 0x4805080,7, 0x4806000,534, 0x4807000,12, 0x4807044,6, 0x4807080,8, 0x48070a4,1, 0x48070c0,7, 0x48070e0,7, 0x4807100,7, 0x4807120,7, 0x4807140,8, 0x4807164,6, 0x4807180,12, 0x4808004,5, 0x4808200,27, 0x4808280,4, 0x48082c0,25, 0x4808340,6, 0x4808360,4, 0x4808374,11, 0x48083a4,5, 0x4808400,1, 0x4810000,397, 0x4810800,93, 0x4810980,6, 0x4810a00,41, 0x4810b00,2, 0x4810b20,19, 0x4810c00,25, 0x4810c80,1, 0x4810d00,28, 0x4810d80,1, 0x4811000,397, 0x4811800,93, 0x4811980,6, 0x4811a00,41, 0x4811b00,2, 0x4811b20,19, 0x4811c00,25, 0x4811c80,1, 0x4811d00,28, 0x4811d80,1, 0x4812000,7, 0x4812040,9, 0x4812080,4, 0x48120a0,5, 0x48120c0,2, 0x4814000,3, 0x4814010,6, 0x4814200,7, 0x4814220,6, 0x4814240,7, 0x4814260,6, 0x4814280,2, 0x481428c,2, 0x48142a0,2, 0x48142ac,2, 0x48142c0,7, 0x48142e0,7, 0x4814300,2, 0x481430c,2, 0x4814320,6, 0x4814340,7, 0x4814360,6, 0x4814380,6, 0x48143a0,7, 0x48143c0,6, 0x48143e0,6, 0x4814400,3, 0x4814440,12, 0x4814484,1, 0x48144c0,16, 0x4814800,7, 0x4814820,14, 0x4814880,9, 0x48148a8,12, 0x4814900,7, 0x4814920,14, 0x4814980,9, 0x48149a8,12, 0x4814a00,10, 0x4814a40,2, 0x4814a4c,3, 0x4814c00,5, 0x4814c20,1, 0x4814c28,3, 0x4820000,534, 0x4821000,2, 0x4821040,9, 0x4821080,7, 0x4822000,534, 0x4823000,12, 0x4823044,6, 0x4823080,8, 0x48230a4,1, 0x48230c0,7, 0x48230e0,7, 0x4823100,7, 0x4823120,7, 0x4823140,8, 0x4823164,6, 0x4823180,12, 0x4824000,534, 0x4825000,2, 0x4825040,9, 0x4825080,7, 0x4826000,534, 0x4827000,12, 0x4827044,6, 0x4827080,8, 0x48270a4,1, 0x48270c0,7, 0x48270e0,7, 0x4827100,7, 0x4827120,7, 0x4827140,8, 0x4827164,6, 0x4827180,12, 0x4828004,5, 0x4828200,27, 0x4828280,4, 0x48282c0,25, 0x4828340,6, 0x4828360,4, 0x4828374,11, 0x48283a4,5, 0x4828400,1, 0x4830000,397, 0x4830800,93, 0x4830980,6, 0x4830a00,41, 0x4830b00,2, 0x4830b20,19, 0x4830c00,25, 0x4830c80,1, 0x4830d00,28, 0x4830d80,1, 0x4831000,397, 0x4831800,93, 0x4831980,6, 0x4831a00,41, 0x4831b00,2, 0x4831b20,19, 0x4831c00,25, 0x4831c80,1, 0x4831d00,28, 0x4831d80,1, 0x4832000,7, 0x4832040,9, 0x4832080,4, 0x48320a0,5, 0x48320c0,2, 0x4834000,3, 0x4834010,6, 0x4834200,7, 0x4834220,6, 0x4834240,7, 0x4834260,6, 0x4834280,2, 0x483428c,2, 0x48342a0,2, 0x48342ac,2, 0x48342c0,7, 0x48342e0,7, 0x4834300,2, 0x483430c,2, 0x4834320,6, 0x4834340,7, 0x4834360,6, 0x4834380,6, 0x48343a0,7, 0x48343c0,6, 0x48343e0,6, 0x4834400,3, 0x4834440,12, 0x4834484,1, 0x48344c0,16, 0x4834800,7, 0x4834820,14, 0x4834880,9, 0x48348a8,12, 0x4834900,7, 0x4834920,14, 0x4834980,9, 0x48349a8,12, 0x4834a00,10, 0x4834a40,2, 0x4834a4c,3, 0x4834c00,5, 0x4834c20,1, 0x4834c28,3, 0x4840000,37, 0x4840100,3, 0x4840110,15, 0x4840200,37, 0x4840300,3, 0x4840310,15, 0x4840400,5, 0x4840420,5, 0x4840440,18, 0x4840800,3, 0x4840810,2, 0x4840820,3, 0x4840830,2, 0x4840840,1, 0x4841000,12, 0x4841040,12, 0x4841080,2, 0x4841100,19, 0x4841180,19, 0x4841200,26, 0x4841400,20, 0x4841480,20, 0x4841500,8, 0x4841540,4, 0x4841580,15, 0x48415c0,15, 0x4841600,9, 0x4841630,5, 0x4842000,37, 0x4842100,3, 0x4842110,15, 0x4842200,37, 0x4842300,3, 0x4842310,15, 0x4842400,5, 0x4842420,5, 0x4842440,18, 0x4842800,3, 0x4842810,2, 0x4842820,3, 0x4842830,2, 0x4842840,1, 0x4843000,12, 0x4843040,12, 0x4843080,2, 0x4843100,19, 0x4843180,19, 0x4843200,26, 0x4843400,20, 0x4843480,20, 0x4843500,8, 0x4843540,4, 0x4843580,15, 0x48435c0,15, 0x4843600,9, 0x4843630,5, 0x4844000,6, 0x4844020,1, 0x484402c,3, 0x4844040,11, 0x4844070,3, 0x4844080,2, 0x4848000,49, 0x4848100,12, 0x4848140,4, 0x4848184,1, 0x4848198,2, 0x48481a4,1, 0x48481b8,7, 0x48481e0,4, 0x4848200,20, 0x4848280,3, 0x4848290,9, 0x48482c0,6, 0x48482e0,1, 0x48482e8,7, 0x4848400,49, 0x4848500,12, 0x4848540,4, 0x4848584,1, 0x4848598,2, 0x48485a4,1, 0x48485b8,7, 0x48485e0,4, 0x4848600,20, 0x4848680,3, 0x4848690,9, 0x48486c0,6, 0x48486e0,1, 0x48486e8,7, 0x4848800,49, 0x4848900,12, 0x4848940,4, 0x4848984,1, 0x4848998,2, 0x48489a4,1, 0x48489b8,7, 0x48489e0,4, 0x4848a00,20, 0x4848a80,3, 0x4848a90,9, 0x4848ac0,6, 0x4848ae0,1, 0x4848ae8,7, 0x4848c00,49, 0x4848d00,12, 0x4848d40,4, 0x4848d84,1, 0x4848d98,2, 0x4848da4,1, 0x4848db8,7, 0x4848de0,4, 0x4848e00,20, 0x4848e80,3, 0x4848e90,9, 0x4848ec0,6, 0x4848ee0,1, 0x4848ee8,7, 0x4849000,49, 0x4849100,12, 0x4849140,4, 0x4849184,1, 0x4849198,2, 0x48491a4,1, 0x48491b8,7, 0x48491e0,4, 0x4849200,20, 0x4849280,3, 0x4849290,9, 0x48492c0,6, 0x48492e0,1, 0x48492e8,7, 0x4849400,49, 0x4849500,12, 0x4849540,4, 0x4849584,1, 0x4849598,2, 0x48495a4,1, 0x48495b8,7, 0x48495e0,4, 0x4849600,20, 0x4849680,3, 0x4849690,9, 0x48496c0,6, 0x48496e0,1, 0x48496e8,7, 0x4849800,49, 0x4849900,12, 0x4849940,4, 0x4849984,1, 0x4849998,2, 0x48499a4,1, 0x48499b8,7, 0x48499e0,4, 0x4849a00,20, 0x4849a80,3, 0x4849a90,9, 0x4849ac0,6, 0x4849ae0,1, 0x4849ae8,7, 0x484a000,20, 0x484a080,2, 0x484a100,20, 0x484a180,2, 0x484a200,4, 0x484a400,20, 0x484a480,2, 0x484a500,20, 0x484a580,2, 0x484a600,4, 0x484a800,3, 0x484a840,12, 0x484a880,12, 0x484a8c0,12, 0x484a900,12, 0x484a940,12, 0x484a980,12, 0x484a9c0,12, 0x484aa00,12, 0x484ac00,12, 0x484ac40,7, 0x484ac60,10, 0x484b004,1, 0x484b018,40, 0x484b100,7, 0x484b120,7, 0x484b140,2, 0x484b14c,2, 0x484b160,2, 0x484b16c,2, 0x484b180,18, 0x484b200,2, 0x484b220,10, 0x484b260,20, 0x484b2c0,7, 0x484b300,15, 0x484b340,9, 0x484b380,6, 0x484b3a0,4, 0x484b400,4, 0x484c000,106, 0x484c200,2, 0x484c240,9, 0x484c280,7, 0x484c400,106, 0x484c604,6, 0x484c700,15, 0x484c740,9, 0x484c780,6, 0x484c7a0,6, 0x484c800,8, 0x484c824,1, 0x484c830,15, 0x484c870,3, 0x4860000,518, 0x4860900,45, 0x4860a00,45, 0x4860b00,45, 0x4860c00,45, 0x4860d00,45, 0x4860e00,45, 0x4860f00,45, 0x4861000,45, 0x4861800,9, 0x4861840,364, 0x4861e00,19, 0x4862000,9, 0x4862040,364, 0x4862600,19, 0x4862800,6, 0x4862820,3, 0x4862840,7, 0x4862880,6, 0x48628a0,3, 0x48628c0,7, 0x4862900,1, 0x4862908,3, 0x4862918,8, 0x4862940,7, 0x4863000,2, 0x4863800,18, 0x4863880,18, 0x4863c00,4, 0x4863c20,7, 0x4863d00,4, 0x4863d80,20, 0x4863e00,1, 0x4864000,21, 0x4864058,3, 0x4864100,1, 0x4864124,1, 0x486412c,5, 0x4864144,1, 0x486414c,6, 0x4864184,6, 0x48641a4,6, 0x48641c4,1, 0x48641cc,1, 0x4864400,9, 0x4864440,9, 0x4864480,15, 0x48644c0,15, 0x4864500,15, 0x4864540,15, 0x4864580,15, 0x48645c0,15, 0x4864600,15, 0x4864640,15, 0x4864680,59, 0x4864800,1, 0x4864808,16, 0x4864850,1, 0x4864858,7, 0x4868000,3, 0x4868010,1, 0x4868018,3, 0x486a000,4, 0x486a080,19, 0x486a100,12, 0x486a200,4, 0x486a280,19, 0x486a300,12, 0x486a400,2, 0x486a600,124, 0x486a800,4, 0x486a880,18, 0x486a900,4, 0x486a980,23, 0x486aa00,10, 0x486aa2c,2, 0x486aa40,2, 0x486aa4c,3, 0x486aa60,2, 0x486aa6c,3, 0x486aa80,2, 0x486aa8c,2, 0x486aaa0,2, 0x486aaac,2, 0x486aac0,2, 0x486aacc,2, 0x486ab00,4, 0x486ab40,15, 0x486ab80,3, 0x486ab90,7, 0x486abb0,3, 0x486abc0,3, 0x486abd0,3, 0x486abe0,1, 0x486ac00,17, 0x486ae00,15, 0x486ae40,4, 0x486ae60,17, 0x486aec0,6, 0x486aee0,4, 0x486aef4,11, 0x486af24,28, 0x486b000,1, 0x486b080,1, 0x486b0a0,5, 0x486b0c0,5, 0x486b0e0,5, 0x486b100,1, 0x486b120,5, 0x486b140,5, 0x486b160,5, 0x486b180,24, 0x486b200,5, 0x486c000,20, 0x4870000,518, 0x4870900,45, 0x4870a00,45, 0x4870b00,45, 0x4870c00,45, 0x4870d00,45, 0x4870e00,45, 0x4870f00,45, 0x4871000,45, 0x4871800,9, 0x4871840,364, 0x4871e00,19, 0x4872000,9, 0x4872040,364, 0x4872600,19, 0x4872800,6, 0x4872820,3, 0x4872840,7, 0x4872880,6, 0x48728a0,3, 0x48728c0,7, 0x4872900,1, 0x4872908,3, 0x4872918,8, 0x4872940,7, 0x4873000,2, 0x4873800,18, 0x4873880,18, 0x4873c00,4, 0x4873c20,7, 0x4873d00,4, 0x4873d80,20, 0x4873e00,1, 0x4874000,21, 0x4874058,3, 0x4874100,1, 0x4874124,1, 0x487412c,5, 0x4874144,1, 0x487414c,6, 0x4874184,6, 0x48741a4,6, 0x48741c4,1, 0x48741cc,1, 0x4874400,9, 0x4874440,9, 0x4874480,15, 0x48744c0,15, 0x4874500,15, 0x4874540,15, 0x4874580,15, 0x48745c0,15, 0x4874600,15, 0x4874640,15, 0x4874680,59, 0x4874800,1, 0x4874808,16, 0x4874850,1, 0x4874858,7, 0x4878000,3, 0x4878010,1, 0x4878018,3, 0x487a000,4, 0x487a080,19, 0x487a100,12, 0x487a200,4, 0x487a280,19, 0x487a300,12, 0x487a400,2, 0x487a600,124, 0x487a800,4, 0x487a880,18, 0x487a900,4, 0x487a980,23, 0x487aa00,10, 0x487aa2c,2, 0x487aa40,2, 0x487aa4c,3, 0x487aa60,2, 0x487aa6c,3, 0x487aa80,2, 0x487aa8c,2, 0x487aaa0,2, 0x487aaac,2, 0x487aac0,2, 0x487aacc,2, 0x487ab00,4, 0x487ab40,15, 0x487ab80,3, 0x487ab90,7, 0x487abb0,3, 0x487abc0,3, 0x487abd0,3, 0x487abe0,1, 0x487ac00,17, 0x487ae00,15, 0x487ae40,4, 0x487ae60,17, 0x487aec0,6, 0x487aee0,4, 0x487aef4,11, 0x487af24,28, 0x487b000,1, 0x487b080,1, 0x487b0a0,5, 0x487b0c0,5, 0x487b0e0,5, 0x487b100,1, 0x487b120,5, 0x487b140,5, 0x487b160,5, 0x487b180,24, 0x487b200,5, 0x487c000,20, 0x4880000,18, 0x4880050,3, 0x4880060,3, 0x4880070,14, 0x48800c0,5, 0x4880400,13, 0x4880440,2, 0x488044c,3, 0x4880460,2, 0x4880480,13, 0x48804c0,2, 0x48804cc,3, 0x48804e0,2, 0x4880500,1, 0x4880508,16, 0x4880560,2, 0x488056c,3, 0x4880600,4, 0x4880680,19, 0x4880800,24, 0x4880864,2, 0x4880870,4, 0x4880a00,27, 0x4880a80,4, 0x4880ac0,25, 0x4880b40,6, 0x4880b60,4, 0x4880b74,11, 0x4880ba4,8, 0x4880c00,3, 0x4880c10,3, 0x4880c20,1, 0x4880c40,11, 0x4880c80,23, 0x4880ce0,15, 0x4880d20,15, 0x4880d60,2, 0x4880d6c,2, 0x4880d80,1, 0x4881000,18, 0x4881050,3, 0x4881060,3, 0x4881070,14, 0x48810c0,5, 0x4881400,13, 0x4881440,2, 0x488144c,3, 0x4881460,2, 0x4881480,13, 0x48814c0,2, 0x48814cc,3, 0x48814e0,2, 0x4881500,1, 0x4881508,16, 0x4881560,2, 0x488156c,3, 0x4881600,4, 0x4881680,19, 0x4881800,24, 0x4881864,2, 0x4881870,4, 0x4881a00,27, 0x4881a80,4, 0x4881ac0,25, 0x4881b40,6, 0x4881b60,4, 0x4881b74,11, 0x4881ba4,8, 0x4881c00,3, 0x4881c10,3, 0x4881c20,1, 0x4881c40,11, 0x4881c80,23, 0x4881ce0,15, 0x4881d20,15, 0x4881d60,2, 0x4881d6c,2, 0x4881d80,1, 0x4882000,20, 0x4882080,7, 0x48820a0,1, 0x48820b0,1, 0x48820b8,2, 0x4884000,14, 0x4900000,534, 0x4901000,2, 0x4901040,9, 0x4901080,7, 0x4902000,534, 0x4903000,12, 0x4903044,6, 0x4903080,8, 0x49030a4,1, 0x49030c0,7, 0x49030e0,7, 0x4903100,7, 0x4903120,7, 0x4903140,8, 0x4903164,6, 0x4903180,12, 0x4904000,534, 0x4905000,2, 0x4905040,9, 0x4905080,7, 0x4906000,534, 0x4907000,12, 0x4907044,6, 0x4907080,8, 0x49070a4,1, 0x49070c0,7, 0x49070e0,7, 0x4907100,7, 0x4907120,7, 0x4907140,8, 0x4907164,6, 0x4907180,12, 0x4908004,5, 0x4908200,27, 0x4908280,4, 0x49082c0,25, 0x4908340,6, 0x4908360,4, 0x4908374,11, 0x49083a4,5, 0x4908400,1, 0x4910000,397, 0x4910800,93, 0x4910980,6, 0x4910a00,41, 0x4910b00,2, 0x4910b20,19, 0x4910c00,25, 0x4910c80,1, 0x4910d00,28, 0x4910d80,1, 0x4911000,397, 0x4911800,93, 0x4911980,6, 0x4911a00,41, 0x4911b00,2, 0x4911b20,19, 0x4911c00,25, 0x4911c80,1, 0x4911d00,28, 0x4911d80,1, 0x4912000,7, 0x4912040,9, 0x4912080,4, 0x49120a0,5, 0x49120c0,2, 0x4914000,3, 0x4914010,6, 0x4914200,7, 0x4914220,6, 0x4914240,7, 0x4914260,6, 0x4914280,2, 0x491428c,2, 0x49142a0,2, 0x49142ac,2, 0x49142c0,7, 0x49142e0,7, 0x4914300,2, 0x491430c,2, 0x4914320,6, 0x4914340,7, 0x4914360,6, 0x4914380,6, 0x49143a0,7, 0x49143c0,6, 0x49143e0,6, 0x4914400,3, 0x4914440,12, 0x4914484,1, 0x49144c0,16, 0x4914800,7, 0x4914820,14, 0x4914880,9, 0x49148a8,12, 0x4914900,7, 0x4914920,14, 0x4914980,9, 0x49149a8,12, 0x4914a00,10, 0x4914a40,2, 0x4914a4c,3, 0x4914c00,5, 0x4914c20,1, 0x4914c28,3, 0x4920000,534, 0x4921000,2, 0x4921040,9, 0x4921080,7, 0x4922000,534, 0x4923000,12, 0x4923044,6, 0x4923080,8, 0x49230a4,1, 0x49230c0,7, 0x49230e0,7, 0x4923100,7, 0x4923120,7, 0x4923140,8, 0x4923164,6, 0x4923180,12, 0x4924000,534, 0x4925000,2, 0x4925040,9, 0x4925080,7, 0x4926000,534, 0x4927000,12, 0x4927044,6, 0x4927080,8, 0x49270a4,1, 0x49270c0,7, 0x49270e0,7, 0x4927100,7, 0x4927120,7, 0x4927140,8, 0x4927164,6, 0x4927180,12, 0x4928004,5, 0x4928200,27, 0x4928280,4, 0x49282c0,25, 0x4928340,6, 0x4928360,4, 0x4928374,11, 0x49283a4,5, 0x4928400,1, 0x4930000,397, 0x4930800,93, 0x4930980,6, 0x4930a00,41, 0x4930b00,2, 0x4930b20,19, 0x4930c00,25, 0x4930c80,1, 0x4930d00,28, 0x4930d80,1, 0x4931000,397, 0x4931800,93, 0x4931980,6, 0x4931a00,41, 0x4931b00,2, 0x4931b20,19, 0x4931c00,25, 0x4931c80,1, 0x4931d00,28, 0x4931d80,1, 0x4932000,7, 0x4932040,9, 0x4932080,4, 0x49320a0,5, 0x49320c0,2, 0x4934000,3, 0x4934010,6, 0x4934200,7, 0x4934220,6, 0x4934240,7, 0x4934260,6, 0x4934280,2, 0x493428c,2, 0x49342a0,2, 0x49342ac,2, 0x49342c0,7, 0x49342e0,7, 0x4934300,2, 0x493430c,2, 0x4934320,6, 0x4934340,7, 0x4934360,6, 0x4934380,6, 0x49343a0,7, 0x49343c0,6, 0x49343e0,6, 0x4934400,3, 0x4934440,12, 0x4934484,1, 0x49344c0,16, 0x4934800,7, 0x4934820,14, 0x4934880,9, 0x49348a8,12, 0x4934900,7, 0x4934920,14, 0x4934980,9, 0x49349a8,12, 0x4934a00,10, 0x4934a40,2, 0x4934a4c,3, 0x4934c00,5, 0x4934c20,1, 0x4934c28,3, 0x4940000,37, 0x4940100,3, 0x4940110,15, 0x4940200,37, 0x4940300,3, 0x4940310,15, 0x4940400,5, 0x4940420,5, 0x4940440,18, 0x4940800,3, 0x4940810,2, 0x4940820,3, 0x4940830,2, 0x4940840,1, 0x4941000,12, 0x4941040,12, 0x4941080,2, 0x4941100,19, 0x4941180,19, 0x4941200,26, 0x4941400,20, 0x4941480,20, 0x4941500,8, 0x4941540,4, 0x4941580,15, 0x49415c0,15, 0x4941600,9, 0x4941630,5, 0x4942000,37, 0x4942100,3, 0x4942110,15, 0x4942200,37, 0x4942300,3, 0x4942310,15, 0x4942400,5, 0x4942420,5, 0x4942440,18, 0x4942800,3, 0x4942810,2, 0x4942820,3, 0x4942830,2, 0x4942840,1, 0x4943000,12, 0x4943040,12, 0x4943080,2, 0x4943100,19, 0x4943180,19, 0x4943200,26, 0x4943400,20, 0x4943480,20, 0x4943500,8, 0x4943540,4, 0x4943580,15, 0x49435c0,15, 0x4943600,9, 0x4943630,5, 0x4944000,6, 0x4944020,1, 0x494402c,3, 0x4944040,11, 0x4944070,3, 0x4944080,2, 0x4948000,49, 0x4948100,12, 0x4948140,4, 0x4948184,1, 0x4948198,2, 0x49481a4,1, 0x49481b8,7, 0x49481e0,4, 0x4948200,20, 0x4948280,3, 0x4948290,9, 0x49482c0,6, 0x49482e0,1, 0x49482e8,7, 0x4948400,49, 0x4948500,12, 0x4948540,4, 0x4948584,1, 0x4948598,2, 0x49485a4,1, 0x49485b8,7, 0x49485e0,4, 0x4948600,20, 0x4948680,3, 0x4948690,9, 0x49486c0,6, 0x49486e0,1, 0x49486e8,7, 0x4948800,49, 0x4948900,12, 0x4948940,4, 0x4948984,1, 0x4948998,2, 0x49489a4,1, 0x49489b8,7, 0x49489e0,4, 0x4948a00,20, 0x4948a80,3, 0x4948a90,9, 0x4948ac0,6, 0x4948ae0,1, 0x4948ae8,7, 0x4948c00,49, 0x4948d00,12, 0x4948d40,4, 0x4948d84,1, 0x4948d98,2, 0x4948da4,1, 0x4948db8,7, 0x4948de0,4, 0x4948e00,20, 0x4948e80,3, 0x4948e90,9, 0x4948ec0,6, 0x4948ee0,1, 0x4948ee8,7, 0x4949000,49, 0x4949100,12, 0x4949140,4, 0x4949184,1, 0x4949198,2, 0x49491a4,1, 0x49491b8,7, 0x49491e0,4, 0x4949200,20, 0x4949280,3, 0x4949290,9, 0x49492c0,6, 0x49492e0,1, 0x49492e8,7, 0x4949400,49, 0x4949500,12, 0x4949540,4, 0x4949584,1, 0x4949598,2, 0x49495a4,1, 0x49495b8,7, 0x49495e0,4, 0x4949600,20, 0x4949680,3, 0x4949690,9, 0x49496c0,6, 0x49496e0,1, 0x49496e8,7, 0x4949800,49, 0x4949900,12, 0x4949940,4, 0x4949984,1, 0x4949998,2, 0x49499a4,1, 0x49499b8,7, 0x49499e0,4, 0x4949a00,20, 0x4949a80,3, 0x4949a90,9, 0x4949ac0,6, 0x4949ae0,1, 0x4949ae8,7, 0x494a000,20, 0x494a080,2, 0x494a100,20, 0x494a180,2, 0x494a200,4, 0x494a400,20, 0x494a480,2, 0x494a500,20, 0x494a580,2, 0x494a600,4, 0x494a800,3, 0x494a840,12, 0x494a880,12, 0x494a8c0,12, 0x494a900,12, 0x494a940,12, 0x494a980,12, 0x494a9c0,12, 0x494aa00,12, 0x494ac00,12, 0x494ac40,7, 0x494ac60,10, 0x494b004,1, 0x494b018,40, 0x494b100,7, 0x494b120,7, 0x494b140,2, 0x494b14c,2, 0x494b160,2, 0x494b16c,2, 0x494b180,18, 0x494b200,2, 0x494b220,10, 0x494b260,20, 0x494b2c0,7, 0x494b300,15, 0x494b340,9, 0x494b380,6, 0x494b3a0,4, 0x494b400,4, 0x494c000,106, 0x494c200,2, 0x494c240,9, 0x494c280,7, 0x494c400,106, 0x494c604,6, 0x494c700,15, 0x494c740,9, 0x494c780,6, 0x494c7a0,6, 0x494c800,8, 0x494c824,1, 0x494c830,15, 0x494c870,3, 0x4960000,518, 0x4960900,45, 0x4960a00,45, 0x4960b00,45, 0x4960c00,45, 0x4960d00,45, 0x4960e00,45, 0x4960f00,45, 0x4961000,45, 0x4961800,9, 0x4961840,364, 0x4961e00,19, 0x4962000,9, 0x4962040,364, 0x4962600,19, 0x4962800,6, 0x4962820,3, 0x4962840,7, 0x4962880,6, 0x49628a0,3, 0x49628c0,7, 0x4962900,1, 0x4962908,3, 0x4962918,8, 0x4962940,7, 0x4963000,2, 0x4963800,18, 0x4963880,18, 0x4963c00,4, 0x4963c20,7, 0x4963d00,4, 0x4963d80,20, 0x4963e00,1, 0x4964000,21, 0x4964058,3, 0x4964100,1, 0x4964124,1, 0x496412c,5, 0x4964144,1, 0x496414c,6, 0x4964184,6, 0x49641a4,6, 0x49641c4,1, 0x49641cc,1, 0x4964400,9, 0x4964440,9, 0x4964480,15, 0x49644c0,15, 0x4964500,15, 0x4964540,15, 0x4964580,15, 0x49645c0,15, 0x4964600,15, 0x4964640,15, 0x4964680,59, 0x4964800,1, 0x4964808,16, 0x4964850,1, 0x4964858,7, 0x4968000,3, 0x4968010,1, 0x4968018,3, 0x496a000,4, 0x496a080,19, 0x496a100,12, 0x496a200,4, 0x496a280,19, 0x496a300,12, 0x496a400,2, 0x496a600,124, 0x496a800,4, 0x496a880,18, 0x496a900,4, 0x496a980,23, 0x496aa00,10, 0x496aa2c,2, 0x496aa40,2, 0x496aa4c,3, 0x496aa60,2, 0x496aa6c,3, 0x496aa80,2, 0x496aa8c,2, 0x496aaa0,2, 0x496aaac,2, 0x496aac0,2, 0x496aacc,2, 0x496ab00,4, 0x496ab40,15, 0x496ab80,3, 0x496ab90,7, 0x496abb0,3, 0x496abc0,3, 0x496abd0,3, 0x496abe0,1, 0x496ac00,17, 0x496ae00,15, 0x496ae40,4, 0x496ae60,17, 0x496aec0,6, 0x496aee0,4, 0x496aef4,11, 0x496af24,28, 0x496b000,1, 0x496b080,1, 0x496b0a0,5, 0x496b0c0,5, 0x496b0e0,5, 0x496b100,1, 0x496b120,5, 0x496b140,5, 0x496b160,5, 0x496b180,24, 0x496b200,5, 0x496c000,20, 0x4970000,518, 0x4970900,45, 0x4970a00,45, 0x4970b00,45, 0x4970c00,45, 0x4970d00,45, 0x4970e00,45, 0x4970f00,45, 0x4971000,45, 0x4971800,9, 0x4971840,364, 0x4971e00,19, 0x4972000,9, 0x4972040,364, 0x4972600,19, 0x4972800,6, 0x4972820,3, 0x4972840,7, 0x4972880,6, 0x49728a0,3, 0x49728c0,7, 0x4972900,1, 0x4972908,3, 0x4972918,8, 0x4972940,7, 0x4973000,2, 0x4973800,18, 0x4973880,18, 0x4973c00,4, 0x4973c20,7, 0x4973d00,4, 0x4973d80,20, 0x4973e00,1, 0x4974000,21, 0x4974058,3, 0x4974100,1, 0x4974124,1, 0x497412c,5, 0x4974144,1, 0x497414c,6, 0x4974184,6, 0x49741a4,6, 0x49741c4,1, 0x49741cc,1, 0x4974400,9, 0x4974440,9, 0x4974480,15, 0x49744c0,15, 0x4974500,15, 0x4974540,15, 0x4974580,15, 0x49745c0,15, 0x4974600,15, 0x4974640,15, 0x4974680,59, 0x4974800,1, 0x4974808,16, 0x4974850,1, 0x4974858,7, 0x4978000,3, 0x4978010,1, 0x4978018,3, 0x497a000,4, 0x497a080,19, 0x497a100,12, 0x497a200,4, 0x497a280,19, 0x497a300,12, 0x497a400,2, 0x497a600,124, 0x497a800,4, 0x497a880,18, 0x497a900,4, 0x497a980,23, 0x497aa00,10, 0x497aa2c,2, 0x497aa40,2, 0x497aa4c,3, 0x497aa60,2, 0x497aa6c,3, 0x497aa80,2, 0x497aa8c,2, 0x497aaa0,2, 0x497aaac,2, 0x497aac0,2, 0x497aacc,2, 0x497ab00,4, 0x497ab40,15, 0x497ab80,3, 0x497ab90,7, 0x497abb0,3, 0x497abc0,3, 0x497abd0,3, 0x497abe0,1, 0x497ac00,17, 0x497ae00,15, 0x497ae40,4, 0x497ae60,17, 0x497aec0,6, 0x497aee0,4, 0x497aef4,11, 0x497af24,28, 0x497b000,1, 0x497b080,1, 0x497b0a0,5, 0x497b0c0,5, 0x497b0e0,5, 0x497b100,1, 0x497b120,5, 0x497b140,5, 0x497b160,5, 0x497b180,24, 0x497b200,5, 0x497c000,20, 0x4980000,18, 0x4980050,3, 0x4980060,3, 0x4980070,14, 0x49800c0,5, 0x4980400,13, 0x4980440,2, 0x498044c,3, 0x4980460,2, 0x4980480,13, 0x49804c0,2, 0x49804cc,3, 0x49804e0,2, 0x4980500,1, 0x4980508,16, 0x4980560,2, 0x498056c,3, 0x4980600,4, 0x4980680,19, 0x4980800,24, 0x4980864,2, 0x4980870,4, 0x4980a00,27, 0x4980a80,4, 0x4980ac0,25, 0x4980b40,6, 0x4980b60,4, 0x4980b74,11, 0x4980ba4,8, 0x4980c00,3, 0x4980c10,3, 0x4980c20,1, 0x4980c40,11, 0x4980c80,23, 0x4980ce0,15, 0x4980d20,15, 0x4980d60,2, 0x4980d6c,2, 0x4980d80,1, 0x4981000,18, 0x4981050,3, 0x4981060,3, 0x4981070,14, 0x49810c0,5, 0x4981400,13, 0x4981440,2, 0x498144c,3, 0x4981460,2, 0x4981480,13, 0x49814c0,2, 0x49814cc,3, 0x49814e0,2, 0x4981500,1, 0x4981508,16, 0x4981560,2, 0x498156c,3, 0x4981600,4, 0x4981680,19, 0x4981800,24, 0x4981864,2, 0x4981870,4, 0x4981a00,27, 0x4981a80,4, 0x4981ac0,25, 0x4981b40,6, 0x4981b60,4, 0x4981b74,11, 0x4981ba4,8, 0x4981c00,3, 0x4981c10,3, 0x4981c20,1, 0x4981c40,11, 0x4981c80,23, 0x4981ce0,15, 0x4981d20,15, 0x4981d60,2, 0x4981d6c,2, 0x4981d80,1, 0x4982000,20, 0x4982080,7, 0x49820a0,1, 0x49820b0,1, 0x49820b8,2, 0x4984000,14, 0x4a00000,534, 0x4a01000,2, 0x4a01040,9, 0x4a01080,7, 0x4a02000,534, 0x4a03000,12, 0x4a03044,6, 0x4a03080,8, 0x4a030a4,1, 0x4a030c0,7, 0x4a030e0,7, 0x4a03100,7, 0x4a03120,7, 0x4a03140,8, 0x4a03164,6, 0x4a03180,12, 0x4a04000,534, 0x4a05000,2, 0x4a05040,9, 0x4a05080,7, 0x4a06000,534, 0x4a07000,12, 0x4a07044,6, 0x4a07080,8, 0x4a070a4,1, 0x4a070c0,7, 0x4a070e0,7, 0x4a07100,7, 0x4a07120,7, 0x4a07140,8, 0x4a07164,6, 0x4a07180,12, 0x4a08004,5, 0x4a08200,27, 0x4a08280,4, 0x4a082c0,25, 0x4a08340,6, 0x4a08360,4, 0x4a08374,11, 0x4a083a4,5, 0x4a08400,1, 0x4a10000,397, 0x4a10800,93, 0x4a10980,6, 0x4a10a00,41, 0x4a10b00,2, 0x4a10b20,19, 0x4a10c00,25, 0x4a10c80,1, 0x4a10d00,28, 0x4a10d80,1, 0x4a11000,397, 0x4a11800,93, 0x4a11980,6, 0x4a11a00,41, 0x4a11b00,2, 0x4a11b20,19, 0x4a11c00,25, 0x4a11c80,1, 0x4a11d00,28, 0x4a11d80,1, 0x4a12000,7, 0x4a12040,9, 0x4a12080,4, 0x4a120a0,5, 0x4a120c0,2, 0x4a14000,3, 0x4a14010,6, 0x4a14200,7, 0x4a14220,6, 0x4a14240,7, 0x4a14260,6, 0x4a14280,2, 0x4a1428c,2, 0x4a142a0,2, 0x4a142ac,2, 0x4a142c0,7, 0x4a142e0,7, 0x4a14300,2, 0x4a1430c,2, 0x4a14320,6, 0x4a14340,7, 0x4a14360,6, 0x4a14380,6, 0x4a143a0,7, 0x4a143c0,6, 0x4a143e0,6, 0x4a14400,3, 0x4a14440,12, 0x4a14484,1, 0x4a144c0,16, 0x4a14800,7, 0x4a14820,14, 0x4a14880,9, 0x4a148a8,12, 0x4a14900,7, 0x4a14920,14, 0x4a14980,9, 0x4a149a8,12, 0x4a14a00,10, 0x4a14a40,2, 0x4a14a4c,3, 0x4a14c00,5, 0x4a14c20,1, 0x4a14c28,3, 0x4a20000,534, 0x4a21000,2, 0x4a21040,9, 0x4a21080,7, 0x4a22000,534, 0x4a23000,12, 0x4a23044,6, 0x4a23080,8, 0x4a230a4,1, 0x4a230c0,7, 0x4a230e0,7, 0x4a23100,7, 0x4a23120,7, 0x4a23140,8, 0x4a23164,6, 0x4a23180,12, 0x4a24000,534, 0x4a25000,2, 0x4a25040,9, 0x4a25080,7, 0x4a26000,534, 0x4a27000,12, 0x4a27044,6, 0x4a27080,8, 0x4a270a4,1, 0x4a270c0,7, 0x4a270e0,7, 0x4a27100,7, 0x4a27120,7, 0x4a27140,8, 0x4a27164,6, 0x4a27180,12, 0x4a28004,5, 0x4a28200,27, 0x4a28280,4, 0x4a282c0,25, 0x4a28340,6, 0x4a28360,4, 0x4a28374,11, 0x4a283a4,5, 0x4a28400,1, 0x4a30000,397, 0x4a30800,93, 0x4a30980,6, 0x4a30a00,41, 0x4a30b00,2, 0x4a30b20,19, 0x4a30c00,25, 0x4a30c80,1, 0x4a30d00,28, 0x4a30d80,1, 0x4a31000,397, 0x4a31800,93, 0x4a31980,6, 0x4a31a00,41, 0x4a31b00,2, 0x4a31b20,19, 0x4a31c00,25, 0x4a31c80,1, 0x4a31d00,28, 0x4a31d80,1, 0x4a32000,7, 0x4a32040,9, 0x4a32080,4, 0x4a320a0,5, 0x4a320c0,2, 0x4a34000,3, 0x4a34010,6, 0x4a34200,7, 0x4a34220,6, 0x4a34240,7, 0x4a34260,6, 0x4a34280,2, 0x4a3428c,2, 0x4a342a0,2, 0x4a342ac,2, 0x4a342c0,7, 0x4a342e0,7, 0x4a34300,2, 0x4a3430c,2, 0x4a34320,6, 0x4a34340,7, 0x4a34360,6, 0x4a34380,6, 0x4a343a0,7, 0x4a343c0,6, 0x4a343e0,6, 0x4a34400,3, 0x4a34440,12, 0x4a34484,1, 0x4a344c0,16, 0x4a34800,7, 0x4a34820,14, 0x4a34880,9, 0x4a348a8,12, 0x4a34900,7, 0x4a34920,14, 0x4a34980,9, 0x4a349a8,12, 0x4a34a00,10, 0x4a34a40,2, 0x4a34a4c,3, 0x4a34c00,5, 0x4a34c20,1, 0x4a34c28,3, 0x4a40000,37, 0x4a40100,3, 0x4a40110,15, 0x4a40200,37, 0x4a40300,3, 0x4a40310,15, 0x4a40400,5, 0x4a40420,5, 0x4a40440,18, 0x4a40800,3, 0x4a40810,2, 0x4a40820,3, 0x4a40830,2, 0x4a40840,1, 0x4a41000,12, 0x4a41040,12, 0x4a41080,2, 0x4a41100,19, 0x4a41180,19, 0x4a41200,26, 0x4a41400,20, 0x4a41480,20, 0x4a41500,8, 0x4a41540,4, 0x4a41580,15, 0x4a415c0,15, 0x4a41600,9, 0x4a41630,5, 0x4a42000,37, 0x4a42100,3, 0x4a42110,15, 0x4a42200,37, 0x4a42300,3, 0x4a42310,15, 0x4a42400,5, 0x4a42420,5, 0x4a42440,18, 0x4a42800,3, 0x4a42810,2, 0x4a42820,3, 0x4a42830,2, 0x4a42840,1, 0x4a43000,12, 0x4a43040,12, 0x4a43080,2, 0x4a43100,19, 0x4a43180,19, 0x4a43200,26, 0x4a43400,20, 0x4a43480,20, 0x4a43500,8, 0x4a43540,4, 0x4a43580,15, 0x4a435c0,15, 0x4a43600,9, 0x4a43630,5, 0x4a44000,6, 0x4a44020,1, 0x4a4402c,3, 0x4a44040,11, 0x4a44070,3, 0x4a44080,2, 0x4a48000,49, 0x4a48100,12, 0x4a48140,4, 0x4a48184,1, 0x4a48198,2, 0x4a481a4,1, 0x4a481b8,7, 0x4a481e0,4, 0x4a48200,20, 0x4a48280,3, 0x4a48290,9, 0x4a482c0,6, 0x4a482e0,1, 0x4a482e8,7, 0x4a48400,49, 0x4a48500,12, 0x4a48540,4, 0x4a48584,1, 0x4a48598,2, 0x4a485a4,1, 0x4a485b8,7, 0x4a485e0,4, 0x4a48600,20, 0x4a48680,3, 0x4a48690,9, 0x4a486c0,6, 0x4a486e0,1, 0x4a486e8,7, 0x4a48800,49, 0x4a48900,12, 0x4a48940,4, 0x4a48984,1, 0x4a48998,2, 0x4a489a4,1, 0x4a489b8,7, 0x4a489e0,4, 0x4a48a00,20, 0x4a48a80,3, 0x4a48a90,9, 0x4a48ac0,6, 0x4a48ae0,1, 0x4a48ae8,7, 0x4a48c00,49, 0x4a48d00,12, 0x4a48d40,4, 0x4a48d84,1, 0x4a48d98,2, 0x4a48da4,1, 0x4a48db8,7, 0x4a48de0,4, 0x4a48e00,20, 0x4a48e80,3, 0x4a48e90,9, 0x4a48ec0,6, 0x4a48ee0,1, 0x4a48ee8,7, 0x4a49000,49, 0x4a49100,12, 0x4a49140,4, 0x4a49184,1, 0x4a49198,2, 0x4a491a4,1, 0x4a491b8,7, 0x4a491e0,4, 0x4a49200,20, 0x4a49280,3, 0x4a49290,9, 0x4a492c0,6, 0x4a492e0,1, 0x4a492e8,7, 0x4a49400,49, 0x4a49500,12, 0x4a49540,4, 0x4a49584,1, 0x4a49598,2, 0x4a495a4,1, 0x4a495b8,7, 0x4a495e0,4, 0x4a49600,20, 0x4a49680,3, 0x4a49690,9, 0x4a496c0,6, 0x4a496e0,1, 0x4a496e8,7, 0x4a49800,49, 0x4a49900,12, 0x4a49940,4, 0x4a49984,1, 0x4a49998,2, 0x4a499a4,1, 0x4a499b8,7, 0x4a499e0,4, 0x4a49a00,20, 0x4a49a80,3, 0x4a49a90,9, 0x4a49ac0,6, 0x4a49ae0,1, 0x4a49ae8,7, 0x4a4a000,20, 0x4a4a080,2, 0x4a4a100,20, 0x4a4a180,2, 0x4a4a200,4, 0x4a4a400,20, 0x4a4a480,2, 0x4a4a500,20, 0x4a4a580,2, 0x4a4a600,4, 0x4a4a800,3, 0x4a4a840,12, 0x4a4a880,12, 0x4a4a8c0,12, 0x4a4a900,12, 0x4a4a940,12, 0x4a4a980,12, 0x4a4a9c0,12, 0x4a4aa00,12, 0x4a4ac00,12, 0x4a4ac40,7, 0x4a4ac60,10, 0x4a4b004,1, 0x4a4b018,40, 0x4a4b100,7, 0x4a4b120,7, 0x4a4b140,2, 0x4a4b14c,2, 0x4a4b160,2, 0x4a4b16c,2, 0x4a4b180,18, 0x4a4b200,2, 0x4a4b220,10, 0x4a4b260,20, 0x4a4b2c0,7, 0x4a4b300,15, 0x4a4b340,9, 0x4a4b380,6, 0x4a4b3a0,4, 0x4a4b400,4, 0x4a4c000,106, 0x4a4c200,2, 0x4a4c240,9, 0x4a4c280,7, 0x4a4c400,106, 0x4a4c604,6, 0x4a4c700,15, 0x4a4c740,9, 0x4a4c780,6, 0x4a4c7a0,6, 0x4a4c800,8, 0x4a4c824,1, 0x4a4c830,15, 0x4a4c870,3, 0x4a60000,518, 0x4a60900,45, 0x4a60a00,45, 0x4a60b00,45, 0x4a60c00,45, 0x4a60d00,45, 0x4a60e00,45, 0x4a60f00,45, 0x4a61000,45, 0x4a61800,9, 0x4a61840,364, 0x4a61e00,19, 0x4a62000,9, 0x4a62040,364, 0x4a62600,19, 0x4a62800,6, 0x4a62820,3, 0x4a62840,7, 0x4a62880,6, 0x4a628a0,3, 0x4a628c0,7, 0x4a62900,1, 0x4a62908,3, 0x4a62918,8, 0x4a62940,7, 0x4a63000,2, 0x4a63800,18, 0x4a63880,18, 0x4a63c00,4, 0x4a63c20,7, 0x4a63d00,4, 0x4a63d80,20, 0x4a63e00,1, 0x4a64000,21, 0x4a64058,3, 0x4a64100,1, 0x4a64124,1, 0x4a6412c,5, 0x4a64144,1, 0x4a6414c,6, 0x4a64184,6, 0x4a641a4,6, 0x4a641c4,1, 0x4a641cc,1, 0x4a64400,9, 0x4a64440,9, 0x4a64480,15, 0x4a644c0,15, 0x4a64500,15, 0x4a64540,15, 0x4a64580,15, 0x4a645c0,15, 0x4a64600,15, 0x4a64640,15, 0x4a64680,59, 0x4a64800,1, 0x4a64808,16, 0x4a64850,1, 0x4a64858,7, 0x4a68000,3, 0x4a68010,1, 0x4a68018,3, 0x4a6a000,4, 0x4a6a080,19, 0x4a6a100,12, 0x4a6a200,4, 0x4a6a280,19, 0x4a6a300,12, 0x4a6a400,2, 0x4a6a600,124, 0x4a6a800,4, 0x4a6a880,18, 0x4a6a900,4, 0x4a6a980,23, 0x4a6aa00,10, 0x4a6aa2c,2, 0x4a6aa40,2, 0x4a6aa4c,3, 0x4a6aa60,2, 0x4a6aa6c,3, 0x4a6aa80,2, 0x4a6aa8c,2, 0x4a6aaa0,2, 0x4a6aaac,2, 0x4a6aac0,2, 0x4a6aacc,2, 0x4a6ab00,4, 0x4a6ab40,15, 0x4a6ab80,3, 0x4a6ab90,7, 0x4a6abb0,3, 0x4a6abc0,3, 0x4a6abd0,3, 0x4a6abe0,1, 0x4a6ac00,17, 0x4a6ae00,15, 0x4a6ae40,4, 0x4a6ae60,17, 0x4a6aec0,6, 0x4a6aee0,4, 0x4a6aef4,11, 0x4a6af24,28, 0x4a6b000,1, 0x4a6b080,1, 0x4a6b0a0,5, 0x4a6b0c0,5, 0x4a6b0e0,5, 0x4a6b100,1, 0x4a6b120,5, 0x4a6b140,5, 0x4a6b160,5, 0x4a6b180,24, 0x4a6b200,5, 0x4a6c000,20, 0x4a70000,518, 0x4a70900,45, 0x4a70a00,45, 0x4a70b00,45, 0x4a70c00,45, 0x4a70d00,45, 0x4a70e00,45, 0x4a70f00,45, 0x4a71000,45, 0x4a71800,9, 0x4a71840,364, 0x4a71e00,19, 0x4a72000,9, 0x4a72040,364, 0x4a72600,19, 0x4a72800,6, 0x4a72820,3, 0x4a72840,7, 0x4a72880,6, 0x4a728a0,3, 0x4a728c0,7, 0x4a72900,1, 0x4a72908,3, 0x4a72918,8, 0x4a72940,7, 0x4a73000,2, 0x4a73800,18, 0x4a73880,18, 0x4a73c00,4, 0x4a73c20,7, 0x4a73d00,4, 0x4a73d80,20, 0x4a73e00,1, 0x4a74000,21, 0x4a74058,3, 0x4a74100,1, 0x4a74124,1, 0x4a7412c,5, 0x4a74144,1, 0x4a7414c,6, 0x4a74184,6, 0x4a741a4,6, 0x4a741c4,1, 0x4a741cc,1, 0x4a74400,9, 0x4a74440,9, 0x4a74480,15, 0x4a744c0,15, 0x4a74500,15, 0x4a74540,15, 0x4a74580,15, 0x4a745c0,15, 0x4a74600,15, 0x4a74640,15, 0x4a74680,59, 0x4a74800,1, 0x4a74808,16, 0x4a74850,1, 0x4a74858,7, 0x4a78000,3, 0x4a78010,1, 0x4a78018,3, 0x4a7a000,4, 0x4a7a080,19, 0x4a7a100,12, 0x4a7a200,4, 0x4a7a280,19, 0x4a7a300,12, 0x4a7a400,2, 0x4a7a600,124, 0x4a7a800,4, 0x4a7a880,18, 0x4a7a900,4, 0x4a7a980,23, 0x4a7aa00,10, 0x4a7aa2c,2, 0x4a7aa40,2, 0x4a7aa4c,3, 0x4a7aa60,2, 0x4a7aa6c,3, 0x4a7aa80,2, 0x4a7aa8c,2, 0x4a7aaa0,2, 0x4a7aaac,2, 0x4a7aac0,2, 0x4a7aacc,2, 0x4a7ab00,4, 0x4a7ab40,15, 0x4a7ab80,3, 0x4a7ab90,7, 0x4a7abb0,3, 0x4a7abc0,3, 0x4a7abd0,3, 0x4a7abe0,1, 0x4a7ac00,17, 0x4a7ae00,15, 0x4a7ae40,4, 0x4a7ae60,17, 0x4a7aec0,6, 0x4a7aee0,4, 0x4a7aef4,11, 0x4a7af24,28, 0x4a7b000,1, 0x4a7b080,1, 0x4a7b0a0,5, 0x4a7b0c0,5, 0x4a7b0e0,5, 0x4a7b100,1, 0x4a7b120,5, 0x4a7b140,5, 0x4a7b160,5, 0x4a7b180,24, 0x4a7b200,5, 0x4a7c000,20, 0x4a80000,18, 0x4a80050,3, 0x4a80060,3, 0x4a80070,14, 0x4a800c0,5, 0x4a80400,13, 0x4a80440,2, 0x4a8044c,3, 0x4a80460,2, 0x4a80480,13, 0x4a804c0,2, 0x4a804cc,3, 0x4a804e0,2, 0x4a80500,1, 0x4a80508,16, 0x4a80560,2, 0x4a8056c,3, 0x4a80600,4, 0x4a80680,19, 0x4a80800,24, 0x4a80864,2, 0x4a80870,4, 0x4a80a00,27, 0x4a80a80,4, 0x4a80ac0,25, 0x4a80b40,6, 0x4a80b60,4, 0x4a80b74,11, 0x4a80ba4,8, 0x4a80c00,3, 0x4a80c10,3, 0x4a80c20,1, 0x4a80c40,11, 0x4a80c80,23, 0x4a80ce0,15, 0x4a80d20,15, 0x4a80d60,2, 0x4a80d6c,2, 0x4a80d80,1, 0x4a81000,18, 0x4a81050,3, 0x4a81060,3, 0x4a81070,14, 0x4a810c0,5, 0x4a81400,13, 0x4a81440,2, 0x4a8144c,3, 0x4a81460,2, 0x4a81480,13, 0x4a814c0,2, 0x4a814cc,3, 0x4a814e0,2, 0x4a81500,1, 0x4a81508,16, 0x4a81560,2, 0x4a8156c,3, 0x4a81600,4, 0x4a81680,19, 0x4a81800,24, 0x4a81864,2, 0x4a81870,4, 0x4a81a00,27, 0x4a81a80,4, 0x4a81ac0,25, 0x4a81b40,6, 0x4a81b60,4, 0x4a81b74,11, 0x4a81ba4,8, 0x4a81c00,3, 0x4a81c10,3, 0x4a81c20,1, 0x4a81c40,11, 0x4a81c80,23, 0x4a81ce0,15, 0x4a81d20,15, 0x4a81d60,2, 0x4a81d6c,2, 0x4a81d80,1, 0x4a82000,20, 0x4a82080,7, 0x4a820a0,1, 0x4a820b0,1, 0x4a820b8,2, 0x4a84000,14, 0x4b00000,534, 0x4b01000,2, 0x4b01040,9, 0x4b01080,7, 0x4b02000,534, 0x4b03000,12, 0x4b03044,6, 0x4b03080,8, 0x4b030a4,1, 0x4b030c0,7, 0x4b030e0,7, 0x4b03100,7, 0x4b03120,7, 0x4b03140,8, 0x4b03164,6, 0x4b03180,12, 0x4b04000,534, 0x4b05000,2, 0x4b05040,9, 0x4b05080,7, 0x4b06000,534, 0x4b07000,12, 0x4b07044,6, 0x4b07080,8, 0x4b070a4,1, 0x4b070c0,7, 0x4b070e0,7, 0x4b07100,7, 0x4b07120,7, 0x4b07140,8, 0x4b07164,6, 0x4b07180,12, 0x4b08004,5, 0x4b08200,27, 0x4b08280,4, 0x4b082c0,25, 0x4b08340,6, 0x4b08360,4, 0x4b08374,11, 0x4b083a4,5, 0x4b08400,1, 0x4b10000,397, 0x4b10800,93, 0x4b10980,6, 0x4b10a00,41, 0x4b10b00,2, 0x4b10b20,19, 0x4b10c00,25, 0x4b10c80,1, 0x4b10d00,28, 0x4b10d80,1, 0x4b11000,397, 0x4b11800,93, 0x4b11980,6, 0x4b11a00,41, 0x4b11b00,2, 0x4b11b20,19, 0x4b11c00,25, 0x4b11c80,1, 0x4b11d00,28, 0x4b11d80,1, 0x4b12000,7, 0x4b12040,9, 0x4b12080,4, 0x4b120a0,5, 0x4b120c0,2, 0x4b14000,3, 0x4b14010,6, 0x4b14200,7, 0x4b14220,6, 0x4b14240,7, 0x4b14260,6, 0x4b14280,2, 0x4b1428c,2, 0x4b142a0,2, 0x4b142ac,2, 0x4b142c0,7, 0x4b142e0,7, 0x4b14300,2, 0x4b1430c,2, 0x4b14320,6, 0x4b14340,7, 0x4b14360,6, 0x4b14380,6, 0x4b143a0,7, 0x4b143c0,6, 0x4b143e0,6, 0x4b14400,3, 0x4b14440,12, 0x4b14484,1, 0x4b144c0,16, 0x4b14800,7, 0x4b14820,14, 0x4b14880,9, 0x4b148a8,12, 0x4b14900,7, 0x4b14920,14, 0x4b14980,9, 0x4b149a8,12, 0x4b14a00,10, 0x4b14a40,2, 0x4b14a4c,3, 0x4b14c00,5, 0x4b14c20,1, 0x4b14c28,3, 0x4b20000,534, 0x4b21000,2, 0x4b21040,9, 0x4b21080,7, 0x4b22000,534, 0x4b23000,12, 0x4b23044,6, 0x4b23080,8, 0x4b230a4,1, 0x4b230c0,7, 0x4b230e0,7, 0x4b23100,7, 0x4b23120,7, 0x4b23140,8, 0x4b23164,6, 0x4b23180,12, 0x4b24000,534, 0x4b25000,2, 0x4b25040,9, 0x4b25080,7, 0x4b26000,534, 0x4b27000,12, 0x4b27044,6, 0x4b27080,8, 0x4b270a4,1, 0x4b270c0,7, 0x4b270e0,7, 0x4b27100,7, 0x4b27120,7, 0x4b27140,8, 0x4b27164,6, 0x4b27180,12, 0x4b28004,5, 0x4b28200,27, 0x4b28280,4, 0x4b282c0,25, 0x4b28340,6, 0x4b28360,4, 0x4b28374,11, 0x4b283a4,5, 0x4b28400,1, 0x4b30000,397, 0x4b30800,93, 0x4b30980,6, 0x4b30a00,41, 0x4b30b00,2, 0x4b30b20,19, 0x4b30c00,25, 0x4b30c80,1, 0x4b30d00,28, 0x4b30d80,1, 0x4b31000,397, 0x4b31800,93, 0x4b31980,6, 0x4b31a00,41, 0x4b31b00,2, 0x4b31b20,19, 0x4b31c00,25, 0x4b31c80,1, 0x4b31d00,28, 0x4b31d80,1, 0x4b32000,7, 0x4b32040,9, 0x4b32080,4, 0x4b320a0,5, 0x4b320c0,2, 0x4b34000,3, 0x4b34010,6, 0x4b34200,7, 0x4b34220,6, 0x4b34240,7, 0x4b34260,6, 0x4b34280,2, 0x4b3428c,2, 0x4b342a0,2, 0x4b342ac,2, 0x4b342c0,7, 0x4b342e0,7, 0x4b34300,2, 0x4b3430c,2, 0x4b34320,6, 0x4b34340,7, 0x4b34360,6, 0x4b34380,6, 0x4b343a0,7, 0x4b343c0,6, 0x4b343e0,6, 0x4b34400,3, 0x4b34440,12, 0x4b34484,1, 0x4b344c0,16, 0x4b34800,7, 0x4b34820,14, 0x4b34880,9, 0x4b348a8,12, 0x4b34900,7, 0x4b34920,14, 0x4b34980,9, 0x4b349a8,12, 0x4b34a00,10, 0x4b34a40,2, 0x4b34a4c,3, 0x4b34c00,5, 0x4b34c20,1, 0x4b34c28,3, 0x4b40000,37, 0x4b40100,3, 0x4b40110,15, 0x4b40200,37, 0x4b40300,3, 0x4b40310,15, 0x4b40400,5, 0x4b40420,5, 0x4b40440,18, 0x4b40800,3, 0x4b40810,2, 0x4b40820,3, 0x4b40830,2, 0x4b40840,1, 0x4b41000,12, 0x4b41040,12, 0x4b41080,2, 0x4b41100,19, 0x4b41180,19, 0x4b41200,26, 0x4b41400,20, 0x4b41480,20, 0x4b41500,8, 0x4b41540,4, 0x4b41580,15, 0x4b415c0,15, 0x4b41600,9, 0x4b41630,5, 0x4b42000,37, 0x4b42100,3, 0x4b42110,15, 0x4b42200,37, 0x4b42300,3, 0x4b42310,15, 0x4b42400,5, 0x4b42420,5, 0x4b42440,18, 0x4b42800,3, 0x4b42810,2, 0x4b42820,3, 0x4b42830,2, 0x4b42840,1, 0x4b43000,12, 0x4b43040,12, 0x4b43080,2, 0x4b43100,19, 0x4b43180,19, 0x4b43200,26, 0x4b43400,20, 0x4b43480,20, 0x4b43500,8, 0x4b43540,4, 0x4b43580,15, 0x4b435c0,15, 0x4b43600,9, 0x4b43630,5, 0x4b44000,6, 0x4b44020,1, 0x4b4402c,3, 0x4b44040,11, 0x4b44070,3, 0x4b44080,2, 0x4b48000,49, 0x4b48100,12, 0x4b48140,4, 0x4b48184,1, 0x4b48198,2, 0x4b481a4,1, 0x4b481b8,7, 0x4b481e0,4, 0x4b48200,20, 0x4b48280,3, 0x4b48290,9, 0x4b482c0,6, 0x4b482e0,1, 0x4b482e8,7, 0x4b48400,49, 0x4b48500,12, 0x4b48540,4, 0x4b48584,1, 0x4b48598,2, 0x4b485a4,1, 0x4b485b8,7, 0x4b485e0,4, 0x4b48600,20, 0x4b48680,3, 0x4b48690,9, 0x4b486c0,6, 0x4b486e0,1, 0x4b486e8,7, 0x4b48800,49, 0x4b48900,12, 0x4b48940,4, 0x4b48984,1, 0x4b48998,2, 0x4b489a4,1, 0x4b489b8,7, 0x4b489e0,4, 0x4b48a00,20, 0x4b48a80,3, 0x4b48a90,9, 0x4b48ac0,6, 0x4b48ae0,1, 0x4b48ae8,7, 0x4b48c00,49, 0x4b48d00,12, 0x4b48d40,4, 0x4b48d84,1, 0x4b48d98,2, 0x4b48da4,1, 0x4b48db8,7, 0x4b48de0,4, 0x4b48e00,20, 0x4b48e80,3, 0x4b48e90,9, 0x4b48ec0,6, 0x4b48ee0,1, 0x4b48ee8,7, 0x4b49000,49, 0x4b49100,12, 0x4b49140,4, 0x4b49184,1, 0x4b49198,2, 0x4b491a4,1, 0x4b491b8,7, 0x4b491e0,4, 0x4b49200,20, 0x4b49280,3, 0x4b49290,9, 0x4b492c0,6, 0x4b492e0,1, 0x4b492e8,7, 0x4b49400,49, 0x4b49500,12, 0x4b49540,4, 0x4b49584,1, 0x4b49598,2, 0x4b495a4,1, 0x4b495b8,7, 0x4b495e0,4, 0x4b49600,20, 0x4b49680,3, 0x4b49690,9, 0x4b496c0,6, 0x4b496e0,1, 0x4b496e8,7, 0x4b49800,49, 0x4b49900,12, 0x4b49940,4, 0x4b49984,1, 0x4b49998,2, 0x4b499a4,1, 0x4b499b8,7, 0x4b499e0,4, 0x4b49a00,20, 0x4b49a80,3, 0x4b49a90,9, 0x4b49ac0,6, 0x4b49ae0,1, 0x4b49ae8,7, 0x4b4a000,20, 0x4b4a080,2, 0x4b4a100,20, 0x4b4a180,2, 0x4b4a200,4, 0x4b4a400,20, 0x4b4a480,2, 0x4b4a500,20, 0x4b4a580,2, 0x4b4a600,4, 0x4b4a800,3, 0x4b4a840,12, 0x4b4a880,12, 0x4b4a8c0,12, 0x4b4a900,12, 0x4b4a940,12, 0x4b4a980,12, 0x4b4a9c0,12, 0x4b4aa00,12, 0x4b4ac00,12, 0x4b4ac40,7, 0x4b4ac60,10, 0x4b4b004,1, 0x4b4b018,40, 0x4b4b100,7, 0x4b4b120,7, 0x4b4b140,2, 0x4b4b14c,2, 0x4b4b160,2, 0x4b4b16c,2, 0x4b4b180,18, 0x4b4b200,2, 0x4b4b220,10, 0x4b4b260,20, 0x4b4b2c0,7, 0x4b4b300,15, 0x4b4b340,9, 0x4b4b380,6, 0x4b4b3a0,4, 0x4b4b400,4, 0x4b4c000,106, 0x4b4c200,2, 0x4b4c240,9, 0x4b4c280,7, 0x4b4c400,106, 0x4b4c604,6, 0x4b4c700,15, 0x4b4c740,9, 0x4b4c780,6, 0x4b4c7a0,6, 0x4b4c800,8, 0x4b4c824,1, 0x4b4c830,15, 0x4b4c870,3, 0x4b60000,518, 0x4b60900,45, 0x4b60a00,45, 0x4b60b00,45, 0x4b60c00,45, 0x4b60d00,45, 0x4b60e00,45, 0x4b60f00,45, 0x4b61000,45, 0x4b61800,9, 0x4b61840,364, 0x4b61e00,19, 0x4b62000,9, 0x4b62040,364, 0x4b62600,19, 0x4b62800,6, 0x4b62820,3, 0x4b62840,7, 0x4b62880,6, 0x4b628a0,3, 0x4b628c0,7, 0x4b62900,1, 0x4b62908,3, 0x4b62918,8, 0x4b62940,7, 0x4b63000,2, 0x4b63800,18, 0x4b63880,18, 0x4b63c00,4, 0x4b63c20,7, 0x4b63d00,4, 0x4b63d80,20, 0x4b63e00,1, 0x4b64000,21, 0x4b64058,3, 0x4b64100,1, 0x4b64124,1, 0x4b6412c,5, 0x4b64144,1, 0x4b6414c,6, 0x4b64184,6, 0x4b641a4,6, 0x4b641c4,1, 0x4b641cc,1, 0x4b64400,9, 0x4b64440,9, 0x4b64480,15, 0x4b644c0,15, 0x4b64500,15, 0x4b64540,15, 0x4b64580,15, 0x4b645c0,15, 0x4b64600,15, 0x4b64640,15, 0x4b64680,59, 0x4b64800,1, 0x4b64808,16, 0x4b64850,1, 0x4b64858,7, 0x4b68000,3, 0x4b68010,1, 0x4b68018,3, 0x4b6a000,4, 0x4b6a080,19, 0x4b6a100,12, 0x4b6a200,4, 0x4b6a280,19, 0x4b6a300,12, 0x4b6a400,2, 0x4b6a600,124, 0x4b6a800,4, 0x4b6a880,18, 0x4b6a900,4, 0x4b6a980,23, 0x4b6aa00,10, 0x4b6aa2c,2, 0x4b6aa40,2, 0x4b6aa4c,3, 0x4b6aa60,2, 0x4b6aa6c,3, 0x4b6aa80,2, 0x4b6aa8c,2, 0x4b6aaa0,2, 0x4b6aaac,2, 0x4b6aac0,2, 0x4b6aacc,2, 0x4b6ab00,4, 0x4b6ab40,15, 0x4b6ab80,3, 0x4b6ab90,7, 0x4b6abb0,3, 0x4b6abc0,3, 0x4b6abd0,3, 0x4b6abe0,1, 0x4b6ac00,17, 0x4b6ae00,15, 0x4b6ae40,4, 0x4b6ae60,17, 0x4b6aec0,6, 0x4b6aee0,4, 0x4b6aef4,11, 0x4b6af24,28, 0x4b6b000,1, 0x4b6b080,1, 0x4b6b0a0,5, 0x4b6b0c0,5, 0x4b6b0e0,5, 0x4b6b100,1, 0x4b6b120,5, 0x4b6b140,5, 0x4b6b160,5, 0x4b6b180,24, 0x4b6b200,5, 0x4b6c000,20, 0x4b70000,518, 0x4b70900,45, 0x4b70a00,45, 0x4b70b00,45, 0x4b70c00,45, 0x4b70d00,45, 0x4b70e00,45, 0x4b70f00,45, 0x4b71000,45, 0x4b71800,9, 0x4b71840,364, 0x4b71e00,19, 0x4b72000,9, 0x4b72040,364, 0x4b72600,19, 0x4b72800,6, 0x4b72820,3, 0x4b72840,7, 0x4b72880,6, 0x4b728a0,3, 0x4b728c0,7, 0x4b72900,1, 0x4b72908,3, 0x4b72918,8, 0x4b72940,7, 0x4b73000,2, 0x4b73800,18, 0x4b73880,18, 0x4b73c00,4, 0x4b73c20,7, 0x4b73d00,4, 0x4b73d80,20, 0x4b73e00,1, 0x4b74000,21, 0x4b74058,3, 0x4b74100,1, 0x4b74124,1, 0x4b7412c,5, 0x4b74144,1, 0x4b7414c,6, 0x4b74184,6, 0x4b741a4,6, 0x4b741c4,1, 0x4b741cc,1, 0x4b74400,9, 0x4b74440,9, 0x4b74480,15, 0x4b744c0,15, 0x4b74500,15, 0x4b74540,15, 0x4b74580,15, 0x4b745c0,15, 0x4b74600,15, 0x4b74640,15, 0x4b74680,59, 0x4b74800,1, 0x4b74808,16, 0x4b74850,1, 0x4b74858,7, 0x4b78000,3, 0x4b78010,1, 0x4b78018,3, 0x4b7a000,4, 0x4b7a080,19, 0x4b7a100,12, 0x4b7a200,4, 0x4b7a280,19, 0x4b7a300,12, 0x4b7a400,2, 0x4b7a600,124, 0x4b7a800,4, 0x4b7a880,18, 0x4b7a900,4, 0x4b7a980,23, 0x4b7aa00,10, 0x4b7aa2c,2, 0x4b7aa40,2, 0x4b7aa4c,3, 0x4b7aa60,2, 0x4b7aa6c,3, 0x4b7aa80,2, 0x4b7aa8c,2, 0x4b7aaa0,2, 0x4b7aaac,2, 0x4b7aac0,2, 0x4b7aacc,2, 0x4b7ab00,4, 0x4b7ab40,15, 0x4b7ab80,3, 0x4b7ab90,7, 0x4b7abb0,3, 0x4b7abc0,3, 0x4b7abd0,3, 0x4b7abe0,1, 0x4b7ac00,17, 0x4b7ae00,15, 0x4b7ae40,4, 0x4b7ae60,17, 0x4b7aec0,6, 0x4b7aee0,4, 0x4b7aef4,11, 0x4b7af24,28, 0x4b7b000,1, 0x4b7b080,1, 0x4b7b0a0,5, 0x4b7b0c0,5, 0x4b7b0e0,5, 0x4b7b100,1, 0x4b7b120,5, 0x4b7b140,5, 0x4b7b160,5, 0x4b7b180,24, 0x4b7b200,5, 0x4b7c000,20, 0x4b80000,18, 0x4b80050,3, 0x4b80060,3, 0x4b80070,14, 0x4b800c0,5, 0x4b80400,13, 0x4b80440,2, 0x4b8044c,3, 0x4b80460,2, 0x4b80480,13, 0x4b804c0,2, 0x4b804cc,3, 0x4b804e0,2, 0x4b80500,1, 0x4b80508,16, 0x4b80560,2, 0x4b8056c,3, 0x4b80600,4, 0x4b80680,19, 0x4b80800,24, 0x4b80864,2, 0x4b80870,4, 0x4b80a00,27, 0x4b80a80,4, 0x4b80ac0,25, 0x4b80b40,6, 0x4b80b60,4, 0x4b80b74,11, 0x4b80ba4,8, 0x4b80c00,3, 0x4b80c10,3, 0x4b80c20,1, 0x4b80c40,11, 0x4b80c80,23, 0x4b80ce0,15, 0x4b80d20,15, 0x4b80d60,2, 0x4b80d6c,2, 0x4b80d80,1, 0x4b81000,18, 0x4b81050,3, 0x4b81060,3, 0x4b81070,14, 0x4b810c0,5, 0x4b81400,13, 0x4b81440,2, 0x4b8144c,3, 0x4b81460,2, 0x4b81480,13, 0x4b814c0,2, 0x4b814cc,3, 0x4b814e0,2, 0x4b81500,1, 0x4b81508,16, 0x4b81560,2, 0x4b8156c,3, 0x4b81600,4, 0x4b81680,19, 0x4b81800,24, 0x4b81864,2, 0x4b81870,4, 0x4b81a00,27, 0x4b81a80,4, 0x4b81ac0,25, 0x4b81b40,6, 0x4b81b60,4, 0x4b81b74,11, 0x4b81ba4,8, 0x4b81c00,3, 0x4b81c10,3, 0x4b81c20,1, 0x4b81c40,11, 0x4b81c80,23, 0x4b81ce0,15, 0x4b81d20,15, 0x4b81d60,2, 0x4b81d6c,2, 0x4b81d80,1, 0x4b82000,20, 0x4b82080,7, 0x4b820a0,1, 0x4b820b0,1, 0x4b820b8,2, 0x4b84000,14, 0x4c00000,534, 0x4c01000,2, 0x4c01040,9, 0x4c01080,7, 0x4c02000,534, 0x4c03000,12, 0x4c03044,6, 0x4c03080,8, 0x4c030a4,1, 0x4c030c0,7, 0x4c030e0,7, 0x4c03100,7, 0x4c03120,7, 0x4c03140,8, 0x4c03164,6, 0x4c03180,12, 0x4c04000,534, 0x4c05000,2, 0x4c05040,9, 0x4c05080,7, 0x4c06000,534, 0x4c07000,12, 0x4c07044,6, 0x4c07080,8, 0x4c070a4,1, 0x4c070c0,7, 0x4c070e0,7, 0x4c07100,7, 0x4c07120,7, 0x4c07140,8, 0x4c07164,6, 0x4c07180,12, 0x4c08004,5, 0x4c08200,27, 0x4c08280,4, 0x4c082c0,25, 0x4c08340,6, 0x4c08360,4, 0x4c08374,11, 0x4c083a4,5, 0x4c08400,1, 0x4c10000,397, 0x4c10800,93, 0x4c10980,6, 0x4c10a00,41, 0x4c10b00,2, 0x4c10b20,19, 0x4c10c00,25, 0x4c10c80,1, 0x4c10d00,28, 0x4c10d80,1, 0x4c11000,397, 0x4c11800,93, 0x4c11980,6, 0x4c11a00,41, 0x4c11b00,2, 0x4c11b20,19, 0x4c11c00,25, 0x4c11c80,1, 0x4c11d00,28, 0x4c11d80,1, 0x4c12000,7, 0x4c12040,9, 0x4c12080,4, 0x4c120a0,5, 0x4c120c0,2, 0x4c14000,3, 0x4c14010,6, 0x4c14200,7, 0x4c14220,6, 0x4c14240,7, 0x4c14260,6, 0x4c14280,2, 0x4c1428c,2, 0x4c142a0,2, 0x4c142ac,2, 0x4c142c0,7, 0x4c142e0,7, 0x4c14300,2, 0x4c1430c,2, 0x4c14320,6, 0x4c14340,7, 0x4c14360,6, 0x4c14380,6, 0x4c143a0,7, 0x4c143c0,6, 0x4c143e0,6, 0x4c14400,3, 0x4c14440,12, 0x4c14484,1, 0x4c144c0,16, 0x4c14800,7, 0x4c14820,14, 0x4c14880,9, 0x4c148a8,12, 0x4c14900,7, 0x4c14920,14, 0x4c14980,9, 0x4c149a8,12, 0x4c14a00,10, 0x4c14a40,2, 0x4c14a4c,3, 0x4c14c00,5, 0x4c14c20,1, 0x4c14c28,3, 0x4c20000,534, 0x4c21000,2, 0x4c21040,9, 0x4c21080,7, 0x4c22000,534, 0x4c23000,12, 0x4c23044,6, 0x4c23080,8, 0x4c230a4,1, 0x4c230c0,7, 0x4c230e0,7, 0x4c23100,7, 0x4c23120,7, 0x4c23140,8, 0x4c23164,6, 0x4c23180,12, 0x4c24000,534, 0x4c25000,2, 0x4c25040,9, 0x4c25080,7, 0x4c26000,534, 0x4c27000,12, 0x4c27044,6, 0x4c27080,8, 0x4c270a4,1, 0x4c270c0,7, 0x4c270e0,7, 0x4c27100,7, 0x4c27120,7, 0x4c27140,8, 0x4c27164,6, 0x4c27180,12, 0x4c28004,5, 0x4c28200,27, 0x4c28280,4, 0x4c282c0,25, 0x4c28340,6, 0x4c28360,4, 0x4c28374,11, 0x4c283a4,5, 0x4c28400,1, 0x4c30000,397, 0x4c30800,93, 0x4c30980,6, 0x4c30a00,41, 0x4c30b00,2, 0x4c30b20,19, 0x4c30c00,25, 0x4c30c80,1, 0x4c30d00,28, 0x4c30d80,1, 0x4c31000,397, 0x4c31800,93, 0x4c31980,6, 0x4c31a00,41, 0x4c31b00,2, 0x4c31b20,19, 0x4c31c00,25, 0x4c31c80,1, 0x4c31d00,28, 0x4c31d80,1, 0x4c32000,7, 0x4c32040,9, 0x4c32080,4, 0x4c320a0,5, 0x4c320c0,2, 0x4c34000,3, 0x4c34010,6, 0x4c34200,7, 0x4c34220,6, 0x4c34240,7, 0x4c34260,6, 0x4c34280,2, 0x4c3428c,2, 0x4c342a0,2, 0x4c342ac,2, 0x4c342c0,7, 0x4c342e0,7, 0x4c34300,2, 0x4c3430c,2, 0x4c34320,6, 0x4c34340,7, 0x4c34360,6, 0x4c34380,6, 0x4c343a0,7, 0x4c343c0,6, 0x4c343e0,6, 0x4c34400,3, 0x4c34440,12, 0x4c34484,1, 0x4c344c0,16, 0x4c34800,7, 0x4c34820,14, 0x4c34880,9, 0x4c348a8,12, 0x4c34900,7, 0x4c34920,14, 0x4c34980,9, 0x4c349a8,12, 0x4c34a00,10, 0x4c34a40,2, 0x4c34a4c,3, 0x4c34c00,5, 0x4c34c20,1, 0x4c34c28,3, 0x4c40000,37, 0x4c40100,3, 0x4c40110,15, 0x4c40200,37, 0x4c40300,3, 0x4c40310,15, 0x4c40400,5, 0x4c40420,5, 0x4c40440,18, 0x4c40800,3, 0x4c40810,2, 0x4c40820,3, 0x4c40830,2, 0x4c40840,1, 0x4c41000,12, 0x4c41040,12, 0x4c41080,2, 0x4c41100,19, 0x4c41180,19, 0x4c41200,26, 0x4c41400,20, 0x4c41480,20, 0x4c41500,8, 0x4c41540,4, 0x4c41580,15, 0x4c415c0,15, 0x4c41600,9, 0x4c41630,5, 0x4c42000,37, 0x4c42100,3, 0x4c42110,15, 0x4c42200,37, 0x4c42300,3, 0x4c42310,15, 0x4c42400,5, 0x4c42420,5, 0x4c42440,18, 0x4c42800,3, 0x4c42810,2, 0x4c42820,3, 0x4c42830,2, 0x4c42840,1, 0x4c43000,12, 0x4c43040,12, 0x4c43080,2, 0x4c43100,19, 0x4c43180,19, 0x4c43200,26, 0x4c43400,20, 0x4c43480,20, 0x4c43500,8, 0x4c43540,4, 0x4c43580,15, 0x4c435c0,15, 0x4c43600,9, 0x4c43630,5, 0x4c44000,6, 0x4c44020,1, 0x4c4402c,3, 0x4c44040,11, 0x4c44070,3, 0x4c44080,2, 0x4c48000,49, 0x4c48100,12, 0x4c48140,4, 0x4c48184,1, 0x4c48198,2, 0x4c481a4,1, 0x4c481b8,7, 0x4c481e0,4, 0x4c48200,20, 0x4c48280,3, 0x4c48290,9, 0x4c482c0,6, 0x4c482e0,1, 0x4c482e8,7, 0x4c48400,49, 0x4c48500,12, 0x4c48540,4, 0x4c48584,1, 0x4c48598,2, 0x4c485a4,1, 0x4c485b8,7, 0x4c485e0,4, 0x4c48600,20, 0x4c48680,3, 0x4c48690,9, 0x4c486c0,6, 0x4c486e0,1, 0x4c486e8,7, 0x4c48800,49, 0x4c48900,12, 0x4c48940,4, 0x4c48984,1, 0x4c48998,2, 0x4c489a4,1, 0x4c489b8,7, 0x4c489e0,4, 0x4c48a00,20, 0x4c48a80,3, 0x4c48a90,9, 0x4c48ac0,6, 0x4c48ae0,1, 0x4c48ae8,7, 0x4c48c00,49, 0x4c48d00,12, 0x4c48d40,4, 0x4c48d84,1, 0x4c48d98,2, 0x4c48da4,1, 0x4c48db8,7, 0x4c48de0,4, 0x4c48e00,20, 0x4c48e80,3, 0x4c48e90,9, 0x4c48ec0,6, 0x4c48ee0,1, 0x4c48ee8,7, 0x4c49000,49, 0x4c49100,12, 0x4c49140,4, 0x4c49184,1, 0x4c49198,2, 0x4c491a4,1, 0x4c491b8,7, 0x4c491e0,4, 0x4c49200,20, 0x4c49280,3, 0x4c49290,9, 0x4c492c0,6, 0x4c492e0,1, 0x4c492e8,7, 0x4c49400,49, 0x4c49500,12, 0x4c49540,4, 0x4c49584,1, 0x4c49598,2, 0x4c495a4,1, 0x4c495b8,7, 0x4c495e0,4, 0x4c49600,20, 0x4c49680,3, 0x4c49690,9, 0x4c496c0,6, 0x4c496e0,1, 0x4c496e8,7, 0x4c49800,49, 0x4c49900,12, 0x4c49940,4, 0x4c49984,1, 0x4c49998,2, 0x4c499a4,1, 0x4c499b8,7, 0x4c499e0,4, 0x4c49a00,20, 0x4c49a80,3, 0x4c49a90,9, 0x4c49ac0,6, 0x4c49ae0,1, 0x4c49ae8,7, 0x4c4a000,20, 0x4c4a080,2, 0x4c4a100,20, 0x4c4a180,2, 0x4c4a200,4, 0x4c4a400,20, 0x4c4a480,2, 0x4c4a500,20, 0x4c4a580,2, 0x4c4a600,4, 0x4c4a800,3, 0x4c4a840,12, 0x4c4a880,12, 0x4c4a8c0,12, 0x4c4a900,12, 0x4c4a940,12, 0x4c4a980,12, 0x4c4a9c0,12, 0x4c4aa00,12, 0x4c4ac00,12, 0x4c4ac40,7, 0x4c4ac60,10, 0x4c4b004,1, 0x4c4b018,40, 0x4c4b100,7, 0x4c4b120,7, 0x4c4b140,2, 0x4c4b14c,2, 0x4c4b160,2, 0x4c4b16c,2, 0x4c4b180,18, 0x4c4b200,2, 0x4c4b220,10, 0x4c4b260,20, 0x4c4b2c0,7, 0x4c4b300,15, 0x4c4b340,9, 0x4c4b380,6, 0x4c4b3a0,4, 0x4c4b400,4, 0x4c4c000,106, 0x4c4c200,2, 0x4c4c240,9, 0x4c4c280,7, 0x4c4c400,106, 0x4c4c604,6, 0x4c4c700,15, 0x4c4c740,9, 0x4c4c780,6, 0x4c4c7a0,6, 0x4c4c800,8, 0x4c4c824,1, 0x4c4c830,15, 0x4c4c870,3, 0x4c60000,518, 0x4c60900,45, 0x4c60a00,45, 0x4c60b00,45, 0x4c60c00,45, 0x4c60d00,45, 0x4c60e00,45, 0x4c60f00,45, 0x4c61000,45, 0x4c61800,9, 0x4c61840,364, 0x4c61e00,19, 0x4c62000,9, 0x4c62040,364, 0x4c62600,19, 0x4c62800,6, 0x4c62820,3, 0x4c62840,7, 0x4c62880,6, 0x4c628a0,3, 0x4c628c0,7, 0x4c62900,1, 0x4c62908,3, 0x4c62918,8, 0x4c62940,7, 0x4c63000,2, 0x4c63800,18, 0x4c63880,18, 0x4c63c00,4, 0x4c63c20,7, 0x4c63d00,4, 0x4c63d80,20, 0x4c63e00,1, 0x4c64000,21, 0x4c64058,3, 0x4c64100,1, 0x4c64124,1, 0x4c6412c,5, 0x4c64144,1, 0x4c6414c,6, 0x4c64184,6, 0x4c641a4,6, 0x4c641c4,1, 0x4c641cc,1, 0x4c64400,9, 0x4c64440,9, 0x4c64480,15, 0x4c644c0,15, 0x4c64500,15, 0x4c64540,15, 0x4c64580,15, 0x4c645c0,15, 0x4c64600,15, 0x4c64640,15, 0x4c64680,59, 0x4c64800,1, 0x4c64808,16, 0x4c64850,1, 0x4c64858,7, 0x4c68000,3, 0x4c68010,1, 0x4c68018,3, 0x4c6a000,4, 0x4c6a080,19, 0x4c6a100,12, 0x4c6a200,4, 0x4c6a280,19, 0x4c6a300,12, 0x4c6a400,2, 0x4c6a600,124, 0x4c6a800,4, 0x4c6a880,18, 0x4c6a900,4, 0x4c6a980,23, 0x4c6aa00,10, 0x4c6aa2c,2, 0x4c6aa40,2, 0x4c6aa4c,3, 0x4c6aa60,2, 0x4c6aa6c,3, 0x4c6aa80,2, 0x4c6aa8c,2, 0x4c6aaa0,2, 0x4c6aaac,2, 0x4c6aac0,2, 0x4c6aacc,2, 0x4c6ab00,4, 0x4c6ab40,15, 0x4c6ab80,3, 0x4c6ab90,7, 0x4c6abb0,3, 0x4c6abc0,3, 0x4c6abd0,3, 0x4c6abe0,1, 0x4c6ac00,17, 0x4c6ae00,15, 0x4c6ae40,4, 0x4c6ae60,17, 0x4c6aec0,6, 0x4c6aee0,4, 0x4c6aef4,11, 0x4c6af24,28, 0x4c6b000,1, 0x4c6b080,1, 0x4c6b0a0,5, 0x4c6b0c0,5, 0x4c6b0e0,5, 0x4c6b100,1, 0x4c6b120,5, 0x4c6b140,5, 0x4c6b160,5, 0x4c6b180,24, 0x4c6b200,5, 0x4c6c000,20, 0x4c70000,518, 0x4c70900,45, 0x4c70a00,45, 0x4c70b00,45, 0x4c70c00,45, 0x4c70d00,45, 0x4c70e00,45, 0x4c70f00,45, 0x4c71000,45, 0x4c71800,9, 0x4c71840,364, 0x4c71e00,19, 0x4c72000,9, 0x4c72040,364, 0x4c72600,19, 0x4c72800,6, 0x4c72820,3, 0x4c72840,7, 0x4c72880,6, 0x4c728a0,3, 0x4c728c0,7, 0x4c72900,1, 0x4c72908,3, 0x4c72918,8, 0x4c72940,7, 0x4c73000,2, 0x4c73800,18, 0x4c73880,18, 0x4c73c00,4, 0x4c73c20,7, 0x4c73d00,4, 0x4c73d80,20, 0x4c73e00,1, 0x4c74000,21, 0x4c74058,3, 0x4c74100,1, 0x4c74124,1, 0x4c7412c,5, 0x4c74144,1, 0x4c7414c,6, 0x4c74184,6, 0x4c741a4,6, 0x4c741c4,1, 0x4c741cc,1, 0x4c74400,9, 0x4c74440,9, 0x4c74480,15, 0x4c744c0,15, 0x4c74500,15, 0x4c74540,15, 0x4c74580,15, 0x4c745c0,15, 0x4c74600,15, 0x4c74640,15, 0x4c74680,59, 0x4c74800,1, 0x4c74808,16, 0x4c74850,1, 0x4c74858,7, 0x4c78000,3, 0x4c78010,1, 0x4c78018,3, 0x4c7a000,4, 0x4c7a080,19, 0x4c7a100,12, 0x4c7a200,4, 0x4c7a280,19, 0x4c7a300,12, 0x4c7a400,2, 0x4c7a600,124, 0x4c7a800,4, 0x4c7a880,18, 0x4c7a900,4, 0x4c7a980,23, 0x4c7aa00,10, 0x4c7aa2c,2, 0x4c7aa40,2, 0x4c7aa4c,3, 0x4c7aa60,2, 0x4c7aa6c,3, 0x4c7aa80,2, 0x4c7aa8c,2, 0x4c7aaa0,2, 0x4c7aaac,2, 0x4c7aac0,2, 0x4c7aacc,2, 0x4c7ab00,4, 0x4c7ab40,15, 0x4c7ab80,3, 0x4c7ab90,7, 0x4c7abb0,3, 0x4c7abc0,3, 0x4c7abd0,3, 0x4c7abe0,1, 0x4c7ac00,17, 0x4c7ae00,15, 0x4c7ae40,4, 0x4c7ae60,17, 0x4c7aec0,6, 0x4c7aee0,4, 0x4c7aef4,11, 0x4c7af24,28, 0x4c7b000,1, 0x4c7b080,1, 0x4c7b0a0,5, 0x4c7b0c0,5, 0x4c7b0e0,5, 0x4c7b100,1, 0x4c7b120,5, 0x4c7b140,5, 0x4c7b160,5, 0x4c7b180,24, 0x4c7b200,5, 0x4c7c000,20, 0x4c80000,18, 0x4c80050,3, 0x4c80060,3, 0x4c80070,14, 0x4c800c0,5, 0x4c80400,13, 0x4c80440,2, 0x4c8044c,3, 0x4c80460,2, 0x4c80480,13, 0x4c804c0,2, 0x4c804cc,3, 0x4c804e0,2, 0x4c80500,1, 0x4c80508,16, 0x4c80560,2, 0x4c8056c,3, 0x4c80600,4, 0x4c80680,19, 0x4c80800,24, 0x4c80864,2, 0x4c80870,4, 0x4c80a00,27, 0x4c80a80,4, 0x4c80ac0,25, 0x4c80b40,6, 0x4c80b60,4, 0x4c80b74,11, 0x4c80ba4,8, 0x4c80c00,3, 0x4c80c10,3, 0x4c80c20,1, 0x4c80c40,11, 0x4c80c80,23, 0x4c80ce0,15, 0x4c80d20,15, 0x4c80d60,2, 0x4c80d6c,2, 0x4c80d80,1, 0x4c81000,18, 0x4c81050,3, 0x4c81060,3, 0x4c81070,14, 0x4c810c0,5, 0x4c81400,13, 0x4c81440,2, 0x4c8144c,3, 0x4c81460,2, 0x4c81480,13, 0x4c814c0,2, 0x4c814cc,3, 0x4c814e0,2, 0x4c81500,1, 0x4c81508,16, 0x4c81560,2, 0x4c8156c,3, 0x4c81600,4, 0x4c81680,19, 0x4c81800,24, 0x4c81864,2, 0x4c81870,4, 0x4c81a00,27, 0x4c81a80,4, 0x4c81ac0,25, 0x4c81b40,6, 0x4c81b60,4, 0x4c81b74,11, 0x4c81ba4,8, 0x4c81c00,3, 0x4c81c10,3, 0x4c81c20,1, 0x4c81c40,11, 0x4c81c80,23, 0x4c81ce0,15, 0x4c81d20,15, 0x4c81d60,2, 0x4c81d6c,2, 0x4c81d80,1, 0x4c82000,20, 0x4c82080,7, 0x4c820a0,1, 0x4c820b0,1, 0x4c820b8,2, 0x4c84000,14, 0x4d00000,534, 0x4d01000,2, 0x4d01040,9, 0x4d01080,7, 0x4d02000,534, 0x4d03000,12, 0x4d03044,6, 0x4d03080,8, 0x4d030a4,1, 0x4d030c0,7, 0x4d030e0,7, 0x4d03100,7, 0x4d03120,7, 0x4d03140,8, 0x4d03164,6, 0x4d03180,12, 0x4d04000,534, 0x4d05000,2, 0x4d05040,9, 0x4d05080,7, 0x4d06000,534, 0x4d07000,12, 0x4d07044,6, 0x4d07080,8, 0x4d070a4,1, 0x4d070c0,7, 0x4d070e0,7, 0x4d07100,7, 0x4d07120,7, 0x4d07140,8, 0x4d07164,6, 0x4d07180,12, 0x4d08004,5, 0x4d08200,27, 0x4d08280,4, 0x4d082c0,25, 0x4d08340,6, 0x4d08360,4, 0x4d08374,11, 0x4d083a4,5, 0x4d08400,1, 0x4d10000,397, 0x4d10800,93, 0x4d10980,6, 0x4d10a00,41, 0x4d10b00,2, 0x4d10b20,19, 0x4d10c00,25, 0x4d10c80,1, 0x4d10d00,28, 0x4d10d80,1, 0x4d11000,397, 0x4d11800,93, 0x4d11980,6, 0x4d11a00,41, 0x4d11b00,2, 0x4d11b20,19, 0x4d11c00,25, 0x4d11c80,1, 0x4d11d00,28, 0x4d11d80,1, 0x4d12000,7, 0x4d12040,9, 0x4d12080,4, 0x4d120a0,5, 0x4d120c0,2, 0x4d14000,3, 0x4d14010,6, 0x4d14200,7, 0x4d14220,6, 0x4d14240,7, 0x4d14260,6, 0x4d14280,2, 0x4d1428c,2, 0x4d142a0,2, 0x4d142ac,2, 0x4d142c0,7, 0x4d142e0,7, 0x4d14300,2, 0x4d1430c,2, 0x4d14320,6, 0x4d14340,7, 0x4d14360,6, 0x4d14380,6, 0x4d143a0,7, 0x4d143c0,6, 0x4d143e0,6, 0x4d14400,3, 0x4d14440,12, 0x4d14484,1, 0x4d144c0,16, 0x4d14800,7, 0x4d14820,14, 0x4d14880,9, 0x4d148a8,12, 0x4d14900,7, 0x4d14920,14, 0x4d14980,9, 0x4d149a8,12, 0x4d14a00,10, 0x4d14a40,2, 0x4d14a4c,3, 0x4d14c00,5, 0x4d14c20,1, 0x4d14c28,3, 0x4d20000,534, 0x4d21000,2, 0x4d21040,9, 0x4d21080,7, 0x4d22000,534, 0x4d23000,12, 0x4d23044,6, 0x4d23080,8, 0x4d230a4,1, 0x4d230c0,7, 0x4d230e0,7, 0x4d23100,7, 0x4d23120,7, 0x4d23140,8, 0x4d23164,6, 0x4d23180,12, 0x4d24000,534, 0x4d25000,2, 0x4d25040,9, 0x4d25080,7, 0x4d26000,534, 0x4d27000,12, 0x4d27044,6, 0x4d27080,8, 0x4d270a4,1, 0x4d270c0,7, 0x4d270e0,7, 0x4d27100,7, 0x4d27120,7, 0x4d27140,8, 0x4d27164,6, 0x4d27180,12, 0x4d28004,5, 0x4d28200,27, 0x4d28280,4, 0x4d282c0,25, 0x4d28340,6, 0x4d28360,4, 0x4d28374,11, 0x4d283a4,5, 0x4d28400,1, 0x4d30000,397, 0x4d30800,93, 0x4d30980,6, 0x4d30a00,41, 0x4d30b00,2, 0x4d30b20,19, 0x4d30c00,25, 0x4d30c80,1, 0x4d30d00,28, 0x4d30d80,1, 0x4d31000,397, 0x4d31800,93, 0x4d31980,6, 0x4d31a00,41, 0x4d31b00,2, 0x4d31b20,19, 0x4d31c00,25, 0x4d31c80,1, 0x4d31d00,28, 0x4d31d80,1, 0x4d32000,7, 0x4d32040,9, 0x4d32080,4, 0x4d320a0,5, 0x4d320c0,2, 0x4d34000,3, 0x4d34010,6, 0x4d34200,7, 0x4d34220,6, 0x4d34240,7, 0x4d34260,6, 0x4d34280,2, 0x4d3428c,2, 0x4d342a0,2, 0x4d342ac,2, 0x4d342c0,7, 0x4d342e0,7, 0x4d34300,2, 0x4d3430c,2, 0x4d34320,6, 0x4d34340,7, 0x4d34360,6, 0x4d34380,6, 0x4d343a0,7, 0x4d343c0,6, 0x4d343e0,6, 0x4d34400,3, 0x4d34440,12, 0x4d34484,1, 0x4d344c0,16, 0x4d34800,7, 0x4d34820,14, 0x4d34880,9, 0x4d348a8,12, 0x4d34900,7, 0x4d34920,14, 0x4d34980,9, 0x4d349a8,12, 0x4d34a00,10, 0x4d34a40,2, 0x4d34a4c,3, 0x4d34c00,5, 0x4d34c20,1, 0x4d34c28,3, 0x4d40000,37, 0x4d40100,3, 0x4d40110,15, 0x4d40200,37, 0x4d40300,3, 0x4d40310,15, 0x4d40400,5, 0x4d40420,5, 0x4d40440,18, 0x4d40800,3, 0x4d40810,2, 0x4d40820,3, 0x4d40830,2, 0x4d40840,1, 0x4d41000,12, 0x4d41040,12, 0x4d41080,2, 0x4d41100,19, 0x4d41180,19, 0x4d41200,26, 0x4d41400,20, 0x4d41480,20, 0x4d41500,8, 0x4d41540,4, 0x4d41580,15, 0x4d415c0,15, 0x4d41600,9, 0x4d41630,5, 0x4d42000,37, 0x4d42100,3, 0x4d42110,15, 0x4d42200,37, 0x4d42300,3, 0x4d42310,15, 0x4d42400,5, 0x4d42420,5, 0x4d42440,18, 0x4d42800,3, 0x4d42810,2, 0x4d42820,3, 0x4d42830,2, 0x4d42840,1, 0x4d43000,12, 0x4d43040,12, 0x4d43080,2, 0x4d43100,19, 0x4d43180,19, 0x4d43200,26, 0x4d43400,20, 0x4d43480,20, 0x4d43500,8, 0x4d43540,4, 0x4d43580,15, 0x4d435c0,15, 0x4d43600,9, 0x4d43630,5, 0x4d44000,6, 0x4d44020,1, 0x4d4402c,3, 0x4d44040,11, 0x4d44070,3, 0x4d44080,2, 0x4d48000,49, 0x4d48100,12, 0x4d48140,4, 0x4d48184,1, 0x4d48198,2, 0x4d481a4,1, 0x4d481b8,7, 0x4d481e0,4, 0x4d48200,20, 0x4d48280,3, 0x4d48290,9, 0x4d482c0,6, 0x4d482e0,1, 0x4d482e8,7, 0x4d48400,49, 0x4d48500,12, 0x4d48540,4, 0x4d48584,1, 0x4d48598,2, 0x4d485a4,1, 0x4d485b8,7, 0x4d485e0,4, 0x4d48600,20, 0x4d48680,3, 0x4d48690,9, 0x4d486c0,6, 0x4d486e0,1, 0x4d486e8,7, 0x4d48800,49, 0x4d48900,12, 0x4d48940,4, 0x4d48984,1, 0x4d48998,2, 0x4d489a4,1, 0x4d489b8,7, 0x4d489e0,4, 0x4d48a00,20, 0x4d48a80,3, 0x4d48a90,9, 0x4d48ac0,6, 0x4d48ae0,1, 0x4d48ae8,7, 0x4d48c00,49, 0x4d48d00,12, 0x4d48d40,4, 0x4d48d84,1, 0x4d48d98,2, 0x4d48da4,1, 0x4d48db8,7, 0x4d48de0,4, 0x4d48e00,20, 0x4d48e80,3, 0x4d48e90,9, 0x4d48ec0,6, 0x4d48ee0,1, 0x4d48ee8,7, 0x4d49000,49, 0x4d49100,12, 0x4d49140,4, 0x4d49184,1, 0x4d49198,2, 0x4d491a4,1, 0x4d491b8,7, 0x4d491e0,4, 0x4d49200,20, 0x4d49280,3, 0x4d49290,9, 0x4d492c0,6, 0x4d492e0,1, 0x4d492e8,7, 0x4d49400,49, 0x4d49500,12, 0x4d49540,4, 0x4d49584,1, 0x4d49598,2, 0x4d495a4,1, 0x4d495b8,7, 0x4d495e0,4, 0x4d49600,20, 0x4d49680,3, 0x4d49690,9, 0x4d496c0,6, 0x4d496e0,1, 0x4d496e8,7, 0x4d49800,49, 0x4d49900,12, 0x4d49940,4, 0x4d49984,1, 0x4d49998,2, 0x4d499a4,1, 0x4d499b8,7, 0x4d499e0,4, 0x4d49a00,20, 0x4d49a80,3, 0x4d49a90,9, 0x4d49ac0,6, 0x4d49ae0,1, 0x4d49ae8,7, 0x4d4a000,20, 0x4d4a080,2, 0x4d4a100,20, 0x4d4a180,2, 0x4d4a200,4, 0x4d4a400,20, 0x4d4a480,2, 0x4d4a500,20, 0x4d4a580,2, 0x4d4a600,4, 0x4d4a800,3, 0x4d4a840,12, 0x4d4a880,12, 0x4d4a8c0,12, 0x4d4a900,12, 0x4d4a940,12, 0x4d4a980,12, 0x4d4a9c0,12, 0x4d4aa00,12, 0x4d4ac00,12, 0x4d4ac40,7, 0x4d4ac60,10, 0x4d4b004,1, 0x4d4b018,40, 0x4d4b100,7, 0x4d4b120,7, 0x4d4b140,2, 0x4d4b14c,2, 0x4d4b160,2, 0x4d4b16c,2, 0x4d4b180,18, 0x4d4b200,2, 0x4d4b220,10, 0x4d4b260,20, 0x4d4b2c0,7, 0x4d4b300,15, 0x4d4b340,9, 0x4d4b380,6, 0x4d4b3a0,4, 0x4d4b400,4, 0x4d4c000,106, 0x4d4c200,2, 0x4d4c240,9, 0x4d4c280,7, 0x4d4c400,106, 0x4d4c604,6, 0x4d4c700,15, 0x4d4c740,9, 0x4d4c780,6, 0x4d4c7a0,6, 0x4d4c800,8, 0x4d4c824,1, 0x4d4c830,15, 0x4d4c870,3, 0x4d60000,518, 0x4d60900,45, 0x4d60a00,45, 0x4d60b00,45, 0x4d60c00,45, 0x4d60d00,45, 0x4d60e00,45, 0x4d60f00,45, 0x4d61000,45, 0x4d61800,9, 0x4d61840,364, 0x4d61e00,19, 0x4d62000,9, 0x4d62040,364, 0x4d62600,19, 0x4d62800,6, 0x4d62820,3, 0x4d62840,7, 0x4d62880,6, 0x4d628a0,3, 0x4d628c0,7, 0x4d62900,1, 0x4d62908,3, 0x4d62918,8, 0x4d62940,7, 0x4d63000,2, 0x4d63800,18, 0x4d63880,18, 0x4d63c00,4, 0x4d63c20,7, 0x4d63d00,4, 0x4d63d80,20, 0x4d63e00,1, 0x4d64000,21, 0x4d64058,3, 0x4d64100,1, 0x4d64124,1, 0x4d6412c,5, 0x4d64144,1, 0x4d6414c,6, 0x4d64184,6, 0x4d641a4,6, 0x4d641c4,1, 0x4d641cc,1, 0x4d64400,9, 0x4d64440,9, 0x4d64480,15, 0x4d644c0,15, 0x4d64500,15, 0x4d64540,15, 0x4d64580,15, 0x4d645c0,15, 0x4d64600,15, 0x4d64640,15, 0x4d64680,59, 0x4d64800,1, 0x4d64808,16, 0x4d64850,1, 0x4d64858,7, 0x4d68000,3, 0x4d68010,1, 0x4d68018,3, 0x4d6a000,4, 0x4d6a080,19, 0x4d6a100,12, 0x4d6a200,4, 0x4d6a280,19, 0x4d6a300,12, 0x4d6a400,2, 0x4d6a600,124, 0x4d6a800,4, 0x4d6a880,18, 0x4d6a900,4, 0x4d6a980,23, 0x4d6aa00,10, 0x4d6aa2c,2, 0x4d6aa40,2, 0x4d6aa4c,3, 0x4d6aa60,2, 0x4d6aa6c,3, 0x4d6aa80,2, 0x4d6aa8c,2, 0x4d6aaa0,2, 0x4d6aaac,2, 0x4d6aac0,2, 0x4d6aacc,2, 0x4d6ab00,4, 0x4d6ab40,15, 0x4d6ab80,3, 0x4d6ab90,7, 0x4d6abb0,3, 0x4d6abc0,3, 0x4d6abd0,3, 0x4d6abe0,1, 0x4d6ac00,17, 0x4d6ae00,15, 0x4d6ae40,4, 0x4d6ae60,17, 0x4d6aec0,6, 0x4d6aee0,4, 0x4d6aef4,11, 0x4d6af24,28, 0x4d6b000,1, 0x4d6b080,1, 0x4d6b0a0,5, 0x4d6b0c0,5, 0x4d6b0e0,5, 0x4d6b100,1, 0x4d6b120,5, 0x4d6b140,5, 0x4d6b160,5, 0x4d6b180,24, 0x4d6b200,5, 0x4d6c000,20, 0x4d70000,518, 0x4d70900,45, 0x4d70a00,45, 0x4d70b00,45, 0x4d70c00,45, 0x4d70d00,45, 0x4d70e00,45, 0x4d70f00,45, 0x4d71000,45, 0x4d71800,9, 0x4d71840,364, 0x4d71e00,19, 0x4d72000,9, 0x4d72040,364, 0x4d72600,19, 0x4d72800,6, 0x4d72820,3, 0x4d72840,7, 0x4d72880,6, 0x4d728a0,3, 0x4d728c0,7, 0x4d72900,1, 0x4d72908,3, 0x4d72918,8, 0x4d72940,7, 0x4d73000,2, 0x4d73800,18, 0x4d73880,18, 0x4d73c00,4, 0x4d73c20,7, 0x4d73d00,4, 0x4d73d80,20, 0x4d73e00,1, 0x4d74000,21, 0x4d74058,3, 0x4d74100,1, 0x4d74124,1, 0x4d7412c,5, 0x4d74144,1, 0x4d7414c,6, 0x4d74184,6, 0x4d741a4,6, 0x4d741c4,1, 0x4d741cc,1, 0x4d74400,9, 0x4d74440,9, 0x4d74480,15, 0x4d744c0,15, 0x4d74500,15, 0x4d74540,15, 0x4d74580,15, 0x4d745c0,15, 0x4d74600,15, 0x4d74640,15, 0x4d74680,59, 0x4d74800,1, 0x4d74808,16, 0x4d74850,1, 0x4d74858,7, 0x4d78000,3, 0x4d78010,1, 0x4d78018,3, 0x4d7a000,4, 0x4d7a080,19, 0x4d7a100,12, 0x4d7a200,4, 0x4d7a280,19, 0x4d7a300,12, 0x4d7a400,2, 0x4d7a600,124, 0x4d7a800,4, 0x4d7a880,18, 0x4d7a900,4, 0x4d7a980,23, 0x4d7aa00,10, 0x4d7aa2c,2, 0x4d7aa40,2, 0x4d7aa4c,3, 0x4d7aa60,2, 0x4d7aa6c,3, 0x4d7aa80,2, 0x4d7aa8c,2, 0x4d7aaa0,2, 0x4d7aaac,2, 0x4d7aac0,2, 0x4d7aacc,2, 0x4d7ab00,4, 0x4d7ab40,15, 0x4d7ab80,3, 0x4d7ab90,7, 0x4d7abb0,3, 0x4d7abc0,3, 0x4d7abd0,3, 0x4d7abe0,1, 0x4d7ac00,17, 0x4d7ae00,15, 0x4d7ae40,4, 0x4d7ae60,17, 0x4d7aec0,6, 0x4d7aee0,4, 0x4d7aef4,11, 0x4d7af24,28, 0x4d7b000,1, 0x4d7b080,1, 0x4d7b0a0,5, 0x4d7b0c0,5, 0x4d7b0e0,5, 0x4d7b100,1, 0x4d7b120,5, 0x4d7b140,5, 0x4d7b160,5, 0x4d7b180,24, 0x4d7b200,5, 0x4d7c000,20, 0x4d80000,18, 0x4d80050,3, 0x4d80060,3, 0x4d80070,14, 0x4d800c0,5, 0x4d80400,13, 0x4d80440,2, 0x4d8044c,3, 0x4d80460,2, 0x4d80480,13, 0x4d804c0,2, 0x4d804cc,3, 0x4d804e0,2, 0x4d80500,1, 0x4d80508,16, 0x4d80560,2, 0x4d8056c,3, 0x4d80600,4, 0x4d80680,19, 0x4d80800,24, 0x4d80864,2, 0x4d80870,4, 0x4d80a00,27, 0x4d80a80,4, 0x4d80ac0,25, 0x4d80b40,6, 0x4d80b60,4, 0x4d80b74,11, 0x4d80ba4,8, 0x4d80c00,3, 0x4d80c10,3, 0x4d80c20,1, 0x4d80c40,11, 0x4d80c80,23, 0x4d80ce0,15, 0x4d80d20,15, 0x4d80d60,2, 0x4d80d6c,2, 0x4d80d80,1, 0x4d81000,18, 0x4d81050,3, 0x4d81060,3, 0x4d81070,14, 0x4d810c0,5, 0x4d81400,13, 0x4d81440,2, 0x4d8144c,3, 0x4d81460,2, 0x4d81480,13, 0x4d814c0,2, 0x4d814cc,3, 0x4d814e0,2, 0x4d81500,1, 0x4d81508,16, 0x4d81560,2, 0x4d8156c,3, 0x4d81600,4, 0x4d81680,19, 0x4d81800,24, 0x4d81864,2, 0x4d81870,4, 0x4d81a00,27, 0x4d81a80,4, 0x4d81ac0,25, 0x4d81b40,6, 0x4d81b60,4, 0x4d81b74,11, 0x4d81ba4,8, 0x4d81c00,3, 0x4d81c10,3, 0x4d81c20,1, 0x4d81c40,11, 0x4d81c80,23, 0x4d81ce0,15, 0x4d81d20,15, 0x4d81d60,2, 0x4d81d6c,2, 0x4d81d80,1, 0x4d82000,20, 0x4d82080,7, 0x4d820a0,1, 0x4d820b0,1, 0x4d820b8,2, 0x4d84000,14, 0x4e00000,534, 0x4e01000,2, 0x4e01040,9, 0x4e01080,7, 0x4e02000,534, 0x4e03000,12, 0x4e03044,6, 0x4e03080,8, 0x4e030a4,1, 0x4e030c0,7, 0x4e030e0,7, 0x4e03100,7, 0x4e03120,7, 0x4e03140,8, 0x4e03164,6, 0x4e03180,12, 0x4e04000,534, 0x4e05000,2, 0x4e05040,9, 0x4e05080,7, 0x4e06000,534, 0x4e07000,12, 0x4e07044,6, 0x4e07080,8, 0x4e070a4,1, 0x4e070c0,7, 0x4e070e0,7, 0x4e07100,7, 0x4e07120,7, 0x4e07140,8, 0x4e07164,6, 0x4e07180,12, 0x4e08004,5, 0x4e08200,27, 0x4e08280,4, 0x4e082c0,25, 0x4e08340,6, 0x4e08360,4, 0x4e08374,11, 0x4e083a4,5, 0x4e08400,1, 0x4e10000,397, 0x4e10800,93, 0x4e10980,6, 0x4e10a00,41, 0x4e10b00,2, 0x4e10b20,19, 0x4e10c00,25, 0x4e10c80,1, 0x4e10d00,28, 0x4e10d80,1, 0x4e11000,397, 0x4e11800,93, 0x4e11980,6, 0x4e11a00,41, 0x4e11b00,2, 0x4e11b20,19, 0x4e11c00,25, 0x4e11c80,1, 0x4e11d00,28, 0x4e11d80,1, 0x4e12000,7, 0x4e12040,9, 0x4e12080,4, 0x4e120a0,5, 0x4e120c0,2, 0x4e14000,3, 0x4e14010,6, 0x4e14200,7, 0x4e14220,6, 0x4e14240,7, 0x4e14260,6, 0x4e14280,2, 0x4e1428c,2, 0x4e142a0,2, 0x4e142ac,2, 0x4e142c0,7, 0x4e142e0,7, 0x4e14300,2, 0x4e1430c,2, 0x4e14320,6, 0x4e14340,7, 0x4e14360,6, 0x4e14380,6, 0x4e143a0,7, 0x4e143c0,6, 0x4e143e0,6, 0x4e14400,3, 0x4e14440,12, 0x4e14484,1, 0x4e144c0,16, 0x4e14800,7, 0x4e14820,14, 0x4e14880,9, 0x4e148a8,12, 0x4e14900,7, 0x4e14920,14, 0x4e14980,9, 0x4e149a8,12, 0x4e14a00,10, 0x4e14a40,2, 0x4e14a4c,3, 0x4e14c00,5, 0x4e14c20,1, 0x4e14c28,3, 0x4e20000,534, 0x4e21000,2, 0x4e21040,9, 0x4e21080,7, 0x4e22000,534, 0x4e23000,12, 0x4e23044,6, 0x4e23080,8, 0x4e230a4,1, 0x4e230c0,7, 0x4e230e0,7, 0x4e23100,7, 0x4e23120,7, 0x4e23140,8, 0x4e23164,6, 0x4e23180,12, 0x4e24000,534, 0x4e25000,2, 0x4e25040,9, 0x4e25080,7, 0x4e26000,534, 0x4e27000,12, 0x4e27044,6, 0x4e27080,8, 0x4e270a4,1, 0x4e270c0,7, 0x4e270e0,7, 0x4e27100,7, 0x4e27120,7, 0x4e27140,8, 0x4e27164,6, 0x4e27180,12, 0x4e28004,5, 0x4e28200,27, 0x4e28280,4, 0x4e282c0,25, 0x4e28340,6, 0x4e28360,4, 0x4e28374,11, 0x4e283a4,5, 0x4e28400,1, 0x4e30000,397, 0x4e30800,93, 0x4e30980,6, 0x4e30a00,41, 0x4e30b00,2, 0x4e30b20,19, 0x4e30c00,25, 0x4e30c80,1, 0x4e30d00,28, 0x4e30d80,1, 0x4e31000,397, 0x4e31800,93, 0x4e31980,6, 0x4e31a00,41, 0x4e31b00,2, 0x4e31b20,19, 0x4e31c00,25, 0x4e31c80,1, 0x4e31d00,28, 0x4e31d80,1, 0x4e32000,7, 0x4e32040,9, 0x4e32080,4, 0x4e320a0,5, 0x4e320c0,2, 0x4e34000,3, 0x4e34010,6, 0x4e34200,7, 0x4e34220,6, 0x4e34240,7, 0x4e34260,6, 0x4e34280,2, 0x4e3428c,2, 0x4e342a0,2, 0x4e342ac,2, 0x4e342c0,7, 0x4e342e0,7, 0x4e34300,2, 0x4e3430c,2, 0x4e34320,6, 0x4e34340,7, 0x4e34360,6, 0x4e34380,6, 0x4e343a0,7, 0x4e343c0,6, 0x4e343e0,6, 0x4e34400,3, 0x4e34440,12, 0x4e34484,1, 0x4e344c0,16, 0x4e34800,7, 0x4e34820,14, 0x4e34880,9, 0x4e348a8,12, 0x4e34900,7, 0x4e34920,14, 0x4e34980,9, 0x4e349a8,12, 0x4e34a00,10, 0x4e34a40,2, 0x4e34a4c,3, 0x4e34c00,5, 0x4e34c20,1, 0x4e34c28,3, 0x4e40000,37, 0x4e40100,3, 0x4e40110,15, 0x4e40200,37, 0x4e40300,3, 0x4e40310,15, 0x4e40400,5, 0x4e40420,5, 0x4e40440,18, 0x4e40800,3, 0x4e40810,2, 0x4e40820,3, 0x4e40830,2, 0x4e40840,1, 0x4e41000,12, 0x4e41040,12, 0x4e41080,2, 0x4e41100,19, 0x4e41180,19, 0x4e41200,26, 0x4e41400,20, 0x4e41480,20, 0x4e41500,8, 0x4e41540,4, 0x4e41580,15, 0x4e415c0,15, 0x4e41600,9, 0x4e41630,5, 0x4e42000,37, 0x4e42100,3, 0x4e42110,15, 0x4e42200,37, 0x4e42300,3, 0x4e42310,15, 0x4e42400,5, 0x4e42420,5, 0x4e42440,18, 0x4e42800,3, 0x4e42810,2, 0x4e42820,3, 0x4e42830,2, 0x4e42840,1, 0x4e43000,12, 0x4e43040,12, 0x4e43080,2, 0x4e43100,19, 0x4e43180,19, 0x4e43200,26, 0x4e43400,20, 0x4e43480,20, 0x4e43500,8, 0x4e43540,4, 0x4e43580,15, 0x4e435c0,15, 0x4e43600,9, 0x4e43630,5, 0x4e44000,6, 0x4e44020,1, 0x4e4402c,3, 0x4e44040,11, 0x4e44070,3, 0x4e44080,2, 0x4e48000,49, 0x4e48100,12, 0x4e48140,4, 0x4e48184,1, 0x4e48198,2, 0x4e481a4,1, 0x4e481b8,7, 0x4e481e0,4, 0x4e48200,20, 0x4e48280,3, 0x4e48290,9, 0x4e482c0,6, 0x4e482e0,1, 0x4e482e8,7, 0x4e48400,49, 0x4e48500,12, 0x4e48540,4, 0x4e48584,1, 0x4e48598,2, 0x4e485a4,1, 0x4e485b8,7, 0x4e485e0,4, 0x4e48600,20, 0x4e48680,3, 0x4e48690,9, 0x4e486c0,6, 0x4e486e0,1, 0x4e486e8,7, 0x4e48800,49, 0x4e48900,12, 0x4e48940,4, 0x4e48984,1, 0x4e48998,2, 0x4e489a4,1, 0x4e489b8,7, 0x4e489e0,4, 0x4e48a00,20, 0x4e48a80,3, 0x4e48a90,9, 0x4e48ac0,6, 0x4e48ae0,1, 0x4e48ae8,7, 0x4e48c00,49, 0x4e48d00,12, 0x4e48d40,4, 0x4e48d84,1, 0x4e48d98,2, 0x4e48da4,1, 0x4e48db8,7, 0x4e48de0,4, 0x4e48e00,20, 0x4e48e80,3, 0x4e48e90,9, 0x4e48ec0,6, 0x4e48ee0,1, 0x4e48ee8,7, 0x4e49000,49, 0x4e49100,12, 0x4e49140,4, 0x4e49184,1, 0x4e49198,2, 0x4e491a4,1, 0x4e491b8,7, 0x4e491e0,4, 0x4e49200,20, 0x4e49280,3, 0x4e49290,9, 0x4e492c0,6, 0x4e492e0,1, 0x4e492e8,7, 0x4e49400,49, 0x4e49500,12, 0x4e49540,4, 0x4e49584,1, 0x4e49598,2, 0x4e495a4,1, 0x4e495b8,7, 0x4e495e0,4, 0x4e49600,20, 0x4e49680,3, 0x4e49690,9, 0x4e496c0,6, 0x4e496e0,1, 0x4e496e8,7, 0x4e49800,49, 0x4e49900,12, 0x4e49940,4, 0x4e49984,1, 0x4e49998,2, 0x4e499a4,1, 0x4e499b8,7, 0x4e499e0,4, 0x4e49a00,20, 0x4e49a80,3, 0x4e49a90,9, 0x4e49ac0,6, 0x4e49ae0,1, 0x4e49ae8,7, 0x4e4a000,20, 0x4e4a080,2, 0x4e4a100,20, 0x4e4a180,2, 0x4e4a200,4, 0x4e4a400,20, 0x4e4a480,2, 0x4e4a500,20, 0x4e4a580,2, 0x4e4a600,4, 0x4e4a800,3, 0x4e4a840,12, 0x4e4a880,12, 0x4e4a8c0,12, 0x4e4a900,12, 0x4e4a940,12, 0x4e4a980,12, 0x4e4a9c0,12, 0x4e4aa00,12, 0x4e4ac00,12, 0x4e4ac40,7, 0x4e4ac60,10, 0x4e4b004,1, 0x4e4b018,40, 0x4e4b100,7, 0x4e4b120,7, 0x4e4b140,2, 0x4e4b14c,2, 0x4e4b160,2, 0x4e4b16c,2, 0x4e4b180,18, 0x4e4b200,2, 0x4e4b220,10, 0x4e4b260,20, 0x4e4b2c0,7, 0x4e4b300,15, 0x4e4b340,9, 0x4e4b380,6, 0x4e4b3a0,4, 0x4e4b400,4, 0x4e4c000,106, 0x4e4c200,2, 0x4e4c240,9, 0x4e4c280,7, 0x4e4c400,106, 0x4e4c604,6, 0x4e4c700,15, 0x4e4c740,9, 0x4e4c780,6, 0x4e4c7a0,6, 0x4e4c800,8, 0x4e4c824,1, 0x4e4c830,15, 0x4e4c870,3, 0x4e60000,518, 0x4e60900,45, 0x4e60a00,45, 0x4e60b00,45, 0x4e60c00,45, 0x4e60d00,45, 0x4e60e00,45, 0x4e60f00,45, 0x4e61000,45, 0x4e61800,9, 0x4e61840,364, 0x4e61e00,19, 0x4e62000,9, 0x4e62040,364, 0x4e62600,19, 0x4e62800,6, 0x4e62820,3, 0x4e62840,7, 0x4e62880,6, 0x4e628a0,3, 0x4e628c0,7, 0x4e62900,1, 0x4e62908,3, 0x4e62918,8, 0x4e62940,7, 0x4e63000,2, 0x4e63800,18, 0x4e63880,18, 0x4e63c00,4, 0x4e63c20,7, 0x4e63d00,4, 0x4e63d80,20, 0x4e63e00,1, 0x4e64000,21, 0x4e64058,3, 0x4e64100,1, 0x4e64124,1, 0x4e6412c,5, 0x4e64144,1, 0x4e6414c,6, 0x4e64184,6, 0x4e641a4,6, 0x4e641c4,1, 0x4e641cc,1, 0x4e64400,9, 0x4e64440,9, 0x4e64480,15, 0x4e644c0,15, 0x4e64500,15, 0x4e64540,15, 0x4e64580,15, 0x4e645c0,15, 0x4e64600,15, 0x4e64640,15, 0x4e64680,59, 0x4e64800,1, 0x4e64808,16, 0x4e64850,1, 0x4e64858,7, 0x4e68000,3, 0x4e68010,1, 0x4e68018,3, 0x4e6a000,4, 0x4e6a080,19, 0x4e6a100,12, 0x4e6a200,4, 0x4e6a280,19, 0x4e6a300,12, 0x4e6a400,2, 0x4e6a600,124, 0x4e6a800,4, 0x4e6a880,18, 0x4e6a900,4, 0x4e6a980,23, 0x4e6aa00,10, 0x4e6aa2c,2, 0x4e6aa40,2, 0x4e6aa4c,3, 0x4e6aa60,2, 0x4e6aa6c,3, 0x4e6aa80,2, 0x4e6aa8c,2, 0x4e6aaa0,2, 0x4e6aaac,2, 0x4e6aac0,2, 0x4e6aacc,2, 0x4e6ab00,4, 0x4e6ab40,15, 0x4e6ab80,3, 0x4e6ab90,7, 0x4e6abb0,3, 0x4e6abc0,3, 0x4e6abd0,3, 0x4e6abe0,1, 0x4e6ac00,17, 0x4e6ae00,15, 0x4e6ae40,4, 0x4e6ae60,17, 0x4e6aec0,6, 0x4e6aee0,4, 0x4e6aef4,11, 0x4e6af24,28, 0x4e6b000,1, 0x4e6b080,1, 0x4e6b0a0,5, 0x4e6b0c0,5, 0x4e6b0e0,5, 0x4e6b100,1, 0x4e6b120,5, 0x4e6b140,5, 0x4e6b160,5, 0x4e6b180,24, 0x4e6b200,5, 0x4e6c000,20, 0x4e70000,518, 0x4e70900,45, 0x4e70a00,45, 0x4e70b00,45, 0x4e70c00,45, 0x4e70d00,45, 0x4e70e00,45, 0x4e70f00,45, 0x4e71000,45, 0x4e71800,9, 0x4e71840,364, 0x4e71e00,19, 0x4e72000,9, 0x4e72040,364, 0x4e72600,19, 0x4e72800,6, 0x4e72820,3, 0x4e72840,7, 0x4e72880,6, 0x4e728a0,3, 0x4e728c0,7, 0x4e72900,1, 0x4e72908,3, 0x4e72918,8, 0x4e72940,7, 0x4e73000,2, 0x4e73800,18, 0x4e73880,18, 0x4e73c00,4, 0x4e73c20,7, 0x4e73d00,4, 0x4e73d80,20, 0x4e73e00,1, 0x4e74000,21, 0x4e74058,3, 0x4e74100,1, 0x4e74124,1, 0x4e7412c,5, 0x4e74144,1, 0x4e7414c,6, 0x4e74184,6, 0x4e741a4,6, 0x4e741c4,1, 0x4e741cc,1, 0x4e74400,9, 0x4e74440,9, 0x4e74480,15, 0x4e744c0,15, 0x4e74500,15, 0x4e74540,15, 0x4e74580,15, 0x4e745c0,15, 0x4e74600,15, 0x4e74640,15, 0x4e74680,59, 0x4e74800,1, 0x4e74808,16, 0x4e74850,1, 0x4e74858,7, 0x4e78000,3, 0x4e78010,1, 0x4e78018,3, 0x4e7a000,4, 0x4e7a080,19, 0x4e7a100,12, 0x4e7a200,4, 0x4e7a280,19, 0x4e7a300,12, 0x4e7a400,2, 0x4e7a600,124, 0x4e7a800,4, 0x4e7a880,18, 0x4e7a900,4, 0x4e7a980,23, 0x4e7aa00,10, 0x4e7aa2c,2, 0x4e7aa40,2, 0x4e7aa4c,3, 0x4e7aa60,2, 0x4e7aa6c,3, 0x4e7aa80,2, 0x4e7aa8c,2, 0x4e7aaa0,2, 0x4e7aaac,2, 0x4e7aac0,2, 0x4e7aacc,2, 0x4e7ab00,4, 0x4e7ab40,15, 0x4e7ab80,3, 0x4e7ab90,7, 0x4e7abb0,3, 0x4e7abc0,3, 0x4e7abd0,3, 0x4e7abe0,1, 0x4e7ac00,17, 0x4e7ae00,15, 0x4e7ae40,4, 0x4e7ae60,17, 0x4e7aec0,6, 0x4e7aee0,4, 0x4e7aef4,11, 0x4e7af24,28, 0x4e7b000,1, 0x4e7b080,1, 0x4e7b0a0,5, 0x4e7b0c0,5, 0x4e7b0e0,5, 0x4e7b100,1, 0x4e7b120,5, 0x4e7b140,5, 0x4e7b160,5, 0x4e7b180,24, 0x4e7b200,5, 0x4e7c000,20, 0x4e80000,18, 0x4e80050,3, 0x4e80060,3, 0x4e80070,14, 0x4e800c0,5, 0x4e80400,13, 0x4e80440,2, 0x4e8044c,3, 0x4e80460,2, 0x4e80480,13, 0x4e804c0,2, 0x4e804cc,3, 0x4e804e0,2, 0x4e80500,1, 0x4e80508,16, 0x4e80560,2, 0x4e8056c,3, 0x4e80600,4, 0x4e80680,19, 0x4e80800,24, 0x4e80864,2, 0x4e80870,4, 0x4e80a00,27, 0x4e80a80,4, 0x4e80ac0,25, 0x4e80b40,6, 0x4e80b60,4, 0x4e80b74,11, 0x4e80ba4,8, 0x4e80c00,3, 0x4e80c10,3, 0x4e80c20,1, 0x4e80c40,11, 0x4e80c80,23, 0x4e80ce0,15, 0x4e80d20,15, 0x4e80d60,2, 0x4e80d6c,2, 0x4e80d80,1, 0x4e81000,18, 0x4e81050,3, 0x4e81060,3, 0x4e81070,14, 0x4e810c0,5, 0x4e81400,13, 0x4e81440,2, 0x4e8144c,3, 0x4e81460,2, 0x4e81480,13, 0x4e814c0,2, 0x4e814cc,3, 0x4e814e0,2, 0x4e81500,1, 0x4e81508,16, 0x4e81560,2, 0x4e8156c,3, 0x4e81600,4, 0x4e81680,19, 0x4e81800,24, 0x4e81864,2, 0x4e81870,4, 0x4e81a00,27, 0x4e81a80,4, 0x4e81ac0,25, 0x4e81b40,6, 0x4e81b60,4, 0x4e81b74,11, 0x4e81ba4,8, 0x4e81c00,3, 0x4e81c10,3, 0x4e81c20,1, 0x4e81c40,11, 0x4e81c80,23, 0x4e81ce0,15, 0x4e81d20,15, 0x4e81d60,2, 0x4e81d6c,2, 0x4e81d80,1, 0x4e82000,20, 0x4e82080,7, 0x4e820a0,1, 0x4e820b0,1, 0x4e820b8,2, 0x4e84000,14, 0x4f00000,534, 0x4f01000,2, 0x4f01040,9, 0x4f01080,7, 0x4f02000,534, 0x4f03000,12, 0x4f03044,6, 0x4f03080,8, 0x4f030a4,1, 0x4f030c0,7, 0x4f030e0,7, 0x4f03100,7, 0x4f03120,7, 0x4f03140,8, 0x4f03164,6, 0x4f03180,12, 0x4f04000,534, 0x4f05000,2, 0x4f05040,9, 0x4f05080,7, 0x4f06000,534, 0x4f07000,12, 0x4f07044,6, 0x4f07080,8, 0x4f070a4,1, 0x4f070c0,7, 0x4f070e0,7, 0x4f07100,7, 0x4f07120,7, 0x4f07140,8, 0x4f07164,6, 0x4f07180,12, 0x4f08004,5, 0x4f08200,27, 0x4f08280,4, 0x4f082c0,25, 0x4f08340,6, 0x4f08360,4, 0x4f08374,11, 0x4f083a4,5, 0x4f08400,1, 0x4f10000,397, 0x4f10800,93, 0x4f10980,6, 0x4f10a00,41, 0x4f10b00,2, 0x4f10b20,19, 0x4f10c00,25, 0x4f10c80,1, 0x4f10d00,28, 0x4f10d80,1, 0x4f11000,397, 0x4f11800,93, 0x4f11980,6, 0x4f11a00,41, 0x4f11b00,2, 0x4f11b20,19, 0x4f11c00,25, 0x4f11c80,1, 0x4f11d00,28, 0x4f11d80,1, 0x4f12000,7, 0x4f12040,9, 0x4f12080,4, 0x4f120a0,5, 0x4f120c0,2, 0x4f14000,3, 0x4f14010,6, 0x4f14200,7, 0x4f14220,6, 0x4f14240,7, 0x4f14260,6, 0x4f14280,2, 0x4f1428c,2, 0x4f142a0,2, 0x4f142ac,2, 0x4f142c0,7, 0x4f142e0,7, 0x4f14300,2, 0x4f1430c,2, 0x4f14320,6, 0x4f14340,7, 0x4f14360,6, 0x4f14380,6, 0x4f143a0,7, 0x4f143c0,6, 0x4f143e0,6, 0x4f14400,3, 0x4f14440,12, 0x4f14484,1, 0x4f144c0,16, 0x4f14800,7, 0x4f14820,14, 0x4f14880,9, 0x4f148a8,12, 0x4f14900,7, 0x4f14920,14, 0x4f14980,9, 0x4f149a8,12, 0x4f14a00,10, 0x4f14a40,2, 0x4f14a4c,3, 0x4f14c00,5, 0x4f14c20,1, 0x4f14c28,3, 0x4f20000,534, 0x4f21000,2, 0x4f21040,9, 0x4f21080,7, 0x4f22000,534, 0x4f23000,12, 0x4f23044,6, 0x4f23080,8, 0x4f230a4,1, 0x4f230c0,7, 0x4f230e0,7, 0x4f23100,7, 0x4f23120,7, 0x4f23140,8, 0x4f23164,6, 0x4f23180,12, 0x4f24000,534, 0x4f25000,2, 0x4f25040,9, 0x4f25080,7, 0x4f26000,534, 0x4f27000,12, 0x4f27044,6, 0x4f27080,8, 0x4f270a4,1, 0x4f270c0,7, 0x4f270e0,7, 0x4f27100,7, 0x4f27120,7, 0x4f27140,8, 0x4f27164,6, 0x4f27180,12, 0x4f28004,5, 0x4f28200,27, 0x4f28280,4, 0x4f282c0,25, 0x4f28340,6, 0x4f28360,4, 0x4f28374,11, 0x4f283a4,5, 0x4f28400,1, 0x4f30000,397, 0x4f30800,93, 0x4f30980,6, 0x4f30a00,41, 0x4f30b00,2, 0x4f30b20,19, 0x4f30c00,25, 0x4f30c80,1, 0x4f30d00,28, 0x4f30d80,1, 0x4f31000,397, 0x4f31800,93, 0x4f31980,6, 0x4f31a00,41, 0x4f31b00,2, 0x4f31b20,19, 0x4f31c00,25, 0x4f31c80,1, 0x4f31d00,28, 0x4f31d80,1, 0x4f32000,7, 0x4f32040,9, 0x4f32080,4, 0x4f320a0,5, 0x4f320c0,2, 0x4f34000,3, 0x4f34010,6, 0x4f34200,7, 0x4f34220,6, 0x4f34240,7, 0x4f34260,6, 0x4f34280,2, 0x4f3428c,2, 0x4f342a0,2, 0x4f342ac,2, 0x4f342c0,7, 0x4f342e0,7, 0x4f34300,2, 0x4f3430c,2, 0x4f34320,6, 0x4f34340,7, 0x4f34360,6, 0x4f34380,6, 0x4f343a0,7, 0x4f343c0,6, 0x4f343e0,6, 0x4f34400,3, 0x4f34440,12, 0x4f34484,1, 0x4f344c0,16, 0x4f34800,7, 0x4f34820,14, 0x4f34880,9, 0x4f348a8,12, 0x4f34900,7, 0x4f34920,14, 0x4f34980,9, 0x4f349a8,12, 0x4f34a00,10, 0x4f34a40,2, 0x4f34a4c,3, 0x4f34c00,5, 0x4f34c20,1, 0x4f34c28,3, 0x4f40000,37, 0x4f40100,3, 0x4f40110,15, 0x4f40200,37, 0x4f40300,3, 0x4f40310,15, 0x4f40400,5, 0x4f40420,5, 0x4f40440,18, 0x4f40800,3, 0x4f40810,2, 0x4f40820,3, 0x4f40830,2, 0x4f40840,1, 0x4f41000,12, 0x4f41040,12, 0x4f41080,2, 0x4f41100,19, 0x4f41180,19, 0x4f41200,26, 0x4f41400,20, 0x4f41480,20, 0x4f41500,8, 0x4f41540,4, 0x4f41580,15, 0x4f415c0,15, 0x4f41600,9, 0x4f41630,5, 0x4f42000,37, 0x4f42100,3, 0x4f42110,15, 0x4f42200,37, 0x4f42300,3, 0x4f42310,15, 0x4f42400,5, 0x4f42420,5, 0x4f42440,18, 0x4f42800,3, 0x4f42810,2, 0x4f42820,3, 0x4f42830,2, 0x4f42840,1, 0x4f43000,12, 0x4f43040,12, 0x4f43080,2, 0x4f43100,19, 0x4f43180,19, 0x4f43200,26, 0x4f43400,20, 0x4f43480,20, 0x4f43500,8, 0x4f43540,4, 0x4f43580,15, 0x4f435c0,15, 0x4f43600,9, 0x4f43630,5, 0x4f44000,6, 0x4f44020,1, 0x4f4402c,3, 0x4f44040,11, 0x4f44070,3, 0x4f44080,2, 0x4f48000,49, 0x4f48100,12, 0x4f48140,4, 0x4f48184,1, 0x4f48198,2, 0x4f481a4,1, 0x4f481b8,7, 0x4f481e0,4, 0x4f48200,20, 0x4f48280,3, 0x4f48290,9, 0x4f482c0,6, 0x4f482e0,1, 0x4f482e8,7, 0x4f48400,49, 0x4f48500,12, 0x4f48540,4, 0x4f48584,1, 0x4f48598,2, 0x4f485a4,1, 0x4f485b8,7, 0x4f485e0,4, 0x4f48600,20, 0x4f48680,3, 0x4f48690,9, 0x4f486c0,6, 0x4f486e0,1, 0x4f486e8,7, 0x4f48800,49, 0x4f48900,12, 0x4f48940,4, 0x4f48984,1, 0x4f48998,2, 0x4f489a4,1, 0x4f489b8,7, 0x4f489e0,4, 0x4f48a00,20, 0x4f48a80,3, 0x4f48a90,9, 0x4f48ac0,6, 0x4f48ae0,1, 0x4f48ae8,7, 0x4f48c00,49, 0x4f48d00,12, 0x4f48d40,4, 0x4f48d84,1, 0x4f48d98,2, 0x4f48da4,1, 0x4f48db8,7, 0x4f48de0,4, 0x4f48e00,20, 0x4f48e80,3, 0x4f48e90,9, 0x4f48ec0,6, 0x4f48ee0,1, 0x4f48ee8,7, 0x4f49000,49, 0x4f49100,12, 0x4f49140,4, 0x4f49184,1, 0x4f49198,2, 0x4f491a4,1, 0x4f491b8,7, 0x4f491e0,4, 0x4f49200,20, 0x4f49280,3, 0x4f49290,9, 0x4f492c0,6, 0x4f492e0,1, 0x4f492e8,7, 0x4f49400,49, 0x4f49500,12, 0x4f49540,4, 0x4f49584,1, 0x4f49598,2, 0x4f495a4,1, 0x4f495b8,7, 0x4f495e0,4, 0x4f49600,20, 0x4f49680,3, 0x4f49690,9, 0x4f496c0,6, 0x4f496e0,1, 0x4f496e8,7, 0x4f49800,49, 0x4f49900,12, 0x4f49940,4, 0x4f49984,1, 0x4f49998,2, 0x4f499a4,1, 0x4f499b8,7, 0x4f499e0,4, 0x4f49a00,20, 0x4f49a80,3, 0x4f49a90,9, 0x4f49ac0,6, 0x4f49ae0,1, 0x4f49ae8,7, 0x4f4a000,20, 0x4f4a080,2, 0x4f4a100,20, 0x4f4a180,2, 0x4f4a200,4, 0x4f4a400,20, 0x4f4a480,2, 0x4f4a500,20, 0x4f4a580,2, 0x4f4a600,4, 0x4f4a800,3, 0x4f4a840,12, 0x4f4a880,12, 0x4f4a8c0,12, 0x4f4a900,12, 0x4f4a940,12, 0x4f4a980,12, 0x4f4a9c0,12, 0x4f4aa00,12, 0x4f4ac00,12, 0x4f4ac40,7, 0x4f4ac60,10, 0x4f4b004,1, 0x4f4b018,40, 0x4f4b100,7, 0x4f4b120,7, 0x4f4b140,2, 0x4f4b14c,2, 0x4f4b160,2, 0x4f4b16c,2, 0x4f4b180,18, 0x4f4b200,2, 0x4f4b220,10, 0x4f4b260,20, 0x4f4b2c0,7, 0x4f4b300,15, 0x4f4b340,9, 0x4f4b380,6, 0x4f4b3a0,4, 0x4f4b400,4, 0x4f4c000,106, 0x4f4c200,2, 0x4f4c240,9, 0x4f4c280,7, 0x4f4c400,106, 0x4f4c604,6, 0x4f4c700,15, 0x4f4c740,9, 0x4f4c780,6, 0x4f4c7a0,6, 0x4f4c800,8, 0x4f4c824,1, 0x4f4c830,15, 0x4f4c870,3, 0x4f60000,518, 0x4f60900,45, 0x4f60a00,45, 0x4f60b00,45, 0x4f60c00,45, 0x4f60d00,45, 0x4f60e00,45, 0x4f60f00,45, 0x4f61000,45, 0x4f61800,9, 0x4f61840,364, 0x4f61e00,19, 0x4f62000,9, 0x4f62040,364, 0x4f62600,19, 0x4f62800,6, 0x4f62820,3, 0x4f62840,7, 0x4f62880,6, 0x4f628a0,3, 0x4f628c0,7, 0x4f62900,1, 0x4f62908,3, 0x4f62918,8, 0x4f62940,7, 0x4f63000,2, 0x4f63800,18, 0x4f63880,18, 0x4f63c00,4, 0x4f63c20,7, 0x4f63d00,4, 0x4f63d80,20, 0x4f63e00,1, 0x4f64000,21, 0x4f64058,3, 0x4f64100,1, 0x4f64124,1, 0x4f6412c,5, 0x4f64144,1, 0x4f6414c,6, 0x4f64184,6, 0x4f641a4,6, 0x4f641c4,1, 0x4f641cc,1, 0x4f64400,9, 0x4f64440,9, 0x4f64480,15, 0x4f644c0,15, 0x4f64500,15, 0x4f64540,15, 0x4f64580,15, 0x4f645c0,15, 0x4f64600,15, 0x4f64640,15, 0x4f64680,59, 0x4f64800,1, 0x4f64808,16, 0x4f64850,1, 0x4f64858,7, 0x4f68000,3, 0x4f68010,1, 0x4f68018,3, 0x4f6a000,4, 0x4f6a080,19, 0x4f6a100,12, 0x4f6a200,4, 0x4f6a280,19, 0x4f6a300,12, 0x4f6a400,2, 0x4f6a600,124, 0x4f6a800,4, 0x4f6a880,18, 0x4f6a900,4, 0x4f6a980,23, 0x4f6aa00,10, 0x4f6aa2c,2, 0x4f6aa40,2, 0x4f6aa4c,3, 0x4f6aa60,2, 0x4f6aa6c,3, 0x4f6aa80,2, 0x4f6aa8c,2, 0x4f6aaa0,2, 0x4f6aaac,2, 0x4f6aac0,2, 0x4f6aacc,2, 0x4f6ab00,4, 0x4f6ab40,15, 0x4f6ab80,3, 0x4f6ab90,7, 0x4f6abb0,3, 0x4f6abc0,3, 0x4f6abd0,3, 0x4f6abe0,1, 0x4f6ac00,17, 0x4f6ae00,15, 0x4f6ae40,4, 0x4f6ae60,17, 0x4f6aec0,6, 0x4f6aee0,4, 0x4f6aef4,11, 0x4f6af24,28, 0x4f6b000,1, 0x4f6b080,1, 0x4f6b0a0,5, 0x4f6b0c0,5, 0x4f6b0e0,5, 0x4f6b100,1, 0x4f6b120,5, 0x4f6b140,5, 0x4f6b160,5, 0x4f6b180,24, 0x4f6b200,5, 0x4f6c000,20, 0x4f70000,518, 0x4f70900,45, 0x4f70a00,45, 0x4f70b00,45, 0x4f70c00,45, 0x4f70d00,45, 0x4f70e00,45, 0x4f70f00,45, 0x4f71000,45, 0x4f71800,9, 0x4f71840,364, 0x4f71e00,19, 0x4f72000,9, 0x4f72040,364, 0x4f72600,19, 0x4f72800,6, 0x4f72820,3, 0x4f72840,7, 0x4f72880,6, 0x4f728a0,3, 0x4f728c0,7, 0x4f72900,1, 0x4f72908,3, 0x4f72918,8, 0x4f72940,7, 0x4f73000,2, 0x4f73800,18, 0x4f73880,18, 0x4f73c00,4, 0x4f73c20,7, 0x4f73d00,4, 0x4f73d80,20, 0x4f73e00,1, 0x4f74000,21, 0x4f74058,3, 0x4f74100,1, 0x4f74124,1, 0x4f7412c,5, 0x4f74144,1, 0x4f7414c,6, 0x4f74184,6, 0x4f741a4,6, 0x4f741c4,1, 0x4f741cc,1, 0x4f74400,9, 0x4f74440,9, 0x4f74480,15, 0x4f744c0,15, 0x4f74500,15, 0x4f74540,15, 0x4f74580,15, 0x4f745c0,15, 0x4f74600,15, 0x4f74640,15, 0x4f74680,59, 0x4f74800,1, 0x4f74808,16, 0x4f74850,1, 0x4f74858,7, 0x4f78000,3, 0x4f78010,1, 0x4f78018,3, 0x4f7a000,4, 0x4f7a080,19, 0x4f7a100,12, 0x4f7a200,4, 0x4f7a280,19, 0x4f7a300,12, 0x4f7a400,2, 0x4f7a600,124, 0x4f7a800,4, 0x4f7a880,18, 0x4f7a900,4, 0x4f7a980,23, 0x4f7aa00,10, 0x4f7aa2c,2, 0x4f7aa40,2, 0x4f7aa4c,3, 0x4f7aa60,2, 0x4f7aa6c,3, 0x4f7aa80,2, 0x4f7aa8c,2, 0x4f7aaa0,2, 0x4f7aaac,2, 0x4f7aac0,2, 0x4f7aacc,2, 0x4f7ab00,4, 0x4f7ab40,15, 0x4f7ab80,3, 0x4f7ab90,7, 0x4f7abb0,3, 0x4f7abc0,3, 0x4f7abd0,3, 0x4f7abe0,1, 0x4f7ac00,17, 0x4f7ae00,15, 0x4f7ae40,4, 0x4f7ae60,17, 0x4f7aec0,6, 0x4f7aee0,4, 0x4f7aef4,11, 0x4f7af24,28, 0x4f7b000,1, 0x4f7b080,1, 0x4f7b0a0,5, 0x4f7b0c0,5, 0x4f7b0e0,5, 0x4f7b100,1, 0x4f7b120,5, 0x4f7b140,5, 0x4f7b160,5, 0x4f7b180,24, 0x4f7b200,5, 0x4f7c000,20, 0x4f80000,18, 0x4f80050,3, 0x4f80060,3, 0x4f80070,14, 0x4f800c0,5, 0x4f80400,13, 0x4f80440,2, 0x4f8044c,3, 0x4f80460,2, 0x4f80480,13, 0x4f804c0,2, 0x4f804cc,3, 0x4f804e0,2, 0x4f80500,1, 0x4f80508,16, 0x4f80560,2, 0x4f8056c,3, 0x4f80600,4, 0x4f80680,19, 0x4f80800,24, 0x4f80864,2, 0x4f80870,4, 0x4f80a00,27, 0x4f80a80,4, 0x4f80ac0,25, 0x4f80b40,6, 0x4f80b60,4, 0x4f80b74,11, 0x4f80ba4,8, 0x4f80c00,3, 0x4f80c10,3, 0x4f80c20,1, 0x4f80c40,11, 0x4f80c80,23, 0x4f80ce0,15, 0x4f80d20,15, 0x4f80d60,2, 0x4f80d6c,2, 0x4f80d80,1, 0x4f81000,18, 0x4f81050,3, 0x4f81060,3, 0x4f81070,14, 0x4f810c0,5, 0x4f81400,13, 0x4f81440,2, 0x4f8144c,3, 0x4f81460,2, 0x4f81480,13, 0x4f814c0,2, 0x4f814cc,3, 0x4f814e0,2, 0x4f81500,1, 0x4f81508,16, 0x4f81560,2, 0x4f8156c,3, 0x4f81600,4, 0x4f81680,19, 0x4f81800,24, 0x4f81864,2, 0x4f81870,4, 0x4f81a00,27, 0x4f81a80,4, 0x4f81ac0,25, 0x4f81b40,6, 0x4f81b60,4, 0x4f81b74,11, 0x4f81ba4,8, 0x4f81c00,3, 0x4f81c10,3, 0x4f81c20,1, 0x4f81c40,11, 0x4f81c80,23, 0x4f81ce0,15, 0x4f81d20,15, 0x4f81d60,2, 0x4f81d6c,2, 0x4f81d80,1, 0x4f82000,20, 0x4f82080,7, 0x4f820a0,1, 0x4f820b0,1, 0x4f820b8,2, 0x4f84000,14, 0x5000000,534, 0x5001000,2, 0x5001040,9, 0x5001080,7, 0x5002000,534, 0x5003000,12, 0x5003044,6, 0x5003080,8, 0x50030a4,1, 0x50030c0,7, 0x50030e0,7, 0x5003100,7, 0x5003120,7, 0x5003140,8, 0x5003164,6, 0x5003180,12, 0x5004000,534, 0x5005000,2, 0x5005040,9, 0x5005080,7, 0x5006000,534, 0x5007000,12, 0x5007044,6, 0x5007080,8, 0x50070a4,1, 0x50070c0,7, 0x50070e0,7, 0x5007100,7, 0x5007120,7, 0x5007140,8, 0x5007164,6, 0x5007180,12, 0x5008004,5, 0x5008200,27, 0x5008280,4, 0x50082c0,25, 0x5008340,6, 0x5008360,4, 0x5008374,11, 0x50083a4,5, 0x5008400,1, 0x5010000,397, 0x5010800,93, 0x5010980,6, 0x5010a00,41, 0x5010b00,2, 0x5010b20,19, 0x5010c00,25, 0x5010c80,1, 0x5010d00,28, 0x5010d80,1, 0x5011000,397, 0x5011800,93, 0x5011980,6, 0x5011a00,41, 0x5011b00,2, 0x5011b20,19, 0x5011c00,25, 0x5011c80,1, 0x5011d00,28, 0x5011d80,1, 0x5012000,7, 0x5012040,9, 0x5012080,4, 0x50120a0,5, 0x50120c0,2, 0x5014000,3, 0x5014010,6, 0x5014200,7, 0x5014220,6, 0x5014240,7, 0x5014260,6, 0x5014280,2, 0x501428c,2, 0x50142a0,2, 0x50142ac,2, 0x50142c0,7, 0x50142e0,7, 0x5014300,2, 0x501430c,2, 0x5014320,6, 0x5014340,7, 0x5014360,6, 0x5014380,6, 0x50143a0,7, 0x50143c0,6, 0x50143e0,6, 0x5014400,3, 0x5014440,12, 0x5014484,1, 0x50144c0,16, 0x5014800,7, 0x5014820,14, 0x5014880,9, 0x50148a8,12, 0x5014900,7, 0x5014920,14, 0x5014980,9, 0x50149a8,12, 0x5014a00,10, 0x5014a40,2, 0x5014a4c,3, 0x5014c00,5, 0x5014c20,1, 0x5014c28,3, 0x5020000,534, 0x5021000,2, 0x5021040,9, 0x5021080,7, 0x5022000,534, 0x5023000,12, 0x5023044,6, 0x5023080,8, 0x50230a4,1, 0x50230c0,7, 0x50230e0,7, 0x5023100,7, 0x5023120,7, 0x5023140,8, 0x5023164,6, 0x5023180,12, 0x5024000,534, 0x5025000,2, 0x5025040,9, 0x5025080,7, 0x5026000,534, 0x5027000,12, 0x5027044,6, 0x5027080,8, 0x50270a4,1, 0x50270c0,7, 0x50270e0,7, 0x5027100,7, 0x5027120,7, 0x5027140,8, 0x5027164,6, 0x5027180,12, 0x5028004,5, 0x5028200,27, 0x5028280,4, 0x50282c0,25, 0x5028340,6, 0x5028360,4, 0x5028374,11, 0x50283a4,5, 0x5028400,1, 0x5030000,397, 0x5030800,93, 0x5030980,6, 0x5030a00,41, 0x5030b00,2, 0x5030b20,19, 0x5030c00,25, 0x5030c80,1, 0x5030d00,28, 0x5030d80,1, 0x5031000,397, 0x5031800,93, 0x5031980,6, 0x5031a00,41, 0x5031b00,2, 0x5031b20,19, 0x5031c00,25, 0x5031c80,1, 0x5031d00,28, 0x5031d80,1, 0x5032000,7, 0x5032040,9, 0x5032080,4, 0x50320a0,5, 0x50320c0,2, 0x5034000,3, 0x5034010,6, 0x5034200,7, 0x5034220,6, 0x5034240,7, 0x5034260,6, 0x5034280,2, 0x503428c,2, 0x50342a0,2, 0x50342ac,2, 0x50342c0,7, 0x50342e0,7, 0x5034300,2, 0x503430c,2, 0x5034320,6, 0x5034340,7, 0x5034360,6, 0x5034380,6, 0x50343a0,7, 0x50343c0,6, 0x50343e0,6, 0x5034400,3, 0x5034440,12, 0x5034484,1, 0x50344c0,16, 0x5034800,7, 0x5034820,14, 0x5034880,9, 0x50348a8,12, 0x5034900,7, 0x5034920,14, 0x5034980,9, 0x50349a8,12, 0x5034a00,10, 0x5034a40,2, 0x5034a4c,3, 0x5034c00,5, 0x5034c20,1, 0x5034c28,3, 0x5040000,37, 0x5040100,3, 0x5040110,15, 0x5040200,37, 0x5040300,3, 0x5040310,15, 0x5040400,5, 0x5040420,5, 0x5040440,18, 0x5040800,3, 0x5040810,2, 0x5040820,3, 0x5040830,2, 0x5040840,1, 0x5041000,12, 0x5041040,12, 0x5041080,2, 0x5041100,19, 0x5041180,19, 0x5041200,26, 0x5041400,20, 0x5041480,20, 0x5041500,8, 0x5041540,4, 0x5041580,15, 0x50415c0,15, 0x5041600,9, 0x5041630,5, 0x5042000,37, 0x5042100,3, 0x5042110,15, 0x5042200,37, 0x5042300,3, 0x5042310,15, 0x5042400,5, 0x5042420,5, 0x5042440,18, 0x5042800,3, 0x5042810,2, 0x5042820,3, 0x5042830,2, 0x5042840,1, 0x5043000,12, 0x5043040,12, 0x5043080,2, 0x5043100,19, 0x5043180,19, 0x5043200,26, 0x5043400,20, 0x5043480,20, 0x5043500,8, 0x5043540,4, 0x5043580,15, 0x50435c0,15, 0x5043600,9, 0x5043630,5, 0x5044000,6, 0x5044020,1, 0x504402c,3, 0x5044040,11, 0x5044070,3, 0x5044080,2, 0x5048000,49, 0x5048100,12, 0x5048140,4, 0x5048184,1, 0x5048198,2, 0x50481a4,1, 0x50481b8,7, 0x50481e0,4, 0x5048200,20, 0x5048280,3, 0x5048290,9, 0x50482c0,6, 0x50482e0,1, 0x50482e8,7, 0x5048400,49, 0x5048500,12, 0x5048540,4, 0x5048584,1, 0x5048598,2, 0x50485a4,1, 0x50485b8,7, 0x50485e0,4, 0x5048600,20, 0x5048680,3, 0x5048690,9, 0x50486c0,6, 0x50486e0,1, 0x50486e8,7, 0x5048800,49, 0x5048900,12, 0x5048940,4, 0x5048984,1, 0x5048998,2, 0x50489a4,1, 0x50489b8,7, 0x50489e0,4, 0x5048a00,20, 0x5048a80,3, 0x5048a90,9, 0x5048ac0,6, 0x5048ae0,1, 0x5048ae8,7, 0x5048c00,49, 0x5048d00,12, 0x5048d40,4, 0x5048d84,1, 0x5048d98,2, 0x5048da4,1, 0x5048db8,7, 0x5048de0,4, 0x5048e00,20, 0x5048e80,3, 0x5048e90,9, 0x5048ec0,6, 0x5048ee0,1, 0x5048ee8,7, 0x5049000,49, 0x5049100,12, 0x5049140,4, 0x5049184,1, 0x5049198,2, 0x50491a4,1, 0x50491b8,7, 0x50491e0,4, 0x5049200,20, 0x5049280,3, 0x5049290,9, 0x50492c0,6, 0x50492e0,1, 0x50492e8,7, 0x5049400,49, 0x5049500,12, 0x5049540,4, 0x5049584,1, 0x5049598,2, 0x50495a4,1, 0x50495b8,7, 0x50495e0,4, 0x5049600,20, 0x5049680,3, 0x5049690,9, 0x50496c0,6, 0x50496e0,1, 0x50496e8,7, 0x5049800,49, 0x5049900,12, 0x5049940,4, 0x5049984,1, 0x5049998,2, 0x50499a4,1, 0x50499b8,7, 0x50499e0,4, 0x5049a00,20, 0x5049a80,3, 0x5049a90,9, 0x5049ac0,6, 0x5049ae0,1, 0x5049ae8,7, 0x504a000,20, 0x504a080,2, 0x504a100,20, 0x504a180,2, 0x504a200,4, 0x504a400,20, 0x504a480,2, 0x504a500,20, 0x504a580,2, 0x504a600,4, 0x504a800,3, 0x504a840,12, 0x504a880,12, 0x504a8c0,12, 0x504a900,12, 0x504a940,12, 0x504a980,12, 0x504a9c0,12, 0x504aa00,12, 0x504ac00,12, 0x504ac40,7, 0x504ac60,10, 0x504b004,1, 0x504b018,40, 0x504b100,7, 0x504b120,7, 0x504b140,2, 0x504b14c,2, 0x504b160,2, 0x504b16c,2, 0x504b180,18, 0x504b200,2, 0x504b220,10, 0x504b260,20, 0x504b2c0,7, 0x504b300,15, 0x504b340,9, 0x504b380,6, 0x504b3a0,4, 0x504b400,4, 0x504c000,106, 0x504c200,2, 0x504c240,9, 0x504c280,7, 0x504c400,106, 0x504c604,6, 0x504c700,15, 0x504c740,9, 0x504c780,6, 0x504c7a0,6, 0x504c800,8, 0x504c824,1, 0x504c830,15, 0x504c870,3, 0x5060000,518, 0x5060900,45, 0x5060a00,45, 0x5060b00,45, 0x5060c00,45, 0x5060d00,45, 0x5060e00,45, 0x5060f00,45, 0x5061000,45, 0x5061800,9, 0x5061840,364, 0x5061e00,19, 0x5062000,9, 0x5062040,364, 0x5062600,19, 0x5062800,6, 0x5062820,3, 0x5062840,7, 0x5062880,6, 0x50628a0,3, 0x50628c0,7, 0x5062900,1, 0x5062908,3, 0x5062918,8, 0x5062940,7, 0x5063000,2, 0x5063800,18, 0x5063880,18, 0x5063c00,4, 0x5063c20,7, 0x5063d00,4, 0x5063d80,20, 0x5063e00,1, 0x5064000,21, 0x5064058,3, 0x5064100,1, 0x5064124,1, 0x506412c,5, 0x5064144,1, 0x506414c,6, 0x5064184,6, 0x50641a4,6, 0x50641c4,1, 0x50641cc,1, 0x5064400,9, 0x5064440,9, 0x5064480,15, 0x50644c0,15, 0x5064500,15, 0x5064540,15, 0x5064580,15, 0x50645c0,15, 0x5064600,15, 0x5064640,15, 0x5064680,59, 0x5064800,1, 0x5064808,16, 0x5064850,1, 0x5064858,7, 0x5068000,3, 0x5068010,1, 0x5068018,3, 0x506a000,4, 0x506a080,19, 0x506a100,12, 0x506a200,4, 0x506a280,19, 0x506a300,12, 0x506a400,2, 0x506a600,124, 0x506a800,4, 0x506a880,18, 0x506a900,4, 0x506a980,23, 0x506aa00,10, 0x506aa2c,2, 0x506aa40,2, 0x506aa4c,3, 0x506aa60,2, 0x506aa6c,3, 0x506aa80,2, 0x506aa8c,2, 0x506aaa0,2, 0x506aaac,2, 0x506aac0,2, 0x506aacc,2, 0x506ab00,4, 0x506ab40,15, 0x506ab80,3, 0x506ab90,7, 0x506abb0,3, 0x506abc0,3, 0x506abd0,3, 0x506abe0,1, 0x506ac00,17, 0x506ae00,15, 0x506ae40,4, 0x506ae60,17, 0x506aec0,6, 0x506aee0,4, 0x506aef4,11, 0x506af24,28, 0x506b000,1, 0x506b080,1, 0x506b0a0,5, 0x506b0c0,5, 0x506b0e0,5, 0x506b100,1, 0x506b120,5, 0x506b140,5, 0x506b160,5, 0x506b180,24, 0x506b200,5, 0x506c000,20, 0x5070000,518, 0x5070900,45, 0x5070a00,45, 0x5070b00,45, 0x5070c00,45, 0x5070d00,45, 0x5070e00,45, 0x5070f00,45, 0x5071000,45, 0x5071800,9, 0x5071840,364, 0x5071e00,19, 0x5072000,9, 0x5072040,364, 0x5072600,19, 0x5072800,6, 0x5072820,3, 0x5072840,7, 0x5072880,6, 0x50728a0,3, 0x50728c0,7, 0x5072900,1, 0x5072908,3, 0x5072918,8, 0x5072940,7, 0x5073000,2, 0x5073800,18, 0x5073880,18, 0x5073c00,4, 0x5073c20,7, 0x5073d00,4, 0x5073d80,20, 0x5073e00,1, 0x5074000,21, 0x5074058,3, 0x5074100,1, 0x5074124,1, 0x507412c,5, 0x5074144,1, 0x507414c,6, 0x5074184,6, 0x50741a4,6, 0x50741c4,1, 0x50741cc,1, 0x5074400,9, 0x5074440,9, 0x5074480,15, 0x50744c0,15, 0x5074500,15, 0x5074540,15, 0x5074580,15, 0x50745c0,15, 0x5074600,15, 0x5074640,15, 0x5074680,59, 0x5074800,1, 0x5074808,16, 0x5074850,1, 0x5074858,7, 0x5078000,3, 0x5078010,1, 0x5078018,3, 0x507a000,4, 0x507a080,19, 0x507a100,12, 0x507a200,4, 0x507a280,19, 0x507a300,12, 0x507a400,2, 0x507a600,124, 0x507a800,4, 0x507a880,18, 0x507a900,4, 0x507a980,23, 0x507aa00,10, 0x507aa2c,2, 0x507aa40,2, 0x507aa4c,3, 0x507aa60,2, 0x507aa6c,3, 0x507aa80,2, 0x507aa8c,2, 0x507aaa0,2, 0x507aaac,2, 0x507aac0,2, 0x507aacc,2, 0x507ab00,4, 0x507ab40,15, 0x507ab80,3, 0x507ab90,7, 0x507abb0,3, 0x507abc0,3, 0x507abd0,3, 0x507abe0,1, 0x507ac00,17, 0x507ae00,15, 0x507ae40,4, 0x507ae60,17, 0x507aec0,6, 0x507aee0,4, 0x507aef4,11, 0x507af24,28, 0x507b000,1, 0x507b080,1, 0x507b0a0,5, 0x507b0c0,5, 0x507b0e0,5, 0x507b100,1, 0x507b120,5, 0x507b140,5, 0x507b160,5, 0x507b180,24, 0x507b200,5, 0x507c000,20, 0x5080000,18, 0x5080050,3, 0x5080060,3, 0x5080070,14, 0x50800c0,5, 0x5080400,13, 0x5080440,2, 0x508044c,3, 0x5080460,2, 0x5080480,13, 0x50804c0,2, 0x50804cc,3, 0x50804e0,2, 0x5080500,1, 0x5080508,16, 0x5080560,2, 0x508056c,3, 0x5080600,4, 0x5080680,19, 0x5080800,24, 0x5080864,2, 0x5080870,4, 0x5080a00,27, 0x5080a80,4, 0x5080ac0,25, 0x5080b40,6, 0x5080b60,4, 0x5080b74,11, 0x5080ba4,8, 0x5080c00,3, 0x5080c10,3, 0x5080c20,1, 0x5080c40,11, 0x5080c80,23, 0x5080ce0,15, 0x5080d20,15, 0x5080d60,2, 0x5080d6c,2, 0x5080d80,1, 0x5081000,18, 0x5081050,3, 0x5081060,3, 0x5081070,14, 0x50810c0,5, 0x5081400,13, 0x5081440,2, 0x508144c,3, 0x5081460,2, 0x5081480,13, 0x50814c0,2, 0x50814cc,3, 0x50814e0,2, 0x5081500,1, 0x5081508,16, 0x5081560,2, 0x508156c,3, 0x5081600,4, 0x5081680,19, 0x5081800,24, 0x5081864,2, 0x5081870,4, 0x5081a00,27, 0x5081a80,4, 0x5081ac0,25, 0x5081b40,6, 0x5081b60,4, 0x5081b74,11, 0x5081ba4,8, 0x5081c00,3, 0x5081c10,3, 0x5081c20,1, 0x5081c40,11, 0x5081c80,23, 0x5081ce0,15, 0x5081d20,15, 0x5081d60,2, 0x5081d6c,2, 0x5081d80,1, 0x5082000,20, 0x5082080,7, 0x50820a0,1, 0x50820b0,1, 0x50820b8,2, 0x5084000,14, 0x5100000,534, 0x5101000,2, 0x5101040,9, 0x5101080,7, 0x5102000,534, 0x5103000,12, 0x5103044,6, 0x5103080,8, 0x51030a4,1, 0x51030c0,7, 0x51030e0,7, 0x5103100,7, 0x5103120,7, 0x5103140,8, 0x5103164,6, 0x5103180,12, 0x5104000,534, 0x5105000,2, 0x5105040,9, 0x5105080,7, 0x5106000,534, 0x5107000,12, 0x5107044,6, 0x5107080,8, 0x51070a4,1, 0x51070c0,7, 0x51070e0,7, 0x5107100,7, 0x5107120,7, 0x5107140,8, 0x5107164,6, 0x5107180,12, 0x5108004,5, 0x5108200,27, 0x5108280,4, 0x51082c0,25, 0x5108340,6, 0x5108360,4, 0x5108374,11, 0x51083a4,5, 0x5108400,1, 0x5110000,397, 0x5110800,93, 0x5110980,6, 0x5110a00,41, 0x5110b00,2, 0x5110b20,19, 0x5110c00,25, 0x5110c80,1, 0x5110d00,28, 0x5110d80,1, 0x5111000,397, 0x5111800,93, 0x5111980,6, 0x5111a00,41, 0x5111b00,2, 0x5111b20,19, 0x5111c00,25, 0x5111c80,1, 0x5111d00,28, 0x5111d80,1, 0x5112000,7, 0x5112040,9, 0x5112080,4, 0x51120a0,5, 0x51120c0,2, 0x5114000,3, 0x5114010,6, 0x5114200,7, 0x5114220,6, 0x5114240,7, 0x5114260,6, 0x5114280,2, 0x511428c,2, 0x51142a0,2, 0x51142ac,2, 0x51142c0,7, 0x51142e0,7, 0x5114300,2, 0x511430c,2, 0x5114320,6, 0x5114340,7, 0x5114360,6, 0x5114380,6, 0x51143a0,7, 0x51143c0,6, 0x51143e0,6, 0x5114400,3, 0x5114440,12, 0x5114484,1, 0x51144c0,16, 0x5114800,7, 0x5114820,14, 0x5114880,9, 0x51148a8,12, 0x5114900,7, 0x5114920,14, 0x5114980,9, 0x51149a8,12, 0x5114a00,10, 0x5114a40,2, 0x5114a4c,3, 0x5114c00,5, 0x5114c20,1, 0x5114c28,3, 0x5120000,534, 0x5121000,2, 0x5121040,9, 0x5121080,7, 0x5122000,534, 0x5123000,12, 0x5123044,6, 0x5123080,8, 0x51230a4,1, 0x51230c0,7, 0x51230e0,7, 0x5123100,7, 0x5123120,7, 0x5123140,8, 0x5123164,6, 0x5123180,12, 0x5124000,534, 0x5125000,2, 0x5125040,9, 0x5125080,7, 0x5126000,534, 0x5127000,12, 0x5127044,6, 0x5127080,8, 0x51270a4,1, 0x51270c0,7, 0x51270e0,7, 0x5127100,7, 0x5127120,7, 0x5127140,8, 0x5127164,6, 0x5127180,12, 0x5128004,5, 0x5128200,27, 0x5128280,4, 0x51282c0,25, 0x5128340,6, 0x5128360,4, 0x5128374,11, 0x51283a4,5, 0x5128400,1, 0x5130000,397, 0x5130800,93, 0x5130980,6, 0x5130a00,41, 0x5130b00,2, 0x5130b20,19, 0x5130c00,25, 0x5130c80,1, 0x5130d00,28, 0x5130d80,1, 0x5131000,397, 0x5131800,93, 0x5131980,6, 0x5131a00,41, 0x5131b00,2, 0x5131b20,19, 0x5131c00,25, 0x5131c80,1, 0x5131d00,28, 0x5131d80,1, 0x5132000,7, 0x5132040,9, 0x5132080,4, 0x51320a0,5, 0x51320c0,2, 0x5134000,3, 0x5134010,6, 0x5134200,7, 0x5134220,6, 0x5134240,7, 0x5134260,6, 0x5134280,2, 0x513428c,2, 0x51342a0,2, 0x51342ac,2, 0x51342c0,7, 0x51342e0,7, 0x5134300,2, 0x513430c,2, 0x5134320,6, 0x5134340,7, 0x5134360,6, 0x5134380,6, 0x51343a0,7, 0x51343c0,6, 0x51343e0,6, 0x5134400,3, 0x5134440,12, 0x5134484,1, 0x51344c0,16, 0x5134800,7, 0x5134820,14, 0x5134880,9, 0x51348a8,12, 0x5134900,7, 0x5134920,14, 0x5134980,9, 0x51349a8,12, 0x5134a00,10, 0x5134a40,2, 0x5134a4c,3, 0x5134c00,5, 0x5134c20,1, 0x5134c28,3, 0x5140000,37, 0x5140100,3, 0x5140110,15, 0x5140200,37, 0x5140300,3, 0x5140310,15, 0x5140400,5, 0x5140420,5, 0x5140440,18, 0x5140800,3, 0x5140810,2, 0x5140820,3, 0x5140830,2, 0x5140840,1, 0x5141000,12, 0x5141040,12, 0x5141080,2, 0x5141100,19, 0x5141180,19, 0x5141200,26, 0x5141400,20, 0x5141480,20, 0x5141500,8, 0x5141540,4, 0x5141580,15, 0x51415c0,15, 0x5141600,9, 0x5141630,5, 0x5142000,37, 0x5142100,3, 0x5142110,15, 0x5142200,37, 0x5142300,3, 0x5142310,15, 0x5142400,5, 0x5142420,5, 0x5142440,18, 0x5142800,3, 0x5142810,2, 0x5142820,3, 0x5142830,2, 0x5142840,1, 0x5143000,12, 0x5143040,12, 0x5143080,2, 0x5143100,19, 0x5143180,19, 0x5143200,26, 0x5143400,20, 0x5143480,20, 0x5143500,8, 0x5143540,4, 0x5143580,15, 0x51435c0,15, 0x5143600,9, 0x5143630,5, 0x5144000,6, 0x5144020,1, 0x514402c,3, 0x5144040,11, 0x5144070,3, 0x5144080,2, 0x5148000,49, 0x5148100,12, 0x5148140,4, 0x5148184,1, 0x5148198,2, 0x51481a4,1, 0x51481b8,7, 0x51481e0,4, 0x5148200,20, 0x5148280,3, 0x5148290,9, 0x51482c0,6, 0x51482e0,1, 0x51482e8,7, 0x5148400,49, 0x5148500,12, 0x5148540,4, 0x5148584,1, 0x5148598,2, 0x51485a4,1, 0x51485b8,7, 0x51485e0,4, 0x5148600,20, 0x5148680,3, 0x5148690,9, 0x51486c0,6, 0x51486e0,1, 0x51486e8,7, 0x5148800,49, 0x5148900,12, 0x5148940,4, 0x5148984,1, 0x5148998,2, 0x51489a4,1, 0x51489b8,7, 0x51489e0,4, 0x5148a00,20, 0x5148a80,3, 0x5148a90,9, 0x5148ac0,6, 0x5148ae0,1, 0x5148ae8,7, 0x5148c00,49, 0x5148d00,12, 0x5148d40,4, 0x5148d84,1, 0x5148d98,2, 0x5148da4,1, 0x5148db8,7, 0x5148de0,4, 0x5148e00,20, 0x5148e80,3, 0x5148e90,9, 0x5148ec0,6, 0x5148ee0,1, 0x5148ee8,7, 0x5149000,49, 0x5149100,12, 0x5149140,4, 0x5149184,1, 0x5149198,2, 0x51491a4,1, 0x51491b8,7, 0x51491e0,4, 0x5149200,20, 0x5149280,3, 0x5149290,9, 0x51492c0,6, 0x51492e0,1, 0x51492e8,7, 0x5149400,49, 0x5149500,12, 0x5149540,4, 0x5149584,1, 0x5149598,2, 0x51495a4,1, 0x51495b8,7, 0x51495e0,4, 0x5149600,20, 0x5149680,3, 0x5149690,9, 0x51496c0,6, 0x51496e0,1, 0x51496e8,7, 0x5149800,49, 0x5149900,12, 0x5149940,4, 0x5149984,1, 0x5149998,2, 0x51499a4,1, 0x51499b8,7, 0x51499e0,4, 0x5149a00,20, 0x5149a80,3, 0x5149a90,9, 0x5149ac0,6, 0x5149ae0,1, 0x5149ae8,7, 0x514a000,20, 0x514a080,2, 0x514a100,20, 0x514a180,2, 0x514a200,4, 0x514a400,20, 0x514a480,2, 0x514a500,20, 0x514a580,2, 0x514a600,4, 0x514a800,3, 0x514a840,12, 0x514a880,12, 0x514a8c0,12, 0x514a900,12, 0x514a940,12, 0x514a980,12, 0x514a9c0,12, 0x514aa00,12, 0x514ac00,12, 0x514ac40,7, 0x514ac60,10, 0x514b004,1, 0x514b018,40, 0x514b100,7, 0x514b120,7, 0x514b140,2, 0x514b14c,2, 0x514b160,2, 0x514b16c,2, 0x514b180,18, 0x514b200,2, 0x514b220,10, 0x514b260,20, 0x514b2c0,7, 0x514b300,15, 0x514b340,9, 0x514b380,6, 0x514b3a0,4, 0x514b400,4, 0x514c000,106, 0x514c200,2, 0x514c240,9, 0x514c280,7, 0x514c400,106, 0x514c604,6, 0x514c700,15, 0x514c740,9, 0x514c780,6, 0x514c7a0,6, 0x514c800,8, 0x514c824,1, 0x514c830,15, 0x514c870,3, 0x5160000,518, 0x5160900,45, 0x5160a00,45, 0x5160b00,45, 0x5160c00,45, 0x5160d00,45, 0x5160e00,45, 0x5160f00,45, 0x5161000,45, 0x5161800,9, 0x5161840,364, 0x5161e00,19, 0x5162000,9, 0x5162040,364, 0x5162600,19, 0x5162800,6, 0x5162820,3, 0x5162840,7, 0x5162880,6, 0x51628a0,3, 0x51628c0,7, 0x5162900,1, 0x5162908,3, 0x5162918,8, 0x5162940,7, 0x5163000,2, 0x5163800,18, 0x5163880,18, 0x5163c00,4, 0x5163c20,7, 0x5163d00,4, 0x5163d80,20, 0x5163e00,1, 0x5164000,21, 0x5164058,3, 0x5164100,1, 0x5164124,1, 0x516412c,5, 0x5164144,1, 0x516414c,6, 0x5164184,6, 0x51641a4,6, 0x51641c4,1, 0x51641cc,1, 0x5164400,9, 0x5164440,9, 0x5164480,15, 0x51644c0,15, 0x5164500,15, 0x5164540,15, 0x5164580,15, 0x51645c0,15, 0x5164600,15, 0x5164640,15, 0x5164680,59, 0x5164800,1, 0x5164808,16, 0x5164850,1, 0x5164858,7, 0x5168000,3, 0x5168010,1, 0x5168018,3, 0x516a000,4, 0x516a080,19, 0x516a100,12, 0x516a200,4, 0x516a280,19, 0x516a300,12, 0x516a400,2, 0x516a600,124, 0x516a800,4, 0x516a880,18, 0x516a900,4, 0x516a980,23, 0x516aa00,10, 0x516aa2c,2, 0x516aa40,2, 0x516aa4c,3, 0x516aa60,2, 0x516aa6c,3, 0x516aa80,2, 0x516aa8c,2, 0x516aaa0,2, 0x516aaac,2, 0x516aac0,2, 0x516aacc,2, 0x516ab00,4, 0x516ab40,15, 0x516ab80,3, 0x516ab90,7, 0x516abb0,3, 0x516abc0,3, 0x516abd0,3, 0x516abe0,1, 0x516ac00,17, 0x516ae00,15, 0x516ae40,4, 0x516ae60,17, 0x516aec0,6, 0x516aee0,4, 0x516aef4,11, 0x516af24,28, 0x516b000,1, 0x516b080,1, 0x516b0a0,5, 0x516b0c0,5, 0x516b0e0,5, 0x516b100,1, 0x516b120,5, 0x516b140,5, 0x516b160,5, 0x516b180,24, 0x516b200,5, 0x516c000,20, 0x5170000,518, 0x5170900,45, 0x5170a00,45, 0x5170b00,45, 0x5170c00,45, 0x5170d00,45, 0x5170e00,45, 0x5170f00,45, 0x5171000,45, 0x5171800,9, 0x5171840,364, 0x5171e00,19, 0x5172000,9, 0x5172040,364, 0x5172600,19, 0x5172800,6, 0x5172820,3, 0x5172840,7, 0x5172880,6, 0x51728a0,3, 0x51728c0,7, 0x5172900,1, 0x5172908,3, 0x5172918,8, 0x5172940,7, 0x5173000,2, 0x5173800,18, 0x5173880,18, 0x5173c00,4, 0x5173c20,7, 0x5173d00,4, 0x5173d80,20, 0x5173e00,1, 0x5174000,21, 0x5174058,3, 0x5174100,1, 0x5174124,1, 0x517412c,5, 0x5174144,1, 0x517414c,6, 0x5174184,6, 0x51741a4,6, 0x51741c4,1, 0x51741cc,1, 0x5174400,9, 0x5174440,9, 0x5174480,15, 0x51744c0,15, 0x5174500,15, 0x5174540,15, 0x5174580,15, 0x51745c0,15, 0x5174600,15, 0x5174640,15, 0x5174680,59, 0x5174800,1, 0x5174808,16, 0x5174850,1, 0x5174858,7, 0x5178000,3, 0x5178010,1, 0x5178018,3, 0x517a000,4, 0x517a080,19, 0x517a100,12, 0x517a200,4, 0x517a280,19, 0x517a300,12, 0x517a400,2, 0x517a600,124, 0x517a800,4, 0x517a880,18, 0x517a900,4, 0x517a980,23, 0x517aa00,10, 0x517aa2c,2, 0x517aa40,2, 0x517aa4c,3, 0x517aa60,2, 0x517aa6c,3, 0x517aa80,2, 0x517aa8c,2, 0x517aaa0,2, 0x517aaac,2, 0x517aac0,2, 0x517aacc,2, 0x517ab00,4, 0x517ab40,15, 0x517ab80,3, 0x517ab90,7, 0x517abb0,3, 0x517abc0,3, 0x517abd0,3, 0x517abe0,1, 0x517ac00,17, 0x517ae00,15, 0x517ae40,4, 0x517ae60,17, 0x517aec0,6, 0x517aee0,4, 0x517aef4,11, 0x517af24,28, 0x517b000,1, 0x517b080,1, 0x517b0a0,5, 0x517b0c0,5, 0x517b0e0,5, 0x517b100,1, 0x517b120,5, 0x517b140,5, 0x517b160,5, 0x517b180,24, 0x517b200,5, 0x517c000,20, 0x5180000,18, 0x5180050,3, 0x5180060,3, 0x5180070,14, 0x51800c0,5, 0x5180400,13, 0x5180440,2, 0x518044c,3, 0x5180460,2, 0x5180480,13, 0x51804c0,2, 0x51804cc,3, 0x51804e0,2, 0x5180500,1, 0x5180508,16, 0x5180560,2, 0x518056c,3, 0x5180600,4, 0x5180680,19, 0x5180800,24, 0x5180864,2, 0x5180870,4, 0x5180a00,27, 0x5180a80,4, 0x5180ac0,25, 0x5180b40,6, 0x5180b60,4, 0x5180b74,11, 0x5180ba4,8, 0x5180c00,3, 0x5180c10,3, 0x5180c20,1, 0x5180c40,11, 0x5180c80,23, 0x5180ce0,15, 0x5180d20,15, 0x5180d60,2, 0x5180d6c,2, 0x5180d80,1, 0x5181000,18, 0x5181050,3, 0x5181060,3, 0x5181070,14, 0x51810c0,5, 0x5181400,13, 0x5181440,2, 0x518144c,3, 0x5181460,2, 0x5181480,13, 0x51814c0,2, 0x51814cc,3, 0x51814e0,2, 0x5181500,1, 0x5181508,16, 0x5181560,2, 0x518156c,3, 0x5181600,4, 0x5181680,19, 0x5181800,24, 0x5181864,2, 0x5181870,4, 0x5181a00,27, 0x5181a80,4, 0x5181ac0,25, 0x5181b40,6, 0x5181b60,4, 0x5181b74,11, 0x5181ba4,8, 0x5181c00,3, 0x5181c10,3, 0x5181c20,1, 0x5181c40,11, 0x5181c80,23, 0x5181ce0,15, 0x5181d20,15, 0x5181d60,2, 0x5181d6c,2, 0x5181d80,1, 0x5182000,20, 0x5182080,7, 0x51820a0,1, 0x51820b0,1, 0x51820b8,2, 0x5184000,14, 0x5200000,534, 0x5201000,2, 0x5201040,9, 0x5201080,7, 0x5202000,534, 0x5203000,12, 0x5203044,6, 0x5203080,8, 0x52030a4,1, 0x52030c0,7, 0x52030e0,7, 0x5203100,7, 0x5203120,7, 0x5203140,8, 0x5203164,6, 0x5203180,12, 0x5204000,534, 0x5205000,2, 0x5205040,9, 0x5205080,7, 0x5206000,534, 0x5207000,12, 0x5207044,6, 0x5207080,8, 0x52070a4,1, 0x52070c0,7, 0x52070e0,7, 0x5207100,7, 0x5207120,7, 0x5207140,8, 0x5207164,6, 0x5207180,12, 0x5208004,5, 0x5208200,27, 0x5208280,4, 0x52082c0,25, 0x5208340,6, 0x5208360,4, 0x5208374,11, 0x52083a4,5, 0x5208400,1, 0x5210000,397, 0x5210800,93, 0x5210980,6, 0x5210a00,41, 0x5210b00,2, 0x5210b20,19, 0x5210c00,25, 0x5210c80,1, 0x5210d00,28, 0x5210d80,1, 0x5211000,397, 0x5211800,93, 0x5211980,6, 0x5211a00,41, 0x5211b00,2, 0x5211b20,19, 0x5211c00,25, 0x5211c80,1, 0x5211d00,28, 0x5211d80,1, 0x5212000,7, 0x5212040,9, 0x5212080,4, 0x52120a0,5, 0x52120c0,2, 0x5214000,3, 0x5214010,6, 0x5214200,7, 0x5214220,6, 0x5214240,7, 0x5214260,6, 0x5214280,2, 0x521428c,2, 0x52142a0,2, 0x52142ac,2, 0x52142c0,7, 0x52142e0,7, 0x5214300,2, 0x521430c,2, 0x5214320,6, 0x5214340,7, 0x5214360,6, 0x5214380,6, 0x52143a0,7, 0x52143c0,6, 0x52143e0,6, 0x5214400,3, 0x5214440,12, 0x5214484,1, 0x52144c0,16, 0x5214800,7, 0x5214820,14, 0x5214880,9, 0x52148a8,12, 0x5214900,7, 0x5214920,14, 0x5214980,9, 0x52149a8,12, 0x5214a00,10, 0x5214a40,2, 0x5214a4c,3, 0x5214c00,5, 0x5214c20,1, 0x5214c28,3, 0x5220000,534, 0x5221000,2, 0x5221040,9, 0x5221080,7, 0x5222000,534, 0x5223000,12, 0x5223044,6, 0x5223080,8, 0x52230a4,1, 0x52230c0,7, 0x52230e0,7, 0x5223100,7, 0x5223120,7, 0x5223140,8, 0x5223164,6, 0x5223180,12, 0x5224000,534, 0x5225000,2, 0x5225040,9, 0x5225080,7, 0x5226000,534, 0x5227000,12, 0x5227044,6, 0x5227080,8, 0x52270a4,1, 0x52270c0,7, 0x52270e0,7, 0x5227100,7, 0x5227120,7, 0x5227140,8, 0x5227164,6, 0x5227180,12, 0x5228004,5, 0x5228200,27, 0x5228280,4, 0x52282c0,25, 0x5228340,6, 0x5228360,4, 0x5228374,11, 0x52283a4,5, 0x5228400,1, 0x5230000,397, 0x5230800,93, 0x5230980,6, 0x5230a00,41, 0x5230b00,2, 0x5230b20,19, 0x5230c00,25, 0x5230c80,1, 0x5230d00,28, 0x5230d80,1, 0x5231000,397, 0x5231800,93, 0x5231980,6, 0x5231a00,41, 0x5231b00,2, 0x5231b20,19, 0x5231c00,25, 0x5231c80,1, 0x5231d00,28, 0x5231d80,1, 0x5232000,7, 0x5232040,9, 0x5232080,4, 0x52320a0,5, 0x52320c0,2, 0x5234000,3, 0x5234010,6, 0x5234200,7, 0x5234220,6, 0x5234240,7, 0x5234260,6, 0x5234280,2, 0x523428c,2, 0x52342a0,2, 0x52342ac,2, 0x52342c0,7, 0x52342e0,7, 0x5234300,2, 0x523430c,2, 0x5234320,6, 0x5234340,7, 0x5234360,6, 0x5234380,6, 0x52343a0,7, 0x52343c0,6, 0x52343e0,6, 0x5234400,3, 0x5234440,12, 0x5234484,1, 0x52344c0,16, 0x5234800,7, 0x5234820,14, 0x5234880,9, 0x52348a8,12, 0x5234900,7, 0x5234920,14, 0x5234980,9, 0x52349a8,12, 0x5234a00,10, 0x5234a40,2, 0x5234a4c,3, 0x5234c00,5, 0x5234c20,1, 0x5234c28,3, 0x5240000,37, 0x5240100,3, 0x5240110,15, 0x5240200,37, 0x5240300,3, 0x5240310,15, 0x5240400,5, 0x5240420,5, 0x5240440,18, 0x5240800,3, 0x5240810,2, 0x5240820,3, 0x5240830,2, 0x5240840,1, 0x5241000,12, 0x5241040,12, 0x5241080,2, 0x5241100,19, 0x5241180,19, 0x5241200,26, 0x5241400,20, 0x5241480,20, 0x5241500,8, 0x5241540,4, 0x5241580,15, 0x52415c0,15, 0x5241600,9, 0x5241630,5, 0x5242000,37, 0x5242100,3, 0x5242110,15, 0x5242200,37, 0x5242300,3, 0x5242310,15, 0x5242400,5, 0x5242420,5, 0x5242440,18, 0x5242800,3, 0x5242810,2, 0x5242820,3, 0x5242830,2, 0x5242840,1, 0x5243000,12, 0x5243040,12, 0x5243080,2, 0x5243100,19, 0x5243180,19, 0x5243200,26, 0x5243400,20, 0x5243480,20, 0x5243500,8, 0x5243540,4, 0x5243580,15, 0x52435c0,15, 0x5243600,9, 0x5243630,5, 0x5244000,6, 0x5244020,1, 0x524402c,3, 0x5244040,11, 0x5244070,3, 0x5244080,2, 0x5248000,49, 0x5248100,12, 0x5248140,4, 0x5248184,1, 0x5248198,2, 0x52481a4,1, 0x52481b8,7, 0x52481e0,4, 0x5248200,20, 0x5248280,3, 0x5248290,9, 0x52482c0,6, 0x52482e0,1, 0x52482e8,7, 0x5248400,49, 0x5248500,12, 0x5248540,4, 0x5248584,1, 0x5248598,2, 0x52485a4,1, 0x52485b8,7, 0x52485e0,4, 0x5248600,20, 0x5248680,3, 0x5248690,9, 0x52486c0,6, 0x52486e0,1, 0x52486e8,7, 0x5248800,49, 0x5248900,12, 0x5248940,4, 0x5248984,1, 0x5248998,2, 0x52489a4,1, 0x52489b8,7, 0x52489e0,4, 0x5248a00,20, 0x5248a80,3, 0x5248a90,9, 0x5248ac0,6, 0x5248ae0,1, 0x5248ae8,7, 0x5248c00,49, 0x5248d00,12, 0x5248d40,4, 0x5248d84,1, 0x5248d98,2, 0x5248da4,1, 0x5248db8,7, 0x5248de0,4, 0x5248e00,20, 0x5248e80,3, 0x5248e90,9, 0x5248ec0,6, 0x5248ee0,1, 0x5248ee8,7, 0x5249000,49, 0x5249100,12, 0x5249140,4, 0x5249184,1, 0x5249198,2, 0x52491a4,1, 0x52491b8,7, 0x52491e0,4, 0x5249200,20, 0x5249280,3, 0x5249290,9, 0x52492c0,6, 0x52492e0,1, 0x52492e8,7, 0x5249400,49, 0x5249500,12, 0x5249540,4, 0x5249584,1, 0x5249598,2, 0x52495a4,1, 0x52495b8,7, 0x52495e0,4, 0x5249600,20, 0x5249680,3, 0x5249690,9, 0x52496c0,6, 0x52496e0,1, 0x52496e8,7, 0x5249800,49, 0x5249900,12, 0x5249940,4, 0x5249984,1, 0x5249998,2, 0x52499a4,1, 0x52499b8,7, 0x52499e0,4, 0x5249a00,20, 0x5249a80,3, 0x5249a90,9, 0x5249ac0,6, 0x5249ae0,1, 0x5249ae8,7, 0x524a000,20, 0x524a080,2, 0x524a100,20, 0x524a180,2, 0x524a200,4, 0x524a400,20, 0x524a480,2, 0x524a500,20, 0x524a580,2, 0x524a600,4, 0x524a800,3, 0x524a840,12, 0x524a880,12, 0x524a8c0,12, 0x524a900,12, 0x524a940,12, 0x524a980,12, 0x524a9c0,12, 0x524aa00,12, 0x524ac00,12, 0x524ac40,7, 0x524ac60,10, 0x524b004,1, 0x524b018,40, 0x524b100,7, 0x524b120,7, 0x524b140,2, 0x524b14c,2, 0x524b160,2, 0x524b16c,2, 0x524b180,18, 0x524b200,2, 0x524b220,10, 0x524b260,20, 0x524b2c0,7, 0x524b300,15, 0x524b340,9, 0x524b380,6, 0x524b3a0,4, 0x524b400,4, 0x524c000,106, 0x524c200,2, 0x524c240,9, 0x524c280,7, 0x524c400,106, 0x524c604,6, 0x524c700,15, 0x524c740,9, 0x524c780,6, 0x524c7a0,6, 0x524c800,8, 0x524c824,1, 0x524c830,15, 0x524c870,3, 0x5260000,518, 0x5260900,45, 0x5260a00,45, 0x5260b00,45, 0x5260c00,45, 0x5260d00,45, 0x5260e00,45, 0x5260f00,45, 0x5261000,45, 0x5261800,9, 0x5261840,364, 0x5261e00,19, 0x5262000,9, 0x5262040,364, 0x5262600,19, 0x5262800,6, 0x5262820,3, 0x5262840,7, 0x5262880,6, 0x52628a0,3, 0x52628c0,7, 0x5262900,1, 0x5262908,3, 0x5262918,8, 0x5262940,7, 0x5263000,2, 0x5263800,18, 0x5263880,18, 0x5263c00,4, 0x5263c20,7, 0x5263d00,4, 0x5263d80,20, 0x5263e00,1, 0x5264000,21, 0x5264058,3, 0x5264100,1, 0x5264124,1, 0x526412c,5, 0x5264144,1, 0x526414c,6, 0x5264184,6, 0x52641a4,6, 0x52641c4,1, 0x52641cc,1, 0x5264400,9, 0x5264440,9, 0x5264480,15, 0x52644c0,15, 0x5264500,15, 0x5264540,15, 0x5264580,15, 0x52645c0,15, 0x5264600,15, 0x5264640,15, 0x5264680,59, 0x5264800,1, 0x5264808,16, 0x5264850,1, 0x5264858,7, 0x5268000,3, 0x5268010,1, 0x5268018,3, 0x526a000,4, 0x526a080,19, 0x526a100,12, 0x526a200,4, 0x526a280,19, 0x526a300,12, 0x526a400,2, 0x526a600,124, 0x526a800,4, 0x526a880,18, 0x526a900,4, 0x526a980,23, 0x526aa00,10, 0x526aa2c,2, 0x526aa40,2, 0x526aa4c,3, 0x526aa60,2, 0x526aa6c,3, 0x526aa80,2, 0x526aa8c,2, 0x526aaa0,2, 0x526aaac,2, 0x526aac0,2, 0x526aacc,2, 0x526ab00,4, 0x526ab40,15, 0x526ab80,3, 0x526ab90,7, 0x526abb0,3, 0x526abc0,3, 0x526abd0,3, 0x526abe0,1, 0x526ac00,17, 0x526ae00,15, 0x526ae40,4, 0x526ae60,17, 0x526aec0,6, 0x526aee0,4, 0x526aef4,11, 0x526af24,28, 0x526b000,1, 0x526b080,1, 0x526b0a0,5, 0x526b0c0,5, 0x526b0e0,5, 0x526b100,1, 0x526b120,5, 0x526b140,5, 0x526b160,5, 0x526b180,24, 0x526b200,5, 0x526c000,20, 0x5270000,518, 0x5270900,45, 0x5270a00,45, 0x5270b00,45, 0x5270c00,45, 0x5270d00,45, 0x5270e00,45, 0x5270f00,45, 0x5271000,45, 0x5271800,9, 0x5271840,364, 0x5271e00,19, 0x5272000,9, 0x5272040,364, 0x5272600,19, 0x5272800,6, 0x5272820,3, 0x5272840,7, 0x5272880,6, 0x52728a0,3, 0x52728c0,7, 0x5272900,1, 0x5272908,3, 0x5272918,8, 0x5272940,7, 0x5273000,2, 0x5273800,18, 0x5273880,18, 0x5273c00,4, 0x5273c20,7, 0x5273d00,4, 0x5273d80,20, 0x5273e00,1, 0x5274000,21, 0x5274058,3, 0x5274100,1, 0x5274124,1, 0x527412c,5, 0x5274144,1, 0x527414c,6, 0x5274184,6, 0x52741a4,6, 0x52741c4,1, 0x52741cc,1, 0x5274400,9, 0x5274440,9, 0x5274480,15, 0x52744c0,15, 0x5274500,15, 0x5274540,15, 0x5274580,15, 0x52745c0,15, 0x5274600,15, 0x5274640,15, 0x5274680,59, 0x5274800,1, 0x5274808,16, 0x5274850,1, 0x5274858,7, 0x5278000,3, 0x5278010,1, 0x5278018,3, 0x527a000,4, 0x527a080,19, 0x527a100,12, 0x527a200,4, 0x527a280,19, 0x527a300,12, 0x527a400,2, 0x527a600,124, 0x527a800,4, 0x527a880,18, 0x527a900,4, 0x527a980,23, 0x527aa00,10, 0x527aa2c,2, 0x527aa40,2, 0x527aa4c,3, 0x527aa60,2, 0x527aa6c,3, 0x527aa80,2, 0x527aa8c,2, 0x527aaa0,2, 0x527aaac,2, 0x527aac0,2, 0x527aacc,2, 0x527ab00,4, 0x527ab40,15, 0x527ab80,3, 0x527ab90,7, 0x527abb0,3, 0x527abc0,3, 0x527abd0,3, 0x527abe0,1, 0x527ac00,17, 0x527ae00,15, 0x527ae40,4, 0x527ae60,17, 0x527aec0,6, 0x527aee0,4, 0x527aef4,11, 0x527af24,28, 0x527b000,1, 0x527b080,1, 0x527b0a0,5, 0x527b0c0,5, 0x527b0e0,5, 0x527b100,1, 0x527b120,5, 0x527b140,5, 0x527b160,5, 0x527b180,24, 0x527b200,5, 0x527c000,20, 0x5280000,18, 0x5280050,3, 0x5280060,3, 0x5280070,14, 0x52800c0,5, 0x5280400,13, 0x5280440,2, 0x528044c,3, 0x5280460,2, 0x5280480,13, 0x52804c0,2, 0x52804cc,3, 0x52804e0,2, 0x5280500,1, 0x5280508,16, 0x5280560,2, 0x528056c,3, 0x5280600,4, 0x5280680,19, 0x5280800,24, 0x5280864,2, 0x5280870,4, 0x5280a00,27, 0x5280a80,4, 0x5280ac0,25, 0x5280b40,6, 0x5280b60,4, 0x5280b74,11, 0x5280ba4,8, 0x5280c00,3, 0x5280c10,3, 0x5280c20,1, 0x5280c40,11, 0x5280c80,23, 0x5280ce0,15, 0x5280d20,15, 0x5280d60,2, 0x5280d6c,2, 0x5280d80,1, 0x5281000,18, 0x5281050,3, 0x5281060,3, 0x5281070,14, 0x52810c0,5, 0x5281400,13, 0x5281440,2, 0x528144c,3, 0x5281460,2, 0x5281480,13, 0x52814c0,2, 0x52814cc,3, 0x52814e0,2, 0x5281500,1, 0x5281508,16, 0x5281560,2, 0x528156c,3, 0x5281600,4, 0x5281680,19, 0x5281800,24, 0x5281864,2, 0x5281870,4, 0x5281a00,27, 0x5281a80,4, 0x5281ac0,25, 0x5281b40,6, 0x5281b60,4, 0x5281b74,11, 0x5281ba4,8, 0x5281c00,3, 0x5281c10,3, 0x5281c20,1, 0x5281c40,11, 0x5281c80,23, 0x5281ce0,15, 0x5281d20,15, 0x5281d60,2, 0x5281d6c,2, 0x5281d80,1, 0x5282000,20, 0x5282080,7, 0x52820a0,1, 0x52820b0,1, 0x52820b8,2, 0x5284000,14, 0x5300000,534, 0x5301000,2, 0x5301040,9, 0x5301080,7, 0x5302000,534, 0x5303000,12, 0x5303044,6, 0x5303080,8, 0x53030a4,1, 0x53030c0,7, 0x53030e0,7, 0x5303100,7, 0x5303120,7, 0x5303140,8, 0x5303164,6, 0x5303180,12, 0x5304000,534, 0x5305000,2, 0x5305040,9, 0x5305080,7, 0x5306000,534, 0x5307000,12, 0x5307044,6, 0x5307080,8, 0x53070a4,1, 0x53070c0,7, 0x53070e0,7, 0x5307100,7, 0x5307120,7, 0x5307140,8, 0x5307164,6, 0x5307180,12, 0x5308004,5, 0x5308200,27, 0x5308280,4, 0x53082c0,25, 0x5308340,6, 0x5308360,4, 0x5308374,11, 0x53083a4,5, 0x5308400,1, 0x5310000,397, 0x5310800,93, 0x5310980,6, 0x5310a00,41, 0x5310b00,2, 0x5310b20,19, 0x5310c00,25, 0x5310c80,1, 0x5310d00,28, 0x5310d80,1, 0x5311000,397, 0x5311800,93, 0x5311980,6, 0x5311a00,41, 0x5311b00,2, 0x5311b20,19, 0x5311c00,25, 0x5311c80,1, 0x5311d00,28, 0x5311d80,1, 0x5312000,7, 0x5312040,9, 0x5312080,4, 0x53120a0,5, 0x53120c0,2, 0x5314000,3, 0x5314010,6, 0x5314200,7, 0x5314220,6, 0x5314240,7, 0x5314260,6, 0x5314280,2, 0x531428c,2, 0x53142a0,2, 0x53142ac,2, 0x53142c0,7, 0x53142e0,7, 0x5314300,2, 0x531430c,2, 0x5314320,6, 0x5314340,7, 0x5314360,6, 0x5314380,6, 0x53143a0,7, 0x53143c0,6, 0x53143e0,6, 0x5314400,3, 0x5314440,12, 0x5314484,1, 0x53144c0,16, 0x5314800,7, 0x5314820,14, 0x5314880,9, 0x53148a8,12, 0x5314900,7, 0x5314920,14, 0x5314980,9, 0x53149a8,12, 0x5314a00,10, 0x5314a40,2, 0x5314a4c,3, 0x5314c00,5, 0x5314c20,1, 0x5314c28,3, 0x5320000,534, 0x5321000,2, 0x5321040,9, 0x5321080,7, 0x5322000,534, 0x5323000,12, 0x5323044,6, 0x5323080,8, 0x53230a4,1, 0x53230c0,7, 0x53230e0,7, 0x5323100,7, 0x5323120,7, 0x5323140,8, 0x5323164,6, 0x5323180,12, 0x5324000,534, 0x5325000,2, 0x5325040,9, 0x5325080,7, 0x5326000,534, 0x5327000,12, 0x5327044,6, 0x5327080,8, 0x53270a4,1, 0x53270c0,7, 0x53270e0,7, 0x5327100,7, 0x5327120,7, 0x5327140,8, 0x5327164,6, 0x5327180,12, 0x5328004,5, 0x5328200,27, 0x5328280,4, 0x53282c0,25, 0x5328340,6, 0x5328360,4, 0x5328374,11, 0x53283a4,5, 0x5328400,1, 0x5330000,397, 0x5330800,93, 0x5330980,6, 0x5330a00,41, 0x5330b00,2, 0x5330b20,19, 0x5330c00,25, 0x5330c80,1, 0x5330d00,28, 0x5330d80,1, 0x5331000,397, 0x5331800,93, 0x5331980,6, 0x5331a00,41, 0x5331b00,2, 0x5331b20,19, 0x5331c00,25, 0x5331c80,1, 0x5331d00,28, 0x5331d80,1, 0x5332000,7, 0x5332040,9, 0x5332080,4, 0x53320a0,5, 0x53320c0,2, 0x5334000,3, 0x5334010,6, 0x5334200,7, 0x5334220,6, 0x5334240,7, 0x5334260,6, 0x5334280,2, 0x533428c,2, 0x53342a0,2, 0x53342ac,2, 0x53342c0,7, 0x53342e0,7, 0x5334300,2, 0x533430c,2, 0x5334320,6, 0x5334340,7, 0x5334360,6, 0x5334380,6, 0x53343a0,7, 0x53343c0,6, 0x53343e0,6, 0x5334400,3, 0x5334440,12, 0x5334484,1, 0x53344c0,16, 0x5334800,7, 0x5334820,14, 0x5334880,9, 0x53348a8,12, 0x5334900,7, 0x5334920,14, 0x5334980,9, 0x53349a8,12, 0x5334a00,10, 0x5334a40,2, 0x5334a4c,3, 0x5334c00,5, 0x5334c20,1, 0x5334c28,3, 0x5340000,37, 0x5340100,3, 0x5340110,15, 0x5340200,37, 0x5340300,3, 0x5340310,15, 0x5340400,5, 0x5340420,5, 0x5340440,18, 0x5340800,3, 0x5340810,2, 0x5340820,3, 0x5340830,2, 0x5340840,1, 0x5341000,12, 0x5341040,12, 0x5341080,2, 0x5341100,19, 0x5341180,19, 0x5341200,26, 0x5341400,20, 0x5341480,20, 0x5341500,8, 0x5341540,4, 0x5341580,15, 0x53415c0,15, 0x5341600,9, 0x5341630,5, 0x5342000,37, 0x5342100,3, 0x5342110,15, 0x5342200,37, 0x5342300,3, 0x5342310,15, 0x5342400,5, 0x5342420,5, 0x5342440,18, 0x5342800,3, 0x5342810,2, 0x5342820,3, 0x5342830,2, 0x5342840,1, 0x5343000,12, 0x5343040,12, 0x5343080,2, 0x5343100,19, 0x5343180,19, 0x5343200,26, 0x5343400,20, 0x5343480,20, 0x5343500,8, 0x5343540,4, 0x5343580,15, 0x53435c0,15, 0x5343600,9, 0x5343630,5, 0x5344000,6, 0x5344020,1, 0x534402c,3, 0x5344040,11, 0x5344070,3, 0x5344080,2, 0x5348000,49, 0x5348100,12, 0x5348140,4, 0x5348184,1, 0x5348198,2, 0x53481a4,1, 0x53481b8,7, 0x53481e0,4, 0x5348200,20, 0x5348280,3, 0x5348290,9, 0x53482c0,6, 0x53482e0,1, 0x53482e8,7, 0x5348400,49, 0x5348500,12, 0x5348540,4, 0x5348584,1, 0x5348598,2, 0x53485a4,1, 0x53485b8,7, 0x53485e0,4, 0x5348600,20, 0x5348680,3, 0x5348690,9, 0x53486c0,6, 0x53486e0,1, 0x53486e8,7, 0x5348800,49, 0x5348900,12, 0x5348940,4, 0x5348984,1, 0x5348998,2, 0x53489a4,1, 0x53489b8,7, 0x53489e0,4, 0x5348a00,20, 0x5348a80,3, 0x5348a90,9, 0x5348ac0,6, 0x5348ae0,1, 0x5348ae8,7, 0x5348c00,49, 0x5348d00,12, 0x5348d40,4, 0x5348d84,1, 0x5348d98,2, 0x5348da4,1, 0x5348db8,7, 0x5348de0,4, 0x5348e00,20, 0x5348e80,3, 0x5348e90,9, 0x5348ec0,6, 0x5348ee0,1, 0x5348ee8,7, 0x5349000,49, 0x5349100,12, 0x5349140,4, 0x5349184,1, 0x5349198,2, 0x53491a4,1, 0x53491b8,7, 0x53491e0,4, 0x5349200,20, 0x5349280,3, 0x5349290,9, 0x53492c0,6, 0x53492e0,1, 0x53492e8,7, 0x5349400,49, 0x5349500,12, 0x5349540,4, 0x5349584,1, 0x5349598,2, 0x53495a4,1, 0x53495b8,7, 0x53495e0,4, 0x5349600,20, 0x5349680,3, 0x5349690,9, 0x53496c0,6, 0x53496e0,1, 0x53496e8,7, 0x5349800,49, 0x5349900,12, 0x5349940,4, 0x5349984,1, 0x5349998,2, 0x53499a4,1, 0x53499b8,7, 0x53499e0,4, 0x5349a00,20, 0x5349a80,3, 0x5349a90,9, 0x5349ac0,6, 0x5349ae0,1, 0x5349ae8,7, 0x534a000,20, 0x534a080,2, 0x534a100,20, 0x534a180,2, 0x534a200,4, 0x534a400,20, 0x534a480,2, 0x534a500,20, 0x534a580,2, 0x534a600,4, 0x534a800,3, 0x534a840,12, 0x534a880,12, 0x534a8c0,12, 0x534a900,12, 0x534a940,12, 0x534a980,12, 0x534a9c0,12, 0x534aa00,12, 0x534ac00,12, 0x534ac40,7, 0x534ac60,10, 0x534b004,1, 0x534b018,40, 0x534b100,7, 0x534b120,7, 0x534b140,2, 0x534b14c,2, 0x534b160,2, 0x534b16c,2, 0x534b180,18, 0x534b200,2, 0x534b220,10, 0x534b260,20, 0x534b2c0,7, 0x534b300,15, 0x534b340,9, 0x534b380,6, 0x534b3a0,4, 0x534b400,4, 0x534c000,106, 0x534c200,2, 0x534c240,9, 0x534c280,7, 0x534c400,106, 0x534c604,6, 0x534c700,15, 0x534c740,9, 0x534c780,6, 0x534c7a0,6, 0x534c800,8, 0x534c824,1, 0x534c830,15, 0x534c870,3, 0x5360000,518, 0x5360900,45, 0x5360a00,45, 0x5360b00,45, 0x5360c00,45, 0x5360d00,45, 0x5360e00,45, 0x5360f00,45, 0x5361000,45, 0x5361800,9, 0x5361840,364, 0x5361e00,19, 0x5362000,9, 0x5362040,364, 0x5362600,19, 0x5362800,6, 0x5362820,3, 0x5362840,7, 0x5362880,6, 0x53628a0,3, 0x53628c0,7, 0x5362900,1, 0x5362908,3, 0x5362918,8, 0x5362940,7, 0x5363000,2, 0x5363800,18, 0x5363880,18, 0x5363c00,4, 0x5363c20,7, 0x5363d00,4, 0x5363d80,20, 0x5363e00,1, 0x5364000,21, 0x5364058,3, 0x5364100,1, 0x5364124,1, 0x536412c,5, 0x5364144,1, 0x536414c,6, 0x5364184,6, 0x53641a4,6, 0x53641c4,1, 0x53641cc,1, 0x5364400,9, 0x5364440,9, 0x5364480,15, 0x53644c0,15, 0x5364500,15, 0x5364540,15, 0x5364580,15, 0x53645c0,15, 0x5364600,15, 0x5364640,15, 0x5364680,59, 0x5364800,1, 0x5364808,16, 0x5364850,1, 0x5364858,7, 0x5368000,3, 0x5368010,1, 0x5368018,3, 0x536a000,4, 0x536a080,19, 0x536a100,12, 0x536a200,4, 0x536a280,19, 0x536a300,12, 0x536a400,2, 0x536a600,124, 0x536a800,4, 0x536a880,18, 0x536a900,4, 0x536a980,23, 0x536aa00,10, 0x536aa2c,2, 0x536aa40,2, 0x536aa4c,3, 0x536aa60,2, 0x536aa6c,3, 0x536aa80,2, 0x536aa8c,2, 0x536aaa0,2, 0x536aaac,2, 0x536aac0,2, 0x536aacc,2, 0x536ab00,4, 0x536ab40,15, 0x536ab80,3, 0x536ab90,7, 0x536abb0,3, 0x536abc0,3, 0x536abd0,3, 0x536abe0,1, 0x536ac00,17, 0x536ae00,15, 0x536ae40,4, 0x536ae60,17, 0x536aec0,6, 0x536aee0,4, 0x536aef4,11, 0x536af24,28, 0x536b000,1, 0x536b080,1, 0x536b0a0,5, 0x536b0c0,5, 0x536b0e0,5, 0x536b100,1, 0x536b120,5, 0x536b140,5, 0x536b160,5, 0x536b180,24, 0x536b200,5, 0x536c000,20, 0x5370000,518, 0x5370900,45, 0x5370a00,45, 0x5370b00,45, 0x5370c00,45, 0x5370d00,45, 0x5370e00,45, 0x5370f00,45, 0x5371000,45, 0x5371800,9, 0x5371840,364, 0x5371e00,19, 0x5372000,9, 0x5372040,364, 0x5372600,19, 0x5372800,6, 0x5372820,3, 0x5372840,7, 0x5372880,6, 0x53728a0,3, 0x53728c0,7, 0x5372900,1, 0x5372908,3, 0x5372918,8, 0x5372940,7, 0x5373000,2, 0x5373800,18, 0x5373880,18, 0x5373c00,4, 0x5373c20,7, 0x5373d00,4, 0x5373d80,20, 0x5373e00,1, 0x5374000,21, 0x5374058,3, 0x5374100,1, 0x5374124,1, 0x537412c,5, 0x5374144,1, 0x537414c,6, 0x5374184,6, 0x53741a4,6, 0x53741c4,1, 0x53741cc,1, 0x5374400,9, 0x5374440,9, 0x5374480,15, 0x53744c0,15, 0x5374500,15, 0x5374540,15, 0x5374580,15, 0x53745c0,15, 0x5374600,15, 0x5374640,15, 0x5374680,59, 0x5374800,1, 0x5374808,16, 0x5374850,1, 0x5374858,7, 0x5378000,3, 0x5378010,1, 0x5378018,3, 0x537a000,4, 0x537a080,19, 0x537a100,12, 0x537a200,4, 0x537a280,19, 0x537a300,12, 0x537a400,2, 0x537a600,124, 0x537a800,4, 0x537a880,18, 0x537a900,4, 0x537a980,23, 0x537aa00,10, 0x537aa2c,2, 0x537aa40,2, 0x537aa4c,3, 0x537aa60,2, 0x537aa6c,3, 0x537aa80,2, 0x537aa8c,2, 0x537aaa0,2, 0x537aaac,2, 0x537aac0,2, 0x537aacc,2, 0x537ab00,4, 0x537ab40,15, 0x537ab80,3, 0x537ab90,7, 0x537abb0,3, 0x537abc0,3, 0x537abd0,3, 0x537abe0,1, 0x537ac00,17, 0x537ae00,15, 0x537ae40,4, 0x537ae60,17, 0x537aec0,6, 0x537aee0,4, 0x537aef4,11, 0x537af24,28, 0x537b000,1, 0x537b080,1, 0x537b0a0,5, 0x537b0c0,5, 0x537b0e0,5, 0x537b100,1, 0x537b120,5, 0x537b140,5, 0x537b160,5, 0x537b180,24, 0x537b200,5, 0x537c000,20, 0x5380000,18, 0x5380050,3, 0x5380060,3, 0x5380070,14, 0x53800c0,5, 0x5380400,13, 0x5380440,2, 0x538044c,3, 0x5380460,2, 0x5380480,13, 0x53804c0,2, 0x53804cc,3, 0x53804e0,2, 0x5380500,1, 0x5380508,16, 0x5380560,2, 0x538056c,3, 0x5380600,4, 0x5380680,19, 0x5380800,24, 0x5380864,2, 0x5380870,4, 0x5380a00,27, 0x5380a80,4, 0x5380ac0,25, 0x5380b40,6, 0x5380b60,4, 0x5380b74,11, 0x5380ba4,8, 0x5380c00,3, 0x5380c10,3, 0x5380c20,1, 0x5380c40,11, 0x5380c80,23, 0x5380ce0,15, 0x5380d20,15, 0x5380d60,2, 0x5380d6c,2, 0x5380d80,1, 0x5381000,18, 0x5381050,3, 0x5381060,3, 0x5381070,14, 0x53810c0,5, 0x5381400,13, 0x5381440,2, 0x538144c,3, 0x5381460,2, 0x5381480,13, 0x53814c0,2, 0x53814cc,3, 0x53814e0,2, 0x5381500,1, 0x5381508,16, 0x5381560,2, 0x538156c,3, 0x5381600,4, 0x5381680,19, 0x5381800,24, 0x5381864,2, 0x5381870,4, 0x5381a00,27, 0x5381a80,4, 0x5381ac0,25, 0x5381b40,6, 0x5381b60,4, 0x5381b74,11, 0x5381ba4,8, 0x5381c00,3, 0x5381c10,3, 0x5381c20,1, 0x5381c40,11, 0x5381c80,23, 0x5381ce0,15, 0x5381d20,15, 0x5381d60,2, 0x5381d6c,2, 0x5381d80,1, 0x5382000,20, 0x5382080,7, 0x53820a0,1, 0x53820b0,1, 0x53820b8,2, 0x5384000,14, 0x5400000,534, 0x5401000,2, 0x5401040,9, 0x5401080,7, 0x5402000,534, 0x5403000,12, 0x5403044,6, 0x5403080,8, 0x54030a4,1, 0x54030c0,7, 0x54030e0,7, 0x5403100,7, 0x5403120,7, 0x5403140,8, 0x5403164,6, 0x5403180,12, 0x5404000,534, 0x5405000,2, 0x5405040,9, 0x5405080,7, 0x5406000,534, 0x5407000,12, 0x5407044,6, 0x5407080,8, 0x54070a4,1, 0x54070c0,7, 0x54070e0,7, 0x5407100,7, 0x5407120,7, 0x5407140,8, 0x5407164,6, 0x5407180,12, 0x5408004,5, 0x5408200,27, 0x5408280,4, 0x54082c0,25, 0x5408340,6, 0x5408360,4, 0x5408374,11, 0x54083a4,5, 0x5408400,1, 0x5410000,397, 0x5410800,93, 0x5410980,6, 0x5410a00,41, 0x5410b00,2, 0x5410b20,19, 0x5410c00,25, 0x5410c80,1, 0x5410d00,28, 0x5410d80,1, 0x5411000,397, 0x5411800,93, 0x5411980,6, 0x5411a00,41, 0x5411b00,2, 0x5411b20,19, 0x5411c00,25, 0x5411c80,1, 0x5411d00,28, 0x5411d80,1, 0x5412000,7, 0x5412040,9, 0x5412080,4, 0x54120a0,5, 0x54120c0,2, 0x5414000,3, 0x5414010,6, 0x5414200,7, 0x5414220,6, 0x5414240,7, 0x5414260,6, 0x5414280,2, 0x541428c,2, 0x54142a0,2, 0x54142ac,2, 0x54142c0,7, 0x54142e0,7, 0x5414300,2, 0x541430c,2, 0x5414320,6, 0x5414340,7, 0x5414360,6, 0x5414380,6, 0x54143a0,7, 0x54143c0,6, 0x54143e0,6, 0x5414400,3, 0x5414440,12, 0x5414484,1, 0x54144c0,16, 0x5414800,7, 0x5414820,14, 0x5414880,9, 0x54148a8,12, 0x5414900,7, 0x5414920,14, 0x5414980,9, 0x54149a8,12, 0x5414a00,10, 0x5414a40,2, 0x5414a4c,3, 0x5414c00,5, 0x5414c20,1, 0x5414c28,3, 0x5420000,534, 0x5421000,2, 0x5421040,9, 0x5421080,7, 0x5422000,534, 0x5423000,12, 0x5423044,6, 0x5423080,8, 0x54230a4,1, 0x54230c0,7, 0x54230e0,7, 0x5423100,7, 0x5423120,7, 0x5423140,8, 0x5423164,6, 0x5423180,12, 0x5424000,534, 0x5425000,2, 0x5425040,9, 0x5425080,7, 0x5426000,534, 0x5427000,12, 0x5427044,6, 0x5427080,8, 0x54270a4,1, 0x54270c0,7, 0x54270e0,7, 0x5427100,7, 0x5427120,7, 0x5427140,8, 0x5427164,6, 0x5427180,12, 0x5428004,5, 0x5428200,27, 0x5428280,4, 0x54282c0,25, 0x5428340,6, 0x5428360,4, 0x5428374,11, 0x54283a4,5, 0x5428400,1, 0x5430000,397, 0x5430800,93, 0x5430980,6, 0x5430a00,41, 0x5430b00,2, 0x5430b20,19, 0x5430c00,25, 0x5430c80,1, 0x5430d00,28, 0x5430d80,1, 0x5431000,397, 0x5431800,93, 0x5431980,6, 0x5431a00,41, 0x5431b00,2, 0x5431b20,19, 0x5431c00,25, 0x5431c80,1, 0x5431d00,28, 0x5431d80,1, 0x5432000,7, 0x5432040,9, 0x5432080,4, 0x54320a0,5, 0x54320c0,2, 0x5434000,3, 0x5434010,6, 0x5434200,7, 0x5434220,6, 0x5434240,7, 0x5434260,6, 0x5434280,2, 0x543428c,2, 0x54342a0,2, 0x54342ac,2, 0x54342c0,7, 0x54342e0,7, 0x5434300,2, 0x543430c,2, 0x5434320,6, 0x5434340,7, 0x5434360,6, 0x5434380,6, 0x54343a0,7, 0x54343c0,6, 0x54343e0,6, 0x5434400,3, 0x5434440,12, 0x5434484,1, 0x54344c0,16, 0x5434800,7, 0x5434820,14, 0x5434880,9, 0x54348a8,12, 0x5434900,7, 0x5434920,14, 0x5434980,9, 0x54349a8,12, 0x5434a00,10, 0x5434a40,2, 0x5434a4c,3, 0x5434c00,5, 0x5434c20,1, 0x5434c28,3, 0x5440000,37, 0x5440100,3, 0x5440110,15, 0x5440200,37, 0x5440300,3, 0x5440310,15, 0x5440400,5, 0x5440420,5, 0x5440440,18, 0x5440800,3, 0x5440810,2, 0x5440820,3, 0x5440830,2, 0x5440840,1, 0x5441000,12, 0x5441040,12, 0x5441080,2, 0x5441100,19, 0x5441180,19, 0x5441200,26, 0x5441400,20, 0x5441480,20, 0x5441500,8, 0x5441540,4, 0x5441580,15, 0x54415c0,15, 0x5441600,9, 0x5441630,5, 0x5442000,37, 0x5442100,3, 0x5442110,15, 0x5442200,37, 0x5442300,3, 0x5442310,15, 0x5442400,5, 0x5442420,5, 0x5442440,18, 0x5442800,3, 0x5442810,2, 0x5442820,3, 0x5442830,2, 0x5442840,1, 0x5443000,12, 0x5443040,12, 0x5443080,2, 0x5443100,19, 0x5443180,19, 0x5443200,26, 0x5443400,20, 0x5443480,20, 0x5443500,8, 0x5443540,4, 0x5443580,15, 0x54435c0,15, 0x5443600,9, 0x5443630,5, 0x5444000,6, 0x5444020,1, 0x544402c,3, 0x5444040,11, 0x5444070,3, 0x5444080,2, 0x5448000,49, 0x5448100,12, 0x5448140,4, 0x5448184,1, 0x5448198,2, 0x54481a4,1, 0x54481b8,7, 0x54481e0,4, 0x5448200,20, 0x5448280,3, 0x5448290,9, 0x54482c0,6, 0x54482e0,1, 0x54482e8,7, 0x5448400,49, 0x5448500,12, 0x5448540,4, 0x5448584,1, 0x5448598,2, 0x54485a4,1, 0x54485b8,7, 0x54485e0,4, 0x5448600,20, 0x5448680,3, 0x5448690,9, 0x54486c0,6, 0x54486e0,1, 0x54486e8,7, 0x5448800,49, 0x5448900,12, 0x5448940,4, 0x5448984,1, 0x5448998,2, 0x54489a4,1, 0x54489b8,7, 0x54489e0,4, 0x5448a00,20, 0x5448a80,3, 0x5448a90,9, 0x5448ac0,6, 0x5448ae0,1, 0x5448ae8,7, 0x5448c00,49, 0x5448d00,12, 0x5448d40,4, 0x5448d84,1, 0x5448d98,2, 0x5448da4,1, 0x5448db8,7, 0x5448de0,4, 0x5448e00,20, 0x5448e80,3, 0x5448e90,9, 0x5448ec0,6, 0x5448ee0,1, 0x5448ee8,7, 0x5449000,49, 0x5449100,12, 0x5449140,4, 0x5449184,1, 0x5449198,2, 0x54491a4,1, 0x54491b8,7, 0x54491e0,4, 0x5449200,20, 0x5449280,3, 0x5449290,9, 0x54492c0,6, 0x54492e0,1, 0x54492e8,7, 0x5449400,49, 0x5449500,12, 0x5449540,4, 0x5449584,1, 0x5449598,2, 0x54495a4,1, 0x54495b8,7, 0x54495e0,4, 0x5449600,20, 0x5449680,3, 0x5449690,9, 0x54496c0,6, 0x54496e0,1, 0x54496e8,7, 0x5449800,49, 0x5449900,12, 0x5449940,4, 0x5449984,1, 0x5449998,2, 0x54499a4,1, 0x54499b8,7, 0x54499e0,4, 0x5449a00,20, 0x5449a80,3, 0x5449a90,9, 0x5449ac0,6, 0x5449ae0,1, 0x5449ae8,7, 0x544a000,20, 0x544a080,2, 0x544a100,20, 0x544a180,2, 0x544a200,4, 0x544a400,20, 0x544a480,2, 0x544a500,20, 0x544a580,2, 0x544a600,4, 0x544a800,3, 0x544a840,12, 0x544a880,12, 0x544a8c0,12, 0x544a900,12, 0x544a940,12, 0x544a980,12, 0x544a9c0,12, 0x544aa00,12, 0x544ac00,12, 0x544ac40,7, 0x544ac60,10, 0x544b004,1, 0x544b018,40, 0x544b100,7, 0x544b120,7, 0x544b140,2, 0x544b14c,2, 0x544b160,2, 0x544b16c,2, 0x544b180,18, 0x544b200,2, 0x544b220,10, 0x544b260,20, 0x544b2c0,7, 0x544b300,15, 0x544b340,9, 0x544b380,6, 0x544b3a0,4, 0x544b400,4, 0x544c000,106, 0x544c200,2, 0x544c240,9, 0x544c280,7, 0x544c400,106, 0x544c604,6, 0x544c700,15, 0x544c740,9, 0x544c780,6, 0x544c7a0,6, 0x544c800,8, 0x544c824,1, 0x544c830,15, 0x544c870,3, 0x5460000,518, 0x5460900,45, 0x5460a00,45, 0x5460b00,45, 0x5460c00,45, 0x5460d00,45, 0x5460e00,45, 0x5460f00,45, 0x5461000,45, 0x5461800,9, 0x5461840,364, 0x5461e00,19, 0x5462000,9, 0x5462040,364, 0x5462600,19, 0x5462800,6, 0x5462820,3, 0x5462840,7, 0x5462880,6, 0x54628a0,3, 0x54628c0,7, 0x5462900,1, 0x5462908,3, 0x5462918,8, 0x5462940,7, 0x5463000,2, 0x5463800,18, 0x5463880,18, 0x5463c00,4, 0x5463c20,7, 0x5463d00,4, 0x5463d80,20, 0x5463e00,1, 0x5464000,21, 0x5464058,3, 0x5464100,1, 0x5464124,1, 0x546412c,5, 0x5464144,1, 0x546414c,6, 0x5464184,6, 0x54641a4,6, 0x54641c4,1, 0x54641cc,1, 0x5464400,9, 0x5464440,9, 0x5464480,15, 0x54644c0,15, 0x5464500,15, 0x5464540,15, 0x5464580,15, 0x54645c0,15, 0x5464600,15, 0x5464640,15, 0x5464680,59, 0x5464800,1, 0x5464808,16, 0x5464850,1, 0x5464858,7, 0x5468000,3, 0x5468010,1, 0x5468018,3, 0x546a000,4, 0x546a080,19, 0x546a100,12, 0x546a200,4, 0x546a280,19, 0x546a300,12, 0x546a400,2, 0x546a600,124, 0x546a800,4, 0x546a880,18, 0x546a900,4, 0x546a980,23, 0x546aa00,10, 0x546aa2c,2, 0x546aa40,2, 0x546aa4c,3, 0x546aa60,2, 0x546aa6c,3, 0x546aa80,2, 0x546aa8c,2, 0x546aaa0,2, 0x546aaac,2, 0x546aac0,2, 0x546aacc,2, 0x546ab00,4, 0x546ab40,15, 0x546ab80,3, 0x546ab90,7, 0x546abb0,3, 0x546abc0,3, 0x546abd0,3, 0x546abe0,1, 0x546ac00,17, 0x546ae00,15, 0x546ae40,4, 0x546ae60,17, 0x546aec0,6, 0x546aee0,4, 0x546aef4,11, 0x546af24,28, 0x546b000,1, 0x546b080,1, 0x546b0a0,5, 0x546b0c0,5, 0x546b0e0,5, 0x546b100,1, 0x546b120,5, 0x546b140,5, 0x546b160,5, 0x546b180,24, 0x546b200,5, 0x546c000,20, 0x5470000,518, 0x5470900,45, 0x5470a00,45, 0x5470b00,45, 0x5470c00,45, 0x5470d00,45, 0x5470e00,45, 0x5470f00,45, 0x5471000,45, 0x5471800,9, 0x5471840,364, 0x5471e00,19, 0x5472000,9, 0x5472040,364, 0x5472600,19, 0x5472800,6, 0x5472820,3, 0x5472840,7, 0x5472880,6, 0x54728a0,3, 0x54728c0,7, 0x5472900,1, 0x5472908,3, 0x5472918,8, 0x5472940,7, 0x5473000,2, 0x5473800,18, 0x5473880,18, 0x5473c00,4, 0x5473c20,7, 0x5473d00,4, 0x5473d80,20, 0x5473e00,1, 0x5474000,21, 0x5474058,3, 0x5474100,1, 0x5474124,1, 0x547412c,5, 0x5474144,1, 0x547414c,6, 0x5474184,6, 0x54741a4,6, 0x54741c4,1, 0x54741cc,1, 0x5474400,9, 0x5474440,9, 0x5474480,15, 0x54744c0,15, 0x5474500,15, 0x5474540,15, 0x5474580,15, 0x54745c0,15, 0x5474600,15, 0x5474640,15, 0x5474680,59, 0x5474800,1, 0x5474808,16, 0x5474850,1, 0x5474858,7, 0x5478000,3, 0x5478010,1, 0x5478018,3, 0x547a000,4, 0x547a080,19, 0x547a100,12, 0x547a200,4, 0x547a280,19, 0x547a300,12, 0x547a400,2, 0x547a600,124, 0x547a800,4, 0x547a880,18, 0x547a900,4, 0x547a980,23, 0x547aa00,10, 0x547aa2c,2, 0x547aa40,2, 0x547aa4c,3, 0x547aa60,2, 0x547aa6c,3, 0x547aa80,2, 0x547aa8c,2, 0x547aaa0,2, 0x547aaac,2, 0x547aac0,2, 0x547aacc,2, 0x547ab00,4, 0x547ab40,15, 0x547ab80,3, 0x547ab90,7, 0x547abb0,3, 0x547abc0,3, 0x547abd0,3, 0x547abe0,1, 0x547ac00,17, 0x547ae00,15, 0x547ae40,4, 0x547ae60,17, 0x547aec0,6, 0x547aee0,4, 0x547aef4,11, 0x547af24,28, 0x547b000,1, 0x547b080,1, 0x547b0a0,5, 0x547b0c0,5, 0x547b0e0,5, 0x547b100,1, 0x547b120,5, 0x547b140,5, 0x547b160,5, 0x547b180,24, 0x547b200,5, 0x547c000,20, 0x5480000,18, 0x5480050,3, 0x5480060,3, 0x5480070,14, 0x54800c0,5, 0x5480400,13, 0x5480440,2, 0x548044c,3, 0x5480460,2, 0x5480480,13, 0x54804c0,2, 0x54804cc,3, 0x54804e0,2, 0x5480500,1, 0x5480508,16, 0x5480560,2, 0x548056c,3, 0x5480600,4, 0x5480680,19, 0x5480800,24, 0x5480864,2, 0x5480870,4, 0x5480a00,27, 0x5480a80,4, 0x5480ac0,25, 0x5480b40,6, 0x5480b60,4, 0x5480b74,11, 0x5480ba4,8, 0x5480c00,3, 0x5480c10,3, 0x5480c20,1, 0x5480c40,11, 0x5480c80,23, 0x5480ce0,15, 0x5480d20,15, 0x5480d60,2, 0x5480d6c,2, 0x5480d80,1, 0x5481000,18, 0x5481050,3, 0x5481060,3, 0x5481070,14, 0x54810c0,5, 0x5481400,13, 0x5481440,2, 0x548144c,3, 0x5481460,2, 0x5481480,13, 0x54814c0,2, 0x54814cc,3, 0x54814e0,2, 0x5481500,1, 0x5481508,16, 0x5481560,2, 0x548156c,3, 0x5481600,4, 0x5481680,19, 0x5481800,24, 0x5481864,2, 0x5481870,4, 0x5481a00,27, 0x5481a80,4, 0x5481ac0,25, 0x5481b40,6, 0x5481b60,4, 0x5481b74,11, 0x5481ba4,8, 0x5481c00,3, 0x5481c10,3, 0x5481c20,1, 0x5481c40,11, 0x5481c80,23, 0x5481ce0,15, 0x5481d20,15, 0x5481d60,2, 0x5481d6c,2, 0x5481d80,1, 0x5482000,20, 0x5482080,7, 0x54820a0,1, 0x54820b0,1, 0x54820b8,2, 0x5484000,14, 0x5500000,534, 0x5501000,2, 0x5501040,9, 0x5501080,7, 0x5502000,534, 0x5503000,12, 0x5503044,6, 0x5503080,8, 0x55030a4,1, 0x55030c0,7, 0x55030e0,7, 0x5503100,7, 0x5503120,7, 0x5503140,8, 0x5503164,6, 0x5503180,12, 0x5504000,534, 0x5505000,2, 0x5505040,9, 0x5505080,7, 0x5506000,534, 0x5507000,12, 0x5507044,6, 0x5507080,8, 0x55070a4,1, 0x55070c0,7, 0x55070e0,7, 0x5507100,7, 0x5507120,7, 0x5507140,8, 0x5507164,6, 0x5507180,12, 0x5508004,5, 0x5508200,27, 0x5508280,4, 0x55082c0,25, 0x5508340,6, 0x5508360,4, 0x5508374,11, 0x55083a4,5, 0x5508400,1, 0x5510000,397, 0x5510800,93, 0x5510980,6, 0x5510a00,41, 0x5510b00,2, 0x5510b20,19, 0x5510c00,25, 0x5510c80,1, 0x5510d00,28, 0x5510d80,1, 0x5511000,397, 0x5511800,93, 0x5511980,6, 0x5511a00,41, 0x5511b00,2, 0x5511b20,19, 0x5511c00,25, 0x5511c80,1, 0x5511d00,28, 0x5511d80,1, 0x5512000,7, 0x5512040,9, 0x5512080,4, 0x55120a0,5, 0x55120c0,2, 0x5514000,3, 0x5514010,6, 0x5514200,7, 0x5514220,6, 0x5514240,7, 0x5514260,6, 0x5514280,2, 0x551428c,2, 0x55142a0,2, 0x55142ac,2, 0x55142c0,7, 0x55142e0,7, 0x5514300,2, 0x551430c,2, 0x5514320,6, 0x5514340,7, 0x5514360,6, 0x5514380,6, 0x55143a0,7, 0x55143c0,6, 0x55143e0,6, 0x5514400,3, 0x5514440,12, 0x5514484,1, 0x55144c0,16, 0x5514800,7, 0x5514820,14, 0x5514880,9, 0x55148a8,12, 0x5514900,7, 0x5514920,14, 0x5514980,9, 0x55149a8,12, 0x5514a00,10, 0x5514a40,2, 0x5514a4c,3, 0x5514c00,5, 0x5514c20,1, 0x5514c28,3, 0x5520000,534, 0x5521000,2, 0x5521040,9, 0x5521080,7, 0x5522000,534, 0x5523000,12, 0x5523044,6, 0x5523080,8, 0x55230a4,1, 0x55230c0,7, 0x55230e0,7, 0x5523100,7, 0x5523120,7, 0x5523140,8, 0x5523164,6, 0x5523180,12, 0x5524000,534, 0x5525000,2, 0x5525040,9, 0x5525080,7, 0x5526000,534, 0x5527000,12, 0x5527044,6, 0x5527080,8, 0x55270a4,1, 0x55270c0,7, 0x55270e0,7, 0x5527100,7, 0x5527120,7, 0x5527140,8, 0x5527164,6, 0x5527180,12, 0x5528004,5, 0x5528200,27, 0x5528280,4, 0x55282c0,25, 0x5528340,6, 0x5528360,4, 0x5528374,11, 0x55283a4,5, 0x5528400,1, 0x5530000,397, 0x5530800,93, 0x5530980,6, 0x5530a00,41, 0x5530b00,2, 0x5530b20,19, 0x5530c00,25, 0x5530c80,1, 0x5530d00,28, 0x5530d80,1, 0x5531000,397, 0x5531800,93, 0x5531980,6, 0x5531a00,41, 0x5531b00,2, 0x5531b20,19, 0x5531c00,25, 0x5531c80,1, 0x5531d00,28, 0x5531d80,1, 0x5532000,7, 0x5532040,9, 0x5532080,4, 0x55320a0,5, 0x55320c0,2, 0x5534000,3, 0x5534010,6, 0x5534200,7, 0x5534220,6, 0x5534240,7, 0x5534260,6, 0x5534280,2, 0x553428c,2, 0x55342a0,2, 0x55342ac,2, 0x55342c0,7, 0x55342e0,7, 0x5534300,2, 0x553430c,2, 0x5534320,6, 0x5534340,7, 0x5534360,6, 0x5534380,6, 0x55343a0,7, 0x55343c0,6, 0x55343e0,6, 0x5534400,3, 0x5534440,12, 0x5534484,1, 0x55344c0,16, 0x5534800,7, 0x5534820,14, 0x5534880,9, 0x55348a8,12, 0x5534900,7, 0x5534920,14, 0x5534980,9, 0x55349a8,12, 0x5534a00,10, 0x5534a40,2, 0x5534a4c,3, 0x5534c00,5, 0x5534c20,1, 0x5534c28,3, 0x5540000,37, 0x5540100,3, 0x5540110,15, 0x5540200,37, 0x5540300,3, 0x5540310,15, 0x5540400,5, 0x5540420,5, 0x5540440,18, 0x5540800,3, 0x5540810,2, 0x5540820,3, 0x5540830,2, 0x5540840,1, 0x5541000,12, 0x5541040,12, 0x5541080,2, 0x5541100,19, 0x5541180,19, 0x5541200,26, 0x5541400,20, 0x5541480,20, 0x5541500,8, 0x5541540,4, 0x5541580,15, 0x55415c0,15, 0x5541600,9, 0x5541630,5, 0x5542000,37, 0x5542100,3, 0x5542110,15, 0x5542200,37, 0x5542300,3, 0x5542310,15, 0x5542400,5, 0x5542420,5, 0x5542440,18, 0x5542800,3, 0x5542810,2, 0x5542820,3, 0x5542830,2, 0x5542840,1, 0x5543000,12, 0x5543040,12, 0x5543080,2, 0x5543100,19, 0x5543180,19, 0x5543200,26, 0x5543400,20, 0x5543480,20, 0x5543500,8, 0x5543540,4, 0x5543580,15, 0x55435c0,15, 0x5543600,9, 0x5543630,5, 0x5544000,6, 0x5544020,1, 0x554402c,3, 0x5544040,11, 0x5544070,3, 0x5544080,2, 0x5548000,49, 0x5548100,12, 0x5548140,4, 0x5548184,1, 0x5548198,2, 0x55481a4,1, 0x55481b8,7, 0x55481e0,4, 0x5548200,20, 0x5548280,3, 0x5548290,9, 0x55482c0,6, 0x55482e0,1, 0x55482e8,7, 0x5548400,49, 0x5548500,12, 0x5548540,4, 0x5548584,1, 0x5548598,2, 0x55485a4,1, 0x55485b8,7, 0x55485e0,4, 0x5548600,20, 0x5548680,3, 0x5548690,9, 0x55486c0,6, 0x55486e0,1, 0x55486e8,7, 0x5548800,49, 0x5548900,12, 0x5548940,4, 0x5548984,1, 0x5548998,2, 0x55489a4,1, 0x55489b8,7, 0x55489e0,4, 0x5548a00,20, 0x5548a80,3, 0x5548a90,9, 0x5548ac0,6, 0x5548ae0,1, 0x5548ae8,7, 0x5548c00,49, 0x5548d00,12, 0x5548d40,4, 0x5548d84,1, 0x5548d98,2, 0x5548da4,1, 0x5548db8,7, 0x5548de0,4, 0x5548e00,20, 0x5548e80,3, 0x5548e90,9, 0x5548ec0,6, 0x5548ee0,1, 0x5548ee8,7, 0x5549000,49, 0x5549100,12, 0x5549140,4, 0x5549184,1, 0x5549198,2, 0x55491a4,1, 0x55491b8,7, 0x55491e0,4, 0x5549200,20, 0x5549280,3, 0x5549290,9, 0x55492c0,6, 0x55492e0,1, 0x55492e8,7, 0x5549400,49, 0x5549500,12, 0x5549540,4, 0x5549584,1, 0x5549598,2, 0x55495a4,1, 0x55495b8,7, 0x55495e0,4, 0x5549600,20, 0x5549680,3, 0x5549690,9, 0x55496c0,6, 0x55496e0,1, 0x55496e8,7, 0x5549800,49, 0x5549900,12, 0x5549940,4, 0x5549984,1, 0x5549998,2, 0x55499a4,1, 0x55499b8,7, 0x55499e0,4, 0x5549a00,20, 0x5549a80,3, 0x5549a90,9, 0x5549ac0,6, 0x5549ae0,1, 0x5549ae8,7, 0x554a000,20, 0x554a080,2, 0x554a100,20, 0x554a180,2, 0x554a200,4, 0x554a400,20, 0x554a480,2, 0x554a500,20, 0x554a580,2, 0x554a600,4, 0x554a800,3, 0x554a840,12, 0x554a880,12, 0x554a8c0,12, 0x554a900,12, 0x554a940,12, 0x554a980,12, 0x554a9c0,12, 0x554aa00,12, 0x554ac00,12, 0x554ac40,7, 0x554ac60,10, 0x554b004,1, 0x554b018,40, 0x554b100,7, 0x554b120,7, 0x554b140,2, 0x554b14c,2, 0x554b160,2, 0x554b16c,2, 0x554b180,18, 0x554b200,2, 0x554b220,10, 0x554b260,20, 0x554b2c0,7, 0x554b300,15, 0x554b340,9, 0x554b380,6, 0x554b3a0,4, 0x554b400,4, 0x554c000,106, 0x554c200,2, 0x554c240,9, 0x554c280,7, 0x554c400,106, 0x554c604,6, 0x554c700,15, 0x554c740,9, 0x554c780,6, 0x554c7a0,6, 0x554c800,8, 0x554c824,1, 0x554c830,15, 0x554c870,3, 0x5560000,518, 0x5560900,45, 0x5560a00,45, 0x5560b00,45, 0x5560c00,45, 0x5560d00,45, 0x5560e00,45, 0x5560f00,45, 0x5561000,45, 0x5561800,9, 0x5561840,364, 0x5561e00,19, 0x5562000,9, 0x5562040,364, 0x5562600,19, 0x5562800,6, 0x5562820,3, 0x5562840,7, 0x5562880,6, 0x55628a0,3, 0x55628c0,7, 0x5562900,1, 0x5562908,3, 0x5562918,8, 0x5562940,7, 0x5563000,2, 0x5563800,18, 0x5563880,18, 0x5563c00,4, 0x5563c20,7, 0x5563d00,4, 0x5563d80,20, 0x5563e00,1, 0x5564000,21, 0x5564058,3, 0x5564100,1, 0x5564124,1, 0x556412c,5, 0x5564144,1, 0x556414c,6, 0x5564184,6, 0x55641a4,6, 0x55641c4,1, 0x55641cc,1, 0x5564400,9, 0x5564440,9, 0x5564480,15, 0x55644c0,15, 0x5564500,15, 0x5564540,15, 0x5564580,15, 0x55645c0,15, 0x5564600,15, 0x5564640,15, 0x5564680,59, 0x5564800,1, 0x5564808,16, 0x5564850,1, 0x5564858,7, 0x5568000,3, 0x5568010,1, 0x5568018,3, 0x556a000,4, 0x556a080,19, 0x556a100,12, 0x556a200,4, 0x556a280,19, 0x556a300,12, 0x556a400,2, 0x556a600,124, 0x556a800,4, 0x556a880,18, 0x556a900,4, 0x556a980,23, 0x556aa00,10, 0x556aa2c,2, 0x556aa40,2, 0x556aa4c,3, 0x556aa60,2, 0x556aa6c,3, 0x556aa80,2, 0x556aa8c,2, 0x556aaa0,2, 0x556aaac,2, 0x556aac0,2, 0x556aacc,2, 0x556ab00,4, 0x556ab40,15, 0x556ab80,3, 0x556ab90,7, 0x556abb0,3, 0x556abc0,3, 0x556abd0,3, 0x556abe0,1, 0x556ac00,17, 0x556ae00,15, 0x556ae40,4, 0x556ae60,17, 0x556aec0,6, 0x556aee0,4, 0x556aef4,11, 0x556af24,28, 0x556b000,1, 0x556b080,1, 0x556b0a0,5, 0x556b0c0,5, 0x556b0e0,5, 0x556b100,1, 0x556b120,5, 0x556b140,5, 0x556b160,5, 0x556b180,24, 0x556b200,5, 0x556c000,20, 0x5570000,518, 0x5570900,45, 0x5570a00,45, 0x5570b00,45, 0x5570c00,45, 0x5570d00,45, 0x5570e00,45, 0x5570f00,45, 0x5571000,45, 0x5571800,9, 0x5571840,364, 0x5571e00,19, 0x5572000,9, 0x5572040,364, 0x5572600,19, 0x5572800,6, 0x5572820,3, 0x5572840,7, 0x5572880,6, 0x55728a0,3, 0x55728c0,7, 0x5572900,1, 0x5572908,3, 0x5572918,8, 0x5572940,7, 0x5573000,2, 0x5573800,18, 0x5573880,18, 0x5573c00,4, 0x5573c20,7, 0x5573d00,4, 0x5573d80,20, 0x5573e00,1, 0x5574000,21, 0x5574058,3, 0x5574100,1, 0x5574124,1, 0x557412c,5, 0x5574144,1, 0x557414c,6, 0x5574184,6, 0x55741a4,6, 0x55741c4,1, 0x55741cc,1, 0x5574400,9, 0x5574440,9, 0x5574480,15, 0x55744c0,15, 0x5574500,15, 0x5574540,15, 0x5574580,15, 0x55745c0,15, 0x5574600,15, 0x5574640,15, 0x5574680,59, 0x5574800,1, 0x5574808,16, 0x5574850,1, 0x5574858,7, 0x5578000,3, 0x5578010,1, 0x5578018,3, 0x557a000,4, 0x557a080,19, 0x557a100,12, 0x557a200,4, 0x557a280,19, 0x557a300,12, 0x557a400,2, 0x557a600,124, 0x557a800,4, 0x557a880,18, 0x557a900,4, 0x557a980,23, 0x557aa00,10, 0x557aa2c,2, 0x557aa40,2, 0x557aa4c,3, 0x557aa60,2, 0x557aa6c,3, 0x557aa80,2, 0x557aa8c,2, 0x557aaa0,2, 0x557aaac,2, 0x557aac0,2, 0x557aacc,2, 0x557ab00,4, 0x557ab40,15, 0x557ab80,3, 0x557ab90,7, 0x557abb0,3, 0x557abc0,3, 0x557abd0,3, 0x557abe0,1, 0x557ac00,17, 0x557ae00,15, 0x557ae40,4, 0x557ae60,17, 0x557aec0,6, 0x557aee0,4, 0x557aef4,11, 0x557af24,28, 0x557b000,1, 0x557b080,1, 0x557b0a0,5, 0x557b0c0,5, 0x557b0e0,5, 0x557b100,1, 0x557b120,5, 0x557b140,5, 0x557b160,5, 0x557b180,24, 0x557b200,5, 0x557c000,20, 0x5580000,18, 0x5580050,3, 0x5580060,3, 0x5580070,14, 0x55800c0,5, 0x5580400,13, 0x5580440,2, 0x558044c,3, 0x5580460,2, 0x5580480,13, 0x55804c0,2, 0x55804cc,3, 0x55804e0,2, 0x5580500,1, 0x5580508,16, 0x5580560,2, 0x558056c,3, 0x5580600,4, 0x5580680,19, 0x5580800,24, 0x5580864,2, 0x5580870,4, 0x5580a00,27, 0x5580a80,4, 0x5580ac0,25, 0x5580b40,6, 0x5580b60,4, 0x5580b74,11, 0x5580ba4,8, 0x5580c00,3, 0x5580c10,3, 0x5580c20,1, 0x5580c40,11, 0x5580c80,23, 0x5580ce0,15, 0x5580d20,15, 0x5580d60,2, 0x5580d6c,2, 0x5580d80,1, 0x5581000,18, 0x5581050,3, 0x5581060,3, 0x5581070,14, 0x55810c0,5, 0x5581400,13, 0x5581440,2, 0x558144c,3, 0x5581460,2, 0x5581480,13, 0x55814c0,2, 0x55814cc,3, 0x55814e0,2, 0x5581500,1, 0x5581508,16, 0x5581560,2, 0x558156c,3, 0x5581600,4, 0x5581680,19, 0x5581800,24, 0x5581864,2, 0x5581870,4, 0x5581a00,27, 0x5581a80,4, 0x5581ac0,25, 0x5581b40,6, 0x5581b60,4, 0x5581b74,11, 0x5581ba4,8, 0x5581c00,3, 0x5581c10,3, 0x5581c20,1, 0x5581c40,11, 0x5581c80,23, 0x5581ce0,15, 0x5581d20,15, 0x5581d60,2, 0x5581d6c,2, 0x5581d80,1, 0x5582000,20, 0x5582080,7, 0x55820a0,1, 0x55820b0,1, 0x55820b8,2, 0x5584000,14, 0x5600000,534, 0x5601000,2, 0x5601040,9, 0x5601080,7, 0x5602000,534, 0x5603000,12, 0x5603044,6, 0x5603080,8, 0x56030a4,1, 0x56030c0,7, 0x56030e0,7, 0x5603100,7, 0x5603120,7, 0x5603140,8, 0x5603164,6, 0x5603180,12, 0x5604000,534, 0x5605000,2, 0x5605040,9, 0x5605080,7, 0x5606000,534, 0x5607000,12, 0x5607044,6, 0x5607080,8, 0x56070a4,1, 0x56070c0,7, 0x56070e0,7, 0x5607100,7, 0x5607120,7, 0x5607140,8, 0x5607164,6, 0x5607180,12, 0x5608004,5, 0x5608200,27, 0x5608280,4, 0x56082c0,25, 0x5608340,6, 0x5608360,4, 0x5608374,11, 0x56083a4,5, 0x5608400,1, 0x5610000,397, 0x5610800,93, 0x5610980,6, 0x5610a00,41, 0x5610b00,2, 0x5610b20,19, 0x5610c00,25, 0x5610c80,1, 0x5610d00,28, 0x5610d80,1, 0x5611000,397, 0x5611800,93, 0x5611980,6, 0x5611a00,41, 0x5611b00,2, 0x5611b20,19, 0x5611c00,25, 0x5611c80,1, 0x5611d00,28, 0x5611d80,1, 0x5612000,7, 0x5612040,9, 0x5612080,4, 0x56120a0,5, 0x56120c0,2, 0x5614000,3, 0x5614010,6, 0x5614200,7, 0x5614220,6, 0x5614240,7, 0x5614260,6, 0x5614280,2, 0x561428c,2, 0x56142a0,2, 0x56142ac,2, 0x56142c0,7, 0x56142e0,7, 0x5614300,2, 0x561430c,2, 0x5614320,6, 0x5614340,7, 0x5614360,6, 0x5614380,6, 0x56143a0,7, 0x56143c0,6, 0x56143e0,6, 0x5614400,3, 0x5614440,12, 0x5614484,1, 0x56144c0,16, 0x5614800,7, 0x5614820,14, 0x5614880,9, 0x56148a8,12, 0x5614900,7, 0x5614920,14, 0x5614980,9, 0x56149a8,12, 0x5614a00,10, 0x5614a40,2, 0x5614a4c,3, 0x5614c00,5, 0x5614c20,1, 0x5614c28,3, 0x5620000,534, 0x5621000,2, 0x5621040,9, 0x5621080,7, 0x5622000,534, 0x5623000,12, 0x5623044,6, 0x5623080,8, 0x56230a4,1, 0x56230c0,7, 0x56230e0,7, 0x5623100,7, 0x5623120,7, 0x5623140,8, 0x5623164,6, 0x5623180,12, 0x5624000,534, 0x5625000,2, 0x5625040,9, 0x5625080,7, 0x5626000,534, 0x5627000,12, 0x5627044,6, 0x5627080,8, 0x56270a4,1, 0x56270c0,7, 0x56270e0,7, 0x5627100,7, 0x5627120,7, 0x5627140,8, 0x5627164,6, 0x5627180,12, 0x5628004,5, 0x5628200,27, 0x5628280,4, 0x56282c0,25, 0x5628340,6, 0x5628360,4, 0x5628374,11, 0x56283a4,5, 0x5628400,1, 0x5630000,397, 0x5630800,93, 0x5630980,6, 0x5630a00,41, 0x5630b00,2, 0x5630b20,19, 0x5630c00,25, 0x5630c80,1, 0x5630d00,28, 0x5630d80,1, 0x5631000,397, 0x5631800,93, 0x5631980,6, 0x5631a00,41, 0x5631b00,2, 0x5631b20,19, 0x5631c00,25, 0x5631c80,1, 0x5631d00,28, 0x5631d80,1, 0x5632000,7, 0x5632040,9, 0x5632080,4, 0x56320a0,5, 0x56320c0,2, 0x5634000,3, 0x5634010,6, 0x5634200,7, 0x5634220,6, 0x5634240,7, 0x5634260,6, 0x5634280,2, 0x563428c,2, 0x56342a0,2, 0x56342ac,2, 0x56342c0,7, 0x56342e0,7, 0x5634300,2, 0x563430c,2, 0x5634320,6, 0x5634340,7, 0x5634360,6, 0x5634380,6, 0x56343a0,7, 0x56343c0,6, 0x56343e0,6, 0x5634400,3, 0x5634440,12, 0x5634484,1, 0x56344c0,16, 0x5634800,7, 0x5634820,14, 0x5634880,9, 0x56348a8,12, 0x5634900,7, 0x5634920,14, 0x5634980,9, 0x56349a8,12, 0x5634a00,10, 0x5634a40,2, 0x5634a4c,3, 0x5634c00,5, 0x5634c20,1, 0x5634c28,3, 0x5640000,37, 0x5640100,3, 0x5640110,15, 0x5640200,37, 0x5640300,3, 0x5640310,15, 0x5640400,5, 0x5640420,5, 0x5640440,18, 0x5640800,3, 0x5640810,2, 0x5640820,3, 0x5640830,2, 0x5640840,1, 0x5641000,12, 0x5641040,12, 0x5641080,2, 0x5641100,19, 0x5641180,19, 0x5641200,26, 0x5641400,20, 0x5641480,20, 0x5641500,8, 0x5641540,4, 0x5641580,15, 0x56415c0,15, 0x5641600,9, 0x5641630,5, 0x5642000,37, 0x5642100,3, 0x5642110,15, 0x5642200,37, 0x5642300,3, 0x5642310,15, 0x5642400,5, 0x5642420,5, 0x5642440,18, 0x5642800,3, 0x5642810,2, 0x5642820,3, 0x5642830,2, 0x5642840,1, 0x5643000,12, 0x5643040,12, 0x5643080,2, 0x5643100,19, 0x5643180,19, 0x5643200,26, 0x5643400,20, 0x5643480,20, 0x5643500,8, 0x5643540,4, 0x5643580,15, 0x56435c0,15, 0x5643600,9, 0x5643630,5, 0x5644000,6, 0x5644020,1, 0x564402c,3, 0x5644040,11, 0x5644070,3, 0x5644080,2, 0x5648000,49, 0x5648100,12, 0x5648140,4, 0x5648184,1, 0x5648198,2, 0x56481a4,1, 0x56481b8,7, 0x56481e0,4, 0x5648200,20, 0x5648280,3, 0x5648290,9, 0x56482c0,6, 0x56482e0,1, 0x56482e8,7, 0x5648400,49, 0x5648500,12, 0x5648540,4, 0x5648584,1, 0x5648598,2, 0x56485a4,1, 0x56485b8,7, 0x56485e0,4, 0x5648600,20, 0x5648680,3, 0x5648690,9, 0x56486c0,6, 0x56486e0,1, 0x56486e8,7, 0x5648800,49, 0x5648900,12, 0x5648940,4, 0x5648984,1, 0x5648998,2, 0x56489a4,1, 0x56489b8,7, 0x56489e0,4, 0x5648a00,20, 0x5648a80,3, 0x5648a90,9, 0x5648ac0,6, 0x5648ae0,1, 0x5648ae8,7, 0x5648c00,49, 0x5648d00,12, 0x5648d40,4, 0x5648d84,1, 0x5648d98,2, 0x5648da4,1, 0x5648db8,7, 0x5648de0,4, 0x5648e00,20, 0x5648e80,3, 0x5648e90,9, 0x5648ec0,6, 0x5648ee0,1, 0x5648ee8,7, 0x5649000,49, 0x5649100,12, 0x5649140,4, 0x5649184,1, 0x5649198,2, 0x56491a4,1, 0x56491b8,7, 0x56491e0,4, 0x5649200,20, 0x5649280,3, 0x5649290,9, 0x56492c0,6, 0x56492e0,1, 0x56492e8,7, 0x5649400,49, 0x5649500,12, 0x5649540,4, 0x5649584,1, 0x5649598,2, 0x56495a4,1, 0x56495b8,7, 0x56495e0,4, 0x5649600,20, 0x5649680,3, 0x5649690,9, 0x56496c0,6, 0x56496e0,1, 0x56496e8,7, 0x5649800,49, 0x5649900,12, 0x5649940,4, 0x5649984,1, 0x5649998,2, 0x56499a4,1, 0x56499b8,7, 0x56499e0,4, 0x5649a00,20, 0x5649a80,3, 0x5649a90,9, 0x5649ac0,6, 0x5649ae0,1, 0x5649ae8,7, 0x564a000,20, 0x564a080,2, 0x564a100,20, 0x564a180,2, 0x564a200,4, 0x564a400,20, 0x564a480,2, 0x564a500,20, 0x564a580,2, 0x564a600,4, 0x564a800,3, 0x564a840,12, 0x564a880,12, 0x564a8c0,12, 0x564a900,12, 0x564a940,12, 0x564a980,12, 0x564a9c0,12, 0x564aa00,12, 0x564ac00,12, 0x564ac40,7, 0x564ac60,10, 0x564b004,1, 0x564b018,40, 0x564b100,7, 0x564b120,7, 0x564b140,2, 0x564b14c,2, 0x564b160,2, 0x564b16c,2, 0x564b180,18, 0x564b200,2, 0x564b220,10, 0x564b260,20, 0x564b2c0,7, 0x564b300,15, 0x564b340,9, 0x564b380,6, 0x564b3a0,4, 0x564b400,4, 0x564c000,106, 0x564c200,2, 0x564c240,9, 0x564c280,7, 0x564c400,106, 0x564c604,6, 0x564c700,15, 0x564c740,9, 0x564c780,6, 0x564c7a0,6, 0x564c800,8, 0x564c824,1, 0x564c830,15, 0x564c870,3, 0x5660000,518, 0x5660900,45, 0x5660a00,45, 0x5660b00,45, 0x5660c00,45, 0x5660d00,45, 0x5660e00,45, 0x5660f00,45, 0x5661000,45, 0x5661800,9, 0x5661840,364, 0x5661e00,19, 0x5662000,9, 0x5662040,364, 0x5662600,19, 0x5662800,6, 0x5662820,3, 0x5662840,7, 0x5662880,6, 0x56628a0,3, 0x56628c0,7, 0x5662900,1, 0x5662908,3, 0x5662918,8, 0x5662940,7, 0x5663000,2, 0x5663800,18, 0x5663880,18, 0x5663c00,4, 0x5663c20,7, 0x5663d00,4, 0x5663d80,20, 0x5663e00,1, 0x5664000,21, 0x5664058,3, 0x5664100,1, 0x5664124,1, 0x566412c,5, 0x5664144,1, 0x566414c,6, 0x5664184,6, 0x56641a4,6, 0x56641c4,1, 0x56641cc,1, 0x5664400,9, 0x5664440,9, 0x5664480,15, 0x56644c0,15, 0x5664500,15, 0x5664540,15, 0x5664580,15, 0x56645c0,15, 0x5664600,15, 0x5664640,15, 0x5664680,59, 0x5664800,1, 0x5664808,16, 0x5664850,1, 0x5664858,7, 0x5668000,3, 0x5668010,1, 0x5668018,3, 0x566a000,4, 0x566a080,19, 0x566a100,12, 0x566a200,4, 0x566a280,19, 0x566a300,12, 0x566a400,2, 0x566a600,124, 0x566a800,4, 0x566a880,18, 0x566a900,4, 0x566a980,23, 0x566aa00,10, 0x566aa2c,2, 0x566aa40,2, 0x566aa4c,3, 0x566aa60,2, 0x566aa6c,3, 0x566aa80,2, 0x566aa8c,2, 0x566aaa0,2, 0x566aaac,2, 0x566aac0,2, 0x566aacc,2, 0x566ab00,4, 0x566ab40,15, 0x566ab80,3, 0x566ab90,7, 0x566abb0,3, 0x566abc0,3, 0x566abd0,3, 0x566abe0,1, 0x566ac00,17, 0x566ae00,15, 0x566ae40,4, 0x566ae60,17, 0x566aec0,6, 0x566aee0,4, 0x566aef4,11, 0x566af24,28, 0x566b000,1, 0x566b080,1, 0x566b0a0,5, 0x566b0c0,5, 0x566b0e0,5, 0x566b100,1, 0x566b120,5, 0x566b140,5, 0x566b160,5, 0x566b180,24, 0x566b200,5, 0x566c000,20, 0x5670000,518, 0x5670900,45, 0x5670a00,45, 0x5670b00,45, 0x5670c00,45, 0x5670d00,45, 0x5670e00,45, 0x5670f00,45, 0x5671000,45, 0x5671800,9, 0x5671840,364, 0x5671e00,19, 0x5672000,9, 0x5672040,364, 0x5672600,19, 0x5672800,6, 0x5672820,3, 0x5672840,7, 0x5672880,6, 0x56728a0,3, 0x56728c0,7, 0x5672900,1, 0x5672908,3, 0x5672918,8, 0x5672940,7, 0x5673000,2, 0x5673800,18, 0x5673880,18, 0x5673c00,4, 0x5673c20,7, 0x5673d00,4, 0x5673d80,20, 0x5673e00,1, 0x5674000,21, 0x5674058,3, 0x5674100,1, 0x5674124,1, 0x567412c,5, 0x5674144,1, 0x567414c,6, 0x5674184,6, 0x56741a4,6, 0x56741c4,1, 0x56741cc,1, 0x5674400,9, 0x5674440,9, 0x5674480,15, 0x56744c0,15, 0x5674500,15, 0x5674540,15, 0x5674580,15, 0x56745c0,15, 0x5674600,15, 0x5674640,15, 0x5674680,59, 0x5674800,1, 0x5674808,16, 0x5674850,1, 0x5674858,7, 0x5678000,3, 0x5678010,1, 0x5678018,3, 0x567a000,4, 0x567a080,19, 0x567a100,12, 0x567a200,4, 0x567a280,19, 0x567a300,12, 0x567a400,2, 0x567a600,124, 0x567a800,4, 0x567a880,18, 0x567a900,4, 0x567a980,23, 0x567aa00,10, 0x567aa2c,2, 0x567aa40,2, 0x567aa4c,3, 0x567aa60,2, 0x567aa6c,3, 0x567aa80,2, 0x567aa8c,2, 0x567aaa0,2, 0x567aaac,2, 0x567aac0,2, 0x567aacc,2, 0x567ab00,4, 0x567ab40,15, 0x567ab80,3, 0x567ab90,7, 0x567abb0,3, 0x567abc0,3, 0x567abd0,3, 0x567abe0,1, 0x567ac00,17, 0x567ae00,15, 0x567ae40,4, 0x567ae60,17, 0x567aec0,6, 0x567aee0,4, 0x567aef4,11, 0x567af24,28, 0x567b000,1, 0x567b080,1, 0x567b0a0,5, 0x567b0c0,5, 0x567b0e0,5, 0x567b100,1, 0x567b120,5, 0x567b140,5, 0x567b160,5, 0x567b180,24, 0x567b200,5, 0x567c000,20, 0x5680000,18, 0x5680050,3, 0x5680060,3, 0x5680070,14, 0x56800c0,5, 0x5680400,13, 0x5680440,2, 0x568044c,3, 0x5680460,2, 0x5680480,13, 0x56804c0,2, 0x56804cc,3, 0x56804e0,2, 0x5680500,1, 0x5680508,16, 0x5680560,2, 0x568056c,3, 0x5680600,4, 0x5680680,19, 0x5680800,24, 0x5680864,2, 0x5680870,4, 0x5680a00,27, 0x5680a80,4, 0x5680ac0,25, 0x5680b40,6, 0x5680b60,4, 0x5680b74,11, 0x5680ba4,8, 0x5680c00,3, 0x5680c10,3, 0x5680c20,1, 0x5680c40,11, 0x5680c80,23, 0x5680ce0,15, 0x5680d20,15, 0x5680d60,2, 0x5680d6c,2, 0x5680d80,1, 0x5681000,18, 0x5681050,3, 0x5681060,3, 0x5681070,14, 0x56810c0,5, 0x5681400,13, 0x5681440,2, 0x568144c,3, 0x5681460,2, 0x5681480,13, 0x56814c0,2, 0x56814cc,3, 0x56814e0,2, 0x5681500,1, 0x5681508,16, 0x5681560,2, 0x568156c,3, 0x5681600,4, 0x5681680,19, 0x5681800,24, 0x5681864,2, 0x5681870,4, 0x5681a00,27, 0x5681a80,4, 0x5681ac0,25, 0x5681b40,6, 0x5681b60,4, 0x5681b74,11, 0x5681ba4,8, 0x5681c00,3, 0x5681c10,3, 0x5681c20,1, 0x5681c40,11, 0x5681c80,23, 0x5681ce0,15, 0x5681d20,15, 0x5681d60,2, 0x5681d6c,2, 0x5681d80,1, 0x5682000,20, 0x5682080,7, 0x56820a0,1, 0x56820b0,1, 0x56820b8,2, 0x5684000,14, 0x5700000,534, 0x5701000,2, 0x5701040,9, 0x5701080,7, 0x5702000,534, 0x5703000,12, 0x5703044,6, 0x5703080,8, 0x57030a4,1, 0x57030c0,7, 0x57030e0,7, 0x5703100,7, 0x5703120,7, 0x5703140,8, 0x5703164,6, 0x5703180,12, 0x5704000,534, 0x5705000,2, 0x5705040,9, 0x5705080,7, 0x5706000,534, 0x5707000,12, 0x5707044,6, 0x5707080,8, 0x57070a4,1, 0x57070c0,7, 0x57070e0,7, 0x5707100,7, 0x5707120,7, 0x5707140,8, 0x5707164,6, 0x5707180,12, 0x5708004,5, 0x5708200,27, 0x5708280,4, 0x57082c0,25, 0x5708340,6, 0x5708360,4, 0x5708374,11, 0x57083a4,5, 0x5708400,1, 0x5710000,397, 0x5710800,93, 0x5710980,6, 0x5710a00,41, 0x5710b00,2, 0x5710b20,19, 0x5710c00,25, 0x5710c80,1, 0x5710d00,28, 0x5710d80,1, 0x5711000,397, 0x5711800,93, 0x5711980,6, 0x5711a00,41, 0x5711b00,2, 0x5711b20,19, 0x5711c00,25, 0x5711c80,1, 0x5711d00,28, 0x5711d80,1, 0x5712000,7, 0x5712040,9, 0x5712080,4, 0x57120a0,5, 0x57120c0,2, 0x5714000,3, 0x5714010,6, 0x5714200,7, 0x5714220,6, 0x5714240,7, 0x5714260,6, 0x5714280,2, 0x571428c,2, 0x57142a0,2, 0x57142ac,2, 0x57142c0,7, 0x57142e0,7, 0x5714300,2, 0x571430c,2, 0x5714320,6, 0x5714340,7, 0x5714360,6, 0x5714380,6, 0x57143a0,7, 0x57143c0,6, 0x57143e0,6, 0x5714400,3, 0x5714440,12, 0x5714484,1, 0x57144c0,16, 0x5714800,7, 0x5714820,14, 0x5714880,9, 0x57148a8,12, 0x5714900,7, 0x5714920,14, 0x5714980,9, 0x57149a8,12, 0x5714a00,10, 0x5714a40,2, 0x5714a4c,3, 0x5714c00,5, 0x5714c20,1, 0x5714c28,3, 0x5720000,534, 0x5721000,2, 0x5721040,9, 0x5721080,7, 0x5722000,534, 0x5723000,12, 0x5723044,6, 0x5723080,8, 0x57230a4,1, 0x57230c0,7, 0x57230e0,7, 0x5723100,7, 0x5723120,7, 0x5723140,8, 0x5723164,6, 0x5723180,12, 0x5724000,534, 0x5725000,2, 0x5725040,9, 0x5725080,7, 0x5726000,534, 0x5727000,12, 0x5727044,6, 0x5727080,8, 0x57270a4,1, 0x57270c0,7, 0x57270e0,7, 0x5727100,7, 0x5727120,7, 0x5727140,8, 0x5727164,6, 0x5727180,12, 0x5728004,5, 0x5728200,27, 0x5728280,4, 0x57282c0,25, 0x5728340,6, 0x5728360,4, 0x5728374,11, 0x57283a4,5, 0x5728400,1, 0x5730000,397, 0x5730800,93, 0x5730980,6, 0x5730a00,41, 0x5730b00,2, 0x5730b20,19, 0x5730c00,25, 0x5730c80,1, 0x5730d00,28, 0x5730d80,1, 0x5731000,397, 0x5731800,93, 0x5731980,6, 0x5731a00,41, 0x5731b00,2, 0x5731b20,19, 0x5731c00,25, 0x5731c80,1, 0x5731d00,28, 0x5731d80,1, 0x5732000,7, 0x5732040,9, 0x5732080,4, 0x57320a0,5, 0x57320c0,2, 0x5734000,3, 0x5734010,6, 0x5734200,7, 0x5734220,6, 0x5734240,7, 0x5734260,6, 0x5734280,2, 0x573428c,2, 0x57342a0,2, 0x57342ac,2, 0x57342c0,7, 0x57342e0,7, 0x5734300,2, 0x573430c,2, 0x5734320,6, 0x5734340,7, 0x5734360,6, 0x5734380,6, 0x57343a0,7, 0x57343c0,6, 0x57343e0,6, 0x5734400,3, 0x5734440,12, 0x5734484,1, 0x57344c0,16, 0x5734800,7, 0x5734820,14, 0x5734880,9, 0x57348a8,12, 0x5734900,7, 0x5734920,14, 0x5734980,9, 0x57349a8,12, 0x5734a00,10, 0x5734a40,2, 0x5734a4c,3, 0x5734c00,5, 0x5734c20,1, 0x5734c28,3, 0x5740000,37, 0x5740100,3, 0x5740110,15, 0x5740200,37, 0x5740300,3, 0x5740310,15, 0x5740400,5, 0x5740420,5, 0x5740440,18, 0x5740800,3, 0x5740810,2, 0x5740820,3, 0x5740830,2, 0x5740840,1, 0x5741000,12, 0x5741040,12, 0x5741080,2, 0x5741100,19, 0x5741180,19, 0x5741200,26, 0x5741400,20, 0x5741480,20, 0x5741500,8, 0x5741540,4, 0x5741580,15, 0x57415c0,15, 0x5741600,9, 0x5741630,5, 0x5742000,37, 0x5742100,3, 0x5742110,15, 0x5742200,37, 0x5742300,3, 0x5742310,15, 0x5742400,5, 0x5742420,5, 0x5742440,18, 0x5742800,3, 0x5742810,2, 0x5742820,3, 0x5742830,2, 0x5742840,1, 0x5743000,12, 0x5743040,12, 0x5743080,2, 0x5743100,19, 0x5743180,19, 0x5743200,26, 0x5743400,20, 0x5743480,20, 0x5743500,8, 0x5743540,4, 0x5743580,15, 0x57435c0,15, 0x5743600,9, 0x5743630,5, 0x5744000,6, 0x5744020,1, 0x574402c,3, 0x5744040,11, 0x5744070,3, 0x5744080,2, 0x5748000,49, 0x5748100,12, 0x5748140,4, 0x5748184,1, 0x5748198,2, 0x57481a4,1, 0x57481b8,7, 0x57481e0,4, 0x5748200,20, 0x5748280,3, 0x5748290,9, 0x57482c0,6, 0x57482e0,1, 0x57482e8,7, 0x5748400,49, 0x5748500,12, 0x5748540,4, 0x5748584,1, 0x5748598,2, 0x57485a4,1, 0x57485b8,7, 0x57485e0,4, 0x5748600,20, 0x5748680,3, 0x5748690,9, 0x57486c0,6, 0x57486e0,1, 0x57486e8,7, 0x5748800,49, 0x5748900,12, 0x5748940,4, 0x5748984,1, 0x5748998,2, 0x57489a4,1, 0x57489b8,7, 0x57489e0,4, 0x5748a00,20, 0x5748a80,3, 0x5748a90,9, 0x5748ac0,6, 0x5748ae0,1, 0x5748ae8,7, 0x5748c00,49, 0x5748d00,12, 0x5748d40,4, 0x5748d84,1, 0x5748d98,2, 0x5748da4,1, 0x5748db8,7, 0x5748de0,4, 0x5748e00,20, 0x5748e80,3, 0x5748e90,9, 0x5748ec0,6, 0x5748ee0,1, 0x5748ee8,7, 0x5749000,49, 0x5749100,12, 0x5749140,4, 0x5749184,1, 0x5749198,2, 0x57491a4,1, 0x57491b8,7, 0x57491e0,4, 0x5749200,20, 0x5749280,3, 0x5749290,9, 0x57492c0,6, 0x57492e0,1, 0x57492e8,7, 0x5749400,49, 0x5749500,12, 0x5749540,4, 0x5749584,1, 0x5749598,2, 0x57495a4,1, 0x57495b8,7, 0x57495e0,4, 0x5749600,20, 0x5749680,3, 0x5749690,9, 0x57496c0,6, 0x57496e0,1, 0x57496e8,7, 0x5749800,49, 0x5749900,12, 0x5749940,4, 0x5749984,1, 0x5749998,2, 0x57499a4,1, 0x57499b8,7, 0x57499e0,4, 0x5749a00,20, 0x5749a80,3, 0x5749a90,9, 0x5749ac0,6, 0x5749ae0,1, 0x5749ae8,7, 0x574a000,20, 0x574a080,2, 0x574a100,20, 0x574a180,2, 0x574a200,4, 0x574a400,20, 0x574a480,2, 0x574a500,20, 0x574a580,2, 0x574a600,4, 0x574a800,3, 0x574a840,12, 0x574a880,12, 0x574a8c0,12, 0x574a900,12, 0x574a940,12, 0x574a980,12, 0x574a9c0,12, 0x574aa00,12, 0x574ac00,12, 0x574ac40,7, 0x574ac60,10, 0x574b004,1, 0x574b018,40, 0x574b100,7, 0x574b120,7, 0x574b140,2, 0x574b14c,2, 0x574b160,2, 0x574b16c,2, 0x574b180,18, 0x574b200,2, 0x574b220,10, 0x574b260,20, 0x574b2c0,7, 0x574b300,15, 0x574b340,9, 0x574b380,6, 0x574b3a0,4, 0x574b400,4, 0x574c000,106, 0x574c200,2, 0x574c240,9, 0x574c280,7, 0x574c400,106, 0x574c604,6, 0x574c700,15, 0x574c740,9, 0x574c780,6, 0x574c7a0,6, 0x574c800,8, 0x574c824,1, 0x574c830,15, 0x574c870,3, 0x5760000,518, 0x5760900,45, 0x5760a00,45, 0x5760b00,45, 0x5760c00,45, 0x5760d00,45, 0x5760e00,45, 0x5760f00,45, 0x5761000,45, 0x5761800,9, 0x5761840,364, 0x5761e00,19, 0x5762000,9, 0x5762040,364, 0x5762600,19, 0x5762800,6, 0x5762820,3, 0x5762840,7, 0x5762880,6, 0x57628a0,3, 0x57628c0,7, 0x5762900,1, 0x5762908,3, 0x5762918,8, 0x5762940,7, 0x5763000,2, 0x5763800,18, 0x5763880,18, 0x5763c00,4, 0x5763c20,7, 0x5763d00,4, 0x5763d80,20, 0x5763e00,1, 0x5764000,21, 0x5764058,3, 0x5764100,1, 0x5764124,1, 0x576412c,5, 0x5764144,1, 0x576414c,6, 0x5764184,6, 0x57641a4,6, 0x57641c4,1, 0x57641cc,1, 0x5764400,9, 0x5764440,9, 0x5764480,15, 0x57644c0,15, 0x5764500,15, 0x5764540,15, 0x5764580,15, 0x57645c0,15, 0x5764600,15, 0x5764640,15, 0x5764680,59, 0x5764800,1, 0x5764808,16, 0x5764850,1, 0x5764858,7, 0x5768000,3, 0x5768010,1, 0x5768018,3, 0x576a000,4, 0x576a080,19, 0x576a100,12, 0x576a200,4, 0x576a280,19, 0x576a300,12, 0x576a400,2, 0x576a600,124, 0x576a800,4, 0x576a880,18, 0x576a900,4, 0x576a980,23, 0x576aa00,10, 0x576aa2c,2, 0x576aa40,2, 0x576aa4c,3, 0x576aa60,2, 0x576aa6c,3, 0x576aa80,2, 0x576aa8c,2, 0x576aaa0,2, 0x576aaac,2, 0x576aac0,2, 0x576aacc,2, 0x576ab00,4, 0x576ab40,15, 0x576ab80,3, 0x576ab90,7, 0x576abb0,3, 0x576abc0,3, 0x576abd0,3, 0x576abe0,1, 0x576ac00,17, 0x576ae00,15, 0x576ae40,4, 0x576ae60,17, 0x576aec0,6, 0x576aee0,4, 0x576aef4,11, 0x576af24,28, 0x576b000,1, 0x576b080,1, 0x576b0a0,5, 0x576b0c0,5, 0x576b0e0,5, 0x576b100,1, 0x576b120,5, 0x576b140,5, 0x576b160,5, 0x576b180,24, 0x576b200,5, 0x576c000,20, 0x5770000,518, 0x5770900,45, 0x5770a00,45, 0x5770b00,45, 0x5770c00,45, 0x5770d00,45, 0x5770e00,45, 0x5770f00,45, 0x5771000,45, 0x5771800,9, 0x5771840,364, 0x5771e00,19, 0x5772000,9, 0x5772040,364, 0x5772600,19, 0x5772800,6, 0x5772820,3, 0x5772840,7, 0x5772880,6, 0x57728a0,3, 0x57728c0,7, 0x5772900,1, 0x5772908,3, 0x5772918,8, 0x5772940,7, 0x5773000,2, 0x5773800,18, 0x5773880,18, 0x5773c00,4, 0x5773c20,7, 0x5773d00,4, 0x5773d80,20, 0x5773e00,1, 0x5774000,21, 0x5774058,3, 0x5774100,1, 0x5774124,1, 0x577412c,5, 0x5774144,1, 0x577414c,6, 0x5774184,6, 0x57741a4,6, 0x57741c4,1, 0x57741cc,1, 0x5774400,9, 0x5774440,9, 0x5774480,15, 0x57744c0,15, 0x5774500,15, 0x5774540,15, 0x5774580,15, 0x57745c0,15, 0x5774600,15, 0x5774640,15, 0x5774680,59, 0x5774800,1, 0x5774808,16, 0x5774850,1, 0x5774858,7, 0x5778000,3, 0x5778010,1, 0x5778018,3, 0x577a000,4, 0x577a080,19, 0x577a100,12, 0x577a200,4, 0x577a280,19, 0x577a300,12, 0x577a400,2, 0x577a600,124, 0x577a800,4, 0x577a880,18, 0x577a900,4, 0x577a980,23, 0x577aa00,10, 0x577aa2c,2, 0x577aa40,2, 0x577aa4c,3, 0x577aa60,2, 0x577aa6c,3, 0x577aa80,2, 0x577aa8c,2, 0x577aaa0,2, 0x577aaac,2, 0x577aac0,2, 0x577aacc,2, 0x577ab00,4, 0x577ab40,15, 0x577ab80,3, 0x577ab90,7, 0x577abb0,3, 0x577abc0,3, 0x577abd0,3, 0x577abe0,1, 0x577ac00,17, 0x577ae00,15, 0x577ae40,4, 0x577ae60,17, 0x577aec0,6, 0x577aee0,4, 0x577aef4,11, 0x577af24,28, 0x577b000,1, 0x577b080,1, 0x577b0a0,5, 0x577b0c0,5, 0x577b0e0,5, 0x577b100,1, 0x577b120,5, 0x577b140,5, 0x577b160,5, 0x577b180,24, 0x577b200,5, 0x577c000,20, 0x5780000,18, 0x5780050,3, 0x5780060,3, 0x5780070,14, 0x57800c0,5, 0x5780400,13, 0x5780440,2, 0x578044c,3, 0x5780460,2, 0x5780480,13, 0x57804c0,2, 0x57804cc,3, 0x57804e0,2, 0x5780500,1, 0x5780508,16, 0x5780560,2, 0x578056c,3, 0x5780600,4, 0x5780680,19, 0x5780800,24, 0x5780864,2, 0x5780870,4, 0x5780a00,27, 0x5780a80,4, 0x5780ac0,25, 0x5780b40,6, 0x5780b60,4, 0x5780b74,11, 0x5780ba4,8, 0x5780c00,3, 0x5780c10,3, 0x5780c20,1, 0x5780c40,11, 0x5780c80,23, 0x5780ce0,15, 0x5780d20,15, 0x5780d60,2, 0x5780d6c,2, 0x5780d80,1, 0x5781000,18, 0x5781050,3, 0x5781060,3, 0x5781070,14, 0x57810c0,5, 0x5781400,13, 0x5781440,2, 0x578144c,3, 0x5781460,2, 0x5781480,13, 0x57814c0,2, 0x57814cc,3, 0x57814e0,2, 0x5781500,1, 0x5781508,16, 0x5781560,2, 0x578156c,3, 0x5781600,4, 0x5781680,19, 0x5781800,24, 0x5781864,2, 0x5781870,4, 0x5781a00,27, 0x5781a80,4, 0x5781ac0,25, 0x5781b40,6, 0x5781b60,4, 0x5781b74,11, 0x5781ba4,8, 0x5781c00,3, 0x5781c10,3, 0x5781c20,1, 0x5781c40,11, 0x5781c80,23, 0x5781ce0,15, 0x5781d20,15, 0x5781d60,2, 0x5781d6c,2, 0x5781d80,1, 0x5782000,20, 0x5782080,7, 0x57820a0,1, 0x57820b0,1, 0x57820b8,2, 0x5784000,14, 0x5800000,534, 0x5801000,2, 0x5801040,9, 0x5801080,7, 0x5802000,534, 0x5803000,12, 0x5803044,6, 0x5803080,8, 0x58030a4,1, 0x58030c0,7, 0x58030e0,7, 0x5803100,7, 0x5803120,7, 0x5803140,8, 0x5803164,6, 0x5803180,12, 0x5804000,534, 0x5805000,2, 0x5805040,9, 0x5805080,7, 0x5806000,534, 0x5807000,12, 0x5807044,6, 0x5807080,8, 0x58070a4,1, 0x58070c0,7, 0x58070e0,7, 0x5807100,7, 0x5807120,7, 0x5807140,8, 0x5807164,6, 0x5807180,12, 0x5808004,5, 0x5808200,27, 0x5808280,4, 0x58082c0,25, 0x5808340,6, 0x5808360,4, 0x5808374,11, 0x58083a4,5, 0x5808400,1, 0x5810000,397, 0x5810800,93, 0x5810980,6, 0x5810a00,41, 0x5810b00,2, 0x5810b20,19, 0x5810c00,25, 0x5810c80,1, 0x5810d00,28, 0x5810d80,1, 0x5811000,397, 0x5811800,93, 0x5811980,6, 0x5811a00,41, 0x5811b00,2, 0x5811b20,19, 0x5811c00,25, 0x5811c80,1, 0x5811d00,28, 0x5811d80,1, 0x5812000,7, 0x5812040,9, 0x5812080,4, 0x58120a0,5, 0x58120c0,2, 0x5814000,3, 0x5814010,6, 0x5814200,7, 0x5814220,6, 0x5814240,7, 0x5814260,6, 0x5814280,2, 0x581428c,2, 0x58142a0,2, 0x58142ac,2, 0x58142c0,7, 0x58142e0,7, 0x5814300,2, 0x581430c,2, 0x5814320,6, 0x5814340,7, 0x5814360,6, 0x5814380,6, 0x58143a0,7, 0x58143c0,6, 0x58143e0,6, 0x5814400,3, 0x5814440,12, 0x5814484,1, 0x58144c0,16, 0x5814800,7, 0x5814820,14, 0x5814880,9, 0x58148a8,12, 0x5814900,7, 0x5814920,14, 0x5814980,9, 0x58149a8,12, 0x5814a00,10, 0x5814a40,2, 0x5814a4c,3, 0x5814c00,5, 0x5814c20,1, 0x5814c28,3, 0x5820000,534, 0x5821000,2, 0x5821040,9, 0x5821080,7, 0x5822000,534, 0x5823000,12, 0x5823044,6, 0x5823080,8, 0x58230a4,1, 0x58230c0,7, 0x58230e0,7, 0x5823100,7, 0x5823120,7, 0x5823140,8, 0x5823164,6, 0x5823180,12, 0x5824000,534, 0x5825000,2, 0x5825040,9, 0x5825080,7, 0x5826000,534, 0x5827000,12, 0x5827044,6, 0x5827080,8, 0x58270a4,1, 0x58270c0,7, 0x58270e0,7, 0x5827100,7, 0x5827120,7, 0x5827140,8, 0x5827164,6, 0x5827180,12, 0x5828004,5, 0x5828200,27, 0x5828280,4, 0x58282c0,25, 0x5828340,6, 0x5828360,4, 0x5828374,11, 0x58283a4,5, 0x5828400,1, 0x5830000,397, 0x5830800,93, 0x5830980,6, 0x5830a00,41, 0x5830b00,2, 0x5830b20,19, 0x5830c00,25, 0x5830c80,1, 0x5830d00,28, 0x5830d80,1, 0x5831000,397, 0x5831800,93, 0x5831980,6, 0x5831a00,41, 0x5831b00,2, 0x5831b20,19, 0x5831c00,25, 0x5831c80,1, 0x5831d00,28, 0x5831d80,1, 0x5832000,7, 0x5832040,9, 0x5832080,4, 0x58320a0,5, 0x58320c0,2, 0x5834000,3, 0x5834010,6, 0x5834200,7, 0x5834220,6, 0x5834240,7, 0x5834260,6, 0x5834280,2, 0x583428c,2, 0x58342a0,2, 0x58342ac,2, 0x58342c0,7, 0x58342e0,7, 0x5834300,2, 0x583430c,2, 0x5834320,6, 0x5834340,7, 0x5834360,6, 0x5834380,6, 0x58343a0,7, 0x58343c0,6, 0x58343e0,6, 0x5834400,3, 0x5834440,12, 0x5834484,1, 0x58344c0,16, 0x5834800,7, 0x5834820,14, 0x5834880,9, 0x58348a8,12, 0x5834900,7, 0x5834920,14, 0x5834980,9, 0x58349a8,12, 0x5834a00,10, 0x5834a40,2, 0x5834a4c,3, 0x5834c00,5, 0x5834c20,1, 0x5834c28,3, 0x5840000,37, 0x5840100,3, 0x5840110,15, 0x5840200,37, 0x5840300,3, 0x5840310,15, 0x5840400,5, 0x5840420,5, 0x5840440,18, 0x5840800,3, 0x5840810,2, 0x5840820,3, 0x5840830,2, 0x5840840,1, 0x5841000,12, 0x5841040,12, 0x5841080,2, 0x5841100,19, 0x5841180,19, 0x5841200,26, 0x5841400,20, 0x5841480,20, 0x5841500,8, 0x5841540,4, 0x5841580,15, 0x58415c0,15, 0x5841600,9, 0x5841630,5, 0x5842000,37, 0x5842100,3, 0x5842110,15, 0x5842200,37, 0x5842300,3, 0x5842310,15, 0x5842400,5, 0x5842420,5, 0x5842440,18, 0x5842800,3, 0x5842810,2, 0x5842820,3, 0x5842830,2, 0x5842840,1, 0x5843000,12, 0x5843040,12, 0x5843080,2, 0x5843100,19, 0x5843180,19, 0x5843200,26, 0x5843400,20, 0x5843480,20, 0x5843500,8, 0x5843540,4, 0x5843580,15, 0x58435c0,15, 0x5843600,9, 0x5843630,5, 0x5844000,6, 0x5844020,1, 0x584402c,3, 0x5844040,11, 0x5844070,3, 0x5844080,2, 0x5848000,49, 0x5848100,12, 0x5848140,4, 0x5848184,1, 0x5848198,2, 0x58481a4,1, 0x58481b8,7, 0x58481e0,4, 0x5848200,20, 0x5848280,3, 0x5848290,9, 0x58482c0,6, 0x58482e0,1, 0x58482e8,7, 0x5848400,49, 0x5848500,12, 0x5848540,4, 0x5848584,1, 0x5848598,2, 0x58485a4,1, 0x58485b8,7, 0x58485e0,4, 0x5848600,20, 0x5848680,3, 0x5848690,9, 0x58486c0,6, 0x58486e0,1, 0x58486e8,7, 0x5848800,49, 0x5848900,12, 0x5848940,4, 0x5848984,1, 0x5848998,2, 0x58489a4,1, 0x58489b8,7, 0x58489e0,4, 0x5848a00,20, 0x5848a80,3, 0x5848a90,9, 0x5848ac0,6, 0x5848ae0,1, 0x5848ae8,7, 0x5848c00,49, 0x5848d00,12, 0x5848d40,4, 0x5848d84,1, 0x5848d98,2, 0x5848da4,1, 0x5848db8,7, 0x5848de0,4, 0x5848e00,20, 0x5848e80,3, 0x5848e90,9, 0x5848ec0,6, 0x5848ee0,1, 0x5848ee8,7, 0x5849000,49, 0x5849100,12, 0x5849140,4, 0x5849184,1, 0x5849198,2, 0x58491a4,1, 0x58491b8,7, 0x58491e0,4, 0x5849200,20, 0x5849280,3, 0x5849290,9, 0x58492c0,6, 0x58492e0,1, 0x58492e8,7, 0x5849400,49, 0x5849500,12, 0x5849540,4, 0x5849584,1, 0x5849598,2, 0x58495a4,1, 0x58495b8,7, 0x58495e0,4, 0x5849600,20, 0x5849680,3, 0x5849690,9, 0x58496c0,6, 0x58496e0,1, 0x58496e8,7, 0x5849800,49, 0x5849900,12, 0x5849940,4, 0x5849984,1, 0x5849998,2, 0x58499a4,1, 0x58499b8,7, 0x58499e0,4, 0x5849a00,20, 0x5849a80,3, 0x5849a90,9, 0x5849ac0,6, 0x5849ae0,1, 0x5849ae8,7, 0x584a000,20, 0x584a080,2, 0x584a100,20, 0x584a180,2, 0x584a200,4, 0x584a400,20, 0x584a480,2, 0x584a500,20, 0x584a580,2, 0x584a600,4, 0x584a800,3, 0x584a840,12, 0x584a880,12, 0x584a8c0,12, 0x584a900,12, 0x584a940,12, 0x584a980,12, 0x584a9c0,12, 0x584aa00,12, 0x584ac00,12, 0x584ac40,7, 0x584ac60,10, 0x584b004,1, 0x584b018,40, 0x584b100,7, 0x584b120,7, 0x584b140,2, 0x584b14c,2, 0x584b160,2, 0x584b16c,2, 0x584b180,18, 0x584b200,2, 0x584b220,10, 0x584b260,20, 0x584b2c0,7, 0x584b300,15, 0x584b340,9, 0x584b380,6, 0x584b3a0,4, 0x584b400,4, 0x584c000,106, 0x584c200,2, 0x584c240,9, 0x584c280,7, 0x584c400,106, 0x584c604,6, 0x584c700,15, 0x584c740,9, 0x584c780,6, 0x584c7a0,6, 0x584c800,8, 0x584c824,1, 0x584c830,15, 0x584c870,3, 0x5860000,518, 0x5860900,45, 0x5860a00,45, 0x5860b00,45, 0x5860c00,45, 0x5860d00,45, 0x5860e00,45, 0x5860f00,45, 0x5861000,45, 0x5861800,9, 0x5861840,364, 0x5861e00,19, 0x5862000,9, 0x5862040,364, 0x5862600,19, 0x5862800,6, 0x5862820,3, 0x5862840,7, 0x5862880,6, 0x58628a0,3, 0x58628c0,7, 0x5862900,1, 0x5862908,3, 0x5862918,8, 0x5862940,7, 0x5863000,2, 0x5863800,18, 0x5863880,18, 0x5863c00,4, 0x5863c20,7, 0x5863d00,4, 0x5863d80,20, 0x5863e00,1, 0x5864000,21, 0x5864058,3, 0x5864100,1, 0x5864124,1, 0x586412c,5, 0x5864144,1, 0x586414c,6, 0x5864184,6, 0x58641a4,6, 0x58641c4,1, 0x58641cc,1, 0x5864400,9, 0x5864440,9, 0x5864480,15, 0x58644c0,15, 0x5864500,15, 0x5864540,15, 0x5864580,15, 0x58645c0,15, 0x5864600,15, 0x5864640,15, 0x5864680,59, 0x5864800,1, 0x5864808,16, 0x5864850,1, 0x5864858,7, 0x5868000,3, 0x5868010,1, 0x5868018,3, 0x586a000,4, 0x586a080,19, 0x586a100,12, 0x586a200,4, 0x586a280,19, 0x586a300,12, 0x586a400,2, 0x586a600,124, 0x586a800,4, 0x586a880,18, 0x586a900,4, 0x586a980,23, 0x586aa00,10, 0x586aa2c,2, 0x586aa40,2, 0x586aa4c,3, 0x586aa60,2, 0x586aa6c,3, 0x586aa80,2, 0x586aa8c,2, 0x586aaa0,2, 0x586aaac,2, 0x586aac0,2, 0x586aacc,2, 0x586ab00,4, 0x586ab40,15, 0x586ab80,3, 0x586ab90,7, 0x586abb0,3, 0x586abc0,3, 0x586abd0,3, 0x586abe0,1, 0x586ac00,17, 0x586ae00,15, 0x586ae40,4, 0x586ae60,17, 0x586aec0,6, 0x586aee0,4, 0x586aef4,11, 0x586af24,28, 0x586b000,1, 0x586b080,1, 0x586b0a0,5, 0x586b0c0,5, 0x586b0e0,5, 0x586b100,1, 0x586b120,5, 0x586b140,5, 0x586b160,5, 0x586b180,24, 0x586b200,5, 0x586c000,20, 0x5870000,518, 0x5870900,45, 0x5870a00,45, 0x5870b00,45, 0x5870c00,45, 0x5870d00,45, 0x5870e00,45, 0x5870f00,45, 0x5871000,45, 0x5871800,9, 0x5871840,364, 0x5871e00,19, 0x5872000,9, 0x5872040,364, 0x5872600,19, 0x5872800,6, 0x5872820,3, 0x5872840,7, 0x5872880,6, 0x58728a0,3, 0x58728c0,7, 0x5872900,1, 0x5872908,3, 0x5872918,8, 0x5872940,7, 0x5873000,2, 0x5873800,18, 0x5873880,18, 0x5873c00,4, 0x5873c20,7, 0x5873d00,4, 0x5873d80,20, 0x5873e00,1, 0x5874000,21, 0x5874058,3, 0x5874100,1, 0x5874124,1, 0x587412c,5, 0x5874144,1, 0x587414c,6, 0x5874184,6, 0x58741a4,6, 0x58741c4,1, 0x58741cc,1, 0x5874400,9, 0x5874440,9, 0x5874480,15, 0x58744c0,15, 0x5874500,15, 0x5874540,15, 0x5874580,15, 0x58745c0,15, 0x5874600,15, 0x5874640,15, 0x5874680,59, 0x5874800,1, 0x5874808,16, 0x5874850,1, 0x5874858,7, 0x5878000,3, 0x5878010,1, 0x5878018,3, 0x587a000,4, 0x587a080,19, 0x587a100,12, 0x587a200,4, 0x587a280,19, 0x587a300,12, 0x587a400,2, 0x587a600,124, 0x587a800,4, 0x587a880,18, 0x587a900,4, 0x587a980,23, 0x587aa00,10, 0x587aa2c,2, 0x587aa40,2, 0x587aa4c,3, 0x587aa60,2, 0x587aa6c,3, 0x587aa80,2, 0x587aa8c,2, 0x587aaa0,2, 0x587aaac,2, 0x587aac0,2, 0x587aacc,2, 0x587ab00,4, 0x587ab40,15, 0x587ab80,3, 0x587ab90,7, 0x587abb0,3, 0x587abc0,3, 0x587abd0,3, 0x587abe0,1, 0x587ac00,17, 0x587ae00,15, 0x587ae40,4, 0x587ae60,17, 0x587aec0,6, 0x587aee0,4, 0x587aef4,11, 0x587af24,28, 0x587b000,1, 0x587b080,1, 0x587b0a0,5, 0x587b0c0,5, 0x587b0e0,5, 0x587b100,1, 0x587b120,5, 0x587b140,5, 0x587b160,5, 0x587b180,24, 0x587b200,5, 0x587c000,20, 0x5880000,18, 0x5880050,3, 0x5880060,3, 0x5880070,14, 0x58800c0,5, 0x5880400,13, 0x5880440,2, 0x588044c,3, 0x5880460,2, 0x5880480,13, 0x58804c0,2, 0x58804cc,3, 0x58804e0,2, 0x5880500,1, 0x5880508,16, 0x5880560,2, 0x588056c,3, 0x5880600,4, 0x5880680,19, 0x5880800,24, 0x5880864,2, 0x5880870,4, 0x5880a00,27, 0x5880a80,4, 0x5880ac0,25, 0x5880b40,6, 0x5880b60,4, 0x5880b74,11, 0x5880ba4,8, 0x5880c00,3, 0x5880c10,3, 0x5880c20,1, 0x5880c40,11, 0x5880c80,23, 0x5880ce0,15, 0x5880d20,15, 0x5880d60,2, 0x5880d6c,2, 0x5880d80,1, 0x5881000,18, 0x5881050,3, 0x5881060,3, 0x5881070,14, 0x58810c0,5, 0x5881400,13, 0x5881440,2, 0x588144c,3, 0x5881460,2, 0x5881480,13, 0x58814c0,2, 0x58814cc,3, 0x58814e0,2, 0x5881500,1, 0x5881508,16, 0x5881560,2, 0x588156c,3, 0x5881600,4, 0x5881680,19, 0x5881800,24, 0x5881864,2, 0x5881870,4, 0x5881a00,27, 0x5881a80,4, 0x5881ac0,25, 0x5881b40,6, 0x5881b60,4, 0x5881b74,11, 0x5881ba4,8, 0x5881c00,3, 0x5881c10,3, 0x5881c20,1, 0x5881c40,11, 0x5881c80,23, 0x5881ce0,15, 0x5881d20,15, 0x5881d60,2, 0x5881d6c,2, 0x5881d80,1, 0x5882000,20, 0x5882080,7, 0x58820a0,1, 0x58820b0,1, 0x58820b8,2, 0x5884000,14, 0x5900000,534, 0x5901000,2, 0x5901040,9, 0x5901080,7, 0x5902000,534, 0x5903000,12, 0x5903044,6, 0x5903080,8, 0x59030a4,1, 0x59030c0,7, 0x59030e0,7, 0x5903100,7, 0x5903120,7, 0x5903140,8, 0x5903164,6, 0x5903180,12, 0x5904000,534, 0x5905000,2, 0x5905040,9, 0x5905080,7, 0x5906000,534, 0x5907000,12, 0x5907044,6, 0x5907080,8, 0x59070a4,1, 0x59070c0,7, 0x59070e0,7, 0x5907100,7, 0x5907120,7, 0x5907140,8, 0x5907164,6, 0x5907180,12, 0x5908004,5, 0x5908200,27, 0x5908280,4, 0x59082c0,25, 0x5908340,6, 0x5908360,4, 0x5908374,11, 0x59083a4,5, 0x5908400,1, 0x5910000,397, 0x5910800,93, 0x5910980,6, 0x5910a00,41, 0x5910b00,2, 0x5910b20,19, 0x5910c00,25, 0x5910c80,1, 0x5910d00,28, 0x5910d80,1, 0x5911000,397, 0x5911800,93, 0x5911980,6, 0x5911a00,41, 0x5911b00,2, 0x5911b20,19, 0x5911c00,25, 0x5911c80,1, 0x5911d00,28, 0x5911d80,1, 0x5912000,7, 0x5912040,9, 0x5912080,4, 0x59120a0,5, 0x59120c0,2, 0x5914000,3, 0x5914010,6, 0x5914200,7, 0x5914220,6, 0x5914240,7, 0x5914260,6, 0x5914280,2, 0x591428c,2, 0x59142a0,2, 0x59142ac,2, 0x59142c0,7, 0x59142e0,7, 0x5914300,2, 0x591430c,2, 0x5914320,6, 0x5914340,7, 0x5914360,6, 0x5914380,6, 0x59143a0,7, 0x59143c0,6, 0x59143e0,6, 0x5914400,3, 0x5914440,12, 0x5914484,1, 0x59144c0,16, 0x5914800,7, 0x5914820,14, 0x5914880,9, 0x59148a8,12, 0x5914900,7, 0x5914920,14, 0x5914980,9, 0x59149a8,12, 0x5914a00,10, 0x5914a40,2, 0x5914a4c,3, 0x5914c00,5, 0x5914c20,1, 0x5914c28,3, 0x5920000,534, 0x5921000,2, 0x5921040,9, 0x5921080,7, 0x5922000,534, 0x5923000,12, 0x5923044,6, 0x5923080,8, 0x59230a4,1, 0x59230c0,7, 0x59230e0,7, 0x5923100,7, 0x5923120,7, 0x5923140,8, 0x5923164,6, 0x5923180,12, 0x5924000,534, 0x5925000,2, 0x5925040,9, 0x5925080,7, 0x5926000,534, 0x5927000,12, 0x5927044,6, 0x5927080,8, 0x59270a4,1, 0x59270c0,7, 0x59270e0,7, 0x5927100,7, 0x5927120,7, 0x5927140,8, 0x5927164,6, 0x5927180,12, 0x5928004,5, 0x5928200,27, 0x5928280,4, 0x59282c0,25, 0x5928340,6, 0x5928360,4, 0x5928374,11, 0x59283a4,5, 0x5928400,1, 0x5930000,397, 0x5930800,93, 0x5930980,6, 0x5930a00,41, 0x5930b00,2, 0x5930b20,19, 0x5930c00,25, 0x5930c80,1, 0x5930d00,28, 0x5930d80,1, 0x5931000,397, 0x5931800,93, 0x5931980,6, 0x5931a00,41, 0x5931b00,2, 0x5931b20,19, 0x5931c00,25, 0x5931c80,1, 0x5931d00,28, 0x5931d80,1, 0x5932000,7, 0x5932040,9, 0x5932080,4, 0x59320a0,5, 0x59320c0,2, 0x5934000,3, 0x5934010,6, 0x5934200,7, 0x5934220,6, 0x5934240,7, 0x5934260,6, 0x5934280,2, 0x593428c,2, 0x59342a0,2, 0x59342ac,2, 0x59342c0,7, 0x59342e0,7, 0x5934300,2, 0x593430c,2, 0x5934320,6, 0x5934340,7, 0x5934360,6, 0x5934380,6, 0x59343a0,7, 0x59343c0,6, 0x59343e0,6, 0x5934400,3, 0x5934440,12, 0x5934484,1, 0x59344c0,16, 0x5934800,7, 0x5934820,14, 0x5934880,9, 0x59348a8,12, 0x5934900,7, 0x5934920,14, 0x5934980,9, 0x59349a8,12, 0x5934a00,10, 0x5934a40,2, 0x5934a4c,3, 0x5934c00,5, 0x5934c20,1, 0x5934c28,3, 0x5940000,37, 0x5940100,3, 0x5940110,15, 0x5940200,37, 0x5940300,3, 0x5940310,15, 0x5940400,5, 0x5940420,5, 0x5940440,18, 0x5940800,3, 0x5940810,2, 0x5940820,3, 0x5940830,2, 0x5940840,1, 0x5941000,12, 0x5941040,12, 0x5941080,2, 0x5941100,19, 0x5941180,19, 0x5941200,26, 0x5941400,20, 0x5941480,20, 0x5941500,8, 0x5941540,4, 0x5941580,15, 0x59415c0,15, 0x5941600,9, 0x5941630,5, 0x5942000,37, 0x5942100,3, 0x5942110,15, 0x5942200,37, 0x5942300,3, 0x5942310,15, 0x5942400,5, 0x5942420,5, 0x5942440,18, 0x5942800,3, 0x5942810,2, 0x5942820,3, 0x5942830,2, 0x5942840,1, 0x5943000,12, 0x5943040,12, 0x5943080,2, 0x5943100,19, 0x5943180,19, 0x5943200,26, 0x5943400,20, 0x5943480,20, 0x5943500,8, 0x5943540,4, 0x5943580,15, 0x59435c0,15, 0x5943600,9, 0x5943630,5, 0x5944000,6, 0x5944020,1, 0x594402c,3, 0x5944040,11, 0x5944070,3, 0x5944080,2, 0x5948000,49, 0x5948100,12, 0x5948140,4, 0x5948184,1, 0x5948198,2, 0x59481a4,1, 0x59481b8,7, 0x59481e0,4, 0x5948200,20, 0x5948280,3, 0x5948290,9, 0x59482c0,6, 0x59482e0,1, 0x59482e8,7, 0x5948400,49, 0x5948500,12, 0x5948540,4, 0x5948584,1, 0x5948598,2, 0x59485a4,1, 0x59485b8,7, 0x59485e0,4, 0x5948600,20, 0x5948680,3, 0x5948690,9, 0x59486c0,6, 0x59486e0,1, 0x59486e8,7, 0x5948800,49, 0x5948900,12, 0x5948940,4, 0x5948984,1, 0x5948998,2, 0x59489a4,1, 0x59489b8,7, 0x59489e0,4, 0x5948a00,20, 0x5948a80,3, 0x5948a90,9, 0x5948ac0,6, 0x5948ae0,1, 0x5948ae8,7, 0x5948c00,49, 0x5948d00,12, 0x5948d40,4, 0x5948d84,1, 0x5948d98,2, 0x5948da4,1, 0x5948db8,7, 0x5948de0,4, 0x5948e00,20, 0x5948e80,3, 0x5948e90,9, 0x5948ec0,6, 0x5948ee0,1, 0x5948ee8,7, 0x5949000,49, 0x5949100,12, 0x5949140,4, 0x5949184,1, 0x5949198,2, 0x59491a4,1, 0x59491b8,7, 0x59491e0,4, 0x5949200,20, 0x5949280,3, 0x5949290,9, 0x59492c0,6, 0x59492e0,1, 0x59492e8,7, 0x5949400,49, 0x5949500,12, 0x5949540,4, 0x5949584,1, 0x5949598,2, 0x59495a4,1, 0x59495b8,7, 0x59495e0,4, 0x5949600,20, 0x5949680,3, 0x5949690,9, 0x59496c0,6, 0x59496e0,1, 0x59496e8,7, 0x5949800,49, 0x5949900,12, 0x5949940,4, 0x5949984,1, 0x5949998,2, 0x59499a4,1, 0x59499b8,7, 0x59499e0,4, 0x5949a00,20, 0x5949a80,3, 0x5949a90,9, 0x5949ac0,6, 0x5949ae0,1, 0x5949ae8,7, 0x594a000,20, 0x594a080,2, 0x594a100,20, 0x594a180,2, 0x594a200,4, 0x594a400,20, 0x594a480,2, 0x594a500,20, 0x594a580,2, 0x594a600,4, 0x594a800,3, 0x594a840,12, 0x594a880,12, 0x594a8c0,12, 0x594a900,12, 0x594a940,12, 0x594a980,12, 0x594a9c0,12, 0x594aa00,12, 0x594ac00,12, 0x594ac40,7, 0x594ac60,10, 0x594b004,1, 0x594b018,40, 0x594b100,7, 0x594b120,7, 0x594b140,2, 0x594b14c,2, 0x594b160,2, 0x594b16c,2, 0x594b180,18, 0x594b200,2, 0x594b220,10, 0x594b260,20, 0x594b2c0,7, 0x594b300,15, 0x594b340,9, 0x594b380,6, 0x594b3a0,4, 0x594b400,4, 0x594c000,106, 0x594c200,2, 0x594c240,9, 0x594c280,7, 0x594c400,106, 0x594c604,6, 0x594c700,15, 0x594c740,9, 0x594c780,6, 0x594c7a0,6, 0x594c800,8, 0x594c824,1, 0x594c830,15, 0x594c870,3, 0x5960000,518, 0x5960900,45, 0x5960a00,45, 0x5960b00,45, 0x5960c00,45, 0x5960d00,45, 0x5960e00,45, 0x5960f00,45, 0x5961000,45, 0x5961800,9, 0x5961840,364, 0x5961e00,19, 0x5962000,9, 0x5962040,364, 0x5962600,19, 0x5962800,6, 0x5962820,3, 0x5962840,7, 0x5962880,6, 0x59628a0,3, 0x59628c0,7, 0x5962900,1, 0x5962908,3, 0x5962918,8, 0x5962940,7, 0x5963000,2, 0x5963800,18, 0x5963880,18, 0x5963c00,4, 0x5963c20,7, 0x5963d00,4, 0x5963d80,20, 0x5963e00,1, 0x5964000,21, 0x5964058,3, 0x5964100,1, 0x5964124,1, 0x596412c,5, 0x5964144,1, 0x596414c,6, 0x5964184,6, 0x59641a4,6, 0x59641c4,1, 0x59641cc,1, 0x5964400,9, 0x5964440,9, 0x5964480,15, 0x59644c0,15, 0x5964500,15, 0x5964540,15, 0x5964580,15, 0x59645c0,15, 0x5964600,15, 0x5964640,15, 0x5964680,59, 0x5964800,1, 0x5964808,16, 0x5964850,1, 0x5964858,7, 0x5968000,3, 0x5968010,1, 0x5968018,3, 0x596a000,4, 0x596a080,19, 0x596a100,12, 0x596a200,4, 0x596a280,19, 0x596a300,12, 0x596a400,2, 0x596a600,124, 0x596a800,4, 0x596a880,18, 0x596a900,4, 0x596a980,23, 0x596aa00,10, 0x596aa2c,2, 0x596aa40,2, 0x596aa4c,3, 0x596aa60,2, 0x596aa6c,3, 0x596aa80,2, 0x596aa8c,2, 0x596aaa0,2, 0x596aaac,2, 0x596aac0,2, 0x596aacc,2, 0x596ab00,4, 0x596ab40,15, 0x596ab80,3, 0x596ab90,7, 0x596abb0,3, 0x596abc0,3, 0x596abd0,3, 0x596abe0,1, 0x596ac00,17, 0x596ae00,15, 0x596ae40,4, 0x596ae60,17, 0x596aec0,6, 0x596aee0,4, 0x596aef4,11, 0x596af24,28, 0x596b000,1, 0x596b080,1, 0x596b0a0,5, 0x596b0c0,5, 0x596b0e0,5, 0x596b100,1, 0x596b120,5, 0x596b140,5, 0x596b160,5, 0x596b180,24, 0x596b200,5, 0x596c000,20, 0x5970000,518, 0x5970900,45, 0x5970a00,45, 0x5970b00,45, 0x5970c00,45, 0x5970d00,45, 0x5970e00,45, 0x5970f00,45, 0x5971000,45, 0x5971800,9, 0x5971840,364, 0x5971e00,19, 0x5972000,9, 0x5972040,364, 0x5972600,19, 0x5972800,6, 0x5972820,3, 0x5972840,7, 0x5972880,6, 0x59728a0,3, 0x59728c0,7, 0x5972900,1, 0x5972908,3, 0x5972918,8, 0x5972940,7, 0x5973000,2, 0x5973800,18, 0x5973880,18, 0x5973c00,4, 0x5973c20,7, 0x5973d00,4, 0x5973d80,20, 0x5973e00,1, 0x5974000,21, 0x5974058,3, 0x5974100,1, 0x5974124,1, 0x597412c,5, 0x5974144,1, 0x597414c,6, 0x5974184,6, 0x59741a4,6, 0x59741c4,1, 0x59741cc,1, 0x5974400,9, 0x5974440,9, 0x5974480,15, 0x59744c0,15, 0x5974500,15, 0x5974540,15, 0x5974580,15, 0x59745c0,15, 0x5974600,15, 0x5974640,15, 0x5974680,59, 0x5974800,1, 0x5974808,16, 0x5974850,1, 0x5974858,7, 0x5978000,3, 0x5978010,1, 0x5978018,3, 0x597a000,4, 0x597a080,19, 0x597a100,12, 0x597a200,4, 0x597a280,19, 0x597a300,12, 0x597a400,2, 0x597a600,124, 0x597a800,4, 0x597a880,18, 0x597a900,4, 0x597a980,23, 0x597aa00,10, 0x597aa2c,2, 0x597aa40,2, 0x597aa4c,3, 0x597aa60,2, 0x597aa6c,3, 0x597aa80,2, 0x597aa8c,2, 0x597aaa0,2, 0x597aaac,2, 0x597aac0,2, 0x597aacc,2, 0x597ab00,4, 0x597ab40,15, 0x597ab80,3, 0x597ab90,7, 0x597abb0,3, 0x597abc0,3, 0x597abd0,3, 0x597abe0,1, 0x597ac00,17, 0x597ae00,15, 0x597ae40,4, 0x597ae60,17, 0x597aec0,6, 0x597aee0,4, 0x597aef4,11, 0x597af24,28, 0x597b000,1, 0x597b080,1, 0x597b0a0,5, 0x597b0c0,5, 0x597b0e0,5, 0x597b100,1, 0x597b120,5, 0x597b140,5, 0x597b160,5, 0x597b180,24, 0x597b200,5, 0x597c000,20, 0x5980000,18, 0x5980050,3, 0x5980060,3, 0x5980070,14, 0x59800c0,5, 0x5980400,13, 0x5980440,2, 0x598044c,3, 0x5980460,2, 0x5980480,13, 0x59804c0,2, 0x59804cc,3, 0x59804e0,2, 0x5980500,1, 0x5980508,16, 0x5980560,2, 0x598056c,3, 0x5980600,4, 0x5980680,19, 0x5980800,24, 0x5980864,2, 0x5980870,4, 0x5980a00,27, 0x5980a80,4, 0x5980ac0,25, 0x5980b40,6, 0x5980b60,4, 0x5980b74,11, 0x5980ba4,8, 0x5980c00,3, 0x5980c10,3, 0x5980c20,1, 0x5980c40,11, 0x5980c80,23, 0x5980ce0,15, 0x5980d20,15, 0x5980d60,2, 0x5980d6c,2, 0x5980d80,1, 0x5981000,18, 0x5981050,3, 0x5981060,3, 0x5981070,14, 0x59810c0,5, 0x5981400,13, 0x5981440,2, 0x598144c,3, 0x5981460,2, 0x5981480,13, 0x59814c0,2, 0x59814cc,3, 0x59814e0,2, 0x5981500,1, 0x5981508,16, 0x5981560,2, 0x598156c,3, 0x5981600,4, 0x5981680,19, 0x5981800,24, 0x5981864,2, 0x5981870,4, 0x5981a00,27, 0x5981a80,4, 0x5981ac0,25, 0x5981b40,6, 0x5981b60,4, 0x5981b74,11, 0x5981ba4,8, 0x5981c00,3, 0x5981c10,3, 0x5981c20,1, 0x5981c40,11, 0x5981c80,23, 0x5981ce0,15, 0x5981d20,15, 0x5981d60,2, 0x5981d6c,2, 0x5981d80,1, 0x5982000,20, 0x5982080,7, 0x59820a0,1, 0x59820b0,1, 0x59820b8,2, 0x5984000,14, 0x5a00000,534, 0x5a01000,2, 0x5a01040,9, 0x5a01080,7, 0x5a02000,534, 0x5a03000,12, 0x5a03044,6, 0x5a03080,8, 0x5a030a4,1, 0x5a030c0,7, 0x5a030e0,7, 0x5a03100,7, 0x5a03120,7, 0x5a03140,8, 0x5a03164,6, 0x5a03180,12, 0x5a04000,534, 0x5a05000,2, 0x5a05040,9, 0x5a05080,7, 0x5a06000,534, 0x5a07000,12, 0x5a07044,6, 0x5a07080,8, 0x5a070a4,1, 0x5a070c0,7, 0x5a070e0,7, 0x5a07100,7, 0x5a07120,7, 0x5a07140,8, 0x5a07164,6, 0x5a07180,12, 0x5a08004,5, 0x5a08200,27, 0x5a08280,4, 0x5a082c0,25, 0x5a08340,6, 0x5a08360,4, 0x5a08374,11, 0x5a083a4,5, 0x5a08400,1, 0x5a10000,397, 0x5a10800,93, 0x5a10980,6, 0x5a10a00,41, 0x5a10b00,2, 0x5a10b20,19, 0x5a10c00,25, 0x5a10c80,1, 0x5a10d00,28, 0x5a10d80,1, 0x5a11000,397, 0x5a11800,93, 0x5a11980,6, 0x5a11a00,41, 0x5a11b00,2, 0x5a11b20,19, 0x5a11c00,25, 0x5a11c80,1, 0x5a11d00,28, 0x5a11d80,1, 0x5a12000,7, 0x5a12040,9, 0x5a12080,4, 0x5a120a0,5, 0x5a120c0,2, 0x5a14000,3, 0x5a14010,6, 0x5a14200,7, 0x5a14220,6, 0x5a14240,7, 0x5a14260,6, 0x5a14280,2, 0x5a1428c,2, 0x5a142a0,2, 0x5a142ac,2, 0x5a142c0,7, 0x5a142e0,7, 0x5a14300,2, 0x5a1430c,2, 0x5a14320,6, 0x5a14340,7, 0x5a14360,6, 0x5a14380,6, 0x5a143a0,7, 0x5a143c0,6, 0x5a143e0,6, 0x5a14400,3, 0x5a14440,12, 0x5a14484,1, 0x5a144c0,16, 0x5a14800,7, 0x5a14820,14, 0x5a14880,9, 0x5a148a8,12, 0x5a14900,7, 0x5a14920,14, 0x5a14980,9, 0x5a149a8,12, 0x5a14a00,10, 0x5a14a40,2, 0x5a14a4c,3, 0x5a14c00,5, 0x5a14c20,1, 0x5a14c28,3, 0x5a20000,534, 0x5a21000,2, 0x5a21040,9, 0x5a21080,7, 0x5a22000,534, 0x5a23000,12, 0x5a23044,6, 0x5a23080,8, 0x5a230a4,1, 0x5a230c0,7, 0x5a230e0,7, 0x5a23100,7, 0x5a23120,7, 0x5a23140,8, 0x5a23164,6, 0x5a23180,12, 0x5a24000,534, 0x5a25000,2, 0x5a25040,9, 0x5a25080,7, 0x5a26000,534, 0x5a27000,12, 0x5a27044,6, 0x5a27080,8, 0x5a270a4,1, 0x5a270c0,7, 0x5a270e0,7, 0x5a27100,7, 0x5a27120,7, 0x5a27140,8, 0x5a27164,6, 0x5a27180,12, 0x5a28004,5, 0x5a28200,27, 0x5a28280,4, 0x5a282c0,25, 0x5a28340,6, 0x5a28360,4, 0x5a28374,11, 0x5a283a4,5, 0x5a28400,1, 0x5a30000,397, 0x5a30800,93, 0x5a30980,6, 0x5a30a00,41, 0x5a30b00,2, 0x5a30b20,19, 0x5a30c00,25, 0x5a30c80,1, 0x5a30d00,28, 0x5a30d80,1, 0x5a31000,397, 0x5a31800,93, 0x5a31980,6, 0x5a31a00,41, 0x5a31b00,2, 0x5a31b20,19, 0x5a31c00,25, 0x5a31c80,1, 0x5a31d00,28, 0x5a31d80,1, 0x5a32000,7, 0x5a32040,9, 0x5a32080,4, 0x5a320a0,5, 0x5a320c0,2, 0x5a34000,3, 0x5a34010,6, 0x5a34200,7, 0x5a34220,6, 0x5a34240,7, 0x5a34260,6, 0x5a34280,2, 0x5a3428c,2, 0x5a342a0,2, 0x5a342ac,2, 0x5a342c0,7, 0x5a342e0,7, 0x5a34300,2, 0x5a3430c,2, 0x5a34320,6, 0x5a34340,7, 0x5a34360,6, 0x5a34380,6, 0x5a343a0,7, 0x5a343c0,6, 0x5a343e0,6, 0x5a34400,3, 0x5a34440,12, 0x5a34484,1, 0x5a344c0,16, 0x5a34800,7, 0x5a34820,14, 0x5a34880,9, 0x5a348a8,12, 0x5a34900,7, 0x5a34920,14, 0x5a34980,9, 0x5a349a8,12, 0x5a34a00,10, 0x5a34a40,2, 0x5a34a4c,3, 0x5a34c00,5, 0x5a34c20,1, 0x5a34c28,3, 0x5a40000,37, 0x5a40100,3, 0x5a40110,15, 0x5a40200,37, 0x5a40300,3, 0x5a40310,15, 0x5a40400,5, 0x5a40420,5, 0x5a40440,18, 0x5a40800,3, 0x5a40810,2, 0x5a40820,3, 0x5a40830,2, 0x5a40840,1, 0x5a41000,12, 0x5a41040,12, 0x5a41080,2, 0x5a41100,19, 0x5a41180,19, 0x5a41200,26, 0x5a41400,20, 0x5a41480,20, 0x5a41500,8, 0x5a41540,4, 0x5a41580,15, 0x5a415c0,15, 0x5a41600,9, 0x5a41630,5, 0x5a42000,37, 0x5a42100,3, 0x5a42110,15, 0x5a42200,37, 0x5a42300,3, 0x5a42310,15, 0x5a42400,5, 0x5a42420,5, 0x5a42440,18, 0x5a42800,3, 0x5a42810,2, 0x5a42820,3, 0x5a42830,2, 0x5a42840,1, 0x5a43000,12, 0x5a43040,12, 0x5a43080,2, 0x5a43100,19, 0x5a43180,19, 0x5a43200,26, 0x5a43400,20, 0x5a43480,20, 0x5a43500,8, 0x5a43540,4, 0x5a43580,15, 0x5a435c0,15, 0x5a43600,9, 0x5a43630,5, 0x5a44000,6, 0x5a44020,1, 0x5a4402c,3, 0x5a44040,11, 0x5a44070,3, 0x5a44080,2, 0x5a48000,49, 0x5a48100,12, 0x5a48140,4, 0x5a48184,1, 0x5a48198,2, 0x5a481a4,1, 0x5a481b8,7, 0x5a481e0,4, 0x5a48200,20, 0x5a48280,3, 0x5a48290,9, 0x5a482c0,6, 0x5a482e0,1, 0x5a482e8,7, 0x5a48400,49, 0x5a48500,12, 0x5a48540,4, 0x5a48584,1, 0x5a48598,2, 0x5a485a4,1, 0x5a485b8,7, 0x5a485e0,4, 0x5a48600,20, 0x5a48680,3, 0x5a48690,9, 0x5a486c0,6, 0x5a486e0,1, 0x5a486e8,7, 0x5a48800,49, 0x5a48900,12, 0x5a48940,4, 0x5a48984,1, 0x5a48998,2, 0x5a489a4,1, 0x5a489b8,7, 0x5a489e0,4, 0x5a48a00,20, 0x5a48a80,3, 0x5a48a90,9, 0x5a48ac0,6, 0x5a48ae0,1, 0x5a48ae8,7, 0x5a48c00,49, 0x5a48d00,12, 0x5a48d40,4, 0x5a48d84,1, 0x5a48d98,2, 0x5a48da4,1, 0x5a48db8,7, 0x5a48de0,4, 0x5a48e00,20, 0x5a48e80,3, 0x5a48e90,9, 0x5a48ec0,6, 0x5a48ee0,1, 0x5a48ee8,7, 0x5a49000,49, 0x5a49100,12, 0x5a49140,4, 0x5a49184,1, 0x5a49198,2, 0x5a491a4,1, 0x5a491b8,7, 0x5a491e0,4, 0x5a49200,20, 0x5a49280,3, 0x5a49290,9, 0x5a492c0,6, 0x5a492e0,1, 0x5a492e8,7, 0x5a49400,49, 0x5a49500,12, 0x5a49540,4, 0x5a49584,1, 0x5a49598,2, 0x5a495a4,1, 0x5a495b8,7, 0x5a495e0,4, 0x5a49600,20, 0x5a49680,3, 0x5a49690,9, 0x5a496c0,6, 0x5a496e0,1, 0x5a496e8,7, 0x5a49800,49, 0x5a49900,12, 0x5a49940,4, 0x5a49984,1, 0x5a49998,2, 0x5a499a4,1, 0x5a499b8,7, 0x5a499e0,4, 0x5a49a00,20, 0x5a49a80,3, 0x5a49a90,9, 0x5a49ac0,6, 0x5a49ae0,1, 0x5a49ae8,7, 0x5a4a000,20, 0x5a4a080,2, 0x5a4a100,20, 0x5a4a180,2, 0x5a4a200,4, 0x5a4a400,20, 0x5a4a480,2, 0x5a4a500,20, 0x5a4a580,2, 0x5a4a600,4, 0x5a4a800,3, 0x5a4a840,12, 0x5a4a880,12, 0x5a4a8c0,12, 0x5a4a900,12, 0x5a4a940,12, 0x5a4a980,12, 0x5a4a9c0,12, 0x5a4aa00,12, 0x5a4ac00,12, 0x5a4ac40,7, 0x5a4ac60,10, 0x5a4b004,1, 0x5a4b018,40, 0x5a4b100,7, 0x5a4b120,7, 0x5a4b140,2, 0x5a4b14c,2, 0x5a4b160,2, 0x5a4b16c,2, 0x5a4b180,18, 0x5a4b200,2, 0x5a4b220,10, 0x5a4b260,20, 0x5a4b2c0,7, 0x5a4b300,15, 0x5a4b340,9, 0x5a4b380,6, 0x5a4b3a0,4, 0x5a4b400,4, 0x5a4c000,106, 0x5a4c200,2, 0x5a4c240,9, 0x5a4c280,7, 0x5a4c400,106, 0x5a4c604,6, 0x5a4c700,15, 0x5a4c740,9, 0x5a4c780,6, 0x5a4c7a0,6, 0x5a4c800,8, 0x5a4c824,1, 0x5a4c830,15, 0x5a4c870,3, 0x5a60000,518, 0x5a60900,45, 0x5a60a00,45, 0x5a60b00,45, 0x5a60c00,45, 0x5a60d00,45, 0x5a60e00,45, 0x5a60f00,45, 0x5a61000,45, 0x5a61800,9, 0x5a61840,364, 0x5a61e00,19, 0x5a62000,9, 0x5a62040,364, 0x5a62600,19, 0x5a62800,6, 0x5a62820,3, 0x5a62840,7, 0x5a62880,6, 0x5a628a0,3, 0x5a628c0,7, 0x5a62900,1, 0x5a62908,3, 0x5a62918,8, 0x5a62940,7, 0x5a63000,2, 0x5a63800,18, 0x5a63880,18, 0x5a63c00,4, 0x5a63c20,7, 0x5a63d00,4, 0x5a63d80,20, 0x5a63e00,1, 0x5a64000,21, 0x5a64058,3, 0x5a64100,1, 0x5a64124,1, 0x5a6412c,5, 0x5a64144,1, 0x5a6414c,6, 0x5a64184,6, 0x5a641a4,6, 0x5a641c4,1, 0x5a641cc,1, 0x5a64400,9, 0x5a64440,9, 0x5a64480,15, 0x5a644c0,15, 0x5a64500,15, 0x5a64540,15, 0x5a64580,15, 0x5a645c0,15, 0x5a64600,15, 0x5a64640,15, 0x5a64680,59, 0x5a64800,1, 0x5a64808,16, 0x5a64850,1, 0x5a64858,7, 0x5a68000,3, 0x5a68010,1, 0x5a68018,3, 0x5a6a000,4, 0x5a6a080,19, 0x5a6a100,12, 0x5a6a200,4, 0x5a6a280,19, 0x5a6a300,12, 0x5a6a400,2, 0x5a6a600,124, 0x5a6a800,4, 0x5a6a880,18, 0x5a6a900,4, 0x5a6a980,23, 0x5a6aa00,10, 0x5a6aa2c,2, 0x5a6aa40,2, 0x5a6aa4c,3, 0x5a6aa60,2, 0x5a6aa6c,3, 0x5a6aa80,2, 0x5a6aa8c,2, 0x5a6aaa0,2, 0x5a6aaac,2, 0x5a6aac0,2, 0x5a6aacc,2, 0x5a6ab00,4, 0x5a6ab40,15, 0x5a6ab80,3, 0x5a6ab90,7, 0x5a6abb0,3, 0x5a6abc0,3, 0x5a6abd0,3, 0x5a6abe0,1, 0x5a6ac00,17, 0x5a6ae00,15, 0x5a6ae40,4, 0x5a6ae60,17, 0x5a6aec0,6, 0x5a6aee0,4, 0x5a6aef4,11, 0x5a6af24,28, 0x5a6b000,1, 0x5a6b080,1, 0x5a6b0a0,5, 0x5a6b0c0,5, 0x5a6b0e0,5, 0x5a6b100,1, 0x5a6b120,5, 0x5a6b140,5, 0x5a6b160,5, 0x5a6b180,24, 0x5a6b200,5, 0x5a6c000,20, 0x5a70000,518, 0x5a70900,45, 0x5a70a00,45, 0x5a70b00,45, 0x5a70c00,45, 0x5a70d00,45, 0x5a70e00,45, 0x5a70f00,45, 0x5a71000,45, 0x5a71800,9, 0x5a71840,364, 0x5a71e00,19, 0x5a72000,9, 0x5a72040,364, 0x5a72600,19, 0x5a72800,6, 0x5a72820,3, 0x5a72840,7, 0x5a72880,6, 0x5a728a0,3, 0x5a728c0,7, 0x5a72900,1, 0x5a72908,3, 0x5a72918,8, 0x5a72940,7, 0x5a73000,2, 0x5a73800,18, 0x5a73880,18, 0x5a73c00,4, 0x5a73c20,7, 0x5a73d00,4, 0x5a73d80,20, 0x5a73e00,1, 0x5a74000,21, 0x5a74058,3, 0x5a74100,1, 0x5a74124,1, 0x5a7412c,5, 0x5a74144,1, 0x5a7414c,6, 0x5a74184,6, 0x5a741a4,6, 0x5a741c4,1, 0x5a741cc,1, 0x5a74400,9, 0x5a74440,9, 0x5a74480,15, 0x5a744c0,15, 0x5a74500,15, 0x5a74540,15, 0x5a74580,15, 0x5a745c0,15, 0x5a74600,15, 0x5a74640,15, 0x5a74680,59, 0x5a74800,1, 0x5a74808,16, 0x5a74850,1, 0x5a74858,7, 0x5a78000,3, 0x5a78010,1, 0x5a78018,3, 0x5a7a000,4, 0x5a7a080,19, 0x5a7a100,12, 0x5a7a200,4, 0x5a7a280,19, 0x5a7a300,12, 0x5a7a400,2, 0x5a7a600,124, 0x5a7a800,4, 0x5a7a880,18, 0x5a7a900,4, 0x5a7a980,23, 0x5a7aa00,10, 0x5a7aa2c,2, 0x5a7aa40,2, 0x5a7aa4c,3, 0x5a7aa60,2, 0x5a7aa6c,3, 0x5a7aa80,2, 0x5a7aa8c,2, 0x5a7aaa0,2, 0x5a7aaac,2, 0x5a7aac0,2, 0x5a7aacc,2, 0x5a7ab00,4, 0x5a7ab40,15, 0x5a7ab80,3, 0x5a7ab90,7, 0x5a7abb0,3, 0x5a7abc0,3, 0x5a7abd0,3, 0x5a7abe0,1, 0x5a7ac00,17, 0x5a7ae00,15, 0x5a7ae40,4, 0x5a7ae60,17, 0x5a7aec0,6, 0x5a7aee0,4, 0x5a7aef4,11, 0x5a7af24,28, 0x5a7b000,1, 0x5a7b080,1, 0x5a7b0a0,5, 0x5a7b0c0,5, 0x5a7b0e0,5, 0x5a7b100,1, 0x5a7b120,5, 0x5a7b140,5, 0x5a7b160,5, 0x5a7b180,24, 0x5a7b200,5, 0x5a7c000,20, 0x5a80000,18, 0x5a80050,3, 0x5a80060,3, 0x5a80070,14, 0x5a800c0,5, 0x5a80400,13, 0x5a80440,2, 0x5a8044c,3, 0x5a80460,2, 0x5a80480,13, 0x5a804c0,2, 0x5a804cc,3, 0x5a804e0,2, 0x5a80500,1, 0x5a80508,16, 0x5a80560,2, 0x5a8056c,3, 0x5a80600,4, 0x5a80680,19, 0x5a80800,24, 0x5a80864,2, 0x5a80870,4, 0x5a80a00,27, 0x5a80a80,4, 0x5a80ac0,25, 0x5a80b40,6, 0x5a80b60,4, 0x5a80b74,11, 0x5a80ba4,8, 0x5a80c00,3, 0x5a80c10,3, 0x5a80c20,1, 0x5a80c40,11, 0x5a80c80,23, 0x5a80ce0,15, 0x5a80d20,15, 0x5a80d60,2, 0x5a80d6c,2, 0x5a80d80,1, 0x5a81000,18, 0x5a81050,3, 0x5a81060,3, 0x5a81070,14, 0x5a810c0,5, 0x5a81400,13, 0x5a81440,2, 0x5a8144c,3, 0x5a81460,2, 0x5a81480,13, 0x5a814c0,2, 0x5a814cc,3, 0x5a814e0,2, 0x5a81500,1, 0x5a81508,16, 0x5a81560,2, 0x5a8156c,3, 0x5a81600,4, 0x5a81680,19, 0x5a81800,24, 0x5a81864,2, 0x5a81870,4, 0x5a81a00,27, 0x5a81a80,4, 0x5a81ac0,25, 0x5a81b40,6, 0x5a81b60,4, 0x5a81b74,11, 0x5a81ba4,8, 0x5a81c00,3, 0x5a81c10,3, 0x5a81c20,1, 0x5a81c40,11, 0x5a81c80,23, 0x5a81ce0,15, 0x5a81d20,15, 0x5a81d60,2, 0x5a81d6c,2, 0x5a81d80,1, 0x5a82000,20, 0x5a82080,7, 0x5a820a0,1, 0x5a820b0,1, 0x5a820b8,2, 0x5a84000,14, 0x5b00000,534, 0x5b01000,2, 0x5b01040,9, 0x5b01080,7, 0x5b02000,534, 0x5b03000,12, 0x5b03044,6, 0x5b03080,8, 0x5b030a4,1, 0x5b030c0,7, 0x5b030e0,7, 0x5b03100,7, 0x5b03120,7, 0x5b03140,8, 0x5b03164,6, 0x5b03180,12, 0x5b04000,534, 0x5b05000,2, 0x5b05040,9, 0x5b05080,7, 0x5b06000,534, 0x5b07000,12, 0x5b07044,6, 0x5b07080,8, 0x5b070a4,1, 0x5b070c0,7, 0x5b070e0,7, 0x5b07100,7, 0x5b07120,7, 0x5b07140,8, 0x5b07164,6, 0x5b07180,12, 0x5b08004,5, 0x5b08200,27, 0x5b08280,4, 0x5b082c0,25, 0x5b08340,6, 0x5b08360,4, 0x5b08374,11, 0x5b083a4,5, 0x5b08400,1, 0x5b10000,397, 0x5b10800,93, 0x5b10980,6, 0x5b10a00,41, 0x5b10b00,2, 0x5b10b20,19, 0x5b10c00,25, 0x5b10c80,1, 0x5b10d00,28, 0x5b10d80,1, 0x5b11000,397, 0x5b11800,93, 0x5b11980,6, 0x5b11a00,41, 0x5b11b00,2, 0x5b11b20,19, 0x5b11c00,25, 0x5b11c80,1, 0x5b11d00,28, 0x5b11d80,1, 0x5b12000,7, 0x5b12040,9, 0x5b12080,4, 0x5b120a0,5, 0x5b120c0,2, 0x5b14000,3, 0x5b14010,6, 0x5b14200,7, 0x5b14220,6, 0x5b14240,7, 0x5b14260,6, 0x5b14280,2, 0x5b1428c,2, 0x5b142a0,2, 0x5b142ac,2, 0x5b142c0,7, 0x5b142e0,7, 0x5b14300,2, 0x5b1430c,2, 0x5b14320,6, 0x5b14340,7, 0x5b14360,6, 0x5b14380,6, 0x5b143a0,7, 0x5b143c0,6, 0x5b143e0,6, 0x5b14400,3, 0x5b14440,12, 0x5b14484,1, 0x5b144c0,16, 0x5b14800,7, 0x5b14820,14, 0x5b14880,9, 0x5b148a8,12, 0x5b14900,7, 0x5b14920,14, 0x5b14980,9, 0x5b149a8,12, 0x5b14a00,10, 0x5b14a40,2, 0x5b14a4c,3, 0x5b14c00,5, 0x5b14c20,1, 0x5b14c28,3, 0x5b40000,1, 0x5b41000,1020, 0x5b42000,194, 0x5b43000,1020, 0x5b44000,1020, 0x5b45000,194, 0x5b46000,3, 0x5b46010,13, 0x5b46080,16, 0x5b46100,20, 0x5b46184,1, 0x5b4618c,4, 0x5b46200,3, 0x5b46210,13, 0x5b46280,16, 0x5b46300,20, 0x5b46384,1, 0x5b4638c,4, 0x5b46400,3, 0x5b46410,13, 0x5b46480,16, 0x5b46500,20, 0x5b46584,1, 0x5b4658c,4, 0x5b46600,18, 0x5b46650,2, 0x5b46660,4, 0x5b46800,1, 0x5b46814,1, 0x5b4681c,19, 0x5b46880,1, 0x5b46894,1, 0x5b4689c,19, 0x5b46900,8, 0x5b46a00,7, 0x5b46a40,9, 0x5b46a80,8, 0x5b50000,37, 0x5b50100,3, 0x5b50110,15, 0x5b50200,37, 0x5b50300,3, 0x5b50310,15, 0x5b50400,5, 0x5b50420,5, 0x5b50440,18, 0x5b50800,3, 0x5b50810,2, 0x5b50820,3, 0x5b50830,2, 0x5b50840,3, 0x5b50850,3, 0x5b50860,1, 0x5b51000,6, 0x5b51020,4, 0x5b51040,16, 0x5b52000,22, 0x5b52080,22, 0x5b52100,23, 0x5b52160,7, 0x5b52200,5, 0x5b52220,3, 0x5b52230,3, 0x5b52240,3, 0x5b52260,24, 0x5b52300,5, 0x5b52320,3, 0x5b52330,3, 0x5b52340,3, 0x5b52360,24, 0x5b52400,5, 0x5b52420,3, 0x5b52430,3, 0x5b52440,3, 0x5b52460,24, 0x5b52500,5, 0x5b52520,3, 0x5b52530,3, 0x5b52540,3, 0x5b52560,24, 0x5b52800,4, 0x5b52820,16, 0x5b52880,10, 0x5b528c0,10, 0x5b52900,6, 0x5b52920,6, 0x5b52940,4, 0x5b52980,13, 0x5b529c0,13, 0x5b52a00,9, 0x5b53000,98, 0x5b53204,6, 0x5b53400,98, 0x5b53604,6, 0x5b53800,15, 0x5b53840,9, 0x5b53880,6, 0x5b538a0,6, 0x5b53900,16, 0x5b53944,2, 0x5b53950,4, 0x5b53980,8, 0x5b539a8,2, 0x5b54000,22, 0x5b54400,11, 0x5b54440,11, 0x5b54480,19, 0x5b54500,19, 0x5b54580,4, 0x5b545a0,25, 0x5b54800,13, 0x5b55000,9, 0x5b55040,9, 0x5b55080,5, 0x5b55100,11, 0x5b55130,3, 0x5b55140,5, 0x5b55160,5, 0x5b55180,45, 0x5b55240,13, 0x5b55280,9, 0x5b55400,15, 0x5b55440,9, 0x5b55480,6, 0x5b554a0,6, 0x5b55500,7, 0x5b55520,5, 0x5b58000,30, 0x5b58080,3, 0x5b58090,19, 0x5b58100,30, 0x5b58180,3, 0x5b58190,19, 0x5b58200,30, 0x5b58280,3, 0x5b58290,19, 0x5b58300,30, 0x5b58380,3, 0x5b58390,19, 0x5b58400,12, 0x5b58444,1, 0x5b58454,8, 0x5b58480,7, 0x5b584a0,2, 0x5b584ac,2, 0x5b584c0,20, 0x5b58580,4, 0x5b585a0,5, 0x5b585c0,1, 0x5b58800,3, 0x5b58810,3, 0x5b58820,3, 0x5b58830,3, 0x5b58840,6, 0x5b58860,6, 0x5b58880,6, 0x5b588a0,6, 0x5b58900,36, 0x5b58a00,1, 0x5b58c04,1, 0x5b58c44,54, 0x5b58e00,12, 0x5b58e40,12, 0x5b58e80,12, 0x5b58ec0,12, 0x5b58f00,8, 0x5b58f40,12, 0x5b58f80,7, 0x5b58fa0,2, 0x5b59000,2, 0x5b59020,6, 0x5b59040,14, 0x5b59080,15, 0x5b590c0,4, 0x5b59100,15, 0x5b59140,9, 0x5b59180,6, 0x5b591a0,6, 0x5b59200,3, 0x5b5c000,10, 0x5b5c030,3, 0x5b5c040,5, 0x5b60000,518, 0x5b60900,45, 0x5b60a00,45, 0x5b60b00,45, 0x5b60c00,45, 0x5b60d00,45, 0x5b60e00,45, 0x5b60f00,45, 0x5b61000,45, 0x5b61800,9, 0x5b61840,364, 0x5b61e00,19, 0x5b62000,9, 0x5b62040,364, 0x5b62600,19, 0x5b62800,6, 0x5b62820,3, 0x5b62840,7, 0x5b62880,6, 0x5b628a0,3, 0x5b628c0,7, 0x5b62900,1, 0x5b62908,3, 0x5b62918,8, 0x5b62940,7, 0x5b63000,2, 0x5b63800,18, 0x5b63880,18, 0x5b63c00,4, 0x5b63c20,7, 0x5b63d00,4, 0x5b63d80,20, 0x5b63e00,1, 0x5b64000,21, 0x5b64058,3, 0x5b64100,1, 0x5b64124,1, 0x5b6412c,5, 0x5b64144,1, 0x5b6414c,6, 0x5b64184,6, 0x5b641a4,6, 0x5b641c4,1, 0x5b641cc,1, 0x5b64400,9, 0x5b64440,9, 0x5b64480,15, 0x5b644c0,15, 0x5b64500,15, 0x5b64540,15, 0x5b64580,15, 0x5b645c0,15, 0x5b64600,15, 0x5b64640,15, 0x5b64680,59, 0x5b64800,1, 0x5b64808,16, 0x5b64850,1, 0x5b64858,7, 0x5b68000,3, 0x5b68010,1, 0x5b68018,3, 0x5b6a000,4, 0x5b6a080,19, 0x5b6a100,12, 0x5b6a200,4, 0x5b6a280,19, 0x5b6a300,12, 0x5b6a400,2, 0x5b6a600,124, 0x5b6a800,4, 0x5b6a880,18, 0x5b6a900,4, 0x5b6a980,23, 0x5b6aa00,10, 0x5b6aa2c,2, 0x5b6aa40,2, 0x5b6aa4c,3, 0x5b6aa60,2, 0x5b6aa6c,3, 0x5b6aa80,2, 0x5b6aa8c,2, 0x5b6aaa0,2, 0x5b6aaac,2, 0x5b6aac0,2, 0x5b6aacc,2, 0x5b6ab00,4, 0x5b6ab40,15, 0x5b6ab80,3, 0x5b6ab90,7, 0x5b6abb0,3, 0x5b6abc0,3, 0x5b6abd0,3, 0x5b6abe0,1, 0x5b6ac00,17, 0x5b6ae00,15, 0x5b6ae40,4, 0x5b6ae60,17, 0x5b6aec0,6, 0x5b6aee0,4, 0x5b6aef4,11, 0x5b6af24,28, 0x5b6b000,1, 0x5b6b080,1, 0x5b6b0a0,5, 0x5b6b0c0,5, 0x5b6b0e0,5, 0x5b6b100,1, 0x5b6b120,5, 0x5b6b140,5, 0x5b6b160,5, 0x5b6b180,24, 0x5b6b200,5, 0x5b6c000,20, 0x5b80000,18, 0x5b80050,3, 0x5b80060,3, 0x5b80070,14, 0x5b800c0,5, 0x5b80400,13, 0x5b80440,2, 0x5b8044c,3, 0x5b80460,2, 0x5b80480,13, 0x5b804c0,2, 0x5b804cc,3, 0x5b804e0,2, 0x5b80500,1, 0x5b80508,16, 0x5b80560,2, 0x5b8056c,3, 0x5b80600,4, 0x5b80680,19, 0x5b80800,24, 0x5b80864,2, 0x5b80870,4, 0x5b80a00,27, 0x5b80a80,4, 0x5b80ac0,25, 0x5b80b40,6, 0x5b80b60,4, 0x5b80b74,11, 0x5b80ba4,8, 0x5b80c00,3, 0x5b80c10,3, 0x5b80c20,1, 0x5b80c40,11, 0x5b80c80,23, 0x5b80ce0,15, 0x5b80d20,15, 0x5b80d60,2, 0x5b80d6c,2, 0x5b80d80,1, 0x5b81000,18, 0x5b81050,3, 0x5b81060,3, 0x5b81070,14, 0x5b810c0,5, 0x5b81400,13, 0x5b81440,2, 0x5b8144c,3, 0x5b81460,2, 0x5b81480,13, 0x5b814c0,2, 0x5b814cc,3, 0x5b814e0,2, 0x5b81500,1, 0x5b81508,16, 0x5b81560,2, 0x5b8156c,3, 0x5b81600,4, 0x5b81680,19, 0x5b81800,24, 0x5b81864,2, 0x5b81870,4, 0x5b81a00,27, 0x5b81a80,4, 0x5b81ac0,25, 0x5b81b40,6, 0x5b81b60,4, 0x5b81b74,11, 0x5b81ba4,8, 0x5b81c00,3, 0x5b81c10,3, 0x5b81c20,1, 0x5b81c40,11, 0x5b81c80,23, 0x5b81ce0,15, 0x5b81d20,15, 0x5b81d60,2, 0x5b81d6c,2, 0x5b81d80,1, 0x5b82000,20, 0x5b82080,7, 0x5b820a0,1, 0x5b820b0,1, 0x5b820b8,2, 0x5b84000,14, 0x5b90000,260, 0x5b90800,391, 0x5b91000,525, 0x5b92000,248, 0x5b923e4,9, 0x5b92410,4, 0x5b92800,4, 0x5b92820,5, 0x5b92840,4, 0x5b92860,5, 0x5b92880,4, 0x5b928a0,5, 0x5b928c0,4, 0x5b928e0,5, 0x5b92900,6, 0x5b94000,4, 0x5b94040,14, 0x5b94080,4, 0x5b940c0,14, 0x5b94100,4, 0x5b94140,14, 0x5b94180,4, 0x5b941c0,14, 0x5b94200,4, 0x5b94240,14, 0x5b94280,4, 0x5b942c0,14, 0x5b94300,4, 0x5b94340,14, 0x5b94380,4, 0x5b943c0,14, 0x5b94400,4, 0x5b94440,14, 0x5b94480,4, 0x5b944c0,14, 0x5b94500,4, 0x5b94520,6, 0x5b94540,4, 0x5b94560,6, 0x5b94580,4, 0x5b945a0,6, 0x5b945c0,4, 0x5b945e0,6, 0x5b94600,4, 0x5b94620,6, 0x5b94640,4, 0x5b94660,6, 0x5b94680,4, 0x5b946a0,6, 0x5b946c0,4, 0x5b946e0,6, 0x5b94700,4, 0x5b94720,6, 0x5b94740,4, 0x5b94760,6, 0x5b94780,716, 0x5b952c4,14, 0x5b95300,5, 0x5b95320,35, 0x5b96004,1, 0x5b96020,13, 0x5b96060,5, 0x5b96080,47, 0x5b96200,28, 0x5b96400,27, 0x5b96480,4, 0x5b964c0,25, 0x5b96540,6, 0x5b96560,2, 0x5b9656c,3, 0x5b96580,8, 0x5b965a4,18, 0x5b96600,3, 0x5b96610,1, 0x5b96618,5, 0x6000000,6, 0x6000020,3, 0x6000400,6, 0x6000424,1, 0x6000434,5, 0x6000600,128, 0x6000804,1, 0x6000828,86, 0x6000984,1, 0x6000c00,1, 0x6000c80,1, 0x6000c90,2, 0x6000d00,20, 0x6000d80,1, 0x6000da0,5, 0x6000e00,27, 0x6000f00,2, 0x6000f10,4, 0x6001000,54, 0x6800000,20, 0x6800800,10, 0x6800880,6, 0x68008a0,1, 0x6801000,36, 0x6801800,10, 0x6801880,5, 0x68018a0,6, 0x68018c0,1, 0x6801900,2, 0x6801910,4, 0x6801a00,1, 0x6801a20,8, 0x6801a80,1, 0x6802000,36, 0x6802800,10, 0x6802880,5, 0x68028a0,6, 0x68028c0,1, 0x6802900,2, 0x6802910,4, 0x6802a00,1, 0x6802a20,8, 0x6802a80,1, 0x6803000,36, 0x6803800,10, 0x6803880,5, 0x68038a0,6, 0x68038c0,1, 0x6803900,2, 0x6803910,4, 0x6803a00,1, 0x6803a20,8, 0x6803a80,1, 0x6804000,36, 0x6804800,10, 0x6804880,5, 0x68048a0,6, 0x68048c0,1, 0x6804900,2, 0x6804910,4, 0x6804a00,1, 0x6804a20,8, 0x6804a80,1, 0x6805000,36, 0x6805800,10, 0x6805880,5, 0x68058a0,6, 0x68058c0,1, 0x6805900,2, 0x6805910,4, 0x6805a00,1, 0x6805a20,8, 0x6805a80,1, 0x6806000,36, 0x6806800,10, 0x6806880,5, 0x68068a0,6, 0x68068c0,1, 0x6806900,2, 0x6806910,4, 0x6806a00,1, 0x6806a20,8, 0x6806a80,1, 0x6807000,36, 0x6807800,10, 0x6807880,5, 0x68078a0,6, 0x68078c0,1, 0x6807900,2, 0x6807910,4, 0x6807a00,1, 0x6807a20,8, 0x6807a80,1, 0x6808000,36, 0x6808800,10, 0x6808880,5, 0x68088a0,6, 0x68088c0,1, 0x6808900,2, 0x6808910,4, 0x6808a00,1, 0x6808a20,8, 0x6808a80,1, 0x6809000,36, 0x6809800,10, 0x6809880,5, 0x68098a0,6, 0x68098c0,1, 0x6809900,2, 0x6809910,4, 0x6809a00,1, 0x6809a20,8, 0x6809a80,1, 0x680a000,36, 0x680a800,10, 0x680a880,5, 0x680a8a0,6, 0x680a8c0,1, 0x680a900,2, 0x680a910,4, 0x680aa00,1, 0x680aa20,8, 0x680aa80,1, 0x680b000,36, 0x680b800,10, 0x680b880,5, 0x680b8a0,6, 0x680b8c0,1, 0x680b900,2, 0x680b910,4, 0x680ba00,1, 0x680ba20,8, 0x680ba80,1, 0x680c000,36, 0x680c800,10, 0x680c880,5, 0x680c8a0,6, 0x680c8c0,1, 0x680c900,2, 0x680c910,4, 0x680ca00,1, 0x680ca20,8, 0x680ca80,1, 0x680d000,36, 0x680d800,10, 0x680d880,5, 0x680d8a0,6, 0x680d8c0,1, 0x680d900,2, 0x680d910,4, 0x680da00,1, 0x680da20,8, 0x680da80,1, 0x680e000,36, 0x680e800,10, 0x680e880,5, 0x680e8a0,6, 0x680e8c0,1, 0x680e900,2, 0x680e910,4, 0x680ea00,1, 0x680ea20,8, 0x680ea80,1, 0x680f000,36, 0x680f800,10, 0x680f880,5, 0x680f8a0,6, 0x680f8c0,1, 0x680f900,2, 0x680f910,4, 0x680fa00,1, 0x680fa20,8, 0x680fa80,1, 0x6810000,36, 0x6810800,10, 0x6810880,5, 0x68108a0,6, 0x68108c0,1, 0x6810900,2, 0x6810910,4, 0x6810a00,1, 0x6810a20,8, 0x6810a80,1, 0x6811000,36, 0x6811800,10, 0x6811880,5, 0x68118a0,6, 0x68118c0,1, 0x6811900,2, 0x6811910,4, 0x6811a00,1, 0x6811a20,8, 0x6811a80,1, 0x6812000,36, 0x6812800,10, 0x6812880,5, 0x68128a0,6, 0x68128c0,1, 0x6812900,2, 0x6812910,4, 0x6812a00,1, 0x6812a20,8, 0x6812a80,1, 0x6813000,36, 0x6813800,10, 0x6813880,5, 0x68138a0,6, 0x68138c0,1, 0x6813900,2, 0x6813910,4, 0x6813a00,1, 0x6813a20,8, 0x6813a80,1, 0x6814000,36, 0x6814800,10, 0x6814880,5, 0x68148a0,6, 0x68148c0,1, 0x6814900,2, 0x6814910,4, 0x6814a00,1, 0x6814a20,8, 0x6814a80,1, 0x6815000,36, 0x6815800,10, 0x6815880,5, 0x68158a0,6, 0x68158c0,1, 0x6815900,2, 0x6815910,4, 0x6815a00,1, 0x6815a20,8, 0x6815a80,1, 0x6816000,36, 0x6816800,10, 0x6816880,5, 0x68168a0,6, 0x68168c0,1, 0x6816900,2, 0x6816910,4, 0x6816a00,1, 0x6816a20,8, 0x6816a80,1, 0x6817000,36, 0x6817800,10, 0x6817880,5, 0x68178a0,6, 0x68178c0,1, 0x6817900,2, 0x6817910,4, 0x6817a00,1, 0x6817a20,8, 0x6817a80,1, 0x6818000,36, 0x6818800,10, 0x6818880,5, 0x68188a0,6, 0x68188c0,1, 0x6818900,2, 0x6818910,4, 0x6818a00,1, 0x6818a20,8, 0x6818a80,1, 0x6819000,36, 0x6819800,10, 0x6819880,5, 0x68198a0,6, 0x68198c0,1, 0x6819900,2, 0x6819910,4, 0x6819a00,1, 0x6819a20,8, 0x6819a80,1, 0x681a000,36, 0x681a800,10, 0x681a880,5, 0x681a8a0,6, 0x681a8c0,1, 0x681a900,2, 0x681a910,4, 0x681aa00,1, 0x681aa20,8, 0x681aa80,1, 0x681b000,36, 0x681b800,10, 0x681b880,5, 0x681b8a0,6, 0x681b8c0,1, 0x681b900,2, 0x681b910,4, 0x681ba00,1, 0x681ba20,8, 0x681ba80,1, 0x681c000,36, 0x681c800,10, 0x681c880,5, 0x681c8a0,6, 0x681c8c0,1, 0x681c900,2, 0x681c910,4, 0x681ca00,1, 0x681ca20,8, 0x681ca80,1, 0x681d000,36, 0x681d800,10, 0x681d880,5, 0x681d8a0,6, 0x681d8c0,1, 0x681d900,2, 0x681d910,4, 0x681da00,1, 0x681da20,8, 0x681da80,1, 0x681e000,36, 0x681e800,10, 0x681e880,5, 0x681e8a0,6, 0x681e8c0,1, 0x681e900,2, 0x681e910,4, 0x681ea00,1, 0x681ea20,8, 0x681ea80,1, 0x681f000,36, 0x681f800,10, 0x681f880,5, 0x681f8a0,6, 0x681f8c0,1, 0x681f900,2, 0x681f910,4, 0x681fa00,1, 0x681fa20,8, 0x681fa80,1, 0x6820000,36, 0x6820800,10, 0x6820880,5, 0x68208a0,6, 0x68208c0,1, 0x6820900,2, 0x6820910,4, 0x6820a00,1, 0x6820a20,8, 0x6820a80,1, 0x6821000,36, 0x6821800,10, 0x6821880,5, 0x68218a0,6, 0x68218c0,1, 0x6821900,2, 0x6821910,4, 0x6821a00,1, 0x6821a20,8, 0x6821a80,1, 0x6822000,36, 0x6822800,10, 0x6822880,5, 0x68228a0,6, 0x68228c0,1, 0x6822900,2, 0x6822910,4, 0x6822a00,1, 0x6822a20,8, 0x6822a80,1, 0x6823000,36, 0x6823800,10, 0x6823880,5, 0x68238a0,6, 0x68238c0,1, 0x6823900,2, 0x6823910,4, 0x6823a00,1, 0x6823a20,8, 0x6823a80,1, 0x6824000,36, 0x6824800,10, 0x6824880,5, 0x68248a0,6, 0x68248c0,1, 0x6824900,2, 0x6824910,4, 0x6824a00,1, 0x6824a20,8, 0x6824a80,1, 0x6825000,36, 0x6825800,10, 0x6825880,5, 0x68258a0,6, 0x68258c0,1, 0x6825900,2, 0x6825910,4, 0x6825a00,1, 0x6825a20,8, 0x6825a80,1, 0x6826000,36, 0x6826800,10, 0x6826880,5, 0x68268a0,6, 0x68268c0,1, 0x6826900,2, 0x6826910,4, 0x6826a00,1, 0x6826a20,8, 0x6826a80,1, 0x6827000,36, 0x6827800,10, 0x6827880,5, 0x68278a0,6, 0x68278c0,1, 0x6827900,2, 0x6827910,4, 0x6827a00,1, 0x6827a20,8, 0x6827a80,1, 0x6828000,36, 0x6828800,10, 0x6828880,5, 0x68288a0,6, 0x68288c0,1, 0x6828900,2, 0x6828910,4, 0x6828a00,1, 0x6828a20,8, 0x6828a80,1, 0x6829000,36, 0x6829800,10, 0x6829880,5, 0x68298a0,6, 0x68298c0,1, 0x6829900,2, 0x6829910,4, 0x6829a00,1, 0x6829a20,8, 0x6829a80,1, 0x682a000,36, 0x682a800,10, 0x682a880,5, 0x682a8a0,6, 0x682a8c0,1, 0x682a900,2, 0x682a910,4, 0x682aa00,1, 0x682aa20,8, 0x682aa80,1, 0x682b000,36, 0x682b800,10, 0x682b880,5, 0x682b8a0,6, 0x682b8c0,1, 0x682b900,2, 0x682b910,4, 0x682ba00,1, 0x682ba20,8, 0x682ba80,1, 0x682c000,36, 0x682c800,10, 0x682c880,5, 0x682c8a0,6, 0x682c8c0,1, 0x682c900,2, 0x682c910,4, 0x682ca00,1, 0x682ca20,8, 0x682ca80,1, 0x682d000,36, 0x682d800,10, 0x682d880,5, 0x682d8a0,6, 0x682d8c0,1, 0x682d900,2, 0x682d910,4, 0x682da00,1, 0x682da20,8, 0x682da80,1, 0x682e000,36, 0x682e800,10, 0x682e880,5, 0x682e8a0,6, 0x682e8c0,1, 0x682e900,2, 0x682e910,4, 0x682ea00,1, 0x682ea20,8, 0x682ea80,1, 0x682f000,36, 0x682f800,10, 0x682f880,5, 0x682f8a0,6, 0x682f8c0,1, 0x682f900,2, 0x682f910,4, 0x682fa00,1, 0x682fa20,8, 0x682fa80,1, 0x6830000,36, 0x6830800,10, 0x6830880,5, 0x68308a0,6, 0x68308c0,1, 0x6830900,2, 0x6830910,4, 0x6830a00,1, 0x6830a20,8, 0x6830a80,1, 0x6831000,36, 0x6831800,10, 0x6831880,5, 0x68318a0,6, 0x68318c0,1, 0x6831900,2, 0x6831910,4, 0x6831a00,1, 0x6831a20,8, 0x6831a80,1, 0x6832000,36, 0x6832800,10, 0x6832880,5, 0x68328a0,6, 0x68328c0,1, 0x6832900,2, 0x6832910,4, 0x6832a00,1, 0x6832a20,8, 0x6832a80,1, 0x6833000,36, 0x6833800,10, 0x6833880,5, 0x68338a0,6, 0x68338c0,1, 0x6833900,2, 0x6833910,4, 0x6833a00,1, 0x6833a20,8, 0x6833a80,1, 0x6834000,36, 0x6834800,10, 0x6834880,5, 0x68348a0,6, 0x68348c0,1, 0x6834900,2, 0x6834910,4, 0x6834a00,1, 0x6834a20,8, 0x6834a80,1, 0x6835000,36, 0x6835800,10, 0x6835880,5, 0x68358a0,6, 0x68358c0,1, 0x6835900,2, 0x6835910,4, 0x6835a00,1, 0x6835a20,8, 0x6835a80,1, 0x6836000,36, 0x6836800,10, 0x6836880,5, 0x68368a0,6, 0x68368c0,1, 0x6836900,2, 0x6836910,4, 0x6836a00,1, 0x6836a20,8, 0x6836a80,1, 0x6837000,36, 0x6837800,10, 0x6837880,5, 0x68378a0,6, 0x68378c0,1, 0x6837900,2, 0x6837910,4, 0x6837a00,1, 0x6837a20,8, 0x6837a80,1, 0x6838000,36, 0x6838800,10, 0x6838880,5, 0x68388a0,6, 0x68388c0,1, 0x6838900,2, 0x6838910,4, 0x6838a00,1, 0x6838a20,8, 0x6838a80,1, 0x6839000,36, 0x6839800,10, 0x6839880,5, 0x68398a0,6, 0x68398c0,1, 0x6839900,2, 0x6839910,4, 0x6839a00,1, 0x6839a20,8, 0x6839a80,1, 0x683a000,36, 0x683a800,10, 0x683a880,5, 0x683a8a0,6, 0x683a8c0,1, 0x683a900,2, 0x683a910,4, 0x683aa00,1, 0x683aa20,8, 0x683aa80,1, 0x683b000,36, 0x683b800,10, 0x683b880,5, 0x683b8a0,6, 0x683b8c0,1, 0x683b900,2, 0x683b910,4, 0x683ba00,1, 0x683ba20,8, 0x683ba80,1, 0x683c000,36, 0x683c800,10, 0x683c880,5, 0x683c8a0,6, 0x683c8c0,1, 0x683c900,2, 0x683c910,4, 0x683ca00,1, 0x683ca20,8, 0x683ca80,1, 0x683d000,36, 0x683d800,10, 0x683d880,5, 0x683d8a0,6, 0x683d8c0,1, 0x683d900,2, 0x683d910,4, 0x683da00,1, 0x683da20,8, 0x683da80,1, 0x683e000,36, 0x683e800,10, 0x683e880,5, 0x683e8a0,6, 0x683e8c0,1, 0x683e900,2, 0x683e910,4, 0x683ea00,1, 0x683ea20,8, 0x683ea80,1, 0x683f000,36, 0x683f800,10, 0x683f880,5, 0x683f8a0,6, 0x683f8c0,1, 0x683f900,2, 0x683f910,4, 0x683fa00,1, 0x683fa20,8, 0x683fa80,1, 0x6840000,36, 0x6840800,10, 0x6840880,5, 0x68408a0,6, 0x68408c0,1, 0x6840900,2, 0x6840910,4, 0x6840a00,1, 0x6840a20,8, 0x6840a80,1, 0x6841000,36, 0x6841800,10, 0x6841880,5, 0x68418a0,6, 0x68418c0,1, 0x6841900,2, 0x6841910,4, 0x6841a00,1, 0x6841a20,8, 0x6841a80,1, 0x6842000,36, 0x6842800,10, 0x6842880,5, 0x68428a0,6, 0x68428c0,1, 0x6842900,2, 0x6842910,4, 0x6842a00,1, 0x6842a20,8, 0x6842a80,1, 0x6843000,20, 0x6843800,10, 0x6843880,6, 0x6843900,2, 0x6843910,4, 0x6843a00,1, 0x6843a20,8, 0x6843a80,1, 0x6844000,20, 0x6844800,10, 0x6844880,6, 0x6844900,2, 0x6844910,4, 0x6844a00,1, 0x6844a20,8, 0x6844a80,1, 0x6845000,20, 0x6845800,10, 0x6845880,6, 0x6845900,2, 0x6845910,4, 0x6845a00,1, 0x6845a20,8, 0x6845a80,1, 0x6846000,20, 0x6846800,10, 0x6846880,6, 0x6846900,2, 0x6846910,4, 0x6846a00,1, 0x6846a20,8, 0x6846a80,1, 0x6847000,20, 0x6847800,10, 0x6847880,6, 0x6847900,2, 0x6847910,4, 0x6847a00,1, 0x6847a20,8, 0x6847a80,1, 0x6848000,20, 0x6848800,10, 0x6848880,6, 0x6848900,2, 0x6848910,4, 0x6848a00,1, 0x6848a20,8, 0x6848a80,1, 0x6849000,20, 0x6849800,10, 0x6849880,6, 0x6849900,2, 0x6849910,4, 0x6849a00,1, 0x6849a20,8, 0x6849a80,1, 0x684a000,20, 0x684a800,10, 0x684a880,6, 0x684a900,2, 0x684a910,4, 0x684aa00,1, 0x684aa20,8, 0x684aa80,1, 0x684b000,20, 0x684b800,10, 0x684b880,6, 0x684b900,2, 0x684b910,4, 0x684ba00,1, 0x684ba20,8, 0x684ba80,1, 0x684c000,20, 0x684c800,10, 0x684c880,6, 0x684c900,2, 0x684c910,4, 0x684ca00,1, 0x684ca20,8, 0x684ca80,1, 0x684d000,20, 0x684d800,10, 0x684d880,6, 0x684d900,2, 0x684d910,4, 0x684da00,1, 0x684da20,8, 0x684da80,1, 0x684e000,20, 0x684e800,10, 0x684e880,6, 0x684e900,2, 0x684e910,4, 0x684ea00,1, 0x684ea20,8, 0x684ea80,1, 0x684f000,20, 0x684f800,10, 0x684f880,6, 0x684f900,2, 0x684f910,4, 0x684fa00,1, 0x684fa20,8, 0x684fa80,1, 0x6850000,20, 0x6850800,10, 0x6850880,6, 0x6850900,2, 0x6850910,4, 0x6850a00,1, 0x6850a20,8, 0x6850a80,1, 0x6851000,20, 0x6851800,10, 0x6851880,6, 0x6851900,2, 0x6851910,4, 0x6851a00,1, 0x6851a20,8, 0x6851a80,1, 0x6852000,20, 0x6852800,10, 0x6852880,6, 0x6852900,2, 0x6852910,4, 0x6852a00,1, 0x6852a20,8, 0x6852a80,1, 0x6853000,20, 0x6853800,10, 0x6853880,6, 0x6853900,2, 0x6853910,4, 0x6853a00,1, 0x6853a20,8, 0x6853a80,1, 0x6854000,20, 0x6854800,10, 0x6854880,6, 0x6854900,2, 0x6854910,4, 0x6854a00,1, 0x6854a20,8, 0x6854a80,1, 0x6855000,20, 0x6855800,10, 0x6855880,6, 0x6855900,2, 0x6855910,4, 0x6855a00,1, 0x6855a20,8, 0x6855a80,1, 0x6856000,20, 0x6856800,10, 0x6856880,6, 0x6856900,2, 0x6856910,4, 0x6856a00,1, 0x6856a20,8, 0x6856a80,1, 0x6857000,20, 0x6857800,10, 0x6857880,6, 0x6857900,2, 0x6857910,4, 0x6857a00,1, 0x6857a20,8, 0x6857a80,1, 0x6858000,20, 0x6858800,10, 0x6858880,6, 0x6858900,2, 0x6858910,4, 0x6858a00,1, 0x6858a20,8, 0x6858a80,1, 0x6859000,20, 0x6859800,10, 0x6859880,6, 0x6859900,2, 0x6859910,4, 0x6859a00,1, 0x6859a20,8, 0x6859a80,1, 0x685a000,20, 0x685a800,10, 0x685a880,6, 0x685a900,2, 0x685a910,4, 0x685aa00,1, 0x685aa20,8, 0x685aa80,1, 0x685b000,20, 0x685b800,10, 0x685b880,6, 0x685b900,2, 0x685b910,4, 0x685ba00,1, 0x685ba20,8, 0x685ba80,1, 0x685c000,20, 0x685c800,10, 0x685c880,6, 0x685c900,2, 0x685c910,4, 0x685ca00,1, 0x685ca20,8, 0x685ca80,1, 0x685d000,20, 0x685d800,10, 0x685d880,6, 0x685d900,2, 0x685d910,4, 0x685da00,1, 0x685da20,8, 0x685da80,1, 0x685e000,20, 0x685e800,10, 0x685e880,6, 0x685e900,2, 0x685e910,4, 0x685ea00,1, 0x685ea20,8, 0x685ea80,1, 0x685f000,20, 0x685f800,10, 0x685f880,6, 0x685f900,2, 0x685f910,4, 0x685fa00,1, 0x685fa20,8, 0x685fa80,1, 0x6860000,20, 0x6860800,10, 0x6860880,6, 0x6860900,2, 0x6860910,4, 0x6860a00,1, 0x6860a20,8, 0x6860a80,1, 0x6861000,20, 0x6861800,10, 0x6861880,6, 0x6861900,2, 0x6861910,4, 0x6861a00,1, 0x6861a20,8, 0x6861a80,1, 0x6862000,20, 0x6862800,10, 0x6862880,6, 0x6862900,2, 0x6862910,4, 0x6862a00,1, 0x6862a20,8, 0x6862a80,1, 0x6863000,20, 0x6863800,10, 0x6863880,6, 0x6863900,2, 0x6863910,4, 0x6863a00,1, 0x6863a20,8, 0x6863a80,1, 0x6864000,20, 0x6864800,10, 0x6864880,6, 0x6864900,2, 0x6864910,4, 0x6864a00,1, 0x6864a20,8, 0x6864a80,1, 0x6865000,20, 0x6865800,10, 0x6865880,6, 0x6865900,2, 0x6865910,4, 0x6865a00,1, 0x6865a20,8, 0x6865a80,1, 0x6866000,20, 0x6866800,10, 0x6866880,6, 0x6866900,2, 0x6866910,4, 0x6866a00,1, 0x6866a20,8, 0x6866a80,1, 0x6867000,20, 0x6867800,10, 0x6867880,6, 0x6867900,2, 0x6867910,4, 0x6867a00,1, 0x6867a20,8, 0x6867a80,1, 0x6868000,20, 0x6868800,10, 0x6868880,6, 0x6868900,2, 0x6868910,4, 0x6868a00,1, 0x6868a20,8, 0x6868a80,1, 0x6869000,20, 0x6869800,10, 0x6869880,6, 0x6869900,2, 0x6869910,4, 0x6869a00,1, 0x6869a20,8, 0x6869a80,1, 0x686a000,20, 0x686a800,10, 0x686a880,6, 0x686a900,2, 0x686a910,4, 0x686aa00,1, 0x686aa20,8, 0x686aa80,1, 0x686b000,20, 0x686b800,10, 0x686b880,6, 0x686b900,2, 0x686b910,4, 0x686ba00,1, 0x686ba20,8, 0x686ba80,1, 0x686c000,20, 0x686c800,10, 0x686c880,6, 0x686c900,2, 0x686c910,4, 0x686ca00,1, 0x686ca20,8, 0x686ca80,1, 0x686d000,20, 0x686d800,10, 0x686d880,6, 0x686d900,2, 0x686d910,4, 0x686da00,1, 0x686da20,8, 0x686da80,1, 0x686e000,20, 0x686e800,10, 0x686e880,6, 0x686e900,2, 0x686e910,4, 0x686ea00,1, 0x686ea20,8, 0x686ea80,1, 0x686f000,20, 0x686f800,10, 0x686f880,6, 0x686f900,2, 0x686f910,4, 0x686fa00,1, 0x686fa20,8, 0x686fa80,1, 0x6870000,20, 0x6870800,10, 0x6870880,6, 0x6870900,2, 0x6870910,4, 0x6870a00,1, 0x6870a20,8, 0x6870a80,1, 0x6871000,20, 0x6871800,10, 0x6871880,6, 0x6871900,2, 0x6871910,4, 0x6871a00,1, 0x6871a20,8, 0x6871a80,1, 0x6872000,20, 0x6872800,10, 0x6872880,6, 0x6872900,2, 0x6872910,4, 0x6872a00,1, 0x6872a20,8, 0x6872a80,1, 0x6873000,20, 0x6873800,10, 0x6873880,6, 0x6873900,2, 0x6873910,4, 0x6873a00,1, 0x6873a20,8, 0x6873a80,1, 0x6874000,20, 0x6874800,10, 0x6874880,6, 0x6874900,2, 0x6874910,4, 0x6874a00,1, 0x6874a20,8, 0x6874a80,1, 0x6875000,20, 0x6875800,10, 0x6875880,6, 0x6875900,2, 0x6875910,4, 0x6875a00,1, 0x6875a20,8, 0x6875a80,1, 0x6876000,20, 0x6876800,10, 0x6876880,6, 0x6876900,2, 0x6876910,4, 0x6876a00,1, 0x6876a20,8, 0x6876a80,1, 0x6877000,20, 0x6877800,10, 0x6877880,6, 0x6877900,2, 0x6877910,4, 0x6877a00,1, 0x6877a20,8, 0x6877a80,1, 0x6878000,20, 0x6878800,10, 0x6878880,6, 0x6878900,2, 0x6878910,4, 0x6878a00,1, 0x6878a20,8, 0x6878a80,1, 0x6879000,20, 0x6879800,10, 0x6879880,6, 0x6879900,2, 0x6879910,4, 0x6879a00,1, 0x6879a20,8, 0x6879a80,1, 0x687a000,20, 0x687a800,10, 0x687a880,6, 0x687a900,2, 0x687a910,4, 0x687aa00,1, 0x687aa20,8, 0x687aa80,1, 0x687b000,20, 0x687b800,10, 0x687b880,6, 0x687b900,2, 0x687b910,4, 0x687ba00,1, 0x687ba20,8, 0x687ba80,1, 0x687c000,20, 0x687c800,10, 0x687c880,6, 0x687c900,2, 0x687c910,4, 0x687ca00,1, 0x687ca20,8, 0x687ca80,1, 0x687d000,20, 0x687d800,10, 0x687d880,6, 0x687d900,2, 0x687d910,4, 0x687da00,1, 0x687da20,8, 0x687da80,1, 0x687e000,20, 0x687e800,10, 0x687e880,6, 0x687e900,2, 0x687e910,4, 0x687ea00,1, 0x687ea20,8, 0x687ea80,1, 0x687f000,20, 0x687f800,10, 0x687f880,6, 0x687f900,2, 0x687f910,4, 0x687fa00,1, 0x687fa20,8, 0x687fa80,1, 0x6880000,20, 0x6880800,10, 0x6880880,6, 0x6880900,2, 0x6880910,4, 0x6880a00,1, 0x6880a20,8, 0x6880a80,1, 0x6881000,20, 0x6881800,10, 0x6881880,6, 0x6881900,2, 0x6881910,4, 0x6881a00,1, 0x6881a20,8, 0x6881a80,1, 0x6882000,20, 0x6882800,10, 0x6882880,6, 0x6882900,2, 0x6882910,4, 0x6882a00,1, 0x6882a20,8, 0x6882a80,1, 0x6883000,20, 0x6883800,10, 0x6883880,6, 0x6883900,2, 0x6883910,4, 0x6883a00,1, 0x6883a20,8, 0x6883a80,1, 0x6884000,20, 0x6884800,10, 0x6884880,6, 0x6884900,2, 0x6884910,4, 0x6884a00,1, 0x6884a20,8, 0x6884a80,1, 0x6885000,20, 0x6885800,10, 0x6885880,6, 0x6885900,2, 0x6885910,4, 0x6885a00,1, 0x6885a20,8, 0x6885a80,1, 0x6886000,20, 0x6886800,10, 0x6886880,6, 0x6886900,2, 0x6886910,4, 0x6886a00,1, 0x6886a20,8, 0x6886a80,1, 0x6887000,20, 0x6887800,10, 0x6887880,6, 0x6887900,2, 0x6887910,4, 0x6887a00,1, 0x6887a20,8, 0x6887a80,1, 0x6888000,20, 0x6888800,10, 0x6888880,6, 0x6888900,2, 0x6888910,4, 0x6888a00,1, 0x6888a20,8, 0x6888a80,1, 0x6889000,20, 0x6889800,10, 0x6889880,6, 0x6889900,2, 0x6889910,4, 0x6889a00,1, 0x6889a20,8, 0x6889a80,1, 0x688a000,20, 0x688a800,10, 0x688a880,6, 0x688a900,2, 0x688a910,4, 0x688aa00,1, 0x688aa20,8, 0x688aa80,1, 0x688b000,20, 0x688b800,10, 0x688b880,6, 0x688b900,2, 0x688b910,4, 0x688ba00,1, 0x688ba20,8, 0x688ba80,1, 0x688c000,20, 0x688c800,10, 0x688c880,6, 0x688c900,2, 0x688c910,4, 0x688ca00,1, 0x688ca20,8, 0x688ca80,1, 0x688d000,20, 0x688d800,10, 0x688d880,6, 0x688d900,2, 0x688d910,4, 0x688da00,1, 0x688da20,8, 0x688da80,1, 0x688e000,20, 0x688e800,10, 0x688e880,6, 0x688e900,2, 0x688e910,4, 0x688ea00,1, 0x688ea20,8, 0x688ea80,1, 0x688f000,20, 0x688f800,10, 0x688f880,6, 0x688f900,2, 0x688f910,4, 0x688fa00,1, 0x688fa20,8, 0x688fa80,1, 0x6890000,20, 0x6890800,10, 0x6890880,6, 0x6890900,2, 0x6890910,4, 0x6890a00,1, 0x6890a20,8, 0x6890a80,1, 0x6891000,20, 0x6891800,10, 0x6891880,6, 0x6891900,2, 0x6891910,4, 0x6891a00,1, 0x6891a20,8, 0x6891a80,1, 0x6892000,20, 0x6892800,10, 0x6892880,6, 0x6892900,2, 0x6892910,4, 0x6892a00,1, 0x6892a20,8, 0x6892a80,1, 0x6893000,20, 0x6893800,10, 0x6893880,6, 0x6893900,2, 0x6893910,4, 0x6893a00,1, 0x6893a20,8, 0x6893a80,1, 0x6894000,20, 0x6894800,10, 0x6894880,6, 0x6894900,2, 0x6894910,4, 0x6894a00,1, 0x6894a20,8, 0x6894a80,1, 0x6895000,20, 0x6895800,10, 0x6895880,6, 0x6895900,2, 0x6895910,4, 0x6895a00,1, 0x6895a20,8, 0x6895a80,1, 0x6896000,20, 0x6896800,10, 0x6896880,6, 0x6896900,2, 0x6896910,4, 0x6896a00,1, 0x6896a20,8, 0x6896a80,1, 0x6897000,20, 0x6897800,10, 0x6897880,6, 0x6897900,2, 0x6897910,4, 0x6897a00,1, 0x6897a20,8, 0x6897a80,1, 0x6898000,20, 0x6898800,10, 0x6898880,6, 0x6898900,2, 0x6898910,4, 0x6898a00,1, 0x6898a20,8, 0x6898a80,1, 0x6899000,20, 0x6899800,10, 0x6899880,6, 0x6899900,2, 0x6899910,4, 0x6899a00,1, 0x6899a20,8, 0x6899a80,1, 0x689a000,20, 0x689a800,10, 0x689a880,6, 0x689a900,2, 0x689a910,4, 0x689aa00,1, 0x689aa20,8, 0x689aa80,1, 0x689b000,20, 0x689b800,10, 0x689b880,6, 0x689b900,2, 0x689b910,4, 0x689ba00,1, 0x689ba20,8, 0x689ba80,1, 0x689c000,20, 0x689c800,10, 0x689c880,6, 0x689c900,2, 0x689c910,4, 0x689ca00,1, 0x689ca20,8, 0x689ca80,1, 0x689d000,20, 0x689d800,10, 0x689d880,6, 0x689d900,2, 0x689d910,4, 0x689da00,1, 0x689da20,8, 0x689da80,1, 0x689e000,20, 0x689e800,10, 0x689e880,6, 0x689e900,2, 0x689e910,4, 0x689ea00,1, 0x689ea20,8, 0x689ea80,1, 0x689f000,20, 0x689f800,10, 0x689f880,6, 0x689f900,2, 0x689f910,4, 0x689fa00,1, 0x689fa20,8, 0x689fa80,1, 0x68a0000,20, 0x68a0800,10, 0x68a0880,6, 0x68a0900,2, 0x68a0910,4, 0x68a0a00,1, 0x68a0a20,8, 0x68a0a80,1, 0x68a1000,20, 0x68a1800,10, 0x68a1880,6, 0x68a1900,2, 0x68a1910,4, 0x68a1a00,1, 0x68a1a20,8, 0x68a1a80,1, 0x68a2000,20, 0x68a2800,10, 0x68a2880,6, 0x68a2900,2, 0x68a2910,4, 0x68a2a00,1, 0x68a2a20,8, 0x68a2a80,1, 0x68a3000,20, 0x68a3800,10, 0x68a3880,6, 0x68a3900,2, 0x68a3910,4, 0x68a3a00,1, 0x68a3a20,8, 0x68a3a80,1, 0x68a4000,20, 0x68a4800,10, 0x68a4880,6, 0x68a4900,2, 0x68a4910,4, 0x68a4a00,1, 0x68a4a20,8, 0x68a4a80,1, 0x68a5000,20, 0x68a5800,10, 0x68a5880,6, 0x68a5900,2, 0x68a5910,4, 0x68a5a00,1, 0x68a5a20,8, 0x68a5a80,1, 0x68a6000,20, 0x68a6800,10, 0x68a6880,6, 0x68a6900,2, 0x68a6910,4, 0x68a6a00,1, 0x68a6a20,8, 0x68a6a80,1, 0x68a7000,20, 0x68a7800,10, 0x68a7880,6, 0x68a7900,2, 0x68a7910,4, 0x68a7a00,1, 0x68a7a20,8, 0x68a7a80,1, 0x68a8000,20, 0x68a8800,10, 0x68a8880,6, 0x68a8900,2, 0x68a8910,4, 0x68a8a00,1, 0x68a8a20,8, 0x68a8a80,1, 0x68a9000,20, 0x68a9800,10, 0x68a9880,6, 0x68a9900,2, 0x68a9910,4, 0x68a9a00,1, 0x68a9a20,8, 0x68a9a80,1, 0x68aa000,20, 0x68aa800,10, 0x68aa880,6, 0x68aa900,2, 0x68aa910,4, 0x68aaa00,1, 0x68aaa20,8, 0x68aaa80,1, 0x68ab000,20, 0x68ab800,10, 0x68ab880,6, 0x68ab900,2, 0x68ab910,4, 0x68aba00,1, 0x68aba20,8, 0x68aba80,1, 0x68ac000,20, 0x68ac800,10, 0x68ac880,6, 0x68ac900,2, 0x68ac910,4, 0x68aca00,1, 0x68aca20,8, 0x68aca80,1, 0x68ad000,20, 0x68ad800,10, 0x68ad880,6, 0x68ad900,2, 0x68ad910,4, 0x68ada00,1, 0x68ada20,8, 0x68ada80,1, 0x68ae000,20, 0x68ae800,10, 0x68ae880,6, 0x68ae900,2, 0x68ae910,4, 0x68aea00,1, 0x68aea20,8, 0x68aea80,1, 0x68af000,20, 0x68af800,10, 0x68af880,6, 0x68af900,2, 0x68af910,4, 0x68afa00,1, 0x68afa20,8, 0x68afa80,1, 0x68b0000,20, 0x68b0800,10, 0x68b0880,6, 0x68b0900,2, 0x68b0910,4, 0x68b0a00,1, 0x68b0a20,8, 0x68b0a80,1, 0x68b1000,20, 0x68b1800,10, 0x68b1880,6, 0x68b1900,2, 0x68b1910,4, 0x68b1a00,1, 0x68b1a20,8, 0x68b1a80,1, 0x68b2000,20, 0x68b2800,10, 0x68b2880,6, 0x68b2900,2, 0x68b2910,4, 0x68b2a00,1, 0x68b2a20,8, 0x68b2a80,1, 0x68b3000,20, 0x68b3800,10, 0x68b3880,6, 0x68b3900,2, 0x68b3910,4, 0x68b3a00,1, 0x68b3a20,8, 0x68b3a80,1, 0x68b4000,20, 0x68b4800,10, 0x68b4880,6, 0x68b4900,2, 0x68b4910,4, 0x68b4a00,1, 0x68b4a20,8, 0x68b4a80,1, 0x68b5000,20, 0x68b5800,10, 0x68b5880,6, 0x68b5900,2, 0x68b5910,4, 0x68b5a00,1, 0x68b5a20,8, 0x68b5a80,1, 0x68b6000,20, 0x68b6800,10, 0x68b6880,6, 0x68b6900,2, 0x68b6910,4, 0x68b6a00,1, 0x68b6a20,8, 0x68b6a80,1, 0x68b7000,20, 0x68b7800,10, 0x68b7880,6, 0x68b7900,2, 0x68b7910,4, 0x68b7a00,1, 0x68b7a20,8, 0x68b7a80,1, 0x68b8000,20, 0x68b8800,10, 0x68b8880,6, 0x68b8900,2, 0x68b8910,4, 0x68b8a00,1, 0x68b8a20,8, 0x68b8a80,1, 0x68b9000,20, 0x68b9800,10, 0x68b9880,6, 0x68b9900,2, 0x68b9910,4, 0x68b9a00,1, 0x68b9a20,8, 0x68b9a80,1, 0x68ba000,20, 0x68ba800,10, 0x68ba880,6, 0x68ba900,2, 0x68ba910,4, 0x68baa00,1, 0x68baa20,8, 0x68baa80,1, 0x68bb000,20, 0x68bb800,10, 0x68bb880,6, 0x68bb900,2, 0x68bb910,4, 0x68bba00,1, 0x68bba20,8, 0x68bba80,1, 0x68bc000,20, 0x68bc800,10, 0x68bc880,6, 0x68bc900,2, 0x68bc910,4, 0x68bca00,1, 0x68bca20,8, 0x68bca80,1, 0x68bd000,20, 0x68bd800,10, 0x68bd880,6, 0x68bd900,2, 0x68bd910,4, 0x68bda00,1, 0x68bda20,8, 0x68bda80,1, 0x68be000,20, 0x68be800,10, 0x68be880,6, 0x68be900,2, 0x68be910,4, 0x68bea00,1, 0x68bea20,8, 0x68bea80,1, 0x68bf000,20, 0x68bf800,10, 0x68bf880,6, 0x68bf900,2, 0x68bf910,4, 0x68bfa00,1, 0x68bfa20,8, 0x68bfa80,1, 0x68c0000,20, 0x68c0800,10, 0x68c0880,6, 0x68c0900,2, 0x68c0910,4, 0x68c0a00,1, 0x68c0a20,8, 0x68c0a80,1, 0x68c1000,20, 0x68c1800,10, 0x68c1880,6, 0x68c1900,2, 0x68c1910,4, 0x68c1a00,1, 0x68c1a20,8, 0x68c1a80,1, 0x68c2000,20, 0x68c2800,10, 0x68c2880,6, 0x68c2900,2, 0x68c2910,4, 0x68c2a00,1, 0x68c2a20,8, 0x68c2a80,1, 0x68c3000,20, 0x68c3800,10, 0x68c3880,6, 0x68c3900,2, 0x68c3910,4, 0x68c3a00,1, 0x68c3a20,8, 0x68c3a80,1, 0x68c4000,20, 0x68c4800,10, 0x68c4880,6, 0x68c4900,2, 0x68c4910,4, 0x68c4a00,1, 0x68c4a20,8, 0x68c4a80,1, 0x68c5000,20, 0x68c5800,10, 0x68c5880,6, 0x68c5900,2, 0x68c5910,4, 0x68c5a00,1, 0x68c5a20,8, 0x68c5a80,1, 0x68c6000,20, 0x68c6800,10, 0x68c6880,6, 0x68c6900,2, 0x68c6910,4, 0x68c6a00,1, 0x68c6a20,8, 0x68c6a80,1, 0x68c7000,20, 0x68c7800,10, 0x68c7880,6, 0x68c7900,2, 0x68c7910,4, 0x68c7a00,1, 0x68c7a20,8, 0x68c7a80,1, 0x68c8000,20, 0x68c8800,10, 0x68c8880,6, 0x68c8900,1, 0x68c8920,8, 0x68c8980,1, 0x68c9000,20, 0x68c9800,10, 0x68c9880,6, 0x68c9900,1, 0x68c9920,8, 0x68c9980,1, 0x68ca000,20, 0x68ca800,10, 0x68ca880,6, 0x68ca900,1, 0x68ca920,8, 0x68ca980,1, 0x68cb000,20, 0x68cb800,10, 0x68cb880,6, 0x68cb900,1, 0x68cb920,8, 0x68cb980,1, 0x68cc000,20, 0x68cc800,10, 0x68cc880,6, 0x68cc900,1, 0x68cc920,8, 0x68cc980,1, 0x68cd000,20, 0x68cd800,10, 0x68cd880,6, 0x68cd900,1, 0x68cd920,8, 0x68cd980,1, 0x68ce000,20, 0x68ce800,10, 0x68ce880,6, 0x68ce900,1, 0x68ce920,8, 0x68ce980,1, 0x68cf000,20, 0x68cf800,10, 0x68cf880,6, 0x68cf900,1, 0x68cf920,8, 0x68cf980,1, 0x68d0000,20, 0x68d0800,10, 0x68d0880,6, 0x68d0900,1, 0x68d0920,8, 0x68d0980,1, 0x68d1000,20, 0x68d1800,10, 0x68d1880,6, 0x68d1900,1, 0x68d1920,8, 0x68d1980,1, 0x68d2000,20, 0x68d2800,10, 0x68d2880,6, 0x68d2900,1, 0x68d2920,8, 0x68d2980,1, 0x68d3000,20, 0x68d3800,10, 0x68d3880,6, 0x68d3900,1, 0x68d3920,8, 0x68d3980,1, 0x68d4000,20, 0x68d4800,10, 0x68d4880,6, 0x68d4900,1, 0x68d4920,8, 0x68d4980,1, 0x68d5000,20, 0x68d5800,10, 0x68d5880,6, 0x68d5900,1, 0x68d5920,8, 0x68d5980,1, 0x68d6000,20, 0x68d6800,10, 0x68d6880,6, 0x68d6900,1, 0x68d6920,8, 0x68d6980,1, 0x68d7000,20, 0x68d7800,10, 0x68d7880,6, 0x68d7900,1, 0x68d7920,8, 0x68d7980,1, 0x68d8000,20, 0x68d8800,10, 0x68d8880,6, 0x68d8900,1, 0x68d8920,8, 0x68d8980,1, 0x68d9000,20, 0x68d9800,10, 0x68d9880,6, 0x68d9900,1, 0x68d9920,8, 0x68d9980,1, 0x68da000,20, 0x68da800,10, 0x68da880,6, 0x68da900,1, 0x68da920,8, 0x68da980,1, 0x68db000,20, 0x68db800,10, 0x68db880,6, 0x68db900,1, 0x68db920,8, 0x68db980,1, 0x68dc000,20, 0x68dc800,10, 0x68dc880,6, 0x68dc900,1, 0x68dc920,8, 0x68dc980,1, 0x68dd000,20, 0x68dd800,10, 0x68dd880,6, 0x68dd900,1, 0x68dd920,8, 0x68dd980,1, 0x68de000,20, 0x68de800,10, 0x68de880,6, 0x68de900,1, 0x68de920,8, 0x68de980,1, 0x68df000,20, 0x68df800,10, 0x68df880,6, 0x68df900,1, 0x68df920,8, 0x68df980,1, 0x68e0000,20, 0x68e0800,10, 0x68e0880,6, 0x68e0900,1, 0x68e0920,8, 0x68e0980,1, 0x68e1000,20, 0x68e1800,10, 0x68e1880,6, 0x68e1900,1, 0x68e1920,8, 0x68e1980,1, 0x68e2000,20, 0x68e2800,10, 0x68e2880,6, 0x68e2900,1, 0x68e2920,8, 0x68e2980,1, 0x68e3000,20, 0x68e3800,10, 0x68e3880,6, 0x68e3900,1, 0x68e3920,8, 0x68e3980,1, 0x68e4000,20, 0x68e4800,10, 0x68e4880,6, 0x68e4900,1, 0x68e4920,8, 0x68e4980,1, 0x68e5000,20, 0x68e5800,10, 0x68e5880,6, 0x68e5900,1, 0x68e5920,8, 0x68e5980,1, 0x68e6000,20, 0x68e6800,10, 0x68e6880,6, 0x68e6900,1, 0x68e6920,8, 0x68e6980,1, 0x68e7000,20, 0x68e7800,10, 0x68e7880,6, 0x68e7900,1, 0x68e7920,8, 0x68e7980,1, 0x68e8000,20, 0x68e8800,10, 0x68e8880,6, 0x68e8900,1, 0x68e8920,8, 0x68e8980,1, 0x68e9000,20, 0x68e9800,10, 0x68e9880,6, 0x68e9900,1, 0x68e9920,8, 0x68e9980,1, 0x68ea000,20, 0x68ea800,10, 0x68ea880,6, 0x68ea900,1, 0x68ea920,8, 0x68ea980,1, 0x68eb000,20, 0x68eb800,10, 0x68eb880,6, 0x68eb900,1, 0x68eb920,8, 0x68eb980,1, 0x68ec000,20, 0x68ec800,10, 0x68ec880,6, 0x68ec900,1, 0x68ec920,8, 0x68ec980,1, 0x68ed000,20, 0x68ed800,10, 0x68ed880,6, 0x68ed900,1, 0x68ed920,8, 0x68ed980,1, 0x68ee000,20, 0x68ee800,10, 0x68ee880,6, 0x68ee900,1, 0x68ee920,8, 0x68ee980,1, 0x68ef000,20, 0x68ef800,10, 0x68ef880,6, 0x68ef900,1, 0x68ef920,8, 0x68ef980,1, 0x68f0000,20, 0x68f0800,10, 0x68f0880,6, 0x68f0900,1, 0x68f0920,8, 0x68f0980,1, 0x68f1000,20, 0x68f1800,10, 0x68f1880,6, 0x68f1900,1, 0x68f1920,8, 0x68f1980,1, 0x68f2000,20, 0x68f2800,10, 0x68f2880,6, 0x68f2900,1, 0x68f2920,8, 0x68f2980,1, 0x68f3000,20, 0x68f3800,10, 0x68f3880,6, 0x68f3900,1, 0x68f3920,8, 0x68f3980,1, 0x68f4000,20, 0x68f4800,10, 0x68f4880,6, 0x68f4900,1, 0x68f4920,8, 0x68f4980,1, 0x68f5000,20, 0x68f5800,10, 0x68f5880,6, 0x68f5900,1, 0x68f5920,8, 0x68f5980,1, 0x68f6000,20, 0x68f6800,10, 0x68f6880,6, 0x68f6900,1, 0x68f6920,8, 0x68f6980,1, 0x68f7000,20, 0x68f7800,10, 0x68f7880,6, 0x68f7900,1, 0x68f7920,8, 0x68f7980,1, 0x68f8000,20, 0x68f8800,10, 0x68f8880,6, 0x68f8900,1, 0x68f8920,8, 0x68f8980,1, 0x68f9000,20, 0x68f9800,10, 0x68f9880,6, 0x68f9900,1, 0x68f9920,8, 0x68f9980,1, 0x68fa000,20, 0x68fa800,10, 0x68fa880,6, 0x68fa900,1, 0x68fa920,8, 0x68fa980,1, 0x68fb000,20, 0x68fb800,10, 0x68fb880,6, 0x68fb900,1, 0x68fb920,8, 0x68fb980,1, 0x68fc000,20, 0x68fc800,10, 0x68fc880,6, 0x68fc900,1, 0x68fc920,8, 0x68fc980,1, 0x68fd000,20, 0x68fd800,10, 0x68fd880,6, 0x68fd900,1, 0x68fd920,8, 0x68fd980,1, 0x68fe000,20, 0x68fe800,10, 0x68fe880,6, 0x68fe900,1, 0x68fe920,8, 0x68fe980,1, 0x68ff000,20, 0x68ff800,10, 0x68ff880,6, 0x68ff900,1, 0x68ff920,8, 0x68ff980,1, 0x6900000,20, 0x6900800,10, 0x6900880,6, 0x6900900,1, 0x6900920,8, 0x6900980,1, 0x6901000,20, 0x6901800,10, 0x6901880,6, 0x6901900,1, 0x6901920,8, 0x6901980,1, 0x6902000,20, 0x6902800,10, 0x6902880,6, 0x6902900,1, 0x6902920,8, 0x6902980,1, 0x6903000,20, 0x6903800,10, 0x6903880,6, 0x6903900,1, 0x6903920,8, 0x6903980,1, 0x6904000,20, 0x6904800,10, 0x6904880,6, 0x6904900,1, 0x6904920,8, 0x6904980,1, 0x6905000,20, 0x6905800,10, 0x6905880,6, 0x6905900,1, 0x6905920,8, 0x6905980,1, 0x6906000,20, 0x6906800,10, 0x6906880,6, 0x6906900,1, 0x6906920,8, 0x6906980,1, 0x6907000,20, 0x6907800,10, 0x6907880,6, 0x6907900,1, 0x6907920,8, 0x6907980,1, 0x6908000,20, 0x6908800,10, 0x6908880,6, 0x6908900,1, 0x6908920,8, 0x6908980,1, 0x6909000,20, 0x6909800,10, 0x6909880,6, 0x6909900,1, 0x6909920,8, 0x6909980,1, 0x690a000,20, 0x690a800,10, 0x690a880,6, 0x690a900,1, 0x690a920,8, 0x690a980,1, 0x690b000,20, 0x690b800,10, 0x690b880,6, 0x690b900,1, 0x690b920,8, 0x690b980,1, 0x690c000,20, 0x690c800,10, 0x690c880,6, 0x690c900,1, 0x690c920,8, 0x690c980,1, 0x690d000,20, 0x690d800,10, 0x690d880,6, 0x690d900,1, 0x690d920,8, 0x690d980,1, 0x690e000,20, 0x690e800,10, 0x690e880,6, 0x690e900,1, 0x690e920,8, 0x690e980,1, 0x690f000,20, 0x690f800,10, 0x690f880,6, 0x690f900,1, 0x690f920,8, 0x690f980,1, 0x6910000,20, 0x6910800,10, 0x6910880,6, 0x6910900,1, 0x6910920,8, 0x6910980,1, 0x6911000,20, 0x6911800,10, 0x6911880,6, 0x6911900,1, 0x6911920,8, 0x6911980,1, 0x6912000,20, 0x6912800,10, 0x6912880,6, 0x6912900,1, 0x6912920,8, 0x6912980,1, 0x6913000,20, 0x6913800,10, 0x6913880,6, 0x6913900,1, 0x6913920,8, 0x6913980,1, 0x6914000,20, 0x6914800,10, 0x6914880,6, 0x6914900,1, 0x6914920,8, 0x6914980,1, 0x6915000,20, 0x6915800,10, 0x6915880,6, 0x6915900,1, 0x6915920,8, 0x6915980,1, 0x6916000,20, 0x6916800,10, 0x6916880,6, 0x6916900,1, 0x6916920,8, 0x6916980,1, 0x6917000,20, 0x6917800,10, 0x6917880,6, 0x6917900,1, 0x6917920,8, 0x6917980,1, 0x6918000,20, 0x6918800,10, 0x6918880,6, 0x6918900,1, 0x6918920,8, 0x6918980,1, 0x6919000,20, 0x6919800,10, 0x6919880,6, 0x6919900,1, 0x6919920,8, 0x6919980,1, 0x691a000,20, 0x691a800,10, 0x691a880,6, 0x691a900,1, 0x691a920,8, 0x691a980,1, 0x691b000,20, 0x691b800,10, 0x691b880,6, 0x691b900,1, 0x691b920,8, 0x691b980,1, 0x691c000,20, 0x691c800,10, 0x691c880,6, 0x691c900,1, 0x691c920,8, 0x691c980,1, 0x691d000,20, 0x691d800,10, 0x691d880,6, 0x691d900,1, 0x691d920,8, 0x691d980,1, 0x691e000,20, 0x691e800,10, 0x691e880,6, 0x691e900,1, 0x691e920,8, 0x691e980,1, 0x691f000,20, 0x691f800,10, 0x691f880,6, 0x691f900,1, 0x691f920,8, 0x691f980,1, 0x6920000,20, 0x6920800,10, 0x6920880,6, 0x6920900,1, 0x6920920,8, 0x6920980,1, 0x6921000,20, 0x6921800,10, 0x6921880,6, 0x6921900,1, 0x6921920,8, 0x6921980,1, 0x6922000,20, 0x6922800,10, 0x6922880,6, 0x6922900,1, 0x6922920,8, 0x6922980,1, 0x6923000,20, 0x6923800,10, 0x6923880,6, 0x6923900,1, 0x6923920,8, 0x6923980,1, 0x6924000,20, 0x6924800,10, 0x6924880,6, 0x6924900,1, 0x6924920,8, 0x6924980,1, 0x6925000,20, 0x6925800,10, 0x6925880,6, 0x6925900,1, 0x6925920,8, 0x6925980,1, 0x6926000,20, 0x6926800,10, 0x6926880,6, 0x6926900,1, 0x6926920,8, 0x6926980,1, 0x6927000,20, 0x6927800,10, 0x6927880,6, 0x6927900,1, 0x6927920,8, 0x6927980,1, 0x6928000,20, 0x6928800,10, 0x6928880,6, 0x6928900,1, 0x6928920,8, 0x6928980,1, 0x6929000,20, 0x6929800,10, 0x6929880,6, 0x6929900,1, 0x6929920,8, 0x6929980,1, 0x692a000,20, 0x692a800,10, 0x692a880,6, 0x692a900,1, 0x692a920,8, 0x692a980,1, 0x692b000,20, 0x692b800,10, 0x692b880,6, 0x692b900,1, 0x692b920,8, 0x692b980,1, 0x692c000,20, 0x692c800,10, 0x692c880,6, 0x692c900,1, 0x692c920,8, 0x692c980,1, 0x692d000,20, 0x692d800,10, 0x692d880,6, 0x692d900,1, 0x692d920,8, 0x692d980,1, 0x692e000,20, 0x692e800,10, 0x692e880,6, 0x692e900,1, 0x692e920,8, 0x692e980,1, 0x692f000,20, 0x692f800,10, 0x692f880,6, 0x692f900,1, 0x692f920,8, 0x692f980,1, 0x6930000,20, 0x6930800,10, 0x6930880,6, 0x6930900,1, 0x6930920,8, 0x6930980,1, 0x6931000,20, 0x6931800,10, 0x6931880,6, 0x6931900,1, 0x6931920,8, 0x6931980,1, 0x6932000,20, 0x6932800,10, 0x6932880,6, 0x6932900,1, 0x6932920,8, 0x6932980,1, 0x6933000,20, 0x6933800,10, 0x6933880,6, 0x6933900,1, 0x6933920,8, 0x6933980,1, 0x6934000,20, 0x6934800,10, 0x6934880,6, 0x6934900,1, 0x6934920,8, 0x6934980,1, 0x6935000,20, 0x6935800,10, 0x6935880,6, 0x6935900,1, 0x6935920,8, 0x6935980,1, 0x6936000,20, 0x6936800,10, 0x6936880,6, 0x6936900,1, 0x6936920,8, 0x6936980,1, 0x6937000,20, 0x6937800,10, 0x6937880,6, 0x6937900,1, 0x6937920,8, 0x6937980,1, 0x6938000,20, 0x6938800,10, 0x6938880,6, 0x6938900,1, 0x6938920,8, 0x6938980,1, 0x6939000,20, 0x6939800,10, 0x6939880,6, 0x6939900,1, 0x6939920,8, 0x6939980,1, 0x693a000,20, 0x693a800,10, 0x693a880,6, 0x693a900,1, 0x693a920,8, 0x693a980,1, 0x693b000,20, 0x693b800,10, 0x693b880,6, 0x693b900,1, 0x693b920,8, 0x693b980,1, 0x693c000,20, 0x693c800,10, 0x693c880,6, 0x693c900,1, 0x693c920,8, 0x693c980,1, 0x693d000,20, 0x693d800,10, 0x693d880,6, 0x693d900,1, 0x693d920,8, 0x693d980,1, 0x693e000,20, 0x693e800,10, 0x693e880,6, 0x693e900,1, 0x693e920,8, 0x693e980,1, 0x693f000,20, 0x693f800,10, 0x693f880,6, 0x693f900,1, 0x693f920,8, 0x693f980,1, 0x6940000,20, 0x6940800,10, 0x6940880,6, 0x6940900,1, 0x6940920,8, 0x6940980,1, 0x6941000,20, 0x6941800,10, 0x6941880,6, 0x6941900,1, 0x6941920,8, 0x6941980,1, 0x6942000,20, 0x6942800,10, 0x6942880,6, 0x6942900,1, 0x6942920,8, 0x6942980,1, 0x6943000,20, 0x6943800,10, 0x6943880,6, 0x6943900,1, 0x6943920,8, 0x6943980,1, 0x6944000,20, 0x6944800,10, 0x6944880,6, 0x6944900,1, 0x6944920,8, 0x6944980,1, 0x6945000,20, 0x6945800,10, 0x6945880,6, 0x6945900,1, 0x6945920,8, 0x6945980,1, 0x6946000,20, 0x6946800,10, 0x6946880,6, 0x6946900,1, 0x6946920,8, 0x6946980,1, 0x6947000,20, 0x6947800,10, 0x6947880,6, 0x6947900,1, 0x6947920,8, 0x6947980,1, 0x6948000,20, 0x6948800,10, 0x6948880,6, 0x6948900,1, 0x6948920,8, 0x6948980,1, 0x6949000,20, 0x6949800,10, 0x6949880,6, 0x6949900,1, 0x6949920,8, 0x6949980,1, 0x694a000,20, 0x694a800,10, 0x694a880,6, 0x694a900,1, 0x694a920,8, 0x694a980,1, 0x694b000,20, 0x694b800,10, 0x694b880,6, 0x694b900,1, 0x694b920,8, 0x694b980,1, 0x694c000,20, 0x694c800,10, 0x694c880,6, 0x694c900,1, 0x694c920,8, 0x694c980,1, 0x694d000,52, 0x694d800,10, 0x694d880,6, 0x694d900,2, 0x694d910,4, 0x694da00,1, 0x694da20,8, 0x694da80,1, 0x694e000,1, 0x694f000,1, 0x6950000,52, 0x6950800,10, 0x6950880,6, 0x6950900,2, 0x6950910,4, 0x6950a00,1, 0x6950a20,8, 0x6950a80,1, 0x6951000,1, 0x6952000,1, 0x6953000,52, 0x6953800,10, 0x6953880,6, 0x6953900,2, 0x6953910,4, 0x6953a00,1, 0x6953a20,8, 0x6953a80,1, 0x6954000,1, 0x6955000,1, 0x6956000,52, 0x6956800,10, 0x6956880,6, 0x6956900,2, 0x6956910,4, 0x6956a00,1, 0x6956a20,8, 0x6956a80,1, 0x6957000,1, 0x6958000,1, 0x6959000,52, 0x6959800,10, 0x6959880,6, 0x6959900,2, 0x6959910,4, 0x6959a00,1, 0x6959a20,8, 0x6959a80,1, 0x695a000,1, 0x695b000,1, 0x695c000,52, 0x695c800,10, 0x695c880,6, 0x695c900,2, 0x695c910,4, 0x695ca00,1, 0x695ca20,8, 0x695ca80,1, 0x695d000,1, 0x695e000,1, 0x695f000,52, 0x695f800,10, 0x695f880,6, 0x695f900,2, 0x695f910,4, 0x695fa00,1, 0x695fa20,8, 0x695fa80,1, 0x6960000,1, 0x6961000,1, 0x6962000,52, 0x6962800,10, 0x6962880,6, 0x6962900,2, 0x6962910,4, 0x6962a00,1, 0x6962a20,8, 0x6962a80,1, 0x6963000,1, 0x6964000,1, 0x6965000,52, 0x6965800,10, 0x6965880,6, 0x6965900,2, 0x6965910,4, 0x6965a00,1, 0x6965a20,8, 0x6965a80,1, 0x6966000,1, 0x6967000,1, 0x6968000,52, 0x6968800,10, 0x6968880,6, 0x6968900,2, 0x6968910,4, 0x6968a00,1, 0x6968a20,8, 0x6968a80,1, 0x6969000,1, 0x696a000,1, 0x696b000,52, 0x696b800,10, 0x696b880,6, 0x696b900,2, 0x696b910,4, 0x696ba00,1, 0x696ba20,8, 0x696ba80,1, 0x696c000,1, 0x696d000,1, 0x696e000,52, 0x696e800,10, 0x696e880,6, 0x696e900,2, 0x696e910,4, 0x696ea00,1, 0x696ea20,8, 0x696ea80,1, 0x696f000,1, 0x6970000,1, 0x6971000,52, 0x6971800,10, 0x6971880,6, 0x6971900,2, 0x6971910,4, 0x6971a00,1, 0x6971a20,8, 0x6971a80,1, 0x6972000,1, 0x6973000,1, 0x6974000,52, 0x6974800,10, 0x6974880,6, 0x6974900,2, 0x6974910,4, 0x6974a00,1, 0x6974a20,8, 0x6974a80,1, 0x6975000,1, 0x6976000,1, 0x6977000,52, 0x6977800,10, 0x6977880,6, 0x6977900,2, 0x6977910,4, 0x6977a00,1, 0x6977a20,8, 0x6977a80,1, 0x6978000,1, 0x6979000,1, 0x697a000,52, 0x697a800,10, 0x697a880,6, 0x697a900,2, 0x697a910,4, 0x697aa00,1, 0x697aa20,8, 0x697aa80,1, 0x697b000,1, 0x697c000,1, 0x697d000,52, 0x697d800,10, 0x697d880,6, 0x697d900,2, 0x697d910,4, 0x697da00,1, 0x697da20,8, 0x697da80,1, 0x697e000,1, 0x697f000,1, 0x6980000,52, 0x6980800,10, 0x6980880,6, 0x6980900,2, 0x6980910,4, 0x6980a00,1, 0x6980a20,8, 0x6980a80,1, 0x6981000,1, 0x6982000,1, 0x6983000,52, 0x6983800,10, 0x6983880,6, 0x6983900,2, 0x6983910,4, 0x6983a00,1, 0x6983a20,8, 0x6983a80,1, 0x6984000,1, 0x6985000,1, 0x6986000,52, 0x6986800,10, 0x6986880,6, 0x6986900,2, 0x6986910,4, 0x6986a00,1, 0x6986a20,8, 0x6986a80,1, 0x6987000,1, 0x6988000,1, 0x6989000,52, 0x6989800,10, 0x6989880,6, 0x6989900,2, 0x6989910,4, 0x6989a00,1, 0x6989a20,8, 0x6989a80,1, 0x698a000,1, 0x698b000,1, 0x698c000,52, 0x698c800,10, 0x698c880,6, 0x698c900,2, 0x698c910,4, 0x698ca00,1, 0x698ca20,8, 0x698ca80,1, 0x698d000,1, 0x698e000,1, 0x698f000,52, 0x698f800,10, 0x698f880,6, 0x698f900,2, 0x698f910,4, 0x698fa00,1, 0x698fa20,8, 0x698fa80,1, 0x6990000,1, 0x6991000,1, 0x6992000,52, 0x6992800,10, 0x6992880,6, 0x6992900,2, 0x6992910,4, 0x6992a00,1, 0x6992a20,8, 0x6992a80,1, 0x6993000,1, 0x6994000,1, 0x6995000,52, 0x6995800,10, 0x6995880,6, 0x6995900,2, 0x6995910,4, 0x6995a00,1, 0x6995a20,8, 0x6995a80,1, 0x6996000,1, 0x6997000,1, 0x6998000,52, 0x6998800,10, 0x6998880,6, 0x6998900,2, 0x6998910,4, 0x6998a00,1, 0x6998a20,8, 0x6998a80,1, 0x6999000,1, 0x699a000,1, 0x699b000,52, 0x699b800,10, 0x699b880,6, 0x699b900,2, 0x699b910,4, 0x699ba00,1, 0x699ba20,8, 0x699ba80,1, 0x699c000,1, 0x699d000,1, 0x699e000,52, 0x699e800,10, 0x699e880,6, 0x699e900,2, 0x699e910,4, 0x699ea00,1, 0x699ea20,8, 0x699ea80,1, 0x699f000,1, 0x69a0000,1, 0x69a1000,52, 0x69a1800,10, 0x69a1880,6, 0x69a1900,2, 0x69a1910,4, 0x69a1a00,1, 0x69a1a20,8, 0x69a1a80,1, 0x69a2000,1, 0x69a3000,1, 0x69a4000,52, 0x69a4800,10, 0x69a4880,6, 0x69a4900,2, 0x69a4910,4, 0x69a4a00,1, 0x69a4a20,8, 0x69a4a80,1, 0x69a5000,1, 0x69a6000,1, 0x69a7000,52, 0x69a7800,10, 0x69a7880,6, 0x69a7900,2, 0x69a7910,4, 0x69a7a00,1, 0x69a7a20,8, 0x69a7a80,1, 0x69a8000,1, 0x69a9000,1, 0x69aa000,52, 0x69aa800,10, 0x69aa880,6, 0x69aa900,2, 0x69aa910,4, 0x69aaa00,1, 0x69aaa20,8, 0x69aaa80,1, 0x69ab000,1, 0x69ac000,1, 0x69ad000,52, 0x69ad800,10, 0x69ad880,6, 0x69ad900,2, 0x69ad910,4, 0x69ada00,1, 0x69ada20,8, 0x69ada80,1, 0x69ae000,1, 0x69af000,1, 0x69b0000,52, 0x69b0800,10, 0x69b0880,6, 0x69b0900,2, 0x69b0910,4, 0x69b0a00,1, 0x69b0a20,8, 0x69b0a80,1, 0x69b1000,1, 0x69b2000,1, 0x69b3000,52, 0x69b3800,10, 0x69b3880,6, 0x69b3900,2, 0x69b3910,4, 0x69b3a00,1, 0x69b3a20,8, 0x69b3a80,1, 0x69b4000,1, 0x69b5000,1, 0x69b6000,52, 0x69b6800,10, 0x69b6880,6, 0x69b6900,2, 0x69b6910,4, 0x69b6a00,1, 0x69b6a20,8, 0x69b6a80,1, 0x69b7000,1, 0x69b8000,1, 0x69b9000,52, 0x69b9800,10, 0x69b9880,6, 0x69b9900,2, 0x69b9910,4, 0x69b9a00,1, 0x69b9a20,8, 0x69b9a80,1, 0x69ba000,1, 0x69bb000,1, 0x69bc000,52, 0x69bc800,10, 0x69bc880,6, 0x69bc900,2, 0x69bc910,4, 0x69bca00,1, 0x69bca20,8, 0x69bca80,1, 0x69bd000,1, 0x69be000,1, 0x69bf000,52, 0x69bf800,10, 0x69bf880,6, 0x69bf900,2, 0x69bf910,4, 0x69bfa00,1, 0x69bfa20,8, 0x69bfa80,1, 0x69c0000,1, 0x69c1000,1, 0x69c2000,52, 0x69c2800,10, 0x69c2880,6, 0x69c2900,2, 0x69c2910,4, 0x69c2a00,1, 0x69c2a20,8, 0x69c2a80,1, 0x69c3000,1, 0x69c4000,1, 0x69c5000,52, 0x69c5800,10, 0x69c5880,6, 0x69c5900,2, 0x69c5910,4, 0x69c5a00,1, 0x69c5a20,8, 0x69c5a80,1, 0x69c6000,1, 0x69c7000,1, 0x69c8000,52, 0x69c8800,10, 0x69c8880,6, 0x69c8900,2, 0x69c8910,4, 0x69c8a00,1, 0x69c8a20,8, 0x69c8a80,1, 0x69c9000,1, 0x69ca000,1, 0x69cb000,52, 0x69cb800,10, 0x69cb880,6, 0x69cb900,2, 0x69cb910,4, 0x69cba00,1, 0x69cba20,8, 0x69cba80,1, 0x69cc000,1, 0x69cd000,1, 0x69ce000,52, 0x69ce800,10, 0x69ce880,6, 0x69ce900,2, 0x69ce910,4, 0x69cea00,1, 0x69cea20,8, 0x69cea80,1, 0x69cf000,1, 0x69d0000,1, 0x69d1000,52, 0x69d1800,10, 0x69d1880,6, 0x69d1900,2, 0x69d1910,4, 0x69d1a00,1, 0x69d1a20,8, 0x69d1a80,1, 0x69d2000,1, 0x69d3000,1, 0x69d4000,52, 0x69d4800,10, 0x69d4880,6, 0x69d4900,2, 0x69d4910,4, 0x69d4a00,1, 0x69d4a20,8, 0x69d4a80,1, 0x69d5000,1, 0x69d6000,1, 0x69d7000,52, 0x69d7800,10, 0x69d7880,6, 0x69d7900,2, 0x69d7910,4, 0x69d7a00,1, 0x69d7a20,8, 0x69d7a80,1, 0x69d8000,1, 0x69d9000,1, 0x69da000,52, 0x69da800,10, 0x69da880,6, 0x69da900,2, 0x69da910,4, 0x69daa00,1, 0x69daa20,8, 0x69daa80,1, 0x69db000,1, 0x69dc000,1, 0x69dd000,52, 0x69dd800,10, 0x69dd880,6, 0x69dd900,2, 0x69dd910,4, 0x69dda00,1, 0x69dda20,8, 0x69dda80,1, 0x69de000,1, 0x69df000,1, 0x69e0000,52, 0x69e0800,10, 0x69e0880,6, 0x69e0900,2, 0x69e0910,4, 0x69e0a00,1, 0x69e0a20,8, 0x69e0a80,1, 0x69e1000,1, 0x69e2000,1, 0x69e3000,52, 0x69e3800,10, 0x69e3880,6, 0x69e3900,2, 0x69e3910,4, 0x69e3a00,1, 0x69e3a20,8, 0x69e3a80,1, 0x69e4000,1, 0x69e5000,1, 0x69e6000,52, 0x69e6800,10, 0x69e6880,6, 0x69e6900,2, 0x69e6910,4, 0x69e6a00,1, 0x69e6a20,8, 0x69e6a80,1, 0x69e7000,1, 0x69e8000,1, 0x69e9000,52, 0x69e9800,10, 0x69e9880,6, 0x69e9900,2, 0x69e9910,4, 0x69e9a00,1, 0x69e9a20,8, 0x69e9a80,1, 0x69ea000,1, 0x69eb000,1, 0x69ec000,52, 0x69ec800,10, 0x69ec880,6, 0x69ec900,2, 0x69ec910,4, 0x69eca00,1, 0x69eca20,8, 0x69eca80,1, 0x69ed000,1, 0x69ee000,1, 0x69ef000,52, 0x69ef800,10, 0x69ef880,6, 0x69ef900,2, 0x69ef910,4, 0x69efa00,1, 0x69efa20,8, 0x69efa80,1, 0x69f0000,1, 0x69f1000,1, 0x69f2000,52, 0x69f2800,10, 0x69f2880,6, 0x69f2900,2, 0x69f2910,4, 0x69f2a00,1, 0x69f2a20,8, 0x69f2a80,1, 0x69f3000,1, 0x69f4000,1, 0x69f5000,52, 0x69f5800,10, 0x69f5880,6, 0x69f5900,2, 0x69f5910,4, 0x69f5a00,1, 0x69f5a20,8, 0x69f5a80,1, 0x69f6000,1, 0x69f7000,1, 0x69f8000,52, 0x69f8800,10, 0x69f8880,6, 0x69f8900,2, 0x69f8910,4, 0x69f8a00,1, 0x69f8a20,8, 0x69f8a80,1, 0x69f9000,1, 0x69fa000,1, 0x69fb000,52, 0x69fb800,10, 0x69fb880,6, 0x69fb900,2, 0x69fb910,4, 0x69fba00,1, 0x69fba20,8, 0x69fba80,1, 0x69fc000,1, 0x69fd000,1, 0x69fe000,52, 0x69fe800,10, 0x69fe880,6, 0x69fe900,2, 0x69fe910,4, 0x69fea00,1, 0x69fea20,8, 0x69fea80,1, 0x69ff000,1, 0x6a00000,1, 0x6a01000,52, 0x6a01800,10, 0x6a01880,6, 0x6a01900,2, 0x6a01910,4, 0x6a01a00,1, 0x6a01a20,8, 0x6a01a80,1, 0x6a02000,1, 0x6a03000,1, 0x6a04000,52, 0x6a04800,10, 0x6a04880,6, 0x6a04900,2, 0x6a04910,4, 0x6a04a00,1, 0x6a04a20,8, 0x6a04a80,1, 0x6a05000,1, 0x6a06000,1, 0x6a07000,52, 0x6a07800,10, 0x6a07880,6, 0x6a07900,2, 0x6a07910,4, 0x6a07a00,1, 0x6a07a20,8, 0x6a07a80,1, 0x6a08000,1, 0x6a09000,1, 0x6a0a000,52, 0x6a0a800,10, 0x6a0a880,6, 0x6a0a900,2, 0x6a0a910,4, 0x6a0aa00,1, 0x6a0aa20,8, 0x6a0aa80,1, 0x6a0b000,1, 0x6a0c000,1, 0x6a0d000,52, 0x6a0d800,10, 0x6a0d880,6, 0x6a0d900,2, 0x6a0d910,4, 0x6a0da00,1, 0x6a0da20,8, 0x6a0da80,1, 0x6a0e000,1, 0x6a0f000,1, 0x6a10000,52, 0x6a10800,10, 0x6a10880,6, 0x6a10900,2, 0x6a10910,4, 0x6a10a00,1, 0x6a10a20,8, 0x6a10a80,1, 0x6a11000,1, 0x6a12000,1, 0x6a13000,52, 0x6a13800,10, 0x6a13880,6, 0x6a13900,2, 0x6a13910,4, 0x6a13a00,1, 0x6a13a20,8, 0x6a13a80,1, 0x6a14000,1, 0x6a15000,1, 0x6a16000,20, 0x6a16800,10, 0x6a16880,6, 0x6a16900,2, 0x6a16910,4, 0x6a16a00,2, 0x6a16a20,8, 0x6a16a80,1, 0x6a17000,20, 0x6a17800,1, 0x6a18000,20, 0x6a18800,10, 0x6a18880,6, 0x6a18900,2, 0x6a18910,4, 0x6a18a00,2, 0x6a18a20,8, 0x6a18a80,1, 0x6a19000,20, 0x6a19800,1, 0x6a1a000,20, 0x6a1a800,10, 0x6a1a880,6, 0x6a1a900,2, 0x6a1a910,4, 0x6a1aa00,2, 0x6a1aa20,8, 0x6a1aa80,1, 0x6a1b000,20, 0x6a1b800,1, 0x6a1c000,20, 0x6a1c800,10, 0x6a1c880,6, 0x6a1c900,2, 0x6a1c910,4, 0x6a1ca00,2, 0x6a1ca20,8, 0x6a1ca80,1, 0x6a1d000,20, 0x6a1d800,1, 0x6a1e000,20, 0x6a1e800,10, 0x6a1e880,6, 0x6a1e900,2, 0x6a1e910,4, 0x6a1ea00,2, 0x6a1ea20,8, 0x6a1ea80,1, 0x6a1f000,20, 0x6a1f800,1, 0x6a20000,20, 0x6a20800,10, 0x6a20880,6, 0x6a20900,2, 0x6a20910,4, 0x6a20a00,2, 0x6a20a20,8, 0x6a20a80,1, 0x6a21000,20, 0x6a21800,1, 0x6a22000,20, 0x6a22800,10, 0x6a22880,6, 0x6a22900,2, 0x6a22910,4, 0x6a22a00,2, 0x6a22a20,8, 0x6a22a80,1, 0x6a23000,20, 0x6a23800,1, 0x6a24000,20, 0x6a24800,10, 0x6a24880,6, 0x6a24900,2, 0x6a24910,4, 0x6a24a00,2, 0x6a24a20,8, 0x6a24a80,1, 0x6a25000,20, 0x6a25800,1, 0x6a26000,20, 0x6a26800,10, 0x6a26880,6, 0x6a26900,2, 0x6a26910,4, 0x6a26a00,2, 0x6a26a20,8, 0x6a26a80,1, 0x6a27000,20, 0x6a27800,1, 0x6a28000,20, 0x6a28800,10, 0x6a28880,6, 0x6a28900,2, 0x6a28910,4, 0x6a28a00,2, 0x6a28a20,8, 0x6a28a80,1, 0x6a29000,20, 0x6a29800,1, 0x6a2a000,20, 0x6a2a800,10, 0x6a2a880,6, 0x6a2a900,2, 0x6a2a910,4, 0x6a2aa00,2, 0x6a2aa20,8, 0x6a2aa80,1, 0x6a2b000,20, 0x6a2b800,1, 0x6a2c000,20, 0x6a2c800,10, 0x6a2c880,6, 0x6a2c900,2, 0x6a2c910,4, 0x6a2ca00,2, 0x6a2ca20,8, 0x6a2ca80,1, 0x6a2d000,20, 0x6a2d800,1, 0x6a2e000,20, 0x6a2e800,10, 0x6a2e880,6, 0x6a2e900,2, 0x6a2e910,4, 0x6a2ea00,2, 0x6a2ea20,8, 0x6a2ea80,1, 0x6a2f000,20, 0x6a2f800,1, 0x6a30000,20, 0x6a30800,10, 0x6a30880,6, 0x6a30900,2, 0x6a30910,4, 0x6a30a00,2, 0x6a30a20,8, 0x6a30a80,1, 0x6a31000,20, 0x6a31800,1, 0x6a32000,20, 0x6a32800,10, 0x6a32880,6, 0x6a32900,2, 0x6a32910,4, 0x6a32a00,2, 0x6a32a20,8, 0x6a32a80,1, 0x6a33000,20, 0x6a33800,1, 0x6a34000,20, 0x6a34800,10, 0x6a34880,6, 0x6a34900,2, 0x6a34910,4, 0x6a34a00,2, 0x6a34a20,8, 0x6a34a80,1, 0x6a35000,20, 0x6a35800,1, 0x6a36000,20, 0x6a36800,10, 0x6a36880,6, 0x6a36900,2, 0x6a36910,4, 0x6a36a00,2, 0x6a36a20,8, 0x6a36a80,1, 0x6a37000,20, 0x6a37800,1, 0x6a38000,20, 0x6a38800,10, 0x6a38880,6, 0x6a38900,2, 0x6a38910,4, 0x6a38a00,2, 0x6a38a20,8, 0x6a38a80,1, 0x6a39000,20, 0x6a39800,1, 0x6a3a000,20, 0x6a3a800,10, 0x6a3a880,6, 0x6a3a900,2, 0x6a3a910,4, 0x6a3aa00,2, 0x6a3aa20,8, 0x6a3aa80,1, 0x6a3b000,20, 0x6a3b800,1, 0x6a3c000,20, 0x6a3c800,10, 0x6a3c880,6, 0x6a3c900,2, 0x6a3c910,4, 0x6a3ca00,2, 0x6a3ca20,8, 0x6a3ca80,1, 0x6a3d000,20, 0x6a3d800,1, 0x6a3e000,20, 0x6a3e800,10, 0x6a3e880,6, 0x6a3e900,2, 0x6a3e910,4, 0x6a3ea00,2, 0x6a3ea20,8, 0x6a3ea80,1, 0x6a3f000,20, 0x6a3f800,1, 0x6a40000,20, 0x6a40800,10, 0x6a40880,6, 0x6a40900,2, 0x6a40910,4, 0x6a40a00,2, 0x6a40a20,8, 0x6a40a80,1, 0x6a41000,20, 0x6a41800,1, 0x6a42000,20, 0x6a42800,10, 0x6a42880,6, 0x6a42900,2, 0x6a42910,4, 0x6a42a00,2, 0x6a42a20,8, 0x6a42a80,1, 0x6a43000,20, 0x6a43800,1, 0x6a44000,20, 0x6a44800,10, 0x6a44880,6, 0x6a44900,2, 0x6a44910,4, 0x6a44a00,2, 0x6a44a20,8, 0x6a44a80,1, 0x6a45000,20, 0x6a45800,1, 0x6a46000,20, 0x6a46800,10, 0x6a46880,6, 0x6a46900,2, 0x6a46910,4, 0x6a46a00,2, 0x6a46a20,8, 0x6a46a80,1, 0x6a47000,20, 0x6a47800,1, 0x6a48000,20, 0x6a48800,10, 0x6a48880,6, 0x6a48900,2, 0x6a48910,4, 0x6a48a00,2, 0x6a48a20,8, 0x6a48a80,1, 0x6a49000,20, 0x6a49800,1, 0x6a4a000,20, 0x6a4a800,10, 0x6a4a880,6, 0x6a4a900,2, 0x6a4a910,4, 0x6a4aa00,2, 0x6a4aa20,8, 0x6a4aa80,1, 0x6a4b000,20, 0x6a4b800,1, 0x6a4c000,20, 0x6a4c800,10, 0x6a4c880,6, 0x6a4c900,2, 0x6a4c910,4, 0x6a4ca00,2, 0x6a4ca20,8, 0x6a4ca80,1, 0x6a4d000,20, 0x6a4d800,1, 0x6a4e000,20, 0x6a4e800,10, 0x6a4e880,6, 0x6a4e900,2, 0x6a4e910,4, 0x6a4ea00,2, 0x6a4ea20,8, 0x6a4ea80,1, 0x6a4f000,20, 0x6a4f800,1, 0x6a50000,20, 0x6a50800,10, 0x6a50880,6, 0x6a50900,2, 0x6a50910,4, 0x6a50a00,2, 0x6a50a20,8, 0x6a50a80,1, 0x6a51000,20, 0x6a51800,1, 0x6a52000,20, 0x6a52800,10, 0x6a52880,6, 0x6a52900,2, 0x6a52910,4, 0x6a52a00,2, 0x6a52a20,8, 0x6a52a80,1, 0x6a53000,20, 0x6a53800,1, 0x6a54000,20, 0x6a54800,10, 0x6a54880,6, 0x6a54900,2, 0x6a54910,4, 0x6a54a00,2, 0x6a54a20,8, 0x6a54a80,1, 0x6a55000,20, 0x6a55800,1, 0x6a56000,20, 0x6a56800,10, 0x6a56880,6, 0x6a56900,2, 0x6a56910,4, 0x6a56a00,2, 0x6a56a20,8, 0x6a56a80,1, 0x6a57000,20, 0x6a57800,1, 0x6a58000,20, 0x6a58800,10, 0x6a58880,6, 0x6a58900,2, 0x6a58910,4, 0x6a58a00,2, 0x6a58a20,8, 0x6a58a80,1, 0x6a59000,20, 0x6a59800,1, 0x6a5a000,20, 0x6a5a800,10, 0x6a5a880,6, 0x6a5a900,2, 0x6a5a910,4, 0x6a5aa00,2, 0x6a5aa20,8, 0x6a5aa80,1, 0x6a5b000,20, 0x6a5b800,1, 0x6a5c000,20, 0x6a5c800,10, 0x6a5c880,6, 0x6a5c900,2, 0x6a5c910,4, 0x6a5ca00,2, 0x6a5ca20,8, 0x6a5ca80,1, 0x6a5d000,20, 0x6a5d800,1, 0x6a5e000,20, 0x6a5e800,10, 0x6a5e880,6, 0x6a5e900,2, 0x6a5e910,4, 0x6a5ea00,2, 0x6a5ea20,8, 0x6a5ea80,1, 0x6a5f000,20, 0x6a5f800,1, 0x6a60000,20, 0x6a60800,10, 0x6a60880,6, 0x6a60900,2, 0x6a60910,4, 0x6a60a00,2, 0x6a60a20,8, 0x6a60a80,1, 0x6a61000,20, 0x6a61800,1, 0x6a62000,20, 0x6a62800,10, 0x6a62880,6, 0x6a62900,2, 0x6a62910,4, 0x6a62a00,2, 0x6a62a20,8, 0x6a62a80,1, 0x6a63000,20, 0x6a63800,1, 0x6a64000,20, 0x6a64800,10, 0x6a64880,6, 0x6a64900,2, 0x6a64910,4, 0x6a64a00,2, 0x6a64a20,8, 0x6a64a80,1, 0x6a65000,20, 0x6a65800,1, 0x6a66000,20, 0x6a66800,10, 0x6a66880,6, 0x6a66900,2, 0x6a66910,4, 0x6a66a00,2, 0x6a66a20,8, 0x6a66a80,1, 0x6a67000,20, 0x6a67800,1, 0x6a68000,20, 0x6a68800,10, 0x6a68880,6, 0x6a68900,2, 0x6a68910,4, 0x6a68a00,2, 0x6a68a20,8, 0x6a68a80,1, 0x6a69000,20, 0x6a69800,1, 0x6a6a000,20, 0x6a6a800,10, 0x6a6a880,6, 0x6a6a900,2, 0x6a6a910,4, 0x6a6aa00,2, 0x6a6aa20,8, 0x6a6aa80,1, 0x6a6b000,20, 0x6a6b800,1, 0x6a6c000,20, 0x6a6c800,10, 0x6a6c880,6, 0x6a6c900,2, 0x6a6c910,4, 0x6a6ca00,2, 0x6a6ca20,8, 0x6a6ca80,1, 0x6a6d000,20, 0x6a6d800,1, 0x6a6e000,20, 0x6a6e800,10, 0x6a6e880,6, 0x6a6e900,2, 0x6a6e910,4, 0x6a6ea00,2, 0x6a6ea20,8, 0x6a6ea80,1, 0x6a6f000,20, 0x6a6f800,1, 0x6a70000,20, 0x6a70800,10, 0x6a70880,6, 0x6a70900,2, 0x6a70910,4, 0x6a70a00,2, 0x6a70a20,8, 0x6a70a80,1, 0x6a71000,20, 0x6a71800,1, 0x6a72000,20, 0x6a72800,10, 0x6a72880,6, 0x6a72900,2, 0x6a72910,4, 0x6a72a00,2, 0x6a72a20,8, 0x6a72a80,1, 0x6a73000,20, 0x6a73800,1, 0x6a74000,20, 0x6a74800,10, 0x6a74880,6, 0x6a74900,2, 0x6a74910,4, 0x6a74a00,2, 0x6a74a20,8, 0x6a74a80,1, 0x6a75000,20, 0x6a75800,1, 0x6a76000,20, 0x6a76800,10, 0x6a76880,6, 0x6a76900,2, 0x6a76910,4, 0x6a76a00,2, 0x6a76a20,8, 0x6a76a80,1, 0x6a77000,20, 0x6a77800,1, 0x6a78000,20, 0x6a78800,10, 0x6a78880,6, 0x6a78900,2, 0x6a78910,4, 0x6a78a00,2, 0x6a78a20,8, 0x6a78a80,1, 0x6a79000,20, 0x6a79800,1, 0x6a7a000,20, 0x6a7a800,10, 0x6a7a880,6, 0x6a7a900,2, 0x6a7a910,4, 0x6a7aa00,2, 0x6a7aa20,8, 0x6a7aa80,1, 0x6a7b000,20, 0x6a7b800,1, 0x6a7c000,20, 0x6a7c800,10, 0x6a7c880,6, 0x6a7c900,2, 0x6a7c910,4, 0x6a7ca00,2, 0x6a7ca20,8, 0x6a7ca80,1, 0x6a7d000,20, 0x6a7d800,1, 0x6a7e000,20, 0x6a7e800,10, 0x6a7e880,6, 0x6a7e900,2, 0x6a7e910,4, 0x6a7ea00,2, 0x6a7ea20,8, 0x6a7ea80,1, 0x6a7f000,20, 0x6a7f800,1, 0x6a80000,20, 0x6a80800,10, 0x6a80880,6, 0x6a80900,2, 0x6a80910,4, 0x6a80a00,2, 0x6a80a20,8, 0x6a80a80,1, 0x6a81000,20, 0x6a81800,1, 0x6a82000,20, 0x6a82800,10, 0x6a82880,6, 0x6a82900,2, 0x6a82910,4, 0x6a82a00,2, 0x6a82a20,8, 0x6a82a80,1, 0x6a83000,20, 0x6a83800,1, 0x6a84000,20, 0x6a84800,10, 0x6a84880,6, 0x6a84900,2, 0x6a84910,4, 0x6a84a00,2, 0x6a84a20,8, 0x6a84a80,1, 0x6a85000,20, 0x6a85800,1, 0x6a86000,20, 0x6a86800,10, 0x6a86880,6, 0x6a86900,2, 0x6a86910,4, 0x6a86a00,2, 0x6a86a20,8, 0x6a86a80,1, 0x6a87000,20, 0x6a87800,1, 0x6a88000,20, 0x6a88800,10, 0x6a88880,6, 0x6a88900,2, 0x6a88910,4, 0x6a88a00,2, 0x6a88a20,8, 0x6a88a80,1, 0x6a89000,20, 0x6a89800,1, 0x6a8a000,20, 0x6a8a800,10, 0x6a8a880,6, 0x6a8a900,2, 0x6a8a910,4, 0x6a8aa00,2, 0x6a8aa20,8, 0x6a8aa80,1, 0x6a8b000,20, 0x6a8b800,1, 0x6a8c000,20, 0x6a8c800,10, 0x6a8c880,6, 0x6a8c900,2, 0x6a8c910,4, 0x6a8ca00,2, 0x6a8ca20,8, 0x6a8ca80,1, 0x6a8d000,20, 0x6a8d800,1, 0x6a8e000,20, 0x6a8e800,10, 0x6a8e880,6, 0x6a8e900,2, 0x6a8e910,4, 0x6a8ea00,2, 0x6a8ea20,8, 0x6a8ea80,1, 0x6a8f000,20, 0x6a8f800,1, 0x6a90000,20, 0x6a90800,10, 0x6a90880,6, 0x6a90900,2, 0x6a90910,4, 0x6a90a00,2, 0x6a90a20,8, 0x6a90a80,1, 0x6a91000,20, 0x6a91800,1, 0x6a92000,20, 0x6a92800,10, 0x6a92880,6, 0x6a92900,2, 0x6a92910,4, 0x6a92a00,2, 0x6a92a20,8, 0x6a92a80,1, 0x6a93000,20, 0x6a93800,1, 0x6a94000,20, 0x6a94800,10, 0x6a94880,6, 0x6a94900,2, 0x6a94910,4, 0x6a94a00,2, 0x6a94a20,8, 0x6a94a80,1, 0x6a95000,20, 0x6a95800,1, 0x6a96000,20, 0x6a96800,10, 0x6a96880,6, 0x6a96900,2, 0x6a96910,4, 0x6a96a00,2, 0x6a96a20,8, 0x6a96a80,1, 0x6a97000,20, 0x6a97800,1, 0x6a98000,20, 0x6a98800,10, 0x6a98880,6, 0x6a98900,2, 0x6a98910,4, 0x6a98a00,2, 0x6a98a20,8, 0x6a98a80,1, 0x6a99000,20, 0x6a99800,1, 0x6a9a000,20, 0x6a9a800,10, 0x6a9a880,6, 0x6a9a900,2, 0x6a9a910,4, 0x6a9aa00,2, 0x6a9aa20,8, 0x6a9aa80,1, 0x6a9b000,20, 0x6a9b800,1, 0x6a9c000,36, 0x6a9c800,10, 0x6a9c880,6, 0x6a9c900,2, 0x6a9c910,4, 0x6a9ca00,8, 0x6a9ca24,1, 0x6a9ca40,8, 0x6a9ca64,1, 0x6a9ca80,8, 0x6a9caa4,1, 0x6a9cac0,8, 0x6a9cae4,1, 0x6a9cb00,1, 0x6a9cb20,8, 0x6a9cb80,1, 0x6a9e000,36, 0x6a9e800,10, 0x6a9e880,6, 0x6a9e900,2, 0x6a9e910,4, 0x6a9ea00,8, 0x6a9ea24,1, 0x6a9ea40,8, 0x6a9ea64,1, 0x6a9ea80,8, 0x6a9eaa4,1, 0x6a9eac0,8, 0x6a9eae4,1, 0x6a9eb00,1, 0x6a9eb20,8, 0x6a9eb80,1, 0x6aa0000,36, 0x6aa0800,10, 0x6aa0880,6, 0x6aa0900,2, 0x6aa0910,4, 0x6aa0a00,8, 0x6aa0a24,1, 0x6aa0a40,8, 0x6aa0a64,1, 0x6aa0a80,8, 0x6aa0aa4,1, 0x6aa0ac0,8, 0x6aa0ae4,1, 0x6aa0b00,1, 0x6aa0b20,8, 0x6aa0b80,1, 0x6aa2000,36, 0x6aa2800,10, 0x6aa2880,6, 0x6aa2900,2, 0x6aa2910,4, 0x6aa2a00,8, 0x6aa2a24,1, 0x6aa2a40,8, 0x6aa2a64,1, 0x6aa2a80,8, 0x6aa2aa4,1, 0x6aa2ac0,8, 0x6aa2ae4,1, 0x6aa2b00,1, 0x6aa2b20,8, 0x6aa2b80,1, 0x6aa4000,36, 0x6aa4800,10, 0x6aa4880,6, 0x6aa4900,2, 0x6aa4910,4, 0x6aa4a00,8, 0x6aa4a24,1, 0x6aa4a40,8, 0x6aa4a64,1, 0x6aa4a80,8, 0x6aa4aa4,1, 0x6aa4ac0,8, 0x6aa4ae4,1, 0x6aa4b00,1, 0x6aa4b20,8, 0x6aa4b80,1, 0x6aa6000,36, 0x6aa6800,10, 0x6aa6880,6, 0x6aa6900,2, 0x6aa6910,4, 0x6aa6a00,8, 0x6aa6a24,1, 0x6aa6a40,8, 0x6aa6a64,1, 0x6aa6a80,8, 0x6aa6aa4,1, 0x6aa6ac0,8, 0x6aa6ae4,1, 0x6aa6b00,1, 0x6aa6b20,8, 0x6aa6b80,1, 0x6aa8000,36, 0x6aa8800,10, 0x6aa8880,6, 0x6aa8900,2, 0x6aa8910,4, 0x6aa8a00,8, 0x6aa8a24,1, 0x6aa8a40,8, 0x6aa8a64,1, 0x6aa8a80,8, 0x6aa8aa4,1, 0x6aa8ac0,8, 0x6aa8ae4,1, 0x6aa8b00,1, 0x6aa8b20,8, 0x6aa8b80,1, 0x6aaa000,36, 0x6aaa800,10, 0x6aaa880,6, 0x6aaa900,2, 0x6aaa910,4, 0x6aaaa00,8, 0x6aaaa24,1, 0x6aaaa40,8, 0x6aaaa64,1, 0x6aaaa80,8, 0x6aaaaa4,1, 0x6aaaac0,8, 0x6aaaae4,1, 0x6aaab00,1, 0x6aaab20,8, 0x6aaab80,1, 0x6aac000,36, 0x6aac800,10, 0x6aac880,6, 0x6aac900,2, 0x6aac910,4, 0x6aaca00,8, 0x6aaca24,1, 0x6aaca40,8, 0x6aaca64,1, 0x6aaca80,8, 0x6aacaa4,1, 0x6aacac0,8, 0x6aacae4,1, 0x6aacb00,1, 0x6aacb20,8, 0x6aacb80,1, 0x6aae000,36, 0x6aae800,10, 0x6aae880,6, 0x6aae900,2, 0x6aae910,4, 0x6aaea00,8, 0x6aaea24,1, 0x6aaea40,8, 0x6aaea64,1, 0x6aaea80,8, 0x6aaeaa4,1, 0x6aaeac0,8, 0x6aaeae4,1, 0x6aaeb00,1, 0x6aaeb20,8, 0x6aaeb80,1, 0x6ab0000,36, 0x6ab0800,10, 0x6ab0880,6, 0x6ab0900,2, 0x6ab0910,4, 0x6ab0a00,8, 0x6ab0a24,1, 0x6ab0a40,8, 0x6ab0a64,1, 0x6ab0a80,8, 0x6ab0aa4,1, 0x6ab0ac0,8, 0x6ab0ae4,1, 0x6ab0b00,1, 0x6ab0b20,8, 0x6ab0b80,1, 0x6ab2000,36, 0x6ab2800,10, 0x6ab2880,6, 0x6ab2900,2, 0x6ab2910,4, 0x6ab2a00,8, 0x6ab2a24,1, 0x6ab2a40,8, 0x6ab2a64,1, 0x6ab2a80,8, 0x6ab2aa4,1, 0x6ab2ac0,8, 0x6ab2ae4,1, 0x6ab2b00,1, 0x6ab2b20,8, 0x6ab2b80,1, 0x6ab4000,36, 0x6ab4800,10, 0x6ab4880,6, 0x6ab4900,2, 0x6ab4910,4, 0x6ab4a00,8, 0x6ab4a24,1, 0x6ab4a40,8, 0x6ab4a64,1, 0x6ab4a80,8, 0x6ab4aa4,1, 0x6ab4ac0,8, 0x6ab4ae4,1, 0x6ab4b00,1, 0x6ab4b20,8, 0x6ab4b80,1, 0x6ab6000,36, 0x6ab6800,10, 0x6ab6880,6, 0x6ab6900,2, 0x6ab6910,4, 0x6ab6a00,8, 0x6ab6a24,1, 0x6ab6a40,8, 0x6ab6a64,1, 0x6ab6a80,8, 0x6ab6aa4,1, 0x6ab6ac0,8, 0x6ab6ae4,1, 0x6ab6b00,1, 0x6ab6b20,8, 0x6ab6b80,1, 0x6ab8000,36, 0x6ab8800,10, 0x6ab8880,6, 0x6ab8900,2, 0x6ab8910,4, 0x6ab8a00,8, 0x6ab8a24,1, 0x6ab8a40,8, 0x6ab8a64,1, 0x6ab8a80,8, 0x6ab8aa4,1, 0x6ab8ac0,8, 0x6ab8ae4,1, 0x6ab8b00,1, 0x6ab8b20,8, 0x6ab8b80,1, 0x6aba000,36, 0x6aba800,10, 0x6aba880,6, 0x6aba900,2, 0x6aba910,4, 0x6abaa00,8, 0x6abaa24,1, 0x6abaa40,8, 0x6abaa64,1, 0x6abaa80,8, 0x6abaaa4,1, 0x6abaac0,8, 0x6abaae4,1, 0x6abab00,1, 0x6abab20,8, 0x6abab80,1, 0x6abc000,36, 0x6abc800,10, 0x6abc880,6, 0x6abc900,2, 0x6abc910,4, 0x6abca00,8, 0x6abca24,1, 0x6abca40,8, 0x6abca64,1, 0x6abca80,8, 0x6abcaa4,1, 0x6abcac0,8, 0x6abcae4,1, 0x6abcb00,1, 0x6abcb20,8, 0x6abcb80,1, 0x6abe000,36, 0x6abe800,10, 0x6abe880,6, 0x6abe900,2, 0x6abe910,4, 0x6abea00,8, 0x6abea24,1, 0x6abea40,8, 0x6abea64,1, 0x6abea80,8, 0x6abeaa4,1, 0x6abeac0,8, 0x6abeae4,1, 0x6abeb00,1, 0x6abeb20,8, 0x6abeb80,1, 0x6ac0000,36, 0x6ac0800,10, 0x6ac0880,6, 0x6ac0900,2, 0x6ac0910,4, 0x6ac0a00,8, 0x6ac0a24,1, 0x6ac0a40,8, 0x6ac0a64,1, 0x6ac0a80,8, 0x6ac0aa4,1, 0x6ac0ac0,8, 0x6ac0ae4,1, 0x6ac0b00,1, 0x6ac0b20,8, 0x6ac0b80,1, 0x6ac2000,36, 0x6ac2800,10, 0x6ac2880,6, 0x6ac2900,2, 0x6ac2910,4, 0x6ac2a00,8, 0x6ac2a24,1, 0x6ac2a40,8, 0x6ac2a64,1, 0x6ac2a80,8, 0x6ac2aa4,1, 0x6ac2ac0,8, 0x6ac2ae4,1, 0x6ac2b00,1, 0x6ac2b20,8, 0x6ac2b80,1, 0x6ac4000,36, 0x6ac4800,10, 0x6ac4880,6, 0x6ac4900,2, 0x6ac4910,4, 0x6ac4a00,8, 0x6ac4a24,1, 0x6ac4a40,8, 0x6ac4a64,1, 0x6ac4a80,8, 0x6ac4aa4,1, 0x6ac4ac0,8, 0x6ac4ae4,1, 0x6ac4b00,1, 0x6ac4b20,8, 0x6ac4b80,1, 0x6ac6000,36, 0x6ac6800,10, 0x6ac6880,6, 0x6ac6900,2, 0x6ac6910,4, 0x6ac6a00,8, 0x6ac6a24,1, 0x6ac6a40,8, 0x6ac6a64,1, 0x6ac6a80,8, 0x6ac6aa4,1, 0x6ac6ac0,8, 0x6ac6ae4,1, 0x6ac6b00,1, 0x6ac6b20,8, 0x6ac6b80,1, 0x6ac8000,36, 0x6ac8800,10, 0x6ac8880,6, 0x6ac8900,2, 0x6ac8910,4, 0x6ac8a00,8, 0x6ac8a24,1, 0x6ac8a40,8, 0x6ac8a64,1, 0x6ac8a80,8, 0x6ac8aa4,1, 0x6ac8ac0,8, 0x6ac8ae4,1, 0x6ac8b00,1, 0x6ac8b20,8, 0x6ac8b80,1, 0x6aca000,36, 0x6aca800,10, 0x6aca880,6, 0x6aca900,2, 0x6aca910,4, 0x6acaa00,8, 0x6acaa24,1, 0x6acaa40,8, 0x6acaa64,1, 0x6acaa80,8, 0x6acaaa4,1, 0x6acaac0,8, 0x6acaae4,1, 0x6acab00,1, 0x6acab20,8, 0x6acab80,1, 0x6acc000,36, 0x6acc800,10, 0x6acc880,6, 0x6acc900,2, 0x6acc910,4, 0x6acca00,8, 0x6acca24,1, 0x6acca40,8, 0x6acca64,1, 0x6acca80,8, 0x6accaa4,1, 0x6accac0,8, 0x6accae4,1, 0x6accb00,1, 0x6accb20,8, 0x6accb80,1, 0x6ace000,36, 0x6ace800,10, 0x6ace880,6, 0x6ace900,2, 0x6ace910,4, 0x6acea00,8, 0x6acea24,1, 0x6acea40,8, 0x6acea64,1, 0x6acea80,8, 0x6aceaa4,1, 0x6aceac0,8, 0x6aceae4,1, 0x6aceb00,1, 0x6aceb20,8, 0x6aceb80,1, 0x6ad0000,36, 0x6ad0800,10, 0x6ad0880,6, 0x6ad0900,2, 0x6ad0910,4, 0x6ad0a00,8, 0x6ad0a24,1, 0x6ad0a40,8, 0x6ad0a64,1, 0x6ad0a80,8, 0x6ad0aa4,1, 0x6ad0ac0,8, 0x6ad0ae4,1, 0x6ad0b00,1, 0x6ad0b20,8, 0x6ad0b80,1, 0x6ad2000,36, 0x6ad2800,10, 0x6ad2880,6, 0x6ad2900,2, 0x6ad2910,4, 0x6ad2a00,8, 0x6ad2a24,1, 0x6ad2a40,8, 0x6ad2a64,1, 0x6ad2a80,8, 0x6ad2aa4,1, 0x6ad2ac0,8, 0x6ad2ae4,1, 0x6ad2b00,1, 0x6ad2b20,8, 0x6ad2b80,1, 0x6ad4000,36, 0x6ad4800,10, 0x6ad4880,6, 0x6ad4900,2, 0x6ad4910,4, 0x6ad4a00,8, 0x6ad4a24,1, 0x6ad4a40,8, 0x6ad4a64,1, 0x6ad4a80,8, 0x6ad4aa4,1, 0x6ad4ac0,8, 0x6ad4ae4,1, 0x6ad4b00,1, 0x6ad4b20,8, 0x6ad4b80,1, 0x6ad6000,36, 0x6ad6800,10, 0x6ad6880,6, 0x6ad6900,2, 0x6ad6910,4, 0x6ad6a00,8, 0x6ad6a24,1, 0x6ad6a40,8, 0x6ad6a64,1, 0x6ad6a80,8, 0x6ad6aa4,1, 0x6ad6ac0,8, 0x6ad6ae4,1, 0x6ad6b00,1, 0x6ad6b20,8, 0x6ad6b80,1, 0x6ad8000,36, 0x6ad8800,10, 0x6ad8880,6, 0x6ad8900,2, 0x6ad8910,4, 0x6ad8a00,8, 0x6ad8a24,1, 0x6ad8a40,8, 0x6ad8a64,1, 0x6ad8a80,8, 0x6ad8aa4,1, 0x6ad8ac0,8, 0x6ad8ae4,1, 0x6ad8b00,1, 0x6ad8b20,8, 0x6ad8b80,1, 0x6ada000,36, 0x6ada800,10, 0x6ada880,6, 0x6ada900,2, 0x6ada910,4, 0x6adaa00,8, 0x6adaa24,1, 0x6adaa40,8, 0x6adaa64,1, 0x6adaa80,8, 0x6adaaa4,1, 0x6adaac0,8, 0x6adaae4,1, 0x6adab00,1, 0x6adab20,8, 0x6adab80,1, 0x6adc000,36, 0x6adc800,10, 0x6adc880,6, 0x6adc900,2, 0x6adc910,4, 0x6adca00,8, 0x6adca24,1, 0x6adca40,8, 0x6adca64,1, 0x6adca80,8, 0x6adcaa4,1, 0x6adcac0,8, 0x6adcae4,1, 0x6adcb00,1, 0x6adcb20,8, 0x6adcb80,1, 0x6ade000,36, 0x6ade800,10, 0x6ade880,6, 0x6ade900,2, 0x6ade910,4, 0x6adea00,8, 0x6adea24,1, 0x6adea40,8, 0x6adea64,1, 0x6adea80,8, 0x6adeaa4,1, 0x6adeac0,8, 0x6adeae4,1, 0x6adeb00,1, 0x6adeb20,8, 0x6adeb80,1, 0x6ae0000,36, 0x6ae0800,10, 0x6ae0880,6, 0x6ae0900,2, 0x6ae0910,4, 0x6ae0a00,8, 0x6ae0a24,1, 0x6ae0a40,8, 0x6ae0a64,1, 0x6ae0a80,8, 0x6ae0aa4,1, 0x6ae0ac0,8, 0x6ae0ae4,1, 0x6ae0b00,1, 0x6ae0b20,8, 0x6ae0b80,1, 0x6ae2000,36, 0x6ae2800,10, 0x6ae2880,6, 0x6ae2900,2, 0x6ae2910,4, 0x6ae2a00,8, 0x6ae2a24,1, 0x6ae2a40,8, 0x6ae2a64,1, 0x6ae2a80,8, 0x6ae2aa4,1, 0x6ae2ac0,8, 0x6ae2ae4,1, 0x6ae2b00,1, 0x6ae2b20,8, 0x6ae2b80,1, 0x6ae4000,36, 0x6ae4800,10, 0x6ae4880,6, 0x6ae4900,2, 0x6ae4910,4, 0x6ae4a00,8, 0x6ae4a24,1, 0x6ae4a40,8, 0x6ae4a64,1, 0x6ae4a80,8, 0x6ae4aa4,1, 0x6ae4ac0,8, 0x6ae4ae4,1, 0x6ae4b00,1, 0x6ae4b20,8, 0x6ae4b80,1, 0x6ae6000,36, 0x6ae6800,10, 0x6ae6880,6, 0x6ae6900,2, 0x6ae6910,4, 0x6ae6a00,8, 0x6ae6a24,1, 0x6ae6a40,8, 0x6ae6a64,1, 0x6ae6a80,8, 0x6ae6aa4,1, 0x6ae6ac0,8, 0x6ae6ae4,1, 0x6ae6b00,1, 0x6ae6b20,8, 0x6ae6b80,1, 0x6ae8000,36, 0x6ae8800,10, 0x6ae8880,6, 0x6ae8900,2, 0x6ae8910,4, 0x6ae8a00,8, 0x6ae8a24,1, 0x6ae8a40,8, 0x6ae8a64,1, 0x6ae8a80,8, 0x6ae8aa4,1, 0x6ae8ac0,8, 0x6ae8ae4,1, 0x6ae8b00,1, 0x6ae8b20,8, 0x6ae8b80,1, 0x6aea000,36, 0x6aea800,10, 0x6aea880,6, 0x6aea900,2, 0x6aea910,4, 0x6aeaa00,8, 0x6aeaa24,1, 0x6aeaa40,8, 0x6aeaa64,1, 0x6aeaa80,8, 0x6aeaaa4,1, 0x6aeaac0,8, 0x6aeaae4,1, 0x6aeab00,1, 0x6aeab20,8, 0x6aeab80,1, 0x6aec000,36, 0x6aec800,10, 0x6aec880,6, 0x6aec900,2, 0x6aec910,4, 0x6aeca00,8, 0x6aeca24,1, 0x6aeca40,8, 0x6aeca64,1, 0x6aeca80,8, 0x6aecaa4,1, 0x6aecac0,8, 0x6aecae4,1, 0x6aecb00,1, 0x6aecb20,8, 0x6aecb80,1, 0x6aee000,36, 0x6aee800,10, 0x6aee880,6, 0x6aee900,2, 0x6aee910,4, 0x6aeea00,8, 0x6aeea24,1, 0x6aeea40,8, 0x6aeea64,1, 0x6aeea80,8, 0x6aeeaa4,1, 0x6aeeac0,8, 0x6aeeae4,1, 0x6aeeb00,1, 0x6aeeb20,8, 0x6aeeb80,1, 0x6af0000,36, 0x6af0800,10, 0x6af0880,6, 0x6af0900,2, 0x6af0910,4, 0x6af0a00,8, 0x6af0a24,1, 0x6af0a40,8, 0x6af0a64,1, 0x6af0a80,8, 0x6af0aa4,1, 0x6af0ac0,8, 0x6af0ae4,1, 0x6af0b00,1, 0x6af0b20,8, 0x6af0b80,1, 0x6af2000,36, 0x6af2800,10, 0x6af2880,6, 0x6af2900,2, 0x6af2910,4, 0x6af2a00,8, 0x6af2a24,1, 0x6af2a40,8, 0x6af2a64,1, 0x6af2a80,8, 0x6af2aa4,1, 0x6af2ac0,8, 0x6af2ae4,1, 0x6af2b00,1, 0x6af2b20,8, 0x6af2b80,1, 0x6af4000,36, 0x6af4800,10, 0x6af4880,6, 0x6af4900,2, 0x6af4910,4, 0x6af4a00,8, 0x6af4a24,1, 0x6af4a40,8, 0x6af4a64,1, 0x6af4a80,8, 0x6af4aa4,1, 0x6af4ac0,8, 0x6af4ae4,1, 0x6af4b00,1, 0x6af4b20,8, 0x6af4b80,1, 0x6af6000,36, 0x6af6800,10, 0x6af6880,6, 0x6af6900,2, 0x6af6910,4, 0x6af6a00,8, 0x6af6a24,1, 0x6af6a40,8, 0x6af6a64,1, 0x6af6a80,8, 0x6af6aa4,1, 0x6af6ac0,8, 0x6af6ae4,1, 0x6af6b00,1, 0x6af6b20,8, 0x6af6b80,1, 0x6af8000,36, 0x6af8800,10, 0x6af8880,6, 0x6af8900,2, 0x6af8910,4, 0x6af8a00,8, 0x6af8a24,1, 0x6af8a40,8, 0x6af8a64,1, 0x6af8a80,8, 0x6af8aa4,1, 0x6af8ac0,8, 0x6af8ae4,1, 0x6af8b00,1, 0x6af8b20,8, 0x6af8b80,1, 0x6afa000,36, 0x6afa800,10, 0x6afa880,6, 0x6afa900,2, 0x6afa910,4, 0x6afaa00,8, 0x6afaa24,1, 0x6afaa40,8, 0x6afaa64,1, 0x6afaa80,8, 0x6afaaa4,1, 0x6afaac0,8, 0x6afaae4,1, 0x6afab00,1, 0x6afab20,8, 0x6afab80,1, 0x6afc000,36, 0x6afc800,10, 0x6afc880,6, 0x6afc900,2, 0x6afc910,4, 0x6afca00,8, 0x6afca24,1, 0x6afca40,8, 0x6afca64,1, 0x6afca80,8, 0x6afcaa4,1, 0x6afcac0,8, 0x6afcae4,1, 0x6afcb00,1, 0x6afcb20,8, 0x6afcb80,1, 0x6afe000,36, 0x6afe800,10, 0x6afe880,6, 0x6afe900,2, 0x6afe910,4, 0x6afea00,8, 0x6afea24,1, 0x6afea40,8, 0x6afea64,1, 0x6afea80,8, 0x6afeaa4,1, 0x6afeac0,8, 0x6afeae4,1, 0x6afeb00,1, 0x6afeb20,8, 0x6afeb80,1, 0x6b00000,36, 0x6b00800,10, 0x6b00880,6, 0x6b00900,2, 0x6b00910,4, 0x6b00a00,8, 0x6b00a24,1, 0x6b00a40,8, 0x6b00a64,1, 0x6b00a80,8, 0x6b00aa4,1, 0x6b00ac0,8, 0x6b00ae4,1, 0x6b00b00,1, 0x6b00b20,8, 0x6b00b80,1, 0x6b02000,36, 0x6b02800,10, 0x6b02880,6, 0x6b02900,2, 0x6b02910,4, 0x6b02a00,8, 0x6b02a24,1, 0x6b02a40,8, 0x6b02a64,1, 0x6b02a80,8, 0x6b02aa4,1, 0x6b02ac0,8, 0x6b02ae4,1, 0x6b02b00,1, 0x6b02b20,8, 0x6b02b80,1, 0x6b04000,36, 0x6b04800,10, 0x6b04880,6, 0x6b04900,2, 0x6b04910,4, 0x6b04a00,8, 0x6b04a24,1, 0x6b04a40,8, 0x6b04a64,1, 0x6b04a80,8, 0x6b04aa4,1, 0x6b04ac0,8, 0x6b04ae4,1, 0x6b04b00,1, 0x6b04b20,8, 0x6b04b80,1, 0x6b06000,36, 0x6b06800,10, 0x6b06880,6, 0x6b06900,2, 0x6b06910,4, 0x6b06a00,8, 0x6b06a24,1, 0x6b06a40,8, 0x6b06a64,1, 0x6b06a80,8, 0x6b06aa4,1, 0x6b06ac0,8, 0x6b06ae4,1, 0x6b06b00,1, 0x6b06b20,8, 0x6b06b80,1, 0x6b08000,36, 0x6b08800,10, 0x6b08880,6, 0x6b08900,2, 0x6b08910,4, 0x6b08a00,8, 0x6b08a24,1, 0x6b08a40,8, 0x6b08a64,1, 0x6b08a80,8, 0x6b08aa4,1, 0x6b08ac0,8, 0x6b08ae4,1, 0x6b08b00,1, 0x6b08b20,8, 0x6b08b80,1, 0x6b0a000,36, 0x6b0a800,10, 0x6b0a880,6, 0x6b0a900,2, 0x6b0a910,4, 0x6b0aa00,8, 0x6b0aa24,1, 0x6b0aa40,8, 0x6b0aa64,1, 0x6b0aa80,8, 0x6b0aaa4,1, 0x6b0aac0,8, 0x6b0aae4,1, 0x6b0ab00,1, 0x6b0ab20,8, 0x6b0ab80,1, 0x6b0c000,36, 0x6b0c800,10, 0x6b0c880,6, 0x6b0c900,2, 0x6b0c910,4, 0x6b0ca00,8, 0x6b0ca24,1, 0x6b0ca40,8, 0x6b0ca64,1, 0x6b0ca80,8, 0x6b0caa4,1, 0x6b0cac0,8, 0x6b0cae4,1, 0x6b0cb00,1, 0x6b0cb20,8, 0x6b0cb80,1, 0x6b0e000,36, 0x6b0e800,10, 0x6b0e880,6, 0x6b0e900,2, 0x6b0e910,4, 0x6b0ea00,8, 0x6b0ea24,1, 0x6b0ea40,8, 0x6b0ea64,1, 0x6b0ea80,8, 0x6b0eaa4,1, 0x6b0eac0,8, 0x6b0eae4,1, 0x6b0eb00,1, 0x6b0eb20,8, 0x6b0eb80,1, 0x6b10000,36, 0x6b10800,10, 0x6b10880,6, 0x6b10900,2, 0x6b10910,4, 0x6b10a00,8, 0x6b10a24,1, 0x6b10a40,8, 0x6b10a64,1, 0x6b10a80,8, 0x6b10aa4,1, 0x6b10ac0,8, 0x6b10ae4,1, 0x6b10b00,1, 0x6b10b20,8, 0x6b10b80,1, 0x6b12000,36, 0x6b12800,10, 0x6b12880,6, 0x6b12900,2, 0x6b12910,4, 0x6b12a00,8, 0x6b12a24,1, 0x6b12a40,8, 0x6b12a64,1, 0x6b12a80,8, 0x6b12aa4,1, 0x6b12ac0,8, 0x6b12ae4,1, 0x6b12b00,1, 0x6b12b20,8, 0x6b12b80,1, 0x6b14000,36, 0x6b14800,10, 0x6b14880,6, 0x6b14900,2, 0x6b14910,4, 0x6b14a00,8, 0x6b14a24,1, 0x6b14a40,8, 0x6b14a64,1, 0x6b14a80,8, 0x6b14aa4,1, 0x6b14ac0,8, 0x6b14ae4,1, 0x6b14b00,1, 0x6b14b20,8, 0x6b14b80,1, 0x6b16000,36, 0x6b16800,10, 0x6b16880,6, 0x6b16900,2, 0x6b16910,4, 0x6b16a00,8, 0x6b16a24,1, 0x6b16a40,8, 0x6b16a64,1, 0x6b16a80,8, 0x6b16aa4,1, 0x6b16ac0,8, 0x6b16ae4,1, 0x6b16b00,1, 0x6b16b20,8, 0x6b16b80,1, 0x6b18000,36, 0x6b18800,10, 0x6b18880,6, 0x6b18900,2, 0x6b18910,4, 0x6b18a00,8, 0x6b18a24,1, 0x6b18a40,8, 0x6b18a64,1, 0x6b18a80,8, 0x6b18aa4,1, 0x6b18ac0,8, 0x6b18ae4,1, 0x6b18b00,1, 0x6b18b20,8, 0x6b18b80,1, 0x6b1a000,36, 0x6b1a800,10, 0x6b1a880,6, 0x6b1a900,2, 0x6b1a910,4, 0x6b1aa00,8, 0x6b1aa24,1, 0x6b1aa40,8, 0x6b1aa64,1, 0x6b1aa80,8, 0x6b1aaa4,1, 0x6b1aac0,8, 0x6b1aae4,1, 0x6b1ab00,1, 0x6b1ab20,8, 0x6b1ab80,1, 0x6b1c000,36, 0x6b1c800,10, 0x6b1c880,6, 0x6b1c900,2, 0x6b1c910,4, 0x6b1ca00,8, 0x6b1ca24,1, 0x6b1ca40,8, 0x6b1ca64,1, 0x6b1ca80,8, 0x6b1caa4,1, 0x6b1cac0,8, 0x6b1cae4,1, 0x6b1cb00,1, 0x6b1cb20,8, 0x6b1cb80,1, 0x6b1e000,36, 0x6b1e800,10, 0x6b1e880,6, 0x6b1e900,2, 0x6b1e910,4, 0x6b1ea00,8, 0x6b1ea24,1, 0x6b1ea40,8, 0x6b1ea64,1, 0x6b1ea80,8, 0x6b1eaa4,1, 0x6b1eac0,8, 0x6b1eae4,1, 0x6b1eb00,1, 0x6b1eb20,8, 0x6b1eb80,1, 0x6b20000,36, 0x6b20800,10, 0x6b20880,6, 0x6b20900,2, 0x6b20910,4, 0x6b20a00,8, 0x6b20a24,1, 0x6b20a40,8, 0x6b20a64,1, 0x6b20a80,8, 0x6b20aa4,1, 0x6b20ac0,8, 0x6b20ae4,1, 0x6b20b00,1, 0x6b20b20,8, 0x6b20b80,1, 0x6b22000,20, 0x6b22800,10, 0x6b22880,6, 0x6b22900,1, 0x6b22920,8, 0x6b22980,1, 0x6b23000,20, 0x6b23800,10, 0x6b23880,6, 0x6b23900,1, 0x6b23920,8, 0x6b23980,1, 0x6b24000,20, 0x6b24800,10, 0x6b24880,6, 0x6b24900,1, 0x6b24920,8, 0x6b24980,1, 0x6b25000,20, 0x6b25800,10, 0x6b25880,6, 0x6b25900,1, 0x6b25920,8, 0x6b25980,1, 0x6b26000,20, 0x6b26800,10, 0x6b26880,6, 0x6b26900,1, 0x6b26920,8, 0x6b26980,1, 0x6b27000,20, 0x6b27800,10, 0x6b27880,6, 0x6b27900,1, 0x6b27920,8, 0x6b27980,1, 0x6b28000,20, 0x6b28800,10, 0x6b28880,6, 0x6b28900,1, 0x6b28920,8, 0x6b28980,1, 0x6b29000,20, 0x6b29800,10, 0x6b29880,6, 0x6b29900,1, 0x6b29920,8, 0x6b29980,1, 0x6b2a000,20, 0x6b2a800,10, 0x6b2a880,6, 0x6b2a900,1, 0x6b2a920,8, 0x6b2a980,1, 0x6b2b000,20, 0x6b2b800,10, 0x6b2b880,6, 0x6b2b900,1, 0x6b2b920,8, 0x6b2b980,1, 0x6b2c000,20, 0x6b2c800,10, 0x6b2c880,6, 0x6b2c900,1, 0x6b2c920,8, 0x6b2c980,1, 0x6b2d000,20, 0x6b2d800,10, 0x6b2d880,6, 0x6b2d900,1, 0x6b2d920,8, 0x6b2d980,1, 0x6b2e000,20, 0x6b2e800,10, 0x6b2e880,6, 0x6b2e900,1, 0x6b2e920,8, 0x6b2e980,1, 0x6b2f000,20, 0x6b2f800,10, 0x6b2f880,6, 0x6b2f900,1, 0x6b2f920,8, 0x6b2f980,1, 0x6b30000,20, 0x6b30800,10, 0x6b30880,6, 0x6b30900,1, 0x6b30920,8, 0x6b30980,1, 0x6b31000,20, 0x6b31800,10, 0x6b31880,6, 0x6b31900,1, 0x6b31920,8, 0x6b31980,1, 0x6b32000,20, 0x6b32800,10, 0x6b32880,6, 0x6b32900,1, 0x6b32920,8, 0x6b32980,1, 0x6b33000,20, 0x6b33800,10, 0x6b33880,6, 0x6b33900,1, 0x6b33920,8, 0x6b33980,1, 0x6b34000,20, 0x6b34800,10, 0x6b34880,6, 0x6b34900,1, 0x6b34920,8, 0x6b34980,1, 0x6b35000,20, 0x6b35800,10, 0x6b35880,6, 0x6b35900,1, 0x6b35920,8, 0x6b35980,1, 0x6b36000,20, 0x6b36800,10, 0x6b36880,6, 0x6b36900,1, 0x6b36920,8, 0x6b36980,1, 0x6b37000,20, 0x6b37800,10, 0x6b37880,6, 0x6b37900,1, 0x6b37920,8, 0x6b37980,1, 0x6b38000,20, 0x6b38800,10, 0x6b38880,6, 0x6b38900,1, 0x6b38920,8, 0x6b38980,1, 0x6b39000,20, 0x6b39800,10, 0x6b39880,6, 0x6b39900,1, 0x6b39920,8, 0x6b39980,1, 0x6b3a000,20, 0x6b3a800,10, 0x6b3a880,6, 0x6b3a900,1, 0x6b3a920,8, 0x6b3a980,1, 0x6b3b000,20, 0x6b3b800,10, 0x6b3b880,6, 0x6b3b900,1, 0x6b3b920,8, 0x6b3b980,1, 0x6b3c000,20, 0x6b3c800,10, 0x6b3c880,6, 0x6b3c900,1, 0x6b3c920,8, 0x6b3c980,1, 0x6b3d000,20, 0x6b3d800,10, 0x6b3d880,6, 0x6b3d900,1, 0x6b3d920,8, 0x6b3d980,1, 0x6b3e000,20, 0x6b3e800,10, 0x6b3e880,6, 0x6b3e900,1, 0x6b3e920,8, 0x6b3e980,1, 0x6b3f000,20, 0x6b3f800,10, 0x6b3f880,6, 0x6b3f900,1, 0x6b3f920,8, 0x6b3f980,1, 0x6b40000,20, 0x6b40800,10, 0x6b40880,6, 0x6b40900,1, 0x6b40920,8, 0x6b40980,1, 0x6b41000,20, 0x6b41800,10, 0x6b41880,6, 0x6b41900,1, 0x6b41920,8, 0x6b41980,1, 0x6b42000,20, 0x6b42800,10, 0x6b42880,6, 0x6b42900,1, 0x6b42920,8, 0x6b42980,1, 0x6b43000,20, 0x6b43800,10, 0x6b43880,6, 0x6b43900,1, 0x6b43920,8, 0x6b43980,1, 0x6b44000,20, 0x6b44800,10, 0x6b44880,6, 0x6b44900,1, 0x6b44920,8, 0x6b44980,1, 0x6b45000,20, 0x6b45800,10, 0x6b45880,6, 0x6b45900,1, 0x6b45920,8, 0x6b45980,1, 0x6b46000,20, 0x6b46800,10, 0x6b46880,6, 0x6b46900,1, 0x6b46920,8, 0x6b46980,1, 0x6b47000,20, 0x6b47800,10, 0x6b47880,6, 0x6b47900,1, 0x6b47920,8, 0x6b47980,1, 0x6b48000,20, 0x6b48800,10, 0x6b48880,6, 0x6b48900,1, 0x6b48920,8, 0x6b48980,1, 0x6b49000,20, 0x6b49800,10, 0x6b49880,6, 0x6b49900,1, 0x6b49920,8, 0x6b49980,1, 0x6b4a000,20, 0x6b4a800,10, 0x6b4a880,6, 0x6b4a900,1, 0x6b4a920,8, 0x6b4a980,1, 0x6b4b000,20, 0x6b4b800,10, 0x6b4b880,6, 0x6b4b900,1, 0x6b4b920,8, 0x6b4b980,1, 0x6b4c000,20, 0x6b4c800,10, 0x6b4c880,6, 0x6b4c900,1, 0x6b4c920,8, 0x6b4c980,1, 0x6b4d000,20, 0x6b4d800,10, 0x6b4d880,6, 0x6b4d900,1, 0x6b4d920,8, 0x6b4d980,1, 0x6b4e000,20, 0x6b4e800,10, 0x6b4e880,6, 0x6b4e900,1, 0x6b4e920,8, 0x6b4e980,1, 0x6b4f000,20, 0x6b4f800,10, 0x6b4f880,6, 0x6b4f900,1, 0x6b4f920,8, 0x6b4f980,1, 0x6b50000,20, 0x6b50800,10, 0x6b50880,6, 0x6b50900,1, 0x6b50920,8, 0x6b50980,1, 0x6b51000,20, 0x6b51800,10, 0x6b51880,6, 0x6b51900,1, 0x6b51920,8, 0x6b51980,1, 0x6b52000,20, 0x6b52800,10, 0x6b52880,6, 0x6b52900,1, 0x6b52920,8, 0x6b52980,1, 0x6b53000,20, 0x6b53800,10, 0x6b53880,6, 0x6b53900,1, 0x6b53920,8, 0x6b53980,1, 0x6b54000,20, 0x6b54800,10, 0x6b54880,6, 0x6b54900,1, 0x6b54920,8, 0x6b54980,1, 0x6b55000,20, 0x6b55800,10, 0x6b55880,6, 0x6b55900,1, 0x6b55920,8, 0x6b55980,1, 0x6b56000,20, 0x6b56800,10, 0x6b56880,6, 0x6b56900,1, 0x6b56920,8, 0x6b56980,1, 0x6b57000,20, 0x6b57800,10, 0x6b57880,6, 0x6b57900,1, 0x6b57920,8, 0x6b57980,1, 0x6b58000,20, 0x6b58800,10, 0x6b58880,6, 0x6b58900,1, 0x6b58920,8, 0x6b58980,1, 0x6b59000,20, 0x6b59800,10, 0x6b59880,6, 0x6b59900,1, 0x6b59920,8, 0x6b59980,1, 0x6b5a000,20, 0x6b5a800,10, 0x6b5a880,6, 0x6b5a900,1, 0x6b5a920,8, 0x6b5a980,1, 0x6b5b000,20, 0x6b5b800,10, 0x6b5b880,6, 0x6b5b900,1, 0x6b5b920,8, 0x6b5b980,1, 0x6b5c000,20, 0x6b5c800,10, 0x6b5c880,6, 0x6b5c900,1, 0x6b5c920,8, 0x6b5c980,1, 0x6b5d000,20, 0x6b5d800,10, 0x6b5d880,6, 0x6b5d900,1, 0x6b5d920,8, 0x6b5d980,1, 0x6b5e000,20, 0x6b5e800,10, 0x6b5e880,6, 0x6b5e900,1, 0x6b5e920,8, 0x6b5e980,1, 0x6b5f000,20, 0x6b5f800,10, 0x6b5f880,6, 0x6b5f900,1, 0x6b5f920,8, 0x6b5f980,1, 0x6b60000,20, 0x6b60800,10, 0x6b60880,6, 0x6b60900,1, 0x6b60920,8, 0x6b60980,1, 0x6b61000,20, 0x6b61800,10, 0x6b61880,6, 0x6b61900,1, 0x6b61920,8, 0x6b61980,1, 0x6b62000,20, 0x6b62800,10, 0x6b62880,6, 0x6b62900,1, 0x6b62920,8, 0x6b62980,1, 0x6b63000,20, 0x6b63800,10, 0x6b63880,6, 0x6b63900,1, 0x6b63920,8, 0x6b63980,1, 0x6b64000,20, 0x6b64800,10, 0x6b64880,6, 0x6b64900,1, 0x6b64920,8, 0x6b64980,1, 0x6b65000,84, 0x6b65800,10, 0x6b65880,6, 0x6b658a0,1, 0x6b66000,84, 0x6b66800,10, 0x6b66880,6, 0x6b668a0,1, 0x6b67000,36, 0x6b67800,10, 0x6b67880,6, 0x6b67900,2, 0x6b67910,4, 0x6b67a00,1, 0x6b68000,36, 0x6b68800,10, 0x6b68880,6, 0x6b68900,2, 0x6b68910,4, 0x6b68a00,1, 0x6b69000,10, 0x6b69080,6, 0x6b690a0,1, 0x6b6a000,10, 0x6b6a080,6, 0x6b6a0a0,1, 0x6b6b000,10, 0x6b6b080,6, 0x6b6b0a0,1, 0x6b6c000,1, 0x6b6d000,10, 0x6b6d080,6, 0x6b6d0a0,1, 0x6b6e000,1, 0x6b6f000,10, 0x6b6f080,6, 0x6b6f0a0,1, 0x6b70000,10, 0x6b70080,6, 0x6b700a0,1, 0x6b71000,10, 0x6b71080,6, 0x6b710a0,1, 0x6b72000,84, 0x6b72800,10, 0x6b72880,6, 0x6b728a0,1, 0x6b73000,84, 0x6b73800,10, 0x6b73880,6, 0x6b738a0,1, 0x6b74000,84, 0x6b74800,10, 0x6b74880,6, 0x6b748a0,1, 0x6b75000,84, 0x6b75800,10, 0x6b75880,6, 0x6b758a0,1, 0x6b76000,84, 0x6b76800,10, 0x6b76880,6, 0x6b768a0,1, 0x6b77000,84, 0x6b77800,10, 0x6b77880,6, 0x6b778a0,1, 0x6b78000,84, 0x6b78800,10, 0x6b78880,6, 0x6b788a0,1, 0x6b79000,84, 0x6b79800,10, 0x6b79880,6, 0x6b798a0,1, 0x6b7a000,84, 0x6b7a800,10, 0x6b7a880,5, 0x6b7a8a0,6, 0x6b7a8c0,1, 0x6b7b000,1, 0x6b7c000,84, 0x6b7c800,10, 0x6b7c880,5, 0x6b7c8a0,6, 0x6b7c8c0,1, 0x6b7d000,1, 0x6b7e000,52, 0x6b7e800,10, 0x6b7e880,6, 0x6b7e900,2, 0x6b7e910,4, 0x6b7ea00,1, 0x6b7f000,52, 0x6b7f800,10, 0x6b7f880,6, 0x6b7f900,2, 0x6b7f910,4, 0x6b7fa00,1, 0x6b80000,52, 0x6b80800,10, 0x6b80880,6, 0x6b80900,2, 0x6b80910,4, 0x6b80a00,1, 0x6b81000,52, 0x6b81800,10, 0x6b81880,6, 0x6b81900,2, 0x6b81910,4, 0x6b81a00,1, 0x6b82000,52, 0x6b82800,10, 0x6b82880,6, 0x6b82900,2, 0x6b82910,4, 0x6b82a00,1, 0x6b83000,52, 0x6b83800,10, 0x6b83880,6, 0x6b83900,2, 0x6b83910,4, 0x6b83a00,1, 0x6b84000,52, 0x6b84800,10, 0x6b84880,6, 0x6b84900,2, 0x6b84910,4, 0x6b84a00,1, 0x6b85000,52, 0x6b85800,10, 0x6b85880,6, 0x6b85900,2, 0x6b85910,4, 0x6b85a00,1, 0x6b86000,84, 0x6b86800,10, 0x6b86880,6, 0x6b868a0,1, 0x6b87000,1, 0x6b88000,84, 0x6b88800,10, 0x6b88880,6, 0x6b888a0,1, 0x6b89000,1, 0x6b8a000,10, 0x6b8a080,6, 0x6b8a100,2, 0x6b8a110,4, 0x6b8a200,1, 0x6b8b000,10, 0x6b8b080,6, 0x6b8b100,2, 0x6b8b110,4, 0x6b8b200,1, 0x6b8c000,84, 0x6b8c800,10, 0x6b8c880,6, 0x6b8c8a0,1, 0x6b8d000,1, 0x6b8e000,10, 0x6b8e080,6, 0x6b8e0a0,1, 0x6b8f000,20, 0x6b8f800,10, 0x6b8f880,6, 0x6b8f8a0,1, 0x6b90000,20, 0x6b90800,1, 0x6b91000,1, 0x6b92000,52, 0x6b92800,10, 0x6b92880,6, 0x6b92904,5, 0x6b92920,3, 0x6b92980,1, 0x6b93000,20, 0x6b93800,1, 0x6b94000,10, 0x6b94080,6, 0x6b94100,2, 0x6b94110,4, 0x6b94200,1, 0x6b95000,10, 0x6b95080,6, 0x6b95100,2, 0x6b95110,4, 0x6b95200,1, 0x6b96000,10, 0x6b96080,6, 0x6b96100,2, 0x6b96110,4, 0x6b96200,1, 0x6b97000,10, 0x6b97080,6, 0x6b97100,2, 0x6b97110,4, 0x6b97200,1, 0x6b98000,10, 0x6b98080,6, 0x6b98100,2, 0x6b98110,4, 0x6b98200,1, 0x6b99000,10, 0x6b99080,6, 0x6b99100,2, 0x6b99110,4, 0x6b99200,1, 0x6b9a000,10, 0x6b9a080,6, 0x6b9a100,2, 0x6b9a110,4, 0x6b9a200,1, 0x6b9b000,10, 0x6b9b080,6, 0x6b9b100,2, 0x6b9b110,4, 0x6b9b200,1, 0x6b9c000,10, 0x6b9c080,6, 0x6b9c100,2, 0x6b9c110,4, 0x6b9c200,1, 0x6b9d000,10, 0x6b9d080,6, 0x6b9d100,2, 0x6b9d110,4, 0x6b9d200,1, 0x6b9e000,10, 0x6b9e080,6, 0x6b9e100,2, 0x6b9e110,4, 0x6b9e200,1, 0x6b9f000,10, 0x6b9f080,6, 0x6b9f100,2, 0x6b9f110,4, 0x6b9f200,1, 0x6ba0000,10, 0x6ba0080,6, 0x6ba0100,2, 0x6ba0110,4, 0x6ba0200,1, 0x6ba1000,10, 0x6ba1080,6, 0x6ba1100,2, 0x6ba1110,4, 0x6ba1200,1, 0x6ba2000,10, 0x6ba2080,6, 0x6ba2100,2, 0x6ba2110,4, 0x6ba2200,1, 0x6ba3000,10, 0x6ba3080,6, 0x6ba3100,2, 0x6ba3110,4, 0x6ba3200,1, 0x6ba4000,10, 0x6ba4080,5, 0x6ba40a0,6, 0x6ba4100,2, 0x6ba4110,4, 0x6ba4200,1, 0x6ba5000,1, 0x6ba6000,10, 0x6ba6080,5, 0x6ba60a0,6, 0x6ba6100,2, 0x6ba6110,4, 0x6ba6200,1, 0x6ba7000,1, 0x6ba8000,10, 0x6ba8080,6, 0x6ba80a0,1, 0x6ba9000,52, 0x6ba9800,10, 0x6ba9880,6, 0x6ba98a0,1, 0x6baa000,52, 0x6baa800,10, 0x6baa880,6, 0x6baa8a0,1, 0x6bab000,20, 0x6bab800,10, 0x6bab880,6, 0x6bab8a0,1, 0x6bac000,52, 0x6bac100,20, 0x6bac200,4, 0x6bac800,10, 0x6bac880,5, 0x6bac8a0,6, 0x6bac8c0,1, 0x6bad000,52, 0x6bad100,20, 0x6bad200,4, 0x6bad800,10, 0x6bad880,5, 0x6bad8a0,6, 0x6bad8c0,1, 0x6bae000,20, 0x6bae800,10, 0x6bae880,6, 0x6bae900,2, 0x6bae910,4, 0x6baea00,1, 0x6bb0000,52, 0x6bb0800,8, 0x6bb0824,1, 0x6bb0840,8, 0x6bb0864,1, 0x6bb0880,8, 0x6bb08a4,1, 0x6bb08c0,8, 0x6bb08e4,1, 0x6bb0900,8, 0x6bb0924,1, 0x6bb0940,8, 0x6bb0964,1, 0x6bb0980,8, 0x6bb09a4,1, 0x6bb09c0,8, 0x6bb09e4,1, 0x6bb0a00,8, 0x6bb0a24,1, 0x6bb0a40,8, 0x6bb0a64,1, 0x6bb0a80,8, 0x6bb0aa4,1, 0x6bb0ac0,8, 0x6bb0ae4,1, 0x6bb0b00,8, 0x6bb0b24,1, 0x6bb0b40,8, 0x6bb0b64,1, 0x6bb0b80,8, 0x6bb0ba4,1, 0x6bb0bc0,8, 0x6bb0be4,1, 0x6bb0c00,8, 0x6bb0c24,1, 0x6bb0c40,8, 0x6bb0c64,1, 0x6bb0c80,8, 0x6bb0ca4,1, 0x6bb0cc0,8, 0x6bb0ce4,1, 0x6bb0d00,8, 0x6bb0d24,1, 0x6bb0d40,8, 0x6bb0d64,1, 0x6bb0d80,8, 0x6bb0da4,1, 0x6bb0dc0,8, 0x6bb0de4,1, 0x6bb0e00,8, 0x6bb0e24,1, 0x6bb0e40,8, 0x6bb0e64,1, 0x6bb0e80,8, 0x6bb0ea4,1, 0x6bb0ec0,8, 0x6bb0ee4,1, 0x6bb0f00,8, 0x6bb0f24,1, 0x6bb0f40,8, 0x6bb0f64,1, 0x6bb0f80,8, 0x6bb0fa4,1, 0x6bb0fc0,8, 0x6bb0fe4,1, 0x6bb1000,8, 0x6bb1024,1, 0x6bb1040,8, 0x6bb1064,1, 0x6bb1080,8, 0x6bb10a4,1, 0x6bb10c0,8, 0x6bb10e4,1, 0x6bb1100,1, 0x6bb2000,1, 0x6bb3000,36, 0x6bb3800,10, 0x6bb3880,6, 0x6bb38a0,1, 0x6bb4000,1, 0x6ca8000,10, 0x6ca9000,10, 0x6caa000,10, 0x6cab000,10, 0x6cac000,10, 0x6cad000,10, 0x6cae000,10, 0x6caf000,10, 0x6cb0000,10, 0x6cb1000,10, 0x6cb2000,10, 0x6cb3000,10, 0x6cb4000,10, 0x6cb5000,10, 0x8000004,1, 0x8000020,24, 0x8000084,1, 0x80000c0,16, 0x8000104,1, 0x8000138,18, 0x8000184,1, 0x80001c0,16, 0x8100000,9, 0x8100040,9, 0x8100080,9, 0x81000c0,9, 0x8100100,9, 0x8100140,9, 0x8100180,9, 0x81001c0,9, 0x8100200,9, 0x8100240,9, 0x8100280,9, 0x8100400,9, 0x8100440,9, 0x8100480,9, 0x81004c0,9, 0x8100500,9, 0x8100540,9, 0x8100580,9, 0x81005c0,9, 0x8100600,9, 0x8100640,9, 0x8100680,9, 0x8100800,9, 0x8100840,9, 0x8100880,9, 0x81008c0,9, 0x8100900,9, 0x8100940,9, 0x8100980,9, 0x81009c0,9, 0x8100a00,9, 0x8100a40,9, 0x8100a80,9, 0x8100c00,9, 0x8100c40,9, 0x8100c80,9, 0x8100cc0,9, 0x8100d00,9, 0x8100d40,9, 0x8100d80,9, 0x8100dc0,9, 0x8100e00,9, 0x8100e40,9, 0x8100e80,9, 0x8101000,9, 0x8101040,9, 0x8101080,9, 0x81010c0,9, 0x8101100,9, 0x8101140,9, 0x8101180,9, 0x81011c0,9, 0x8101200,9, 0x8101240,9, 0x8101280,9, 0x8101400,9, 0x8101440,9, 0x8101480,9, 0x81014c0,9, 0x8101500,9, 0x8101540,9, 0x8101580,9, 0x81015c0,9, 0x8101600,9, 0x8101640,9, 0x8101680,9, 0x8101800,9, 0x8101840,9, 0x8101880,9, 0x81018c0,9, 0x8101900,9, 0x8101940,9, 0x8101980,9, 0x81019c0,9, 0x8101a00,9, 0x8101a40,9, 0x8101a80,9, 0x8101c00,9, 0x8101c40,9, 0x8101c80,9, 0x8101cc0,9, 0x8101d00,9, 0x8101d40,9, 0x8101d80,9, 0x8101dc0,9, 0x8101e00,9, 0x8101e40,9, 0x8101e80,9, 0x8102000,9, 0x8102040,9, 0x8102080,9, 0x81020c0,9, 0x8102100,9, 0x8102140,9, 0x8102180,9, 0x81021c0,9, 0x8102200,9, 0x8102240,9, 0x8102280,9, 0x8102400,9, 0x8102440,9, 0x8102480,9, 0x81024c0,9, 0x8102500,9, 0x8102540,9, 0x8102580,9, 0x81025c0,9, 0x8102600,9, 0x8102640,9, 0x8102680,9, 0x8102800,9, 0x8102840,9, 0x8102880,9, 0x81028c0,9, 0x8102900,9, 0x8102940,9, 0x8102980,9, 0x81029c0,9, 0x8102a00,9, 0x8102a40,9, 0x8102a80,9, 0x8102c00,9, 0x8102c40,9, 0x8102c80,9, 0x8102cc0,9, 0x8102d00,9, 0x8102d40,9, 0x8102d80,9, 0x8102dc0,9, 0x8102e00,9, 0x8102e40,9, 0x8102e80,9, 0x8103000,9, 0x8103040,9, 0x8103080,9, 0x81030c0,9, 0x8103100,9, 0x8103140,9, 0x8103180,9, 0x81031c0,9, 0x8103200,9, 0x8103240,9, 0x8103280,9, 0x8103400,9, 0x8103440,9, 0x8103480,9, 0x81034c0,9, 0x8103500,9, 0x8103540,9, 0x8103580,9, 0x81035c0,9, 0x8103600,9, 0x8103640,9, 0x8103680,9, 0x8103800,9, 0x8103840,9, 0x8103880,9, 0x81038c0,9, 0x8103900,9, 0x8103940,9, 0x8103980,9, 0x81039c0,9, 0x8103a00,9, 0x8103a40,9, 0x8103a80,9, 0x8103c00,9, 0x8103c40,9, 0x8103c80,9, 0x8103cc0,9, 0x8103d00,9, 0x8103d40,9, 0x8103d80,9, 0x8103dc0,9, 0x8103e00,9, 0x8103e40,9, 0x8103e80,9, 0x8104000,9, 0x8104040,9, 0x8104080,9, 0x81040c0,9, 0x8104100,9, 0x8104140,9, 0x8104180,9, 0x81041c0,9, 0x8104200,9, 0x8104240,9, 0x8104280,9, 0x8104400,9, 0x8104440,9, 0x8104480,9, 0x81044c0,9, 0x8104500,9, 0x8104540,9, 0x8104580,9, 0x81045c0,9, 0x8104600,9, 0x8104640,9, 0x8104680,9, 0x8104800,9, 0x8104840,9, 0x8104880,9, 0x81048c0,9, 0x8104900,9, 0x8104940,9, 0x8104980,9, 0x81049c0,9, 0x8104a00,9, 0x8104a40,9, 0x8104a80,9, 0x8104c00,9, 0x8104c40,9, 0x8104c80,9, 0x8104cc0,9, 0x8104d00,9, 0x8104d40,9, 0x8104d80,9, 0x8104dc0,9, 0x8104e00,9, 0x8104e40,9, 0x8104e80,9, 0x8105000,9, 0x8105040,9, 0x8105080,9, 0x81050c0,9, 0x8105100,9, 0x8105140,9, 0x8105180,9, 0x81051c0,9, 0x8105200,9, 0x8105240,9, 0x8105280,9, 0x8105400,9, 0x8105440,9, 0x8105480,9, 0x81054c0,9, 0x8105500,9, 0x8105540,9, 0x8105580,9, 0x81055c0,9, 0x8105600,9, 0x8105640,9, 0x8105680,9, 0x8105800,9, 0x8105840,9, 0x8105880,9, 0x81058c0,9, 0x8105900,9, 0x8105940,9, 0x8105980,9, 0x81059c0,9, 0x8105a00,9, 0x8105a40,9, 0x8105a80,9, 0x8105c00,9, 0x8105c40,9, 0x8105c80,9, 0x8105cc0,9, 0x8105d00,9, 0x8105d40,9, 0x8105d80,9, 0x8105dc0,9, 0x8105e00,9, 0x8105e40,9, 0x8105e80,9, 0x8106000,9, 0x8106040,9, 0x8106080,9, 0x81060c0,9, 0x8106100,9, 0x8106140,9, 0x8106180,9, 0x81061c0,9, 0x8106200,9, 0x8106240,9, 0x8106280,9, 0x8106400,9, 0x8106440,9, 0x8106480,9, 0x81064c0,9, 0x8106500,9, 0x8106540,9, 0x8106580,9, 0x81065c0,9, 0x8106600,9, 0x8106640,9, 0x8106680,9, 0x8106800,9, 0x8106840,9, 0x8106880,9, 0x81068c0,9, 0x8106900,9, 0x8106940,9, 0x8106980,9, 0x81069c0,9, 0x8106a00,9, 0x8106a40,9, 0x8106a80,9, 0x8106c00,9, 0x8106c40,9, 0x8106c80,9, 0x8106cc0,9, 0x8106d00,9, 0x8106d40,9, 0x8106d80,9, 0x8106dc0,9, 0x8106e00,9, 0x8106e40,9, 0x8106e80,9, 0x8107000,9, 0x8107040,9, 0x8107080,9, 0x81070c0,9, 0x8107100,9, 0x8107140,9, 0x8107180,9, 0x81071c0,9, 0x8107200,9, 0x8107240,9, 0x8107280,9, 0x8107400,9, 0x8107440,9, 0x8107480,9, 0x81074c0,9, 0x8107500,9, 0x8107540,9, 0x8107580,9, 0x81075c0,9, 0x8107600,9, 0x8107640,9, 0x8107680,9, 0x8107800,9, 0x8107840,9, 0x8107880,9, 0x81078c0,9, 0x8107900,9, 0x8107940,9, 0x8107980,9, 0x81079c0,9, 0x8107a00,9, 0x8107a40,9, 0x8107a80,9, 0x8107c00,9, 0x8107c40,9, 0x8107c80,9, 0x8107cc0,9, 0x8107d00,9, 0x8107d40,9, 0x8107d80,9, 0x8107dc0,9, 0x8107e00,9, 0x8107e40,9, 0x8107e80,9, 0x8108000,9, 0x8108040,9, 0x8108080,9, 0x81080c0,9, 0x8108100,9, 0x8108140,9, 0x8108180,9, 0x81081c0,9, 0x8108200,9, 0x8108240,9, 0x8108280,9, 0x8108400,9, 0x8108440,9, 0x8108480,9, 0x81084c0,9, 0x8108500,9, 0x8108540,9, 0x8108580,9, 0x81085c0,9, 0x8108600,9, 0x8108640,9, 0x8108680,9, 0x8108800,9, 0x8108840,9, 0x8108880,9, 0x81088c0,9, 0x8108900,9, 0x8108940,9, 0x8108980,9, 0x81089c0,9, 0x8108a00,9, 0x8108a40,9, 0x8108a80,9, 0x8108c00,9, 0x8108c40,9, 0x8108c80,9, 0x8108cc0,9, 0x8108d00,9, 0x8108d40,9, 0x8108d80,9, 0x8108dc0,9, 0x8108e00,9, 0x8108e40,9, 0x8108e80,9, 0x8109000,9, 0x8109040,9, 0x8109080,9, 0x81090c0,9, 0x8109100,9, 0x8109140,9, 0x8109180,9, 0x81091c0,9, 0x8109200,9, 0x8109240,9, 0x8109280,9, 0x8109400,9, 0x8109440,9, 0x8109480,9, 0x81094c0,9, 0x8109500,9, 0x8109540,9, 0x8109580,9, 0x81095c0,9, 0x8109600,9, 0x8109640,9, 0x8109680,9, 0x8109800,9, 0x8109840,9, 0x8109880,9, 0x81098c0,9, 0x8109900,9, 0x8109940,9, 0x8109980,9, 0x81099c0,9, 0x8109a00,9, 0x8109a40,9, 0x8109a80,9, 0x8109c00,9, 0x8109c40,9, 0x8109c80,9, 0x8109cc0,9, 0x8109d00,9, 0x8109d40,9, 0x8109d80,9, 0x8109dc0,9, 0x8109e00,9, 0x8109e40,9, 0x8109e80,9, 0x810a000,9, 0x810a040,9, 0x810a080,9, 0x810a0c0,9, 0x810a100,9, 0x810a140,9, 0x810a180,9, 0x810a1c0,9, 0x810a200,9, 0x810a240,9, 0x810a280,9, 0x810a400,9, 0x810a440,9, 0x810a480,9, 0x810a4c0,9, 0x810a500,9, 0x810a540,9, 0x810a580,9, 0x810a5c0,9, 0x810a600,9, 0x810a640,9, 0x810a680,9, 0x810a800,9, 0x810a840,9, 0x810a880,9, 0x810a8c0,9, 0x810a900,9, 0x810a940,9, 0x810a980,9, 0x810a9c0,9, 0x810aa00,9, 0x810aa40,9, 0x810aa80,9, 0x810ac00,9, 0x810ac40,9, 0x810ac80,9, 0x810acc0,9, 0x810ad00,9, 0x810ad40,9, 0x810ad80,9, 0x810adc0,9, 0x810ae00,9, 0x810ae40,9, 0x810ae80,9, 0x810b000,9, 0x810b040,9, 0x810b080,9, 0x810b0c0,9, 0x810b100,9, 0x810b140,9, 0x810b180,9, 0x810b1c0,9, 0x810b200,9, 0x810b240,9, 0x810b280,9, 0x810b400,9, 0x810b440,9, 0x810b480,9, 0x810b4c0,9, 0x810b500,9, 0x810b540,9, 0x810b580,9, 0x810b5c0,9, 0x810b600,9, 0x810b640,9, 0x810b680,9, 0x810b800,9, 0x810b840,9, 0x810b880,9, 0x810b8c0,9, 0x810b900,9, 0x810b940,9, 0x810b980,9, 0x810b9c0,9, 0x810ba00,9, 0x810ba40,9, 0x810ba80,9, 0x810bc00,9, 0x810bc40,9, 0x810bc80,9, 0x810bcc0,9, 0x810bd00,9, 0x810bd40,9, 0x810bd80,9, 0x810bdc0,9, 0x810be00,9, 0x810be40,9, 0x810be80,9, 0x810c000,9, 0x810c040,9, 0x810c080,9, 0x810c0c0,9, 0x810c100,9, 0x810c140,9, 0x810c180,9, 0x810c1c0,9, 0x810c200,9, 0x810c240,9, 0x810c280,9, 0x810c400,9, 0x810c440,9, 0x810c480,9, 0x810c4c0,9, 0x810c500,9, 0x810c540,9, 0x810c580,9, 0x810c5c0,9, 0x810c600,9, 0x810c640,9, 0x810c680,9, 0x810c800,9, 0x810c840,9, 0x810c880,9, 0x810c8c0,9, 0x810c900,9, 0x810c940,9, 0x810c980,9, 0x810c9c0,9, 0x810ca00,9, 0x810ca40,9, 0x810ca80,9, 0x810cc00,9, 0x810cc40,9, 0x810cc80,9, 0x810ccc0,9, 0x810cd00,9, 0x810cd40,9, 0x810cd80,9, 0x810cdc0,9, 0x810ce00,9, 0x810ce40,9, 0x810ce80,9, 0x810d000,9, 0x810d040,9, 0x810d080,9, 0x810d0c0,9, 0x810d100,9, 0x810d140,9, 0x810d180,9, 0x810d1c0,9, 0x810d200,9, 0x810d240,9, 0x810d280,9, 0x810d400,9, 0x810d440,9, 0x810d480,9, 0x810d4c0,9, 0x810d500,9, 0x810d540,9, 0x810d580,9, 0x810d5c0,9, 0x810d600,9, 0x810d640,9, 0x810d680,9, 0x810d800,9, 0x810d840,9, 0x810d880,9, 0x810d8c0,9, 0x810d900,9, 0x810d940,9, 0x810d980,9, 0x810d9c0,9, 0x810da00,9, 0x810da40,9, 0x810da80,9, 0x810dc00,9, 0x810dc40,9, 0x810dc80,9, 0x810dcc0,9, 0x810dd00,9, 0x810dd40,9, 0x810dd80,9, 0x810ddc0,9, 0x810de00,9, 0x810de40,9, 0x810de80,9, 0x810e000,9, 0x810e040,9, 0x810e080,9, 0x810e0c0,9, 0x810e100,9, 0x810e140,9, 0x810e180,9, 0x810e1c0,9, 0x810e200,9, 0x810e240,9, 0x810e280,9, 0x810e400,9, 0x810e440,9, 0x810e480,9, 0x810e4c0,9, 0x810e500,9, 0x810e540,9, 0x810e580,9, 0x810e5c0,9, 0x810e600,9, 0x810e640,9, 0x810e680,9, 0x810e800,9, 0x810e840,9, 0x810e880,9, 0x810e8c0,9, 0x810e900,9, 0x810e940,9, 0x810e980,9, 0x810e9c0,9, 0x810ea00,9, 0x810ea40,9, 0x810ea80,9, 0x810ec00,9, 0x810ec40,9, 0x810ec80,9, 0x810ecc0,9, 0x810ed00,9, 0x810ed40,9, 0x810ed80,9, 0x810edc0,9, 0x810ee00,9, 0x810ee40,9, 0x810ee80,9, 0x810f000,9, 0x810f040,9, 0x810f080,9, 0x810f0c0,9, 0x810f100,9, 0x810f140,9, 0x810f180,9, 0x810f1c0,9, 0x810f200,9, 0x810f240,9, 0x810f280,9, 0x810f400,9, 0x810f440,9, 0x810f480,9, 0x810f4c0,9, 0x810f500,9, 0x810f540,9, 0x810f580,9, 0x810f5c0,9, 0x810f600,9, 0x810f640,9, 0x810f680,9, 0x810f800,9, 0x810f840,9, 0x810f880,9, 0x810f8c0,9, 0x810f900,9, 0x810f940,9, 0x810f980,9, 0x810f9c0,9, 0x810fa00,9, 0x810fa40,9, 0x810fa80,9, 0x810fc00,9, 0x810fc40,9, 0x810fc80,9, 0x810fcc0,9, 0x810fd00,9, 0x810fd40,9, 0x810fd80,9, 0x810fdc0,9, 0x810fe00,9, 0x810fe40,9, 0x810fe80,9, 0x8110000,9, 0x8110040,9, 0x8110080,9, 0x81100c0,9, 0x8110100,9, 0x8110140,9, 0x8110180,9, 0x81101c0,9, 0x8110200,9, 0x8110240,9, 0x8110280,9, 0x8110400,9, 0x8110440,9, 0x8110480,9, 0x81104c0,9, 0x8110500,9, 0x8110540,9, 0x8110580,9, 0x81105c0,9, 0x8110600,9, 0x8110640,9, 0x8110680,9, 0x8110800,9, 0x8110840,9, 0x8110880,9, 0x81108c0,9, 0x8110900,9, 0x8110940,9, 0x8110980,9, 0x81109c0,9, 0x8110a00,9, 0x8110a40,9, 0x8110a80,9, 0x8110c00,9, 0x8110c40,9, 0x8110c80,9, 0x8110cc0,9, 0x8110d00,9, 0x8110d40,9, 0x8110d80,9, 0x8110dc0,9, 0x8110e00,9, 0x8110e40,9, 0x8110e80,9, 0x8111000,9, 0x8111040,9, 0x8111080,9, 0x81110c0,9, 0x8111100,9, 0x8111140,9, 0x8111180,9, 0x81111c0,9, 0x8111200,9, 0x8111240,9, 0x8111280,9, 0x8111400,9, 0x8111440,9, 0x8111480,9, 0x81114c0,9, 0x8111500,9, 0x8111540,9, 0x8111580,9, 0x81115c0,9, 0x8111600,9, 0x8111640,9, 0x8111680,9, 0x8111800,9, 0x8111840,9, 0x8111880,9, 0x81118c0,9, 0x8111900,9, 0x8111940,9, 0x8111980,9, 0x81119c0,9, 0x8111a00,9, 0x8111a40,9, 0x8111a80,9, 0x8111c00,9, 0x8111c40,9, 0x8111c80,9, 0x8111cc0,9, 0x8111d00,9, 0x8111d40,9, 0x8111d80,9, 0x8111dc0,9, 0x8111e00,9, 0x8111e40,9, 0x8111e80,9, 0x8112000,9, 0x8112040,9, 0x8112080,9, 0x81120c0,9, 0x8112100,9, 0x8112140,9, 0x8112180,9, 0x81121c0,9, 0x8112200,9, 0x8112240,9, 0x8112280,9, 0x8112400,9, 0x8112440,9, 0x8112480,9, 0x81124c0,9, 0x8112500,9, 0x8112540,9, 0x8112580,9, 0x81125c0,9, 0x8112600,9, 0x8112640,9, 0x8112680,9, 0x8112800,9, 0x8112840,9, 0x8112880,9, 0x81128c0,9, 0x8112900,9, 0x8112940,9, 0x8112980,9, 0x81129c0,9, 0x8112a00,9, 0x8112a40,9, 0x8112a80,9, 0x8112c00,9, 0x8112c40,9, 0x8112c80,9, 0x8112cc0,9, 0x8112d00,9, 0x8112d40,9, 0x8112d80,9, 0x8112dc0,9, 0x8112e00,9, 0x8112e40,9, 0x8112e80,9, 0x8113000,9, 0x8113040,9, 0x8113080,9, 0x81130c0,9, 0x8113100,9, 0x8113140,9, 0x8113180,9, 0x81131c0,9, 0x8113200,9, 0x8113240,9, 0x8113280,9, 0x8113400,9, 0x8113440,9, 0x8113480,9, 0x81134c0,9, 0x8113500,9, 0x8113540,9, 0x8113580,9, 0x81135c0,9, 0x8113600,9, 0x8113640,9, 0x8113680,9, 0x8113800,9, 0x8113840,9, 0x8113880,9, 0x81138c0,9, 0x8113900,9, 0x8113940,9, 0x8113980,9, 0x81139c0,9, 0x8113a00,9, 0x8113a40,9, 0x8113a80,9, 0x8113c00,9, 0x8113c40,9, 0x8113c80,9, 0x8113cc0,9, 0x8113d00,9, 0x8113d40,9, 0x8113d80,9, 0x8113dc0,9, 0x8113e00,9, 0x8113e40,9, 0x8113e80,9, 0x8114000,9, 0x8114040,9, 0x8114080,9, 0x81140c0,9, 0x8114100,9, 0x8114140,9, 0x8114180,9, 0x81141c0,9, 0x8114200,9, 0x8114240,9, 0x8114280,9, 0x8114400,9, 0x8114440,9, 0x8114480,9, 0x81144c0,9, 0x8114500,9, 0x8114540,9, 0x8114580,9, 0x81145c0,9, 0x8114600,9, 0x8114640,9, 0x8114680,9, 0x8114800,9, 0x8114840,9, 0x8114880,9, 0x81148c0,9, 0x8114900,9, 0x8114940,9, 0x8114980,9, 0x81149c0,9, 0x8114a00,9, 0x8114a40,9, 0x8114a80,9, 0x8114c00,9, 0x8114c40,9, 0x8114c80,9, 0x8114cc0,9, 0x8114d00,9, 0x8114d40,9, 0x8114d80,9, 0x8114dc0,9, 0x8114e00,9, 0x8114e40,9, 0x8114e80,9, 0x8115000,9, 0x8115040,9, 0x8115080,9, 0x81150c0,9, 0x8115100,9, 0x8115140,9, 0x8115180,9, 0x81151c0,9, 0x8115200,9, 0x8115240,9, 0x8115280,9, 0x8115400,9, 0x8115440,9, 0x8115480,9, 0x81154c0,9, 0x8115500,9, 0x8115540,9, 0x8115580,9, 0x81155c0,9, 0x8115600,9, 0x8115640,9, 0x8115680,9, 0x8115800,9, 0x8115840,9, 0x8115880,9, 0x81158c0,9, 0x8115900,9, 0x8115940,9, 0x8115980,9, 0x81159c0,9, 0x8115a00,9, 0x8115a40,9, 0x8115a80,9, 0x8115c00,9, 0x8115c40,9, 0x8115c80,9, 0x8115cc0,9, 0x8115d00,9, 0x8115d40,9, 0x8115d80,9, 0x8115dc0,9, 0x8115e00,9, 0x8115e40,9, 0x8115e80,9, 0x8116000,9, 0x8116040,9, 0x8116080,9, 0x81160c0,9, 0x8116100,9, 0x8116140,9, 0x8116180,9, 0x81161c0,9, 0x8116200,9, 0x8116240,9, 0x8116280,9, 0x8116400,9, 0x8116440,9, 0x8116480,9, 0x81164c0,9, 0x8116500,9, 0x8116540,9, 0x8116580,9, 0x81165c0,9, 0x8116600,9, 0x8116640,9, 0x8116680,9, 0x8116800,9, 0x8116840,9, 0x8116880,9, 0x81168c0,9, 0x8116900,9, 0x8116940,9, 0x8116980,9, 0x81169c0,9, 0x8116a00,9, 0x8116a40,9, 0x8116a80,9, 0x8116c00,9, 0x8116c40,9, 0x8116c80,9, 0x8116cc0,9, 0x8116d00,9, 0x8116d40,9, 0x8116d80,9, 0x8116dc0,9, 0x8116e00,9, 0x8116e40,9, 0x8116e80,9, 0x8117000,9, 0x8117040,9, 0x8117080,9, 0x81170c0,9, 0x8117100,9, 0x8117140,9, 0x8117180,9, 0x81171c0,9, 0x8117200,9, 0x8117240,9, 0x8117280,9, 0x8117400,9, 0x8117440,9, 0x8117480,9, 0x81174c0,9, 0x8117500,9, 0x8117540,9, 0x8117580,9, 0x81175c0,9, 0x8117600,9, 0x8117640,9, 0x8117680,9, 0x8117800,9, 0x8117840,9, 0x8117880,9, 0x81178c0,9, 0x8117900,9, 0x8117940,9, 0x8117980,9, 0x81179c0,9, 0x8117a00,9, 0x8117a40,9, 0x8117a80,9, 0x8117c00,9, 0x8117c40,9, 0x8117c80,9, 0x8117cc0,9, 0x8117d00,9, 0x8117d40,9, 0x8117d80,9, 0x8117dc0,9, 0x8117e00,9, 0x8117e40,9, 0x8117e80,9, 0x8118000,9, 0x8118040,9, 0x8118080,9, 0x81180c0,9, 0x8118100,9, 0x8118140,9, 0x8118180,9, 0x81181c0,9, 0x8118200,9, 0x8118240,9, 0x8118280,9, 0x8118400,9, 0x8118440,9, 0x8118480,9, 0x81184c0,9, 0x8118500,9, 0x8118540,9, 0x8118580,9, 0x81185c0,9, 0x8118600,9, 0x8118640,9, 0x8118680,9, 0x8118800,9, 0x8118840,9, 0x8118880,9, 0x81188c0,9, 0x8118900,9, 0x8118940,9, 0x8118980,9, 0x81189c0,9, 0x8118a00,9, 0x8118a40,9, 0x8118a80,9, 0x8118c00,9, 0x8118c40,9, 0x8118c80,9, 0x8118cc0,9, 0x8118d00,9, 0x8118d40,9, 0x8118d80,9, 0x8118dc0,9, 0x8118e00,9, 0x8118e40,9, 0x8118e80,9, 0x8119000,9, 0x8119040,9, 0x8119080,9, 0x81190c0,9, 0x8119100,9, 0x8119140,9, 0x8119180,9, 0x81191c0,9, 0x8119200,9, 0x8119240,9, 0x8119280,9, 0x8119400,9, 0x8119440,9, 0x8119480,9, 0x81194c0,9, 0x8119500,9, 0x8119540,9, 0x8119580,9, 0x81195c0,9, 0x8119600,9, 0x8119640,9, 0x8119680,9, 0x8119800,9, 0x8119840,9, 0x8119880,9, 0x81198c0,9, 0x8119900,9, 0x8119940,9, 0x8119980,9, 0x81199c0,9, 0x8119a00,9, 0x8119a40,9, 0x8119a80,9, 0x8119c00,9, 0x8119c40,9, 0x8119c80,9, 0x8119cc0,9, 0x8119d00,9, 0x8119d40,9, 0x8119d80,9, 0x8119dc0,9, 0x8119e00,9, 0x8119e40,9, 0x8119e80,9, 0x811a000,9, 0x811a040,9, 0x811a080,9, 0x811a0c0,9, 0x811a100,9, 0x811a140,9, 0x811a180,9, 0x811a1c0,9, 0x811a200,9, 0x811a240,9, 0x811a280,9, 0x811a400,9, 0x811a440,9, 0x811a480,9, 0x811a4c0,9, 0x811a500,9, 0x811a540,9, 0x811a580,9, 0x811a5c0,9, 0x811a600,9, 0x811a640,9, 0x811a680,9, 0x811a800,9, 0x811a840,9, 0x811a880,9, 0x811a8c0,9, 0x811a900,9, 0x811a940,9, 0x811a980,9, 0x811a9c0,9, 0x811aa00,9, 0x811aa40,9, 0x811aa80,9, 0x811ac00,9, 0x811ac40,9, 0x811ac80,9, 0x811acc0,9, 0x811ad00,9, 0x811ad40,9, 0x811ad80,9, 0x811adc0,9, 0x811ae00,9, 0x811ae40,9, 0x811ae80,9, 0x811b000,9, 0x811b040,9, 0x811b080,9, 0x811b0c0,9, 0x811b100,9, 0x811b140,9, 0x811b180,9, 0x811b1c0,9, 0x811b200,9, 0x811b240,9, 0x811b280,9, 0x811b400,9, 0x811b440,9, 0x811b480,9, 0x811b4c0,9, 0x811b500,9, 0x811b540,9, 0x811b580,9, 0x811b5c0,9, 0x811b600,9, 0x811b640,9, 0x811b680,9, 0x811b800,9, 0x811b840,9, 0x811b880,9, 0x811b8c0,9, 0x811b900,9, 0x811b940,9, 0x811b980,9, 0x811b9c0,9, 0x811ba00,9, 0x811ba40,9, 0x811ba80,9, 0x811bc00,9, 0x811bc40,9, 0x811bc80,9, 0x811bcc0,9, 0x811bd00,9, 0x811bd40,9, 0x811bd80,9, 0x811bdc0,9, 0x811be00,9, 0x811be40,9, 0x811be80,9, 0x811c000,9, 0x811c040,9, 0x811c080,9, 0x811c0c0,9, 0x811c100,9, 0x811c140,9, 0x811c180,9, 0x811c1c0,9, 0x811c200,9, 0x811c240,9, 0x811c280,9, 0x811c400,9, 0x811c440,9, 0x811c480,9, 0x811c4c0,9, 0x811c500,9, 0x811c540,9, 0x811c580,9, 0x811c5c0,9, 0x811c600,9, 0x811c640,9, 0x811c680,9, 0x811c800,9, 0x811c840,9, 0x811c880,9, 0x811c8c0,9, 0x811c900,9, 0x811c940,9, 0x811c980,9, 0x811c9c0,9, 0x811ca00,9, 0x811ca40,9, 0x811ca80,9, 0x811cc00,9, 0x811cc40,9, 0x811cc80,9, 0x811ccc0,9, 0x811cd00,9, 0x811cd40,9, 0x811cd80,9, 0x811cdc0,9, 0x811ce00,9, 0x811ce40,9, 0x811ce80,9, 0x811d000,9, 0x811d040,9, 0x811d080,9, 0x811d0c0,9, 0x811d100,9, 0x811d140,9, 0x811d180,9, 0x811d1c0,9, 0x811d200,9, 0x811d240,9, 0x811d280,9, 0x811d400,9, 0x811d440,9, 0x811d480,9, 0x811d4c0,9, 0x811d500,9, 0x811d540,9, 0x811d580,9, 0x811d5c0,9, 0x811d600,9, 0x811d640,9, 0x811d680,9, 0x811d800,9, 0x811d840,9, 0x811d880,9, 0x811d8c0,9, 0x811d900,9, 0x811d940,9, 0x811d980,9, 0x811d9c0,9, 0x811da00,9, 0x811da40,9, 0x811da80,9, 0x811dc00,9, 0x811dc40,9, 0x811dc80,9, 0x811dcc0,9, 0x811dd00,9, 0x811dd40,9, 0x811dd80,9, 0x811ddc0,9, 0x811de00,9, 0x811de40,9, 0x811de80,9, 0x811e000,9, 0x811e040,9, 0x811e080,9, 0x811e0c0,9, 0x811e100,9, 0x811e140,9, 0x811e180,9, 0x811e1c0,9, 0x811e200,9, 0x811e240,9, 0x811e280,9, 0x811e400,9, 0x811e440,9, 0x811e480,9, 0x811e4c0,9, 0x811e500,9, 0x811e540,9, 0x811e580,9, 0x811e5c0,9, 0x811e600,9, 0x811e640,9, 0x811e680,9, 0x811e800,9, 0x811e840,9, 0x811e880,9, 0x811e8c0,9, 0x811e900,9, 0x811e940,9, 0x811e980,9, 0x811e9c0,9, 0x811ea00,9, 0x811ea40,9, 0x811ea80,9, 0x811ec00,9, 0x811ec40,9, 0x811ec80,9, 0x811ecc0,9, 0x811ed00,9, 0x811ed40,9, 0x811ed80,9, 0x811edc0,9, 0x811ee00,9, 0x811ee40,9, 0x811ee80,9, 0x811f000,9, 0x811f040,9, 0x811f080,9, 0x811f0c0,9, 0x811f100,9, 0x811f140,9, 0x811f180,9, 0x811f1c0,9, 0x811f200,9, 0x811f240,9, 0x811f280,9, 0x811f400,9, 0x811f440,9, 0x811f480,9, 0x811f4c0,9, 0x811f500,9, 0x811f540,9, 0x811f580,9, 0x811f5c0,9, 0x811f600,9, 0x811f640,9, 0x811f680,9, 0x811f800,9, 0x811f840,9, 0x811f880,9, 0x811f8c0,9, 0x811f900,9, 0x811f940,9, 0x811f980,9, 0x811f9c0,9, 0x811fa00,9, 0x811fa40,9, 0x811fa80,9, 0x811fc00,9, 0x811fc40,9, 0x811fc80,9, 0x811fcc0,9, 0x811fd00,9, 0x811fd40,9, 0x811fd80,9, 0x811fdc0,9, 0x811fe00,9, 0x811fe40,9, 0x811fe80,9, 0x8120000,9, 0x8120040,9, 0x8120080,9, 0x81200c0,9, 0x8120100,9, 0x8120140,9, 0x8120180,9, 0x81201c0,9, 0x8120200,9, 0x8120240,9, 0x8120280,9, 0x8120400,9, 0x8120440,9, 0x8120480,9, 0x81204c0,9, 0x8120500,9, 0x8120540,9, 0x8120580,9, 0x81205c0,9, 0x8120600,9, 0x8120640,9, 0x8120680,9, 0x8120800,9, 0x8120840,9, 0x8120880,9, 0x81208c0,9, 0x8120900,9, 0x8120940,9, 0x8120980,9, 0x81209c0,9, 0x8120a00,9, 0x8120a40,9, 0x8120a80,9, 0x8120c00,9, 0x8120c40,9, 0x8120c80,9, 0x8120cc0,9, 0x8120d00,9, 0x8120d40,9, 0x8120d80,9, 0x8120dc0,9, 0x8120e00,9, 0x8120e40,9, 0x8120e80,9, 0x8121000,9, 0x8121040,9, 0x8121080,9, 0x81210c0,9, 0x8121100,9, 0x8121140,9, 0x8121180,9, 0x81211c0,9, 0x8121200,9, 0x8121240,9, 0x8121280,9, 0x8121400,9, 0x8121440,9, 0x8121480,9, 0x81214c0,9, 0x8121500,9, 0x8121540,9, 0x8121580,9, 0x81215c0,9, 0x8121600,9, 0x8121640,9, 0x8121680,9, 0x8121800,9, 0x8121840,9, 0x8121880,9, 0x81218c0,9, 0x8121900,9, 0x8121940,9, 0x8121980,9, 0x81219c0,9, 0x8121a00,9, 0x8121a40,9, 0x8121a80,9, 0x8121c00,9, 0x8121c40,9, 0x8121c80,9, 0x8121cc0,9, 0x8121d00,9, 0x8121d40,9, 0x8121d80,9, 0x8121dc0,9, 0x8121e00,9, 0x8121e40,9, 0x8121e80,9, 0x8122000,9, 0x8122040,9, 0x8122080,9, 0x81220c0,9, 0x8122100,9, 0x8122140,9, 0x8122180,9, 0x81221c0,9, 0x8122200,9, 0x8122240,9, 0x8122280,9, 0x8122400,9, 0x8122440,9, 0x8122480,9, 0x81224c0,9, 0x8122500,9, 0x8122540,9, 0x8122580,9, 0x81225c0,9, 0x8122600,9, 0x8122640,9, 0x8122680,9, 0x8122800,9, 0x8122840,9, 0x8122880,9, 0x81228c0,9, 0x8122900,9, 0x8122940,9, 0x8122980,9, 0x81229c0,9, 0x8122a00,9, 0x8122a40,9, 0x8122a80,9, 0x8122c00,9, 0x8122c40,9, 0x8122c80,9, 0x8122cc0,9, 0x8122d00,9, 0x8122d40,9, 0x8122d80,9, 0x8122dc0,9, 0x8122e00,9, 0x8122e40,9, 0x8122e80,9, 0x8123000,9, 0x8123040,9, 0x8123080,9, 0x81230c0,9, 0x8123100,9, 0x8123140,9, 0x8123180,9, 0x81231c0,9, 0x8123200,9, 0x8123240,9, 0x8123280,9, 0x8123400,9, 0x8123440,9, 0x8123480,9, 0x81234c0,9, 0x8123500,9, 0x8123540,9, 0x8123580,9, 0x81235c0,9, 0x8123600,9, 0x8123640,9, 0x8123680,9, 0x8123800,9, 0x8123840,9, 0x8123880,9, 0x81238c0,9, 0x8123900,9, 0x8123940,9, 0x8123980,9, 0x81239c0,9, 0x8123a00,9, 0x8123a40,9, 0x8123a80,9, 0x8123c00,9, 0x8123c40,9, 0x8123c80,9, 0x8123cc0,9, 0x8123d00,9, 0x8123d40,9, 0x8123d80,9, 0x8123dc0,9, 0x8123e00,9, 0x8123e40,9, 0x8123e80,9, 0x8124000,9, 0x8124040,9, 0x8124080,9, 0x81240c0,9, 0x8124100,9, 0x8124140,9, 0x8124180,9, 0x81241c0,9, 0x8124200,9, 0x8124240,9, 0x8124280,9, 0x8124400,9, 0x8124440,9, 0x8124480,9, 0x81244c0,9, 0x8124500,9, 0x8124540,9, 0x8124580,9, 0x81245c0,9, 0x8124600,9, 0x8124640,9, 0x8124680,9, 0x8124800,9, 0x8124840,9, 0x8124880,9, 0x81248c0,9, 0x8124900,9, 0x8124940,9, 0x8124980,9, 0x81249c0,9, 0x8124a00,9, 0x8124a40,9, 0x8124a80,9, 0x8124c00,9, 0x8124c40,9, 0x8124c80,9, 0x8124cc0,9, 0x8124d00,9, 0x8124d40,9, 0x8124d80,9, 0x8124dc0,9, 0x8124e00,9, 0x8124e40,9, 0x8124e80,9, 0x8125000,9, 0x8125040,9, 0x8125080,9, 0x81250c0,9, 0x8125100,9, 0x8125140,9, 0x8125180,9, 0x81251c0,9, 0x8125200,9, 0x8125240,9, 0x8125280,9, 0x8125400,9, 0x8125440,9, 0x8125480,9, 0x81254c0,9, 0x8125500,9, 0x8125540,9, 0x8125580,9, 0x81255c0,9, 0x8125600,9, 0x8125640,9, 0x8125680,9, 0x8125800,9, 0x8125840,9, 0x8125880,9, 0x81258c0,9, 0x8125900,9, 0x8125940,9, 0x8125980,9, 0x81259c0,9, 0x8125a00,9, 0x8125a40,9, 0x8125a80,9, 0x8125c00,9, 0x8125c40,9, 0x8125c80,9, 0x8125cc0,9, 0x8125d00,9, 0x8125d40,9, 0x8125d80,9, 0x8125dc0,9, 0x8125e00,9, 0x8125e40,9, 0x8125e80,9, 0x8126000,9, 0x8126040,9, 0x8126080,9, 0x81260c0,9, 0x8126100,9, 0x8126140,9, 0x8126180,9, 0x81261c0,9, 0x8126200,9, 0x8126240,9, 0x8126280,9, 0x8126400,9, 0x8126440,9, 0x8126480,9, 0x81264c0,9, 0x8126500,9, 0x8126540,9, 0x8126580,9, 0x81265c0,9, 0x8126600,9, 0x8126640,9, 0x8126680,9, 0x8126800,9, 0x8126840,9, 0x8126880,9, 0x81268c0,9, 0x8126900,9, 0x8126940,9, 0x8126980,9, 0x81269c0,9, 0x8126a00,9, 0x8126a40,9, 0x8126a80,9, 0x8126c00,9, 0x8126c40,9, 0x8126c80,9, 0x8126cc0,9, 0x8126d00,9, 0x8126d40,9, 0x8126d80,9, 0x8126dc0,9, 0x8126e00,9, 0x8126e40,9, 0x8126e80,9, 0x8127000,9, 0x8127040,9, 0x8127080,9, 0x81270c0,9, 0x8127100,9, 0x8127140,9, 0x8127180,9, 0x81271c0,9, 0x8127200,9, 0x8127240,9, 0x8127280,9, 0x8127400,9, 0x8127440,9, 0x8127480,9, 0x81274c0,9, 0x8127500,9, 0x8127540,9, 0x8127580,9, 0x81275c0,9, 0x8127600,9, 0x8127640,9, 0x8127680,9, 0x8127800,9, 0x8127840,9, 0x8127880,9, 0x81278c0,9, 0x8127900,9, 0x8127940,9, 0x8127980,9, 0x81279c0,9, 0x8127a00,9, 0x8127a40,9, 0x8127a80,9, 0x8127c00,9, 0x8127c40,9, 0x8127c80,9, 0x8127cc0,9, 0x8127d00,9, 0x8127d40,9, 0x8127d80,9, 0x8127dc0,9, 0x8127e00,9, 0x8127e40,9, 0x8127e80,9, 0x8128000,9, 0x8128040,9, 0x8128080,9, 0x81280c0,9, 0x8128100,9, 0x8128140,9, 0x8128180,9, 0x81281c0,9, 0x8128200,9, 0x8128240,9, 0x8128280,9, 0x8128400,9, 0x8128440,9, 0x8128480,9, 0x81284c0,9, 0x8128500,9, 0x8128540,9, 0x8128580,9, 0x81285c0,9, 0x8128600,9, 0x8128640,9, 0x8128680,9, 0x8128800,9, 0x8128840,9, 0x8128880,9, 0x81288c0,9, 0x8128900,9, 0x8128940,9, 0x8128980,9, 0x81289c0,9, 0x8128a00,9, 0x8128a40,9, 0x8128a80,9, 0x8128c00,9, 0x8128c40,9, 0x8128c80,9, 0x8128cc0,9, 0x8128d00,9, 0x8128d40,9, 0x8128d80,9, 0x8128dc0,9, 0x8128e00,9, 0x8128e40,9, 0x8128e80,9, 0x8129000,9, 0x8129040,9, 0x8129080,9, 0x81290c0,9, 0x8129100,9, 0x8129140,9, 0x8129180,9, 0x81291c0,9, 0x8129200,9, 0x8129240,9, 0x8129280,9, 0x8129400,9, 0x8129440,9, 0x8129480,9, 0x81294c0,9, 0x8129500,9, 0x8129540,9, 0x8129580,9, 0x81295c0,9, 0x8129600,9, 0x8129640,9, 0x8129680,9, 0x8129800,9, 0x8129840,9, 0x8129880,9, 0x81298c0,9, 0x8129900,9, 0x8129940,9, 0x8129980,9, 0x81299c0,9, 0x8129a00,9, 0x8129a40,9, 0x8129a80,9, 0x8129c00,9, 0x8129c40,9, 0x8129c80,9, 0x8129cc0,9, 0x8129d00,9, 0x8129d40,9, 0x8129d80,9, 0x8129dc0,9, 0x8129e00,9, 0x8129e40,9, 0x8129e80,9, 0x812a000,9, 0x812a040,9, 0x812a080,9, 0x812a0c0,9, 0x812a100,9, 0x812a140,9, 0x812a180,9, 0x812a1c0,9, 0x812a200,9, 0x812a240,9, 0x812a280,9, 0x812a400,9, 0x812a440,9, 0x812a480,9, 0x812a4c0,9, 0x812a500,9, 0x812a540,9, 0x812a580,9, 0x812a5c0,9, 0x812a600,9, 0x812a640,9, 0x812a680,9, 0x812a800,9, 0x812a840,9, 0x812a880,9, 0x812a8c0,9, 0x812a900,9, 0x812a940,9, 0x812a980,9, 0x812a9c0,9, 0x812aa00,9, 0x812aa40,9, 0x812aa80,9, 0x812ac00,9, 0x812ac40,9, 0x812ac80,9, 0x812acc0,9, 0x812ad00,9, 0x812ad40,9, 0x812ad80,9, 0x812adc0,9, 0x812ae00,9, 0x812ae40,9, 0x812ae80,9, 0x812b000,9, 0x812b040,9, 0x812b080,9, 0x812b0c0,9, 0x812b100,9, 0x812b140,9, 0x812b180,9, 0x812b1c0,9, 0x812b200,9, 0x812b240,9, 0x812b280,9, 0x812b400,9, 0x812b440,9, 0x812b480,9, 0x812b4c0,9, 0x812b500,9, 0x812b540,9, 0x812b580,9, 0x812b5c0,9, 0x812b600,9, 0x812b640,9, 0x812b680,9, 0x812b800,9, 0x812b840,9, 0x812b880,9, 0x812b8c0,9, 0x812b900,9, 0x812b940,9, 0x812b980,9, 0x812b9c0,9, 0x812ba00,9, 0x812ba40,9, 0x812ba80,9, 0x812bc00,9, 0x812bc40,9, 0x812bc80,9, 0x812bcc0,9, 0x812bd00,9, 0x812bd40,9, 0x812bd80,9, 0x812bdc0,9, 0x812be00,9, 0x812be40,9, 0x812be80,9, 0x812c000,9, 0x812c040,9, 0x812c080,9, 0x812c0c0,9, 0x812c100,9, 0x812c140,9, 0x812c180,9, 0x812c1c0,9, 0x812c200,9, 0x812c240,9, 0x812c280,9, 0x812c400,9, 0x812c440,9, 0x812c480,9, 0x812c4c0,9, 0x812c500,9, 0x812c540,9, 0x812c580,9, 0x812c5c0,9, 0x812c600,9, 0x812c640,9, 0x812c680,9, 0x812c800,9, 0x812c840,9, 0x812c880,9, 0x812c8c0,9, 0x812c900,9, 0x812c940,9, 0x812c980,9, 0x812c9c0,9, 0x812ca00,9, 0x812ca40,9, 0x812ca80,9, 0x812cc00,9, 0x812cc40,9, 0x812cc80,9, 0x812ccc0,9, 0x812cd00,9, 0x812cd40,9, 0x812cd80,9, 0x812cdc0,9, 0x812ce00,9, 0x812ce40,9, 0x812ce80,9, 0x812d000,9, 0x812d040,9, 0x812d080,9, 0x812d0c0,9, 0x812d100,9, 0x812d140,9, 0x812d180,9, 0x812d1c0,9, 0x812d200,9, 0x812d240,9, 0x812d280,9, 0x812d400,9, 0x812d440,9, 0x812d480,9, 0x812d4c0,9, 0x812d500,9, 0x812d540,9, 0x812d580,9, 0x812d5c0,9, 0x812d600,9, 0x812d640,9, 0x812d680,9, 0x812d800,9, 0x812d840,9, 0x812d880,9, 0x812d8c0,9, 0x812d900,9, 0x812d940,9, 0x812d980,9, 0x812d9c0,9, 0x812da00,9, 0x812da40,9, 0x812da80,9, 0x812dc00,9, 0x812dc40,9, 0x812dc80,9, 0x812dcc0,9, 0x812dd00,9, 0x812dd40,9, 0x812dd80,9, 0x812ddc0,9, 0x812de00,9, 0x812de40,9, 0x812de80,9, 0x812e000,9, 0x812e040,9, 0x812e080,9, 0x812e0c0,9, 0x812e100,9, 0x812e140,9, 0x812e180,9, 0x812e1c0,9, 0x812e200,9, 0x812e240,9, 0x812e280,9, 0x812e400,9, 0x812e440,9, 0x812e480,9, 0x812e4c0,9, 0x812e500,9, 0x812e540,9, 0x812e580,9, 0x812e5c0,9, 0x812e600,9, 0x812e640,9, 0x812e680,9, 0x812e800,9, 0x812e840,9, 0x812e880,9, 0x812e8c0,9, 0x812e900,9, 0x812e940,9, 0x812e980,9, 0x812e9c0,9, 0x812ea00,9, 0x812ea40,9, 0x812ea80,9, 0x812ec00,9, 0x812ec40,9, 0x812ec80,9, 0x812ecc0,9, 0x812ed00,9, 0x812ed40,9, 0x812ed80,9, 0x812edc0,9, 0x812ee00,9, 0x812ee40,9, 0x812ee80,9, 0x812f000,9, 0x812f040,9, 0x812f080,9, 0x812f0c0,9, 0x812f100,9, 0x812f140,9, 0x812f180,9, 0x812f1c0,9, 0x812f200,9, 0x812f240,9, 0x812f280,9, 0x812f400,9, 0x812f440,9, 0x812f480,9, 0x812f4c0,9, 0x812f500,9, 0x812f540,9, 0x812f580,9, 0x812f5c0,9, 0x812f600,9, 0x812f640,9, 0x812f680,9, 0x812f800,9, 0x812f840,9, 0x812f880,9, 0x812f8c0,9, 0x812f900,9, 0x812f940,9, 0x812f980,9, 0x812f9c0,9, 0x812fa00,9, 0x812fa40,9, 0x812fa80,9, 0x812fc00,9, 0x812fc40,9, 0x812fc80,9, 0x812fcc0,9, 0x812fd00,9, 0x812fd40,9, 0x812fd80,9, 0x812fdc0,9, 0x812fe00,9, 0x812fe40,9, 0x812fe80,9, 0x8130000,9, 0x8130040,9, 0x8130080,9, 0x81300c0,9, 0x8130100,9, 0x8130140,9, 0x8130180,9, 0x81301c0,9, 0x8130200,9, 0x8130240,9, 0x8130280,9, 0x8130400,9, 0x8130440,9, 0x8130480,9, 0x81304c0,9, 0x8130500,9, 0x8130540,9, 0x8130580,9, 0x81305c0,9, 0x8130600,9, 0x8130640,9, 0x8130680,9, 0x8130800,9, 0x8130840,9, 0x8130880,9, 0x81308c0,9, 0x8130900,9, 0x8130940,9, 0x8130980,9, 0x81309c0,9, 0x8130a00,9, 0x8130a40,9, 0x8130a80,9, 0x8130c00,9, 0x8130c40,9, 0x8130c80,9, 0x8130cc0,9, 0x8130d00,9, 0x8130d40,9, 0x8130d80,9, 0x8130dc0,9, 0x8130e00,9, 0x8130e40,9, 0x8130e80,9, 0x8131000,9, 0x8131040,9, 0x8131080,9, 0x81310c0,9, 0x8131100,9, 0x8131140,9, 0x8131180,9, 0x81311c0,9, 0x8131200,9, 0x8131240,9, 0x8131280,9, 0x8131400,9, 0x8131440,9, 0x8131480,9, 0x81314c0,9, 0x8131500,9, 0x8131540,9, 0x8131580,9, 0x81315c0,9, 0x8131600,9, 0x8131640,9, 0x8131680,9, 0x8131800,9, 0x8131840,9, 0x8131880,9, 0x81318c0,9, 0x8131900,9, 0x8131940,9, 0x8131980,9, 0x81319c0,9, 0x8131a00,9, 0x8131a40,9, 0x8131a80,9, 0x8131c00,9, 0x8131c40,9, 0x8131c80,9, 0x8131cc0,9, 0x8131d00,9, 0x8131d40,9, 0x8131d80,9, 0x8131dc0,9, 0x8131e00,9, 0x8131e40,9, 0x8131e80,9, 0x8132000,9, 0x8132040,9, 0x8132080,9, 0x81320c0,9, 0x8132100,9, 0x8132140,9, 0x8132180,9, 0x81321c0,9, 0x8132200,9, 0x8132240,9, 0x8132280,9, 0x8132400,9, 0x8132440,9, 0x8132480,9, 0x81324c0,9, 0x8132500,9, 0x8132540,9, 0x8132580,9, 0x81325c0,9, 0x8132600,9, 0x8132640,9, 0x8132680,9, 0x8132800,9, 0x8132840,9, 0x8132880,9, 0x81328c0,9, 0x8132900,9, 0x8132940,9, 0x8132980,9, 0x81329c0,9, 0x8132a00,9, 0x8132a40,9, 0x8132a80,9, 0x8132c00,9, 0x8132c40,9, 0x8132c80,9, 0x8132cc0,9, 0x8132d00,9, 0x8132d40,9, 0x8132d80,9, 0x8132dc0,9, 0x8132e00,9, 0x8132e40,9, 0x8132e80,9, 0x8133000,9, 0x8133040,9, 0x8133080,9, 0x81330c0,9, 0x8133100,9, 0x8133140,9, 0x8133180,9, 0x81331c0,9, 0x8133200,9, 0x8133240,9, 0x8133280,9, 0x8133400,9, 0x8133440,9, 0x8133480,9, 0x81334c0,9, 0x8133500,9, 0x8133540,9, 0x8133580,9, 0x81335c0,9, 0x8133600,9, 0x8133640,9, 0x8133680,9, 0x8133800,9, 0x8133840,9, 0x8133880,9, 0x81338c0,9, 0x8133900,9, 0x8133940,9, 0x8133980,9, 0x81339c0,9, 0x8133a00,9, 0x8133a40,9, 0x8133a80,9, 0x8133c00,9, 0x8133c40,9, 0x8133c80,9, 0x8133cc0,9, 0x8133d00,9, 0x8133d40,9, 0x8133d80,9, 0x8133dc0,9, 0x8133e00,9, 0x8133e40,9, 0x8133e80,9, 0x8134000,9, 0x8134040,9, 0x8134080,9, 0x81340c0,9, 0x8134100,9, 0x8134140,9, 0x8134180,9, 0x81341c0,9, 0x8134200,9, 0x8134240,9, 0x8134280,9, 0x8134400,9, 0x8134440,9, 0x8134480,9, 0x81344c0,9, 0x8134500,9, 0x8134540,9, 0x8134580,9, 0x81345c0,9, 0x8134600,9, 0x8134640,9, 0x8134680,9, 0x8134800,9, 0x8134840,9, 0x8134880,9, 0x81348c0,9, 0x8134900,9, 0x8134940,9, 0x8134980,9, 0x81349c0,9, 0x8134a00,9, 0x8134a40,9, 0x8134a80,9, 0x8134c00,9, 0x8134c40,9, 0x8134c80,9, 0x8134cc0,9, 0x8134d00,9, 0x8134d40,9, 0x8134d80,9, 0x8134dc0,9, 0x8134e00,9, 0x8134e40,9, 0x8134e80,9, 0x8135000,9, 0x8135040,9, 0x8135080,9, 0x81350c0,9, 0x8135100,9, 0x8135140,9, 0x8135180,9, 0x81351c0,9, 0x8135200,9, 0x8135240,9, 0x8135280,9, 0x8135400,9, 0x8135440,9, 0x8135480,9, 0x81354c0,9, 0x8135500,9, 0x8135540,9, 0x8135580,9, 0x81355c0,9, 0x8135600,9, 0x8135640,9, 0x8135680,9, 0x8135800,9, 0x8135840,9, 0x8135880,9, 0x81358c0,9, 0x8135900,9, 0x8135940,9, 0x8135980,9, 0x81359c0,9, 0x8135a00,9, 0x8135a40,9, 0x8135a80,9, 0x8135c00,9, 0x8135c40,9, 0x8135c80,9, 0x8135cc0,9, 0x8135d00,9, 0x8135d40,9, 0x8135d80,9, 0x8135dc0,9, 0x8135e00,9, 0x8135e40,9, 0x8135e80,9, 0x8136000,9, 0x8136040,9, 0x8136080,9, 0x81360c0,9, 0x8136100,9, 0x8136140,9, 0x8136180,9, 0x81361c0,9, 0x8136200,9, 0x8136240,9, 0x8136280,9, 0x8136400,9, 0x8136440,9, 0x8136480,9, 0x81364c0,9, 0x8136500,9, 0x8136540,9, 0x8136580,9, 0x81365c0,9, 0x8136600,9, 0x8136640,9, 0x8136680,9, 0x8136800,9, 0x8136840,9, 0x8136880,9, 0x81368c0,9, 0x8136900,9, 0x8136940,9, 0x8136980,9, 0x81369c0,9, 0x8136a00,9, 0x8136a40,9, 0x8136a80,9, 0x8136c00,9, 0x8136c40,9, 0x8136c80,9, 0x8136cc0,9, 0x8136d00,9, 0x8136d40,9, 0x8136d80,9, 0x8136dc0,9, 0x8136e00,9, 0x8136e40,9, 0x8136e80,9, 0x8137000,9, 0x8137040,9, 0x8137080,9, 0x81370c0,9, 0x8137100,9, 0x8137140,9, 0x8137180,9, 0x81371c0,9, 0x8137200,9, 0x8137240,9, 0x8137280,9, 0x8137400,9, 0x8137440,9, 0x8137480,9, 0x81374c0,9, 0x8137500,9, 0x8137540,9, 0x8137580,9, 0x81375c0,9, 0x8137600,9, 0x8137640,9, 0x8137680,9, 0x8137800,9, 0x8137840,9, 0x8137880,9, 0x81378c0,9, 0x8137900,9, 0x8137940,9, 0x8137980,9, 0x81379c0,9, 0x8137a00,9, 0x8137a40,9, 0x8137a80,9, 0x8137c00,9, 0x8137c40,9, 0x8137c80,9, 0x8137cc0,9, 0x8137d00,9, 0x8137d40,9, 0x8137d80,9, 0x8137dc0,9, 0x8137e00,9, 0x8137e40,9, 0x8137e80,9, 0x8138000,9, 0x8138040,9, 0x8138080,9, 0x81380c0,9, 0x8138100,9, 0x8138140,9, 0x8138180,9, 0x81381c0,9, 0x8138200,9, 0x8138240,9, 0x8138280,9, 0x8138400,9, 0x8138440,9, 0x8138480,9, 0x81384c0,9, 0x8138500,9, 0x8138540,9, 0x8138580,9, 0x81385c0,9, 0x8138600,9, 0x8138640,9, 0x8138680,9, 0x8138800,9, 0x8138840,9, 0x8138880,9, 0x81388c0,9, 0x8138900,9, 0x8138940,9, 0x8138980,9, 0x81389c0,9, 0x8138a00,9, 0x8138a40,9, 0x8138a80,9, 0x8138c00,9, 0x8138c40,9, 0x8138c80,9, 0x8138cc0,9, 0x8138d00,9, 0x8138d40,9, 0x8138d80,9, 0x8138dc0,9, 0x8138e00,9, 0x8138e40,9, 0x8138e80,9, 0x8139000,9, 0x8139040,9, 0x8139080,9, 0x81390c0,9, 0x8139100,9, 0x8139140,9, 0x8139180,9, 0x81391c0,9, 0x8139200,9, 0x8139240,9, 0x8139280,9, 0x8139400,9, 0x8139440,9, 0x8139480,9, 0x81394c0,9, 0x8139500,9, 0x8139540,9, 0x8139580,9, 0x81395c0,9, 0x8139600,9, 0x8139640,9, 0x8139680,9, 0x8139800,9, 0x8139840,9, 0x8139880,9, 0x81398c0,9, 0x8139900,9, 0x8139940,9, 0x8139980,9, 0x81399c0,9, 0x8139a00,9, 0x8139a40,9, 0x8139a80,9, 0x8139c00,9, 0x8139c40,9, 0x8139c80,9, 0x8139cc0,9, 0x8139d00,9, 0x8139d40,9, 0x8139d80,9, 0x8139dc0,9, 0x8139e00,9, 0x8139e40,9, 0x8139e80,9, 0x813a000,9, 0x813a040,9, 0x813a080,9, 0x813a0c0,9, 0x813a100,9, 0x813a140,9, 0x813a180,9, 0x813a1c0,9, 0x813a200,9, 0x813a240,9, 0x813a280,9, 0x813a400,9, 0x813a440,9, 0x813a480,9, 0x813a4c0,9, 0x813a500,9, 0x813a540,9, 0x813a580,9, 0x813a5c0,9, 0x813a600,9, 0x813a640,9, 0x813a680,9, 0x813a800,9, 0x813a840,9, 0x813a880,9, 0x813a8c0,9, 0x813a900,9, 0x813a940,9, 0x813a980,9, 0x813a9c0,9, 0x813aa00,9, 0x813aa40,9, 0x813aa80,9, 0x813ac00,9, 0x813ac40,9, 0x813ac80,9, 0x813acc0,9, 0x813ad00,9, 0x813ad40,9, 0x813ad80,9, 0x813adc0,9, 0x813ae00,9, 0x813ae40,9, 0x813ae80,9, 0x813b000,9, 0x813b040,9, 0x813b080,9, 0x813b0c0,9, 0x813b100,9, 0x813b140,9, 0x813b180,9, 0x813b1c0,9, 0x813b200,9, 0x813b240,9, 0x813b280,9, 0x813b400,9, 0x813b440,9, 0x813b480,9, 0x813b4c0,9, 0x813b500,9, 0x813b540,9, 0x813b580,9, 0x813b5c0,9, 0x813b600,9, 0x813b640,9, 0x813b680,9, 0x813b800,9, 0x813b840,9, 0x813b880,9, 0x813b8c0,9, 0x813b900,9, 0x813b940,9, 0x813b980,9, 0x813b9c0,9, 0x813ba00,9, 0x813ba40,9, 0x813ba80,9, 0x813bc00,9, 0x813bc40,9, 0x813bc80,9, 0x813bcc0,9, 0x813bd00,9, 0x813bd40,9, 0x813bd80,9, 0x813bdc0,9, 0x813be00,9, 0x813be40,9, 0x813be80,9, 0x813c000,9, 0x813c040,9, 0x813c080,9, 0x813c0c0,9, 0x813c100,9, 0x813c140,9, 0x813c180,9, 0x813c1c0,9, 0x813c200,9, 0x813c240,9, 0x813c280,9, 0x813c400,9, 0x813c440,9, 0x813c480,9, 0x813c4c0,9, 0x813c500,9, 0x813c540,9, 0x813c580,9, 0x813c5c0,9, 0x813c600,9, 0x813c640,9, 0x813c680,9, 0x813c800,9, 0x813c840,9, 0x813c880,9, 0x813c8c0,9, 0x813c900,9, 0x813c940,9, 0x813c980,9, 0x813c9c0,9, 0x813ca00,9, 0x813ca40,9, 0x813ca80,9, 0x813cc00,9, 0x813cc40,9, 0x813cc80,9, 0x813ccc0,9, 0x813cd00,9, 0x813cd40,9, 0x813cd80,9, 0x813cdc0,9, 0x813ce00,9, 0x813ce40,9, 0x813ce80,9, 0x813d000,9, 0x813d040,9, 0x813d080,9, 0x813d0c0,9, 0x813d100,9, 0x813d140,9, 0x813d180,9, 0x813d1c0,9, 0x813d200,9, 0x813d240,9, 0x813d280,9, 0x813d400,9, 0x813d440,9, 0x813d480,9, 0x813d4c0,9, 0x813d500,9, 0x813d540,9, 0x813d580,9, 0x813d5c0,9, 0x813d600,9, 0x813d640,9, 0x813d680,9, 0x813d800,9, 0x813d840,9, 0x813d880,9, 0x813d8c0,9, 0x813d900,9, 0x813d940,9, 0x813d980,9, 0x813d9c0,9, 0x813da00,9, 0x813da40,9, 0x813da80,9, 0x813dc00,9, 0x813dc40,9, 0x813dc80,9, 0x813dcc0,9, 0x813dd00,9, 0x813dd40,9, 0x813dd80,9, 0x813ddc0,9, 0x813de00,9, 0x813de40,9, 0x813de80,9, 0x813e000,9, 0x813e040,9, 0x813e080,9, 0x813e0c0,9, 0x813e100,9, 0x813e140,9, 0x813e180,9, 0x813e1c0,9, 0x813e200,9, 0x813e240,9, 0x813e280,9, 0x813e400,9, 0x813e440,9, 0x813e480,9, 0x813e4c0,9, 0x813e500,9, 0x813e540,9, 0x813e580,9, 0x813e5c0,9, 0x813e600,9, 0x813e640,9, 0x813e680,9, 0x813e800,9, 0x813e840,9, 0x813e880,9, 0x813e8c0,9, 0x813e900,9, 0x813e940,9, 0x813e980,9, 0x813e9c0,9, 0x813ea00,9, 0x813ea40,9, 0x813ea80,9, 0x813ec00,9, 0x813ec40,9, 0x813ec80,9, 0x813ecc0,9, 0x813ed00,9, 0x813ed40,9, 0x813ed80,9, 0x813edc0,9, 0x813ee00,9, 0x813ee40,9, 0x813ee80,9, 0x813f000,9, 0x813f040,9, 0x813f080,9, 0x813f0c0,9, 0x813f100,9, 0x813f140,9, 0x813f180,9, 0x813f1c0,9, 0x813f200,9, 0x813f240,9, 0x813f280,9, 0x813f400,9, 0x813f440,9, 0x813f480,9, 0x813f4c0,9, 0x813f500,9, 0x813f540,9, 0x813f580,9, 0x813f5c0,9, 0x813f600,9, 0x813f640,9, 0x813f680,9, 0x813f800,9, 0x813f840,9, 0x813f880,9, 0x813f8c0,9, 0x813f900,9, 0x813f940,9, 0x813f980,9, 0x813f9c0,9, 0x813fa00,9, 0x813fa40,9, 0x813fa80,9, 0x813fc00,9, 0x813fc40,9, 0x813fc80,9, 0x813fcc0,9, 0x813fd00,9, 0x813fd40,9, 0x813fd80,9, 0x813fdc0,9, 0x813fe00,9, 0x813fe40,9, 0x813fe80,9, 0x8140000,9, 0x8140040,9, 0x8140080,9, 0x81400c0,9, 0x8140100,9, 0x8140140,9, 0x8140180,9, 0x81401c0,9, 0x8140200,9, 0x8140240,9, 0x8140280,9, 0x8140400,9, 0x8140440,9, 0x8140480,9, 0x81404c0,9, 0x8140500,9, 0x8140540,9, 0x8140580,9, 0x81405c0,9, 0x8140600,9, 0x8140640,9, 0x8140680,9, 0x8180000,2, 0x8180040,9, 0x8180080,12, 0x81800c0,12, 0x8180100,3, 0x8200000,6, 0x8200020,6, 0x8200040,6, 0x8200060,6, 0x8200080,6, 0x82000a0,6, 0x82000c0,6, 0x82000e0,6, 0x8200100,6, 0x8200120,6, 0x8200140,6, 0x8200160,6, 0x8200180,6, 0x82001a0,6, 0x82001c0,6, 0x82001e0,6, 0x8200200,6, 0x8200220,6, 0x8200240,6, 0x8200260,6, 0x8200280,6, 0x82002a0,6, 0x82002c0,6, 0x82002e0,6, 0x8200300,6, 0x8200320,6, 0x8200340,6, 0x8200360,6, 0x8200380,6, 0x82003a0,6, 0x82003c0,6, 0x82003e0,6, 0x8200400,6, 0x8200420,6, 0x8200440,6, 0x8200460,6, 0x8200480,6, 0x82004a0,6, 0x82004c0,6, 0x82004e0,6, 0x8200500,6, 0x8200520,6, 0x8200540,6, 0x8200560,6, 0x8200580,6, 0x82005a0,6, 0x82005c0,6, 0x82005e0,6, 0x8200600,6, 0x8200620,6, 0x8200640,6, 0x8200660,6, 0x8200680,6, 0x82006a0,6, 0x82006c0,6, 0x82006e0,6, 0x8200700,6, 0x8200720,6, 0x8200740,6, 0x8200760,6, 0x8200780,6, 0x82007a0,6, 0x82007c0,6, 0x82007e0,6, 0x8200800,6, 0x8200820,6, 0x8200840,6, 0x8200860,6, 0x8200880,6, 0x82008a0,6, 0x82008c0,6, 0x82008e0,6, 0x8200900,6, 0x8200920,6, 0x8200940,6, 0x8200960,6, 0x8200980,6, 0x82009a0,6, 0x82009c0,6, 0x82009e0,6, 0x8200a00,6, 0x8200a20,6, 0x8200a40,6, 0x8200a60,6, 0x8200a80,6, 0x8200aa0,6, 0x8200ac0,6, 0x8200ae0,6, 0x8200b00,6, 0x8200b20,6, 0x8200b40,6, 0x8200b60,6, 0x8200b80,6, 0x8200ba0,6, 0x8200bc0,6, 0x8200be0,6, 0x8200c00,6, 0x8200c20,6, 0x8200c40,6, 0x8200c60,6, 0x8200c80,6, 0x8200ca0,6, 0x8200cc0,6, 0x8200ce0,6, 0x8200d00,6, 0x8200d20,6, 0x8200d40,6, 0x8200d60,6, 0x8200d80,6, 0x8200da0,6, 0x8200dc0,6, 0x8200de0,6, 0x8200e00,6, 0x8200e20,6, 0x8200e40,6, 0x8200e60,6, 0x8200e80,6, 0x8200ea0,6, 0x8200ec0,6, 0x8200ee0,6, 0x8200f00,6, 0x8200f20,6, 0x8200f40,6, 0x8200f60,6, 0x8200f80,6, 0x8200fa0,6, 0x8200fc0,6, 0x8200fe0,6, 0x8201000,6, 0x8201020,6, 0x8201040,6, 0x8201060,6, 0x8201080,6, 0x82010a0,6, 0x82010c0,6, 0x82010e0,6, 0x8201100,6, 0x8201120,6, 0x8201140,6, 0x8201160,6, 0x8201180,6, 0x82011a0,6, 0x82011c0,6, 0x82011e0,6, 0x8201200,6, 0x8201220,6, 0x8201240,6, 0x8201260,6, 0x8201280,6, 0x82012a0,6, 0x82012c0,6, 0x82012e0,6, 0x8201300,6, 0x8201320,6, 0x8201340,6, 0x8201360,6, 0x8201380,6, 0x82013a0,6, 0x82013c0,6, 0x82013e0,6, 0x8201400,6, 0x8201420,6, 0x8201440,6, 0x8201460,6, 0x8201480,6, 0x82014a0,6, 0x82014c0,6, 0x82014e0,6, 0x8201500,6, 0x8201520,6, 0x8201540,6, 0x8201560,6, 0x8201580,6, 0x82015a0,6, 0x82015c0,6, 0x82015e0,6, 0x8201600,6, 0x8201620,6, 0x8201640,6, 0x8201660,6, 0x8201680,6, 0x82016a0,6, 0x82016c0,6, 0x82016e0,6, 0x8201700,6, 0x8201720,6, 0x8201740,6, 0x8201760,6, 0x8201780,6, 0x82017a0,6, 0x82017c0,6, 0x82017e0,6, 0x8201800,6, 0x8201820,6, 0x8201840,6, 0x8201860,6, 0x8201880,6, 0x82018a0,6, 0x82018c0,6, 0x82018e0,6, 0x8201900,6, 0x8201920,6, 0x8201940,6, 0x8201960,6, 0x8201980,6, 0x82019a0,6, 0x82019c0,6, 0x82019e0,6, 0x8201a00,6, 0x8201a20,6, 0x8201a40,6, 0x8201a60,6, 0x8201a80,6, 0x8201aa0,6, 0x8201ac0,6, 0x8201ae0,6, 0x8201b00,6, 0x8201b20,6, 0x8201b40,6, 0x8201b60,6, 0x8201b80,6, 0x8201ba0,6, 0x8201bc0,6, 0x8201be0,6, 0x8201c00,6, 0x8201c20,6, 0x8201c40,6, 0x8201c60,6, 0x8201c80,6, 0x8201ca0,6, 0x8201cc0,6, 0x8201ce0,6, 0x8201d00,6, 0x8201d20,6, 0x8201d40,6, 0x8201d60,6, 0x8201d80,6, 0x8201da0,6, 0x8201dc0,6, 0x8201de0,6, 0x8201e00,6, 0x8201e20,6, 0x8201e40,6, 0x8201e60,6, 0x8201e80,6, 0x8201ea0,6, 0x8201ec0,6, 0x8201ee0,6, 0x8201f00,6, 0x8201f20,6, 0x8201f40,6, 0x8201f60,6, 0x8201f80,6, 0x8201fa0,6, 0x8201fc0,6, 0x8201fe0,6, 0x8202000,6, 0x8202020,6, 0x8202040,6, 0x8202060,6, 0x8202080,6, 0x82020a0,6, 0x82020c0,6, 0x82020e0,6, 0x8202100,6, 0x8202120,6, 0x8202140,6, 0x8202160,6, 0x8202180,6, 0x82021a0,6, 0x82021c0,6, 0x82021e0,6, 0x8202200,6, 0x8202220,6, 0x8202240,6, 0x8202260,6, 0x8202280,6, 0x82022a0,6, 0x82022c0,6, 0x82022e0,6, 0x8202300,6, 0x8202320,6, 0x8202340,6, 0x8202360,6, 0x8202380,6, 0x82023a0,6, 0x82023c0,6, 0x82023e0,6, 0x8202400,6, 0x8202420,6, 0x8202440,6, 0x8202460,6, 0x8202480,6, 0x82024a0,6, 0x82024c0,6, 0x82024e0,6, 0x8202500,6, 0x8202520,6, 0x8202540,6, 0x8202560,6, 0x8202580,6, 0x82025a0,6, 0x82025c0,6, 0x82025e0,6, 0x8202600,6, 0x8202620,6, 0x8202640,6, 0x8202660,6, 0x8202680,6, 0x82026a0,6, 0x82026c0,6, 0x82026e0,6, 0x8202700,6, 0x8202720,6, 0x8202740,6, 0x8202760,6, 0x8202780,6, 0x82027a0,6, 0x82027c0,6, 0x82027e0,6, 0x8202800,6, 0x8202820,6, 0x8202840,6, 0x8202860,6, 0x8202880,6, 0x82028a0,6, 0x82028c0,6, 0x82028e0,6, 0x8202900,6, 0x8202920,6, 0x8202940,6, 0x8202960,6, 0x8202980,6, 0x82029a0,6, 0x82029c0,6, 0x82029e0,6, 0x8202a00,6, 0x8202a20,6, 0x8202a40,6, 0x8202a60,6, 0x8202a80,6, 0x8202aa0,6, 0x8202ac0,6, 0x8202ae0,6, 0x8202b00,6, 0x8202b20,6, 0x8202b40,6, 0x8202b60,6, 0x8202b80,6, 0x8202ba0,6, 0x8202bc0,6, 0x8202be0,6, 0x8202c00,6, 0x8202c20,6, 0x8202c40,6, 0x8202c60,6, 0x8202c80,6, 0x8202ca0,6, 0x8202cc0,6, 0x8202ce0,6, 0x8202d00,6, 0x8202d20,6, 0x8202d40,6, 0x8202d60,6, 0x8202d80,6, 0x8202da0,6, 0x8202dc0,6, 0x8202de0,6, 0x8202e00,6, 0x8202e20,6, 0x8202e40,6, 0x8202e60,6, 0x8202e80,6, 0x8202ea0,6, 0x8202ec0,6, 0x8202ee0,6, 0x8202f00,6, 0x8202f20,6, 0x8202f40,6, 0x8202f60,6, 0x8202f80,6, 0x8202fa0,6, 0x8202fc0,6, 0x8202fe0,6, 0x8203000,6, 0x8203020,6, 0x8203040,6, 0x8203060,6, 0x8203080,6, 0x82030a0,6, 0x82030c0,6, 0x82030e0,6, 0x8203100,6, 0x8203120,6, 0x8203140,6, 0x8203160,6, 0x8203180,6, 0x82031a0,6, 0x82031c0,6, 0x82031e0,6, 0x8203200,6, 0x8203220,6, 0x8203240,6, 0x8203260,6, 0x8203280,6, 0x82032a0,6, 0x82032c0,6, 0x82032e0,6, 0x8203300,6, 0x8203320,6, 0x8203340,6, 0x8203360,6, 0x8203380,6, 0x82033a0,6, 0x82033c0,6, 0x82033e0,6, 0x8203400,6, 0x8203420,6, 0x8203440,6, 0x8203460,6, 0x8203480,6, 0x82034a0,6, 0x82034c0,6, 0x82034e0,6, 0x8203500,6, 0x8203520,6, 0x8203540,6, 0x8203560,6, 0x8203580,6, 0x82035a0,6, 0x82035c0,6, 0x82035e0,6, 0x8203600,6, 0x8203620,6, 0x8203640,6, 0x8203660,6, 0x8203680,6, 0x82036a0,6, 0x82036c0,6, 0x82036e0,6, 0x8203700,6, 0x8203720,6, 0x8203740,6, 0x8203760,6, 0x8203780,6, 0x82037a0,6, 0x82037c0,6, 0x82037e0,6, 0x8203800,6, 0x8203820,6, 0x8203840,6, 0x8203860,6, 0x8203880,6, 0x82038a0,6, 0x82038c0,6, 0x82038e0,6, 0x8203900,6, 0x8203920,6, 0x8203940,6, 0x8203960,6, 0x8203980,6, 0x82039a0,6, 0x82039c0,6, 0x82039e0,6, 0x8203a00,6, 0x8203a20,6, 0x8203a40,6, 0x8203a60,6, 0x8203a80,6, 0x8203aa0,6, 0x8203ac0,6, 0x8203ae0,6, 0x8203b00,6, 0x8203b20,6, 0x8203b40,6, 0x8203b60,6, 0x8203b80,6, 0x8203ba0,6, 0x8203bc0,6, 0x8203be0,6, 0x8203c00,6, 0x8203c20,6, 0x8203c40,6, 0x8203c60,6, 0x8203c80,6, 0x8203ca0,6, 0x8203cc0,6, 0x8203ce0,6, 0x8203d00,6, 0x8203d20,6, 0x8203d40,6, 0x8203d60,6, 0x8203d80,6, 0x8203da0,6, 0x8203dc0,6, 0x8203de0,6, 0x8203e00,6, 0x8203e20,6, 0x8203e40,6, 0x8203e60,6, 0x8203e80,6, 0x8203ea0,6, 0x8203ec0,6, 0x8203ee0,6, 0x8203f00,6, 0x8203f20,6, 0x8203f40,6, 0x8203f60,6, 0x8203f80,6, 0x8203fa0,6, 0x8203fc0,6, 0x8203fe0,6, 0x8204000,6, 0x8204020,6, 0x8204040,6, 0x8204060,6, 0x8204080,6, 0x82040a0,6, 0x82040c0,6, 0x82040e0,6, 0x8204100,6, 0x8204120,6, 0x8204140,6, 0x8204160,6, 0x8204180,6, 0x82041a0,6, 0x82041c0,6, 0x82041e0,6, 0x8204200,6, 0x8204220,6, 0x8204240,6, 0x8204260,6, 0x8204280,6, 0x82042a0,6, 0x82042c0,6, 0x82042e0,6, 0x8204300,6, 0x8204320,6, 0x8204340,6, 0x8204360,6, 0x8204380,6, 0x82043a0,6, 0x82043c0,6, 0x82043e0,6, 0x8204400,6, 0x8204420,6, 0x8204440,6, 0x8204460,6, 0x8204480,6, 0x82044a0,6, 0x82044c0,6, 0x82044e0,6, 0x8204500,6, 0x8204520,6, 0x8204540,6, 0x8204560,6, 0x8204580,6, 0x82045a0,6, 0x82045c0,6, 0x82045e0,6, 0x8204600,6, 0x8204620,6, 0x8204640,6, 0x8204660,6, 0x8204680,6, 0x82046a0,6, 0x82046c0,6, 0x82046e0,6, 0x8204700,6, 0x8204720,6, 0x8204740,6, 0x8204760,6, 0x8204780,6, 0x82047a0,6, 0x82047c0,6, 0x82047e0,6, 0x8204800,6, 0x8204820,6, 0x8204840,6, 0x8204860,6, 0x8204880,6, 0x82048a0,6, 0x82048c0,6, 0x82048e0,6, 0x8204900,6, 0x8204920,6, 0x8204940,6, 0x8204960,6, 0x8204980,6, 0x82049a0,6, 0x82049c0,6, 0x82049e0,6, 0x8204a00,6, 0x8204a20,6, 0x8204a40,6, 0x8204a60,6, 0x8204a80,6, 0x8204aa0,6, 0x8204ac0,6, 0x8204ae0,6, 0x8204b00,6, 0x8204b20,6, 0x8204b40,6, 0x8204b60,6, 0x8204b80,6, 0x8204ba0,6, 0x8204bc0,6, 0x8204be0,6, 0x8204c00,6, 0x8204c20,6, 0x8204c40,6, 0x8204c60,6, 0x8204c80,6, 0x8204ca0,6, 0x8204cc0,6, 0x8204ce0,6, 0x8204d00,6, 0x8204d20,6, 0x8204d40,6, 0x8204d60,6, 0x8204d80,6, 0x8204da0,6, 0x8204dc0,6, 0x8204de0,6, 0x8204e00,6, 0x8204e20,6, 0x8204e40,6, 0x8204e60,6, 0x8204e80,6, 0x8204ea0,6, 0x8204ec0,6, 0x8204ee0,6, 0x8204f00,6, 0x8204f20,6, 0x8204f40,6, 0x8204f60,6, 0x8204f80,6, 0x8204fa0,6, 0x8204fc0,6, 0x8204fe0,6, 0x8205000,6, 0x8205020,6, 0x8205040,6, 0x8205060,6, 0x8205080,6, 0x82050a0,6, 0x82050c0,6, 0x82050e0,6, 0x8205100,6, 0x8205120,6, 0x8205140,6, 0x8205160,6, 0x8205180,6, 0x82051a0,6, 0x82051c0,6, 0x82051e0,6, 0x8205200,6, 0x8205220,6, 0x8205240,6, 0x8205260,6, 0x8205280,6, 0x82052a0,6, 0x82052c0,6, 0x82052e0,6, 0x8205300,6, 0x8205320,6, 0x8205340,6, 0x8205360,6, 0x8205380,6, 0x82053a0,6, 0x82053c0,6, 0x82053e0,6, 0x8205400,6, 0x8205420,6, 0x8205440,6, 0x8205460,6, 0x8205480,6, 0x82054a0,6, 0x82054c0,6, 0x82054e0,6, 0x8205500,6, 0x8205520,6, 0x8205540,6, 0x8205560,6, 0x8205580,6, 0x82055a0,6, 0x82055c0,6, 0x82055e0,6, 0x8205600,6, 0x8205620,6, 0x8205640,6, 0x8205660,6, 0x8205680,6, 0x82056a0,6, 0x82056c0,6, 0x82056e0,6, 0x8205700,6, 0x8205720,6, 0x8205740,6, 0x8205760,6, 0x8205780,6, 0x82057a0,6, 0x82057c0,6, 0x82057e0,6, 0x8205800,6, 0x8205820,6, 0x8205840,6, 0x8205860,6, 0x8205880,6, 0x82058a0,6, 0x82058c0,6, 0x82058e0,6, 0x8205900,6, 0x8205920,6, 0x8205940,6, 0x8205960,6, 0x8205980,6, 0x82059a0,6, 0x82059c0,6, 0x82059e0,6, 0x8205a00,6, 0x8205a20,6, 0x8205a40,6, 0x8205a60,6, 0x8205a80,6, 0x8205aa0,6, 0x8205ac0,6, 0x8205ae0,6, 0x8205b00,6, 0x8205b20,6, 0x8205b40,6, 0x8205b60,6, 0x8205b80,6, 0x8205ba0,6, 0x8205bc0,6, 0x8205be0,6, 0x8205c00,6, 0x8205c20,6, 0x8205c40,6, 0x8205c60,6, 0x8205c80,6, 0x8205ca0,6, 0x8205cc0,6, 0x8205ce0,6, 0x8205d00,6, 0x8205d20,6, 0x8205d40,6, 0x8205d60,6, 0x8205d80,6, 0x8205da0,6, 0x8205dc0,6, 0x8205de0,6, 0x8205e00,6, 0x8205e20,6, 0x8205e40,6, 0x8205e60,6, 0x8205e80,6, 0x8205ea0,6, 0x8205ec0,6, 0x8205ee0,6, 0x8205f00,6, 0x8205f20,6, 0x8205f40,6, 0x8205f60,6, 0x8205f80,6, 0x8205fa0,6, 0x8205fc0,6, 0x8205fe0,6, 0x8206000,6, 0x8206020,6, 0x8206040,6, 0x8206060,6, 0x8206080,6, 0x82060a0,6, 0x82060c0,6, 0x82060e0,6, 0x8206100,6, 0x8206120,6, 0x8206140,6, 0x8206160,6, 0x8206180,6, 0x82061a0,6, 0x82061c0,6, 0x82061e0,6, 0x8206200,6, 0x8206220,6, 0x8206240,6, 0x8206260,6, 0x8206280,6, 0x82062a0,6, 0x82062c0,6, 0x82062e0,6, 0x8206300,6, 0x8206320,6, 0x8206340,6, 0x8206360,6, 0x8206380,6, 0x82063a0,6, 0x82063c0,6, 0x82063e0,6, 0x8206400,6, 0x8206420,6, 0x8206440,6, 0x8206460,6, 0x8206480,6, 0x82064a0,6, 0x82064c0,6, 0x82064e0,6, 0x8206500,6, 0x8206520,6, 0x8206540,6, 0x8206560,6, 0x8206580,6, 0x82065a0,6, 0x82065c0,6, 0x82065e0,6, 0x8206600,6, 0x8206620,6, 0x8206640,6, 0x8206660,6, 0x8206680,6, 0x82066a0,6, 0x82066c0,6, 0x82066e0,6, 0x8206700,6, 0x8206720,6, 0x8206740,6, 0x8206760,6, 0x8206780,6, 0x82067a0,6, 0x82067c0,6, 0x82067e0,6, 0x8206800,6, 0x8206820,6, 0x8206840,6, 0x8206860,6, 0x8206880,6, 0x82068a0,6, 0x82068c0,6, 0x82068e0,6, 0x8206900,6, 0x8206920,6, 0x8206940,6, 0x8206960,6, 0x8206980,6, 0x82069a0,6, 0x82069c0,6, 0x82069e0,6, 0x8206a00,6, 0x8206a20,6, 0x8206a40,6, 0x8206a60,6, 0x8206a80,6, 0x8206aa0,6, 0x8206ac0,6, 0x8206ae0,6, 0x8206b00,6, 0x8206b20,6, 0x8206b40,6, 0x8206b60,6, 0x8206b80,6, 0x8206ba0,6, 0x8206bc0,6, 0x8206be0,6, 0x8206c00,6, 0x8206c20,6, 0x8206c40,6, 0x8206c60,6, 0x8206c80,6, 0x8206ca0,6, 0x8206cc0,6, 0x8206ce0,6, 0x8206d00,6, 0x8206d20,6, 0x8206d40,6, 0x8206d60,6, 0x8206d80,6, 0x8206da0,6, 0x8206dc0,6, 0x8206de0,6, 0x8206e00,6, 0x8206e20,6, 0x8206e40,6, 0x8206e60,6, 0x8206e80,6, 0x8206ea0,6, 0x8206ec0,6, 0x8206ee0,6, 0x8206f00,6, 0x8206f20,6, 0x8206f40,6, 0x8206f60,6, 0x8206f80,6, 0x8206fa0,6, 0x8206fc0,6, 0x8206fe0,6, 0x8207000,6, 0x8207020,6, 0x8207040,6, 0x8207060,6, 0x8207080,6, 0x82070a0,6, 0x82070c0,6, 0x82070e0,6, 0x8207100,6, 0x8207120,6, 0x8207140,6, 0x8207160,6, 0x8207180,6, 0x82071a0,6, 0x82071c0,6, 0x82071e0,6, 0x8207200,6, 0x8207220,6, 0x8207240,6, 0x8207260,6, 0x8207280,6, 0x82072a0,6, 0x82072c0,6, 0x82072e0,6, 0x8207300,6, 0x8207320,6, 0x8207340,6, 0x8207360,6, 0x8207380,6, 0x82073a0,6, 0x82073c0,6, 0x82073e0,6, 0x8207400,6, 0x8207420,6, 0x8207440,6, 0x8207460,6, 0x8207480,6, 0x82074a0,6, 0x82074c0,6, 0x82074e0,6, 0x8207500,6, 0x8207520,6, 0x8207540,6, 0x8207560,6, 0x8207580,6, 0x82075a0,6, 0x82075c0,6, 0x82075e0,6, 0x8207600,6, 0x8207620,6, 0x8207640,6, 0x8207660,6, 0x8207680,6, 0x82076a0,6, 0x82076c0,6, 0x82076e0,6, 0x8207700,6, 0x8207720,6, 0x8207740,6, 0x8207760,6, 0x8207780,6, 0x82077a0,6, 0x82077c0,6, 0x82077e0,6, 0x8207800,6, 0x8207820,6, 0x8207840,6, 0x8207860,6, 0x8207880,6, 0x82078a0,6, 0x82078c0,6, 0x82078e0,6, 0x8207900,6, 0x8207920,6, 0x8207940,6, 0x8207960,6, 0x8207980,6, 0x82079a0,6, 0x82079c0,6, 0x82079e0,6, 0x8207a00,6, 0x8207a20,6, 0x8207a40,6, 0x8207a60,6, 0x8207a80,6, 0x8207aa0,6, 0x8207ac0,6, 0x8207ae0,6, 0x8207b00,6, 0x8207b20,6, 0x8207b40,6, 0x8207b60,6, 0x8207b80,6, 0x8207ba0,6, 0x8207bc0,6, 0x8207be0,6, 0x8207c00,6, 0x8207c20,6, 0x8207c40,6, 0x8207c60,6, 0x8207c80,6, 0x8207ca0,6, 0x8207cc0,6, 0x8207ce0,6, 0x8207d00,6, 0x8207d20,6, 0x8207d40,6, 0x8207d60,6, 0x8207d80,6, 0x8207da0,6, 0x8207dc0,6, 0x8207de0,6, 0x8207e00,6, 0x8207e20,6, 0x8207e40,6, 0x8207e60,6, 0x8207e80,6, 0x8207ea0,6, 0x8207ec0,6, 0x8207ee0,6, 0x8207f00,6, 0x8207f20,6, 0x8207f40,6, 0x8207f60,6, 0x8207f80,6, 0x8207fa0,6, 0x8207fc0,6, 0x8207fe0,6, 0x8208000,6, 0x8208020,6, 0x8208040,6, 0x8208060,6, 0x8208080,6, 0x82080a0,6, 0x82080c0,6, 0x82080e0,6, 0x8208100,6, 0x8208120,6, 0x8208140,6, 0x8208160,6, 0x8208180,6, 0x82081a0,6, 0x82081c0,6, 0x82081e0,6, 0x8208200,6, 0x8208220,6, 0x8208240,6, 0x8208260,6, 0x8208280,6, 0x82082a0,6, 0x82082c0,6, 0x82082e0,6, 0x8208300,6, 0x8208320,6, 0x8208340,6, 0x8208360,6, 0x8208380,6, 0x82083a0,6, 0x82083c0,6, 0x82083e0,6, 0x8208400,6, 0x8208420,6, 0x8208440,6, 0x8208460,6, 0x8208480,6, 0x82084a0,6, 0x82084c0,6, 0x82084e0,6, 0x8208500,6, 0x8208520,6, 0x8208540,6, 0x8208560,6, 0x8208580,6, 0x82085a0,6, 0x82085c0,6, 0x82085e0,6, 0x8208600,6, 0x8208620,6, 0x8208640,6, 0x8208660,6, 0x8208680,6, 0x82086a0,6, 0x82086c0,6, 0x82086e0,6, 0x8208700,6, 0x8208720,6, 0x8208740,6, 0x8208760,6, 0x8208780,6, 0x82087a0,6, 0x82087c0,6, 0x82087e0,6, 0x8208800,6, 0x8208820,6, 0x8208840,6, 0x8208860,6, 0x8208880,6, 0x82088a0,6, 0x82088c0,6, 0x82088e0,6, 0x8208900,6, 0x8208920,6, 0x8208940,6, 0x8208960,6, 0x8208980,6, 0x82089a0,6, 0x82089c0,6, 0x82089e0,6, 0x8208a00,6, 0x8208a20,6, 0x8208a40,6, 0x8208a60,6, 0x8208a80,6, 0x8208aa0,6, 0x8208ac0,6, 0x8208ae0,6, 0x8208b00,6, 0x8208b20,6, 0x8208b40,6, 0x8208b60,6, 0x8208b80,6, 0x8208ba0,6, 0x8208bc0,6, 0x8208be0,6, 0x8208c00,6, 0x8208c20,6, 0x8208c40,6, 0x8208c60,6, 0x8208c80,6, 0x8208ca0,6, 0x8208cc0,6, 0x8208ce0,6, 0x8208d00,6, 0x8208d20,6, 0x8208d40,6, 0x8208d60,6, 0x8208d80,6, 0x8208da0,6, 0x8208dc0,6, 0x8208de0,6, 0x8208e00,6, 0x8208e20,6, 0x8208e40,6, 0x8208e60,6, 0x8208e80,6, 0x8208ea0,6, 0x8208ec0,6, 0x8208ee0,6, 0x8208f00,6, 0x8208f20,6, 0x8208f40,6, 0x8208f60,6, 0x8208f80,6, 0x8208fa0,6, 0x8208fc0,6, 0x8208fe0,6, 0x8209000,6, 0x8209020,6, 0x8209040,6, 0x8209060,6, 0x8209080,6, 0x82090a0,6, 0x82090c0,6, 0x82090e0,6, 0x8209100,6, 0x8209120,6, 0x8209140,6, 0x8209160,6, 0x8209180,6, 0x82091a0,6, 0x82091c0,6, 0x82091e0,6, 0x8209200,6, 0x8209220,6, 0x8209240,6, 0x8209260,6, 0x8209280,6, 0x82092a0,6, 0x82092c0,6, 0x82092e0,6, 0x8209300,6, 0x8209320,6, 0x8209340,6, 0x8209360,6, 0x8209380,6, 0x82093a0,6, 0x82093c0,6, 0x82093e0,6, 0x8209400,6, 0x8209420,6, 0x8209440,6, 0x8209460,6, 0x8209480,6, 0x82094a0,6, 0x82094c0,6, 0x82094e0,6, 0x8209500,6, 0x8209520,6, 0x8209540,6, 0x8209560,6, 0x8209580,6, 0x82095a0,6, 0x82095c0,6, 0x82095e0,6, 0x8209600,6, 0x8209620,6, 0x8209640,6, 0x8209660,6, 0x8209680,6, 0x82096a0,6, 0x82096c0,6, 0x82096e0,6, 0x8209700,6, 0x8209720,6, 0x8209740,6, 0x8209760,6, 0x8209780,6, 0x82097a0,6, 0x82097c0,6, 0x82097e0,6, 0x8209800,6, 0x8209820,6, 0x8209840,6, 0x8209860,6, 0x8209880,6, 0x82098a0,6, 0x82098c0,6, 0x82098e0,6, 0x8209900,6, 0x8209920,6, 0x8209940,6, 0x8209960,6, 0x8209980,6, 0x82099a0,6, 0x82099c0,6, 0x82099e0,6, 0x8209a00,6, 0x8209a20,6, 0x8209a40,6, 0x8209a60,6, 0x8209a80,6, 0x8209aa0,6, 0x8209ac0,6, 0x8209ae0,6, 0x8209b00,6, 0x8209b20,6, 0x8209b40,6, 0x8209b60,6, 0x8209b80,6, 0x8209ba0,6, 0x8209bc0,6, 0x8209be0,6, 0x8209c00,6, 0x8209c20,6, 0x8209c40,6, 0x8209c60,6, 0x8209c80,6, 0x8209ca0,6, 0x8209cc0,6, 0x8209ce0,6, 0x8209d00,6, 0x8209d20,6, 0x8209d40,6, 0x8209d60,6, 0x8209d80,6, 0x8209da0,6, 0x8209dc0,6, 0x8209de0,6, 0x8209e00,6, 0x8209e20,6, 0x8209e40,6, 0x8209e60,6, 0x8209e80,6, 0x8209ea0,6, 0x8209ec0,6, 0x8209ee0,6, 0x8209f00,6, 0x8209f20,6, 0x8209f40,6, 0x8209f60,6, 0x8209f80,6, 0x8209fa0,6, 0x8209fc0,6, 0x8209fe0,6, 0x820a000,6, 0x820a020,6, 0x820a040,6, 0x820a060,6, 0x820a080,6, 0x820a0a0,6, 0x820a0c0,6, 0x820a0e0,6, 0x820a100,6, 0x820a120,6, 0x820a140,6, 0x820a160,6, 0x820a180,6, 0x820a1a0,6, 0x820a1c0,6, 0x820a1e0,6, 0x820a200,6, 0x820a220,6, 0x820a240,6, 0x820a260,6, 0x820a280,6, 0x820a2a0,6, 0x820a2c0,6, 0x820a2e0,6, 0x820a300,6, 0x820a320,6, 0x820a340,6, 0x820a360,6, 0x820a380,6, 0x820a3a0,6, 0x820a3c0,6, 0x820a3e0,6, 0x820a400,6, 0x820a420,6, 0x820a440,6, 0x820a460,6, 0x820a480,6, 0x820a4a0,6, 0x820a4c0,6, 0x820a4e0,6, 0x820a500,6, 0x820a520,6, 0x820a540,6, 0x820a560,6, 0x820a580,6, 0x820a5a0,6, 0x820a5c0,6, 0x820a5e0,6, 0x820a600,6, 0x820a620,6, 0x820a640,6, 0x820a660,6, 0x820a680,6, 0x820a6a0,6, 0x820a6c0,6, 0x820a6e0,6, 0x820a700,6, 0x820a720,6, 0x820a740,6, 0x820a760,6, 0x820a780,6, 0x820a7a0,6, 0x820a7c0,6, 0x820a7e0,6, 0x820a800,6, 0x820a820,6, 0x820a840,6, 0x820a860,6, 0x820a880,6, 0x820a8a0,6, 0x820a8c0,6, 0x820a8e0,6, 0x820a900,6, 0x820a920,6, 0x820a940,6, 0x820a960,6, 0x820a980,6, 0x820a9a0,6, 0x820a9c0,6, 0x820a9e0,6, 0x820aa00,6, 0x820aa20,6, 0x820aa40,6, 0x820aa60,6, 0x820aa80,6, 0x820aaa0,6, 0x820aac0,6, 0x820aae0,6, 0x820ab00,6, 0x820ab20,6, 0x820ab40,6, 0x820ab60,6, 0x820ab80,6, 0x820aba0,6, 0x820abc0,6, 0x820abe0,6, 0x820ac00,6, 0x820ac20,6, 0x820ac40,6, 0x820ac60,6, 0x820ac80,6, 0x820aca0,6, 0x820acc0,6, 0x820ace0,6, 0x820ad00,6, 0x820ad20,6, 0x820ad40,6, 0x820ad60,6, 0x820ad80,6, 0x820ada0,6, 0x820adc0,6, 0x820ade0,6, 0x820ae00,6, 0x820ae20,6, 0x820ae40,6, 0x820ae60,6, 0x820ae80,6, 0x820aea0,6, 0x820aec0,6, 0x820aee0,6, 0x820af00,6, 0x820af20,6, 0x820af40,6, 0x820af60,6, 0x820af80,6, 0x820afa0,6, 0x820afc0,6, 0x820afe0,6, 0x820b000,6, 0x820b020,6, 0x820b040,6, 0x820b060,6, 0x820b080,6, 0x820b0a0,6, 0x820b0c0,6, 0x820b0e0,6, 0x820b100,6, 0x820b120,6, 0x820b140,6, 0x820b160,6, 0x820b180,6, 0x820b1a0,6, 0x820b1c0,6, 0x820b1e0,6, 0x820b200,6, 0x820b220,6, 0x820b240,6, 0x820b260,6, 0x820b280,6, 0x820b2a0,6, 0x820b2c0,6, 0x820b2e0,6, 0x820b300,6, 0x820b320,6, 0x820b340,6, 0x820b360,6, 0x820b380,6, 0x820b3a0,6, 0x820b3c0,6, 0x820b3e0,6, 0x820b400,6, 0x820b420,6, 0x820b440,6, 0x820b460,6, 0x820b480,6, 0x820b4a0,6, 0x820b4c0,6, 0x820b4e0,6, 0x820b500,6, 0x820b520,6, 0x820b540,6, 0x820b560,6, 0x820b580,6, 0x820b5a0,6, 0x820b5c0,6, 0x820b5e0,6, 0x820b600,6, 0x820b620,6, 0x820b640,6, 0x820b660,6, 0x820b680,6, 0x820b6a0,6, 0x820b6c0,6, 0x820b6e0,6, 0x820b700,6, 0x820b720,6, 0x820b740,6, 0x820b760,6, 0x820b780,6, 0x820b7a0,6, 0x820b7c0,6, 0x820b7e0,6, 0x820b800,6, 0x820b820,6, 0x820b840,6, 0x820b860,6, 0x820b880,6, 0x820b8a0,6, 0x820b8c0,6, 0x820b8e0,6, 0x820b900,6, 0x820b920,6, 0x820b940,6, 0x820b960,6, 0x820b980,6, 0x820b9a0,6, 0x820b9c0,6, 0x820b9e0,6, 0x820ba00,6, 0x820ba20,6, 0x820ba40,6, 0x820ba60,6, 0x820ba80,6, 0x820baa0,6, 0x820bac0,6, 0x820bae0,6, 0x820bb00,6, 0x820bb20,6, 0x820bb40,6, 0x820bb60,6, 0x820bb80,6, 0x820bba0,6, 0x820bbc0,6, 0x820bbe0,6, 0x820bc00,6, 0x820bc20,6, 0x820bc40,6, 0x820bc60,6, 0x820bc80,6, 0x820bca0,6, 0x820bcc0,6, 0x820bce0,6, 0x820bd00,6, 0x820bd20,6, 0x820bd40,6, 0x820bd60,6, 0x820bd80,6, 0x820bda0,6, 0x820bdc0,6, 0x820bde0,6, 0x820be00,6, 0x820be20,6, 0x820be40,6, 0x820be60,6, 0x820be80,6, 0x820bea0,6, 0x820bec0,6, 0x820bee0,6, 0x820bf00,6, 0x820bf20,6, 0x820bf40,6, 0x820bf60,6, 0x820bf80,6, 0x820bfa0,6, 0x820bfc0,6, 0x820bfe0,6, 0x820c000,6, 0x820c020,6, 0x820c040,6, 0x820c060,6, 0x820c080,6, 0x820c0a0,6, 0x820c0c0,6, 0x820c0e0,6, 0x820c100,6, 0x820c120,6, 0x820c140,6, 0x820c160,6, 0x820c180,6, 0x820c1a0,6, 0x820c1c0,6, 0x820c1e0,6, 0x820c200,6, 0x820c220,6, 0x820c240,6, 0x820c260,6, 0x820c280,6, 0x820c2a0,6, 0x820c2c0,6, 0x820c2e0,6, 0x820c300,6, 0x820c320,6, 0x820c340,6, 0x820c360,6, 0x820c380,6, 0x820c3a0,6, 0x820c3c0,6, 0x820c3e0,6, 0x820c400,6, 0x820c420,6, 0x820c440,6, 0x820c460,6, 0x820c480,6, 0x820c4a0,6, 0x820c4c0,6, 0x820c4e0,6, 0x820c500,6, 0x820c520,6, 0x820c540,6, 0x820c560,6, 0x820c580,6, 0x820c5a0,6, 0x820c5c0,6, 0x820c5e0,6, 0x820c600,6, 0x820c620,6, 0x820c640,6, 0x820c660,6, 0x820c680,6, 0x820c6a0,6, 0x820c6c0,6, 0x820c6e0,6, 0x820c700,6, 0x820c720,6, 0x820c740,6, 0x820c760,6, 0x820c780,6, 0x820c7a0,6, 0x820c7c0,6, 0x820c7e0,6, 0x820c800,6, 0x820c820,6, 0x820c840,6, 0x820c860,6, 0x820c880,6, 0x820c8a0,6, 0x820c8c0,6, 0x820c8e0,6, 0x820c900,6, 0x820c920,6, 0x820c940,6, 0x820c960,6, 0x820c980,6, 0x820c9a0,6, 0x820c9c0,6, 0x820c9e0,6, 0x820ca00,6, 0x820ca20,6, 0x820ca40,6, 0x820ca60,6, 0x820ca80,6, 0x820caa0,6, 0x820cac0,6, 0x820cae0,6, 0x820cb00,6, 0x820cb20,6, 0x820cb40,6, 0x820cb60,6, 0x820cb80,6, 0x820cba0,6, 0x820cbc0,6, 0x820cbe0,6, 0x820cc00,6, 0x820cc20,6, 0x820cc40,6, 0x820cc60,6, 0x820cc80,6, 0x820cca0,6, 0x820ccc0,6, 0x820cce0,6, 0x820cd00,6, 0x820cd20,6, 0x820cd40,6, 0x820cd60,6, 0x820cd80,6, 0x820cda0,6, 0x820cdc0,6, 0x820cde0,6, 0x820ce00,6, 0x820ce20,6, 0x820ce40,6, 0x820ce60,6, 0x820ce80,6, 0x820cea0,6, 0x820cec0,6, 0x820cee0,6, 0x820cf00,6, 0x820cf20,6, 0x820cf40,6, 0x820cf60,6, 0x820cf80,6, 0x820cfa0,6, 0x820cfc0,6, 0x820cfe0,6, 0x820d000,6, 0x820d020,6, 0x820d040,6, 0x820d060,6, 0x820d080,6, 0x820d0a0,6, 0x820d0c0,6, 0x820d0e0,6, 0x820d100,6, 0x820d120,6, 0x820d140,6, 0x820d160,6, 0x820d180,6, 0x820d1a0,6, 0x820d1c0,6, 0x820d1e0,6, 0x820d200,6, 0x820d220,6, 0x820d240,6, 0x820d260,6, 0x820d280,6, 0x820d2a0,6, 0x820d2c0,6, 0x820d2e0,6, 0x820d300,6, 0x820d320,6, 0x820d340,6, 0x820d360,6, 0x820d380,6, 0x820d3a0,6, 0x820d3c0,6, 0x820d3e0,6, 0x820d400,6, 0x820d420,6, 0x820d440,6, 0x820d460,6, 0x820d480,6, 0x820d4a0,6, 0x820d4c0,6, 0x820d4e0,6, 0x820d500,6, 0x820d520,6, 0x820d540,6, 0x820d560,6, 0x820d580,6, 0x820d5a0,6, 0x820d5c0,6, 0x820d5e0,6, 0x820d600,6, 0x820d620,6, 0x820d640,6, 0x820d660,6, 0x820d680,6, 0x820d6a0,6, 0x820d6c0,6, 0x820d6e0,6, 0x820d700,6, 0x820d720,6, 0x820d740,6, 0x820d760,6, 0x820d780,6, 0x820d7a0,6, 0x820d7c0,6, 0x820d7e0,6, 0x820d800,6, 0x820d820,6, 0x820d840,6, 0x820d860,6, 0x820d880,6, 0x820d8a0,6, 0x820d8c0,6, 0x820d8e0,6, 0x820d900,6, 0x820d920,6, 0x820d940,6, 0x820d960,6, 0x820d980,6, 0x820d9a0,6, 0x820d9c0,6, 0x820d9e0,6, 0x820da00,6, 0x820da20,6, 0x820da40,6, 0x820da60,6, 0x820da80,6, 0x820daa0,6, 0x820dac0,6, 0x820dae0,6, 0x820db00,6, 0x820db20,6, 0x820db40,6, 0x820db60,6, 0x820db80,6, 0x820dba0,6, 0x820dbc0,6, 0x820dbe0,6, 0x820dc00,6, 0x820dc20,6, 0x820dc40,6, 0x820dc60,6, 0x820dc80,6, 0x820dca0,6, 0x820dcc0,6, 0x820dce0,6, 0x820dd00,6, 0x820dd20,6, 0x820dd40,6, 0x820dd60,6, 0x820dd80,6, 0x820dda0,6, 0x820ddc0,6, 0x820dde0,6, 0x820de00,6, 0x820de20,6, 0x820de40,6, 0x820de60,6, 0x820de80,6, 0x820dea0,6, 0x820dec0,6, 0x820dee0,6, 0x820df00,6, 0x820df20,6, 0x820df40,6, 0x820df60,6, 0x820df80,6, 0x820dfa0,6, 0x820dfc0,6, 0x820dfe0,6, 0x820e000,6, 0x820e020,6, 0x820e040,6, 0x820e060,6, 0x820e080,6, 0x820e0a0,6, 0x820e0c0,6, 0x820e0e0,6, 0x820e100,6, 0x820e120,6, 0x820e140,6, 0x820e160,6, 0x820e180,6, 0x820e1a0,6, 0x820e1c0,6, 0x820e1e0,6, 0x820e200,6, 0x820e220,6, 0x820e240,6, 0x820e260,6, 0x820e280,6, 0x820e2a0,6, 0x820e2c0,6, 0x820e2e0,6, 0x820e300,6, 0x820e320,6, 0x820e340,6, 0x820e360,6, 0x820e380,6, 0x820e3a0,6, 0x820e3c0,6, 0x820e3e0,6, 0x820e400,6, 0x820e420,6, 0x820e440,6, 0x820e460,6, 0x820e480,6, 0x820e4a0,6, 0x820e4c0,6, 0x820e4e0,6, 0x820e500,6, 0x820e520,6, 0x820e540,6, 0x820e560,6, 0x820e580,6, 0x820e5a0,6, 0x820e5c0,6, 0x820e5e0,6, 0x820e600,6, 0x820e620,6, 0x820e640,6, 0x820e660,6, 0x820e680,6, 0x820e6a0,6, 0x820e6c0,6, 0x820e6e0,6, 0x820e700,6, 0x820e720,6, 0x820e740,6, 0x820e760,6, 0x820e780,6, 0x820e7a0,6, 0x820e7c0,6, 0x820e7e0,6, 0x820e800,6, 0x820e820,6, 0x820e840,6, 0x820e860,6, 0x820e880,6, 0x820e8a0,6, 0x820e8c0,6, 0x820e8e0,6, 0x820e900,6, 0x820e920,6, 0x820e940,6, 0x820e960,6, 0x820e980,6, 0x820e9a0,6, 0x820e9c0,6, 0x820e9e0,6, 0x820ea00,6, 0x820ea20,6, 0x820ea40,6, 0x820ea60,6, 0x820ea80,6, 0x820eaa0,6, 0x820eac0,6, 0x820eae0,6, 0x820eb00,6, 0x820eb20,6, 0x820eb40,6, 0x820eb60,6, 0x820eb80,6, 0x820eba0,6, 0x820ebc0,6, 0x820ebe0,6, 0x820ec00,6, 0x820ec20,6, 0x820ec40,6, 0x820ec60,6, 0x820ec80,6, 0x820eca0,6, 0x820ecc0,6, 0x820ece0,6, 0x820ed00,6, 0x820ed20,6, 0x820ed40,6, 0x820ed60,6, 0x820ed80,6, 0x820eda0,6, 0x820edc0,6, 0x820ede0,6, 0x820ee00,6, 0x820ee20,6, 0x820ee40,6, 0x820ee60,6, 0x820ee80,6, 0x820eea0,6, 0x820eec0,6, 0x820eee0,6, 0x820ef00,6, 0x820ef20,6, 0x820ef40,6, 0x820ef60,6, 0x820ef80,6, 0x820efa0,6, 0x820efc0,6, 0x820efe0,6, 0x820f000,6, 0x820f020,6, 0x820f040,6, 0x820f060,6, 0x820f080,6, 0x820f0a0,6, 0x820f0c0,6, 0x820f0e0,6, 0x820f100,6, 0x820f120,6, 0x820f140,6, 0x820f160,6, 0x820f180,6, 0x820f1a0,6, 0x820f1c0,6, 0x820f1e0,6, 0x820f200,6, 0x820f220,6, 0x820f240,6, 0x820f260,6, 0x820f280,6, 0x820f2a0,6, 0x820f2c0,6, 0x820f2e0,6, 0x820f300,6, 0x820f320,6, 0x820f340,6, 0x820f360,6, 0x820f380,6, 0x820f3a0,6, 0x820f3c0,6, 0x820f3e0,6, 0x820f400,6, 0x820f420,6, 0x820f440,6, 0x820f460,6, 0x820f480,6, 0x820f4a0,6, 0x820f4c0,6, 0x820f4e0,6, 0x820f500,6, 0x820f520,6, 0x820f540,6, 0x820f560,6, 0x820f580,6, 0x820f5a0,6, 0x820f5c0,6, 0x820f5e0,6, 0x820f600,6, 0x820f620,6, 0x820f640,6, 0x820f660,6, 0x820f680,6, 0x820f6a0,6, 0x820f6c0,6, 0x820f6e0,6, 0x820f700,6, 0x820f720,6, 0x820f740,6, 0x820f760,6, 0x820f780,6, 0x820f7a0,6, 0x820f7c0,6, 0x820f7e0,6, 0x820f800,6, 0x820f820,6, 0x820f840,6, 0x820f860,6, 0x820f880,6, 0x820f8a0,6, 0x820f8c0,6, 0x820f8e0,6, 0x820f900,6, 0x820f920,6, 0x820f940,6, 0x820f960,6, 0x820f980,6, 0x820f9a0,6, 0x820f9c0,6, 0x820f9e0,6, 0x820fa00,6, 0x820fa20,6, 0x820fa40,6, 0x820fa60,6, 0x820fa80,6, 0x820faa0,6, 0x820fac0,6, 0x820fae0,6, 0x820fb00,6, 0x820fb20,6, 0x820fb40,6, 0x820fb60,6, 0x820fb80,6, 0x820fba0,6, 0x820fbc0,6, 0x820fbe0,6, 0x820fc00,6, 0x820fc20,6, 0x820fc40,6, 0x820fc60,6, 0x820fc80,6, 0x820fca0,6, 0x820fcc0,6, 0x820fce0,6, 0x820fd00,6, 0x820fd20,6, 0x820fd40,6, 0x820fd60,6, 0x820fd80,6, 0x820fda0,6, 0x820fdc0,6, 0x820fde0,6, 0x820fe00,6, 0x820fe20,6, 0x820fe40,6, 0x820fe60,6, 0x820fe80,6, 0x820fea0,6, 0x820fec0,6, 0x820fee0,6, 0x820ff00,6, 0x820ff20,6, 0x820ff40,6, 0x820ff60,6, 0x820ff80,6, 0x820ffa0,6, 0x820ffc0,6, 0x820ffe0,6, 0x8210000,6, 0x8210020,6, 0x8210040,6, 0x8210060,6, 0x8210080,6, 0x82100a0,6, 0x82100c0,6, 0x82100e0,6, 0x8210100,6, 0x8210120,6, 0x8210140,6, 0x8210160,6, 0x8210180,6, 0x82101a0,6, 0x82101c0,6, 0x82101e0,6, 0x8210200,6, 0x8210220,6, 0x8210240,6, 0x8210260,6, 0x8210280,6, 0x82102a0,6, 0x82102c0,6, 0x82102e0,6, 0x8210300,6, 0x8210320,6, 0x8210340,6, 0x8210360,6, 0x8210380,6, 0x82103a0,6, 0x82103c0,6, 0x82103e0,6, 0x8210400,6, 0x8210420,6, 0x8210440,6, 0x8210460,6, 0x8210480,6, 0x82104a0,6, 0x82104c0,6, 0x82104e0,6, 0x8210500,6, 0x8210520,6, 0x8210540,6, 0x8210560,6, 0x8210580,6, 0x82105a0,6, 0x82105c0,6, 0x82105e0,6, 0x8210600,6, 0x8210620,6, 0x8210640,6, 0x8210660,6, 0x8210680,6, 0x82106a0,6, 0x82106c0,6, 0x82106e0,6, 0x8210700,6, 0x8210720,6, 0x8210740,6, 0x8210760,6, 0x8210780,6, 0x82107a0,6, 0x82107c0,6, 0x82107e0,6, 0x8210800,6, 0x8210820,6, 0x8210840,6, 0x8210860,6, 0x8210880,6, 0x82108a0,6, 0x82108c0,6, 0x82108e0,6, 0x8210900,6, 0x8210920,6, 0x8210940,6, 0x8210960,6, 0x8210980,6, 0x82109a0,6, 0x82109c0,6, 0x82109e0,6, 0x8210a00,6, 0x8210a20,6, 0x8210a40,6, 0x8210a60,6, 0x8210a80,6, 0x8210aa0,6, 0x8210ac0,6, 0x8210ae0,6, 0x8210b00,6, 0x8210b20,6, 0x8210b40,6, 0x8210b60,6, 0x8210b80,6, 0x8210ba0,6, 0x8210bc0,6, 0x8210be0,6, 0x8210c00,6, 0x8210c20,6, 0x8210c40,6, 0x8210c60,6, 0x8210c80,6, 0x8210ca0,6, 0x8210cc0,6, 0x8210ce0,6, 0x8210d00,6, 0x8210d20,6, 0x8210d40,6, 0x8210d60,6, 0x8210d80,6, 0x8210da0,6, 0x8210dc0,6, 0x8210de0,6, 0x8210e00,6, 0x8210e20,6, 0x8210e40,6, 0x8210e60,6, 0x8210e80,6, 0x8210ea0,6, 0x8210ec0,6, 0x8210ee0,6, 0x8210f00,6, 0x8210f20,6, 0x8210f40,6, 0x8210f60,6, 0x8210f80,6, 0x8210fa0,6, 0x8210fc0,6, 0x8210fe0,6, 0x8211000,6, 0x8211020,6, 0x8211040,6, 0x8211060,6, 0x8211080,6, 0x82110a0,6, 0x82110c0,6, 0x82110e0,6, 0x8211100,6, 0x8211120,6, 0x8211140,6, 0x8211160,6, 0x8211180,6, 0x82111a0,6, 0x82111c0,6, 0x82111e0,6, 0x8211200,6, 0x8211220,6, 0x8211240,6, 0x8211260,6, 0x8211280,6, 0x82112a0,6, 0x82112c0,6, 0x82112e0,6, 0x8211300,6, 0x8211320,6, 0x8211340,6, 0x8211360,6, 0x8211380,6, 0x82113a0,6, 0x82113c0,6, 0x82113e0,6, 0x8211400,6, 0x8211420,6, 0x8211440,6, 0x8211460,6, 0x8211480,6, 0x82114a0,6, 0x82114c0,6, 0x82114e0,6, 0x8211500,6, 0x8211520,6, 0x8211540,6, 0x8211560,6, 0x8211580,6, 0x82115a0,6, 0x82115c0,6, 0x82115e0,6, 0x8211600,6, 0x8211620,6, 0x8211640,6, 0x8211660,6, 0x8211680,6, 0x82116a0,6, 0x82116c0,6, 0x82116e0,6, 0x8211700,6, 0x8211720,6, 0x8211740,6, 0x8211760,6, 0x8211780,6, 0x82117a0,6, 0x82117c0,6, 0x82117e0,6, 0x8211800,6, 0x8211820,6, 0x8211840,6, 0x8211860,6, 0x8211880,6, 0x82118a0,6, 0x82118c0,6, 0x82118e0,6, 0x8211900,6, 0x8211920,6, 0x8211940,6, 0x8211960,6, 0x8211980,6, 0x82119a0,6, 0x82119c0,6, 0x82119e0,6, 0x8211a00,6, 0x8211a20,6, 0x8211a40,6, 0x8211a60,6, 0x8211a80,6, 0x8211aa0,6, 0x8211ac0,6, 0x8211ae0,6, 0x8211b00,6, 0x8211b20,6, 0x8211b40,6, 0x8211b60,6, 0x8211b80,6, 0x8211ba0,6, 0x8211bc0,6, 0x8211be0,6, 0x8211c00,6, 0x8211c20,6, 0x8211c40,6, 0x8211c60,6, 0x8211c80,6, 0x8211ca0,6, 0x8211cc0,6, 0x8211ce0,6, 0x8211d00,6, 0x8211d20,6, 0x8211d40,6, 0x8211d60,6, 0x8211d80,6, 0x8211da0,6, 0x8211dc0,6, 0x8211de0,6, 0x8211e00,6, 0x8211e20,6, 0x8211e40,6, 0x8211e60,6, 0x8211e80,6, 0x8211ea0,6, 0x8211ec0,6, 0x8211ee0,6, 0x8211f00,6, 0x8211f20,6, 0x8211f40,6, 0x8211f60,6, 0x8211f80,6, 0x8211fa0,6, 0x8211fc0,6, 0x8211fe0,6, 0x8212000,6, 0x8212020,6, 0x8212040,6, 0x8212060,6, 0x8212080,6, 0x82120a0,6, 0x82120c0,6, 0x82120e0,6, 0x8212100,6, 0x8212120,6, 0x8212140,6, 0x8212160,6, 0x8212180,6, 0x82121a0,6, 0x82121c0,6, 0x82121e0,6, 0x8212200,6, 0x8212220,6, 0x8212240,6, 0x8212260,6, 0x8212280,6, 0x82122a0,6, 0x82122c0,6, 0x82122e0,6, 0x8212300,6, 0x8212320,6, 0x8212340,6, 0x8212360,6, 0x8212380,6, 0x82123a0,6, 0x82123c0,6, 0x82123e0,6, 0x8212400,6, 0x8212420,6, 0x8212440,6, 0x8212460,6, 0x8212480,6, 0x82124a0,6, 0x82124c0,6, 0x82124e0,6, 0x8212500,6, 0x8212520,6, 0x8212540,6, 0x8212560,6, 0x8212580,6, 0x82125a0,6, 0x82125c0,6, 0x82125e0,6, 0x8212600,6, 0x8212620,6, 0x8212640,6, 0x8212660,6, 0x8212680,6, 0x82126a0,6, 0x82126c0,6, 0x82126e0,6, 0x8212700,6, 0x8212720,6, 0x8212740,6, 0x8212760,6, 0x8212780,6, 0x82127a0,6, 0x82127c0,6, 0x82127e0,6, 0x8212800,6, 0x8212820,6, 0x8212840,6, 0x8212860,6, 0x8212880,6, 0x82128a0,6, 0x82128c0,6, 0x82128e0,6, 0x8212900,6, 0x8212920,6, 0x8212940,6, 0x8212960,6, 0x8212980,6, 0x82129a0,6, 0x82129c0,6, 0x82129e0,6, 0x8212a00,6, 0x8212a20,6, 0x8212a40,6, 0x8212a60,6, 0x8212a80,6, 0x8212aa0,6, 0x8212ac0,6, 0x8212ae0,6, 0x8212b00,6, 0x8212b20,6, 0x8212b40,6, 0x8212b60,6, 0x8212b80,6, 0x8212ba0,6, 0x8212bc0,6, 0x8212be0,6, 0x8212c00,6, 0x8212c20,6, 0x8212c40,6, 0x8212c60,6, 0x8212c80,6, 0x8212ca0,6, 0x8212cc0,6, 0x8212ce0,6, 0x8212d00,6, 0x8212d20,6, 0x8212d40,6, 0x8212d60,6, 0x8212d80,6, 0x8212da0,6, 0x8212dc0,6, 0x8212de0,6, 0x8212e00,6, 0x8212e20,6, 0x8212e40,6, 0x8212e60,6, 0x8212e80,6, 0x8212ea0,6, 0x8212ec0,6, 0x8212ee0,6, 0x8212f00,6, 0x8212f20,6, 0x8212f40,6, 0x8212f60,6, 0x8212f80,6, 0x8212fa0,6, 0x8212fc0,6, 0x8212fe0,6, 0x8213000,6, 0x8213020,6, 0x8213040,6, 0x8213060,6, 0x8213080,6, 0x82130a0,6, 0x82130c0,6, 0x82130e0,6, 0x8213100,6, 0x8213120,6, 0x8213140,6, 0x8213160,6, 0x8213180,6, 0x82131a0,6, 0x82131c0,6, 0x82131e0,6, 0x8213200,6, 0x8213220,6, 0x8213240,6, 0x8213260,6, 0x8213280,6, 0x82132a0,6, 0x82132c0,6, 0x82132e0,6, 0x8213300,6, 0x8213320,6, 0x8213340,6, 0x8213360,6, 0x8213380,6, 0x82133a0,6, 0x82133c0,6, 0x82133e0,6, 0x8213400,6, 0x8213420,6, 0x8213440,6, 0x8213460,6, 0x8213480,6, 0x82134a0,6, 0x82134c0,6, 0x82134e0,6, 0x8213500,6, 0x8213520,6, 0x8213540,6, 0x8213560,6, 0x8213580,6, 0x82135a0,6, 0x82135c0,6, 0x82135e0,6, 0x8213600,6, 0x8213620,6, 0x8213640,6, 0x8213660,6, 0x8213680,6, 0x82136a0,6, 0x82136c0,6, 0x82136e0,6, 0x8213700,6, 0x8213720,6, 0x8213740,6, 0x8213760,6, 0x8213780,6, 0x82137a0,6, 0x82137c0,6, 0x82137e0,6, 0x8213800,6, 0x8213820,6, 0x8213840,6, 0x8213860,6, 0x8213880,6, 0x82138a0,6, 0x82138c0,6, 0x82138e0,6, 0x8213900,6, 0x8213920,6, 0x8213940,6, 0x8213960,6, 0x8213980,6, 0x82139a0,6, 0x82139c0,6, 0x82139e0,6, 0x8213a00,6, 0x8213a20,6, 0x8213a40,6, 0x8213a60,6, 0x8213a80,6, 0x8213aa0,6, 0x8213ac0,6, 0x8213ae0,6, 0x8213b00,6, 0x8213b20,6, 0x8213b40,6, 0x8213b60,6, 0x8213b80,6, 0x8213ba0,6, 0x8213bc0,6, 0x8213be0,6, 0x8213c00,6, 0x8213c20,6, 0x8213c40,6, 0x8213c60,6, 0x8213c80,6, 0x8213ca0,6, 0x8213cc0,6, 0x8213ce0,6, 0x8213d00,6, 0x8213d20,6, 0x8213d40,6, 0x8213d60,6, 0x8213d80,6, 0x8213da0,6, 0x8213dc0,6, 0x8213de0,6, 0x8213e00,6, 0x8213e20,6, 0x8213e40,6, 0x8213e60,6, 0x8213e80,6, 0x8213ea0,6, 0x8213ec0,6, 0x8213ee0,6, 0x8213f00,6, 0x8213f20,6, 0x8213f40,6, 0x8213f60,6, 0x8213f80,6, 0x8213fa0,6, 0x8213fc0,6, 0x8213fe0,6, 0x8214000,6, 0x8214020,6, 0x8214040,6, 0x8214060,6, 0x8214080,6, 0x82140a0,6, 0x82140c0,6, 0x82140e0,6, 0x8214100,6, 0x8214120,6, 0x8214140,6, 0x8214160,6, 0x8214180,6, 0x82141a0,6, 0x82141c0,6, 0x82141e0,6, 0x8214200,6, 0x8214220,6, 0x8214240,6, 0x8214260,6, 0x8214280,6, 0x82142a0,6, 0x82142c0,6, 0x82142e0,6, 0x8214300,6, 0x8214320,6, 0x8214340,6, 0x8214360,6, 0x8214380,6, 0x82143a0,6, 0x82143c0,6, 0x82143e0,6, 0x8214400,6, 0x8214420,6, 0x8214440,6, 0x8214460,6, 0x8214480,6, 0x82144a0,6, 0x82144c0,6, 0x82144e0,6, 0x8214500,6, 0x8214520,6, 0x8214540,6, 0x8214560,6, 0x8214580,6, 0x82145a0,6, 0x82145c0,6, 0x82145e0,6, 0x8214600,6, 0x8214620,6, 0x8214640,6, 0x8214660,6, 0x8214680,6, 0x82146a0,6, 0x82146c0,6, 0x82146e0,6, 0x8214700,6, 0x8214720,6, 0x8214740,6, 0x8214760,6, 0x8214780,6, 0x82147a0,6, 0x82147c0,6, 0x82147e0,6, 0x8214800,6, 0x8214820,6, 0x8214840,6, 0x8214860,6, 0x8214880,6, 0x82148a0,6, 0x82148c0,6, 0x82148e0,6, 0x8214900,6, 0x8214920,6, 0x8214940,6, 0x8214960,6, 0x8214980,6, 0x82149a0,6, 0x82149c0,6, 0x82149e0,6, 0x8214a00,6, 0x8214a20,6, 0x8214a40,6, 0x8214a60,6, 0x8214a80,6, 0x8214aa0,6, 0x8214ac0,6, 0x8214ae0,6, 0x8214b00,6, 0x8214b20,6, 0x8214b40,6, 0x8214b60,6, 0x8214b80,6, 0x8214ba0,6, 0x8214bc0,6, 0x8214be0,6, 0x8214c00,6, 0x8214c20,6, 0x8214c40,6, 0x8214c60,6, 0x8214c80,6, 0x8214ca0,6, 0x8214cc0,6, 0x8214ce0,6, 0x8214d00,6, 0x8214d20,6, 0x8214d40,6, 0x8214d60,6, 0x8214d80,6, 0x8214da0,6, 0x8214dc0,6, 0x8214de0,6, 0x8214e00,6, 0x8214e20,6, 0x8214e40,6, 0x8214e60,6, 0x8214e80,6, 0x8214ea0,6, 0x8214ec0,6, 0x8214ee0,6, 0x8214f00,6, 0x8214f20,6, 0x8214f40,6, 0x8214f60,6, 0x8214f80,6, 0x8214fa0,6, 0x8214fc0,6, 0x8214fe0,6, 0x8215000,6, 0x8215020,6, 0x8215040,6, 0x8215060,6, 0x8215080,6, 0x82150a0,6, 0x82150c0,6, 0x82150e0,6, 0x8215100,6, 0x8215120,6, 0x8215140,6, 0x8215160,6, 0x8215180,6, 0x82151a0,6, 0x82151c0,6, 0x82151e0,6, 0x8215200,6, 0x8215220,6, 0x8215240,6, 0x8215260,6, 0x8215280,6, 0x82152a0,6, 0x82152c0,6, 0x82152e0,6, 0x8215300,6, 0x8215320,6, 0x8215340,6, 0x8215360,6, 0x8215380,6, 0x82153a0,6, 0x82153c0,6, 0x82153e0,6, 0x8215400,6, 0x8215420,6, 0x8215440,6, 0x8215460,6, 0x8215480,6, 0x82154a0,6, 0x82154c0,6, 0x82154e0,6, 0x8215500,6, 0x8215520,6, 0x8215540,6, 0x8215560,6, 0x8215580,6, 0x82155a0,6, 0x82155c0,6, 0x82155e0,6, 0x8215600,6, 0x8215620,6, 0x8215640,6, 0x8215660,6, 0x8215680,6, 0x82156a0,6, 0x82156c0,6, 0x82156e0,6, 0x8215700,6, 0x8215720,6, 0x8215740,6, 0x8215760,6, 0x8215780,6, 0x82157a0,6, 0x82157c0,6, 0x82157e0,6, 0x8215800,6, 0x8215820,6, 0x8215840,6, 0x8215860,6, 0x8215880,6, 0x82158a0,6, 0x82158c0,6, 0x82158e0,6, 0x8215900,6, 0x8215920,6, 0x8215940,6, 0x8215960,6, 0x8215980,6, 0x82159a0,6, 0x82159c0,6, 0x82159e0,6, 0x8215a00,6, 0x8215a20,6, 0x8215a40,6, 0x8215a60,6, 0x8215a80,6, 0x8215aa0,6, 0x8215ac0,6, 0x8215ae0,6, 0x8215b00,6, 0x8215b20,6, 0x8215b40,6, 0x8215b60,6, 0x8215b80,6, 0x8215ba0,6, 0x8215bc0,6, 0x8215be0,6, 0x8215c00,6, 0x8215c20,6, 0x8215c40,6, 0x8215c60,6, 0x8215c80,6, 0x8215ca0,6, 0x8215cc0,6, 0x8215ce0,6, 0x8215d00,6, 0x8215d20,6, 0x8215d40,6, 0x8215d60,6, 0x8215d80,6, 0x8215da0,6, 0x8215dc0,6, 0x8215de0,6, 0x8215e00,6, 0x8215e20,6, 0x8215e40,6, 0x8215e60,6, 0x8215e80,6, 0x8215ea0,6, 0x8215ec0,6, 0x8215ee0,6, 0x8215f00,6, 0x8215f20,6, 0x8215f40,6, 0x8215f60,6, 0x8215f80,6, 0x8215fa0,6, 0x8215fc0,6, 0x8215fe0,6, 0x8216000,6, 0x8216020,6, 0x8216040,6, 0x8216060,6, 0x8216080,6, 0x82160a0,6, 0x82160c0,6, 0x82160e0,6, 0x8216100,6, 0x8216120,6, 0x8216140,6, 0x8216160,6, 0x8216180,6, 0x82161a0,6, 0x82161c0,6, 0x82161e0,6, 0x8216200,6, 0x8216220,6, 0x8216240,6, 0x8216260,6, 0x8216280,6, 0x82162a0,6, 0x82162c0,6, 0x82162e0,6, 0x8216300,6, 0x8216320,6, 0x8216340,6, 0x8216360,6, 0x8216380,6, 0x82163a0,6, 0x82163c0,6, 0x82163e0,6, 0x8216400,6, 0x8216420,6, 0x8216440,6, 0x8216460,6, 0x8216480,6, 0x82164a0,6, 0x82164c0,6, 0x82164e0,6, 0x8216500,6, 0x8216520,6, 0x8216540,6, 0x8216560,6, 0x8216580,6, 0x82165a0,6, 0x82165c0,6, 0x82165e0,6, 0x8216600,6, 0x8216620,6, 0x8216640,6, 0x8216660,6, 0x8216680,6, 0x82166a0,6, 0x82166c0,6, 0x82166e0,6, 0x8216700,6, 0x8216720,6, 0x8216740,6, 0x8216760,6, 0x8216780,6, 0x82167a0,6, 0x82167c0,6, 0x82167e0,6, 0x8216800,6, 0x8216820,6, 0x8216840,6, 0x8216860,6, 0x8216880,6, 0x82168a0,6, 0x82168c0,6, 0x82168e0,6, 0x8216900,6, 0x8216920,6, 0x8216940,6, 0x8216960,6, 0x8216980,6, 0x82169a0,6, 0x82169c0,6, 0x82169e0,6, 0x8216a00,6, 0x8216a20,6, 0x8216a40,6, 0x8216a60,6, 0x8216a80,6, 0x8216aa0,6, 0x8216ac0,6, 0x8216ae0,6, 0x8216b00,6, 0x8216b20,6, 0x8216b40,6, 0x8216b60,6, 0x8216b80,6, 0x8216ba0,6, 0x8216bc0,6, 0x8216be0,6, 0x8216c00,6, 0x8216c20,6, 0x8216c40,6, 0x8216c60,6, 0x8216c80,6, 0x8216ca0,6, 0x8216cc0,6, 0x8216ce0,6, 0x8216d00,6, 0x8216d20,6, 0x8216d40,6, 0x8216d60,6, 0x8216d80,6, 0x8216da0,6, 0x8216dc0,6, 0x8216de0,6, 0x8216e00,6, 0x8216e20,6, 0x8216e40,6, 0x8216e60,6, 0x8216e80,6, 0x8216ea0,6, 0x8216ec0,6, 0x8216ee0,6, 0x8216f00,6, 0x8216f20,6, 0x8216f40,6, 0x8216f60,6, 0x8216f80,6, 0x8216fa0,6, 0x8216fc0,6, 0x8216fe0,6, 0x8217000,6, 0x8217020,6, 0x8217040,6, 0x8217060,6, 0x8217080,6, 0x82170a0,6, 0x82170c0,6, 0x82170e0,6, 0x8217100,6, 0x8217120,6, 0x8217140,6, 0x8217160,6, 0x8217180,6, 0x82171a0,6, 0x82171c0,6, 0x82171e0,6, 0x8217200,6, 0x8217220,6, 0x8217240,6, 0x8217260,6, 0x8217280,6, 0x82172a0,6, 0x82172c0,6, 0x82172e0,6, 0x8217300,6, 0x8217320,6, 0x8217340,6, 0x8217360,6, 0x8217380,6, 0x82173a0,6, 0x82173c0,6, 0x82173e0,6, 0x8217400,6, 0x8217420,6, 0x8217440,6, 0x8217460,6, 0x8217480,6, 0x82174a0,6, 0x82174c0,6, 0x82174e0,6, 0x8217500,6, 0x8217520,6, 0x8217540,6, 0x8217560,6, 0x8217580,6, 0x82175a0,6, 0x82175c0,6, 0x82175e0,6, 0x8217600,6, 0x8217620,6, 0x8217640,6, 0x8217660,6, 0x8217680,6, 0x82176a0,6, 0x82176c0,6, 0x82176e0,6, 0x8217700,6, 0x8217720,6, 0x8217740,6, 0x8217760,6, 0x8217780,6, 0x82177a0,6, 0x82177c0,6, 0x82177e0,6, 0x8217800,6, 0x8217820,6, 0x8217840,6, 0x8217860,6, 0x8217880,6, 0x82178a0,6, 0x82178c0,6, 0x82178e0,6, 0x8217900,6, 0x8217920,6, 0x8217940,6, 0x8217960,6, 0x8217980,6, 0x82179a0,6, 0x82179c0,6, 0x82179e0,6, 0x8217a00,6, 0x8217a20,6, 0x8217a40,6, 0x8217a60,6, 0x8217a80,6, 0x8217aa0,6, 0x8217ac0,6, 0x8217ae0,6, 0x8217b00,6, 0x8217b20,6, 0x8217b40,6, 0x8217b60,6, 0x8217b80,6, 0x8217ba0,6, 0x8217bc0,6, 0x8217be0,6, 0x8217c00,6, 0x8217c20,6, 0x8217c40,6, 0x8217c60,6, 0x8217c80,6, 0x8217ca0,6, 0x8217cc0,6, 0x8217ce0,6, 0x8217d00,6, 0x8217d20,6, 0x8217d40,6, 0x8217d60,6, 0x8217d80,6, 0x8217da0,6, 0x8217dc0,6, 0x8217de0,6, 0x8217e00,6, 0x8217e20,6, 0x8217e40,6, 0x8217e60,6, 0x8217e80,6, 0x8217ea0,6, 0x8217ec0,6, 0x8217ee0,6, 0x8217f00,6, 0x8217f20,6, 0x8217f40,6, 0x8217f60,6, 0x8217f80,6, 0x8217fa0,6, 0x8217fc0,6, 0x8217fe0,6, 0x8218000,6, 0x8218020,6, 0x8218040,6, 0x8218060,6, 0x8218080,6, 0x82180a0,6, 0x82180c0,6, 0x82180e0,6, 0x8218100,6, 0x8218120,6, 0x8218140,6, 0x8218160,6, 0x8218180,6, 0x82181a0,6, 0x82181c0,6, 0x82181e0,6, 0x8218200,6, 0x8218220,6, 0x8218240,6, 0x8218260,6, 0x8218280,6, 0x82182a0,6, 0x82182c0,6, 0x82182e0,6, 0x8218300,6, 0x8218320,6, 0x8218340,6, 0x8218360,6, 0x8218380,6, 0x82183a0,6, 0x82183c0,6, 0x82183e0,6, 0x8218400,6, 0x8218420,6, 0x8218440,6, 0x8218460,6, 0x8218480,6, 0x82184a0,6, 0x82184c0,6, 0x82184e0,6, 0x8218500,6, 0x8218520,6, 0x8218540,6, 0x8218560,6, 0x8218580,6, 0x82185a0,6, 0x82185c0,6, 0x82185e0,6, 0x8218600,6, 0x8218620,6, 0x8218640,6, 0x8218660,6, 0x8218680,6, 0x82186a0,6, 0x82186c0,6, 0x82186e0,6, 0x8218700,6, 0x8218720,6, 0x8218740,6, 0x8218760,6, 0x8218780,6, 0x82187a0,6, 0x82187c0,6, 0x82187e0,6, 0x8218800,6, 0x8218820,6, 0x8218840,6, 0x8218860,6, 0x8218880,6, 0x82188a0,6, 0x82188c0,6, 0x82188e0,6, 0x8218900,6, 0x8218920,6, 0x8218940,6, 0x8218960,6, 0x8218980,6, 0x82189a0,6, 0x82189c0,6, 0x82189e0,6, 0x8218a00,6, 0x8218a20,6, 0x8218a40,6, 0x8218a60,6, 0x8218a80,6, 0x8218aa0,6, 0x8218ac0,6, 0x8218ae0,6, 0x8218b00,6, 0x8218b20,6, 0x8218b40,6, 0x8218b60,6, 0x8218b80,6, 0x8218ba0,6, 0x8218bc0,6, 0x8218be0,6, 0x8218c00,6, 0x8218c20,6, 0x8218c40,6, 0x8218c60,6, 0x8218c80,6, 0x8218ca0,6, 0x8218cc0,6, 0x8218ce0,6, 0x8218d00,6, 0x8218d20,6, 0x8218d40,6, 0x8218d60,6, 0x8218d80,6, 0x8218da0,6, 0x8218dc0,6, 0x8218de0,6, 0x8218e00,6, 0x8218e20,6, 0x8218e40,6, 0x8218e60,6, 0x8218e80,6, 0x8218ea0,6, 0x8218ec0,6, 0x8218ee0,6, 0x8218f00,6, 0x8218f20,6, 0x8218f40,6, 0x8218f60,6, 0x8218f80,6, 0x8218fa0,6, 0x8218fc0,6, 0x8218fe0,6, 0x8219000,6, 0x8219020,6, 0x8219040,6, 0x8219060,6, 0x8219080,6, 0x82190a0,6, 0x82190c0,6, 0x82190e0,6, 0x8219100,6, 0x8219120,6, 0x8219140,6, 0x8219160,6, 0x8219180,6, 0x82191a0,6, 0x82191c0,6, 0x82191e0,6, 0x8219200,6, 0x8219220,6, 0x8219240,6, 0x8219260,6, 0x8219280,6, 0x82192a0,6, 0x82192c0,6, 0x82192e0,6, 0x8219300,6, 0x8219320,6, 0x8219340,6, 0x8219360,6, 0x8219380,6, 0x82193a0,6, 0x82193c0,6, 0x82193e0,6, 0x8219400,6, 0x8219420,6, 0x8219440,6, 0x8219460,6, 0x8219480,6, 0x82194a0,6, 0x82194c0,6, 0x82194e0,6, 0x8219500,6, 0x8219520,6, 0x8219540,6, 0x8219560,6, 0x8219580,6, 0x82195a0,6, 0x82195c0,6, 0x82195e0,6, 0x8219600,6, 0x8219620,6, 0x8219640,6, 0x8219660,6, 0x8219680,6, 0x82196a0,6, 0x82196c0,6, 0x82196e0,6, 0x8219700,6, 0x8219720,6, 0x8219740,6, 0x8219760,6, 0x8219780,6, 0x82197a0,6, 0x82197c0,6, 0x82197e0,6, 0x8219800,6, 0x8219820,6, 0x8219840,6, 0x8219860,6, 0x8219880,6, 0x82198a0,6, 0x82198c0,6, 0x82198e0,6, 0x8219900,6, 0x8219920,6, 0x8219940,6, 0x8219960,6, 0x8219980,6, 0x82199a0,6, 0x82199c0,6, 0x82199e0,6, 0x8219a00,6, 0x8219a20,6, 0x8219a40,6, 0x8219a60,6, 0x8219a80,6, 0x8219aa0,6, 0x8219ac0,6, 0x8219ae0,6, 0x8219b00,6, 0x8219b20,6, 0x8219b40,6, 0x8219b60,6, 0x8219b80,6, 0x8219ba0,6, 0x8219bc0,6, 0x8219be0,6, 0x8219c00,6, 0x8219c20,6, 0x8219c40,6, 0x8219c60,6, 0x8219c80,6, 0x8219ca0,6, 0x8219cc0,6, 0x8219ce0,6, 0x8219d00,6, 0x8219d20,6, 0x8219d40,6, 0x8219d60,6, 0x8219d80,6, 0x8219da0,6, 0x8219dc0,6, 0x8219de0,6, 0x8219e00,6, 0x8219e20,6, 0x8219e40,6, 0x8219e60,6, 0x8219e80,6, 0x8219ea0,6, 0x8219ec0,6, 0x8219ee0,6, 0x8219f00,6, 0x8219f20,6, 0x8219f40,6, 0x8219f60,6, 0x8219f80,6, 0x8219fa0,6, 0x8219fc0,6, 0x8219fe0,6, 0x821a000,6, 0x821a020,6, 0x821a040,6, 0x821a060,6, 0x821a080,6, 0x821a0a0,6, 0x821a0c0,6, 0x821a0e0,6, 0x821a100,6, 0x821a120,6, 0x821a140,6, 0x821a160,6, 0x821a180,6, 0x821a1a0,6, 0x821a1c0,6, 0x821a1e0,6, 0x821a200,6, 0x821a220,6, 0x821a240,6, 0x821a260,6, 0x821a280,6, 0x821a2a0,6, 0x821a2c0,6, 0x821a2e0,6, 0x821a300,6, 0x821a320,6, 0x821a340,6, 0x821a360,6, 0x821a380,6, 0x821a3a0,6, 0x821a3c0,6, 0x821a3e0,6, 0x821a400,6, 0x821a420,6, 0x821a440,6, 0x821a460,6, 0x821a480,6, 0x821a4a0,6, 0x821a4c0,6, 0x821a4e0,6, 0x821a500,6, 0x821a520,6, 0x821a540,6, 0x821a560,6, 0x821a580,6, 0x821a5a0,6, 0x821a5c0,6, 0x821a5e0,6, 0x821a600,6, 0x821a620,6, 0x821a640,6, 0x821a660,6, 0x821a680,6, 0x821a6a0,6, 0x821a6c0,6, 0x821a6e0,6, 0x821a700,6, 0x821a720,6, 0x821a740,6, 0x821a760,6, 0x821a780,6, 0x821a7a0,6, 0x821a7c0,6, 0x821a7e0,6, 0x821a800,6, 0x821a820,6, 0x821a840,6, 0x821a860,6, 0x821a880,6, 0x821a8a0,6, 0x821a8c0,6, 0x821a8e0,6, 0x821a900,6, 0x821a920,6, 0x821a940,6, 0x821a960,6, 0x821a980,6, 0x821a9a0,6, 0x821a9c0,6, 0x821a9e0,6, 0x821aa00,6, 0x821aa20,6, 0x821aa40,6, 0x821aa60,6, 0x821aa80,6, 0x821aaa0,6, 0x821aac0,6, 0x821aae0,6, 0x821ab00,6, 0x821ab20,6, 0x821ab40,6, 0x821ab60,6, 0x821ab80,6, 0x821aba0,6, 0x821abc0,6, 0x821abe0,6, 0x821ac00,6, 0x821ac20,6, 0x821ac40,6, 0x821ac60,6, 0x821ac80,6, 0x821aca0,6, 0x821acc0,6, 0x821ace0,6, 0x821ad00,6, 0x821ad20,6, 0x821ad40,6, 0x821ad60,6, 0x821ad80,6, 0x821ada0,6, 0x821adc0,6, 0x821ade0,6, 0x821ae00,6, 0x821ae20,6, 0x821ae40,6, 0x821ae60,6, 0x821ae80,6, 0x821aea0,6, 0x821aec0,6, 0x821aee0,6, 0x821af00,6, 0x821af20,6, 0x821af40,6, 0x821af60,6, 0x821af80,6, 0x821afa0,6, 0x821afc0,6, 0x821afe0,6, 0x821b000,6, 0x821b020,6, 0x821b040,6, 0x821b060,6, 0x821b080,6, 0x821b0a0,6, 0x821b0c0,6, 0x821b0e0,6, 0x821b100,6, 0x821b120,6, 0x821b140,6, 0x821b160,6, 0x821b180,6, 0x821b1a0,6, 0x821b1c0,6, 0x821b1e0,6, 0x821b200,6, 0x821b220,6, 0x821b240,6, 0x821b260,6, 0x821b280,6, 0x821b2a0,6, 0x821b2c0,6, 0x821b2e0,6, 0x821b300,6, 0x821b320,6, 0x821b340,6, 0x821b360,6, 0x821b380,6, 0x821b3a0,6, 0x821b3c0,6, 0x821b3e0,6, 0x821b400,6, 0x821b420,6, 0x821b440,6, 0x821b460,6, 0x821b480,6, 0x821b4a0,6, 0x821b4c0,6, 0x821b4e0,6, 0x821b500,6, 0x821b520,6, 0x821b540,6, 0x821b560,6, 0x821b580,6, 0x821b5a0,6, 0x821b5c0,6, 0x821b5e0,6, 0x821b600,6, 0x821b620,6, 0x821b640,6, 0x821b660,6, 0x821b680,6, 0x821b6a0,6, 0x821b6c0,6, 0x821b6e0,6, 0x821b700,6, 0x821b720,6, 0x821b740,6, 0x821b760,6, 0x821b780,6, 0x821b7a0,6, 0x821b7c0,6, 0x821b7e0,6, 0x821b800,6, 0x821b820,6, 0x821b840,6, 0x821b860,6, 0x821b880,6, 0x821b8a0,6, 0x821b8c0,6, 0x821b8e0,6, 0x821b900,6, 0x821b920,6, 0x821b940,6, 0x821b960,6, 0x821b980,6, 0x821b9a0,6, 0x821b9c0,6, 0x821b9e0,6, 0x821ba00,6, 0x821ba20,6, 0x821ba40,6, 0x821ba60,6, 0x821ba80,6, 0x821baa0,6, 0x821bac0,6, 0x821bae0,6, 0x821bb00,6, 0x821bb20,6, 0x821bb40,6, 0x821bb60,6, 0x821bb80,6, 0x821bba0,6, 0x821bbc0,6, 0x821bbe0,6, 0x821bc00,6, 0x821bc20,6, 0x821bc40,6, 0x821bc60,6, 0x821bc80,6, 0x821bca0,6, 0x821bcc0,6, 0x821bce0,6, 0x821bd00,6, 0x821bd20,6, 0x821bd40,6, 0x821bd60,6, 0x821bd80,6, 0x821bda0,6, 0x821bdc0,6, 0x821bde0,6, 0x821be00,6, 0x821be20,6, 0x821be40,6, 0x821be60,6, 0x821be80,6, 0x821bea0,6, 0x821bec0,6, 0x821bee0,6, 0x821bf00,6, 0x821bf20,6, 0x821bf40,6, 0x821bf60,6, 0x821bf80,6, 0x821bfa0,6, 0x821bfc0,6, 0x821bfe0,6, 0x821c000,6, 0x821c020,6, 0x821c040,6, 0x821c060,6, 0x821c080,6, 0x821c0a0,6, 0x821c0c0,6, 0x821c0e0,6, 0x821c100,6, 0x821c120,6, 0x821c140,6, 0x821c160,6, 0x821c180,6, 0x821c1a0,6, 0x821c1c0,6, 0x821c1e0,6, 0x821c200,6, 0x821c220,6, 0x821c240,6, 0x821c260,6, 0x821c280,6, 0x821c2a0,6, 0x821c2c0,6, 0x821c2e0,6, 0x821c300,6, 0x821c320,6, 0x821c340,6, 0x821c360,6, 0x821c380,6, 0x821c3a0,6, 0x821c3c0,6, 0x821c3e0,6, 0x821c400,6, 0x821c420,6, 0x821c440,6, 0x821c460,6, 0x821c480,6, 0x821c4a0,6, 0x821c4c0,6, 0x821c4e0,6, 0x821c500,6, 0x821c520,6, 0x821c540,6, 0x821c560,6, 0x821c580,6, 0x821c5a0,6, 0x821c5c0,6, 0x821c5e0,6, 0x821c600,6, 0x821c620,6, 0x821c640,6, 0x821c660,6, 0x821c680,6, 0x821c6a0,6, 0x821c6c0,6, 0x821c6e0,6, 0x821c700,6, 0x821c720,6, 0x821c740,6, 0x821c760,6, 0x821c780,6, 0x821c7a0,6, 0x821c7c0,6, 0x821c7e0,6, 0x821c800,6, 0x821c820,6, 0x821c840,6, 0x821c860,6, 0x821c880,6, 0x821c8a0,6, 0x821c8c0,6, 0x821c8e0,6, 0x821c900,6, 0x821c920,6, 0x821c940,6, 0x821c960,6, 0x821c980,6, 0x821c9a0,6, 0x821c9c0,6, 0x821c9e0,6, 0x821ca00,6, 0x821ca20,6, 0x821ca40,6, 0x821ca60,6, 0x821ca80,6, 0x821caa0,6, 0x821cac0,6, 0x821cae0,6, 0x821cb00,6, 0x821cb20,6, 0x821cb40,6, 0x821cb60,6, 0x821cb80,6, 0x821cba0,6, 0x821cbc0,6, 0x821cbe0,6, 0x821cc00,6, 0x821cc20,6, 0x821cc40,6, 0x821cc60,6, 0x821cc80,6, 0x821cca0,6, 0x821ccc0,6, 0x821cce0,6, 0x821cd00,6, 0x821cd20,6, 0x821cd40,6, 0x821cd60,6, 0x821cd80,6, 0x821cda0,6, 0x821cdc0,6, 0x821cde0,6, 0x821ce00,6, 0x821ce20,6, 0x821ce40,6, 0x821ce60,6, 0x821ce80,6, 0x821cea0,6, 0x821cec0,6, 0x821cee0,6, 0x821cf00,6, 0x821cf20,6, 0x821cf40,6, 0x821cf60,6, 0x821cf80,6, 0x821cfa0,6, 0x821cfc0,6, 0x821cfe0,6, 0x821d000,6, 0x821d020,6, 0x821d040,6, 0x821d060,6, 0x821d080,6, 0x821d0a0,6, 0x821d0c0,6, 0x821d0e0,6, 0x821d100,6, 0x821d120,6, 0x821d140,6, 0x821d160,6, 0x821d180,6, 0x821d1a0,6, 0x821d1c0,6, 0x821d1e0,6, 0x821d200,6, 0x821d220,6, 0x821d240,6, 0x821d260,6, 0x821d280,6, 0x821d2a0,6, 0x821d2c0,6, 0x821d2e0,6, 0x821d300,6, 0x821d320,6, 0x821d340,6, 0x821d360,6, 0x821d380,6, 0x821d3a0,6, 0x821d3c0,6, 0x821d3e0,6, 0x821d400,6, 0x821d420,6, 0x821d440,6, 0x821d460,6, 0x821d480,6, 0x821d4a0,6, 0x821d4c0,6, 0x821d4e0,6, 0x821d500,6, 0x821d520,6, 0x821d540,6, 0x821d560,6, 0x821d580,6, 0x821d5a0,6, 0x821d5c0,6, 0x821d5e0,6, 0x821d600,6, 0x821d620,6, 0x821d640,6, 0x821d660,6, 0x821d680,6, 0x821d6a0,6, 0x821d6c0,6, 0x821d6e0,6, 0x821d700,6, 0x821d720,6, 0x821d740,6, 0x821d760,6, 0x821d780,6, 0x821d7a0,6, 0x821d7c0,6, 0x821d7e0,6, 0x821d800,6, 0x821d820,6, 0x821d840,6, 0x821d860,6, 0x821d880,6, 0x821d8a0,6, 0x821d8c0,6, 0x821d8e0,6, 0x821d900,6, 0x821d920,6, 0x821d940,6, 0x821d960,6, 0x821d980,6, 0x821d9a0,6, 0x821d9c0,6, 0x821d9e0,6, 0x821da00,6, 0x821da20,6, 0x821da40,6, 0x821da60,6, 0x821da80,6, 0x821daa0,6, 0x821dac0,6, 0x821dae0,6, 0x821db00,6, 0x821db20,6, 0x821db40,6, 0x821db60,6, 0x821db80,6, 0x821dba0,6, 0x821dbc0,6, 0x821dbe0,6, 0x821dc00,6, 0x821dc20,6, 0x821dc40,6, 0x821dc60,6, 0x821dc80,6, 0x821dca0,6, 0x821dcc0,6, 0x821dce0,6, 0x821dd00,6, 0x821dd20,6, 0x821dd40,6, 0x821dd60,6, 0x821dd80,6, 0x821dda0,6, 0x821ddc0,6, 0x821dde0,6, 0x821de00,6, 0x821de20,6, 0x821de40,6, 0x821de60,6, 0x821de80,6, 0x821dea0,6, 0x821dec0,6, 0x821dee0,6, 0x821df00,6, 0x821df20,6, 0x821df40,6, 0x821df60,6, 0x821df80,6, 0x821dfa0,6, 0x821dfc0,6, 0x821dfe0,6, 0x821e000,6, 0x821e020,6, 0x821e040,6, 0x821e060,6, 0x821e080,6, 0x821e0a0,6, 0x821e0c0,6, 0x821e0e0,6, 0x821e100,6, 0x821e120,6, 0x821e140,6, 0x821e160,6, 0x821e180,6, 0x821e1a0,6, 0x821e1c0,6, 0x821e1e0,6, 0x821e200,6, 0x821e220,6, 0x821e240,6, 0x821e260,6, 0x821e280,6, 0x821e2a0,6, 0x821e2c0,6, 0x821e2e0,6, 0x821e300,6, 0x821e320,6, 0x821e340,6, 0x821e360,6, 0x821e380,6, 0x821e3a0,6, 0x821e3c0,6, 0x821e3e0,6, 0x821e400,6, 0x821e420,6, 0x821e440,6, 0x821e460,6, 0x821e480,6, 0x821e4a0,6, 0x821e4c0,6, 0x821e4e0,6, 0x821e500,6, 0x821e520,6, 0x821e540,6, 0x821e560,6, 0x821e580,6, 0x821e5a0,6, 0x821e5c0,6, 0x821e5e0,6, 0x821e600,6, 0x821e620,6, 0x821e640,6, 0x821e660,6, 0x821e680,6, 0x821e6a0,6, 0x821e6c0,6, 0x821e6e0,6, 0x821e700,6, 0x821e720,6, 0x821e740,6, 0x821e760,6, 0x821e780,6, 0x821e7a0,6, 0x821e7c0,6, 0x821e7e0,6, 0x821e800,6, 0x821e820,6, 0x821e840,6, 0x821e860,6, 0x821e880,6, 0x821e8a0,6, 0x821e8c0,6, 0x821e8e0,6, 0x821e900,6, 0x821e920,6, 0x821e940,6, 0x821e960,6, 0x821e980,6, 0x821e9a0,6, 0x821e9c0,6, 0x821e9e0,6, 0x821ea00,6, 0x821ea20,6, 0x821ea40,6, 0x821ea60,6, 0x821ea80,6, 0x821eaa0,6, 0x821eac0,6, 0x821eae0,6, 0x821eb00,6, 0x821eb20,6, 0x821eb40,6, 0x821eb60,6, 0x821eb80,6, 0x821eba0,6, 0x821ebc0,6, 0x821ebe0,6, 0x821ec00,6, 0x821ec20,6, 0x821ec40,6, 0x821ec60,6, 0x821ec80,6, 0x821eca0,6, 0x821ecc0,6, 0x821ece0,6, 0x821ed00,6, 0x821ed20,6, 0x821ed40,6, 0x821ed60,6, 0x821ed80,6, 0x821eda0,6, 0x821edc0,6, 0x821ede0,6, 0x821ee00,6, 0x821ee20,6, 0x821ee40,6, 0x821ee60,6, 0x821ee80,6, 0x821eea0,6, 0x821eec0,6, 0x821eee0,6, 0x821ef00,6, 0x821ef20,6, 0x821ef40,6, 0x821ef60,6, 0x821ef80,6, 0x821efa0,6, 0x821efc0,6, 0x821efe0,6, 0x821f000,6, 0x821f020,6, 0x821f040,6, 0x821f060,6, 0x821f080,6, 0x821f0a0,6, 0x821f0c0,6, 0x821f0e0,6, 0x821f100,6, 0x821f120,6, 0x821f140,6, 0x821f160,6, 0x821f180,6, 0x821f1a0,6, 0x821f1c0,6, 0x821f1e0,6, 0x821f200,6, 0x821f220,6, 0x821f240,6, 0x821f260,6, 0x821f280,6, 0x821f2a0,6, 0x821f2c0,6, 0x821f2e0,6, 0x821f300,6, 0x821f320,6, 0x821f340,6, 0x821f360,6, 0x821f380,6, 0x821f3a0,6, 0x821f3c0,6, 0x821f3e0,6, 0x821f400,6, 0x821f420,6, 0x821f440,6, 0x821f460,6, 0x821f480,6, 0x821f4a0,6, 0x821f4c0,6, 0x821f4e0,6, 0x821f500,6, 0x821f520,6, 0x821f540,6, 0x821f560,6, 0x821f580,6, 0x821f5a0,6, 0x821f5c0,6, 0x821f5e0,6, 0x821f600,6, 0x821f620,6, 0x821f640,6, 0x821f660,6, 0x821f680,6, 0x821f6a0,6, 0x821f6c0,6, 0x821f6e0,6, 0x821f700,6, 0x821f720,6, 0x821f740,6, 0x821f760,6, 0x821f780,6, 0x821f7a0,6, 0x821f7c0,6, 0x821f7e0,6, 0x821f800,6, 0x821f820,6, 0x821f840,6, 0x821f860,6, 0x821f880,6, 0x821f8a0,6, 0x821f8c0,6, 0x821f8e0,6, 0x821f900,6, 0x821f920,6, 0x821f940,6, 0x821f960,6, 0x821f980,6, 0x821f9a0,6, 0x821f9c0,6, 0x821f9e0,6, 0x821fa00,6, 0x821fa20,6, 0x821fa40,6, 0x821fa60,6, 0x821fa80,6, 0x821faa0,6, 0x821fac0,6, 0x821fae0,6, 0x821fb00,6, 0x821fb20,6, 0x821fb40,6, 0x821fb60,6, 0x821fb80,6, 0x821fba0,6, 0x821fbc0,6, 0x821fbe0,6, 0x821fc00,6, 0x821fc20,6, 0x821fc40,6, 0x821fc60,6, 0x821fc80,6, 0x821fca0,6, 0x821fcc0,6, 0x821fce0,6, 0x821fd00,6, 0x821fd20,6, 0x821fd40,6, 0x821fd60,6, 0x821fd80,6, 0x821fda0,6, 0x821fdc0,6, 0x821fde0,6, 0x821fe00,6, 0x821fe20,6, 0x821fe40,6, 0x821fe60,6, 0x821fe80,6, 0x821fea0,6, 0x821fec0,6, 0x821fee0,6, 0x821ff00,6, 0x821ff20,6, 0x821ff40,6, 0x821ff60,6, 0x821ff80,6, 0x821ffa0,6, 0x821ffc0,6, 0x821ffe0,6, 0x8220000,6, 0x8220020,6, 0x8220040,6, 0x8220060,6, 0x8220080,6, 0x82200a0,6, 0x82200c0,6, 0x82200e0,6, 0x8220100,6, 0x8220120,6, 0x8220140,6, 0x8220160,6, 0x8220180,6, 0x82201a0,6, 0x82201c0,6, 0x82201e0,6, 0x8220200,6, 0x8220220,6, 0x8220240,6, 0x8220260,6, 0x8220280,6, 0x82202a0,6, 0x82202c0,6, 0x82202e0,6, 0x8220300,6, 0x8220320,6, 0x8220340,6, 0x8220360,6, 0x8220380,6, 0x82203a0,6, 0x82203c0,6, 0x82203e0,6, 0x8240000,2, 0x8240040,9, 0x8240080,19, 0x8280000,6, 0x8280020,6, 0x8280040,6, 0x8280060,6, 0x8280080,6, 0x82800a0,6, 0x82800c0,6, 0x82800e0,6, 0x8280100,6, 0x8280120,6, 0x8280140,6, 0x8280160,6, 0x8280180,6, 0x82801a0,6, 0x82801c0,6, 0x82801e0,6, 0x8280200,6, 0x8280220,6, 0x8280240,6, 0x8280260,6, 0x8280280,6, 0x82802a0,6, 0x82802c0,6, 0x82802e0,6, 0x8280300,6, 0x8280320,6, 0x8280340,6, 0x8280360,6, 0x8280380,6, 0x82803a0,6, 0x82803c0,6, 0x82803e0,6, 0x8280400,6, 0x8280420,6, 0x8280440,6, 0x8280460,6, 0x8280480,6, 0x82804a0,6, 0x82804c0,6, 0x82804e0,6, 0x8280500,6, 0x8280520,6, 0x8280540,6, 0x8280560,6, 0x8280580,6, 0x82805a0,6, 0x82805c0,6, 0x82805e0,6, 0x8280600,6, 0x8280620,6, 0x8280640,6, 0x8280660,6, 0x8280680,6, 0x82806a0,6, 0x82806c0,6, 0x82806e0,6, 0x8280700,6, 0x8280720,6, 0x8280740,6, 0x8280760,6, 0x8280780,6, 0x82807a0,6, 0x82807c0,6, 0x82807e0,6, 0x8280800,6, 0x8280820,6, 0x8280840,6, 0x8280860,6, 0x8280880,6, 0x82808a0,6, 0x82808c0,6, 0x82808e0,6, 0x8280900,6, 0x8280920,6, 0x8280940,6, 0x8280960,6, 0x8280980,6, 0x82809a0,6, 0x82809c0,6, 0x82809e0,6, 0x8280a00,6, 0x8280a20,6, 0x8280a40,6, 0x8280a60,6, 0x8280a80,6, 0x8280aa0,6, 0x8280ac0,6, 0x8280ae0,6, 0x8280b00,6, 0x8280b20,6, 0x8280b40,6, 0x8280b60,6, 0x8280b80,6, 0x8280ba0,6, 0x8280bc0,6, 0x8280be0,6, 0x8280c00,6, 0x8280c20,6, 0x8280c40,6, 0x8280c60,6, 0x8280c80,6, 0x8280ca0,6, 0x8280cc0,6, 0x8280ce0,6, 0x8280d00,6, 0x8280d20,6, 0x8280d40,6, 0x8280d60,6, 0x8280d80,6, 0x8280da0,6, 0x8280dc0,6, 0x8280de0,6, 0x8280e00,6, 0x8280e20,6, 0x8280e40,6, 0x8280e60,6, 0x8280e80,6, 0x8280ea0,6, 0x8280ec0,6, 0x8280ee0,6, 0x8280f00,6, 0x8280f20,6, 0x8280f40,6, 0x8280f60,6, 0x8280f80,6, 0x8280fa0,6, 0x8280fc0,6, 0x8280fe0,6, 0x8281000,6, 0x8281020,6, 0x8281040,6, 0x8281060,6, 0x8281080,6, 0x82810a0,6, 0x82810c0,6, 0x82810e0,6, 0x8281100,6, 0x8281120,6, 0x8281140,6, 0x8281160,6, 0x8281180,6, 0x82811a0,6, 0x82811c0,6, 0x82811e0,6, 0x8281200,6, 0x8281220,6, 0x8281240,6, 0x8281260,6, 0x8281280,6, 0x82812a0,6, 0x82812c0,6, 0x82812e0,6, 0x8281300,6, 0x8281320,6, 0x8281340,6, 0x8281360,6, 0x8281380,6, 0x82813a0,6, 0x82813c0,6, 0x82813e0,6, 0x8281400,6, 0x8281420,6, 0x8281440,6, 0x8281460,6, 0x8281480,6, 0x82814a0,6, 0x82814c0,6, 0x82814e0,6, 0x8281500,6, 0x8281520,6, 0x8281540,6, 0x8281560,6, 0x8281580,6, 0x82815a0,6, 0x82815c0,6, 0x82815e0,6, 0x8281600,6, 0x8281620,6, 0x8281640,6, 0x8281660,6, 0x8281680,6, 0x82816a0,6, 0x82816c0,6, 0x82816e0,6, 0x8281700,6, 0x8281720,6, 0x8281740,6, 0x8281760,6, 0x8281780,6, 0x82817a0,6, 0x82817c0,6, 0x82817e0,6, 0x8281800,6, 0x8281820,6, 0x8281840,6, 0x8281860,6, 0x8281880,6, 0x82818a0,6, 0x82818c0,6, 0x82818e0,6, 0x8281900,6, 0x8281920,6, 0x8281940,6, 0x8281960,6, 0x8281980,6, 0x82819a0,6, 0x82819c0,6, 0x82819e0,6, 0x8281a00,6, 0x8281a20,6, 0x8281a40,6, 0x8281a60,6, 0x8281a80,6, 0x8281aa0,6, 0x8281ac0,6, 0x8281ae0,6, 0x8281b00,6, 0x8281b20,6, 0x8281b40,6, 0x8281b60,6, 0x8281b80,6, 0x8281ba0,6, 0x8281bc0,6, 0x8281be0,6, 0x8281c00,6, 0x8281c20,6, 0x8281c40,6, 0x8281c60,6, 0x8281c80,6, 0x8281ca0,6, 0x8281cc0,6, 0x8281ce0,6, 0x8281d00,6, 0x8281d20,6, 0x8281d40,6, 0x8281d60,6, 0x8281d80,6, 0x8281da0,6, 0x8281dc0,6, 0x8281de0,6, 0x8281e00,6, 0x8281e20,6, 0x8281e40,6, 0x8281e60,6, 0x8281e80,6, 0x8281ea0,6, 0x8281ec0,6, 0x8281ee0,6, 0x8281f00,6, 0x8281f20,6, 0x8281f40,6, 0x8281f60,6, 0x8281f80,6, 0x8281fa0,6, 0x8281fc0,6, 0x8281fe0,6, 0x8282000,6, 0x8282020,6, 0x8284000,2, 0x8284040,9, 0x8284080,9, 0x82840c0,9, 0x8284100,3, 0x8288000,6, 0x8288020,6, 0x8288040,6, 0x8288060,6, 0x8288080,6, 0x82880a0,6, 0x82880c0,6, 0x82880e0,6, 0x8288100,6, 0x8288120,6, 0x8288140,6, 0x8288160,6, 0x8288180,6, 0x82881a0,6, 0x82881c0,6, 0x82881e0,6, 0x8288200,2, 0x8288240,9, 0x8288280,19, 0x8288404,1, 0x8288410,12, 0x8288444,1, 0x8288458,10, 0x8288484,1, 0x82884a0,8, 0x82884c4,1, 0x82884d0,12, 0x82c0000,44, 0x82c0100,44, 0x82c0200,44, 0x82c0300,44, 0x82c0400,44, 0x82c0500,44, 0x82c0600,44, 0x82c0700,44, 0x82c0800,44, 0x82c0900,44, 0x82c0a00,44, 0x82c0b00,44, 0x82c0c00,44, 0x82c0d00,44, 0x82c0e00,44, 0x82c0f00,44, 0x82c1000,44, 0x82c1100,44, 0x82c1200,44, 0x82c1300,44, 0x82c1400,44, 0x82c1500,44, 0x82c1600,44, 0x82c1700,44, 0x82c1800,44, 0x82c1900,44, 0x82c1a00,44, 0x82c1b00,44, 0x82c1c00,44, 0x82c1d00,44, 0x82c1e00,44, 0x82c1f00,44, 0x82c2000,44, 0x82c2100,44, 0x82c2200,44, 0x82c2300,44, 0x82c2400,44, 0x82c2500,44, 0x82c2600,44, 0x82c2700,44, 0x82c2800,44, 0x82c2900,44, 0x82c2a00,44, 0x82c2b00,44, 0x82c2c00,44, 0x82c2d00,44, 0x82c2e00,44, 0x82c2f00,44, 0x82c3000,44, 0x82c3100,44, 0x82c3200,44, 0x82c3300,44, 0x82c3400,44, 0x82c3500,44, 0x82c3600,44, 0x82c3700,44, 0x82c3800,44, 0x82c3900,44, 0x82c3a00,44, 0x82c3b00,44, 0x82c3c00,44, 0x82c3d00,44, 0x82c3e00,44, 0x82c3f00,44, 0x82c4000,44, 0x82c4100,44, 0x82c4200,44, 0x82c4300,44, 0x82c4400,44, 0x82c4500,44, 0x82c4600,44, 0x82c4700,44, 0x82c4800,44, 0x82c4900,44, 0x82c4a00,44, 0x82c4b00,44, 0x82c4c00,44, 0x82c4d00,44, 0x82c4e00,44, 0x82c4f00,44, 0x82c5000,44, 0x82c5100,44, 0x82c5200,44, 0x82c5300,44, 0x82c5400,44, 0x82c5500,44, 0x82c5600,44, 0x82c5700,44, 0x82c5800,44, 0x82c5900,44, 0x82c5a00,44, 0x82c5b00,44, 0x82c5c00,44, 0x82c5d00,44, 0x82c5e00,44, 0x82c5f00,44, 0x82c6000,44, 0x82c6100,44, 0x82c6200,44, 0x82c6300,44, 0x82c6400,44, 0x82c6500,44, 0x82c6600,44, 0x82c6700,44, 0x82c6800,44, 0x82c6900,44, 0x82c6a00,44, 0x82c6b00,44, 0x82c6c00,44, 0x82c6d00,44, 0x82c6e00,44, 0x82c6f00,44, 0x82c7000,44, 0x82c7100,44, 0x82c7200,44, 0x82c7300,44, 0x82c7400,44, 0x82c7500,44, 0x82c7600,44, 0x82c7700,44, 0x82c7800,44, 0x82c7900,44, 0x82c7a00,44, 0x82c7b00,44, 0x82c7c00,44, 0x82c7d00,44, 0x82c7e00,44, 0x82c7f00,44, 0x82c8000,44, 0x82c8100,44, 0x82c8200,44, 0x82c8300,44, 0x82c8400,44, 0x82c8500,44, 0x82c8600,44, 0x82c8700,44, 0x82c8800,44, 0x82c8900,44, 0x82c8a00,44, 0x82c8b00,44, 0x82c8c00,44, 0x82c8d00,44, 0x82c8e00,44, 0x82c8f00,44, 0x82c9000,44, 0x82c9100,44, 0x82c9200,44, 0x82c9300,44, 0x82c9400,44, 0x82c9500,44, 0x82c9600,44, 0x82c9700,44, 0x82c9800,44, 0x82c9900,44, 0x82c9a00,44, 0x82c9b00,44, 0x82c9c00,44, 0x82c9d00,44, 0x82c9e00,44, 0x82c9f00,44, 0x82ca000,44, 0x82ca100,44, 0x82ca200,44, 0x82ca300,44, 0x82ca400,44, 0x82ca500,44, 0x82ca600,44, 0x82ca700,44, 0x82ca800,44, 0x82ca900,44, 0x82caa00,44, 0x82cab00,44, 0x82cac00,44, 0x82cad00,44, 0x82cae00,44, 0x82caf00,44, 0x82cb000,44, 0x82cb100,44, 0x82cb200,44, 0x82cb300,44, 0x82cb400,44, 0x82cb500,44, 0x82cb600,44, 0x82cb700,44, 0x82cb800,44, 0x82cb900,44, 0x82cba00,44, 0x82cbb00,44, 0x82cbc00,44, 0x82cbd00,44, 0x82cbe00,44, 0x82cbf00,44, 0x82cc000,44, 0x82cc100,44, 0x82cc200,44, 0x82cc300,44, 0x82cc400,44, 0x82cc500,44, 0x82cc600,44, 0x82cc700,44, 0x82cc800,44, 0x82cc900,44, 0x82cca00,44, 0x82ccb00,44, 0x82ccc00,44, 0x82ccd00,44, 0x82cce00,44, 0x82ccf00,44, 0x82cd000,44, 0x82cd100,44, 0x82cd200,44, 0x82cd300,44, 0x82cd400,44, 0x82cd500,44, 0x82cd600,44, 0x82cd700,44, 0x82cd800,44, 0x82cd900,44, 0x82cda00,44, 0x82cdb00,44, 0x82cdc00,44, 0x82cdd00,44, 0x82cde00,44, 0x82cdf00,44, 0x82ce000,44, 0x82ce100,44, 0x82ce200,44, 0x82ce300,44, 0x82ce400,44, 0x82ce500,44, 0x82ce600,44, 0x82ce700,44, 0x82ce800,44, 0x82ce900,44, 0x82cea00,44, 0x82ceb00,44, 0x82cec00,44, 0x82ced00,44, 0x82cee00,44, 0x82cef00,44, 0x82cf000,44, 0x82cf100,44, 0x82cf200,44, 0x82cf300,44, 0x82cf400,44, 0x82cf500,44, 0x82cf600,44, 0x82cf700,44, 0x82cf800,44, 0x82cf900,44, 0x82cfa00,44, 0x82cfb00,44, 0x82cfc00,44, 0x82cfd00,44, 0x82cfe00,44, 0x82cff00,44, 0x82d0000,44, 0x82d0100,44, 0x82e0000,2, 0x82e0040,9, 0x82e0080,6, 0x82e00a0,6, 0x82e00c0,3, 0x8300000,16512, 0x8320000,2, 0x8320040,9, 0x8320080,5, 0x83200a0,5, 0x83200c0,3, 0x8340000,3, 0x8340010,3, 0x8340020,3, 0x8340030,3, 0x8340040,3, 0x8340050,3, 0x8340060,3, 0x8340070,3, 0x8340080,3, 0x8340090,3, 0x83400a0,3, 0x83400b0,3, 0x83400c0,3, 0x83400d0,3, 0x83400e0,3, 0x83400f0,3, 0x8340100,3, 0x8340110,3, 0x8340120,3, 0x8340130,3, 0x8340140,3, 0x8340150,3, 0x8340160,3, 0x8340170,3, 0x8340180,3, 0x8340190,3, 0x83401a0,3, 0x83401b0,3, 0x83401c0,3, 0x83401d0,3, 0x83401e0,3, 0x83401f0,3, 0x8340200,3, 0x8340210,3, 0x8340220,3, 0x8340230,3, 0x8340240,3, 0x8340250,3, 0x8340260,3, 0x8340270,3, 0x8340280,3, 0x8340290,3, 0x83402a0,3, 0x83402b0,3, 0x83402c0,3, 0x83402d0,3, 0x83402e0,3, 0x83402f0,3, 0x8340300,3, 0x8340310,3, 0x8340320,3, 0x8340330,3, 0x8340340,3, 0x8340350,3, 0x8340360,3, 0x8340370,3, 0x8340380,3, 0x8340390,3, 0x83403a0,3, 0x83403b0,3, 0x83403c0,3, 0x83403d0,3, 0x83403e0,3, 0x83403f0,3, 0x8340400,3, 0x8340410,3, 0x8340420,3, 0x8340430,3, 0x8340440,3, 0x8340450,3, 0x8340460,3, 0x8340470,3, 0x8340480,3, 0x8340490,3, 0x83404a0,3, 0x83404b0,3, 0x83404c0,3, 0x83404d0,3, 0x83404e0,3, 0x83404f0,3, 0x8340500,3, 0x8340510,3, 0x8340520,3, 0x8340530,3, 0x8340540,3, 0x8340550,3, 0x8340560,3, 0x8340570,3, 0x8340580,3, 0x8340590,3, 0x83405a0,3, 0x83405b0,3, 0x83405c0,3, 0x83405d0,3, 0x83405e0,3, 0x83405f0,3, 0x8340600,3, 0x8340610,3, 0x8340620,3, 0x8340630,3, 0x8340640,3, 0x8340650,3, 0x8340660,3, 0x8340670,3, 0x8340680,3, 0x8340690,3, 0x83406a0,3, 0x83406b0,3, 0x83406c0,3, 0x83406d0,3, 0x83406e0,3, 0x83406f0,3, 0x8340700,3, 0x8340710,3, 0x8340720,3, 0x8340730,3, 0x8340740,3, 0x8340750,3, 0x8340760,3, 0x8340770,3, 0x8340780,3, 0x8340790,3, 0x83407a0,3, 0x83407b0,3, 0x83407c0,3, 0x83407d0,3, 0x83407e0,3, 0x83407f0,3, 0x8340800,3, 0x8340810,3, 0x8340820,3, 0x8340830,3, 0x8340840,3, 0x8340850,3, 0x8340860,3, 0x8340870,3, 0x8340880,3, 0x8340890,3, 0x83408a0,3, 0x83408b0,3, 0x83408c0,3, 0x83408d0,3, 0x83408e0,3, 0x83408f0,3, 0x8340900,3, 0x8340910,3, 0x8340920,3, 0x8340930,3, 0x8340940,3, 0x8340950,3, 0x8340960,3, 0x8340970,3, 0x8340980,3, 0x8340990,3, 0x83409a0,3, 0x83409b0,3, 0x83409c0,3, 0x83409d0,3, 0x83409e0,3, 0x83409f0,3, 0x8340a00,3, 0x8340a10,3, 0x8340a20,3, 0x8340a30,3, 0x8340a40,3, 0x8340a50,3, 0x8340a60,3, 0x8340a70,3, 0x8340a80,3, 0x8340a90,3, 0x8340aa0,3, 0x8340ab0,3, 0x8340ac0,3, 0x8340ad0,3, 0x8340ae0,3, 0x8340af0,3, 0x8340b00,3, 0x8340b10,3, 0x8340b20,3, 0x8340b30,3, 0x8340b40,3, 0x8340b50,3, 0x8340b60,3, 0x8340b70,3, 0x8340b80,3, 0x8340b90,3, 0x8340ba0,3, 0x8340bb0,3, 0x8340bc0,3, 0x8340bd0,3, 0x8340be0,3, 0x8340bf0,3, 0x8340c00,3, 0x8340c10,3, 0x8340c20,3, 0x8340c30,3, 0x8340c40,3, 0x8340c50,3, 0x8340c60,3, 0x8340c70,3, 0x8340c80,3, 0x8340c90,3, 0x8340ca0,3, 0x8340cb0,3, 0x8340cc0,3, 0x8340cd0,3, 0x8340ce0,3, 0x8340cf0,3, 0x8340d00,3, 0x8340d10,3, 0x8340d20,3, 0x8340d30,3, 0x8340d40,3, 0x8340d50,3, 0x8340d60,3, 0x8340d70,3, 0x8340d80,3, 0x8340d90,3, 0x8340da0,3, 0x8340db0,3, 0x8340dc0,3, 0x8340dd0,3, 0x8340de0,3, 0x8340df0,3, 0x8340e00,3, 0x8340e10,3, 0x8340e20,3, 0x8340e30,3, 0x8340e40,3, 0x8340e50,3, 0x8340e60,3, 0x8340e70,3, 0x8340e80,3, 0x8340e90,3, 0x8340ea0,3, 0x8340eb0,3, 0x8340ec0,3, 0x8340ed0,3, 0x8340ee0,3, 0x8340ef0,3, 0x8340f00,3, 0x8340f10,3, 0x8340f20,3, 0x8340f30,3, 0x8340f40,3, 0x8340f50,3, 0x8340f60,3, 0x8340f70,3, 0x8340f80,3, 0x8340f90,3, 0x8340fa0,3, 0x8340fb0,3, 0x8340fc0,3, 0x8340fd0,3, 0x8340fe0,3, 0x8340ff0,3, 0x8341000,3, 0x8341010,3, 0x8342000,2, 0x8342040,9, 0x8342080,11, 0x8344000,5, 0x8344020,5, 0x8344040,5, 0x8344060,5, 0x8344080,5, 0x83440a0,5, 0x83440c0,5, 0x83440e0,5, 0x8344100,5, 0x8344120,5, 0x8344140,5, 0x8344160,5, 0x8344180,5, 0x83441a0,5, 0x83441c0,5, 0x83441e0,5, 0x8344200,2, 0x8344240,9, 0x8344280,6, 0x83442a0,6, 0x83442c0,3, 0x8344404,15, 0x8344484,1, 0x83444c0,16, 0x8344504,1, 0x8344528,22, 0x8344584,1, 0x8344590,12, 0x8380000,5, 0x8380020,5, 0x8380040,5, 0x8380060,5, 0x8380080,5, 0x83800a0,5, 0x83800c0,5, 0x83800e0,5, 0x8380100,5, 0x8380120,5, 0x8380140,5, 0x8380160,5, 0x8380180,5, 0x83801a0,5, 0x83801c0,5, 0x83801e0,5, 0x8380200,5, 0x8380220,5, 0x8380240,5, 0x8380260,5, 0x8380280,5, 0x83802a0,5, 0x83802c0,5, 0x83802e0,5, 0x8380300,5, 0x8380320,5, 0x8380340,5, 0x8380360,5, 0x8380380,5, 0x83803a0,5, 0x83803c0,5, 0x83803e0,5, 0x8380400,5, 0x8380420,5, 0x8380440,5, 0x8380460,5, 0x8380480,5, 0x83804a0,5, 0x83804c0,5, 0x83804e0,5, 0x8380500,5, 0x8380520,5, 0x8380540,5, 0x8380560,5, 0x8380580,5, 0x83805a0,5, 0x83805c0,5, 0x83805e0,5, 0x8380600,5, 0x8380620,5, 0x8380640,5, 0x8380660,5, 0x8380680,5, 0x83806a0,5, 0x83806c0,5, 0x83806e0,5, 0x8380700,5, 0x8380720,5, 0x8380740,5, 0x8380760,5, 0x8380780,5, 0x83807a0,5, 0x83807c0,5, 0x83807e0,5, 0x8380800,5, 0x8380820,5, 0x8380840,5, 0x8380860,5, 0x8380880,5, 0x83808a0,5, 0x83808c0,5, 0x83808e0,5, 0x8380900,5, 0x8380920,5, 0x8380940,5, 0x8380960,5, 0x8380980,5, 0x83809a0,5, 0x83809c0,5, 0x83809e0,5, 0x8380a00,5, 0x8380a20,5, 0x8380a40,5, 0x8380a60,5, 0x8380a80,5, 0x8380aa0,5, 0x8380ac0,5, 0x8380ae0,5, 0x8380b00,5, 0x8380b20,5, 0x8380b40,5, 0x8380b60,5, 0x8380b80,5, 0x8380ba0,5, 0x8380bc0,5, 0x8380be0,5, 0x8380c00,5, 0x8380c20,5, 0x8380c40,5, 0x8380c60,5, 0x8380c80,5, 0x8380ca0,5, 0x8380cc0,5, 0x8380ce0,5, 0x8380d00,5, 0x8380d20,5, 0x8380d40,5, 0x8380d60,5, 0x8380d80,5, 0x8380da0,5, 0x8380dc0,5, 0x8380de0,5, 0x8380e00,5, 0x8380e20,5, 0x8380e40,5, 0x8380e60,5, 0x8380e80,5, 0x8380ea0,5, 0x8380ec0,5, 0x8380ee0,5, 0x8380f00,5, 0x8380f20,5, 0x8380f40,5, 0x8380f60,5, 0x8380f80,5, 0x8380fa0,5, 0x8380fc0,5, 0x8380fe0,5, 0x8381000,5, 0x8381020,5, 0x8381040,5, 0x8381060,5, 0x8381080,5, 0x83810a0,5, 0x83810c0,5, 0x83810e0,5, 0x8381100,5, 0x8381120,5, 0x8381140,5, 0x8381160,5, 0x8381180,5, 0x83811a0,5, 0x83811c0,5, 0x83811e0,5, 0x8381200,5, 0x8381220,5, 0x8381240,5, 0x8381260,5, 0x8381280,5, 0x83812a0,5, 0x83812c0,5, 0x83812e0,5, 0x8381300,5, 0x8381320,5, 0x8381340,5, 0x8381360,5, 0x8381380,5, 0x83813a0,5, 0x83813c0,5, 0x83813e0,5, 0x8381400,5, 0x8381420,5, 0x8381440,5, 0x8381460,5, 0x8381480,5, 0x83814a0,5, 0x83814c0,5, 0x83814e0,5, 0x8381500,5, 0x8381520,5, 0x8381540,5, 0x8381560,5, 0x8381580,5, 0x83815a0,5, 0x83815c0,5, 0x83815e0,5, 0x8381600,5, 0x8381620,5, 0x8381640,5, 0x8381660,5, 0x8381680,5, 0x83816a0,5, 0x83816c0,5, 0x83816e0,5, 0x8381700,5, 0x8381720,5, 0x8381740,5, 0x8381760,5, 0x8381780,5, 0x83817a0,5, 0x83817c0,5, 0x83817e0,5, 0x8381800,5, 0x8381820,5, 0x8381840,5, 0x8381860,5, 0x8381880,5, 0x83818a0,5, 0x83818c0,5, 0x83818e0,5, 0x8381900,5, 0x8381920,5, 0x8381940,5, 0x8381960,5, 0x8381980,5, 0x83819a0,5, 0x83819c0,5, 0x83819e0,5, 0x8381a00,5, 0x8381a20,5, 0x8381a40,5, 0x8381a60,5, 0x8381a80,5, 0x8381aa0,5, 0x8381ac0,5, 0x8381ae0,5, 0x8381b00,5, 0x8381b20,5, 0x8381b40,5, 0x8381b60,5, 0x8381b80,5, 0x8381ba0,5, 0x8381bc0,5, 0x8381be0,5, 0x8381c00,5, 0x8381c20,5, 0x8381c40,5, 0x8381c60,5, 0x8381c80,5, 0x8381ca0,5, 0x8381cc0,5, 0x8381ce0,5, 0x8381d00,5, 0x8381d20,5, 0x8381d40,5, 0x8381d60,5, 0x8381d80,5, 0x8381da0,5, 0x8381dc0,5, 0x8381de0,5, 0x8381e00,5, 0x8381e20,5, 0x8381e40,5, 0x8381e60,5, 0x8381e80,5, 0x8381ea0,5, 0x8381ec0,5, 0x8381ee0,5, 0x8381f00,5, 0x8381f20,5, 0x8381f40,5, 0x8381f60,5, 0x8381f80,5, 0x8381fa0,5, 0x8381fc0,5, 0x8381fe0,5, 0x8382000,5, 0x8382020,5, 0x8382040,5, 0x8382060,5, 0x8382080,5, 0x83820a0,5, 0x83820c0,5, 0x83820e0,5, 0x8382100,5, 0x8382120,5, 0x8382140,5, 0x8382160,5, 0x8382180,5, 0x83821a0,5, 0x83821c0,5, 0x83821e0,5, 0x8382200,5, 0x8382220,5, 0x8382240,5, 0x8382260,5, 0x8382280,5, 0x83822a0,5, 0x83822c0,5, 0x83822e0,5, 0x8382300,5, 0x8382320,5, 0x8382340,5, 0x8382360,5, 0x8382380,5, 0x83823a0,5, 0x83823c0,5, 0x83823e0,5, 0x8382400,5, 0x8382420,5, 0x8382440,5, 0x8382460,5, 0x8382480,5, 0x83824a0,5, 0x83824c0,5, 0x83824e0,5, 0x8382500,5, 0x8382520,5, 0x8382540,5, 0x8382560,5, 0x8382580,5, 0x83825a0,5, 0x83825c0,5, 0x83825e0,5, 0x8382600,5, 0x8382620,5, 0x8382640,5, 0x8382660,5, 0x8382680,5, 0x83826a0,5, 0x83826c0,5, 0x83826e0,5, 0x8382700,5, 0x8382720,5, 0x8382740,5, 0x8382760,5, 0x8382780,5, 0x83827a0,5, 0x83827c0,5, 0x83827e0,5, 0x8382800,5, 0x8382820,5, 0x8382840,5, 0x8382860,5, 0x8382880,5, 0x83828a0,5, 0x83828c0,5, 0x83828e0,5, 0x8382900,5, 0x8382920,5, 0x8382940,5, 0x8382960,5, 0x8382980,5, 0x83829a0,5, 0x83829c0,5, 0x83829e0,5, 0x8382a00,5, 0x8382a20,5, 0x8382a40,5, 0x8382a60,5, 0x8382a80,5, 0x8382aa0,5, 0x8382ac0,5, 0x8382ae0,5, 0x8382b00,5, 0x8382b20,5, 0x8382b40,5, 0x8382b60,5, 0x8382b80,5, 0x8382ba0,5, 0x8382bc0,5, 0x8382be0,5, 0x8382c00,5, 0x8382c20,5, 0x8382c40,5, 0x8382c60,5, 0x8382c80,5, 0x8382ca0,5, 0x8382cc0,5, 0x8382ce0,5, 0x8382d00,5, 0x8382d20,5, 0x8382d40,5, 0x8382d60,5, 0x8382d80,5, 0x8382da0,5, 0x8382dc0,5, 0x8382de0,5, 0x8382e00,5, 0x8382e20,5, 0x8382e40,5, 0x8382e60,5, 0x8382e80,5, 0x8382ea0,5, 0x8382ec0,5, 0x8382ee0,5, 0x8382f00,5, 0x8382f20,5, 0x8382f40,5, 0x8382f60,5, 0x8382f80,5, 0x8382fa0,5, 0x8382fc0,5, 0x8382fe0,5, 0x8383000,5, 0x8383020,5, 0x8383040,5, 0x8383060,5, 0x8383080,5, 0x83830a0,5, 0x83830c0,5, 0x83830e0,5, 0x8383100,5, 0x8383120,5, 0x8383140,5, 0x8383160,5, 0x8383180,5, 0x83831a0,5, 0x83831c0,5, 0x83831e0,5, 0x8383200,5, 0x8383220,5, 0x8383240,5, 0x8383260,5, 0x8383280,5, 0x83832a0,5, 0x83832c0,5, 0x83832e0,5, 0x8383300,5, 0x8383320,5, 0x8383340,5, 0x8383360,5, 0x8383380,5, 0x83833a0,5, 0x83833c0,5, 0x83833e0,5, 0x8383400,5, 0x8383420,5, 0x8383440,5, 0x8383460,5, 0x8383480,5, 0x83834a0,5, 0x83834c0,5, 0x83834e0,5, 0x8383500,5, 0x8383520,5, 0x8383540,5, 0x8383560,5, 0x8383580,5, 0x83835a0,5, 0x83835c0,5, 0x83835e0,5, 0x8383600,5, 0x8383620,5, 0x8383640,5, 0x8383660,5, 0x8383680,5, 0x83836a0,5, 0x83836c0,5, 0x83836e0,5, 0x8383700,5, 0x8383720,5, 0x8383740,5, 0x8383760,5, 0x8383780,5, 0x83837a0,5, 0x83837c0,5, 0x83837e0,5, 0x8383800,5, 0x8383820,5, 0x8383840,5, 0x8383860,5, 0x8383880,5, 0x83838a0,5, 0x83838c0,5, 0x83838e0,5, 0x8383900,5, 0x8383920,5, 0x8383940,5, 0x8383960,5, 0x8383980,5, 0x83839a0,5, 0x83839c0,5, 0x83839e0,5, 0x8383a00,5, 0x8383a20,5, 0x8383a40,5, 0x8383a60,5, 0x8383a80,5, 0x8383aa0,5, 0x8383ac0,5, 0x8383ae0,5, 0x8383b00,5, 0x8383b20,5, 0x8383b40,5, 0x8383b60,5, 0x8383b80,5, 0x8383ba0,5, 0x8383bc0,5, 0x8383be0,5, 0x8383c00,5, 0x8383c20,5, 0x8383c40,5, 0x8383c60,5, 0x8383c80,5, 0x8383ca0,5, 0x8383cc0,5, 0x8383ce0,5, 0x8383d00,5, 0x8383d20,5, 0x8383d40,5, 0x8383d60,5, 0x8383d80,5, 0x8383da0,5, 0x8383dc0,5, 0x8383de0,5, 0x8383e00,5, 0x8383e20,5, 0x8383e40,5, 0x8383e60,5, 0x8383e80,5, 0x8383ea0,5, 0x8383ec0,5, 0x8383ee0,5, 0x8383f00,5, 0x8383f20,5, 0x8383f40,5, 0x8383f60,5, 0x8383f80,5, 0x8383fa0,5, 0x8383fc0,5, 0x8383fe0,5, 0x8384000,5, 0x8384020,5, 0x8384040,5, 0x8384060,5, 0x8384080,5, 0x83840a0,5, 0x83840c0,5, 0x83840e0,5, 0x8384100,5, 0x8384120,5, 0x8384140,5, 0x8384160,5, 0x8384180,5, 0x83841a0,5, 0x83841c0,5, 0x83841e0,5, 0x8384200,5, 0x8384220,5, 0x8384240,5, 0x8384260,5, 0x8384280,5, 0x83842a0,5, 0x83842c0,5, 0x83842e0,5, 0x8384300,5, 0x8384320,5, 0x8384340,5, 0x8384360,5, 0x8384380,5, 0x83843a0,5, 0x83843c0,5, 0x83843e0,5, 0x8384400,5, 0x8384420,5, 0x8384440,5, 0x8384460,5, 0x8384480,5, 0x83844a0,5, 0x83844c0,5, 0x83844e0,5, 0x8384500,5, 0x8384520,5, 0x8384540,5, 0x8384560,5, 0x8384580,5, 0x83845a0,5, 0x83845c0,5, 0x83845e0,5, 0x8384600,5, 0x8384620,5, 0x8384640,5, 0x8384660,5, 0x8384680,5, 0x83846a0,5, 0x83846c0,5, 0x83846e0,5, 0x8384700,5, 0x8384720,5, 0x8384740,5, 0x8384760,5, 0x8384780,5, 0x83847a0,5, 0x83847c0,5, 0x83847e0,5, 0x8384800,5, 0x8384820,5, 0x8384840,5, 0x8384860,5, 0x8384880,5, 0x83848a0,5, 0x83848c0,5, 0x83848e0,5, 0x8384900,5, 0x8384920,5, 0x8384940,5, 0x8384960,5, 0x8384980,5, 0x83849a0,5, 0x83849c0,5, 0x83849e0,5, 0x8384a00,5, 0x8384a20,5, 0x8384a40,5, 0x8384a60,5, 0x8384a80,5, 0x8384aa0,5, 0x8384ac0,5, 0x8384ae0,5, 0x8384b00,5, 0x8384b20,5, 0x8384b40,5, 0x8384b60,5, 0x8384b80,5, 0x8384ba0,5, 0x8384bc0,5, 0x8384be0,5, 0x8384c00,5, 0x8384c20,5, 0x8384c40,5, 0x8384c60,5, 0x8384c80,5, 0x8384ca0,5, 0x8384cc0,5, 0x8384ce0,5, 0x8384d00,5, 0x8384d20,5, 0x8384d40,5, 0x8384d60,5, 0x8384d80,5, 0x8384da0,5, 0x8384dc0,5, 0x8384de0,5, 0x8384e00,5, 0x8384e20,5, 0x8384e40,5, 0x8384e60,5, 0x8384e80,5, 0x8384ea0,5, 0x8384ec0,5, 0x8384ee0,5, 0x8384f00,5, 0x8384f20,5, 0x8384f40,5, 0x8384f60,5, 0x8384f80,5, 0x8384fa0,5, 0x8384fc0,5, 0x8384fe0,5, 0x8385000,5, 0x8385020,5, 0x8385040,5, 0x8385060,5, 0x8385080,5, 0x83850a0,5, 0x83850c0,5, 0x83850e0,5, 0x8385100,5, 0x8385120,5, 0x8385140,5, 0x8385160,5, 0x8385180,5, 0x83851a0,5, 0x83851c0,5, 0x83851e0,5, 0x8385200,5, 0x8385220,5, 0x8385240,5, 0x8385260,5, 0x8385280,5, 0x83852a0,5, 0x83852c0,5, 0x83852e0,5, 0x8385300,5, 0x8385320,5, 0x8385340,5, 0x8385360,5, 0x8385380,5, 0x83853a0,5, 0x83853c0,5, 0x83853e0,5, 0x8385400,5, 0x8385420,5, 0x8385440,5, 0x8385460,5, 0x8385480,5, 0x83854a0,5, 0x83854c0,5, 0x83854e0,5, 0x8385500,5, 0x8385520,5, 0x8385540,5, 0x8385560,5, 0x8385580,5, 0x83855a0,5, 0x83855c0,5, 0x83855e0,5, 0x8385600,5, 0x8385620,5, 0x8385640,5, 0x8385660,5, 0x8385680,5, 0x83856a0,5, 0x83856c0,5, 0x83856e0,5, 0x8385700,5, 0x8385720,5, 0x8385740,5, 0x8385760,5, 0x8385780,5, 0x83857a0,5, 0x83857c0,5, 0x83857e0,5, 0x8385800,5, 0x8385820,5, 0x8385840,5, 0x8385860,5, 0x8385880,5, 0x83858a0,5, 0x83858c0,5, 0x83858e0,5, 0x8385900,5, 0x8385920,5, 0x8385940,5, 0x8385960,5, 0x8385980,5, 0x83859a0,5, 0x83859c0,5, 0x83859e0,5, 0x8385a00,5, 0x8385a20,5, 0x8385a40,5, 0x8385a60,5, 0x8385a80,5, 0x8385aa0,5, 0x8385ac0,5, 0x8385ae0,5, 0x8385b00,5, 0x8385b20,5, 0x8385b40,5, 0x8385b60,5, 0x8385b80,5, 0x8385ba0,5, 0x8385bc0,5, 0x8385be0,5, 0x8385c00,5, 0x8385c20,5, 0x8385c40,5, 0x8385c60,5, 0x8385c80,5, 0x8385ca0,5, 0x8385cc0,5, 0x8385ce0,5, 0x8385d00,5, 0x8385d20,5, 0x8385d40,5, 0x8385d60,5, 0x8385d80,5, 0x8385da0,5, 0x8385dc0,5, 0x8385de0,5, 0x8385e00,5, 0x8385e20,5, 0x8385e40,5, 0x8385e60,5, 0x8385e80,5, 0x8385ea0,5, 0x8385ec0,5, 0x8385ee0,5, 0x8385f00,5, 0x8385f20,5, 0x8385f40,5, 0x8385f60,5, 0x8385f80,5, 0x8385fa0,5, 0x8385fc0,5, 0x8385fe0,5, 0x8386000,5, 0x8386020,5, 0x8386040,5, 0x8386060,5, 0x8386080,5, 0x83860a0,5, 0x83860c0,5, 0x83860e0,5, 0x8386100,5, 0x8386120,5, 0x8386140,5, 0x8386160,5, 0x8386180,5, 0x83861a0,5, 0x83861c0,5, 0x83861e0,5, 0x8386200,5, 0x8386220,5, 0x8386240,5, 0x8386260,5, 0x8386280,5, 0x83862a0,5, 0x83862c0,5, 0x83862e0,5, 0x8386300,5, 0x8386320,5, 0x8386340,5, 0x8386360,5, 0x8386380,5, 0x83863a0,5, 0x83863c0,5, 0x83863e0,5, 0x8386400,5, 0x8386420,5, 0x8386440,5, 0x8386460,5, 0x8386480,5, 0x83864a0,5, 0x83864c0,5, 0x83864e0,5, 0x8386500,5, 0x8386520,5, 0x8386540,5, 0x8386560,5, 0x8386580,5, 0x83865a0,5, 0x83865c0,5, 0x83865e0,5, 0x8386600,5, 0x8386620,5, 0x8386640,5, 0x8386660,5, 0x8386680,5, 0x83866a0,5, 0x83866c0,5, 0x83866e0,5, 0x8386700,5, 0x8386720,5, 0x8386740,5, 0x8386760,5, 0x8386780,5, 0x83867a0,5, 0x83867c0,5, 0x83867e0,5, 0x8386800,5, 0x8386820,5, 0x8386840,5, 0x8386860,5, 0x8386880,5, 0x83868a0,5, 0x83868c0,5, 0x83868e0,5, 0x8386900,5, 0x8386920,5, 0x8386940,5, 0x8386960,5, 0x8386980,5, 0x83869a0,5, 0x83869c0,5, 0x83869e0,5, 0x8386a00,5, 0x8386a20,5, 0x8386a40,5, 0x8386a60,5, 0x8386a80,5, 0x8386aa0,5, 0x8386ac0,5, 0x8386ae0,5, 0x8386b00,5, 0x8386b20,5, 0x8386b40,5, 0x8386b60,5, 0x8386b80,5, 0x8386ba0,5, 0x8386bc0,5, 0x8386be0,5, 0x8386c00,5, 0x8386c20,5, 0x8386c40,5, 0x8386c60,5, 0x8386c80,5, 0x8386ca0,5, 0x8386cc0,5, 0x8386ce0,5, 0x8386d00,5, 0x8386d20,5, 0x8386d40,5, 0x8386d60,5, 0x8386d80,5, 0x8386da0,5, 0x8386dc0,5, 0x8386de0,5, 0x8386e00,5, 0x8386e20,5, 0x8386e40,5, 0x8386e60,5, 0x8386e80,5, 0x8386ea0,5, 0x8386ec0,5, 0x8386ee0,5, 0x8386f00,5, 0x8386f20,5, 0x8386f40,5, 0x8386f60,5, 0x8386f80,5, 0x8386fa0,5, 0x8386fc0,5, 0x8386fe0,5, 0x8387000,5, 0x8387020,5, 0x8387040,5, 0x8387060,5, 0x8387080,5, 0x83870a0,5, 0x83870c0,5, 0x83870e0,5, 0x8387100,5, 0x8387120,5, 0x8387140,5, 0x8387160,5, 0x8387180,5, 0x83871a0,5, 0x83871c0,5, 0x83871e0,5, 0x8387200,5, 0x8387220,5, 0x8387240,5, 0x8387260,5, 0x8387280,5, 0x83872a0,5, 0x83872c0,5, 0x83872e0,5, 0x8387300,5, 0x8387320,5, 0x8387340,5, 0x8387360,5, 0x8387380,5, 0x83873a0,5, 0x83873c0,5, 0x83873e0,5, 0x8387400,5, 0x8387420,5, 0x8387440,5, 0x8387460,5, 0x8387480,5, 0x83874a0,5, 0x83874c0,5, 0x83874e0,5, 0x8387500,5, 0x8387520,5, 0x8387540,5, 0x8387560,5, 0x8387580,5, 0x83875a0,5, 0x83875c0,5, 0x83875e0,5, 0x8387600,5, 0x8387620,5, 0x8387640,5, 0x8387660,5, 0x8387680,5, 0x83876a0,5, 0x83876c0,5, 0x83876e0,5, 0x8387700,5, 0x8387720,5, 0x8387740,5, 0x8387760,5, 0x8387780,5, 0x83877a0,5, 0x83877c0,5, 0x83877e0,5, 0x8387800,5, 0x8387820,5, 0x8387840,5, 0x8387860,5, 0x8387880,5, 0x83878a0,5, 0x83878c0,5, 0x83878e0,5, 0x8387900,5, 0x8387920,5, 0x8387940,5, 0x8387960,5, 0x8387980,5, 0x83879a0,5, 0x83879c0,5, 0x83879e0,5, 0x8387a00,5, 0x8387a20,5, 0x8387a40,5, 0x8387a60,5, 0x8387a80,5, 0x8387aa0,5, 0x8387ac0,5, 0x8387ae0,5, 0x8387b00,5, 0x8387b20,5, 0x8387b40,5, 0x8387b60,5, 0x8387b80,5, 0x8387ba0,5, 0x8387bc0,5, 0x8387be0,5, 0x8387c00,5, 0x8387c20,5, 0x8387c40,5, 0x8387c60,5, 0x8387c80,5, 0x8387ca0,5, 0x8387cc0,5, 0x8387ce0,5, 0x8387d00,5, 0x8387d20,5, 0x8387d40,5, 0x8387d60,5, 0x8387d80,5, 0x8387da0,5, 0x8387dc0,5, 0x8387de0,5, 0x8387e00,5, 0x8387e20,5, 0x8387e40,5, 0x8387e60,5, 0x8387e80,5, 0x8387ea0,5, 0x8387ec0,5, 0x8387ee0,5, 0x8387f00,5, 0x8387f20,5, 0x8387f40,5, 0x8387f60,5, 0x8387f80,5, 0x8387fa0,5, 0x8387fc0,5, 0x8387fe0,5, 0x8388000,5, 0x8388020,5, 0x8388040,5, 0x8388060,5, 0x8388080,5, 0x83880a0,5, 0x83880c0,5, 0x83880e0,5, 0x8388100,5, 0x8388120,5, 0x8388140,5, 0x8388160,5, 0x8388180,5, 0x83881a0,5, 0x83881c0,5, 0x83881e0,5, 0x8388200,5, 0x8388220,5, 0x8388240,5, 0x8388260,5, 0x8388280,5, 0x83882a0,5, 0x83882c0,5, 0x83882e0,5, 0x8388300,5, 0x8388320,5, 0x8388340,5, 0x8388360,5, 0x8388380,5, 0x83883a0,5, 0x83883c0,5, 0x83883e0,5, 0x8388400,5, 0x8388420,5, 0x8388440,5, 0x8388460,5, 0x8388480,5, 0x83884a0,5, 0x83884c0,5, 0x83884e0,5, 0x8388500,5, 0x8388520,5, 0x8388540,5, 0x8388560,5, 0x8388580,5, 0x83885a0,5, 0x83885c0,5, 0x83885e0,5, 0x8388600,5, 0x8388620,5, 0x8388640,5, 0x8388660,5, 0x8388680,5, 0x83886a0,5, 0x83886c0,5, 0x83886e0,5, 0x8388700,5, 0x8388720,5, 0x8388740,5, 0x8388760,5, 0x8388780,5, 0x83887a0,5, 0x83887c0,5, 0x83887e0,5, 0x8388800,5, 0x8388820,5, 0x8388840,5, 0x8388860,5, 0x8388880,5, 0x83888a0,5, 0x83888c0,5, 0x83888e0,5, 0x8388900,5, 0x8388920,5, 0x8388940,5, 0x8388960,5, 0x8388980,5, 0x83889a0,5, 0x83889c0,5, 0x83889e0,5, 0x8388a00,5, 0x8388a20,5, 0x8388a40,5, 0x8388a60,5, 0x8388a80,5, 0x8388aa0,5, 0x8388ac0,5, 0x8388ae0,5, 0x8388b00,5, 0x8388b20,5, 0x8388b40,5, 0x8388b60,5, 0x8388b80,5, 0x8388ba0,5, 0x8388bc0,5, 0x8388be0,5, 0x8388c00,5, 0x8388c20,5, 0x8388c40,5, 0x8388c60,5, 0x8388c80,5, 0x8388ca0,5, 0x8388cc0,5, 0x8388ce0,5, 0x8388d00,5, 0x8388d20,5, 0x8388d40,5, 0x8388d60,5, 0x8388d80,5, 0x8388da0,5, 0x8388dc0,5, 0x8388de0,5, 0x8388e00,5, 0x8388e20,5, 0x8388e40,5, 0x8388e60,5, 0x8388e80,5, 0x8388ea0,5, 0x8388ec0,5, 0x8388ee0,5, 0x8388f00,5, 0x8388f20,5, 0x8388f40,5, 0x8388f60,5, 0x8388f80,5, 0x8388fa0,5, 0x8388fc0,5, 0x8388fe0,5, 0x8389000,5, 0x8389020,5, 0x8389040,5, 0x8389060,5, 0x8389080,5, 0x83890a0,5, 0x83890c0,5, 0x83890e0,5, 0x8389100,5, 0x8389120,5, 0x8389140,5, 0x8389160,5, 0x8389180,5, 0x83891a0,5, 0x83891c0,5, 0x83891e0,5, 0x8389200,5, 0x8389220,5, 0x8389240,5, 0x8389260,5, 0x8389280,5, 0x83892a0,5, 0x83892c0,5, 0x83892e0,5, 0x8389300,5, 0x8389320,5, 0x8389340,5, 0x8389360,5, 0x8389380,5, 0x83893a0,5, 0x83893c0,5, 0x83893e0,5, 0x8389400,5, 0x8389420,5, 0x8389440,5, 0x8389460,5, 0x8389480,5, 0x83894a0,5, 0x83894c0,5, 0x83894e0,5, 0x8389500,5, 0x8389520,5, 0x8389540,5, 0x8389560,5, 0x8389580,5, 0x83895a0,5, 0x83895c0,5, 0x83895e0,5, 0x8389600,5, 0x8389620,5, 0x8389640,5, 0x8389660,5, 0x8389680,5, 0x83896a0,5, 0x83896c0,5, 0x83896e0,5, 0x8389700,5, 0x8389720,5, 0x8389740,5, 0x8389760,5, 0x8389780,5, 0x83897a0,5, 0x83897c0,5, 0x83897e0,5, 0x8389800,5, 0x8389820,5, 0x8389840,5, 0x8389860,5, 0x8389880,5, 0x83898a0,5, 0x83898c0,5, 0x83898e0,5, 0x8389900,5, 0x8389920,5, 0x8389940,5, 0x8389960,5, 0x8389980,5, 0x83899a0,5, 0x83899c0,5, 0x83899e0,5, 0x8389a00,5, 0x8389a20,5, 0x8389a40,5, 0x8389a60,5, 0x8389a80,5, 0x8389aa0,5, 0x8389ac0,5, 0x8389ae0,5, 0x8389b00,5, 0x8389b20,5, 0x8389b40,5, 0x8389b60,5, 0x8389b80,5, 0x8389ba0,5, 0x8389bc0,5, 0x8389be0,5, 0x8389c00,5, 0x8389c20,5, 0x8389c40,5, 0x8389c60,5, 0x8389c80,5, 0x8389ca0,5, 0x8389cc0,5, 0x8389ce0,5, 0x8389d00,5, 0x8389d20,5, 0x8389d40,5, 0x8389d60,5, 0x8389d80,5, 0x8389da0,5, 0x8389dc0,5, 0x8389de0,5, 0x8389e00,5, 0x8389e20,5, 0x8389e40,5, 0x8389e60,5, 0x8389e80,5, 0x8389ea0,5, 0x8389ec0,5, 0x8389ee0,5, 0x8389f00,5, 0x8389f20,5, 0x8389f40,5, 0x8389f60,5, 0x8389f80,5, 0x8389fa0,5, 0x8389fc0,5, 0x8389fe0,5, 0x838a000,5, 0x838a020,5, 0x838a040,5, 0x838a060,5, 0x838a080,5, 0x838a0a0,5, 0x838a0c0,5, 0x838a0e0,5, 0x838a100,5, 0x838a120,5, 0x838a140,5, 0x838a160,5, 0x838a180,5, 0x838a1a0,5, 0x838a1c0,5, 0x838a1e0,5, 0x838a200,5, 0x838a220,5, 0x838a240,5, 0x838a260,5, 0x838a280,5, 0x838a2a0,5, 0x838a2c0,5, 0x838a2e0,5, 0x838a300,5, 0x838a320,5, 0x838a340,5, 0x838a360,5, 0x838a380,5, 0x838a3a0,5, 0x838a3c0,5, 0x838a3e0,5, 0x838a400,5, 0x838a420,5, 0x838a440,5, 0x838a460,5, 0x838a480,5, 0x838a4a0,5, 0x838a4c0,5, 0x838a4e0,5, 0x838a500,5, 0x838a520,5, 0x838a540,5, 0x838a560,5, 0x838a580,5, 0x838a5a0,5, 0x838a5c0,5, 0x838a5e0,5, 0x838a600,5, 0x838a620,5, 0x838a640,5, 0x838a660,5, 0x838a680,5, 0x838a6a0,5, 0x838a6c0,5, 0x838a6e0,5, 0x838a700,5, 0x838a720,5, 0x838a740,5, 0x838a760,5, 0x838a780,5, 0x838a7a0,5, 0x838a7c0,5, 0x838a7e0,5, 0x838a800,5, 0x838a820,5, 0x838a840,5, 0x838a860,5, 0x838a880,5, 0x838a8a0,5, 0x838a8c0,5, 0x838a8e0,5, 0x838a900,5, 0x838a920,5, 0x838a940,5, 0x838a960,5, 0x838a980,5, 0x838a9a0,5, 0x838a9c0,5, 0x838a9e0,5, 0x838aa00,5, 0x838aa20,5, 0x838aa40,5, 0x838aa60,5, 0x838aa80,5, 0x838aaa0,5, 0x838aac0,5, 0x838aae0,5, 0x838ab00,5, 0x838ab20,5, 0x838ab40,5, 0x838ab60,5, 0x838ab80,5, 0x838aba0,5, 0x838abc0,5, 0x838abe0,5, 0x838ac00,5, 0x838ac20,5, 0x838ac40,5, 0x838ac60,5, 0x838ac80,5, 0x838aca0,5, 0x838acc0,5, 0x838ace0,5, 0x838ad00,5, 0x838ad20,5, 0x838ad40,5, 0x838ad60,5, 0x838ad80,5, 0x838ada0,5, 0x838adc0,5, 0x838ade0,5, 0x838ae00,5, 0x838ae20,5, 0x838ae40,5, 0x838ae60,5, 0x838ae80,5, 0x838aea0,5, 0x838aec0,5, 0x838aee0,5, 0x838af00,5, 0x838af20,5, 0x838af40,5, 0x838af60,5, 0x838af80,5, 0x838afa0,5, 0x838afc0,5, 0x838afe0,5, 0x838b000,5, 0x838b020,5, 0x838b040,5, 0x838b060,5, 0x838b080,5, 0x838b0a0,5, 0x838b0c0,5, 0x838b0e0,5, 0x838b100,5, 0x838b120,5, 0x838b140,5, 0x838b160,5, 0x838b180,5, 0x838b1a0,5, 0x838b1c0,5, 0x838b1e0,5, 0x838b200,5, 0x838b220,5, 0x838b240,5, 0x838b260,5, 0x838b280,5, 0x838b2a0,5, 0x838b2c0,5, 0x838b2e0,5, 0x838b300,5, 0x838b320,5, 0x838b340,5, 0x838b360,5, 0x838b380,5, 0x838b3a0,5, 0x838b3c0,5, 0x838b3e0,5, 0x838b400,5, 0x838b420,5, 0x838b440,5, 0x838b460,5, 0x838b480,5, 0x838b4a0,5, 0x838b4c0,5, 0x838b4e0,5, 0x838b500,5, 0x838b520,5, 0x838b540,5, 0x838b560,5, 0x838b580,5, 0x838b5a0,5, 0x838b5c0,5, 0x838b5e0,5, 0x838b600,5, 0x838b620,5, 0x838b640,5, 0x838b660,5, 0x838b680,5, 0x838b6a0,5, 0x838b6c0,5, 0x838b6e0,5, 0x838b700,5, 0x838b720,5, 0x838b740,5, 0x838b760,5, 0x838b780,5, 0x838b7a0,5, 0x838b7c0,5, 0x838b7e0,5, 0x838b800,5, 0x838b820,5, 0x838b840,5, 0x838b860,5, 0x838b880,5, 0x838b8a0,5, 0x838b8c0,5, 0x838b8e0,5, 0x838b900,5, 0x838b920,5, 0x838b940,5, 0x838b960,5, 0x838b980,5, 0x838b9a0,5, 0x838b9c0,5, 0x838b9e0,5, 0x838ba00,5, 0x838ba20,5, 0x838ba40,5, 0x838ba60,5, 0x838ba80,5, 0x838baa0,5, 0x838bac0,5, 0x838bae0,5, 0x838bb00,5, 0x838bb20,5, 0x838bb40,5, 0x838bb60,5, 0x838bb80,5, 0x838bba0,5, 0x838bbc0,5, 0x838bbe0,5, 0x838bc00,5, 0x838bc20,5, 0x838bc40,5, 0x838bc60,5, 0x838bc80,5, 0x838bca0,5, 0x838bcc0,5, 0x838bce0,5, 0x838bd00,5, 0x838bd20,5, 0x838bd40,5, 0x838bd60,5, 0x838bd80,5, 0x838bda0,5, 0x838bdc0,5, 0x838bde0,5, 0x838be00,5, 0x838be20,5, 0x838be40,5, 0x838be60,5, 0x838be80,5, 0x838bea0,5, 0x838bec0,5, 0x838bee0,5, 0x838bf00,5, 0x838bf20,5, 0x838bf40,5, 0x838bf60,5, 0x838bf80,5, 0x838bfa0,5, 0x838bfc0,5, 0x838bfe0,5, 0x838c000,5, 0x838c020,5, 0x838c040,5, 0x838c060,5, 0x838c080,5, 0x838c0a0,5, 0x838c0c0,5, 0x838c0e0,5, 0x838c100,5, 0x838c120,5, 0x838c140,5, 0x838c160,5, 0x838c180,5, 0x838c1a0,5, 0x838c1c0,5, 0x838c1e0,5, 0x838c200,5, 0x838c220,5, 0x838c240,5, 0x838c260,5, 0x838c280,5, 0x838c2a0,5, 0x838c2c0,5, 0x838c2e0,5, 0x838c300,5, 0x838c320,5, 0x838c340,5, 0x838c360,5, 0x838c380,5, 0x838c3a0,5, 0x838c3c0,5, 0x838c3e0,5, 0x838c400,5, 0x838c420,5, 0x838c440,5, 0x838c460,5, 0x838c480,5, 0x838c4a0,5, 0x838c4c0,5, 0x838c4e0,5, 0x838c500,5, 0x838c520,5, 0x838c540,5, 0x838c560,5, 0x838c580,5, 0x838c5a0,5, 0x838c5c0,5, 0x838c5e0,5, 0x838c600,5, 0x838c620,5, 0x838c640,5, 0x838c660,5, 0x838c680,5, 0x838c6a0,5, 0x838c6c0,5, 0x838c6e0,5, 0x838c700,5, 0x838c720,5, 0x838c740,5, 0x838c760,5, 0x838c780,5, 0x838c7a0,5, 0x838c7c0,5, 0x838c7e0,5, 0x838c800,5, 0x838c820,5, 0x838c840,5, 0x838c860,5, 0x838c880,5, 0x838c8a0,5, 0x838c8c0,5, 0x838c8e0,5, 0x838c900,5, 0x838c920,5, 0x838c940,5, 0x838c960,5, 0x838c980,5, 0x838c9a0,5, 0x838c9c0,5, 0x838c9e0,5, 0x838ca00,5, 0x838ca20,5, 0x838ca40,5, 0x838ca60,5, 0x838ca80,5, 0x838caa0,5, 0x838cac0,5, 0x838cae0,5, 0x838cb00,5, 0x838cb20,5, 0x838cb40,5, 0x838cb60,5, 0x838cb80,5, 0x838cba0,5, 0x838cbc0,5, 0x838cbe0,5, 0x838cc00,5, 0x838cc20,5, 0x838cc40,5, 0x838cc60,5, 0x838cc80,5, 0x838cca0,5, 0x838ccc0,5, 0x838cce0,5, 0x838cd00,5, 0x838cd20,5, 0x838cd40,5, 0x838cd60,5, 0x838cd80,5, 0x838cda0,5, 0x838cdc0,5, 0x838cde0,5, 0x838ce00,5, 0x838ce20,5, 0x838ce40,5, 0x838ce60,5, 0x838ce80,5, 0x838cea0,5, 0x838cec0,5, 0x838cee0,5, 0x838cf00,5, 0x838cf20,5, 0x838cf40,5, 0x838cf60,5, 0x838cf80,5, 0x838cfa0,5, 0x838cfc0,5, 0x838cfe0,5, 0x838d000,5, 0x838d020,5, 0x838d040,5, 0x838d060,5, 0x838d080,5, 0x838d0a0,5, 0x838d0c0,5, 0x838d0e0,5, 0x838d100,5, 0x838d120,5, 0x838d140,5, 0x838d160,5, 0x838d180,5, 0x838d1a0,5, 0x838d1c0,5, 0x838d1e0,5, 0x838d200,5, 0x838d220,5, 0x838d240,5, 0x838d260,5, 0x838d280,5, 0x838d2a0,5, 0x838d2c0,5, 0x838d2e0,5, 0x838d300,5, 0x838d320,5, 0x838d340,5, 0x838d360,5, 0x838d380,5, 0x838d3a0,5, 0x838d3c0,5, 0x838d3e0,5, 0x838d400,5, 0x838d420,5, 0x838d440,5, 0x838d460,5, 0x838d480,5, 0x838d4a0,5, 0x838d4c0,5, 0x838d4e0,5, 0x838d500,5, 0x838d520,5, 0x838d540,5, 0x838d560,5, 0x838d580,5, 0x838d5a0,5, 0x838d5c0,5, 0x838d5e0,5, 0x838d600,5, 0x838d620,5, 0x838d640,5, 0x838d660,5, 0x838d680,5, 0x838d6a0,5, 0x838d6c0,5, 0x838d6e0,5, 0x838d700,5, 0x838d720,5, 0x838d740,5, 0x838d760,5, 0x838d780,5, 0x838d7a0,5, 0x838d7c0,5, 0x838d7e0,5, 0x838d800,5, 0x838d820,5, 0x838d840,5, 0x838d860,5, 0x838d880,5, 0x838d8a0,5, 0x838d8c0,5, 0x838d8e0,5, 0x838d900,5, 0x838d920,5, 0x838d940,5, 0x838d960,5, 0x838d980,5, 0x838d9a0,5, 0x838d9c0,5, 0x838d9e0,5, 0x838da00,5, 0x838da20,5, 0x838da40,5, 0x838da60,5, 0x838da80,5, 0x838daa0,5, 0x838dac0,5, 0x838dae0,5, 0x838db00,5, 0x838db20,5, 0x838db40,5, 0x838db60,5, 0x838db80,5, 0x838dba0,5, 0x838dbc0,5, 0x838dbe0,5, 0x838dc00,5, 0x838dc20,5, 0x838dc40,5, 0x838dc60,5, 0x838dc80,5, 0x838dca0,5, 0x838dcc0,5, 0x838dce0,5, 0x838dd00,5, 0x838dd20,5, 0x838dd40,5, 0x838dd60,5, 0x838dd80,5, 0x838dda0,5, 0x838ddc0,5, 0x838dde0,5, 0x838de00,5, 0x838de20,5, 0x838de40,5, 0x838de60,5, 0x838de80,5, 0x838dea0,5, 0x838dec0,5, 0x838dee0,5, 0x838df00,5, 0x838df20,5, 0x838df40,5, 0x838df60,5, 0x838df80,5, 0x838dfa0,5, 0x838dfc0,5, 0x838dfe0,5, 0x838e000,5, 0x838e020,5, 0x838e040,5, 0x838e060,5, 0x838e080,5, 0x838e0a0,5, 0x838e0c0,5, 0x838e0e0,5, 0x838e100,5, 0x838e120,5, 0x838e140,5, 0x838e160,5, 0x838e180,5, 0x838e1a0,5, 0x838e1c0,5, 0x838e1e0,5, 0x838e200,5, 0x838e220,5, 0x838e240,5, 0x838e260,5, 0x838e280,5, 0x838e2a0,5, 0x838e2c0,5, 0x838e2e0,5, 0x838e300,5, 0x838e320,5, 0x838e340,5, 0x838e360,5, 0x838e380,5, 0x838e3a0,5, 0x838e3c0,5, 0x838e3e0,5, 0x838e400,5, 0x838e420,5, 0x838e440,5, 0x838e460,5, 0x838e480,5, 0x838e4a0,5, 0x838e4c0,5, 0x838e4e0,5, 0x838e500,5, 0x838e520,5, 0x838e540,5, 0x838e560,5, 0x838e580,5, 0x838e5a0,5, 0x838e5c0,5, 0x838e5e0,5, 0x838e600,5, 0x838e620,5, 0x838e640,5, 0x838e660,5, 0x838e680,5, 0x838e6a0,5, 0x838e6c0,5, 0x838e6e0,5, 0x838e700,5, 0x838e720,5, 0x838e740,5, 0x838e760,5, 0x838e780,5, 0x838e7a0,5, 0x838e7c0,5, 0x838e7e0,5, 0x838e800,5, 0x838e820,5, 0x838e840,5, 0x838e860,5, 0x838e880,5, 0x838e8a0,5, 0x838e8c0,5, 0x838e8e0,5, 0x838e900,5, 0x838e920,5, 0x838e940,5, 0x838e960,5, 0x838e980,5, 0x838e9a0,5, 0x838e9c0,5, 0x838e9e0,5, 0x838ea00,5, 0x838ea20,5, 0x838ea40,5, 0x838ea60,5, 0x838ea80,5, 0x838eaa0,5, 0x838eac0,5, 0x838eae0,5, 0x838eb00,5, 0x838eb20,5, 0x838eb40,5, 0x838eb60,5, 0x838eb80,5, 0x838eba0,5, 0x838ebc0,5, 0x838ebe0,5, 0x838ec00,5, 0x838ec20,5, 0x838ec40,5, 0x838ec60,5, 0x838ec80,5, 0x838eca0,5, 0x838ecc0,5, 0x838ece0,5, 0x838ed00,5, 0x838ed20,5, 0x838ed40,5, 0x838ed60,5, 0x838ed80,5, 0x838eda0,5, 0x838edc0,5, 0x838ede0,5, 0x838ee00,5, 0x838ee20,5, 0x838ee40,5, 0x838ee60,5, 0x838ee80,5, 0x838eea0,5, 0x838eec0,5, 0x838eee0,5, 0x838ef00,5, 0x838ef20,5, 0x838ef40,5, 0x838ef60,5, 0x838ef80,5, 0x838efa0,5, 0x838efc0,5, 0x838efe0,5, 0x838f000,5, 0x838f020,5, 0x838f040,5, 0x838f060,5, 0x838f080,5, 0x838f0a0,5, 0x838f0c0,5, 0x838f0e0,5, 0x838f100,5, 0x838f120,5, 0x838f140,5, 0x838f160,5, 0x838f180,5, 0x838f1a0,5, 0x838f1c0,5, 0x838f1e0,5, 0x838f200,5, 0x838f220,5, 0x838f240,5, 0x838f260,5, 0x838f280,5, 0x838f2a0,5, 0x838f2c0,5, 0x838f2e0,5, 0x838f300,5, 0x838f320,5, 0x838f340,5, 0x838f360,5, 0x838f380,5, 0x838f3a0,5, 0x838f3c0,5, 0x838f3e0,5, 0x838f400,5, 0x838f420,5, 0x838f440,5, 0x838f460,5, 0x838f480,5, 0x838f4a0,5, 0x838f4c0,5, 0x838f4e0,5, 0x838f500,5, 0x838f520,5, 0x838f540,5, 0x838f560,5, 0x838f580,5, 0x838f5a0,5, 0x838f5c0,5, 0x838f5e0,5, 0x838f600,5, 0x838f620,5, 0x838f640,5, 0x838f660,5, 0x838f680,5, 0x838f6a0,5, 0x838f6c0,5, 0x838f6e0,5, 0x838f700,5, 0x838f720,5, 0x838f740,5, 0x838f760,5, 0x838f780,5, 0x838f7a0,5, 0x838f7c0,5, 0x838f7e0,5, 0x838f800,5, 0x838f820,5, 0x838f840,5, 0x838f860,5, 0x838f880,5, 0x838f8a0,5, 0x838f8c0,5, 0x838f8e0,5, 0x838f900,5, 0x838f920,5, 0x838f940,5, 0x838f960,5, 0x838f980,5, 0x838f9a0,5, 0x838f9c0,5, 0x838f9e0,5, 0x838fa00,5, 0x838fa20,5, 0x838fa40,5, 0x838fa60,5, 0x838fa80,5, 0x838faa0,5, 0x838fac0,5, 0x838fae0,5, 0x838fb00,5, 0x838fb20,5, 0x838fb40,5, 0x838fb60,5, 0x838fb80,5, 0x838fba0,5, 0x838fbc0,5, 0x838fbe0,5, 0x838fc00,5, 0x838fc20,5, 0x838fc40,5, 0x838fc60,5, 0x838fc80,5, 0x838fca0,5, 0x838fcc0,5, 0x838fce0,5, 0x838fd00,5, 0x838fd20,5, 0x838fd40,5, 0x838fd60,5, 0x838fd80,5, 0x838fda0,5, 0x838fdc0,5, 0x838fde0,5, 0x838fe00,5, 0x838fe20,5, 0x838fe40,5, 0x838fe60,5, 0x838fe80,5, 0x838fea0,5, 0x838fec0,5, 0x838fee0,5, 0x838ff00,5, 0x838ff20,5, 0x838ff40,5, 0x838ff60,5, 0x838ff80,5, 0x838ffa0,5, 0x838ffc0,5, 0x838ffe0,5, 0x8390000,5, 0x8390020,5, 0x8390040,5, 0x8390060,5, 0x8390080,5, 0x83900a0,5, 0x83900c0,5, 0x83900e0,5, 0x8390100,5, 0x8390120,5, 0x8390140,5, 0x8390160,5, 0x8390180,5, 0x83901a0,5, 0x83901c0,5, 0x83901e0,5, 0x8390200,5, 0x8390220,5, 0x8390240,5, 0x8390260,5, 0x8390280,5, 0x83902a0,5, 0x83902c0,5, 0x83902e0,5, 0x8390300,5, 0x8390320,5, 0x8390340,5, 0x8390360,5, 0x8390380,5, 0x83903a0,5, 0x83903c0,5, 0x83903e0,5, 0x8390400,5, 0x8390420,5, 0x8390440,5, 0x8390460,5, 0x8390480,5, 0x83904a0,5, 0x83904c0,5, 0x83904e0,5, 0x8390500,5, 0x8390520,5, 0x8390540,5, 0x8390560,5, 0x8390580,5, 0x83905a0,5, 0x83905c0,5, 0x83905e0,5, 0x8390600,5, 0x8390620,5, 0x8390640,5, 0x8390660,5, 0x8390680,5, 0x83906a0,5, 0x83906c0,5, 0x83906e0,5, 0x8390700,5, 0x8390720,5, 0x8390740,5, 0x8390760,5, 0x8390780,5, 0x83907a0,5, 0x83907c0,5, 0x83907e0,5, 0x8390800,5, 0x8390820,5, 0x8390840,5, 0x8390860,5, 0x8390880,5, 0x83908a0,5, 0x83908c0,5, 0x83908e0,5, 0x8390900,5, 0x8390920,5, 0x8390940,5, 0x8390960,5, 0x8390980,5, 0x83909a0,5, 0x83909c0,5, 0x83909e0,5, 0x8390a00,5, 0x8390a20,5, 0x8390a40,5, 0x8390a60,5, 0x8390a80,5, 0x8390aa0,5, 0x8390ac0,5, 0x8390ae0,5, 0x8390b00,5, 0x8390b20,5, 0x8390b40,5, 0x8390b60,5, 0x8390b80,5, 0x8390ba0,5, 0x8390bc0,5, 0x8390be0,5, 0x8390c00,5, 0x8390c20,5, 0x8390c40,5, 0x8390c60,5, 0x8390c80,5, 0x8390ca0,5, 0x8390cc0,5, 0x8390ce0,5, 0x8390d00,5, 0x8390d20,5, 0x8390d40,5, 0x8390d60,5, 0x8390d80,5, 0x8390da0,5, 0x8390dc0,5, 0x8390de0,5, 0x8390e00,5, 0x8390e20,5, 0x8390e40,5, 0x8390e60,5, 0x8390e80,5, 0x8390ea0,5, 0x8390ec0,5, 0x8390ee0,5, 0x8390f00,5, 0x8390f20,5, 0x8390f40,5, 0x8390f60,5, 0x8390f80,5, 0x8390fa0,5, 0x8390fc0,5, 0x8390fe0,5, 0x8391000,5, 0x8391020,5, 0x8391040,5, 0x8391060,5, 0x8391080,5, 0x83910a0,5, 0x83910c0,5, 0x83910e0,5, 0x8391100,5, 0x8391120,5, 0x8391140,5, 0x8391160,5, 0x8391180,5, 0x83911a0,5, 0x83911c0,5, 0x83911e0,5, 0x8391200,5, 0x8391220,5, 0x8391240,5, 0x8391260,5, 0x8391280,5, 0x83912a0,5, 0x83912c0,5, 0x83912e0,5, 0x8391300,5, 0x8391320,5, 0x8391340,5, 0x8391360,5, 0x8391380,5, 0x83913a0,5, 0x83913c0,5, 0x83913e0,5, 0x8391400,5, 0x8391420,5, 0x8391440,5, 0x8391460,5, 0x8391480,5, 0x83914a0,5, 0x83914c0,5, 0x83914e0,5, 0x8391500,5, 0x8391520,5, 0x8391540,5, 0x8391560,5, 0x8391580,5, 0x83915a0,5, 0x83915c0,5, 0x83915e0,5, 0x8391600,5, 0x8391620,5, 0x8391640,5, 0x8391660,5, 0x8391680,5, 0x83916a0,5, 0x83916c0,5, 0x83916e0,5, 0x8391700,5, 0x8391720,5, 0x8391740,5, 0x8391760,5, 0x8391780,5, 0x83917a0,5, 0x83917c0,5, 0x83917e0,5, 0x8391800,5, 0x8391820,5, 0x8391840,5, 0x8391860,5, 0x8391880,5, 0x83918a0,5, 0x83918c0,5, 0x83918e0,5, 0x8391900,5, 0x8391920,5, 0x8391940,5, 0x8391960,5, 0x8391980,5, 0x83919a0,5, 0x83919c0,5, 0x83919e0,5, 0x8391a00,5, 0x8391a20,5, 0x8391a40,5, 0x8391a60,5, 0x8391a80,5, 0x8391aa0,5, 0x8391ac0,5, 0x8391ae0,5, 0x8391b00,5, 0x8391b20,5, 0x8391b40,5, 0x8391b60,5, 0x8391b80,5, 0x8391ba0,5, 0x8391bc0,5, 0x8391be0,5, 0x8391c00,5, 0x8391c20,5, 0x8391c40,5, 0x8391c60,5, 0x8391c80,5, 0x8391ca0,5, 0x8391cc0,5, 0x8391ce0,5, 0x8391d00,5, 0x8391d20,5, 0x8391d40,5, 0x8391d60,5, 0x8391d80,5, 0x8391da0,5, 0x8391dc0,5, 0x8391de0,5, 0x8391e00,5, 0x8391e20,5, 0x8391e40,5, 0x8391e60,5, 0x8391e80,5, 0x8391ea0,5, 0x8391ec0,5, 0x8391ee0,5, 0x8391f00,5, 0x8391f20,5, 0x8391f40,5, 0x8391f60,5, 0x8391f80,5, 0x8391fa0,5, 0x8391fc0,5, 0x8391fe0,5, 0x8392000,5, 0x8392020,5, 0x8392040,5, 0x8392060,5, 0x8392080,5, 0x83920a0,5, 0x83920c0,5, 0x83920e0,5, 0x8392100,5, 0x8392120,5, 0x8392140,5, 0x8392160,5, 0x8392180,5, 0x83921a0,5, 0x83921c0,5, 0x83921e0,5, 0x8392200,5, 0x8392220,5, 0x8392240,5, 0x8392260,5, 0x8392280,5, 0x83922a0,5, 0x83922c0,5, 0x83922e0,5, 0x8392300,5, 0x8392320,5, 0x8392340,5, 0x8392360,5, 0x8392380,5, 0x83923a0,5, 0x83923c0,5, 0x83923e0,5, 0x8392400,5, 0x8392420,5, 0x8392440,5, 0x8392460,5, 0x8392480,5, 0x83924a0,5, 0x83924c0,5, 0x83924e0,5, 0x8392500,5, 0x8392520,5, 0x8392540,5, 0x8392560,5, 0x8392580,5, 0x83925a0,5, 0x83925c0,5, 0x83925e0,5, 0x8392600,5, 0x8392620,5, 0x8392640,5, 0x8392660,5, 0x8392680,5, 0x83926a0,5, 0x83926c0,5, 0x83926e0,5, 0x8392700,5, 0x8392720,5, 0x8392740,5, 0x8392760,5, 0x8392780,5, 0x83927a0,5, 0x83927c0,5, 0x83927e0,5, 0x8392800,5, 0x8392820,5, 0x8392840,5, 0x8392860,5, 0x8392880,5, 0x83928a0,5, 0x83928c0,5, 0x83928e0,5, 0x8392900,5, 0x8392920,5, 0x8392940,5, 0x8392960,5, 0x8392980,5, 0x83929a0,5, 0x83929c0,5, 0x83929e0,5, 0x8392a00,5, 0x8392a20,5, 0x8392a40,5, 0x8392a60,5, 0x8392a80,5, 0x8392aa0,5, 0x8392ac0,5, 0x8392ae0,5, 0x8392b00,5, 0x8392b20,5, 0x8392b40,5, 0x8392b60,5, 0x8392b80,5, 0x8392ba0,5, 0x8392bc0,5, 0x8392be0,5, 0x8392c00,5, 0x8392c20,5, 0x8392c40,5, 0x8392c60,5, 0x8392c80,5, 0x8392ca0,5, 0x8392cc0,5, 0x8392ce0,5, 0x8392d00,5, 0x8392d20,5, 0x8392d40,5, 0x8392d60,5, 0x8392d80,5, 0x8392da0,5, 0x8392dc0,5, 0x8392de0,5, 0x8392e00,5, 0x8392e20,5, 0x8392e40,5, 0x8392e60,5, 0x8392e80,5, 0x8392ea0,5, 0x8392ec0,5, 0x8392ee0,5, 0x8392f00,5, 0x8392f20,5, 0x8392f40,5, 0x8392f60,5, 0x8392f80,5, 0x8392fa0,5, 0x8392fc0,5, 0x8392fe0,5, 0x8393000,5, 0x8393020,5, 0x8393040,5, 0x8393060,5, 0x8393080,5, 0x83930a0,5, 0x83930c0,5, 0x83930e0,5, 0x8393100,5, 0x8393120,5, 0x8393140,5, 0x8393160,5, 0x8393180,5, 0x83931a0,5, 0x83931c0,5, 0x83931e0,5, 0x8393200,5, 0x8393220,5, 0x8393240,5, 0x8393260,5, 0x8393280,5, 0x83932a0,5, 0x83932c0,5, 0x83932e0,5, 0x8393300,5, 0x8393320,5, 0x8393340,5, 0x8393360,5, 0x8393380,5, 0x83933a0,5, 0x83933c0,5, 0x83933e0,5, 0x8393400,5, 0x8393420,5, 0x8393440,5, 0x8393460,5, 0x8393480,5, 0x83934a0,5, 0x83934c0,5, 0x83934e0,5, 0x8393500,5, 0x8393520,5, 0x8393540,5, 0x8393560,5, 0x8393580,5, 0x83935a0,5, 0x83935c0,5, 0x83935e0,5, 0x8393600,5, 0x8393620,5, 0x8393640,5, 0x8393660,5, 0x8393680,5, 0x83936a0,5, 0x83936c0,5, 0x83936e0,5, 0x8393700,5, 0x8393720,5, 0x8393740,5, 0x8393760,5, 0x8393780,5, 0x83937a0,5, 0x83937c0,5, 0x83937e0,5, 0x8393800,5, 0x8393820,5, 0x8393840,5, 0x8393860,5, 0x8393880,5, 0x83938a0,5, 0x83938c0,5, 0x83938e0,5, 0x8393900,5, 0x8393920,5, 0x8393940,5, 0x8393960,5, 0x8393980,5, 0x83939a0,5, 0x83939c0,5, 0x83939e0,5, 0x8393a00,5, 0x8393a20,5, 0x8393a40,5, 0x8393a60,5, 0x8393a80,5, 0x8393aa0,5, 0x8393ac0,5, 0x8393ae0,5, 0x8393b00,5, 0x8393b20,5, 0x8393b40,5, 0x8393b60,5, 0x8393b80,5, 0x8393ba0,5, 0x8393bc0,5, 0x8393be0,5, 0x8393c00,5, 0x8393c20,5, 0x8393c40,5, 0x8393c60,5, 0x8393c80,5, 0x8393ca0,5, 0x8393cc0,5, 0x8393ce0,5, 0x8393d00,5, 0x8393d20,5, 0x8393d40,5, 0x8393d60,5, 0x8393d80,5, 0x8393da0,5, 0x8393dc0,5, 0x8393de0,5, 0x8393e00,5, 0x8393e20,5, 0x8393e40,5, 0x8393e60,5, 0x8393e80,5, 0x8393ea0,5, 0x8393ec0,5, 0x8393ee0,5, 0x8393f00,5, 0x8393f20,5, 0x8393f40,5, 0x8393f60,5, 0x8393f80,5, 0x8393fa0,5, 0x8393fc0,5, 0x8393fe0,5, 0x8394000,5, 0x8394020,5, 0x8394040,5, 0x8394060,5, 0x8394080,5, 0x83940a0,5, 0x83940c0,5, 0x83940e0,5, 0x8394100,5, 0x8394120,5, 0x8394140,5, 0x8394160,5, 0x8394180,5, 0x83941a0,5, 0x83941c0,5, 0x83941e0,5, 0x8394200,5, 0x8394220,5, 0x8394240,5, 0x8394260,5, 0x8394280,5, 0x83942a0,5, 0x83942c0,5, 0x83942e0,5, 0x8394300,5, 0x8394320,5, 0x8394340,5, 0x8394360,5, 0x8394380,5, 0x83943a0,5, 0x83943c0,5, 0x83943e0,5, 0x8394400,5, 0x8394420,5, 0x8394440,5, 0x8394460,5, 0x8394480,5, 0x83944a0,5, 0x83944c0,5, 0x83944e0,5, 0x8394500,5, 0x8394520,5, 0x8394540,5, 0x8394560,5, 0x8394580,5, 0x83945a0,5, 0x83945c0,5, 0x83945e0,5, 0x8394600,5, 0x8394620,5, 0x8394640,5, 0x8394660,5, 0x8394680,5, 0x83946a0,5, 0x83946c0,5, 0x83946e0,5, 0x8394700,5, 0x8394720,5, 0x8394740,5, 0x8394760,5, 0x8394780,5, 0x83947a0,5, 0x83947c0,5, 0x83947e0,5, 0x8394800,5, 0x8394820,5, 0x8394840,5, 0x8394860,5, 0x8394880,5, 0x83948a0,5, 0x83948c0,5, 0x83948e0,5, 0x8394900,5, 0x8394920,5, 0x8394940,5, 0x8394960,5, 0x8394980,5, 0x83949a0,5, 0x83949c0,5, 0x83949e0,5, 0x8394a00,5, 0x8394a20,5, 0x8394a40,5, 0x8394a60,5, 0x8394a80,5, 0x8394aa0,5, 0x8394ac0,5, 0x8394ae0,5, 0x8394b00,5, 0x8394b20,5, 0x8394b40,5, 0x8394b60,5, 0x8394b80,5, 0x8394ba0,5, 0x8394bc0,5, 0x8394be0,5, 0x8394c00,5, 0x8394c20,5, 0x8394c40,5, 0x8394c60,5, 0x8394c80,5, 0x8394ca0,5, 0x8394cc0,5, 0x8394ce0,5, 0x8394d00,5, 0x8394d20,5, 0x8394d40,5, 0x8394d60,5, 0x8394d80,5, 0x8394da0,5, 0x8394dc0,5, 0x8394de0,5, 0x8394e00,5, 0x8394e20,5, 0x8394e40,5, 0x8394e60,5, 0x8394e80,5, 0x8394ea0,5, 0x8394ec0,5, 0x8394ee0,5, 0x8394f00,5, 0x8394f20,5, 0x8394f40,5, 0x8394f60,5, 0x8394f80,5, 0x8394fa0,5, 0x8394fc0,5, 0x8394fe0,5, 0x8395000,5, 0x8395020,5, 0x8395040,5, 0x8395060,5, 0x8395080,5, 0x83950a0,5, 0x83950c0,5, 0x83950e0,5, 0x8395100,5, 0x8395120,5, 0x8395140,5, 0x8395160,5, 0x8395180,5, 0x83951a0,5, 0x83951c0,5, 0x83951e0,5, 0x8395200,5, 0x8395220,5, 0x8395240,5, 0x8395260,5, 0x8395280,5, 0x83952a0,5, 0x83952c0,5, 0x83952e0,5, 0x8395300,5, 0x8395320,5, 0x8395340,5, 0x8395360,5, 0x8395380,5, 0x83953a0,5, 0x83953c0,5, 0x83953e0,5, 0x8395400,5, 0x8395420,5, 0x8395440,5, 0x8395460,5, 0x8395480,5, 0x83954a0,5, 0x83954c0,5, 0x83954e0,5, 0x8395500,5, 0x8395520,5, 0x8395540,5, 0x8395560,5, 0x8395580,5, 0x83955a0,5, 0x83955c0,5, 0x83955e0,5, 0x8395600,5, 0x8395620,5, 0x8395640,5, 0x8395660,5, 0x8395680,5, 0x83956a0,5, 0x83956c0,5, 0x83956e0,5, 0x8395700,5, 0x8395720,5, 0x8395740,5, 0x8395760,5, 0x8395780,5, 0x83957a0,5, 0x83957c0,5, 0x83957e0,5, 0x8395800,5, 0x8395820,5, 0x8395840,5, 0x8395860,5, 0x8395880,5, 0x83958a0,5, 0x83958c0,5, 0x83958e0,5, 0x8395900,5, 0x8395920,5, 0x8395940,5, 0x8395960,5, 0x8395980,5, 0x83959a0,5, 0x83959c0,5, 0x83959e0,5, 0x8395a00,5, 0x8395a20,5, 0x8395a40,5, 0x8395a60,5, 0x8395a80,5, 0x8395aa0,5, 0x8395ac0,5, 0x8395ae0,5, 0x8395b00,5, 0x8395b20,5, 0x8395b40,5, 0x8395b60,5, 0x8395b80,5, 0x8395ba0,5, 0x8395bc0,5, 0x8395be0,5, 0x8395c00,5, 0x8395c20,5, 0x8395c40,5, 0x8395c60,5, 0x8395c80,5, 0x8395ca0,5, 0x8395cc0,5, 0x8395ce0,5, 0x8395d00,5, 0x8395d20,5, 0x8395d40,5, 0x8395d60,5, 0x8395d80,5, 0x8395da0,5, 0x8395dc0,5, 0x8395de0,5, 0x8395e00,5, 0x8395e20,5, 0x8395e40,5, 0x8395e60,5, 0x8395e80,5, 0x8395ea0,5, 0x8395ec0,5, 0x8395ee0,5, 0x8395f00,5, 0x8395f20,5, 0x8395f40,5, 0x8395f60,5, 0x8395f80,5, 0x8395fa0,5, 0x8395fc0,5, 0x8395fe0,5, 0x8396000,5, 0x8396020,5, 0x8396040,5, 0x8396060,5, 0x8396080,5, 0x83960a0,5, 0x83960c0,5, 0x83960e0,5, 0x8396100,5, 0x8396120,5, 0x8396140,5, 0x8396160,5, 0x8396180,5, 0x83961a0,5, 0x83961c0,5, 0x83961e0,5, 0x8396200,5, 0x8396220,5, 0x8396240,5, 0x8396260,5, 0x8396280,5, 0x83962a0,5, 0x83962c0,5, 0x83962e0,5, 0x8396300,5, 0x8396320,5, 0x8396340,5, 0x8396360,5, 0x8396380,5, 0x83963a0,5, 0x83963c0,5, 0x83963e0,5, 0x8396400,5, 0x8396420,5, 0x8396440,5, 0x8396460,5, 0x8396480,5, 0x83964a0,5, 0x83964c0,5, 0x83964e0,5, 0x8396500,5, 0x8396520,5, 0x8396540,5, 0x8396560,5, 0x8396580,5, 0x83965a0,5, 0x83965c0,5, 0x83965e0,5, 0x8396600,5, 0x8396620,5, 0x8396640,5, 0x8396660,5, 0x8396680,5, 0x83966a0,5, 0x83966c0,5, 0x83966e0,5, 0x8396700,5, 0x8396720,5, 0x8396740,5, 0x8396760,5, 0x8396780,5, 0x83967a0,5, 0x83967c0,5, 0x83967e0,5, 0x8396800,5, 0x8396820,5, 0x8396840,5, 0x8396860,5, 0x8396880,5, 0x83968a0,5, 0x83968c0,5, 0x83968e0,5, 0x8396900,5, 0x8396920,5, 0x8396940,5, 0x8396960,5, 0x8396980,5, 0x83969a0,5, 0x83969c0,5, 0x83969e0,5, 0x8396a00,5, 0x8396a20,5, 0x8396a40,5, 0x8396a60,5, 0x8396a80,5, 0x8396aa0,5, 0x8396ac0,5, 0x8396ae0,5, 0x8396b00,5, 0x8396b20,5, 0x8396b40,5, 0x8396b60,5, 0x8396b80,5, 0x8396ba0,5, 0x8396bc0,5, 0x8396be0,5, 0x8396c00,5, 0x8396c20,5, 0x8396c40,5, 0x8396c60,5, 0x8396c80,5, 0x8396ca0,5, 0x8396cc0,5, 0x8396ce0,5, 0x8396d00,5, 0x8396d20,5, 0x8396d40,5, 0x8396d60,5, 0x8396d80,5, 0x8396da0,5, 0x8396dc0,5, 0x8396de0,5, 0x8396e00,5, 0x8396e20,5, 0x8396e40,5, 0x8396e60,5, 0x8396e80,5, 0x8396ea0,5, 0x8396ec0,5, 0x8396ee0,5, 0x8396f00,5, 0x8396f20,5, 0x8396f40,5, 0x8396f60,5, 0x8396f80,5, 0x8396fa0,5, 0x8396fc0,5, 0x8396fe0,5, 0x8397000,5, 0x8397020,5, 0x8397040,5, 0x8397060,5, 0x8397080,5, 0x83970a0,5, 0x83970c0,5, 0x83970e0,5, 0x8397100,5, 0x8397120,5, 0x8397140,5, 0x8397160,5, 0x8397180,5, 0x83971a0,5, 0x83971c0,5, 0x83971e0,5, 0x8397200,5, 0x8397220,5, 0x8397240,5, 0x8397260,5, 0x8397280,5, 0x83972a0,5, 0x83972c0,5, 0x83972e0,5, 0x8397300,5, 0x8397320,5, 0x8397340,5, 0x8397360,5, 0x8397380,5, 0x83973a0,5, 0x83973c0,5, 0x83973e0,5, 0x8397400,5, 0x8397420,5, 0x8397440,5, 0x8397460,5, 0x8397480,5, 0x83974a0,5, 0x83974c0,5, 0x83974e0,5, 0x8397500,5, 0x8397520,5, 0x8397540,5, 0x8397560,5, 0x8397580,5, 0x83975a0,5, 0x83975c0,5, 0x83975e0,5, 0x8397600,5, 0x8397620,5, 0x8397640,5, 0x8397660,5, 0x8397680,5, 0x83976a0,5, 0x83976c0,5, 0x83976e0,5, 0x8397700,5, 0x8397720,5, 0x8397740,5, 0x8397760,5, 0x8397780,5, 0x83977a0,5, 0x83977c0,5, 0x83977e0,5, 0x8397800,5, 0x8397820,5, 0x8397840,5, 0x8397860,5, 0x8397880,5, 0x83978a0,5, 0x83978c0,5, 0x83978e0,5, 0x8397900,5, 0x8397920,5, 0x8397940,5, 0x8397960,5, 0x8397980,5, 0x83979a0,5, 0x83979c0,5, 0x83979e0,5, 0x8397a00,5, 0x8397a20,5, 0x8397a40,5, 0x8397a60,5, 0x8397a80,5, 0x8397aa0,5, 0x8397ac0,5, 0x8397ae0,5, 0x8397b00,5, 0x8397b20,5, 0x8397b40,5, 0x8397b60,5, 0x8397b80,5, 0x8397ba0,5, 0x8397bc0,5, 0x8397be0,5, 0x8397c00,5, 0x8397c20,5, 0x8397c40,5, 0x8397c60,5, 0x8397c80,5, 0x8397ca0,5, 0x8397cc0,5, 0x8397ce0,5, 0x8397d00,5, 0x8397d20,5, 0x8397d40,5, 0x8397d60,5, 0x8397d80,5, 0x8397da0,5, 0x8397dc0,5, 0x8397de0,5, 0x8397e00,5, 0x8397e20,5, 0x8397e40,5, 0x8397e60,5, 0x8397e80,5, 0x8397ea0,5, 0x8397ec0,5, 0x8397ee0,5, 0x8397f00,5, 0x8397f20,5, 0x8397f40,5, 0x8397f60,5, 0x8397f80,5, 0x8397fa0,5, 0x8397fc0,5, 0x8397fe0,5, 0x8398000,5, 0x8398020,5, 0x8398040,5, 0x8398060,5, 0x8398080,5, 0x83980a0,5, 0x83980c0,5, 0x83980e0,5, 0x8398100,5, 0x8398120,5, 0x8398140,5, 0x8398160,5, 0x8398180,5, 0x83981a0,5, 0x83981c0,5, 0x83981e0,5, 0x8398200,5, 0x8398220,5, 0x8398240,5, 0x8398260,5, 0x8398280,5, 0x83982a0,5, 0x83982c0,5, 0x83982e0,5, 0x8398300,5, 0x8398320,5, 0x8398340,5, 0x8398360,5, 0x8398380,5, 0x83983a0,5, 0x83983c0,5, 0x83983e0,5, 0x8398400,5, 0x8398420,5, 0x8398440,5, 0x8398460,5, 0x8398480,5, 0x83984a0,5, 0x83984c0,5, 0x83984e0,5, 0x8398500,5, 0x8398520,5, 0x8398540,5, 0x8398560,5, 0x8398580,5, 0x83985a0,5, 0x83985c0,5, 0x83985e0,5, 0x8398600,5, 0x8398620,5, 0x8398640,5, 0x8398660,5, 0x8398680,5, 0x83986a0,5, 0x83986c0,5, 0x83986e0,5, 0x8398700,5, 0x8398720,5, 0x8398740,5, 0x8398760,5, 0x8398780,5, 0x83987a0,5, 0x83987c0,5, 0x83987e0,5, 0x8398800,5, 0x8398820,5, 0x8398840,5, 0x8398860,5, 0x8398880,5, 0x83988a0,5, 0x83988c0,5, 0x83988e0,5, 0x8398900,5, 0x8398920,5, 0x8398940,5, 0x8398960,5, 0x8398980,5, 0x83989a0,5, 0x83989c0,5, 0x83989e0,5, 0x8398a00,5, 0x8398a20,5, 0x8398a40,5, 0x8398a60,5, 0x8398a80,5, 0x8398aa0,5, 0x8398ac0,5, 0x8398ae0,5, 0x8398b00,5, 0x8398b20,5, 0x8398b40,5, 0x8398b60,5, 0x8398b80,5, 0x8398ba0,5, 0x8398bc0,5, 0x8398be0,5, 0x8398c00,5, 0x8398c20,5, 0x8398c40,5, 0x8398c60,5, 0x8398c80,5, 0x8398ca0,5, 0x8398cc0,5, 0x8398ce0,5, 0x8398d00,5, 0x8398d20,5, 0x8398d40,5, 0x8398d60,5, 0x8398d80,5, 0x8398da0,5, 0x8398dc0,5, 0x8398de0,5, 0x8398e00,5, 0x8398e20,5, 0x8398e40,5, 0x8398e60,5, 0x8398e80,5, 0x8398ea0,5, 0x8398ec0,5, 0x8398ee0,5, 0x8398f00,5, 0x8398f20,5, 0x8398f40,5, 0x8398f60,5, 0x8398f80,5, 0x8398fa0,5, 0x8398fc0,5, 0x8398fe0,5, 0x8399000,5, 0x8399020,5, 0x8399040,5, 0x8399060,5, 0x8399080,5, 0x83990a0,5, 0x83990c0,5, 0x83990e0,5, 0x8399100,5, 0x8399120,5, 0x8399140,5, 0x8399160,5, 0x8399180,5, 0x83991a0,5, 0x83991c0,5, 0x83991e0,5, 0x8399200,5, 0x8399220,5, 0x8399240,5, 0x8399260,5, 0x8399280,5, 0x83992a0,5, 0x83992c0,5, 0x83992e0,5, 0x8399300,5, 0x8399320,5, 0x8399340,5, 0x8399360,5, 0x8399380,5, 0x83993a0,5, 0x83993c0,5, 0x83993e0,5, 0x8399400,5, 0x8399420,5, 0x8399440,5, 0x8399460,5, 0x8399480,5, 0x83994a0,5, 0x83994c0,5, 0x83994e0,5, 0x8399500,5, 0x8399520,5, 0x8399540,5, 0x8399560,5, 0x8399580,5, 0x83995a0,5, 0x83995c0,5, 0x83995e0,5, 0x8399600,5, 0x8399620,5, 0x8399640,5, 0x8399660,5, 0x8399680,5, 0x83996a0,5, 0x83996c0,5, 0x83996e0,5, 0x8399700,5, 0x8399720,5, 0x8399740,5, 0x8399760,5, 0x8399780,5, 0x83997a0,5, 0x83997c0,5, 0x83997e0,5, 0x8399800,5, 0x8399820,5, 0x8399840,5, 0x8399860,5, 0x8399880,5, 0x83998a0,5, 0x83998c0,5, 0x83998e0,5, 0x8399900,5, 0x8399920,5, 0x8399940,5, 0x8399960,5, 0x8399980,5, 0x83999a0,5, 0x83999c0,5, 0x83999e0,5, 0x8399a00,5, 0x8399a20,5, 0x8399a40,5, 0x8399a60,5, 0x8399a80,5, 0x8399aa0,5, 0x8399ac0,5, 0x8399ae0,5, 0x8399b00,5, 0x8399b20,5, 0x8399b40,5, 0x8399b60,5, 0x8399b80,5, 0x8399ba0,5, 0x8399bc0,5, 0x8399be0,5, 0x8399c00,5, 0x8399c20,5, 0x8399c40,5, 0x8399c60,5, 0x8399c80,5, 0x8399ca0,5, 0x8399cc0,5, 0x8399ce0,5, 0x8399d00,5, 0x8399d20,5, 0x8399d40,5, 0x8399d60,5, 0x8399d80,5, 0x8399da0,5, 0x8399dc0,5, 0x8399de0,5, 0x8399e00,5, 0x8399e20,5, 0x8399e40,5, 0x8399e60,5, 0x8399e80,5, 0x8399ea0,5, 0x8399ec0,5, 0x8399ee0,5, 0x8399f00,5, 0x8399f20,5, 0x8399f40,5, 0x8399f60,5, 0x8399f80,5, 0x8399fa0,5, 0x8399fc0,5, 0x8399fe0,5, 0x839a000,5, 0x839a020,5, 0x839a040,5, 0x839a060,5, 0x839a080,5, 0x839a0a0,5, 0x839a0c0,5, 0x839a0e0,5, 0x839a100,5, 0x839a120,5, 0x839a140,5, 0x839a160,5, 0x839a180,5, 0x839a1a0,5, 0x839a1c0,5, 0x839a1e0,5, 0x839a200,5, 0x839a220,5, 0x839a240,5, 0x839a260,5, 0x839a280,5, 0x839a2a0,5, 0x839a2c0,5, 0x839a2e0,5, 0x839a300,5, 0x839a320,5, 0x839a340,5, 0x839a360,5, 0x839a380,5, 0x839a3a0,5, 0x839a3c0,5, 0x839a3e0,5, 0x839a400,5, 0x839a420,5, 0x839a440,5, 0x839a460,5, 0x839a480,5, 0x839a4a0,5, 0x839a4c0,5, 0x839a4e0,5, 0x839a500,5, 0x839a520,5, 0x839a540,5, 0x839a560,5, 0x839a580,5, 0x839a5a0,5, 0x839a5c0,5, 0x839a5e0,5, 0x839a600,5, 0x839a620,5, 0x839a640,5, 0x839a660,5, 0x839a680,5, 0x839a6a0,5, 0x839a6c0,5, 0x839a6e0,5, 0x839a700,5, 0x839a720,5, 0x839a740,5, 0x839a760,5, 0x839a780,5, 0x839a7a0,5, 0x839a7c0,5, 0x839a7e0,5, 0x839a800,5, 0x839a820,5, 0x839a840,5, 0x839a860,5, 0x839a880,5, 0x839a8a0,5, 0x839a8c0,5, 0x839a8e0,5, 0x839a900,5, 0x839a920,5, 0x839a940,5, 0x839a960,5, 0x839a980,5, 0x839a9a0,5, 0x839a9c0,5, 0x839a9e0,5, 0x839aa00,5, 0x839aa20,5, 0x839aa40,5, 0x839aa60,5, 0x839aa80,5, 0x839aaa0,5, 0x839aac0,5, 0x839aae0,5, 0x839ab00,5, 0x839ab20,5, 0x839ab40,5, 0x839ab60,5, 0x839ab80,5, 0x839aba0,5, 0x839abc0,5, 0x839abe0,5, 0x839ac00,5, 0x839ac20,5, 0x839ac40,5, 0x839ac60,5, 0x839ac80,5, 0x839aca0,5, 0x839acc0,5, 0x839ace0,5, 0x839ad00,5, 0x839ad20,5, 0x839ad40,5, 0x839ad60,5, 0x839ad80,5, 0x839ada0,5, 0x839adc0,5, 0x839ade0,5, 0x839ae00,5, 0x839ae20,5, 0x839ae40,5, 0x839ae60,5, 0x839ae80,5, 0x839aea0,5, 0x839aec0,5, 0x839aee0,5, 0x839af00,5, 0x839af20,5, 0x839af40,5, 0x839af60,5, 0x839af80,5, 0x839afa0,5, 0x839afc0,5, 0x839afe0,5, 0x839b000,5, 0x839b020,5, 0x839b040,5, 0x839b060,5, 0x839b080,5, 0x839b0a0,5, 0x839b0c0,5, 0x839b0e0,5, 0x839b100,5, 0x839b120,5, 0x839b140,5, 0x839b160,5, 0x839b180,5, 0x839b1a0,5, 0x839b1c0,5, 0x839b1e0,5, 0x839b200,5, 0x839b220,5, 0x839b240,5, 0x839b260,5, 0x839b280,5, 0x839b2a0,5, 0x839b2c0,5, 0x839b2e0,5, 0x839b300,5, 0x839b320,5, 0x839b340,5, 0x839b360,5, 0x839b380,5, 0x839b3a0,5, 0x839b3c0,5, 0x839b3e0,5, 0x839b400,5, 0x839b420,5, 0x839b440,5, 0x839b460,5, 0x839b480,5, 0x839b4a0,5, 0x839b4c0,5, 0x839b4e0,5, 0x839b500,5, 0x839b520,5, 0x839b540,5, 0x839b560,5, 0x839b580,5, 0x839b5a0,5, 0x839b5c0,5, 0x839b5e0,5, 0x839b600,5, 0x839b620,5, 0x839b640,5, 0x839b660,5, 0x839b680,5, 0x839b6a0,5, 0x839b6c0,5, 0x839b6e0,5, 0x839b700,5, 0x839b720,5, 0x839b740,5, 0x839b760,5, 0x839b780,5, 0x839b7a0,5, 0x839b7c0,5, 0x839b7e0,5, 0x839b800,5, 0x839b820,5, 0x839b840,5, 0x839b860,5, 0x839b880,5, 0x839b8a0,5, 0x839b8c0,5, 0x839b8e0,5, 0x839b900,5, 0x839b920,5, 0x839b940,5, 0x839b960,5, 0x839b980,5, 0x839b9a0,5, 0x839b9c0,5, 0x839b9e0,5, 0x839ba00,5, 0x839ba20,5, 0x839ba40,5, 0x839ba60,5, 0x839ba80,5, 0x839baa0,5, 0x839bac0,5, 0x839bae0,5, 0x839bb00,5, 0x839bb20,5, 0x839bb40,5, 0x839bb60,5, 0x839bb80,5, 0x839bba0,5, 0x839bbc0,5, 0x839bbe0,5, 0x839bc00,5, 0x839bc20,5, 0x839bc40,5, 0x839bc60,5, 0x839bc80,5, 0x839bca0,5, 0x839bcc0,5, 0x839bce0,5, 0x839bd00,5, 0x839bd20,5, 0x839bd40,5, 0x839bd60,5, 0x839bd80,5, 0x839bda0,5, 0x839bdc0,5, 0x839bde0,5, 0x839be00,5, 0x839be20,5, 0x839be40,5, 0x839be60,5, 0x839be80,5, 0x839bea0,5, 0x839bec0,5, 0x839bee0,5, 0x839bf00,5, 0x839bf20,5, 0x839bf40,5, 0x839bf60,5, 0x839bf80,5, 0x839bfa0,5, 0x839bfc0,5, 0x839bfe0,5, 0x839c000,5, 0x839c020,5, 0x839c040,5, 0x839c060,5, 0x839c080,5, 0x839c0a0,5, 0x839c0c0,5, 0x839c0e0,5, 0x839c100,5, 0x839c120,5, 0x839c140,5, 0x839c160,5, 0x839c180,5, 0x839c1a0,5, 0x839c1c0,5, 0x839c1e0,5, 0x839c200,5, 0x839c220,5, 0x839c240,5, 0x839c260,5, 0x839c280,5, 0x839c2a0,5, 0x839c2c0,5, 0x839c2e0,5, 0x839c300,5, 0x839c320,5, 0x839c340,5, 0x839c360,5, 0x839c380,5, 0x839c3a0,5, 0x839c3c0,5, 0x839c3e0,5, 0x839c400,5, 0x839c420,5, 0x839c440,5, 0x839c460,5, 0x839c480,5, 0x839c4a0,5, 0x839c4c0,5, 0x839c4e0,5, 0x839c500,5, 0x839c520,5, 0x839c540,5, 0x839c560,5, 0x839c580,5, 0x839c5a0,5, 0x839c5c0,5, 0x839c5e0,5, 0x839c600,5, 0x839c620,5, 0x839c640,5, 0x839c660,5, 0x839c680,5, 0x839c6a0,5, 0x839c6c0,5, 0x839c6e0,5, 0x839c700,5, 0x839c720,5, 0x839c740,5, 0x839c760,5, 0x839c780,5, 0x839c7a0,5, 0x839c7c0,5, 0x839c7e0,5, 0x839c800,5, 0x839c820,5, 0x839c840,5, 0x839c860,5, 0x839c880,5, 0x839c8a0,5, 0x839c8c0,5, 0x839c8e0,5, 0x839c900,5, 0x839c920,5, 0x839c940,5, 0x839c960,5, 0x839c980,5, 0x839c9a0,5, 0x839c9c0,5, 0x839c9e0,5, 0x839ca00,5, 0x839ca20,5, 0x839ca40,5, 0x839ca60,5, 0x839ca80,5, 0x839caa0,5, 0x839cac0,5, 0x839cae0,5, 0x839cb00,5, 0x839cb20,5, 0x839cb40,5, 0x839cb60,5, 0x839cb80,5, 0x839cba0,5, 0x839cbc0,5, 0x839cbe0,5, 0x839cc00,5, 0x839cc20,5, 0x839cc40,5, 0x839cc60,5, 0x839cc80,5, 0x839cca0,5, 0x839ccc0,5, 0x839cce0,5, 0x839cd00,5, 0x839cd20,5, 0x839cd40,5, 0x839cd60,5, 0x839cd80,5, 0x839cda0,5, 0x839cdc0,5, 0x839cde0,5, 0x839ce00,5, 0x839ce20,5, 0x839ce40,5, 0x839ce60,5, 0x839ce80,5, 0x839cea0,5, 0x839cec0,5, 0x839cee0,5, 0x839cf00,5, 0x839cf20,5, 0x839cf40,5, 0x839cf60,5, 0x839cf80,5, 0x839cfa0,5, 0x839cfc0,5, 0x839cfe0,5, 0x839d000,5, 0x839d020,5, 0x839d040,5, 0x839d060,5, 0x839d080,5, 0x839d0a0,5, 0x839d0c0,5, 0x839d0e0,5, 0x839d100,5, 0x839d120,5, 0x839d140,5, 0x839d160,5, 0x839d180,5, 0x839d1a0,5, 0x839d1c0,5, 0x839d1e0,5, 0x839d200,5, 0x839d220,5, 0x839d240,5, 0x839d260,5, 0x839d280,5, 0x839d2a0,5, 0x839d2c0,5, 0x839d2e0,5, 0x839d300,5, 0x839d320,5, 0x839d340,5, 0x839d360,5, 0x839d380,5, 0x839d3a0,5, 0x839d3c0,5, 0x839d3e0,5, 0x839d400,5, 0x839d420,5, 0x839d440,5, 0x839d460,5, 0x839d480,5, 0x839d4a0,5, 0x839d4c0,5, 0x839d4e0,5, 0x839d500,5, 0x839d520,5, 0x839d540,5, 0x839d560,5, 0x839d580,5, 0x839d5a0,5, 0x839d5c0,5, 0x839d5e0,5, 0x839d600,5, 0x839d620,5, 0x839d640,5, 0x839d660,5, 0x839d680,5, 0x839d6a0,5, 0x839d6c0,5, 0x839d6e0,5, 0x839d700,5, 0x839d720,5, 0x839d740,5, 0x839d760,5, 0x839d780,5, 0x839d7a0,5, 0x839d7c0,5, 0x839d7e0,5, 0x839d800,5, 0x839d820,5, 0x839d840,5, 0x839d860,5, 0x839d880,5, 0x839d8a0,5, 0x839d8c0,5, 0x839d8e0,5, 0x839d900,5, 0x839d920,5, 0x839d940,5, 0x839d960,5, 0x839d980,5, 0x839d9a0,5, 0x839d9c0,5, 0x839d9e0,5, 0x839da00,5, 0x839da20,5, 0x839da40,5, 0x839da60,5, 0x839da80,5, 0x839daa0,5, 0x839dac0,5, 0x839dae0,5, 0x839db00,5, 0x839db20,5, 0x839db40,5, 0x839db60,5, 0x839db80,5, 0x839dba0,5, 0x839dbc0,5, 0x839dbe0,5, 0x839dc00,5, 0x839dc20,5, 0x839dc40,5, 0x839dc60,5, 0x839dc80,5, 0x839dca0,5, 0x839dcc0,5, 0x839dce0,5, 0x839dd00,5, 0x839dd20,5, 0x839dd40,5, 0x839dd60,5, 0x839dd80,5, 0x839dda0,5, 0x839ddc0,5, 0x839dde0,5, 0x839de00,5, 0x839de20,5, 0x839de40,5, 0x839de60,5, 0x839de80,5, 0x839dea0,5, 0x839dec0,5, 0x839dee0,5, 0x839df00,5, 0x839df20,5, 0x839df40,5, 0x839df60,5, 0x839df80,5, 0x839dfa0,5, 0x839dfc0,5, 0x839dfe0,5, 0x839e000,5, 0x839e020,5, 0x839e040,5, 0x839e060,5, 0x839e080,5, 0x839e0a0,5, 0x839e0c0,5, 0x839e0e0,5, 0x839e100,5, 0x839e120,5, 0x839e140,5, 0x839e160,5, 0x839e180,5, 0x839e1a0,5, 0x839e1c0,5, 0x839e1e0,5, 0x839e200,5, 0x839e220,5, 0x839e240,5, 0x839e260,5, 0x839e280,5, 0x839e2a0,5, 0x839e2c0,5, 0x839e2e0,5, 0x839e300,5, 0x839e320,5, 0x839e340,5, 0x839e360,5, 0x839e380,5, 0x839e3a0,5, 0x839e3c0,5, 0x839e3e0,5, 0x839e400,5, 0x839e420,5, 0x839e440,5, 0x839e460,5, 0x839e480,5, 0x839e4a0,5, 0x839e4c0,5, 0x839e4e0,5, 0x839e500,5, 0x839e520,5, 0x839e540,5, 0x839e560,5, 0x839e580,5, 0x839e5a0,5, 0x839e5c0,5, 0x839e5e0,5, 0x839e600,5, 0x839e620,5, 0x839e640,5, 0x839e660,5, 0x839e680,5, 0x839e6a0,5, 0x839e6c0,5, 0x839e6e0,5, 0x839e700,5, 0x839e720,5, 0x839e740,5, 0x839e760,5, 0x839e780,5, 0x839e7a0,5, 0x839e7c0,5, 0x839e7e0,5, 0x839e800,5, 0x839e820,5, 0x839e840,5, 0x839e860,5, 0x839e880,5, 0x839e8a0,5, 0x839e8c0,5, 0x839e8e0,5, 0x839e900,5, 0x839e920,5, 0x839e940,5, 0x839e960,5, 0x839e980,5, 0x839e9a0,5, 0x839e9c0,5, 0x839e9e0,5, 0x839ea00,5, 0x839ea20,5, 0x839ea40,5, 0x839ea60,5, 0x839ea80,5, 0x839eaa0,5, 0x839eac0,5, 0x839eae0,5, 0x839eb00,5, 0x839eb20,5, 0x839eb40,5, 0x839eb60,5, 0x839eb80,5, 0x839eba0,5, 0x839ebc0,5, 0x839ebe0,5, 0x839ec00,5, 0x839ec20,5, 0x839ec40,5, 0x839ec60,5, 0x839ec80,5, 0x839eca0,5, 0x839ecc0,5, 0x839ece0,5, 0x839ed00,5, 0x839ed20,5, 0x839ed40,5, 0x839ed60,5, 0x839ed80,5, 0x839eda0,5, 0x839edc0,5, 0x839ede0,5, 0x839ee00,5, 0x839ee20,5, 0x839ee40,5, 0x839ee60,5, 0x839ee80,5, 0x839eea0,5, 0x839eec0,5, 0x839eee0,5, 0x839ef00,5, 0x839ef20,5, 0x839ef40,5, 0x839ef60,5, 0x839ef80,5, 0x839efa0,5, 0x839efc0,5, 0x839efe0,5, 0x839f000,5, 0x839f020,5, 0x839f040,5, 0x839f060,5, 0x839f080,5, 0x839f0a0,5, 0x839f0c0,5, 0x839f0e0,5, 0x839f100,5, 0x839f120,5, 0x839f140,5, 0x839f160,5, 0x839f180,5, 0x839f1a0,5, 0x839f1c0,5, 0x839f1e0,5, 0x839f200,5, 0x839f220,5, 0x839f240,5, 0x839f260,5, 0x839f280,5, 0x839f2a0,5, 0x839f2c0,5, 0x839f2e0,5, 0x839f300,5, 0x839f320,5, 0x839f340,5, 0x839f360,5, 0x839f380,5, 0x839f3a0,5, 0x839f3c0,5, 0x839f3e0,5, 0x839f400,5, 0x839f420,5, 0x839f440,5, 0x839f460,5, 0x839f480,5, 0x839f4a0,5, 0x839f4c0,5, 0x839f4e0,5, 0x839f500,5, 0x839f520,5, 0x839f540,5, 0x839f560,5, 0x839f580,5, 0x839f5a0,5, 0x839f5c0,5, 0x839f5e0,5, 0x839f600,5, 0x839f620,5, 0x839f640,5, 0x839f660,5, 0x839f680,5, 0x839f6a0,5, 0x839f6c0,5, 0x839f6e0,5, 0x839f700,5, 0x839f720,5, 0x839f740,5, 0x839f760,5, 0x839f780,5, 0x839f7a0,5, 0x839f7c0,5, 0x839f7e0,5, 0x839f800,5, 0x839f820,5, 0x839f840,5, 0x839f860,5, 0x839f880,5, 0x839f8a0,5, 0x839f8c0,5, 0x839f8e0,5, 0x839f900,5, 0x839f920,5, 0x839f940,5, 0x839f960,5, 0x839f980,5, 0x839f9a0,5, 0x839f9c0,5, 0x839f9e0,5, 0x839fa00,5, 0x839fa20,5, 0x839fa40,5, 0x839fa60,5, 0x839fa80,5, 0x839faa0,5, 0x839fac0,5, 0x839fae0,5, 0x839fb00,5, 0x839fb20,5, 0x839fb40,5, 0x839fb60,5, 0x839fb80,5, 0x839fba0,5, 0x839fbc0,5, 0x839fbe0,5, 0x839fc00,5, 0x839fc20,5, 0x839fc40,5, 0x839fc60,5, 0x839fc80,5, 0x839fca0,5, 0x839fcc0,5, 0x839fce0,5, 0x839fd00,5, 0x839fd20,5, 0x839fd40,5, 0x839fd60,5, 0x839fd80,5, 0x839fda0,5, 0x839fdc0,5, 0x839fde0,5, 0x839fe00,5, 0x839fe20,5, 0x839fe40,5, 0x839fe60,5, 0x839fe80,5, 0x839fea0,5, 0x839fec0,5, 0x839fee0,5, 0x839ff00,5, 0x839ff20,5, 0x839ff40,5, 0x839ff60,5, 0x839ff80,5, 0x839ffa0,5, 0x839ffc0,5, 0x839ffe0,5, 0x83a0000,5, 0x83a0020,5, 0x83a0040,5, 0x83a0060,5, 0x83a0080,5, 0x83a00a0,5, 0x83a00c0,5, 0x83a00e0,5, 0x83a0100,5, 0x83a0120,5, 0x83a0140,5, 0x83a0160,5, 0x83a0180,5, 0x83a01a0,5, 0x83a01c0,5, 0x83a01e0,5, 0x83a0200,5, 0x83a0220,5, 0x83a0240,5, 0x83a0260,5, 0x83a0280,5, 0x83a02a0,5, 0x83a02c0,5, 0x83a02e0,5, 0x83a0300,5, 0x83a0320,5, 0x83a0340,5, 0x83a0360,5, 0x83a0380,5, 0x83a03a0,5, 0x83a03c0,5, 0x83a03e0,5, 0x83a0400,5, 0x83a0420,5, 0x83a0440,5, 0x83a0460,5, 0x83a0480,5, 0x83a04a0,5, 0x83a04c0,5, 0x83a04e0,5, 0x83a0500,5, 0x83a0520,5, 0x83a0540,5, 0x83a0560,5, 0x83a0580,5, 0x83a05a0,5, 0x83a05c0,5, 0x83a05e0,5, 0x83a0600,5, 0x83a0620,5, 0x83a0640,5, 0x83a0660,5, 0x83a0680,5, 0x83a06a0,5, 0x83a06c0,5, 0x83a06e0,5, 0x83a0700,5, 0x83a0720,5, 0x83a0740,5, 0x83a0760,5, 0x83a0780,5, 0x83a07a0,5, 0x83a07c0,5, 0x83a07e0,5, 0x83a0800,5, 0x83a0820,5, 0x83a0840,5, 0x83a0860,5, 0x83a0880,5, 0x83a08a0,5, 0x83a08c0,5, 0x83a08e0,5, 0x83a0900,5, 0x83a0920,5, 0x83a0940,5, 0x83a0960,5, 0x83a0980,5, 0x83a09a0,5, 0x83a09c0,5, 0x83a09e0,5, 0x83a0a00,5, 0x83a0a20,5, 0x83a0a40,5, 0x83a0a60,5, 0x83a0a80,5, 0x83a0aa0,5, 0x83a0ac0,5, 0x83a0ae0,5, 0x83a0b00,5, 0x83a0b20,5, 0x83a0b40,5, 0x83a0b60,5, 0x83a0b80,5, 0x83a0ba0,5, 0x83a0bc0,5, 0x83a0be0,5, 0x83a0c00,5, 0x83a0c20,5, 0x83a0c40,5, 0x83a0c60,5, 0x83a0c80,5, 0x83a0ca0,5, 0x83a0cc0,5, 0x83a0ce0,5, 0x83a0d00,5, 0x83a0d20,5, 0x83a0d40,5, 0x83a0d60,5, 0x83a0d80,5, 0x83a0da0,5, 0x83a0dc0,5, 0x83a0de0,5, 0x83a0e00,5, 0x83a0e20,5, 0x83a0e40,5, 0x83a0e60,5, 0x83a0e80,5, 0x83a0ea0,5, 0x83a0ec0,5, 0x83a0ee0,5, 0x83a0f00,5, 0x83a0f20,5, 0x83a0f40,5, 0x83a0f60,5, 0x83a0f80,5, 0x83a0fa0,5, 0x83a0fc0,5, 0x83a0fe0,5, 0x83a1000,5, 0x83a1020,5, 0x83a1040,5, 0x83a1060,5, 0x83a1080,5, 0x83a10a0,5, 0x83a10c0,5, 0x83a10e0,5, 0x83a1100,5, 0x83a1120,5, 0x83a1140,5, 0x83a1160,5, 0x83a1180,5, 0x83a11a0,5, 0x83a11c0,5, 0x83a11e0,5, 0x83a1200,5, 0x83a1220,5, 0x83a1240,5, 0x83a1260,5, 0x83a1280,5, 0x83a12a0,5, 0x83a12c0,5, 0x83a12e0,5, 0x83a1300,5, 0x83a1320,5, 0x83a1340,5, 0x83a1360,5, 0x83a1380,5, 0x83a13a0,5, 0x83a13c0,5, 0x83a13e0,5, 0x83a1400,5, 0x83a1420,5, 0x83a1440,5, 0x83a1460,5, 0x83a1480,5, 0x83a14a0,5, 0x83a14c0,5, 0x83a14e0,5, 0x83a1500,5, 0x83a1520,5, 0x83a1540,5, 0x83a1560,5, 0x83a1580,5, 0x83a15a0,5, 0x83a15c0,5, 0x83a15e0,5, 0x83a1600,5, 0x83a1620,5, 0x83a1640,5, 0x83a1660,5, 0x83a1680,5, 0x83a16a0,5, 0x83a16c0,5, 0x83a16e0,5, 0x83a1700,5, 0x83a1720,5, 0x83a1740,5, 0x83a1760,5, 0x83a1780,5, 0x83a17a0,5, 0x83a17c0,5, 0x83a17e0,5, 0x83a1800,5, 0x83a1820,5, 0x83a1840,5, 0x83a1860,5, 0x83a1880,5, 0x83a18a0,5, 0x83a18c0,5, 0x83a18e0,5, 0x83a1900,5, 0x83a1920,5, 0x83a1940,5, 0x83a1960,5, 0x83a1980,5, 0x83a19a0,5, 0x83a19c0,5, 0x83a19e0,5, 0x83a1a00,5, 0x83a1a20,5, 0x83a1a40,5, 0x83a1a60,5, 0x83a1a80,5, 0x83a1aa0,5, 0x83a1ac0,5, 0x83a1ae0,5, 0x83a1b00,5, 0x83a1b20,5, 0x83a1b40,5, 0x83a1b60,5, 0x83a1b80,5, 0x83a1ba0,5, 0x83a1bc0,5, 0x83a1be0,5, 0x83a1c00,5, 0x83a1c20,5, 0x83a1c40,5, 0x83a1c60,5, 0x83a1c80,5, 0x83a1ca0,5, 0x83a1cc0,5, 0x83a1ce0,5, 0x83a1d00,5, 0x83a1d20,5, 0x83a1d40,5, 0x83a1d60,5, 0x83a1d80,5, 0x83a1da0,5, 0x83a1dc0,5, 0x83a1de0,5, 0x83a1e00,5, 0x83a1e20,5, 0x83a1e40,5, 0x83a1e60,5, 0x83a1e80,5, 0x83a1ea0,5, 0x83a1ec0,5, 0x83a1ee0,5, 0x83a1f00,5, 0x83a1f20,5, 0x83a1f40,5, 0x83a1f60,5, 0x83a1f80,5, 0x83a1fa0,5, 0x83a1fc0,5, 0x83a1fe0,5, 0x83a2000,5, 0x83a2020,5, 0x83a2040,5, 0x83a2060,5, 0x83a2080,5, 0x83a20a0,5, 0x83a20c0,5, 0x83a20e0,5, 0x83a2100,5, 0x83a2120,5, 0x83a2140,5, 0x83a2160,5, 0x83a2180,5, 0x83a21a0,5, 0x83a21c0,5, 0x83a21e0,5, 0x83a2200,5, 0x83a2220,5, 0x83a2240,5, 0x83a2260,5, 0x83a2280,5, 0x83a22a0,5, 0x83a22c0,5, 0x83a22e0,5, 0x83a2300,5, 0x83a2320,5, 0x83a2340,5, 0x83a2360,5, 0x83a2380,5, 0x83a23a0,5, 0x83a23c0,5, 0x83a23e0,5, 0x83a2400,5, 0x83a2420,5, 0x83a2440,5, 0x83a2460,5, 0x83a2480,5, 0x83a24a0,5, 0x83a24c0,5, 0x83a24e0,5, 0x83a2500,5, 0x83a2520,5, 0x83a2540,5, 0x83a2560,5, 0x83a2580,5, 0x83a25a0,5, 0x83a25c0,5, 0x83a25e0,5, 0x83a2600,5, 0x83a2620,5, 0x83a2640,5, 0x83a2660,5, 0x83a2680,5, 0x83a26a0,5, 0x83a26c0,5, 0x83a26e0,5, 0x83a2700,5, 0x83a2720,5, 0x83a2740,5, 0x83a2760,5, 0x83a2780,5, 0x83a27a0,5, 0x83a27c0,5, 0x83a27e0,5, 0x83a2800,5, 0x83a2820,5, 0x83a2840,5, 0x83a2860,5, 0x83a2880,5, 0x83a28a0,5, 0x83a28c0,5, 0x83a28e0,5, 0x83a2900,5, 0x83a2920,5, 0x83a2940,5, 0x83a2960,5, 0x83a2980,5, 0x83a29a0,5, 0x83a29c0,5, 0x83a29e0,5, 0x83a2a00,5, 0x83a2a20,5, 0x83a2a40,5, 0x83a2a60,5, 0x83a2a80,5, 0x83a2aa0,5, 0x83a2ac0,5, 0x83a2ae0,5, 0x83a2b00,5, 0x83a2b20,5, 0x83a2b40,5, 0x83a2b60,5, 0x83a2b80,5, 0x83a2ba0,5, 0x83a2bc0,5, 0x83a2be0,5, 0x83a2c00,5, 0x83a2c20,5, 0x83c0000,2, 0x83c0040,9, 0x83c0080,7, 0x83c00a0,7, 0x83c00c0,3, 0x8400000,6, 0x8400020,6, 0x8400040,6, 0x8400060,6, 0x8400080,6, 0x84000a0,6, 0x84000c0,6, 0x84000e0,6, 0x8400100,6, 0x8400120,6, 0x8400140,6, 0x8400160,6, 0x8400180,6, 0x84001a0,6, 0x84001c0,6, 0x84001e0,6, 0x8400200,6, 0x8400220,6, 0x8400240,6, 0x8400260,6, 0x8400280,6, 0x84002a0,6, 0x84002c0,6, 0x84002e0,6, 0x8400300,6, 0x8400320,6, 0x8400340,6, 0x8400360,6, 0x8400380,6, 0x84003a0,6, 0x84003c0,6, 0x84003e0,6, 0x8400400,6, 0x8400420,6, 0x8400440,6, 0x8400460,6, 0x8400480,6, 0x84004a0,6, 0x84004c0,6, 0x84004e0,6, 0x8400500,6, 0x8400520,6, 0x8400540,6, 0x8400560,6, 0x8400580,6, 0x84005a0,6, 0x84005c0,6, 0x84005e0,6, 0x8400600,6, 0x8400620,6, 0x8400640,6, 0x8400660,6, 0x8400680,6, 0x84006a0,6, 0x84006c0,6, 0x84006e0,6, 0x8400700,6, 0x8400720,6, 0x8400740,6, 0x8400760,6, 0x8400780,6, 0x84007a0,6, 0x84007c0,6, 0x84007e0,6, 0x8400800,6, 0x8400820,6, 0x8400840,6, 0x8400860,6, 0x8400880,6, 0x84008a0,6, 0x84008c0,6, 0x84008e0,6, 0x8400900,6, 0x8400920,6, 0x8400940,6, 0x8400960,6, 0x8400980,6, 0x84009a0,6, 0x84009c0,6, 0x84009e0,6, 0x8400a00,6, 0x8400a20,6, 0x8400a40,6, 0x8400a60,6, 0x8400a80,6, 0x8400aa0,6, 0x8400ac0,6, 0x8400ae0,6, 0x8400b00,6, 0x8400b20,6, 0x8400b40,6, 0x8400b60,6, 0x8400b80,6, 0x8400ba0,6, 0x8400bc0,6, 0x8400be0,6, 0x8400c00,6, 0x8400c20,6, 0x8400c40,6, 0x8400c60,6, 0x8400c80,6, 0x8400ca0,6, 0x8400cc0,6, 0x8400ce0,6, 0x8400d00,6, 0x8400d20,6, 0x8400d40,6, 0x8400d60,6, 0x8400d80,6, 0x8400da0,6, 0x8400dc0,6, 0x8400de0,6, 0x8400e00,6, 0x8400e20,6, 0x8400e40,6, 0x8400e60,6, 0x8400e80,6, 0x8400ea0,6, 0x8400ec0,6, 0x8400ee0,6, 0x8400f00,6, 0x8400f20,6, 0x8400f40,6, 0x8400f60,6, 0x8400f80,6, 0x8400fa0,6, 0x8400fc0,6, 0x8400fe0,6, 0x8401000,6, 0x8401020,6, 0x8401040,6, 0x8401060,6, 0x8401080,6, 0x84010a0,6, 0x84010c0,6, 0x84010e0,6, 0x8401100,6, 0x8401120,6, 0x8401140,6, 0x8401160,6, 0x8401180,6, 0x84011a0,6, 0x84011c0,6, 0x84011e0,6, 0x8401200,6, 0x8401220,6, 0x8401240,6, 0x8401260,6, 0x8401280,6, 0x84012a0,6, 0x84012c0,6, 0x84012e0,6, 0x8401300,6, 0x8401320,6, 0x8401340,6, 0x8401360,6, 0x8401380,6, 0x84013a0,6, 0x84013c0,6, 0x84013e0,6, 0x8401400,6, 0x8401420,6, 0x8401440,6, 0x8401460,6, 0x8401480,6, 0x84014a0,6, 0x84014c0,6, 0x84014e0,6, 0x8401500,6, 0x8401520,6, 0x8401540,6, 0x8401560,6, 0x8401580,6, 0x84015a0,6, 0x84015c0,6, 0x84015e0,6, 0x8401600,6, 0x8401620,6, 0x8401640,6, 0x8401660,6, 0x8401680,6, 0x84016a0,6, 0x84016c0,6, 0x84016e0,6, 0x8401700,6, 0x8401720,6, 0x8401740,6, 0x8401760,6, 0x8401780,6, 0x84017a0,6, 0x84017c0,6, 0x84017e0,6, 0x8401800,6, 0x8401820,6, 0x8401840,6, 0x8401860,6, 0x8401880,6, 0x84018a0,6, 0x84018c0,6, 0x84018e0,6, 0x8401900,6, 0x8401920,6, 0x8401940,6, 0x8401960,6, 0x8401980,6, 0x84019a0,6, 0x84019c0,6, 0x84019e0,6, 0x8401a00,6, 0x8401a20,6, 0x8401a40,6, 0x8401a60,6, 0x8401a80,6, 0x8401aa0,6, 0x8401ac0,6, 0x8401ae0,6, 0x8401b00,6, 0x8401b20,6, 0x8401b40,6, 0x8401b60,6, 0x8401b80,6, 0x8401ba0,6, 0x8401bc0,6, 0x8401be0,6, 0x8401c00,6, 0x8401c20,6, 0x8401c40,6, 0x8401c60,6, 0x8401c80,6, 0x8401ca0,6, 0x8401cc0,6, 0x8401ce0,6, 0x8401d00,6, 0x8401d20,6, 0x8401d40,6, 0x8401d60,6, 0x8401d80,6, 0x8401da0,6, 0x8401dc0,6, 0x8401de0,6, 0x8401e00,6, 0x8401e20,6, 0x8401e40,6, 0x8401e60,6, 0x8401e80,6, 0x8401ea0,6, 0x8401ec0,6, 0x8401ee0,6, 0x8401f00,6, 0x8401f20,6, 0x8401f40,6, 0x8401f60,6, 0x8401f80,6, 0x8401fa0,6, 0x8401fc0,6, 0x8401fe0,6, 0x8402000,6, 0x8402020,6, 0x8402040,6, 0x8402060,6, 0x8402080,6, 0x84020a0,6, 0x84020c0,6, 0x84020e0,6, 0x8402100,6, 0x8402120,6, 0x8402140,6, 0x8402160,6, 0x8402180,6, 0x84021a0,6, 0x84021c0,6, 0x84021e0,6, 0x8402200,6, 0x8402220,6, 0x8402240,6, 0x8402260,6, 0x8402280,6, 0x84022a0,6, 0x84022c0,6, 0x84022e0,6, 0x8402300,6, 0x8402320,6, 0x8402340,6, 0x8402360,6, 0x8402380,6, 0x84023a0,6, 0x84023c0,6, 0x84023e0,6, 0x8402400,6, 0x8402420,6, 0x8402440,6, 0x8402460,6, 0x8402480,6, 0x84024a0,6, 0x84024c0,6, 0x84024e0,6, 0x8402500,6, 0x8402520,6, 0x8402540,6, 0x8402560,6, 0x8402580,6, 0x84025a0,6, 0x84025c0,6, 0x84025e0,6, 0x8402600,6, 0x8402620,6, 0x8402640,6, 0x8402660,6, 0x8402680,6, 0x84026a0,6, 0x84026c0,6, 0x84026e0,6, 0x8402700,6, 0x8402720,6, 0x8402740,6, 0x8402760,6, 0x8402780,6, 0x84027a0,6, 0x84027c0,6, 0x84027e0,6, 0x8402800,6, 0x8402820,6, 0x8402840,6, 0x8402860,6, 0x8402880,6, 0x84028a0,6, 0x84028c0,6, 0x84028e0,6, 0x8402900,6, 0x8402920,6, 0x8402940,6, 0x8402960,6, 0x8402980,6, 0x84029a0,6, 0x84029c0,6, 0x84029e0,6, 0x8402a00,6, 0x8402a20,6, 0x8402a40,6, 0x8402a60,6, 0x8402a80,6, 0x8402aa0,6, 0x8402ac0,6, 0x8402ae0,6, 0x8402b00,6, 0x8402b20,6, 0x8402b40,6, 0x8402b60,6, 0x8402b80,6, 0x8402ba0,6, 0x8402bc0,6, 0x8402be0,6, 0x8402c00,6, 0x8402c20,6, 0x8402c40,6, 0x8402c60,6, 0x8402c80,6, 0x8402ca0,6, 0x8402cc0,6, 0x8402ce0,6, 0x8402d00,6, 0x8402d20,6, 0x8402d40,6, 0x8402d60,6, 0x8402d80,6, 0x8402da0,6, 0x8402dc0,6, 0x8402de0,6, 0x8402e00,6, 0x8402e20,6, 0x8402e40,6, 0x8402e60,6, 0x8402e80,6, 0x8402ea0,6, 0x8402ec0,6, 0x8402ee0,6, 0x8402f00,6, 0x8402f20,6, 0x8402f40,6, 0x8402f60,6, 0x8402f80,6, 0x8402fa0,6, 0x8402fc0,6, 0x8402fe0,6, 0x8403000,6, 0x8403020,6, 0x8403040,6, 0x8403060,6, 0x8403080,6, 0x84030a0,6, 0x84030c0,6, 0x84030e0,6, 0x8403100,6, 0x8403120,6, 0x8403140,6, 0x8403160,6, 0x8403180,6, 0x84031a0,6, 0x84031c0,6, 0x84031e0,6, 0x8403200,6, 0x8403220,6, 0x8403240,6, 0x8403260,6, 0x8403280,6, 0x84032a0,6, 0x84032c0,6, 0x84032e0,6, 0x8403300,6, 0x8403320,6, 0x8403340,6, 0x8403360,6, 0x8403380,6, 0x84033a0,6, 0x84033c0,6, 0x84033e0,6, 0x8403400,6, 0x8403420,6, 0x8403440,6, 0x8403460,6, 0x8403480,6, 0x84034a0,6, 0x84034c0,6, 0x84034e0,6, 0x8403500,6, 0x8403520,6, 0x8403540,6, 0x8403560,6, 0x8403580,6, 0x84035a0,6, 0x84035c0,6, 0x84035e0,6, 0x8403600,6, 0x8403620,6, 0x8403640,6, 0x8403660,6, 0x8403680,6, 0x84036a0,6, 0x84036c0,6, 0x84036e0,6, 0x8403700,6, 0x8403720,6, 0x8403740,6, 0x8403760,6, 0x8403780,6, 0x84037a0,6, 0x84037c0,6, 0x84037e0,6, 0x8403800,6, 0x8403820,6, 0x8403840,6, 0x8403860,6, 0x8403880,6, 0x84038a0,6, 0x84038c0,6, 0x84038e0,6, 0x8403900,6, 0x8403920,6, 0x8403940,6, 0x8403960,6, 0x8403980,6, 0x84039a0,6, 0x84039c0,6, 0x84039e0,6, 0x8403a00,6, 0x8403a20,6, 0x8403a40,6, 0x8403a60,6, 0x8403a80,6, 0x8403aa0,6, 0x8403ac0,6, 0x8403ae0,6, 0x8403b00,6, 0x8403b20,6, 0x8403b40,6, 0x8403b60,6, 0x8403b80,6, 0x8403ba0,6, 0x8403bc0,6, 0x8403be0,6, 0x8403c00,6, 0x8403c20,6, 0x8403c40,6, 0x8403c60,6, 0x8403c80,6, 0x8403ca0,6, 0x8403cc0,6, 0x8403ce0,6, 0x8403d00,6, 0x8403d20,6, 0x8403d40,6, 0x8403d60,6, 0x8403d80,6, 0x8403da0,6, 0x8403dc0,6, 0x8403de0,6, 0x8403e00,6, 0x8403e20,6, 0x8403e40,6, 0x8403e60,6, 0x8403e80,6, 0x8403ea0,6, 0x8403ec0,6, 0x8403ee0,6, 0x8403f00,6, 0x8403f20,6, 0x8403f40,6, 0x8403f60,6, 0x8403f80,6, 0x8403fa0,6, 0x8403fc0,6, 0x8403fe0,6, 0x8404000,6, 0x8404020,6, 0x8404040,6, 0x8404060,6, 0x8404080,6, 0x84040a0,6, 0x84040c0,6, 0x84040e0,6, 0x8404100,6, 0x8404120,6, 0x8404140,6, 0x8404160,6, 0x8404180,6, 0x84041a0,6, 0x84041c0,6, 0x84041e0,6, 0x8404200,6, 0x8404220,6, 0x8404240,6, 0x8404260,6, 0x8404280,6, 0x84042a0,6, 0x84042c0,6, 0x84042e0,6, 0x8404300,6, 0x8404320,6, 0x8404340,6, 0x8404360,6, 0x8404380,6, 0x84043a0,6, 0x84043c0,6, 0x84043e0,6, 0x8404400,6, 0x8404420,6, 0x8404440,6, 0x8404460,6, 0x8404480,6, 0x84044a0,6, 0x84044c0,6, 0x84044e0,6, 0x8404500,6, 0x8404520,6, 0x8404540,6, 0x8404560,6, 0x8404580,6, 0x84045a0,6, 0x84045c0,6, 0x84045e0,6, 0x8404600,6, 0x8404620,6, 0x8404640,6, 0x8404660,6, 0x8404680,6, 0x84046a0,6, 0x84046c0,6, 0x84046e0,6, 0x8404700,6, 0x8404720,6, 0x8404740,6, 0x8404760,6, 0x8404780,6, 0x84047a0,6, 0x84047c0,6, 0x84047e0,6, 0x8404800,6, 0x8404820,6, 0x8404840,6, 0x8404860,6, 0x8404880,6, 0x84048a0,6, 0x84048c0,6, 0x84048e0,6, 0x8404900,6, 0x8404920,6, 0x8404940,6, 0x8404960,6, 0x8404980,6, 0x84049a0,6, 0x84049c0,6, 0x84049e0,6, 0x8404a00,6, 0x8404a20,6, 0x8404a40,6, 0x8404a60,6, 0x8404a80,6, 0x8404aa0,6, 0x8404ac0,6, 0x8404ae0,6, 0x8404b00,6, 0x8404b20,6, 0x8404b40,6, 0x8404b60,6, 0x8404b80,6, 0x8404ba0,6, 0x8404bc0,6, 0x8404be0,6, 0x8404c00,6, 0x8404c20,6, 0x8404c40,6, 0x8404c60,6, 0x8404c80,6, 0x8404ca0,6, 0x8404cc0,6, 0x8404ce0,6, 0x8404d00,6, 0x8404d20,6, 0x8404d40,6, 0x8404d60,6, 0x8404d80,6, 0x8404da0,6, 0x8404dc0,6, 0x8404de0,6, 0x8404e00,6, 0x8404e20,6, 0x8404e40,6, 0x8404e60,6, 0x8404e80,6, 0x8404ea0,6, 0x8404ec0,6, 0x8404ee0,6, 0x8404f00,6, 0x8404f20,6, 0x8404f40,6, 0x8404f60,6, 0x8404f80,6, 0x8404fa0,6, 0x8404fc0,6, 0x8404fe0,6, 0x8405000,6, 0x8405020,6, 0x8405040,6, 0x8405060,6, 0x8405080,6, 0x84050a0,6, 0x84050c0,6, 0x84050e0,6, 0x8405100,6, 0x8405120,6, 0x8405140,6, 0x8405160,6, 0x8405180,6, 0x84051a0,6, 0x84051c0,6, 0x84051e0,6, 0x8405200,6, 0x8405220,6, 0x8405240,6, 0x8405260,6, 0x8405280,6, 0x84052a0,6, 0x84052c0,6, 0x84052e0,6, 0x8405300,6, 0x8405320,6, 0x8405340,6, 0x8405360,6, 0x8405380,6, 0x84053a0,6, 0x84053c0,6, 0x84053e0,6, 0x8405400,6, 0x8405420,6, 0x8405440,6, 0x8405460,6, 0x8405480,6, 0x84054a0,6, 0x84054c0,6, 0x84054e0,6, 0x8405500,6, 0x8405520,6, 0x8405540,6, 0x8405560,6, 0x8405580,6, 0x84055a0,6, 0x84055c0,6, 0x84055e0,6, 0x8405600,6, 0x8405620,6, 0x8405640,6, 0x8405660,6, 0x8405680,6, 0x84056a0,6, 0x84056c0,6, 0x84056e0,6, 0x8405700,6, 0x8405720,6, 0x8405740,6, 0x8405760,6, 0x8405780,6, 0x84057a0,6, 0x84057c0,6, 0x84057e0,6, 0x8405800,6, 0x8405820,6, 0x8405840,6, 0x8405860,6, 0x8405880,6, 0x84058a0,6, 0x84058c0,6, 0x84058e0,6, 0x8405900,6, 0x8405920,6, 0x8405940,6, 0x8405960,6, 0x8405980,6, 0x84059a0,6, 0x84059c0,6, 0x84059e0,6, 0x8405a00,6, 0x8405a20,6, 0x8405a40,6, 0x8405a60,6, 0x8405a80,6, 0x8405aa0,6, 0x8405ac0,6, 0x8405ae0,6, 0x8405b00,6, 0x8405b20,6, 0x8405b40,6, 0x8405b60,6, 0x8405b80,6, 0x8405ba0,6, 0x8405bc0,6, 0x8405be0,6, 0x8405c00,6, 0x8405c20,6, 0x8405c40,6, 0x8405c60,6, 0x8405c80,6, 0x8405ca0,6, 0x8405cc0,6, 0x8405ce0,6, 0x8405d00,6, 0x8405d20,6, 0x8405d40,6, 0x8405d60,6, 0x8405d80,6, 0x8405da0,6, 0x8405dc0,6, 0x8405de0,6, 0x8405e00,6, 0x8405e20,6, 0x8405e40,6, 0x8405e60,6, 0x8405e80,6, 0x8405ea0,6, 0x8405ec0,6, 0x8405ee0,6, 0x8405f00,6, 0x8405f20,6, 0x8405f40,6, 0x8405f60,6, 0x8405f80,6, 0x8405fa0,6, 0x8405fc0,6, 0x8405fe0,6, 0x8406000,6, 0x8406020,6, 0x8406040,6, 0x8406060,6, 0x8406080,6, 0x84060a0,6, 0x84060c0,6, 0x84060e0,6, 0x8406100,6, 0x8406120,6, 0x8406140,6, 0x8406160,6, 0x8406180,6, 0x84061a0,6, 0x84061c0,6, 0x84061e0,6, 0x8406200,6, 0x8406220,6, 0x8406240,6, 0x8406260,6, 0x8406280,6, 0x84062a0,6, 0x84062c0,6, 0x84062e0,6, 0x8406300,6, 0x8406320,6, 0x8406340,6, 0x8406360,6, 0x8406380,6, 0x84063a0,6, 0x84063c0,6, 0x84063e0,6, 0x8406400,6, 0x8406420,6, 0x8406440,6, 0x8406460,6, 0x8406480,6, 0x84064a0,6, 0x84064c0,6, 0x84064e0,6, 0x8406500,6, 0x8406520,6, 0x8406540,6, 0x8406560,6, 0x8406580,6, 0x84065a0,6, 0x84065c0,6, 0x84065e0,6, 0x8406600,6, 0x8406620,6, 0x8406640,6, 0x8406660,6, 0x8406680,6, 0x84066a0,6, 0x84066c0,6, 0x84066e0,6, 0x8406700,6, 0x8406720,6, 0x8406740,6, 0x8406760,6, 0x8406780,6, 0x84067a0,6, 0x84067c0,6, 0x84067e0,6, 0x8406800,6, 0x8406820,6, 0x8406840,6, 0x8406860,6, 0x8406880,6, 0x84068a0,6, 0x84068c0,6, 0x84068e0,6, 0x8406900,6, 0x8406920,6, 0x8406940,6, 0x8406960,6, 0x8406980,6, 0x84069a0,6, 0x84069c0,6, 0x84069e0,6, 0x8406a00,6, 0x8406a20,6, 0x8406a40,6, 0x8406a60,6, 0x8406a80,6, 0x8406aa0,6, 0x8406ac0,6, 0x8406ae0,6, 0x8406b00,6, 0x8406b20,6, 0x8406b40,6, 0x8406b60,6, 0x8406b80,6, 0x8406ba0,6, 0x8406bc0,6, 0x8406be0,6, 0x8406c00,6, 0x8406c20,6, 0x8406c40,6, 0x8406c60,6, 0x8406c80,6, 0x8406ca0,6, 0x8406cc0,6, 0x8406ce0,6, 0x8406d00,6, 0x8406d20,6, 0x8406d40,6, 0x8406d60,6, 0x8406d80,6, 0x8406da0,6, 0x8406dc0,6, 0x8406de0,6, 0x8406e00,6, 0x8406e20,6, 0x8406e40,6, 0x8406e60,6, 0x8406e80,6, 0x8406ea0,6, 0x8406ec0,6, 0x8406ee0,6, 0x8406f00,6, 0x8406f20,6, 0x8406f40,6, 0x8406f60,6, 0x8406f80,6, 0x8406fa0,6, 0x8406fc0,6, 0x8406fe0,6, 0x8407000,6, 0x8407020,6, 0x8407040,6, 0x8407060,6, 0x8407080,6, 0x84070a0,6, 0x84070c0,6, 0x84070e0,6, 0x8407100,6, 0x8407120,6, 0x8407140,6, 0x8407160,6, 0x8407180,6, 0x84071a0,6, 0x84071c0,6, 0x84071e0,6, 0x8407200,6, 0x8407220,6, 0x8407240,6, 0x8407260,6, 0x8407280,6, 0x84072a0,6, 0x84072c0,6, 0x84072e0,6, 0x8407300,6, 0x8407320,6, 0x8407340,6, 0x8407360,6, 0x8407380,6, 0x84073a0,6, 0x84073c0,6, 0x84073e0,6, 0x8407400,6, 0x8407420,6, 0x8407440,6, 0x8407460,6, 0x8407480,6, 0x84074a0,6, 0x84074c0,6, 0x84074e0,6, 0x8407500,6, 0x8407520,6, 0x8407540,6, 0x8407560,6, 0x8407580,6, 0x84075a0,6, 0x84075c0,6, 0x84075e0,6, 0x8407600,6, 0x8407620,6, 0x8407640,6, 0x8407660,6, 0x8407680,6, 0x84076a0,6, 0x84076c0,6, 0x84076e0,6, 0x8407700,6, 0x8407720,6, 0x8407740,6, 0x8407760,6, 0x8407780,6, 0x84077a0,6, 0x84077c0,6, 0x84077e0,6, 0x8407800,6, 0x8407820,6, 0x8407840,6, 0x8407860,6, 0x8407880,6, 0x84078a0,6, 0x84078c0,6, 0x84078e0,6, 0x8407900,6, 0x8407920,6, 0x8407940,6, 0x8407960,6, 0x8407980,6, 0x84079a0,6, 0x84079c0,6, 0x84079e0,6, 0x8407a00,6, 0x8407a20,6, 0x8407a40,6, 0x8407a60,6, 0x8407a80,6, 0x8407aa0,6, 0x8407ac0,6, 0x8407ae0,6, 0x8407b00,6, 0x8407b20,6, 0x8407b40,6, 0x8407b60,6, 0x8407b80,6, 0x8407ba0,6, 0x8407bc0,6, 0x8407be0,6, 0x8407c00,6, 0x8407c20,6, 0x8407c40,6, 0x8407c60,6, 0x8407c80,6, 0x8407ca0,6, 0x8407cc0,6, 0x8407ce0,6, 0x8407d00,6, 0x8407d20,6, 0x8407d40,6, 0x8407d60,6, 0x8407d80,6, 0x8407da0,6, 0x8407dc0,6, 0x8407de0,6, 0x8407e00,6, 0x8407e20,6, 0x8407e40,6, 0x8407e60,6, 0x8407e80,6, 0x8407ea0,6, 0x8407ec0,6, 0x8407ee0,6, 0x8407f00,6, 0x8407f20,6, 0x8407f40,6, 0x8407f60,6, 0x8407f80,6, 0x8407fa0,6, 0x8407fc0,6, 0x8407fe0,6, 0x8408000,6, 0x8408020,6, 0x8408040,6, 0x8408060,6, 0x8408080,6, 0x84080a0,6, 0x84080c0,6, 0x84080e0,6, 0x8408100,6, 0x8408120,6, 0x8408140,6, 0x8408160,6, 0x8408180,6, 0x84081a0,6, 0x84081c0,6, 0x84081e0,6, 0x8408200,6, 0x8408220,6, 0x8408240,6, 0x8408260,6, 0x8408280,6, 0x84082a0,6, 0x84082c0,6, 0x84082e0,6, 0x8408300,6, 0x8408320,6, 0x8408340,6, 0x8408360,6, 0x8408380,6, 0x84083a0,6, 0x84083c0,6, 0x84083e0,6, 0x8408400,6, 0x8408420,6, 0x8408440,6, 0x8408460,6, 0x8408480,6, 0x84084a0,6, 0x84084c0,6, 0x84084e0,6, 0x8408500,6, 0x8408520,6, 0x8408540,6, 0x8408560,6, 0x8408580,6, 0x84085a0,6, 0x84085c0,6, 0x84085e0,6, 0x8408600,6, 0x8408620,6, 0x8408640,6, 0x8408660,6, 0x8408680,6, 0x84086a0,6, 0x84086c0,6, 0x84086e0,6, 0x8408700,6, 0x8408720,6, 0x8408740,6, 0x8408760,6, 0x8408780,6, 0x84087a0,6, 0x84087c0,6, 0x84087e0,6, 0x8408800,6, 0x8408820,6, 0x8408840,6, 0x8408860,6, 0x8408880,6, 0x84088a0,6, 0x84088c0,6, 0x84088e0,6, 0x8408900,6, 0x8408920,6, 0x8408940,6, 0x8408960,6, 0x8408980,6, 0x84089a0,6, 0x84089c0,6, 0x84089e0,6, 0x8408a00,6, 0x8408a20,6, 0x8408a40,6, 0x8408a60,6, 0x8408a80,6, 0x8408aa0,6, 0x8408ac0,6, 0x8408ae0,6, 0x8408b00,6, 0x8408b20,6, 0x8408b40,6, 0x8408b60,6, 0x8408b80,6, 0x8408ba0,6, 0x8408bc0,6, 0x8408be0,6, 0x8408c00,6, 0x8408c20,6, 0x8408c40,6, 0x8408c60,6, 0x8408c80,6, 0x8408ca0,6, 0x8408cc0,6, 0x8408ce0,6, 0x8408d00,6, 0x8408d20,6, 0x8408d40,6, 0x8408d60,6, 0x8408d80,6, 0x8408da0,6, 0x8408dc0,6, 0x8408de0,6, 0x8408e00,6, 0x8408e20,6, 0x8408e40,6, 0x8408e60,6, 0x8408e80,6, 0x8408ea0,6, 0x8408ec0,6, 0x8408ee0,6, 0x8408f00,6, 0x8408f20,6, 0x8408f40,6, 0x8408f60,6, 0x8408f80,6, 0x8408fa0,6, 0x8408fc0,6, 0x8408fe0,6, 0x8409000,6, 0x8409020,6, 0x8409040,6, 0x8409060,6, 0x8409080,6, 0x84090a0,6, 0x84090c0,6, 0x84090e0,6, 0x8409100,6, 0x8409120,6, 0x8409140,6, 0x8409160,6, 0x8409180,6, 0x84091a0,6, 0x84091c0,6, 0x84091e0,6, 0x8409200,6, 0x8409220,6, 0x8409240,6, 0x8409260,6, 0x8409280,6, 0x84092a0,6, 0x84092c0,6, 0x84092e0,6, 0x8409300,6, 0x8409320,6, 0x8409340,6, 0x8409360,6, 0x8409380,6, 0x84093a0,6, 0x84093c0,6, 0x84093e0,6, 0x8409400,6, 0x8409420,6, 0x8409440,6, 0x8409460,6, 0x8409480,6, 0x84094a0,6, 0x84094c0,6, 0x84094e0,6, 0x8409500,6, 0x8409520,6, 0x8409540,6, 0x8409560,6, 0x8409580,6, 0x84095a0,6, 0x84095c0,6, 0x84095e0,6, 0x8409600,6, 0x8409620,6, 0x8409640,6, 0x8409660,6, 0x8409680,6, 0x84096a0,6, 0x84096c0,6, 0x84096e0,6, 0x8409700,6, 0x8409720,6, 0x8409740,6, 0x8409760,6, 0x8409780,6, 0x84097a0,6, 0x84097c0,6, 0x84097e0,6, 0x8409800,6, 0x8409820,6, 0x8409840,6, 0x8409860,6, 0x8409880,6, 0x84098a0,6, 0x84098c0,6, 0x84098e0,6, 0x8409900,6, 0x8409920,6, 0x8409940,6, 0x8409960,6, 0x8409980,6, 0x84099a0,6, 0x84099c0,6, 0x84099e0,6, 0x8409a00,6, 0x8409a20,6, 0x8409a40,6, 0x8409a60,6, 0x8409a80,6, 0x8409aa0,6, 0x8409ac0,6, 0x8409ae0,6, 0x8409b00,6, 0x8409b20,6, 0x8409b40,6, 0x8409b60,6, 0x8409b80,6, 0x8409ba0,6, 0x8409bc0,6, 0x8409be0,6, 0x8409c00,6, 0x8409c20,6, 0x8409c40,6, 0x8409c60,6, 0x8409c80,6, 0x8409ca0,6, 0x8409cc0,6, 0x8409ce0,6, 0x8409d00,6, 0x8409d20,6, 0x8409d40,6, 0x8409d60,6, 0x8409d80,6, 0x8409da0,6, 0x8409dc0,6, 0x8409de0,6, 0x8409e00,6, 0x8409e20,6, 0x8409e40,6, 0x8409e60,6, 0x8409e80,6, 0x8409ea0,6, 0x8409ec0,6, 0x8409ee0,6, 0x8409f00,6, 0x8409f20,6, 0x8409f40,6, 0x8409f60,6, 0x8409f80,6, 0x8409fa0,6, 0x8409fc0,6, 0x8409fe0,6, 0x840a000,6, 0x840a020,6, 0x840a040,6, 0x840a060,6, 0x840a080,6, 0x840a0a0,6, 0x840a0c0,6, 0x840a0e0,6, 0x840a100,6, 0x840a120,6, 0x840a140,6, 0x840a160,6, 0x840a180,6, 0x840a1a0,6, 0x840a1c0,6, 0x840a1e0,6, 0x840a200,6, 0x840a220,6, 0x840a240,6, 0x840a260,6, 0x840a280,6, 0x840a2a0,6, 0x840a2c0,6, 0x840a2e0,6, 0x840a300,6, 0x840a320,6, 0x840a340,6, 0x840a360,6, 0x840a380,6, 0x840a3a0,6, 0x840a3c0,6, 0x840a3e0,6, 0x840a400,6, 0x840a420,6, 0x840a440,6, 0x840a460,6, 0x840a480,6, 0x840a4a0,6, 0x840a4c0,6, 0x840a4e0,6, 0x840a500,6, 0x840a520,6, 0x840a540,6, 0x840a560,6, 0x840a580,6, 0x840a5a0,6, 0x840a5c0,6, 0x840a5e0,6, 0x840a600,6, 0x840a620,6, 0x840a640,6, 0x840a660,6, 0x840a680,6, 0x840a6a0,6, 0x840a6c0,6, 0x840a6e0,6, 0x840a700,6, 0x840a720,6, 0x840a740,6, 0x840a760,6, 0x840a780,6, 0x840a7a0,6, 0x840a7c0,6, 0x840a7e0,6, 0x840a800,6, 0x840a820,6, 0x840a840,6, 0x840a860,6, 0x840a880,6, 0x840a8a0,6, 0x840a8c0,6, 0x840a8e0,6, 0x840a900,6, 0x840a920,6, 0x840a940,6, 0x840a960,6, 0x840a980,6, 0x840a9a0,6, 0x840a9c0,6, 0x840a9e0,6, 0x840aa00,6, 0x840aa20,6, 0x840aa40,6, 0x840aa60,6, 0x840aa80,6, 0x840aaa0,6, 0x840aac0,6, 0x840aae0,6, 0x840ab00,6, 0x840ab20,6, 0x840ab40,6, 0x840ab60,6, 0x840ab80,6, 0x840aba0,6, 0x840abc0,6, 0x840abe0,6, 0x840ac00,6, 0x840ac20,6, 0x840ac40,6, 0x840ac60,6, 0x840ac80,6, 0x840aca0,6, 0x840acc0,6, 0x840ace0,6, 0x840ad00,6, 0x840ad20,6, 0x840ad40,6, 0x840ad60,6, 0x840ad80,6, 0x840ada0,6, 0x840adc0,6, 0x840ade0,6, 0x840ae00,6, 0x840ae20,6, 0x840ae40,6, 0x840ae60,6, 0x840ae80,6, 0x840aea0,6, 0x840aec0,6, 0x840aee0,6, 0x840af00,6, 0x840af20,6, 0x840af40,6, 0x840af60,6, 0x840af80,6, 0x840afa0,6, 0x840afc0,6, 0x840afe0,6, 0x840b000,6, 0x840b020,6, 0x840b040,6, 0x840b060,6, 0x840b080,6, 0x840b0a0,6, 0x840b0c0,6, 0x840b0e0,6, 0x840b100,6, 0x840b120,6, 0x840b140,6, 0x840b160,6, 0x840b180,6, 0x840b1a0,6, 0x840b1c0,6, 0x840b1e0,6, 0x840b200,6, 0x840b220,6, 0x840b240,6, 0x840b260,6, 0x840b280,6, 0x840b2a0,6, 0x840b2c0,6, 0x840b2e0,6, 0x840b300,6, 0x840b320,6, 0x840b340,6, 0x840b360,6, 0x840b380,6, 0x840b3a0,6, 0x840b3c0,6, 0x840b3e0,6, 0x840b400,6, 0x840b420,6, 0x840b440,6, 0x840b460,6, 0x840b480,6, 0x840b4a0,6, 0x840b4c0,6, 0x840b4e0,6, 0x840b500,6, 0x840b520,6, 0x840b540,6, 0x840b560,6, 0x840b580,6, 0x840b5a0,6, 0x840b5c0,6, 0x840b5e0,6, 0x840b600,6, 0x840b620,6, 0x840b640,6, 0x840b660,6, 0x840b680,6, 0x840b6a0,6, 0x840b6c0,6, 0x840b6e0,6, 0x840b700,6, 0x840b720,6, 0x840b740,6, 0x840b760,6, 0x840b780,6, 0x840b7a0,6, 0x840b7c0,6, 0x840b7e0,6, 0x840b800,6, 0x840b820,6, 0x840b840,6, 0x840b860,6, 0x840b880,6, 0x840b8a0,6, 0x840b8c0,6, 0x840b8e0,6, 0x840b900,6, 0x840b920,6, 0x840b940,6, 0x840b960,6, 0x840b980,6, 0x840b9a0,6, 0x840b9c0,6, 0x840b9e0,6, 0x840ba00,6, 0x840ba20,6, 0x840ba40,6, 0x840ba60,6, 0x840ba80,6, 0x840baa0,6, 0x840bac0,6, 0x840bae0,6, 0x840bb00,6, 0x840bb20,6, 0x840bb40,6, 0x840bb60,6, 0x840bb80,6, 0x840bba0,6, 0x840bbc0,6, 0x840bbe0,6, 0x840bc00,6, 0x840bc20,6, 0x840bc40,6, 0x840bc60,6, 0x840bc80,6, 0x840bca0,6, 0x840bcc0,6, 0x840bce0,6, 0x840bd00,6, 0x840bd20,6, 0x840bd40,6, 0x840bd60,6, 0x840bd80,6, 0x840bda0,6, 0x840bdc0,6, 0x840bde0,6, 0x840be00,6, 0x840be20,6, 0x840be40,6, 0x840be60,6, 0x840be80,6, 0x840bea0,6, 0x840bec0,6, 0x840bee0,6, 0x840bf00,6, 0x840bf20,6, 0x840bf40,6, 0x840bf60,6, 0x840bf80,6, 0x840bfa0,6, 0x840bfc0,6, 0x840bfe0,6, 0x840c000,6, 0x840c020,6, 0x840c040,6, 0x840c060,6, 0x840c080,6, 0x840c0a0,6, 0x840c0c0,6, 0x840c0e0,6, 0x840c100,6, 0x840c120,6, 0x840c140,6, 0x840c160,6, 0x840c180,6, 0x840c1a0,6, 0x840c1c0,6, 0x840c1e0,6, 0x840c200,6, 0x840c220,6, 0x840c240,6, 0x840c260,6, 0x840c280,6, 0x840c2a0,6, 0x840c2c0,6, 0x840c2e0,6, 0x840c300,6, 0x840c320,6, 0x840c340,6, 0x840c360,6, 0x840c380,6, 0x840c3a0,6, 0x840c3c0,6, 0x840c3e0,6, 0x840c400,6, 0x840c420,6, 0x840c440,6, 0x840c460,6, 0x840c480,6, 0x840c4a0,6, 0x840c4c0,6, 0x840c4e0,6, 0x840c500,6, 0x840c520,6, 0x840c540,6, 0x840c560,6, 0x840c580,6, 0x840c5a0,6, 0x840c5c0,6, 0x840c5e0,6, 0x840c600,6, 0x840c620,6, 0x840c640,6, 0x840c660,6, 0x840c680,6, 0x840c6a0,6, 0x840c6c0,6, 0x840c6e0,6, 0x840c700,6, 0x840c720,6, 0x840c740,6, 0x840c760,6, 0x840c780,6, 0x840c7a0,6, 0x840c7c0,6, 0x840c7e0,6, 0x840c800,6, 0x840c820,6, 0x840c840,6, 0x840c860,6, 0x840c880,6, 0x840c8a0,6, 0x840c8c0,6, 0x840c8e0,6, 0x840c900,6, 0x840c920,6, 0x840c940,6, 0x840c960,6, 0x840c980,6, 0x840c9a0,6, 0x840c9c0,6, 0x840c9e0,6, 0x840ca00,6, 0x840ca20,6, 0x840ca40,6, 0x840ca60,6, 0x840ca80,6, 0x840caa0,6, 0x840cac0,6, 0x840cae0,6, 0x840cb00,6, 0x840cb20,6, 0x840cb40,6, 0x840cb60,6, 0x840cb80,6, 0x840cba0,6, 0x840cbc0,6, 0x840cbe0,6, 0x840cc00,6, 0x840cc20,6, 0x840cc40,6, 0x840cc60,6, 0x840cc80,6, 0x840cca0,6, 0x840ccc0,6, 0x840cce0,6, 0x840cd00,6, 0x840cd20,6, 0x840cd40,6, 0x840cd60,6, 0x840cd80,6, 0x840cda0,6, 0x840cdc0,6, 0x840cde0,6, 0x840ce00,6, 0x840ce20,6, 0x840ce40,6, 0x840ce60,6, 0x840ce80,6, 0x840cea0,6, 0x840cec0,6, 0x840cee0,6, 0x840cf00,6, 0x840cf20,6, 0x840cf40,6, 0x840cf60,6, 0x840cf80,6, 0x840cfa0,6, 0x840cfc0,6, 0x840cfe0,6, 0x840d000,6, 0x840d020,6, 0x840d040,6, 0x840d060,6, 0x840d080,6, 0x840d0a0,6, 0x840d0c0,6, 0x840d0e0,6, 0x840d100,6, 0x840d120,6, 0x840d140,6, 0x840d160,6, 0x840d180,6, 0x840d1a0,6, 0x840d1c0,6, 0x840d1e0,6, 0x840d200,6, 0x840d220,6, 0x840d240,6, 0x840d260,6, 0x840d280,6, 0x840d2a0,6, 0x840d2c0,6, 0x840d2e0,6, 0x840d300,6, 0x840d320,6, 0x840d340,6, 0x840d360,6, 0x840d380,6, 0x840d3a0,6, 0x840d3c0,6, 0x840d3e0,6, 0x840d400,6, 0x840d420,6, 0x840d440,6, 0x840d460,6, 0x840d480,6, 0x840d4a0,6, 0x840d4c0,6, 0x840d4e0,6, 0x840d500,6, 0x840d520,6, 0x840d540,6, 0x840d560,6, 0x840d580,6, 0x840d5a0,6, 0x840d5c0,6, 0x840d5e0,6, 0x840d600,6, 0x840d620,6, 0x840d640,6, 0x840d660,6, 0x840d680,6, 0x840d6a0,6, 0x840d6c0,6, 0x840d6e0,6, 0x840d700,6, 0x840d720,6, 0x840d740,6, 0x840d760,6, 0x840d780,6, 0x840d7a0,6, 0x840d7c0,6, 0x840d7e0,6, 0x840d800,6, 0x840d820,6, 0x840d840,6, 0x840d860,6, 0x840d880,6, 0x840d8a0,6, 0x840d8c0,6, 0x840d8e0,6, 0x840d900,6, 0x840d920,6, 0x840d940,6, 0x840d960,6, 0x840d980,6, 0x840d9a0,6, 0x840d9c0,6, 0x840d9e0,6, 0x840da00,6, 0x840da20,6, 0x840da40,6, 0x840da60,6, 0x840da80,6, 0x840daa0,6, 0x840dac0,6, 0x840dae0,6, 0x840db00,6, 0x840db20,6, 0x840db40,6, 0x840db60,6, 0x840db80,6, 0x840dba0,6, 0x840dbc0,6, 0x840dbe0,6, 0x840dc00,6, 0x840dc20,6, 0x840dc40,6, 0x840dc60,6, 0x840dc80,6, 0x840dca0,6, 0x840dcc0,6, 0x840dce0,6, 0x840dd00,6, 0x840dd20,6, 0x840dd40,6, 0x840dd60,6, 0x840dd80,6, 0x840dda0,6, 0x840ddc0,6, 0x840dde0,6, 0x840de00,6, 0x840de20,6, 0x840de40,6, 0x840de60,6, 0x840de80,6, 0x840dea0,6, 0x840dec0,6, 0x840dee0,6, 0x840df00,6, 0x840df20,6, 0x840df40,6, 0x840df60,6, 0x840df80,6, 0x840dfa0,6, 0x840dfc0,6, 0x840dfe0,6, 0x840e000,6, 0x840e020,6, 0x840e040,6, 0x840e060,6, 0x840e080,6, 0x840e0a0,6, 0x840e0c0,6, 0x840e0e0,6, 0x840e100,6, 0x840e120,6, 0x840e140,6, 0x840e160,6, 0x840e180,6, 0x840e1a0,6, 0x840e1c0,6, 0x840e1e0,6, 0x840e200,6, 0x840e220,6, 0x840e240,6, 0x840e260,6, 0x840e280,6, 0x840e2a0,6, 0x840e2c0,6, 0x840e2e0,6, 0x840e300,6, 0x840e320,6, 0x840e340,6, 0x840e360,6, 0x840e380,6, 0x840e3a0,6, 0x840e3c0,6, 0x840e3e0,6, 0x840e400,6, 0x840e420,6, 0x840e440,6, 0x840e460,6, 0x840e480,6, 0x840e4a0,6, 0x840e4c0,6, 0x840e4e0,6, 0x840e500,6, 0x840e520,6, 0x840e540,6, 0x840e560,6, 0x840e580,6, 0x840e5a0,6, 0x840e5c0,6, 0x840e5e0,6, 0x840e600,6, 0x840e620,6, 0x840e640,6, 0x840e660,6, 0x840e680,6, 0x840e6a0,6, 0x840e6c0,6, 0x840e6e0,6, 0x840e700,6, 0x840e720,6, 0x840e740,6, 0x840e760,6, 0x840e780,6, 0x840e7a0,6, 0x840e7c0,6, 0x840e7e0,6, 0x840e800,6, 0x840e820,6, 0x840e840,6, 0x840e860,6, 0x840e880,6, 0x840e8a0,6, 0x840e8c0,6, 0x840e8e0,6, 0x840e900,6, 0x840e920,6, 0x840e940,6, 0x840e960,6, 0x840e980,6, 0x840e9a0,6, 0x840e9c0,6, 0x840e9e0,6, 0x840ea00,6, 0x840ea20,6, 0x840ea40,6, 0x840ea60,6, 0x840ea80,6, 0x840eaa0,6, 0x840eac0,6, 0x840eae0,6, 0x840eb00,6, 0x840eb20,6, 0x840eb40,6, 0x840eb60,6, 0x840eb80,6, 0x840eba0,6, 0x840ebc0,6, 0x840ebe0,6, 0x840ec00,6, 0x840ec20,6, 0x840ec40,6, 0x840ec60,6, 0x840ec80,6, 0x840eca0,6, 0x840ecc0,6, 0x840ece0,6, 0x840ed00,6, 0x840ed20,6, 0x840ed40,6, 0x840ed60,6, 0x840ed80,6, 0x840eda0,6, 0x840edc0,6, 0x840ede0,6, 0x840ee00,6, 0x840ee20,6, 0x840ee40,6, 0x840ee60,6, 0x840ee80,6, 0x840eea0,6, 0x840eec0,6, 0x840eee0,6, 0x840ef00,6, 0x840ef20,6, 0x840ef40,6, 0x840ef60,6, 0x840ef80,6, 0x840efa0,6, 0x840efc0,6, 0x840efe0,6, 0x840f000,6, 0x840f020,6, 0x840f040,6, 0x840f060,6, 0x840f080,6, 0x840f0a0,6, 0x840f0c0,6, 0x840f0e0,6, 0x840f100,6, 0x840f120,6, 0x840f140,6, 0x840f160,6, 0x840f180,6, 0x840f1a0,6, 0x840f1c0,6, 0x840f1e0,6, 0x840f200,6, 0x840f220,6, 0x840f240,6, 0x840f260,6, 0x840f280,6, 0x840f2a0,6, 0x840f2c0,6, 0x840f2e0,6, 0x840f300,6, 0x840f320,6, 0x840f340,6, 0x840f360,6, 0x840f380,6, 0x840f3a0,6, 0x840f3c0,6, 0x840f3e0,6, 0x840f400,6, 0x840f420,6, 0x840f440,6, 0x840f460,6, 0x840f480,6, 0x840f4a0,6, 0x840f4c0,6, 0x840f4e0,6, 0x840f500,6, 0x840f520,6, 0x840f540,6, 0x840f560,6, 0x840f580,6, 0x840f5a0,6, 0x840f5c0,6, 0x840f5e0,6, 0x840f600,6, 0x840f620,6, 0x840f640,6, 0x840f660,6, 0x840f680,6, 0x840f6a0,6, 0x840f6c0,6, 0x840f6e0,6, 0x840f700,6, 0x840f720,6, 0x840f740,6, 0x840f760,6, 0x840f780,6, 0x840f7a0,6, 0x840f7c0,6, 0x840f7e0,6, 0x840f800,6, 0x840f820,6, 0x840f840,6, 0x840f860,6, 0x840f880,6, 0x840f8a0,6, 0x840f8c0,6, 0x840f8e0,6, 0x840f900,6, 0x840f920,6, 0x840f940,6, 0x840f960,6, 0x840f980,6, 0x840f9a0,6, 0x840f9c0,6, 0x840f9e0,6, 0x840fa00,6, 0x840fa20,6, 0x840fa40,6, 0x840fa60,6, 0x840fa80,6, 0x840faa0,6, 0x840fac0,6, 0x840fae0,6, 0x840fb00,6, 0x840fb20,6, 0x840fb40,6, 0x840fb60,6, 0x840fb80,6, 0x840fba0,6, 0x840fbc0,6, 0x840fbe0,6, 0x840fc00,6, 0x840fc20,6, 0x840fc40,6, 0x840fc60,6, 0x840fc80,6, 0x840fca0,6, 0x840fcc0,6, 0x840fce0,6, 0x840fd00,6, 0x840fd20,6, 0x840fd40,6, 0x840fd60,6, 0x840fd80,6, 0x840fda0,6, 0x840fdc0,6, 0x840fde0,6, 0x840fe00,6, 0x840fe20,6, 0x840fe40,6, 0x840fe60,6, 0x840fe80,6, 0x840fea0,6, 0x840fec0,6, 0x840fee0,6, 0x840ff00,6, 0x840ff20,6, 0x840ff40,6, 0x840ff60,6, 0x840ff80,6, 0x840ffa0,6, 0x840ffc0,6, 0x840ffe0,6, 0x8410000,6, 0x8410020,6, 0x8410040,6, 0x8410060,6, 0x8410080,6, 0x84100a0,6, 0x84100c0,6, 0x84100e0,6, 0x8410100,6, 0x8410120,6, 0x8410140,6, 0x8410160,6, 0x8410180,6, 0x84101a0,6, 0x84101c0,6, 0x84101e0,6, 0x8410200,6, 0x8410220,6, 0x8410240,6, 0x8410260,6, 0x8410280,6, 0x84102a0,6, 0x84102c0,6, 0x84102e0,6, 0x8410300,6, 0x8410320,6, 0x8410340,6, 0x8410360,6, 0x8410380,6, 0x84103a0,6, 0x84103c0,6, 0x84103e0,6, 0x8410400,6, 0x8410420,6, 0x8410440,6, 0x8410460,6, 0x8410480,6, 0x84104a0,6, 0x84104c0,6, 0x84104e0,6, 0x8410500,6, 0x8410520,6, 0x8410540,6, 0x8410560,6, 0x8410580,6, 0x84105a0,6, 0x84105c0,6, 0x84105e0,6, 0x8410600,6, 0x8410620,6, 0x8410640,6, 0x8410660,6, 0x8410680,6, 0x84106a0,6, 0x84106c0,6, 0x84106e0,6, 0x8410700,6, 0x8410720,6, 0x8410740,6, 0x8410760,6, 0x8410780,6, 0x84107a0,6, 0x84107c0,6, 0x84107e0,6, 0x8410800,6, 0x8410820,6, 0x8410840,6, 0x8410860,6, 0x8410880,6, 0x84108a0,6, 0x84108c0,6, 0x84108e0,6, 0x8410900,6, 0x8410920,6, 0x8410940,6, 0x8410960,6, 0x8410980,6, 0x84109a0,6, 0x84109c0,6, 0x84109e0,6, 0x8410a00,6, 0x8410a20,6, 0x8410a40,6, 0x8410a60,6, 0x8410a80,6, 0x8410aa0,6, 0x8410ac0,6, 0x8410ae0,6, 0x8410b00,6, 0x8410b20,6, 0x8410b40,6, 0x8410b60,6, 0x8410b80,6, 0x8410ba0,6, 0x8410bc0,6, 0x8410be0,6, 0x8410c00,6, 0x8410c20,6, 0x8410c40,6, 0x8410c60,6, 0x8410c80,6, 0x8410ca0,6, 0x8410cc0,6, 0x8410ce0,6, 0x8410d00,6, 0x8410d20,6, 0x8410d40,6, 0x8410d60,6, 0x8410d80,6, 0x8410da0,6, 0x8410dc0,6, 0x8410de0,6, 0x8410e00,6, 0x8410e20,6, 0x8410e40,6, 0x8410e60,6, 0x8410e80,6, 0x8410ea0,6, 0x8410ec0,6, 0x8410ee0,6, 0x8410f00,6, 0x8410f20,6, 0x8410f40,6, 0x8410f60,6, 0x8410f80,6, 0x8410fa0,6, 0x8410fc0,6, 0x8410fe0,6, 0x8411000,6, 0x8411020,6, 0x8411040,6, 0x8411060,6, 0x8411080,6, 0x84110a0,6, 0x84110c0,6, 0x84110e0,6, 0x8411100,6, 0x8411120,6, 0x8411140,6, 0x8411160,6, 0x8411180,6, 0x84111a0,6, 0x84111c0,6, 0x84111e0,6, 0x8411200,6, 0x8411220,6, 0x8411240,6, 0x8411260,6, 0x8411280,6, 0x84112a0,6, 0x84112c0,6, 0x84112e0,6, 0x8411300,6, 0x8411320,6, 0x8411340,6, 0x8411360,6, 0x8411380,6, 0x84113a0,6, 0x84113c0,6, 0x84113e0,6, 0x8411400,6, 0x8411420,6, 0x8411440,6, 0x8411460,6, 0x8411480,6, 0x84114a0,6, 0x84114c0,6, 0x84114e0,6, 0x8411500,6, 0x8411520,6, 0x8411540,6, 0x8411560,6, 0x8411580,6, 0x84115a0,6, 0x84115c0,6, 0x84115e0,6, 0x8411600,6, 0x8411620,6, 0x8411640,6, 0x8411660,6, 0x8411680,6, 0x84116a0,6, 0x84116c0,6, 0x84116e0,6, 0x8411700,6, 0x8411720,6, 0x8411740,6, 0x8411760,6, 0x8411780,6, 0x84117a0,6, 0x84117c0,6, 0x84117e0,6, 0x8411800,6, 0x8411820,6, 0x8411840,6, 0x8411860,6, 0x8411880,6, 0x84118a0,6, 0x84118c0,6, 0x84118e0,6, 0x8411900,6, 0x8411920,6, 0x8411940,6, 0x8411960,6, 0x8411980,6, 0x84119a0,6, 0x84119c0,6, 0x84119e0,6, 0x8411a00,6, 0x8411a20,6, 0x8411a40,6, 0x8411a60,6, 0x8411a80,6, 0x8411aa0,6, 0x8411ac0,6, 0x8411ae0,6, 0x8411b00,6, 0x8411b20,6, 0x8411b40,6, 0x8411b60,6, 0x8411b80,6, 0x8411ba0,6, 0x8411bc0,6, 0x8411be0,6, 0x8411c00,6, 0x8411c20,6, 0x8411c40,6, 0x8411c60,6, 0x8411c80,6, 0x8411ca0,6, 0x8411cc0,6, 0x8411ce0,6, 0x8411d00,6, 0x8411d20,6, 0x8411d40,6, 0x8411d60,6, 0x8411d80,6, 0x8411da0,6, 0x8411dc0,6, 0x8411de0,6, 0x8411e00,6, 0x8411e20,6, 0x8411e40,6, 0x8411e60,6, 0x8411e80,6, 0x8411ea0,6, 0x8411ec0,6, 0x8411ee0,6, 0x8411f00,6, 0x8411f20,6, 0x8411f40,6, 0x8411f60,6, 0x8411f80,6, 0x8411fa0,6, 0x8411fc0,6, 0x8411fe0,6, 0x8412000,6, 0x8412020,6, 0x8412040,6, 0x8412060,6, 0x8412080,6, 0x84120a0,6, 0x84120c0,6, 0x84120e0,6, 0x8412100,6, 0x8412120,6, 0x8412140,6, 0x8412160,6, 0x8412180,6, 0x84121a0,6, 0x84121c0,6, 0x84121e0,6, 0x8412200,6, 0x8412220,6, 0x8412240,6, 0x8412260,6, 0x8412280,6, 0x84122a0,6, 0x84122c0,6, 0x84122e0,6, 0x8412300,6, 0x8412320,6, 0x8412340,6, 0x8412360,6, 0x8412380,6, 0x84123a0,6, 0x84123c0,6, 0x84123e0,6, 0x8412400,6, 0x8412420,6, 0x8412440,6, 0x8412460,6, 0x8412480,6, 0x84124a0,6, 0x84124c0,6, 0x84124e0,6, 0x8412500,6, 0x8412520,6, 0x8412540,6, 0x8412560,6, 0x8412580,6, 0x84125a0,6, 0x84125c0,6, 0x84125e0,6, 0x8412600,6, 0x8412620,6, 0x8412640,6, 0x8412660,6, 0x8412680,6, 0x84126a0,6, 0x84126c0,6, 0x84126e0,6, 0x8412700,6, 0x8412720,6, 0x8412740,6, 0x8412760,6, 0x8412780,6, 0x84127a0,6, 0x84127c0,6, 0x84127e0,6, 0x8412800,6, 0x8412820,6, 0x8412840,6, 0x8412860,6, 0x8412880,6, 0x84128a0,6, 0x84128c0,6, 0x84128e0,6, 0x8412900,6, 0x8412920,6, 0x8412940,6, 0x8412960,6, 0x8412980,6, 0x84129a0,6, 0x84129c0,6, 0x84129e0,6, 0x8412a00,6, 0x8412a20,6, 0x8412a40,6, 0x8412a60,6, 0x8412a80,6, 0x8412aa0,6, 0x8412ac0,6, 0x8412ae0,6, 0x8412b00,6, 0x8412b20,6, 0x8412b40,6, 0x8412b60,6, 0x8412b80,6, 0x8412ba0,6, 0x8412bc0,6, 0x8412be0,6, 0x8412c00,6, 0x8412c20,6, 0x8412c40,6, 0x8412c60,6, 0x8412c80,6, 0x8412ca0,6, 0x8412cc0,6, 0x8412ce0,6, 0x8412d00,6, 0x8412d20,6, 0x8412d40,6, 0x8412d60,6, 0x8412d80,6, 0x8412da0,6, 0x8412dc0,6, 0x8412de0,6, 0x8412e00,6, 0x8412e20,6, 0x8412e40,6, 0x8412e60,6, 0x8412e80,6, 0x8412ea0,6, 0x8412ec0,6, 0x8412ee0,6, 0x8412f00,6, 0x8412f20,6, 0x8412f40,6, 0x8412f60,6, 0x8412f80,6, 0x8412fa0,6, 0x8412fc0,6, 0x8412fe0,6, 0x8413000,6, 0x8413020,6, 0x8413040,6, 0x8413060,6, 0x8413080,6, 0x84130a0,6, 0x84130c0,6, 0x84130e0,6, 0x8413100,6, 0x8413120,6, 0x8413140,6, 0x8413160,6, 0x8413180,6, 0x84131a0,6, 0x84131c0,6, 0x84131e0,6, 0x8413200,6, 0x8413220,6, 0x8413240,6, 0x8413260,6, 0x8413280,6, 0x84132a0,6, 0x84132c0,6, 0x84132e0,6, 0x8413300,6, 0x8413320,6, 0x8413340,6, 0x8413360,6, 0x8413380,6, 0x84133a0,6, 0x84133c0,6, 0x84133e0,6, 0x8413400,6, 0x8413420,6, 0x8413440,6, 0x8413460,6, 0x8413480,6, 0x84134a0,6, 0x84134c0,6, 0x84134e0,6, 0x8413500,6, 0x8413520,6, 0x8413540,6, 0x8413560,6, 0x8413580,6, 0x84135a0,6, 0x84135c0,6, 0x84135e0,6, 0x8413600,6, 0x8413620,6, 0x8413640,6, 0x8413660,6, 0x8413680,6, 0x84136a0,6, 0x84136c0,6, 0x84136e0,6, 0x8413700,6, 0x8413720,6, 0x8413740,6, 0x8413760,6, 0x8413780,6, 0x84137a0,6, 0x84137c0,6, 0x84137e0,6, 0x8413800,6, 0x8413820,6, 0x8413840,6, 0x8413860,6, 0x8413880,6, 0x84138a0,6, 0x84138c0,6, 0x84138e0,6, 0x8413900,6, 0x8413920,6, 0x8413940,6, 0x8413960,6, 0x8413980,6, 0x84139a0,6, 0x84139c0,6, 0x84139e0,6, 0x8413a00,6, 0x8413a20,6, 0x8413a40,6, 0x8413a60,6, 0x8413a80,6, 0x8413aa0,6, 0x8413ac0,6, 0x8413ae0,6, 0x8413b00,6, 0x8413b20,6, 0x8413b40,6, 0x8413b60,6, 0x8413b80,6, 0x8413ba0,6, 0x8413bc0,6, 0x8413be0,6, 0x8413c00,6, 0x8413c20,6, 0x8413c40,6, 0x8413c60,6, 0x8413c80,6, 0x8413ca0,6, 0x8413cc0,6, 0x8413ce0,6, 0x8413d00,6, 0x8413d20,6, 0x8413d40,6, 0x8413d60,6, 0x8413d80,6, 0x8413da0,6, 0x8413dc0,6, 0x8413de0,6, 0x8413e00,6, 0x8413e20,6, 0x8413e40,6, 0x8413e60,6, 0x8413e80,6, 0x8413ea0,6, 0x8413ec0,6, 0x8413ee0,6, 0x8413f00,6, 0x8413f20,6, 0x8413f40,6, 0x8413f60,6, 0x8413f80,6, 0x8413fa0,6, 0x8413fc0,6, 0x8413fe0,6, 0x8414000,6, 0x8414020,6, 0x8414040,6, 0x8414060,6, 0x8414080,6, 0x84140a0,6, 0x84140c0,6, 0x84140e0,6, 0x8414100,6, 0x8414120,6, 0x8414140,6, 0x8414160,6, 0x8414180,6, 0x84141a0,6, 0x84141c0,6, 0x84141e0,6, 0x8414200,6, 0x8414220,6, 0x8414240,6, 0x8414260,6, 0x8414280,6, 0x84142a0,6, 0x84142c0,6, 0x84142e0,6, 0x8414300,6, 0x8414320,6, 0x8414340,6, 0x8414360,6, 0x8414380,6, 0x84143a0,6, 0x84143c0,6, 0x84143e0,6, 0x8414400,6, 0x8414420,6, 0x8414440,6, 0x8414460,6, 0x8414480,6, 0x84144a0,6, 0x84144c0,6, 0x84144e0,6, 0x8414500,6, 0x8414520,6, 0x8414540,6, 0x8414560,6, 0x8414580,6, 0x84145a0,6, 0x84145c0,6, 0x84145e0,6, 0x8414600,6, 0x8414620,6, 0x8414640,6, 0x8414660,6, 0x8414680,6, 0x84146a0,6, 0x84146c0,6, 0x84146e0,6, 0x8414700,6, 0x8414720,6, 0x8414740,6, 0x8414760,6, 0x8414780,6, 0x84147a0,6, 0x84147c0,6, 0x84147e0,6, 0x8414800,6, 0x8414820,6, 0x8414840,6, 0x8414860,6, 0x8414880,6, 0x84148a0,6, 0x84148c0,6, 0x84148e0,6, 0x8414900,6, 0x8414920,6, 0x8414940,6, 0x8414960,6, 0x8414980,6, 0x84149a0,6, 0x84149c0,6, 0x84149e0,6, 0x8414a00,6, 0x8414a20,6, 0x8414a40,6, 0x8414a60,6, 0x8414a80,6, 0x8414aa0,6, 0x8414ac0,6, 0x8414ae0,6, 0x8414b00,6, 0x8414b20,6, 0x8414b40,6, 0x8414b60,6, 0x8414b80,6, 0x8414ba0,6, 0x8414bc0,6, 0x8414be0,6, 0x8414c00,6, 0x8414c20,6, 0x8414c40,6, 0x8414c60,6, 0x8414c80,6, 0x8414ca0,6, 0x8414cc0,6, 0x8414ce0,6, 0x8414d00,6, 0x8414d20,6, 0x8414d40,6, 0x8414d60,6, 0x8414d80,6, 0x8414da0,6, 0x8414dc0,6, 0x8414de0,6, 0x8414e00,6, 0x8414e20,6, 0x8414e40,6, 0x8414e60,6, 0x8414e80,6, 0x8414ea0,6, 0x8414ec0,6, 0x8414ee0,6, 0x8414f00,6, 0x8414f20,6, 0x8414f40,6, 0x8414f60,6, 0x8414f80,6, 0x8414fa0,6, 0x8414fc0,6, 0x8414fe0,6, 0x8415000,6, 0x8415020,6, 0x8415040,6, 0x8415060,6, 0x8415080,6, 0x84150a0,6, 0x84150c0,6, 0x84150e0,6, 0x8415100,6, 0x8415120,6, 0x8415140,6, 0x8415160,6, 0x8415180,6, 0x84151a0,6, 0x84151c0,6, 0x84151e0,6, 0x8415200,6, 0x8415220,6, 0x8415240,6, 0x8415260,6, 0x8415280,6, 0x84152a0,6, 0x84152c0,6, 0x84152e0,6, 0x8415300,6, 0x8415320,6, 0x8415340,6, 0x8415360,6, 0x8415380,6, 0x84153a0,6, 0x84153c0,6, 0x84153e0,6, 0x8415400,6, 0x8415420,6, 0x8415440,6, 0x8415460,6, 0x8415480,6, 0x84154a0,6, 0x84154c0,6, 0x84154e0,6, 0x8415500,6, 0x8415520,6, 0x8415540,6, 0x8415560,6, 0x8415580,6, 0x84155a0,6, 0x84155c0,6, 0x84155e0,6, 0x8415600,6, 0x8415620,6, 0x8415640,6, 0x8415660,6, 0x8415680,6, 0x84156a0,6, 0x84156c0,6, 0x84156e0,6, 0x8415700,6, 0x8415720,6, 0x8415740,6, 0x8415760,6, 0x8415780,6, 0x84157a0,6, 0x84157c0,6, 0x84157e0,6, 0x8415800,6, 0x8415820,6, 0x8415840,6, 0x8415860,6, 0x8415880,6, 0x84158a0,6, 0x84158c0,6, 0x84158e0,6, 0x8415900,6, 0x8415920,6, 0x8415940,6, 0x8415960,6, 0x8415980,6, 0x84159a0,6, 0x84159c0,6, 0x84159e0,6, 0x8415a00,6, 0x8415a20,6, 0x8415a40,6, 0x8415a60,6, 0x8415a80,6, 0x8415aa0,6, 0x8415ac0,6, 0x8415ae0,6, 0x8415b00,6, 0x8415b20,6, 0x8415b40,6, 0x8415b60,6, 0x8415b80,6, 0x8415ba0,6, 0x8415bc0,6, 0x8415be0,6, 0x8415c00,6, 0x8415c20,6, 0x8415c40,6, 0x8415c60,6, 0x8415c80,6, 0x8415ca0,6, 0x8415cc0,6, 0x8415ce0,6, 0x8415d00,6, 0x8415d20,6, 0x8415d40,6, 0x8415d60,6, 0x8415d80,6, 0x8415da0,6, 0x8415dc0,6, 0x8415de0,6, 0x8415e00,6, 0x8415e20,6, 0x8415e40,6, 0x8415e60,6, 0x8415e80,6, 0x8415ea0,6, 0x8415ec0,6, 0x8415ee0,6, 0x8415f00,6, 0x8415f20,6, 0x8415f40,6, 0x8415f60,6, 0x8415f80,6, 0x8415fa0,6, 0x8415fc0,6, 0x8415fe0,6, 0x8416000,6, 0x8416020,6, 0x8416040,6, 0x8416060,6, 0x8416080,6, 0x84160a0,6, 0x84160c0,6, 0x84160e0,6, 0x8416100,6, 0x8416120,6, 0x8416140,6, 0x8416160,6, 0x8416180,6, 0x84161a0,6, 0x84161c0,6, 0x84161e0,6, 0x8416200,6, 0x8416220,6, 0x8416240,6, 0x8416260,6, 0x8416280,6, 0x84162a0,6, 0x84162c0,6, 0x84162e0,6, 0x8416300,6, 0x8416320,6, 0x8416340,6, 0x8416360,6, 0x8416380,6, 0x84163a0,6, 0x84163c0,6, 0x84163e0,6, 0x8416400,6, 0x8416420,6, 0x8416440,6, 0x8416460,6, 0x8416480,6, 0x84164a0,6, 0x84164c0,6, 0x84164e0,6, 0x8416500,6, 0x8416520,6, 0x8416540,6, 0x8416560,6, 0x8416580,6, 0x84165a0,6, 0x84165c0,6, 0x84165e0,6, 0x8416600,6, 0x8416620,6, 0x8416640,6, 0x8416660,6, 0x8416680,6, 0x84166a0,6, 0x84166c0,6, 0x84166e0,6, 0x8416700,6, 0x8416720,6, 0x8416740,6, 0x8416760,6, 0x8416780,6, 0x84167a0,6, 0x84167c0,6, 0x84167e0,6, 0x8416800,6, 0x8416820,6, 0x8416840,6, 0x8416860,6, 0x8416880,6, 0x84168a0,6, 0x84168c0,6, 0x84168e0,6, 0x8416900,6, 0x8416920,6, 0x8416940,6, 0x8416960,6, 0x8416980,6, 0x84169a0,6, 0x84169c0,6, 0x84169e0,6, 0x8416a00,6, 0x8416a20,6, 0x8416a40,6, 0x8416a60,6, 0x8416a80,6, 0x8416aa0,6, 0x8416ac0,6, 0x8416ae0,6, 0x8416b00,6, 0x8416b20,6, 0x8416b40,6, 0x8416b60,6, 0x8416b80,6, 0x8416ba0,6, 0x8416bc0,6, 0x8416be0,6, 0x8416c00,6, 0x8416c20,6, 0x8416c40,6, 0x8416c60,6, 0x8416c80,6, 0x8416ca0,6, 0x8416cc0,6, 0x8416ce0,6, 0x8416d00,6, 0x8416d20,6, 0x8416d40,6, 0x8416d60,6, 0x8416d80,6, 0x8416da0,6, 0x8416dc0,6, 0x8416de0,6, 0x8416e00,6, 0x8416e20,6, 0x8416e40,6, 0x8416e60,6, 0x8416e80,6, 0x8416ea0,6, 0x8416ec0,6, 0x8416ee0,6, 0x8416f00,6, 0x8416f20,6, 0x8416f40,6, 0x8416f60,6, 0x8416f80,6, 0x8416fa0,6, 0x8416fc0,6, 0x8416fe0,6, 0x8417000,6, 0x8417020,6, 0x8417040,6, 0x8417060,6, 0x8417080,6, 0x84170a0,6, 0x84170c0,6, 0x84170e0,6, 0x8417100,6, 0x8417120,6, 0x8417140,6, 0x8417160,6, 0x8417180,6, 0x84171a0,6, 0x84171c0,6, 0x84171e0,6, 0x8417200,6, 0x8417220,6, 0x8417240,6, 0x8417260,6, 0x8417280,6, 0x84172a0,6, 0x84172c0,6, 0x84172e0,6, 0x8417300,6, 0x8417320,6, 0x8417340,6, 0x8417360,6, 0x8417380,6, 0x84173a0,6, 0x84173c0,6, 0x84173e0,6, 0x8417400,6, 0x8417420,6, 0x8417440,6, 0x8417460,6, 0x8417480,6, 0x84174a0,6, 0x84174c0,6, 0x84174e0,6, 0x8417500,6, 0x8417520,6, 0x8417540,6, 0x8417560,6, 0x8417580,6, 0x84175a0,6, 0x84175c0,6, 0x84175e0,6, 0x8417600,6, 0x8417620,6, 0x8417640,6, 0x8417660,6, 0x8417680,6, 0x84176a0,6, 0x84176c0,6, 0x84176e0,6, 0x8417700,6, 0x8417720,6, 0x8417740,6, 0x8417760,6, 0x8417780,6, 0x84177a0,6, 0x84177c0,6, 0x84177e0,6, 0x8417800,6, 0x8417820,6, 0x8417840,6, 0x8417860,6, 0x8417880,6, 0x84178a0,6, 0x84178c0,6, 0x84178e0,6, 0x8417900,6, 0x8417920,6, 0x8417940,6, 0x8417960,6, 0x8417980,6, 0x84179a0,6, 0x84179c0,6, 0x84179e0,6, 0x8417a00,6, 0x8417a20,6, 0x8417a40,6, 0x8417a60,6, 0x8417a80,6, 0x8417aa0,6, 0x8417ac0,6, 0x8417ae0,6, 0x8417b00,6, 0x8417b20,6, 0x8417b40,6, 0x8417b60,6, 0x8417b80,6, 0x8417ba0,6, 0x8417bc0,6, 0x8417be0,6, 0x8417c00,6, 0x8417c20,6, 0x8417c40,6, 0x8417c60,6, 0x8417c80,6, 0x8417ca0,6, 0x8417cc0,6, 0x8417ce0,6, 0x8417d00,6, 0x8417d20,6, 0x8417d40,6, 0x8417d60,6, 0x8417d80,6, 0x8417da0,6, 0x8417dc0,6, 0x8417de0,6, 0x8417e00,6, 0x8417e20,6, 0x8417e40,6, 0x8417e60,6, 0x8417e80,6, 0x8417ea0,6, 0x8417ec0,6, 0x8417ee0,6, 0x8417f00,6, 0x8417f20,6, 0x8417f40,6, 0x8417f60,6, 0x8417f80,6, 0x8417fa0,6, 0x8417fc0,6, 0x8417fe0,6, 0x8418000,6, 0x8418020,6, 0x8418040,6, 0x8418060,6, 0x8418080,6, 0x84180a0,6, 0x84180c0,6, 0x84180e0,6, 0x8418100,6, 0x8418120,6, 0x8418140,6, 0x8418160,6, 0x8418180,6, 0x84181a0,6, 0x84181c0,6, 0x84181e0,6, 0x8418200,6, 0x8418220,6, 0x8418240,6, 0x8418260,6, 0x8418280,6, 0x84182a0,6, 0x84182c0,6, 0x84182e0,6, 0x8418300,6, 0x8418320,6, 0x8418340,6, 0x8418360,6, 0x8418380,6, 0x84183a0,6, 0x84183c0,6, 0x84183e0,6, 0x8418400,6, 0x8418420,6, 0x8418440,6, 0x8418460,6, 0x8418480,6, 0x84184a0,6, 0x84184c0,6, 0x84184e0,6, 0x8418500,6, 0x8418520,6, 0x8418540,6, 0x8418560,6, 0x8418580,6, 0x84185a0,6, 0x84185c0,6, 0x84185e0,6, 0x8418600,6, 0x8418620,6, 0x8418640,6, 0x8418660,6, 0x8418680,6, 0x84186a0,6, 0x84186c0,6, 0x84186e0,6, 0x8418700,6, 0x8418720,6, 0x8418740,6, 0x8418760,6, 0x8418780,6, 0x84187a0,6, 0x84187c0,6, 0x84187e0,6, 0x8418800,6, 0x8418820,6, 0x8418840,6, 0x8418860,6, 0x8418880,6, 0x84188a0,6, 0x84188c0,6, 0x84188e0,6, 0x8418900,6, 0x8418920,6, 0x8418940,6, 0x8418960,6, 0x8418980,6, 0x84189a0,6, 0x84189c0,6, 0x84189e0,6, 0x8418a00,6, 0x8418a20,6, 0x8418a40,6, 0x8418a60,6, 0x8418a80,6, 0x8418aa0,6, 0x8418ac0,6, 0x8418ae0,6, 0x8418b00,6, 0x8418b20,6, 0x8418b40,6, 0x8418b60,6, 0x8418b80,6, 0x8418ba0,6, 0x8418bc0,6, 0x8418be0,6, 0x8418c00,6, 0x8418c20,6, 0x8418c40,6, 0x8418c60,6, 0x8418c80,6, 0x8418ca0,6, 0x8418cc0,6, 0x8418ce0,6, 0x8418d00,6, 0x8418d20,6, 0x8418d40,6, 0x8418d60,6, 0x8418d80,6, 0x8418da0,6, 0x8418dc0,6, 0x8418de0,6, 0x8418e00,6, 0x8418e20,6, 0x8418e40,6, 0x8418e60,6, 0x8418e80,6, 0x8418ea0,6, 0x8418ec0,6, 0x8418ee0,6, 0x8418f00,6, 0x8418f20,6, 0x8418f40,6, 0x8418f60,6, 0x8418f80,6, 0x8418fa0,6, 0x8418fc0,6, 0x8418fe0,6, 0x8419000,6, 0x8419020,6, 0x8419040,6, 0x8419060,6, 0x8419080,6, 0x84190a0,6, 0x84190c0,6, 0x84190e0,6, 0x8419100,6, 0x8419120,6, 0x8419140,6, 0x8419160,6, 0x8419180,6, 0x84191a0,6, 0x84191c0,6, 0x84191e0,6, 0x8419200,6, 0x8419220,6, 0x8419240,6, 0x8419260,6, 0x8419280,6, 0x84192a0,6, 0x84192c0,6, 0x84192e0,6, 0x8419300,6, 0x8419320,6, 0x8419340,6, 0x8419360,6, 0x8419380,6, 0x84193a0,6, 0x84193c0,6, 0x84193e0,6, 0x8419400,6, 0x8419420,6, 0x8419440,6, 0x8419460,6, 0x8419480,6, 0x84194a0,6, 0x84194c0,6, 0x84194e0,6, 0x8419500,6, 0x8419520,6, 0x8419540,6, 0x8419560,6, 0x8419580,6, 0x84195a0,6, 0x84195c0,6, 0x84195e0,6, 0x8419600,6, 0x8419620,6, 0x8419640,6, 0x8419660,6, 0x8419680,6, 0x84196a0,6, 0x84196c0,6, 0x84196e0,6, 0x8419700,6, 0x8419720,6, 0x8419740,6, 0x8419760,6, 0x8419780,6, 0x84197a0,6, 0x84197c0,6, 0x84197e0,6, 0x8419800,6, 0x8419820,6, 0x8419840,6, 0x8419860,6, 0x8419880,6, 0x84198a0,6, 0x84198c0,6, 0x84198e0,6, 0x8419900,6, 0x8419920,6, 0x8419940,6, 0x8419960,6, 0x8419980,6, 0x84199a0,6, 0x84199c0,6, 0x84199e0,6, 0x8419a00,6, 0x8419a20,6, 0x8419a40,6, 0x8419a60,6, 0x8419a80,6, 0x8419aa0,6, 0x8419ac0,6, 0x8419ae0,6, 0x8419b00,6, 0x8419b20,6, 0x8419b40,6, 0x8419b60,6, 0x8419b80,6, 0x8419ba0,6, 0x8419bc0,6, 0x8419be0,6, 0x8419c00,6, 0x8419c20,6, 0x8419c40,6, 0x8419c60,6, 0x8419c80,6, 0x8419ca0,6, 0x8419cc0,6, 0x8419ce0,6, 0x8419d00,6, 0x8419d20,6, 0x8419d40,6, 0x8419d60,6, 0x8419d80,6, 0x8419da0,6, 0x8419dc0,6, 0x8419de0,6, 0x8419e00,6, 0x8419e20,6, 0x8419e40,6, 0x8419e60,6, 0x8419e80,6, 0x8419ea0,6, 0x8419ec0,6, 0x8419ee0,6, 0x8419f00,6, 0x8419f20,6, 0x8419f40,6, 0x8419f60,6, 0x8419f80,6, 0x8419fa0,6, 0x8419fc0,6, 0x8419fe0,6, 0x841a000,6, 0x841a020,6, 0x841a040,6, 0x841a060,6, 0x841a080,6, 0x841a0a0,6, 0x841a0c0,6, 0x841a0e0,6, 0x841a100,6, 0x841a120,6, 0x841a140,6, 0x841a160,6, 0x841a180,6, 0x841a1a0,6, 0x841a1c0,6, 0x841a1e0,6, 0x841a200,6, 0x841a220,6, 0x841a240,6, 0x841a260,6, 0x841a280,6, 0x841a2a0,6, 0x841a2c0,6, 0x841a2e0,6, 0x841a300,6, 0x841a320,6, 0x841a340,6, 0x841a360,6, 0x841a380,6, 0x841a3a0,6, 0x841a3c0,6, 0x841a3e0,6, 0x841a400,6, 0x841a420,6, 0x841a440,6, 0x841a460,6, 0x841a480,6, 0x841a4a0,6, 0x841a4c0,6, 0x841a4e0,6, 0x841a500,6, 0x841a520,6, 0x841a540,6, 0x841a560,6, 0x841a580,6, 0x841a5a0,6, 0x841a5c0,6, 0x841a5e0,6, 0x841a600,6, 0x841a620,6, 0x841a640,6, 0x841a660,6, 0x841a680,6, 0x841a6a0,6, 0x841a6c0,6, 0x841a6e0,6, 0x841a700,6, 0x841a720,6, 0x841a740,6, 0x841a760,6, 0x841a780,6, 0x841a7a0,6, 0x841a7c0,6, 0x841a7e0,6, 0x841a800,6, 0x841a820,6, 0x841a840,6, 0x841a860,6, 0x841a880,6, 0x841a8a0,6, 0x841a8c0,6, 0x841a8e0,6, 0x841a900,6, 0x841a920,6, 0x841a940,6, 0x841a960,6, 0x841a980,6, 0x841a9a0,6, 0x841a9c0,6, 0x841a9e0,6, 0x841aa00,6, 0x841aa20,6, 0x841aa40,6, 0x841aa60,6, 0x841aa80,6, 0x841aaa0,6, 0x841aac0,6, 0x841aae0,6, 0x841ab00,6, 0x841ab20,6, 0x841ab40,6, 0x841ab60,6, 0x841ab80,6, 0x841aba0,6, 0x841abc0,6, 0x841abe0,6, 0x841ac00,6, 0x841ac20,6, 0x841ac40,6, 0x841ac60,6, 0x841ac80,6, 0x841aca0,6, 0x841acc0,6, 0x841ace0,6, 0x841ad00,6, 0x841ad20,6, 0x841ad40,6, 0x841ad60,6, 0x841ad80,6, 0x841ada0,6, 0x841adc0,6, 0x841ade0,6, 0x841ae00,6, 0x841ae20,6, 0x841ae40,6, 0x841ae60,6, 0x841ae80,6, 0x841aea0,6, 0x841aec0,6, 0x841aee0,6, 0x841af00,6, 0x841af20,6, 0x841af40,6, 0x841af60,6, 0x841af80,6, 0x841afa0,6, 0x841afc0,6, 0x841afe0,6, 0x841b000,6, 0x841b020,6, 0x841b040,6, 0x841b060,6, 0x841b080,6, 0x841b0a0,6, 0x841b0c0,6, 0x841b0e0,6, 0x841b100,6, 0x841b120,6, 0x841b140,6, 0x841b160,6, 0x841b180,6, 0x841b1a0,6, 0x841b1c0,6, 0x841b1e0,6, 0x841b200,6, 0x841b220,6, 0x841b240,6, 0x841b260,6, 0x841b280,6, 0x841b2a0,6, 0x841b2c0,6, 0x841b2e0,6, 0x841b300,6, 0x841b320,6, 0x841b340,6, 0x841b360,6, 0x841b380,6, 0x841b3a0,6, 0x841b3c0,6, 0x841b3e0,6, 0x841b400,6, 0x841b420,6, 0x841b440,6, 0x841b460,6, 0x841b480,6, 0x841b4a0,6, 0x841b4c0,6, 0x841b4e0,6, 0x841b500,6, 0x841b520,6, 0x841b540,6, 0x841b560,6, 0x841b580,6, 0x841b5a0,6, 0x841b5c0,6, 0x841b5e0,6, 0x841b600,6, 0x841b620,6, 0x841b640,6, 0x841b660,6, 0x841b680,6, 0x841b6a0,6, 0x841b6c0,6, 0x841b6e0,6, 0x841b700,6, 0x841b720,6, 0x841b740,6, 0x841b760,6, 0x841b780,6, 0x841b7a0,6, 0x841b7c0,6, 0x841b7e0,6, 0x841b800,6, 0x841b820,6, 0x841b840,6, 0x841b860,6, 0x841b880,6, 0x841b8a0,6, 0x841b8c0,6, 0x841b8e0,6, 0x841b900,6, 0x841b920,6, 0x841b940,6, 0x841b960,6, 0x841b980,6, 0x841b9a0,6, 0x841b9c0,6, 0x841b9e0,6, 0x841ba00,6, 0x841ba20,6, 0x841ba40,6, 0x841ba60,6, 0x841ba80,6, 0x841baa0,6, 0x841bac0,6, 0x841bae0,6, 0x841bb00,6, 0x841bb20,6, 0x841bb40,6, 0x841bb60,6, 0x841bb80,6, 0x841bba0,6, 0x841bbc0,6, 0x841bbe0,6, 0x841bc00,6, 0x841bc20,6, 0x841bc40,6, 0x841bc60,6, 0x841bc80,6, 0x841bca0,6, 0x841bcc0,6, 0x841bce0,6, 0x841bd00,6, 0x841bd20,6, 0x841bd40,6, 0x841bd60,6, 0x841bd80,6, 0x841bda0,6, 0x841bdc0,6, 0x841bde0,6, 0x841be00,6, 0x841be20,6, 0x841be40,6, 0x841be60,6, 0x841be80,6, 0x841bea0,6, 0x841bec0,6, 0x841bee0,6, 0x841bf00,6, 0x841bf20,6, 0x841bf40,6, 0x841bf60,6, 0x841bf80,6, 0x841bfa0,6, 0x841bfc0,6, 0x841bfe0,6, 0x841c000,6, 0x841c020,6, 0x841c040,6, 0x841c060,6, 0x841c080,6, 0x841c0a0,6, 0x841c0c0,6, 0x841c0e0,6, 0x841c100,6, 0x841c120,6, 0x841c140,6, 0x841c160,6, 0x841c180,6, 0x841c1a0,6, 0x841c1c0,6, 0x841c1e0,6, 0x841c200,6, 0x841c220,6, 0x841c240,6, 0x841c260,6, 0x841c280,6, 0x841c2a0,6, 0x841c2c0,6, 0x841c2e0,6, 0x841c300,6, 0x841c320,6, 0x841c340,6, 0x841c360,6, 0x841c380,6, 0x841c3a0,6, 0x841c3c0,6, 0x841c3e0,6, 0x841c400,6, 0x841c420,6, 0x841c440,6, 0x841c460,6, 0x841c480,6, 0x841c4a0,6, 0x841c4c0,6, 0x841c4e0,6, 0x841c500,6, 0x841c520,6, 0x841c540,6, 0x841c560,6, 0x841c580,6, 0x841c5a0,6, 0x841c5c0,6, 0x841c5e0,6, 0x841c600,6, 0x841c620,6, 0x841c640,6, 0x841c660,6, 0x841c680,6, 0x841c6a0,6, 0x841c6c0,6, 0x841c6e0,6, 0x841c700,6, 0x841c720,6, 0x841c740,6, 0x841c760,6, 0x841c780,6, 0x841c7a0,6, 0x841c7c0,6, 0x841c7e0,6, 0x841c800,6, 0x841c820,6, 0x841c840,6, 0x841c860,6, 0x841c880,6, 0x841c8a0,6, 0x841c8c0,6, 0x841c8e0,6, 0x841c900,6, 0x841c920,6, 0x841c940,6, 0x841c960,6, 0x841c980,6, 0x841c9a0,6, 0x841c9c0,6, 0x841c9e0,6, 0x841ca00,6, 0x841ca20,6, 0x841ca40,6, 0x841ca60,6, 0x841ca80,6, 0x841caa0,6, 0x841cac0,6, 0x841cae0,6, 0x841cb00,6, 0x841cb20,6, 0x841cb40,6, 0x841cb60,6, 0x841cb80,6, 0x841cba0,6, 0x841cbc0,6, 0x841cbe0,6, 0x841cc00,6, 0x841cc20,6, 0x841cc40,6, 0x841cc60,6, 0x841cc80,6, 0x841cca0,6, 0x841ccc0,6, 0x841cce0,6, 0x841cd00,6, 0x841cd20,6, 0x841cd40,6, 0x841cd60,6, 0x841cd80,6, 0x841cda0,6, 0x841cdc0,6, 0x841cde0,6, 0x841ce00,6, 0x841ce20,6, 0x841ce40,6, 0x841ce60,6, 0x841ce80,6, 0x841cea0,6, 0x841cec0,6, 0x841cee0,6, 0x841cf00,6, 0x841cf20,6, 0x841cf40,6, 0x841cf60,6, 0x841cf80,6, 0x841cfa0,6, 0x841cfc0,6, 0x841cfe0,6, 0x841d000,6, 0x841d020,6, 0x841d040,6, 0x841d060,6, 0x841d080,6, 0x841d0a0,6, 0x841d0c0,6, 0x841d0e0,6, 0x841d100,6, 0x841d120,6, 0x841d140,6, 0x841d160,6, 0x841d180,6, 0x841d1a0,6, 0x841d1c0,6, 0x841d1e0,6, 0x841d200,6, 0x841d220,6, 0x841d240,6, 0x841d260,6, 0x841d280,6, 0x841d2a0,6, 0x841d2c0,6, 0x841d2e0,6, 0x841d300,6, 0x841d320,6, 0x841d340,6, 0x841d360,6, 0x841d380,6, 0x841d3a0,6, 0x841d3c0,6, 0x841d3e0,6, 0x841d400,6, 0x841d420,6, 0x841d440,6, 0x841d460,6, 0x841d480,6, 0x841d4a0,6, 0x841d4c0,6, 0x841d4e0,6, 0x841d500,6, 0x841d520,6, 0x841d540,6, 0x841d560,6, 0x841d580,6, 0x841d5a0,6, 0x841d5c0,6, 0x841d5e0,6, 0x841d600,6, 0x841d620,6, 0x841d640,6, 0x841d660,6, 0x841d680,6, 0x841d6a0,6, 0x841d6c0,6, 0x841d6e0,6, 0x841d700,6, 0x841d720,6, 0x841d740,6, 0x841d760,6, 0x841d780,6, 0x841d7a0,6, 0x841d7c0,6, 0x841d7e0,6, 0x841d800,6, 0x841d820,6, 0x841d840,6, 0x841d860,6, 0x841d880,6, 0x841d8a0,6, 0x841d8c0,6, 0x841d8e0,6, 0x841d900,6, 0x841d920,6, 0x841d940,6, 0x841d960,6, 0x841d980,6, 0x841d9a0,6, 0x841d9c0,6, 0x841d9e0,6, 0x841da00,6, 0x841da20,6, 0x841da40,6, 0x841da60,6, 0x841da80,6, 0x841daa0,6, 0x841dac0,6, 0x841dae0,6, 0x841db00,6, 0x841db20,6, 0x841db40,6, 0x841db60,6, 0x841db80,6, 0x841dba0,6, 0x841dbc0,6, 0x841dbe0,6, 0x841dc00,6, 0x841dc20,6, 0x841dc40,6, 0x841dc60,6, 0x841dc80,6, 0x841dca0,6, 0x841dcc0,6, 0x841dce0,6, 0x841dd00,6, 0x841dd20,6, 0x841dd40,6, 0x841dd60,6, 0x841dd80,6, 0x841dda0,6, 0x841ddc0,6, 0x841dde0,6, 0x841de00,6, 0x841de20,6, 0x841de40,6, 0x841de60,6, 0x841de80,6, 0x841dea0,6, 0x841dec0,6, 0x841dee0,6, 0x841df00,6, 0x841df20,6, 0x841df40,6, 0x841df60,6, 0x841df80,6, 0x841dfa0,6, 0x841dfc0,6, 0x841dfe0,6, 0x841e000,6, 0x841e020,6, 0x841e040,6, 0x841e060,6, 0x841e080,6, 0x841e0a0,6, 0x841e0c0,6, 0x841e0e0,6, 0x841e100,6, 0x841e120,6, 0x841e140,6, 0x841e160,6, 0x841e180,6, 0x841e1a0,6, 0x841e1c0,6, 0x841e1e0,6, 0x841e200,6, 0x841e220,6, 0x841e240,6, 0x841e260,6, 0x841e280,6, 0x841e2a0,6, 0x841e2c0,6, 0x841e2e0,6, 0x841e300,6, 0x841e320,6, 0x841e340,6, 0x841e360,6, 0x841e380,6, 0x841e3a0,6, 0x841e3c0,6, 0x841e3e0,6, 0x841e400,6, 0x841e420,6, 0x841e440,6, 0x841e460,6, 0x841e480,6, 0x841e4a0,6, 0x841e4c0,6, 0x841e4e0,6, 0x841e500,6, 0x841e520,6, 0x841e540,6, 0x841e560,6, 0x841e580,6, 0x841e5a0,6, 0x841e5c0,6, 0x841e5e0,6, 0x841e600,6, 0x841e620,6, 0x841e640,6, 0x841e660,6, 0x841e680,6, 0x841e6a0,6, 0x841e6c0,6, 0x841e6e0,6, 0x841e700,6, 0x841e720,6, 0x841e740,6, 0x841e760,6, 0x841e780,6, 0x841e7a0,6, 0x841e7c0,6, 0x841e7e0,6, 0x841e800,6, 0x841e820,6, 0x841e840,6, 0x841e860,6, 0x841e880,6, 0x841e8a0,6, 0x841e8c0,6, 0x841e8e0,6, 0x841e900,6, 0x841e920,6, 0x841e940,6, 0x841e960,6, 0x841e980,6, 0x841e9a0,6, 0x841e9c0,6, 0x841e9e0,6, 0x841ea00,6, 0x841ea20,6, 0x841ea40,6, 0x841ea60,6, 0x841ea80,6, 0x841eaa0,6, 0x841eac0,6, 0x841eae0,6, 0x841eb00,6, 0x841eb20,6, 0x841eb40,6, 0x841eb60,6, 0x841eb80,6, 0x841eba0,6, 0x841ebc0,6, 0x841ebe0,6, 0x841ec00,6, 0x841ec20,6, 0x841ec40,6, 0x841ec60,6, 0x841ec80,6, 0x841eca0,6, 0x841ecc0,6, 0x841ece0,6, 0x841ed00,6, 0x841ed20,6, 0x841ed40,6, 0x841ed60,6, 0x841ed80,6, 0x841eda0,6, 0x841edc0,6, 0x841ede0,6, 0x841ee00,6, 0x841ee20,6, 0x841ee40,6, 0x841ee60,6, 0x841ee80,6, 0x841eea0,6, 0x841eec0,6, 0x841eee0,6, 0x841ef00,6, 0x841ef20,6, 0x841ef40,6, 0x841ef60,6, 0x841ef80,6, 0x841efa0,6, 0x841efc0,6, 0x841efe0,6, 0x841f000,6, 0x841f020,6, 0x841f040,6, 0x841f060,6, 0x841f080,6, 0x841f0a0,6, 0x841f0c0,6, 0x841f0e0,6, 0x841f100,6, 0x841f120,6, 0x841f140,6, 0x841f160,6, 0x841f180,6, 0x841f1a0,6, 0x841f1c0,6, 0x841f1e0,6, 0x841f200,6, 0x841f220,6, 0x841f240,6, 0x841f260,6, 0x841f280,6, 0x841f2a0,6, 0x841f2c0,6, 0x841f2e0,6, 0x841f300,6, 0x841f320,6, 0x841f340,6, 0x841f360,6, 0x841f380,6, 0x841f3a0,6, 0x841f3c0,6, 0x841f3e0,6, 0x841f400,6, 0x841f420,6, 0x841f440,6, 0x841f460,6, 0x841f480,6, 0x841f4a0,6, 0x841f4c0,6, 0x841f4e0,6, 0x841f500,6, 0x841f520,6, 0x841f540,6, 0x841f560,6, 0x841f580,6, 0x841f5a0,6, 0x841f5c0,6, 0x841f5e0,6, 0x841f600,6, 0x841f620,6, 0x841f640,6, 0x841f660,6, 0x841f680,6, 0x841f6a0,6, 0x841f6c0,6, 0x841f6e0,6, 0x841f700,6, 0x841f720,6, 0x841f740,6, 0x841f760,6, 0x841f780,6, 0x841f7a0,6, 0x841f7c0,6, 0x841f7e0,6, 0x841f800,6, 0x841f820,6, 0x841f840,6, 0x841f860,6, 0x841f880,6, 0x841f8a0,6, 0x841f8c0,6, 0x841f8e0,6, 0x841f900,6, 0x841f920,6, 0x841f940,6, 0x841f960,6, 0x841f980,6, 0x841f9a0,6, 0x841f9c0,6, 0x841f9e0,6, 0x841fa00,6, 0x841fa20,6, 0x841fa40,6, 0x841fa60,6, 0x841fa80,6, 0x841faa0,6, 0x841fac0,6, 0x841fae0,6, 0x841fb00,6, 0x841fb20,6, 0x841fb40,6, 0x841fb60,6, 0x841fb80,6, 0x841fba0,6, 0x841fbc0,6, 0x841fbe0,6, 0x841fc00,6, 0x841fc20,6, 0x841fc40,6, 0x841fc60,6, 0x841fc80,6, 0x841fca0,6, 0x841fcc0,6, 0x841fce0,6, 0x841fd00,6, 0x841fd20,6, 0x841fd40,6, 0x841fd60,6, 0x841fd80,6, 0x841fda0,6, 0x841fdc0,6, 0x841fde0,6, 0x841fe00,6, 0x841fe20,6, 0x841fe40,6, 0x841fe60,6, 0x841fe80,6, 0x841fea0,6, 0x841fec0,6, 0x841fee0,6, 0x841ff00,6, 0x841ff20,6, 0x841ff40,6, 0x841ff60,6, 0x841ff80,6, 0x841ffa0,6, 0x841ffc0,6, 0x841ffe0,6, 0x8420000,6, 0x8420020,6, 0x8420040,6, 0x8420060,6, 0x8420080,6, 0x84200a0,6, 0x84200c0,6, 0x84200e0,6, 0x8420100,6, 0x8420120,6, 0x8420140,6, 0x8420160,6, 0x8420180,6, 0x84201a0,6, 0x84201c0,6, 0x84201e0,6, 0x8420200,6, 0x8420220,6, 0x8420240,6, 0x8420260,6, 0x8420280,6, 0x84202a0,6, 0x84202c0,6, 0x84202e0,6, 0x8420300,6, 0x8420320,6, 0x8420340,6, 0x8420360,6, 0x8420380,6, 0x84203a0,6, 0x84203c0,6, 0x84203e0,6, 0x8420400,6, 0x8420420,6, 0x8420440,6, 0x8420460,6, 0x8420480,6, 0x84204a0,6, 0x84204c0,6, 0x84204e0,6, 0x8420500,6, 0x8420520,6, 0x8420540,6, 0x8420560,6, 0x8420580,6, 0x84205a0,6, 0x84205c0,6, 0x84205e0,6, 0x8440000,2, 0x8440040,9, 0x8440080,19, 0x8480000,9, 0x8480040,9, 0x8480080,9, 0x84800c0,9, 0x8480100,9, 0x8480140,9, 0x8480180,9, 0x84801c0,9, 0x8480200,9, 0x8480240,9, 0x8480280,9, 0x84802c0,9, 0x8480300,9, 0x8480340,9, 0x8480380,9, 0x84803c0,9, 0x8480400,9, 0x8480440,9, 0x8480480,9, 0x84804c0,9, 0x8480500,9, 0x8480540,9, 0x8480580,9, 0x84805c0,9, 0x8480600,9, 0x8480640,9, 0x8480680,9, 0x84806c0,9, 0x8480700,9, 0x8480740,9, 0x8480780,9, 0x84807c0,9, 0x8480800,9, 0x8480840,9, 0x8480880,9, 0x84808c0,9, 0x8480900,9, 0x8480940,9, 0x8480980,9, 0x84809c0,9, 0x8480a00,9, 0x8480a40,9, 0x8480a80,9, 0x8480ac0,9, 0x8480b00,9, 0x8480b40,9, 0x8480b80,9, 0x8480bc0,9, 0x8480c00,9, 0x8480c40,9, 0x8480c80,9, 0x8480cc0,9, 0x8480d00,9, 0x8480d40,9, 0x8480d80,9, 0x8480dc0,9, 0x8480e00,9, 0x8480e40,9, 0x8480e80,9, 0x8480ec0,9, 0x8480f00,9, 0x8480f40,9, 0x8480f80,9, 0x8480fc0,9, 0x8481000,9, 0x8481040,9, 0x8481080,9, 0x84810c0,9, 0x8481100,9, 0x8481140,9, 0x8481180,9, 0x84811c0,9, 0x8481200,9, 0x8481240,9, 0x8481280,9, 0x84812c0,9, 0x8481300,9, 0x8481340,9, 0x8481380,9, 0x84813c0,9, 0x8481400,9, 0x8481440,9, 0x8481480,9, 0x84814c0,9, 0x8481500,9, 0x8481540,9, 0x8481580,9, 0x84815c0,9, 0x8481600,9, 0x8481640,9, 0x8481680,9, 0x84816c0,9, 0x8481700,9, 0x8481740,9, 0x8481780,9, 0x84817c0,9, 0x8481800,9, 0x8481840,9, 0x8481880,9, 0x84818c0,9, 0x8481900,9, 0x8481940,9, 0x8481980,9, 0x84819c0,9, 0x8481a00,9, 0x8481a40,9, 0x8481a80,9, 0x8481ac0,9, 0x8481b00,9, 0x8481b40,9, 0x8481b80,9, 0x8481bc0,9, 0x8481c00,9, 0x8481c40,9, 0x8481c80,9, 0x8481cc0,9, 0x8481d00,9, 0x8481d40,9, 0x8481d80,9, 0x8481dc0,9, 0x8481e00,9, 0x8481e40,9, 0x8481e80,9, 0x8481ec0,9, 0x8481f00,9, 0x8481f40,9, 0x8481f80,9, 0x8481fc0,9, 0x8482000,9, 0x8482040,9, 0x8482080,9, 0x84820c0,9, 0x8482100,9, 0x8482140,9, 0x8482180,9, 0x84821c0,9, 0x8482200,9, 0x8482240,9, 0x8482280,9, 0x84822c0,9, 0x8482300,9, 0x8482340,9, 0x8482380,9, 0x84823c0,9, 0x8482400,9, 0x8482440,9, 0x8482480,9, 0x84824c0,9, 0x8482500,9, 0x8482540,9, 0x8482580,9, 0x84825c0,9, 0x8482600,9, 0x8482640,9, 0x8482680,9, 0x84826c0,9, 0x8482700,9, 0x8482740,9, 0x8482780,9, 0x84827c0,9, 0x8482800,9, 0x8482840,9, 0x8482880,9, 0x84828c0,9, 0x8482900,9, 0x8482940,9, 0x8482980,9, 0x84829c0,9, 0x8482a00,9, 0x8482a40,9, 0x8482a80,9, 0x8482ac0,9, 0x8482b00,9, 0x8482b40,9, 0x8482b80,9, 0x8482bc0,9, 0x8482c00,9, 0x8482c40,9, 0x8482c80,9, 0x8482cc0,9, 0x8482d00,9, 0x8482d40,9, 0x8482d80,9, 0x8482dc0,9, 0x8482e00,9, 0x8482e40,9, 0x8482e80,9, 0x8482ec0,9, 0x8482f00,9, 0x8482f40,9, 0x8482f80,9, 0x8482fc0,9, 0x8483000,9, 0x8483040,9, 0x8483080,9, 0x84830c0,9, 0x8483100,9, 0x8483140,9, 0x8483180,9, 0x84831c0,9, 0x8483200,9, 0x8483240,9, 0x8483280,9, 0x84832c0,9, 0x8483300,9, 0x8483340,9, 0x8483380,9, 0x84833c0,9, 0x8483400,9, 0x8483440,9, 0x8483480,9, 0x84834c0,9, 0x8483500,9, 0x8483540,9, 0x8483580,9, 0x84835c0,9, 0x8483600,9, 0x8483640,9, 0x8483680,9, 0x84836c0,9, 0x8483700,9, 0x8483740,9, 0x8483780,9, 0x84837c0,9, 0x8483800,9, 0x8483840,9, 0x8483880,9, 0x84838c0,9, 0x8483900,9, 0x8483940,9, 0x8483980,9, 0x84839c0,9, 0x8483a00,9, 0x8483a40,9, 0x8483a80,9, 0x8483ac0,9, 0x8483b00,9, 0x8483b40,9, 0x8483b80,9, 0x8483bc0,9, 0x8483c00,9, 0x8483c40,9, 0x8483c80,9, 0x8483cc0,9, 0x8483d00,9, 0x8483d40,9, 0x8483d80,9, 0x8483dc0,9, 0x8483e00,9, 0x8483e40,9, 0x8483e80,9, 0x8483ec0,9, 0x8483f00,9, 0x8483f40,9, 0x8483f80,9, 0x8483fc0,9, 0x8484000,9, 0x8484040,9, 0x8484080,9, 0x8488000,2, 0x8488040,9, 0x8488080,11, 0x84880c0,11, 0x8488100,3, 0x8490000,5, 0x8490020,5, 0x8490040,5, 0x8490060,5, 0x8490080,5, 0x84900a0,5, 0x84900c0,5, 0x84900e0,5, 0x8490100,5, 0x8490120,5, 0x8490140,5, 0x8490160,5, 0x8490180,5, 0x84901a0,5, 0x84901c0,5, 0x84901e0,5, 0x8490200,2, 0x8490240,9, 0x8490280,6, 0x84902a0,6, 0x84902c0,3, 0x8490404,1, 0x8490440,16, 0x8490484,1, 0x8490498,10, 0x84904c4,1, 0x84904d8,10, 0x8490504,1, 0x8490510,12, 0x8500000,5, 0x8500020,5, 0x8500040,5, 0x8500060,5, 0x8500080,5, 0x85000a0,5, 0x85000c0,5, 0x85000e0,5, 0x8500100,5, 0x8500120,5, 0x8500140,5, 0x8500160,5, 0x8500180,5, 0x85001a0,5, 0x85001c0,5, 0x85001e0,5, 0x8500200,5, 0x8500220,5, 0x8500240,5, 0x8500260,5, 0x8500280,5, 0x85002a0,5, 0x85002c0,5, 0x85002e0,5, 0x8500300,5, 0x8500320,5, 0x8500340,5, 0x8500360,5, 0x8500380,5, 0x85003a0,5, 0x85003c0,5, 0x85003e0,5, 0x8500400,5, 0x8500420,5, 0x8500440,5, 0x8500460,5, 0x8500480,5, 0x85004a0,5, 0x85004c0,5, 0x85004e0,5, 0x8500500,5, 0x8500520,5, 0x8500540,5, 0x8500560,5, 0x8500580,5, 0x85005a0,5, 0x85005c0,5, 0x85005e0,5, 0x8500600,5, 0x8500620,5, 0x8500640,5, 0x8500660,5, 0x8500680,5, 0x85006a0,5, 0x85006c0,5, 0x85006e0,5, 0x8500700,5, 0x8500720,5, 0x8500740,5, 0x8500760,5, 0x8500780,5, 0x85007a0,5, 0x85007c0,5, 0x85007e0,5, 0x8500800,5, 0x8500820,5, 0x8500840,5, 0x8500860,5, 0x8500880,5, 0x85008a0,5, 0x85008c0,5, 0x85008e0,5, 0x8500900,5, 0x8500920,5, 0x8500940,5, 0x8500960,5, 0x8500980,5, 0x85009a0,5, 0x85009c0,5, 0x85009e0,5, 0x8500a00,5, 0x8500a20,5, 0x8500a40,5, 0x8500a60,5, 0x8500a80,5, 0x8500aa0,5, 0x8500ac0,5, 0x8500ae0,5, 0x8500b00,5, 0x8500b20,5, 0x8500b40,5, 0x8500b60,5, 0x8500b80,5, 0x8500ba0,5, 0x8500bc0,5, 0x8500be0,5, 0x8500c00,5, 0x8500c20,5, 0x8500c40,5, 0x8500c60,5, 0x8500c80,5, 0x8500ca0,5, 0x8500cc0,5, 0x8500ce0,5, 0x8500d00,5, 0x8500d20,5, 0x8500d40,5, 0x8500d60,5, 0x8500d80,5, 0x8500da0,5, 0x8500dc0,5, 0x8500de0,5, 0x8500e00,5, 0x8500e20,5, 0x8500e40,5, 0x8500e60,5, 0x8500e80,5, 0x8500ea0,5, 0x8500ec0,5, 0x8500ee0,5, 0x8500f00,5, 0x8500f20,5, 0x8500f40,5, 0x8500f60,5, 0x8500f80,5, 0x8500fa0,5, 0x8500fc0,5, 0x8500fe0,5, 0x8501000,5, 0x8501020,5, 0x8501040,5, 0x8501060,5, 0x8501080,5, 0x85010a0,5, 0x85010c0,5, 0x85010e0,5, 0x8501100,5, 0x8501120,5, 0x8501140,5, 0x8501160,5, 0x8501180,5, 0x85011a0,5, 0x85011c0,5, 0x85011e0,5, 0x8501200,5, 0x8501220,5, 0x8501240,5, 0x8501260,5, 0x8501280,5, 0x85012a0,5, 0x85012c0,5, 0x85012e0,5, 0x8501300,5, 0x8501320,5, 0x8501340,5, 0x8501360,5, 0x8501380,5, 0x85013a0,5, 0x85013c0,5, 0x85013e0,5, 0x8501400,5, 0x8501420,5, 0x8501440,5, 0x8501460,5, 0x8501480,5, 0x85014a0,5, 0x85014c0,5, 0x85014e0,5, 0x8501500,5, 0x8501520,5, 0x8501540,5, 0x8501560,5, 0x8501580,5, 0x85015a0,5, 0x85015c0,5, 0x85015e0,5, 0x8501600,5, 0x8501620,5, 0x8501640,5, 0x8501660,5, 0x8501680,5, 0x85016a0,5, 0x85016c0,5, 0x85016e0,5, 0x8501700,5, 0x8501720,5, 0x8501740,5, 0x8501760,5, 0x8501780,5, 0x85017a0,5, 0x85017c0,5, 0x85017e0,5, 0x8501800,5, 0x8501820,5, 0x8501840,5, 0x8501860,5, 0x8501880,5, 0x85018a0,5, 0x85018c0,5, 0x85018e0,5, 0x8501900,5, 0x8501920,5, 0x8501940,5, 0x8501960,5, 0x8501980,5, 0x85019a0,5, 0x85019c0,5, 0x85019e0,5, 0x8501a00,5, 0x8501a20,5, 0x8501a40,5, 0x8501a60,5, 0x8501a80,5, 0x8501aa0,5, 0x8501ac0,5, 0x8501ae0,5, 0x8501b00,5, 0x8501b20,5, 0x8501b40,5, 0x8501b60,5, 0x8501b80,5, 0x8501ba0,5, 0x8501bc0,5, 0x8501be0,5, 0x8501c00,5, 0x8501c20,5, 0x8501c40,5, 0x8501c60,5, 0x8501c80,5, 0x8501ca0,5, 0x8501cc0,5, 0x8501ce0,5, 0x8501d00,5, 0x8501d20,5, 0x8501d40,5, 0x8501d60,5, 0x8501d80,5, 0x8501da0,5, 0x8501dc0,5, 0x8501de0,5, 0x8501e00,5, 0x8501e20,5, 0x8501e40,5, 0x8501e60,5, 0x8501e80,5, 0x8501ea0,5, 0x8501ec0,5, 0x8501ee0,5, 0x8501f00,5, 0x8501f20,5, 0x8501f40,5, 0x8501f60,5, 0x8501f80,5, 0x8501fa0,5, 0x8501fc0,5, 0x8501fe0,5, 0x8502000,5, 0x8502020,5, 0x8502040,5, 0x8502060,5, 0x8502080,5, 0x85020a0,5, 0x85020c0,5, 0x85020e0,5, 0x8502100,5, 0x8502120,5, 0x8502140,5, 0x8502160,5, 0x8502180,5, 0x85021a0,5, 0x85021c0,5, 0x85021e0,5, 0x8502200,5, 0x8502220,5, 0x8502240,5, 0x8502260,5, 0x8502280,5, 0x85022a0,5, 0x85022c0,5, 0x85022e0,5, 0x8502300,5, 0x8502320,5, 0x8502340,5, 0x8502360,5, 0x8502380,5, 0x85023a0,5, 0x85023c0,5, 0x85023e0,5, 0x8502400,5, 0x8502420,5, 0x8502440,5, 0x8502460,5, 0x8502480,5, 0x85024a0,5, 0x85024c0,5, 0x85024e0,5, 0x8502500,5, 0x8502520,5, 0x8502540,5, 0x8502560,5, 0x8502580,5, 0x85025a0,5, 0x85025c0,5, 0x85025e0,5, 0x8502600,5, 0x8502620,5, 0x8502640,5, 0x8502660,5, 0x8502680,5, 0x85026a0,5, 0x85026c0,5, 0x85026e0,5, 0x8502700,5, 0x8502720,5, 0x8502740,5, 0x8502760,5, 0x8502780,5, 0x85027a0,5, 0x85027c0,5, 0x85027e0,5, 0x8502800,5, 0x8502820,5, 0x8502840,5, 0x8502860,5, 0x8502880,5, 0x85028a0,5, 0x85028c0,5, 0x85028e0,5, 0x8502900,5, 0x8502920,5, 0x8502940,5, 0x8502960,5, 0x8502980,5, 0x85029a0,5, 0x85029c0,5, 0x85029e0,5, 0x8502a00,5, 0x8502a20,5, 0x8502a40,5, 0x8502a60,5, 0x8502a80,5, 0x8502aa0,5, 0x8502ac0,5, 0x8502ae0,5, 0x8502b00,5, 0x8502b20,5, 0x8502b40,5, 0x8502b60,5, 0x8502b80,5, 0x8502ba0,5, 0x8502bc0,5, 0x8502be0,5, 0x8502c00,5, 0x8502c20,5, 0x8502c40,5, 0x8502c60,5, 0x8502c80,5, 0x8502ca0,5, 0x8502cc0,5, 0x8502ce0,5, 0x8502d00,5, 0x8502d20,5, 0x8502d40,5, 0x8502d60,5, 0x8502d80,5, 0x8502da0,5, 0x8502dc0,5, 0x8502de0,5, 0x8502e00,5, 0x8502e20,5, 0x8502e40,5, 0x8502e60,5, 0x8502e80,5, 0x8502ea0,5, 0x8502ec0,5, 0x8502ee0,5, 0x8502f00,5, 0x8502f20,5, 0x8502f40,5, 0x8502f60,5, 0x8502f80,5, 0x8502fa0,5, 0x8502fc0,5, 0x8502fe0,5, 0x8503000,5, 0x8503020,5, 0x8503040,5, 0x8503060,5, 0x8503080,5, 0x85030a0,5, 0x85030c0,5, 0x85030e0,5, 0x8503100,5, 0x8503120,5, 0x8503140,5, 0x8503160,5, 0x8503180,5, 0x85031a0,5, 0x85031c0,5, 0x85031e0,5, 0x8503200,5, 0x8503220,5, 0x8503240,5, 0x8503260,5, 0x8503280,5, 0x85032a0,5, 0x85032c0,5, 0x85032e0,5, 0x8503300,5, 0x8503320,5, 0x8503340,5, 0x8503360,5, 0x8503380,5, 0x85033a0,5, 0x85033c0,5, 0x85033e0,5, 0x8503400,5, 0x8503420,5, 0x8503440,5, 0x8503460,5, 0x8503480,5, 0x85034a0,5, 0x85034c0,5, 0x85034e0,5, 0x8503500,5, 0x8503520,5, 0x8503540,5, 0x8503560,5, 0x8503580,5, 0x85035a0,5, 0x85035c0,5, 0x85035e0,5, 0x8503600,5, 0x8503620,5, 0x8503640,5, 0x8503660,5, 0x8503680,5, 0x85036a0,5, 0x85036c0,5, 0x85036e0,5, 0x8503700,5, 0x8503720,5, 0x8503740,5, 0x8503760,5, 0x8503780,5, 0x85037a0,5, 0x85037c0,5, 0x85037e0,5, 0x8503800,5, 0x8503820,5, 0x8503840,5, 0x8503860,5, 0x8503880,5, 0x85038a0,5, 0x85038c0,5, 0x85038e0,5, 0x8503900,5, 0x8503920,5, 0x8503940,5, 0x8503960,5, 0x8503980,5, 0x85039a0,5, 0x85039c0,5, 0x85039e0,5, 0x8503a00,5, 0x8503a20,5, 0x8503a40,5, 0x8503a60,5, 0x8503a80,5, 0x8503aa0,5, 0x8503ac0,5, 0x8503ae0,5, 0x8503b00,5, 0x8503b20,5, 0x8503b40,5, 0x8503b60,5, 0x8503b80,5, 0x8503ba0,5, 0x8503bc0,5, 0x8503be0,5, 0x8503c00,5, 0x8503c20,5, 0x8503c40,5, 0x8503c60,5, 0x8503c80,5, 0x8503ca0,5, 0x8503cc0,5, 0x8503ce0,5, 0x8503d00,5, 0x8503d20,5, 0x8503d40,5, 0x8503d60,5, 0x8503d80,5, 0x8503da0,5, 0x8503dc0,5, 0x8503de0,5, 0x8503e00,5, 0x8503e20,5, 0x8503e40,5, 0x8503e60,5, 0x8503e80,5, 0x8503ea0,5, 0x8503ec0,5, 0x8503ee0,5, 0x8503f00,5, 0x8503f20,5, 0x8503f40,5, 0x8503f60,5, 0x8503f80,5, 0x8503fa0,5, 0x8503fc0,5, 0x8503fe0,5, 0x8504000,5, 0x8504020,5, 0x8504040,5, 0x8504060,5, 0x8504080,5, 0x85040a0,5, 0x85040c0,5, 0x85040e0,5, 0x8504100,5, 0x8504120,5, 0x8504140,5, 0x8504160,5, 0x8504180,5, 0x85041a0,5, 0x85041c0,5, 0x85041e0,5, 0x8504200,5, 0x8504220,5, 0x8504240,5, 0x8504260,5, 0x8504280,5, 0x85042a0,5, 0x85042c0,5, 0x85042e0,5, 0x8504300,5, 0x8504320,5, 0x8504340,5, 0x8504360,5, 0x8504380,5, 0x85043a0,5, 0x85043c0,5, 0x85043e0,5, 0x8504400,5, 0x8504420,5, 0x8504440,5, 0x8504460,5, 0x8504480,5, 0x85044a0,5, 0x85044c0,5, 0x85044e0,5, 0x8504500,5, 0x8504520,5, 0x8504540,5, 0x8504560,5, 0x8504580,5, 0x85045a0,5, 0x85045c0,5, 0x85045e0,5, 0x8504600,5, 0x8504620,5, 0x8504640,5, 0x8504660,5, 0x8504680,5, 0x85046a0,5, 0x85046c0,5, 0x85046e0,5, 0x8504700,5, 0x8504720,5, 0x8504740,5, 0x8504760,5, 0x8504780,5, 0x85047a0,5, 0x85047c0,5, 0x85047e0,5, 0x8504800,5, 0x8504820,5, 0x8504840,5, 0x8504860,5, 0x8504880,5, 0x85048a0,5, 0x85048c0,5, 0x85048e0,5, 0x8504900,5, 0x8504920,5, 0x8504940,5, 0x8504960,5, 0x8504980,5, 0x85049a0,5, 0x85049c0,5, 0x85049e0,5, 0x8504a00,5, 0x8504a20,5, 0x8504a40,5, 0x8504a60,5, 0x8504a80,5, 0x8504aa0,5, 0x8504ac0,5, 0x8504ae0,5, 0x8504b00,5, 0x8504b20,5, 0x8504b40,5, 0x8504b60,5, 0x8504b80,5, 0x8504ba0,5, 0x8504bc0,5, 0x8504be0,5, 0x8504c00,5, 0x8504c20,5, 0x8504c40,5, 0x8504c60,5, 0x8504c80,5, 0x8504ca0,5, 0x8504cc0,5, 0x8504ce0,5, 0x8504d00,5, 0x8504d20,5, 0x8504d40,5, 0x8504d60,5, 0x8504d80,5, 0x8504da0,5, 0x8504dc0,5, 0x8504de0,5, 0x8504e00,5, 0x8504e20,5, 0x8504e40,5, 0x8504e60,5, 0x8504e80,5, 0x8504ea0,5, 0x8504ec0,5, 0x8504ee0,5, 0x8504f00,5, 0x8504f20,5, 0x8504f40,5, 0x8504f60,5, 0x8504f80,5, 0x8504fa0,5, 0x8504fc0,5, 0x8504fe0,5, 0x8505000,5, 0x8505020,5, 0x8505040,5, 0x8505060,5, 0x8505080,5, 0x85050a0,5, 0x85050c0,5, 0x85050e0,5, 0x8505100,5, 0x8505120,5, 0x8505140,5, 0x8505160,5, 0x8505180,5, 0x85051a0,5, 0x85051c0,5, 0x85051e0,5, 0x8505200,5, 0x8505220,5, 0x8505240,5, 0x8505260,5, 0x8505280,5, 0x85052a0,5, 0x85052c0,5, 0x85052e0,5, 0x8505300,5, 0x8505320,5, 0x8505340,5, 0x8505360,5, 0x8505380,5, 0x85053a0,5, 0x85053c0,5, 0x85053e0,5, 0x8505400,5, 0x8505420,5, 0x8505440,5, 0x8505460,5, 0x8505480,5, 0x85054a0,5, 0x85054c0,5, 0x85054e0,5, 0x8505500,5, 0x8505520,5, 0x8505540,5, 0x8505560,5, 0x8505580,5, 0x85055a0,5, 0x85055c0,5, 0x85055e0,5, 0x8505600,5, 0x8505620,5, 0x8505640,5, 0x8505660,5, 0x8505680,5, 0x85056a0,5, 0x85056c0,5, 0x85056e0,5, 0x8505700,5, 0x8505720,5, 0x8505740,5, 0x8505760,5, 0x8505780,5, 0x85057a0,5, 0x85057c0,5, 0x85057e0,5, 0x8505800,5, 0x8505820,5, 0x8505840,5, 0x8505860,5, 0x8505880,5, 0x85058a0,5, 0x85058c0,5, 0x85058e0,5, 0x8505900,5, 0x8505920,5, 0x8505940,5, 0x8505960,5, 0x8505980,5, 0x85059a0,5, 0x85059c0,5, 0x85059e0,5, 0x8505a00,5, 0x8505a20,5, 0x8505a40,5, 0x8505a60,5, 0x8505a80,5, 0x8505aa0,5, 0x8505ac0,5, 0x8505ae0,5, 0x8505b00,5, 0x8505b20,5, 0x8505b40,5, 0x8505b60,5, 0x8505b80,5, 0x8505ba0,5, 0x8505bc0,5, 0x8505be0,5, 0x8505c00,5, 0x8505c20,5, 0x8505c40,5, 0x8505c60,5, 0x8505c80,5, 0x8505ca0,5, 0x8505cc0,5, 0x8505ce0,5, 0x8505d00,5, 0x8505d20,5, 0x8505d40,5, 0x8505d60,5, 0x8505d80,5, 0x8505da0,5, 0x8505dc0,5, 0x8505de0,5, 0x8505e00,5, 0x8505e20,5, 0x8505e40,5, 0x8505e60,5, 0x8505e80,5, 0x8505ea0,5, 0x8505ec0,5, 0x8505ee0,5, 0x8505f00,5, 0x8505f20,5, 0x8505f40,5, 0x8505f60,5, 0x8505f80,5, 0x8505fa0,5, 0x8505fc0,5, 0x8505fe0,5, 0x8506000,5, 0x8506020,5, 0x8506040,5, 0x8506060,5, 0x8506080,5, 0x85060a0,5, 0x85060c0,5, 0x85060e0,5, 0x8506100,5, 0x8506120,5, 0x8506140,5, 0x8506160,5, 0x8506180,5, 0x85061a0,5, 0x85061c0,5, 0x85061e0,5, 0x8506200,5, 0x8506220,5, 0x8506240,5, 0x8506260,5, 0x8506280,5, 0x85062a0,5, 0x85062c0,5, 0x85062e0,5, 0x8506300,5, 0x8506320,5, 0x8506340,5, 0x8506360,5, 0x8506380,5, 0x85063a0,5, 0x85063c0,5, 0x85063e0,5, 0x8506400,5, 0x8506420,5, 0x8506440,5, 0x8506460,5, 0x8506480,5, 0x85064a0,5, 0x85064c0,5, 0x85064e0,5, 0x8506500,5, 0x8506520,5, 0x8506540,5, 0x8506560,5, 0x8506580,5, 0x85065a0,5, 0x85065c0,5, 0x85065e0,5, 0x8506600,5, 0x8506620,5, 0x8506640,5, 0x8506660,5, 0x8506680,5, 0x85066a0,5, 0x85066c0,5, 0x85066e0,5, 0x8506700,5, 0x8506720,5, 0x8506740,5, 0x8506760,5, 0x8506780,5, 0x85067a0,5, 0x85067c0,5, 0x85067e0,5, 0x8506800,5, 0x8506820,5, 0x8506840,5, 0x8506860,5, 0x8506880,5, 0x85068a0,5, 0x85068c0,5, 0x85068e0,5, 0x8506900,5, 0x8506920,5, 0x8506940,5, 0x8506960,5, 0x8506980,5, 0x85069a0,5, 0x85069c0,5, 0x85069e0,5, 0x8506a00,5, 0x8506a20,5, 0x8506a40,5, 0x8506a60,5, 0x8506a80,5, 0x8506aa0,5, 0x8506ac0,5, 0x8506ae0,5, 0x8506b00,5, 0x8506b20,5, 0x8506b40,5, 0x8506b60,5, 0x8506b80,5, 0x8506ba0,5, 0x8506bc0,5, 0x8506be0,5, 0x8506c00,5, 0x8506c20,5, 0x8506c40,5, 0x8506c60,5, 0x8506c80,5, 0x8506ca0,5, 0x8506cc0,5, 0x8506ce0,5, 0x8506d00,5, 0x8506d20,5, 0x8506d40,5, 0x8506d60,5, 0x8506d80,5, 0x8506da0,5, 0x8506dc0,5, 0x8506de0,5, 0x8506e00,5, 0x8506e20,5, 0x8506e40,5, 0x8506e60,5, 0x8506e80,5, 0x8506ea0,5, 0x8506ec0,5, 0x8506ee0,5, 0x8506f00,5, 0x8506f20,5, 0x8506f40,5, 0x8506f60,5, 0x8506f80,5, 0x8506fa0,5, 0x8506fc0,5, 0x8506fe0,5, 0x8507000,5, 0x8507020,5, 0x8507040,5, 0x8507060,5, 0x8507080,5, 0x85070a0,5, 0x85070c0,5, 0x85070e0,5, 0x8507100,5, 0x8507120,5, 0x8507140,5, 0x8507160,5, 0x8507180,5, 0x85071a0,5, 0x85071c0,5, 0x85071e0,5, 0x8507200,5, 0x8507220,5, 0x8507240,5, 0x8507260,5, 0x8507280,5, 0x85072a0,5, 0x85072c0,5, 0x85072e0,5, 0x8507300,5, 0x8507320,5, 0x8507340,5, 0x8507360,5, 0x8507380,5, 0x85073a0,5, 0x85073c0,5, 0x85073e0,5, 0x8507400,5, 0x8507420,5, 0x8507440,5, 0x8507460,5, 0x8507480,5, 0x85074a0,5, 0x85074c0,5, 0x85074e0,5, 0x8507500,5, 0x8507520,5, 0x8507540,5, 0x8507560,5, 0x8507580,5, 0x85075a0,5, 0x85075c0,5, 0x85075e0,5, 0x8507600,5, 0x8507620,5, 0x8507640,5, 0x8507660,5, 0x8507680,5, 0x85076a0,5, 0x85076c0,5, 0x85076e0,5, 0x8507700,5, 0x8507720,5, 0x8507740,5, 0x8507760,5, 0x8507780,5, 0x85077a0,5, 0x85077c0,5, 0x85077e0,5, 0x8507800,5, 0x8507820,5, 0x8507840,5, 0x8507860,5, 0x8507880,5, 0x85078a0,5, 0x85078c0,5, 0x85078e0,5, 0x8507900,5, 0x8507920,5, 0x8507940,5, 0x8507960,5, 0x8507980,5, 0x85079a0,5, 0x85079c0,5, 0x85079e0,5, 0x8507a00,5, 0x8507a20,5, 0x8507a40,5, 0x8507a60,5, 0x8507a80,5, 0x8507aa0,5, 0x8507ac0,5, 0x8507ae0,5, 0x8507b00,5, 0x8507b20,5, 0x8507b40,5, 0x8507b60,5, 0x8507b80,5, 0x8507ba0,5, 0x8507bc0,5, 0x8507be0,5, 0x8507c00,5, 0x8507c20,5, 0x8507c40,5, 0x8507c60,5, 0x8507c80,5, 0x8507ca0,5, 0x8507cc0,5, 0x8507ce0,5, 0x8507d00,5, 0x8507d20,5, 0x8507d40,5, 0x8507d60,5, 0x8507d80,5, 0x8507da0,5, 0x8507dc0,5, 0x8507de0,5, 0x8507e00,5, 0x8507e20,5, 0x8507e40,5, 0x8507e60,5, 0x8507e80,5, 0x8507ea0,5, 0x8507ec0,5, 0x8507ee0,5, 0x8507f00,5, 0x8507f20,5, 0x8507f40,5, 0x8507f60,5, 0x8507f80,5, 0x8507fa0,5, 0x8507fc0,5, 0x8507fe0,5, 0x8508000,5, 0x8508020,5, 0x8508040,5, 0x8508060,5, 0x8508080,5, 0x85080a0,5, 0x85080c0,5, 0x85080e0,5, 0x8508100,5, 0x8508120,5, 0x8508140,5, 0x8508160,5, 0x8508180,5, 0x85081a0,5, 0x85081c0,5, 0x85081e0,5, 0x8508200,5, 0x8508220,5, 0x8508240,5, 0x8508260,5, 0x8508280,5, 0x85082a0,5, 0x85082c0,5, 0x85082e0,5, 0x8508300,5, 0x8508320,5, 0x8508340,5, 0x8508360,5, 0x8508380,5, 0x85083a0,5, 0x85083c0,5, 0x85083e0,5, 0x8508400,5, 0x8508420,5, 0x8508440,5, 0x8508460,5, 0x8508480,5, 0x85084a0,5, 0x85084c0,5, 0x85084e0,5, 0x8508500,5, 0x8508520,5, 0x8508540,5, 0x8508560,5, 0x8508580,5, 0x85085a0,5, 0x85085c0,5, 0x85085e0,5, 0x8508600,5, 0x8508620,5, 0x8508640,5, 0x8508660,5, 0x8508680,5, 0x85086a0,5, 0x85086c0,5, 0x85086e0,5, 0x8508700,5, 0x8508720,5, 0x8508740,5, 0x8508760,5, 0x8508780,5, 0x85087a0,5, 0x85087c0,5, 0x85087e0,5, 0x8508800,5, 0x8508820,5, 0x8508840,5, 0x8508860,5, 0x8508880,5, 0x85088a0,5, 0x85088c0,5, 0x85088e0,5, 0x8508900,5, 0x8508920,5, 0x8508940,5, 0x8508960,5, 0x8508980,5, 0x85089a0,5, 0x85089c0,5, 0x85089e0,5, 0x8508a00,5, 0x8508a20,5, 0x8508a40,5, 0x8508a60,5, 0x8508a80,5, 0x8508aa0,5, 0x8508ac0,5, 0x8508ae0,5, 0x8508b00,5, 0x8508b20,5, 0x8508b40,5, 0x8508b60,5, 0x8508b80,5, 0x8508ba0,5, 0x8508bc0,5, 0x8508be0,5, 0x8508c00,5, 0x8508c20,5, 0x8508c40,5, 0x8508c60,5, 0x8508c80,5, 0x8508ca0,5, 0x8508cc0,5, 0x8508ce0,5, 0x8508d00,5, 0x8508d20,5, 0x8508d40,5, 0x8508d60,5, 0x8508d80,5, 0x8508da0,5, 0x8508dc0,5, 0x8508de0,5, 0x8508e00,5, 0x8508e20,5, 0x8508e40,5, 0x8508e60,5, 0x8508e80,5, 0x8508ea0,5, 0x8508ec0,5, 0x8508ee0,5, 0x8508f00,5, 0x8508f20,5, 0x8508f40,5, 0x8508f60,5, 0x8508f80,5, 0x8508fa0,5, 0x8508fc0,5, 0x8508fe0,5, 0x8509000,5, 0x8509020,5, 0x8509040,5, 0x8509060,5, 0x8509080,5, 0x85090a0,5, 0x85090c0,5, 0x85090e0,5, 0x8509100,5, 0x8509120,5, 0x8509140,5, 0x8509160,5, 0x8509180,5, 0x85091a0,5, 0x85091c0,5, 0x85091e0,5, 0x8509200,5, 0x8509220,5, 0x8509240,5, 0x8509260,5, 0x8509280,5, 0x85092a0,5, 0x85092c0,5, 0x85092e0,5, 0x8509300,5, 0x8509320,5, 0x8509340,5, 0x8509360,5, 0x8509380,5, 0x85093a0,5, 0x85093c0,5, 0x85093e0,5, 0x8509400,5, 0x8509420,5, 0x8509440,5, 0x8509460,5, 0x8509480,5, 0x85094a0,5, 0x85094c0,5, 0x85094e0,5, 0x8509500,5, 0x8509520,5, 0x8509540,5, 0x8509560,5, 0x8509580,5, 0x85095a0,5, 0x85095c0,5, 0x85095e0,5, 0x8509600,5, 0x8509620,5, 0x8509640,5, 0x8509660,5, 0x8509680,5, 0x85096a0,5, 0x85096c0,5, 0x85096e0,5, 0x8509700,5, 0x8509720,5, 0x8509740,5, 0x8509760,5, 0x8509780,5, 0x85097a0,5, 0x85097c0,5, 0x85097e0,5, 0x8509800,5, 0x8509820,5, 0x8509840,5, 0x8509860,5, 0x8509880,5, 0x85098a0,5, 0x85098c0,5, 0x85098e0,5, 0x8509900,5, 0x8509920,5, 0x8509940,5, 0x8509960,5, 0x8509980,5, 0x85099a0,5, 0x85099c0,5, 0x85099e0,5, 0x8509a00,5, 0x8509a20,5, 0x8509a40,5, 0x8509a60,5, 0x8509a80,5, 0x8509aa0,5, 0x8509ac0,5, 0x8509ae0,5, 0x8509b00,5, 0x8509b20,5, 0x8509b40,5, 0x8509b60,5, 0x8509b80,5, 0x8509ba0,5, 0x8509bc0,5, 0x8509be0,5, 0x8509c00,5, 0x8509c20,5, 0x8509c40,5, 0x8509c60,5, 0x8509c80,5, 0x8509ca0,5, 0x8509cc0,5, 0x8509ce0,5, 0x8509d00,5, 0x8509d20,5, 0x8509d40,5, 0x8509d60,5, 0x8509d80,5, 0x8509da0,5, 0x8509dc0,5, 0x8509de0,5, 0x8509e00,5, 0x8509e20,5, 0x8509e40,5, 0x8509e60,5, 0x8509e80,5, 0x8509ea0,5, 0x8509ec0,5, 0x8509ee0,5, 0x8509f00,5, 0x8509f20,5, 0x8509f40,5, 0x8509f60,5, 0x8509f80,5, 0x8509fa0,5, 0x8509fc0,5, 0x8509fe0,5, 0x850a000,5, 0x850a020,5, 0x850a040,5, 0x850a060,5, 0x850a080,5, 0x850a0a0,5, 0x850a0c0,5, 0x850a0e0,5, 0x850a100,5, 0x850a120,5, 0x850a140,5, 0x850a160,5, 0x850a180,5, 0x850a1a0,5, 0x850a1c0,5, 0x850a1e0,5, 0x850a200,5, 0x850a220,5, 0x850a240,5, 0x850a260,5, 0x850a280,5, 0x850a2a0,5, 0x850a2c0,5, 0x850a2e0,5, 0x850a300,5, 0x850a320,5, 0x850a340,5, 0x850a360,5, 0x850a380,5, 0x850a3a0,5, 0x850a3c0,5, 0x850a3e0,5, 0x850a400,5, 0x850a420,5, 0x850a440,5, 0x850a460,5, 0x850a480,5, 0x850a4a0,5, 0x850a4c0,5, 0x850a4e0,5, 0x850a500,5, 0x850a520,5, 0x850a540,5, 0x850a560,5, 0x850a580,5, 0x850a5a0,5, 0x850a5c0,5, 0x850a5e0,5, 0x850a600,5, 0x850a620,5, 0x850a640,5, 0x850a660,5, 0x850a680,5, 0x850a6a0,5, 0x850a6c0,5, 0x850a6e0,5, 0x850a700,5, 0x850a720,5, 0x850a740,5, 0x850a760,5, 0x850a780,5, 0x850a7a0,5, 0x850a7c0,5, 0x850a7e0,5, 0x850a800,5, 0x850a820,5, 0x850a840,5, 0x850a860,5, 0x850a880,5, 0x850a8a0,5, 0x850a8c0,5, 0x850a8e0,5, 0x850a900,5, 0x850a920,5, 0x850a940,5, 0x850a960,5, 0x850a980,5, 0x850a9a0,5, 0x850a9c0,5, 0x850a9e0,5, 0x850aa00,5, 0x850aa20,5, 0x850aa40,5, 0x850aa60,5, 0x850aa80,5, 0x850aaa0,5, 0x850aac0,5, 0x850aae0,5, 0x850ab00,5, 0x850ab20,5, 0x850ab40,5, 0x850ab60,5, 0x850ab80,5, 0x850aba0,5, 0x850abc0,5, 0x850abe0,5, 0x850ac00,5, 0x850ac20,5, 0x850ac40,5, 0x850ac60,5, 0x850ac80,5, 0x850aca0,5, 0x850acc0,5, 0x850ace0,5, 0x850ad00,5, 0x850ad20,5, 0x850ad40,5, 0x850ad60,5, 0x850ad80,5, 0x850ada0,5, 0x850adc0,5, 0x850ade0,5, 0x850ae00,5, 0x850ae20,5, 0x850ae40,5, 0x850ae60,5, 0x850ae80,5, 0x850aea0,5, 0x850aec0,5, 0x850aee0,5, 0x850af00,5, 0x850af20,5, 0x850af40,5, 0x850af60,5, 0x850af80,5, 0x850afa0,5, 0x850afc0,5, 0x850afe0,5, 0x850b000,5, 0x850b020,5, 0x850b040,5, 0x850b060,5, 0x850b080,5, 0x850b0a0,5, 0x850b0c0,5, 0x850b0e0,5, 0x850b100,5, 0x850b120,5, 0x850b140,5, 0x850b160,5, 0x850b180,5, 0x850b1a0,5, 0x850b1c0,5, 0x850b1e0,5, 0x850b200,5, 0x850b220,5, 0x850b240,5, 0x850b260,5, 0x850b280,5, 0x850b2a0,5, 0x850b2c0,5, 0x850b2e0,5, 0x850b300,5, 0x850b320,5, 0x850b340,5, 0x850b360,5, 0x850b380,5, 0x850b3a0,5, 0x850b3c0,5, 0x850b3e0,5, 0x850b400,5, 0x850b420,5, 0x850b440,5, 0x850b460,5, 0x850b480,5, 0x850b4a0,5, 0x850b4c0,5, 0x850b4e0,5, 0x850b500,5, 0x850b520,5, 0x850b540,5, 0x850b560,5, 0x850b580,5, 0x850b5a0,5, 0x850b5c0,5, 0x850b5e0,5, 0x850b600,5, 0x850b620,5, 0x850b640,5, 0x850b660,5, 0x850b680,5, 0x850b6a0,5, 0x850b6c0,5, 0x850b6e0,5, 0x850b700,5, 0x850b720,5, 0x850b740,5, 0x850b760,5, 0x850b780,5, 0x850b7a0,5, 0x850b7c0,5, 0x850b7e0,5, 0x850b800,5, 0x850b820,5, 0x850b840,5, 0x850b860,5, 0x850b880,5, 0x850b8a0,5, 0x850b8c0,5, 0x850b8e0,5, 0x850b900,5, 0x850b920,5, 0x850b940,5, 0x850b960,5, 0x850b980,5, 0x850b9a0,5, 0x850b9c0,5, 0x850b9e0,5, 0x850ba00,5, 0x850ba20,5, 0x850ba40,5, 0x850ba60,5, 0x850ba80,5, 0x850baa0,5, 0x850bac0,5, 0x850bae0,5, 0x850bb00,5, 0x850bb20,5, 0x850bb40,5, 0x850bb60,5, 0x850bb80,5, 0x850bba0,5, 0x850bbc0,5, 0x850bbe0,5, 0x850bc00,5, 0x850bc20,5, 0x850bc40,5, 0x850bc60,5, 0x850bc80,5, 0x850bca0,5, 0x850bcc0,5, 0x850bce0,5, 0x850bd00,5, 0x850bd20,5, 0x850bd40,5, 0x850bd60,5, 0x850bd80,5, 0x850bda0,5, 0x850bdc0,5, 0x850bde0,5, 0x850be00,5, 0x850be20,5, 0x850be40,5, 0x850be60,5, 0x850be80,5, 0x850bea0,5, 0x850bec0,5, 0x850bee0,5, 0x850bf00,5, 0x850bf20,5, 0x850bf40,5, 0x850bf60,5, 0x850bf80,5, 0x850bfa0,5, 0x850bfc0,5, 0x850bfe0,5, 0x850c000,5, 0x850c020,5, 0x850c040,5, 0x850c060,5, 0x850c080,5, 0x850c0a0,5, 0x850c0c0,5, 0x850c0e0,5, 0x850c100,5, 0x850c120,5, 0x850c140,5, 0x850c160,5, 0x850c180,5, 0x850c1a0,5, 0x850c1c0,5, 0x850c1e0,5, 0x850c200,5, 0x850c220,5, 0x850c240,5, 0x850c260,5, 0x850c280,5, 0x850c2a0,5, 0x850c2c0,5, 0x850c2e0,5, 0x850c300,5, 0x850c320,5, 0x850c340,5, 0x850c360,5, 0x850c380,5, 0x850c3a0,5, 0x850c3c0,5, 0x850c3e0,5, 0x850c400,5, 0x850c420,5, 0x850c440,5, 0x850c460,5, 0x850c480,5, 0x850c4a0,5, 0x850c4c0,5, 0x850c4e0,5, 0x850c500,5, 0x850c520,5, 0x850c540,5, 0x850c560,5, 0x850c580,5, 0x850c5a0,5, 0x850c5c0,5, 0x850c5e0,5, 0x850c600,5, 0x850c620,5, 0x850c640,5, 0x850c660,5, 0x850c680,5, 0x850c6a0,5, 0x850c6c0,5, 0x850c6e0,5, 0x850c700,5, 0x850c720,5, 0x850c740,5, 0x850c760,5, 0x850c780,5, 0x850c7a0,5, 0x850c7c0,5, 0x850c7e0,5, 0x850c800,5, 0x850c820,5, 0x850c840,5, 0x850c860,5, 0x850c880,5, 0x850c8a0,5, 0x850c8c0,5, 0x850c8e0,5, 0x850c900,5, 0x850c920,5, 0x850c940,5, 0x850c960,5, 0x850c980,5, 0x850c9a0,5, 0x850c9c0,5, 0x850c9e0,5, 0x850ca00,5, 0x850ca20,5, 0x850ca40,5, 0x850ca60,5, 0x850ca80,5, 0x850caa0,5, 0x850cac0,5, 0x850cae0,5, 0x850cb00,5, 0x850cb20,5, 0x850cb40,5, 0x850cb60,5, 0x850cb80,5, 0x850cba0,5, 0x850cbc0,5, 0x850cbe0,5, 0x850cc00,5, 0x850cc20,5, 0x850cc40,5, 0x850cc60,5, 0x850cc80,5, 0x850cca0,5, 0x850ccc0,5, 0x850cce0,5, 0x850cd00,5, 0x850cd20,5, 0x850cd40,5, 0x850cd60,5, 0x850cd80,5, 0x850cda0,5, 0x850cdc0,5, 0x850cde0,5, 0x850ce00,5, 0x850ce20,5, 0x850ce40,5, 0x850ce60,5, 0x850ce80,5, 0x850cea0,5, 0x850cec0,5, 0x850cee0,5, 0x850cf00,5, 0x850cf20,5, 0x850cf40,5, 0x850cf60,5, 0x850cf80,5, 0x850cfa0,5, 0x850cfc0,5, 0x850cfe0,5, 0x850d000,5, 0x850d020,5, 0x850d040,5, 0x850d060,5, 0x850d080,5, 0x850d0a0,5, 0x850d0c0,5, 0x850d0e0,5, 0x850d100,5, 0x850d120,5, 0x850d140,5, 0x850d160,5, 0x850d180,5, 0x850d1a0,5, 0x850d1c0,5, 0x850d1e0,5, 0x850d200,5, 0x850d220,5, 0x850d240,5, 0x850d260,5, 0x850d280,5, 0x850d2a0,5, 0x850d2c0,5, 0x850d2e0,5, 0x850d300,5, 0x850d320,5, 0x850d340,5, 0x850d360,5, 0x850d380,5, 0x850d3a0,5, 0x850d3c0,5, 0x850d3e0,5, 0x850d400,5, 0x850d420,5, 0x850d440,5, 0x850d460,5, 0x850d480,5, 0x850d4a0,5, 0x850d4c0,5, 0x850d4e0,5, 0x850d500,5, 0x850d520,5, 0x850d540,5, 0x850d560,5, 0x850d580,5, 0x850d5a0,5, 0x850d5c0,5, 0x850d5e0,5, 0x850d600,5, 0x850d620,5, 0x850d640,5, 0x850d660,5, 0x850d680,5, 0x850d6a0,5, 0x850d6c0,5, 0x850d6e0,5, 0x850d700,5, 0x850d720,5, 0x850d740,5, 0x850d760,5, 0x850d780,5, 0x850d7a0,5, 0x850d7c0,5, 0x850d7e0,5, 0x850d800,5, 0x850d820,5, 0x850d840,5, 0x850d860,5, 0x850d880,5, 0x850d8a0,5, 0x850d8c0,5, 0x850d8e0,5, 0x850d900,5, 0x850d920,5, 0x850d940,5, 0x850d960,5, 0x850d980,5, 0x850d9a0,5, 0x850d9c0,5, 0x850d9e0,5, 0x850da00,5, 0x850da20,5, 0x850da40,5, 0x850da60,5, 0x850da80,5, 0x850daa0,5, 0x850dac0,5, 0x850dae0,5, 0x850db00,5, 0x850db20,5, 0x850db40,5, 0x850db60,5, 0x850db80,5, 0x850dba0,5, 0x850dbc0,5, 0x850dbe0,5, 0x850dc00,5, 0x850dc20,5, 0x850dc40,5, 0x850dc60,5, 0x850dc80,5, 0x850dca0,5, 0x850dcc0,5, 0x850dce0,5, 0x850dd00,5, 0x850dd20,5, 0x850dd40,5, 0x850dd60,5, 0x850dd80,5, 0x850dda0,5, 0x850ddc0,5, 0x850dde0,5, 0x850de00,5, 0x850de20,5, 0x850de40,5, 0x850de60,5, 0x850de80,5, 0x850dea0,5, 0x850dec0,5, 0x850dee0,5, 0x850df00,5, 0x850df20,5, 0x850df40,5, 0x850df60,5, 0x850df80,5, 0x850dfa0,5, 0x850dfc0,5, 0x850dfe0,5, 0x850e000,5, 0x850e020,5, 0x850e040,5, 0x850e060,5, 0x850e080,5, 0x850e0a0,5, 0x850e0c0,5, 0x850e0e0,5, 0x850e100,5, 0x850e120,5, 0x850e140,5, 0x850e160,5, 0x850e180,5, 0x850e1a0,5, 0x850e1c0,5, 0x850e1e0,5, 0x850e200,5, 0x850e220,5, 0x850e240,5, 0x850e260,5, 0x850e280,5, 0x850e2a0,5, 0x850e2c0,5, 0x850e2e0,5, 0x850e300,5, 0x850e320,5, 0x850e340,5, 0x850e360,5, 0x850e380,5, 0x850e3a0,5, 0x850e3c0,5, 0x850e3e0,5, 0x850e400,5, 0x850e420,5, 0x850e440,5, 0x850e460,5, 0x850e480,5, 0x850e4a0,5, 0x850e4c0,5, 0x850e4e0,5, 0x850e500,5, 0x850e520,5, 0x850e540,5, 0x850e560,5, 0x850e580,5, 0x850e5a0,5, 0x850e5c0,5, 0x850e5e0,5, 0x850e600,5, 0x850e620,5, 0x850e640,5, 0x850e660,5, 0x850e680,5, 0x850e6a0,5, 0x850e6c0,5, 0x850e6e0,5, 0x850e700,5, 0x850e720,5, 0x850e740,5, 0x850e760,5, 0x850e780,5, 0x850e7a0,5, 0x850e7c0,5, 0x850e7e0,5, 0x850e800,5, 0x850e820,5, 0x850e840,5, 0x850e860,5, 0x850e880,5, 0x850e8a0,5, 0x850e8c0,5, 0x850e8e0,5, 0x850e900,5, 0x850e920,5, 0x850e940,5, 0x850e960,5, 0x850e980,5, 0x850e9a0,5, 0x850e9c0,5, 0x850e9e0,5, 0x850ea00,5, 0x850ea20,5, 0x850ea40,5, 0x850ea60,5, 0x850ea80,5, 0x850eaa0,5, 0x850eac0,5, 0x850eae0,5, 0x850eb00,5, 0x850eb20,5, 0x850eb40,5, 0x850eb60,5, 0x850eb80,5, 0x850eba0,5, 0x850ebc0,5, 0x850ebe0,5, 0x850ec00,5, 0x850ec20,5, 0x850ec40,5, 0x850ec60,5, 0x850ec80,5, 0x850eca0,5, 0x850ecc0,5, 0x850ece0,5, 0x850ed00,5, 0x850ed20,5, 0x850ed40,5, 0x850ed60,5, 0x850ed80,5, 0x850eda0,5, 0x850edc0,5, 0x850ede0,5, 0x850ee00,5, 0x850ee20,5, 0x850ee40,5, 0x850ee60,5, 0x850ee80,5, 0x850eea0,5, 0x850eec0,5, 0x850eee0,5, 0x850ef00,5, 0x850ef20,5, 0x850ef40,5, 0x850ef60,5, 0x850ef80,5, 0x850efa0,5, 0x850efc0,5, 0x850efe0,5, 0x850f000,5, 0x850f020,5, 0x850f040,5, 0x850f060,5, 0x850f080,5, 0x850f0a0,5, 0x850f0c0,5, 0x850f0e0,5, 0x850f100,5, 0x850f120,5, 0x850f140,5, 0x850f160,5, 0x850f180,5, 0x850f1a0,5, 0x850f1c0,5, 0x850f1e0,5, 0x850f200,5, 0x850f220,5, 0x850f240,5, 0x850f260,5, 0x850f280,5, 0x850f2a0,5, 0x850f2c0,5, 0x850f2e0,5, 0x850f300,5, 0x850f320,5, 0x850f340,5, 0x850f360,5, 0x850f380,5, 0x850f3a0,5, 0x850f3c0,5, 0x850f3e0,5, 0x850f400,5, 0x850f420,5, 0x850f440,5, 0x850f460,5, 0x850f480,5, 0x850f4a0,5, 0x850f4c0,5, 0x850f4e0,5, 0x850f500,5, 0x850f520,5, 0x850f540,5, 0x850f560,5, 0x850f580,5, 0x850f5a0,5, 0x850f5c0,5, 0x850f5e0,5, 0x850f600,5, 0x850f620,5, 0x850f640,5, 0x850f660,5, 0x850f680,5, 0x850f6a0,5, 0x850f6c0,5, 0x850f6e0,5, 0x850f700,5, 0x850f720,5, 0x850f740,5, 0x850f760,5, 0x850f780,5, 0x850f7a0,5, 0x850f7c0,5, 0x850f7e0,5, 0x850f800,5, 0x850f820,5, 0x850f840,5, 0x850f860,5, 0x850f880,5, 0x850f8a0,5, 0x850f8c0,5, 0x850f8e0,5, 0x850f900,5, 0x850f920,5, 0x850f940,5, 0x850f960,5, 0x850f980,5, 0x850f9a0,5, 0x850f9c0,5, 0x850f9e0,5, 0x850fa00,5, 0x850fa20,5, 0x850fa40,5, 0x850fa60,5, 0x850fa80,5, 0x850faa0,5, 0x850fac0,5, 0x850fae0,5, 0x850fb00,5, 0x850fb20,5, 0x850fb40,5, 0x850fb60,5, 0x850fb80,5, 0x850fba0,5, 0x850fbc0,5, 0x850fbe0,5, 0x850fc00,5, 0x850fc20,5, 0x850fc40,5, 0x850fc60,5, 0x850fc80,5, 0x850fca0,5, 0x850fcc0,5, 0x850fce0,5, 0x850fd00,5, 0x850fd20,5, 0x850fd40,5, 0x850fd60,5, 0x850fd80,5, 0x850fda0,5, 0x850fdc0,5, 0x850fde0,5, 0x850fe00,5, 0x850fe20,5, 0x850fe40,5, 0x850fe60,5, 0x850fe80,5, 0x850fea0,5, 0x850fec0,5, 0x850fee0,5, 0x850ff00,5, 0x850ff20,5, 0x850ff40,5, 0x850ff60,5, 0x850ff80,5, 0x850ffa0,5, 0x850ffc0,5, 0x850ffe0,5, 0x8510000,5, 0x8510020,5, 0x8510040,5, 0x8510060,5, 0x8510080,5, 0x85100a0,5, 0x85100c0,5, 0x85100e0,5, 0x8510100,5, 0x8510120,5, 0x8510140,5, 0x8510160,5, 0x8510180,5, 0x85101a0,5, 0x85101c0,5, 0x85101e0,5, 0x8510200,5, 0x8510220,5, 0x8510240,5, 0x8510260,5, 0x8510280,5, 0x85102a0,5, 0x85102c0,5, 0x85102e0,5, 0x8510300,5, 0x8510320,5, 0x8510340,5, 0x8510360,5, 0x8510380,5, 0x85103a0,5, 0x85103c0,5, 0x85103e0,5, 0x8510400,5, 0x8510420,5, 0x8510440,5, 0x8510460,5, 0x8510480,5, 0x85104a0,5, 0x85104c0,5, 0x85104e0,5, 0x8510500,5, 0x8510520,5, 0x8510540,5, 0x8510560,5, 0x8510580,5, 0x85105a0,5, 0x85105c0,5, 0x85105e0,5, 0x8510600,5, 0x8510620,5, 0x8510640,5, 0x8510660,5, 0x8510680,5, 0x85106a0,5, 0x85106c0,5, 0x85106e0,5, 0x8510700,5, 0x8510720,5, 0x8510740,5, 0x8510760,5, 0x8510780,5, 0x85107a0,5, 0x85107c0,5, 0x85107e0,5, 0x8510800,5, 0x8510820,5, 0x8510840,5, 0x8510860,5, 0x8510880,5, 0x85108a0,5, 0x85108c0,5, 0x85108e0,5, 0x8510900,5, 0x8510920,5, 0x8510940,5, 0x8510960,5, 0x8510980,5, 0x85109a0,5, 0x85109c0,5, 0x85109e0,5, 0x8510a00,5, 0x8510a20,5, 0x8510a40,5, 0x8510a60,5, 0x8510a80,5, 0x8510aa0,5, 0x8510ac0,5, 0x8510ae0,5, 0x8510b00,5, 0x8510b20,5, 0x8510b40,5, 0x8510b60,5, 0x8510b80,5, 0x8510ba0,5, 0x8510bc0,5, 0x8510be0,5, 0x8510c00,5, 0x8510c20,5, 0x8510c40,5, 0x8510c60,5, 0x8510c80,5, 0x8510ca0,5, 0x8510cc0,5, 0x8510ce0,5, 0x8510d00,5, 0x8510d20,5, 0x8510d40,5, 0x8510d60,5, 0x8510d80,5, 0x8510da0,5, 0x8510dc0,5, 0x8510de0,5, 0x8510e00,5, 0x8510e20,5, 0x8510e40,5, 0x8510e60,5, 0x8510e80,5, 0x8510ea0,5, 0x8510ec0,5, 0x8510ee0,5, 0x8510f00,5, 0x8510f20,5, 0x8510f40,5, 0x8510f60,5, 0x8510f80,5, 0x8510fa0,5, 0x8510fc0,5, 0x8510fe0,5, 0x8511000,5, 0x8511020,5, 0x8511040,5, 0x8511060,5, 0x8511080,5, 0x85110a0,5, 0x85110c0,5, 0x85110e0,5, 0x8511100,5, 0x8511120,5, 0x8511140,5, 0x8511160,5, 0x8511180,5, 0x85111a0,5, 0x85111c0,5, 0x85111e0,5, 0x8511200,5, 0x8511220,5, 0x8511240,5, 0x8511260,5, 0x8511280,5, 0x85112a0,5, 0x85112c0,5, 0x85112e0,5, 0x8511300,5, 0x8511320,5, 0x8511340,5, 0x8511360,5, 0x8511380,5, 0x85113a0,5, 0x85113c0,5, 0x85113e0,5, 0x8511400,5, 0x8511420,5, 0x8511440,5, 0x8511460,5, 0x8511480,5, 0x85114a0,5, 0x85114c0,5, 0x85114e0,5, 0x8511500,5, 0x8511520,5, 0x8511540,5, 0x8511560,5, 0x8511580,5, 0x85115a0,5, 0x85115c0,5, 0x85115e0,5, 0x8511600,5, 0x8511620,5, 0x8511640,5, 0x8511660,5, 0x8511680,5, 0x85116a0,5, 0x85116c0,5, 0x85116e0,5, 0x8511700,5, 0x8511720,5, 0x8511740,5, 0x8511760,5, 0x8511780,5, 0x85117a0,5, 0x85117c0,5, 0x85117e0,5, 0x8511800,5, 0x8511820,5, 0x8511840,5, 0x8511860,5, 0x8511880,5, 0x85118a0,5, 0x85118c0,5, 0x85118e0,5, 0x8511900,5, 0x8511920,5, 0x8511940,5, 0x8511960,5, 0x8511980,5, 0x85119a0,5, 0x85119c0,5, 0x85119e0,5, 0x8511a00,5, 0x8511a20,5, 0x8511a40,5, 0x8511a60,5, 0x8511a80,5, 0x8511aa0,5, 0x8511ac0,5, 0x8511ae0,5, 0x8511b00,5, 0x8511b20,5, 0x8511b40,5, 0x8511b60,5, 0x8511b80,5, 0x8511ba0,5, 0x8511bc0,5, 0x8511be0,5, 0x8511c00,5, 0x8511c20,5, 0x8511c40,5, 0x8511c60,5, 0x8511c80,5, 0x8511ca0,5, 0x8511cc0,5, 0x8511ce0,5, 0x8511d00,5, 0x8511d20,5, 0x8511d40,5, 0x8511d60,5, 0x8511d80,5, 0x8511da0,5, 0x8511dc0,5, 0x8511de0,5, 0x8511e00,5, 0x8511e20,5, 0x8511e40,5, 0x8511e60,5, 0x8511e80,5, 0x8511ea0,5, 0x8511ec0,5, 0x8511ee0,5, 0x8511f00,5, 0x8511f20,5, 0x8511f40,5, 0x8511f60,5, 0x8511f80,5, 0x8511fa0,5, 0x8511fc0,5, 0x8511fe0,5, 0x8512000,5, 0x8512020,5, 0x8512040,5, 0x8512060,5, 0x8512080,5, 0x85120a0,5, 0x85120c0,5, 0x85120e0,5, 0x8512100,5, 0x8512120,5, 0x8512140,5, 0x8512160,5, 0x8512180,5, 0x85121a0,5, 0x85121c0,5, 0x85121e0,5, 0x8512200,5, 0x8512220,5, 0x8512240,5, 0x8512260,5, 0x8512280,5, 0x85122a0,5, 0x85122c0,5, 0x85122e0,5, 0x8512300,5, 0x8512320,5, 0x8512340,5, 0x8512360,5, 0x8512380,5, 0x85123a0,5, 0x85123c0,5, 0x85123e0,5, 0x8512400,5, 0x8512420,5, 0x8512440,5, 0x8512460,5, 0x8512480,5, 0x85124a0,5, 0x85124c0,5, 0x85124e0,5, 0x8512500,5, 0x8512520,5, 0x8512540,5, 0x8512560,5, 0x8512580,5, 0x85125a0,5, 0x85125c0,5, 0x85125e0,5, 0x8512600,5, 0x8512620,5, 0x8512640,5, 0x8512660,5, 0x8512680,5, 0x85126a0,5, 0x85126c0,5, 0x85126e0,5, 0x8512700,5, 0x8512720,5, 0x8512740,5, 0x8512760,5, 0x8512780,5, 0x85127a0,5, 0x85127c0,5, 0x85127e0,5, 0x8512800,5, 0x8512820,5, 0x8512840,5, 0x8512860,5, 0x8512880,5, 0x85128a0,5, 0x85128c0,5, 0x85128e0,5, 0x8512900,5, 0x8512920,5, 0x8512940,5, 0x8512960,5, 0x8512980,5, 0x85129a0,5, 0x85129c0,5, 0x85129e0,5, 0x8512a00,5, 0x8512a20,5, 0x8512a40,5, 0x8512a60,5, 0x8512a80,5, 0x8512aa0,5, 0x8512ac0,5, 0x8512ae0,5, 0x8512b00,5, 0x8512b20,5, 0x8512b40,5, 0x8512b60,5, 0x8512b80,5, 0x8512ba0,5, 0x8512bc0,5, 0x8512be0,5, 0x8512c00,5, 0x8512c20,5, 0x8512c40,5, 0x8512c60,5, 0x8512c80,5, 0x8512ca0,5, 0x8512cc0,5, 0x8512ce0,5, 0x8512d00,5, 0x8512d20,5, 0x8512d40,5, 0x8512d60,5, 0x8512d80,5, 0x8512da0,5, 0x8512dc0,5, 0x8512de0,5, 0x8512e00,5, 0x8512e20,5, 0x8512e40,5, 0x8512e60,5, 0x8512e80,5, 0x8512ea0,5, 0x8512ec0,5, 0x8512ee0,5, 0x8512f00,5, 0x8512f20,5, 0x8512f40,5, 0x8512f60,5, 0x8512f80,5, 0x8512fa0,5, 0x8512fc0,5, 0x8512fe0,5, 0x8513000,5, 0x8513020,5, 0x8513040,5, 0x8513060,5, 0x8513080,5, 0x85130a0,5, 0x85130c0,5, 0x85130e0,5, 0x8513100,5, 0x8513120,5, 0x8513140,5, 0x8513160,5, 0x8513180,5, 0x85131a0,5, 0x85131c0,5, 0x85131e0,5, 0x8513200,5, 0x8513220,5, 0x8513240,5, 0x8513260,5, 0x8513280,5, 0x85132a0,5, 0x85132c0,5, 0x85132e0,5, 0x8513300,5, 0x8513320,5, 0x8513340,5, 0x8513360,5, 0x8513380,5, 0x85133a0,5, 0x85133c0,5, 0x85133e0,5, 0x8513400,5, 0x8513420,5, 0x8513440,5, 0x8513460,5, 0x8513480,5, 0x85134a0,5, 0x85134c0,5, 0x85134e0,5, 0x8513500,5, 0x8513520,5, 0x8513540,5, 0x8513560,5, 0x8513580,5, 0x85135a0,5, 0x85135c0,5, 0x85135e0,5, 0x8513600,5, 0x8513620,5, 0x8513640,5, 0x8513660,5, 0x8513680,5, 0x85136a0,5, 0x85136c0,5, 0x85136e0,5, 0x8513700,5, 0x8513720,5, 0x8513740,5, 0x8513760,5, 0x8513780,5, 0x85137a0,5, 0x85137c0,5, 0x85137e0,5, 0x8513800,5, 0x8513820,5, 0x8513840,5, 0x8513860,5, 0x8513880,5, 0x85138a0,5, 0x85138c0,5, 0x85138e0,5, 0x8513900,5, 0x8513920,5, 0x8513940,5, 0x8513960,5, 0x8513980,5, 0x85139a0,5, 0x85139c0,5, 0x85139e0,5, 0x8513a00,5, 0x8513a20,5, 0x8513a40,5, 0x8513a60,5, 0x8513a80,5, 0x8513aa0,5, 0x8513ac0,5, 0x8513ae0,5, 0x8513b00,5, 0x8513b20,5, 0x8513b40,5, 0x8513b60,5, 0x8513b80,5, 0x8513ba0,5, 0x8513bc0,5, 0x8513be0,5, 0x8513c00,5, 0x8513c20,5, 0x8513c40,5, 0x8513c60,5, 0x8513c80,5, 0x8513ca0,5, 0x8513cc0,5, 0x8513ce0,5, 0x8513d00,5, 0x8513d20,5, 0x8513d40,5, 0x8513d60,5, 0x8513d80,5, 0x8513da0,5, 0x8513dc0,5, 0x8513de0,5, 0x8513e00,5, 0x8513e20,5, 0x8513e40,5, 0x8513e60,5, 0x8513e80,5, 0x8513ea0,5, 0x8513ec0,5, 0x8513ee0,5, 0x8513f00,5, 0x8513f20,5, 0x8513f40,5, 0x8513f60,5, 0x8513f80,5, 0x8513fa0,5, 0x8513fc0,5, 0x8513fe0,5, 0x8514000,5, 0x8514020,5, 0x8514040,5, 0x8514060,5, 0x8514080,5, 0x85140a0,5, 0x85140c0,5, 0x85140e0,5, 0x8514100,5, 0x8514120,5, 0x8514140,5, 0x8514160,5, 0x8514180,5, 0x85141a0,5, 0x85141c0,5, 0x85141e0,5, 0x8514200,5, 0x8514220,5, 0x8514240,5, 0x8514260,5, 0x8514280,5, 0x85142a0,5, 0x85142c0,5, 0x85142e0,5, 0x8514300,5, 0x8514320,5, 0x8514340,5, 0x8514360,5, 0x8514380,5, 0x85143a0,5, 0x85143c0,5, 0x85143e0,5, 0x8514400,5, 0x8514420,5, 0x8514440,5, 0x8514460,5, 0x8514480,5, 0x85144a0,5, 0x85144c0,5, 0x85144e0,5, 0x8514500,5, 0x8514520,5, 0x8514540,5, 0x8514560,5, 0x8514580,5, 0x85145a0,5, 0x85145c0,5, 0x85145e0,5, 0x8514600,5, 0x8514620,5, 0x8514640,5, 0x8514660,5, 0x8514680,5, 0x85146a0,5, 0x85146c0,5, 0x85146e0,5, 0x8514700,5, 0x8514720,5, 0x8514740,5, 0x8514760,5, 0x8514780,5, 0x85147a0,5, 0x85147c0,5, 0x85147e0,5, 0x8514800,5, 0x8514820,5, 0x8514840,5, 0x8514860,5, 0x8514880,5, 0x85148a0,5, 0x85148c0,5, 0x85148e0,5, 0x8514900,5, 0x8514920,5, 0x8514940,5, 0x8514960,5, 0x8514980,5, 0x85149a0,5, 0x85149c0,5, 0x85149e0,5, 0x8514a00,5, 0x8514a20,5, 0x8514a40,5, 0x8514a60,5, 0x8514a80,5, 0x8514aa0,5, 0x8514ac0,5, 0x8514ae0,5, 0x8514b00,5, 0x8514b20,5, 0x8514b40,5, 0x8514b60,5, 0x8514b80,5, 0x8514ba0,5, 0x8514bc0,5, 0x8514be0,5, 0x8514c00,5, 0x8514c20,5, 0x8514c40,5, 0x8514c60,5, 0x8514c80,5, 0x8514ca0,5, 0x8514cc0,5, 0x8514ce0,5, 0x8514d00,5, 0x8514d20,5, 0x8514d40,5, 0x8514d60,5, 0x8514d80,5, 0x8514da0,5, 0x8514dc0,5, 0x8514de0,5, 0x8514e00,5, 0x8514e20,5, 0x8514e40,5, 0x8514e60,5, 0x8514e80,5, 0x8514ea0,5, 0x8514ec0,5, 0x8514ee0,5, 0x8514f00,5, 0x8514f20,5, 0x8514f40,5, 0x8514f60,5, 0x8514f80,5, 0x8514fa0,5, 0x8514fc0,5, 0x8514fe0,5, 0x8515000,5, 0x8515020,5, 0x8515040,5, 0x8515060,5, 0x8515080,5, 0x85150a0,5, 0x85150c0,5, 0x85150e0,5, 0x8515100,5, 0x8515120,5, 0x8515140,5, 0x8515160,5, 0x8515180,5, 0x85151a0,5, 0x85151c0,5, 0x85151e0,5, 0x8515200,5, 0x8515220,5, 0x8515240,5, 0x8515260,5, 0x8515280,5, 0x85152a0,5, 0x85152c0,5, 0x85152e0,5, 0x8515300,5, 0x8515320,5, 0x8515340,5, 0x8515360,5, 0x8515380,5, 0x85153a0,5, 0x85153c0,5, 0x85153e0,5, 0x8515400,5, 0x8515420,5, 0x8515440,5, 0x8515460,5, 0x8515480,5, 0x85154a0,5, 0x85154c0,5, 0x85154e0,5, 0x8515500,5, 0x8515520,5, 0x8515540,5, 0x8515560,5, 0x8515580,5, 0x85155a0,5, 0x85155c0,5, 0x85155e0,5, 0x8515600,5, 0x8515620,5, 0x8515640,5, 0x8515660,5, 0x8515680,5, 0x85156a0,5, 0x85156c0,5, 0x85156e0,5, 0x8515700,5, 0x8515720,5, 0x8515740,5, 0x8515760,5, 0x8515780,5, 0x85157a0,5, 0x85157c0,5, 0x85157e0,5, 0x8515800,5, 0x8515820,5, 0x8515840,5, 0x8515860,5, 0x8515880,5, 0x85158a0,5, 0x85158c0,5, 0x85158e0,5, 0x8515900,5, 0x8515920,5, 0x8515940,5, 0x8515960,5, 0x8515980,5, 0x85159a0,5, 0x85159c0,5, 0x85159e0,5, 0x8515a00,5, 0x8515a20,5, 0x8515a40,5, 0x8515a60,5, 0x8515a80,5, 0x8515aa0,5, 0x8515ac0,5, 0x8515ae0,5, 0x8515b00,5, 0x8515b20,5, 0x8515b40,5, 0x8515b60,5, 0x8515b80,5, 0x8515ba0,5, 0x8515bc0,5, 0x8515be0,5, 0x8515c00,5, 0x8515c20,5, 0x8515c40,5, 0x8515c60,5, 0x8515c80,5, 0x8515ca0,5, 0x8515cc0,5, 0x8515ce0,5, 0x8515d00,5, 0x8515d20,5, 0x8515d40,5, 0x8515d60,5, 0x8515d80,5, 0x8515da0,5, 0x8515dc0,5, 0x8515de0,5, 0x8515e00,5, 0x8515e20,5, 0x8515e40,5, 0x8515e60,5, 0x8515e80,5, 0x8515ea0,5, 0x8515ec0,5, 0x8515ee0,5, 0x8515f00,5, 0x8515f20,5, 0x8515f40,5, 0x8515f60,5, 0x8515f80,5, 0x8515fa0,5, 0x8515fc0,5, 0x8515fe0,5, 0x8516000,5, 0x8516020,5, 0x8516040,5, 0x8516060,5, 0x8516080,5, 0x85160a0,5, 0x85160c0,5, 0x85160e0,5, 0x8516100,5, 0x8516120,5, 0x8516140,5, 0x8516160,5, 0x8516180,5, 0x85161a0,5, 0x85161c0,5, 0x85161e0,5, 0x8516200,5, 0x8516220,5, 0x8516240,5, 0x8516260,5, 0x8516280,5, 0x85162a0,5, 0x85162c0,5, 0x85162e0,5, 0x8516300,5, 0x8516320,5, 0x8516340,5, 0x8516360,5, 0x8516380,5, 0x85163a0,5, 0x85163c0,5, 0x85163e0,5, 0x8516400,5, 0x8516420,5, 0x8516440,5, 0x8516460,5, 0x8516480,5, 0x85164a0,5, 0x85164c0,5, 0x85164e0,5, 0x8516500,5, 0x8516520,5, 0x8516540,5, 0x8516560,5, 0x8516580,5, 0x85165a0,5, 0x85165c0,5, 0x85165e0,5, 0x8516600,5, 0x8516620,5, 0x8516640,5, 0x8516660,5, 0x8516680,5, 0x85166a0,5, 0x85166c0,5, 0x85166e0,5, 0x8516700,5, 0x8516720,5, 0x8516740,5, 0x8516760,5, 0x8516780,5, 0x85167a0,5, 0x85167c0,5, 0x85167e0,5, 0x8516800,5, 0x8516820,5, 0x8516840,5, 0x8516860,5, 0x8516880,5, 0x85168a0,5, 0x85168c0,5, 0x85168e0,5, 0x8516900,5, 0x8516920,5, 0x8516940,5, 0x8516960,5, 0x8516980,5, 0x85169a0,5, 0x85169c0,5, 0x85169e0,5, 0x8516a00,5, 0x8516a20,5, 0x8516a40,5, 0x8516a60,5, 0x8516a80,5, 0x8516aa0,5, 0x8516ac0,5, 0x8516ae0,5, 0x8516b00,5, 0x8516b20,5, 0x8516b40,5, 0x8516b60,5, 0x8516b80,5, 0x8516ba0,5, 0x8516bc0,5, 0x8516be0,5, 0x8516c00,5, 0x8516c20,5, 0x8516c40,5, 0x8516c60,5, 0x8516c80,5, 0x8516ca0,5, 0x8516cc0,5, 0x8516ce0,5, 0x8516d00,5, 0x8516d20,5, 0x8516d40,5, 0x8516d60,5, 0x8516d80,5, 0x8516da0,5, 0x8516dc0,5, 0x8516de0,5, 0x8516e00,5, 0x8516e20,5, 0x8516e40,5, 0x8516e60,5, 0x8516e80,5, 0x8516ea0,5, 0x8516ec0,5, 0x8516ee0,5, 0x8516f00,5, 0x8516f20,5, 0x8516f40,5, 0x8516f60,5, 0x8516f80,5, 0x8516fa0,5, 0x8516fc0,5, 0x8516fe0,5, 0x8517000,5, 0x8517020,5, 0x8517040,5, 0x8517060,5, 0x8517080,5, 0x85170a0,5, 0x85170c0,5, 0x85170e0,5, 0x8517100,5, 0x8517120,5, 0x8517140,5, 0x8517160,5, 0x8517180,5, 0x85171a0,5, 0x85171c0,5, 0x85171e0,5, 0x8517200,5, 0x8517220,5, 0x8517240,5, 0x8517260,5, 0x8517280,5, 0x85172a0,5, 0x85172c0,5, 0x85172e0,5, 0x8517300,5, 0x8517320,5, 0x8517340,5, 0x8517360,5, 0x8517380,5, 0x85173a0,5, 0x85173c0,5, 0x85173e0,5, 0x8517400,5, 0x8517420,5, 0x8517440,5, 0x8517460,5, 0x8517480,5, 0x85174a0,5, 0x85174c0,5, 0x85174e0,5, 0x8517500,5, 0x8517520,5, 0x8517540,5, 0x8517560,5, 0x8517580,5, 0x85175a0,5, 0x85175c0,5, 0x85175e0,5, 0x8517600,5, 0x8517620,5, 0x8517640,5, 0x8517660,5, 0x8517680,5, 0x85176a0,5, 0x85176c0,5, 0x85176e0,5, 0x8517700,5, 0x8517720,5, 0x8517740,5, 0x8517760,5, 0x8517780,5, 0x85177a0,5, 0x85177c0,5, 0x85177e0,5, 0x8517800,5, 0x8517820,5, 0x8517840,5, 0x8517860,5, 0x8517880,5, 0x85178a0,5, 0x85178c0,5, 0x85178e0,5, 0x8517900,5, 0x8517920,5, 0x8517940,5, 0x8517960,5, 0x8517980,5, 0x85179a0,5, 0x85179c0,5, 0x85179e0,5, 0x8517a00,5, 0x8517a20,5, 0x8517a40,5, 0x8517a60,5, 0x8517a80,5, 0x8517aa0,5, 0x8517ac0,5, 0x8517ae0,5, 0x8517b00,5, 0x8517b20,5, 0x8517b40,5, 0x8517b60,5, 0x8517b80,5, 0x8517ba0,5, 0x8517bc0,5, 0x8517be0,5, 0x8517c00,5, 0x8517c20,5, 0x8517c40,5, 0x8517c60,5, 0x8517c80,5, 0x8517ca0,5, 0x8517cc0,5, 0x8517ce0,5, 0x8517d00,5, 0x8517d20,5, 0x8517d40,5, 0x8517d60,5, 0x8517d80,5, 0x8517da0,5, 0x8517dc0,5, 0x8517de0,5, 0x8517e00,5, 0x8517e20,5, 0x8517e40,5, 0x8517e60,5, 0x8517e80,5, 0x8517ea0,5, 0x8517ec0,5, 0x8517ee0,5, 0x8517f00,5, 0x8517f20,5, 0x8517f40,5, 0x8517f60,5, 0x8517f80,5, 0x8517fa0,5, 0x8517fc0,5, 0x8517fe0,5, 0x8518000,5, 0x8518020,5, 0x8518040,5, 0x8518060,5, 0x8518080,5, 0x85180a0,5, 0x85180c0,5, 0x85180e0,5, 0x8518100,5, 0x8518120,5, 0x8518140,5, 0x8518160,5, 0x8518180,5, 0x85181a0,5, 0x85181c0,5, 0x85181e0,5, 0x8518200,5, 0x8518220,5, 0x8518240,5, 0x8518260,5, 0x8518280,5, 0x85182a0,5, 0x85182c0,5, 0x85182e0,5, 0x8518300,5, 0x8518320,5, 0x8518340,5, 0x8518360,5, 0x8518380,5, 0x85183a0,5, 0x85183c0,5, 0x85183e0,5, 0x8518400,5, 0x8518420,5, 0x8518440,5, 0x8518460,5, 0x8518480,5, 0x85184a0,5, 0x85184c0,5, 0x85184e0,5, 0x8518500,5, 0x8518520,5, 0x8518540,5, 0x8518560,5, 0x8518580,5, 0x85185a0,5, 0x85185c0,5, 0x85185e0,5, 0x8518600,5, 0x8518620,5, 0x8518640,5, 0x8518660,5, 0x8518680,5, 0x85186a0,5, 0x85186c0,5, 0x85186e0,5, 0x8518700,5, 0x8518720,5, 0x8518740,5, 0x8518760,5, 0x8518780,5, 0x85187a0,5, 0x85187c0,5, 0x85187e0,5, 0x8518800,5, 0x8518820,5, 0x8518840,5, 0x8518860,5, 0x8518880,5, 0x85188a0,5, 0x85188c0,5, 0x85188e0,5, 0x8518900,5, 0x8518920,5, 0x8518940,5, 0x8518960,5, 0x8518980,5, 0x85189a0,5, 0x85189c0,5, 0x85189e0,5, 0x8518a00,5, 0x8518a20,5, 0x8518a40,5, 0x8518a60,5, 0x8518a80,5, 0x8518aa0,5, 0x8518ac0,5, 0x8518ae0,5, 0x8518b00,5, 0x8518b20,5, 0x8518b40,5, 0x8518b60,5, 0x8518b80,5, 0x8518ba0,5, 0x8518bc0,5, 0x8518be0,5, 0x8518c00,5, 0x8518c20,5, 0x8518c40,5, 0x8518c60,5, 0x8518c80,5, 0x8518ca0,5, 0x8518cc0,5, 0x8518ce0,5, 0x8518d00,5, 0x8518d20,5, 0x8518d40,5, 0x8518d60,5, 0x8518d80,5, 0x8518da0,5, 0x8518dc0,5, 0x8518de0,5, 0x8518e00,5, 0x8518e20,5, 0x8518e40,5, 0x8518e60,5, 0x8518e80,5, 0x8518ea0,5, 0x8518ec0,5, 0x8518ee0,5, 0x8518f00,5, 0x8518f20,5, 0x8518f40,5, 0x8518f60,5, 0x8518f80,5, 0x8518fa0,5, 0x8518fc0,5, 0x8518fe0,5, 0x8519000,5, 0x8519020,5, 0x8519040,5, 0x8519060,5, 0x8519080,5, 0x85190a0,5, 0x85190c0,5, 0x85190e0,5, 0x8519100,5, 0x8519120,5, 0x8519140,5, 0x8519160,5, 0x8519180,5, 0x85191a0,5, 0x85191c0,5, 0x85191e0,5, 0x8519200,5, 0x8519220,5, 0x8519240,5, 0x8519260,5, 0x8519280,5, 0x85192a0,5, 0x85192c0,5, 0x85192e0,5, 0x8519300,5, 0x8519320,5, 0x8519340,5, 0x8519360,5, 0x8519380,5, 0x85193a0,5, 0x85193c0,5, 0x85193e0,5, 0x8519400,5, 0x8519420,5, 0x8519440,5, 0x8519460,5, 0x8519480,5, 0x85194a0,5, 0x85194c0,5, 0x85194e0,5, 0x8519500,5, 0x8519520,5, 0x8519540,5, 0x8519560,5, 0x8519580,5, 0x85195a0,5, 0x85195c0,5, 0x85195e0,5, 0x8519600,5, 0x8519620,5, 0x8519640,5, 0x8519660,5, 0x8519680,5, 0x85196a0,5, 0x85196c0,5, 0x85196e0,5, 0x8519700,5, 0x8519720,5, 0x8519740,5, 0x8519760,5, 0x8519780,5, 0x85197a0,5, 0x85197c0,5, 0x85197e0,5, 0x8519800,5, 0x8519820,5, 0x8519840,5, 0x8519860,5, 0x8519880,5, 0x85198a0,5, 0x85198c0,5, 0x85198e0,5, 0x8519900,5, 0x8519920,5, 0x8519940,5, 0x8519960,5, 0x8519980,5, 0x85199a0,5, 0x85199c0,5, 0x85199e0,5, 0x8519a00,5, 0x8519a20,5, 0x8519a40,5, 0x8519a60,5, 0x8519a80,5, 0x8519aa0,5, 0x8519ac0,5, 0x8519ae0,5, 0x8519b00,5, 0x8519b20,5, 0x8519b40,5, 0x8519b60,5, 0x8519b80,5, 0x8519ba0,5, 0x8519bc0,5, 0x8519be0,5, 0x8519c00,5, 0x8519c20,5, 0x8519c40,5, 0x8519c60,5, 0x8519c80,5, 0x8519ca0,5, 0x8519cc0,5, 0x8519ce0,5, 0x8519d00,5, 0x8519d20,5, 0x8519d40,5, 0x8519d60,5, 0x8519d80,5, 0x8519da0,5, 0x8519dc0,5, 0x8519de0,5, 0x8519e00,5, 0x8519e20,5, 0x8519e40,5, 0x8519e60,5, 0x8519e80,5, 0x8519ea0,5, 0x8519ec0,5, 0x8519ee0,5, 0x8519f00,5, 0x8519f20,5, 0x8519f40,5, 0x8519f60,5, 0x8519f80,5, 0x8519fa0,5, 0x8519fc0,5, 0x8519fe0,5, 0x851a000,5, 0x851a020,5, 0x851a040,5, 0x851a060,5, 0x851a080,5, 0x851a0a0,5, 0x851a0c0,5, 0x851a0e0,5, 0x851a100,5, 0x851a120,5, 0x851a140,5, 0x851a160,5, 0x851a180,5, 0x851a1a0,5, 0x851a1c0,5, 0x851a1e0,5, 0x851a200,5, 0x851a220,5, 0x851a240,5, 0x851a260,5, 0x851a280,5, 0x851a2a0,5, 0x851a2c0,5, 0x851a2e0,5, 0x851a300,5, 0x851a320,5, 0x851a340,5, 0x851a360,5, 0x851a380,5, 0x851a3a0,5, 0x851a3c0,5, 0x851a3e0,5, 0x851a400,5, 0x851a420,5, 0x851a440,5, 0x851a460,5, 0x851a480,5, 0x851a4a0,5, 0x851a4c0,5, 0x851a4e0,5, 0x851a500,5, 0x851a520,5, 0x851a540,5, 0x851a560,5, 0x851a580,5, 0x851a5a0,5, 0x851a5c0,5, 0x851a5e0,5, 0x851a600,5, 0x851a620,5, 0x851a640,5, 0x851a660,5, 0x851a680,5, 0x851a6a0,5, 0x851a6c0,5, 0x851a6e0,5, 0x851a700,5, 0x851a720,5, 0x851a740,5, 0x851a760,5, 0x851a780,5, 0x851a7a0,5, 0x851a7c0,5, 0x851a7e0,5, 0x851a800,5, 0x851a820,5, 0x851a840,5, 0x851a860,5, 0x851a880,5, 0x851a8a0,5, 0x851a8c0,5, 0x851a8e0,5, 0x851a900,5, 0x851a920,5, 0x851a940,5, 0x851a960,5, 0x851a980,5, 0x851a9a0,5, 0x851a9c0,5, 0x851a9e0,5, 0x851aa00,5, 0x851aa20,5, 0x851aa40,5, 0x851aa60,5, 0x851aa80,5, 0x851aaa0,5, 0x851aac0,5, 0x851aae0,5, 0x851ab00,5, 0x851ab20,5, 0x851ab40,5, 0x851ab60,5, 0x851ab80,5, 0x851aba0,5, 0x851abc0,5, 0x851abe0,5, 0x851ac00,5, 0x851ac20,5, 0x851ac40,5, 0x851ac60,5, 0x851ac80,5, 0x851aca0,5, 0x851acc0,5, 0x851ace0,5, 0x851ad00,5, 0x851ad20,5, 0x851ad40,5, 0x851ad60,5, 0x851ad80,5, 0x851ada0,5, 0x851adc0,5, 0x851ade0,5, 0x851ae00,5, 0x851ae20,5, 0x851ae40,5, 0x851ae60,5, 0x851ae80,5, 0x851aea0,5, 0x851aec0,5, 0x851aee0,5, 0x851af00,5, 0x851af20,5, 0x851af40,5, 0x851af60,5, 0x851af80,5, 0x851afa0,5, 0x851afc0,5, 0x851afe0,5, 0x851b000,5, 0x851b020,5, 0x851b040,5, 0x851b060,5, 0x851b080,5, 0x851b0a0,5, 0x851b0c0,5, 0x851b0e0,5, 0x851b100,5, 0x851b120,5, 0x851b140,5, 0x851b160,5, 0x851b180,5, 0x851b1a0,5, 0x851b1c0,5, 0x851b1e0,5, 0x851b200,5, 0x851b220,5, 0x851b240,5, 0x851b260,5, 0x851b280,5, 0x851b2a0,5, 0x851b2c0,5, 0x851b2e0,5, 0x851b300,5, 0x851b320,5, 0x851b340,5, 0x851b360,5, 0x851b380,5, 0x851b3a0,5, 0x851b3c0,5, 0x851b3e0,5, 0x851b400,5, 0x851b420,5, 0x851b440,5, 0x851b460,5, 0x851b480,5, 0x851b4a0,5, 0x851b4c0,5, 0x851b4e0,5, 0x851b500,5, 0x851b520,5, 0x851b540,5, 0x851b560,5, 0x851b580,5, 0x851b5a0,5, 0x851b5c0,5, 0x851b5e0,5, 0x851b600,5, 0x851b620,5, 0x851b640,5, 0x851b660,5, 0x851b680,5, 0x851b6a0,5, 0x851b6c0,5, 0x851b6e0,5, 0x851b700,5, 0x851b720,5, 0x851b740,5, 0x851b760,5, 0x851b780,5, 0x851b7a0,5, 0x851b7c0,5, 0x851b7e0,5, 0x851b800,5, 0x851b820,5, 0x851b840,5, 0x851b860,5, 0x851b880,5, 0x851b8a0,5, 0x851b8c0,5, 0x851b8e0,5, 0x851b900,5, 0x851b920,5, 0x851b940,5, 0x851b960,5, 0x851b980,5, 0x851b9a0,5, 0x851b9c0,5, 0x851b9e0,5, 0x851ba00,5, 0x851ba20,5, 0x851ba40,5, 0x851ba60,5, 0x851ba80,5, 0x851baa0,5, 0x851bac0,5, 0x851bae0,5, 0x851bb00,5, 0x851bb20,5, 0x851bb40,5, 0x851bb60,5, 0x851bb80,5, 0x851bba0,5, 0x851bbc0,5, 0x851bbe0,5, 0x851bc00,5, 0x851bc20,5, 0x851bc40,5, 0x851bc60,5, 0x851bc80,5, 0x851bca0,5, 0x851bcc0,5, 0x851bce0,5, 0x851bd00,5, 0x851bd20,5, 0x851bd40,5, 0x851bd60,5, 0x851bd80,5, 0x851bda0,5, 0x851bdc0,5, 0x851bde0,5, 0x851be00,5, 0x851be20,5, 0x851be40,5, 0x851be60,5, 0x851be80,5, 0x851bea0,5, 0x851bec0,5, 0x851bee0,5, 0x851bf00,5, 0x851bf20,5, 0x851bf40,5, 0x851bf60,5, 0x851bf80,5, 0x851bfa0,5, 0x851bfc0,5, 0x851bfe0,5, 0x851c000,5, 0x851c020,5, 0x851c040,5, 0x851c060,5, 0x851c080,5, 0x851c0a0,5, 0x851c0c0,5, 0x851c0e0,5, 0x851c100,5, 0x851c120,5, 0x851c140,5, 0x851c160,5, 0x851c180,5, 0x851c1a0,5, 0x851c1c0,5, 0x851c1e0,5, 0x851c200,5, 0x851c220,5, 0x851c240,5, 0x851c260,5, 0x851c280,5, 0x851c2a0,5, 0x851c2c0,5, 0x851c2e0,5, 0x851c300,5, 0x851c320,5, 0x851c340,5, 0x851c360,5, 0x851c380,5, 0x851c3a0,5, 0x851c3c0,5, 0x851c3e0,5, 0x851c400,5, 0x851c420,5, 0x851c440,5, 0x851c460,5, 0x851c480,5, 0x851c4a0,5, 0x851c4c0,5, 0x851c4e0,5, 0x851c500,5, 0x851c520,5, 0x851c540,5, 0x851c560,5, 0x851c580,5, 0x851c5a0,5, 0x851c5c0,5, 0x851c5e0,5, 0x851c600,5, 0x851c620,5, 0x851c640,5, 0x851c660,5, 0x851c680,5, 0x851c6a0,5, 0x851c6c0,5, 0x851c6e0,5, 0x851c700,5, 0x851c720,5, 0x851c740,5, 0x851c760,5, 0x851c780,5, 0x851c7a0,5, 0x851c7c0,5, 0x851c7e0,5, 0x851c800,5, 0x851c820,5, 0x851c840,5, 0x851c860,5, 0x851c880,5, 0x851c8a0,5, 0x851c8c0,5, 0x851c8e0,5, 0x851c900,5, 0x851c920,5, 0x851c940,5, 0x851c960,5, 0x851c980,5, 0x851c9a0,5, 0x851c9c0,5, 0x851c9e0,5, 0x851ca00,5, 0x851ca20,5, 0x851ca40,5, 0x851ca60,5, 0x851ca80,5, 0x851caa0,5, 0x851cac0,5, 0x851cae0,5, 0x851cb00,5, 0x851cb20,5, 0x851cb40,5, 0x851cb60,5, 0x851cb80,5, 0x851cba0,5, 0x851cbc0,5, 0x851cbe0,5, 0x851cc00,5, 0x851cc20,5, 0x851cc40,5, 0x851cc60,5, 0x851cc80,5, 0x851cca0,5, 0x851ccc0,5, 0x851cce0,5, 0x851cd00,5, 0x851cd20,5, 0x851cd40,5, 0x851cd60,5, 0x851cd80,5, 0x851cda0,5, 0x851cdc0,5, 0x851cde0,5, 0x851ce00,5, 0x851ce20,5, 0x851ce40,5, 0x851ce60,5, 0x851ce80,5, 0x851cea0,5, 0x851cec0,5, 0x851cee0,5, 0x851cf00,5, 0x851cf20,5, 0x851cf40,5, 0x851cf60,5, 0x851cf80,5, 0x851cfa0,5, 0x851cfc0,5, 0x851cfe0,5, 0x851d000,5, 0x851d020,5, 0x851d040,5, 0x851d060,5, 0x851d080,5, 0x851d0a0,5, 0x851d0c0,5, 0x851d0e0,5, 0x851d100,5, 0x851d120,5, 0x851d140,5, 0x851d160,5, 0x851d180,5, 0x851d1a0,5, 0x851d1c0,5, 0x851d1e0,5, 0x851d200,5, 0x851d220,5, 0x851d240,5, 0x851d260,5, 0x851d280,5, 0x851d2a0,5, 0x851d2c0,5, 0x851d2e0,5, 0x851d300,5, 0x851d320,5, 0x851d340,5, 0x851d360,5, 0x851d380,5, 0x851d3a0,5, 0x851d3c0,5, 0x851d3e0,5, 0x851d400,5, 0x851d420,5, 0x851d440,5, 0x851d460,5, 0x851d480,5, 0x851d4a0,5, 0x851d4c0,5, 0x851d4e0,5, 0x851d500,5, 0x851d520,5, 0x851d540,5, 0x851d560,5, 0x851d580,5, 0x851d5a0,5, 0x851d5c0,5, 0x851d5e0,5, 0x851d600,5, 0x851d620,5, 0x851d640,5, 0x851d660,5, 0x851d680,5, 0x851d6a0,5, 0x851d6c0,5, 0x851d6e0,5, 0x851d700,5, 0x851d720,5, 0x851d740,5, 0x851d760,5, 0x851d780,5, 0x851d7a0,5, 0x851d7c0,5, 0x851d7e0,5, 0x851d800,5, 0x851d820,5, 0x851d840,5, 0x851d860,5, 0x851d880,5, 0x851d8a0,5, 0x851d8c0,5, 0x851d8e0,5, 0x851d900,5, 0x851d920,5, 0x851d940,5, 0x851d960,5, 0x851d980,5, 0x851d9a0,5, 0x851d9c0,5, 0x851d9e0,5, 0x851da00,5, 0x851da20,5, 0x851da40,5, 0x851da60,5, 0x851da80,5, 0x851daa0,5, 0x851dac0,5, 0x851dae0,5, 0x851db00,5, 0x851db20,5, 0x851db40,5, 0x851db60,5, 0x851db80,5, 0x851dba0,5, 0x851dbc0,5, 0x851dbe0,5, 0x851dc00,5, 0x851dc20,5, 0x851dc40,5, 0x851dc60,5, 0x851dc80,5, 0x851dca0,5, 0x851dcc0,5, 0x851dce0,5, 0x851dd00,5, 0x851dd20,5, 0x851dd40,5, 0x851dd60,5, 0x851dd80,5, 0x851dda0,5, 0x851ddc0,5, 0x851dde0,5, 0x851de00,5, 0x851de20,5, 0x851de40,5, 0x851de60,5, 0x851de80,5, 0x851dea0,5, 0x851dec0,5, 0x851dee0,5, 0x851df00,5, 0x851df20,5, 0x851df40,5, 0x851df60,5, 0x851df80,5, 0x851dfa0,5, 0x851dfc0,5, 0x851dfe0,5, 0x851e000,5, 0x851e020,5, 0x851e040,5, 0x851e060,5, 0x851e080,5, 0x851e0a0,5, 0x851e0c0,5, 0x851e0e0,5, 0x851e100,5, 0x851e120,5, 0x851e140,5, 0x851e160,5, 0x851e180,5, 0x851e1a0,5, 0x851e1c0,5, 0x851e1e0,5, 0x851e200,5, 0x851e220,5, 0x851e240,5, 0x851e260,5, 0x851e280,5, 0x851e2a0,5, 0x851e2c0,5, 0x851e2e0,5, 0x851e300,5, 0x851e320,5, 0x851e340,5, 0x851e360,5, 0x851e380,5, 0x851e3a0,5, 0x851e3c0,5, 0x851e3e0,5, 0x851e400,5, 0x851e420,5, 0x851e440,5, 0x851e460,5, 0x851e480,5, 0x851e4a0,5, 0x851e4c0,5, 0x851e4e0,5, 0x851e500,5, 0x851e520,5, 0x851e540,5, 0x851e560,5, 0x851e580,5, 0x851e5a0,5, 0x851e5c0,5, 0x851e5e0,5, 0x851e600,5, 0x851e620,5, 0x851e640,5, 0x851e660,5, 0x851e680,5, 0x851e6a0,5, 0x851e6c0,5, 0x851e6e0,5, 0x851e700,5, 0x851e720,5, 0x851e740,5, 0x851e760,5, 0x851e780,5, 0x851e7a0,5, 0x851e7c0,5, 0x851e7e0,5, 0x851e800,5, 0x851e820,5, 0x851e840,5, 0x851e860,5, 0x851e880,5, 0x851e8a0,5, 0x851e8c0,5, 0x851e8e0,5, 0x851e900,5, 0x851e920,5, 0x851e940,5, 0x851e960,5, 0x851e980,5, 0x851e9a0,5, 0x851e9c0,5, 0x851e9e0,5, 0x851ea00,5, 0x851ea20,5, 0x851ea40,5, 0x851ea60,5, 0x851ea80,5, 0x851eaa0,5, 0x851eac0,5, 0x851eae0,5, 0x851eb00,5, 0x851eb20,5, 0x851eb40,5, 0x851eb60,5, 0x851eb80,5, 0x851eba0,5, 0x851ebc0,5, 0x851ebe0,5, 0x851ec00,5, 0x851ec20,5, 0x851ec40,5, 0x851ec60,5, 0x851ec80,5, 0x851eca0,5, 0x851ecc0,5, 0x851ece0,5, 0x851ed00,5, 0x851ed20,5, 0x851ed40,5, 0x851ed60,5, 0x851ed80,5, 0x851eda0,5, 0x851edc0,5, 0x851ede0,5, 0x851ee00,5, 0x851ee20,5, 0x851ee40,5, 0x851ee60,5, 0x851ee80,5, 0x851eea0,5, 0x851eec0,5, 0x851eee0,5, 0x851ef00,5, 0x851ef20,5, 0x851ef40,5, 0x851ef60,5, 0x851ef80,5, 0x851efa0,5, 0x851efc0,5, 0x851efe0,5, 0x851f000,5, 0x851f020,5, 0x851f040,5, 0x851f060,5, 0x851f080,5, 0x851f0a0,5, 0x851f0c0,5, 0x851f0e0,5, 0x851f100,5, 0x851f120,5, 0x851f140,5, 0x851f160,5, 0x851f180,5, 0x851f1a0,5, 0x851f1c0,5, 0x851f1e0,5, 0x851f200,5, 0x851f220,5, 0x851f240,5, 0x851f260,5, 0x851f280,5, 0x851f2a0,5, 0x851f2c0,5, 0x851f2e0,5, 0x851f300,5, 0x851f320,5, 0x851f340,5, 0x851f360,5, 0x851f380,5, 0x851f3a0,5, 0x851f3c0,5, 0x851f3e0,5, 0x851f400,5, 0x851f420,5, 0x851f440,5, 0x851f460,5, 0x851f480,5, 0x851f4a0,5, 0x851f4c0,5, 0x851f4e0,5, 0x851f500,5, 0x851f520,5, 0x851f540,5, 0x851f560,5, 0x851f580,5, 0x851f5a0,5, 0x851f5c0,5, 0x851f5e0,5, 0x851f600,5, 0x851f620,5, 0x851f640,5, 0x851f660,5, 0x851f680,5, 0x851f6a0,5, 0x851f6c0,5, 0x851f6e0,5, 0x851f700,5, 0x851f720,5, 0x851f740,5, 0x851f760,5, 0x851f780,5, 0x851f7a0,5, 0x851f7c0,5, 0x851f7e0,5, 0x851f800,5, 0x851f820,5, 0x851f840,5, 0x851f860,5, 0x851f880,5, 0x851f8a0,5, 0x851f8c0,5, 0x851f8e0,5, 0x851f900,5, 0x851f920,5, 0x851f940,5, 0x851f960,5, 0x851f980,5, 0x851f9a0,5, 0x851f9c0,5, 0x851f9e0,5, 0x851fa00,5, 0x851fa20,5, 0x851fa40,5, 0x851fa60,5, 0x851fa80,5, 0x851faa0,5, 0x851fac0,5, 0x851fae0,5, 0x851fb00,5, 0x851fb20,5, 0x851fb40,5, 0x851fb60,5, 0x851fb80,5, 0x851fba0,5, 0x851fbc0,5, 0x851fbe0,5, 0x851fc00,5, 0x851fc20,5, 0x851fc40,5, 0x851fc60,5, 0x851fc80,5, 0x851fca0,5, 0x851fcc0,5, 0x851fce0,5, 0x851fd00,5, 0x851fd20,5, 0x851fd40,5, 0x851fd60,5, 0x851fd80,5, 0x851fda0,5, 0x851fdc0,5, 0x851fde0,5, 0x851fe00,5, 0x851fe20,5, 0x851fe40,5, 0x851fe60,5, 0x851fe80,5, 0x851fea0,5, 0x851fec0,5, 0x851fee0,5, 0x851ff00,5, 0x851ff20,5, 0x851ff40,5, 0x851ff60,5, 0x851ff80,5, 0x851ffa0,5, 0x851ffc0,5, 0x851ffe0,5, 0x8520000,5, 0x8520020,5, 0x8520040,5, 0x8520060,5, 0x8520080,5, 0x85200a0,5, 0x85200c0,5, 0x85200e0,5, 0x8520100,5, 0x8520120,5, 0x8520140,5, 0x8520160,5, 0x8520180,5, 0x85201a0,5, 0x85201c0,5, 0x85201e0,5, 0x8520200,5, 0x8520220,5, 0x8520240,5, 0x8520260,5, 0x8520280,5, 0x85202a0,5, 0x85202c0,5, 0x85202e0,5, 0x8520300,5, 0x8520320,5, 0x8520340,5, 0x8520360,5, 0x8520380,5, 0x85203a0,5, 0x85203c0,5, 0x85203e0,5, 0x8520400,5, 0x8520420,5, 0x8520440,5, 0x8520460,5, 0x8520480,5, 0x85204a0,5, 0x85204c0,5, 0x85204e0,5, 0x8520500,5, 0x8520520,5, 0x8520540,5, 0x8520560,5, 0x8520580,5, 0x85205a0,5, 0x85205c0,5, 0x85205e0,5, 0x8520600,5, 0x8520620,5, 0x8520640,5, 0x8520660,5, 0x8520680,5, 0x85206a0,5, 0x85206c0,5, 0x85206e0,5, 0x8520700,5, 0x8520720,5, 0x8520740,5, 0x8520760,5, 0x8520780,5, 0x85207a0,5, 0x85207c0,5, 0x85207e0,5, 0x8520800,5, 0x8520820,5, 0x8520840,5, 0x8520860,5, 0x8520880,5, 0x85208a0,5, 0x85208c0,5, 0x85208e0,5, 0x8520900,5, 0x8520920,5, 0x8520940,5, 0x8520960,5, 0x8520980,5, 0x85209a0,5, 0x85209c0,5, 0x85209e0,5, 0x8520a00,5, 0x8520a20,5, 0x8520a40,5, 0x8520a60,5, 0x8520a80,5, 0x8520aa0,5, 0x8520ac0,5, 0x8520ae0,5, 0x8520b00,5, 0x8520b20,5, 0x8520b40,5, 0x8520b60,5, 0x8520b80,5, 0x8520ba0,5, 0x8520bc0,5, 0x8520be0,5, 0x8520c00,5, 0x8520c20,5, 0x8520c40,5, 0x8520c60,5, 0x8520c80,5, 0x8520ca0,5, 0x8520cc0,5, 0x8520ce0,5, 0x8520d00,5, 0x8520d20,5, 0x8520d40,5, 0x8520d60,5, 0x8520d80,5, 0x8520da0,5, 0x8520dc0,5, 0x8520de0,5, 0x8520e00,5, 0x8520e20,5, 0x8520e40,5, 0x8520e60,5, 0x8520e80,5, 0x8520ea0,5, 0x8520ec0,5, 0x8520ee0,5, 0x8520f00,5, 0x8520f20,5, 0x8520f40,5, 0x8520f60,5, 0x8520f80,5, 0x8520fa0,5, 0x8520fc0,5, 0x8520fe0,5, 0x8521000,5, 0x8521020,5, 0x8521040,5, 0x8521060,5, 0x8521080,5, 0x85210a0,5, 0x85210c0,5, 0x85210e0,5, 0x8521100,5, 0x8521120,5, 0x8521140,5, 0x8521160,5, 0x8521180,5, 0x85211a0,5, 0x85211c0,5, 0x85211e0,5, 0x8521200,5, 0x8521220,5, 0x8521240,5, 0x8521260,5, 0x8521280,5, 0x85212a0,5, 0x85212c0,5, 0x85212e0,5, 0x8521300,5, 0x8521320,5, 0x8521340,5, 0x8521360,5, 0x8521380,5, 0x85213a0,5, 0x85213c0,5, 0x85213e0,5, 0x8521400,5, 0x8521420,5, 0x8521440,5, 0x8521460,5, 0x8521480,5, 0x85214a0,5, 0x85214c0,5, 0x85214e0,5, 0x8521500,5, 0x8521520,5, 0x8521540,5, 0x8521560,5, 0x8521580,5, 0x85215a0,5, 0x85215c0,5, 0x85215e0,5, 0x8521600,5, 0x8521620,5, 0x8521640,5, 0x8521660,5, 0x8521680,5, 0x85216a0,5, 0x85216c0,5, 0x85216e0,5, 0x8521700,5, 0x8521720,5, 0x8521740,5, 0x8521760,5, 0x8521780,5, 0x85217a0,5, 0x85217c0,5, 0x85217e0,5, 0x8521800,5, 0x8521820,5, 0x8521840,5, 0x8521860,5, 0x8521880,5, 0x85218a0,5, 0x85218c0,5, 0x85218e0,5, 0x8521900,5, 0x8521920,5, 0x8521940,5, 0x8521960,5, 0x8521980,5, 0x85219a0,5, 0x85219c0,5, 0x85219e0,5, 0x8521a00,5, 0x8521a20,5, 0x8521a40,5, 0x8521a60,5, 0x8521a80,5, 0x8521aa0,5, 0x8521ac0,5, 0x8521ae0,5, 0x8521b00,5, 0x8521b20,5, 0x8521b40,5, 0x8521b60,5, 0x8521b80,5, 0x8521ba0,5, 0x8521bc0,5, 0x8521be0,5, 0x8521c00,5, 0x8521c20,5, 0x8521c40,5, 0x8521c60,5, 0x8521c80,5, 0x8521ca0,5, 0x8521cc0,5, 0x8521ce0,5, 0x8521d00,5, 0x8521d20,5, 0x8521d40,5, 0x8521d60,5, 0x8521d80,5, 0x8521da0,5, 0x8521dc0,5, 0x8521de0,5, 0x8521e00,5, 0x8521e20,5, 0x8521e40,5, 0x8521e60,5, 0x8521e80,5, 0x8521ea0,5, 0x8521ec0,5, 0x8521ee0,5, 0x8521f00,5, 0x8521f20,5, 0x8521f40,5, 0x8521f60,5, 0x8521f80,5, 0x8521fa0,5, 0x8521fc0,5, 0x8521fe0,5, 0x8522000,5, 0x8522020,5, 0x8522040,5, 0x8522060,5, 0x8522080,5, 0x85220a0,5, 0x85220c0,5, 0x85220e0,5, 0x8522100,5, 0x8522120,5, 0x8522140,5, 0x8522160,5, 0x8522180,5, 0x85221a0,5, 0x85221c0,5, 0x85221e0,5, 0x8522200,5, 0x8522220,5, 0x8522240,5, 0x8522260,5, 0x8522280,5, 0x85222a0,5, 0x85222c0,5, 0x85222e0,5, 0x8522300,5, 0x8522320,5, 0x8522340,5, 0x8522360,5, 0x8522380,5, 0x85223a0,5, 0x85223c0,5, 0x85223e0,5, 0x8522400,5, 0x8522420,5, 0x8522440,5, 0x8522460,5, 0x8522480,5, 0x85224a0,5, 0x85224c0,5, 0x85224e0,5, 0x8522500,5, 0x8522520,5, 0x8522540,5, 0x8522560,5, 0x8522580,5, 0x85225a0,5, 0x85225c0,5, 0x85225e0,5, 0x8522600,5, 0x8522620,5, 0x8522640,5, 0x8522660,5, 0x8522680,5, 0x85226a0,5, 0x85226c0,5, 0x85226e0,5, 0x8522700,5, 0x8522720,5, 0x8522740,5, 0x8522760,5, 0x8522780,5, 0x85227a0,5, 0x85227c0,5, 0x85227e0,5, 0x8522800,5, 0x8522820,5, 0x8522840,5, 0x8522860,5, 0x8522880,5, 0x85228a0,5, 0x85228c0,5, 0x85228e0,5, 0x8522900,5, 0x8522920,5, 0x8522940,5, 0x8522960,5, 0x8522980,5, 0x85229a0,5, 0x85229c0,5, 0x85229e0,5, 0x8522a00,5, 0x8522a20,5, 0x8522a40,5, 0x8522a60,5, 0x8522a80,5, 0x8522aa0,5, 0x8522ac0,5, 0x8522ae0,5, 0x8522b00,5, 0x8522b20,5, 0x8522b40,5, 0x8522b60,5, 0x8522b80,5, 0x8522ba0,5, 0x8522bc0,5, 0x8522be0,5, 0x8522c00,5, 0x8522c20,5, 0x8540000,2, 0x8540040,9, 0x8540080,19, 0x8580000,16576, 0x85a0000,2, 0x85a0040,9, 0x85a0080,5, 0x85a00a0,5, 0x85a00c0,3, 0x85c0000,1036, 0x85c2000,2, 0x85c2040,9, 0x85c2080,5, 0x85c20a0,5, 0x85c20c0,3, 0x85c4000,66, 0x85c4140,9, 0x85c4180,6, 0x85c41a0,6, 0x85c41c0,3, 0x85c4204,1, 0x85c4230,20, 0x85c4400,7, 0x85c4420,7, 0x85c4440,7, 0x85c4460,7, 0x85c4480,7, 0x85c44a0,7, 0x85c44c0,7, 0x85c44e0,7, 0x85c4500,7, 0x85c4520,7, 0x85c4540,7, 0x85c4560,7, 0x85c4580,7, 0x85c45a0,7, 0x85c45c0,7, 0x85c45e0,7, 0x85c4600,2, 0x85c4640,9, 0x85c4680,10, 0x85c46c0,10, 0x85c4700,3, 0x85c4804,1, 0x85c4840,16, 0x85c4884,15, 0x85c48c4,1, 0x85c48e0,8, 0x85c4904,1, 0x85c4910,12, 0x8600000,5, 0x8600020,5, 0x8600040,5, 0x8600060,5, 0x8600080,5, 0x86000a0,5, 0x86000c0,5, 0x86000e0,5, 0x8600100,5, 0x8600120,5, 0x8600140,5, 0x8600160,5, 0x8600180,5, 0x86001a0,5, 0x86001c0,5, 0x86001e0,5, 0x8600200,5, 0x8600220,5, 0x8600240,5, 0x8600260,5, 0x8600280,5, 0x86002a0,5, 0x86002c0,5, 0x86002e0,5, 0x8600300,5, 0x8600320,5, 0x8600340,5, 0x8600360,5, 0x8600380,5, 0x86003a0,5, 0x86003c0,5, 0x86003e0,5, 0x8600400,5, 0x8600420,5, 0x8600440,5, 0x8600460,5, 0x8600480,5, 0x86004a0,5, 0x86004c0,5, 0x86004e0,5, 0x8600500,5, 0x8600520,5, 0x8600540,5, 0x8600560,5, 0x8600580,5, 0x86005a0,5, 0x86005c0,5, 0x86005e0,5, 0x8600600,5, 0x8600620,5, 0x8600640,5, 0x8600660,5, 0x8600680,5, 0x86006a0,5, 0x86006c0,5, 0x86006e0,5, 0x8600700,5, 0x8600720,5, 0x8600740,5, 0x8600760,5, 0x8600780,5, 0x86007a0,5, 0x86007c0,5, 0x86007e0,5, 0x8600800,5, 0x8600820,5, 0x8600840,5, 0x8600860,5, 0x8600880,5, 0x86008a0,5, 0x86008c0,5, 0x86008e0,5, 0x8600900,5, 0x8600920,5, 0x8600940,5, 0x8600960,5, 0x8600980,5, 0x86009a0,5, 0x86009c0,5, 0x86009e0,5, 0x8600a00,5, 0x8600a20,5, 0x8600a40,5, 0x8600a60,5, 0x8600a80,5, 0x8600aa0,5, 0x8600ac0,5, 0x8600ae0,5, 0x8600b00,5, 0x8600b20,5, 0x8600b40,5, 0x8600b60,5, 0x8600b80,5, 0x8600ba0,5, 0x8600bc0,5, 0x8600be0,5, 0x8600c00,5, 0x8600c20,5, 0x8600c40,5, 0x8600c60,5, 0x8600c80,5, 0x8600ca0,5, 0x8600cc0,5, 0x8600ce0,5, 0x8600d00,5, 0x8600d20,5, 0x8600d40,5, 0x8600d60,5, 0x8600d80,5, 0x8600da0,5, 0x8600dc0,5, 0x8600de0,5, 0x8600e00,5, 0x8600e20,5, 0x8600e40,5, 0x8600e60,5, 0x8600e80,5, 0x8600ea0,5, 0x8600ec0,5, 0x8600ee0,5, 0x8600f00,5, 0x8600f20,5, 0x8600f40,5, 0x8600f60,5, 0x8600f80,5, 0x8600fa0,5, 0x8600fc0,5, 0x8600fe0,5, 0x8601000,5, 0x8601020,5, 0x8601040,5, 0x8601060,5, 0x8601080,5, 0x86010a0,5, 0x86010c0,5, 0x86010e0,5, 0x8601100,5, 0x8601120,5, 0x8601140,5, 0x8601160,5, 0x8601180,5, 0x86011a0,5, 0x86011c0,5, 0x86011e0,5, 0x8601200,5, 0x8601220,5, 0x8601240,5, 0x8601260,5, 0x8601280,5, 0x86012a0,5, 0x86012c0,5, 0x86012e0,5, 0x8601300,5, 0x8601320,5, 0x8601340,5, 0x8601360,5, 0x8601380,5, 0x86013a0,5, 0x86013c0,5, 0x86013e0,5, 0x8601400,5, 0x8601420,5, 0x8601440,5, 0x8601460,5, 0x8601480,5, 0x86014a0,5, 0x86014c0,5, 0x86014e0,5, 0x8601500,5, 0x8601520,5, 0x8601540,5, 0x8601560,5, 0x8601580,5, 0x86015a0,5, 0x86015c0,5, 0x86015e0,5, 0x8601600,5, 0x8601620,5, 0x8601640,5, 0x8601660,5, 0x8601680,5, 0x86016a0,5, 0x86016c0,5, 0x86016e0,5, 0x8601700,5, 0x8601720,5, 0x8601740,5, 0x8601760,5, 0x8601780,5, 0x86017a0,5, 0x86017c0,5, 0x86017e0,5, 0x8601800,5, 0x8601820,5, 0x8601840,5, 0x8601860,5, 0x8601880,5, 0x86018a0,5, 0x86018c0,5, 0x86018e0,5, 0x8601900,5, 0x8601920,5, 0x8601940,5, 0x8601960,5, 0x8601980,5, 0x86019a0,5, 0x86019c0,5, 0x86019e0,5, 0x8601a00,5, 0x8601a20,5, 0x8601a40,5, 0x8601a60,5, 0x8601a80,5, 0x8601aa0,5, 0x8601ac0,5, 0x8601ae0,5, 0x8601b00,5, 0x8601b20,5, 0x8601b40,5, 0x8601b60,5, 0x8601b80,5, 0x8601ba0,5, 0x8601bc0,5, 0x8601be0,5, 0x8601c00,5, 0x8601c20,5, 0x8601c40,5, 0x8601c60,5, 0x8601c80,5, 0x8601ca0,5, 0x8601cc0,5, 0x8601ce0,5, 0x8601d00,5, 0x8601d20,5, 0x8601d40,5, 0x8601d60,5, 0x8601d80,5, 0x8601da0,5, 0x8601dc0,5, 0x8601de0,5, 0x8601e00,5, 0x8601e20,5, 0x8601e40,5, 0x8601e60,5, 0x8601e80,5, 0x8601ea0,5, 0x8601ec0,5, 0x8601ee0,5, 0x8601f00,5, 0x8601f20,5, 0x8601f40,5, 0x8601f60,5, 0x8601f80,5, 0x8601fa0,5, 0x8601fc0,5, 0x8601fe0,5, 0x8602000,5, 0x8602020,5, 0x8602040,5, 0x8602060,5, 0x8602080,5, 0x86020a0,5, 0x86020c0,5, 0x86020e0,5, 0x8602100,5, 0x8602120,5, 0x8602140,5, 0x8602160,5, 0x8602180,5, 0x86021a0,5, 0x86021c0,5, 0x86021e0,5, 0x8602200,5, 0x8602220,5, 0x8602240,5, 0x8602260,5, 0x8602280,5, 0x86022a0,5, 0x86022c0,5, 0x86022e0,5, 0x8602300,5, 0x8602320,5, 0x8602340,5, 0x8602360,5, 0x8602380,5, 0x86023a0,5, 0x86023c0,5, 0x86023e0,5, 0x8602400,5, 0x8602420,5, 0x8602440,5, 0x8602460,5, 0x8602480,5, 0x86024a0,5, 0x86024c0,5, 0x86024e0,5, 0x8602500,5, 0x8602520,5, 0x8602540,5, 0x8602560,5, 0x8602580,5, 0x86025a0,5, 0x86025c0,5, 0x86025e0,5, 0x8602600,5, 0x8602620,5, 0x8602640,5, 0x8602660,5, 0x8602680,5, 0x86026a0,5, 0x86026c0,5, 0x86026e0,5, 0x8602700,5, 0x8602720,5, 0x8602740,5, 0x8602760,5, 0x8602780,5, 0x86027a0,5, 0x86027c0,5, 0x86027e0,5, 0x8602800,5, 0x8602820,5, 0x8602840,5, 0x8602860,5, 0x8602880,5, 0x86028a0,5, 0x86028c0,5, 0x86028e0,5, 0x8602900,5, 0x8602920,5, 0x8602940,5, 0x8602960,5, 0x8602980,5, 0x86029a0,5, 0x86029c0,5, 0x86029e0,5, 0x8602a00,5, 0x8602a20,5, 0x8602a40,5, 0x8602a60,5, 0x8602a80,5, 0x8602aa0,5, 0x8602ac0,5, 0x8602ae0,5, 0x8602b00,5, 0x8602b20,5, 0x8602b40,5, 0x8602b60,5, 0x8602b80,5, 0x8602ba0,5, 0x8602bc0,5, 0x8602be0,5, 0x8602c00,5, 0x8602c20,5, 0x8602c40,5, 0x8602c60,5, 0x8602c80,5, 0x8602ca0,5, 0x8602cc0,5, 0x8602ce0,5, 0x8602d00,5, 0x8602d20,5, 0x8602d40,5, 0x8602d60,5, 0x8602d80,5, 0x8602da0,5, 0x8602dc0,5, 0x8602de0,5, 0x8602e00,5, 0x8602e20,5, 0x8602e40,5, 0x8602e60,5, 0x8602e80,5, 0x8602ea0,5, 0x8602ec0,5, 0x8602ee0,5, 0x8602f00,5, 0x8602f20,5, 0x8602f40,5, 0x8602f60,5, 0x8602f80,5, 0x8602fa0,5, 0x8602fc0,5, 0x8602fe0,5, 0x8603000,5, 0x8603020,5, 0x8603040,5, 0x8603060,5, 0x8603080,5, 0x86030a0,5, 0x86030c0,5, 0x86030e0,5, 0x8603100,5, 0x8603120,5, 0x8603140,5, 0x8603160,5, 0x8603180,5, 0x86031a0,5, 0x86031c0,5, 0x86031e0,5, 0x8603200,5, 0x8603220,5, 0x8603240,5, 0x8603260,5, 0x8603280,5, 0x86032a0,5, 0x86032c0,5, 0x86032e0,5, 0x8603300,5, 0x8603320,5, 0x8603340,5, 0x8603360,5, 0x8603380,5, 0x86033a0,5, 0x86033c0,5, 0x86033e0,5, 0x8603400,5, 0x8603420,5, 0x8603440,5, 0x8603460,5, 0x8603480,5, 0x86034a0,5, 0x86034c0,5, 0x86034e0,5, 0x8603500,5, 0x8603520,5, 0x8603540,5, 0x8603560,5, 0x8603580,5, 0x86035a0,5, 0x86035c0,5, 0x86035e0,5, 0x8603600,5, 0x8603620,5, 0x8603640,5, 0x8603660,5, 0x8603680,5, 0x86036a0,5, 0x86036c0,5, 0x86036e0,5, 0x8603700,5, 0x8603720,5, 0x8603740,5, 0x8603760,5, 0x8603780,5, 0x86037a0,5, 0x86037c0,5, 0x86037e0,5, 0x8603800,5, 0x8603820,5, 0x8603840,5, 0x8603860,5, 0x8603880,5, 0x86038a0,5, 0x86038c0,5, 0x86038e0,5, 0x8603900,5, 0x8603920,5, 0x8603940,5, 0x8603960,5, 0x8603980,5, 0x86039a0,5, 0x86039c0,5, 0x86039e0,5, 0x8603a00,5, 0x8603a20,5, 0x8603a40,5, 0x8603a60,5, 0x8603a80,5, 0x8603aa0,5, 0x8603ac0,5, 0x8603ae0,5, 0x8603b00,5, 0x8603b20,5, 0x8603b40,5, 0x8603b60,5, 0x8603b80,5, 0x8603ba0,5, 0x8603bc0,5, 0x8603be0,5, 0x8603c00,5, 0x8603c20,5, 0x8603c40,5, 0x8603c60,5, 0x8603c80,5, 0x8603ca0,5, 0x8603cc0,5, 0x8603ce0,5, 0x8603d00,5, 0x8603d20,5, 0x8603d40,5, 0x8603d60,5, 0x8603d80,5, 0x8603da0,5, 0x8603dc0,5, 0x8603de0,5, 0x8603e00,5, 0x8603e20,5, 0x8603e40,5, 0x8603e60,5, 0x8603e80,5, 0x8603ea0,5, 0x8603ec0,5, 0x8603ee0,5, 0x8603f00,5, 0x8603f20,5, 0x8603f40,5, 0x8603f60,5, 0x8603f80,5, 0x8603fa0,5, 0x8603fc0,5, 0x8603fe0,5, 0x8604000,5, 0x8604020,5, 0x8604040,5, 0x8604060,5, 0x8604080,5, 0x86040a0,5, 0x86040c0,5, 0x86040e0,5, 0x8604100,5, 0x8604120,5, 0x8604140,5, 0x8604160,5, 0x8604180,5, 0x86041a0,5, 0x86041c0,5, 0x86041e0,5, 0x8604200,5, 0x8604220,5, 0x8604240,5, 0x8604260,5, 0x8604280,5, 0x86042a0,5, 0x86042c0,5, 0x86042e0,5, 0x8604300,5, 0x8604320,5, 0x8604340,5, 0x8604360,5, 0x8604380,5, 0x86043a0,5, 0x86043c0,5, 0x86043e0,5, 0x8604400,5, 0x8604420,5, 0x8604440,5, 0x8604460,5, 0x8604480,5, 0x86044a0,5, 0x86044c0,5, 0x86044e0,5, 0x8604500,5, 0x8604520,5, 0x8604540,5, 0x8604560,5, 0x8604580,5, 0x86045a0,5, 0x86045c0,5, 0x86045e0,5, 0x8604600,5, 0x8604620,5, 0x8604640,5, 0x8604660,5, 0x8604680,5, 0x86046a0,5, 0x86046c0,5, 0x86046e0,5, 0x8604700,5, 0x8604720,5, 0x8604740,5, 0x8604760,5, 0x8604780,5, 0x86047a0,5, 0x86047c0,5, 0x86047e0,5, 0x8604800,5, 0x8604820,5, 0x8604840,5, 0x8604860,5, 0x8604880,5, 0x86048a0,5, 0x86048c0,5, 0x86048e0,5, 0x8604900,5, 0x8604920,5, 0x8604940,5, 0x8604960,5, 0x8604980,5, 0x86049a0,5, 0x86049c0,5, 0x86049e0,5, 0x8604a00,5, 0x8604a20,5, 0x8604a40,5, 0x8604a60,5, 0x8604a80,5, 0x8604aa0,5, 0x8604ac0,5, 0x8604ae0,5, 0x8604b00,5, 0x8604b20,5, 0x8604b40,5, 0x8604b60,5, 0x8604b80,5, 0x8604ba0,5, 0x8604bc0,5, 0x8604be0,5, 0x8604c00,5, 0x8604c20,5, 0x8604c40,5, 0x8604c60,5, 0x8604c80,5, 0x8604ca0,5, 0x8604cc0,5, 0x8604ce0,5, 0x8604d00,5, 0x8604d20,5, 0x8604d40,5, 0x8604d60,5, 0x8604d80,5, 0x8604da0,5, 0x8604dc0,5, 0x8604de0,5, 0x8604e00,5, 0x8604e20,5, 0x8604e40,5, 0x8604e60,5, 0x8604e80,5, 0x8604ea0,5, 0x8604ec0,5, 0x8604ee0,5, 0x8604f00,5, 0x8604f20,5, 0x8604f40,5, 0x8604f60,5, 0x8604f80,5, 0x8604fa0,5, 0x8604fc0,5, 0x8604fe0,5, 0x8605000,5, 0x8605020,5, 0x8605040,5, 0x8605060,5, 0x8605080,5, 0x86050a0,5, 0x86050c0,5, 0x86050e0,5, 0x8605100,5, 0x8605120,5, 0x8605140,5, 0x8605160,5, 0x8605180,5, 0x86051a0,5, 0x86051c0,5, 0x86051e0,5, 0x8605200,5, 0x8605220,5, 0x8605240,5, 0x8605260,5, 0x8605280,5, 0x86052a0,5, 0x86052c0,5, 0x86052e0,5, 0x8605300,5, 0x8605320,5, 0x8605340,5, 0x8605360,5, 0x8605380,5, 0x86053a0,5, 0x86053c0,5, 0x86053e0,5, 0x8605400,5, 0x8605420,5, 0x8605440,5, 0x8605460,5, 0x8605480,5, 0x86054a0,5, 0x86054c0,5, 0x86054e0,5, 0x8605500,5, 0x8605520,5, 0x8605540,5, 0x8605560,5, 0x8605580,5, 0x86055a0,5, 0x86055c0,5, 0x86055e0,5, 0x8605600,5, 0x8605620,5, 0x8605640,5, 0x8605660,5, 0x8605680,5, 0x86056a0,5, 0x86056c0,5, 0x86056e0,5, 0x8605700,5, 0x8605720,5, 0x8605740,5, 0x8605760,5, 0x8605780,5, 0x86057a0,5, 0x86057c0,5, 0x86057e0,5, 0x8605800,5, 0x8605820,5, 0x8605840,5, 0x8605860,5, 0x8605880,5, 0x86058a0,5, 0x86058c0,5, 0x86058e0,5, 0x8605900,5, 0x8605920,5, 0x8605940,5, 0x8605960,5, 0x8605980,5, 0x86059a0,5, 0x86059c0,5, 0x86059e0,5, 0x8605a00,5, 0x8605a20,5, 0x8605a40,5, 0x8605a60,5, 0x8605a80,5, 0x8605aa0,5, 0x8605ac0,5, 0x8605ae0,5, 0x8605b00,5, 0x8605b20,5, 0x8605b40,5, 0x8605b60,5, 0x8605b80,5, 0x8605ba0,5, 0x8605bc0,5, 0x8605be0,5, 0x8605c00,5, 0x8605c20,5, 0x8605c40,5, 0x8605c60,5, 0x8605c80,5, 0x8605ca0,5, 0x8605cc0,5, 0x8605ce0,5, 0x8605d00,5, 0x8605d20,5, 0x8605d40,5, 0x8605d60,5, 0x8605d80,5, 0x8605da0,5, 0x8605dc0,5, 0x8605de0,5, 0x8605e00,5, 0x8605e20,5, 0x8605e40,5, 0x8605e60,5, 0x8605e80,5, 0x8605ea0,5, 0x8605ec0,5, 0x8605ee0,5, 0x8605f00,5, 0x8605f20,5, 0x8605f40,5, 0x8605f60,5, 0x8605f80,5, 0x8605fa0,5, 0x8605fc0,5, 0x8605fe0,5, 0x8606000,5, 0x8606020,5, 0x8606040,5, 0x8606060,5, 0x8606080,5, 0x86060a0,5, 0x86060c0,5, 0x86060e0,5, 0x8606100,5, 0x8606120,5, 0x8606140,5, 0x8606160,5, 0x8606180,5, 0x86061a0,5, 0x86061c0,5, 0x86061e0,5, 0x8606200,5, 0x8606220,5, 0x8606240,5, 0x8606260,5, 0x8606280,5, 0x86062a0,5, 0x86062c0,5, 0x86062e0,5, 0x8606300,5, 0x8606320,5, 0x8606340,5, 0x8606360,5, 0x8606380,5, 0x86063a0,5, 0x86063c0,5, 0x86063e0,5, 0x8606400,5, 0x8606420,5, 0x8606440,5, 0x8606460,5, 0x8606480,5, 0x86064a0,5, 0x86064c0,5, 0x86064e0,5, 0x8606500,5, 0x8606520,5, 0x8606540,5, 0x8606560,5, 0x8606580,5, 0x86065a0,5, 0x86065c0,5, 0x86065e0,5, 0x8606600,5, 0x8606620,5, 0x8606640,5, 0x8606660,5, 0x8606680,5, 0x86066a0,5, 0x86066c0,5, 0x86066e0,5, 0x8606700,5, 0x8606720,5, 0x8606740,5, 0x8606760,5, 0x8606780,5, 0x86067a0,5, 0x86067c0,5, 0x86067e0,5, 0x8606800,5, 0x8606820,5, 0x8606840,5, 0x8606860,5, 0x8606880,5, 0x86068a0,5, 0x86068c0,5, 0x86068e0,5, 0x8606900,5, 0x8606920,5, 0x8606940,5, 0x8606960,5, 0x8606980,5, 0x86069a0,5, 0x86069c0,5, 0x86069e0,5, 0x8606a00,5, 0x8606a20,5, 0x8606a40,5, 0x8606a60,5, 0x8606a80,5, 0x8606aa0,5, 0x8606ac0,5, 0x8606ae0,5, 0x8606b00,5, 0x8606b20,5, 0x8606b40,5, 0x8606b60,5, 0x8606b80,5, 0x8606ba0,5, 0x8606bc0,5, 0x8606be0,5, 0x8606c00,5, 0x8606c20,5, 0x8606c40,5, 0x8606c60,5, 0x8606c80,5, 0x8606ca0,5, 0x8606cc0,5, 0x8606ce0,5, 0x8606d00,5, 0x8606d20,5, 0x8606d40,5, 0x8606d60,5, 0x8606d80,5, 0x8606da0,5, 0x8606dc0,5, 0x8606de0,5, 0x8606e00,5, 0x8606e20,5, 0x8606e40,5, 0x8606e60,5, 0x8606e80,5, 0x8606ea0,5, 0x8606ec0,5, 0x8606ee0,5, 0x8606f00,5, 0x8606f20,5, 0x8606f40,5, 0x8606f60,5, 0x8606f80,5, 0x8606fa0,5, 0x8606fc0,5, 0x8606fe0,5, 0x8607000,5, 0x8607020,5, 0x8607040,5, 0x8607060,5, 0x8607080,5, 0x86070a0,5, 0x86070c0,5, 0x86070e0,5, 0x8607100,5, 0x8607120,5, 0x8607140,5, 0x8607160,5, 0x8607180,5, 0x86071a0,5, 0x86071c0,5, 0x86071e0,5, 0x8607200,5, 0x8607220,5, 0x8607240,5, 0x8607260,5, 0x8607280,5, 0x86072a0,5, 0x86072c0,5, 0x86072e0,5, 0x8607300,5, 0x8607320,5, 0x8607340,5, 0x8607360,5, 0x8607380,5, 0x86073a0,5, 0x86073c0,5, 0x86073e0,5, 0x8607400,5, 0x8607420,5, 0x8607440,5, 0x8607460,5, 0x8607480,5, 0x86074a0,5, 0x86074c0,5, 0x86074e0,5, 0x8607500,5, 0x8607520,5, 0x8607540,5, 0x8607560,5, 0x8607580,5, 0x86075a0,5, 0x86075c0,5, 0x86075e0,5, 0x8607600,5, 0x8607620,5, 0x8607640,5, 0x8607660,5, 0x8607680,5, 0x86076a0,5, 0x86076c0,5, 0x86076e0,5, 0x8607700,5, 0x8607720,5, 0x8607740,5, 0x8607760,5, 0x8607780,5, 0x86077a0,5, 0x86077c0,5, 0x86077e0,5, 0x8607800,5, 0x8607820,5, 0x8607840,5, 0x8607860,5, 0x8607880,5, 0x86078a0,5, 0x86078c0,5, 0x86078e0,5, 0x8607900,5, 0x8607920,5, 0x8607940,5, 0x8607960,5, 0x8607980,5, 0x86079a0,5, 0x86079c0,5, 0x86079e0,5, 0x8607a00,5, 0x8607a20,5, 0x8607a40,5, 0x8607a60,5, 0x8607a80,5, 0x8607aa0,5, 0x8607ac0,5, 0x8607ae0,5, 0x8607b00,5, 0x8607b20,5, 0x8607b40,5, 0x8607b60,5, 0x8607b80,5, 0x8607ba0,5, 0x8607bc0,5, 0x8607be0,5, 0x8607c00,5, 0x8607c20,5, 0x8607c40,5, 0x8607c60,5, 0x8607c80,5, 0x8607ca0,5, 0x8607cc0,5, 0x8607ce0,5, 0x8607d00,5, 0x8607d20,5, 0x8607d40,5, 0x8607d60,5, 0x8607d80,5, 0x8607da0,5, 0x8607dc0,5, 0x8607de0,5, 0x8607e00,5, 0x8607e20,5, 0x8607e40,5, 0x8607e60,5, 0x8607e80,5, 0x8607ea0,5, 0x8607ec0,5, 0x8607ee0,5, 0x8607f00,5, 0x8607f20,5, 0x8607f40,5, 0x8607f60,5, 0x8607f80,5, 0x8607fa0,5, 0x8607fc0,5, 0x8607fe0,5, 0x8608000,5, 0x8608020,5, 0x8608040,5, 0x8608060,5, 0x8608080,5, 0x86080a0,5, 0x86080c0,5, 0x86080e0,5, 0x8608100,5, 0x8608120,5, 0x8608140,5, 0x8608160,5, 0x8608180,5, 0x86081a0,5, 0x86081c0,5, 0x86081e0,5, 0x8608200,5, 0x8608220,5, 0x8608240,5, 0x8608260,5, 0x8608280,5, 0x86082a0,5, 0x86082c0,5, 0x86082e0,5, 0x8608300,5, 0x8608320,5, 0x8608340,5, 0x8608360,5, 0x8608380,5, 0x86083a0,5, 0x86083c0,5, 0x86083e0,5, 0x8608400,5, 0x8608420,5, 0x8608440,5, 0x8608460,5, 0x8608480,5, 0x86084a0,5, 0x86084c0,5, 0x86084e0,5, 0x8608500,5, 0x8608520,5, 0x8608540,5, 0x8608560,5, 0x8608580,5, 0x86085a0,5, 0x86085c0,5, 0x86085e0,5, 0x8608600,5, 0x8608620,5, 0x8608640,5, 0x8608660,5, 0x8608680,5, 0x86086a0,5, 0x86086c0,5, 0x86086e0,5, 0x8608700,5, 0x8608720,5, 0x8608740,5, 0x8608760,5, 0x8608780,5, 0x86087a0,5, 0x86087c0,5, 0x86087e0,5, 0x8608800,5, 0x8608820,5, 0x8608840,5, 0x8608860,5, 0x8608880,5, 0x86088a0,5, 0x86088c0,5, 0x86088e0,5, 0x8608900,5, 0x8608920,5, 0x8608940,5, 0x8608960,5, 0x8608980,5, 0x86089a0,5, 0x86089c0,5, 0x86089e0,5, 0x8608a00,5, 0x8608a20,5, 0x8608a40,5, 0x8608a60,5, 0x8608a80,5, 0x8608aa0,5, 0x8608ac0,5, 0x8608ae0,5, 0x8608b00,5, 0x8608b20,5, 0x8608b40,5, 0x8608b60,5, 0x8608b80,5, 0x8608ba0,5, 0x8608bc0,5, 0x8608be0,5, 0x8608c00,5, 0x8608c20,5, 0x8608c40,5, 0x8608c60,5, 0x8608c80,5, 0x8608ca0,5, 0x8608cc0,5, 0x8608ce0,5, 0x8608d00,5, 0x8608d20,5, 0x8608d40,5, 0x8608d60,5, 0x8608d80,5, 0x8608da0,5, 0x8608dc0,5, 0x8608de0,5, 0x8608e00,5, 0x8608e20,5, 0x8608e40,5, 0x8608e60,5, 0x8608e80,5, 0x8608ea0,5, 0x8608ec0,5, 0x8608ee0,5, 0x8608f00,5, 0x8608f20,5, 0x8608f40,5, 0x8608f60,5, 0x8608f80,5, 0x8608fa0,5, 0x8608fc0,5, 0x8608fe0,5, 0x8609000,5, 0x8609020,5, 0x8609040,5, 0x8609060,5, 0x8609080,5, 0x86090a0,5, 0x86090c0,5, 0x86090e0,5, 0x8609100,5, 0x8609120,5, 0x8609140,5, 0x8609160,5, 0x8609180,5, 0x86091a0,5, 0x86091c0,5, 0x86091e0,5, 0x8609200,5, 0x8609220,5, 0x8609240,5, 0x8609260,5, 0x8609280,5, 0x86092a0,5, 0x86092c0,5, 0x86092e0,5, 0x8609300,5, 0x8609320,5, 0x8609340,5, 0x8609360,5, 0x8609380,5, 0x86093a0,5, 0x86093c0,5, 0x86093e0,5, 0x8609400,5, 0x8609420,5, 0x8609440,5, 0x8609460,5, 0x8609480,5, 0x86094a0,5, 0x86094c0,5, 0x86094e0,5, 0x8609500,5, 0x8609520,5, 0x8609540,5, 0x8609560,5, 0x8609580,5, 0x86095a0,5, 0x86095c0,5, 0x86095e0,5, 0x8609600,5, 0x8609620,5, 0x8609640,5, 0x8609660,5, 0x8609680,5, 0x86096a0,5, 0x86096c0,5, 0x86096e0,5, 0x8609700,5, 0x8609720,5, 0x8609740,5, 0x8609760,5, 0x8609780,5, 0x86097a0,5, 0x86097c0,5, 0x86097e0,5, 0x8609800,5, 0x8609820,5, 0x8609840,5, 0x8609860,5, 0x8609880,5, 0x86098a0,5, 0x86098c0,5, 0x86098e0,5, 0x8609900,5, 0x8609920,5, 0x8609940,5, 0x8609960,5, 0x8609980,5, 0x86099a0,5, 0x86099c0,5, 0x86099e0,5, 0x8609a00,5, 0x8609a20,5, 0x8609a40,5, 0x8609a60,5, 0x8609a80,5, 0x8609aa0,5, 0x8609ac0,5, 0x8609ae0,5, 0x8609b00,5, 0x8609b20,5, 0x8609b40,5, 0x8609b60,5, 0x8609b80,5, 0x8609ba0,5, 0x8609bc0,5, 0x8609be0,5, 0x8609c00,5, 0x8609c20,5, 0x8609c40,5, 0x8609c60,5, 0x8609c80,5, 0x8609ca0,5, 0x8609cc0,5, 0x8609ce0,5, 0x8609d00,5, 0x8609d20,5, 0x8609d40,5, 0x8609d60,5, 0x8609d80,5, 0x8609da0,5, 0x8609dc0,5, 0x8609de0,5, 0x8609e00,5, 0x8609e20,5, 0x8609e40,5, 0x8609e60,5, 0x8609e80,5, 0x8609ea0,5, 0x8609ec0,5, 0x8609ee0,5, 0x8609f00,5, 0x8609f20,5, 0x8609f40,5, 0x8609f60,5, 0x8609f80,5, 0x8609fa0,5, 0x8609fc0,5, 0x8609fe0,5, 0x860a000,5, 0x860a020,5, 0x860a040,5, 0x860a060,5, 0x860a080,5, 0x860a0a0,5, 0x860a0c0,5, 0x860a0e0,5, 0x860a100,5, 0x860a120,5, 0x860a140,5, 0x860a160,5, 0x860a180,5, 0x860a1a0,5, 0x860a1c0,5, 0x860a1e0,5, 0x860a200,5, 0x860a220,5, 0x860a240,5, 0x860a260,5, 0x860a280,5, 0x860a2a0,5, 0x860a2c0,5, 0x860a2e0,5, 0x860a300,5, 0x860a320,5, 0x860a340,5, 0x860a360,5, 0x860a380,5, 0x860a3a0,5, 0x860a3c0,5, 0x860a3e0,5, 0x860a400,5, 0x860a420,5, 0x860a440,5, 0x860a460,5, 0x860a480,5, 0x860a4a0,5, 0x860a4c0,5, 0x860a4e0,5, 0x860a500,5, 0x860a520,5, 0x860a540,5, 0x860a560,5, 0x860a580,5, 0x860a5a0,5, 0x860a5c0,5, 0x860a5e0,5, 0x860a600,5, 0x860a620,5, 0x860a640,5, 0x860a660,5, 0x860a680,5, 0x860a6a0,5, 0x860a6c0,5, 0x860a6e0,5, 0x860a700,5, 0x860a720,5, 0x860a740,5, 0x860a760,5, 0x860a780,5, 0x860a7a0,5, 0x860a7c0,5, 0x860a7e0,5, 0x860a800,5, 0x860a820,5, 0x860a840,5, 0x860a860,5, 0x860a880,5, 0x860a8a0,5, 0x860a8c0,5, 0x860a8e0,5, 0x860a900,5, 0x860a920,5, 0x860a940,5, 0x860a960,5, 0x860a980,5, 0x860a9a0,5, 0x860a9c0,5, 0x860a9e0,5, 0x860aa00,5, 0x860aa20,5, 0x860aa40,5, 0x860aa60,5, 0x860aa80,5, 0x860aaa0,5, 0x860aac0,5, 0x860aae0,5, 0x860ab00,5, 0x860ab20,5, 0x860ab40,5, 0x860ab60,5, 0x860ab80,5, 0x860aba0,5, 0x860abc0,5, 0x860abe0,5, 0x860ac00,5, 0x860ac20,5, 0x860ac40,5, 0x860ac60,5, 0x860ac80,5, 0x860aca0,5, 0x860acc0,5, 0x860ace0,5, 0x860ad00,5, 0x860ad20,5, 0x860ad40,5, 0x860ad60,5, 0x860ad80,5, 0x860ada0,5, 0x860adc0,5, 0x860ade0,5, 0x860ae00,5, 0x860ae20,5, 0x860ae40,5, 0x860ae60,5, 0x860ae80,5, 0x860aea0,5, 0x860aec0,5, 0x860aee0,5, 0x860af00,5, 0x860af20,5, 0x860af40,5, 0x860af60,5, 0x860af80,5, 0x860afa0,5, 0x860afc0,5, 0x860afe0,5, 0x860b000,5, 0x860b020,5, 0x860b040,5, 0x860b060,5, 0x860b080,5, 0x860b0a0,5, 0x860b0c0,5, 0x860b0e0,5, 0x860b100,5, 0x860b120,5, 0x860b140,5, 0x860b160,5, 0x860b180,5, 0x860b1a0,5, 0x860b1c0,5, 0x860b1e0,5, 0x860b200,5, 0x860b220,5, 0x860b240,5, 0x860b260,5, 0x860b280,5, 0x860b2a0,5, 0x860b2c0,5, 0x860b2e0,5, 0x860b300,5, 0x860b320,5, 0x860b340,5, 0x860b360,5, 0x860b380,5, 0x860b3a0,5, 0x860b3c0,5, 0x860b3e0,5, 0x860b400,5, 0x860b420,5, 0x860b440,5, 0x860b460,5, 0x860b480,5, 0x860b4a0,5, 0x860b4c0,5, 0x860b4e0,5, 0x860b500,5, 0x860b520,5, 0x860b540,5, 0x860b560,5, 0x860b580,5, 0x860b5a0,5, 0x860b5c0,5, 0x860b5e0,5, 0x860b600,5, 0x860b620,5, 0x860b640,5, 0x860b660,5, 0x860b680,5, 0x860b6a0,5, 0x860b6c0,5, 0x860b6e0,5, 0x860b700,5, 0x860b720,5, 0x860b740,5, 0x860b760,5, 0x860b780,5, 0x860b7a0,5, 0x860b7c0,5, 0x860b7e0,5, 0x860b800,5, 0x860b820,5, 0x860b840,5, 0x860b860,5, 0x860b880,5, 0x860b8a0,5, 0x860b8c0,5, 0x860b8e0,5, 0x860b900,5, 0x860b920,5, 0x860b940,5, 0x860b960,5, 0x860b980,5, 0x860b9a0,5, 0x860b9c0,5, 0x860b9e0,5, 0x860ba00,5, 0x860ba20,5, 0x860ba40,5, 0x860ba60,5, 0x860ba80,5, 0x860baa0,5, 0x860bac0,5, 0x860bae0,5, 0x860bb00,5, 0x860bb20,5, 0x860bb40,5, 0x860bb60,5, 0x860bb80,5, 0x860bba0,5, 0x860bbc0,5, 0x860bbe0,5, 0x860bc00,5, 0x860bc20,5, 0x860bc40,5, 0x860bc60,5, 0x860bc80,5, 0x860bca0,5, 0x860bcc0,5, 0x860bce0,5, 0x860bd00,5, 0x860bd20,5, 0x860bd40,5, 0x860bd60,5, 0x860bd80,5, 0x860bda0,5, 0x860bdc0,5, 0x860bde0,5, 0x860be00,5, 0x860be20,5, 0x860be40,5, 0x860be60,5, 0x860be80,5, 0x860bea0,5, 0x860bec0,5, 0x860bee0,5, 0x860bf00,5, 0x860bf20,5, 0x860bf40,5, 0x860bf60,5, 0x860bf80,5, 0x860bfa0,5, 0x860bfc0,5, 0x860bfe0,5, 0x860c000,5, 0x860c020,5, 0x860c040,5, 0x860c060,5, 0x860c080,5, 0x860c0a0,5, 0x860c0c0,5, 0x860c0e0,5, 0x860c100,5, 0x860c120,5, 0x860c140,5, 0x860c160,5, 0x860c180,5, 0x860c1a0,5, 0x860c1c0,5, 0x860c1e0,5, 0x860c200,5, 0x860c220,5, 0x860c240,5, 0x860c260,5, 0x860c280,5, 0x860c2a0,5, 0x860c2c0,5, 0x860c2e0,5, 0x860c300,5, 0x860c320,5, 0x860c340,5, 0x860c360,5, 0x860c380,5, 0x860c3a0,5, 0x860c3c0,5, 0x860c3e0,5, 0x860c400,5, 0x860c420,5, 0x860c440,5, 0x860c460,5, 0x860c480,5, 0x860c4a0,5, 0x860c4c0,5, 0x860c4e0,5, 0x860c500,5, 0x860c520,5, 0x860c540,5, 0x860c560,5, 0x860c580,5, 0x860c5a0,5, 0x860c5c0,5, 0x860c5e0,5, 0x860c600,5, 0x860c620,5, 0x860c640,5, 0x860c660,5, 0x860c680,5, 0x860c6a0,5, 0x860c6c0,5, 0x860c6e0,5, 0x860c700,5, 0x860c720,5, 0x860c740,5, 0x860c760,5, 0x860c780,5, 0x860c7a0,5, 0x860c7c0,5, 0x860c7e0,5, 0x860c800,5, 0x860c820,5, 0x860c840,5, 0x860c860,5, 0x860c880,5, 0x860c8a0,5, 0x860c8c0,5, 0x860c8e0,5, 0x860c900,5, 0x860c920,5, 0x860c940,5, 0x860c960,5, 0x860c980,5, 0x860c9a0,5, 0x860c9c0,5, 0x860c9e0,5, 0x860ca00,5, 0x860ca20,5, 0x860ca40,5, 0x860ca60,5, 0x860ca80,5, 0x860caa0,5, 0x860cac0,5, 0x860cae0,5, 0x860cb00,5, 0x860cb20,5, 0x860cb40,5, 0x860cb60,5, 0x860cb80,5, 0x860cba0,5, 0x860cbc0,5, 0x860cbe0,5, 0x860cc00,5, 0x860cc20,5, 0x860cc40,5, 0x860cc60,5, 0x860cc80,5, 0x860cca0,5, 0x860ccc0,5, 0x860cce0,5, 0x860cd00,5, 0x860cd20,5, 0x860cd40,5, 0x860cd60,5, 0x860cd80,5, 0x860cda0,5, 0x860cdc0,5, 0x860cde0,5, 0x860ce00,5, 0x860ce20,5, 0x860ce40,5, 0x860ce60,5, 0x860ce80,5, 0x860cea0,5, 0x860cec0,5, 0x860cee0,5, 0x860cf00,5, 0x860cf20,5, 0x860cf40,5, 0x860cf60,5, 0x860cf80,5, 0x860cfa0,5, 0x860cfc0,5, 0x860cfe0,5, 0x860d000,5, 0x860d020,5, 0x860d040,5, 0x860d060,5, 0x860d080,5, 0x860d0a0,5, 0x860d0c0,5, 0x860d0e0,5, 0x860d100,5, 0x860d120,5, 0x860d140,5, 0x860d160,5, 0x860d180,5, 0x860d1a0,5, 0x860d1c0,5, 0x860d1e0,5, 0x860d200,5, 0x860d220,5, 0x860d240,5, 0x860d260,5, 0x860d280,5, 0x860d2a0,5, 0x860d2c0,5, 0x860d2e0,5, 0x860d300,5, 0x860d320,5, 0x860d340,5, 0x860d360,5, 0x860d380,5, 0x860d3a0,5, 0x860d3c0,5, 0x860d3e0,5, 0x860d400,5, 0x860d420,5, 0x860d440,5, 0x860d460,5, 0x860d480,5, 0x860d4a0,5, 0x860d4c0,5, 0x860d4e0,5, 0x860d500,5, 0x860d520,5, 0x860d540,5, 0x860d560,5, 0x860d580,5, 0x860d5a0,5, 0x860d5c0,5, 0x860d5e0,5, 0x860d600,5, 0x860d620,5, 0x860d640,5, 0x860d660,5, 0x860d680,5, 0x860d6a0,5, 0x860d6c0,5, 0x860d6e0,5, 0x860d700,5, 0x860d720,5, 0x860d740,5, 0x860d760,5, 0x860d780,5, 0x860d7a0,5, 0x860d7c0,5, 0x860d7e0,5, 0x860d800,5, 0x860d820,5, 0x860d840,5, 0x860d860,5, 0x860d880,5, 0x860d8a0,5, 0x860d8c0,5, 0x860d8e0,5, 0x860d900,5, 0x860d920,5, 0x860d940,5, 0x860d960,5, 0x860d980,5, 0x860d9a0,5, 0x860d9c0,5, 0x860d9e0,5, 0x860da00,5, 0x860da20,5, 0x860da40,5, 0x860da60,5, 0x860da80,5, 0x860daa0,5, 0x860dac0,5, 0x860dae0,5, 0x860db00,5, 0x860db20,5, 0x860db40,5, 0x860db60,5, 0x860db80,5, 0x860dba0,5, 0x860dbc0,5, 0x860dbe0,5, 0x860dc00,5, 0x860dc20,5, 0x860dc40,5, 0x860dc60,5, 0x860dc80,5, 0x860dca0,5, 0x860dcc0,5, 0x860dce0,5, 0x860dd00,5, 0x860dd20,5, 0x860dd40,5, 0x860dd60,5, 0x860dd80,5, 0x860dda0,5, 0x860ddc0,5, 0x860dde0,5, 0x860de00,5, 0x860de20,5, 0x860de40,5, 0x860de60,5, 0x860de80,5, 0x860dea0,5, 0x860dec0,5, 0x860dee0,5, 0x860df00,5, 0x860df20,5, 0x860df40,5, 0x860df60,5, 0x860df80,5, 0x860dfa0,5, 0x860dfc0,5, 0x860dfe0,5, 0x860e000,5, 0x860e020,5, 0x860e040,5, 0x860e060,5, 0x860e080,5, 0x860e0a0,5, 0x860e0c0,5, 0x860e0e0,5, 0x860e100,5, 0x860e120,5, 0x860e140,5, 0x860e160,5, 0x860e180,5, 0x860e1a0,5, 0x860e1c0,5, 0x860e1e0,5, 0x860e200,5, 0x860e220,5, 0x860e240,5, 0x860e260,5, 0x860e280,5, 0x860e2a0,5, 0x860e2c0,5, 0x860e2e0,5, 0x860e300,5, 0x860e320,5, 0x860e340,5, 0x860e360,5, 0x860e380,5, 0x860e3a0,5, 0x860e3c0,5, 0x860e3e0,5, 0x860e400,5, 0x860e420,5, 0x860e440,5, 0x860e460,5, 0x860e480,5, 0x860e4a0,5, 0x860e4c0,5, 0x860e4e0,5, 0x860e500,5, 0x860e520,5, 0x860e540,5, 0x860e560,5, 0x860e580,5, 0x860e5a0,5, 0x860e5c0,5, 0x860e5e0,5, 0x860e600,5, 0x860e620,5, 0x860e640,5, 0x860e660,5, 0x860e680,5, 0x860e6a0,5, 0x860e6c0,5, 0x860e6e0,5, 0x860e700,5, 0x860e720,5, 0x860e740,5, 0x860e760,5, 0x860e780,5, 0x860e7a0,5, 0x860e7c0,5, 0x860e7e0,5, 0x860e800,5, 0x860e820,5, 0x860e840,5, 0x860e860,5, 0x860e880,5, 0x860e8a0,5, 0x860e8c0,5, 0x860e8e0,5, 0x860e900,5, 0x860e920,5, 0x860e940,5, 0x860e960,5, 0x860e980,5, 0x860e9a0,5, 0x860e9c0,5, 0x860e9e0,5, 0x860ea00,5, 0x860ea20,5, 0x860ea40,5, 0x860ea60,5, 0x860ea80,5, 0x860eaa0,5, 0x860eac0,5, 0x860eae0,5, 0x860eb00,5, 0x860eb20,5, 0x860eb40,5, 0x860eb60,5, 0x860eb80,5, 0x860eba0,5, 0x860ebc0,5, 0x860ebe0,5, 0x860ec00,5, 0x860ec20,5, 0x860ec40,5, 0x860ec60,5, 0x860ec80,5, 0x860eca0,5, 0x860ecc0,5, 0x860ece0,5, 0x860ed00,5, 0x860ed20,5, 0x860ed40,5, 0x860ed60,5, 0x860ed80,5, 0x860eda0,5, 0x860edc0,5, 0x860ede0,5, 0x860ee00,5, 0x860ee20,5, 0x860ee40,5, 0x860ee60,5, 0x860ee80,5, 0x860eea0,5, 0x860eec0,5, 0x860eee0,5, 0x860ef00,5, 0x860ef20,5, 0x860ef40,5, 0x860ef60,5, 0x860ef80,5, 0x860efa0,5, 0x860efc0,5, 0x860efe0,5, 0x860f000,5, 0x860f020,5, 0x860f040,5, 0x860f060,5, 0x860f080,5, 0x860f0a0,5, 0x860f0c0,5, 0x860f0e0,5, 0x860f100,5, 0x860f120,5, 0x860f140,5, 0x860f160,5, 0x860f180,5, 0x860f1a0,5, 0x860f1c0,5, 0x860f1e0,5, 0x860f200,5, 0x860f220,5, 0x860f240,5, 0x860f260,5, 0x860f280,5, 0x860f2a0,5, 0x860f2c0,5, 0x860f2e0,5, 0x860f300,5, 0x860f320,5, 0x860f340,5, 0x860f360,5, 0x860f380,5, 0x860f3a0,5, 0x860f3c0,5, 0x860f3e0,5, 0x860f400,5, 0x860f420,5, 0x860f440,5, 0x860f460,5, 0x860f480,5, 0x860f4a0,5, 0x860f4c0,5, 0x860f4e0,5, 0x860f500,5, 0x860f520,5, 0x860f540,5, 0x860f560,5, 0x860f580,5, 0x860f5a0,5, 0x860f5c0,5, 0x860f5e0,5, 0x860f600,5, 0x860f620,5, 0x860f640,5, 0x860f660,5, 0x860f680,5, 0x860f6a0,5, 0x860f6c0,5, 0x860f6e0,5, 0x860f700,5, 0x860f720,5, 0x860f740,5, 0x860f760,5, 0x860f780,5, 0x860f7a0,5, 0x860f7c0,5, 0x860f7e0,5, 0x860f800,5, 0x860f820,5, 0x860f840,5, 0x860f860,5, 0x860f880,5, 0x860f8a0,5, 0x860f8c0,5, 0x860f8e0,5, 0x860f900,5, 0x860f920,5, 0x860f940,5, 0x860f960,5, 0x860f980,5, 0x860f9a0,5, 0x860f9c0,5, 0x860f9e0,5, 0x860fa00,5, 0x860fa20,5, 0x860fa40,5, 0x860fa60,5, 0x860fa80,5, 0x860faa0,5, 0x860fac0,5, 0x860fae0,5, 0x860fb00,5, 0x860fb20,5, 0x860fb40,5, 0x860fb60,5, 0x860fb80,5, 0x860fba0,5, 0x860fbc0,5, 0x860fbe0,5, 0x860fc00,5, 0x860fc20,5, 0x860fc40,5, 0x860fc60,5, 0x860fc80,5, 0x860fca0,5, 0x860fcc0,5, 0x860fce0,5, 0x860fd00,5, 0x860fd20,5, 0x860fd40,5, 0x860fd60,5, 0x860fd80,5, 0x860fda0,5, 0x860fdc0,5, 0x860fde0,5, 0x860fe00,5, 0x860fe20,5, 0x860fe40,5, 0x860fe60,5, 0x860fe80,5, 0x860fea0,5, 0x860fec0,5, 0x860fee0,5, 0x860ff00,5, 0x860ff20,5, 0x860ff40,5, 0x860ff60,5, 0x860ff80,5, 0x860ffa0,5, 0x860ffc0,5, 0x860ffe0,5, 0x8610000,5, 0x8610020,5, 0x8610040,5, 0x8610060,5, 0x8610080,5, 0x86100a0,5, 0x86100c0,5, 0x86100e0,5, 0x8610100,5, 0x8610120,5, 0x8610140,5, 0x8610160,5, 0x8610180,5, 0x86101a0,5, 0x86101c0,5, 0x86101e0,5, 0x8610200,5, 0x8610220,5, 0x8610240,5, 0x8610260,5, 0x8610280,5, 0x86102a0,5, 0x86102c0,5, 0x86102e0,5, 0x8610300,5, 0x8610320,5, 0x8610340,5, 0x8610360,5, 0x8610380,5, 0x86103a0,5, 0x86103c0,5, 0x86103e0,5, 0x8610400,5, 0x8610420,5, 0x8610440,5, 0x8610460,5, 0x8610480,5, 0x86104a0,5, 0x86104c0,5, 0x86104e0,5, 0x8610500,5, 0x8610520,5, 0x8610540,5, 0x8610560,5, 0x8610580,5, 0x86105a0,5, 0x86105c0,5, 0x86105e0,5, 0x8610600,5, 0x8610620,5, 0x8610640,5, 0x8610660,5, 0x8610680,5, 0x86106a0,5, 0x86106c0,5, 0x86106e0,5, 0x8610700,5, 0x8610720,5, 0x8610740,5, 0x8610760,5, 0x8610780,5, 0x86107a0,5, 0x86107c0,5, 0x86107e0,5, 0x8610800,5, 0x8610820,5, 0x8610840,5, 0x8610860,5, 0x8610880,5, 0x86108a0,5, 0x86108c0,5, 0x86108e0,5, 0x8610900,5, 0x8610920,5, 0x8610940,5, 0x8610960,5, 0x8610980,5, 0x86109a0,5, 0x86109c0,5, 0x86109e0,5, 0x8610a00,5, 0x8610a20,5, 0x8610a40,5, 0x8610a60,5, 0x8610a80,5, 0x8610aa0,5, 0x8610ac0,5, 0x8610ae0,5, 0x8610b00,5, 0x8610b20,5, 0x8610b40,5, 0x8610b60,5, 0x8610b80,5, 0x8610ba0,5, 0x8610bc0,5, 0x8610be0,5, 0x8610c00,5, 0x8610c20,5, 0x8610c40,5, 0x8610c60,5, 0x8610c80,5, 0x8610ca0,5, 0x8610cc0,5, 0x8610ce0,5, 0x8610d00,5, 0x8610d20,5, 0x8610d40,5, 0x8610d60,5, 0x8610d80,5, 0x8610da0,5, 0x8610dc0,5, 0x8610de0,5, 0x8610e00,5, 0x8610e20,5, 0x8610e40,5, 0x8610e60,5, 0x8610e80,5, 0x8610ea0,5, 0x8610ec0,5, 0x8610ee0,5, 0x8610f00,5, 0x8610f20,5, 0x8610f40,5, 0x8610f60,5, 0x8610f80,5, 0x8610fa0,5, 0x8610fc0,5, 0x8610fe0,5, 0x8611000,5, 0x8611020,5, 0x8611040,5, 0x8611060,5, 0x8611080,5, 0x86110a0,5, 0x86110c0,5, 0x86110e0,5, 0x8611100,5, 0x8611120,5, 0x8611140,5, 0x8611160,5, 0x8611180,5, 0x86111a0,5, 0x86111c0,5, 0x86111e0,5, 0x8611200,5, 0x8611220,5, 0x8611240,5, 0x8611260,5, 0x8611280,5, 0x86112a0,5, 0x86112c0,5, 0x86112e0,5, 0x8611300,5, 0x8611320,5, 0x8611340,5, 0x8611360,5, 0x8611380,5, 0x86113a0,5, 0x86113c0,5, 0x86113e0,5, 0x8611400,5, 0x8611420,5, 0x8611440,5, 0x8611460,5, 0x8611480,5, 0x86114a0,5, 0x86114c0,5, 0x86114e0,5, 0x8611500,5, 0x8611520,5, 0x8611540,5, 0x8611560,5, 0x8611580,5, 0x86115a0,5, 0x86115c0,5, 0x86115e0,5, 0x8611600,5, 0x8611620,5, 0x8611640,5, 0x8611660,5, 0x8611680,5, 0x86116a0,5, 0x86116c0,5, 0x86116e0,5, 0x8611700,5, 0x8611720,5, 0x8611740,5, 0x8611760,5, 0x8611780,5, 0x86117a0,5, 0x86117c0,5, 0x86117e0,5, 0x8611800,5, 0x8611820,5, 0x8611840,5, 0x8611860,5, 0x8611880,5, 0x86118a0,5, 0x86118c0,5, 0x86118e0,5, 0x8611900,5, 0x8611920,5, 0x8611940,5, 0x8611960,5, 0x8611980,5, 0x86119a0,5, 0x86119c0,5, 0x86119e0,5, 0x8611a00,5, 0x8611a20,5, 0x8611a40,5, 0x8611a60,5, 0x8611a80,5, 0x8611aa0,5, 0x8611ac0,5, 0x8611ae0,5, 0x8611b00,5, 0x8611b20,5, 0x8611b40,5, 0x8611b60,5, 0x8611b80,5, 0x8611ba0,5, 0x8611bc0,5, 0x8611be0,5, 0x8611c00,5, 0x8611c20,5, 0x8611c40,5, 0x8611c60,5, 0x8611c80,5, 0x8611ca0,5, 0x8611cc0,5, 0x8611ce0,5, 0x8611d00,5, 0x8611d20,5, 0x8611d40,5, 0x8611d60,5, 0x8611d80,5, 0x8611da0,5, 0x8611dc0,5, 0x8611de0,5, 0x8611e00,5, 0x8611e20,5, 0x8611e40,5, 0x8611e60,5, 0x8611e80,5, 0x8611ea0,5, 0x8611ec0,5, 0x8611ee0,5, 0x8611f00,5, 0x8611f20,5, 0x8611f40,5, 0x8611f60,5, 0x8611f80,5, 0x8611fa0,5, 0x8611fc0,5, 0x8611fe0,5, 0x8612000,5, 0x8612020,5, 0x8612040,5, 0x8612060,5, 0x8612080,5, 0x86120a0,5, 0x86120c0,5, 0x86120e0,5, 0x8612100,5, 0x8612120,5, 0x8612140,5, 0x8612160,5, 0x8612180,5, 0x86121a0,5, 0x86121c0,5, 0x86121e0,5, 0x8612200,5, 0x8612220,5, 0x8612240,5, 0x8612260,5, 0x8612280,5, 0x86122a0,5, 0x86122c0,5, 0x86122e0,5, 0x8612300,5, 0x8612320,5, 0x8612340,5, 0x8612360,5, 0x8612380,5, 0x86123a0,5, 0x86123c0,5, 0x86123e0,5, 0x8612400,5, 0x8612420,5, 0x8612440,5, 0x8612460,5, 0x8612480,5, 0x86124a0,5, 0x86124c0,5, 0x86124e0,5, 0x8612500,5, 0x8612520,5, 0x8612540,5, 0x8612560,5, 0x8612580,5, 0x86125a0,5, 0x86125c0,5, 0x86125e0,5, 0x8612600,5, 0x8612620,5, 0x8612640,5, 0x8612660,5, 0x8612680,5, 0x86126a0,5, 0x86126c0,5, 0x86126e0,5, 0x8612700,5, 0x8612720,5, 0x8612740,5, 0x8612760,5, 0x8612780,5, 0x86127a0,5, 0x86127c0,5, 0x86127e0,5, 0x8612800,5, 0x8612820,5, 0x8612840,5, 0x8612860,5, 0x8612880,5, 0x86128a0,5, 0x86128c0,5, 0x86128e0,5, 0x8612900,5, 0x8612920,5, 0x8612940,5, 0x8612960,5, 0x8612980,5, 0x86129a0,5, 0x86129c0,5, 0x86129e0,5, 0x8612a00,5, 0x8612a20,5, 0x8612a40,5, 0x8612a60,5, 0x8612a80,5, 0x8612aa0,5, 0x8612ac0,5, 0x8612ae0,5, 0x8612b00,5, 0x8612b20,5, 0x8612b40,5, 0x8612b60,5, 0x8612b80,5, 0x8612ba0,5, 0x8612bc0,5, 0x8612be0,5, 0x8612c00,5, 0x8612c20,5, 0x8612c40,5, 0x8612c60,5, 0x8612c80,5, 0x8612ca0,5, 0x8612cc0,5, 0x8612ce0,5, 0x8612d00,5, 0x8612d20,5, 0x8612d40,5, 0x8612d60,5, 0x8612d80,5, 0x8612da0,5, 0x8612dc0,5, 0x8612de0,5, 0x8612e00,5, 0x8612e20,5, 0x8612e40,5, 0x8612e60,5, 0x8612e80,5, 0x8612ea0,5, 0x8612ec0,5, 0x8612ee0,5, 0x8612f00,5, 0x8612f20,5, 0x8612f40,5, 0x8612f60,5, 0x8612f80,5, 0x8612fa0,5, 0x8612fc0,5, 0x8612fe0,5, 0x8613000,5, 0x8613020,5, 0x8613040,5, 0x8613060,5, 0x8613080,5, 0x86130a0,5, 0x86130c0,5, 0x86130e0,5, 0x8613100,5, 0x8613120,5, 0x8613140,5, 0x8613160,5, 0x8613180,5, 0x86131a0,5, 0x86131c0,5, 0x86131e0,5, 0x8613200,5, 0x8613220,5, 0x8613240,5, 0x8613260,5, 0x8613280,5, 0x86132a0,5, 0x86132c0,5, 0x86132e0,5, 0x8613300,5, 0x8613320,5, 0x8613340,5, 0x8613360,5, 0x8613380,5, 0x86133a0,5, 0x86133c0,5, 0x86133e0,5, 0x8613400,5, 0x8613420,5, 0x8613440,5, 0x8613460,5, 0x8613480,5, 0x86134a0,5, 0x86134c0,5, 0x86134e0,5, 0x8613500,5, 0x8613520,5, 0x8613540,5, 0x8613560,5, 0x8613580,5, 0x86135a0,5, 0x86135c0,5, 0x86135e0,5, 0x8613600,5, 0x8613620,5, 0x8613640,5, 0x8613660,5, 0x8613680,5, 0x86136a0,5, 0x86136c0,5, 0x86136e0,5, 0x8613700,5, 0x8613720,5, 0x8613740,5, 0x8613760,5, 0x8613780,5, 0x86137a0,5, 0x86137c0,5, 0x86137e0,5, 0x8613800,5, 0x8613820,5, 0x8613840,5, 0x8613860,5, 0x8613880,5, 0x86138a0,5, 0x86138c0,5, 0x86138e0,5, 0x8613900,5, 0x8613920,5, 0x8613940,5, 0x8613960,5, 0x8613980,5, 0x86139a0,5, 0x86139c0,5, 0x86139e0,5, 0x8613a00,5, 0x8613a20,5, 0x8613a40,5, 0x8613a60,5, 0x8613a80,5, 0x8613aa0,5, 0x8613ac0,5, 0x8613ae0,5, 0x8613b00,5, 0x8613b20,5, 0x8613b40,5, 0x8613b60,5, 0x8613b80,5, 0x8613ba0,5, 0x8613bc0,5, 0x8613be0,5, 0x8613c00,5, 0x8613c20,5, 0x8613c40,5, 0x8613c60,5, 0x8613c80,5, 0x8613ca0,5, 0x8613cc0,5, 0x8613ce0,5, 0x8613d00,5, 0x8613d20,5, 0x8613d40,5, 0x8613d60,5, 0x8613d80,5, 0x8613da0,5, 0x8613dc0,5, 0x8613de0,5, 0x8613e00,5, 0x8613e20,5, 0x8613e40,5, 0x8613e60,5, 0x8613e80,5, 0x8613ea0,5, 0x8613ec0,5, 0x8613ee0,5, 0x8613f00,5, 0x8613f20,5, 0x8613f40,5, 0x8613f60,5, 0x8613f80,5, 0x8613fa0,5, 0x8613fc0,5, 0x8613fe0,5, 0x8614000,5, 0x8614020,5, 0x8614040,5, 0x8614060,5, 0x8614080,5, 0x86140a0,5, 0x86140c0,5, 0x86140e0,5, 0x8614100,5, 0x8614120,5, 0x8614140,5, 0x8614160,5, 0x8614180,5, 0x86141a0,5, 0x86141c0,5, 0x86141e0,5, 0x8614200,5, 0x8614220,5, 0x8614240,5, 0x8614260,5, 0x8614280,5, 0x86142a0,5, 0x86142c0,5, 0x86142e0,5, 0x8614300,5, 0x8614320,5, 0x8614340,5, 0x8614360,5, 0x8614380,5, 0x86143a0,5, 0x86143c0,5, 0x86143e0,5, 0x8614400,5, 0x8614420,5, 0x8614440,5, 0x8614460,5, 0x8614480,5, 0x86144a0,5, 0x86144c0,5, 0x86144e0,5, 0x8614500,5, 0x8614520,5, 0x8614540,5, 0x8614560,5, 0x8614580,5, 0x86145a0,5, 0x86145c0,5, 0x86145e0,5, 0x8614600,5, 0x8614620,5, 0x8614640,5, 0x8614660,5, 0x8614680,5, 0x86146a0,5, 0x86146c0,5, 0x86146e0,5, 0x8614700,5, 0x8614720,5, 0x8614740,5, 0x8614760,5, 0x8614780,5, 0x86147a0,5, 0x86147c0,5, 0x86147e0,5, 0x8614800,5, 0x8614820,5, 0x8614840,5, 0x8614860,5, 0x8614880,5, 0x86148a0,5, 0x86148c0,5, 0x86148e0,5, 0x8614900,5, 0x8614920,5, 0x8614940,5, 0x8614960,5, 0x8614980,5, 0x86149a0,5, 0x86149c0,5, 0x86149e0,5, 0x8614a00,5, 0x8614a20,5, 0x8614a40,5, 0x8614a60,5, 0x8614a80,5, 0x8614aa0,5, 0x8614ac0,5, 0x8614ae0,5, 0x8614b00,5, 0x8614b20,5, 0x8614b40,5, 0x8614b60,5, 0x8614b80,5, 0x8614ba0,5, 0x8614bc0,5, 0x8614be0,5, 0x8614c00,5, 0x8614c20,5, 0x8614c40,5, 0x8614c60,5, 0x8614c80,5, 0x8614ca0,5, 0x8614cc0,5, 0x8614ce0,5, 0x8614d00,5, 0x8614d20,5, 0x8614d40,5, 0x8614d60,5, 0x8614d80,5, 0x8614da0,5, 0x8614dc0,5, 0x8614de0,5, 0x8614e00,5, 0x8614e20,5, 0x8614e40,5, 0x8614e60,5, 0x8614e80,5, 0x8614ea0,5, 0x8614ec0,5, 0x8614ee0,5, 0x8614f00,5, 0x8614f20,5, 0x8614f40,5, 0x8614f60,5, 0x8614f80,5, 0x8614fa0,5, 0x8614fc0,5, 0x8614fe0,5, 0x8615000,5, 0x8615020,5, 0x8615040,5, 0x8615060,5, 0x8615080,5, 0x86150a0,5, 0x86150c0,5, 0x86150e0,5, 0x8615100,5, 0x8615120,5, 0x8615140,5, 0x8615160,5, 0x8615180,5, 0x86151a0,5, 0x86151c0,5, 0x86151e0,5, 0x8615200,5, 0x8615220,5, 0x8615240,5, 0x8615260,5, 0x8615280,5, 0x86152a0,5, 0x86152c0,5, 0x86152e0,5, 0x8615300,5, 0x8615320,5, 0x8615340,5, 0x8615360,5, 0x8615380,5, 0x86153a0,5, 0x86153c0,5, 0x86153e0,5, 0x8615400,5, 0x8615420,5, 0x8615440,5, 0x8615460,5, 0x8615480,5, 0x86154a0,5, 0x86154c0,5, 0x86154e0,5, 0x8615500,5, 0x8615520,5, 0x8615540,5, 0x8615560,5, 0x8615580,5, 0x86155a0,5, 0x86155c0,5, 0x86155e0,5, 0x8615600,5, 0x8615620,5, 0x8615640,5, 0x8615660,5, 0x8615680,5, 0x86156a0,5, 0x86156c0,5, 0x86156e0,5, 0x8615700,5, 0x8615720,5, 0x8615740,5, 0x8615760,5, 0x8615780,5, 0x86157a0,5, 0x86157c0,5, 0x86157e0,5, 0x8615800,5, 0x8615820,5, 0x8615840,5, 0x8615860,5, 0x8615880,5, 0x86158a0,5, 0x86158c0,5, 0x86158e0,5, 0x8615900,5, 0x8615920,5, 0x8615940,5, 0x8615960,5, 0x8615980,5, 0x86159a0,5, 0x86159c0,5, 0x86159e0,5, 0x8615a00,5, 0x8615a20,5, 0x8615a40,5, 0x8615a60,5, 0x8615a80,5, 0x8615aa0,5, 0x8615ac0,5, 0x8615ae0,5, 0x8615b00,5, 0x8615b20,5, 0x8615b40,5, 0x8615b60,5, 0x8615b80,5, 0x8615ba0,5, 0x8615bc0,5, 0x8615be0,5, 0x8615c00,5, 0x8615c20,5, 0x8615c40,5, 0x8615c60,5, 0x8615c80,5, 0x8615ca0,5, 0x8615cc0,5, 0x8615ce0,5, 0x8615d00,5, 0x8615d20,5, 0x8615d40,5, 0x8615d60,5, 0x8615d80,5, 0x8615da0,5, 0x8615dc0,5, 0x8615de0,5, 0x8615e00,5, 0x8615e20,5, 0x8615e40,5, 0x8615e60,5, 0x8615e80,5, 0x8615ea0,5, 0x8615ec0,5, 0x8615ee0,5, 0x8615f00,5, 0x8615f20,5, 0x8615f40,5, 0x8615f60,5, 0x8615f80,5, 0x8615fa0,5, 0x8615fc0,5, 0x8615fe0,5, 0x8616000,5, 0x8616020,5, 0x8616040,5, 0x8616060,5, 0x8616080,5, 0x86160a0,5, 0x86160c0,5, 0x86160e0,5, 0x8616100,5, 0x8616120,5, 0x8616140,5, 0x8616160,5, 0x8616180,5, 0x86161a0,5, 0x86161c0,5, 0x86161e0,5, 0x8616200,5, 0x8616220,5, 0x8616240,5, 0x8616260,5, 0x8616280,5, 0x86162a0,5, 0x86162c0,5, 0x86162e0,5, 0x8616300,5, 0x8616320,5, 0x8616340,5, 0x8616360,5, 0x8616380,5, 0x86163a0,5, 0x86163c0,5, 0x86163e0,5, 0x8616400,5, 0x8616420,5, 0x8616440,5, 0x8616460,5, 0x8616480,5, 0x86164a0,5, 0x86164c0,5, 0x86164e0,5, 0x8616500,5, 0x8616520,5, 0x8616540,5, 0x8616560,5, 0x8616580,5, 0x86165a0,5, 0x86165c0,5, 0x86165e0,5, 0x8616600,5, 0x8616620,5, 0x8616640,5, 0x8616660,5, 0x8616680,5, 0x86166a0,5, 0x86166c0,5, 0x86166e0,5, 0x8616700,5, 0x8616720,5, 0x8616740,5, 0x8616760,5, 0x8616780,5, 0x86167a0,5, 0x86167c0,5, 0x86167e0,5, 0x8616800,5, 0x8616820,5, 0x8616840,5, 0x8616860,5, 0x8616880,5, 0x86168a0,5, 0x86168c0,5, 0x86168e0,5, 0x8616900,5, 0x8616920,5, 0x8616940,5, 0x8616960,5, 0x8616980,5, 0x86169a0,5, 0x86169c0,5, 0x86169e0,5, 0x8616a00,5, 0x8616a20,5, 0x8616a40,5, 0x8616a60,5, 0x8616a80,5, 0x8616aa0,5, 0x8616ac0,5, 0x8616ae0,5, 0x8616b00,5, 0x8616b20,5, 0x8616b40,5, 0x8616b60,5, 0x8616b80,5, 0x8616ba0,5, 0x8616bc0,5, 0x8616be0,5, 0x8616c00,5, 0x8616c20,5, 0x8616c40,5, 0x8616c60,5, 0x8616c80,5, 0x8616ca0,5, 0x8616cc0,5, 0x8616ce0,5, 0x8616d00,5, 0x8616d20,5, 0x8616d40,5, 0x8616d60,5, 0x8616d80,5, 0x8616da0,5, 0x8616dc0,5, 0x8616de0,5, 0x8616e00,5, 0x8616e20,5, 0x8616e40,5, 0x8616e60,5, 0x8616e80,5, 0x8616ea0,5, 0x8616ec0,5, 0x8616ee0,5, 0x8616f00,5, 0x8616f20,5, 0x8616f40,5, 0x8616f60,5, 0x8616f80,5, 0x8616fa0,5, 0x8616fc0,5, 0x8616fe0,5, 0x8617000,5, 0x8617020,5, 0x8617040,5, 0x8617060,5, 0x8617080,5, 0x86170a0,5, 0x86170c0,5, 0x86170e0,5, 0x8617100,5, 0x8617120,5, 0x8617140,5, 0x8617160,5, 0x8617180,5, 0x86171a0,5, 0x86171c0,5, 0x86171e0,5, 0x8617200,5, 0x8617220,5, 0x8617240,5, 0x8617260,5, 0x8617280,5, 0x86172a0,5, 0x86172c0,5, 0x86172e0,5, 0x8617300,5, 0x8617320,5, 0x8617340,5, 0x8617360,5, 0x8617380,5, 0x86173a0,5, 0x86173c0,5, 0x86173e0,5, 0x8617400,5, 0x8617420,5, 0x8617440,5, 0x8617460,5, 0x8617480,5, 0x86174a0,5, 0x86174c0,5, 0x86174e0,5, 0x8617500,5, 0x8617520,5, 0x8617540,5, 0x8617560,5, 0x8617580,5, 0x86175a0,5, 0x86175c0,5, 0x86175e0,5, 0x8617600,5, 0x8617620,5, 0x8617640,5, 0x8617660,5, 0x8617680,5, 0x86176a0,5, 0x86176c0,5, 0x86176e0,5, 0x8617700,5, 0x8617720,5, 0x8617740,5, 0x8617760,5, 0x8617780,5, 0x86177a0,5, 0x86177c0,5, 0x86177e0,5, 0x8617800,5, 0x8617820,5, 0x8617840,5, 0x8617860,5, 0x8617880,5, 0x86178a0,5, 0x86178c0,5, 0x86178e0,5, 0x8617900,5, 0x8617920,5, 0x8617940,5, 0x8617960,5, 0x8617980,5, 0x86179a0,5, 0x86179c0,5, 0x86179e0,5, 0x8617a00,5, 0x8617a20,5, 0x8617a40,5, 0x8617a60,5, 0x8617a80,5, 0x8617aa0,5, 0x8617ac0,5, 0x8617ae0,5, 0x8617b00,5, 0x8617b20,5, 0x8617b40,5, 0x8617b60,5, 0x8617b80,5, 0x8617ba0,5, 0x8617bc0,5, 0x8617be0,5, 0x8617c00,5, 0x8617c20,5, 0x8617c40,5, 0x8617c60,5, 0x8617c80,5, 0x8617ca0,5, 0x8617cc0,5, 0x8617ce0,5, 0x8617d00,5, 0x8617d20,5, 0x8617d40,5, 0x8617d60,5, 0x8617d80,5, 0x8617da0,5, 0x8617dc0,5, 0x8617de0,5, 0x8617e00,5, 0x8617e20,5, 0x8617e40,5, 0x8617e60,5, 0x8617e80,5, 0x8617ea0,5, 0x8617ec0,5, 0x8617ee0,5, 0x8617f00,5, 0x8617f20,5, 0x8617f40,5, 0x8617f60,5, 0x8617f80,5, 0x8617fa0,5, 0x8617fc0,5, 0x8617fe0,5, 0x8618000,5, 0x8618020,5, 0x8618040,5, 0x8618060,5, 0x8618080,5, 0x86180a0,5, 0x86180c0,5, 0x86180e0,5, 0x8618100,5, 0x8618120,5, 0x8618140,5, 0x8618160,5, 0x8618180,5, 0x86181a0,5, 0x86181c0,5, 0x86181e0,5, 0x8618200,5, 0x8618220,5, 0x8618240,5, 0x8618260,5, 0x8618280,5, 0x86182a0,5, 0x86182c0,5, 0x86182e0,5, 0x8618300,5, 0x8618320,5, 0x8618340,5, 0x8618360,5, 0x8618380,5, 0x86183a0,5, 0x86183c0,5, 0x86183e0,5, 0x8618400,5, 0x8618420,5, 0x8618440,5, 0x8618460,5, 0x8618480,5, 0x86184a0,5, 0x86184c0,5, 0x86184e0,5, 0x8618500,5, 0x8618520,5, 0x8618540,5, 0x8618560,5, 0x8618580,5, 0x86185a0,5, 0x86185c0,5, 0x86185e0,5, 0x8618600,5, 0x8618620,5, 0x8618640,5, 0x8618660,5, 0x8618680,5, 0x86186a0,5, 0x86186c0,5, 0x86186e0,5, 0x8618700,5, 0x8618720,5, 0x8618740,5, 0x8618760,5, 0x8618780,5, 0x86187a0,5, 0x86187c0,5, 0x86187e0,5, 0x8618800,5, 0x8618820,5, 0x8618840,5, 0x8618860,5, 0x8618880,5, 0x86188a0,5, 0x86188c0,5, 0x86188e0,5, 0x8618900,5, 0x8618920,5, 0x8618940,5, 0x8618960,5, 0x8618980,5, 0x86189a0,5, 0x86189c0,5, 0x86189e0,5, 0x8618a00,5, 0x8618a20,5, 0x8618a40,5, 0x8618a60,5, 0x8618a80,5, 0x8618aa0,5, 0x8618ac0,5, 0x8618ae0,5, 0x8618b00,5, 0x8618b20,5, 0x8618b40,5, 0x8618b60,5, 0x8618b80,5, 0x8618ba0,5, 0x8618bc0,5, 0x8618be0,5, 0x8618c00,5, 0x8618c20,5, 0x8618c40,5, 0x8618c60,5, 0x8618c80,5, 0x8618ca0,5, 0x8618cc0,5, 0x8618ce0,5, 0x8618d00,5, 0x8618d20,5, 0x8618d40,5, 0x8618d60,5, 0x8618d80,5, 0x8618da0,5, 0x8618dc0,5, 0x8618de0,5, 0x8618e00,5, 0x8618e20,5, 0x8618e40,5, 0x8618e60,5, 0x8618e80,5, 0x8618ea0,5, 0x8618ec0,5, 0x8618ee0,5, 0x8618f00,5, 0x8618f20,5, 0x8618f40,5, 0x8618f60,5, 0x8618f80,5, 0x8618fa0,5, 0x8618fc0,5, 0x8618fe0,5, 0x8619000,5, 0x8619020,5, 0x8619040,5, 0x8619060,5, 0x8619080,5, 0x86190a0,5, 0x86190c0,5, 0x86190e0,5, 0x8619100,5, 0x8619120,5, 0x8619140,5, 0x8619160,5, 0x8619180,5, 0x86191a0,5, 0x86191c0,5, 0x86191e0,5, 0x8619200,5, 0x8619220,5, 0x8619240,5, 0x8619260,5, 0x8619280,5, 0x86192a0,5, 0x86192c0,5, 0x86192e0,5, 0x8619300,5, 0x8619320,5, 0x8619340,5, 0x8619360,5, 0x8619380,5, 0x86193a0,5, 0x86193c0,5, 0x86193e0,5, 0x8619400,5, 0x8619420,5, 0x8619440,5, 0x8619460,5, 0x8619480,5, 0x86194a0,5, 0x86194c0,5, 0x86194e0,5, 0x8619500,5, 0x8619520,5, 0x8619540,5, 0x8619560,5, 0x8619580,5, 0x86195a0,5, 0x86195c0,5, 0x86195e0,5, 0x8619600,5, 0x8619620,5, 0x8619640,5, 0x8619660,5, 0x8619680,5, 0x86196a0,5, 0x86196c0,5, 0x86196e0,5, 0x8619700,5, 0x8619720,5, 0x8619740,5, 0x8619760,5, 0x8619780,5, 0x86197a0,5, 0x86197c0,5, 0x86197e0,5, 0x8619800,5, 0x8619820,5, 0x8619840,5, 0x8619860,5, 0x8619880,5, 0x86198a0,5, 0x86198c0,5, 0x86198e0,5, 0x8619900,5, 0x8619920,5, 0x8619940,5, 0x8619960,5, 0x8619980,5, 0x86199a0,5, 0x86199c0,5, 0x86199e0,5, 0x8619a00,5, 0x8619a20,5, 0x8619a40,5, 0x8619a60,5, 0x8619a80,5, 0x8619aa0,5, 0x8619ac0,5, 0x8619ae0,5, 0x8619b00,5, 0x8619b20,5, 0x8619b40,5, 0x8619b60,5, 0x8619b80,5, 0x8619ba0,5, 0x8619bc0,5, 0x8619be0,5, 0x8619c00,5, 0x8619c20,5, 0x8619c40,5, 0x8619c60,5, 0x8619c80,5, 0x8619ca0,5, 0x8619cc0,5, 0x8619ce0,5, 0x8619d00,5, 0x8619d20,5, 0x8619d40,5, 0x8619d60,5, 0x8619d80,5, 0x8619da0,5, 0x8619dc0,5, 0x8619de0,5, 0x8619e00,5, 0x8619e20,5, 0x8619e40,5, 0x8619e60,5, 0x8619e80,5, 0x8619ea0,5, 0x8619ec0,5, 0x8619ee0,5, 0x8619f00,5, 0x8619f20,5, 0x8619f40,5, 0x8619f60,5, 0x8619f80,5, 0x8619fa0,5, 0x8619fc0,5, 0x8619fe0,5, 0x861a000,5, 0x861a020,5, 0x861a040,5, 0x861a060,5, 0x861a080,5, 0x861a0a0,5, 0x861a0c0,5, 0x861a0e0,5, 0x861a100,5, 0x861a120,5, 0x861a140,5, 0x861a160,5, 0x861a180,5, 0x861a1a0,5, 0x861a1c0,5, 0x861a1e0,5, 0x861a200,5, 0x861a220,5, 0x861a240,5, 0x861a260,5, 0x861a280,5, 0x861a2a0,5, 0x861a2c0,5, 0x861a2e0,5, 0x861a300,5, 0x861a320,5, 0x861a340,5, 0x861a360,5, 0x861a380,5, 0x861a3a0,5, 0x861a3c0,5, 0x861a3e0,5, 0x861a400,5, 0x861a420,5, 0x861a440,5, 0x861a460,5, 0x861a480,5, 0x861a4a0,5, 0x861a4c0,5, 0x861a4e0,5, 0x861a500,5, 0x861a520,5, 0x861a540,5, 0x861a560,5, 0x861a580,5, 0x861a5a0,5, 0x861a5c0,5, 0x861a5e0,5, 0x861a600,5, 0x861a620,5, 0x861a640,5, 0x861a660,5, 0x861a680,5, 0x861a6a0,5, 0x861a6c0,5, 0x861a6e0,5, 0x861a700,5, 0x861a720,5, 0x861a740,5, 0x861a760,5, 0x861a780,5, 0x861a7a0,5, 0x861a7c0,5, 0x861a7e0,5, 0x861a800,5, 0x861a820,5, 0x861a840,5, 0x861a860,5, 0x861a880,5, 0x861a8a0,5, 0x861a8c0,5, 0x861a8e0,5, 0x861a900,5, 0x861a920,5, 0x861a940,5, 0x861a960,5, 0x861a980,5, 0x861a9a0,5, 0x861a9c0,5, 0x861a9e0,5, 0x861aa00,5, 0x861aa20,5, 0x861aa40,5, 0x861aa60,5, 0x861aa80,5, 0x861aaa0,5, 0x861aac0,5, 0x861aae0,5, 0x861ab00,5, 0x861ab20,5, 0x861ab40,5, 0x861ab60,5, 0x861ab80,5, 0x861aba0,5, 0x861abc0,5, 0x861abe0,5, 0x861ac00,5, 0x861ac20,5, 0x861ac40,5, 0x861ac60,5, 0x861ac80,5, 0x861aca0,5, 0x861acc0,5, 0x861ace0,5, 0x861ad00,5, 0x861ad20,5, 0x861ad40,5, 0x861ad60,5, 0x861ad80,5, 0x861ada0,5, 0x861adc0,5, 0x861ade0,5, 0x861ae00,5, 0x861ae20,5, 0x861ae40,5, 0x861ae60,5, 0x861ae80,5, 0x861aea0,5, 0x861aec0,5, 0x861aee0,5, 0x861af00,5, 0x861af20,5, 0x861af40,5, 0x861af60,5, 0x861af80,5, 0x861afa0,5, 0x861afc0,5, 0x861afe0,5, 0x861b000,5, 0x861b020,5, 0x861b040,5, 0x861b060,5, 0x861b080,5, 0x861b0a0,5, 0x861b0c0,5, 0x861b0e0,5, 0x861b100,5, 0x861b120,5, 0x861b140,5, 0x861b160,5, 0x861b180,5, 0x861b1a0,5, 0x861b1c0,5, 0x861b1e0,5, 0x861b200,5, 0x861b220,5, 0x861b240,5, 0x861b260,5, 0x861b280,5, 0x861b2a0,5, 0x861b2c0,5, 0x861b2e0,5, 0x861b300,5, 0x861b320,5, 0x861b340,5, 0x861b360,5, 0x861b380,5, 0x861b3a0,5, 0x861b3c0,5, 0x861b3e0,5, 0x861b400,5, 0x861b420,5, 0x861b440,5, 0x861b460,5, 0x861b480,5, 0x861b4a0,5, 0x861b4c0,5, 0x861b4e0,5, 0x861b500,5, 0x861b520,5, 0x861b540,5, 0x861b560,5, 0x861b580,5, 0x861b5a0,5, 0x861b5c0,5, 0x861b5e0,5, 0x861b600,5, 0x861b620,5, 0x861b640,5, 0x861b660,5, 0x861b680,5, 0x861b6a0,5, 0x861b6c0,5, 0x861b6e0,5, 0x861b700,5, 0x861b720,5, 0x861b740,5, 0x861b760,5, 0x861b780,5, 0x861b7a0,5, 0x861b7c0,5, 0x861b7e0,5, 0x861b800,5, 0x861b820,5, 0x861b840,5, 0x861b860,5, 0x861b880,5, 0x861b8a0,5, 0x861b8c0,5, 0x861b8e0,5, 0x861b900,5, 0x861b920,5, 0x861b940,5, 0x861b960,5, 0x861b980,5, 0x861b9a0,5, 0x861b9c0,5, 0x861b9e0,5, 0x861ba00,5, 0x861ba20,5, 0x861ba40,5, 0x861ba60,5, 0x861ba80,5, 0x861baa0,5, 0x861bac0,5, 0x861bae0,5, 0x861bb00,5, 0x861bb20,5, 0x861bb40,5, 0x861bb60,5, 0x861bb80,5, 0x861bba0,5, 0x861bbc0,5, 0x861bbe0,5, 0x861bc00,5, 0x861bc20,5, 0x861bc40,5, 0x861bc60,5, 0x861bc80,5, 0x861bca0,5, 0x861bcc0,5, 0x861bce0,5, 0x861bd00,5, 0x861bd20,5, 0x861bd40,5, 0x861bd60,5, 0x861bd80,5, 0x861bda0,5, 0x861bdc0,5, 0x861bde0,5, 0x861be00,5, 0x861be20,5, 0x861be40,5, 0x861be60,5, 0x861be80,5, 0x861bea0,5, 0x861bec0,5, 0x861bee0,5, 0x861bf00,5, 0x861bf20,5, 0x861bf40,5, 0x861bf60,5, 0x861bf80,5, 0x861bfa0,5, 0x861bfc0,5, 0x861bfe0,5, 0x861c000,5, 0x861c020,5, 0x861c040,5, 0x861c060,5, 0x861c080,5, 0x861c0a0,5, 0x861c0c0,5, 0x861c0e0,5, 0x861c100,5, 0x861c120,5, 0x861c140,5, 0x861c160,5, 0x861c180,5, 0x861c1a0,5, 0x861c1c0,5, 0x861c1e0,5, 0x861c200,5, 0x861c220,5, 0x861c240,5, 0x861c260,5, 0x861c280,5, 0x861c2a0,5, 0x861c2c0,5, 0x861c2e0,5, 0x861c300,5, 0x861c320,5, 0x861c340,5, 0x861c360,5, 0x861c380,5, 0x861c3a0,5, 0x861c3c0,5, 0x861c3e0,5, 0x861c400,5, 0x861c420,5, 0x861c440,5, 0x861c460,5, 0x861c480,5, 0x861c4a0,5, 0x861c4c0,5, 0x861c4e0,5, 0x861c500,5, 0x861c520,5, 0x861c540,5, 0x861c560,5, 0x861c580,5, 0x861c5a0,5, 0x861c5c0,5, 0x861c5e0,5, 0x861c600,5, 0x861c620,5, 0x861c640,5, 0x861c660,5, 0x861c680,5, 0x861c6a0,5, 0x861c6c0,5, 0x861c6e0,5, 0x861c700,5, 0x861c720,5, 0x861c740,5, 0x861c760,5, 0x861c780,5, 0x861c7a0,5, 0x861c7c0,5, 0x861c7e0,5, 0x861c800,5, 0x861c820,5, 0x861c840,5, 0x861c860,5, 0x861c880,5, 0x861c8a0,5, 0x861c8c0,5, 0x861c8e0,5, 0x861c900,5, 0x861c920,5, 0x861c940,5, 0x861c960,5, 0x861c980,5, 0x861c9a0,5, 0x861c9c0,5, 0x861c9e0,5, 0x861ca00,5, 0x861ca20,5, 0x861ca40,5, 0x861ca60,5, 0x861ca80,5, 0x861caa0,5, 0x861cac0,5, 0x861cae0,5, 0x861cb00,5, 0x861cb20,5, 0x861cb40,5, 0x861cb60,5, 0x861cb80,5, 0x861cba0,5, 0x861cbc0,5, 0x861cbe0,5, 0x861cc00,5, 0x861cc20,5, 0x861cc40,5, 0x861cc60,5, 0x861cc80,5, 0x861cca0,5, 0x861ccc0,5, 0x861cce0,5, 0x861cd00,5, 0x861cd20,5, 0x861cd40,5, 0x861cd60,5, 0x861cd80,5, 0x861cda0,5, 0x861cdc0,5, 0x861cde0,5, 0x861ce00,5, 0x861ce20,5, 0x861ce40,5, 0x861ce60,5, 0x861ce80,5, 0x861cea0,5, 0x861cec0,5, 0x861cee0,5, 0x861cf00,5, 0x861cf20,5, 0x861cf40,5, 0x861cf60,5, 0x861cf80,5, 0x861cfa0,5, 0x861cfc0,5, 0x861cfe0,5, 0x861d000,5, 0x861d020,5, 0x861d040,5, 0x861d060,5, 0x861d080,5, 0x861d0a0,5, 0x861d0c0,5, 0x861d0e0,5, 0x861d100,5, 0x861d120,5, 0x861d140,5, 0x861d160,5, 0x861d180,5, 0x861d1a0,5, 0x861d1c0,5, 0x861d1e0,5, 0x861d200,5, 0x861d220,5, 0x861d240,5, 0x861d260,5, 0x861d280,5, 0x861d2a0,5, 0x861d2c0,5, 0x861d2e0,5, 0x861d300,5, 0x861d320,5, 0x861d340,5, 0x861d360,5, 0x861d380,5, 0x861d3a0,5, 0x861d3c0,5, 0x861d3e0,5, 0x861d400,5, 0x861d420,5, 0x861d440,5, 0x861d460,5, 0x861d480,5, 0x861d4a0,5, 0x861d4c0,5, 0x861d4e0,5, 0x861d500,5, 0x861d520,5, 0x861d540,5, 0x861d560,5, 0x861d580,5, 0x861d5a0,5, 0x861d5c0,5, 0x861d5e0,5, 0x861d600,5, 0x861d620,5, 0x861d640,5, 0x861d660,5, 0x861d680,5, 0x861d6a0,5, 0x861d6c0,5, 0x861d6e0,5, 0x861d700,5, 0x861d720,5, 0x861d740,5, 0x861d760,5, 0x861d780,5, 0x861d7a0,5, 0x861d7c0,5, 0x861d7e0,5, 0x861d800,5, 0x861d820,5, 0x861d840,5, 0x861d860,5, 0x861d880,5, 0x861d8a0,5, 0x861d8c0,5, 0x861d8e0,5, 0x861d900,5, 0x861d920,5, 0x861d940,5, 0x861d960,5, 0x861d980,5, 0x861d9a0,5, 0x861d9c0,5, 0x861d9e0,5, 0x861da00,5, 0x861da20,5, 0x861da40,5, 0x861da60,5, 0x861da80,5, 0x861daa0,5, 0x861dac0,5, 0x861dae0,5, 0x861db00,5, 0x861db20,5, 0x861db40,5, 0x861db60,5, 0x861db80,5, 0x861dba0,5, 0x861dbc0,5, 0x861dbe0,5, 0x861dc00,5, 0x861dc20,5, 0x861dc40,5, 0x861dc60,5, 0x861dc80,5, 0x861dca0,5, 0x861dcc0,5, 0x861dce0,5, 0x861dd00,5, 0x861dd20,5, 0x861dd40,5, 0x861dd60,5, 0x861dd80,5, 0x861dda0,5, 0x861ddc0,5, 0x861dde0,5, 0x861de00,5, 0x861de20,5, 0x861de40,5, 0x861de60,5, 0x861de80,5, 0x861dea0,5, 0x861dec0,5, 0x861dee0,5, 0x861df00,5, 0x861df20,5, 0x861df40,5, 0x861df60,5, 0x861df80,5, 0x861dfa0,5, 0x861dfc0,5, 0x861dfe0,5, 0x861e000,5, 0x861e020,5, 0x861e040,5, 0x861e060,5, 0x861e080,5, 0x861e0a0,5, 0x861e0c0,5, 0x861e0e0,5, 0x861e100,5, 0x861e120,5, 0x861e140,5, 0x861e160,5, 0x861e180,5, 0x861e1a0,5, 0x861e1c0,5, 0x861e1e0,5, 0x861e200,5, 0x861e220,5, 0x861e240,5, 0x861e260,5, 0x861e280,5, 0x861e2a0,5, 0x861e2c0,5, 0x861e2e0,5, 0x861e300,5, 0x861e320,5, 0x861e340,5, 0x861e360,5, 0x861e380,5, 0x861e3a0,5, 0x861e3c0,5, 0x861e3e0,5, 0x861e400,5, 0x861e420,5, 0x861e440,5, 0x861e460,5, 0x861e480,5, 0x861e4a0,5, 0x861e4c0,5, 0x861e4e0,5, 0x861e500,5, 0x861e520,5, 0x861e540,5, 0x861e560,5, 0x861e580,5, 0x861e5a0,5, 0x861e5c0,5, 0x861e5e0,5, 0x861e600,5, 0x861e620,5, 0x861e640,5, 0x861e660,5, 0x861e680,5, 0x861e6a0,5, 0x861e6c0,5, 0x861e6e0,5, 0x861e700,5, 0x861e720,5, 0x861e740,5, 0x861e760,5, 0x861e780,5, 0x861e7a0,5, 0x861e7c0,5, 0x861e7e0,5, 0x861e800,5, 0x861e820,5, 0x861e840,5, 0x861e860,5, 0x861e880,5, 0x861e8a0,5, 0x861e8c0,5, 0x861e8e0,5, 0x861e900,5, 0x861e920,5, 0x861e940,5, 0x861e960,5, 0x861e980,5, 0x861e9a0,5, 0x861e9c0,5, 0x861e9e0,5, 0x861ea00,5, 0x861ea20,5, 0x861ea40,5, 0x861ea60,5, 0x861ea80,5, 0x861eaa0,5, 0x861eac0,5, 0x861eae0,5, 0x861eb00,5, 0x861eb20,5, 0x861eb40,5, 0x861eb60,5, 0x861eb80,5, 0x861eba0,5, 0x861ebc0,5, 0x861ebe0,5, 0x861ec00,5, 0x861ec20,5, 0x861ec40,5, 0x861ec60,5, 0x861ec80,5, 0x861eca0,5, 0x861ecc0,5, 0x861ece0,5, 0x861ed00,5, 0x861ed20,5, 0x861ed40,5, 0x861ed60,5, 0x861ed80,5, 0x861eda0,5, 0x861edc0,5, 0x861ede0,5, 0x861ee00,5, 0x861ee20,5, 0x861ee40,5, 0x861ee60,5, 0x861ee80,5, 0x861eea0,5, 0x861eec0,5, 0x861eee0,5, 0x861ef00,5, 0x861ef20,5, 0x861ef40,5, 0x861ef60,5, 0x861ef80,5, 0x861efa0,5, 0x861efc0,5, 0x861efe0,5, 0x861f000,5, 0x861f020,5, 0x861f040,5, 0x861f060,5, 0x861f080,5, 0x861f0a0,5, 0x861f0c0,5, 0x861f0e0,5, 0x861f100,5, 0x861f120,5, 0x861f140,5, 0x861f160,5, 0x861f180,5, 0x861f1a0,5, 0x861f1c0,5, 0x861f1e0,5, 0x861f200,5, 0x861f220,5, 0x861f240,5, 0x861f260,5, 0x861f280,5, 0x861f2a0,5, 0x861f2c0,5, 0x861f2e0,5, 0x861f300,5, 0x861f320,5, 0x861f340,5, 0x861f360,5, 0x861f380,5, 0x861f3a0,5, 0x861f3c0,5, 0x861f3e0,5, 0x861f400,5, 0x861f420,5, 0x861f440,5, 0x861f460,5, 0x861f480,5, 0x861f4a0,5, 0x861f4c0,5, 0x861f4e0,5, 0x861f500,5, 0x861f520,5, 0x861f540,5, 0x861f560,5, 0x861f580,5, 0x861f5a0,5, 0x861f5c0,5, 0x861f5e0,5, 0x861f600,5, 0x861f620,5, 0x861f640,5, 0x861f660,5, 0x861f680,5, 0x861f6a0,5, 0x861f6c0,5, 0x861f6e0,5, 0x861f700,5, 0x861f720,5, 0x861f740,5, 0x861f760,5, 0x861f780,5, 0x861f7a0,5, 0x861f7c0,5, 0x861f7e0,5, 0x861f800,5, 0x861f820,5, 0x861f840,5, 0x861f860,5, 0x861f880,5, 0x861f8a0,5, 0x861f8c0,5, 0x861f8e0,5, 0x861f900,5, 0x861f920,5, 0x861f940,5, 0x861f960,5, 0x861f980,5, 0x861f9a0,5, 0x861f9c0,5, 0x861f9e0,5, 0x861fa00,5, 0x861fa20,5, 0x861fa40,5, 0x861fa60,5, 0x861fa80,5, 0x861faa0,5, 0x861fac0,5, 0x861fae0,5, 0x861fb00,5, 0x861fb20,5, 0x861fb40,5, 0x861fb60,5, 0x861fb80,5, 0x861fba0,5, 0x861fbc0,5, 0x861fbe0,5, 0x861fc00,5, 0x861fc20,5, 0x861fc40,5, 0x861fc60,5, 0x861fc80,5, 0x861fca0,5, 0x861fcc0,5, 0x861fce0,5, 0x861fd00,5, 0x861fd20,5, 0x861fd40,5, 0x861fd60,5, 0x861fd80,5, 0x861fda0,5, 0x861fdc0,5, 0x861fde0,5, 0x861fe00,5, 0x861fe20,5, 0x861fe40,5, 0x861fe60,5, 0x861fe80,5, 0x861fea0,5, 0x861fec0,5, 0x861fee0,5, 0x861ff00,5, 0x861ff20,5, 0x861ff40,5, 0x861ff60,5, 0x861ff80,5, 0x861ffa0,5, 0x861ffc0,5, 0x861ffe0,5, 0x8620000,2, 0x8620040,9, 0x8620080,19, 0x8680000,6, 0x8680020,6, 0x8680040,6, 0x8680060,6, 0x8680080,6, 0x86800a0,6, 0x86800c0,6, 0x86800e0,6, 0x8680100,6, 0x8680120,6, 0x8680140,6, 0x8680160,6, 0x8680180,6, 0x86801a0,6, 0x86801c0,6, 0x86801e0,6, 0x8680200,6, 0x8680220,6, 0x8680240,6, 0x8680260,6, 0x8680280,6, 0x86802a0,6, 0x86802c0,6, 0x86802e0,6, 0x8680300,6, 0x8680320,6, 0x8680340,6, 0x8680360,6, 0x8680380,6, 0x86803a0,6, 0x86803c0,6, 0x86803e0,6, 0x8680400,6, 0x8680420,6, 0x8680440,6, 0x8680460,6, 0x8680480,6, 0x86804a0,6, 0x86804c0,6, 0x86804e0,6, 0x8680500,6, 0x8680520,6, 0x8680540,6, 0x8680560,6, 0x8680580,6, 0x86805a0,6, 0x86805c0,6, 0x86805e0,6, 0x8680600,6, 0x8680620,6, 0x8680640,6, 0x8680660,6, 0x8680680,6, 0x86806a0,6, 0x86806c0,6, 0x86806e0,6, 0x8680700,6, 0x8680720,6, 0x8680740,6, 0x8680760,6, 0x8680780,6, 0x86807a0,6, 0x86807c0,6, 0x86807e0,6, 0x8680800,6, 0x8680820,6, 0x8680840,6, 0x8680860,6, 0x8680880,6, 0x86808a0,6, 0x86808c0,6, 0x86808e0,6, 0x8680900,6, 0x8680920,6, 0x8680940,6, 0x8680960,6, 0x8680980,6, 0x86809a0,6, 0x86809c0,6, 0x86809e0,6, 0x8680a00,6, 0x8680a20,6, 0x8680a40,6, 0x8680a60,6, 0x8680a80,6, 0x8680aa0,6, 0x8680ac0,6, 0x8680ae0,6, 0x8680b00,6, 0x8680b20,6, 0x8680b40,6, 0x8680b60,6, 0x8680b80,6, 0x8680ba0,6, 0x8680bc0,6, 0x8680be0,6, 0x8680c00,6, 0x8680c20,6, 0x8680c40,6, 0x8680c60,6, 0x8680c80,6, 0x8680ca0,6, 0x8680cc0,6, 0x8680ce0,6, 0x8680d00,6, 0x8680d20,6, 0x8680d40,6, 0x8680d60,6, 0x8680d80,6, 0x8680da0,6, 0x8680dc0,6, 0x8680de0,6, 0x8680e00,6, 0x8680e20,6, 0x8680e40,6, 0x8680e60,6, 0x8680e80,6, 0x8680ea0,6, 0x8680ec0,6, 0x8680ee0,6, 0x8680f00,6, 0x8680f20,6, 0x8680f40,6, 0x8680f60,6, 0x8680f80,6, 0x8680fa0,6, 0x8680fc0,6, 0x8680fe0,6, 0x8681000,6, 0x8681020,6, 0x8681040,6, 0x8681060,6, 0x8681080,6, 0x86810a0,6, 0x86810c0,6, 0x86810e0,6, 0x8681100,6, 0x8681120,6, 0x8681140,6, 0x8681160,6, 0x8681180,6, 0x86811a0,6, 0x86811c0,6, 0x86811e0,6, 0x8681200,6, 0x8681220,6, 0x8681240,6, 0x8681260,6, 0x8681280,6, 0x86812a0,6, 0x86812c0,6, 0x86812e0,6, 0x8681300,6, 0x8681320,6, 0x8681340,6, 0x8681360,6, 0x8681380,6, 0x86813a0,6, 0x86813c0,6, 0x86813e0,6, 0x8681400,6, 0x8681420,6, 0x8681440,6, 0x8681460,6, 0x8681480,6, 0x86814a0,6, 0x86814c0,6, 0x86814e0,6, 0x8681500,6, 0x8681520,6, 0x8681540,6, 0x8681560,6, 0x8681580,6, 0x86815a0,6, 0x86815c0,6, 0x86815e0,6, 0x8681600,6, 0x8681620,6, 0x8681640,6, 0x8681660,6, 0x8681680,6, 0x86816a0,6, 0x86816c0,6, 0x86816e0,6, 0x8681700,6, 0x8681720,6, 0x8681740,6, 0x8681760,6, 0x8681780,6, 0x86817a0,6, 0x86817c0,6, 0x86817e0,6, 0x8681800,6, 0x8681820,6, 0x8681840,6, 0x8681860,6, 0x8681880,6, 0x86818a0,6, 0x86818c0,6, 0x86818e0,6, 0x8681900,6, 0x8681920,6, 0x8681940,6, 0x8681960,6, 0x8681980,6, 0x86819a0,6, 0x86819c0,6, 0x86819e0,6, 0x8681a00,6, 0x8681a20,6, 0x8681a40,6, 0x8681a60,6, 0x8681a80,6, 0x8681aa0,6, 0x8681ac0,6, 0x8681ae0,6, 0x8681b00,6, 0x8681b20,6, 0x8681b40,6, 0x8681b60,6, 0x8681b80,6, 0x8681ba0,6, 0x8681bc0,6, 0x8681be0,6, 0x8681c00,6, 0x8681c20,6, 0x8681c40,6, 0x8681c60,6, 0x8681c80,6, 0x8681ca0,6, 0x8681cc0,6, 0x8681ce0,6, 0x8681d00,6, 0x8681d20,6, 0x8681d40,6, 0x8681d60,6, 0x8681d80,6, 0x8681da0,6, 0x8681dc0,6, 0x8681de0,6, 0x8681e00,6, 0x8681e20,6, 0x8681e40,6, 0x8681e60,6, 0x8681e80,6, 0x8681ea0,6, 0x8681ec0,6, 0x8681ee0,6, 0x8681f00,6, 0x8681f20,6, 0x8681f40,6, 0x8681f60,6, 0x8681f80,6, 0x8681fa0,6, 0x8681fc0,6, 0x8681fe0,6, 0x8682000,6, 0x8682020,6, 0x8682040,6, 0x8682060,6, 0x8682080,6, 0x86820a0,6, 0x86820c0,6, 0x86820e0,6, 0x8682100,6, 0x8682120,6, 0x8682140,6, 0x8682160,6, 0x8682180,6, 0x86821a0,6, 0x86821c0,6, 0x86821e0,6, 0x8682200,6, 0x8682220,6, 0x8682240,6, 0x8682260,6, 0x8682280,6, 0x86822a0,6, 0x86822c0,6, 0x86822e0,6, 0x8682300,6, 0x8682320,6, 0x8682340,6, 0x8682360,6, 0x8682380,6, 0x86823a0,6, 0x86823c0,6, 0x86823e0,6, 0x8682400,6, 0x8682420,6, 0x8682440,6, 0x8682460,6, 0x8682480,6, 0x86824a0,6, 0x86824c0,6, 0x86824e0,6, 0x8682500,6, 0x8682520,6, 0x8682540,6, 0x8682560,6, 0x8682580,6, 0x86825a0,6, 0x86825c0,6, 0x86825e0,6, 0x8682600,6, 0x8682620,6, 0x8682640,6, 0x8682660,6, 0x8682680,6, 0x86826a0,6, 0x86826c0,6, 0x86826e0,6, 0x8682700,6, 0x8682720,6, 0x8682740,6, 0x8682760,6, 0x8682780,6, 0x86827a0,6, 0x86827c0,6, 0x86827e0,6, 0x8682800,6, 0x8682820,6, 0x8682840,6, 0x8682860,6, 0x8682880,6, 0x86828a0,6, 0x86828c0,6, 0x86828e0,6, 0x8682900,6, 0x8682920,6, 0x8682940,6, 0x8682960,6, 0x8682980,6, 0x86829a0,6, 0x86829c0,6, 0x86829e0,6, 0x8682a00,6, 0x8682a20,6, 0x8682a40,6, 0x8682a60,6, 0x8682a80,6, 0x8682aa0,6, 0x8682ac0,6, 0x8682ae0,6, 0x8682b00,6, 0x8682b20,6, 0x8682b40,6, 0x8682b60,6, 0x8682b80,6, 0x8682ba0,6, 0x8682bc0,6, 0x8682be0,6, 0x8682c00,6, 0x8682c20,6, 0x8682c40,6, 0x8682c60,6, 0x8682c80,6, 0x8682ca0,6, 0x8682cc0,6, 0x8682ce0,6, 0x8682d00,6, 0x8682d20,6, 0x8682d40,6, 0x8682d60,6, 0x8682d80,6, 0x8682da0,6, 0x8682dc0,6, 0x8682de0,6, 0x8682e00,6, 0x8682e20,6, 0x8682e40,6, 0x8682e60,6, 0x8682e80,6, 0x8682ea0,6, 0x8682ec0,6, 0x8682ee0,6, 0x8682f00,6, 0x8682f20,6, 0x8682f40,6, 0x8682f60,6, 0x8682f80,6, 0x8682fa0,6, 0x8682fc0,6, 0x8682fe0,6, 0x8683000,6, 0x8683020,6, 0x8683040,6, 0x8683060,6, 0x8683080,6, 0x86830a0,6, 0x86830c0,6, 0x86830e0,6, 0x8683100,6, 0x8683120,6, 0x8683140,6, 0x8683160,6, 0x8683180,6, 0x86831a0,6, 0x86831c0,6, 0x86831e0,6, 0x8683200,6, 0x8683220,6, 0x8683240,6, 0x8683260,6, 0x8683280,6, 0x86832a0,6, 0x86832c0,6, 0x86832e0,6, 0x8683300,6, 0x8683320,6, 0x8683340,6, 0x8683360,6, 0x8683380,6, 0x86833a0,6, 0x86833c0,6, 0x86833e0,6, 0x8683400,6, 0x8683420,6, 0x8683440,6, 0x8683460,6, 0x8683480,6, 0x86834a0,6, 0x86834c0,6, 0x86834e0,6, 0x8683500,6, 0x8683520,6, 0x8683540,6, 0x8683560,6, 0x8683580,6, 0x86835a0,6, 0x86835c0,6, 0x86835e0,6, 0x8683600,6, 0x8683620,6, 0x8683640,6, 0x8683660,6, 0x8683680,6, 0x86836a0,6, 0x86836c0,6, 0x86836e0,6, 0x8683700,6, 0x8683720,6, 0x8683740,6, 0x8683760,6, 0x8683780,6, 0x86837a0,6, 0x86837c0,6, 0x86837e0,6, 0x8683800,6, 0x8683820,6, 0x8683840,6, 0x8683860,6, 0x8683880,6, 0x86838a0,6, 0x86838c0,6, 0x86838e0,6, 0x8683900,6, 0x8683920,6, 0x8683940,6, 0x8683960,6, 0x8683980,6, 0x86839a0,6, 0x86839c0,6, 0x86839e0,6, 0x8683a00,6, 0x8683a20,6, 0x8683a40,6, 0x8683a60,6, 0x8683a80,6, 0x8683aa0,6, 0x8683ac0,6, 0x8683ae0,6, 0x8683b00,6, 0x8683b20,6, 0x8683b40,6, 0x8683b60,6, 0x8683b80,6, 0x8683ba0,6, 0x8683bc0,6, 0x8683be0,6, 0x8683c00,6, 0x8683c20,6, 0x8683c40,6, 0x8683c60,6, 0x8683c80,6, 0x8683ca0,6, 0x8683cc0,6, 0x8683ce0,6, 0x8683d00,6, 0x8683d20,6, 0x8683d40,6, 0x8683d60,6, 0x8683d80,6, 0x8683da0,6, 0x8683dc0,6, 0x8683de0,6, 0x8683e00,6, 0x8683e20,6, 0x8683e40,6, 0x8683e60,6, 0x8683e80,6, 0x8683ea0,6, 0x8683ec0,6, 0x8683ee0,6, 0x8683f00,6, 0x8683f20,6, 0x8683f40,6, 0x8683f60,6, 0x8683f80,6, 0x8683fa0,6, 0x8683fc0,6, 0x8683fe0,6, 0x8684000,6, 0x8684020,6, 0x8684040,6, 0x8684060,6, 0x8684080,6, 0x86840a0,6, 0x86840c0,6, 0x86840e0,6, 0x8684100,6, 0x8684120,6, 0x8684140,6, 0x8684160,6, 0x8684180,6, 0x86841a0,6, 0x86841c0,6, 0x86841e0,6, 0x8684200,6, 0x8684220,6, 0x8684240,6, 0x8684260,6, 0x8684280,6, 0x86842a0,6, 0x86842c0,6, 0x86842e0,6, 0x8684300,6, 0x8684320,6, 0x8684340,6, 0x8684360,6, 0x8684380,6, 0x86843a0,6, 0x86843c0,6, 0x86843e0,6, 0x8684400,6, 0x8684420,6, 0x8684440,6, 0x8684460,6, 0x8684480,6, 0x86844a0,6, 0x86844c0,6, 0x86844e0,6, 0x8684500,6, 0x8684520,6, 0x8684540,6, 0x8684560,6, 0x8684580,6, 0x86845a0,6, 0x86845c0,6, 0x86845e0,6, 0x8684600,6, 0x8684620,6, 0x8684640,6, 0x8684660,6, 0x8684680,6, 0x86846a0,6, 0x86846c0,6, 0x86846e0,6, 0x8684700,6, 0x8684720,6, 0x8684740,6, 0x8684760,6, 0x8684780,6, 0x86847a0,6, 0x86847c0,6, 0x86847e0,6, 0x8684800,6, 0x8684820,6, 0x8684840,6, 0x8684860,6, 0x8684880,6, 0x86848a0,6, 0x86848c0,6, 0x86848e0,6, 0x8684900,6, 0x8684920,6, 0x8684940,6, 0x8684960,6, 0x8684980,6, 0x86849a0,6, 0x86849c0,6, 0x86849e0,6, 0x8684a00,6, 0x8684a20,6, 0x8684a40,6, 0x8684a60,6, 0x8684a80,6, 0x8684aa0,6, 0x8684ac0,6, 0x8684ae0,6, 0x8684b00,6, 0x8684b20,6, 0x8684b40,6, 0x8684b60,6, 0x8684b80,6, 0x8684ba0,6, 0x8684bc0,6, 0x8684be0,6, 0x8684c00,6, 0x8684c20,6, 0x8684c40,6, 0x8684c60,6, 0x8684c80,6, 0x8684ca0,6, 0x8684cc0,6, 0x8684ce0,6, 0x8684d00,6, 0x8684d20,6, 0x8684d40,6, 0x8684d60,6, 0x8684d80,6, 0x8684da0,6, 0x8684dc0,6, 0x8684de0,6, 0x8684e00,6, 0x8684e20,6, 0x8684e40,6, 0x8684e60,6, 0x8684e80,6, 0x8684ea0,6, 0x8684ec0,6, 0x8684ee0,6, 0x8684f00,6, 0x8684f20,6, 0x8684f40,6, 0x8684f60,6, 0x8684f80,6, 0x8684fa0,6, 0x8684fc0,6, 0x8684fe0,6, 0x8685000,6, 0x8685020,6, 0x8685040,6, 0x8685060,6, 0x8685080,6, 0x86850a0,6, 0x86850c0,6, 0x86850e0,6, 0x8685100,6, 0x8685120,6, 0x8685140,6, 0x8685160,6, 0x8685180,6, 0x86851a0,6, 0x86851c0,6, 0x86851e0,6, 0x8685200,6, 0x8685220,6, 0x8685240,6, 0x8685260,6, 0x8685280,6, 0x86852a0,6, 0x86852c0,6, 0x86852e0,6, 0x8685300,6, 0x8685320,6, 0x8685340,6, 0x8685360,6, 0x8685380,6, 0x86853a0,6, 0x86853c0,6, 0x86853e0,6, 0x8685400,6, 0x8685420,6, 0x8685440,6, 0x8685460,6, 0x8685480,6, 0x86854a0,6, 0x86854c0,6, 0x86854e0,6, 0x8685500,6, 0x8685520,6, 0x8685540,6, 0x8685560,6, 0x8685580,6, 0x86855a0,6, 0x86855c0,6, 0x86855e0,6, 0x8685600,6, 0x8685620,6, 0x8685640,6, 0x8685660,6, 0x8685680,6, 0x86856a0,6, 0x86856c0,6, 0x86856e0,6, 0x8685700,6, 0x8685720,6, 0x8685740,6, 0x8685760,6, 0x8685780,6, 0x86857a0,6, 0x86857c0,6, 0x86857e0,6, 0x8685800,6, 0x8685820,6, 0x8685840,6, 0x8685860,6, 0x8685880,6, 0x86858a0,6, 0x86858c0,6, 0x86858e0,6, 0x8685900,6, 0x8685920,6, 0x8685940,6, 0x8685960,6, 0x8685980,6, 0x86859a0,6, 0x86859c0,6, 0x86859e0,6, 0x8685a00,6, 0x8685a20,6, 0x8685a40,6, 0x8685a60,6, 0x8685a80,6, 0x8685aa0,6, 0x8685ac0,6, 0x8685ae0,6, 0x8685b00,6, 0x8685b20,6, 0x8685b40,6, 0x8685b60,6, 0x8685b80,6, 0x8685ba0,6, 0x8685bc0,6, 0x8685be0,6, 0x8685c00,6, 0x8685c20,6, 0x8685c40,6, 0x8685c60,6, 0x8685c80,6, 0x8685ca0,6, 0x8685cc0,6, 0x8685ce0,6, 0x8685d00,6, 0x8685d20,6, 0x8685d40,6, 0x8685d60,6, 0x8685d80,6, 0x8685da0,6, 0x8685dc0,6, 0x8685de0,6, 0x8685e00,6, 0x8685e20,6, 0x8685e40,6, 0x8685e60,6, 0x8685e80,6, 0x8685ea0,6, 0x8685ec0,6, 0x8685ee0,6, 0x8685f00,6, 0x8685f20,6, 0x8685f40,6, 0x8685f60,6, 0x8685f80,6, 0x8685fa0,6, 0x8685fc0,6, 0x8685fe0,6, 0x8686000,6, 0x8686020,6, 0x8686040,6, 0x8686060,6, 0x8686080,6, 0x86860a0,6, 0x86860c0,6, 0x86860e0,6, 0x8686100,6, 0x8686120,6, 0x8686140,6, 0x8686160,6, 0x8686180,6, 0x86861a0,6, 0x86861c0,6, 0x86861e0,6, 0x8686200,6, 0x8686220,6, 0x8686240,6, 0x8686260,6, 0x8686280,6, 0x86862a0,6, 0x86862c0,6, 0x86862e0,6, 0x8686300,6, 0x8686320,6, 0x8686340,6, 0x8686360,6, 0x8686380,6, 0x86863a0,6, 0x86863c0,6, 0x86863e0,6, 0x8686400,6, 0x8686420,6, 0x8686440,6, 0x8686460,6, 0x8686480,6, 0x86864a0,6, 0x86864c0,6, 0x86864e0,6, 0x8686500,6, 0x8686520,6, 0x8686540,6, 0x8686560,6, 0x8686580,6, 0x86865a0,6, 0x86865c0,6, 0x86865e0,6, 0x8686600,6, 0x8686620,6, 0x8686640,6, 0x8686660,6, 0x8686680,6, 0x86866a0,6, 0x86866c0,6, 0x86866e0,6, 0x8686700,6, 0x8686720,6, 0x8686740,6, 0x8686760,6, 0x8686780,6, 0x86867a0,6, 0x86867c0,6, 0x86867e0,6, 0x8686800,6, 0x8686820,6, 0x8686840,6, 0x8686860,6, 0x8686880,6, 0x86868a0,6, 0x86868c0,6, 0x86868e0,6, 0x8686900,6, 0x8686920,6, 0x8686940,6, 0x8686960,6, 0x8686980,6, 0x86869a0,6, 0x86869c0,6, 0x86869e0,6, 0x8686a00,6, 0x8686a20,6, 0x8686a40,6, 0x8686a60,6, 0x8686a80,6, 0x8686aa0,6, 0x8686ac0,6, 0x8686ae0,6, 0x8686b00,6, 0x8686b20,6, 0x8686b40,6, 0x8686b60,6, 0x8686b80,6, 0x8686ba0,6, 0x8686bc0,6, 0x8686be0,6, 0x8686c00,6, 0x8686c20,6, 0x8686c40,6, 0x8686c60,6, 0x8686c80,6, 0x8686ca0,6, 0x8686cc0,6, 0x8686ce0,6, 0x8686d00,6, 0x8686d20,6, 0x8686d40,6, 0x8686d60,6, 0x8686d80,6, 0x8686da0,6, 0x8686dc0,6, 0x8686de0,6, 0x8686e00,6, 0x8686e20,6, 0x8686e40,6, 0x8686e60,6, 0x8686e80,6, 0x8686ea0,6, 0x8686ec0,6, 0x8686ee0,6, 0x8686f00,6, 0x8686f20,6, 0x8686f40,6, 0x8686f60,6, 0x8686f80,6, 0x8686fa0,6, 0x8686fc0,6, 0x8686fe0,6, 0x8687000,6, 0x8687020,6, 0x8687040,6, 0x8687060,6, 0x8687080,6, 0x86870a0,6, 0x86870c0,6, 0x86870e0,6, 0x8687100,6, 0x8687120,6, 0x8687140,6, 0x8687160,6, 0x8687180,6, 0x86871a0,6, 0x86871c0,6, 0x86871e0,6, 0x8687200,6, 0x8687220,6, 0x8687240,6, 0x8687260,6, 0x8687280,6, 0x86872a0,6, 0x86872c0,6, 0x86872e0,6, 0x8687300,6, 0x8687320,6, 0x8687340,6, 0x8687360,6, 0x8687380,6, 0x86873a0,6, 0x86873c0,6, 0x86873e0,6, 0x8687400,6, 0x8687420,6, 0x8687440,6, 0x8687460,6, 0x8687480,6, 0x86874a0,6, 0x86874c0,6, 0x86874e0,6, 0x8687500,6, 0x8687520,6, 0x8687540,6, 0x8687560,6, 0x8687580,6, 0x86875a0,6, 0x86875c0,6, 0x86875e0,6, 0x8687600,6, 0x8687620,6, 0x8687640,6, 0x8687660,6, 0x8687680,6, 0x86876a0,6, 0x86876c0,6, 0x86876e0,6, 0x8687700,6, 0x8687720,6, 0x8687740,6, 0x8687760,6, 0x8687780,6, 0x86877a0,6, 0x86877c0,6, 0x86877e0,6, 0x8687800,6, 0x8687820,6, 0x8687840,6, 0x8687860,6, 0x8687880,6, 0x86878a0,6, 0x86878c0,6, 0x86878e0,6, 0x8687900,6, 0x8687920,6, 0x8687940,6, 0x8687960,6, 0x8687980,6, 0x86879a0,6, 0x86879c0,6, 0x86879e0,6, 0x8687a00,6, 0x8687a20,6, 0x8687a40,6, 0x8687a60,6, 0x8687a80,6, 0x8687aa0,6, 0x8687ac0,6, 0x8687ae0,6, 0x8687b00,6, 0x8687b20,6, 0x8687b40,6, 0x8687b60,6, 0x8687b80,6, 0x8687ba0,6, 0x8687bc0,6, 0x8687be0,6, 0x8687c00,6, 0x8687c20,6, 0x8687c40,6, 0x8687c60,6, 0x8687c80,6, 0x8687ca0,6, 0x8687cc0,6, 0x8687ce0,6, 0x8687d00,6, 0x8687d20,6, 0x8687d40,6, 0x8687d60,6, 0x8687d80,6, 0x8687da0,6, 0x8687dc0,6, 0x8687de0,6, 0x8687e00,6, 0x8687e20,6, 0x8687e40,6, 0x8687e60,6, 0x8687e80,6, 0x8687ea0,6, 0x8687ec0,6, 0x8687ee0,6, 0x8687f00,6, 0x8687f20,6, 0x8687f40,6, 0x8687f60,6, 0x8687f80,6, 0x8687fa0,6, 0x8687fc0,6, 0x8687fe0,6, 0x8688000,6, 0x8688020,6, 0x8688040,6, 0x8688060,6, 0x8688080,6, 0x86880a0,6, 0x86880c0,6, 0x86880e0,6, 0x8688100,6, 0x8688120,6, 0x8688140,6, 0x8688160,6, 0x8688180,6, 0x86881a0,6, 0x86881c0,6, 0x86881e0,6, 0x8688200,6, 0x8688220,6, 0x8688240,6, 0x8688260,6, 0x8688280,6, 0x86882a0,6, 0x86882c0,6, 0x86882e0,6, 0x8688300,6, 0x8688320,6, 0x8688340,6, 0x8688360,6, 0x8688380,6, 0x86883a0,6, 0x86883c0,6, 0x86883e0,6, 0x8688400,6, 0x8688420,6, 0x8688440,6, 0x8688460,6, 0x8688480,6, 0x86884a0,6, 0x86884c0,6, 0x86884e0,6, 0x8688500,6, 0x8688520,6, 0x8688540,6, 0x8688560,6, 0x8688580,6, 0x86885a0,6, 0x86885c0,6, 0x86885e0,6, 0x8688600,6, 0x8688620,6, 0x8688640,6, 0x8688660,6, 0x8688680,6, 0x86886a0,6, 0x86886c0,6, 0x86886e0,6, 0x8688700,6, 0x8688720,6, 0x8688740,6, 0x8688760,6, 0x8688780,6, 0x86887a0,6, 0x86887c0,6, 0x86887e0,6, 0x8688800,6, 0x8688820,6, 0x8688840,6, 0x8688860,6, 0x8688880,6, 0x86888a0,6, 0x86888c0,6, 0x86888e0,6, 0x8688900,6, 0x8688920,6, 0x8688940,6, 0x8688960,6, 0x8688980,6, 0x86889a0,6, 0x86889c0,6, 0x86889e0,6, 0x8688a00,6, 0x8688a20,6, 0x8688a40,6, 0x8688a60,6, 0x8688a80,6, 0x8688aa0,6, 0x8688ac0,6, 0x8688ae0,6, 0x8688b00,6, 0x8688b20,6, 0x8688b40,6, 0x8688b60,6, 0x8688b80,6, 0x8688ba0,6, 0x8688bc0,6, 0x8688be0,6, 0x8688c00,6, 0x8688c20,6, 0x8688c40,6, 0x8688c60,6, 0x8688c80,6, 0x8688ca0,6, 0x8688cc0,6, 0x8688ce0,6, 0x8688d00,6, 0x8688d20,6, 0x8688d40,6, 0x8688d60,6, 0x8688d80,6, 0x8688da0,6, 0x8688dc0,6, 0x8688de0,6, 0x8688e00,6, 0x8688e20,6, 0x8688e40,6, 0x8688e60,6, 0x8688e80,6, 0x8688ea0,6, 0x8688ec0,6, 0x8688ee0,6, 0x8688f00,6, 0x8688f20,6, 0x8688f40,6, 0x8688f60,6, 0x8688f80,6, 0x8688fa0,6, 0x8688fc0,6, 0x8688fe0,6, 0x8689000,6, 0x8689020,6, 0x8689040,6, 0x8689060,6, 0x8689080,6, 0x86890a0,6, 0x86890c0,6, 0x86890e0,6, 0x8689100,6, 0x8689120,6, 0x8689140,6, 0x8689160,6, 0x8689180,6, 0x86891a0,6, 0x86891c0,6, 0x86891e0,6, 0x8689200,6, 0x8689220,6, 0x8689240,6, 0x8689260,6, 0x8689280,6, 0x86892a0,6, 0x86892c0,6, 0x86892e0,6, 0x8689300,6, 0x8689320,6, 0x8689340,6, 0x8689360,6, 0x8689380,6, 0x86893a0,6, 0x86893c0,6, 0x86893e0,6, 0x8689400,6, 0x8689420,6, 0x8689440,6, 0x8689460,6, 0x8689480,6, 0x86894a0,6, 0x86894c0,6, 0x86894e0,6, 0x8689500,6, 0x8689520,6, 0x8689540,6, 0x8689560,6, 0x8689580,6, 0x86895a0,6, 0x86895c0,6, 0x86895e0,6, 0x8689600,6, 0x8689620,6, 0x8689640,6, 0x8689660,6, 0x8689680,6, 0x86896a0,6, 0x86896c0,6, 0x86896e0,6, 0x8689700,6, 0x8689720,6, 0x8689740,6, 0x8689760,6, 0x8689780,6, 0x86897a0,6, 0x86897c0,6, 0x86897e0,6, 0x8689800,6, 0x8689820,6, 0x8689840,6, 0x8689860,6, 0x8689880,6, 0x86898a0,6, 0x86898c0,6, 0x86898e0,6, 0x8689900,6, 0x8689920,6, 0x8689940,6, 0x8689960,6, 0x8689980,6, 0x86899a0,6, 0x86899c0,6, 0x86899e0,6, 0x8689a00,6, 0x8689a20,6, 0x8689a40,6, 0x8689a60,6, 0x8689a80,6, 0x8689aa0,6, 0x8689ac0,6, 0x8689ae0,6, 0x8689b00,6, 0x8689b20,6, 0x8689b40,6, 0x8689b60,6, 0x8689b80,6, 0x8689ba0,6, 0x8689bc0,6, 0x8689be0,6, 0x8689c00,6, 0x8689c20,6, 0x8689c40,6, 0x8689c60,6, 0x8689c80,6, 0x8689ca0,6, 0x8689cc0,6, 0x8689ce0,6, 0x8689d00,6, 0x8689d20,6, 0x8689d40,6, 0x8689d60,6, 0x8689d80,6, 0x8689da0,6, 0x8689dc0,6, 0x8689de0,6, 0x8689e00,6, 0x8689e20,6, 0x8689e40,6, 0x8689e60,6, 0x8689e80,6, 0x8689ea0,6, 0x8689ec0,6, 0x8689ee0,6, 0x8689f00,6, 0x8689f20,6, 0x8689f40,6, 0x8689f60,6, 0x8689f80,6, 0x8689fa0,6, 0x8689fc0,6, 0x8689fe0,6, 0x868a000,6, 0x868a020,6, 0x868a040,6, 0x868a060,6, 0x868a080,6, 0x868a0a0,6, 0x868a0c0,6, 0x868a0e0,6, 0x868a100,6, 0x868a120,6, 0x868a140,6, 0x868a160,6, 0x868a180,6, 0x868a1a0,6, 0x868a1c0,6, 0x868a1e0,6, 0x868a200,6, 0x868a220,6, 0x868a240,6, 0x868a260,6, 0x868a280,6, 0x868a2a0,6, 0x868a2c0,6, 0x868a2e0,6, 0x868a300,6, 0x868a320,6, 0x868a340,6, 0x868a360,6, 0x868a380,6, 0x868a3a0,6, 0x868a3c0,6, 0x868a3e0,6, 0x868a400,6, 0x868a420,6, 0x868a440,6, 0x868a460,6, 0x868a480,6, 0x868a4a0,6, 0x868a4c0,6, 0x868a4e0,6, 0x868a500,6, 0x868a520,6, 0x868a540,6, 0x868a560,6, 0x868a580,6, 0x868a5a0,6, 0x868a5c0,6, 0x868a5e0,6, 0x868a600,6, 0x868a620,6, 0x868a640,6, 0x868a660,6, 0x868a680,6, 0x868a6a0,6, 0x868a6c0,6, 0x868a6e0,6, 0x868a700,6, 0x868a720,6, 0x868a740,6, 0x868a760,6, 0x868a780,6, 0x868a7a0,6, 0x868a7c0,6, 0x868a7e0,6, 0x868a800,6, 0x868a820,6, 0x868a840,6, 0x868a860,6, 0x868a880,6, 0x868a8a0,6, 0x868a8c0,6, 0x868a8e0,6, 0x868a900,6, 0x868a920,6, 0x868a940,6, 0x868a960,6, 0x868a980,6, 0x868a9a0,6, 0x868a9c0,6, 0x868a9e0,6, 0x868aa00,6, 0x868aa20,6, 0x868aa40,6, 0x868aa60,6, 0x868aa80,6, 0x868aaa0,6, 0x868aac0,6, 0x868aae0,6, 0x868ab00,6, 0x868ab20,6, 0x868ab40,6, 0x868ab60,6, 0x868ab80,6, 0x868aba0,6, 0x868abc0,6, 0x868abe0,6, 0x868ac00,6, 0x868ac20,6, 0x868ac40,6, 0x868ac60,6, 0x868ac80,6, 0x868aca0,6, 0x868acc0,6, 0x868ace0,6, 0x868ad00,6, 0x868ad20,6, 0x868ad40,6, 0x868ad60,6, 0x868ad80,6, 0x868ada0,6, 0x868adc0,6, 0x868ade0,6, 0x868ae00,6, 0x868ae20,6, 0x868ae40,6, 0x868ae60,6, 0x868ae80,6, 0x868aea0,6, 0x868aec0,6, 0x868aee0,6, 0x868af00,6, 0x868af20,6, 0x868af40,6, 0x868af60,6, 0x868af80,6, 0x868afa0,6, 0x868afc0,6, 0x868afe0,6, 0x868b000,6, 0x868b020,6, 0x868b040,6, 0x868b060,6, 0x868b080,6, 0x868b0a0,6, 0x868b0c0,6, 0x868b0e0,6, 0x868b100,6, 0x868b120,6, 0x868b140,6, 0x868b160,6, 0x868b180,6, 0x868b1a0,6, 0x868b1c0,6, 0x868b1e0,6, 0x868b200,6, 0x868b220,6, 0x868b240,6, 0x868b260,6, 0x868b280,6, 0x868b2a0,6, 0x868b2c0,6, 0x868b2e0,6, 0x868b300,6, 0x868b320,6, 0x868b340,6, 0x868b360,6, 0x868b380,6, 0x868b3a0,6, 0x868b3c0,6, 0x868b3e0,6, 0x868b400,6, 0x868b420,6, 0x868b440,6, 0x868b460,6, 0x868b480,6, 0x868b4a0,6, 0x868b4c0,6, 0x868b4e0,6, 0x868b500,6, 0x868b520,6, 0x868b540,6, 0x868b560,6, 0x868b580,6, 0x868b5a0,6, 0x868b5c0,6, 0x868b5e0,6, 0x868b600,6, 0x868b620,6, 0x868b640,6, 0x868b660,6, 0x868b680,6, 0x868b6a0,6, 0x868b6c0,6, 0x868b6e0,6, 0x868b700,6, 0x868b720,6, 0x868b740,6, 0x868b760,6, 0x868b780,6, 0x868b7a0,6, 0x868b7c0,6, 0x868b7e0,6, 0x868b800,6, 0x868b820,6, 0x868b840,6, 0x868b860,6, 0x868b880,6, 0x868b8a0,6, 0x868b8c0,6, 0x868b8e0,6, 0x868b900,6, 0x868b920,6, 0x868b940,6, 0x868b960,6, 0x868b980,6, 0x868b9a0,6, 0x868b9c0,6, 0x868b9e0,6, 0x868ba00,6, 0x868ba20,6, 0x868ba40,6, 0x868ba60,6, 0x868ba80,6, 0x868baa0,6, 0x868bac0,6, 0x868bae0,6, 0x868bb00,6, 0x868bb20,6, 0x868bb40,6, 0x868bb60,6, 0x868bb80,6, 0x868bba0,6, 0x868bbc0,6, 0x868bbe0,6, 0x868bc00,6, 0x868bc20,6, 0x868bc40,6, 0x868bc60,6, 0x868bc80,6, 0x868bca0,6, 0x868bcc0,6, 0x868bce0,6, 0x868bd00,6, 0x868bd20,6, 0x868bd40,6, 0x868bd60,6, 0x868bd80,6, 0x868bda0,6, 0x868bdc0,6, 0x868bde0,6, 0x868be00,6, 0x868be20,6, 0x868be40,6, 0x868be60,6, 0x868be80,6, 0x868bea0,6, 0x868bec0,6, 0x868bee0,6, 0x868bf00,6, 0x868bf20,6, 0x868bf40,6, 0x868bf60,6, 0x868bf80,6, 0x868bfa0,6, 0x868bfc0,6, 0x868bfe0,6, 0x868c000,6, 0x868c020,6, 0x868c040,6, 0x868c060,6, 0x868c080,6, 0x868c0a0,6, 0x868c0c0,6, 0x868c0e0,6, 0x868c100,6, 0x868c120,6, 0x868c140,6, 0x868c160,6, 0x868c180,6, 0x868c1a0,6, 0x868c1c0,6, 0x868c1e0,6, 0x868c200,6, 0x868c220,6, 0x868c240,6, 0x868c260,6, 0x868c280,6, 0x868c2a0,6, 0x868c2c0,6, 0x868c2e0,6, 0x868c300,6, 0x868c320,6, 0x868c340,6, 0x868c360,6, 0x868c380,6, 0x868c3a0,6, 0x868c3c0,6, 0x868c3e0,6, 0x868c400,6, 0x868c420,6, 0x868c440,6, 0x868c460,6, 0x868c480,6, 0x868c4a0,6, 0x868c4c0,6, 0x868c4e0,6, 0x868c500,6, 0x868c520,6, 0x868c540,6, 0x868c560,6, 0x868c580,6, 0x868c5a0,6, 0x868c5c0,6, 0x868c5e0,6, 0x868c600,6, 0x868c620,6, 0x868c640,6, 0x868c660,6, 0x868c680,6, 0x868c6a0,6, 0x868c6c0,6, 0x868c6e0,6, 0x868c700,6, 0x868c720,6, 0x868c740,6, 0x868c760,6, 0x868c780,6, 0x868c7a0,6, 0x868c7c0,6, 0x868c7e0,6, 0x868c800,6, 0x868c820,6, 0x868c840,6, 0x868c860,6, 0x868c880,6, 0x868c8a0,6, 0x868c8c0,6, 0x868c8e0,6, 0x868c900,6, 0x868c920,6, 0x868c940,6, 0x868c960,6, 0x868c980,6, 0x868c9a0,6, 0x868c9c0,6, 0x868c9e0,6, 0x868ca00,6, 0x868ca20,6, 0x868ca40,6, 0x868ca60,6, 0x868ca80,6, 0x868caa0,6, 0x868cac0,6, 0x868cae0,6, 0x868cb00,6, 0x868cb20,6, 0x868cb40,6, 0x868cb60,6, 0x868cb80,6, 0x868cba0,6, 0x868cbc0,6, 0x868cbe0,6, 0x868cc00,6, 0x868cc20,6, 0x868cc40,6, 0x868cc60,6, 0x868cc80,6, 0x868cca0,6, 0x868ccc0,6, 0x868cce0,6, 0x868cd00,6, 0x868cd20,6, 0x868cd40,6, 0x868cd60,6, 0x868cd80,6, 0x868cda0,6, 0x868cdc0,6, 0x868cde0,6, 0x868ce00,6, 0x868ce20,6, 0x868ce40,6, 0x868ce60,6, 0x868ce80,6, 0x868cea0,6, 0x868cec0,6, 0x868cee0,6, 0x868cf00,6, 0x868cf20,6, 0x868cf40,6, 0x868cf60,6, 0x868cf80,6, 0x868cfa0,6, 0x868cfc0,6, 0x868cfe0,6, 0x868d000,6, 0x868d020,6, 0x868d040,6, 0x868d060,6, 0x868d080,6, 0x868d0a0,6, 0x868d0c0,6, 0x868d0e0,6, 0x868d100,6, 0x868d120,6, 0x868d140,6, 0x868d160,6, 0x868d180,6, 0x868d1a0,6, 0x868d1c0,6, 0x868d1e0,6, 0x868d200,6, 0x868d220,6, 0x868d240,6, 0x868d260,6, 0x868d280,6, 0x868d2a0,6, 0x868d2c0,6, 0x868d2e0,6, 0x868d300,6, 0x868d320,6, 0x868d340,6, 0x868d360,6, 0x868d380,6, 0x868d3a0,6, 0x868d3c0,6, 0x868d3e0,6, 0x868d400,6, 0x868d420,6, 0x868d440,6, 0x868d460,6, 0x868d480,6, 0x868d4a0,6, 0x868d4c0,6, 0x868d4e0,6, 0x868d500,6, 0x868d520,6, 0x868d540,6, 0x868d560,6, 0x868d580,6, 0x868d5a0,6, 0x868d5c0,6, 0x868d5e0,6, 0x868d600,6, 0x868d620,6, 0x868d640,6, 0x868d660,6, 0x868d680,6, 0x868d6a0,6, 0x868d6c0,6, 0x868d6e0,6, 0x868d700,6, 0x868d720,6, 0x868d740,6, 0x868d760,6, 0x868d780,6, 0x868d7a0,6, 0x868d7c0,6, 0x868d7e0,6, 0x868d800,6, 0x868d820,6, 0x868d840,6, 0x868d860,6, 0x868d880,6, 0x868d8a0,6, 0x868d8c0,6, 0x868d8e0,6, 0x868d900,6, 0x868d920,6, 0x868d940,6, 0x868d960,6, 0x868d980,6, 0x868d9a0,6, 0x868d9c0,6, 0x868d9e0,6, 0x868da00,6, 0x868da20,6, 0x868da40,6, 0x868da60,6, 0x868da80,6, 0x868daa0,6, 0x868dac0,6, 0x868dae0,6, 0x868db00,6, 0x868db20,6, 0x868db40,6, 0x868db60,6, 0x868db80,6, 0x868dba0,6, 0x868dbc0,6, 0x868dbe0,6, 0x868dc00,6, 0x868dc20,6, 0x868dc40,6, 0x868dc60,6, 0x868dc80,6, 0x868dca0,6, 0x868dcc0,6, 0x868dce0,6, 0x868dd00,6, 0x868dd20,6, 0x868dd40,6, 0x868dd60,6, 0x868dd80,6, 0x868dda0,6, 0x868ddc0,6, 0x868dde0,6, 0x868de00,6, 0x868de20,6, 0x868de40,6, 0x868de60,6, 0x868de80,6, 0x868dea0,6, 0x868dec0,6, 0x868dee0,6, 0x868df00,6, 0x868df20,6, 0x868df40,6, 0x868df60,6, 0x868df80,6, 0x868dfa0,6, 0x868dfc0,6, 0x868dfe0,6, 0x868e000,6, 0x868e020,6, 0x868e040,6, 0x868e060,6, 0x868e080,6, 0x868e0a0,6, 0x868e0c0,6, 0x868e0e0,6, 0x868e100,6, 0x868e120,6, 0x868e140,6, 0x868e160,6, 0x868e180,6, 0x868e1a0,6, 0x868e1c0,6, 0x868e1e0,6, 0x868e200,6, 0x868e220,6, 0x868e240,6, 0x868e260,6, 0x868e280,6, 0x868e2a0,6, 0x868e2c0,6, 0x868e2e0,6, 0x868e300,6, 0x868e320,6, 0x868e340,6, 0x868e360,6, 0x868e380,6, 0x868e3a0,6, 0x868e3c0,6, 0x868e3e0,6, 0x868e400,6, 0x868e420,6, 0x868e440,6, 0x868e460,6, 0x868e480,6, 0x868e4a0,6, 0x868e4c0,6, 0x868e4e0,6, 0x868e500,6, 0x868e520,6, 0x868e540,6, 0x868e560,6, 0x868e580,6, 0x868e5a0,6, 0x868e5c0,6, 0x868e5e0,6, 0x868e600,6, 0x868e620,6, 0x868e640,6, 0x868e660,6, 0x868e680,6, 0x868e6a0,6, 0x868e6c0,6, 0x868e6e0,6, 0x868e700,6, 0x868e720,6, 0x868e740,6, 0x868e760,6, 0x868e780,6, 0x868e7a0,6, 0x868e7c0,6, 0x868e7e0,6, 0x868e800,6, 0x868e820,6, 0x868e840,6, 0x868e860,6, 0x868e880,6, 0x868e8a0,6, 0x868e8c0,6, 0x868e8e0,6, 0x868e900,6, 0x868e920,6, 0x868e940,6, 0x868e960,6, 0x868e980,6, 0x868e9a0,6, 0x868e9c0,6, 0x868e9e0,6, 0x868ea00,6, 0x868ea20,6, 0x868ea40,6, 0x868ea60,6, 0x868ea80,6, 0x868eaa0,6, 0x868eac0,6, 0x868eae0,6, 0x868eb00,6, 0x868eb20,6, 0x868eb40,6, 0x868eb60,6, 0x868eb80,6, 0x868eba0,6, 0x868ebc0,6, 0x868ebe0,6, 0x868ec00,6, 0x868ec20,6, 0x868ec40,6, 0x868ec60,6, 0x868ec80,6, 0x868eca0,6, 0x868ecc0,6, 0x868ece0,6, 0x868ed00,6, 0x868ed20,6, 0x868ed40,6, 0x868ed60,6, 0x868ed80,6, 0x868eda0,6, 0x868edc0,6, 0x868ede0,6, 0x868ee00,6, 0x868ee20,6, 0x868ee40,6, 0x868ee60,6, 0x868ee80,6, 0x868eea0,6, 0x868eec0,6, 0x868eee0,6, 0x868ef00,6, 0x868ef20,6, 0x868ef40,6, 0x868ef60,6, 0x868ef80,6, 0x868efa0,6, 0x868efc0,6, 0x868efe0,6, 0x868f000,6, 0x868f020,6, 0x868f040,6, 0x868f060,6, 0x868f080,6, 0x868f0a0,6, 0x868f0c0,6, 0x868f0e0,6, 0x868f100,6, 0x868f120,6, 0x868f140,6, 0x868f160,6, 0x868f180,6, 0x868f1a0,6, 0x868f1c0,6, 0x868f1e0,6, 0x868f200,6, 0x868f220,6, 0x868f240,6, 0x868f260,6, 0x868f280,6, 0x868f2a0,6, 0x868f2c0,6, 0x868f2e0,6, 0x868f300,6, 0x868f320,6, 0x868f340,6, 0x868f360,6, 0x868f380,6, 0x868f3a0,6, 0x868f3c0,6, 0x868f3e0,6, 0x868f400,6, 0x868f420,6, 0x868f440,6, 0x868f460,6, 0x868f480,6, 0x868f4a0,6, 0x868f4c0,6, 0x868f4e0,6, 0x868f500,6, 0x868f520,6, 0x868f540,6, 0x868f560,6, 0x868f580,6, 0x868f5a0,6, 0x868f5c0,6, 0x868f5e0,6, 0x868f600,6, 0x868f620,6, 0x868f640,6, 0x868f660,6, 0x868f680,6, 0x868f6a0,6, 0x868f6c0,6, 0x868f6e0,6, 0x868f700,6, 0x868f720,6, 0x868f740,6, 0x868f760,6, 0x868f780,6, 0x868f7a0,6, 0x868f7c0,6, 0x868f7e0,6, 0x868f800,6, 0x868f820,6, 0x868f840,6, 0x868f860,6, 0x868f880,6, 0x868f8a0,6, 0x868f8c0,6, 0x868f8e0,6, 0x868f900,6, 0x868f920,6, 0x868f940,6, 0x868f960,6, 0x868f980,6, 0x868f9a0,6, 0x868f9c0,6, 0x868f9e0,6, 0x868fa00,6, 0x868fa20,6, 0x868fa40,6, 0x868fa60,6, 0x868fa80,6, 0x868faa0,6, 0x868fac0,6, 0x868fae0,6, 0x868fb00,6, 0x868fb20,6, 0x868fb40,6, 0x868fb60,6, 0x868fb80,6, 0x868fba0,6, 0x868fbc0,6, 0x868fbe0,6, 0x868fc00,6, 0x868fc20,6, 0x868fc40,6, 0x868fc60,6, 0x868fc80,6, 0x868fca0,6, 0x868fcc0,6, 0x868fce0,6, 0x868fd00,6, 0x868fd20,6, 0x868fd40,6, 0x868fd60,6, 0x868fd80,6, 0x868fda0,6, 0x868fdc0,6, 0x868fde0,6, 0x868fe00,6, 0x868fe20,6, 0x868fe40,6, 0x868fe60,6, 0x868fe80,6, 0x868fea0,6, 0x868fec0,6, 0x868fee0,6, 0x868ff00,6, 0x868ff20,6, 0x868ff40,6, 0x868ff60,6, 0x868ff80,6, 0x868ffa0,6, 0x868ffc0,6, 0x868ffe0,6, 0x8690000,6, 0x8690020,6, 0x8690040,6, 0x8690060,6, 0x8690080,6, 0x86900a0,6, 0x86900c0,6, 0x86900e0,6, 0x8690100,6, 0x8690120,6, 0x8690140,6, 0x8690160,6, 0x8690180,6, 0x86901a0,6, 0x86901c0,6, 0x86901e0,6, 0x8690200,6, 0x8690220,6, 0x8690240,6, 0x8690260,6, 0x8690280,6, 0x86902a0,6, 0x86902c0,6, 0x86902e0,6, 0x8690300,6, 0x8690320,6, 0x8690340,6, 0x8690360,6, 0x8690380,6, 0x86903a0,6, 0x86903c0,6, 0x86903e0,6, 0x8690400,6, 0x8690420,6, 0x8690440,6, 0x8690460,6, 0x8690480,6, 0x86904a0,6, 0x86904c0,6, 0x86904e0,6, 0x8690500,6, 0x8690520,6, 0x8690540,6, 0x8690560,6, 0x8690580,6, 0x86905a0,6, 0x86905c0,6, 0x86905e0,6, 0x8690600,6, 0x8690620,6, 0x8690640,6, 0x8690660,6, 0x8690680,6, 0x86906a0,6, 0x86906c0,6, 0x86906e0,6, 0x8690700,6, 0x8690720,6, 0x8690740,6, 0x8690760,6, 0x8690780,6, 0x86907a0,6, 0x86907c0,6, 0x86907e0,6, 0x8690800,6, 0x8690820,6, 0x8690840,6, 0x8690860,6, 0x8690880,6, 0x86908a0,6, 0x86908c0,6, 0x86908e0,6, 0x8690900,6, 0x8690920,6, 0x8690940,6, 0x8690960,6, 0x8690980,6, 0x86909a0,6, 0x86909c0,6, 0x86909e0,6, 0x8690a00,6, 0x8690a20,6, 0x8690a40,6, 0x8690a60,6, 0x8690a80,6, 0x8690aa0,6, 0x8690ac0,6, 0x8690ae0,6, 0x8690b00,6, 0x8690b20,6, 0x8690b40,6, 0x8690b60,6, 0x8690b80,6, 0x8690ba0,6, 0x8690bc0,6, 0x8690be0,6, 0x8690c00,6, 0x8690c20,6, 0x8690c40,6, 0x8690c60,6, 0x8690c80,6, 0x8690ca0,6, 0x8690cc0,6, 0x8690ce0,6, 0x8690d00,6, 0x8690d20,6, 0x8690d40,6, 0x8690d60,6, 0x8690d80,6, 0x8690da0,6, 0x8690dc0,6, 0x8690de0,6, 0x8690e00,6, 0x8690e20,6, 0x8690e40,6, 0x8690e60,6, 0x8690e80,6, 0x8690ea0,6, 0x8690ec0,6, 0x8690ee0,6, 0x8690f00,6, 0x8690f20,6, 0x8690f40,6, 0x8690f60,6, 0x8690f80,6, 0x8690fa0,6, 0x8690fc0,6, 0x8690fe0,6, 0x8691000,6, 0x8691020,6, 0x8691040,6, 0x8691060,6, 0x8691080,6, 0x86910a0,6, 0x86910c0,6, 0x86910e0,6, 0x8691100,6, 0x8691120,6, 0x8691140,6, 0x8691160,6, 0x8691180,6, 0x86911a0,6, 0x86911c0,6, 0x86911e0,6, 0x8691200,6, 0x8691220,6, 0x8691240,6, 0x8691260,6, 0x8691280,6, 0x86912a0,6, 0x86912c0,6, 0x86912e0,6, 0x8691300,6, 0x8691320,6, 0x8691340,6, 0x8691360,6, 0x8691380,6, 0x86913a0,6, 0x86913c0,6, 0x86913e0,6, 0x8691400,6, 0x8691420,6, 0x8691440,6, 0x8691460,6, 0x8691480,6, 0x86914a0,6, 0x86914c0,6, 0x86914e0,6, 0x8691500,6, 0x8691520,6, 0x8691540,6, 0x8691560,6, 0x8691580,6, 0x86915a0,6, 0x86915c0,6, 0x86915e0,6, 0x8691600,6, 0x8691620,6, 0x8691640,6, 0x8691660,6, 0x8691680,6, 0x86916a0,6, 0x86916c0,6, 0x86916e0,6, 0x8691700,6, 0x8691720,6, 0x8691740,6, 0x8691760,6, 0x8691780,6, 0x86917a0,6, 0x86917c0,6, 0x86917e0,6, 0x8691800,6, 0x8691820,6, 0x8691840,6, 0x8691860,6, 0x8691880,6, 0x86918a0,6, 0x86918c0,6, 0x86918e0,6, 0x8691900,6, 0x8691920,6, 0x8691940,6, 0x8691960,6, 0x8691980,6, 0x86919a0,6, 0x86919c0,6, 0x86919e0,6, 0x8691a00,6, 0x8691a20,6, 0x8691a40,6, 0x8691a60,6, 0x8691a80,6, 0x8691aa0,6, 0x8691ac0,6, 0x8691ae0,6, 0x8691b00,6, 0x8691b20,6, 0x8691b40,6, 0x8691b60,6, 0x8691b80,6, 0x8691ba0,6, 0x8691bc0,6, 0x8691be0,6, 0x8691c00,6, 0x8691c20,6, 0x8691c40,6, 0x8691c60,6, 0x8691c80,6, 0x8691ca0,6, 0x8691cc0,6, 0x8691ce0,6, 0x8691d00,6, 0x8691d20,6, 0x8691d40,6, 0x8691d60,6, 0x8691d80,6, 0x8691da0,6, 0x8691dc0,6, 0x8691de0,6, 0x8691e00,6, 0x8691e20,6, 0x8691e40,6, 0x8691e60,6, 0x8691e80,6, 0x8691ea0,6, 0x8691ec0,6, 0x8691ee0,6, 0x8691f00,6, 0x8691f20,6, 0x8691f40,6, 0x8691f60,6, 0x8691f80,6, 0x8691fa0,6, 0x8691fc0,6, 0x8691fe0,6, 0x8692000,6, 0x8692020,6, 0x8692040,6, 0x8692060,6, 0x8692080,6, 0x86920a0,6, 0x86920c0,6, 0x86920e0,6, 0x8692100,6, 0x8692120,6, 0x8692140,6, 0x8692160,6, 0x8692180,6, 0x86921a0,6, 0x86921c0,6, 0x86921e0,6, 0x8692200,6, 0x8692220,6, 0x8692240,6, 0x8692260,6, 0x8692280,6, 0x86922a0,6, 0x86922c0,6, 0x86922e0,6, 0x8692300,6, 0x8692320,6, 0x8692340,6, 0x8692360,6, 0x8692380,6, 0x86923a0,6, 0x86923c0,6, 0x86923e0,6, 0x8692400,6, 0x8692420,6, 0x8692440,6, 0x8692460,6, 0x8692480,6, 0x86924a0,6, 0x86924c0,6, 0x86924e0,6, 0x8692500,6, 0x8692520,6, 0x8692540,6, 0x8692560,6, 0x8692580,6, 0x86925a0,6, 0x86925c0,6, 0x86925e0,6, 0x8692600,6, 0x8692620,6, 0x8692640,6, 0x8692660,6, 0x8692680,6, 0x86926a0,6, 0x86926c0,6, 0x86926e0,6, 0x8692700,6, 0x8692720,6, 0x8692740,6, 0x8692760,6, 0x8692780,6, 0x86927a0,6, 0x86927c0,6, 0x86927e0,6, 0x8692800,6, 0x8692820,6, 0x8692840,6, 0x8692860,6, 0x8692880,6, 0x86928a0,6, 0x86928c0,6, 0x86928e0,6, 0x8692900,6, 0x8692920,6, 0x8692940,6, 0x8692960,6, 0x8692980,6, 0x86929a0,6, 0x86929c0,6, 0x86929e0,6, 0x8692a00,6, 0x8692a20,6, 0x8692a40,6, 0x8692a60,6, 0x8692a80,6, 0x8692aa0,6, 0x8692ac0,6, 0x8692ae0,6, 0x8692b00,6, 0x8692b20,6, 0x8692b40,6, 0x8692b60,6, 0x8692b80,6, 0x8692ba0,6, 0x8692bc0,6, 0x8692be0,6, 0x8692c00,6, 0x8692c20,6, 0x8692c40,6, 0x8692c60,6, 0x8692c80,6, 0x8692ca0,6, 0x8692cc0,6, 0x8692ce0,6, 0x8692d00,6, 0x8692d20,6, 0x8692d40,6, 0x8692d60,6, 0x8692d80,6, 0x8692da0,6, 0x8692dc0,6, 0x8692de0,6, 0x8692e00,6, 0x8692e20,6, 0x8692e40,6, 0x8692e60,6, 0x8692e80,6, 0x8692ea0,6, 0x8692ec0,6, 0x8692ee0,6, 0x8692f00,6, 0x8692f20,6, 0x8692f40,6, 0x8692f60,6, 0x8692f80,6, 0x8692fa0,6, 0x8692fc0,6, 0x8692fe0,6, 0x8693000,6, 0x8693020,6, 0x8693040,6, 0x8693060,6, 0x8693080,6, 0x86930a0,6, 0x86930c0,6, 0x86930e0,6, 0x8693100,6, 0x8693120,6, 0x8693140,6, 0x8693160,6, 0x8693180,6, 0x86931a0,6, 0x86931c0,6, 0x86931e0,6, 0x8693200,6, 0x8693220,6, 0x8693240,6, 0x8693260,6, 0x8693280,6, 0x86932a0,6, 0x86932c0,6, 0x86932e0,6, 0x8693300,6, 0x8693320,6, 0x8693340,6, 0x8693360,6, 0x8693380,6, 0x86933a0,6, 0x86933c0,6, 0x86933e0,6, 0x8693400,6, 0x8693420,6, 0x8693440,6, 0x8693460,6, 0x8693480,6, 0x86934a0,6, 0x86934c0,6, 0x86934e0,6, 0x8693500,6, 0x8693520,6, 0x8693540,6, 0x8693560,6, 0x8693580,6, 0x86935a0,6, 0x86935c0,6, 0x86935e0,6, 0x8693600,6, 0x8693620,6, 0x8693640,6, 0x8693660,6, 0x8693680,6, 0x86936a0,6, 0x86936c0,6, 0x86936e0,6, 0x8693700,6, 0x8693720,6, 0x8693740,6, 0x8693760,6, 0x8693780,6, 0x86937a0,6, 0x86937c0,6, 0x86937e0,6, 0x8693800,6, 0x8693820,6, 0x8693840,6, 0x8693860,6, 0x8693880,6, 0x86938a0,6, 0x86938c0,6, 0x86938e0,6, 0x8693900,6, 0x8693920,6, 0x8693940,6, 0x8693960,6, 0x8693980,6, 0x86939a0,6, 0x86939c0,6, 0x86939e0,6, 0x8693a00,6, 0x8693a20,6, 0x8693a40,6, 0x8693a60,6, 0x8693a80,6, 0x8693aa0,6, 0x8693ac0,6, 0x8693ae0,6, 0x8693b00,6, 0x8693b20,6, 0x8693b40,6, 0x8693b60,6, 0x8693b80,6, 0x8693ba0,6, 0x8693bc0,6, 0x8693be0,6, 0x8693c00,6, 0x8693c20,6, 0x8693c40,6, 0x8693c60,6, 0x8693c80,6, 0x8693ca0,6, 0x8693cc0,6, 0x8693ce0,6, 0x8693d00,6, 0x8693d20,6, 0x8693d40,6, 0x8693d60,6, 0x8693d80,6, 0x8693da0,6, 0x8693dc0,6, 0x8693de0,6, 0x8693e00,6, 0x8693e20,6, 0x8693e40,6, 0x8693e60,6, 0x8693e80,6, 0x8693ea0,6, 0x8693ec0,6, 0x8693ee0,6, 0x8693f00,6, 0x8693f20,6, 0x8693f40,6, 0x8693f60,6, 0x8693f80,6, 0x8693fa0,6, 0x8693fc0,6, 0x8693fe0,6, 0x8694000,6, 0x8694020,6, 0x8694040,6, 0x8694060,6, 0x8694080,6, 0x86940a0,6, 0x86940c0,6, 0x86940e0,6, 0x8694100,6, 0x8694120,6, 0x8694140,6, 0x8694160,6, 0x8694180,6, 0x86941a0,6, 0x86941c0,6, 0x86941e0,6, 0x8694200,6, 0x8694220,6, 0x8694240,6, 0x8694260,6, 0x8694280,6, 0x86942a0,6, 0x86942c0,6, 0x86942e0,6, 0x8694300,6, 0x8694320,6, 0x8694340,6, 0x8694360,6, 0x8694380,6, 0x86943a0,6, 0x86943c0,6, 0x86943e0,6, 0x8694400,6, 0x8694420,6, 0x8694440,6, 0x8694460,6, 0x8694480,6, 0x86944a0,6, 0x86944c0,6, 0x86944e0,6, 0x8694500,6, 0x8694520,6, 0x8694540,6, 0x8694560,6, 0x8694580,6, 0x86945a0,6, 0x86945c0,6, 0x86945e0,6, 0x8694600,6, 0x8694620,6, 0x8694640,6, 0x8694660,6, 0x8694680,6, 0x86946a0,6, 0x86946c0,6, 0x86946e0,6, 0x8694700,6, 0x8694720,6, 0x8694740,6, 0x8694760,6, 0x8694780,6, 0x86947a0,6, 0x86947c0,6, 0x86947e0,6, 0x8694800,6, 0x8694820,6, 0x8694840,6, 0x8694860,6, 0x8694880,6, 0x86948a0,6, 0x86948c0,6, 0x86948e0,6, 0x8694900,6, 0x8694920,6, 0x8694940,6, 0x8694960,6, 0x8694980,6, 0x86949a0,6, 0x86949c0,6, 0x86949e0,6, 0x8694a00,6, 0x8694a20,6, 0x8694a40,6, 0x8694a60,6, 0x8694a80,6, 0x8694aa0,6, 0x8694ac0,6, 0x8694ae0,6, 0x8694b00,6, 0x8694b20,6, 0x8694b40,6, 0x8694b60,6, 0x8694b80,6, 0x8694ba0,6, 0x8694bc0,6, 0x8694be0,6, 0x8694c00,6, 0x8694c20,6, 0x8694c40,6, 0x8694c60,6, 0x8694c80,6, 0x8694ca0,6, 0x8694cc0,6, 0x8694ce0,6, 0x8694d00,6, 0x8694d20,6, 0x8694d40,6, 0x8694d60,6, 0x8694d80,6, 0x8694da0,6, 0x8694dc0,6, 0x8694de0,6, 0x8694e00,6, 0x8694e20,6, 0x8694e40,6, 0x8694e60,6, 0x8694e80,6, 0x8694ea0,6, 0x8694ec0,6, 0x8694ee0,6, 0x8694f00,6, 0x8694f20,6, 0x8694f40,6, 0x8694f60,6, 0x8694f80,6, 0x8694fa0,6, 0x8694fc0,6, 0x8694fe0,6, 0x8695000,6, 0x8695020,6, 0x8695040,6, 0x8695060,6, 0x8695080,6, 0x86950a0,6, 0x86950c0,6, 0x86950e0,6, 0x8695100,6, 0x8695120,6, 0x8695140,6, 0x8695160,6, 0x8695180,6, 0x86951a0,6, 0x86951c0,6, 0x86951e0,6, 0x8695200,6, 0x8695220,6, 0x8695240,6, 0x8695260,6, 0x8695280,6, 0x86952a0,6, 0x86952c0,6, 0x86952e0,6, 0x8695300,6, 0x8695320,6, 0x8695340,6, 0x8695360,6, 0x8695380,6, 0x86953a0,6, 0x86953c0,6, 0x86953e0,6, 0x8695400,6, 0x8695420,6, 0x8695440,6, 0x8695460,6, 0x8695480,6, 0x86954a0,6, 0x86954c0,6, 0x86954e0,6, 0x8695500,6, 0x8695520,6, 0x8695540,6, 0x8695560,6, 0x8695580,6, 0x86955a0,6, 0x86955c0,6, 0x86955e0,6, 0x8695600,6, 0x8695620,6, 0x8695640,6, 0x8695660,6, 0x8695680,6, 0x86956a0,6, 0x86956c0,6, 0x86956e0,6, 0x8695700,6, 0x8695720,6, 0x8695740,6, 0x8695760,6, 0x8695780,6, 0x86957a0,6, 0x86957c0,6, 0x86957e0,6, 0x8695800,6, 0x8695820,6, 0x8695840,6, 0x8695860,6, 0x8695880,6, 0x86958a0,6, 0x86958c0,6, 0x86958e0,6, 0x8695900,6, 0x8695920,6, 0x8695940,6, 0x8695960,6, 0x8695980,6, 0x86959a0,6, 0x86959c0,6, 0x86959e0,6, 0x8695a00,6, 0x8695a20,6, 0x8695a40,6, 0x8695a60,6, 0x8695a80,6, 0x8695aa0,6, 0x8695ac0,6, 0x8695ae0,6, 0x8695b00,6, 0x8695b20,6, 0x8695b40,6, 0x8695b60,6, 0x8695b80,6, 0x8695ba0,6, 0x8695bc0,6, 0x8695be0,6, 0x8695c00,6, 0x8695c20,6, 0x8695c40,6, 0x8695c60,6, 0x8695c80,6, 0x8695ca0,6, 0x8695cc0,6, 0x8695ce0,6, 0x8695d00,6, 0x8695d20,6, 0x8695d40,6, 0x8695d60,6, 0x8695d80,6, 0x8695da0,6, 0x8695dc0,6, 0x8695de0,6, 0x8695e00,6, 0x8695e20,6, 0x8695e40,6, 0x8695e60,6, 0x8695e80,6, 0x8695ea0,6, 0x8695ec0,6, 0x8695ee0,6, 0x8695f00,6, 0x8695f20,6, 0x8695f40,6, 0x8695f60,6, 0x8695f80,6, 0x8695fa0,6, 0x8695fc0,6, 0x8695fe0,6, 0x8696000,6, 0x8696020,6, 0x8696040,6, 0x8696060,6, 0x8696080,6, 0x86960a0,6, 0x86960c0,6, 0x86960e0,6, 0x8696100,6, 0x8696120,6, 0x8696140,6, 0x8696160,6, 0x8696180,6, 0x86961a0,6, 0x86961c0,6, 0x86961e0,6, 0x8696200,6, 0x8696220,6, 0x8696240,6, 0x8696260,6, 0x8696280,6, 0x86962a0,6, 0x86962c0,6, 0x86962e0,6, 0x8696300,6, 0x8696320,6, 0x8696340,6, 0x8696360,6, 0x8696380,6, 0x86963a0,6, 0x86963c0,6, 0x86963e0,6, 0x8696400,6, 0x8696420,6, 0x8696440,6, 0x8696460,6, 0x8696480,6, 0x86964a0,6, 0x86964c0,6, 0x86964e0,6, 0x8696500,6, 0x8696520,6, 0x8696540,6, 0x8696560,6, 0x8696580,6, 0x86965a0,6, 0x86965c0,6, 0x86965e0,6, 0x8696600,6, 0x8696620,6, 0x8696640,6, 0x8696660,6, 0x8696680,6, 0x86966a0,6, 0x86966c0,6, 0x86966e0,6, 0x8696700,6, 0x8696720,6, 0x8696740,6, 0x8696760,6, 0x8696780,6, 0x86967a0,6, 0x86967c0,6, 0x86967e0,6, 0x8696800,6, 0x8696820,6, 0x8696840,6, 0x8696860,6, 0x8696880,6, 0x86968a0,6, 0x86968c0,6, 0x86968e0,6, 0x8696900,6, 0x8696920,6, 0x8696940,6, 0x8696960,6, 0x8696980,6, 0x86969a0,6, 0x86969c0,6, 0x86969e0,6, 0x8696a00,6, 0x8696a20,6, 0x8696a40,6, 0x8696a60,6, 0x8696a80,6, 0x8696aa0,6, 0x8696ac0,6, 0x8696ae0,6, 0x8696b00,6, 0x8696b20,6, 0x8696b40,6, 0x8696b60,6, 0x8696b80,6, 0x8696ba0,6, 0x8696bc0,6, 0x8696be0,6, 0x8696c00,6, 0x8696c20,6, 0x8696c40,6, 0x8696c60,6, 0x8696c80,6, 0x8696ca0,6, 0x8696cc0,6, 0x8696ce0,6, 0x8696d00,6, 0x8696d20,6, 0x8696d40,6, 0x8696d60,6, 0x8696d80,6, 0x8696da0,6, 0x8696dc0,6, 0x8696de0,6, 0x8696e00,6, 0x8696e20,6, 0x8696e40,6, 0x8696e60,6, 0x8696e80,6, 0x8696ea0,6, 0x8696ec0,6, 0x8696ee0,6, 0x8696f00,6, 0x8696f20,6, 0x8696f40,6, 0x8696f60,6, 0x8696f80,6, 0x8696fa0,6, 0x8696fc0,6, 0x8696fe0,6, 0x8697000,6, 0x8697020,6, 0x8697040,6, 0x8697060,6, 0x8697080,6, 0x86970a0,6, 0x86970c0,6, 0x86970e0,6, 0x8697100,6, 0x8697120,6, 0x8697140,6, 0x8697160,6, 0x8697180,6, 0x86971a0,6, 0x86971c0,6, 0x86971e0,6, 0x8697200,6, 0x8697220,6, 0x8697240,6, 0x8697260,6, 0x8697280,6, 0x86972a0,6, 0x86972c0,6, 0x86972e0,6, 0x8697300,6, 0x8697320,6, 0x8697340,6, 0x8697360,6, 0x8697380,6, 0x86973a0,6, 0x86973c0,6, 0x86973e0,6, 0x8697400,6, 0x8697420,6, 0x8697440,6, 0x8697460,6, 0x8697480,6, 0x86974a0,6, 0x86974c0,6, 0x86974e0,6, 0x8697500,6, 0x8697520,6, 0x8697540,6, 0x8697560,6, 0x8697580,6, 0x86975a0,6, 0x86975c0,6, 0x86975e0,6, 0x8697600,6, 0x8697620,6, 0x8697640,6, 0x8697660,6, 0x8697680,6, 0x86976a0,6, 0x86976c0,6, 0x86976e0,6, 0x8697700,6, 0x8697720,6, 0x8697740,6, 0x8697760,6, 0x8697780,6, 0x86977a0,6, 0x86977c0,6, 0x86977e0,6, 0x8697800,6, 0x8697820,6, 0x8697840,6, 0x8697860,6, 0x8697880,6, 0x86978a0,6, 0x86978c0,6, 0x86978e0,6, 0x8697900,6, 0x8697920,6, 0x8697940,6, 0x8697960,6, 0x8697980,6, 0x86979a0,6, 0x86979c0,6, 0x86979e0,6, 0x8697a00,6, 0x8697a20,6, 0x8697a40,6, 0x8697a60,6, 0x8697a80,6, 0x8697aa0,6, 0x8697ac0,6, 0x8697ae0,6, 0x8697b00,6, 0x8697b20,6, 0x8697b40,6, 0x8697b60,6, 0x8697b80,6, 0x8697ba0,6, 0x8697bc0,6, 0x8697be0,6, 0x8697c00,6, 0x8697c20,6, 0x8697c40,6, 0x8697c60,6, 0x8697c80,6, 0x8697ca0,6, 0x8697cc0,6, 0x8697ce0,6, 0x8697d00,6, 0x8697d20,6, 0x8697d40,6, 0x8697d60,6, 0x8697d80,6, 0x8697da0,6, 0x8697dc0,6, 0x8697de0,6, 0x8697e00,6, 0x8697e20,6, 0x8697e40,6, 0x8697e60,6, 0x8697e80,6, 0x8697ea0,6, 0x8697ec0,6, 0x8697ee0,6, 0x8697f00,6, 0x8697f20,6, 0x8697f40,6, 0x8697f60,6, 0x8697f80,6, 0x8697fa0,6, 0x8697fc0,6, 0x8697fe0,6, 0x8698000,6, 0x8698020,6, 0x8698040,6, 0x8698060,6, 0x8698080,6, 0x86980a0,6, 0x86980c0,6, 0x86980e0,6, 0x8698100,6, 0x8698120,6, 0x8698140,6, 0x8698160,6, 0x8698180,6, 0x86981a0,6, 0x86981c0,6, 0x86981e0,6, 0x8698200,6, 0x8698220,6, 0x8698240,6, 0x8698260,6, 0x8698280,6, 0x86982a0,6, 0x86982c0,6, 0x86982e0,6, 0x8698300,6, 0x8698320,6, 0x8698340,6, 0x8698360,6, 0x8698380,6, 0x86983a0,6, 0x86983c0,6, 0x86983e0,6, 0x8698400,6, 0x8698420,6, 0x8698440,6, 0x8698460,6, 0x8698480,6, 0x86984a0,6, 0x86984c0,6, 0x86984e0,6, 0x8698500,6, 0x8698520,6, 0x8698540,6, 0x8698560,6, 0x8698580,6, 0x86985a0,6, 0x86985c0,6, 0x86985e0,6, 0x8698600,6, 0x8698620,6, 0x8698640,6, 0x8698660,6, 0x8698680,6, 0x86986a0,6, 0x86986c0,6, 0x86986e0,6, 0x8698700,6, 0x8698720,6, 0x8698740,6, 0x8698760,6, 0x8698780,6, 0x86987a0,6, 0x86987c0,6, 0x86987e0,6, 0x8698800,6, 0x8698820,6, 0x8698840,6, 0x8698860,6, 0x8698880,6, 0x86988a0,6, 0x86988c0,6, 0x86988e0,6, 0x8698900,6, 0x8698920,6, 0x8698940,6, 0x8698960,6, 0x8698980,6, 0x86989a0,6, 0x86989c0,6, 0x86989e0,6, 0x8698a00,6, 0x8698a20,6, 0x8698a40,6, 0x8698a60,6, 0x8698a80,6, 0x8698aa0,6, 0x8698ac0,6, 0x8698ae0,6, 0x8698b00,6, 0x8698b20,6, 0x8698b40,6, 0x8698b60,6, 0x8698b80,6, 0x8698ba0,6, 0x8698bc0,6, 0x8698be0,6, 0x8698c00,6, 0x8698c20,6, 0x8698c40,6, 0x8698c60,6, 0x8698c80,6, 0x8698ca0,6, 0x8698cc0,6, 0x8698ce0,6, 0x8698d00,6, 0x8698d20,6, 0x8698d40,6, 0x8698d60,6, 0x8698d80,6, 0x8698da0,6, 0x8698dc0,6, 0x8698de0,6, 0x8698e00,6, 0x8698e20,6, 0x8698e40,6, 0x8698e60,6, 0x8698e80,6, 0x8698ea0,6, 0x8698ec0,6, 0x8698ee0,6, 0x8698f00,6, 0x8698f20,6, 0x8698f40,6, 0x8698f60,6, 0x8698f80,6, 0x8698fa0,6, 0x8698fc0,6, 0x8698fe0,6, 0x8699000,6, 0x8699020,6, 0x8699040,6, 0x8699060,6, 0x8699080,6, 0x86990a0,6, 0x86990c0,6, 0x86990e0,6, 0x8699100,6, 0x8699120,6, 0x8699140,6, 0x8699160,6, 0x8699180,6, 0x86991a0,6, 0x86991c0,6, 0x86991e0,6, 0x8699200,6, 0x8699220,6, 0x8699240,6, 0x8699260,6, 0x8699280,6, 0x86992a0,6, 0x86992c0,6, 0x86992e0,6, 0x8699300,6, 0x8699320,6, 0x8699340,6, 0x8699360,6, 0x8699380,6, 0x86993a0,6, 0x86993c0,6, 0x86993e0,6, 0x8699400,6, 0x8699420,6, 0x8699440,6, 0x8699460,6, 0x8699480,6, 0x86994a0,6, 0x86994c0,6, 0x86994e0,6, 0x8699500,6, 0x8699520,6, 0x8699540,6, 0x8699560,6, 0x8699580,6, 0x86995a0,6, 0x86995c0,6, 0x86995e0,6, 0x8699600,6, 0x8699620,6, 0x8699640,6, 0x8699660,6, 0x8699680,6, 0x86996a0,6, 0x86996c0,6, 0x86996e0,6, 0x8699700,6, 0x8699720,6, 0x8699740,6, 0x8699760,6, 0x8699780,6, 0x86997a0,6, 0x86997c0,6, 0x86997e0,6, 0x8699800,6, 0x8699820,6, 0x8699840,6, 0x8699860,6, 0x8699880,6, 0x86998a0,6, 0x86998c0,6, 0x86998e0,6, 0x8699900,6, 0x8699920,6, 0x8699940,6, 0x8699960,6, 0x8699980,6, 0x86999a0,6, 0x86999c0,6, 0x86999e0,6, 0x8699a00,6, 0x8699a20,6, 0x8699a40,6, 0x8699a60,6, 0x8699a80,6, 0x8699aa0,6, 0x8699ac0,6, 0x8699ae0,6, 0x8699b00,6, 0x8699b20,6, 0x8699b40,6, 0x8699b60,6, 0x8699b80,6, 0x8699ba0,6, 0x8699bc0,6, 0x8699be0,6, 0x8699c00,6, 0x8699c20,6, 0x8699c40,6, 0x8699c60,6, 0x8699c80,6, 0x8699ca0,6, 0x8699cc0,6, 0x8699ce0,6, 0x8699d00,6, 0x8699d20,6, 0x8699d40,6, 0x8699d60,6, 0x8699d80,6, 0x8699da0,6, 0x8699dc0,6, 0x8699de0,6, 0x8699e00,6, 0x8699e20,6, 0x8699e40,6, 0x8699e60,6, 0x8699e80,6, 0x8699ea0,6, 0x8699ec0,6, 0x8699ee0,6, 0x8699f00,6, 0x8699f20,6, 0x8699f40,6, 0x8699f60,6, 0x8699f80,6, 0x8699fa0,6, 0x8699fc0,6, 0x8699fe0,6, 0x869a000,6, 0x869a020,6, 0x869a040,6, 0x869a060,6, 0x869a080,6, 0x869a0a0,6, 0x869a0c0,6, 0x869a0e0,6, 0x869a100,6, 0x869a120,6, 0x869a140,6, 0x869a160,6, 0x869a180,6, 0x869a1a0,6, 0x869a1c0,6, 0x869a1e0,6, 0x869a200,6, 0x869a220,6, 0x869a240,6, 0x869a260,6, 0x869a280,6, 0x869a2a0,6, 0x869a2c0,6, 0x869a2e0,6, 0x869a300,6, 0x869a320,6, 0x869a340,6, 0x869a360,6, 0x869a380,6, 0x869a3a0,6, 0x869a3c0,6, 0x869a3e0,6, 0x869a400,6, 0x869a420,6, 0x869a440,6, 0x869a460,6, 0x869a480,6, 0x869a4a0,6, 0x869a4c0,6, 0x869a4e0,6, 0x869a500,6, 0x869a520,6, 0x869a540,6, 0x869a560,6, 0x869a580,6, 0x869a5a0,6, 0x869a5c0,6, 0x869a5e0,6, 0x869a600,6, 0x869a620,6, 0x869a640,6, 0x869a660,6, 0x869a680,6, 0x869a6a0,6, 0x869a6c0,6, 0x869a6e0,6, 0x869a700,6, 0x869a720,6, 0x869a740,6, 0x869a760,6, 0x869a780,6, 0x869a7a0,6, 0x869a7c0,6, 0x869a7e0,6, 0x869a800,6, 0x869a820,6, 0x869a840,6, 0x869a860,6, 0x869a880,6, 0x869a8a0,6, 0x869a8c0,6, 0x869a8e0,6, 0x869a900,6, 0x869a920,6, 0x869a940,6, 0x869a960,6, 0x869a980,6, 0x869a9a0,6, 0x869a9c0,6, 0x869a9e0,6, 0x869aa00,6, 0x869aa20,6, 0x869aa40,6, 0x869aa60,6, 0x869aa80,6, 0x869aaa0,6, 0x869aac0,6, 0x869aae0,6, 0x869ab00,6, 0x869ab20,6, 0x869ab40,6, 0x869ab60,6, 0x869ab80,6, 0x869aba0,6, 0x869abc0,6, 0x869abe0,6, 0x869ac00,6, 0x869ac20,6, 0x869ac40,6, 0x869ac60,6, 0x869ac80,6, 0x869aca0,6, 0x869acc0,6, 0x869ace0,6, 0x869ad00,6, 0x869ad20,6, 0x869ad40,6, 0x869ad60,6, 0x869ad80,6, 0x869ada0,6, 0x869adc0,6, 0x869ade0,6, 0x869ae00,6, 0x869ae20,6, 0x869ae40,6, 0x869ae60,6, 0x869ae80,6, 0x869aea0,6, 0x869aec0,6, 0x869aee0,6, 0x869af00,6, 0x869af20,6, 0x869af40,6, 0x869af60,6, 0x869af80,6, 0x869afa0,6, 0x869afc0,6, 0x869afe0,6, 0x869b000,6, 0x869b020,6, 0x869b040,6, 0x869b060,6, 0x869b080,6, 0x869b0a0,6, 0x869b0c0,6, 0x869b0e0,6, 0x869b100,6, 0x869b120,6, 0x869b140,6, 0x869b160,6, 0x869b180,6, 0x869b1a0,6, 0x869b1c0,6, 0x869b1e0,6, 0x869b200,6, 0x869b220,6, 0x869b240,6, 0x869b260,6, 0x869b280,6, 0x869b2a0,6, 0x869b2c0,6, 0x869b2e0,6, 0x869b300,6, 0x869b320,6, 0x869b340,6, 0x869b360,6, 0x869b380,6, 0x869b3a0,6, 0x869b3c0,6, 0x869b3e0,6, 0x869b400,6, 0x869b420,6, 0x869b440,6, 0x869b460,6, 0x869b480,6, 0x869b4a0,6, 0x869b4c0,6, 0x869b4e0,6, 0x869b500,6, 0x869b520,6, 0x869b540,6, 0x869b560,6, 0x869b580,6, 0x869b5a0,6, 0x869b5c0,6, 0x869b5e0,6, 0x869b600,6, 0x869b620,6, 0x869b640,6, 0x869b660,6, 0x869b680,6, 0x869b6a0,6, 0x869b6c0,6, 0x869b6e0,6, 0x869b700,6, 0x869b720,6, 0x869b740,6, 0x869b760,6, 0x869b780,6, 0x869b7a0,6, 0x869b7c0,6, 0x869b7e0,6, 0x869b800,6, 0x869b820,6, 0x869b840,6, 0x869b860,6, 0x869b880,6, 0x869b8a0,6, 0x869b8c0,6, 0x869b8e0,6, 0x869b900,6, 0x869b920,6, 0x869b940,6, 0x869b960,6, 0x869b980,6, 0x869b9a0,6, 0x869b9c0,6, 0x869b9e0,6, 0x869ba00,6, 0x869ba20,6, 0x869ba40,6, 0x869ba60,6, 0x869ba80,6, 0x869baa0,6, 0x869bac0,6, 0x869bae0,6, 0x869bb00,6, 0x869bb20,6, 0x869bb40,6, 0x869bb60,6, 0x869bb80,6, 0x869bba0,6, 0x869bbc0,6, 0x869bbe0,6, 0x869bc00,6, 0x869bc20,6, 0x869bc40,6, 0x869bc60,6, 0x869bc80,6, 0x869bca0,6, 0x869bcc0,6, 0x869bce0,6, 0x869bd00,6, 0x869bd20,6, 0x869bd40,6, 0x869bd60,6, 0x869bd80,6, 0x869bda0,6, 0x869bdc0,6, 0x869bde0,6, 0x869be00,6, 0x869be20,6, 0x869be40,6, 0x869be60,6, 0x869be80,6, 0x869bea0,6, 0x869bec0,6, 0x869bee0,6, 0x869bf00,6, 0x869bf20,6, 0x869bf40,6, 0x869bf60,6, 0x869bf80,6, 0x869bfa0,6, 0x869bfc0,6, 0x869bfe0,6, 0x869c000,6, 0x869c020,6, 0x869c040,6, 0x869c060,6, 0x869c080,6, 0x869c0a0,6, 0x869c0c0,6, 0x869c0e0,6, 0x869c100,6, 0x869c120,6, 0x869c140,6, 0x869c160,6, 0x869c180,6, 0x869c1a0,6, 0x869c1c0,6, 0x869c1e0,6, 0x869c200,6, 0x869c220,6, 0x869c240,6, 0x869c260,6, 0x869c280,6, 0x869c2a0,6, 0x869c2c0,6, 0x869c2e0,6, 0x869c300,6, 0x869c320,6, 0x869c340,6, 0x869c360,6, 0x869c380,6, 0x869c3a0,6, 0x869c3c0,6, 0x869c3e0,6, 0x869c400,6, 0x869c420,6, 0x869c440,6, 0x869c460,6, 0x869c480,6, 0x869c4a0,6, 0x869c4c0,6, 0x869c4e0,6, 0x869c500,6, 0x869c520,6, 0x869c540,6, 0x869c560,6, 0x869c580,6, 0x869c5a0,6, 0x869c5c0,6, 0x869c5e0,6, 0x869c600,6, 0x869c620,6, 0x869c640,6, 0x869c660,6, 0x869c680,6, 0x869c6a0,6, 0x869c6c0,6, 0x869c6e0,6, 0x869c700,6, 0x869c720,6, 0x869c740,6, 0x869c760,6, 0x869c780,6, 0x869c7a0,6, 0x869c7c0,6, 0x869c7e0,6, 0x869c800,6, 0x869c820,6, 0x869c840,6, 0x869c860,6, 0x869c880,6, 0x869c8a0,6, 0x869c8c0,6, 0x869c8e0,6, 0x869c900,6, 0x869c920,6, 0x869c940,6, 0x869c960,6, 0x869c980,6, 0x869c9a0,6, 0x869c9c0,6, 0x869c9e0,6, 0x869ca00,6, 0x869ca20,6, 0x869ca40,6, 0x869ca60,6, 0x869ca80,6, 0x869caa0,6, 0x869cac0,6, 0x869cae0,6, 0x869cb00,6, 0x869cb20,6, 0x869cb40,6, 0x869cb60,6, 0x869cb80,6, 0x869cba0,6, 0x869cbc0,6, 0x869cbe0,6, 0x869cc00,6, 0x869cc20,6, 0x869cc40,6, 0x869cc60,6, 0x869cc80,6, 0x869cca0,6, 0x869ccc0,6, 0x869cce0,6, 0x869cd00,6, 0x869cd20,6, 0x869cd40,6, 0x869cd60,6, 0x869cd80,6, 0x869cda0,6, 0x869cdc0,6, 0x869cde0,6, 0x869ce00,6, 0x869ce20,6, 0x869ce40,6, 0x869ce60,6, 0x869ce80,6, 0x869cea0,6, 0x869cec0,6, 0x869cee0,6, 0x869cf00,6, 0x869cf20,6, 0x869cf40,6, 0x869cf60,6, 0x869cf80,6, 0x869cfa0,6, 0x869cfc0,6, 0x869cfe0,6, 0x869d000,6, 0x869d020,6, 0x869d040,6, 0x869d060,6, 0x869d080,6, 0x869d0a0,6, 0x869d0c0,6, 0x869d0e0,6, 0x869d100,6, 0x869d120,6, 0x869d140,6, 0x869d160,6, 0x869d180,6, 0x869d1a0,6, 0x869d1c0,6, 0x869d1e0,6, 0x869d200,6, 0x869d220,6, 0x869d240,6, 0x869d260,6, 0x869d280,6, 0x869d2a0,6, 0x869d2c0,6, 0x869d2e0,6, 0x869d300,6, 0x869d320,6, 0x869d340,6, 0x869d360,6, 0x869d380,6, 0x869d3a0,6, 0x869d3c0,6, 0x869d3e0,6, 0x869d400,6, 0x869d420,6, 0x869d440,6, 0x869d460,6, 0x869d480,6, 0x869d4a0,6, 0x869d4c0,6, 0x869d4e0,6, 0x869d500,6, 0x869d520,6, 0x869d540,6, 0x869d560,6, 0x869d580,6, 0x869d5a0,6, 0x869d5c0,6, 0x869d5e0,6, 0x869d600,6, 0x869d620,6, 0x869d640,6, 0x869d660,6, 0x869d680,6, 0x869d6a0,6, 0x869d6c0,6, 0x869d6e0,6, 0x869d700,6, 0x869d720,6, 0x869d740,6, 0x869d760,6, 0x869d780,6, 0x869d7a0,6, 0x869d7c0,6, 0x869d7e0,6, 0x869d800,6, 0x869d820,6, 0x869d840,6, 0x869d860,6, 0x869d880,6, 0x869d8a0,6, 0x869d8c0,6, 0x869d8e0,6, 0x869d900,6, 0x869d920,6, 0x869d940,6, 0x869d960,6, 0x869d980,6, 0x869d9a0,6, 0x869d9c0,6, 0x869d9e0,6, 0x869da00,6, 0x869da20,6, 0x869da40,6, 0x869da60,6, 0x869da80,6, 0x869daa0,6, 0x869dac0,6, 0x869dae0,6, 0x869db00,6, 0x869db20,6, 0x869db40,6, 0x869db60,6, 0x869db80,6, 0x869dba0,6, 0x869dbc0,6, 0x869dbe0,6, 0x869dc00,6, 0x869dc20,6, 0x869dc40,6, 0x869dc60,6, 0x869dc80,6, 0x869dca0,6, 0x869dcc0,6, 0x869dce0,6, 0x869dd00,6, 0x869dd20,6, 0x869dd40,6, 0x869dd60,6, 0x869dd80,6, 0x869dda0,6, 0x869ddc0,6, 0x869dde0,6, 0x869de00,6, 0x869de20,6, 0x869de40,6, 0x869de60,6, 0x869de80,6, 0x869dea0,6, 0x869dec0,6, 0x869dee0,6, 0x869df00,6, 0x869df20,6, 0x869df40,6, 0x869df60,6, 0x869df80,6, 0x869dfa0,6, 0x869dfc0,6, 0x869dfe0,6, 0x869e000,6, 0x869e020,6, 0x869e040,6, 0x869e060,6, 0x869e080,6, 0x869e0a0,6, 0x869e0c0,6, 0x869e0e0,6, 0x869e100,6, 0x869e120,6, 0x869e140,6, 0x869e160,6, 0x869e180,6, 0x869e1a0,6, 0x869e1c0,6, 0x869e1e0,6, 0x869e200,6, 0x869e220,6, 0x869e240,6, 0x869e260,6, 0x869e280,6, 0x869e2a0,6, 0x869e2c0,6, 0x869e2e0,6, 0x869e300,6, 0x869e320,6, 0x869e340,6, 0x869e360,6, 0x869e380,6, 0x869e3a0,6, 0x869e3c0,6, 0x869e3e0,6, 0x869e400,6, 0x869e420,6, 0x869e440,6, 0x869e460,6, 0x869e480,6, 0x869e4a0,6, 0x869e4c0,6, 0x869e4e0,6, 0x869e500,6, 0x869e520,6, 0x869e540,6, 0x869e560,6, 0x869e580,6, 0x869e5a0,6, 0x869e5c0,6, 0x869e5e0,6, 0x869e600,6, 0x869e620,6, 0x869e640,6, 0x869e660,6, 0x869e680,6, 0x869e6a0,6, 0x869e6c0,6, 0x869e6e0,6, 0x869e700,6, 0x869e720,6, 0x869e740,6, 0x869e760,6, 0x869e780,6, 0x869e7a0,6, 0x869e7c0,6, 0x869e7e0,6, 0x869e800,6, 0x869e820,6, 0x869e840,6, 0x869e860,6, 0x869e880,6, 0x869e8a0,6, 0x869e8c0,6, 0x869e8e0,6, 0x869e900,6, 0x869e920,6, 0x869e940,6, 0x869e960,6, 0x869e980,6, 0x869e9a0,6, 0x869e9c0,6, 0x869e9e0,6, 0x869ea00,6, 0x869ea20,6, 0x869ea40,6, 0x869ea60,6, 0x869ea80,6, 0x869eaa0,6, 0x869eac0,6, 0x869eae0,6, 0x869eb00,6, 0x869eb20,6, 0x869eb40,6, 0x869eb60,6, 0x869eb80,6, 0x869eba0,6, 0x869ebc0,6, 0x869ebe0,6, 0x869ec00,6, 0x869ec20,6, 0x869ec40,6, 0x869ec60,6, 0x869ec80,6, 0x869eca0,6, 0x869ecc0,6, 0x869ece0,6, 0x869ed00,6, 0x869ed20,6, 0x869ed40,6, 0x869ed60,6, 0x869ed80,6, 0x869eda0,6, 0x869edc0,6, 0x869ede0,6, 0x869ee00,6, 0x869ee20,6, 0x869ee40,6, 0x869ee60,6, 0x869ee80,6, 0x869eea0,6, 0x869eec0,6, 0x869eee0,6, 0x869ef00,6, 0x869ef20,6, 0x869ef40,6, 0x869ef60,6, 0x869ef80,6, 0x869efa0,6, 0x869efc0,6, 0x869efe0,6, 0x869f000,6, 0x869f020,6, 0x869f040,6, 0x869f060,6, 0x869f080,6, 0x869f0a0,6, 0x869f0c0,6, 0x869f0e0,6, 0x869f100,6, 0x869f120,6, 0x869f140,6, 0x869f160,6, 0x869f180,6, 0x869f1a0,6, 0x869f1c0,6, 0x869f1e0,6, 0x869f200,6, 0x869f220,6, 0x869f240,6, 0x869f260,6, 0x869f280,6, 0x869f2a0,6, 0x869f2c0,6, 0x869f2e0,6, 0x869f300,6, 0x869f320,6, 0x869f340,6, 0x869f360,6, 0x869f380,6, 0x869f3a0,6, 0x869f3c0,6, 0x869f3e0,6, 0x869f400,6, 0x869f420,6, 0x869f440,6, 0x869f460,6, 0x869f480,6, 0x869f4a0,6, 0x869f4c0,6, 0x869f4e0,6, 0x869f500,6, 0x869f520,6, 0x869f540,6, 0x869f560,6, 0x869f580,6, 0x869f5a0,6, 0x869f5c0,6, 0x869f5e0,6, 0x869f600,6, 0x869f620,6, 0x869f640,6, 0x869f660,6, 0x869f680,6, 0x869f6a0,6, 0x869f6c0,6, 0x869f6e0,6, 0x869f700,6, 0x869f720,6, 0x869f740,6, 0x869f760,6, 0x869f780,6, 0x869f7a0,6, 0x869f7c0,6, 0x869f7e0,6, 0x869f800,6, 0x869f820,6, 0x869f840,6, 0x869f860,6, 0x869f880,6, 0x869f8a0,6, 0x869f8c0,6, 0x869f8e0,6, 0x869f900,6, 0x869f920,6, 0x869f940,6, 0x869f960,6, 0x869f980,6, 0x869f9a0,6, 0x869f9c0,6, 0x869f9e0,6, 0x869fa00,6, 0x869fa20,6, 0x869fa40,6, 0x869fa60,6, 0x869fa80,6, 0x869faa0,6, 0x869fac0,6, 0x869fae0,6, 0x869fb00,6, 0x869fb20,6, 0x869fb40,6, 0x869fb60,6, 0x869fb80,6, 0x869fba0,6, 0x869fbc0,6, 0x869fbe0,6, 0x869fc00,6, 0x869fc20,6, 0x869fc40,6, 0x869fc60,6, 0x869fc80,6, 0x869fca0,6, 0x869fcc0,6, 0x869fce0,6, 0x869fd00,6, 0x869fd20,6, 0x869fd40,6, 0x869fd60,6, 0x869fd80,6, 0x869fda0,6, 0x869fdc0,6, 0x869fde0,6, 0x869fe00,6, 0x869fe20,6, 0x869fe40,6, 0x869fe60,6, 0x869fe80,6, 0x869fea0,6, 0x869fec0,6, 0x869fee0,6, 0x869ff00,6, 0x869ff20,6, 0x869ff40,6, 0x869ff60,6, 0x869ff80,6, 0x869ffa0,6, 0x869ffc0,6, 0x869ffe0,6, 0x86a0000,6, 0x86a0020,6, 0x86a0040,6, 0x86a0060,6, 0x86a0080,6, 0x86a00a0,6, 0x86a00c0,6, 0x86a00e0,6, 0x86a0100,6, 0x86a0120,6, 0x86a0140,6, 0x86a0160,6, 0x86a0180,6, 0x86a01a0,6, 0x86a01c0,6, 0x86a01e0,6, 0x86a0200,6, 0x86a0220,6, 0x86a0240,6, 0x86a0260,6, 0x86a0280,6, 0x86a02a0,6, 0x86a02c0,6, 0x86a02e0,6, 0x86a0300,6, 0x86a0320,6, 0x86a0340,6, 0x86a0360,6, 0x86a0380,6, 0x86a03a0,6, 0x86a03c0,6, 0x86a03e0,6, 0x86a0400,6, 0x86a0420,6, 0x86a0440,6, 0x86a0460,6, 0x86a0480,6, 0x86a04a0,6, 0x86a04c0,6, 0x86a04e0,6, 0x86a0500,6, 0x86a0520,6, 0x86a0540,6, 0x86a0560,6, 0x86a0580,6, 0x86a05a0,6, 0x86a05c0,6, 0x86a05e0,6, 0x86a0600,6, 0x86a0620,6, 0x86a0640,6, 0x86a0660,6, 0x86a0680,6, 0x86a06a0,6, 0x86a06c0,6, 0x86a06e0,6, 0x86a0700,6, 0x86a0720,6, 0x86a0740,6, 0x86a0760,6, 0x86a0780,6, 0x86a07a0,6, 0x86a07c0,6, 0x86a07e0,6, 0x86c0000,2, 0x86c0040,9, 0x86c0080,7, 0x86c00a0,7, 0x86c00c0,3, 0x8700000,1040, 0x8702000,2, 0x8702040,9, 0x8702080,11, 0x8704000,5, 0x8704020,5, 0x8704040,5, 0x8704060,5, 0x8704080,5, 0x87040a0,5, 0x87040c0,5, 0x87040e0,5, 0x8704100,5, 0x8704120,5, 0x8704140,5, 0x8704160,5, 0x8704180,5, 0x87041a0,5, 0x87041c0,5, 0x87041e0,5, 0x8704200,2, 0x8704240,9, 0x8704280,6, 0x87042a0,6, 0x87042c0,3, 0x8704404,1, 0x8704418,26, 0x8704484,15, 0x87044c4,1, 0x87044e0,8, 0x8740000,17800, 0x8760000,2, 0x8760040,9, 0x8760080,11, 0x8780000,3, 0x8780014,1, 0x878001c,1, 0x8780024,1, 0x878002c,17, 0x8780080,1, 0x8780090,3, 0x87800a0,3, 0x87800b0,8, 0x8800004,7, 0x8800024,1, 0x8800034,3, 0x8800044,1, 0x8800054,3, 0x8800064,1, 0x8800074,3, 0x8800084,1, 0x8800094,3, 0x88000a4,1, 0x88000b4,3, 0x88000c4,1, 0x88000d4,3, 0x88000e4,1, 0x88000f4,3, 0x8800104,1, 0x8800114,3, 0x8800124,1, 0x8800134,3, 0x8800144,1, 0x8800154,3, 0x8800164,1, 0x8800174,3, 0x8800184,1, 0x8800194,3, 0x88001a4,1, 0x88001b4,3, 0x88001c4,1, 0x88001d4,3, 0x88001e4,1, 0x88001f4,3, 0x8880000,5, 0x8880020,5, 0x8880040,5, 0x8880060,5, 0x8880080,5, 0x88800a0,5, 0x88800c0,5, 0x88800e0,5, 0x8880100,5, 0x8880120,5, 0x8880140,5, 0x8880200,5, 0x8880220,5, 0x8880240,5, 0x8880260,5, 0x8880280,5, 0x88802a0,5, 0x88802c0,5, 0x88802e0,5, 0x8880300,5, 0x8880320,5, 0x8880340,5, 0x8880400,5, 0x8880420,5, 0x8880440,5, 0x8880460,5, 0x8880480,5, 0x88804a0,5, 0x88804c0,5, 0x88804e0,5, 0x8880500,5, 0x8880520,5, 0x8880540,5, 0x8880600,5, 0x8880620,5, 0x8880640,5, 0x8880660,5, 0x8880680,5, 0x88806a0,5, 0x88806c0,5, 0x88806e0,5, 0x8880700,5, 0x8880720,5, 0x8880740,5, 0x8880800,5, 0x8880820,5, 0x8880840,5, 0x8880860,5, 0x8880880,5, 0x88808a0,5, 0x88808c0,5, 0x88808e0,5, 0x8880900,5, 0x8880920,5, 0x8880940,5, 0x8880a00,5, 0x8880a20,5, 0x8880a40,5, 0x8880a60,5, 0x8880a80,5, 0x8880aa0,5, 0x8880ac0,5, 0x8880ae0,5, 0x8880b00,5, 0x8880b20,5, 0x8880b40,5, 0x8880c00,5, 0x8880c20,5, 0x8880c40,5, 0x8880c60,5, 0x8880c80,5, 0x8880ca0,5, 0x8880cc0,5, 0x8880ce0,5, 0x8880d00,5, 0x8880d20,5, 0x8880d40,5, 0x8880e00,5, 0x8880e20,5, 0x8880e40,5, 0x8880e60,5, 0x8880e80,5, 0x8880ea0,5, 0x8880ec0,5, 0x8880ee0,5, 0x8880f00,5, 0x8880f20,5, 0x8880f40,5, 0x8881000,5, 0x8881020,5, 0x8881040,5, 0x8881060,5, 0x8881080,5, 0x88810a0,5, 0x88810c0,5, 0x88810e0,5, 0x8881100,5, 0x8881120,5, 0x8881140,5, 0x8881200,5, 0x8881220,5, 0x8881240,5, 0x8881260,5, 0x8881280,5, 0x88812a0,5, 0x88812c0,5, 0x88812e0,5, 0x8881300,5, 0x8881320,5, 0x8881340,5, 0x8881400,5, 0x8881420,5, 0x8881440,5, 0x8881460,5, 0x8881480,5, 0x88814a0,5, 0x88814c0,5, 0x88814e0,5, 0x8881500,5, 0x8881520,5, 0x8881540,5, 0x8881600,5, 0x8881620,5, 0x8881640,5, 0x8881660,5, 0x8881680,5, 0x88816a0,5, 0x88816c0,5, 0x88816e0,5, 0x8881700,5, 0x8881720,5, 0x8881740,5, 0x8881800,5, 0x8881820,5, 0x8881840,5, 0x8881860,5, 0x8881880,5, 0x88818a0,5, 0x88818c0,5, 0x88818e0,5, 0x8881900,5, 0x8881920,5, 0x8881940,5, 0x8881a00,5, 0x8881a20,5, 0x8881a40,5, 0x8881a60,5, 0x8881a80,5, 0x8881aa0,5, 0x8881ac0,5, 0x8881ae0,5, 0x8881b00,5, 0x8881b20,5, 0x8881b40,5, 0x8881c00,5, 0x8881c20,5, 0x8881c40,5, 0x8881c60,5, 0x8881c80,5, 0x8881ca0,5, 0x8881cc0,5, 0x8881ce0,5, 0x8881d00,5, 0x8881d20,5, 0x8881d40,5, 0x8881e00,5, 0x8881e20,5, 0x8881e40,5, 0x8881e60,5, 0x8881e80,5, 0x8881ea0,5, 0x8881ec0,5, 0x8881ee0,5, 0x8881f00,5, 0x8881f20,5, 0x8881f40,5, 0x8882000,5, 0x8882020,5, 0x8882040,5, 0x8882060,5, 0x8882080,5, 0x88820a0,5, 0x88820c0,5, 0x88820e0,5, 0x8882100,5, 0x8882120,5, 0x8882140,5, 0x8882200,5, 0x8882220,5, 0x8882240,5, 0x8882260,5, 0x8882280,5, 0x88822a0,5, 0x88822c0,5, 0x88822e0,5, 0x8882300,5, 0x8882320,5, 0x8882340,5, 0x8882400,5, 0x8882420,5, 0x8882440,5, 0x8882460,5, 0x8882480,5, 0x88824a0,5, 0x88824c0,5, 0x88824e0,5, 0x8882500,5, 0x8882520,5, 0x8882540,5, 0x8882600,5, 0x8882620,5, 0x8882640,5, 0x8882660,5, 0x8882680,5, 0x88826a0,5, 0x88826c0,5, 0x88826e0,5, 0x8882700,5, 0x8882720,5, 0x8882740,5, 0x8882800,5, 0x8882820,5, 0x8882840,5, 0x8882860,5, 0x8882880,5, 0x88828a0,5, 0x88828c0,5, 0x88828e0,5, 0x8882900,5, 0x8882920,5, 0x8882940,5, 0x8882a00,5, 0x8882a20,5, 0x8882a40,5, 0x8882a60,5, 0x8882a80,5, 0x8882aa0,5, 0x8882ac0,5, 0x8882ae0,5, 0x8882b00,5, 0x8882b20,5, 0x8882b40,5, 0x8882c00,5, 0x8882c20,5, 0x8882c40,5, 0x8882c60,5, 0x8882c80,5, 0x8882ca0,5, 0x8882cc0,5, 0x8882ce0,5, 0x8882d00,5, 0x8882d20,5, 0x8882d40,5, 0x8882e00,5, 0x8882e20,5, 0x8882e40,5, 0x8882e60,5, 0x8882e80,5, 0x8882ea0,5, 0x8882ec0,5, 0x8882ee0,5, 0x8882f00,5, 0x8882f20,5, 0x8882f40,5, 0x8883000,5, 0x8883020,5, 0x8883040,5, 0x8883060,5, 0x8883080,5, 0x88830a0,5, 0x88830c0,5, 0x88830e0,5, 0x8883100,5, 0x8883120,5, 0x8883140,5, 0x8883200,5, 0x8883220,5, 0x8883240,5, 0x8883260,5, 0x8883280,5, 0x88832a0,5, 0x88832c0,5, 0x88832e0,5, 0x8883300,5, 0x8883320,5, 0x8883340,5, 0x8883400,5, 0x8883420,5, 0x8883440,5, 0x8883460,5, 0x8883480,5, 0x88834a0,5, 0x88834c0,5, 0x88834e0,5, 0x8883500,5, 0x8883520,5, 0x8883540,5, 0x8883600,5, 0x8883620,5, 0x8883640,5, 0x8883660,5, 0x8883680,5, 0x88836a0,5, 0x88836c0,5, 0x88836e0,5, 0x8883700,5, 0x8883720,5, 0x8883740,5, 0x8883800,5, 0x8883820,5, 0x8883840,5, 0x8883860,5, 0x8883880,5, 0x88838a0,5, 0x88838c0,5, 0x88838e0,5, 0x8883900,5, 0x8883920,5, 0x8883940,5, 0x8883a00,5, 0x8883a20,5, 0x8883a40,5, 0x8883a60,5, 0x8883a80,5, 0x8883aa0,5, 0x8883ac0,5, 0x8883ae0,5, 0x8883b00,5, 0x8883b20,5, 0x8883b40,5, 0x8883c00,5, 0x8883c20,5, 0x8883c40,5, 0x8883c60,5, 0x8883c80,5, 0x8883ca0,5, 0x8883cc0,5, 0x8883ce0,5, 0x8883d00,5, 0x8883d20,5, 0x8883d40,5, 0x8883e00,5, 0x8883e20,5, 0x8883e40,5, 0x8883e60,5, 0x8883e80,5, 0x8883ea0,5, 0x8883ec0,5, 0x8883ee0,5, 0x8883f00,5, 0x8883f20,5, 0x8883f40,5, 0x8884000,5, 0x8884020,5, 0x8884040,5, 0x8884060,5, 0x8884080,5, 0x88840a0,5, 0x88840c0,5, 0x88840e0,5, 0x8884100,5, 0x8884120,5, 0x8884140,5, 0x8884200,5, 0x8884220,5, 0x8884240,5, 0x8884260,5, 0x8884280,5, 0x88842a0,5, 0x88842c0,5, 0x88842e0,5, 0x8884300,5, 0x8884320,5, 0x8884340,5, 0x8884400,5, 0x8884420,5, 0x8884440,5, 0x8884460,5, 0x8884480,5, 0x88844a0,5, 0x88844c0,5, 0x88844e0,5, 0x8884500,5, 0x8884520,5, 0x8884540,5, 0x8884600,5, 0x8884620,5, 0x8884640,5, 0x8884660,5, 0x8884680,5, 0x88846a0,5, 0x88846c0,5, 0x88846e0,5, 0x8884700,5, 0x8884720,5, 0x8884740,5, 0x8884800,5, 0x8884820,5, 0x8884840,5, 0x8884860,5, 0x8884880,5, 0x88848a0,5, 0x88848c0,5, 0x88848e0,5, 0x8884900,5, 0x8884920,5, 0x8884940,5, 0x8884a00,5, 0x8884a20,5, 0x8884a40,5, 0x8884a60,5, 0x8884a80,5, 0x8884aa0,5, 0x8884ac0,5, 0x8884ae0,5, 0x8884b00,5, 0x8884b20,5, 0x8884b40,5, 0x8884c00,5, 0x8884c20,5, 0x8884c40,5, 0x8884c60,5, 0x8884c80,5, 0x8884ca0,5, 0x8884cc0,5, 0x8884ce0,5, 0x8884d00,5, 0x8884d20,5, 0x8884d40,5, 0x8884e00,5, 0x8884e20,5, 0x8884e40,5, 0x8884e60,5, 0x8884e80,5, 0x8884ea0,5, 0x8884ec0,5, 0x8884ee0,5, 0x8884f00,5, 0x8884f20,5, 0x8884f40,5, 0x8885000,5, 0x8885020,5, 0x8885040,5, 0x8885060,5, 0x8885080,5, 0x88850a0,5, 0x88850c0,5, 0x88850e0,5, 0x8885100,5, 0x8885120,5, 0x8885140,5, 0x8885200,5, 0x8885220,5, 0x8885240,5, 0x8885260,5, 0x8885280,5, 0x88852a0,5, 0x88852c0,5, 0x88852e0,5, 0x8885300,5, 0x8885320,5, 0x8885340,5, 0x8885400,5, 0x8885420,5, 0x8885440,5, 0x8885460,5, 0x8885480,5, 0x88854a0,5, 0x88854c0,5, 0x88854e0,5, 0x8885500,5, 0x8885520,5, 0x8885540,5, 0x8885600,5, 0x8885620,5, 0x8885640,5, 0x8885660,5, 0x8885680,5, 0x88856a0,5, 0x88856c0,5, 0x88856e0,5, 0x8885700,5, 0x8885720,5, 0x8885740,5, 0x8885800,5, 0x8885820,5, 0x8885840,5, 0x8885860,5, 0x8885880,5, 0x88858a0,5, 0x88858c0,5, 0x88858e0,5, 0x8885900,5, 0x8885920,5, 0x8885940,5, 0x8885a00,5, 0x8885a20,5, 0x8885a40,5, 0x8885a60,5, 0x8885a80,5, 0x8885aa0,5, 0x8885ac0,5, 0x8885ae0,5, 0x8885b00,5, 0x8885b20,5, 0x8885b40,5, 0x8885c00,5, 0x8885c20,5, 0x8885c40,5, 0x8885c60,5, 0x8885c80,5, 0x8885ca0,5, 0x8885cc0,5, 0x8885ce0,5, 0x8885d00,5, 0x8885d20,5, 0x8885d40,5, 0x8885e00,5, 0x8885e20,5, 0x8885e40,5, 0x8885e60,5, 0x8885e80,5, 0x8885ea0,5, 0x8885ec0,5, 0x8885ee0,5, 0x8885f00,5, 0x8885f20,5, 0x8885f40,5, 0x8886000,5, 0x8886020,5, 0x8886040,5, 0x8886060,5, 0x8886080,5, 0x88860a0,5, 0x88860c0,5, 0x88860e0,5, 0x8886100,5, 0x8886120,5, 0x8886140,5, 0x8886200,5, 0x8886220,5, 0x8886240,5, 0x8886260,5, 0x8886280,5, 0x88862a0,5, 0x88862c0,5, 0x88862e0,5, 0x8886300,5, 0x8886320,5, 0x8886340,5, 0x8886400,5, 0x8886420,5, 0x8886440,5, 0x8886460,5, 0x8886480,5, 0x88864a0,5, 0x88864c0,5, 0x88864e0,5, 0x8886500,5, 0x8886520,5, 0x8886540,5, 0x8886600,5, 0x8886620,5, 0x8886640,5, 0x8886660,5, 0x8886680,5, 0x88866a0,5, 0x88866c0,5, 0x88866e0,5, 0x8886700,5, 0x8886720,5, 0x8886740,5, 0x8886800,5, 0x8886820,5, 0x8886840,5, 0x8886860,5, 0x8886880,5, 0x88868a0,5, 0x88868c0,5, 0x88868e0,5, 0x8886900,5, 0x8886920,5, 0x8886940,5, 0x8886a00,5, 0x8886a20,5, 0x8886a40,5, 0x8886a60,5, 0x8886a80,5, 0x8886aa0,5, 0x8886ac0,5, 0x8886ae0,5, 0x8886b00,5, 0x8886b20,5, 0x8886b40,5, 0x8886c00,5, 0x8886c20,5, 0x8886c40,5, 0x8886c60,5, 0x8886c80,5, 0x8886ca0,5, 0x8886cc0,5, 0x8886ce0,5, 0x8886d00,5, 0x8886d20,5, 0x8886d40,5, 0x8886e00,5, 0x8886e20,5, 0x8886e40,5, 0x8886e60,5, 0x8886e80,5, 0x8886ea0,5, 0x8886ec0,5, 0x8886ee0,5, 0x8886f00,5, 0x8886f20,5, 0x8886f40,5, 0x8887000,5, 0x8887020,5, 0x8887040,5, 0x8887060,5, 0x8887080,5, 0x88870a0,5, 0x88870c0,5, 0x88870e0,5, 0x8887100,5, 0x8887120,5, 0x8887140,5, 0x8887200,5, 0x8887220,5, 0x8887240,5, 0x8887260,5, 0x8887280,5, 0x88872a0,5, 0x88872c0,5, 0x88872e0,5, 0x8887300,5, 0x8887320,5, 0x8887340,5, 0x8887400,5, 0x8887420,5, 0x8887440,5, 0x8887460,5, 0x8887480,5, 0x88874a0,5, 0x88874c0,5, 0x88874e0,5, 0x8887500,5, 0x8887520,5, 0x8887540,5, 0x8887600,5, 0x8887620,5, 0x8887640,5, 0x8887660,5, 0x8887680,5, 0x88876a0,5, 0x88876c0,5, 0x88876e0,5, 0x8887700,5, 0x8887720,5, 0x8887740,5, 0x8887800,5, 0x8887820,5, 0x8887840,5, 0x8887860,5, 0x8887880,5, 0x88878a0,5, 0x88878c0,5, 0x88878e0,5, 0x8887900,5, 0x8887920,5, 0x8887940,5, 0x8887a00,5, 0x8887a20,5, 0x8887a40,5, 0x8887a60,5, 0x8887a80,5, 0x8887aa0,5, 0x8887ac0,5, 0x8887ae0,5, 0x8887b00,5, 0x8887b20,5, 0x8887b40,5, 0x8887c00,5, 0x8887c20,5, 0x8887c40,5, 0x8887c60,5, 0x8887c80,5, 0x8887ca0,5, 0x8887cc0,5, 0x8887ce0,5, 0x8887d00,5, 0x8887d20,5, 0x8887d40,5, 0x8887e00,5, 0x8887e20,5, 0x8887e40,5, 0x8887e60,5, 0x8887e80,5, 0x8887ea0,5, 0x8887ec0,5, 0x8887ee0,5, 0x8887f00,5, 0x8887f20,5, 0x8887f40,5, 0x8888000,5, 0x8888020,5, 0x8888040,5, 0x8888060,5, 0x8888080,5, 0x88880a0,5, 0x88880c0,5, 0x88880e0,5, 0x8888100,5, 0x8888120,5, 0x8888140,5, 0x8888200,5, 0x8888220,5, 0x8888240,5, 0x8888260,5, 0x8888280,5, 0x88882a0,5, 0x88882c0,5, 0x88882e0,5, 0x8888300,5, 0x8888320,5, 0x8888340,5, 0x8888400,5, 0x8888420,5, 0x8888440,5, 0x8888460,5, 0x8888480,5, 0x88884a0,5, 0x88884c0,5, 0x88884e0,5, 0x8888500,5, 0x8888520,5, 0x8888540,5, 0x8888600,5, 0x8888620,5, 0x8888640,5, 0x8888660,5, 0x8888680,5, 0x88886a0,5, 0x88886c0,5, 0x88886e0,5, 0x8888700,5, 0x8888720,5, 0x8888740,5, 0x8888800,5, 0x8888820,5, 0x8888840,5, 0x8888860,5, 0x8888880,5, 0x88888a0,5, 0x88888c0,5, 0x88888e0,5, 0x8888900,5, 0x8888920,5, 0x8888940,5, 0x8888a00,5, 0x8888a20,5, 0x8888a40,5, 0x8888a60,5, 0x8888a80,5, 0x8888aa0,5, 0x8888ac0,5, 0x8888ae0,5, 0x8888b00,5, 0x8888b20,5, 0x8888b40,5, 0x8888c00,5, 0x8888c20,5, 0x8888c40,5, 0x8888c60,5, 0x8888c80,5, 0x8888ca0,5, 0x8888cc0,5, 0x8888ce0,5, 0x8888d00,5, 0x8888d20,5, 0x8888d40,5, 0x8888e00,5, 0x8888e20,5, 0x8888e40,5, 0x8888e60,5, 0x8888e80,5, 0x8888ea0,5, 0x8888ec0,5, 0x8888ee0,5, 0x8888f00,5, 0x8888f20,5, 0x8888f40,5, 0x8889000,5, 0x8889020,5, 0x8889040,5, 0x8889060,5, 0x8889080,5, 0x88890a0,5, 0x88890c0,5, 0x88890e0,5, 0x8889100,5, 0x8889120,5, 0x8889140,5, 0x8889200,5, 0x8889220,5, 0x8889240,5, 0x8889260,5, 0x8889280,5, 0x88892a0,5, 0x88892c0,5, 0x88892e0,5, 0x8889300,5, 0x8889320,5, 0x8889340,5, 0x8889400,5, 0x8889420,5, 0x8889440,5, 0x8889460,5, 0x8889480,5, 0x88894a0,5, 0x88894c0,5, 0x88894e0,5, 0x8889500,5, 0x8889520,5, 0x8889540,5, 0x8889600,5, 0x8889620,5, 0x8889640,5, 0x8889660,5, 0x8889680,5, 0x88896a0,5, 0x88896c0,5, 0x88896e0,5, 0x8889700,5, 0x8889720,5, 0x8889740,5, 0x8889800,5, 0x8889820,5, 0x8889840,5, 0x8889860,5, 0x8889880,5, 0x88898a0,5, 0x88898c0,5, 0x88898e0,5, 0x8889900,5, 0x8889920,5, 0x8889940,5, 0x8889a00,5, 0x8889a20,5, 0x8889a40,5, 0x8889a60,5, 0x8889a80,5, 0x8889aa0,5, 0x8889ac0,5, 0x8889ae0,5, 0x8889b00,5, 0x8889b20,5, 0x8889b40,5, 0x8889c00,5, 0x8889c20,5, 0x8889c40,5, 0x8889c60,5, 0x8889c80,5, 0x8889ca0,5, 0x8889cc0,5, 0x8889ce0,5, 0x8889d00,5, 0x8889d20,5, 0x8889d40,5, 0x8889e00,5, 0x8889e20,5, 0x8889e40,5, 0x8889e60,5, 0x8889e80,5, 0x8889ea0,5, 0x8889ec0,5, 0x8889ee0,5, 0x8889f00,5, 0x8889f20,5, 0x8889f40,5, 0x888a000,5, 0x888a020,5, 0x888a040,5, 0x888a060,5, 0x888a080,5, 0x888a0a0,5, 0x888a0c0,5, 0x888a0e0,5, 0x888a100,5, 0x888a120,5, 0x888a140,5, 0x888a200,5, 0x888a220,5, 0x888a240,5, 0x888a260,5, 0x888a280,5, 0x888a2a0,5, 0x888a2c0,5, 0x888a2e0,5, 0x888a300,5, 0x888a320,5, 0x888a340,5, 0x888a400,5, 0x888a420,5, 0x888a440,5, 0x888a460,5, 0x888a480,5, 0x888a4a0,5, 0x888a4c0,5, 0x888a4e0,5, 0x888a500,5, 0x888a520,5, 0x888a540,5, 0x888a600,5, 0x888a620,5, 0x888a640,5, 0x888a660,5, 0x888a680,5, 0x888a6a0,5, 0x888a6c0,5, 0x888a6e0,5, 0x888a700,5, 0x888a720,5, 0x888a740,5, 0x888a800,5, 0x888a820,5, 0x888a840,5, 0x888a860,5, 0x888a880,5, 0x888a8a0,5, 0x888a8c0,5, 0x888a8e0,5, 0x888a900,5, 0x888a920,5, 0x888a940,5, 0x888aa00,5, 0x888aa20,5, 0x888aa40,5, 0x888aa60,5, 0x888aa80,5, 0x888aaa0,5, 0x888aac0,5, 0x888aae0,5, 0x888ab00,5, 0x888ab20,5, 0x888ab40,5, 0x888ac00,5, 0x888ac20,5, 0x888ac40,5, 0x888ac60,5, 0x888ac80,5, 0x888aca0,5, 0x888acc0,5, 0x888ace0,5, 0x888ad00,5, 0x888ad20,5, 0x888ad40,5, 0x888ae00,5, 0x888ae20,5, 0x888ae40,5, 0x888ae60,5, 0x888ae80,5, 0x888aea0,5, 0x888aec0,5, 0x888aee0,5, 0x888af00,5, 0x888af20,5, 0x888af40,5, 0x888b000,5, 0x888b020,5, 0x888b040,5, 0x888b060,5, 0x888b080,5, 0x888b0a0,5, 0x888b0c0,5, 0x888b0e0,5, 0x888b100,5, 0x888b120,5, 0x888b140,5, 0x888b200,5, 0x888b220,5, 0x888b240,5, 0x888b260,5, 0x888b280,5, 0x888b2a0,5, 0x888b2c0,5, 0x888b2e0,5, 0x888b300,5, 0x888b320,5, 0x888b340,5, 0x888b400,5, 0x888b420,5, 0x888b440,5, 0x888b460,5, 0x888b480,5, 0x888b4a0,5, 0x888b4c0,5, 0x888b4e0,5, 0x888b500,5, 0x888b520,5, 0x888b540,5, 0x888b600,5, 0x888b620,5, 0x888b640,5, 0x888b660,5, 0x888b680,5, 0x888b6a0,5, 0x888b6c0,5, 0x888b6e0,5, 0x888b700,5, 0x888b720,5, 0x888b740,5, 0x888b800,5, 0x888b820,5, 0x888b840,5, 0x888b860,5, 0x888b880,5, 0x888b8a0,5, 0x888b8c0,5, 0x888b8e0,5, 0x888b900,5, 0x888b920,5, 0x888b940,5, 0x888ba00,5, 0x888ba20,5, 0x888ba40,5, 0x888ba60,5, 0x888ba80,5, 0x888baa0,5, 0x888bac0,5, 0x888bae0,5, 0x888bb00,5, 0x888bb20,5, 0x888bb40,5, 0x888bc00,5, 0x888bc20,5, 0x888bc40,5, 0x888bc60,5, 0x888bc80,5, 0x888bca0,5, 0x888bcc0,5, 0x888bce0,5, 0x888bd00,5, 0x888bd20,5, 0x888bd40,5, 0x888be00,5, 0x888be20,5, 0x888be40,5, 0x888be60,5, 0x888be80,5, 0x888bea0,5, 0x888bec0,5, 0x888bee0,5, 0x888bf00,5, 0x888bf20,5, 0x888bf40,5, 0x888c000,5, 0x888c020,5, 0x888c040,5, 0x888c060,5, 0x888c080,5, 0x888c0a0,5, 0x888c0c0,5, 0x888c0e0,5, 0x888c100,5, 0x888c120,5, 0x888c140,5, 0x888c200,5, 0x888c220,5, 0x888c240,5, 0x888c260,5, 0x888c280,5, 0x888c2a0,5, 0x888c2c0,5, 0x888c2e0,5, 0x888c300,5, 0x888c320,5, 0x888c340,5, 0x888c400,5, 0x888c420,5, 0x888c440,5, 0x888c460,5, 0x888c480,5, 0x888c4a0,5, 0x888c4c0,5, 0x888c4e0,5, 0x888c500,5, 0x888c520,5, 0x888c540,5, 0x888c600,5, 0x888c620,5, 0x888c640,5, 0x888c660,5, 0x888c680,5, 0x888c6a0,5, 0x888c6c0,5, 0x888c6e0,5, 0x888c700,5, 0x888c720,5, 0x888c740,5, 0x888c800,5, 0x888c820,5, 0x888c840,5, 0x888c860,5, 0x888c880,5, 0x888c8a0,5, 0x888c8c0,5, 0x888c8e0,5, 0x888c900,5, 0x888c920,5, 0x888c940,5, 0x888ca00,5, 0x888ca20,5, 0x888ca40,5, 0x888ca60,5, 0x888ca80,5, 0x888caa0,5, 0x888cac0,5, 0x888cae0,5, 0x888cb00,5, 0x888cb20,5, 0x888cb40,5, 0x888cc00,5, 0x888cc20,5, 0x888cc40,5, 0x888cc60,5, 0x888cc80,5, 0x888cca0,5, 0x888ccc0,5, 0x888cce0,5, 0x888cd00,5, 0x888cd20,5, 0x888cd40,5, 0x888ce00,5, 0x888ce20,5, 0x888ce40,5, 0x888ce60,5, 0x888ce80,5, 0x888cea0,5, 0x888cec0,5, 0x888cee0,5, 0x888cf00,5, 0x888cf20,5, 0x888cf40,5, 0x888d000,5, 0x888d020,5, 0x888d040,5, 0x888d060,5, 0x888d080,5, 0x888d0a0,5, 0x888d0c0,5, 0x888d0e0,5, 0x888d100,5, 0x888d120,5, 0x888d140,5, 0x888d200,5, 0x888d220,5, 0x888d240,5, 0x888d260,5, 0x888d280,5, 0x888d2a0,5, 0x888d2c0,5, 0x888d2e0,5, 0x888d300,5, 0x888d320,5, 0x888d340,5, 0x888d400,5, 0x888d420,5, 0x888d440,5, 0x888d460,5, 0x888d480,5, 0x888d4a0,5, 0x888d4c0,5, 0x888d4e0,5, 0x888d500,5, 0x888d520,5, 0x888d540,5, 0x888d600,5, 0x888d620,5, 0x888d640,5, 0x888d660,5, 0x888d680,5, 0x888d6a0,5, 0x888d6c0,5, 0x888d6e0,5, 0x888d700,5, 0x888d720,5, 0x888d740,5, 0x888d800,5, 0x888d820,5, 0x888d840,5, 0x888d860,5, 0x888d880,5, 0x888d8a0,5, 0x888d8c0,5, 0x888d8e0,5, 0x888d900,5, 0x888d920,5, 0x888d940,5, 0x888da00,5, 0x888da20,5, 0x888da40,5, 0x888da60,5, 0x888da80,5, 0x888daa0,5, 0x888dac0,5, 0x888dae0,5, 0x888db00,5, 0x888db20,5, 0x888db40,5, 0x888dc00,5, 0x888dc20,5, 0x888dc40,5, 0x888dc60,5, 0x888dc80,5, 0x888dca0,5, 0x888dcc0,5, 0x888dce0,5, 0x888dd00,5, 0x888dd20,5, 0x888dd40,5, 0x888de00,5, 0x888de20,5, 0x888de40,5, 0x888de60,5, 0x888de80,5, 0x888dea0,5, 0x888dec0,5, 0x888dee0,5, 0x888df00,5, 0x888df20,5, 0x888df40,5, 0x888e000,5, 0x888e020,5, 0x888e040,5, 0x888e060,5, 0x888e080,5, 0x888e0a0,5, 0x888e0c0,5, 0x888e0e0,5, 0x888e100,5, 0x888e120,5, 0x888e140,5, 0x888e200,5, 0x888e220,5, 0x888e240,5, 0x888e260,5, 0x888e280,5, 0x888e2a0,5, 0x888e2c0,5, 0x888e2e0,5, 0x888e300,5, 0x888e320,5, 0x888e340,5, 0x888e400,5, 0x888e420,5, 0x888e440,5, 0x888e460,5, 0x888e480,5, 0x888e4a0,5, 0x888e4c0,5, 0x888e4e0,5, 0x888e500,5, 0x888e520,5, 0x888e540,5, 0x888e600,5, 0x888e620,5, 0x888e640,5, 0x888e660,5, 0x888e680,5, 0x888e6a0,5, 0x888e6c0,5, 0x888e6e0,5, 0x888e700,5, 0x888e720,5, 0x888e740,5, 0x888e800,5, 0x888e820,5, 0x888e840,5, 0x888e860,5, 0x888e880,5, 0x888e8a0,5, 0x888e8c0,5, 0x888e8e0,5, 0x888e900,5, 0x888e920,5, 0x888e940,5, 0x888ea00,5, 0x888ea20,5, 0x888ea40,5, 0x888ea60,5, 0x888ea80,5, 0x888eaa0,5, 0x888eac0,5, 0x888eae0,5, 0x888eb00,5, 0x888eb20,5, 0x888eb40,5, 0x888ec00,5, 0x888ec20,5, 0x888ec40,5, 0x888ec60,5, 0x888ec80,5, 0x888eca0,5, 0x888ecc0,5, 0x888ece0,5, 0x888ed00,5, 0x888ed20,5, 0x888ed40,5, 0x888ee00,5, 0x888ee20,5, 0x888ee40,5, 0x888ee60,5, 0x888ee80,5, 0x888eea0,5, 0x888eec0,5, 0x888eee0,5, 0x888ef00,5, 0x888ef20,5, 0x888ef40,5, 0x888f000,5, 0x888f020,5, 0x888f040,5, 0x888f060,5, 0x888f080,5, 0x888f0a0,5, 0x888f0c0,5, 0x888f0e0,5, 0x888f100,5, 0x888f120,5, 0x888f140,5, 0x888f200,5, 0x888f220,5, 0x888f240,5, 0x888f260,5, 0x888f280,5, 0x888f2a0,5, 0x888f2c0,5, 0x888f2e0,5, 0x888f300,5, 0x888f320,5, 0x888f340,5, 0x888f400,5, 0x888f420,5, 0x888f440,5, 0x888f460,5, 0x888f480,5, 0x888f4a0,5, 0x888f4c0,5, 0x888f4e0,5, 0x888f500,5, 0x888f520,5, 0x888f540,5, 0x888f600,5, 0x888f620,5, 0x888f640,5, 0x888f660,5, 0x888f680,5, 0x888f6a0,5, 0x888f6c0,5, 0x888f6e0,5, 0x888f700,5, 0x888f720,5, 0x888f740,5, 0x888f800,5, 0x888f820,5, 0x888f840,5, 0x888f860,5, 0x888f880,5, 0x888f8a0,5, 0x888f8c0,5, 0x888f8e0,5, 0x888f900,5, 0x888f920,5, 0x888f940,5, 0x888fa00,5, 0x888fa20,5, 0x888fa40,5, 0x888fa60,5, 0x888fa80,5, 0x888faa0,5, 0x888fac0,5, 0x888fae0,5, 0x888fb00,5, 0x888fb20,5, 0x888fb40,5, 0x888fc00,5, 0x888fc20,5, 0x888fc40,5, 0x888fc60,5, 0x888fc80,5, 0x888fca0,5, 0x888fcc0,5, 0x888fce0,5, 0x888fd00,5, 0x888fd20,5, 0x888fd40,5, 0x888fe00,5, 0x888fe20,5, 0x888fe40,5, 0x888fe60,5, 0x888fe80,5, 0x888fea0,5, 0x888fec0,5, 0x888fee0,5, 0x888ff00,5, 0x888ff20,5, 0x888ff40,5, 0x8890000,5, 0x8890020,5, 0x8890040,5, 0x8890060,5, 0x8890080,5, 0x88900a0,5, 0x88900c0,5, 0x88900e0,5, 0x8890100,5, 0x8890120,5, 0x8890140,5, 0x8890200,5, 0x8890220,5, 0x8890240,5, 0x8890260,5, 0x8890280,5, 0x88902a0,5, 0x88902c0,5, 0x88902e0,5, 0x8890300,5, 0x8890320,5, 0x8890340,5, 0x8890400,5, 0x8890420,5, 0x8890440,5, 0x8890460,5, 0x8890480,5, 0x88904a0,5, 0x88904c0,5, 0x88904e0,5, 0x8890500,5, 0x8890520,5, 0x8890540,5, 0x8890600,5, 0x8890620,5, 0x8890640,5, 0x8890660,5, 0x8890680,5, 0x88906a0,5, 0x88906c0,5, 0x88906e0,5, 0x8890700,5, 0x8890720,5, 0x8890740,5, 0x8890800,5, 0x8890820,5, 0x8890840,5, 0x8890860,5, 0x8890880,5, 0x88908a0,5, 0x88908c0,5, 0x88908e0,5, 0x8890900,5, 0x8890920,5, 0x8890940,5, 0x8890a00,5, 0x8890a20,5, 0x8890a40,5, 0x8890a60,5, 0x8890a80,5, 0x8890aa0,5, 0x8890ac0,5, 0x8890ae0,5, 0x8890b00,5, 0x8890b20,5, 0x8890b40,5, 0x8890c00,5, 0x8890c20,5, 0x8890c40,5, 0x8890c60,5, 0x8890c80,5, 0x8890ca0,5, 0x8890cc0,5, 0x8890ce0,5, 0x8890d00,5, 0x8890d20,5, 0x8890d40,5, 0x8890e00,5, 0x8890e20,5, 0x8890e40,5, 0x8890e60,5, 0x8890e80,5, 0x8890ea0,5, 0x8890ec0,5, 0x8890ee0,5, 0x8890f00,5, 0x8890f20,5, 0x8890f40,5, 0x8891000,5, 0x8891020,5, 0x8891040,5, 0x8891060,5, 0x8891080,5, 0x88910a0,5, 0x88910c0,5, 0x88910e0,5, 0x8891100,5, 0x8891120,5, 0x8891140,5, 0x8891200,5, 0x8891220,5, 0x8891240,5, 0x8891260,5, 0x8891280,5, 0x88912a0,5, 0x88912c0,5, 0x88912e0,5, 0x8891300,5, 0x8891320,5, 0x8891340,5, 0x8891400,5, 0x8891420,5, 0x8891440,5, 0x8891460,5, 0x8891480,5, 0x88914a0,5, 0x88914c0,5, 0x88914e0,5, 0x8891500,5, 0x8891520,5, 0x8891540,5, 0x8891600,5, 0x8891620,5, 0x8891640,5, 0x8891660,5, 0x8891680,5, 0x88916a0,5, 0x88916c0,5, 0x88916e0,5, 0x8891700,5, 0x8891720,5, 0x8891740,5, 0x8891800,5, 0x8891820,5, 0x8891840,5, 0x8891860,5, 0x8891880,5, 0x88918a0,5, 0x88918c0,5, 0x88918e0,5, 0x8891900,5, 0x8891920,5, 0x8891940,5, 0x8891a00,5, 0x8891a20,5, 0x8891a40,5, 0x8891a60,5, 0x8891a80,5, 0x8891aa0,5, 0x8891ac0,5, 0x8891ae0,5, 0x8891b00,5, 0x8891b20,5, 0x8891b40,5, 0x8891c00,5, 0x8891c20,5, 0x8891c40,5, 0x8891c60,5, 0x8891c80,5, 0x8891ca0,5, 0x8891cc0,5, 0x8891ce0,5, 0x8891d00,5, 0x8891d20,5, 0x8891d40,5, 0x8891e00,5, 0x8891e20,5, 0x8891e40,5, 0x8891e60,5, 0x8891e80,5, 0x8891ea0,5, 0x8891ec0,5, 0x8891ee0,5, 0x8891f00,5, 0x8891f20,5, 0x8891f40,5, 0x8892000,5, 0x8892020,5, 0x8892040,5, 0x8892060,5, 0x8892080,5, 0x88920a0,5, 0x88920c0,5, 0x88920e0,5, 0x8892100,5, 0x8892120,5, 0x8892140,5, 0x8892200,5, 0x8892220,5, 0x8892240,5, 0x8892260,5, 0x8892280,5, 0x88922a0,5, 0x88922c0,5, 0x88922e0,5, 0x8892300,5, 0x8892320,5, 0x8892340,5, 0x8892400,5, 0x8892420,5, 0x8892440,5, 0x8892460,5, 0x8892480,5, 0x88924a0,5, 0x88924c0,5, 0x88924e0,5, 0x8892500,5, 0x8892520,5, 0x8892540,5, 0x8892600,5, 0x8892620,5, 0x8892640,5, 0x8892660,5, 0x8892680,5, 0x88926a0,5, 0x88926c0,5, 0x88926e0,5, 0x8892700,5, 0x8892720,5, 0x8892740,5, 0x8892800,5, 0x8892820,5, 0x8892840,5, 0x8892860,5, 0x8892880,5, 0x88928a0,5, 0x88928c0,5, 0x88928e0,5, 0x8892900,5, 0x8892920,5, 0x8892940,5, 0x8892a00,5, 0x8892a20,5, 0x8892a40,5, 0x8892a60,5, 0x8892a80,5, 0x8892aa0,5, 0x8892ac0,5, 0x8892ae0,5, 0x8892b00,5, 0x8892b20,5, 0x8892b40,5, 0x8892c00,5, 0x8892c20,5, 0x8892c40,5, 0x8892c60,5, 0x8892c80,5, 0x8892ca0,5, 0x8892cc0,5, 0x8892ce0,5, 0x8892d00,5, 0x8892d20,5, 0x8892d40,5, 0x8892e00,5, 0x8892e20,5, 0x8892e40,5, 0x8892e60,5, 0x8892e80,5, 0x8892ea0,5, 0x8892ec0,5, 0x8892ee0,5, 0x8892f00,5, 0x8892f20,5, 0x8892f40,5, 0x8893000,5, 0x8893020,5, 0x8893040,5, 0x8893060,5, 0x8893080,5, 0x88930a0,5, 0x88930c0,5, 0x88930e0,5, 0x8893100,5, 0x8893120,5, 0x8893140,5, 0x8893200,5, 0x8893220,5, 0x8893240,5, 0x8893260,5, 0x8893280,5, 0x88932a0,5, 0x88932c0,5, 0x88932e0,5, 0x8893300,5, 0x8893320,5, 0x8893340,5, 0x8893400,5, 0x8893420,5, 0x8893440,5, 0x8893460,5, 0x8893480,5, 0x88934a0,5, 0x88934c0,5, 0x88934e0,5, 0x8893500,5, 0x8893520,5, 0x8893540,5, 0x8893600,5, 0x8893620,5, 0x8893640,5, 0x8893660,5, 0x8893680,5, 0x88936a0,5, 0x88936c0,5, 0x88936e0,5, 0x8893700,5, 0x8893720,5, 0x8893740,5, 0x8893800,5, 0x8893820,5, 0x8893840,5, 0x8893860,5, 0x8893880,5, 0x88938a0,5, 0x88938c0,5, 0x88938e0,5, 0x8893900,5, 0x8893920,5, 0x8893940,5, 0x8893a00,5, 0x8893a20,5, 0x8893a40,5, 0x8893a60,5, 0x8893a80,5, 0x8893aa0,5, 0x8893ac0,5, 0x8893ae0,5, 0x8893b00,5, 0x8893b20,5, 0x8893b40,5, 0x8893c00,5, 0x8893c20,5, 0x8893c40,5, 0x8893c60,5, 0x8893c80,5, 0x8893ca0,5, 0x8893cc0,5, 0x8893ce0,5, 0x8893d00,5, 0x8893d20,5, 0x8893d40,5, 0x8893e00,5, 0x8893e20,5, 0x8893e40,5, 0x8893e60,5, 0x8893e80,5, 0x8893ea0,5, 0x8893ec0,5, 0x8893ee0,5, 0x8893f00,5, 0x8893f20,5, 0x8893f40,5, 0x8894000,5, 0x8894020,5, 0x8894040,5, 0x8894060,5, 0x8894080,5, 0x88940a0,5, 0x88940c0,5, 0x88940e0,5, 0x8894100,5, 0x8894120,5, 0x8894140,5, 0x8894200,5, 0x8894220,5, 0x8894240,5, 0x8894260,5, 0x8894280,5, 0x88942a0,5, 0x88942c0,5, 0x88942e0,5, 0x8894300,5, 0x8894320,5, 0x8894340,5, 0x8894400,5, 0x8894420,5, 0x8894440,5, 0x8894460,5, 0x8894480,5, 0x88944a0,5, 0x88944c0,5, 0x88944e0,5, 0x8894500,5, 0x8894520,5, 0x8894540,5, 0x8894600,5, 0x8894620,5, 0x8894640,5, 0x8894660,5, 0x8894680,5, 0x88946a0,5, 0x88946c0,5, 0x88946e0,5, 0x8894700,5, 0x8894720,5, 0x8894740,5, 0x8894800,5, 0x8894820,5, 0x8894840,5, 0x8894860,5, 0x8894880,5, 0x88948a0,5, 0x88948c0,5, 0x88948e0,5, 0x8894900,5, 0x8894920,5, 0x8894940,5, 0x8894a00,5, 0x8894a20,5, 0x8894a40,5, 0x8894a60,5, 0x8894a80,5, 0x8894aa0,5, 0x8894ac0,5, 0x8894ae0,5, 0x8894b00,5, 0x8894b20,5, 0x8894b40,5, 0x8894c00,5, 0x8894c20,5, 0x8894c40,5, 0x8894c60,5, 0x8894c80,5, 0x8894ca0,5, 0x8894cc0,5, 0x8894ce0,5, 0x8894d00,5, 0x8894d20,5, 0x8894d40,5, 0x8894e00,5, 0x8894e20,5, 0x8894e40,5, 0x8894e60,5, 0x8894e80,5, 0x8894ea0,5, 0x8894ec0,5, 0x8894ee0,5, 0x8894f00,5, 0x8894f20,5, 0x8894f40,5, 0x8895000,5, 0x8895020,5, 0x8895040,5, 0x8895060,5, 0x8895080,5, 0x88950a0,5, 0x88950c0,5, 0x88950e0,5, 0x8895100,5, 0x8895120,5, 0x8895140,5, 0x8895200,5, 0x8895220,5, 0x8895240,5, 0x8895260,5, 0x8895280,5, 0x88952a0,5, 0x88952c0,5, 0x88952e0,5, 0x8895300,5, 0x8895320,5, 0x8895340,5, 0x8895400,5, 0x8895420,5, 0x8895440,5, 0x8895460,5, 0x8895480,5, 0x88954a0,5, 0x88954c0,5, 0x88954e0,5, 0x8895500,5, 0x8895520,5, 0x8895540,5, 0x8895600,5, 0x8895620,5, 0x8895640,5, 0x8895660,5, 0x8895680,5, 0x88956a0,5, 0x88956c0,5, 0x88956e0,5, 0x8895700,5, 0x8895720,5, 0x8895740,5, 0x8895800,5, 0x8895820,5, 0x8895840,5, 0x8895860,5, 0x8895880,5, 0x88958a0,5, 0x88958c0,5, 0x88958e0,5, 0x8895900,5, 0x8895920,5, 0x8895940,5, 0x8895a00,5, 0x8895a20,5, 0x8895a40,5, 0x8895a60,5, 0x8895a80,5, 0x8895aa0,5, 0x8895ac0,5, 0x8895ae0,5, 0x8895b00,5, 0x8895b20,5, 0x8895b40,5, 0x8895c00,5, 0x8895c20,5, 0x8895c40,5, 0x8895c60,5, 0x8895c80,5, 0x8895ca0,5, 0x8895cc0,5, 0x8895ce0,5, 0x8895d00,5, 0x8895d20,5, 0x8895d40,5, 0x8895e00,5, 0x8895e20,5, 0x8895e40,5, 0x8895e60,5, 0x8895e80,5, 0x8895ea0,5, 0x8895ec0,5, 0x8895ee0,5, 0x8895f00,5, 0x8895f20,5, 0x8895f40,5, 0x8896000,5, 0x8896020,5, 0x8896040,5, 0x8896060,5, 0x8896080,5, 0x88960a0,5, 0x88960c0,5, 0x88960e0,5, 0x8896100,5, 0x8896120,5, 0x8896140,5, 0x8896200,5, 0x8896220,5, 0x8896240,5, 0x8896260,5, 0x8896280,5, 0x88962a0,5, 0x88962c0,5, 0x88962e0,5, 0x8896300,5, 0x8896320,5, 0x8896340,5, 0x8896400,5, 0x8896420,5, 0x8896440,5, 0x8896460,5, 0x8896480,5, 0x88964a0,5, 0x88964c0,5, 0x88964e0,5, 0x8896500,5, 0x8896520,5, 0x8896540,5, 0x8896600,5, 0x8896620,5, 0x8896640,5, 0x8896660,5, 0x8896680,5, 0x88966a0,5, 0x88966c0,5, 0x88966e0,5, 0x8896700,5, 0x8896720,5, 0x8896740,5, 0x8896800,5, 0x8896820,5, 0x8896840,5, 0x8896860,5, 0x8896880,5, 0x88968a0,5, 0x88968c0,5, 0x88968e0,5, 0x8896900,5, 0x8896920,5, 0x8896940,5, 0x8896a00,5, 0x8896a20,5, 0x8896a40,5, 0x8896a60,5, 0x8896a80,5, 0x8896aa0,5, 0x8896ac0,5, 0x8896ae0,5, 0x8896b00,5, 0x8896b20,5, 0x8896b40,5, 0x8896c00,5, 0x8896c20,5, 0x8896c40,5, 0x8896c60,5, 0x8896c80,5, 0x8896ca0,5, 0x8896cc0,5, 0x8896ce0,5, 0x8896d00,5, 0x8896d20,5, 0x8896d40,5, 0x8896e00,5, 0x8896e20,5, 0x8896e40,5, 0x8896e60,5, 0x8896e80,5, 0x8896ea0,5, 0x8896ec0,5, 0x8896ee0,5, 0x8896f00,5, 0x8896f20,5, 0x8896f40,5, 0x8897000,5, 0x8897020,5, 0x8897040,5, 0x8897060,5, 0x8897080,5, 0x88970a0,5, 0x88970c0,5, 0x88970e0,5, 0x8897100,5, 0x8897120,5, 0x8897140,5, 0x8897200,5, 0x8897220,5, 0x8897240,5, 0x8897260,5, 0x8897280,5, 0x88972a0,5, 0x88972c0,5, 0x88972e0,5, 0x8897300,5, 0x8897320,5, 0x8897340,5, 0x8897400,5, 0x8897420,5, 0x8897440,5, 0x8897460,5, 0x8897480,5, 0x88974a0,5, 0x88974c0,5, 0x88974e0,5, 0x8897500,5, 0x8897520,5, 0x8897540,5, 0x8897600,5, 0x8897620,5, 0x8897640,5, 0x8897660,5, 0x8897680,5, 0x88976a0,5, 0x88976c0,5, 0x88976e0,5, 0x8897700,5, 0x8897720,5, 0x8897740,5, 0x8897800,5, 0x8897820,5, 0x8897840,5, 0x8897860,5, 0x8897880,5, 0x88978a0,5, 0x88978c0,5, 0x88978e0,5, 0x8897900,5, 0x8897920,5, 0x8897940,5, 0x8897a00,5, 0x8897a20,5, 0x8897a40,5, 0x8897a60,5, 0x8897a80,5, 0x8897aa0,5, 0x8897ac0,5, 0x8897ae0,5, 0x8897b00,5, 0x8897b20,5, 0x8897b40,5, 0x8897c00,5, 0x8897c20,5, 0x8897c40,5, 0x8897c60,5, 0x8897c80,5, 0x8897ca0,5, 0x8897cc0,5, 0x8897ce0,5, 0x8897d00,5, 0x8897d20,5, 0x8897d40,5, 0x8897e00,5, 0x8897e20,5, 0x8897e40,5, 0x8897e60,5, 0x8897e80,5, 0x8897ea0,5, 0x8897ec0,5, 0x8897ee0,5, 0x8897f00,5, 0x8897f20,5, 0x8897f40,5, 0x8898000,5, 0x8898020,5, 0x8898040,5, 0x8898060,5, 0x8898080,5, 0x88980a0,5, 0x88980c0,5, 0x88980e0,5, 0x8898100,5, 0x8898120,5, 0x8898140,5, 0x8898200,5, 0x8898220,5, 0x8898240,5, 0x8898260,5, 0x8898280,5, 0x88982a0,5, 0x88982c0,5, 0x88982e0,5, 0x8898300,5, 0x8898320,5, 0x8898340,5, 0x8898400,5, 0x8898420,5, 0x8898440,5, 0x8898460,5, 0x8898480,5, 0x88984a0,5, 0x88984c0,5, 0x88984e0,5, 0x8898500,5, 0x8898520,5, 0x8898540,5, 0x8898600,5, 0x8898620,5, 0x8898640,5, 0x8898660,5, 0x8898680,5, 0x88986a0,5, 0x88986c0,5, 0x88986e0,5, 0x8898700,5, 0x8898720,5, 0x8898740,5, 0x8898800,5, 0x8898820,5, 0x8898840,5, 0x8898860,5, 0x8898880,5, 0x88988a0,5, 0x88988c0,5, 0x88988e0,5, 0x8898900,5, 0x8898920,5, 0x8898940,5, 0x8898a00,5, 0x8898a20,5, 0x8898a40,5, 0x8898a60,5, 0x8898a80,5, 0x8898aa0,5, 0x8898ac0,5, 0x8898ae0,5, 0x8898b00,5, 0x8898b20,5, 0x8898b40,5, 0x8898c00,5, 0x8898c20,5, 0x8898c40,5, 0x8898c60,5, 0x8898c80,5, 0x8898ca0,5, 0x8898cc0,5, 0x8898ce0,5, 0x8898d00,5, 0x8898d20,5, 0x8898d40,5, 0x8898e00,5, 0x8898e20,5, 0x8898e40,5, 0x8898e60,5, 0x8898e80,5, 0x8898ea0,5, 0x8898ec0,5, 0x8898ee0,5, 0x8898f00,5, 0x8898f20,5, 0x8898f40,5, 0x8899000,5, 0x8899020,5, 0x8899040,5, 0x8899060,5, 0x8899080,5, 0x88990a0,5, 0x88990c0,5, 0x88990e0,5, 0x8899100,5, 0x8899120,5, 0x8899140,5, 0x8899200,5, 0x8899220,5, 0x8899240,5, 0x8899260,5, 0x8899280,5, 0x88992a0,5, 0x88992c0,5, 0x88992e0,5, 0x8899300,5, 0x8899320,5, 0x8899340,5, 0x8899400,5, 0x8899420,5, 0x8899440,5, 0x8899460,5, 0x8899480,5, 0x88994a0,5, 0x88994c0,5, 0x88994e0,5, 0x8899500,5, 0x8899520,5, 0x8899540,5, 0x8899600,5, 0x8899620,5, 0x8899640,5, 0x8899660,5, 0x8899680,5, 0x88996a0,5, 0x88996c0,5, 0x88996e0,5, 0x8899700,5, 0x8899720,5, 0x8899740,5, 0x8899800,5, 0x8899820,5, 0x8899840,5, 0x8899860,5, 0x8899880,5, 0x88998a0,5, 0x88998c0,5, 0x88998e0,5, 0x8899900,5, 0x8899920,5, 0x8899940,5, 0x8899a00,5, 0x8899a20,5, 0x8899a40,5, 0x8899a60,5, 0x8899a80,5, 0x8899aa0,5, 0x8899ac0,5, 0x8899ae0,5, 0x8899b00,5, 0x8899b20,5, 0x8899b40,5, 0x8899c00,5, 0x8899c20,5, 0x8899c40,5, 0x8899c60,5, 0x8899c80,5, 0x8899ca0,5, 0x8899cc0,5, 0x8899ce0,5, 0x8899d00,5, 0x8899d20,5, 0x8899d40,5, 0x8899e00,5, 0x8899e20,5, 0x8899e40,5, 0x8899e60,5, 0x8899e80,5, 0x8899ea0,5, 0x8899ec0,5, 0x8899ee0,5, 0x8899f00,5, 0x8899f20,5, 0x8899f40,5, 0x889a000,5, 0x889a020,5, 0x889a040,5, 0x889a060,5, 0x889a080,5, 0x889a0a0,5, 0x889a0c0,5, 0x889a0e0,5, 0x889a100,5, 0x889a120,5, 0x889a140,5, 0x889a200,5, 0x889a220,5, 0x889a240,5, 0x889a260,5, 0x889a280,5, 0x889a2a0,5, 0x889a2c0,5, 0x889a2e0,5, 0x889a300,5, 0x889a320,5, 0x889a340,5, 0x889a400,5, 0x889a420,5, 0x889a440,5, 0x889a460,5, 0x889a480,5, 0x889a4a0,5, 0x889a4c0,5, 0x889a4e0,5, 0x889a500,5, 0x889a520,5, 0x889a540,5, 0x889a600,5, 0x889a620,5, 0x889a640,5, 0x889a660,5, 0x889a680,5, 0x889a6a0,5, 0x889a6c0,5, 0x889a6e0,5, 0x889a700,5, 0x889a720,5, 0x889a740,5, 0x889a800,5, 0x889a820,5, 0x889a840,5, 0x889a860,5, 0x889a880,5, 0x889a8a0,5, 0x889a8c0,5, 0x889a8e0,5, 0x889a900,5, 0x889a920,5, 0x889a940,5, 0x889aa00,5, 0x889aa20,5, 0x889aa40,5, 0x889aa60,5, 0x889aa80,5, 0x889aaa0,5, 0x889aac0,5, 0x889aae0,5, 0x889ab00,5, 0x889ab20,5, 0x889ab40,5, 0x889ac00,5, 0x889ac20,5, 0x889ac40,5, 0x889ac60,5, 0x889ac80,5, 0x889aca0,5, 0x889acc0,5, 0x889ace0,5, 0x889ad00,5, 0x889ad20,5, 0x889ad40,5, 0x889ae00,5, 0x889ae20,5, 0x889ae40,5, 0x889ae60,5, 0x889ae80,5, 0x889aea0,5, 0x889aec0,5, 0x889aee0,5, 0x889af00,5, 0x889af20,5, 0x889af40,5, 0x889b000,5, 0x889b020,5, 0x889b040,5, 0x889b060,5, 0x889b080,5, 0x889b0a0,5, 0x889b0c0,5, 0x889b0e0,5, 0x889b100,5, 0x889b120,5, 0x889b140,5, 0x889b200,5, 0x889b220,5, 0x889b240,5, 0x889b260,5, 0x889b280,5, 0x889b2a0,5, 0x889b2c0,5, 0x889b2e0,5, 0x889b300,5, 0x889b320,5, 0x889b340,5, 0x889b400,5, 0x889b420,5, 0x889b440,5, 0x889b460,5, 0x889b480,5, 0x889b4a0,5, 0x889b4c0,5, 0x889b4e0,5, 0x889b500,5, 0x889b520,5, 0x889b540,5, 0x889b600,5, 0x889b620,5, 0x889b640,5, 0x889b660,5, 0x889b680,5, 0x889b6a0,5, 0x889b6c0,5, 0x889b6e0,5, 0x889b700,5, 0x889b720,5, 0x889b740,5, 0x889b800,5, 0x889b820,5, 0x889b840,5, 0x889b860,5, 0x889b880,5, 0x889b8a0,5, 0x889b8c0,5, 0x889b8e0,5, 0x889b900,5, 0x889b920,5, 0x889b940,5, 0x889ba00,5, 0x889ba20,5, 0x889ba40,5, 0x889ba60,5, 0x889ba80,5, 0x889baa0,5, 0x889bac0,5, 0x889bae0,5, 0x889bb00,5, 0x889bb20,5, 0x889bb40,5, 0x889bc00,5, 0x889bc20,5, 0x889bc40,5, 0x889bc60,5, 0x889bc80,5, 0x889bca0,5, 0x889bcc0,5, 0x889bce0,5, 0x889bd00,5, 0x889bd20,5, 0x889bd40,5, 0x889be00,5, 0x889be20,5, 0x889be40,5, 0x889be60,5, 0x889be80,5, 0x889bea0,5, 0x889bec0,5, 0x889bee0,5, 0x889bf00,5, 0x889bf20,5, 0x889bf40,5, 0x889c000,5, 0x889c020,5, 0x889c040,5, 0x889c060,5, 0x889c080,5, 0x889c0a0,5, 0x889c0c0,5, 0x889c0e0,5, 0x889c100,5, 0x889c120,5, 0x889c140,5, 0x889c200,5, 0x889c220,5, 0x889c240,5, 0x889c260,5, 0x889c280,5, 0x889c2a0,5, 0x889c2c0,5, 0x889c2e0,5, 0x889c300,5, 0x889c320,5, 0x889c340,5, 0x889c400,5, 0x889c420,5, 0x889c440,5, 0x889c460,5, 0x889c480,5, 0x889c4a0,5, 0x889c4c0,5, 0x889c4e0,5, 0x889c500,5, 0x889c520,5, 0x889c540,5, 0x889c600,5, 0x889c620,5, 0x889c640,5, 0x889c660,5, 0x889c680,5, 0x889c6a0,5, 0x889c6c0,5, 0x889c6e0,5, 0x889c700,5, 0x889c720,5, 0x889c740,5, 0x889c800,5, 0x889c820,5, 0x889c840,5, 0x889c860,5, 0x889c880,5, 0x889c8a0,5, 0x889c8c0,5, 0x889c8e0,5, 0x889c900,5, 0x889c920,5, 0x889c940,5, 0x889ca00,5, 0x889ca20,5, 0x889ca40,5, 0x889ca60,5, 0x889ca80,5, 0x889caa0,5, 0x889cac0,5, 0x889cae0,5, 0x889cb00,5, 0x889cb20,5, 0x889cb40,5, 0x889cc00,5, 0x889cc20,5, 0x889cc40,5, 0x889cc60,5, 0x889cc80,5, 0x889cca0,5, 0x889ccc0,5, 0x889cce0,5, 0x889cd00,5, 0x889cd20,5, 0x889cd40,5, 0x889ce00,5, 0x889ce20,5, 0x889ce40,5, 0x889ce60,5, 0x889ce80,5, 0x889cea0,5, 0x889cec0,5, 0x889cee0,5, 0x889cf00,5, 0x889cf20,5, 0x889cf40,5, 0x889d000,5, 0x889d020,5, 0x889d040,5, 0x889d060,5, 0x889d080,5, 0x889d0a0,5, 0x889d0c0,5, 0x889d0e0,5, 0x889d100,5, 0x889d120,5, 0x889d140,5, 0x889d200,5, 0x889d220,5, 0x889d240,5, 0x889d260,5, 0x889d280,5, 0x889d2a0,5, 0x889d2c0,5, 0x889d2e0,5, 0x889d300,5, 0x889d320,5, 0x889d340,5, 0x889d400,5, 0x889d420,5, 0x889d440,5, 0x889d460,5, 0x889d480,5, 0x889d4a0,5, 0x889d4c0,5, 0x889d4e0,5, 0x889d500,5, 0x889d520,5, 0x889d540,5, 0x889d600,5, 0x889d620,5, 0x889d640,5, 0x889d660,5, 0x889d680,5, 0x889d6a0,5, 0x889d6c0,5, 0x889d6e0,5, 0x889d700,5, 0x889d720,5, 0x889d740,5, 0x889d800,5, 0x889d820,5, 0x889d840,5, 0x889d860,5, 0x889d880,5, 0x889d8a0,5, 0x889d8c0,5, 0x889d8e0,5, 0x889d900,5, 0x889d920,5, 0x889d940,5, 0x889da00,5, 0x889da20,5, 0x889da40,5, 0x889da60,5, 0x889da80,5, 0x889daa0,5, 0x889dac0,5, 0x889dae0,5, 0x889db00,5, 0x889db20,5, 0x889db40,5, 0x889dc00,5, 0x889dc20,5, 0x889dc40,5, 0x889dc60,5, 0x889dc80,5, 0x889dca0,5, 0x889dcc0,5, 0x889dce0,5, 0x889dd00,5, 0x889dd20,5, 0x889dd40,5, 0x889de00,5, 0x889de20,5, 0x889de40,5, 0x889de60,5, 0x889de80,5, 0x889dea0,5, 0x889dec0,5, 0x889dee0,5, 0x889df00,5, 0x889df20,5, 0x889df40,5, 0x889e000,5, 0x889e020,5, 0x889e040,5, 0x889e060,5, 0x889e080,5, 0x889e0a0,5, 0x889e0c0,5, 0x889e0e0,5, 0x889e100,5, 0x889e120,5, 0x889e140,5, 0x889e200,5, 0x889e220,5, 0x889e240,5, 0x889e260,5, 0x889e280,5, 0x889e2a0,5, 0x889e2c0,5, 0x889e2e0,5, 0x889e300,5, 0x889e320,5, 0x889e340,5, 0x889e400,5, 0x889e420,5, 0x889e440,5, 0x889e460,5, 0x889e480,5, 0x889e4a0,5, 0x889e4c0,5, 0x889e4e0,5, 0x889e500,5, 0x889e520,5, 0x889e540,5, 0x889e600,5, 0x889e620,5, 0x889e640,5, 0x889e660,5, 0x889e680,5, 0x889e6a0,5, 0x889e6c0,5, 0x889e6e0,5, 0x889e700,5, 0x889e720,5, 0x889e740,5, 0x889e800,5, 0x889e820,5, 0x889e840,5, 0x889e860,5, 0x889e880,5, 0x889e8a0,5, 0x889e8c0,5, 0x889e8e0,5, 0x889e900,5, 0x889e920,5, 0x889e940,5, 0x889ea00,5, 0x889ea20,5, 0x889ea40,5, 0x889ea60,5, 0x889ea80,5, 0x889eaa0,5, 0x889eac0,5, 0x889eae0,5, 0x889eb00,5, 0x889eb20,5, 0x889eb40,5, 0x889ec00,5, 0x889ec20,5, 0x889ec40,5, 0x889ec60,5, 0x889ec80,5, 0x889eca0,5, 0x889ecc0,5, 0x889ece0,5, 0x889ed00,5, 0x889ed20,5, 0x889ed40,5, 0x889ee00,5, 0x889ee20,5, 0x889ee40,5, 0x889ee60,5, 0x889ee80,5, 0x889eea0,5, 0x889eec0,5, 0x889eee0,5, 0x889ef00,5, 0x889ef20,5, 0x889ef40,5, 0x889f000,5, 0x889f020,5, 0x889f040,5, 0x889f060,5, 0x889f080,5, 0x889f0a0,5, 0x889f0c0,5, 0x889f0e0,5, 0x889f100,5, 0x889f120,5, 0x889f140,5, 0x889f200,5, 0x889f220,5, 0x889f240,5, 0x889f260,5, 0x889f280,5, 0x889f2a0,5, 0x889f2c0,5, 0x889f2e0,5, 0x889f300,5, 0x889f320,5, 0x889f340,5, 0x889f400,5, 0x889f420,5, 0x889f440,5, 0x889f460,5, 0x889f480,5, 0x889f4a0,5, 0x889f4c0,5, 0x889f4e0,5, 0x889f500,5, 0x889f520,5, 0x889f540,5, 0x889f600,5, 0x889f620,5, 0x889f640,5, 0x889f660,5, 0x889f680,5, 0x889f6a0,5, 0x889f6c0,5, 0x889f6e0,5, 0x889f700,5, 0x889f720,5, 0x889f740,5, 0x889f800,5, 0x889f820,5, 0x889f840,5, 0x889f860,5, 0x889f880,5, 0x889f8a0,5, 0x889f8c0,5, 0x889f8e0,5, 0x889f900,5, 0x889f920,5, 0x889f940,5, 0x889fa00,5, 0x889fa20,5, 0x889fa40,5, 0x889fa60,5, 0x889fa80,5, 0x889faa0,5, 0x889fac0,5, 0x889fae0,5, 0x889fb00,5, 0x889fb20,5, 0x889fb40,5, 0x889fc00,5, 0x889fc20,5, 0x889fc40,5, 0x889fc60,5, 0x889fc80,5, 0x889fca0,5, 0x889fcc0,5, 0x889fce0,5, 0x889fd00,5, 0x889fd20,5, 0x889fd40,5, 0x889fe00,5, 0x889fe20,5, 0x889fe40,5, 0x889fe60,5, 0x889fe80,5, 0x889fea0,5, 0x889fec0,5, 0x889fee0,5, 0x889ff00,5, 0x889ff20,5, 0x889ff40,5, 0x88a0000,5, 0x88a0020,5, 0x88a0040,5, 0x88a0060,5, 0x88a0080,5, 0x88a00a0,5, 0x88a00c0,5, 0x88a00e0,5, 0x88a0100,5, 0x88a0120,5, 0x88a0140,5, 0x88a0200,5, 0x88a0220,5, 0x88a0240,5, 0x88a0260,5, 0x88a0280,5, 0x88a02a0,5, 0x88a02c0,5, 0x88a02e0,5, 0x88a0300,5, 0x88a0320,5, 0x88a0340,5, 0x88c0000,2, 0x88c0040,9, 0x88c0080,6, 0x88c00a0,6, 0x88c00c0,3, 0x8900000,3, 0x8900010,3, 0x8900020,3, 0x8900030,3, 0x8900040,3, 0x8900050,3, 0x8900060,3, 0x8900070,3, 0x8900080,3, 0x8900090,3, 0x89000a0,3, 0x89000b0,3, 0x89000c0,3, 0x89000d0,3, 0x89000e0,3, 0x89000f0,3, 0x8900100,3, 0x8900110,3, 0x8900120,3, 0x8900130,3, 0x8900140,3, 0x8900150,3, 0x8900160,3, 0x8900170,3, 0x8900180,3, 0x8900190,3, 0x89001a0,3, 0x89001b0,3, 0x89001c0,3, 0x89001d0,3, 0x89001e0,3, 0x89001f0,3, 0x8900200,3, 0x8900210,3, 0x8900220,3, 0x8900230,3, 0x8900240,3, 0x8900250,3, 0x8900260,3, 0x8900270,3, 0x8900280,3, 0x8900290,3, 0x89002a0,3, 0x89002b0,3, 0x89002c0,3, 0x89002d0,3, 0x89002e0,3, 0x89002f0,3, 0x8900300,3, 0x8900310,3, 0x8900320,3, 0x8900330,3, 0x8900340,3, 0x8900350,3, 0x8900360,3, 0x8900370,3, 0x8900380,3, 0x8900390,3, 0x89003a0,3, 0x89003b0,3, 0x89003c0,3, 0x89003d0,3, 0x89003e0,3, 0x89003f0,3, 0x8900400,3, 0x8900410,3, 0x8900420,3, 0x8900430,3, 0x8900440,3, 0x8900450,3, 0x8900460,3, 0x8900470,3, 0x8900480,3, 0x8900490,3, 0x89004a0,3, 0x89004b0,3, 0x89004c0,3, 0x89004d0,3, 0x89004e0,3, 0x89004f0,3, 0x8900500,3, 0x8900510,3, 0x8900520,3, 0x8900530,3, 0x8900540,3, 0x8900550,3, 0x8900560,3, 0x8900570,3, 0x8900580,3, 0x8900590,3, 0x89005a0,3, 0x89005b0,3, 0x89005c0,3, 0x89005d0,3, 0x89005e0,3, 0x89005f0,3, 0x8900600,3, 0x8900610,3, 0x8900620,3, 0x8900630,3, 0x8900640,3, 0x8900650,3, 0x8900660,3, 0x8900670,3, 0x8900680,3, 0x8900690,3, 0x89006a0,3, 0x89006b0,3, 0x89006c0,3, 0x89006d0,3, 0x89006e0,3, 0x89006f0,3, 0x8900700,3, 0x8900710,3, 0x8900720,3, 0x8900730,3, 0x8900740,3, 0x8900750,3, 0x8900760,3, 0x8900770,3, 0x8900780,3, 0x8900790,3, 0x89007a0,3, 0x89007b0,3, 0x89007c0,3, 0x89007d0,3, 0x89007e0,3, 0x89007f0,3, 0x8900800,3, 0x8900810,3, 0x8900820,3, 0x8900830,3, 0x8900840,3, 0x8900850,3, 0x8900860,3, 0x8900870,3, 0x8900880,3, 0x8900890,3, 0x89008a0,3, 0x89008b0,3, 0x89008c0,3, 0x89008d0,3, 0x89008e0,3, 0x89008f0,3, 0x8900900,3, 0x8900910,3, 0x8900920,3, 0x8900930,3, 0x8900940,3, 0x8900950,3, 0x8900960,3, 0x8900970,3, 0x8900980,3, 0x8900990,3, 0x89009a0,3, 0x89009b0,3, 0x89009c0,3, 0x89009d0,3, 0x89009e0,3, 0x89009f0,3, 0x8900a00,3, 0x8900a10,3, 0x8900a20,3, 0x8900a30,3, 0x8900a40,3, 0x8900a50,3, 0x8900a60,3, 0x8900a70,3, 0x8900a80,3, 0x8900a90,3, 0x8900aa0,3, 0x8900ab0,3, 0x8900ac0,3, 0x8900ad0,3, 0x8900ae0,3, 0x8900af0,3, 0x8900b00,3, 0x8900b10,3, 0x8900b20,3, 0x8900b30,3, 0x8900b40,3, 0x8900b50,3, 0x8900b60,3, 0x8900b70,3, 0x8900b80,3, 0x8900b90,3, 0x8900ba0,3, 0x8900bb0,3, 0x8900bc0,3, 0x8900bd0,3, 0x8900be0,3, 0x8900bf0,3, 0x8900c00,3, 0x8900c10,3, 0x8900c20,3, 0x8900c30,3, 0x8900c40,3, 0x8900c50,3, 0x8900c60,3, 0x8900c70,3, 0x8900c80,3, 0x8900c90,3, 0x8900ca0,3, 0x8900cb0,3, 0x8900cc0,3, 0x8900cd0,3, 0x8900ce0,3, 0x8900cf0,3, 0x8900d00,3, 0x8900d10,3, 0x8900d20,3, 0x8900d30,3, 0x8900d40,3, 0x8900d50,3, 0x8900d60,3, 0x8900d70,3, 0x8900d80,3, 0x8900d90,3, 0x8900da0,3, 0x8900db0,3, 0x8900dc0,3, 0x8900dd0,3, 0x8900de0,3, 0x8900df0,3, 0x8900e00,3, 0x8900e10,3, 0x8900e20,3, 0x8900e30,3, 0x8900e40,3, 0x8900e50,3, 0x8900e60,3, 0x8900e70,3, 0x8900e80,3, 0x8900e90,3, 0x8900ea0,3, 0x8900eb0,3, 0x8900ec0,3, 0x8900ed0,3, 0x8900ee0,3, 0x8900ef0,3, 0x8900f00,3, 0x8900f10,3, 0x8900f20,3, 0x8900f30,3, 0x8900f40,3, 0x8900f50,3, 0x8900f60,3, 0x8900f70,3, 0x8900f80,3, 0x8900f90,3, 0x8900fa0,3, 0x8900fb0,3, 0x8900fc0,3, 0x8900fd0,3, 0x8900fe0,3, 0x8900ff0,3, 0x8901000,3, 0x8901010,3, 0x8901020,3, 0x8901030,3, 0x8901040,3, 0x8901050,3, 0x8901060,3, 0x8901070,3, 0x8901080,3, 0x8901090,3, 0x89010a0,3, 0x89010b0,3, 0x89010c0,3, 0x89010d0,3, 0x89010e0,3, 0x89010f0,3, 0x8901100,3, 0x8901110,3, 0x8901120,3, 0x8901130,3, 0x8901140,3, 0x8901150,3, 0x8901160,3, 0x8901170,3, 0x8901180,3, 0x8901190,3, 0x89011a0,3, 0x89011b0,3, 0x89011c0,3, 0x89011d0,3, 0x89011e0,3, 0x89011f0,3, 0x8901200,3, 0x8901210,3, 0x8901220,3, 0x8901230,3, 0x8901240,3, 0x8901250,3, 0x8901260,3, 0x8901270,3, 0x8901280,3, 0x8901290,3, 0x89012a0,3, 0x89012b0,3, 0x89012c0,3, 0x89012d0,3, 0x89012e0,3, 0x89012f0,3, 0x8901300,3, 0x8901310,3, 0x8901320,3, 0x8901330,3, 0x8901340,3, 0x8901350,3, 0x8901360,3, 0x8901370,3, 0x8901380,3, 0x8901390,3, 0x89013a0,3, 0x89013b0,3, 0x89013c0,3, 0x89013d0,3, 0x89013e0,3, 0x89013f0,3, 0x8901400,3, 0x8901410,3, 0x8901420,3, 0x8901430,3, 0x8901440,3, 0x8901450,3, 0x8901460,3, 0x8901470,3, 0x8901480,3, 0x8901490,3, 0x89014a0,3, 0x89014b0,3, 0x89014c0,3, 0x89014d0,3, 0x89014e0,3, 0x89014f0,3, 0x8901500,3, 0x8901510,3, 0x8901520,3, 0x8901530,3, 0x8901540,3, 0x8901550,3, 0x8901560,3, 0x8901570,3, 0x8901580,3, 0x8901590,3, 0x89015a0,3, 0x89015b0,3, 0x89015c0,3, 0x89015d0,3, 0x89015e0,3, 0x89015f0,3, 0x8901600,3, 0x8901610,3, 0x8901620,3, 0x8901630,3, 0x8901640,3, 0x8901650,3, 0x8901660,3, 0x8901670,3, 0x8901680,3, 0x8901690,3, 0x89016a0,3, 0x89016b0,3, 0x89016c0,3, 0x89016d0,3, 0x89016e0,3, 0x89016f0,3, 0x8901700,3, 0x8901710,3, 0x8901720,3, 0x8901730,3, 0x8901740,3, 0x8901750,3, 0x8901760,3, 0x8901770,3, 0x8901780,3, 0x8901790,3, 0x89017a0,3, 0x89017b0,3, 0x89017c0,3, 0x89017d0,3, 0x89017e0,3, 0x89017f0,3, 0x8901800,3, 0x8901810,3, 0x8901820,3, 0x8901830,3, 0x8901840,3, 0x8901850,3, 0x8901860,3, 0x8901870,3, 0x8901880,3, 0x8901890,3, 0x89018a0,3, 0x89018b0,3, 0x89018c0,3, 0x89018d0,3, 0x89018e0,3, 0x89018f0,3, 0x8901900,3, 0x8901910,3, 0x8901920,3, 0x8901930,3, 0x8901940,3, 0x8901950,3, 0x8901960,3, 0x8901970,3, 0x8901980,3, 0x8901990,3, 0x89019a0,3, 0x89019b0,3, 0x89019c0,3, 0x89019d0,3, 0x89019e0,3, 0x89019f0,3, 0x8901a00,3, 0x8901a10,3, 0x8901a20,3, 0x8901a30,3, 0x8901a40,3, 0x8901a50,3, 0x8901a60,3, 0x8901a70,3, 0x8901a80,3, 0x8901a90,3, 0x8901aa0,3, 0x8901ab0,3, 0x8901ac0,3, 0x8901ad0,3, 0x8901ae0,3, 0x8901af0,3, 0x8901b00,3, 0x8901b10,3, 0x8901b20,3, 0x8901b30,3, 0x8901b40,3, 0x8901b50,3, 0x8901b60,3, 0x8901b70,3, 0x8901b80,3, 0x8901b90,3, 0x8901ba0,3, 0x8901bb0,3, 0x8901bc0,3, 0x8901bd0,3, 0x8901be0,3, 0x8901bf0,3, 0x8901c00,3, 0x8901c10,3, 0x8901c20,3, 0x8901c30,3, 0x8901c40,3, 0x8901c50,3, 0x8901c60,3, 0x8901c70,3, 0x8901c80,3, 0x8901c90,3, 0x8901ca0,3, 0x8901cb0,3, 0x8901cc0,3, 0x8901cd0,3, 0x8901ce0,3, 0x8901cf0,3, 0x8901d00,3, 0x8901d10,3, 0x8901d20,3, 0x8901d30,3, 0x8901d40,3, 0x8901d50,3, 0x8901d60,3, 0x8901d70,3, 0x8901d80,3, 0x8901d90,3, 0x8901da0,3, 0x8901db0,3, 0x8901dc0,3, 0x8901dd0,3, 0x8901de0,3, 0x8901df0,3, 0x8901e00,3, 0x8901e10,3, 0x8901e20,3, 0x8901e30,3, 0x8901e40,3, 0x8901e50,3, 0x8901e60,3, 0x8901e70,3, 0x8901e80,3, 0x8901e90,3, 0x8901ea0,3, 0x8901eb0,3, 0x8901ec0,3, 0x8901ed0,3, 0x8901ee0,3, 0x8901ef0,3, 0x8901f00,3, 0x8901f10,3, 0x8901f20,3, 0x8901f30,3, 0x8901f40,3, 0x8901f50,3, 0x8901f60,3, 0x8901f70,3, 0x8901f80,3, 0x8901f90,3, 0x8901fa0,3, 0x8901fb0,3, 0x8901fc0,3, 0x8901fd0,3, 0x8901fe0,3, 0x8901ff0,3, 0x8902000,3, 0x8902010,3, 0x8902020,3, 0x8902030,3, 0x8902040,3, 0x8902050,3, 0x8902060,3, 0x8902070,3, 0x8902080,3, 0x8902090,3, 0x89020a0,3, 0x89020b0,3, 0x89020c0,3, 0x89020d0,3, 0x89020e0,3, 0x89020f0,3, 0x8902100,3, 0x8902110,3, 0x8902120,3, 0x8902130,3, 0x8902140,3, 0x8902150,3, 0x8902160,3, 0x8902170,3, 0x8902180,3, 0x8902190,3, 0x89021a0,3, 0x89021b0,3, 0x89021c0,3, 0x89021d0,3, 0x89021e0,3, 0x89021f0,3, 0x8902200,3, 0x8902210,3, 0x8902220,3, 0x8902230,3, 0x8902240,3, 0x8902250,3, 0x8902260,3, 0x8902270,3, 0x8902280,3, 0x8902290,3, 0x89022a0,3, 0x89022b0,3, 0x89022c0,3, 0x89022d0,3, 0x89022e0,3, 0x89022f0,3, 0x8902300,3, 0x8902310,3, 0x8902320,3, 0x8902330,3, 0x8902340,3, 0x8902350,3, 0x8902360,3, 0x8902370,3, 0x8902380,3, 0x8902390,3, 0x89023a0,3, 0x89023b0,3, 0x89023c0,3, 0x89023d0,3, 0x89023e0,3, 0x89023f0,3, 0x8902400,3, 0x8902410,3, 0x8902420,3, 0x8902430,3, 0x8902440,3, 0x8902450,3, 0x8902460,3, 0x8902470,3, 0x8902480,3, 0x8902490,3, 0x89024a0,3, 0x89024b0,3, 0x89024c0,3, 0x89024d0,3, 0x89024e0,3, 0x89024f0,3, 0x8902500,3, 0x8902510,3, 0x8902520,3, 0x8902530,3, 0x8902540,3, 0x8902550,3, 0x8902560,3, 0x8902570,3, 0x8902580,3, 0x8902590,3, 0x89025a0,3, 0x89025b0,3, 0x89025c0,3, 0x89025d0,3, 0x89025e0,3, 0x89025f0,3, 0x8902600,3, 0x8902610,3, 0x8902620,3, 0x8902630,3, 0x8902640,3, 0x8902650,3, 0x8902660,3, 0x8902670,3, 0x8902680,3, 0x8902690,3, 0x89026a0,3, 0x89026b0,3, 0x89026c0,3, 0x89026d0,3, 0x89026e0,3, 0x89026f0,3, 0x8902700,3, 0x8902710,3, 0x8902720,3, 0x8902730,3, 0x8902740,3, 0x8902750,3, 0x8902760,3, 0x8902770,3, 0x8902780,3, 0x8902790,3, 0x89027a0,3, 0x89027b0,3, 0x89027c0,3, 0x89027d0,3, 0x89027e0,3, 0x89027f0,3, 0x8902800,3, 0x8902810,3, 0x8902820,3, 0x8902830,3, 0x8902840,3, 0x8902850,3, 0x8902860,3, 0x8902870,3, 0x8902880,3, 0x8902890,3, 0x89028a0,3, 0x89028b0,3, 0x89028c0,3, 0x89028d0,3, 0x89028e0,3, 0x89028f0,3, 0x8902900,3, 0x8902910,3, 0x8902920,3, 0x8902930,3, 0x8902940,3, 0x8902950,3, 0x8902960,3, 0x8902970,3, 0x8902980,3, 0x8902990,3, 0x89029a0,3, 0x89029b0,3, 0x89029c0,3, 0x89029d0,3, 0x89029e0,3, 0x89029f0,3, 0x8902a00,3, 0x8902a10,3, 0x8902a20,3, 0x8902a30,3, 0x8902a40,3, 0x8902a50,3, 0x8902a60,3, 0x8902a70,3, 0x8902a80,3, 0x8902a90,3, 0x8902aa0,3, 0x8902ab0,3, 0x8902ac0,3, 0x8902ad0,3, 0x8902ae0,3, 0x8902af0,3, 0x8902b00,3, 0x8902b10,3, 0x8902b20,3, 0x8902b30,3, 0x8902b40,3, 0x8902b50,3, 0x8902b60,3, 0x8902b70,3, 0x8902b80,3, 0x8902b90,3, 0x8902ba0,3, 0x8902bb0,3, 0x8902bc0,3, 0x8902bd0,3, 0x8902be0,3, 0x8902bf0,3, 0x8902c00,3, 0x8902c10,3, 0x8902c20,3, 0x8902c30,3, 0x8902c40,3, 0x8902c50,3, 0x8902c60,3, 0x8902c70,3, 0x8902c80,3, 0x8902c90,3, 0x8902ca0,3, 0x8902cb0,3, 0x8902cc0,3, 0x8902cd0,3, 0x8902ce0,3, 0x8902cf0,3, 0x8902d00,3, 0x8902d10,3, 0x8902d20,3, 0x8902d30,3, 0x8902d40,3, 0x8902d50,3, 0x8902d60,3, 0x8902d70,3, 0x8902d80,3, 0x8902d90,3, 0x8902da0,3, 0x8902db0,3, 0x8902dc0,3, 0x8902dd0,3, 0x8902de0,3, 0x8902df0,3, 0x8902e00,3, 0x8902e10,3, 0x8902e20,3, 0x8902e30,3, 0x8902e40,3, 0x8902e50,3, 0x8902e60,3, 0x8902e70,3, 0x8902e80,3, 0x8902e90,3, 0x8902ea0,3, 0x8902eb0,3, 0x8902ec0,3, 0x8902ed0,3, 0x8902ee0,3, 0x8902ef0,3, 0x8902f00,3, 0x8902f10,3, 0x8902f20,3, 0x8902f30,3, 0x8902f40,3, 0x8902f50,3, 0x8902f60,3, 0x8902f70,3, 0x8902f80,3, 0x8902f90,3, 0x8902fa0,3, 0x8902fb0,3, 0x8902fc0,3, 0x8902fd0,3, 0x8902fe0,3, 0x8902ff0,3, 0x8903000,3, 0x8903010,3, 0x8903020,3, 0x8903030,3, 0x8903040,3, 0x8903050,3, 0x8903060,3, 0x8903070,3, 0x8903080,3, 0x8903090,3, 0x89030a0,3, 0x89030b0,3, 0x89030c0,3, 0x89030d0,3, 0x89030e0,3, 0x89030f0,3, 0x8903100,3, 0x8903110,3, 0x8903120,3, 0x8903130,3, 0x8903140,3, 0x8903150,3, 0x8903160,3, 0x8903170,3, 0x8903180,3, 0x8903190,3, 0x89031a0,3, 0x89031b0,3, 0x89031c0,3, 0x89031d0,3, 0x89031e0,3, 0x89031f0,3, 0x8903200,3, 0x8903210,3, 0x8903220,3, 0x8903230,3, 0x8903240,3, 0x8903250,3, 0x8903260,3, 0x8903270,3, 0x8903280,3, 0x8903290,3, 0x89032a0,3, 0x89032b0,3, 0x89032c0,3, 0x89032d0,3, 0x89032e0,3, 0x89032f0,3, 0x8903300,3, 0x8903310,3, 0x8903320,3, 0x8903330,3, 0x8903340,3, 0x8903350,3, 0x8903360,3, 0x8903370,3, 0x8903380,3, 0x8903390,3, 0x89033a0,3, 0x89033b0,3, 0x89033c0,3, 0x89033d0,3, 0x89033e0,3, 0x89033f0,3, 0x8903400,3, 0x8903410,3, 0x8903420,3, 0x8903430,3, 0x8903440,3, 0x8903450,3, 0x8903460,3, 0x8903470,3, 0x8903480,3, 0x8903490,3, 0x89034a0,3, 0x89034b0,3, 0x89034c0,3, 0x89034d0,3, 0x89034e0,3, 0x89034f0,3, 0x8903500,3, 0x8903510,3, 0x8903520,3, 0x8903530,3, 0x8903540,3, 0x8903550,3, 0x8903560,3, 0x8903570,3, 0x8903580,3, 0x8903590,3, 0x89035a0,3, 0x89035b0,3, 0x89035c0,3, 0x89035d0,3, 0x89035e0,3, 0x89035f0,3, 0x8903600,3, 0x8903610,3, 0x8903620,3, 0x8903630,3, 0x8903640,3, 0x8903650,3, 0x8903660,3, 0x8903670,3, 0x8903680,3, 0x8903690,3, 0x89036a0,3, 0x89036b0,3, 0x89036c0,3, 0x89036d0,3, 0x89036e0,3, 0x89036f0,3, 0x8903700,3, 0x8903710,3, 0x8903720,3, 0x8903730,3, 0x8903740,3, 0x8903750,3, 0x8903760,3, 0x8903770,3, 0x8903780,3, 0x8903790,3, 0x89037a0,3, 0x89037b0,3, 0x89037c0,3, 0x89037d0,3, 0x89037e0,3, 0x89037f0,3, 0x8903800,3, 0x8903810,3, 0x8903820,3, 0x8903830,3, 0x8903840,3, 0x8903850,3, 0x8903860,3, 0x8903870,3, 0x8903880,3, 0x8903890,3, 0x89038a0,3, 0x89038b0,3, 0x89038c0,3, 0x89038d0,3, 0x89038e0,3, 0x89038f0,3, 0x8903900,3, 0x8903910,3, 0x8903920,3, 0x8903930,3, 0x8903940,3, 0x8903950,3, 0x8903960,3, 0x8903970,3, 0x8903980,3, 0x8903990,3, 0x89039a0,3, 0x89039b0,3, 0x89039c0,3, 0x89039d0,3, 0x89039e0,3, 0x89039f0,3, 0x8903a00,3, 0x8903a10,3, 0x8903a20,3, 0x8903a30,3, 0x8903a40,3, 0x8903a50,3, 0x8903a60,3, 0x8903a70,3, 0x8903a80,3, 0x8903a90,3, 0x8903aa0,3, 0x8903ab0,3, 0x8903ac0,3, 0x8903ad0,3, 0x8903ae0,3, 0x8903af0,3, 0x8903b00,3, 0x8903b10,3, 0x8903b20,3, 0x8903b30,3, 0x8903b40,3, 0x8903b50,3, 0x8903b60,3, 0x8903b70,3, 0x8903b80,3, 0x8903b90,3, 0x8903ba0,3, 0x8903bb0,3, 0x8903bc0,3, 0x8903bd0,3, 0x8903be0,3, 0x8903bf0,3, 0x8903c00,3, 0x8903c10,3, 0x8903c20,3, 0x8903c30,3, 0x8903c40,3, 0x8903c50,3, 0x8903c60,3, 0x8903c70,3, 0x8903c80,3, 0x8903c90,3, 0x8903ca0,3, 0x8903cb0,3, 0x8903cc0,3, 0x8903cd0,3, 0x8903ce0,3, 0x8903cf0,3, 0x8903d00,3, 0x8903d10,3, 0x8903d20,3, 0x8903d30,3, 0x8903d40,3, 0x8903d50,3, 0x8903d60,3, 0x8903d70,3, 0x8903d80,3, 0x8903d90,3, 0x8903da0,3, 0x8903db0,3, 0x8903dc0,3, 0x8903dd0,3, 0x8903de0,3, 0x8903df0,3, 0x8903e00,3, 0x8903e10,3, 0x8903e20,3, 0x8903e30,3, 0x8903e40,3, 0x8903e50,3, 0x8903e60,3, 0x8903e70,3, 0x8903e80,3, 0x8903e90,3, 0x8903ea0,3, 0x8903eb0,3, 0x8903ec0,3, 0x8903ed0,3, 0x8903ee0,3, 0x8903ef0,3, 0x8903f00,3, 0x8903f10,3, 0x8903f20,3, 0x8903f30,3, 0x8903f40,3, 0x8903f50,3, 0x8903f60,3, 0x8903f70,3, 0x8903f80,3, 0x8903f90,3, 0x8903fa0,3, 0x8903fb0,3, 0x8903fc0,3, 0x8903fd0,3, 0x8903fe0,3, 0x8903ff0,3, 0x8904000,3, 0x8904010,3, 0x8904020,3, 0x8904030,3, 0x8904040,3, 0x8904050,3, 0x8904060,3, 0x8904070,3, 0x8904080,3, 0x8904090,3, 0x89040a0,3, 0x89040b0,3, 0x89040c0,3, 0x89040d0,3, 0x89040e0,3, 0x89040f0,3, 0x8904100,3, 0x8904110,3, 0x8904120,3, 0x8904130,3, 0x8904140,3, 0x8904150,3, 0x8904160,3, 0x8904170,3, 0x8904180,3, 0x8904190,3, 0x89041a0,3, 0x89041b0,3, 0x89041c0,3, 0x89041d0,3, 0x89041e0,3, 0x89041f0,3, 0x8904200,3, 0x8904210,3, 0x8904220,3, 0x8904230,3, 0x8904240,3, 0x8904250,3, 0x8904260,3, 0x8904270,3, 0x8904280,3, 0x8904290,3, 0x89042a0,3, 0x89042b0,3, 0x89042c0,3, 0x89042d0,3, 0x89042e0,3, 0x89042f0,3, 0x8904300,3, 0x8904310,3, 0x8904320,3, 0x8904330,3, 0x8904340,3, 0x8904350,3, 0x8904360,3, 0x8904370,3, 0x8904380,3, 0x8904390,3, 0x89043a0,3, 0x89043b0,3, 0x89043c0,3, 0x89043d0,3, 0x89043e0,3, 0x89043f0,3, 0x8904400,3, 0x8904410,3, 0x8904420,3, 0x8904430,3, 0x8904440,3, 0x8904450,3, 0x8904460,3, 0x8904470,3, 0x8904480,3, 0x8904490,3, 0x89044a0,3, 0x89044b0,3, 0x89044c0,3, 0x89044d0,3, 0x89044e0,3, 0x89044f0,3, 0x8904500,3, 0x8904510,3, 0x8904520,3, 0x8904530,3, 0x8904540,3, 0x8904550,3, 0x8904560,3, 0x8904570,3, 0x8904580,3, 0x8904590,3, 0x89045a0,3, 0x89045b0,3, 0x89045c0,3, 0x89045d0,3, 0x89045e0,3, 0x89045f0,3, 0x8904600,3, 0x8904610,3, 0x8904620,3, 0x8904630,3, 0x8904640,3, 0x8904650,3, 0x8904660,3, 0x8904670,3, 0x8904680,3, 0x8904690,3, 0x89046a0,3, 0x89046b0,3, 0x89046c0,3, 0x89046d0,3, 0x89046e0,3, 0x89046f0,3, 0x8904700,3, 0x8904710,3, 0x8904720,3, 0x8904730,3, 0x8904740,3, 0x8904750,3, 0x8904760,3, 0x8904770,3, 0x8904780,3, 0x8904790,3, 0x89047a0,3, 0x89047b0,3, 0x89047c0,3, 0x89047d0,3, 0x89047e0,3, 0x89047f0,3, 0x8904800,3, 0x8904810,3, 0x8904820,3, 0x8904830,3, 0x8904840,3, 0x8904850,3, 0x8904860,3, 0x8904870,3, 0x8904880,3, 0x8904890,3, 0x89048a0,3, 0x89048b0,3, 0x89048c0,3, 0x89048d0,3, 0x89048e0,3, 0x89048f0,3, 0x8904900,3, 0x8904910,3, 0x8904920,3, 0x8904930,3, 0x8904940,3, 0x8904950,3, 0x8904960,3, 0x8904970,3, 0x8904980,3, 0x8904990,3, 0x89049a0,3, 0x89049b0,3, 0x89049c0,3, 0x89049d0,3, 0x89049e0,3, 0x89049f0,3, 0x8904a00,3, 0x8904a10,3, 0x8904a20,3, 0x8904a30,3, 0x8904a40,3, 0x8904a50,3, 0x8904a60,3, 0x8904a70,3, 0x8904a80,3, 0x8904a90,3, 0x8904aa0,3, 0x8904ab0,3, 0x8904ac0,3, 0x8904ad0,3, 0x8904ae0,3, 0x8904af0,3, 0x8904b00,3, 0x8904b10,3, 0x8904b20,3, 0x8904b30,3, 0x8904b40,3, 0x8904b50,3, 0x8904b60,3, 0x8904b70,3, 0x8904b80,3, 0x8904b90,3, 0x8904ba0,3, 0x8904bb0,3, 0x8904bc0,3, 0x8904bd0,3, 0x8904be0,3, 0x8904bf0,3, 0x8904c00,3, 0x8904c10,3, 0x8904c20,3, 0x8904c30,3, 0x8904c40,3, 0x8904c50,3, 0x8904c60,3, 0x8904c70,3, 0x8904c80,3, 0x8904c90,3, 0x8904ca0,3, 0x8904cb0,3, 0x8904cc0,3, 0x8904cd0,3, 0x8904ce0,3, 0x8904cf0,3, 0x8904d00,3, 0x8904d10,3, 0x8904d20,3, 0x8904d30,3, 0x8904d40,3, 0x8904d50,3, 0x8904d60,3, 0x8904d70,3, 0x8904d80,3, 0x8904d90,3, 0x8904da0,3, 0x8904db0,3, 0x8904dc0,3, 0x8904dd0,3, 0x8904de0,3, 0x8904df0,3, 0x8904e00,3, 0x8904e10,3, 0x8904e20,3, 0x8904e30,3, 0x8904e40,3, 0x8904e50,3, 0x8904e60,3, 0x8904e70,3, 0x8904e80,3, 0x8904e90,3, 0x8904ea0,3, 0x8904eb0,3, 0x8904ec0,3, 0x8904ed0,3, 0x8904ee0,3, 0x8904ef0,3, 0x8904f00,3, 0x8904f10,3, 0x8904f20,3, 0x8904f30,3, 0x8904f40,3, 0x8904f50,3, 0x8904f60,3, 0x8904f70,3, 0x8904f80,3, 0x8904f90,3, 0x8904fa0,3, 0x8904fb0,3, 0x8904fc0,3, 0x8904fd0,3, 0x8904fe0,3, 0x8904ff0,3, 0x8905000,3, 0x8905010,3, 0x8905020,3, 0x8905030,3, 0x8905040,3, 0x8905050,3, 0x8905060,3, 0x8905070,3, 0x8905080,3, 0x8905090,3, 0x89050a0,3, 0x89050b0,3, 0x89050c0,3, 0x89050d0,3, 0x89050e0,3, 0x89050f0,3, 0x8905100,3, 0x8905110,3, 0x8905120,3, 0x8905130,3, 0x8905140,3, 0x8905150,3, 0x8905160,3, 0x8905170,3, 0x8905180,3, 0x8905190,3, 0x89051a0,3, 0x89051b0,3, 0x89051c0,3, 0x89051d0,3, 0x89051e0,3, 0x89051f0,3, 0x8905200,3, 0x8905210,3, 0x8905220,3, 0x8905230,3, 0x8905240,3, 0x8905250,3, 0x8905260,3, 0x8905270,3, 0x8905280,3, 0x8905290,3, 0x89052a0,3, 0x89052b0,3, 0x89052c0,3, 0x89052d0,3, 0x89052e0,3, 0x89052f0,3, 0x8905300,3, 0x8905310,3, 0x8905320,3, 0x8905330,3, 0x8905340,3, 0x8905350,3, 0x8905360,3, 0x8905370,3, 0x8905380,3, 0x8905390,3, 0x89053a0,3, 0x89053b0,3, 0x89053c0,3, 0x89053d0,3, 0x89053e0,3, 0x89053f0,3, 0x8905400,3, 0x8905410,3, 0x8905420,3, 0x8905430,3, 0x8905440,3, 0x8905450,3, 0x8905460,3, 0x8905470,3, 0x8905480,3, 0x8905490,3, 0x89054a0,3, 0x89054b0,3, 0x89054c0,3, 0x89054d0,3, 0x89054e0,3, 0x89054f0,3, 0x8905500,3, 0x8905510,3, 0x8905520,3, 0x8905530,3, 0x8905540,3, 0x8905550,3, 0x8905560,3, 0x8905570,3, 0x8905580,3, 0x8905590,3, 0x89055a0,3, 0x89055b0,3, 0x89055c0,3, 0x89055d0,3, 0x89055e0,3, 0x89055f0,3, 0x8905600,3, 0x8905610,3, 0x8905620,3, 0x8905630,3, 0x8905640,3, 0x8905650,3, 0x8905660,3, 0x8905670,3, 0x8905680,3, 0x8905690,3, 0x89056a0,3, 0x89056b0,3, 0x89056c0,3, 0x89056d0,3, 0x89056e0,3, 0x89056f0,3, 0x8905700,3, 0x8905710,3, 0x8905720,3, 0x8905730,3, 0x8905740,3, 0x8905750,3, 0x8905760,3, 0x8905770,3, 0x8905780,3, 0x8905790,3, 0x89057a0,3, 0x89057b0,3, 0x89057c0,3, 0x89057d0,3, 0x89057e0,3, 0x89057f0,3, 0x8905800,3, 0x8905810,3, 0x8905820,3, 0x8905830,3, 0x8905840,3, 0x8905850,3, 0x8905860,3, 0x8905870,3, 0x8905880,3, 0x8905890,3, 0x89058a0,3, 0x89058b0,3, 0x89058c0,3, 0x89058d0,3, 0x89058e0,3, 0x89058f0,3, 0x8905900,3, 0x8905910,3, 0x8905920,3, 0x8905930,3, 0x8905940,3, 0x8905950,3, 0x8905960,3, 0x8905970,3, 0x8905980,3, 0x8905990,3, 0x89059a0,3, 0x89059b0,3, 0x89059c0,3, 0x89059d0,3, 0x89059e0,3, 0x89059f0,3, 0x8905a00,3, 0x8905a10,3, 0x8905a20,3, 0x8905a30,3, 0x8905a40,3, 0x8905a50,3, 0x8905a60,3, 0x8905a70,3, 0x8905a80,3, 0x8905a90,3, 0x8905aa0,3, 0x8905ab0,3, 0x8905ac0,3, 0x8905ad0,3, 0x8905ae0,3, 0x8905af0,3, 0x8905b00,3, 0x8905b10,3, 0x8905b20,3, 0x8905b30,3, 0x8905b40,3, 0x8905b50,3, 0x8905b60,3, 0x8905b70,3, 0x8905b80,3, 0x8905b90,3, 0x8905ba0,3, 0x8905bb0,3, 0x8905bc0,3, 0x8905bd0,3, 0x8905be0,3, 0x8905bf0,3, 0x8905c00,3, 0x8905c10,3, 0x8905c20,3, 0x8905c30,3, 0x8905c40,3, 0x8905c50,3, 0x8905c60,3, 0x8905c70,3, 0x8905c80,3, 0x8905c90,3, 0x8905ca0,3, 0x8905cb0,3, 0x8905cc0,3, 0x8905cd0,3, 0x8905ce0,3, 0x8905cf0,3, 0x8905d00,3, 0x8905d10,3, 0x8905d20,3, 0x8905d30,3, 0x8905d40,3, 0x8905d50,3, 0x8905d60,3, 0x8905d70,3, 0x8905d80,3, 0x8905d90,3, 0x8905da0,3, 0x8905db0,3, 0x8905dc0,3, 0x8905dd0,3, 0x8905de0,3, 0x8905df0,3, 0x8905e00,3, 0x8905e10,3, 0x8905e20,3, 0x8905e30,3, 0x8905e40,3, 0x8905e50,3, 0x8905e60,3, 0x8905e70,3, 0x8905e80,3, 0x8905e90,3, 0x8905ea0,3, 0x8905eb0,3, 0x8905ec0,3, 0x8905ed0,3, 0x8905ee0,3, 0x8905ef0,3, 0x8905f00,3, 0x8905f10,3, 0x8905f20,3, 0x8905f30,3, 0x8905f40,3, 0x8905f50,3, 0x8905f60,3, 0x8905f70,3, 0x8905f80,3, 0x8905f90,3, 0x8905fa0,3, 0x8905fb0,3, 0x8905fc0,3, 0x8905fd0,3, 0x8905fe0,3, 0x8905ff0,3, 0x8906000,3, 0x8906010,3, 0x8906020,3, 0x8906030,3, 0x8906040,3, 0x8906050,3, 0x8906060,3, 0x8906070,3, 0x8906080,3, 0x8906090,3, 0x89060a0,3, 0x89060b0,3, 0x89060c0,3, 0x89060d0,3, 0x89060e0,3, 0x89060f0,3, 0x8906100,3, 0x8906110,3, 0x8906120,3, 0x8906130,3, 0x8906140,3, 0x8906150,3, 0x8906160,3, 0x8906170,3, 0x8906180,3, 0x8906190,3, 0x89061a0,3, 0x89061b0,3, 0x89061c0,3, 0x89061d0,3, 0x89061e0,3, 0x89061f0,3, 0x8906200,3, 0x8906210,3, 0x8906220,3, 0x8906230,3, 0x8906240,3, 0x8906250,3, 0x8906260,3, 0x8906270,3, 0x8906280,3, 0x8906290,3, 0x89062a0,3, 0x89062b0,3, 0x89062c0,3, 0x89062d0,3, 0x89062e0,3, 0x89062f0,3, 0x8906300,3, 0x8906310,3, 0x8906320,3, 0x8906330,3, 0x8906340,3, 0x8906350,3, 0x8906360,3, 0x8906370,3, 0x8906380,3, 0x8906390,3, 0x89063a0,3, 0x89063b0,3, 0x89063c0,3, 0x89063d0,3, 0x89063e0,3, 0x89063f0,3, 0x8906400,3, 0x8906410,3, 0x8906420,3, 0x8906430,3, 0x8906440,3, 0x8906450,3, 0x8906460,3, 0x8906470,3, 0x8906480,3, 0x8906490,3, 0x89064a0,3, 0x89064b0,3, 0x89064c0,3, 0x89064d0,3, 0x89064e0,3, 0x89064f0,3, 0x8906500,3, 0x8906510,3, 0x8906520,3, 0x8906530,3, 0x8906540,3, 0x8906550,3, 0x8906560,3, 0x8906570,3, 0x8906580,3, 0x8906590,3, 0x89065a0,3, 0x89065b0,3, 0x89065c0,3, 0x89065d0,3, 0x89065e0,3, 0x89065f0,3, 0x8906600,3, 0x8906610,3, 0x8906620,3, 0x8906630,3, 0x8906640,3, 0x8906650,3, 0x8906660,3, 0x8906670,3, 0x8906680,3, 0x8906690,3, 0x89066a0,3, 0x89066b0,3, 0x89066c0,3, 0x89066d0,3, 0x89066e0,3, 0x89066f0,3, 0x8906700,3, 0x8906710,3, 0x8906720,3, 0x8906730,3, 0x8906740,3, 0x8906750,3, 0x8906760,3, 0x8906770,3, 0x8906780,3, 0x8906790,3, 0x89067a0,3, 0x89067b0,3, 0x89067c0,3, 0x89067d0,3, 0x89067e0,3, 0x89067f0,3, 0x8906800,3, 0x8906810,3, 0x8906820,3, 0x8906830,3, 0x8906840,3, 0x8906850,3, 0x8906860,3, 0x8906870,3, 0x8906880,3, 0x8906890,3, 0x89068a0,3, 0x89068b0,3, 0x89068c0,3, 0x89068d0,3, 0x89068e0,3, 0x89068f0,3, 0x8906900,3, 0x8906910,3, 0x8906920,3, 0x8906930,3, 0x8906940,3, 0x8906950,3, 0x8906960,3, 0x8906970,3, 0x8906980,3, 0x8906990,3, 0x89069a0,3, 0x89069b0,3, 0x89069c0,3, 0x89069d0,3, 0x89069e0,3, 0x89069f0,3, 0x8906a00,3, 0x8906a10,3, 0x8906a20,3, 0x8906a30,3, 0x8906a40,3, 0x8906a50,3, 0x8906a60,3, 0x8906a70,3, 0x8906a80,3, 0x8906a90,3, 0x8906aa0,3, 0x8906ab0,3, 0x8906ac0,3, 0x8906ad0,3, 0x8906ae0,3, 0x8906af0,3, 0x8906b00,3, 0x8906b10,3, 0x8906b20,3, 0x8906b30,3, 0x8906b40,3, 0x8906b50,3, 0x8906b60,3, 0x8906b70,3, 0x8906b80,3, 0x8906b90,3, 0x8906ba0,3, 0x8906bb0,3, 0x8906bc0,3, 0x8906bd0,3, 0x8906be0,3, 0x8906bf0,3, 0x8906c00,3, 0x8906c10,3, 0x8906c20,3, 0x8906c30,3, 0x8906c40,3, 0x8906c50,3, 0x8906c60,3, 0x8906c70,3, 0x8906c80,3, 0x8906c90,3, 0x8906ca0,3, 0x8906cb0,3, 0x8906cc0,3, 0x8906cd0,3, 0x8906ce0,3, 0x8906cf0,3, 0x8906d00,3, 0x8906d10,3, 0x8906d20,3, 0x8906d30,3, 0x8906d40,3, 0x8906d50,3, 0x8906d60,3, 0x8906d70,3, 0x8906d80,3, 0x8906d90,3, 0x8906da0,3, 0x8906db0,3, 0x8906dc0,3, 0x8906dd0,3, 0x8906de0,3, 0x8906df0,3, 0x8906e00,3, 0x8906e10,3, 0x8906e20,3, 0x8906e30,3, 0x8906e40,3, 0x8906e50,3, 0x8906e60,3, 0x8906e70,3, 0x8906e80,3, 0x8906e90,3, 0x8906ea0,3, 0x8906eb0,3, 0x8906ec0,3, 0x8906ed0,3, 0x8906ee0,3, 0x8906ef0,3, 0x8906f00,3, 0x8906f10,3, 0x8906f20,3, 0x8906f30,3, 0x8906f40,3, 0x8906f50,3, 0x8906f60,3, 0x8906f70,3, 0x8906f80,3, 0x8906f90,3, 0x8906fa0,3, 0x8906fb0,3, 0x8906fc0,3, 0x8906fd0,3, 0x8906fe0,3, 0x8906ff0,3, 0x8907000,3, 0x8907010,3, 0x8907020,3, 0x8907030,3, 0x8907040,3, 0x8907050,3, 0x8907060,3, 0x8907070,3, 0x8907080,3, 0x8907090,3, 0x89070a0,3, 0x89070b0,3, 0x89070c0,3, 0x89070d0,3, 0x89070e0,3, 0x89070f0,3, 0x8907100,3, 0x8907110,3, 0x8907120,3, 0x8907130,3, 0x8907140,3, 0x8907150,3, 0x8907160,3, 0x8907170,3, 0x8907180,3, 0x8907190,3, 0x89071a0,3, 0x89071b0,3, 0x89071c0,3, 0x89071d0,3, 0x89071e0,3, 0x89071f0,3, 0x8907200,3, 0x8907210,3, 0x8907220,3, 0x8907230,3, 0x8907240,3, 0x8907250,3, 0x8907260,3, 0x8907270,3, 0x8907280,3, 0x8907290,3, 0x89072a0,3, 0x89072b0,3, 0x89072c0,3, 0x89072d0,3, 0x89072e0,3, 0x89072f0,3, 0x8907300,3, 0x8907310,3, 0x8907320,3, 0x8907330,3, 0x8907340,3, 0x8907350,3, 0x8907360,3, 0x8907370,3, 0x8907380,3, 0x8907390,3, 0x89073a0,3, 0x89073b0,3, 0x89073c0,3, 0x89073d0,3, 0x89073e0,3, 0x89073f0,3, 0x8907400,3, 0x8907410,3, 0x8907420,3, 0x8907430,3, 0x8907440,3, 0x8907450,3, 0x8907460,3, 0x8907470,3, 0x8907480,3, 0x8907490,3, 0x89074a0,3, 0x89074b0,3, 0x89074c0,3, 0x89074d0,3, 0x89074e0,3, 0x89074f0,3, 0x8907500,3, 0x8907510,3, 0x8907520,3, 0x8907530,3, 0x8907540,3, 0x8907550,3, 0x8907560,3, 0x8907570,3, 0x8907580,3, 0x8907590,3, 0x89075a0,3, 0x89075b0,3, 0x89075c0,3, 0x89075d0,3, 0x89075e0,3, 0x89075f0,3, 0x8907600,3, 0x8907610,3, 0x8907620,3, 0x8907630,3, 0x8907640,3, 0x8907650,3, 0x8907660,3, 0x8907670,3, 0x8907680,3, 0x8907690,3, 0x89076a0,3, 0x89076b0,3, 0x89076c0,3, 0x89076d0,3, 0x89076e0,3, 0x89076f0,3, 0x8907700,3, 0x8907710,3, 0x8907720,3, 0x8907730,3, 0x8907740,3, 0x8907750,3, 0x8907760,3, 0x8907770,3, 0x8907780,3, 0x8907790,3, 0x89077a0,3, 0x89077b0,3, 0x89077c0,3, 0x89077d0,3, 0x89077e0,3, 0x89077f0,3, 0x8907800,3, 0x8907810,3, 0x8907820,3, 0x8907830,3, 0x8907840,3, 0x8907850,3, 0x8907860,3, 0x8907870,3, 0x8907880,3, 0x8907890,3, 0x89078a0,3, 0x89078b0,3, 0x89078c0,3, 0x89078d0,3, 0x89078e0,3, 0x89078f0,3, 0x8907900,3, 0x8907910,3, 0x8907920,3, 0x8907930,3, 0x8907940,3, 0x8907950,3, 0x8907960,3, 0x8907970,3, 0x8907980,3, 0x8907990,3, 0x89079a0,3, 0x89079b0,3, 0x89079c0,3, 0x89079d0,3, 0x89079e0,3, 0x89079f0,3, 0x8907a00,3, 0x8907a10,3, 0x8907a20,3, 0x8907a30,3, 0x8907a40,3, 0x8907a50,3, 0x8907a60,3, 0x8907a70,3, 0x8907a80,3, 0x8907a90,3, 0x8907aa0,3, 0x8907ab0,3, 0x8907ac0,3, 0x8907ad0,3, 0x8907ae0,3, 0x8907af0,3, 0x8907b00,3, 0x8907b10,3, 0x8907b20,3, 0x8907b30,3, 0x8907b40,3, 0x8907b50,3, 0x8907b60,3, 0x8907b70,3, 0x8907b80,3, 0x8907b90,3, 0x8907ba0,3, 0x8907bb0,3, 0x8907bc0,3, 0x8907bd0,3, 0x8907be0,3, 0x8907bf0,3, 0x8907c00,3, 0x8907c10,3, 0x8907c20,3, 0x8907c30,3, 0x8907c40,3, 0x8907c50,3, 0x8907c60,3, 0x8907c70,3, 0x8907c80,3, 0x8907c90,3, 0x8907ca0,3, 0x8907cb0,3, 0x8907cc0,3, 0x8907cd0,3, 0x8907ce0,3, 0x8907cf0,3, 0x8907d00,3, 0x8907d10,3, 0x8907d20,3, 0x8907d30,3, 0x8907d40,3, 0x8907d50,3, 0x8907d60,3, 0x8907d70,3, 0x8907d80,3, 0x8907d90,3, 0x8907da0,3, 0x8907db0,3, 0x8907dc0,3, 0x8907dd0,3, 0x8907de0,3, 0x8907df0,3, 0x8907e00,3, 0x8907e10,3, 0x8907e20,3, 0x8907e30,3, 0x8907e40,3, 0x8907e50,3, 0x8907e60,3, 0x8907e70,3, 0x8907e80,3, 0x8907e90,3, 0x8907ea0,3, 0x8907eb0,3, 0x8907ec0,3, 0x8907ed0,3, 0x8907ee0,3, 0x8907ef0,3, 0x8907f00,3, 0x8907f10,3, 0x8907f20,3, 0x8907f30,3, 0x8907f40,3, 0x8907f50,3, 0x8907f60,3, 0x8907f70,3, 0x8907f80,3, 0x8907f90,3, 0x8907fa0,3, 0x8907fb0,3, 0x8907fc0,3, 0x8907fd0,3, 0x8907fe0,3, 0x8907ff0,3, 0x8908000,3, 0x8908010,3, 0x8908020,3, 0x8908030,3, 0x8908040,3, 0x8908050,3, 0x8908060,3, 0x8908070,3, 0x8908080,3, 0x8908090,3, 0x89080a0,3, 0x89080b0,3, 0x89080c0,3, 0x89080d0,3, 0x89080e0,3, 0x89080f0,3, 0x8908100,3, 0x8908110,3, 0x8908120,3, 0x8908130,3, 0x8908140,3, 0x8908150,3, 0x8908160,3, 0x8908170,3, 0x8908180,3, 0x8908190,3, 0x89081a0,3, 0x89081b0,3, 0x89081c0,3, 0x89081d0,3, 0x89081e0,3, 0x89081f0,3, 0x8908200,3, 0x8908210,3, 0x8908220,3, 0x8908230,3, 0x8908240,3, 0x8908250,3, 0x8908260,3, 0x8908270,3, 0x8908280,3, 0x8908290,3, 0x89082a0,3, 0x89082b0,3, 0x89082c0,3, 0x89082d0,3, 0x89082e0,3, 0x89082f0,3, 0x8908300,3, 0x8908310,3, 0x8908320,3, 0x8908330,3, 0x8908340,3, 0x8908350,3, 0x8908360,3, 0x8908370,3, 0x8908380,3, 0x8908390,3, 0x89083a0,3, 0x89083b0,3, 0x89083c0,3, 0x89083d0,3, 0x89083e0,3, 0x89083f0,3, 0x8908400,3, 0x8908410,3, 0x8908420,3, 0x8908430,3, 0x8908440,3, 0x8908450,3, 0x8908460,3, 0x8908470,3, 0x8908480,3, 0x8908490,3, 0x89084a0,3, 0x89084b0,3, 0x89084c0,3, 0x89084d0,3, 0x89084e0,3, 0x89084f0,3, 0x8908500,3, 0x8908510,3, 0x8908520,3, 0x8908530,3, 0x8908540,3, 0x8908550,3, 0x8908560,3, 0x8908570,3, 0x8908580,3, 0x8908590,3, 0x89085a0,3, 0x89085b0,3, 0x89085c0,3, 0x89085d0,3, 0x89085e0,3, 0x89085f0,3, 0x8908600,3, 0x8908610,3, 0x8908620,3, 0x8908630,3, 0x8908640,3, 0x8908650,3, 0x8908660,3, 0x8908670,3, 0x8908680,3, 0x8908690,3, 0x89086a0,3, 0x89086b0,3, 0x89086c0,3, 0x89086d0,3, 0x89086e0,3, 0x89086f0,3, 0x8908700,3, 0x8908710,3, 0x8908720,3, 0x8908730,3, 0x8908740,3, 0x8908750,3, 0x8908760,3, 0x8908770,3, 0x8908780,3, 0x8908790,3, 0x89087a0,3, 0x89087b0,3, 0x89087c0,3, 0x89087d0,3, 0x89087e0,3, 0x89087f0,3, 0x8908800,3, 0x8908810,3, 0x8908820,3, 0x8908830,3, 0x8908840,3, 0x8908850,3, 0x8908860,3, 0x8908870,3, 0x8908880,3, 0x8908890,3, 0x89088a0,3, 0x89088b0,3, 0x89088c0,3, 0x89088d0,3, 0x89088e0,3, 0x89088f0,3, 0x8908900,3, 0x8908910,3, 0x8908920,3, 0x8908930,3, 0x8908940,3, 0x8908950,3, 0x8908960,3, 0x8908970,3, 0x8908980,3, 0x8908990,3, 0x89089a0,3, 0x89089b0,3, 0x89089c0,3, 0x89089d0,3, 0x89089e0,3, 0x89089f0,3, 0x8908a00,3, 0x8908a10,3, 0x8908a20,3, 0x8908a30,3, 0x8908a40,3, 0x8908a50,3, 0x8908a60,3, 0x8908a70,3, 0x8908a80,3, 0x8908a90,3, 0x8908aa0,3, 0x8908ab0,3, 0x8908ac0,3, 0x8908ad0,3, 0x8908ae0,3, 0x8908af0,3, 0x8908b00,3, 0x8908b10,3, 0x8908b20,3, 0x8908b30,3, 0x8908b40,3, 0x8908b50,3, 0x8908b60,3, 0x8908b70,3, 0x8908b80,3, 0x8908b90,3, 0x8908ba0,3, 0x8908bb0,3, 0x8908bc0,3, 0x8908bd0,3, 0x8908be0,3, 0x8908bf0,3, 0x8908c00,3, 0x8908c10,3, 0x8908c20,3, 0x8908c30,3, 0x8908c40,3, 0x8908c50,3, 0x8908c60,3, 0x8908c70,3, 0x8908c80,3, 0x8908c90,3, 0x8908ca0,3, 0x8908cb0,3, 0x8908cc0,3, 0x8908cd0,3, 0x8908ce0,3, 0x8908cf0,3, 0x8908d00,3, 0x8908d10,3, 0x8908d20,3, 0x8908d30,3, 0x8908d40,3, 0x8908d50,3, 0x8908d60,3, 0x8908d70,3, 0x8908d80,3, 0x8908d90,3, 0x8908da0,3, 0x8908db0,3, 0x8908dc0,3, 0x8908dd0,3, 0x8908de0,3, 0x8908df0,3, 0x8908e00,3, 0x8908e10,3, 0x8908e20,3, 0x8908e30,3, 0x8908e40,3, 0x8908e50,3, 0x8908e60,3, 0x8908e70,3, 0x8908e80,3, 0x8908e90,3, 0x8908ea0,3, 0x8908eb0,3, 0x8908ec0,3, 0x8908ed0,3, 0x8908ee0,3, 0x8908ef0,3, 0x8908f00,3, 0x8908f10,3, 0x8908f20,3, 0x8908f30,3, 0x8908f40,3, 0x8908f50,3, 0x8908f60,3, 0x8908f70,3, 0x8908f80,3, 0x8908f90,3, 0x8908fa0,3, 0x8908fb0,3, 0x8908fc0,3, 0x8908fd0,3, 0x8908fe0,3, 0x8908ff0,3, 0x8909000,3, 0x8909010,3, 0x8909020,3, 0x8909030,3, 0x8909040,3, 0x8909050,3, 0x8909060,3, 0x8909070,3, 0x8909080,3, 0x8909090,3, 0x89090a0,3, 0x89090b0,3, 0x89090c0,3, 0x89090d0,3, 0x89090e0,3, 0x89090f0,3, 0x8909100,3, 0x8909110,3, 0x8909120,3, 0x8909130,3, 0x8909140,3, 0x8909150,3, 0x8909160,3, 0x8909170,3, 0x8909180,3, 0x8909190,3, 0x89091a0,3, 0x89091b0,3, 0x89091c0,3, 0x89091d0,3, 0x89091e0,3, 0x89091f0,3, 0x8909200,3, 0x8909210,3, 0x8909220,3, 0x8909230,3, 0x8909240,3, 0x8909250,3, 0x8909260,3, 0x8909270,3, 0x8909280,3, 0x8909290,3, 0x89092a0,3, 0x89092b0,3, 0x89092c0,3, 0x89092d0,3, 0x89092e0,3, 0x89092f0,3, 0x8909300,3, 0x8909310,3, 0x8909320,3, 0x8909330,3, 0x8909340,3, 0x8909350,3, 0x8909360,3, 0x8909370,3, 0x8909380,3, 0x8909390,3, 0x89093a0,3, 0x89093b0,3, 0x89093c0,3, 0x89093d0,3, 0x89093e0,3, 0x89093f0,3, 0x8909400,3, 0x8909410,3, 0x8909420,3, 0x8909430,3, 0x8909440,3, 0x8909450,3, 0x8909460,3, 0x8909470,3, 0x8909480,3, 0x8909490,3, 0x89094a0,3, 0x89094b0,3, 0x89094c0,3, 0x89094d0,3, 0x89094e0,3, 0x89094f0,3, 0x8909500,3, 0x8909510,3, 0x8909520,3, 0x8909530,3, 0x8909540,3, 0x8909550,3, 0x8909560,3, 0x8909570,3, 0x8909580,3, 0x8909590,3, 0x89095a0,3, 0x89095b0,3, 0x89095c0,3, 0x89095d0,3, 0x89095e0,3, 0x89095f0,3, 0x8909600,3, 0x8909610,3, 0x8909620,3, 0x8909630,3, 0x8909640,3, 0x8909650,3, 0x8909660,3, 0x8909670,3, 0x8909680,3, 0x8909690,3, 0x89096a0,3, 0x89096b0,3, 0x89096c0,3, 0x89096d0,3, 0x89096e0,3, 0x89096f0,3, 0x8909700,3, 0x8909710,3, 0x8909720,3, 0x8909730,3, 0x8909740,3, 0x8909750,3, 0x8909760,3, 0x8909770,3, 0x8909780,3, 0x8909790,3, 0x89097a0,3, 0x89097b0,3, 0x89097c0,3, 0x89097d0,3, 0x89097e0,3, 0x89097f0,3, 0x8909800,3, 0x8909810,3, 0x8909820,3, 0x8909830,3, 0x8909840,3, 0x8909850,3, 0x8909860,3, 0x8909870,3, 0x8909880,3, 0x8909890,3, 0x89098a0,3, 0x89098b0,3, 0x89098c0,3, 0x89098d0,3, 0x89098e0,3, 0x89098f0,3, 0x8909900,3, 0x8909910,3, 0x8909920,3, 0x8909930,3, 0x8909940,3, 0x8909950,3, 0x8909960,3, 0x8909970,3, 0x8909980,3, 0x8909990,3, 0x89099a0,3, 0x89099b0,3, 0x89099c0,3, 0x89099d0,3, 0x89099e0,3, 0x89099f0,3, 0x8909a00,3, 0x8909a10,3, 0x8909a20,3, 0x8909a30,3, 0x8909a40,3, 0x8909a50,3, 0x8909a60,3, 0x8909a70,3, 0x8909a80,3, 0x8909a90,3, 0x8909aa0,3, 0x8909ab0,3, 0x8909ac0,3, 0x8909ad0,3, 0x8909ae0,3, 0x8909af0,3, 0x8909b00,3, 0x8909b10,3, 0x8909b20,3, 0x8909b30,3, 0x8909b40,3, 0x8909b50,3, 0x8909b60,3, 0x8909b70,3, 0x8909b80,3, 0x8909b90,3, 0x8909ba0,3, 0x8909bb0,3, 0x8909bc0,3, 0x8909bd0,3, 0x8909be0,3, 0x8909bf0,3, 0x8909c00,3, 0x8909c10,3, 0x8909c20,3, 0x8909c30,3, 0x8909c40,3, 0x8909c50,3, 0x8909c60,3, 0x8909c70,3, 0x8909c80,3, 0x8909c90,3, 0x8909ca0,3, 0x8909cb0,3, 0x8909cc0,3, 0x8909cd0,3, 0x8909ce0,3, 0x8909cf0,3, 0x8909d00,3, 0x8909d10,3, 0x8909d20,3, 0x8909d30,3, 0x8909d40,3, 0x8909d50,3, 0x8909d60,3, 0x8909d70,3, 0x8909d80,3, 0x8909d90,3, 0x8909da0,3, 0x8909db0,3, 0x8909dc0,3, 0x8909dd0,3, 0x8909de0,3, 0x8909df0,3, 0x8909e00,3, 0x8909e10,3, 0x8909e20,3, 0x8909e30,3, 0x8909e40,3, 0x8909e50,3, 0x8909e60,3, 0x8909e70,3, 0x8909e80,3, 0x8909e90,3, 0x8909ea0,3, 0x8909eb0,3, 0x8909ec0,3, 0x8909ed0,3, 0x8909ee0,3, 0x8909ef0,3, 0x8909f00,3, 0x8909f10,3, 0x8909f20,3, 0x8909f30,3, 0x8909f40,3, 0x8909f50,3, 0x8909f60,3, 0x8909f70,3, 0x8909f80,3, 0x8909f90,3, 0x8909fa0,3, 0x8909fb0,3, 0x8909fc0,3, 0x8909fd0,3, 0x8909fe0,3, 0x8909ff0,3, 0x890a000,3, 0x890a010,3, 0x890a020,3, 0x890a030,3, 0x890a040,3, 0x890a050,3, 0x890a060,3, 0x890a070,3, 0x890a080,3, 0x890a090,3, 0x890a0a0,3, 0x890a0b0,3, 0x890a0c0,3, 0x890a0d0,3, 0x890a0e0,3, 0x890a0f0,3, 0x890a100,3, 0x890a110,3, 0x890a120,3, 0x890a130,3, 0x890a140,3, 0x890a150,3, 0x890a160,3, 0x890a170,3, 0x890a180,3, 0x890a190,3, 0x890a1a0,3, 0x890a1b0,3, 0x890a1c0,3, 0x890a1d0,3, 0x890a1e0,3, 0x890a1f0,3, 0x890a200,3, 0x890a210,3, 0x890a220,3, 0x890a230,3, 0x890a240,3, 0x890a250,3, 0x890a260,3, 0x890a270,3, 0x890a280,3, 0x890a290,3, 0x890a2a0,3, 0x890a2b0,3, 0x890a2c0,3, 0x890a2d0,3, 0x890a2e0,3, 0x890a2f0,3, 0x890a300,3, 0x890a310,3, 0x890a320,3, 0x890a330,3, 0x890a340,3, 0x890a350,3, 0x890a360,3, 0x890a370,3, 0x890a380,3, 0x890a390,3, 0x890a3a0,3, 0x890a3b0,3, 0x890a3c0,3, 0x890a3d0,3, 0x890a3e0,3, 0x890a3f0,3, 0x890a400,3, 0x890a410,3, 0x890a420,3, 0x890a430,3, 0x890a440,3, 0x890a450,3, 0x890a460,3, 0x890a470,3, 0x890a480,3, 0x890a490,3, 0x890a4a0,3, 0x890a4b0,3, 0x890a4c0,3, 0x890a4d0,3, 0x890a4e0,3, 0x890a4f0,3, 0x890a500,3, 0x890a510,3, 0x890a520,3, 0x890a530,3, 0x890a540,3, 0x890a550,3, 0x890a560,3, 0x890a570,3, 0x890a580,3, 0x890a590,3, 0x890a5a0,3, 0x890a5b0,3, 0x890a5c0,3, 0x890a5d0,3, 0x890a5e0,3, 0x890a5f0,3, 0x890a600,3, 0x890a610,3, 0x890a620,3, 0x890a630,3, 0x890a640,3, 0x890a650,3, 0x890a660,3, 0x890a670,3, 0x890a680,3, 0x890a690,3, 0x890a6a0,3, 0x890a6b0,3, 0x890a6c0,3, 0x890a6d0,3, 0x890a6e0,3, 0x890a6f0,3, 0x890a700,3, 0x890a710,3, 0x890a720,3, 0x890a730,3, 0x890a740,3, 0x890a750,3, 0x890a760,3, 0x890a770,3, 0x890a780,3, 0x890a790,3, 0x890a7a0,3, 0x890a7b0,3, 0x890a7c0,3, 0x890a7d0,3, 0x890a7e0,3, 0x890a7f0,3, 0x890a800,3, 0x890a810,3, 0x890a820,3, 0x890a830,3, 0x890a840,3, 0x890a850,3, 0x890a860,3, 0x890a870,3, 0x890a880,3, 0x890a890,3, 0x890a8a0,3, 0x890a8b0,3, 0x890a8c0,3, 0x890a8d0,3, 0x890a8e0,3, 0x890a8f0,3, 0x890a900,3, 0x890a910,3, 0x890a920,3, 0x890a930,3, 0x890a940,3, 0x890a950,3, 0x890a960,3, 0x890a970,3, 0x890a980,3, 0x890a990,3, 0x890a9a0,3, 0x890a9b0,3, 0x890a9c0,3, 0x890a9d0,3, 0x890a9e0,3, 0x890a9f0,3, 0x890aa00,3, 0x890aa10,3, 0x890aa20,3, 0x890aa30,3, 0x890aa40,3, 0x890aa50,3, 0x890aa60,3, 0x890aa70,3, 0x890aa80,3, 0x890aa90,3, 0x890aaa0,3, 0x890aab0,3, 0x890aac0,3, 0x890aad0,3, 0x890aae0,3, 0x890aaf0,3, 0x890ab00,3, 0x890ab10,3, 0x890ab20,3, 0x890ab30,3, 0x890ab40,3, 0x890ab50,3, 0x890ab60,3, 0x890ab70,3, 0x890ab80,3, 0x890ab90,3, 0x890aba0,3, 0x890abb0,3, 0x890abc0,3, 0x890abd0,3, 0x890abe0,3, 0x890abf0,3, 0x890ac00,3, 0x890ac10,3, 0x890ac20,3, 0x890ac30,3, 0x890ac40,3, 0x890ac50,3, 0x890ac60,3, 0x890ac70,3, 0x890ac80,3, 0x890ac90,3, 0x890aca0,3, 0x890acb0,3, 0x890acc0,3, 0x890acd0,3, 0x890ace0,3, 0x890acf0,3, 0x890ad00,3, 0x890ad10,3, 0x890ad20,3, 0x890ad30,3, 0x890ad40,3, 0x890ad50,3, 0x890ad60,3, 0x890ad70,3, 0x890ad80,3, 0x890ad90,3, 0x890ada0,3, 0x890adb0,3, 0x890adc0,3, 0x890add0,3, 0x890ade0,3, 0x890adf0,3, 0x890ae00,3, 0x890ae10,3, 0x890ae20,3, 0x890ae30,3, 0x890ae40,3, 0x890ae50,3, 0x890ae60,3, 0x890ae70,3, 0x890ae80,3, 0x890ae90,3, 0x890aea0,3, 0x890aeb0,3, 0x890aec0,3, 0x890aed0,3, 0x890aee0,3, 0x890aef0,3, 0x890af00,3, 0x890af10,3, 0x890af20,3, 0x890af30,3, 0x890af40,3, 0x890af50,3, 0x890af60,3, 0x890af70,3, 0x890af80,3, 0x890af90,3, 0x890afa0,3, 0x890afb0,3, 0x890afc0,3, 0x890afd0,3, 0x890afe0,3, 0x890aff0,3, 0x890b000,3, 0x890b010,3, 0x890b020,3, 0x890b030,3, 0x890b040,3, 0x890b050,3, 0x890b060,3, 0x890b070,3, 0x890b080,3, 0x890b090,3, 0x890b0a0,3, 0x890b0b0,3, 0x890b0c0,3, 0x890b0d0,3, 0x890b0e0,3, 0x890b0f0,3, 0x890b100,3, 0x890b110,3, 0x890b120,3, 0x890b130,3, 0x890b140,3, 0x890b150,3, 0x890b160,3, 0x890b170,3, 0x890b180,3, 0x890b190,3, 0x890b1a0,3, 0x890b1b0,3, 0x890b1c0,3, 0x890b1d0,3, 0x890b1e0,3, 0x890b1f0,3, 0x890b200,3, 0x890b210,3, 0x890b220,3, 0x890b230,3, 0x890b240,3, 0x890b250,3, 0x890b260,3, 0x890b270,3, 0x890b280,3, 0x890b290,3, 0x890b2a0,3, 0x890b2b0,3, 0x890b2c0,3, 0x890b2d0,3, 0x890b2e0,3, 0x890b2f0,3, 0x890b300,3, 0x890b310,3, 0x890b320,3, 0x890b330,3, 0x890b340,3, 0x890b350,3, 0x890b360,3, 0x890b370,3, 0x890b380,3, 0x890b390,3, 0x890b3a0,3, 0x890b3b0,3, 0x890b3c0,3, 0x890b3d0,3, 0x890b3e0,3, 0x890b3f0,3, 0x890b400,3, 0x890b410,3, 0x890b420,3, 0x890b430,3, 0x890b440,3, 0x890b450,3, 0x890b460,3, 0x890b470,3, 0x890b480,3, 0x890b490,3, 0x890b4a0,3, 0x890b4b0,3, 0x890b4c0,3, 0x890b4d0,3, 0x890b4e0,3, 0x890b4f0,3, 0x890b500,3, 0x890b510,3, 0x890b520,3, 0x890b530,3, 0x890b540,3, 0x890b550,3, 0x890b560,3, 0x890b570,3, 0x890b580,3, 0x890b590,3, 0x890b5a0,3, 0x890b5b0,3, 0x890b5c0,3, 0x890b5d0,3, 0x890b5e0,3, 0x890b5f0,3, 0x890b600,3, 0x890b610,3, 0x890b620,3, 0x890b630,3, 0x890b640,3, 0x890b650,3, 0x890b660,3, 0x890b670,3, 0x890b680,3, 0x890b690,3, 0x890b6a0,3, 0x890b6b0,3, 0x890b6c0,3, 0x890b6d0,3, 0x890b6e0,3, 0x890b6f0,3, 0x890b700,3, 0x890b710,3, 0x890b720,3, 0x890b730,3, 0x890b740,3, 0x890b750,3, 0x890b760,3, 0x890b770,3, 0x890b780,3, 0x890b790,3, 0x890b7a0,3, 0x890b7b0,3, 0x890b7c0,3, 0x890b7d0,3, 0x890b7e0,3, 0x890b7f0,3, 0x890b800,3, 0x890b810,3, 0x890b820,3, 0x890b830,3, 0x890b840,3, 0x890b850,3, 0x890b860,3, 0x890b870,3, 0x890b880,3, 0x890b890,3, 0x890b8a0,3, 0x890b8b0,3, 0x890b8c0,3, 0x890b8d0,3, 0x890b8e0,3, 0x890b8f0,3, 0x890b900,3, 0x890b910,3, 0x890b920,3, 0x890b930,3, 0x890b940,3, 0x890b950,3, 0x890b960,3, 0x890b970,3, 0x890b980,3, 0x890b990,3, 0x890b9a0,3, 0x890b9b0,3, 0x890b9c0,3, 0x890b9d0,3, 0x890b9e0,3, 0x890b9f0,3, 0x890ba00,3, 0x890ba10,3, 0x890ba20,3, 0x890ba30,3, 0x890ba40,3, 0x890ba50,3, 0x890ba60,3, 0x890ba70,3, 0x890ba80,3, 0x890ba90,3, 0x890baa0,3, 0x890bab0,3, 0x890bac0,3, 0x890bad0,3, 0x890bae0,3, 0x890baf0,3, 0x890bb00,3, 0x890bb10,3, 0x890bb20,3, 0x890bb30,3, 0x890bb40,3, 0x890bb50,3, 0x890bb60,3, 0x890bb70,3, 0x890bb80,3, 0x890bb90,3, 0x890bba0,3, 0x890bbb0,3, 0x890bbc0,3, 0x890bbd0,3, 0x890bbe0,3, 0x890bbf0,3, 0x890bc00,3, 0x890bc10,3, 0x890bc20,3, 0x890bc30,3, 0x890bc40,3, 0x890bc50,3, 0x890bc60,3, 0x890bc70,3, 0x890bc80,3, 0x890bc90,3, 0x890bca0,3, 0x890bcb0,3, 0x890bcc0,3, 0x890bcd0,3, 0x890bce0,3, 0x890bcf0,3, 0x890bd00,3, 0x890bd10,3, 0x890bd20,3, 0x890bd30,3, 0x890bd40,3, 0x890bd50,3, 0x890bd60,3, 0x890bd70,3, 0x890bd80,3, 0x890bd90,3, 0x890bda0,3, 0x890bdb0,3, 0x890bdc0,3, 0x890bdd0,3, 0x890bde0,3, 0x890bdf0,3, 0x890be00,3, 0x890be10,3, 0x890be20,3, 0x890be30,3, 0x890be40,3, 0x890be50,3, 0x890be60,3, 0x890be70,3, 0x890be80,3, 0x890be90,3, 0x890bea0,3, 0x890beb0,3, 0x890bec0,3, 0x890bed0,3, 0x890bee0,3, 0x890bef0,3, 0x890bf00,3, 0x890bf10,3, 0x890bf20,3, 0x890bf30,3, 0x890bf40,3, 0x890bf50,3, 0x890bf60,3, 0x890bf70,3, 0x890bf80,3, 0x890bf90,3, 0x890bfa0,3, 0x890bfb0,3, 0x890bfc0,3, 0x890bfd0,3, 0x890bfe0,3, 0x890bff0,3, 0x890c000,3, 0x890c010,3, 0x890c020,3, 0x890c030,3, 0x890c040,3, 0x890c050,3, 0x890c060,3, 0x890c070,3, 0x890c080,3, 0x890c090,3, 0x890c0a0,3, 0x890c0b0,3, 0x890c0c0,3, 0x890c0d0,3, 0x890c0e0,3, 0x890c0f0,3, 0x890c100,3, 0x890c110,3, 0x890c120,3, 0x890c130,3, 0x890c140,3, 0x890c150,3, 0x890c160,3, 0x890c170,3, 0x890c180,3, 0x890c190,3, 0x890c1a0,3, 0x890c1b0,3, 0x890c1c0,3, 0x890c1d0,3, 0x890c1e0,3, 0x890c1f0,3, 0x890c200,3, 0x890c210,3, 0x890c220,3, 0x890c230,3, 0x890c240,3, 0x890c250,3, 0x890c260,3, 0x890c270,3, 0x890c280,3, 0x890c290,3, 0x890c2a0,3, 0x890c2b0,3, 0x890c2c0,3, 0x890c2d0,3, 0x890c2e0,3, 0x890c2f0,3, 0x890c300,3, 0x890c310,3, 0x890c320,3, 0x890c330,3, 0x890c340,3, 0x890c350,3, 0x890c360,3, 0x890c370,3, 0x890c380,3, 0x890c390,3, 0x890c3a0,3, 0x890c3b0,3, 0x890c3c0,3, 0x890c3d0,3, 0x890c3e0,3, 0x890c3f0,3, 0x890c400,3, 0x890c410,3, 0x890c420,3, 0x890c430,3, 0x890c440,3, 0x890c450,3, 0x890c460,3, 0x890c470,3, 0x890c480,3, 0x890c490,3, 0x890c4a0,3, 0x890c4b0,3, 0x890c4c0,3, 0x890c4d0,3, 0x890c4e0,3, 0x890c4f0,3, 0x890c500,3, 0x890c510,3, 0x890c520,3, 0x890c530,3, 0x890c540,3, 0x890c550,3, 0x890c560,3, 0x890c570,3, 0x890c580,3, 0x890c590,3, 0x890c5a0,3, 0x890c5b0,3, 0x890c5c0,3, 0x890c5d0,3, 0x890c5e0,3, 0x890c5f0,3, 0x890c600,3, 0x890c610,3, 0x890c620,3, 0x890c630,3, 0x890c640,3, 0x890c650,3, 0x890c660,3, 0x890c670,3, 0x890c680,3, 0x890c690,3, 0x890c6a0,3, 0x890c6b0,3, 0x890c6c0,3, 0x890c6d0,3, 0x890c6e0,3, 0x890c6f0,3, 0x890c700,3, 0x890c710,3, 0x890c720,3, 0x890c730,3, 0x890c740,3, 0x890c750,3, 0x890c760,3, 0x890c770,3, 0x890c780,3, 0x890c790,3, 0x890c7a0,3, 0x890c7b0,3, 0x890c7c0,3, 0x890c7d0,3, 0x890c7e0,3, 0x890c7f0,3, 0x890c800,3, 0x890c810,3, 0x890c820,3, 0x890c830,3, 0x890c840,3, 0x890c850,3, 0x890c860,3, 0x890c870,3, 0x890c880,3, 0x890c890,3, 0x890c8a0,3, 0x890c8b0,3, 0x890c8c0,3, 0x890c8d0,3, 0x890c8e0,3, 0x890c8f0,3, 0x890c900,3, 0x890c910,3, 0x890c920,3, 0x890c930,3, 0x890c940,3, 0x890c950,3, 0x890c960,3, 0x890c970,3, 0x890c980,3, 0x890c990,3, 0x890c9a0,3, 0x890c9b0,3, 0x890c9c0,3, 0x890c9d0,3, 0x890c9e0,3, 0x890c9f0,3, 0x890ca00,3, 0x890ca10,3, 0x890ca20,3, 0x890ca30,3, 0x890ca40,3, 0x890ca50,3, 0x890ca60,3, 0x890ca70,3, 0x890ca80,3, 0x890ca90,3, 0x890caa0,3, 0x890cab0,3, 0x890cac0,3, 0x890cad0,3, 0x890cae0,3, 0x890caf0,3, 0x890cb00,3, 0x890cb10,3, 0x890cb20,3, 0x890cb30,3, 0x890cb40,3, 0x890cb50,3, 0x890cb60,3, 0x890cb70,3, 0x890cb80,3, 0x890cb90,3, 0x890cba0,3, 0x890cbb0,3, 0x890cbc0,3, 0x890cbd0,3, 0x890cbe0,3, 0x890cbf0,3, 0x890cc00,3, 0x890cc10,3, 0x890cc20,3, 0x890cc30,3, 0x890cc40,3, 0x890cc50,3, 0x890cc60,3, 0x890cc70,3, 0x890cc80,3, 0x890cc90,3, 0x890cca0,3, 0x890ccb0,3, 0x890ccc0,3, 0x890ccd0,3, 0x890cce0,3, 0x890ccf0,3, 0x890cd00,3, 0x890cd10,3, 0x890cd20,3, 0x890cd30,3, 0x890cd40,3, 0x890cd50,3, 0x890cd60,3, 0x890cd70,3, 0x890cd80,3, 0x890cd90,3, 0x890cda0,3, 0x890cdb0,3, 0x890cdc0,3, 0x890cdd0,3, 0x890cde0,3, 0x890cdf0,3, 0x890ce00,3, 0x890ce10,3, 0x890ce20,3, 0x890ce30,3, 0x890ce40,3, 0x890ce50,3, 0x890ce60,3, 0x890ce70,3, 0x890ce80,3, 0x890ce90,3, 0x890cea0,3, 0x890ceb0,3, 0x890cec0,3, 0x890ced0,3, 0x890cee0,3, 0x890cef0,3, 0x890cf00,3, 0x890cf10,3, 0x890cf20,3, 0x890cf30,3, 0x890cf40,3, 0x890cf50,3, 0x890cf60,3, 0x890cf70,3, 0x890cf80,3, 0x890cf90,3, 0x890cfa0,3, 0x890cfb0,3, 0x890cfc0,3, 0x890cfd0,3, 0x890cfe0,3, 0x890cff0,3, 0x890d000,3, 0x890d010,3, 0x890d020,3, 0x890d030,3, 0x890d040,3, 0x890d050,3, 0x890d060,3, 0x890d070,3, 0x890d080,3, 0x890d090,3, 0x890d0a0,3, 0x890d0b0,3, 0x890d0c0,3, 0x890d0d0,3, 0x890d0e0,3, 0x890d0f0,3, 0x890d100,3, 0x890d110,3, 0x890d120,3, 0x890d130,3, 0x890d140,3, 0x890d150,3, 0x890d160,3, 0x890d170,3, 0x890d180,3, 0x890d190,3, 0x890d1a0,3, 0x890d1b0,3, 0x890d1c0,3, 0x890d1d0,3, 0x890d1e0,3, 0x890d1f0,3, 0x890d200,3, 0x890d210,3, 0x890d220,3, 0x890d230,3, 0x890d240,3, 0x890d250,3, 0x890d260,3, 0x890d270,3, 0x890d280,3, 0x890d290,3, 0x890d2a0,3, 0x890d2b0,3, 0x890d2c0,3, 0x890d2d0,3, 0x890d2e0,3, 0x890d2f0,3, 0x890d300,3, 0x890d310,3, 0x890d320,3, 0x890d330,3, 0x890d340,3, 0x890d350,3, 0x890d360,3, 0x890d370,3, 0x890d380,3, 0x890d390,3, 0x890d3a0,3, 0x890d3b0,3, 0x890d3c0,3, 0x890d3d0,3, 0x890d3e0,3, 0x890d3f0,3, 0x890d400,3, 0x890d410,3, 0x890d420,3, 0x890d430,3, 0x890d440,3, 0x890d450,3, 0x890d460,3, 0x890d470,3, 0x890d480,3, 0x890d490,3, 0x890d4a0,3, 0x890d4b0,3, 0x890d4c0,3, 0x890d4d0,3, 0x890d4e0,3, 0x890d4f0,3, 0x890d500,3, 0x890d510,3, 0x890d520,3, 0x890d530,3, 0x890d540,3, 0x890d550,3, 0x890d560,3, 0x890d570,3, 0x890d580,3, 0x890d590,3, 0x890d5a0,3, 0x890d5b0,3, 0x890d5c0,3, 0x890d5d0,3, 0x890d5e0,3, 0x890d5f0,3, 0x890d600,3, 0x890d610,3, 0x890d620,3, 0x890d630,3, 0x890d640,3, 0x890d650,3, 0x890d660,3, 0x890d670,3, 0x890d680,3, 0x890d690,3, 0x890d6a0,3, 0x890d6b0,3, 0x890d6c0,3, 0x890d6d0,3, 0x890d6e0,3, 0x890d6f0,3, 0x890d700,3, 0x890d710,3, 0x890d720,3, 0x890d730,3, 0x890d740,3, 0x890d750,3, 0x890d760,3, 0x890d770,3, 0x890d780,3, 0x890d790,3, 0x890d7a0,3, 0x890d7b0,3, 0x890d7c0,3, 0x890d7d0,3, 0x890d7e0,3, 0x890d7f0,3, 0x890d800,3, 0x890d810,3, 0x890d820,3, 0x890d830,3, 0x890d840,3, 0x890d850,3, 0x890d860,3, 0x890d870,3, 0x890d880,3, 0x890d890,3, 0x890d8a0,3, 0x890d8b0,3, 0x890d8c0,3, 0x890d8d0,3, 0x890d8e0,3, 0x890d8f0,3, 0x890d900,3, 0x890d910,3, 0x890d920,3, 0x890d930,3, 0x890d940,3, 0x890d950,3, 0x890d960,3, 0x890d970,3, 0x890d980,3, 0x890d990,3, 0x890d9a0,3, 0x890d9b0,3, 0x890d9c0,3, 0x890d9d0,3, 0x890d9e0,3, 0x890d9f0,3, 0x890da00,3, 0x890da10,3, 0x890da20,3, 0x890da30,3, 0x890da40,3, 0x890da50,3, 0x890da60,3, 0x890da70,3, 0x890da80,3, 0x890da90,3, 0x890daa0,3, 0x890dab0,3, 0x890dac0,3, 0x890dad0,3, 0x890dae0,3, 0x890daf0,3, 0x890db00,3, 0x890db10,3, 0x890db20,3, 0x890db30,3, 0x890db40,3, 0x890db50,3, 0x890db60,3, 0x890db70,3, 0x890db80,3, 0x890db90,3, 0x890dba0,3, 0x890dbb0,3, 0x890dbc0,3, 0x890dbd0,3, 0x890dbe0,3, 0x890dbf0,3, 0x890dc00,3, 0x890dc10,3, 0x890dc20,3, 0x890dc30,3, 0x890dc40,3, 0x890dc50,3, 0x890dc60,3, 0x890dc70,3, 0x890dc80,3, 0x890dc90,3, 0x890dca0,3, 0x890dcb0,3, 0x890dcc0,3, 0x890dcd0,3, 0x890dce0,3, 0x890dcf0,3, 0x890dd00,3, 0x890dd10,3, 0x890dd20,3, 0x890dd30,3, 0x890dd40,3, 0x890dd50,3, 0x890dd60,3, 0x890dd70,3, 0x890dd80,3, 0x890dd90,3, 0x890dda0,3, 0x890ddb0,3, 0x890ddc0,3, 0x890ddd0,3, 0x890dde0,3, 0x890ddf0,3, 0x890de00,3, 0x890de10,3, 0x890de20,3, 0x890de30,3, 0x890de40,3, 0x890de50,3, 0x890de60,3, 0x890de70,3, 0x890de80,3, 0x890de90,3, 0x890dea0,3, 0x890deb0,3, 0x890dec0,3, 0x890ded0,3, 0x890dee0,3, 0x890def0,3, 0x890df00,3, 0x890df10,3, 0x890df20,3, 0x890df30,3, 0x890df40,3, 0x890df50,3, 0x890df60,3, 0x890df70,3, 0x890df80,3, 0x890df90,3, 0x890dfa0,3, 0x890dfb0,3, 0x890dfc0,3, 0x890dfd0,3, 0x890dfe0,3, 0x890dff0,3, 0x890e000,3, 0x890e010,3, 0x890e020,3, 0x890e030,3, 0x890e040,3, 0x890e050,3, 0x890e060,3, 0x890e070,3, 0x890e080,3, 0x890e090,3, 0x890e0a0,3, 0x890e0b0,3, 0x890e0c0,3, 0x890e0d0,3, 0x890e0e0,3, 0x890e0f0,3, 0x890e100,3, 0x890e110,3, 0x890e120,3, 0x890e130,3, 0x890e140,3, 0x890e150,3, 0x890e160,3, 0x890e170,3, 0x890e180,3, 0x890e190,3, 0x890e1a0,3, 0x890e1b0,3, 0x890e1c0,3, 0x890e1d0,3, 0x890e1e0,3, 0x890e1f0,3, 0x890e200,3, 0x890e210,3, 0x890e220,3, 0x890e230,3, 0x890e240,3, 0x890e250,3, 0x890e260,3, 0x890e270,3, 0x890e280,3, 0x890e290,3, 0x890e2a0,3, 0x890e2b0,3, 0x890e2c0,3, 0x890e2d0,3, 0x890e2e0,3, 0x890e2f0,3, 0x890e300,3, 0x890e310,3, 0x890e320,3, 0x890e330,3, 0x890e340,3, 0x890e350,3, 0x890e360,3, 0x890e370,3, 0x890e380,3, 0x890e390,3, 0x890e3a0,3, 0x890e3b0,3, 0x890e3c0,3, 0x890e3d0,3, 0x890e3e0,3, 0x890e3f0,3, 0x890e400,3, 0x890e410,3, 0x890e420,3, 0x890e430,3, 0x890e440,3, 0x890e450,3, 0x890e460,3, 0x890e470,3, 0x890e480,3, 0x890e490,3, 0x890e4a0,3, 0x890e4b0,3, 0x890e4c0,3, 0x890e4d0,3, 0x890e4e0,3, 0x890e4f0,3, 0x890e500,3, 0x890e510,3, 0x890e520,3, 0x890e530,3, 0x890e540,3, 0x890e550,3, 0x890e560,3, 0x890e570,3, 0x890e580,3, 0x890e590,3, 0x890e5a0,3, 0x890e5b0,3, 0x890e5c0,3, 0x890e5d0,3, 0x890e5e0,3, 0x890e5f0,3, 0x890e600,3, 0x890e610,3, 0x890e620,3, 0x890e630,3, 0x890e640,3, 0x890e650,3, 0x890e660,3, 0x890e670,3, 0x890e680,3, 0x890e690,3, 0x890e6a0,3, 0x890e6b0,3, 0x890e6c0,3, 0x890e6d0,3, 0x890e6e0,3, 0x890e6f0,3, 0x890e700,3, 0x890e710,3, 0x890e720,3, 0x890e730,3, 0x890e740,3, 0x890e750,3, 0x890e760,3, 0x890e770,3, 0x890e780,3, 0x890e790,3, 0x890e7a0,3, 0x890e7b0,3, 0x890e7c0,3, 0x890e7d0,3, 0x890e7e0,3, 0x890e7f0,3, 0x890e800,3, 0x890e810,3, 0x890e820,3, 0x890e830,3, 0x890e840,3, 0x890e850,3, 0x890e860,3, 0x890e870,3, 0x890e880,3, 0x890e890,3, 0x890e8a0,3, 0x890e8b0,3, 0x890e8c0,3, 0x890e8d0,3, 0x890e8e0,3, 0x890e8f0,3, 0x890e900,3, 0x890e910,3, 0x890e920,3, 0x890e930,3, 0x890e940,3, 0x890e950,3, 0x890e960,3, 0x890e970,3, 0x890e980,3, 0x890e990,3, 0x890e9a0,3, 0x890e9b0,3, 0x890e9c0,3, 0x890e9d0,3, 0x890e9e0,3, 0x890e9f0,3, 0x890ea00,3, 0x890ea10,3, 0x890ea20,3, 0x890ea30,3, 0x890ea40,3, 0x890ea50,3, 0x890ea60,3, 0x890ea70,3, 0x890ea80,3, 0x890ea90,3, 0x890eaa0,3, 0x890eab0,3, 0x890eac0,3, 0x890ead0,3, 0x890eae0,3, 0x890eaf0,3, 0x890eb00,3, 0x890eb10,3, 0x890eb20,3, 0x890eb30,3, 0x890eb40,3, 0x890eb50,3, 0x890eb60,3, 0x890eb70,3, 0x890eb80,3, 0x890eb90,3, 0x890eba0,3, 0x890ebb0,3, 0x890ebc0,3, 0x890ebd0,3, 0x890ebe0,3, 0x890ebf0,3, 0x890ec00,3, 0x890ec10,3, 0x890ec20,3, 0x890ec30,3, 0x890ec40,3, 0x890ec50,3, 0x890ec60,3, 0x890ec70,3, 0x890ec80,3, 0x890ec90,3, 0x890eca0,3, 0x890ecb0,3, 0x890ecc0,3, 0x890ecd0,3, 0x890ece0,3, 0x890ecf0,3, 0x890ed00,3, 0x890ed10,3, 0x890ed20,3, 0x890ed30,3, 0x890ed40,3, 0x890ed50,3, 0x890ed60,3, 0x890ed70,3, 0x890ed80,3, 0x890ed90,3, 0x890eda0,3, 0x890edb0,3, 0x890edc0,3, 0x890edd0,3, 0x890ede0,3, 0x890edf0,3, 0x890ee00,3, 0x890ee10,3, 0x890ee20,3, 0x890ee30,3, 0x890ee40,3, 0x890ee50,3, 0x890ee60,3, 0x890ee70,3, 0x890ee80,3, 0x890ee90,3, 0x890eea0,3, 0x890eeb0,3, 0x890eec0,3, 0x890eed0,3, 0x890eee0,3, 0x890eef0,3, 0x890ef00,3, 0x890ef10,3, 0x890ef20,3, 0x890ef30,3, 0x890ef40,3, 0x890ef50,3, 0x890ef60,3, 0x890ef70,3, 0x890ef80,3, 0x890ef90,3, 0x890efa0,3, 0x890efb0,3, 0x890efc0,3, 0x890efd0,3, 0x890efe0,3, 0x890eff0,3, 0x890f000,3, 0x890f010,3, 0x890f020,3, 0x890f030,3, 0x890f040,3, 0x890f050,3, 0x890f060,3, 0x890f070,3, 0x890f080,3, 0x890f090,3, 0x890f0a0,3, 0x890f0b0,3, 0x890f0c0,3, 0x890f0d0,3, 0x890f0e0,3, 0x890f0f0,3, 0x890f100,3, 0x890f110,3, 0x890f120,3, 0x890f130,3, 0x890f140,3, 0x890f150,3, 0x890f160,3, 0x890f170,3, 0x890f180,3, 0x890f190,3, 0x890f1a0,3, 0x890f1b0,3, 0x890f1c0,3, 0x890f1d0,3, 0x890f1e0,3, 0x890f1f0,3, 0x890f200,3, 0x890f210,3, 0x890f220,3, 0x890f230,3, 0x890f240,3, 0x890f250,3, 0x890f260,3, 0x890f270,3, 0x890f280,3, 0x890f290,3, 0x890f2a0,3, 0x890f2b0,3, 0x890f2c0,3, 0x890f2d0,3, 0x890f2e0,3, 0x890f2f0,3, 0x890f300,3, 0x890f310,3, 0x890f320,3, 0x890f330,3, 0x890f340,3, 0x890f350,3, 0x890f360,3, 0x890f370,3, 0x890f380,3, 0x890f390,3, 0x890f3a0,3, 0x890f3b0,3, 0x890f3c0,3, 0x890f3d0,3, 0x890f3e0,3, 0x890f3f0,3, 0x890f400,3, 0x890f410,3, 0x890f420,3, 0x890f430,3, 0x890f440,3, 0x890f450,3, 0x890f460,3, 0x890f470,3, 0x890f480,3, 0x890f490,3, 0x890f4a0,3, 0x890f4b0,3, 0x890f4c0,3, 0x890f4d0,3, 0x890f4e0,3, 0x890f4f0,3, 0x890f500,3, 0x890f510,3, 0x890f520,3, 0x890f530,3, 0x890f540,3, 0x890f550,3, 0x890f560,3, 0x890f570,3, 0x890f580,3, 0x890f590,3, 0x890f5a0,3, 0x890f5b0,3, 0x890f5c0,3, 0x890f5d0,3, 0x890f5e0,3, 0x890f5f0,3, 0x890f600,3, 0x890f610,3, 0x890f620,3, 0x890f630,3, 0x890f640,3, 0x890f650,3, 0x890f660,3, 0x890f670,3, 0x890f680,3, 0x890f690,3, 0x890f6a0,3, 0x890f6b0,3, 0x890f6c0,3, 0x890f6d0,3, 0x890f6e0,3, 0x890f6f0,3, 0x890f700,3, 0x890f710,3, 0x890f720,3, 0x890f730,3, 0x890f740,3, 0x890f750,3, 0x890f760,3, 0x890f770,3, 0x890f780,3, 0x890f790,3, 0x890f7a0,3, 0x890f7b0,3, 0x890f7c0,3, 0x890f7d0,3, 0x890f7e0,3, 0x890f7f0,3, 0x890f800,3, 0x890f810,3, 0x890f820,3, 0x890f830,3, 0x890f840,3, 0x890f850,3, 0x890f860,3, 0x890f870,3, 0x890f880,3, 0x890f890,3, 0x890f8a0,3, 0x890f8b0,3, 0x890f8c0,3, 0x890f8d0,3, 0x890f8e0,3, 0x890f8f0,3, 0x890f900,3, 0x890f910,3, 0x890f920,3, 0x890f930,3, 0x890f940,3, 0x890f950,3, 0x890f960,3, 0x890f970,3, 0x890f980,3, 0x890f990,3, 0x890f9a0,3, 0x890f9b0,3, 0x890f9c0,3, 0x890f9d0,3, 0x890f9e0,3, 0x890f9f0,3, 0x890fa00,3, 0x890fa10,3, 0x890fa20,3, 0x890fa30,3, 0x890fa40,3, 0x890fa50,3, 0x890fa60,3, 0x890fa70,3, 0x890fa80,3, 0x890fa90,3, 0x890faa0,3, 0x890fab0,3, 0x890fac0,3, 0x890fad0,3, 0x890fae0,3, 0x890faf0,3, 0x890fb00,3, 0x890fb10,3, 0x890fb20,3, 0x890fb30,3, 0x890fb40,3, 0x890fb50,3, 0x890fb60,3, 0x890fb70,3, 0x890fb80,3, 0x890fb90,3, 0x890fba0,3, 0x890fbb0,3, 0x890fbc0,3, 0x890fbd0,3, 0x890fbe0,3, 0x890fbf0,3, 0x890fc00,3, 0x890fc10,3, 0x890fc20,3, 0x890fc30,3, 0x890fc40,3, 0x890fc50,3, 0x890fc60,3, 0x890fc70,3, 0x890fc80,3, 0x890fc90,3, 0x890fca0,3, 0x890fcb0,3, 0x890fcc0,3, 0x890fcd0,3, 0x890fce0,3, 0x890fcf0,3, 0x890fd00,3, 0x890fd10,3, 0x890fd20,3, 0x890fd30,3, 0x890fd40,3, 0x890fd50,3, 0x890fd60,3, 0x890fd70,3, 0x890fd80,3, 0x890fd90,3, 0x890fda0,3, 0x890fdb0,3, 0x890fdc0,3, 0x890fdd0,3, 0x890fde0,3, 0x890fdf0,3, 0x890fe00,3, 0x890fe10,3, 0x890fe20,3, 0x890fe30,3, 0x890fe40,3, 0x890fe50,3, 0x890fe60,3, 0x890fe70,3, 0x890fe80,3, 0x890fe90,3, 0x890fea0,3, 0x890feb0,3, 0x890fec0,3, 0x890fed0,3, 0x890fee0,3, 0x890fef0,3, 0x890ff00,3, 0x890ff10,3, 0x890ff20,3, 0x890ff30,3, 0x890ff40,3, 0x890ff50,3, 0x890ff60,3, 0x890ff70,3, 0x890ff80,3, 0x890ff90,3, 0x890ffa0,3, 0x890ffb0,3, 0x890ffc0,3, 0x890ffd0,3, 0x890ffe0,3, 0x890fff0,3, 0x8910000,3, 0x8910010,3, 0x8910020,3, 0x8910030,3, 0x8910040,3, 0x8910050,3, 0x8910060,3, 0x8910070,3, 0x8910080,3, 0x8910090,3, 0x89100a0,3, 0x89100b0,3, 0x89100c0,3, 0x89100d0,3, 0x89100e0,3, 0x89100f0,3, 0x8910100,3, 0x8910110,3, 0x8910120,3, 0x8910130,3, 0x8910140,3, 0x8910150,3, 0x8910160,3, 0x8910170,3, 0x8910180,3, 0x8910190,3, 0x89101a0,3, 0x89101b0,3, 0x89101c0,3, 0x89101d0,3, 0x89101e0,3, 0x89101f0,3, 0x8920000,2, 0x8920040,9, 0x8920080,3, 0x8920090,3, 0x89200a0,3, 0x8940000,3, 0x8940010,3, 0x8940020,3, 0x8940030,3, 0x8940040,3, 0x8940050,3, 0x8940060,3, 0x8940070,3, 0x8940080,3, 0x8940090,3, 0x89400a0,3, 0x89400b0,3, 0x89400c0,3, 0x89400d0,3, 0x89400e0,3, 0x89400f0,3, 0x8940100,2, 0x8940140,9, 0x8940180,3, 0x8940190,3, 0x89401a0,3, 0x8980000,3, 0x8980010,3, 0x8980020,3, 0x8980030,3, 0x8980040,3, 0x8980050,3, 0x8980060,3, 0x8980070,3, 0x8980080,3, 0x8980090,3, 0x89800a0,3, 0x8980100,3, 0x8980110,3, 0x8980120,3, 0x8980130,3, 0x8980140,3, 0x8980150,3, 0x8980160,3, 0x8980170,3, 0x8980180,3, 0x8980190,3, 0x89801a0,3, 0x8980200,3, 0x8980210,3, 0x8980220,3, 0x8980230,3, 0x8980240,3, 0x8980250,3, 0x8980260,3, 0x8980270,3, 0x8980280,3, 0x8980290,3, 0x89802a0,3, 0x8980300,3, 0x8980310,3, 0x8980320,3, 0x8980330,3, 0x8980340,3, 0x8980350,3, 0x8980360,3, 0x8980370,3, 0x8980380,3, 0x8980390,3, 0x89803a0,3, 0x8980400,3, 0x8980410,3, 0x8980420,3, 0x8980430,3, 0x8980440,3, 0x8980450,3, 0x8980460,3, 0x8980470,3, 0x8980480,3, 0x8980490,3, 0x89804a0,3, 0x8980500,3, 0x8980510,3, 0x8980520,3, 0x8980530,3, 0x8980540,3, 0x8980550,3, 0x8980560,3, 0x8980570,3, 0x8980580,3, 0x8980590,3, 0x89805a0,3, 0x8980600,3, 0x8980610,3, 0x8980620,3, 0x8980630,3, 0x8980640,3, 0x8980650,3, 0x8980660,3, 0x8980670,3, 0x8980680,3, 0x8980690,3, 0x89806a0,3, 0x8980700,3, 0x8980710,3, 0x8980720,3, 0x8980730,3, 0x8980740,3, 0x8980750,3, 0x8980760,3, 0x8980770,3, 0x8980780,3, 0x8980790,3, 0x89807a0,3, 0x8980800,3, 0x8980810,3, 0x8980820,3, 0x8980830,3, 0x8980840,3, 0x8980850,3, 0x8980860,3, 0x8980870,3, 0x8980880,3, 0x8980890,3, 0x89808a0,3, 0x8980900,3, 0x8980910,3, 0x8980920,3, 0x8980930,3, 0x8980940,3, 0x8980950,3, 0x8980960,3, 0x8980970,3, 0x8980980,3, 0x8980990,3, 0x89809a0,3, 0x8980a00,3, 0x8980a10,3, 0x8980a20,3, 0x8980a30,3, 0x8980a40,3, 0x8980a50,3, 0x8980a60,3, 0x8980a70,3, 0x8980a80,3, 0x8980a90,3, 0x8980aa0,3, 0x8980b00,3, 0x8980b10,3, 0x8980b20,3, 0x8980b30,3, 0x8980b40,3, 0x8980b50,3, 0x8980b60,3, 0x8980b70,3, 0x8980b80,3, 0x8980b90,3, 0x8980ba0,3, 0x8980c00,3, 0x8980c10,3, 0x8980c20,3, 0x8980c30,3, 0x8980c40,3, 0x8980c50,3, 0x8980c60,3, 0x8980c70,3, 0x8980c80,3, 0x8980c90,3, 0x8980ca0,3, 0x8980d00,3, 0x8980d10,3, 0x8980d20,3, 0x8980d30,3, 0x8980d40,3, 0x8980d50,3, 0x8980d60,3, 0x8980d70,3, 0x8980d80,3, 0x8980d90,3, 0x8980da0,3, 0x8980e00,3, 0x8980e10,3, 0x8980e20,3, 0x8980e30,3, 0x8980e40,3, 0x8980e50,3, 0x8980e60,3, 0x8980e70,3, 0x8980e80,3, 0x8980e90,3, 0x8980ea0,3, 0x8980f00,3, 0x8980f10,3, 0x8980f20,3, 0x8980f30,3, 0x8980f40,3, 0x8980f50,3, 0x8980f60,3, 0x8980f70,3, 0x8980f80,3, 0x8980f90,3, 0x8980fa0,3, 0x8981000,3, 0x8981010,3, 0x8981020,3, 0x8981030,3, 0x8981040,3, 0x8981050,3, 0x8981060,3, 0x8981070,3, 0x8981080,3, 0x8981090,3, 0x89810a0,3, 0x8981100,3, 0x8981110,3, 0x8981120,3, 0x8981130,3, 0x8981140,3, 0x8981150,3, 0x8981160,3, 0x8981170,3, 0x8981180,3, 0x8981190,3, 0x89811a0,3, 0x8981200,3, 0x8981210,3, 0x8981220,3, 0x8981230,3, 0x8981240,3, 0x8981250,3, 0x8981260,3, 0x8981270,3, 0x8981280,3, 0x8981290,3, 0x89812a0,3, 0x8981300,3, 0x8981310,3, 0x8981320,3, 0x8981330,3, 0x8981340,3, 0x8981350,3, 0x8981360,3, 0x8981370,3, 0x8981380,3, 0x8981390,3, 0x89813a0,3, 0x8981400,3, 0x8981410,3, 0x8981420,3, 0x8981430,3, 0x8981440,3, 0x8981450,3, 0x8981460,3, 0x8981470,3, 0x8981480,3, 0x8981490,3, 0x89814a0,3, 0x8981500,3, 0x8981510,3, 0x8981520,3, 0x8981530,3, 0x8981540,3, 0x8981550,3, 0x8981560,3, 0x8981570,3, 0x8981580,3, 0x8981590,3, 0x89815a0,3, 0x8981600,3, 0x8981610,3, 0x8981620,3, 0x8981630,3, 0x8981640,3, 0x8981650,3, 0x8981660,3, 0x8981670,3, 0x8981680,3, 0x8981690,3, 0x89816a0,3, 0x8981700,3, 0x8981710,3, 0x8981720,3, 0x8981730,3, 0x8981740,3, 0x8981750,3, 0x8981760,3, 0x8981770,3, 0x8981780,3, 0x8981790,3, 0x89817a0,3, 0x8981800,3, 0x8981810,3, 0x8981820,3, 0x8981830,3, 0x8981840,3, 0x8981850,3, 0x8981860,3, 0x8981870,3, 0x8981880,3, 0x8981890,3, 0x89818a0,3, 0x8981900,3, 0x8981910,3, 0x8981920,3, 0x8981930,3, 0x8981940,3, 0x8981950,3, 0x8981960,3, 0x8981970,3, 0x8981980,3, 0x8981990,3, 0x89819a0,3, 0x8981a00,3, 0x8981a10,3, 0x8981a20,3, 0x8981a30,3, 0x8981a40,3, 0x8981a50,3, 0x8981a60,3, 0x8981a70,3, 0x8981a80,3, 0x8981a90,3, 0x8981aa0,3, 0x8981b00,3, 0x8981b10,3, 0x8981b20,3, 0x8981b30,3, 0x8981b40,3, 0x8981b50,3, 0x8981b60,3, 0x8981b70,3, 0x8981b80,3, 0x8981b90,3, 0x8981ba0,3, 0x8981c00,3, 0x8981c10,3, 0x8981c20,3, 0x8981c30,3, 0x8981c40,3, 0x8981c50,3, 0x8981c60,3, 0x8981c70,3, 0x8981c80,3, 0x8981c90,3, 0x8981ca0,3, 0x8981d00,3, 0x8981d10,3, 0x8981d20,3, 0x8981d30,3, 0x8981d40,3, 0x8981d50,3, 0x8981d60,3, 0x8981d70,3, 0x8981d80,3, 0x8981d90,3, 0x8981da0,3, 0x8981e00,3, 0x8981e10,3, 0x8981e20,3, 0x8981e30,3, 0x8981e40,3, 0x8981e50,3, 0x8981e60,3, 0x8981e70,3, 0x8981e80,3, 0x8981e90,3, 0x8981ea0,3, 0x8981f00,3, 0x8981f10,3, 0x8981f20,3, 0x8981f30,3, 0x8981f40,3, 0x8981f50,3, 0x8981f60,3, 0x8981f70,3, 0x8981f80,3, 0x8981f90,3, 0x8981fa0,3, 0x8982000,3, 0x8982010,3, 0x8982020,3, 0x8982030,3, 0x8982040,3, 0x8982050,3, 0x8982060,3, 0x8982070,3, 0x8982080,3, 0x8982090,3, 0x89820a0,3, 0x8982100,3, 0x8982110,3, 0x8982120,3, 0x8982130,3, 0x8982140,3, 0x8982150,3, 0x8982160,3, 0x8982170,3, 0x8982180,3, 0x8982190,3, 0x89821a0,3, 0x8982200,3, 0x8982210,3, 0x8982220,3, 0x8982230,3, 0x8982240,3, 0x8982250,3, 0x8982260,3, 0x8982270,3, 0x8982280,3, 0x8982290,3, 0x89822a0,3, 0x8982300,3, 0x8982310,3, 0x8982320,3, 0x8982330,3, 0x8982340,3, 0x8982350,3, 0x8982360,3, 0x8982370,3, 0x8982380,3, 0x8982390,3, 0x89823a0,3, 0x8982400,3, 0x8982410,3, 0x8982420,3, 0x8982430,3, 0x8982440,3, 0x8982450,3, 0x8982460,3, 0x8982470,3, 0x8982480,3, 0x8982490,3, 0x89824a0,3, 0x8982500,3, 0x8982510,3, 0x8982520,3, 0x8982530,3, 0x8982540,3, 0x8982550,3, 0x8982560,3, 0x8982570,3, 0x8982580,3, 0x8982590,3, 0x89825a0,3, 0x8982600,3, 0x8982610,3, 0x8982620,3, 0x8982630,3, 0x8982640,3, 0x8982650,3, 0x8982660,3, 0x8982670,3, 0x8982680,3, 0x8982690,3, 0x89826a0,3, 0x8982700,3, 0x8982710,3, 0x8982720,3, 0x8982730,3, 0x8982740,3, 0x8982750,3, 0x8982760,3, 0x8982770,3, 0x8982780,3, 0x8982790,3, 0x89827a0,3, 0x8982800,3, 0x8982810,3, 0x8982820,3, 0x8982830,3, 0x8982840,3, 0x8982850,3, 0x8982860,3, 0x8982870,3, 0x8982880,3, 0x8982890,3, 0x89828a0,3, 0x8982900,3, 0x8982910,3, 0x8982920,3, 0x8982930,3, 0x8982940,3, 0x8982950,3, 0x8982960,3, 0x8982970,3, 0x8982980,3, 0x8982990,3, 0x89829a0,3, 0x8982a00,3, 0x8982a10,3, 0x8982a20,3, 0x8982a30,3, 0x8982a40,3, 0x8982a50,3, 0x8982a60,3, 0x8982a70,3, 0x8982a80,3, 0x8982a90,3, 0x8982aa0,3, 0x8982b00,3, 0x8982b10,3, 0x8982b20,3, 0x8982b30,3, 0x8982b40,3, 0x8982b50,3, 0x8982b60,3, 0x8982b70,3, 0x8982b80,3, 0x8982b90,3, 0x8982ba0,3, 0x8982c00,3, 0x8982c10,3, 0x8982c20,3, 0x8982c30,3, 0x8982c40,3, 0x8982c50,3, 0x8982c60,3, 0x8982c70,3, 0x8982c80,3, 0x8982c90,3, 0x8982ca0,3, 0x8982d00,3, 0x8982d10,3, 0x8982d20,3, 0x8982d30,3, 0x8982d40,3, 0x8982d50,3, 0x8982d60,3, 0x8982d70,3, 0x8982d80,3, 0x8982d90,3, 0x8982da0,3, 0x8982e00,3, 0x8982e10,3, 0x8982e20,3, 0x8982e30,3, 0x8982e40,3, 0x8982e50,3, 0x8982e60,3, 0x8982e70,3, 0x8982e80,3, 0x8982e90,3, 0x8982ea0,3, 0x8982f00,3, 0x8982f10,3, 0x8982f20,3, 0x8982f30,3, 0x8982f40,3, 0x8982f50,3, 0x8982f60,3, 0x8982f70,3, 0x8982f80,3, 0x8982f90,3, 0x8982fa0,3, 0x8983000,3, 0x8983010,3, 0x8983020,3, 0x8983030,3, 0x8983040,3, 0x8983050,3, 0x8983060,3, 0x8983070,3, 0x8983080,3, 0x8983090,3, 0x89830a0,3, 0x8983100,3, 0x8983110,3, 0x8983120,3, 0x8983130,3, 0x8983140,3, 0x8983150,3, 0x8983160,3, 0x8983170,3, 0x8983180,3, 0x8983190,3, 0x89831a0,3, 0x8983200,3, 0x8983210,3, 0x8983220,3, 0x8983230,3, 0x8983240,3, 0x8983250,3, 0x8983260,3, 0x8983270,3, 0x8983280,3, 0x8983290,3, 0x89832a0,3, 0x8983300,3, 0x8983310,3, 0x8983320,3, 0x8983330,3, 0x8983340,3, 0x8983350,3, 0x8983360,3, 0x8983370,3, 0x8983380,3, 0x8983390,3, 0x89833a0,3, 0x8983400,3, 0x8983410,3, 0x8983420,3, 0x8983430,3, 0x8983440,3, 0x8983450,3, 0x8983460,3, 0x8983470,3, 0x8983480,3, 0x8983490,3, 0x89834a0,3, 0x8983500,3, 0x8983510,3, 0x8983520,3, 0x8983530,3, 0x8983540,3, 0x8983550,3, 0x8983560,3, 0x8983570,3, 0x8983580,3, 0x8983590,3, 0x89835a0,3, 0x8983600,3, 0x8983610,3, 0x8983620,3, 0x8983630,3, 0x8983640,3, 0x8983650,3, 0x8983660,3, 0x8983670,3, 0x8983680,3, 0x8983690,3, 0x89836a0,3, 0x8983700,3, 0x8983710,3, 0x8983720,3, 0x8983730,3, 0x8983740,3, 0x8983750,3, 0x8983760,3, 0x8983770,3, 0x8983780,3, 0x8983790,3, 0x89837a0,3, 0x8983800,3, 0x8983810,3, 0x8983820,3, 0x8983830,3, 0x8983840,3, 0x8983850,3, 0x8983860,3, 0x8983870,3, 0x8983880,3, 0x8983890,3, 0x89838a0,3, 0x8983900,3, 0x8983910,3, 0x8983920,3, 0x8983930,3, 0x8983940,3, 0x8983950,3, 0x8983960,3, 0x8983970,3, 0x8983980,3, 0x8983990,3, 0x89839a0,3, 0x8983a00,3, 0x8983a10,3, 0x8983a20,3, 0x8983a30,3, 0x8983a40,3, 0x8983a50,3, 0x8983a60,3, 0x8983a70,3, 0x8983a80,3, 0x8983a90,3, 0x8983aa0,3, 0x8983b00,3, 0x8983b10,3, 0x8983b20,3, 0x8983b30,3, 0x8983b40,3, 0x8983b50,3, 0x8983b60,3, 0x8983b70,3, 0x8983b80,3, 0x8983b90,3, 0x8983ba0,3, 0x8983c00,3, 0x8983c10,3, 0x8983c20,3, 0x8983c30,3, 0x8983c40,3, 0x8983c50,3, 0x8983c60,3, 0x8983c70,3, 0x8983c80,3, 0x8983c90,3, 0x8983ca0,3, 0x8983d00,3, 0x8983d10,3, 0x8983d20,3, 0x8983d30,3, 0x8983d40,3, 0x8983d50,3, 0x8983d60,3, 0x8983d70,3, 0x8983d80,3, 0x8983d90,3, 0x8983da0,3, 0x8983e00,3, 0x8983e10,3, 0x8983e20,3, 0x8983e30,3, 0x8983e40,3, 0x8983e50,3, 0x8983e60,3, 0x8983e70,3, 0x8983e80,3, 0x8983e90,3, 0x8983ea0,3, 0x8983f00,3, 0x8983f10,3, 0x8983f20,3, 0x8983f30,3, 0x8983f40,3, 0x8983f50,3, 0x8983f60,3, 0x8983f70,3, 0x8983f80,3, 0x8983f90,3, 0x8983fa0,3, 0x8984000,3, 0x8984010,3, 0x8984020,3, 0x8984030,3, 0x8984040,3, 0x8984050,3, 0x8984060,3, 0x8984070,3, 0x8984080,3, 0x8984090,3, 0x89840a0,3, 0x8984100,3, 0x8984110,3, 0x8984120,3, 0x8984130,3, 0x8984140,3, 0x8984150,3, 0x8984160,3, 0x8984170,3, 0x8984180,3, 0x8984190,3, 0x89841a0,3, 0x8984200,3, 0x8984210,3, 0x8984220,3, 0x8984230,3, 0x8984240,3, 0x8984250,3, 0x8984260,3, 0x8984270,3, 0x8984280,3, 0x8984290,3, 0x89842a0,3, 0x8984300,3, 0x8984310,3, 0x8984320,3, 0x8984330,3, 0x8984340,3, 0x8984350,3, 0x8984360,3, 0x8984370,3, 0x8984380,3, 0x8984390,3, 0x89843a0,3, 0x8984400,3, 0x8984410,3, 0x8984420,3, 0x8984430,3, 0x8984440,3, 0x8984450,3, 0x8984460,3, 0x8984470,3, 0x8984480,3, 0x8984490,3, 0x89844a0,3, 0x8984500,3, 0x8984510,3, 0x8984520,3, 0x8984530,3, 0x8984540,3, 0x8984550,3, 0x8984560,3, 0x8984570,3, 0x8984580,3, 0x8984590,3, 0x89845a0,3, 0x8984600,3, 0x8984610,3, 0x8984620,3, 0x8984630,3, 0x8984640,3, 0x8984650,3, 0x8984660,3, 0x8984670,3, 0x8984680,3, 0x8984690,3, 0x89846a0,3, 0x8984700,3, 0x8984710,3, 0x8984720,3, 0x8984730,3, 0x8984740,3, 0x8984750,3, 0x8984760,3, 0x8984770,3, 0x8984780,3, 0x8984790,3, 0x89847a0,3, 0x8984800,3, 0x8984810,3, 0x8984820,3, 0x8984830,3, 0x8984840,3, 0x8984850,3, 0x8984860,3, 0x8984870,3, 0x8984880,3, 0x8984890,3, 0x89848a0,3, 0x8984900,3, 0x8984910,3, 0x8984920,3, 0x8984930,3, 0x8984940,3, 0x8984950,3, 0x8984960,3, 0x8984970,3, 0x8984980,3, 0x8984990,3, 0x89849a0,3, 0x8984a00,3, 0x8984a10,3, 0x8984a20,3, 0x8984a30,3, 0x8984a40,3, 0x8984a50,3, 0x8984a60,3, 0x8984a70,3, 0x8984a80,3, 0x8984a90,3, 0x8984aa0,3, 0x8984b00,3, 0x8984b10,3, 0x8984b20,3, 0x8984b30,3, 0x8984b40,3, 0x8984b50,3, 0x8984b60,3, 0x8984b70,3, 0x8984b80,3, 0x8984b90,3, 0x8984ba0,3, 0x8984c00,3, 0x8984c10,3, 0x8984c20,3, 0x8984c30,3, 0x8984c40,3, 0x8984c50,3, 0x8984c60,3, 0x8984c70,3, 0x8984c80,3, 0x8984c90,3, 0x8984ca0,3, 0x8984d00,3, 0x8984d10,3, 0x8984d20,3, 0x8984d30,3, 0x8984d40,3, 0x8984d50,3, 0x8984d60,3, 0x8984d70,3, 0x8984d80,3, 0x8984d90,3, 0x8984da0,3, 0x8984e00,3, 0x8984e10,3, 0x8984e20,3, 0x8984e30,3, 0x8984e40,3, 0x8984e50,3, 0x8984e60,3, 0x8984e70,3, 0x8984e80,3, 0x8984e90,3, 0x8984ea0,3, 0x8984f00,3, 0x8984f10,3, 0x8984f20,3, 0x8984f30,3, 0x8984f40,3, 0x8984f50,3, 0x8984f60,3, 0x8984f70,3, 0x8984f80,3, 0x8984f90,3, 0x8984fa0,3, 0x8985000,3, 0x8985010,3, 0x8985020,3, 0x8985030,3, 0x8985040,3, 0x8985050,3, 0x8985060,3, 0x8985070,3, 0x8985080,3, 0x8985090,3, 0x89850a0,3, 0x8985100,3, 0x8985110,3, 0x8985120,3, 0x8985130,3, 0x8985140,3, 0x8985150,3, 0x8985160,3, 0x8985170,3, 0x8985180,3, 0x8985190,3, 0x89851a0,3, 0x8985200,3, 0x8985210,3, 0x8985220,3, 0x8985230,3, 0x8985240,3, 0x8985250,3, 0x8985260,3, 0x8985270,3, 0x8985280,3, 0x8985290,3, 0x89852a0,3, 0x8985300,3, 0x8985310,3, 0x8985320,3, 0x8985330,3, 0x8985340,3, 0x8985350,3, 0x8985360,3, 0x8985370,3, 0x8985380,3, 0x8985390,3, 0x89853a0,3, 0x8985400,3, 0x8985410,3, 0x8985420,3, 0x8985430,3, 0x8985440,3, 0x8985450,3, 0x8985460,3, 0x8985470,3, 0x8985480,3, 0x8985490,3, 0x89854a0,3, 0x8985500,3, 0x8985510,3, 0x8985520,3, 0x8985530,3, 0x8985540,3, 0x8985550,3, 0x8985560,3, 0x8985570,3, 0x8985580,3, 0x8985590,3, 0x89855a0,3, 0x8985600,3, 0x8985610,3, 0x8985620,3, 0x8985630,3, 0x8985640,3, 0x8985650,3, 0x8985660,3, 0x8985670,3, 0x8985680,3, 0x8985690,3, 0x89856a0,3, 0x8985700,3, 0x8985710,3, 0x8985720,3, 0x8985730,3, 0x8985740,3, 0x8985750,3, 0x8985760,3, 0x8985770,3, 0x8985780,3, 0x8985790,3, 0x89857a0,3, 0x8985800,3, 0x8985810,3, 0x8985820,3, 0x8985830,3, 0x8985840,3, 0x8985850,3, 0x8985860,3, 0x8985870,3, 0x8985880,3, 0x8985890,3, 0x89858a0,3, 0x8985900,3, 0x8985910,3, 0x8985920,3, 0x8985930,3, 0x8985940,3, 0x8985950,3, 0x8985960,3, 0x8985970,3, 0x8985980,3, 0x8985990,3, 0x89859a0,3, 0x8985a00,3, 0x8985a10,3, 0x8985a20,3, 0x8985a30,3, 0x8985a40,3, 0x8985a50,3, 0x8985a60,3, 0x8985a70,3, 0x8985a80,3, 0x8985a90,3, 0x8985aa0,3, 0x8985b00,3, 0x8985b10,3, 0x8985b20,3, 0x8985b30,3, 0x8985b40,3, 0x8985b50,3, 0x8985b60,3, 0x8985b70,3, 0x8985b80,3, 0x8985b90,3, 0x8985ba0,3, 0x8985c00,3, 0x8985c10,3, 0x8985c20,3, 0x8985c30,3, 0x8985c40,3, 0x8985c50,3, 0x8985c60,3, 0x8985c70,3, 0x8985c80,3, 0x8985c90,3, 0x8985ca0,3, 0x8985d00,3, 0x8985d10,3, 0x8985d20,3, 0x8985d30,3, 0x8985d40,3, 0x8985d50,3, 0x8985d60,3, 0x8985d70,3, 0x8985d80,3, 0x8985d90,3, 0x8985da0,3, 0x8985e00,3, 0x8985e10,3, 0x8985e20,3, 0x8985e30,3, 0x8985e40,3, 0x8985e50,3, 0x8985e60,3, 0x8985e70,3, 0x8985e80,3, 0x8985e90,3, 0x8985ea0,3, 0x8985f00,3, 0x8985f10,3, 0x8985f20,3, 0x8985f30,3, 0x8985f40,3, 0x8985f50,3, 0x8985f60,3, 0x8985f70,3, 0x8985f80,3, 0x8985f90,3, 0x8985fa0,3, 0x8986000,3, 0x8986010,3, 0x8986020,3, 0x8986030,3, 0x8986040,3, 0x8986050,3, 0x8986060,3, 0x8986070,3, 0x8986080,3, 0x8986090,3, 0x89860a0,3, 0x8986100,3, 0x8986110,3, 0x8986120,3, 0x8986130,3, 0x8986140,3, 0x8986150,3, 0x8986160,3, 0x8986170,3, 0x8986180,3, 0x8986190,3, 0x89861a0,3, 0x8986200,3, 0x8986210,3, 0x8986220,3, 0x8986230,3, 0x8986240,3, 0x8986250,3, 0x8986260,3, 0x8986270,3, 0x8986280,3, 0x8986290,3, 0x89862a0,3, 0x8986300,3, 0x8986310,3, 0x8986320,3, 0x8986330,3, 0x8986340,3, 0x8986350,3, 0x8986360,3, 0x8986370,3, 0x8986380,3, 0x8986390,3, 0x89863a0,3, 0x8986400,3, 0x8986410,3, 0x8986420,3, 0x8986430,3, 0x8986440,3, 0x8986450,3, 0x8986460,3, 0x8986470,3, 0x8986480,3, 0x8986490,3, 0x89864a0,3, 0x8986500,3, 0x8986510,3, 0x8986520,3, 0x8986530,3, 0x8986540,3, 0x8986550,3, 0x8986560,3, 0x8986570,3, 0x8986580,3, 0x8986590,3, 0x89865a0,3, 0x8986600,3, 0x8986610,3, 0x8986620,3, 0x8986630,3, 0x8986640,3, 0x8986650,3, 0x8986660,3, 0x8986670,3, 0x8986680,3, 0x8986690,3, 0x89866a0,3, 0x8986700,3, 0x8986710,3, 0x8986720,3, 0x8986730,3, 0x8986740,3, 0x8986750,3, 0x8986760,3, 0x8986770,3, 0x8986780,3, 0x8986790,3, 0x89867a0,3, 0x8986800,3, 0x8986810,3, 0x8986820,3, 0x8986830,3, 0x8986840,3, 0x8986850,3, 0x8986860,3, 0x8986870,3, 0x8986880,3, 0x8986890,3, 0x89868a0,3, 0x8986900,3, 0x8986910,3, 0x8986920,3, 0x8986930,3, 0x8986940,3, 0x8986950,3, 0x8986960,3, 0x8986970,3, 0x8986980,3, 0x8986990,3, 0x89869a0,3, 0x8986a00,3, 0x8986a10,3, 0x8986a20,3, 0x8986a30,3, 0x8986a40,3, 0x8986a50,3, 0x8986a60,3, 0x8986a70,3, 0x8986a80,3, 0x8986a90,3, 0x8986aa0,3, 0x8986b00,3, 0x8986b10,3, 0x8986b20,3, 0x8986b30,3, 0x8986b40,3, 0x8986b50,3, 0x8986b60,3, 0x8986b70,3, 0x8986b80,3, 0x8986b90,3, 0x8986ba0,3, 0x8986c00,3, 0x8986c10,3, 0x8986c20,3, 0x8986c30,3, 0x8986c40,3, 0x8986c50,3, 0x8986c60,3, 0x8986c70,3, 0x8986c80,3, 0x8986c90,3, 0x8986ca0,3, 0x8986d00,3, 0x8986d10,3, 0x8986d20,3, 0x8986d30,3, 0x8986d40,3, 0x8986d50,3, 0x8986d60,3, 0x8986d70,3, 0x8986d80,3, 0x8986d90,3, 0x8986da0,3, 0x8986e00,3, 0x8986e10,3, 0x8986e20,3, 0x8986e30,3, 0x8986e40,3, 0x8986e50,3, 0x8986e60,3, 0x8986e70,3, 0x8986e80,3, 0x8986e90,3, 0x8986ea0,3, 0x8986f00,3, 0x8986f10,3, 0x8986f20,3, 0x8986f30,3, 0x8986f40,3, 0x8986f50,3, 0x8986f60,3, 0x8986f70,3, 0x8986f80,3, 0x8986f90,3, 0x8986fa0,3, 0x8987000,3, 0x8987010,3, 0x8987020,3, 0x8987030,3, 0x8987040,3, 0x8987050,3, 0x8987060,3, 0x8987070,3, 0x8987080,3, 0x8987090,3, 0x89870a0,3, 0x8987100,3, 0x8987110,3, 0x8987120,3, 0x8987130,3, 0x8987140,3, 0x8987150,3, 0x8987160,3, 0x8987170,3, 0x8987180,3, 0x8987190,3, 0x89871a0,3, 0x8987200,3, 0x8987210,3, 0x8987220,3, 0x8987230,3, 0x8987240,3, 0x8987250,3, 0x8987260,3, 0x8987270,3, 0x8987280,3, 0x8987290,3, 0x89872a0,3, 0x8987300,3, 0x8987310,3, 0x8987320,3, 0x8987330,3, 0x8987340,3, 0x8987350,3, 0x8987360,3, 0x8987370,3, 0x8987380,3, 0x8987390,3, 0x89873a0,3, 0x8987400,3, 0x8987410,3, 0x8987420,3, 0x8987430,3, 0x8987440,3, 0x8987450,3, 0x8987460,3, 0x8987470,3, 0x8987480,3, 0x8987490,3, 0x89874a0,3, 0x8987500,3, 0x8987510,3, 0x8987520,3, 0x8987530,3, 0x8987540,3, 0x8987550,3, 0x8987560,3, 0x8987570,3, 0x8987580,3, 0x8987590,3, 0x89875a0,3, 0x8987600,3, 0x8987610,3, 0x8987620,3, 0x8987630,3, 0x8987640,3, 0x8987650,3, 0x8987660,3, 0x8987670,3, 0x8987680,3, 0x8987690,3, 0x89876a0,3, 0x8987700,3, 0x8987710,3, 0x8987720,3, 0x8987730,3, 0x8987740,3, 0x8987750,3, 0x8987760,3, 0x8987770,3, 0x8987780,3, 0x8987790,3, 0x89877a0,3, 0x8987800,3, 0x8987810,3, 0x8987820,3, 0x8987830,3, 0x8987840,3, 0x8987850,3, 0x8987860,3, 0x8987870,3, 0x8987880,3, 0x8987890,3, 0x89878a0,3, 0x8987900,3, 0x8987910,3, 0x8987920,3, 0x8987930,3, 0x8987940,3, 0x8987950,3, 0x8987960,3, 0x8987970,3, 0x8987980,3, 0x8987990,3, 0x89879a0,3, 0x8987a00,3, 0x8987a10,3, 0x8987a20,3, 0x8987a30,3, 0x8987a40,3, 0x8987a50,3, 0x8987a60,3, 0x8987a70,3, 0x8987a80,3, 0x8987a90,3, 0x8987aa0,3, 0x8987b00,3, 0x8987b10,3, 0x8987b20,3, 0x8987b30,3, 0x8987b40,3, 0x8987b50,3, 0x8987b60,3, 0x8987b70,3, 0x8987b80,3, 0x8987b90,3, 0x8987ba0,3, 0x8987c00,3, 0x8987c10,3, 0x8987c20,3, 0x8987c30,3, 0x8987c40,3, 0x8987c50,3, 0x8987c60,3, 0x8987c70,3, 0x8987c80,3, 0x8987c90,3, 0x8987ca0,3, 0x8987d00,3, 0x8987d10,3, 0x8987d20,3, 0x8987d30,3, 0x8987d40,3, 0x8987d50,3, 0x8987d60,3, 0x8987d70,3, 0x8987d80,3, 0x8987d90,3, 0x8987da0,3, 0x8987e00,3, 0x8987e10,3, 0x8987e20,3, 0x8987e30,3, 0x8987e40,3, 0x8987e50,3, 0x8987e60,3, 0x8987e70,3, 0x8987e80,3, 0x8987e90,3, 0x8987ea0,3, 0x8987f00,3, 0x8987f10,3, 0x8987f20,3, 0x8987f30,3, 0x8987f40,3, 0x8987f50,3, 0x8987f60,3, 0x8987f70,3, 0x8987f80,3, 0x8987f90,3, 0x8987fa0,3, 0x8988000,3, 0x8988010,3, 0x8988020,3, 0x8988030,3, 0x8988040,3, 0x8988050,3, 0x8988060,3, 0x8988070,3, 0x8988080,3, 0x8988090,3, 0x89880a0,3, 0x8988100,3, 0x8988110,3, 0x8988120,3, 0x8988130,3, 0x8988140,3, 0x8988150,3, 0x8988160,3, 0x8988170,3, 0x8988180,3, 0x8988190,3, 0x89881a0,3, 0x8988200,3, 0x8988210,3, 0x8988220,3, 0x8988230,3, 0x8988240,3, 0x8988250,3, 0x8988260,3, 0x8988270,3, 0x8988280,3, 0x8988290,3, 0x89882a0,3, 0x8988300,3, 0x8988310,3, 0x8988320,3, 0x8988330,3, 0x8988340,3, 0x8988350,3, 0x8988360,3, 0x8988370,3, 0x8988380,3, 0x8988390,3, 0x89883a0,3, 0x8988400,3, 0x8988410,3, 0x8988420,3, 0x8988430,3, 0x8988440,3, 0x8988450,3, 0x8988460,3, 0x8988470,3, 0x8988480,3, 0x8988490,3, 0x89884a0,3, 0x8988500,3, 0x8988510,3, 0x8988520,3, 0x8988530,3, 0x8988540,3, 0x8988550,3, 0x8988560,3, 0x8988570,3, 0x8988580,3, 0x8988590,3, 0x89885a0,3, 0x8988600,3, 0x8988610,3, 0x8988620,3, 0x8988630,3, 0x8988640,3, 0x8988650,3, 0x8988660,3, 0x8988670,3, 0x8988680,3, 0x8988690,3, 0x89886a0,3, 0x8988700,3, 0x8988710,3, 0x8988720,3, 0x8988730,3, 0x8988740,3, 0x8988750,3, 0x8988760,3, 0x8988770,3, 0x8988780,3, 0x8988790,3, 0x89887a0,3, 0x8988800,3, 0x8988810,3, 0x8988820,3, 0x8988830,3, 0x8988840,3, 0x8988850,3, 0x8988860,3, 0x8988870,3, 0x8988880,3, 0x8988890,3, 0x89888a0,3, 0x8988900,3, 0x8988910,3, 0x8988920,3, 0x8988930,3, 0x8988940,3, 0x8988950,3, 0x8988960,3, 0x8988970,3, 0x8988980,3, 0x8988990,3, 0x89889a0,3, 0x8988a00,3, 0x8988a10,3, 0x8988a20,3, 0x8988a30,3, 0x8988a40,3, 0x8988a50,3, 0x8988a60,3, 0x8988a70,3, 0x8988a80,3, 0x8988a90,3, 0x8988aa0,3, 0x8988b00,3, 0x8988b10,3, 0x8988b20,3, 0x8988b30,3, 0x8988b40,3, 0x8988b50,3, 0x8988b60,3, 0x8988b70,3, 0x8988b80,3, 0x8988b90,3, 0x8988ba0,3, 0x8988c00,3, 0x8988c10,3, 0x8988c20,3, 0x8988c30,3, 0x8988c40,3, 0x8988c50,3, 0x8988c60,3, 0x8988c70,3, 0x8988c80,3, 0x8988c90,3, 0x8988ca0,3, 0x8988d00,3, 0x8988d10,3, 0x8988d20,3, 0x8988d30,3, 0x8988d40,3, 0x8988d50,3, 0x8988d60,3, 0x8988d70,3, 0x8988d80,3, 0x8988d90,3, 0x8988da0,3, 0x8988e00,3, 0x8988e10,3, 0x8988e20,3, 0x8988e30,3, 0x8988e40,3, 0x8988e50,3, 0x8988e60,3, 0x8988e70,3, 0x8988e80,3, 0x8988e90,3, 0x8988ea0,3, 0x8988f00,3, 0x8988f10,3, 0x8988f20,3, 0x8988f30,3, 0x8988f40,3, 0x8988f50,3, 0x8988f60,3, 0x8988f70,3, 0x8988f80,3, 0x8988f90,3, 0x8988fa0,3, 0x8989000,3, 0x8989010,3, 0x8989020,3, 0x8989030,3, 0x8989040,3, 0x8989050,3, 0x8989060,3, 0x8989070,3, 0x8989080,3, 0x8989090,3, 0x89890a0,3, 0x8989100,3, 0x8989110,3, 0x8989120,3, 0x8989130,3, 0x8989140,3, 0x8989150,3, 0x8989160,3, 0x8989170,3, 0x8989180,3, 0x8989190,3, 0x89891a0,3, 0x8989200,3, 0x8989210,3, 0x8989220,3, 0x8989230,3, 0x8989240,3, 0x8989250,3, 0x8989260,3, 0x8989270,3, 0x8989280,3, 0x8989290,3, 0x89892a0,3, 0x8989300,3, 0x8989310,3, 0x8989320,3, 0x8989330,3, 0x8989340,3, 0x8989350,3, 0x8989360,3, 0x8989370,3, 0x8989380,3, 0x8989390,3, 0x89893a0,3, 0x8989400,3, 0x8989410,3, 0x8989420,3, 0x8989430,3, 0x8989440,3, 0x8989450,3, 0x8989460,3, 0x8989470,3, 0x8989480,3, 0x8989490,3, 0x89894a0,3, 0x8989500,3, 0x8989510,3, 0x8989520,3, 0x8989530,3, 0x8989540,3, 0x8989550,3, 0x8989560,3, 0x8989570,3, 0x8989580,3, 0x8989590,3, 0x89895a0,3, 0x8989600,3, 0x8989610,3, 0x8989620,3, 0x8989630,3, 0x8989640,3, 0x8989650,3, 0x8989660,3, 0x8989670,3, 0x8989680,3, 0x8989690,3, 0x89896a0,3, 0x8989700,3, 0x8989710,3, 0x8989720,3, 0x8989730,3, 0x8989740,3, 0x8989750,3, 0x8989760,3, 0x8989770,3, 0x8989780,3, 0x8989790,3, 0x89897a0,3, 0x8989800,3, 0x8989810,3, 0x8989820,3, 0x8989830,3, 0x8989840,3, 0x8989850,3, 0x8989860,3, 0x8989870,3, 0x8989880,3, 0x8989890,3, 0x89898a0,3, 0x8989900,3, 0x8989910,3, 0x8989920,3, 0x8989930,3, 0x8989940,3, 0x8989950,3, 0x8989960,3, 0x8989970,3, 0x8989980,3, 0x8989990,3, 0x89899a0,3, 0x8989a00,3, 0x8989a10,3, 0x8989a20,3, 0x8989a30,3, 0x8989a40,3, 0x8989a50,3, 0x8989a60,3, 0x8989a70,3, 0x8989a80,3, 0x8989a90,3, 0x8989aa0,3, 0x8989b00,3, 0x8989b10,3, 0x8989b20,3, 0x8989b30,3, 0x8989b40,3, 0x8989b50,3, 0x8989b60,3, 0x8989b70,3, 0x8989b80,3, 0x8989b90,3, 0x8989ba0,3, 0x8989c00,3, 0x8989c10,3, 0x8989c20,3, 0x8989c30,3, 0x8989c40,3, 0x8989c50,3, 0x8989c60,3, 0x8989c70,3, 0x8989c80,3, 0x8989c90,3, 0x8989ca0,3, 0x8989d00,3, 0x8989d10,3, 0x8989d20,3, 0x8989d30,3, 0x8989d40,3, 0x8989d50,3, 0x8989d60,3, 0x8989d70,3, 0x8989d80,3, 0x8989d90,3, 0x8989da0,3, 0x8989e00,3, 0x8989e10,3, 0x8989e20,3, 0x8989e30,3, 0x8989e40,3, 0x8989e50,3, 0x8989e60,3, 0x8989e70,3, 0x8989e80,3, 0x8989e90,3, 0x8989ea0,3, 0x8989f00,3, 0x8989f10,3, 0x8989f20,3, 0x8989f30,3, 0x8989f40,3, 0x8989f50,3, 0x8989f60,3, 0x8989f70,3, 0x8989f80,3, 0x8989f90,3, 0x8989fa0,3, 0x898a000,3, 0x898a010,3, 0x898a020,3, 0x898a030,3, 0x898a040,3, 0x898a050,3, 0x898a060,3, 0x898a070,3, 0x898a080,3, 0x898a090,3, 0x898a0a0,3, 0x898a100,3, 0x898a110,3, 0x898a120,3, 0x898a130,3, 0x898a140,3, 0x898a150,3, 0x898a160,3, 0x898a170,3, 0x898a180,3, 0x898a190,3, 0x898a1a0,3, 0x898a200,3, 0x898a210,3, 0x898a220,3, 0x898a230,3, 0x898a240,3, 0x898a250,3, 0x898a260,3, 0x898a270,3, 0x898a280,3, 0x898a290,3, 0x898a2a0,3, 0x898a300,3, 0x898a310,3, 0x898a320,3, 0x898a330,3, 0x898a340,3, 0x898a350,3, 0x898a360,3, 0x898a370,3, 0x898a380,3, 0x898a390,3, 0x898a3a0,3, 0x898a400,3, 0x898a410,3, 0x898a420,3, 0x898a430,3, 0x898a440,3, 0x898a450,3, 0x898a460,3, 0x898a470,3, 0x898a480,3, 0x898a490,3, 0x898a4a0,3, 0x898a500,3, 0x898a510,3, 0x898a520,3, 0x898a530,3, 0x898a540,3, 0x898a550,3, 0x898a560,3, 0x898a570,3, 0x898a580,3, 0x898a590,3, 0x898a5a0,3, 0x898a600,3, 0x898a610,3, 0x898a620,3, 0x898a630,3, 0x898a640,3, 0x898a650,3, 0x898a660,3, 0x898a670,3, 0x898a680,3, 0x898a690,3, 0x898a6a0,3, 0x898a700,3, 0x898a710,3, 0x898a720,3, 0x898a730,3, 0x898a740,3, 0x898a750,3, 0x898a760,3, 0x898a770,3, 0x898a780,3, 0x898a790,3, 0x898a7a0,3, 0x898a800,3, 0x898a810,3, 0x898a820,3, 0x898a830,3, 0x898a840,3, 0x898a850,3, 0x898a860,3, 0x898a870,3, 0x898a880,3, 0x898a890,3, 0x898a8a0,3, 0x898a900,3, 0x898a910,3, 0x898a920,3, 0x898a930,3, 0x898a940,3, 0x898a950,3, 0x898a960,3, 0x898a970,3, 0x898a980,3, 0x898a990,3, 0x898a9a0,3, 0x898aa00,3, 0x898aa10,3, 0x898aa20,3, 0x898aa30,3, 0x898aa40,3, 0x898aa50,3, 0x898aa60,3, 0x898aa70,3, 0x898aa80,3, 0x898aa90,3, 0x898aaa0,3, 0x898ab00,3, 0x898ab10,3, 0x898ab20,3, 0x898ab30,3, 0x898ab40,3, 0x898ab50,3, 0x898ab60,3, 0x898ab70,3, 0x898ab80,3, 0x898ab90,3, 0x898aba0,3, 0x898ac00,3, 0x898ac10,3, 0x898ac20,3, 0x898ac30,3, 0x898ac40,3, 0x898ac50,3, 0x898ac60,3, 0x898ac70,3, 0x898ac80,3, 0x898ac90,3, 0x898aca0,3, 0x898ad00,3, 0x898ad10,3, 0x898ad20,3, 0x898ad30,3, 0x898ad40,3, 0x898ad50,3, 0x898ad60,3, 0x898ad70,3, 0x898ad80,3, 0x898ad90,3, 0x898ada0,3, 0x898ae00,3, 0x898ae10,3, 0x898ae20,3, 0x898ae30,3, 0x898ae40,3, 0x898ae50,3, 0x898ae60,3, 0x898ae70,3, 0x898ae80,3, 0x898ae90,3, 0x898aea0,3, 0x898af00,3, 0x898af10,3, 0x898af20,3, 0x898af30,3, 0x898af40,3, 0x898af50,3, 0x898af60,3, 0x898af70,3, 0x898af80,3, 0x898af90,3, 0x898afa0,3, 0x898b000,3, 0x898b010,3, 0x898b020,3, 0x898b030,3, 0x898b040,3, 0x898b050,3, 0x898b060,3, 0x898b070,3, 0x898b080,3, 0x898b090,3, 0x898b0a0,3, 0x898b100,3, 0x898b110,3, 0x898b120,3, 0x898b130,3, 0x898b140,3, 0x898b150,3, 0x898b160,3, 0x898b170,3, 0x898b180,3, 0x898b190,3, 0x898b1a0,3, 0x898b200,3, 0x898b210,3, 0x898b220,3, 0x898b230,3, 0x898b240,3, 0x898b250,3, 0x898b260,3, 0x898b270,3, 0x898b280,3, 0x898b290,3, 0x898b2a0,3, 0x898b300,3, 0x898b310,3, 0x898b320,3, 0x898b330,3, 0x898b340,3, 0x898b350,3, 0x898b360,3, 0x898b370,3, 0x898b380,3, 0x898b390,3, 0x898b3a0,3, 0x898b400,3, 0x898b410,3, 0x898b420,3, 0x898b430,3, 0x898b440,3, 0x898b450,3, 0x898b460,3, 0x898b470,3, 0x898b480,3, 0x898b490,3, 0x898b4a0,3, 0x898b500,3, 0x898b510,3, 0x898b520,3, 0x898b530,3, 0x898b540,3, 0x898b550,3, 0x898b560,3, 0x898b570,3, 0x898b580,3, 0x898b590,3, 0x898b5a0,3, 0x898b600,3, 0x898b610,3, 0x898b620,3, 0x898b630,3, 0x898b640,3, 0x898b650,3, 0x898b660,3, 0x898b670,3, 0x898b680,3, 0x898b690,3, 0x898b6a0,3, 0x898b700,3, 0x898b710,3, 0x898b720,3, 0x898b730,3, 0x898b740,3, 0x898b750,3, 0x898b760,3, 0x898b770,3, 0x898b780,3, 0x898b790,3, 0x898b7a0,3, 0x898b800,3, 0x898b810,3, 0x898b820,3, 0x898b830,3, 0x898b840,3, 0x898b850,3, 0x898b860,3, 0x898b870,3, 0x898b880,3, 0x898b890,3, 0x898b8a0,3, 0x898b900,3, 0x898b910,3, 0x898b920,3, 0x898b930,3, 0x898b940,3, 0x898b950,3, 0x898b960,3, 0x898b970,3, 0x898b980,3, 0x898b990,3, 0x898b9a0,3, 0x898ba00,3, 0x898ba10,3, 0x898ba20,3, 0x898ba30,3, 0x898ba40,3, 0x898ba50,3, 0x898ba60,3, 0x898ba70,3, 0x898ba80,3, 0x898ba90,3, 0x898baa0,3, 0x898bb00,3, 0x898bb10,3, 0x898bb20,3, 0x898bb30,3, 0x898bb40,3, 0x898bb50,3, 0x898bb60,3, 0x898bb70,3, 0x898bb80,3, 0x898bb90,3, 0x898bba0,3, 0x898bc00,3, 0x898bc10,3, 0x898bc20,3, 0x898bc30,3, 0x898bc40,3, 0x898bc50,3, 0x898bc60,3, 0x898bc70,3, 0x898bc80,3, 0x898bc90,3, 0x898bca0,3, 0x898bd00,3, 0x898bd10,3, 0x898bd20,3, 0x898bd30,3, 0x898bd40,3, 0x898bd50,3, 0x898bd60,3, 0x898bd70,3, 0x898bd80,3, 0x898bd90,3, 0x898bda0,3, 0x898be00,3, 0x898be10,3, 0x898be20,3, 0x898be30,3, 0x898be40,3, 0x898be50,3, 0x898be60,3, 0x898be70,3, 0x898be80,3, 0x898be90,3, 0x898bea0,3, 0x898bf00,3, 0x898bf10,3, 0x898bf20,3, 0x898bf30,3, 0x898bf40,3, 0x898bf50,3, 0x898bf60,3, 0x898bf70,3, 0x898bf80,3, 0x898bf90,3, 0x898bfa0,3, 0x898c000,3, 0x898c010,3, 0x898c020,3, 0x898c030,3, 0x898c040,3, 0x898c050,3, 0x898c060,3, 0x898c070,3, 0x898c080,3, 0x898c090,3, 0x898c0a0,3, 0x898c100,3, 0x898c110,3, 0x898c120,3, 0x898c130,3, 0x898c140,3, 0x898c150,3, 0x898c160,3, 0x898c170,3, 0x898c180,3, 0x898c190,3, 0x898c1a0,3, 0x898c200,3, 0x898c210,3, 0x898c220,3, 0x898c230,3, 0x898c240,3, 0x898c250,3, 0x898c260,3, 0x898c270,3, 0x898c280,3, 0x898c290,3, 0x898c2a0,3, 0x898c300,3, 0x898c310,3, 0x898c320,3, 0x898c330,3, 0x898c340,3, 0x898c350,3, 0x898c360,3, 0x898c370,3, 0x898c380,3, 0x898c390,3, 0x898c3a0,3, 0x898c400,3, 0x898c410,3, 0x898c420,3, 0x898c430,3, 0x898c440,3, 0x898c450,3, 0x898c460,3, 0x898c470,3, 0x898c480,3, 0x898c490,3, 0x898c4a0,3, 0x898c500,3, 0x898c510,3, 0x898c520,3, 0x898c530,3, 0x898c540,3, 0x898c550,3, 0x898c560,3, 0x898c570,3, 0x898c580,3, 0x898c590,3, 0x898c5a0,3, 0x898c600,3, 0x898c610,3, 0x898c620,3, 0x898c630,3, 0x898c640,3, 0x898c650,3, 0x898c660,3, 0x898c670,3, 0x898c680,3, 0x898c690,3, 0x898c6a0,3, 0x898c700,3, 0x898c710,3, 0x898c720,3, 0x898c730,3, 0x898c740,3, 0x898c750,3, 0x898c760,3, 0x898c770,3, 0x898c780,3, 0x898c790,3, 0x898c7a0,3, 0x898c800,3, 0x898c810,3, 0x898c820,3, 0x898c830,3, 0x898c840,3, 0x898c850,3, 0x898c860,3, 0x898c870,3, 0x898c880,3, 0x898c890,3, 0x898c8a0,3, 0x898c900,3, 0x898c910,3, 0x898c920,3, 0x898c930,3, 0x898c940,3, 0x898c950,3, 0x898c960,3, 0x898c970,3, 0x898c980,3, 0x898c990,3, 0x898c9a0,3, 0x898ca00,3, 0x898ca10,3, 0x898ca20,3, 0x898ca30,3, 0x898ca40,3, 0x898ca50,3, 0x898ca60,3, 0x898ca70,3, 0x898ca80,3, 0x898ca90,3, 0x898caa0,3, 0x898cb00,3, 0x898cb10,3, 0x898cb20,3, 0x898cb30,3, 0x898cb40,3, 0x898cb50,3, 0x898cb60,3, 0x898cb70,3, 0x898cb80,3, 0x898cb90,3, 0x898cba0,3, 0x898cc00,3, 0x898cc10,3, 0x898cc20,3, 0x898cc30,3, 0x898cc40,3, 0x898cc50,3, 0x898cc60,3, 0x898cc70,3, 0x898cc80,3, 0x898cc90,3, 0x898cca0,3, 0x898cd00,3, 0x898cd10,3, 0x898cd20,3, 0x898cd30,3, 0x898cd40,3, 0x898cd50,3, 0x898cd60,3, 0x898cd70,3, 0x898cd80,3, 0x898cd90,3, 0x898cda0,3, 0x898ce00,3, 0x898ce10,3, 0x898ce20,3, 0x898ce30,3, 0x898ce40,3, 0x898ce50,3, 0x898ce60,3, 0x898ce70,3, 0x898ce80,3, 0x898ce90,3, 0x898cea0,3, 0x898cf00,3, 0x898cf10,3, 0x898cf20,3, 0x898cf30,3, 0x898cf40,3, 0x898cf50,3, 0x898cf60,3, 0x898cf70,3, 0x898cf80,3, 0x898cf90,3, 0x898cfa0,3, 0x898d000,3, 0x898d010,3, 0x898d020,3, 0x898d030,3, 0x898d040,3, 0x898d050,3, 0x898d060,3, 0x898d070,3, 0x898d080,3, 0x898d090,3, 0x898d0a0,3, 0x898d100,3, 0x898d110,3, 0x898d120,3, 0x898d130,3, 0x898d140,3, 0x898d150,3, 0x898d160,3, 0x898d170,3, 0x898d180,3, 0x898d190,3, 0x898d1a0,3, 0x898d200,3, 0x898d210,3, 0x898d220,3, 0x898d230,3, 0x898d240,3, 0x898d250,3, 0x898d260,3, 0x898d270,3, 0x898d280,3, 0x898d290,3, 0x898d2a0,3, 0x898d300,3, 0x898d310,3, 0x898d320,3, 0x898d330,3, 0x898d340,3, 0x898d350,3, 0x898d360,3, 0x898d370,3, 0x898d380,3, 0x898d390,3, 0x898d3a0,3, 0x898d400,3, 0x898d410,3, 0x898d420,3, 0x898d430,3, 0x898d440,3, 0x898d450,3, 0x898d460,3, 0x898d470,3, 0x898d480,3, 0x898d490,3, 0x898d4a0,3, 0x898d500,3, 0x898d510,3, 0x898d520,3, 0x898d530,3, 0x898d540,3, 0x898d550,3, 0x898d560,3, 0x898d570,3, 0x898d580,3, 0x898d590,3, 0x898d5a0,3, 0x898d600,3, 0x898d610,3, 0x898d620,3, 0x898d630,3, 0x898d640,3, 0x898d650,3, 0x898d660,3, 0x898d670,3, 0x898d680,3, 0x898d690,3, 0x898d6a0,3, 0x898d700,3, 0x898d710,3, 0x898d720,3, 0x898d730,3, 0x898d740,3, 0x898d750,3, 0x898d760,3, 0x898d770,3, 0x898d780,3, 0x898d790,3, 0x898d7a0,3, 0x898d800,3, 0x898d810,3, 0x898d820,3, 0x898d830,3, 0x898d840,3, 0x898d850,3, 0x898d860,3, 0x898d870,3, 0x898d880,3, 0x898d890,3, 0x898d8a0,3, 0x898d900,3, 0x898d910,3, 0x898d920,3, 0x898d930,3, 0x898d940,3, 0x898d950,3, 0x898d960,3, 0x898d970,3, 0x898d980,3, 0x898d990,3, 0x898d9a0,3, 0x898da00,3, 0x898da10,3, 0x898da20,3, 0x898da30,3, 0x898da40,3, 0x898da50,3, 0x898da60,3, 0x898da70,3, 0x898da80,3, 0x898da90,3, 0x898daa0,3, 0x898db00,3, 0x898db10,3, 0x898db20,3, 0x898db30,3, 0x898db40,3, 0x898db50,3, 0x898db60,3, 0x898db70,3, 0x898db80,3, 0x898db90,3, 0x898dba0,3, 0x898dc00,3, 0x898dc10,3, 0x898dc20,3, 0x898dc30,3, 0x898dc40,3, 0x898dc50,3, 0x898dc60,3, 0x898dc70,3, 0x898dc80,3, 0x898dc90,3, 0x898dca0,3, 0x898dd00,3, 0x898dd10,3, 0x898dd20,3, 0x898dd30,3, 0x898dd40,3, 0x898dd50,3, 0x898dd60,3, 0x898dd70,3, 0x898dd80,3, 0x898dd90,3, 0x898dda0,3, 0x898de00,3, 0x898de10,3, 0x898de20,3, 0x898de30,3, 0x898de40,3, 0x898de50,3, 0x898de60,3, 0x898de70,3, 0x898de80,3, 0x898de90,3, 0x898dea0,3, 0x898df00,3, 0x898df10,3, 0x898df20,3, 0x898df30,3, 0x898df40,3, 0x898df50,3, 0x898df60,3, 0x898df70,3, 0x898df80,3, 0x898df90,3, 0x898dfa0,3, 0x898e000,3, 0x898e010,3, 0x898e020,3, 0x898e030,3, 0x898e040,3, 0x898e050,3, 0x898e060,3, 0x898e070,3, 0x898e080,3, 0x898e090,3, 0x898e0a0,3, 0x898e100,3, 0x898e110,3, 0x898e120,3, 0x898e130,3, 0x898e140,3, 0x898e150,3, 0x898e160,3, 0x898e170,3, 0x898e180,3, 0x898e190,3, 0x898e1a0,3, 0x898e200,3, 0x898e210,3, 0x898e220,3, 0x898e230,3, 0x898e240,3, 0x898e250,3, 0x898e260,3, 0x898e270,3, 0x898e280,3, 0x898e290,3, 0x898e2a0,3, 0x898e300,3, 0x898e310,3, 0x898e320,3, 0x898e330,3, 0x898e340,3, 0x898e350,3, 0x898e360,3, 0x898e370,3, 0x898e380,3, 0x898e390,3, 0x898e3a0,3, 0x898e400,3, 0x898e410,3, 0x898e420,3, 0x898e430,3, 0x898e440,3, 0x898e450,3, 0x898e460,3, 0x898e470,3, 0x898e480,3, 0x898e490,3, 0x898e4a0,3, 0x898e500,3, 0x898e510,3, 0x898e520,3, 0x898e530,3, 0x898e540,3, 0x898e550,3, 0x898e560,3, 0x898e570,3, 0x898e580,3, 0x898e590,3, 0x898e5a0,3, 0x898e600,3, 0x898e610,3, 0x898e620,3, 0x898e630,3, 0x898e640,3, 0x898e650,3, 0x898e660,3, 0x898e670,3, 0x898e680,3, 0x898e690,3, 0x898e6a0,3, 0x898e700,3, 0x898e710,3, 0x898e720,3, 0x898e730,3, 0x898e740,3, 0x898e750,3, 0x898e760,3, 0x898e770,3, 0x898e780,3, 0x898e790,3, 0x898e7a0,3, 0x898e800,3, 0x898e810,3, 0x898e820,3, 0x898e830,3, 0x898e840,3, 0x898e850,3, 0x898e860,3, 0x898e870,3, 0x898e880,3, 0x898e890,3, 0x898e8a0,3, 0x898e900,3, 0x898e910,3, 0x898e920,3, 0x898e930,3, 0x898e940,3, 0x898e950,3, 0x898e960,3, 0x898e970,3, 0x898e980,3, 0x898e990,3, 0x898e9a0,3, 0x898ea00,3, 0x898ea10,3, 0x898ea20,3, 0x898ea30,3, 0x898ea40,3, 0x898ea50,3, 0x898ea60,3, 0x898ea70,3, 0x898ea80,3, 0x898ea90,3, 0x898eaa0,3, 0x898eb00,3, 0x898eb10,3, 0x898eb20,3, 0x898eb30,3, 0x898eb40,3, 0x898eb50,3, 0x898eb60,3, 0x898eb70,3, 0x898eb80,3, 0x898eb90,3, 0x898eba0,3, 0x898ec00,3, 0x898ec10,3, 0x898ec20,3, 0x898ec30,3, 0x898ec40,3, 0x898ec50,3, 0x898ec60,3, 0x898ec70,3, 0x898ec80,3, 0x898ec90,3, 0x898eca0,3, 0x898ed00,3, 0x898ed10,3, 0x898ed20,3, 0x898ed30,3, 0x898ed40,3, 0x898ed50,3, 0x898ed60,3, 0x898ed70,3, 0x898ed80,3, 0x898ed90,3, 0x898eda0,3, 0x898ee00,3, 0x898ee10,3, 0x898ee20,3, 0x898ee30,3, 0x898ee40,3, 0x898ee50,3, 0x898ee60,3, 0x898ee70,3, 0x898ee80,3, 0x898ee90,3, 0x898eea0,3, 0x898ef00,3, 0x898ef10,3, 0x898ef20,3, 0x898ef30,3, 0x898ef40,3, 0x898ef50,3, 0x898ef60,3, 0x898ef70,3, 0x898ef80,3, 0x898ef90,3, 0x898efa0,3, 0x898f000,3, 0x898f010,3, 0x898f020,3, 0x898f030,3, 0x898f040,3, 0x898f050,3, 0x898f060,3, 0x898f070,3, 0x898f080,3, 0x898f090,3, 0x898f0a0,3, 0x898f100,3, 0x898f110,3, 0x898f120,3, 0x898f130,3, 0x898f140,3, 0x898f150,3, 0x898f160,3, 0x898f170,3, 0x898f180,3, 0x898f190,3, 0x898f1a0,3, 0x898f200,3, 0x898f210,3, 0x898f220,3, 0x898f230,3, 0x898f240,3, 0x898f250,3, 0x898f260,3, 0x898f270,3, 0x898f280,3, 0x898f290,3, 0x898f2a0,3, 0x898f300,3, 0x898f310,3, 0x898f320,3, 0x898f330,3, 0x898f340,3, 0x898f350,3, 0x898f360,3, 0x898f370,3, 0x898f380,3, 0x898f390,3, 0x898f3a0,3, 0x898f400,3, 0x898f410,3, 0x898f420,3, 0x898f430,3, 0x898f440,3, 0x898f450,3, 0x898f460,3, 0x898f470,3, 0x898f480,3, 0x898f490,3, 0x898f4a0,3, 0x898f500,3, 0x898f510,3, 0x898f520,3, 0x898f530,3, 0x898f540,3, 0x898f550,3, 0x898f560,3, 0x898f570,3, 0x898f580,3, 0x898f590,3, 0x898f5a0,3, 0x898f600,3, 0x898f610,3, 0x898f620,3, 0x898f630,3, 0x898f640,3, 0x898f650,3, 0x898f660,3, 0x898f670,3, 0x898f680,3, 0x898f690,3, 0x898f6a0,3, 0x898f700,3, 0x898f710,3, 0x898f720,3, 0x898f730,3, 0x898f740,3, 0x898f750,3, 0x898f760,3, 0x898f770,3, 0x898f780,3, 0x898f790,3, 0x898f7a0,3, 0x898f800,3, 0x898f810,3, 0x898f820,3, 0x898f830,3, 0x898f840,3, 0x898f850,3, 0x898f860,3, 0x898f870,3, 0x898f880,3, 0x898f890,3, 0x898f8a0,3, 0x898f900,3, 0x898f910,3, 0x898f920,3, 0x898f930,3, 0x898f940,3, 0x898f950,3, 0x898f960,3, 0x898f970,3, 0x898f980,3, 0x898f990,3, 0x898f9a0,3, 0x898fa00,3, 0x898fa10,3, 0x898fa20,3, 0x898fa30,3, 0x898fa40,3, 0x898fa50,3, 0x898fa60,3, 0x898fa70,3, 0x898fa80,3, 0x898fa90,3, 0x898faa0,3, 0x898fb00,3, 0x898fb10,3, 0x898fb20,3, 0x898fb30,3, 0x898fb40,3, 0x898fb50,3, 0x898fb60,3, 0x898fb70,3, 0x898fb80,3, 0x898fb90,3, 0x898fba0,3, 0x898fc00,3, 0x898fc10,3, 0x898fc20,3, 0x898fc30,3, 0x898fc40,3, 0x898fc50,3, 0x898fc60,3, 0x898fc70,3, 0x898fc80,3, 0x898fc90,3, 0x898fca0,3, 0x898fd00,3, 0x898fd10,3, 0x898fd20,3, 0x898fd30,3, 0x898fd40,3, 0x898fd50,3, 0x898fd60,3, 0x898fd70,3, 0x898fd80,3, 0x898fd90,3, 0x898fda0,3, 0x898fe00,3, 0x898fe10,3, 0x898fe20,3, 0x898fe30,3, 0x898fe40,3, 0x898fe50,3, 0x898fe60,3, 0x898fe70,3, 0x898fe80,3, 0x898fe90,3, 0x898fea0,3, 0x898ff00,3, 0x898ff10,3, 0x898ff20,3, 0x898ff30,3, 0x898ff40,3, 0x898ff50,3, 0x898ff60,3, 0x898ff70,3, 0x898ff80,3, 0x898ff90,3, 0x898ffa0,3, 0x8990000,3, 0x8990010,3, 0x8990020,3, 0x8990030,3, 0x8990040,3, 0x8990050,3, 0x8990060,3, 0x8990070,3, 0x8990080,3, 0x8990090,3, 0x89900a0,3, 0x8990100,3, 0x8990110,3, 0x8990120,3, 0x8990130,3, 0x8990140,3, 0x8990150,3, 0x8990160,3, 0x8990170,3, 0x8990180,3, 0x8990190,3, 0x89901a0,3, 0x89a0000,2, 0x89a0040,9, 0x89a0080,3, 0x89a0090,3, 0x89a00a0,3, 0x89c0000,3, 0x89c0010,3, 0x89c0020,3, 0x89c0030,3, 0x89c0040,3, 0x89c0050,3, 0x89c0060,3, 0x89c0070,3, 0x89c0080,3, 0x89c0090,3, 0x89c00a0,3, 0x89c00b0,3, 0x89c00c0,3, 0x89c00d0,3, 0x89c00e0,3, 0x89c00f0,3, 0x89c0100,3, 0x89c0110,3, 0x89c0120,3, 0x89c0130,3, 0x89c0140,3, 0x89c0150,3, 0x89c0160,3, 0x89c0170,3, 0x89c0180,3, 0x89c0190,3, 0x89c01a0,3, 0x89c01b0,3, 0x89c01c0,3, 0x89c01d0,3, 0x89c01e0,3, 0x89c01f0,3, 0x89c0200,3, 0x89c0210,3, 0x89c0220,3, 0x89c0230,3, 0x89c0240,3, 0x89c0250,3, 0x89c0260,3, 0x89c0270,3, 0x89c0280,3, 0x89c0290,3, 0x89c02a0,3, 0x89c02b0,3, 0x89c02c0,3, 0x89c02d0,3, 0x89c02e0,3, 0x89c02f0,3, 0x89c0300,3, 0x89c0310,3, 0x89c0320,3, 0x89c0330,3, 0x89c0340,3, 0x89c0350,3, 0x89c0360,3, 0x89c0370,3, 0x89c0380,3, 0x89c0390,3, 0x89c03a0,3, 0x89c03b0,3, 0x89c03c0,3, 0x89c03d0,3, 0x89c03e0,3, 0x89c03f0,3, 0x89c0400,3, 0x89c0410,3, 0x89c0420,3, 0x89c0430,3, 0x89c0440,3, 0x89c0450,3, 0x89c0460,3, 0x89c0470,3, 0x89c0480,3, 0x89c0490,3, 0x89c04a0,3, 0x89c04b0,3, 0x89c04c0,3, 0x89c04d0,3, 0x89c04e0,3, 0x89c04f0,3, 0x89c0500,3, 0x89c0510,3, 0x89c0520,3, 0x89c0530,3, 0x89c0540,3, 0x89c0550,3, 0x89c0560,3, 0x89c0570,3, 0x89c0580,3, 0x89c0590,3, 0x89c05a0,3, 0x89c05b0,3, 0x89c05c0,3, 0x89c05d0,3, 0x89c05e0,3, 0x89c05f0,3, 0x89c0600,3, 0x89c0610,3, 0x89c0620,3, 0x89c0630,3, 0x89c0640,3, 0x89c0650,3, 0x89c0660,3, 0x89c0670,3, 0x89c0680,3, 0x89c0690,3, 0x89c06a0,3, 0x89c06b0,3, 0x89c06c0,3, 0x89c06d0,3, 0x89c06e0,3, 0x89c06f0,3, 0x89c0700,3, 0x89c0710,3, 0x89c0720,3, 0x89c0730,3, 0x89c0740,3, 0x89c0750,3, 0x89c0760,3, 0x89c0770,3, 0x89c0780,3, 0x89c0790,3, 0x89c07a0,3, 0x89c07b0,3, 0x89c07c0,3, 0x89c07d0,3, 0x89c07e0,3, 0x89c07f0,3, 0x89c0800,3, 0x89c0810,3, 0x89c0820,3, 0x89c0830,3, 0x89c0840,3, 0x89c0850,3, 0x89c0860,3, 0x89c0870,3, 0x89c0880,3, 0x89c0890,3, 0x89c08a0,3, 0x89c08b0,3, 0x89c08c0,3, 0x89c08d0,3, 0x89c08e0,3, 0x89c08f0,3, 0x89c0900,3, 0x89c0910,3, 0x89c0920,3, 0x89c0930,3, 0x89c0940,3, 0x89c0950,3, 0x89c0960,3, 0x89c0970,3, 0x89c0980,3, 0x89c0990,3, 0x89c09a0,3, 0x89c09b0,3, 0x89c09c0,3, 0x89c09d0,3, 0x89c09e0,3, 0x89c09f0,3, 0x89c0a00,3, 0x89c0a10,3, 0x89c0a20,3, 0x89c0a30,3, 0x89c0a40,3, 0x89c0a50,3, 0x89c0a60,3, 0x89c0a70,3, 0x89c0a80,3, 0x89c0a90,3, 0x89c0aa0,3, 0x89c0ab0,3, 0x89c0ac0,3, 0x89c0ad0,3, 0x89c0ae0,3, 0x89c0af0,3, 0x89c0b00,3, 0x89c0b10,3, 0x89c0b20,3, 0x89c0b30,3, 0x89c0b40,3, 0x89c0b50,3, 0x89c0b60,3, 0x89c0b70,3, 0x89c0b80,3, 0x89c0b90,3, 0x89c0ba0,3, 0x89c0bb0,3, 0x89c0bc0,3, 0x89c0bd0,3, 0x89c0be0,3, 0x89c0bf0,3, 0x89c0c00,3, 0x89c0c10,3, 0x89c0c20,3, 0x89c0c30,3, 0x89c0c40,3, 0x89c0c50,3, 0x89c0c60,3, 0x89c0c70,3, 0x89c0c80,3, 0x89c0c90,3, 0x89c0ca0,3, 0x89c0cb0,3, 0x89c0cc0,3, 0x89c0cd0,3, 0x89c0ce0,3, 0x89c0cf0,3, 0x89c0d00,3, 0x89c0d10,3, 0x89c0d20,3, 0x89c0d30,3, 0x89c0d40,3, 0x89c0d50,3, 0x89c0d60,3, 0x89c0d70,3, 0x89c0d80,3, 0x89c0d90,3, 0x89c0da0,3, 0x89c0db0,3, 0x89c0dc0,3, 0x89c0dd0,3, 0x89c0de0,3, 0x89c0df0,3, 0x89c0e00,3, 0x89c0e10,3, 0x89c0e20,3, 0x89c0e30,3, 0x89c0e40,3, 0x89c0e50,3, 0x89c0e60,3, 0x89c0e70,3, 0x89c0e80,3, 0x89c0e90,3, 0x89c0ea0,3, 0x89c0eb0,3, 0x89c0ec0,3, 0x89c0ed0,3, 0x89c0ee0,3, 0x89c0ef0,3, 0x89c0f00,3, 0x89c0f10,3, 0x89c0f20,3, 0x89c0f30,3, 0x89c0f40,3, 0x89c0f50,3, 0x89c0f60,3, 0x89c0f70,3, 0x89c0f80,3, 0x89c0f90,3, 0x89c0fa0,3, 0x89c0fb0,3, 0x89c0fc0,3, 0x89c0fd0,3, 0x89c0fe0,3, 0x89c0ff0,3, 0x89c1000,3, 0x89c1010,3, 0x89c1020,3, 0x89c1030,3, 0x89c1040,3, 0x89c1050,3, 0x89c1060,3, 0x89c1070,3, 0x89c1080,3, 0x89c1090,3, 0x89c10a0,3, 0x89c10b0,3, 0x89c10c0,3, 0x89c10d0,3, 0x89c10e0,3, 0x89c10f0,3, 0x89c1100,3, 0x89c1110,3, 0x89c1120,3, 0x89c1130,3, 0x89c1140,3, 0x89c1150,3, 0x89c1160,3, 0x89c1170,3, 0x89c1180,3, 0x89c1190,3, 0x89c11a0,3, 0x89c11b0,3, 0x89c11c0,3, 0x89c11d0,3, 0x89c11e0,3, 0x89c11f0,3, 0x89c1200,3, 0x89c1210,3, 0x89c1220,3, 0x89c1230,3, 0x89c1240,3, 0x89c1250,3, 0x89c1260,3, 0x89c1270,3, 0x89c1280,3, 0x89c1290,3, 0x89c12a0,3, 0x89c12b0,3, 0x89c12c0,3, 0x89c12d0,3, 0x89c12e0,3, 0x89c12f0,3, 0x89c1300,3, 0x89c1310,3, 0x89c1320,3, 0x89c1330,3, 0x89c1340,3, 0x89c1350,3, 0x89c1360,3, 0x89c1370,3, 0x89c1380,3, 0x89c1390,3, 0x89c13a0,3, 0x89c13b0,3, 0x89c13c0,3, 0x89c13d0,3, 0x89c13e0,3, 0x89c13f0,3, 0x89c1400,3, 0x89c1410,3, 0x89c1420,3, 0x89c1430,3, 0x89c1440,3, 0x89c1450,3, 0x89c1460,3, 0x89c1470,3, 0x89c1480,3, 0x89c1490,3, 0x89c14a0,3, 0x89c14b0,3, 0x89c14c0,3, 0x89c14d0,3, 0x89c14e0,3, 0x89c14f0,3, 0x89c1500,3, 0x89c1510,3, 0x89c1520,3, 0x89c1530,3, 0x89c1540,3, 0x89c1550,3, 0x89c1560,3, 0x89c1570,3, 0x89c1580,3, 0x89c1590,3, 0x89c15a0,3, 0x89c15b0,3, 0x89c15c0,3, 0x89c15d0,3, 0x89c15e0,3, 0x89c15f0,3, 0x89c1600,3, 0x89c1610,3, 0x89c1620,3, 0x89c1630,3, 0x89c1640,3, 0x89c1650,3, 0x89c1660,3, 0x89c1670,3, 0x89c1680,3, 0x89c1690,3, 0x89c16a0,3, 0x89c16b0,3, 0x89c16c0,3, 0x89c16d0,3, 0x89c16e0,3, 0x89c16f0,3, 0x89c1700,3, 0x89c1710,3, 0x89c1720,3, 0x89c1730,3, 0x89c1740,3, 0x89c1750,3, 0x89c1760,3, 0x89c1770,3, 0x89c1780,3, 0x89c1790,3, 0x89c17a0,3, 0x89c17b0,3, 0x89c17c0,3, 0x89c17d0,3, 0x89c17e0,3, 0x89c17f0,3, 0x89c1800,3, 0x89c1810,3, 0x89c1820,3, 0x89c1830,3, 0x89c1840,3, 0x89c1850,3, 0x89c1860,3, 0x89c1870,3, 0x89c1880,3, 0x89c1890,3, 0x89c18a0,3, 0x89c18b0,3, 0x89c18c0,3, 0x89c18d0,3, 0x89c18e0,3, 0x89c18f0,3, 0x89c1900,3, 0x89c1910,3, 0x89c1920,3, 0x89c1930,3, 0x89c1940,3, 0x89c1950,3, 0x89c1960,3, 0x89c1970,3, 0x89c1980,3, 0x89c1990,3, 0x89c19a0,3, 0x89c19b0,3, 0x89c19c0,3, 0x89c19d0,3, 0x89c19e0,3, 0x89c19f0,3, 0x89c1a00,3, 0x89c1a10,3, 0x89c1a20,3, 0x89c1a30,3, 0x89c1a40,3, 0x89c1a50,3, 0x89c1a60,3, 0x89c1a70,3, 0x89c1a80,3, 0x89c1a90,3, 0x89c1aa0,3, 0x89c1ab0,3, 0x89c1ac0,3, 0x89c1ad0,3, 0x89c1ae0,3, 0x89c1af0,3, 0x89c1b00,3, 0x89c1b10,3, 0x89c1b20,3, 0x89c1b30,3, 0x89c1b40,3, 0x89c1b50,3, 0x89c1b60,3, 0x89c1b70,3, 0x89c1b80,3, 0x89c1b90,3, 0x89c1ba0,3, 0x89c1bb0,3, 0x89c1bc0,3, 0x89c1bd0,3, 0x89c1be0,3, 0x89c1bf0,3, 0x89c1c00,3, 0x89c1c10,3, 0x89c1c20,3, 0x89c1c30,3, 0x89c1c40,3, 0x89c1c50,3, 0x89c1c60,3, 0x89c1c70,3, 0x89c1c80,3, 0x89c1c90,3, 0x89c1ca0,3, 0x89c1cb0,3, 0x89c1cc0,3, 0x89c1cd0,3, 0x89c1ce0,3, 0x89c1cf0,3, 0x89c1d00,3, 0x89c1d10,3, 0x89c1d20,3, 0x89c1d30,3, 0x89c1d40,3, 0x89c1d50,3, 0x89c1d60,3, 0x89c1d70,3, 0x89c1d80,3, 0x89c1d90,3, 0x89c1da0,3, 0x89c1db0,3, 0x89c1dc0,3, 0x89c1dd0,3, 0x89c1de0,3, 0x89c1df0,3, 0x89c1e00,3, 0x89c1e10,3, 0x89c1e20,3, 0x89c1e30,3, 0x89c1e40,3, 0x89c1e50,3, 0x89c1e60,3, 0x89c1e70,3, 0x89c1e80,3, 0x89c1e90,3, 0x89c1ea0,3, 0x89c1eb0,3, 0x89c1ec0,3, 0x89c1ed0,3, 0x89c1ee0,3, 0x89c1ef0,3, 0x89c1f00,3, 0x89c1f10,3, 0x89c1f20,3, 0x89c1f30,3, 0x89c1f40,3, 0x89c1f50,3, 0x89c1f60,3, 0x89c1f70,3, 0x89c1f80,3, 0x89c1f90,3, 0x89c1fa0,3, 0x89c1fb0,3, 0x89c1fc0,3, 0x89c1fd0,3, 0x89c1fe0,3, 0x89c1ff0,3, 0x89c2000,3, 0x89c2010,3, 0x89c2020,3, 0x89c2030,3, 0x89c2040,3, 0x89c2050,3, 0x89c2060,3, 0x89c2070,3, 0x89c2080,3, 0x89c2090,3, 0x89c20a0,3, 0x89c20b0,3, 0x89c20c0,3, 0x89c20d0,3, 0x89c20e0,3, 0x89c20f0,3, 0x89c2100,3, 0x89c2110,3, 0x89c2120,3, 0x89c2130,3, 0x89c2140,3, 0x89c2150,3, 0x89c2160,3, 0x89c2170,3, 0x89c2180,3, 0x89c2190,3, 0x89c21a0,3, 0x89c21b0,3, 0x89c21c0,3, 0x89c21d0,3, 0x89c21e0,3, 0x89c21f0,3, 0x89c2200,3, 0x89c2210,3, 0x89c2220,3, 0x89c2230,3, 0x89c2240,3, 0x89c2250,3, 0x89c2260,3, 0x89c2270,3, 0x89c2280,3, 0x89c2290,3, 0x89c22a0,3, 0x89c22b0,3, 0x89c22c0,3, 0x89c22d0,3, 0x89c22e0,3, 0x89c22f0,3, 0x89c2300,3, 0x89c2310,3, 0x89c2320,3, 0x89c2330,3, 0x89c2340,3, 0x89c2350,3, 0x89c2360,3, 0x89c2370,3, 0x89c2380,3, 0x89c2390,3, 0x89c23a0,3, 0x89c23b0,3, 0x89c23c0,3, 0x89c23d0,3, 0x89c23e0,3, 0x89c23f0,3, 0x89c2400,3, 0x89c2410,3, 0x89c2420,3, 0x89c2430,3, 0x89c2440,3, 0x89c2450,3, 0x89c2460,3, 0x89c2470,3, 0x89c2480,3, 0x89c2490,3, 0x89c24a0,3, 0x89c24b0,3, 0x89c24c0,3, 0x89c24d0,3, 0x89c24e0,3, 0x89c24f0,3, 0x89c2500,3, 0x89c2510,3, 0x89c2520,3, 0x89c2530,3, 0x89c2540,3, 0x89c2550,3, 0x89c2560,3, 0x89c2570,3, 0x89c2580,3, 0x89c2590,3, 0x89c25a0,3, 0x89c25b0,3, 0x89c25c0,3, 0x89c25d0,3, 0x89c25e0,3, 0x89c25f0,3, 0x89c2600,3, 0x89c2610,3, 0x89c2620,3, 0x89c2630,3, 0x89c2640,3, 0x89c2650,3, 0x89c2660,3, 0x89c2670,3, 0x89c2680,3, 0x89c2690,3, 0x89c26a0,3, 0x89c26b0,3, 0x89c26c0,3, 0x89c26d0,3, 0x89c26e0,3, 0x89c26f0,3, 0x89c2700,3, 0x89c2710,3, 0x89c2720,3, 0x89c2730,3, 0x89c2740,3, 0x89c2750,3, 0x89c2760,3, 0x89c2770,3, 0x89c2780,3, 0x89c2790,3, 0x89c27a0,3, 0x89c27b0,3, 0x89c27c0,3, 0x89c27d0,3, 0x89c27e0,3, 0x89c27f0,3, 0x89c2800,3, 0x89c2810,3, 0x89c2820,3, 0x89c2830,3, 0x89c2840,3, 0x89c2850,3, 0x89c2860,3, 0x89c2870,3, 0x89c2880,3, 0x89c2890,3, 0x89c28a0,3, 0x89c28b0,3, 0x89c28c0,3, 0x89c28d0,3, 0x89c28e0,3, 0x89c28f0,3, 0x89c2900,3, 0x89c2910,3, 0x89c2920,3, 0x89c2930,3, 0x89c2940,3, 0x89c2950,3, 0x89c2960,3, 0x89c2970,3, 0x89c2980,3, 0x89c2990,3, 0x89c29a0,3, 0x89c29b0,3, 0x89c29c0,3, 0x89c29d0,3, 0x89c29e0,3, 0x89c29f0,3, 0x89c2a00,3, 0x89c2a10,3, 0x89c2a20,3, 0x89c2a30,3, 0x89c2a40,3, 0x89c2a50,3, 0x89c2a60,3, 0x89c2a70,3, 0x89c2a80,3, 0x89c2a90,3, 0x89c2aa0,3, 0x89c2ab0,3, 0x89c2ac0,3, 0x89c2ad0,3, 0x89c2ae0,3, 0x89c2af0,3, 0x89c2b00,3, 0x89c2b10,3, 0x89c2b20,3, 0x89c2b30,3, 0x89c2b40,3, 0x89c2b50,3, 0x89c2b60,3, 0x89c2b70,3, 0x89c2b80,3, 0x89c2b90,3, 0x89c2ba0,3, 0x89c2bb0,3, 0x89c2bc0,3, 0x89c2bd0,3, 0x89c2be0,3, 0x89c2bf0,3, 0x89c2c00,3, 0x89c2c10,3, 0x89c2c20,3, 0x89c2c30,3, 0x89c2c40,3, 0x89c2c50,3, 0x89c2c60,3, 0x89c2c70,3, 0x89c2c80,3, 0x89c2c90,3, 0x89c2ca0,3, 0x89c2cb0,3, 0x89c2cc0,3, 0x89c2cd0,3, 0x89c2ce0,3, 0x89c2cf0,3, 0x89c2d00,3, 0x89c2d10,3, 0x89c2d20,3, 0x89c2d30,3, 0x89c2d40,3, 0x89c2d50,3, 0x89c2d60,3, 0x89c2d70,3, 0x89c2d80,3, 0x89c2d90,3, 0x89c2da0,3, 0x89c2db0,3, 0x89c2dc0,3, 0x89c2dd0,3, 0x89c2de0,3, 0x89c2df0,3, 0x89c2e00,3, 0x89c2e10,3, 0x89c2e20,3, 0x89c2e30,3, 0x89c2e40,3, 0x89c2e50,3, 0x89c2e60,3, 0x89c2e70,3, 0x89c2e80,3, 0x89c2e90,3, 0x89c2ea0,3, 0x89c2eb0,3, 0x89c2ec0,3, 0x89c2ed0,3, 0x89c2ee0,3, 0x89c2ef0,3, 0x89c2f00,3, 0x89c2f10,3, 0x89c2f20,3, 0x89c2f30,3, 0x89c2f40,3, 0x89c2f50,3, 0x89c2f60,3, 0x89c2f70,3, 0x89c2f80,3, 0x89c2f90,3, 0x89c2fa0,3, 0x89c2fb0,3, 0x89c2fc0,3, 0x89c2fd0,3, 0x89c2fe0,3, 0x89c2ff0,3, 0x89c3000,3, 0x89c3010,3, 0x89c3020,3, 0x89c3030,3, 0x89c3040,3, 0x89c3050,3, 0x89c3060,3, 0x89c3070,3, 0x89c3080,3, 0x89c3090,3, 0x89c30a0,3, 0x89c30b0,3, 0x89c30c0,3, 0x89c30d0,3, 0x89c30e0,3, 0x89c30f0,3, 0x89c3100,3, 0x89c3110,3, 0x89c3120,3, 0x89c3130,3, 0x89c3140,3, 0x89c3150,3, 0x89c3160,3, 0x89c3170,3, 0x89c3180,3, 0x89c3190,3, 0x89c31a0,3, 0x89c31b0,3, 0x89c31c0,3, 0x89c31d0,3, 0x89c31e0,3, 0x89c31f0,3, 0x89c3200,3, 0x89c3210,3, 0x89c3220,3, 0x89c3230,3, 0x89c3240,3, 0x89c3250,3, 0x89c3260,3, 0x89c3270,3, 0x89c3280,3, 0x89c3290,3, 0x89c32a0,3, 0x89c32b0,3, 0x89c32c0,3, 0x89c32d0,3, 0x89c32e0,3, 0x89c32f0,3, 0x89c3300,3, 0x89c3310,3, 0x89c3320,3, 0x89c3330,3, 0x89c3340,3, 0x89c3350,3, 0x89c3360,3, 0x89c3370,3, 0x89c3380,3, 0x89c3390,3, 0x89c33a0,3, 0x89c33b0,3, 0x89c33c0,3, 0x89c33d0,3, 0x89c33e0,3, 0x89c33f0,3, 0x89c3400,3, 0x89c3410,3, 0x89c3420,3, 0x89c3430,3, 0x89c3440,3, 0x89c3450,3, 0x89c3460,3, 0x89c3470,3, 0x89c3480,3, 0x89c3490,3, 0x89c34a0,3, 0x89c34b0,3, 0x89c34c0,3, 0x89c34d0,3, 0x89c34e0,3, 0x89c34f0,3, 0x89c3500,3, 0x89c3510,3, 0x89c3520,3, 0x89c3530,3, 0x89c3540,3, 0x89c3550,3, 0x89c3560,3, 0x89c3570,3, 0x89c3580,3, 0x89c3590,3, 0x89c35a0,3, 0x89c35b0,3, 0x89c35c0,3, 0x89c35d0,3, 0x89c35e0,3, 0x89c35f0,3, 0x89c3600,3, 0x89c3610,3, 0x89c3620,3, 0x89c3630,3, 0x89c3640,3, 0x89c3650,3, 0x89c3660,3, 0x89c3670,3, 0x89c3680,3, 0x89c3690,3, 0x89c36a0,3, 0x89c36b0,3, 0x89c36c0,3, 0x89c36d0,3, 0x89c36e0,3, 0x89c36f0,3, 0x89c3700,3, 0x89c3710,3, 0x89c3720,3, 0x89c3730,3, 0x89c3740,3, 0x89c3750,3, 0x89c3760,3, 0x89c3770,3, 0x89c3780,3, 0x89c3790,3, 0x89c37a0,3, 0x89c37b0,3, 0x89c37c0,3, 0x89c37d0,3, 0x89c37e0,3, 0x89c37f0,3, 0x89c3800,3, 0x89c3810,3, 0x89c3820,3, 0x89c3830,3, 0x89c3840,3, 0x89c3850,3, 0x89c3860,3, 0x89c3870,3, 0x89c3880,3, 0x89c3890,3, 0x89c38a0,3, 0x89c38b0,3, 0x89c38c0,3, 0x89c38d0,3, 0x89c38e0,3, 0x89c38f0,3, 0x89c3900,3, 0x89c3910,3, 0x89c3920,3, 0x89c3930,3, 0x89c3940,3, 0x89c3950,3, 0x89c3960,3, 0x89c3970,3, 0x89c3980,3, 0x89c3990,3, 0x89c39a0,3, 0x89c39b0,3, 0x89c39c0,3, 0x89c39d0,3, 0x89c39e0,3, 0x89c39f0,3, 0x89c3a00,3, 0x89c3a10,3, 0x89c3a20,3, 0x89c3a30,3, 0x89c3a40,3, 0x89c3a50,3, 0x89c3a60,3, 0x89c3a70,3, 0x89c3a80,3, 0x89c3a90,3, 0x89c3aa0,3, 0x89c3ab0,3, 0x89c3ac0,3, 0x89c3ad0,3, 0x89c3ae0,3, 0x89c3af0,3, 0x89c3b00,3, 0x89c3b10,3, 0x89c3b20,3, 0x89c3b30,3, 0x89c3b40,3, 0x89c3b50,3, 0x89c3b60,3, 0x89c3b70,3, 0x89c3b80,3, 0x89c3b90,3, 0x89c3ba0,3, 0x89c3bb0,3, 0x89c3bc0,3, 0x89c3bd0,3, 0x89c3be0,3, 0x89c3bf0,3, 0x89c3c00,3, 0x89c3c10,3, 0x89c3c20,3, 0x89c3c30,3, 0x89c3c40,3, 0x89c3c50,3, 0x89c3c60,3, 0x89c3c70,3, 0x89c3c80,3, 0x89c3c90,3, 0x89c3ca0,3, 0x89c3cb0,3, 0x89c3cc0,3, 0x89c3cd0,3, 0x89c3ce0,3, 0x89c3cf0,3, 0x89c3d00,3, 0x89c3d10,3, 0x89c3d20,3, 0x89c3d30,3, 0x89c3d40,3, 0x89c3d50,3, 0x89c3d60,3, 0x89c3d70,3, 0x89c3d80,3, 0x89c3d90,3, 0x89c3da0,3, 0x89c3db0,3, 0x89c3dc0,3, 0x89c3dd0,3, 0x89c3de0,3, 0x89c3df0,3, 0x89c3e00,3, 0x89c3e10,3, 0x89c3e20,3, 0x89c3e30,3, 0x89c3e40,3, 0x89c3e50,3, 0x89c3e60,3, 0x89c3e70,3, 0x89c3e80,3, 0x89c3e90,3, 0x89c3ea0,3, 0x89c3eb0,3, 0x89c3ec0,3, 0x89c3ed0,3, 0x89c3ee0,3, 0x89c3ef0,3, 0x89c3f00,3, 0x89c3f10,3, 0x89c3f20,3, 0x89c3f30,3, 0x89c3f40,3, 0x89c3f50,3, 0x89c3f60,3, 0x89c3f70,3, 0x89c3f80,3, 0x89c3f90,3, 0x89c3fa0,3, 0x89c3fb0,3, 0x89c3fc0,3, 0x89c3fd0,3, 0x89c3fe0,3, 0x89c3ff0,3, 0x89c4000,3, 0x89c4010,3, 0x89c4020,3, 0x89c4030,3, 0x89c4040,3, 0x89c4050,3, 0x89c4060,3, 0x89c4070,3, 0x89c4080,3, 0x89c4090,3, 0x89c40a0,3, 0x89c40b0,3, 0x89c40c0,3, 0x89c40d0,3, 0x89c40e0,3, 0x89c40f0,3, 0x89c4100,3, 0x89c4110,3, 0x89c4120,3, 0x89c4130,3, 0x89c4140,3, 0x89c4150,3, 0x89c4160,3, 0x89c4170,3, 0x89c4180,3, 0x89c4190,3, 0x89c41a0,3, 0x89c41b0,3, 0x89c41c0,3, 0x89c41d0,3, 0x89c41e0,3, 0x89c41f0,3, 0x89c4200,3, 0x89c4210,3, 0x89c4220,3, 0x89c4230,3, 0x89c4240,3, 0x89c4250,3, 0x89c4260,3, 0x89c4270,3, 0x89c4280,3, 0x89c4290,3, 0x89c42a0,3, 0x89c42b0,3, 0x89c42c0,3, 0x89c42d0,3, 0x89c42e0,3, 0x89c42f0,3, 0x89c4300,3, 0x89c4310,3, 0x89c4320,3, 0x89c4330,3, 0x89c4340,3, 0x89c4350,3, 0x89c4360,3, 0x89c4370,3, 0x89c4380,3, 0x89c4390,3, 0x89c43a0,3, 0x89c43b0,3, 0x89c43c0,3, 0x89c43d0,3, 0x89c43e0,3, 0x89c43f0,3, 0x89c4400,3, 0x89c4410,3, 0x89c4420,3, 0x89c4430,3, 0x89c4440,3, 0x89c4450,3, 0x89c4460,3, 0x89c4470,3, 0x89c4480,3, 0x89c4490,3, 0x89c44a0,3, 0x89c44b0,3, 0x89c44c0,3, 0x89c44d0,3, 0x89c44e0,3, 0x89c44f0,3, 0x89c4500,3, 0x89c4510,3, 0x89c4520,3, 0x89c4530,3, 0x89c4540,3, 0x89c4550,3, 0x89c4560,3, 0x89c4570,3, 0x89c4580,3, 0x89c4590,3, 0x89c45a0,3, 0x89c45b0,3, 0x89c45c0,3, 0x89c45d0,3, 0x89c45e0,3, 0x89c45f0,3, 0x89c4600,3, 0x89c4610,3, 0x89c4620,3, 0x89c4630,3, 0x89c4640,3, 0x89c4650,3, 0x89c4660,3, 0x89c4670,3, 0x89c4680,3, 0x89c4690,3, 0x89c46a0,3, 0x89c46b0,3, 0x89c46c0,3, 0x89c46d0,3, 0x89c46e0,3, 0x89c46f0,3, 0x89c4700,3, 0x89c4710,3, 0x89c4720,3, 0x89c4730,3, 0x89c4740,3, 0x89c4750,3, 0x89c4760,3, 0x89c4770,3, 0x89c4780,3, 0x89c4790,3, 0x89c47a0,3, 0x89c47b0,3, 0x89c47c0,3, 0x89c47d0,3, 0x89c47e0,3, 0x89c47f0,3, 0x89c4800,3, 0x89c4810,3, 0x89c4820,3, 0x89c4830,3, 0x89c4840,3, 0x89c4850,3, 0x89c4860,3, 0x89c4870,3, 0x89c4880,3, 0x89c4890,3, 0x89c48a0,3, 0x89c48b0,3, 0x89c48c0,3, 0x89c48d0,3, 0x89c48e0,3, 0x89c48f0,3, 0x89c4900,3, 0x89c4910,3, 0x89c4920,3, 0x89c4930,3, 0x89c4940,3, 0x89c4950,3, 0x89c4960,3, 0x89c4970,3, 0x89c4980,3, 0x89c4990,3, 0x89c49a0,3, 0x89c49b0,3, 0x89c49c0,3, 0x89c49d0,3, 0x89c49e0,3, 0x89c49f0,3, 0x89c4a00,3, 0x89c4a10,3, 0x89c4a20,3, 0x89c4a30,3, 0x89c4a40,3, 0x89c4a50,3, 0x89c4a60,3, 0x89c4a70,3, 0x89c4a80,3, 0x89c4a90,3, 0x89c4aa0,3, 0x89c4ab0,3, 0x89c4ac0,3, 0x89c4ad0,3, 0x89c4ae0,3, 0x89c4af0,3, 0x89c4b00,3, 0x89c4b10,3, 0x89c4b20,3, 0x89c4b30,3, 0x89c4b40,3, 0x89c4b50,3, 0x89c4b60,3, 0x89c4b70,3, 0x89c4b80,3, 0x89c4b90,3, 0x89c4ba0,3, 0x89c4bb0,3, 0x89c4bc0,3, 0x89c4bd0,3, 0x89c4be0,3, 0x89c4bf0,3, 0x89c4c00,3, 0x89c4c10,3, 0x89c4c20,3, 0x89c4c30,3, 0x89c4c40,3, 0x89c4c50,3, 0x89c4c60,3, 0x89c4c70,3, 0x89c4c80,3, 0x89c4c90,3, 0x89c4ca0,3, 0x89c4cb0,3, 0x89c4cc0,3, 0x89c4cd0,3, 0x89c4ce0,3, 0x89c4cf0,3, 0x89c4d00,3, 0x89c4d10,3, 0x89c4d20,3, 0x89c4d30,3, 0x89c4d40,3, 0x89c4d50,3, 0x89c4d60,3, 0x89c4d70,3, 0x89c4d80,3, 0x89c4d90,3, 0x89c4da0,3, 0x89c4db0,3, 0x89c4dc0,3, 0x89c4dd0,3, 0x89c4de0,3, 0x89c4df0,3, 0x89c4e00,3, 0x89c4e10,3, 0x89c4e20,3, 0x89c4e30,3, 0x89c4e40,3, 0x89c4e50,3, 0x89c4e60,3, 0x89c4e70,3, 0x89c4e80,3, 0x89c4e90,3, 0x89c4ea0,3, 0x89c4eb0,3, 0x89c4ec0,3, 0x89c4ed0,3, 0x89c4ee0,3, 0x89c4ef0,3, 0x89c4f00,3, 0x89c4f10,3, 0x89c4f20,3, 0x89c4f30,3, 0x89c4f40,3, 0x89c4f50,3, 0x89c4f60,3, 0x89c4f70,3, 0x89c4f80,3, 0x89c4f90,3, 0x89c4fa0,3, 0x89c4fb0,3, 0x89c4fc0,3, 0x89c4fd0,3, 0x89c4fe0,3, 0x89c4ff0,3, 0x89c5000,3, 0x89c5010,3, 0x89c5020,3, 0x89c5030,3, 0x89c5040,3, 0x89c5050,3, 0x89c5060,3, 0x89c5070,3, 0x89c5080,3, 0x89c5090,3, 0x89c50a0,3, 0x89c50b0,3, 0x89c50c0,3, 0x89c50d0,3, 0x89c50e0,3, 0x89c50f0,3, 0x89c5100,3, 0x89c5110,3, 0x89c5120,3, 0x89c5130,3, 0x89c5140,3, 0x89c5150,3, 0x89c5160,3, 0x89c5170,3, 0x89c5180,3, 0x89c5190,3, 0x89c51a0,3, 0x89c51b0,3, 0x89c51c0,3, 0x89c51d0,3, 0x89c51e0,3, 0x89c51f0,3, 0x89c5200,3, 0x89c5210,3, 0x89c5220,3, 0x89c5230,3, 0x89c5240,3, 0x89c5250,3, 0x89c5260,3, 0x89c5270,3, 0x89c5280,3, 0x89c5290,3, 0x89c52a0,3, 0x89c52b0,3, 0x89c52c0,3, 0x89c52d0,3, 0x89c52e0,3, 0x89c52f0,3, 0x89c5300,3, 0x89c5310,3, 0x89c5320,3, 0x89c5330,3, 0x89c5340,3, 0x89c5350,3, 0x89c5360,3, 0x89c5370,3, 0x89c5380,3, 0x89c5390,3, 0x89c53a0,3, 0x89c53b0,3, 0x89c53c0,3, 0x89c53d0,3, 0x89c53e0,3, 0x89c53f0,3, 0x89c5400,3, 0x89c5410,3, 0x89c5420,3, 0x89c5430,3, 0x89c5440,3, 0x89c5450,3, 0x89c5460,3, 0x89c5470,3, 0x89c5480,3, 0x89c5490,3, 0x89c54a0,3, 0x89c54b0,3, 0x89c54c0,3, 0x89c54d0,3, 0x89c54e0,3, 0x89c54f0,3, 0x89c5500,3, 0x89c5510,3, 0x89c5520,3, 0x89c5530,3, 0x89c5540,3, 0x89c5550,3, 0x89c5560,3, 0x89c5570,3, 0x89c5580,3, 0x89c5590,3, 0x89c55a0,3, 0x89c55b0,3, 0x89c55c0,3, 0x89c55d0,3, 0x89c55e0,3, 0x89c55f0,3, 0x89c5600,3, 0x89c5610,3, 0x89c5620,3, 0x89c5630,3, 0x89c5640,3, 0x89c5650,3, 0x89c5660,3, 0x89c5670,3, 0x89c5680,3, 0x89c5690,3, 0x89c56a0,3, 0x89c56b0,3, 0x89c56c0,3, 0x89c56d0,3, 0x89c56e0,3, 0x89c56f0,3, 0x89c5700,3, 0x89c5710,3, 0x89c5720,3, 0x89c5730,3, 0x89c5740,3, 0x89c5750,3, 0x89c5760,3, 0x89c5770,3, 0x89c5780,3, 0x89c5790,3, 0x89c57a0,3, 0x89c57b0,3, 0x89c57c0,3, 0x89c57d0,3, 0x89c57e0,3, 0x89c57f0,3, 0x89c5800,3, 0x89c5810,3, 0x89c5820,3, 0x89c5830,3, 0x89c5840,3, 0x89c5850,3, 0x89c5860,3, 0x89c5870,3, 0x89c5880,3, 0x89c5890,3, 0x89c58a0,3, 0x89c58b0,3, 0x89c58c0,3, 0x89c58d0,3, 0x89c58e0,3, 0x89c58f0,3, 0x89c5900,3, 0x89c5910,3, 0x89c5920,3, 0x89c5930,3, 0x89c5940,3, 0x89c5950,3, 0x89c5960,3, 0x89c5970,3, 0x89c5980,3, 0x89c5990,3, 0x89c59a0,3, 0x89c59b0,3, 0x89c59c0,3, 0x89c59d0,3, 0x89c59e0,3, 0x89c59f0,3, 0x89c5a00,3, 0x89c5a10,3, 0x89c5a20,3, 0x89c5a30,3, 0x89c5a40,3, 0x89c5a50,3, 0x89c5a60,3, 0x89c5a70,3, 0x89c5a80,3, 0x89c5a90,3, 0x89c5aa0,3, 0x89c5ab0,3, 0x89c5ac0,3, 0x89c5ad0,3, 0x89c5ae0,3, 0x89c5af0,3, 0x89c5b00,3, 0x89c5b10,3, 0x89c5b20,3, 0x89c5b30,3, 0x89c5b40,3, 0x89c5b50,3, 0x89c5b60,3, 0x89c5b70,3, 0x89c5b80,3, 0x89c5b90,3, 0x89c5ba0,3, 0x89c5bb0,3, 0x89c5bc0,3, 0x89c5bd0,3, 0x89c5be0,3, 0x89c5bf0,3, 0x89c5c00,3, 0x89c5c10,3, 0x89c5c20,3, 0x89c5c30,3, 0x89c5c40,3, 0x89c5c50,3, 0x89c5c60,3, 0x89c5c70,3, 0x89c5c80,3, 0x89c5c90,3, 0x89c5ca0,3, 0x89c5cb0,3, 0x89c5cc0,3, 0x89c5cd0,3, 0x89c5ce0,3, 0x89c5cf0,3, 0x89c5d00,3, 0x89c5d10,3, 0x89c5d20,3, 0x89c5d30,3, 0x89c5d40,3, 0x89c5d50,3, 0x89c5d60,3, 0x89c5d70,3, 0x89c5d80,3, 0x89c5d90,3, 0x89c5da0,3, 0x89c5db0,3, 0x89c5dc0,3, 0x89c5dd0,3, 0x89c5de0,3, 0x89c5df0,3, 0x89c5e00,3, 0x89c5e10,3, 0x89c5e20,3, 0x89c5e30,3, 0x89c5e40,3, 0x89c5e50,3, 0x89c5e60,3, 0x89c5e70,3, 0x89c5e80,3, 0x89c5e90,3, 0x89c5ea0,3, 0x89c5eb0,3, 0x89c5ec0,3, 0x89c5ed0,3, 0x89c5ee0,3, 0x89c5ef0,3, 0x89c5f00,3, 0x89c5f10,3, 0x89c5f20,3, 0x89c5f30,3, 0x89c5f40,3, 0x89c5f50,3, 0x89c5f60,3, 0x89c5f70,3, 0x89c5f80,3, 0x89c5f90,3, 0x89c5fa0,3, 0x89c5fb0,3, 0x89c5fc0,3, 0x89c5fd0,3, 0x89c5fe0,3, 0x89c5ff0,3, 0x89c6000,3, 0x89c6010,3, 0x89c6020,3, 0x89c6030,3, 0x89c6040,3, 0x89c6050,3, 0x89c6060,3, 0x89c6070,3, 0x89c6080,3, 0x89c6090,3, 0x89c60a0,3, 0x89c60b0,3, 0x89c60c0,3, 0x89c60d0,3, 0x89c60e0,3, 0x89c60f0,3, 0x89c6100,3, 0x89c6110,3, 0x89c6120,3, 0x89c6130,3, 0x89c6140,3, 0x89c6150,3, 0x89c6160,3, 0x89c6170,3, 0x89c6180,3, 0x89c6190,3, 0x89c61a0,3, 0x89c61b0,3, 0x89c61c0,3, 0x89c61d0,3, 0x89c61e0,3, 0x89c61f0,3, 0x89c6200,3, 0x89c6210,3, 0x89c6220,3, 0x89c6230,3, 0x89c6240,3, 0x89c6250,3, 0x89c6260,3, 0x89c6270,3, 0x89c6280,3, 0x89c6290,3, 0x89c62a0,3, 0x89c62b0,3, 0x89c62c0,3, 0x89c62d0,3, 0x89c62e0,3, 0x89c62f0,3, 0x89c6300,3, 0x89c6310,3, 0x89c6320,3, 0x89c6330,3, 0x89c6340,3, 0x89c6350,3, 0x89c6360,3, 0x89c6370,3, 0x89c6380,3, 0x89c6390,3, 0x89c63a0,3, 0x89c63b0,3, 0x89c63c0,3, 0x89c63d0,3, 0x89c63e0,3, 0x89c63f0,3, 0x89c6400,3, 0x89c6410,3, 0x89c6420,3, 0x89c6430,3, 0x89c6440,3, 0x89c6450,3, 0x89c6460,3, 0x89c6470,3, 0x89c6480,3, 0x89c6490,3, 0x89c64a0,3, 0x89c64b0,3, 0x89c64c0,3, 0x89c64d0,3, 0x89c64e0,3, 0x89c64f0,3, 0x89c6500,3, 0x89c6510,3, 0x89c6520,3, 0x89c6530,3, 0x89c6540,3, 0x89c6550,3, 0x89c6560,3, 0x89c6570,3, 0x89c6580,3, 0x89c6590,3, 0x89c65a0,3, 0x89c65b0,3, 0x89c65c0,3, 0x89c65d0,3, 0x89c65e0,3, 0x89c65f0,3, 0x89c6600,3, 0x89c6610,3, 0x89c6620,3, 0x89c6630,3, 0x89c6640,3, 0x89c6650,3, 0x89c6660,3, 0x89c6670,3, 0x89c6680,3, 0x89c6690,3, 0x89c66a0,3, 0x89c66b0,3, 0x89c66c0,3, 0x89c66d0,3, 0x89c66e0,3, 0x89c66f0,3, 0x89c6700,3, 0x89c6710,3, 0x89c6720,3, 0x89c6730,3, 0x89c6740,3, 0x89c6750,3, 0x89c6760,3, 0x89c6770,3, 0x89c6780,3, 0x89c6790,3, 0x89c67a0,3, 0x89c67b0,3, 0x89c67c0,3, 0x89c67d0,3, 0x89c67e0,3, 0x89c67f0,3, 0x89c6800,3, 0x89c6810,3, 0x89c6820,3, 0x89c6830,3, 0x89c6840,3, 0x89c6850,3, 0x89c6860,3, 0x89c6870,3, 0x89c6880,3, 0x89c6890,3, 0x89c68a0,3, 0x89c68b0,3, 0x89c68c0,3, 0x89c68d0,3, 0x89c68e0,3, 0x89c68f0,3, 0x89c6900,3, 0x89c6910,3, 0x89c6920,3, 0x89c6930,3, 0x89c6940,3, 0x89c6950,3, 0x89c6960,3, 0x89c6970,3, 0x89c6980,3, 0x89c6990,3, 0x89c69a0,3, 0x89c69b0,3, 0x89c69c0,3, 0x89c69d0,3, 0x89c69e0,3, 0x89c69f0,3, 0x89c6a00,3, 0x89c6a10,3, 0x89c6a20,3, 0x89c6a30,3, 0x89c6a40,3, 0x89c6a50,3, 0x89c6a60,3, 0x89c6a70,3, 0x89c6a80,3, 0x89c6a90,3, 0x89c6aa0,3, 0x89c6ab0,3, 0x89c6ac0,3, 0x89c6ad0,3, 0x89c6ae0,3, 0x89c6af0,3, 0x89c6b00,3, 0x89c6b10,3, 0x89c6b20,3, 0x89c6b30,3, 0x89c6b40,3, 0x89c6b50,3, 0x89c6b60,3, 0x89c6b70,3, 0x89c6b80,3, 0x89c6b90,3, 0x89c6ba0,3, 0x89c6bb0,3, 0x89c6bc0,3, 0x89c6bd0,3, 0x89c6be0,3, 0x89c6bf0,3, 0x89c6c00,3, 0x89c6c10,3, 0x89c6c20,3, 0x89c6c30,3, 0x89c6c40,3, 0x89c6c50,3, 0x89c6c60,3, 0x89c6c70,3, 0x89c6c80,3, 0x89c6c90,3, 0x89c6ca0,3, 0x89c6cb0,3, 0x89c6cc0,3, 0x89c6cd0,3, 0x89c6ce0,3, 0x89c6cf0,3, 0x89c6d00,3, 0x89c6d10,3, 0x89c6d20,3, 0x89c6d30,3, 0x89c6d40,3, 0x89c6d50,3, 0x89c6d60,3, 0x89c6d70,3, 0x89c6d80,3, 0x89c6d90,3, 0x89c6da0,3, 0x89c6db0,3, 0x89c6dc0,3, 0x89c6dd0,3, 0x89c6de0,3, 0x89c6df0,3, 0x89c6e00,3, 0x89c6e10,3, 0x89c6e20,3, 0x89c6e30,3, 0x89c6e40,3, 0x89c6e50,3, 0x89c6e60,3, 0x89c6e70,3, 0x89c6e80,3, 0x89c6e90,3, 0x89c6ea0,3, 0x89c6eb0,3, 0x89c6ec0,3, 0x89c6ed0,3, 0x89c6ee0,3, 0x89c6ef0,3, 0x89c6f00,3, 0x89c6f10,3, 0x89c6f20,3, 0x89c6f30,3, 0x89c6f40,3, 0x89c6f50,3, 0x89c6f60,3, 0x89c6f70,3, 0x89c6f80,3, 0x89c6f90,3, 0x89c6fa0,3, 0x89c6fb0,3, 0x89c6fc0,3, 0x89c6fd0,3, 0x89c6fe0,3, 0x89c6ff0,3, 0x89c7000,3, 0x89c7010,3, 0x89c7020,3, 0x89c7030,3, 0x89c7040,3, 0x89c7050,3, 0x89c7060,3, 0x89c7070,3, 0x89c7080,3, 0x89c7090,3, 0x89c70a0,3, 0x89c70b0,3, 0x89c70c0,3, 0x89c70d0,3, 0x89c70e0,3, 0x89c70f0,3, 0x89c7100,3, 0x89c7110,3, 0x89c7120,3, 0x89c7130,3, 0x89c7140,3, 0x89c7150,3, 0x89c7160,3, 0x89c7170,3, 0x89c7180,3, 0x89c7190,3, 0x89c71a0,3, 0x89c71b0,3, 0x89c71c0,3, 0x89c71d0,3, 0x89c71e0,3, 0x89c71f0,3, 0x89c7200,3, 0x89c7210,3, 0x89c7220,3, 0x89c7230,3, 0x89c7240,3, 0x89c7250,3, 0x89c7260,3, 0x89c7270,3, 0x89c7280,3, 0x89c7290,3, 0x89c72a0,3, 0x89c72b0,3, 0x89c72c0,3, 0x89c72d0,3, 0x89c72e0,3, 0x89c72f0,3, 0x89c7300,3, 0x89c7310,3, 0x89c7320,3, 0x89c7330,3, 0x89c7340,3, 0x89c7350,3, 0x89c7360,3, 0x89c7370,3, 0x89c7380,3, 0x89c7390,3, 0x89c73a0,3, 0x89c73b0,3, 0x89c73c0,3, 0x89c73d0,3, 0x89c73e0,3, 0x89c73f0,3, 0x89c7400,3, 0x89c7410,3, 0x89c7420,3, 0x89c7430,3, 0x89c7440,3, 0x89c7450,3, 0x89c7460,3, 0x89c7470,3, 0x89c7480,3, 0x89c7490,3, 0x89c74a0,3, 0x89c74b0,3, 0x89c74c0,3, 0x89c74d0,3, 0x89c74e0,3, 0x89c74f0,3, 0x89c7500,3, 0x89c7510,3, 0x89c7520,3, 0x89c7530,3, 0x89c7540,3, 0x89c7550,3, 0x89c7560,3, 0x89c7570,3, 0x89c7580,3, 0x89c7590,3, 0x89c75a0,3, 0x89c75b0,3, 0x89c75c0,3, 0x89c75d0,3, 0x89c75e0,3, 0x89c75f0,3, 0x89c7600,3, 0x89c7610,3, 0x89c7620,3, 0x89c7630,3, 0x89c7640,3, 0x89c7650,3, 0x89c7660,3, 0x89c7670,3, 0x89c7680,3, 0x89c7690,3, 0x89c76a0,3, 0x89c76b0,3, 0x89c76c0,3, 0x89c76d0,3, 0x89c76e0,3, 0x89c76f0,3, 0x89c7700,3, 0x89c7710,3, 0x89c7720,3, 0x89c7730,3, 0x89c7740,3, 0x89c7750,3, 0x89c7760,3, 0x89c7770,3, 0x89c7780,3, 0x89c7790,3, 0x89c77a0,3, 0x89c77b0,3, 0x89c77c0,3, 0x89c77d0,3, 0x89c77e0,3, 0x89c77f0,3, 0x89c7800,3, 0x89c7810,3, 0x89c7820,3, 0x89c7830,3, 0x89c7840,3, 0x89c7850,3, 0x89c7860,3, 0x89c7870,3, 0x89c7880,3, 0x89c7890,3, 0x89c78a0,3, 0x89c78b0,3, 0x89c78c0,3, 0x89c78d0,3, 0x89c78e0,3, 0x89c78f0,3, 0x89c7900,3, 0x89c7910,3, 0x89c7920,3, 0x89c7930,3, 0x89c7940,3, 0x89c7950,3, 0x89c7960,3, 0x89c7970,3, 0x89c7980,3, 0x89c7990,3, 0x89c79a0,3, 0x89c79b0,3, 0x89c79c0,3, 0x89c79d0,3, 0x89c79e0,3, 0x89c79f0,3, 0x89c7a00,3, 0x89c7a10,3, 0x89c7a20,3, 0x89c7a30,3, 0x89c7a40,3, 0x89c7a50,3, 0x89c7a60,3, 0x89c7a70,3, 0x89c7a80,3, 0x89c7a90,3, 0x89c7aa0,3, 0x89c7ab0,3, 0x89c7ac0,3, 0x89c7ad0,3, 0x89c7ae0,3, 0x89c7af0,3, 0x89c7b00,3, 0x89c7b10,3, 0x89c7b20,3, 0x89c7b30,3, 0x89c7b40,3, 0x89c7b50,3, 0x89c7b60,3, 0x89c7b70,3, 0x89c7b80,3, 0x89c7b90,3, 0x89c7ba0,3, 0x89c7bb0,3, 0x89c7bc0,3, 0x89c7bd0,3, 0x89c7be0,3, 0x89c7bf0,3, 0x89c7c00,3, 0x89c7c10,3, 0x89c7c20,3, 0x89c7c30,3, 0x89c7c40,3, 0x89c7c50,3, 0x89c7c60,3, 0x89c7c70,3, 0x89c7c80,3, 0x89c7c90,3, 0x89c7ca0,3, 0x89c7cb0,3, 0x89c7cc0,3, 0x89c7cd0,3, 0x89c7ce0,3, 0x89c7cf0,3, 0x89c7d00,3, 0x89c7d10,3, 0x89c7d20,3, 0x89c7d30,3, 0x89c7d40,3, 0x89c7d50,3, 0x89c7d60,3, 0x89c7d70,3, 0x89c7d80,3, 0x89c7d90,3, 0x89c7da0,3, 0x89c7db0,3, 0x89c7dc0,3, 0x89c7dd0,3, 0x89c7de0,3, 0x89c7df0,3, 0x89c7e00,3, 0x89c7e10,3, 0x89c7e20,3, 0x89c7e30,3, 0x89c7e40,3, 0x89c7e50,3, 0x89c7e60,3, 0x89c7e70,3, 0x89c7e80,3, 0x89c7e90,3, 0x89c7ea0,3, 0x89c7eb0,3, 0x89c7ec0,3, 0x89c7ed0,3, 0x89c7ee0,3, 0x89c7ef0,3, 0x89c7f00,3, 0x89c7f10,3, 0x89c7f20,3, 0x89c7f30,3, 0x89c7f40,3, 0x89c7f50,3, 0x89c7f60,3, 0x89c7f70,3, 0x89c7f80,3, 0x89c7f90,3, 0x89c7fa0,3, 0x89c7fb0,3, 0x89c7fc0,3, 0x89c7fd0,3, 0x89c7fe0,3, 0x89c7ff0,3, 0x89c8000,3, 0x89c8010,3, 0x89c8020,3, 0x89c8030,3, 0x89c8040,3, 0x89c8050,3, 0x89c8060,3, 0x89c8070,3, 0x89c8080,3, 0x89c8090,3, 0x89c80a0,3, 0x89c80b0,3, 0x89c80c0,3, 0x89c80d0,3, 0x89c80e0,3, 0x89c80f0,3, 0x89c8100,3, 0x89c8110,3, 0x89c8120,3, 0x89c8130,3, 0x89c8140,3, 0x89c8150,3, 0x89c8160,3, 0x89c8170,3, 0x89c8180,3, 0x89c8190,3, 0x89c81a0,3, 0x89c81b0,3, 0x89c81c0,3, 0x89c81d0,3, 0x89c81e0,3, 0x89c81f0,3, 0x89c8200,3, 0x89c8210,3, 0x89c8220,3, 0x89c8230,3, 0x89c8240,3, 0x89c8250,3, 0x89c8260,3, 0x89c8270,3, 0x89c8280,3, 0x89c8290,3, 0x89c82a0,3, 0x89c82b0,3, 0x89c82c0,3, 0x89c82d0,3, 0x89c82e0,3, 0x89c82f0,3, 0x89c8300,3, 0x89c8310,3, 0x89c8320,3, 0x89c8330,3, 0x89c8340,3, 0x89c8350,3, 0x89c8360,3, 0x89c8370,3, 0x89c8380,3, 0x89c8390,3, 0x89c83a0,3, 0x89c83b0,3, 0x89c83c0,3, 0x89c83d0,3, 0x89c83e0,3, 0x89c83f0,3, 0x89c8400,3, 0x89c8410,3, 0x89c8420,3, 0x89c8430,3, 0x89c8440,3, 0x89c8450,3, 0x89c8460,3, 0x89c8470,3, 0x89c8480,3, 0x89c8490,3, 0x89c84a0,3, 0x89c84b0,3, 0x89c84c0,3, 0x89c84d0,3, 0x89c84e0,3, 0x89c84f0,3, 0x89c8500,3, 0x89c8510,3, 0x89c8520,3, 0x89c8530,3, 0x89c8540,3, 0x89c8550,3, 0x89c8560,3, 0x89c8570,3, 0x89c8580,3, 0x89c8590,3, 0x89c85a0,3, 0x89c85b0,3, 0x89c85c0,3, 0x89c85d0,3, 0x89c85e0,3, 0x89c85f0,3, 0x89c8600,3, 0x89c8610,3, 0x89c8620,3, 0x89c8630,3, 0x89c8640,3, 0x89c8650,3, 0x89c8660,3, 0x89c8670,3, 0x89c8680,3, 0x89c8690,3, 0x89c86a0,3, 0x89c86b0,3, 0x89c86c0,3, 0x89c86d0,3, 0x89c86e0,3, 0x89c86f0,3, 0x89c8700,3, 0x89c8710,3, 0x89c8720,3, 0x89c8730,3, 0x89c8740,3, 0x89c8750,3, 0x89c8760,3, 0x89c8770,3, 0x89c8780,3, 0x89c8790,3, 0x89c87a0,3, 0x89c87b0,3, 0x89c87c0,3, 0x89c87d0,3, 0x89c87e0,3, 0x89c87f0,3, 0x89c8800,3, 0x89c8810,3, 0x89c8820,3, 0x89c8830,3, 0x89c8840,3, 0x89c8850,3, 0x89c8860,3, 0x89c8870,3, 0x89c8880,3, 0x89c8890,3, 0x89c88a0,3, 0x89c88b0,3, 0x89c88c0,3, 0x89c88d0,3, 0x89c88e0,3, 0x89c88f0,3, 0x89c8900,3, 0x89c8910,3, 0x89c8920,3, 0x89c8930,3, 0x89c8940,3, 0x89c8950,3, 0x89c8960,3, 0x89c8970,3, 0x89c8980,3, 0x89c8990,3, 0x89c89a0,3, 0x89c89b0,3, 0x89c89c0,3, 0x89c89d0,3, 0x89c89e0,3, 0x89c89f0,3, 0x89c8a00,3, 0x89c8a10,3, 0x89c8a20,3, 0x89c8a30,3, 0x89c8a40,3, 0x89c8a50,3, 0x89c8a60,3, 0x89c8a70,3, 0x89c8a80,3, 0x89c8a90,3, 0x89c8aa0,3, 0x89c8ab0,3, 0x89c8ac0,3, 0x89c8ad0,3, 0x89c8ae0,3, 0x89c8af0,3, 0x89c8b00,3, 0x89c8b10,3, 0x89c8b20,3, 0x89c8b30,3, 0x89c8b40,3, 0x89c8b50,3, 0x89c8b60,3, 0x89c8b70,3, 0x89c8b80,3, 0x89c8b90,3, 0x89c8ba0,3, 0x89c8bb0,3, 0x89c8bc0,3, 0x89c8bd0,3, 0x89c8be0,3, 0x89c8bf0,3, 0x89c8c00,3, 0x89c8c10,3, 0x89c8c20,3, 0x89c8c30,3, 0x89c8c40,3, 0x89c8c50,3, 0x89c8c60,3, 0x89c8c70,3, 0x89c8c80,3, 0x89c8c90,3, 0x89c8ca0,3, 0x89c8cb0,3, 0x89c8cc0,3, 0x89c8cd0,3, 0x89c8ce0,3, 0x89c8cf0,3, 0x89c8d00,3, 0x89c8d10,3, 0x89c8d20,3, 0x89c8d30,3, 0x89c8d40,3, 0x89c8d50,3, 0x89c8d60,3, 0x89c8d70,3, 0x89c8d80,3, 0x89c8d90,3, 0x89c8da0,3, 0x89c8db0,3, 0x89c8dc0,3, 0x89c8dd0,3, 0x89c8de0,3, 0x89c8df0,3, 0x89c8e00,3, 0x89c8e10,3, 0x89c8e20,3, 0x89c8e30,3, 0x89c8e40,3, 0x89c8e50,3, 0x89c8e60,3, 0x89c8e70,3, 0x89c8e80,3, 0x89c8e90,3, 0x89c8ea0,3, 0x89c8eb0,3, 0x89c8ec0,3, 0x89c8ed0,3, 0x89c8ee0,3, 0x89c8ef0,3, 0x89c8f00,3, 0x89c8f10,3, 0x89c8f20,3, 0x89c8f30,3, 0x89c8f40,3, 0x89c8f50,3, 0x89c8f60,3, 0x89c8f70,3, 0x89c8f80,3, 0x89c8f90,3, 0x89c8fa0,3, 0x89c8fb0,3, 0x89c8fc0,3, 0x89c8fd0,3, 0x89c8fe0,3, 0x89c8ff0,3, 0x89c9000,3, 0x89c9010,3, 0x89c9020,3, 0x89c9030,3, 0x89c9040,3, 0x89c9050,3, 0x89c9060,3, 0x89c9070,3, 0x89c9080,3, 0x89c9090,3, 0x89c90a0,3, 0x89c90b0,3, 0x89c90c0,3, 0x89c90d0,3, 0x89c90e0,3, 0x89c90f0,3, 0x89c9100,3, 0x89c9110,3, 0x89c9120,3, 0x89c9130,3, 0x89c9140,3, 0x89c9150,3, 0x89c9160,3, 0x89c9170,3, 0x89c9180,3, 0x89c9190,3, 0x89c91a0,3, 0x89c91b0,3, 0x89c91c0,3, 0x89c91d0,3, 0x89c91e0,3, 0x89c91f0,3, 0x89c9200,3, 0x89c9210,3, 0x89c9220,3, 0x89c9230,3, 0x89c9240,3, 0x89c9250,3, 0x89c9260,3, 0x89c9270,3, 0x89c9280,3, 0x89c9290,3, 0x89c92a0,3, 0x89c92b0,3, 0x89c92c0,3, 0x89c92d0,3, 0x89c92e0,3, 0x89c92f0,3, 0x89c9300,3, 0x89c9310,3, 0x89c9320,3, 0x89c9330,3, 0x89c9340,3, 0x89c9350,3, 0x89c9360,3, 0x89c9370,3, 0x89c9380,3, 0x89c9390,3, 0x89c93a0,3, 0x89c93b0,3, 0x89c93c0,3, 0x89c93d0,3, 0x89c93e0,3, 0x89c93f0,3, 0x89c9400,3, 0x89c9410,3, 0x89c9420,3, 0x89c9430,3, 0x89c9440,3, 0x89c9450,3, 0x89c9460,3, 0x89c9470,3, 0x89c9480,3, 0x89c9490,3, 0x89c94a0,3, 0x89c94b0,3, 0x89c94c0,3, 0x89c94d0,3, 0x89c94e0,3, 0x89c94f0,3, 0x89c9500,3, 0x89c9510,3, 0x89c9520,3, 0x89c9530,3, 0x89c9540,3, 0x89c9550,3, 0x89c9560,3, 0x89c9570,3, 0x89c9580,3, 0x89c9590,3, 0x89c95a0,3, 0x89c95b0,3, 0x89c95c0,3, 0x89c95d0,3, 0x89c95e0,3, 0x89c95f0,3, 0x89c9600,3, 0x89c9610,3, 0x89c9620,3, 0x89c9630,3, 0x89c9640,3, 0x89c9650,3, 0x89c9660,3, 0x89c9670,3, 0x89c9680,3, 0x89c9690,3, 0x89c96a0,3, 0x89c96b0,3, 0x89c96c0,3, 0x89c96d0,3, 0x89c96e0,3, 0x89c96f0,3, 0x89c9700,3, 0x89c9710,3, 0x89c9720,3, 0x89c9730,3, 0x89c9740,3, 0x89c9750,3, 0x89c9760,3, 0x89c9770,3, 0x89c9780,3, 0x89c9790,3, 0x89c97a0,3, 0x89c97b0,3, 0x89c97c0,3, 0x89c97d0,3, 0x89c97e0,3, 0x89c97f0,3, 0x89c9800,3, 0x89c9810,3, 0x89c9820,3, 0x89c9830,3, 0x89c9840,3, 0x89c9850,3, 0x89c9860,3, 0x89c9870,3, 0x89c9880,3, 0x89c9890,3, 0x89c98a0,3, 0x89c98b0,3, 0x89c98c0,3, 0x89c98d0,3, 0x89c98e0,3, 0x89c98f0,3, 0x89c9900,3, 0x89c9910,3, 0x89c9920,3, 0x89c9930,3, 0x89c9940,3, 0x89c9950,3, 0x89c9960,3, 0x89c9970,3, 0x89c9980,3, 0x89c9990,3, 0x89c99a0,3, 0x89c99b0,3, 0x89c99c0,3, 0x89c99d0,3, 0x89c99e0,3, 0x89c99f0,3, 0x89c9a00,3, 0x89c9a10,3, 0x89c9a20,3, 0x89c9a30,3, 0x89c9a40,3, 0x89c9a50,3, 0x89c9a60,3, 0x89c9a70,3, 0x89c9a80,3, 0x89c9a90,3, 0x89c9aa0,3, 0x89c9ab0,3, 0x89c9ac0,3, 0x89c9ad0,3, 0x89c9ae0,3, 0x89c9af0,3, 0x89c9b00,3, 0x89c9b10,3, 0x89c9b20,3, 0x89c9b30,3, 0x89c9b40,3, 0x89c9b50,3, 0x89c9b60,3, 0x89c9b70,3, 0x89c9b80,3, 0x89c9b90,3, 0x89c9ba0,3, 0x89c9bb0,3, 0x89c9bc0,3, 0x89c9bd0,3, 0x89c9be0,3, 0x89c9bf0,3, 0x89c9c00,3, 0x89c9c10,3, 0x89c9c20,3, 0x89c9c30,3, 0x89c9c40,3, 0x89c9c50,3, 0x89c9c60,3, 0x89c9c70,3, 0x89c9c80,3, 0x89c9c90,3, 0x89c9ca0,3, 0x89c9cb0,3, 0x89c9cc0,3, 0x89c9cd0,3, 0x89c9ce0,3, 0x89c9cf0,3, 0x89c9d00,3, 0x89c9d10,3, 0x89c9d20,3, 0x89c9d30,3, 0x89c9d40,3, 0x89c9d50,3, 0x89c9d60,3, 0x89c9d70,3, 0x89c9d80,3, 0x89c9d90,3, 0x89c9da0,3, 0x89c9db0,3, 0x89c9dc0,3, 0x89c9dd0,3, 0x89c9de0,3, 0x89c9df0,3, 0x89c9e00,3, 0x89c9e10,3, 0x89c9e20,3, 0x89c9e30,3, 0x89c9e40,3, 0x89c9e50,3, 0x89c9e60,3, 0x89c9e70,3, 0x89c9e80,3, 0x89c9e90,3, 0x89c9ea0,3, 0x89c9eb0,3, 0x89c9ec0,3, 0x89c9ed0,3, 0x89c9ee0,3, 0x89c9ef0,3, 0x89c9f00,3, 0x89c9f10,3, 0x89c9f20,3, 0x89c9f30,3, 0x89c9f40,3, 0x89c9f50,3, 0x89c9f60,3, 0x89c9f70,3, 0x89c9f80,3, 0x89c9f90,3, 0x89c9fa0,3, 0x89c9fb0,3, 0x89c9fc0,3, 0x89c9fd0,3, 0x89c9fe0,3, 0x89c9ff0,3, 0x89ca000,3, 0x89ca010,3, 0x89ca020,3, 0x89ca030,3, 0x89ca040,3, 0x89ca050,3, 0x89ca060,3, 0x89ca070,3, 0x89ca080,3, 0x89ca090,3, 0x89ca0a0,3, 0x89ca0b0,3, 0x89ca0c0,3, 0x89ca0d0,3, 0x89ca0e0,3, 0x89ca0f0,3, 0x89ca100,3, 0x89ca110,3, 0x89ca120,3, 0x89ca130,3, 0x89ca140,3, 0x89ca150,3, 0x89ca160,3, 0x89ca170,3, 0x89ca180,3, 0x89ca190,3, 0x89ca1a0,3, 0x89ca1b0,3, 0x89ca1c0,3, 0x89ca1d0,3, 0x89ca1e0,3, 0x89ca1f0,3, 0x89ca200,3, 0x89ca210,3, 0x89ca220,3, 0x89ca230,3, 0x89ca240,3, 0x89ca250,3, 0x89ca260,3, 0x89ca270,3, 0x89ca280,3, 0x89ca290,3, 0x89ca2a0,3, 0x89ca2b0,3, 0x89ca2c0,3, 0x89ca2d0,3, 0x89ca2e0,3, 0x89ca2f0,3, 0x89ca300,3, 0x89ca310,3, 0x89ca320,3, 0x89ca330,3, 0x89ca340,3, 0x89ca350,3, 0x89ca360,3, 0x89ca370,3, 0x89ca380,3, 0x89ca390,3, 0x89ca3a0,3, 0x89ca3b0,3, 0x89ca3c0,3, 0x89ca3d0,3, 0x89ca3e0,3, 0x89ca3f0,3, 0x89ca400,3, 0x89ca410,3, 0x89ca420,3, 0x89ca430,3, 0x89ca440,3, 0x89ca450,3, 0x89ca460,3, 0x89ca470,3, 0x89ca480,3, 0x89ca490,3, 0x89ca4a0,3, 0x89ca4b0,3, 0x89ca4c0,3, 0x89ca4d0,3, 0x89ca4e0,3, 0x89ca4f0,3, 0x89ca500,3, 0x89ca510,3, 0x89ca520,3, 0x89ca530,3, 0x89ca540,3, 0x89ca550,3, 0x89ca560,3, 0x89ca570,3, 0x89ca580,3, 0x89ca590,3, 0x89ca5a0,3, 0x89ca5b0,3, 0x89ca5c0,3, 0x89ca5d0,3, 0x89ca5e0,3, 0x89ca5f0,3, 0x89ca600,3, 0x89ca610,3, 0x89ca620,3, 0x89ca630,3, 0x89ca640,3, 0x89ca650,3, 0x89ca660,3, 0x89ca670,3, 0x89ca680,3, 0x89ca690,3, 0x89ca6a0,3, 0x89ca6b0,3, 0x89ca6c0,3, 0x89ca6d0,3, 0x89ca6e0,3, 0x89ca6f0,3, 0x89ca700,3, 0x89ca710,3, 0x89ca720,3, 0x89ca730,3, 0x89ca740,3, 0x89ca750,3, 0x89ca760,3, 0x89ca770,3, 0x89ca780,3, 0x89ca790,3, 0x89ca7a0,3, 0x89ca7b0,3, 0x89ca7c0,3, 0x89ca7d0,3, 0x89ca7e0,3, 0x89ca7f0,3, 0x89ca800,3, 0x89ca810,3, 0x89ca820,3, 0x89ca830,3, 0x89ca840,3, 0x89ca850,3, 0x89ca860,3, 0x89ca870,3, 0x89ca880,3, 0x89ca890,3, 0x89ca8a0,3, 0x89ca8b0,3, 0x89ca8c0,3, 0x89ca8d0,3, 0x89ca8e0,3, 0x89ca8f0,3, 0x89ca900,3, 0x89ca910,3, 0x89ca920,3, 0x89ca930,3, 0x89ca940,3, 0x89ca950,3, 0x89ca960,3, 0x89ca970,3, 0x89ca980,3, 0x89ca990,3, 0x89ca9a0,3, 0x89ca9b0,3, 0x89ca9c0,3, 0x89ca9d0,3, 0x89ca9e0,3, 0x89ca9f0,3, 0x89caa00,3, 0x89caa10,3, 0x89caa20,3, 0x89caa30,3, 0x89caa40,3, 0x89caa50,3, 0x89caa60,3, 0x89caa70,3, 0x89caa80,3, 0x89caa90,3, 0x89caaa0,3, 0x89caab0,3, 0x89caac0,3, 0x89caad0,3, 0x89caae0,3, 0x89caaf0,3, 0x89cab00,3, 0x89cab10,3, 0x89cab20,3, 0x89cab30,3, 0x89cab40,3, 0x89cab50,3, 0x89cab60,3, 0x89cab70,3, 0x89cab80,3, 0x89cab90,3, 0x89caba0,3, 0x89cabb0,3, 0x89cabc0,3, 0x89cabd0,3, 0x89cabe0,3, 0x89cabf0,3, 0x89cac00,3, 0x89cac10,3, 0x89cac20,3, 0x89cac30,3, 0x89cac40,3, 0x89cac50,3, 0x89cac60,3, 0x89cac70,3, 0x89cac80,3, 0x89cac90,3, 0x89caca0,3, 0x89cacb0,3, 0x89cacc0,3, 0x89cacd0,3, 0x89cace0,3, 0x89cacf0,3, 0x89cad00,3, 0x89cad10,3, 0x89cad20,3, 0x89cad30,3, 0x89cad40,3, 0x89cad50,3, 0x89cad60,3, 0x89cad70,3, 0x89cad80,3, 0x89cad90,3, 0x89cada0,3, 0x89cadb0,3, 0x89cadc0,3, 0x89cadd0,3, 0x89cade0,3, 0x89cadf0,3, 0x89cae00,3, 0x89cae10,3, 0x89cae20,3, 0x89cae30,3, 0x89cae40,3, 0x89cae50,3, 0x89cae60,3, 0x89cae70,3, 0x89cae80,3, 0x89cae90,3, 0x89caea0,3, 0x89caeb0,3, 0x89caec0,3, 0x89caed0,3, 0x89caee0,3, 0x89caef0,3, 0x89caf00,3, 0x89caf10,3, 0x89caf20,3, 0x89caf30,3, 0x89caf40,3, 0x89caf50,3, 0x89caf60,3, 0x89caf70,3, 0x89caf80,3, 0x89caf90,3, 0x89cafa0,3, 0x89cafb0,3, 0x89cafc0,3, 0x89cafd0,3, 0x89cafe0,3, 0x89caff0,3, 0x89cb000,3, 0x89cb010,3, 0x89cb020,3, 0x89cb030,3, 0x89cb040,3, 0x89cb050,3, 0x89cb060,3, 0x89cb070,3, 0x89cb080,3, 0x89cb090,3, 0x89cb0a0,3, 0x89cb0b0,3, 0x89cb0c0,3, 0x89cb0d0,3, 0x89cb0e0,3, 0x89cb0f0,3, 0x89cb100,3, 0x89cb110,3, 0x89cb120,3, 0x89cb130,3, 0x89cb140,3, 0x89cb150,3, 0x89cb160,3, 0x89cb170,3, 0x89cb180,3, 0x89cb190,3, 0x89cb1a0,3, 0x89cb1b0,3, 0x89cb1c0,3, 0x89cb1d0,3, 0x89cb1e0,3, 0x89cb1f0,3, 0x89cb200,3, 0x89cb210,3, 0x89cb220,3, 0x89cb230,3, 0x89cb240,3, 0x89cb250,3, 0x89cb260,3, 0x89cb270,3, 0x89cb280,3, 0x89cb290,3, 0x89cb2a0,3, 0x89cb2b0,3, 0x89cb2c0,3, 0x89cb2d0,3, 0x89cb2e0,3, 0x89cb2f0,3, 0x89cb300,3, 0x89cb310,3, 0x89cb320,3, 0x89cb330,3, 0x89cb340,3, 0x89cb350,3, 0x89cb360,3, 0x89cb370,3, 0x89cb380,3, 0x89cb390,3, 0x89cb3a0,3, 0x89cb3b0,3, 0x89cb3c0,3, 0x89cb3d0,3, 0x89cb3e0,3, 0x89cb3f0,3, 0x89cb400,3, 0x89cb410,3, 0x89cb420,3, 0x89cb430,3, 0x89cb440,3, 0x89cb450,3, 0x89cb460,3, 0x89cb470,3, 0x89cb480,3, 0x89cb490,3, 0x89cb4a0,3, 0x89cb4b0,3, 0x89cb4c0,3, 0x89cb4d0,3, 0x89cb4e0,3, 0x89cb4f0,3, 0x89cb500,3, 0x89cb510,3, 0x89cb520,3, 0x89cb530,3, 0x89cb540,3, 0x89cb550,3, 0x89cb560,3, 0x89cb570,3, 0x89cb580,3, 0x89cb590,3, 0x89cb5a0,3, 0x89cb5b0,3, 0x89cb5c0,3, 0x89cb5d0,3, 0x89cb5e0,3, 0x89cb5f0,3, 0x89cb600,3, 0x89cb610,3, 0x89cb620,3, 0x89cb630,3, 0x89cb640,3, 0x89cb650,3, 0x89cb660,3, 0x89cb670,3, 0x89cb680,3, 0x89cb690,3, 0x89cb6a0,3, 0x89cb6b0,3, 0x89cb6c0,3, 0x89cb6d0,3, 0x89cb6e0,3, 0x89cb6f0,3, 0x89cb700,3, 0x89cb710,3, 0x89cb720,3, 0x89cb730,3, 0x89cb740,3, 0x89cb750,3, 0x89cb760,3, 0x89cb770,3, 0x89cb780,3, 0x89cb790,3, 0x89cb7a0,3, 0x89cb7b0,3, 0x89cb7c0,3, 0x89cb7d0,3, 0x89cb7e0,3, 0x89cb7f0,3, 0x89cb800,3, 0x89cb810,3, 0x89cb820,3, 0x89cb830,3, 0x89cb840,3, 0x89cb850,3, 0x89cb860,3, 0x89cb870,3, 0x89cb880,3, 0x89cb890,3, 0x89cb8a0,3, 0x89cb8b0,3, 0x89cb8c0,3, 0x89cb8d0,3, 0x89cb8e0,3, 0x89cb8f0,3, 0x89cb900,3, 0x89cb910,3, 0x89cb920,3, 0x89cb930,3, 0x89cb940,3, 0x89cb950,3, 0x89cb960,3, 0x89cb970,3, 0x89cb980,3, 0x89cb990,3, 0x89cb9a0,3, 0x89cb9b0,3, 0x89cb9c0,3, 0x89cb9d0,3, 0x89cb9e0,3, 0x89cb9f0,3, 0x89cba00,3, 0x89cba10,3, 0x89cba20,3, 0x89cba30,3, 0x89cba40,3, 0x89cba50,3, 0x89cba60,3, 0x89cba70,3, 0x89cba80,3, 0x89cba90,3, 0x89cbaa0,3, 0x89cbab0,3, 0x89cbac0,3, 0x89cbad0,3, 0x89cbae0,3, 0x89cbaf0,3, 0x89cbb00,3, 0x89cbb10,3, 0x89cbb20,3, 0x89cbb30,3, 0x89cbb40,3, 0x89cbb50,3, 0x89cbb60,3, 0x89cbb70,3, 0x89cbb80,3, 0x89cbb90,3, 0x89cbba0,3, 0x89cbbb0,3, 0x89cbbc0,3, 0x89cbbd0,3, 0x89cbbe0,3, 0x89cbbf0,3, 0x89cbc00,3, 0x89cbc10,3, 0x89cbc20,3, 0x89cbc30,3, 0x89cbc40,3, 0x89cbc50,3, 0x89cbc60,3, 0x89cbc70,3, 0x89cbc80,3, 0x89cbc90,3, 0x89cbca0,3, 0x89cbcb0,3, 0x89cbcc0,3, 0x89cbcd0,3, 0x89cbce0,3, 0x89cbcf0,3, 0x89cbd00,3, 0x89cbd10,3, 0x89cbd20,3, 0x89cbd30,3, 0x89cbd40,3, 0x89cbd50,3, 0x89cbd60,3, 0x89cbd70,3, 0x89cbd80,3, 0x89cbd90,3, 0x89cbda0,3, 0x89cbdb0,3, 0x89cbdc0,3, 0x89cbdd0,3, 0x89cbde0,3, 0x89cbdf0,3, 0x89cbe00,3, 0x89cbe10,3, 0x89cbe20,3, 0x89cbe30,3, 0x89cbe40,3, 0x89cbe50,3, 0x89cbe60,3, 0x89cbe70,3, 0x89cbe80,3, 0x89cbe90,3, 0x89cbea0,3, 0x89cbeb0,3, 0x89cbec0,3, 0x89cbed0,3, 0x89cbee0,3, 0x89cbef0,3, 0x89cbf00,3, 0x89cbf10,3, 0x89cbf20,3, 0x89cbf30,3, 0x89cbf40,3, 0x89cbf50,3, 0x89cbf60,3, 0x89cbf70,3, 0x89cbf80,3, 0x89cbf90,3, 0x89cbfa0,3, 0x89cbfb0,3, 0x89cbfc0,3, 0x89cbfd0,3, 0x89cbfe0,3, 0x89cbff0,3, 0x89cc000,3, 0x89cc010,3, 0x89cc020,3, 0x89cc030,3, 0x89cc040,3, 0x89cc050,3, 0x89cc060,3, 0x89cc070,3, 0x89cc080,3, 0x89cc090,3, 0x89cc0a0,3, 0x89cc0b0,3, 0x89cc0c0,3, 0x89cc0d0,3, 0x89cc0e0,3, 0x89cc0f0,3, 0x89cc100,3, 0x89cc110,3, 0x89cc120,3, 0x89cc130,3, 0x89cc140,3, 0x89cc150,3, 0x89cc160,3, 0x89cc170,3, 0x89cc180,3, 0x89cc190,3, 0x89cc1a0,3, 0x89cc1b0,3, 0x89cc1c0,3, 0x89cc1d0,3, 0x89cc1e0,3, 0x89cc1f0,3, 0x89cc200,3, 0x89cc210,3, 0x89cc220,3, 0x89cc230,3, 0x89cc240,3, 0x89cc250,3, 0x89cc260,3, 0x89cc270,3, 0x89cc280,3, 0x89cc290,3, 0x89cc2a0,3, 0x89cc2b0,3, 0x89cc2c0,3, 0x89cc2d0,3, 0x89cc2e0,3, 0x89cc2f0,3, 0x89cc300,3, 0x89cc310,3, 0x89cc320,3, 0x89cc330,3, 0x89cc340,3, 0x89cc350,3, 0x89cc360,3, 0x89cc370,3, 0x89cc380,3, 0x89cc390,3, 0x89cc3a0,3, 0x89cc3b0,3, 0x89cc3c0,3, 0x89cc3d0,3, 0x89cc3e0,3, 0x89cc3f0,3, 0x89cc400,3, 0x89cc410,3, 0x89cc420,3, 0x89cc430,3, 0x89cc440,3, 0x89cc450,3, 0x89cc460,3, 0x89cc470,3, 0x89cc480,3, 0x89cc490,3, 0x89cc4a0,3, 0x89cc4b0,3, 0x89cc4c0,3, 0x89cc4d0,3, 0x89cc4e0,3, 0x89cc4f0,3, 0x89cc500,3, 0x89cc510,3, 0x89cc520,3, 0x89cc530,3, 0x89cc540,3, 0x89cc550,3, 0x89cc560,3, 0x89cc570,3, 0x89cc580,3, 0x89cc590,3, 0x89cc5a0,3, 0x89cc5b0,3, 0x89cc5c0,3, 0x89cc5d0,3, 0x89cc5e0,3, 0x89cc5f0,3, 0x89cc600,3, 0x89cc610,3, 0x89cc620,3, 0x89cc630,3, 0x89cc640,3, 0x89cc650,3, 0x89cc660,3, 0x89cc670,3, 0x89cc680,3, 0x89cc690,3, 0x89cc6a0,3, 0x89cc6b0,3, 0x89cc6c0,3, 0x89cc6d0,3, 0x89cc6e0,3, 0x89cc6f0,3, 0x89cc700,3, 0x89cc710,3, 0x89cc720,3, 0x89cc730,3, 0x89cc740,3, 0x89cc750,3, 0x89cc760,3, 0x89cc770,3, 0x89cc780,3, 0x89cc790,3, 0x89cc7a0,3, 0x89cc7b0,3, 0x89cc7c0,3, 0x89cc7d0,3, 0x89cc7e0,3, 0x89cc7f0,3, 0x89cc800,3, 0x89cc810,3, 0x89cc820,3, 0x89cc830,3, 0x89cc840,3, 0x89cc850,3, 0x89cc860,3, 0x89cc870,3, 0x89cc880,3, 0x89cc890,3, 0x89cc8a0,3, 0x89cc8b0,3, 0x89cc8c0,3, 0x89cc8d0,3, 0x89cc8e0,3, 0x89cc8f0,3, 0x89cc900,3, 0x89cc910,3, 0x89cc920,3, 0x89cc930,3, 0x89cc940,3, 0x89cc950,3, 0x89cc960,3, 0x89cc970,3, 0x89cc980,3, 0x89cc990,3, 0x89cc9a0,3, 0x89cc9b0,3, 0x89cc9c0,3, 0x89cc9d0,3, 0x89cc9e0,3, 0x89cc9f0,3, 0x89cca00,3, 0x89cca10,3, 0x89cca20,3, 0x89cca30,3, 0x89cca40,3, 0x89cca50,3, 0x89cca60,3, 0x89cca70,3, 0x89cca80,3, 0x89cca90,3, 0x89ccaa0,3, 0x89ccab0,3, 0x89ccac0,3, 0x89ccad0,3, 0x89ccae0,3, 0x89ccaf0,3, 0x89ccb00,3, 0x89ccb10,3, 0x89ccb20,3, 0x89ccb30,3, 0x89ccb40,3, 0x89ccb50,3, 0x89ccb60,3, 0x89ccb70,3, 0x89ccb80,3, 0x89ccb90,3, 0x89ccba0,3, 0x89ccbb0,3, 0x89ccbc0,3, 0x89ccbd0,3, 0x89ccbe0,3, 0x89ccbf0,3, 0x89ccc00,3, 0x89ccc10,3, 0x89ccc20,3, 0x89ccc30,3, 0x89ccc40,3, 0x89ccc50,3, 0x89ccc60,3, 0x89ccc70,3, 0x89ccc80,3, 0x89ccc90,3, 0x89ccca0,3, 0x89cccb0,3, 0x89cccc0,3, 0x89cccd0,3, 0x89ccce0,3, 0x89cccf0,3, 0x89ccd00,3, 0x89ccd10,3, 0x89ccd20,3, 0x89ccd30,3, 0x89ccd40,3, 0x89ccd50,3, 0x89ccd60,3, 0x89ccd70,3, 0x89ccd80,3, 0x89ccd90,3, 0x89ccda0,3, 0x89ccdb0,3, 0x89ccdc0,3, 0x89ccdd0,3, 0x89ccde0,3, 0x89ccdf0,3, 0x89cce00,3, 0x89cce10,3, 0x89cce20,3, 0x89cce30,3, 0x89cce40,3, 0x89cce50,3, 0x89cce60,3, 0x89cce70,3, 0x89cce80,3, 0x89cce90,3, 0x89ccea0,3, 0x89cceb0,3, 0x89ccec0,3, 0x89cced0,3, 0x89ccee0,3, 0x89ccef0,3, 0x89ccf00,3, 0x89ccf10,3, 0x89ccf20,3, 0x89ccf30,3, 0x89ccf40,3, 0x89ccf50,3, 0x89ccf60,3, 0x89ccf70,3, 0x89ccf80,3, 0x89ccf90,3, 0x89ccfa0,3, 0x89ccfb0,3, 0x89ccfc0,3, 0x89ccfd0,3, 0x89ccfe0,3, 0x89ccff0,3, 0x89cd000,3, 0x89cd010,3, 0x89cd020,3, 0x89cd030,3, 0x89cd040,3, 0x89cd050,3, 0x89cd060,3, 0x89cd070,3, 0x89cd080,3, 0x89cd090,3, 0x89cd0a0,3, 0x89cd0b0,3, 0x89cd0c0,3, 0x89cd0d0,3, 0x89cd0e0,3, 0x89cd0f0,3, 0x89cd100,3, 0x89cd110,3, 0x89cd120,3, 0x89cd130,3, 0x89cd140,3, 0x89cd150,3, 0x89cd160,3, 0x89cd170,3, 0x89cd180,3, 0x89cd190,3, 0x89cd1a0,3, 0x89cd1b0,3, 0x89cd1c0,3, 0x89cd1d0,3, 0x89cd1e0,3, 0x89cd1f0,3, 0x89cd200,3, 0x89cd210,3, 0x89cd220,3, 0x89cd230,3, 0x89cd240,3, 0x89cd250,3, 0x89cd260,3, 0x89cd270,3, 0x89cd280,3, 0x89cd290,3, 0x89cd2a0,3, 0x89cd2b0,3, 0x89cd2c0,3, 0x89cd2d0,3, 0x89cd2e0,3, 0x89cd2f0,3, 0x89cd300,3, 0x89cd310,3, 0x89cd320,3, 0x89cd330,3, 0x89cd340,3, 0x89cd350,3, 0x89cd360,3, 0x89cd370,3, 0x89cd380,3, 0x89cd390,3, 0x89cd3a0,3, 0x89cd3b0,3, 0x89cd3c0,3, 0x89cd3d0,3, 0x89cd3e0,3, 0x89cd3f0,3, 0x89cd400,3, 0x89cd410,3, 0x89cd420,3, 0x89cd430,3, 0x89cd440,3, 0x89cd450,3, 0x89cd460,3, 0x89cd470,3, 0x89cd480,3, 0x89cd490,3, 0x89cd4a0,3, 0x89cd4b0,3, 0x89cd4c0,3, 0x89cd4d0,3, 0x89cd4e0,3, 0x89cd4f0,3, 0x89cd500,3, 0x89cd510,3, 0x89cd520,3, 0x89cd530,3, 0x89cd540,3, 0x89cd550,3, 0x89cd560,3, 0x89cd570,3, 0x89cd580,3, 0x89cd590,3, 0x89cd5a0,3, 0x89cd5b0,3, 0x89cd5c0,3, 0x89cd5d0,3, 0x89cd5e0,3, 0x89cd5f0,3, 0x89cd600,3, 0x89cd610,3, 0x89cd620,3, 0x89cd630,3, 0x89cd640,3, 0x89cd650,3, 0x89cd660,3, 0x89cd670,3, 0x89cd680,3, 0x89cd690,3, 0x89cd6a0,3, 0x89cd6b0,3, 0x89cd6c0,3, 0x89cd6d0,3, 0x89cd6e0,3, 0x89cd6f0,3, 0x89cd700,3, 0x89cd710,3, 0x89cd720,3, 0x89cd730,3, 0x89cd740,3, 0x89cd750,3, 0x89cd760,3, 0x89cd770,3, 0x89cd780,3, 0x89cd790,3, 0x89cd7a0,3, 0x89cd7b0,3, 0x89cd7c0,3, 0x89cd7d0,3, 0x89cd7e0,3, 0x89cd7f0,3, 0x89cd800,3, 0x89cd810,3, 0x89cd820,3, 0x89cd830,3, 0x89cd840,3, 0x89cd850,3, 0x89cd860,3, 0x89cd870,3, 0x89cd880,3, 0x89cd890,3, 0x89cd8a0,3, 0x89cd8b0,3, 0x89cd8c0,3, 0x89cd8d0,3, 0x89cd8e0,3, 0x89cd8f0,3, 0x89cd900,3, 0x89cd910,3, 0x89cd920,3, 0x89cd930,3, 0x89cd940,3, 0x89cd950,3, 0x89cd960,3, 0x89cd970,3, 0x89cd980,3, 0x89cd990,3, 0x89cd9a0,3, 0x89cd9b0,3, 0x89cd9c0,3, 0x89cd9d0,3, 0x89cd9e0,3, 0x89cd9f0,3, 0x89cda00,3, 0x89cda10,3, 0x89cda20,3, 0x89cda30,3, 0x89cda40,3, 0x89cda50,3, 0x89cda60,3, 0x89cda70,3, 0x89cda80,3, 0x89cda90,3, 0x89cdaa0,3, 0x89cdab0,3, 0x89cdac0,3, 0x89cdad0,3, 0x89cdae0,3, 0x89cdaf0,3, 0x89cdb00,3, 0x89cdb10,3, 0x89cdb20,3, 0x89cdb30,3, 0x89cdb40,3, 0x89cdb50,3, 0x89cdb60,3, 0x89cdb70,3, 0x89cdb80,3, 0x89cdb90,3, 0x89cdba0,3, 0x89cdbb0,3, 0x89cdbc0,3, 0x89cdbd0,3, 0x89cdbe0,3, 0x89cdbf0,3, 0x89cdc00,3, 0x89cdc10,3, 0x89cdc20,3, 0x89cdc30,3, 0x89cdc40,3, 0x89cdc50,3, 0x89cdc60,3, 0x89cdc70,3, 0x89cdc80,3, 0x89cdc90,3, 0x89cdca0,3, 0x89cdcb0,3, 0x89cdcc0,3, 0x89cdcd0,3, 0x89cdce0,3, 0x89cdcf0,3, 0x89cdd00,3, 0x89cdd10,3, 0x89cdd20,3, 0x89cdd30,3, 0x89cdd40,3, 0x89cdd50,3, 0x89cdd60,3, 0x89cdd70,3, 0x89cdd80,3, 0x89cdd90,3, 0x89cdda0,3, 0x89cddb0,3, 0x89cddc0,3, 0x89cddd0,3, 0x89cdde0,3, 0x89cddf0,3, 0x89cde00,3, 0x89cde10,3, 0x89cde20,3, 0x89cde30,3, 0x89cde40,3, 0x89cde50,3, 0x89cde60,3, 0x89cde70,3, 0x89cde80,3, 0x89cde90,3, 0x89cdea0,3, 0x89cdeb0,3, 0x89cdec0,3, 0x89cded0,3, 0x89cdee0,3, 0x89cdef0,3, 0x89cdf00,3, 0x89cdf10,3, 0x89cdf20,3, 0x89cdf30,3, 0x89cdf40,3, 0x89cdf50,3, 0x89cdf60,3, 0x89cdf70,3, 0x89cdf80,3, 0x89cdf90,3, 0x89cdfa0,3, 0x89cdfb0,3, 0x89cdfc0,3, 0x89cdfd0,3, 0x89cdfe0,3, 0x89cdff0,3, 0x89ce000,3, 0x89ce010,3, 0x89ce020,3, 0x89ce030,3, 0x89ce040,3, 0x89ce050,3, 0x89ce060,3, 0x89ce070,3, 0x89ce080,3, 0x89ce090,3, 0x89ce0a0,3, 0x89ce0b0,3, 0x89ce0c0,3, 0x89ce0d0,3, 0x89ce0e0,3, 0x89ce0f0,3, 0x89ce100,3, 0x89ce110,3, 0x89ce120,3, 0x89ce130,3, 0x89ce140,3, 0x89ce150,3, 0x89ce160,3, 0x89ce170,3, 0x89ce180,3, 0x89ce190,3, 0x89ce1a0,3, 0x89ce1b0,3, 0x89ce1c0,3, 0x89ce1d0,3, 0x89ce1e0,3, 0x89ce1f0,3, 0x89ce200,3, 0x89ce210,3, 0x89ce220,3, 0x89ce230,3, 0x89ce240,3, 0x89ce250,3, 0x89ce260,3, 0x89ce270,3, 0x89ce280,3, 0x89ce290,3, 0x89ce2a0,3, 0x89ce2b0,3, 0x89ce2c0,3, 0x89ce2d0,3, 0x89ce2e0,3, 0x89ce2f0,3, 0x89ce300,3, 0x89ce310,3, 0x89ce320,3, 0x89ce330,3, 0x89ce340,3, 0x89ce350,3, 0x89ce360,3, 0x89ce370,3, 0x89ce380,3, 0x89ce390,3, 0x89ce3a0,3, 0x89ce3b0,3, 0x89ce3c0,3, 0x89ce3d0,3, 0x89ce3e0,3, 0x89ce3f0,3, 0x89ce400,3, 0x89ce410,3, 0x89ce420,3, 0x89ce430,3, 0x89ce440,3, 0x89ce450,3, 0x89ce460,3, 0x89ce470,3, 0x89ce480,3, 0x89ce490,3, 0x89ce4a0,3, 0x89ce4b0,3, 0x89ce4c0,3, 0x89ce4d0,3, 0x89ce4e0,3, 0x89ce4f0,3, 0x89ce500,3, 0x89ce510,3, 0x89ce520,3, 0x89ce530,3, 0x89ce540,3, 0x89ce550,3, 0x89ce560,3, 0x89ce570,3, 0x89ce580,3, 0x89ce590,3, 0x89ce5a0,3, 0x89ce5b0,3, 0x89ce5c0,3, 0x89ce5d0,3, 0x89ce5e0,3, 0x89ce5f0,3, 0x89ce600,3, 0x89ce610,3, 0x89ce620,3, 0x89ce630,3, 0x89ce640,3, 0x89ce650,3, 0x89ce660,3, 0x89ce670,3, 0x89ce680,3, 0x89ce690,3, 0x89ce6a0,3, 0x89ce6b0,3, 0x89ce6c0,3, 0x89ce6d0,3, 0x89ce6e0,3, 0x89ce6f0,3, 0x89ce700,3, 0x89ce710,3, 0x89ce720,3, 0x89ce730,3, 0x89ce740,3, 0x89ce750,3, 0x89ce760,3, 0x89ce770,3, 0x89ce780,3, 0x89ce790,3, 0x89ce7a0,3, 0x89ce7b0,3, 0x89ce7c0,3, 0x89ce7d0,3, 0x89ce7e0,3, 0x89ce7f0,3, 0x89ce800,3, 0x89ce810,3, 0x89ce820,3, 0x89ce830,3, 0x89ce840,3, 0x89ce850,3, 0x89ce860,3, 0x89ce870,3, 0x89ce880,3, 0x89ce890,3, 0x89ce8a0,3, 0x89ce8b0,3, 0x89ce8c0,3, 0x89ce8d0,3, 0x89ce8e0,3, 0x89ce8f0,3, 0x89ce900,3, 0x89ce910,3, 0x89ce920,3, 0x89ce930,3, 0x89ce940,3, 0x89ce950,3, 0x89ce960,3, 0x89ce970,3, 0x89ce980,3, 0x89ce990,3, 0x89ce9a0,3, 0x89ce9b0,3, 0x89ce9c0,3, 0x89ce9d0,3, 0x89ce9e0,3, 0x89ce9f0,3, 0x89cea00,3, 0x89cea10,3, 0x89cea20,3, 0x89cea30,3, 0x89cea40,3, 0x89cea50,3, 0x89cea60,3, 0x89cea70,3, 0x89cea80,3, 0x89cea90,3, 0x89ceaa0,3, 0x89ceab0,3, 0x89ceac0,3, 0x89cead0,3, 0x89ceae0,3, 0x89ceaf0,3, 0x89ceb00,3, 0x89ceb10,3, 0x89ceb20,3, 0x89ceb30,3, 0x89ceb40,3, 0x89ceb50,3, 0x89ceb60,3, 0x89ceb70,3, 0x89ceb80,3, 0x89ceb90,3, 0x89ceba0,3, 0x89cebb0,3, 0x89cebc0,3, 0x89cebd0,3, 0x89cebe0,3, 0x89cebf0,3, 0x89cec00,3, 0x89cec10,3, 0x89cec20,3, 0x89cec30,3, 0x89cec40,3, 0x89cec50,3, 0x89cec60,3, 0x89cec70,3, 0x89cec80,3, 0x89cec90,3, 0x89ceca0,3, 0x89cecb0,3, 0x89cecc0,3, 0x89cecd0,3, 0x89cece0,3, 0x89cecf0,3, 0x89ced00,3, 0x89ced10,3, 0x89ced20,3, 0x89ced30,3, 0x89ced40,3, 0x89ced50,3, 0x89ced60,3, 0x89ced70,3, 0x89ced80,3, 0x89ced90,3, 0x89ceda0,3, 0x89cedb0,3, 0x89cedc0,3, 0x89cedd0,3, 0x89cede0,3, 0x89cedf0,3, 0x89cee00,3, 0x89cee10,3, 0x89cee20,3, 0x89cee30,3, 0x89cee40,3, 0x89cee50,3, 0x89cee60,3, 0x89cee70,3, 0x89cee80,3, 0x89cee90,3, 0x89ceea0,3, 0x89ceeb0,3, 0x89ceec0,3, 0x89ceed0,3, 0x89ceee0,3, 0x89ceef0,3, 0x89cef00,3, 0x89cef10,3, 0x89cef20,3, 0x89cef30,3, 0x89cef40,3, 0x89cef50,3, 0x89cef60,3, 0x89cef70,3, 0x89cef80,3, 0x89cef90,3, 0x89cefa0,3, 0x89cefb0,3, 0x89cefc0,3, 0x89cefd0,3, 0x89cefe0,3, 0x89ceff0,3, 0x89cf000,3, 0x89cf010,3, 0x89cf020,3, 0x89cf030,3, 0x89cf040,3, 0x89cf050,3, 0x89cf060,3, 0x89cf070,3, 0x89cf080,3, 0x89cf090,3, 0x89cf0a0,3, 0x89cf0b0,3, 0x89cf0c0,3, 0x89cf0d0,3, 0x89cf0e0,3, 0x89cf0f0,3, 0x89cf100,3, 0x89cf110,3, 0x89cf120,3, 0x89cf130,3, 0x89cf140,3, 0x89cf150,3, 0x89cf160,3, 0x89cf170,3, 0x89cf180,3, 0x89cf190,3, 0x89cf1a0,3, 0x89cf1b0,3, 0x89cf1c0,3, 0x89cf1d0,3, 0x89cf1e0,3, 0x89cf1f0,3, 0x89cf200,3, 0x89cf210,3, 0x89cf220,3, 0x89cf230,3, 0x89cf240,3, 0x89cf250,3, 0x89cf260,3, 0x89cf270,3, 0x89cf280,3, 0x89cf290,3, 0x89cf2a0,3, 0x89cf2b0,3, 0x89cf2c0,3, 0x89cf2d0,3, 0x89cf2e0,3, 0x89cf2f0,3, 0x89cf300,3, 0x89cf310,3, 0x89cf320,3, 0x89cf330,3, 0x89cf340,3, 0x89cf350,3, 0x89cf360,3, 0x89cf370,3, 0x89cf380,3, 0x89cf390,3, 0x89cf3a0,3, 0x89cf3b0,3, 0x89cf3c0,3, 0x89cf3d0,3, 0x89cf3e0,3, 0x89cf3f0,3, 0x89cf400,3, 0x89cf410,3, 0x89cf420,3, 0x89cf430,3, 0x89cf440,3, 0x89cf450,3, 0x89cf460,3, 0x89cf470,3, 0x89cf480,3, 0x89cf490,3, 0x89cf4a0,3, 0x89cf4b0,3, 0x89cf4c0,3, 0x89cf4d0,3, 0x89cf4e0,3, 0x89cf4f0,3, 0x89cf500,3, 0x89cf510,3, 0x89cf520,3, 0x89cf530,3, 0x89cf540,3, 0x89cf550,3, 0x89cf560,3, 0x89cf570,3, 0x89cf580,3, 0x89cf590,3, 0x89cf5a0,3, 0x89cf5b0,3, 0x89cf5c0,3, 0x89cf5d0,3, 0x89cf5e0,3, 0x89cf5f0,3, 0x89cf600,3, 0x89cf610,3, 0x89cf620,3, 0x89cf630,3, 0x89cf640,3, 0x89cf650,3, 0x89cf660,3, 0x89cf670,3, 0x89cf680,3, 0x89cf690,3, 0x89cf6a0,3, 0x89cf6b0,3, 0x89cf6c0,3, 0x89cf6d0,3, 0x89cf6e0,3, 0x89cf6f0,3, 0x89cf700,3, 0x89cf710,3, 0x89cf720,3, 0x89cf730,3, 0x89cf740,3, 0x89cf750,3, 0x89cf760,3, 0x89cf770,3, 0x89cf780,3, 0x89cf790,3, 0x89cf7a0,3, 0x89cf7b0,3, 0x89cf7c0,3, 0x89cf7d0,3, 0x89cf7e0,3, 0x89cf7f0,3, 0x89cf800,3, 0x89cf810,3, 0x89cf820,3, 0x89cf830,3, 0x89cf840,3, 0x89cf850,3, 0x89cf860,3, 0x89cf870,3, 0x89cf880,3, 0x89cf890,3, 0x89cf8a0,3, 0x89cf8b0,3, 0x89cf8c0,3, 0x89cf8d0,3, 0x89cf8e0,3, 0x89cf8f0,3, 0x89cf900,3, 0x89cf910,3, 0x89cf920,3, 0x89cf930,3, 0x89cf940,3, 0x89cf950,3, 0x89cf960,3, 0x89cf970,3, 0x89cf980,3, 0x89cf990,3, 0x89cf9a0,3, 0x89cf9b0,3, 0x89cf9c0,3, 0x89cf9d0,3, 0x89cf9e0,3, 0x89cf9f0,3, 0x89cfa00,3, 0x89cfa10,3, 0x89cfa20,3, 0x89cfa30,3, 0x89cfa40,3, 0x89cfa50,3, 0x89cfa60,3, 0x89cfa70,3, 0x89cfa80,3, 0x89cfa90,3, 0x89cfaa0,3, 0x89cfab0,3, 0x89cfac0,3, 0x89cfad0,3, 0x89cfae0,3, 0x89cfaf0,3, 0x89cfb00,3, 0x89cfb10,3, 0x89cfb20,3, 0x89cfb30,3, 0x89cfb40,3, 0x89cfb50,3, 0x89cfb60,3, 0x89cfb70,3, 0x89cfb80,3, 0x89cfb90,3, 0x89cfba0,3, 0x89cfbb0,3, 0x89cfbc0,3, 0x89cfbd0,3, 0x89cfbe0,3, 0x89cfbf0,3, 0x89cfc00,3, 0x89cfc10,3, 0x89cfc20,3, 0x89cfc30,3, 0x89cfc40,3, 0x89cfc50,3, 0x89cfc60,3, 0x89cfc70,3, 0x89cfc80,3, 0x89cfc90,3, 0x89cfca0,3, 0x89cfcb0,3, 0x89cfcc0,3, 0x89cfcd0,3, 0x89cfce0,3, 0x89cfcf0,3, 0x89cfd00,3, 0x89cfd10,3, 0x89cfd20,3, 0x89cfd30,3, 0x89cfd40,3, 0x89cfd50,3, 0x89cfd60,3, 0x89cfd70,3, 0x89cfd80,3, 0x89cfd90,3, 0x89cfda0,3, 0x89cfdb0,3, 0x89cfdc0,3, 0x89cfdd0,3, 0x89cfde0,3, 0x89cfdf0,3, 0x89cfe00,3, 0x89cfe10,3, 0x89cfe20,3, 0x89cfe30,3, 0x89cfe40,3, 0x89cfe50,3, 0x89cfe60,3, 0x89cfe70,3, 0x89cfe80,3, 0x89cfe90,3, 0x89cfea0,3, 0x89cfeb0,3, 0x89cfec0,3, 0x89cfed0,3, 0x89cfee0,3, 0x89cfef0,3, 0x89cff00,3, 0x89cff10,3, 0x89cff20,3, 0x89cff30,3, 0x89cff40,3, 0x89cff50,3, 0x89cff60,3, 0x89cff70,3, 0x89cff80,3, 0x89cff90,3, 0x89cffa0,3, 0x89cffb0,3, 0x89cffc0,3, 0x89cffd0,3, 0x89cffe0,3, 0x89cfff0,3, 0x89d0000,3, 0x89d0010,3, 0x89d0020,3, 0x89d0030,3, 0x89d0040,3, 0x89d0050,3, 0x89d0060,3, 0x89d0070,3, 0x89d0080,3, 0x89d0090,3, 0x89d00a0,3, 0x89d00b0,3, 0x89d00c0,3, 0x89d00d0,3, 0x89d00e0,3, 0x89d00f0,3, 0x89d0100,3, 0x89d0110,3, 0x89d0120,3, 0x89d0130,3, 0x89d0140,3, 0x89d0150,3, 0x89d0160,3, 0x89d0170,3, 0x89d0180,3, 0x89d0190,3, 0x89d01a0,3, 0x89d01b0,3, 0x89d01c0,3, 0x89d01d0,3, 0x89d01e0,3, 0x89d01f0,3, 0x89e0000,2, 0x89e0040,9, 0x89e0080,3, 0x89e0090,3, 0x89e00a0,3, 0x8a00000,3, 0x8a00010,3, 0x8a00020,3, 0x8a00030,3, 0x8a00040,3, 0x8a00050,3, 0x8a00060,3, 0x8a00070,3, 0x8a00080,3, 0x8a00090,3, 0x8a000a0,3, 0x8a000b0,3, 0x8a000c0,3, 0x8a000d0,3, 0x8a000e0,3, 0x8a000f0,3, 0x8a00100,2, 0x8a00140,9, 0x8a00180,3, 0x8a00190,3, 0x8a001a0,3, 0x8a00200,3, 0x8a00210,3, 0x8a00220,3, 0x8a00230,3, 0x8a00240,3, 0x8a00250,3, 0x8a00260,3, 0x8a00270,3, 0x8a00280,3, 0x8a00290,3, 0x8a002a0,3, 0x8a002b0,3, 0x8a002c0,3, 0x8a002d0,3, 0x8a002e0,3, 0x8a002f0,3, 0x8a00300,2, 0x8a00340,9, 0x8a00380,3, 0x8a00390,3, 0x8a003a0,3, 0x8a40000,3, 0x8a40010,3, 0x8a40020,3, 0x8a40030,3, 0x8a40040,3, 0x8a40050,3, 0x8a40060,3, 0x8a40070,3, 0x8a40080,3, 0x8a40090,3, 0x8a400a0,3, 0x8a400b0,3, 0x8a400c0,3, 0x8a400d0,3, 0x8a400e0,3, 0x8a400f0,3, 0x8a40100,3, 0x8a40110,3, 0x8a40120,3, 0x8a40130,3, 0x8a40140,3, 0x8a40150,3, 0x8a40160,3, 0x8a40170,3, 0x8a40180,3, 0x8a40190,3, 0x8a401a0,3, 0x8a401b0,3, 0x8a401c0,3, 0x8a401d0,3, 0x8a401e0,3, 0x8a401f0,3, 0x8a40200,3, 0x8a40210,3, 0x8a40220,3, 0x8a40230,3, 0x8a40240,3, 0x8a40250,3, 0x8a40260,3, 0x8a40270,3, 0x8a40280,3, 0x8a40290,3, 0x8a402a0,3, 0x8a402b0,3, 0x8a402c0,3, 0x8a402d0,3, 0x8a402e0,3, 0x8a402f0,3, 0x8a40300,3, 0x8a40310,3, 0x8a40320,3, 0x8a40330,3, 0x8a40340,3, 0x8a40350,3, 0x8a40360,3, 0x8a40370,3, 0x8a40380,3, 0x8a40390,3, 0x8a403a0,3, 0x8a403b0,3, 0x8a403c0,3, 0x8a403d0,3, 0x8a403e0,3, 0x8a403f0,3, 0x8a40400,3, 0x8a40410,3, 0x8a40420,3, 0x8a40430,3, 0x8a40440,3, 0x8a40450,3, 0x8a40460,3, 0x8a40470,3, 0x8a40480,3, 0x8a40490,3, 0x8a404a0,3, 0x8a404b0,3, 0x8a404c0,3, 0x8a404d0,3, 0x8a404e0,3, 0x8a404f0,3, 0x8a40500,3, 0x8a40510,3, 0x8a40520,3, 0x8a40530,3, 0x8a40540,3, 0x8a40550,3, 0x8a40560,3, 0x8a40570,3, 0x8a40580,3, 0x8a40590,3, 0x8a405a0,3, 0x8a405b0,3, 0x8a405c0,3, 0x8a405d0,3, 0x8a405e0,3, 0x8a405f0,3, 0x8a40600,3, 0x8a40610,3, 0x8a40620,3, 0x8a40630,3, 0x8a40640,3, 0x8a40650,3, 0x8a40660,3, 0x8a40670,3, 0x8a40680,3, 0x8a40690,3, 0x8a406a0,3, 0x8a406b0,3, 0x8a406c0,3, 0x8a406d0,3, 0x8a406e0,3, 0x8a406f0,3, 0x8a40700,3, 0x8a40710,3, 0x8a40720,3, 0x8a40730,3, 0x8a40740,3, 0x8a40750,3, 0x8a40760,3, 0x8a40770,3, 0x8a40780,3, 0x8a40790,3, 0x8a407a0,3, 0x8a407b0,3, 0x8a407c0,3, 0x8a407d0,3, 0x8a407e0,3, 0x8a407f0,3, 0x8a40800,3, 0x8a40810,3, 0x8a40820,3, 0x8a40830,3, 0x8a40840,3, 0x8a40850,3, 0x8a40860,3, 0x8a40870,3, 0x8a40880,3, 0x8a40890,3, 0x8a408a0,3, 0x8a408b0,3, 0x8a408c0,3, 0x8a408d0,3, 0x8a408e0,3, 0x8a408f0,3, 0x8a40900,3, 0x8a40910,3, 0x8a40920,3, 0x8a40930,3, 0x8a40940,3, 0x8a40950,3, 0x8a40960,3, 0x8a40970,3, 0x8a40980,3, 0x8a40990,3, 0x8a409a0,3, 0x8a409b0,3, 0x8a409c0,3, 0x8a409d0,3, 0x8a409e0,3, 0x8a409f0,3, 0x8a40a00,3, 0x8a40a10,3, 0x8a40a20,3, 0x8a40a30,3, 0x8a40a40,3, 0x8a40a50,3, 0x8a40a60,3, 0x8a40a70,3, 0x8a40a80,3, 0x8a40a90,3, 0x8a40aa0,3, 0x8a40ab0,3, 0x8a40ac0,3, 0x8a40ad0,3, 0x8a40ae0,3, 0x8a40af0,3, 0x8a40b00,3, 0x8a40b10,3, 0x8a40b20,3, 0x8a40b30,3, 0x8a40b40,3, 0x8a40b50,3, 0x8a40b60,3, 0x8a40b70,3, 0x8a40b80,3, 0x8a40b90,3, 0x8a40ba0,3, 0x8a40bb0,3, 0x8a40bc0,3, 0x8a40bd0,3, 0x8a40be0,3, 0x8a40bf0,3, 0x8a40c00,3, 0x8a40c10,3, 0x8a40c20,3, 0x8a40c30,3, 0x8a40c40,3, 0x8a40c50,3, 0x8a40c60,3, 0x8a40c70,3, 0x8a40c80,3, 0x8a40c90,3, 0x8a40ca0,3, 0x8a40cb0,3, 0x8a40cc0,3, 0x8a40cd0,3, 0x8a40ce0,3, 0x8a40cf0,3, 0x8a40d00,3, 0x8a40d10,3, 0x8a40d20,3, 0x8a40d30,3, 0x8a40d40,3, 0x8a40d50,3, 0x8a40d60,3, 0x8a40d70,3, 0x8a40d80,3, 0x8a40d90,3, 0x8a40da0,3, 0x8a40db0,3, 0x8a40dc0,3, 0x8a40dd0,3, 0x8a40de0,3, 0x8a40df0,3, 0x8a40e00,3, 0x8a40e10,3, 0x8a40e20,3, 0x8a40e30,3, 0x8a40e40,3, 0x8a40e50,3, 0x8a40e60,3, 0x8a40e70,3, 0x8a40e80,3, 0x8a40e90,3, 0x8a40ea0,3, 0x8a40eb0,3, 0x8a40ec0,3, 0x8a40ed0,3, 0x8a40ee0,3, 0x8a40ef0,3, 0x8a40f00,3, 0x8a40f10,3, 0x8a40f20,3, 0x8a40f30,3, 0x8a40f40,3, 0x8a40f50,3, 0x8a40f60,3, 0x8a40f70,3, 0x8a40f80,3, 0x8a40f90,3, 0x8a40fa0,3, 0x8a40fb0,3, 0x8a40fc0,3, 0x8a40fd0,3, 0x8a40fe0,3, 0x8a40ff0,3, 0x8a41000,3, 0x8a41010,3, 0x8a41020,3, 0x8a41030,3, 0x8a41040,3, 0x8a41050,3, 0x8a41060,3, 0x8a41070,3, 0x8a41080,3, 0x8a41090,3, 0x8a410a0,3, 0x8a410b0,3, 0x8a410c0,3, 0x8a410d0,3, 0x8a410e0,3, 0x8a410f0,3, 0x8a41100,3, 0x8a41110,3, 0x8a41120,3, 0x8a41130,3, 0x8a41140,3, 0x8a41150,3, 0x8a41160,3, 0x8a41170,3, 0x8a41180,3, 0x8a41190,3, 0x8a411a0,3, 0x8a411b0,3, 0x8a411c0,3, 0x8a411d0,3, 0x8a411e0,3, 0x8a411f0,3, 0x8a41200,3, 0x8a41210,3, 0x8a41220,3, 0x8a41230,3, 0x8a41240,3, 0x8a41250,3, 0x8a41260,3, 0x8a41270,3, 0x8a41280,3, 0x8a41290,3, 0x8a412a0,3, 0x8a412b0,3, 0x8a412c0,3, 0x8a412d0,3, 0x8a412e0,3, 0x8a412f0,3, 0x8a41300,3, 0x8a41310,3, 0x8a41320,3, 0x8a41330,3, 0x8a41340,3, 0x8a41350,3, 0x8a41360,3, 0x8a41370,3, 0x8a41380,3, 0x8a41390,3, 0x8a413a0,3, 0x8a413b0,3, 0x8a413c0,3, 0x8a413d0,3, 0x8a413e0,3, 0x8a413f0,3, 0x8a41400,3, 0x8a41410,3, 0x8a41420,3, 0x8a41430,3, 0x8a41440,3, 0x8a41450,3, 0x8a41460,3, 0x8a41470,3, 0x8a41480,3, 0x8a41490,3, 0x8a414a0,3, 0x8a414b0,3, 0x8a414c0,3, 0x8a414d0,3, 0x8a414e0,3, 0x8a414f0,3, 0x8a41500,3, 0x8a41510,3, 0x8a41520,3, 0x8a41530,3, 0x8a41540,3, 0x8a41550,3, 0x8a41560,3, 0x8a41570,3, 0x8a41580,3, 0x8a41590,3, 0x8a415a0,3, 0x8a415b0,3, 0x8a415c0,3, 0x8a415d0,3, 0x8a415e0,3, 0x8a415f0,3, 0x8a41600,3, 0x8a41610,3, 0x8a41620,3, 0x8a41630,3, 0x8a41640,3, 0x8a41650,3, 0x8a41660,3, 0x8a41670,3, 0x8a41680,3, 0x8a41690,3, 0x8a416a0,3, 0x8a416b0,3, 0x8a416c0,3, 0x8a416d0,3, 0x8a416e0,3, 0x8a416f0,3, 0x8a41700,3, 0x8a41710,3, 0x8a41720,3, 0x8a41730,3, 0x8a41740,3, 0x8a41750,3, 0x8a41760,3, 0x8a41770,3, 0x8a41780,3, 0x8a41790,3, 0x8a417a0,3, 0x8a417b0,3, 0x8a417c0,3, 0x8a417d0,3, 0x8a417e0,3, 0x8a417f0,3, 0x8a41800,3, 0x8a41810,3, 0x8a41820,3, 0x8a41830,3, 0x8a41840,3, 0x8a41850,3, 0x8a41860,3, 0x8a41870,3, 0x8a41880,3, 0x8a41890,3, 0x8a418a0,3, 0x8a418b0,3, 0x8a418c0,3, 0x8a418d0,3, 0x8a418e0,3, 0x8a418f0,3, 0x8a41900,3, 0x8a41910,3, 0x8a41920,3, 0x8a41930,3, 0x8a41940,3, 0x8a41950,3, 0x8a41960,3, 0x8a41970,3, 0x8a41980,3, 0x8a41990,3, 0x8a419a0,3, 0x8a419b0,3, 0x8a419c0,3, 0x8a419d0,3, 0x8a419e0,3, 0x8a419f0,3, 0x8a41a00,3, 0x8a41a10,3, 0x8a41a20,3, 0x8a41a30,3, 0x8a41a40,3, 0x8a41a50,3, 0x8a41a60,3, 0x8a41a70,3, 0x8a41a80,3, 0x8a41a90,3, 0x8a41aa0,3, 0x8a41ab0,3, 0x8a41ac0,3, 0x8a41ad0,3, 0x8a41ae0,3, 0x8a41af0,3, 0x8a41b00,3, 0x8a41b10,3, 0x8a41b20,3, 0x8a41b30,3, 0x8a41b40,3, 0x8a41b50,3, 0x8a41b60,3, 0x8a41b70,3, 0x8a41b80,3, 0x8a41b90,3, 0x8a41ba0,3, 0x8a41bb0,3, 0x8a41bc0,3, 0x8a41bd0,3, 0x8a41be0,3, 0x8a41bf0,3, 0x8a41c00,3, 0x8a41c10,3, 0x8a41c20,3, 0x8a41c30,3, 0x8a41c40,3, 0x8a41c50,3, 0x8a41c60,3, 0x8a41c70,3, 0x8a41c80,3, 0x8a41c90,3, 0x8a41ca0,3, 0x8a41cb0,3, 0x8a41cc0,3, 0x8a41cd0,3, 0x8a41ce0,3, 0x8a41cf0,3, 0x8a41d00,3, 0x8a41d10,3, 0x8a41d20,3, 0x8a41d30,3, 0x8a41d40,3, 0x8a41d50,3, 0x8a41d60,3, 0x8a41d70,3, 0x8a41d80,3, 0x8a41d90,3, 0x8a41da0,3, 0x8a41db0,3, 0x8a41dc0,3, 0x8a41dd0,3, 0x8a41de0,3, 0x8a41df0,3, 0x8a41e00,3, 0x8a41e10,3, 0x8a41e20,3, 0x8a41e30,3, 0x8a41e40,3, 0x8a41e50,3, 0x8a41e60,3, 0x8a41e70,3, 0x8a41e80,3, 0x8a41e90,3, 0x8a41ea0,3, 0x8a41eb0,3, 0x8a41ec0,3, 0x8a41ed0,3, 0x8a41ee0,3, 0x8a41ef0,3, 0x8a41f00,3, 0x8a41f10,3, 0x8a41f20,3, 0x8a41f30,3, 0x8a41f40,3, 0x8a41f50,3, 0x8a41f60,3, 0x8a41f70,3, 0x8a41f80,3, 0x8a41f90,3, 0x8a41fa0,3, 0x8a41fb0,3, 0x8a41fc0,3, 0x8a41fd0,3, 0x8a41fe0,3, 0x8a41ff0,3, 0x8a42000,3, 0x8a42010,3, 0x8a42020,3, 0x8a42030,3, 0x8a42040,3, 0x8a42050,3, 0x8a42060,3, 0x8a42070,3, 0x8a42080,3, 0x8a42090,3, 0x8a420a0,3, 0x8a420b0,3, 0x8a420c0,3, 0x8a420d0,3, 0x8a420e0,3, 0x8a420f0,3, 0x8a42100,3, 0x8a42110,3, 0x8a42120,3, 0x8a42130,3, 0x8a42140,3, 0x8a42150,3, 0x8a42160,3, 0x8a42170,3, 0x8a42180,3, 0x8a42190,3, 0x8a421a0,3, 0x8a421b0,3, 0x8a421c0,3, 0x8a421d0,3, 0x8a421e0,3, 0x8a421f0,3, 0x8a42200,3, 0x8a42210,3, 0x8a42220,3, 0x8a42230,3, 0x8a42240,3, 0x8a42250,3, 0x8a42260,3, 0x8a42270,3, 0x8a42280,3, 0x8a42290,3, 0x8a422a0,3, 0x8a422b0,3, 0x8a422c0,3, 0x8a422d0,3, 0x8a422e0,3, 0x8a422f0,3, 0x8a42300,3, 0x8a42310,3, 0x8a42320,3, 0x8a42330,3, 0x8a42340,3, 0x8a42350,3, 0x8a42360,3, 0x8a42370,3, 0x8a42380,3, 0x8a42390,3, 0x8a423a0,3, 0x8a423b0,3, 0x8a423c0,3, 0x8a423d0,3, 0x8a423e0,3, 0x8a423f0,3, 0x8a42400,3, 0x8a42410,3, 0x8a42420,3, 0x8a42430,3, 0x8a42440,3, 0x8a42450,3, 0x8a42460,3, 0x8a42470,3, 0x8a42480,3, 0x8a42490,3, 0x8a424a0,3, 0x8a424b0,3, 0x8a424c0,3, 0x8a424d0,3, 0x8a424e0,3, 0x8a424f0,3, 0x8a42500,3, 0x8a42510,3, 0x8a42520,3, 0x8a42530,3, 0x8a42540,3, 0x8a42550,3, 0x8a42560,3, 0x8a42570,3, 0x8a42580,3, 0x8a42590,3, 0x8a425a0,3, 0x8a425b0,3, 0x8a425c0,3, 0x8a425d0,3, 0x8a425e0,3, 0x8a425f0,3, 0x8a42600,3, 0x8a42610,3, 0x8a42620,3, 0x8a42630,3, 0x8a42640,3, 0x8a42650,3, 0x8a42660,3, 0x8a42670,3, 0x8a42680,3, 0x8a42690,3, 0x8a426a0,3, 0x8a426b0,3, 0x8a426c0,3, 0x8a426d0,3, 0x8a426e0,3, 0x8a426f0,3, 0x8a42700,3, 0x8a42710,3, 0x8a42720,3, 0x8a42730,3, 0x8a42740,3, 0x8a42750,3, 0x8a42760,3, 0x8a42770,3, 0x8a42780,3, 0x8a42790,3, 0x8a427a0,3, 0x8a427b0,3, 0x8a427c0,3, 0x8a427d0,3, 0x8a427e0,3, 0x8a427f0,3, 0x8a42800,3, 0x8a42810,3, 0x8a42820,3, 0x8a42830,3, 0x8a42840,3, 0x8a42850,3, 0x8a42860,3, 0x8a42870,3, 0x8a42880,3, 0x8a42890,3, 0x8a428a0,3, 0x8a428b0,3, 0x8a428c0,3, 0x8a428d0,3, 0x8a428e0,3, 0x8a428f0,3, 0x8a42900,3, 0x8a42910,3, 0x8a42920,3, 0x8a42930,3, 0x8a42940,3, 0x8a42950,3, 0x8a42960,3, 0x8a42970,3, 0x8a42980,3, 0x8a42990,3, 0x8a429a0,3, 0x8a429b0,3, 0x8a429c0,3, 0x8a429d0,3, 0x8a429e0,3, 0x8a429f0,3, 0x8a42a00,3, 0x8a42a10,3, 0x8a42a20,3, 0x8a42a30,3, 0x8a42a40,3, 0x8a42a50,3, 0x8a42a60,3, 0x8a42a70,3, 0x8a42a80,3, 0x8a42a90,3, 0x8a42aa0,3, 0x8a42ab0,3, 0x8a42ac0,3, 0x8a42ad0,3, 0x8a42ae0,3, 0x8a42af0,3, 0x8a42b00,3, 0x8a42b10,3, 0x8a42b20,3, 0x8a42b30,3, 0x8a42b40,3, 0x8a42b50,3, 0x8a42b60,3, 0x8a42b70,3, 0x8a42b80,3, 0x8a42b90,3, 0x8a42ba0,3, 0x8a42bb0,3, 0x8a42bc0,3, 0x8a42bd0,3, 0x8a42be0,3, 0x8a42bf0,3, 0x8a42c00,3, 0x8a42c10,3, 0x8a42c20,3, 0x8a42c30,3, 0x8a42c40,3, 0x8a42c50,3, 0x8a42c60,3, 0x8a42c70,3, 0x8a42c80,3, 0x8a42c90,3, 0x8a42ca0,3, 0x8a42cb0,3, 0x8a42cc0,3, 0x8a42cd0,3, 0x8a42ce0,3, 0x8a42cf0,3, 0x8a42d00,3, 0x8a42d10,3, 0x8a42d20,3, 0x8a42d30,3, 0x8a42d40,3, 0x8a42d50,3, 0x8a42d60,3, 0x8a42d70,3, 0x8a42d80,3, 0x8a42d90,3, 0x8a42da0,3, 0x8a42db0,3, 0x8a42dc0,3, 0x8a42dd0,3, 0x8a42de0,3, 0x8a42df0,3, 0x8a42e00,3, 0x8a42e10,3, 0x8a42e20,3, 0x8a42e30,3, 0x8a42e40,3, 0x8a42e50,3, 0x8a42e60,3, 0x8a42e70,3, 0x8a42e80,3, 0x8a42e90,3, 0x8a42ea0,3, 0x8a42eb0,3, 0x8a42ec0,3, 0x8a42ed0,3, 0x8a42ee0,3, 0x8a42ef0,3, 0x8a42f00,3, 0x8a42f10,3, 0x8a42f20,3, 0x8a42f30,3, 0x8a42f40,3, 0x8a42f50,3, 0x8a42f60,3, 0x8a42f70,3, 0x8a42f80,3, 0x8a42f90,3, 0x8a42fa0,3, 0x8a42fb0,3, 0x8a42fc0,3, 0x8a42fd0,3, 0x8a42fe0,3, 0x8a42ff0,3, 0x8a43000,3, 0x8a43010,3, 0x8a43020,3, 0x8a43030,3, 0x8a43040,3, 0x8a43050,3, 0x8a43060,3, 0x8a43070,3, 0x8a43080,3, 0x8a43090,3, 0x8a430a0,3, 0x8a430b0,3, 0x8a430c0,3, 0x8a430d0,3, 0x8a430e0,3, 0x8a430f0,3, 0x8a43100,3, 0x8a43110,3, 0x8a43120,3, 0x8a43130,3, 0x8a43140,3, 0x8a43150,3, 0x8a43160,3, 0x8a43170,3, 0x8a43180,3, 0x8a43190,3, 0x8a431a0,3, 0x8a431b0,3, 0x8a431c0,3, 0x8a431d0,3, 0x8a431e0,3, 0x8a431f0,3, 0x8a43200,3, 0x8a43210,3, 0x8a43220,3, 0x8a43230,3, 0x8a43240,3, 0x8a43250,3, 0x8a43260,3, 0x8a43270,3, 0x8a43280,3, 0x8a43290,3, 0x8a432a0,3, 0x8a432b0,3, 0x8a432c0,3, 0x8a432d0,3, 0x8a432e0,3, 0x8a432f0,3, 0x8a43300,3, 0x8a43310,3, 0x8a43320,3, 0x8a43330,3, 0x8a43340,3, 0x8a43350,3, 0x8a43360,3, 0x8a43370,3, 0x8a43380,3, 0x8a43390,3, 0x8a433a0,3, 0x8a433b0,3, 0x8a433c0,3, 0x8a433d0,3, 0x8a433e0,3, 0x8a433f0,3, 0x8a43400,3, 0x8a43410,3, 0x8a43420,3, 0x8a43430,3, 0x8a43440,3, 0x8a43450,3, 0x8a43460,3, 0x8a43470,3, 0x8a43480,3, 0x8a43490,3, 0x8a434a0,3, 0x8a434b0,3, 0x8a434c0,3, 0x8a434d0,3, 0x8a434e0,3, 0x8a434f0,3, 0x8a43500,3, 0x8a43510,3, 0x8a43520,3, 0x8a43530,3, 0x8a43540,3, 0x8a43550,3, 0x8a43560,3, 0x8a43570,3, 0x8a43580,3, 0x8a43590,3, 0x8a435a0,3, 0x8a435b0,3, 0x8a435c0,3, 0x8a435d0,3, 0x8a435e0,3, 0x8a435f0,3, 0x8a43600,3, 0x8a43610,3, 0x8a43620,3, 0x8a43630,3, 0x8a43640,3, 0x8a43650,3, 0x8a43660,3, 0x8a43670,3, 0x8a43680,3, 0x8a43690,3, 0x8a436a0,3, 0x8a436b0,3, 0x8a436c0,3, 0x8a436d0,3, 0x8a436e0,3, 0x8a436f0,3, 0x8a43700,3, 0x8a43710,3, 0x8a43720,3, 0x8a43730,3, 0x8a43740,3, 0x8a43750,3, 0x8a43760,3, 0x8a43770,3, 0x8a43780,3, 0x8a43790,3, 0x8a437a0,3, 0x8a437b0,3, 0x8a437c0,3, 0x8a437d0,3, 0x8a437e0,3, 0x8a437f0,3, 0x8a43800,3, 0x8a43810,3, 0x8a43820,3, 0x8a43830,3, 0x8a43840,3, 0x8a43850,3, 0x8a43860,3, 0x8a43870,3, 0x8a43880,3, 0x8a43890,3, 0x8a438a0,3, 0x8a438b0,3, 0x8a438c0,3, 0x8a438d0,3, 0x8a438e0,3, 0x8a438f0,3, 0x8a43900,3, 0x8a43910,3, 0x8a43920,3, 0x8a43930,3, 0x8a43940,3, 0x8a43950,3, 0x8a43960,3, 0x8a43970,3, 0x8a43980,3, 0x8a43990,3, 0x8a439a0,3, 0x8a439b0,3, 0x8a439c0,3, 0x8a439d0,3, 0x8a439e0,3, 0x8a439f0,3, 0x8a43a00,3, 0x8a43a10,3, 0x8a43a20,3, 0x8a43a30,3, 0x8a43a40,3, 0x8a43a50,3, 0x8a43a60,3, 0x8a43a70,3, 0x8a43a80,3, 0x8a43a90,3, 0x8a43aa0,3, 0x8a43ab0,3, 0x8a43ac0,3, 0x8a43ad0,3, 0x8a43ae0,3, 0x8a43af0,3, 0x8a43b00,3, 0x8a43b10,3, 0x8a43b20,3, 0x8a43b30,3, 0x8a43b40,3, 0x8a43b50,3, 0x8a43b60,3, 0x8a43b70,3, 0x8a43b80,3, 0x8a43b90,3, 0x8a43ba0,3, 0x8a43bb0,3, 0x8a43bc0,3, 0x8a43bd0,3, 0x8a43be0,3, 0x8a43bf0,3, 0x8a43c00,3, 0x8a43c10,3, 0x8a43c20,3, 0x8a43c30,3, 0x8a43c40,3, 0x8a43c50,3, 0x8a43c60,3, 0x8a43c70,3, 0x8a43c80,3, 0x8a43c90,3, 0x8a43ca0,3, 0x8a43cb0,3, 0x8a43cc0,3, 0x8a43cd0,3, 0x8a43ce0,3, 0x8a43cf0,3, 0x8a43d00,3, 0x8a43d10,3, 0x8a43d20,3, 0x8a43d30,3, 0x8a43d40,3, 0x8a43d50,3, 0x8a43d60,3, 0x8a43d70,3, 0x8a43d80,3, 0x8a43d90,3, 0x8a43da0,3, 0x8a43db0,3, 0x8a43dc0,3, 0x8a43dd0,3, 0x8a43de0,3, 0x8a43df0,3, 0x8a43e00,3, 0x8a43e10,3, 0x8a43e20,3, 0x8a43e30,3, 0x8a43e40,3, 0x8a43e50,3, 0x8a43e60,3, 0x8a43e70,3, 0x8a43e80,3, 0x8a43e90,3, 0x8a43ea0,3, 0x8a43eb0,3, 0x8a43ec0,3, 0x8a43ed0,3, 0x8a43ee0,3, 0x8a43ef0,3, 0x8a43f00,3, 0x8a43f10,3, 0x8a43f20,3, 0x8a43f30,3, 0x8a43f40,3, 0x8a43f50,3, 0x8a43f60,3, 0x8a43f70,3, 0x8a43f80,3, 0x8a43f90,3, 0x8a43fa0,3, 0x8a43fb0,3, 0x8a43fc0,3, 0x8a43fd0,3, 0x8a43fe0,3, 0x8a43ff0,3, 0x8a44000,3, 0x8a44010,3, 0x8a44020,3, 0x8a44030,3, 0x8a44040,3, 0x8a44050,3, 0x8a44060,3, 0x8a44070,3, 0x8a44080,3, 0x8a44090,3, 0x8a440a0,3, 0x8a440b0,3, 0x8a440c0,3, 0x8a440d0,3, 0x8a440e0,3, 0x8a440f0,3, 0x8a44100,3, 0x8a44110,3, 0x8a44120,3, 0x8a44130,3, 0x8a44140,3, 0x8a44150,3, 0x8a44160,3, 0x8a44170,3, 0x8a44180,3, 0x8a44190,3, 0x8a441a0,3, 0x8a441b0,3, 0x8a441c0,3, 0x8a441d0,3, 0x8a441e0,3, 0x8a441f0,3, 0x8a44200,3, 0x8a44210,3, 0x8a44220,3, 0x8a44230,3, 0x8a44240,3, 0x8a44250,3, 0x8a44260,3, 0x8a44270,3, 0x8a44280,3, 0x8a44290,3, 0x8a442a0,3, 0x8a442b0,3, 0x8a442c0,3, 0x8a442d0,3, 0x8a442e0,3, 0x8a442f0,3, 0x8a44300,3, 0x8a44310,3, 0x8a44320,3, 0x8a44330,3, 0x8a44340,3, 0x8a44350,3, 0x8a44360,3, 0x8a44370,3, 0x8a44380,3, 0x8a44390,3, 0x8a443a0,3, 0x8a443b0,3, 0x8a443c0,3, 0x8a443d0,3, 0x8a443e0,3, 0x8a443f0,3, 0x8a44400,3, 0x8a44410,3, 0x8a44420,3, 0x8a44430,3, 0x8a44440,3, 0x8a44450,3, 0x8a44460,3, 0x8a44470,3, 0x8a44480,3, 0x8a44490,3, 0x8a444a0,3, 0x8a444b0,3, 0x8a444c0,3, 0x8a444d0,3, 0x8a444e0,3, 0x8a444f0,3, 0x8a44500,3, 0x8a44510,3, 0x8a44520,3, 0x8a44530,3, 0x8a44540,3, 0x8a44550,3, 0x8a44560,3, 0x8a44570,3, 0x8a44580,3, 0x8a44590,3, 0x8a445a0,3, 0x8a445b0,3, 0x8a445c0,3, 0x8a445d0,3, 0x8a445e0,3, 0x8a445f0,3, 0x8a44600,3, 0x8a44610,3, 0x8a44620,3, 0x8a44630,3, 0x8a44640,3, 0x8a44650,3, 0x8a44660,3, 0x8a44670,3, 0x8a44680,3, 0x8a44690,3, 0x8a446a0,3, 0x8a446b0,3, 0x8a446c0,3, 0x8a446d0,3, 0x8a446e0,3, 0x8a446f0,3, 0x8a44700,3, 0x8a44710,3, 0x8a44720,3, 0x8a44730,3, 0x8a44740,3, 0x8a44750,3, 0x8a44760,3, 0x8a44770,3, 0x8a44780,3, 0x8a44790,3, 0x8a447a0,3, 0x8a447b0,3, 0x8a447c0,3, 0x8a447d0,3, 0x8a447e0,3, 0x8a447f0,3, 0x8a44800,3, 0x8a44810,3, 0x8a44820,3, 0x8a44830,3, 0x8a44840,3, 0x8a44850,3, 0x8a44860,3, 0x8a44870,3, 0x8a44880,3, 0x8a44890,3, 0x8a448a0,3, 0x8a448b0,3, 0x8a448c0,3, 0x8a448d0,3, 0x8a448e0,3, 0x8a448f0,3, 0x8a44900,3, 0x8a44910,3, 0x8a44920,3, 0x8a44930,3, 0x8a44940,3, 0x8a44950,3, 0x8a44960,3, 0x8a44970,3, 0x8a44980,3, 0x8a44990,3, 0x8a449a0,3, 0x8a449b0,3, 0x8a449c0,3, 0x8a449d0,3, 0x8a449e0,3, 0x8a449f0,3, 0x8a44a00,3, 0x8a44a10,3, 0x8a44a20,3, 0x8a44a30,3, 0x8a44a40,3, 0x8a44a50,3, 0x8a44a60,3, 0x8a44a70,3, 0x8a44a80,3, 0x8a44a90,3, 0x8a44aa0,3, 0x8a44ab0,3, 0x8a44ac0,3, 0x8a44ad0,3, 0x8a44ae0,3, 0x8a44af0,3, 0x8a44b00,3, 0x8a44b10,3, 0x8a44b20,3, 0x8a44b30,3, 0x8a44b40,3, 0x8a44b50,3, 0x8a44b60,3, 0x8a44b70,3, 0x8a44b80,3, 0x8a44b90,3, 0x8a44ba0,3, 0x8a44bb0,3, 0x8a44bc0,3, 0x8a44bd0,3, 0x8a44be0,3, 0x8a44bf0,3, 0x8a44c00,3, 0x8a44c10,3, 0x8a44c20,3, 0x8a44c30,3, 0x8a44c40,3, 0x8a44c50,3, 0x8a44c60,3, 0x8a44c70,3, 0x8a44c80,3, 0x8a44c90,3, 0x8a44ca0,3, 0x8a44cb0,3, 0x8a44cc0,3, 0x8a44cd0,3, 0x8a44ce0,3, 0x8a44cf0,3, 0x8a44d00,3, 0x8a44d10,3, 0x8a44d20,3, 0x8a44d30,3, 0x8a44d40,3, 0x8a44d50,3, 0x8a44d60,3, 0x8a44d70,3, 0x8a44d80,3, 0x8a44d90,3, 0x8a44da0,3, 0x8a44db0,3, 0x8a44dc0,3, 0x8a44dd0,3, 0x8a44de0,3, 0x8a44df0,3, 0x8a44e00,3, 0x8a44e10,3, 0x8a44e20,3, 0x8a44e30,3, 0x8a44e40,3, 0x8a44e50,3, 0x8a44e60,3, 0x8a44e70,3, 0x8a44e80,3, 0x8a44e90,3, 0x8a44ea0,3, 0x8a44eb0,3, 0x8a44ec0,3, 0x8a44ed0,3, 0x8a44ee0,3, 0x8a44ef0,3, 0x8a44f00,3, 0x8a44f10,3, 0x8a44f20,3, 0x8a44f30,3, 0x8a44f40,3, 0x8a44f50,3, 0x8a44f60,3, 0x8a44f70,3, 0x8a44f80,3, 0x8a44f90,3, 0x8a44fa0,3, 0x8a44fb0,3, 0x8a44fc0,3, 0x8a44fd0,3, 0x8a44fe0,3, 0x8a44ff0,3, 0x8a45000,3, 0x8a45010,3, 0x8a45020,3, 0x8a45030,3, 0x8a45040,3, 0x8a45050,3, 0x8a45060,3, 0x8a45070,3, 0x8a45080,3, 0x8a45090,3, 0x8a450a0,3, 0x8a450b0,3, 0x8a450c0,3, 0x8a450d0,3, 0x8a450e0,3, 0x8a450f0,3, 0x8a45100,3, 0x8a45110,3, 0x8a45120,3, 0x8a45130,3, 0x8a45140,3, 0x8a45150,3, 0x8a45160,3, 0x8a45170,3, 0x8a45180,3, 0x8a45190,3, 0x8a451a0,3, 0x8a451b0,3, 0x8a451c0,3, 0x8a451d0,3, 0x8a451e0,3, 0x8a451f0,3, 0x8a45200,3, 0x8a45210,3, 0x8a45220,3, 0x8a45230,3, 0x8a45240,3, 0x8a45250,3, 0x8a45260,3, 0x8a45270,3, 0x8a45280,3, 0x8a45290,3, 0x8a452a0,3, 0x8a452b0,3, 0x8a452c0,3, 0x8a452d0,3, 0x8a452e0,3, 0x8a452f0,3, 0x8a45300,3, 0x8a45310,3, 0x8a45320,3, 0x8a45330,3, 0x8a45340,3, 0x8a45350,3, 0x8a45360,3, 0x8a45370,3, 0x8a45380,3, 0x8a45390,3, 0x8a453a0,3, 0x8a453b0,3, 0x8a453c0,3, 0x8a453d0,3, 0x8a453e0,3, 0x8a453f0,3, 0x8a45400,3, 0x8a45410,3, 0x8a45420,3, 0x8a45430,3, 0x8a45440,3, 0x8a45450,3, 0x8a45460,3, 0x8a45470,3, 0x8a45480,3, 0x8a45490,3, 0x8a454a0,3, 0x8a454b0,3, 0x8a454c0,3, 0x8a454d0,3, 0x8a454e0,3, 0x8a454f0,3, 0x8a45500,3, 0x8a45510,3, 0x8a45520,3, 0x8a45530,3, 0x8a45540,3, 0x8a45550,3, 0x8a45560,3, 0x8a45570,3, 0x8a45580,3, 0x8a45590,3, 0x8a455a0,3, 0x8a455b0,3, 0x8a455c0,3, 0x8a455d0,3, 0x8a455e0,3, 0x8a455f0,3, 0x8a45600,3, 0x8a45610,3, 0x8a45620,3, 0x8a45630,3, 0x8a45640,3, 0x8a45650,3, 0x8a45660,3, 0x8a45670,3, 0x8a45680,3, 0x8a45690,3, 0x8a456a0,3, 0x8a456b0,3, 0x8a456c0,3, 0x8a456d0,3, 0x8a456e0,3, 0x8a456f0,3, 0x8a45700,3, 0x8a45710,3, 0x8a45720,3, 0x8a45730,3, 0x8a45740,3, 0x8a45750,3, 0x8a45760,3, 0x8a45770,3, 0x8a45780,3, 0x8a45790,3, 0x8a457a0,3, 0x8a457b0,3, 0x8a457c0,3, 0x8a457d0,3, 0x8a457e0,3, 0x8a457f0,3, 0x8a45800,3, 0x8a45810,3, 0x8a45820,3, 0x8a45830,3, 0x8a45840,3, 0x8a45850,3, 0x8a45860,3, 0x8a45870,3, 0x8a45880,3, 0x8a45890,3, 0x8a458a0,3, 0x8a458b0,3, 0x8a458c0,3, 0x8a458d0,3, 0x8a458e0,3, 0x8a458f0,3, 0x8a45900,3, 0x8a45910,3, 0x8a45920,3, 0x8a45930,3, 0x8a45940,3, 0x8a45950,3, 0x8a45960,3, 0x8a45970,3, 0x8a45980,3, 0x8a45990,3, 0x8a459a0,3, 0x8a459b0,3, 0x8a459c0,3, 0x8a459d0,3, 0x8a459e0,3, 0x8a459f0,3, 0x8a45a00,3, 0x8a45a10,3, 0x8a45a20,3, 0x8a45a30,3, 0x8a45a40,3, 0x8a45a50,3, 0x8a45a60,3, 0x8a45a70,3, 0x8a45a80,3, 0x8a45a90,3, 0x8a45aa0,3, 0x8a45ab0,3, 0x8a45ac0,3, 0x8a45ad0,3, 0x8a45ae0,3, 0x8a45af0,3, 0x8a45b00,3, 0x8a45b10,3, 0x8a45b20,3, 0x8a45b30,3, 0x8a45b40,3, 0x8a45b50,3, 0x8a45b60,3, 0x8a45b70,3, 0x8a45b80,3, 0x8a45b90,3, 0x8a45ba0,3, 0x8a45bb0,3, 0x8a45bc0,3, 0x8a45bd0,3, 0x8a45be0,3, 0x8a45bf0,3, 0x8a45c00,3, 0x8a45c10,3, 0x8a45c20,3, 0x8a45c30,3, 0x8a45c40,3, 0x8a45c50,3, 0x8a45c60,3, 0x8a45c70,3, 0x8a45c80,3, 0x8a45c90,3, 0x8a45ca0,3, 0x8a45cb0,3, 0x8a45cc0,3, 0x8a45cd0,3, 0x8a45ce0,3, 0x8a45cf0,3, 0x8a45d00,3, 0x8a45d10,3, 0x8a45d20,3, 0x8a45d30,3, 0x8a45d40,3, 0x8a45d50,3, 0x8a45d60,3, 0x8a45d70,3, 0x8a45d80,3, 0x8a45d90,3, 0x8a45da0,3, 0x8a45db0,3, 0x8a45dc0,3, 0x8a45dd0,3, 0x8a45de0,3, 0x8a45df0,3, 0x8a45e00,3, 0x8a45e10,3, 0x8a45e20,3, 0x8a45e30,3, 0x8a45e40,3, 0x8a45e50,3, 0x8a45e60,3, 0x8a45e70,3, 0x8a45e80,3, 0x8a45e90,3, 0x8a45ea0,3, 0x8a45eb0,3, 0x8a45ec0,3, 0x8a45ed0,3, 0x8a45ee0,3, 0x8a45ef0,3, 0x8a45f00,3, 0x8a45f10,3, 0x8a45f20,3, 0x8a45f30,3, 0x8a45f40,3, 0x8a45f50,3, 0x8a45f60,3, 0x8a45f70,3, 0x8a45f80,3, 0x8a45f90,3, 0x8a45fa0,3, 0x8a45fb0,3, 0x8a45fc0,3, 0x8a45fd0,3, 0x8a45fe0,3, 0x8a45ff0,3, 0x8a46000,3, 0x8a46010,3, 0x8a46020,3, 0x8a46030,3, 0x8a46040,3, 0x8a46050,3, 0x8a46060,3, 0x8a46070,3, 0x8a46080,3, 0x8a46090,3, 0x8a460a0,3, 0x8a460b0,3, 0x8a460c0,3, 0x8a460d0,3, 0x8a460e0,3, 0x8a460f0,3, 0x8a46100,3, 0x8a46110,3, 0x8a46120,3, 0x8a46130,3, 0x8a46140,3, 0x8a46150,3, 0x8a46160,3, 0x8a46170,3, 0x8a46180,3, 0x8a46190,3, 0x8a461a0,3, 0x8a461b0,3, 0x8a461c0,3, 0x8a461d0,3, 0x8a461e0,3, 0x8a461f0,3, 0x8a46200,3, 0x8a46210,3, 0x8a46220,3, 0x8a46230,3, 0x8a46240,3, 0x8a46250,3, 0x8a46260,3, 0x8a46270,3, 0x8a46280,3, 0x8a46290,3, 0x8a462a0,3, 0x8a462b0,3, 0x8a462c0,3, 0x8a462d0,3, 0x8a462e0,3, 0x8a462f0,3, 0x8a46300,3, 0x8a46310,3, 0x8a46320,3, 0x8a46330,3, 0x8a46340,3, 0x8a46350,3, 0x8a46360,3, 0x8a46370,3, 0x8a46380,3, 0x8a46390,3, 0x8a463a0,3, 0x8a463b0,3, 0x8a463c0,3, 0x8a463d0,3, 0x8a463e0,3, 0x8a463f0,3, 0x8a46400,3, 0x8a46410,3, 0x8a46420,3, 0x8a46430,3, 0x8a46440,3, 0x8a46450,3, 0x8a46460,3, 0x8a46470,3, 0x8a46480,3, 0x8a46490,3, 0x8a464a0,3, 0x8a464b0,3, 0x8a464c0,3, 0x8a464d0,3, 0x8a464e0,3, 0x8a464f0,3, 0x8a46500,3, 0x8a46510,3, 0x8a46520,3, 0x8a46530,3, 0x8a46540,3, 0x8a46550,3, 0x8a46560,3, 0x8a46570,3, 0x8a46580,3, 0x8a46590,3, 0x8a465a0,3, 0x8a465b0,3, 0x8a465c0,3, 0x8a465d0,3, 0x8a465e0,3, 0x8a465f0,3, 0x8a46600,3, 0x8a46610,3, 0x8a46620,3, 0x8a46630,3, 0x8a46640,3, 0x8a46650,3, 0x8a46660,3, 0x8a46670,3, 0x8a46680,3, 0x8a46690,3, 0x8a466a0,3, 0x8a466b0,3, 0x8a466c0,3, 0x8a466d0,3, 0x8a466e0,3, 0x8a466f0,3, 0x8a46700,3, 0x8a46710,3, 0x8a46720,3, 0x8a46730,3, 0x8a46740,3, 0x8a46750,3, 0x8a46760,3, 0x8a46770,3, 0x8a46780,3, 0x8a46790,3, 0x8a467a0,3, 0x8a467b0,3, 0x8a467c0,3, 0x8a467d0,3, 0x8a467e0,3, 0x8a467f0,3, 0x8a46800,3, 0x8a46810,3, 0x8a46820,3, 0x8a46830,3, 0x8a46840,3, 0x8a46850,3, 0x8a46860,3, 0x8a46870,3, 0x8a46880,3, 0x8a46890,3, 0x8a468a0,3, 0x8a468b0,3, 0x8a468c0,3, 0x8a468d0,3, 0x8a468e0,3, 0x8a468f0,3, 0x8a46900,3, 0x8a46910,3, 0x8a46920,3, 0x8a46930,3, 0x8a46940,3, 0x8a46950,3, 0x8a46960,3, 0x8a46970,3, 0x8a46980,3, 0x8a46990,3, 0x8a469a0,3, 0x8a469b0,3, 0x8a469c0,3, 0x8a469d0,3, 0x8a469e0,3, 0x8a469f0,3, 0x8a46a00,3, 0x8a46a10,3, 0x8a46a20,3, 0x8a46a30,3, 0x8a46a40,3, 0x8a46a50,3, 0x8a46a60,3, 0x8a46a70,3, 0x8a46a80,3, 0x8a46a90,3, 0x8a46aa0,3, 0x8a46ab0,3, 0x8a46ac0,3, 0x8a46ad0,3, 0x8a46ae0,3, 0x8a46af0,3, 0x8a46b00,3, 0x8a46b10,3, 0x8a46b20,3, 0x8a46b30,3, 0x8a46b40,3, 0x8a46b50,3, 0x8a46b60,3, 0x8a46b70,3, 0x8a46b80,3, 0x8a46b90,3, 0x8a46ba0,3, 0x8a46bb0,3, 0x8a46bc0,3, 0x8a46bd0,3, 0x8a46be0,3, 0x8a46bf0,3, 0x8a46c00,3, 0x8a46c10,3, 0x8a46c20,3, 0x8a46c30,3, 0x8a46c40,3, 0x8a46c50,3, 0x8a46c60,3, 0x8a46c70,3, 0x8a46c80,3, 0x8a46c90,3, 0x8a46ca0,3, 0x8a46cb0,3, 0x8a46cc0,3, 0x8a46cd0,3, 0x8a46ce0,3, 0x8a46cf0,3, 0x8a46d00,3, 0x8a46d10,3, 0x8a46d20,3, 0x8a46d30,3, 0x8a46d40,3, 0x8a46d50,3, 0x8a46d60,3, 0x8a46d70,3, 0x8a46d80,3, 0x8a46d90,3, 0x8a46da0,3, 0x8a46db0,3, 0x8a46dc0,3, 0x8a46dd0,3, 0x8a46de0,3, 0x8a46df0,3, 0x8a46e00,3, 0x8a46e10,3, 0x8a46e20,3, 0x8a46e30,3, 0x8a46e40,3, 0x8a46e50,3, 0x8a46e60,3, 0x8a46e70,3, 0x8a46e80,3, 0x8a46e90,3, 0x8a46ea0,3, 0x8a46eb0,3, 0x8a46ec0,3, 0x8a46ed0,3, 0x8a46ee0,3, 0x8a46ef0,3, 0x8a46f00,3, 0x8a46f10,3, 0x8a46f20,3, 0x8a46f30,3, 0x8a46f40,3, 0x8a46f50,3, 0x8a46f60,3, 0x8a46f70,3, 0x8a46f80,3, 0x8a46f90,3, 0x8a46fa0,3, 0x8a46fb0,3, 0x8a46fc0,3, 0x8a46fd0,3, 0x8a46fe0,3, 0x8a46ff0,3, 0x8a47000,3, 0x8a47010,3, 0x8a47020,3, 0x8a47030,3, 0x8a47040,3, 0x8a47050,3, 0x8a47060,3, 0x8a47070,3, 0x8a47080,3, 0x8a47090,3, 0x8a470a0,3, 0x8a470b0,3, 0x8a470c0,3, 0x8a470d0,3, 0x8a470e0,3, 0x8a470f0,3, 0x8a47100,3, 0x8a47110,3, 0x8a47120,3, 0x8a47130,3, 0x8a47140,3, 0x8a47150,3, 0x8a47160,3, 0x8a47170,3, 0x8a47180,3, 0x8a47190,3, 0x8a471a0,3, 0x8a471b0,3, 0x8a471c0,3, 0x8a471d0,3, 0x8a471e0,3, 0x8a471f0,3, 0x8a47200,3, 0x8a47210,3, 0x8a47220,3, 0x8a47230,3, 0x8a47240,3, 0x8a47250,3, 0x8a47260,3, 0x8a47270,3, 0x8a47280,3, 0x8a47290,3, 0x8a472a0,3, 0x8a472b0,3, 0x8a472c0,3, 0x8a472d0,3, 0x8a472e0,3, 0x8a472f0,3, 0x8a47300,3, 0x8a47310,3, 0x8a47320,3, 0x8a47330,3, 0x8a47340,3, 0x8a47350,3, 0x8a47360,3, 0x8a47370,3, 0x8a47380,3, 0x8a47390,3, 0x8a473a0,3, 0x8a473b0,3, 0x8a473c0,3, 0x8a473d0,3, 0x8a473e0,3, 0x8a473f0,3, 0x8a47400,3, 0x8a47410,3, 0x8a47420,3, 0x8a47430,3, 0x8a47440,3, 0x8a47450,3, 0x8a47460,3, 0x8a47470,3, 0x8a47480,3, 0x8a47490,3, 0x8a474a0,3, 0x8a474b0,3, 0x8a474c0,3, 0x8a474d0,3, 0x8a474e0,3, 0x8a474f0,3, 0x8a47500,3, 0x8a47510,3, 0x8a47520,3, 0x8a47530,3, 0x8a47540,3, 0x8a47550,3, 0x8a47560,3, 0x8a47570,3, 0x8a47580,3, 0x8a47590,3, 0x8a475a0,3, 0x8a475b0,3, 0x8a475c0,3, 0x8a475d0,3, 0x8a475e0,3, 0x8a475f0,3, 0x8a47600,3, 0x8a47610,3, 0x8a47620,3, 0x8a47630,3, 0x8a47640,3, 0x8a47650,3, 0x8a47660,3, 0x8a47670,3, 0x8a47680,3, 0x8a47690,3, 0x8a476a0,3, 0x8a476b0,3, 0x8a476c0,3, 0x8a476d0,3, 0x8a476e0,3, 0x8a476f0,3, 0x8a47700,3, 0x8a47710,3, 0x8a47720,3, 0x8a47730,3, 0x8a47740,3, 0x8a47750,3, 0x8a47760,3, 0x8a47770,3, 0x8a47780,3, 0x8a47790,3, 0x8a477a0,3, 0x8a477b0,3, 0x8a477c0,3, 0x8a477d0,3, 0x8a477e0,3, 0x8a477f0,3, 0x8a47800,3, 0x8a47810,3, 0x8a47820,3, 0x8a47830,3, 0x8a47840,3, 0x8a47850,3, 0x8a47860,3, 0x8a47870,3, 0x8a47880,3, 0x8a47890,3, 0x8a478a0,3, 0x8a478b0,3, 0x8a478c0,3, 0x8a478d0,3, 0x8a478e0,3, 0x8a478f0,3, 0x8a47900,3, 0x8a47910,3, 0x8a47920,3, 0x8a47930,3, 0x8a47940,3, 0x8a47950,3, 0x8a47960,3, 0x8a47970,3, 0x8a47980,3, 0x8a47990,3, 0x8a479a0,3, 0x8a479b0,3, 0x8a479c0,3, 0x8a479d0,3, 0x8a479e0,3, 0x8a479f0,3, 0x8a47a00,3, 0x8a47a10,3, 0x8a47a20,3, 0x8a47a30,3, 0x8a47a40,3, 0x8a47a50,3, 0x8a47a60,3, 0x8a47a70,3, 0x8a47a80,3, 0x8a47a90,3, 0x8a47aa0,3, 0x8a47ab0,3, 0x8a47ac0,3, 0x8a47ad0,3, 0x8a47ae0,3, 0x8a47af0,3, 0x8a47b00,3, 0x8a47b10,3, 0x8a47b20,3, 0x8a47b30,3, 0x8a47b40,3, 0x8a47b50,3, 0x8a47b60,3, 0x8a47b70,3, 0x8a47b80,3, 0x8a47b90,3, 0x8a47ba0,3, 0x8a47bb0,3, 0x8a47bc0,3, 0x8a47bd0,3, 0x8a47be0,3, 0x8a47bf0,3, 0x8a47c00,3, 0x8a47c10,3, 0x8a47c20,3, 0x8a47c30,3, 0x8a47c40,3, 0x8a47c50,3, 0x8a47c60,3, 0x8a47c70,3, 0x8a47c80,3, 0x8a47c90,3, 0x8a47ca0,3, 0x8a47cb0,3, 0x8a47cc0,3, 0x8a47cd0,3, 0x8a47ce0,3, 0x8a47cf0,3, 0x8a47d00,3, 0x8a47d10,3, 0x8a47d20,3, 0x8a47d30,3, 0x8a47d40,3, 0x8a47d50,3, 0x8a47d60,3, 0x8a47d70,3, 0x8a47d80,3, 0x8a47d90,3, 0x8a47da0,3, 0x8a47db0,3, 0x8a47dc0,3, 0x8a47dd0,3, 0x8a47de0,3, 0x8a47df0,3, 0x8a47e00,3, 0x8a47e10,3, 0x8a47e20,3, 0x8a47e30,3, 0x8a47e40,3, 0x8a47e50,3, 0x8a47e60,3, 0x8a47e70,3, 0x8a47e80,3, 0x8a47e90,3, 0x8a47ea0,3, 0x8a47eb0,3, 0x8a47ec0,3, 0x8a47ed0,3, 0x8a47ee0,3, 0x8a47ef0,3, 0x8a47f00,3, 0x8a47f10,3, 0x8a47f20,3, 0x8a47f30,3, 0x8a47f40,3, 0x8a47f50,3, 0x8a47f60,3, 0x8a47f70,3, 0x8a47f80,3, 0x8a47f90,3, 0x8a47fa0,3, 0x8a47fb0,3, 0x8a47fc0,3, 0x8a47fd0,3, 0x8a47fe0,3, 0x8a47ff0,3, 0x8a48000,3, 0x8a48010,3, 0x8a48020,3, 0x8a48030,3, 0x8a48040,3, 0x8a48050,3, 0x8a48060,3, 0x8a48070,3, 0x8a48080,3, 0x8a48090,3, 0x8a480a0,3, 0x8a480b0,3, 0x8a480c0,3, 0x8a480d0,3, 0x8a480e0,3, 0x8a480f0,3, 0x8a48100,3, 0x8a48110,3, 0x8a48120,3, 0x8a48130,3, 0x8a48140,3, 0x8a48150,3, 0x8a48160,3, 0x8a48170,3, 0x8a48180,3, 0x8a48190,3, 0x8a481a0,3, 0x8a481b0,3, 0x8a481c0,3, 0x8a481d0,3, 0x8a481e0,3, 0x8a481f0,3, 0x8a48200,3, 0x8a48210,3, 0x8a48220,3, 0x8a48230,3, 0x8a48240,3, 0x8a48250,3, 0x8a48260,3, 0x8a48270,3, 0x8a48280,3, 0x8a48290,3, 0x8a482a0,3, 0x8a482b0,3, 0x8a482c0,3, 0x8a482d0,3, 0x8a482e0,3, 0x8a482f0,3, 0x8a48300,3, 0x8a48310,3, 0x8a48320,3, 0x8a48330,3, 0x8a48340,3, 0x8a48350,3, 0x8a48360,3, 0x8a48370,3, 0x8a48380,3, 0x8a48390,3, 0x8a483a0,3, 0x8a483b0,3, 0x8a483c0,3, 0x8a483d0,3, 0x8a483e0,3, 0x8a483f0,3, 0x8a48400,3, 0x8a48410,3, 0x8a48420,3, 0x8a48430,3, 0x8a48440,3, 0x8a48450,3, 0x8a48460,3, 0x8a48470,3, 0x8a48480,3, 0x8a48490,3, 0x8a484a0,3, 0x8a484b0,3, 0x8a484c0,3, 0x8a484d0,3, 0x8a484e0,3, 0x8a484f0,3, 0x8a48500,3, 0x8a48510,3, 0x8a48520,3, 0x8a48530,3, 0x8a48540,3, 0x8a48550,3, 0x8a48560,3, 0x8a48570,3, 0x8a48580,3, 0x8a48590,3, 0x8a485a0,3, 0x8a485b0,3, 0x8a485c0,3, 0x8a485d0,3, 0x8a485e0,3, 0x8a485f0,3, 0x8a48600,3, 0x8a48610,3, 0x8a48620,3, 0x8a48630,3, 0x8a48640,3, 0x8a48650,3, 0x8a48660,3, 0x8a48670,3, 0x8a48680,3, 0x8a48690,3, 0x8a486a0,3, 0x8a486b0,3, 0x8a486c0,3, 0x8a486d0,3, 0x8a486e0,3, 0x8a486f0,3, 0x8a48700,3, 0x8a48710,3, 0x8a48720,3, 0x8a48730,3, 0x8a48740,3, 0x8a48750,3, 0x8a48760,3, 0x8a48770,3, 0x8a48780,3, 0x8a48790,3, 0x8a487a0,3, 0x8a487b0,3, 0x8a487c0,3, 0x8a487d0,3, 0x8a487e0,3, 0x8a487f0,3, 0x8a48800,3, 0x8a48810,3, 0x8a48820,3, 0x8a48830,3, 0x8a48840,3, 0x8a48850,3, 0x8a48860,3, 0x8a48870,3, 0x8a48880,3, 0x8a48890,3, 0x8a488a0,3, 0x8a488b0,3, 0x8a488c0,3, 0x8a488d0,3, 0x8a488e0,3, 0x8a488f0,3, 0x8a48900,3, 0x8a48910,3, 0x8a48920,3, 0x8a48930,3, 0x8a48940,3, 0x8a48950,3, 0x8a48960,3, 0x8a48970,3, 0x8a48980,3, 0x8a48990,3, 0x8a489a0,3, 0x8a489b0,3, 0x8a489c0,3, 0x8a489d0,3, 0x8a489e0,3, 0x8a489f0,3, 0x8a48a00,3, 0x8a48a10,3, 0x8a48a20,3, 0x8a48a30,3, 0x8a48a40,3, 0x8a48a50,3, 0x8a48a60,3, 0x8a48a70,3, 0x8a48a80,3, 0x8a48a90,3, 0x8a48aa0,3, 0x8a48ab0,3, 0x8a48ac0,3, 0x8a48ad0,3, 0x8a48ae0,3, 0x8a48af0,3, 0x8a48b00,3, 0x8a48b10,3, 0x8a48b20,3, 0x8a48b30,3, 0x8a48b40,3, 0x8a48b50,3, 0x8a48b60,3, 0x8a48b70,3, 0x8a48b80,3, 0x8a48b90,3, 0x8a48ba0,3, 0x8a48bb0,3, 0x8a48bc0,3, 0x8a48bd0,3, 0x8a48be0,3, 0x8a48bf0,3, 0x8a48c00,3, 0x8a48c10,3, 0x8a48c20,3, 0x8a48c30,3, 0x8a48c40,3, 0x8a48c50,3, 0x8a48c60,3, 0x8a48c70,3, 0x8a48c80,3, 0x8a48c90,3, 0x8a48ca0,3, 0x8a48cb0,3, 0x8a48cc0,3, 0x8a48cd0,3, 0x8a48ce0,3, 0x8a48cf0,3, 0x8a48d00,3, 0x8a48d10,3, 0x8a48d20,3, 0x8a48d30,3, 0x8a48d40,3, 0x8a48d50,3, 0x8a48d60,3, 0x8a48d70,3, 0x8a48d80,3, 0x8a48d90,3, 0x8a48da0,3, 0x8a48db0,3, 0x8a48dc0,3, 0x8a48dd0,3, 0x8a48de0,3, 0x8a48df0,3, 0x8a48e00,3, 0x8a48e10,3, 0x8a48e20,3, 0x8a48e30,3, 0x8a48e40,3, 0x8a48e50,3, 0x8a48e60,3, 0x8a48e70,3, 0x8a48e80,3, 0x8a48e90,3, 0x8a48ea0,3, 0x8a48eb0,3, 0x8a48ec0,3, 0x8a48ed0,3, 0x8a48ee0,3, 0x8a48ef0,3, 0x8a48f00,3, 0x8a48f10,3, 0x8a48f20,3, 0x8a48f30,3, 0x8a48f40,3, 0x8a48f50,3, 0x8a48f60,3, 0x8a48f70,3, 0x8a48f80,3, 0x8a48f90,3, 0x8a48fa0,3, 0x8a48fb0,3, 0x8a48fc0,3, 0x8a48fd0,3, 0x8a48fe0,3, 0x8a48ff0,3, 0x8a49000,3, 0x8a49010,3, 0x8a49020,3, 0x8a49030,3, 0x8a49040,3, 0x8a49050,3, 0x8a49060,3, 0x8a49070,3, 0x8a49080,3, 0x8a49090,3, 0x8a490a0,3, 0x8a490b0,3, 0x8a490c0,3, 0x8a490d0,3, 0x8a490e0,3, 0x8a490f0,3, 0x8a49100,3, 0x8a49110,3, 0x8a49120,3, 0x8a49130,3, 0x8a49140,3, 0x8a49150,3, 0x8a49160,3, 0x8a49170,3, 0x8a49180,3, 0x8a49190,3, 0x8a491a0,3, 0x8a491b0,3, 0x8a491c0,3, 0x8a491d0,3, 0x8a491e0,3, 0x8a491f0,3, 0x8a49200,3, 0x8a49210,3, 0x8a49220,3, 0x8a49230,3, 0x8a49240,3, 0x8a49250,3, 0x8a49260,3, 0x8a49270,3, 0x8a49280,3, 0x8a49290,3, 0x8a492a0,3, 0x8a492b0,3, 0x8a492c0,3, 0x8a492d0,3, 0x8a492e0,3, 0x8a492f0,3, 0x8a49300,3, 0x8a49310,3, 0x8a49320,3, 0x8a49330,3, 0x8a49340,3, 0x8a49350,3, 0x8a49360,3, 0x8a49370,3, 0x8a49380,3, 0x8a49390,3, 0x8a493a0,3, 0x8a493b0,3, 0x8a493c0,3, 0x8a493d0,3, 0x8a493e0,3, 0x8a493f0,3, 0x8a49400,3, 0x8a49410,3, 0x8a49420,3, 0x8a49430,3, 0x8a49440,3, 0x8a49450,3, 0x8a49460,3, 0x8a49470,3, 0x8a49480,3, 0x8a49490,3, 0x8a494a0,3, 0x8a494b0,3, 0x8a494c0,3, 0x8a494d0,3, 0x8a494e0,3, 0x8a494f0,3, 0x8a49500,3, 0x8a49510,3, 0x8a49520,3, 0x8a49530,3, 0x8a49540,3, 0x8a49550,3, 0x8a49560,3, 0x8a49570,3, 0x8a49580,3, 0x8a49590,3, 0x8a495a0,3, 0x8a495b0,3, 0x8a495c0,3, 0x8a495d0,3, 0x8a495e0,3, 0x8a495f0,3, 0x8a49600,3, 0x8a49610,3, 0x8a49620,3, 0x8a49630,3, 0x8a49640,3, 0x8a49650,3, 0x8a49660,3, 0x8a49670,3, 0x8a49680,3, 0x8a49690,3, 0x8a496a0,3, 0x8a496b0,3, 0x8a496c0,3, 0x8a496d0,3, 0x8a496e0,3, 0x8a496f0,3, 0x8a49700,3, 0x8a49710,3, 0x8a49720,3, 0x8a49730,3, 0x8a49740,3, 0x8a49750,3, 0x8a49760,3, 0x8a49770,3, 0x8a49780,3, 0x8a49790,3, 0x8a497a0,3, 0x8a497b0,3, 0x8a497c0,3, 0x8a497d0,3, 0x8a497e0,3, 0x8a497f0,3, 0x8a49800,3, 0x8a49810,3, 0x8a49820,3, 0x8a49830,3, 0x8a49840,3, 0x8a49850,3, 0x8a49860,3, 0x8a49870,3, 0x8a49880,3, 0x8a49890,3, 0x8a498a0,3, 0x8a498b0,3, 0x8a498c0,3, 0x8a498d0,3, 0x8a498e0,3, 0x8a498f0,3, 0x8a49900,3, 0x8a49910,3, 0x8a49920,3, 0x8a49930,3, 0x8a49940,3, 0x8a49950,3, 0x8a49960,3, 0x8a49970,3, 0x8a49980,3, 0x8a49990,3, 0x8a499a0,3, 0x8a499b0,3, 0x8a499c0,3, 0x8a499d0,3, 0x8a499e0,3, 0x8a499f0,3, 0x8a49a00,3, 0x8a49a10,3, 0x8a49a20,3, 0x8a49a30,3, 0x8a49a40,3, 0x8a49a50,3, 0x8a49a60,3, 0x8a49a70,3, 0x8a49a80,3, 0x8a49a90,3, 0x8a49aa0,3, 0x8a49ab0,3, 0x8a49ac0,3, 0x8a49ad0,3, 0x8a49ae0,3, 0x8a49af0,3, 0x8a49b00,3, 0x8a49b10,3, 0x8a49b20,3, 0x8a49b30,3, 0x8a49b40,3, 0x8a49b50,3, 0x8a49b60,3, 0x8a49b70,3, 0x8a49b80,3, 0x8a49b90,3, 0x8a49ba0,3, 0x8a49bb0,3, 0x8a49bc0,3, 0x8a49bd0,3, 0x8a49be0,3, 0x8a49bf0,3, 0x8a49c00,3, 0x8a49c10,3, 0x8a49c20,3, 0x8a49c30,3, 0x8a49c40,3, 0x8a49c50,3, 0x8a49c60,3, 0x8a49c70,3, 0x8a49c80,3, 0x8a49c90,3, 0x8a49ca0,3, 0x8a49cb0,3, 0x8a49cc0,3, 0x8a49cd0,3, 0x8a49ce0,3, 0x8a49cf0,3, 0x8a49d00,3, 0x8a49d10,3, 0x8a49d20,3, 0x8a49d30,3, 0x8a49d40,3, 0x8a49d50,3, 0x8a49d60,3, 0x8a49d70,3, 0x8a49d80,3, 0x8a49d90,3, 0x8a49da0,3, 0x8a49db0,3, 0x8a49dc0,3, 0x8a49dd0,3, 0x8a49de0,3, 0x8a49df0,3, 0x8a49e00,3, 0x8a49e10,3, 0x8a49e20,3, 0x8a49e30,3, 0x8a49e40,3, 0x8a49e50,3, 0x8a49e60,3, 0x8a49e70,3, 0x8a49e80,3, 0x8a49e90,3, 0x8a49ea0,3, 0x8a49eb0,3, 0x8a49ec0,3, 0x8a49ed0,3, 0x8a49ee0,3, 0x8a49ef0,3, 0x8a49f00,3, 0x8a49f10,3, 0x8a49f20,3, 0x8a49f30,3, 0x8a49f40,3, 0x8a49f50,3, 0x8a49f60,3, 0x8a49f70,3, 0x8a49f80,3, 0x8a49f90,3, 0x8a49fa0,3, 0x8a49fb0,3, 0x8a49fc0,3, 0x8a49fd0,3, 0x8a49fe0,3, 0x8a49ff0,3, 0x8a4a000,3, 0x8a4a010,3, 0x8a4a020,3, 0x8a4a030,3, 0x8a4a040,3, 0x8a4a050,3, 0x8a4a060,3, 0x8a4a070,3, 0x8a4a080,3, 0x8a4a090,3, 0x8a4a0a0,3, 0x8a4a0b0,3, 0x8a4a0c0,3, 0x8a4a0d0,3, 0x8a4a0e0,3, 0x8a4a0f0,3, 0x8a4a100,3, 0x8a4a110,3, 0x8a4a120,3, 0x8a4a130,3, 0x8a4a140,3, 0x8a4a150,3, 0x8a4a160,3, 0x8a4a170,3, 0x8a4a180,3, 0x8a4a190,3, 0x8a4a1a0,3, 0x8a4a1b0,3, 0x8a4a1c0,3, 0x8a4a1d0,3, 0x8a4a1e0,3, 0x8a4a1f0,3, 0x8a4a200,3, 0x8a4a210,3, 0x8a4a220,3, 0x8a4a230,3, 0x8a4a240,3, 0x8a4a250,3, 0x8a4a260,3, 0x8a4a270,3, 0x8a4a280,3, 0x8a4a290,3, 0x8a4a2a0,3, 0x8a4a2b0,3, 0x8a4a2c0,3, 0x8a4a2d0,3, 0x8a4a2e0,3, 0x8a4a2f0,3, 0x8a4a300,3, 0x8a4a310,3, 0x8a4a320,3, 0x8a4a330,3, 0x8a4a340,3, 0x8a4a350,3, 0x8a4a360,3, 0x8a4a370,3, 0x8a4a380,3, 0x8a4a390,3, 0x8a4a3a0,3, 0x8a4a3b0,3, 0x8a4a3c0,3, 0x8a4a3d0,3, 0x8a4a3e0,3, 0x8a4a3f0,3, 0x8a4a400,3, 0x8a4a410,3, 0x8a4a420,3, 0x8a4a430,3, 0x8a4a440,3, 0x8a4a450,3, 0x8a4a460,3, 0x8a4a470,3, 0x8a4a480,3, 0x8a4a490,3, 0x8a4a4a0,3, 0x8a4a4b0,3, 0x8a4a4c0,3, 0x8a4a4d0,3, 0x8a4a4e0,3, 0x8a4a4f0,3, 0x8a4a500,3, 0x8a4a510,3, 0x8a4a520,3, 0x8a4a530,3, 0x8a4a540,3, 0x8a4a550,3, 0x8a4a560,3, 0x8a4a570,3, 0x8a4a580,3, 0x8a4a590,3, 0x8a4a5a0,3, 0x8a4a5b0,3, 0x8a4a5c0,3, 0x8a4a5d0,3, 0x8a4a5e0,3, 0x8a4a5f0,3, 0x8a4a600,3, 0x8a4a610,3, 0x8a4a620,3, 0x8a4a630,3, 0x8a4a640,3, 0x8a4a650,3, 0x8a4a660,3, 0x8a4a670,3, 0x8a4a680,3, 0x8a4a690,3, 0x8a4a6a0,3, 0x8a4a6b0,3, 0x8a4a6c0,3, 0x8a4a6d0,3, 0x8a4a6e0,3, 0x8a4a6f0,3, 0x8a4a700,3, 0x8a4a710,3, 0x8a4a720,3, 0x8a4a730,3, 0x8a4a740,3, 0x8a4a750,3, 0x8a4a760,3, 0x8a4a770,3, 0x8a4a780,3, 0x8a4a790,3, 0x8a4a7a0,3, 0x8a4a7b0,3, 0x8a4a7c0,3, 0x8a4a7d0,3, 0x8a4a7e0,3, 0x8a4a7f0,3, 0x8a4a800,3, 0x8a4a810,3, 0x8a4a820,3, 0x8a4a830,3, 0x8a4a840,3, 0x8a4a850,3, 0x8a4a860,3, 0x8a4a870,3, 0x8a4a880,3, 0x8a4a890,3, 0x8a4a8a0,3, 0x8a4a8b0,3, 0x8a4a8c0,3, 0x8a4a8d0,3, 0x8a4a8e0,3, 0x8a4a8f0,3, 0x8a4a900,3, 0x8a4a910,3, 0x8a4a920,3, 0x8a4a930,3, 0x8a4a940,3, 0x8a4a950,3, 0x8a4a960,3, 0x8a4a970,3, 0x8a4a980,3, 0x8a4a990,3, 0x8a4a9a0,3, 0x8a4a9b0,3, 0x8a4a9c0,3, 0x8a4a9d0,3, 0x8a4a9e0,3, 0x8a4a9f0,3, 0x8a4aa00,3, 0x8a4aa10,3, 0x8a4aa20,3, 0x8a4aa30,3, 0x8a4aa40,3, 0x8a4aa50,3, 0x8a4aa60,3, 0x8a4aa70,3, 0x8a4aa80,3, 0x8a4aa90,3, 0x8a4aaa0,3, 0x8a4aab0,3, 0x8a4aac0,3, 0x8a4aad0,3, 0x8a4aae0,3, 0x8a4aaf0,3, 0x8a4ab00,3, 0x8a4ab10,3, 0x8a4ab20,3, 0x8a4ab30,3, 0x8a4ab40,3, 0x8a4ab50,3, 0x8a4ab60,3, 0x8a4ab70,3, 0x8a4ab80,3, 0x8a4ab90,3, 0x8a4aba0,3, 0x8a4abb0,3, 0x8a4abc0,3, 0x8a4abd0,3, 0x8a4abe0,3, 0x8a4abf0,3, 0x8a4ac00,3, 0x8a4ac10,3, 0x8a4ac20,3, 0x8a4ac30,3, 0x8a4ac40,3, 0x8a4ac50,3, 0x8a4ac60,3, 0x8a4ac70,3, 0x8a4ac80,3, 0x8a4ac90,3, 0x8a4aca0,3, 0x8a4acb0,3, 0x8a4acc0,3, 0x8a4acd0,3, 0x8a4ace0,3, 0x8a4acf0,3, 0x8a4ad00,3, 0x8a4ad10,3, 0x8a4ad20,3, 0x8a4ad30,3, 0x8a4ad40,3, 0x8a4ad50,3, 0x8a4ad60,3, 0x8a4ad70,3, 0x8a4ad80,3, 0x8a4ad90,3, 0x8a4ada0,3, 0x8a4adb0,3, 0x8a4adc0,3, 0x8a4add0,3, 0x8a4ade0,3, 0x8a4adf0,3, 0x8a4ae00,3, 0x8a4ae10,3, 0x8a4ae20,3, 0x8a4ae30,3, 0x8a4ae40,3, 0x8a4ae50,3, 0x8a4ae60,3, 0x8a4ae70,3, 0x8a4ae80,3, 0x8a4ae90,3, 0x8a4aea0,3, 0x8a4aeb0,3, 0x8a4aec0,3, 0x8a4aed0,3, 0x8a4aee0,3, 0x8a4aef0,3, 0x8a4af00,3, 0x8a4af10,3, 0x8a4af20,3, 0x8a4af30,3, 0x8a4af40,3, 0x8a4af50,3, 0x8a4af60,3, 0x8a4af70,3, 0x8a4af80,3, 0x8a4af90,3, 0x8a4afa0,3, 0x8a4afb0,3, 0x8a4afc0,3, 0x8a4afd0,3, 0x8a4afe0,3, 0x8a4aff0,3, 0x8a4b000,3, 0x8a4b010,3, 0x8a4b020,3, 0x8a4b030,3, 0x8a4b040,3, 0x8a4b050,3, 0x8a4b060,3, 0x8a4b070,3, 0x8a4b080,3, 0x8a4b090,3, 0x8a4b0a0,3, 0x8a4b0b0,3, 0x8a4b0c0,3, 0x8a4b0d0,3, 0x8a4b0e0,3, 0x8a4b0f0,3, 0x8a4b100,3, 0x8a4b110,3, 0x8a4b120,3, 0x8a4b130,3, 0x8a4b140,3, 0x8a4b150,3, 0x8a4b160,3, 0x8a4b170,3, 0x8a4b180,3, 0x8a4b190,3, 0x8a4b1a0,3, 0x8a4b1b0,3, 0x8a4b1c0,3, 0x8a4b1d0,3, 0x8a4b1e0,3, 0x8a4b1f0,3, 0x8a4b200,3, 0x8a4b210,3, 0x8a4b220,3, 0x8a4b230,3, 0x8a4b240,3, 0x8a4b250,3, 0x8a4b260,3, 0x8a4b270,3, 0x8a4b280,3, 0x8a4b290,3, 0x8a4b2a0,3, 0x8a4b2b0,3, 0x8a4b2c0,3, 0x8a4b2d0,3, 0x8a4b2e0,3, 0x8a4b2f0,3, 0x8a4b300,3, 0x8a4b310,3, 0x8a4b320,3, 0x8a4b330,3, 0x8a4b340,3, 0x8a4b350,3, 0x8a4b360,3, 0x8a4b370,3, 0x8a4b380,3, 0x8a4b390,3, 0x8a4b3a0,3, 0x8a4b3b0,3, 0x8a4b3c0,3, 0x8a4b3d0,3, 0x8a4b3e0,3, 0x8a4b3f0,3, 0x8a4b400,3, 0x8a4b410,3, 0x8a4b420,3, 0x8a4b430,3, 0x8a4b440,3, 0x8a4b450,3, 0x8a4b460,3, 0x8a4b470,3, 0x8a4b480,3, 0x8a4b490,3, 0x8a4b4a0,3, 0x8a4b4b0,3, 0x8a4b4c0,3, 0x8a4b4d0,3, 0x8a4b4e0,3, 0x8a4b4f0,3, 0x8a4b500,3, 0x8a4b510,3, 0x8a4b520,3, 0x8a4b530,3, 0x8a4b540,3, 0x8a4b550,3, 0x8a4b560,3, 0x8a4b570,3, 0x8a4b580,3, 0x8a4b590,3, 0x8a4b5a0,3, 0x8a4b5b0,3, 0x8a4b5c0,3, 0x8a4b5d0,3, 0x8a4b5e0,3, 0x8a4b5f0,3, 0x8a4b600,3, 0x8a4b610,3, 0x8a4b620,3, 0x8a4b630,3, 0x8a4b640,3, 0x8a4b650,3, 0x8a4b660,3, 0x8a4b670,3, 0x8a4b680,3, 0x8a4b690,3, 0x8a4b6a0,3, 0x8a4b6b0,3, 0x8a4b6c0,3, 0x8a4b6d0,3, 0x8a4b6e0,3, 0x8a4b6f0,3, 0x8a4b700,3, 0x8a4b710,3, 0x8a4b720,3, 0x8a4b730,3, 0x8a4b740,3, 0x8a4b750,3, 0x8a4b760,3, 0x8a4b770,3, 0x8a4b780,3, 0x8a4b790,3, 0x8a4b7a0,3, 0x8a4b7b0,3, 0x8a4b7c0,3, 0x8a4b7d0,3, 0x8a4b7e0,3, 0x8a4b7f0,3, 0x8a4b800,3, 0x8a4b810,3, 0x8a4b820,3, 0x8a4b830,3, 0x8a4b840,3, 0x8a4b850,3, 0x8a4b860,3, 0x8a4b870,3, 0x8a4b880,3, 0x8a4b890,3, 0x8a4b8a0,3, 0x8a4b8b0,3, 0x8a4b8c0,3, 0x8a4b8d0,3, 0x8a4b8e0,3, 0x8a4b8f0,3, 0x8a4b900,3, 0x8a4b910,3, 0x8a4b920,3, 0x8a4b930,3, 0x8a4b940,3, 0x8a4b950,3, 0x8a4b960,3, 0x8a4b970,3, 0x8a4b980,3, 0x8a4b990,3, 0x8a4b9a0,3, 0x8a4b9b0,3, 0x8a4b9c0,3, 0x8a4b9d0,3, 0x8a4b9e0,3, 0x8a4b9f0,3, 0x8a4ba00,3, 0x8a4ba10,3, 0x8a4ba20,3, 0x8a4ba30,3, 0x8a4ba40,3, 0x8a4ba50,3, 0x8a4ba60,3, 0x8a4ba70,3, 0x8a4ba80,3, 0x8a4ba90,3, 0x8a4baa0,3, 0x8a4bab0,3, 0x8a4bac0,3, 0x8a4bad0,3, 0x8a4bae0,3, 0x8a4baf0,3, 0x8a4bb00,3, 0x8a4bb10,3, 0x8a4bb20,3, 0x8a4bb30,3, 0x8a4bb40,3, 0x8a4bb50,3, 0x8a4bb60,3, 0x8a4bb70,3, 0x8a4bb80,3, 0x8a4bb90,3, 0x8a4bba0,3, 0x8a4bbb0,3, 0x8a4bbc0,3, 0x8a4bbd0,3, 0x8a4bbe0,3, 0x8a4bbf0,3, 0x8a4bc00,3, 0x8a4bc10,3, 0x8a4bc20,3, 0x8a4bc30,3, 0x8a4bc40,3, 0x8a4bc50,3, 0x8a4bc60,3, 0x8a4bc70,3, 0x8a4bc80,3, 0x8a4bc90,3, 0x8a4bca0,3, 0x8a4bcb0,3, 0x8a4bcc0,3, 0x8a4bcd0,3, 0x8a4bce0,3, 0x8a4bcf0,3, 0x8a4bd00,3, 0x8a4bd10,3, 0x8a4bd20,3, 0x8a4bd30,3, 0x8a4bd40,3, 0x8a4bd50,3, 0x8a4bd60,3, 0x8a4bd70,3, 0x8a4bd80,3, 0x8a4bd90,3, 0x8a4bda0,3, 0x8a4bdb0,3, 0x8a4bdc0,3, 0x8a4bdd0,3, 0x8a4bde0,3, 0x8a4bdf0,3, 0x8a4be00,3, 0x8a4be10,3, 0x8a4be20,3, 0x8a4be30,3, 0x8a4be40,3, 0x8a4be50,3, 0x8a4be60,3, 0x8a4be70,3, 0x8a4be80,3, 0x8a4be90,3, 0x8a4bea0,3, 0x8a4beb0,3, 0x8a4bec0,3, 0x8a4bed0,3, 0x8a4bee0,3, 0x8a4bef0,3, 0x8a4bf00,3, 0x8a4bf10,3, 0x8a4bf20,3, 0x8a4bf30,3, 0x8a4bf40,3, 0x8a4bf50,3, 0x8a4bf60,3, 0x8a4bf70,3, 0x8a4bf80,3, 0x8a4bf90,3, 0x8a4bfa0,3, 0x8a4bfb0,3, 0x8a4bfc0,3, 0x8a4bfd0,3, 0x8a4bfe0,3, 0x8a4bff0,3, 0x8a4c000,3, 0x8a4c010,3, 0x8a4c020,3, 0x8a4c030,3, 0x8a4c040,3, 0x8a4c050,3, 0x8a4c060,3, 0x8a4c070,3, 0x8a4c080,3, 0x8a4c090,3, 0x8a4c0a0,3, 0x8a4c0b0,3, 0x8a4c0c0,3, 0x8a4c0d0,3, 0x8a4c0e0,3, 0x8a4c0f0,3, 0x8a4c100,3, 0x8a4c110,3, 0x8a4c120,3, 0x8a4c130,3, 0x8a4c140,3, 0x8a4c150,3, 0x8a4c160,3, 0x8a4c170,3, 0x8a4c180,3, 0x8a4c190,3, 0x8a4c1a0,3, 0x8a4c1b0,3, 0x8a4c1c0,3, 0x8a4c1d0,3, 0x8a4c1e0,3, 0x8a4c1f0,3, 0x8a4c200,3, 0x8a4c210,3, 0x8a4c220,3, 0x8a4c230,3, 0x8a4c240,3, 0x8a4c250,3, 0x8a4c260,3, 0x8a4c270,3, 0x8a4c280,3, 0x8a4c290,3, 0x8a4c2a0,3, 0x8a4c2b0,3, 0x8a4c2c0,3, 0x8a4c2d0,3, 0x8a4c2e0,3, 0x8a4c2f0,3, 0x8a4c300,3, 0x8a4c310,3, 0x8a4c320,3, 0x8a4c330,3, 0x8a4c340,3, 0x8a4c350,3, 0x8a4c360,3, 0x8a4c370,3, 0x8a4c380,3, 0x8a4c390,3, 0x8a4c3a0,3, 0x8a4c3b0,3, 0x8a4c3c0,3, 0x8a4c3d0,3, 0x8a4c3e0,3, 0x8a4c3f0,3, 0x8a4c400,3, 0x8a4c410,3, 0x8a4c420,3, 0x8a4c430,3, 0x8a4c440,3, 0x8a4c450,3, 0x8a4c460,3, 0x8a4c470,3, 0x8a4c480,3, 0x8a4c490,3, 0x8a4c4a0,3, 0x8a4c4b0,3, 0x8a4c4c0,3, 0x8a4c4d0,3, 0x8a4c4e0,3, 0x8a4c4f0,3, 0x8a4c500,3, 0x8a4c510,3, 0x8a4c520,3, 0x8a4c530,3, 0x8a4c540,3, 0x8a4c550,3, 0x8a4c560,3, 0x8a4c570,3, 0x8a4c580,3, 0x8a4c590,3, 0x8a4c5a0,3, 0x8a4c5b0,3, 0x8a4c5c0,3, 0x8a4c5d0,3, 0x8a4c5e0,3, 0x8a4c5f0,3, 0x8a4c600,3, 0x8a4c610,3, 0x8a4c620,3, 0x8a4c630,3, 0x8a4c640,3, 0x8a4c650,3, 0x8a4c660,3, 0x8a4c670,3, 0x8a4c680,3, 0x8a4c690,3, 0x8a4c6a0,3, 0x8a4c6b0,3, 0x8a4c6c0,3, 0x8a4c6d0,3, 0x8a4c6e0,3, 0x8a4c6f0,3, 0x8a4c700,3, 0x8a4c710,3, 0x8a4c720,3, 0x8a4c730,3, 0x8a4c740,3, 0x8a4c750,3, 0x8a4c760,3, 0x8a4c770,3, 0x8a4c780,3, 0x8a4c790,3, 0x8a4c7a0,3, 0x8a4c7b0,3, 0x8a4c7c0,3, 0x8a4c7d0,3, 0x8a4c7e0,3, 0x8a4c7f0,3, 0x8a4c800,3, 0x8a4c810,3, 0x8a4c820,3, 0x8a4c830,3, 0x8a4c840,3, 0x8a4c850,3, 0x8a4c860,3, 0x8a4c870,3, 0x8a4c880,3, 0x8a4c890,3, 0x8a4c8a0,3, 0x8a4c8b0,3, 0x8a4c8c0,3, 0x8a4c8d0,3, 0x8a4c8e0,3, 0x8a4c8f0,3, 0x8a4c900,3, 0x8a4c910,3, 0x8a4c920,3, 0x8a4c930,3, 0x8a4c940,3, 0x8a4c950,3, 0x8a4c960,3, 0x8a4c970,3, 0x8a4c980,3, 0x8a4c990,3, 0x8a4c9a0,3, 0x8a4c9b0,3, 0x8a4c9c0,3, 0x8a4c9d0,3, 0x8a4c9e0,3, 0x8a4c9f0,3, 0x8a4ca00,3, 0x8a4ca10,3, 0x8a4ca20,3, 0x8a4ca30,3, 0x8a4ca40,3, 0x8a4ca50,3, 0x8a4ca60,3, 0x8a4ca70,3, 0x8a4ca80,3, 0x8a4ca90,3, 0x8a4caa0,3, 0x8a4cab0,3, 0x8a4cac0,3, 0x8a4cad0,3, 0x8a4cae0,3, 0x8a4caf0,3, 0x8a4cb00,3, 0x8a4cb10,3, 0x8a4cb20,3, 0x8a4cb30,3, 0x8a4cb40,3, 0x8a4cb50,3, 0x8a4cb60,3, 0x8a4cb70,3, 0x8a4cb80,3, 0x8a4cb90,3, 0x8a4cba0,3, 0x8a4cbb0,3, 0x8a4cbc0,3, 0x8a4cbd0,3, 0x8a4cbe0,3, 0x8a4cbf0,3, 0x8a4cc00,3, 0x8a4cc10,3, 0x8a4cc20,3, 0x8a4cc30,3, 0x8a4cc40,3, 0x8a4cc50,3, 0x8a4cc60,3, 0x8a4cc70,3, 0x8a4cc80,3, 0x8a4cc90,3, 0x8a4cca0,3, 0x8a4ccb0,3, 0x8a4ccc0,3, 0x8a4ccd0,3, 0x8a4cce0,3, 0x8a4ccf0,3, 0x8a4cd00,3, 0x8a4cd10,3, 0x8a4cd20,3, 0x8a4cd30,3, 0x8a4cd40,3, 0x8a4cd50,3, 0x8a4cd60,3, 0x8a4cd70,3, 0x8a4cd80,3, 0x8a4cd90,3, 0x8a4cda0,3, 0x8a4cdb0,3, 0x8a4cdc0,3, 0x8a4cdd0,3, 0x8a4cde0,3, 0x8a4cdf0,3, 0x8a4ce00,3, 0x8a4ce10,3, 0x8a4ce20,3, 0x8a4ce30,3, 0x8a4ce40,3, 0x8a4ce50,3, 0x8a4ce60,3, 0x8a4ce70,3, 0x8a4ce80,3, 0x8a4ce90,3, 0x8a4cea0,3, 0x8a4ceb0,3, 0x8a4cec0,3, 0x8a4ced0,3, 0x8a4cee0,3, 0x8a4cef0,3, 0x8a4cf00,3, 0x8a4cf10,3, 0x8a4cf20,3, 0x8a4cf30,3, 0x8a4cf40,3, 0x8a4cf50,3, 0x8a4cf60,3, 0x8a4cf70,3, 0x8a4cf80,3, 0x8a4cf90,3, 0x8a4cfa0,3, 0x8a4cfb0,3, 0x8a4cfc0,3, 0x8a4cfd0,3, 0x8a4cfe0,3, 0x8a4cff0,3, 0x8a4d000,3, 0x8a4d010,3, 0x8a4d020,3, 0x8a4d030,3, 0x8a4d040,3, 0x8a4d050,3, 0x8a4d060,3, 0x8a4d070,3, 0x8a4d080,3, 0x8a4d090,3, 0x8a4d0a0,3, 0x8a4d0b0,3, 0x8a4d0c0,3, 0x8a4d0d0,3, 0x8a4d0e0,3, 0x8a4d0f0,3, 0x8a4d100,3, 0x8a4d110,3, 0x8a4d120,3, 0x8a4d130,3, 0x8a4d140,3, 0x8a4d150,3, 0x8a4d160,3, 0x8a4d170,3, 0x8a4d180,3, 0x8a4d190,3, 0x8a4d1a0,3, 0x8a4d1b0,3, 0x8a4d1c0,3, 0x8a4d1d0,3, 0x8a4d1e0,3, 0x8a4d1f0,3, 0x8a4d200,3, 0x8a4d210,3, 0x8a4d220,3, 0x8a4d230,3, 0x8a4d240,3, 0x8a4d250,3, 0x8a4d260,3, 0x8a4d270,3, 0x8a4d280,3, 0x8a4d290,3, 0x8a4d2a0,3, 0x8a4d2b0,3, 0x8a4d2c0,3, 0x8a4d2d0,3, 0x8a4d2e0,3, 0x8a4d2f0,3, 0x8a4d300,3, 0x8a4d310,3, 0x8a4d320,3, 0x8a4d330,3, 0x8a4d340,3, 0x8a4d350,3, 0x8a4d360,3, 0x8a4d370,3, 0x8a4d380,3, 0x8a4d390,3, 0x8a4d3a0,3, 0x8a4d3b0,3, 0x8a4d3c0,3, 0x8a4d3d0,3, 0x8a4d3e0,3, 0x8a4d3f0,3, 0x8a4d400,3, 0x8a4d410,3, 0x8a4d420,3, 0x8a4d430,3, 0x8a4d440,3, 0x8a4d450,3, 0x8a4d460,3, 0x8a4d470,3, 0x8a4d480,3, 0x8a4d490,3, 0x8a4d4a0,3, 0x8a4d4b0,3, 0x8a4d4c0,3, 0x8a4d4d0,3, 0x8a4d4e0,3, 0x8a4d4f0,3, 0x8a4d500,3, 0x8a4d510,3, 0x8a4d520,3, 0x8a4d530,3, 0x8a4d540,3, 0x8a4d550,3, 0x8a4d560,3, 0x8a4d570,3, 0x8a4d580,3, 0x8a4d590,3, 0x8a4d5a0,3, 0x8a4d5b0,3, 0x8a4d5c0,3, 0x8a4d5d0,3, 0x8a4d5e0,3, 0x8a4d5f0,3, 0x8a4d600,3, 0x8a4d610,3, 0x8a4d620,3, 0x8a4d630,3, 0x8a4d640,3, 0x8a4d650,3, 0x8a4d660,3, 0x8a4d670,3, 0x8a4d680,3, 0x8a4d690,3, 0x8a4d6a0,3, 0x8a4d6b0,3, 0x8a4d6c0,3, 0x8a4d6d0,3, 0x8a4d6e0,3, 0x8a4d6f0,3, 0x8a4d700,3, 0x8a4d710,3, 0x8a4d720,3, 0x8a4d730,3, 0x8a4d740,3, 0x8a4d750,3, 0x8a4d760,3, 0x8a4d770,3, 0x8a4d780,3, 0x8a4d790,3, 0x8a4d7a0,3, 0x8a4d7b0,3, 0x8a4d7c0,3, 0x8a4d7d0,3, 0x8a4d7e0,3, 0x8a4d7f0,3, 0x8a4d800,3, 0x8a4d810,3, 0x8a4d820,3, 0x8a4d830,3, 0x8a4d840,3, 0x8a4d850,3, 0x8a4d860,3, 0x8a4d870,3, 0x8a4d880,3, 0x8a4d890,3, 0x8a4d8a0,3, 0x8a4d8b0,3, 0x8a4d8c0,3, 0x8a4d8d0,3, 0x8a4d8e0,3, 0x8a4d8f0,3, 0x8a4d900,3, 0x8a4d910,3, 0x8a4d920,3, 0x8a4d930,3, 0x8a4d940,3, 0x8a4d950,3, 0x8a4d960,3, 0x8a4d970,3, 0x8a4d980,3, 0x8a4d990,3, 0x8a4d9a0,3, 0x8a4d9b0,3, 0x8a4d9c0,3, 0x8a4d9d0,3, 0x8a4d9e0,3, 0x8a4d9f0,3, 0x8a4da00,3, 0x8a4da10,3, 0x8a4da20,3, 0x8a4da30,3, 0x8a4da40,3, 0x8a4da50,3, 0x8a4da60,3, 0x8a4da70,3, 0x8a4da80,3, 0x8a4da90,3, 0x8a4daa0,3, 0x8a4dab0,3, 0x8a4dac0,3, 0x8a4dad0,3, 0x8a4dae0,3, 0x8a4daf0,3, 0x8a4db00,3, 0x8a4db10,3, 0x8a4db20,3, 0x8a4db30,3, 0x8a4db40,3, 0x8a4db50,3, 0x8a4db60,3, 0x8a4db70,3, 0x8a4db80,3, 0x8a4db90,3, 0x8a4dba0,3, 0x8a4dbb0,3, 0x8a4dbc0,3, 0x8a4dbd0,3, 0x8a4dbe0,3, 0x8a4dbf0,3, 0x8a4dc00,3, 0x8a4dc10,3, 0x8a4dc20,3, 0x8a4dc30,3, 0x8a4dc40,3, 0x8a4dc50,3, 0x8a4dc60,3, 0x8a4dc70,3, 0x8a4dc80,3, 0x8a4dc90,3, 0x8a4dca0,3, 0x8a4dcb0,3, 0x8a4dcc0,3, 0x8a4dcd0,3, 0x8a4dce0,3, 0x8a4dcf0,3, 0x8a4dd00,3, 0x8a4dd10,3, 0x8a4dd20,3, 0x8a4dd30,3, 0x8a4dd40,3, 0x8a4dd50,3, 0x8a4dd60,3, 0x8a4dd70,3, 0x8a4dd80,3, 0x8a4dd90,3, 0x8a4dda0,3, 0x8a4ddb0,3, 0x8a4ddc0,3, 0x8a4ddd0,3, 0x8a4dde0,3, 0x8a4ddf0,3, 0x8a4de00,3, 0x8a4de10,3, 0x8a4de20,3, 0x8a4de30,3, 0x8a4de40,3, 0x8a4de50,3, 0x8a4de60,3, 0x8a4de70,3, 0x8a4de80,3, 0x8a4de90,3, 0x8a4dea0,3, 0x8a4deb0,3, 0x8a4dec0,3, 0x8a4ded0,3, 0x8a4dee0,3, 0x8a4def0,3, 0x8a4df00,3, 0x8a4df10,3, 0x8a4df20,3, 0x8a4df30,3, 0x8a4df40,3, 0x8a4df50,3, 0x8a4df60,3, 0x8a4df70,3, 0x8a4df80,3, 0x8a4df90,3, 0x8a4dfa0,3, 0x8a4dfb0,3, 0x8a4dfc0,3, 0x8a4dfd0,3, 0x8a4dfe0,3, 0x8a4dff0,3, 0x8a4e000,3, 0x8a4e010,3, 0x8a4e020,3, 0x8a4e030,3, 0x8a4e040,3, 0x8a4e050,3, 0x8a4e060,3, 0x8a4e070,3, 0x8a4e080,3, 0x8a4e090,3, 0x8a4e0a0,3, 0x8a4e0b0,3, 0x8a4e0c0,3, 0x8a4e0d0,3, 0x8a4e0e0,3, 0x8a4e0f0,3, 0x8a4e100,3, 0x8a4e110,3, 0x8a4e120,3, 0x8a4e130,3, 0x8a4e140,3, 0x8a4e150,3, 0x8a4e160,3, 0x8a4e170,3, 0x8a4e180,3, 0x8a4e190,3, 0x8a4e1a0,3, 0x8a4e1b0,3, 0x8a4e1c0,3, 0x8a4e1d0,3, 0x8a4e1e0,3, 0x8a4e1f0,3, 0x8a4e200,3, 0x8a4e210,3, 0x8a4e220,3, 0x8a4e230,3, 0x8a4e240,3, 0x8a4e250,3, 0x8a4e260,3, 0x8a4e270,3, 0x8a4e280,3, 0x8a4e290,3, 0x8a4e2a0,3, 0x8a4e2b0,3, 0x8a4e2c0,3, 0x8a4e2d0,3, 0x8a4e2e0,3, 0x8a4e2f0,3, 0x8a4e300,3, 0x8a4e310,3, 0x8a4e320,3, 0x8a4e330,3, 0x8a4e340,3, 0x8a4e350,3, 0x8a4e360,3, 0x8a4e370,3, 0x8a4e380,3, 0x8a4e390,3, 0x8a4e3a0,3, 0x8a4e3b0,3, 0x8a4e3c0,3, 0x8a4e3d0,3, 0x8a4e3e0,3, 0x8a4e3f0,3, 0x8a4e400,3, 0x8a4e410,3, 0x8a4e420,3, 0x8a4e430,3, 0x8a4e440,3, 0x8a4e450,3, 0x8a4e460,3, 0x8a4e470,3, 0x8a4e480,3, 0x8a4e490,3, 0x8a4e4a0,3, 0x8a4e4b0,3, 0x8a4e4c0,3, 0x8a4e4d0,3, 0x8a4e4e0,3, 0x8a4e4f0,3, 0x8a4e500,3, 0x8a4e510,3, 0x8a4e520,3, 0x8a4e530,3, 0x8a4e540,3, 0x8a4e550,3, 0x8a4e560,3, 0x8a4e570,3, 0x8a4e580,3, 0x8a4e590,3, 0x8a4e5a0,3, 0x8a4e5b0,3, 0x8a4e5c0,3, 0x8a4e5d0,3, 0x8a4e5e0,3, 0x8a4e5f0,3, 0x8a4e600,3, 0x8a4e610,3, 0x8a4e620,3, 0x8a4e630,3, 0x8a4e640,3, 0x8a4e650,3, 0x8a4e660,3, 0x8a4e670,3, 0x8a4e680,3, 0x8a4e690,3, 0x8a4e6a0,3, 0x8a4e6b0,3, 0x8a4e6c0,3, 0x8a4e6d0,3, 0x8a4e6e0,3, 0x8a4e6f0,3, 0x8a4e700,3, 0x8a4e710,3, 0x8a4e720,3, 0x8a4e730,3, 0x8a4e740,3, 0x8a4e750,3, 0x8a4e760,3, 0x8a4e770,3, 0x8a4e780,3, 0x8a4e790,3, 0x8a4e7a0,3, 0x8a4e7b0,3, 0x8a4e7c0,3, 0x8a4e7d0,3, 0x8a4e7e0,3, 0x8a4e7f0,3, 0x8a4e800,3, 0x8a4e810,3, 0x8a4e820,3, 0x8a4e830,3, 0x8a4e840,3, 0x8a4e850,3, 0x8a4e860,3, 0x8a4e870,3, 0x8a4e880,3, 0x8a4e890,3, 0x8a4e8a0,3, 0x8a4e8b0,3, 0x8a4e8c0,3, 0x8a4e8d0,3, 0x8a4e8e0,3, 0x8a4e8f0,3, 0x8a4e900,3, 0x8a4e910,3, 0x8a4e920,3, 0x8a4e930,3, 0x8a4e940,3, 0x8a4e950,3, 0x8a4e960,3, 0x8a4e970,3, 0x8a4e980,3, 0x8a4e990,3, 0x8a4e9a0,3, 0x8a4e9b0,3, 0x8a4e9c0,3, 0x8a4e9d0,3, 0x8a4e9e0,3, 0x8a4e9f0,3, 0x8a4ea00,3, 0x8a4ea10,3, 0x8a4ea20,3, 0x8a4ea30,3, 0x8a4ea40,3, 0x8a4ea50,3, 0x8a4ea60,3, 0x8a4ea70,3, 0x8a4ea80,3, 0x8a4ea90,3, 0x8a4eaa0,3, 0x8a4eab0,3, 0x8a4eac0,3, 0x8a4ead0,3, 0x8a4eae0,3, 0x8a4eaf0,3, 0x8a4eb00,3, 0x8a4eb10,3, 0x8a4eb20,3, 0x8a4eb30,3, 0x8a4eb40,3, 0x8a4eb50,3, 0x8a4eb60,3, 0x8a4eb70,3, 0x8a4eb80,3, 0x8a4eb90,3, 0x8a4eba0,3, 0x8a4ebb0,3, 0x8a4ebc0,3, 0x8a4ebd0,3, 0x8a4ebe0,3, 0x8a4ebf0,3, 0x8a4ec00,3, 0x8a4ec10,3, 0x8a4ec20,3, 0x8a4ec30,3, 0x8a4ec40,3, 0x8a4ec50,3, 0x8a4ec60,3, 0x8a4ec70,3, 0x8a4ec80,3, 0x8a4ec90,3, 0x8a4eca0,3, 0x8a4ecb0,3, 0x8a4ecc0,3, 0x8a4ecd0,3, 0x8a4ece0,3, 0x8a4ecf0,3, 0x8a4ed00,3, 0x8a4ed10,3, 0x8a4ed20,3, 0x8a4ed30,3, 0x8a4ed40,3, 0x8a4ed50,3, 0x8a4ed60,3, 0x8a4ed70,3, 0x8a4ed80,3, 0x8a4ed90,3, 0x8a4eda0,3, 0x8a4edb0,3, 0x8a4edc0,3, 0x8a4edd0,3, 0x8a4ede0,3, 0x8a4edf0,3, 0x8a4ee00,3, 0x8a4ee10,3, 0x8a4ee20,3, 0x8a4ee30,3, 0x8a4ee40,3, 0x8a4ee50,3, 0x8a4ee60,3, 0x8a4ee70,3, 0x8a4ee80,3, 0x8a4ee90,3, 0x8a4eea0,3, 0x8a4eeb0,3, 0x8a4eec0,3, 0x8a4eed0,3, 0x8a4eee0,3, 0x8a4eef0,3, 0x8a4ef00,3, 0x8a4ef10,3, 0x8a4ef20,3, 0x8a4ef30,3, 0x8a4ef40,3, 0x8a4ef50,3, 0x8a4ef60,3, 0x8a4ef70,3, 0x8a4ef80,3, 0x8a4ef90,3, 0x8a4efa0,3, 0x8a4efb0,3, 0x8a4efc0,3, 0x8a4efd0,3, 0x8a4efe0,3, 0x8a4eff0,3, 0x8a4f000,3, 0x8a4f010,3, 0x8a4f020,3, 0x8a4f030,3, 0x8a4f040,3, 0x8a4f050,3, 0x8a4f060,3, 0x8a4f070,3, 0x8a4f080,3, 0x8a4f090,3, 0x8a4f0a0,3, 0x8a4f0b0,3, 0x8a4f0c0,3, 0x8a4f0d0,3, 0x8a4f0e0,3, 0x8a4f0f0,3, 0x8a4f100,3, 0x8a4f110,3, 0x8a4f120,3, 0x8a4f130,3, 0x8a4f140,3, 0x8a4f150,3, 0x8a4f160,3, 0x8a4f170,3, 0x8a4f180,3, 0x8a4f190,3, 0x8a4f1a0,3, 0x8a4f1b0,3, 0x8a4f1c0,3, 0x8a4f1d0,3, 0x8a4f1e0,3, 0x8a4f1f0,3, 0x8a4f200,3, 0x8a4f210,3, 0x8a4f220,3, 0x8a4f230,3, 0x8a4f240,3, 0x8a4f250,3, 0x8a4f260,3, 0x8a4f270,3, 0x8a4f280,3, 0x8a4f290,3, 0x8a4f2a0,3, 0x8a4f2b0,3, 0x8a4f2c0,3, 0x8a4f2d0,3, 0x8a4f2e0,3, 0x8a4f2f0,3, 0x8a4f300,3, 0x8a4f310,3, 0x8a4f320,3, 0x8a4f330,3, 0x8a4f340,3, 0x8a4f350,3, 0x8a4f360,3, 0x8a4f370,3, 0x8a4f380,3, 0x8a4f390,3, 0x8a4f3a0,3, 0x8a4f3b0,3, 0x8a4f3c0,3, 0x8a4f3d0,3, 0x8a4f3e0,3, 0x8a4f3f0,3, 0x8a4f400,3, 0x8a4f410,3, 0x8a4f420,3, 0x8a4f430,3, 0x8a4f440,3, 0x8a4f450,3, 0x8a4f460,3, 0x8a4f470,3, 0x8a4f480,3, 0x8a4f490,3, 0x8a4f4a0,3, 0x8a4f4b0,3, 0x8a4f4c0,3, 0x8a4f4d0,3, 0x8a4f4e0,3, 0x8a4f4f0,3, 0x8a4f500,3, 0x8a4f510,3, 0x8a4f520,3, 0x8a4f530,3, 0x8a4f540,3, 0x8a4f550,3, 0x8a4f560,3, 0x8a4f570,3, 0x8a4f580,3, 0x8a4f590,3, 0x8a4f5a0,3, 0x8a4f5b0,3, 0x8a4f5c0,3, 0x8a4f5d0,3, 0x8a4f5e0,3, 0x8a4f5f0,3, 0x8a4f600,3, 0x8a4f610,3, 0x8a4f620,3, 0x8a4f630,3, 0x8a4f640,3, 0x8a4f650,3, 0x8a4f660,3, 0x8a4f670,3, 0x8a4f680,3, 0x8a4f690,3, 0x8a4f6a0,3, 0x8a4f6b0,3, 0x8a4f6c0,3, 0x8a4f6d0,3, 0x8a4f6e0,3, 0x8a4f6f0,3, 0x8a4f700,3, 0x8a4f710,3, 0x8a4f720,3, 0x8a4f730,3, 0x8a4f740,3, 0x8a4f750,3, 0x8a4f760,3, 0x8a4f770,3, 0x8a4f780,3, 0x8a4f790,3, 0x8a4f7a0,3, 0x8a4f7b0,3, 0x8a4f7c0,3, 0x8a4f7d0,3, 0x8a4f7e0,3, 0x8a4f7f0,3, 0x8a4f800,3, 0x8a4f810,3, 0x8a4f820,3, 0x8a4f830,3, 0x8a4f840,3, 0x8a4f850,3, 0x8a4f860,3, 0x8a4f870,3, 0x8a4f880,3, 0x8a4f890,3, 0x8a4f8a0,3, 0x8a4f8b0,3, 0x8a4f8c0,3, 0x8a4f8d0,3, 0x8a4f8e0,3, 0x8a4f8f0,3, 0x8a4f900,3, 0x8a4f910,3, 0x8a4f920,3, 0x8a4f930,3, 0x8a4f940,3, 0x8a4f950,3, 0x8a4f960,3, 0x8a4f970,3, 0x8a4f980,3, 0x8a4f990,3, 0x8a4f9a0,3, 0x8a4f9b0,3, 0x8a4f9c0,3, 0x8a4f9d0,3, 0x8a4f9e0,3, 0x8a4f9f0,3, 0x8a4fa00,3, 0x8a4fa10,3, 0x8a4fa20,3, 0x8a4fa30,3, 0x8a4fa40,3, 0x8a4fa50,3, 0x8a4fa60,3, 0x8a4fa70,3, 0x8a4fa80,3, 0x8a4fa90,3, 0x8a4faa0,3, 0x8a4fab0,3, 0x8a4fac0,3, 0x8a4fad0,3, 0x8a4fae0,3, 0x8a4faf0,3, 0x8a4fb00,3, 0x8a4fb10,3, 0x8a4fb20,3, 0x8a4fb30,3, 0x8a4fb40,3, 0x8a4fb50,3, 0x8a4fb60,3, 0x8a4fb70,3, 0x8a4fb80,3, 0x8a4fb90,3, 0x8a4fba0,3, 0x8a4fbb0,3, 0x8a4fbc0,3, 0x8a4fbd0,3, 0x8a4fbe0,3, 0x8a4fbf0,3, 0x8a4fc00,3, 0x8a4fc10,3, 0x8a4fc20,3, 0x8a4fc30,3, 0x8a4fc40,3, 0x8a4fc50,3, 0x8a4fc60,3, 0x8a4fc70,3, 0x8a4fc80,3, 0x8a4fc90,3, 0x8a4fca0,3, 0x8a4fcb0,3, 0x8a4fcc0,3, 0x8a4fcd0,3, 0x8a4fce0,3, 0x8a4fcf0,3, 0x8a4fd00,3, 0x8a4fd10,3, 0x8a4fd20,3, 0x8a4fd30,3, 0x8a4fd40,3, 0x8a4fd50,3, 0x8a4fd60,3, 0x8a4fd70,3, 0x8a4fd80,3, 0x8a4fd90,3, 0x8a4fda0,3, 0x8a4fdb0,3, 0x8a4fdc0,3, 0x8a4fdd0,3, 0x8a4fde0,3, 0x8a4fdf0,3, 0x8a4fe00,3, 0x8a4fe10,3, 0x8a4fe20,3, 0x8a4fe30,3, 0x8a4fe40,3, 0x8a4fe50,3, 0x8a4fe60,3, 0x8a4fe70,3, 0x8a4fe80,3, 0x8a4fe90,3, 0x8a4fea0,3, 0x8a4feb0,3, 0x8a4fec0,3, 0x8a4fed0,3, 0x8a4fee0,3, 0x8a4fef0,3, 0x8a4ff00,3, 0x8a4ff10,3, 0x8a4ff20,3, 0x8a4ff30,3, 0x8a4ff40,3, 0x8a4ff50,3, 0x8a4ff60,3, 0x8a4ff70,3, 0x8a4ff80,3, 0x8a4ff90,3, 0x8a4ffa0,3, 0x8a4ffb0,3, 0x8a4ffc0,3, 0x8a4ffd0,3, 0x8a4ffe0,3, 0x8a4fff0,3, 0x8a50000,3, 0x8a50010,3, 0x8a50020,3, 0x8a50030,3, 0x8a50040,3, 0x8a50050,3, 0x8a50060,3, 0x8a50070,3, 0x8a50080,3, 0x8a50090,3, 0x8a500a0,3, 0x8a500b0,3, 0x8a500c0,3, 0x8a500d0,3, 0x8a500e0,3, 0x8a500f0,3, 0x8a50100,3, 0x8a50110,3, 0x8a50120,3, 0x8a50130,3, 0x8a50140,3, 0x8a50150,3, 0x8a50160,3, 0x8a50170,3, 0x8a50180,3, 0x8a50190,3, 0x8a501a0,3, 0x8a501b0,3, 0x8a501c0,3, 0x8a501d0,3, 0x8a501e0,3, 0x8a501f0,3, 0x8a50200,3, 0x8a50210,3, 0x8a50220,3, 0x8a50230,3, 0x8a50240,3, 0x8a50250,3, 0x8a50260,3, 0x8a50270,3, 0x8a50280,3, 0x8a50290,3, 0x8a502a0,3, 0x8a502b0,3, 0x8a502c0,3, 0x8a502d0,3, 0x8a502e0,3, 0x8a502f0,3, 0x8a50300,3, 0x8a50310,3, 0x8a50320,3, 0x8a50330,3, 0x8a50340,3, 0x8a50350,3, 0x8a50360,3, 0x8a50370,3, 0x8a50380,3, 0x8a50390,3, 0x8a503a0,3, 0x8a503b0,3, 0x8a503c0,3, 0x8a503d0,3, 0x8a503e0,3, 0x8a503f0,3, 0x8a50400,3, 0x8a50410,3, 0x8a50420,3, 0x8a50430,3, 0x8a50440,3, 0x8a50450,3, 0x8a50460,3, 0x8a50470,3, 0x8a50480,3, 0x8a50490,3, 0x8a504a0,3, 0x8a504b0,3, 0x8a504c0,3, 0x8a504d0,3, 0x8a504e0,3, 0x8a504f0,3, 0x8a50500,3, 0x8a50510,3, 0x8a50520,3, 0x8a50530,3, 0x8a50540,3, 0x8a50550,3, 0x8a50560,3, 0x8a50570,3, 0x8a50580,3, 0x8a50590,3, 0x8a505a0,3, 0x8a505b0,3, 0x8a505c0,3, 0x8a505d0,3, 0x8a505e0,3, 0x8a505f0,3, 0x8a50600,3, 0x8a50610,3, 0x8a50620,3, 0x8a50630,3, 0x8a50640,3, 0x8a50650,3, 0x8a50660,3, 0x8a50670,3, 0x8a50680,3, 0x8a50690,3, 0x8a506a0,3, 0x8a506b0,3, 0x8a506c0,3, 0x8a506d0,3, 0x8a506e0,3, 0x8a506f0,3, 0x8a50700,3, 0x8a50710,3, 0x8a50720,3, 0x8a50730,3, 0x8a50740,3, 0x8a50750,3, 0x8a50760,3, 0x8a50770,3, 0x8a50780,3, 0x8a50790,3, 0x8a507a0,3, 0x8a507b0,3, 0x8a507c0,3, 0x8a507d0,3, 0x8a507e0,3, 0x8a507f0,3, 0x8a50800,3, 0x8a50810,3, 0x8a50820,3, 0x8a50830,3, 0x8a50840,3, 0x8a50850,3, 0x8a50860,3, 0x8a50870,3, 0x8a50880,3, 0x8a50890,3, 0x8a508a0,3, 0x8a508b0,3, 0x8a508c0,3, 0x8a508d0,3, 0x8a508e0,3, 0x8a508f0,3, 0x8a50900,3, 0x8a50910,3, 0x8a50920,3, 0x8a50930,3, 0x8a50940,3, 0x8a50950,3, 0x8a50960,3, 0x8a50970,3, 0x8a50980,3, 0x8a50990,3, 0x8a509a0,3, 0x8a509b0,3, 0x8a509c0,3, 0x8a509d0,3, 0x8a509e0,3, 0x8a509f0,3, 0x8a50a00,3, 0x8a50a10,3, 0x8a50a20,3, 0x8a50a30,3, 0x8a50a40,3, 0x8a50a50,3, 0x8a50a60,3, 0x8a50a70,3, 0x8a50a80,3, 0x8a50a90,3, 0x8a50aa0,3, 0x8a50ab0,3, 0x8a50ac0,3, 0x8a50ad0,3, 0x8a50ae0,3, 0x8a50af0,3, 0x8a50b00,3, 0x8a50b10,3, 0x8a50b20,3, 0x8a50b30,3, 0x8a50b40,3, 0x8a50b50,3, 0x8a50b60,3, 0x8a50b70,3, 0x8a50b80,3, 0x8a50b90,3, 0x8a50ba0,3, 0x8a50bb0,3, 0x8a50bc0,3, 0x8a50bd0,3, 0x8a50be0,3, 0x8a50bf0,3, 0x8a50c00,3, 0x8a50c10,3, 0x8a50c20,3, 0x8a50c30,3, 0x8a50c40,3, 0x8a50c50,3, 0x8a50c60,3, 0x8a50c70,3, 0x8a50c80,3, 0x8a50c90,3, 0x8a50ca0,3, 0x8a50cb0,3, 0x8a50cc0,3, 0x8a50cd0,3, 0x8a50ce0,3, 0x8a50cf0,3, 0x8a50d00,3, 0x8a50d10,3, 0x8a50d20,3, 0x8a50d30,3, 0x8a50d40,3, 0x8a50d50,3, 0x8a50d60,3, 0x8a50d70,3, 0x8a50d80,3, 0x8a50d90,3, 0x8a50da0,3, 0x8a50db0,3, 0x8a50dc0,3, 0x8a50dd0,3, 0x8a50de0,3, 0x8a50df0,3, 0x8a50e00,3, 0x8a50e10,3, 0x8a50e20,3, 0x8a50e30,3, 0x8a50e40,3, 0x8a50e50,3, 0x8a50e60,3, 0x8a50e70,3, 0x8a50e80,3, 0x8a50e90,3, 0x8a50ea0,3, 0x8a50eb0,3, 0x8a50ec0,3, 0x8a50ed0,3, 0x8a50ee0,3, 0x8a50ef0,3, 0x8a50f00,3, 0x8a50f10,3, 0x8a50f20,3, 0x8a50f30,3, 0x8a50f40,3, 0x8a50f50,3, 0x8a50f60,3, 0x8a50f70,3, 0x8a50f80,3, 0x8a50f90,3, 0x8a50fa0,3, 0x8a50fb0,3, 0x8a50fc0,3, 0x8a50fd0,3, 0x8a50fe0,3, 0x8a50ff0,3, 0x8a51000,3, 0x8a51010,3, 0x8a51020,3, 0x8a51030,3, 0x8a51040,3, 0x8a51050,3, 0x8a51060,3, 0x8a51070,3, 0x8a51080,3, 0x8a51090,3, 0x8a510a0,3, 0x8a510b0,3, 0x8a510c0,3, 0x8a510d0,3, 0x8a510e0,3, 0x8a510f0,3, 0x8a51100,3, 0x8a51110,3, 0x8a51120,3, 0x8a51130,3, 0x8a51140,3, 0x8a51150,3, 0x8a51160,3, 0x8a51170,3, 0x8a51180,3, 0x8a51190,3, 0x8a511a0,3, 0x8a511b0,3, 0x8a511c0,3, 0x8a511d0,3, 0x8a511e0,3, 0x8a511f0,3, 0x8a51200,3, 0x8a51210,3, 0x8a51220,3, 0x8a51230,3, 0x8a51240,3, 0x8a51250,3, 0x8a51260,3, 0x8a51270,3, 0x8a51280,3, 0x8a51290,3, 0x8a512a0,3, 0x8a512b0,3, 0x8a512c0,3, 0x8a512d0,3, 0x8a512e0,3, 0x8a512f0,3, 0x8a51300,3, 0x8a51310,3, 0x8a51320,3, 0x8a51330,3, 0x8a51340,3, 0x8a51350,3, 0x8a51360,3, 0x8a51370,3, 0x8a51380,3, 0x8a51390,3, 0x8a513a0,3, 0x8a513b0,3, 0x8a513c0,3, 0x8a513d0,3, 0x8a513e0,3, 0x8a513f0,3, 0x8a51400,3, 0x8a51410,3, 0x8a51420,3, 0x8a51430,3, 0x8a51440,3, 0x8a51450,3, 0x8a51460,3, 0x8a51470,3, 0x8a51480,3, 0x8a51490,3, 0x8a514a0,3, 0x8a514b0,3, 0x8a514c0,3, 0x8a514d0,3, 0x8a514e0,3, 0x8a514f0,3, 0x8a51500,3, 0x8a51510,3, 0x8a51520,3, 0x8a51530,3, 0x8a51540,3, 0x8a51550,3, 0x8a51560,3, 0x8a51570,3, 0x8a51580,3, 0x8a51590,3, 0x8a515a0,3, 0x8a515b0,3, 0x8a515c0,3, 0x8a515d0,3, 0x8a515e0,3, 0x8a515f0,3, 0x8a51600,3, 0x8a51610,3, 0x8a60000,2, 0x8a60040,9, 0x8a60080,3, 0x8a60090,3, 0x8a600a0,3, 0x8a80000,3, 0x8a80010,3, 0x8a80020,3, 0x8a80030,3, 0x8a80040,3, 0x8a80050,3, 0x8a80060,3, 0x8a80070,3, 0x8a80080,3, 0x8a80090,3, 0x8a800a0,3, 0x8a800b0,3, 0x8a800c0,3, 0x8a800d0,3, 0x8a800e0,3, 0x8a800f0,3, 0x8a80100,3, 0x8a80110,3, 0x8a80120,3, 0x8a80130,3, 0x8a80140,3, 0x8a80150,3, 0x8a80160,3, 0x8a80170,3, 0x8a80180,3, 0x8a80190,3, 0x8a801a0,3, 0x8a801b0,3, 0x8a801c0,3, 0x8a801d0,3, 0x8a801e0,3, 0x8a801f0,3, 0x8a80200,3, 0x8a80210,3, 0x8a80220,3, 0x8a80230,3, 0x8a80240,3, 0x8a80250,3, 0x8a80260,3, 0x8a80270,3, 0x8a80280,3, 0x8a80290,3, 0x8a802a0,3, 0x8a802b0,3, 0x8a802c0,3, 0x8a802d0,3, 0x8a802e0,3, 0x8a802f0,3, 0x8a80300,3, 0x8a80310,3, 0x8a80320,3, 0x8a80330,3, 0x8a80340,3, 0x8a80350,3, 0x8a80360,3, 0x8a80370,3, 0x8a80380,3, 0x8a80390,3, 0x8a803a0,3, 0x8a803b0,3, 0x8a803c0,3, 0x8a803d0,3, 0x8a803e0,3, 0x8a803f0,3, 0x8a80400,3, 0x8a80410,3, 0x8a80420,3, 0x8a80430,3, 0x8a80440,3, 0x8a80450,3, 0x8a80460,3, 0x8a80470,3, 0x8a80480,3, 0x8a80490,3, 0x8a804a0,3, 0x8a804b0,3, 0x8a804c0,3, 0x8a804d0,3, 0x8a804e0,3, 0x8a804f0,3, 0x8a80500,3, 0x8a80510,3, 0x8a80520,3, 0x8a80530,3, 0x8a80540,3, 0x8a80550,3, 0x8a80560,3, 0x8a80570,3, 0x8a80580,3, 0x8a80590,3, 0x8a805a0,3, 0x8a805b0,3, 0x8a805c0,3, 0x8a805d0,3, 0x8a805e0,3, 0x8a805f0,3, 0x8a80600,3, 0x8a80610,3, 0x8a80620,3, 0x8a80630,3, 0x8a80640,3, 0x8a80650,3, 0x8a80660,3, 0x8a80670,3, 0x8a80680,3, 0x8a80690,3, 0x8a806a0,3, 0x8a806b0,3, 0x8a806c0,3, 0x8a806d0,3, 0x8a806e0,3, 0x8a806f0,3, 0x8a80700,3, 0x8a80710,3, 0x8a80720,3, 0x8a80730,3, 0x8a80740,3, 0x8a80750,3, 0x8a80760,3, 0x8a80770,3, 0x8a80780,3, 0x8a80790,3, 0x8a807a0,3, 0x8a807b0,3, 0x8a807c0,3, 0x8a807d0,3, 0x8a807e0,3, 0x8a807f0,3, 0x8a80800,3, 0x8a80810,3, 0x8a80820,3, 0x8a80830,3, 0x8a80840,3, 0x8a80850,3, 0x8a80860,3, 0x8a80870,3, 0x8a80880,3, 0x8a80890,3, 0x8a808a0,3, 0x8a808b0,3, 0x8a808c0,3, 0x8a808d0,3, 0x8a808e0,3, 0x8a808f0,3, 0x8a80900,3, 0x8a80910,3, 0x8a80920,3, 0x8a80930,3, 0x8a80940,3, 0x8a80950,3, 0x8a80960,3, 0x8a80970,3, 0x8a80980,3, 0x8a80990,3, 0x8a809a0,3, 0x8a809b0,3, 0x8a809c0,3, 0x8a809d0,3, 0x8a809e0,3, 0x8a809f0,3, 0x8a80a00,3, 0x8a80a10,3, 0x8a80a20,3, 0x8a80a30,3, 0x8a80a40,3, 0x8a80a50,3, 0x8a80a60,3, 0x8a80a70,3, 0x8a80a80,3, 0x8a80a90,3, 0x8a80aa0,3, 0x8a80ab0,3, 0x8a80ac0,3, 0x8a80ad0,3, 0x8a80ae0,3, 0x8a80af0,3, 0x8a80b00,3, 0x8a80b10,3, 0x8a80b20,3, 0x8a80b30,3, 0x8a80b40,3, 0x8a80b50,3, 0x8a80b60,3, 0x8a80b70,3, 0x8a80b80,3, 0x8a80b90,3, 0x8a80ba0,3, 0x8a80bb0,3, 0x8a80bc0,3, 0x8a80bd0,3, 0x8a80be0,3, 0x8a80bf0,3, 0x8a80c00,3, 0x8a80c10,3, 0x8a80c20,3, 0x8a80c30,3, 0x8a80c40,3, 0x8a80c50,3, 0x8a80c60,3, 0x8a80c70,3, 0x8a80c80,3, 0x8a80c90,3, 0x8a80ca0,3, 0x8a80cb0,3, 0x8a80cc0,3, 0x8a80cd0,3, 0x8a80ce0,3, 0x8a80cf0,3, 0x8a80d00,3, 0x8a80d10,3, 0x8a80d20,3, 0x8a80d30,3, 0x8a80d40,3, 0x8a80d50,3, 0x8a80d60,3, 0x8a80d70,3, 0x8a80d80,3, 0x8a80d90,3, 0x8a80da0,3, 0x8a80db0,3, 0x8a80dc0,3, 0x8a80dd0,3, 0x8a80de0,3, 0x8a80df0,3, 0x8a80e00,3, 0x8a80e10,3, 0x8a80e20,3, 0x8a80e30,3, 0x8a80e40,3, 0x8a80e50,3, 0x8a80e60,3, 0x8a80e70,3, 0x8a80e80,3, 0x8a80e90,3, 0x8a80ea0,3, 0x8a80eb0,3, 0x8a80ec0,3, 0x8a80ed0,3, 0x8a80ee0,3, 0x8a80ef0,3, 0x8a80f00,3, 0x8a80f10,3, 0x8a80f20,3, 0x8a80f30,3, 0x8a80f40,3, 0x8a80f50,3, 0x8a80f60,3, 0x8a80f70,3, 0x8a80f80,3, 0x8a80f90,3, 0x8a80fa0,3, 0x8a80fb0,3, 0x8a80fc0,3, 0x8a80fd0,3, 0x8a80fe0,3, 0x8a80ff0,3, 0x8a81000,3, 0x8a81010,3, 0x8a81020,3, 0x8a81030,3, 0x8a81040,3, 0x8a81050,3, 0x8a81060,3, 0x8a81070,3, 0x8a81080,3, 0x8a81090,3, 0x8a810a0,3, 0x8a810b0,3, 0x8a810c0,3, 0x8a810d0,3, 0x8a810e0,3, 0x8a810f0,3, 0x8a81100,3, 0x8a81110,3, 0x8a81120,3, 0x8a81130,3, 0x8a81140,3, 0x8a81150,3, 0x8a81160,3, 0x8a81170,3, 0x8a81180,3, 0x8a81190,3, 0x8a811a0,3, 0x8a811b0,3, 0x8a811c0,3, 0x8a811d0,3, 0x8a811e0,3, 0x8a811f0,3, 0x8a81200,3, 0x8a81210,3, 0x8a81220,3, 0x8a81230,3, 0x8a81240,3, 0x8a81250,3, 0x8a81260,3, 0x8a81270,3, 0x8a81280,3, 0x8a81290,3, 0x8a812a0,3, 0x8a812b0,3, 0x8a812c0,3, 0x8a812d0,3, 0x8a812e0,3, 0x8a812f0,3, 0x8a81300,3, 0x8a81310,3, 0x8a81320,3, 0x8a81330,3, 0x8a81340,3, 0x8a81350,3, 0x8a81360,3, 0x8a81370,3, 0x8a81380,3, 0x8a81390,3, 0x8a813a0,3, 0x8a813b0,3, 0x8a813c0,3, 0x8a813d0,3, 0x8a813e0,3, 0x8a813f0,3, 0x8a81400,3, 0x8a81410,3, 0x8a81420,3, 0x8a81430,3, 0x8a81440,3, 0x8a81450,3, 0x8a81460,3, 0x8a81470,3, 0x8a81480,3, 0x8a81490,3, 0x8a814a0,3, 0x8a814b0,3, 0x8a814c0,3, 0x8a814d0,3, 0x8a814e0,3, 0x8a814f0,3, 0x8a81500,3, 0x8a81510,3, 0x8a81520,3, 0x8a81530,3, 0x8a81540,3, 0x8a81550,3, 0x8a81560,3, 0x8a81570,3, 0x8a81580,3, 0x8a81590,3, 0x8a815a0,3, 0x8a815b0,3, 0x8a815c0,3, 0x8a815d0,3, 0x8a815e0,3, 0x8a815f0,3, 0x8a81600,3, 0x8a81610,3, 0x8a81620,3, 0x8a81630,3, 0x8a81640,3, 0x8a81650,3, 0x8a81660,3, 0x8a81670,3, 0x8a81680,3, 0x8a81690,3, 0x8a816a0,3, 0x8a816b0,3, 0x8a816c0,3, 0x8a816d0,3, 0x8a816e0,3, 0x8a816f0,3, 0x8a81700,3, 0x8a81710,3, 0x8a81720,3, 0x8a81730,3, 0x8a81740,3, 0x8a81750,3, 0x8a81760,3, 0x8a81770,3, 0x8a81780,3, 0x8a81790,3, 0x8a817a0,3, 0x8a817b0,3, 0x8a817c0,3, 0x8a817d0,3, 0x8a817e0,3, 0x8a817f0,3, 0x8a81800,3, 0x8a81810,3, 0x8a81820,3, 0x8a81830,3, 0x8a81840,3, 0x8a81850,3, 0x8a81860,3, 0x8a81870,3, 0x8a81880,3, 0x8a81890,3, 0x8a818a0,3, 0x8a818b0,3, 0x8a818c0,3, 0x8a818d0,3, 0x8a818e0,3, 0x8a818f0,3, 0x8a81900,3, 0x8a81910,3, 0x8a81920,3, 0x8a81930,3, 0x8a81940,3, 0x8a81950,3, 0x8a81960,3, 0x8a81970,3, 0x8a81980,3, 0x8a81990,3, 0x8a819a0,3, 0x8a819b0,3, 0x8a819c0,3, 0x8a819d0,3, 0x8a819e0,3, 0x8a819f0,3, 0x8a81a00,3, 0x8a81a10,3, 0x8a81a20,3, 0x8a81a30,3, 0x8a81a40,3, 0x8a81a50,3, 0x8a81a60,3, 0x8a81a70,3, 0x8a81a80,3, 0x8a81a90,3, 0x8a81aa0,3, 0x8a81ab0,3, 0x8a81ac0,3, 0x8a81ad0,3, 0x8a81ae0,3, 0x8a81af0,3, 0x8a81b00,3, 0x8a81b10,3, 0x8a81b20,3, 0x8a81b30,3, 0x8a81b40,3, 0x8a81b50,3, 0x8a81b60,3, 0x8a81b70,3, 0x8a81b80,3, 0x8a81b90,3, 0x8a81ba0,3, 0x8a81bb0,3, 0x8a81bc0,3, 0x8a81bd0,3, 0x8a81be0,3, 0x8a81bf0,3, 0x8a81c00,3, 0x8a81c10,3, 0x8a81c20,3, 0x8a81c30,3, 0x8a81c40,3, 0x8a81c50,3, 0x8a81c60,3, 0x8a81c70,3, 0x8a81c80,3, 0x8a81c90,3, 0x8a81ca0,3, 0x8a81cb0,3, 0x8a81cc0,3, 0x8a81cd0,3, 0x8a81ce0,3, 0x8a81cf0,3, 0x8a81d00,3, 0x8a81d10,3, 0x8a81d20,3, 0x8a81d30,3, 0x8a81d40,3, 0x8a81d50,3, 0x8a81d60,3, 0x8a81d70,3, 0x8a81d80,3, 0x8a81d90,3, 0x8a81da0,3, 0x8a81db0,3, 0x8a81dc0,3, 0x8a81dd0,3, 0x8a81de0,3, 0x8a81df0,3, 0x8a81e00,3, 0x8a81e10,3, 0x8a81e20,3, 0x8a81e30,3, 0x8a81e40,3, 0x8a81e50,3, 0x8a81e60,3, 0x8a81e70,3, 0x8a81e80,3, 0x8a81e90,3, 0x8a81ea0,3, 0x8a81eb0,3, 0x8a81ec0,3, 0x8a81ed0,3, 0x8a81ee0,3, 0x8a81ef0,3, 0x8a81f00,3, 0x8a81f10,3, 0x8a81f20,3, 0x8a81f30,3, 0x8a81f40,3, 0x8a81f50,3, 0x8a81f60,3, 0x8a81f70,3, 0x8a81f80,3, 0x8a81f90,3, 0x8a81fa0,3, 0x8a81fb0,3, 0x8a81fc0,3, 0x8a81fd0,3, 0x8a81fe0,3, 0x8a81ff0,3, 0x8a82000,3, 0x8a82010,3, 0x8a82020,3, 0x8a82030,3, 0x8a82040,3, 0x8a82050,3, 0x8a82060,3, 0x8a82070,3, 0x8a82080,3, 0x8a82090,3, 0x8a820a0,3, 0x8a820b0,3, 0x8a820c0,3, 0x8a820d0,3, 0x8a820e0,3, 0x8a820f0,3, 0x8a82100,3, 0x8a82110,3, 0x8a82120,3, 0x8a82130,3, 0x8a82140,3, 0x8a82150,3, 0x8a82160,3, 0x8a82170,3, 0x8a82180,3, 0x8a82190,3, 0x8a821a0,3, 0x8a821b0,3, 0x8a821c0,3, 0x8a821d0,3, 0x8a821e0,3, 0x8a821f0,3, 0x8a82200,3, 0x8a82210,3, 0x8a82220,3, 0x8a82230,3, 0x8a82240,3, 0x8a82250,3, 0x8a82260,3, 0x8a82270,3, 0x8a82280,3, 0x8a82290,3, 0x8a822a0,3, 0x8a822b0,3, 0x8a822c0,3, 0x8a822d0,3, 0x8a822e0,3, 0x8a822f0,3, 0x8a82300,3, 0x8a82310,3, 0x8a82320,3, 0x8a82330,3, 0x8a82340,3, 0x8a82350,3, 0x8a82360,3, 0x8a82370,3, 0x8a82380,3, 0x8a82390,3, 0x8a823a0,3, 0x8a823b0,3, 0x8a823c0,3, 0x8a823d0,3, 0x8a823e0,3, 0x8a823f0,3, 0x8a82400,3, 0x8a82410,3, 0x8a82420,3, 0x8a82430,3, 0x8a82440,3, 0x8a82450,3, 0x8a82460,3, 0x8a82470,3, 0x8a82480,3, 0x8a82490,3, 0x8a824a0,3, 0x8a824b0,3, 0x8a824c0,3, 0x8a824d0,3, 0x8a824e0,3, 0x8a824f0,3, 0x8a82500,3, 0x8a82510,3, 0x8a82520,3, 0x8a82530,3, 0x8a82540,3, 0x8a82550,3, 0x8a82560,3, 0x8a82570,3, 0x8a82580,3, 0x8a82590,3, 0x8a825a0,3, 0x8a825b0,3, 0x8a825c0,3, 0x8a825d0,3, 0x8a825e0,3, 0x8a825f0,3, 0x8a82600,3, 0x8a82610,3, 0x8a82620,3, 0x8a82630,3, 0x8a82640,3, 0x8a82650,3, 0x8a82660,3, 0x8a82670,3, 0x8a82680,3, 0x8a82690,3, 0x8a826a0,3, 0x8a826b0,3, 0x8a826c0,3, 0x8a826d0,3, 0x8a826e0,3, 0x8a826f0,3, 0x8a82700,3, 0x8a82710,3, 0x8a82720,3, 0x8a82730,3, 0x8a82740,3, 0x8a82750,3, 0x8a82760,3, 0x8a82770,3, 0x8a82780,3, 0x8a82790,3, 0x8a827a0,3, 0x8a827b0,3, 0x8a827c0,3, 0x8a827d0,3, 0x8a827e0,3, 0x8a827f0,3, 0x8a82800,3, 0x8a82810,3, 0x8a82820,3, 0x8a82830,3, 0x8a82840,3, 0x8a82850,3, 0x8a82860,3, 0x8a82870,3, 0x8a82880,3, 0x8a82890,3, 0x8a828a0,3, 0x8a828b0,3, 0x8a828c0,3, 0x8a828d0,3, 0x8a828e0,3, 0x8a828f0,3, 0x8a82900,3, 0x8a82910,3, 0x8a82920,3, 0x8a82930,3, 0x8a82940,3, 0x8a82950,3, 0x8a82960,3, 0x8a82970,3, 0x8a82980,3, 0x8a82990,3, 0x8a829a0,3, 0x8a829b0,3, 0x8a829c0,3, 0x8a829d0,3, 0x8a829e0,3, 0x8a829f0,3, 0x8a82a00,3, 0x8a82a10,3, 0x8a82a20,3, 0x8a82a30,3, 0x8a82a40,3, 0x8a82a50,3, 0x8a82a60,3, 0x8a82a70,3, 0x8a82a80,3, 0x8a82a90,3, 0x8a82aa0,3, 0x8a82ab0,3, 0x8a82ac0,3, 0x8a82ad0,3, 0x8a82ae0,3, 0x8a82af0,3, 0x8a82b00,3, 0x8a82b10,3, 0x8a82b20,3, 0x8a82b30,3, 0x8a82b40,3, 0x8a82b50,3, 0x8a82b60,3, 0x8a82b70,3, 0x8a82b80,3, 0x8a82b90,3, 0x8a82ba0,3, 0x8a82bb0,3, 0x8a82bc0,3, 0x8a82bd0,3, 0x8a82be0,3, 0x8a82bf0,3, 0x8a82c00,3, 0x8a82c10,3, 0x8a82c20,3, 0x8a82c30,3, 0x8a82c40,3, 0x8a82c50,3, 0x8a82c60,3, 0x8a82c70,3, 0x8a82c80,3, 0x8a82c90,3, 0x8a82ca0,3, 0x8a82cb0,3, 0x8a82cc0,3, 0x8a82cd0,3, 0x8a82ce0,3, 0x8a82cf0,3, 0x8a82d00,3, 0x8a82d10,3, 0x8a82d20,3, 0x8a82d30,3, 0x8a82d40,3, 0x8a82d50,3, 0x8a82d60,3, 0x8a82d70,3, 0x8a82d80,3, 0x8a82d90,3, 0x8a82da0,3, 0x8a82db0,3, 0x8a82dc0,3, 0x8a82dd0,3, 0x8a82de0,3, 0x8a82df0,3, 0x8a82e00,3, 0x8a82e10,3, 0x8a82e20,3, 0x8a82e30,3, 0x8a82e40,3, 0x8a82e50,3, 0x8a82e60,3, 0x8a82e70,3, 0x8a82e80,3, 0x8a82e90,3, 0x8a82ea0,3, 0x8a82eb0,3, 0x8a82ec0,3, 0x8a82ed0,3, 0x8a82ee0,3, 0x8a82ef0,3, 0x8a82f00,3, 0x8a82f10,3, 0x8a82f20,3, 0x8a82f30,3, 0x8a82f40,3, 0x8a82f50,3, 0x8a82f60,3, 0x8a82f70,3, 0x8a82f80,3, 0x8a82f90,3, 0x8a82fa0,3, 0x8a82fb0,3, 0x8a82fc0,3, 0x8a82fd0,3, 0x8a82fe0,3, 0x8a82ff0,3, 0x8a83000,3, 0x8a83010,3, 0x8a83020,3, 0x8a83030,3, 0x8a83040,3, 0x8a83050,3, 0x8a83060,3, 0x8a83070,3, 0x8a83080,3, 0x8a83090,3, 0x8a830a0,3, 0x8a830b0,3, 0x8a830c0,3, 0x8a830d0,3, 0x8a830e0,3, 0x8a830f0,3, 0x8a83100,3, 0x8a83110,3, 0x8a83120,3, 0x8a83130,3, 0x8a83140,3, 0x8a83150,3, 0x8a83160,3, 0x8a83170,3, 0x8a83180,3, 0x8a83190,3, 0x8a831a0,3, 0x8a831b0,3, 0x8a831c0,3, 0x8a831d0,3, 0x8a831e0,3, 0x8a831f0,3, 0x8a83200,3, 0x8a83210,3, 0x8a83220,3, 0x8a83230,3, 0x8a83240,3, 0x8a83250,3, 0x8a83260,3, 0x8a83270,3, 0x8a83280,3, 0x8a83290,3, 0x8a832a0,3, 0x8a832b0,3, 0x8a832c0,3, 0x8a832d0,3, 0x8a832e0,3, 0x8a832f0,3, 0x8a83300,3, 0x8a83310,3, 0x8a83320,3, 0x8a83330,3, 0x8a83340,3, 0x8a83350,3, 0x8a83360,3, 0x8a83370,3, 0x8a83380,3, 0x8a83390,3, 0x8a833a0,3, 0x8a833b0,3, 0x8a833c0,3, 0x8a833d0,3, 0x8a833e0,3, 0x8a833f0,3, 0x8a83400,3, 0x8a83410,3, 0x8a83420,3, 0x8a83430,3, 0x8a83440,3, 0x8a83450,3, 0x8a83460,3, 0x8a83470,3, 0x8a83480,3, 0x8a83490,3, 0x8a834a0,3, 0x8a834b0,3, 0x8a834c0,3, 0x8a834d0,3, 0x8a834e0,3, 0x8a834f0,3, 0x8a83500,3, 0x8a83510,3, 0x8a83520,3, 0x8a83530,3, 0x8a83540,3, 0x8a83550,3, 0x8a83560,3, 0x8a83570,3, 0x8a83580,3, 0x8a83590,3, 0x8a835a0,3, 0x8a835b0,3, 0x8a835c0,3, 0x8a835d0,3, 0x8a835e0,3, 0x8a835f0,3, 0x8a83600,3, 0x8a83610,3, 0x8a83620,3, 0x8a83630,3, 0x8a83640,3, 0x8a83650,3, 0x8a83660,3, 0x8a83670,3, 0x8a83680,3, 0x8a83690,3, 0x8a836a0,3, 0x8a836b0,3, 0x8a836c0,3, 0x8a836d0,3, 0x8a836e0,3, 0x8a836f0,3, 0x8a83700,3, 0x8a83710,3, 0x8a83720,3, 0x8a83730,3, 0x8a83740,3, 0x8a83750,3, 0x8a83760,3, 0x8a83770,3, 0x8a83780,3, 0x8a83790,3, 0x8a837a0,3, 0x8a837b0,3, 0x8a837c0,3, 0x8a837d0,3, 0x8a837e0,3, 0x8a837f0,3, 0x8a83800,3, 0x8a83810,3, 0x8a83820,3, 0x8a83830,3, 0x8a83840,3, 0x8a83850,3, 0x8a83860,3, 0x8a83870,3, 0x8a83880,3, 0x8a83890,3, 0x8a838a0,3, 0x8a838b0,3, 0x8a838c0,3, 0x8a838d0,3, 0x8a838e0,3, 0x8a838f0,3, 0x8a83900,3, 0x8a83910,3, 0x8a83920,3, 0x8a83930,3, 0x8a83940,3, 0x8a83950,3, 0x8a83960,3, 0x8a83970,3, 0x8a83980,3, 0x8a83990,3, 0x8a839a0,3, 0x8a839b0,3, 0x8a839c0,3, 0x8a839d0,3, 0x8a839e0,3, 0x8a839f0,3, 0x8a83a00,3, 0x8a83a10,3, 0x8a83a20,3, 0x8a83a30,3, 0x8a83a40,3, 0x8a83a50,3, 0x8a83a60,3, 0x8a83a70,3, 0x8a83a80,3, 0x8a83a90,3, 0x8a83aa0,3, 0x8a83ab0,3, 0x8a83ac0,3, 0x8a83ad0,3, 0x8a83ae0,3, 0x8a83af0,3, 0x8a83b00,3, 0x8a83b10,3, 0x8a83b20,3, 0x8a83b30,3, 0x8a83b40,3, 0x8a83b50,3, 0x8a83b60,3, 0x8a83b70,3, 0x8a83b80,3, 0x8a83b90,3, 0x8a83ba0,3, 0x8a83bb0,3, 0x8a83bc0,3, 0x8a83bd0,3, 0x8a83be0,3, 0x8a83bf0,3, 0x8a83c00,3, 0x8a83c10,3, 0x8a83c20,3, 0x8a83c30,3, 0x8a83c40,3, 0x8a83c50,3, 0x8a83c60,3, 0x8a83c70,3, 0x8a83c80,3, 0x8a83c90,3, 0x8a83ca0,3, 0x8a83cb0,3, 0x8a83cc0,3, 0x8a83cd0,3, 0x8a83ce0,3, 0x8a83cf0,3, 0x8a83d00,3, 0x8a83d10,3, 0x8a83d20,3, 0x8a83d30,3, 0x8a83d40,3, 0x8a83d50,3, 0x8a83d60,3, 0x8a83d70,3, 0x8a83d80,3, 0x8a83d90,3, 0x8a83da0,3, 0x8a83db0,3, 0x8a83dc0,3, 0x8a83dd0,3, 0x8a83de0,3, 0x8a83df0,3, 0x8a83e00,3, 0x8a83e10,3, 0x8a83e20,3, 0x8a83e30,3, 0x8a83e40,3, 0x8a83e50,3, 0x8a83e60,3, 0x8a83e70,3, 0x8a83e80,3, 0x8a83e90,3, 0x8a83ea0,3, 0x8a83eb0,3, 0x8a83ec0,3, 0x8a83ed0,3, 0x8a83ee0,3, 0x8a83ef0,3, 0x8a83f00,3, 0x8a83f10,3, 0x8a83f20,3, 0x8a83f30,3, 0x8a83f40,3, 0x8a83f50,3, 0x8a83f60,3, 0x8a83f70,3, 0x8a83f80,3, 0x8a83f90,3, 0x8a83fa0,3, 0x8a83fb0,3, 0x8a83fc0,3, 0x8a83fd0,3, 0x8a83fe0,3, 0x8a83ff0,3, 0x8a84000,3, 0x8a84010,3, 0x8a84020,3, 0x8a84030,3, 0x8a84040,3, 0x8a84050,3, 0x8a84060,3, 0x8a84070,3, 0x8a84080,3, 0x8a84090,3, 0x8a840a0,3, 0x8a840b0,3, 0x8a840c0,3, 0x8a840d0,3, 0x8a840e0,3, 0x8a840f0,3, 0x8a84100,3, 0x8a84110,3, 0x8a84120,3, 0x8a84130,3, 0x8a84140,3, 0x8a84150,3, 0x8a84160,3, 0x8a84170,3, 0x8a84180,3, 0x8a84190,3, 0x8a841a0,3, 0x8a841b0,3, 0x8a841c0,3, 0x8a841d0,3, 0x8a841e0,3, 0x8a841f0,3, 0x8a84200,3, 0x8a84210,3, 0x8a84220,3, 0x8a84230,3, 0x8a84240,3, 0x8a84250,3, 0x8a84260,3, 0x8a84270,3, 0x8a84280,3, 0x8a84290,3, 0x8a842a0,3, 0x8a842b0,3, 0x8a842c0,3, 0x8a842d0,3, 0x8a842e0,3, 0x8a842f0,3, 0x8a84300,3, 0x8a84310,3, 0x8a84320,3, 0x8a84330,3, 0x8a84340,3, 0x8a84350,3, 0x8a84360,3, 0x8a84370,3, 0x8a84380,3, 0x8a84390,3, 0x8a843a0,3, 0x8a843b0,3, 0x8a843c0,3, 0x8a843d0,3, 0x8a843e0,3, 0x8a843f0,3, 0x8a84400,3, 0x8a84410,3, 0x8a84420,3, 0x8a84430,3, 0x8a84440,3, 0x8a84450,3, 0x8a84460,3, 0x8a84470,3, 0x8a84480,3, 0x8a84490,3, 0x8a844a0,3, 0x8a844b0,3, 0x8a844c0,3, 0x8a844d0,3, 0x8a844e0,3, 0x8a844f0,3, 0x8a84500,3, 0x8a84510,3, 0x8a84520,3, 0x8a84530,3, 0x8a84540,3, 0x8a84550,3, 0x8a84560,3, 0x8a84570,3, 0x8a84580,3, 0x8a84590,3, 0x8a845a0,3, 0x8a845b0,3, 0x8a845c0,3, 0x8a845d0,3, 0x8a845e0,3, 0x8a845f0,3, 0x8a84600,3, 0x8a84610,3, 0x8a84620,3, 0x8a84630,3, 0x8a84640,3, 0x8a84650,3, 0x8a84660,3, 0x8a84670,3, 0x8a84680,3, 0x8a84690,3, 0x8a846a0,3, 0x8a846b0,3, 0x8a846c0,3, 0x8a846d0,3, 0x8a846e0,3, 0x8a846f0,3, 0x8a84700,3, 0x8a84710,3, 0x8a84720,3, 0x8a84730,3, 0x8a84740,3, 0x8a84750,3, 0x8a84760,3, 0x8a84770,3, 0x8a84780,3, 0x8a84790,3, 0x8a847a0,3, 0x8a847b0,3, 0x8a847c0,3, 0x8a847d0,3, 0x8a847e0,3, 0x8a847f0,3, 0x8a84800,3, 0x8a84810,3, 0x8a84820,3, 0x8a84830,3, 0x8a84840,3, 0x8a84850,3, 0x8a84860,3, 0x8a84870,3, 0x8a84880,3, 0x8a84890,3, 0x8a848a0,3, 0x8a848b0,3, 0x8a848c0,3, 0x8a848d0,3, 0x8a848e0,3, 0x8a848f0,3, 0x8a84900,3, 0x8a84910,3, 0x8a84920,3, 0x8a84930,3, 0x8a84940,3, 0x8a84950,3, 0x8a84960,3, 0x8a84970,3, 0x8a84980,3, 0x8a84990,3, 0x8a849a0,3, 0x8a849b0,3, 0x8a849c0,3, 0x8a849d0,3, 0x8a849e0,3, 0x8a849f0,3, 0x8a84a00,3, 0x8a84a10,3, 0x8a84a20,3, 0x8a84a30,3, 0x8a84a40,3, 0x8a84a50,3, 0x8a84a60,3, 0x8a84a70,3, 0x8a84a80,3, 0x8a84a90,3, 0x8a84aa0,3, 0x8a84ab0,3, 0x8a84ac0,3, 0x8a84ad0,3, 0x8a84ae0,3, 0x8a84af0,3, 0x8a84b00,3, 0x8a84b10,3, 0x8a84b20,3, 0x8a84b30,3, 0x8a84b40,3, 0x8a84b50,3, 0x8a84b60,3, 0x8a84b70,3, 0x8a84b80,3, 0x8a84b90,3, 0x8a84ba0,3, 0x8a84bb0,3, 0x8a84bc0,3, 0x8a84bd0,3, 0x8a84be0,3, 0x8a84bf0,3, 0x8a84c00,3, 0x8a84c10,3, 0x8a84c20,3, 0x8a84c30,3, 0x8a84c40,3, 0x8a84c50,3, 0x8a84c60,3, 0x8a84c70,3, 0x8a84c80,3, 0x8a84c90,3, 0x8a84ca0,3, 0x8a84cb0,3, 0x8a84cc0,3, 0x8a84cd0,3, 0x8a84ce0,3, 0x8a84cf0,3, 0x8a84d00,3, 0x8a84d10,3, 0x8a84d20,3, 0x8a84d30,3, 0x8a84d40,3, 0x8a84d50,3, 0x8a84d60,3, 0x8a84d70,3, 0x8a84d80,3, 0x8a84d90,3, 0x8a84da0,3, 0x8a84db0,3, 0x8a84dc0,3, 0x8a84dd0,3, 0x8a84de0,3, 0x8a84df0,3, 0x8a84e00,3, 0x8a84e10,3, 0x8a84e20,3, 0x8a84e30,3, 0x8a84e40,3, 0x8a84e50,3, 0x8a84e60,3, 0x8a84e70,3, 0x8a84e80,3, 0x8a84e90,3, 0x8a84ea0,3, 0x8a84eb0,3, 0x8a84ec0,3, 0x8a84ed0,3, 0x8a84ee0,3, 0x8a84ef0,3, 0x8a84f00,3, 0x8a84f10,3, 0x8a84f20,3, 0x8a84f30,3, 0x8a84f40,3, 0x8a84f50,3, 0x8a84f60,3, 0x8a84f70,3, 0x8a84f80,3, 0x8a84f90,3, 0x8a84fa0,3, 0x8a84fb0,3, 0x8a84fc0,3, 0x8a84fd0,3, 0x8a84fe0,3, 0x8a84ff0,3, 0x8a85000,3, 0x8a85010,3, 0x8a85020,3, 0x8a85030,3, 0x8a85040,3, 0x8a85050,3, 0x8a85060,3, 0x8a85070,3, 0x8a85080,3, 0x8a85090,3, 0x8a850a0,3, 0x8a850b0,3, 0x8a850c0,3, 0x8a850d0,3, 0x8a850e0,3, 0x8a850f0,3, 0x8a85100,3, 0x8a85110,3, 0x8a85120,3, 0x8a85130,3, 0x8a85140,3, 0x8a85150,3, 0x8a85160,3, 0x8a85170,3, 0x8a85180,3, 0x8a85190,3, 0x8a851a0,3, 0x8a851b0,3, 0x8a851c0,3, 0x8a851d0,3, 0x8a851e0,3, 0x8a851f0,3, 0x8a85200,3, 0x8a85210,3, 0x8a85220,3, 0x8a85230,3, 0x8a85240,3, 0x8a85250,3, 0x8a85260,3, 0x8a85270,3, 0x8a85280,3, 0x8a85290,3, 0x8a852a0,3, 0x8a852b0,3, 0x8a852c0,3, 0x8a852d0,3, 0x8a852e0,3, 0x8a852f0,3, 0x8a85300,3, 0x8a85310,3, 0x8a85320,3, 0x8a85330,3, 0x8a85340,3, 0x8a85350,3, 0x8a85360,3, 0x8a85370,3, 0x8a85380,3, 0x8a85390,3, 0x8a853a0,3, 0x8a853b0,3, 0x8a853c0,3, 0x8a853d0,3, 0x8a853e0,3, 0x8a853f0,3, 0x8a85400,3, 0x8a85410,3, 0x8a85420,3, 0x8a85430,3, 0x8a85440,3, 0x8a85450,3, 0x8a85460,3, 0x8a85470,3, 0x8a85480,3, 0x8a85490,3, 0x8a854a0,3, 0x8a854b0,3, 0x8a854c0,3, 0x8a854d0,3, 0x8a854e0,3, 0x8a854f0,3, 0x8a85500,3, 0x8a85510,3, 0x8a85520,3, 0x8a85530,3, 0x8a85540,3, 0x8a85550,3, 0x8a85560,3, 0x8a85570,3, 0x8a85580,3, 0x8a85590,3, 0x8a855a0,3, 0x8a855b0,3, 0x8a855c0,3, 0x8a855d0,3, 0x8a855e0,3, 0x8a855f0,3, 0x8a85600,3, 0x8a85610,3, 0x8a85620,3, 0x8a85630,3, 0x8a85640,3, 0x8a85650,3, 0x8a85660,3, 0x8a85670,3, 0x8a85680,3, 0x8a85690,3, 0x8a856a0,3, 0x8a856b0,3, 0x8a856c0,3, 0x8a856d0,3, 0x8a856e0,3, 0x8a856f0,3, 0x8a85700,3, 0x8a85710,3, 0x8a85720,3, 0x8a85730,3, 0x8a85740,3, 0x8a85750,3, 0x8a85760,3, 0x8a85770,3, 0x8a85780,3, 0x8a85790,3, 0x8a857a0,3, 0x8a857b0,3, 0x8a857c0,3, 0x8a857d0,3, 0x8a857e0,3, 0x8a857f0,3, 0x8a85800,3, 0x8a85810,3, 0x8a85820,3, 0x8a85830,3, 0x8a85840,3, 0x8a85850,3, 0x8a85860,3, 0x8a85870,3, 0x8a85880,3, 0x8a85890,3, 0x8a858a0,3, 0x8a858b0,3, 0x8a858c0,3, 0x8a858d0,3, 0x8a858e0,3, 0x8a858f0,3, 0x8a85900,3, 0x8a85910,3, 0x8a85920,3, 0x8a85930,3, 0x8a85940,3, 0x8a85950,3, 0x8a85960,3, 0x8a85970,3, 0x8a85980,3, 0x8a85990,3, 0x8a859a0,3, 0x8a859b0,3, 0x8a859c0,3, 0x8a859d0,3, 0x8a859e0,3, 0x8a859f0,3, 0x8a85a00,3, 0x8a85a10,3, 0x8a85a20,3, 0x8a85a30,3, 0x8a85a40,3, 0x8a85a50,3, 0x8a85a60,3, 0x8a85a70,3, 0x8a85a80,3, 0x8a85a90,3, 0x8a85aa0,3, 0x8a85ab0,3, 0x8a85ac0,3, 0x8a85ad0,3, 0x8a85ae0,3, 0x8a85af0,3, 0x8a85b00,3, 0x8a85b10,3, 0x8a85b20,3, 0x8a85b30,3, 0x8a85b40,3, 0x8a85b50,3, 0x8a85b60,3, 0x8a85b70,3, 0x8a85b80,3, 0x8a85b90,3, 0x8a85ba0,3, 0x8a85bb0,3, 0x8a85bc0,3, 0x8a85bd0,3, 0x8a85be0,3, 0x8a85bf0,3, 0x8a85c00,3, 0x8a85c10,3, 0x8a85c20,3, 0x8a85c30,3, 0x8a85c40,3, 0x8a85c50,3, 0x8a85c60,3, 0x8a85c70,3, 0x8a85c80,3, 0x8a85c90,3, 0x8a85ca0,3, 0x8a85cb0,3, 0x8a85cc0,3, 0x8a85cd0,3, 0x8a85ce0,3, 0x8a85cf0,3, 0x8a85d00,3, 0x8a85d10,3, 0x8a85d20,3, 0x8a85d30,3, 0x8a85d40,3, 0x8a85d50,3, 0x8a85d60,3, 0x8a85d70,3, 0x8a85d80,3, 0x8a85d90,3, 0x8a85da0,3, 0x8a85db0,3, 0x8a85dc0,3, 0x8a85dd0,3, 0x8a85de0,3, 0x8a85df0,3, 0x8a85e00,3, 0x8a85e10,3, 0x8a85e20,3, 0x8a85e30,3, 0x8a85e40,3, 0x8a85e50,3, 0x8a85e60,3, 0x8a85e70,3, 0x8a85e80,3, 0x8a85e90,3, 0x8a85ea0,3, 0x8a85eb0,3, 0x8a85ec0,3, 0x8a85ed0,3, 0x8a85ee0,3, 0x8a85ef0,3, 0x8a85f00,3, 0x8a85f10,3, 0x8a85f20,3, 0x8a85f30,3, 0x8a85f40,3, 0x8a85f50,3, 0x8a85f60,3, 0x8a85f70,3, 0x8a85f80,3, 0x8a85f90,3, 0x8a85fa0,3, 0x8a85fb0,3, 0x8a85fc0,3, 0x8a85fd0,3, 0x8a85fe0,3, 0x8a85ff0,3, 0x8a86000,3, 0x8a86010,3, 0x8a86020,3, 0x8a86030,3, 0x8a86040,3, 0x8a86050,3, 0x8a86060,3, 0x8a86070,3, 0x8a86080,3, 0x8a86090,3, 0x8a860a0,3, 0x8a860b0,3, 0x8a860c0,3, 0x8a860d0,3, 0x8a860e0,3, 0x8a860f0,3, 0x8a86100,3, 0x8a86110,3, 0x8a86120,3, 0x8a86130,3, 0x8a86140,3, 0x8a86150,3, 0x8a86160,3, 0x8a86170,3, 0x8a86180,3, 0x8a86190,3, 0x8a861a0,3, 0x8a861b0,3, 0x8a861c0,3, 0x8a861d0,3, 0x8a861e0,3, 0x8a861f0,3, 0x8a86200,3, 0x8a86210,3, 0x8a86220,3, 0x8a86230,3, 0x8a86240,3, 0x8a86250,3, 0x8a86260,3, 0x8a86270,3, 0x8a86280,3, 0x8a86290,3, 0x8a862a0,3, 0x8a862b0,3, 0x8a862c0,3, 0x8a862d0,3, 0x8a862e0,3, 0x8a862f0,3, 0x8a86300,3, 0x8a86310,3, 0x8a86320,3, 0x8a86330,3, 0x8a86340,3, 0x8a86350,3, 0x8a86360,3, 0x8a86370,3, 0x8a86380,3, 0x8a86390,3, 0x8a863a0,3, 0x8a863b0,3, 0x8a863c0,3, 0x8a863d0,3, 0x8a863e0,3, 0x8a863f0,3, 0x8a86400,3, 0x8a86410,3, 0x8a86420,3, 0x8a86430,3, 0x8a86440,3, 0x8a86450,3, 0x8a86460,3, 0x8a86470,3, 0x8a86480,3, 0x8a86490,3, 0x8a864a0,3, 0x8a864b0,3, 0x8a864c0,3, 0x8a864d0,3, 0x8a864e0,3, 0x8a864f0,3, 0x8a86500,3, 0x8a86510,3, 0x8a86520,3, 0x8a86530,3, 0x8a86540,3, 0x8a86550,3, 0x8a86560,3, 0x8a86570,3, 0x8a86580,3, 0x8a86590,3, 0x8a865a0,3, 0x8a865b0,3, 0x8a865c0,3, 0x8a865d0,3, 0x8a865e0,3, 0x8a865f0,3, 0x8a86600,3, 0x8a86610,3, 0x8a86620,3, 0x8a86630,3, 0x8a86640,3, 0x8a86650,3, 0x8a86660,3, 0x8a86670,3, 0x8a86680,3, 0x8a86690,3, 0x8a866a0,3, 0x8a866b0,3, 0x8a866c0,3, 0x8a866d0,3, 0x8a866e0,3, 0x8a866f0,3, 0x8a86700,3, 0x8a86710,3, 0x8a86720,3, 0x8a86730,3, 0x8a86740,3, 0x8a86750,3, 0x8a86760,3, 0x8a86770,3, 0x8a86780,3, 0x8a86790,3, 0x8a867a0,3, 0x8a867b0,3, 0x8a867c0,3, 0x8a867d0,3, 0x8a867e0,3, 0x8a867f0,3, 0x8a86800,3, 0x8a86810,3, 0x8a86820,3, 0x8a86830,3, 0x8a86840,3, 0x8a86850,3, 0x8a86860,3, 0x8a86870,3, 0x8a86880,3, 0x8a86890,3, 0x8a868a0,3, 0x8a868b0,3, 0x8a868c0,3, 0x8a868d0,3, 0x8a868e0,3, 0x8a868f0,3, 0x8a86900,3, 0x8a86910,3, 0x8a86920,3, 0x8a86930,3, 0x8a86940,3, 0x8a86950,3, 0x8a86960,3, 0x8a86970,3, 0x8a86980,3, 0x8a86990,3, 0x8a869a0,3, 0x8a869b0,3, 0x8a869c0,3, 0x8a869d0,3, 0x8a869e0,3, 0x8a869f0,3, 0x8a86a00,3, 0x8a86a10,3, 0x8a86a20,3, 0x8a86a30,3, 0x8a86a40,3, 0x8a86a50,3, 0x8a86a60,3, 0x8a86a70,3, 0x8a86a80,3, 0x8a86a90,3, 0x8a86aa0,3, 0x8a86ab0,3, 0x8a86ac0,3, 0x8a86ad0,3, 0x8a86ae0,3, 0x8a86af0,3, 0x8a86b00,3, 0x8a86b10,3, 0x8a86b20,3, 0x8a86b30,3, 0x8a86b40,3, 0x8a86b50,3, 0x8a86b60,3, 0x8a86b70,3, 0x8a86b80,3, 0x8a86b90,3, 0x8a86ba0,3, 0x8a86bb0,3, 0x8a86bc0,3, 0x8a86bd0,3, 0x8a86be0,3, 0x8a86bf0,3, 0x8a86c00,3, 0x8a86c10,3, 0x8a86c20,3, 0x8a86c30,3, 0x8a86c40,3, 0x8a86c50,3, 0x8a86c60,3, 0x8a86c70,3, 0x8a86c80,3, 0x8a86c90,3, 0x8a86ca0,3, 0x8a86cb0,3, 0x8a86cc0,3, 0x8a86cd0,3, 0x8a86ce0,3, 0x8a86cf0,3, 0x8a86d00,3, 0x8a86d10,3, 0x8a86d20,3, 0x8a86d30,3, 0x8a86d40,3, 0x8a86d50,3, 0x8a86d60,3, 0x8a86d70,3, 0x8a86d80,3, 0x8a86d90,3, 0x8a86da0,3, 0x8a86db0,3, 0x8a86dc0,3, 0x8a86dd0,3, 0x8a86de0,3, 0x8a86df0,3, 0x8a86e00,3, 0x8a86e10,3, 0x8a86e20,3, 0x8a86e30,3, 0x8a86e40,3, 0x8a86e50,3, 0x8a86e60,3, 0x8a86e70,3, 0x8a86e80,3, 0x8a86e90,3, 0x8a86ea0,3, 0x8a86eb0,3, 0x8a86ec0,3, 0x8a86ed0,3, 0x8a86ee0,3, 0x8a86ef0,3, 0x8a86f00,3, 0x8a86f10,3, 0x8a86f20,3, 0x8a86f30,3, 0x8a86f40,3, 0x8a86f50,3, 0x8a86f60,3, 0x8a86f70,3, 0x8a86f80,3, 0x8a86f90,3, 0x8a86fa0,3, 0x8a86fb0,3, 0x8a86fc0,3, 0x8a86fd0,3, 0x8a86fe0,3, 0x8a86ff0,3, 0x8a87000,3, 0x8a87010,3, 0x8a87020,3, 0x8a87030,3, 0x8a87040,3, 0x8a87050,3, 0x8a87060,3, 0x8a87070,3, 0x8a87080,3, 0x8a87090,3, 0x8a870a0,3, 0x8a870b0,3, 0x8a870c0,3, 0x8a870d0,3, 0x8a870e0,3, 0x8a870f0,3, 0x8a87100,3, 0x8a87110,3, 0x8a87120,3, 0x8a87130,3, 0x8a87140,3, 0x8a87150,3, 0x8a87160,3, 0x8a87170,3, 0x8a87180,3, 0x8a87190,3, 0x8a871a0,3, 0x8a871b0,3, 0x8a871c0,3, 0x8a871d0,3, 0x8a871e0,3, 0x8a871f0,3, 0x8a87200,3, 0x8a87210,3, 0x8a87220,3, 0x8a87230,3, 0x8a87240,3, 0x8a87250,3, 0x8a87260,3, 0x8a87270,3, 0x8a87280,3, 0x8a87290,3, 0x8a872a0,3, 0x8a872b0,3, 0x8a872c0,3, 0x8a872d0,3, 0x8a872e0,3, 0x8a872f0,3, 0x8a87300,3, 0x8a87310,3, 0x8a87320,3, 0x8a87330,3, 0x8a87340,3, 0x8a87350,3, 0x8a87360,3, 0x8a87370,3, 0x8a87380,3, 0x8a87390,3, 0x8a873a0,3, 0x8a873b0,3, 0x8a873c0,3, 0x8a873d0,3, 0x8a873e0,3, 0x8a873f0,3, 0x8a87400,3, 0x8a87410,3, 0x8a87420,3, 0x8a87430,3, 0x8a87440,3, 0x8a87450,3, 0x8a87460,3, 0x8a87470,3, 0x8a87480,3, 0x8a87490,3, 0x8a874a0,3, 0x8a874b0,3, 0x8a874c0,3, 0x8a874d0,3, 0x8a874e0,3, 0x8a874f0,3, 0x8a87500,3, 0x8a87510,3, 0x8a87520,3, 0x8a87530,3, 0x8a87540,3, 0x8a87550,3, 0x8a87560,3, 0x8a87570,3, 0x8a87580,3, 0x8a87590,3, 0x8a875a0,3, 0x8a875b0,3, 0x8a875c0,3, 0x8a875d0,3, 0x8a875e0,3, 0x8a875f0,3, 0x8a87600,3, 0x8a87610,3, 0x8a87620,3, 0x8a87630,3, 0x8a87640,3, 0x8a87650,3, 0x8a87660,3, 0x8a87670,3, 0x8a87680,3, 0x8a87690,3, 0x8a876a0,3, 0x8a876b0,3, 0x8a876c0,3, 0x8a876d0,3, 0x8a876e0,3, 0x8a876f0,3, 0x8a87700,3, 0x8a87710,3, 0x8a87720,3, 0x8a87730,3, 0x8a87740,3, 0x8a87750,3, 0x8a87760,3, 0x8a87770,3, 0x8a87780,3, 0x8a87790,3, 0x8a877a0,3, 0x8a877b0,3, 0x8a877c0,3, 0x8a877d0,3, 0x8a877e0,3, 0x8a877f0,3, 0x8a87800,3, 0x8a87810,3, 0x8a87820,3, 0x8a87830,3, 0x8a87840,3, 0x8a87850,3, 0x8a87860,3, 0x8a87870,3, 0x8a87880,3, 0x8a87890,3, 0x8a878a0,3, 0x8a878b0,3, 0x8a878c0,3, 0x8a878d0,3, 0x8a878e0,3, 0x8a878f0,3, 0x8a87900,3, 0x8a87910,3, 0x8a87920,3, 0x8a87930,3, 0x8a87940,3, 0x8a87950,3, 0x8a87960,3, 0x8a87970,3, 0x8a87980,3, 0x8a87990,3, 0x8a879a0,3, 0x8a879b0,3, 0x8a879c0,3, 0x8a879d0,3, 0x8a879e0,3, 0x8a879f0,3, 0x8a87a00,3, 0x8a87a10,3, 0x8a87a20,3, 0x8a87a30,3, 0x8a87a40,3, 0x8a87a50,3, 0x8a87a60,3, 0x8a87a70,3, 0x8a87a80,3, 0x8a87a90,3, 0x8a87aa0,3, 0x8a87ab0,3, 0x8a87ac0,3, 0x8a87ad0,3, 0x8a87ae0,3, 0x8a87af0,3, 0x8a87b00,3, 0x8a87b10,3, 0x8a87b20,3, 0x8a87b30,3, 0x8a87b40,3, 0x8a87b50,3, 0x8a87b60,3, 0x8a87b70,3, 0x8a87b80,3, 0x8a87b90,3, 0x8a87ba0,3, 0x8a87bb0,3, 0x8a87bc0,3, 0x8a87bd0,3, 0x8a87be0,3, 0x8a87bf0,3, 0x8a87c00,3, 0x8a87c10,3, 0x8a87c20,3, 0x8a87c30,3, 0x8a87c40,3, 0x8a87c50,3, 0x8a87c60,3, 0x8a87c70,3, 0x8a87c80,3, 0x8a87c90,3, 0x8a87ca0,3, 0x8a87cb0,3, 0x8a87cc0,3, 0x8a87cd0,3, 0x8a87ce0,3, 0x8a87cf0,3, 0x8a87d00,3, 0x8a87d10,3, 0x8a87d20,3, 0x8a87d30,3, 0x8a87d40,3, 0x8a87d50,3, 0x8a87d60,3, 0x8a87d70,3, 0x8a87d80,3, 0x8a87d90,3, 0x8a87da0,3, 0x8a87db0,3, 0x8a87dc0,3, 0x8a87dd0,3, 0x8a87de0,3, 0x8a87df0,3, 0x8a87e00,3, 0x8a87e10,3, 0x8a87e20,3, 0x8a87e30,3, 0x8a87e40,3, 0x8a87e50,3, 0x8a87e60,3, 0x8a87e70,3, 0x8a87e80,3, 0x8a87e90,3, 0x8a87ea0,3, 0x8a87eb0,3, 0x8a87ec0,3, 0x8a87ed0,3, 0x8a87ee0,3, 0x8a87ef0,3, 0x8a87f00,3, 0x8a87f10,3, 0x8a87f20,3, 0x8a87f30,3, 0x8a87f40,3, 0x8a87f50,3, 0x8a87f60,3, 0x8a87f70,3, 0x8a87f80,3, 0x8a87f90,3, 0x8a87fa0,3, 0x8a87fb0,3, 0x8a87fc0,3, 0x8a87fd0,3, 0x8a87fe0,3, 0x8a87ff0,3, 0x8a88000,3, 0x8a88010,3, 0x8a88020,3, 0x8a88030,3, 0x8a88040,3, 0x8a88050,3, 0x8a88060,3, 0x8a88070,3, 0x8a88080,3, 0x8a88090,3, 0x8a880a0,3, 0x8a880b0,3, 0x8a880c0,3, 0x8a880d0,3, 0x8a880e0,3, 0x8a880f0,3, 0x8a88100,3, 0x8a88110,3, 0x8a88120,3, 0x8a88130,3, 0x8a88140,3, 0x8a88150,3, 0x8a88160,3, 0x8a88170,3, 0x8a88180,3, 0x8a88190,3, 0x8a881a0,3, 0x8a881b0,3, 0x8a881c0,3, 0x8a881d0,3, 0x8a881e0,3, 0x8a881f0,3, 0x8a88200,3, 0x8a88210,3, 0x8a88220,3, 0x8a88230,3, 0x8a88240,3, 0x8a88250,3, 0x8a88260,3, 0x8a88270,3, 0x8a88280,3, 0x8a88290,3, 0x8a882a0,3, 0x8a882b0,3, 0x8a882c0,3, 0x8a882d0,3, 0x8a882e0,3, 0x8a882f0,3, 0x8a88300,3, 0x8a88310,3, 0x8a88320,3, 0x8a88330,3, 0x8a88340,3, 0x8a88350,3, 0x8a88360,3, 0x8a88370,3, 0x8a88380,3, 0x8a88390,3, 0x8a883a0,3, 0x8a883b0,3, 0x8a883c0,3, 0x8a883d0,3, 0x8a883e0,3, 0x8a883f0,3, 0x8a88400,3, 0x8a88410,3, 0x8a88420,3, 0x8a88430,3, 0x8a88440,3, 0x8a88450,3, 0x8a88460,3, 0x8a88470,3, 0x8a88480,3, 0x8a88490,3, 0x8a884a0,3, 0x8a884b0,3, 0x8a884c0,3, 0x8a884d0,3, 0x8a884e0,3, 0x8a884f0,3, 0x8a88500,3, 0x8a88510,3, 0x8a88520,3, 0x8a88530,3, 0x8a88540,3, 0x8a88550,3, 0x8a88560,3, 0x8a88570,3, 0x8a88580,3, 0x8a88590,3, 0x8a885a0,3, 0x8a885b0,3, 0x8a885c0,3, 0x8a885d0,3, 0x8a885e0,3, 0x8a885f0,3, 0x8a88600,3, 0x8a88610,3, 0x8a88620,3, 0x8a88630,3, 0x8a88640,3, 0x8a88650,3, 0x8a88660,3, 0x8a88670,3, 0x8a88680,3, 0x8a88690,3, 0x8a886a0,3, 0x8a886b0,3, 0x8a886c0,3, 0x8a886d0,3, 0x8a886e0,3, 0x8a886f0,3, 0x8a88700,3, 0x8a88710,3, 0x8a88720,3, 0x8a88730,3, 0x8a88740,3, 0x8a88750,3, 0x8a88760,3, 0x8a88770,3, 0x8a88780,3, 0x8a88790,3, 0x8a887a0,3, 0x8a887b0,3, 0x8a887c0,3, 0x8a887d0,3, 0x8a887e0,3, 0x8a887f0,3, 0x8a88800,3, 0x8a88810,3, 0x8a88820,3, 0x8a88830,3, 0x8a88840,3, 0x8a88850,3, 0x8a88860,3, 0x8a88870,3, 0x8a88880,3, 0x8a88890,3, 0x8a888a0,3, 0x8a888b0,3, 0x8a888c0,3, 0x8a888d0,3, 0x8a888e0,3, 0x8a888f0,3, 0x8a88900,3, 0x8a88910,3, 0x8a88920,3, 0x8a88930,3, 0x8a88940,3, 0x8a88950,3, 0x8a88960,3, 0x8a88970,3, 0x8a88980,3, 0x8a88990,3, 0x8a889a0,3, 0x8a889b0,3, 0x8a889c0,3, 0x8a889d0,3, 0x8a889e0,3, 0x8a889f0,3, 0x8a88a00,3, 0x8a88a10,3, 0x8a88a20,3, 0x8a88a30,3, 0x8a88a40,3, 0x8a88a50,3, 0x8a88a60,3, 0x8a88a70,3, 0x8a88a80,3, 0x8a88a90,3, 0x8a88aa0,3, 0x8a88ab0,3, 0x8a88ac0,3, 0x8a88ad0,3, 0x8a88ae0,3, 0x8a88af0,3, 0x8a88b00,3, 0x8a88b10,3, 0x8a88b20,3, 0x8a88b30,3, 0x8a88b40,3, 0x8a88b50,3, 0x8a88b60,3, 0x8a88b70,3, 0x8a88b80,3, 0x8a88b90,3, 0x8a88ba0,3, 0x8a88bb0,3, 0x8a88bc0,3, 0x8a88bd0,3, 0x8a88be0,3, 0x8a88bf0,3, 0x8a88c00,3, 0x8a88c10,3, 0x8a88c20,3, 0x8a88c30,3, 0x8a88c40,3, 0x8a88c50,3, 0x8a88c60,3, 0x8a88c70,3, 0x8a88c80,3, 0x8a88c90,3, 0x8a88ca0,3, 0x8a88cb0,3, 0x8a88cc0,3, 0x8a88cd0,3, 0x8a88ce0,3, 0x8a88cf0,3, 0x8a88d00,3, 0x8a88d10,3, 0x8a88d20,3, 0x8a88d30,3, 0x8a88d40,3, 0x8a88d50,3, 0x8a88d60,3, 0x8a88d70,3, 0x8a88d80,3, 0x8a88d90,3, 0x8a88da0,3, 0x8a88db0,3, 0x8a88dc0,3, 0x8a88dd0,3, 0x8a88de0,3, 0x8a88df0,3, 0x8a88e00,3, 0x8a88e10,3, 0x8a88e20,3, 0x8a88e30,3, 0x8a88e40,3, 0x8a88e50,3, 0x8a88e60,3, 0x8a88e70,3, 0x8a88e80,3, 0x8a88e90,3, 0x8a88ea0,3, 0x8a88eb0,3, 0x8a88ec0,3, 0x8a88ed0,3, 0x8a88ee0,3, 0x8a88ef0,3, 0x8a88f00,3, 0x8a88f10,3, 0x8a88f20,3, 0x8a88f30,3, 0x8a88f40,3, 0x8a88f50,3, 0x8a88f60,3, 0x8a88f70,3, 0x8a88f80,3, 0x8a88f90,3, 0x8a88fa0,3, 0x8a88fb0,3, 0x8a88fc0,3, 0x8a88fd0,3, 0x8a88fe0,3, 0x8a88ff0,3, 0x8a89000,3, 0x8a89010,3, 0x8a89020,3, 0x8a89030,3, 0x8a89040,3, 0x8a89050,3, 0x8a89060,3, 0x8a89070,3, 0x8a89080,3, 0x8a89090,3, 0x8a890a0,3, 0x8a890b0,3, 0x8a890c0,3, 0x8a890d0,3, 0x8a890e0,3, 0x8a890f0,3, 0x8a89100,3, 0x8a89110,3, 0x8a89120,3, 0x8a89130,3, 0x8a89140,3, 0x8a89150,3, 0x8a89160,3, 0x8a89170,3, 0x8a89180,3, 0x8a89190,3, 0x8a891a0,3, 0x8a891b0,3, 0x8a891c0,3, 0x8a891d0,3, 0x8a891e0,3, 0x8a891f0,3, 0x8a89200,3, 0x8a89210,3, 0x8a89220,3, 0x8a89230,3, 0x8a89240,3, 0x8a89250,3, 0x8a89260,3, 0x8a89270,3, 0x8a89280,3, 0x8a89290,3, 0x8a892a0,3, 0x8a892b0,3, 0x8a892c0,3, 0x8a892d0,3, 0x8a892e0,3, 0x8a892f0,3, 0x8a89300,3, 0x8a89310,3, 0x8a89320,3, 0x8a89330,3, 0x8a89340,3, 0x8a89350,3, 0x8a89360,3, 0x8a89370,3, 0x8a89380,3, 0x8a89390,3, 0x8a893a0,3, 0x8a893b0,3, 0x8a893c0,3, 0x8a893d0,3, 0x8a893e0,3, 0x8a893f0,3, 0x8a89400,3, 0x8a89410,3, 0x8a89420,3, 0x8a89430,3, 0x8a89440,3, 0x8a89450,3, 0x8a89460,3, 0x8a89470,3, 0x8a89480,3, 0x8a89490,3, 0x8a894a0,3, 0x8a894b0,3, 0x8a894c0,3, 0x8a894d0,3, 0x8a894e0,3, 0x8a894f0,3, 0x8a89500,3, 0x8a89510,3, 0x8a89520,3, 0x8a89530,3, 0x8a89540,3, 0x8a89550,3, 0x8a89560,3, 0x8a89570,3, 0x8a89580,3, 0x8a89590,3, 0x8a895a0,3, 0x8a895b0,3, 0x8a895c0,3, 0x8a895d0,3, 0x8a895e0,3, 0x8a895f0,3, 0x8a89600,3, 0x8a89610,3, 0x8a89620,3, 0x8a89630,3, 0x8a89640,3, 0x8a89650,3, 0x8a89660,3, 0x8a89670,3, 0x8a89680,3, 0x8a89690,3, 0x8a896a0,3, 0x8a896b0,3, 0x8a896c0,3, 0x8a896d0,3, 0x8a896e0,3, 0x8a896f0,3, 0x8a89700,3, 0x8a89710,3, 0x8a89720,3, 0x8a89730,3, 0x8a89740,3, 0x8a89750,3, 0x8a89760,3, 0x8a89770,3, 0x8a89780,3, 0x8a89790,3, 0x8a897a0,3, 0x8a897b0,3, 0x8a897c0,3, 0x8a897d0,3, 0x8a897e0,3, 0x8a897f0,3, 0x8a89800,3, 0x8a89810,3, 0x8a89820,3, 0x8a89830,3, 0x8a89840,3, 0x8a89850,3, 0x8a89860,3, 0x8a89870,3, 0x8a89880,3, 0x8a89890,3, 0x8a898a0,3, 0x8a898b0,3, 0x8a898c0,3, 0x8a898d0,3, 0x8a898e0,3, 0x8a898f0,3, 0x8a89900,3, 0x8a89910,3, 0x8a89920,3, 0x8a89930,3, 0x8a89940,3, 0x8a89950,3, 0x8a89960,3, 0x8a89970,3, 0x8a89980,3, 0x8a89990,3, 0x8a899a0,3, 0x8a899b0,3, 0x8a899c0,3, 0x8a899d0,3, 0x8a899e0,3, 0x8a899f0,3, 0x8a89a00,3, 0x8a89a10,3, 0x8a89a20,3, 0x8a89a30,3, 0x8a89a40,3, 0x8a89a50,3, 0x8a89a60,3, 0x8a89a70,3, 0x8a89a80,3, 0x8a89a90,3, 0x8a89aa0,3, 0x8a89ab0,3, 0x8a89ac0,3, 0x8a89ad0,3, 0x8a89ae0,3, 0x8a89af0,3, 0x8a89b00,3, 0x8a89b10,3, 0x8a89b20,3, 0x8a89b30,3, 0x8a89b40,3, 0x8a89b50,3, 0x8a89b60,3, 0x8a89b70,3, 0x8a89b80,3, 0x8a89b90,3, 0x8a89ba0,3, 0x8a89bb0,3, 0x8a89bc0,3, 0x8a89bd0,3, 0x8a89be0,3, 0x8a89bf0,3, 0x8a89c00,3, 0x8a89c10,3, 0x8a89c20,3, 0x8a89c30,3, 0x8a89c40,3, 0x8a89c50,3, 0x8a89c60,3, 0x8a89c70,3, 0x8a89c80,3, 0x8a89c90,3, 0x8a89ca0,3, 0x8a89cb0,3, 0x8a89cc0,3, 0x8a89cd0,3, 0x8a89ce0,3, 0x8a89cf0,3, 0x8a89d00,3, 0x8a89d10,3, 0x8a89d20,3, 0x8a89d30,3, 0x8a89d40,3, 0x8a89d50,3, 0x8a89d60,3, 0x8a89d70,3, 0x8a89d80,3, 0x8a89d90,3, 0x8a89da0,3, 0x8a89db0,3, 0x8a89dc0,3, 0x8a89dd0,3, 0x8a89de0,3, 0x8a89df0,3, 0x8a89e00,3, 0x8a89e10,3, 0x8a89e20,3, 0x8a89e30,3, 0x8a89e40,3, 0x8a89e50,3, 0x8a89e60,3, 0x8a89e70,3, 0x8a89e80,3, 0x8a89e90,3, 0x8a89ea0,3, 0x8a89eb0,3, 0x8a89ec0,3, 0x8a89ed0,3, 0x8a89ee0,3, 0x8a89ef0,3, 0x8a89f00,3, 0x8a89f10,3, 0x8a89f20,3, 0x8a89f30,3, 0x8a89f40,3, 0x8a89f50,3, 0x8a89f60,3, 0x8a89f70,3, 0x8a89f80,3, 0x8a89f90,3, 0x8a89fa0,3, 0x8a89fb0,3, 0x8a89fc0,3, 0x8a89fd0,3, 0x8a89fe0,3, 0x8a89ff0,3, 0x8a8a000,3, 0x8a8a010,3, 0x8a8a020,3, 0x8a8a030,3, 0x8a8a040,3, 0x8a8a050,3, 0x8a8a060,3, 0x8a8a070,3, 0x8a8a080,3, 0x8a8a090,3, 0x8a8a0a0,3, 0x8a8a0b0,3, 0x8a8a0c0,3, 0x8a8a0d0,3, 0x8a8a0e0,3, 0x8a8a0f0,3, 0x8a8a100,3, 0x8a8a110,3, 0x8a8a120,3, 0x8a8a130,3, 0x8a8a140,3, 0x8a8a150,3, 0x8a8a160,3, 0x8a8a170,3, 0x8a8a180,3, 0x8a8a190,3, 0x8a8a1a0,3, 0x8a8a1b0,3, 0x8a8a1c0,3, 0x8a8a1d0,3, 0x8a8a1e0,3, 0x8a8a1f0,3, 0x8a8a200,3, 0x8a8a210,3, 0x8a8a220,3, 0x8a8a230,3, 0x8a8a240,3, 0x8a8a250,3, 0x8a8a260,3, 0x8a8a270,3, 0x8a8a280,3, 0x8a8a290,3, 0x8a8a2a0,3, 0x8a8a2b0,3, 0x8a8a2c0,3, 0x8a8a2d0,3, 0x8a8a2e0,3, 0x8a8a2f0,3, 0x8a8a300,3, 0x8a8a310,3, 0x8a8a320,3, 0x8a8a330,3, 0x8a8a340,3, 0x8a8a350,3, 0x8a8a360,3, 0x8a8a370,3, 0x8a8a380,3, 0x8a8a390,3, 0x8a8a3a0,3, 0x8a8a3b0,3, 0x8a8a3c0,3, 0x8a8a3d0,3, 0x8a8a3e0,3, 0x8a8a3f0,3, 0x8a8a400,3, 0x8a8a410,3, 0x8a8a420,3, 0x8a8a430,3, 0x8a8a440,3, 0x8a8a450,3, 0x8a8a460,3, 0x8a8a470,3, 0x8a8a480,3, 0x8a8a490,3, 0x8a8a4a0,3, 0x8a8a4b0,3, 0x8a8a4c0,3, 0x8a8a4d0,3, 0x8a8a4e0,3, 0x8a8a4f0,3, 0x8a8a500,3, 0x8a8a510,3, 0x8a8a520,3, 0x8a8a530,3, 0x8a8a540,3, 0x8a8a550,3, 0x8a8a560,3, 0x8a8a570,3, 0x8a8a580,3, 0x8a8a590,3, 0x8a8a5a0,3, 0x8a8a5b0,3, 0x8a8a5c0,3, 0x8a8a5d0,3, 0x8a8a5e0,3, 0x8a8a5f0,3, 0x8a8a600,3, 0x8a8a610,3, 0x8a8a620,3, 0x8a8a630,3, 0x8a8a640,3, 0x8a8a650,3, 0x8a8a660,3, 0x8a8a670,3, 0x8a8a680,3, 0x8a8a690,3, 0x8a8a6a0,3, 0x8a8a6b0,3, 0x8a8a6c0,3, 0x8a8a6d0,3, 0x8a8a6e0,3, 0x8a8a6f0,3, 0x8a8a700,3, 0x8a8a710,3, 0x8a8a720,3, 0x8a8a730,3, 0x8a8a740,3, 0x8a8a750,3, 0x8a8a760,3, 0x8a8a770,3, 0x8a8a780,3, 0x8a8a790,3, 0x8a8a7a0,3, 0x8a8a7b0,3, 0x8a8a7c0,3, 0x8a8a7d0,3, 0x8a8a7e0,3, 0x8a8a7f0,3, 0x8a8a800,3, 0x8a8a810,3, 0x8a8a820,3, 0x8a8a830,3, 0x8a8a840,3, 0x8a8a850,3, 0x8a8a860,3, 0x8a8a870,3, 0x8a8a880,3, 0x8a8a890,3, 0x8a8a8a0,3, 0x8a8a8b0,3, 0x8a8a8c0,3, 0x8a8a8d0,3, 0x8a8a8e0,3, 0x8a8a8f0,3, 0x8a8a900,3, 0x8a8a910,3, 0x8a8a920,3, 0x8a8a930,3, 0x8a8a940,3, 0x8a8a950,3, 0x8a8a960,3, 0x8a8a970,3, 0x8a8a980,3, 0x8a8a990,3, 0x8a8a9a0,3, 0x8a8a9b0,3, 0x8a8a9c0,3, 0x8a8a9d0,3, 0x8a8a9e0,3, 0x8a8a9f0,3, 0x8a8aa00,3, 0x8a8aa10,3, 0x8a8aa20,3, 0x8a8aa30,3, 0x8a8aa40,3, 0x8a8aa50,3, 0x8a8aa60,3, 0x8a8aa70,3, 0x8a8aa80,3, 0x8a8aa90,3, 0x8a8aaa0,3, 0x8a8aab0,3, 0x8a8aac0,3, 0x8a8aad0,3, 0x8a8aae0,3, 0x8a8aaf0,3, 0x8a8ab00,3, 0x8a8ab10,3, 0x8a8ab20,3, 0x8a8ab30,3, 0x8a8ab40,3, 0x8a8ab50,3, 0x8a8ab60,3, 0x8a8ab70,3, 0x8a8ab80,3, 0x8a8ab90,3, 0x8a8aba0,3, 0x8a8abb0,3, 0x8a8abc0,3, 0x8a8abd0,3, 0x8a8abe0,3, 0x8a8abf0,3, 0x8a8ac00,3, 0x8a8ac10,3, 0x8a8ac20,3, 0x8a8ac30,3, 0x8a8ac40,3, 0x8a8ac50,3, 0x8a8ac60,3, 0x8a8ac70,3, 0x8a8ac80,3, 0x8a8ac90,3, 0x8a8aca0,3, 0x8a8acb0,3, 0x8a8acc0,3, 0x8a8acd0,3, 0x8a8ace0,3, 0x8a8acf0,3, 0x8a8ad00,3, 0x8a8ad10,3, 0x8a8ad20,3, 0x8a8ad30,3, 0x8a8ad40,3, 0x8a8ad50,3, 0x8a8ad60,3, 0x8a8ad70,3, 0x8a8ad80,3, 0x8a8ad90,3, 0x8a8ada0,3, 0x8a8adb0,3, 0x8a8adc0,3, 0x8a8add0,3, 0x8a8ade0,3, 0x8a8adf0,3, 0x8a8ae00,3, 0x8a8ae10,3, 0x8a8ae20,3, 0x8a8ae30,3, 0x8a8ae40,3, 0x8a8ae50,3, 0x8a8ae60,3, 0x8a8ae70,3, 0x8a8ae80,3, 0x8a8ae90,3, 0x8a8aea0,3, 0x8a8aeb0,3, 0x8a8aec0,3, 0x8a8aed0,3, 0x8a8aee0,3, 0x8a8aef0,3, 0x8a8af00,3, 0x8a8af10,3, 0x8a8af20,3, 0x8a8af30,3, 0x8a8af40,3, 0x8a8af50,3, 0x8a8af60,3, 0x8a8af70,3, 0x8a8af80,3, 0x8a8af90,3, 0x8a8afa0,3, 0x8a8afb0,3, 0x8a8afc0,3, 0x8a8afd0,3, 0x8a8afe0,3, 0x8a8aff0,3, 0x8a8b000,3, 0x8a8b010,3, 0x8a8b020,3, 0x8a8b030,3, 0x8a8b040,3, 0x8a8b050,3, 0x8a8b060,3, 0x8a8b070,3, 0x8a8b080,3, 0x8a8b090,3, 0x8a8b0a0,3, 0x8a8b0b0,3, 0x8a8b0c0,3, 0x8a8b0d0,3, 0x8a8b0e0,3, 0x8a8b0f0,3, 0x8a8b100,3, 0x8a8b110,3, 0x8a8b120,3, 0x8a8b130,3, 0x8a8b140,3, 0x8a8b150,3, 0x8a8b160,3, 0x8a8b170,3, 0x8a8b180,3, 0x8a8b190,3, 0x8a8b1a0,3, 0x8a8b1b0,3, 0x8a8b1c0,3, 0x8a8b1d0,3, 0x8a8b1e0,3, 0x8a8b1f0,3, 0x8a8b200,3, 0x8a8b210,3, 0x8a8b220,3, 0x8a8b230,3, 0x8a8b240,3, 0x8a8b250,3, 0x8a8b260,3, 0x8a8b270,3, 0x8a8b280,3, 0x8a8b290,3, 0x8a8b2a0,3, 0x8a8b2b0,3, 0x8a8b2c0,3, 0x8a8b2d0,3, 0x8a8b2e0,3, 0x8a8b2f0,3, 0x8a8b300,3, 0x8a8b310,3, 0x8a8b320,3, 0x8a8b330,3, 0x8a8b340,3, 0x8a8b350,3, 0x8a8b360,3, 0x8a8b370,3, 0x8a8b380,3, 0x8a8b390,3, 0x8a8b3a0,3, 0x8a8b3b0,3, 0x8a8b3c0,3, 0x8a8b3d0,3, 0x8a8b3e0,3, 0x8a8b3f0,3, 0x8a8b400,3, 0x8a8b410,3, 0x8a8b420,3, 0x8a8b430,3, 0x8a8b440,3, 0x8a8b450,3, 0x8a8b460,3, 0x8a8b470,3, 0x8a8b480,3, 0x8a8b490,3, 0x8a8b4a0,3, 0x8a8b4b0,3, 0x8a8b4c0,3, 0x8a8b4d0,3, 0x8a8b4e0,3, 0x8a8b4f0,3, 0x8a8b500,3, 0x8a8b510,3, 0x8a8b520,3, 0x8a8b530,3, 0x8a8b540,3, 0x8a8b550,3, 0x8a8b560,3, 0x8a8b570,3, 0x8a8b580,3, 0x8a8b590,3, 0x8a8b5a0,3, 0x8a8b5b0,3, 0x8a8b5c0,3, 0x8a8b5d0,3, 0x8a8b5e0,3, 0x8a8b5f0,3, 0x8a8b600,3, 0x8a8b610,3, 0x8a8b620,3, 0x8a8b630,3, 0x8a8b640,3, 0x8a8b650,3, 0x8a8b660,3, 0x8a8b670,3, 0x8a8b680,3, 0x8a8b690,3, 0x8a8b6a0,3, 0x8a8b6b0,3, 0x8a8b6c0,3, 0x8a8b6d0,3, 0x8a8b6e0,3, 0x8a8b6f0,3, 0x8a8b700,3, 0x8a8b710,3, 0x8a8b720,3, 0x8a8b730,3, 0x8a8b740,3, 0x8a8b750,3, 0x8a8b760,3, 0x8a8b770,3, 0x8a8b780,3, 0x8a8b790,3, 0x8a8b7a0,3, 0x8a8b7b0,3, 0x8a8b7c0,3, 0x8a8b7d0,3, 0x8a8b7e0,3, 0x8a8b7f0,3, 0x8a8b800,3, 0x8a8b810,3, 0x8a8b820,3, 0x8a8b830,3, 0x8a8b840,3, 0x8a8b850,3, 0x8a8b860,3, 0x8a8b870,3, 0x8a8b880,3, 0x8a8b890,3, 0x8a8b8a0,3, 0x8a8b8b0,3, 0x8a8b8c0,3, 0x8a8b8d0,3, 0x8a8b8e0,3, 0x8a8b8f0,3, 0x8a8b900,3, 0x8a8b910,3, 0x8a8b920,3, 0x8a8b930,3, 0x8a8b940,3, 0x8a8b950,3, 0x8a8b960,3, 0x8a8b970,3, 0x8a8b980,3, 0x8a8b990,3, 0x8a8b9a0,3, 0x8a8b9b0,3, 0x8a8b9c0,3, 0x8a8b9d0,3, 0x8a8b9e0,3, 0x8a8b9f0,3, 0x8a8ba00,3, 0x8a8ba10,3, 0x8a8ba20,3, 0x8a8ba30,3, 0x8a8ba40,3, 0x8a8ba50,3, 0x8a8ba60,3, 0x8a8ba70,3, 0x8a8ba80,3, 0x8a8ba90,3, 0x8a8baa0,3, 0x8a8bab0,3, 0x8a8bac0,3, 0x8a8bad0,3, 0x8a8bae0,3, 0x8a8baf0,3, 0x8a8bb00,3, 0x8a8bb10,3, 0x8a8bb20,3, 0x8a8bb30,3, 0x8a8bb40,3, 0x8a8bb50,3, 0x8a8bb60,3, 0x8a8bb70,3, 0x8a8bb80,3, 0x8a8bb90,3, 0x8a8bba0,3, 0x8a8bbb0,3, 0x8a8bbc0,3, 0x8a8bbd0,3, 0x8a8bbe0,3, 0x8a8bbf0,3, 0x8a8bc00,3, 0x8a8bc10,3, 0x8a8bc20,3, 0x8a8bc30,3, 0x8a8bc40,3, 0x8a8bc50,3, 0x8a8bc60,3, 0x8a8bc70,3, 0x8a8bc80,3, 0x8a8bc90,3, 0x8a8bca0,3, 0x8a8bcb0,3, 0x8a8bcc0,3, 0x8a8bcd0,3, 0x8a8bce0,3, 0x8a8bcf0,3, 0x8a8bd00,3, 0x8a8bd10,3, 0x8a8bd20,3, 0x8a8bd30,3, 0x8a8bd40,3, 0x8a8bd50,3, 0x8a8bd60,3, 0x8a8bd70,3, 0x8a8bd80,3, 0x8a8bd90,3, 0x8a8bda0,3, 0x8a8bdb0,3, 0x8a8bdc0,3, 0x8a8bdd0,3, 0x8a8bde0,3, 0x8a8bdf0,3, 0x8a8be00,3, 0x8a8be10,3, 0x8a8be20,3, 0x8a8be30,3, 0x8a8be40,3, 0x8a8be50,3, 0x8a8be60,3, 0x8a8be70,3, 0x8a8be80,3, 0x8a8be90,3, 0x8a8bea0,3, 0x8a8beb0,3, 0x8a8bec0,3, 0x8a8bed0,3, 0x8a8bee0,3, 0x8a8bef0,3, 0x8a8bf00,3, 0x8a8bf10,3, 0x8a8bf20,3, 0x8a8bf30,3, 0x8a8bf40,3, 0x8a8bf50,3, 0x8a8bf60,3, 0x8a8bf70,3, 0x8a8bf80,3, 0x8a8bf90,3, 0x8a8bfa0,3, 0x8a8bfb0,3, 0x8a8bfc0,3, 0x8a8bfd0,3, 0x8a8bfe0,3, 0x8a8bff0,3, 0x8a8c000,3, 0x8a8c010,3, 0x8a8c020,3, 0x8a8c030,3, 0x8a8c040,3, 0x8a8c050,3, 0x8a8c060,3, 0x8a8c070,3, 0x8a8c080,3, 0x8a8c090,3, 0x8a8c0a0,3, 0x8a8c0b0,3, 0x8a8c0c0,3, 0x8a8c0d0,3, 0x8a8c0e0,3, 0x8a8c0f0,3, 0x8a8c100,3, 0x8a8c110,3, 0x8a8c120,3, 0x8a8c130,3, 0x8a8c140,3, 0x8a8c150,3, 0x8a8c160,3, 0x8a8c170,3, 0x8a8c180,3, 0x8a8c190,3, 0x8a8c1a0,3, 0x8a8c1b0,3, 0x8a8c1c0,3, 0x8a8c1d0,3, 0x8a8c1e0,3, 0x8a8c1f0,3, 0x8a8c200,3, 0x8a8c210,3, 0x8a8c220,3, 0x8a8c230,3, 0x8a8c240,3, 0x8a8c250,3, 0x8a8c260,3, 0x8a8c270,3, 0x8a8c280,3, 0x8a8c290,3, 0x8a8c2a0,3, 0x8a8c2b0,3, 0x8a8c2c0,3, 0x8a8c2d0,3, 0x8a8c2e0,3, 0x8a8c2f0,3, 0x8a8c300,3, 0x8a8c310,3, 0x8a8c320,3, 0x8a8c330,3, 0x8a8c340,3, 0x8a8c350,3, 0x8a8c360,3, 0x8a8c370,3, 0x8a8c380,3, 0x8a8c390,3, 0x8a8c3a0,3, 0x8a8c3b0,3, 0x8a8c3c0,3, 0x8a8c3d0,3, 0x8a8c3e0,3, 0x8a8c3f0,3, 0x8a8c400,3, 0x8a8c410,3, 0x8a8c420,3, 0x8a8c430,3, 0x8a8c440,3, 0x8a8c450,3, 0x8a8c460,3, 0x8a8c470,3, 0x8a8c480,3, 0x8a8c490,3, 0x8a8c4a0,3, 0x8a8c4b0,3, 0x8a8c4c0,3, 0x8a8c4d0,3, 0x8a8c4e0,3, 0x8a8c4f0,3, 0x8a8c500,3, 0x8a8c510,3, 0x8a8c520,3, 0x8a8c530,3, 0x8a8c540,3, 0x8a8c550,3, 0x8a8c560,3, 0x8a8c570,3, 0x8a8c580,3, 0x8a8c590,3, 0x8a8c5a0,3, 0x8a8c5b0,3, 0x8a8c5c0,3, 0x8a8c5d0,3, 0x8a8c5e0,3, 0x8a8c5f0,3, 0x8a8c600,3, 0x8a8c610,3, 0x8a8c620,3, 0x8a8c630,3, 0x8a8c640,3, 0x8a8c650,3, 0x8a8c660,3, 0x8a8c670,3, 0x8a8c680,3, 0x8a8c690,3, 0x8a8c6a0,3, 0x8a8c6b0,3, 0x8a8c6c0,3, 0x8a8c6d0,3, 0x8a8c6e0,3, 0x8a8c6f0,3, 0x8a8c700,3, 0x8a8c710,3, 0x8a8c720,3, 0x8a8c730,3, 0x8a8c740,3, 0x8a8c750,3, 0x8a8c760,3, 0x8a8c770,3, 0x8a8c780,3, 0x8a8c790,3, 0x8a8c7a0,3, 0x8a8c7b0,3, 0x8a8c7c0,3, 0x8a8c7d0,3, 0x8a8c7e0,3, 0x8a8c7f0,3, 0x8a8c800,3, 0x8a8c810,3, 0x8a8c820,3, 0x8a8c830,3, 0x8a8c840,3, 0x8a8c850,3, 0x8a8c860,3, 0x8a8c870,3, 0x8a8c880,3, 0x8a8c890,3, 0x8a8c8a0,3, 0x8a8c8b0,3, 0x8a8c8c0,3, 0x8a8c8d0,3, 0x8a8c8e0,3, 0x8a8c8f0,3, 0x8a8c900,3, 0x8a8c910,3, 0x8a8c920,3, 0x8a8c930,3, 0x8a8c940,3, 0x8a8c950,3, 0x8a8c960,3, 0x8a8c970,3, 0x8a8c980,3, 0x8a8c990,3, 0x8a8c9a0,3, 0x8a8c9b0,3, 0x8a8c9c0,3, 0x8a8c9d0,3, 0x8a8c9e0,3, 0x8a8c9f0,3, 0x8a8ca00,3, 0x8a8ca10,3, 0x8a8ca20,3, 0x8a8ca30,3, 0x8a8ca40,3, 0x8a8ca50,3, 0x8a8ca60,3, 0x8a8ca70,3, 0x8a8ca80,3, 0x8a8ca90,3, 0x8a8caa0,3, 0x8a8cab0,3, 0x8a8cac0,3, 0x8a8cad0,3, 0x8a8cae0,3, 0x8a8caf0,3, 0x8a8cb00,3, 0x8a8cb10,3, 0x8a8cb20,3, 0x8a8cb30,3, 0x8a8cb40,3, 0x8a8cb50,3, 0x8a8cb60,3, 0x8a8cb70,3, 0x8a8cb80,3, 0x8a8cb90,3, 0x8a8cba0,3, 0x8a8cbb0,3, 0x8a8cbc0,3, 0x8a8cbd0,3, 0x8a8cbe0,3, 0x8a8cbf0,3, 0x8a8cc00,3, 0x8a8cc10,3, 0x8a8cc20,3, 0x8a8cc30,3, 0x8a8cc40,3, 0x8a8cc50,3, 0x8a8cc60,3, 0x8a8cc70,3, 0x8a8cc80,3, 0x8a8cc90,3, 0x8a8cca0,3, 0x8a8ccb0,3, 0x8a8ccc0,3, 0x8a8ccd0,3, 0x8a8cce0,3, 0x8a8ccf0,3, 0x8a8cd00,3, 0x8a8cd10,3, 0x8a8cd20,3, 0x8a8cd30,3, 0x8a8cd40,3, 0x8a8cd50,3, 0x8a8cd60,3, 0x8a8cd70,3, 0x8a8cd80,3, 0x8a8cd90,3, 0x8a8cda0,3, 0x8a8cdb0,3, 0x8a8cdc0,3, 0x8a8cdd0,3, 0x8a8cde0,3, 0x8a8cdf0,3, 0x8a8ce00,3, 0x8a8ce10,3, 0x8a8ce20,3, 0x8a8ce30,3, 0x8a8ce40,3, 0x8a8ce50,3, 0x8a8ce60,3, 0x8a8ce70,3, 0x8a8ce80,3, 0x8a8ce90,3, 0x8a8cea0,3, 0x8a8ceb0,3, 0x8a8cec0,3, 0x8a8ced0,3, 0x8a8cee0,3, 0x8a8cef0,3, 0x8a8cf00,3, 0x8a8cf10,3, 0x8a8cf20,3, 0x8a8cf30,3, 0x8a8cf40,3, 0x8a8cf50,3, 0x8a8cf60,3, 0x8a8cf70,3, 0x8a8cf80,3, 0x8a8cf90,3, 0x8a8cfa0,3, 0x8a8cfb0,3, 0x8a8cfc0,3, 0x8a8cfd0,3, 0x8a8cfe0,3, 0x8a8cff0,3, 0x8a8d000,3, 0x8a8d010,3, 0x8a8d020,3, 0x8a8d030,3, 0x8a8d040,3, 0x8a8d050,3, 0x8a8d060,3, 0x8a8d070,3, 0x8a8d080,3, 0x8a8d090,3, 0x8a8d0a0,3, 0x8a8d0b0,3, 0x8a8d0c0,3, 0x8a8d0d0,3, 0x8a8d0e0,3, 0x8a8d0f0,3, 0x8a8d100,3, 0x8a8d110,3, 0x8a8d120,3, 0x8a8d130,3, 0x8a8d140,3, 0x8a8d150,3, 0x8a8d160,3, 0x8a8d170,3, 0x8a8d180,3, 0x8a8d190,3, 0x8a8d1a0,3, 0x8a8d1b0,3, 0x8a8d1c0,3, 0x8a8d1d0,3, 0x8a8d1e0,3, 0x8a8d1f0,3, 0x8a8d200,3, 0x8a8d210,3, 0x8a8d220,3, 0x8a8d230,3, 0x8a8d240,3, 0x8a8d250,3, 0x8a8d260,3, 0x8a8d270,3, 0x8a8d280,3, 0x8a8d290,3, 0x8a8d2a0,3, 0x8a8d2b0,3, 0x8a8d2c0,3, 0x8a8d2d0,3, 0x8a8d2e0,3, 0x8a8d2f0,3, 0x8a8d300,3, 0x8a8d310,3, 0x8a8d320,3, 0x8a8d330,3, 0x8a8d340,3, 0x8a8d350,3, 0x8a8d360,3, 0x8a8d370,3, 0x8a8d380,3, 0x8a8d390,3, 0x8a8d3a0,3, 0x8a8d3b0,3, 0x8a8d3c0,3, 0x8a8d3d0,3, 0x8a8d3e0,3, 0x8a8d3f0,3, 0x8a8d400,3, 0x8a8d410,3, 0x8a8d420,3, 0x8a8d430,3, 0x8a8d440,3, 0x8a8d450,3, 0x8a8d460,3, 0x8a8d470,3, 0x8a8d480,3, 0x8a8d490,3, 0x8a8d4a0,3, 0x8a8d4b0,3, 0x8a8d4c0,3, 0x8a8d4d0,3, 0x8a8d4e0,3, 0x8a8d4f0,3, 0x8a8d500,3, 0x8a8d510,3, 0x8a8d520,3, 0x8a8d530,3, 0x8a8d540,3, 0x8a8d550,3, 0x8a8d560,3, 0x8a8d570,3, 0x8a8d580,3, 0x8a8d590,3, 0x8a8d5a0,3, 0x8a8d5b0,3, 0x8a8d5c0,3, 0x8a8d5d0,3, 0x8a8d5e0,3, 0x8a8d5f0,3, 0x8a8d600,3, 0x8a8d610,3, 0x8a8d620,3, 0x8a8d630,3, 0x8a8d640,3, 0x8a8d650,3, 0x8a8d660,3, 0x8a8d670,3, 0x8a8d680,3, 0x8a8d690,3, 0x8a8d6a0,3, 0x8a8d6b0,3, 0x8a8d6c0,3, 0x8a8d6d0,3, 0x8a8d6e0,3, 0x8a8d6f0,3, 0x8a8d700,3, 0x8a8d710,3, 0x8a8d720,3, 0x8a8d730,3, 0x8a8d740,3, 0x8a8d750,3, 0x8a8d760,3, 0x8a8d770,3, 0x8a8d780,3, 0x8a8d790,3, 0x8a8d7a0,3, 0x8a8d7b0,3, 0x8a8d7c0,3, 0x8a8d7d0,3, 0x8a8d7e0,3, 0x8a8d7f0,3, 0x8a8d800,3, 0x8a8d810,3, 0x8a8d820,3, 0x8a8d830,3, 0x8a8d840,3, 0x8a8d850,3, 0x8a8d860,3, 0x8a8d870,3, 0x8a8d880,3, 0x8a8d890,3, 0x8a8d8a0,3, 0x8a8d8b0,3, 0x8a8d8c0,3, 0x8a8d8d0,3, 0x8a8d8e0,3, 0x8a8d8f0,3, 0x8a8d900,3, 0x8a8d910,3, 0x8a8d920,3, 0x8a8d930,3, 0x8a8d940,3, 0x8a8d950,3, 0x8a8d960,3, 0x8a8d970,3, 0x8a8d980,3, 0x8a8d990,3, 0x8a8d9a0,3, 0x8a8d9b0,3, 0x8a8d9c0,3, 0x8a8d9d0,3, 0x8a8d9e0,3, 0x8a8d9f0,3, 0x8a8da00,3, 0x8a8da10,3, 0x8a8da20,3, 0x8a8da30,3, 0x8a8da40,3, 0x8a8da50,3, 0x8a8da60,3, 0x8a8da70,3, 0x8a8da80,3, 0x8a8da90,3, 0x8a8daa0,3, 0x8a8dab0,3, 0x8a8dac0,3, 0x8a8dad0,3, 0x8a8dae0,3, 0x8a8daf0,3, 0x8a8db00,3, 0x8a8db10,3, 0x8a8db20,3, 0x8a8db30,3, 0x8a8db40,3, 0x8a8db50,3, 0x8a8db60,3, 0x8a8db70,3, 0x8a8db80,3, 0x8a8db90,3, 0x8a8dba0,3, 0x8a8dbb0,3, 0x8a8dbc0,3, 0x8a8dbd0,3, 0x8a8dbe0,3, 0x8a8dbf0,3, 0x8a8dc00,3, 0x8a8dc10,3, 0x8a8dc20,3, 0x8a8dc30,3, 0x8a8dc40,3, 0x8a8dc50,3, 0x8a8dc60,3, 0x8a8dc70,3, 0x8a8dc80,3, 0x8a8dc90,3, 0x8a8dca0,3, 0x8a8dcb0,3, 0x8a8dcc0,3, 0x8a8dcd0,3, 0x8a8dce0,3, 0x8a8dcf0,3, 0x8a8dd00,3, 0x8a8dd10,3, 0x8a8dd20,3, 0x8a8dd30,3, 0x8a8dd40,3, 0x8a8dd50,3, 0x8a8dd60,3, 0x8a8dd70,3, 0x8a8dd80,3, 0x8a8dd90,3, 0x8a8dda0,3, 0x8a8ddb0,3, 0x8a8ddc0,3, 0x8a8ddd0,3, 0x8a8dde0,3, 0x8a8ddf0,3, 0x8a8de00,3, 0x8a8de10,3, 0x8a8de20,3, 0x8a8de30,3, 0x8a8de40,3, 0x8a8de50,3, 0x8a8de60,3, 0x8a8de70,3, 0x8a8de80,3, 0x8a8de90,3, 0x8a8dea0,3, 0x8a8deb0,3, 0x8a8dec0,3, 0x8a8ded0,3, 0x8a8dee0,3, 0x8a8def0,3, 0x8a8df00,3, 0x8a8df10,3, 0x8a8df20,3, 0x8a8df30,3, 0x8a8df40,3, 0x8a8df50,3, 0x8a8df60,3, 0x8a8df70,3, 0x8a8df80,3, 0x8a8df90,3, 0x8a8dfa0,3, 0x8a8dfb0,3, 0x8a8dfc0,3, 0x8a8dfd0,3, 0x8a8dfe0,3, 0x8a8dff0,3, 0x8a8e000,3, 0x8a8e010,3, 0x8a8e020,3, 0x8a8e030,3, 0x8a8e040,3, 0x8a8e050,3, 0x8a8e060,3, 0x8a8e070,3, 0x8a8e080,3, 0x8a8e090,3, 0x8a8e0a0,3, 0x8a8e0b0,3, 0x8a8e0c0,3, 0x8a8e0d0,3, 0x8a8e0e0,3, 0x8a8e0f0,3, 0x8a8e100,3, 0x8a8e110,3, 0x8a8e120,3, 0x8a8e130,3, 0x8a8e140,3, 0x8a8e150,3, 0x8a8e160,3, 0x8a8e170,3, 0x8a8e180,3, 0x8a8e190,3, 0x8a8e1a0,3, 0x8a8e1b0,3, 0x8a8e1c0,3, 0x8a8e1d0,3, 0x8a8e1e0,3, 0x8a8e1f0,3, 0x8a8e200,3, 0x8a8e210,3, 0x8a8e220,3, 0x8a8e230,3, 0x8a8e240,3, 0x8a8e250,3, 0x8a8e260,3, 0x8a8e270,3, 0x8a8e280,3, 0x8a8e290,3, 0x8a8e2a0,3, 0x8a8e2b0,3, 0x8a8e2c0,3, 0x8a8e2d0,3, 0x8a8e2e0,3, 0x8a8e2f0,3, 0x8a8e300,3, 0x8a8e310,3, 0x8a8e320,3, 0x8a8e330,3, 0x8a8e340,3, 0x8a8e350,3, 0x8a8e360,3, 0x8a8e370,3, 0x8a8e380,3, 0x8a8e390,3, 0x8a8e3a0,3, 0x8a8e3b0,3, 0x8a8e3c0,3, 0x8a8e3d0,3, 0x8a8e3e0,3, 0x8a8e3f0,3, 0x8a8e400,3, 0x8a8e410,3, 0x8a8e420,3, 0x8a8e430,3, 0x8a8e440,3, 0x8a8e450,3, 0x8a8e460,3, 0x8a8e470,3, 0x8a8e480,3, 0x8a8e490,3, 0x8a8e4a0,3, 0x8a8e4b0,3, 0x8a8e4c0,3, 0x8a8e4d0,3, 0x8a8e4e0,3, 0x8a8e4f0,3, 0x8a8e500,3, 0x8a8e510,3, 0x8a8e520,3, 0x8a8e530,3, 0x8a8e540,3, 0x8a8e550,3, 0x8a8e560,3, 0x8a8e570,3, 0x8a8e580,3, 0x8a8e590,3, 0x8a8e5a0,3, 0x8a8e5b0,3, 0x8a8e5c0,3, 0x8a8e5d0,3, 0x8a8e5e0,3, 0x8a8e5f0,3, 0x8a8e600,3, 0x8a8e610,3, 0x8a8e620,3, 0x8a8e630,3, 0x8a8e640,3, 0x8a8e650,3, 0x8a8e660,3, 0x8a8e670,3, 0x8a8e680,3, 0x8a8e690,3, 0x8a8e6a0,3, 0x8a8e6b0,3, 0x8a8e6c0,3, 0x8a8e6d0,3, 0x8a8e6e0,3, 0x8a8e6f0,3, 0x8a8e700,3, 0x8a8e710,3, 0x8a8e720,3, 0x8a8e730,3, 0x8a8e740,3, 0x8a8e750,3, 0x8a8e760,3, 0x8a8e770,3, 0x8a8e780,3, 0x8a8e790,3, 0x8a8e7a0,3, 0x8a8e7b0,3, 0x8a8e7c0,3, 0x8a8e7d0,3, 0x8a8e7e0,3, 0x8a8e7f0,3, 0x8a8e800,3, 0x8a8e810,3, 0x8a8e820,3, 0x8a8e830,3, 0x8a8e840,3, 0x8a8e850,3, 0x8a8e860,3, 0x8a8e870,3, 0x8a8e880,3, 0x8a8e890,3, 0x8a8e8a0,3, 0x8a8e8b0,3, 0x8a8e8c0,3, 0x8a8e8d0,3, 0x8a8e8e0,3, 0x8a8e8f0,3, 0x8a8e900,3, 0x8a8e910,3, 0x8a8e920,3, 0x8a8e930,3, 0x8a8e940,3, 0x8a8e950,3, 0x8a8e960,3, 0x8a8e970,3, 0x8a8e980,3, 0x8a8e990,3, 0x8a8e9a0,3, 0x8a8e9b0,3, 0x8a8e9c0,3, 0x8a8e9d0,3, 0x8a8e9e0,3, 0x8a8e9f0,3, 0x8a8ea00,3, 0x8a8ea10,3, 0x8a8ea20,3, 0x8a8ea30,3, 0x8a8ea40,3, 0x8a8ea50,3, 0x8a8ea60,3, 0x8a8ea70,3, 0x8a8ea80,3, 0x8a8ea90,3, 0x8a8eaa0,3, 0x8a8eab0,3, 0x8a8eac0,3, 0x8a8ead0,3, 0x8a8eae0,3, 0x8a8eaf0,3, 0x8a8eb00,3, 0x8a8eb10,3, 0x8a8eb20,3, 0x8a8eb30,3, 0x8a8eb40,3, 0x8a8eb50,3, 0x8a8eb60,3, 0x8a8eb70,3, 0x8a8eb80,3, 0x8a8eb90,3, 0x8a8eba0,3, 0x8a8ebb0,3, 0x8a8ebc0,3, 0x8a8ebd0,3, 0x8a8ebe0,3, 0x8a8ebf0,3, 0x8a8ec00,3, 0x8a8ec10,3, 0x8a8ec20,3, 0x8a8ec30,3, 0x8a8ec40,3, 0x8a8ec50,3, 0x8a8ec60,3, 0x8a8ec70,3, 0x8a8ec80,3, 0x8a8ec90,3, 0x8a8eca0,3, 0x8a8ecb0,3, 0x8a8ecc0,3, 0x8a8ecd0,3, 0x8a8ece0,3, 0x8a8ecf0,3, 0x8a8ed00,3, 0x8a8ed10,3, 0x8a8ed20,3, 0x8a8ed30,3, 0x8a8ed40,3, 0x8a8ed50,3, 0x8a8ed60,3, 0x8a8ed70,3, 0x8a8ed80,3, 0x8a8ed90,3, 0x8a8eda0,3, 0x8a8edb0,3, 0x8a8edc0,3, 0x8a8edd0,3, 0x8a8ede0,3, 0x8a8edf0,3, 0x8a8ee00,3, 0x8a8ee10,3, 0x8a8ee20,3, 0x8a8ee30,3, 0x8a8ee40,3, 0x8a8ee50,3, 0x8a8ee60,3, 0x8a8ee70,3, 0x8a8ee80,3, 0x8a8ee90,3, 0x8a8eea0,3, 0x8a8eeb0,3, 0x8a8eec0,3, 0x8a8eed0,3, 0x8a8eee0,3, 0x8a8eef0,3, 0x8a8ef00,3, 0x8a8ef10,3, 0x8a8ef20,3, 0x8a8ef30,3, 0x8a8ef40,3, 0x8a8ef50,3, 0x8a8ef60,3, 0x8a8ef70,3, 0x8a8ef80,3, 0x8a8ef90,3, 0x8a8efa0,3, 0x8a8efb0,3, 0x8a8efc0,3, 0x8a8efd0,3, 0x8a8efe0,3, 0x8a8eff0,3, 0x8a8f000,3, 0x8a8f010,3, 0x8a8f020,3, 0x8a8f030,3, 0x8a8f040,3, 0x8a8f050,3, 0x8a8f060,3, 0x8a8f070,3, 0x8a8f080,3, 0x8a8f090,3, 0x8a8f0a0,3, 0x8a8f0b0,3, 0x8a8f0c0,3, 0x8a8f0d0,3, 0x8a8f0e0,3, 0x8a8f0f0,3, 0x8a8f100,3, 0x8a8f110,3, 0x8a8f120,3, 0x8a8f130,3, 0x8a8f140,3, 0x8a8f150,3, 0x8a8f160,3, 0x8a8f170,3, 0x8a8f180,3, 0x8a8f190,3, 0x8a8f1a0,3, 0x8a8f1b0,3, 0x8a8f1c0,3, 0x8a8f1d0,3, 0x8a8f1e0,3, 0x8a8f1f0,3, 0x8a8f200,3, 0x8a8f210,3, 0x8a8f220,3, 0x8a8f230,3, 0x8a8f240,3, 0x8a8f250,3, 0x8a8f260,3, 0x8a8f270,3, 0x8a8f280,3, 0x8a8f290,3, 0x8a8f2a0,3, 0x8a8f2b0,3, 0x8a8f2c0,3, 0x8a8f2d0,3, 0x8a8f2e0,3, 0x8a8f2f0,3, 0x8a8f300,3, 0x8a8f310,3, 0x8a8f320,3, 0x8a8f330,3, 0x8a8f340,3, 0x8a8f350,3, 0x8a8f360,3, 0x8a8f370,3, 0x8a8f380,3, 0x8a8f390,3, 0x8a8f3a0,3, 0x8a8f3b0,3, 0x8a8f3c0,3, 0x8a8f3d0,3, 0x8a8f3e0,3, 0x8a8f3f0,3, 0x8a8f400,3, 0x8a8f410,3, 0x8a8f420,3, 0x8a8f430,3, 0x8a8f440,3, 0x8a8f450,3, 0x8a8f460,3, 0x8a8f470,3, 0x8a8f480,3, 0x8a8f490,3, 0x8a8f4a0,3, 0x8a8f4b0,3, 0x8a8f4c0,3, 0x8a8f4d0,3, 0x8a8f4e0,3, 0x8a8f4f0,3, 0x8a8f500,3, 0x8a8f510,3, 0x8a8f520,3, 0x8a8f530,3, 0x8a8f540,3, 0x8a8f550,3, 0x8a8f560,3, 0x8a8f570,3, 0x8a8f580,3, 0x8a8f590,3, 0x8a8f5a0,3, 0x8a8f5b0,3, 0x8a8f5c0,3, 0x8a8f5d0,3, 0x8a8f5e0,3, 0x8a8f5f0,3, 0x8a8f600,3, 0x8a8f610,3, 0x8a8f620,3, 0x8a8f630,3, 0x8a8f640,3, 0x8a8f650,3, 0x8a8f660,3, 0x8a8f670,3, 0x8a8f680,3, 0x8a8f690,3, 0x8a8f6a0,3, 0x8a8f6b0,3, 0x8a8f6c0,3, 0x8a8f6d0,3, 0x8a8f6e0,3, 0x8a8f6f0,3, 0x8a8f700,3, 0x8a8f710,3, 0x8a8f720,3, 0x8a8f730,3, 0x8a8f740,3, 0x8a8f750,3, 0x8a8f760,3, 0x8a8f770,3, 0x8a8f780,3, 0x8a8f790,3, 0x8a8f7a0,3, 0x8a8f7b0,3, 0x8a8f7c0,3, 0x8a8f7d0,3, 0x8a8f7e0,3, 0x8a8f7f0,3, 0x8a8f800,3, 0x8a8f810,3, 0x8a8f820,3, 0x8a8f830,3, 0x8a8f840,3, 0x8a8f850,3, 0x8a8f860,3, 0x8a8f870,3, 0x8a8f880,3, 0x8a8f890,3, 0x8a8f8a0,3, 0x8a8f8b0,3, 0x8a8f8c0,3, 0x8a8f8d0,3, 0x8a8f8e0,3, 0x8a8f8f0,3, 0x8a8f900,3, 0x8a8f910,3, 0x8a8f920,3, 0x8a8f930,3, 0x8a8f940,3, 0x8a8f950,3, 0x8a8f960,3, 0x8a8f970,3, 0x8a8f980,3, 0x8a8f990,3, 0x8a8f9a0,3, 0x8a8f9b0,3, 0x8a8f9c0,3, 0x8a8f9d0,3, 0x8a8f9e0,3, 0x8a8f9f0,3, 0x8a8fa00,3, 0x8a8fa10,3, 0x8a8fa20,3, 0x8a8fa30,3, 0x8a8fa40,3, 0x8a8fa50,3, 0x8a8fa60,3, 0x8a8fa70,3, 0x8a8fa80,3, 0x8a8fa90,3, 0x8a8faa0,3, 0x8a8fab0,3, 0x8a8fac0,3, 0x8a8fad0,3, 0x8a8fae0,3, 0x8a8faf0,3, 0x8a8fb00,3, 0x8a8fb10,3, 0x8a8fb20,3, 0x8a8fb30,3, 0x8a8fb40,3, 0x8a8fb50,3, 0x8a8fb60,3, 0x8a8fb70,3, 0x8a8fb80,3, 0x8a8fb90,3, 0x8a8fba0,3, 0x8a8fbb0,3, 0x8a8fbc0,3, 0x8a8fbd0,3, 0x8a8fbe0,3, 0x8a8fbf0,3, 0x8a8fc00,3, 0x8a8fc10,3, 0x8a8fc20,3, 0x8a8fc30,3, 0x8a8fc40,3, 0x8a8fc50,3, 0x8a8fc60,3, 0x8a8fc70,3, 0x8a8fc80,3, 0x8a8fc90,3, 0x8a8fca0,3, 0x8a8fcb0,3, 0x8a8fcc0,3, 0x8a8fcd0,3, 0x8a8fce0,3, 0x8a8fcf0,3, 0x8a8fd00,3, 0x8a8fd10,3, 0x8a8fd20,3, 0x8a8fd30,3, 0x8a8fd40,3, 0x8a8fd50,3, 0x8a8fd60,3, 0x8a8fd70,3, 0x8a8fd80,3, 0x8a8fd90,3, 0x8a8fda0,3, 0x8a8fdb0,3, 0x8a8fdc0,3, 0x8a8fdd0,3, 0x8a8fde0,3, 0x8a8fdf0,3, 0x8a8fe00,3, 0x8a8fe10,3, 0x8a8fe20,3, 0x8a8fe30,3, 0x8a8fe40,3, 0x8a8fe50,3, 0x8a8fe60,3, 0x8a8fe70,3, 0x8a8fe80,3, 0x8a8fe90,3, 0x8a8fea0,3, 0x8a8feb0,3, 0x8a8fec0,3, 0x8a8fed0,3, 0x8a8fee0,3, 0x8a8fef0,3, 0x8a8ff00,3, 0x8a8ff10,3, 0x8a8ff20,3, 0x8a8ff30,3, 0x8a8ff40,3, 0x8a8ff50,3, 0x8a8ff60,3, 0x8a8ff70,3, 0x8a8ff80,3, 0x8a8ff90,3, 0x8a8ffa0,3, 0x8a8ffb0,3, 0x8a8ffc0,3, 0x8a8ffd0,3, 0x8a8ffe0,3, 0x8a8fff0,3, 0x8a90000,3, 0x8a90010,3, 0x8a90020,3, 0x8a90030,3, 0x8a90040,3, 0x8a90050,3, 0x8a90060,3, 0x8a90070,3, 0x8a90080,3, 0x8a90090,3, 0x8a900a0,3, 0x8a900b0,3, 0x8a900c0,3, 0x8a900d0,3, 0x8a900e0,3, 0x8a900f0,3, 0x8a90100,3, 0x8a90110,3, 0x8a90120,3, 0x8a90130,3, 0x8a90140,3, 0x8a90150,3, 0x8a90160,3, 0x8a90170,3, 0x8a90180,3, 0x8a90190,3, 0x8a901a0,3, 0x8a901b0,3, 0x8a901c0,3, 0x8a901d0,3, 0x8a901e0,3, 0x8a901f0,3, 0x8a90200,3, 0x8a90210,3, 0x8a90220,3, 0x8a90230,3, 0x8a90240,3, 0x8a90250,3, 0x8a90260,3, 0x8a90270,3, 0x8a90280,3, 0x8a90290,3, 0x8a902a0,3, 0x8a902b0,3, 0x8a902c0,3, 0x8a902d0,3, 0x8a902e0,3, 0x8a902f0,3, 0x8aa0000,2, 0x8aa0040,9, 0x8aa0080,3, 0x8aa0090,3, 0x8aa00a0,3, 0x8ac0000,3, 0x8ac0010,3, 0x8ac0020,3, 0x8ac0030,3, 0x8ac0040,3, 0x8ac0050,3, 0x8ac0060,3, 0x8ac0070,3, 0x8ac0080,3, 0x8ac0090,3, 0x8ac00a0,3, 0x8ac00b0,3, 0x8ac00c0,3, 0x8ac00d0,3, 0x8ac00e0,3, 0x8ac00f0,3, 0x8ac0100,2, 0x8ac0140,9, 0x8ac0180,3, 0x8ac0190,3, 0x8ac01a0,3, 0x8ae0000,8900, 0x8af0000,2, 0x8af0040,9, 0x8af0080,3, 0x8af0090,3, 0x8af00a0,3, 0x8b00000,8288, 0x8b10000,2, 0x8b10040,9, 0x8b10080,3, 0x8b10090,3, 0x8b100a0,3, 0x8b20000,34, 0x8b200c0,9, 0x8b20100,3, 0x8b20110,3, 0x8b20120,3, 0x8b40000,3, 0x8b40010,3, 0x8b40020,3, 0x8b40030,3, 0x8b40040,3, 0x8b40050,3, 0x8b40060,3, 0x8b40070,3, 0x8b40080,3, 0x8b40090,3, 0x8b400a0,3, 0x8b400b0,3, 0x8b400c0,3, 0x8b400d0,3, 0x8b400e0,3, 0x8b400f0,3, 0x8b40100,3, 0x8b40110,3, 0x8b40120,3, 0x8b40130,3, 0x8b40140,3, 0x8b40150,3, 0x8b40160,3, 0x8b40170,3, 0x8b40180,3, 0x8b40190,3, 0x8b401a0,3, 0x8b401b0,3, 0x8b401c0,3, 0x8b401d0,3, 0x8b401e0,3, 0x8b401f0,3, 0x8b40200,3, 0x8b40210,3, 0x8b40220,3, 0x8b40230,3, 0x8b40240,3, 0x8b40250,3, 0x8b40260,3, 0x8b40270,3, 0x8b40280,3, 0x8b40290,3, 0x8b402a0,3, 0x8b402b0,3, 0x8b402c0,3, 0x8b402d0,3, 0x8b402e0,3, 0x8b402f0,3, 0x8b40300,3, 0x8b40310,3, 0x8b40320,3, 0x8b40330,3, 0x8b40340,3, 0x8b40350,3, 0x8b40360,3, 0x8b40370,3, 0x8b40380,3, 0x8b40390,3, 0x8b403a0,3, 0x8b403b0,3, 0x8b403c0,3, 0x8b403d0,3, 0x8b403e0,3, 0x8b403f0,3, 0x8b40400,3, 0x8b40410,3, 0x8b40420,3, 0x8b40430,3, 0x8b40440,3, 0x8b40450,3, 0x8b40460,3, 0x8b40470,3, 0x8b40480,3, 0x8b40490,3, 0x8b404a0,3, 0x8b404b0,3, 0x8b404c0,3, 0x8b404d0,3, 0x8b404e0,3, 0x8b404f0,3, 0x8b40500,3, 0x8b40510,3, 0x8b40520,3, 0x8b40530,3, 0x8b40540,3, 0x8b40550,3, 0x8b40560,3, 0x8b40570,3, 0x8b40580,3, 0x8b40590,3, 0x8b405a0,3, 0x8b405b0,3, 0x8b405c0,3, 0x8b405d0,3, 0x8b405e0,3, 0x8b405f0,3, 0x8b40600,3, 0x8b40610,3, 0x8b40620,3, 0x8b40630,3, 0x8b40640,3, 0x8b40650,3, 0x8b40660,3, 0x8b40670,3, 0x8b40680,3, 0x8b40690,3, 0x8b406a0,3, 0x8b406b0,3, 0x8b406c0,3, 0x8b406d0,3, 0x8b406e0,3, 0x8b406f0,3, 0x8b40700,3, 0x8b40710,3, 0x8b40720,3, 0x8b40730,3, 0x8b40740,3, 0x8b40750,3, 0x8b40760,3, 0x8b40770,3, 0x8b40780,3, 0x8b40790,3, 0x8b407a0,3, 0x8b407b0,3, 0x8b407c0,3, 0x8b407d0,3, 0x8b407e0,3, 0x8b407f0,3, 0x8b40800,3, 0x8b40810,3, 0x8b40820,3, 0x8b40830,3, 0x8b40840,3, 0x8b40850,3, 0x8b40860,3, 0x8b40870,3, 0x8b40880,3, 0x8b40890,3, 0x8b408a0,3, 0x8b408b0,3, 0x8b408c0,3, 0x8b408d0,3, 0x8b408e0,3, 0x8b408f0,3, 0x8b40900,3, 0x8b40910,3, 0x8b40920,3, 0x8b40930,3, 0x8b40940,3, 0x8b40950,3, 0x8b40960,3, 0x8b40970,3, 0x8b40980,3, 0x8b40990,3, 0x8b409a0,3, 0x8b409b0,3, 0x8b409c0,3, 0x8b409d0,3, 0x8b409e0,3, 0x8b409f0,3, 0x8b40a00,3, 0x8b40a10,3, 0x8b40a20,3, 0x8b40a30,3, 0x8b40a40,3, 0x8b40a50,3, 0x8b40a60,3, 0x8b40a70,3, 0x8b40a80,3, 0x8b40a90,3, 0x8b40aa0,3, 0x8b40ab0,3, 0x8b40ac0,3, 0x8b40ad0,3, 0x8b40ae0,3, 0x8b40af0,3, 0x8b40b00,3, 0x8b40b10,3, 0x8b40b20,3, 0x8b40b30,3, 0x8b40b40,3, 0x8b40b50,3, 0x8b40b60,3, 0x8b40b70,3, 0x8b40b80,3, 0x8b40b90,3, 0x8b40ba0,3, 0x8b40bb0,3, 0x8b40bc0,3, 0x8b40bd0,3, 0x8b40be0,3, 0x8b40bf0,3, 0x8b40c00,3, 0x8b40c10,3, 0x8b40c20,3, 0x8b40c30,3, 0x8b40c40,3, 0x8b40c50,3, 0x8b40c60,3, 0x8b40c70,3, 0x8b40c80,3, 0x8b40c90,3, 0x8b40ca0,3, 0x8b40cb0,3, 0x8b40cc0,3, 0x8b40cd0,3, 0x8b40ce0,3, 0x8b40cf0,3, 0x8b40d00,3, 0x8b40d10,3, 0x8b40d20,3, 0x8b40d30,3, 0x8b40d40,3, 0x8b40d50,3, 0x8b40d60,3, 0x8b40d70,3, 0x8b40d80,3, 0x8b40d90,3, 0x8b40da0,3, 0x8b40db0,3, 0x8b40dc0,3, 0x8b40dd0,3, 0x8b40de0,3, 0x8b40df0,3, 0x8b40e00,3, 0x8b40e10,3, 0x8b40e20,3, 0x8b40e30,3, 0x8b40e40,3, 0x8b40e50,3, 0x8b40e60,3, 0x8b40e70,3, 0x8b40e80,3, 0x8b40e90,3, 0x8b40ea0,3, 0x8b40eb0,3, 0x8b40ec0,3, 0x8b40ed0,3, 0x8b40ee0,3, 0x8b40ef0,3, 0x8b40f00,3, 0x8b40f10,3, 0x8b40f20,3, 0x8b40f30,3, 0x8b40f40,3, 0x8b40f50,3, 0x8b40f60,3, 0x8b40f70,3, 0x8b40f80,3, 0x8b40f90,3, 0x8b40fa0,3, 0x8b40fb0,3, 0x8b40fc0,3, 0x8b40fd0,3, 0x8b40fe0,3, 0x8b40ff0,3, 0x8b41000,3, 0x8b41010,3, 0x8b41020,3, 0x8b41030,3, 0x8b41040,3, 0x8b41050,3, 0x8b41060,3, 0x8b41070,3, 0x8b41080,3, 0x8b41090,3, 0x8b410a0,3, 0x8b410b0,3, 0x8b410c0,3, 0x8b410d0,3, 0x8b410e0,3, 0x8b410f0,3, 0x8b41100,3, 0x8b41110,3, 0x8b41120,3, 0x8b41130,3, 0x8b41140,3, 0x8b41150,3, 0x8b41160,3, 0x8b41170,3, 0x8b41180,3, 0x8b41190,3, 0x8b411a0,3, 0x8b411b0,3, 0x8b411c0,3, 0x8b411d0,3, 0x8b411e0,3, 0x8b411f0,3, 0x8b41200,3, 0x8b41210,3, 0x8b41220,3, 0x8b41230,3, 0x8b41240,3, 0x8b41250,3, 0x8b41260,3, 0x8b41270,3, 0x8b41280,3, 0x8b41290,3, 0x8b412a0,3, 0x8b412b0,3, 0x8b412c0,3, 0x8b412d0,3, 0x8b412e0,3, 0x8b412f0,3, 0x8b41300,3, 0x8b41310,3, 0x8b41320,3, 0x8b41330,3, 0x8b41340,3, 0x8b41350,3, 0x8b41360,3, 0x8b41370,3, 0x8b41380,3, 0x8b41390,3, 0x8b413a0,3, 0x8b413b0,3, 0x8b413c0,3, 0x8b413d0,3, 0x8b413e0,3, 0x8b413f0,3, 0x8b41400,3, 0x8b41410,3, 0x8b41420,3, 0x8b41430,3, 0x8b41440,3, 0x8b41450,3, 0x8b41460,3, 0x8b41470,3, 0x8b41480,3, 0x8b41490,3, 0x8b414a0,3, 0x8b414b0,3, 0x8b414c0,3, 0x8b414d0,3, 0x8b414e0,3, 0x8b414f0,3, 0x8b41500,3, 0x8b41510,3, 0x8b41520,3, 0x8b41530,3, 0x8b41540,3, 0x8b41550,3, 0x8b41560,3, 0x8b41570,3, 0x8b41580,3, 0x8b41590,3, 0x8b415a0,3, 0x8b415b0,3, 0x8b415c0,3, 0x8b415d0,3, 0x8b415e0,3, 0x8b415f0,3, 0x8b41600,3, 0x8b41610,3, 0x8b41620,3, 0x8b41630,3, 0x8b41640,3, 0x8b41650,3, 0x8b41660,3, 0x8b41670,3, 0x8b41680,3, 0x8b41690,3, 0x8b416a0,3, 0x8b416b0,3, 0x8b416c0,3, 0x8b416d0,3, 0x8b416e0,3, 0x8b416f0,3, 0x8b41700,3, 0x8b41710,3, 0x8b41720,3, 0x8b41730,3, 0x8b41740,3, 0x8b41750,3, 0x8b41760,3, 0x8b41770,3, 0x8b41780,3, 0x8b41790,3, 0x8b417a0,3, 0x8b417b0,3, 0x8b417c0,3, 0x8b417d0,3, 0x8b417e0,3, 0x8b417f0,3, 0x8b41800,3, 0x8b41810,3, 0x8b41820,3, 0x8b41830,3, 0x8b41840,3, 0x8b41850,3, 0x8b41860,3, 0x8b41870,3, 0x8b41880,3, 0x8b41890,3, 0x8b418a0,3, 0x8b418b0,3, 0x8b418c0,3, 0x8b418d0,3, 0x8b418e0,3, 0x8b418f0,3, 0x8b41900,3, 0x8b41910,3, 0x8b41920,3, 0x8b41930,3, 0x8b41940,3, 0x8b41950,3, 0x8b41960,3, 0x8b41970,3, 0x8b41980,3, 0x8b41990,3, 0x8b419a0,3, 0x8b419b0,3, 0x8b419c0,3, 0x8b419d0,3, 0x8b419e0,3, 0x8b419f0,3, 0x8b41a00,3, 0x8b41a10,3, 0x8b41a20,3, 0x8b41a30,3, 0x8b41a40,3, 0x8b41a50,3, 0x8b41a60,3, 0x8b41a70,3, 0x8b41a80,3, 0x8b41a90,3, 0x8b41aa0,3, 0x8b41ab0,3, 0x8b41ac0,3, 0x8b41ad0,3, 0x8b41ae0,3, 0x8b41af0,3, 0x8b41b00,3, 0x8b41b10,3, 0x8b41b20,3, 0x8b41b30,3, 0x8b41b40,3, 0x8b41b50,3, 0x8b41b60,3, 0x8b41b70,3, 0x8b41b80,3, 0x8b41b90,3, 0x8b41ba0,3, 0x8b41bb0,3, 0x8b41bc0,3, 0x8b41bd0,3, 0x8b41be0,3, 0x8b41bf0,3, 0x8b41c00,3, 0x8b41c10,3, 0x8b41c20,3, 0x8b41c30,3, 0x8b41c40,3, 0x8b41c50,3, 0x8b41c60,3, 0x8b41c70,3, 0x8b41c80,3, 0x8b41c90,3, 0x8b41ca0,3, 0x8b41cb0,3, 0x8b41cc0,3, 0x8b41cd0,3, 0x8b41ce0,3, 0x8b41cf0,3, 0x8b41d00,3, 0x8b41d10,3, 0x8b41d20,3, 0x8b41d30,3, 0x8b41d40,3, 0x8b41d50,3, 0x8b41d60,3, 0x8b41d70,3, 0x8b41d80,3, 0x8b41d90,3, 0x8b41da0,3, 0x8b41db0,3, 0x8b41dc0,3, 0x8b41dd0,3, 0x8b41de0,3, 0x8b41df0,3, 0x8b41e00,3, 0x8b41e10,3, 0x8b41e20,3, 0x8b41e30,3, 0x8b41e40,3, 0x8b41e50,3, 0x8b41e60,3, 0x8b41e70,3, 0x8b41e80,3, 0x8b41e90,3, 0x8b41ea0,3, 0x8b41eb0,3, 0x8b41ec0,3, 0x8b41ed0,3, 0x8b41ee0,3, 0x8b41ef0,3, 0x8b41f00,3, 0x8b41f10,3, 0x8b41f20,3, 0x8b41f30,3, 0x8b41f40,3, 0x8b41f50,3, 0x8b41f60,3, 0x8b41f70,3, 0x8b41f80,3, 0x8b41f90,3, 0x8b41fa0,3, 0x8b41fb0,3, 0x8b41fc0,3, 0x8b41fd0,3, 0x8b41fe0,3, 0x8b41ff0,3, 0x8b42000,3, 0x8b42010,3, 0x8b42020,3, 0x8b42030,3, 0x8b42040,3, 0x8b42050,3, 0x8b42060,3, 0x8b42070,3, 0x8b42080,3, 0x8b42090,3, 0x8b420a0,3, 0x8b420b0,3, 0x8b420c0,3, 0x8b420d0,3, 0x8b420e0,3, 0x8b420f0,3, 0x8b42100,3, 0x8b42110,3, 0x8b42120,3, 0x8b42130,3, 0x8b42140,3, 0x8b42150,3, 0x8b42160,3, 0x8b42170,3, 0x8b42180,3, 0x8b42190,3, 0x8b421a0,3, 0x8b421b0,3, 0x8b421c0,3, 0x8b421d0,3, 0x8b421e0,3, 0x8b421f0,3, 0x8b42200,3, 0x8b42210,3, 0x8b42220,3, 0x8b42230,3, 0x8b42240,3, 0x8b42250,3, 0x8b42260,3, 0x8b42270,3, 0x8b42280,3, 0x8b42290,3, 0x8b422a0,3, 0x8b422b0,3, 0x8b422c0,3, 0x8b422d0,3, 0x8b422e0,3, 0x8b422f0,3, 0x8b42300,3, 0x8b42310,3, 0x8b42320,3, 0x8b42330,3, 0x8b42340,3, 0x8b42350,3, 0x8b42360,3, 0x8b42370,3, 0x8b42380,3, 0x8b42390,3, 0x8b423a0,3, 0x8b423b0,3, 0x8b423c0,3, 0x8b423d0,3, 0x8b423e0,3, 0x8b423f0,3, 0x8b42400,3, 0x8b42410,3, 0x8b42420,3, 0x8b42430,3, 0x8b42440,3, 0x8b42450,3, 0x8b42460,3, 0x8b42470,3, 0x8b42480,3, 0x8b42490,3, 0x8b424a0,3, 0x8b424b0,3, 0x8b424c0,3, 0x8b424d0,3, 0x8b424e0,3, 0x8b424f0,3, 0x8b42500,3, 0x8b42510,3, 0x8b42520,3, 0x8b42530,3, 0x8b42540,3, 0x8b42550,3, 0x8b42560,3, 0x8b42570,3, 0x8b42580,3, 0x8b42590,3, 0x8b425a0,3, 0x8b425b0,3, 0x8b425c0,3, 0x8b425d0,3, 0x8b425e0,3, 0x8b425f0,3, 0x8b42600,3, 0x8b42610,3, 0x8b42620,3, 0x8b42630,3, 0x8b42640,3, 0x8b42650,3, 0x8b42660,3, 0x8b42670,3, 0x8b42680,3, 0x8b42690,3, 0x8b426a0,3, 0x8b426b0,3, 0x8b426c0,3, 0x8b426d0,3, 0x8b426e0,3, 0x8b426f0,3, 0x8b42700,3, 0x8b42710,3, 0x8b42720,3, 0x8b42730,3, 0x8b42740,3, 0x8b42750,3, 0x8b42760,3, 0x8b42770,3, 0x8b42780,3, 0x8b42790,3, 0x8b427a0,3, 0x8b427b0,3, 0x8b427c0,3, 0x8b427d0,3, 0x8b427e0,3, 0x8b427f0,3, 0x8b42800,3, 0x8b42810,3, 0x8b42820,3, 0x8b42830,3, 0x8b42840,3, 0x8b42850,3, 0x8b42860,3, 0x8b42870,3, 0x8b42880,3, 0x8b42890,3, 0x8b428a0,3, 0x8b428b0,3, 0x8b428c0,3, 0x8b428d0,3, 0x8b428e0,3, 0x8b428f0,3, 0x8b42900,3, 0x8b42910,3, 0x8b42920,3, 0x8b42930,3, 0x8b42940,3, 0x8b42950,3, 0x8b42960,3, 0x8b42970,3, 0x8b42980,3, 0x8b42990,3, 0x8b429a0,3, 0x8b429b0,3, 0x8b429c0,3, 0x8b429d0,3, 0x8b429e0,3, 0x8b429f0,3, 0x8b42a00,3, 0x8b42a10,3, 0x8b42a20,3, 0x8b42a30,3, 0x8b42a40,3, 0x8b42a50,3, 0x8b42a60,3, 0x8b42a70,3, 0x8b42a80,3, 0x8b42a90,3, 0x8b42aa0,3, 0x8b42ab0,3, 0x8b42ac0,3, 0x8b42ad0,3, 0x8b42ae0,3, 0x8b42af0,3, 0x8b42b00,3, 0x8b42b10,3, 0x8b42b20,3, 0x8b42b30,3, 0x8b42b40,3, 0x8b42b50,3, 0x8b42b60,3, 0x8b42b70,3, 0x8b42b80,3, 0x8b42b90,3, 0x8b42ba0,3, 0x8b42bb0,3, 0x8b42bc0,3, 0x8b42bd0,3, 0x8b42be0,3, 0x8b42bf0,3, 0x8b42c00,3, 0x8b42c10,3, 0x8b42c20,3, 0x8b42c30,3, 0x8b42c40,3, 0x8b42c50,3, 0x8b42c60,3, 0x8b42c70,3, 0x8b42c80,3, 0x8b42c90,3, 0x8b42ca0,3, 0x8b42cb0,3, 0x8b42cc0,3, 0x8b42cd0,3, 0x8b42ce0,3, 0x8b42cf0,3, 0x8b42d00,3, 0x8b42d10,3, 0x8b42d20,3, 0x8b42d30,3, 0x8b42d40,3, 0x8b42d50,3, 0x8b42d60,3, 0x8b42d70,3, 0x8b42d80,3, 0x8b42d90,3, 0x8b42da0,3, 0x8b42db0,3, 0x8b42dc0,3, 0x8b42dd0,3, 0x8b42de0,3, 0x8b42df0,3, 0x8b42e00,3, 0x8b42e10,3, 0x8b42e20,3, 0x8b42e30,3, 0x8b42e40,3, 0x8b42e50,3, 0x8b42e60,3, 0x8b42e70,3, 0x8b42e80,3, 0x8b42e90,3, 0x8b42ea0,3, 0x8b42eb0,3, 0x8b42ec0,3, 0x8b42ed0,3, 0x8b42ee0,3, 0x8b42ef0,3, 0x8b42f00,3, 0x8b42f10,3, 0x8b42f20,3, 0x8b42f30,3, 0x8b42f40,3, 0x8b42f50,3, 0x8b42f60,3, 0x8b42f70,3, 0x8b42f80,3, 0x8b42f90,3, 0x8b42fa0,3, 0x8b42fb0,3, 0x8b42fc0,3, 0x8b42fd0,3, 0x8b42fe0,3, 0x8b42ff0,3, 0x8b43000,3, 0x8b43010,3, 0x8b43020,3, 0x8b43030,3, 0x8b43040,3, 0x8b43050,3, 0x8b43060,3, 0x8b43070,3, 0x8b43080,3, 0x8b43090,3, 0x8b430a0,3, 0x8b430b0,3, 0x8b430c0,3, 0x8b430d0,3, 0x8b430e0,3, 0x8b430f0,3, 0x8b43100,3, 0x8b43110,3, 0x8b43120,3, 0x8b43130,3, 0x8b43140,3, 0x8b43150,3, 0x8b43160,3, 0x8b43170,3, 0x8b43180,3, 0x8b43190,3, 0x8b431a0,3, 0x8b431b0,3, 0x8b431c0,3, 0x8b431d0,3, 0x8b431e0,3, 0x8b431f0,3, 0x8b43200,3, 0x8b43210,3, 0x8b43220,3, 0x8b43230,3, 0x8b43240,3, 0x8b43250,3, 0x8b43260,3, 0x8b43270,3, 0x8b43280,3, 0x8b43290,3, 0x8b432a0,3, 0x8b432b0,3, 0x8b432c0,3, 0x8b432d0,3, 0x8b432e0,3, 0x8b432f0,3, 0x8b43300,3, 0x8b43310,3, 0x8b43320,3, 0x8b43330,3, 0x8b43340,3, 0x8b43350,3, 0x8b43360,3, 0x8b43370,3, 0x8b43380,3, 0x8b43390,3, 0x8b433a0,3, 0x8b433b0,3, 0x8b433c0,3, 0x8b433d0,3, 0x8b433e0,3, 0x8b433f0,3, 0x8b43400,3, 0x8b43410,3, 0x8b43420,3, 0x8b43430,3, 0x8b43440,3, 0x8b43450,3, 0x8b43460,3, 0x8b43470,3, 0x8b43480,3, 0x8b43490,3, 0x8b434a0,3, 0x8b434b0,3, 0x8b434c0,3, 0x8b434d0,3, 0x8b434e0,3, 0x8b434f0,3, 0x8b43500,3, 0x8b43510,3, 0x8b43520,3, 0x8b43530,3, 0x8b43540,3, 0x8b43550,3, 0x8b43560,3, 0x8b43570,3, 0x8b43580,3, 0x8b43590,3, 0x8b435a0,3, 0x8b435b0,3, 0x8b435c0,3, 0x8b435d0,3, 0x8b435e0,3, 0x8b435f0,3, 0x8b43600,3, 0x8b43610,3, 0x8b43620,3, 0x8b43630,3, 0x8b43640,3, 0x8b43650,3, 0x8b43660,3, 0x8b43670,3, 0x8b43680,3, 0x8b43690,3, 0x8b436a0,3, 0x8b436b0,3, 0x8b436c0,3, 0x8b436d0,3, 0x8b436e0,3, 0x8b436f0,3, 0x8b43700,3, 0x8b43710,3, 0x8b43720,3, 0x8b43730,3, 0x8b43740,3, 0x8b43750,3, 0x8b43760,3, 0x8b43770,3, 0x8b43780,3, 0x8b43790,3, 0x8b437a0,3, 0x8b437b0,3, 0x8b437c0,3, 0x8b437d0,3, 0x8b437e0,3, 0x8b437f0,3, 0x8b43800,3, 0x8b43810,3, 0x8b43820,3, 0x8b43830,3, 0x8b43840,3, 0x8b43850,3, 0x8b43860,3, 0x8b43870,3, 0x8b43880,3, 0x8b43890,3, 0x8b438a0,3, 0x8b438b0,3, 0x8b438c0,3, 0x8b438d0,3, 0x8b438e0,3, 0x8b438f0,3, 0x8b43900,3, 0x8b43910,3, 0x8b43920,3, 0x8b43930,3, 0x8b43940,3, 0x8b43950,3, 0x8b43960,3, 0x8b43970,3, 0x8b43980,3, 0x8b43990,3, 0x8b439a0,3, 0x8b439b0,3, 0x8b439c0,3, 0x8b439d0,3, 0x8b439e0,3, 0x8b439f0,3, 0x8b43a00,3, 0x8b43a10,3, 0x8b43a20,3, 0x8b43a30,3, 0x8b43a40,3, 0x8b43a50,3, 0x8b43a60,3, 0x8b43a70,3, 0x8b43a80,3, 0x8b43a90,3, 0x8b43aa0,3, 0x8b43ab0,3, 0x8b43ac0,3, 0x8b43ad0,3, 0x8b43ae0,3, 0x8b43af0,3, 0x8b43b00,3, 0x8b43b10,3, 0x8b43b20,3, 0x8b43b30,3, 0x8b43b40,3, 0x8b43b50,3, 0x8b43b60,3, 0x8b43b70,3, 0x8b43b80,3, 0x8b43b90,3, 0x8b43ba0,3, 0x8b43bb0,3, 0x8b43bc0,3, 0x8b43bd0,3, 0x8b43be0,3, 0x8b43bf0,3, 0x8b43c00,3, 0x8b43c10,3, 0x8b43c20,3, 0x8b43c30,3, 0x8b43c40,3, 0x8b43c50,3, 0x8b43c60,3, 0x8b43c70,3, 0x8b43c80,3, 0x8b43c90,3, 0x8b43ca0,3, 0x8b43cb0,3, 0x8b43cc0,3, 0x8b43cd0,3, 0x8b43ce0,3, 0x8b43cf0,3, 0x8b43d00,3, 0x8b43d10,3, 0x8b43d20,3, 0x8b43d30,3, 0x8b43d40,3, 0x8b43d50,3, 0x8b43d60,3, 0x8b43d70,3, 0x8b43d80,3, 0x8b43d90,3, 0x8b43da0,3, 0x8b43db0,3, 0x8b43dc0,3, 0x8b43dd0,3, 0x8b43de0,3, 0x8b43df0,3, 0x8b43e00,3, 0x8b43e10,3, 0x8b43e20,3, 0x8b43e30,3, 0x8b43e40,3, 0x8b43e50,3, 0x8b43e60,3, 0x8b43e70,3, 0x8b43e80,3, 0x8b43e90,3, 0x8b43ea0,3, 0x8b43eb0,3, 0x8b43ec0,3, 0x8b43ed0,3, 0x8b43ee0,3, 0x8b43ef0,3, 0x8b43f00,3, 0x8b43f10,3, 0x8b43f20,3, 0x8b43f30,3, 0x8b43f40,3, 0x8b43f50,3, 0x8b43f60,3, 0x8b43f70,3, 0x8b43f80,3, 0x8b43f90,3, 0x8b43fa0,3, 0x8b43fb0,3, 0x8b43fc0,3, 0x8b43fd0,3, 0x8b43fe0,3, 0x8b43ff0,3, 0x8b44000,3, 0x8b44010,3, 0x8b44020,3, 0x8b44030,3, 0x8b44040,3, 0x8b44050,3, 0x8b44060,3, 0x8b44070,3, 0x8b44080,3, 0x8b44090,3, 0x8b440a0,3, 0x8b440b0,3, 0x8b440c0,3, 0x8b440d0,3, 0x8b440e0,3, 0x8b440f0,3, 0x8b44100,3, 0x8b44110,3, 0x8b44120,3, 0x8b44130,3, 0x8b44140,3, 0x8b44150,3, 0x8b44160,3, 0x8b44170,3, 0x8b44180,3, 0x8b44190,3, 0x8b441a0,3, 0x8b441b0,3, 0x8b441c0,3, 0x8b441d0,3, 0x8b441e0,3, 0x8b441f0,3, 0x8b44200,3, 0x8b44210,3, 0x8b44220,3, 0x8b44230,3, 0x8b44240,3, 0x8b44250,3, 0x8b44260,3, 0x8b44270,3, 0x8b44280,3, 0x8b44290,3, 0x8b442a0,3, 0x8b442b0,3, 0x8b442c0,3, 0x8b442d0,3, 0x8b442e0,3, 0x8b442f0,3, 0x8b44300,3, 0x8b44310,3, 0x8b44320,3, 0x8b44330,3, 0x8b44340,3, 0x8b44350,3, 0x8b44360,3, 0x8b44370,3, 0x8b44380,3, 0x8b44390,3, 0x8b443a0,3, 0x8b443b0,3, 0x8b443c0,3, 0x8b443d0,3, 0x8b443e0,3, 0x8b443f0,3, 0x8b44400,3, 0x8b44410,3, 0x8b44420,3, 0x8b44430,3, 0x8b44440,3, 0x8b44450,3, 0x8b44460,3, 0x8b44470,3, 0x8b44480,3, 0x8b44490,3, 0x8b444a0,3, 0x8b444b0,3, 0x8b444c0,3, 0x8b444d0,3, 0x8b444e0,3, 0x8b444f0,3, 0x8b44500,3, 0x8b44510,3, 0x8b44520,3, 0x8b44530,3, 0x8b44540,3, 0x8b44550,3, 0x8b44560,3, 0x8b44570,3, 0x8b44580,3, 0x8b44590,3, 0x8b445a0,3, 0x8b445b0,3, 0x8b445c0,3, 0x8b445d0,3, 0x8b445e0,3, 0x8b445f0,3, 0x8b44600,3, 0x8b44610,3, 0x8b44620,3, 0x8b44630,3, 0x8b44640,3, 0x8b44650,3, 0x8b44660,3, 0x8b44670,3, 0x8b44680,3, 0x8b44690,3, 0x8b446a0,3, 0x8b446b0,3, 0x8b446c0,3, 0x8b446d0,3, 0x8b446e0,3, 0x8b446f0,3, 0x8b44700,3, 0x8b44710,3, 0x8b44720,3, 0x8b44730,3, 0x8b44740,3, 0x8b44750,3, 0x8b44760,3, 0x8b44770,3, 0x8b44780,3, 0x8b44790,3, 0x8b447a0,3, 0x8b447b0,3, 0x8b447c0,3, 0x8b447d0,3, 0x8b447e0,3, 0x8b447f0,3, 0x8b44800,3, 0x8b44810,3, 0x8b44820,3, 0x8b44830,3, 0x8b44840,3, 0x8b44850,3, 0x8b44860,3, 0x8b44870,3, 0x8b44880,3, 0x8b44890,3, 0x8b448a0,3, 0x8b448b0,3, 0x8b448c0,3, 0x8b448d0,3, 0x8b448e0,3, 0x8b448f0,3, 0x8b44900,3, 0x8b44910,3, 0x8b44920,3, 0x8b44930,3, 0x8b44940,3, 0x8b44950,3, 0x8b44960,3, 0x8b44970,3, 0x8b44980,3, 0x8b44990,3, 0x8b449a0,3, 0x8b449b0,3, 0x8b449c0,3, 0x8b449d0,3, 0x8b449e0,3, 0x8b449f0,3, 0x8b44a00,3, 0x8b44a10,3, 0x8b44a20,3, 0x8b44a30,3, 0x8b44a40,3, 0x8b44a50,3, 0x8b44a60,3, 0x8b44a70,3, 0x8b44a80,3, 0x8b44a90,3, 0x8b44aa0,3, 0x8b44ab0,3, 0x8b44ac0,3, 0x8b44ad0,3, 0x8b44ae0,3, 0x8b44af0,3, 0x8b44b00,3, 0x8b44b10,3, 0x8b44b20,3, 0x8b44b30,3, 0x8b44b40,3, 0x8b44b50,3, 0x8b44b60,3, 0x8b44b70,3, 0x8b44b80,3, 0x8b44b90,3, 0x8b44ba0,3, 0x8b44bb0,3, 0x8b44bc0,3, 0x8b44bd0,3, 0x8b44be0,3, 0x8b44bf0,3, 0x8b44c00,3, 0x8b44c10,3, 0x8b44c20,3, 0x8b44c30,3, 0x8b44c40,3, 0x8b44c50,3, 0x8b44c60,3, 0x8b44c70,3, 0x8b44c80,3, 0x8b44c90,3, 0x8b44ca0,3, 0x8b44cb0,3, 0x8b44cc0,3, 0x8b44cd0,3, 0x8b44ce0,3, 0x8b44cf0,3, 0x8b44d00,3, 0x8b44d10,3, 0x8b44d20,3, 0x8b44d30,3, 0x8b44d40,3, 0x8b44d50,3, 0x8b44d60,3, 0x8b44d70,3, 0x8b44d80,3, 0x8b44d90,3, 0x8b44da0,3, 0x8b44db0,3, 0x8b44dc0,3, 0x8b44dd0,3, 0x8b44de0,3, 0x8b44df0,3, 0x8b44e00,3, 0x8b44e10,3, 0x8b44e20,3, 0x8b44e30,3, 0x8b44e40,3, 0x8b44e50,3, 0x8b44e60,3, 0x8b44e70,3, 0x8b44e80,3, 0x8b44e90,3, 0x8b44ea0,3, 0x8b44eb0,3, 0x8b44ec0,3, 0x8b44ed0,3, 0x8b44ee0,3, 0x8b44ef0,3, 0x8b44f00,3, 0x8b44f10,3, 0x8b44f20,3, 0x8b44f30,3, 0x8b44f40,3, 0x8b44f50,3, 0x8b44f60,3, 0x8b44f70,3, 0x8b44f80,3, 0x8b44f90,3, 0x8b44fa0,3, 0x8b44fb0,3, 0x8b44fc0,3, 0x8b44fd0,3, 0x8b44fe0,3, 0x8b44ff0,3, 0x8b45000,3, 0x8b45010,3, 0x8b45020,3, 0x8b45030,3, 0x8b45040,3, 0x8b45050,3, 0x8b45060,3, 0x8b45070,3, 0x8b45080,3, 0x8b45090,3, 0x8b450a0,3, 0x8b450b0,3, 0x8b450c0,3, 0x8b450d0,3, 0x8b450e0,3, 0x8b450f0,3, 0x8b45100,3, 0x8b45110,3, 0x8b45120,3, 0x8b45130,3, 0x8b45140,3, 0x8b45150,3, 0x8b45160,3, 0x8b45170,3, 0x8b45180,3, 0x8b45190,3, 0x8b451a0,3, 0x8b451b0,3, 0x8b451c0,3, 0x8b451d0,3, 0x8b451e0,3, 0x8b451f0,3, 0x8b45200,3, 0x8b45210,3, 0x8b45220,3, 0x8b45230,3, 0x8b45240,3, 0x8b45250,3, 0x8b45260,3, 0x8b45270,3, 0x8b45280,3, 0x8b45290,3, 0x8b452a0,3, 0x8b452b0,3, 0x8b452c0,3, 0x8b452d0,3, 0x8b452e0,3, 0x8b452f0,3, 0x8b45300,3, 0x8b45310,3, 0x8b45320,3, 0x8b45330,3, 0x8b45340,3, 0x8b45350,3, 0x8b45360,3, 0x8b45370,3, 0x8b45380,3, 0x8b45390,3, 0x8b453a0,3, 0x8b453b0,3, 0x8b453c0,3, 0x8b453d0,3, 0x8b453e0,3, 0x8b453f0,3, 0x8b45400,3, 0x8b45410,3, 0x8b45420,3, 0x8b45430,3, 0x8b45440,3, 0x8b45450,3, 0x8b45460,3, 0x8b45470,3, 0x8b45480,3, 0x8b45490,3, 0x8b454a0,3, 0x8b454b0,3, 0x8b454c0,3, 0x8b454d0,3, 0x8b454e0,3, 0x8b454f0,3, 0x8b45500,3, 0x8b45510,3, 0x8b45520,3, 0x8b45530,3, 0x8b45540,3, 0x8b45550,3, 0x8b45560,3, 0x8b45570,3, 0x8b45580,3, 0x8b45590,3, 0x8b455a0,3, 0x8b455b0,3, 0x8b455c0,3, 0x8b455d0,3, 0x8b455e0,3, 0x8b455f0,3, 0x8b45600,3, 0x8b45610,3, 0x8b45620,3, 0x8b45630,3, 0x8b45640,3, 0x8b45650,3, 0x8b45660,3, 0x8b45670,3, 0x8b45680,3, 0x8b45690,3, 0x8b456a0,3, 0x8b456b0,3, 0x8b456c0,3, 0x8b456d0,3, 0x8b456e0,3, 0x8b456f0,3, 0x8b45700,3, 0x8b45710,3, 0x8b45720,3, 0x8b45730,3, 0x8b45740,3, 0x8b45750,3, 0x8b45760,3, 0x8b45770,3, 0x8b45780,3, 0x8b45790,3, 0x8b457a0,3, 0x8b457b0,3, 0x8b457c0,3, 0x8b457d0,3, 0x8b457e0,3, 0x8b457f0,3, 0x8b45800,3, 0x8b45810,3, 0x8b45820,3, 0x8b45830,3, 0x8b45840,3, 0x8b45850,3, 0x8b45860,3, 0x8b45870,3, 0x8b45880,3, 0x8b45890,3, 0x8b458a0,3, 0x8b458b0,3, 0x8b458c0,3, 0x8b458d0,3, 0x8b458e0,3, 0x8b458f0,3, 0x8b45900,3, 0x8b45910,3, 0x8b45920,3, 0x8b45930,3, 0x8b45940,3, 0x8b45950,3, 0x8b45960,3, 0x8b45970,3, 0x8b45980,3, 0x8b45990,3, 0x8b459a0,3, 0x8b459b0,3, 0x8b459c0,3, 0x8b459d0,3, 0x8b459e0,3, 0x8b459f0,3, 0x8b45a00,3, 0x8b45a10,3, 0x8b45a20,3, 0x8b45a30,3, 0x8b45a40,3, 0x8b45a50,3, 0x8b45a60,3, 0x8b45a70,3, 0x8b45a80,3, 0x8b45a90,3, 0x8b45aa0,3, 0x8b45ab0,3, 0x8b45ac0,3, 0x8b45ad0,3, 0x8b45ae0,3, 0x8b45af0,3, 0x8b45b00,3, 0x8b45b10,3, 0x8b45b20,3, 0x8b45b30,3, 0x8b45b40,3, 0x8b45b50,3, 0x8b45b60,3, 0x8b45b70,3, 0x8b45b80,3, 0x8b45b90,3, 0x8b45ba0,3, 0x8b45bb0,3, 0x8b45bc0,3, 0x8b45bd0,3, 0x8b45be0,3, 0x8b45bf0,3, 0x8b45c00,3, 0x8b45c10,3, 0x8b45c20,3, 0x8b45c30,3, 0x8b45c40,3, 0x8b45c50,3, 0x8b45c60,3, 0x8b45c70,3, 0x8b45c80,3, 0x8b45c90,3, 0x8b45ca0,3, 0x8b45cb0,3, 0x8b45cc0,3, 0x8b45cd0,3, 0x8b45ce0,3, 0x8b45cf0,3, 0x8b45d00,3, 0x8b45d10,3, 0x8b45d20,3, 0x8b45d30,3, 0x8b45d40,3, 0x8b45d50,3, 0x8b45d60,3, 0x8b45d70,3, 0x8b45d80,3, 0x8b45d90,3, 0x8b45da0,3, 0x8b45db0,3, 0x8b45dc0,3, 0x8b45dd0,3, 0x8b45de0,3, 0x8b45df0,3, 0x8b45e00,3, 0x8b45e10,3, 0x8b45e20,3, 0x8b45e30,3, 0x8b45e40,3, 0x8b45e50,3, 0x8b45e60,3, 0x8b45e70,3, 0x8b45e80,3, 0x8b45e90,3, 0x8b45ea0,3, 0x8b45eb0,3, 0x8b45ec0,3, 0x8b45ed0,3, 0x8b45ee0,3, 0x8b45ef0,3, 0x8b45f00,3, 0x8b45f10,3, 0x8b45f20,3, 0x8b45f30,3, 0x8b45f40,3, 0x8b45f50,3, 0x8b45f60,3, 0x8b45f70,3, 0x8b45f80,3, 0x8b45f90,3, 0x8b45fa0,3, 0x8b45fb0,3, 0x8b45fc0,3, 0x8b45fd0,3, 0x8b45fe0,3, 0x8b45ff0,3, 0x8b46000,3, 0x8b46010,3, 0x8b46020,3, 0x8b46030,3, 0x8b46040,3, 0x8b46050,3, 0x8b46060,3, 0x8b46070,3, 0x8b46080,3, 0x8b46090,3, 0x8b460a0,3, 0x8b460b0,3, 0x8b460c0,3, 0x8b460d0,3, 0x8b460e0,3, 0x8b460f0,3, 0x8b46100,3, 0x8b46110,3, 0x8b46120,3, 0x8b46130,3, 0x8b46140,3, 0x8b46150,3, 0x8b46160,3, 0x8b46170,3, 0x8b46180,3, 0x8b46190,3, 0x8b461a0,3, 0x8b461b0,3, 0x8b461c0,3, 0x8b461d0,3, 0x8b461e0,3, 0x8b461f0,3, 0x8b46200,3, 0x8b46210,3, 0x8b46220,3, 0x8b46230,3, 0x8b46240,3, 0x8b46250,3, 0x8b46260,3, 0x8b46270,3, 0x8b46280,3, 0x8b46290,3, 0x8b462a0,3, 0x8b462b0,3, 0x8b462c0,3, 0x8b462d0,3, 0x8b462e0,3, 0x8b462f0,3, 0x8b46300,3, 0x8b46310,3, 0x8b46320,3, 0x8b46330,3, 0x8b46340,3, 0x8b46350,3, 0x8b46360,3, 0x8b46370,3, 0x8b46380,3, 0x8b46390,3, 0x8b463a0,3, 0x8b463b0,3, 0x8b463c0,3, 0x8b463d0,3, 0x8b463e0,3, 0x8b463f0,3, 0x8b46400,3, 0x8b46410,3, 0x8b46420,3, 0x8b46430,3, 0x8b46440,3, 0x8b46450,3, 0x8b46460,3, 0x8b46470,3, 0x8b46480,3, 0x8b46490,3, 0x8b464a0,3, 0x8b464b0,3, 0x8b464c0,3, 0x8b464d0,3, 0x8b464e0,3, 0x8b464f0,3, 0x8b46500,3, 0x8b46510,3, 0x8b46520,3, 0x8b46530,3, 0x8b46540,3, 0x8b46550,3, 0x8b46560,3, 0x8b46570,3, 0x8b46580,3, 0x8b46590,3, 0x8b465a0,3, 0x8b465b0,3, 0x8b465c0,3, 0x8b465d0,3, 0x8b465e0,3, 0x8b465f0,3, 0x8b46600,3, 0x8b46610,3, 0x8b46620,3, 0x8b46630,3, 0x8b46640,3, 0x8b46650,3, 0x8b46660,3, 0x8b46670,3, 0x8b46680,3, 0x8b46690,3, 0x8b466a0,3, 0x8b466b0,3, 0x8b466c0,3, 0x8b466d0,3, 0x8b466e0,3, 0x8b466f0,3, 0x8b46700,3, 0x8b46710,3, 0x8b46720,3, 0x8b46730,3, 0x8b46740,3, 0x8b46750,3, 0x8b46760,3, 0x8b46770,3, 0x8b46780,3, 0x8b46790,3, 0x8b467a0,3, 0x8b467b0,3, 0x8b467c0,3, 0x8b467d0,3, 0x8b467e0,3, 0x8b467f0,3, 0x8b46800,3, 0x8b46810,3, 0x8b46820,3, 0x8b46830,3, 0x8b46840,3, 0x8b46850,3, 0x8b46860,3, 0x8b46870,3, 0x8b46880,3, 0x8b46890,3, 0x8b468a0,3, 0x8b468b0,3, 0x8b468c0,3, 0x8b468d0,3, 0x8b468e0,3, 0x8b468f0,3, 0x8b46900,3, 0x8b46910,3, 0x8b46920,3, 0x8b46930,3, 0x8b46940,3, 0x8b46950,3, 0x8b46960,3, 0x8b46970,3, 0x8b46980,3, 0x8b46990,3, 0x8b469a0,3, 0x8b469b0,3, 0x8b469c0,3, 0x8b469d0,3, 0x8b469e0,3, 0x8b469f0,3, 0x8b46a00,3, 0x8b46a10,3, 0x8b46a20,3, 0x8b46a30,3, 0x8b46a40,3, 0x8b46a50,3, 0x8b46a60,3, 0x8b46a70,3, 0x8b46a80,3, 0x8b46a90,3, 0x8b46aa0,3, 0x8b46ab0,3, 0x8b46ac0,3, 0x8b46ad0,3, 0x8b46ae0,3, 0x8b46af0,3, 0x8b46b00,3, 0x8b46b10,3, 0x8b46b20,3, 0x8b46b30,3, 0x8b46b40,3, 0x8b46b50,3, 0x8b46b60,3, 0x8b46b70,3, 0x8b46b80,3, 0x8b46b90,3, 0x8b46ba0,3, 0x8b46bb0,3, 0x8b46bc0,3, 0x8b46bd0,3, 0x8b46be0,3, 0x8b46bf0,3, 0x8b46c00,3, 0x8b46c10,3, 0x8b46c20,3, 0x8b46c30,3, 0x8b46c40,3, 0x8b46c50,3, 0x8b46c60,3, 0x8b46c70,3, 0x8b46c80,3, 0x8b46c90,3, 0x8b46ca0,3, 0x8b46cb0,3, 0x8b46cc0,3, 0x8b46cd0,3, 0x8b46ce0,3, 0x8b46cf0,3, 0x8b46d00,3, 0x8b46d10,3, 0x8b46d20,3, 0x8b46d30,3, 0x8b46d40,3, 0x8b46d50,3, 0x8b46d60,3, 0x8b46d70,3, 0x8b46d80,3, 0x8b46d90,3, 0x8b46da0,3, 0x8b46db0,3, 0x8b46dc0,3, 0x8b46dd0,3, 0x8b46de0,3, 0x8b46df0,3, 0x8b46e00,3, 0x8b46e10,3, 0x8b46e20,3, 0x8b46e30,3, 0x8b46e40,3, 0x8b46e50,3, 0x8b46e60,3, 0x8b46e70,3, 0x8b46e80,3, 0x8b46e90,3, 0x8b46ea0,3, 0x8b46eb0,3, 0x8b46ec0,3, 0x8b46ed0,3, 0x8b46ee0,3, 0x8b46ef0,3, 0x8b46f00,3, 0x8b46f10,3, 0x8b46f20,3, 0x8b46f30,3, 0x8b46f40,3, 0x8b46f50,3, 0x8b46f60,3, 0x8b46f70,3, 0x8b46f80,3, 0x8b46f90,3, 0x8b46fa0,3, 0x8b46fb0,3, 0x8b46fc0,3, 0x8b46fd0,3, 0x8b46fe0,3, 0x8b46ff0,3, 0x8b47000,3, 0x8b47010,3, 0x8b47020,3, 0x8b47030,3, 0x8b47040,3, 0x8b47050,3, 0x8b47060,3, 0x8b47070,3, 0x8b47080,3, 0x8b47090,3, 0x8b470a0,3, 0x8b470b0,3, 0x8b470c0,3, 0x8b470d0,3, 0x8b470e0,3, 0x8b470f0,3, 0x8b47100,3, 0x8b47110,3, 0x8b47120,3, 0x8b47130,3, 0x8b47140,3, 0x8b47150,3, 0x8b47160,3, 0x8b47170,3, 0x8b47180,3, 0x8b47190,3, 0x8b471a0,3, 0x8b471b0,3, 0x8b471c0,3, 0x8b471d0,3, 0x8b471e0,3, 0x8b471f0,3, 0x8b47200,3, 0x8b47210,3, 0x8b47220,3, 0x8b47230,3, 0x8b47240,3, 0x8b47250,3, 0x8b47260,3, 0x8b47270,3, 0x8b47280,3, 0x8b47290,3, 0x8b472a0,3, 0x8b472b0,3, 0x8b472c0,3, 0x8b472d0,3, 0x8b472e0,3, 0x8b472f0,3, 0x8b47300,3, 0x8b47310,3, 0x8b47320,3, 0x8b47330,3, 0x8b47340,3, 0x8b47350,3, 0x8b47360,3, 0x8b47370,3, 0x8b47380,3, 0x8b47390,3, 0x8b473a0,3, 0x8b473b0,3, 0x8b473c0,3, 0x8b473d0,3, 0x8b473e0,3, 0x8b473f0,3, 0x8b47400,3, 0x8b47410,3, 0x8b47420,3, 0x8b47430,3, 0x8b47440,3, 0x8b47450,3, 0x8b47460,3, 0x8b47470,3, 0x8b47480,3, 0x8b47490,3, 0x8b474a0,3, 0x8b474b0,3, 0x8b474c0,3, 0x8b474d0,3, 0x8b474e0,3, 0x8b474f0,3, 0x8b47500,3, 0x8b47510,3, 0x8b47520,3, 0x8b47530,3, 0x8b47540,3, 0x8b47550,3, 0x8b47560,3, 0x8b47570,3, 0x8b47580,3, 0x8b47590,3, 0x8b475a0,3, 0x8b475b0,3, 0x8b475c0,3, 0x8b475d0,3, 0x8b475e0,3, 0x8b475f0,3, 0x8b47600,3, 0x8b47610,3, 0x8b47620,3, 0x8b47630,3, 0x8b47640,3, 0x8b47650,3, 0x8b47660,3, 0x8b47670,3, 0x8b47680,3, 0x8b47690,3, 0x8b476a0,3, 0x8b476b0,3, 0x8b476c0,3, 0x8b476d0,3, 0x8b476e0,3, 0x8b476f0,3, 0x8b47700,3, 0x8b47710,3, 0x8b47720,3, 0x8b47730,3, 0x8b47740,3, 0x8b47750,3, 0x8b47760,3, 0x8b47770,3, 0x8b47780,3, 0x8b47790,3, 0x8b477a0,3, 0x8b477b0,3, 0x8b477c0,3, 0x8b477d0,3, 0x8b477e0,3, 0x8b477f0,3, 0x8b47800,3, 0x8b47810,3, 0x8b47820,3, 0x8b47830,3, 0x8b47840,3, 0x8b47850,3, 0x8b47860,3, 0x8b47870,3, 0x8b47880,3, 0x8b47890,3, 0x8b478a0,3, 0x8b478b0,3, 0x8b478c0,3, 0x8b478d0,3, 0x8b478e0,3, 0x8b478f0,3, 0x8b47900,3, 0x8b47910,3, 0x8b47920,3, 0x8b47930,3, 0x8b47940,3, 0x8b47950,3, 0x8b47960,3, 0x8b47970,3, 0x8b47980,3, 0x8b47990,3, 0x8b479a0,3, 0x8b479b0,3, 0x8b479c0,3, 0x8b479d0,3, 0x8b479e0,3, 0x8b479f0,3, 0x8b47a00,3, 0x8b47a10,3, 0x8b47a20,3, 0x8b47a30,3, 0x8b47a40,3, 0x8b47a50,3, 0x8b47a60,3, 0x8b47a70,3, 0x8b47a80,3, 0x8b47a90,3, 0x8b47aa0,3, 0x8b47ab0,3, 0x8b47ac0,3, 0x8b47ad0,3, 0x8b47ae0,3, 0x8b47af0,3, 0x8b47b00,3, 0x8b47b10,3, 0x8b47b20,3, 0x8b47b30,3, 0x8b47b40,3, 0x8b47b50,3, 0x8b47b60,3, 0x8b47b70,3, 0x8b47b80,3, 0x8b47b90,3, 0x8b47ba0,3, 0x8b47bb0,3, 0x8b47bc0,3, 0x8b47bd0,3, 0x8b47be0,3, 0x8b47bf0,3, 0x8b47c00,3, 0x8b47c10,3, 0x8b47c20,3, 0x8b47c30,3, 0x8b47c40,3, 0x8b47c50,3, 0x8b47c60,3, 0x8b47c70,3, 0x8b47c80,3, 0x8b47c90,3, 0x8b47ca0,3, 0x8b47cb0,3, 0x8b47cc0,3, 0x8b47cd0,3, 0x8b47ce0,3, 0x8b47cf0,3, 0x8b47d00,3, 0x8b47d10,3, 0x8b47d20,3, 0x8b47d30,3, 0x8b47d40,3, 0x8b47d50,3, 0x8b47d60,3, 0x8b47d70,3, 0x8b47d80,3, 0x8b47d90,3, 0x8b47da0,3, 0x8b47db0,3, 0x8b47dc0,3, 0x8b47dd0,3, 0x8b47de0,3, 0x8b47df0,3, 0x8b47e00,3, 0x8b47e10,3, 0x8b47e20,3, 0x8b47e30,3, 0x8b47e40,3, 0x8b47e50,3, 0x8b47e60,3, 0x8b47e70,3, 0x8b47e80,3, 0x8b47e90,3, 0x8b47ea0,3, 0x8b47eb0,3, 0x8b47ec0,3, 0x8b47ed0,3, 0x8b47ee0,3, 0x8b47ef0,3, 0x8b47f00,3, 0x8b47f10,3, 0x8b47f20,3, 0x8b47f30,3, 0x8b47f40,3, 0x8b47f50,3, 0x8b47f60,3, 0x8b47f70,3, 0x8b47f80,3, 0x8b47f90,3, 0x8b47fa0,3, 0x8b47fb0,3, 0x8b47fc0,3, 0x8b47fd0,3, 0x8b47fe0,3, 0x8b47ff0,3, 0x8b48000,3, 0x8b48010,3, 0x8b48020,3, 0x8b48030,3, 0x8b48040,3, 0x8b48050,3, 0x8b48060,3, 0x8b48070,3, 0x8b48080,3, 0x8b48090,3, 0x8b480a0,3, 0x8b480b0,3, 0x8b480c0,3, 0x8b480d0,3, 0x8b480e0,3, 0x8b480f0,3, 0x8b48100,3, 0x8b48110,3, 0x8b48120,3, 0x8b48130,3, 0x8b48140,3, 0x8b48150,3, 0x8b48160,3, 0x8b48170,3, 0x8b48180,3, 0x8b48190,3, 0x8b481a0,3, 0x8b481b0,3, 0x8b481c0,3, 0x8b481d0,3, 0x8b481e0,3, 0x8b481f0,3, 0x8b48200,3, 0x8b48210,3, 0x8b48220,3, 0x8b48230,3, 0x8b48240,3, 0x8b48250,3, 0x8b48260,3, 0x8b48270,3, 0x8b48280,3, 0x8b48290,3, 0x8b482a0,3, 0x8b482b0,3, 0x8b482c0,3, 0x8b482d0,3, 0x8b482e0,3, 0x8b482f0,3, 0x8b48300,3, 0x8b48310,3, 0x8b48320,3, 0x8b48330,3, 0x8b48340,3, 0x8b48350,3, 0x8b48360,3, 0x8b48370,3, 0x8b48380,3, 0x8b48390,3, 0x8b483a0,3, 0x8b483b0,3, 0x8b483c0,3, 0x8b483d0,3, 0x8b483e0,3, 0x8b483f0,3, 0x8b48400,3, 0x8b48410,3, 0x8b48420,3, 0x8b48430,3, 0x8b48440,3, 0x8b48450,3, 0x8b48460,3, 0x8b48470,3, 0x8b48480,3, 0x8b48490,3, 0x8b484a0,3, 0x8b484b0,3, 0x8b484c0,3, 0x8b484d0,3, 0x8b484e0,3, 0x8b484f0,3, 0x8b48500,3, 0x8b48510,3, 0x8b48520,3, 0x8b48530,3, 0x8b48540,3, 0x8b48550,3, 0x8b48560,3, 0x8b48570,3, 0x8b48580,3, 0x8b48590,3, 0x8b485a0,3, 0x8b485b0,3, 0x8b485c0,3, 0x8b485d0,3, 0x8b485e0,3, 0x8b485f0,3, 0x8b48600,3, 0x8b48610,3, 0x8b48620,3, 0x8b48630,3, 0x8b48640,3, 0x8b48650,3, 0x8b48660,3, 0x8b48670,3, 0x8b48680,3, 0x8b48690,3, 0x8b486a0,3, 0x8b486b0,3, 0x8b486c0,3, 0x8b486d0,3, 0x8b486e0,3, 0x8b486f0,3, 0x8b48700,3, 0x8b48710,3, 0x8b48720,3, 0x8b48730,3, 0x8b48740,3, 0x8b48750,3, 0x8b48760,3, 0x8b48770,3, 0x8b48780,3, 0x8b48790,3, 0x8b487a0,3, 0x8b487b0,3, 0x8b487c0,3, 0x8b487d0,3, 0x8b487e0,3, 0x8b487f0,3, 0x8b48800,3, 0x8b48810,3, 0x8b48820,3, 0x8b48830,3, 0x8b48840,3, 0x8b48850,3, 0x8b48860,3, 0x8b48870,3, 0x8b48880,3, 0x8b48890,3, 0x8b488a0,3, 0x8b488b0,3, 0x8b488c0,3, 0x8b488d0,3, 0x8b488e0,3, 0x8b488f0,3, 0x8b48900,3, 0x8b48910,3, 0x8b48920,3, 0x8b48930,3, 0x8b48940,3, 0x8b48950,3, 0x8b48960,3, 0x8b48970,3, 0x8b48980,3, 0x8b48990,3, 0x8b489a0,3, 0x8b489b0,3, 0x8b489c0,3, 0x8b489d0,3, 0x8b489e0,3, 0x8b489f0,3, 0x8b48a00,3, 0x8b48a10,3, 0x8b48a20,3, 0x8b48a30,3, 0x8b48a40,3, 0x8b48a50,3, 0x8b48a60,3, 0x8b48a70,3, 0x8b48a80,3, 0x8b48a90,3, 0x8b48aa0,3, 0x8b48ab0,3, 0x8b48ac0,3, 0x8b48ad0,3, 0x8b48ae0,3, 0x8b48af0,3, 0x8b48b00,3, 0x8b48b10,3, 0x8b48b20,3, 0x8b48b30,3, 0x8b48b40,3, 0x8b48b50,3, 0x8b48b60,3, 0x8b48b70,3, 0x8b48b80,3, 0x8b48b90,3, 0x8b48ba0,3, 0x8b48bb0,3, 0x8b48bc0,3, 0x8b48bd0,3, 0x8b48be0,3, 0x8b48bf0,3, 0x8b48c00,3, 0x8b48c10,3, 0x8b48c20,3, 0x8b48c30,3, 0x8b48c40,3, 0x8b48c50,3, 0x8b48c60,3, 0x8b48c70,3, 0x8b48c80,3, 0x8b48c90,3, 0x8b48ca0,3, 0x8b48cb0,3, 0x8b48cc0,3, 0x8b48cd0,3, 0x8b48ce0,3, 0x8b48cf0,3, 0x8b48d00,3, 0x8b48d10,3, 0x8b48d20,3, 0x8b48d30,3, 0x8b48d40,3, 0x8b48d50,3, 0x8b48d60,3, 0x8b48d70,3, 0x8b48d80,3, 0x8b48d90,3, 0x8b48da0,3, 0x8b48db0,3, 0x8b48dc0,3, 0x8b48dd0,3, 0x8b48de0,3, 0x8b48df0,3, 0x8b48e00,3, 0x8b48e10,3, 0x8b48e20,3, 0x8b48e30,3, 0x8b48e40,3, 0x8b48e50,3, 0x8b48e60,3, 0x8b48e70,3, 0x8b48e80,3, 0x8b48e90,3, 0x8b48ea0,3, 0x8b48eb0,3, 0x8b48ec0,3, 0x8b48ed0,3, 0x8b48ee0,3, 0x8b48ef0,3, 0x8b48f00,3, 0x8b48f10,3, 0x8b48f20,3, 0x8b48f30,3, 0x8b48f40,3, 0x8b48f50,3, 0x8b48f60,3, 0x8b48f70,3, 0x8b48f80,3, 0x8b48f90,3, 0x8b48fa0,3, 0x8b48fb0,3, 0x8b48fc0,3, 0x8b48fd0,3, 0x8b48fe0,3, 0x8b48ff0,3, 0x8b49000,3, 0x8b49010,3, 0x8b49020,3, 0x8b49030,3, 0x8b49040,3, 0x8b49050,3, 0x8b49060,3, 0x8b49070,3, 0x8b49080,3, 0x8b49090,3, 0x8b490a0,3, 0x8b490b0,3, 0x8b490c0,3, 0x8b490d0,3, 0x8b490e0,3, 0x8b490f0,3, 0x8b49100,3, 0x8b49110,3, 0x8b49120,3, 0x8b49130,3, 0x8b49140,3, 0x8b49150,3, 0x8b49160,3, 0x8b49170,3, 0x8b49180,3, 0x8b49190,3, 0x8b491a0,3, 0x8b491b0,3, 0x8b491c0,3, 0x8b491d0,3, 0x8b491e0,3, 0x8b491f0,3, 0x8b49200,3, 0x8b49210,3, 0x8b49220,3, 0x8b49230,3, 0x8b49240,3, 0x8b49250,3, 0x8b49260,3, 0x8b49270,3, 0x8b49280,3, 0x8b49290,3, 0x8b492a0,3, 0x8b492b0,3, 0x8b492c0,3, 0x8b492d0,3, 0x8b492e0,3, 0x8b492f0,3, 0x8b49300,3, 0x8b49310,3, 0x8b49320,3, 0x8b49330,3, 0x8b49340,3, 0x8b49350,3, 0x8b49360,3, 0x8b49370,3, 0x8b49380,3, 0x8b49390,3, 0x8b493a0,3, 0x8b493b0,3, 0x8b493c0,3, 0x8b493d0,3, 0x8b493e0,3, 0x8b493f0,3, 0x8b49400,3, 0x8b49410,3, 0x8b49420,3, 0x8b49430,3, 0x8b49440,3, 0x8b49450,3, 0x8b49460,3, 0x8b49470,3, 0x8b49480,3, 0x8b49490,3, 0x8b494a0,3, 0x8b494b0,3, 0x8b494c0,3, 0x8b494d0,3, 0x8b494e0,3, 0x8b494f0,3, 0x8b49500,3, 0x8b49510,3, 0x8b49520,3, 0x8b49530,3, 0x8b49540,3, 0x8b49550,3, 0x8b49560,3, 0x8b49570,3, 0x8b49580,3, 0x8b49590,3, 0x8b495a0,3, 0x8b495b0,3, 0x8b495c0,3, 0x8b495d0,3, 0x8b495e0,3, 0x8b495f0,3, 0x8b49600,3, 0x8b49610,3, 0x8b49620,3, 0x8b49630,3, 0x8b49640,3, 0x8b49650,3, 0x8b49660,3, 0x8b49670,3, 0x8b49680,3, 0x8b49690,3, 0x8b496a0,3, 0x8b496b0,3, 0x8b496c0,3, 0x8b496d0,3, 0x8b496e0,3, 0x8b496f0,3, 0x8b49700,3, 0x8b49710,3, 0x8b49720,3, 0x8b49730,3, 0x8b49740,3, 0x8b49750,3, 0x8b49760,3, 0x8b49770,3, 0x8b49780,3, 0x8b49790,3, 0x8b497a0,3, 0x8b497b0,3, 0x8b497c0,3, 0x8b497d0,3, 0x8b497e0,3, 0x8b497f0,3, 0x8b49800,3, 0x8b49810,3, 0x8b49820,3, 0x8b49830,3, 0x8b49840,3, 0x8b49850,3, 0x8b49860,3, 0x8b49870,3, 0x8b49880,3, 0x8b49890,3, 0x8b498a0,3, 0x8b498b0,3, 0x8b498c0,3, 0x8b498d0,3, 0x8b498e0,3, 0x8b498f0,3, 0x8b49900,3, 0x8b49910,3, 0x8b49920,3, 0x8b49930,3, 0x8b49940,3, 0x8b49950,3, 0x8b49960,3, 0x8b49970,3, 0x8b49980,3, 0x8b49990,3, 0x8b499a0,3, 0x8b499b0,3, 0x8b499c0,3, 0x8b499d0,3, 0x8b499e0,3, 0x8b499f0,3, 0x8b49a00,3, 0x8b49a10,3, 0x8b49a20,3, 0x8b49a30,3, 0x8b49a40,3, 0x8b49a50,3, 0x8b49a60,3, 0x8b49a70,3, 0x8b49a80,3, 0x8b49a90,3, 0x8b49aa0,3, 0x8b49ab0,3, 0x8b49ac0,3, 0x8b49ad0,3, 0x8b49ae0,3, 0x8b49af0,3, 0x8b49b00,3, 0x8b49b10,3, 0x8b49b20,3, 0x8b49b30,3, 0x8b49b40,3, 0x8b49b50,3, 0x8b49b60,3, 0x8b49b70,3, 0x8b49b80,3, 0x8b49b90,3, 0x8b49ba0,3, 0x8b49bb0,3, 0x8b49bc0,3, 0x8b49bd0,3, 0x8b49be0,3, 0x8b49bf0,3, 0x8b49c00,3, 0x8b49c10,3, 0x8b49c20,3, 0x8b49c30,3, 0x8b49c40,3, 0x8b49c50,3, 0x8b49c60,3, 0x8b49c70,3, 0x8b49c80,3, 0x8b49c90,3, 0x8b49ca0,3, 0x8b49cb0,3, 0x8b49cc0,3, 0x8b49cd0,3, 0x8b49ce0,3, 0x8b49cf0,3, 0x8b49d00,3, 0x8b49d10,3, 0x8b49d20,3, 0x8b49d30,3, 0x8b49d40,3, 0x8b49d50,3, 0x8b49d60,3, 0x8b49d70,3, 0x8b49d80,3, 0x8b49d90,3, 0x8b49da0,3, 0x8b49db0,3, 0x8b49dc0,3, 0x8b49dd0,3, 0x8b49de0,3, 0x8b49df0,3, 0x8b49e00,3, 0x8b49e10,3, 0x8b49e20,3, 0x8b49e30,3, 0x8b49e40,3, 0x8b49e50,3, 0x8b49e60,3, 0x8b49e70,3, 0x8b49e80,3, 0x8b49e90,3, 0x8b49ea0,3, 0x8b49eb0,3, 0x8b49ec0,3, 0x8b49ed0,3, 0x8b49ee0,3, 0x8b49ef0,3, 0x8b49f00,3, 0x8b49f10,3, 0x8b49f20,3, 0x8b49f30,3, 0x8b49f40,3, 0x8b49f50,3, 0x8b49f60,3, 0x8b49f70,3, 0x8b49f80,3, 0x8b49f90,3, 0x8b49fa0,3, 0x8b49fb0,3, 0x8b49fc0,3, 0x8b49fd0,3, 0x8b49fe0,3, 0x8b49ff0,3, 0x8b4a000,3, 0x8b4a010,3, 0x8b4a020,3, 0x8b4a030,3, 0x8b4a040,3, 0x8b4a050,3, 0x8b4a060,3, 0x8b4a070,3, 0x8b4a080,3, 0x8b4a090,3, 0x8b4a0a0,3, 0x8b4a0b0,3, 0x8b4a0c0,3, 0x8b4a0d0,3, 0x8b4a0e0,3, 0x8b4a0f0,3, 0x8b4a100,3, 0x8b4a110,3, 0x8b4a120,3, 0x8b4a130,3, 0x8b4a140,3, 0x8b4a150,3, 0x8b4a160,3, 0x8b4a170,3, 0x8b4a180,3, 0x8b4a190,3, 0x8b4a1a0,3, 0x8b4a1b0,3, 0x8b4a1c0,3, 0x8b4a1d0,3, 0x8b4a1e0,3, 0x8b4a1f0,3, 0x8b4a200,3, 0x8b4a210,3, 0x8b4a220,3, 0x8b4a230,3, 0x8b4a240,3, 0x8b4a250,3, 0x8b4a260,3, 0x8b4a270,3, 0x8b4a280,3, 0x8b4a290,3, 0x8b4a2a0,3, 0x8b4a2b0,3, 0x8b4a2c0,3, 0x8b4a2d0,3, 0x8b4a2e0,3, 0x8b4a2f0,3, 0x8b4a300,3, 0x8b4a310,3, 0x8b4a320,3, 0x8b4a330,3, 0x8b4a340,3, 0x8b4a350,3, 0x8b4a360,3, 0x8b4a370,3, 0x8b4a380,3, 0x8b4a390,3, 0x8b4a3a0,3, 0x8b4a3b0,3, 0x8b4a3c0,3, 0x8b4a3d0,3, 0x8b4a3e0,3, 0x8b4a3f0,3, 0x8b4a400,3, 0x8b4a410,3, 0x8b4a420,3, 0x8b4a430,3, 0x8b4a440,3, 0x8b4a450,3, 0x8b4a460,3, 0x8b4a470,3, 0x8b4a480,3, 0x8b4a490,3, 0x8b4a4a0,3, 0x8b4a4b0,3, 0x8b4a4c0,3, 0x8b4a4d0,3, 0x8b4a4e0,3, 0x8b4a4f0,3, 0x8b4a500,3, 0x8b4a510,3, 0x8b4a520,3, 0x8b4a530,3, 0x8b4a540,3, 0x8b4a550,3, 0x8b4a560,3, 0x8b4a570,3, 0x8b4a580,3, 0x8b4a590,3, 0x8b4a5a0,3, 0x8b4a5b0,3, 0x8b4a5c0,3, 0x8b4a5d0,3, 0x8b4a5e0,3, 0x8b4a5f0,3, 0x8b4a600,3, 0x8b4a610,3, 0x8b4a620,3, 0x8b4a630,3, 0x8b4a640,3, 0x8b4a650,3, 0x8b4a660,3, 0x8b4a670,3, 0x8b4a680,3, 0x8b4a690,3, 0x8b4a6a0,3, 0x8b4a6b0,3, 0x8b4a6c0,3, 0x8b4a6d0,3, 0x8b4a6e0,3, 0x8b4a6f0,3, 0x8b4a700,3, 0x8b4a710,3, 0x8b4a720,3, 0x8b4a730,3, 0x8b4a740,3, 0x8b4a750,3, 0x8b4a760,3, 0x8b4a770,3, 0x8b4a780,3, 0x8b4a790,3, 0x8b4a7a0,3, 0x8b4a7b0,3, 0x8b4a7c0,3, 0x8b4a7d0,3, 0x8b4a7e0,3, 0x8b4a7f0,3, 0x8b4a800,3, 0x8b4a810,3, 0x8b4a820,3, 0x8b4a830,3, 0x8b4a840,3, 0x8b4a850,3, 0x8b4a860,3, 0x8b4a870,3, 0x8b4a880,3, 0x8b4a890,3, 0x8b4a8a0,3, 0x8b4a8b0,3, 0x8b4a8c0,3, 0x8b4a8d0,3, 0x8b4a8e0,3, 0x8b4a8f0,3, 0x8b4a900,3, 0x8b4a910,3, 0x8b4a920,3, 0x8b4a930,3, 0x8b4a940,3, 0x8b4a950,3, 0x8b4a960,3, 0x8b4a970,3, 0x8b4a980,3, 0x8b4a990,3, 0x8b4a9a0,3, 0x8b4a9b0,3, 0x8b4a9c0,3, 0x8b4a9d0,3, 0x8b4a9e0,3, 0x8b4a9f0,3, 0x8b4aa00,3, 0x8b4aa10,3, 0x8b4aa20,3, 0x8b4aa30,3, 0x8b4aa40,3, 0x8b4aa50,3, 0x8b4aa60,3, 0x8b4aa70,3, 0x8b4aa80,3, 0x8b4aa90,3, 0x8b4aaa0,3, 0x8b4aab0,3, 0x8b4aac0,3, 0x8b4aad0,3, 0x8b4aae0,3, 0x8b4aaf0,3, 0x8b4ab00,3, 0x8b4ab10,3, 0x8b4ab20,3, 0x8b4ab30,3, 0x8b4ab40,3, 0x8b4ab50,3, 0x8b4ab60,3, 0x8b4ab70,3, 0x8b4ab80,3, 0x8b4ab90,3, 0x8b4aba0,3, 0x8b4abb0,3, 0x8b4abc0,3, 0x8b4abd0,3, 0x8b4abe0,3, 0x8b4abf0,3, 0x8b4ac00,3, 0x8b4ac10,3, 0x8b4ac20,3, 0x8b4ac30,3, 0x8b4ac40,3, 0x8b4ac50,3, 0x8b4ac60,3, 0x8b4ac70,3, 0x8b4ac80,3, 0x8b4ac90,3, 0x8b4aca0,3, 0x8b4acb0,3, 0x8b4acc0,3, 0x8b4acd0,3, 0x8b4ace0,3, 0x8b4acf0,3, 0x8b4ad00,3, 0x8b4ad10,3, 0x8b4ad20,3, 0x8b4ad30,3, 0x8b4ad40,3, 0x8b4ad50,3, 0x8b4ad60,3, 0x8b4ad70,3, 0x8b4ad80,3, 0x8b4ad90,3, 0x8b4ada0,3, 0x8b4adb0,3, 0x8b4adc0,3, 0x8b4add0,3, 0x8b4ade0,3, 0x8b4adf0,3, 0x8b4ae00,3, 0x8b4ae10,3, 0x8b4ae20,3, 0x8b4ae30,3, 0x8b4ae40,3, 0x8b4ae50,3, 0x8b4ae60,3, 0x8b4ae70,3, 0x8b4ae80,3, 0x8b4ae90,3, 0x8b4aea0,3, 0x8b4aeb0,3, 0x8b4aec0,3, 0x8b4aed0,3, 0x8b4aee0,3, 0x8b4aef0,3, 0x8b4af00,3, 0x8b4af10,3, 0x8b4af20,3, 0x8b4af30,3, 0x8b4af40,3, 0x8b4af50,3, 0x8b4af60,3, 0x8b4af70,3, 0x8b4af80,3, 0x8b4af90,3, 0x8b4afa0,3, 0x8b4afb0,3, 0x8b4afc0,3, 0x8b4afd0,3, 0x8b4afe0,3, 0x8b4aff0,3, 0x8b4b000,3, 0x8b4b010,3, 0x8b4b020,3, 0x8b4b030,3, 0x8b4b040,3, 0x8b4b050,3, 0x8b4b060,3, 0x8b4b070,3, 0x8b4b080,3, 0x8b4b090,3, 0x8b4b0a0,3, 0x8b4b0b0,3, 0x8b4b0c0,3, 0x8b4b0d0,3, 0x8b4b0e0,3, 0x8b4b0f0,3, 0x8b4b100,3, 0x8b4b110,3, 0x8b4b120,3, 0x8b4b130,3, 0x8b4b140,3, 0x8b4b150,3, 0x8b4b160,3, 0x8b4b170,3, 0x8b4b180,3, 0x8b4b190,3, 0x8b4b1a0,3, 0x8b4b1b0,3, 0x8b4b1c0,3, 0x8b4b1d0,3, 0x8b4b1e0,3, 0x8b4b1f0,3, 0x8b4b200,3, 0x8b4b210,3, 0x8b4b220,3, 0x8b4b230,3, 0x8b4b240,3, 0x8b4b250,3, 0x8b4b260,3, 0x8b4b270,3, 0x8b4b280,3, 0x8b4b290,3, 0x8b4b2a0,3, 0x8b4b2b0,3, 0x8b4b2c0,3, 0x8b4b2d0,3, 0x8b4b2e0,3, 0x8b4b2f0,3, 0x8b4b300,3, 0x8b4b310,3, 0x8b4b320,3, 0x8b4b330,3, 0x8b4b340,3, 0x8b4b350,3, 0x8b4b360,3, 0x8b4b370,3, 0x8b4b380,3, 0x8b4b390,3, 0x8b4b3a0,3, 0x8b4b3b0,3, 0x8b4b3c0,3, 0x8b4b3d0,3, 0x8b4b3e0,3, 0x8b4b3f0,3, 0x8b4b400,3, 0x8b4b410,3, 0x8b4b420,3, 0x8b4b430,3, 0x8b4b440,3, 0x8b4b450,3, 0x8b4b460,3, 0x8b4b470,3, 0x8b4b480,3, 0x8b4b490,3, 0x8b4b4a0,3, 0x8b4b4b0,3, 0x8b4b4c0,3, 0x8b4b4d0,3, 0x8b4b4e0,3, 0x8b4b4f0,3, 0x8b4b500,3, 0x8b4b510,3, 0x8b4b520,3, 0x8b4b530,3, 0x8b4b540,3, 0x8b4b550,3, 0x8b4b560,3, 0x8b4b570,3, 0x8b4b580,3, 0x8b4b590,3, 0x8b4b5a0,3, 0x8b4b5b0,3, 0x8b4b5c0,3, 0x8b4b5d0,3, 0x8b4b5e0,3, 0x8b4b5f0,3, 0x8b4b600,3, 0x8b4b610,3, 0x8b4b620,3, 0x8b4b630,3, 0x8b4b640,3, 0x8b4b650,3, 0x8b4b660,3, 0x8b4b670,3, 0x8b4b680,3, 0x8b4b690,3, 0x8b4b6a0,3, 0x8b4b6b0,3, 0x8b4b6c0,3, 0x8b4b6d0,3, 0x8b4b6e0,3, 0x8b4b6f0,3, 0x8b4b700,3, 0x8b4b710,3, 0x8b4b720,3, 0x8b4b730,3, 0x8b4b740,3, 0x8b4b750,3, 0x8b4b760,3, 0x8b4b770,3, 0x8b4b780,3, 0x8b4b790,3, 0x8b4b7a0,3, 0x8b4b7b0,3, 0x8b4b7c0,3, 0x8b4b7d0,3, 0x8b4b7e0,3, 0x8b4b7f0,3, 0x8b4b800,3, 0x8b4b810,3, 0x8b4b820,3, 0x8b4b830,3, 0x8b4b840,3, 0x8b4b850,3, 0x8b4b860,3, 0x8b4b870,3, 0x8b4b880,3, 0x8b4b890,3, 0x8b4b8a0,3, 0x8b4b8b0,3, 0x8b4b8c0,3, 0x8b4b8d0,3, 0x8b4b8e0,3, 0x8b4b8f0,3, 0x8b4b900,3, 0x8b4b910,3, 0x8b4b920,3, 0x8b4b930,3, 0x8b4b940,3, 0x8b4b950,3, 0x8b4b960,3, 0x8b4b970,3, 0x8b4b980,3, 0x8b4b990,3, 0x8b4b9a0,3, 0x8b4b9b0,3, 0x8b4b9c0,3, 0x8b4b9d0,3, 0x8b4b9e0,3, 0x8b4b9f0,3, 0x8b4ba00,3, 0x8b4ba10,3, 0x8b4ba20,3, 0x8b4ba30,3, 0x8b4ba40,3, 0x8b4ba50,3, 0x8b4ba60,3, 0x8b4ba70,3, 0x8b4ba80,3, 0x8b4ba90,3, 0x8b4baa0,3, 0x8b4bab0,3, 0x8b4bac0,3, 0x8b4bad0,3, 0x8b4bae0,3, 0x8b4baf0,3, 0x8b4bb00,3, 0x8b4bb10,3, 0x8b4bb20,3, 0x8b4bb30,3, 0x8b4bb40,3, 0x8b4bb50,3, 0x8b4bb60,3, 0x8b4bb70,3, 0x8b4bb80,3, 0x8b4bb90,3, 0x8b4bba0,3, 0x8b4bbb0,3, 0x8b4bbc0,3, 0x8b4bbd0,3, 0x8b4bbe0,3, 0x8b4bbf0,3, 0x8b4bc00,3, 0x8b4bc10,3, 0x8b4bc20,3, 0x8b4bc30,3, 0x8b4bc40,3, 0x8b4bc50,3, 0x8b4bc60,3, 0x8b4bc70,3, 0x8b4bc80,3, 0x8b4bc90,3, 0x8b4bca0,3, 0x8b4bcb0,3, 0x8b4bcc0,3, 0x8b4bcd0,3, 0x8b4bce0,3, 0x8b4bcf0,3, 0x8b4bd00,3, 0x8b4bd10,3, 0x8b4bd20,3, 0x8b4bd30,3, 0x8b4bd40,3, 0x8b4bd50,3, 0x8b4bd60,3, 0x8b4bd70,3, 0x8b4bd80,3, 0x8b4bd90,3, 0x8b4bda0,3, 0x8b4bdb0,3, 0x8b4bdc0,3, 0x8b4bdd0,3, 0x8b4bde0,3, 0x8b4bdf0,3, 0x8b4be00,3, 0x8b4be10,3, 0x8b4be20,3, 0x8b4be30,3, 0x8b4be40,3, 0x8b4be50,3, 0x8b4be60,3, 0x8b4be70,3, 0x8b4be80,3, 0x8b4be90,3, 0x8b4bea0,3, 0x8b4beb0,3, 0x8b4bec0,3, 0x8b4bed0,3, 0x8b4bee0,3, 0x8b4bef0,3, 0x8b4bf00,3, 0x8b4bf10,3, 0x8b4bf20,3, 0x8b4bf30,3, 0x8b4bf40,3, 0x8b4bf50,3, 0x8b4bf60,3, 0x8b4bf70,3, 0x8b4bf80,3, 0x8b4bf90,3, 0x8b4bfa0,3, 0x8b4bfb0,3, 0x8b4bfc0,3, 0x8b4bfd0,3, 0x8b4bfe0,3, 0x8b4bff0,3, 0x8b4c000,3, 0x8b4c010,3, 0x8b4c020,3, 0x8b4c030,3, 0x8b4c040,3, 0x8b4c050,3, 0x8b4c060,3, 0x8b4c070,3, 0x8b4c080,3, 0x8b4c090,3, 0x8b4c0a0,3, 0x8b4c0b0,3, 0x8b4c0c0,3, 0x8b4c0d0,3, 0x8b4c0e0,3, 0x8b4c0f0,3, 0x8b4c100,3, 0x8b4c110,3, 0x8b4c120,3, 0x8b4c130,3, 0x8b4c140,3, 0x8b4c150,3, 0x8b4c160,3, 0x8b4c170,3, 0x8b4c180,3, 0x8b4c190,3, 0x8b4c1a0,3, 0x8b4c1b0,3, 0x8b4c1c0,3, 0x8b4c1d0,3, 0x8b4c1e0,3, 0x8b4c1f0,3, 0x8b4c200,3, 0x8b4c210,3, 0x8b4c220,3, 0x8b4c230,3, 0x8b4c240,3, 0x8b4c250,3, 0x8b4c260,3, 0x8b4c270,3, 0x8b4c280,3, 0x8b4c290,3, 0x8b4c2a0,3, 0x8b4c2b0,3, 0x8b4c2c0,3, 0x8b4c2d0,3, 0x8b4c2e0,3, 0x8b4c2f0,3, 0x8b4c300,3, 0x8b4c310,3, 0x8b4c320,3, 0x8b4c330,3, 0x8b4c340,3, 0x8b4c350,3, 0x8b4c360,3, 0x8b4c370,3, 0x8b4c380,3, 0x8b4c390,3, 0x8b4c3a0,3, 0x8b4c3b0,3, 0x8b4c3c0,3, 0x8b4c3d0,3, 0x8b4c3e0,3, 0x8b4c3f0,3, 0x8b4c400,3, 0x8b4c410,3, 0x8b4c420,3, 0x8b4c430,3, 0x8b4c440,3, 0x8b4c450,3, 0x8b4c460,3, 0x8b4c470,3, 0x8b4c480,3, 0x8b4c490,3, 0x8b4c4a0,3, 0x8b4c4b0,3, 0x8b4c4c0,3, 0x8b4c4d0,3, 0x8b4c4e0,3, 0x8b4c4f0,3, 0x8b4c500,3, 0x8b4c510,3, 0x8b4c520,3, 0x8b4c530,3, 0x8b4c540,3, 0x8b4c550,3, 0x8b4c560,3, 0x8b4c570,3, 0x8b4c580,3, 0x8b4c590,3, 0x8b4c5a0,3, 0x8b4c5b0,3, 0x8b4c5c0,3, 0x8b4c5d0,3, 0x8b4c5e0,3, 0x8b4c5f0,3, 0x8b4c600,3, 0x8b4c610,3, 0x8b4c620,3, 0x8b4c630,3, 0x8b4c640,3, 0x8b4c650,3, 0x8b4c660,3, 0x8b4c670,3, 0x8b4c680,3, 0x8b4c690,3, 0x8b4c6a0,3, 0x8b4c6b0,3, 0x8b4c6c0,3, 0x8b4c6d0,3, 0x8b4c6e0,3, 0x8b4c6f0,3, 0x8b4c700,3, 0x8b4c710,3, 0x8b4c720,3, 0x8b4c730,3, 0x8b4c740,3, 0x8b4c750,3, 0x8b4c760,3, 0x8b4c770,3, 0x8b4c780,3, 0x8b4c790,3, 0x8b4c7a0,3, 0x8b4c7b0,3, 0x8b4c7c0,3, 0x8b4c7d0,3, 0x8b4c7e0,3, 0x8b4c7f0,3, 0x8b4c800,3, 0x8b4c810,3, 0x8b4c820,3, 0x8b4c830,3, 0x8b4c840,3, 0x8b4c850,3, 0x8b4c860,3, 0x8b4c870,3, 0x8b4c880,3, 0x8b4c890,3, 0x8b4c8a0,3, 0x8b4c8b0,3, 0x8b4c8c0,3, 0x8b4c8d0,3, 0x8b4c8e0,3, 0x8b4c8f0,3, 0x8b4c900,3, 0x8b4c910,3, 0x8b4c920,3, 0x8b4c930,3, 0x8b4c940,3, 0x8b4c950,3, 0x8b4c960,3, 0x8b4c970,3, 0x8b4c980,3, 0x8b4c990,3, 0x8b4c9a0,3, 0x8b4c9b0,3, 0x8b4c9c0,3, 0x8b4c9d0,3, 0x8b4c9e0,3, 0x8b4c9f0,3, 0x8b4ca00,3, 0x8b4ca10,3, 0x8b4ca20,3, 0x8b4ca30,3, 0x8b4ca40,3, 0x8b4ca50,3, 0x8b4ca60,3, 0x8b4ca70,3, 0x8b4ca80,3, 0x8b4ca90,3, 0x8b4caa0,3, 0x8b4cab0,3, 0x8b4cac0,3, 0x8b4cad0,3, 0x8b4cae0,3, 0x8b4caf0,3, 0x8b4cb00,3, 0x8b4cb10,3, 0x8b4cb20,3, 0x8b4cb30,3, 0x8b4cb40,3, 0x8b4cb50,3, 0x8b4cb60,3, 0x8b4cb70,3, 0x8b4cb80,3, 0x8b4cb90,3, 0x8b4cba0,3, 0x8b4cbb0,3, 0x8b4cbc0,3, 0x8b4cbd0,3, 0x8b4cbe0,3, 0x8b4cbf0,3, 0x8b4cc00,3, 0x8b4cc10,3, 0x8b4cc20,3, 0x8b4cc30,3, 0x8b4cc40,3, 0x8b4cc50,3, 0x8b4cc60,3, 0x8b4cc70,3, 0x8b4cc80,3, 0x8b4cc90,3, 0x8b4cca0,3, 0x8b4ccb0,3, 0x8b4ccc0,3, 0x8b4ccd0,3, 0x8b4cce0,3, 0x8b4ccf0,3, 0x8b4cd00,3, 0x8b4cd10,3, 0x8b4cd20,3, 0x8b4cd30,3, 0x8b4cd40,3, 0x8b4cd50,3, 0x8b4cd60,3, 0x8b4cd70,3, 0x8b4cd80,3, 0x8b4cd90,3, 0x8b4cda0,3, 0x8b4cdb0,3, 0x8b4cdc0,3, 0x8b4cdd0,3, 0x8b4cde0,3, 0x8b4cdf0,3, 0x8b4ce00,3, 0x8b4ce10,3, 0x8b4ce20,3, 0x8b4ce30,3, 0x8b4ce40,3, 0x8b4ce50,3, 0x8b4ce60,3, 0x8b4ce70,3, 0x8b4ce80,3, 0x8b4ce90,3, 0x8b4cea0,3, 0x8b4ceb0,3, 0x8b4cec0,3, 0x8b4ced0,3, 0x8b4cee0,3, 0x8b4cef0,3, 0x8b4cf00,3, 0x8b4cf10,3, 0x8b4cf20,3, 0x8b4cf30,3, 0x8b4cf40,3, 0x8b4cf50,3, 0x8b4cf60,3, 0x8b4cf70,3, 0x8b4cf80,3, 0x8b4cf90,3, 0x8b4cfa0,3, 0x8b4cfb0,3, 0x8b4cfc0,3, 0x8b4cfd0,3, 0x8b4cfe0,3, 0x8b4cff0,3, 0x8b4d000,3, 0x8b4d010,3, 0x8b4d020,3, 0x8b4d030,3, 0x8b4d040,3, 0x8b4d050,3, 0x8b4d060,3, 0x8b4d070,3, 0x8b4d080,3, 0x8b4d090,3, 0x8b4d0a0,3, 0x8b4d0b0,3, 0x8b4d0c0,3, 0x8b4d0d0,3, 0x8b4d0e0,3, 0x8b4d0f0,3, 0x8b4d100,3, 0x8b4d110,3, 0x8b4d120,3, 0x8b4d130,3, 0x8b4d140,3, 0x8b4d150,3, 0x8b4d160,3, 0x8b4d170,3, 0x8b4d180,3, 0x8b4d190,3, 0x8b4d1a0,3, 0x8b4d1b0,3, 0x8b4d1c0,3, 0x8b4d1d0,3, 0x8b4d1e0,3, 0x8b4d1f0,3, 0x8b4d200,3, 0x8b4d210,3, 0x8b4d220,3, 0x8b4d230,3, 0x8b4d240,3, 0x8b4d250,3, 0x8b4d260,3, 0x8b4d270,3, 0x8b4d280,3, 0x8b4d290,3, 0x8b4d2a0,3, 0x8b4d2b0,3, 0x8b4d2c0,3, 0x8b4d2d0,3, 0x8b4d2e0,3, 0x8b4d2f0,3, 0x8b4d300,3, 0x8b4d310,3, 0x8b4d320,3, 0x8b4d330,3, 0x8b4d340,3, 0x8b4d350,3, 0x8b4d360,3, 0x8b4d370,3, 0x8b4d380,3, 0x8b4d390,3, 0x8b4d3a0,3, 0x8b4d3b0,3, 0x8b4d3c0,3, 0x8b4d3d0,3, 0x8b4d3e0,3, 0x8b4d3f0,3, 0x8b4d400,3, 0x8b4d410,3, 0x8b4d420,3, 0x8b4d430,3, 0x8b4d440,3, 0x8b4d450,3, 0x8b4d460,3, 0x8b4d470,3, 0x8b4d480,3, 0x8b4d490,3, 0x8b4d4a0,3, 0x8b4d4b0,3, 0x8b4d4c0,3, 0x8b4d4d0,3, 0x8b4d4e0,3, 0x8b4d4f0,3, 0x8b4d500,3, 0x8b4d510,3, 0x8b4d520,3, 0x8b4d530,3, 0x8b4d540,3, 0x8b4d550,3, 0x8b4d560,3, 0x8b4d570,3, 0x8b4d580,3, 0x8b4d590,3, 0x8b4d5a0,3, 0x8b4d5b0,3, 0x8b4d5c0,3, 0x8b4d5d0,3, 0x8b4d5e0,3, 0x8b4d5f0,3, 0x8b4d600,3, 0x8b4d610,3, 0x8b4d620,3, 0x8b4d630,3, 0x8b4d640,3, 0x8b4d650,3, 0x8b4d660,3, 0x8b4d670,3, 0x8b4d680,3, 0x8b4d690,3, 0x8b4d6a0,3, 0x8b4d6b0,3, 0x8b4d6c0,3, 0x8b4d6d0,3, 0x8b4d6e0,3, 0x8b4d6f0,3, 0x8b4d700,3, 0x8b4d710,3, 0x8b4d720,3, 0x8b4d730,3, 0x8b4d740,3, 0x8b4d750,3, 0x8b4d760,3, 0x8b4d770,3, 0x8b4d780,3, 0x8b4d790,3, 0x8b4d7a0,3, 0x8b4d7b0,3, 0x8b4d7c0,3, 0x8b4d7d0,3, 0x8b4d7e0,3, 0x8b4d7f0,3, 0x8b4d800,3, 0x8b4d810,3, 0x8b4d820,3, 0x8b4d830,3, 0x8b4d840,3, 0x8b4d850,3, 0x8b4d860,3, 0x8b4d870,3, 0x8b4d880,3, 0x8b4d890,3, 0x8b4d8a0,3, 0x8b4d8b0,3, 0x8b4d8c0,3, 0x8b4d8d0,3, 0x8b4d8e0,3, 0x8b4d8f0,3, 0x8b4d900,3, 0x8b4d910,3, 0x8b4d920,3, 0x8b4d930,3, 0x8b4d940,3, 0x8b4d950,3, 0x8b4d960,3, 0x8b4d970,3, 0x8b4d980,3, 0x8b4d990,3, 0x8b4d9a0,3, 0x8b4d9b0,3, 0x8b4d9c0,3, 0x8b4d9d0,3, 0x8b4d9e0,3, 0x8b4d9f0,3, 0x8b4da00,3, 0x8b4da10,3, 0x8b4da20,3, 0x8b4da30,3, 0x8b4da40,3, 0x8b4da50,3, 0x8b4da60,3, 0x8b4da70,3, 0x8b4da80,3, 0x8b4da90,3, 0x8b4daa0,3, 0x8b4dab0,3, 0x8b4dac0,3, 0x8b4dad0,3, 0x8b4dae0,3, 0x8b4daf0,3, 0x8b4db00,3, 0x8b4db10,3, 0x8b4db20,3, 0x8b4db30,3, 0x8b4db40,3, 0x8b4db50,3, 0x8b4db60,3, 0x8b4db70,3, 0x8b4db80,3, 0x8b4db90,3, 0x8b4dba0,3, 0x8b4dbb0,3, 0x8b4dbc0,3, 0x8b4dbd0,3, 0x8b4dbe0,3, 0x8b4dbf0,3, 0x8b4dc00,3, 0x8b4dc10,3, 0x8b4dc20,3, 0x8b4dc30,3, 0x8b4dc40,3, 0x8b4dc50,3, 0x8b4dc60,3, 0x8b4dc70,3, 0x8b4dc80,3, 0x8b4dc90,3, 0x8b4dca0,3, 0x8b4dcb0,3, 0x8b4dcc0,3, 0x8b4dcd0,3, 0x8b4dce0,3, 0x8b4dcf0,3, 0x8b4dd00,3, 0x8b4dd10,3, 0x8b4dd20,3, 0x8b4dd30,3, 0x8b4dd40,3, 0x8b4dd50,3, 0x8b4dd60,3, 0x8b4dd70,3, 0x8b4dd80,3, 0x8b4dd90,3, 0x8b4dda0,3, 0x8b4ddb0,3, 0x8b4ddc0,3, 0x8b4ddd0,3, 0x8b4dde0,3, 0x8b4ddf0,3, 0x8b4de00,3, 0x8b4de10,3, 0x8b4de20,3, 0x8b4de30,3, 0x8b4de40,3, 0x8b4de50,3, 0x8b4de60,3, 0x8b4de70,3, 0x8b4de80,3, 0x8b4de90,3, 0x8b4dea0,3, 0x8b4deb0,3, 0x8b4dec0,3, 0x8b4ded0,3, 0x8b4dee0,3, 0x8b4def0,3, 0x8b4df00,3, 0x8b4df10,3, 0x8b4df20,3, 0x8b4df30,3, 0x8b4df40,3, 0x8b4df50,3, 0x8b4df60,3, 0x8b4df70,3, 0x8b4df80,3, 0x8b4df90,3, 0x8b4dfa0,3, 0x8b4dfb0,3, 0x8b4dfc0,3, 0x8b4dfd0,3, 0x8b4dfe0,3, 0x8b4dff0,3, 0x8b4e000,3, 0x8b4e010,3, 0x8b4e020,3, 0x8b4e030,3, 0x8b4e040,3, 0x8b4e050,3, 0x8b4e060,3, 0x8b4e070,3, 0x8b4e080,3, 0x8b4e090,3, 0x8b4e0a0,3, 0x8b4e0b0,3, 0x8b4e0c0,3, 0x8b4e0d0,3, 0x8b4e0e0,3, 0x8b4e0f0,3, 0x8b4e100,3, 0x8b4e110,3, 0x8b4e120,3, 0x8b4e130,3, 0x8b4e140,3, 0x8b4e150,3, 0x8b4e160,3, 0x8b4e170,3, 0x8b4e180,3, 0x8b4e190,3, 0x8b4e1a0,3, 0x8b4e1b0,3, 0x8b4e1c0,3, 0x8b4e1d0,3, 0x8b4e1e0,3, 0x8b4e1f0,3, 0x8b4e200,3, 0x8b4e210,3, 0x8b4e220,3, 0x8b4e230,3, 0x8b4e240,3, 0x8b4e250,3, 0x8b4e260,3, 0x8b4e270,3, 0x8b4e280,3, 0x8b4e290,3, 0x8b4e2a0,3, 0x8b4e2b0,3, 0x8b4e2c0,3, 0x8b4e2d0,3, 0x8b4e2e0,3, 0x8b4e2f0,3, 0x8b4e300,3, 0x8b4e310,3, 0x8b4e320,3, 0x8b4e330,3, 0x8b4e340,3, 0x8b4e350,3, 0x8b4e360,3, 0x8b4e370,3, 0x8b4e380,3, 0x8b4e390,3, 0x8b4e3a0,3, 0x8b4e3b0,3, 0x8b4e3c0,3, 0x8b4e3d0,3, 0x8b4e3e0,3, 0x8b4e3f0,3, 0x8b4e400,3, 0x8b4e410,3, 0x8b4e420,3, 0x8b4e430,3, 0x8b4e440,3, 0x8b4e450,3, 0x8b4e460,3, 0x8b4e470,3, 0x8b4e480,3, 0x8b4e490,3, 0x8b4e4a0,3, 0x8b4e4b0,3, 0x8b4e4c0,3, 0x8b4e4d0,3, 0x8b4e4e0,3, 0x8b4e4f0,3, 0x8b4e500,3, 0x8b4e510,3, 0x8b4e520,3, 0x8b4e530,3, 0x8b4e540,3, 0x8b4e550,3, 0x8b4e560,3, 0x8b4e570,3, 0x8b4e580,3, 0x8b4e590,3, 0x8b4e5a0,3, 0x8b4e5b0,3, 0x8b4e5c0,3, 0x8b4e5d0,3, 0x8b4e5e0,3, 0x8b4e5f0,3, 0x8b4e600,3, 0x8b4e610,3, 0x8b4e620,3, 0x8b4e630,3, 0x8b4e640,3, 0x8b4e650,3, 0x8b4e660,3, 0x8b4e670,3, 0x8b4e680,3, 0x8b4e690,3, 0x8b4e6a0,3, 0x8b4e6b0,3, 0x8b4e6c0,3, 0x8b4e6d0,3, 0x8b4e6e0,3, 0x8b4e6f0,3, 0x8b4e700,3, 0x8b4e710,3, 0x8b4e720,3, 0x8b4e730,3, 0x8b4e740,3, 0x8b4e750,3, 0x8b4e760,3, 0x8b4e770,3, 0x8b4e780,3, 0x8b4e790,3, 0x8b4e7a0,3, 0x8b4e7b0,3, 0x8b4e7c0,3, 0x8b4e7d0,3, 0x8b4e7e0,3, 0x8b4e7f0,3, 0x8b4e800,3, 0x8b4e810,3, 0x8b4e820,3, 0x8b4e830,3, 0x8b4e840,3, 0x8b4e850,3, 0x8b4e860,3, 0x8b4e870,3, 0x8b4e880,3, 0x8b4e890,3, 0x8b4e8a0,3, 0x8b4e8b0,3, 0x8b4e8c0,3, 0x8b4e8d0,3, 0x8b4e8e0,3, 0x8b4e8f0,3, 0x8b4e900,3, 0x8b4e910,3, 0x8b4e920,3, 0x8b4e930,3, 0x8b4e940,3, 0x8b4e950,3, 0x8b4e960,3, 0x8b4e970,3, 0x8b4e980,3, 0x8b4e990,3, 0x8b4e9a0,3, 0x8b4e9b0,3, 0x8b4e9c0,3, 0x8b4e9d0,3, 0x8b4e9e0,3, 0x8b4e9f0,3, 0x8b4ea00,3, 0x8b4ea10,3, 0x8b4ea20,3, 0x8b4ea30,3, 0x8b4ea40,3, 0x8b4ea50,3, 0x8b4ea60,3, 0x8b4ea70,3, 0x8b4ea80,3, 0x8b4ea90,3, 0x8b4eaa0,3, 0x8b4eab0,3, 0x8b4eac0,3, 0x8b4ead0,3, 0x8b4eae0,3, 0x8b4eaf0,3, 0x8b4eb00,3, 0x8b4eb10,3, 0x8b4eb20,3, 0x8b4eb30,3, 0x8b4eb40,3, 0x8b4eb50,3, 0x8b4eb60,3, 0x8b4eb70,3, 0x8b4eb80,3, 0x8b4eb90,3, 0x8b4eba0,3, 0x8b4ebb0,3, 0x8b4ebc0,3, 0x8b4ebd0,3, 0x8b4ebe0,3, 0x8b4ebf0,3, 0x8b4ec00,3, 0x8b4ec10,3, 0x8b4ec20,3, 0x8b4ec30,3, 0x8b4ec40,3, 0x8b4ec50,3, 0x8b4ec60,3, 0x8b4ec70,3, 0x8b4ec80,3, 0x8b4ec90,3, 0x8b4eca0,3, 0x8b4ecb0,3, 0x8b4ecc0,3, 0x8b4ecd0,3, 0x8b4ece0,3, 0x8b4ecf0,3, 0x8b4ed00,3, 0x8b4ed10,3, 0x8b4ed20,3, 0x8b4ed30,3, 0x8b4ed40,3, 0x8b4ed50,3, 0x8b4ed60,3, 0x8b4ed70,3, 0x8b4ed80,3, 0x8b4ed90,3, 0x8b4eda0,3, 0x8b4edb0,3, 0x8b4edc0,3, 0x8b4edd0,3, 0x8b4ede0,3, 0x8b4edf0,3, 0x8b4ee00,3, 0x8b4ee10,3, 0x8b4ee20,3, 0x8b4ee30,3, 0x8b4ee40,3, 0x8b4ee50,3, 0x8b4ee60,3, 0x8b4ee70,3, 0x8b4ee80,3, 0x8b4ee90,3, 0x8b4eea0,3, 0x8b4eeb0,3, 0x8b4eec0,3, 0x8b4eed0,3, 0x8b4eee0,3, 0x8b4eef0,3, 0x8b4ef00,3, 0x8b4ef10,3, 0x8b4ef20,3, 0x8b4ef30,3, 0x8b4ef40,3, 0x8b4ef50,3, 0x8b4ef60,3, 0x8b4ef70,3, 0x8b4ef80,3, 0x8b4ef90,3, 0x8b4efa0,3, 0x8b4efb0,3, 0x8b4efc0,3, 0x8b4efd0,3, 0x8b4efe0,3, 0x8b4eff0,3, 0x8b4f000,3, 0x8b4f010,3, 0x8b4f020,3, 0x8b4f030,3, 0x8b4f040,3, 0x8b4f050,3, 0x8b4f060,3, 0x8b4f070,3, 0x8b4f080,3, 0x8b4f090,3, 0x8b4f0a0,3, 0x8b4f0b0,3, 0x8b4f0c0,3, 0x8b4f0d0,3, 0x8b4f0e0,3, 0x8b4f0f0,3, 0x8b4f100,3, 0x8b4f110,3, 0x8b4f120,3, 0x8b4f130,3, 0x8b4f140,3, 0x8b4f150,3, 0x8b4f160,3, 0x8b4f170,3, 0x8b4f180,3, 0x8b4f190,3, 0x8b4f1a0,3, 0x8b4f1b0,3, 0x8b4f1c0,3, 0x8b4f1d0,3, 0x8b4f1e0,3, 0x8b4f1f0,3, 0x8b4f200,3, 0x8b4f210,3, 0x8b4f220,3, 0x8b4f230,3, 0x8b4f240,3, 0x8b4f250,3, 0x8b4f260,3, 0x8b4f270,3, 0x8b4f280,3, 0x8b4f290,3, 0x8b4f2a0,3, 0x8b4f2b0,3, 0x8b4f2c0,3, 0x8b4f2d0,3, 0x8b4f2e0,3, 0x8b4f2f0,3, 0x8b4f300,3, 0x8b4f310,3, 0x8b4f320,3, 0x8b4f330,3, 0x8b4f340,3, 0x8b4f350,3, 0x8b4f360,3, 0x8b4f370,3, 0x8b4f380,3, 0x8b4f390,3, 0x8b4f3a0,3, 0x8b4f3b0,3, 0x8b4f3c0,3, 0x8b4f3d0,3, 0x8b4f3e0,3, 0x8b4f3f0,3, 0x8b4f400,3, 0x8b4f410,3, 0x8b4f420,3, 0x8b4f430,3, 0x8b4f440,3, 0x8b4f450,3, 0x8b4f460,3, 0x8b4f470,3, 0x8b4f480,3, 0x8b4f490,3, 0x8b4f4a0,3, 0x8b4f4b0,3, 0x8b4f4c0,3, 0x8b4f4d0,3, 0x8b4f4e0,3, 0x8b4f4f0,3, 0x8b4f500,3, 0x8b4f510,3, 0x8b4f520,3, 0x8b4f530,3, 0x8b4f540,3, 0x8b4f550,3, 0x8b4f560,3, 0x8b4f570,3, 0x8b4f580,3, 0x8b4f590,3, 0x8b4f5a0,3, 0x8b4f5b0,3, 0x8b4f5c0,3, 0x8b4f5d0,3, 0x8b4f5e0,3, 0x8b4f5f0,3, 0x8b4f600,3, 0x8b4f610,3, 0x8b4f620,3, 0x8b4f630,3, 0x8b4f640,3, 0x8b4f650,3, 0x8b4f660,3, 0x8b4f670,3, 0x8b4f680,3, 0x8b4f690,3, 0x8b4f6a0,3, 0x8b4f6b0,3, 0x8b4f6c0,3, 0x8b4f6d0,3, 0x8b4f6e0,3, 0x8b4f6f0,3, 0x8b4f700,3, 0x8b4f710,3, 0x8b4f720,3, 0x8b4f730,3, 0x8b4f740,3, 0x8b4f750,3, 0x8b4f760,3, 0x8b4f770,3, 0x8b4f780,3, 0x8b4f790,3, 0x8b4f7a0,3, 0x8b4f7b0,3, 0x8b4f7c0,3, 0x8b4f7d0,3, 0x8b4f7e0,3, 0x8b4f7f0,3, 0x8b4f800,3, 0x8b4f810,3, 0x8b4f820,3, 0x8b4f830,3, 0x8b4f840,3, 0x8b4f850,3, 0x8b4f860,3, 0x8b4f870,3, 0x8b4f880,3, 0x8b4f890,3, 0x8b4f8a0,3, 0x8b4f8b0,3, 0x8b4f8c0,3, 0x8b4f8d0,3, 0x8b4f8e0,3, 0x8b4f8f0,3, 0x8b4f900,3, 0x8b4f910,3, 0x8b4f920,3, 0x8b4f930,3, 0x8b4f940,3, 0x8b4f950,3, 0x8b4f960,3, 0x8b4f970,3, 0x8b4f980,3, 0x8b4f990,3, 0x8b4f9a0,3, 0x8b4f9b0,3, 0x8b4f9c0,3, 0x8b4f9d0,3, 0x8b4f9e0,3, 0x8b4f9f0,3, 0x8b4fa00,3, 0x8b4fa10,3, 0x8b4fa20,3, 0x8b4fa30,3, 0x8b4fa40,3, 0x8b4fa50,3, 0x8b4fa60,3, 0x8b4fa70,3, 0x8b4fa80,3, 0x8b4fa90,3, 0x8b4faa0,3, 0x8b4fab0,3, 0x8b4fac0,3, 0x8b4fad0,3, 0x8b4fae0,3, 0x8b4faf0,3, 0x8b4fb00,3, 0x8b4fb10,3, 0x8b4fb20,3, 0x8b4fb30,3, 0x8b4fb40,3, 0x8b4fb50,3, 0x8b4fb60,3, 0x8b4fb70,3, 0x8b4fb80,3, 0x8b4fb90,3, 0x8b4fba0,3, 0x8b4fbb0,3, 0x8b4fbc0,3, 0x8b4fbd0,3, 0x8b4fbe0,3, 0x8b4fbf0,3, 0x8b4fc00,3, 0x8b4fc10,3, 0x8b4fc20,3, 0x8b4fc30,3, 0x8b4fc40,3, 0x8b4fc50,3, 0x8b4fc60,3, 0x8b4fc70,3, 0x8b4fc80,3, 0x8b4fc90,3, 0x8b4fca0,3, 0x8b4fcb0,3, 0x8b4fcc0,3, 0x8b4fcd0,3, 0x8b4fce0,3, 0x8b4fcf0,3, 0x8b4fd00,3, 0x8b4fd10,3, 0x8b4fd20,3, 0x8b4fd30,3, 0x8b4fd40,3, 0x8b4fd50,3, 0x8b4fd60,3, 0x8b4fd70,3, 0x8b4fd80,3, 0x8b4fd90,3, 0x8b4fda0,3, 0x8b4fdb0,3, 0x8b4fdc0,3, 0x8b4fdd0,3, 0x8b4fde0,3, 0x8b4fdf0,3, 0x8b4fe00,3, 0x8b4fe10,3, 0x8b4fe20,3, 0x8b4fe30,3, 0x8b4fe40,3, 0x8b4fe50,3, 0x8b4fe60,3, 0x8b4fe70,3, 0x8b4fe80,3, 0x8b4fe90,3, 0x8b4fea0,3, 0x8b4feb0,3, 0x8b4fec0,3, 0x8b4fed0,3, 0x8b4fee0,3, 0x8b4fef0,3, 0x8b4ff00,3, 0x8b4ff10,3, 0x8b4ff20,3, 0x8b4ff30,3, 0x8b4ff40,3, 0x8b4ff50,3, 0x8b4ff60,3, 0x8b4ff70,3, 0x8b4ff80,3, 0x8b4ff90,3, 0x8b4ffa0,3, 0x8b4ffb0,3, 0x8b4ffc0,3, 0x8b4ffd0,3, 0x8b4ffe0,3, 0x8b4fff0,3, 0x8b50000,2, 0x8b50040,9, 0x8b50080,3, 0x8b50090,3, 0x8b500a0,3, 0x8b80000,3, 0x8b80010,3, 0x8b80020,3, 0x8b80030,3, 0x8b80040,3, 0x8b80050,3, 0x8b80060,3, 0x8b80070,3, 0x8b80080,3, 0x8b80090,3, 0x8b800a0,3, 0x8b800b0,3, 0x8b800c0,3, 0x8b800d0,3, 0x8b800e0,3, 0x8b800f0,3, 0x8b80100,3, 0x8b80110,3, 0x8b80120,3, 0x8b80130,3, 0x8b80140,3, 0x8b80150,3, 0x8b80160,3, 0x8b80170,3, 0x8b80180,3, 0x8b80190,3, 0x8b801a0,3, 0x8b801b0,3, 0x8b801c0,3, 0x8b801d0,3, 0x8b801e0,3, 0x8b801f0,3, 0x8b80200,3, 0x8b80210,3, 0x8b80220,3, 0x8b80230,3, 0x8b80240,3, 0x8b80250,3, 0x8b80260,3, 0x8b80270,3, 0x8b80280,3, 0x8b80290,3, 0x8b802a0,3, 0x8b802b0,3, 0x8b802c0,3, 0x8b802d0,3, 0x8b802e0,3, 0x8b802f0,3, 0x8b80300,3, 0x8b80310,3, 0x8b80320,3, 0x8b80330,3, 0x8b80340,3, 0x8b80350,3, 0x8b80360,3, 0x8b80370,3, 0x8b80380,3, 0x8b80390,3, 0x8b803a0,3, 0x8b803b0,3, 0x8b803c0,3, 0x8b803d0,3, 0x8b803e0,3, 0x8b803f0,3, 0x8b80400,3, 0x8b80410,3, 0x8b80420,3, 0x8b80430,3, 0x8b80440,3, 0x8b80450,3, 0x8b80460,3, 0x8b80470,3, 0x8b80480,3, 0x8b80490,3, 0x8b804a0,3, 0x8b804b0,3, 0x8b804c0,3, 0x8b804d0,3, 0x8b804e0,3, 0x8b804f0,3, 0x8b80500,3, 0x8b80510,3, 0x8b80520,3, 0x8b80530,3, 0x8b80540,3, 0x8b80550,3, 0x8b80560,3, 0x8b80570,3, 0x8b80580,3, 0x8b80590,3, 0x8b805a0,3, 0x8b805b0,3, 0x8b805c0,3, 0x8b805d0,3, 0x8b805e0,3, 0x8b805f0,3, 0x8b80600,3, 0x8b80610,3, 0x8b80620,3, 0x8b80630,3, 0x8b80640,3, 0x8b80650,3, 0x8b80660,3, 0x8b80670,3, 0x8b80680,3, 0x8b80690,3, 0x8b806a0,3, 0x8b806b0,3, 0x8b806c0,3, 0x8b806d0,3, 0x8b806e0,3, 0x8b806f0,3, 0x8b80700,3, 0x8b80710,3, 0x8b80720,3, 0x8b80730,3, 0x8b80740,3, 0x8b80750,3, 0x8b80760,3, 0x8b80770,3, 0x8b80780,3, 0x8b80790,3, 0x8b807a0,3, 0x8b807b0,3, 0x8b807c0,3, 0x8b807d0,3, 0x8b807e0,3, 0x8b807f0,3, 0x8b80800,3, 0x8b80810,3, 0x8b80820,3, 0x8b80830,3, 0x8b80840,3, 0x8b80850,3, 0x8b80860,3, 0x8b80870,3, 0x8b80880,3, 0x8b80890,3, 0x8b808a0,3, 0x8b808b0,3, 0x8b808c0,3, 0x8b808d0,3, 0x8b808e0,3, 0x8b808f0,3, 0x8b80900,3, 0x8b80910,3, 0x8b80920,3, 0x8b80930,3, 0x8b80940,3, 0x8b80950,3, 0x8b80960,3, 0x8b80970,3, 0x8b80980,3, 0x8b80990,3, 0x8b809a0,3, 0x8b809b0,3, 0x8b809c0,3, 0x8b809d0,3, 0x8b809e0,3, 0x8b809f0,3, 0x8b80a00,3, 0x8b80a10,3, 0x8b80a20,3, 0x8b80a30,3, 0x8b80a40,3, 0x8b80a50,3, 0x8b80a60,3, 0x8b80a70,3, 0x8b80a80,3, 0x8b80a90,3, 0x8b80aa0,3, 0x8b80ab0,3, 0x8b80ac0,3, 0x8b80ad0,3, 0x8b80ae0,3, 0x8b80af0,3, 0x8b80b00,3, 0x8b80b10,3, 0x8b80b20,3, 0x8b80b30,3, 0x8b80b40,3, 0x8b80b50,3, 0x8b80b60,3, 0x8b80b70,3, 0x8b80b80,3, 0x8b80b90,3, 0x8b80ba0,3, 0x8b80bb0,3, 0x8b80bc0,3, 0x8b80bd0,3, 0x8b80be0,3, 0x8b80bf0,3, 0x8b80c00,3, 0x8b80c10,3, 0x8b80c20,3, 0x8b80c30,3, 0x8b80c40,3, 0x8b80c50,3, 0x8b80c60,3, 0x8b80c70,3, 0x8b80c80,3, 0x8b80c90,3, 0x8b80ca0,3, 0x8b80cb0,3, 0x8b80cc0,3, 0x8b80cd0,3, 0x8b80ce0,3, 0x8b80cf0,3, 0x8b80d00,3, 0x8b80d10,3, 0x8b80d20,3, 0x8b80d30,3, 0x8b80d40,3, 0x8b80d50,3, 0x8b80d60,3, 0x8b80d70,3, 0x8b80d80,3, 0x8b80d90,3, 0x8b80da0,3, 0x8b80db0,3, 0x8b80dc0,3, 0x8b80dd0,3, 0x8b80de0,3, 0x8b80df0,3, 0x8b80e00,3, 0x8b80e10,3, 0x8b80e20,3, 0x8b80e30,3, 0x8b80e40,3, 0x8b80e50,3, 0x8b80e60,3, 0x8b80e70,3, 0x8b80e80,3, 0x8b80e90,3, 0x8b80ea0,3, 0x8b80eb0,3, 0x8b80ec0,3, 0x8b80ed0,3, 0x8b80ee0,3, 0x8b80ef0,3, 0x8b80f00,3, 0x8b80f10,3, 0x8b80f20,3, 0x8b80f30,3, 0x8b80f40,3, 0x8b80f50,3, 0x8b80f60,3, 0x8b80f70,3, 0x8b80f80,3, 0x8b80f90,3, 0x8b80fa0,3, 0x8b80fb0,3, 0x8b80fc0,3, 0x8b80fd0,3, 0x8b80fe0,3, 0x8b80ff0,3, 0x8b81000,3, 0x8b81010,3, 0x8b81020,3, 0x8b81030,3, 0x8b81040,3, 0x8b81050,3, 0x8b81060,3, 0x8b81070,3, 0x8b81080,3, 0x8b81090,3, 0x8b810a0,3, 0x8b810b0,3, 0x8b810c0,3, 0x8b810d0,3, 0x8b810e0,3, 0x8b810f0,3, 0x8b81100,3, 0x8b81110,3, 0x8b81120,3, 0x8b81130,3, 0x8b81140,3, 0x8b81150,3, 0x8b81160,3, 0x8b81170,3, 0x8b81180,3, 0x8b81190,3, 0x8b811a0,3, 0x8b811b0,3, 0x8b811c0,3, 0x8b811d0,3, 0x8b811e0,3, 0x8b811f0,3, 0x8b81200,3, 0x8b81210,3, 0x8b81220,3, 0x8b81230,3, 0x8b81240,3, 0x8b81250,3, 0x8b81260,3, 0x8b81270,3, 0x8b81280,3, 0x8b81290,3, 0x8b812a0,3, 0x8b812b0,3, 0x8b812c0,3, 0x8b812d0,3, 0x8b812e0,3, 0x8b812f0,3, 0x8b81300,3, 0x8b81310,3, 0x8b81320,3, 0x8b81330,3, 0x8b81340,3, 0x8b81350,3, 0x8b81360,3, 0x8b81370,3, 0x8b81380,3, 0x8b81390,3, 0x8b813a0,3, 0x8b813b0,3, 0x8b813c0,3, 0x8b813d0,3, 0x8b813e0,3, 0x8b813f0,3, 0x8b81400,3, 0x8b81410,3, 0x8b81420,3, 0x8b81430,3, 0x8b81440,3, 0x8b81450,3, 0x8b81460,3, 0x8b81470,3, 0x8b81480,3, 0x8b81490,3, 0x8b814a0,3, 0x8b814b0,3, 0x8b814c0,3, 0x8b814d0,3, 0x8b814e0,3, 0x8b814f0,3, 0x8b81500,3, 0x8b81510,3, 0x8b81520,3, 0x8b81530,3, 0x8b81540,3, 0x8b81550,3, 0x8b81560,3, 0x8b81570,3, 0x8b81580,3, 0x8b81590,3, 0x8b815a0,3, 0x8b815b0,3, 0x8b815c0,3, 0x8b815d0,3, 0x8b815e0,3, 0x8b815f0,3, 0x8b81600,3, 0x8b81610,3, 0x8b81620,3, 0x8b81630,3, 0x8b81640,3, 0x8b81650,3, 0x8b81660,3, 0x8b81670,3, 0x8b81680,3, 0x8b81690,3, 0x8b816a0,3, 0x8b816b0,3, 0x8b816c0,3, 0x8b816d0,3, 0x8b816e0,3, 0x8b816f0,3, 0x8b81700,3, 0x8b81710,3, 0x8b81720,3, 0x8b81730,3, 0x8b81740,3, 0x8b81750,3, 0x8b81760,3, 0x8b81770,3, 0x8b81780,3, 0x8b81790,3, 0x8b817a0,3, 0x8b817b0,3, 0x8b817c0,3, 0x8b817d0,3, 0x8b817e0,3, 0x8b817f0,3, 0x8b81800,3, 0x8b81810,3, 0x8b81820,3, 0x8b81830,3, 0x8b81840,3, 0x8b81850,3, 0x8b81860,3, 0x8b81870,3, 0x8b81880,3, 0x8b81890,3, 0x8b818a0,3, 0x8b818b0,3, 0x8b818c0,3, 0x8b818d0,3, 0x8b818e0,3, 0x8b818f0,3, 0x8b81900,3, 0x8b81910,3, 0x8b81920,3, 0x8b81930,3, 0x8b81940,3, 0x8b81950,3, 0x8b81960,3, 0x8b81970,3, 0x8b81980,3, 0x8b81990,3, 0x8b819a0,3, 0x8b819b0,3, 0x8b819c0,3, 0x8b819d0,3, 0x8b819e0,3, 0x8b819f0,3, 0x8b81a00,3, 0x8b81a10,3, 0x8b81a20,3, 0x8b81a30,3, 0x8b81a40,3, 0x8b81a50,3, 0x8b81a60,3, 0x8b81a70,3, 0x8b81a80,3, 0x8b81a90,3, 0x8b81aa0,3, 0x8b81ab0,3, 0x8b81ac0,3, 0x8b81ad0,3, 0x8b81ae0,3, 0x8b81af0,3, 0x8b81b00,3, 0x8b81b10,3, 0x8b81b20,3, 0x8b81b30,3, 0x8b81b40,3, 0x8b81b50,3, 0x8b81b60,3, 0x8b81b70,3, 0x8b81b80,3, 0x8b81b90,3, 0x8b81ba0,3, 0x8b81bb0,3, 0x8b81bc0,3, 0x8b81bd0,3, 0x8b81be0,3, 0x8b81bf0,3, 0x8b81c00,3, 0x8b81c10,3, 0x8b81c20,3, 0x8b81c30,3, 0x8b81c40,3, 0x8b81c50,3, 0x8b81c60,3, 0x8b81c70,3, 0x8b81c80,3, 0x8b81c90,3, 0x8b81ca0,3, 0x8b81cb0,3, 0x8b81cc0,3, 0x8b81cd0,3, 0x8b81ce0,3, 0x8b81cf0,3, 0x8b81d00,3, 0x8b81d10,3, 0x8b81d20,3, 0x8b81d30,3, 0x8b81d40,3, 0x8b81d50,3, 0x8b81d60,3, 0x8b81d70,3, 0x8b81d80,3, 0x8b81d90,3, 0x8b81da0,3, 0x8b81db0,3, 0x8b81dc0,3, 0x8b81dd0,3, 0x8b81de0,3, 0x8b81df0,3, 0x8b81e00,3, 0x8b81e10,3, 0x8b81e20,3, 0x8b81e30,3, 0x8b81e40,3, 0x8b81e50,3, 0x8b81e60,3, 0x8b81e70,3, 0x8b81e80,3, 0x8b81e90,3, 0x8b81ea0,3, 0x8b81eb0,3, 0x8b81ec0,3, 0x8b81ed0,3, 0x8b81ee0,3, 0x8b81ef0,3, 0x8b81f00,3, 0x8b81f10,3, 0x8b81f20,3, 0x8b81f30,3, 0x8b81f40,3, 0x8b81f50,3, 0x8b81f60,3, 0x8b81f70,3, 0x8b81f80,3, 0x8b81f90,3, 0x8b81fa0,3, 0x8b81fb0,3, 0x8b81fc0,3, 0x8b81fd0,3, 0x8b81fe0,3, 0x8b81ff0,3, 0x8b82000,3, 0x8b82010,3, 0x8b82020,3, 0x8b82030,3, 0x8b82040,3, 0x8b82050,3, 0x8b82060,3, 0x8b82070,3, 0x8b82080,3, 0x8b82090,3, 0x8b820a0,3, 0x8b820b0,3, 0x8b820c0,3, 0x8b820d0,3, 0x8b820e0,3, 0x8b820f0,3, 0x8b82100,3, 0x8b82110,3, 0x8b82120,3, 0x8b82130,3, 0x8b82140,3, 0x8b82150,3, 0x8b82160,3, 0x8b82170,3, 0x8b82180,3, 0x8b82190,3, 0x8b821a0,3, 0x8b821b0,3, 0x8b821c0,3, 0x8b821d0,3, 0x8b821e0,3, 0x8b821f0,3, 0x8b82200,3, 0x8b82210,3, 0x8b82220,3, 0x8b82230,3, 0x8b82240,3, 0x8b82250,3, 0x8b82260,3, 0x8b82270,3, 0x8b82280,3, 0x8b82290,3, 0x8b822a0,3, 0x8b822b0,3, 0x8b822c0,3, 0x8b822d0,3, 0x8b822e0,3, 0x8b822f0,3, 0x8b82300,3, 0x8b82310,3, 0x8b82320,3, 0x8b82330,3, 0x8b82340,3, 0x8b82350,3, 0x8b82360,3, 0x8b82370,3, 0x8b82380,3, 0x8b82390,3, 0x8b823a0,3, 0x8b823b0,3, 0x8b823c0,3, 0x8b823d0,3, 0x8b823e0,3, 0x8b823f0,3, 0x8b82400,3, 0x8b82410,3, 0x8b82420,3, 0x8b82430,3, 0x8b82440,3, 0x8b82450,3, 0x8b82460,3, 0x8b82470,3, 0x8b82480,3, 0x8b82490,3, 0x8b824a0,3, 0x8b824b0,3, 0x8b824c0,3, 0x8b824d0,3, 0x8b824e0,3, 0x8b824f0,3, 0x8b82500,3, 0x8b82510,3, 0x8b82520,3, 0x8b82530,3, 0x8b82540,3, 0x8b82550,3, 0x8b82560,3, 0x8b82570,3, 0x8b82580,3, 0x8b82590,3, 0x8b825a0,3, 0x8b825b0,3, 0x8b825c0,3, 0x8b825d0,3, 0x8b825e0,3, 0x8b825f0,3, 0x8b82600,3, 0x8b82610,3, 0x8b82620,3, 0x8b82630,3, 0x8b82640,3, 0x8b82650,3, 0x8b82660,3, 0x8b82670,3, 0x8b82680,3, 0x8b82690,3, 0x8b826a0,3, 0x8b826b0,3, 0x8b826c0,3, 0x8b826d0,3, 0x8b826e0,3, 0x8b826f0,3, 0x8b82700,3, 0x8b82710,3, 0x8b82720,3, 0x8b82730,3, 0x8b82740,3, 0x8b82750,3, 0x8b82760,3, 0x8b82770,3, 0x8b82780,3, 0x8b82790,3, 0x8b827a0,3, 0x8b827b0,3, 0x8b827c0,3, 0x8b827d0,3, 0x8b827e0,3, 0x8b827f0,3, 0x8b82800,3, 0x8b82810,3, 0x8b82820,3, 0x8b82830,3, 0x8b82840,3, 0x8b82850,3, 0x8b82860,3, 0x8b82870,3, 0x8b82880,3, 0x8b82890,3, 0x8b828a0,3, 0x8b828b0,3, 0x8b828c0,3, 0x8b828d0,3, 0x8b828e0,3, 0x8b828f0,3, 0x8b82900,3, 0x8b82910,3, 0x8b82920,3, 0x8b82930,3, 0x8b82940,3, 0x8b82950,3, 0x8b82960,3, 0x8b82970,3, 0x8b82980,3, 0x8b82990,3, 0x8b829a0,3, 0x8b829b0,3, 0x8b829c0,3, 0x8b829d0,3, 0x8b829e0,3, 0x8b829f0,3, 0x8b82a00,3, 0x8b82a10,3, 0x8b82a20,3, 0x8b82a30,3, 0x8b82a40,3, 0x8b82a50,3, 0x8b82a60,3, 0x8b82a70,3, 0x8b82a80,3, 0x8b82a90,3, 0x8b82aa0,3, 0x8b82ab0,3, 0x8b82ac0,3, 0x8b82ad0,3, 0x8b82ae0,3, 0x8b82af0,3, 0x8b82b00,3, 0x8b82b10,3, 0x8b82b20,3, 0x8b82b30,3, 0x8b82b40,3, 0x8b82b50,3, 0x8b82b60,3, 0x8b82b70,3, 0x8b82b80,3, 0x8b82b90,3, 0x8b82ba0,3, 0x8b82bb0,3, 0x8b82bc0,3, 0x8b82bd0,3, 0x8b82be0,3, 0x8b82bf0,3, 0x8b82c00,3, 0x8b82c10,3, 0x8b82c20,3, 0x8b82c30,3, 0x8b82c40,3, 0x8b82c50,3, 0x8b82c60,3, 0x8b82c70,3, 0x8b82c80,3, 0x8b82c90,3, 0x8b82ca0,3, 0x8b82cb0,3, 0x8b82cc0,3, 0x8b82cd0,3, 0x8b82ce0,3, 0x8b82cf0,3, 0x8b82d00,3, 0x8b82d10,3, 0x8b82d20,3, 0x8b82d30,3, 0x8b82d40,3, 0x8b82d50,3, 0x8b82d60,3, 0x8b82d70,3, 0x8b82d80,3, 0x8b82d90,3, 0x8b82da0,3, 0x8b82db0,3, 0x8b82dc0,3, 0x8b82dd0,3, 0x8b82de0,3, 0x8b82df0,3, 0x8b82e00,3, 0x8b82e10,3, 0x8b82e20,3, 0x8b82e30,3, 0x8b82e40,3, 0x8b82e50,3, 0x8b82e60,3, 0x8b82e70,3, 0x8b82e80,3, 0x8b82e90,3, 0x8b82ea0,3, 0x8b82eb0,3, 0x8b82ec0,3, 0x8b82ed0,3, 0x8b82ee0,3, 0x8b82ef0,3, 0x8b82f00,3, 0x8b82f10,3, 0x8b82f20,3, 0x8b82f30,3, 0x8b82f40,3, 0x8b82f50,3, 0x8b82f60,3, 0x8b82f70,3, 0x8b82f80,3, 0x8b82f90,3, 0x8b82fa0,3, 0x8b82fb0,3, 0x8b82fc0,3, 0x8b82fd0,3, 0x8b82fe0,3, 0x8b82ff0,3, 0x8b83000,3, 0x8b83010,3, 0x8b83020,3, 0x8b83030,3, 0x8b83040,3, 0x8b83050,3, 0x8b83060,3, 0x8b83070,3, 0x8b83080,3, 0x8b83090,3, 0x8b830a0,3, 0x8b830b0,3, 0x8b830c0,3, 0x8b830d0,3, 0x8b830e0,3, 0x8b830f0,3, 0x8b83100,3, 0x8b83110,3, 0x8b83120,3, 0x8b83130,3, 0x8b83140,3, 0x8b83150,3, 0x8b83160,3, 0x8b83170,3, 0x8b83180,3, 0x8b83190,3, 0x8b831a0,3, 0x8b831b0,3, 0x8b831c0,3, 0x8b831d0,3, 0x8b831e0,3, 0x8b831f0,3, 0x8b83200,3, 0x8b83210,3, 0x8b83220,3, 0x8b83230,3, 0x8b83240,3, 0x8b83250,3, 0x8b83260,3, 0x8b83270,3, 0x8b83280,3, 0x8b83290,3, 0x8b832a0,3, 0x8b832b0,3, 0x8b832c0,3, 0x8b832d0,3, 0x8b832e0,3, 0x8b832f0,3, 0x8b83300,3, 0x8b83310,3, 0x8b83320,3, 0x8b83330,3, 0x8b83340,3, 0x8b83350,3, 0x8b83360,3, 0x8b83370,3, 0x8b83380,3, 0x8b83390,3, 0x8b833a0,3, 0x8b833b0,3, 0x8b833c0,3, 0x8b833d0,3, 0x8b833e0,3, 0x8b833f0,3, 0x8b83400,3, 0x8b83410,3, 0x8b83420,3, 0x8b83430,3, 0x8b83440,3, 0x8b83450,3, 0x8b83460,3, 0x8b83470,3, 0x8b83480,3, 0x8b83490,3, 0x8b834a0,3, 0x8b834b0,3, 0x8b834c0,3, 0x8b834d0,3, 0x8b834e0,3, 0x8b834f0,3, 0x8b83500,3, 0x8b83510,3, 0x8b83520,3, 0x8b83530,3, 0x8b83540,3, 0x8b83550,3, 0x8b83560,3, 0x8b83570,3, 0x8b83580,3, 0x8b83590,3, 0x8b835a0,3, 0x8b835b0,3, 0x8b835c0,3, 0x8b835d0,3, 0x8b835e0,3, 0x8b835f0,3, 0x8b83600,3, 0x8b83610,3, 0x8b83620,3, 0x8b83630,3, 0x8b83640,3, 0x8b83650,3, 0x8b83660,3, 0x8b83670,3, 0x8b83680,3, 0x8b83690,3, 0x8b836a0,3, 0x8b836b0,3, 0x8b836c0,3, 0x8b836d0,3, 0x8b836e0,3, 0x8b836f0,3, 0x8b83700,3, 0x8b83710,3, 0x8b83720,3, 0x8b83730,3, 0x8b83740,3, 0x8b83750,3, 0x8b83760,3, 0x8b83770,3, 0x8b83780,3, 0x8b83790,3, 0x8b837a0,3, 0x8b837b0,3, 0x8b837c0,3, 0x8b837d0,3, 0x8b837e0,3, 0x8b837f0,3, 0x8b83800,3, 0x8b83810,3, 0x8b83820,3, 0x8b83830,3, 0x8b83840,3, 0x8b83850,3, 0x8b83860,3, 0x8b83870,3, 0x8b83880,3, 0x8b83890,3, 0x8b838a0,3, 0x8b838b0,3, 0x8b838c0,3, 0x8b838d0,3, 0x8b838e0,3, 0x8b838f0,3, 0x8b83900,3, 0x8b83910,3, 0x8b83920,3, 0x8b83930,3, 0x8b83940,3, 0x8b83950,3, 0x8b83960,3, 0x8b83970,3, 0x8b83980,3, 0x8b83990,3, 0x8b839a0,3, 0x8b839b0,3, 0x8b839c0,3, 0x8b839d0,3, 0x8b839e0,3, 0x8b839f0,3, 0x8b83a00,3, 0x8b83a10,3, 0x8b83a20,3, 0x8b83a30,3, 0x8b83a40,3, 0x8b83a50,3, 0x8b83a60,3, 0x8b83a70,3, 0x8b83a80,3, 0x8b83a90,3, 0x8b83aa0,3, 0x8b83ab0,3, 0x8b83ac0,3, 0x8b83ad0,3, 0x8b83ae0,3, 0x8b83af0,3, 0x8b83b00,3, 0x8b83b10,3, 0x8b83b20,3, 0x8b83b30,3, 0x8b83b40,3, 0x8b83b50,3, 0x8b83b60,3, 0x8b83b70,3, 0x8b83b80,3, 0x8b83b90,3, 0x8b83ba0,3, 0x8b83bb0,3, 0x8b83bc0,3, 0x8b83bd0,3, 0x8b83be0,3, 0x8b83bf0,3, 0x8b83c00,3, 0x8b83c10,3, 0x8b83c20,3, 0x8b83c30,3, 0x8b83c40,3, 0x8b83c50,3, 0x8b83c60,3, 0x8b83c70,3, 0x8b83c80,3, 0x8b83c90,3, 0x8b83ca0,3, 0x8b83cb0,3, 0x8b83cc0,3, 0x8b83cd0,3, 0x8b83ce0,3, 0x8b83cf0,3, 0x8b83d00,3, 0x8b83d10,3, 0x8b83d20,3, 0x8b83d30,3, 0x8b83d40,3, 0x8b83d50,3, 0x8b83d60,3, 0x8b83d70,3, 0x8b83d80,3, 0x8b83d90,3, 0x8b83da0,3, 0x8b83db0,3, 0x8b83dc0,3, 0x8b83dd0,3, 0x8b83de0,3, 0x8b83df0,3, 0x8b83e00,3, 0x8b83e10,3, 0x8b83e20,3, 0x8b83e30,3, 0x8b83e40,3, 0x8b83e50,3, 0x8b83e60,3, 0x8b83e70,3, 0x8b83e80,3, 0x8b83e90,3, 0x8b83ea0,3, 0x8b83eb0,3, 0x8b83ec0,3, 0x8b83ed0,3, 0x8b83ee0,3, 0x8b83ef0,3, 0x8b83f00,3, 0x8b83f10,3, 0x8b83f20,3, 0x8b83f30,3, 0x8b83f40,3, 0x8b83f50,3, 0x8b83f60,3, 0x8b83f70,3, 0x8b83f80,3, 0x8b83f90,3, 0x8b83fa0,3, 0x8b83fb0,3, 0x8b83fc0,3, 0x8b83fd0,3, 0x8b83fe0,3, 0x8b83ff0,3, 0x8b84000,3, 0x8b84010,3, 0x8b84020,3, 0x8b84030,3, 0x8b84040,3, 0x8b84050,3, 0x8b84060,3, 0x8b84070,3, 0x8b84080,3, 0x8b84090,3, 0x8b840a0,3, 0x8b840b0,3, 0x8b840c0,3, 0x8b840d0,3, 0x8b840e0,3, 0x8b840f0,3, 0x8b84100,3, 0x8b84110,3, 0x8b84120,3, 0x8b84130,3, 0x8b84140,3, 0x8b84150,3, 0x8b84160,3, 0x8b84170,3, 0x8b84180,3, 0x8b84190,3, 0x8b841a0,3, 0x8b841b0,3, 0x8b841c0,3, 0x8b841d0,3, 0x8b841e0,3, 0x8b841f0,3, 0x8b84200,3, 0x8b84210,3, 0x8b84220,3, 0x8b84230,3, 0x8b84240,3, 0x8b84250,3, 0x8b84260,3, 0x8b84270,3, 0x8b84280,3, 0x8b84290,3, 0x8b842a0,3, 0x8b842b0,3, 0x8b842c0,3, 0x8b842d0,3, 0x8b842e0,3, 0x8b842f0,3, 0x8b84300,3, 0x8b84310,3, 0x8b84320,3, 0x8b84330,3, 0x8b84340,3, 0x8b84350,3, 0x8b84360,3, 0x8b84370,3, 0x8b84380,3, 0x8b84390,3, 0x8b843a0,3, 0x8b843b0,3, 0x8b843c0,3, 0x8b843d0,3, 0x8b843e0,3, 0x8b843f0,3, 0x8b84400,3, 0x8b84410,3, 0x8b84420,3, 0x8b84430,3, 0x8b84440,3, 0x8b84450,3, 0x8b84460,3, 0x8b84470,3, 0x8b84480,3, 0x8b84490,3, 0x8b844a0,3, 0x8b844b0,3, 0x8b844c0,3, 0x8b844d0,3, 0x8b844e0,3, 0x8b844f0,3, 0x8b84500,3, 0x8b84510,3, 0x8b84520,3, 0x8b84530,3, 0x8b84540,3, 0x8b84550,3, 0x8b84560,3, 0x8b84570,3, 0x8b84580,3, 0x8b84590,3, 0x8b845a0,3, 0x8b845b0,3, 0x8b845c0,3, 0x8b845d0,3, 0x8b845e0,3, 0x8b845f0,3, 0x8b84600,3, 0x8b84610,3, 0x8b84620,3, 0x8b84630,3, 0x8b84640,3, 0x8b84650,3, 0x8b84660,3, 0x8b84670,3, 0x8b84680,3, 0x8b84690,3, 0x8b846a0,3, 0x8b846b0,3, 0x8b846c0,3, 0x8b846d0,3, 0x8b846e0,3, 0x8b846f0,3, 0x8b84700,3, 0x8b84710,3, 0x8b84720,3, 0x8b84730,3, 0x8b84740,3, 0x8b84750,3, 0x8b84760,3, 0x8b84770,3, 0x8b84780,3, 0x8b84790,3, 0x8b847a0,3, 0x8b847b0,3, 0x8b847c0,3, 0x8b847d0,3, 0x8b847e0,3, 0x8b847f0,3, 0x8b84800,3, 0x8b84810,3, 0x8b84820,3, 0x8b84830,3, 0x8b84840,3, 0x8b84850,3, 0x8b84860,3, 0x8b84870,3, 0x8b84880,3, 0x8b84890,3, 0x8b848a0,3, 0x8b848b0,3, 0x8b848c0,3, 0x8b848d0,3, 0x8b848e0,3, 0x8b848f0,3, 0x8b84900,3, 0x8b84910,3, 0x8b84920,3, 0x8b84930,3, 0x8b84940,3, 0x8b84950,3, 0x8b84960,3, 0x8b84970,3, 0x8b84980,3, 0x8b84990,3, 0x8b849a0,3, 0x8b849b0,3, 0x8b849c0,3, 0x8b849d0,3, 0x8b849e0,3, 0x8b849f0,3, 0x8b84a00,3, 0x8b84a10,3, 0x8b84a20,3, 0x8b84a30,3, 0x8b84a40,3, 0x8b84a50,3, 0x8b84a60,3, 0x8b84a70,3, 0x8b84a80,3, 0x8b84a90,3, 0x8b84aa0,3, 0x8b84ab0,3, 0x8b84ac0,3, 0x8b84ad0,3, 0x8b84ae0,3, 0x8b84af0,3, 0x8b84b00,3, 0x8b84b10,3, 0x8b84b20,3, 0x8b84b30,3, 0x8b84b40,3, 0x8b84b50,3, 0x8b84b60,3, 0x8b84b70,3, 0x8b84b80,3, 0x8b84b90,3, 0x8b84ba0,3, 0x8b84bb0,3, 0x8b84bc0,3, 0x8b84bd0,3, 0x8b84be0,3, 0x8b84bf0,3, 0x8b84c00,3, 0x8b84c10,3, 0x8b84c20,3, 0x8b84c30,3, 0x8b84c40,3, 0x8b84c50,3, 0x8b84c60,3, 0x8b84c70,3, 0x8b84c80,3, 0x8b84c90,3, 0x8b84ca0,3, 0x8b84cb0,3, 0x8b84cc0,3, 0x8b84cd0,3, 0x8b84ce0,3, 0x8b84cf0,3, 0x8b84d00,3, 0x8b84d10,3, 0x8b84d20,3, 0x8b84d30,3, 0x8b84d40,3, 0x8b84d50,3, 0x8b84d60,3, 0x8b84d70,3, 0x8b84d80,3, 0x8b84d90,3, 0x8b84da0,3, 0x8b84db0,3, 0x8b84dc0,3, 0x8b84dd0,3, 0x8b84de0,3, 0x8b84df0,3, 0x8b84e00,3, 0x8b84e10,3, 0x8b84e20,3, 0x8b84e30,3, 0x8b84e40,3, 0x8b84e50,3, 0x8b84e60,3, 0x8b84e70,3, 0x8b84e80,3, 0x8b84e90,3, 0x8b84ea0,3, 0x8b84eb0,3, 0x8b84ec0,3, 0x8b84ed0,3, 0x8b84ee0,3, 0x8b84ef0,3, 0x8b84f00,3, 0x8b84f10,3, 0x8b84f20,3, 0x8b84f30,3, 0x8b84f40,3, 0x8b84f50,3, 0x8b84f60,3, 0x8b84f70,3, 0x8b84f80,3, 0x8b84f90,3, 0x8b84fa0,3, 0x8b84fb0,3, 0x8b84fc0,3, 0x8b84fd0,3, 0x8b84fe0,3, 0x8b84ff0,3, 0x8b85000,3, 0x8b85010,3, 0x8b85020,3, 0x8b85030,3, 0x8b85040,3, 0x8b85050,3, 0x8b85060,3, 0x8b85070,3, 0x8b85080,3, 0x8b85090,3, 0x8b850a0,3, 0x8b850b0,3, 0x8b850c0,3, 0x8b850d0,3, 0x8b850e0,3, 0x8b850f0,3, 0x8b85100,3, 0x8b85110,3, 0x8b85120,3, 0x8b85130,3, 0x8b85140,3, 0x8b85150,3, 0x8b85160,3, 0x8b85170,3, 0x8b85180,3, 0x8b85190,3, 0x8b851a0,3, 0x8b851b0,3, 0x8b851c0,3, 0x8b851d0,3, 0x8b851e0,3, 0x8b851f0,3, 0x8b85200,3, 0x8b85210,3, 0x8b85220,3, 0x8b85230,3, 0x8b85240,3, 0x8b85250,3, 0x8b85260,3, 0x8b85270,3, 0x8b85280,3, 0x8b85290,3, 0x8b852a0,3, 0x8b852b0,3, 0x8b852c0,3, 0x8b852d0,3, 0x8b852e0,3, 0x8b852f0,3, 0x8b85300,3, 0x8b85310,3, 0x8b85320,3, 0x8b85330,3, 0x8b85340,3, 0x8b85350,3, 0x8b85360,3, 0x8b85370,3, 0x8b85380,3, 0x8b85390,3, 0x8b853a0,3, 0x8b853b0,3, 0x8b853c0,3, 0x8b853d0,3, 0x8b853e0,3, 0x8b853f0,3, 0x8b85400,3, 0x8b85410,3, 0x8b85420,3, 0x8b85430,3, 0x8b85440,3, 0x8b85450,3, 0x8b85460,3, 0x8b85470,3, 0x8b85480,3, 0x8b85490,3, 0x8b854a0,3, 0x8b854b0,3, 0x8b854c0,3, 0x8b854d0,3, 0x8b854e0,3, 0x8b854f0,3, 0x8b85500,3, 0x8b85510,3, 0x8b85520,3, 0x8b85530,3, 0x8b85540,3, 0x8b85550,3, 0x8b85560,3, 0x8b85570,3, 0x8b85580,3, 0x8b85590,3, 0x8b855a0,3, 0x8b855b0,3, 0x8b855c0,3, 0x8b855d0,3, 0x8b855e0,3, 0x8b855f0,3, 0x8b85600,3, 0x8b85610,3, 0x8b85620,3, 0x8b85630,3, 0x8b85640,3, 0x8b85650,3, 0x8b85660,3, 0x8b85670,3, 0x8b85680,3, 0x8b85690,3, 0x8b856a0,3, 0x8b856b0,3, 0x8b856c0,3, 0x8b856d0,3, 0x8b856e0,3, 0x8b856f0,3, 0x8b85700,3, 0x8b85710,3, 0x8b85720,3, 0x8b85730,3, 0x8b85740,3, 0x8b85750,3, 0x8b85760,3, 0x8b85770,3, 0x8b85780,3, 0x8b85790,3, 0x8b857a0,3, 0x8b857b0,3, 0x8b857c0,3, 0x8b857d0,3, 0x8b857e0,3, 0x8b857f0,3, 0x8b85800,3, 0x8b85810,3, 0x8b85820,3, 0x8b85830,3, 0x8b85840,3, 0x8b85850,3, 0x8b85860,3, 0x8b85870,3, 0x8b85880,3, 0x8b85890,3, 0x8b858a0,3, 0x8b858b0,3, 0x8b858c0,3, 0x8b858d0,3, 0x8b858e0,3, 0x8b858f0,3, 0x8b85900,3, 0x8b85910,3, 0x8b85920,3, 0x8b85930,3, 0x8b85940,3, 0x8b85950,3, 0x8b85960,3, 0x8b85970,3, 0x8b85980,3, 0x8b85990,3, 0x8b859a0,3, 0x8b859b0,3, 0x8b859c0,3, 0x8b859d0,3, 0x8b859e0,3, 0x8b859f0,3, 0x8b85a00,3, 0x8b85a10,3, 0x8b85a20,3, 0x8b85a30,3, 0x8b85a40,3, 0x8b85a50,3, 0x8b85a60,3, 0x8b85a70,3, 0x8b85a80,3, 0x8b85a90,3, 0x8b85aa0,3, 0x8b85ab0,3, 0x8b85ac0,3, 0x8b85ad0,3, 0x8b85ae0,3, 0x8b85af0,3, 0x8b85b00,3, 0x8b85b10,3, 0x8b85b20,3, 0x8b85b30,3, 0x8b85b40,3, 0x8b85b50,3, 0x8b85b60,3, 0x8b85b70,3, 0x8b85b80,3, 0x8b85b90,3, 0x8b85ba0,3, 0x8b85bb0,3, 0x8b85bc0,3, 0x8b85bd0,3, 0x8b85be0,3, 0x8b85bf0,3, 0x8b85c00,3, 0x8b85c10,3, 0x8b85c20,3, 0x8b85c30,3, 0x8b85c40,3, 0x8b85c50,3, 0x8b85c60,3, 0x8b85c70,3, 0x8b85c80,3, 0x8b85c90,3, 0x8b85ca0,3, 0x8b85cb0,3, 0x8b85cc0,3, 0x8b85cd0,3, 0x8b85ce0,3, 0x8b85cf0,3, 0x8b85d00,3, 0x8b85d10,3, 0x8b85d20,3, 0x8b85d30,3, 0x8b85d40,3, 0x8b85d50,3, 0x8b85d60,3, 0x8b85d70,3, 0x8b85d80,3, 0x8b85d90,3, 0x8b85da0,3, 0x8b85db0,3, 0x8b85dc0,3, 0x8b85dd0,3, 0x8b85de0,3, 0x8b85df0,3, 0x8b85e00,3, 0x8b85e10,3, 0x8b85e20,3, 0x8b85e30,3, 0x8b85e40,3, 0x8b85e50,3, 0x8b85e60,3, 0x8b85e70,3, 0x8b85e80,3, 0x8b85e90,3, 0x8b85ea0,3, 0x8b85eb0,3, 0x8b85ec0,3, 0x8b85ed0,3, 0x8b85ee0,3, 0x8b85ef0,3, 0x8b85f00,3, 0x8b85f10,3, 0x8b85f20,3, 0x8b85f30,3, 0x8b85f40,3, 0x8b85f50,3, 0x8b85f60,3, 0x8b85f70,3, 0x8b85f80,3, 0x8b85f90,3, 0x8b85fa0,3, 0x8b85fb0,3, 0x8b85fc0,3, 0x8b85fd0,3, 0x8b85fe0,3, 0x8b85ff0,3, 0x8b86000,3, 0x8b86010,3, 0x8b86020,3, 0x8b86030,3, 0x8b86040,3, 0x8b86050,3, 0x8b86060,3, 0x8b86070,3, 0x8b86080,3, 0x8b86090,3, 0x8b860a0,3, 0x8b860b0,3, 0x8b860c0,3, 0x8b860d0,3, 0x8b860e0,3, 0x8b860f0,3, 0x8b86100,3, 0x8b86110,3, 0x8b86120,3, 0x8b86130,3, 0x8b86140,3, 0x8b86150,3, 0x8b86160,3, 0x8b86170,3, 0x8b86180,3, 0x8b86190,3, 0x8b861a0,3, 0x8b861b0,3, 0x8b861c0,3, 0x8b861d0,3, 0x8b861e0,3, 0x8b861f0,3, 0x8b86200,3, 0x8b86210,3, 0x8b86220,3, 0x8b86230,3, 0x8b86240,3, 0x8b86250,3, 0x8b86260,3, 0x8b86270,3, 0x8b86280,3, 0x8b86290,3, 0x8b862a0,3, 0x8b862b0,3, 0x8b862c0,3, 0x8b862d0,3, 0x8b862e0,3, 0x8b862f0,3, 0x8b86300,3, 0x8b86310,3, 0x8b86320,3, 0x8b86330,3, 0x8b86340,3, 0x8b86350,3, 0x8b86360,3, 0x8b86370,3, 0x8b86380,3, 0x8b86390,3, 0x8b863a0,3, 0x8b863b0,3, 0x8b863c0,3, 0x8b863d0,3, 0x8b863e0,3, 0x8b863f0,3, 0x8b86400,3, 0x8b86410,3, 0x8b86420,3, 0x8b86430,3, 0x8b86440,3, 0x8b86450,3, 0x8b86460,3, 0x8b86470,3, 0x8b86480,3, 0x8b86490,3, 0x8b864a0,3, 0x8b864b0,3, 0x8b864c0,3, 0x8b864d0,3, 0x8b864e0,3, 0x8b864f0,3, 0x8b86500,3, 0x8b86510,3, 0x8b86520,3, 0x8b86530,3, 0x8b86540,3, 0x8b86550,3, 0x8b86560,3, 0x8b86570,3, 0x8b86580,3, 0x8b86590,3, 0x8b865a0,3, 0x8b865b0,3, 0x8b865c0,3, 0x8b865d0,3, 0x8b865e0,3, 0x8b865f0,3, 0x8b86600,3, 0x8b86610,3, 0x8b86620,3, 0x8b86630,3, 0x8b86640,3, 0x8b86650,3, 0x8b86660,3, 0x8b86670,3, 0x8b86680,3, 0x8b86690,3, 0x8b866a0,3, 0x8b866b0,3, 0x8b866c0,3, 0x8b866d0,3, 0x8b866e0,3, 0x8b866f0,3, 0x8b86700,3, 0x8b86710,3, 0x8b86720,3, 0x8b86730,3, 0x8b86740,3, 0x8b86750,3, 0x8b86760,3, 0x8b86770,3, 0x8b86780,3, 0x8b86790,3, 0x8b867a0,3, 0x8b867b0,3, 0x8b867c0,3, 0x8b867d0,3, 0x8b867e0,3, 0x8b867f0,3, 0x8b86800,3, 0x8b86810,3, 0x8b86820,3, 0x8b86830,3, 0x8b86840,3, 0x8b86850,3, 0x8b86860,3, 0x8b86870,3, 0x8b86880,3, 0x8b86890,3, 0x8b868a0,3, 0x8b868b0,3, 0x8b868c0,3, 0x8b868d0,3, 0x8b868e0,3, 0x8b868f0,3, 0x8b86900,3, 0x8b86910,3, 0x8b86920,3, 0x8b86930,3, 0x8b86940,3, 0x8b86950,3, 0x8b86960,3, 0x8b86970,3, 0x8b86980,3, 0x8b86990,3, 0x8b869a0,3, 0x8b869b0,3, 0x8b869c0,3, 0x8b869d0,3, 0x8b869e0,3, 0x8b869f0,3, 0x8b86a00,3, 0x8b86a10,3, 0x8b86a20,3, 0x8b86a30,3, 0x8b86a40,3, 0x8b86a50,3, 0x8b86a60,3, 0x8b86a70,3, 0x8b86a80,3, 0x8b86a90,3, 0x8b86aa0,3, 0x8b86ab0,3, 0x8b86ac0,3, 0x8b86ad0,3, 0x8b86ae0,3, 0x8b86af0,3, 0x8b86b00,3, 0x8b86b10,3, 0x8b86b20,3, 0x8b86b30,3, 0x8b86b40,3, 0x8b86b50,3, 0x8b86b60,3, 0x8b86b70,3, 0x8b86b80,3, 0x8b86b90,3, 0x8b86ba0,3, 0x8b86bb0,3, 0x8b86bc0,3, 0x8b86bd0,3, 0x8b86be0,3, 0x8b86bf0,3, 0x8b86c00,3, 0x8b86c10,3, 0x8b86c20,3, 0x8b86c30,3, 0x8b86c40,3, 0x8b86c50,3, 0x8b86c60,3, 0x8b86c70,3, 0x8b86c80,3, 0x8b86c90,3, 0x8b86ca0,3, 0x8b86cb0,3, 0x8b86cc0,3, 0x8b86cd0,3, 0x8b86ce0,3, 0x8b86cf0,3, 0x8b86d00,3, 0x8b86d10,3, 0x8b86d20,3, 0x8b86d30,3, 0x8b86d40,3, 0x8b86d50,3, 0x8b86d60,3, 0x8b86d70,3, 0x8b86d80,3, 0x8b86d90,3, 0x8b86da0,3, 0x8b86db0,3, 0x8b86dc0,3, 0x8b86dd0,3, 0x8b86de0,3, 0x8b86df0,3, 0x8b86e00,3, 0x8b86e10,3, 0x8b86e20,3, 0x8b86e30,3, 0x8b86e40,3, 0x8b86e50,3, 0x8b86e60,3, 0x8b86e70,3, 0x8b86e80,3, 0x8b86e90,3, 0x8b86ea0,3, 0x8b86eb0,3, 0x8b86ec0,3, 0x8b86ed0,3, 0x8b86ee0,3, 0x8b86ef0,3, 0x8b86f00,3, 0x8b86f10,3, 0x8b86f20,3, 0x8b86f30,3, 0x8b86f40,3, 0x8b86f50,3, 0x8b86f60,3, 0x8b86f70,3, 0x8b86f80,3, 0x8b86f90,3, 0x8b86fa0,3, 0x8b86fb0,3, 0x8b86fc0,3, 0x8b86fd0,3, 0x8b86fe0,3, 0x8b86ff0,3, 0x8b87000,3, 0x8b87010,3, 0x8b87020,3, 0x8b87030,3, 0x8b87040,3, 0x8b87050,3, 0x8b87060,3, 0x8b87070,3, 0x8b87080,3, 0x8b87090,3, 0x8b870a0,3, 0x8b870b0,3, 0x8b870c0,3, 0x8b870d0,3, 0x8b870e0,3, 0x8b870f0,3, 0x8b87100,3, 0x8b87110,3, 0x8b87120,3, 0x8b87130,3, 0x8b87140,3, 0x8b87150,3, 0x8b87160,3, 0x8b87170,3, 0x8b87180,3, 0x8b87190,3, 0x8b871a0,3, 0x8b871b0,3, 0x8b871c0,3, 0x8b871d0,3, 0x8b871e0,3, 0x8b871f0,3, 0x8b87200,3, 0x8b87210,3, 0x8b87220,3, 0x8b87230,3, 0x8b87240,3, 0x8b87250,3, 0x8b87260,3, 0x8b87270,3, 0x8b87280,3, 0x8b87290,3, 0x8b872a0,3, 0x8b872b0,3, 0x8b872c0,3, 0x8b872d0,3, 0x8b872e0,3, 0x8b872f0,3, 0x8b87300,3, 0x8b87310,3, 0x8b87320,3, 0x8b87330,3, 0x8b87340,3, 0x8b87350,3, 0x8b87360,3, 0x8b87370,3, 0x8b87380,3, 0x8b87390,3, 0x8b873a0,3, 0x8b873b0,3, 0x8b873c0,3, 0x8b873d0,3, 0x8b873e0,3, 0x8b873f0,3, 0x8b87400,3, 0x8b87410,3, 0x8b87420,3, 0x8b87430,3, 0x8b87440,3, 0x8b87450,3, 0x8b87460,3, 0x8b87470,3, 0x8b87480,3, 0x8b87490,3, 0x8b874a0,3, 0x8b874b0,3, 0x8b874c0,3, 0x8b874d0,3, 0x8b874e0,3, 0x8b874f0,3, 0x8b87500,3, 0x8b87510,3, 0x8b87520,3, 0x8b87530,3, 0x8b87540,3, 0x8b87550,3, 0x8b87560,3, 0x8b87570,3, 0x8b87580,3, 0x8b87590,3, 0x8b875a0,3, 0x8b875b0,3, 0x8b875c0,3, 0x8b875d0,3, 0x8b875e0,3, 0x8b875f0,3, 0x8b87600,3, 0x8b87610,3, 0x8b87620,3, 0x8b87630,3, 0x8b87640,3, 0x8b87650,3, 0x8b87660,3, 0x8b87670,3, 0x8b87680,3, 0x8b87690,3, 0x8b876a0,3, 0x8b876b0,3, 0x8b876c0,3, 0x8b876d0,3, 0x8b876e0,3, 0x8b876f0,3, 0x8b87700,3, 0x8b87710,3, 0x8b87720,3, 0x8b87730,3, 0x8b87740,3, 0x8b87750,3, 0x8b87760,3, 0x8b87770,3, 0x8b87780,3, 0x8b87790,3, 0x8b877a0,3, 0x8b877b0,3, 0x8b877c0,3, 0x8b877d0,3, 0x8b877e0,3, 0x8b877f0,3, 0x8b87800,3, 0x8b87810,3, 0x8b87820,3, 0x8b87830,3, 0x8b87840,3, 0x8b87850,3, 0x8b87860,3, 0x8b87870,3, 0x8b87880,3, 0x8b87890,3, 0x8b878a0,3, 0x8b878b0,3, 0x8b878c0,3, 0x8b878d0,3, 0x8b878e0,3, 0x8b878f0,3, 0x8b87900,3, 0x8b87910,3, 0x8b87920,3, 0x8b87930,3, 0x8b87940,3, 0x8b87950,3, 0x8b87960,3, 0x8b87970,3, 0x8b87980,3, 0x8b87990,3, 0x8b879a0,3, 0x8b879b0,3, 0x8b879c0,3, 0x8b879d0,3, 0x8b879e0,3, 0x8b879f0,3, 0x8b87a00,3, 0x8b87a10,3, 0x8b87a20,3, 0x8b87a30,3, 0x8b87a40,3, 0x8b87a50,3, 0x8b87a60,3, 0x8b87a70,3, 0x8b87a80,3, 0x8b87a90,3, 0x8b87aa0,3, 0x8b87ab0,3, 0x8b87ac0,3, 0x8b87ad0,3, 0x8b87ae0,3, 0x8b87af0,3, 0x8b87b00,3, 0x8b87b10,3, 0x8b87b20,3, 0x8b87b30,3, 0x8b87b40,3, 0x8b87b50,3, 0x8b87b60,3, 0x8b87b70,3, 0x8b87b80,3, 0x8b87b90,3, 0x8b87ba0,3, 0x8b87bb0,3, 0x8b87bc0,3, 0x8b87bd0,3, 0x8b87be0,3, 0x8b87bf0,3, 0x8b87c00,3, 0x8b87c10,3, 0x8b87c20,3, 0x8b87c30,3, 0x8b87c40,3, 0x8b87c50,3, 0x8b87c60,3, 0x8b87c70,3, 0x8b87c80,3, 0x8b87c90,3, 0x8b87ca0,3, 0x8b87cb0,3, 0x8b87cc0,3, 0x8b87cd0,3, 0x8b87ce0,3, 0x8b87cf0,3, 0x8b87d00,3, 0x8b87d10,3, 0x8b87d20,3, 0x8b87d30,3, 0x8b87d40,3, 0x8b87d50,3, 0x8b87d60,3, 0x8b87d70,3, 0x8b87d80,3, 0x8b87d90,3, 0x8b87da0,3, 0x8b87db0,3, 0x8b87dc0,3, 0x8b87dd0,3, 0x8b87de0,3, 0x8b87df0,3, 0x8b87e00,3, 0x8b87e10,3, 0x8b87e20,3, 0x8b87e30,3, 0x8b87e40,3, 0x8b87e50,3, 0x8b87e60,3, 0x8b87e70,3, 0x8b87e80,3, 0x8b87e90,3, 0x8b87ea0,3, 0x8b87eb0,3, 0x8b87ec0,3, 0x8b87ed0,3, 0x8b87ee0,3, 0x8b87ef0,3, 0x8b87f00,3, 0x8b87f10,3, 0x8b87f20,3, 0x8b87f30,3, 0x8b87f40,3, 0x8b87f50,3, 0x8b87f60,3, 0x8b87f70,3, 0x8b87f80,3, 0x8b87f90,3, 0x8b87fa0,3, 0x8b87fb0,3, 0x8b87fc0,3, 0x8b87fd0,3, 0x8b87fe0,3, 0x8b87ff0,3, 0x8b88000,3, 0x8b88010,3, 0x8b88020,3, 0x8b88030,3, 0x8b88040,3, 0x8b88050,3, 0x8b88060,3, 0x8b88070,3, 0x8b88080,3, 0x8b88090,3, 0x8b880a0,3, 0x8b880b0,3, 0x8b880c0,3, 0x8b880d0,3, 0x8b880e0,3, 0x8b880f0,3, 0x8b88100,3, 0x8b88110,3, 0x8b88120,3, 0x8b88130,3, 0x8b88140,3, 0x8b88150,3, 0x8b88160,3, 0x8b88170,3, 0x8b88180,3, 0x8b88190,3, 0x8b881a0,3, 0x8b881b0,3, 0x8b881c0,3, 0x8b881d0,3, 0x8b881e0,3, 0x8b881f0,3, 0x8b88200,3, 0x8b88210,3, 0x8b88220,3, 0x8b88230,3, 0x8b88240,3, 0x8b88250,3, 0x8b88260,3, 0x8b88270,3, 0x8b88280,3, 0x8b88290,3, 0x8b882a0,3, 0x8b882b0,3, 0x8b882c0,3, 0x8b882d0,3, 0x8b882e0,3, 0x8b882f0,3, 0x8b88300,3, 0x8b88310,3, 0x8b88320,3, 0x8b88330,3, 0x8b88340,3, 0x8b88350,3, 0x8b88360,3, 0x8b88370,3, 0x8b88380,3, 0x8b88390,3, 0x8b883a0,3, 0x8b883b0,3, 0x8b883c0,3, 0x8b883d0,3, 0x8b883e0,3, 0x8b883f0,3, 0x8b88400,3, 0x8b88410,3, 0x8b88420,3, 0x8b88430,3, 0x8b88440,3, 0x8b88450,3, 0x8b88460,3, 0x8b88470,3, 0x8b88480,3, 0x8b88490,3, 0x8b884a0,3, 0x8b884b0,3, 0x8b884c0,3, 0x8b884d0,3, 0x8b884e0,3, 0x8b884f0,3, 0x8b88500,3, 0x8b88510,3, 0x8b88520,3, 0x8b88530,3, 0x8b88540,3, 0x8b88550,3, 0x8b88560,3, 0x8b88570,3, 0x8b88580,3, 0x8b88590,3, 0x8b885a0,3, 0x8b885b0,3, 0x8b885c0,3, 0x8b885d0,3, 0x8b885e0,3, 0x8b885f0,3, 0x8b88600,3, 0x8b88610,3, 0x8b88620,3, 0x8b88630,3, 0x8b88640,3, 0x8b88650,3, 0x8b88660,3, 0x8b88670,3, 0x8b88680,3, 0x8b88690,3, 0x8b886a0,3, 0x8b886b0,3, 0x8b886c0,3, 0x8b886d0,3, 0x8b886e0,3, 0x8b886f0,3, 0x8b88700,3, 0x8b88710,3, 0x8b88720,3, 0x8b88730,3, 0x8b88740,3, 0x8b88750,3, 0x8b88760,3, 0x8b88770,3, 0x8b88780,3, 0x8b88790,3, 0x8b887a0,3, 0x8b887b0,3, 0x8b887c0,3, 0x8b887d0,3, 0x8b887e0,3, 0x8b887f0,3, 0x8b88800,3, 0x8b88810,3, 0x8b88820,3, 0x8b88830,3, 0x8b88840,3, 0x8b88850,3, 0x8b88860,3, 0x8b88870,3, 0x8b88880,3, 0x8b88890,3, 0x8b888a0,3, 0x8b888b0,3, 0x8b888c0,3, 0x8b888d0,3, 0x8b888e0,3, 0x8b888f0,3, 0x8b88900,3, 0x8b88910,3, 0x8b88920,3, 0x8b88930,3, 0x8b88940,3, 0x8b88950,3, 0x8b88960,3, 0x8b88970,3, 0x8b88980,3, 0x8b88990,3, 0x8b889a0,3, 0x8b889b0,3, 0x8b889c0,3, 0x8b889d0,3, 0x8b889e0,3, 0x8b889f0,3, 0x8b88a00,3, 0x8b88a10,3, 0x8b88a20,3, 0x8b88a30,3, 0x8b88a40,3, 0x8b88a50,3, 0x8b88a60,3, 0x8b88a70,3, 0x8b88a80,3, 0x8b88a90,3, 0x8b88aa0,3, 0x8b88ab0,3, 0x8b88ac0,3, 0x8b88ad0,3, 0x8b88ae0,3, 0x8b88af0,3, 0x8b88b00,3, 0x8b88b10,3, 0x8b88b20,3, 0x8b88b30,3, 0x8b88b40,3, 0x8b88b50,3, 0x8b88b60,3, 0x8b88b70,3, 0x8b88b80,3, 0x8b88b90,3, 0x8b88ba0,3, 0x8b88bb0,3, 0x8b88bc0,3, 0x8b88bd0,3, 0x8b88be0,3, 0x8b88bf0,3, 0x8b88c00,3, 0x8b88c10,3, 0x8b88c20,3, 0x8b88c30,3, 0x8b88c40,3, 0x8b88c50,3, 0x8b88c60,3, 0x8b88c70,3, 0x8b88c80,3, 0x8b88c90,3, 0x8b88ca0,3, 0x8b88cb0,3, 0x8b88cc0,3, 0x8b88cd0,3, 0x8b88ce0,3, 0x8b88cf0,3, 0x8b88d00,3, 0x8b88d10,3, 0x8b88d20,3, 0x8b88d30,3, 0x8b88d40,3, 0x8b88d50,3, 0x8b88d60,3, 0x8b88d70,3, 0x8b88d80,3, 0x8b88d90,3, 0x8b88da0,3, 0x8b88db0,3, 0x8b88dc0,3, 0x8b88dd0,3, 0x8b88de0,3, 0x8b88df0,3, 0x8b88e00,3, 0x8b88e10,3, 0x8b88e20,3, 0x8b88e30,3, 0x8b88e40,3, 0x8b88e50,3, 0x8b88e60,3, 0x8b88e70,3, 0x8b88e80,3, 0x8b88e90,3, 0x8b88ea0,3, 0x8b88eb0,3, 0x8b88ec0,3, 0x8b88ed0,3, 0x8b88ee0,3, 0x8b88ef0,3, 0x8b88f00,3, 0x8b88f10,3, 0x8b88f20,3, 0x8b88f30,3, 0x8b88f40,3, 0x8b88f50,3, 0x8b88f60,3, 0x8b88f70,3, 0x8b88f80,3, 0x8b88f90,3, 0x8b88fa0,3, 0x8b88fb0,3, 0x8b88fc0,3, 0x8b88fd0,3, 0x8b88fe0,3, 0x8b88ff0,3, 0x8b89000,3, 0x8b89010,3, 0x8b89020,3, 0x8b89030,3, 0x8b89040,3, 0x8b89050,3, 0x8b89060,3, 0x8b89070,3, 0x8b89080,3, 0x8b89090,3, 0x8b890a0,3, 0x8b890b0,3, 0x8b890c0,3, 0x8b890d0,3, 0x8b890e0,3, 0x8b890f0,3, 0x8b89100,3, 0x8b89110,3, 0x8b89120,3, 0x8b89130,3, 0x8b89140,3, 0x8b89150,3, 0x8b89160,3, 0x8b89170,3, 0x8b89180,3, 0x8b89190,3, 0x8b891a0,3, 0x8b891b0,3, 0x8b891c0,3, 0x8b891d0,3, 0x8b891e0,3, 0x8b891f0,3, 0x8b89200,3, 0x8b89210,3, 0x8b89220,3, 0x8b89230,3, 0x8b89240,3, 0x8b89250,3, 0x8b89260,3, 0x8b89270,3, 0x8b89280,3, 0x8b89290,3, 0x8b892a0,3, 0x8b892b0,3, 0x8b892c0,3, 0x8b892d0,3, 0x8b892e0,3, 0x8b892f0,3, 0x8b89300,3, 0x8b89310,3, 0x8b89320,3, 0x8b89330,3, 0x8b89340,3, 0x8b89350,3, 0x8b89360,3, 0x8b89370,3, 0x8b89380,3, 0x8b89390,3, 0x8b893a0,3, 0x8b893b0,3, 0x8b893c0,3, 0x8b893d0,3, 0x8b893e0,3, 0x8b893f0,3, 0x8b89400,3, 0x8b89410,3, 0x8b89420,3, 0x8b89430,3, 0x8b89440,3, 0x8b89450,3, 0x8b89460,3, 0x8b89470,3, 0x8b89480,3, 0x8b89490,3, 0x8b894a0,3, 0x8b894b0,3, 0x8b894c0,3, 0x8b894d0,3, 0x8b894e0,3, 0x8b894f0,3, 0x8b89500,3, 0x8b89510,3, 0x8b89520,3, 0x8b89530,3, 0x8b89540,3, 0x8b89550,3, 0x8b89560,3, 0x8b89570,3, 0x8b89580,3, 0x8b89590,3, 0x8b895a0,3, 0x8b895b0,3, 0x8b895c0,3, 0x8b895d0,3, 0x8b895e0,3, 0x8b895f0,3, 0x8b89600,3, 0x8b89610,3, 0x8b89620,3, 0x8b89630,3, 0x8b89640,3, 0x8b89650,3, 0x8b89660,3, 0x8b89670,3, 0x8b89680,3, 0x8b89690,3, 0x8b896a0,3, 0x8b896b0,3, 0x8b896c0,3, 0x8b896d0,3, 0x8b896e0,3, 0x8b896f0,3, 0x8b89700,3, 0x8b89710,3, 0x8b89720,3, 0x8b89730,3, 0x8b89740,3, 0x8b89750,3, 0x8b89760,3, 0x8b89770,3, 0x8b89780,3, 0x8b89790,3, 0x8b897a0,3, 0x8b897b0,3, 0x8b897c0,3, 0x8b897d0,3, 0x8b897e0,3, 0x8b897f0,3, 0x8b89800,3, 0x8b89810,3, 0x8b89820,3, 0x8b89830,3, 0x8b89840,3, 0x8b89850,3, 0x8b89860,3, 0x8b89870,3, 0x8b89880,3, 0x8b89890,3, 0x8b898a0,3, 0x8b898b0,3, 0x8b898c0,3, 0x8b898d0,3, 0x8b898e0,3, 0x8b898f0,3, 0x8b89900,3, 0x8b89910,3, 0x8b89920,3, 0x8b89930,3, 0x8b89940,3, 0x8b89950,3, 0x8b89960,3, 0x8b89970,3, 0x8b89980,3, 0x8b89990,3, 0x8b899a0,3, 0x8b899b0,3, 0x8b899c0,3, 0x8b899d0,3, 0x8b899e0,3, 0x8b899f0,3, 0x8b89a00,3, 0x8b89a10,3, 0x8b89a20,3, 0x8b89a30,3, 0x8b89a40,3, 0x8b89a50,3, 0x8b89a60,3, 0x8b89a70,3, 0x8b89a80,3, 0x8b89a90,3, 0x8b89aa0,3, 0x8b89ab0,3, 0x8b89ac0,3, 0x8b89ad0,3, 0x8b89ae0,3, 0x8b89af0,3, 0x8b89b00,3, 0x8b89b10,3, 0x8b89b20,3, 0x8b89b30,3, 0x8b89b40,3, 0x8b89b50,3, 0x8b89b60,3, 0x8b89b70,3, 0x8b89b80,3, 0x8b89b90,3, 0x8b89ba0,3, 0x8b89bb0,3, 0x8b89bc0,3, 0x8b89bd0,3, 0x8b89be0,3, 0x8b89bf0,3, 0x8b89c00,3, 0x8b89c10,3, 0x8b89c20,3, 0x8b89c30,3, 0x8b89c40,3, 0x8b89c50,3, 0x8b89c60,3, 0x8b89c70,3, 0x8b89c80,3, 0x8b89c90,3, 0x8b89ca0,3, 0x8b89cb0,3, 0x8b89cc0,3, 0x8b89cd0,3, 0x8b89ce0,3, 0x8b89cf0,3, 0x8b89d00,3, 0x8b89d10,3, 0x8b89d20,3, 0x8b89d30,3, 0x8b89d40,3, 0x8b89d50,3, 0x8b89d60,3, 0x8b89d70,3, 0x8b89d80,3, 0x8b89d90,3, 0x8b89da0,3, 0x8b89db0,3, 0x8b89dc0,3, 0x8b89dd0,3, 0x8b89de0,3, 0x8b89df0,3, 0x8b89e00,3, 0x8b89e10,3, 0x8b89e20,3, 0x8b89e30,3, 0x8b89e40,3, 0x8b89e50,3, 0x8b89e60,3, 0x8b89e70,3, 0x8b89e80,3, 0x8b89e90,3, 0x8b89ea0,3, 0x8b89eb0,3, 0x8b89ec0,3, 0x8b89ed0,3, 0x8b89ee0,3, 0x8b89ef0,3, 0x8b89f00,3, 0x8b89f10,3, 0x8b89f20,3, 0x8b89f30,3, 0x8b89f40,3, 0x8b89f50,3, 0x8b89f60,3, 0x8b89f70,3, 0x8b89f80,3, 0x8b89f90,3, 0x8b89fa0,3, 0x8b89fb0,3, 0x8b89fc0,3, 0x8b89fd0,3, 0x8b89fe0,3, 0x8b89ff0,3, 0x8b8a000,3, 0x8b8a010,3, 0x8b8a020,3, 0x8b8a030,3, 0x8b8a040,3, 0x8b8a050,3, 0x8b8a060,3, 0x8b8a070,3, 0x8b8a080,3, 0x8b8a090,3, 0x8b8a0a0,3, 0x8b8a0b0,3, 0x8b8a0c0,3, 0x8b8a0d0,3, 0x8b8a0e0,3, 0x8b8a0f0,3, 0x8b8a100,3, 0x8b8a110,3, 0x8b8a120,3, 0x8b8a130,3, 0x8b8a140,3, 0x8b8a150,3, 0x8b8a160,3, 0x8b8a170,3, 0x8b8a180,3, 0x8b8a190,3, 0x8b8a1a0,3, 0x8b8a1b0,3, 0x8b8a1c0,3, 0x8b8a1d0,3, 0x8b8a1e0,3, 0x8b8a1f0,3, 0x8b8a200,3, 0x8b8a210,3, 0x8b8a220,3, 0x8b8a230,3, 0x8b8a240,3, 0x8b8a250,3, 0x8b8a260,3, 0x8b8a270,3, 0x8b8a280,3, 0x8b8a290,3, 0x8b8a2a0,3, 0x8b8a2b0,3, 0x8b8a2c0,3, 0x8b8a2d0,3, 0x8b8a2e0,3, 0x8b8a2f0,3, 0x8b8a300,3, 0x8b8a310,3, 0x8b8a320,3, 0x8b8a330,3, 0x8b8a340,3, 0x8b8a350,3, 0x8b8a360,3, 0x8b8a370,3, 0x8b8a380,3, 0x8b8a390,3, 0x8b8a3a0,3, 0x8b8a3b0,3, 0x8b8a3c0,3, 0x8b8a3d0,3, 0x8b8a3e0,3, 0x8b8a3f0,3, 0x8b8a400,3, 0x8b8a410,3, 0x8b8a420,3, 0x8b8a430,3, 0x8b8a440,3, 0x8b8a450,3, 0x8b8a460,3, 0x8b8a470,3, 0x8b8a480,3, 0x8b8a490,3, 0x8b8a4a0,3, 0x8b8a4b0,3, 0x8b8a4c0,3, 0x8b8a4d0,3, 0x8b8a4e0,3, 0x8b8a4f0,3, 0x8b8a500,3, 0x8b8a510,3, 0x8b8a520,3, 0x8b8a530,3, 0x8b8a540,3, 0x8b8a550,3, 0x8b8a560,3, 0x8b8a570,3, 0x8b8a580,3, 0x8b8a590,3, 0x8b8a5a0,3, 0x8b8a5b0,3, 0x8b8a5c0,3, 0x8b8a5d0,3, 0x8b8a5e0,3, 0x8b8a5f0,3, 0x8b8a600,3, 0x8b8a610,3, 0x8b8a620,3, 0x8b8a630,3, 0x8b8a640,3, 0x8b8a650,3, 0x8b8a660,3, 0x8b8a670,3, 0x8b8a680,3, 0x8b8a690,3, 0x8b8a6a0,3, 0x8b8a6b0,3, 0x8b8a6c0,3, 0x8b8a6d0,3, 0x8b8a6e0,3, 0x8b8a6f0,3, 0x8b8a700,3, 0x8b8a710,3, 0x8b8a720,3, 0x8b8a730,3, 0x8b8a740,3, 0x8b8a750,3, 0x8b8a760,3, 0x8b8a770,3, 0x8b8a780,3, 0x8b8a790,3, 0x8b8a7a0,3, 0x8b8a7b0,3, 0x8b8a7c0,3, 0x8b8a7d0,3, 0x8b8a7e0,3, 0x8b8a7f0,3, 0x8b8a800,3, 0x8b8a810,3, 0x8b8a820,3, 0x8b8a830,3, 0x8b8a840,3, 0x8b8a850,3, 0x8b8a860,3, 0x8b8a870,3, 0x8b8a880,3, 0x8b8a890,3, 0x8b8a8a0,3, 0x8b8a8b0,3, 0x8b8a8c0,3, 0x8b8a8d0,3, 0x8b8a8e0,3, 0x8b8a8f0,3, 0x8b8a900,3, 0x8b8a910,3, 0x8b8a920,3, 0x8b8a930,3, 0x8b8a940,3, 0x8b8a950,3, 0x8b8a960,3, 0x8b8a970,3, 0x8b8a980,3, 0x8b8a990,3, 0x8b8a9a0,3, 0x8b8a9b0,3, 0x8b8a9c0,3, 0x8b8a9d0,3, 0x8b8a9e0,3, 0x8b8a9f0,3, 0x8b8aa00,3, 0x8b8aa10,3, 0x8b8aa20,3, 0x8b8aa30,3, 0x8b8aa40,3, 0x8b8aa50,3, 0x8b8aa60,3, 0x8b8aa70,3, 0x8b8aa80,3, 0x8b8aa90,3, 0x8b8aaa0,3, 0x8b8aab0,3, 0x8b8aac0,3, 0x8b8aad0,3, 0x8b8aae0,3, 0x8b8aaf0,3, 0x8b8ab00,3, 0x8b8ab10,3, 0x8b8ab20,3, 0x8b8ab30,3, 0x8b8ab40,3, 0x8b8ab50,3, 0x8b8ab60,3, 0x8b8ab70,3, 0x8b8ab80,3, 0x8b8ab90,3, 0x8b8aba0,3, 0x8b8abb0,3, 0x8b8abc0,3, 0x8b8abd0,3, 0x8b8abe0,3, 0x8b8abf0,3, 0x8b8ac00,3, 0x8b8ac10,3, 0x8b8ac20,3, 0x8b8ac30,3, 0x8b8ac40,3, 0x8b8ac50,3, 0x8b8ac60,3, 0x8b8ac70,3, 0x8b8ac80,3, 0x8b8ac90,3, 0x8b8aca0,3, 0x8b8acb0,3, 0x8b8acc0,3, 0x8b8acd0,3, 0x8b8ace0,3, 0x8b8acf0,3, 0x8b8ad00,3, 0x8b8ad10,3, 0x8b8ad20,3, 0x8b8ad30,3, 0x8b8ad40,3, 0x8b8ad50,3, 0x8b8ad60,3, 0x8b8ad70,3, 0x8b8ad80,3, 0x8b8ad90,3, 0x8b8ada0,3, 0x8b8adb0,3, 0x8b8adc0,3, 0x8b8add0,3, 0x8b8ade0,3, 0x8b8adf0,3, 0x8b8ae00,3, 0x8b8ae10,3, 0x8b8ae20,3, 0x8b8ae30,3, 0x8b8ae40,3, 0x8b8ae50,3, 0x8b8ae60,3, 0x8b8ae70,3, 0x8b8ae80,3, 0x8b8ae90,3, 0x8b8aea0,3, 0x8b8aeb0,3, 0x8b8aec0,3, 0x8b8aed0,3, 0x8b8aee0,3, 0x8b8aef0,3, 0x8b8af00,3, 0x8b8af10,3, 0x8b8af20,3, 0x8b8af30,3, 0x8b8af40,3, 0x8b8af50,3, 0x8b8af60,3, 0x8b8af70,3, 0x8b8af80,3, 0x8b8af90,3, 0x8b8afa0,3, 0x8b8afb0,3, 0x8b8afc0,3, 0x8b8afd0,3, 0x8b8afe0,3, 0x8b8aff0,3, 0x8b8b000,3, 0x8b8b010,3, 0x8b8b020,3, 0x8b8b030,3, 0x8b8b040,3, 0x8b8b050,3, 0x8b8b060,3, 0x8b8b070,3, 0x8b8b080,3, 0x8b8b090,3, 0x8b8b0a0,3, 0x8b8b0b0,3, 0x8b8b0c0,3, 0x8b8b0d0,3, 0x8b8b0e0,3, 0x8b8b0f0,3, 0x8b8b100,3, 0x8b8b110,3, 0x8b8b120,3, 0x8b8b130,3, 0x8b8b140,3, 0x8b8b150,3, 0x8b8b160,3, 0x8b8b170,3, 0x8b8b180,3, 0x8b8b190,3, 0x8b8b1a0,3, 0x8b8b1b0,3, 0x8b8b1c0,3, 0x8b8b1d0,3, 0x8b8b1e0,3, 0x8b8b1f0,3, 0x8b8b200,3, 0x8b8b210,3, 0x8b8b220,3, 0x8b8b230,3, 0x8b8b240,3, 0x8b8b250,3, 0x8b8b260,3, 0x8b8b270,3, 0x8b8b280,3, 0x8b8b290,3, 0x8b8b2a0,3, 0x8b8b2b0,3, 0x8b8b2c0,3, 0x8b8b2d0,3, 0x8b8b2e0,3, 0x8b8b2f0,3, 0x8b8b300,3, 0x8b8b310,3, 0x8b8b320,3, 0x8b8b330,3, 0x8b8b340,3, 0x8b8b350,3, 0x8b8b360,3, 0x8b8b370,3, 0x8b8b380,3, 0x8b8b390,3, 0x8b8b3a0,3, 0x8b8b3b0,3, 0x8b8b3c0,3, 0x8b8b3d0,3, 0x8b8b3e0,3, 0x8b8b3f0,3, 0x8b8b400,3, 0x8b8b410,3, 0x8b8b420,3, 0x8b8b430,3, 0x8b8b440,3, 0x8b8b450,3, 0x8b8b460,3, 0x8b8b470,3, 0x8b8b480,3, 0x8b8b490,3, 0x8b8b4a0,3, 0x8b8b4b0,3, 0x8b8b4c0,3, 0x8b8b4d0,3, 0x8b8b4e0,3, 0x8b8b4f0,3, 0x8b8b500,3, 0x8b8b510,3, 0x8b8b520,3, 0x8b8b530,3, 0x8b8b540,3, 0x8b8b550,3, 0x8b8b560,3, 0x8b8b570,3, 0x8b8b580,3, 0x8b8b590,3, 0x8b8b5a0,3, 0x8b8b5b0,3, 0x8b8b5c0,3, 0x8b8b5d0,3, 0x8b8b5e0,3, 0x8b8b5f0,3, 0x8b8b600,3, 0x8b8b610,3, 0x8b8b620,3, 0x8b8b630,3, 0x8b8b640,3, 0x8b8b650,3, 0x8b8b660,3, 0x8b8b670,3, 0x8b8b680,3, 0x8b8b690,3, 0x8b8b6a0,3, 0x8b8b6b0,3, 0x8b8b6c0,3, 0x8b8b6d0,3, 0x8b8b6e0,3, 0x8b8b6f0,3, 0x8b8b700,3, 0x8b8b710,3, 0x8b8b720,3, 0x8b8b730,3, 0x8b8b740,3, 0x8b8b750,3, 0x8b8b760,3, 0x8b8b770,3, 0x8b8b780,3, 0x8b8b790,3, 0x8b8b7a0,3, 0x8b8b7b0,3, 0x8b8b7c0,3, 0x8b8b7d0,3, 0x8b8b7e0,3, 0x8b8b7f0,3, 0x8b8b800,3, 0x8b8b810,3, 0x8b8b820,3, 0x8b8b830,3, 0x8b8b840,3, 0x8b8b850,3, 0x8b8b860,3, 0x8b8b870,3, 0x8b8b880,3, 0x8b8b890,3, 0x8b8b8a0,3, 0x8b8b8b0,3, 0x8b8b8c0,3, 0x8b8b8d0,3, 0x8b8b8e0,3, 0x8b8b8f0,3, 0x8b8b900,3, 0x8b8b910,3, 0x8b8b920,3, 0x8b8b930,3, 0x8b8b940,3, 0x8b8b950,3, 0x8b8b960,3, 0x8b8b970,3, 0x8b8b980,3, 0x8b8b990,3, 0x8b8b9a0,3, 0x8b8b9b0,3, 0x8b8b9c0,3, 0x8b8b9d0,3, 0x8b8b9e0,3, 0x8b8b9f0,3, 0x8b8ba00,3, 0x8b8ba10,3, 0x8b8ba20,3, 0x8b8ba30,3, 0x8b8ba40,3, 0x8b8ba50,3, 0x8b8ba60,3, 0x8b8ba70,3, 0x8b8ba80,3, 0x8b8ba90,3, 0x8b8baa0,3, 0x8b8bab0,3, 0x8b8bac0,3, 0x8b8bad0,3, 0x8b8bae0,3, 0x8b8baf0,3, 0x8b8bb00,3, 0x8b8bb10,3, 0x8b8bb20,3, 0x8b8bb30,3, 0x8b8bb40,3, 0x8b8bb50,3, 0x8b8bb60,3, 0x8b8bb70,3, 0x8b8bb80,3, 0x8b8bb90,3, 0x8b8bba0,3, 0x8b8bbb0,3, 0x8b8bbc0,3, 0x8b8bbd0,3, 0x8b8bbe0,3, 0x8b8bbf0,3, 0x8b8bc00,3, 0x8b8bc10,3, 0x8b8bc20,3, 0x8b8bc30,3, 0x8b8bc40,3, 0x8b8bc50,3, 0x8b8bc60,3, 0x8b8bc70,3, 0x8b8bc80,3, 0x8b8bc90,3, 0x8b8bca0,3, 0x8b8bcb0,3, 0x8b8bcc0,3, 0x8b8bcd0,3, 0x8b8bce0,3, 0x8b8bcf0,3, 0x8b8bd00,3, 0x8b8bd10,3, 0x8b8bd20,3, 0x8b8bd30,3, 0x8b8bd40,3, 0x8b8bd50,3, 0x8b8bd60,3, 0x8b8bd70,3, 0x8b8bd80,3, 0x8b8bd90,3, 0x8b8bda0,3, 0x8b8bdb0,3, 0x8b8bdc0,3, 0x8b8bdd0,3, 0x8b8bde0,3, 0x8b8bdf0,3, 0x8b8be00,3, 0x8b8be10,3, 0x8b8be20,3, 0x8b8be30,3, 0x8b8be40,3, 0x8b8be50,3, 0x8b8be60,3, 0x8b8be70,3, 0x8b8be80,3, 0x8b8be90,3, 0x8b8bea0,3, 0x8b8beb0,3, 0x8b8bec0,3, 0x8b8bed0,3, 0x8b8bee0,3, 0x8b8bef0,3, 0x8b8bf00,3, 0x8b8bf10,3, 0x8b8bf20,3, 0x8b8bf30,3, 0x8b8bf40,3, 0x8b8bf50,3, 0x8b8bf60,3, 0x8b8bf70,3, 0x8b8bf80,3, 0x8b8bf90,3, 0x8b8bfa0,3, 0x8b8bfb0,3, 0x8b8bfc0,3, 0x8b8bfd0,3, 0x8b8bfe0,3, 0x8b8bff0,3, 0x8b8c000,3, 0x8b8c010,3, 0x8b8c020,3, 0x8b8c030,3, 0x8b8c040,3, 0x8b8c050,3, 0x8b8c060,3, 0x8b8c070,3, 0x8b8c080,3, 0x8b8c090,3, 0x8b8c0a0,3, 0x8b8c0b0,3, 0x8b8c0c0,3, 0x8b8c0d0,3, 0x8b8c0e0,3, 0x8b8c0f0,3, 0x8b8c100,3, 0x8b8c110,3, 0x8b8c120,3, 0x8b8c130,3, 0x8b8c140,3, 0x8b8c150,3, 0x8b8c160,3, 0x8b8c170,3, 0x8b8c180,3, 0x8b8c190,3, 0x8b8c1a0,3, 0x8b8c1b0,3, 0x8b8c1c0,3, 0x8b8c1d0,3, 0x8b8c1e0,3, 0x8b8c1f0,3, 0x8b8c200,3, 0x8b8c210,3, 0x8b8c220,3, 0x8b8c230,3, 0x8b8c240,3, 0x8b8c250,3, 0x8b8c260,3, 0x8b8c270,3, 0x8b8c280,3, 0x8b8c290,3, 0x8b8c2a0,3, 0x8b8c2b0,3, 0x8b8c2c0,3, 0x8b8c2d0,3, 0x8b8c2e0,3, 0x8b8c2f0,3, 0x8b8c300,3, 0x8b8c310,3, 0x8b8c320,3, 0x8b8c330,3, 0x8b8c340,3, 0x8b8c350,3, 0x8b8c360,3, 0x8b8c370,3, 0x8b8c380,3, 0x8b8c390,3, 0x8b8c3a0,3, 0x8b8c3b0,3, 0x8b8c3c0,3, 0x8b8c3d0,3, 0x8b8c3e0,3, 0x8b8c3f0,3, 0x8b8c400,3, 0x8b8c410,3, 0x8b8c420,3, 0x8b8c430,3, 0x8b8c440,3, 0x8b8c450,3, 0x8b8c460,3, 0x8b8c470,3, 0x8b8c480,3, 0x8b8c490,3, 0x8b8c4a0,3, 0x8b8c4b0,3, 0x8b8c4c0,3, 0x8b8c4d0,3, 0x8b8c4e0,3, 0x8b8c4f0,3, 0x8b8c500,3, 0x8b8c510,3, 0x8b8c520,3, 0x8b8c530,3, 0x8b8c540,3, 0x8b8c550,3, 0x8b8c560,3, 0x8b8c570,3, 0x8b8c580,3, 0x8b8c590,3, 0x8b8c5a0,3, 0x8b8c5b0,3, 0x8b8c5c0,3, 0x8b8c5d0,3, 0x8b8c5e0,3, 0x8b8c5f0,3, 0x8b8c600,3, 0x8b8c610,3, 0x8b8c620,3, 0x8b8c630,3, 0x8b8c640,3, 0x8b8c650,3, 0x8b8c660,3, 0x8b8c670,3, 0x8b8c680,3, 0x8b8c690,3, 0x8b8c6a0,3, 0x8b8c6b0,3, 0x8b8c6c0,3, 0x8b8c6d0,3, 0x8b8c6e0,3, 0x8b8c6f0,3, 0x8b8c700,3, 0x8b8c710,3, 0x8b8c720,3, 0x8b8c730,3, 0x8b8c740,3, 0x8b8c750,3, 0x8b8c760,3, 0x8b8c770,3, 0x8b8c780,3, 0x8b8c790,3, 0x8b8c7a0,3, 0x8b8c7b0,3, 0x8b8c7c0,3, 0x8b8c7d0,3, 0x8b8c7e0,3, 0x8b8c7f0,3, 0x8b8c800,3, 0x8b8c810,3, 0x8b8c820,3, 0x8b8c830,3, 0x8b8c840,3, 0x8b8c850,3, 0x8b8c860,3, 0x8b8c870,3, 0x8b8c880,3, 0x8b8c890,3, 0x8b8c8a0,3, 0x8b8c8b0,3, 0x8b8c8c0,3, 0x8b8c8d0,3, 0x8b8c8e0,3, 0x8b8c8f0,3, 0x8b8c900,3, 0x8b8c910,3, 0x8b8c920,3, 0x8b8c930,3, 0x8b8c940,3, 0x8b8c950,3, 0x8b8c960,3, 0x8b8c970,3, 0x8b8c980,3, 0x8b8c990,3, 0x8b8c9a0,3, 0x8b8c9b0,3, 0x8b8c9c0,3, 0x8b8c9d0,3, 0x8b8c9e0,3, 0x8b8c9f0,3, 0x8b8ca00,3, 0x8b8ca10,3, 0x8b8ca20,3, 0x8b8ca30,3, 0x8b8ca40,3, 0x8b8ca50,3, 0x8b8ca60,3, 0x8b8ca70,3, 0x8b8ca80,3, 0x8b8ca90,3, 0x8b8caa0,3, 0x8b8cab0,3, 0x8b8cac0,3, 0x8b8cad0,3, 0x8b8cae0,3, 0x8b8caf0,3, 0x8b8cb00,3, 0x8b8cb10,3, 0x8b8cb20,3, 0x8b8cb30,3, 0x8b8cb40,3, 0x8b8cb50,3, 0x8b8cb60,3, 0x8b8cb70,3, 0x8b8cb80,3, 0x8b8cb90,3, 0x8b8cba0,3, 0x8b8cbb0,3, 0x8b8cbc0,3, 0x8b8cbd0,3, 0x8b8cbe0,3, 0x8b8cbf0,3, 0x8b8cc00,3, 0x8b8cc10,3, 0x8b8cc20,3, 0x8b8cc30,3, 0x8b8cc40,3, 0x8b8cc50,3, 0x8b8cc60,3, 0x8b8cc70,3, 0x8b8cc80,3, 0x8b8cc90,3, 0x8b8cca0,3, 0x8b8ccb0,3, 0x8b8ccc0,3, 0x8b8ccd0,3, 0x8b8cce0,3, 0x8b8ccf0,3, 0x8b8cd00,3, 0x8b8cd10,3, 0x8b8cd20,3, 0x8b8cd30,3, 0x8b8cd40,3, 0x8b8cd50,3, 0x8b8cd60,3, 0x8b8cd70,3, 0x8b8cd80,3, 0x8b8cd90,3, 0x8b8cda0,3, 0x8b8cdb0,3, 0x8b8cdc0,3, 0x8b8cdd0,3, 0x8b8cde0,3, 0x8b8cdf0,3, 0x8b8ce00,3, 0x8b8ce10,3, 0x8b8ce20,3, 0x8b8ce30,3, 0x8b8ce40,3, 0x8b8ce50,3, 0x8b8ce60,3, 0x8b8ce70,3, 0x8b8ce80,3, 0x8b8ce90,3, 0x8b8cea0,3, 0x8b8ceb0,3, 0x8b8cec0,3, 0x8b8ced0,3, 0x8b8cee0,3, 0x8b8cef0,3, 0x8b8cf00,3, 0x8b8cf10,3, 0x8b8cf20,3, 0x8b8cf30,3, 0x8b8cf40,3, 0x8b8cf50,3, 0x8b8cf60,3, 0x8b8cf70,3, 0x8b8cf80,3, 0x8b8cf90,3, 0x8b8cfa0,3, 0x8b8cfb0,3, 0x8b8cfc0,3, 0x8b8cfd0,3, 0x8b8cfe0,3, 0x8b8cff0,3, 0x8b8d000,3, 0x8b8d010,3, 0x8b8d020,3, 0x8b8d030,3, 0x8b8d040,3, 0x8b8d050,3, 0x8b8d060,3, 0x8b8d070,3, 0x8b8d080,3, 0x8b8d090,3, 0x8b8d0a0,3, 0x8b8d0b0,3, 0x8b8d0c0,3, 0x8b8d0d0,3, 0x8b8d0e0,3, 0x8b8d0f0,3, 0x8b8d100,3, 0x8b8d110,3, 0x8b8d120,3, 0x8b8d130,3, 0x8b8d140,3, 0x8b8d150,3, 0x8b8d160,3, 0x8b8d170,3, 0x8b8d180,3, 0x8b8d190,3, 0x8b8d1a0,3, 0x8b8d1b0,3, 0x8b8d1c0,3, 0x8b8d1d0,3, 0x8b8d1e0,3, 0x8b8d1f0,3, 0x8b8d200,3, 0x8b8d210,3, 0x8b8d220,3, 0x8b8d230,3, 0x8b8d240,3, 0x8b8d250,3, 0x8b8d260,3, 0x8b8d270,3, 0x8b8d280,3, 0x8b8d290,3, 0x8b8d2a0,3, 0x8b8d2b0,3, 0x8b8d2c0,3, 0x8b8d2d0,3, 0x8b8d2e0,3, 0x8b8d2f0,3, 0x8b8d300,3, 0x8b8d310,3, 0x8b8d320,3, 0x8b8d330,3, 0x8b8d340,3, 0x8b8d350,3, 0x8b8d360,3, 0x8b8d370,3, 0x8b8d380,3, 0x8b8d390,3, 0x8b8d3a0,3, 0x8b8d3b0,3, 0x8b8d3c0,3, 0x8b8d3d0,3, 0x8b8d3e0,3, 0x8b8d3f0,3, 0x8b8d400,3, 0x8b8d410,3, 0x8b8d420,3, 0x8b8d430,3, 0x8b8d440,3, 0x8b8d450,3, 0x8b8d460,3, 0x8b8d470,3, 0x8b8d480,3, 0x8b8d490,3, 0x8b8d4a0,3, 0x8b8d4b0,3, 0x8b8d4c0,3, 0x8b8d4d0,3, 0x8b8d4e0,3, 0x8b8d4f0,3, 0x8b8d500,3, 0x8b8d510,3, 0x8b8d520,3, 0x8b8d530,3, 0x8b8d540,3, 0x8b8d550,3, 0x8b8d560,3, 0x8b8d570,3, 0x8b8d580,3, 0x8b8d590,3, 0x8b8d5a0,3, 0x8b8d5b0,3, 0x8b8d5c0,3, 0x8b8d5d0,3, 0x8b8d5e0,3, 0x8b8d5f0,3, 0x8b8d600,3, 0x8b8d610,3, 0x8b8d620,3, 0x8b8d630,3, 0x8b8d640,3, 0x8b8d650,3, 0x8b8d660,3, 0x8b8d670,3, 0x8b8d680,3, 0x8b8d690,3, 0x8b8d6a0,3, 0x8b8d6b0,3, 0x8b8d6c0,3, 0x8b8d6d0,3, 0x8b8d6e0,3, 0x8b8d6f0,3, 0x8b8d700,3, 0x8b8d710,3, 0x8b8d720,3, 0x8b8d730,3, 0x8b8d740,3, 0x8b8d750,3, 0x8b8d760,3, 0x8b8d770,3, 0x8b8d780,3, 0x8b8d790,3, 0x8b8d7a0,3, 0x8b8d7b0,3, 0x8b8d7c0,3, 0x8b8d7d0,3, 0x8b8d7e0,3, 0x8b8d7f0,3, 0x8b8d800,3, 0x8b8d810,3, 0x8b8d820,3, 0x8b8d830,3, 0x8b8d840,3, 0x8b8d850,3, 0x8b8d860,3, 0x8b8d870,3, 0x8b8d880,3, 0x8b8d890,3, 0x8b8d8a0,3, 0x8b8d8b0,3, 0x8b8d8c0,3, 0x8b8d8d0,3, 0x8b8d8e0,3, 0x8b8d8f0,3, 0x8b8d900,3, 0x8b8d910,3, 0x8b8d920,3, 0x8b8d930,3, 0x8b8d940,3, 0x8b8d950,3, 0x8b8d960,3, 0x8b8d970,3, 0x8b8d980,3, 0x8b8d990,3, 0x8b8d9a0,3, 0x8b8d9b0,3, 0x8b8d9c0,3, 0x8b8d9d0,3, 0x8b8d9e0,3, 0x8b8d9f0,3, 0x8b8da00,3, 0x8b8da10,3, 0x8b8da20,3, 0x8b8da30,3, 0x8b8da40,3, 0x8b8da50,3, 0x8b8da60,3, 0x8b8da70,3, 0x8b8da80,3, 0x8b8da90,3, 0x8b8daa0,3, 0x8b8dab0,3, 0x8b8dac0,3, 0x8b8dad0,3, 0x8b8dae0,3, 0x8b8daf0,3, 0x8b8db00,3, 0x8b8db10,3, 0x8b8db20,3, 0x8b8db30,3, 0x8b8db40,3, 0x8b8db50,3, 0x8b8db60,3, 0x8b8db70,3, 0x8b8db80,3, 0x8b8db90,3, 0x8b8dba0,3, 0x8b8dbb0,3, 0x8b8dbc0,3, 0x8b8dbd0,3, 0x8b8dbe0,3, 0x8b8dbf0,3, 0x8b8dc00,3, 0x8b8dc10,3, 0x8b8dc20,3, 0x8b8dc30,3, 0x8b8dc40,3, 0x8b8dc50,3, 0x8b8dc60,3, 0x8b8dc70,3, 0x8b8dc80,3, 0x8b8dc90,3, 0x8b8dca0,3, 0x8b8dcb0,3, 0x8b8dcc0,3, 0x8b8dcd0,3, 0x8b8dce0,3, 0x8b8dcf0,3, 0x8b8dd00,3, 0x8b8dd10,3, 0x8b8dd20,3, 0x8b8dd30,3, 0x8b8dd40,3, 0x8b8dd50,3, 0x8b8dd60,3, 0x8b8dd70,3, 0x8b8dd80,3, 0x8b8dd90,3, 0x8b8dda0,3, 0x8b8ddb0,3, 0x8b8ddc0,3, 0x8b8ddd0,3, 0x8b8dde0,3, 0x8b8ddf0,3, 0x8b8de00,3, 0x8b8de10,3, 0x8b8de20,3, 0x8b8de30,3, 0x8b8de40,3, 0x8b8de50,3, 0x8b8de60,3, 0x8b8de70,3, 0x8b8de80,3, 0x8b8de90,3, 0x8b8dea0,3, 0x8b8deb0,3, 0x8b8dec0,3, 0x8b8ded0,3, 0x8b8dee0,3, 0x8b8def0,3, 0x8b8df00,3, 0x8b8df10,3, 0x8b8df20,3, 0x8b8df30,3, 0x8b8df40,3, 0x8b8df50,3, 0x8b8df60,3, 0x8b8df70,3, 0x8b8df80,3, 0x8b8df90,3, 0x8b8dfa0,3, 0x8b8dfb0,3, 0x8b8dfc0,3, 0x8b8dfd0,3, 0x8b8dfe0,3, 0x8b8dff0,3, 0x8b8e000,3, 0x8b8e010,3, 0x8b8e020,3, 0x8b8e030,3, 0x8b8e040,3, 0x8b8e050,3, 0x8b8e060,3, 0x8b8e070,3, 0x8b8e080,3, 0x8b8e090,3, 0x8b8e0a0,3, 0x8b8e0b0,3, 0x8b8e0c0,3, 0x8b8e0d0,3, 0x8b8e0e0,3, 0x8b8e0f0,3, 0x8b8e100,3, 0x8b8e110,3, 0x8b8e120,3, 0x8b8e130,3, 0x8b8e140,3, 0x8b8e150,3, 0x8b8e160,3, 0x8b8e170,3, 0x8b8e180,3, 0x8b8e190,3, 0x8b8e1a0,3, 0x8b8e1b0,3, 0x8b8e1c0,3, 0x8b8e1d0,3, 0x8b8e1e0,3, 0x8b8e1f0,3, 0x8b8e200,3, 0x8b8e210,3, 0x8b8e220,3, 0x8b8e230,3, 0x8b8e240,3, 0x8b8e250,3, 0x8b8e260,3, 0x8b8e270,3, 0x8b8e280,3, 0x8b8e290,3, 0x8b8e2a0,3, 0x8b8e2b0,3, 0x8b8e2c0,3, 0x8b8e2d0,3, 0x8b8e2e0,3, 0x8b8e2f0,3, 0x8b8e300,3, 0x8b8e310,3, 0x8b8e320,3, 0x8b8e330,3, 0x8b8e340,3, 0x8b8e350,3, 0x8b8e360,3, 0x8b8e370,3, 0x8b8e380,3, 0x8b8e390,3, 0x8b8e3a0,3, 0x8b8e3b0,3, 0x8b8e3c0,3, 0x8b8e3d0,3, 0x8b8e3e0,3, 0x8b8e3f0,3, 0x8b8e400,3, 0x8b8e410,3, 0x8b8e420,3, 0x8b8e430,3, 0x8b8e440,3, 0x8b8e450,3, 0x8b8e460,3, 0x8b8e470,3, 0x8b8e480,3, 0x8b8e490,3, 0x8b8e4a0,3, 0x8b8e4b0,3, 0x8b8e4c0,3, 0x8b8e4d0,3, 0x8b8e4e0,3, 0x8b8e4f0,3, 0x8b8e500,3, 0x8b8e510,3, 0x8b8e520,3, 0x8b8e530,3, 0x8b8e540,3, 0x8b8e550,3, 0x8b8e560,3, 0x8b8e570,3, 0x8b8e580,3, 0x8b8e590,3, 0x8b8e5a0,3, 0x8b8e5b0,3, 0x8b8e5c0,3, 0x8b8e5d0,3, 0x8b8e5e0,3, 0x8b8e5f0,3, 0x8b8e600,3, 0x8b8e610,3, 0x8b8e620,3, 0x8b8e630,3, 0x8b8e640,3, 0x8b8e650,3, 0x8b8e660,3, 0x8b8e670,3, 0x8b8e680,3, 0x8b8e690,3, 0x8b8e6a0,3, 0x8b8e6b0,3, 0x8b8e6c0,3, 0x8b8e6d0,3, 0x8b8e6e0,3, 0x8b8e6f0,3, 0x8b8e700,3, 0x8b8e710,3, 0x8b8e720,3, 0x8b8e730,3, 0x8b8e740,3, 0x8b8e750,3, 0x8b8e760,3, 0x8b8e770,3, 0x8b8e780,3, 0x8b8e790,3, 0x8b8e7a0,3, 0x8b8e7b0,3, 0x8b8e7c0,3, 0x8b8e7d0,3, 0x8b8e7e0,3, 0x8b8e7f0,3, 0x8b8e800,3, 0x8b8e810,3, 0x8b8e820,3, 0x8b8e830,3, 0x8b8e840,3, 0x8b8e850,3, 0x8b8e860,3, 0x8b8e870,3, 0x8b8e880,3, 0x8b8e890,3, 0x8b8e8a0,3, 0x8b8e8b0,3, 0x8b8e8c0,3, 0x8b8e8d0,3, 0x8b8e8e0,3, 0x8b8e8f0,3, 0x8b8e900,3, 0x8b8e910,3, 0x8b8e920,3, 0x8b8e930,3, 0x8b8e940,3, 0x8b8e950,3, 0x8b8e960,3, 0x8b8e970,3, 0x8b8e980,3, 0x8b8e990,3, 0x8b8e9a0,3, 0x8b8e9b0,3, 0x8b8e9c0,3, 0x8b8e9d0,3, 0x8b8e9e0,3, 0x8b8e9f0,3, 0x8b8ea00,3, 0x8b8ea10,3, 0x8b8ea20,3, 0x8b8ea30,3, 0x8b8ea40,3, 0x8b8ea50,3, 0x8b8ea60,3, 0x8b8ea70,3, 0x8b8ea80,3, 0x8b8ea90,3, 0x8b8eaa0,3, 0x8b8eab0,3, 0x8b8eac0,3, 0x8b8ead0,3, 0x8b8eae0,3, 0x8b8eaf0,3, 0x8b8eb00,3, 0x8b8eb10,3, 0x8b8eb20,3, 0x8b8eb30,3, 0x8b8eb40,3, 0x8b8eb50,3, 0x8b8eb60,3, 0x8b8eb70,3, 0x8b8eb80,3, 0x8b8eb90,3, 0x8b8eba0,3, 0x8b8ebb0,3, 0x8b8ebc0,3, 0x8b8ebd0,3, 0x8b8ebe0,3, 0x8b8ebf0,3, 0x8b8ec00,3, 0x8b8ec10,3, 0x8b8ec20,3, 0x8b8ec30,3, 0x8b8ec40,3, 0x8b8ec50,3, 0x8b8ec60,3, 0x8b8ec70,3, 0x8b8ec80,3, 0x8b8ec90,3, 0x8b8eca0,3, 0x8b8ecb0,3, 0x8b8ecc0,3, 0x8b8ecd0,3, 0x8b8ece0,3, 0x8b8ecf0,3, 0x8b8ed00,3, 0x8b8ed10,3, 0x8b8ed20,3, 0x8b8ed30,3, 0x8b8ed40,3, 0x8b8ed50,3, 0x8b8ed60,3, 0x8b8ed70,3, 0x8b8ed80,3, 0x8b8ed90,3, 0x8b8eda0,3, 0x8b8edb0,3, 0x8b8edc0,3, 0x8b8edd0,3, 0x8b8ede0,3, 0x8b8edf0,3, 0x8b8ee00,3, 0x8b8ee10,3, 0x8b8ee20,3, 0x8b8ee30,3, 0x8b8ee40,3, 0x8b8ee50,3, 0x8b8ee60,3, 0x8b8ee70,3, 0x8b8ee80,3, 0x8b8ee90,3, 0x8b8eea0,3, 0x8b8eeb0,3, 0x8b8eec0,3, 0x8b8eed0,3, 0x8b8eee0,3, 0x8b8eef0,3, 0x8b8ef00,3, 0x8b8ef10,3, 0x8b8ef20,3, 0x8b8ef30,3, 0x8b8ef40,3, 0x8b8ef50,3, 0x8b8ef60,3, 0x8b8ef70,3, 0x8b8ef80,3, 0x8b8ef90,3, 0x8b8efa0,3, 0x8b8efb0,3, 0x8b8efc0,3, 0x8b8efd0,3, 0x8b8efe0,3, 0x8b8eff0,3, 0x8b8f000,3, 0x8b8f010,3, 0x8b8f020,3, 0x8b8f030,3, 0x8b8f040,3, 0x8b8f050,3, 0x8b8f060,3, 0x8b8f070,3, 0x8b8f080,3, 0x8b8f090,3, 0x8b8f0a0,3, 0x8b8f0b0,3, 0x8b8f0c0,3, 0x8b8f0d0,3, 0x8b8f0e0,3, 0x8b8f0f0,3, 0x8b8f100,3, 0x8b8f110,3, 0x8b8f120,3, 0x8b8f130,3, 0x8b8f140,3, 0x8b8f150,3, 0x8b8f160,3, 0x8b8f170,3, 0x8b8f180,3, 0x8b8f190,3, 0x8b8f1a0,3, 0x8b8f1b0,3, 0x8b8f1c0,3, 0x8b8f1d0,3, 0x8b8f1e0,3, 0x8b8f1f0,3, 0x8b8f200,3, 0x8b8f210,3, 0x8b8f220,3, 0x8b8f230,3, 0x8b8f240,3, 0x8b8f250,3, 0x8b8f260,3, 0x8b8f270,3, 0x8b8f280,3, 0x8b8f290,3, 0x8b8f2a0,3, 0x8b8f2b0,3, 0x8b8f2c0,3, 0x8b8f2d0,3, 0x8b8f2e0,3, 0x8b8f2f0,3, 0x8b8f300,3, 0x8b8f310,3, 0x8b8f320,3, 0x8b8f330,3, 0x8b8f340,3, 0x8b8f350,3, 0x8b8f360,3, 0x8b8f370,3, 0x8b8f380,3, 0x8b8f390,3, 0x8b8f3a0,3, 0x8b8f3b0,3, 0x8b8f3c0,3, 0x8b8f3d0,3, 0x8b8f3e0,3, 0x8b8f3f0,3, 0x8b8f400,3, 0x8b8f410,3, 0x8b8f420,3, 0x8b8f430,3, 0x8b8f440,3, 0x8b8f450,3, 0x8b8f460,3, 0x8b8f470,3, 0x8b8f480,3, 0x8b8f490,3, 0x8b8f4a0,3, 0x8b8f4b0,3, 0x8b8f4c0,3, 0x8b8f4d0,3, 0x8b8f4e0,3, 0x8b8f4f0,3, 0x8b8f500,3, 0x8b8f510,3, 0x8b8f520,3, 0x8b8f530,3, 0x8b8f540,3, 0x8b8f550,3, 0x8b8f560,3, 0x8b8f570,3, 0x8b8f580,3, 0x8b8f590,3, 0x8b8f5a0,3, 0x8b8f5b0,3, 0x8b8f5c0,3, 0x8b8f5d0,3, 0x8b8f5e0,3, 0x8b8f5f0,3, 0x8b8f600,3, 0x8b8f610,3, 0x8b8f620,3, 0x8b8f630,3, 0x8b8f640,3, 0x8b8f650,3, 0x8b8f660,3, 0x8b8f670,3, 0x8b8f680,3, 0x8b8f690,3, 0x8b8f6a0,3, 0x8b8f6b0,3, 0x8b8f6c0,3, 0x8b8f6d0,3, 0x8b8f6e0,3, 0x8b8f6f0,3, 0x8b8f700,3, 0x8b8f710,3, 0x8b8f720,3, 0x8b8f730,3, 0x8b8f740,3, 0x8b8f750,3, 0x8b8f760,3, 0x8b8f770,3, 0x8b8f780,3, 0x8b8f790,3, 0x8b8f7a0,3, 0x8b8f7b0,3, 0x8b8f7c0,3, 0x8b8f7d0,3, 0x8b8f7e0,3, 0x8b8f7f0,3, 0x8b8f800,3, 0x8b8f810,3, 0x8b8f820,3, 0x8b8f830,3, 0x8b8f840,3, 0x8b8f850,3, 0x8b8f860,3, 0x8b8f870,3, 0x8b8f880,3, 0x8b8f890,3, 0x8b8f8a0,3, 0x8b8f8b0,3, 0x8b8f8c0,3, 0x8b8f8d0,3, 0x8b8f8e0,3, 0x8b8f8f0,3, 0x8b8f900,3, 0x8b8f910,3, 0x8b8f920,3, 0x8b8f930,3, 0x8b8f940,3, 0x8b8f950,3, 0x8b8f960,3, 0x8b8f970,3, 0x8b8f980,3, 0x8b8f990,3, 0x8b8f9a0,3, 0x8b8f9b0,3, 0x8b8f9c0,3, 0x8b8f9d0,3, 0x8b8f9e0,3, 0x8b8f9f0,3, 0x8b8fa00,3, 0x8b8fa10,3, 0x8b8fa20,3, 0x8b8fa30,3, 0x8b8fa40,3, 0x8b8fa50,3, 0x8b8fa60,3, 0x8b8fa70,3, 0x8b8fa80,3, 0x8b8fa90,3, 0x8b8faa0,3, 0x8b8fab0,3, 0x8b8fac0,3, 0x8b8fad0,3, 0x8b8fae0,3, 0x8b8faf0,3, 0x8b8fb00,3, 0x8b8fb10,3, 0x8b8fb20,3, 0x8b8fb30,3, 0x8b8fb40,3, 0x8b8fb50,3, 0x8b8fb60,3, 0x8b8fb70,3, 0x8b8fb80,3, 0x8b8fb90,3, 0x8b8fba0,3, 0x8b8fbb0,3, 0x8b8fbc0,3, 0x8b8fbd0,3, 0x8b8fbe0,3, 0x8b8fbf0,3, 0x8b8fc00,3, 0x8b8fc10,3, 0x8b8fc20,3, 0x8b8fc30,3, 0x8b8fc40,3, 0x8b8fc50,3, 0x8b8fc60,3, 0x8b8fc70,3, 0x8b8fc80,3, 0x8b8fc90,3, 0x8b8fca0,3, 0x8b8fcb0,3, 0x8b8fcc0,3, 0x8b8fcd0,3, 0x8b8fce0,3, 0x8b8fcf0,3, 0x8b8fd00,3, 0x8b8fd10,3, 0x8b8fd20,3, 0x8b8fd30,3, 0x8b8fd40,3, 0x8b8fd50,3, 0x8b8fd60,3, 0x8b8fd70,3, 0x8b8fd80,3, 0x8b8fd90,3, 0x8b8fda0,3, 0x8b8fdb0,3, 0x8b8fdc0,3, 0x8b8fdd0,3, 0x8b8fde0,3, 0x8b8fdf0,3, 0x8b8fe00,3, 0x8b8fe10,3, 0x8b8fe20,3, 0x8b8fe30,3, 0x8b8fe40,3, 0x8b8fe50,3, 0x8b8fe60,3, 0x8b8fe70,3, 0x8b8fe80,3, 0x8b8fe90,3, 0x8b8fea0,3, 0x8b8feb0,3, 0x8b8fec0,3, 0x8b8fed0,3, 0x8b8fee0,3, 0x8b8fef0,3, 0x8b8ff00,3, 0x8b8ff10,3, 0x8b8ff20,3, 0x8b8ff30,3, 0x8b8ff40,3, 0x8b8ff50,3, 0x8b8ff60,3, 0x8b8ff70,3, 0x8b8ff80,3, 0x8b8ff90,3, 0x8b8ffa0,3, 0x8b8ffb0,3, 0x8b8ffc0,3, 0x8b8ffd0,3, 0x8b8ffe0,3, 0x8b8fff0,3, 0x8b90000,3, 0x8b90010,3, 0x8b90020,3, 0x8b90030,3, 0x8b90040,3, 0x8b90050,3, 0x8b90060,3, 0x8b90070,3, 0x8b90080,3, 0x8b90090,3, 0x8b900a0,3, 0x8b900b0,3, 0x8b900c0,3, 0x8b900d0,3, 0x8b900e0,3, 0x8b900f0,3, 0x8b90100,3, 0x8b90110,3, 0x8b90120,3, 0x8b90130,3, 0x8b90140,3, 0x8b90150,3, 0x8b90160,3, 0x8b90170,3, 0x8b90180,3, 0x8b90190,3, 0x8b901a0,3, 0x8b901b0,3, 0x8b901c0,3, 0x8b901d0,3, 0x8b901e0,3, 0x8b901f0,3, 0x8b90200,3, 0x8b90210,3, 0x8b90220,3, 0x8b90230,3, 0x8b90240,3, 0x8b90250,3, 0x8b90260,3, 0x8b90270,3, 0x8b90280,3, 0x8b90290,3, 0x8b902a0,3, 0x8b902b0,3, 0x8b902c0,3, 0x8b902d0,3, 0x8b902e0,3, 0x8b902f0,3, 0x8b90300,3, 0x8b90310,3, 0x8b90320,3, 0x8b90330,3, 0x8b90340,3, 0x8b90350,3, 0x8b90360,3, 0x8b90370,3, 0x8b90380,3, 0x8b90390,3, 0x8b903a0,3, 0x8b903b0,3, 0x8b903c0,3, 0x8b903d0,3, 0x8b903e0,3, 0x8b903f0,3, 0x8ba0000,2, 0x8ba0040,9, 0x8ba0080,3, 0x8ba0090,3, 0x8ba00a0,3, 0x8bc0000,3, 0x8bc0010,3, 0x8bc0020,3, 0x8bc0030,3, 0x8bc0040,3, 0x8bc0050,3, 0x8bc0060,3, 0x8bc0070,3, 0x8bc0080,3, 0x8bc0090,3, 0x8bc00a0,3, 0x8bc00b0,3, 0x8bc00c0,3, 0x8bc00d0,3, 0x8bc00e0,3, 0x8bc00f0,3, 0x8bc0100,2, 0x8bc0140,9, 0x8bc0180,3, 0x8bc0190,3, 0x8bc01a0,3, 0x8c00000,15, 0x8c00040,15, 0x8c00080,15, 0x8c000c0,15, 0x8c00100,15, 0x8c00140,15, 0x8c00180,15, 0x8c001c0,15, 0x8c00200,15, 0x8c00240,15, 0x8c00280,15, 0x8c002c0,15, 0x8c00300,15, 0x8c00340,15, 0x8c00380,15, 0x8c003c0,15, 0x8c00400,15, 0x8c00440,15, 0x8c00480,15, 0x8c004c0,15, 0x8c00500,15, 0x8c00540,15, 0x8c00580,15, 0x8c005c0,15, 0x8c00600,15, 0x8c00640,15, 0x8c00680,15, 0x8c006c0,15, 0x8c00700,15, 0x8c00740,15, 0x8c00780,15, 0x8c007c0,15, 0x8c00800,15, 0x8c00840,15, 0x8c00880,15, 0x8c008c0,15, 0x8c00900,15, 0x8c00940,15, 0x8c00980,15, 0x8c009c0,15, 0x8c00a00,15, 0x8c00a40,15, 0x8c00a80,15, 0x8c00ac0,15, 0x8c00b00,15, 0x8c00b40,15, 0x8c00b80,15, 0x8c00bc0,15, 0x8c00c00,15, 0x8c00c40,15, 0x8c00c80,15, 0x8c00cc0,15, 0x8c00d00,15, 0x8c00d40,15, 0x8c00d80,15, 0x8c00dc0,15, 0x8c00e00,15, 0x8c00e40,15, 0x8c00e80,15, 0x8c00ec0,15, 0x8c00f00,15, 0x8c00f40,15, 0x8c00f80,15, 0x8c00fc0,15, 0x8c01000,15, 0x8c01040,15, 0x8c01080,15, 0x8c010c0,15, 0x8c01100,15, 0x8c01140,15, 0x8c01180,15, 0x8c011c0,15, 0x8c01200,15, 0x8c01240,15, 0x8c01280,15, 0x8c012c0,15, 0x8c01300,15, 0x8c01340,15, 0x8c01380,15, 0x8c013c0,15, 0x8c01400,15, 0x8c01440,15, 0x8c01480,15, 0x8c014c0,15, 0x8c01500,15, 0x8c01540,15, 0x8c01580,15, 0x8c015c0,15, 0x8c01600,15, 0x8c01640,15, 0x8c01680,15, 0x8c016c0,15, 0x8c01700,15, 0x8c01740,15, 0x8c01780,15, 0x8c017c0,15, 0x8c01800,15, 0x8c01840,15, 0x8c01880,15, 0x8c018c0,15, 0x8c01900,15, 0x8c01940,15, 0x8c01980,15, 0x8c019c0,15, 0x8c01a00,15, 0x8c01a40,15, 0x8c01a80,15, 0x8c01ac0,15, 0x8c01b00,15, 0x8c01b40,15, 0x8c01b80,15, 0x8c01bc0,15, 0x8c01c00,15, 0x8c01c40,15, 0x8c01c80,15, 0x8c01cc0,15, 0x8c01d00,15, 0x8c01d40,15, 0x8c01d80,15, 0x8c01dc0,15, 0x8c01e00,15, 0x8c01e40,15, 0x8c01e80,15, 0x8c01ec0,15, 0x8c01f00,15, 0x8c01f40,15, 0x8c01f80,15, 0x8c01fc0,15, 0x8c02000,15, 0x8c02040,15, 0x8c02080,15, 0x8c020c0,15, 0x8c02100,15, 0x8c02140,15, 0x8c02180,15, 0x8c021c0,15, 0x8c02200,15, 0x8c02240,15, 0x8c02280,15, 0x8c022c0,15, 0x8c02300,15, 0x8c02340,15, 0x8c02380,15, 0x8c023c0,15, 0x8c02400,15, 0x8c02440,15, 0x8c02480,15, 0x8c024c0,15, 0x8c02500,15, 0x8c02540,15, 0x8c02580,15, 0x8c025c0,15, 0x8c02600,15, 0x8c02640,15, 0x8c02680,15, 0x8c026c0,15, 0x8c02700,15, 0x8c02740,15, 0x8c02780,15, 0x8c027c0,15, 0x8c02800,15, 0x8c02840,15, 0x8c02880,15, 0x8c028c0,15, 0x8c02900,15, 0x8c02940,15, 0x8c02980,15, 0x8c029c0,15, 0x8c02a00,15, 0x8c02a40,15, 0x8c02a80,15, 0x8c02ac0,15, 0x8c02b00,15, 0x8c02b40,15, 0x8c02b80,15, 0x8c02bc0,15, 0x8c02c00,15, 0x8c02c40,15, 0x8c02c80,15, 0x8c02cc0,15, 0x8c02d00,15, 0x8c02d40,15, 0x8c02d80,15, 0x8c02dc0,15, 0x8c02e00,15, 0x8c02e40,15, 0x8c02e80,15, 0x8c02ec0,15, 0x8c02f00,15, 0x8c02f40,15, 0x8c02f80,15, 0x8c02fc0,15, 0x8c03000,15, 0x8c03040,15, 0x8c03080,15, 0x8c030c0,15, 0x8c03100,15, 0x8c03140,15, 0x8c03180,15, 0x8c031c0,15, 0x8c03200,15, 0x8c03240,15, 0x8c03280,15, 0x8c032c0,15, 0x8c03300,15, 0x8c03340,15, 0x8c03380,15, 0x8c033c0,15, 0x8c03400,15, 0x8c03440,15, 0x8c03480,15, 0x8c034c0,15, 0x8c03500,15, 0x8c03540,15, 0x8c03580,15, 0x8c035c0,15, 0x8c03600,15, 0x8c03640,15, 0x8c03680,15, 0x8c036c0,15, 0x8c03700,15, 0x8c03740,15, 0x8c03780,15, 0x8c037c0,15, 0x8c03800,15, 0x8c03840,15, 0x8c03880,15, 0x8c038c0,15, 0x8c03900,15, 0x8c03940,15, 0x8c03980,15, 0x8c039c0,15, 0x8c03a00,15, 0x8c03a40,15, 0x8c03a80,15, 0x8c03ac0,15, 0x8c03b00,15, 0x8c03b40,15, 0x8c03b80,15, 0x8c03bc0,15, 0x8c03c00,15, 0x8c03c40,15, 0x8c03c80,15, 0x8c03cc0,15, 0x8c03d00,15, 0x8c03d40,15, 0x8c03d80,15, 0x8c03dc0,15, 0x8c03e00,15, 0x8c03e40,15, 0x8c03e80,15, 0x8c03ec0,15, 0x8c03f00,15, 0x8c03f40,15, 0x8c03f80,15, 0x8c03fc0,15, 0x8c04000,15, 0x8c04040,15, 0x8c04080,15, 0x8c040c0,15, 0x8c04100,15, 0x8c04140,15, 0x8c04180,15, 0x8c041c0,15, 0x8c04200,15, 0x8c04240,15, 0x8c04280,15, 0x8c042c0,15, 0x8c04300,15, 0x8c04340,15, 0x8c04380,15, 0x8c043c0,15, 0x8c04400,15, 0x8c04440,15, 0x8c04480,15, 0x8c044c0,15, 0x8c04500,15, 0x8c04540,15, 0x8c04580,15, 0x8c045c0,15, 0x8c04600,15, 0x8c04640,15, 0x8c04680,15, 0x8c046c0,15, 0x8c04700,15, 0x8c04740,15, 0x8c04780,15, 0x8c047c0,15, 0x8c04800,15, 0x8c04840,15, 0x8c04880,15, 0x8c048c0,15, 0x8c04900,15, 0x8c04940,15, 0x8c04980,15, 0x8c049c0,15, 0x8c04a00,15, 0x8c04a40,15, 0x8c04a80,15, 0x8c04ac0,15, 0x8c04b00,15, 0x8c04b40,15, 0x8c04b80,15, 0x8c04bc0,15, 0x8c04c00,15, 0x8c04c40,15, 0x8c04c80,15, 0x8c04cc0,15, 0x8c04d00,15, 0x8c04d40,15, 0x8c04d80,15, 0x8c04dc0,15, 0x8c04e00,15, 0x8c04e40,15, 0x8c04e80,15, 0x8c04ec0,15, 0x8c04f00,15, 0x8c04f40,15, 0x8c04f80,15, 0x8c04fc0,15, 0x8c05000,15, 0x8c05040,15, 0x8c05080,15, 0x8c050c0,15, 0x8c05100,15, 0x8c05140,15, 0x8c05180,15, 0x8c051c0,15, 0x8c05200,15, 0x8c05240,15, 0x8c05280,15, 0x8c052c0,15, 0x8c05300,15, 0x8c05340,15, 0x8c05380,15, 0x8c053c0,15, 0x8c05400,15, 0x8c05440,15, 0x8c05480,15, 0x8c054c0,15, 0x8c05500,15, 0x8c05540,15, 0x8c05580,15, 0x8c055c0,15, 0x8c05600,15, 0x8c05640,15, 0x8c05680,15, 0x8c056c0,15, 0x8c05700,15, 0x8c05740,15, 0x8c05780,15, 0x8c057c0,15, 0x8c05800,15, 0x8c05840,15, 0x8c05880,15, 0x8c058c0,15, 0x8c05900,15, 0x8c05940,15, 0x8c05980,15, 0x8c059c0,15, 0x8c05a00,15, 0x8c05a40,15, 0x8c05a80,15, 0x8c05ac0,15, 0x8c05b00,15, 0x8c05b40,15, 0x8c05b80,15, 0x8c05bc0,15, 0x8c05c00,15, 0x8c05c40,15, 0x8c05c80,15, 0x8c05cc0,15, 0x8c05d00,15, 0x8c05d40,15, 0x8c05d80,15, 0x8c05dc0,15, 0x8c05e00,15, 0x8c05e40,15, 0x8c05e80,15, 0x8c05ec0,15, 0x8c05f00,15, 0x8c05f40,15, 0x8c05f80,15, 0x8c05fc0,15, 0x8c06000,15, 0x8c06040,15, 0x8c06080,15, 0x8c060c0,15, 0x8c06100,15, 0x8c06140,15, 0x8c06180,15, 0x8c061c0,15, 0x8c06200,15, 0x8c06240,15, 0x8c06280,15, 0x8c062c0,15, 0x8c06300,15, 0x8c06340,15, 0x8c06380,15, 0x8c063c0,15, 0x8c06400,15, 0x8c06440,15, 0x8c06480,15, 0x8c064c0,15, 0x8c06500,15, 0x8c06540,15, 0x8c06580,15, 0x8c065c0,15, 0x8c06600,15, 0x8c06640,15, 0x8c06680,15, 0x8c066c0,15, 0x8c06700,15, 0x8c06740,15, 0x8c06780,15, 0x8c067c0,15, 0x8c06800,15, 0x8c06840,15, 0x8c06880,15, 0x8c068c0,15, 0x8c06900,15, 0x8c06940,15, 0x8c06980,15, 0x8c069c0,15, 0x8c06a00,15, 0x8c06a40,15, 0x8c06a80,15, 0x8c06ac0,15, 0x8c06b00,15, 0x8c06b40,15, 0x8c06b80,15, 0x8c06bc0,15, 0x8c06c00,15, 0x8c06c40,15, 0x8c06c80,15, 0x8c06cc0,15, 0x8c06d00,15, 0x8c06d40,15, 0x8c06d80,15, 0x8c06dc0,15, 0x8c06e00,15, 0x8c06e40,15, 0x8c06e80,15, 0x8c06ec0,15, 0x8c06f00,15, 0x8c06f40,15, 0x8c06f80,15, 0x8c06fc0,15, 0x8c07000,15, 0x8c07040,15, 0x8c07080,15, 0x8c070c0,15, 0x8c07100,15, 0x8c07140,15, 0x8c07180,15, 0x8c071c0,15, 0x8c07200,15, 0x8c07240,15, 0x8c07280,15, 0x8c072c0,15, 0x8c07300,15, 0x8c07340,15, 0x8c07380,15, 0x8c073c0,15, 0x8c07400,15, 0x8c07440,15, 0x8c07480,15, 0x8c074c0,15, 0x8c07500,15, 0x8c07540,15, 0x8c07580,15, 0x8c075c0,15, 0x8c07600,15, 0x8c07640,15, 0x8c07680,15, 0x8c076c0,15, 0x8c07700,15, 0x8c07740,15, 0x8c07780,15, 0x8c077c0,15, 0x8c07800,15, 0x8c07840,15, 0x8c07880,15, 0x8c078c0,15, 0x8c07900,15, 0x8c07940,15, 0x8c07980,15, 0x8c079c0,15, 0x8c07a00,15, 0x8c07a40,15, 0x8c07a80,15, 0x8c07ac0,15, 0x8c07b00,15, 0x8c07b40,15, 0x8c07b80,15, 0x8c07bc0,15, 0x8c07c00,15, 0x8c07c40,15, 0x8c07c80,15, 0x8c07cc0,15, 0x8c07d00,15, 0x8c07d40,15, 0x8c07d80,15, 0x8c07dc0,15, 0x8c07e00,15, 0x8c07e40,15, 0x8c07e80,15, 0x8c07ec0,15, 0x8c07f00,15, 0x8c07f40,15, 0x8c07f80,15, 0x8c07fc0,15, 0x8c08000,15, 0x8c08040,15, 0x8c08080,15, 0x8c080c0,15, 0x8c08100,15, 0x8c08140,15, 0x8c08180,15, 0x8c081c0,15, 0x8c08200,15, 0x8c08240,15, 0x8c08280,15, 0x8c082c0,15, 0x8c08300,15, 0x8c08340,15, 0x8c08380,15, 0x8c083c0,15, 0x8c08400,15, 0x8c08440,15, 0x8c08480,15, 0x8c084c0,15, 0x8c08500,15, 0x8c08540,15, 0x8c08580,15, 0x8c085c0,15, 0x8c08600,15, 0x8c08640,15, 0x8c08680,15, 0x8c086c0,15, 0x8c08700,15, 0x8c08740,15, 0x8c08780,15, 0x8c087c0,15, 0x8c08800,15, 0x8c08840,15, 0x8c08880,15, 0x8c088c0,15, 0x8c08900,15, 0x8c08940,15, 0x8c08980,15, 0x8c089c0,15, 0x8c08a00,15, 0x8c08a40,15, 0x8c08a80,15, 0x8c08ac0,15, 0x8c08b00,15, 0x8c08b40,15, 0x8c08b80,15, 0x8c08bc0,15, 0x8c08c00,15, 0x8c08c40,15, 0x8c08c80,15, 0x8c08cc0,15, 0x8c08d00,15, 0x8c08d40,15, 0x8c08d80,15, 0x8c08dc0,15, 0x8c08e00,15, 0x8c08e40,15, 0x8c08e80,15, 0x8c08ec0,15, 0x8c08f00,15, 0x8c08f40,15, 0x8c08f80,15, 0x8c08fc0,15, 0x8c09000,15, 0x8c09040,15, 0x8c09080,15, 0x8c090c0,15, 0x8c09100,15, 0x8c09140,15, 0x8c09180,15, 0x8c091c0,15, 0x8c09200,15, 0x8c09240,15, 0x8c09280,15, 0x8c092c0,15, 0x8c09300,15, 0x8c09340,15, 0x8c09380,15, 0x8c093c0,15, 0x8c09400,15, 0x8c09440,15, 0x8c09480,15, 0x8c094c0,15, 0x8c09500,15, 0x8c09540,15, 0x8c09580,15, 0x8c095c0,15, 0x8c09600,15, 0x8c09640,15, 0x8c09680,15, 0x8c096c0,15, 0x8c09700,15, 0x8c09740,15, 0x8c09780,15, 0x8c097c0,15, 0x8c09800,15, 0x8c09840,15, 0x8c09880,15, 0x8c098c0,15, 0x8c09900,15, 0x8c09940,15, 0x8c09980,15, 0x8c099c0,15, 0x8c09a00,15, 0x8c09a40,15, 0x8c09a80,15, 0x8c09ac0,15, 0x8c09b00,15, 0x8c09b40,15, 0x8c09b80,15, 0x8c09bc0,15, 0x8c09c00,15, 0x8c09c40,15, 0x8c09c80,15, 0x8c09cc0,15, 0x8c09d00,15, 0x8c09d40,15, 0x8c09d80,15, 0x8c09dc0,15, 0x8c09e00,15, 0x8c09e40,15, 0x8c09e80,15, 0x8c09ec0,15, 0x8c09f00,15, 0x8c09f40,15, 0x8c09f80,15, 0x8c09fc0,15, 0x8c0a000,15, 0x8c0a040,15, 0x8c0a080,15, 0x8c0a0c0,15, 0x8c0a100,15, 0x8c0a140,15, 0x8c0a180,15, 0x8c0a1c0,15, 0x8c0a200,15, 0x8c0a240,15, 0x8c0a280,15, 0x8c0a2c0,15, 0x8c0a300,15, 0x8c0a340,15, 0x8c0a380,15, 0x8c0a3c0,15, 0x8c0a400,15, 0x8c0a440,15, 0x8c0a480,15, 0x8c0a4c0,15, 0x8c0a500,15, 0x8c0a540,15, 0x8c0a580,15, 0x8c0a5c0,15, 0x8c0a600,15, 0x8c0a640,15, 0x8c0a680,15, 0x8c0a6c0,15, 0x8c0a700,15, 0x8c0a740,15, 0x8c0a780,15, 0x8c0a7c0,15, 0x8c0a800,15, 0x8c0a840,15, 0x8c0a880,15, 0x8c0a8c0,15, 0x8c0a900,15, 0x8c0a940,15, 0x8c0a980,15, 0x8c0a9c0,15, 0x8c0aa00,15, 0x8c0aa40,15, 0x8c0aa80,15, 0x8c0aac0,15, 0x8c0ab00,15, 0x8c0ab40,15, 0x8c0ab80,15, 0x8c0abc0,15, 0x8c0ac00,15, 0x8c0ac40,15, 0x8c0ac80,15, 0x8c0acc0,15, 0x8c0ad00,15, 0x8c0ad40,15, 0x8c0ad80,15, 0x8c0adc0,15, 0x8c0ae00,15, 0x8c0ae40,15, 0x8c0ae80,15, 0x8c0aec0,15, 0x8c0af00,15, 0x8c0af40,15, 0x8c0af80,15, 0x8c0afc0,15, 0x8c0b000,15, 0x8c0b040,15, 0x8c0b080,15, 0x8c0b0c0,15, 0x8c0b100,15, 0x8c0b140,15, 0x8c0b180,15, 0x8c0b1c0,15, 0x8c0b200,15, 0x8c0b240,15, 0x8c0b280,15, 0x8c0b2c0,15, 0x8c0b300,15, 0x8c0b340,15, 0x8c0b380,15, 0x8c0b3c0,15, 0x8c0b400,15, 0x8c0b440,15, 0x8c0b480,15, 0x8c0b4c0,15, 0x8c0b500,15, 0x8c0b540,15, 0x8c0b580,15, 0x8c0b5c0,15, 0x8c0b600,15, 0x8c0b640,15, 0x8c0b680,15, 0x8c0b6c0,15, 0x8c0b700,15, 0x8c0b740,15, 0x8c0b780,15, 0x8c0b7c0,15, 0x8c0b800,15, 0x8c0b840,15, 0x8c0b880,15, 0x8c0b8c0,15, 0x8c0b900,15, 0x8c0b940,15, 0x8c0b980,15, 0x8c0b9c0,15, 0x8c0ba00,15, 0x8c0ba40,15, 0x8c0ba80,15, 0x8c0bac0,15, 0x8c0bb00,15, 0x8c0bb40,15, 0x8c0bb80,15, 0x8c0bbc0,15, 0x8c0bc00,15, 0x8c0bc40,15, 0x8c0bc80,15, 0x8c0bcc0,15, 0x8c0bd00,15, 0x8c0bd40,15, 0x8c0bd80,15, 0x8c0bdc0,15, 0x8c0be00,15, 0x8c0be40,15, 0x8c0be80,15, 0x8c0bec0,15, 0x8c0bf00,15, 0x8c0bf40,15, 0x8c0bf80,15, 0x8c0bfc0,15, 0x8c0c000,15, 0x8c0c040,15, 0x8c0c080,15, 0x8c0c0c0,15, 0x8c0c100,15, 0x8c0c140,15, 0x8c0c180,15, 0x8c0c1c0,15, 0x8c0c200,15, 0x8c0c240,15, 0x8c0c280,15, 0x8c0c2c0,15, 0x8c0c300,15, 0x8c0c340,15, 0x8c0c380,15, 0x8c0c3c0,15, 0x8c0c400,15, 0x8c0c440,15, 0x8c0c480,15, 0x8c0c4c0,15, 0x8c0c500,15, 0x8c0c540,15, 0x8c0c580,15, 0x8c0c5c0,15, 0x8c0c600,15, 0x8c0c640,15, 0x8c0c680,15, 0x8c0c6c0,15, 0x8c0c700,15, 0x8c0c740,15, 0x8c0c780,15, 0x8c0c7c0,15, 0x8c0c800,15, 0x8c0c840,15, 0x8c0c880,15, 0x8c0c8c0,15, 0x8c0c900,15, 0x8c0c940,15, 0x8c0c980,15, 0x8c0c9c0,15, 0x8c0ca00,15, 0x8c0ca40,15, 0x8c0ca80,15, 0x8c0cac0,15, 0x8c0cb00,15, 0x8c0cb40,15, 0x8c0cb80,15, 0x8c0cbc0,15, 0x8c0cc00,15, 0x8c0cc40,15, 0x8c0cc80,15, 0x8c0ccc0,15, 0x8c0cd00,15, 0x8c0cd40,15, 0x8c0cd80,15, 0x8c0cdc0,15, 0x8c0ce00,15, 0x8c0ce40,15, 0x8c0ce80,15, 0x8c0cec0,15, 0x8c0cf00,15, 0x8c0cf40,15, 0x8c0cf80,15, 0x8c0cfc0,15, 0x8c0d000,15, 0x8c0d040,15, 0x8c0d080,15, 0x8c0d0c0,15, 0x8c0d100,15, 0x8c0d140,15, 0x8c0d180,15, 0x8c0d1c0,15, 0x8c0d200,15, 0x8c0d240,15, 0x8c0d280,15, 0x8c0d2c0,15, 0x8c0d300,15, 0x8c0d340,15, 0x8c0d380,15, 0x8c0d3c0,15, 0x8c0d400,15, 0x8c0d440,15, 0x8c0d480,15, 0x8c0d4c0,15, 0x8c0d500,15, 0x8c0d540,15, 0x8c0d580,15, 0x8c0d5c0,15, 0x8c0d600,15, 0x8c0d640,15, 0x8c0d680,15, 0x8c0d6c0,15, 0x8c0d700,15, 0x8c0d740,15, 0x8c0d780,15, 0x8c0d7c0,15, 0x8c0d800,15, 0x8c0d840,15, 0x8c0d880,15, 0x8c0d8c0,15, 0x8c0d900,15, 0x8c0d940,15, 0x8c0d980,15, 0x8c0d9c0,15, 0x8c0da00,15, 0x8c0da40,15, 0x8c0da80,15, 0x8c0dac0,15, 0x8c0db00,15, 0x8c0db40,15, 0x8c0db80,15, 0x8c0dbc0,15, 0x8c0dc00,15, 0x8c0dc40,15, 0x8c0dc80,15, 0x8c0dcc0,15, 0x8c0dd00,15, 0x8c0dd40,15, 0x8c0dd80,15, 0x8c0ddc0,15, 0x8c0de00,15, 0x8c0de40,15, 0x8c0de80,15, 0x8c0dec0,15, 0x8c0df00,15, 0x8c0df40,15, 0x8c0df80,15, 0x8c0dfc0,15, 0x8c0e000,15, 0x8c0e040,15, 0x8c0e080,15, 0x8c0e0c0,15, 0x8c0e100,15, 0x8c0e140,15, 0x8c0e180,15, 0x8c0e1c0,15, 0x8c0e200,15, 0x8c0e240,15, 0x8c0e280,15, 0x8c0e2c0,15, 0x8c0e300,15, 0x8c0e340,15, 0x8c0e380,15, 0x8c0e3c0,15, 0x8c0e400,15, 0x8c0e440,15, 0x8c0e480,15, 0x8c0e4c0,15, 0x8c0e500,15, 0x8c0e540,15, 0x8c0e580,15, 0x8c0e5c0,15, 0x8c0e600,15, 0x8c0e640,15, 0x8c0e680,15, 0x8c0e6c0,15, 0x8c0e700,15, 0x8c0e740,15, 0x8c0e780,15, 0x8c0e7c0,15, 0x8c0e800,15, 0x8c0e840,15, 0x8c0e880,15, 0x8c0e8c0,15, 0x8c0e900,15, 0x8c0e940,15, 0x8c0e980,15, 0x8c0e9c0,15, 0x8c0ea00,15, 0x8c0ea40,15, 0x8c0ea80,15, 0x8c0eac0,15, 0x8c0eb00,15, 0x8c0eb40,15, 0x8c0eb80,15, 0x8c0ebc0,15, 0x8c0ec00,15, 0x8c0ec40,15, 0x8c0ec80,15, 0x8c0ecc0,15, 0x8c0ed00,15, 0x8c0ed40,15, 0x8c0ed80,15, 0x8c0edc0,15, 0x8c0ee00,15, 0x8c0ee40,15, 0x8c0ee80,15, 0x8c0eec0,15, 0x8c0ef00,15, 0x8c0ef40,15, 0x8c0ef80,15, 0x8c0efc0,15, 0x8c0f000,15, 0x8c0f040,15, 0x8c0f080,15, 0x8c0f0c0,15, 0x8c0f100,15, 0x8c0f140,15, 0x8c0f180,15, 0x8c0f1c0,15, 0x8c0f200,15, 0x8c0f240,15, 0x8c0f280,15, 0x8c0f2c0,15, 0x8c0f300,15, 0x8c0f340,15, 0x8c0f380,15, 0x8c0f3c0,15, 0x8c0f400,15, 0x8c0f440,15, 0x8c0f480,15, 0x8c0f4c0,15, 0x8c0f500,15, 0x8c0f540,15, 0x8c0f580,15, 0x8c0f5c0,15, 0x8c0f600,15, 0x8c0f640,15, 0x8c0f680,15, 0x8c0f6c0,15, 0x8c0f700,15, 0x8c0f740,15, 0x8c0f780,15, 0x8c0f7c0,15, 0x8c0f800,15, 0x8c0f840,15, 0x8c0f880,15, 0x8c0f8c0,15, 0x8c0f900,15, 0x8c0f940,15, 0x8c0f980,15, 0x8c0f9c0,15, 0x8c0fa00,15, 0x8c0fa40,15, 0x8c0fa80,15, 0x8c0fac0,15, 0x8c0fb00,15, 0x8c0fb40,15, 0x8c0fb80,15, 0x8c0fbc0,15, 0x8c0fc00,15, 0x8c0fc40,15, 0x8c0fc80,15, 0x8c0fcc0,15, 0x8c0fd00,15, 0x8c0fd40,15, 0x8c0fd80,15, 0x8c0fdc0,15, 0x8c0fe00,15, 0x8c0fe40,15, 0x8c0fe80,15, 0x8c0fec0,15, 0x8c0ff00,15, 0x8c0ff40,15, 0x8c0ff80,15, 0x8c0ffc0,15, 0x8c10000,15, 0x8c10040,15, 0x8c10080,15, 0x8c100c0,15, 0x8c10100,15, 0x8c10140,15, 0x8c10180,15, 0x8c101c0,15, 0x8c10200,15, 0x8c10240,15, 0x8c10280,15, 0x8c102c0,15, 0x8c10300,15, 0x8c10340,15, 0x8c10380,15, 0x8c103c0,15, 0x8c10400,15, 0x8c10440,15, 0x8c10480,15, 0x8c104c0,15, 0x8c10500,15, 0x8c10540,15, 0x8c10580,15, 0x8c105c0,15, 0x8c10600,15, 0x8c10640,15, 0x8c10680,15, 0x8c106c0,15, 0x8c10700,15, 0x8c10740,15, 0x8c10780,15, 0x8c107c0,15, 0x8c10800,15, 0x8c10840,15, 0x8c10880,15, 0x8c108c0,15, 0x8c10900,15, 0x8c10940,15, 0x8c10980,15, 0x8c109c0,15, 0x8c10a00,15, 0x8c10a40,15, 0x8c10a80,15, 0x8c10ac0,15, 0x8c10b00,15, 0x8c10b40,15, 0x8c10b80,15, 0x8c10bc0,15, 0x8c10c00,15, 0x8c10c40,15, 0x8c10c80,15, 0x8c10cc0,15, 0x8c10d00,15, 0x8c10d40,15, 0x8c10d80,15, 0x8c10dc0,15, 0x8c10e00,15, 0x8c10e40,15, 0x8c10e80,15, 0x8c10ec0,15, 0x8c10f00,15, 0x8c10f40,15, 0x8c10f80,15, 0x8c10fc0,15, 0x8c11000,15, 0x8c11040,15, 0x8c11080,15, 0x8c110c0,15, 0x8c11100,15, 0x8c11140,15, 0x8c11180,15, 0x8c111c0,15, 0x8c11200,15, 0x8c11240,15, 0x8c11280,15, 0x8c112c0,15, 0x8c11300,15, 0x8c11340,15, 0x8c11380,15, 0x8c113c0,15, 0x8c11400,15, 0x8c11440,15, 0x8c11480,15, 0x8c114c0,15, 0x8c11500,15, 0x8c11540,15, 0x8c11580,15, 0x8c115c0,15, 0x8c11600,15, 0x8c11640,15, 0x8c11680,15, 0x8c116c0,15, 0x8c11700,15, 0x8c11740,15, 0x8c11780,15, 0x8c117c0,15, 0x8c11800,15, 0x8c11840,15, 0x8c11880,15, 0x8c118c0,15, 0x8c11900,15, 0x8c11940,15, 0x8c11980,15, 0x8c119c0,15, 0x8c11a00,15, 0x8c11a40,15, 0x8c11a80,15, 0x8c11ac0,15, 0x8c11b00,15, 0x8c11b40,15, 0x8c11b80,15, 0x8c11bc0,15, 0x8c11c00,15, 0x8c11c40,15, 0x8c11c80,15, 0x8c11cc0,15, 0x8c11d00,15, 0x8c11d40,15, 0x8c11d80,15, 0x8c11dc0,15, 0x8c11e00,15, 0x8c11e40,15, 0x8c11e80,15, 0x8c11ec0,15, 0x8c11f00,15, 0x8c11f40,15, 0x8c11f80,15, 0x8c11fc0,15, 0x8c12000,15, 0x8c12040,15, 0x8c12080,15, 0x8c120c0,15, 0x8c12100,15, 0x8c12140,15, 0x8c12180,15, 0x8c121c0,15, 0x8c12200,15, 0x8c12240,15, 0x8c12280,15, 0x8c122c0,15, 0x8c12300,15, 0x8c12340,15, 0x8c12380,15, 0x8c123c0,15, 0x8c12400,15, 0x8c12440,15, 0x8c12480,15, 0x8c124c0,15, 0x8c12500,15, 0x8c12540,15, 0x8c12580,15, 0x8c125c0,15, 0x8c12600,15, 0x8c12640,15, 0x8c12680,15, 0x8c126c0,15, 0x8c12700,15, 0x8c12740,15, 0x8c12780,15, 0x8c127c0,15, 0x8c12800,15, 0x8c12840,15, 0x8c12880,15, 0x8c128c0,15, 0x8c12900,15, 0x8c12940,15, 0x8c12980,15, 0x8c129c0,15, 0x8c12a00,15, 0x8c12a40,15, 0x8c12a80,15, 0x8c12ac0,15, 0x8c12b00,15, 0x8c12b40,15, 0x8c12b80,15, 0x8c12bc0,15, 0x8c12c00,15, 0x8c12c40,15, 0x8c12c80,15, 0x8c12cc0,15, 0x8c12d00,15, 0x8c12d40,15, 0x8c12d80,15, 0x8c12dc0,15, 0x8c12e00,15, 0x8c12e40,15, 0x8c12e80,15, 0x8c12ec0,15, 0x8c12f00,15, 0x8c12f40,15, 0x8c12f80,15, 0x8c12fc0,15, 0x8c13000,15, 0x8c13040,15, 0x8c13080,15, 0x8c130c0,15, 0x8c13100,15, 0x8c13140,15, 0x8c13180,15, 0x8c131c0,15, 0x8c13200,15, 0x8c13240,15, 0x8c13280,15, 0x8c132c0,15, 0x8c13300,15, 0x8c13340,15, 0x8c13380,15, 0x8c133c0,15, 0x8c13400,15, 0x8c13440,15, 0x8c13480,15, 0x8c134c0,15, 0x8c13500,15, 0x8c13540,15, 0x8c13580,15, 0x8c135c0,15, 0x8c13600,15, 0x8c13640,15, 0x8c13680,15, 0x8c136c0,15, 0x8c13700,15, 0x8c13740,15, 0x8c13780,15, 0x8c137c0,15, 0x8c13800,15, 0x8c13840,15, 0x8c13880,15, 0x8c138c0,15, 0x8c13900,15, 0x8c13940,15, 0x8c13980,15, 0x8c139c0,15, 0x8c13a00,15, 0x8c13a40,15, 0x8c13a80,15, 0x8c13ac0,15, 0x8c13b00,15, 0x8c13b40,15, 0x8c13b80,15, 0x8c13bc0,15, 0x8c13c00,15, 0x8c13c40,15, 0x8c13c80,15, 0x8c13cc0,15, 0x8c13d00,15, 0x8c13d40,15, 0x8c13d80,15, 0x8c13dc0,15, 0x8c13e00,15, 0x8c13e40,15, 0x8c13e80,15, 0x8c13ec0,15, 0x8c13f00,15, 0x8c13f40,15, 0x8c13f80,15, 0x8c13fc0,15, 0x8c14000,15, 0x8c14040,15, 0x8c14080,15, 0x8c140c0,15, 0x8c14100,15, 0x8c14140,15, 0x8c14180,15, 0x8c141c0,15, 0x8c14200,15, 0x8c14240,15, 0x8c14280,15, 0x8c142c0,15, 0x8c14300,15, 0x8c14340,15, 0x8c14380,15, 0x8c143c0,15, 0x8c14400,15, 0x8c14440,15, 0x8c14480,15, 0x8c144c0,15, 0x8c14500,15, 0x8c14540,15, 0x8c14580,15, 0x8c145c0,15, 0x8c14600,15, 0x8c14640,15, 0x8c14680,15, 0x8c146c0,15, 0x8c14700,15, 0x8c14740,15, 0x8c14780,15, 0x8c147c0,15, 0x8c14800,15, 0x8c14840,15, 0x8c14880,15, 0x8c148c0,15, 0x8c14900,15, 0x8c14940,15, 0x8c14980,15, 0x8c149c0,15, 0x8c14a00,15, 0x8c14a40,15, 0x8c14a80,15, 0x8c14ac0,15, 0x8c14b00,15, 0x8c14b40,15, 0x8c14b80,15, 0x8c14bc0,15, 0x8c14c00,15, 0x8c14c40,15, 0x8c14c80,15, 0x8c14cc0,15, 0x8c14d00,15, 0x8c14d40,15, 0x8c14d80,15, 0x8c14dc0,15, 0x8c14e00,15, 0x8c14e40,15, 0x8c14e80,15, 0x8c14ec0,15, 0x8c14f00,15, 0x8c14f40,15, 0x8c14f80,15, 0x8c14fc0,15, 0x8c15000,15, 0x8c15040,15, 0x8c15080,15, 0x8c150c0,15, 0x8c15100,15, 0x8c15140,15, 0x8c15180,15, 0x8c151c0,15, 0x8c15200,15, 0x8c15240,15, 0x8c15280,15, 0x8c152c0,15, 0x8c15300,15, 0x8c15340,15, 0x8c15380,15, 0x8c153c0,15, 0x8c15400,15, 0x8c15440,15, 0x8c15480,15, 0x8c154c0,15, 0x8c15500,15, 0x8c15540,15, 0x8c15580,15, 0x8c155c0,15, 0x8c15600,15, 0x8c15640,15, 0x8c15680,15, 0x8c156c0,15, 0x8c15700,15, 0x8c15740,15, 0x8c15780,15, 0x8c157c0,15, 0x8c15800,15, 0x8c15840,15, 0x8c15880,15, 0x8c158c0,15, 0x8c15900,15, 0x8c15940,15, 0x8c15980,15, 0x8c159c0,15, 0x8c15a00,15, 0x8c15a40,15, 0x8c15a80,15, 0x8c15ac0,15, 0x8c15b00,15, 0x8c15b40,15, 0x8c15b80,15, 0x8c15bc0,15, 0x8c15c00,15, 0x8c15c40,15, 0x8c15c80,15, 0x8c15cc0,15, 0x8c15d00,15, 0x8c15d40,15, 0x8c15d80,15, 0x8c15dc0,15, 0x8c15e00,15, 0x8c15e40,15, 0x8c15e80,15, 0x8c15ec0,15, 0x8c15f00,15, 0x8c15f40,15, 0x8c15f80,15, 0x8c15fc0,15, 0x8c16000,15, 0x8c16040,15, 0x8c16080,15, 0x8c160c0,15, 0x8c16100,15, 0x8c16140,15, 0x8c16180,15, 0x8c161c0,15, 0x8c16200,15, 0x8c16240,15, 0x8c16280,15, 0x8c162c0,15, 0x8c16300,15, 0x8c16340,15, 0x8c16380,15, 0x8c163c0,15, 0x8c16400,15, 0x8c16440,15, 0x8c16480,15, 0x8c164c0,15, 0x8c16500,15, 0x8c16540,15, 0x8c16580,15, 0x8c165c0,15, 0x8c16600,15, 0x8c16640,15, 0x8c16680,15, 0x8c166c0,15, 0x8c16700,15, 0x8c16740,15, 0x8c16780,15, 0x8c167c0,15, 0x8c16800,15, 0x8c16840,15, 0x8c16880,15, 0x8c168c0,15, 0x8c16900,15, 0x8c16940,15, 0x8c16980,15, 0x8c169c0,15, 0x8c16a00,15, 0x8c16a40,15, 0x8c16a80,15, 0x8c16ac0,15, 0x8c16b00,15, 0x8c16b40,15, 0x8c16b80,15, 0x8c16bc0,15, 0x8c16c00,15, 0x8c16c40,15, 0x8c16c80,15, 0x8c16cc0,15, 0x8c16d00,15, 0x8c16d40,15, 0x8c16d80,15, 0x8c16dc0,15, 0x8c16e00,15, 0x8c16e40,15, 0x8c16e80,15, 0x8c16ec0,15, 0x8c16f00,15, 0x8c16f40,15, 0x8c16f80,15, 0x8c16fc0,15, 0x8c17000,15, 0x8c17040,15, 0x8c17080,15, 0x8c170c0,15, 0x8c17100,15, 0x8c17140,15, 0x8c17180,15, 0x8c171c0,15, 0x8c17200,15, 0x8c17240,15, 0x8c17280,15, 0x8c172c0,15, 0x8c17300,15, 0x8c17340,15, 0x8c17380,15, 0x8c173c0,15, 0x8c17400,15, 0x8c17440,15, 0x8c17480,15, 0x8c174c0,15, 0x8c17500,15, 0x8c17540,15, 0x8c17580,15, 0x8c175c0,15, 0x8c17600,15, 0x8c17640,15, 0x8c17680,15, 0x8c176c0,15, 0x8c17700,15, 0x8c17740,15, 0x8c17780,15, 0x8c177c0,15, 0x8c17800,15, 0x8c17840,15, 0x8c17880,15, 0x8c178c0,15, 0x8c17900,15, 0x8c17940,15, 0x8c17980,15, 0x8c179c0,15, 0x8c17a00,15, 0x8c17a40,15, 0x8c17a80,15, 0x8c17ac0,15, 0x8c17b00,15, 0x8c17b40,15, 0x8c17b80,15, 0x8c17bc0,15, 0x8c17c00,15, 0x8c17c40,15, 0x8c17c80,15, 0x8c17cc0,15, 0x8c17d00,15, 0x8c17d40,15, 0x8c17d80,15, 0x8c17dc0,15, 0x8c17e00,15, 0x8c17e40,15, 0x8c17e80,15, 0x8c17ec0,15, 0x8c17f00,15, 0x8c17f40,15, 0x8c17f80,15, 0x8c17fc0,15, 0x8c18000,15, 0x8c18040,15, 0x8c18080,15, 0x8c180c0,15, 0x8c18100,15, 0x8c18140,15, 0x8c18180,15, 0x8c181c0,15, 0x8c18200,15, 0x8c18240,15, 0x8c18280,15, 0x8c182c0,15, 0x8c18300,15, 0x8c18340,15, 0x8c18380,15, 0x8c183c0,15, 0x8c18400,15, 0x8c18440,15, 0x8c18480,15, 0x8c184c0,15, 0x8c18500,15, 0x8c18540,15, 0x8c18580,15, 0x8c185c0,15, 0x8c18600,15, 0x8c18640,15, 0x8c18680,15, 0x8c186c0,15, 0x8c18700,15, 0x8c18740,15, 0x8c18780,15, 0x8c187c0,15, 0x8c18800,15, 0x8c18840,15, 0x8c18880,15, 0x8c188c0,15, 0x8c18900,15, 0x8c18940,15, 0x8c18980,15, 0x8c189c0,15, 0x8c18a00,15, 0x8c18a40,15, 0x8c18a80,15, 0x8c18ac0,15, 0x8c18b00,15, 0x8c18b40,15, 0x8c18b80,15, 0x8c18bc0,15, 0x8c18c00,15, 0x8c18c40,15, 0x8c18c80,15, 0x8c18cc0,15, 0x8c18d00,15, 0x8c18d40,15, 0x8c18d80,15, 0x8c18dc0,15, 0x8c18e00,15, 0x8c18e40,15, 0x8c18e80,15, 0x8c18ec0,15, 0x8c18f00,15, 0x8c18f40,15, 0x8c18f80,15, 0x8c18fc0,15, 0x8c19000,15, 0x8c19040,15, 0x8c19080,15, 0x8c190c0,15, 0x8c19100,15, 0x8c19140,15, 0x8c19180,15, 0x8c191c0,15, 0x8c19200,15, 0x8c19240,15, 0x8c19280,15, 0x8c192c0,15, 0x8c19300,15, 0x8c19340,15, 0x8c19380,15, 0x8c193c0,15, 0x8c19400,15, 0x8c19440,15, 0x8c19480,15, 0x8c194c0,15, 0x8c19500,15, 0x8c19540,15, 0x8c19580,15, 0x8c195c0,15, 0x8c19600,15, 0x8c19640,15, 0x8c19680,15, 0x8c196c0,15, 0x8c19700,15, 0x8c19740,15, 0x8c19780,15, 0x8c197c0,15, 0x8c19800,15, 0x8c19840,15, 0x8c19880,15, 0x8c198c0,15, 0x8c19900,15, 0x8c19940,15, 0x8c19980,15, 0x8c199c0,15, 0x8c19a00,15, 0x8c19a40,15, 0x8c19a80,15, 0x8c19ac0,15, 0x8c19b00,15, 0x8c19b40,15, 0x8c19b80,15, 0x8c19bc0,15, 0x8c19c00,15, 0x8c19c40,15, 0x8c19c80,15, 0x8c19cc0,15, 0x8c19d00,15, 0x8c19d40,15, 0x8c19d80,15, 0x8c19dc0,15, 0x8c19e00,15, 0x8c19e40,15, 0x8c19e80,15, 0x8c19ec0,15, 0x8c19f00,15, 0x8c19f40,15, 0x8c19f80,15, 0x8c19fc0,15, 0x8c1a000,15, 0x8c1a040,15, 0x8c1a080,15, 0x8c1a0c0,15, 0x8c1a100,15, 0x8c1a140,15, 0x8c1a180,15, 0x8c1a1c0,15, 0x8c1a200,15, 0x8c1a240,15, 0x8c1a280,15, 0x8c1a2c0,15, 0x8c1a300,15, 0x8c1a340,15, 0x8c1a380,15, 0x8c1a3c0,15, 0x8c1a400,15, 0x8c1a440,15, 0x8c1a480,15, 0x8c1a4c0,15, 0x8c1a500,15, 0x8c1a540,15, 0x8c1a580,15, 0x8c1a5c0,15, 0x8c1a600,15, 0x8c1a640,15, 0x8c1a680,15, 0x8c1a6c0,15, 0x8c1a700,15, 0x8c1a740,15, 0x8c1a780,15, 0x8c1a7c0,15, 0x8c1a800,15, 0x8c1a840,15, 0x8c1a880,15, 0x8c1a8c0,15, 0x8c1a900,15, 0x8c1a940,15, 0x8c1a980,15, 0x8c1a9c0,15, 0x8c1aa00,15, 0x8c1aa40,15, 0x8c1aa80,15, 0x8c1aac0,15, 0x8c1ab00,15, 0x8c1ab40,15, 0x8c1ab80,15, 0x8c1abc0,15, 0x8c1ac00,15, 0x8c1ac40,15, 0x8c1ac80,15, 0x8c1acc0,15, 0x8c1ad00,15, 0x8c1ad40,15, 0x8c1ad80,15, 0x8c1adc0,15, 0x8c1ae00,15, 0x8c1ae40,15, 0x8c1ae80,15, 0x8c1aec0,15, 0x8c1af00,15, 0x8c1af40,15, 0x8c1af80,15, 0x8c1afc0,15, 0x8c1b000,15, 0x8c1b040,15, 0x8c1b080,15, 0x8c1b0c0,15, 0x8c1b100,15, 0x8c1b140,15, 0x8c1b180,15, 0x8c1b1c0,15, 0x8c1b200,15, 0x8c1b240,15, 0x8c1b280,15, 0x8c1b2c0,15, 0x8c1b300,15, 0x8c1b340,15, 0x8c1b380,15, 0x8c1b3c0,15, 0x8c1b400,15, 0x8c1b440,15, 0x8c1b480,15, 0x8c1b4c0,15, 0x8c1b500,15, 0x8c1b540,15, 0x8c1b580,15, 0x8c1b5c0,15, 0x8c1b600,15, 0x8c1b640,15, 0x8c1b680,15, 0x8c1b6c0,15, 0x8c1b700,15, 0x8c1b740,15, 0x8c1b780,15, 0x8c1b7c0,15, 0x8c1b800,15, 0x8c1b840,15, 0x8c1b880,15, 0x8c1b8c0,15, 0x8c1b900,15, 0x8c1b940,15, 0x8c1b980,15, 0x8c1b9c0,15, 0x8c1ba00,15, 0x8c1ba40,15, 0x8c1ba80,15, 0x8c1bac0,15, 0x8c1bb00,15, 0x8c1bb40,15, 0x8c1bb80,15, 0x8c1bbc0,15, 0x8c1bc00,15, 0x8c1bc40,15, 0x8c1bc80,15, 0x8c1bcc0,15, 0x8c1bd00,15, 0x8c1bd40,15, 0x8c1bd80,15, 0x8c1bdc0,15, 0x8c1be00,15, 0x8c1be40,15, 0x8c1be80,15, 0x8c1bec0,15, 0x8c1bf00,15, 0x8c1bf40,15, 0x8c1bf80,15, 0x8c1bfc0,15, 0x8c1c000,15, 0x8c1c040,15, 0x8c1c080,15, 0x8c1c0c0,15, 0x8c1c100,15, 0x8c1c140,15, 0x8c1c180,15, 0x8c1c1c0,15, 0x8c1c200,15, 0x8c1c240,15, 0x8c1c280,15, 0x8c1c2c0,15, 0x8c1c300,15, 0x8c1c340,15, 0x8c1c380,15, 0x8c1c3c0,15, 0x8c1c400,15, 0x8c1c440,15, 0x8c1c480,15, 0x8c1c4c0,15, 0x8c1c500,15, 0x8c1c540,15, 0x8c1c580,15, 0x8c1c5c0,15, 0x8c1c600,15, 0x8c1c640,15, 0x8c1c680,15, 0x8c1c6c0,15, 0x8c1c700,15, 0x8c1c740,15, 0x8c1c780,15, 0x8c1c7c0,15, 0x8c1c800,15, 0x8c1c840,15, 0x8c1c880,15, 0x8c1c8c0,15, 0x8c1c900,15, 0x8c1c940,15, 0x8c1c980,15, 0x8c1c9c0,15, 0x8c1ca00,15, 0x8c1ca40,15, 0x8c1ca80,15, 0x8c1cac0,15, 0x8c1cb00,15, 0x8c1cb40,15, 0x8c1cb80,15, 0x8c1cbc0,15, 0x8c1cc00,15, 0x8c1cc40,15, 0x8c1cc80,15, 0x8c1ccc0,15, 0x8c1cd00,15, 0x8c1cd40,15, 0x8c1cd80,15, 0x8c1cdc0,15, 0x8c1ce00,15, 0x8c1ce40,15, 0x8c1ce80,15, 0x8c1cec0,15, 0x8c1cf00,15, 0x8c1cf40,15, 0x8c1cf80,15, 0x8c1cfc0,15, 0x8c1d000,15, 0x8c1d040,15, 0x8c1d080,15, 0x8c1d0c0,15, 0x8c1d100,15, 0x8c1d140,15, 0x8c1d180,15, 0x8c1d1c0,15, 0x8c1d200,15, 0x8c1d240,15, 0x8c1d280,15, 0x8c1d2c0,15, 0x8c1d300,15, 0x8c1d340,15, 0x8c1d380,15, 0x8c1d3c0,15, 0x8c1d400,15, 0x8c1d440,15, 0x8c1d480,15, 0x8c1d4c0,15, 0x8c1d500,15, 0x8c1d540,15, 0x8c1d580,15, 0x8c1d5c0,15, 0x8c1d600,15, 0x8c1d640,15, 0x8c1d680,15, 0x8c1d6c0,15, 0x8c1d700,15, 0x8c1d740,15, 0x8c1d780,15, 0x8c1d7c0,15, 0x8c1d800,15, 0x8c1d840,15, 0x8c1d880,15, 0x8c1d8c0,15, 0x8c1d900,15, 0x8c1d940,15, 0x8c1d980,15, 0x8c1d9c0,15, 0x8c1da00,15, 0x8c1da40,15, 0x8c1da80,15, 0x8c1dac0,15, 0x8c1db00,15, 0x8c1db40,15, 0x8c1db80,15, 0x8c1dbc0,15, 0x8c1dc00,15, 0x8c1dc40,15, 0x8c1dc80,15, 0x8c1dcc0,15, 0x8c1dd00,15, 0x8c1dd40,15, 0x8c1dd80,15, 0x8c1ddc0,15, 0x8c1de00,15, 0x8c1de40,15, 0x8c1de80,15, 0x8c1dec0,15, 0x8c1df00,15, 0x8c1df40,15, 0x8c1df80,15, 0x8c1dfc0,15, 0x8c1e000,15, 0x8c1e040,15, 0x8c1e080,15, 0x8c1e0c0,15, 0x8c1e100,15, 0x8c1e140,15, 0x8c1e180,15, 0x8c1e1c0,15, 0x8c1e200,15, 0x8c1e240,15, 0x8c1e280,15, 0x8c1e2c0,15, 0x8c1e300,15, 0x8c1e340,15, 0x8c1e380,15, 0x8c1e3c0,15, 0x8c1e400,15, 0x8c1e440,15, 0x8c1e480,15, 0x8c1e4c0,15, 0x8c1e500,15, 0x8c1e540,15, 0x8c1e580,15, 0x8c1e5c0,15, 0x8c1e600,15, 0x8c1e640,15, 0x8c1e680,15, 0x8c1e6c0,15, 0x8c1e700,15, 0x8c1e740,15, 0x8c1e780,15, 0x8c1e7c0,15, 0x8c1e800,15, 0x8c1e840,15, 0x8c1e880,15, 0x8c1e8c0,15, 0x8c1e900,15, 0x8c1e940,15, 0x8c1e980,15, 0x8c1e9c0,15, 0x8c1ea00,15, 0x8c1ea40,15, 0x8c1ea80,15, 0x8c1eac0,15, 0x8c1eb00,15, 0x8c1eb40,15, 0x8c1eb80,15, 0x8c1ebc0,15, 0x8c1ec00,15, 0x8c1ec40,15, 0x8c1ec80,15, 0x8c1ecc0,15, 0x8c1ed00,15, 0x8c1ed40,15, 0x8c1ed80,15, 0x8c1edc0,15, 0x8c1ee00,15, 0x8c1ee40,15, 0x8c1ee80,15, 0x8c1eec0,15, 0x8c1ef00,15, 0x8c1ef40,15, 0x8c1ef80,15, 0x8c1efc0,15, 0x8c1f000,15, 0x8c1f040,15, 0x8c1f080,15, 0x8c1f0c0,15, 0x8c1f100,15, 0x8c1f140,15, 0x8c1f180,15, 0x8c1f1c0,15, 0x8c1f200,15, 0x8c1f240,15, 0x8c1f280,15, 0x8c1f2c0,15, 0x8c1f300,15, 0x8c1f340,15, 0x8c1f380,15, 0x8c1f3c0,15, 0x8c1f400,15, 0x8c1f440,15, 0x8c1f480,15, 0x8c1f4c0,15, 0x8c1f500,15, 0x8c1f540,15, 0x8c1f580,15, 0x8c1f5c0,15, 0x8c1f600,15, 0x8c1f640,15, 0x8c1f680,15, 0x8c1f6c0,15, 0x8c1f700,15, 0x8c1f740,15, 0x8c1f780,15, 0x8c1f7c0,15, 0x8c1f800,15, 0x8c1f840,15, 0x8c1f880,15, 0x8c1f8c0,15, 0x8c1f900,15, 0x8c1f940,15, 0x8c1f980,15, 0x8c1f9c0,15, 0x8c1fa00,15, 0x8c1fa40,15, 0x8c1fa80,15, 0x8c1fac0,15, 0x8c1fb00,15, 0x8c1fb40,15, 0x8c1fb80,15, 0x8c1fbc0,15, 0x8c1fc00,15, 0x8c1fc40,15, 0x8c1fc80,15, 0x8c1fcc0,15, 0x8c1fd00,15, 0x8c1fd40,15, 0x8c1fd80,15, 0x8c1fdc0,15, 0x8c1fe00,15, 0x8c1fe40,15, 0x8c1fe80,15, 0x8c1fec0,15, 0x8c1ff00,15, 0x8c1ff40,15, 0x8c1ff80,15, 0x8c1ffc0,15, 0x8c20000,15, 0x8c20040,15, 0x8c20080,15, 0x8c200c0,15, 0x8c20100,15, 0x8c20140,15, 0x8c20180,15, 0x8c201c0,15, 0x8c20200,15, 0x8c20240,15, 0x8c20280,15, 0x8c202c0,15, 0x8c20300,15, 0x8c20340,15, 0x8c20380,15, 0x8c203c0,15, 0x8c20400,15, 0x8c20440,15, 0x8c20480,15, 0x8c204c0,15, 0x8c20500,15, 0x8c20540,15, 0x8c20580,15, 0x8c205c0,15, 0x8c20600,15, 0x8c20640,15, 0x8c20680,15, 0x8c206c0,15, 0x8c20700,15, 0x8c20740,15, 0x8c20780,15, 0x8c207c0,15, 0x8c20800,15, 0x8c20840,15, 0x8c20880,15, 0x8c208c0,15, 0x8c20900,15, 0x8c20940,15, 0x8c20980,15, 0x8c209c0,15, 0x8c20a00,15, 0x8c20a40,15, 0x8c20a80,15, 0x8c20ac0,15, 0x8c20b00,15, 0x8c20b40,15, 0x8c20b80,15, 0x8c20bc0,15, 0x8c20c00,15, 0x8c20c40,15, 0x8c20c80,15, 0x8c20cc0,15, 0x8c20d00,15, 0x8c20d40,15, 0x8c20d80,15, 0x8c20dc0,15, 0x8c20e00,15, 0x8c20e40,15, 0x8c20e80,15, 0x8c20ec0,15, 0x8c20f00,15, 0x8c20f40,15, 0x8c20f80,15, 0x8c20fc0,15, 0x8c21000,15, 0x8c21040,15, 0x8c21080,15, 0x8c210c0,15, 0x8c21100,15, 0x8c21140,15, 0x8c21180,15, 0x8c211c0,15, 0x8c21200,15, 0x8c21240,15, 0x8c21280,15, 0x8c212c0,15, 0x8c21300,15, 0x8c21340,15, 0x8c21380,15, 0x8c213c0,15, 0x8c21400,15, 0x8c21440,15, 0x8c21480,15, 0x8c214c0,15, 0x8c21500,15, 0x8c21540,15, 0x8c21580,15, 0x8c215c0,15, 0x8c21600,15, 0x8c21640,15, 0x8c21680,15, 0x8c216c0,15, 0x8c21700,15, 0x8c21740,15, 0x8c21780,15, 0x8c217c0,15, 0x8c21800,15, 0x8c21840,15, 0x8c21880,15, 0x8c218c0,15, 0x8c21900,15, 0x8c21940,15, 0x8c21980,15, 0x8c219c0,15, 0x8c21a00,15, 0x8c21a40,15, 0x8c21a80,15, 0x8c21ac0,15, 0x8c21b00,15, 0x8c21b40,15, 0x8c21b80,15, 0x8c21bc0,15, 0x8c21c00,15, 0x8c21c40,15, 0x8c21c80,15, 0x8c21cc0,15, 0x8c21d00,15, 0x8c21d40,15, 0x8c21d80,15, 0x8c21dc0,15, 0x8c21e00,15, 0x8c21e40,15, 0x8c21e80,15, 0x8c21ec0,15, 0x8c21f00,15, 0x8c21f40,15, 0x8c21f80,15, 0x8c21fc0,15, 0x8c22000,15, 0x8c22040,15, 0x8c22080,15, 0x8c220c0,15, 0x8c22100,15, 0x8c22140,15, 0x8c22180,15, 0x8c221c0,15, 0x8c22200,15, 0x8c22240,15, 0x8c22280,15, 0x8c222c0,15, 0x8c22300,15, 0x8c22340,15, 0x8c22380,15, 0x8c223c0,15, 0x8c22400,15, 0x8c22440,15, 0x8c22480,15, 0x8c224c0,15, 0x8c22500,15, 0x8c22540,15, 0x8c22580,15, 0x8c225c0,15, 0x8c22600,15, 0x8c22640,15, 0x8c22680,15, 0x8c226c0,15, 0x8c22700,15, 0x8c22740,15, 0x8c22780,15, 0x8c227c0,15, 0x8c22800,15, 0x8c22840,15, 0x8c22880,15, 0x8c228c0,15, 0x8c22900,15, 0x8c22940,15, 0x8c22980,15, 0x8c229c0,15, 0x8c22a00,15, 0x8c22a40,15, 0x8c22a80,15, 0x8c22ac0,15, 0x8c22b00,15, 0x8c22b40,15, 0x8c22b80,15, 0x8c22bc0,15, 0x8c22c00,15, 0x8c22c40,15, 0x8c22c80,15, 0x8c22cc0,15, 0x8c22d00,15, 0x8c22d40,15, 0x8c22d80,15, 0x8c22dc0,15, 0x8c22e00,15, 0x8c22e40,15, 0x8c22e80,15, 0x8c22ec0,15, 0x8c22f00,15, 0x8c22f40,15, 0x8c22f80,15, 0x8c22fc0,15, 0x8c23000,15, 0x8c23040,15, 0x8c23080,15, 0x8c230c0,15, 0x8c23100,15, 0x8c23140,15, 0x8c23180,15, 0x8c231c0,15, 0x8c23200,15, 0x8c23240,15, 0x8c23280,15, 0x8c232c0,15, 0x8c23300,15, 0x8c23340,15, 0x8c23380,15, 0x8c233c0,15, 0x8c23400,15, 0x8c23440,15, 0x8c23480,15, 0x8c234c0,15, 0x8c23500,15, 0x8c23540,15, 0x8c23580,15, 0x8c235c0,15, 0x8c23600,15, 0x8c23640,15, 0x8c23680,15, 0x8c236c0,15, 0x8c23700,15, 0x8c23740,15, 0x8c23780,15, 0x8c237c0,15, 0x8c23800,15, 0x8c23840,15, 0x8c23880,15, 0x8c238c0,15, 0x8c23900,15, 0x8c23940,15, 0x8c23980,15, 0x8c239c0,15, 0x8c23a00,15, 0x8c23a40,15, 0x8c23a80,15, 0x8c23ac0,15, 0x8c23b00,15, 0x8c23b40,15, 0x8c23b80,15, 0x8c23bc0,15, 0x8c23c00,15, 0x8c23c40,15, 0x8c23c80,15, 0x8c23cc0,15, 0x8c23d00,15, 0x8c23d40,15, 0x8c23d80,15, 0x8c23dc0,15, 0x8c23e00,15, 0x8c23e40,15, 0x8c23e80,15, 0x8c23ec0,15, 0x8c23f00,15, 0x8c23f40,15, 0x8c23f80,15, 0x8c23fc0,15, 0x8c24000,15, 0x8c24040,15, 0x8c24080,15, 0x8c240c0,15, 0x8c24100,15, 0x8c24140,15, 0x8c24180,15, 0x8c241c0,15, 0x8c24200,15, 0x8c24240,15, 0x8c24280,15, 0x8c242c0,15, 0x8c24300,15, 0x8c24340,15, 0x8c24380,15, 0x8c243c0,15, 0x8c24400,15, 0x8c24440,15, 0x8c24480,15, 0x8c244c0,15, 0x8c24500,15, 0x8c24540,15, 0x8c24580,15, 0x8c245c0,15, 0x8c24600,15, 0x8c24640,15, 0x8c24680,15, 0x8c246c0,15, 0x8c24700,15, 0x8c24740,15, 0x8c24780,15, 0x8c247c0,15, 0x8c24800,15, 0x8c24840,15, 0x8c24880,15, 0x8c248c0,15, 0x8c24900,15, 0x8c24940,15, 0x8c24980,15, 0x8c249c0,15, 0x8c24a00,15, 0x8c24a40,15, 0x8c24a80,15, 0x8c24ac0,15, 0x8c24b00,15, 0x8c24b40,15, 0x8c24b80,15, 0x8c24bc0,15, 0x8c24c00,15, 0x8c24c40,15, 0x8c24c80,15, 0x8c24cc0,15, 0x8c24d00,15, 0x8c24d40,15, 0x8c24d80,15, 0x8c24dc0,15, 0x8c24e00,15, 0x8c24e40,15, 0x8c24e80,15, 0x8c24ec0,15, 0x8c24f00,15, 0x8c24f40,15, 0x8c24f80,15, 0x8c24fc0,15, 0x8c25000,15, 0x8c25040,15, 0x8c25080,15, 0x8c250c0,15, 0x8c25100,15, 0x8c25140,15, 0x8c25180,15, 0x8c251c0,15, 0x8c25200,15, 0x8c25240,15, 0x8c25280,15, 0x8c252c0,15, 0x8c25300,15, 0x8c25340,15, 0x8c25380,15, 0x8c253c0,15, 0x8c25400,15, 0x8c25440,15, 0x8c25480,15, 0x8c254c0,15, 0x8c25500,15, 0x8c25540,15, 0x8c25580,15, 0x8c255c0,15, 0x8c25600,15, 0x8c25640,15, 0x8c25680,15, 0x8c256c0,15, 0x8c25700,15, 0x8c25740,15, 0x8c25780,15, 0x8c257c0,15, 0x8c25800,15, 0x8c25840,15, 0x8c25880,15, 0x8c258c0,15, 0x8c25900,15, 0x8c25940,15, 0x8c25980,15, 0x8c259c0,15, 0x8c25a00,15, 0x8c25a40,15, 0x8c25a80,15, 0x8c25ac0,15, 0x8c25b00,15, 0x8c25b40,15, 0x8c25b80,15, 0x8c25bc0,15, 0x8c25c00,15, 0x8c25c40,15, 0x8c25c80,15, 0x8c25cc0,15, 0x8c25d00,15, 0x8c25d40,15, 0x8c25d80,15, 0x8c25dc0,15, 0x8c25e00,15, 0x8c25e40,15, 0x8c25e80,15, 0x8c25ec0,15, 0x8c25f00,15, 0x8c25f40,15, 0x8c25f80,15, 0x8c25fc0,15, 0x8c26000,15, 0x8c26040,15, 0x8c26080,15, 0x8c260c0,15, 0x8c26100,15, 0x8c26140,15, 0x8c26180,15, 0x8c261c0,15, 0x8c26200,15, 0x8c26240,15, 0x8c26280,15, 0x8c262c0,15, 0x8c26300,15, 0x8c26340,15, 0x8c26380,15, 0x8c263c0,15, 0x8c26400,15, 0x8c26440,15, 0x8c26480,15, 0x8c264c0,15, 0x8c26500,15, 0x8c26540,15, 0x8c26580,15, 0x8c265c0,15, 0x8c26600,15, 0x8c26640,15, 0x8c26680,15, 0x8c266c0,15, 0x8c26700,15, 0x8c26740,15, 0x8c26780,15, 0x8c267c0,15, 0x8c26800,15, 0x8c26840,15, 0x8c26880,15, 0x8c268c0,15, 0x8c26900,15, 0x8c26940,15, 0x8c26980,15, 0x8c269c0,15, 0x8c26a00,15, 0x8c26a40,15, 0x8c26a80,15, 0x8c26ac0,15, 0x8c26b00,15, 0x8c26b40,15, 0x8c26b80,15, 0x8c26bc0,15, 0x8c26c00,15, 0x8c26c40,15, 0x8c26c80,15, 0x8c26cc0,15, 0x8c26d00,15, 0x8c26d40,15, 0x8c26d80,15, 0x8c26dc0,15, 0x8c26e00,15, 0x8c26e40,15, 0x8c26e80,15, 0x8c26ec0,15, 0x8c26f00,15, 0x8c26f40,15, 0x8c26f80,15, 0x8c26fc0,15, 0x8c27000,15, 0x8c27040,15, 0x8c27080,15, 0x8c270c0,15, 0x8c27100,15, 0x8c27140,15, 0x8c27180,15, 0x8c271c0,15, 0x8c27200,15, 0x8c27240,15, 0x8c27280,15, 0x8c272c0,15, 0x8c27300,15, 0x8c27340,15, 0x8c27380,15, 0x8c273c0,15, 0x8c27400,15, 0x8c27440,15, 0x8c27480,15, 0x8c274c0,15, 0x8c27500,15, 0x8c27540,15, 0x8c27580,15, 0x8c275c0,15, 0x8c27600,15, 0x8c27640,15, 0x8c27680,15, 0x8c276c0,15, 0x8c27700,15, 0x8c27740,15, 0x8c27780,15, 0x8c277c0,15, 0x8c27800,15, 0x8c27840,15, 0x8c27880,15, 0x8c278c0,15, 0x8c27900,15, 0x8c27940,15, 0x8c27980,15, 0x8c279c0,15, 0x8c27a00,15, 0x8c27a40,15, 0x8c27a80,15, 0x8c27ac0,15, 0x8c27b00,15, 0x8c27b40,15, 0x8c27b80,15, 0x8c27bc0,15, 0x8c27c00,15, 0x8c27c40,15, 0x8c27c80,15, 0x8c27cc0,15, 0x8c27d00,15, 0x8c27d40,15, 0x8c27d80,15, 0x8c27dc0,15, 0x8c27e00,15, 0x8c27e40,15, 0x8c27e80,15, 0x8c27ec0,15, 0x8c27f00,15, 0x8c27f40,15, 0x8c27f80,15, 0x8c27fc0,15, 0x8c28000,15, 0x8c28040,15, 0x8c28080,15, 0x8c280c0,15, 0x8c28100,15, 0x8c28140,15, 0x8c28180,15, 0x8c281c0,15, 0x8c28200,15, 0x8c28240,15, 0x8c28280,15, 0x8c282c0,15, 0x8c28300,15, 0x8c28340,15, 0x8c28380,15, 0x8c283c0,15, 0x8c28400,15, 0x8c28440,15, 0x8c28480,15, 0x8c284c0,15, 0x8c28500,15, 0x8c28540,15, 0x8c28580,15, 0x8c285c0,15, 0x8c28600,15, 0x8c28640,15, 0x8c28680,15, 0x8c286c0,15, 0x8c28700,15, 0x8c28740,15, 0x8c28780,15, 0x8c287c0,15, 0x8c28800,15, 0x8c28840,15, 0x8c28880,15, 0x8c288c0,15, 0x8c28900,15, 0x8c28940,15, 0x8c28980,15, 0x8c289c0,15, 0x8c28a00,15, 0x8c28a40,15, 0x8c28a80,15, 0x8c28ac0,15, 0x8c28b00,15, 0x8c28b40,15, 0x8c28b80,15, 0x8c28bc0,15, 0x8c28c00,15, 0x8c28c40,15, 0x8c28c80,15, 0x8c28cc0,15, 0x8c28d00,15, 0x8c28d40,15, 0x8c28d80,15, 0x8c28dc0,15, 0x8c28e00,15, 0x8c28e40,15, 0x8c28e80,15, 0x8c28ec0,15, 0x8c28f00,15, 0x8c28f40,15, 0x8c28f80,15, 0x8c28fc0,15, 0x8c29000,15, 0x8c29040,15, 0x8c29080,15, 0x8c290c0,15, 0x8c29100,15, 0x8c29140,15, 0x8c29180,15, 0x8c291c0,15, 0x8c29200,15, 0x8c29240,15, 0x8c29280,15, 0x8c292c0,15, 0x8c29300,15, 0x8c29340,15, 0x8c29380,15, 0x8c293c0,15, 0x8c29400,15, 0x8c29440,15, 0x8c29480,15, 0x8c294c0,15, 0x8c29500,15, 0x8c29540,15, 0x8c29580,15, 0x8c295c0,15, 0x8c29600,15, 0x8c29640,15, 0x8c29680,15, 0x8c296c0,15, 0x8c29700,15, 0x8c29740,15, 0x8c29780,15, 0x8c297c0,15, 0x8c29800,15, 0x8c29840,15, 0x8c29880,15, 0x8c298c0,15, 0x8c29900,15, 0x8c29940,15, 0x8c29980,15, 0x8c299c0,15, 0x8c29a00,15, 0x8c29a40,15, 0x8c29a80,15, 0x8c29ac0,15, 0x8c29b00,15, 0x8c29b40,15, 0x8c29b80,15, 0x8c29bc0,15, 0x8c29c00,15, 0x8c29c40,15, 0x8c29c80,15, 0x8c29cc0,15, 0x8c29d00,15, 0x8c29d40,15, 0x8c29d80,15, 0x8c29dc0,15, 0x8c29e00,15, 0x8c29e40,15, 0x8c29e80,15, 0x8c29ec0,15, 0x8c29f00,15, 0x8c29f40,15, 0x8c29f80,15, 0x8c29fc0,15, 0x8c2a000,15, 0x8c2a040,15, 0x8c2a080,15, 0x8c2a0c0,15, 0x8c2a100,15, 0x8c2a140,15, 0x8c2a180,15, 0x8c2a1c0,15, 0x8c2a200,15, 0x8c2a240,15, 0x8c2a280,15, 0x8c2a2c0,15, 0x8c2a300,15, 0x8c2a340,15, 0x8c2a380,15, 0x8c2a3c0,15, 0x8c2a400,15, 0x8c2a440,15, 0x8c2a480,15, 0x8c2a4c0,15, 0x8c2a500,15, 0x8c2a540,15, 0x8c2a580,15, 0x8c2a5c0,15, 0x8c2a600,15, 0x8c2a640,15, 0x8c2a680,15, 0x8c2a6c0,15, 0x8c2a700,15, 0x8c2a740,15, 0x8c2a780,15, 0x8c2a7c0,15, 0x8c2a800,15, 0x8c2a840,15, 0x8c2a880,15, 0x8c2a8c0,15, 0x8c2a900,15, 0x8c2a940,15, 0x8c2a980,15, 0x8c2a9c0,15, 0x8c2aa00,15, 0x8c2aa40,15, 0x8c2aa80,15, 0x8c2aac0,15, 0x8c2ab00,15, 0x8c2ab40,15, 0x8c2ab80,15, 0x8c2abc0,15, 0x8c2ac00,15, 0x8c2ac40,15, 0x8c2ac80,15, 0x8c2acc0,15, 0x8c2ad00,15, 0x8c2ad40,15, 0x8c2ad80,15, 0x8c2adc0,15, 0x8c2ae00,15, 0x8c2ae40,15, 0x8c2ae80,15, 0x8c2aec0,15, 0x8c2af00,15, 0x8c2af40,15, 0x8c2af80,15, 0x8c2afc0,15, 0x8c2b000,15, 0x8c2b040,15, 0x8c2b080,15, 0x8c2b0c0,15, 0x8c2b100,15, 0x8c2b140,15, 0x8c2b180,15, 0x8c2b1c0,15, 0x8c2b200,15, 0x8c2b240,15, 0x8c2b280,15, 0x8c2b2c0,15, 0x8c2b300,15, 0x8c2b340,15, 0x8c2b380,15, 0x8c2b3c0,15, 0x8c2b400,15, 0x8c2b440,15, 0x8c2b480,15, 0x8c2b4c0,15, 0x8c2b500,15, 0x8c2b540,15, 0x8c2b580,15, 0x8c2b5c0,15, 0x8c2b600,15, 0x8c2b640,15, 0x8c2b680,15, 0x8c2b6c0,15, 0x8c2b700,15, 0x8c2b740,15, 0x8c2b780,15, 0x8c2b7c0,15, 0x8c2b800,15, 0x8c2b840,15, 0x8c2b880,15, 0x8c2b8c0,15, 0x8c2b900,15, 0x8c2b940,15, 0x8c2b980,15, 0x8c2b9c0,15, 0x8c2ba00,15, 0x8c2ba40,15, 0x8c2ba80,15, 0x8c2bac0,15, 0x8c2bb00,15, 0x8c2bb40,15, 0x8c2bb80,15, 0x8c2bbc0,15, 0x8c2bc00,15, 0x8c2bc40,15, 0x8c2bc80,15, 0x8c2bcc0,15, 0x8c2bd00,15, 0x8c2bd40,15, 0x8c2bd80,15, 0x8c2bdc0,15, 0x8c2be00,15, 0x8c2be40,15, 0x8c2be80,15, 0x8c2bec0,15, 0x8c2bf00,15, 0x8c2bf40,15, 0x8c2bf80,15, 0x8c2bfc0,15, 0x8c2c000,15, 0x8c2c040,15, 0x8c2c080,15, 0x8c2c0c0,15, 0x8c2c100,15, 0x8c2c140,15, 0x8c2c180,15, 0x8c2c1c0,15, 0x8c2c200,15, 0x8c2c240,15, 0x8c2c280,15, 0x8c2c2c0,15, 0x8c2c300,15, 0x8c2c340,15, 0x8c2c380,15, 0x8c2c3c0,15, 0x8c2c400,15, 0x8c2c440,15, 0x8c2c480,15, 0x8c2c4c0,15, 0x8c2c500,15, 0x8c2c540,15, 0x8c2c580,15, 0x8c2c5c0,15, 0x8c2c600,15, 0x8c2c640,15, 0x8c2c680,15, 0x8c2c6c0,15, 0x8c2c700,15, 0x8c2c740,15, 0x8c2c780,15, 0x8c2c7c0,15, 0x8c2c800,15, 0x8c2c840,15, 0x8c2c880,15, 0x8c2c8c0,15, 0x8c2c900,15, 0x8c2c940,15, 0x8c2c980,15, 0x8c2c9c0,15, 0x8c2ca00,15, 0x8c2ca40,15, 0x8c2ca80,15, 0x8c2cac0,15, 0x8c2cb00,15, 0x8c2cb40,15, 0x8c2cb80,15, 0x8c2cbc0,15, 0x8c2cc00,15, 0x8c2cc40,15, 0x8c2cc80,15, 0x8c2ccc0,15, 0x8c2cd00,15, 0x8c2cd40,15, 0x8c2cd80,15, 0x8c2cdc0,15, 0x8c2ce00,15, 0x8c2ce40,15, 0x8c2ce80,15, 0x8c2cec0,15, 0x8c2cf00,15, 0x8c2cf40,15, 0x8c2cf80,15, 0x8c2cfc0,15, 0x8c2d000,15, 0x8c2d040,15, 0x8c2d080,15, 0x8c2d0c0,15, 0x8c2d100,15, 0x8c2d140,15, 0x8c2d180,15, 0x8c2d1c0,15, 0x8c2d200,15, 0x8c2d240,15, 0x8c2d280,15, 0x8c2d2c0,15, 0x8c2d300,15, 0x8c2d340,15, 0x8c2d380,15, 0x8c2d3c0,15, 0x8c2d400,15, 0x8c2d440,15, 0x8c2d480,15, 0x8c2d4c0,15, 0x8c2d500,15, 0x8c2d540,15, 0x8c2d580,15, 0x8c2d5c0,15, 0x8c2d600,15, 0x8c2d640,15, 0x8c2d680,15, 0x8c2d6c0,15, 0x8c2d700,15, 0x8c2d740,15, 0x8c2d780,15, 0x8c2d7c0,15, 0x8c2d800,15, 0x8c2d840,15, 0x8c2d880,15, 0x8c2d8c0,15, 0x8c2d900,15, 0x8c2d940,15, 0x8c2d980,15, 0x8c2d9c0,15, 0x8c2da00,15, 0x8c2da40,15, 0x8c2da80,15, 0x8c2dac0,15, 0x8c2db00,15, 0x8c2db40,15, 0x8c2db80,15, 0x8c2dbc0,15, 0x8c2dc00,15, 0x8c2dc40,15, 0x8c2dc80,15, 0x8c2dcc0,15, 0x8c2dd00,15, 0x8c2dd40,15, 0x8c2dd80,15, 0x8c2ddc0,15, 0x8c2de00,15, 0x8c2de40,15, 0x8c2de80,15, 0x8c2dec0,15, 0x8c2df00,15, 0x8c2df40,15, 0x8c2df80,15, 0x8c2dfc0,15, 0x8c2e000,15, 0x8c2e040,15, 0x8c2e080,15, 0x8c2e0c0,15, 0x8c2e100,15, 0x8c2e140,15, 0x8c2e180,15, 0x8c2e1c0,15, 0x8c2e200,15, 0x8c2e240,15, 0x8c2e280,15, 0x8c2e2c0,15, 0x8c2e300,15, 0x8c2e340,15, 0x8c2e380,15, 0x8c2e3c0,15, 0x8c2e400,15, 0x8c2e440,15, 0x8c2e480,15, 0x8c2e4c0,15, 0x8c2e500,15, 0x8c2e540,15, 0x8c2e580,15, 0x8c2e5c0,15, 0x8c2e600,15, 0x8c2e640,15, 0x8c2e680,15, 0x8c2e6c0,15, 0x8c2e700,15, 0x8c2e740,15, 0x8c2e780,15, 0x8c2e7c0,15, 0x8c2e800,15, 0x8c2e840,15, 0x8c2e880,15, 0x8c2e8c0,15, 0x8c2e900,15, 0x8c2e940,15, 0x8c2e980,15, 0x8c2e9c0,15, 0x8c2ea00,15, 0x8c2ea40,15, 0x8c2ea80,15, 0x8c2eac0,15, 0x8c2eb00,15, 0x8c2eb40,15, 0x8c2eb80,15, 0x8c2ebc0,15, 0x8c2ec00,15, 0x8c2ec40,15, 0x8c2ec80,15, 0x8c2ecc0,15, 0x8c2ed00,15, 0x8c2ed40,15, 0x8c2ed80,15, 0x8c2edc0,15, 0x8c2ee00,15, 0x8c2ee40,15, 0x8c2ee80,15, 0x8c2eec0,15, 0x8c2ef00,15, 0x8c2ef40,15, 0x8c2ef80,15, 0x8c2efc0,15, 0x8c2f000,15, 0x8c2f040,15, 0x8c2f080,15, 0x8c2f0c0,15, 0x8c2f100,15, 0x8c2f140,15, 0x8c2f180,15, 0x8c2f1c0,15, 0x8c2f200,15, 0x8c2f240,15, 0x8c2f280,15, 0x8c2f2c0,15, 0x8c2f300,15, 0x8c2f340,15, 0x8c2f380,15, 0x8c2f3c0,15, 0x8c2f400,15, 0x8c2f440,15, 0x8c2f480,15, 0x8c2f4c0,15, 0x8c2f500,15, 0x8c2f540,15, 0x8c2f580,15, 0x8c2f5c0,15, 0x8c2f600,15, 0x8c2f640,15, 0x8c2f680,15, 0x8c2f6c0,15, 0x8c2f700,15, 0x8c2f740,15, 0x8c2f780,15, 0x8c2f7c0,15, 0x8c2f800,15, 0x8c2f840,15, 0x8c2f880,15, 0x8c2f8c0,15, 0x8c2f900,15, 0x8c2f940,15, 0x8c2f980,15, 0x8c2f9c0,15, 0x8c2fa00,15, 0x8c2fa40,15, 0x8c2fa80,15, 0x8c2fac0,15, 0x8c2fb00,15, 0x8c2fb40,15, 0x8c2fb80,15, 0x8c2fbc0,15, 0x8c2fc00,15, 0x8c2fc40,15, 0x8c2fc80,15, 0x8c2fcc0,15, 0x8c2fd00,15, 0x8c2fd40,15, 0x8c2fd80,15, 0x8c2fdc0,15, 0x8c2fe00,15, 0x8c2fe40,15, 0x8c2fe80,15, 0x8c2fec0,15, 0x8c2ff00,15, 0x8c2ff40,15, 0x8c2ff80,15, 0x8c2ffc0,15, 0x8c30000,15, 0x8c30040,15, 0x8c30080,15, 0x8c300c0,15, 0x8c30100,15, 0x8c30140,15, 0x8c30180,15, 0x8c301c0,15, 0x8c30200,15, 0x8c30240,15, 0x8c30280,15, 0x8c302c0,15, 0x8c30300,15, 0x8c30340,15, 0x8c30380,15, 0x8c303c0,15, 0x8c30400,15, 0x8c30440,15, 0x8c30480,15, 0x8c304c0,15, 0x8c30500,15, 0x8c30540,15, 0x8c30580,15, 0x8c305c0,15, 0x8c30600,15, 0x8c30640,15, 0x8c30680,15, 0x8c306c0,15, 0x8c30700,15, 0x8c30740,15, 0x8c30780,15, 0x8c307c0,15, 0x8c30800,15, 0x8c30840,15, 0x8c30880,15, 0x8c308c0,15, 0x8c30900,15, 0x8c30940,15, 0x8c30980,15, 0x8c309c0,15, 0x8c30a00,15, 0x8c30a40,15, 0x8c30a80,15, 0x8c30ac0,15, 0x8c30b00,15, 0x8c30b40,15, 0x8c30b80,15, 0x8c30bc0,15, 0x8c30c00,15, 0x8c30c40,15, 0x8c30c80,15, 0x8c30cc0,15, 0x8c30d00,15, 0x8c30d40,15, 0x8c30d80,15, 0x8c30dc0,15, 0x8c30e00,15, 0x8c30e40,15, 0x8c30e80,15, 0x8c30ec0,15, 0x8c30f00,15, 0x8c30f40,15, 0x8c30f80,15, 0x8c30fc0,15, 0x8c31000,15, 0x8c31040,15, 0x8c31080,15, 0x8c310c0,15, 0x8c31100,15, 0x8c31140,15, 0x8c31180,15, 0x8c311c0,15, 0x8c31200,15, 0x8c31240,15, 0x8c31280,15, 0x8c312c0,15, 0x8c31300,15, 0x8c31340,15, 0x8c31380,15, 0x8c313c0,15, 0x8c31400,15, 0x8c31440,15, 0x8c31480,15, 0x8c314c0,15, 0x8c31500,15, 0x8c31540,15, 0x8c31580,15, 0x8c315c0,15, 0x8c31600,15, 0x8c31640,15, 0x8c31680,15, 0x8c316c0,15, 0x8c31700,15, 0x8c31740,15, 0x8c31780,15, 0x8c317c0,15, 0x8c31800,15, 0x8c31840,15, 0x8c31880,15, 0x8c318c0,15, 0x8c31900,15, 0x8c31940,15, 0x8c31980,15, 0x8c319c0,15, 0x8c31a00,15, 0x8c31a40,15, 0x8c31a80,15, 0x8c31ac0,15, 0x8c31b00,15, 0x8c31b40,15, 0x8c31b80,15, 0x8c31bc0,15, 0x8c31c00,15, 0x8c31c40,15, 0x8c31c80,15, 0x8c31cc0,15, 0x8c31d00,15, 0x8c31d40,15, 0x8c31d80,15, 0x8c31dc0,15, 0x8c31e00,15, 0x8c31e40,15, 0x8c31e80,15, 0x8c31ec0,15, 0x8c31f00,15, 0x8c31f40,15, 0x8c31f80,15, 0x8c31fc0,15, 0x8c32000,15, 0x8c32040,15, 0x8c32080,15, 0x8c320c0,15, 0x8c32100,15, 0x8c32140,15, 0x8c32180,15, 0x8c321c0,15, 0x8c32200,15, 0x8c32240,15, 0x8c32280,15, 0x8c322c0,15, 0x8c32300,15, 0x8c32340,15, 0x8c32380,15, 0x8c323c0,15, 0x8c32400,15, 0x8c32440,15, 0x8c32480,15, 0x8c324c0,15, 0x8c32500,15, 0x8c32540,15, 0x8c32580,15, 0x8c325c0,15, 0x8c32600,15, 0x8c32640,15, 0x8c32680,15, 0x8c326c0,15, 0x8c32700,15, 0x8c32740,15, 0x8c32780,15, 0x8c327c0,15, 0x8c32800,15, 0x8c32840,15, 0x8c32880,15, 0x8c328c0,15, 0x8c32900,15, 0x8c32940,15, 0x8c32980,15, 0x8c329c0,15, 0x8c32a00,15, 0x8c32a40,15, 0x8c32a80,15, 0x8c32ac0,15, 0x8c32b00,15, 0x8c32b40,15, 0x8c32b80,15, 0x8c32bc0,15, 0x8c32c00,15, 0x8c32c40,15, 0x8c32c80,15, 0x8c32cc0,15, 0x8c32d00,15, 0x8c32d40,15, 0x8c32d80,15, 0x8c32dc0,15, 0x8c32e00,15, 0x8c32e40,15, 0x8c32e80,15, 0x8c32ec0,15, 0x8c32f00,15, 0x8c32f40,15, 0x8c32f80,15, 0x8c32fc0,15, 0x8c33000,15, 0x8c33040,15, 0x8c33080,15, 0x8c330c0,15, 0x8c33100,15, 0x8c33140,15, 0x8c33180,15, 0x8c331c0,15, 0x8c33200,15, 0x8c33240,15, 0x8c33280,15, 0x8c332c0,15, 0x8c33300,15, 0x8c33340,15, 0x8c33380,15, 0x8c333c0,15, 0x8c33400,15, 0x8c33440,15, 0x8c33480,15, 0x8c334c0,15, 0x8c33500,15, 0x8c33540,15, 0x8c33580,15, 0x8c335c0,15, 0x8c33600,15, 0x8c33640,15, 0x8c33680,15, 0x8c336c0,15, 0x8c33700,15, 0x8c33740,15, 0x8c33780,15, 0x8c337c0,15, 0x8c33800,15, 0x8c33840,15, 0x8c33880,15, 0x8c338c0,15, 0x8c33900,15, 0x8c33940,15, 0x8c33980,15, 0x8c339c0,15, 0x8c33a00,15, 0x8c33a40,15, 0x8c33a80,15, 0x8c33ac0,15, 0x8c33b00,15, 0x8c33b40,15, 0x8c33b80,15, 0x8c33bc0,15, 0x8c33c00,15, 0x8c33c40,15, 0x8c33c80,15, 0x8c33cc0,15, 0x8c33d00,15, 0x8c33d40,15, 0x8c33d80,15, 0x8c33dc0,15, 0x8c33e00,15, 0x8c33e40,15, 0x8c33e80,15, 0x8c33ec0,15, 0x8c33f00,15, 0x8c33f40,15, 0x8c33f80,15, 0x8c33fc0,15, 0x8c34000,15, 0x8c34040,15, 0x8c34080,15, 0x8c340c0,15, 0x8c34100,15, 0x8c34140,15, 0x8c34180,15, 0x8c341c0,15, 0x8c34200,15, 0x8c34240,15, 0x8c34280,15, 0x8c342c0,15, 0x8c34300,15, 0x8c34340,15, 0x8c34380,15, 0x8c343c0,15, 0x8c34400,15, 0x8c34440,15, 0x8c34480,15, 0x8c344c0,15, 0x8c34500,15, 0x8c34540,15, 0x8c34580,15, 0x8c345c0,15, 0x8c34600,15, 0x8c34640,15, 0x8c34680,15, 0x8c346c0,15, 0x8c34700,15, 0x8c34740,15, 0x8c34780,15, 0x8c347c0,15, 0x8c34800,15, 0x8c34840,15, 0x8c34880,15, 0x8c348c0,15, 0x8c34900,15, 0x8c34940,15, 0x8c34980,15, 0x8c349c0,15, 0x8c34a00,15, 0x8c34a40,15, 0x8c34a80,15, 0x8c34ac0,15, 0x8c34b00,15, 0x8c34b40,15, 0x8c34b80,15, 0x8c34bc0,15, 0x8c34c00,15, 0x8c34c40,15, 0x8c34c80,15, 0x8c34cc0,15, 0x8c34d00,15, 0x8c34d40,15, 0x8c34d80,15, 0x8c34dc0,15, 0x8c34e00,15, 0x8c34e40,15, 0x8c34e80,15, 0x8c34ec0,15, 0x8c34f00,15, 0x8c34f40,15, 0x8c34f80,15, 0x8c34fc0,15, 0x8c35000,15, 0x8c35040,15, 0x8c35080,15, 0x8c350c0,15, 0x8c35100,15, 0x8c35140,15, 0x8c35180,15, 0x8c351c0,15, 0x8c35200,15, 0x8c35240,15, 0x8c35280,15, 0x8c352c0,15, 0x8c35300,15, 0x8c35340,15, 0x8c35380,15, 0x8c353c0,15, 0x8c35400,15, 0x8c35440,15, 0x8c35480,15, 0x8c354c0,15, 0x8c35500,15, 0x8c35540,15, 0x8c35580,15, 0x8c355c0,15, 0x8c35600,15, 0x8c35640,15, 0x8c35680,15, 0x8c356c0,15, 0x8c35700,15, 0x8c35740,15, 0x8c35780,15, 0x8c357c0,15, 0x8c35800,15, 0x8c35840,15, 0x8c35880,15, 0x8c358c0,15, 0x8c35900,15, 0x8c35940,15, 0x8c35980,15, 0x8c359c0,15, 0x8c35a00,15, 0x8c35a40,15, 0x8c35a80,15, 0x8c35ac0,15, 0x8c35b00,15, 0x8c35b40,15, 0x8c35b80,15, 0x8c35bc0,15, 0x8c35c00,15, 0x8c35c40,15, 0x8c35c80,15, 0x8c35cc0,15, 0x8c35d00,15, 0x8c35d40,15, 0x8c35d80,15, 0x8c35dc0,15, 0x8c35e00,15, 0x8c35e40,15, 0x8c35e80,15, 0x8c35ec0,15, 0x8c35f00,15, 0x8c35f40,15, 0x8c35f80,15, 0x8c35fc0,15, 0x8c36000,15, 0x8c36040,15, 0x8c36080,15, 0x8c360c0,15, 0x8c36100,15, 0x8c36140,15, 0x8c36180,15, 0x8c361c0,15, 0x8c36200,15, 0x8c36240,15, 0x8c36280,15, 0x8c362c0,15, 0x8c36300,15, 0x8c36340,15, 0x8c36380,15, 0x8c363c0,15, 0x8c36400,15, 0x8c36440,15, 0x8c36480,15, 0x8c364c0,15, 0x8c36500,15, 0x8c36540,15, 0x8c36580,15, 0x8c365c0,15, 0x8c36600,15, 0x8c36640,15, 0x8c36680,15, 0x8c366c0,15, 0x8c36700,15, 0x8c36740,15, 0x8c36780,15, 0x8c367c0,15, 0x8c36800,15, 0x8c36840,15, 0x8c36880,15, 0x8c368c0,15, 0x8c36900,15, 0x8c36940,15, 0x8c36980,15, 0x8c369c0,15, 0x8c36a00,15, 0x8c36a40,15, 0x8c36a80,15, 0x8c36ac0,15, 0x8c36b00,15, 0x8c36b40,15, 0x8c36b80,15, 0x8c36bc0,15, 0x8c36c00,15, 0x8c36c40,15, 0x8c36c80,15, 0x8c36cc0,15, 0x8c36d00,15, 0x8c36d40,15, 0x8c36d80,15, 0x8c36dc0,15, 0x8c36e00,15, 0x8c36e40,15, 0x8c36e80,15, 0x8c36ec0,15, 0x8c36f00,15, 0x8c36f40,15, 0x8c36f80,15, 0x8c36fc0,15, 0x8c37000,15, 0x8c37040,15, 0x8c37080,15, 0x8c370c0,15, 0x8c37100,15, 0x8c37140,15, 0x8c37180,15, 0x8c371c0,15, 0x8c37200,15, 0x8c37240,15, 0x8c37280,15, 0x8c372c0,15, 0x8c37300,15, 0x8c37340,15, 0x8c37380,15, 0x8c373c0,15, 0x8c37400,15, 0x8c37440,15, 0x8c37480,15, 0x8c374c0,15, 0x8c37500,15, 0x8c37540,15, 0x8c37580,15, 0x8c375c0,15, 0x8c37600,15, 0x8c37640,15, 0x8c37680,15, 0x8c376c0,15, 0x8c37700,15, 0x8c37740,15, 0x8c37780,15, 0x8c377c0,15, 0x8c37800,15, 0x8c37840,15, 0x8c37880,15, 0x8c378c0,15, 0x8c37900,15, 0x8c37940,15, 0x8c37980,15, 0x8c379c0,15, 0x8c37a00,15, 0x8c37a40,15, 0x8c37a80,15, 0x8c37ac0,15, 0x8c37b00,15, 0x8c37b40,15, 0x8c37b80,15, 0x8c37bc0,15, 0x8c37c00,15, 0x8c37c40,15, 0x8c37c80,15, 0x8c37cc0,15, 0x8c37d00,15, 0x8c37d40,15, 0x8c37d80,15, 0x8c37dc0,15, 0x8c37e00,15, 0x8c37e40,15, 0x8c37e80,15, 0x8c37ec0,15, 0x8c37f00,15, 0x8c37f40,15, 0x8c37f80,15, 0x8c37fc0,15, 0x8c38000,15, 0x8c38040,15, 0x8c38080,15, 0x8c380c0,15, 0x8c38100,15, 0x8c38140,15, 0x8c38180,15, 0x8c381c0,15, 0x8c38200,15, 0x8c38240,15, 0x8c38280,15, 0x8c382c0,15, 0x8c38300,15, 0x8c38340,15, 0x8c38380,15, 0x8c383c0,15, 0x8c38400,15, 0x8c38440,15, 0x8c38480,15, 0x8c384c0,15, 0x8c38500,15, 0x8c38540,15, 0x8c38580,15, 0x8c385c0,15, 0x8c38600,15, 0x8c38640,15, 0x8c38680,15, 0x8c386c0,15, 0x8c38700,15, 0x8c38740,15, 0x8c38780,15, 0x8c387c0,15, 0x8c38800,15, 0x8c38840,15, 0x8c38880,15, 0x8c388c0,15, 0x8c38900,15, 0x8c38940,15, 0x8c38980,15, 0x8c389c0,15, 0x8c38a00,15, 0x8c38a40,15, 0x8c38a80,15, 0x8c38ac0,15, 0x8c38b00,15, 0x8c38b40,15, 0x8c38b80,15, 0x8c38bc0,15, 0x8c38c00,15, 0x8c38c40,15, 0x8c38c80,15, 0x8c38cc0,15, 0x8c38d00,15, 0x8c38d40,15, 0x8c38d80,15, 0x8c38dc0,15, 0x8c38e00,15, 0x8c38e40,15, 0x8c38e80,15, 0x8c38ec0,15, 0x8c38f00,15, 0x8c38f40,15, 0x8c38f80,15, 0x8c38fc0,15, 0x8c39000,15, 0x8c39040,15, 0x8c39080,15, 0x8c390c0,15, 0x8c39100,15, 0x8c39140,15, 0x8c39180,15, 0x8c391c0,15, 0x8c39200,15, 0x8c39240,15, 0x8c39280,15, 0x8c392c0,15, 0x8c39300,15, 0x8c39340,15, 0x8c39380,15, 0x8c393c0,15, 0x8c39400,15, 0x8c39440,15, 0x8c39480,15, 0x8c394c0,15, 0x8c39500,15, 0x8c39540,15, 0x8c39580,15, 0x8c395c0,15, 0x8c39600,15, 0x8c39640,15, 0x8c39680,15, 0x8c396c0,15, 0x8c39700,15, 0x8c39740,15, 0x8c39780,15, 0x8c397c0,15, 0x8c39800,15, 0x8c39840,15, 0x8c39880,15, 0x8c398c0,15, 0x8c39900,15, 0x8c39940,15, 0x8c39980,15, 0x8c399c0,15, 0x8c39a00,15, 0x8c39a40,15, 0x8c39a80,15, 0x8c39ac0,15, 0x8c39b00,15, 0x8c39b40,15, 0x8c39b80,15, 0x8c39bc0,15, 0x8c39c00,15, 0x8c39c40,15, 0x8c39c80,15, 0x8c39cc0,15, 0x8c39d00,15, 0x8c39d40,15, 0x8c39d80,15, 0x8c39dc0,15, 0x8c39e00,15, 0x8c39e40,15, 0x8c39e80,15, 0x8c39ec0,15, 0x8c39f00,15, 0x8c39f40,15, 0x8c39f80,15, 0x8c39fc0,15, 0x8c3a000,15, 0x8c3a040,15, 0x8c3a080,15, 0x8c3a0c0,15, 0x8c3a100,15, 0x8c3a140,15, 0x8c3a180,15, 0x8c3a1c0,15, 0x8c3a200,15, 0x8c3a240,15, 0x8c3a280,15, 0x8c3a2c0,15, 0x8c3a300,15, 0x8c3a340,15, 0x8c3a380,15, 0x8c3a3c0,15, 0x8c3a400,15, 0x8c3a440,15, 0x8c3a480,15, 0x8c3a4c0,15, 0x8c3a500,15, 0x8c3a540,15, 0x8c3a580,15, 0x8c3a5c0,15, 0x8c3a600,15, 0x8c3a640,15, 0x8c3a680,15, 0x8c3a6c0,15, 0x8c3a700,15, 0x8c3a740,15, 0x8c3a780,15, 0x8c3a7c0,15, 0x8c3a800,15, 0x8c3a840,15, 0x8c3a880,15, 0x8c3a8c0,15, 0x8c3a900,15, 0x8c3a940,15, 0x8c3a980,15, 0x8c3a9c0,15, 0x8c3aa00,15, 0x8c3aa40,15, 0x8c3aa80,15, 0x8c3aac0,15, 0x8c3ab00,15, 0x8c3ab40,15, 0x8c3ab80,15, 0x8c3abc0,15, 0x8c3ac00,15, 0x8c3ac40,15, 0x8c3ac80,15, 0x8c3acc0,15, 0x8c3ad00,15, 0x8c3ad40,15, 0x8c3ad80,15, 0x8c3adc0,15, 0x8c3ae00,15, 0x8c3ae40,15, 0x8c3ae80,15, 0x8c3aec0,15, 0x8c3af00,15, 0x8c3af40,15, 0x8c3af80,15, 0x8c3afc0,15, 0x8c3b000,15, 0x8c3b040,15, 0x8c3b080,15, 0x8c3b0c0,15, 0x8c3b100,15, 0x8c3b140,15, 0x8c3b180,15, 0x8c3b1c0,15, 0x8c3b200,15, 0x8c3b240,15, 0x8c3b280,15, 0x8c3b2c0,15, 0x8c3b300,15, 0x8c3b340,15, 0x8c3b380,15, 0x8c3b3c0,15, 0x8c3b400,15, 0x8c3b440,15, 0x8c3b480,15, 0x8c3b4c0,15, 0x8c3b500,15, 0x8c3b540,15, 0x8c3b580,15, 0x8c3b5c0,15, 0x8c3b600,15, 0x8c3b640,15, 0x8c3b680,15, 0x8c3b6c0,15, 0x8c3b700,15, 0x8c3b740,15, 0x8c3b780,15, 0x8c3b7c0,15, 0x8c3b800,15, 0x8c3b840,15, 0x8c3b880,15, 0x8c3b8c0,15, 0x8c3b900,15, 0x8c3b940,15, 0x8c3b980,15, 0x8c3b9c0,15, 0x8c3ba00,15, 0x8c3ba40,15, 0x8c3ba80,15, 0x8c3bac0,15, 0x8c3bb00,15, 0x8c3bb40,15, 0x8c3bb80,15, 0x8c3bbc0,15, 0x8c3bc00,15, 0x8c3bc40,15, 0x8c3bc80,15, 0x8c3bcc0,15, 0x8c3bd00,15, 0x8c3bd40,15, 0x8c3bd80,15, 0x8c3bdc0,15, 0x8c3be00,15, 0x8c3be40,15, 0x8c3be80,15, 0x8c3bec0,15, 0x8c3bf00,15, 0x8c3bf40,15, 0x8c3bf80,15, 0x8c3bfc0,15, 0x8c3c000,15, 0x8c3c040,15, 0x8c3c080,15, 0x8c3c0c0,15, 0x8c3c100,15, 0x8c3c140,15, 0x8c3c180,15, 0x8c3c1c0,15, 0x8c3c200,15, 0x8c3c240,15, 0x8c3c280,15, 0x8c3c2c0,15, 0x8c3c300,15, 0x8c3c340,15, 0x8c3c380,15, 0x8c3c3c0,15, 0x8c3c400,15, 0x8c3c440,15, 0x8c3c480,15, 0x8c3c4c0,15, 0x8c3c500,15, 0x8c3c540,15, 0x8c3c580,15, 0x8c3c5c0,15, 0x8c3c600,15, 0x8c3c640,15, 0x8c3c680,15, 0x8c3c6c0,15, 0x8c3c700,15, 0x8c3c740,15, 0x8c3c780,15, 0x8c3c7c0,15, 0x8c3c800,15, 0x8c3c840,15, 0x8c3c880,15, 0x8c3c8c0,15, 0x8c3c900,15, 0x8c3c940,15, 0x8c3c980,15, 0x8c3c9c0,15, 0x8c3ca00,15, 0x8c3ca40,15, 0x8c3ca80,15, 0x8c3cac0,15, 0x8c3cb00,15, 0x8c3cb40,15, 0x8c3cb80,15, 0x8c3cbc0,15, 0x8c3cc00,15, 0x8c3cc40,15, 0x8c3cc80,15, 0x8c3ccc0,15, 0x8c3cd00,15, 0x8c3cd40,15, 0x8c3cd80,15, 0x8c3cdc0,15, 0x8c3ce00,15, 0x8c3ce40,15, 0x8c3ce80,15, 0x8c3cec0,15, 0x8c3cf00,15, 0x8c3cf40,15, 0x8c3cf80,15, 0x8c3cfc0,15, 0x8c3d000,15, 0x8c3d040,15, 0x8c3d080,15, 0x8c3d0c0,15, 0x8c3d100,15, 0x8c3d140,15, 0x8c3d180,15, 0x8c3d1c0,15, 0x8c3d200,15, 0x8c3d240,15, 0x8c3d280,15, 0x8c3d2c0,15, 0x8c3d300,15, 0x8c3d340,15, 0x8c3d380,15, 0x8c3d3c0,15, 0x8c3d400,15, 0x8c3d440,15, 0x8c3d480,15, 0x8c3d4c0,15, 0x8c3d500,15, 0x8c3d540,15, 0x8c3d580,15, 0x8c3d5c0,15, 0x8c3d600,15, 0x8c3d640,15, 0x8c3d680,15, 0x8c3d6c0,15, 0x8c3d700,15, 0x8c3d740,15, 0x8c3d780,15, 0x8c3d7c0,15, 0x8c3d800,15, 0x8c3d840,15, 0x8c3d880,15, 0x8c3d8c0,15, 0x8c3d900,15, 0x8c3d940,15, 0x8c3d980,15, 0x8c3d9c0,15, 0x8c3da00,15, 0x8c3da40,15, 0x8c3da80,15, 0x8c3dac0,15, 0x8c3db00,15, 0x8c3db40,15, 0x8c3db80,15, 0x8c3dbc0,15, 0x8c3dc00,15, 0x8c3dc40,15, 0x8c3dc80,15, 0x8c3dcc0,15, 0x8c3dd00,15, 0x8c3dd40,15, 0x8c3dd80,15, 0x8c3ddc0,15, 0x8c3de00,15, 0x8c3de40,15, 0x8c3de80,15, 0x8c3dec0,15, 0x8c3df00,15, 0x8c3df40,15, 0x8c3df80,15, 0x8c3dfc0,15, 0x8c3e000,15, 0x8c3e040,15, 0x8c3e080,15, 0x8c3e0c0,15, 0x8c3e100,15, 0x8c3e140,15, 0x8c3e180,15, 0x8c3e1c0,15, 0x8c3e200,15, 0x8c3e240,15, 0x8c3e280,15, 0x8c3e2c0,15, 0x8c3e300,15, 0x8c3e340,15, 0x8c3e380,15, 0x8c3e3c0,15, 0x8c3e400,15, 0x8c3e440,15, 0x8c3e480,15, 0x8c3e4c0,15, 0x8c3e500,15, 0x8c3e540,15, 0x8c3e580,15, 0x8c3e5c0,15, 0x8c3e600,15, 0x8c3e640,15, 0x8c3e680,15, 0x8c3e6c0,15, 0x8c3e700,15, 0x8c3e740,15, 0x8c3e780,15, 0x8c3e7c0,15, 0x8c3e800,15, 0x8c3e840,15, 0x8c3e880,15, 0x8c3e8c0,15, 0x8c3e900,15, 0x8c3e940,15, 0x8c3e980,15, 0x8c3e9c0,15, 0x8c3ea00,15, 0x8c3ea40,15, 0x8c3ea80,15, 0x8c3eac0,15, 0x8c3eb00,15, 0x8c3eb40,15, 0x8c3eb80,15, 0x8c3ebc0,15, 0x8c3ec00,15, 0x8c3ec40,15, 0x8c3ec80,15, 0x8c3ecc0,15, 0x8c3ed00,15, 0x8c3ed40,15, 0x8c3ed80,15, 0x8c3edc0,15, 0x8c3ee00,15, 0x8c3ee40,15, 0x8c3ee80,15, 0x8c3eec0,15, 0x8c3ef00,15, 0x8c3ef40,15, 0x8c3ef80,15, 0x8c3efc0,15, 0x8c3f000,15, 0x8c3f040,15, 0x8c3f080,15, 0x8c3f0c0,15, 0x8c3f100,15, 0x8c3f140,15, 0x8c3f180,15, 0x8c3f1c0,15, 0x8c3f200,15, 0x8c3f240,15, 0x8c3f280,15, 0x8c3f2c0,15, 0x8c3f300,15, 0x8c3f340,15, 0x8c3f380,15, 0x8c3f3c0,15, 0x8c3f400,15, 0x8c3f440,15, 0x8c3f480,15, 0x8c3f4c0,15, 0x8c3f500,15, 0x8c3f540,15, 0x8c3f580,15, 0x8c3f5c0,15, 0x8c3f600,15, 0x8c3f640,15, 0x8c3f680,15, 0x8c3f6c0,15, 0x8c3f700,15, 0x8c3f740,15, 0x8c3f780,15, 0x8c3f7c0,15, 0x8c3f800,15, 0x8c3f840,15, 0x8c3f880,15, 0x8c3f8c0,15, 0x8c3f900,15, 0x8c3f940,15, 0x8c3f980,15, 0x8c3f9c0,15, 0x8c3fa00,15, 0x8c3fa40,15, 0x8c3fa80,15, 0x8c3fac0,15, 0x8c3fb00,15, 0x8c3fb40,15, 0x8c3fb80,15, 0x8c3fbc0,15, 0x8c3fc00,15, 0x8c3fc40,15, 0x8c3fc80,15, 0x8c3fcc0,15, 0x8c3fd00,15, 0x8c3fd40,15, 0x8c3fd80,15, 0x8c3fdc0,15, 0x8c3fe00,15, 0x8c3fe40,15, 0x8c3fe80,15, 0x8c3fec0,15, 0x8c3ff00,15, 0x8c3ff40,15, 0x8c3ff80,15, 0x8c3ffc0,15, 0x8c40000,15, 0x8c40040,15, 0x8c40080,15, 0x8c400c0,15, 0x8c40100,15, 0x8c40140,15, 0x8c40180,15, 0x8c401c0,15, 0x8c40200,15, 0x8c40240,15, 0x8c40280,15, 0x8c402c0,15, 0x8c40300,15, 0x8c40340,15, 0x8c40380,15, 0x8c403c0,15, 0x8c40400,15, 0x8c40440,15, 0x8c40480,15, 0x8c404c0,15, 0x8c40500,15, 0x8c40540,15, 0x8c40580,15, 0x8c405c0,15, 0x8c40600,15, 0x8c40640,15, 0x8c40680,15, 0x8c406c0,15, 0x8c40700,15, 0x8c40740,15, 0x8c40780,15, 0x8c407c0,15, 0x8c40800,15, 0x8c40840,15, 0x8c40880,15, 0x8c408c0,15, 0x8c40900,15, 0x8c40940,15, 0x8c40980,15, 0x8c409c0,15, 0x8c40a00,15, 0x8c40a40,15, 0x8c40a80,15, 0x8c40ac0,15, 0x8c40b00,15, 0x8c40b40,15, 0x8c40b80,15, 0x8c40bc0,15, 0x8c40c00,15, 0x8c40c40,15, 0x8c40c80,15, 0x8c40cc0,15, 0x8c40d00,15, 0x8c40d40,15, 0x8c40d80,15, 0x8c40dc0,15, 0x8c40e00,15, 0x8c40e40,15, 0x8c40e80,15, 0x8c40ec0,15, 0x8c40f00,15, 0x8c40f40,15, 0x8c40f80,15, 0x8c40fc0,15, 0x8c41000,15, 0x8c41040,15, 0x8c41080,15, 0x8c410c0,15, 0x8c41100,15, 0x8c41140,15, 0x8c41180,15, 0x8c411c0,15, 0x8c41200,15, 0x8c41240,15, 0x8c41280,15, 0x8c412c0,15, 0x8c41300,15, 0x8c41340,15, 0x8c41380,15, 0x8c413c0,15, 0x8c41400,15, 0x8c41440,15, 0x8c41480,15, 0x8c414c0,15, 0x8c41500,15, 0x8c41540,15, 0x8c41580,15, 0x8c415c0,15, 0x8c41600,15, 0x8c41640,15, 0x8c41680,15, 0x8c416c0,15, 0x8c41700,15, 0x8c41740,15, 0x8c41780,15, 0x8c417c0,15, 0x8c41800,15, 0x8c41840,15, 0x8c41880,15, 0x8c418c0,15, 0x8c41900,15, 0x8c41940,15, 0x8c41980,15, 0x8c419c0,15, 0x8c41a00,15, 0x8c41a40,15, 0x8c41a80,15, 0x8c41ac0,15, 0x8c41b00,15, 0x8c41b40,15, 0x8c41b80,15, 0x8c41bc0,15, 0x8c41c00,15, 0x8c41c40,15, 0x8c41c80,15, 0x8c41cc0,15, 0x8c41d00,15, 0x8c41d40,15, 0x8c41d80,15, 0x8c41dc0,15, 0x8c41e00,15, 0x8c41e40,15, 0x8c41e80,15, 0x8c41ec0,15, 0x8c41f00,15, 0x8c41f40,15, 0x8c41f80,15, 0x8c41fc0,15, 0x8c42000,15, 0x8c42040,15, 0x8c42080,15, 0x8c420c0,15, 0x8c42100,15, 0x8c42140,15, 0x8c42180,15, 0x8c421c0,15, 0x8c42200,15, 0x8c42240,15, 0x8c42280,15, 0x8c422c0,15, 0x8c42300,15, 0x8c42340,15, 0x8c42380,15, 0x8c423c0,15, 0x8c42400,15, 0x8c42440,15, 0x8c42480,15, 0x8c424c0,15, 0x8c42500,15, 0x8c42540,15, 0x8c42580,15, 0x8c425c0,15, 0x8c42600,15, 0x8c42640,15, 0x8c42680,15, 0x8c426c0,15, 0x8c42700,15, 0x8c42740,15, 0x8c42780,15, 0x8c427c0,15, 0x8c42800,15, 0x8c42840,15, 0x8c42880,15, 0x8c428c0,15, 0x8c42900,15, 0x8c42940,15, 0x8c42980,15, 0x8c429c0,15, 0x8c42a00,15, 0x8c42a40,15, 0x8c42a80,15, 0x8c42ac0,15, 0x8c42b00,15, 0x8c42b40,15, 0x8c42b80,15, 0x8c42bc0,15, 0x8c42c00,15, 0x8c42c40,15, 0x8c42c80,15, 0x8c42cc0,15, 0x8c42d00,15, 0x8c42d40,15, 0x8c42d80,15, 0x8c42dc0,15, 0x8c42e00,15, 0x8c42e40,15, 0x8c42e80,15, 0x8c42ec0,15, 0x8c42f00,15, 0x8c42f40,15, 0x8c42f80,15, 0x8c42fc0,15, 0x8c43000,15, 0x8c43040,15, 0x8c43080,15, 0x8c430c0,15, 0x8c43100,15, 0x8c43140,15, 0x8c43180,15, 0x8c431c0,15, 0x8c43200,15, 0x8c43240,15, 0x8c43280,15, 0x8c432c0,15, 0x8c43300,15, 0x8c43340,15, 0x8c43380,15, 0x8c433c0,15, 0x8c43400,15, 0x8c43440,15, 0x8c43480,15, 0x8c434c0,15, 0x8c43500,15, 0x8c43540,15, 0x8c43580,15, 0x8c435c0,15, 0x8c43600,15, 0x8c43640,15, 0x8c43680,15, 0x8c436c0,15, 0x8c43700,15, 0x8c43740,15, 0x8c43780,15, 0x8c437c0,15, 0x8c43800,15, 0x8c43840,15, 0x8c43880,15, 0x8c438c0,15, 0x8c43900,15, 0x8c43940,15, 0x8c43980,15, 0x8c439c0,15, 0x8c43a00,15, 0x8c43a40,15, 0x8c43a80,15, 0x8c43ac0,15, 0x8c43b00,15, 0x8c43b40,15, 0x8c43b80,15, 0x8c43bc0,15, 0x8c43c00,15, 0x8c43c40,15, 0x8c43c80,15, 0x8c43cc0,15, 0x8c43d00,15, 0x8c43d40,15, 0x8c43d80,15, 0x8c43dc0,15, 0x8c43e00,15, 0x8c43e40,15, 0x8c43e80,15, 0x8c43ec0,15, 0x8c43f00,15, 0x8c43f40,15, 0x8c43f80,15, 0x8c43fc0,15, 0x8c44000,15, 0x8c44040,15, 0x8c44080,15, 0x8c440c0,15, 0x8c44100,15, 0x8c44140,15, 0x8c44180,15, 0x8c441c0,15, 0x8c44200,15, 0x8c44240,15, 0x8c44280,15, 0x8c442c0,15, 0x8c44300,15, 0x8c44340,15, 0x8c44380,15, 0x8c443c0,15, 0x8c44400,15, 0x8c44440,15, 0x8c44480,15, 0x8c444c0,15, 0x8c44500,15, 0x8c44540,15, 0x8c44580,15, 0x8c445c0,15, 0x8c44600,15, 0x8c44640,15, 0x8c44680,15, 0x8c446c0,15, 0x8c44700,15, 0x8c44740,15, 0x8c44780,15, 0x8c447c0,15, 0x8c44800,15, 0x8c44840,15, 0x8c44880,15, 0x8c448c0,15, 0x8c44900,15, 0x8c44940,15, 0x8c44980,15, 0x8c449c0,15, 0x8c44a00,15, 0x8c44a40,15, 0x8c44a80,15, 0x8c44ac0,15, 0x8c44b00,15, 0x8c44b40,15, 0x8c44b80,15, 0x8c44bc0,15, 0x8c44c00,15, 0x8c44c40,15, 0x8c44c80,15, 0x8c44cc0,15, 0x8c44d00,15, 0x8c44d40,15, 0x8c44d80,15, 0x8c44dc0,15, 0x8c44e00,15, 0x8c44e40,15, 0x8c44e80,15, 0x8c44ec0,15, 0x8c44f00,15, 0x8c44f40,15, 0x8c44f80,15, 0x8c44fc0,15, 0x8c45000,15, 0x8c45040,15, 0x8c45080,15, 0x8c450c0,15, 0x8c45100,15, 0x8c45140,15, 0x8c45180,15, 0x8c451c0,15, 0x8c45200,15, 0x8c45240,15, 0x8c45280,15, 0x8c452c0,15, 0x8c45300,15, 0x8c45340,15, 0x8c45380,15, 0x8c453c0,15, 0x8c45400,15, 0x8c45440,15, 0x8c45480,15, 0x8c454c0,15, 0x8c45500,15, 0x8c45540,15, 0x8c45580,15, 0x8c455c0,15, 0x8c45600,15, 0x8c45640,15, 0x8c45680,15, 0x8c456c0,15, 0x8c45700,15, 0x8c45740,15, 0x8c45780,15, 0x8c457c0,15, 0x8c45800,15, 0x8c45840,15, 0x8c80000,2, 0x8c80040,9, 0x8c80080,17, 0x8c80100,17, 0x8c80180,3, 0x8d00000,7, 0x8d00020,7, 0x8d00040,1, 0x8d00080,138, 0x8d002c0,14, 0x8d00304,1, 0x8d0031c,49, 0x8d00404,7, 0x8d00480,5, 0x8d004a0,5, 0x8d004c0,5, 0x8d004e0,2, 0x8d00504,1, 0x8d00514,6, 0x8d00584,1, 0x8d005c0,26, 0x8d00640,10, 0x8d00680,10, 0x8d006c0,2, 0x8d00800,9, 0x8d00840,9, 0x8d00880,1, 0x8d00888,2, 0x8d008c4,1, 0x8d008dc,15, 0x8d00920,14, 0x8d00a00,2, 0x8d00a10,3, 0x8d01000,6, 0x8d01020,6, 0x8d01040,6, 0x8d01060,6, 0x8d01080,6, 0x8d010a0,6, 0x8d010c0,6, 0x8d010e0,6, 0x8d01100,6, 0x8d01120,6, 0x8d01140,6, 0x8d01160,6, 0x8d01180,6, 0x8d011a0,6, 0x8d011c0,6, 0x8d011e0,6, 0x8d01200,2, 0x8d01284,1, 0x8d012b0,20, 0x8d01304,1, 0x8d01340,16, 0x8d01400,10, 0x8d01440,10, 0x8d01480,10, 0x8d014c0,2, 0x8d01600,27, 0x8d01680,27, 0x8d01700,27, 0x8d01780,2, 0x8d01800,4, 0x8d02000,7, 0x8d02020,19, 0x8d02080,6, 0x8d020a0,7, 0x8d020c0,8, 0x8d02100,11, 0x8d02140,6, 0x8d02160,12, 0x8d021a4,12, 0x8e00000,15, 0x8e00040,15, 0x8e00080,15, 0x8e000c0,15, 0x8e00100,15, 0x8e00140,15, 0x8e00180,15, 0x8e001c0,15, 0x8e00200,15, 0x8e00240,15, 0x8e00280,15, 0x8e002c0,15, 0x8e00300,15, 0x8e00340,15, 0x8e00380,15, 0x8e003c0,15, 0x8e00400,15, 0x8e00440,15, 0x8e00480,15, 0x8e004c0,15, 0x8e00500,15, 0x8e00540,15, 0x8e00580,15, 0x8e005c0,15, 0x8e00600,15, 0x8e00640,15, 0x8e00680,15, 0x8e006c0,15, 0x8e00700,15, 0x8e00740,15, 0x8e00780,15, 0x8e007c0,15, 0x8e00800,15, 0x8e00840,15, 0x8e00880,15, 0x8e008c0,15, 0x8e00900,15, 0x8e00940,15, 0x8e00980,15, 0x8e009c0,15, 0x8e00a00,15, 0x8e00a40,15, 0x8e00a80,15, 0x8e00ac0,15, 0x8e00b00,15, 0x8e00b40,15, 0x8e00b80,15, 0x8e00bc0,15, 0x8e00c00,15, 0x8e00c40,15, 0x8e00c80,15, 0x8e00cc0,15, 0x8e00d00,15, 0x8e00d40,15, 0x8e00d80,15, 0x8e00dc0,15, 0x8e00e00,15, 0x8e00e40,15, 0x8e00e80,15, 0x8e00ec0,15, 0x8e00f00,15, 0x8e00f40,15, 0x8e00f80,15, 0x8e00fc0,15, 0x8e01000,15, 0x8e01040,15, 0x8e01080,15, 0x8e010c0,15, 0x8e01100,15, 0x8e01140,15, 0x8e01180,15, 0x8e011c0,15, 0x8e01200,15, 0x8e01240,15, 0x8e01280,15, 0x8e012c0,15, 0x8e01300,15, 0x8e01340,15, 0x8e01380,15, 0x8e013c0,15, 0x8e01400,15, 0x8e01440,15, 0x8e01480,15, 0x8e014c0,15, 0x8e01500,15, 0x8e01540,15, 0x8e01580,15, 0x8e015c0,15, 0x8e01600,15, 0x8e01640,15, 0x8e01680,15, 0x8e016c0,15, 0x8e01700,15, 0x8e01740,15, 0x8e01780,15, 0x8e017c0,15, 0x8e01800,15, 0x8e01840,15, 0x8e01880,15, 0x8e018c0,15, 0x8e01900,15, 0x8e01940,15, 0x8e01980,15, 0x8e019c0,15, 0x8e01a00,15, 0x8e01a40,15, 0x8e01a80,15, 0x8e01ac0,15, 0x8e01b00,15, 0x8e01b40,15, 0x8e01b80,15, 0x8e01bc0,15, 0x8e01c00,15, 0x8e01c40,15, 0x8e01c80,15, 0x8e01cc0,15, 0x8e01d00,15, 0x8e01d40,15, 0x8e01d80,15, 0x8e01dc0,15, 0x8e01e00,15, 0x8e01e40,15, 0x8e01e80,15, 0x8e01ec0,15, 0x8e01f00,15, 0x8e01f40,15, 0x8e01f80,15, 0x8e01fc0,15, 0x8e02000,15, 0x8e02040,15, 0x8e02080,15, 0x8e020c0,15, 0x8e02100,15, 0x8e02140,15, 0x8e02180,15, 0x8e021c0,15, 0x8e02200,15, 0x8e02240,15, 0x8e02280,15, 0x8e022c0,15, 0x8e02300,15, 0x8e02340,15, 0x8e02380,15, 0x8e023c0,15, 0x8e02400,15, 0x8e02440,15, 0x8e02480,15, 0x8e024c0,15, 0x8e02500,15, 0x8e02540,15, 0x8e02580,15, 0x8e025c0,15, 0x8e02600,15, 0x8e02640,15, 0x8e02680,15, 0x8e026c0,15, 0x8e02700,15, 0x8e02740,15, 0x8e02780,15, 0x8e027c0,15, 0x8e02800,15, 0x8e02840,15, 0x8e02880,15, 0x8e028c0,15, 0x8e02900,15, 0x8e02940,15, 0x8e02980,15, 0x8e029c0,15, 0x8e02a00,15, 0x8e02a40,15, 0x8e02a80,15, 0x8e02ac0,15, 0x8e02b00,15, 0x8e02b40,15, 0x8e02b80,15, 0x8e02bc0,15, 0x8e02c00,15, 0x8e02c40,15, 0x8e02c80,15, 0x8e02cc0,15, 0x8e02d00,15, 0x8e02d40,15, 0x8e02d80,15, 0x8e02dc0,15, 0x8e02e00,15, 0x8e02e40,15, 0x8e02e80,15, 0x8e02ec0,15, 0x8e02f00,15, 0x8e02f40,15, 0x8e02f80,15, 0x8e02fc0,15, 0x8e03000,15, 0x8e03040,15, 0x8e03080,15, 0x8e030c0,15, 0x8e03100,15, 0x8e03140,15, 0x8e03180,15, 0x8e031c0,15, 0x8e03200,15, 0x8e03240,15, 0x8e03280,15, 0x8e032c0,15, 0x8e03300,15, 0x8e03340,15, 0x8e03380,15, 0x8e033c0,15, 0x8e03400,15, 0x8e03440,15, 0x8e03480,15, 0x8e034c0,15, 0x8e03500,15, 0x8e03540,15, 0x8e03580,15, 0x8e035c0,15, 0x8e03600,15, 0x8e03640,15, 0x8e03680,15, 0x8e036c0,15, 0x8e03700,15, 0x8e03740,15, 0x8e03780,15, 0x8e037c0,15, 0x8e03800,15, 0x8e03840,15, 0x8e03880,15, 0x8e038c0,15, 0x8e03900,15, 0x8e03940,15, 0x8e03980,15, 0x8e039c0,15, 0x8e03a00,15, 0x8e03a40,15, 0x8e03a80,15, 0x8e03ac0,15, 0x8e03b00,15, 0x8e03b40,15, 0x8e03b80,15, 0x8e03bc0,15, 0x8e03c00,15, 0x8e03c40,15, 0x8e03c80,15, 0x8e03cc0,15, 0x8e03d00,15, 0x8e03d40,15, 0x8e03d80,15, 0x8e03dc0,15, 0x8e03e00,15, 0x8e03e40,15, 0x8e03e80,15, 0x8e03ec0,15, 0x8e03f00,15, 0x8e03f40,15, 0x8e03f80,15, 0x8e03fc0,15, 0x8e04000,15, 0x8e04040,15, 0x8e04080,15, 0x8e040c0,15, 0x8e04100,15, 0x8e04140,15, 0x8e04180,15, 0x8e041c0,15, 0x8e04200,15, 0x8e04240,15, 0x8e04280,15, 0x8e042c0,15, 0x8e04300,15, 0x8e04340,15, 0x8e04380,15, 0x8e043c0,15, 0x8e04400,15, 0x8e04440,15, 0x8e04480,15, 0x8e044c0,15, 0x8e04500,15, 0x8e04540,15, 0x8e04580,15, 0x8e045c0,15, 0x8e04600,15, 0x8e04640,15, 0x8e04680,15, 0x8e046c0,15, 0x8e04700,15, 0x8e04740,15, 0x8e04780,15, 0x8e047c0,15, 0x8e04800,15, 0x8e04840,15, 0x8e04880,15, 0x8e048c0,15, 0x8e04900,15, 0x8e04940,15, 0x8e04980,15, 0x8e049c0,15, 0x8e04a00,15, 0x8e04a40,15, 0x8e04a80,15, 0x8e04ac0,15, 0x8e04b00,15, 0x8e04b40,15, 0x8e04b80,15, 0x8e04bc0,15, 0x8e04c00,15, 0x8e04c40,15, 0x8e04c80,15, 0x8e04cc0,15, 0x8e04d00,15, 0x8e04d40,15, 0x8e04d80,15, 0x8e04dc0,15, 0x8e04e00,15, 0x8e04e40,15, 0x8e04e80,15, 0x8e04ec0,15, 0x8e04f00,15, 0x8e04f40,15, 0x8e04f80,15, 0x8e04fc0,15, 0x8e05000,15, 0x8e05040,15, 0x8e05080,15, 0x8e050c0,15, 0x8e05100,15, 0x8e05140,15, 0x8e05180,15, 0x8e051c0,15, 0x8e05200,15, 0x8e05240,15, 0x8e05280,15, 0x8e052c0,15, 0x8e05300,15, 0x8e05340,15, 0x8e05380,15, 0x8e053c0,15, 0x8e05400,15, 0x8e05440,15, 0x8e05480,15, 0x8e054c0,15, 0x8e05500,15, 0x8e05540,15, 0x8e05580,15, 0x8e055c0,15, 0x8e05600,15, 0x8e05640,15, 0x8e05680,15, 0x8e056c0,15, 0x8e05700,15, 0x8e05740,15, 0x8e05780,15, 0x8e057c0,15, 0x8e05800,15, 0x8e05840,15, 0x8e05880,15, 0x8e058c0,15, 0x8e05900,15, 0x8e05940,15, 0x8e05980,15, 0x8e059c0,15, 0x8e05a00,15, 0x8e05a40,15, 0x8e05a80,15, 0x8e05ac0,15, 0x8e05b00,15, 0x8e05b40,15, 0x8e05b80,15, 0x8e05bc0,15, 0x8e05c00,15, 0x8e05c40,15, 0x8e05c80,15, 0x8e05cc0,15, 0x8e05d00,15, 0x8e05d40,15, 0x8e05d80,15, 0x8e05dc0,15, 0x8e05e00,15, 0x8e05e40,15, 0x8e05e80,15, 0x8e05ec0,15, 0x8e05f00,15, 0x8e05f40,15, 0x8e05f80,15, 0x8e05fc0,15, 0x8e06000,15, 0x8e06040,15, 0x8e06080,15, 0x8e060c0,15, 0x8e06100,15, 0x8e06140,15, 0x8e06180,15, 0x8e061c0,15, 0x8e06200,15, 0x8e06240,15, 0x8e06280,15, 0x8e062c0,15, 0x8e06300,15, 0x8e06340,15, 0x8e06380,15, 0x8e063c0,15, 0x8e06400,15, 0x8e06440,15, 0x8e06480,15, 0x8e064c0,15, 0x8e06500,15, 0x8e06540,15, 0x8e06580,15, 0x8e065c0,15, 0x8e06600,15, 0x8e06640,15, 0x8e06680,15, 0x8e066c0,15, 0x8e06700,15, 0x8e06740,15, 0x8e06780,15, 0x8e067c0,15, 0x8e06800,15, 0x8e06840,15, 0x8e06880,15, 0x8e068c0,15, 0x8e06900,15, 0x8e06940,15, 0x8e06980,15, 0x8e069c0,15, 0x8e06a00,15, 0x8e06a40,15, 0x8e06a80,15, 0x8e06ac0,15, 0x8e06b00,15, 0x8e06b40,15, 0x8e06b80,15, 0x8e06bc0,15, 0x8e06c00,15, 0x8e06c40,15, 0x8e06c80,15, 0x8e06cc0,15, 0x8e06d00,15, 0x8e06d40,15, 0x8e06d80,15, 0x8e06dc0,15, 0x8e06e00,15, 0x8e06e40,15, 0x8e06e80,15, 0x8e06ec0,15, 0x8e06f00,15, 0x8e06f40,15, 0x8e06f80,15, 0x8e06fc0,15, 0x8e07000,15, 0x8e07040,15, 0x8e07080,15, 0x8e070c0,15, 0x8e07100,15, 0x8e07140,15, 0x8e07180,15, 0x8e071c0,15, 0x8e07200,15, 0x8e07240,15, 0x8e07280,15, 0x8e072c0,15, 0x8e07300,15, 0x8e07340,15, 0x8e07380,15, 0x8e073c0,15, 0x8e07400,15, 0x8e07440,15, 0x8e07480,15, 0x8e074c0,15, 0x8e07500,15, 0x8e07540,15, 0x8e07580,15, 0x8e075c0,15, 0x8e07600,15, 0x8e07640,15, 0x8e07680,15, 0x8e076c0,15, 0x8e07700,15, 0x8e07740,15, 0x8e07780,15, 0x8e077c0,15, 0x8e07800,15, 0x8e07840,15, 0x8e07880,15, 0x8e078c0,15, 0x8e07900,15, 0x8e07940,15, 0x8e07980,15, 0x8e079c0,15, 0x8e07a00,15, 0x8e07a40,15, 0x8e07a80,15, 0x8e07ac0,15, 0x8e07b00,15, 0x8e07b40,15, 0x8e07b80,15, 0x8e07bc0,15, 0x8e07c00,15, 0x8e07c40,15, 0x8e07c80,15, 0x8e07cc0,15, 0x8e07d00,15, 0x8e07d40,15, 0x8e07d80,15, 0x8e07dc0,15, 0x8e07e00,15, 0x8e07e40,15, 0x8e07e80,15, 0x8e07ec0,15, 0x8e07f00,15, 0x8e07f40,15, 0x8e07f80,15, 0x8e07fc0,15, 0x8e08000,15, 0x8e08040,15, 0x8e08080,15, 0x8e080c0,15, 0x8e08100,15, 0x8e08140,15, 0x8e08180,15, 0x8e081c0,15, 0x8e08200,15, 0x8e08240,15, 0x8e08280,15, 0x8e082c0,15, 0x8e08300,15, 0x8e08340,15, 0x8e08380,15, 0x8e083c0,15, 0x8e08400,15, 0x8e08440,15, 0x8e08480,15, 0x8e084c0,15, 0x8e08500,15, 0x8e08540,15, 0x8e08580,15, 0x8e085c0,15, 0x8e08600,15, 0x8e08640,15, 0x8e08680,15, 0x8e086c0,15, 0x8e08700,15, 0x8e08740,15, 0x8e08780,15, 0x8e087c0,15, 0x8e08800,15, 0x8e08840,15, 0x8e08880,15, 0x8e088c0,15, 0x8e08900,15, 0x8e08940,15, 0x8e08980,15, 0x8e089c0,15, 0x8e08a00,15, 0x8e08a40,15, 0x8e08a80,15, 0x8e08ac0,15, 0x8e08b00,15, 0x8e08b40,15, 0x8e08b80,15, 0x8e08bc0,15, 0x8e08c00,15, 0x8e08c40,15, 0x8e08c80,15, 0x8e08cc0,15, 0x8e08d00,15, 0x8e08d40,15, 0x8e08d80,15, 0x8e08dc0,15, 0x8e08e00,15, 0x8e08e40,15, 0x8e08e80,15, 0x8e08ec0,15, 0x8e08f00,15, 0x8e08f40,15, 0x8e08f80,15, 0x8e08fc0,15, 0x8e09000,15, 0x8e09040,15, 0x8e09080,15, 0x8e090c0,15, 0x8e09100,15, 0x8e09140,15, 0x8e09180,15, 0x8e091c0,15, 0x8e09200,15, 0x8e09240,15, 0x8e09280,15, 0x8e092c0,15, 0x8e09300,15, 0x8e09340,15, 0x8e09380,15, 0x8e093c0,15, 0x8e09400,15, 0x8e09440,15, 0x8e09480,15, 0x8e094c0,15, 0x8e09500,15, 0x8e09540,15, 0x8e09580,15, 0x8e095c0,15, 0x8e09600,15, 0x8e09640,15, 0x8e09680,15, 0x8e096c0,15, 0x8e09700,15, 0x8e09740,15, 0x8e09780,15, 0x8e097c0,15, 0x8e09800,15, 0x8e09840,15, 0x8e09880,15, 0x8e098c0,15, 0x8e09900,15, 0x8e09940,15, 0x8e09980,15, 0x8e099c0,15, 0x8e09a00,15, 0x8e09a40,15, 0x8e09a80,15, 0x8e09ac0,15, 0x8e09b00,15, 0x8e09b40,15, 0x8e09b80,15, 0x8e09bc0,15, 0x8e09c00,15, 0x8e09c40,15, 0x8e09c80,15, 0x8e09cc0,15, 0x8e09d00,15, 0x8e09d40,15, 0x8e09d80,15, 0x8e09dc0,15, 0x8e09e00,15, 0x8e09e40,15, 0x8e09e80,15, 0x8e09ec0,15, 0x8e09f00,15, 0x8e09f40,15, 0x8e09f80,15, 0x8e09fc0,15, 0x8e0a000,15, 0x8e0a040,15, 0x8e0a080,15, 0x8e0a0c0,15, 0x8e0a100,15, 0x8e0a140,15, 0x8e0a180,15, 0x8e0a1c0,15, 0x8e0a200,15, 0x8e0a240,15, 0x8e0a280,15, 0x8e0a2c0,15, 0x8e0a300,15, 0x8e0a340,15, 0x8e0a380,15, 0x8e0a3c0,15, 0x8e0a400,15, 0x8e0a440,15, 0x8e0a480,15, 0x8e0a4c0,15, 0x8e0a500,15, 0x8e0a540,15, 0x8e0a580,15, 0x8e0a5c0,15, 0x8e0a600,15, 0x8e0a640,15, 0x8e0a680,15, 0x8e0a6c0,15, 0x8e0a700,15, 0x8e0a740,15, 0x8e0a780,15, 0x8e0a7c0,15, 0x8e0a800,15, 0x8e0a840,15, 0x8e0a880,15, 0x8e0a8c0,15, 0x8e0a900,15, 0x8e0a940,15, 0x8e0a980,15, 0x8e0a9c0,15, 0x8e0aa00,15, 0x8e0aa40,15, 0x8e0aa80,15, 0x8e0aac0,15, 0x8e0ab00,15, 0x8e0ab40,15, 0x8e0ab80,15, 0x8e0abc0,15, 0x8e0ac00,15, 0x8e0ac40,15, 0x8e0ac80,15, 0x8e0acc0,15, 0x8e0ad00,15, 0x8e0ad40,15, 0x8e0ad80,15, 0x8e0adc0,15, 0x8e0ae00,15, 0x8e0ae40,15, 0x8e0ae80,15, 0x8e0aec0,15, 0x8e0af00,15, 0x8e0af40,15, 0x8e0af80,15, 0x8e0afc0,15, 0x8e0b000,15, 0x8e0b040,15, 0x8e0b080,15, 0x8e0b0c0,15, 0x8e0b100,15, 0x8e0b140,15, 0x8e0b180,15, 0x8e0b1c0,15, 0x8e0b200,15, 0x8e0b240,15, 0x8e0b280,15, 0x8e0b2c0,15, 0x8e0b300,15, 0x8e0b340,15, 0x8e0b380,15, 0x8e0b3c0,15, 0x8e0b400,15, 0x8e0b440,15, 0x8e0b480,15, 0x8e0b4c0,15, 0x8e0b500,15, 0x8e0b540,15, 0x8e0b580,15, 0x8e0b5c0,15, 0x8e0b600,15, 0x8e0b640,15, 0x8e0b680,15, 0x8e0b6c0,15, 0x8e0b700,15, 0x8e0b740,15, 0x8e0b780,15, 0x8e0b7c0,15, 0x8e0b800,15, 0x8e0b840,15, 0x8e0b880,15, 0x8e0b8c0,15, 0x8e0b900,15, 0x8e0b940,15, 0x8e0b980,15, 0x8e0b9c0,15, 0x8e0ba00,15, 0x8e0ba40,15, 0x8e0ba80,15, 0x8e0bac0,15, 0x8e0bb00,15, 0x8e0bb40,15, 0x8e0bb80,15, 0x8e0bbc0,15, 0x8e0bc00,15, 0x8e0bc40,15, 0x8e0bc80,15, 0x8e0bcc0,15, 0x8e0bd00,15, 0x8e0bd40,15, 0x8e0bd80,15, 0x8e0bdc0,15, 0x8e0be00,15, 0x8e0be40,15, 0x8e0be80,15, 0x8e0bec0,15, 0x8e0bf00,15, 0x8e0bf40,15, 0x8e0bf80,15, 0x8e0bfc0,15, 0x8e0c000,15, 0x8e0c040,15, 0x8e0c080,15, 0x8e0c0c0,15, 0x8e0c100,15, 0x8e0c140,15, 0x8e0c180,15, 0x8e0c1c0,15, 0x8e0c200,15, 0x8e0c240,15, 0x8e0c280,15, 0x8e0c2c0,15, 0x8e0c300,15, 0x8e0c340,15, 0x8e0c380,15, 0x8e0c3c0,15, 0x8e0c400,15, 0x8e0c440,15, 0x8e0c480,15, 0x8e0c4c0,15, 0x8e0c500,15, 0x8e0c540,15, 0x8e0c580,15, 0x8e0c5c0,15, 0x8e0c600,15, 0x8e0c640,15, 0x8e0c680,15, 0x8e0c6c0,15, 0x8e0c700,15, 0x8e0c740,15, 0x8e0c780,15, 0x8e0c7c0,15, 0x8e0c800,15, 0x8e0c840,15, 0x8e0c880,15, 0x8e0c8c0,15, 0x8e0c900,15, 0x8e0c940,15, 0x8e0c980,15, 0x8e0c9c0,15, 0x8e0ca00,15, 0x8e0ca40,15, 0x8e0ca80,15, 0x8e0cac0,15, 0x8e0cb00,15, 0x8e0cb40,15, 0x8e0cb80,15, 0x8e0cbc0,15, 0x8e0cc00,15, 0x8e0cc40,15, 0x8e0cc80,15, 0x8e0ccc0,15, 0x8e0cd00,15, 0x8e0cd40,15, 0x8e0cd80,15, 0x8e0cdc0,15, 0x8e0ce00,15, 0x8e0ce40,15, 0x8e0ce80,15, 0x8e0cec0,15, 0x8e0cf00,15, 0x8e0cf40,15, 0x8e0cf80,15, 0x8e0cfc0,15, 0x8e0d000,15, 0x8e0d040,15, 0x8e0d080,15, 0x8e0d0c0,15, 0x8e0d100,15, 0x8e0d140,15, 0x8e0d180,15, 0x8e0d1c0,15, 0x8e0d200,15, 0x8e0d240,15, 0x8e0d280,15, 0x8e0d2c0,15, 0x8e0d300,15, 0x8e0d340,15, 0x8e0d380,15, 0x8e0d3c0,15, 0x8e0d400,15, 0x8e0d440,15, 0x8e0d480,15, 0x8e0d4c0,15, 0x8e0d500,15, 0x8e0d540,15, 0x8e0d580,15, 0x8e0d5c0,15, 0x8e0d600,15, 0x8e0d640,15, 0x8e0d680,15, 0x8e0d6c0,15, 0x8e0d700,15, 0x8e0d740,15, 0x8e0d780,15, 0x8e0d7c0,15, 0x8e0d800,15, 0x8e0d840,15, 0x8e0d880,15, 0x8e0d8c0,15, 0x8e0d900,15, 0x8e0d940,15, 0x8e0d980,15, 0x8e0d9c0,15, 0x8e0da00,15, 0x8e0da40,15, 0x8e0da80,15, 0x8e0dac0,15, 0x8e0db00,15, 0x8e0db40,15, 0x8e0db80,15, 0x8e0dbc0,15, 0x8e0dc00,15, 0x8e0dc40,15, 0x8e0dc80,15, 0x8e0dcc0,15, 0x8e0dd00,15, 0x8e0dd40,15, 0x8e0dd80,15, 0x8e0ddc0,15, 0x8e0de00,15, 0x8e0de40,15, 0x8e0de80,15, 0x8e0dec0,15, 0x8e0df00,15, 0x8e0df40,15, 0x8e0df80,15, 0x8e0dfc0,15, 0x8e0e000,15, 0x8e0e040,15, 0x8e0e080,15, 0x8e0e0c0,15, 0x8e0e100,15, 0x8e0e140,15, 0x8e0e180,15, 0x8e0e1c0,15, 0x8e0e200,15, 0x8e0e240,15, 0x8e0e280,15, 0x8e0e2c0,15, 0x8e0e300,15, 0x8e0e340,15, 0x8e0e380,15, 0x8e0e3c0,15, 0x8e0e400,15, 0x8e0e440,15, 0x8e0e480,15, 0x8e0e4c0,15, 0x8e0e500,15, 0x8e0e540,15, 0x8e0e580,15, 0x8e0e5c0,15, 0x8e0e600,15, 0x8e0e640,15, 0x8e0e680,15, 0x8e0e6c0,15, 0x8e0e700,15, 0x8e0e740,15, 0x8e0e780,15, 0x8e0e7c0,15, 0x8e0e800,15, 0x8e0e840,15, 0x8e0e880,15, 0x8e0e8c0,15, 0x8e0e900,15, 0x8e0e940,15, 0x8e0e980,15, 0x8e0e9c0,15, 0x8e0ea00,15, 0x8e0ea40,15, 0x8e0ea80,15, 0x8e0eac0,15, 0x8e0eb00,15, 0x8e0eb40,15, 0x8e0eb80,15, 0x8e0ebc0,15, 0x8e0ec00,15, 0x8e0ec40,15, 0x8e0ec80,15, 0x8e0ecc0,15, 0x8e0ed00,15, 0x8e0ed40,15, 0x8e0ed80,15, 0x8e0edc0,15, 0x8e0ee00,15, 0x8e0ee40,15, 0x8e0ee80,15, 0x8e0eec0,15, 0x8e0ef00,15, 0x8e0ef40,15, 0x8e0ef80,15, 0x8e0efc0,15, 0x8e0f000,15, 0x8e0f040,15, 0x8e0f080,15, 0x8e0f0c0,15, 0x8e0f100,15, 0x8e0f140,15, 0x8e0f180,15, 0x8e0f1c0,15, 0x8e0f200,15, 0x8e0f240,15, 0x8e0f280,15, 0x8e0f2c0,15, 0x8e0f300,15, 0x8e0f340,15, 0x8e0f380,15, 0x8e0f3c0,15, 0x8e0f400,15, 0x8e0f440,15, 0x8e0f480,15, 0x8e0f4c0,15, 0x8e0f500,15, 0x8e0f540,15, 0x8e0f580,15, 0x8e0f5c0,15, 0x8e0f600,15, 0x8e0f640,15, 0x8e0f680,15, 0x8e0f6c0,15, 0x8e0f700,15, 0x8e0f740,15, 0x8e0f780,15, 0x8e0f7c0,15, 0x8e0f800,15, 0x8e0f840,15, 0x8e0f880,15, 0x8e0f8c0,15, 0x8e0f900,15, 0x8e0f940,15, 0x8e0f980,15, 0x8e0f9c0,15, 0x8e0fa00,15, 0x8e0fa40,15, 0x8e0fa80,15, 0x8e0fac0,15, 0x8e0fb00,15, 0x8e0fb40,15, 0x8e0fb80,15, 0x8e0fbc0,15, 0x8e0fc00,15, 0x8e0fc40,15, 0x8e0fc80,15, 0x8e0fcc0,15, 0x8e0fd00,15, 0x8e0fd40,15, 0x8e0fd80,15, 0x8e0fdc0,15, 0x8e0fe00,15, 0x8e0fe40,15, 0x8e0fe80,15, 0x8e0fec0,15, 0x8e0ff00,15, 0x8e0ff40,15, 0x8e0ff80,15, 0x8e0ffc0,15, 0x8e10000,15, 0x8e10040,15, 0x8e10080,15, 0x8e100c0,15, 0x8e10100,15, 0x8e10140,15, 0x8e10180,15, 0x8e101c0,15, 0x8e10200,15, 0x8e10240,15, 0x8e10280,15, 0x8e102c0,15, 0x8e10300,15, 0x8e10340,15, 0x8e10380,15, 0x8e103c0,15, 0x8e10400,15, 0x8e10440,15, 0x8e10480,15, 0x8e104c0,15, 0x8e10500,15, 0x8e10540,15, 0x8e10580,15, 0x8e105c0,15, 0x8e10600,15, 0x8e10640,15, 0x8e10680,15, 0x8e106c0,15, 0x8e10700,15, 0x8e10740,15, 0x8e10780,15, 0x8e107c0,15, 0x8e10800,15, 0x8e10840,15, 0x8e10880,15, 0x8e108c0,15, 0x8e10900,15, 0x8e10940,15, 0x8e10980,15, 0x8e109c0,15, 0x8e10a00,15, 0x8e10a40,15, 0x8e10a80,15, 0x8e10ac0,15, 0x8e10b00,15, 0x8e10b40,15, 0x8e10b80,15, 0x8e10bc0,15, 0x8e10c00,15, 0x8e10c40,15, 0x8e10c80,15, 0x8e10cc0,15, 0x8e10d00,15, 0x8e10d40,15, 0x8e10d80,15, 0x8e10dc0,15, 0x8e10e00,15, 0x8e10e40,15, 0x8e10e80,15, 0x8e10ec0,15, 0x8e10f00,15, 0x8e10f40,15, 0x8e10f80,15, 0x8e10fc0,15, 0x8e11000,15, 0x8e11040,15, 0x8e11080,15, 0x8e110c0,15, 0x8e11100,15, 0x8e11140,15, 0x8e11180,15, 0x8e111c0,15, 0x8e11200,15, 0x8e11240,15, 0x8e11280,15, 0x8e112c0,15, 0x8e11300,15, 0x8e11340,15, 0x8e11380,15, 0x8e113c0,15, 0x8e11400,15, 0x8e11440,15, 0x8e11480,15, 0x8e114c0,15, 0x8e11500,15, 0x8e11540,15, 0x8e11580,15, 0x8e115c0,15, 0x8e11600,15, 0x8e11640,15, 0x8e11680,15, 0x8e116c0,15, 0x8e11700,15, 0x8e11740,15, 0x8e11780,15, 0x8e117c0,15, 0x8e11800,15, 0x8e11840,15, 0x8e11880,15, 0x8e118c0,15, 0x8e11900,15, 0x8e11940,15, 0x8e11980,15, 0x8e119c0,15, 0x8e11a00,15, 0x8e11a40,15, 0x8e11a80,15, 0x8e11ac0,15, 0x8e11b00,15, 0x8e11b40,15, 0x8e11b80,15, 0x8e11bc0,15, 0x8e11c00,15, 0x8e11c40,15, 0x8e11c80,15, 0x8e11cc0,15, 0x8e11d00,15, 0x8e11d40,15, 0x8e11d80,15, 0x8e11dc0,15, 0x8e11e00,15, 0x8e11e40,15, 0x8e11e80,15, 0x8e11ec0,15, 0x8e11f00,15, 0x8e11f40,15, 0x8e11f80,15, 0x8e11fc0,15, 0x8e12000,15, 0x8e12040,15, 0x8e12080,15, 0x8e120c0,15, 0x8e12100,15, 0x8e12140,15, 0x8e12180,15, 0x8e121c0,15, 0x8e12200,15, 0x8e12240,15, 0x8e12280,15, 0x8e122c0,15, 0x8e12300,15, 0x8e12340,15, 0x8e12380,15, 0x8e123c0,15, 0x8e12400,15, 0x8e12440,15, 0x8e12480,15, 0x8e124c0,15, 0x8e12500,15, 0x8e12540,15, 0x8e12580,15, 0x8e125c0,15, 0x8e12600,15, 0x8e12640,15, 0x8e12680,15, 0x8e126c0,15, 0x8e12700,15, 0x8e12740,15, 0x8e12780,15, 0x8e127c0,15, 0x8e12800,15, 0x8e12840,15, 0x8e12880,15, 0x8e128c0,15, 0x8e12900,15, 0x8e12940,15, 0x8e12980,15, 0x8e129c0,15, 0x8e12a00,15, 0x8e12a40,15, 0x8e12a80,15, 0x8e12ac0,15, 0x8e12b00,15, 0x8e12b40,15, 0x8e12b80,15, 0x8e12bc0,15, 0x8e12c00,15, 0x8e12c40,15, 0x8e12c80,15, 0x8e12cc0,15, 0x8e12d00,15, 0x8e12d40,15, 0x8e12d80,15, 0x8e12dc0,15, 0x8e12e00,15, 0x8e12e40,15, 0x8e12e80,15, 0x8e12ec0,15, 0x8e12f00,15, 0x8e12f40,15, 0x8e12f80,15, 0x8e12fc0,15, 0x8e13000,15, 0x8e13040,15, 0x8e13080,15, 0x8e130c0,15, 0x8e13100,15, 0x8e13140,15, 0x8e13180,15, 0x8e131c0,15, 0x8e13200,15, 0x8e13240,15, 0x8e13280,15, 0x8e132c0,15, 0x8e13300,15, 0x8e13340,15, 0x8e13380,15, 0x8e133c0,15, 0x8e13400,15, 0x8e13440,15, 0x8e13480,15, 0x8e134c0,15, 0x8e13500,15, 0x8e13540,15, 0x8e13580,15, 0x8e135c0,15, 0x8e13600,15, 0x8e13640,15, 0x8e13680,15, 0x8e136c0,15, 0x8e13700,15, 0x8e13740,15, 0x8e13780,15, 0x8e137c0,15, 0x8e13800,15, 0x8e13840,15, 0x8e13880,15, 0x8e138c0,15, 0x8e13900,15, 0x8e13940,15, 0x8e13980,15, 0x8e139c0,15, 0x8e13a00,15, 0x8e13a40,15, 0x8e13a80,15, 0x8e13ac0,15, 0x8e13b00,15, 0x8e13b40,15, 0x8e13b80,15, 0x8e13bc0,15, 0x8e13c00,15, 0x8e13c40,15, 0x8e13c80,15, 0x8e13cc0,15, 0x8e13d00,15, 0x8e13d40,15, 0x8e13d80,15, 0x8e13dc0,15, 0x8e13e00,15, 0x8e13e40,15, 0x8e13e80,15, 0x8e13ec0,15, 0x8e13f00,15, 0x8e13f40,15, 0x8e13f80,15, 0x8e13fc0,15, 0x8e14000,15, 0x8e14040,15, 0x8e14080,15, 0x8e140c0,15, 0x8e14100,15, 0x8e14140,15, 0x8e14180,15, 0x8e141c0,15, 0x8e14200,15, 0x8e14240,15, 0x8e14280,15, 0x8e142c0,15, 0x8e14300,15, 0x8e14340,15, 0x8e14380,15, 0x8e143c0,15, 0x8e14400,15, 0x8e14440,15, 0x8e14480,15, 0x8e144c0,15, 0x8e14500,15, 0x8e14540,15, 0x8e14580,15, 0x8e145c0,15, 0x8e14600,15, 0x8e14640,15, 0x8e14680,15, 0x8e146c0,15, 0x8e14700,15, 0x8e14740,15, 0x8e14780,15, 0x8e147c0,15, 0x8e14800,15, 0x8e14840,15, 0x8e14880,15, 0x8e148c0,15, 0x8e14900,15, 0x8e14940,15, 0x8e14980,15, 0x8e149c0,15, 0x8e14a00,15, 0x8e14a40,15, 0x8e14a80,15, 0x8e14ac0,15, 0x8e14b00,15, 0x8e14b40,15, 0x8e14b80,15, 0x8e14bc0,15, 0x8e14c00,15, 0x8e14c40,15, 0x8e14c80,15, 0x8e14cc0,15, 0x8e14d00,15, 0x8e14d40,15, 0x8e14d80,15, 0x8e14dc0,15, 0x8e14e00,15, 0x8e14e40,15, 0x8e14e80,15, 0x8e14ec0,15, 0x8e14f00,15, 0x8e14f40,15, 0x8e14f80,15, 0x8e14fc0,15, 0x8e15000,15, 0x8e15040,15, 0x8e15080,15, 0x8e150c0,15, 0x8e15100,15, 0x8e15140,15, 0x8e15180,15, 0x8e151c0,15, 0x8e15200,15, 0x8e15240,15, 0x8e15280,15, 0x8e152c0,15, 0x8e15300,15, 0x8e15340,15, 0x8e15380,15, 0x8e153c0,15, 0x8e15400,15, 0x8e15440,15, 0x8e15480,15, 0x8e154c0,15, 0x8e15500,15, 0x8e15540,15, 0x8e15580,15, 0x8e155c0,15, 0x8e15600,15, 0x8e15640,15, 0x8e15680,15, 0x8e156c0,15, 0x8e15700,15, 0x8e15740,15, 0x8e15780,15, 0x8e157c0,15, 0x8e15800,15, 0x8e15840,15, 0x8e15880,15, 0x8e158c0,15, 0x8e15900,15, 0x8e15940,15, 0x8e15980,15, 0x8e159c0,15, 0x8e15a00,15, 0x8e15a40,15, 0x8e15a80,15, 0x8e15ac0,15, 0x8e15b00,15, 0x8e15b40,15, 0x8e15b80,15, 0x8e15bc0,15, 0x8e15c00,15, 0x8e15c40,15, 0x8e15c80,15, 0x8e15cc0,15, 0x8e15d00,15, 0x8e15d40,15, 0x8e15d80,15, 0x8e15dc0,15, 0x8e15e00,15, 0x8e15e40,15, 0x8e15e80,15, 0x8e15ec0,15, 0x8e15f00,15, 0x8e15f40,15, 0x8e15f80,15, 0x8e15fc0,15, 0x8e16000,15, 0x8e16040,15, 0x8e16080,15, 0x8e160c0,15, 0x8e16100,15, 0x8e16140,15, 0x8e16180,15, 0x8e161c0,15, 0x8e16200,15, 0x8e16240,15, 0x8e16280,15, 0x8e162c0,15, 0x8e16300,15, 0x8e16340,15, 0x8e16380,15, 0x8e163c0,15, 0x8e16400,15, 0x8e16440,15, 0x8e16480,15, 0x8e164c0,15, 0x8e16500,15, 0x8e16540,15, 0x8e16580,15, 0x8e165c0,15, 0x8e16600,15, 0x8e16640,15, 0x8e16680,15, 0x8e166c0,15, 0x8e16700,15, 0x8e16740,15, 0x8e16780,15, 0x8e167c0,15, 0x8e16800,15, 0x8e16840,15, 0x8e16880,15, 0x8e168c0,15, 0x8e16900,15, 0x8e16940,15, 0x8e16980,15, 0x8e169c0,15, 0x8e16a00,15, 0x8e16a40,15, 0x8e16a80,15, 0x8e16ac0,15, 0x8e16b00,15, 0x8e16b40,15, 0x8e16b80,15, 0x8e16bc0,15, 0x8e16c00,15, 0x8e16c40,15, 0x8e16c80,15, 0x8e16cc0,15, 0x8e16d00,15, 0x8e16d40,15, 0x8e16d80,15, 0x8e16dc0,15, 0x8e16e00,15, 0x8e16e40,15, 0x8e16e80,15, 0x8e16ec0,15, 0x8e16f00,15, 0x8e16f40,15, 0x8e16f80,15, 0x8e16fc0,15, 0x8e17000,15, 0x8e17040,15, 0x8e17080,15, 0x8e170c0,15, 0x8e17100,15, 0x8e17140,15, 0x8e17180,15, 0x8e171c0,15, 0x8e17200,15, 0x8e17240,15, 0x8e17280,15, 0x8e172c0,15, 0x8e17300,15, 0x8e17340,15, 0x8e17380,15, 0x8e173c0,15, 0x8e17400,15, 0x8e17440,15, 0x8e17480,15, 0x8e174c0,15, 0x8e17500,15, 0x8e17540,15, 0x8e17580,15, 0x8e175c0,15, 0x8e17600,15, 0x8e17640,15, 0x8e17680,15, 0x8e176c0,15, 0x8e17700,15, 0x8e17740,15, 0x8e17780,15, 0x8e177c0,15, 0x8e17800,15, 0x8e17840,15, 0x8e17880,15, 0x8e178c0,15, 0x8e17900,15, 0x8e17940,15, 0x8e17980,15, 0x8e179c0,15, 0x8e17a00,15, 0x8e17a40,15, 0x8e17a80,15, 0x8e17ac0,15, 0x8e17b00,15, 0x8e17b40,15, 0x8e17b80,15, 0x8e17bc0,15, 0x8e17c00,15, 0x8e17c40,15, 0x8e17c80,15, 0x8e17cc0,15, 0x8e17d00,15, 0x8e17d40,15, 0x8e17d80,15, 0x8e17dc0,15, 0x8e17e00,15, 0x8e17e40,15, 0x8e17e80,15, 0x8e17ec0,15, 0x8e17f00,15, 0x8e17f40,15, 0x8e17f80,15, 0x8e17fc0,15, 0x8e18000,15, 0x8e18040,15, 0x8e18080,15, 0x8e180c0,15, 0x8e18100,15, 0x8e18140,15, 0x8e18180,15, 0x8e181c0,15, 0x8e18200,15, 0x8e18240,15, 0x8e18280,15, 0x8e182c0,15, 0x8e18300,15, 0x8e18340,15, 0x8e18380,15, 0x8e183c0,15, 0x8e18400,15, 0x8e18440,15, 0x8e18480,15, 0x8e184c0,15, 0x8e18500,15, 0x8e18540,15, 0x8e18580,15, 0x8e185c0,15, 0x8e18600,15, 0x8e18640,15, 0x8e18680,15, 0x8e186c0,15, 0x8e18700,15, 0x8e18740,15, 0x8e18780,15, 0x8e187c0,15, 0x8e18800,15, 0x8e18840,15, 0x8e18880,15, 0x8e188c0,15, 0x8e18900,15, 0x8e18940,15, 0x8e18980,15, 0x8e189c0,15, 0x8e18a00,15, 0x8e18a40,15, 0x8e18a80,15, 0x8e18ac0,15, 0x8e18b00,15, 0x8e18b40,15, 0x8e18b80,15, 0x8e18bc0,15, 0x8e18c00,15, 0x8e18c40,15, 0x8e18c80,15, 0x8e18cc0,15, 0x8e18d00,15, 0x8e18d40,15, 0x8e18d80,15, 0x8e18dc0,15, 0x8e18e00,15, 0x8e18e40,15, 0x8e18e80,15, 0x8e18ec0,15, 0x8e18f00,15, 0x8e18f40,15, 0x8e18f80,15, 0x8e18fc0,15, 0x8e19000,15, 0x8e19040,15, 0x8e19080,15, 0x8e190c0,15, 0x8e19100,15, 0x8e19140,15, 0x8e19180,15, 0x8e191c0,15, 0x8e19200,15, 0x8e19240,15, 0x8e19280,15, 0x8e192c0,15, 0x8e19300,15, 0x8e19340,15, 0x8e19380,15, 0x8e193c0,15, 0x8e19400,15, 0x8e19440,15, 0x8e19480,15, 0x8e194c0,15, 0x8e19500,15, 0x8e19540,15, 0x8e19580,15, 0x8e195c0,15, 0x8e19600,15, 0x8e19640,15, 0x8e19680,15, 0x8e196c0,15, 0x8e19700,15, 0x8e19740,15, 0x8e19780,15, 0x8e197c0,15, 0x8e19800,15, 0x8e19840,15, 0x8e19880,15, 0x8e198c0,15, 0x8e19900,15, 0x8e19940,15, 0x8e19980,15, 0x8e199c0,15, 0x8e19a00,15, 0x8e19a40,15, 0x8e19a80,15, 0x8e19ac0,15, 0x8e19b00,15, 0x8e19b40,15, 0x8e19b80,15, 0x8e19bc0,15, 0x8e19c00,15, 0x8e19c40,15, 0x8e19c80,15, 0x8e19cc0,15, 0x8e19d00,15, 0x8e19d40,15, 0x8e19d80,15, 0x8e19dc0,15, 0x8e19e00,15, 0x8e19e40,15, 0x8e19e80,15, 0x8e19ec0,15, 0x8e19f00,15, 0x8e19f40,15, 0x8e19f80,15, 0x8e19fc0,15, 0x8e1a000,15, 0x8e1a040,15, 0x8e1a080,15, 0x8e1a0c0,15, 0x8e1a100,15, 0x8e1a140,15, 0x8e1a180,15, 0x8e1a1c0,15, 0x8e1a200,15, 0x8e1a240,15, 0x8e1a280,15, 0x8e1a2c0,15, 0x8e1a300,15, 0x8e1a340,15, 0x8e1a380,15, 0x8e1a3c0,15, 0x8e1a400,15, 0x8e1a440,15, 0x8e1a480,15, 0x8e1a4c0,15, 0x8e1a500,15, 0x8e1a540,15, 0x8e1a580,15, 0x8e1a5c0,15, 0x8e1a600,15, 0x8e1a640,15, 0x8e1a680,15, 0x8e1a6c0,15, 0x8e1a700,15, 0x8e1a740,15, 0x8e1a780,15, 0x8e1a7c0,15, 0x8e1a800,15, 0x8e1a840,15, 0x8e1a880,15, 0x8e1a8c0,15, 0x8e1a900,15, 0x8e1a940,15, 0x8e1a980,15, 0x8e1a9c0,15, 0x8e1aa00,15, 0x8e1aa40,15, 0x8e1aa80,15, 0x8e1aac0,15, 0x8e1ab00,15, 0x8e1ab40,15, 0x8e1ab80,15, 0x8e1abc0,15, 0x8e1ac00,15, 0x8e1ac40,15, 0x8e1ac80,15, 0x8e1acc0,15, 0x8e1ad00,15, 0x8e1ad40,15, 0x8e1ad80,15, 0x8e1adc0,15, 0x8e1ae00,15, 0x8e1ae40,15, 0x8e1ae80,15, 0x8e1aec0,15, 0x8e1af00,15, 0x8e1af40,15, 0x8e1af80,15, 0x8e1afc0,15, 0x8e1b000,15, 0x8e1b040,15, 0x8e1b080,15, 0x8e1b0c0,15, 0x8e1b100,15, 0x8e1b140,15, 0x8e1b180,15, 0x8e1b1c0,15, 0x8e1b200,15, 0x8e1b240,15, 0x8e1b280,15, 0x8e1b2c0,15, 0x8e1b300,15, 0x8e1b340,15, 0x8e1b380,15, 0x8e1b3c0,15, 0x8e1b400,15, 0x8e1b440,15, 0x8e1b480,15, 0x8e1b4c0,15, 0x8e1b500,15, 0x8e1b540,15, 0x8e1b580,15, 0x8e1b5c0,15, 0x8e1b600,15, 0x8e1b640,15, 0x8e1b680,15, 0x8e1b6c0,15, 0x8e1b700,15, 0x8e1b740,15, 0x8e1b780,15, 0x8e1b7c0,15, 0x8e1b800,15, 0x8e1b840,15, 0x8e1b880,15, 0x8e1b8c0,15, 0x8e1b900,15, 0x8e1b940,15, 0x8e1b980,15, 0x8e1b9c0,15, 0x8e1ba00,15, 0x8e1ba40,15, 0x8e1ba80,15, 0x8e1bac0,15, 0x8e1bb00,15, 0x8e1bb40,15, 0x8e1bb80,15, 0x8e1bbc0,15, 0x8e1bc00,15, 0x8e1bc40,15, 0x8e1bc80,15, 0x8e1bcc0,15, 0x8e1bd00,15, 0x8e1bd40,15, 0x8e1bd80,15, 0x8e1bdc0,15, 0x8e1be00,15, 0x8e1be40,15, 0x8e1be80,15, 0x8e1bec0,15, 0x8e1bf00,15, 0x8e1bf40,15, 0x8e1bf80,15, 0x8e1bfc0,15, 0x8e1c000,15, 0x8e1c040,15, 0x8e1c080,15, 0x8e1c0c0,15, 0x8e1c100,15, 0x8e1c140,15, 0x8e1c180,15, 0x8e1c1c0,15, 0x8e1c200,15, 0x8e1c240,15, 0x8e1c280,15, 0x8e1c2c0,15, 0x8e1c300,15, 0x8e1c340,15, 0x8e1c380,15, 0x8e1c3c0,15, 0x8e1c400,15, 0x8e1c440,15, 0x8e1c480,15, 0x8e1c4c0,15, 0x8e1c500,15, 0x8e1c540,15, 0x8e1c580,15, 0x8e1c5c0,15, 0x8e1c600,15, 0x8e1c640,15, 0x8e1c680,15, 0x8e1c6c0,15, 0x8e1c700,15, 0x8e1c740,15, 0x8e1c780,15, 0x8e1c7c0,15, 0x8e1c800,15, 0x8e1c840,15, 0x8e1c880,15, 0x8e1c8c0,15, 0x8e1c900,15, 0x8e1c940,15, 0x8e1c980,15, 0x8e1c9c0,15, 0x8e1ca00,15, 0x8e1ca40,15, 0x8e1ca80,15, 0x8e1cac0,15, 0x8e1cb00,15, 0x8e1cb40,15, 0x8e1cb80,15, 0x8e1cbc0,15, 0x8e1cc00,15, 0x8e1cc40,15, 0x8e1cc80,15, 0x8e1ccc0,15, 0x8e1cd00,15, 0x8e1cd40,15, 0x8e1cd80,15, 0x8e1cdc0,15, 0x8e1ce00,15, 0x8e1ce40,15, 0x8e1ce80,15, 0x8e1cec0,15, 0x8e1cf00,15, 0x8e1cf40,15, 0x8e1cf80,15, 0x8e1cfc0,15, 0x8e1d000,15, 0x8e1d040,15, 0x8e1d080,15, 0x8e1d0c0,15, 0x8e1d100,15, 0x8e1d140,15, 0x8e1d180,15, 0x8e1d1c0,15, 0x8e1d200,15, 0x8e1d240,15, 0x8e1d280,15, 0x8e1d2c0,15, 0x8e1d300,15, 0x8e1d340,15, 0x8e1d380,15, 0x8e1d3c0,15, 0x8e1d400,15, 0x8e1d440,15, 0x8e1d480,15, 0x8e1d4c0,15, 0x8e1d500,15, 0x8e1d540,15, 0x8e1d580,15, 0x8e1d5c0,15, 0x8e1d600,15, 0x8e1d640,15, 0x8e1d680,15, 0x8e1d6c0,15, 0x8e1d700,15, 0x8e1d740,15, 0x8e1d780,15, 0x8e1d7c0,15, 0x8e1d800,15, 0x8e1d840,15, 0x8e1d880,15, 0x8e1d8c0,15, 0x8e1d900,15, 0x8e1d940,15, 0x8e1d980,15, 0x8e1d9c0,15, 0x8e1da00,15, 0x8e1da40,15, 0x8e1da80,15, 0x8e1dac0,15, 0x8e1db00,15, 0x8e1db40,15, 0x8e1db80,15, 0x8e1dbc0,15, 0x8e1dc00,15, 0x8e1dc40,15, 0x8e1dc80,15, 0x8e1dcc0,15, 0x8e1dd00,15, 0x8e1dd40,15, 0x8e1dd80,15, 0x8e1ddc0,15, 0x8e1de00,15, 0x8e1de40,15, 0x8e1de80,15, 0x8e1dec0,15, 0x8e1df00,15, 0x8e1df40,15, 0x8e1df80,15, 0x8e1dfc0,15, 0x8e1e000,15, 0x8e1e040,15, 0x8e1e080,15, 0x8e1e0c0,15, 0x8e1e100,15, 0x8e1e140,15, 0x8e1e180,15, 0x8e1e1c0,15, 0x8e1e200,15, 0x8e1e240,15, 0x8e1e280,15, 0x8e1e2c0,15, 0x8e1e300,15, 0x8e1e340,15, 0x8e1e380,15, 0x8e1e3c0,15, 0x8e1e400,15, 0x8e1e440,15, 0x8e1e480,15, 0x8e1e4c0,15, 0x8e1e500,15, 0x8e1e540,15, 0x8e1e580,15, 0x8e1e5c0,15, 0x8e1e600,15, 0x8e1e640,15, 0x8e1e680,15, 0x8e1e6c0,15, 0x8e1e700,15, 0x8e1e740,15, 0x8e1e780,15, 0x8e1e7c0,15, 0x8e1e800,15, 0x8e1e840,15, 0x8e1e880,15, 0x8e1e8c0,15, 0x8e1e900,15, 0x8e1e940,15, 0x8e1e980,15, 0x8e1e9c0,15, 0x8e1ea00,15, 0x8e1ea40,15, 0x8e1ea80,15, 0x8e1eac0,15, 0x8e1eb00,15, 0x8e1eb40,15, 0x8e1eb80,15, 0x8e1ebc0,15, 0x8e1ec00,15, 0x8e1ec40,15, 0x8e1ec80,15, 0x8e1ecc0,15, 0x8e1ed00,15, 0x8e1ed40,15, 0x8e1ed80,15, 0x8e1edc0,15, 0x8e1ee00,15, 0x8e1ee40,15, 0x8e1ee80,15, 0x8e1eec0,15, 0x8e1ef00,15, 0x8e1ef40,15, 0x8e1ef80,15, 0x8e1efc0,15, 0x8e1f000,15, 0x8e1f040,15, 0x8e1f080,15, 0x8e1f0c0,15, 0x8e1f100,15, 0x8e1f140,15, 0x8e1f180,15, 0x8e1f1c0,15, 0x8e1f200,15, 0x8e1f240,15, 0x8e1f280,15, 0x8e1f2c0,15, 0x8e1f300,15, 0x8e1f340,15, 0x8e1f380,15, 0x8e1f3c0,15, 0x8e1f400,15, 0x8e1f440,15, 0x8e1f480,15, 0x8e1f4c0,15, 0x8e1f500,15, 0x8e1f540,15, 0x8e1f580,15, 0x8e1f5c0,15, 0x8e1f600,15, 0x8e1f640,15, 0x8e1f680,15, 0x8e1f6c0,15, 0x8e1f700,15, 0x8e1f740,15, 0x8e1f780,15, 0x8e1f7c0,15, 0x8e1f800,15, 0x8e1f840,15, 0x8e1f880,15, 0x8e1f8c0,15, 0x8e1f900,15, 0x8e1f940,15, 0x8e1f980,15, 0x8e1f9c0,15, 0x8e1fa00,15, 0x8e1fa40,15, 0x8e1fa80,15, 0x8e1fac0,15, 0x8e1fb00,15, 0x8e1fb40,15, 0x8e1fb80,15, 0x8e1fbc0,15, 0x8e1fc00,15, 0x8e1fc40,15, 0x8e1fc80,15, 0x8e1fcc0,15, 0x8e1fd00,15, 0x8e1fd40,15, 0x8e1fd80,15, 0x8e1fdc0,15, 0x8e1fe00,15, 0x8e1fe40,15, 0x8e1fe80,15, 0x8e1fec0,15, 0x8e1ff00,15, 0x8e1ff40,15, 0x8e1ff80,15, 0x8e1ffc0,15, 0x8e20000,15, 0x8e20040,15, 0x8e20080,15, 0x8e200c0,15, 0x8e20100,15, 0x8e20140,15, 0x8e20180,15, 0x8e201c0,15, 0x8e20200,15, 0x8e20240,15, 0x8e20280,15, 0x8e202c0,15, 0x8e20300,15, 0x8e20340,15, 0x8e20380,15, 0x8e203c0,15, 0x8e20400,15, 0x8e20440,15, 0x8e20480,15, 0x8e204c0,15, 0x8e20500,15, 0x8e20540,15, 0x8e20580,15, 0x8e205c0,15, 0x8e20600,15, 0x8e20640,15, 0x8e20680,15, 0x8e206c0,15, 0x8e20700,15, 0x8e20740,15, 0x8e20780,15, 0x8e207c0,15, 0x8e20800,15, 0x8e20840,15, 0x8e20880,15, 0x8e208c0,15, 0x8e20900,15, 0x8e20940,15, 0x8e20980,15, 0x8e209c0,15, 0x8e20a00,15, 0x8e20a40,15, 0x8e20a80,15, 0x8e20ac0,15, 0x8e20b00,15, 0x8e20b40,15, 0x8e20b80,15, 0x8e20bc0,15, 0x8e20c00,15, 0x8e20c40,15, 0x8e20c80,15, 0x8e20cc0,15, 0x8e20d00,15, 0x8e20d40,15, 0x8e20d80,15, 0x8e20dc0,15, 0x8e20e00,15, 0x8e20e40,15, 0x8e20e80,15, 0x8e20ec0,15, 0x8e20f00,15, 0x8e20f40,15, 0x8e20f80,15, 0x8e20fc0,15, 0x8e21000,15, 0x8e21040,15, 0x8e21080,15, 0x8e210c0,15, 0x8e21100,15, 0x8e21140,15, 0x8e21180,15, 0x8e211c0,15, 0x8e21200,15, 0x8e21240,15, 0x8e21280,15, 0x8e212c0,15, 0x8e21300,15, 0x8e21340,15, 0x8e21380,15, 0x8e213c0,15, 0x8e21400,15, 0x8e21440,15, 0x8e21480,15, 0x8e214c0,15, 0x8e21500,15, 0x8e21540,15, 0x8e21580,15, 0x8e215c0,15, 0x8e21600,15, 0x8e21640,15, 0x8e21680,15, 0x8e216c0,15, 0x8e21700,15, 0x8e21740,15, 0x8e21780,15, 0x8e217c0,15, 0x8e21800,15, 0x8e21840,15, 0x8e21880,15, 0x8e218c0,15, 0x8e21900,15, 0x8e21940,15, 0x8e21980,15, 0x8e219c0,15, 0x8e21a00,15, 0x8e21a40,15, 0x8e21a80,15, 0x8e21ac0,15, 0x8e21b00,15, 0x8e21b40,15, 0x8e21b80,15, 0x8e21bc0,15, 0x8e21c00,15, 0x8e21c40,15, 0x8e21c80,15, 0x8e21cc0,15, 0x8e21d00,15, 0x8e21d40,15, 0x8e21d80,15, 0x8e21dc0,15, 0x8e21e00,15, 0x8e21e40,15, 0x8e21e80,15, 0x8e21ec0,15, 0x8e21f00,15, 0x8e21f40,15, 0x8e21f80,15, 0x8e21fc0,15, 0x8e22000,15, 0x8e22040,15, 0x8e22080,15, 0x8e220c0,15, 0x8e22100,15, 0x8e22140,15, 0x8e22180,15, 0x8e221c0,15, 0x8e22200,15, 0x8e22240,15, 0x8e22280,15, 0x8e222c0,15, 0x8e22300,15, 0x8e22340,15, 0x8e22380,15, 0x8e223c0,15, 0x8e22400,15, 0x8e22440,15, 0x8e22480,15, 0x8e224c0,15, 0x8e22500,15, 0x8e22540,15, 0x8e22580,15, 0x8e225c0,15, 0x8e22600,15, 0x8e22640,15, 0x8e22680,15, 0x8e226c0,15, 0x8e22700,15, 0x8e22740,15, 0x8e22780,15, 0x8e227c0,15, 0x8e22800,15, 0x8e22840,15, 0x8e22880,15, 0x8e228c0,15, 0x8e22900,15, 0x8e22940,15, 0x8e22980,15, 0x8e229c0,15, 0x8e22a00,15, 0x8e22a40,15, 0x8e22a80,15, 0x8e22ac0,15, 0x8e22b00,15, 0x8e22b40,15, 0x8e22b80,15, 0x8e22bc0,15, 0x8e22c00,15, 0x8e22c40,15, 0x8e22c80,15, 0x8e22cc0,15, 0x8e22d00,15, 0x8e22d40,15, 0x8e22d80,15, 0x8e22dc0,15, 0x8e22e00,15, 0x8e22e40,15, 0x8e22e80,15, 0x8e22ec0,15, 0x8e22f00,15, 0x8e22f40,15, 0x8e22f80,15, 0x8e22fc0,15, 0x8e23000,15, 0x8e23040,15, 0x8e23080,15, 0x8e230c0,15, 0x8e23100,15, 0x8e23140,15, 0x8e23180,15, 0x8e231c0,15, 0x8e23200,15, 0x8e23240,15, 0x8e23280,15, 0x8e232c0,15, 0x8e23300,15, 0x8e23340,15, 0x8e23380,15, 0x8e233c0,15, 0x8e23400,15, 0x8e23440,15, 0x8e23480,15, 0x8e234c0,15, 0x8e23500,15, 0x8e23540,15, 0x8e23580,15, 0x8e235c0,15, 0x8e23600,15, 0x8e23640,15, 0x8e23680,15, 0x8e236c0,15, 0x8e23700,15, 0x8e23740,15, 0x8e23780,15, 0x8e237c0,15, 0x8e23800,15, 0x8e23840,15, 0x8e23880,15, 0x8e238c0,15, 0x8e23900,15, 0x8e23940,15, 0x8e23980,15, 0x8e239c0,15, 0x8e23a00,15, 0x8e23a40,15, 0x8e23a80,15, 0x8e23ac0,15, 0x8e23b00,15, 0x8e23b40,15, 0x8e23b80,15, 0x8e23bc0,15, 0x8e23c00,15, 0x8e23c40,15, 0x8e23c80,15, 0x8e23cc0,15, 0x8e23d00,15, 0x8e23d40,15, 0x8e23d80,15, 0x8e23dc0,15, 0x8e23e00,15, 0x8e23e40,15, 0x8e23e80,15, 0x8e23ec0,15, 0x8e23f00,15, 0x8e23f40,15, 0x8e23f80,15, 0x8e23fc0,15, 0x8e24000,15, 0x8e24040,15, 0x8e24080,15, 0x8e240c0,15, 0x8e24100,15, 0x8e24140,15, 0x8e24180,15, 0x8e241c0,15, 0x8e24200,15, 0x8e24240,15, 0x8e24280,15, 0x8e242c0,15, 0x8e24300,15, 0x8e24340,15, 0x8e24380,15, 0x8e243c0,15, 0x8e24400,15, 0x8e24440,15, 0x8e24480,15, 0x8e244c0,15, 0x8e24500,15, 0x8e24540,15, 0x8e24580,15, 0x8e245c0,15, 0x8e24600,15, 0x8e24640,15, 0x8e24680,15, 0x8e246c0,15, 0x8e24700,15, 0x8e24740,15, 0x8e24780,15, 0x8e247c0,15, 0x8e24800,15, 0x8e24840,15, 0x8e24880,15, 0x8e248c0,15, 0x8e24900,15, 0x8e24940,15, 0x8e24980,15, 0x8e249c0,15, 0x8e24a00,15, 0x8e24a40,15, 0x8e24a80,15, 0x8e24ac0,15, 0x8e24b00,15, 0x8e24b40,15, 0x8e24b80,15, 0x8e24bc0,15, 0x8e24c00,15, 0x8e24c40,15, 0x8e24c80,15, 0x8e24cc0,15, 0x8e24d00,15, 0x8e24d40,15, 0x8e24d80,15, 0x8e24dc0,15, 0x8e24e00,15, 0x8e24e40,15, 0x8e24e80,15, 0x8e24ec0,15, 0x8e24f00,15, 0x8e24f40,15, 0x8e24f80,15, 0x8e24fc0,15, 0x8e25000,15, 0x8e25040,15, 0x8e25080,15, 0x8e250c0,15, 0x8e25100,15, 0x8e25140,15, 0x8e25180,15, 0x8e251c0,15, 0x8e25200,15, 0x8e25240,15, 0x8e25280,15, 0x8e252c0,15, 0x8e25300,15, 0x8e25340,15, 0x8e25380,15, 0x8e253c0,15, 0x8e25400,15, 0x8e25440,15, 0x8e25480,15, 0x8e254c0,15, 0x8e25500,15, 0x8e25540,15, 0x8e25580,15, 0x8e255c0,15, 0x8e25600,15, 0x8e25640,15, 0x8e25680,15, 0x8e256c0,15, 0x8e25700,15, 0x8e25740,15, 0x8e25780,15, 0x8e257c0,15, 0x8e25800,15, 0x8e25840,15, 0x8e25880,15, 0x8e258c0,15, 0x8e25900,15, 0x8e25940,15, 0x8e25980,15, 0x8e259c0,15, 0x8e25a00,15, 0x8e25a40,15, 0x8e25a80,15, 0x8e25ac0,15, 0x8e25b00,15, 0x8e25b40,15, 0x8e25b80,15, 0x8e25bc0,15, 0x8e25c00,15, 0x8e25c40,15, 0x8e25c80,15, 0x8e25cc0,15, 0x8e25d00,15, 0x8e25d40,15, 0x8e25d80,15, 0x8e25dc0,15, 0x8e25e00,15, 0x8e25e40,15, 0x8e25e80,15, 0x8e25ec0,15, 0x8e25f00,15, 0x8e25f40,15, 0x8e25f80,15, 0x8e25fc0,15, 0x8e26000,15, 0x8e26040,15, 0x8e26080,15, 0x8e260c0,15, 0x8e26100,15, 0x8e26140,15, 0x8e26180,15, 0x8e261c0,15, 0x8e26200,15, 0x8e26240,15, 0x8e26280,15, 0x8e262c0,15, 0x8e26300,15, 0x8e26340,15, 0x8e26380,15, 0x8e263c0,15, 0x8e26400,15, 0x8e26440,15, 0x8e26480,15, 0x8e264c0,15, 0x8e26500,15, 0x8e26540,15, 0x8e26580,15, 0x8e265c0,15, 0x8e26600,15, 0x8e26640,15, 0x8e26680,15, 0x8e266c0,15, 0x8e26700,15, 0x8e26740,15, 0x8e26780,15, 0x8e267c0,15, 0x8e26800,15, 0x8e26840,15, 0x8e26880,15, 0x8e268c0,15, 0x8e26900,15, 0x8e26940,15, 0x8e26980,15, 0x8e269c0,15, 0x8e26a00,15, 0x8e26a40,15, 0x8e26a80,15, 0x8e26ac0,15, 0x8e26b00,15, 0x8e26b40,15, 0x8e26b80,15, 0x8e26bc0,15, 0x8e26c00,15, 0x8e26c40,15, 0x8e26c80,15, 0x8e26cc0,15, 0x8e26d00,15, 0x8e26d40,15, 0x8e26d80,15, 0x8e26dc0,15, 0x8e26e00,15, 0x8e26e40,15, 0x8e26e80,15, 0x8e26ec0,15, 0x8e26f00,15, 0x8e26f40,15, 0x8e26f80,15, 0x8e26fc0,15, 0x8e27000,15, 0x8e27040,15, 0x8e27080,15, 0x8e270c0,15, 0x8e27100,15, 0x8e27140,15, 0x8e27180,15, 0x8e271c0,15, 0x8e27200,15, 0x8e27240,15, 0x8e27280,15, 0x8e272c0,15, 0x8e27300,15, 0x8e27340,15, 0x8e27380,15, 0x8e273c0,15, 0x8e27400,15, 0x8e27440,15, 0x8e27480,15, 0x8e274c0,15, 0x8e27500,15, 0x8e27540,15, 0x8e27580,15, 0x8e275c0,15, 0x8e27600,15, 0x8e27640,15, 0x8e27680,15, 0x8e276c0,15, 0x8e27700,15, 0x8e27740,15, 0x8e27780,15, 0x8e277c0,15, 0x8e27800,15, 0x8e27840,15, 0x8e27880,15, 0x8e278c0,15, 0x8e27900,15, 0x8e27940,15, 0x8e27980,15, 0x8e279c0,15, 0x8e27a00,15, 0x8e27a40,15, 0x8e27a80,15, 0x8e27ac0,15, 0x8e27b00,15, 0x8e27b40,15, 0x8e27b80,15, 0x8e27bc0,15, 0x8e27c00,15, 0x8e27c40,15, 0x8e27c80,15, 0x8e27cc0,15, 0x8e27d00,15, 0x8e27d40,15, 0x8e27d80,15, 0x8e27dc0,15, 0x8e27e00,15, 0x8e27e40,15, 0x8e27e80,15, 0x8e27ec0,15, 0x8e27f00,15, 0x8e27f40,15, 0x8e27f80,15, 0x8e27fc0,15, 0x8e28000,15, 0x8e28040,15, 0x8e28080,15, 0x8e280c0,15, 0x8e28100,15, 0x8e28140,15, 0x8e28180,15, 0x8e281c0,15, 0x8e28200,15, 0x8e28240,15, 0x8e28280,15, 0x8e282c0,15, 0x8e28300,15, 0x8e28340,15, 0x8e28380,15, 0x8e283c0,15, 0x8e28400,15, 0x8e28440,15, 0x8e28480,15, 0x8e284c0,15, 0x8e28500,15, 0x8e28540,15, 0x8e28580,15, 0x8e285c0,15, 0x8e28600,15, 0x8e28640,15, 0x8e28680,15, 0x8e286c0,15, 0x8e28700,15, 0x8e28740,15, 0x8e28780,15, 0x8e287c0,15, 0x8e28800,15, 0x8e28840,15, 0x8e28880,15, 0x8e288c0,15, 0x8e28900,15, 0x8e28940,15, 0x8e28980,15, 0x8e289c0,15, 0x8e28a00,15, 0x8e28a40,15, 0x8e28a80,15, 0x8e28ac0,15, 0x8e28b00,15, 0x8e28b40,15, 0x8e28b80,15, 0x8e28bc0,15, 0x8e28c00,15, 0x8e28c40,15, 0x8e28c80,15, 0x8e28cc0,15, 0x8e28d00,15, 0x8e28d40,15, 0x8e28d80,15, 0x8e28dc0,15, 0x8e28e00,15, 0x8e28e40,15, 0x8e28e80,15, 0x8e28ec0,15, 0x8e28f00,15, 0x8e28f40,15, 0x8e28f80,15, 0x8e28fc0,15, 0x8e29000,15, 0x8e29040,15, 0x8e29080,15, 0x8e290c0,15, 0x8e29100,15, 0x8e29140,15, 0x8e29180,15, 0x8e291c0,15, 0x8e29200,15, 0x8e29240,15, 0x8e29280,15, 0x8e292c0,15, 0x8e29300,15, 0x8e29340,15, 0x8e29380,15, 0x8e293c0,15, 0x8e29400,15, 0x8e29440,15, 0x8e29480,15, 0x8e294c0,15, 0x8e29500,15, 0x8e29540,15, 0x8e29580,15, 0x8e295c0,15, 0x8e29600,15, 0x8e29640,15, 0x8e29680,15, 0x8e296c0,15, 0x8e29700,15, 0x8e29740,15, 0x8e29780,15, 0x8e297c0,15, 0x8e29800,15, 0x8e29840,15, 0x8e29880,15, 0x8e298c0,15, 0x8e29900,15, 0x8e29940,15, 0x8e29980,15, 0x8e299c0,15, 0x8e29a00,15, 0x8e29a40,15, 0x8e29a80,15, 0x8e29ac0,15, 0x8e29b00,15, 0x8e29b40,15, 0x8e29b80,15, 0x8e29bc0,15, 0x8e29c00,15, 0x8e29c40,15, 0x8e29c80,15, 0x8e29cc0,15, 0x8e29d00,15, 0x8e29d40,15, 0x8e29d80,15, 0x8e29dc0,15, 0x8e29e00,15, 0x8e29e40,15, 0x8e29e80,15, 0x8e29ec0,15, 0x8e29f00,15, 0x8e29f40,15, 0x8e29f80,15, 0x8e29fc0,15, 0x8e2a000,15, 0x8e2a040,15, 0x8e2a080,15, 0x8e2a0c0,15, 0x8e2a100,15, 0x8e2a140,15, 0x8e2a180,15, 0x8e2a1c0,15, 0x8e2a200,15, 0x8e2a240,15, 0x8e2a280,15, 0x8e2a2c0,15, 0x8e2a300,15, 0x8e2a340,15, 0x8e2a380,15, 0x8e2a3c0,15, 0x8e2a400,15, 0x8e2a440,15, 0x8e2a480,15, 0x8e2a4c0,15, 0x8e2a500,15, 0x8e2a540,15, 0x8e2a580,15, 0x8e2a5c0,15, 0x8e2a600,15, 0x8e2a640,15, 0x8e2a680,15, 0x8e2a6c0,15, 0x8e2a700,15, 0x8e2a740,15, 0x8e2a780,15, 0x8e2a7c0,15, 0x8e2a800,15, 0x8e2a840,15, 0x8e2a880,15, 0x8e2a8c0,15, 0x8e2a900,15, 0x8e2a940,15, 0x8e2a980,15, 0x8e2a9c0,15, 0x8e2aa00,15, 0x8e2aa40,15, 0x8e2aa80,15, 0x8e2aac0,15, 0x8e2ab00,15, 0x8e2ab40,15, 0x8e2ab80,15, 0x8e2abc0,15, 0x8e2ac00,15, 0x8e2ac40,15, 0x8e2ac80,15, 0x8e2acc0,15, 0x8e2ad00,15, 0x8e2ad40,15, 0x8e2ad80,15, 0x8e2adc0,15, 0x8e2ae00,15, 0x8e2ae40,15, 0x8e2ae80,15, 0x8e2aec0,15, 0x8e2af00,15, 0x8e2af40,15, 0x8e2af80,15, 0x8e2afc0,15, 0x8e2b000,15, 0x8e2b040,15, 0x8e2b080,15, 0x8e2b0c0,15, 0x8e2b100,15, 0x8e2b140,15, 0x8e2b180,15, 0x8e2b1c0,15, 0x8e2b200,15, 0x8e2b240,15, 0x8e2b280,15, 0x8e2b2c0,15, 0x8e2b300,15, 0x8e2b340,15, 0x8e2b380,15, 0x8e2b3c0,15, 0x8e2b400,15, 0x8e2b440,15, 0x8e2b480,15, 0x8e2b4c0,15, 0x8e2b500,15, 0x8e2b540,15, 0x8e2b580,15, 0x8e2b5c0,15, 0x8e2b600,15, 0x8e2b640,15, 0x8e2b680,15, 0x8e2b6c0,15, 0x8e2b700,15, 0x8e2b740,15, 0x8e2b780,15, 0x8e2b7c0,15, 0x8e2b800,15, 0x8e2b840,15, 0x8e2b880,15, 0x8e2b8c0,15, 0x8e2b900,15, 0x8e2b940,15, 0x8e2b980,15, 0x8e2b9c0,15, 0x8e2ba00,15, 0x8e2ba40,15, 0x8e2ba80,15, 0x8e2bac0,15, 0x8e2bb00,15, 0x8e2bb40,15, 0x8e2bb80,15, 0x8e2bbc0,15, 0x8e2bc00,15, 0x8e2bc40,15, 0x8e2bc80,15, 0x8e2bcc0,15, 0x8e2bd00,15, 0x8e2bd40,15, 0x8e2bd80,15, 0x8e2bdc0,15, 0x8e2be00,15, 0x8e2be40,15, 0x8e2be80,15, 0x8e2bec0,15, 0x8e2bf00,15, 0x8e2bf40,15, 0x8e2bf80,15, 0x8e2bfc0,15, 0x8e2c000,15, 0x8e2c040,15, 0x8e2c080,15, 0x8e2c0c0,15, 0x8e2c100,15, 0x8e2c140,15, 0x8e2c180,15, 0x8e2c1c0,15, 0x8e2c200,15, 0x8e2c240,15, 0x8e2c280,15, 0x8e2c2c0,15, 0x8e2c300,15, 0x8e2c340,15, 0x8e2c380,15, 0x8e2c3c0,15, 0x8e2c400,15, 0x8e2c440,15, 0x8e2c480,15, 0x8e2c4c0,15, 0x8e2c500,15, 0x8e2c540,15, 0x8e2c580,15, 0x8e2c5c0,15, 0x8e2c600,15, 0x8e2c640,15, 0x8e2c680,15, 0x8e2c6c0,15, 0x8e2c700,15, 0x8e2c740,15, 0x8e2c780,15, 0x8e2c7c0,15, 0x8e2c800,15, 0x8e2c840,15, 0x8e2c880,15, 0x8e2c8c0,15, 0x8e2c900,15, 0x8e2c940,15, 0x8e2c980,15, 0x8e2c9c0,15, 0x8e2ca00,15, 0x8e2ca40,15, 0x8e2ca80,15, 0x8e2cac0,15, 0x8e2cb00,15, 0x8e2cb40,15, 0x8e2cb80,15, 0x8e2cbc0,15, 0x8e2cc00,15, 0x8e2cc40,15, 0x8e2cc80,15, 0x8e2ccc0,15, 0x8e2cd00,15, 0x8e2cd40,15, 0x8e2cd80,15, 0x8e2cdc0,15, 0x8e2ce00,15, 0x8e2ce40,15, 0x8e2ce80,15, 0x8e2cec0,15, 0x8e2cf00,15, 0x8e2cf40,15, 0x8e2cf80,15, 0x8e2cfc0,15, 0x8e2d000,15, 0x8e2d040,15, 0x8e2d080,15, 0x8e2d0c0,15, 0x8e2d100,15, 0x8e2d140,15, 0x8e2d180,15, 0x8e2d1c0,15, 0x8e2d200,15, 0x8e2d240,15, 0x8e2d280,15, 0x8e2d2c0,15, 0x8e2d300,15, 0x8e2d340,15, 0x8e2d380,15, 0x8e2d3c0,15, 0x8e2d400,15, 0x8e2d440,15, 0x8e2d480,15, 0x8e2d4c0,15, 0x8e2d500,15, 0x8e2d540,15, 0x8e2d580,15, 0x8e2d5c0,15, 0x8e2d600,15, 0x8e2d640,15, 0x8e2d680,15, 0x8e2d6c0,15, 0x8e2d700,15, 0x8e2d740,15, 0x8e2d780,15, 0x8e2d7c0,15, 0x8e2d800,15, 0x8e2d840,15, 0x8e2d880,15, 0x8e2d8c0,15, 0x8e2d900,15, 0x8e2d940,15, 0x8e2d980,15, 0x8e2d9c0,15, 0x8e2da00,15, 0x8e2da40,15, 0x8e2da80,15, 0x8e2dac0,15, 0x8e2db00,15, 0x8e2db40,15, 0x8e2db80,15, 0x8e2dbc0,15, 0x8e2dc00,15, 0x8e2dc40,15, 0x8e2dc80,15, 0x8e2dcc0,15, 0x8e2dd00,15, 0x8e2dd40,15, 0x8e2dd80,15, 0x8e2ddc0,15, 0x8e2de00,15, 0x8e2de40,15, 0x8e2de80,15, 0x8e2dec0,15, 0x8e2df00,15, 0x8e2df40,15, 0x8e2df80,15, 0x8e2dfc0,15, 0x8e2e000,15, 0x8e2e040,15, 0x8e2e080,15, 0x8e2e0c0,15, 0x8e2e100,15, 0x8e2e140,15, 0x8e2e180,15, 0x8e2e1c0,15, 0x8e2e200,15, 0x8e2e240,15, 0x8e2e280,15, 0x8e2e2c0,15, 0x8e2e300,15, 0x8e2e340,15, 0x8e2e380,15, 0x8e2e3c0,15, 0x8e2e400,15, 0x8e2e440,15, 0x8e2e480,15, 0x8e2e4c0,15, 0x8e2e500,15, 0x8e2e540,15, 0x8e2e580,15, 0x8e2e5c0,15, 0x8e2e600,15, 0x8e2e640,15, 0x8e2e680,15, 0x8e2e6c0,15, 0x8e2e700,15, 0x8e2e740,15, 0x8e2e780,15, 0x8e2e7c0,15, 0x8e2e800,15, 0x8e2e840,15, 0x8e2e880,15, 0x8e2e8c0,15, 0x8e2e900,15, 0x8e2e940,15, 0x8e2e980,15, 0x8e2e9c0,15, 0x8e2ea00,15, 0x8e2ea40,15, 0x8e2ea80,15, 0x8e2eac0,15, 0x8e2eb00,15, 0x8e2eb40,15, 0x8e2eb80,15, 0x8e2ebc0,15, 0x8e2ec00,15, 0x8e2ec40,15, 0x8e2ec80,15, 0x8e2ecc0,15, 0x8e2ed00,15, 0x8e2ed40,15, 0x8e2ed80,15, 0x8e2edc0,15, 0x8e2ee00,15, 0x8e2ee40,15, 0x8e2ee80,15, 0x8e2eec0,15, 0x8e2ef00,15, 0x8e2ef40,15, 0x8e2ef80,15, 0x8e2efc0,15, 0x8e2f000,15, 0x8e2f040,15, 0x8e2f080,15, 0x8e2f0c0,15, 0x8e2f100,15, 0x8e2f140,15, 0x8e2f180,15, 0x8e2f1c0,15, 0x8e2f200,15, 0x8e2f240,15, 0x8e2f280,15, 0x8e2f2c0,15, 0x8e2f300,15, 0x8e2f340,15, 0x8e2f380,15, 0x8e2f3c0,15, 0x8e2f400,15, 0x8e2f440,15, 0x8e2f480,15, 0x8e2f4c0,15, 0x8e2f500,15, 0x8e2f540,15, 0x8e2f580,15, 0x8e2f5c0,15, 0x8e2f600,15, 0x8e2f640,15, 0x8e2f680,15, 0x8e2f6c0,15, 0x8e2f700,15, 0x8e2f740,15, 0x8e2f780,15, 0x8e2f7c0,15, 0x8e2f800,15, 0x8e2f840,15, 0x8e2f880,15, 0x8e2f8c0,15, 0x8e2f900,15, 0x8e2f940,15, 0x8e2f980,15, 0x8e2f9c0,15, 0x8e2fa00,15, 0x8e2fa40,15, 0x8e2fa80,15, 0x8e2fac0,15, 0x8e2fb00,15, 0x8e2fb40,15, 0x8e2fb80,15, 0x8e2fbc0,15, 0x8e2fc00,15, 0x8e2fc40,15, 0x8e2fc80,15, 0x8e2fcc0,15, 0x8e2fd00,15, 0x8e2fd40,15, 0x8e2fd80,15, 0x8e2fdc0,15, 0x8e2fe00,15, 0x8e2fe40,15, 0x8e2fe80,15, 0x8e2fec0,15, 0x8e2ff00,15, 0x8e2ff40,15, 0x8e2ff80,15, 0x8e2ffc0,15, 0x8e30000,15, 0x8e30040,15, 0x8e30080,15, 0x8e300c0,15, 0x8e30100,15, 0x8e30140,15, 0x8e30180,15, 0x8e301c0,15, 0x8e30200,15, 0x8e30240,15, 0x8e30280,15, 0x8e302c0,15, 0x8e30300,15, 0x8e30340,15, 0x8e30380,15, 0x8e303c0,15, 0x8e30400,15, 0x8e30440,15, 0x8e30480,15, 0x8e304c0,15, 0x8e30500,15, 0x8e30540,15, 0x8e30580,15, 0x8e305c0,15, 0x8e30600,15, 0x8e30640,15, 0x8e30680,15, 0x8e306c0,15, 0x8e30700,15, 0x8e30740,15, 0x8e30780,15, 0x8e307c0,15, 0x8e30800,15, 0x8e30840,15, 0x8e30880,15, 0x8e308c0,15, 0x8e30900,15, 0x8e30940,15, 0x8e30980,15, 0x8e309c0,15, 0x8e30a00,15, 0x8e30a40,15, 0x8e30a80,15, 0x8e30ac0,15, 0x8e30b00,15, 0x8e30b40,15, 0x8e30b80,15, 0x8e30bc0,15, 0x8e30c00,15, 0x8e30c40,15, 0x8e30c80,15, 0x8e30cc0,15, 0x8e30d00,15, 0x8e30d40,15, 0x8e30d80,15, 0x8e30dc0,15, 0x8e30e00,15, 0x8e30e40,15, 0x8e30e80,15, 0x8e30ec0,15, 0x8e30f00,15, 0x8e30f40,15, 0x8e30f80,15, 0x8e30fc0,15, 0x8e31000,15, 0x8e31040,15, 0x8e31080,15, 0x8e310c0,15, 0x8e31100,15, 0x8e31140,15, 0x8e31180,15, 0x8e311c0,15, 0x8e31200,15, 0x8e31240,15, 0x8e31280,15, 0x8e312c0,15, 0x8e31300,15, 0x8e31340,15, 0x8e31380,15, 0x8e313c0,15, 0x8e31400,15, 0x8e31440,15, 0x8e31480,15, 0x8e314c0,15, 0x8e31500,15, 0x8e31540,15, 0x8e31580,15, 0x8e315c0,15, 0x8e31600,15, 0x8e31640,15, 0x8e31680,15, 0x8e316c0,15, 0x8e31700,15, 0x8e31740,15, 0x8e31780,15, 0x8e317c0,15, 0x8e31800,15, 0x8e31840,15, 0x8e31880,15, 0x8e318c0,15, 0x8e31900,15, 0x8e31940,15, 0x8e31980,15, 0x8e319c0,15, 0x8e31a00,15, 0x8e31a40,15, 0x8e31a80,15, 0x8e31ac0,15, 0x8e31b00,15, 0x8e31b40,15, 0x8e31b80,15, 0x8e31bc0,15, 0x8e31c00,15, 0x8e31c40,15, 0x8e31c80,15, 0x8e31cc0,15, 0x8e31d00,15, 0x8e31d40,15, 0x8e31d80,15, 0x8e31dc0,15, 0x8e31e00,15, 0x8e31e40,15, 0x8e31e80,15, 0x8e31ec0,15, 0x8e31f00,15, 0x8e31f40,15, 0x8e31f80,15, 0x8e31fc0,15, 0x8e32000,15, 0x8e32040,15, 0x8e32080,15, 0x8e320c0,15, 0x8e32100,15, 0x8e32140,15, 0x8e32180,15, 0x8e321c0,15, 0x8e32200,15, 0x8e32240,15, 0x8e32280,15, 0x8e322c0,15, 0x8e32300,15, 0x8e32340,15, 0x8e32380,15, 0x8e323c0,15, 0x8e32400,15, 0x8e32440,15, 0x8e32480,15, 0x8e324c0,15, 0x8e32500,15, 0x8e32540,15, 0x8e32580,15, 0x8e325c0,15, 0x8e32600,15, 0x8e32640,15, 0x8e32680,15, 0x8e326c0,15, 0x8e32700,15, 0x8e32740,15, 0x8e32780,15, 0x8e327c0,15, 0x8e32800,15, 0x8e32840,15, 0x8e32880,15, 0x8e328c0,15, 0x8e32900,15, 0x8e32940,15, 0x8e32980,15, 0x8e329c0,15, 0x8e32a00,15, 0x8e32a40,15, 0x8e32a80,15, 0x8e32ac0,15, 0x8e32b00,15, 0x8e32b40,15, 0x8e32b80,15, 0x8e32bc0,15, 0x8e32c00,15, 0x8e32c40,15, 0x8e32c80,15, 0x8e32cc0,15, 0x8e32d00,15, 0x8e32d40,15, 0x8e32d80,15, 0x8e32dc0,15, 0x8e32e00,15, 0x8e32e40,15, 0x8e32e80,15, 0x8e32ec0,15, 0x8e32f00,15, 0x8e32f40,15, 0x8e32f80,15, 0x8e32fc0,15, 0x8e33000,15, 0x8e33040,15, 0x8e33080,15, 0x8e330c0,15, 0x8e33100,15, 0x8e33140,15, 0x8e33180,15, 0x8e331c0,15, 0x8e33200,15, 0x8e33240,15, 0x8e33280,15, 0x8e332c0,15, 0x8e33300,15, 0x8e33340,15, 0x8e33380,15, 0x8e333c0,15, 0x8e33400,15, 0x8e33440,15, 0x8e33480,15, 0x8e334c0,15, 0x8e33500,15, 0x8e33540,15, 0x8e33580,15, 0x8e335c0,15, 0x8e33600,15, 0x8e33640,15, 0x8e33680,15, 0x8e336c0,15, 0x8e33700,15, 0x8e33740,15, 0x8e33780,15, 0x8e337c0,15, 0x8e33800,15, 0x8e33840,15, 0x8e33880,15, 0x8e338c0,15, 0x8e33900,15, 0x8e33940,15, 0x8e33980,15, 0x8e339c0,15, 0x8e33a00,15, 0x8e33a40,15, 0x8e33a80,15, 0x8e33ac0,15, 0x8e33b00,15, 0x8e33b40,15, 0x8e33b80,15, 0x8e33bc0,15, 0x8e33c00,15, 0x8e33c40,15, 0x8e33c80,15, 0x8e33cc0,15, 0x8e33d00,15, 0x8e33d40,15, 0x8e33d80,15, 0x8e33dc0,15, 0x8e33e00,15, 0x8e33e40,15, 0x8e33e80,15, 0x8e33ec0,15, 0x8e33f00,15, 0x8e33f40,15, 0x8e33f80,15, 0x8e33fc0,15, 0x8e34000,15, 0x8e34040,15, 0x8e34080,15, 0x8e340c0,15, 0x8e34100,15, 0x8e34140,15, 0x8e34180,15, 0x8e341c0,15, 0x8e34200,15, 0x8e34240,15, 0x8e34280,15, 0x8e342c0,15, 0x8e34300,15, 0x8e34340,15, 0x8e34380,15, 0x8e343c0,15, 0x8e34400,15, 0x8e34440,15, 0x8e34480,15, 0x8e344c0,15, 0x8e34500,15, 0x8e34540,15, 0x8e34580,15, 0x8e345c0,15, 0x8e34600,15, 0x8e34640,15, 0x8e34680,15, 0x8e346c0,15, 0x8e34700,15, 0x8e34740,15, 0x8e34780,15, 0x8e347c0,15, 0x8e34800,15, 0x8e34840,15, 0x8e34880,15, 0x8e348c0,15, 0x8e34900,15, 0x8e34940,15, 0x8e34980,15, 0x8e349c0,15, 0x8e34a00,15, 0x8e34a40,15, 0x8e34a80,15, 0x8e34ac0,15, 0x8e34b00,15, 0x8e34b40,15, 0x8e34b80,15, 0x8e34bc0,15, 0x8e34c00,15, 0x8e34c40,15, 0x8e34c80,15, 0x8e34cc0,15, 0x8e34d00,15, 0x8e34d40,15, 0x8e34d80,15, 0x8e34dc0,15, 0x8e34e00,15, 0x8e34e40,15, 0x8e34e80,15, 0x8e34ec0,15, 0x8e34f00,15, 0x8e34f40,15, 0x8e34f80,15, 0x8e34fc0,15, 0x8e35000,15, 0x8e35040,15, 0x8e35080,15, 0x8e350c0,15, 0x8e35100,15, 0x8e35140,15, 0x8e35180,15, 0x8e351c0,15, 0x8e35200,15, 0x8e35240,15, 0x8e35280,15, 0x8e352c0,15, 0x8e35300,15, 0x8e35340,15, 0x8e35380,15, 0x8e353c0,15, 0x8e35400,15, 0x8e35440,15, 0x8e35480,15, 0x8e354c0,15, 0x8e35500,15, 0x8e35540,15, 0x8e35580,15, 0x8e355c0,15, 0x8e35600,15, 0x8e35640,15, 0x8e35680,15, 0x8e356c0,15, 0x8e35700,15, 0x8e35740,15, 0x8e35780,15, 0x8e357c0,15, 0x8e35800,15, 0x8e35840,15, 0x8e35880,15, 0x8e358c0,15, 0x8e35900,15, 0x8e35940,15, 0x8e35980,15, 0x8e359c0,15, 0x8e35a00,15, 0x8e35a40,15, 0x8e35a80,15, 0x8e35ac0,15, 0x8e35b00,15, 0x8e35b40,15, 0x8e35b80,15, 0x8e35bc0,15, 0x8e35c00,15, 0x8e35c40,15, 0x8e35c80,15, 0x8e35cc0,15, 0x8e35d00,15, 0x8e35d40,15, 0x8e35d80,15, 0x8e35dc0,15, 0x8e35e00,15, 0x8e35e40,15, 0x8e35e80,15, 0x8e35ec0,15, 0x8e35f00,15, 0x8e35f40,15, 0x8e35f80,15, 0x8e35fc0,15, 0x8e36000,15, 0x8e36040,15, 0x8e36080,15, 0x8e360c0,15, 0x8e36100,15, 0x8e36140,15, 0x8e36180,15, 0x8e361c0,15, 0x8e36200,15, 0x8e36240,15, 0x8e36280,15, 0x8e362c0,15, 0x8e36300,15, 0x8e36340,15, 0x8e36380,15, 0x8e363c0,15, 0x8e36400,15, 0x8e36440,15, 0x8e36480,15, 0x8e364c0,15, 0x8e36500,15, 0x8e36540,15, 0x8e36580,15, 0x8e365c0,15, 0x8e36600,15, 0x8e36640,15, 0x8e36680,15, 0x8e366c0,15, 0x8e36700,15, 0x8e36740,15, 0x8e36780,15, 0x8e367c0,15, 0x8e36800,15, 0x8e36840,15, 0x8e36880,15, 0x8e368c0,15, 0x8e36900,15, 0x8e36940,15, 0x8e36980,15, 0x8e369c0,15, 0x8e36a00,15, 0x8e36a40,15, 0x8e36a80,15, 0x8e36ac0,15, 0x8e36b00,15, 0x8e36b40,15, 0x8e36b80,15, 0x8e36bc0,15, 0x8e36c00,15, 0x8e36c40,15, 0x8e36c80,15, 0x8e36cc0,15, 0x8e36d00,15, 0x8e36d40,15, 0x8e36d80,15, 0x8e36dc0,15, 0x8e36e00,15, 0x8e36e40,15, 0x8e36e80,15, 0x8e36ec0,15, 0x8e36f00,15, 0x8e36f40,15, 0x8e36f80,15, 0x8e36fc0,15, 0x8e37000,15, 0x8e37040,15, 0x8e37080,15, 0x8e370c0,15, 0x8e37100,15, 0x8e37140,15, 0x8e37180,15, 0x8e371c0,15, 0x8e37200,15, 0x8e37240,15, 0x8e37280,15, 0x8e372c0,15, 0x8e37300,15, 0x8e37340,15, 0x8e37380,15, 0x8e373c0,15, 0x8e37400,15, 0x8e37440,15, 0x8e37480,15, 0x8e374c0,15, 0x8e37500,15, 0x8e37540,15, 0x8e37580,15, 0x8e375c0,15, 0x8e37600,15, 0x8e37640,15, 0x8e37680,15, 0x8e376c0,15, 0x8e37700,15, 0x8e37740,15, 0x8e37780,15, 0x8e377c0,15, 0x8e37800,15, 0x8e37840,15, 0x8e37880,15, 0x8e378c0,15, 0x8e37900,15, 0x8e37940,15, 0x8e37980,15, 0x8e379c0,15, 0x8e37a00,15, 0x8e37a40,15, 0x8e37a80,15, 0x8e37ac0,15, 0x8e37b00,15, 0x8e37b40,15, 0x8e37b80,15, 0x8e37bc0,15, 0x8e37c00,15, 0x8e37c40,15, 0x8e37c80,15, 0x8e37cc0,15, 0x8e37d00,15, 0x8e37d40,15, 0x8e37d80,15, 0x8e37dc0,15, 0x8e37e00,15, 0x8e37e40,15, 0x8e37e80,15, 0x8e37ec0,15, 0x8e37f00,15, 0x8e37f40,15, 0x8e37f80,15, 0x8e37fc0,15, 0x8e38000,15, 0x8e38040,15, 0x8e38080,15, 0x8e380c0,15, 0x8e38100,15, 0x8e38140,15, 0x8e38180,15, 0x8e381c0,15, 0x8e38200,15, 0x8e38240,15, 0x8e38280,15, 0x8e382c0,15, 0x8e38300,15, 0x8e38340,15, 0x8e38380,15, 0x8e383c0,15, 0x8e38400,15, 0x8e38440,15, 0x8e38480,15, 0x8e384c0,15, 0x8e38500,15, 0x8e38540,15, 0x8e38580,15, 0x8e385c0,15, 0x8e38600,15, 0x8e38640,15, 0x8e38680,15, 0x8e386c0,15, 0x8e38700,15, 0x8e38740,15, 0x8e38780,15, 0x8e387c0,15, 0x8e38800,15, 0x8e38840,15, 0x8e38880,15, 0x8e388c0,15, 0x8e38900,15, 0x8e38940,15, 0x8e38980,15, 0x8e389c0,15, 0x8e38a00,15, 0x8e38a40,15, 0x8e38a80,15, 0x8e38ac0,15, 0x8e38b00,15, 0x8e38b40,15, 0x8e38b80,15, 0x8e38bc0,15, 0x8e38c00,15, 0x8e38c40,15, 0x8e38c80,15, 0x8e38cc0,15, 0x8e38d00,15, 0x8e38d40,15, 0x8e38d80,15, 0x8e38dc0,15, 0x8e38e00,15, 0x8e38e40,15, 0x8e38e80,15, 0x8e38ec0,15, 0x8e38f00,15, 0x8e38f40,15, 0x8e38f80,15, 0x8e38fc0,15, 0x8e39000,15, 0x8e39040,15, 0x8e39080,15, 0x8e390c0,15, 0x8e39100,15, 0x8e39140,15, 0x8e39180,15, 0x8e391c0,15, 0x8e39200,15, 0x8e39240,15, 0x8e39280,15, 0x8e392c0,15, 0x8e39300,15, 0x8e39340,15, 0x8e39380,15, 0x8e393c0,15, 0x8e39400,15, 0x8e39440,15, 0x8e39480,15, 0x8e394c0,15, 0x8e39500,15, 0x8e39540,15, 0x8e39580,15, 0x8e395c0,15, 0x8e39600,15, 0x8e39640,15, 0x8e39680,15, 0x8e396c0,15, 0x8e39700,15, 0x8e39740,15, 0x8e39780,15, 0x8e397c0,15, 0x8e39800,15, 0x8e39840,15, 0x8e39880,15, 0x8e398c0,15, 0x8e39900,15, 0x8e39940,15, 0x8e39980,15, 0x8e399c0,15, 0x8e39a00,15, 0x8e39a40,15, 0x8e39a80,15, 0x8e39ac0,15, 0x8e39b00,15, 0x8e39b40,15, 0x8e39b80,15, 0x8e39bc0,15, 0x8e39c00,15, 0x8e39c40,15, 0x8e39c80,15, 0x8e39cc0,15, 0x8e39d00,15, 0x8e39d40,15, 0x8e39d80,15, 0x8e39dc0,15, 0x8e39e00,15, 0x8e39e40,15, 0x8e39e80,15, 0x8e39ec0,15, 0x8e39f00,15, 0x8e39f40,15, 0x8e39f80,15, 0x8e39fc0,15, 0x8e3a000,15, 0x8e3a040,15, 0x8e3a080,15, 0x8e3a0c0,15, 0x8e3a100,15, 0x8e3a140,15, 0x8e3a180,15, 0x8e3a1c0,15, 0x8e3a200,15, 0x8e3a240,15, 0x8e3a280,15, 0x8e3a2c0,15, 0x8e3a300,15, 0x8e3a340,15, 0x8e3a380,15, 0x8e3a3c0,15, 0x8e3a400,15, 0x8e3a440,15, 0x8e3a480,15, 0x8e3a4c0,15, 0x8e3a500,15, 0x8e3a540,15, 0x8e3a580,15, 0x8e3a5c0,15, 0x8e3a600,15, 0x8e3a640,15, 0x8e3a680,15, 0x8e3a6c0,15, 0x8e3a700,15, 0x8e3a740,15, 0x8e3a780,15, 0x8e3a7c0,15, 0x8e3a800,15, 0x8e3a840,15, 0x8e3a880,15, 0x8e3a8c0,15, 0x8e3a900,15, 0x8e3a940,15, 0x8e3a980,15, 0x8e3a9c0,15, 0x8e3aa00,15, 0x8e3aa40,15, 0x8e3aa80,15, 0x8e3aac0,15, 0x8e3ab00,15, 0x8e3ab40,15, 0x8e3ab80,15, 0x8e3abc0,15, 0x8e3ac00,15, 0x8e3ac40,15, 0x8e3ac80,15, 0x8e3acc0,15, 0x8e3ad00,15, 0x8e3ad40,15, 0x8e3ad80,15, 0x8e3adc0,15, 0x8e3ae00,15, 0x8e3ae40,15, 0x8e3ae80,15, 0x8e3aec0,15, 0x8e3af00,15, 0x8e3af40,15, 0x8e3af80,15, 0x8e3afc0,15, 0x8e3b000,15, 0x8e3b040,15, 0x8e3b080,15, 0x8e3b0c0,15, 0x8e3b100,15, 0x8e3b140,15, 0x8e3b180,15, 0x8e3b1c0,15, 0x8e3b200,15, 0x8e3b240,15, 0x8e3b280,15, 0x8e3b2c0,15, 0x8e3b300,15, 0x8e3b340,15, 0x8e3b380,15, 0x8e3b3c0,15, 0x8e3b400,15, 0x8e3b440,15, 0x8e3b480,15, 0x8e3b4c0,15, 0x8e3b500,15, 0x8e3b540,15, 0x8e3b580,15, 0x8e3b5c0,15, 0x8e3b600,15, 0x8e3b640,15, 0x8e3b680,15, 0x8e3b6c0,15, 0x8e3b700,15, 0x8e3b740,15, 0x8e3b780,15, 0x8e3b7c0,15, 0x8e3b800,15, 0x8e3b840,15, 0x8e3b880,15, 0x8e3b8c0,15, 0x8e3b900,15, 0x8e3b940,15, 0x8e3b980,15, 0x8e3b9c0,15, 0x8e3ba00,15, 0x8e3ba40,15, 0x8e3ba80,15, 0x8e3bac0,15, 0x8e3bb00,15, 0x8e3bb40,15, 0x8e3bb80,15, 0x8e3bbc0,15, 0x8e3bc00,15, 0x8e3bc40,15, 0x8e3bc80,15, 0x8e3bcc0,15, 0x8e3bd00,15, 0x8e3bd40,15, 0x8e3bd80,15, 0x8e3bdc0,15, 0x8e3be00,15, 0x8e3be40,15, 0x8e3be80,15, 0x8e3bec0,15, 0x8e3bf00,15, 0x8e3bf40,15, 0x8e3bf80,15, 0x8e3bfc0,15, 0x8e3c000,15, 0x8e3c040,15, 0x8e3c080,15, 0x8e3c0c0,15, 0x8e3c100,15, 0x8e3c140,15, 0x8e3c180,15, 0x8e3c1c0,15, 0x8e3c200,15, 0x8e3c240,15, 0x8e3c280,15, 0x8e3c2c0,15, 0x8e3c300,15, 0x8e3c340,15, 0x8e3c380,15, 0x8e3c3c0,15, 0x8e3c400,15, 0x8e3c440,15, 0x8e3c480,15, 0x8e3c4c0,15, 0x8e3c500,15, 0x8e3c540,15, 0x8e3c580,15, 0x8e3c5c0,15, 0x8e3c600,15, 0x8e3c640,15, 0x8e3c680,15, 0x8e3c6c0,15, 0x8e3c700,15, 0x8e3c740,15, 0x8e3c780,15, 0x8e3c7c0,15, 0x8e3c800,15, 0x8e3c840,15, 0x8e3c880,15, 0x8e3c8c0,15, 0x8e3c900,15, 0x8e3c940,15, 0x8e3c980,15, 0x8e3c9c0,15, 0x8e3ca00,15, 0x8e3ca40,15, 0x8e3ca80,15, 0x8e3cac0,15, 0x8e3cb00,15, 0x8e3cb40,15, 0x8e3cb80,15, 0x8e3cbc0,15, 0x8e3cc00,15, 0x8e3cc40,15, 0x8e3cc80,15, 0x8e3ccc0,15, 0x8e3cd00,15, 0x8e3cd40,15, 0x8e3cd80,15, 0x8e3cdc0,15, 0x8e3ce00,15, 0x8e3ce40,15, 0x8e3ce80,15, 0x8e3cec0,15, 0x8e3cf00,15, 0x8e3cf40,15, 0x8e3cf80,15, 0x8e3cfc0,15, 0x8e3d000,15, 0x8e3d040,15, 0x8e3d080,15, 0x8e3d0c0,15, 0x8e3d100,15, 0x8e3d140,15, 0x8e3d180,15, 0x8e3d1c0,15, 0x8e3d200,15, 0x8e3d240,15, 0x8e3d280,15, 0x8e3d2c0,15, 0x8e3d300,15, 0x8e3d340,15, 0x8e3d380,15, 0x8e3d3c0,15, 0x8e3d400,15, 0x8e3d440,15, 0x8e3d480,15, 0x8e3d4c0,15, 0x8e3d500,15, 0x8e3d540,15, 0x8e3d580,15, 0x8e3d5c0,15, 0x8e3d600,15, 0x8e3d640,15, 0x8e3d680,15, 0x8e3d6c0,15, 0x8e3d700,15, 0x8e3d740,15, 0x8e3d780,15, 0x8e3d7c0,15, 0x8e3d800,15, 0x8e3d840,15, 0x8e3d880,15, 0x8e3d8c0,15, 0x8e3d900,15, 0x8e3d940,15, 0x8e3d980,15, 0x8e3d9c0,15, 0x8e3da00,15, 0x8e3da40,15, 0x8e3da80,15, 0x8e3dac0,15, 0x8e3db00,15, 0x8e3db40,15, 0x8e3db80,15, 0x8e3dbc0,15, 0x8e3dc00,15, 0x8e3dc40,15, 0x8e3dc80,15, 0x8e3dcc0,15, 0x8e3dd00,15, 0x8e3dd40,15, 0x8e3dd80,15, 0x8e3ddc0,15, 0x8e3de00,15, 0x8e3de40,15, 0x8e3de80,15, 0x8e3dec0,15, 0x8e3df00,15, 0x8e3df40,15, 0x8e3df80,15, 0x8e3dfc0,15, 0x8e3e000,15, 0x8e3e040,15, 0x8e3e080,15, 0x8e3e0c0,15, 0x8e3e100,15, 0x8e3e140,15, 0x8e3e180,15, 0x8e3e1c0,15, 0x8e3e200,15, 0x8e3e240,15, 0x8e3e280,15, 0x8e3e2c0,15, 0x8e3e300,15, 0x8e3e340,15, 0x8e3e380,15, 0x8e3e3c0,15, 0x8e3e400,15, 0x8e3e440,15, 0x8e3e480,15, 0x8e3e4c0,15, 0x8e3e500,15, 0x8e3e540,15, 0x8e3e580,15, 0x8e3e5c0,15, 0x8e3e600,15, 0x8e3e640,15, 0x8e3e680,15, 0x8e3e6c0,15, 0x8e3e700,15, 0x8e3e740,15, 0x8e3e780,15, 0x8e3e7c0,15, 0x8e3e800,15, 0x8e3e840,15, 0x8e3e880,15, 0x8e3e8c0,15, 0x8e3e900,15, 0x8e3e940,15, 0x8e3e980,15, 0x8e3e9c0,15, 0x8e3ea00,15, 0x8e3ea40,15, 0x8e3ea80,15, 0x8e3eac0,15, 0x8e3eb00,15, 0x8e3eb40,15, 0x8e3eb80,15, 0x8e3ebc0,15, 0x8e3ec00,15, 0x8e3ec40,15, 0x8e3ec80,15, 0x8e3ecc0,15, 0x8e3ed00,15, 0x8e3ed40,15, 0x8e3ed80,15, 0x8e3edc0,15, 0x8e3ee00,15, 0x8e3ee40,15, 0x8e3ee80,15, 0x8e3eec0,15, 0x8e3ef00,15, 0x8e3ef40,15, 0x8e3ef80,15, 0x8e3efc0,15, 0x8e3f000,15, 0x8e3f040,15, 0x8e3f080,15, 0x8e3f0c0,15, 0x8e3f100,15, 0x8e3f140,15, 0x8e3f180,15, 0x8e3f1c0,15, 0x8e3f200,15, 0x8e3f240,15, 0x8e3f280,15, 0x8e3f2c0,15, 0x8e3f300,15, 0x8e3f340,15, 0x8e3f380,15, 0x8e3f3c0,15, 0x8e3f400,15, 0x8e3f440,15, 0x8e3f480,15, 0x8e3f4c0,15, 0x8e3f500,15, 0x8e3f540,15, 0x8e3f580,15, 0x8e3f5c0,15, 0x8e3f600,15, 0x8e3f640,15, 0x8e3f680,15, 0x8e3f6c0,15, 0x8e3f700,15, 0x8e3f740,15, 0x8e3f780,15, 0x8e3f7c0,15, 0x8e3f800,15, 0x8e3f840,15, 0x8e3f880,15, 0x8e3f8c0,15, 0x8e3f900,15, 0x8e3f940,15, 0x8e3f980,15, 0x8e3f9c0,15, 0x8e3fa00,15, 0x8e3fa40,15, 0x8e3fa80,15, 0x8e3fac0,15, 0x8e3fb00,15, 0x8e3fb40,15, 0x8e3fb80,15, 0x8e3fbc0,15, 0x8e3fc00,15, 0x8e3fc40,15, 0x8e3fc80,15, 0x8e3fcc0,15, 0x8e3fd00,15, 0x8e3fd40,15, 0x8e3fd80,15, 0x8e3fdc0,15, 0x8e3fe00,15, 0x8e3fe40,15, 0x8e3fe80,15, 0x8e3fec0,15, 0x8e3ff00,15, 0x8e3ff40,15, 0x8e3ff80,15, 0x8e3ffc0,15, 0x8e40000,15, 0x8e40040,15, 0x8e40080,15, 0x8e400c0,15, 0x8e40100,15, 0x8e40140,15, 0x8e40180,15, 0x8e401c0,15, 0x8e40200,15, 0x8e40240,15, 0x8e40280,15, 0x8e402c0,15, 0x8e40300,15, 0x8e40340,15, 0x8e40380,15, 0x8e403c0,15, 0x8e40400,15, 0x8e40440,15, 0x8e40480,15, 0x8e404c0,15, 0x8e40500,15, 0x8e40540,15, 0x8e40580,15, 0x8e405c0,15, 0x8e40600,15, 0x8e40640,15, 0x8e40680,15, 0x8e406c0,15, 0x8e40700,15, 0x8e40740,15, 0x8e40780,15, 0x8e407c0,15, 0x8e80000,2, 0x8e80040,9, 0x8e80080,35, 0x8f00004,1, 0x8f0001c,49, 0x8f00104,1, 0x8f00110,4, 0x8f00140,3, 0x8f00150,3, 0x8f00160,3, 0x8f00170,2, 0x8f00184,1, 0x8f00190,8, 0x8f00200,9, 0x8f00240,9, 0x8f00280,1, 0x8f00288,2, 0x8f002c4,1, 0x8f002dc,15, 0x8f00320,6, 0x8f00404,1, 0x8f00410,4, 0x8f00440,3, 0x8f00450,3, 0x8f00460,3, 0x8f00470,2, 0x8f00480,9, 0x8f004a8,4, 0x8f004c4,4, 0x8f00500,12, 0x8f00540,8, 0x8f00580,9, 0x8f005c0,8, 0x8f00600,12, 0x8f00640,8, 0x8f00680,9, 0x8f006c0,13, 0x8f00700,7, 0x8f00720,3, 0x8f00730,7, 0x8f00750,29, 0x8f00804,1, 0x8f00868,102, 0x8f00a04,1, 0x8f00a28,54, 0x8f00c04,1, 0x8f00cb0,84, 0x8f00e04,63, 0x8f00f04,1, 0x8f00f10,60, 0x8f01004,1, 0x8f01010,28, 0x8f01084,1, 0x8f010c0,16, 0x8f01104,1, 0x8f01128,22, 0x8f01184,1, 0x8f01190,7, 0x8f011c0,27, 0x8f01400,65, 0x8f01508,2, 0x8f01604,1, 0x8f01680,38, 0x8f01720,2, 0x8f01800,7, 0x8f02000,41, 0x8f02100,41, 0x8f02200,1, 0x8f02208,2, 0x8f02304,1, 0x8f0235c,47, 0x8f02420,2, 0x8f02800,3, 0x8f02810,4, 0x8f02880,3, 0x8f02890,2, 0x8f028a4,1, 0x8f028ac,1, 0x8f028c0,6, 0x8f028e0,2, 0x8f02904,5, 0x8f02924,3, 0x8f02940,5, 0x8f02960,1, 0x8f02980,10, 0x8f029c0,10, 0x8f02a00,4, 0x8f02a14,7, 0x9000000,15, 0x9000040,15, 0x9000080,15, 0x90000c0,15, 0x9000100,15, 0x9000140,15, 0x9000180,15, 0x90001c0,15, 0x9000200,15, 0x9000240,15, 0x9000280,15, 0x90002c0,15, 0x9000300,15, 0x9000340,15, 0x9000380,15, 0x90003c0,15, 0x9000400,15, 0x9000440,15, 0x9000480,15, 0x90004c0,15, 0x9000500,15, 0x9000540,15, 0x9000580,15, 0x90005c0,15, 0x9000600,15, 0x9000640,15, 0x9000680,15, 0x90006c0,15, 0x9000700,15, 0x9000740,15, 0x9000780,15, 0x90007c0,15, 0x9000800,15, 0x9000840,15, 0x9000880,15, 0x90008c0,15, 0x9000900,15, 0x9000940,15, 0x9000980,15, 0x90009c0,15, 0x9000a00,15, 0x9000a40,15, 0x9000a80,15, 0x9000ac0,15, 0x9000b00,15, 0x9000b40,15, 0x9000b80,15, 0x9000bc0,15, 0x9000c00,15, 0x9000c40,15, 0x9000c80,15, 0x9000cc0,15, 0x9000d00,15, 0x9000d40,15, 0x9000d80,15, 0x9000dc0,15, 0x9000e00,15, 0x9000e40,15, 0x9000e80,15, 0x9000ec0,15, 0x9000f00,15, 0x9000f40,15, 0x9000f80,15, 0x9000fc0,15, 0x9001000,15, 0x9001040,15, 0x9001080,15, 0x90010c0,15, 0x9001100,15, 0x9001140,15, 0x9001180,15, 0x90011c0,15, 0x9001200,15, 0x9001240,15, 0x9001280,15, 0x90012c0,15, 0x9001300,15, 0x9001340,15, 0x9001380,15, 0x90013c0,15, 0x9001400,15, 0x9001440,15, 0x9001480,15, 0x90014c0,15, 0x9001500,15, 0x9001540,15, 0x9001580,15, 0x90015c0,15, 0x9001600,15, 0x9001640,15, 0x9001680,15, 0x90016c0,15, 0x9001700,15, 0x9001740,15, 0x9001780,15, 0x90017c0,15, 0x9001800,15, 0x9001840,15, 0x9001880,15, 0x90018c0,15, 0x9001900,15, 0x9001940,15, 0x9001980,15, 0x90019c0,15, 0x9001a00,15, 0x9001a40,15, 0x9001a80,15, 0x9001ac0,15, 0x9001b00,15, 0x9001b40,15, 0x9001b80,15, 0x9001bc0,15, 0x9001c00,15, 0x9001c40,15, 0x9001c80,15, 0x9001cc0,15, 0x9001d00,15, 0x9001d40,15, 0x9001d80,15, 0x9001dc0,15, 0x9001e00,15, 0x9001e40,15, 0x9001e80,15, 0x9001ec0,15, 0x9001f00,15, 0x9001f40,15, 0x9001f80,15, 0x9001fc0,15, 0x9002000,15, 0x9002040,15, 0x9002080,15, 0x90020c0,15, 0x9002100,15, 0x9002140,15, 0x9002180,15, 0x90021c0,15, 0x9002200,15, 0x9002240,15, 0x9002280,15, 0x90022c0,15, 0x9002300,15, 0x9002340,15, 0x9002380,15, 0x90023c0,15, 0x9002400,15, 0x9002440,15, 0x9002480,15, 0x90024c0,15, 0x9002500,15, 0x9002540,15, 0x9002580,15, 0x90025c0,15, 0x9002600,15, 0x9002640,15, 0x9002680,15, 0x90026c0,15, 0x9002700,15, 0x9002740,15, 0x9002780,15, 0x90027c0,15, 0x9002800,15, 0x9002840,15, 0x9002880,15, 0x90028c0,15, 0x9002900,15, 0x9002940,15, 0x9002980,15, 0x90029c0,15, 0x9002a00,15, 0x9002a40,15, 0x9002a80,15, 0x9002ac0,15, 0x9002b00,15, 0x9002b40,15, 0x9002b80,15, 0x9002bc0,15, 0x9002c00,15, 0x9002c40,15, 0x9002c80,15, 0x9002cc0,15, 0x9002d00,15, 0x9002d40,15, 0x9002d80,15, 0x9002dc0,15, 0x9002e00,15, 0x9002e40,15, 0x9002e80,15, 0x9002ec0,15, 0x9002f00,15, 0x9002f40,15, 0x9002f80,15, 0x9002fc0,15, 0x9003000,15, 0x9003040,15, 0x9003080,15, 0x90030c0,15, 0x9003100,15, 0x9003140,15, 0x9003180,15, 0x90031c0,15, 0x9003200,15, 0x9003240,15, 0x9003280,15, 0x90032c0,15, 0x9003300,15, 0x9003340,15, 0x9003380,15, 0x90033c0,15, 0x9003400,15, 0x9003440,15, 0x9003480,15, 0x90034c0,15, 0x9003500,15, 0x9003540,15, 0x9003580,15, 0x90035c0,15, 0x9003600,15, 0x9003640,15, 0x9003680,15, 0x90036c0,15, 0x9003700,15, 0x9003740,15, 0x9003780,15, 0x90037c0,15, 0x9003800,15, 0x9003840,15, 0x9003880,15, 0x90038c0,15, 0x9003900,15, 0x9003940,15, 0x9003980,15, 0x90039c0,15, 0x9003a00,15, 0x9003a40,15, 0x9003a80,15, 0x9003ac0,15, 0x9003b00,15, 0x9003b40,15, 0x9003b80,15, 0x9003bc0,15, 0x9003c00,15, 0x9003c40,15, 0x9003c80,15, 0x9003cc0,15, 0x9003d00,15, 0x9003d40,15, 0x9003d80,15, 0x9003dc0,15, 0x9003e00,15, 0x9003e40,15, 0x9003e80,15, 0x9003ec0,15, 0x9003f00,15, 0x9003f40,15, 0x9003f80,15, 0x9003fc0,15, 0x9004000,15, 0x9004040,15, 0x9004080,15, 0x90040c0,15, 0x9004100,15, 0x9004140,15, 0x9004180,15, 0x90041c0,15, 0x9004200,15, 0x9004240,15, 0x9004280,15, 0x90042c0,15, 0x9004300,15, 0x9004340,15, 0x9004380,15, 0x90043c0,15, 0x9004400,15, 0x9004440,15, 0x9004480,15, 0x90044c0,15, 0x9004500,15, 0x9004540,15, 0x9004580,15, 0x90045c0,15, 0x9004600,15, 0x9004640,15, 0x9004680,15, 0x90046c0,15, 0x9004700,15, 0x9004740,15, 0x9004780,15, 0x90047c0,15, 0x9004800,15, 0x9004840,15, 0x9004880,15, 0x90048c0,15, 0x9004900,15, 0x9004940,15, 0x9004980,15, 0x90049c0,15, 0x9004a00,15, 0x9004a40,15, 0x9004a80,15, 0x9004ac0,15, 0x9004b00,15, 0x9004b40,15, 0x9004b80,15, 0x9004bc0,15, 0x9004c00,15, 0x9004c40,15, 0x9004c80,15, 0x9004cc0,15, 0x9004d00,15, 0x9004d40,15, 0x9004d80,15, 0x9004dc0,15, 0x9004e00,15, 0x9004e40,15, 0x9004e80,15, 0x9004ec0,15, 0x9004f00,15, 0x9004f40,15, 0x9004f80,15, 0x9004fc0,15, 0x9005000,15, 0x9005040,15, 0x9005080,15, 0x90050c0,15, 0x9005100,15, 0x9005140,15, 0x9005180,15, 0x90051c0,15, 0x9005200,15, 0x9005240,15, 0x9005280,15, 0x90052c0,15, 0x9005300,15, 0x9005340,15, 0x9005380,15, 0x90053c0,15, 0x9005400,15, 0x9005440,15, 0x9005480,15, 0x90054c0,15, 0x9005500,15, 0x9005540,15, 0x9005580,15, 0x90055c0,15, 0x9005600,15, 0x9005640,15, 0x9005680,15, 0x90056c0,15, 0x9005700,15, 0x9005740,15, 0x9005780,15, 0x90057c0,15, 0x9005800,15, 0x9005840,15, 0x9005880,15, 0x90058c0,15, 0x9005900,15, 0x9005940,15, 0x9005980,15, 0x90059c0,15, 0x9005a00,15, 0x9005a40,15, 0x9005a80,15, 0x9005ac0,15, 0x9005b00,15, 0x9005b40,15, 0x9005b80,15, 0x9005bc0,15, 0x9005c00,15, 0x9005c40,15, 0x9005c80,15, 0x9005cc0,15, 0x9005d00,15, 0x9005d40,15, 0x9005d80,15, 0x9005dc0,15, 0x9005e00,15, 0x9005e40,15, 0x9005e80,15, 0x9005ec0,15, 0x9005f00,15, 0x9005f40,15, 0x9005f80,15, 0x9005fc0,15, 0x9006000,15, 0x9006040,15, 0x9006080,15, 0x90060c0,15, 0x9006100,15, 0x9006140,15, 0x9006180,15, 0x90061c0,15, 0x9006200,15, 0x9006240,15, 0x9006280,15, 0x90062c0,15, 0x9006300,15, 0x9006340,15, 0x9006380,15, 0x90063c0,15, 0x9006400,15, 0x9006440,15, 0x9006480,15, 0x90064c0,15, 0x9006500,15, 0x9006540,15, 0x9006580,15, 0x90065c0,15, 0x9006600,15, 0x9006640,15, 0x9006680,15, 0x90066c0,15, 0x9006700,15, 0x9006740,15, 0x9006780,15, 0x90067c0,15, 0x9006800,15, 0x9006840,15, 0x9006880,15, 0x90068c0,15, 0x9006900,15, 0x9006940,15, 0x9006980,15, 0x90069c0,15, 0x9006a00,15, 0x9006a40,15, 0x9006a80,15, 0x9006ac0,15, 0x9006b00,15, 0x9006b40,15, 0x9006b80,15, 0x9006bc0,15, 0x9006c00,15, 0x9006c40,15, 0x9006c80,15, 0x9006cc0,15, 0x9006d00,15, 0x9006d40,15, 0x9006d80,15, 0x9006dc0,15, 0x9006e00,15, 0x9006e40,15, 0x9006e80,15, 0x9006ec0,15, 0x9006f00,15, 0x9006f40,15, 0x9006f80,15, 0x9006fc0,15, 0x9007000,15, 0x9007040,15, 0x9007080,15, 0x90070c0,15, 0x9007100,15, 0x9007140,15, 0x9007180,15, 0x90071c0,15, 0x9007200,15, 0x9007240,15, 0x9007280,15, 0x90072c0,15, 0x9007300,15, 0x9007340,15, 0x9007380,15, 0x90073c0,15, 0x9007400,15, 0x9007440,15, 0x9007480,15, 0x90074c0,15, 0x9007500,15, 0x9007540,15, 0x9007580,15, 0x90075c0,15, 0x9007600,15, 0x9007640,15, 0x9007680,15, 0x90076c0,15, 0x9007700,15, 0x9007740,15, 0x9007780,15, 0x90077c0,15, 0x9007800,15, 0x9007840,15, 0x9007880,15, 0x90078c0,15, 0x9007900,15, 0x9007940,15, 0x9007980,15, 0x90079c0,15, 0x9007a00,15, 0x9007a40,15, 0x9007a80,15, 0x9007ac0,15, 0x9007b00,15, 0x9007b40,15, 0x9007b80,15, 0x9007bc0,15, 0x9007c00,15, 0x9007c40,15, 0x9007c80,15, 0x9007cc0,15, 0x9007d00,15, 0x9007d40,15, 0x9007d80,15, 0x9007dc0,15, 0x9007e00,15, 0x9007e40,15, 0x9007e80,15, 0x9007ec0,15, 0x9007f00,15, 0x9007f40,15, 0x9007f80,15, 0x9007fc0,15, 0x9008000,15, 0x9008040,15, 0x9008080,15, 0x90080c0,15, 0x9008100,15, 0x9008140,15, 0x9008180,15, 0x90081c0,15, 0x9008200,15, 0x9008240,15, 0x9008280,15, 0x90082c0,15, 0x9008300,15, 0x9008340,15, 0x9008380,15, 0x90083c0,15, 0x9008400,15, 0x9008440,15, 0x9008480,15, 0x90084c0,15, 0x9008500,15, 0x9008540,15, 0x9008580,15, 0x90085c0,15, 0x9008600,15, 0x9008640,15, 0x9008680,15, 0x90086c0,15, 0x9008700,15, 0x9008740,15, 0x9008780,15, 0x90087c0,15, 0x9008800,15, 0x9008840,15, 0x9008880,15, 0x90088c0,15, 0x9008900,15, 0x9008940,15, 0x9008980,15, 0x90089c0,15, 0x9008a00,15, 0x9008a40,15, 0x9008a80,15, 0x9008ac0,15, 0x9008b00,15, 0x9008b40,15, 0x9008b80,15, 0x9008bc0,15, 0x9008c00,15, 0x9008c40,15, 0x9008c80,15, 0x9008cc0,15, 0x9008d00,15, 0x9008d40,15, 0x9008d80,15, 0x9008dc0,15, 0x9008e00,15, 0x9008e40,15, 0x9008e80,15, 0x9008ec0,15, 0x9008f00,15, 0x9008f40,15, 0x9008f80,15, 0x9008fc0,15, 0x9009000,15, 0x9009040,15, 0x9009080,15, 0x90090c0,15, 0x9009100,15, 0x9009140,15, 0x9009180,15, 0x90091c0,15, 0x9009200,15, 0x9009240,15, 0x9009280,15, 0x90092c0,15, 0x9009300,15, 0x9009340,15, 0x9009380,15, 0x90093c0,15, 0x9009400,15, 0x9009440,15, 0x9009480,15, 0x90094c0,15, 0x9009500,15, 0x9009540,15, 0x9009580,15, 0x90095c0,15, 0x9009600,15, 0x9009640,15, 0x9009680,15, 0x90096c0,15, 0x9009700,15, 0x9009740,15, 0x9009780,15, 0x90097c0,15, 0x9009800,15, 0x9009840,15, 0x9009880,15, 0x90098c0,15, 0x9009900,15, 0x9009940,15, 0x9009980,15, 0x90099c0,15, 0x9009a00,15, 0x9009a40,15, 0x9009a80,15, 0x9009ac0,15, 0x9009b00,15, 0x9009b40,15, 0x9009b80,15, 0x9009bc0,15, 0x9009c00,15, 0x9009c40,15, 0x9009c80,15, 0x9009cc0,15, 0x9009d00,15, 0x9009d40,15, 0x9009d80,15, 0x9009dc0,15, 0x9009e00,15, 0x9009e40,15, 0x9009e80,15, 0x9009ec0,15, 0x9009f00,15, 0x9009f40,15, 0x9009f80,15, 0x9009fc0,15, 0x900a000,15, 0x900a040,15, 0x900a080,15, 0x900a0c0,15, 0x900a100,15, 0x900a140,15, 0x900a180,15, 0x900a1c0,15, 0x900a200,15, 0x900a240,15, 0x900a280,15, 0x900a2c0,15, 0x900a300,15, 0x900a340,15, 0x900a380,15, 0x900a3c0,15, 0x900a400,15, 0x900a440,15, 0x900a480,15, 0x900a4c0,15, 0x900a500,15, 0x900a540,15, 0x900a580,15, 0x900a5c0,15, 0x900a600,15, 0x900a640,15, 0x900a680,15, 0x900a6c0,15, 0x900a700,15, 0x900a740,15, 0x900a780,15, 0x900a7c0,15, 0x900a800,15, 0x900a840,15, 0x900a880,15, 0x900a8c0,15, 0x900a900,15, 0x900a940,15, 0x900a980,15, 0x900a9c0,15, 0x900aa00,15, 0x900aa40,15, 0x900aa80,15, 0x900aac0,15, 0x900ab00,15, 0x900ab40,15, 0x900ab80,15, 0x900abc0,15, 0x900ac00,15, 0x900ac40,15, 0x900ac80,15, 0x900acc0,15, 0x900ad00,15, 0x900ad40,15, 0x900ad80,15, 0x900adc0,15, 0x900ae00,15, 0x900ae40,15, 0x900ae80,15, 0x900aec0,15, 0x900af00,15, 0x900af40,15, 0x900af80,15, 0x900afc0,15, 0x900b000,15, 0x900b040,15, 0x900b080,15, 0x900b0c0,15, 0x900b100,15, 0x900b140,15, 0x900b180,15, 0x900b1c0,15, 0x900b200,15, 0x900b240,15, 0x900b280,15, 0x900b2c0,15, 0x900b300,15, 0x900b340,15, 0x900b380,15, 0x900b3c0,15, 0x900b400,15, 0x900b440,15, 0x900b480,15, 0x900b4c0,15, 0x900b500,15, 0x900b540,15, 0x900b580,15, 0x900b5c0,15, 0x900b600,15, 0x900b640,15, 0x900b680,15, 0x900b6c0,15, 0x900b700,15, 0x900b740,15, 0x900b780,15, 0x900b7c0,15, 0x900b800,15, 0x900b840,15, 0x900b880,15, 0x900b8c0,15, 0x900b900,15, 0x900b940,15, 0x900b980,15, 0x900b9c0,15, 0x900ba00,15, 0x900ba40,15, 0x900ba80,15, 0x900bac0,15, 0x900bb00,15, 0x900bb40,15, 0x900bb80,15, 0x900bbc0,15, 0x900bc00,15, 0x900bc40,15, 0x900bc80,15, 0x900bcc0,15, 0x900bd00,15, 0x900bd40,15, 0x900bd80,15, 0x900bdc0,15, 0x900be00,15, 0x900be40,15, 0x900be80,15, 0x900bec0,15, 0x900bf00,15, 0x900bf40,15, 0x900bf80,15, 0x900bfc0,15, 0x900c000,15, 0x900c040,15, 0x900c080,15, 0x900c0c0,15, 0x900c100,15, 0x900c140,15, 0x900c180,15, 0x900c1c0,15, 0x900c200,15, 0x900c240,15, 0x900c280,15, 0x900c2c0,15, 0x900c300,15, 0x900c340,15, 0x900c380,15, 0x900c3c0,15, 0x900c400,15, 0x900c440,15, 0x900c480,15, 0x900c4c0,15, 0x900c500,15, 0x900c540,15, 0x900c580,15, 0x900c5c0,15, 0x900c600,15, 0x900c640,15, 0x900c680,15, 0x900c6c0,15, 0x900c700,15, 0x900c740,15, 0x900c780,15, 0x900c7c0,15, 0x900c800,15, 0x900c840,15, 0x900c880,15, 0x900c8c0,15, 0x900c900,15, 0x900c940,15, 0x900c980,15, 0x900c9c0,15, 0x900ca00,15, 0x900ca40,15, 0x900ca80,15, 0x900cac0,15, 0x900cb00,15, 0x900cb40,15, 0x900cb80,15, 0x900cbc0,15, 0x900cc00,15, 0x900cc40,15, 0x900cc80,15, 0x900ccc0,15, 0x900cd00,15, 0x900cd40,15, 0x900cd80,15, 0x900cdc0,15, 0x900ce00,15, 0x900ce40,15, 0x900ce80,15, 0x900cec0,15, 0x900cf00,15, 0x900cf40,15, 0x900cf80,15, 0x900cfc0,15, 0x900d000,15, 0x900d040,15, 0x900d080,15, 0x900d0c0,15, 0x900d100,15, 0x900d140,15, 0x900d180,15, 0x900d1c0,15, 0x900d200,15, 0x900d240,15, 0x900d280,15, 0x900d2c0,15, 0x900d300,15, 0x900d340,15, 0x900d380,15, 0x900d3c0,15, 0x900d400,15, 0x900d440,15, 0x900d480,15, 0x900d4c0,15, 0x900d500,15, 0x900d540,15, 0x900d580,15, 0x900d5c0,15, 0x900d600,15, 0x900d640,15, 0x900d680,15, 0x900d6c0,15, 0x900d700,15, 0x900d740,15, 0x900d780,15, 0x900d7c0,15, 0x900d800,15, 0x900d840,15, 0x900d880,15, 0x900d8c0,15, 0x900d900,15, 0x900d940,15, 0x900d980,15, 0x900d9c0,15, 0x900da00,15, 0x900da40,15, 0x900da80,15, 0x900dac0,15, 0x900db00,15, 0x900db40,15, 0x900db80,15, 0x900dbc0,15, 0x900dc00,15, 0x900dc40,15, 0x900dc80,15, 0x900dcc0,15, 0x900dd00,15, 0x900dd40,15, 0x900dd80,15, 0x900ddc0,15, 0x900de00,15, 0x900de40,15, 0x900de80,15, 0x900dec0,15, 0x900df00,15, 0x900df40,15, 0x900df80,15, 0x900dfc0,15, 0x900e000,15, 0x900e040,15, 0x900e080,15, 0x900e0c0,15, 0x900e100,15, 0x900e140,15, 0x900e180,15, 0x900e1c0,15, 0x900e200,15, 0x900e240,15, 0x900e280,15, 0x900e2c0,15, 0x900e300,15, 0x900e340,15, 0x900e380,15, 0x900e3c0,15, 0x900e400,15, 0x900e440,15, 0x900e480,15, 0x900e4c0,15, 0x900e500,15, 0x900e540,15, 0x900e580,15, 0x900e5c0,15, 0x900e600,15, 0x900e640,15, 0x900e680,15, 0x900e6c0,15, 0x900e700,15, 0x900e740,15, 0x900e780,15, 0x900e7c0,15, 0x900e800,15, 0x900e840,15, 0x900e880,15, 0x900e8c0,15, 0x900e900,15, 0x900e940,15, 0x900e980,15, 0x900e9c0,15, 0x900ea00,15, 0x900ea40,15, 0x900ea80,15, 0x900eac0,15, 0x900eb00,15, 0x900eb40,15, 0x900eb80,15, 0x900ebc0,15, 0x900ec00,15, 0x900ec40,15, 0x900ec80,15, 0x900ecc0,15, 0x900ed00,15, 0x900ed40,15, 0x900ed80,15, 0x900edc0,15, 0x900ee00,15, 0x900ee40,15, 0x900ee80,15, 0x900eec0,15, 0x900ef00,15, 0x900ef40,15, 0x900ef80,15, 0x900efc0,15, 0x900f000,15, 0x900f040,15, 0x900f080,15, 0x900f0c0,15, 0x900f100,15, 0x900f140,15, 0x900f180,15, 0x900f1c0,15, 0x900f200,15, 0x900f240,15, 0x900f280,15, 0x900f2c0,15, 0x900f300,15, 0x900f340,15, 0x900f380,15, 0x900f3c0,15, 0x900f400,15, 0x900f440,15, 0x900f480,15, 0x900f4c0,15, 0x900f500,15, 0x900f540,15, 0x900f580,15, 0x900f5c0,15, 0x900f600,15, 0x900f640,15, 0x900f680,15, 0x900f6c0,15, 0x900f700,15, 0x900f740,15, 0x900f780,15, 0x900f7c0,15, 0x900f800,15, 0x900f840,15, 0x900f880,15, 0x900f8c0,15, 0x900f900,15, 0x900f940,15, 0x900f980,15, 0x900f9c0,15, 0x900fa00,15, 0x900fa40,15, 0x900fa80,15, 0x900fac0,15, 0x900fb00,15, 0x900fb40,15, 0x900fb80,15, 0x900fbc0,15, 0x900fc00,15, 0x900fc40,15, 0x900fc80,15, 0x900fcc0,15, 0x900fd00,15, 0x900fd40,15, 0x900fd80,15, 0x900fdc0,15, 0x900fe00,15, 0x900fe40,15, 0x900fe80,15, 0x900fec0,15, 0x900ff00,15, 0x900ff40,15, 0x900ff80,15, 0x900ffc0,15, 0x9010000,15, 0x9010040,15, 0x9010080,15, 0x90100c0,15, 0x9010100,15, 0x9010140,15, 0x9010180,15, 0x90101c0,15, 0x9010200,15, 0x9010240,15, 0x9010280,15, 0x90102c0,15, 0x9010300,15, 0x9010340,15, 0x9010380,15, 0x90103c0,15, 0x9010400,15, 0x9010440,15, 0x9010480,15, 0x90104c0,15, 0x9010500,15, 0x9010540,15, 0x9010580,15, 0x90105c0,15, 0x9010600,15, 0x9010640,15, 0x9010680,15, 0x90106c0,15, 0x9010700,15, 0x9010740,15, 0x9010780,15, 0x90107c0,15, 0x9010800,15, 0x9010840,15, 0x9010880,15, 0x90108c0,15, 0x9010900,15, 0x9010940,15, 0x9010980,15, 0x90109c0,15, 0x9010a00,15, 0x9010a40,15, 0x9010a80,15, 0x9010ac0,15, 0x9010b00,15, 0x9010b40,15, 0x9010b80,15, 0x9010bc0,15, 0x9010c00,15, 0x9010c40,15, 0x9010c80,15, 0x9010cc0,15, 0x9010d00,15, 0x9010d40,15, 0x9010d80,15, 0x9010dc0,15, 0x9010e00,15, 0x9010e40,15, 0x9010e80,15, 0x9010ec0,15, 0x9010f00,15, 0x9010f40,15, 0x9010f80,15, 0x9010fc0,15, 0x9011000,15, 0x9011040,15, 0x9011080,15, 0x90110c0,15, 0x9011100,15, 0x9011140,15, 0x9011180,15, 0x90111c0,15, 0x9011200,15, 0x9011240,15, 0x9011280,15, 0x90112c0,15, 0x9011300,15, 0x9011340,15, 0x9011380,15, 0x90113c0,15, 0x9011400,15, 0x9011440,15, 0x9011480,15, 0x90114c0,15, 0x9011500,15, 0x9011540,15, 0x9011580,15, 0x90115c0,15, 0x9011600,15, 0x9011640,15, 0x9011680,15, 0x90116c0,15, 0x9011700,15, 0x9011740,15, 0x9011780,15, 0x90117c0,15, 0x9011800,15, 0x9011840,15, 0x9011880,15, 0x90118c0,15, 0x9011900,15, 0x9011940,15, 0x9011980,15, 0x90119c0,15, 0x9011a00,15, 0x9011a40,15, 0x9011a80,15, 0x9011ac0,15, 0x9011b00,15, 0x9011b40,15, 0x9011b80,15, 0x9011bc0,15, 0x9011c00,15, 0x9011c40,15, 0x9011c80,15, 0x9011cc0,15, 0x9011d00,15, 0x9011d40,15, 0x9011d80,15, 0x9011dc0,15, 0x9011e00,15, 0x9011e40,15, 0x9011e80,15, 0x9011ec0,15, 0x9011f00,15, 0x9011f40,15, 0x9011f80,15, 0x9011fc0,15, 0x9012000,15, 0x9012040,15, 0x9012080,15, 0x90120c0,15, 0x9012100,15, 0x9012140,15, 0x9012180,15, 0x90121c0,15, 0x9012200,15, 0x9012240,15, 0x9012280,15, 0x90122c0,15, 0x9012300,15, 0x9012340,15, 0x9012380,15, 0x90123c0,15, 0x9012400,15, 0x9012440,15, 0x9012480,15, 0x90124c0,15, 0x9012500,15, 0x9012540,15, 0x9012580,15, 0x90125c0,15, 0x9012600,15, 0x9012640,15, 0x9012680,15, 0x90126c0,15, 0x9012700,15, 0x9012740,15, 0x9012780,15, 0x90127c0,15, 0x9012800,15, 0x9012840,15, 0x9012880,15, 0x90128c0,15, 0x9012900,15, 0x9012940,15, 0x9012980,15, 0x90129c0,15, 0x9012a00,15, 0x9012a40,15, 0x9012a80,15, 0x9012ac0,15, 0x9012b00,15, 0x9012b40,15, 0x9012b80,15, 0x9012bc0,15, 0x9012c00,15, 0x9012c40,15, 0x9012c80,15, 0x9012cc0,15, 0x9012d00,15, 0x9012d40,15, 0x9012d80,15, 0x9012dc0,15, 0x9012e00,15, 0x9012e40,15, 0x9012e80,15, 0x9012ec0,15, 0x9012f00,15, 0x9012f40,15, 0x9012f80,15, 0x9012fc0,15, 0x9013000,15, 0x9013040,15, 0x9013080,15, 0x90130c0,15, 0x9013100,15, 0x9013140,15, 0x9013180,15, 0x90131c0,15, 0x9013200,15, 0x9013240,15, 0x9013280,15, 0x90132c0,15, 0x9013300,15, 0x9013340,15, 0x9013380,15, 0x90133c0,15, 0x9013400,15, 0x9013440,15, 0x9013480,15, 0x90134c0,15, 0x9013500,15, 0x9013540,15, 0x9013580,15, 0x90135c0,15, 0x9013600,15, 0x9013640,15, 0x9013680,15, 0x90136c0,15, 0x9013700,15, 0x9013740,15, 0x9013780,15, 0x90137c0,15, 0x9013800,15, 0x9013840,15, 0x9013880,15, 0x90138c0,15, 0x9013900,15, 0x9013940,15, 0x9013980,15, 0x90139c0,15, 0x9013a00,15, 0x9013a40,15, 0x9013a80,15, 0x9013ac0,15, 0x9013b00,15, 0x9013b40,15, 0x9013b80,15, 0x9013bc0,15, 0x9013c00,15, 0x9013c40,15, 0x9013c80,15, 0x9013cc0,15, 0x9013d00,15, 0x9013d40,15, 0x9013d80,15, 0x9013dc0,15, 0x9013e00,15, 0x9013e40,15, 0x9013e80,15, 0x9013ec0,15, 0x9013f00,15, 0x9013f40,15, 0x9013f80,15, 0x9013fc0,15, 0x9014000,15, 0x9014040,15, 0x9014080,15, 0x90140c0,15, 0x9014100,15, 0x9014140,15, 0x9014180,15, 0x90141c0,15, 0x9014200,15, 0x9014240,15, 0x9014280,15, 0x90142c0,15, 0x9014300,15, 0x9014340,15, 0x9014380,15, 0x90143c0,15, 0x9014400,15, 0x9014440,15, 0x9014480,15, 0x90144c0,15, 0x9014500,15, 0x9014540,15, 0x9014580,15, 0x90145c0,15, 0x9014600,15, 0x9014640,15, 0x9014680,15, 0x90146c0,15, 0x9014700,15, 0x9014740,15, 0x9014780,15, 0x90147c0,15, 0x9014800,15, 0x9014840,15, 0x9014880,15, 0x90148c0,15, 0x9014900,15, 0x9014940,15, 0x9014980,15, 0x90149c0,15, 0x9014a00,15, 0x9014a40,15, 0x9014a80,15, 0x9014ac0,15, 0x9014b00,15, 0x9014b40,15, 0x9014b80,15, 0x9014bc0,15, 0x9014c00,15, 0x9014c40,15, 0x9014c80,15, 0x9014cc0,15, 0x9014d00,15, 0x9014d40,15, 0x9014d80,15, 0x9014dc0,15, 0x9014e00,15, 0x9014e40,15, 0x9014e80,15, 0x9014ec0,15, 0x9014f00,15, 0x9014f40,15, 0x9014f80,15, 0x9014fc0,15, 0x9015000,15, 0x9015040,15, 0x9015080,15, 0x90150c0,15, 0x9015100,15, 0x9015140,15, 0x9015180,15, 0x90151c0,15, 0x9015200,15, 0x9015240,15, 0x9015280,15, 0x90152c0,15, 0x9015300,15, 0x9015340,15, 0x9015380,15, 0x90153c0,15, 0x9015400,15, 0x9015440,15, 0x9015480,15, 0x90154c0,15, 0x9015500,15, 0x9015540,15, 0x9015580,15, 0x90155c0,15, 0x9015600,15, 0x9015640,15, 0x9015680,15, 0x90156c0,15, 0x9015700,15, 0x9015740,15, 0x9015780,15, 0x90157c0,15, 0x9015800,15, 0x9015840,15, 0x9015880,15, 0x90158c0,15, 0x9015900,15, 0x9015940,15, 0x9015980,15, 0x90159c0,15, 0x9015a00,15, 0x9015a40,15, 0x9015a80,15, 0x9015ac0,15, 0x9015b00,15, 0x9015b40,15, 0x9015b80,15, 0x9015bc0,15, 0x9015c00,15, 0x9015c40,15, 0x9015c80,15, 0x9015cc0,15, 0x9015d00,15, 0x9015d40,15, 0x9015d80,15, 0x9015dc0,15, 0x9015e00,15, 0x9015e40,15, 0x9015e80,15, 0x9015ec0,15, 0x9015f00,15, 0x9015f40,15, 0x9015f80,15, 0x9015fc0,15, 0x9016000,15, 0x9016040,15, 0x9016080,15, 0x90160c0,15, 0x9016100,15, 0x9016140,15, 0x9016180,15, 0x90161c0,15, 0x9016200,15, 0x9016240,15, 0x9016280,15, 0x90162c0,15, 0x9016300,15, 0x9016340,15, 0x9016380,15, 0x90163c0,15, 0x9016400,15, 0x9016440,15, 0x9016480,15, 0x90164c0,15, 0x9016500,15, 0x9016540,15, 0x9016580,15, 0x90165c0,15, 0x9016600,15, 0x9016640,15, 0x9016680,15, 0x90166c0,15, 0x9016700,15, 0x9016740,15, 0x9016780,15, 0x90167c0,15, 0x9016800,15, 0x9016840,15, 0x9016880,15, 0x90168c0,15, 0x9016900,15, 0x9016940,15, 0x9016980,15, 0x90169c0,15, 0x9016a00,15, 0x9016a40,15, 0x9016a80,15, 0x9016ac0,15, 0x9016b00,15, 0x9016b40,15, 0x9016b80,15, 0x9016bc0,15, 0x9016c00,15, 0x9016c40,15, 0x9016c80,15, 0x9016cc0,15, 0x9016d00,15, 0x9016d40,15, 0x9016d80,15, 0x9016dc0,15, 0x9016e00,15, 0x9016e40,15, 0x9016e80,15, 0x9016ec0,15, 0x9016f00,15, 0x9016f40,15, 0x9016f80,15, 0x9016fc0,15, 0x9017000,15, 0x9017040,15, 0x9017080,15, 0x90170c0,15, 0x9017100,15, 0x9017140,15, 0x9017180,15, 0x90171c0,15, 0x9017200,15, 0x9017240,15, 0x9017280,15, 0x90172c0,15, 0x9017300,15, 0x9017340,15, 0x9017380,15, 0x90173c0,15, 0x9017400,15, 0x9017440,15, 0x9017480,15, 0x90174c0,15, 0x9017500,15, 0x9017540,15, 0x9017580,15, 0x90175c0,15, 0x9017600,15, 0x9017640,15, 0x9017680,15, 0x90176c0,15, 0x9017700,15, 0x9017740,15, 0x9017780,15, 0x90177c0,15, 0x9017800,15, 0x9017840,15, 0x9017880,15, 0x90178c0,15, 0x9017900,15, 0x9017940,15, 0x9017980,15, 0x90179c0,15, 0x9017a00,15, 0x9017a40,15, 0x9017a80,15, 0x9017ac0,15, 0x9017b00,15, 0x9017b40,15, 0x9017b80,15, 0x9017bc0,15, 0x9017c00,15, 0x9017c40,15, 0x9017c80,15, 0x9017cc0,15, 0x9017d00,15, 0x9017d40,15, 0x9017d80,15, 0x9017dc0,15, 0x9017e00,15, 0x9017e40,15, 0x9017e80,15, 0x9017ec0,15, 0x9017f00,15, 0x9017f40,15, 0x9017f80,15, 0x9017fc0,15, 0x9018000,15, 0x9018040,15, 0x9018080,15, 0x90180c0,15, 0x9018100,15, 0x9018140,15, 0x9018180,15, 0x90181c0,15, 0x9018200,15, 0x9018240,15, 0x9018280,15, 0x90182c0,15, 0x9018300,15, 0x9018340,15, 0x9018380,15, 0x90183c0,15, 0x9018400,15, 0x9018440,15, 0x9018480,15, 0x90184c0,15, 0x9018500,15, 0x9018540,15, 0x9018580,15, 0x90185c0,15, 0x9018600,15, 0x9018640,15, 0x9018680,15, 0x90186c0,15, 0x9018700,15, 0x9018740,15, 0x9018780,15, 0x90187c0,15, 0x9018800,15, 0x9018840,15, 0x9018880,15, 0x90188c0,15, 0x9018900,15, 0x9018940,15, 0x9018980,15, 0x90189c0,15, 0x9018a00,15, 0x9018a40,15, 0x9018a80,15, 0x9018ac0,15, 0x9018b00,15, 0x9018b40,15, 0x9018b80,15, 0x9018bc0,15, 0x9018c00,15, 0x9018c40,15, 0x9018c80,15, 0x9018cc0,15, 0x9018d00,15, 0x9018d40,15, 0x9018d80,15, 0x9018dc0,15, 0x9018e00,15, 0x9018e40,15, 0x9018e80,15, 0x9018ec0,15, 0x9018f00,15, 0x9018f40,15, 0x9018f80,15, 0x9018fc0,15, 0x9019000,15, 0x9019040,15, 0x9019080,15, 0x90190c0,15, 0x9019100,15, 0x9019140,15, 0x9019180,15, 0x90191c0,15, 0x9019200,15, 0x9019240,15, 0x9019280,15, 0x90192c0,15, 0x9019300,15, 0x9019340,15, 0x9019380,15, 0x90193c0,15, 0x9019400,15, 0x9019440,15, 0x9019480,15, 0x90194c0,15, 0x9019500,15, 0x9019540,15, 0x9019580,15, 0x90195c0,15, 0x9019600,15, 0x9019640,15, 0x9019680,15, 0x90196c0,15, 0x9019700,15, 0x9019740,15, 0x9019780,15, 0x90197c0,15, 0x9019800,15, 0x9019840,15, 0x9019880,15, 0x90198c0,15, 0x9019900,15, 0x9019940,15, 0x9019980,15, 0x90199c0,15, 0x9019a00,15, 0x9019a40,15, 0x9019a80,15, 0x9019ac0,15, 0x9019b00,15, 0x9019b40,15, 0x9019b80,15, 0x9019bc0,15, 0x9019c00,15, 0x9019c40,15, 0x9019c80,15, 0x9019cc0,15, 0x9019d00,15, 0x9019d40,15, 0x9019d80,15, 0x9019dc0,15, 0x9019e00,15, 0x9019e40,15, 0x9019e80,15, 0x9019ec0,15, 0x9019f00,15, 0x9019f40,15, 0x9019f80,15, 0x9019fc0,15, 0x901a000,15, 0x901a040,15, 0x901a080,15, 0x901a0c0,15, 0x901a100,15, 0x901a140,15, 0x901a180,15, 0x901a1c0,15, 0x901a200,15, 0x901a240,15, 0x901a280,15, 0x901a2c0,15, 0x901a300,15, 0x901a340,15, 0x901a380,15, 0x901a3c0,15, 0x901a400,15, 0x901a440,15, 0x901a480,15, 0x901a4c0,15, 0x901a500,15, 0x901a540,15, 0x901a580,15, 0x901a5c0,15, 0x901a600,15, 0x901a640,15, 0x901a680,15, 0x901a6c0,15, 0x901a700,15, 0x901a740,15, 0x901a780,15, 0x901a7c0,15, 0x901a800,15, 0x901a840,15, 0x901a880,15, 0x901a8c0,15, 0x901a900,15, 0x901a940,15, 0x901a980,15, 0x901a9c0,15, 0x901aa00,15, 0x901aa40,15, 0x901aa80,15, 0x901aac0,15, 0x901ab00,15, 0x901ab40,15, 0x901ab80,15, 0x901abc0,15, 0x901ac00,15, 0x901ac40,15, 0x901ac80,15, 0x901acc0,15, 0x901ad00,15, 0x901ad40,15, 0x901ad80,15, 0x901adc0,15, 0x901ae00,15, 0x901ae40,15, 0x901ae80,15, 0x901aec0,15, 0x901af00,15, 0x901af40,15, 0x901af80,15, 0x901afc0,15, 0x901b000,15, 0x901b040,15, 0x901b080,15, 0x901b0c0,15, 0x901b100,15, 0x901b140,15, 0x901b180,15, 0x901b1c0,15, 0x901b200,15, 0x901b240,15, 0x901b280,15, 0x901b2c0,15, 0x901b300,15, 0x901b340,15, 0x901b380,15, 0x901b3c0,15, 0x901b400,15, 0x901b440,15, 0x901b480,15, 0x901b4c0,15, 0x901b500,15, 0x901b540,15, 0x901b580,15, 0x901b5c0,15, 0x901b600,15, 0x901b640,15, 0x901b680,15, 0x901b6c0,15, 0x901b700,15, 0x901b740,15, 0x901b780,15, 0x901b7c0,15, 0x901b800,15, 0x901b840,15, 0x901b880,15, 0x901b8c0,15, 0x901b900,15, 0x901b940,15, 0x901b980,15, 0x901b9c0,15, 0x901ba00,15, 0x901ba40,15, 0x901ba80,15, 0x901bac0,15, 0x901bb00,15, 0x901bb40,15, 0x901bb80,15, 0x901bbc0,15, 0x901bc00,15, 0x901bc40,15, 0x901bc80,15, 0x901bcc0,15, 0x901bd00,15, 0x901bd40,15, 0x901bd80,15, 0x901bdc0,15, 0x901be00,15, 0x901be40,15, 0x901be80,15, 0x901bec0,15, 0x901bf00,15, 0x901bf40,15, 0x901bf80,15, 0x901bfc0,15, 0x901c000,15, 0x901c040,15, 0x901c080,15, 0x901c0c0,15, 0x901c100,15, 0x901c140,15, 0x901c180,15, 0x901c1c0,15, 0x901c200,15, 0x901c240,15, 0x901c280,15, 0x901c2c0,15, 0x901c300,15, 0x901c340,15, 0x901c380,15, 0x901c3c0,15, 0x901c400,15, 0x901c440,15, 0x901c480,15, 0x901c4c0,15, 0x901c500,15, 0x901c540,15, 0x901c580,15, 0x901c5c0,15, 0x901c600,15, 0x901c640,15, 0x901c680,15, 0x901c6c0,15, 0x901c700,15, 0x901c740,15, 0x901c780,15, 0x901c7c0,15, 0x901c800,15, 0x901c840,15, 0x901c880,15, 0x901c8c0,15, 0x901c900,15, 0x901c940,15, 0x901c980,15, 0x901c9c0,15, 0x901ca00,15, 0x901ca40,15, 0x901ca80,15, 0x901cac0,15, 0x901cb00,15, 0x901cb40,15, 0x901cb80,15, 0x901cbc0,15, 0x901cc00,15, 0x901cc40,15, 0x901cc80,15, 0x901ccc0,15, 0x901cd00,15, 0x901cd40,15, 0x901cd80,15, 0x901cdc0,15, 0x901ce00,15, 0x901ce40,15, 0x901ce80,15, 0x901cec0,15, 0x901cf00,15, 0x901cf40,15, 0x901cf80,15, 0x901cfc0,15, 0x901d000,15, 0x901d040,15, 0x901d080,15, 0x901d0c0,15, 0x901d100,15, 0x901d140,15, 0x901d180,15, 0x901d1c0,15, 0x901d200,15, 0x901d240,15, 0x901d280,15, 0x901d2c0,15, 0x901d300,15, 0x901d340,15, 0x901d380,15, 0x901d3c0,15, 0x901d400,15, 0x901d440,15, 0x901d480,15, 0x901d4c0,15, 0x901d500,15, 0x901d540,15, 0x901d580,15, 0x901d5c0,15, 0x901d600,15, 0x901d640,15, 0x901d680,15, 0x901d6c0,15, 0x901d700,15, 0x901d740,15, 0x901d780,15, 0x901d7c0,15, 0x901d800,15, 0x901d840,15, 0x901d880,15, 0x901d8c0,15, 0x901d900,15, 0x901d940,15, 0x901d980,15, 0x901d9c0,15, 0x901da00,15, 0x901da40,15, 0x901da80,15, 0x901dac0,15, 0x901db00,15, 0x901db40,15, 0x901db80,15, 0x901dbc0,15, 0x901dc00,15, 0x901dc40,15, 0x901dc80,15, 0x901dcc0,15, 0x901dd00,15, 0x901dd40,15, 0x901dd80,15, 0x901ddc0,15, 0x901de00,15, 0x901de40,15, 0x901de80,15, 0x901dec0,15, 0x901df00,15, 0x901df40,15, 0x901df80,15, 0x901dfc0,15, 0x901e000,15, 0x901e040,15, 0x901e080,15, 0x901e0c0,15, 0x901e100,15, 0x901e140,15, 0x901e180,15, 0x901e1c0,15, 0x901e200,15, 0x901e240,15, 0x901e280,15, 0x901e2c0,15, 0x901e300,15, 0x901e340,15, 0x901e380,15, 0x901e3c0,15, 0x901e400,15, 0x901e440,15, 0x901e480,15, 0x901e4c0,15, 0x901e500,15, 0x901e540,15, 0x901e580,15, 0x901e5c0,15, 0x901e600,15, 0x901e640,15, 0x901e680,15, 0x901e6c0,15, 0x901e700,15, 0x901e740,15, 0x901e780,15, 0x901e7c0,15, 0x901e800,15, 0x901e840,15, 0x901e880,15, 0x901e8c0,15, 0x901e900,15, 0x901e940,15, 0x901e980,15, 0x901e9c0,15, 0x901ea00,15, 0x901ea40,15, 0x901ea80,15, 0x901eac0,15, 0x901eb00,15, 0x901eb40,15, 0x901eb80,15, 0x901ebc0,15, 0x901ec00,15, 0x901ec40,15, 0x901ec80,15, 0x901ecc0,15, 0x901ed00,15, 0x901ed40,15, 0x901ed80,15, 0x901edc0,15, 0x901ee00,15, 0x901ee40,15, 0x901ee80,15, 0x901eec0,15, 0x901ef00,15, 0x901ef40,15, 0x901ef80,15, 0x901efc0,15, 0x901f000,15, 0x901f040,15, 0x901f080,15, 0x901f0c0,15, 0x901f100,15, 0x901f140,15, 0x901f180,15, 0x901f1c0,15, 0x901f200,15, 0x901f240,15, 0x901f280,15, 0x901f2c0,15, 0x901f300,15, 0x901f340,15, 0x901f380,15, 0x901f3c0,15, 0x901f400,15, 0x901f440,15, 0x901f480,15, 0x901f4c0,15, 0x901f500,15, 0x901f540,15, 0x901f580,15, 0x901f5c0,15, 0x901f600,15, 0x901f640,15, 0x901f680,15, 0x901f6c0,15, 0x901f700,15, 0x901f740,15, 0x901f780,15, 0x901f7c0,15, 0x901f800,15, 0x901f840,15, 0x901f880,15, 0x901f8c0,15, 0x901f900,15, 0x901f940,15, 0x901f980,15, 0x901f9c0,15, 0x901fa00,15, 0x901fa40,15, 0x901fa80,15, 0x901fac0,15, 0x901fb00,15, 0x901fb40,15, 0x901fb80,15, 0x901fbc0,15, 0x901fc00,15, 0x901fc40,15, 0x901fc80,15, 0x901fcc0,15, 0x901fd00,15, 0x901fd40,15, 0x901fd80,15, 0x901fdc0,15, 0x901fe00,15, 0x901fe40,15, 0x901fe80,15, 0x901fec0,15, 0x901ff00,15, 0x901ff40,15, 0x901ff80,15, 0x901ffc0,15, 0x9020000,15, 0x9020040,15, 0x9020080,15, 0x90200c0,15, 0x9020100,15, 0x9020140,15, 0x9020180,15, 0x90201c0,15, 0x9020200,15, 0x9020240,15, 0x9020280,15, 0x90202c0,15, 0x9020300,15, 0x9020340,15, 0x9020380,15, 0x90203c0,15, 0x9020400,15, 0x9020440,15, 0x9020480,15, 0x90204c0,15, 0x9020500,15, 0x9020540,15, 0x9020580,15, 0x90205c0,15, 0x9020600,15, 0x9020640,15, 0x9020680,15, 0x90206c0,15, 0x9020700,15, 0x9020740,15, 0x9020780,15, 0x90207c0,15, 0x9020800,15, 0x9020840,15, 0x9020880,15, 0x90208c0,15, 0x9020900,15, 0x9020940,15, 0x9020980,15, 0x90209c0,15, 0x9020a00,15, 0x9020a40,15, 0x9020a80,15, 0x9020ac0,15, 0x9020b00,15, 0x9020b40,15, 0x9020b80,15, 0x9020bc0,15, 0x9020c00,15, 0x9020c40,15, 0x9020c80,15, 0x9020cc0,15, 0x9020d00,15, 0x9020d40,15, 0x9020d80,15, 0x9020dc0,15, 0x9020e00,15, 0x9020e40,15, 0x9020e80,15, 0x9020ec0,15, 0x9020f00,15, 0x9020f40,15, 0x9020f80,15, 0x9020fc0,15, 0x9021000,15, 0x9021040,15, 0x9021080,15, 0x90210c0,15, 0x9021100,15, 0x9021140,15, 0x9021180,15, 0x90211c0,15, 0x9021200,15, 0x9021240,15, 0x9021280,15, 0x90212c0,15, 0x9021300,15, 0x9021340,15, 0x9021380,15, 0x90213c0,15, 0x9021400,15, 0x9021440,15, 0x9021480,15, 0x90214c0,15, 0x9021500,15, 0x9021540,15, 0x9021580,15, 0x90215c0,15, 0x9021600,15, 0x9021640,15, 0x9021680,15, 0x90216c0,15, 0x9021700,15, 0x9021740,15, 0x9021780,15, 0x90217c0,15, 0x9021800,15, 0x9021840,15, 0x9021880,15, 0x90218c0,15, 0x9021900,15, 0x9021940,15, 0x9021980,15, 0x90219c0,15, 0x9021a00,15, 0x9021a40,15, 0x9021a80,15, 0x9021ac0,15, 0x9021b00,15, 0x9021b40,15, 0x9021b80,15, 0x9021bc0,15, 0x9021c00,15, 0x9021c40,15, 0x9021c80,15, 0x9021cc0,15, 0x9021d00,15, 0x9021d40,15, 0x9021d80,15, 0x9021dc0,15, 0x9021e00,15, 0x9021e40,15, 0x9021e80,15, 0x9021ec0,15, 0x9021f00,15, 0x9021f40,15, 0x9021f80,15, 0x9021fc0,15, 0x9022000,15, 0x9022040,15, 0x9022080,15, 0x90220c0,15, 0x9022100,15, 0x9022140,15, 0x9022180,15, 0x90221c0,15, 0x9022200,15, 0x9022240,15, 0x9022280,15, 0x90222c0,15, 0x9022300,15, 0x9022340,15, 0x9022380,15, 0x90223c0,15, 0x9022400,15, 0x9022440,15, 0x9022480,15, 0x90224c0,15, 0x9022500,15, 0x9022540,15, 0x9022580,15, 0x90225c0,15, 0x9022600,15, 0x9022640,15, 0x9022680,15, 0x90226c0,15, 0x9022700,15, 0x9022740,15, 0x9022780,15, 0x90227c0,15, 0x9022800,15, 0x9022840,15, 0x9022880,15, 0x90228c0,15, 0x9022900,15, 0x9022940,15, 0x9022980,15, 0x90229c0,15, 0x9022a00,15, 0x9022a40,15, 0x9022a80,15, 0x9022ac0,15, 0x9022b00,15, 0x9022b40,15, 0x9022b80,15, 0x9022bc0,15, 0x9022c00,15, 0x9022c40,15, 0x9022c80,15, 0x9022cc0,15, 0x9022d00,15, 0x9022d40,15, 0x9022d80,15, 0x9022dc0,15, 0x9022e00,15, 0x9022e40,15, 0x9022e80,15, 0x9022ec0,15, 0x9022f00,15, 0x9022f40,15, 0x9022f80,15, 0x9022fc0,15, 0x9023000,15, 0x9023040,15, 0x9023080,15, 0x90230c0,15, 0x9023100,15, 0x9023140,15, 0x9023180,15, 0x90231c0,15, 0x9023200,15, 0x9023240,15, 0x9023280,15, 0x90232c0,15, 0x9023300,15, 0x9023340,15, 0x9023380,15, 0x90233c0,15, 0x9023400,15, 0x9023440,15, 0x9023480,15, 0x90234c0,15, 0x9023500,15, 0x9023540,15, 0x9023580,15, 0x90235c0,15, 0x9023600,15, 0x9023640,15, 0x9023680,15, 0x90236c0,15, 0x9023700,15, 0x9023740,15, 0x9023780,15, 0x90237c0,15, 0x9023800,15, 0x9023840,15, 0x9023880,15, 0x90238c0,15, 0x9023900,15, 0x9023940,15, 0x9023980,15, 0x90239c0,15, 0x9023a00,15, 0x9023a40,15, 0x9023a80,15, 0x9023ac0,15, 0x9023b00,15, 0x9023b40,15, 0x9023b80,15, 0x9023bc0,15, 0x9023c00,15, 0x9023c40,15, 0x9023c80,15, 0x9023cc0,15, 0x9023d00,15, 0x9023d40,15, 0x9023d80,15, 0x9023dc0,15, 0x9023e00,15, 0x9023e40,15, 0x9023e80,15, 0x9023ec0,15, 0x9023f00,15, 0x9023f40,15, 0x9023f80,15, 0x9023fc0,15, 0x9024000,15, 0x9024040,15, 0x9024080,15, 0x90240c0,15, 0x9024100,15, 0x9024140,15, 0x9024180,15, 0x90241c0,15, 0x9024200,15, 0x9024240,15, 0x9024280,15, 0x90242c0,15, 0x9024300,15, 0x9024340,15, 0x9024380,15, 0x90243c0,15, 0x9024400,15, 0x9024440,15, 0x9024480,15, 0x90244c0,15, 0x9024500,15, 0x9024540,15, 0x9024580,15, 0x90245c0,15, 0x9024600,15, 0x9024640,15, 0x9024680,15, 0x90246c0,15, 0x9024700,15, 0x9024740,15, 0x9024780,15, 0x90247c0,15, 0x9024800,15, 0x9024840,15, 0x9024880,15, 0x90248c0,15, 0x9024900,15, 0x9024940,15, 0x9024980,15, 0x90249c0,15, 0x9024a00,15, 0x9024a40,15, 0x9024a80,15, 0x9024ac0,15, 0x9024b00,15, 0x9024b40,15, 0x9024b80,15, 0x9024bc0,15, 0x9024c00,15, 0x9024c40,15, 0x9024c80,15, 0x9024cc0,15, 0x9024d00,15, 0x9024d40,15, 0x9024d80,15, 0x9024dc0,15, 0x9024e00,15, 0x9024e40,15, 0x9024e80,15, 0x9024ec0,15, 0x9024f00,15, 0x9024f40,15, 0x9024f80,15, 0x9024fc0,15, 0x9025000,15, 0x9025040,15, 0x9025080,15, 0x90250c0,15, 0x9025100,15, 0x9025140,15, 0x9025180,15, 0x90251c0,15, 0x9025200,15, 0x9025240,15, 0x9025280,15, 0x90252c0,15, 0x9025300,15, 0x9025340,15, 0x9025380,15, 0x90253c0,15, 0x9025400,15, 0x9025440,15, 0x9025480,15, 0x90254c0,15, 0x9025500,15, 0x9025540,15, 0x9025580,15, 0x90255c0,15, 0x9025600,15, 0x9025640,15, 0x9025680,15, 0x90256c0,15, 0x9025700,15, 0x9025740,15, 0x9025780,15, 0x90257c0,15, 0x9025800,15, 0x9025840,15, 0x9025880,15, 0x90258c0,15, 0x9025900,15, 0x9025940,15, 0x9025980,15, 0x90259c0,15, 0x9025a00,15, 0x9025a40,15, 0x9025a80,15, 0x9025ac0,15, 0x9025b00,15, 0x9025b40,15, 0x9025b80,15, 0x9025bc0,15, 0x9025c00,15, 0x9025c40,15, 0x9025c80,15, 0x9025cc0,15, 0x9025d00,15, 0x9025d40,15, 0x9025d80,15, 0x9025dc0,15, 0x9025e00,15, 0x9025e40,15, 0x9025e80,15, 0x9025ec0,15, 0x9025f00,15, 0x9025f40,15, 0x9025f80,15, 0x9025fc0,15, 0x9026000,15, 0x9026040,15, 0x9026080,15, 0x90260c0,15, 0x9026100,15, 0x9026140,15, 0x9026180,15, 0x90261c0,15, 0x9026200,15, 0x9026240,15, 0x9026280,15, 0x90262c0,15, 0x9026300,15, 0x9026340,15, 0x9026380,15, 0x90263c0,15, 0x9026400,15, 0x9026440,15, 0x9026480,15, 0x90264c0,15, 0x9026500,15, 0x9026540,15, 0x9026580,15, 0x90265c0,15, 0x9026600,15, 0x9026640,15, 0x9026680,15, 0x90266c0,15, 0x9026700,15, 0x9026740,15, 0x9026780,15, 0x90267c0,15, 0x9026800,15, 0x9026840,15, 0x9026880,15, 0x90268c0,15, 0x9026900,15, 0x9026940,15, 0x9026980,15, 0x90269c0,15, 0x9026a00,15, 0x9026a40,15, 0x9026a80,15, 0x9026ac0,15, 0x9026b00,15, 0x9026b40,15, 0x9026b80,15, 0x9026bc0,15, 0x9026c00,15, 0x9026c40,15, 0x9026c80,15, 0x9026cc0,15, 0x9026d00,15, 0x9026d40,15, 0x9026d80,15, 0x9026dc0,15, 0x9026e00,15, 0x9026e40,15, 0x9026e80,15, 0x9026ec0,15, 0x9026f00,15, 0x9026f40,15, 0x9026f80,15, 0x9026fc0,15, 0x9027000,15, 0x9027040,15, 0x9027080,15, 0x90270c0,15, 0x9027100,15, 0x9027140,15, 0x9027180,15, 0x90271c0,15, 0x9027200,15, 0x9027240,15, 0x9027280,15, 0x90272c0,15, 0x9027300,15, 0x9027340,15, 0x9027380,15, 0x90273c0,15, 0x9027400,15, 0x9027440,15, 0x9027480,15, 0x90274c0,15, 0x9027500,15, 0x9027540,15, 0x9027580,15, 0x90275c0,15, 0x9027600,15, 0x9027640,15, 0x9027680,15, 0x90276c0,15, 0x9027700,15, 0x9027740,15, 0x9027780,15, 0x90277c0,15, 0x9027800,15, 0x9027840,15, 0x9027880,15, 0x90278c0,15, 0x9027900,15, 0x9027940,15, 0x9027980,15, 0x90279c0,15, 0x9027a00,15, 0x9027a40,15, 0x9027a80,15, 0x9027ac0,15, 0x9027b00,15, 0x9027b40,15, 0x9027b80,15, 0x9027bc0,15, 0x9027c00,15, 0x9027c40,15, 0x9027c80,15, 0x9027cc0,15, 0x9027d00,15, 0x9027d40,15, 0x9027d80,15, 0x9027dc0,15, 0x9027e00,15, 0x9027e40,15, 0x9027e80,15, 0x9027ec0,15, 0x9027f00,15, 0x9027f40,15, 0x9027f80,15, 0x9027fc0,15, 0x9028000,15, 0x9028040,15, 0x9028080,15, 0x90280c0,15, 0x9028100,15, 0x9028140,15, 0x9028180,15, 0x90281c0,15, 0x9028200,15, 0x9028240,15, 0x9028280,15, 0x90282c0,15, 0x9028300,15, 0x9028340,15, 0x9028380,15, 0x90283c0,15, 0x9028400,15, 0x9028440,15, 0x9028480,15, 0x90284c0,15, 0x9028500,15, 0x9028540,15, 0x9028580,15, 0x90285c0,15, 0x9028600,15, 0x9028640,15, 0x9028680,15, 0x90286c0,15, 0x9028700,15, 0x9028740,15, 0x9028780,15, 0x90287c0,15, 0x9028800,15, 0x9028840,15, 0x9028880,15, 0x90288c0,15, 0x9028900,15, 0x9028940,15, 0x9028980,15, 0x90289c0,15, 0x9028a00,15, 0x9028a40,15, 0x9028a80,15, 0x9028ac0,15, 0x9028b00,15, 0x9028b40,15, 0x9028b80,15, 0x9028bc0,15, 0x9028c00,15, 0x9028c40,15, 0x9028c80,15, 0x9028cc0,15, 0x9028d00,15, 0x9028d40,15, 0x9028d80,15, 0x9028dc0,15, 0x9028e00,15, 0x9028e40,15, 0x9028e80,15, 0x9028ec0,15, 0x9028f00,15, 0x9028f40,15, 0x9028f80,15, 0x9028fc0,15, 0x9029000,15, 0x9029040,15, 0x9029080,15, 0x90290c0,15, 0x9029100,15, 0x9029140,15, 0x9029180,15, 0x90291c0,15, 0x9029200,15, 0x9029240,15, 0x9029280,15, 0x90292c0,15, 0x9029300,15, 0x9029340,15, 0x9029380,15, 0x90293c0,15, 0x9029400,15, 0x9029440,15, 0x9029480,15, 0x90294c0,15, 0x9029500,15, 0x9029540,15, 0x9029580,15, 0x90295c0,15, 0x9029600,15, 0x9029640,15, 0x9029680,15, 0x90296c0,15, 0x9029700,15, 0x9029740,15, 0x9029780,15, 0x90297c0,15, 0x9029800,15, 0x9029840,15, 0x9029880,15, 0x90298c0,15, 0x9029900,15, 0x9029940,15, 0x9029980,15, 0x90299c0,15, 0x9029a00,15, 0x9029a40,15, 0x9029a80,15, 0x9029ac0,15, 0x9029b00,15, 0x9029b40,15, 0x9029b80,15, 0x9029bc0,15, 0x9029c00,15, 0x9029c40,15, 0x9029c80,15, 0x9029cc0,15, 0x9029d00,15, 0x9029d40,15, 0x9029d80,15, 0x9029dc0,15, 0x9029e00,15, 0x9029e40,15, 0x9029e80,15, 0x9029ec0,15, 0x9029f00,15, 0x9029f40,15, 0x9029f80,15, 0x9029fc0,15, 0x902a000,15, 0x902a040,15, 0x902a080,15, 0x902a0c0,15, 0x902a100,15, 0x902a140,15, 0x902a180,15, 0x902a1c0,15, 0x902a200,15, 0x902a240,15, 0x902a280,15, 0x902a2c0,15, 0x902a300,15, 0x902a340,15, 0x902a380,15, 0x902a3c0,15, 0x902a400,15, 0x902a440,15, 0x902a480,15, 0x902a4c0,15, 0x902a500,15, 0x902a540,15, 0x902a580,15, 0x902a5c0,15, 0x902a600,15, 0x902a640,15, 0x902a680,15, 0x902a6c0,15, 0x902a700,15, 0x902a740,15, 0x902a780,15, 0x902a7c0,15, 0x902a800,15, 0x902a840,15, 0x902a880,15, 0x902a8c0,15, 0x902a900,15, 0x902a940,15, 0x902a980,15, 0x902a9c0,15, 0x902aa00,15, 0x902aa40,15, 0x902aa80,15, 0x902aac0,15, 0x902ab00,15, 0x902ab40,15, 0x902ab80,15, 0x902abc0,15, 0x902ac00,15, 0x902ac40,15, 0x902ac80,15, 0x902acc0,15, 0x902ad00,15, 0x902ad40,15, 0x902ad80,15, 0x902adc0,15, 0x902ae00,15, 0x902ae40,15, 0x902ae80,15, 0x902aec0,15, 0x902af00,15, 0x902af40,15, 0x902af80,15, 0x902afc0,15, 0x902b000,15, 0x902b040,15, 0x902b080,15, 0x902b0c0,15, 0x902b100,15, 0x902b140,15, 0x902b180,15, 0x902b1c0,15, 0x902b200,15, 0x902b240,15, 0x902b280,15, 0x902b2c0,15, 0x902b300,15, 0x902b340,15, 0x902b380,15, 0x902b3c0,15, 0x902b400,15, 0x902b440,15, 0x902b480,15, 0x902b4c0,15, 0x902b500,15, 0x902b540,15, 0x902b580,15, 0x902b5c0,15, 0x902b600,15, 0x902b640,15, 0x902b680,15, 0x902b6c0,15, 0x902b700,15, 0x902b740,15, 0x902b780,15, 0x902b7c0,15, 0x902b800,15, 0x902b840,15, 0x902b880,15, 0x902b8c0,15, 0x902b900,15, 0x902b940,15, 0x902b980,15, 0x902b9c0,15, 0x902ba00,15, 0x902ba40,15, 0x902ba80,15, 0x902bac0,15, 0x902bb00,15, 0x902bb40,15, 0x902bb80,15, 0x902bbc0,15, 0x902bc00,15, 0x902bc40,15, 0x902bc80,15, 0x902bcc0,15, 0x902bd00,15, 0x902bd40,15, 0x902bd80,15, 0x902bdc0,15, 0x902be00,15, 0x902be40,15, 0x902be80,15, 0x902bec0,15, 0x902bf00,15, 0x902bf40,15, 0x902bf80,15, 0x902bfc0,15, 0x902c000,15, 0x902c040,15, 0x902c080,15, 0x902c0c0,15, 0x902c100,15, 0x902c140,15, 0x902c180,15, 0x902c1c0,15, 0x902c200,15, 0x902c240,15, 0x902c280,15, 0x902c2c0,15, 0x902c300,15, 0x902c340,15, 0x902c380,15, 0x902c3c0,15, 0x902c400,15, 0x902c440,15, 0x902c480,15, 0x902c4c0,15, 0x902c500,15, 0x902c540,15, 0x902c580,15, 0x902c5c0,15, 0x902c600,15, 0x902c640,15, 0x902c680,15, 0x902c6c0,15, 0x902c700,15, 0x902c740,15, 0x902c780,15, 0x902c7c0,15, 0x902c800,15, 0x902c840,15, 0x902c880,15, 0x902c8c0,15, 0x902c900,15, 0x902c940,15, 0x902c980,15, 0x902c9c0,15, 0x902ca00,15, 0x902ca40,15, 0x902ca80,15, 0x902cac0,15, 0x902cb00,15, 0x902cb40,15, 0x902cb80,15, 0x902cbc0,15, 0x902cc00,15, 0x902cc40,15, 0x902cc80,15, 0x902ccc0,15, 0x902cd00,15, 0x902cd40,15, 0x902cd80,15, 0x902cdc0,15, 0x902ce00,15, 0x902ce40,15, 0x902ce80,15, 0x902cec0,15, 0x902cf00,15, 0x902cf40,15, 0x902cf80,15, 0x902cfc0,15, 0x902d000,15, 0x902d040,15, 0x902d080,15, 0x902d0c0,15, 0x902d100,15, 0x902d140,15, 0x902d180,15, 0x902d1c0,15, 0x902d200,15, 0x902d240,15, 0x902d280,15, 0x902d2c0,15, 0x902d300,15, 0x902d340,15, 0x902d380,15, 0x902d3c0,15, 0x902d400,15, 0x902d440,15, 0x902d480,15, 0x902d4c0,15, 0x902d500,15, 0x902d540,15, 0x902d580,15, 0x902d5c0,15, 0x902d600,15, 0x902d640,15, 0x902d680,15, 0x902d6c0,15, 0x902d700,15, 0x902d740,15, 0x902d780,15, 0x902d7c0,15, 0x902d800,15, 0x902d840,15, 0x902d880,15, 0x902d8c0,15, 0x902d900,15, 0x902d940,15, 0x902d980,15, 0x902d9c0,15, 0x902da00,15, 0x902da40,15, 0x902da80,15, 0x902dac0,15, 0x902db00,15, 0x902db40,15, 0x902db80,15, 0x902dbc0,15, 0x902dc00,15, 0x902dc40,15, 0x902dc80,15, 0x902dcc0,15, 0x902dd00,15, 0x902dd40,15, 0x902dd80,15, 0x902ddc0,15, 0x902de00,15, 0x902de40,15, 0x902de80,15, 0x902dec0,15, 0x902df00,15, 0x902df40,15, 0x902df80,15, 0x902dfc0,15, 0x902e000,15, 0x902e040,15, 0x902e080,15, 0x902e0c0,15, 0x902e100,15, 0x902e140,15, 0x902e180,15, 0x902e1c0,15, 0x902e200,15, 0x902e240,15, 0x902e280,15, 0x902e2c0,15, 0x902e300,15, 0x902e340,15, 0x902e380,15, 0x902e3c0,15, 0x902e400,15, 0x902e440,15, 0x902e480,15, 0x902e4c0,15, 0x902e500,15, 0x902e540,15, 0x902e580,15, 0x902e5c0,15, 0x902e600,15, 0x902e640,15, 0x902e680,15, 0x902e6c0,15, 0x902e700,15, 0x902e740,15, 0x902e780,15, 0x902e7c0,15, 0x902e800,15, 0x902e840,15, 0x902e880,15, 0x902e8c0,15, 0x902e900,15, 0x902e940,15, 0x902e980,15, 0x902e9c0,15, 0x902ea00,15, 0x902ea40,15, 0x902ea80,15, 0x902eac0,15, 0x902eb00,15, 0x902eb40,15, 0x902eb80,15, 0x902ebc0,15, 0x902ec00,15, 0x902ec40,15, 0x902ec80,15, 0x902ecc0,15, 0x902ed00,15, 0x902ed40,15, 0x902ed80,15, 0x902edc0,15, 0x902ee00,15, 0x902ee40,15, 0x902ee80,15, 0x902eec0,15, 0x902ef00,15, 0x902ef40,15, 0x902ef80,15, 0x902efc0,15, 0x902f000,15, 0x902f040,15, 0x902f080,15, 0x902f0c0,15, 0x902f100,15, 0x902f140,15, 0x902f180,15, 0x902f1c0,15, 0x902f200,15, 0x902f240,15, 0x902f280,15, 0x902f2c0,15, 0x902f300,15, 0x902f340,15, 0x902f380,15, 0x902f3c0,15, 0x902f400,15, 0x902f440,15, 0x902f480,15, 0x902f4c0,15, 0x902f500,15, 0x902f540,15, 0x902f580,15, 0x902f5c0,15, 0x902f600,15, 0x902f640,15, 0x902f680,15, 0x902f6c0,15, 0x902f700,15, 0x902f740,15, 0x902f780,15, 0x902f7c0,15, 0x902f800,15, 0x902f840,15, 0x902f880,15, 0x902f8c0,15, 0x902f900,15, 0x902f940,15, 0x902f980,15, 0x902f9c0,15, 0x902fa00,15, 0x902fa40,15, 0x902fa80,15, 0x902fac0,15, 0x902fb00,15, 0x902fb40,15, 0x902fb80,15, 0x902fbc0,15, 0x902fc00,15, 0x902fc40,15, 0x902fc80,15, 0x902fcc0,15, 0x902fd00,15, 0x902fd40,15, 0x902fd80,15, 0x902fdc0,15, 0x902fe00,15, 0x902fe40,15, 0x902fe80,15, 0x902fec0,15, 0x902ff00,15, 0x902ff40,15, 0x902ff80,15, 0x902ffc0,15, 0x9030000,15, 0x9030040,15, 0x9030080,15, 0x90300c0,15, 0x9030100,15, 0x9030140,15, 0x9030180,15, 0x90301c0,15, 0x9030200,15, 0x9030240,15, 0x9030280,15, 0x90302c0,15, 0x9030300,15, 0x9030340,15, 0x9030380,15, 0x90303c0,15, 0x9030400,15, 0x9030440,15, 0x9030480,15, 0x90304c0,15, 0x9030500,15, 0x9030540,15, 0x9030580,15, 0x90305c0,15, 0x9030600,15, 0x9030640,15, 0x9030680,15, 0x90306c0,15, 0x9030700,15, 0x9030740,15, 0x9030780,15, 0x90307c0,15, 0x9030800,15, 0x9030840,15, 0x9030880,15, 0x90308c0,15, 0x9030900,15, 0x9030940,15, 0x9030980,15, 0x90309c0,15, 0x9030a00,15, 0x9030a40,15, 0x9030a80,15, 0x9030ac0,15, 0x9030b00,15, 0x9030b40,15, 0x9030b80,15, 0x9030bc0,15, 0x9030c00,15, 0x9030c40,15, 0x9030c80,15, 0x9030cc0,15, 0x9030d00,15, 0x9030d40,15, 0x9030d80,15, 0x9030dc0,15, 0x9030e00,15, 0x9030e40,15, 0x9030e80,15, 0x9030ec0,15, 0x9030f00,15, 0x9030f40,15, 0x9030f80,15, 0x9030fc0,15, 0x9031000,15, 0x9031040,15, 0x9031080,15, 0x90310c0,15, 0x9031100,15, 0x9031140,15, 0x9031180,15, 0x90311c0,15, 0x9031200,15, 0x9031240,15, 0x9031280,15, 0x90312c0,15, 0x9031300,15, 0x9031340,15, 0x9031380,15, 0x90313c0,15, 0x9031400,15, 0x9031440,15, 0x9031480,15, 0x90314c0,15, 0x9031500,15, 0x9031540,15, 0x9031580,15, 0x90315c0,15, 0x9031600,15, 0x9031640,15, 0x9031680,15, 0x90316c0,15, 0x9031700,15, 0x9031740,15, 0x9031780,15, 0x90317c0,15, 0x9031800,15, 0x9031840,15, 0x9031880,15, 0x90318c0,15, 0x9031900,15, 0x9031940,15, 0x9031980,15, 0x90319c0,15, 0x9031a00,15, 0x9031a40,15, 0x9031a80,15, 0x9031ac0,15, 0x9031b00,15, 0x9031b40,15, 0x9031b80,15, 0x9031bc0,15, 0x9031c00,15, 0x9031c40,15, 0x9031c80,15, 0x9031cc0,15, 0x9031d00,15, 0x9031d40,15, 0x9031d80,15, 0x9031dc0,15, 0x9031e00,15, 0x9031e40,15, 0x9031e80,15, 0x9031ec0,15, 0x9031f00,15, 0x9031f40,15, 0x9031f80,15, 0x9031fc0,15, 0x9032000,15, 0x9032040,15, 0x9032080,15, 0x90320c0,15, 0x9032100,15, 0x9032140,15, 0x9032180,15, 0x90321c0,15, 0x9032200,15, 0x9032240,15, 0x9032280,15, 0x90322c0,15, 0x9032300,15, 0x9032340,15, 0x9032380,15, 0x90323c0,15, 0x9032400,15, 0x9032440,15, 0x9032480,15, 0x90324c0,15, 0x9032500,15, 0x9032540,15, 0x9032580,15, 0x90325c0,15, 0x9032600,15, 0x9032640,15, 0x9032680,15, 0x90326c0,15, 0x9032700,15, 0x9032740,15, 0x9032780,15, 0x90327c0,15, 0x9032800,15, 0x9032840,15, 0x9032880,15, 0x90328c0,15, 0x9032900,15, 0x9032940,15, 0x9032980,15, 0x90329c0,15, 0x9032a00,15, 0x9032a40,15, 0x9032a80,15, 0x9032ac0,15, 0x9032b00,15, 0x9032b40,15, 0x9032b80,15, 0x9032bc0,15, 0x9032c00,15, 0x9032c40,15, 0x9032c80,15, 0x9032cc0,15, 0x9032d00,15, 0x9032d40,15, 0x9032d80,15, 0x9032dc0,15, 0x9032e00,15, 0x9032e40,15, 0x9032e80,15, 0x9032ec0,15, 0x9032f00,15, 0x9032f40,15, 0x9032f80,15, 0x9032fc0,15, 0x9033000,15, 0x9033040,15, 0x9033080,15, 0x90330c0,15, 0x9033100,15, 0x9033140,15, 0x9033180,15, 0x90331c0,15, 0x9033200,15, 0x9033240,15, 0x9033280,15, 0x90332c0,15, 0x9033300,15, 0x9033340,15, 0x9033380,15, 0x90333c0,15, 0x9033400,15, 0x9033440,15, 0x9033480,15, 0x90334c0,15, 0x9033500,15, 0x9033540,15, 0x9033580,15, 0x90335c0,15, 0x9033600,15, 0x9033640,15, 0x9033680,15, 0x90336c0,15, 0x9033700,15, 0x9033740,15, 0x9033780,15, 0x90337c0,15, 0x9033800,15, 0x9033840,15, 0x9033880,15, 0x90338c0,15, 0x9033900,15, 0x9033940,15, 0x9033980,15, 0x90339c0,15, 0x9033a00,15, 0x9033a40,15, 0x9033a80,15, 0x9033ac0,15, 0x9033b00,15, 0x9033b40,15, 0x9033b80,15, 0x9033bc0,15, 0x9033c00,15, 0x9033c40,15, 0x9033c80,15, 0x9033cc0,15, 0x9033d00,15, 0x9033d40,15, 0x9033d80,15, 0x9033dc0,15, 0x9033e00,15, 0x9033e40,15, 0x9033e80,15, 0x9033ec0,15, 0x9033f00,15, 0x9033f40,15, 0x9033f80,15, 0x9033fc0,15, 0x9034000,15, 0x9034040,15, 0x9034080,15, 0x90340c0,15, 0x9034100,15, 0x9034140,15, 0x9034180,15, 0x90341c0,15, 0x9034200,15, 0x9034240,15, 0x9034280,15, 0x90342c0,15, 0x9034300,15, 0x9034340,15, 0x9034380,15, 0x90343c0,15, 0x9034400,15, 0x9034440,15, 0x9034480,15, 0x90344c0,15, 0x9034500,15, 0x9034540,15, 0x9034580,15, 0x90345c0,15, 0x9034600,15, 0x9034640,15, 0x9034680,15, 0x90346c0,15, 0x9034700,15, 0x9034740,15, 0x9034780,15, 0x90347c0,15, 0x9034800,15, 0x9034840,15, 0x9034880,15, 0x90348c0,15, 0x9034900,15, 0x9034940,15, 0x9034980,15, 0x90349c0,15, 0x9034a00,15, 0x9034a40,15, 0x9034a80,15, 0x9034ac0,15, 0x9034b00,15, 0x9034b40,15, 0x9034b80,15, 0x9034bc0,15, 0x9034c00,15, 0x9034c40,15, 0x9034c80,15, 0x9034cc0,15, 0x9034d00,15, 0x9034d40,15, 0x9034d80,15, 0x9034dc0,15, 0x9034e00,15, 0x9034e40,15, 0x9034e80,15, 0x9034ec0,15, 0x9034f00,15, 0x9034f40,15, 0x9034f80,15, 0x9034fc0,15, 0x9035000,15, 0x9035040,15, 0x9035080,15, 0x90350c0,15, 0x9035100,15, 0x9035140,15, 0x9035180,15, 0x90351c0,15, 0x9035200,15, 0x9035240,15, 0x9035280,15, 0x90352c0,15, 0x9035300,15, 0x9035340,15, 0x9035380,15, 0x90353c0,15, 0x9035400,15, 0x9035440,15, 0x9035480,15, 0x90354c0,15, 0x9035500,15, 0x9035540,15, 0x9035580,15, 0x90355c0,15, 0x9035600,15, 0x9035640,15, 0x9035680,15, 0x90356c0,15, 0x9035700,15, 0x9035740,15, 0x9035780,15, 0x90357c0,15, 0x9035800,15, 0x9035840,15, 0x9035880,15, 0x90358c0,15, 0x9035900,15, 0x9035940,15, 0x9035980,15, 0x90359c0,15, 0x9035a00,15, 0x9035a40,15, 0x9035a80,15, 0x9035ac0,15, 0x9035b00,15, 0x9035b40,15, 0x9035b80,15, 0x9035bc0,15, 0x9035c00,15, 0x9035c40,15, 0x9035c80,15, 0x9035cc0,15, 0x9035d00,15, 0x9035d40,15, 0x9035d80,15, 0x9035dc0,15, 0x9035e00,15, 0x9035e40,15, 0x9035e80,15, 0x9035ec0,15, 0x9035f00,15, 0x9035f40,15, 0x9035f80,15, 0x9035fc0,15, 0x9036000,15, 0x9036040,15, 0x9036080,15, 0x90360c0,15, 0x9036100,15, 0x9036140,15, 0x9036180,15, 0x90361c0,15, 0x9036200,15, 0x9036240,15, 0x9036280,15, 0x90362c0,15, 0x9036300,15, 0x9036340,15, 0x9036380,15, 0x90363c0,15, 0x9036400,15, 0x9036440,15, 0x9036480,15, 0x90364c0,15, 0x9036500,15, 0x9036540,15, 0x9036580,15, 0x90365c0,15, 0x9036600,15, 0x9036640,15, 0x9036680,15, 0x90366c0,15, 0x9036700,15, 0x9036740,15, 0x9036780,15, 0x90367c0,15, 0x9036800,15, 0x9036840,15, 0x9036880,15, 0x90368c0,15, 0x9036900,15, 0x9036940,15, 0x9036980,15, 0x90369c0,15, 0x9036a00,15, 0x9036a40,15, 0x9036a80,15, 0x9036ac0,15, 0x9036b00,15, 0x9036b40,15, 0x9036b80,15, 0x9036bc0,15, 0x9036c00,15, 0x9036c40,15, 0x9036c80,15, 0x9036cc0,15, 0x9036d00,15, 0x9036d40,15, 0x9036d80,15, 0x9036dc0,15, 0x9036e00,15, 0x9036e40,15, 0x9036e80,15, 0x9036ec0,15, 0x9036f00,15, 0x9036f40,15, 0x9036f80,15, 0x9036fc0,15, 0x9037000,15, 0x9037040,15, 0x9037080,15, 0x90370c0,15, 0x9037100,15, 0x9037140,15, 0x9037180,15, 0x90371c0,15, 0x9037200,15, 0x9037240,15, 0x9037280,15, 0x90372c0,15, 0x9037300,15, 0x9037340,15, 0x9037380,15, 0x90373c0,15, 0x9037400,15, 0x9037440,15, 0x9037480,15, 0x90374c0,15, 0x9037500,15, 0x9037540,15, 0x9037580,15, 0x90375c0,15, 0x9037600,15, 0x9037640,15, 0x9037680,15, 0x90376c0,15, 0x9037700,15, 0x9037740,15, 0x9037780,15, 0x90377c0,15, 0x9037800,15, 0x9037840,15, 0x9037880,15, 0x90378c0,15, 0x9037900,15, 0x9037940,15, 0x9037980,15, 0x90379c0,15, 0x9037a00,15, 0x9037a40,15, 0x9037a80,15, 0x9037ac0,15, 0x9037b00,15, 0x9037b40,15, 0x9037b80,15, 0x9037bc0,15, 0x9037c00,15, 0x9037c40,15, 0x9037c80,15, 0x9037cc0,15, 0x9037d00,15, 0x9037d40,15, 0x9037d80,15, 0x9037dc0,15, 0x9037e00,15, 0x9037e40,15, 0x9037e80,15, 0x9037ec0,15, 0x9037f00,15, 0x9037f40,15, 0x9037f80,15, 0x9037fc0,15, 0x9038000,15, 0x9038040,15, 0x9038080,15, 0x90380c0,15, 0x9038100,15, 0x9038140,15, 0x9038180,15, 0x90381c0,15, 0x9038200,15, 0x9038240,15, 0x9038280,15, 0x90382c0,15, 0x9038300,15, 0x9038340,15, 0x9038380,15, 0x90383c0,15, 0x9038400,15, 0x9038440,15, 0x9038480,15, 0x90384c0,15, 0x9038500,15, 0x9038540,15, 0x9038580,15, 0x90385c0,15, 0x9038600,15, 0x9038640,15, 0x9038680,15, 0x90386c0,15, 0x9038700,15, 0x9038740,15, 0x9038780,15, 0x90387c0,15, 0x9038800,15, 0x9038840,15, 0x9038880,15, 0x90388c0,15, 0x9038900,15, 0x9038940,15, 0x9038980,15, 0x90389c0,15, 0x9038a00,15, 0x9038a40,15, 0x9038a80,15, 0x9038ac0,15, 0x9038b00,15, 0x9038b40,15, 0x9038b80,15, 0x9038bc0,15, 0x9038c00,15, 0x9038c40,15, 0x9038c80,15, 0x9038cc0,15, 0x9038d00,15, 0x9038d40,15, 0x9038d80,15, 0x9038dc0,15, 0x9038e00,15, 0x9038e40,15, 0x9038e80,15, 0x9038ec0,15, 0x9038f00,15, 0x9038f40,15, 0x9038f80,15, 0x9038fc0,15, 0x9039000,15, 0x9039040,15, 0x9039080,15, 0x90390c0,15, 0x9039100,15, 0x9039140,15, 0x9039180,15, 0x90391c0,15, 0x9039200,15, 0x9039240,15, 0x9039280,15, 0x90392c0,15, 0x9039300,15, 0x9039340,15, 0x9039380,15, 0x90393c0,15, 0x9039400,15, 0x9039440,15, 0x9039480,15, 0x90394c0,15, 0x9039500,15, 0x9039540,15, 0x9039580,15, 0x90395c0,15, 0x9039600,15, 0x9039640,15, 0x9039680,15, 0x90396c0,15, 0x9039700,15, 0x9039740,15, 0x9039780,15, 0x90397c0,15, 0x9039800,15, 0x9039840,15, 0x9039880,15, 0x90398c0,15, 0x9039900,15, 0x9039940,15, 0x9039980,15, 0x90399c0,15, 0x9039a00,15, 0x9039a40,15, 0x9039a80,15, 0x9039ac0,15, 0x9039b00,15, 0x9039b40,15, 0x9039b80,15, 0x9039bc0,15, 0x9039c00,15, 0x9039c40,15, 0x9039c80,15, 0x9039cc0,15, 0x9039d00,15, 0x9039d40,15, 0x9039d80,15, 0x9039dc0,15, 0x9039e00,15, 0x9039e40,15, 0x9039e80,15, 0x9039ec0,15, 0x9039f00,15, 0x9039f40,15, 0x9039f80,15, 0x9039fc0,15, 0x903a000,15, 0x903a040,15, 0x903a080,15, 0x903a0c0,15, 0x903a100,15, 0x903a140,15, 0x903a180,15, 0x903a1c0,15, 0x903a200,15, 0x903a240,15, 0x903a280,15, 0x903a2c0,15, 0x903a300,15, 0x903a340,15, 0x903a380,15, 0x903a3c0,15, 0x903a400,15, 0x903a440,15, 0x903a480,15, 0x903a4c0,15, 0x903a500,15, 0x903a540,15, 0x903a580,15, 0x903a5c0,15, 0x903a600,15, 0x903a640,15, 0x903a680,15, 0x903a6c0,15, 0x903a700,15, 0x903a740,15, 0x903a780,15, 0x903a7c0,15, 0x903a800,15, 0x903a840,15, 0x903a880,15, 0x903a8c0,15, 0x903a900,15, 0x903a940,15, 0x903a980,15, 0x903a9c0,15, 0x903aa00,15, 0x903aa40,15, 0x903aa80,15, 0x903aac0,15, 0x903ab00,15, 0x903ab40,15, 0x903ab80,15, 0x903abc0,15, 0x903ac00,15, 0x903ac40,15, 0x903ac80,15, 0x903acc0,15, 0x903ad00,15, 0x903ad40,15, 0x903ad80,15, 0x903adc0,15, 0x903ae00,15, 0x903ae40,15, 0x903ae80,15, 0x903aec0,15, 0x903af00,15, 0x903af40,15, 0x903af80,15, 0x903afc0,15, 0x903b000,15, 0x903b040,15, 0x903b080,15, 0x903b0c0,15, 0x903b100,15, 0x903b140,15, 0x903b180,15, 0x903b1c0,15, 0x903b200,15, 0x903b240,15, 0x903b280,15, 0x903b2c0,15, 0x903b300,15, 0x903b340,15, 0x903b380,15, 0x903b3c0,15, 0x903b400,15, 0x903b440,15, 0x903b480,15, 0x903b4c0,15, 0x903b500,15, 0x903b540,15, 0x903b580,15, 0x903b5c0,15, 0x903b600,15, 0x903b640,15, 0x903b680,15, 0x903b6c0,15, 0x903b700,15, 0x903b740,15, 0x903b780,15, 0x903b7c0,15, 0x903b800,15, 0x903b840,15, 0x903b880,15, 0x903b8c0,15, 0x903b900,15, 0x903b940,15, 0x903b980,15, 0x903b9c0,15, 0x903ba00,15, 0x903ba40,15, 0x903ba80,15, 0x903bac0,15, 0x903bb00,15, 0x903bb40,15, 0x903bb80,15, 0x903bbc0,15, 0x903bc00,15, 0x903bc40,15, 0x903bc80,15, 0x903bcc0,15, 0x903bd00,15, 0x903bd40,15, 0x903bd80,15, 0x903bdc0,15, 0x903be00,15, 0x903be40,15, 0x903be80,15, 0x903bec0,15, 0x903bf00,15, 0x903bf40,15, 0x903bf80,15, 0x903bfc0,15, 0x903c000,15, 0x903c040,15, 0x903c080,15, 0x903c0c0,15, 0x903c100,15, 0x903c140,15, 0x903c180,15, 0x903c1c0,15, 0x903c200,15, 0x903c240,15, 0x903c280,15, 0x903c2c0,15, 0x903c300,15, 0x903c340,15, 0x903c380,15, 0x903c3c0,15, 0x903c400,15, 0x903c440,15, 0x903c480,15, 0x903c4c0,15, 0x903c500,15, 0x903c540,15, 0x903c580,15, 0x903c5c0,15, 0x903c600,15, 0x903c640,15, 0x903c680,15, 0x903c6c0,15, 0x903c700,15, 0x903c740,15, 0x903c780,15, 0x903c7c0,15, 0x903c800,15, 0x903c840,15, 0x903c880,15, 0x903c8c0,15, 0x903c900,15, 0x903c940,15, 0x903c980,15, 0x903c9c0,15, 0x903ca00,15, 0x903ca40,15, 0x903ca80,15, 0x903cac0,15, 0x903cb00,15, 0x903cb40,15, 0x903cb80,15, 0x903cbc0,15, 0x903cc00,15, 0x903cc40,15, 0x903cc80,15, 0x903ccc0,15, 0x903cd00,15, 0x903cd40,15, 0x903cd80,15, 0x903cdc0,15, 0x903ce00,15, 0x903ce40,15, 0x903ce80,15, 0x903cec0,15, 0x903cf00,15, 0x903cf40,15, 0x903cf80,15, 0x903cfc0,15, 0x903d000,15, 0x903d040,15, 0x903d080,15, 0x903d0c0,15, 0x903d100,15, 0x903d140,15, 0x903d180,15, 0x903d1c0,15, 0x903d200,15, 0x903d240,15, 0x903d280,15, 0x903d2c0,15, 0x903d300,15, 0x903d340,15, 0x903d380,15, 0x903d3c0,15, 0x903d400,15, 0x903d440,15, 0x903d480,15, 0x903d4c0,15, 0x903d500,15, 0x903d540,15, 0x903d580,15, 0x903d5c0,15, 0x903d600,15, 0x903d640,15, 0x903d680,15, 0x903d6c0,15, 0x903d700,15, 0x903d740,15, 0x903d780,15, 0x903d7c0,15, 0x903d800,15, 0x903d840,15, 0x903d880,15, 0x903d8c0,15, 0x903d900,15, 0x903d940,15, 0x903d980,15, 0x903d9c0,15, 0x903da00,15, 0x903da40,15, 0x903da80,15, 0x903dac0,15, 0x903db00,15, 0x903db40,15, 0x903db80,15, 0x903dbc0,15, 0x903dc00,15, 0x903dc40,15, 0x903dc80,15, 0x903dcc0,15, 0x903dd00,15, 0x903dd40,15, 0x903dd80,15, 0x903ddc0,15, 0x903de00,15, 0x903de40,15, 0x903de80,15, 0x903dec0,15, 0x903df00,15, 0x903df40,15, 0x903df80,15, 0x903dfc0,15, 0x903e000,15, 0x903e040,15, 0x903e080,15, 0x903e0c0,15, 0x903e100,15, 0x903e140,15, 0x903e180,15, 0x903e1c0,15, 0x903e200,15, 0x903e240,15, 0x903e280,15, 0x903e2c0,15, 0x903e300,15, 0x903e340,15, 0x903e380,15, 0x903e3c0,15, 0x903e400,15, 0x903e440,15, 0x903e480,15, 0x903e4c0,15, 0x903e500,15, 0x903e540,15, 0x903e580,15, 0x903e5c0,15, 0x903e600,15, 0x903e640,15, 0x903e680,15, 0x903e6c0,15, 0x903e700,15, 0x903e740,15, 0x903e780,15, 0x903e7c0,15, 0x903e800,15, 0x903e840,15, 0x903e880,15, 0x903e8c0,15, 0x903e900,15, 0x903e940,15, 0x903e980,15, 0x903e9c0,15, 0x903ea00,15, 0x903ea40,15, 0x903ea80,15, 0x903eac0,15, 0x903eb00,15, 0x903eb40,15, 0x903eb80,15, 0x903ebc0,15, 0x903ec00,15, 0x903ec40,15, 0x903ec80,15, 0x903ecc0,15, 0x903ed00,15, 0x903ed40,15, 0x903ed80,15, 0x903edc0,15, 0x903ee00,15, 0x903ee40,15, 0x903ee80,15, 0x903eec0,15, 0x903ef00,15, 0x903ef40,15, 0x903ef80,15, 0x903efc0,15, 0x903f000,15, 0x903f040,15, 0x903f080,15, 0x903f0c0,15, 0x903f100,15, 0x903f140,15, 0x903f180,15, 0x903f1c0,15, 0x903f200,15, 0x903f240,15, 0x903f280,15, 0x903f2c0,15, 0x903f300,15, 0x903f340,15, 0x903f380,15, 0x903f3c0,15, 0x903f400,15, 0x903f440,15, 0x903f480,15, 0x903f4c0,15, 0x903f500,15, 0x903f540,15, 0x903f580,15, 0x903f5c0,15, 0x903f600,15, 0x903f640,15, 0x903f680,15, 0x903f6c0,15, 0x903f700,15, 0x903f740,15, 0x903f780,15, 0x903f7c0,15, 0x903f800,15, 0x903f840,15, 0x903f880,15, 0x903f8c0,15, 0x903f900,15, 0x903f940,15, 0x903f980,15, 0x903f9c0,15, 0x903fa00,15, 0x903fa40,15, 0x903fa80,15, 0x903fac0,15, 0x903fb00,15, 0x903fb40,15, 0x903fb80,15, 0x903fbc0,15, 0x903fc00,15, 0x903fc40,15, 0x903fc80,15, 0x903fcc0,15, 0x903fd00,15, 0x903fd40,15, 0x903fd80,15, 0x903fdc0,15, 0x903fe00,15, 0x903fe40,15, 0x903fe80,15, 0x903fec0,15, 0x903ff00,15, 0x903ff40,15, 0x903ff80,15, 0x903ffc0,15, 0x9040000,15, 0x9040040,15, 0x9040080,15, 0x90400c0,15, 0x9040100,15, 0x9040140,15, 0x9040180,15, 0x90401c0,15, 0x9040200,15, 0x9040240,15, 0x9040280,15, 0x90402c0,15, 0x9040300,15, 0x9040340,15, 0x9040380,15, 0x90403c0,15, 0x9040400,15, 0x9040440,15, 0x9040480,15, 0x90404c0,15, 0x9040500,15, 0x9040540,15, 0x9040580,15, 0x90405c0,15, 0x9040600,15, 0x9040640,15, 0x9040680,15, 0x90406c0,15, 0x9040700,15, 0x9040740,15, 0x9040780,15, 0x90407c0,15, 0x9040800,15, 0x9040840,15, 0x9040880,15, 0x90408c0,15, 0x9040900,15, 0x9040940,15, 0x9040980,15, 0x90409c0,15, 0x9040a00,15, 0x9040a40,15, 0x9040a80,15, 0x9040ac0,15, 0x9040b00,15, 0x9040b40,15, 0x9040b80,15, 0x9040bc0,15, 0x9040c00,15, 0x9040c40,15, 0x9040c80,15, 0x9040cc0,15, 0x9040d00,15, 0x9040d40,15, 0x9040d80,15, 0x9040dc0,15, 0x9040e00,15, 0x9040e40,15, 0x9040e80,15, 0x9040ec0,15, 0x9040f00,15, 0x9040f40,15, 0x9040f80,15, 0x9040fc0,15, 0x9080000,2, 0x9080040,9, 0x9080080,17, 0x9080100,17, 0x9080180,3, 0x9100004,1, 0x910001c,49, 0x9100100,2, 0x9100114,11, 0x9100200,17, 0x9100248,2, 0x9100284,1, 0x91002a0,14, 0x91002e0,6, 0x9100304,5, 0x9100320,12, 0x9100360,7, 0x9100380,6, 0x91003a0,12, 0x91003e0,7, 0x9100400,6, 0x9100420,8, 0x9100444,7, 0x9100604,1, 0x9100610,4, 0x9100640,3, 0x9100650,3, 0x9100660,3, 0x9100670,2, 0x9100800,9, 0x9100840,9, 0x9100880,1, 0x9100888,2, 0x91008c4,1, 0x91008dc,15, 0x9100920,6, 0x9100a04,6, 0x9100a20,4, 0x9100a34,4, 0x9100a60,6, 0x9100a80,5, 0x9100aa0,4, 0x9100ac0,6, 0x9100ae0,6, 0x9100b00,5, 0x9100b20,4, 0x9100b40,6, 0x9100b60,3, 0x9100c00,15, 0x9100c40,21, 0x9100e04,1, 0x9100e40,16, 0x9100f00,10, 0x9100f40,10, 0x9100f80,10, 0x9100fc0,2, 0x9101004,1, 0x9101014,6, 0x9101200,9, 0x9101240,9, 0x9101280,1, 0x9101288,2, 0x91012c4,1, 0x91012dc,15, 0x9101320,14, 0x9101400,2, 0x9101420,13, 0x9101460,5, 0x9101480,6, 0x91014a0,13, 0x91014e0,5, 0x9101500,6, 0x9101520,4, 0x9101544,12, 0x9108004,1, 0x9108018,58, 0x9108104,31, 0x9108184,31, 0x9108204,1, 0x9108240,16, 0x9108284,1, 0x91082c0,16, 0x9110000,4, 0x9110040,9, 0x9112000,140, 0x9112400,140, 0x9112800,1, 0x9112808,2, 0x9112c04,1, 0x9112dd0,142, 0x9114000,48, 0x9114100,48, 0x9114200,48, 0x9114300,2, 0x9114400,1, 0x9118000,51, 0x9118100,42, 0x9118200,30, 0x9118280,20, 0x9118300,19, 0x9118380,14, 0x9118400,37, 0x9118500,37, 0x9118600,19, 0x9118680,19, 0x9118700,30, 0x9118780,30, 0x9118800,20, 0x9118880,20, 0x9118c00,35, 0x9118d00,35, 0x9118e00,35, 0x9118f00,2, 0x9119000,22, 0x9119080,22, 0x9119100,14, 0x9119140,14, 0x9119180,15, 0x9119204,1, 0x9119230,20, 0x9119300,4, 0x9119380,20, 0x9119400,8, 0x9119800,220, 0x9119c00,92, 0x9119e00,36, 0x911a000,68, 0x911a400,148, 0x911a800,212, 0x911ac00,27, 0x911ac80,3, 0x911ac90,2, 0xa000000,23, 0xa000080,23, 0xa000100,23, 0xa000180,23, 0xa000200,23, 0xa000280,23, 0xa000300,23, 0xa000380,23, 0xa000400,23, 0xa000480,23, 0xa000500,23, 0xa000580,23, 0xa000600,23, 0xa000680,23, 0xa000700,23, 0xa000780,23, 0xa000800,23, 0xa000880,23, 0xa000900,23, 0xa000980,23, 0xa000a00,23, 0xa000a80,23, 0xa000b00,23, 0xa000b80,23, 0xa000c00,23, 0xa000c80,23, 0xa000d00,23, 0xa000d80,23, 0xa000e00,23, 0xa000e80,23, 0xa000f00,23, 0xa000f80,23, 0xa001000,23, 0xa001080,23, 0xa001100,23, 0xa001180,23, 0xa001200,23, 0xa001280,23, 0xa001300,23, 0xa001380,23, 0xa001400,23, 0xa001480,23, 0xa001500,23, 0xa001580,23, 0xa001600,23, 0xa001680,23, 0xa001700,23, 0xa001780,23, 0xa001800,23, 0xa001880,23, 0xa001900,23, 0xa001980,23, 0xa001a00,23, 0xa001a80,23, 0xa001b00,23, 0xa001b80,23, 0xa001c00,23, 0xa001c80,23, 0xa001d00,23, 0xa001d80,23, 0xa001e00,23, 0xa001e80,23, 0xa001f00,23, 0xa001f80,23, 0xa002000,23, 0xa002080,23, 0xa002100,23, 0xa002180,23, 0xa002200,23, 0xa002280,23, 0xa002300,23, 0xa002380,23, 0xa002400,23, 0xa002480,23, 0xa002500,23, 0xa002580,23, 0xa002600,23, 0xa002680,23, 0xa002700,23, 0xa002780,23, 0xa002800,23, 0xa002880,23, 0xa002900,23, 0xa002980,23, 0xa002a00,23, 0xa002a80,23, 0xa002b00,23, 0xa002b80,23, 0xa002c00,23, 0xa002c80,23, 0xa002d00,23, 0xa002d80,23, 0xa002e00,23, 0xa002e80,23, 0xa002f00,23, 0xa002f80,23, 0xa003000,23, 0xa003080,23, 0xa003100,23, 0xa003180,23, 0xa003200,23, 0xa003280,23, 0xa003300,23, 0xa003380,23, 0xa003400,23, 0xa003480,23, 0xa003500,23, 0xa003580,23, 0xa003600,23, 0xa003680,23, 0xa003700,23, 0xa003780,23, 0xa003800,23, 0xa003880,23, 0xa003900,23, 0xa003980,23, 0xa003a00,23, 0xa003a80,23, 0xa003b00,23, 0xa003b80,23, 0xa003c00,23, 0xa003c80,23, 0xa003d00,23, 0xa003d80,23, 0xa003e00,23, 0xa003e80,23, 0xa003f00,23, 0xa003f80,23, 0xa004000,23, 0xa004080,23, 0xa004100,23, 0xa004180,23, 0xa004200,23, 0xa004280,23, 0xa004300,23, 0xa004380,23, 0xa004400,23, 0xa004480,23, 0xa004500,23, 0xa004580,23, 0xa004600,23, 0xa004680,23, 0xa004700,23, 0xa004780,23, 0xa004800,23, 0xa004880,23, 0xa004900,23, 0xa004980,23, 0xa004a00,23, 0xa004a80,23, 0xa004b00,23, 0xa004b80,23, 0xa004c00,23, 0xa004c80,23, 0xa004d00,23, 0xa004d80,23, 0xa004e00,23, 0xa004e80,23, 0xa004f00,23, 0xa004f80,23, 0xa005000,23, 0xa005080,23, 0xa005100,23, 0xa005180,23, 0xa005200,23, 0xa005280,23, 0xa005300,23, 0xa005380,23, 0xa005400,23, 0xa005480,23, 0xa005500,23, 0xa005580,23, 0xa005600,23, 0xa005680,23, 0xa005700,23, 0xa005780,23, 0xa005800,23, 0xa005880,23, 0xa005900,23, 0xa005980,23, 0xa005a00,23, 0xa005a80,23, 0xa005b00,23, 0xa005b80,23, 0xa005c00,23, 0xa005c80,23, 0xa005d00,23, 0xa005d80,23, 0xa005e00,23, 0xa005e80,23, 0xa005f00,23, 0xa005f80,23, 0xa006000,23, 0xa006080,23, 0xa006100,23, 0xa006180,23, 0xa006200,23, 0xa006280,23, 0xa006300,23, 0xa006380,23, 0xa006400,23, 0xa006480,23, 0xa006500,23, 0xa006580,23, 0xa006600,23, 0xa006680,23, 0xa006700,23, 0xa006780,23, 0xa006800,23, 0xa006880,23, 0xa006900,23, 0xa006980,23, 0xa006a00,23, 0xa006a80,23, 0xa006b00,23, 0xa006b80,23, 0xa006c00,23, 0xa006c80,23, 0xa006d00,23, 0xa006d80,23, 0xa006e00,23, 0xa006e80,23, 0xa006f00,23, 0xa006f80,23, 0xa007000,23, 0xa007080,23, 0xa007100,23, 0xa007180,23, 0xa007200,23, 0xa007280,23, 0xa007300,23, 0xa007380,23, 0xa007400,23, 0xa007480,23, 0xa007500,23, 0xa007580,23, 0xa007600,23, 0xa007680,23, 0xa007700,23, 0xa007780,23, 0xa007800,23, 0xa007880,23, 0xa007900,23, 0xa007980,23, 0xa007a00,23, 0xa007a80,23, 0xa007b00,23, 0xa007b80,23, 0xa007c00,23, 0xa007c80,23, 0xa007d00,23, 0xa007d80,23, 0xa007e00,23, 0xa007e80,23, 0xa007f00,23, 0xa007f80,23, 0xa008000,23, 0xa008080,23, 0xa008100,23, 0xa008180,23, 0xa008200,23, 0xa008280,23, 0xa008300,23, 0xa008380,23, 0xa008400,23, 0xa008480,23, 0xa008500,23, 0xa008580,23, 0xa008600,23, 0xa008680,23, 0xa008700,23, 0xa008780,23, 0xa008800,23, 0xa008880,23, 0xa008900,23, 0xa008980,23, 0xa008a00,23, 0xa008a80,23, 0xa008b00,23, 0xa008b80,23, 0xa008c00,23, 0xa008c80,23, 0xa008d00,23, 0xa008d80,23, 0xa008e00,23, 0xa008e80,23, 0xa008f00,23, 0xa008f80,23, 0xa009000,23, 0xa009080,23, 0xa009100,23, 0xa009180,23, 0xa009200,23, 0xa009280,23, 0xa009300,23, 0xa009380,23, 0xa009400,23, 0xa009480,23, 0xa009500,23, 0xa009580,23, 0xa009600,23, 0xa009680,23, 0xa009700,23, 0xa009780,23, 0xa009800,23, 0xa009880,23, 0xa009900,23, 0xa009980,23, 0xa009a00,23, 0xa009a80,23, 0xa009b00,23, 0xa009b80,23, 0xa009c00,23, 0xa009c80,23, 0xa009d00,23, 0xa009d80,23, 0xa009e00,23, 0xa009e80,23, 0xa009f00,23, 0xa009f80,23, 0xa00a000,23, 0xa00a080,23, 0xa00a100,23, 0xa00a180,23, 0xa00a200,23, 0xa00a280,23, 0xa00a300,23, 0xa00a380,23, 0xa00a400,23, 0xa00a480,23, 0xa00a500,23, 0xa00a580,23, 0xa00a600,23, 0xa00a680,23, 0xa00a700,23, 0xa00a780,23, 0xa00a800,23, 0xa00a880,23, 0xa00a900,23, 0xa00a980,23, 0xa00aa00,23, 0xa00aa80,23, 0xa00ab00,23, 0xa00ab80,23, 0xa00ac00,23, 0xa00ac80,23, 0xa00ad00,23, 0xa00ad80,23, 0xa00ae00,23, 0xa00ae80,23, 0xa00af00,23, 0xa00af80,23, 0xa00b000,23, 0xa00b080,23, 0xa00b100,23, 0xa00b180,23, 0xa00b200,23, 0xa00b280,23, 0xa00b300,23, 0xa00b380,23, 0xa00b400,23, 0xa00b480,23, 0xa00b500,23, 0xa00b580,23, 0xa00b600,23, 0xa00b680,23, 0xa00b700,23, 0xa00b780,23, 0xa00b800,23, 0xa00b880,23, 0xa00b900,23, 0xa00b980,23, 0xa00ba00,23, 0xa00ba80,23, 0xa00bb00,23, 0xa00bb80,23, 0xa00bc00,23, 0xa00bc80,23, 0xa00bd00,23, 0xa00bd80,23, 0xa00be00,23, 0xa00be80,23, 0xa00bf00,23, 0xa00bf80,23, 0xa00c000,23, 0xa00c080,23, 0xa00c100,23, 0xa00c180,23, 0xa00c200,23, 0xa00c280,23, 0xa00c300,23, 0xa00c380,23, 0xa00c400,23, 0xa00c480,23, 0xa00c500,23, 0xa00c580,23, 0xa00c600,23, 0xa00c680,23, 0xa00c700,23, 0xa00c780,23, 0xa00c800,23, 0xa00c880,23, 0xa00c900,23, 0xa00c980,23, 0xa00ca00,23, 0xa00ca80,23, 0xa00cb00,23, 0xa00cb80,23, 0xa00cc00,23, 0xa00cc80,23, 0xa00cd00,23, 0xa00cd80,23, 0xa00ce00,23, 0xa00ce80,23, 0xa00cf00,23, 0xa00cf80,23, 0xa00d000,23, 0xa00d080,23, 0xa00d100,23, 0xa00d180,23, 0xa00d200,23, 0xa00d280,23, 0xa00d300,23, 0xa00d380,23, 0xa00d400,23, 0xa00d480,23, 0xa00d500,23, 0xa00d580,23, 0xa00d600,23, 0xa00d680,23, 0xa00d700,23, 0xa00d780,23, 0xa00d800,23, 0xa00d880,23, 0xa00d900,23, 0xa00d980,23, 0xa00da00,23, 0xa00da80,23, 0xa00db00,23, 0xa00db80,23, 0xa00dc00,23, 0xa00dc80,23, 0xa00dd00,23, 0xa00dd80,23, 0xa00de00,23, 0xa00de80,23, 0xa00df00,23, 0xa00df80,23, 0xa00e000,23, 0xa00e080,23, 0xa00e100,23, 0xa00e180,23, 0xa00e200,23, 0xa00e280,23, 0xa00e300,23, 0xa00e380,23, 0xa00e400,23, 0xa00e480,23, 0xa00e500,23, 0xa00e580,23, 0xa00e600,23, 0xa00e680,23, 0xa00e700,23, 0xa00e780,23, 0xa00e800,23, 0xa00e880,23, 0xa00e900,23, 0xa00e980,23, 0xa00ea00,23, 0xa00ea80,23, 0xa00eb00,23, 0xa00eb80,23, 0xa00ec00,23, 0xa00ec80,23, 0xa00ed00,23, 0xa00ed80,23, 0xa00ee00,23, 0xa00ee80,23, 0xa00ef00,23, 0xa00ef80,23, 0xa00f000,23, 0xa00f080,23, 0xa00f100,23, 0xa00f180,23, 0xa00f200,23, 0xa00f280,23, 0xa00f300,23, 0xa00f380,23, 0xa00f400,23, 0xa00f480,23, 0xa00f500,23, 0xa00f580,23, 0xa00f600,23, 0xa00f680,23, 0xa00f700,23, 0xa00f780,23, 0xa00f800,23, 0xa00f880,23, 0xa00f900,23, 0xa00f980,23, 0xa00fa00,23, 0xa00fa80,23, 0xa00fb00,23, 0xa00fb80,23, 0xa00fc00,23, 0xa00fc80,23, 0xa00fd00,23, 0xa00fd80,23, 0xa00fe00,23, 0xa00fe80,23, 0xa00ff00,23, 0xa00ff80,23, 0xa010000,23, 0xa010080,23, 0xa010100,23, 0xa010180,23, 0xa010200,23, 0xa010280,23, 0xa010300,23, 0xa010380,23, 0xa010400,23, 0xa010480,23, 0xa010500,23, 0xa010580,23, 0xa010600,23, 0xa010680,23, 0xa010700,23, 0xa010780,23, 0xa010800,23, 0xa010880,23, 0xa010900,23, 0xa010980,23, 0xa010a00,23, 0xa010a80,23, 0xa010b00,23, 0xa010b80,23, 0xa010c00,23, 0xa010c80,23, 0xa010d00,23, 0xa010d80,23, 0xa010e00,23, 0xa010e80,23, 0xa010f00,23, 0xa010f80,23, 0xa011000,23, 0xa011080,23, 0xa011100,23, 0xa011180,23, 0xa011200,23, 0xa011280,23, 0xa011300,23, 0xa011380,23, 0xa011400,23, 0xa011480,23, 0xa011500,23, 0xa011580,23, 0xa011600,23, 0xa011680,23, 0xa011700,23, 0xa011780,23, 0xa011800,23, 0xa011880,23, 0xa011900,23, 0xa011980,23, 0xa011a00,23, 0xa011a80,23, 0xa011b00,23, 0xa011b80,23, 0xa011c00,23, 0xa011c80,23, 0xa011d00,23, 0xa011d80,23, 0xa011e00,23, 0xa011e80,23, 0xa011f00,23, 0xa011f80,23, 0xa012000,23, 0xa012080,23, 0xa012100,23, 0xa012180,23, 0xa012200,23, 0xa012280,23, 0xa012300,23, 0xa012380,23, 0xa012400,23, 0xa012480,23, 0xa012500,23, 0xa012580,23, 0xa012600,23, 0xa012680,23, 0xa012700,23, 0xa012780,23, 0xa012800,23, 0xa012880,23, 0xa012900,23, 0xa012980,23, 0xa012a00,23, 0xa012a80,23, 0xa012b00,23, 0xa012b80,23, 0xa012c00,23, 0xa012c80,23, 0xa012d00,23, 0xa012d80,23, 0xa012e00,23, 0xa012e80,23, 0xa012f00,23, 0xa012f80,23, 0xa013000,23, 0xa013080,23, 0xa013100,23, 0xa013180,23, 0xa013200,23, 0xa013280,23, 0xa013300,23, 0xa013380,23, 0xa013400,23, 0xa013480,23, 0xa013500,23, 0xa013580,23, 0xa013600,23, 0xa013680,23, 0xa013700,23, 0xa013780,23, 0xa013800,23, 0xa013880,23, 0xa013900,23, 0xa013980,23, 0xa013a00,23, 0xa013a80,23, 0xa013b00,23, 0xa013b80,23, 0xa013c00,23, 0xa013c80,23, 0xa013d00,23, 0xa013d80,23, 0xa013e00,23, 0xa013e80,23, 0xa013f00,23, 0xa013f80,23, 0xa014000,23, 0xa014080,23, 0xa014100,23, 0xa014180,23, 0xa014200,23, 0xa014280,23, 0xa014300,23, 0xa014380,23, 0xa014400,23, 0xa014480,23, 0xa014500,23, 0xa014580,23, 0xa014600,23, 0xa014680,23, 0xa014700,23, 0xa014780,23, 0xa014800,23, 0xa014880,23, 0xa014900,23, 0xa014980,23, 0xa014a00,23, 0xa014a80,23, 0xa014b00,23, 0xa014b80,23, 0xa014c00,23, 0xa014c80,23, 0xa014d00,23, 0xa014d80,23, 0xa014e00,23, 0xa014e80,23, 0xa014f00,23, 0xa014f80,23, 0xa015000,23, 0xa015080,23, 0xa015100,23, 0xa015180,23, 0xa015200,23, 0xa015280,23, 0xa015300,23, 0xa015380,23, 0xa015400,23, 0xa015480,23, 0xa015500,23, 0xa015580,23, 0xa015600,23, 0xa015680,23, 0xa015700,23, 0xa015780,23, 0xa015800,23, 0xa015880,23, 0xa015900,23, 0xa015980,23, 0xa015a00,23, 0xa015a80,23, 0xa015b00,23, 0xa015b80,23, 0xa015c00,23, 0xa015c80,23, 0xa015d00,23, 0xa015d80,23, 0xa015e00,23, 0xa015e80,23, 0xa015f00,23, 0xa015f80,23, 0xa016000,23, 0xa016080,23, 0xa016100,23, 0xa016180,23, 0xa016200,23, 0xa016280,23, 0xa016300,23, 0xa016380,23, 0xa016400,23, 0xa016480,23, 0xa016500,23, 0xa016580,23, 0xa016600,23, 0xa016680,23, 0xa016700,23, 0xa016780,23, 0xa016800,23, 0xa016880,23, 0xa016900,23, 0xa016980,23, 0xa016a00,23, 0xa016a80,23, 0xa016b00,23, 0xa016b80,23, 0xa016c00,23, 0xa016c80,23, 0xa016d00,23, 0xa016d80,23, 0xa016e00,23, 0xa016e80,23, 0xa016f00,23, 0xa016f80,23, 0xa017000,23, 0xa017080,23, 0xa017100,23, 0xa017180,23, 0xa017200,23, 0xa017280,23, 0xa017300,23, 0xa017380,23, 0xa017400,23, 0xa017480,23, 0xa017500,23, 0xa017580,23, 0xa017600,23, 0xa017680,23, 0xa017700,23, 0xa017780,23, 0xa017800,23, 0xa017880,23, 0xa017900,23, 0xa017980,23, 0xa017a00,23, 0xa017a80,23, 0xa017b00,23, 0xa017b80,23, 0xa017c00,23, 0xa017c80,23, 0xa017d00,23, 0xa017d80,23, 0xa017e00,23, 0xa017e80,23, 0xa017f00,23, 0xa017f80,23, 0xa018000,23, 0xa018080,23, 0xa018100,23, 0xa018180,23, 0xa018200,23, 0xa018280,23, 0xa018300,23, 0xa018380,23, 0xa018400,23, 0xa018480,23, 0xa018500,23, 0xa018580,23, 0xa018600,23, 0xa018680,23, 0xa018700,23, 0xa018780,23, 0xa018800,23, 0xa018880,23, 0xa018900,23, 0xa018980,23, 0xa018a00,23, 0xa018a80,23, 0xa018b00,23, 0xa018b80,23, 0xa018c00,23, 0xa018c80,23, 0xa018d00,23, 0xa018d80,23, 0xa018e00,23, 0xa018e80,23, 0xa018f00,23, 0xa018f80,23, 0xa019000,23, 0xa019080,23, 0xa019100,23, 0xa019180,23, 0xa019200,23, 0xa019280,23, 0xa019300,23, 0xa019380,23, 0xa019400,23, 0xa019480,23, 0xa019500,23, 0xa019580,23, 0xa019600,23, 0xa019680,23, 0xa019700,23, 0xa019780,23, 0xa019800,23, 0xa019880,23, 0xa019900,23, 0xa019980,23, 0xa019a00,23, 0xa019a80,23, 0xa019b00,23, 0xa019b80,23, 0xa019c00,23, 0xa019c80,23, 0xa019d00,23, 0xa019d80,23, 0xa019e00,23, 0xa019e80,23, 0xa019f00,23, 0xa019f80,23, 0xa01a000,23, 0xa01a080,23, 0xa01a100,23, 0xa01a180,23, 0xa01a200,23, 0xa01a280,23, 0xa01a300,23, 0xa01a380,23, 0xa01a400,23, 0xa01a480,23, 0xa01a500,23, 0xa01a580,23, 0xa01a600,23, 0xa01a680,23, 0xa01a700,23, 0xa01a780,23, 0xa01a800,23, 0xa01a880,23, 0xa01a900,23, 0xa01a980,23, 0xa01aa00,23, 0xa01aa80,23, 0xa01ab00,23, 0xa01ab80,23, 0xa01ac00,23, 0xa01ac80,23, 0xa01ad00,23, 0xa01ad80,23, 0xa01ae00,23, 0xa01ae80,23, 0xa01af00,23, 0xa01af80,23, 0xa01b000,23, 0xa01b080,23, 0xa01b100,23, 0xa01b180,23, 0xa01b200,23, 0xa01b280,23, 0xa01b300,23, 0xa01b380,23, 0xa01b400,23, 0xa01b480,23, 0xa01b500,23, 0xa01b580,23, 0xa01b600,23, 0xa01b680,23, 0xa01b700,23, 0xa01b780,23, 0xa01b800,23, 0xa01b880,23, 0xa01b900,23, 0xa01b980,23, 0xa01ba00,23, 0xa01ba80,23, 0xa01bb00,23, 0xa01bb80,23, 0xa01bc00,23, 0xa01bc80,23, 0xa01bd00,23, 0xa01bd80,23, 0xa01be00,23, 0xa01be80,23, 0xa01bf00,23, 0xa01bf80,23, 0xa01c000,23, 0xa01c080,23, 0xa01c100,23, 0xa01c180,23, 0xa01c200,23, 0xa01c280,23, 0xa01c300,23, 0xa01c380,23, 0xa01c400,23, 0xa01c480,23, 0xa01c500,23, 0xa01c580,23, 0xa01c600,23, 0xa01c680,23, 0xa01c700,23, 0xa01c780,23, 0xa01c800,23, 0xa01c880,23, 0xa01c900,23, 0xa01c980,23, 0xa01ca00,23, 0xa01ca80,23, 0xa01cb00,23, 0xa01cb80,23, 0xa01cc00,23, 0xa01cc80,23, 0xa01cd00,23, 0xa01cd80,23, 0xa01ce00,23, 0xa01ce80,23, 0xa01cf00,23, 0xa01cf80,23, 0xa01d000,23, 0xa01d080,23, 0xa01d100,23, 0xa01d180,23, 0xa01d200,23, 0xa01d280,23, 0xa01d300,23, 0xa01d380,23, 0xa01d400,23, 0xa01d480,23, 0xa01d500,23, 0xa01d580,23, 0xa01d600,23, 0xa01d680,23, 0xa01d700,23, 0xa01d780,23, 0xa01d800,23, 0xa01d880,23, 0xa01d900,23, 0xa01d980,23, 0xa01da00,23, 0xa01da80,23, 0xa01db00,23, 0xa01db80,23, 0xa01dc00,23, 0xa01dc80,23, 0xa01dd00,23, 0xa01dd80,23, 0xa01de00,23, 0xa01de80,23, 0xa01df00,23, 0xa01df80,23, 0xa01e000,23, 0xa01e080,23, 0xa01e100,23, 0xa01e180,23, 0xa01e200,23, 0xa01e280,23, 0xa01e300,23, 0xa01e380,23, 0xa01e400,23, 0xa01e480,23, 0xa01e500,23, 0xa01e580,23, 0xa01e600,23, 0xa01e680,23, 0xa01e700,23, 0xa01e780,23, 0xa01e800,23, 0xa01e880,23, 0xa01e900,23, 0xa01e980,23, 0xa01ea00,23, 0xa01ea80,23, 0xa01eb00,23, 0xa01eb80,23, 0xa01ec00,23, 0xa01ec80,23, 0xa01ed00,23, 0xa01ed80,23, 0xa01ee00,23, 0xa01ee80,23, 0xa01ef00,23, 0xa01ef80,23, 0xa01f000,23, 0xa01f080,23, 0xa01f100,23, 0xa01f180,23, 0xa01f200,23, 0xa01f280,23, 0xa01f300,23, 0xa01f380,23, 0xa01f400,23, 0xa01f480,23, 0xa01f500,23, 0xa01f580,23, 0xa01f600,23, 0xa01f680,23, 0xa01f700,23, 0xa01f780,23, 0xa01f800,23, 0xa01f880,23, 0xa01f900,23, 0xa01f980,23, 0xa01fa00,23, 0xa01fa80,23, 0xa01fb00,23, 0xa01fb80,23, 0xa01fc00,23, 0xa01fc80,23, 0xa01fd00,23, 0xa01fd80,23, 0xa01fe00,23, 0xa01fe80,23, 0xa01ff00,23, 0xa01ff80,23, 0xa020000,23, 0xa020080,23, 0xa020100,23, 0xa020180,23, 0xa020200,23, 0xa020280,23, 0xa020300,23, 0xa020380,23, 0xa020400,23, 0xa020480,23, 0xa020500,23, 0xa020580,23, 0xa020600,23, 0xa020680,23, 0xa020700,23, 0xa020780,23, 0xa020800,23, 0xa020880,23, 0xa020900,23, 0xa020980,23, 0xa020a00,23, 0xa020a80,23, 0xa020b00,23, 0xa020b80,23, 0xa020c00,23, 0xa020c80,23, 0xa020d00,23, 0xa020d80,23, 0xa020e00,23, 0xa020e80,23, 0xa020f00,23, 0xa020f80,23, 0xa021000,23, 0xa021080,23, 0xa021100,23, 0xa021180,23, 0xa021200,23, 0xa021280,23, 0xa021300,23, 0xa021380,23, 0xa021400,23, 0xa021480,23, 0xa021500,23, 0xa021580,23, 0xa021600,23, 0xa021680,23, 0xa021700,23, 0xa021780,23, 0xa021800,23, 0xa021880,23, 0xa021900,23, 0xa021980,23, 0xa021a00,23, 0xa021a80,23, 0xa021b00,23, 0xa021b80,23, 0xa021c00,23, 0xa021c80,23, 0xa021d00,23, 0xa021d80,23, 0xa021e00,23, 0xa021e80,23, 0xa021f00,23, 0xa021f80,23, 0xa022000,23, 0xa022080,23, 0xa022100,23, 0xa022180,23, 0xa022200,23, 0xa022280,23, 0xa022300,23, 0xa022380,23, 0xa022400,23, 0xa022480,23, 0xa022500,23, 0xa022580,23, 0xa022600,23, 0xa022680,23, 0xa022700,23, 0xa022780,23, 0xa022800,23, 0xa022880,23, 0xa022900,23, 0xa022980,23, 0xa022a00,23, 0xa022a80,23, 0xa022b00,23, 0xa022b80,23, 0xa022c00,23, 0xa022c80,23, 0xa022d00,23, 0xa022d80,23, 0xa022e00,23, 0xa022e80,23, 0xa022f00,23, 0xa022f80,23, 0xa023000,23, 0xa023080,23, 0xa023100,23, 0xa023180,23, 0xa023200,23, 0xa023280,23, 0xa023300,23, 0xa023380,23, 0xa023400,23, 0xa023480,23, 0xa023500,23, 0xa023580,23, 0xa023600,23, 0xa023680,23, 0xa023700,23, 0xa023780,23, 0xa023800,23, 0xa023880,23, 0xa023900,23, 0xa023980,23, 0xa023a00,23, 0xa023a80,23, 0xa023b00,23, 0xa023b80,23, 0xa023c00,23, 0xa023c80,23, 0xa023d00,23, 0xa023d80,23, 0xa023e00,23, 0xa023e80,23, 0xa023f00,23, 0xa023f80,23, 0xa024000,23, 0xa024080,23, 0xa024100,23, 0xa024180,23, 0xa024200,23, 0xa024280,23, 0xa024300,23, 0xa024380,23, 0xa024400,23, 0xa024480,23, 0xa024500,23, 0xa024580,23, 0xa024600,23, 0xa024680,23, 0xa024700,23, 0xa024780,23, 0xa024800,23, 0xa024880,23, 0xa024900,23, 0xa024980,23, 0xa024a00,23, 0xa024a80,23, 0xa024b00,23, 0xa024b80,23, 0xa024c00,23, 0xa024c80,23, 0xa024d00,23, 0xa024d80,23, 0xa024e00,23, 0xa024e80,23, 0xa024f00,23, 0xa024f80,23, 0xa025000,23, 0xa025080,23, 0xa025100,23, 0xa025180,23, 0xa025200,23, 0xa025280,23, 0xa025300,23, 0xa025380,23, 0xa025400,23, 0xa025480,23, 0xa025500,23, 0xa025580,23, 0xa025600,23, 0xa025680,23, 0xa025700,23, 0xa025780,23, 0xa025800,23, 0xa025880,23, 0xa025900,23, 0xa025980,23, 0xa025a00,23, 0xa025a80,23, 0xa025b00,23, 0xa025b80,23, 0xa025c00,23, 0xa025c80,23, 0xa025d00,23, 0xa025d80,23, 0xa025e00,23, 0xa025e80,23, 0xa025f00,23, 0xa025f80,23, 0xa026000,23, 0xa026080,23, 0xa026100,23, 0xa026180,23, 0xa026200,23, 0xa026280,23, 0xa026300,23, 0xa026380,23, 0xa026400,23, 0xa026480,23, 0xa026500,23, 0xa026580,23, 0xa026600,23, 0xa026680,23, 0xa026700,23, 0xa026780,23, 0xa026800,23, 0xa026880,23, 0xa026900,23, 0xa026980,23, 0xa026a00,23, 0xa026a80,23, 0xa026b00,23, 0xa026b80,23, 0xa026c00,23, 0xa026c80,23, 0xa026d00,23, 0xa026d80,23, 0xa026e00,23, 0xa026e80,23, 0xa026f00,23, 0xa026f80,23, 0xa027000,23, 0xa027080,23, 0xa027100,23, 0xa027180,23, 0xa027200,23, 0xa027280,23, 0xa027300,23, 0xa027380,23, 0xa027400,23, 0xa027480,23, 0xa027500,23, 0xa027580,23, 0xa027600,23, 0xa027680,23, 0xa027700,23, 0xa027780,23, 0xa027800,23, 0xa027880,23, 0xa027900,23, 0xa027980,23, 0xa027a00,23, 0xa027a80,23, 0xa027b00,23, 0xa027b80,23, 0xa027c00,23, 0xa027c80,23, 0xa027d00,23, 0xa027d80,23, 0xa027e00,23, 0xa027e80,23, 0xa027f00,23, 0xa027f80,23, 0xa028000,23, 0xa028080,23, 0xa028100,23, 0xa028180,23, 0xa028200,23, 0xa028280,23, 0xa028300,23, 0xa028380,23, 0xa028400,23, 0xa028480,23, 0xa028500,23, 0xa028580,23, 0xa028600,23, 0xa028680,23, 0xa028700,23, 0xa028780,23, 0xa028800,23, 0xa028880,23, 0xa028900,23, 0xa028980,23, 0xa028a00,23, 0xa028a80,23, 0xa028b00,23, 0xa028b80,23, 0xa028c00,23, 0xa028c80,23, 0xa028d00,23, 0xa028d80,23, 0xa028e00,23, 0xa028e80,23, 0xa028f00,23, 0xa028f80,23, 0xa029000,23, 0xa029080,23, 0xa029100,23, 0xa029180,23, 0xa029200,23, 0xa029280,23, 0xa029300,23, 0xa029380,23, 0xa029400,23, 0xa029480,23, 0xa029500,23, 0xa029580,23, 0xa029600,23, 0xa029680,23, 0xa029700,23, 0xa029780,23, 0xa029800,23, 0xa029880,23, 0xa029900,23, 0xa029980,23, 0xa029a00,23, 0xa029a80,23, 0xa029b00,23, 0xa029b80,23, 0xa029c00,23, 0xa029c80,23, 0xa029d00,23, 0xa029d80,23, 0xa029e00,23, 0xa029e80,23, 0xa029f00,23, 0xa029f80,23, 0xa02a000,23, 0xa02a080,23, 0xa02a100,23, 0xa02a180,23, 0xa02a200,23, 0xa02a280,23, 0xa02a300,23, 0xa02a380,23, 0xa02a400,23, 0xa02a480,23, 0xa02a500,23, 0xa02a580,23, 0xa02a600,23, 0xa02a680,23, 0xa02a700,23, 0xa02a780,23, 0xa02a800,23, 0xa02a880,23, 0xa02a900,23, 0xa02a980,23, 0xa02aa00,23, 0xa02aa80,23, 0xa02ab00,23, 0xa02ab80,23, 0xa02ac00,23, 0xa02ac80,23, 0xa02ad00,23, 0xa02ad80,23, 0xa02ae00,23, 0xa02ae80,23, 0xa02af00,23, 0xa02af80,23, 0xa02b000,23, 0xa02b080,23, 0xa02b100,23, 0xa02b180,23, 0xa02b200,23, 0xa02b280,23, 0xa02b300,23, 0xa02b380,23, 0xa02b400,23, 0xa02b480,23, 0xa02b500,23, 0xa02b580,23, 0xa02b600,23, 0xa02b680,23, 0xa02b700,23, 0xa02b780,23, 0xa02b800,23, 0xa02b880,23, 0xa02b900,23, 0xa02b980,23, 0xa02ba00,23, 0xa02ba80,23, 0xa02bb00,23, 0xa02bb80,23, 0xa02bc00,23, 0xa02bc80,23, 0xa02bd00,23, 0xa02bd80,23, 0xa02be00,23, 0xa02be80,23, 0xa02bf00,23, 0xa02bf80,23, 0xa02c000,23, 0xa02c080,23, 0xa02c100,23, 0xa02c180,23, 0xa02c200,23, 0xa02c280,23, 0xa02c300,23, 0xa02c380,23, 0xa02c400,23, 0xa02c480,23, 0xa02c500,23, 0xa02c580,23, 0xa02c600,23, 0xa02c680,23, 0xa02c700,23, 0xa02c780,23, 0xa02c800,23, 0xa02c880,23, 0xa02c900,23, 0xa02c980,23, 0xa02ca00,23, 0xa02ca80,23, 0xa02cb00,23, 0xa02cb80,23, 0xa02cc00,23, 0xa02cc80,23, 0xa02cd00,23, 0xa02cd80,23, 0xa02ce00,23, 0xa02ce80,23, 0xa02cf00,23, 0xa02cf80,23, 0xa02d000,23, 0xa02d080,23, 0xa02d100,23, 0xa02d180,23, 0xa02d200,23, 0xa02d280,23, 0xa02d300,23, 0xa02d380,23, 0xa02d400,23, 0xa02d480,23, 0xa02d500,23, 0xa02d580,23, 0xa02d600,23, 0xa02d680,23, 0xa02d700,23, 0xa02d780,23, 0xa02d800,23, 0xa02d880,23, 0xa02d900,23, 0xa02d980,23, 0xa02da00,23, 0xa02da80,23, 0xa02db00,23, 0xa02db80,23, 0xa02dc00,23, 0xa02dc80,23, 0xa02dd00,23, 0xa02dd80,23, 0xa02de00,23, 0xa02de80,23, 0xa02df00,23, 0xa02df80,23, 0xa02e000,23, 0xa02e080,23, 0xa02e100,23, 0xa02e180,23, 0xa02e200,23, 0xa02e280,23, 0xa02e300,23, 0xa02e380,23, 0xa02e400,23, 0xa02e480,23, 0xa02e500,23, 0xa02e580,23, 0xa02e600,23, 0xa02e680,23, 0xa02e700,23, 0xa02e780,23, 0xa02e800,23, 0xa02e880,23, 0xa02e900,23, 0xa02e980,23, 0xa02ea00,23, 0xa02ea80,23, 0xa02eb00,23, 0xa02eb80,23, 0xa02ec00,23, 0xa02ec80,23, 0xa02ed00,23, 0xa02ed80,23, 0xa02ee00,23, 0xa02ee80,23, 0xa02ef00,23, 0xa02ef80,23, 0xa02f000,23, 0xa02f080,23, 0xa02f100,23, 0xa02f180,23, 0xa02f200,23, 0xa02f280,23, 0xa02f300,23, 0xa02f380,23, 0xa02f400,23, 0xa02f480,23, 0xa02f500,23, 0xa02f580,23, 0xa02f600,23, 0xa02f680,23, 0xa02f700,23, 0xa02f780,23, 0xa02f800,23, 0xa02f880,23, 0xa02f900,23, 0xa02f980,23, 0xa02fa00,23, 0xa02fa80,23, 0xa02fb00,23, 0xa02fb80,23, 0xa02fc00,23, 0xa02fc80,23, 0xa02fd00,23, 0xa02fd80,23, 0xa02fe00,23, 0xa02fe80,23, 0xa02ff00,23, 0xa02ff80,23, 0xa030000,23, 0xa030080,23, 0xa030100,23, 0xa030180,23, 0xa030200,23, 0xa030280,23, 0xa030300,23, 0xa030380,23, 0xa030400,23, 0xa030480,23, 0xa030500,23, 0xa030580,23, 0xa030600,23, 0xa030680,23, 0xa030700,23, 0xa030780,23, 0xa030800,23, 0xa030880,23, 0xa030900,23, 0xa030980,23, 0xa030a00,23, 0xa030a80,23, 0xa030b00,23, 0xa030b80,23, 0xa030c00,23, 0xa030c80,23, 0xa030d00,23, 0xa030d80,23, 0xa030e00,23, 0xa030e80,23, 0xa030f00,23, 0xa030f80,23, 0xa031000,23, 0xa031080,23, 0xa031100,23, 0xa031180,23, 0xa031200,23, 0xa031280,23, 0xa031300,23, 0xa031380,23, 0xa031400,23, 0xa031480,23, 0xa031500,23, 0xa031580,23, 0xa031600,23, 0xa031680,23, 0xa031700,23, 0xa031780,23, 0xa031800,23, 0xa031880,23, 0xa031900,23, 0xa031980,23, 0xa031a00,23, 0xa031a80,23, 0xa031b00,23, 0xa031b80,23, 0xa031c00,23, 0xa031c80,23, 0xa031d00,23, 0xa031d80,23, 0xa031e00,23, 0xa031e80,23, 0xa031f00,23, 0xa031f80,23, 0xa032000,23, 0xa032080,23, 0xa032100,23, 0xa032180,23, 0xa032200,23, 0xa032280,23, 0xa032300,23, 0xa032380,23, 0xa032400,23, 0xa032480,23, 0xa032500,23, 0xa032580,23, 0xa032600,23, 0xa032680,23, 0xa032700,23, 0xa032780,23, 0xa032800,23, 0xa032880,23, 0xa032900,23, 0xa032980,23, 0xa032a00,23, 0xa032a80,23, 0xa032b00,23, 0xa032b80,23, 0xa032c00,23, 0xa032c80,23, 0xa032d00,23, 0xa032d80,23, 0xa032e00,23, 0xa032e80,23, 0xa032f00,23, 0xa032f80,23, 0xa033000,23, 0xa033080,23, 0xa033100,23, 0xa033180,23, 0xa033200,23, 0xa033280,23, 0xa033300,23, 0xa033380,23, 0xa033400,23, 0xa033480,23, 0xa033500,23, 0xa033580,23, 0xa033600,23, 0xa033680,23, 0xa033700,23, 0xa033780,23, 0xa033800,23, 0xa033880,23, 0xa033900,23, 0xa033980,23, 0xa033a00,23, 0xa033a80,23, 0xa033b00,23, 0xa033b80,23, 0xa033c00,23, 0xa033c80,23, 0xa033d00,23, 0xa033d80,23, 0xa033e00,23, 0xa033e80,23, 0xa033f00,23, 0xa033f80,23, 0xa034000,23, 0xa034080,23, 0xa034100,23, 0xa034180,23, 0xa034200,23, 0xa034280,23, 0xa034300,23, 0xa034380,23, 0xa034400,23, 0xa034480,23, 0xa034500,23, 0xa034580,23, 0xa034600,23, 0xa034680,23, 0xa034700,23, 0xa034780,23, 0xa034800,23, 0xa034880,23, 0xa034900,23, 0xa034980,23, 0xa034a00,23, 0xa034a80,23, 0xa034b00,23, 0xa034b80,23, 0xa034c00,23, 0xa034c80,23, 0xa034d00,23, 0xa034d80,23, 0xa034e00,23, 0xa034e80,23, 0xa034f00,23, 0xa034f80,23, 0xa035000,23, 0xa035080,23, 0xa035100,23, 0xa035180,23, 0xa035200,23, 0xa035280,23, 0xa035300,23, 0xa035380,23, 0xa035400,23, 0xa035480,23, 0xa035500,23, 0xa035580,23, 0xa035600,23, 0xa035680,23, 0xa035700,23, 0xa035780,23, 0xa035800,23, 0xa035880,23, 0xa035900,23, 0xa035980,23, 0xa035a00,23, 0xa035a80,23, 0xa035b00,23, 0xa035b80,23, 0xa035c00,23, 0xa035c80,23, 0xa035d00,23, 0xa035d80,23, 0xa035e00,23, 0xa035e80,23, 0xa035f00,23, 0xa035f80,23, 0xa036000,23, 0xa036080,23, 0xa036100,23, 0xa036180,23, 0xa036200,23, 0xa036280,23, 0xa036300,23, 0xa036380,23, 0xa036400,23, 0xa036480,23, 0xa036500,23, 0xa036580,23, 0xa036600,23, 0xa036680,23, 0xa036700,23, 0xa036780,23, 0xa036800,23, 0xa036880,23, 0xa036900,23, 0xa036980,23, 0xa036a00,23, 0xa036a80,23, 0xa036b00,23, 0xa036b80,23, 0xa036c00,23, 0xa036c80,23, 0xa036d00,23, 0xa036d80,23, 0xa036e00,23, 0xa036e80,23, 0xa036f00,23, 0xa036f80,23, 0xa037000,23, 0xa037080,23, 0xa037100,23, 0xa037180,23, 0xa037200,23, 0xa037280,23, 0xa037300,23, 0xa037380,23, 0xa037400,23, 0xa037480,23, 0xa037500,23, 0xa037580,23, 0xa037600,23, 0xa037680,23, 0xa037700,23, 0xa037780,23, 0xa037800,23, 0xa037880,23, 0xa037900,23, 0xa037980,23, 0xa037a00,23, 0xa037a80,23, 0xa037b00,23, 0xa037b80,23, 0xa037c00,23, 0xa037c80,23, 0xa037d00,23, 0xa037d80,23, 0xa037e00,23, 0xa037e80,23, 0xa037f00,23, 0xa037f80,23, 0xa038000,23, 0xa038080,23, 0xa038100,23, 0xa038180,23, 0xa038200,23, 0xa038280,23, 0xa038300,23, 0xa038380,23, 0xa038400,23, 0xa038480,23, 0xa038500,23, 0xa038580,23, 0xa038600,23, 0xa038680,23, 0xa038700,23, 0xa038780,23, 0xa038800,23, 0xa038880,23, 0xa038900,23, 0xa038980,23, 0xa038a00,23, 0xa038a80,23, 0xa038b00,23, 0xa038b80,23, 0xa038c00,23, 0xa038c80,23, 0xa038d00,23, 0xa038d80,23, 0xa038e00,23, 0xa038e80,23, 0xa038f00,23, 0xa038f80,23, 0xa039000,23, 0xa039080,23, 0xa039100,23, 0xa039180,23, 0xa039200,23, 0xa039280,23, 0xa039300,23, 0xa039380,23, 0xa039400,23, 0xa039480,23, 0xa039500,23, 0xa039580,23, 0xa039600,23, 0xa039680,23, 0xa039700,23, 0xa039780,23, 0xa039800,23, 0xa039880,23, 0xa039900,23, 0xa039980,23, 0xa039a00,23, 0xa039a80,23, 0xa039b00,23, 0xa039b80,23, 0xa039c00,23, 0xa039c80,23, 0xa039d00,23, 0xa039d80,23, 0xa039e00,23, 0xa039e80,23, 0xa039f00,23, 0xa039f80,23, 0xa03a000,23, 0xa03a080,23, 0xa03a100,23, 0xa03a180,23, 0xa03a200,23, 0xa03a280,23, 0xa03a300,23, 0xa03a380,23, 0xa03a400,23, 0xa03a480,23, 0xa03a500,23, 0xa03a580,23, 0xa03a600,23, 0xa03a680,23, 0xa03a700,23, 0xa03a780,23, 0xa03a800,23, 0xa03a880,23, 0xa03a900,23, 0xa03a980,23, 0xa03aa00,23, 0xa03aa80,23, 0xa03ab00,23, 0xa03ab80,23, 0xa03ac00,23, 0xa03ac80,23, 0xa03ad00,23, 0xa03ad80,23, 0xa03ae00,23, 0xa03ae80,23, 0xa03af00,23, 0xa03af80,23, 0xa03b000,23, 0xa03b080,23, 0xa03b100,23, 0xa03b180,23, 0xa03b200,23, 0xa03b280,23, 0xa03b300,23, 0xa03b380,23, 0xa03b400,23, 0xa03b480,23, 0xa03b500,23, 0xa03b580,23, 0xa03b600,23, 0xa03b680,23, 0xa03b700,23, 0xa03b780,23, 0xa03b800,23, 0xa03b880,23, 0xa03b900,23, 0xa03b980,23, 0xa03ba00,23, 0xa03ba80,23, 0xa03bb00,23, 0xa03bb80,23, 0xa03bc00,23, 0xa03bc80,23, 0xa03bd00,23, 0xa03bd80,23, 0xa03be00,23, 0xa03be80,23, 0xa03bf00,23, 0xa03bf80,23, 0xa03c000,23, 0xa03c080,23, 0xa03c100,23, 0xa03c180,23, 0xa03c200,23, 0xa03c280,23, 0xa03c300,23, 0xa03c380,23, 0xa03c400,23, 0xa03c480,23, 0xa03c500,23, 0xa03c580,23, 0xa03c600,23, 0xa03c680,23, 0xa03c700,23, 0xa03c780,23, 0xa03c800,23, 0xa03c880,23, 0xa03c900,23, 0xa03c980,23, 0xa03ca00,23, 0xa03ca80,23, 0xa03cb00,23, 0xa03cb80,23, 0xa03cc00,23, 0xa03cc80,23, 0xa03cd00,23, 0xa03cd80,23, 0xa03ce00,23, 0xa03ce80,23, 0xa03cf00,23, 0xa03cf80,23, 0xa03d000,23, 0xa03d080,23, 0xa03d100,23, 0xa03d180,23, 0xa03d200,23, 0xa03d280,23, 0xa03d300,23, 0xa03d380,23, 0xa03d400,23, 0xa03d480,23, 0xa03d500,23, 0xa03d580,23, 0xa03d600,23, 0xa03d680,23, 0xa03d700,23, 0xa03d780,23, 0xa03d800,23, 0xa03d880,23, 0xa03d900,23, 0xa03d980,23, 0xa03da00,23, 0xa03da80,23, 0xa03db00,23, 0xa03db80,23, 0xa03dc00,23, 0xa03dc80,23, 0xa03dd00,23, 0xa03dd80,23, 0xa03de00,23, 0xa03de80,23, 0xa03df00,23, 0xa03df80,23, 0xa03e000,23, 0xa03e080,23, 0xa03e100,23, 0xa03e180,23, 0xa03e200,23, 0xa03e280,23, 0xa03e300,23, 0xa03e380,23, 0xa03e400,23, 0xa03e480,23, 0xa03e500,23, 0xa03e580,23, 0xa03e600,23, 0xa03e680,23, 0xa03e700,23, 0xa03e780,23, 0xa03e800,23, 0xa03e880,23, 0xa03e900,23, 0xa03e980,23, 0xa03ea00,23, 0xa03ea80,23, 0xa03eb00,23, 0xa03eb80,23, 0xa03ec00,23, 0xa03ec80,23, 0xa03ed00,23, 0xa03ed80,23, 0xa03ee00,23, 0xa03ee80,23, 0xa03ef00,23, 0xa03ef80,23, 0xa03f000,23, 0xa03f080,23, 0xa03f100,23, 0xa03f180,23, 0xa03f200,23, 0xa03f280,23, 0xa03f300,23, 0xa03f380,23, 0xa03f400,23, 0xa03f480,23, 0xa03f500,23, 0xa03f580,23, 0xa03f600,23, 0xa03f680,23, 0xa03f700,23, 0xa03f780,23, 0xa03f800,23, 0xa03f880,23, 0xa03f900,23, 0xa03f980,23, 0xa03fa00,23, 0xa03fa80,23, 0xa03fb00,23, 0xa03fb80,23, 0xa03fc00,23, 0xa03fc80,23, 0xa03fd00,23, 0xa03fd80,23, 0xa03fe00,23, 0xa03fe80,23, 0xa03ff00,23, 0xa03ff80,23, 0xa040000,23, 0xa040080,23, 0xa040100,23, 0xa040180,23, 0xa040200,23, 0xa040280,23, 0xa040300,23, 0xa040380,23, 0xa040400,23, 0xa040480,23, 0xa040500,23, 0xa040580,23, 0xa040600,23, 0xa040680,23, 0xa040700,23, 0xa040780,23, 0xa040800,23, 0xa040880,23, 0xa040900,23, 0xa040980,23, 0xa040a00,23, 0xa040a80,23, 0xa040b00,23, 0xa040b80,23, 0xa040c00,23, 0xa040c80,23, 0xa040d00,23, 0xa040d80,23, 0xa040e00,23, 0xa040e80,23, 0xa040f00,23, 0xa040f80,23, 0xa041000,23, 0xa041080,23, 0xa041100,23, 0xa041180,23, 0xa041200,23, 0xa041280,23, 0xa041300,23, 0xa041380,23, 0xa041400,23, 0xa041480,23, 0xa041500,23, 0xa041580,23, 0xa041600,23, 0xa041680,23, 0xa041700,23, 0xa041780,23, 0xa041800,23, 0xa041880,23, 0xa041900,23, 0xa041980,23, 0xa041a00,23, 0xa041a80,23, 0xa041b00,23, 0xa041b80,23, 0xa041c00,23, 0xa041c80,23, 0xa041d00,23, 0xa041d80,23, 0xa041e00,23, 0xa041e80,23, 0xa041f00,23, 0xa041f80,23, 0xa042000,23, 0xa042080,23, 0xa042100,23, 0xa042180,23, 0xa042200,23, 0xa042280,23, 0xa042300,23, 0xa042380,23, 0xa042400,23, 0xa042480,23, 0xa042500,23, 0xa042580,23, 0xa042600,23, 0xa042680,23, 0xa042700,23, 0xa042780,23, 0xa042800,23, 0xa042880,23, 0xa042900,23, 0xa042980,23, 0xa042a00,23, 0xa042a80,23, 0xa042b00,23, 0xa042b80,23, 0xa042c00,23, 0xa042c80,23, 0xa042d00,23, 0xa042d80,23, 0xa042e00,23, 0xa042e80,23, 0xa042f00,23, 0xa042f80,23, 0xa043000,23, 0xa043080,23, 0xa043100,23, 0xa043180,23, 0xa043200,23, 0xa043280,23, 0xa043300,23, 0xa043380,23, 0xa043400,23, 0xa043480,23, 0xa043500,23, 0xa043580,23, 0xa043600,23, 0xa043680,23, 0xa043700,23, 0xa043780,23, 0xa043800,23, 0xa043880,23, 0xa043900,23, 0xa043980,23, 0xa043a00,23, 0xa043a80,23, 0xa043b00,23, 0xa043b80,23, 0xa043c00,23, 0xa043c80,23, 0xa043d00,23, 0xa043d80,23, 0xa043e00,23, 0xa043e80,23, 0xa043f00,23, 0xa043f80,23, 0xa044000,23, 0xa044080,23, 0xa044100,23, 0xa044180,23, 0xa044200,23, 0xa044280,23, 0xa044300,23, 0xa044380,23, 0xa044400,23, 0xa044480,23, 0xa044500,23, 0xa044580,23, 0xa044600,23, 0xa044680,23, 0xa044700,23, 0xa044780,23, 0xa044800,23, 0xa044880,23, 0xa044900,23, 0xa044980,23, 0xa044a00,23, 0xa044a80,23, 0xa044b00,23, 0xa044b80,23, 0xa044c00,23, 0xa044c80,23, 0xa044d00,23, 0xa044d80,23, 0xa044e00,23, 0xa044e80,23, 0xa044f00,23, 0xa044f80,23, 0xa045000,23, 0xa045080,23, 0xa045100,23, 0xa045180,23, 0xa045200,23, 0xa045280,23, 0xa045300,23, 0xa045380,23, 0xa045400,23, 0xa045480,23, 0xa045500,23, 0xa045580,23, 0xa045600,23, 0xa045680,23, 0xa045700,23, 0xa045780,23, 0xa045800,23, 0xa045880,23, 0xa045900,23, 0xa045980,23, 0xa045a00,23, 0xa045a80,23, 0xa045b00,23, 0xa045b80,23, 0xa045c00,23, 0xa045c80,23, 0xa045d00,23, 0xa045d80,23, 0xa045e00,23, 0xa045e80,23, 0xa045f00,23, 0xa045f80,23, 0xa046000,23, 0xa046080,23, 0xa046100,23, 0xa046180,23, 0xa046200,23, 0xa046280,23, 0xa046300,23, 0xa046380,23, 0xa046400,23, 0xa046480,23, 0xa046500,23, 0xa046580,23, 0xa046600,23, 0xa046680,23, 0xa046700,23, 0xa046780,23, 0xa046800,23, 0xa046880,23, 0xa046900,23, 0xa046980,23, 0xa046a00,23, 0xa046a80,23, 0xa046b00,23, 0xa046b80,23, 0xa046c00,23, 0xa046c80,23, 0xa046d00,23, 0xa046d80,23, 0xa046e00,23, 0xa046e80,23, 0xa046f00,23, 0xa046f80,23, 0xa047000,23, 0xa047080,23, 0xa047100,23, 0xa047180,23, 0xa047200,23, 0xa047280,23, 0xa047300,23, 0xa047380,23, 0xa047400,23, 0xa047480,23, 0xa047500,23, 0xa047580,23, 0xa047600,23, 0xa047680,23, 0xa047700,23, 0xa047780,23, 0xa047800,23, 0xa047880,23, 0xa047900,23, 0xa047980,23, 0xa047a00,23, 0xa047a80,23, 0xa047b00,23, 0xa047b80,23, 0xa047c00,23, 0xa047c80,23, 0xa047d00,23, 0xa047d80,23, 0xa047e00,23, 0xa047e80,23, 0xa047f00,23, 0xa047f80,23, 0xa048000,23, 0xa048080,23, 0xa048100,23, 0xa048180,23, 0xa048200,23, 0xa048280,23, 0xa048300,23, 0xa048380,23, 0xa048400,23, 0xa048480,23, 0xa048500,23, 0xa048580,23, 0xa048600,23, 0xa048680,23, 0xa048700,23, 0xa048780,23, 0xa048800,23, 0xa048880,23, 0xa048900,23, 0xa048980,23, 0xa048a00,23, 0xa048a80,23, 0xa048b00,23, 0xa048b80,23, 0xa048c00,23, 0xa048c80,23, 0xa048d00,23, 0xa048d80,23, 0xa048e00,23, 0xa048e80,23, 0xa048f00,23, 0xa048f80,23, 0xa049000,23, 0xa049080,23, 0xa049100,23, 0xa049180,23, 0xa049200,23, 0xa049280,23, 0xa049300,23, 0xa049380,23, 0xa049400,23, 0xa049480,23, 0xa049500,23, 0xa049580,23, 0xa049600,23, 0xa049680,23, 0xa049700,23, 0xa049780,23, 0xa049800,23, 0xa049880,23, 0xa049900,23, 0xa049980,23, 0xa049a00,23, 0xa049a80,23, 0xa049b00,23, 0xa049b80,23, 0xa049c00,23, 0xa049c80,23, 0xa049d00,23, 0xa049d80,23, 0xa049e00,23, 0xa049e80,23, 0xa049f00,23, 0xa049f80,23, 0xa04a000,23, 0xa04a080,23, 0xa04a100,23, 0xa04a180,23, 0xa04a200,23, 0xa04a280,23, 0xa04a300,23, 0xa04a380,23, 0xa04a400,23, 0xa04a480,23, 0xa04a500,23, 0xa04a580,23, 0xa04a600,23, 0xa04a680,23, 0xa04a700,23, 0xa04a780,23, 0xa04a800,23, 0xa04a880,23, 0xa04a900,23, 0xa04a980,23, 0xa04aa00,23, 0xa04aa80,23, 0xa04ab00,23, 0xa04ab80,23, 0xa04ac00,23, 0xa04ac80,23, 0xa04ad00,23, 0xa04ad80,23, 0xa04ae00,23, 0xa04ae80,23, 0xa04af00,23, 0xa04af80,23, 0xa04b000,23, 0xa04b080,23, 0xa04b100,23, 0xa04b180,23, 0xa04b200,23, 0xa04b280,23, 0xa04b300,23, 0xa04b380,23, 0xa04b400,23, 0xa04b480,23, 0xa04b500,23, 0xa04b580,23, 0xa04b600,23, 0xa04b680,23, 0xa04b700,23, 0xa04b780,23, 0xa04b800,23, 0xa04b880,23, 0xa04b900,23, 0xa04b980,23, 0xa04ba00,23, 0xa04ba80,23, 0xa04bb00,23, 0xa04bb80,23, 0xa04bc00,23, 0xa04bc80,23, 0xa04bd00,23, 0xa04bd80,23, 0xa04be00,23, 0xa04be80,23, 0xa04bf00,23, 0xa04bf80,23, 0xa04c000,23, 0xa04c080,23, 0xa04c100,23, 0xa04c180,23, 0xa04c200,23, 0xa04c280,23, 0xa04c300,23, 0xa04c380,23, 0xa04c400,23, 0xa04c480,23, 0xa04c500,23, 0xa04c580,23, 0xa04c600,23, 0xa04c680,23, 0xa04c700,23, 0xa04c780,23, 0xa04c800,23, 0xa04c880,23, 0xa04c900,23, 0xa04c980,23, 0xa04ca00,23, 0xa04ca80,23, 0xa04cb00,23, 0xa04cb80,23, 0xa04cc00,23, 0xa04cc80,23, 0xa04cd00,23, 0xa04cd80,23, 0xa04ce00,23, 0xa04ce80,23, 0xa04cf00,23, 0xa04cf80,23, 0xa04d000,23, 0xa04d080,23, 0xa04d100,23, 0xa04d180,23, 0xa04d200,23, 0xa04d280,23, 0xa04d300,23, 0xa04d380,23, 0xa04d400,23, 0xa04d480,23, 0xa04d500,23, 0xa04d580,23, 0xa04d600,23, 0xa04d680,23, 0xa04d700,23, 0xa04d780,23, 0xa04d800,23, 0xa04d880,23, 0xa04d900,23, 0xa04d980,23, 0xa04da00,23, 0xa04da80,23, 0xa04db00,23, 0xa04db80,23, 0xa04dc00,23, 0xa04dc80,23, 0xa04dd00,23, 0xa04dd80,23, 0xa04de00,23, 0xa04de80,23, 0xa04df00,23, 0xa04df80,23, 0xa04e000,23, 0xa04e080,23, 0xa04e100,23, 0xa04e180,23, 0xa04e200,23, 0xa04e280,23, 0xa04e300,23, 0xa04e380,23, 0xa04e400,23, 0xa04e480,23, 0xa04e500,23, 0xa04e580,23, 0xa04e600,23, 0xa04e680,23, 0xa04e700,23, 0xa04e780,23, 0xa04e800,23, 0xa04e880,23, 0xa04e900,23, 0xa04e980,23, 0xa04ea00,23, 0xa04ea80,23, 0xa04eb00,23, 0xa04eb80,23, 0xa04ec00,23, 0xa04ec80,23, 0xa04ed00,23, 0xa04ed80,23, 0xa04ee00,23, 0xa04ee80,23, 0xa04ef00,23, 0xa04ef80,23, 0xa04f000,23, 0xa04f080,23, 0xa04f100,23, 0xa04f180,23, 0xa04f200,23, 0xa04f280,23, 0xa04f300,23, 0xa04f380,23, 0xa04f400,23, 0xa04f480,23, 0xa04f500,23, 0xa04f580,23, 0xa04f600,23, 0xa04f680,23, 0xa04f700,23, 0xa04f780,23, 0xa04f800,23, 0xa04f880,23, 0xa04f900,23, 0xa04f980,23, 0xa04fa00,23, 0xa04fa80,23, 0xa04fb00,23, 0xa04fb80,23, 0xa04fc00,23, 0xa04fc80,23, 0xa04fd00,23, 0xa04fd80,23, 0xa04fe00,23, 0xa04fe80,23, 0xa04ff00,23, 0xa04ff80,23, 0xa050000,23, 0xa050080,23, 0xa050100,23, 0xa050180,23, 0xa050200,23, 0xa050280,23, 0xa050300,23, 0xa050380,23, 0xa050400,23, 0xa050480,23, 0xa050500,23, 0xa050580,23, 0xa050600,23, 0xa050680,23, 0xa050700,23, 0xa050780,23, 0xa050800,23, 0xa050880,23, 0xa050900,23, 0xa050980,23, 0xa050a00,23, 0xa050a80,23, 0xa050b00,23, 0xa050b80,23, 0xa050c00,23, 0xa050c80,23, 0xa050d00,23, 0xa050d80,23, 0xa050e00,23, 0xa050e80,23, 0xa050f00,23, 0xa050f80,23, 0xa051000,23, 0xa051080,23, 0xa051100,23, 0xa051180,23, 0xa051200,23, 0xa051280,23, 0xa051300,23, 0xa051380,23, 0xa051400,23, 0xa051480,23, 0xa051500,23, 0xa051580,23, 0xa051600,23, 0xa051680,23, 0xa051700,23, 0xa051780,23, 0xa051800,23, 0xa051880,23, 0xa051900,23, 0xa051980,23, 0xa051a00,23, 0xa051a80,23, 0xa051b00,23, 0xa051b80,23, 0xa051c00,23, 0xa051c80,23, 0xa051d00,23, 0xa051d80,23, 0xa051e00,23, 0xa051e80,23, 0xa051f00,23, 0xa051f80,23, 0xa052000,23, 0xa052080,23, 0xa052100,23, 0xa052180,23, 0xa052200,23, 0xa052280,23, 0xa052300,23, 0xa052380,23, 0xa052400,23, 0xa052480,23, 0xa052500,23, 0xa052580,23, 0xa052600,23, 0xa052680,23, 0xa052700,23, 0xa052780,23, 0xa052800,23, 0xa052880,23, 0xa052900,23, 0xa052980,23, 0xa052a00,23, 0xa052a80,23, 0xa052b00,23, 0xa052b80,23, 0xa052c00,23, 0xa052c80,23, 0xa052d00,23, 0xa052d80,23, 0xa052e00,23, 0xa052e80,23, 0xa052f00,23, 0xa052f80,23, 0xa053000,23, 0xa053080,23, 0xa053100,23, 0xa053180,23, 0xa053200,23, 0xa053280,23, 0xa053300,23, 0xa053380,23, 0xa053400,23, 0xa053480,23, 0xa053500,23, 0xa053580,23, 0xa053600,23, 0xa053680,23, 0xa053700,23, 0xa053780,23, 0xa053800,23, 0xa053880,23, 0xa053900,23, 0xa053980,23, 0xa053a00,23, 0xa053a80,23, 0xa053b00,23, 0xa053b80,23, 0xa053c00,23, 0xa053c80,23, 0xa053d00,23, 0xa053d80,23, 0xa053e00,23, 0xa053e80,23, 0xa053f00,23, 0xa053f80,23, 0xa054000,23, 0xa054080,23, 0xa054100,23, 0xa054180,23, 0xa054200,23, 0xa054280,23, 0xa054300,23, 0xa054380,23, 0xa054400,23, 0xa054480,23, 0xa054500,23, 0xa054580,23, 0xa054600,23, 0xa054680,23, 0xa054700,23, 0xa054780,23, 0xa054800,23, 0xa054880,23, 0xa054900,23, 0xa054980,23, 0xa054a00,23, 0xa054a80,23, 0xa054b00,23, 0xa054b80,23, 0xa054c00,23, 0xa054c80,23, 0xa054d00,23, 0xa054d80,23, 0xa054e00,23, 0xa054e80,23, 0xa054f00,23, 0xa054f80,23, 0xa055000,23, 0xa055080,23, 0xa055100,23, 0xa055180,23, 0xa055200,23, 0xa055280,23, 0xa055300,23, 0xa055380,23, 0xa055400,23, 0xa055480,23, 0xa055500,23, 0xa055580,23, 0xa055600,23, 0xa055680,23, 0xa055700,23, 0xa055780,23, 0xa055800,23, 0xa055880,23, 0xa055900,23, 0xa055980,23, 0xa055a00,23, 0xa055a80,23, 0xa055b00,23, 0xa055b80,23, 0xa055c00,23, 0xa055c80,23, 0xa055d00,23, 0xa055d80,23, 0xa055e00,23, 0xa055e80,23, 0xa055f00,23, 0xa055f80,23, 0xa056000,23, 0xa056080,23, 0xa056100,23, 0xa056180,23, 0xa056200,23, 0xa056280,23, 0xa056300,23, 0xa056380,23, 0xa056400,23, 0xa056480,23, 0xa056500,23, 0xa056580,23, 0xa056600,23, 0xa056680,23, 0xa056700,23, 0xa056780,23, 0xa056800,23, 0xa056880,23, 0xa056900,23, 0xa056980,23, 0xa056a00,23, 0xa056a80,23, 0xa056b00,23, 0xa056b80,23, 0xa056c00,23, 0xa056c80,23, 0xa056d00,23, 0xa056d80,23, 0xa056e00,23, 0xa056e80,23, 0xa056f00,23, 0xa056f80,23, 0xa057000,23, 0xa057080,23, 0xa057100,23, 0xa057180,23, 0xa057200,23, 0xa057280,23, 0xa057300,23, 0xa057380,23, 0xa057400,23, 0xa057480,23, 0xa057500,23, 0xa057580,23, 0xa057600,23, 0xa057680,23, 0xa057700,23, 0xa057780,23, 0xa057800,23, 0xa057880,23, 0xa057900,23, 0xa057980,23, 0xa057a00,23, 0xa057a80,23, 0xa057b00,23, 0xa057b80,23, 0xa057c00,23, 0xa057c80,23, 0xa057d00,23, 0xa057d80,23, 0xa057e00,23, 0xa057e80,23, 0xa057f00,23, 0xa057f80,23, 0xa058000,23, 0xa058080,23, 0xa058100,23, 0xa058180,23, 0xa058200,23, 0xa058280,23, 0xa058300,23, 0xa058380,23, 0xa058400,23, 0xa058480,23, 0xa058500,23, 0xa058580,23, 0xa058600,23, 0xa058680,23, 0xa058700,23, 0xa058780,23, 0xa058800,23, 0xa058880,23, 0xa058900,23, 0xa058980,23, 0xa058a00,23, 0xa058a80,23, 0xa058b00,23, 0xa058b80,23, 0xa058c00,23, 0xa058c80,23, 0xa058d00,23, 0xa058d80,23, 0xa058e00,23, 0xa058e80,23, 0xa058f00,23, 0xa058f80,23, 0xa059000,23, 0xa059080,23, 0xa059100,23, 0xa059180,23, 0xa059200,23, 0xa059280,23, 0xa059300,23, 0xa059380,23, 0xa059400,23, 0xa059480,23, 0xa059500,23, 0xa059580,23, 0xa059600,23, 0xa059680,23, 0xa059700,23, 0xa059780,23, 0xa059800,23, 0xa059880,23, 0xa059900,23, 0xa059980,23, 0xa059a00,23, 0xa059a80,23, 0xa059b00,23, 0xa059b80,23, 0xa059c00,23, 0xa059c80,23, 0xa059d00,23, 0xa059d80,23, 0xa059e00,23, 0xa059e80,23, 0xa059f00,23, 0xa059f80,23, 0xa05a000,23, 0xa05a080,23, 0xa05a100,23, 0xa05a180,23, 0xa05a200,23, 0xa05a280,23, 0xa05a300,23, 0xa05a380,23, 0xa05a400,23, 0xa05a480,23, 0xa05a500,23, 0xa05a580,23, 0xa05a600,23, 0xa05a680,23, 0xa05a700,23, 0xa05a780,23, 0xa05a800,23, 0xa05a880,23, 0xa05a900,23, 0xa05a980,23, 0xa05aa00,23, 0xa05aa80,23, 0xa05ab00,23, 0xa05ab80,23, 0xa05ac00,23, 0xa05ac80,23, 0xa05ad00,23, 0xa05ad80,23, 0xa05ae00,23, 0xa05ae80,23, 0xa05af00,23, 0xa05af80,23, 0xa05b000,23, 0xa05b080,23, 0xa05b100,23, 0xa05b180,23, 0xa05b200,23, 0xa05b280,23, 0xa05b300,23, 0xa05b380,23, 0xa05b400,23, 0xa05b480,23, 0xa05b500,23, 0xa05b580,23, 0xa05b600,23, 0xa05b680,23, 0xa05b700,23, 0xa05b780,23, 0xa05b800,23, 0xa05b880,23, 0xa05b900,23, 0xa05b980,23, 0xa05ba00,23, 0xa05ba80,23, 0xa05bb00,23, 0xa05bb80,23, 0xa05bc00,23, 0xa05bc80,23, 0xa05bd00,23, 0xa05bd80,23, 0xa05be00,23, 0xa05be80,23, 0xa05bf00,23, 0xa05bf80,23, 0xa05c000,23, 0xa05c080,23, 0xa05c100,23, 0xa05c180,23, 0xa05c200,23, 0xa05c280,23, 0xa05c300,23, 0xa05c380,23, 0xa05c400,23, 0xa05c480,23, 0xa05c500,23, 0xa05c580,23, 0xa05c600,23, 0xa05c680,23, 0xa05c700,23, 0xa05c780,23, 0xa05c800,23, 0xa05c880,23, 0xa05c900,23, 0xa05c980,23, 0xa05ca00,23, 0xa05ca80,23, 0xa05cb00,23, 0xa05cb80,23, 0xa05cc00,23, 0xa05cc80,23, 0xa05cd00,23, 0xa05cd80,23, 0xa05ce00,23, 0xa05ce80,23, 0xa05cf00,23, 0xa05cf80,23, 0xa05d000,23, 0xa05d080,23, 0xa05d100,23, 0xa05d180,23, 0xa05d200,23, 0xa05d280,23, 0xa05d300,23, 0xa05d380,23, 0xa05d400,23, 0xa05d480,23, 0xa05d500,23, 0xa05d580,23, 0xa05d600,23, 0xa05d680,23, 0xa05d700,23, 0xa05d780,23, 0xa05d800,23, 0xa05d880,23, 0xa05d900,23, 0xa05d980,23, 0xa05da00,23, 0xa05da80,23, 0xa05db00,23, 0xa05db80,23, 0xa05dc00,23, 0xa05dc80,23, 0xa05dd00,23, 0xa05dd80,23, 0xa05de00,23, 0xa05de80,23, 0xa05df00,23, 0xa05df80,23, 0xa05e000,23, 0xa05e080,23, 0xa05e100,23, 0xa05e180,23, 0xa05e200,23, 0xa05e280,23, 0xa05e300,23, 0xa05e380,23, 0xa05e400,23, 0xa05e480,23, 0xa05e500,23, 0xa05e580,23, 0xa05e600,23, 0xa05e680,23, 0xa05e700,23, 0xa05e780,23, 0xa05e800,23, 0xa05e880,23, 0xa05e900,23, 0xa05e980,23, 0xa05ea00,23, 0xa05ea80,23, 0xa05eb00,23, 0xa05eb80,23, 0xa05ec00,23, 0xa05ec80,23, 0xa05ed00,23, 0xa05ed80,23, 0xa05ee00,23, 0xa05ee80,23, 0xa05ef00,23, 0xa05ef80,23, 0xa05f000,23, 0xa05f080,23, 0xa05f100,23, 0xa05f180,23, 0xa05f200,23, 0xa05f280,23, 0xa05f300,23, 0xa05f380,23, 0xa05f400,23, 0xa05f480,23, 0xa05f500,23, 0xa05f580,23, 0xa05f600,23, 0xa05f680,23, 0xa05f700,23, 0xa05f780,23, 0xa05f800,23, 0xa05f880,23, 0xa05f900,23, 0xa05f980,23, 0xa05fa00,23, 0xa05fa80,23, 0xa05fb00,23, 0xa05fb80,23, 0xa05fc00,23, 0xa05fc80,23, 0xa05fd00,23, 0xa05fd80,23, 0xa05fe00,23, 0xa05fe80,23, 0xa05ff00,23, 0xa05ff80,23, 0xa060000,23, 0xa060080,23, 0xa060100,23, 0xa060180,23, 0xa060200,23, 0xa060280,23, 0xa060300,23, 0xa060380,23, 0xa060400,23, 0xa060480,23, 0xa060500,23, 0xa060580,23, 0xa060600,23, 0xa060680,23, 0xa060700,23, 0xa060780,23, 0xa060800,23, 0xa060880,23, 0xa060900,23, 0xa060980,23, 0xa060a00,23, 0xa060a80,23, 0xa060b00,23, 0xa060b80,23, 0xa060c00,23, 0xa060c80,23, 0xa060d00,23, 0xa060d80,23, 0xa060e00,23, 0xa060e80,23, 0xa060f00,23, 0xa060f80,23, 0xa061000,23, 0xa061080,23, 0xa061100,23, 0xa061180,23, 0xa061200,23, 0xa061280,23, 0xa061300,23, 0xa061380,23, 0xa061400,23, 0xa061480,23, 0xa061500,23, 0xa061580,23, 0xa061600,23, 0xa061680,23, 0xa061700,23, 0xa061780,23, 0xa061800,23, 0xa061880,23, 0xa061900,23, 0xa061980,23, 0xa061a00,23, 0xa061a80,23, 0xa061b00,23, 0xa061b80,23, 0xa061c00,23, 0xa061c80,23, 0xa061d00,23, 0xa061d80,23, 0xa061e00,23, 0xa061e80,23, 0xa061f00,23, 0xa061f80,23, 0xa062000,23, 0xa062080,23, 0xa062100,23, 0xa062180,23, 0xa062200,23, 0xa062280,23, 0xa062300,23, 0xa062380,23, 0xa062400,23, 0xa062480,23, 0xa062500,23, 0xa062580,23, 0xa062600,23, 0xa062680,23, 0xa062700,23, 0xa062780,23, 0xa062800,23, 0xa062880,23, 0xa062900,23, 0xa062980,23, 0xa062a00,23, 0xa062a80,23, 0xa062b00,23, 0xa062b80,23, 0xa062c00,23, 0xa062c80,23, 0xa062d00,23, 0xa062d80,23, 0xa062e00,23, 0xa062e80,23, 0xa062f00,23, 0xa062f80,23, 0xa063000,23, 0xa063080,23, 0xa063100,23, 0xa063180,23, 0xa063200,23, 0xa063280,23, 0xa063300,23, 0xa063380,23, 0xa063400,23, 0xa063480,23, 0xa063500,23, 0xa063580,23, 0xa063600,23, 0xa063680,23, 0xa063700,23, 0xa063780,23, 0xa063800,23, 0xa063880,23, 0xa063900,23, 0xa063980,23, 0xa063a00,23, 0xa063a80,23, 0xa063b00,23, 0xa063b80,23, 0xa063c00,23, 0xa063c80,23, 0xa063d00,23, 0xa063d80,23, 0xa063e00,23, 0xa063e80,23, 0xa063f00,23, 0xa063f80,23, 0xa064000,23, 0xa064080,23, 0xa064100,23, 0xa064180,23, 0xa064200,23, 0xa064280,23, 0xa064300,23, 0xa064380,23, 0xa064400,23, 0xa064480,23, 0xa064500,23, 0xa064580,23, 0xa064600,23, 0xa064680,23, 0xa064700,23, 0xa064780,23, 0xa064800,23, 0xa064880,23, 0xa064900,23, 0xa064980,23, 0xa064a00,23, 0xa064a80,23, 0xa064b00,23, 0xa064b80,23, 0xa064c00,23, 0xa064c80,23, 0xa064d00,23, 0xa064d80,23, 0xa064e00,23, 0xa064e80,23, 0xa064f00,23, 0xa064f80,23, 0xa065000,23, 0xa065080,23, 0xa065100,23, 0xa065180,23, 0xa065200,23, 0xa065280,23, 0xa065300,23, 0xa065380,23, 0xa065400,23, 0xa065480,23, 0xa065500,23, 0xa065580,23, 0xa065600,23, 0xa065680,23, 0xa065700,23, 0xa065780,23, 0xa065800,23, 0xa065880,23, 0xa065900,23, 0xa065980,23, 0xa065a00,23, 0xa065a80,23, 0xa065b00,23, 0xa065b80,23, 0xa065c00,23, 0xa065c80,23, 0xa065d00,23, 0xa065d80,23, 0xa065e00,23, 0xa065e80,23, 0xa065f00,23, 0xa065f80,23, 0xa066000,23, 0xa066080,23, 0xa066100,23, 0xa066180,23, 0xa066200,23, 0xa066280,23, 0xa066300,23, 0xa066380,23, 0xa066400,23, 0xa066480,23, 0xa066500,23, 0xa066580,23, 0xa066600,23, 0xa066680,23, 0xa066700,23, 0xa066780,23, 0xa066800,23, 0xa066880,23, 0xa066900,23, 0xa066980,23, 0xa066a00,23, 0xa066a80,23, 0xa066b00,23, 0xa066b80,23, 0xa066c00,23, 0xa066c80,23, 0xa066d00,23, 0xa066d80,23, 0xa066e00,23, 0xa066e80,23, 0xa066f00,23, 0xa066f80,23, 0xa067000,23, 0xa067080,23, 0xa067100,23, 0xa067180,23, 0xa067200,23, 0xa067280,23, 0xa067300,23, 0xa067380,23, 0xa067400,23, 0xa067480,23, 0xa067500,23, 0xa067580,23, 0xa067600,23, 0xa067680,23, 0xa067700,23, 0xa067780,23, 0xa067800,23, 0xa067880,23, 0xa067900,23, 0xa067980,23, 0xa067a00,23, 0xa067a80,23, 0xa067b00,23, 0xa067b80,23, 0xa067c00,23, 0xa067c80,23, 0xa067d00,23, 0xa067d80,23, 0xa067e00,23, 0xa067e80,23, 0xa067f00,23, 0xa067f80,23, 0xa068000,23, 0xa068080,23, 0xa068100,23, 0xa068180,23, 0xa068200,23, 0xa068280,23, 0xa068300,23, 0xa068380,23, 0xa068400,23, 0xa068480,23, 0xa068500,23, 0xa068580,23, 0xa068600,23, 0xa068680,23, 0xa068700,23, 0xa068780,23, 0xa068800,23, 0xa068880,23, 0xa068900,23, 0xa068980,23, 0xa068a00,23, 0xa068a80,23, 0xa068b00,23, 0xa068b80,23, 0xa068c00,23, 0xa068c80,23, 0xa068d00,23, 0xa068d80,23, 0xa068e00,23, 0xa068e80,23, 0xa068f00,23, 0xa068f80,23, 0xa069000,23, 0xa069080,23, 0xa069100,23, 0xa069180,23, 0xa069200,23, 0xa069280,23, 0xa069300,23, 0xa069380,23, 0xa069400,23, 0xa069480,23, 0xa069500,23, 0xa069580,23, 0xa069600,23, 0xa069680,23, 0xa069700,23, 0xa069780,23, 0xa069800,23, 0xa069880,23, 0xa069900,23, 0xa069980,23, 0xa069a00,23, 0xa069a80,23, 0xa069b00,23, 0xa069b80,23, 0xa069c00,23, 0xa069c80,23, 0xa069d00,23, 0xa069d80,23, 0xa069e00,23, 0xa069e80,23, 0xa069f00,23, 0xa069f80,23, 0xa06a000,23, 0xa06a080,23, 0xa06a100,23, 0xa06a180,23, 0xa06a200,23, 0xa06a280,23, 0xa06a300,23, 0xa06a380,23, 0xa06a400,23, 0xa06a480,23, 0xa06a500,23, 0xa06a580,23, 0xa06a600,23, 0xa06a680,23, 0xa06a700,23, 0xa06a780,23, 0xa06a800,23, 0xa06a880,23, 0xa06a900,23, 0xa06a980,23, 0xa06aa00,23, 0xa06aa80,23, 0xa06ab00,23, 0xa06ab80,23, 0xa06ac00,23, 0xa06ac80,23, 0xa06ad00,23, 0xa06ad80,23, 0xa06ae00,23, 0xa06ae80,23, 0xa06af00,23, 0xa06af80,23, 0xa06b000,23, 0xa06b080,23, 0xa06b100,23, 0xa06b180,23, 0xa06b200,23, 0xa06b280,23, 0xa06b300,23, 0xa06b380,23, 0xa06b400,23, 0xa06b480,23, 0xa06b500,23, 0xa06b580,23, 0xa06b600,23, 0xa06b680,23, 0xa06b700,23, 0xa06b780,23, 0xa06b800,23, 0xa06b880,23, 0xa06b900,23, 0xa06b980,23, 0xa06ba00,23, 0xa06ba80,23, 0xa06bb00,23, 0xa06bb80,23, 0xa06bc00,23, 0xa06bc80,23, 0xa06bd00,23, 0xa06bd80,23, 0xa06be00,23, 0xa06be80,23, 0xa06bf00,23, 0xa06bf80,23, 0xa06c000,23, 0xa06c080,23, 0xa06c100,23, 0xa06c180,23, 0xa06c200,23, 0xa06c280,23, 0xa06c300,23, 0xa06c380,23, 0xa06c400,23, 0xa06c480,23, 0xa06c500,23, 0xa06c580,23, 0xa06c600,23, 0xa06c680,23, 0xa06c700,23, 0xa06c780,23, 0xa06c800,23, 0xa06c880,23, 0xa06c900,23, 0xa06c980,23, 0xa06ca00,23, 0xa06ca80,23, 0xa06cb00,23, 0xa06cb80,23, 0xa06cc00,23, 0xa06cc80,23, 0xa06cd00,23, 0xa06cd80,23, 0xa06ce00,23, 0xa06ce80,23, 0xa06cf00,23, 0xa06cf80,23, 0xa06d000,23, 0xa06d080,23, 0xa06d100,23, 0xa06d180,23, 0xa06d200,23, 0xa06d280,23, 0xa06d300,23, 0xa06d380,23, 0xa06d400,23, 0xa06d480,23, 0xa06d500,23, 0xa06d580,23, 0xa06d600,23, 0xa06d680,23, 0xa06d700,23, 0xa06d780,23, 0xa06d800,23, 0xa06d880,23, 0xa06d900,23, 0xa06d980,23, 0xa06da00,23, 0xa06da80,23, 0xa06db00,23, 0xa06db80,23, 0xa06dc00,23, 0xa06dc80,23, 0xa06dd00,23, 0xa06dd80,23, 0xa06de00,23, 0xa06de80,23, 0xa06df00,23, 0xa06df80,23, 0xa06e000,23, 0xa06e080,23, 0xa06e100,23, 0xa06e180,23, 0xa06e200,23, 0xa06e280,23, 0xa06e300,23, 0xa06e380,23, 0xa06e400,23, 0xa06e480,23, 0xa06e500,23, 0xa06e580,23, 0xa06e600,23, 0xa06e680,23, 0xa06e700,23, 0xa06e780,23, 0xa06e800,23, 0xa06e880,23, 0xa06e900,23, 0xa06e980,23, 0xa06ea00,23, 0xa06ea80,23, 0xa06eb00,23, 0xa06eb80,23, 0xa06ec00,23, 0xa06ec80,23, 0xa06ed00,23, 0xa06ed80,23, 0xa06ee00,23, 0xa06ee80,23, 0xa06ef00,23, 0xa06ef80,23, 0xa06f000,23, 0xa06f080,23, 0xa06f100,23, 0xa06f180,23, 0xa06f200,23, 0xa06f280,23, 0xa06f300,23, 0xa06f380,23, 0xa06f400,23, 0xa06f480,23, 0xa06f500,23, 0xa06f580,23, 0xa06f600,23, 0xa06f680,23, 0xa06f700,23, 0xa06f780,23, 0xa06f800,23, 0xa06f880,23, 0xa06f900,23, 0xa06f980,23, 0xa06fa00,23, 0xa06fa80,23, 0xa06fb00,23, 0xa06fb80,23, 0xa06fc00,23, 0xa06fc80,23, 0xa06fd00,23, 0xa06fd80,23, 0xa06fe00,23, 0xa06fe80,23, 0xa06ff00,23, 0xa06ff80,23, 0xa070000,23, 0xa070080,23, 0xa070100,23, 0xa070180,23, 0xa070200,23, 0xa070280,23, 0xa070300,23, 0xa070380,23, 0xa070400,23, 0xa070480,23, 0xa070500,23, 0xa070580,23, 0xa070600,23, 0xa070680,23, 0xa070700,23, 0xa070780,23, 0xa070800,23, 0xa070880,23, 0xa070900,23, 0xa070980,23, 0xa070a00,23, 0xa070a80,23, 0xa070b00,23, 0xa070b80,23, 0xa070c00,23, 0xa070c80,23, 0xa070d00,23, 0xa070d80,23, 0xa070e00,23, 0xa070e80,23, 0xa070f00,23, 0xa070f80,23, 0xa071000,23, 0xa071080,23, 0xa071100,23, 0xa071180,23, 0xa071200,23, 0xa071280,23, 0xa071300,23, 0xa071380,23, 0xa071400,23, 0xa071480,23, 0xa071500,23, 0xa071580,23, 0xa071600,23, 0xa071680,23, 0xa071700,23, 0xa071780,23, 0xa071800,23, 0xa071880,23, 0xa071900,23, 0xa071980,23, 0xa071a00,23, 0xa071a80,23, 0xa071b00,23, 0xa071b80,23, 0xa071c00,23, 0xa071c80,23, 0xa071d00,23, 0xa071d80,23, 0xa071e00,23, 0xa071e80,23, 0xa071f00,23, 0xa071f80,23, 0xa072000,23, 0xa072080,23, 0xa072100,23, 0xa072180,23, 0xa072200,23, 0xa072280,23, 0xa072300,23, 0xa072380,23, 0xa072400,23, 0xa072480,23, 0xa072500,23, 0xa072580,23, 0xa072600,23, 0xa072680,23, 0xa072700,23, 0xa072780,23, 0xa072800,23, 0xa072880,23, 0xa072900,23, 0xa072980,23, 0xa072a00,23, 0xa072a80,23, 0xa072b00,23, 0xa072b80,23, 0xa072c00,23, 0xa072c80,23, 0xa072d00,23, 0xa072d80,23, 0xa072e00,23, 0xa072e80,23, 0xa072f00,23, 0xa072f80,23, 0xa073000,23, 0xa073080,23, 0xa073100,23, 0xa073180,23, 0xa073200,23, 0xa073280,23, 0xa073300,23, 0xa073380,23, 0xa073400,23, 0xa073480,23, 0xa073500,23, 0xa073580,23, 0xa073600,23, 0xa073680,23, 0xa073700,23, 0xa073780,23, 0xa073800,23, 0xa073880,23, 0xa073900,23, 0xa073980,23, 0xa073a00,23, 0xa073a80,23, 0xa073b00,23, 0xa073b80,23, 0xa080000,23, 0xa080080,23, 0xa080100,23, 0xa080180,23, 0xa080200,23, 0xa080280,23, 0xa080300,23, 0xa080380,23, 0xa080400,23, 0xa080480,23, 0xa080500,23, 0xa080580,23, 0xa080600,23, 0xa080680,23, 0xa080700,23, 0xa080780,23, 0xa080800,23, 0xa080880,23, 0xa080900,23, 0xa080980,23, 0xa080a00,23, 0xa080a80,23, 0xa080b00,23, 0xa080b80,23, 0xa080c00,23, 0xa080c80,23, 0xa080d00,23, 0xa080d80,23, 0xa080e00,23, 0xa080e80,23, 0xa080f00,23, 0xa080f80,23, 0xa081000,23, 0xa081080,23, 0xa081100,23, 0xa081180,23, 0xa081200,23, 0xa081280,23, 0xa081300,23, 0xa081380,23, 0xa081400,23, 0xa081480,23, 0xa081500,23, 0xa081580,23, 0xa081600,23, 0xa081680,23, 0xa081700,23, 0xa081780,23, 0xa081800,23, 0xa081880,23, 0xa081900,23, 0xa081980,23, 0xa081a00,23, 0xa081a80,23, 0xa081b00,23, 0xa081b80,23, 0xa081c00,23, 0xa081c80,23, 0xa081d00,23, 0xa081d80,23, 0xa081e00,23, 0xa081e80,23, 0xa081f00,23, 0xa081f80,23, 0xa082000,23, 0xa082080,23, 0xa082100,23, 0xa082180,23, 0xa082200,23, 0xa082280,23, 0xa082300,23, 0xa082380,23, 0xa082400,23, 0xa082480,23, 0xa082500,23, 0xa082580,23, 0xa082600,23, 0xa082680,23, 0xa082700,23, 0xa082780,23, 0xa082800,23, 0xa082880,23, 0xa082900,23, 0xa082980,23, 0xa082a00,23, 0xa082a80,23, 0xa082b00,23, 0xa082b80,23, 0xa082c00,23, 0xa082c80,23, 0xa082d00,23, 0xa082d80,23, 0xa082e00,23, 0xa082e80,23, 0xa082f00,23, 0xa082f80,23, 0xa083000,23, 0xa083080,23, 0xa083100,23, 0xa083180,23, 0xa083200,23, 0xa083280,23, 0xa083300,23, 0xa083380,23, 0xa083400,23, 0xa083480,23, 0xa083500,23, 0xa083580,23, 0xa083600,23, 0xa083680,23, 0xa083700,23, 0xa083780,23, 0xa083800,23, 0xa083880,23, 0xa083900,23, 0xa083980,23, 0xa083a00,23, 0xa083a80,23, 0xa083b00,23, 0xa083b80,23, 0xa083c00,23, 0xa083c80,23, 0xa083d00,23, 0xa083d80,23, 0xa083e00,23, 0xa083e80,23, 0xa083f00,23, 0xa083f80,23, 0xa084000,23, 0xa084080,23, 0xa084100,23, 0xa084180,23, 0xa084200,23, 0xa084280,23, 0xa084300,23, 0xa084380,23, 0xa084400,23, 0xa084480,23, 0xa084500,23, 0xa084580,23, 0xa084600,23, 0xa084680,23, 0xa084700,23, 0xa084780,23, 0xa084800,23, 0xa084880,23, 0xa084900,23, 0xa084980,23, 0xa084a00,23, 0xa084a80,23, 0xa084b00,23, 0xa084b80,23, 0xa084c00,23, 0xa084c80,23, 0xa084d00,23, 0xa084d80,23, 0xa084e00,23, 0xa084e80,23, 0xa084f00,23, 0xa084f80,23, 0xa085000,23, 0xa085080,23, 0xa085100,23, 0xa085180,23, 0xa085200,23, 0xa085280,23, 0xa085300,23, 0xa085380,23, 0xa085400,23, 0xa085480,23, 0xa085500,23, 0xa085580,23, 0xa085600,23, 0xa085680,23, 0xa085700,23, 0xa085780,23, 0xa085800,23, 0xa085880,23, 0xa085900,23, 0xa085980,23, 0xa085a00,23, 0xa085a80,23, 0xa085b00,23, 0xa085b80,23, 0xa085c00,23, 0xa085c80,23, 0xa085d00,23, 0xa085d80,23, 0xa085e00,23, 0xa085e80,23, 0xa085f00,23, 0xa085f80,23, 0xa086000,23, 0xa086080,23, 0xa086100,23, 0xa086180,23, 0xa086200,23, 0xa086280,23, 0xa086300,23, 0xa086380,23, 0xa086400,23, 0xa086480,23, 0xa086500,23, 0xa086580,23, 0xa086600,23, 0xa086680,23, 0xa086700,23, 0xa086780,23, 0xa086800,23, 0xa086880,23, 0xa086900,23, 0xa086980,23, 0xa086a00,23, 0xa086a80,23, 0xa086b00,23, 0xa086b80,23, 0xa086c00,23, 0xa086c80,23, 0xa086d00,23, 0xa086d80,23, 0xa086e00,23, 0xa086e80,23, 0xa086f00,23, 0xa086f80,23, 0xa087000,23, 0xa087080,23, 0xa087100,23, 0xa087180,23, 0xa087200,23, 0xa087280,23, 0xa087300,23, 0xa087380,23, 0xa087400,23, 0xa087480,23, 0xa087500,23, 0xa087580,23, 0xa087600,23, 0xa087680,23, 0xa087700,23, 0xa087780,23, 0xa087800,23, 0xa087880,23, 0xa087900,23, 0xa087980,23, 0xa087a00,23, 0xa087a80,23, 0xa087b00,23, 0xa087b80,23, 0xa087c00,23, 0xa087c80,23, 0xa087d00,23, 0xa087d80,23, 0xa087e00,23, 0xa087e80,23, 0xa087f00,23, 0xa087f80,23, 0xa088000,23, 0xa088080,23, 0xa088100,23, 0xa088180,23, 0xa088200,23, 0xa088280,23, 0xa088300,23, 0xa088380,23, 0xa088400,23, 0xa088480,23, 0xa088500,23, 0xa088580,23, 0xa088600,23, 0xa088680,23, 0xa088700,23, 0xa088780,23, 0xa088800,23, 0xa088880,23, 0xa088900,23, 0xa088980,23, 0xa088a00,23, 0xa088a80,23, 0xa088b00,23, 0xa088b80,23, 0xa088c00,23, 0xa088c80,23, 0xa088d00,23, 0xa088d80,23, 0xa088e00,23, 0xa088e80,23, 0xa088f00,23, 0xa088f80,23, 0xa089000,23, 0xa089080,23, 0xa089100,23, 0xa089180,23, 0xa089200,23, 0xa089280,23, 0xa089300,23, 0xa089380,23, 0xa089400,23, 0xa089480,23, 0xa089500,23, 0xa089580,23, 0xa089600,23, 0xa089680,23, 0xa089700,23, 0xa089780,23, 0xa089800,23, 0xa089880,23, 0xa089900,23, 0xa089980,23, 0xa089a00,23, 0xa089a80,23, 0xa089b00,23, 0xa089b80,23, 0xa089c00,23, 0xa089c80,23, 0xa089d00,23, 0xa089d80,23, 0xa089e00,23, 0xa089e80,23, 0xa089f00,23, 0xa089f80,23, 0xa08a000,23, 0xa08a080,23, 0xa08a100,23, 0xa08a180,23, 0xa08a200,23, 0xa08a280,23, 0xa08a300,23, 0xa08a380,23, 0xa08a400,23, 0xa08a480,23, 0xa08a500,23, 0xa08a580,23, 0xa08a600,23, 0xa08a680,23, 0xa08a700,23, 0xa08a780,23, 0xa08a800,23, 0xa08a880,23, 0xa08a900,23, 0xa08a980,23, 0xa08aa00,23, 0xa08aa80,23, 0xa08ab00,23, 0xa08ab80,23, 0xa08ac00,23, 0xa08ac80,23, 0xa08ad00,23, 0xa08ad80,23, 0xa08ae00,23, 0xa08ae80,23, 0xa08af00,23, 0xa08af80,23, 0xa08b000,23, 0xa08b080,23, 0xa08b100,23, 0xa08b180,23, 0xa08b200,23, 0xa08b280,23, 0xa08b300,23, 0xa08b380,23, 0xa08b400,23, 0xa08b480,23, 0xa08b500,23, 0xa08b580,23, 0xa08b600,23, 0xa08b680,23, 0xa08b700,23, 0xa08b780,23, 0xa08b800,23, 0xa08b880,23, 0xa08b900,23, 0xa08b980,23, 0xa08ba00,23, 0xa08ba80,23, 0xa08bb00,23, 0xa08bb80,23, 0xa08bc00,23, 0xa08bc80,23, 0xa08bd00,23, 0xa08bd80,23, 0xa08be00,23, 0xa08be80,23, 0xa08bf00,23, 0xa08bf80,23, 0xa08c000,23, 0xa08c080,23, 0xa08c100,23, 0xa08c180,23, 0xa08c200,23, 0xa08c280,23, 0xa08c300,23, 0xa08c380,23, 0xa08c400,23, 0xa08c480,23, 0xa08c500,23, 0xa08c580,23, 0xa08c600,23, 0xa08c680,23, 0xa08c700,23, 0xa08c780,23, 0xa08c800,23, 0xa08c880,23, 0xa08c900,23, 0xa08c980,23, 0xa08ca00,23, 0xa08ca80,23, 0xa08cb00,23, 0xa08cb80,23, 0xa08cc00,23, 0xa08cc80,23, 0xa08cd00,23, 0xa08cd80,23, 0xa08ce00,23, 0xa08ce80,23, 0xa08cf00,23, 0xa08cf80,23, 0xa08d000,23, 0xa08d080,23, 0xa08d100,23, 0xa08d180,23, 0xa08d200,23, 0xa08d280,23, 0xa08d300,23, 0xa08d380,23, 0xa08d400,23, 0xa08d480,23, 0xa08d500,23, 0xa08d580,23, 0xa08d600,23, 0xa08d680,23, 0xa08d700,23, 0xa08d780,23, 0xa08d800,23, 0xa08d880,23, 0xa08d900,23, 0xa08d980,23, 0xa08da00,23, 0xa08da80,23, 0xa08db00,23, 0xa08db80,23, 0xa08dc00,23, 0xa08dc80,23, 0xa08dd00,23, 0xa08dd80,23, 0xa08de00,23, 0xa08de80,23, 0xa08df00,23, 0xa08df80,23, 0xa08e000,23, 0xa08e080,23, 0xa08e100,23, 0xa08e180,23, 0xa08e200,23, 0xa08e280,23, 0xa08e300,23, 0xa08e380,23, 0xa08e400,23, 0xa08e480,23, 0xa08e500,23, 0xa08e580,23, 0xa08e600,23, 0xa08e680,23, 0xa08e700,23, 0xa08e780,23, 0xa08e800,23, 0xa08e880,23, 0xa08e900,23, 0xa08e980,23, 0xa08ea00,23, 0xa08ea80,23, 0xa08eb00,23, 0xa08eb80,23, 0xa08ec00,23, 0xa08ec80,23, 0xa08ed00,23, 0xa08ed80,23, 0xa08ee00,23, 0xa08ee80,23, 0xa08ef00,23, 0xa08ef80,23, 0xa08f000,23, 0xa08f080,23, 0xa08f100,23, 0xa08f180,23, 0xa08f200,23, 0xa08f280,23, 0xa08f300,23, 0xa08f380,23, 0xa08f400,23, 0xa08f480,23, 0xa08f500,23, 0xa08f580,23, 0xa08f600,23, 0xa08f680,23, 0xa08f700,23, 0xa08f780,23, 0xa08f800,23, 0xa08f880,23, 0xa08f900,23, 0xa08f980,23, 0xa08fa00,23, 0xa08fa80,23, 0xa08fb00,23, 0xa08fb80,23, 0xa08fc00,23, 0xa08fc80,23, 0xa08fd00,23, 0xa08fd80,23, 0xa08fe00,23, 0xa08fe80,23, 0xa08ff00,23, 0xa08ff80,23, 0xa090000,23, 0xa090080,23, 0xa090100,23, 0xa090180,23, 0xa090200,23, 0xa090280,23, 0xa090300,23, 0xa090380,23, 0xa090400,23, 0xa090480,23, 0xa090500,23, 0xa090580,23, 0xa090600,23, 0xa090680,23, 0xa090700,23, 0xa090780,23, 0xa090800,23, 0xa090880,23, 0xa090900,23, 0xa090980,23, 0xa090a00,23, 0xa090a80,23, 0xa090b00,23, 0xa090b80,23, 0xa090c00,23, 0xa090c80,23, 0xa090d00,23, 0xa090d80,23, 0xa090e00,23, 0xa090e80,23, 0xa090f00,23, 0xa090f80,23, 0xa091000,23, 0xa091080,23, 0xa091100,23, 0xa091180,23, 0xa091200,23, 0xa091280,23, 0xa091300,23, 0xa091380,23, 0xa091400,23, 0xa091480,23, 0xa091500,23, 0xa091580,23, 0xa091600,23, 0xa091680,23, 0xa091700,23, 0xa091780,23, 0xa091800,23, 0xa091880,23, 0xa091900,23, 0xa091980,23, 0xa091a00,23, 0xa091a80,23, 0xa091b00,23, 0xa091b80,23, 0xa091c00,23, 0xa091c80,23, 0xa091d00,23, 0xa091d80,23, 0xa091e00,23, 0xa091e80,23, 0xa091f00,23, 0xa091f80,23, 0xa092000,23, 0xa092080,23, 0xa092100,23, 0xa092180,23, 0xa092200,23, 0xa092280,23, 0xa092300,23, 0xa092380,23, 0xa092400,23, 0xa092480,23, 0xa092500,23, 0xa092580,23, 0xa092600,23, 0xa092680,23, 0xa092700,23, 0xa092780,23, 0xa092800,23, 0xa092880,23, 0xa092900,23, 0xa092980,23, 0xa092a00,23, 0xa092a80,23, 0xa092b00,23, 0xa092b80,23, 0xa092c00,23, 0xa092c80,23, 0xa092d00,23, 0xa092d80,23, 0xa092e00,23, 0xa092e80,23, 0xa092f00,23, 0xa092f80,23, 0xa093000,23, 0xa093080,23, 0xa093100,23, 0xa093180,23, 0xa093200,23, 0xa093280,23, 0xa093300,23, 0xa093380,23, 0xa093400,23, 0xa093480,23, 0xa093500,23, 0xa093580,23, 0xa093600,23, 0xa093680,23, 0xa093700,23, 0xa093780,23, 0xa093800,23, 0xa093880,23, 0xa093900,23, 0xa093980,23, 0xa093a00,23, 0xa093a80,23, 0xa093b00,23, 0xa093b80,23, 0xa093c00,23, 0xa093c80,23, 0xa093d00,23, 0xa093d80,23, 0xa093e00,23, 0xa093e80,23, 0xa093f00,23, 0xa093f80,23, 0xa094000,23, 0xa094080,23, 0xa094100,23, 0xa094180,23, 0xa094200,23, 0xa094280,23, 0xa094300,23, 0xa094380,23, 0xa094400,23, 0xa094480,23, 0xa094500,23, 0xa094580,23, 0xa094600,23, 0xa094680,23, 0xa094700,23, 0xa094780,23, 0xa094800,23, 0xa094880,23, 0xa094900,23, 0xa094980,23, 0xa094a00,23, 0xa094a80,23, 0xa094b00,23, 0xa094b80,23, 0xa094c00,23, 0xa094c80,23, 0xa094d00,23, 0xa094d80,23, 0xa094e00,23, 0xa094e80,23, 0xa094f00,23, 0xa094f80,23, 0xa095000,23, 0xa095080,23, 0xa095100,23, 0xa095180,23, 0xa095200,23, 0xa095280,23, 0xa095300,23, 0xa095380,23, 0xa095400,23, 0xa095480,23, 0xa095500,23, 0xa095580,23, 0xa095600,23, 0xa095680,23, 0xa095700,23, 0xa095780,23, 0xa095800,23, 0xa095880,23, 0xa095900,23, 0xa095980,23, 0xa095a00,23, 0xa095a80,23, 0xa095b00,23, 0xa095b80,23, 0xa095c00,23, 0xa095c80,23, 0xa095d00,23, 0xa095d80,23, 0xa095e00,23, 0xa095e80,23, 0xa095f00,23, 0xa095f80,23, 0xa096000,23, 0xa096080,23, 0xa096100,23, 0xa096180,23, 0xa096200,23, 0xa096280,23, 0xa096300,23, 0xa096380,23, 0xa096400,23, 0xa096480,23, 0xa096500,23, 0xa096580,23, 0xa096600,23, 0xa096680,23, 0xa096700,23, 0xa096780,23, 0xa096800,23, 0xa096880,23, 0xa096900,23, 0xa096980,23, 0xa096a00,23, 0xa096a80,23, 0xa096b00,23, 0xa096b80,23, 0xa096c00,23, 0xa096c80,23, 0xa096d00,23, 0xa096d80,23, 0xa096e00,23, 0xa096e80,23, 0xa096f00,23, 0xa096f80,23, 0xa097000,23, 0xa097080,23, 0xa097100,23, 0xa097180,23, 0xa097200,23, 0xa097280,23, 0xa097300,23, 0xa097380,23, 0xa097400,23, 0xa097480,23, 0xa097500,23, 0xa097580,23, 0xa097600,23, 0xa097680,23, 0xa097700,23, 0xa097780,23, 0xa097800,23, 0xa097880,23, 0xa097900,23, 0xa097980,23, 0xa097a00,23, 0xa097a80,23, 0xa097b00,23, 0xa097b80,23, 0xa097c00,23, 0xa097c80,23, 0xa097d00,23, 0xa097d80,23, 0xa097e00,23, 0xa097e80,23, 0xa097f00,23, 0xa097f80,23, 0xa098000,23, 0xa098080,23, 0xa098100,23, 0xa098180,23, 0xa098200,23, 0xa098280,23, 0xa098300,23, 0xa098380,23, 0xa098400,23, 0xa098480,23, 0xa098500,23, 0xa098580,23, 0xa098600,23, 0xa098680,23, 0xa098700,23, 0xa098780,23, 0xa098800,23, 0xa098880,23, 0xa098900,23, 0xa098980,23, 0xa098a00,23, 0xa098a80,23, 0xa098b00,23, 0xa098b80,23, 0xa098c00,23, 0xa098c80,23, 0xa098d00,23, 0xa098d80,23, 0xa098e00,23, 0xa098e80,23, 0xa098f00,23, 0xa098f80,23, 0xa099000,23, 0xa099080,23, 0xa099100,23, 0xa099180,23, 0xa099200,23, 0xa099280,23, 0xa099300,23, 0xa099380,23, 0xa099400,23, 0xa099480,23, 0xa099500,23, 0xa099580,23, 0xa099600,23, 0xa099680,23, 0xa099700,23, 0xa099780,23, 0xa099800,23, 0xa099880,23, 0xa099900,23, 0xa099980,23, 0xa099a00,23, 0xa099a80,23, 0xa099b00,23, 0xa099b80,23, 0xa099c00,23, 0xa099c80,23, 0xa099d00,23, 0xa099d80,23, 0xa099e00,23, 0xa099e80,23, 0xa099f00,23, 0xa099f80,23, 0xa09a000,23, 0xa09a080,23, 0xa09a100,23, 0xa09a180,23, 0xa09a200,23, 0xa09a280,23, 0xa09a300,23, 0xa09a380,23, 0xa09a400,23, 0xa09a480,23, 0xa09a500,23, 0xa09a580,23, 0xa09a600,23, 0xa09a680,23, 0xa09a700,23, 0xa09a780,23, 0xa09a800,23, 0xa09a880,23, 0xa09a900,23, 0xa09a980,23, 0xa09aa00,23, 0xa09aa80,23, 0xa09ab00,23, 0xa09ab80,23, 0xa09ac00,23, 0xa09ac80,23, 0xa09ad00,23, 0xa09ad80,23, 0xa09ae00,23, 0xa09ae80,23, 0xa09af00,23, 0xa09af80,23, 0xa09b000,23, 0xa09b080,23, 0xa09b100,23, 0xa09b180,23, 0xa09b200,23, 0xa09b280,23, 0xa09b300,23, 0xa09b380,23, 0xa09b400,23, 0xa09b480,23, 0xa09b500,23, 0xa09b580,23, 0xa09b600,23, 0xa09b680,23, 0xa09b700,23, 0xa09b780,23, 0xa09b800,23, 0xa09b880,23, 0xa09b900,23, 0xa09b980,23, 0xa09ba00,23, 0xa09ba80,23, 0xa09bb00,23, 0xa09bb80,23, 0xa09bc00,23, 0xa09bc80,23, 0xa09bd00,23, 0xa09bd80,23, 0xa09be00,23, 0xa09be80,23, 0xa09bf00,23, 0xa09bf80,23, 0xa09c000,23, 0xa09c080,23, 0xa09c100,23, 0xa09c180,23, 0xa09c200,23, 0xa09c280,23, 0xa09c300,23, 0xa09c380,23, 0xa09c400,23, 0xa09c480,23, 0xa09c500,23, 0xa09c580,23, 0xa09c600,23, 0xa09c680,23, 0xa09c700,23, 0xa09c780,23, 0xa09c800,23, 0xa09c880,23, 0xa09c900,23, 0xa09c980,23, 0xa09ca00,23, 0xa09ca80,23, 0xa09cb00,23, 0xa09cb80,23, 0xa09cc00,23, 0xa09cc80,23, 0xa09cd00,23, 0xa09cd80,23, 0xa09ce00,23, 0xa09ce80,23, 0xa09cf00,23, 0xa09cf80,23, 0xa09d000,23, 0xa09d080,23, 0xa09d100,23, 0xa09d180,23, 0xa09d200,23, 0xa09d280,23, 0xa09d300,23, 0xa09d380,23, 0xa09d400,23, 0xa09d480,23, 0xa09d500,23, 0xa09d580,23, 0xa09d600,23, 0xa09d680,23, 0xa09d700,23, 0xa09d780,23, 0xa09d800,23, 0xa09d880,23, 0xa09d900,23, 0xa09d980,23, 0xa09da00,23, 0xa09da80,23, 0xa09db00,23, 0xa09db80,23, 0xa09dc00,23, 0xa09dc80,23, 0xa09dd00,23, 0xa09dd80,23, 0xa09de00,23, 0xa09de80,23, 0xa09df00,23, 0xa09df80,23, 0xa09e000,23, 0xa09e080,23, 0xa09e100,23, 0xa09e180,23, 0xa09e200,23, 0xa09e280,23, 0xa09e300,23, 0xa09e380,23, 0xa09e400,23, 0xa09e480,23, 0xa09e500,23, 0xa09e580,23, 0xa09e600,23, 0xa09e680,23, 0xa09e700,23, 0xa09e780,23, 0xa09e800,23, 0xa09e880,23, 0xa09e900,23, 0xa09e980,23, 0xa09ea00,23, 0xa09ea80,23, 0xa09eb00,23, 0xa09eb80,23, 0xa09ec00,23, 0xa09ec80,23, 0xa09ed00,23, 0xa09ed80,23, 0xa09ee00,23, 0xa09ee80,23, 0xa09ef00,23, 0xa09ef80,23, 0xa09f000,23, 0xa09f080,23, 0xa09f100,23, 0xa09f180,23, 0xa09f200,23, 0xa09f280,23, 0xa09f300,23, 0xa09f380,23, 0xa09f400,23, 0xa09f480,23, 0xa09f500,23, 0xa09f580,23, 0xa09f600,23, 0xa09f680,23, 0xa09f700,23, 0xa09f780,23, 0xa09f800,23, 0xa09f880,23, 0xa09f900,23, 0xa09f980,23, 0xa09fa00,23, 0xa09fa80,23, 0xa09fb00,23, 0xa09fb80,23, 0xa09fc00,23, 0xa09fc80,23, 0xa09fd00,23, 0xa09fd80,23, 0xa09fe00,23, 0xa09fe80,23, 0xa09ff00,23, 0xa09ff80,23, 0xa0a0000,23, 0xa0a0080,23, 0xa0a0100,23, 0xa0a0180,23, 0xa0a0200,23, 0xa0a0280,23, 0xa0a0300,23, 0xa0a0380,23, 0xa0a0400,23, 0xa0a0480,23, 0xa0a0500,23, 0xa0a0580,23, 0xa0a0600,23, 0xa0a0680,23, 0xa0a0700,23, 0xa0a0780,23, 0xa0a0800,23, 0xa0a0880,23, 0xa0a0900,23, 0xa0a0980,23, 0xa0a0a00,23, 0xa0a0a80,23, 0xa0a0b00,23, 0xa0a0b80,23, 0xa0a0c00,23, 0xa0a0c80,23, 0xa0a0d00,23, 0xa0a0d80,23, 0xa0a0e00,23, 0xa0a0e80,23, 0xa0a0f00,23, 0xa0a0f80,23, 0xa0a1000,23, 0xa0a1080,23, 0xa0a1100,23, 0xa0a1180,23, 0xa0a1200,23, 0xa0a1280,23, 0xa0a1300,23, 0xa0a1380,23, 0xa0a1400,23, 0xa0a1480,23, 0xa0a1500,23, 0xa0a1580,23, 0xa0a1600,23, 0xa0a1680,23, 0xa0a1700,23, 0xa0a1780,23, 0xa0a1800,23, 0xa0a1880,23, 0xa0a1900,23, 0xa0a1980,23, 0xa0a1a00,23, 0xa0a1a80,23, 0xa0a1b00,23, 0xa0a1b80,23, 0xa0a1c00,23, 0xa0a1c80,23, 0xa0a1d00,23, 0xa0a1d80,23, 0xa0a1e00,23, 0xa0a1e80,23, 0xa0a1f00,23, 0xa0a1f80,23, 0xa0a2000,23, 0xa0a2080,23, 0xa0a2100,23, 0xa0a2180,23, 0xa0a2200,23, 0xa0a2280,23, 0xa0a2300,23, 0xa0a2380,23, 0xa0a2400,23, 0xa0a2480,23, 0xa0a2500,23, 0xa0a2580,23, 0xa0a2600,23, 0xa0a2680,23, 0xa0a2700,23, 0xa0a2780,23, 0xa0a2800,23, 0xa0a2880,23, 0xa0a2900,23, 0xa0a2980,23, 0xa0a2a00,23, 0xa0a2a80,23, 0xa0a2b00,23, 0xa0a2b80,23, 0xa0a2c00,23, 0xa0a2c80,23, 0xa0a2d00,23, 0xa0a2d80,23, 0xa0a2e00,23, 0xa0a2e80,23, 0xa0a2f00,23, 0xa0a2f80,23, 0xa0a3000,23, 0xa0a3080,23, 0xa0a3100,23, 0xa0a3180,23, 0xa0a3200,23, 0xa0a3280,23, 0xa0a3300,23, 0xa0a3380,23, 0xa0a3400,23, 0xa0a3480,23, 0xa0a3500,23, 0xa0a3580,23, 0xa0a3600,23, 0xa0a3680,23, 0xa0a3700,23, 0xa0a3780,23, 0xa0a3800,23, 0xa0a3880,23, 0xa0a3900,23, 0xa0a3980,23, 0xa0a3a00,23, 0xa0a3a80,23, 0xa0a3b00,23, 0xa0a3b80,23, 0xa0a3c00,23, 0xa0a3c80,23, 0xa0a3d00,23, 0xa0a3d80,23, 0xa0a3e00,23, 0xa0a3e80,23, 0xa0a3f00,23, 0xa0a3f80,23, 0xa0a4000,23, 0xa0a4080,23, 0xa0a4100,23, 0xa0a4180,23, 0xa0a4200,23, 0xa0a4280,23, 0xa0a4300,23, 0xa0a4380,23, 0xa0a4400,23, 0xa0a4480,23, 0xa0a4500,23, 0xa0a4580,23, 0xa0a4600,23, 0xa0a4680,23, 0xa0a4700,23, 0xa0a4780,23, 0xa0a4800,23, 0xa0a4880,23, 0xa0a4900,23, 0xa0a4980,23, 0xa0a4a00,23, 0xa0a4a80,23, 0xa0a4b00,23, 0xa0a4b80,23, 0xa0a4c00,23, 0xa0a4c80,23, 0xa0a4d00,23, 0xa0a4d80,23, 0xa0a4e00,23, 0xa0a4e80,23, 0xa0a4f00,23, 0xa0a4f80,23, 0xa0a5000,23, 0xa0a5080,23, 0xa0a5100,23, 0xa0a5180,23, 0xa0a5200,23, 0xa0a5280,23, 0xa0a5300,23, 0xa0a5380,23, 0xa0a5400,23, 0xa0a5480,23, 0xa0a5500,23, 0xa0a5580,23, 0xa0a5600,23, 0xa0a5680,23, 0xa0a5700,23, 0xa0a5780,23, 0xa0a5800,23, 0xa0a5880,23, 0xa0a5900,23, 0xa0a5980,23, 0xa0a5a00,23, 0xa0a5a80,23, 0xa0a5b00,23, 0xa0a5b80,23, 0xa0a5c00,23, 0xa0a5c80,23, 0xa0a5d00,23, 0xa0a5d80,23, 0xa0a5e00,23, 0xa0a5e80,23, 0xa0a5f00,23, 0xa0a5f80,23, 0xa0a6000,23, 0xa0a6080,23, 0xa0a6100,23, 0xa0a6180,23, 0xa0a6200,23, 0xa0a6280,23, 0xa0a6300,23, 0xa0a6380,23, 0xa0a6400,23, 0xa0a6480,23, 0xa0a6500,23, 0xa0a6580,23, 0xa0a6600,23, 0xa0a6680,23, 0xa0a6700,23, 0xa0a6780,23, 0xa0a6800,23, 0xa0a6880,23, 0xa0a6900,23, 0xa0a6980,23, 0xa0a6a00,23, 0xa0a6a80,23, 0xa0a6b00,23, 0xa0a6b80,23, 0xa0a6c00,23, 0xa0a6c80,23, 0xa0a6d00,23, 0xa0a6d80,23, 0xa0a6e00,23, 0xa0a6e80,23, 0xa0a6f00,23, 0xa0a6f80,23, 0xa0a7000,23, 0xa0a7080,23, 0xa0a7100,23, 0xa0a7180,23, 0xa0a7200,23, 0xa0a7280,23, 0xa0a7300,23, 0xa0a7380,23, 0xa0a7400,23, 0xa0a7480,23, 0xa0a7500,23, 0xa0a7580,23, 0xa0a7600,23, 0xa0a7680,23, 0xa0a7700,23, 0xa0a7780,23, 0xa0a7800,23, 0xa0a7880,23, 0xa0a7900,23, 0xa0a7980,23, 0xa0a7a00,23, 0xa0a7a80,23, 0xa0a7b00,23, 0xa0a7b80,23, 0xa0a7c00,23, 0xa0a7c80,23, 0xa0a7d00,23, 0xa0a7d80,23, 0xa0a7e00,23, 0xa0a7e80,23, 0xa0a7f00,23, 0xa0a7f80,23, 0xa0a8000,23, 0xa0a8080,23, 0xa0a8100,23, 0xa0a8180,23, 0xa0a8200,23, 0xa0a8280,23, 0xa0a8300,23, 0xa0a8380,23, 0xa0a8400,23, 0xa0a8480,23, 0xa0a8500,23, 0xa0a8580,23, 0xa0a8600,23, 0xa0a8680,23, 0xa0a8700,23, 0xa0a8780,23, 0xa0a8800,23, 0xa0a8880,23, 0xa0a8900,23, 0xa0a8980,23, 0xa0a8a00,23, 0xa0a8a80,23, 0xa0a8b00,23, 0xa0a8b80,23, 0xa0a8c00,23, 0xa0a8c80,23, 0xa0a8d00,23, 0xa0a8d80,23, 0xa0a8e00,23, 0xa0a8e80,23, 0xa0a8f00,23, 0xa0a8f80,23, 0xa0a9000,23, 0xa0a9080,23, 0xa0a9100,23, 0xa0a9180,23, 0xa0a9200,23, 0xa0a9280,23, 0xa0a9300,23, 0xa0a9380,23, 0xa0a9400,23, 0xa0a9480,23, 0xa0a9500,23, 0xa0a9580,23, 0xa0a9600,23, 0xa0a9680,23, 0xa0a9700,23, 0xa0a9780,23, 0xa0a9800,23, 0xa0a9880,23, 0xa0a9900,23, 0xa0a9980,23, 0xa0a9a00,23, 0xa0a9a80,23, 0xa0a9b00,23, 0xa0a9b80,23, 0xa0a9c00,23, 0xa0a9c80,23, 0xa0a9d00,23, 0xa0a9d80,23, 0xa0a9e00,23, 0xa0a9e80,23, 0xa0a9f00,23, 0xa0a9f80,23, 0xa0aa000,23, 0xa0aa080,23, 0xa0aa100,23, 0xa0aa180,23, 0xa0aa200,23, 0xa0aa280,23, 0xa0aa300,23, 0xa0aa380,23, 0xa0aa400,23, 0xa0aa480,23, 0xa0aa500,23, 0xa0aa580,23, 0xa0aa600,23, 0xa0aa680,23, 0xa0aa700,23, 0xa0aa780,23, 0xa0aa800,23, 0xa0aa880,23, 0xa0aa900,23, 0xa0aa980,23, 0xa0aaa00,23, 0xa0aaa80,23, 0xa0aab00,23, 0xa0aab80,23, 0xa0aac00,23, 0xa0aac80,23, 0xa0aad00,23, 0xa0aad80,23, 0xa0aae00,23, 0xa0aae80,23, 0xa0aaf00,23, 0xa0aaf80,23, 0xa0ab000,23, 0xa0ab080,23, 0xa0ab100,23, 0xa0ab180,23, 0xa0ab200,23, 0xa0ab280,23, 0xa0ab300,23, 0xa0ab380,23, 0xa0ab400,23, 0xa0ab480,23, 0xa0ab500,23, 0xa0ab580,23, 0xa0ab600,23, 0xa0ab680,23, 0xa0ab700,23, 0xa0ab780,23, 0xa0ab800,23, 0xa0ab880,23, 0xa0ab900,23, 0xa0ab980,23, 0xa0aba00,23, 0xa0aba80,23, 0xa0abb00,23, 0xa0abb80,23, 0xa0abc00,23, 0xa0abc80,23, 0xa0abd00,23, 0xa0abd80,23, 0xa0abe00,23, 0xa0abe80,23, 0xa0abf00,23, 0xa0abf80,23, 0xa0ac000,23, 0xa0ac080,23, 0xa0ac100,23, 0xa0ac180,23, 0xa0ac200,23, 0xa0ac280,23, 0xa0ac300,23, 0xa0ac380,23, 0xa0ac400,23, 0xa0ac480,23, 0xa0ac500,23, 0xa0ac580,23, 0xa0ac600,23, 0xa0ac680,23, 0xa0ac700,23, 0xa0ac780,23, 0xa0ac800,23, 0xa0ac880,23, 0xa0ac900,23, 0xa0ac980,23, 0xa0aca00,23, 0xa0aca80,23, 0xa0acb00,23, 0xa0acb80,23, 0xa0acc00,23, 0xa0acc80,23, 0xa0acd00,23, 0xa0acd80,23, 0xa0ace00,23, 0xa0ace80,23, 0xa0acf00,23, 0xa0acf80,23, 0xa0ad000,23, 0xa0ad080,23, 0xa0ad100,23, 0xa0ad180,23, 0xa0ad200,23, 0xa0ad280,23, 0xa0ad300,23, 0xa0ad380,23, 0xa0ad400,23, 0xa0ad480,23, 0xa0ad500,23, 0xa0ad580,23, 0xa0ad600,23, 0xa0ad680,23, 0xa0ad700,23, 0xa0ad780,23, 0xa0ad800,23, 0xa0ad880,23, 0xa0ad900,23, 0xa0ad980,23, 0xa0ada00,23, 0xa0ada80,23, 0xa0adb00,23, 0xa0adb80,23, 0xa0adc00,23, 0xa0adc80,23, 0xa0add00,23, 0xa0add80,23, 0xa0ade00,23, 0xa0ade80,23, 0xa0adf00,23, 0xa0adf80,23, 0xa0ae000,23, 0xa0ae080,23, 0xa0ae100,23, 0xa0ae180,23, 0xa0ae200,23, 0xa0ae280,23, 0xa0ae300,23, 0xa0ae380,23, 0xa0ae400,23, 0xa0ae480,23, 0xa0ae500,23, 0xa0ae580,23, 0xa0ae600,23, 0xa0ae680,23, 0xa0ae700,23, 0xa0ae780,23, 0xa0ae800,23, 0xa0ae880,23, 0xa0ae900,23, 0xa0ae980,23, 0xa0aea00,23, 0xa0aea80,23, 0xa0aeb00,23, 0xa0aeb80,23, 0xa0aec00,23, 0xa0aec80,23, 0xa0aed00,23, 0xa0aed80,23, 0xa0aee00,23, 0xa0aee80,23, 0xa0aef00,23, 0xa0aef80,23, 0xa0af000,23, 0xa0af080,23, 0xa0af100,23, 0xa0af180,23, 0xa0af200,23, 0xa0af280,23, 0xa0af300,23, 0xa0af380,23, 0xa0af400,23, 0xa0af480,23, 0xa0af500,23, 0xa0af580,23, 0xa0af600,23, 0xa0af680,23, 0xa0af700,23, 0xa0af780,23, 0xa0af800,23, 0xa0af880,23, 0xa0af900,23, 0xa0af980,23, 0xa0afa00,23, 0xa0afa80,23, 0xa0afb00,23, 0xa0afb80,23, 0xa0afc00,23, 0xa0afc80,23, 0xa0afd00,23, 0xa0afd80,23, 0xa0afe00,23, 0xa0afe80,23, 0xa0aff00,23, 0xa0aff80,23, 0xa0b0000,23, 0xa0b0080,23, 0xa0b0100,23, 0xa0b0180,23, 0xa0b0200,23, 0xa0b0280,23, 0xa0b0300,23, 0xa0b0380,23, 0xa0b0400,23, 0xa0b0480,23, 0xa0b0500,23, 0xa0b0580,23, 0xa0b0600,23, 0xa0b0680,23, 0xa0b0700,23, 0xa0b0780,23, 0xa0b0800,23, 0xa0b0880,23, 0xa0b0900,23, 0xa0b0980,23, 0xa0b0a00,23, 0xa0b0a80,23, 0xa0b0b00,23, 0xa0b0b80,23, 0xa0b0c00,23, 0xa0b0c80,23, 0xa0b0d00,23, 0xa0b0d80,23, 0xa0b0e00,23, 0xa0b0e80,23, 0xa0b0f00,23, 0xa0b0f80,23, 0xa0b1000,23, 0xa0b1080,23, 0xa0b1100,23, 0xa0b1180,23, 0xa0b1200,23, 0xa0b1280,23, 0xa0b1300,23, 0xa0b1380,23, 0xa0b1400,23, 0xa0b1480,23, 0xa0b1500,23, 0xa0b1580,23, 0xa0b1600,23, 0xa0b1680,23, 0xa0b1700,23, 0xa0b1780,23, 0xa0b1800,23, 0xa0b1880,23, 0xa0b1900,23, 0xa0b1980,23, 0xa0b1a00,23, 0xa0b1a80,23, 0xa0b1b00,23, 0xa0b1b80,23, 0xa0b1c00,23, 0xa0b1c80,23, 0xa0b1d00,23, 0xa0b1d80,23, 0xa0b1e00,23, 0xa0b1e80,23, 0xa0b1f00,23, 0xa0b1f80,23, 0xa0b2000,23, 0xa0b2080,23, 0xa0b2100,23, 0xa0b2180,23, 0xa0b2200,23, 0xa0b2280,23, 0xa0b2300,23, 0xa0b2380,23, 0xa0b2400,23, 0xa0b2480,23, 0xa0b2500,23, 0xa0b2580,23, 0xa0b2600,23, 0xa0b2680,23, 0xa0b2700,23, 0xa0b2780,23, 0xa0b2800,23, 0xa0b2880,23, 0xa0b2900,23, 0xa0b2980,23, 0xa0b2a00,23, 0xa0b2a80,23, 0xa0b2b00,23, 0xa0b2b80,23, 0xa0b2c00,23, 0xa0b2c80,23, 0xa0b2d00,23, 0xa0b2d80,23, 0xa0b2e00,23, 0xa0b2e80,23, 0xa0b2f00,23, 0xa0b2f80,23, 0xa0b3000,23, 0xa0b3080,23, 0xa0b3100,23, 0xa0b3180,23, 0xa0b3200,23, 0xa0b3280,23, 0xa0b3300,23, 0xa0b3380,23, 0xa0b3400,23, 0xa0b3480,23, 0xa0b3500,23, 0xa0b3580,23, 0xa0b3600,23, 0xa0b3680,23, 0xa0b3700,23, 0xa0b3780,23, 0xa0b3800,23, 0xa0b3880,23, 0xa0b3900,23, 0xa0b3980,23, 0xa0b3a00,23, 0xa0b3a80,23, 0xa0b3b00,23, 0xa0b3b80,23, 0xa0b3c00,23, 0xa0b3c80,23, 0xa0b3d00,23, 0xa0b3d80,23, 0xa0b3e00,23, 0xa0b3e80,23, 0xa0b3f00,23, 0xa0b3f80,23, 0xa0b4000,23, 0xa0b4080,23, 0xa0b4100,23, 0xa0b4180,23, 0xa0b4200,23, 0xa0b4280,23, 0xa0b4300,23, 0xa0b4380,23, 0xa0b4400,23, 0xa0b4480,23, 0xa0b4500,23, 0xa0b4580,23, 0xa0b4600,23, 0xa0b4680,23, 0xa0b4700,23, 0xa0b4780,23, 0xa0b4800,23, 0xa0b4880,23, 0xa0b4900,23, 0xa0b4980,23, 0xa0b4a00,23, 0xa0b4a80,23, 0xa0b4b00,23, 0xa0b4b80,23, 0xa0b4c00,23, 0xa0b4c80,23, 0xa0b4d00,23, 0xa0b4d80,23, 0xa0b4e00,23, 0xa0b4e80,23, 0xa0b4f00,23, 0xa0b4f80,23, 0xa0b5000,23, 0xa0b5080,23, 0xa0b5100,23, 0xa0b5180,23, 0xa0b5200,23, 0xa0b5280,23, 0xa0b5300,23, 0xa0b5380,23, 0xa0b5400,23, 0xa0b5480,23, 0xa0b5500,23, 0xa0b5580,23, 0xa0b5600,23, 0xa0b5680,23, 0xa0b5700,23, 0xa0b5780,23, 0xa0b5800,23, 0xa0b5880,23, 0xa0b5900,23, 0xa0b5980,23, 0xa0b5a00,23, 0xa0b5a80,23, 0xa0b5b00,23, 0xa0b5b80,23, 0xa0b5c00,23, 0xa0b5c80,23, 0xa0b5d00,23, 0xa0b5d80,23, 0xa0b5e00,23, 0xa0b5e80,23, 0xa0b5f00,23, 0xa0b5f80,23, 0xa0b6000,23, 0xa0b6080,23, 0xa0b6100,23, 0xa0b6180,23, 0xa0b6200,23, 0xa0b6280,23, 0xa0b6300,23, 0xa0b6380,23, 0xa0b6400,23, 0xa0b6480,23, 0xa0b6500,23, 0xa0b6580,23, 0xa0b6600,23, 0xa0b6680,23, 0xa0b6700,23, 0xa0b6780,23, 0xa0b6800,23, 0xa0b6880,23, 0xa0b6900,23, 0xa0b6980,23, 0xa0b6a00,23, 0xa0b6a80,23, 0xa0b6b00,23, 0xa0b6b80,23, 0xa0b6c00,23, 0xa0b6c80,23, 0xa0b6d00,23, 0xa0b6d80,23, 0xa0b6e00,23, 0xa0b6e80,23, 0xa0b6f00,23, 0xa0b6f80,23, 0xa0b7000,23, 0xa0b7080,23, 0xa0b7100,23, 0xa0b7180,23, 0xa0b7200,23, 0xa0b7280,23, 0xa0b7300,23, 0xa0b7380,23, 0xa0b7400,23, 0xa0b7480,23, 0xa0b7500,23, 0xa0b7580,23, 0xa0b7600,23, 0xa0b7680,23, 0xa0b7700,23, 0xa0b7780,23, 0xa0b7800,23, 0xa0b7880,23, 0xa0b7900,23, 0xa0b7980,23, 0xa0b7a00,23, 0xa0b7a80,23, 0xa0b7b00,23, 0xa0b7b80,23, 0xa0b7c00,23, 0xa0b7c80,23, 0xa0b7d00,23, 0xa0b7d80,23, 0xa0b7e00,23, 0xa0b7e80,23, 0xa0b7f00,23, 0xa0b7f80,23, 0xa0b8000,23, 0xa0b8080,23, 0xa0b8100,23, 0xa0b8180,23, 0xa0b8200,23, 0xa0b8280,23, 0xa0b8300,23, 0xa0b8380,23, 0xa0b8400,23, 0xa0b8480,23, 0xa0b8500,23, 0xa0b8580,23, 0xa0b8600,23, 0xa0b8680,23, 0xa0b8700,23, 0xa0b8780,23, 0xa0b8800,23, 0xa0b8880,23, 0xa0b8900,23, 0xa0b8980,23, 0xa0b8a00,23, 0xa0b8a80,23, 0xa0b8b00,23, 0xa0b8b80,23, 0xa0b8c00,23, 0xa0b8c80,23, 0xa0b8d00,23, 0xa0b8d80,23, 0xa0b8e00,23, 0xa0b8e80,23, 0xa0b8f00,23, 0xa0b8f80,23, 0xa0b9000,23, 0xa0b9080,23, 0xa0b9100,23, 0xa0b9180,23, 0xa0b9200,23, 0xa0b9280,23, 0xa0b9300,23, 0xa0b9380,23, 0xa0b9400,23, 0xa0b9480,23, 0xa0b9500,23, 0xa0b9580,23, 0xa0b9600,23, 0xa0b9680,23, 0xa0b9700,23, 0xa0b9780,23, 0xa0b9800,23, 0xa0b9880,23, 0xa0b9900,23, 0xa0b9980,23, 0xa0b9a00,23, 0xa0b9a80,23, 0xa0b9b00,23, 0xa0b9b80,23, 0xa0b9c00,23, 0xa0b9c80,23, 0xa0b9d00,23, 0xa0b9d80,23, 0xa0b9e00,23, 0xa0b9e80,23, 0xa0b9f00,23, 0xa0b9f80,23, 0xa0ba000,23, 0xa0ba080,23, 0xa0ba100,23, 0xa0ba180,23, 0xa0ba200,23, 0xa0ba280,23, 0xa0ba300,23, 0xa0ba380,23, 0xa0ba400,23, 0xa0ba480,23, 0xa0ba500,23, 0xa0ba580,23, 0xa0ba600,23, 0xa0ba680,23, 0xa0ba700,23, 0xa0ba780,23, 0xa0ba800,23, 0xa0ba880,23, 0xa0ba900,23, 0xa0ba980,23, 0xa0baa00,23, 0xa0baa80,23, 0xa0bab00,23, 0xa0bab80,23, 0xa0bac00,23, 0xa0bac80,23, 0xa0bad00,23, 0xa0bad80,23, 0xa0bae00,23, 0xa0bae80,23, 0xa0baf00,23, 0xa0baf80,23, 0xa0bb000,23, 0xa0bb080,23, 0xa0bb100,23, 0xa0bb180,23, 0xa0bb200,23, 0xa0bb280,23, 0xa0bb300,23, 0xa0bb380,23, 0xa0bb400,23, 0xa0bb480,23, 0xa0bb500,23, 0xa0bb580,23, 0xa0bb600,23, 0xa0bb680,23, 0xa0bb700,23, 0xa0bb780,23, 0xa0bb800,23, 0xa0bb880,23, 0xa0bb900,23, 0xa0bb980,23, 0xa0bba00,23, 0xa0bba80,23, 0xa0bbb00,23, 0xa0bbb80,23, 0xa0bbc00,23, 0xa0bbc80,23, 0xa0bbd00,23, 0xa0bbd80,23, 0xa0bbe00,23, 0xa0bbe80,23, 0xa0bbf00,23, 0xa0bbf80,23, 0xa0bc000,23, 0xa0bc080,23, 0xa0bc100,23, 0xa0bc180,23, 0xa0bc200,23, 0xa0bc280,23, 0xa0bc300,23, 0xa0bc380,23, 0xa0bc400,23, 0xa0bc480,23, 0xa0bc500,23, 0xa0bc580,23, 0xa0bc600,23, 0xa0bc680,23, 0xa0bc700,23, 0xa0bc780,23, 0xa0bc800,23, 0xa0bc880,23, 0xa0bc900,23, 0xa0bc980,23, 0xa0bca00,23, 0xa0bca80,23, 0xa0bcb00,23, 0xa0bcb80,23, 0xa0bcc00,23, 0xa0bcc80,23, 0xa0bcd00,23, 0xa0bcd80,23, 0xa0bce00,23, 0xa0bce80,23, 0xa0bcf00,23, 0xa0bcf80,23, 0xa0bd000,23, 0xa0bd080,23, 0xa0bd100,23, 0xa0bd180,23, 0xa0bd200,23, 0xa0bd280,23, 0xa0bd300,23, 0xa0bd380,23, 0xa0bd400,23, 0xa0bd480,23, 0xa0bd500,23, 0xa0bd580,23, 0xa0bd600,23, 0xa0bd680,23, 0xa0bd700,23, 0xa0bd780,23, 0xa0bd800,23, 0xa0bd880,23, 0xa0bd900,23, 0xa0bd980,23, 0xa0bda00,23, 0xa0bda80,23, 0xa0bdb00,23, 0xa0bdb80,23, 0xa0bdc00,23, 0xa0bdc80,23, 0xa0bdd00,23, 0xa0bdd80,23, 0xa0bde00,23, 0xa0bde80,23, 0xa0bdf00,23, 0xa0bdf80,23, 0xa0be000,23, 0xa0be080,23, 0xa0be100,23, 0xa0be180,23, 0xa0be200,23, 0xa0be280,23, 0xa0be300,23, 0xa0be380,23, 0xa0be400,23, 0xa0be480,23, 0xa0be500,23, 0xa0be580,23, 0xa0be600,23, 0xa0be680,23, 0xa0be700,23, 0xa0be780,23, 0xa0be800,23, 0xa0be880,23, 0xa0be900,23, 0xa0be980,23, 0xa0bea00,23, 0xa0bea80,23, 0xa0beb00,23, 0xa0beb80,23, 0xa0bec00,23, 0xa0bec80,23, 0xa0bed00,23, 0xa0bed80,23, 0xa0bee00,23, 0xa0bee80,23, 0xa0bef00,23, 0xa0bef80,23, 0xa0bf000,23, 0xa0bf080,23, 0xa0bf100,23, 0xa0bf180,23, 0xa0bf200,23, 0xa0bf280,23, 0xa0bf300,23, 0xa0bf380,23, 0xa0bf400,23, 0xa0bf480,23, 0xa0bf500,23, 0xa0bf580,23, 0xa0bf600,23, 0xa0bf680,23, 0xa0bf700,23, 0xa0bf780,23, 0xa0bf800,23, 0xa0bf880,23, 0xa0bf900,23, 0xa0bf980,23, 0xa0bfa00,23, 0xa0bfa80,23, 0xa0bfb00,23, 0xa0bfb80,23, 0xa0bfc00,23, 0xa0bfc80,23, 0xa0bfd00,23, 0xa0bfd80,23, 0xa0bfe00,23, 0xa0bfe80,23, 0xa0bff00,23, 0xa0bff80,23, 0xa0c0000,23, 0xa0c0080,23, 0xa0c0100,23, 0xa0c0180,23, 0xa0c0200,23, 0xa0c0280,23, 0xa0c0300,23, 0xa0c0380,23, 0xa0c0400,23, 0xa0c0480,23, 0xa0c0500,23, 0xa0c0580,23, 0xa0c0600,23, 0xa0c0680,23, 0xa0c0700,23, 0xa0c0780,23, 0xa0c0800,23, 0xa0c0880,23, 0xa0c0900,23, 0xa0c0980,23, 0xa0c0a00,23, 0xa0c0a80,23, 0xa0c0b00,23, 0xa0c0b80,23, 0xa0c0c00,23, 0xa0c0c80,23, 0xa0c0d00,23, 0xa0c0d80,23, 0xa0c0e00,23, 0xa0c0e80,23, 0xa0c0f00,23, 0xa0c0f80,23, 0xa0c1000,23, 0xa0c1080,23, 0xa0c1100,23, 0xa0c1180,23, 0xa0c1200,23, 0xa0c1280,23, 0xa0c1300,23, 0xa0c1380,23, 0xa0c1400,23, 0xa0c1480,23, 0xa0c1500,23, 0xa0c1580,23, 0xa0c1600,23, 0xa0c1680,23, 0xa0c1700,23, 0xa0c1780,23, 0xa0c1800,23, 0xa0c1880,23, 0xa0c1900,23, 0xa0c1980,23, 0xa0c1a00,23, 0xa0c1a80,23, 0xa0c1b00,23, 0xa0c1b80,23, 0xa0c1c00,23, 0xa0c1c80,23, 0xa0c1d00,23, 0xa0c1d80,23, 0xa0c1e00,23, 0xa0c1e80,23, 0xa0c1f00,23, 0xa0c1f80,23, 0xa0c2000,23, 0xa0c2080,23, 0xa0c2100,23, 0xa0c2180,23, 0xa0c2200,23, 0xa0c2280,23, 0xa0c2300,23, 0xa0c2380,23, 0xa0c2400,23, 0xa0c2480,23, 0xa0c2500,23, 0xa0c2580,23, 0xa0c2600,23, 0xa0c2680,23, 0xa0c2700,23, 0xa0c2780,23, 0xa0c2800,23, 0xa0c2880,23, 0xa0c2900,23, 0xa0c2980,23, 0xa0c2a00,23, 0xa0c2a80,23, 0xa0c2b00,23, 0xa0c2b80,23, 0xa0c2c00,23, 0xa0c2c80,23, 0xa0c2d00,23, 0xa0c2d80,23, 0xa0c2e00,23, 0xa0c2e80,23, 0xa0c2f00,23, 0xa0c2f80,23, 0xa0c3000,23, 0xa0c3080,23, 0xa0c3100,23, 0xa0c3180,23, 0xa0c3200,23, 0xa0c3280,23, 0xa0c3300,23, 0xa0c3380,23, 0xa0c3400,23, 0xa0c3480,23, 0xa0c3500,23, 0xa0c3580,23, 0xa0c3600,23, 0xa0c3680,23, 0xa0c3700,23, 0xa0c3780,23, 0xa0c3800,23, 0xa0c3880,23, 0xa0c3900,23, 0xa0c3980,23, 0xa0c3a00,23, 0xa0c3a80,23, 0xa0c3b00,23, 0xa0c3b80,23, 0xa0c3c00,23, 0xa0c3c80,23, 0xa0c3d00,23, 0xa0c3d80,23, 0xa0c3e00,23, 0xa0c3e80,23, 0xa0c3f00,23, 0xa0c3f80,23, 0xa0c4000,23, 0xa0c4080,23, 0xa0c4100,23, 0xa0c4180,23, 0xa0c4200,23, 0xa0c4280,23, 0xa0c4300,23, 0xa0c4380,23, 0xa0c4400,23, 0xa0c4480,23, 0xa0c4500,23, 0xa0c4580,23, 0xa0c4600,23, 0xa0c4680,23, 0xa0c4700,23, 0xa0c4780,23, 0xa0c4800,23, 0xa0c4880,23, 0xa0c4900,23, 0xa0c4980,23, 0xa0c4a00,23, 0xa0c4a80,23, 0xa0c4b00,23, 0xa0c4b80,23, 0xa0c4c00,23, 0xa0c4c80,23, 0xa0c4d00,23, 0xa0c4d80,23, 0xa0c4e00,23, 0xa0c4e80,23, 0xa0c4f00,23, 0xa0c4f80,23, 0xa0c5000,23, 0xa0c5080,23, 0xa0c5100,23, 0xa0c5180,23, 0xa0c5200,23, 0xa0c5280,23, 0xa0c5300,23, 0xa0c5380,23, 0xa0c5400,23, 0xa0c5480,23, 0xa0c5500,23, 0xa0c5580,23, 0xa0c5600,23, 0xa0c5680,23, 0xa0c5700,23, 0xa0c5780,23, 0xa0c5800,23, 0xa0c5880,23, 0xa0c5900,23, 0xa0c5980,23, 0xa0c5a00,23, 0xa0c5a80,23, 0xa0c5b00,23, 0xa0c5b80,23, 0xa0c5c00,23, 0xa0c5c80,23, 0xa0c5d00,23, 0xa0c5d80,23, 0xa0c5e00,23, 0xa0c5e80,23, 0xa0c5f00,23, 0xa0c5f80,23, 0xa0c6000,23, 0xa0c6080,23, 0xa0c6100,23, 0xa0c6180,23, 0xa0c6200,23, 0xa0c6280,23, 0xa0c6300,23, 0xa0c6380,23, 0xa0c6400,23, 0xa0c6480,23, 0xa0c6500,23, 0xa0c6580,23, 0xa0c6600,23, 0xa0c6680,23, 0xa0c6700,23, 0xa0c6780,23, 0xa0c6800,23, 0xa0c6880,23, 0xa0c6900,23, 0xa0c6980,23, 0xa0c6a00,23, 0xa0c6a80,23, 0xa0c6b00,23, 0xa0c6b80,23, 0xa0c6c00,23, 0xa0c6c80,23, 0xa0c6d00,23, 0xa0c6d80,23, 0xa0c6e00,23, 0xa0c6e80,23, 0xa0c6f00,23, 0xa0c6f80,23, 0xa0c7000,23, 0xa0c7080,23, 0xa0c7100,23, 0xa0c7180,23, 0xa0c7200,23, 0xa0c7280,23, 0xa0c7300,23, 0xa0c7380,23, 0xa0c7400,23, 0xa0c7480,23, 0xa0c7500,23, 0xa0c7580,23, 0xa0c7600,23, 0xa0c7680,23, 0xa0c7700,23, 0xa0c7780,23, 0xa0c7800,23, 0xa0c7880,23, 0xa0c7900,23, 0xa0c7980,23, 0xa0c7a00,23, 0xa0c7a80,23, 0xa0c7b00,23, 0xa0c7b80,23, 0xa0c7c00,23, 0xa0c7c80,23, 0xa0c7d00,23, 0xa0c7d80,23, 0xa0c7e00,23, 0xa0c7e80,23, 0xa0c7f00,23, 0xa0c7f80,23, 0xa0c8000,23, 0xa0c8080,23, 0xa0c8100,23, 0xa0c8180,23, 0xa0c8200,23, 0xa0c8280,23, 0xa0c8300,23, 0xa0c8380,23, 0xa0c8400,23, 0xa0c8480,23, 0xa0c8500,23, 0xa0c8580,23, 0xa0c8600,23, 0xa0c8680,23, 0xa0c8700,23, 0xa0c8780,23, 0xa0c8800,23, 0xa0c8880,23, 0xa0c8900,23, 0xa0c8980,23, 0xa0c8a00,23, 0xa0c8a80,23, 0xa0c8b00,23, 0xa0c8b80,23, 0xa0c8c00,23, 0xa0c8c80,23, 0xa0c8d00,23, 0xa0c8d80,23, 0xa0c8e00,23, 0xa0c8e80,23, 0xa0c8f00,23, 0xa0c8f80,23, 0xa0c9000,23, 0xa0c9080,23, 0xa0c9100,23, 0xa0c9180,23, 0xa0c9200,23, 0xa0c9280,23, 0xa0c9300,23, 0xa0c9380,23, 0xa0c9400,23, 0xa0c9480,23, 0xa0c9500,23, 0xa0c9580,23, 0xa0c9600,23, 0xa0c9680,23, 0xa0c9700,23, 0xa0c9780,23, 0xa0c9800,23, 0xa0c9880,23, 0xa0c9900,23, 0xa0c9980,23, 0xa0c9a00,23, 0xa0c9a80,23, 0xa0c9b00,23, 0xa0c9b80,23, 0xa0c9c00,23, 0xa0c9c80,23, 0xa0c9d00,23, 0xa0c9d80,23, 0xa0c9e00,23, 0xa0c9e80,23, 0xa0c9f00,23, 0xa0c9f80,23, 0xa0ca000,23, 0xa0ca080,23, 0xa0ca100,23, 0xa0ca180,23, 0xa0ca200,23, 0xa0ca280,23, 0xa0ca300,23, 0xa0ca380,23, 0xa0ca400,23, 0xa0ca480,23, 0xa0ca500,23, 0xa0ca580,23, 0xa0ca600,23, 0xa0ca680,23, 0xa0ca700,23, 0xa0ca780,23, 0xa0ca800,23, 0xa0ca880,23, 0xa0ca900,23, 0xa0ca980,23, 0xa0caa00,23, 0xa0caa80,23, 0xa0cab00,23, 0xa0cab80,23, 0xa0cac00,23, 0xa0cac80,23, 0xa0cad00,23, 0xa0cad80,23, 0xa0cae00,23, 0xa0cae80,23, 0xa0caf00,23, 0xa0caf80,23, 0xa0cb000,23, 0xa0cb080,23, 0xa0cb100,23, 0xa0cb180,23, 0xa0cb200,23, 0xa0cb280,23, 0xa0cb300,23, 0xa0cb380,23, 0xa0cb400,23, 0xa0cb480,23, 0xa0cb500,23, 0xa0cb580,23, 0xa0cb600,23, 0xa0cb680,23, 0xa0cb700,23, 0xa0cb780,23, 0xa0cb800,23, 0xa0cb880,23, 0xa0cb900,23, 0xa0cb980,23, 0xa0cba00,23, 0xa0cba80,23, 0xa0cbb00,23, 0xa0cbb80,23, 0xa0cbc00,23, 0xa0cbc80,23, 0xa0cbd00,23, 0xa0cbd80,23, 0xa0cbe00,23, 0xa0cbe80,23, 0xa0cbf00,23, 0xa0cbf80,23, 0xa0cc000,23, 0xa0cc080,23, 0xa0cc100,23, 0xa0cc180,23, 0xa0cc200,23, 0xa0cc280,23, 0xa0cc300,23, 0xa0cc380,23, 0xa0cc400,23, 0xa0cc480,23, 0xa0cc500,23, 0xa0cc580,23, 0xa0cc600,23, 0xa0cc680,23, 0xa0cc700,23, 0xa0cc780,23, 0xa0cc800,23, 0xa0cc880,23, 0xa0cc900,23, 0xa0cc980,23, 0xa0cca00,23, 0xa0cca80,23, 0xa0ccb00,23, 0xa0ccb80,23, 0xa0ccc00,23, 0xa0ccc80,23, 0xa0ccd00,23, 0xa0ccd80,23, 0xa0cce00,23, 0xa0cce80,23, 0xa0ccf00,23, 0xa0ccf80,23, 0xa0cd000,23, 0xa0cd080,23, 0xa0cd100,23, 0xa0cd180,23, 0xa0cd200,23, 0xa0cd280,23, 0xa0cd300,23, 0xa0cd380,23, 0xa0cd400,23, 0xa0cd480,23, 0xa0cd500,23, 0xa0cd580,23, 0xa0cd600,23, 0xa0cd680,23, 0xa0cd700,23, 0xa0cd780,23, 0xa0cd800,23, 0xa0cd880,23, 0xa0cd900,23, 0xa0cd980,23, 0xa0cda00,23, 0xa0cda80,23, 0xa0cdb00,23, 0xa0cdb80,23, 0xa0cdc00,23, 0xa0cdc80,23, 0xa0cdd00,23, 0xa0cdd80,23, 0xa0cde00,23, 0xa0cde80,23, 0xa0cdf00,23, 0xa0cdf80,23, 0xa0ce000,23, 0xa0ce080,23, 0xa0ce100,23, 0xa0ce180,23, 0xa0ce200,23, 0xa0ce280,23, 0xa0ce300,23, 0xa0ce380,23, 0xa0ce400,23, 0xa0ce480,23, 0xa0ce500,23, 0xa0ce580,23, 0xa0ce600,23, 0xa0ce680,23, 0xa0ce700,23, 0xa0ce780,23, 0xa0ce800,23, 0xa0ce880,23, 0xa0ce900,23, 0xa0ce980,23, 0xa0cea00,23, 0xa0cea80,23, 0xa0ceb00,23, 0xa0ceb80,23, 0xa0cec00,23, 0xa0cec80,23, 0xa0ced00,23, 0xa0ced80,23, 0xa0cee00,23, 0xa0cee80,23, 0xa0cef00,23, 0xa0cef80,23, 0xa0cf000,23, 0xa0cf080,23, 0xa0cf100,23, 0xa0cf180,23, 0xa0cf200,23, 0xa0cf280,23, 0xa0cf300,23, 0xa0cf380,23, 0xa0cf400,23, 0xa0cf480,23, 0xa0cf500,23, 0xa0cf580,23, 0xa0cf600,23, 0xa0cf680,23, 0xa0cf700,23, 0xa0cf780,23, 0xa0cf800,23, 0xa0cf880,23, 0xa0cf900,23, 0xa0cf980,23, 0xa0cfa00,23, 0xa0cfa80,23, 0xa0cfb00,23, 0xa0cfb80,23, 0xa0cfc00,23, 0xa0cfc80,23, 0xa0cfd00,23, 0xa0cfd80,23, 0xa0cfe00,23, 0xa0cfe80,23, 0xa0cff00,23, 0xa0cff80,23, 0xa0d0000,23, 0xa0d0080,23, 0xa0d0100,23, 0xa0d0180,23, 0xa0d0200,23, 0xa0d0280,23, 0xa0d0300,23, 0xa0d0380,23, 0xa0d0400,23, 0xa0d0480,23, 0xa0d0500,23, 0xa0d0580,23, 0xa0d0600,23, 0xa0d0680,23, 0xa0d0700,23, 0xa0d0780,23, 0xa0d0800,23, 0xa0d0880,23, 0xa0d0900,23, 0xa0d0980,23, 0xa0d0a00,23, 0xa0d0a80,23, 0xa0d0b00,23, 0xa0d0b80,23, 0xa0d0c00,23, 0xa0d0c80,23, 0xa0d0d00,23, 0xa0d0d80,23, 0xa0d0e00,23, 0xa0d0e80,23, 0xa0d0f00,23, 0xa0d0f80,23, 0xa0d1000,23, 0xa0d1080,23, 0xa0d1100,23, 0xa0d1180,23, 0xa0d1200,23, 0xa0d1280,23, 0xa0d1300,23, 0xa0d1380,23, 0xa0d1400,23, 0xa0d1480,23, 0xa0d1500,23, 0xa0d1580,23, 0xa0d1600,23, 0xa0d1680,23, 0xa0d1700,23, 0xa0d1780,23, 0xa0d1800,23, 0xa0d1880,23, 0xa0d1900,23, 0xa0d1980,23, 0xa0d1a00,23, 0xa0d1a80,23, 0xa0d1b00,23, 0xa0d1b80,23, 0xa0d1c00,23, 0xa0d1c80,23, 0xa0d1d00,23, 0xa0d1d80,23, 0xa0d1e00,23, 0xa0d1e80,23, 0xa0d1f00,23, 0xa0d1f80,23, 0xa0d2000,23, 0xa0d2080,23, 0xa0d2100,23, 0xa0d2180,23, 0xa0d2200,23, 0xa0d2280,23, 0xa0d2300,23, 0xa0d2380,23, 0xa0d2400,23, 0xa0d2480,23, 0xa0d2500,23, 0xa0d2580,23, 0xa0d2600,23, 0xa0d2680,23, 0xa0d2700,23, 0xa0d2780,23, 0xa0d2800,23, 0xa0d2880,23, 0xa0d2900,23, 0xa0d2980,23, 0xa0d2a00,23, 0xa0d2a80,23, 0xa0d2b00,23, 0xa0d2b80,23, 0xa0d2c00,23, 0xa0d2c80,23, 0xa0d2d00,23, 0xa0d2d80,23, 0xa0d2e00,23, 0xa0d2e80,23, 0xa0d2f00,23, 0xa0d2f80,23, 0xa0d3000,23, 0xa0d3080,23, 0xa0d3100,23, 0xa0d3180,23, 0xa0d3200,23, 0xa0d3280,23, 0xa0d3300,23, 0xa0d3380,23, 0xa0d3400,23, 0xa0d3480,23, 0xa0d3500,23, 0xa0d3580,23, 0xa0d3600,23, 0xa0d3680,23, 0xa0d3700,23, 0xa0d3780,23, 0xa0d3800,23, 0xa0d3880,23, 0xa0d3900,23, 0xa0d3980,23, 0xa0d3a00,23, 0xa0d3a80,23, 0xa0d3b00,23, 0xa0d3b80,23, 0xa0d3c00,23, 0xa0d3c80,23, 0xa0d3d00,23, 0xa0d3d80,23, 0xa0d3e00,23, 0xa0d3e80,23, 0xa0d3f00,23, 0xa0d3f80,23, 0xa0d4000,23, 0xa0d4080,23, 0xa0d4100,23, 0xa0d4180,23, 0xa0d4200,23, 0xa0d4280,23, 0xa0d4300,23, 0xa0d4380,23, 0xa0d4400,23, 0xa0d4480,23, 0xa0d4500,23, 0xa0d4580,23, 0xa0d4600,23, 0xa0d4680,23, 0xa0d4700,23, 0xa0d4780,23, 0xa0d4800,23, 0xa0d4880,23, 0xa0d4900,23, 0xa0d4980,23, 0xa0d4a00,23, 0xa0d4a80,23, 0xa0d4b00,23, 0xa0d4b80,23, 0xa0d4c00,23, 0xa0d4c80,23, 0xa0d4d00,23, 0xa0d4d80,23, 0xa0d4e00,23, 0xa0d4e80,23, 0xa0d4f00,23, 0xa0d4f80,23, 0xa0d5000,23, 0xa0d5080,23, 0xa0d5100,23, 0xa0d5180,23, 0xa0d5200,23, 0xa0d5280,23, 0xa0d5300,23, 0xa0d5380,23, 0xa0d5400,23, 0xa0d5480,23, 0xa0d5500,23, 0xa0d5580,23, 0xa0d5600,23, 0xa0d5680,23, 0xa0d5700,23, 0xa0d5780,23, 0xa0d5800,23, 0xa0d5880,23, 0xa0d5900,23, 0xa0d5980,23, 0xa0d5a00,23, 0xa0d5a80,23, 0xa0d5b00,23, 0xa0d5b80,23, 0xa0d5c00,23, 0xa0d5c80,23, 0xa0d5d00,23, 0xa0d5d80,23, 0xa0d5e00,23, 0xa0d5e80,23, 0xa0d5f00,23, 0xa0d5f80,23, 0xa0d6000,23, 0xa0d6080,23, 0xa0d6100,23, 0xa0d6180,23, 0xa0d6200,23, 0xa0d6280,23, 0xa0d6300,23, 0xa0d6380,23, 0xa0d6400,23, 0xa0d6480,23, 0xa0d6500,23, 0xa0d6580,23, 0xa0d6600,23, 0xa0d6680,23, 0xa0d6700,23, 0xa0d6780,23, 0xa0d6800,23, 0xa0d6880,23, 0xa0d6900,23, 0xa0d6980,23, 0xa0d6a00,23, 0xa0d6a80,23, 0xa0d6b00,23, 0xa0d6b80,23, 0xa0d6c00,23, 0xa0d6c80,23, 0xa0d6d00,23, 0xa0d6d80,23, 0xa0d6e00,23, 0xa0d6e80,23, 0xa0d6f00,23, 0xa0d6f80,23, 0xa0d7000,23, 0xa0d7080,23, 0xa0d7100,23, 0xa0d7180,23, 0xa0d7200,23, 0xa0d7280,23, 0xa0d7300,23, 0xa0d7380,23, 0xa0d7400,23, 0xa0d7480,23, 0xa0d7500,23, 0xa0d7580,23, 0xa0d7600,23, 0xa0d7680,23, 0xa0d7700,23, 0xa0d7780,23, 0xa0d7800,23, 0xa0d7880,23, 0xa0d7900,23, 0xa0d7980,23, 0xa0d7a00,23, 0xa0d7a80,23, 0xa0d7b00,23, 0xa0d7b80,23, 0xa0d7c00,23, 0xa0d7c80,23, 0xa0d7d00,23, 0xa0d7d80,23, 0xa0d7e00,23, 0xa0d7e80,23, 0xa0d7f00,23, 0xa0d7f80,23, 0xa0d8000,23, 0xa0d8080,23, 0xa0d8100,23, 0xa0d8180,23, 0xa0d8200,23, 0xa0d8280,23, 0xa0d8300,23, 0xa0d8380,23, 0xa0d8400,23, 0xa0d8480,23, 0xa0d8500,23, 0xa0d8580,23, 0xa0d8600,23, 0xa0d8680,23, 0xa0d8700,23, 0xa0d8780,23, 0xa0d8800,23, 0xa0d8880,23, 0xa0d8900,23, 0xa0d8980,23, 0xa0d8a00,23, 0xa0d8a80,23, 0xa0d8b00,23, 0xa0d8b80,23, 0xa0d8c00,23, 0xa0d8c80,23, 0xa0d8d00,23, 0xa0d8d80,23, 0xa0d8e00,23, 0xa0d8e80,23, 0xa0d8f00,23, 0xa0d8f80,23, 0xa0d9000,23, 0xa0d9080,23, 0xa0d9100,23, 0xa0d9180,23, 0xa0d9200,23, 0xa0d9280,23, 0xa0d9300,23, 0xa0d9380,23, 0xa0d9400,23, 0xa0d9480,23, 0xa0d9500,23, 0xa0d9580,23, 0xa0d9600,23, 0xa0d9680,23, 0xa0d9700,23, 0xa0d9780,23, 0xa0d9800,23, 0xa0d9880,23, 0xa0d9900,23, 0xa0d9980,23, 0xa0d9a00,23, 0xa0d9a80,23, 0xa0d9b00,23, 0xa0d9b80,23, 0xa0d9c00,23, 0xa0d9c80,23, 0xa0d9d00,23, 0xa0d9d80,23, 0xa0d9e00,23, 0xa0d9e80,23, 0xa0d9f00,23, 0xa0d9f80,23, 0xa0da000,23, 0xa0da080,23, 0xa0da100,23, 0xa0da180,23, 0xa0da200,23, 0xa0da280,23, 0xa0da300,23, 0xa0da380,23, 0xa0da400,23, 0xa0da480,23, 0xa0da500,23, 0xa0da580,23, 0xa0da600,23, 0xa0da680,23, 0xa0da700,23, 0xa0da780,23, 0xa0da800,23, 0xa0da880,23, 0xa0da900,23, 0xa0da980,23, 0xa0daa00,23, 0xa0daa80,23, 0xa0dab00,23, 0xa0dab80,23, 0xa0dac00,23, 0xa0dac80,23, 0xa0dad00,23, 0xa0dad80,23, 0xa0dae00,23, 0xa0dae80,23, 0xa0daf00,23, 0xa0daf80,23, 0xa0db000,23, 0xa0db080,23, 0xa0db100,23, 0xa0db180,23, 0xa0db200,23, 0xa0db280,23, 0xa0db300,23, 0xa0db380,23, 0xa0db400,23, 0xa0db480,23, 0xa0db500,23, 0xa0db580,23, 0xa0db600,23, 0xa0db680,23, 0xa0db700,23, 0xa0db780,23, 0xa0db800,23, 0xa0db880,23, 0xa0db900,23, 0xa0db980,23, 0xa0dba00,23, 0xa0dba80,23, 0xa0dbb00,23, 0xa0dbb80,23, 0xa0dbc00,23, 0xa0dbc80,23, 0xa0dbd00,23, 0xa0dbd80,23, 0xa0dbe00,23, 0xa0dbe80,23, 0xa0dbf00,23, 0xa0dbf80,23, 0xa0dc000,23, 0xa0dc080,23, 0xa0dc100,23, 0xa0dc180,23, 0xa0dc200,23, 0xa0dc280,23, 0xa0dc300,23, 0xa0dc380,23, 0xa0dc400,23, 0xa0dc480,23, 0xa0dc500,23, 0xa0dc580,23, 0xa0dc600,23, 0xa0dc680,23, 0xa0dc700,23, 0xa0dc780,23, 0xa0dc800,23, 0xa0dc880,23, 0xa0dc900,23, 0xa0dc980,23, 0xa0dca00,23, 0xa0dca80,23, 0xa0dcb00,23, 0xa0dcb80,23, 0xa0dcc00,23, 0xa0dcc80,23, 0xa0dcd00,23, 0xa0dcd80,23, 0xa0dce00,23, 0xa0dce80,23, 0xa0dcf00,23, 0xa0dcf80,23, 0xa0dd000,23, 0xa0dd080,23, 0xa0dd100,23, 0xa0dd180,23, 0xa0dd200,23, 0xa0dd280,23, 0xa0dd300,23, 0xa0dd380,23, 0xa0dd400,23, 0xa0dd480,23, 0xa0dd500,23, 0xa0dd580,23, 0xa0dd600,23, 0xa0dd680,23, 0xa0dd700,23, 0xa0dd780,23, 0xa0dd800,23, 0xa0dd880,23, 0xa0dd900,23, 0xa0dd980,23, 0xa0dda00,23, 0xa0dda80,23, 0xa0ddb00,23, 0xa0ddb80,23, 0xa0ddc00,23, 0xa0ddc80,23, 0xa0ddd00,23, 0xa0ddd80,23, 0xa0dde00,23, 0xa0dde80,23, 0xa0ddf00,23, 0xa0ddf80,23, 0xa0de000,23, 0xa0de080,23, 0xa0de100,23, 0xa0de180,23, 0xa0de200,23, 0xa0de280,23, 0xa0de300,23, 0xa0de380,23, 0xa0de400,23, 0xa0de480,23, 0xa0de500,23, 0xa0de580,23, 0xa0de600,23, 0xa0de680,23, 0xa0de700,23, 0xa0de780,23, 0xa0de800,23, 0xa0de880,23, 0xa0de900,23, 0xa0de980,23, 0xa0dea00,23, 0xa0dea80,23, 0xa0deb00,23, 0xa0deb80,23, 0xa0dec00,23, 0xa0dec80,23, 0xa0ded00,23, 0xa0ded80,23, 0xa0dee00,23, 0xa0dee80,23, 0xa0def00,23, 0xa0def80,23, 0xa0df000,23, 0xa0df080,23, 0xa0df100,23, 0xa0df180,23, 0xa0df200,23, 0xa0df280,23, 0xa0df300,23, 0xa0df380,23, 0xa0df400,23, 0xa0df480,23, 0xa0df500,23, 0xa0df580,23, 0xa0df600,23, 0xa0df680,23, 0xa0df700,23, 0xa0df780,23, 0xa0df800,23, 0xa0df880,23, 0xa0df900,23, 0xa0df980,23, 0xa0dfa00,23, 0xa0dfa80,23, 0xa0dfb00,23, 0xa0dfb80,23, 0xa0dfc00,23, 0xa0dfc80,23, 0xa0dfd00,23, 0xa0dfd80,23, 0xa0dfe00,23, 0xa0dfe80,23, 0xa0dff00,23, 0xa0dff80,23, 0xa0e0000,23, 0xa0e0080,23, 0xa0e0100,23, 0xa0e0180,23, 0xa0e0200,23, 0xa0e0280,23, 0xa0e0300,23, 0xa0e0380,23, 0xa0e0400,23, 0xa0e0480,23, 0xa0e0500,23, 0xa0e0580,23, 0xa0e0600,23, 0xa0e0680,23, 0xa0e0700,23, 0xa0e0780,23, 0xa0e0800,23, 0xa0e0880,23, 0xa0e0900,23, 0xa0e0980,23, 0xa0e0a00,23, 0xa0e0a80,23, 0xa0e0b00,23, 0xa0e0b80,23, 0xa0e0c00,23, 0xa0e0c80,23, 0xa0e0d00,23, 0xa0e0d80,23, 0xa0e0e00,23, 0xa0e0e80,23, 0xa0e0f00,23, 0xa0e0f80,23, 0xa0e1000,23, 0xa0e1080,23, 0xa0e1100,23, 0xa0e1180,23, 0xa0e1200,23, 0xa0e1280,23, 0xa0e1300,23, 0xa0e1380,23, 0xa0e1400,23, 0xa0e1480,23, 0xa0e1500,23, 0xa0e1580,23, 0xa0e1600,23, 0xa0e1680,23, 0xa0e1700,23, 0xa0e1780,23, 0xa0e1800,23, 0xa0e1880,23, 0xa0e1900,23, 0xa0e1980,23, 0xa0e1a00,23, 0xa0e1a80,23, 0xa0e1b00,23, 0xa0e1b80,23, 0xa0e1c00,23, 0xa0e1c80,23, 0xa0e1d00,23, 0xa0e1d80,23, 0xa0e1e00,23, 0xa0e1e80,23, 0xa0e1f00,23, 0xa0e1f80,23, 0xa0e2000,23, 0xa0e2080,23, 0xa0e2100,23, 0xa0e2180,23, 0xa0e2200,23, 0xa0e2280,23, 0xa0e2300,23, 0xa0e2380,23, 0xa0e2400,23, 0xa0e2480,23, 0xa0e2500,23, 0xa0e2580,23, 0xa0e2600,23, 0xa0e2680,23, 0xa0e2700,23, 0xa0e2780,23, 0xa0e2800,23, 0xa0e2880,23, 0xa0e2900,23, 0xa0e2980,23, 0xa0e2a00,23, 0xa0e2a80,23, 0xa0e2b00,23, 0xa0e2b80,23, 0xa0e2c00,23, 0xa0e2c80,23, 0xa0e2d00,23, 0xa0e2d80,23, 0xa0e2e00,23, 0xa0e2e80,23, 0xa0e2f00,23, 0xa0e2f80,23, 0xa0e3000,23, 0xa0e3080,23, 0xa0e3100,23, 0xa0e3180,23, 0xa0e3200,23, 0xa0e3280,23, 0xa0e3300,23, 0xa0e3380,23, 0xa0e3400,23, 0xa0e3480,23, 0xa0e3500,23, 0xa0e3580,23, 0xa0e3600,23, 0xa0e3680,23, 0xa0e3700,23, 0xa0e3780,23, 0xa0e3800,23, 0xa0e3880,23, 0xa0e3900,23, 0xa0e3980,23, 0xa0e3a00,23, 0xa0e3a80,23, 0xa0e3b00,23, 0xa0e3b80,23, 0xa0e3c00,23, 0xa0e3c80,23, 0xa0e3d00,23, 0xa0e3d80,23, 0xa0e3e00,23, 0xa0e3e80,23, 0xa0e3f00,23, 0xa0e3f80,23, 0xa0e4000,23, 0xa0e4080,23, 0xa0e4100,23, 0xa0e4180,23, 0xa0e4200,23, 0xa0e4280,23, 0xa0e4300,23, 0xa0e4380,23, 0xa0e4400,23, 0xa0e4480,23, 0xa0e4500,23, 0xa0e4580,23, 0xa0e4600,23, 0xa0e4680,23, 0xa0e4700,23, 0xa0e4780,23, 0xa0e4800,23, 0xa0e4880,23, 0xa0e4900,23, 0xa0e4980,23, 0xa0e4a00,23, 0xa0e4a80,23, 0xa0e4b00,23, 0xa0e4b80,23, 0xa0e4c00,23, 0xa0e4c80,23, 0xa0e4d00,23, 0xa0e4d80,23, 0xa0e4e00,23, 0xa0e4e80,23, 0xa0e4f00,23, 0xa0e4f80,23, 0xa0e5000,23, 0xa0e5080,23, 0xa0e5100,23, 0xa0e5180,23, 0xa0e5200,23, 0xa0e5280,23, 0xa0e5300,23, 0xa0e5380,23, 0xa0e5400,23, 0xa0e5480,23, 0xa0e5500,23, 0xa0e5580,23, 0xa0e5600,23, 0xa0e5680,23, 0xa0e5700,23, 0xa0e5780,23, 0xa0e5800,23, 0xa0e5880,23, 0xa0e5900,23, 0xa0e5980,23, 0xa0e5a00,23, 0xa0e5a80,23, 0xa0e5b00,23, 0xa0e5b80,23, 0xa0e5c00,23, 0xa0e5c80,23, 0xa0e5d00,23, 0xa0e5d80,23, 0xa0e5e00,23, 0xa0e5e80,23, 0xa0e5f00,23, 0xa0e5f80,23, 0xa0e6000,23, 0xa0e6080,23, 0xa0e6100,23, 0xa0e6180,23, 0xa0e6200,23, 0xa0e6280,23, 0xa0e6300,23, 0xa0e6380,23, 0xa0e6400,23, 0xa0e6480,23, 0xa0e6500,23, 0xa0e6580,23, 0xa0e6600,23, 0xa0e6680,23, 0xa0e6700,23, 0xa0e6780,23, 0xa0e6800,23, 0xa0e6880,23, 0xa0e6900,23, 0xa0e6980,23, 0xa0e6a00,23, 0xa0e6a80,23, 0xa0e6b00,23, 0xa0e6b80,23, 0xa0e6c00,23, 0xa0e6c80,23, 0xa0e6d00,23, 0xa0e6d80,23, 0xa0e6e00,23, 0xa0e6e80,23, 0xa0e6f00,23, 0xa0e6f80,23, 0xa0e7000,23, 0xa0e7080,23, 0xa0e7100,23, 0xa0e7180,23, 0xa0e7200,23, 0xa0e7280,23, 0xa0e7300,23, 0xa0e7380,23, 0xa0e7400,23, 0xa0e7480,23, 0xa0e7500,23, 0xa0e7580,23, 0xa0e7600,23, 0xa0e7680,23, 0xa0e7700,23, 0xa0e7780,23, 0xa0e7800,23, 0xa0e7880,23, 0xa0e7900,23, 0xa0e7980,23, 0xa0e7a00,23, 0xa0e7a80,23, 0xa0e7b00,23, 0xa0e7b80,23, 0xa0e7c00,23, 0xa0e7c80,23, 0xa0e7d00,23, 0xa0e7d80,23, 0xa0e7e00,23, 0xa0e7e80,23, 0xa0e7f00,23, 0xa0e7f80,23, 0xa0e8000,23, 0xa0e8080,23, 0xa0e8100,23, 0xa0e8180,23, 0xa0e8200,23, 0xa0e8280,23, 0xa0e8300,23, 0xa0e8380,23, 0xa0e8400,23, 0xa0e8480,23, 0xa0e8500,23, 0xa0e8580,23, 0xa0e8600,23, 0xa0e8680,23, 0xa0e8700,23, 0xa0e8780,23, 0xa0e8800,23, 0xa0e8880,23, 0xa0e8900,23, 0xa0e8980,23, 0xa0e8a00,23, 0xa0e8a80,23, 0xa0e8b00,23, 0xa0e8b80,23, 0xa0e8c00,23, 0xa0e8c80,23, 0xa0e8d00,23, 0xa0e8d80,23, 0xa0e8e00,23, 0xa0e8e80,23, 0xa0e8f00,23, 0xa0e8f80,23, 0xa0e9000,23, 0xa0e9080,23, 0xa0e9100,23, 0xa0e9180,23, 0xa0e9200,23, 0xa0e9280,23, 0xa0e9300,23, 0xa0e9380,23, 0xa0e9400,23, 0xa0e9480,23, 0xa0e9500,23, 0xa0e9580,23, 0xa0e9600,23, 0xa0e9680,23, 0xa0e9700,23, 0xa0e9780,23, 0xa0e9800,23, 0xa0e9880,23, 0xa0e9900,23, 0xa0e9980,23, 0xa0e9a00,23, 0xa0e9a80,23, 0xa0e9b00,23, 0xa0e9b80,23, 0xa0e9c00,23, 0xa0e9c80,23, 0xa0e9d00,23, 0xa0e9d80,23, 0xa0e9e00,23, 0xa0e9e80,23, 0xa0e9f00,23, 0xa0e9f80,23, 0xa0ea000,23, 0xa0ea080,23, 0xa0ea100,23, 0xa0ea180,23, 0xa0ea200,23, 0xa0ea280,23, 0xa0ea300,23, 0xa0ea380,23, 0xa0ea400,23, 0xa0ea480,23, 0xa0ea500,23, 0xa0ea580,23, 0xa0ea600,23, 0xa0ea680,23, 0xa0ea700,23, 0xa0ea780,23, 0xa0ea800,23, 0xa0ea880,23, 0xa0ea900,23, 0xa0ea980,23, 0xa0eaa00,23, 0xa0eaa80,23, 0xa0eab00,23, 0xa0eab80,23, 0xa0eac00,23, 0xa0eac80,23, 0xa0ead00,23, 0xa0ead80,23, 0xa0eae00,23, 0xa0eae80,23, 0xa0eaf00,23, 0xa0eaf80,23, 0xa0eb000,23, 0xa0eb080,23, 0xa0eb100,23, 0xa0eb180,23, 0xa0eb200,23, 0xa0eb280,23, 0xa0eb300,23, 0xa0eb380,23, 0xa0eb400,23, 0xa0eb480,23, 0xa0eb500,23, 0xa0eb580,23, 0xa0eb600,23, 0xa0eb680,23, 0xa0eb700,23, 0xa0eb780,23, 0xa0eb800,23, 0xa0eb880,23, 0xa0eb900,23, 0xa0eb980,23, 0xa0eba00,23, 0xa0eba80,23, 0xa0ebb00,23, 0xa0ebb80,23, 0xa0ebc00,23, 0xa0ebc80,23, 0xa0ebd00,23, 0xa0ebd80,23, 0xa0ebe00,23, 0xa0ebe80,23, 0xa0ebf00,23, 0xa0ebf80,23, 0xa0ec000,23, 0xa0ec080,23, 0xa0ec100,23, 0xa0ec180,23, 0xa0ec200,23, 0xa0ec280,23, 0xa0ec300,23, 0xa0ec380,23, 0xa0ec400,23, 0xa0ec480,23, 0xa0ec500,23, 0xa0ec580,23, 0xa0ec600,23, 0xa0ec680,23, 0xa0ec700,23, 0xa0ec780,23, 0xa0ec800,23, 0xa0ec880,23, 0xa0ec900,23, 0xa0ec980,23, 0xa0eca00,23, 0xa0eca80,23, 0xa0ecb00,23, 0xa0ecb80,23, 0xa0ecc00,23, 0xa0ecc80,23, 0xa0ecd00,23, 0xa0ecd80,23, 0xa0ece00,23, 0xa0ece80,23, 0xa0ecf00,23, 0xa0ecf80,23, 0xa0ed000,23, 0xa0ed080,23, 0xa0ed100,23, 0xa0ed180,23, 0xa0ed200,23, 0xa0ed280,23, 0xa0ed300,23, 0xa0ed380,23, 0xa0ed400,23, 0xa0ed480,23, 0xa0ed500,23, 0xa0ed580,23, 0xa0ed600,23, 0xa0ed680,23, 0xa0ed700,23, 0xa0ed780,23, 0xa0ed800,23, 0xa0ed880,23, 0xa0ed900,23, 0xa0ed980,23, 0xa0eda00,23, 0xa0eda80,23, 0xa0edb00,23, 0xa0edb80,23, 0xa0edc00,23, 0xa0edc80,23, 0xa0edd00,23, 0xa0edd80,23, 0xa0ede00,23, 0xa0ede80,23, 0xa0edf00,23, 0xa0edf80,23, 0xa0ee000,23, 0xa0ee080,23, 0xa0ee100,23, 0xa0ee180,23, 0xa0ee200,23, 0xa0ee280,23, 0xa0ee300,23, 0xa0ee380,23, 0xa0ee400,23, 0xa0ee480,23, 0xa0ee500,23, 0xa0ee580,23, 0xa0ee600,23, 0xa0ee680,23, 0xa0ee700,23, 0xa0ee780,23, 0xa0ee800,23, 0xa0ee880,23, 0xa0ee900,23, 0xa0ee980,23, 0xa0eea00,23, 0xa0eea80,23, 0xa0eeb00,23, 0xa0eeb80,23, 0xa0eec00,23, 0xa0eec80,23, 0xa0eed00,23, 0xa0eed80,23, 0xa0eee00,23, 0xa0eee80,23, 0xa0eef00,23, 0xa0eef80,23, 0xa0ef000,23, 0xa0ef080,23, 0xa0ef100,23, 0xa0ef180,23, 0xa0ef200,23, 0xa0ef280,23, 0xa0ef300,23, 0xa0ef380,23, 0xa0ef400,23, 0xa0ef480,23, 0xa0ef500,23, 0xa0ef580,23, 0xa0ef600,23, 0xa0ef680,23, 0xa0ef700,23, 0xa0ef780,23, 0xa0ef800,23, 0xa0ef880,23, 0xa0ef900,23, 0xa0ef980,23, 0xa0efa00,23, 0xa0efa80,23, 0xa0efb00,23, 0xa0efb80,23, 0xa0efc00,23, 0xa0efc80,23, 0xa0efd00,23, 0xa0efd80,23, 0xa0efe00,23, 0xa0efe80,23, 0xa0eff00,23, 0xa0eff80,23, 0xa0f0000,23, 0xa0f0080,23, 0xa0f0100,23, 0xa0f0180,23, 0xa0f0200,23, 0xa0f0280,23, 0xa0f0300,23, 0xa0f0380,23, 0xa0f0400,23, 0xa0f0480,23, 0xa0f0500,23, 0xa0f0580,23, 0xa0f0600,23, 0xa0f0680,23, 0xa0f0700,23, 0xa0f0780,23, 0xa0f0800,23, 0xa0f0880,23, 0xa0f0900,23, 0xa0f0980,23, 0xa0f0a00,23, 0xa0f0a80,23, 0xa0f0b00,23, 0xa0f0b80,23, 0xa0f0c00,23, 0xa0f0c80,23, 0xa0f0d00,23, 0xa0f0d80,23, 0xa0f0e00,23, 0xa0f0e80,23, 0xa0f0f00,23, 0xa0f0f80,23, 0xa0f1000,23, 0xa0f1080,23, 0xa0f1100,23, 0xa0f1180,23, 0xa0f1200,23, 0xa0f1280,23, 0xa0f1300,23, 0xa0f1380,23, 0xa0f1400,23, 0xa0f1480,23, 0xa0f1500,23, 0xa0f1580,23, 0xa0f1600,23, 0xa0f1680,23, 0xa0f1700,23, 0xa0f1780,23, 0xa0f1800,23, 0xa0f1880,23, 0xa0f1900,23, 0xa0f1980,23, 0xa0f1a00,23, 0xa0f1a80,23, 0xa0f1b00,23, 0xa0f1b80,23, 0xa0f1c00,23, 0xa0f1c80,23, 0xa0f1d00,23, 0xa0f1d80,23, 0xa0f1e00,23, 0xa0f1e80,23, 0xa0f1f00,23, 0xa0f1f80,23, 0xa0f2000,23, 0xa0f2080,23, 0xa0f2100,23, 0xa0f2180,23, 0xa0f2200,23, 0xa0f2280,23, 0xa0f2300,23, 0xa0f2380,23, 0xa0f2400,23, 0xa0f2480,23, 0xa0f2500,23, 0xa0f2580,23, 0xa0f2600,23, 0xa0f2680,23, 0xa0f2700,23, 0xa0f2780,23, 0xa0f2800,23, 0xa0f2880,23, 0xa0f2900,23, 0xa0f2980,23, 0xa0f2a00,23, 0xa0f2a80,23, 0xa0f2b00,23, 0xa0f2b80,23, 0xa0f2c00,23, 0xa0f2c80,23, 0xa0f2d00,23, 0xa0f2d80,23, 0xa0f2e00,23, 0xa0f2e80,23, 0xa0f2f00,23, 0xa0f2f80,23, 0xa0f3000,23, 0xa0f3080,23, 0xa0f3100,23, 0xa0f3180,23, 0xa0f3200,23, 0xa0f3280,23, 0xa0f3300,23, 0xa0f3380,23, 0xa0f3400,23, 0xa0f3480,23, 0xa0f3500,23, 0xa0f3580,23, 0xa0f3600,23, 0xa0f3680,23, 0xa0f3700,23, 0xa0f3780,23, 0xa0f3800,23, 0xa0f3880,23, 0xa0f3900,23, 0xa0f3980,23, 0xa0f3a00,23, 0xa0f3a80,23, 0xa0f3b00,23, 0xa0f3b80,23, 0xa100000,23, 0xa100080,23, 0xa100100,23, 0xa100180,23, 0xa100200,23, 0xa100280,23, 0xa100300,23, 0xa100380,23, 0xa100400,23, 0xa100480,23, 0xa100500,23, 0xa100580,23, 0xa100600,23, 0xa100680,23, 0xa100700,23, 0xa100780,23, 0xa100800,23, 0xa100880,23, 0xa100900,23, 0xa100980,23, 0xa100a00,23, 0xa100a80,23, 0xa100b00,23, 0xa100b80,23, 0xa100c00,23, 0xa100c80,23, 0xa100d00,23, 0xa100d80,23, 0xa100e00,23, 0xa100e80,23, 0xa100f00,23, 0xa100f80,23, 0xa101000,23, 0xa101080,23, 0xa101100,23, 0xa101180,23, 0xa101200,23, 0xa101280,23, 0xa101300,23, 0xa101380,23, 0xa101400,23, 0xa101480,23, 0xa101500,23, 0xa101580,23, 0xa101600,23, 0xa101680,23, 0xa101700,23, 0xa101780,23, 0xa101800,23, 0xa101880,23, 0xa101900,23, 0xa101980,23, 0xa101a00,23, 0xa101a80,23, 0xa101b00,23, 0xa101b80,23, 0xa101c00,23, 0xa101c80,23, 0xa101d00,23, 0xa101d80,23, 0xa101e00,23, 0xa101e80,23, 0xa101f00,23, 0xa101f80,23, 0xa102000,23, 0xa102080,23, 0xa102100,23, 0xa102180,23, 0xa102200,23, 0xa102280,23, 0xa102300,23, 0xa102380,23, 0xa102400,23, 0xa102480,23, 0xa102500,23, 0xa102580,23, 0xa102600,23, 0xa102680,23, 0xa102700,23, 0xa102780,23, 0xa102800,23, 0xa102880,23, 0xa102900,23, 0xa102980,23, 0xa102a00,23, 0xa102a80,23, 0xa102b00,23, 0xa102b80,23, 0xa102c00,23, 0xa102c80,23, 0xa102d00,23, 0xa102d80,23, 0xa102e00,23, 0xa102e80,23, 0xa102f00,23, 0xa102f80,23, 0xa103000,23, 0xa103080,23, 0xa103100,23, 0xa103180,23, 0xa103200,23, 0xa103280,23, 0xa103300,23, 0xa103380,23, 0xa103400,23, 0xa103480,23, 0xa103500,23, 0xa103580,23, 0xa103600,23, 0xa103680,23, 0xa103700,23, 0xa103780,23, 0xa103800,23, 0xa103880,23, 0xa103900,23, 0xa103980,23, 0xa103a00,23, 0xa103a80,23, 0xa103b00,23, 0xa103b80,23, 0xa103c00,23, 0xa103c80,23, 0xa103d00,23, 0xa103d80,23, 0xa103e00,23, 0xa103e80,23, 0xa103f00,23, 0xa103f80,23, 0xa104000,23, 0xa104080,23, 0xa104100,23, 0xa104180,23, 0xa104200,23, 0xa104280,23, 0xa104300,23, 0xa104380,23, 0xa104400,23, 0xa104480,23, 0xa104500,23, 0xa104580,23, 0xa104600,23, 0xa104680,23, 0xa104700,23, 0xa104780,23, 0xa104800,23, 0xa104880,23, 0xa104900,23, 0xa104980,23, 0xa104a00,23, 0xa104a80,23, 0xa104b00,23, 0xa104b80,23, 0xa104c00,23, 0xa104c80,23, 0xa104d00,23, 0xa104d80,23, 0xa104e00,23, 0xa104e80,23, 0xa104f00,23, 0xa104f80,23, 0xa105000,23, 0xa105080,23, 0xa105100,23, 0xa105180,23, 0xa105200,23, 0xa105280,23, 0xa105300,23, 0xa105380,23, 0xa105400,23, 0xa105480,23, 0xa105500,23, 0xa105580,23, 0xa105600,23, 0xa105680,23, 0xa105700,23, 0xa105780,23, 0xa105800,23, 0xa105880,23, 0xa105900,23, 0xa105980,23, 0xa105a00,23, 0xa105a80,23, 0xa105b00,23, 0xa105b80,23, 0xa105c00,23, 0xa105c80,23, 0xa105d00,23, 0xa105d80,23, 0xa105e00,23, 0xa105e80,23, 0xa105f00,23, 0xa105f80,23, 0xa106000,23, 0xa106080,23, 0xa106100,23, 0xa106180,23, 0xa106200,23, 0xa106280,23, 0xa106300,23, 0xa106380,23, 0xa106400,23, 0xa106480,23, 0xa106500,23, 0xa106580,23, 0xa106600,23, 0xa106680,23, 0xa106700,23, 0xa106780,23, 0xa106800,23, 0xa106880,23, 0xa106900,23, 0xa106980,23, 0xa106a00,23, 0xa106a80,23, 0xa106b00,23, 0xa106b80,23, 0xa106c00,23, 0xa106c80,23, 0xa106d00,23, 0xa106d80,23, 0xa106e00,23, 0xa106e80,23, 0xa106f00,23, 0xa106f80,23, 0xa107000,23, 0xa107080,23, 0xa107100,23, 0xa107180,23, 0xa107200,23, 0xa107280,23, 0xa107300,23, 0xa107380,23, 0xa107400,23, 0xa107480,23, 0xa107500,23, 0xa107580,23, 0xa107600,23, 0xa107680,23, 0xa107700,23, 0xa107780,23, 0xa107800,23, 0xa107880,23, 0xa107900,23, 0xa107980,23, 0xa107a00,23, 0xa107a80,23, 0xa107b00,23, 0xa107b80,23, 0xa107c00,23, 0xa107c80,23, 0xa107d00,23, 0xa107d80,23, 0xa107e00,23, 0xa107e80,23, 0xa107f00,23, 0xa107f80,23, 0xa108000,23, 0xa108080,23, 0xa108100,23, 0xa108180,23, 0xa108200,23, 0xa108280,23, 0xa108300,23, 0xa108380,23, 0xa108400,23, 0xa108480,23, 0xa108500,23, 0xa108580,23, 0xa108600,23, 0xa108680,23, 0xa108700,23, 0xa108780,23, 0xa108800,23, 0xa108880,23, 0xa108900,23, 0xa108980,23, 0xa108a00,23, 0xa108a80,23, 0xa108b00,23, 0xa108b80,23, 0xa108c00,23, 0xa108c80,23, 0xa108d00,23, 0xa108d80,23, 0xa108e00,23, 0xa108e80,23, 0xa108f00,23, 0xa108f80,23, 0xa109000,23, 0xa109080,23, 0xa109100,23, 0xa109180,23, 0xa109200,23, 0xa109280,23, 0xa109300,23, 0xa109380,23, 0xa109400,23, 0xa109480,23, 0xa109500,23, 0xa109580,23, 0xa109600,23, 0xa109680,23, 0xa109700,23, 0xa109780,23, 0xa109800,23, 0xa109880,23, 0xa109900,23, 0xa109980,23, 0xa109a00,23, 0xa109a80,23, 0xa109b00,23, 0xa109b80,23, 0xa109c00,23, 0xa109c80,23, 0xa109d00,23, 0xa109d80,23, 0xa109e00,23, 0xa109e80,23, 0xa109f00,23, 0xa109f80,23, 0xa10a000,23, 0xa10a080,23, 0xa10a100,23, 0xa10a180,23, 0xa10a200,23, 0xa10a280,23, 0xa10a300,23, 0xa10a380,23, 0xa10a400,23, 0xa10a480,23, 0xa10a500,23, 0xa10a580,23, 0xa10a600,23, 0xa10a680,23, 0xa10a700,23, 0xa10a780,23, 0xa10a800,23, 0xa10a880,23, 0xa10a900,23, 0xa10a980,23, 0xa10aa00,23, 0xa10aa80,23, 0xa10ab00,23, 0xa10ab80,23, 0xa10ac00,23, 0xa10ac80,23, 0xa10ad00,23, 0xa10ad80,23, 0xa10ae00,23, 0xa10ae80,23, 0xa10af00,23, 0xa10af80,23, 0xa10b000,23, 0xa10b080,23, 0xa10b100,23, 0xa10b180,23, 0xa10b200,23, 0xa10b280,23, 0xa10b300,23, 0xa10b380,23, 0xa10b400,23, 0xa10b480,23, 0xa10b500,23, 0xa10b580,23, 0xa10b600,23, 0xa10b680,23, 0xa10b700,23, 0xa10b780,23, 0xa10b800,23, 0xa10b880,23, 0xa10b900,23, 0xa10b980,23, 0xa10ba00,23, 0xa10ba80,23, 0xa10bb00,23, 0xa10bb80,23, 0xa10bc00,23, 0xa10bc80,23, 0xa10bd00,23, 0xa10bd80,23, 0xa10be00,23, 0xa10be80,23, 0xa10bf00,23, 0xa10bf80,23, 0xa10c000,23, 0xa10c080,23, 0xa10c100,23, 0xa10c180,23, 0xa10c200,23, 0xa10c280,23, 0xa10c300,23, 0xa10c380,23, 0xa10c400,23, 0xa10c480,23, 0xa10c500,23, 0xa10c580,23, 0xa10c600,23, 0xa10c680,23, 0xa10c700,23, 0xa10c780,23, 0xa10c800,23, 0xa10c880,23, 0xa10c900,23, 0xa10c980,23, 0xa10ca00,23, 0xa10ca80,23, 0xa10cb00,23, 0xa10cb80,23, 0xa10cc00,23, 0xa10cc80,23, 0xa10cd00,23, 0xa10cd80,23, 0xa10ce00,23, 0xa10ce80,23, 0xa10cf00,23, 0xa10cf80,23, 0xa10d000,23, 0xa10d080,23, 0xa10d100,23, 0xa10d180,23, 0xa10d200,23, 0xa10d280,23, 0xa10d300,23, 0xa10d380,23, 0xa10d400,23, 0xa10d480,23, 0xa10d500,23, 0xa10d580,23, 0xa10d600,23, 0xa10d680,23, 0xa10d700,23, 0xa10d780,23, 0xa10d800,23, 0xa10d880,23, 0xa10d900,23, 0xa10d980,23, 0xa10da00,23, 0xa10da80,23, 0xa10db00,23, 0xa10db80,23, 0xa10dc00,23, 0xa10dc80,23, 0xa10dd00,23, 0xa10dd80,23, 0xa10de00,23, 0xa10de80,23, 0xa10df00,23, 0xa10df80,23, 0xa10e000,23, 0xa10e080,23, 0xa10e100,23, 0xa10e180,23, 0xa10e200,23, 0xa10e280,23, 0xa10e300,23, 0xa10e380,23, 0xa10e400,23, 0xa10e480,23, 0xa10e500,23, 0xa10e580,23, 0xa10e600,23, 0xa10e680,23, 0xa10e700,23, 0xa10e780,23, 0xa10e800,23, 0xa10e880,23, 0xa10e900,23, 0xa10e980,23, 0xa10ea00,23, 0xa10ea80,23, 0xa10eb00,23, 0xa10eb80,23, 0xa10ec00,23, 0xa10ec80,23, 0xa10ed00,23, 0xa10ed80,23, 0xa10ee00,23, 0xa10ee80,23, 0xa10ef00,23, 0xa10ef80,23, 0xa10f000,23, 0xa10f080,23, 0xa10f100,23, 0xa10f180,23, 0xa10f200,23, 0xa10f280,23, 0xa10f300,23, 0xa10f380,23, 0xa10f400,23, 0xa10f480,23, 0xa10f500,23, 0xa10f580,23, 0xa10f600,23, 0xa10f680,23, 0xa10f700,23, 0xa10f780,23, 0xa10f800,23, 0xa10f880,23, 0xa10f900,23, 0xa10f980,23, 0xa10fa00,23, 0xa10fa80,23, 0xa10fb00,23, 0xa10fb80,23, 0xa10fc00,23, 0xa10fc80,23, 0xa10fd00,23, 0xa10fd80,23, 0xa10fe00,23, 0xa10fe80,23, 0xa10ff00,23, 0xa10ff80,23, 0xa110000,23, 0xa110080,23, 0xa110100,23, 0xa110180,23, 0xa110200,23, 0xa110280,23, 0xa110300,23, 0xa110380,23, 0xa110400,23, 0xa110480,23, 0xa110500,23, 0xa110580,23, 0xa110600,23, 0xa110680,23, 0xa110700,23, 0xa110780,23, 0xa110800,23, 0xa110880,23, 0xa110900,23, 0xa110980,23, 0xa110a00,23, 0xa110a80,23, 0xa110b00,23, 0xa110b80,23, 0xa110c00,23, 0xa110c80,23, 0xa110d00,23, 0xa110d80,23, 0xa110e00,23, 0xa110e80,23, 0xa110f00,23, 0xa110f80,23, 0xa111000,23, 0xa111080,23, 0xa111100,23, 0xa111180,23, 0xa111200,23, 0xa111280,23, 0xa111300,23, 0xa111380,23, 0xa111400,23, 0xa111480,23, 0xa111500,23, 0xa111580,23, 0xa111600,23, 0xa111680,23, 0xa111700,23, 0xa111780,23, 0xa111800,23, 0xa111880,23, 0xa111900,23, 0xa111980,23, 0xa111a00,23, 0xa111a80,23, 0xa111b00,23, 0xa111b80,23, 0xa111c00,23, 0xa111c80,23, 0xa111d00,23, 0xa111d80,23, 0xa111e00,23, 0xa111e80,23, 0xa111f00,23, 0xa111f80,23, 0xa112000,23, 0xa112080,23, 0xa112100,23, 0xa112180,23, 0xa112200,23, 0xa112280,23, 0xa112300,23, 0xa112380,23, 0xa112400,23, 0xa112480,23, 0xa112500,23, 0xa112580,23, 0xa112600,23, 0xa112680,23, 0xa112700,23, 0xa112780,23, 0xa112800,23, 0xa112880,23, 0xa112900,23, 0xa112980,23, 0xa112a00,23, 0xa112a80,23, 0xa112b00,23, 0xa112b80,23, 0xa112c00,23, 0xa112c80,23, 0xa112d00,23, 0xa112d80,23, 0xa112e00,23, 0xa112e80,23, 0xa112f00,23, 0xa112f80,23, 0xa113000,23, 0xa113080,23, 0xa113100,23, 0xa113180,23, 0xa113200,23, 0xa113280,23, 0xa113300,23, 0xa113380,23, 0xa113400,23, 0xa113480,23, 0xa113500,23, 0xa113580,23, 0xa113600,23, 0xa113680,23, 0xa113700,23, 0xa113780,23, 0xa113800,23, 0xa113880,23, 0xa113900,23, 0xa113980,23, 0xa113a00,23, 0xa113a80,23, 0xa113b00,23, 0xa113b80,23, 0xa113c00,23, 0xa113c80,23, 0xa113d00,23, 0xa113d80,23, 0xa113e00,23, 0xa113e80,23, 0xa113f00,23, 0xa113f80,23, 0xa114000,23, 0xa114080,23, 0xa114100,23, 0xa114180,23, 0xa114200,23, 0xa114280,23, 0xa114300,23, 0xa114380,23, 0xa114400,23, 0xa114480,23, 0xa114500,23, 0xa114580,23, 0xa114600,23, 0xa114680,23, 0xa114700,23, 0xa114780,23, 0xa114800,23, 0xa114880,23, 0xa114900,23, 0xa114980,23, 0xa114a00,23, 0xa114a80,23, 0xa114b00,23, 0xa114b80,23, 0xa114c00,23, 0xa114c80,23, 0xa114d00,23, 0xa114d80,23, 0xa114e00,23, 0xa114e80,23, 0xa114f00,23, 0xa114f80,23, 0xa115000,23, 0xa115080,23, 0xa115100,23, 0xa115180,23, 0xa115200,23, 0xa115280,23, 0xa115300,23, 0xa115380,23, 0xa115400,23, 0xa115480,23, 0xa115500,23, 0xa115580,23, 0xa115600,23, 0xa115680,23, 0xa115700,23, 0xa115780,23, 0xa115800,23, 0xa115880,23, 0xa115900,23, 0xa115980,23, 0xa115a00,23, 0xa115a80,23, 0xa115b00,23, 0xa115b80,23, 0xa115c00,23, 0xa115c80,23, 0xa115d00,23, 0xa115d80,23, 0xa115e00,23, 0xa115e80,23, 0xa115f00,23, 0xa115f80,23, 0xa116000,23, 0xa116080,23, 0xa116100,23, 0xa116180,23, 0xa116200,23, 0xa116280,23, 0xa116300,23, 0xa116380,23, 0xa116400,23, 0xa116480,23, 0xa116500,23, 0xa116580,23, 0xa116600,23, 0xa116680,23, 0xa116700,23, 0xa116780,23, 0xa116800,23, 0xa116880,23, 0xa116900,23, 0xa116980,23, 0xa116a00,23, 0xa116a80,23, 0xa116b00,23, 0xa116b80,23, 0xa116c00,23, 0xa116c80,23, 0xa116d00,23, 0xa116d80,23, 0xa116e00,23, 0xa116e80,23, 0xa116f00,23, 0xa116f80,23, 0xa117000,23, 0xa117080,23, 0xa117100,23, 0xa117180,23, 0xa117200,23, 0xa117280,23, 0xa117300,23, 0xa117380,23, 0xa117400,23, 0xa117480,23, 0xa117500,23, 0xa117580,23, 0xa117600,23, 0xa117680,23, 0xa117700,23, 0xa117780,23, 0xa117800,23, 0xa117880,23, 0xa117900,23, 0xa117980,23, 0xa117a00,23, 0xa117a80,23, 0xa117b00,23, 0xa117b80,23, 0xa117c00,23, 0xa117c80,23, 0xa117d00,23, 0xa117d80,23, 0xa117e00,23, 0xa117e80,23, 0xa117f00,23, 0xa117f80,23, 0xa118000,23, 0xa118080,23, 0xa118100,23, 0xa118180,23, 0xa118200,23, 0xa118280,23, 0xa118300,23, 0xa118380,23, 0xa118400,23, 0xa118480,23, 0xa118500,23, 0xa118580,23, 0xa118600,23, 0xa118680,23, 0xa118700,23, 0xa118780,23, 0xa118800,23, 0xa118880,23, 0xa118900,23, 0xa118980,23, 0xa118a00,23, 0xa118a80,23, 0xa118b00,23, 0xa118b80,23, 0xa118c00,23, 0xa118c80,23, 0xa118d00,23, 0xa118d80,23, 0xa118e00,23, 0xa118e80,23, 0xa118f00,23, 0xa118f80,23, 0xa119000,23, 0xa119080,23, 0xa119100,23, 0xa119180,23, 0xa119200,23, 0xa119280,23, 0xa119300,23, 0xa119380,23, 0xa119400,23, 0xa119480,23, 0xa119500,23, 0xa119580,23, 0xa119600,23, 0xa119680,23, 0xa119700,23, 0xa119780,23, 0xa119800,23, 0xa119880,23, 0xa119900,23, 0xa119980,23, 0xa119a00,23, 0xa119a80,23, 0xa119b00,23, 0xa119b80,23, 0xa119c00,23, 0xa119c80,23, 0xa119d00,23, 0xa119d80,23, 0xa119e00,23, 0xa119e80,23, 0xa119f00,23, 0xa119f80,23, 0xa11a000,23, 0xa11a080,23, 0xa11a100,23, 0xa11a180,23, 0xa11a200,23, 0xa11a280,23, 0xa11a300,23, 0xa11a380,23, 0xa11a400,23, 0xa11a480,23, 0xa11a500,23, 0xa11a580,23, 0xa11a600,23, 0xa11a680,23, 0xa11a700,23, 0xa11a780,23, 0xa11a800,23, 0xa11a880,23, 0xa11a900,23, 0xa11a980,23, 0xa11aa00,23, 0xa11aa80,23, 0xa11ab00,23, 0xa11ab80,23, 0xa11ac00,23, 0xa11ac80,23, 0xa11ad00,23, 0xa11ad80,23, 0xa11ae00,23, 0xa11ae80,23, 0xa11af00,23, 0xa11af80,23, 0xa11b000,23, 0xa11b080,23, 0xa11b100,23, 0xa11b180,23, 0xa11b200,23, 0xa11b280,23, 0xa11b300,23, 0xa11b380,23, 0xa11b400,23, 0xa11b480,23, 0xa11b500,23, 0xa11b580,23, 0xa11b600,23, 0xa11b680,23, 0xa11b700,23, 0xa11b780,23, 0xa11b800,23, 0xa11b880,23, 0xa11b900,23, 0xa11b980,23, 0xa11ba00,23, 0xa11ba80,23, 0xa11bb00,23, 0xa11bb80,23, 0xa11bc00,23, 0xa11bc80,23, 0xa11bd00,23, 0xa11bd80,23, 0xa11be00,23, 0xa11be80,23, 0xa11bf00,23, 0xa11bf80,23, 0xa11c000,23, 0xa11c080,23, 0xa11c100,23, 0xa11c180,23, 0xa11c200,23, 0xa11c280,23, 0xa11c300,23, 0xa11c380,23, 0xa11c400,23, 0xa11c480,23, 0xa11c500,23, 0xa11c580,23, 0xa11c600,23, 0xa11c680,23, 0xa11c700,23, 0xa11c780,23, 0xa11c800,23, 0xa11c880,23, 0xa11c900,23, 0xa11c980,23, 0xa11ca00,23, 0xa11ca80,23, 0xa11cb00,23, 0xa11cb80,23, 0xa11cc00,23, 0xa11cc80,23, 0xa11cd00,23, 0xa11cd80,23, 0xa11ce00,23, 0xa11ce80,23, 0xa11cf00,23, 0xa11cf80,23, 0xa11d000,23, 0xa11d080,23, 0xa11d100,23, 0xa11d180,23, 0xa11d200,23, 0xa11d280,23, 0xa11d300,23, 0xa11d380,23, 0xa11d400,23, 0xa11d480,23, 0xa11d500,23, 0xa11d580,23, 0xa11d600,23, 0xa11d680,23, 0xa11d700,23, 0xa11d780,23, 0xa11d800,23, 0xa11d880,23, 0xa11d900,23, 0xa11d980,23, 0xa11da00,23, 0xa11da80,23, 0xa11db00,23, 0xa11db80,23, 0xa11dc00,23, 0xa11dc80,23, 0xa11dd00,23, 0xa11dd80,23, 0xa11de00,23, 0xa11de80,23, 0xa11df00,23, 0xa11df80,23, 0xa11e000,23, 0xa11e080,23, 0xa11e100,23, 0xa11e180,23, 0xa11e200,23, 0xa11e280,23, 0xa11e300,23, 0xa11e380,23, 0xa11e400,23, 0xa11e480,23, 0xa11e500,23, 0xa11e580,23, 0xa11e600,23, 0xa11e680,23, 0xa11e700,23, 0xa11e780,23, 0xa11e800,23, 0xa11e880,23, 0xa11e900,23, 0xa11e980,23, 0xa11ea00,23, 0xa11ea80,23, 0xa11eb00,23, 0xa11eb80,23, 0xa11ec00,23, 0xa11ec80,23, 0xa11ed00,23, 0xa11ed80,23, 0xa11ee00,23, 0xa11ee80,23, 0xa11ef00,23, 0xa11ef80,23, 0xa11f000,23, 0xa11f080,23, 0xa11f100,23, 0xa11f180,23, 0xa11f200,23, 0xa11f280,23, 0xa11f300,23, 0xa11f380,23, 0xa11f400,23, 0xa11f480,23, 0xa11f500,23, 0xa11f580,23, 0xa11f600,23, 0xa11f680,23, 0xa11f700,23, 0xa11f780,23, 0xa11f800,23, 0xa11f880,23, 0xa11f900,23, 0xa11f980,23, 0xa11fa00,23, 0xa11fa80,23, 0xa11fb00,23, 0xa11fb80,23, 0xa11fc00,23, 0xa11fc80,23, 0xa11fd00,23, 0xa11fd80,23, 0xa11fe00,23, 0xa11fe80,23, 0xa11ff00,23, 0xa11ff80,23, 0xa120000,23, 0xa120080,23, 0xa120100,23, 0xa120180,23, 0xa120200,23, 0xa120280,23, 0xa120300,23, 0xa120380,23, 0xa120400,23, 0xa120480,23, 0xa120500,23, 0xa120580,23, 0xa120600,23, 0xa120680,23, 0xa120700,23, 0xa120780,23, 0xa120800,23, 0xa120880,23, 0xa120900,23, 0xa120980,23, 0xa120a00,23, 0xa120a80,23, 0xa120b00,23, 0xa120b80,23, 0xa120c00,23, 0xa120c80,23, 0xa120d00,23, 0xa120d80,23, 0xa120e00,23, 0xa120e80,23, 0xa120f00,23, 0xa120f80,23, 0xa121000,23, 0xa121080,23, 0xa121100,23, 0xa121180,23, 0xa121200,23, 0xa121280,23, 0xa121300,23, 0xa121380,23, 0xa121400,23, 0xa121480,23, 0xa121500,23, 0xa121580,23, 0xa121600,23, 0xa121680,23, 0xa121700,23, 0xa121780,23, 0xa121800,23, 0xa121880,23, 0xa121900,23, 0xa121980,23, 0xa121a00,23, 0xa121a80,23, 0xa121b00,23, 0xa121b80,23, 0xa121c00,23, 0xa121c80,23, 0xa121d00,23, 0xa121d80,23, 0xa121e00,23, 0xa121e80,23, 0xa121f00,23, 0xa121f80,23, 0xa122000,23, 0xa122080,23, 0xa122100,23, 0xa122180,23, 0xa122200,23, 0xa122280,23, 0xa122300,23, 0xa122380,23, 0xa122400,23, 0xa122480,23, 0xa122500,23, 0xa122580,23, 0xa122600,23, 0xa122680,23, 0xa122700,23, 0xa122780,23, 0xa122800,23, 0xa122880,23, 0xa122900,23, 0xa122980,23, 0xa122a00,23, 0xa122a80,23, 0xa122b00,23, 0xa122b80,23, 0xa122c00,23, 0xa122c80,23, 0xa122d00,23, 0xa122d80,23, 0xa122e00,23, 0xa122e80,23, 0xa122f00,23, 0xa122f80,23, 0xa123000,23, 0xa123080,23, 0xa123100,23, 0xa123180,23, 0xa123200,23, 0xa123280,23, 0xa123300,23, 0xa123380,23, 0xa123400,23, 0xa123480,23, 0xa123500,23, 0xa123580,23, 0xa123600,23, 0xa123680,23, 0xa123700,23, 0xa123780,23, 0xa123800,23, 0xa123880,23, 0xa123900,23, 0xa123980,23, 0xa123a00,23, 0xa123a80,23, 0xa123b00,23, 0xa123b80,23, 0xa123c00,23, 0xa123c80,23, 0xa123d00,23, 0xa123d80,23, 0xa123e00,23, 0xa123e80,23, 0xa123f00,23, 0xa123f80,23, 0xa124000,23, 0xa124080,23, 0xa124100,23, 0xa124180,23, 0xa124200,23, 0xa124280,23, 0xa124300,23, 0xa124380,23, 0xa124400,23, 0xa124480,23, 0xa124500,23, 0xa124580,23, 0xa124600,23, 0xa124680,23, 0xa124700,23, 0xa124780,23, 0xa124800,23, 0xa124880,23, 0xa124900,23, 0xa124980,23, 0xa124a00,23, 0xa124a80,23, 0xa124b00,23, 0xa124b80,23, 0xa124c00,23, 0xa124c80,23, 0xa124d00,23, 0xa124d80,23, 0xa124e00,23, 0xa124e80,23, 0xa124f00,23, 0xa124f80,23, 0xa125000,23, 0xa125080,23, 0xa125100,23, 0xa125180,23, 0xa125200,23, 0xa125280,23, 0xa125300,23, 0xa125380,23, 0xa125400,23, 0xa125480,23, 0xa125500,23, 0xa125580,23, 0xa125600,23, 0xa125680,23, 0xa125700,23, 0xa125780,23, 0xa125800,23, 0xa125880,23, 0xa125900,23, 0xa125980,23, 0xa125a00,23, 0xa125a80,23, 0xa125b00,23, 0xa125b80,23, 0xa125c00,23, 0xa125c80,23, 0xa125d00,23, 0xa125d80,23, 0xa125e00,23, 0xa125e80,23, 0xa125f00,23, 0xa125f80,23, 0xa126000,23, 0xa126080,23, 0xa126100,23, 0xa126180,23, 0xa126200,23, 0xa126280,23, 0xa126300,23, 0xa126380,23, 0xa126400,23, 0xa126480,23, 0xa126500,23, 0xa126580,23, 0xa126600,23, 0xa126680,23, 0xa126700,23, 0xa126780,23, 0xa126800,23, 0xa126880,23, 0xa126900,23, 0xa126980,23, 0xa126a00,23, 0xa126a80,23, 0xa126b00,23, 0xa126b80,23, 0xa126c00,23, 0xa126c80,23, 0xa126d00,23, 0xa126d80,23, 0xa126e00,23, 0xa126e80,23, 0xa126f00,23, 0xa126f80,23, 0xa127000,23, 0xa127080,23, 0xa127100,23, 0xa127180,23, 0xa127200,23, 0xa127280,23, 0xa127300,23, 0xa127380,23, 0xa127400,23, 0xa127480,23, 0xa127500,23, 0xa127580,23, 0xa127600,23, 0xa127680,23, 0xa127700,23, 0xa127780,23, 0xa127800,23, 0xa127880,23, 0xa127900,23, 0xa127980,23, 0xa127a00,23, 0xa127a80,23, 0xa127b00,23, 0xa127b80,23, 0xa127c00,23, 0xa127c80,23, 0xa127d00,23, 0xa127d80,23, 0xa127e00,23, 0xa127e80,23, 0xa127f00,23, 0xa127f80,23, 0xa128000,23, 0xa128080,23, 0xa128100,23, 0xa128180,23, 0xa128200,23, 0xa128280,23, 0xa128300,23, 0xa128380,23, 0xa128400,23, 0xa128480,23, 0xa128500,23, 0xa128580,23, 0xa128600,23, 0xa128680,23, 0xa128700,23, 0xa128780,23, 0xa128800,23, 0xa128880,23, 0xa128900,23, 0xa128980,23, 0xa128a00,23, 0xa128a80,23, 0xa128b00,23, 0xa128b80,23, 0xa128c00,23, 0xa128c80,23, 0xa128d00,23, 0xa128d80,23, 0xa128e00,23, 0xa128e80,23, 0xa128f00,23, 0xa128f80,23, 0xa129000,23, 0xa129080,23, 0xa129100,23, 0xa129180,23, 0xa129200,23, 0xa129280,23, 0xa129300,23, 0xa129380,23, 0xa129400,23, 0xa129480,23, 0xa129500,23, 0xa129580,23, 0xa129600,23, 0xa129680,23, 0xa129700,23, 0xa129780,23, 0xa129800,23, 0xa129880,23, 0xa129900,23, 0xa129980,23, 0xa129a00,23, 0xa129a80,23, 0xa129b00,23, 0xa129b80,23, 0xa129c00,23, 0xa129c80,23, 0xa129d00,23, 0xa129d80,23, 0xa129e00,23, 0xa129e80,23, 0xa129f00,23, 0xa129f80,23, 0xa12a000,23, 0xa12a080,23, 0xa12a100,23, 0xa12a180,23, 0xa12a200,23, 0xa12a280,23, 0xa12a300,23, 0xa12a380,23, 0xa12a400,23, 0xa12a480,23, 0xa12a500,23, 0xa12a580,23, 0xa12a600,23, 0xa12a680,23, 0xa12a700,23, 0xa12a780,23, 0xa12a800,23, 0xa12a880,23, 0xa12a900,23, 0xa12a980,23, 0xa12aa00,23, 0xa12aa80,23, 0xa12ab00,23, 0xa12ab80,23, 0xa12ac00,23, 0xa12ac80,23, 0xa12ad00,23, 0xa12ad80,23, 0xa12ae00,23, 0xa12ae80,23, 0xa12af00,23, 0xa12af80,23, 0xa12b000,23, 0xa12b080,23, 0xa12b100,23, 0xa12b180,23, 0xa12b200,23, 0xa12b280,23, 0xa12b300,23, 0xa12b380,23, 0xa12b400,23, 0xa12b480,23, 0xa12b500,23, 0xa12b580,23, 0xa12b600,23, 0xa12b680,23, 0xa12b700,23, 0xa12b780,23, 0xa12b800,23, 0xa12b880,23, 0xa12b900,23, 0xa12b980,23, 0xa12ba00,23, 0xa12ba80,23, 0xa12bb00,23, 0xa12bb80,23, 0xa12bc00,23, 0xa12bc80,23, 0xa12bd00,23, 0xa12bd80,23, 0xa12be00,23, 0xa12be80,23, 0xa12bf00,23, 0xa12bf80,23, 0xa12c000,23, 0xa12c080,23, 0xa12c100,23, 0xa12c180,23, 0xa12c200,23, 0xa12c280,23, 0xa12c300,23, 0xa12c380,23, 0xa12c400,23, 0xa12c480,23, 0xa12c500,23, 0xa12c580,23, 0xa12c600,23, 0xa12c680,23, 0xa12c700,23, 0xa12c780,23, 0xa12c800,23, 0xa12c880,23, 0xa12c900,23, 0xa12c980,23, 0xa12ca00,23, 0xa12ca80,23, 0xa12cb00,23, 0xa12cb80,23, 0xa12cc00,23, 0xa12cc80,23, 0xa12cd00,23, 0xa12cd80,23, 0xa12ce00,23, 0xa12ce80,23, 0xa12cf00,23, 0xa12cf80,23, 0xa12d000,23, 0xa12d080,23, 0xa12d100,23, 0xa12d180,23, 0xa12d200,23, 0xa12d280,23, 0xa12d300,23, 0xa12d380,23, 0xa12d400,23, 0xa12d480,23, 0xa12d500,23, 0xa12d580,23, 0xa12d600,23, 0xa12d680,23, 0xa12d700,23, 0xa12d780,23, 0xa12d800,23, 0xa12d880,23, 0xa12d900,23, 0xa12d980,23, 0xa12da00,23, 0xa12da80,23, 0xa12db00,23, 0xa12db80,23, 0xa12dc00,23, 0xa12dc80,23, 0xa12dd00,23, 0xa12dd80,23, 0xa12de00,23, 0xa12de80,23, 0xa12df00,23, 0xa12df80,23, 0xa12e000,23, 0xa12e080,23, 0xa12e100,23, 0xa12e180,23, 0xa12e200,23, 0xa12e280,23, 0xa12e300,23, 0xa12e380,23, 0xa12e400,23, 0xa12e480,23, 0xa12e500,23, 0xa12e580,23, 0xa12e600,23, 0xa12e680,23, 0xa12e700,23, 0xa12e780,23, 0xa12e800,23, 0xa12e880,23, 0xa12e900,23, 0xa12e980,23, 0xa12ea00,23, 0xa12ea80,23, 0xa12eb00,23, 0xa12eb80,23, 0xa12ec00,23, 0xa12ec80,23, 0xa12ed00,23, 0xa12ed80,23, 0xa12ee00,23, 0xa12ee80,23, 0xa12ef00,23, 0xa12ef80,23, 0xa12f000,23, 0xa12f080,23, 0xa12f100,23, 0xa12f180,23, 0xa12f200,23, 0xa12f280,23, 0xa12f300,23, 0xa12f380,23, 0xa12f400,23, 0xa12f480,23, 0xa12f500,23, 0xa12f580,23, 0xa12f600,23, 0xa12f680,23, 0xa12f700,23, 0xa12f780,23, 0xa12f800,23, 0xa12f880,23, 0xa12f900,23, 0xa12f980,23, 0xa12fa00,23, 0xa12fa80,23, 0xa12fb00,23, 0xa12fb80,23, 0xa12fc00,23, 0xa12fc80,23, 0xa12fd00,23, 0xa12fd80,23, 0xa12fe00,23, 0xa12fe80,23, 0xa12ff00,23, 0xa12ff80,23, 0xa130000,23, 0xa130080,23, 0xa130100,23, 0xa130180,23, 0xa130200,23, 0xa130280,23, 0xa130300,23, 0xa130380,23, 0xa130400,23, 0xa130480,23, 0xa130500,23, 0xa130580,23, 0xa130600,23, 0xa130680,23, 0xa130700,23, 0xa130780,23, 0xa130800,23, 0xa130880,23, 0xa130900,23, 0xa130980,23, 0xa130a00,23, 0xa130a80,23, 0xa130b00,23, 0xa130b80,23, 0xa130c00,23, 0xa130c80,23, 0xa130d00,23, 0xa130d80,23, 0xa130e00,23, 0xa130e80,23, 0xa130f00,23, 0xa130f80,23, 0xa131000,23, 0xa131080,23, 0xa131100,23, 0xa131180,23, 0xa131200,23, 0xa131280,23, 0xa131300,23, 0xa131380,23, 0xa131400,23, 0xa131480,23, 0xa131500,23, 0xa131580,23, 0xa131600,23, 0xa131680,23, 0xa131700,23, 0xa131780,23, 0xa131800,23, 0xa131880,23, 0xa131900,23, 0xa131980,23, 0xa131a00,23, 0xa131a80,23, 0xa131b00,23, 0xa131b80,23, 0xa131c00,23, 0xa131c80,23, 0xa131d00,23, 0xa131d80,23, 0xa131e00,23, 0xa131e80,23, 0xa131f00,23, 0xa131f80,23, 0xa132000,23, 0xa132080,23, 0xa132100,23, 0xa132180,23, 0xa132200,23, 0xa132280,23, 0xa132300,23, 0xa132380,23, 0xa132400,23, 0xa132480,23, 0xa132500,23, 0xa132580,23, 0xa132600,23, 0xa132680,23, 0xa132700,23, 0xa132780,23, 0xa132800,23, 0xa132880,23, 0xa132900,23, 0xa132980,23, 0xa132a00,23, 0xa132a80,23, 0xa132b00,23, 0xa132b80,23, 0xa132c00,23, 0xa132c80,23, 0xa132d00,23, 0xa132d80,23, 0xa132e00,23, 0xa132e80,23, 0xa132f00,23, 0xa132f80,23, 0xa133000,23, 0xa133080,23, 0xa133100,23, 0xa133180,23, 0xa133200,23, 0xa133280,23, 0xa133300,23, 0xa133380,23, 0xa133400,23, 0xa133480,23, 0xa133500,23, 0xa133580,23, 0xa133600,23, 0xa133680,23, 0xa133700,23, 0xa133780,23, 0xa133800,23, 0xa133880,23, 0xa133900,23, 0xa133980,23, 0xa133a00,23, 0xa133a80,23, 0xa133b00,23, 0xa133b80,23, 0xa133c00,23, 0xa133c80,23, 0xa133d00,23, 0xa133d80,23, 0xa133e00,23, 0xa133e80,23, 0xa133f00,23, 0xa133f80,23, 0xa134000,23, 0xa134080,23, 0xa134100,23, 0xa134180,23, 0xa134200,23, 0xa134280,23, 0xa134300,23, 0xa134380,23, 0xa134400,23, 0xa134480,23, 0xa134500,23, 0xa134580,23, 0xa134600,23, 0xa134680,23, 0xa134700,23, 0xa134780,23, 0xa134800,23, 0xa134880,23, 0xa134900,23, 0xa134980,23, 0xa134a00,23, 0xa134a80,23, 0xa134b00,23, 0xa134b80,23, 0xa134c00,23, 0xa134c80,23, 0xa134d00,23, 0xa134d80,23, 0xa134e00,23, 0xa134e80,23, 0xa134f00,23, 0xa134f80,23, 0xa135000,23, 0xa135080,23, 0xa135100,23, 0xa135180,23, 0xa135200,23, 0xa135280,23, 0xa135300,23, 0xa135380,23, 0xa135400,23, 0xa135480,23, 0xa135500,23, 0xa135580,23, 0xa135600,23, 0xa135680,23, 0xa135700,23, 0xa135780,23, 0xa135800,23, 0xa135880,23, 0xa135900,23, 0xa135980,23, 0xa135a00,23, 0xa135a80,23, 0xa135b00,23, 0xa135b80,23, 0xa135c00,23, 0xa135c80,23, 0xa135d00,23, 0xa135d80,23, 0xa135e00,23, 0xa135e80,23, 0xa135f00,23, 0xa135f80,23, 0xa136000,23, 0xa136080,23, 0xa136100,23, 0xa136180,23, 0xa136200,23, 0xa136280,23, 0xa136300,23, 0xa136380,23, 0xa136400,23, 0xa136480,23, 0xa136500,23, 0xa136580,23, 0xa136600,23, 0xa136680,23, 0xa136700,23, 0xa136780,23, 0xa136800,23, 0xa136880,23, 0xa136900,23, 0xa136980,23, 0xa136a00,23, 0xa136a80,23, 0xa136b00,23, 0xa136b80,23, 0xa136c00,23, 0xa136c80,23, 0xa136d00,23, 0xa136d80,23, 0xa136e00,23, 0xa136e80,23, 0xa136f00,23, 0xa136f80,23, 0xa137000,23, 0xa137080,23, 0xa137100,23, 0xa137180,23, 0xa137200,23, 0xa137280,23, 0xa137300,23, 0xa137380,23, 0xa137400,23, 0xa137480,23, 0xa137500,23, 0xa137580,23, 0xa137600,23, 0xa137680,23, 0xa137700,23, 0xa137780,23, 0xa137800,23, 0xa137880,23, 0xa137900,23, 0xa137980,23, 0xa137a00,23, 0xa137a80,23, 0xa137b00,23, 0xa137b80,23, 0xa137c00,23, 0xa137c80,23, 0xa137d00,23, 0xa137d80,23, 0xa137e00,23, 0xa137e80,23, 0xa137f00,23, 0xa137f80,23, 0xa138000,23, 0xa138080,23, 0xa138100,23, 0xa138180,23, 0xa138200,23, 0xa138280,23, 0xa138300,23, 0xa138380,23, 0xa138400,23, 0xa138480,23, 0xa138500,23, 0xa138580,23, 0xa138600,23, 0xa138680,23, 0xa138700,23, 0xa138780,23, 0xa138800,23, 0xa138880,23, 0xa138900,23, 0xa138980,23, 0xa138a00,23, 0xa138a80,23, 0xa138b00,23, 0xa138b80,23, 0xa138c00,23, 0xa138c80,23, 0xa138d00,23, 0xa138d80,23, 0xa138e00,23, 0xa138e80,23, 0xa138f00,23, 0xa138f80,23, 0xa139000,23, 0xa139080,23, 0xa139100,23, 0xa139180,23, 0xa139200,23, 0xa139280,23, 0xa139300,23, 0xa139380,23, 0xa139400,23, 0xa139480,23, 0xa139500,23, 0xa139580,23, 0xa139600,23, 0xa139680,23, 0xa139700,23, 0xa139780,23, 0xa139800,23, 0xa139880,23, 0xa139900,23, 0xa139980,23, 0xa139a00,23, 0xa139a80,23, 0xa139b00,23, 0xa139b80,23, 0xa139c00,23, 0xa139c80,23, 0xa139d00,23, 0xa139d80,23, 0xa139e00,23, 0xa139e80,23, 0xa139f00,23, 0xa139f80,23, 0xa13a000,23, 0xa13a080,23, 0xa13a100,23, 0xa13a180,23, 0xa13a200,23, 0xa13a280,23, 0xa13a300,23, 0xa13a380,23, 0xa13a400,23, 0xa13a480,23, 0xa13a500,23, 0xa13a580,23, 0xa13a600,23, 0xa13a680,23, 0xa13a700,23, 0xa13a780,23, 0xa13a800,23, 0xa13a880,23, 0xa13a900,23, 0xa13a980,23, 0xa13aa00,23, 0xa13aa80,23, 0xa13ab00,23, 0xa13ab80,23, 0xa13ac00,23, 0xa13ac80,23, 0xa13ad00,23, 0xa13ad80,23, 0xa13ae00,23, 0xa13ae80,23, 0xa13af00,23, 0xa13af80,23, 0xa13b000,23, 0xa13b080,23, 0xa13b100,23, 0xa13b180,23, 0xa13b200,23, 0xa13b280,23, 0xa13b300,23, 0xa13b380,23, 0xa13b400,23, 0xa13b480,23, 0xa13b500,23, 0xa13b580,23, 0xa13b600,23, 0xa13b680,23, 0xa13b700,23, 0xa13b780,23, 0xa13b800,23, 0xa13b880,23, 0xa13b900,23, 0xa13b980,23, 0xa13ba00,23, 0xa13ba80,23, 0xa13bb00,23, 0xa13bb80,23, 0xa13bc00,23, 0xa13bc80,23, 0xa13bd00,23, 0xa13bd80,23, 0xa13be00,23, 0xa13be80,23, 0xa13bf00,23, 0xa13bf80,23, 0xa13c000,23, 0xa13c080,23, 0xa13c100,23, 0xa13c180,23, 0xa13c200,23, 0xa13c280,23, 0xa13c300,23, 0xa13c380,23, 0xa13c400,23, 0xa13c480,23, 0xa13c500,23, 0xa13c580,23, 0xa13c600,23, 0xa13c680,23, 0xa13c700,23, 0xa13c780,23, 0xa13c800,23, 0xa13c880,23, 0xa13c900,23, 0xa13c980,23, 0xa13ca00,23, 0xa13ca80,23, 0xa13cb00,23, 0xa13cb80,23, 0xa13cc00,23, 0xa13cc80,23, 0xa13cd00,23, 0xa13cd80,23, 0xa13ce00,23, 0xa13ce80,23, 0xa13cf00,23, 0xa13cf80,23, 0xa13d000,23, 0xa13d080,23, 0xa13d100,23, 0xa13d180,23, 0xa13d200,23, 0xa13d280,23, 0xa13d300,23, 0xa13d380,23, 0xa13d400,23, 0xa13d480,23, 0xa13d500,23, 0xa13d580,23, 0xa13d600,23, 0xa13d680,23, 0xa13d700,23, 0xa13d780,23, 0xa13d800,23, 0xa13d880,23, 0xa13d900,23, 0xa13d980,23, 0xa13da00,23, 0xa13da80,23, 0xa13db00,23, 0xa13db80,23, 0xa13dc00,23, 0xa13dc80,23, 0xa13dd00,23, 0xa13dd80,23, 0xa13de00,23, 0xa13de80,23, 0xa13df00,23, 0xa13df80,23, 0xa13e000,23, 0xa13e080,23, 0xa13e100,23, 0xa13e180,23, 0xa13e200,23, 0xa13e280,23, 0xa13e300,23, 0xa13e380,23, 0xa13e400,23, 0xa13e480,23, 0xa13e500,23, 0xa13e580,23, 0xa13e600,23, 0xa13e680,23, 0xa13e700,23, 0xa13e780,23, 0xa13e800,23, 0xa13e880,23, 0xa13e900,23, 0xa13e980,23, 0xa13ea00,23, 0xa13ea80,23, 0xa13eb00,23, 0xa13eb80,23, 0xa13ec00,23, 0xa13ec80,23, 0xa13ed00,23, 0xa13ed80,23, 0xa13ee00,23, 0xa13ee80,23, 0xa13ef00,23, 0xa13ef80,23, 0xa13f000,23, 0xa13f080,23, 0xa13f100,23, 0xa13f180,23, 0xa13f200,23, 0xa13f280,23, 0xa13f300,23, 0xa13f380,23, 0xa13f400,23, 0xa13f480,23, 0xa13f500,23, 0xa13f580,23, 0xa13f600,23, 0xa13f680,23, 0xa13f700,23, 0xa13f780,23, 0xa13f800,23, 0xa13f880,23, 0xa13f900,23, 0xa13f980,23, 0xa13fa00,23, 0xa13fa80,23, 0xa13fb00,23, 0xa13fb80,23, 0xa13fc00,23, 0xa13fc80,23, 0xa13fd00,23, 0xa13fd80,23, 0xa13fe00,23, 0xa13fe80,23, 0xa13ff00,23, 0xa13ff80,23, 0xa140000,23, 0xa140080,23, 0xa140100,23, 0xa140180,23, 0xa140200,23, 0xa140280,23, 0xa140300,23, 0xa140380,23, 0xa140400,23, 0xa140480,23, 0xa140500,23, 0xa140580,23, 0xa140600,23, 0xa140680,23, 0xa140700,23, 0xa140780,23, 0xa140800,23, 0xa140880,23, 0xa140900,23, 0xa140980,23, 0xa140a00,23, 0xa140a80,23, 0xa140b00,23, 0xa140b80,23, 0xa140c00,23, 0xa140c80,23, 0xa140d00,23, 0xa140d80,23, 0xa140e00,23, 0xa140e80,23, 0xa140f00,23, 0xa140f80,23, 0xa141000,23, 0xa141080,23, 0xa141100,23, 0xa141180,23, 0xa141200,23, 0xa141280,23, 0xa141300,23, 0xa141380,23, 0xa141400,23, 0xa141480,23, 0xa141500,23, 0xa141580,23, 0xa141600,23, 0xa141680,23, 0xa141700,23, 0xa141780,23, 0xa141800,23, 0xa141880,23, 0xa141900,23, 0xa141980,23, 0xa141a00,23, 0xa141a80,23, 0xa141b00,23, 0xa141b80,23, 0xa141c00,23, 0xa141c80,23, 0xa141d00,23, 0xa141d80,23, 0xa141e00,23, 0xa141e80,23, 0xa141f00,23, 0xa141f80,23, 0xa142000,23, 0xa142080,23, 0xa142100,23, 0xa142180,23, 0xa142200,23, 0xa142280,23, 0xa142300,23, 0xa142380,23, 0xa142400,23, 0xa142480,23, 0xa142500,23, 0xa142580,23, 0xa142600,23, 0xa142680,23, 0xa142700,23, 0xa142780,23, 0xa142800,23, 0xa142880,23, 0xa142900,23, 0xa142980,23, 0xa142a00,23, 0xa142a80,23, 0xa142b00,23, 0xa142b80,23, 0xa142c00,23, 0xa142c80,23, 0xa142d00,23, 0xa142d80,23, 0xa142e00,23, 0xa142e80,23, 0xa142f00,23, 0xa142f80,23, 0xa143000,23, 0xa143080,23, 0xa143100,23, 0xa143180,23, 0xa143200,23, 0xa143280,23, 0xa143300,23, 0xa143380,23, 0xa143400,23, 0xa143480,23, 0xa143500,23, 0xa143580,23, 0xa143600,23, 0xa143680,23, 0xa143700,23, 0xa143780,23, 0xa143800,23, 0xa143880,23, 0xa143900,23, 0xa143980,23, 0xa143a00,23, 0xa143a80,23, 0xa143b00,23, 0xa143b80,23, 0xa143c00,23, 0xa143c80,23, 0xa143d00,23, 0xa143d80,23, 0xa143e00,23, 0xa143e80,23, 0xa143f00,23, 0xa143f80,23, 0xa144000,23, 0xa144080,23, 0xa144100,23, 0xa144180,23, 0xa144200,23, 0xa144280,23, 0xa144300,23, 0xa144380,23, 0xa144400,23, 0xa144480,23, 0xa144500,23, 0xa144580,23, 0xa144600,23, 0xa144680,23, 0xa144700,23, 0xa144780,23, 0xa144800,23, 0xa144880,23, 0xa144900,23, 0xa144980,23, 0xa144a00,23, 0xa144a80,23, 0xa144b00,23, 0xa144b80,23, 0xa144c00,23, 0xa144c80,23, 0xa144d00,23, 0xa144d80,23, 0xa144e00,23, 0xa144e80,23, 0xa144f00,23, 0xa144f80,23, 0xa145000,23, 0xa145080,23, 0xa145100,23, 0xa145180,23, 0xa145200,23, 0xa145280,23, 0xa145300,23, 0xa145380,23, 0xa145400,23, 0xa145480,23, 0xa145500,23, 0xa145580,23, 0xa145600,23, 0xa145680,23, 0xa145700,23, 0xa145780,23, 0xa145800,23, 0xa145880,23, 0xa145900,23, 0xa145980,23, 0xa145a00,23, 0xa145a80,23, 0xa145b00,23, 0xa145b80,23, 0xa145c00,23, 0xa145c80,23, 0xa145d00,23, 0xa145d80,23, 0xa145e00,23, 0xa145e80,23, 0xa145f00,23, 0xa145f80,23, 0xa146000,23, 0xa146080,23, 0xa146100,23, 0xa146180,23, 0xa146200,23, 0xa146280,23, 0xa146300,23, 0xa146380,23, 0xa146400,23, 0xa146480,23, 0xa146500,23, 0xa146580,23, 0xa146600,23, 0xa146680,23, 0xa146700,23, 0xa146780,23, 0xa146800,23, 0xa146880,23, 0xa146900,23, 0xa146980,23, 0xa146a00,23, 0xa146a80,23, 0xa146b00,23, 0xa146b80,23, 0xa146c00,23, 0xa146c80,23, 0xa146d00,23, 0xa146d80,23, 0xa146e00,23, 0xa146e80,23, 0xa146f00,23, 0xa146f80,23, 0xa147000,23, 0xa147080,23, 0xa147100,23, 0xa147180,23, 0xa147200,23, 0xa147280,23, 0xa147300,23, 0xa147380,23, 0xa147400,23, 0xa147480,23, 0xa147500,23, 0xa147580,23, 0xa147600,23, 0xa147680,23, 0xa147700,23, 0xa147780,23, 0xa147800,23, 0xa147880,23, 0xa147900,23, 0xa147980,23, 0xa147a00,23, 0xa147a80,23, 0xa147b00,23, 0xa147b80,23, 0xa147c00,23, 0xa147c80,23, 0xa147d00,23, 0xa147d80,23, 0xa147e00,23, 0xa147e80,23, 0xa147f00,23, 0xa147f80,23, 0xa148000,23, 0xa148080,23, 0xa148100,23, 0xa148180,23, 0xa148200,23, 0xa148280,23, 0xa148300,23, 0xa148380,23, 0xa148400,23, 0xa148480,23, 0xa148500,23, 0xa148580,23, 0xa148600,23, 0xa148680,23, 0xa148700,23, 0xa148780,23, 0xa148800,23, 0xa148880,23, 0xa148900,23, 0xa148980,23, 0xa148a00,23, 0xa148a80,23, 0xa148b00,23, 0xa148b80,23, 0xa148c00,23, 0xa148c80,23, 0xa148d00,23, 0xa148d80,23, 0xa148e00,23, 0xa148e80,23, 0xa148f00,23, 0xa148f80,23, 0xa149000,23, 0xa149080,23, 0xa149100,23, 0xa149180,23, 0xa149200,23, 0xa149280,23, 0xa149300,23, 0xa149380,23, 0xa149400,23, 0xa149480,23, 0xa149500,23, 0xa149580,23, 0xa149600,23, 0xa149680,23, 0xa149700,23, 0xa149780,23, 0xa149800,23, 0xa149880,23, 0xa149900,23, 0xa149980,23, 0xa149a00,23, 0xa149a80,23, 0xa149b00,23, 0xa149b80,23, 0xa149c00,23, 0xa149c80,23, 0xa149d00,23, 0xa149d80,23, 0xa149e00,23, 0xa149e80,23, 0xa149f00,23, 0xa149f80,23, 0xa14a000,23, 0xa14a080,23, 0xa14a100,23, 0xa14a180,23, 0xa14a200,23, 0xa14a280,23, 0xa14a300,23, 0xa14a380,23, 0xa14a400,23, 0xa14a480,23, 0xa14a500,23, 0xa14a580,23, 0xa14a600,23, 0xa14a680,23, 0xa14a700,23, 0xa14a780,23, 0xa14a800,23, 0xa14a880,23, 0xa14a900,23, 0xa14a980,23, 0xa14aa00,23, 0xa14aa80,23, 0xa14ab00,23, 0xa14ab80,23, 0xa14ac00,23, 0xa14ac80,23, 0xa14ad00,23, 0xa14ad80,23, 0xa14ae00,23, 0xa14ae80,23, 0xa14af00,23, 0xa14af80,23, 0xa14b000,23, 0xa14b080,23, 0xa14b100,23, 0xa14b180,23, 0xa14b200,23, 0xa14b280,23, 0xa14b300,23, 0xa14b380,23, 0xa14b400,23, 0xa14b480,23, 0xa14b500,23, 0xa14b580,23, 0xa14b600,23, 0xa14b680,23, 0xa14b700,23, 0xa14b780,23, 0xa14b800,23, 0xa14b880,23, 0xa14b900,23, 0xa14b980,23, 0xa14ba00,23, 0xa14ba80,23, 0xa14bb00,23, 0xa14bb80,23, 0xa14bc00,23, 0xa14bc80,23, 0xa14bd00,23, 0xa14bd80,23, 0xa14be00,23, 0xa14be80,23, 0xa14bf00,23, 0xa14bf80,23, 0xa14c000,23, 0xa14c080,23, 0xa14c100,23, 0xa14c180,23, 0xa14c200,23, 0xa14c280,23, 0xa14c300,23, 0xa14c380,23, 0xa14c400,23, 0xa14c480,23, 0xa14c500,23, 0xa14c580,23, 0xa14c600,23, 0xa14c680,23, 0xa14c700,23, 0xa14c780,23, 0xa14c800,23, 0xa14c880,23, 0xa14c900,23, 0xa14c980,23, 0xa14ca00,23, 0xa14ca80,23, 0xa14cb00,23, 0xa14cb80,23, 0xa14cc00,23, 0xa14cc80,23, 0xa14cd00,23, 0xa14cd80,23, 0xa14ce00,23, 0xa14ce80,23, 0xa14cf00,23, 0xa14cf80,23, 0xa14d000,23, 0xa14d080,23, 0xa14d100,23, 0xa14d180,23, 0xa14d200,23, 0xa14d280,23, 0xa14d300,23, 0xa14d380,23, 0xa14d400,23, 0xa14d480,23, 0xa14d500,23, 0xa14d580,23, 0xa14d600,23, 0xa14d680,23, 0xa14d700,23, 0xa14d780,23, 0xa14d800,23, 0xa14d880,23, 0xa14d900,23, 0xa14d980,23, 0xa14da00,23, 0xa14da80,23, 0xa14db00,23, 0xa14db80,23, 0xa14dc00,23, 0xa14dc80,23, 0xa14dd00,23, 0xa14dd80,23, 0xa14de00,23, 0xa14de80,23, 0xa14df00,23, 0xa14df80,23, 0xa14e000,23, 0xa14e080,23, 0xa14e100,23, 0xa14e180,23, 0xa14e200,23, 0xa14e280,23, 0xa14e300,23, 0xa14e380,23, 0xa14e400,23, 0xa14e480,23, 0xa14e500,23, 0xa14e580,23, 0xa14e600,23, 0xa14e680,23, 0xa14e700,23, 0xa14e780,23, 0xa14e800,23, 0xa14e880,23, 0xa14e900,23, 0xa14e980,23, 0xa14ea00,23, 0xa14ea80,23, 0xa14eb00,23, 0xa14eb80,23, 0xa14ec00,23, 0xa14ec80,23, 0xa14ed00,23, 0xa14ed80,23, 0xa14ee00,23, 0xa14ee80,23, 0xa14ef00,23, 0xa14ef80,23, 0xa14f000,23, 0xa14f080,23, 0xa14f100,23, 0xa14f180,23, 0xa14f200,23, 0xa14f280,23, 0xa14f300,23, 0xa14f380,23, 0xa14f400,23, 0xa14f480,23, 0xa14f500,23, 0xa14f580,23, 0xa14f600,23, 0xa14f680,23, 0xa14f700,23, 0xa14f780,23, 0xa14f800,23, 0xa14f880,23, 0xa14f900,23, 0xa14f980,23, 0xa14fa00,23, 0xa14fa80,23, 0xa14fb00,23, 0xa14fb80,23, 0xa14fc00,23, 0xa14fc80,23, 0xa14fd00,23, 0xa14fd80,23, 0xa14fe00,23, 0xa14fe80,23, 0xa14ff00,23, 0xa14ff80,23, 0xa150000,23, 0xa150080,23, 0xa150100,23, 0xa150180,23, 0xa150200,23, 0xa150280,23, 0xa150300,23, 0xa150380,23, 0xa150400,23, 0xa150480,23, 0xa150500,23, 0xa150580,23, 0xa150600,23, 0xa150680,23, 0xa150700,23, 0xa150780,23, 0xa150800,23, 0xa150880,23, 0xa150900,23, 0xa150980,23, 0xa150a00,23, 0xa150a80,23, 0xa150b00,23, 0xa150b80,23, 0xa150c00,23, 0xa150c80,23, 0xa150d00,23, 0xa150d80,23, 0xa150e00,23, 0xa150e80,23, 0xa150f00,23, 0xa150f80,23, 0xa151000,23, 0xa151080,23, 0xa151100,23, 0xa151180,23, 0xa151200,23, 0xa151280,23, 0xa151300,23, 0xa151380,23, 0xa151400,23, 0xa151480,23, 0xa151500,23, 0xa151580,23, 0xa151600,23, 0xa151680,23, 0xa151700,23, 0xa151780,23, 0xa151800,23, 0xa151880,23, 0xa151900,23, 0xa151980,23, 0xa151a00,23, 0xa151a80,23, 0xa151b00,23, 0xa151b80,23, 0xa151c00,23, 0xa151c80,23, 0xa151d00,23, 0xa151d80,23, 0xa151e00,23, 0xa151e80,23, 0xa151f00,23, 0xa151f80,23, 0xa152000,23, 0xa152080,23, 0xa152100,23, 0xa152180,23, 0xa152200,23, 0xa152280,23, 0xa152300,23, 0xa152380,23, 0xa152400,23, 0xa152480,23, 0xa152500,23, 0xa152580,23, 0xa152600,23, 0xa152680,23, 0xa152700,23, 0xa152780,23, 0xa152800,23, 0xa152880,23, 0xa152900,23, 0xa152980,23, 0xa152a00,23, 0xa152a80,23, 0xa152b00,23, 0xa152b80,23, 0xa152c00,23, 0xa152c80,23, 0xa152d00,23, 0xa152d80,23, 0xa152e00,23, 0xa152e80,23, 0xa152f00,23, 0xa152f80,23, 0xa153000,23, 0xa153080,23, 0xa153100,23, 0xa153180,23, 0xa153200,23, 0xa153280,23, 0xa153300,23, 0xa153380,23, 0xa153400,23, 0xa153480,23, 0xa153500,23, 0xa153580,23, 0xa153600,23, 0xa153680,23, 0xa153700,23, 0xa153780,23, 0xa153800,23, 0xa153880,23, 0xa153900,23, 0xa153980,23, 0xa153a00,23, 0xa153a80,23, 0xa153b00,23, 0xa153b80,23, 0xa153c00,23, 0xa153c80,23, 0xa153d00,23, 0xa153d80,23, 0xa153e00,23, 0xa153e80,23, 0xa153f00,23, 0xa153f80,23, 0xa154000,23, 0xa154080,23, 0xa154100,23, 0xa154180,23, 0xa154200,23, 0xa154280,23, 0xa154300,23, 0xa154380,23, 0xa154400,23, 0xa154480,23, 0xa154500,23, 0xa154580,23, 0xa154600,23, 0xa154680,23, 0xa154700,23, 0xa154780,23, 0xa154800,23, 0xa154880,23, 0xa154900,23, 0xa154980,23, 0xa154a00,23, 0xa154a80,23, 0xa154b00,23, 0xa154b80,23, 0xa154c00,23, 0xa154c80,23, 0xa154d00,23, 0xa154d80,23, 0xa154e00,23, 0xa154e80,23, 0xa154f00,23, 0xa154f80,23, 0xa155000,23, 0xa155080,23, 0xa155100,23, 0xa155180,23, 0xa155200,23, 0xa155280,23, 0xa155300,23, 0xa155380,23, 0xa155400,23, 0xa155480,23, 0xa155500,23, 0xa155580,23, 0xa155600,23, 0xa155680,23, 0xa155700,23, 0xa155780,23, 0xa155800,23, 0xa155880,23, 0xa155900,23, 0xa155980,23, 0xa155a00,23, 0xa155a80,23, 0xa155b00,23, 0xa155b80,23, 0xa155c00,23, 0xa155c80,23, 0xa155d00,23, 0xa155d80,23, 0xa155e00,23, 0xa155e80,23, 0xa155f00,23, 0xa155f80,23, 0xa156000,23, 0xa156080,23, 0xa156100,23, 0xa156180,23, 0xa156200,23, 0xa156280,23, 0xa156300,23, 0xa156380,23, 0xa156400,23, 0xa156480,23, 0xa156500,23, 0xa156580,23, 0xa156600,23, 0xa156680,23, 0xa156700,23, 0xa156780,23, 0xa156800,23, 0xa156880,23, 0xa156900,23, 0xa156980,23, 0xa156a00,23, 0xa156a80,23, 0xa156b00,23, 0xa156b80,23, 0xa156c00,23, 0xa156c80,23, 0xa156d00,23, 0xa156d80,23, 0xa156e00,23, 0xa156e80,23, 0xa156f00,23, 0xa156f80,23, 0xa157000,23, 0xa157080,23, 0xa157100,23, 0xa157180,23, 0xa157200,23, 0xa157280,23, 0xa157300,23, 0xa157380,23, 0xa157400,23, 0xa157480,23, 0xa157500,23, 0xa157580,23, 0xa157600,23, 0xa157680,23, 0xa157700,23, 0xa157780,23, 0xa157800,23, 0xa157880,23, 0xa157900,23, 0xa157980,23, 0xa157a00,23, 0xa157a80,23, 0xa157b00,23, 0xa157b80,23, 0xa157c00,23, 0xa157c80,23, 0xa157d00,23, 0xa157d80,23, 0xa157e00,23, 0xa157e80,23, 0xa157f00,23, 0xa157f80,23, 0xa158000,23, 0xa158080,23, 0xa158100,23, 0xa158180,23, 0xa158200,23, 0xa158280,23, 0xa158300,23, 0xa158380,23, 0xa158400,23, 0xa158480,23, 0xa158500,23, 0xa158580,23, 0xa158600,23, 0xa158680,23, 0xa158700,23, 0xa158780,23, 0xa158800,23, 0xa158880,23, 0xa158900,23, 0xa158980,23, 0xa158a00,23, 0xa158a80,23, 0xa158b00,23, 0xa158b80,23, 0xa158c00,23, 0xa158c80,23, 0xa158d00,23, 0xa158d80,23, 0xa158e00,23, 0xa158e80,23, 0xa158f00,23, 0xa158f80,23, 0xa159000,23, 0xa159080,23, 0xa159100,23, 0xa159180,23, 0xa159200,23, 0xa159280,23, 0xa159300,23, 0xa159380,23, 0xa159400,23, 0xa159480,23, 0xa159500,23, 0xa159580,23, 0xa159600,23, 0xa159680,23, 0xa159700,23, 0xa159780,23, 0xa159800,23, 0xa159880,23, 0xa159900,23, 0xa159980,23, 0xa159a00,23, 0xa159a80,23, 0xa159b00,23, 0xa159b80,23, 0xa159c00,23, 0xa159c80,23, 0xa159d00,23, 0xa159d80,23, 0xa159e00,23, 0xa159e80,23, 0xa159f00,23, 0xa159f80,23, 0xa15a000,23, 0xa15a080,23, 0xa15a100,23, 0xa15a180,23, 0xa15a200,23, 0xa15a280,23, 0xa15a300,23, 0xa15a380,23, 0xa15a400,23, 0xa15a480,23, 0xa15a500,23, 0xa15a580,23, 0xa15a600,23, 0xa15a680,23, 0xa15a700,23, 0xa15a780,23, 0xa15a800,23, 0xa15a880,23, 0xa15a900,23, 0xa15a980,23, 0xa15aa00,23, 0xa15aa80,23, 0xa15ab00,23, 0xa15ab80,23, 0xa15ac00,23, 0xa15ac80,23, 0xa15ad00,23, 0xa15ad80,23, 0xa15ae00,23, 0xa15ae80,23, 0xa15af00,23, 0xa15af80,23, 0xa15b000,23, 0xa15b080,23, 0xa15b100,23, 0xa15b180,23, 0xa15b200,23, 0xa15b280,23, 0xa15b300,23, 0xa15b380,23, 0xa15b400,23, 0xa15b480,23, 0xa15b500,23, 0xa15b580,23, 0xa15b600,23, 0xa15b680,23, 0xa15b700,23, 0xa15b780,23, 0xa15b800,23, 0xa15b880,23, 0xa15b900,23, 0xa15b980,23, 0xa15ba00,23, 0xa15ba80,23, 0xa15bb00,23, 0xa15bb80,23, 0xa15bc00,23, 0xa15bc80,23, 0xa15bd00,23, 0xa15bd80,23, 0xa15be00,23, 0xa15be80,23, 0xa15bf00,23, 0xa15bf80,23, 0xa15c000,23, 0xa15c080,23, 0xa15c100,23, 0xa15c180,23, 0xa15c200,23, 0xa15c280,23, 0xa15c300,23, 0xa15c380,23, 0xa15c400,23, 0xa15c480,23, 0xa15c500,23, 0xa15c580,23, 0xa15c600,23, 0xa15c680,23, 0xa15c700,23, 0xa15c780,23, 0xa15c800,23, 0xa15c880,23, 0xa15c900,23, 0xa15c980,23, 0xa15ca00,23, 0xa15ca80,23, 0xa15cb00,23, 0xa15cb80,23, 0xa15cc00,23, 0xa15cc80,23, 0xa15cd00,23, 0xa15cd80,23, 0xa15ce00,23, 0xa15ce80,23, 0xa15cf00,23, 0xa15cf80,23, 0xa15d000,23, 0xa15d080,23, 0xa15d100,23, 0xa15d180,23, 0xa15d200,23, 0xa15d280,23, 0xa15d300,23, 0xa15d380,23, 0xa15d400,23, 0xa15d480,23, 0xa15d500,23, 0xa15d580,23, 0xa15d600,23, 0xa15d680,23, 0xa15d700,23, 0xa15d780,23, 0xa15d800,23, 0xa15d880,23, 0xa15d900,23, 0xa15d980,23, 0xa15da00,23, 0xa15da80,23, 0xa15db00,23, 0xa15db80,23, 0xa15dc00,23, 0xa15dc80,23, 0xa15dd00,23, 0xa15dd80,23, 0xa15de00,23, 0xa15de80,23, 0xa15df00,23, 0xa15df80,23, 0xa15e000,23, 0xa15e080,23, 0xa15e100,23, 0xa15e180,23, 0xa15e200,23, 0xa15e280,23, 0xa15e300,23, 0xa15e380,23, 0xa15e400,23, 0xa15e480,23, 0xa15e500,23, 0xa15e580,23, 0xa15e600,23, 0xa15e680,23, 0xa15e700,23, 0xa15e780,23, 0xa15e800,23, 0xa15e880,23, 0xa15e900,23, 0xa15e980,23, 0xa15ea00,23, 0xa15ea80,23, 0xa15eb00,23, 0xa15eb80,23, 0xa15ec00,23, 0xa15ec80,23, 0xa15ed00,23, 0xa15ed80,23, 0xa15ee00,23, 0xa15ee80,23, 0xa15ef00,23, 0xa15ef80,23, 0xa15f000,23, 0xa15f080,23, 0xa15f100,23, 0xa15f180,23, 0xa15f200,23, 0xa15f280,23, 0xa15f300,23, 0xa15f380,23, 0xa15f400,23, 0xa15f480,23, 0xa15f500,23, 0xa15f580,23, 0xa15f600,23, 0xa15f680,23, 0xa15f700,23, 0xa15f780,23, 0xa15f800,23, 0xa15f880,23, 0xa15f900,23, 0xa15f980,23, 0xa15fa00,23, 0xa15fa80,23, 0xa15fb00,23, 0xa15fb80,23, 0xa15fc00,23, 0xa15fc80,23, 0xa15fd00,23, 0xa15fd80,23, 0xa15fe00,23, 0xa15fe80,23, 0xa15ff00,23, 0xa15ff80,23, 0xa160000,23, 0xa160080,23, 0xa160100,23, 0xa160180,23, 0xa160200,23, 0xa160280,23, 0xa160300,23, 0xa160380,23, 0xa160400,23, 0xa160480,23, 0xa160500,23, 0xa160580,23, 0xa160600,23, 0xa160680,23, 0xa160700,23, 0xa160780,23, 0xa160800,23, 0xa160880,23, 0xa160900,23, 0xa160980,23, 0xa160a00,23, 0xa160a80,23, 0xa160b00,23, 0xa160b80,23, 0xa160c00,23, 0xa160c80,23, 0xa160d00,23, 0xa160d80,23, 0xa160e00,23, 0xa160e80,23, 0xa160f00,23, 0xa160f80,23, 0xa161000,23, 0xa161080,23, 0xa161100,23, 0xa161180,23, 0xa161200,23, 0xa161280,23, 0xa161300,23, 0xa161380,23, 0xa161400,23, 0xa161480,23, 0xa161500,23, 0xa161580,23, 0xa161600,23, 0xa161680,23, 0xa161700,23, 0xa161780,23, 0xa161800,23, 0xa161880,23, 0xa161900,23, 0xa161980,23, 0xa161a00,23, 0xa161a80,23, 0xa161b00,23, 0xa161b80,23, 0xa161c00,23, 0xa161c80,23, 0xa161d00,23, 0xa161d80,23, 0xa161e00,23, 0xa161e80,23, 0xa161f00,23, 0xa161f80,23, 0xa162000,23, 0xa162080,23, 0xa162100,23, 0xa162180,23, 0xa162200,23, 0xa162280,23, 0xa162300,23, 0xa162380,23, 0xa162400,23, 0xa162480,23, 0xa162500,23, 0xa162580,23, 0xa162600,23, 0xa162680,23, 0xa162700,23, 0xa162780,23, 0xa162800,23, 0xa162880,23, 0xa162900,23, 0xa162980,23, 0xa162a00,23, 0xa162a80,23, 0xa162b00,23, 0xa162b80,23, 0xa162c00,23, 0xa162c80,23, 0xa162d00,23, 0xa162d80,23, 0xa162e00,23, 0xa162e80,23, 0xa162f00,23, 0xa162f80,23, 0xa163000,23, 0xa163080,23, 0xa163100,23, 0xa163180,23, 0xa163200,23, 0xa163280,23, 0xa163300,23, 0xa163380,23, 0xa163400,23, 0xa163480,23, 0xa163500,23, 0xa163580,23, 0xa163600,23, 0xa163680,23, 0xa163700,23, 0xa163780,23, 0xa163800,23, 0xa163880,23, 0xa163900,23, 0xa163980,23, 0xa163a00,23, 0xa163a80,23, 0xa163b00,23, 0xa163b80,23, 0xa163c00,23, 0xa163c80,23, 0xa163d00,23, 0xa163d80,23, 0xa163e00,23, 0xa163e80,23, 0xa163f00,23, 0xa163f80,23, 0xa164000,23, 0xa164080,23, 0xa164100,23, 0xa164180,23, 0xa164200,23, 0xa164280,23, 0xa164300,23, 0xa164380,23, 0xa164400,23, 0xa164480,23, 0xa164500,23, 0xa164580,23, 0xa164600,23, 0xa164680,23, 0xa164700,23, 0xa164780,23, 0xa164800,23, 0xa164880,23, 0xa164900,23, 0xa164980,23, 0xa164a00,23, 0xa164a80,23, 0xa164b00,23, 0xa164b80,23, 0xa164c00,23, 0xa164c80,23, 0xa164d00,23, 0xa164d80,23, 0xa164e00,23, 0xa164e80,23, 0xa164f00,23, 0xa164f80,23, 0xa165000,23, 0xa165080,23, 0xa165100,23, 0xa165180,23, 0xa165200,23, 0xa165280,23, 0xa165300,23, 0xa165380,23, 0xa165400,23, 0xa165480,23, 0xa165500,23, 0xa165580,23, 0xa165600,23, 0xa165680,23, 0xa165700,23, 0xa165780,23, 0xa165800,23, 0xa165880,23, 0xa165900,23, 0xa165980,23, 0xa165a00,23, 0xa165a80,23, 0xa165b00,23, 0xa165b80,23, 0xa165c00,23, 0xa165c80,23, 0xa165d00,23, 0xa165d80,23, 0xa165e00,23, 0xa165e80,23, 0xa165f00,23, 0xa165f80,23, 0xa166000,23, 0xa166080,23, 0xa166100,23, 0xa166180,23, 0xa166200,23, 0xa166280,23, 0xa166300,23, 0xa166380,23, 0xa166400,23, 0xa166480,23, 0xa166500,23, 0xa166580,23, 0xa166600,23, 0xa166680,23, 0xa166700,23, 0xa166780,23, 0xa166800,23, 0xa166880,23, 0xa166900,23, 0xa166980,23, 0xa166a00,23, 0xa166a80,23, 0xa166b00,23, 0xa166b80,23, 0xa166c00,23, 0xa166c80,23, 0xa166d00,23, 0xa166d80,23, 0xa166e00,23, 0xa166e80,23, 0xa166f00,23, 0xa166f80,23, 0xa167000,23, 0xa167080,23, 0xa167100,23, 0xa167180,23, 0xa167200,23, 0xa167280,23, 0xa167300,23, 0xa167380,23, 0xa167400,23, 0xa167480,23, 0xa167500,23, 0xa167580,23, 0xa167600,23, 0xa167680,23, 0xa167700,23, 0xa167780,23, 0xa167800,23, 0xa167880,23, 0xa167900,23, 0xa167980,23, 0xa167a00,23, 0xa167a80,23, 0xa167b00,23, 0xa167b80,23, 0xa167c00,23, 0xa167c80,23, 0xa167d00,23, 0xa167d80,23, 0xa167e00,23, 0xa167e80,23, 0xa167f00,23, 0xa167f80,23, 0xa168000,23, 0xa168080,23, 0xa168100,23, 0xa168180,23, 0xa168200,23, 0xa168280,23, 0xa168300,23, 0xa168380,23, 0xa168400,23, 0xa168480,23, 0xa168500,23, 0xa168580,23, 0xa168600,23, 0xa168680,23, 0xa168700,23, 0xa168780,23, 0xa168800,23, 0xa168880,23, 0xa168900,23, 0xa168980,23, 0xa168a00,23, 0xa168a80,23, 0xa168b00,23, 0xa168b80,23, 0xa168c00,23, 0xa168c80,23, 0xa168d00,23, 0xa168d80,23, 0xa168e00,23, 0xa168e80,23, 0xa168f00,23, 0xa168f80,23, 0xa169000,23, 0xa169080,23, 0xa169100,23, 0xa169180,23, 0xa169200,23, 0xa169280,23, 0xa169300,23, 0xa169380,23, 0xa169400,23, 0xa169480,23, 0xa169500,23, 0xa169580,23, 0xa169600,23, 0xa169680,23, 0xa169700,23, 0xa169780,23, 0xa169800,23, 0xa169880,23, 0xa169900,23, 0xa169980,23, 0xa169a00,23, 0xa169a80,23, 0xa169b00,23, 0xa169b80,23, 0xa169c00,23, 0xa169c80,23, 0xa169d00,23, 0xa169d80,23, 0xa169e00,23, 0xa169e80,23, 0xa169f00,23, 0xa169f80,23, 0xa16a000,23, 0xa16a080,23, 0xa16a100,23, 0xa16a180,23, 0xa16a200,23, 0xa16a280,23, 0xa16a300,23, 0xa16a380,23, 0xa16a400,23, 0xa16a480,23, 0xa16a500,23, 0xa16a580,23, 0xa16a600,23, 0xa16a680,23, 0xa16a700,23, 0xa16a780,23, 0xa16a800,23, 0xa16a880,23, 0xa16a900,23, 0xa16a980,23, 0xa16aa00,23, 0xa16aa80,23, 0xa16ab00,23, 0xa16ab80,23, 0xa16ac00,23, 0xa16ac80,23, 0xa16ad00,23, 0xa16ad80,23, 0xa16ae00,23, 0xa16ae80,23, 0xa16af00,23, 0xa16af80,23, 0xa16b000,23, 0xa16b080,23, 0xa16b100,23, 0xa16b180,23, 0xa16b200,23, 0xa16b280,23, 0xa16b300,23, 0xa16b380,23, 0xa16b400,23, 0xa16b480,23, 0xa16b500,23, 0xa16b580,23, 0xa16b600,23, 0xa16b680,23, 0xa16b700,23, 0xa16b780,23, 0xa16b800,23, 0xa16b880,23, 0xa16b900,23, 0xa16b980,23, 0xa16ba00,23, 0xa16ba80,23, 0xa16bb00,23, 0xa16bb80,23, 0xa16bc00,23, 0xa16bc80,23, 0xa16bd00,23, 0xa16bd80,23, 0xa16be00,23, 0xa16be80,23, 0xa16bf00,23, 0xa16bf80,23, 0xa16c000,23, 0xa16c080,23, 0xa16c100,23, 0xa16c180,23, 0xa16c200,23, 0xa16c280,23, 0xa16c300,23, 0xa16c380,23, 0xa16c400,23, 0xa16c480,23, 0xa16c500,23, 0xa16c580,23, 0xa16c600,23, 0xa16c680,23, 0xa16c700,23, 0xa16c780,23, 0xa16c800,23, 0xa16c880,23, 0xa16c900,23, 0xa16c980,23, 0xa16ca00,23, 0xa16ca80,23, 0xa16cb00,23, 0xa16cb80,23, 0xa16cc00,23, 0xa16cc80,23, 0xa16cd00,23, 0xa16cd80,23, 0xa16ce00,23, 0xa16ce80,23, 0xa16cf00,23, 0xa16cf80,23, 0xa16d000,23, 0xa16d080,23, 0xa16d100,23, 0xa16d180,23, 0xa16d200,23, 0xa16d280,23, 0xa16d300,23, 0xa16d380,23, 0xa16d400,23, 0xa16d480,23, 0xa16d500,23, 0xa16d580,23, 0xa16d600,23, 0xa16d680,23, 0xa16d700,23, 0xa16d780,23, 0xa16d800,23, 0xa16d880,23, 0xa16d900,23, 0xa16d980,23, 0xa16da00,23, 0xa16da80,23, 0xa16db00,23, 0xa16db80,23, 0xa16dc00,23, 0xa16dc80,23, 0xa16dd00,23, 0xa16dd80,23, 0xa16de00,23, 0xa16de80,23, 0xa16df00,23, 0xa16df80,23, 0xa16e000,23, 0xa16e080,23, 0xa16e100,23, 0xa16e180,23, 0xa16e200,23, 0xa16e280,23, 0xa16e300,23, 0xa16e380,23, 0xa16e400,23, 0xa16e480,23, 0xa16e500,23, 0xa16e580,23, 0xa16e600,23, 0xa16e680,23, 0xa16e700,23, 0xa16e780,23, 0xa16e800,23, 0xa16e880,23, 0xa16e900,23, 0xa16e980,23, 0xa16ea00,23, 0xa16ea80,23, 0xa16eb00,23, 0xa16eb80,23, 0xa16ec00,23, 0xa16ec80,23, 0xa16ed00,23, 0xa16ed80,23, 0xa16ee00,23, 0xa16ee80,23, 0xa16ef00,23, 0xa16ef80,23, 0xa16f000,23, 0xa16f080,23, 0xa16f100,23, 0xa16f180,23, 0xa16f200,23, 0xa16f280,23, 0xa16f300,23, 0xa16f380,23, 0xa16f400,23, 0xa16f480,23, 0xa16f500,23, 0xa16f580,23, 0xa16f600,23, 0xa16f680,23, 0xa16f700,23, 0xa16f780,23, 0xa16f800,23, 0xa16f880,23, 0xa16f900,23, 0xa16f980,23, 0xa16fa00,23, 0xa16fa80,23, 0xa16fb00,23, 0xa16fb80,23, 0xa16fc00,23, 0xa16fc80,23, 0xa16fd00,23, 0xa16fd80,23, 0xa16fe00,23, 0xa16fe80,23, 0xa16ff00,23, 0xa16ff80,23, 0xa170000,23, 0xa170080,23, 0xa170100,23, 0xa170180,23, 0xa170200,23, 0xa170280,23, 0xa170300,23, 0xa170380,23, 0xa170400,23, 0xa170480,23, 0xa170500,23, 0xa170580,23, 0xa170600,23, 0xa170680,23, 0xa170700,23, 0xa170780,23, 0xa170800,23, 0xa170880,23, 0xa170900,23, 0xa170980,23, 0xa170a00,23, 0xa170a80,23, 0xa170b00,23, 0xa170b80,23, 0xa170c00,23, 0xa170c80,23, 0xa170d00,23, 0xa170d80,23, 0xa170e00,23, 0xa170e80,23, 0xa170f00,23, 0xa170f80,23, 0xa171000,23, 0xa171080,23, 0xa171100,23, 0xa171180,23, 0xa171200,23, 0xa171280,23, 0xa171300,23, 0xa171380,23, 0xa171400,23, 0xa171480,23, 0xa171500,23, 0xa171580,23, 0xa171600,23, 0xa171680,23, 0xa171700,23, 0xa171780,23, 0xa171800,23, 0xa171880,23, 0xa171900,23, 0xa171980,23, 0xa171a00,23, 0xa171a80,23, 0xa171b00,23, 0xa171b80,23, 0xa171c00,23, 0xa171c80,23, 0xa171d00,23, 0xa171d80,23, 0xa171e00,23, 0xa171e80,23, 0xa171f00,23, 0xa171f80,23, 0xa172000,23, 0xa172080,23, 0xa172100,23, 0xa172180,23, 0xa172200,23, 0xa172280,23, 0xa172300,23, 0xa172380,23, 0xa172400,23, 0xa172480,23, 0xa172500,23, 0xa172580,23, 0xa172600,23, 0xa172680,23, 0xa172700,23, 0xa172780,23, 0xa172800,23, 0xa172880,23, 0xa172900,23, 0xa172980,23, 0xa172a00,23, 0xa172a80,23, 0xa172b00,23, 0xa172b80,23, 0xa172c00,23, 0xa172c80,23, 0xa172d00,23, 0xa172d80,23, 0xa172e00,23, 0xa172e80,23, 0xa172f00,23, 0xa172f80,23, 0xa173000,23, 0xa173080,23, 0xa173100,23, 0xa173180,23, 0xa173200,23, 0xa173280,23, 0xa173300,23, 0xa173380,23, 0xa173400,23, 0xa173480,23, 0xa173500,23, 0xa173580,23, 0xa173600,23, 0xa173680,23, 0xa173700,23, 0xa173780,23, 0xa173800,23, 0xa173880,23, 0xa173900,23, 0xa173980,23, 0xa173a00,23, 0xa173a80,23, 0xa173b00,23, 0xa173b80,23, 0xa180000,23, 0xa180080,23, 0xa180100,23, 0xa180180,23, 0xa180200,23, 0xa180280,23, 0xa180300,23, 0xa180380,23, 0xa180400,23, 0xa180480,23, 0xa180500,23, 0xa180580,23, 0xa180600,23, 0xa180680,23, 0xa180700,23, 0xa180780,23, 0xa180800,23, 0xa180880,23, 0xa180900,23, 0xa180980,23, 0xa180a00,23, 0xa180a80,23, 0xa180b00,23, 0xa180b80,23, 0xa180c00,23, 0xa180c80,23, 0xa180d00,23, 0xa180d80,23, 0xa180e00,23, 0xa180e80,23, 0xa180f00,23, 0xa180f80,23, 0xa181000,23, 0xa181080,23, 0xa181100,23, 0xa181180,23, 0xa181200,23, 0xa181280,23, 0xa181300,23, 0xa181380,23, 0xa181400,23, 0xa181480,23, 0xa181500,23, 0xa181580,23, 0xa181600,23, 0xa181680,23, 0xa181700,23, 0xa181780,23, 0xa181800,23, 0xa181880,23, 0xa181900,23, 0xa181980,23, 0xa181a00,23, 0xa181a80,23, 0xa181b00,23, 0xa181b80,23, 0xa181c00,23, 0xa181c80,23, 0xa181d00,23, 0xa181d80,23, 0xa181e00,23, 0xa181e80,23, 0xa181f00,23, 0xa181f80,23, 0xa182000,23, 0xa182080,23, 0xa182100,23, 0xa182180,23, 0xa182200,23, 0xa182280,23, 0xa182300,23, 0xa182380,23, 0xa182400,23, 0xa182480,23, 0xa182500,23, 0xa182580,23, 0xa182600,23, 0xa182680,23, 0xa182700,23, 0xa182780,23, 0xa182800,23, 0xa182880,23, 0xa182900,23, 0xa182980,23, 0xa182a00,23, 0xa182a80,23, 0xa182b00,23, 0xa182b80,23, 0xa182c00,23, 0xa182c80,23, 0xa182d00,23, 0xa182d80,23, 0xa182e00,23, 0xa182e80,23, 0xa182f00,23, 0xa182f80,23, 0xa183000,23, 0xa183080,23, 0xa183100,23, 0xa183180,23, 0xa183200,23, 0xa183280,23, 0xa183300,23, 0xa183380,23, 0xa183400,23, 0xa183480,23, 0xa183500,23, 0xa183580,23, 0xa183600,23, 0xa183680,23, 0xa183700,23, 0xa183780,23, 0xa183800,23, 0xa183880,23, 0xa183900,23, 0xa183980,23, 0xa183a00,23, 0xa183a80,23, 0xa183b00,23, 0xa183b80,23, 0xa183c00,23, 0xa183c80,23, 0xa183d00,23, 0xa183d80,23, 0xa183e00,23, 0xa183e80,23, 0xa183f00,23, 0xa183f80,23, 0xa184000,23, 0xa184080,23, 0xa184100,23, 0xa184180,23, 0xa184200,23, 0xa184280,23, 0xa184300,23, 0xa184380,23, 0xa184400,23, 0xa184480,23, 0xa184500,23, 0xa184580,23, 0xa184600,23, 0xa184680,23, 0xa184700,23, 0xa184780,23, 0xa184800,23, 0xa184880,23, 0xa184900,23, 0xa184980,23, 0xa184a00,23, 0xa184a80,23, 0xa184b00,23, 0xa184b80,23, 0xa184c00,23, 0xa184c80,23, 0xa184d00,23, 0xa184d80,23, 0xa184e00,23, 0xa184e80,23, 0xa184f00,23, 0xa184f80,23, 0xa185000,23, 0xa185080,23, 0xa185100,23, 0xa185180,23, 0xa185200,23, 0xa185280,23, 0xa185300,23, 0xa185380,23, 0xa185400,23, 0xa185480,23, 0xa185500,23, 0xa185580,23, 0xa185600,23, 0xa185680,23, 0xa185700,23, 0xa185780,23, 0xa185800,23, 0xa185880,23, 0xa185900,23, 0xa185980,23, 0xa185a00,23, 0xa185a80,23, 0xa185b00,23, 0xa185b80,23, 0xa185c00,23, 0xa185c80,23, 0xa185d00,23, 0xa185d80,23, 0xa185e00,23, 0xa185e80,23, 0xa185f00,23, 0xa185f80,23, 0xa186000,23, 0xa186080,23, 0xa186100,23, 0xa186180,23, 0xa186200,23, 0xa186280,23, 0xa186300,23, 0xa186380,23, 0xa186400,23, 0xa186480,23, 0xa186500,23, 0xa186580,23, 0xa186600,23, 0xa186680,23, 0xa186700,23, 0xa186780,23, 0xa186800,23, 0xa186880,23, 0xa186900,23, 0xa186980,23, 0xa186a00,23, 0xa186a80,23, 0xa186b00,23, 0xa186b80,23, 0xa186c00,23, 0xa186c80,23, 0xa186d00,23, 0xa186d80,23, 0xa186e00,23, 0xa186e80,23, 0xa186f00,23, 0xa186f80,23, 0xa187000,23, 0xa187080,23, 0xa187100,23, 0xa187180,23, 0xa187200,23, 0xa187280,23, 0xa187300,23, 0xa187380,23, 0xa187400,23, 0xa187480,23, 0xa187500,23, 0xa187580,23, 0xa187600,23, 0xa187680,23, 0xa187700,23, 0xa187780,23, 0xa187800,23, 0xa187880,23, 0xa187900,23, 0xa187980,23, 0xa187a00,23, 0xa187a80,23, 0xa187b00,23, 0xa187b80,23, 0xa187c00,23, 0xa187c80,23, 0xa187d00,23, 0xa187d80,23, 0xa187e00,23, 0xa187e80,23, 0xa187f00,23, 0xa187f80,23, 0xa188000,23, 0xa188080,23, 0xa188100,23, 0xa188180,23, 0xa188200,23, 0xa188280,23, 0xa188300,23, 0xa188380,23, 0xa188400,23, 0xa188480,23, 0xa188500,23, 0xa188580,23, 0xa188600,23, 0xa188680,23, 0xa188700,23, 0xa188780,23, 0xa188800,23, 0xa188880,23, 0xa188900,23, 0xa188980,23, 0xa188a00,23, 0xa188a80,23, 0xa188b00,23, 0xa188b80,23, 0xa188c00,23, 0xa188c80,23, 0xa188d00,23, 0xa188d80,23, 0xa188e00,23, 0xa188e80,23, 0xa188f00,23, 0xa188f80,23, 0xa189000,23, 0xa189080,23, 0xa189100,23, 0xa189180,23, 0xa189200,23, 0xa189280,23, 0xa189300,23, 0xa189380,23, 0xa189400,23, 0xa189480,23, 0xa189500,23, 0xa189580,23, 0xa189600,23, 0xa189680,23, 0xa189700,23, 0xa189780,23, 0xa189800,23, 0xa189880,23, 0xa189900,23, 0xa189980,23, 0xa189a00,23, 0xa189a80,23, 0xa189b00,23, 0xa189b80,23, 0xa189c00,23, 0xa189c80,23, 0xa189d00,23, 0xa189d80,23, 0xa189e00,23, 0xa189e80,23, 0xa189f00,23, 0xa189f80,23, 0xa18a000,23, 0xa18a080,23, 0xa18a100,23, 0xa18a180,23, 0xa18a200,23, 0xa18a280,23, 0xa18a300,23, 0xa18a380,23, 0xa18a400,23, 0xa18a480,23, 0xa18a500,23, 0xa18a580,23, 0xa18a600,23, 0xa18a680,23, 0xa18a700,23, 0xa18a780,23, 0xa18a800,23, 0xa18a880,23, 0xa18a900,23, 0xa18a980,23, 0xa18aa00,23, 0xa18aa80,23, 0xa18ab00,23, 0xa18ab80,23, 0xa18ac00,23, 0xa18ac80,23, 0xa18ad00,23, 0xa18ad80,23, 0xa18ae00,23, 0xa18ae80,23, 0xa18af00,23, 0xa18af80,23, 0xa18b000,23, 0xa18b080,23, 0xa18b100,23, 0xa18b180,23, 0xa18b200,23, 0xa18b280,23, 0xa18b300,23, 0xa18b380,23, 0xa18b400,23, 0xa18b480,23, 0xa18b500,23, 0xa18b580,23, 0xa18b600,23, 0xa18b680,23, 0xa18b700,23, 0xa18b780,23, 0xa18b800,23, 0xa18b880,23, 0xa18b900,23, 0xa18b980,23, 0xa18ba00,23, 0xa18ba80,23, 0xa18bb00,23, 0xa18bb80,23, 0xa18bc00,23, 0xa18bc80,23, 0xa18bd00,23, 0xa18bd80,23, 0xa18be00,23, 0xa18be80,23, 0xa18bf00,23, 0xa18bf80,23, 0xa18c000,23, 0xa18c080,23, 0xa18c100,23, 0xa18c180,23, 0xa18c200,23, 0xa18c280,23, 0xa18c300,23, 0xa18c380,23, 0xa18c400,23, 0xa18c480,23, 0xa18c500,23, 0xa18c580,23, 0xa18c600,23, 0xa18c680,23, 0xa18c700,23, 0xa18c780,23, 0xa18c800,23, 0xa18c880,23, 0xa18c900,23, 0xa18c980,23, 0xa18ca00,23, 0xa18ca80,23, 0xa18cb00,23, 0xa18cb80,23, 0xa18cc00,23, 0xa18cc80,23, 0xa18cd00,23, 0xa18cd80,23, 0xa18ce00,23, 0xa18ce80,23, 0xa18cf00,23, 0xa18cf80,23, 0xa18d000,23, 0xa18d080,23, 0xa18d100,23, 0xa18d180,23, 0xa18d200,23, 0xa18d280,23, 0xa18d300,23, 0xa18d380,23, 0xa18d400,23, 0xa18d480,23, 0xa18d500,23, 0xa18d580,23, 0xa18d600,23, 0xa18d680,23, 0xa18d700,23, 0xa18d780,23, 0xa18d800,23, 0xa18d880,23, 0xa18d900,23, 0xa18d980,23, 0xa18da00,23, 0xa18da80,23, 0xa18db00,23, 0xa18db80,23, 0xa18dc00,23, 0xa18dc80,23, 0xa18dd00,23, 0xa18dd80,23, 0xa18de00,23, 0xa18de80,23, 0xa18df00,23, 0xa18df80,23, 0xa18e000,23, 0xa18e080,23, 0xa18e100,23, 0xa18e180,23, 0xa18e200,23, 0xa18e280,23, 0xa18e300,23, 0xa18e380,23, 0xa18e400,23, 0xa18e480,23, 0xa18e500,23, 0xa18e580,23, 0xa18e600,23, 0xa18e680,23, 0xa18e700,23, 0xa18e780,23, 0xa18e800,23, 0xa18e880,23, 0xa18e900,23, 0xa18e980,23, 0xa18ea00,23, 0xa18ea80,23, 0xa18eb00,23, 0xa18eb80,23, 0xa18ec00,23, 0xa18ec80,23, 0xa18ed00,23, 0xa18ed80,23, 0xa18ee00,23, 0xa18ee80,23, 0xa18ef00,23, 0xa18ef80,23, 0xa18f000,23, 0xa18f080,23, 0xa18f100,23, 0xa18f180,23, 0xa18f200,23, 0xa18f280,23, 0xa18f300,23, 0xa18f380,23, 0xa18f400,23, 0xa18f480,23, 0xa18f500,23, 0xa18f580,23, 0xa18f600,23, 0xa18f680,23, 0xa18f700,23, 0xa18f780,23, 0xa18f800,23, 0xa18f880,23, 0xa18f900,23, 0xa18f980,23, 0xa18fa00,23, 0xa18fa80,23, 0xa18fb00,23, 0xa18fb80,23, 0xa18fc00,23, 0xa18fc80,23, 0xa18fd00,23, 0xa18fd80,23, 0xa18fe00,23, 0xa18fe80,23, 0xa18ff00,23, 0xa18ff80,23, 0xa190000,23, 0xa190080,23, 0xa190100,23, 0xa190180,23, 0xa190200,23, 0xa190280,23, 0xa190300,23, 0xa190380,23, 0xa190400,23, 0xa190480,23, 0xa190500,23, 0xa190580,23, 0xa190600,23, 0xa190680,23, 0xa190700,23, 0xa190780,23, 0xa190800,23, 0xa190880,23, 0xa190900,23, 0xa190980,23, 0xa190a00,23, 0xa190a80,23, 0xa190b00,23, 0xa190b80,23, 0xa190c00,23, 0xa190c80,23, 0xa190d00,23, 0xa190d80,23, 0xa190e00,23, 0xa190e80,23, 0xa190f00,23, 0xa190f80,23, 0xa191000,23, 0xa191080,23, 0xa191100,23, 0xa191180,23, 0xa191200,23, 0xa191280,23, 0xa191300,23, 0xa191380,23, 0xa191400,23, 0xa191480,23, 0xa191500,23, 0xa191580,23, 0xa191600,23, 0xa191680,23, 0xa191700,23, 0xa191780,23, 0xa191800,23, 0xa191880,23, 0xa191900,23, 0xa191980,23, 0xa191a00,23, 0xa191a80,23, 0xa191b00,23, 0xa191b80,23, 0xa191c00,23, 0xa191c80,23, 0xa191d00,23, 0xa191d80,23, 0xa191e00,23, 0xa191e80,23, 0xa191f00,23, 0xa191f80,23, 0xa192000,23, 0xa192080,23, 0xa192100,23, 0xa192180,23, 0xa192200,23, 0xa192280,23, 0xa192300,23, 0xa192380,23, 0xa192400,23, 0xa192480,23, 0xa192500,23, 0xa192580,23, 0xa192600,23, 0xa192680,23, 0xa192700,23, 0xa192780,23, 0xa192800,23, 0xa192880,23, 0xa192900,23, 0xa192980,23, 0xa192a00,23, 0xa192a80,23, 0xa192b00,23, 0xa192b80,23, 0xa192c00,23, 0xa192c80,23, 0xa192d00,23, 0xa192d80,23, 0xa192e00,23, 0xa192e80,23, 0xa192f00,23, 0xa192f80,23, 0xa193000,23, 0xa193080,23, 0xa193100,23, 0xa193180,23, 0xa193200,23, 0xa193280,23, 0xa193300,23, 0xa193380,23, 0xa193400,23, 0xa193480,23, 0xa193500,23, 0xa193580,23, 0xa193600,23, 0xa193680,23, 0xa193700,23, 0xa193780,23, 0xa193800,23, 0xa193880,23, 0xa193900,23, 0xa193980,23, 0xa193a00,23, 0xa193a80,23, 0xa193b00,23, 0xa193b80,23, 0xa193c00,23, 0xa193c80,23, 0xa193d00,23, 0xa193d80,23, 0xa193e00,23, 0xa193e80,23, 0xa193f00,23, 0xa193f80,23, 0xa194000,23, 0xa194080,23, 0xa194100,23, 0xa194180,23, 0xa194200,23, 0xa194280,23, 0xa194300,23, 0xa194380,23, 0xa194400,23, 0xa194480,23, 0xa194500,23, 0xa194580,23, 0xa194600,23, 0xa194680,23, 0xa194700,23, 0xa194780,23, 0xa194800,23, 0xa194880,23, 0xa194900,23, 0xa194980,23, 0xa194a00,23, 0xa194a80,23, 0xa194b00,23, 0xa194b80,23, 0xa194c00,23, 0xa194c80,23, 0xa194d00,23, 0xa194d80,23, 0xa194e00,23, 0xa194e80,23, 0xa194f00,23, 0xa194f80,23, 0xa195000,23, 0xa195080,23, 0xa195100,23, 0xa195180,23, 0xa195200,23, 0xa195280,23, 0xa195300,23, 0xa195380,23, 0xa195400,23, 0xa195480,23, 0xa195500,23, 0xa195580,23, 0xa195600,23, 0xa195680,23, 0xa195700,23, 0xa195780,23, 0xa195800,23, 0xa195880,23, 0xa195900,23, 0xa195980,23, 0xa195a00,23, 0xa195a80,23, 0xa195b00,23, 0xa195b80,23, 0xa195c00,23, 0xa195c80,23, 0xa195d00,23, 0xa195d80,23, 0xa195e00,23, 0xa195e80,23, 0xa195f00,23, 0xa195f80,23, 0xa196000,23, 0xa196080,23, 0xa196100,23, 0xa196180,23, 0xa196200,23, 0xa196280,23, 0xa196300,23, 0xa196380,23, 0xa196400,23, 0xa196480,23, 0xa196500,23, 0xa196580,23, 0xa196600,23, 0xa196680,23, 0xa196700,23, 0xa196780,23, 0xa196800,23, 0xa196880,23, 0xa196900,23, 0xa196980,23, 0xa196a00,23, 0xa196a80,23, 0xa196b00,23, 0xa196b80,23, 0xa196c00,23, 0xa196c80,23, 0xa196d00,23, 0xa196d80,23, 0xa196e00,23, 0xa196e80,23, 0xa196f00,23, 0xa196f80,23, 0xa197000,23, 0xa197080,23, 0xa197100,23, 0xa197180,23, 0xa197200,23, 0xa197280,23, 0xa197300,23, 0xa197380,23, 0xa197400,23, 0xa197480,23, 0xa197500,23, 0xa197580,23, 0xa197600,23, 0xa197680,23, 0xa197700,23, 0xa197780,23, 0xa197800,23, 0xa197880,23, 0xa197900,23, 0xa197980,23, 0xa197a00,23, 0xa197a80,23, 0xa197b00,23, 0xa197b80,23, 0xa197c00,23, 0xa197c80,23, 0xa197d00,23, 0xa197d80,23, 0xa197e00,23, 0xa197e80,23, 0xa197f00,23, 0xa197f80,23, 0xa198000,23, 0xa198080,23, 0xa198100,23, 0xa198180,23, 0xa198200,23, 0xa198280,23, 0xa198300,23, 0xa198380,23, 0xa198400,23, 0xa198480,23, 0xa198500,23, 0xa198580,23, 0xa198600,23, 0xa198680,23, 0xa198700,23, 0xa198780,23, 0xa198800,23, 0xa198880,23, 0xa198900,23, 0xa198980,23, 0xa198a00,23, 0xa198a80,23, 0xa198b00,23, 0xa198b80,23, 0xa198c00,23, 0xa198c80,23, 0xa198d00,23, 0xa198d80,23, 0xa198e00,23, 0xa198e80,23, 0xa198f00,23, 0xa198f80,23, 0xa199000,23, 0xa199080,23, 0xa199100,23, 0xa199180,23, 0xa199200,23, 0xa199280,23, 0xa199300,23, 0xa199380,23, 0xa199400,23, 0xa199480,23, 0xa199500,23, 0xa199580,23, 0xa199600,23, 0xa199680,23, 0xa199700,23, 0xa199780,23, 0xa199800,23, 0xa199880,23, 0xa199900,23, 0xa199980,23, 0xa199a00,23, 0xa199a80,23, 0xa199b00,23, 0xa199b80,23, 0xa199c00,23, 0xa199c80,23, 0xa199d00,23, 0xa199d80,23, 0xa199e00,23, 0xa199e80,23, 0xa199f00,23, 0xa199f80,23, 0xa19a000,23, 0xa19a080,23, 0xa19a100,23, 0xa19a180,23, 0xa19a200,23, 0xa19a280,23, 0xa19a300,23, 0xa19a380,23, 0xa19a400,23, 0xa19a480,23, 0xa19a500,23, 0xa19a580,23, 0xa19a600,23, 0xa19a680,23, 0xa19a700,23, 0xa19a780,23, 0xa19a800,23, 0xa19a880,23, 0xa19a900,23, 0xa19a980,23, 0xa19aa00,23, 0xa19aa80,23, 0xa19ab00,23, 0xa19ab80,23, 0xa19ac00,23, 0xa19ac80,23, 0xa19ad00,23, 0xa19ad80,23, 0xa19ae00,23, 0xa19ae80,23, 0xa19af00,23, 0xa19af80,23, 0xa19b000,23, 0xa19b080,23, 0xa19b100,23, 0xa19b180,23, 0xa19b200,23, 0xa19b280,23, 0xa19b300,23, 0xa19b380,23, 0xa19b400,23, 0xa19b480,23, 0xa19b500,23, 0xa19b580,23, 0xa19b600,23, 0xa19b680,23, 0xa19b700,23, 0xa19b780,23, 0xa19b800,23, 0xa19b880,23, 0xa19b900,23, 0xa19b980,23, 0xa19ba00,23, 0xa19ba80,23, 0xa19bb00,23, 0xa19bb80,23, 0xa19bc00,23, 0xa19bc80,23, 0xa19bd00,23, 0xa19bd80,23, 0xa19be00,23, 0xa19be80,23, 0xa19bf00,23, 0xa19bf80,23, 0xa19c000,23, 0xa19c080,23, 0xa19c100,23, 0xa19c180,23, 0xa19c200,23, 0xa19c280,23, 0xa19c300,23, 0xa19c380,23, 0xa19c400,23, 0xa19c480,23, 0xa19c500,23, 0xa19c580,23, 0xa19c600,23, 0xa19c680,23, 0xa19c700,23, 0xa19c780,23, 0xa19c800,23, 0xa19c880,23, 0xa19c900,23, 0xa19c980,23, 0xa19ca00,23, 0xa19ca80,23, 0xa19cb00,23, 0xa19cb80,23, 0xa19cc00,23, 0xa19cc80,23, 0xa19cd00,23, 0xa19cd80,23, 0xa19ce00,23, 0xa19ce80,23, 0xa19cf00,23, 0xa19cf80,23, 0xa19d000,23, 0xa19d080,23, 0xa19d100,23, 0xa19d180,23, 0xa19d200,23, 0xa19d280,23, 0xa19d300,23, 0xa19d380,23, 0xa19d400,23, 0xa19d480,23, 0xa19d500,23, 0xa19d580,23, 0xa19d600,23, 0xa19d680,23, 0xa19d700,23, 0xa19d780,23, 0xa19d800,23, 0xa19d880,23, 0xa19d900,23, 0xa19d980,23, 0xa19da00,23, 0xa19da80,23, 0xa19db00,23, 0xa19db80,23, 0xa19dc00,23, 0xa19dc80,23, 0xa19dd00,23, 0xa19dd80,23, 0xa19de00,23, 0xa19de80,23, 0xa19df00,23, 0xa19df80,23, 0xa19e000,23, 0xa19e080,23, 0xa19e100,23, 0xa19e180,23, 0xa19e200,23, 0xa19e280,23, 0xa19e300,23, 0xa19e380,23, 0xa19e400,23, 0xa19e480,23, 0xa19e500,23, 0xa19e580,23, 0xa19e600,23, 0xa19e680,23, 0xa19e700,23, 0xa19e780,23, 0xa19e800,23, 0xa19e880,23, 0xa19e900,23, 0xa19e980,23, 0xa19ea00,23, 0xa19ea80,23, 0xa19eb00,23, 0xa19eb80,23, 0xa19ec00,23, 0xa19ec80,23, 0xa19ed00,23, 0xa19ed80,23, 0xa19ee00,23, 0xa19ee80,23, 0xa19ef00,23, 0xa19ef80,23, 0xa19f000,23, 0xa19f080,23, 0xa19f100,23, 0xa19f180,23, 0xa19f200,23, 0xa19f280,23, 0xa19f300,23, 0xa19f380,23, 0xa19f400,23, 0xa19f480,23, 0xa19f500,23, 0xa19f580,23, 0xa19f600,23, 0xa19f680,23, 0xa19f700,23, 0xa19f780,23, 0xa19f800,23, 0xa19f880,23, 0xa19f900,23, 0xa19f980,23, 0xa19fa00,23, 0xa19fa80,23, 0xa19fb00,23, 0xa19fb80,23, 0xa19fc00,23, 0xa19fc80,23, 0xa19fd00,23, 0xa19fd80,23, 0xa19fe00,23, 0xa19fe80,23, 0xa19ff00,23, 0xa19ff80,23, 0xa1a0000,23, 0xa1a0080,23, 0xa1a0100,23, 0xa1a0180,23, 0xa1a0200,23, 0xa1a0280,23, 0xa1a0300,23, 0xa1a0380,23, 0xa1a0400,23, 0xa1a0480,23, 0xa1a0500,23, 0xa1a0580,23, 0xa1a0600,23, 0xa1a0680,23, 0xa1a0700,23, 0xa1a0780,23, 0xa1a0800,23, 0xa1a0880,23, 0xa1a0900,23, 0xa1a0980,23, 0xa1a0a00,23, 0xa1a0a80,23, 0xa1a0b00,23, 0xa1a0b80,23, 0xa1a0c00,23, 0xa1a0c80,23, 0xa1a0d00,23, 0xa1a0d80,23, 0xa1a0e00,23, 0xa1a0e80,23, 0xa1a0f00,23, 0xa1a0f80,23, 0xa1a1000,23, 0xa1a1080,23, 0xa1a1100,23, 0xa1a1180,23, 0xa1a1200,23, 0xa1a1280,23, 0xa1a1300,23, 0xa1a1380,23, 0xa1a1400,23, 0xa1a1480,23, 0xa1a1500,23, 0xa1a1580,23, 0xa1a1600,23, 0xa1a1680,23, 0xa1a1700,23, 0xa1a1780,23, 0xa1a1800,23, 0xa1a1880,23, 0xa1a1900,23, 0xa1a1980,23, 0xa1a1a00,23, 0xa1a1a80,23, 0xa1a1b00,23, 0xa1a1b80,23, 0xa1a1c00,23, 0xa1a1c80,23, 0xa1a1d00,23, 0xa1a1d80,23, 0xa1a1e00,23, 0xa1a1e80,23, 0xa1a1f00,23, 0xa1a1f80,23, 0xa1a2000,23, 0xa1a2080,23, 0xa1a2100,23, 0xa1a2180,23, 0xa1a2200,23, 0xa1a2280,23, 0xa1a2300,23, 0xa1a2380,23, 0xa1a2400,23, 0xa1a2480,23, 0xa1a2500,23, 0xa1a2580,23, 0xa1a2600,23, 0xa1a2680,23, 0xa1a2700,23, 0xa1a2780,23, 0xa1a2800,23, 0xa1a2880,23, 0xa1a2900,23, 0xa1a2980,23, 0xa1a2a00,23, 0xa1a2a80,23, 0xa1a2b00,23, 0xa1a2b80,23, 0xa1a2c00,23, 0xa1a2c80,23, 0xa1a2d00,23, 0xa1a2d80,23, 0xa1a2e00,23, 0xa1a2e80,23, 0xa1a2f00,23, 0xa1a2f80,23, 0xa1a3000,23, 0xa1a3080,23, 0xa1a3100,23, 0xa1a3180,23, 0xa1a3200,23, 0xa1a3280,23, 0xa1a3300,23, 0xa1a3380,23, 0xa1a3400,23, 0xa1a3480,23, 0xa1a3500,23, 0xa1a3580,23, 0xa1a3600,23, 0xa1a3680,23, 0xa1a3700,23, 0xa1a3780,23, 0xa1a3800,23, 0xa1a3880,23, 0xa1a3900,23, 0xa1a3980,23, 0xa1a3a00,23, 0xa1a3a80,23, 0xa1a3b00,23, 0xa1a3b80,23, 0xa1a3c00,23, 0xa1a3c80,23, 0xa1a3d00,23, 0xa1a3d80,23, 0xa1a3e00,23, 0xa1a3e80,23, 0xa1a3f00,23, 0xa1a3f80,23, 0xa1a4000,23, 0xa1a4080,23, 0xa1a4100,23, 0xa1a4180,23, 0xa1a4200,23, 0xa1a4280,23, 0xa1a4300,23, 0xa1a4380,23, 0xa1a4400,23, 0xa1a4480,23, 0xa1a4500,23, 0xa1a4580,23, 0xa1a4600,23, 0xa1a4680,23, 0xa1a4700,23, 0xa1a4780,23, 0xa1a4800,23, 0xa1a4880,23, 0xa1a4900,23, 0xa1a4980,23, 0xa1a4a00,23, 0xa1a4a80,23, 0xa1a4b00,23, 0xa1a4b80,23, 0xa1a4c00,23, 0xa1a4c80,23, 0xa1a4d00,23, 0xa1a4d80,23, 0xa1a4e00,23, 0xa1a4e80,23, 0xa1a4f00,23, 0xa1a4f80,23, 0xa1a5000,23, 0xa1a5080,23, 0xa1a5100,23, 0xa1a5180,23, 0xa1a5200,23, 0xa1a5280,23, 0xa1a5300,23, 0xa1a5380,23, 0xa1a5400,23, 0xa1a5480,23, 0xa1a5500,23, 0xa1a5580,23, 0xa1a5600,23, 0xa1a5680,23, 0xa1a5700,23, 0xa1a5780,23, 0xa1a5800,23, 0xa1a5880,23, 0xa1a5900,23, 0xa1a5980,23, 0xa1a5a00,23, 0xa1a5a80,23, 0xa1a5b00,23, 0xa1a5b80,23, 0xa1a5c00,23, 0xa1a5c80,23, 0xa1a5d00,23, 0xa1a5d80,23, 0xa1a5e00,23, 0xa1a5e80,23, 0xa1a5f00,23, 0xa1a5f80,23, 0xa1a6000,23, 0xa1a6080,23, 0xa1a6100,23, 0xa1a6180,23, 0xa1a6200,23, 0xa1a6280,23, 0xa1a6300,23, 0xa1a6380,23, 0xa1a6400,23, 0xa1a6480,23, 0xa1a6500,23, 0xa1a6580,23, 0xa1a6600,23, 0xa1a6680,23, 0xa1a6700,23, 0xa1a6780,23, 0xa1a6800,23, 0xa1a6880,23, 0xa1a6900,23, 0xa1a6980,23, 0xa1a6a00,23, 0xa1a6a80,23, 0xa1a6b00,23, 0xa1a6b80,23, 0xa1a6c00,23, 0xa1a6c80,23, 0xa1a6d00,23, 0xa1a6d80,23, 0xa1a6e00,23, 0xa1a6e80,23, 0xa1a6f00,23, 0xa1a6f80,23, 0xa1a7000,23, 0xa1a7080,23, 0xa1a7100,23, 0xa1a7180,23, 0xa1a7200,23, 0xa1a7280,23, 0xa1a7300,23, 0xa1a7380,23, 0xa1a7400,23, 0xa1a7480,23, 0xa1a7500,23, 0xa1a7580,23, 0xa1a7600,23, 0xa1a7680,23, 0xa1a7700,23, 0xa1a7780,23, 0xa1a7800,23, 0xa1a7880,23, 0xa1a7900,23, 0xa1a7980,23, 0xa1a7a00,23, 0xa1a7a80,23, 0xa1a7b00,23, 0xa1a7b80,23, 0xa1a7c00,23, 0xa1a7c80,23, 0xa1a7d00,23, 0xa1a7d80,23, 0xa1a7e00,23, 0xa1a7e80,23, 0xa1a7f00,23, 0xa1a7f80,23, 0xa1a8000,23, 0xa1a8080,23, 0xa1a8100,23, 0xa1a8180,23, 0xa1a8200,23, 0xa1a8280,23, 0xa1a8300,23, 0xa1a8380,23, 0xa1a8400,23, 0xa1a8480,23, 0xa1a8500,23, 0xa1a8580,23, 0xa1a8600,23, 0xa1a8680,23, 0xa1a8700,23, 0xa1a8780,23, 0xa1a8800,23, 0xa1a8880,23, 0xa1a8900,23, 0xa1a8980,23, 0xa1a8a00,23, 0xa1a8a80,23, 0xa1a8b00,23, 0xa1a8b80,23, 0xa1a8c00,23, 0xa1a8c80,23, 0xa1a8d00,23, 0xa1a8d80,23, 0xa1a8e00,23, 0xa1a8e80,23, 0xa1a8f00,23, 0xa1a8f80,23, 0xa1a9000,23, 0xa1a9080,23, 0xa1a9100,23, 0xa1a9180,23, 0xa1a9200,23, 0xa1a9280,23, 0xa1a9300,23, 0xa1a9380,23, 0xa1a9400,23, 0xa1a9480,23, 0xa1a9500,23, 0xa1a9580,23, 0xa1a9600,23, 0xa1a9680,23, 0xa1a9700,23, 0xa1a9780,23, 0xa1a9800,23, 0xa1a9880,23, 0xa1a9900,23, 0xa1a9980,23, 0xa1a9a00,23, 0xa1a9a80,23, 0xa1a9b00,23, 0xa1a9b80,23, 0xa1a9c00,23, 0xa1a9c80,23, 0xa1a9d00,23, 0xa1a9d80,23, 0xa1a9e00,23, 0xa1a9e80,23, 0xa1a9f00,23, 0xa1a9f80,23, 0xa1aa000,23, 0xa1aa080,23, 0xa1aa100,23, 0xa1aa180,23, 0xa1aa200,23, 0xa1aa280,23, 0xa1aa300,23, 0xa1aa380,23, 0xa1aa400,23, 0xa1aa480,23, 0xa1aa500,23, 0xa1aa580,23, 0xa1aa600,23, 0xa1aa680,23, 0xa1aa700,23, 0xa1aa780,23, 0xa1aa800,23, 0xa1aa880,23, 0xa1aa900,23, 0xa1aa980,23, 0xa1aaa00,23, 0xa1aaa80,23, 0xa1aab00,23, 0xa1aab80,23, 0xa1aac00,23, 0xa1aac80,23, 0xa1aad00,23, 0xa1aad80,23, 0xa1aae00,23, 0xa1aae80,23, 0xa1aaf00,23, 0xa1aaf80,23, 0xa1ab000,23, 0xa1ab080,23, 0xa1ab100,23, 0xa1ab180,23, 0xa1ab200,23, 0xa1ab280,23, 0xa1ab300,23, 0xa1ab380,23, 0xa1ab400,23, 0xa1ab480,23, 0xa1ab500,23, 0xa1ab580,23, 0xa1ab600,23, 0xa1ab680,23, 0xa1ab700,23, 0xa1ab780,23, 0xa1ab800,23, 0xa1ab880,23, 0xa1ab900,23, 0xa1ab980,23, 0xa1aba00,23, 0xa1aba80,23, 0xa1abb00,23, 0xa1abb80,23, 0xa1abc00,23, 0xa1abc80,23, 0xa1abd00,23, 0xa1abd80,23, 0xa1abe00,23, 0xa1abe80,23, 0xa1abf00,23, 0xa1abf80,23, 0xa1ac000,23, 0xa1ac080,23, 0xa1ac100,23, 0xa1ac180,23, 0xa1ac200,23, 0xa1ac280,23, 0xa1ac300,23, 0xa1ac380,23, 0xa1ac400,23, 0xa1ac480,23, 0xa1ac500,23, 0xa1ac580,23, 0xa1ac600,23, 0xa1ac680,23, 0xa1ac700,23, 0xa1ac780,23, 0xa1ac800,23, 0xa1ac880,23, 0xa1ac900,23, 0xa1ac980,23, 0xa1aca00,23, 0xa1aca80,23, 0xa1acb00,23, 0xa1acb80,23, 0xa1acc00,23, 0xa1acc80,23, 0xa1acd00,23, 0xa1acd80,23, 0xa1ace00,23, 0xa1ace80,23, 0xa1acf00,23, 0xa1acf80,23, 0xa1ad000,23, 0xa1ad080,23, 0xa1ad100,23, 0xa1ad180,23, 0xa1ad200,23, 0xa1ad280,23, 0xa1ad300,23, 0xa1ad380,23, 0xa1ad400,23, 0xa1ad480,23, 0xa1ad500,23, 0xa1ad580,23, 0xa1ad600,23, 0xa1ad680,23, 0xa1ad700,23, 0xa1ad780,23, 0xa1ad800,23, 0xa1ad880,23, 0xa1ad900,23, 0xa1ad980,23, 0xa1ada00,23, 0xa1ada80,23, 0xa1adb00,23, 0xa1adb80,23, 0xa1adc00,23, 0xa1adc80,23, 0xa1add00,23, 0xa1add80,23, 0xa1ade00,23, 0xa1ade80,23, 0xa1adf00,23, 0xa1adf80,23, 0xa1ae000,23, 0xa1ae080,23, 0xa1ae100,23, 0xa1ae180,23, 0xa1ae200,23, 0xa1ae280,23, 0xa1ae300,23, 0xa1ae380,23, 0xa1ae400,23, 0xa1ae480,23, 0xa1ae500,23, 0xa1ae580,23, 0xa1ae600,23, 0xa1ae680,23, 0xa1ae700,23, 0xa1ae780,23, 0xa1ae800,23, 0xa1ae880,23, 0xa1ae900,23, 0xa1ae980,23, 0xa1aea00,23, 0xa1aea80,23, 0xa1aeb00,23, 0xa1aeb80,23, 0xa1aec00,23, 0xa1aec80,23, 0xa1aed00,23, 0xa1aed80,23, 0xa1aee00,23, 0xa1aee80,23, 0xa1aef00,23, 0xa1aef80,23, 0xa1af000,23, 0xa1af080,23, 0xa1af100,23, 0xa1af180,23, 0xa1af200,23, 0xa1af280,23, 0xa1af300,23, 0xa1af380,23, 0xa1af400,23, 0xa1af480,23, 0xa1af500,23, 0xa1af580,23, 0xa1af600,23, 0xa1af680,23, 0xa1af700,23, 0xa1af780,23, 0xa1af800,23, 0xa1af880,23, 0xa1af900,23, 0xa1af980,23, 0xa1afa00,23, 0xa1afa80,23, 0xa1afb00,23, 0xa1afb80,23, 0xa1afc00,23, 0xa1afc80,23, 0xa1afd00,23, 0xa1afd80,23, 0xa1afe00,23, 0xa1afe80,23, 0xa1aff00,23, 0xa1aff80,23, 0xa1b0000,23, 0xa1b0080,23, 0xa1b0100,23, 0xa1b0180,23, 0xa1b0200,23, 0xa1b0280,23, 0xa1b0300,23, 0xa1b0380,23, 0xa1b0400,23, 0xa1b0480,23, 0xa1b0500,23, 0xa1b0580,23, 0xa1b0600,23, 0xa1b0680,23, 0xa1b0700,23, 0xa1b0780,23, 0xa1b0800,23, 0xa1b0880,23, 0xa1b0900,23, 0xa1b0980,23, 0xa1b0a00,23, 0xa1b0a80,23, 0xa1b0b00,23, 0xa1b0b80,23, 0xa1b0c00,23, 0xa1b0c80,23, 0xa1b0d00,23, 0xa1b0d80,23, 0xa1b0e00,23, 0xa1b0e80,23, 0xa1b0f00,23, 0xa1b0f80,23, 0xa1b1000,23, 0xa1b1080,23, 0xa1b1100,23, 0xa1b1180,23, 0xa1b1200,23, 0xa1b1280,23, 0xa1b1300,23, 0xa1b1380,23, 0xa1b1400,23, 0xa1b1480,23, 0xa1b1500,23, 0xa1b1580,23, 0xa1b1600,23, 0xa1b1680,23, 0xa1b1700,23, 0xa1b1780,23, 0xa1b1800,23, 0xa1b1880,23, 0xa1b1900,23, 0xa1b1980,23, 0xa1b1a00,23, 0xa1b1a80,23, 0xa1b1b00,23, 0xa1b1b80,23, 0xa1b1c00,23, 0xa1b1c80,23, 0xa1b1d00,23, 0xa1b1d80,23, 0xa1b1e00,23, 0xa1b1e80,23, 0xa1b1f00,23, 0xa1b1f80,23, 0xa1b2000,23, 0xa1b2080,23, 0xa1b2100,23, 0xa1b2180,23, 0xa1b2200,23, 0xa1b2280,23, 0xa1b2300,23, 0xa1b2380,23, 0xa1b2400,23, 0xa1b2480,23, 0xa1b2500,23, 0xa1b2580,23, 0xa1b2600,23, 0xa1b2680,23, 0xa1b2700,23, 0xa1b2780,23, 0xa1b2800,23, 0xa1b2880,23, 0xa1b2900,23, 0xa1b2980,23, 0xa1b2a00,23, 0xa1b2a80,23, 0xa1b2b00,23, 0xa1b2b80,23, 0xa1b2c00,23, 0xa1b2c80,23, 0xa1b2d00,23, 0xa1b2d80,23, 0xa1b2e00,23, 0xa1b2e80,23, 0xa1b2f00,23, 0xa1b2f80,23, 0xa1b3000,23, 0xa1b3080,23, 0xa1b3100,23, 0xa1b3180,23, 0xa1b3200,23, 0xa1b3280,23, 0xa1b3300,23, 0xa1b3380,23, 0xa1b3400,23, 0xa1b3480,23, 0xa1b3500,23, 0xa1b3580,23, 0xa1b3600,23, 0xa1b3680,23, 0xa1b3700,23, 0xa1b3780,23, 0xa1b3800,23, 0xa1b3880,23, 0xa1b3900,23, 0xa1b3980,23, 0xa1b3a00,23, 0xa1b3a80,23, 0xa1b3b00,23, 0xa1b3b80,23, 0xa1b3c00,23, 0xa1b3c80,23, 0xa1b3d00,23, 0xa1b3d80,23, 0xa1b3e00,23, 0xa1b3e80,23, 0xa1b3f00,23, 0xa1b3f80,23, 0xa1b4000,23, 0xa1b4080,23, 0xa1b4100,23, 0xa1b4180,23, 0xa1b4200,23, 0xa1b4280,23, 0xa1b4300,23, 0xa1b4380,23, 0xa1b4400,23, 0xa1b4480,23, 0xa1b4500,23, 0xa1b4580,23, 0xa1b4600,23, 0xa1b4680,23, 0xa1b4700,23, 0xa1b4780,23, 0xa1b4800,23, 0xa1b4880,23, 0xa1b4900,23, 0xa1b4980,23, 0xa1b4a00,23, 0xa1b4a80,23, 0xa1b4b00,23, 0xa1b4b80,23, 0xa1b4c00,23, 0xa1b4c80,23, 0xa1b4d00,23, 0xa1b4d80,23, 0xa1b4e00,23, 0xa1b4e80,23, 0xa1b4f00,23, 0xa1b4f80,23, 0xa1b5000,23, 0xa1b5080,23, 0xa1b5100,23, 0xa1b5180,23, 0xa1b5200,23, 0xa1b5280,23, 0xa1b5300,23, 0xa1b5380,23, 0xa1b5400,23, 0xa1b5480,23, 0xa1b5500,23, 0xa1b5580,23, 0xa1b5600,23, 0xa1b5680,23, 0xa1b5700,23, 0xa1b5780,23, 0xa1b5800,23, 0xa1b5880,23, 0xa1b5900,23, 0xa1b5980,23, 0xa1b5a00,23, 0xa1b5a80,23, 0xa1b5b00,23, 0xa1b5b80,23, 0xa1b5c00,23, 0xa1b5c80,23, 0xa1b5d00,23, 0xa1b5d80,23, 0xa1b5e00,23, 0xa1b5e80,23, 0xa1b5f00,23, 0xa1b5f80,23, 0xa1b6000,23, 0xa1b6080,23, 0xa1b6100,23, 0xa1b6180,23, 0xa1b6200,23, 0xa1b6280,23, 0xa1b6300,23, 0xa1b6380,23, 0xa1b6400,23, 0xa1b6480,23, 0xa1b6500,23, 0xa1b6580,23, 0xa1b6600,23, 0xa1b6680,23, 0xa1b6700,23, 0xa1b6780,23, 0xa1b6800,23, 0xa1b6880,23, 0xa1b6900,23, 0xa1b6980,23, 0xa1b6a00,23, 0xa1b6a80,23, 0xa1b6b00,23, 0xa1b6b80,23, 0xa1b6c00,23, 0xa1b6c80,23, 0xa1b6d00,23, 0xa1b6d80,23, 0xa1b6e00,23, 0xa1b6e80,23, 0xa1b6f00,23, 0xa1b6f80,23, 0xa1b7000,23, 0xa1b7080,23, 0xa1b7100,23, 0xa1b7180,23, 0xa1b7200,23, 0xa1b7280,23, 0xa1b7300,23, 0xa1b7380,23, 0xa1b7400,23, 0xa1b7480,23, 0xa1b7500,23, 0xa1b7580,23, 0xa1b7600,23, 0xa1b7680,23, 0xa1b7700,23, 0xa1b7780,23, 0xa1b7800,23, 0xa1b7880,23, 0xa1b7900,23, 0xa1b7980,23, 0xa1b7a00,23, 0xa1b7a80,23, 0xa1b7b00,23, 0xa1b7b80,23, 0xa1b7c00,23, 0xa1b7c80,23, 0xa1b7d00,23, 0xa1b7d80,23, 0xa1b7e00,23, 0xa1b7e80,23, 0xa1b7f00,23, 0xa1b7f80,23, 0xa1b8000,23, 0xa1b8080,23, 0xa1b8100,23, 0xa1b8180,23, 0xa1b8200,23, 0xa1b8280,23, 0xa1b8300,23, 0xa1b8380,23, 0xa1b8400,23, 0xa1b8480,23, 0xa1b8500,23, 0xa1b8580,23, 0xa1b8600,23, 0xa1b8680,23, 0xa1b8700,23, 0xa1b8780,23, 0xa1b8800,23, 0xa1b8880,23, 0xa1b8900,23, 0xa1b8980,23, 0xa1b8a00,23, 0xa1b8a80,23, 0xa1b8b00,23, 0xa1b8b80,23, 0xa1b8c00,23, 0xa1b8c80,23, 0xa1b8d00,23, 0xa1b8d80,23, 0xa1b8e00,23, 0xa1b8e80,23, 0xa1b8f00,23, 0xa1b8f80,23, 0xa1b9000,23, 0xa1b9080,23, 0xa1b9100,23, 0xa1b9180,23, 0xa1b9200,23, 0xa1b9280,23, 0xa1b9300,23, 0xa1b9380,23, 0xa1b9400,23, 0xa1b9480,23, 0xa1b9500,23, 0xa1b9580,23, 0xa1b9600,23, 0xa1b9680,23, 0xa1b9700,23, 0xa1b9780,23, 0xa1b9800,23, 0xa1b9880,23, 0xa1b9900,23, 0xa1b9980,23, 0xa1b9a00,23, 0xa1b9a80,23, 0xa1b9b00,23, 0xa1b9b80,23, 0xa1b9c00,23, 0xa1b9c80,23, 0xa1b9d00,23, 0xa1b9d80,23, 0xa1b9e00,23, 0xa1b9e80,23, 0xa1b9f00,23, 0xa1b9f80,23, 0xa1ba000,23, 0xa1ba080,23, 0xa1ba100,23, 0xa1ba180,23, 0xa1ba200,23, 0xa1ba280,23, 0xa1ba300,23, 0xa1ba380,23, 0xa1ba400,23, 0xa1ba480,23, 0xa1ba500,23, 0xa1ba580,23, 0xa1ba600,23, 0xa1ba680,23, 0xa1ba700,23, 0xa1ba780,23, 0xa1ba800,23, 0xa1ba880,23, 0xa1ba900,23, 0xa1ba980,23, 0xa1baa00,23, 0xa1baa80,23, 0xa1bab00,23, 0xa1bab80,23, 0xa1bac00,23, 0xa1bac80,23, 0xa1bad00,23, 0xa1bad80,23, 0xa1bae00,23, 0xa1bae80,23, 0xa1baf00,23, 0xa1baf80,23, 0xa1bb000,23, 0xa1bb080,23, 0xa1bb100,23, 0xa1bb180,23, 0xa1bb200,23, 0xa1bb280,23, 0xa1bb300,23, 0xa1bb380,23, 0xa1bb400,23, 0xa1bb480,23, 0xa1bb500,23, 0xa1bb580,23, 0xa1bb600,23, 0xa1bb680,23, 0xa1bb700,23, 0xa1bb780,23, 0xa1bb800,23, 0xa1bb880,23, 0xa1bb900,23, 0xa1bb980,23, 0xa1bba00,23, 0xa1bba80,23, 0xa1bbb00,23, 0xa1bbb80,23, 0xa1bbc00,23, 0xa1bbc80,23, 0xa1bbd00,23, 0xa1bbd80,23, 0xa1bbe00,23, 0xa1bbe80,23, 0xa1bbf00,23, 0xa1bbf80,23, 0xa1bc000,23, 0xa1bc080,23, 0xa1bc100,23, 0xa1bc180,23, 0xa1bc200,23, 0xa1bc280,23, 0xa1bc300,23, 0xa1bc380,23, 0xa1bc400,23, 0xa1bc480,23, 0xa1bc500,23, 0xa1bc580,23, 0xa1bc600,23, 0xa1bc680,23, 0xa1bc700,23, 0xa1bc780,23, 0xa1bc800,23, 0xa1bc880,23, 0xa1bc900,23, 0xa1bc980,23, 0xa1bca00,23, 0xa1bca80,23, 0xa1bcb00,23, 0xa1bcb80,23, 0xa1bcc00,23, 0xa1bcc80,23, 0xa1bcd00,23, 0xa1bcd80,23, 0xa1bce00,23, 0xa1bce80,23, 0xa1bcf00,23, 0xa1bcf80,23, 0xa1bd000,23, 0xa1bd080,23, 0xa1bd100,23, 0xa1bd180,23, 0xa1bd200,23, 0xa1bd280,23, 0xa1bd300,23, 0xa1bd380,23, 0xa1bd400,23, 0xa1bd480,23, 0xa1bd500,23, 0xa1bd580,23, 0xa1bd600,23, 0xa1bd680,23, 0xa1bd700,23, 0xa1bd780,23, 0xa1bd800,23, 0xa1bd880,23, 0xa1bd900,23, 0xa1bd980,23, 0xa1bda00,23, 0xa1bda80,23, 0xa1bdb00,23, 0xa1bdb80,23, 0xa1bdc00,23, 0xa1bdc80,23, 0xa1bdd00,23, 0xa1bdd80,23, 0xa1bde00,23, 0xa1bde80,23, 0xa1bdf00,23, 0xa1bdf80,23, 0xa1be000,23, 0xa1be080,23, 0xa1be100,23, 0xa1be180,23, 0xa1be200,23, 0xa1be280,23, 0xa1be300,23, 0xa1be380,23, 0xa1be400,23, 0xa1be480,23, 0xa1be500,23, 0xa1be580,23, 0xa1be600,23, 0xa1be680,23, 0xa1be700,23, 0xa1be780,23, 0xa1be800,23, 0xa1be880,23, 0xa1be900,23, 0xa1be980,23, 0xa1bea00,23, 0xa1bea80,23, 0xa1beb00,23, 0xa1beb80,23, 0xa1bec00,23, 0xa1bec80,23, 0xa1bed00,23, 0xa1bed80,23, 0xa1bee00,23, 0xa1bee80,23, 0xa1bef00,23, 0xa1bef80,23, 0xa1bf000,23, 0xa1bf080,23, 0xa1bf100,23, 0xa1bf180,23, 0xa1bf200,23, 0xa1bf280,23, 0xa1bf300,23, 0xa1bf380,23, 0xa1bf400,23, 0xa1bf480,23, 0xa1bf500,23, 0xa1bf580,23, 0xa1bf600,23, 0xa1bf680,23, 0xa1bf700,23, 0xa1bf780,23, 0xa1bf800,23, 0xa1bf880,23, 0xa1bf900,23, 0xa1bf980,23, 0xa1bfa00,23, 0xa1bfa80,23, 0xa1bfb00,23, 0xa1bfb80,23, 0xa1bfc00,23, 0xa1bfc80,23, 0xa1bfd00,23, 0xa1bfd80,23, 0xa1bfe00,23, 0xa1bfe80,23, 0xa1bff00,23, 0xa1bff80,23, 0xa1c0000,23, 0xa1c0080,23, 0xa1c0100,23, 0xa1c0180,23, 0xa1c0200,23, 0xa1c0280,23, 0xa1c0300,23, 0xa1c0380,23, 0xa1c0400,23, 0xa1c0480,23, 0xa1c0500,23, 0xa1c0580,23, 0xa1c0600,23, 0xa1c0680,23, 0xa1c0700,23, 0xa1c0780,23, 0xa1c0800,23, 0xa1c0880,23, 0xa1c0900,23, 0xa1c0980,23, 0xa1c0a00,23, 0xa1c0a80,23, 0xa1c0b00,23, 0xa1c0b80,23, 0xa1c0c00,23, 0xa1c0c80,23, 0xa1c0d00,23, 0xa1c0d80,23, 0xa1c0e00,23, 0xa1c0e80,23, 0xa1c0f00,23, 0xa1c0f80,23, 0xa1c1000,23, 0xa1c1080,23, 0xa1c1100,23, 0xa1c1180,23, 0xa1c1200,23, 0xa1c1280,23, 0xa1c1300,23, 0xa1c1380,23, 0xa1c1400,23, 0xa1c1480,23, 0xa1c1500,23, 0xa1c1580,23, 0xa1c1600,23, 0xa1c1680,23, 0xa1c1700,23, 0xa1c1780,23, 0xa1c1800,23, 0xa1c1880,23, 0xa1c1900,23, 0xa1c1980,23, 0xa1c1a00,23, 0xa1c1a80,23, 0xa1c1b00,23, 0xa1c1b80,23, 0xa1c1c00,23, 0xa1c1c80,23, 0xa1c1d00,23, 0xa1c1d80,23, 0xa1c1e00,23, 0xa1c1e80,23, 0xa1c1f00,23, 0xa1c1f80,23, 0xa1c2000,23, 0xa1c2080,23, 0xa1c2100,23, 0xa1c2180,23, 0xa1c2200,23, 0xa1c2280,23, 0xa1c2300,23, 0xa1c2380,23, 0xa1c2400,23, 0xa1c2480,23, 0xa1c2500,23, 0xa1c2580,23, 0xa1c2600,23, 0xa1c2680,23, 0xa1c2700,23, 0xa1c2780,23, 0xa1c2800,23, 0xa1c2880,23, 0xa1c2900,23, 0xa1c2980,23, 0xa1c2a00,23, 0xa1c2a80,23, 0xa1c2b00,23, 0xa1c2b80,23, 0xa1c2c00,23, 0xa1c2c80,23, 0xa1c2d00,23, 0xa1c2d80,23, 0xa1c2e00,23, 0xa1c2e80,23, 0xa1c2f00,23, 0xa1c2f80,23, 0xa1c3000,23, 0xa1c3080,23, 0xa1c3100,23, 0xa1c3180,23, 0xa1c3200,23, 0xa1c3280,23, 0xa1c3300,23, 0xa1c3380,23, 0xa1c3400,23, 0xa1c3480,23, 0xa1c3500,23, 0xa1c3580,23, 0xa1c3600,23, 0xa1c3680,23, 0xa1c3700,23, 0xa1c3780,23, 0xa1c3800,23, 0xa1c3880,23, 0xa1c3900,23, 0xa1c3980,23, 0xa1c3a00,23, 0xa1c3a80,23, 0xa1c3b00,23, 0xa1c3b80,23, 0xa1c3c00,23, 0xa1c3c80,23, 0xa1c3d00,23, 0xa1c3d80,23, 0xa1c3e00,23, 0xa1c3e80,23, 0xa1c3f00,23, 0xa1c3f80,23, 0xa1c4000,23, 0xa1c4080,23, 0xa1c4100,23, 0xa1c4180,23, 0xa1c4200,23, 0xa1c4280,23, 0xa1c4300,23, 0xa1c4380,23, 0xa1c4400,23, 0xa1c4480,23, 0xa1c4500,23, 0xa1c4580,23, 0xa1c4600,23, 0xa1c4680,23, 0xa1c4700,23, 0xa1c4780,23, 0xa1c4800,23, 0xa1c4880,23, 0xa1c4900,23, 0xa1c4980,23, 0xa1c4a00,23, 0xa1c4a80,23, 0xa1c4b00,23, 0xa1c4b80,23, 0xa1c4c00,23, 0xa1c4c80,23, 0xa1c4d00,23, 0xa1c4d80,23, 0xa1c4e00,23, 0xa1c4e80,23, 0xa1c4f00,23, 0xa1c4f80,23, 0xa1c5000,23, 0xa1c5080,23, 0xa1c5100,23, 0xa1c5180,23, 0xa1c5200,23, 0xa1c5280,23, 0xa1c5300,23, 0xa1c5380,23, 0xa1c5400,23, 0xa1c5480,23, 0xa1c5500,23, 0xa1c5580,23, 0xa1c5600,23, 0xa1c5680,23, 0xa1c5700,23, 0xa1c5780,23, 0xa1c5800,23, 0xa1c5880,23, 0xa1c5900,23, 0xa1c5980,23, 0xa1c5a00,23, 0xa1c5a80,23, 0xa1c5b00,23, 0xa1c5b80,23, 0xa1c5c00,23, 0xa1c5c80,23, 0xa1c5d00,23, 0xa1c5d80,23, 0xa1c5e00,23, 0xa1c5e80,23, 0xa1c5f00,23, 0xa1c5f80,23, 0xa1c6000,23, 0xa1c6080,23, 0xa1c6100,23, 0xa1c6180,23, 0xa1c6200,23, 0xa1c6280,23, 0xa1c6300,23, 0xa1c6380,23, 0xa1c6400,23, 0xa1c6480,23, 0xa1c6500,23, 0xa1c6580,23, 0xa1c6600,23, 0xa1c6680,23, 0xa1c6700,23, 0xa1c6780,23, 0xa1c6800,23, 0xa1c6880,23, 0xa1c6900,23, 0xa1c6980,23, 0xa1c6a00,23, 0xa1c6a80,23, 0xa1c6b00,23, 0xa1c6b80,23, 0xa1c6c00,23, 0xa1c6c80,23, 0xa1c6d00,23, 0xa1c6d80,23, 0xa1c6e00,23, 0xa1c6e80,23, 0xa1c6f00,23, 0xa1c6f80,23, 0xa1c7000,23, 0xa1c7080,23, 0xa1c7100,23, 0xa1c7180,23, 0xa1c7200,23, 0xa1c7280,23, 0xa1c7300,23, 0xa1c7380,23, 0xa1c7400,23, 0xa1c7480,23, 0xa1c7500,23, 0xa1c7580,23, 0xa1c7600,23, 0xa1c7680,23, 0xa1c7700,23, 0xa1c7780,23, 0xa1c7800,23, 0xa1c7880,23, 0xa1c7900,23, 0xa1c7980,23, 0xa1c7a00,23, 0xa1c7a80,23, 0xa1c7b00,23, 0xa1c7b80,23, 0xa1c7c00,23, 0xa1c7c80,23, 0xa1c7d00,23, 0xa1c7d80,23, 0xa1c7e00,23, 0xa1c7e80,23, 0xa1c7f00,23, 0xa1c7f80,23, 0xa1c8000,23, 0xa1c8080,23, 0xa1c8100,23, 0xa1c8180,23, 0xa1c8200,23, 0xa1c8280,23, 0xa1c8300,23, 0xa1c8380,23, 0xa1c8400,23, 0xa1c8480,23, 0xa1c8500,23, 0xa1c8580,23, 0xa1c8600,23, 0xa1c8680,23, 0xa1c8700,23, 0xa1c8780,23, 0xa1c8800,23, 0xa1c8880,23, 0xa1c8900,23, 0xa1c8980,23, 0xa1c8a00,23, 0xa1c8a80,23, 0xa1c8b00,23, 0xa1c8b80,23, 0xa1c8c00,23, 0xa1c8c80,23, 0xa1c8d00,23, 0xa1c8d80,23, 0xa1c8e00,23, 0xa1c8e80,23, 0xa1c8f00,23, 0xa1c8f80,23, 0xa1c9000,23, 0xa1c9080,23, 0xa1c9100,23, 0xa1c9180,23, 0xa1c9200,23, 0xa1c9280,23, 0xa1c9300,23, 0xa1c9380,23, 0xa1c9400,23, 0xa1c9480,23, 0xa1c9500,23, 0xa1c9580,23, 0xa1c9600,23, 0xa1c9680,23, 0xa1c9700,23, 0xa1c9780,23, 0xa1c9800,23, 0xa1c9880,23, 0xa1c9900,23, 0xa1c9980,23, 0xa1c9a00,23, 0xa1c9a80,23, 0xa1c9b00,23, 0xa1c9b80,23, 0xa1c9c00,23, 0xa1c9c80,23, 0xa1c9d00,23, 0xa1c9d80,23, 0xa1c9e00,23, 0xa1c9e80,23, 0xa1c9f00,23, 0xa1c9f80,23, 0xa1ca000,23, 0xa1ca080,23, 0xa1ca100,23, 0xa1ca180,23, 0xa1ca200,23, 0xa1ca280,23, 0xa1ca300,23, 0xa1ca380,23, 0xa1ca400,23, 0xa1ca480,23, 0xa1ca500,23, 0xa1ca580,23, 0xa1ca600,23, 0xa1ca680,23, 0xa1ca700,23, 0xa1ca780,23, 0xa1ca800,23, 0xa1ca880,23, 0xa1ca900,23, 0xa1ca980,23, 0xa1caa00,23, 0xa1caa80,23, 0xa1cab00,23, 0xa1cab80,23, 0xa1cac00,23, 0xa1cac80,23, 0xa1cad00,23, 0xa1cad80,23, 0xa1cae00,23, 0xa1cae80,23, 0xa1caf00,23, 0xa1caf80,23, 0xa1cb000,23, 0xa1cb080,23, 0xa1cb100,23, 0xa1cb180,23, 0xa1cb200,23, 0xa1cb280,23, 0xa1cb300,23, 0xa1cb380,23, 0xa1cb400,23, 0xa1cb480,23, 0xa1cb500,23, 0xa1cb580,23, 0xa1cb600,23, 0xa1cb680,23, 0xa1cb700,23, 0xa1cb780,23, 0xa1cb800,23, 0xa1cb880,23, 0xa1cb900,23, 0xa1cb980,23, 0xa1cba00,23, 0xa1cba80,23, 0xa1cbb00,23, 0xa1cbb80,23, 0xa1cbc00,23, 0xa1cbc80,23, 0xa1cbd00,23, 0xa1cbd80,23, 0xa1cbe00,23, 0xa1cbe80,23, 0xa1cbf00,23, 0xa1cbf80,23, 0xa1cc000,23, 0xa1cc080,23, 0xa1cc100,23, 0xa1cc180,23, 0xa1cc200,23, 0xa1cc280,23, 0xa1cc300,23, 0xa1cc380,23, 0xa1cc400,23, 0xa1cc480,23, 0xa1cc500,23, 0xa1cc580,23, 0xa1cc600,23, 0xa1cc680,23, 0xa1cc700,23, 0xa1cc780,23, 0xa1cc800,23, 0xa1cc880,23, 0xa1cc900,23, 0xa1cc980,23, 0xa1cca00,23, 0xa1cca80,23, 0xa1ccb00,23, 0xa1ccb80,23, 0xa1ccc00,23, 0xa1ccc80,23, 0xa1ccd00,23, 0xa1ccd80,23, 0xa1cce00,23, 0xa1cce80,23, 0xa1ccf00,23, 0xa1ccf80,23, 0xa1cd000,23, 0xa1cd080,23, 0xa1cd100,23, 0xa1cd180,23, 0xa1cd200,23, 0xa1cd280,23, 0xa1cd300,23, 0xa1cd380,23, 0xa1cd400,23, 0xa1cd480,23, 0xa1cd500,23, 0xa1cd580,23, 0xa1cd600,23, 0xa1cd680,23, 0xa1cd700,23, 0xa1cd780,23, 0xa1cd800,23, 0xa1cd880,23, 0xa1cd900,23, 0xa1cd980,23, 0xa1cda00,23, 0xa1cda80,23, 0xa1cdb00,23, 0xa1cdb80,23, 0xa1cdc00,23, 0xa1cdc80,23, 0xa1cdd00,23, 0xa1cdd80,23, 0xa1cde00,23, 0xa1cde80,23, 0xa1cdf00,23, 0xa1cdf80,23, 0xa1ce000,23, 0xa1ce080,23, 0xa1ce100,23, 0xa1ce180,23, 0xa1ce200,23, 0xa1ce280,23, 0xa1ce300,23, 0xa1ce380,23, 0xa1ce400,23, 0xa1ce480,23, 0xa1ce500,23, 0xa1ce580,23, 0xa1ce600,23, 0xa1ce680,23, 0xa1ce700,23, 0xa1ce780,23, 0xa1ce800,23, 0xa1ce880,23, 0xa1ce900,23, 0xa1ce980,23, 0xa1cea00,23, 0xa1cea80,23, 0xa1ceb00,23, 0xa1ceb80,23, 0xa1cec00,23, 0xa1cec80,23, 0xa1ced00,23, 0xa1ced80,23, 0xa1cee00,23, 0xa1cee80,23, 0xa1cef00,23, 0xa1cef80,23, 0xa1cf000,23, 0xa1cf080,23, 0xa1cf100,23, 0xa1cf180,23, 0xa1cf200,23, 0xa1cf280,23, 0xa1cf300,23, 0xa1cf380,23, 0xa1cf400,23, 0xa1cf480,23, 0xa1cf500,23, 0xa1cf580,23, 0xa1cf600,23, 0xa1cf680,23, 0xa1cf700,23, 0xa1cf780,23, 0xa1cf800,23, 0xa1cf880,23, 0xa1cf900,23, 0xa1cf980,23, 0xa1cfa00,23, 0xa1cfa80,23, 0xa1cfb00,23, 0xa1cfb80,23, 0xa1cfc00,23, 0xa1cfc80,23, 0xa1cfd00,23, 0xa1cfd80,23, 0xa1cfe00,23, 0xa1cfe80,23, 0xa1cff00,23, 0xa1cff80,23, 0xa1d0000,23, 0xa1d0080,23, 0xa1d0100,23, 0xa1d0180,23, 0xa1d0200,23, 0xa1d0280,23, 0xa1d0300,23, 0xa1d0380,23, 0xa1d0400,23, 0xa1d0480,23, 0xa1d0500,23, 0xa1d0580,23, 0xa1d0600,23, 0xa1d0680,23, 0xa1d0700,23, 0xa1d0780,23, 0xa1d0800,23, 0xa1d0880,23, 0xa1d0900,23, 0xa1d0980,23, 0xa1d0a00,23, 0xa1d0a80,23, 0xa1d0b00,23, 0xa1d0b80,23, 0xa1d0c00,23, 0xa1d0c80,23, 0xa1d0d00,23, 0xa1d0d80,23, 0xa1d0e00,23, 0xa1d0e80,23, 0xa1d0f00,23, 0xa1d0f80,23, 0xa1d1000,23, 0xa1d1080,23, 0xa1d1100,23, 0xa1d1180,23, 0xa1d1200,23, 0xa1d1280,23, 0xa1d1300,23, 0xa1d1380,23, 0xa1d1400,23, 0xa1d1480,23, 0xa1d1500,23, 0xa1d1580,23, 0xa1d1600,23, 0xa1d1680,23, 0xa1d1700,23, 0xa1d1780,23, 0xa1d1800,23, 0xa1d1880,23, 0xa1d1900,23, 0xa1d1980,23, 0xa1d1a00,23, 0xa1d1a80,23, 0xa1d1b00,23, 0xa1d1b80,23, 0xa1d1c00,23, 0xa1d1c80,23, 0xa1d1d00,23, 0xa1d1d80,23, 0xa1d1e00,23, 0xa1d1e80,23, 0xa1d1f00,23, 0xa1d1f80,23, 0xa1d2000,23, 0xa1d2080,23, 0xa1d2100,23, 0xa1d2180,23, 0xa1d2200,23, 0xa1d2280,23, 0xa1d2300,23, 0xa1d2380,23, 0xa1d2400,23, 0xa1d2480,23, 0xa1d2500,23, 0xa1d2580,23, 0xa1d2600,23, 0xa1d2680,23, 0xa1d2700,23, 0xa1d2780,23, 0xa1d2800,23, 0xa1d2880,23, 0xa1d2900,23, 0xa1d2980,23, 0xa1d2a00,23, 0xa1d2a80,23, 0xa1d2b00,23, 0xa1d2b80,23, 0xa1d2c00,23, 0xa1d2c80,23, 0xa1d2d00,23, 0xa1d2d80,23, 0xa1d2e00,23, 0xa1d2e80,23, 0xa1d2f00,23, 0xa1d2f80,23, 0xa1d3000,23, 0xa1d3080,23, 0xa1d3100,23, 0xa1d3180,23, 0xa1d3200,23, 0xa1d3280,23, 0xa1d3300,23, 0xa1d3380,23, 0xa1d3400,23, 0xa1d3480,23, 0xa1d3500,23, 0xa1d3580,23, 0xa1d3600,23, 0xa1d3680,23, 0xa1d3700,23, 0xa1d3780,23, 0xa1d3800,23, 0xa1d3880,23, 0xa1d3900,23, 0xa1d3980,23, 0xa1d3a00,23, 0xa1d3a80,23, 0xa1d3b00,23, 0xa1d3b80,23, 0xa1d3c00,23, 0xa1d3c80,23, 0xa1d3d00,23, 0xa1d3d80,23, 0xa1d3e00,23, 0xa1d3e80,23, 0xa1d3f00,23, 0xa1d3f80,23, 0xa1d4000,23, 0xa1d4080,23, 0xa1d4100,23, 0xa1d4180,23, 0xa1d4200,23, 0xa1d4280,23, 0xa1d4300,23, 0xa1d4380,23, 0xa1d4400,23, 0xa1d4480,23, 0xa1d4500,23, 0xa1d4580,23, 0xa1d4600,23, 0xa1d4680,23, 0xa1d4700,23, 0xa1d4780,23, 0xa1d4800,23, 0xa1d4880,23, 0xa1d4900,23, 0xa1d4980,23, 0xa1d4a00,23, 0xa1d4a80,23, 0xa1d4b00,23, 0xa1d4b80,23, 0xa1d4c00,23, 0xa1d4c80,23, 0xa1d4d00,23, 0xa1d4d80,23, 0xa1d4e00,23, 0xa1d4e80,23, 0xa1d4f00,23, 0xa1d4f80,23, 0xa1d5000,23, 0xa1d5080,23, 0xa1d5100,23, 0xa1d5180,23, 0xa1d5200,23, 0xa1d5280,23, 0xa1d5300,23, 0xa1d5380,23, 0xa1d5400,23, 0xa1d5480,23, 0xa1d5500,23, 0xa1d5580,23, 0xa1d5600,23, 0xa1d5680,23, 0xa1d5700,23, 0xa1d5780,23, 0xa1d5800,23, 0xa1d5880,23, 0xa1d5900,23, 0xa1d5980,23, 0xa1d5a00,23, 0xa1d5a80,23, 0xa1d5b00,23, 0xa1d5b80,23, 0xa1d5c00,23, 0xa1d5c80,23, 0xa1d5d00,23, 0xa1d5d80,23, 0xa1d5e00,23, 0xa1d5e80,23, 0xa1d5f00,23, 0xa1d5f80,23, 0xa1d6000,23, 0xa1d6080,23, 0xa1d6100,23, 0xa1d6180,23, 0xa1d6200,23, 0xa1d6280,23, 0xa1d6300,23, 0xa1d6380,23, 0xa1d6400,23, 0xa1d6480,23, 0xa1d6500,23, 0xa1d6580,23, 0xa1d6600,23, 0xa1d6680,23, 0xa1d6700,23, 0xa1d6780,23, 0xa1d6800,23, 0xa1d6880,23, 0xa1d6900,23, 0xa1d6980,23, 0xa1d6a00,23, 0xa1d6a80,23, 0xa1d6b00,23, 0xa1d6b80,23, 0xa1d6c00,23, 0xa1d6c80,23, 0xa1d6d00,23, 0xa1d6d80,23, 0xa1d6e00,23, 0xa1d6e80,23, 0xa1d6f00,23, 0xa1d6f80,23, 0xa1d7000,23, 0xa1d7080,23, 0xa1d7100,23, 0xa1d7180,23, 0xa1d7200,23, 0xa1d7280,23, 0xa1d7300,23, 0xa1d7380,23, 0xa1d7400,23, 0xa1d7480,23, 0xa1d7500,23, 0xa1d7580,23, 0xa1d7600,23, 0xa1d7680,23, 0xa1d7700,23, 0xa1d7780,23, 0xa1d7800,23, 0xa1d7880,23, 0xa1d7900,23, 0xa1d7980,23, 0xa1d7a00,23, 0xa1d7a80,23, 0xa1d7b00,23, 0xa1d7b80,23, 0xa1d7c00,23, 0xa1d7c80,23, 0xa1d7d00,23, 0xa1d7d80,23, 0xa1d7e00,23, 0xa1d7e80,23, 0xa1d7f00,23, 0xa1d7f80,23, 0xa1d8000,23, 0xa1d8080,23, 0xa1d8100,23, 0xa1d8180,23, 0xa1d8200,23, 0xa1d8280,23, 0xa1d8300,23, 0xa1d8380,23, 0xa1d8400,23, 0xa1d8480,23, 0xa1d8500,23, 0xa1d8580,23, 0xa1d8600,23, 0xa1d8680,23, 0xa1d8700,23, 0xa1d8780,23, 0xa1d8800,23, 0xa1d8880,23, 0xa1d8900,23, 0xa1d8980,23, 0xa1d8a00,23, 0xa1d8a80,23, 0xa1d8b00,23, 0xa1d8b80,23, 0xa1d8c00,23, 0xa1d8c80,23, 0xa1d8d00,23, 0xa1d8d80,23, 0xa1d8e00,23, 0xa1d8e80,23, 0xa1d8f00,23, 0xa1d8f80,23, 0xa1d9000,23, 0xa1d9080,23, 0xa1d9100,23, 0xa1d9180,23, 0xa1d9200,23, 0xa1d9280,23, 0xa1d9300,23, 0xa1d9380,23, 0xa1d9400,23, 0xa1d9480,23, 0xa1d9500,23, 0xa1d9580,23, 0xa1d9600,23, 0xa1d9680,23, 0xa1d9700,23, 0xa1d9780,23, 0xa1d9800,23, 0xa1d9880,23, 0xa1d9900,23, 0xa1d9980,23, 0xa1d9a00,23, 0xa1d9a80,23, 0xa1d9b00,23, 0xa1d9b80,23, 0xa1d9c00,23, 0xa1d9c80,23, 0xa1d9d00,23, 0xa1d9d80,23, 0xa1d9e00,23, 0xa1d9e80,23, 0xa1d9f00,23, 0xa1d9f80,23, 0xa1da000,23, 0xa1da080,23, 0xa1da100,23, 0xa1da180,23, 0xa1da200,23, 0xa1da280,23, 0xa1da300,23, 0xa1da380,23, 0xa1da400,23, 0xa1da480,23, 0xa1da500,23, 0xa1da580,23, 0xa1da600,23, 0xa1da680,23, 0xa1da700,23, 0xa1da780,23, 0xa1da800,23, 0xa1da880,23, 0xa1da900,23, 0xa1da980,23, 0xa1daa00,23, 0xa1daa80,23, 0xa1dab00,23, 0xa1dab80,23, 0xa1dac00,23, 0xa1dac80,23, 0xa1dad00,23, 0xa1dad80,23, 0xa1dae00,23, 0xa1dae80,23, 0xa1daf00,23, 0xa1daf80,23, 0xa1db000,23, 0xa1db080,23, 0xa1db100,23, 0xa1db180,23, 0xa1db200,23, 0xa1db280,23, 0xa1db300,23, 0xa1db380,23, 0xa1db400,23, 0xa1db480,23, 0xa1db500,23, 0xa1db580,23, 0xa1db600,23, 0xa1db680,23, 0xa1db700,23, 0xa1db780,23, 0xa1db800,23, 0xa1db880,23, 0xa1db900,23, 0xa1db980,23, 0xa1dba00,23, 0xa1dba80,23, 0xa1dbb00,23, 0xa1dbb80,23, 0xa1dbc00,23, 0xa1dbc80,23, 0xa1dbd00,23, 0xa1dbd80,23, 0xa1dbe00,23, 0xa1dbe80,23, 0xa1dbf00,23, 0xa1dbf80,23, 0xa1dc000,23, 0xa1dc080,23, 0xa1dc100,23, 0xa1dc180,23, 0xa1dc200,23, 0xa1dc280,23, 0xa1dc300,23, 0xa1dc380,23, 0xa1dc400,23, 0xa1dc480,23, 0xa1dc500,23, 0xa1dc580,23, 0xa1dc600,23, 0xa1dc680,23, 0xa1dc700,23, 0xa1dc780,23, 0xa1dc800,23, 0xa1dc880,23, 0xa1dc900,23, 0xa1dc980,23, 0xa1dca00,23, 0xa1dca80,23, 0xa1dcb00,23, 0xa1dcb80,23, 0xa1dcc00,23, 0xa1dcc80,23, 0xa1dcd00,23, 0xa1dcd80,23, 0xa1dce00,23, 0xa1dce80,23, 0xa1dcf00,23, 0xa1dcf80,23, 0xa1dd000,23, 0xa1dd080,23, 0xa1dd100,23, 0xa1dd180,23, 0xa1dd200,23, 0xa1dd280,23, 0xa1dd300,23, 0xa1dd380,23, 0xa1dd400,23, 0xa1dd480,23, 0xa1dd500,23, 0xa1dd580,23, 0xa1dd600,23, 0xa1dd680,23, 0xa1dd700,23, 0xa1dd780,23, 0xa1dd800,23, 0xa1dd880,23, 0xa1dd900,23, 0xa1dd980,23, 0xa1dda00,23, 0xa1dda80,23, 0xa1ddb00,23, 0xa1ddb80,23, 0xa1ddc00,23, 0xa1ddc80,23, 0xa1ddd00,23, 0xa1ddd80,23, 0xa1dde00,23, 0xa1dde80,23, 0xa1ddf00,23, 0xa1ddf80,23, 0xa1de000,23, 0xa1de080,23, 0xa1de100,23, 0xa1de180,23, 0xa1de200,23, 0xa1de280,23, 0xa1de300,23, 0xa1de380,23, 0xa1de400,23, 0xa1de480,23, 0xa1de500,23, 0xa1de580,23, 0xa1de600,23, 0xa1de680,23, 0xa1de700,23, 0xa1de780,23, 0xa1de800,23, 0xa1de880,23, 0xa1de900,23, 0xa1de980,23, 0xa1dea00,23, 0xa1dea80,23, 0xa1deb00,23, 0xa1deb80,23, 0xa1dec00,23, 0xa1dec80,23, 0xa1ded00,23, 0xa1ded80,23, 0xa1dee00,23, 0xa1dee80,23, 0xa1def00,23, 0xa1def80,23, 0xa1df000,23, 0xa1df080,23, 0xa1df100,23, 0xa1df180,23, 0xa1df200,23, 0xa1df280,23, 0xa1df300,23, 0xa1df380,23, 0xa1df400,23, 0xa1df480,23, 0xa1df500,23, 0xa1df580,23, 0xa1df600,23, 0xa1df680,23, 0xa1df700,23, 0xa1df780,23, 0xa1df800,23, 0xa1df880,23, 0xa1df900,23, 0xa1df980,23, 0xa1dfa00,23, 0xa1dfa80,23, 0xa1dfb00,23, 0xa1dfb80,23, 0xa1dfc00,23, 0xa1dfc80,23, 0xa1dfd00,23, 0xa1dfd80,23, 0xa1dfe00,23, 0xa1dfe80,23, 0xa1dff00,23, 0xa1dff80,23, 0xa1e0000,23, 0xa1e0080,23, 0xa1e0100,23, 0xa1e0180,23, 0xa1e0200,23, 0xa1e0280,23, 0xa1e0300,23, 0xa1e0380,23, 0xa1e0400,23, 0xa1e0480,23, 0xa1e0500,23, 0xa1e0580,23, 0xa1e0600,23, 0xa1e0680,23, 0xa1e0700,23, 0xa1e0780,23, 0xa1e0800,23, 0xa1e0880,23, 0xa1e0900,23, 0xa1e0980,23, 0xa1e0a00,23, 0xa1e0a80,23, 0xa1e0b00,23, 0xa1e0b80,23, 0xa1e0c00,23, 0xa1e0c80,23, 0xa1e0d00,23, 0xa1e0d80,23, 0xa1e0e00,23, 0xa1e0e80,23, 0xa1e0f00,23, 0xa1e0f80,23, 0xa1e1000,23, 0xa1e1080,23, 0xa1e1100,23, 0xa1e1180,23, 0xa1e1200,23, 0xa1e1280,23, 0xa1e1300,23, 0xa1e1380,23, 0xa1e1400,23, 0xa1e1480,23, 0xa1e1500,23, 0xa1e1580,23, 0xa1e1600,23, 0xa1e1680,23, 0xa1e1700,23, 0xa1e1780,23, 0xa1e1800,23, 0xa1e1880,23, 0xa1e1900,23, 0xa1e1980,23, 0xa1e1a00,23, 0xa1e1a80,23, 0xa1e1b00,23, 0xa1e1b80,23, 0xa1e1c00,23, 0xa1e1c80,23, 0xa1e1d00,23, 0xa1e1d80,23, 0xa1e1e00,23, 0xa1e1e80,23, 0xa1e1f00,23, 0xa1e1f80,23, 0xa1e2000,23, 0xa1e2080,23, 0xa1e2100,23, 0xa1e2180,23, 0xa1e2200,23, 0xa1e2280,23, 0xa1e2300,23, 0xa1e2380,23, 0xa1e2400,23, 0xa1e2480,23, 0xa1e2500,23, 0xa1e2580,23, 0xa1e2600,23, 0xa1e2680,23, 0xa1e2700,23, 0xa1e2780,23, 0xa1e2800,23, 0xa1e2880,23, 0xa1e2900,23, 0xa1e2980,23, 0xa1e2a00,23, 0xa1e2a80,23, 0xa1e2b00,23, 0xa1e2b80,23, 0xa1e2c00,23, 0xa1e2c80,23, 0xa1e2d00,23, 0xa1e2d80,23, 0xa1e2e00,23, 0xa1e2e80,23, 0xa1e2f00,23, 0xa1e2f80,23, 0xa1e3000,23, 0xa1e3080,23, 0xa1e3100,23, 0xa1e3180,23, 0xa1e3200,23, 0xa1e3280,23, 0xa1e3300,23, 0xa1e3380,23, 0xa1e3400,23, 0xa1e3480,23, 0xa1e3500,23, 0xa1e3580,23, 0xa1e3600,23, 0xa1e3680,23, 0xa1e3700,23, 0xa1e3780,23, 0xa1e3800,23, 0xa1e3880,23, 0xa1e3900,23, 0xa1e3980,23, 0xa1e3a00,23, 0xa1e3a80,23, 0xa1e3b00,23, 0xa1e3b80,23, 0xa1e3c00,23, 0xa1e3c80,23, 0xa1e3d00,23, 0xa1e3d80,23, 0xa1e3e00,23, 0xa1e3e80,23, 0xa1e3f00,23, 0xa1e3f80,23, 0xa1e4000,23, 0xa1e4080,23, 0xa1e4100,23, 0xa1e4180,23, 0xa1e4200,23, 0xa1e4280,23, 0xa1e4300,23, 0xa1e4380,23, 0xa1e4400,23, 0xa1e4480,23, 0xa1e4500,23, 0xa1e4580,23, 0xa1e4600,23, 0xa1e4680,23, 0xa1e4700,23, 0xa1e4780,23, 0xa1e4800,23, 0xa1e4880,23, 0xa1e4900,23, 0xa1e4980,23, 0xa1e4a00,23, 0xa1e4a80,23, 0xa1e4b00,23, 0xa1e4b80,23, 0xa1e4c00,23, 0xa1e4c80,23, 0xa1e4d00,23, 0xa1e4d80,23, 0xa1e4e00,23, 0xa1e4e80,23, 0xa1e4f00,23, 0xa1e4f80,23, 0xa1e5000,23, 0xa1e5080,23, 0xa1e5100,23, 0xa1e5180,23, 0xa1e5200,23, 0xa1e5280,23, 0xa1e5300,23, 0xa1e5380,23, 0xa1e5400,23, 0xa1e5480,23, 0xa1e5500,23, 0xa1e5580,23, 0xa1e5600,23, 0xa1e5680,23, 0xa1e5700,23, 0xa1e5780,23, 0xa1e5800,23, 0xa1e5880,23, 0xa1e5900,23, 0xa1e5980,23, 0xa1e5a00,23, 0xa1e5a80,23, 0xa1e5b00,23, 0xa1e5b80,23, 0xa1e5c00,23, 0xa1e5c80,23, 0xa1e5d00,23, 0xa1e5d80,23, 0xa1e5e00,23, 0xa1e5e80,23, 0xa1e5f00,23, 0xa1e5f80,23, 0xa1e6000,23, 0xa1e6080,23, 0xa1e6100,23, 0xa1e6180,23, 0xa1e6200,23, 0xa1e6280,23, 0xa1e6300,23, 0xa1e6380,23, 0xa1e6400,23, 0xa1e6480,23, 0xa1e6500,23, 0xa1e6580,23, 0xa1e6600,23, 0xa1e6680,23, 0xa1e6700,23, 0xa1e6780,23, 0xa1e6800,23, 0xa1e6880,23, 0xa1e6900,23, 0xa1e6980,23, 0xa1e6a00,23, 0xa1e6a80,23, 0xa1e6b00,23, 0xa1e6b80,23, 0xa1e6c00,23, 0xa1e6c80,23, 0xa1e6d00,23, 0xa1e6d80,23, 0xa1e6e00,23, 0xa1e6e80,23, 0xa1e6f00,23, 0xa1e6f80,23, 0xa1e7000,23, 0xa1e7080,23, 0xa1e7100,23, 0xa1e7180,23, 0xa1e7200,23, 0xa1e7280,23, 0xa1e7300,23, 0xa1e7380,23, 0xa1e7400,23, 0xa1e7480,23, 0xa1e7500,23, 0xa1e7580,23, 0xa1e7600,23, 0xa1e7680,23, 0xa1e7700,23, 0xa1e7780,23, 0xa1e7800,23, 0xa1e7880,23, 0xa1e7900,23, 0xa1e7980,23, 0xa1e7a00,23, 0xa1e7a80,23, 0xa1e7b00,23, 0xa1e7b80,23, 0xa1e7c00,23, 0xa1e7c80,23, 0xa1e7d00,23, 0xa1e7d80,23, 0xa1e7e00,23, 0xa1e7e80,23, 0xa1e7f00,23, 0xa1e7f80,23, 0xa1e8000,23, 0xa1e8080,23, 0xa1e8100,23, 0xa1e8180,23, 0xa1e8200,23, 0xa1e8280,23, 0xa1e8300,23, 0xa1e8380,23, 0xa1e8400,23, 0xa1e8480,23, 0xa1e8500,23, 0xa1e8580,23, 0xa1e8600,23, 0xa1e8680,23, 0xa1e8700,23, 0xa1e8780,23, 0xa1e8800,23, 0xa1e8880,23, 0xa1e8900,23, 0xa1e8980,23, 0xa1e8a00,23, 0xa1e8a80,23, 0xa1e8b00,23, 0xa1e8b80,23, 0xa1e8c00,23, 0xa1e8c80,23, 0xa1e8d00,23, 0xa1e8d80,23, 0xa1e8e00,23, 0xa1e8e80,23, 0xa1e8f00,23, 0xa1e8f80,23, 0xa1e9000,23, 0xa1e9080,23, 0xa1e9100,23, 0xa1e9180,23, 0xa1e9200,23, 0xa1e9280,23, 0xa1e9300,23, 0xa1e9380,23, 0xa1e9400,23, 0xa1e9480,23, 0xa1e9500,23, 0xa1e9580,23, 0xa1e9600,23, 0xa1e9680,23, 0xa1e9700,23, 0xa1e9780,23, 0xa1e9800,23, 0xa1e9880,23, 0xa1e9900,23, 0xa1e9980,23, 0xa1e9a00,23, 0xa1e9a80,23, 0xa1e9b00,23, 0xa1e9b80,23, 0xa1e9c00,23, 0xa1e9c80,23, 0xa1e9d00,23, 0xa1e9d80,23, 0xa1e9e00,23, 0xa1e9e80,23, 0xa1e9f00,23, 0xa1e9f80,23, 0xa1ea000,23, 0xa1ea080,23, 0xa1ea100,23, 0xa1ea180,23, 0xa1ea200,23, 0xa1ea280,23, 0xa1ea300,23, 0xa1ea380,23, 0xa1ea400,23, 0xa1ea480,23, 0xa1ea500,23, 0xa1ea580,23, 0xa1ea600,23, 0xa1ea680,23, 0xa1ea700,23, 0xa1ea780,23, 0xa1ea800,23, 0xa1ea880,23, 0xa1ea900,23, 0xa1ea980,23, 0xa1eaa00,23, 0xa1eaa80,23, 0xa1eab00,23, 0xa1eab80,23, 0xa1eac00,23, 0xa1eac80,23, 0xa1ead00,23, 0xa1ead80,23, 0xa1eae00,23, 0xa1eae80,23, 0xa1eaf00,23, 0xa1eaf80,23, 0xa1eb000,23, 0xa1eb080,23, 0xa1eb100,23, 0xa1eb180,23, 0xa1eb200,23, 0xa1eb280,23, 0xa1eb300,23, 0xa1eb380,23, 0xa1eb400,23, 0xa1eb480,23, 0xa1eb500,23, 0xa1eb580,23, 0xa1eb600,23, 0xa1eb680,23, 0xa1eb700,23, 0xa1eb780,23, 0xa1eb800,23, 0xa1eb880,23, 0xa1eb900,23, 0xa1eb980,23, 0xa1eba00,23, 0xa1eba80,23, 0xa1ebb00,23, 0xa1ebb80,23, 0xa1ebc00,23, 0xa1ebc80,23, 0xa1ebd00,23, 0xa1ebd80,23, 0xa1ebe00,23, 0xa1ebe80,23, 0xa1ebf00,23, 0xa1ebf80,23, 0xa1ec000,23, 0xa1ec080,23, 0xa1ec100,23, 0xa1ec180,23, 0xa1ec200,23, 0xa1ec280,23, 0xa1ec300,23, 0xa1ec380,23, 0xa1ec400,23, 0xa1ec480,23, 0xa1ec500,23, 0xa1ec580,23, 0xa1ec600,23, 0xa1ec680,23, 0xa1ec700,23, 0xa1ec780,23, 0xa1ec800,23, 0xa1ec880,23, 0xa1ec900,23, 0xa1ec980,23, 0xa1eca00,23, 0xa1eca80,23, 0xa1ecb00,23, 0xa1ecb80,23, 0xa1ecc00,23, 0xa1ecc80,23, 0xa1ecd00,23, 0xa1ecd80,23, 0xa1ece00,23, 0xa1ece80,23, 0xa1ecf00,23, 0xa1ecf80,23, 0xa1ed000,23, 0xa1ed080,23, 0xa1ed100,23, 0xa1ed180,23, 0xa1ed200,23, 0xa1ed280,23, 0xa1ed300,23, 0xa1ed380,23, 0xa1ed400,23, 0xa1ed480,23, 0xa1ed500,23, 0xa1ed580,23, 0xa1ed600,23, 0xa1ed680,23, 0xa1ed700,23, 0xa1ed780,23, 0xa1ed800,23, 0xa1ed880,23, 0xa1ed900,23, 0xa1ed980,23, 0xa1eda00,23, 0xa1eda80,23, 0xa1edb00,23, 0xa1edb80,23, 0xa1edc00,23, 0xa1edc80,23, 0xa1edd00,23, 0xa1edd80,23, 0xa1ede00,23, 0xa1ede80,23, 0xa1edf00,23, 0xa1edf80,23, 0xa1ee000,23, 0xa1ee080,23, 0xa1ee100,23, 0xa1ee180,23, 0xa1ee200,23, 0xa1ee280,23, 0xa1ee300,23, 0xa1ee380,23, 0xa1ee400,23, 0xa1ee480,23, 0xa1ee500,23, 0xa1ee580,23, 0xa1ee600,23, 0xa1ee680,23, 0xa1ee700,23, 0xa1ee780,23, 0xa1ee800,23, 0xa1ee880,23, 0xa1ee900,23, 0xa1ee980,23, 0xa1eea00,23, 0xa1eea80,23, 0xa1eeb00,23, 0xa1eeb80,23, 0xa1eec00,23, 0xa1eec80,23, 0xa1eed00,23, 0xa1eed80,23, 0xa1eee00,23, 0xa1eee80,23, 0xa1eef00,23, 0xa1eef80,23, 0xa1ef000,23, 0xa1ef080,23, 0xa1ef100,23, 0xa1ef180,23, 0xa1ef200,23, 0xa1ef280,23, 0xa1ef300,23, 0xa1ef380,23, 0xa1ef400,23, 0xa1ef480,23, 0xa1ef500,23, 0xa1ef580,23, 0xa1ef600,23, 0xa1ef680,23, 0xa1ef700,23, 0xa1ef780,23, 0xa1ef800,23, 0xa1ef880,23, 0xa1ef900,23, 0xa1ef980,23, 0xa1efa00,23, 0xa1efa80,23, 0xa1efb00,23, 0xa1efb80,23, 0xa1efc00,23, 0xa1efc80,23, 0xa1efd00,23, 0xa1efd80,23, 0xa1efe00,23, 0xa1efe80,23, 0xa1eff00,23, 0xa1eff80,23, 0xa1f0000,23, 0xa1f0080,23, 0xa1f0100,23, 0xa1f0180,23, 0xa1f0200,23, 0xa1f0280,23, 0xa1f0300,23, 0xa1f0380,23, 0xa1f0400,23, 0xa1f0480,23, 0xa1f0500,23, 0xa1f0580,23, 0xa1f0600,23, 0xa1f0680,23, 0xa1f0700,23, 0xa1f0780,23, 0xa1f0800,23, 0xa1f0880,23, 0xa1f0900,23, 0xa1f0980,23, 0xa1f0a00,23, 0xa1f0a80,23, 0xa1f0b00,23, 0xa1f0b80,23, 0xa1f0c00,23, 0xa1f0c80,23, 0xa1f0d00,23, 0xa1f0d80,23, 0xa1f0e00,23, 0xa1f0e80,23, 0xa1f0f00,23, 0xa1f0f80,23, 0xa1f1000,23, 0xa1f1080,23, 0xa1f1100,23, 0xa1f1180,23, 0xa1f1200,23, 0xa1f1280,23, 0xa1f1300,23, 0xa1f1380,23, 0xa1f1400,23, 0xa1f1480,23, 0xa1f1500,23, 0xa1f1580,23, 0xa1f1600,23, 0xa1f1680,23, 0xa1f1700,23, 0xa1f1780,23, 0xa1f1800,23, 0xa1f1880,23, 0xa1f1900,23, 0xa1f1980,23, 0xa1f1a00,23, 0xa1f1a80,23, 0xa1f1b00,23, 0xa1f1b80,23, 0xa1f1c00,23, 0xa1f1c80,23, 0xa1f1d00,23, 0xa1f1d80,23, 0xa1f1e00,23, 0xa1f1e80,23, 0xa1f1f00,23, 0xa1f1f80,23, 0xa1f2000,23, 0xa1f2080,23, 0xa1f2100,23, 0xa1f2180,23, 0xa1f2200,23, 0xa1f2280,23, 0xa1f2300,23, 0xa1f2380,23, 0xa1f2400,23, 0xa1f2480,23, 0xa1f2500,23, 0xa1f2580,23, 0xa1f2600,23, 0xa1f2680,23, 0xa1f2700,23, 0xa1f2780,23, 0xa1f2800,23, 0xa1f2880,23, 0xa1f2900,23, 0xa1f2980,23, 0xa1f2a00,23, 0xa1f2a80,23, 0xa1f2b00,23, 0xa1f2b80,23, 0xa1f2c00,23, 0xa1f2c80,23, 0xa1f2d00,23, 0xa1f2d80,23, 0xa1f2e00,23, 0xa1f2e80,23, 0xa1f2f00,23, 0xa1f2f80,23, 0xa1f3000,23, 0xa1f3080,23, 0xa1f3100,23, 0xa1f3180,23, 0xa1f3200,23, 0xa1f3280,23, 0xa1f3300,23, 0xa1f3380,23, 0xa1f3400,23, 0xa1f3480,23, 0xa1f3500,23, 0xa1f3580,23, 0xa1f3600,23, 0xa1f3680,23, 0xa1f3700,23, 0xa1f3780,23, 0xa1f3800,23, 0xa1f3880,23, 0xa1f3900,23, 0xa1f3980,23, 0xa1f3a00,23, 0xa1f3a80,23, 0xa1f3b00,23, 0xa1f3b80,23, 0xa200000,23, 0xa200080,23, 0xa200100,23, 0xa200180,23, 0xa200200,23, 0xa200280,23, 0xa200300,23, 0xa200380,23, 0xa200400,23, 0xa200480,23, 0xa200500,23, 0xa200580,23, 0xa200600,23, 0xa200680,23, 0xa200700,23, 0xa200780,23, 0xa200800,23, 0xa200880,23, 0xa200900,23, 0xa200980,23, 0xa200a00,23, 0xa200a80,23, 0xa200b00,23, 0xa200b80,23, 0xa200c00,23, 0xa200c80,23, 0xa200d00,23, 0xa200d80,23, 0xa200e00,23, 0xa200e80,23, 0xa200f00,23, 0xa200f80,23, 0xa201000,23, 0xa201080,23, 0xa201100,23, 0xa201180,23, 0xa201200,23, 0xa201280,23, 0xa201300,23, 0xa201380,23, 0xa201400,23, 0xa201480,23, 0xa201500,23, 0xa201580,23, 0xa201600,23, 0xa201680,23, 0xa201700,23, 0xa201780,23, 0xa201800,23, 0xa201880,23, 0xa201900,23, 0xa201980,23, 0xa201a00,23, 0xa201a80,23, 0xa201b00,23, 0xa201b80,23, 0xa201c00,23, 0xa201c80,23, 0xa201d00,23, 0xa201d80,23, 0xa201e00,23, 0xa201e80,23, 0xa201f00,23, 0xa201f80,23, 0xa202000,23, 0xa202080,23, 0xa202100,23, 0xa202180,23, 0xa202200,23, 0xa202280,23, 0xa202300,23, 0xa202380,23, 0xa202400,23, 0xa202480,23, 0xa202500,23, 0xa202580,23, 0xa202600,23, 0xa202680,23, 0xa202700,23, 0xa202780,23, 0xa202800,23, 0xa202880,23, 0xa202900,23, 0xa202980,23, 0xa202a00,23, 0xa202a80,23, 0xa202b00,23, 0xa202b80,23, 0xa202c00,23, 0xa202c80,23, 0xa202d00,23, 0xa202d80,23, 0xa202e00,23, 0xa202e80,23, 0xa202f00,23, 0xa202f80,23, 0xa203000,23, 0xa203080,23, 0xa203100,23, 0xa203180,23, 0xa203200,23, 0xa203280,23, 0xa203300,23, 0xa203380,23, 0xa203400,23, 0xa203480,23, 0xa203500,23, 0xa203580,23, 0xa203600,23, 0xa203680,23, 0xa203700,23, 0xa203780,23, 0xa203800,23, 0xa203880,23, 0xa203900,23, 0xa203980,23, 0xa203a00,23, 0xa203a80,23, 0xa203b00,23, 0xa203b80,23, 0xa203c00,23, 0xa203c80,23, 0xa203d00,23, 0xa203d80,23, 0xa203e00,23, 0xa203e80,23, 0xa203f00,23, 0xa203f80,23, 0xa204000,23, 0xa204080,23, 0xa204100,23, 0xa204180,23, 0xa204200,23, 0xa204280,23, 0xa204300,23, 0xa204380,23, 0xa204400,23, 0xa204480,23, 0xa204500,23, 0xa204580,23, 0xa204600,23, 0xa204680,23, 0xa204700,23, 0xa204780,23, 0xa204800,23, 0xa204880,23, 0xa204900,23, 0xa204980,23, 0xa204a00,23, 0xa204a80,23, 0xa204b00,23, 0xa204b80,23, 0xa204c00,23, 0xa204c80,23, 0xa204d00,23, 0xa204d80,23, 0xa204e00,23, 0xa204e80,23, 0xa204f00,23, 0xa204f80,23, 0xa205000,23, 0xa205080,23, 0xa205100,23, 0xa205180,23, 0xa205200,23, 0xa205280,23, 0xa205300,23, 0xa205380,23, 0xa205400,23, 0xa205480,23, 0xa205500,23, 0xa205580,23, 0xa205600,23, 0xa205680,23, 0xa205700,23, 0xa205780,23, 0xa205800,23, 0xa205880,23, 0xa205900,23, 0xa205980,23, 0xa205a00,23, 0xa205a80,23, 0xa205b00,23, 0xa205b80,23, 0xa205c00,23, 0xa205c80,23, 0xa205d00,23, 0xa205d80,23, 0xa205e00,23, 0xa205e80,23, 0xa205f00,23, 0xa205f80,23, 0xa206000,23, 0xa206080,23, 0xa206100,23, 0xa206180,23, 0xa206200,23, 0xa206280,23, 0xa206300,23, 0xa206380,23, 0xa206400,23, 0xa206480,23, 0xa206500,23, 0xa206580,23, 0xa206600,23, 0xa206680,23, 0xa206700,23, 0xa206780,23, 0xa206800,23, 0xa206880,23, 0xa206900,23, 0xa206980,23, 0xa206a00,23, 0xa206a80,23, 0xa206b00,23, 0xa206b80,23, 0xa206c00,23, 0xa206c80,23, 0xa206d00,23, 0xa206d80,23, 0xa206e00,23, 0xa206e80,23, 0xa206f00,23, 0xa206f80,23, 0xa207000,23, 0xa207080,23, 0xa207100,23, 0xa207180,23, 0xa207200,23, 0xa207280,23, 0xa207300,23, 0xa207380,23, 0xa207400,23, 0xa207480,23, 0xa207500,23, 0xa207580,23, 0xa207600,23, 0xa207680,23, 0xa207700,23, 0xa207780,23, 0xa207800,23, 0xa207880,23, 0xa207900,23, 0xa207980,23, 0xa207a00,23, 0xa207a80,23, 0xa207b00,23, 0xa207b80,23, 0xa207c00,23, 0xa207c80,23, 0xa207d00,23, 0xa207d80,23, 0xa207e00,23, 0xa207e80,23, 0xa207f00,23, 0xa207f80,23, 0xa208000,23, 0xa208080,23, 0xa208100,23, 0xa208180,23, 0xa208200,23, 0xa208280,23, 0xa208300,23, 0xa208380,23, 0xa208400,23, 0xa208480,23, 0xa208500,23, 0xa208580,23, 0xa208600,23, 0xa208680,23, 0xa208700,23, 0xa208780,23, 0xa208800,23, 0xa208880,23, 0xa208900,23, 0xa208980,23, 0xa208a00,23, 0xa208a80,23, 0xa208b00,23, 0xa208b80,23, 0xa208c00,23, 0xa208c80,23, 0xa208d00,23, 0xa208d80,23, 0xa208e00,23, 0xa208e80,23, 0xa208f00,23, 0xa208f80,23, 0xa209000,23, 0xa209080,23, 0xa209100,23, 0xa209180,23, 0xa209200,23, 0xa209280,23, 0xa209300,23, 0xa209380,23, 0xa209400,23, 0xa209480,23, 0xa209500,23, 0xa209580,23, 0xa209600,23, 0xa209680,23, 0xa209700,23, 0xa209780,23, 0xa209800,23, 0xa209880,23, 0xa209900,23, 0xa209980,23, 0xa209a00,23, 0xa209a80,23, 0xa209b00,23, 0xa209b80,23, 0xa209c00,23, 0xa209c80,23, 0xa209d00,23, 0xa209d80,23, 0xa209e00,23, 0xa209e80,23, 0xa209f00,23, 0xa209f80,23, 0xa20a000,23, 0xa20a080,23, 0xa20a100,23, 0xa20a180,23, 0xa20a200,23, 0xa20a280,23, 0xa20a300,23, 0xa20a380,23, 0xa20a400,23, 0xa20a480,23, 0xa20a500,23, 0xa20a580,23, 0xa20a600,23, 0xa20a680,23, 0xa20a700,23, 0xa20a780,23, 0xa20a800,23, 0xa20a880,23, 0xa20a900,23, 0xa20a980,23, 0xa20aa00,23, 0xa20aa80,23, 0xa20ab00,23, 0xa20ab80,23, 0xa20ac00,23, 0xa20ac80,23, 0xa20ad00,23, 0xa20ad80,23, 0xa20ae00,23, 0xa20ae80,23, 0xa20af00,23, 0xa20af80,23, 0xa20b000,23, 0xa20b080,23, 0xa20b100,23, 0xa20b180,23, 0xa20b200,23, 0xa20b280,23, 0xa20b300,23, 0xa20b380,23, 0xa20b400,23, 0xa20b480,23, 0xa20b500,23, 0xa20b580,23, 0xa20b600,23, 0xa20b680,23, 0xa20b700,23, 0xa20b780,23, 0xa20b800,23, 0xa20b880,23, 0xa20b900,23, 0xa20b980,23, 0xa20ba00,23, 0xa20ba80,23, 0xa20bb00,23, 0xa20bb80,23, 0xa20bc00,23, 0xa20bc80,23, 0xa20bd00,23, 0xa20bd80,23, 0xa20be00,23, 0xa20be80,23, 0xa20bf00,23, 0xa20bf80,23, 0xa20c000,23, 0xa20c080,23, 0xa20c100,23, 0xa20c180,23, 0xa20c200,23, 0xa20c280,23, 0xa20c300,23, 0xa20c380,23, 0xa20c400,23, 0xa20c480,23, 0xa20c500,23, 0xa20c580,23, 0xa20c600,23, 0xa20c680,23, 0xa20c700,23, 0xa20c780,23, 0xa20c800,23, 0xa20c880,23, 0xa20c900,23, 0xa20c980,23, 0xa20ca00,23, 0xa20ca80,23, 0xa20cb00,23, 0xa20cb80,23, 0xa20cc00,23, 0xa20cc80,23, 0xa20cd00,23, 0xa20cd80,23, 0xa20ce00,23, 0xa20ce80,23, 0xa20cf00,23, 0xa20cf80,23, 0xa20d000,23, 0xa20d080,23, 0xa20d100,23, 0xa20d180,23, 0xa20d200,23, 0xa20d280,23, 0xa20d300,23, 0xa20d380,23, 0xa20d400,23, 0xa20d480,23, 0xa20d500,23, 0xa20d580,23, 0xa20d600,23, 0xa20d680,23, 0xa20d700,23, 0xa20d780,23, 0xa20d800,23, 0xa20d880,23, 0xa20d900,23, 0xa20d980,23, 0xa20da00,23, 0xa20da80,23, 0xa20db00,23, 0xa20db80,23, 0xa20dc00,23, 0xa20dc80,23, 0xa20dd00,23, 0xa20dd80,23, 0xa20de00,23, 0xa20de80,23, 0xa20df00,23, 0xa20df80,23, 0xa20e000,23, 0xa20e080,23, 0xa20e100,23, 0xa20e180,23, 0xa20e200,23, 0xa20e280,23, 0xa20e300,23, 0xa20e380,23, 0xa20e400,23, 0xa20e480,23, 0xa20e500,23, 0xa20e580,23, 0xa20e600,23, 0xa20e680,23, 0xa20e700,23, 0xa20e780,23, 0xa20e800,23, 0xa20e880,23, 0xa20e900,23, 0xa20e980,23, 0xa20ea00,23, 0xa20ea80,23, 0xa20eb00,23, 0xa20eb80,23, 0xa20ec00,23, 0xa20ec80,23, 0xa20ed00,23, 0xa20ed80,23, 0xa20ee00,23, 0xa20ee80,23, 0xa20ef00,23, 0xa20ef80,23, 0xa20f000,23, 0xa20f080,23, 0xa20f100,23, 0xa20f180,23, 0xa20f200,23, 0xa20f280,23, 0xa20f300,23, 0xa20f380,23, 0xa20f400,23, 0xa20f480,23, 0xa20f500,23, 0xa20f580,23, 0xa20f600,23, 0xa20f680,23, 0xa20f700,23, 0xa20f780,23, 0xa20f800,23, 0xa20f880,23, 0xa20f900,23, 0xa20f980,23, 0xa20fa00,23, 0xa20fa80,23, 0xa20fb00,23, 0xa20fb80,23, 0xa20fc00,23, 0xa20fc80,23, 0xa20fd00,23, 0xa20fd80,23, 0xa20fe00,23, 0xa20fe80,23, 0xa20ff00,23, 0xa20ff80,23, 0xa210000,23, 0xa210080,23, 0xa210100,23, 0xa210180,23, 0xa210200,23, 0xa210280,23, 0xa210300,23, 0xa210380,23, 0xa210400,23, 0xa210480,23, 0xa210500,23, 0xa210580,23, 0xa210600,23, 0xa210680,23, 0xa210700,23, 0xa210780,23, 0xa210800,23, 0xa210880,23, 0xa210900,23, 0xa210980,23, 0xa210a00,23, 0xa210a80,23, 0xa210b00,23, 0xa210b80,23, 0xa210c00,23, 0xa210c80,23, 0xa210d00,23, 0xa210d80,23, 0xa210e00,23, 0xa210e80,23, 0xa210f00,23, 0xa210f80,23, 0xa211000,23, 0xa211080,23, 0xa211100,23, 0xa211180,23, 0xa211200,23, 0xa211280,23, 0xa211300,23, 0xa211380,23, 0xa211400,23, 0xa211480,23, 0xa211500,23, 0xa211580,23, 0xa211600,23, 0xa211680,23, 0xa211700,23, 0xa211780,23, 0xa211800,23, 0xa211880,23, 0xa211900,23, 0xa211980,23, 0xa211a00,23, 0xa211a80,23, 0xa211b00,23, 0xa211b80,23, 0xa211c00,23, 0xa211c80,23, 0xa211d00,23, 0xa211d80,23, 0xa211e00,23, 0xa211e80,23, 0xa211f00,23, 0xa211f80,23, 0xa212000,23, 0xa212080,23, 0xa212100,23, 0xa212180,23, 0xa212200,23, 0xa212280,23, 0xa212300,23, 0xa212380,23, 0xa212400,23, 0xa212480,23, 0xa212500,23, 0xa212580,23, 0xa212600,23, 0xa212680,23, 0xa212700,23, 0xa212780,23, 0xa212800,23, 0xa212880,23, 0xa212900,23, 0xa212980,23, 0xa212a00,23, 0xa212a80,23, 0xa212b00,23, 0xa212b80,23, 0xa212c00,23, 0xa212c80,23, 0xa212d00,23, 0xa212d80,23, 0xa212e00,23, 0xa212e80,23, 0xa212f00,23, 0xa212f80,23, 0xa213000,23, 0xa213080,23, 0xa213100,23, 0xa213180,23, 0xa213200,23, 0xa213280,23, 0xa213300,23, 0xa213380,23, 0xa213400,23, 0xa213480,23, 0xa213500,23, 0xa213580,23, 0xa213600,23, 0xa213680,23, 0xa213700,23, 0xa213780,23, 0xa213800,23, 0xa213880,23, 0xa213900,23, 0xa213980,23, 0xa213a00,23, 0xa213a80,23, 0xa213b00,23, 0xa213b80,23, 0xa213c00,23, 0xa213c80,23, 0xa213d00,23, 0xa213d80,23, 0xa213e00,23, 0xa213e80,23, 0xa213f00,23, 0xa213f80,23, 0xa214000,23, 0xa214080,23, 0xa214100,23, 0xa214180,23, 0xa214200,23, 0xa214280,23, 0xa214300,23, 0xa214380,23, 0xa214400,23, 0xa214480,23, 0xa214500,23, 0xa214580,23, 0xa214600,23, 0xa214680,23, 0xa214700,23, 0xa214780,23, 0xa214800,23, 0xa214880,23, 0xa214900,23, 0xa214980,23, 0xa214a00,23, 0xa214a80,23, 0xa214b00,23, 0xa214b80,23, 0xa214c00,23, 0xa214c80,23, 0xa214d00,23, 0xa214d80,23, 0xa214e00,23, 0xa214e80,23, 0xa214f00,23, 0xa214f80,23, 0xa215000,23, 0xa215080,23, 0xa215100,23, 0xa215180,23, 0xa215200,23, 0xa215280,23, 0xa215300,23, 0xa215380,23, 0xa215400,23, 0xa215480,23, 0xa215500,23, 0xa215580,23, 0xa215600,23, 0xa215680,23, 0xa215700,23, 0xa215780,23, 0xa215800,23, 0xa215880,23, 0xa215900,23, 0xa215980,23, 0xa215a00,23, 0xa215a80,23, 0xa215b00,23, 0xa215b80,23, 0xa215c00,23, 0xa215c80,23, 0xa215d00,23, 0xa215d80,23, 0xa215e00,23, 0xa215e80,23, 0xa215f00,23, 0xa215f80,23, 0xa216000,23, 0xa216080,23, 0xa216100,23, 0xa216180,23, 0xa216200,23, 0xa216280,23, 0xa216300,23, 0xa216380,23, 0xa216400,23, 0xa216480,23, 0xa216500,23, 0xa216580,23, 0xa216600,23, 0xa216680,23, 0xa216700,23, 0xa216780,23, 0xa216800,23, 0xa216880,23, 0xa216900,23, 0xa216980,23, 0xa216a00,23, 0xa216a80,23, 0xa216b00,23, 0xa216b80,23, 0xa216c00,23, 0xa216c80,23, 0xa216d00,23, 0xa216d80,23, 0xa216e00,23, 0xa216e80,23, 0xa216f00,23, 0xa216f80,23, 0xa217000,23, 0xa217080,23, 0xa217100,23, 0xa217180,23, 0xa217200,23, 0xa217280,23, 0xa217300,23, 0xa217380,23, 0xa217400,23, 0xa217480,23, 0xa217500,23, 0xa217580,23, 0xa217600,23, 0xa217680,23, 0xa217700,23, 0xa217780,23, 0xa217800,23, 0xa217880,23, 0xa217900,23, 0xa217980,23, 0xa217a00,23, 0xa217a80,23, 0xa217b00,23, 0xa217b80,23, 0xa217c00,23, 0xa217c80,23, 0xa217d00,23, 0xa217d80,23, 0xa217e00,23, 0xa217e80,23, 0xa217f00,23, 0xa217f80,23, 0xa218000,23, 0xa218080,23, 0xa218100,23, 0xa218180,23, 0xa218200,23, 0xa218280,23, 0xa218300,23, 0xa218380,23, 0xa218400,23, 0xa218480,23, 0xa218500,23, 0xa218580,23, 0xa218600,23, 0xa218680,23, 0xa218700,23, 0xa218780,23, 0xa218800,23, 0xa218880,23, 0xa218900,23, 0xa218980,23, 0xa218a00,23, 0xa218a80,23, 0xa218b00,23, 0xa218b80,23, 0xa218c00,23, 0xa218c80,23, 0xa218d00,23, 0xa218d80,23, 0xa218e00,23, 0xa218e80,23, 0xa218f00,23, 0xa218f80,23, 0xa219000,23, 0xa219080,23, 0xa219100,23, 0xa219180,23, 0xa219200,23, 0xa219280,23, 0xa219300,23, 0xa219380,23, 0xa219400,23, 0xa219480,23, 0xa219500,23, 0xa219580,23, 0xa219600,23, 0xa219680,23, 0xa219700,23, 0xa219780,23, 0xa219800,23, 0xa219880,23, 0xa219900,23, 0xa219980,23, 0xa219a00,23, 0xa219a80,23, 0xa219b00,23, 0xa219b80,23, 0xa219c00,23, 0xa219c80,23, 0xa219d00,23, 0xa219d80,23, 0xa219e00,23, 0xa219e80,23, 0xa219f00,23, 0xa219f80,23, 0xa21a000,23, 0xa21a080,23, 0xa21a100,23, 0xa21a180,23, 0xa21a200,23, 0xa21a280,23, 0xa21a300,23, 0xa21a380,23, 0xa21a400,23, 0xa21a480,23, 0xa21a500,23, 0xa21a580,23, 0xa21a600,23, 0xa21a680,23, 0xa21a700,23, 0xa21a780,23, 0xa21a800,23, 0xa21a880,23, 0xa21a900,23, 0xa21a980,23, 0xa21aa00,23, 0xa21aa80,23, 0xa21ab00,23, 0xa21ab80,23, 0xa21ac00,23, 0xa21ac80,23, 0xa21ad00,23, 0xa21ad80,23, 0xa21ae00,23, 0xa21ae80,23, 0xa21af00,23, 0xa21af80,23, 0xa21b000,23, 0xa21b080,23, 0xa21b100,23, 0xa21b180,23, 0xa21b200,23, 0xa21b280,23, 0xa21b300,23, 0xa21b380,23, 0xa21b400,23, 0xa21b480,23, 0xa21b500,23, 0xa21b580,23, 0xa21b600,23, 0xa21b680,23, 0xa21b700,23, 0xa21b780,23, 0xa21b800,23, 0xa21b880,23, 0xa21b900,23, 0xa21b980,23, 0xa21ba00,23, 0xa21ba80,23, 0xa21bb00,23, 0xa21bb80,23, 0xa21bc00,23, 0xa21bc80,23, 0xa21bd00,23, 0xa21bd80,23, 0xa21be00,23, 0xa21be80,23, 0xa21bf00,23, 0xa21bf80,23, 0xa21c000,23, 0xa21c080,23, 0xa21c100,23, 0xa21c180,23, 0xa21c200,23, 0xa21c280,23, 0xa21c300,23, 0xa21c380,23, 0xa21c400,23, 0xa21c480,23, 0xa21c500,23, 0xa21c580,23, 0xa21c600,23, 0xa21c680,23, 0xa21c700,23, 0xa21c780,23, 0xa21c800,23, 0xa21c880,23, 0xa21c900,23, 0xa21c980,23, 0xa21ca00,23, 0xa21ca80,23, 0xa21cb00,23, 0xa21cb80,23, 0xa21cc00,23, 0xa21cc80,23, 0xa21cd00,23, 0xa21cd80,23, 0xa21ce00,23, 0xa21ce80,23, 0xa21cf00,23, 0xa21cf80,23, 0xa21d000,23, 0xa21d080,23, 0xa21d100,23, 0xa21d180,23, 0xa21d200,23, 0xa21d280,23, 0xa21d300,23, 0xa21d380,23, 0xa21d400,23, 0xa21d480,23, 0xa21d500,23, 0xa21d580,23, 0xa21d600,23, 0xa21d680,23, 0xa21d700,23, 0xa21d780,23, 0xa21d800,23, 0xa21d880,23, 0xa21d900,23, 0xa21d980,23, 0xa21da00,23, 0xa21da80,23, 0xa21db00,23, 0xa21db80,23, 0xa21dc00,23, 0xa21dc80,23, 0xa21dd00,23, 0xa21dd80,23, 0xa21de00,23, 0xa21de80,23, 0xa21df00,23, 0xa21df80,23, 0xa21e000,23, 0xa21e080,23, 0xa21e100,23, 0xa21e180,23, 0xa21e200,23, 0xa21e280,23, 0xa21e300,23, 0xa21e380,23, 0xa21e400,23, 0xa21e480,23, 0xa21e500,23, 0xa21e580,23, 0xa21e600,23, 0xa21e680,23, 0xa21e700,23, 0xa21e780,23, 0xa21e800,23, 0xa21e880,23, 0xa21e900,23, 0xa21e980,23, 0xa21ea00,23, 0xa21ea80,23, 0xa21eb00,23, 0xa21eb80,23, 0xa21ec00,23, 0xa21ec80,23, 0xa21ed00,23, 0xa21ed80,23, 0xa21ee00,23, 0xa21ee80,23, 0xa21ef00,23, 0xa21ef80,23, 0xa21f000,23, 0xa21f080,23, 0xa21f100,23, 0xa21f180,23, 0xa21f200,23, 0xa21f280,23, 0xa21f300,23, 0xa21f380,23, 0xa21f400,23, 0xa21f480,23, 0xa21f500,23, 0xa21f580,23, 0xa21f600,23, 0xa21f680,23, 0xa21f700,23, 0xa21f780,23, 0xa21f800,23, 0xa21f880,23, 0xa21f900,23, 0xa21f980,23, 0xa21fa00,23, 0xa21fa80,23, 0xa21fb00,23, 0xa21fb80,23, 0xa21fc00,23, 0xa21fc80,23, 0xa21fd00,23, 0xa21fd80,23, 0xa21fe00,23, 0xa21fe80,23, 0xa21ff00,23, 0xa21ff80,23, 0xa220000,23, 0xa220080,23, 0xa220100,23, 0xa220180,23, 0xa220200,23, 0xa220280,23, 0xa220300,23, 0xa220380,23, 0xa220400,23, 0xa220480,23, 0xa220500,23, 0xa220580,23, 0xa220600,23, 0xa220680,23, 0xa220700,23, 0xa220780,23, 0xa220800,23, 0xa220880,23, 0xa220900,23, 0xa220980,23, 0xa220a00,23, 0xa220a80,23, 0xa220b00,23, 0xa220b80,23, 0xa220c00,23, 0xa220c80,23, 0xa220d00,23, 0xa220d80,23, 0xa220e00,23, 0xa220e80,23, 0xa220f00,23, 0xa220f80,23, 0xa221000,23, 0xa221080,23, 0xa221100,23, 0xa221180,23, 0xa221200,23, 0xa221280,23, 0xa221300,23, 0xa221380,23, 0xa221400,23, 0xa221480,23, 0xa221500,23, 0xa221580,23, 0xa221600,23, 0xa221680,23, 0xa221700,23, 0xa221780,23, 0xa221800,23, 0xa221880,23, 0xa221900,23, 0xa221980,23, 0xa221a00,23, 0xa221a80,23, 0xa221b00,23, 0xa221b80,23, 0xa221c00,23, 0xa221c80,23, 0xa221d00,23, 0xa221d80,23, 0xa221e00,23, 0xa221e80,23, 0xa221f00,23, 0xa221f80,23, 0xa222000,23, 0xa222080,23, 0xa222100,23, 0xa222180,23, 0xa222200,23, 0xa222280,23, 0xa222300,23, 0xa222380,23, 0xa222400,23, 0xa222480,23, 0xa222500,23, 0xa222580,23, 0xa222600,23, 0xa222680,23, 0xa222700,23, 0xa222780,23, 0xa222800,23, 0xa222880,23, 0xa222900,23, 0xa222980,23, 0xa222a00,23, 0xa222a80,23, 0xa222b00,23, 0xa222b80,23, 0xa222c00,23, 0xa222c80,23, 0xa222d00,23, 0xa222d80,23, 0xa222e00,23, 0xa222e80,23, 0xa222f00,23, 0xa222f80,23, 0xa223000,23, 0xa223080,23, 0xa223100,23, 0xa223180,23, 0xa223200,23, 0xa223280,23, 0xa223300,23, 0xa223380,23, 0xa223400,23, 0xa223480,23, 0xa223500,23, 0xa223580,23, 0xa223600,23, 0xa223680,23, 0xa223700,23, 0xa223780,23, 0xa223800,23, 0xa223880,23, 0xa223900,23, 0xa223980,23, 0xa223a00,23, 0xa223a80,23, 0xa223b00,23, 0xa223b80,23, 0xa223c00,23, 0xa223c80,23, 0xa223d00,23, 0xa223d80,23, 0xa223e00,23, 0xa223e80,23, 0xa223f00,23, 0xa223f80,23, 0xa224000,23, 0xa224080,23, 0xa224100,23, 0xa224180,23, 0xa224200,23, 0xa224280,23, 0xa224300,23, 0xa224380,23, 0xa224400,23, 0xa224480,23, 0xa224500,23, 0xa224580,23, 0xa224600,23, 0xa224680,23, 0xa224700,23, 0xa224780,23, 0xa224800,23, 0xa224880,23, 0xa224900,23, 0xa224980,23, 0xa224a00,23, 0xa224a80,23, 0xa224b00,23, 0xa224b80,23, 0xa224c00,23, 0xa224c80,23, 0xa224d00,23, 0xa224d80,23, 0xa224e00,23, 0xa224e80,23, 0xa224f00,23, 0xa224f80,23, 0xa225000,23, 0xa225080,23, 0xa225100,23, 0xa225180,23, 0xa225200,23, 0xa225280,23, 0xa225300,23, 0xa225380,23, 0xa225400,23, 0xa225480,23, 0xa225500,23, 0xa225580,23, 0xa225600,23, 0xa225680,23, 0xa225700,23, 0xa225780,23, 0xa225800,23, 0xa225880,23, 0xa225900,23, 0xa225980,23, 0xa225a00,23, 0xa225a80,23, 0xa225b00,23, 0xa225b80,23, 0xa225c00,23, 0xa225c80,23, 0xa225d00,23, 0xa225d80,23, 0xa225e00,23, 0xa225e80,23, 0xa225f00,23, 0xa225f80,23, 0xa226000,23, 0xa226080,23, 0xa226100,23, 0xa226180,23, 0xa226200,23, 0xa226280,23, 0xa226300,23, 0xa226380,23, 0xa226400,23, 0xa226480,23, 0xa226500,23, 0xa226580,23, 0xa226600,23, 0xa226680,23, 0xa226700,23, 0xa226780,23, 0xa226800,23, 0xa226880,23, 0xa226900,23, 0xa226980,23, 0xa226a00,23, 0xa226a80,23, 0xa226b00,23, 0xa226b80,23, 0xa226c00,23, 0xa226c80,23, 0xa226d00,23, 0xa226d80,23, 0xa226e00,23, 0xa226e80,23, 0xa226f00,23, 0xa226f80,23, 0xa227000,23, 0xa227080,23, 0xa227100,23, 0xa227180,23, 0xa227200,23, 0xa227280,23, 0xa227300,23, 0xa227380,23, 0xa227400,23, 0xa227480,23, 0xa227500,23, 0xa227580,23, 0xa227600,23, 0xa227680,23, 0xa227700,23, 0xa227780,23, 0xa227800,23, 0xa227880,23, 0xa227900,23, 0xa227980,23, 0xa227a00,23, 0xa227a80,23, 0xa227b00,23, 0xa227b80,23, 0xa227c00,23, 0xa227c80,23, 0xa227d00,23, 0xa227d80,23, 0xa227e00,23, 0xa227e80,23, 0xa227f00,23, 0xa227f80,23, 0xa228000,23, 0xa228080,23, 0xa228100,23, 0xa228180,23, 0xa228200,23, 0xa228280,23, 0xa228300,23, 0xa228380,23, 0xa228400,23, 0xa228480,23, 0xa228500,23, 0xa228580,23, 0xa228600,23, 0xa228680,23, 0xa228700,23, 0xa228780,23, 0xa228800,23, 0xa228880,23, 0xa228900,23, 0xa228980,23, 0xa228a00,23, 0xa228a80,23, 0xa228b00,23, 0xa228b80,23, 0xa228c00,23, 0xa228c80,23, 0xa228d00,23, 0xa228d80,23, 0xa228e00,23, 0xa228e80,23, 0xa228f00,23, 0xa228f80,23, 0xa229000,23, 0xa229080,23, 0xa229100,23, 0xa229180,23, 0xa229200,23, 0xa229280,23, 0xa229300,23, 0xa229380,23, 0xa229400,23, 0xa229480,23, 0xa229500,23, 0xa229580,23, 0xa229600,23, 0xa229680,23, 0xa229700,23, 0xa229780,23, 0xa229800,23, 0xa229880,23, 0xa229900,23, 0xa229980,23, 0xa229a00,23, 0xa229a80,23, 0xa229b00,23, 0xa229b80,23, 0xa229c00,23, 0xa229c80,23, 0xa229d00,23, 0xa229d80,23, 0xa229e00,23, 0xa229e80,23, 0xa229f00,23, 0xa229f80,23, 0xa22a000,23, 0xa22a080,23, 0xa22a100,23, 0xa22a180,23, 0xa22a200,23, 0xa22a280,23, 0xa22a300,23, 0xa22a380,23, 0xa22a400,23, 0xa22a480,23, 0xa22a500,23, 0xa22a580,23, 0xa22a600,23, 0xa22a680,23, 0xa22a700,23, 0xa22a780,23, 0xa22a800,23, 0xa22a880,23, 0xa22a900,23, 0xa22a980,23, 0xa22aa00,23, 0xa22aa80,23, 0xa22ab00,23, 0xa22ab80,23, 0xa22ac00,23, 0xa22ac80,23, 0xa22ad00,23, 0xa22ad80,23, 0xa22ae00,23, 0xa22ae80,23, 0xa22af00,23, 0xa22af80,23, 0xa22b000,23, 0xa22b080,23, 0xa22b100,23, 0xa22b180,23, 0xa22b200,23, 0xa22b280,23, 0xa22b300,23, 0xa22b380,23, 0xa22b400,23, 0xa22b480,23, 0xa22b500,23, 0xa22b580,23, 0xa22b600,23, 0xa22b680,23, 0xa22b700,23, 0xa22b780,23, 0xa22b800,23, 0xa22b880,23, 0xa22b900,23, 0xa22b980,23, 0xa22ba00,23, 0xa22ba80,23, 0xa22bb00,23, 0xa22bb80,23, 0xa22bc00,23, 0xa22bc80,23, 0xa22bd00,23, 0xa22bd80,23, 0xa22be00,23, 0xa22be80,23, 0xa22bf00,23, 0xa22bf80,23, 0xa22c000,23, 0xa22c080,23, 0xa22c100,23, 0xa22c180,23, 0xa22c200,23, 0xa22c280,23, 0xa22c300,23, 0xa22c380,23, 0xa22c400,23, 0xa22c480,23, 0xa22c500,23, 0xa22c580,23, 0xa22c600,23, 0xa22c680,23, 0xa22c700,23, 0xa22c780,23, 0xa22c800,23, 0xa22c880,23, 0xa22c900,23, 0xa22c980,23, 0xa22ca00,23, 0xa22ca80,23, 0xa22cb00,23, 0xa22cb80,23, 0xa22cc00,23, 0xa22cc80,23, 0xa22cd00,23, 0xa22cd80,23, 0xa22ce00,23, 0xa22ce80,23, 0xa22cf00,23, 0xa22cf80,23, 0xa22d000,23, 0xa22d080,23, 0xa22d100,23, 0xa22d180,23, 0xa22d200,23, 0xa22d280,23, 0xa22d300,23, 0xa22d380,23, 0xa22d400,23, 0xa22d480,23, 0xa22d500,23, 0xa22d580,23, 0xa22d600,23, 0xa22d680,23, 0xa22d700,23, 0xa22d780,23, 0xa22d800,23, 0xa22d880,23, 0xa22d900,23, 0xa22d980,23, 0xa22da00,23, 0xa22da80,23, 0xa22db00,23, 0xa22db80,23, 0xa22dc00,23, 0xa22dc80,23, 0xa22dd00,23, 0xa22dd80,23, 0xa22de00,23, 0xa22de80,23, 0xa22df00,23, 0xa22df80,23, 0xa22e000,23, 0xa22e080,23, 0xa22e100,23, 0xa22e180,23, 0xa22e200,23, 0xa22e280,23, 0xa22e300,23, 0xa22e380,23, 0xa22e400,23, 0xa22e480,23, 0xa22e500,23, 0xa22e580,23, 0xa22e600,23, 0xa22e680,23, 0xa22e700,23, 0xa22e780,23, 0xa22e800,23, 0xa22e880,23, 0xa22e900,23, 0xa22e980,23, 0xa22ea00,23, 0xa22ea80,23, 0xa22eb00,23, 0xa22eb80,23, 0xa22ec00,23, 0xa22ec80,23, 0xa22ed00,23, 0xa22ed80,23, 0xa22ee00,23, 0xa22ee80,23, 0xa22ef00,23, 0xa22ef80,23, 0xa22f000,23, 0xa22f080,23, 0xa22f100,23, 0xa22f180,23, 0xa22f200,23, 0xa22f280,23, 0xa22f300,23, 0xa22f380,23, 0xa22f400,23, 0xa22f480,23, 0xa22f500,23, 0xa22f580,23, 0xa22f600,23, 0xa22f680,23, 0xa22f700,23, 0xa22f780,23, 0xa22f800,23, 0xa22f880,23, 0xa22f900,23, 0xa22f980,23, 0xa22fa00,23, 0xa22fa80,23, 0xa22fb00,23, 0xa22fb80,23, 0xa22fc00,23, 0xa22fc80,23, 0xa22fd00,23, 0xa22fd80,23, 0xa22fe00,23, 0xa22fe80,23, 0xa22ff00,23, 0xa22ff80,23, 0xa230000,23, 0xa230080,23, 0xa230100,23, 0xa230180,23, 0xa230200,23, 0xa230280,23, 0xa230300,23, 0xa230380,23, 0xa230400,23, 0xa230480,23, 0xa230500,23, 0xa230580,23, 0xa230600,23, 0xa230680,23, 0xa230700,23, 0xa230780,23, 0xa230800,23, 0xa230880,23, 0xa230900,23, 0xa230980,23, 0xa230a00,23, 0xa230a80,23, 0xa230b00,23, 0xa230b80,23, 0xa230c00,23, 0xa230c80,23, 0xa230d00,23, 0xa230d80,23, 0xa230e00,23, 0xa230e80,23, 0xa230f00,23, 0xa230f80,23, 0xa231000,23, 0xa231080,23, 0xa231100,23, 0xa231180,23, 0xa231200,23, 0xa231280,23, 0xa231300,23, 0xa231380,23, 0xa231400,23, 0xa231480,23, 0xa231500,23, 0xa231580,23, 0xa231600,23, 0xa231680,23, 0xa231700,23, 0xa231780,23, 0xa231800,23, 0xa231880,23, 0xa231900,23, 0xa231980,23, 0xa231a00,23, 0xa231a80,23, 0xa231b00,23, 0xa231b80,23, 0xa231c00,23, 0xa231c80,23, 0xa231d00,23, 0xa231d80,23, 0xa231e00,23, 0xa231e80,23, 0xa231f00,23, 0xa231f80,23, 0xa232000,23, 0xa232080,23, 0xa232100,23, 0xa232180,23, 0xa232200,23, 0xa232280,23, 0xa232300,23, 0xa232380,23, 0xa232400,23, 0xa232480,23, 0xa232500,23, 0xa232580,23, 0xa232600,23, 0xa232680,23, 0xa232700,23, 0xa232780,23, 0xa232800,23, 0xa232880,23, 0xa232900,23, 0xa232980,23, 0xa232a00,23, 0xa232a80,23, 0xa232b00,23, 0xa232b80,23, 0xa232c00,23, 0xa232c80,23, 0xa232d00,23, 0xa232d80,23, 0xa232e00,23, 0xa232e80,23, 0xa232f00,23, 0xa232f80,23, 0xa233000,23, 0xa233080,23, 0xa233100,23, 0xa233180,23, 0xa233200,23, 0xa233280,23, 0xa233300,23, 0xa233380,23, 0xa233400,23, 0xa233480,23, 0xa233500,23, 0xa233580,23, 0xa233600,23, 0xa233680,23, 0xa233700,23, 0xa233780,23, 0xa233800,23, 0xa233880,23, 0xa233900,23, 0xa233980,23, 0xa233a00,23, 0xa233a80,23, 0xa233b00,23, 0xa233b80,23, 0xa233c00,23, 0xa233c80,23, 0xa233d00,23, 0xa233d80,23, 0xa233e00,23, 0xa233e80,23, 0xa233f00,23, 0xa233f80,23, 0xa234000,23, 0xa234080,23, 0xa234100,23, 0xa234180,23, 0xa234200,23, 0xa234280,23, 0xa234300,23, 0xa234380,23, 0xa234400,23, 0xa234480,23, 0xa234500,23, 0xa234580,23, 0xa234600,23, 0xa234680,23, 0xa234700,23, 0xa234780,23, 0xa234800,23, 0xa234880,23, 0xa234900,23, 0xa234980,23, 0xa234a00,23, 0xa234a80,23, 0xa234b00,23, 0xa234b80,23, 0xa234c00,23, 0xa234c80,23, 0xa234d00,23, 0xa234d80,23, 0xa234e00,23, 0xa234e80,23, 0xa234f00,23, 0xa234f80,23, 0xa235000,23, 0xa235080,23, 0xa235100,23, 0xa235180,23, 0xa235200,23, 0xa235280,23, 0xa235300,23, 0xa235380,23, 0xa235400,23, 0xa235480,23, 0xa235500,23, 0xa235580,23, 0xa235600,23, 0xa235680,23, 0xa235700,23, 0xa235780,23, 0xa235800,23, 0xa235880,23, 0xa235900,23, 0xa235980,23, 0xa235a00,23, 0xa235a80,23, 0xa235b00,23, 0xa235b80,23, 0xa235c00,23, 0xa235c80,23, 0xa235d00,23, 0xa235d80,23, 0xa235e00,23, 0xa235e80,23, 0xa235f00,23, 0xa235f80,23, 0xa236000,23, 0xa236080,23, 0xa236100,23, 0xa236180,23, 0xa236200,23, 0xa236280,23, 0xa236300,23, 0xa236380,23, 0xa236400,23, 0xa236480,23, 0xa236500,23, 0xa236580,23, 0xa236600,23, 0xa236680,23, 0xa236700,23, 0xa236780,23, 0xa236800,23, 0xa236880,23, 0xa236900,23, 0xa236980,23, 0xa236a00,23, 0xa236a80,23, 0xa236b00,23, 0xa236b80,23, 0xa236c00,23, 0xa236c80,23, 0xa236d00,23, 0xa236d80,23, 0xa236e00,23, 0xa236e80,23, 0xa236f00,23, 0xa236f80,23, 0xa237000,23, 0xa237080,23, 0xa237100,23, 0xa237180,23, 0xa237200,23, 0xa237280,23, 0xa237300,23, 0xa237380,23, 0xa237400,23, 0xa237480,23, 0xa237500,23, 0xa237580,23, 0xa237600,23, 0xa237680,23, 0xa237700,23, 0xa237780,23, 0xa237800,23, 0xa237880,23, 0xa237900,23, 0xa237980,23, 0xa237a00,23, 0xa237a80,23, 0xa237b00,23, 0xa237b80,23, 0xa237c00,23, 0xa237c80,23, 0xa237d00,23, 0xa237d80,23, 0xa237e00,23, 0xa237e80,23, 0xa237f00,23, 0xa237f80,23, 0xa238000,23, 0xa238080,23, 0xa238100,23, 0xa238180,23, 0xa238200,23, 0xa238280,23, 0xa238300,23, 0xa238380,23, 0xa238400,23, 0xa238480,23, 0xa238500,23, 0xa238580,23, 0xa238600,23, 0xa238680,23, 0xa238700,23, 0xa238780,23, 0xa238800,23, 0xa238880,23, 0xa238900,23, 0xa238980,23, 0xa238a00,23, 0xa238a80,23, 0xa238b00,23, 0xa238b80,23, 0xa238c00,23, 0xa238c80,23, 0xa238d00,23, 0xa238d80,23, 0xa238e00,23, 0xa238e80,23, 0xa238f00,23, 0xa238f80,23, 0xa239000,23, 0xa239080,23, 0xa239100,23, 0xa239180,23, 0xa239200,23, 0xa239280,23, 0xa239300,23, 0xa239380,23, 0xa239400,23, 0xa239480,23, 0xa239500,23, 0xa239580,23, 0xa239600,23, 0xa239680,23, 0xa239700,23, 0xa239780,23, 0xa239800,23, 0xa239880,23, 0xa239900,23, 0xa239980,23, 0xa239a00,23, 0xa239a80,23, 0xa239b00,23, 0xa239b80,23, 0xa239c00,23, 0xa239c80,23, 0xa239d00,23, 0xa239d80,23, 0xa239e00,23, 0xa239e80,23, 0xa239f00,23, 0xa239f80,23, 0xa23a000,23, 0xa23a080,23, 0xa23a100,23, 0xa23a180,23, 0xa23a200,23, 0xa23a280,23, 0xa23a300,23, 0xa23a380,23, 0xa23a400,23, 0xa23a480,23, 0xa23a500,23, 0xa23a580,23, 0xa23a600,23, 0xa23a680,23, 0xa23a700,23, 0xa23a780,23, 0xa23a800,23, 0xa23a880,23, 0xa23a900,23, 0xa23a980,23, 0xa23aa00,23, 0xa23aa80,23, 0xa23ab00,23, 0xa23ab80,23, 0xa23ac00,23, 0xa23ac80,23, 0xa23ad00,23, 0xa23ad80,23, 0xa23ae00,23, 0xa23ae80,23, 0xa23af00,23, 0xa23af80,23, 0xa23b000,23, 0xa23b080,23, 0xa23b100,23, 0xa23b180,23, 0xa23b200,23, 0xa23b280,23, 0xa23b300,23, 0xa23b380,23, 0xa23b400,23, 0xa23b480,23, 0xa23b500,23, 0xa23b580,23, 0xa23b600,23, 0xa23b680,23, 0xa23b700,23, 0xa23b780,23, 0xa23b800,23, 0xa23b880,23, 0xa23b900,23, 0xa23b980,23, 0xa23ba00,23, 0xa23ba80,23, 0xa23bb00,23, 0xa23bb80,23, 0xa23bc00,23, 0xa23bc80,23, 0xa23bd00,23, 0xa23bd80,23, 0xa23be00,23, 0xa23be80,23, 0xa23bf00,23, 0xa23bf80,23, 0xa23c000,23, 0xa23c080,23, 0xa23c100,23, 0xa23c180,23, 0xa23c200,23, 0xa23c280,23, 0xa23c300,23, 0xa23c380,23, 0xa23c400,23, 0xa23c480,23, 0xa23c500,23, 0xa23c580,23, 0xa23c600,23, 0xa23c680,23, 0xa23c700,23, 0xa23c780,23, 0xa23c800,23, 0xa23c880,23, 0xa23c900,23, 0xa23c980,23, 0xa23ca00,23, 0xa23ca80,23, 0xa23cb00,23, 0xa23cb80,23, 0xa23cc00,23, 0xa23cc80,23, 0xa23cd00,23, 0xa23cd80,23, 0xa23ce00,23, 0xa23ce80,23, 0xa23cf00,23, 0xa23cf80,23, 0xa23d000,23, 0xa23d080,23, 0xa23d100,23, 0xa23d180,23, 0xa23d200,23, 0xa23d280,23, 0xa23d300,23, 0xa23d380,23, 0xa23d400,23, 0xa23d480,23, 0xa23d500,23, 0xa23d580,23, 0xa23d600,23, 0xa23d680,23, 0xa23d700,23, 0xa23d780,23, 0xa23d800,23, 0xa23d880,23, 0xa23d900,23, 0xa23d980,23, 0xa23da00,23, 0xa23da80,23, 0xa23db00,23, 0xa23db80,23, 0xa23dc00,23, 0xa23dc80,23, 0xa23dd00,23, 0xa23dd80,23, 0xa23de00,23, 0xa23de80,23, 0xa23df00,23, 0xa23df80,23, 0xa23e000,23, 0xa23e080,23, 0xa23e100,23, 0xa23e180,23, 0xa23e200,23, 0xa23e280,23, 0xa23e300,23, 0xa23e380,23, 0xa23e400,23, 0xa23e480,23, 0xa23e500,23, 0xa23e580,23, 0xa23e600,23, 0xa23e680,23, 0xa23e700,23, 0xa23e780,23, 0xa23e800,23, 0xa23e880,23, 0xa23e900,23, 0xa23e980,23, 0xa23ea00,23, 0xa23ea80,23, 0xa23eb00,23, 0xa23eb80,23, 0xa23ec00,23, 0xa23ec80,23, 0xa23ed00,23, 0xa23ed80,23, 0xa23ee00,23, 0xa23ee80,23, 0xa23ef00,23, 0xa23ef80,23, 0xa23f000,23, 0xa23f080,23, 0xa23f100,23, 0xa23f180,23, 0xa23f200,23, 0xa23f280,23, 0xa23f300,23, 0xa23f380,23, 0xa23f400,23, 0xa23f480,23, 0xa23f500,23, 0xa23f580,23, 0xa23f600,23, 0xa23f680,23, 0xa23f700,23, 0xa23f780,23, 0xa23f800,23, 0xa23f880,23, 0xa23f900,23, 0xa23f980,23, 0xa23fa00,23, 0xa23fa80,23, 0xa23fb00,23, 0xa23fb80,23, 0xa23fc00,23, 0xa23fc80,23, 0xa23fd00,23, 0xa23fd80,23, 0xa23fe00,23, 0xa23fe80,23, 0xa23ff00,23, 0xa23ff80,23, 0xa240000,23, 0xa240080,23, 0xa240100,23, 0xa240180,23, 0xa240200,23, 0xa240280,23, 0xa240300,23, 0xa240380,23, 0xa240400,23, 0xa240480,23, 0xa240500,23, 0xa240580,23, 0xa240600,23, 0xa240680,23, 0xa240700,23, 0xa240780,23, 0xa240800,23, 0xa240880,23, 0xa240900,23, 0xa240980,23, 0xa240a00,23, 0xa240a80,23, 0xa240b00,23, 0xa240b80,23, 0xa240c00,23, 0xa240c80,23, 0xa240d00,23, 0xa240d80,23, 0xa240e00,23, 0xa240e80,23, 0xa240f00,23, 0xa240f80,23, 0xa241000,23, 0xa241080,23, 0xa241100,23, 0xa241180,23, 0xa241200,23, 0xa241280,23, 0xa241300,23, 0xa241380,23, 0xa241400,23, 0xa241480,23, 0xa241500,23, 0xa241580,23, 0xa241600,23, 0xa241680,23, 0xa241700,23, 0xa241780,23, 0xa241800,23, 0xa241880,23, 0xa241900,23, 0xa241980,23, 0xa241a00,23, 0xa241a80,23, 0xa241b00,23, 0xa241b80,23, 0xa241c00,23, 0xa241c80,23, 0xa241d00,23, 0xa241d80,23, 0xa241e00,23, 0xa241e80,23, 0xa241f00,23, 0xa241f80,23, 0xa242000,23, 0xa242080,23, 0xa242100,23, 0xa242180,23, 0xa242200,23, 0xa242280,23, 0xa242300,23, 0xa242380,23, 0xa242400,23, 0xa242480,23, 0xa242500,23, 0xa242580,23, 0xa242600,23, 0xa242680,23, 0xa242700,23, 0xa242780,23, 0xa242800,23, 0xa242880,23, 0xa242900,23, 0xa242980,23, 0xa242a00,23, 0xa242a80,23, 0xa242b00,23, 0xa242b80,23, 0xa242c00,23, 0xa242c80,23, 0xa242d00,23, 0xa242d80,23, 0xa242e00,23, 0xa242e80,23, 0xa242f00,23, 0xa242f80,23, 0xa243000,23, 0xa243080,23, 0xa243100,23, 0xa243180,23, 0xa243200,23, 0xa243280,23, 0xa243300,23, 0xa243380,23, 0xa243400,23, 0xa243480,23, 0xa243500,23, 0xa243580,23, 0xa243600,23, 0xa243680,23, 0xa243700,23, 0xa243780,23, 0xa243800,23, 0xa243880,23, 0xa243900,23, 0xa243980,23, 0xa243a00,23, 0xa243a80,23, 0xa243b00,23, 0xa243b80,23, 0xa243c00,23, 0xa243c80,23, 0xa243d00,23, 0xa243d80,23, 0xa243e00,23, 0xa243e80,23, 0xa243f00,23, 0xa243f80,23, 0xa244000,23, 0xa244080,23, 0xa244100,23, 0xa244180,23, 0xa244200,23, 0xa244280,23, 0xa244300,23, 0xa244380,23, 0xa244400,23, 0xa244480,23, 0xa244500,23, 0xa244580,23, 0xa244600,23, 0xa244680,23, 0xa244700,23, 0xa244780,23, 0xa244800,23, 0xa244880,23, 0xa244900,23, 0xa244980,23, 0xa244a00,23, 0xa244a80,23, 0xa244b00,23, 0xa244b80,23, 0xa244c00,23, 0xa244c80,23, 0xa244d00,23, 0xa244d80,23, 0xa244e00,23, 0xa244e80,23, 0xa244f00,23, 0xa244f80,23, 0xa245000,23, 0xa245080,23, 0xa245100,23, 0xa245180,23, 0xa245200,23, 0xa245280,23, 0xa245300,23, 0xa245380,23, 0xa245400,23, 0xa245480,23, 0xa245500,23, 0xa245580,23, 0xa245600,23, 0xa245680,23, 0xa245700,23, 0xa245780,23, 0xa245800,23, 0xa245880,23, 0xa245900,23, 0xa245980,23, 0xa245a00,23, 0xa245a80,23, 0xa245b00,23, 0xa245b80,23, 0xa245c00,23, 0xa245c80,23, 0xa245d00,23, 0xa245d80,23, 0xa245e00,23, 0xa245e80,23, 0xa245f00,23, 0xa245f80,23, 0xa246000,23, 0xa246080,23, 0xa246100,23, 0xa246180,23, 0xa246200,23, 0xa246280,23, 0xa246300,23, 0xa246380,23, 0xa246400,23, 0xa246480,23, 0xa246500,23, 0xa246580,23, 0xa246600,23, 0xa246680,23, 0xa246700,23, 0xa246780,23, 0xa246800,23, 0xa246880,23, 0xa246900,23, 0xa246980,23, 0xa246a00,23, 0xa246a80,23, 0xa246b00,23, 0xa246b80,23, 0xa246c00,23, 0xa246c80,23, 0xa246d00,23, 0xa246d80,23, 0xa246e00,23, 0xa246e80,23, 0xa246f00,23, 0xa246f80,23, 0xa247000,23, 0xa247080,23, 0xa247100,23, 0xa247180,23, 0xa247200,23, 0xa247280,23, 0xa247300,23, 0xa247380,23, 0xa247400,23, 0xa247480,23, 0xa247500,23, 0xa247580,23, 0xa247600,23, 0xa247680,23, 0xa247700,23, 0xa247780,23, 0xa247800,23, 0xa247880,23, 0xa247900,23, 0xa247980,23, 0xa247a00,23, 0xa247a80,23, 0xa247b00,23, 0xa247b80,23, 0xa247c00,23, 0xa247c80,23, 0xa247d00,23, 0xa247d80,23, 0xa247e00,23, 0xa247e80,23, 0xa247f00,23, 0xa247f80,23, 0xa248000,23, 0xa248080,23, 0xa248100,23, 0xa248180,23, 0xa248200,23, 0xa248280,23, 0xa248300,23, 0xa248380,23, 0xa248400,23, 0xa248480,23, 0xa248500,23, 0xa248580,23, 0xa248600,23, 0xa248680,23, 0xa248700,23, 0xa248780,23, 0xa248800,23, 0xa248880,23, 0xa248900,23, 0xa248980,23, 0xa248a00,23, 0xa248a80,23, 0xa248b00,23, 0xa248b80,23, 0xa248c00,23, 0xa248c80,23, 0xa248d00,23, 0xa248d80,23, 0xa248e00,23, 0xa248e80,23, 0xa248f00,23, 0xa248f80,23, 0xa249000,23, 0xa249080,23, 0xa249100,23, 0xa249180,23, 0xa249200,23, 0xa249280,23, 0xa249300,23, 0xa249380,23, 0xa249400,23, 0xa249480,23, 0xa249500,23, 0xa249580,23, 0xa249600,23, 0xa249680,23, 0xa249700,23, 0xa249780,23, 0xa249800,23, 0xa249880,23, 0xa249900,23, 0xa249980,23, 0xa249a00,23, 0xa249a80,23, 0xa249b00,23, 0xa249b80,23, 0xa249c00,23, 0xa249c80,23, 0xa249d00,23, 0xa249d80,23, 0xa249e00,23, 0xa249e80,23, 0xa249f00,23, 0xa249f80,23, 0xa24a000,23, 0xa24a080,23, 0xa24a100,23, 0xa24a180,23, 0xa24a200,23, 0xa24a280,23, 0xa24a300,23, 0xa24a380,23, 0xa24a400,23, 0xa24a480,23, 0xa24a500,23, 0xa24a580,23, 0xa24a600,23, 0xa24a680,23, 0xa24a700,23, 0xa24a780,23, 0xa24a800,23, 0xa24a880,23, 0xa24a900,23, 0xa24a980,23, 0xa24aa00,23, 0xa24aa80,23, 0xa24ab00,23, 0xa24ab80,23, 0xa24ac00,23, 0xa24ac80,23, 0xa24ad00,23, 0xa24ad80,23, 0xa24ae00,23, 0xa24ae80,23, 0xa24af00,23, 0xa24af80,23, 0xa24b000,23, 0xa24b080,23, 0xa24b100,23, 0xa24b180,23, 0xa24b200,23, 0xa24b280,23, 0xa24b300,23, 0xa24b380,23, 0xa24b400,23, 0xa24b480,23, 0xa24b500,23, 0xa24b580,23, 0xa24b600,23, 0xa24b680,23, 0xa24b700,23, 0xa24b780,23, 0xa24b800,23, 0xa24b880,23, 0xa24b900,23, 0xa24b980,23, 0xa24ba00,23, 0xa24ba80,23, 0xa24bb00,23, 0xa24bb80,23, 0xa24bc00,23, 0xa24bc80,23, 0xa24bd00,23, 0xa24bd80,23, 0xa24be00,23, 0xa24be80,23, 0xa24bf00,23, 0xa24bf80,23, 0xa24c000,23, 0xa24c080,23, 0xa24c100,23, 0xa24c180,23, 0xa24c200,23, 0xa24c280,23, 0xa24c300,23, 0xa24c380,23, 0xa24c400,23, 0xa24c480,23, 0xa24c500,23, 0xa24c580,23, 0xa24c600,23, 0xa24c680,23, 0xa24c700,23, 0xa24c780,23, 0xa24c800,23, 0xa24c880,23, 0xa24c900,23, 0xa24c980,23, 0xa24ca00,23, 0xa24ca80,23, 0xa24cb00,23, 0xa24cb80,23, 0xa24cc00,23, 0xa24cc80,23, 0xa24cd00,23, 0xa24cd80,23, 0xa24ce00,23, 0xa24ce80,23, 0xa24cf00,23, 0xa24cf80,23, 0xa24d000,23, 0xa24d080,23, 0xa24d100,23, 0xa24d180,23, 0xa24d200,23, 0xa24d280,23, 0xa24d300,23, 0xa24d380,23, 0xa24d400,23, 0xa24d480,23, 0xa24d500,23, 0xa24d580,23, 0xa24d600,23, 0xa24d680,23, 0xa24d700,23, 0xa24d780,23, 0xa24d800,23, 0xa24d880,23, 0xa24d900,23, 0xa24d980,23, 0xa24da00,23, 0xa24da80,23, 0xa24db00,23, 0xa24db80,23, 0xa24dc00,23, 0xa24dc80,23, 0xa24dd00,23, 0xa24dd80,23, 0xa24de00,23, 0xa24de80,23, 0xa24df00,23, 0xa24df80,23, 0xa24e000,23, 0xa24e080,23, 0xa24e100,23, 0xa24e180,23, 0xa24e200,23, 0xa24e280,23, 0xa24e300,23, 0xa24e380,23, 0xa24e400,23, 0xa24e480,23, 0xa24e500,23, 0xa24e580,23, 0xa24e600,23, 0xa24e680,23, 0xa24e700,23, 0xa24e780,23, 0xa24e800,23, 0xa24e880,23, 0xa24e900,23, 0xa24e980,23, 0xa24ea00,23, 0xa24ea80,23, 0xa24eb00,23, 0xa24eb80,23, 0xa24ec00,23, 0xa24ec80,23, 0xa24ed00,23, 0xa24ed80,23, 0xa24ee00,23, 0xa24ee80,23, 0xa24ef00,23, 0xa24ef80,23, 0xa24f000,23, 0xa24f080,23, 0xa24f100,23, 0xa24f180,23, 0xa24f200,23, 0xa24f280,23, 0xa24f300,23, 0xa24f380,23, 0xa24f400,23, 0xa24f480,23, 0xa24f500,23, 0xa24f580,23, 0xa24f600,23, 0xa24f680,23, 0xa24f700,23, 0xa24f780,23, 0xa24f800,23, 0xa24f880,23, 0xa24f900,23, 0xa24f980,23, 0xa24fa00,23, 0xa24fa80,23, 0xa24fb00,23, 0xa24fb80,23, 0xa24fc00,23, 0xa24fc80,23, 0xa24fd00,23, 0xa24fd80,23, 0xa24fe00,23, 0xa24fe80,23, 0xa24ff00,23, 0xa24ff80,23, 0xa250000,23, 0xa250080,23, 0xa250100,23, 0xa250180,23, 0xa250200,23, 0xa250280,23, 0xa250300,23, 0xa250380,23, 0xa250400,23, 0xa250480,23, 0xa250500,23, 0xa250580,23, 0xa250600,23, 0xa250680,23, 0xa250700,23, 0xa250780,23, 0xa250800,23, 0xa250880,23, 0xa250900,23, 0xa250980,23, 0xa250a00,23, 0xa250a80,23, 0xa250b00,23, 0xa250b80,23, 0xa250c00,23, 0xa250c80,23, 0xa250d00,23, 0xa250d80,23, 0xa250e00,23, 0xa250e80,23, 0xa250f00,23, 0xa250f80,23, 0xa251000,23, 0xa251080,23, 0xa251100,23, 0xa251180,23, 0xa251200,23, 0xa251280,23, 0xa251300,23, 0xa251380,23, 0xa251400,23, 0xa251480,23, 0xa251500,23, 0xa251580,23, 0xa251600,23, 0xa251680,23, 0xa251700,23, 0xa251780,23, 0xa251800,23, 0xa251880,23, 0xa251900,23, 0xa251980,23, 0xa251a00,23, 0xa251a80,23, 0xa251b00,23, 0xa251b80,23, 0xa251c00,23, 0xa251c80,23, 0xa251d00,23, 0xa251d80,23, 0xa251e00,23, 0xa251e80,23, 0xa251f00,23, 0xa251f80,23, 0xa252000,23, 0xa252080,23, 0xa252100,23, 0xa252180,23, 0xa252200,23, 0xa252280,23, 0xa252300,23, 0xa252380,23, 0xa252400,23, 0xa252480,23, 0xa252500,23, 0xa252580,23, 0xa252600,23, 0xa252680,23, 0xa252700,23, 0xa252780,23, 0xa252800,23, 0xa252880,23, 0xa252900,23, 0xa252980,23, 0xa252a00,23, 0xa252a80,23, 0xa252b00,23, 0xa252b80,23, 0xa252c00,23, 0xa252c80,23, 0xa252d00,23, 0xa252d80,23, 0xa252e00,23, 0xa252e80,23, 0xa252f00,23, 0xa252f80,23, 0xa253000,23, 0xa253080,23, 0xa253100,23, 0xa253180,23, 0xa253200,23, 0xa253280,23, 0xa253300,23, 0xa253380,23, 0xa253400,23, 0xa253480,23, 0xa253500,23, 0xa253580,23, 0xa253600,23, 0xa253680,23, 0xa253700,23, 0xa253780,23, 0xa253800,23, 0xa253880,23, 0xa253900,23, 0xa253980,23, 0xa253a00,23, 0xa253a80,23, 0xa253b00,23, 0xa253b80,23, 0xa253c00,23, 0xa253c80,23, 0xa253d00,23, 0xa253d80,23, 0xa253e00,23, 0xa253e80,23, 0xa253f00,23, 0xa253f80,23, 0xa254000,23, 0xa254080,23, 0xa254100,23, 0xa254180,23, 0xa254200,23, 0xa254280,23, 0xa254300,23, 0xa254380,23, 0xa254400,23, 0xa254480,23, 0xa254500,23, 0xa254580,23, 0xa254600,23, 0xa254680,23, 0xa254700,23, 0xa254780,23, 0xa254800,23, 0xa254880,23, 0xa254900,23, 0xa254980,23, 0xa254a00,23, 0xa254a80,23, 0xa254b00,23, 0xa254b80,23, 0xa254c00,23, 0xa254c80,23, 0xa254d00,23, 0xa254d80,23, 0xa254e00,23, 0xa254e80,23, 0xa254f00,23, 0xa254f80,23, 0xa255000,23, 0xa255080,23, 0xa255100,23, 0xa255180,23, 0xa255200,23, 0xa255280,23, 0xa255300,23, 0xa255380,23, 0xa255400,23, 0xa255480,23, 0xa255500,23, 0xa255580,23, 0xa255600,23, 0xa255680,23, 0xa255700,23, 0xa255780,23, 0xa255800,23, 0xa255880,23, 0xa255900,23, 0xa255980,23, 0xa255a00,23, 0xa255a80,23, 0xa255b00,23, 0xa255b80,23, 0xa255c00,23, 0xa255c80,23, 0xa255d00,23, 0xa255d80,23, 0xa255e00,23, 0xa255e80,23, 0xa255f00,23, 0xa255f80,23, 0xa256000,23, 0xa256080,23, 0xa256100,23, 0xa256180,23, 0xa256200,23, 0xa256280,23, 0xa256300,23, 0xa256380,23, 0xa256400,23, 0xa256480,23, 0xa256500,23, 0xa256580,23, 0xa256600,23, 0xa256680,23, 0xa256700,23, 0xa256780,23, 0xa256800,23, 0xa256880,23, 0xa256900,23, 0xa256980,23, 0xa256a00,23, 0xa256a80,23, 0xa256b00,23, 0xa256b80,23, 0xa256c00,23, 0xa256c80,23, 0xa256d00,23, 0xa256d80,23, 0xa256e00,23, 0xa256e80,23, 0xa256f00,23, 0xa256f80,23, 0xa257000,23, 0xa257080,23, 0xa257100,23, 0xa257180,23, 0xa257200,23, 0xa257280,23, 0xa257300,23, 0xa257380,23, 0xa257400,23, 0xa257480,23, 0xa257500,23, 0xa257580,23, 0xa257600,23, 0xa257680,23, 0xa257700,23, 0xa257780,23, 0xa257800,23, 0xa257880,23, 0xa257900,23, 0xa257980,23, 0xa257a00,23, 0xa257a80,23, 0xa257b00,23, 0xa257b80,23, 0xa257c00,23, 0xa257c80,23, 0xa257d00,23, 0xa257d80,23, 0xa257e00,23, 0xa257e80,23, 0xa257f00,23, 0xa257f80,23, 0xa258000,23, 0xa258080,23, 0xa258100,23, 0xa258180,23, 0xa258200,23, 0xa258280,23, 0xa258300,23, 0xa258380,23, 0xa258400,23, 0xa258480,23, 0xa258500,23, 0xa258580,23, 0xa258600,23, 0xa258680,23, 0xa258700,23, 0xa258780,23, 0xa258800,23, 0xa258880,23, 0xa258900,23, 0xa258980,23, 0xa258a00,23, 0xa258a80,23, 0xa258b00,23, 0xa258b80,23, 0xa258c00,23, 0xa258c80,23, 0xa258d00,23, 0xa258d80,23, 0xa258e00,23, 0xa258e80,23, 0xa258f00,23, 0xa258f80,23, 0xa259000,23, 0xa259080,23, 0xa259100,23, 0xa259180,23, 0xa259200,23, 0xa259280,23, 0xa259300,23, 0xa259380,23, 0xa259400,23, 0xa259480,23, 0xa259500,23, 0xa259580,23, 0xa259600,23, 0xa259680,23, 0xa259700,23, 0xa259780,23, 0xa259800,23, 0xa259880,23, 0xa259900,23, 0xa259980,23, 0xa259a00,23, 0xa259a80,23, 0xa259b00,23, 0xa259b80,23, 0xa259c00,23, 0xa259c80,23, 0xa259d00,23, 0xa259d80,23, 0xa259e00,23, 0xa259e80,23, 0xa259f00,23, 0xa259f80,23, 0xa25a000,23, 0xa25a080,23, 0xa25a100,23, 0xa25a180,23, 0xa25a200,23, 0xa25a280,23, 0xa25a300,23, 0xa25a380,23, 0xa25a400,23, 0xa25a480,23, 0xa25a500,23, 0xa25a580,23, 0xa25a600,23, 0xa25a680,23, 0xa25a700,23, 0xa25a780,23, 0xa25a800,23, 0xa25a880,23, 0xa25a900,23, 0xa25a980,23, 0xa25aa00,23, 0xa25aa80,23, 0xa25ab00,23, 0xa25ab80,23, 0xa25ac00,23, 0xa25ac80,23, 0xa25ad00,23, 0xa25ad80,23, 0xa25ae00,23, 0xa25ae80,23, 0xa25af00,23, 0xa25af80,23, 0xa25b000,23, 0xa25b080,23, 0xa25b100,23, 0xa25b180,23, 0xa25b200,23, 0xa25b280,23, 0xa25b300,23, 0xa25b380,23, 0xa25b400,23, 0xa25b480,23, 0xa25b500,23, 0xa25b580,23, 0xa25b600,23, 0xa25b680,23, 0xa25b700,23, 0xa25b780,23, 0xa25b800,23, 0xa25b880,23, 0xa25b900,23, 0xa25b980,23, 0xa25ba00,23, 0xa25ba80,23, 0xa25bb00,23, 0xa25bb80,23, 0xa25bc00,23, 0xa25bc80,23, 0xa25bd00,23, 0xa25bd80,23, 0xa25be00,23, 0xa25be80,23, 0xa25bf00,23, 0xa25bf80,23, 0xa25c000,23, 0xa25c080,23, 0xa25c100,23, 0xa25c180,23, 0xa25c200,23, 0xa25c280,23, 0xa25c300,23, 0xa25c380,23, 0xa25c400,23, 0xa25c480,23, 0xa25c500,23, 0xa25c580,23, 0xa25c600,23, 0xa25c680,23, 0xa25c700,23, 0xa25c780,23, 0xa25c800,23, 0xa25c880,23, 0xa25c900,23, 0xa25c980,23, 0xa25ca00,23, 0xa25ca80,23, 0xa25cb00,23, 0xa25cb80,23, 0xa25cc00,23, 0xa25cc80,23, 0xa25cd00,23, 0xa25cd80,23, 0xa25ce00,23, 0xa25ce80,23, 0xa25cf00,23, 0xa25cf80,23, 0xa25d000,23, 0xa25d080,23, 0xa25d100,23, 0xa25d180,23, 0xa25d200,23, 0xa25d280,23, 0xa25d300,23, 0xa25d380,23, 0xa25d400,23, 0xa25d480,23, 0xa25d500,23, 0xa25d580,23, 0xa25d600,23, 0xa25d680,23, 0xa25d700,23, 0xa25d780,23, 0xa25d800,23, 0xa25d880,23, 0xa25d900,23, 0xa25d980,23, 0xa25da00,23, 0xa25da80,23, 0xa25db00,23, 0xa25db80,23, 0xa25dc00,23, 0xa25dc80,23, 0xa25dd00,23, 0xa25dd80,23, 0xa25de00,23, 0xa25de80,23, 0xa25df00,23, 0xa25df80,23, 0xa25e000,23, 0xa25e080,23, 0xa25e100,23, 0xa25e180,23, 0xa25e200,23, 0xa25e280,23, 0xa25e300,23, 0xa25e380,23, 0xa25e400,23, 0xa25e480,23, 0xa25e500,23, 0xa25e580,23, 0xa25e600,23, 0xa25e680,23, 0xa25e700,23, 0xa25e780,23, 0xa25e800,23, 0xa25e880,23, 0xa25e900,23, 0xa25e980,23, 0xa25ea00,23, 0xa25ea80,23, 0xa25eb00,23, 0xa25eb80,23, 0xa25ec00,23, 0xa25ec80,23, 0xa25ed00,23, 0xa25ed80,23, 0xa25ee00,23, 0xa25ee80,23, 0xa25ef00,23, 0xa25ef80,23, 0xa25f000,23, 0xa25f080,23, 0xa25f100,23, 0xa25f180,23, 0xa25f200,23, 0xa25f280,23, 0xa25f300,23, 0xa25f380,23, 0xa25f400,23, 0xa25f480,23, 0xa25f500,23, 0xa25f580,23, 0xa25f600,23, 0xa25f680,23, 0xa25f700,23, 0xa25f780,23, 0xa25f800,23, 0xa25f880,23, 0xa25f900,23, 0xa25f980,23, 0xa25fa00,23, 0xa25fa80,23, 0xa25fb00,23, 0xa25fb80,23, 0xa25fc00,23, 0xa25fc80,23, 0xa25fd00,23, 0xa25fd80,23, 0xa25fe00,23, 0xa25fe80,23, 0xa25ff00,23, 0xa25ff80,23, 0xa260000,23, 0xa260080,23, 0xa260100,23, 0xa260180,23, 0xa260200,23, 0xa260280,23, 0xa260300,23, 0xa260380,23, 0xa260400,23, 0xa260480,23, 0xa260500,23, 0xa260580,23, 0xa260600,23, 0xa260680,23, 0xa260700,23, 0xa260780,23, 0xa260800,23, 0xa260880,23, 0xa260900,23, 0xa260980,23, 0xa260a00,23, 0xa260a80,23, 0xa260b00,23, 0xa260b80,23, 0xa260c00,23, 0xa260c80,23, 0xa260d00,23, 0xa260d80,23, 0xa260e00,23, 0xa260e80,23, 0xa260f00,23, 0xa260f80,23, 0xa261000,23, 0xa261080,23, 0xa261100,23, 0xa261180,23, 0xa261200,23, 0xa261280,23, 0xa261300,23, 0xa261380,23, 0xa261400,23, 0xa261480,23, 0xa261500,23, 0xa261580,23, 0xa261600,23, 0xa261680,23, 0xa261700,23, 0xa261780,23, 0xa261800,23, 0xa261880,23, 0xa261900,23, 0xa261980,23, 0xa261a00,23, 0xa261a80,23, 0xa261b00,23, 0xa261b80,23, 0xa261c00,23, 0xa261c80,23, 0xa261d00,23, 0xa261d80,23, 0xa261e00,23, 0xa261e80,23, 0xa261f00,23, 0xa261f80,23, 0xa262000,23, 0xa262080,23, 0xa262100,23, 0xa262180,23, 0xa262200,23, 0xa262280,23, 0xa262300,23, 0xa262380,23, 0xa262400,23, 0xa262480,23, 0xa262500,23, 0xa262580,23, 0xa262600,23, 0xa262680,23, 0xa262700,23, 0xa262780,23, 0xa262800,23, 0xa262880,23, 0xa262900,23, 0xa262980,23, 0xa262a00,23, 0xa262a80,23, 0xa262b00,23, 0xa262b80,23, 0xa262c00,23, 0xa262c80,23, 0xa262d00,23, 0xa262d80,23, 0xa262e00,23, 0xa262e80,23, 0xa262f00,23, 0xa262f80,23, 0xa263000,23, 0xa263080,23, 0xa263100,23, 0xa263180,23, 0xa263200,23, 0xa263280,23, 0xa263300,23, 0xa263380,23, 0xa263400,23, 0xa263480,23, 0xa263500,23, 0xa263580,23, 0xa263600,23, 0xa263680,23, 0xa263700,23, 0xa263780,23, 0xa263800,23, 0xa263880,23, 0xa263900,23, 0xa263980,23, 0xa263a00,23, 0xa263a80,23, 0xa263b00,23, 0xa263b80,23, 0xa263c00,23, 0xa263c80,23, 0xa263d00,23, 0xa263d80,23, 0xa263e00,23, 0xa263e80,23, 0xa263f00,23, 0xa263f80,23, 0xa264000,23, 0xa264080,23, 0xa264100,23, 0xa264180,23, 0xa264200,23, 0xa264280,23, 0xa264300,23, 0xa264380,23, 0xa264400,23, 0xa264480,23, 0xa264500,23, 0xa264580,23, 0xa264600,23, 0xa264680,23, 0xa264700,23, 0xa264780,23, 0xa264800,23, 0xa264880,23, 0xa264900,23, 0xa264980,23, 0xa264a00,23, 0xa264a80,23, 0xa264b00,23, 0xa264b80,23, 0xa264c00,23, 0xa264c80,23, 0xa264d00,23, 0xa264d80,23, 0xa264e00,23, 0xa264e80,23, 0xa264f00,23, 0xa264f80,23, 0xa265000,23, 0xa265080,23, 0xa265100,23, 0xa265180,23, 0xa265200,23, 0xa265280,23, 0xa265300,23, 0xa265380,23, 0xa265400,23, 0xa265480,23, 0xa265500,23, 0xa265580,23, 0xa265600,23, 0xa265680,23, 0xa265700,23, 0xa265780,23, 0xa265800,23, 0xa265880,23, 0xa265900,23, 0xa265980,23, 0xa265a00,23, 0xa265a80,23, 0xa265b00,23, 0xa265b80,23, 0xa265c00,23, 0xa265c80,23, 0xa265d00,23, 0xa265d80,23, 0xa265e00,23, 0xa265e80,23, 0xa265f00,23, 0xa265f80,23, 0xa266000,23, 0xa266080,23, 0xa266100,23, 0xa266180,23, 0xa266200,23, 0xa266280,23, 0xa266300,23, 0xa266380,23, 0xa266400,23, 0xa266480,23, 0xa266500,23, 0xa266580,23, 0xa266600,23, 0xa266680,23, 0xa266700,23, 0xa266780,23, 0xa266800,23, 0xa266880,23, 0xa266900,23, 0xa266980,23, 0xa266a00,23, 0xa266a80,23, 0xa266b00,23, 0xa266b80,23, 0xa266c00,23, 0xa266c80,23, 0xa266d00,23, 0xa266d80,23, 0xa266e00,23, 0xa266e80,23, 0xa266f00,23, 0xa266f80,23, 0xa267000,23, 0xa267080,23, 0xa267100,23, 0xa267180,23, 0xa267200,23, 0xa267280,23, 0xa267300,23, 0xa267380,23, 0xa267400,23, 0xa267480,23, 0xa267500,23, 0xa267580,23, 0xa267600,23, 0xa267680,23, 0xa267700,23, 0xa267780,23, 0xa267800,23, 0xa267880,23, 0xa267900,23, 0xa267980,23, 0xa267a00,23, 0xa267a80,23, 0xa267b00,23, 0xa267b80,23, 0xa267c00,23, 0xa267c80,23, 0xa267d00,23, 0xa267d80,23, 0xa267e00,23, 0xa267e80,23, 0xa267f00,23, 0xa267f80,23, 0xa268000,23, 0xa268080,23, 0xa268100,23, 0xa268180,23, 0xa268200,23, 0xa268280,23, 0xa268300,23, 0xa268380,23, 0xa268400,23, 0xa268480,23, 0xa268500,23, 0xa268580,23, 0xa268600,23, 0xa268680,23, 0xa268700,23, 0xa268780,23, 0xa268800,23, 0xa268880,23, 0xa268900,23, 0xa268980,23, 0xa268a00,23, 0xa268a80,23, 0xa268b00,23, 0xa268b80,23, 0xa268c00,23, 0xa268c80,23, 0xa268d00,23, 0xa268d80,23, 0xa268e00,23, 0xa268e80,23, 0xa268f00,23, 0xa268f80,23, 0xa269000,23, 0xa269080,23, 0xa269100,23, 0xa269180,23, 0xa269200,23, 0xa269280,23, 0xa269300,23, 0xa269380,23, 0xa269400,23, 0xa269480,23, 0xa269500,23, 0xa269580,23, 0xa269600,23, 0xa269680,23, 0xa269700,23, 0xa269780,23, 0xa269800,23, 0xa269880,23, 0xa269900,23, 0xa269980,23, 0xa269a00,23, 0xa269a80,23, 0xa269b00,23, 0xa269b80,23, 0xa269c00,23, 0xa269c80,23, 0xa269d00,23, 0xa269d80,23, 0xa269e00,23, 0xa269e80,23, 0xa269f00,23, 0xa269f80,23, 0xa26a000,23, 0xa26a080,23, 0xa26a100,23, 0xa26a180,23, 0xa26a200,23, 0xa26a280,23, 0xa26a300,23, 0xa26a380,23, 0xa26a400,23, 0xa26a480,23, 0xa26a500,23, 0xa26a580,23, 0xa26a600,23, 0xa26a680,23, 0xa26a700,23, 0xa26a780,23, 0xa26a800,23, 0xa26a880,23, 0xa26a900,23, 0xa26a980,23, 0xa26aa00,23, 0xa26aa80,23, 0xa26ab00,23, 0xa26ab80,23, 0xa26ac00,23, 0xa26ac80,23, 0xa26ad00,23, 0xa26ad80,23, 0xa26ae00,23, 0xa26ae80,23, 0xa26af00,23, 0xa26af80,23, 0xa26b000,23, 0xa26b080,23, 0xa26b100,23, 0xa26b180,23, 0xa26b200,23, 0xa26b280,23, 0xa26b300,23, 0xa26b380,23, 0xa26b400,23, 0xa26b480,23, 0xa26b500,23, 0xa26b580,23, 0xa26b600,23, 0xa26b680,23, 0xa26b700,23, 0xa26b780,23, 0xa26b800,23, 0xa26b880,23, 0xa26b900,23, 0xa26b980,23, 0xa26ba00,23, 0xa26ba80,23, 0xa26bb00,23, 0xa26bb80,23, 0xa26bc00,23, 0xa26bc80,23, 0xa26bd00,23, 0xa26bd80,23, 0xa26be00,23, 0xa26be80,23, 0xa26bf00,23, 0xa26bf80,23, 0xa26c000,23, 0xa26c080,23, 0xa26c100,23, 0xa26c180,23, 0xa26c200,23, 0xa26c280,23, 0xa26c300,23, 0xa26c380,23, 0xa26c400,23, 0xa26c480,23, 0xa26c500,23, 0xa26c580,23, 0xa26c600,23, 0xa26c680,23, 0xa26c700,23, 0xa26c780,23, 0xa26c800,23, 0xa26c880,23, 0xa26c900,23, 0xa26c980,23, 0xa26ca00,23, 0xa26ca80,23, 0xa26cb00,23, 0xa26cb80,23, 0xa26cc00,23, 0xa26cc80,23, 0xa26cd00,23, 0xa26cd80,23, 0xa26ce00,23, 0xa26ce80,23, 0xa26cf00,23, 0xa26cf80,23, 0xa26d000,23, 0xa26d080,23, 0xa26d100,23, 0xa26d180,23, 0xa26d200,23, 0xa26d280,23, 0xa26d300,23, 0xa26d380,23, 0xa26d400,23, 0xa26d480,23, 0xa26d500,23, 0xa26d580,23, 0xa26d600,23, 0xa26d680,23, 0xa26d700,23, 0xa26d780,23, 0xa26d800,23, 0xa26d880,23, 0xa26d900,23, 0xa26d980,23, 0xa26da00,23, 0xa26da80,23, 0xa26db00,23, 0xa26db80,23, 0xa26dc00,23, 0xa26dc80,23, 0xa26dd00,23, 0xa26dd80,23, 0xa26de00,23, 0xa26de80,23, 0xa26df00,23, 0xa26df80,23, 0xa26e000,23, 0xa26e080,23, 0xa26e100,23, 0xa26e180,23, 0xa26e200,23, 0xa26e280,23, 0xa26e300,23, 0xa26e380,23, 0xa26e400,23, 0xa26e480,23, 0xa26e500,23, 0xa26e580,23, 0xa26e600,23, 0xa26e680,23, 0xa26e700,23, 0xa26e780,23, 0xa26e800,23, 0xa26e880,23, 0xa26e900,23, 0xa26e980,23, 0xa26ea00,23, 0xa26ea80,23, 0xa26eb00,23, 0xa26eb80,23, 0xa26ec00,23, 0xa26ec80,23, 0xa26ed00,23, 0xa26ed80,23, 0xa26ee00,23, 0xa26ee80,23, 0xa26ef00,23, 0xa26ef80,23, 0xa26f000,23, 0xa26f080,23, 0xa26f100,23, 0xa26f180,23, 0xa26f200,23, 0xa26f280,23, 0xa26f300,23, 0xa26f380,23, 0xa26f400,23, 0xa26f480,23, 0xa26f500,23, 0xa26f580,23, 0xa26f600,23, 0xa26f680,23, 0xa26f700,23, 0xa26f780,23, 0xa26f800,23, 0xa26f880,23, 0xa26f900,23, 0xa26f980,23, 0xa26fa00,23, 0xa26fa80,23, 0xa26fb00,23, 0xa26fb80,23, 0xa26fc00,23, 0xa26fc80,23, 0xa26fd00,23, 0xa26fd80,23, 0xa26fe00,23, 0xa26fe80,23, 0xa26ff00,23, 0xa26ff80,23, 0xa270000,23, 0xa270080,23, 0xa270100,23, 0xa270180,23, 0xa270200,23, 0xa270280,23, 0xa270300,23, 0xa270380,23, 0xa270400,23, 0xa270480,23, 0xa270500,23, 0xa270580,23, 0xa270600,23, 0xa270680,23, 0xa270700,23, 0xa270780,23, 0xa270800,23, 0xa270880,23, 0xa270900,23, 0xa270980,23, 0xa270a00,23, 0xa270a80,23, 0xa270b00,23, 0xa270b80,23, 0xa270c00,23, 0xa270c80,23, 0xa270d00,23, 0xa270d80,23, 0xa270e00,23, 0xa270e80,23, 0xa270f00,23, 0xa270f80,23, 0xa271000,23, 0xa271080,23, 0xa271100,23, 0xa271180,23, 0xa271200,23, 0xa271280,23, 0xa271300,23, 0xa271380,23, 0xa271400,23, 0xa271480,23, 0xa271500,23, 0xa271580,23, 0xa271600,23, 0xa271680,23, 0xa271700,23, 0xa271780,23, 0xa271800,23, 0xa271880,23, 0xa271900,23, 0xa271980,23, 0xa271a00,23, 0xa271a80,23, 0xa271b00,23, 0xa271b80,23, 0xa271c00,23, 0xa271c80,23, 0xa271d00,23, 0xa271d80,23, 0xa271e00,23, 0xa271e80,23, 0xa271f00,23, 0xa271f80,23, 0xa272000,23, 0xa272080,23, 0xa272100,23, 0xa272180,23, 0xa272200,23, 0xa272280,23, 0xa272300,23, 0xa272380,23, 0xa272400,23, 0xa272480,23, 0xa272500,23, 0xa272580,23, 0xa272600,23, 0xa272680,23, 0xa272700,23, 0xa272780,23, 0xa272800,23, 0xa272880,23, 0xa272900,23, 0xa272980,23, 0xa272a00,23, 0xa272a80,23, 0xa272b00,23, 0xa272b80,23, 0xa272c00,23, 0xa272c80,23, 0xa272d00,23, 0xa272d80,23, 0xa272e00,23, 0xa272e80,23, 0xa272f00,23, 0xa272f80,23, 0xa273000,23, 0xa273080,23, 0xa273100,23, 0xa273180,23, 0xa273200,23, 0xa273280,23, 0xa273300,23, 0xa273380,23, 0xa273400,23, 0xa273480,23, 0xa273500,23, 0xa273580,23, 0xa273600,23, 0xa273680,23, 0xa273700,23, 0xa273780,23, 0xa273800,23, 0xa273880,23, 0xa273900,23, 0xa273980,23, 0xa273a00,23, 0xa273a80,23, 0xa273b00,23, 0xa273b80,23, 0xa280000,23, 0xa280080,23, 0xa280100,23, 0xa280180,23, 0xa280200,23, 0xa280280,23, 0xa280300,23, 0xa280380,23, 0xa280400,23, 0xa280480,23, 0xa280500,23, 0xa280580,23, 0xa280600,23, 0xa280680,23, 0xa280700,23, 0xa280780,23, 0xa280800,23, 0xa280880,23, 0xa280900,23, 0xa280980,23, 0xa280a00,23, 0xa280a80,23, 0xa280b00,23, 0xa280b80,23, 0xa280c00,23, 0xa280c80,23, 0xa280d00,23, 0xa280d80,23, 0xa280e00,23, 0xa280e80,23, 0xa280f00,23, 0xa280f80,23, 0xa281000,23, 0xa281080,23, 0xa281100,23, 0xa281180,23, 0xa281200,23, 0xa281280,23, 0xa281300,23, 0xa281380,23, 0xa281400,23, 0xa281480,23, 0xa281500,23, 0xa281580,23, 0xa281600,23, 0xa281680,23, 0xa281700,23, 0xa281780,23, 0xa281800,23, 0xa281880,23, 0xa281900,23, 0xa281980,23, 0xa281a00,23, 0xa281a80,23, 0xa281b00,23, 0xa281b80,23, 0xa281c00,23, 0xa281c80,23, 0xa281d00,23, 0xa281d80,23, 0xa281e00,23, 0xa281e80,23, 0xa281f00,23, 0xa281f80,23, 0xa282000,23, 0xa282080,23, 0xa282100,23, 0xa282180,23, 0xa282200,23, 0xa282280,23, 0xa282300,23, 0xa282380,23, 0xa282400,23, 0xa282480,23, 0xa282500,23, 0xa282580,23, 0xa282600,23, 0xa282680,23, 0xa282700,23, 0xa282780,23, 0xa282800,23, 0xa282880,23, 0xa282900,23, 0xa282980,23, 0xa282a00,23, 0xa282a80,23, 0xa282b00,23, 0xa282b80,23, 0xa282c00,23, 0xa282c80,23, 0xa282d00,23, 0xa282d80,23, 0xa282e00,23, 0xa282e80,23, 0xa282f00,23, 0xa282f80,23, 0xa283000,23, 0xa283080,23, 0xa283100,23, 0xa283180,23, 0xa283200,23, 0xa283280,23, 0xa283300,23, 0xa283380,23, 0xa283400,23, 0xa283480,23, 0xa283500,23, 0xa283580,23, 0xa283600,23, 0xa283680,23, 0xa283700,23, 0xa283780,23, 0xa283800,23, 0xa283880,23, 0xa283900,23, 0xa283980,23, 0xa283a00,23, 0xa283a80,23, 0xa283b00,23, 0xa283b80,23, 0xa283c00,23, 0xa283c80,23, 0xa283d00,23, 0xa283d80,23, 0xa283e00,23, 0xa283e80,23, 0xa283f00,23, 0xa283f80,23, 0xa284000,23, 0xa284080,23, 0xa284100,23, 0xa284180,23, 0xa284200,23, 0xa284280,23, 0xa284300,23, 0xa284380,23, 0xa284400,23, 0xa284480,23, 0xa284500,23, 0xa284580,23, 0xa284600,23, 0xa284680,23, 0xa284700,23, 0xa284780,23, 0xa284800,23, 0xa284880,23, 0xa284900,23, 0xa284980,23, 0xa284a00,23, 0xa284a80,23, 0xa284b00,23, 0xa284b80,23, 0xa284c00,23, 0xa284c80,23, 0xa284d00,23, 0xa284d80,23, 0xa284e00,23, 0xa284e80,23, 0xa284f00,23, 0xa284f80,23, 0xa285000,23, 0xa285080,23, 0xa285100,23, 0xa285180,23, 0xa285200,23, 0xa285280,23, 0xa285300,23, 0xa285380,23, 0xa285400,23, 0xa285480,23, 0xa285500,23, 0xa285580,23, 0xa285600,23, 0xa285680,23, 0xa285700,23, 0xa285780,23, 0xa285800,23, 0xa285880,23, 0xa285900,23, 0xa285980,23, 0xa285a00,23, 0xa285a80,23, 0xa285b00,23, 0xa285b80,23, 0xa285c00,23, 0xa285c80,23, 0xa285d00,23, 0xa285d80,23, 0xa285e00,23, 0xa285e80,23, 0xa285f00,23, 0xa285f80,23, 0xa286000,23, 0xa286080,23, 0xa286100,23, 0xa286180,23, 0xa286200,23, 0xa286280,23, 0xa286300,23, 0xa286380,23, 0xa286400,23, 0xa286480,23, 0xa286500,23, 0xa286580,23, 0xa286600,23, 0xa286680,23, 0xa286700,23, 0xa286780,23, 0xa286800,23, 0xa286880,23, 0xa286900,23, 0xa286980,23, 0xa286a00,23, 0xa286a80,23, 0xa286b00,23, 0xa286b80,23, 0xa286c00,23, 0xa286c80,23, 0xa286d00,23, 0xa286d80,23, 0xa286e00,23, 0xa286e80,23, 0xa286f00,23, 0xa286f80,23, 0xa287000,23, 0xa287080,23, 0xa287100,23, 0xa287180,23, 0xa287200,23, 0xa287280,23, 0xa287300,23, 0xa287380,23, 0xa287400,23, 0xa287480,23, 0xa287500,23, 0xa287580,23, 0xa287600,23, 0xa287680,23, 0xa287700,23, 0xa287780,23, 0xa287800,23, 0xa287880,23, 0xa287900,23, 0xa287980,23, 0xa287a00,23, 0xa287a80,23, 0xa287b00,23, 0xa287b80,23, 0xa287c00,23, 0xa287c80,23, 0xa287d00,23, 0xa287d80,23, 0xa287e00,23, 0xa287e80,23, 0xa287f00,23, 0xa287f80,23, 0xa288000,23, 0xa288080,23, 0xa288100,23, 0xa288180,23, 0xa288200,23, 0xa288280,23, 0xa288300,23, 0xa288380,23, 0xa288400,23, 0xa288480,23, 0xa288500,23, 0xa288580,23, 0xa288600,23, 0xa288680,23, 0xa288700,23, 0xa288780,23, 0xa288800,23, 0xa288880,23, 0xa288900,23, 0xa288980,23, 0xa288a00,23, 0xa288a80,23, 0xa288b00,23, 0xa288b80,23, 0xa288c00,23, 0xa288c80,23, 0xa288d00,23, 0xa288d80,23, 0xa288e00,23, 0xa288e80,23, 0xa288f00,23, 0xa288f80,23, 0xa289000,23, 0xa289080,23, 0xa289100,23, 0xa289180,23, 0xa289200,23, 0xa289280,23, 0xa289300,23, 0xa289380,23, 0xa289400,23, 0xa289480,23, 0xa289500,23, 0xa289580,23, 0xa289600,23, 0xa289680,23, 0xa289700,23, 0xa289780,23, 0xa289800,23, 0xa289880,23, 0xa289900,23, 0xa289980,23, 0xa289a00,23, 0xa289a80,23, 0xa289b00,23, 0xa289b80,23, 0xa289c00,23, 0xa289c80,23, 0xa289d00,23, 0xa289d80,23, 0xa289e00,23, 0xa289e80,23, 0xa289f00,23, 0xa289f80,23, 0xa28a000,23, 0xa28a080,23, 0xa28a100,23, 0xa28a180,23, 0xa28a200,23, 0xa28a280,23, 0xa28a300,23, 0xa28a380,23, 0xa28a400,23, 0xa28a480,23, 0xa28a500,23, 0xa28a580,23, 0xa28a600,23, 0xa28a680,23, 0xa28a700,23, 0xa28a780,23, 0xa28a800,23, 0xa28a880,23, 0xa28a900,23, 0xa28a980,23, 0xa28aa00,23, 0xa28aa80,23, 0xa28ab00,23, 0xa28ab80,23, 0xa28ac00,23, 0xa28ac80,23, 0xa28ad00,23, 0xa28ad80,23, 0xa28ae00,23, 0xa28ae80,23, 0xa28af00,23, 0xa28af80,23, 0xa28b000,23, 0xa28b080,23, 0xa28b100,23, 0xa28b180,23, 0xa28b200,23, 0xa28b280,23, 0xa28b300,23, 0xa28b380,23, 0xa28b400,23, 0xa28b480,23, 0xa28b500,23, 0xa28b580,23, 0xa28b600,23, 0xa28b680,23, 0xa28b700,23, 0xa28b780,23, 0xa28b800,23, 0xa28b880,23, 0xa28b900,23, 0xa28b980,23, 0xa28ba00,23, 0xa28ba80,23, 0xa28bb00,23, 0xa28bb80,23, 0xa28bc00,23, 0xa28bc80,23, 0xa28bd00,23, 0xa28bd80,23, 0xa28be00,23, 0xa28be80,23, 0xa28bf00,23, 0xa28bf80,23, 0xa28c000,23, 0xa28c080,23, 0xa28c100,23, 0xa28c180,23, 0xa28c200,23, 0xa28c280,23, 0xa28c300,23, 0xa28c380,23, 0xa28c400,23, 0xa28c480,23, 0xa28c500,23, 0xa28c580,23, 0xa28c600,23, 0xa28c680,23, 0xa28c700,23, 0xa28c780,23, 0xa28c800,23, 0xa28c880,23, 0xa28c900,23, 0xa28c980,23, 0xa28ca00,23, 0xa28ca80,23, 0xa28cb00,23, 0xa28cb80,23, 0xa28cc00,23, 0xa28cc80,23, 0xa28cd00,23, 0xa28cd80,23, 0xa28ce00,23, 0xa28ce80,23, 0xa28cf00,23, 0xa28cf80,23, 0xa28d000,23, 0xa28d080,23, 0xa28d100,23, 0xa28d180,23, 0xa28d200,23, 0xa28d280,23, 0xa28d300,23, 0xa28d380,23, 0xa28d400,23, 0xa28d480,23, 0xa28d500,23, 0xa28d580,23, 0xa28d600,23, 0xa28d680,23, 0xa28d700,23, 0xa28d780,23, 0xa28d800,23, 0xa28d880,23, 0xa28d900,23, 0xa28d980,23, 0xa28da00,23, 0xa28da80,23, 0xa28db00,23, 0xa28db80,23, 0xa28dc00,23, 0xa28dc80,23, 0xa28dd00,23, 0xa28dd80,23, 0xa28de00,23, 0xa28de80,23, 0xa28df00,23, 0xa28df80,23, 0xa28e000,23, 0xa28e080,23, 0xa28e100,23, 0xa28e180,23, 0xa28e200,23, 0xa28e280,23, 0xa28e300,23, 0xa28e380,23, 0xa28e400,23, 0xa28e480,23, 0xa28e500,23, 0xa28e580,23, 0xa28e600,23, 0xa28e680,23, 0xa28e700,23, 0xa28e780,23, 0xa28e800,23, 0xa28e880,23, 0xa28e900,23, 0xa28e980,23, 0xa28ea00,23, 0xa28ea80,23, 0xa28eb00,23, 0xa28eb80,23, 0xa28ec00,23, 0xa28ec80,23, 0xa28ed00,23, 0xa28ed80,23, 0xa28ee00,23, 0xa28ee80,23, 0xa28ef00,23, 0xa28ef80,23, 0xa28f000,23, 0xa28f080,23, 0xa28f100,23, 0xa28f180,23, 0xa28f200,23, 0xa28f280,23, 0xa28f300,23, 0xa28f380,23, 0xa28f400,23, 0xa28f480,23, 0xa28f500,23, 0xa28f580,23, 0xa28f600,23, 0xa28f680,23, 0xa28f700,23, 0xa28f780,23, 0xa28f800,23, 0xa28f880,23, 0xa28f900,23, 0xa28f980,23, 0xa28fa00,23, 0xa28fa80,23, 0xa28fb00,23, 0xa28fb80,23, 0xa28fc00,23, 0xa28fc80,23, 0xa28fd00,23, 0xa28fd80,23, 0xa28fe00,23, 0xa28fe80,23, 0xa28ff00,23, 0xa28ff80,23, 0xa290000,23, 0xa290080,23, 0xa290100,23, 0xa290180,23, 0xa290200,23, 0xa290280,23, 0xa290300,23, 0xa290380,23, 0xa290400,23, 0xa290480,23, 0xa290500,23, 0xa290580,23, 0xa290600,23, 0xa290680,23, 0xa290700,23, 0xa290780,23, 0xa290800,23, 0xa290880,23, 0xa290900,23, 0xa290980,23, 0xa290a00,23, 0xa290a80,23, 0xa290b00,23, 0xa290b80,23, 0xa290c00,23, 0xa290c80,23, 0xa290d00,23, 0xa290d80,23, 0xa290e00,23, 0xa290e80,23, 0xa290f00,23, 0xa290f80,23, 0xa291000,23, 0xa291080,23, 0xa291100,23, 0xa291180,23, 0xa291200,23, 0xa291280,23, 0xa291300,23, 0xa291380,23, 0xa291400,23, 0xa291480,23, 0xa291500,23, 0xa291580,23, 0xa291600,23, 0xa291680,23, 0xa291700,23, 0xa291780,23, 0xa291800,23, 0xa291880,23, 0xa291900,23, 0xa291980,23, 0xa291a00,23, 0xa291a80,23, 0xa291b00,23, 0xa291b80,23, 0xa291c00,23, 0xa291c80,23, 0xa291d00,23, 0xa291d80,23, 0xa291e00,23, 0xa291e80,23, 0xa291f00,23, 0xa291f80,23, 0xa292000,23, 0xa292080,23, 0xa292100,23, 0xa292180,23, 0xa292200,23, 0xa292280,23, 0xa292300,23, 0xa292380,23, 0xa292400,23, 0xa292480,23, 0xa292500,23, 0xa292580,23, 0xa292600,23, 0xa292680,23, 0xa292700,23, 0xa292780,23, 0xa292800,23, 0xa292880,23, 0xa292900,23, 0xa292980,23, 0xa292a00,23, 0xa292a80,23, 0xa292b00,23, 0xa292b80,23, 0xa292c00,23, 0xa292c80,23, 0xa292d00,23, 0xa292d80,23, 0xa292e00,23, 0xa292e80,23, 0xa292f00,23, 0xa292f80,23, 0xa293000,23, 0xa293080,23, 0xa293100,23, 0xa293180,23, 0xa293200,23, 0xa293280,23, 0xa293300,23, 0xa293380,23, 0xa293400,23, 0xa293480,23, 0xa293500,23, 0xa293580,23, 0xa293600,23, 0xa293680,23, 0xa293700,23, 0xa293780,23, 0xa293800,23, 0xa293880,23, 0xa293900,23, 0xa293980,23, 0xa293a00,23, 0xa293a80,23, 0xa293b00,23, 0xa293b80,23, 0xa293c00,23, 0xa293c80,23, 0xa293d00,23, 0xa293d80,23, 0xa293e00,23, 0xa293e80,23, 0xa293f00,23, 0xa293f80,23, 0xa294000,23, 0xa294080,23, 0xa294100,23, 0xa294180,23, 0xa294200,23, 0xa294280,23, 0xa294300,23, 0xa294380,23, 0xa294400,23, 0xa294480,23, 0xa294500,23, 0xa294580,23, 0xa294600,23, 0xa294680,23, 0xa294700,23, 0xa294780,23, 0xa294800,23, 0xa294880,23, 0xa294900,23, 0xa294980,23, 0xa294a00,23, 0xa294a80,23, 0xa294b00,23, 0xa294b80,23, 0xa294c00,23, 0xa294c80,23, 0xa294d00,23, 0xa294d80,23, 0xa294e00,23, 0xa294e80,23, 0xa294f00,23, 0xa294f80,23, 0xa295000,23, 0xa295080,23, 0xa295100,23, 0xa295180,23, 0xa295200,23, 0xa295280,23, 0xa295300,23, 0xa295380,23, 0xa295400,23, 0xa295480,23, 0xa295500,23, 0xa295580,23, 0xa295600,23, 0xa295680,23, 0xa295700,23, 0xa295780,23, 0xa295800,23, 0xa295880,23, 0xa295900,23, 0xa295980,23, 0xa295a00,23, 0xa295a80,23, 0xa295b00,23, 0xa295b80,23, 0xa295c00,23, 0xa295c80,23, 0xa295d00,23, 0xa295d80,23, 0xa295e00,23, 0xa295e80,23, 0xa295f00,23, 0xa295f80,23, 0xa296000,23, 0xa296080,23, 0xa296100,23, 0xa296180,23, 0xa296200,23, 0xa296280,23, 0xa296300,23, 0xa296380,23, 0xa296400,23, 0xa296480,23, 0xa296500,23, 0xa296580,23, 0xa296600,23, 0xa296680,23, 0xa296700,23, 0xa296780,23, 0xa296800,23, 0xa296880,23, 0xa296900,23, 0xa296980,23, 0xa296a00,23, 0xa296a80,23, 0xa296b00,23, 0xa296b80,23, 0xa296c00,23, 0xa296c80,23, 0xa296d00,23, 0xa296d80,23, 0xa296e00,23, 0xa296e80,23, 0xa296f00,23, 0xa296f80,23, 0xa297000,23, 0xa297080,23, 0xa297100,23, 0xa297180,23, 0xa297200,23, 0xa297280,23, 0xa297300,23, 0xa297380,23, 0xa297400,23, 0xa297480,23, 0xa297500,23, 0xa297580,23, 0xa297600,23, 0xa297680,23, 0xa297700,23, 0xa297780,23, 0xa297800,23, 0xa297880,23, 0xa297900,23, 0xa297980,23, 0xa297a00,23, 0xa297a80,23, 0xa297b00,23, 0xa297b80,23, 0xa297c00,23, 0xa297c80,23, 0xa297d00,23, 0xa297d80,23, 0xa297e00,23, 0xa297e80,23, 0xa297f00,23, 0xa297f80,23, 0xa298000,23, 0xa298080,23, 0xa298100,23, 0xa298180,23, 0xa298200,23, 0xa298280,23, 0xa298300,23, 0xa298380,23, 0xa298400,23, 0xa298480,23, 0xa298500,23, 0xa298580,23, 0xa298600,23, 0xa298680,23, 0xa298700,23, 0xa298780,23, 0xa298800,23, 0xa298880,23, 0xa298900,23, 0xa298980,23, 0xa298a00,23, 0xa298a80,23, 0xa298b00,23, 0xa298b80,23, 0xa298c00,23, 0xa298c80,23, 0xa298d00,23, 0xa298d80,23, 0xa298e00,23, 0xa298e80,23, 0xa298f00,23, 0xa298f80,23, 0xa299000,23, 0xa299080,23, 0xa299100,23, 0xa299180,23, 0xa299200,23, 0xa299280,23, 0xa299300,23, 0xa299380,23, 0xa299400,23, 0xa299480,23, 0xa299500,23, 0xa299580,23, 0xa299600,23, 0xa299680,23, 0xa299700,23, 0xa299780,23, 0xa299800,23, 0xa299880,23, 0xa299900,23, 0xa299980,23, 0xa299a00,23, 0xa299a80,23, 0xa299b00,23, 0xa299b80,23, 0xa299c00,23, 0xa299c80,23, 0xa299d00,23, 0xa299d80,23, 0xa299e00,23, 0xa299e80,23, 0xa299f00,23, 0xa299f80,23, 0xa29a000,23, 0xa29a080,23, 0xa29a100,23, 0xa29a180,23, 0xa29a200,23, 0xa29a280,23, 0xa29a300,23, 0xa29a380,23, 0xa29a400,23, 0xa29a480,23, 0xa29a500,23, 0xa29a580,23, 0xa29a600,23, 0xa29a680,23, 0xa29a700,23, 0xa29a780,23, 0xa29a800,23, 0xa29a880,23, 0xa29a900,23, 0xa29a980,23, 0xa29aa00,23, 0xa29aa80,23, 0xa29ab00,23, 0xa29ab80,23, 0xa29ac00,23, 0xa29ac80,23, 0xa29ad00,23, 0xa29ad80,23, 0xa29ae00,23, 0xa29ae80,23, 0xa29af00,23, 0xa29af80,23, 0xa29b000,23, 0xa29b080,23, 0xa29b100,23, 0xa29b180,23, 0xa29b200,23, 0xa29b280,23, 0xa29b300,23, 0xa29b380,23, 0xa29b400,23, 0xa29b480,23, 0xa29b500,23, 0xa29b580,23, 0xa29b600,23, 0xa29b680,23, 0xa29b700,23, 0xa29b780,23, 0xa29b800,23, 0xa29b880,23, 0xa29b900,23, 0xa29b980,23, 0xa29ba00,23, 0xa29ba80,23, 0xa29bb00,23, 0xa29bb80,23, 0xa29bc00,23, 0xa29bc80,23, 0xa29bd00,23, 0xa29bd80,23, 0xa29be00,23, 0xa29be80,23, 0xa29bf00,23, 0xa29bf80,23, 0xa29c000,23, 0xa29c080,23, 0xa29c100,23, 0xa29c180,23, 0xa29c200,23, 0xa29c280,23, 0xa29c300,23, 0xa29c380,23, 0xa29c400,23, 0xa29c480,23, 0xa29c500,23, 0xa29c580,23, 0xa29c600,23, 0xa29c680,23, 0xa29c700,23, 0xa29c780,23, 0xa29c800,23, 0xa29c880,23, 0xa29c900,23, 0xa29c980,23, 0xa29ca00,23, 0xa29ca80,23, 0xa29cb00,23, 0xa29cb80,23, 0xa29cc00,23, 0xa29cc80,23, 0xa29cd00,23, 0xa29cd80,23, 0xa29ce00,23, 0xa29ce80,23, 0xa29cf00,23, 0xa29cf80,23, 0xa29d000,23, 0xa29d080,23, 0xa29d100,23, 0xa29d180,23, 0xa29d200,23, 0xa29d280,23, 0xa29d300,23, 0xa29d380,23, 0xa29d400,23, 0xa29d480,23, 0xa29d500,23, 0xa29d580,23, 0xa29d600,23, 0xa29d680,23, 0xa29d700,23, 0xa29d780,23, 0xa29d800,23, 0xa29d880,23, 0xa29d900,23, 0xa29d980,23, 0xa29da00,23, 0xa29da80,23, 0xa29db00,23, 0xa29db80,23, 0xa29dc00,23, 0xa29dc80,23, 0xa29dd00,23, 0xa29dd80,23, 0xa29de00,23, 0xa29de80,23, 0xa29df00,23, 0xa29df80,23, 0xa29e000,23, 0xa29e080,23, 0xa29e100,23, 0xa29e180,23, 0xa29e200,23, 0xa29e280,23, 0xa29e300,23, 0xa29e380,23, 0xa29e400,23, 0xa29e480,23, 0xa29e500,23, 0xa29e580,23, 0xa29e600,23, 0xa29e680,23, 0xa29e700,23, 0xa29e780,23, 0xa29e800,23, 0xa29e880,23, 0xa29e900,23, 0xa29e980,23, 0xa29ea00,23, 0xa29ea80,23, 0xa29eb00,23, 0xa29eb80,23, 0xa29ec00,23, 0xa29ec80,23, 0xa29ed00,23, 0xa29ed80,23, 0xa29ee00,23, 0xa29ee80,23, 0xa29ef00,23, 0xa29ef80,23, 0xa29f000,23, 0xa29f080,23, 0xa29f100,23, 0xa29f180,23, 0xa29f200,23, 0xa29f280,23, 0xa29f300,23, 0xa29f380,23, 0xa29f400,23, 0xa29f480,23, 0xa29f500,23, 0xa29f580,23, 0xa29f600,23, 0xa29f680,23, 0xa29f700,23, 0xa29f780,23, 0xa29f800,23, 0xa29f880,23, 0xa29f900,23, 0xa29f980,23, 0xa29fa00,23, 0xa29fa80,23, 0xa29fb00,23, 0xa29fb80,23, 0xa29fc00,23, 0xa29fc80,23, 0xa29fd00,23, 0xa29fd80,23, 0xa29fe00,23, 0xa29fe80,23, 0xa29ff00,23, 0xa29ff80,23, 0xa2a0000,23, 0xa2a0080,23, 0xa2a0100,23, 0xa2a0180,23, 0xa2a0200,23, 0xa2a0280,23, 0xa2a0300,23, 0xa2a0380,23, 0xa2a0400,23, 0xa2a0480,23, 0xa2a0500,23, 0xa2a0580,23, 0xa2a0600,23, 0xa2a0680,23, 0xa2a0700,23, 0xa2a0780,23, 0xa2a0800,23, 0xa2a0880,23, 0xa2a0900,23, 0xa2a0980,23, 0xa2a0a00,23, 0xa2a0a80,23, 0xa2a0b00,23, 0xa2a0b80,23, 0xa2a0c00,23, 0xa2a0c80,23, 0xa2a0d00,23, 0xa2a0d80,23, 0xa2a0e00,23, 0xa2a0e80,23, 0xa2a0f00,23, 0xa2a0f80,23, 0xa2a1000,23, 0xa2a1080,23, 0xa2a1100,23, 0xa2a1180,23, 0xa2a1200,23, 0xa2a1280,23, 0xa2a1300,23, 0xa2a1380,23, 0xa2a1400,23, 0xa2a1480,23, 0xa2a1500,23, 0xa2a1580,23, 0xa2a1600,23, 0xa2a1680,23, 0xa2a1700,23, 0xa2a1780,23, 0xa2a1800,23, 0xa2a1880,23, 0xa2a1900,23, 0xa2a1980,23, 0xa2a1a00,23, 0xa2a1a80,23, 0xa2a1b00,23, 0xa2a1b80,23, 0xa2a1c00,23, 0xa2a1c80,23, 0xa2a1d00,23, 0xa2a1d80,23, 0xa2a1e00,23, 0xa2a1e80,23, 0xa2a1f00,23, 0xa2a1f80,23, 0xa2a2000,23, 0xa2a2080,23, 0xa2a2100,23, 0xa2a2180,23, 0xa2a2200,23, 0xa2a2280,23, 0xa2a2300,23, 0xa2a2380,23, 0xa2a2400,23, 0xa2a2480,23, 0xa2a2500,23, 0xa2a2580,23, 0xa2a2600,23, 0xa2a2680,23, 0xa2a2700,23, 0xa2a2780,23, 0xa2a2800,23, 0xa2a2880,23, 0xa2a2900,23, 0xa2a2980,23, 0xa2a2a00,23, 0xa2a2a80,23, 0xa2a2b00,23, 0xa2a2b80,23, 0xa2a2c00,23, 0xa2a2c80,23, 0xa2a2d00,23, 0xa2a2d80,23, 0xa2a2e00,23, 0xa2a2e80,23, 0xa2a2f00,23, 0xa2a2f80,23, 0xa2a3000,23, 0xa2a3080,23, 0xa2a3100,23, 0xa2a3180,23, 0xa2a3200,23, 0xa2a3280,23, 0xa2a3300,23, 0xa2a3380,23, 0xa2a3400,23, 0xa2a3480,23, 0xa2a3500,23, 0xa2a3580,23, 0xa2a3600,23, 0xa2a3680,23, 0xa2a3700,23, 0xa2a3780,23, 0xa2a3800,23, 0xa2a3880,23, 0xa2a3900,23, 0xa2a3980,23, 0xa2a3a00,23, 0xa2a3a80,23, 0xa2a3b00,23, 0xa2a3b80,23, 0xa2a3c00,23, 0xa2a3c80,23, 0xa2a3d00,23, 0xa2a3d80,23, 0xa2a3e00,23, 0xa2a3e80,23, 0xa2a3f00,23, 0xa2a3f80,23, 0xa2a4000,23, 0xa2a4080,23, 0xa2a4100,23, 0xa2a4180,23, 0xa2a4200,23, 0xa2a4280,23, 0xa2a4300,23, 0xa2a4380,23, 0xa2a4400,23, 0xa2a4480,23, 0xa2a4500,23, 0xa2a4580,23, 0xa2a4600,23, 0xa2a4680,23, 0xa2a4700,23, 0xa2a4780,23, 0xa2a4800,23, 0xa2a4880,23, 0xa2a4900,23, 0xa2a4980,23, 0xa2a4a00,23, 0xa2a4a80,23, 0xa2a4b00,23, 0xa2a4b80,23, 0xa2a4c00,23, 0xa2a4c80,23, 0xa2a4d00,23, 0xa2a4d80,23, 0xa2a4e00,23, 0xa2a4e80,23, 0xa2a4f00,23, 0xa2a4f80,23, 0xa2a5000,23, 0xa2a5080,23, 0xa2a5100,23, 0xa2a5180,23, 0xa2a5200,23, 0xa2a5280,23, 0xa2a5300,23, 0xa2a5380,23, 0xa2a5400,23, 0xa2a5480,23, 0xa2a5500,23, 0xa2a5580,23, 0xa2a5600,23, 0xa2a5680,23, 0xa2a5700,23, 0xa2a5780,23, 0xa2a5800,23, 0xa2a5880,23, 0xa2a5900,23, 0xa2a5980,23, 0xa2a5a00,23, 0xa2a5a80,23, 0xa2a5b00,23, 0xa2a5b80,23, 0xa2a5c00,23, 0xa2a5c80,23, 0xa2a5d00,23, 0xa2a5d80,23, 0xa2a5e00,23, 0xa2a5e80,23, 0xa2a5f00,23, 0xa2a5f80,23, 0xa2a6000,23, 0xa2a6080,23, 0xa2a6100,23, 0xa2a6180,23, 0xa2a6200,23, 0xa2a6280,23, 0xa2a6300,23, 0xa2a6380,23, 0xa2a6400,23, 0xa2a6480,23, 0xa2a6500,23, 0xa2a6580,23, 0xa2a6600,23, 0xa2a6680,23, 0xa2a6700,23, 0xa2a6780,23, 0xa2a6800,23, 0xa2a6880,23, 0xa2a6900,23, 0xa2a6980,23, 0xa2a6a00,23, 0xa2a6a80,23, 0xa2a6b00,23, 0xa2a6b80,23, 0xa2a6c00,23, 0xa2a6c80,23, 0xa2a6d00,23, 0xa2a6d80,23, 0xa2a6e00,23, 0xa2a6e80,23, 0xa2a6f00,23, 0xa2a6f80,23, 0xa2a7000,23, 0xa2a7080,23, 0xa2a7100,23, 0xa2a7180,23, 0xa2a7200,23, 0xa2a7280,23, 0xa2a7300,23, 0xa2a7380,23, 0xa2a7400,23, 0xa2a7480,23, 0xa2a7500,23, 0xa2a7580,23, 0xa2a7600,23, 0xa2a7680,23, 0xa2a7700,23, 0xa2a7780,23, 0xa2a7800,23, 0xa2a7880,23, 0xa2a7900,23, 0xa2a7980,23, 0xa2a7a00,23, 0xa2a7a80,23, 0xa2a7b00,23, 0xa2a7b80,23, 0xa2a7c00,23, 0xa2a7c80,23, 0xa2a7d00,23, 0xa2a7d80,23, 0xa2a7e00,23, 0xa2a7e80,23, 0xa2a7f00,23, 0xa2a7f80,23, 0xa2a8000,23, 0xa2a8080,23, 0xa2a8100,23, 0xa2a8180,23, 0xa2a8200,23, 0xa2a8280,23, 0xa2a8300,23, 0xa2a8380,23, 0xa2a8400,23, 0xa2a8480,23, 0xa2a8500,23, 0xa2a8580,23, 0xa2a8600,23, 0xa2a8680,23, 0xa2a8700,23, 0xa2a8780,23, 0xa2a8800,23, 0xa2a8880,23, 0xa2a8900,23, 0xa2a8980,23, 0xa2a8a00,23, 0xa2a8a80,23, 0xa2a8b00,23, 0xa2a8b80,23, 0xa2a8c00,23, 0xa2a8c80,23, 0xa2a8d00,23, 0xa2a8d80,23, 0xa2a8e00,23, 0xa2a8e80,23, 0xa2a8f00,23, 0xa2a8f80,23, 0xa2a9000,23, 0xa2a9080,23, 0xa2a9100,23, 0xa2a9180,23, 0xa2a9200,23, 0xa2a9280,23, 0xa2a9300,23, 0xa2a9380,23, 0xa2a9400,23, 0xa2a9480,23, 0xa2a9500,23, 0xa2a9580,23, 0xa2a9600,23, 0xa2a9680,23, 0xa2a9700,23, 0xa2a9780,23, 0xa2a9800,23, 0xa2a9880,23, 0xa2a9900,23, 0xa2a9980,23, 0xa2a9a00,23, 0xa2a9a80,23, 0xa2a9b00,23, 0xa2a9b80,23, 0xa2a9c00,23, 0xa2a9c80,23, 0xa2a9d00,23, 0xa2a9d80,23, 0xa2a9e00,23, 0xa2a9e80,23, 0xa2a9f00,23, 0xa2a9f80,23, 0xa2aa000,23, 0xa2aa080,23, 0xa2aa100,23, 0xa2aa180,23, 0xa2aa200,23, 0xa2aa280,23, 0xa2aa300,23, 0xa2aa380,23, 0xa2aa400,23, 0xa2aa480,23, 0xa2aa500,23, 0xa2aa580,23, 0xa2aa600,23, 0xa2aa680,23, 0xa2aa700,23, 0xa2aa780,23, 0xa2aa800,23, 0xa2aa880,23, 0xa2aa900,23, 0xa2aa980,23, 0xa2aaa00,23, 0xa2aaa80,23, 0xa2aab00,23, 0xa2aab80,23, 0xa2aac00,23, 0xa2aac80,23, 0xa2aad00,23, 0xa2aad80,23, 0xa2aae00,23, 0xa2aae80,23, 0xa2aaf00,23, 0xa2aaf80,23, 0xa2ab000,23, 0xa2ab080,23, 0xa2ab100,23, 0xa2ab180,23, 0xa2ab200,23, 0xa2ab280,23, 0xa2ab300,23, 0xa2ab380,23, 0xa2ab400,23, 0xa2ab480,23, 0xa2ab500,23, 0xa2ab580,23, 0xa2ab600,23, 0xa2ab680,23, 0xa2ab700,23, 0xa2ab780,23, 0xa2ab800,23, 0xa2ab880,23, 0xa2ab900,23, 0xa2ab980,23, 0xa2aba00,23, 0xa2aba80,23, 0xa2abb00,23, 0xa2abb80,23, 0xa2abc00,23, 0xa2abc80,23, 0xa2abd00,23, 0xa2abd80,23, 0xa2abe00,23, 0xa2abe80,23, 0xa2abf00,23, 0xa2abf80,23, 0xa2ac000,23, 0xa2ac080,23, 0xa2ac100,23, 0xa2ac180,23, 0xa2ac200,23, 0xa2ac280,23, 0xa2ac300,23, 0xa2ac380,23, 0xa2ac400,23, 0xa2ac480,23, 0xa2ac500,23, 0xa2ac580,23, 0xa2ac600,23, 0xa2ac680,23, 0xa2ac700,23, 0xa2ac780,23, 0xa2ac800,23, 0xa2ac880,23, 0xa2ac900,23, 0xa2ac980,23, 0xa2aca00,23, 0xa2aca80,23, 0xa2acb00,23, 0xa2acb80,23, 0xa2acc00,23, 0xa2acc80,23, 0xa2acd00,23, 0xa2acd80,23, 0xa2ace00,23, 0xa2ace80,23, 0xa2acf00,23, 0xa2acf80,23, 0xa2ad000,23, 0xa2ad080,23, 0xa2ad100,23, 0xa2ad180,23, 0xa2ad200,23, 0xa2ad280,23, 0xa2ad300,23, 0xa2ad380,23, 0xa2ad400,23, 0xa2ad480,23, 0xa2ad500,23, 0xa2ad580,23, 0xa2ad600,23, 0xa2ad680,23, 0xa2ad700,23, 0xa2ad780,23, 0xa2ad800,23, 0xa2ad880,23, 0xa2ad900,23, 0xa2ad980,23, 0xa2ada00,23, 0xa2ada80,23, 0xa2adb00,23, 0xa2adb80,23, 0xa2adc00,23, 0xa2adc80,23, 0xa2add00,23, 0xa2add80,23, 0xa2ade00,23, 0xa2ade80,23, 0xa2adf00,23, 0xa2adf80,23, 0xa2ae000,23, 0xa2ae080,23, 0xa2ae100,23, 0xa2ae180,23, 0xa2ae200,23, 0xa2ae280,23, 0xa2ae300,23, 0xa2ae380,23, 0xa2ae400,23, 0xa2ae480,23, 0xa2ae500,23, 0xa2ae580,23, 0xa2ae600,23, 0xa2ae680,23, 0xa2ae700,23, 0xa2ae780,23, 0xa2ae800,23, 0xa2ae880,23, 0xa2ae900,23, 0xa2ae980,23, 0xa2aea00,23, 0xa2aea80,23, 0xa2aeb00,23, 0xa2aeb80,23, 0xa2aec00,23, 0xa2aec80,23, 0xa2aed00,23, 0xa2aed80,23, 0xa2aee00,23, 0xa2aee80,23, 0xa2aef00,23, 0xa2aef80,23, 0xa2af000,23, 0xa2af080,23, 0xa2af100,23, 0xa2af180,23, 0xa2af200,23, 0xa2af280,23, 0xa2af300,23, 0xa2af380,23, 0xa2af400,23, 0xa2af480,23, 0xa2af500,23, 0xa2af580,23, 0xa2af600,23, 0xa2af680,23, 0xa2af700,23, 0xa2af780,23, 0xa2af800,23, 0xa2af880,23, 0xa2af900,23, 0xa2af980,23, 0xa2afa00,23, 0xa2afa80,23, 0xa2afb00,23, 0xa2afb80,23, 0xa2afc00,23, 0xa2afc80,23, 0xa2afd00,23, 0xa2afd80,23, 0xa2afe00,23, 0xa2afe80,23, 0xa2aff00,23, 0xa2aff80,23, 0xa2b0000,23, 0xa2b0080,23, 0xa2b0100,23, 0xa2b0180,23, 0xa2b0200,23, 0xa2b0280,23, 0xa2b0300,23, 0xa2b0380,23, 0xa2b0400,23, 0xa2b0480,23, 0xa2b0500,23, 0xa2b0580,23, 0xa2b0600,23, 0xa2b0680,23, 0xa2b0700,23, 0xa2b0780,23, 0xa2b0800,23, 0xa2b0880,23, 0xa2b0900,23, 0xa2b0980,23, 0xa2b0a00,23, 0xa2b0a80,23, 0xa2b0b00,23, 0xa2b0b80,23, 0xa2b0c00,23, 0xa2b0c80,23, 0xa2b0d00,23, 0xa2b0d80,23, 0xa2b0e00,23, 0xa2b0e80,23, 0xa2b0f00,23, 0xa2b0f80,23, 0xa2b1000,23, 0xa2b1080,23, 0xa2b1100,23, 0xa2b1180,23, 0xa2b1200,23, 0xa2b1280,23, 0xa2b1300,23, 0xa2b1380,23, 0xa2b1400,23, 0xa2b1480,23, 0xa2b1500,23, 0xa2b1580,23, 0xa2b1600,23, 0xa2b1680,23, 0xa2b1700,23, 0xa2b1780,23, 0xa2b1800,23, 0xa2b1880,23, 0xa2b1900,23, 0xa2b1980,23, 0xa2b1a00,23, 0xa2b1a80,23, 0xa2b1b00,23, 0xa2b1b80,23, 0xa2b1c00,23, 0xa2b1c80,23, 0xa2b1d00,23, 0xa2b1d80,23, 0xa2b1e00,23, 0xa2b1e80,23, 0xa2b1f00,23, 0xa2b1f80,23, 0xa2b2000,23, 0xa2b2080,23, 0xa2b2100,23, 0xa2b2180,23, 0xa2b2200,23, 0xa2b2280,23, 0xa2b2300,23, 0xa2b2380,23, 0xa2b2400,23, 0xa2b2480,23, 0xa2b2500,23, 0xa2b2580,23, 0xa2b2600,23, 0xa2b2680,23, 0xa2b2700,23, 0xa2b2780,23, 0xa2b2800,23, 0xa2b2880,23, 0xa2b2900,23, 0xa2b2980,23, 0xa2b2a00,23, 0xa2b2a80,23, 0xa2b2b00,23, 0xa2b2b80,23, 0xa2b2c00,23, 0xa2b2c80,23, 0xa2b2d00,23, 0xa2b2d80,23, 0xa2b2e00,23, 0xa2b2e80,23, 0xa2b2f00,23, 0xa2b2f80,23, 0xa2b3000,23, 0xa2b3080,23, 0xa2b3100,23, 0xa2b3180,23, 0xa2b3200,23, 0xa2b3280,23, 0xa2b3300,23, 0xa2b3380,23, 0xa2b3400,23, 0xa2b3480,23, 0xa2b3500,23, 0xa2b3580,23, 0xa2b3600,23, 0xa2b3680,23, 0xa2b3700,23, 0xa2b3780,23, 0xa2b3800,23, 0xa2b3880,23, 0xa2b3900,23, 0xa2b3980,23, 0xa2b3a00,23, 0xa2b3a80,23, 0xa2b3b00,23, 0xa2b3b80,23, 0xa2b3c00,23, 0xa2b3c80,23, 0xa2b3d00,23, 0xa2b3d80,23, 0xa2b3e00,23, 0xa2b3e80,23, 0xa2b3f00,23, 0xa2b3f80,23, 0xa2b4000,23, 0xa2b4080,23, 0xa2b4100,23, 0xa2b4180,23, 0xa2b4200,23, 0xa2b4280,23, 0xa2b4300,23, 0xa2b4380,23, 0xa2b4400,23, 0xa2b4480,23, 0xa2b4500,23, 0xa2b4580,23, 0xa2b4600,23, 0xa2b4680,23, 0xa2b4700,23, 0xa2b4780,23, 0xa2b4800,23, 0xa2b4880,23, 0xa2b4900,23, 0xa2b4980,23, 0xa2b4a00,23, 0xa2b4a80,23, 0xa2b4b00,23, 0xa2b4b80,23, 0xa2b4c00,23, 0xa2b4c80,23, 0xa2b4d00,23, 0xa2b4d80,23, 0xa2b4e00,23, 0xa2b4e80,23, 0xa2b4f00,23, 0xa2b4f80,23, 0xa2b5000,23, 0xa2b5080,23, 0xa2b5100,23, 0xa2b5180,23, 0xa2b5200,23, 0xa2b5280,23, 0xa2b5300,23, 0xa2b5380,23, 0xa2b5400,23, 0xa2b5480,23, 0xa2b5500,23, 0xa2b5580,23, 0xa2b5600,23, 0xa2b5680,23, 0xa2b5700,23, 0xa2b5780,23, 0xa2b5800,23, 0xa2b5880,23, 0xa2b5900,23, 0xa2b5980,23, 0xa2b5a00,23, 0xa2b5a80,23, 0xa2b5b00,23, 0xa2b5b80,23, 0xa2b5c00,23, 0xa2b5c80,23, 0xa2b5d00,23, 0xa2b5d80,23, 0xa2b5e00,23, 0xa2b5e80,23, 0xa2b5f00,23, 0xa2b5f80,23, 0xa2b6000,23, 0xa2b6080,23, 0xa2b6100,23, 0xa2b6180,23, 0xa2b6200,23, 0xa2b6280,23, 0xa2b6300,23, 0xa2b6380,23, 0xa2b6400,23, 0xa2b6480,23, 0xa2b6500,23, 0xa2b6580,23, 0xa2b6600,23, 0xa2b6680,23, 0xa2b6700,23, 0xa2b6780,23, 0xa2b6800,23, 0xa2b6880,23, 0xa2b6900,23, 0xa2b6980,23, 0xa2b6a00,23, 0xa2b6a80,23, 0xa2b6b00,23, 0xa2b6b80,23, 0xa2b6c00,23, 0xa2b6c80,23, 0xa2b6d00,23, 0xa2b6d80,23, 0xa2b6e00,23, 0xa2b6e80,23, 0xa2b6f00,23, 0xa2b6f80,23, 0xa2b7000,23, 0xa2b7080,23, 0xa2b7100,23, 0xa2b7180,23, 0xa2b7200,23, 0xa2b7280,23, 0xa2b7300,23, 0xa2b7380,23, 0xa2b7400,23, 0xa2b7480,23, 0xa2b7500,23, 0xa2b7580,23, 0xa2b7600,23, 0xa2b7680,23, 0xa2b7700,23, 0xa2b7780,23, 0xa2b7800,23, 0xa2b7880,23, 0xa2b7900,23, 0xa2b7980,23, 0xa2b7a00,23, 0xa2b7a80,23, 0xa2b7b00,23, 0xa2b7b80,23, 0xa2b7c00,23, 0xa2b7c80,23, 0xa2b7d00,23, 0xa2b7d80,23, 0xa2b7e00,23, 0xa2b7e80,23, 0xa2b7f00,23, 0xa2b7f80,23, 0xa2b8000,23, 0xa2b8080,23, 0xa2b8100,23, 0xa2b8180,23, 0xa2b8200,23, 0xa2b8280,23, 0xa2b8300,23, 0xa2b8380,23, 0xa2b8400,23, 0xa2b8480,23, 0xa2b8500,23, 0xa2b8580,23, 0xa2b8600,23, 0xa2b8680,23, 0xa2b8700,23, 0xa2b8780,23, 0xa2b8800,23, 0xa2b8880,23, 0xa2b8900,23, 0xa2b8980,23, 0xa2b8a00,23, 0xa2b8a80,23, 0xa2b8b00,23, 0xa2b8b80,23, 0xa2b8c00,23, 0xa2b8c80,23, 0xa2b8d00,23, 0xa2b8d80,23, 0xa2b8e00,23, 0xa2b8e80,23, 0xa2b8f00,23, 0xa2b8f80,23, 0xa2b9000,23, 0xa2b9080,23, 0xa2b9100,23, 0xa2b9180,23, 0xa2b9200,23, 0xa2b9280,23, 0xa2b9300,23, 0xa2b9380,23, 0xa2b9400,23, 0xa2b9480,23, 0xa2b9500,23, 0xa2b9580,23, 0xa2b9600,23, 0xa2b9680,23, 0xa2b9700,23, 0xa2b9780,23, 0xa2b9800,23, 0xa2b9880,23, 0xa2b9900,23, 0xa2b9980,23, 0xa2b9a00,23, 0xa2b9a80,23, 0xa2b9b00,23, 0xa2b9b80,23, 0xa2b9c00,23, 0xa2b9c80,23, 0xa2b9d00,23, 0xa2b9d80,23, 0xa2b9e00,23, 0xa2b9e80,23, 0xa2b9f00,23, 0xa2b9f80,23, 0xa2ba000,23, 0xa2ba080,23, 0xa2ba100,23, 0xa2ba180,23, 0xa2ba200,23, 0xa2ba280,23, 0xa2ba300,23, 0xa2ba380,23, 0xa2ba400,23, 0xa2ba480,23, 0xa2ba500,23, 0xa2ba580,23, 0xa2ba600,23, 0xa2ba680,23, 0xa2ba700,23, 0xa2ba780,23, 0xa2ba800,23, 0xa2ba880,23, 0xa2ba900,23, 0xa2ba980,23, 0xa2baa00,23, 0xa2baa80,23, 0xa2bab00,23, 0xa2bab80,23, 0xa2bac00,23, 0xa2bac80,23, 0xa2bad00,23, 0xa2bad80,23, 0xa2bae00,23, 0xa2bae80,23, 0xa2baf00,23, 0xa2baf80,23, 0xa2bb000,23, 0xa2bb080,23, 0xa2bb100,23, 0xa2bb180,23, 0xa2bb200,23, 0xa2bb280,23, 0xa2bb300,23, 0xa2bb380,23, 0xa2bb400,23, 0xa2bb480,23, 0xa2bb500,23, 0xa2bb580,23, 0xa2bb600,23, 0xa2bb680,23, 0xa2bb700,23, 0xa2bb780,23, 0xa2bb800,23, 0xa2bb880,23, 0xa2bb900,23, 0xa2bb980,23, 0xa2bba00,23, 0xa2bba80,23, 0xa2bbb00,23, 0xa2bbb80,23, 0xa2bbc00,23, 0xa2bbc80,23, 0xa2bbd00,23, 0xa2bbd80,23, 0xa2bbe00,23, 0xa2bbe80,23, 0xa2bbf00,23, 0xa2bbf80,23, 0xa2bc000,23, 0xa2bc080,23, 0xa2bc100,23, 0xa2bc180,23, 0xa2bc200,23, 0xa2bc280,23, 0xa2bc300,23, 0xa2bc380,23, 0xa2bc400,23, 0xa2bc480,23, 0xa2bc500,23, 0xa2bc580,23, 0xa2bc600,23, 0xa2bc680,23, 0xa2bc700,23, 0xa2bc780,23, 0xa2bc800,23, 0xa2bc880,23, 0xa2bc900,23, 0xa2bc980,23, 0xa2bca00,23, 0xa2bca80,23, 0xa2bcb00,23, 0xa2bcb80,23, 0xa2bcc00,23, 0xa2bcc80,23, 0xa2bcd00,23, 0xa2bcd80,23, 0xa2bce00,23, 0xa2bce80,23, 0xa2bcf00,23, 0xa2bcf80,23, 0xa2bd000,23, 0xa2bd080,23, 0xa2bd100,23, 0xa2bd180,23, 0xa2bd200,23, 0xa2bd280,23, 0xa2bd300,23, 0xa2bd380,23, 0xa2bd400,23, 0xa2bd480,23, 0xa2bd500,23, 0xa2bd580,23, 0xa2bd600,23, 0xa2bd680,23, 0xa2bd700,23, 0xa2bd780,23, 0xa2bd800,23, 0xa2bd880,23, 0xa2bd900,23, 0xa2bd980,23, 0xa2bda00,23, 0xa2bda80,23, 0xa2bdb00,23, 0xa2bdb80,23, 0xa2bdc00,23, 0xa2bdc80,23, 0xa2bdd00,23, 0xa2bdd80,23, 0xa2bde00,23, 0xa2bde80,23, 0xa2bdf00,23, 0xa2bdf80,23, 0xa2be000,23, 0xa2be080,23, 0xa2be100,23, 0xa2be180,23, 0xa2be200,23, 0xa2be280,23, 0xa2be300,23, 0xa2be380,23, 0xa2be400,23, 0xa2be480,23, 0xa2be500,23, 0xa2be580,23, 0xa2be600,23, 0xa2be680,23, 0xa2be700,23, 0xa2be780,23, 0xa2be800,23, 0xa2be880,23, 0xa2be900,23, 0xa2be980,23, 0xa2bea00,23, 0xa2bea80,23, 0xa2beb00,23, 0xa2beb80,23, 0xa2bec00,23, 0xa2bec80,23, 0xa2bed00,23, 0xa2bed80,23, 0xa2bee00,23, 0xa2bee80,23, 0xa2bef00,23, 0xa2bef80,23, 0xa2bf000,23, 0xa2bf080,23, 0xa2bf100,23, 0xa2bf180,23, 0xa2bf200,23, 0xa2bf280,23, 0xa2bf300,23, 0xa2bf380,23, 0xa2bf400,23, 0xa2bf480,23, 0xa2bf500,23, 0xa2bf580,23, 0xa2bf600,23, 0xa2bf680,23, 0xa2bf700,23, 0xa2bf780,23, 0xa2bf800,23, 0xa2bf880,23, 0xa2bf900,23, 0xa2bf980,23, 0xa2bfa00,23, 0xa2bfa80,23, 0xa2bfb00,23, 0xa2bfb80,23, 0xa2bfc00,23, 0xa2bfc80,23, 0xa2bfd00,23, 0xa2bfd80,23, 0xa2bfe00,23, 0xa2bfe80,23, 0xa2bff00,23, 0xa2bff80,23, 0xa2c0000,23, 0xa2c0080,23, 0xa2c0100,23, 0xa2c0180,23, 0xa2c0200,23, 0xa2c0280,23, 0xa2c0300,23, 0xa2c0380,23, 0xa2c0400,23, 0xa2c0480,23, 0xa2c0500,23, 0xa2c0580,23, 0xa2c0600,23, 0xa2c0680,23, 0xa2c0700,23, 0xa2c0780,23, 0xa2c0800,23, 0xa2c0880,23, 0xa2c0900,23, 0xa2c0980,23, 0xa2c0a00,23, 0xa2c0a80,23, 0xa2c0b00,23, 0xa2c0b80,23, 0xa2c0c00,23, 0xa2c0c80,23, 0xa2c0d00,23, 0xa2c0d80,23, 0xa2c0e00,23, 0xa2c0e80,23, 0xa2c0f00,23, 0xa2c0f80,23, 0xa2c1000,23, 0xa2c1080,23, 0xa2c1100,23, 0xa2c1180,23, 0xa2c1200,23, 0xa2c1280,23, 0xa2c1300,23, 0xa2c1380,23, 0xa2c1400,23, 0xa2c1480,23, 0xa2c1500,23, 0xa2c1580,23, 0xa2c1600,23, 0xa2c1680,23, 0xa2c1700,23, 0xa2c1780,23, 0xa2c1800,23, 0xa2c1880,23, 0xa2c1900,23, 0xa2c1980,23, 0xa2c1a00,23, 0xa2c1a80,23, 0xa2c1b00,23, 0xa2c1b80,23, 0xa2c1c00,23, 0xa2c1c80,23, 0xa2c1d00,23, 0xa2c1d80,23, 0xa2c1e00,23, 0xa2c1e80,23, 0xa2c1f00,23, 0xa2c1f80,23, 0xa2c2000,23, 0xa2c2080,23, 0xa2c2100,23, 0xa2c2180,23, 0xa2c2200,23, 0xa2c2280,23, 0xa2c2300,23, 0xa2c2380,23, 0xa2c2400,23, 0xa2c2480,23, 0xa2c2500,23, 0xa2c2580,23, 0xa2c2600,23, 0xa2c2680,23, 0xa2c2700,23, 0xa2c2780,23, 0xa2c2800,23, 0xa2c2880,23, 0xa2c2900,23, 0xa2c2980,23, 0xa2c2a00,23, 0xa2c2a80,23, 0xa2c2b00,23, 0xa2c2b80,23, 0xa2c2c00,23, 0xa2c2c80,23, 0xa2c2d00,23, 0xa2c2d80,23, 0xa2c2e00,23, 0xa2c2e80,23, 0xa2c2f00,23, 0xa2c2f80,23, 0xa2c3000,23, 0xa2c3080,23, 0xa2c3100,23, 0xa2c3180,23, 0xa2c3200,23, 0xa2c3280,23, 0xa2c3300,23, 0xa2c3380,23, 0xa2c3400,23, 0xa2c3480,23, 0xa2c3500,23, 0xa2c3580,23, 0xa2c3600,23, 0xa2c3680,23, 0xa2c3700,23, 0xa2c3780,23, 0xa2c3800,23, 0xa2c3880,23, 0xa2c3900,23, 0xa2c3980,23, 0xa2c3a00,23, 0xa2c3a80,23, 0xa2c3b00,23, 0xa2c3b80,23, 0xa2c3c00,23, 0xa2c3c80,23, 0xa2c3d00,23, 0xa2c3d80,23, 0xa2c3e00,23, 0xa2c3e80,23, 0xa2c3f00,23, 0xa2c3f80,23, 0xa2c4000,23, 0xa2c4080,23, 0xa2c4100,23, 0xa2c4180,23, 0xa2c4200,23, 0xa2c4280,23, 0xa2c4300,23, 0xa2c4380,23, 0xa2c4400,23, 0xa2c4480,23, 0xa2c4500,23, 0xa2c4580,23, 0xa2c4600,23, 0xa2c4680,23, 0xa2c4700,23, 0xa2c4780,23, 0xa2c4800,23, 0xa2c4880,23, 0xa2c4900,23, 0xa2c4980,23, 0xa2c4a00,23, 0xa2c4a80,23, 0xa2c4b00,23, 0xa2c4b80,23, 0xa2c4c00,23, 0xa2c4c80,23, 0xa2c4d00,23, 0xa2c4d80,23, 0xa2c4e00,23, 0xa2c4e80,23, 0xa2c4f00,23, 0xa2c4f80,23, 0xa2c5000,23, 0xa2c5080,23, 0xa2c5100,23, 0xa2c5180,23, 0xa2c5200,23, 0xa2c5280,23, 0xa2c5300,23, 0xa2c5380,23, 0xa2c5400,23, 0xa2c5480,23, 0xa2c5500,23, 0xa2c5580,23, 0xa2c5600,23, 0xa2c5680,23, 0xa2c5700,23, 0xa2c5780,23, 0xa2c5800,23, 0xa2c5880,23, 0xa2c5900,23, 0xa2c5980,23, 0xa2c5a00,23, 0xa2c5a80,23, 0xa2c5b00,23, 0xa2c5b80,23, 0xa2c5c00,23, 0xa2c5c80,23, 0xa2c5d00,23, 0xa2c5d80,23, 0xa2c5e00,23, 0xa2c5e80,23, 0xa2c5f00,23, 0xa2c5f80,23, 0xa2c6000,23, 0xa2c6080,23, 0xa2c6100,23, 0xa2c6180,23, 0xa2c6200,23, 0xa2c6280,23, 0xa2c6300,23, 0xa2c6380,23, 0xa2c6400,23, 0xa2c6480,23, 0xa2c6500,23, 0xa2c6580,23, 0xa2c6600,23, 0xa2c6680,23, 0xa2c6700,23, 0xa2c6780,23, 0xa2c6800,23, 0xa2c6880,23, 0xa2c6900,23, 0xa2c6980,23, 0xa2c6a00,23, 0xa2c6a80,23, 0xa2c6b00,23, 0xa2c6b80,23, 0xa2c6c00,23, 0xa2c6c80,23, 0xa2c6d00,23, 0xa2c6d80,23, 0xa2c6e00,23, 0xa2c6e80,23, 0xa2c6f00,23, 0xa2c6f80,23, 0xa2c7000,23, 0xa2c7080,23, 0xa2c7100,23, 0xa2c7180,23, 0xa2c7200,23, 0xa2c7280,23, 0xa2c7300,23, 0xa2c7380,23, 0xa2c7400,23, 0xa2c7480,23, 0xa2c7500,23, 0xa2c7580,23, 0xa2c7600,23, 0xa2c7680,23, 0xa2c7700,23, 0xa2c7780,23, 0xa2c7800,23, 0xa2c7880,23, 0xa2c7900,23, 0xa2c7980,23, 0xa2c7a00,23, 0xa2c7a80,23, 0xa2c7b00,23, 0xa2c7b80,23, 0xa2c7c00,23, 0xa2c7c80,23, 0xa2c7d00,23, 0xa2c7d80,23, 0xa2c7e00,23, 0xa2c7e80,23, 0xa2c7f00,23, 0xa2c7f80,23, 0xa2c8000,23, 0xa2c8080,23, 0xa2c8100,23, 0xa2c8180,23, 0xa2c8200,23, 0xa2c8280,23, 0xa2c8300,23, 0xa2c8380,23, 0xa2c8400,23, 0xa2c8480,23, 0xa2c8500,23, 0xa2c8580,23, 0xa2c8600,23, 0xa2c8680,23, 0xa2c8700,23, 0xa2c8780,23, 0xa2c8800,23, 0xa2c8880,23, 0xa2c8900,23, 0xa2c8980,23, 0xa2c8a00,23, 0xa2c8a80,23, 0xa2c8b00,23, 0xa2c8b80,23, 0xa2c8c00,23, 0xa2c8c80,23, 0xa2c8d00,23, 0xa2c8d80,23, 0xa2c8e00,23, 0xa2c8e80,23, 0xa2c8f00,23, 0xa2c8f80,23, 0xa2c9000,23, 0xa2c9080,23, 0xa2c9100,23, 0xa2c9180,23, 0xa2c9200,23, 0xa2c9280,23, 0xa2c9300,23, 0xa2c9380,23, 0xa2c9400,23, 0xa2c9480,23, 0xa2c9500,23, 0xa2c9580,23, 0xa2c9600,23, 0xa2c9680,23, 0xa2c9700,23, 0xa2c9780,23, 0xa2c9800,23, 0xa2c9880,23, 0xa2c9900,23, 0xa2c9980,23, 0xa2c9a00,23, 0xa2c9a80,23, 0xa2c9b00,23, 0xa2c9b80,23, 0xa2c9c00,23, 0xa2c9c80,23, 0xa2c9d00,23, 0xa2c9d80,23, 0xa2c9e00,23, 0xa2c9e80,23, 0xa2c9f00,23, 0xa2c9f80,23, 0xa2ca000,23, 0xa2ca080,23, 0xa2ca100,23, 0xa2ca180,23, 0xa2ca200,23, 0xa2ca280,23, 0xa2ca300,23, 0xa2ca380,23, 0xa2ca400,23, 0xa2ca480,23, 0xa2ca500,23, 0xa2ca580,23, 0xa2ca600,23, 0xa2ca680,23, 0xa2ca700,23, 0xa2ca780,23, 0xa2ca800,23, 0xa2ca880,23, 0xa2ca900,23, 0xa2ca980,23, 0xa2caa00,23, 0xa2caa80,23, 0xa2cab00,23, 0xa2cab80,23, 0xa2cac00,23, 0xa2cac80,23, 0xa2cad00,23, 0xa2cad80,23, 0xa2cae00,23, 0xa2cae80,23, 0xa2caf00,23, 0xa2caf80,23, 0xa2cb000,23, 0xa2cb080,23, 0xa2cb100,23, 0xa2cb180,23, 0xa2cb200,23, 0xa2cb280,23, 0xa2cb300,23, 0xa2cb380,23, 0xa2cb400,23, 0xa2cb480,23, 0xa2cb500,23, 0xa2cb580,23, 0xa2cb600,23, 0xa2cb680,23, 0xa2cb700,23, 0xa2cb780,23, 0xa2cb800,23, 0xa2cb880,23, 0xa2cb900,23, 0xa2cb980,23, 0xa2cba00,23, 0xa2cba80,23, 0xa2cbb00,23, 0xa2cbb80,23, 0xa2cbc00,23, 0xa2cbc80,23, 0xa2cbd00,23, 0xa2cbd80,23, 0xa2cbe00,23, 0xa2cbe80,23, 0xa2cbf00,23, 0xa2cbf80,23, 0xa2cc000,23, 0xa2cc080,23, 0xa2cc100,23, 0xa2cc180,23, 0xa2cc200,23, 0xa2cc280,23, 0xa2cc300,23, 0xa2cc380,23, 0xa2cc400,23, 0xa2cc480,23, 0xa2cc500,23, 0xa2cc580,23, 0xa2cc600,23, 0xa2cc680,23, 0xa2cc700,23, 0xa2cc780,23, 0xa2cc800,23, 0xa2cc880,23, 0xa2cc900,23, 0xa2cc980,23, 0xa2cca00,23, 0xa2cca80,23, 0xa2ccb00,23, 0xa2ccb80,23, 0xa2ccc00,23, 0xa2ccc80,23, 0xa2ccd00,23, 0xa2ccd80,23, 0xa2cce00,23, 0xa2cce80,23, 0xa2ccf00,23, 0xa2ccf80,23, 0xa2cd000,23, 0xa2cd080,23, 0xa2cd100,23, 0xa2cd180,23, 0xa2cd200,23, 0xa2cd280,23, 0xa2cd300,23, 0xa2cd380,23, 0xa2cd400,23, 0xa2cd480,23, 0xa2cd500,23, 0xa2cd580,23, 0xa2cd600,23, 0xa2cd680,23, 0xa2cd700,23, 0xa2cd780,23, 0xa2cd800,23, 0xa2cd880,23, 0xa2cd900,23, 0xa2cd980,23, 0xa2cda00,23, 0xa2cda80,23, 0xa2cdb00,23, 0xa2cdb80,23, 0xa2cdc00,23, 0xa2cdc80,23, 0xa2cdd00,23, 0xa2cdd80,23, 0xa2cde00,23, 0xa2cde80,23, 0xa2cdf00,23, 0xa2cdf80,23, 0xa2ce000,23, 0xa2ce080,23, 0xa2ce100,23, 0xa2ce180,23, 0xa2ce200,23, 0xa2ce280,23, 0xa2ce300,23, 0xa2ce380,23, 0xa2ce400,23, 0xa2ce480,23, 0xa2ce500,23, 0xa2ce580,23, 0xa2ce600,23, 0xa2ce680,23, 0xa2ce700,23, 0xa2ce780,23, 0xa2ce800,23, 0xa2ce880,23, 0xa2ce900,23, 0xa2ce980,23, 0xa2cea00,23, 0xa2cea80,23, 0xa2ceb00,23, 0xa2ceb80,23, 0xa2cec00,23, 0xa2cec80,23, 0xa2ced00,23, 0xa2ced80,23, 0xa2cee00,23, 0xa2cee80,23, 0xa2cef00,23, 0xa2cef80,23, 0xa2cf000,23, 0xa2cf080,23, 0xa2cf100,23, 0xa2cf180,23, 0xa2cf200,23, 0xa2cf280,23, 0xa2cf300,23, 0xa2cf380,23, 0xa2cf400,23, 0xa2cf480,23, 0xa2cf500,23, 0xa2cf580,23, 0xa2cf600,23, 0xa2cf680,23, 0xa2cf700,23, 0xa2cf780,23, 0xa2cf800,23, 0xa2cf880,23, 0xa2cf900,23, 0xa2cf980,23, 0xa2cfa00,23, 0xa2cfa80,23, 0xa2cfb00,23, 0xa2cfb80,23, 0xa2cfc00,23, 0xa2cfc80,23, 0xa2cfd00,23, 0xa2cfd80,23, 0xa2cfe00,23, 0xa2cfe80,23, 0xa2cff00,23, 0xa2cff80,23, 0xa2d0000,23, 0xa2d0080,23, 0xa2d0100,23, 0xa2d0180,23, 0xa2d0200,23, 0xa2d0280,23, 0xa2d0300,23, 0xa2d0380,23, 0xa2d0400,23, 0xa2d0480,23, 0xa2d0500,23, 0xa2d0580,23, 0xa2d0600,23, 0xa2d0680,23, 0xa2d0700,23, 0xa2d0780,23, 0xa2d0800,23, 0xa2d0880,23, 0xa2d0900,23, 0xa2d0980,23, 0xa2d0a00,23, 0xa2d0a80,23, 0xa2d0b00,23, 0xa2d0b80,23, 0xa2d0c00,23, 0xa2d0c80,23, 0xa2d0d00,23, 0xa2d0d80,23, 0xa2d0e00,23, 0xa2d0e80,23, 0xa2d0f00,23, 0xa2d0f80,23, 0xa2d1000,23, 0xa2d1080,23, 0xa2d1100,23, 0xa2d1180,23, 0xa2d1200,23, 0xa2d1280,23, 0xa2d1300,23, 0xa2d1380,23, 0xa2d1400,23, 0xa2d1480,23, 0xa2d1500,23, 0xa2d1580,23, 0xa2d1600,23, 0xa2d1680,23, 0xa2d1700,23, 0xa2d1780,23, 0xa2d1800,23, 0xa2d1880,23, 0xa2d1900,23, 0xa2d1980,23, 0xa2d1a00,23, 0xa2d1a80,23, 0xa2d1b00,23, 0xa2d1b80,23, 0xa2d1c00,23, 0xa2d1c80,23, 0xa2d1d00,23, 0xa2d1d80,23, 0xa2d1e00,23, 0xa2d1e80,23, 0xa2d1f00,23, 0xa2d1f80,23, 0xa2d2000,23, 0xa2d2080,23, 0xa2d2100,23, 0xa2d2180,23, 0xa2d2200,23, 0xa2d2280,23, 0xa2d2300,23, 0xa2d2380,23, 0xa2d2400,23, 0xa2d2480,23, 0xa2d2500,23, 0xa2d2580,23, 0xa2d2600,23, 0xa2d2680,23, 0xa2d2700,23, 0xa2d2780,23, 0xa2d2800,23, 0xa2d2880,23, 0xa2d2900,23, 0xa2d2980,23, 0xa2d2a00,23, 0xa2d2a80,23, 0xa2d2b00,23, 0xa2d2b80,23, 0xa2d2c00,23, 0xa2d2c80,23, 0xa2d2d00,23, 0xa2d2d80,23, 0xa2d2e00,23, 0xa2d2e80,23, 0xa2d2f00,23, 0xa2d2f80,23, 0xa2d3000,23, 0xa2d3080,23, 0xa2d3100,23, 0xa2d3180,23, 0xa2d3200,23, 0xa2d3280,23, 0xa2d3300,23, 0xa2d3380,23, 0xa2d3400,23, 0xa2d3480,23, 0xa2d3500,23, 0xa2d3580,23, 0xa2d3600,23, 0xa2d3680,23, 0xa2d3700,23, 0xa2d3780,23, 0xa2d3800,23, 0xa2d3880,23, 0xa2d3900,23, 0xa2d3980,23, 0xa2d3a00,23, 0xa2d3a80,23, 0xa2d3b00,23, 0xa2d3b80,23, 0xa2d3c00,23, 0xa2d3c80,23, 0xa2d3d00,23, 0xa2d3d80,23, 0xa2d3e00,23, 0xa2d3e80,23, 0xa2d3f00,23, 0xa2d3f80,23, 0xa2d4000,23, 0xa2d4080,23, 0xa2d4100,23, 0xa2d4180,23, 0xa2d4200,23, 0xa2d4280,23, 0xa2d4300,23, 0xa2d4380,23, 0xa2d4400,23, 0xa2d4480,23, 0xa2d4500,23, 0xa2d4580,23, 0xa2d4600,23, 0xa2d4680,23, 0xa2d4700,23, 0xa2d4780,23, 0xa2d4800,23, 0xa2d4880,23, 0xa2d4900,23, 0xa2d4980,23, 0xa2d4a00,23, 0xa2d4a80,23, 0xa2d4b00,23, 0xa2d4b80,23, 0xa2d4c00,23, 0xa2d4c80,23, 0xa2d4d00,23, 0xa2d4d80,23, 0xa2d4e00,23, 0xa2d4e80,23, 0xa2d4f00,23, 0xa2d4f80,23, 0xa2d5000,23, 0xa2d5080,23, 0xa2d5100,23, 0xa2d5180,23, 0xa2d5200,23, 0xa2d5280,23, 0xa2d5300,23, 0xa2d5380,23, 0xa2d5400,23, 0xa2d5480,23, 0xa2d5500,23, 0xa2d5580,23, 0xa2d5600,23, 0xa2d5680,23, 0xa2d5700,23, 0xa2d5780,23, 0xa2d5800,23, 0xa2d5880,23, 0xa2d5900,23, 0xa2d5980,23, 0xa2d5a00,23, 0xa2d5a80,23, 0xa2d5b00,23, 0xa2d5b80,23, 0xa2d5c00,23, 0xa2d5c80,23, 0xa2d5d00,23, 0xa2d5d80,23, 0xa2d5e00,23, 0xa2d5e80,23, 0xa2d5f00,23, 0xa2d5f80,23, 0xa2d6000,23, 0xa2d6080,23, 0xa2d6100,23, 0xa2d6180,23, 0xa2d6200,23, 0xa2d6280,23, 0xa2d6300,23, 0xa2d6380,23, 0xa2d6400,23, 0xa2d6480,23, 0xa2d6500,23, 0xa2d6580,23, 0xa2d6600,23, 0xa2d6680,23, 0xa2d6700,23, 0xa2d6780,23, 0xa2d6800,23, 0xa2d6880,23, 0xa2d6900,23, 0xa2d6980,23, 0xa2d6a00,23, 0xa2d6a80,23, 0xa2d6b00,23, 0xa2d6b80,23, 0xa2d6c00,23, 0xa2d6c80,23, 0xa2d6d00,23, 0xa2d6d80,23, 0xa2d6e00,23, 0xa2d6e80,23, 0xa2d6f00,23, 0xa2d6f80,23, 0xa2d7000,23, 0xa2d7080,23, 0xa2d7100,23, 0xa2d7180,23, 0xa2d7200,23, 0xa2d7280,23, 0xa2d7300,23, 0xa2d7380,23, 0xa2d7400,23, 0xa2d7480,23, 0xa2d7500,23, 0xa2d7580,23, 0xa2d7600,23, 0xa2d7680,23, 0xa2d7700,23, 0xa2d7780,23, 0xa2d7800,23, 0xa2d7880,23, 0xa2d7900,23, 0xa2d7980,23, 0xa2d7a00,23, 0xa2d7a80,23, 0xa2d7b00,23, 0xa2d7b80,23, 0xa2d7c00,23, 0xa2d7c80,23, 0xa2d7d00,23, 0xa2d7d80,23, 0xa2d7e00,23, 0xa2d7e80,23, 0xa2d7f00,23, 0xa2d7f80,23, 0xa2d8000,23, 0xa2d8080,23, 0xa2d8100,23, 0xa2d8180,23, 0xa2d8200,23, 0xa2d8280,23, 0xa2d8300,23, 0xa2d8380,23, 0xa2d8400,23, 0xa2d8480,23, 0xa2d8500,23, 0xa2d8580,23, 0xa2d8600,23, 0xa2d8680,23, 0xa2d8700,23, 0xa2d8780,23, 0xa2d8800,23, 0xa2d8880,23, 0xa2d8900,23, 0xa2d8980,23, 0xa2d8a00,23, 0xa2d8a80,23, 0xa2d8b00,23, 0xa2d8b80,23, 0xa2d8c00,23, 0xa2d8c80,23, 0xa2d8d00,23, 0xa2d8d80,23, 0xa2d8e00,23, 0xa2d8e80,23, 0xa2d8f00,23, 0xa2d8f80,23, 0xa2d9000,23, 0xa2d9080,23, 0xa2d9100,23, 0xa2d9180,23, 0xa2d9200,23, 0xa2d9280,23, 0xa2d9300,23, 0xa2d9380,23, 0xa2d9400,23, 0xa2d9480,23, 0xa2d9500,23, 0xa2d9580,23, 0xa2d9600,23, 0xa2d9680,23, 0xa2d9700,23, 0xa2d9780,23, 0xa2d9800,23, 0xa2d9880,23, 0xa2d9900,23, 0xa2d9980,23, 0xa2d9a00,23, 0xa2d9a80,23, 0xa2d9b00,23, 0xa2d9b80,23, 0xa2d9c00,23, 0xa2d9c80,23, 0xa2d9d00,23, 0xa2d9d80,23, 0xa2d9e00,23, 0xa2d9e80,23, 0xa2d9f00,23, 0xa2d9f80,23, 0xa2da000,23, 0xa2da080,23, 0xa2da100,23, 0xa2da180,23, 0xa2da200,23, 0xa2da280,23, 0xa2da300,23, 0xa2da380,23, 0xa2da400,23, 0xa2da480,23, 0xa2da500,23, 0xa2da580,23, 0xa2da600,23, 0xa2da680,23, 0xa2da700,23, 0xa2da780,23, 0xa2da800,23, 0xa2da880,23, 0xa2da900,23, 0xa2da980,23, 0xa2daa00,23, 0xa2daa80,23, 0xa2dab00,23, 0xa2dab80,23, 0xa2dac00,23, 0xa2dac80,23, 0xa2dad00,23, 0xa2dad80,23, 0xa2dae00,23, 0xa2dae80,23, 0xa2daf00,23, 0xa2daf80,23, 0xa2db000,23, 0xa2db080,23, 0xa2db100,23, 0xa2db180,23, 0xa2db200,23, 0xa2db280,23, 0xa2db300,23, 0xa2db380,23, 0xa2db400,23, 0xa2db480,23, 0xa2db500,23, 0xa2db580,23, 0xa2db600,23, 0xa2db680,23, 0xa2db700,23, 0xa2db780,23, 0xa2db800,23, 0xa2db880,23, 0xa2db900,23, 0xa2db980,23, 0xa2dba00,23, 0xa2dba80,23, 0xa2dbb00,23, 0xa2dbb80,23, 0xa2dbc00,23, 0xa2dbc80,23, 0xa2dbd00,23, 0xa2dbd80,23, 0xa2dbe00,23, 0xa2dbe80,23, 0xa2dbf00,23, 0xa2dbf80,23, 0xa2dc000,23, 0xa2dc080,23, 0xa2dc100,23, 0xa2dc180,23, 0xa2dc200,23, 0xa2dc280,23, 0xa2dc300,23, 0xa2dc380,23, 0xa2dc400,23, 0xa2dc480,23, 0xa2dc500,23, 0xa2dc580,23, 0xa2dc600,23, 0xa2dc680,23, 0xa2dc700,23, 0xa2dc780,23, 0xa2dc800,23, 0xa2dc880,23, 0xa2dc900,23, 0xa2dc980,23, 0xa2dca00,23, 0xa2dca80,23, 0xa2dcb00,23, 0xa2dcb80,23, 0xa2dcc00,23, 0xa2dcc80,23, 0xa2dcd00,23, 0xa2dcd80,23, 0xa2dce00,23, 0xa2dce80,23, 0xa2dcf00,23, 0xa2dcf80,23, 0xa2dd000,23, 0xa2dd080,23, 0xa2dd100,23, 0xa2dd180,23, 0xa2dd200,23, 0xa2dd280,23, 0xa2dd300,23, 0xa2dd380,23, 0xa2dd400,23, 0xa2dd480,23, 0xa2dd500,23, 0xa2dd580,23, 0xa2dd600,23, 0xa2dd680,23, 0xa2dd700,23, 0xa2dd780,23, 0xa2dd800,23, 0xa2dd880,23, 0xa2dd900,23, 0xa2dd980,23, 0xa2dda00,23, 0xa2dda80,23, 0xa2ddb00,23, 0xa2ddb80,23, 0xa2ddc00,23, 0xa2ddc80,23, 0xa2ddd00,23, 0xa2ddd80,23, 0xa2dde00,23, 0xa2dde80,23, 0xa2ddf00,23, 0xa2ddf80,23, 0xa2de000,23, 0xa2de080,23, 0xa2de100,23, 0xa2de180,23, 0xa2de200,23, 0xa2de280,23, 0xa2de300,23, 0xa2de380,23, 0xa2de400,23, 0xa2de480,23, 0xa2de500,23, 0xa2de580,23, 0xa2de600,23, 0xa2de680,23, 0xa2de700,23, 0xa2de780,23, 0xa2de800,23, 0xa2de880,23, 0xa2de900,23, 0xa2de980,23, 0xa2dea00,23, 0xa2dea80,23, 0xa2deb00,23, 0xa2deb80,23, 0xa2dec00,23, 0xa2dec80,23, 0xa2ded00,23, 0xa2ded80,23, 0xa2dee00,23, 0xa2dee80,23, 0xa2def00,23, 0xa2def80,23, 0xa2df000,23, 0xa2df080,23, 0xa2df100,23, 0xa2df180,23, 0xa2df200,23, 0xa2df280,23, 0xa2df300,23, 0xa2df380,23, 0xa2df400,23, 0xa2df480,23, 0xa2df500,23, 0xa2df580,23, 0xa2df600,23, 0xa2df680,23, 0xa2df700,23, 0xa2df780,23, 0xa2df800,23, 0xa2df880,23, 0xa2df900,23, 0xa2df980,23, 0xa2dfa00,23, 0xa2dfa80,23, 0xa2dfb00,23, 0xa2dfb80,23, 0xa2dfc00,23, 0xa2dfc80,23, 0xa2dfd00,23, 0xa2dfd80,23, 0xa2dfe00,23, 0xa2dfe80,23, 0xa2dff00,23, 0xa2dff80,23, 0xa2e0000,23, 0xa2e0080,23, 0xa2e0100,23, 0xa2e0180,23, 0xa2e0200,23, 0xa2e0280,23, 0xa2e0300,23, 0xa2e0380,23, 0xa2e0400,23, 0xa2e0480,23, 0xa2e0500,23, 0xa2e0580,23, 0xa2e0600,23, 0xa2e0680,23, 0xa2e0700,23, 0xa2e0780,23, 0xa2e0800,23, 0xa2e0880,23, 0xa2e0900,23, 0xa2e0980,23, 0xa2e0a00,23, 0xa2e0a80,23, 0xa2e0b00,23, 0xa2e0b80,23, 0xa2e0c00,23, 0xa2e0c80,23, 0xa2e0d00,23, 0xa2e0d80,23, 0xa2e0e00,23, 0xa2e0e80,23, 0xa2e0f00,23, 0xa2e0f80,23, 0xa2e1000,23, 0xa2e1080,23, 0xa2e1100,23, 0xa2e1180,23, 0xa2e1200,23, 0xa2e1280,23, 0xa2e1300,23, 0xa2e1380,23, 0xa2e1400,23, 0xa2e1480,23, 0xa2e1500,23, 0xa2e1580,23, 0xa2e1600,23, 0xa2e1680,23, 0xa2e1700,23, 0xa2e1780,23, 0xa2e1800,23, 0xa2e1880,23, 0xa2e1900,23, 0xa2e1980,23, 0xa2e1a00,23, 0xa2e1a80,23, 0xa2e1b00,23, 0xa2e1b80,23, 0xa2e1c00,23, 0xa2e1c80,23, 0xa2e1d00,23, 0xa2e1d80,23, 0xa2e1e00,23, 0xa2e1e80,23, 0xa2e1f00,23, 0xa2e1f80,23, 0xa2e2000,23, 0xa2e2080,23, 0xa2e2100,23, 0xa2e2180,23, 0xa2e2200,23, 0xa2e2280,23, 0xa2e2300,23, 0xa2e2380,23, 0xa2e2400,23, 0xa2e2480,23, 0xa2e2500,23, 0xa2e2580,23, 0xa2e2600,23, 0xa2e2680,23, 0xa2e2700,23, 0xa2e2780,23, 0xa2e2800,23, 0xa2e2880,23, 0xa2e2900,23, 0xa2e2980,23, 0xa2e2a00,23, 0xa2e2a80,23, 0xa2e2b00,23, 0xa2e2b80,23, 0xa2e2c00,23, 0xa2e2c80,23, 0xa2e2d00,23, 0xa2e2d80,23, 0xa2e2e00,23, 0xa2e2e80,23, 0xa2e2f00,23, 0xa2e2f80,23, 0xa2e3000,23, 0xa2e3080,23, 0xa2e3100,23, 0xa2e3180,23, 0xa2e3200,23, 0xa2e3280,23, 0xa2e3300,23, 0xa2e3380,23, 0xa2e3400,23, 0xa2e3480,23, 0xa2e3500,23, 0xa2e3580,23, 0xa2e3600,23, 0xa2e3680,23, 0xa2e3700,23, 0xa2e3780,23, 0xa2e3800,23, 0xa2e3880,23, 0xa2e3900,23, 0xa2e3980,23, 0xa2e3a00,23, 0xa2e3a80,23, 0xa2e3b00,23, 0xa2e3b80,23, 0xa2e3c00,23, 0xa2e3c80,23, 0xa2e3d00,23, 0xa2e3d80,23, 0xa2e3e00,23, 0xa2e3e80,23, 0xa2e3f00,23, 0xa2e3f80,23, 0xa2e4000,23, 0xa2e4080,23, 0xa2e4100,23, 0xa2e4180,23, 0xa2e4200,23, 0xa2e4280,23, 0xa2e4300,23, 0xa2e4380,23, 0xa2e4400,23, 0xa2e4480,23, 0xa2e4500,23, 0xa2e4580,23, 0xa2e4600,23, 0xa2e4680,23, 0xa2e4700,23, 0xa2e4780,23, 0xa2e4800,23, 0xa2e4880,23, 0xa2e4900,23, 0xa2e4980,23, 0xa2e4a00,23, 0xa2e4a80,23, 0xa2e4b00,23, 0xa2e4b80,23, 0xa2e4c00,23, 0xa2e4c80,23, 0xa2e4d00,23, 0xa2e4d80,23, 0xa2e4e00,23, 0xa2e4e80,23, 0xa2e4f00,23, 0xa2e4f80,23, 0xa2e5000,23, 0xa2e5080,23, 0xa2e5100,23, 0xa2e5180,23, 0xa2e5200,23, 0xa2e5280,23, 0xa2e5300,23, 0xa2e5380,23, 0xa2e5400,23, 0xa2e5480,23, 0xa2e5500,23, 0xa2e5580,23, 0xa2e5600,23, 0xa2e5680,23, 0xa2e5700,23, 0xa2e5780,23, 0xa2e5800,23, 0xa2e5880,23, 0xa2e5900,23, 0xa2e5980,23, 0xa2e5a00,23, 0xa2e5a80,23, 0xa2e5b00,23, 0xa2e5b80,23, 0xa2e5c00,23, 0xa2e5c80,23, 0xa2e5d00,23, 0xa2e5d80,23, 0xa2e5e00,23, 0xa2e5e80,23, 0xa2e5f00,23, 0xa2e5f80,23, 0xa2e6000,23, 0xa2e6080,23, 0xa2e6100,23, 0xa2e6180,23, 0xa2e6200,23, 0xa2e6280,23, 0xa2e6300,23, 0xa2e6380,23, 0xa2e6400,23, 0xa2e6480,23, 0xa2e6500,23, 0xa2e6580,23, 0xa2e6600,23, 0xa2e6680,23, 0xa2e6700,23, 0xa2e6780,23, 0xa2e6800,23, 0xa2e6880,23, 0xa2e6900,23, 0xa2e6980,23, 0xa2e6a00,23, 0xa2e6a80,23, 0xa2e6b00,23, 0xa2e6b80,23, 0xa2e6c00,23, 0xa2e6c80,23, 0xa2e6d00,23, 0xa2e6d80,23, 0xa2e6e00,23, 0xa2e6e80,23, 0xa2e6f00,23, 0xa2e6f80,23, 0xa2e7000,23, 0xa2e7080,23, 0xa2e7100,23, 0xa2e7180,23, 0xa2e7200,23, 0xa2e7280,23, 0xa2e7300,23, 0xa2e7380,23, 0xa2e7400,23, 0xa2e7480,23, 0xa2e7500,23, 0xa2e7580,23, 0xa2e7600,23, 0xa2e7680,23, 0xa2e7700,23, 0xa2e7780,23, 0xa2e7800,23, 0xa2e7880,23, 0xa2e7900,23, 0xa2e7980,23, 0xa2e7a00,23, 0xa2e7a80,23, 0xa2e7b00,23, 0xa2e7b80,23, 0xa2e7c00,23, 0xa2e7c80,23, 0xa2e7d00,23, 0xa2e7d80,23, 0xa2e7e00,23, 0xa2e7e80,23, 0xa2e7f00,23, 0xa2e7f80,23, 0xa2e8000,23, 0xa2e8080,23, 0xa2e8100,23, 0xa2e8180,23, 0xa2e8200,23, 0xa2e8280,23, 0xa2e8300,23, 0xa2e8380,23, 0xa2e8400,23, 0xa2e8480,23, 0xa2e8500,23, 0xa2e8580,23, 0xa2e8600,23, 0xa2e8680,23, 0xa2e8700,23, 0xa2e8780,23, 0xa2e8800,23, 0xa2e8880,23, 0xa2e8900,23, 0xa2e8980,23, 0xa2e8a00,23, 0xa2e8a80,23, 0xa2e8b00,23, 0xa2e8b80,23, 0xa2e8c00,23, 0xa2e8c80,23, 0xa2e8d00,23, 0xa2e8d80,23, 0xa2e8e00,23, 0xa2e8e80,23, 0xa2e8f00,23, 0xa2e8f80,23, 0xa2e9000,23, 0xa2e9080,23, 0xa2e9100,23, 0xa2e9180,23, 0xa2e9200,23, 0xa2e9280,23, 0xa2e9300,23, 0xa2e9380,23, 0xa2e9400,23, 0xa2e9480,23, 0xa2e9500,23, 0xa2e9580,23, 0xa2e9600,23, 0xa2e9680,23, 0xa2e9700,23, 0xa2e9780,23, 0xa2e9800,23, 0xa2e9880,23, 0xa2e9900,23, 0xa2e9980,23, 0xa2e9a00,23, 0xa2e9a80,23, 0xa2e9b00,23, 0xa2e9b80,23, 0xa2e9c00,23, 0xa2e9c80,23, 0xa2e9d00,23, 0xa2e9d80,23, 0xa2e9e00,23, 0xa2e9e80,23, 0xa2e9f00,23, 0xa2e9f80,23, 0xa2ea000,23, 0xa2ea080,23, 0xa2ea100,23, 0xa2ea180,23, 0xa2ea200,23, 0xa2ea280,23, 0xa2ea300,23, 0xa2ea380,23, 0xa2ea400,23, 0xa2ea480,23, 0xa2ea500,23, 0xa2ea580,23, 0xa2ea600,23, 0xa2ea680,23, 0xa2ea700,23, 0xa2ea780,23, 0xa2ea800,23, 0xa2ea880,23, 0xa2ea900,23, 0xa2ea980,23, 0xa2eaa00,23, 0xa2eaa80,23, 0xa2eab00,23, 0xa2eab80,23, 0xa2eac00,23, 0xa2eac80,23, 0xa2ead00,23, 0xa2ead80,23, 0xa2eae00,23, 0xa2eae80,23, 0xa2eaf00,23, 0xa2eaf80,23, 0xa2eb000,23, 0xa2eb080,23, 0xa2eb100,23, 0xa2eb180,23, 0xa2eb200,23, 0xa2eb280,23, 0xa2eb300,23, 0xa2eb380,23, 0xa2eb400,23, 0xa2eb480,23, 0xa2eb500,23, 0xa2eb580,23, 0xa2eb600,23, 0xa2eb680,23, 0xa2eb700,23, 0xa2eb780,23, 0xa2eb800,23, 0xa2eb880,23, 0xa2eb900,23, 0xa2eb980,23, 0xa2eba00,23, 0xa2eba80,23, 0xa2ebb00,23, 0xa2ebb80,23, 0xa2ebc00,23, 0xa2ebc80,23, 0xa2ebd00,23, 0xa2ebd80,23, 0xa2ebe00,23, 0xa2ebe80,23, 0xa2ebf00,23, 0xa2ebf80,23, 0xa2ec000,23, 0xa2ec080,23, 0xa2ec100,23, 0xa2ec180,23, 0xa2ec200,23, 0xa2ec280,23, 0xa2ec300,23, 0xa2ec380,23, 0xa2ec400,23, 0xa2ec480,23, 0xa2ec500,23, 0xa2ec580,23, 0xa2ec600,23, 0xa2ec680,23, 0xa2ec700,23, 0xa2ec780,23, 0xa2ec800,23, 0xa2ec880,23, 0xa2ec900,23, 0xa2ec980,23, 0xa2eca00,23, 0xa2eca80,23, 0xa2ecb00,23, 0xa2ecb80,23, 0xa2ecc00,23, 0xa2ecc80,23, 0xa2ecd00,23, 0xa2ecd80,23, 0xa2ece00,23, 0xa2ece80,23, 0xa2ecf00,23, 0xa2ecf80,23, 0xa2ed000,23, 0xa2ed080,23, 0xa2ed100,23, 0xa2ed180,23, 0xa2ed200,23, 0xa2ed280,23, 0xa2ed300,23, 0xa2ed380,23, 0xa2ed400,23, 0xa2ed480,23, 0xa2ed500,23, 0xa2ed580,23, 0xa2ed600,23, 0xa2ed680,23, 0xa2ed700,23, 0xa2ed780,23, 0xa2ed800,23, 0xa2ed880,23, 0xa2ed900,23, 0xa2ed980,23, 0xa2eda00,23, 0xa2eda80,23, 0xa2edb00,23, 0xa2edb80,23, 0xa2edc00,23, 0xa2edc80,23, 0xa2edd00,23, 0xa2edd80,23, 0xa2ede00,23, 0xa2ede80,23, 0xa2edf00,23, 0xa2edf80,23, 0xa2ee000,23, 0xa2ee080,23, 0xa2ee100,23, 0xa2ee180,23, 0xa2ee200,23, 0xa2ee280,23, 0xa2ee300,23, 0xa2ee380,23, 0xa2ee400,23, 0xa2ee480,23, 0xa2ee500,23, 0xa2ee580,23, 0xa2ee600,23, 0xa2ee680,23, 0xa2ee700,23, 0xa2ee780,23, 0xa2ee800,23, 0xa2ee880,23, 0xa2ee900,23, 0xa2ee980,23, 0xa2eea00,23, 0xa2eea80,23, 0xa2eeb00,23, 0xa2eeb80,23, 0xa2eec00,23, 0xa2eec80,23, 0xa2eed00,23, 0xa2eed80,23, 0xa2eee00,23, 0xa2eee80,23, 0xa2eef00,23, 0xa2eef80,23, 0xa2ef000,23, 0xa2ef080,23, 0xa2ef100,23, 0xa2ef180,23, 0xa2ef200,23, 0xa2ef280,23, 0xa2ef300,23, 0xa2ef380,23, 0xa2ef400,23, 0xa2ef480,23, 0xa2ef500,23, 0xa2ef580,23, 0xa2ef600,23, 0xa2ef680,23, 0xa2ef700,23, 0xa2ef780,23, 0xa2ef800,23, 0xa2ef880,23, 0xa2ef900,23, 0xa2ef980,23, 0xa2efa00,23, 0xa2efa80,23, 0xa2efb00,23, 0xa2efb80,23, 0xa2efc00,23, 0xa2efc80,23, 0xa2efd00,23, 0xa2efd80,23, 0xa2efe00,23, 0xa2efe80,23, 0xa2eff00,23, 0xa2eff80,23, 0xa2f0000,23, 0xa2f0080,23, 0xa2f0100,23, 0xa2f0180,23, 0xa2f0200,23, 0xa2f0280,23, 0xa2f0300,23, 0xa2f0380,23, 0xa2f0400,23, 0xa2f0480,23, 0xa2f0500,23, 0xa2f0580,23, 0xa2f0600,23, 0xa2f0680,23, 0xa2f0700,23, 0xa2f0780,23, 0xa2f0800,23, 0xa2f0880,23, 0xa2f0900,23, 0xa2f0980,23, 0xa2f0a00,23, 0xa2f0a80,23, 0xa2f0b00,23, 0xa2f0b80,23, 0xa2f0c00,23, 0xa2f0c80,23, 0xa2f0d00,23, 0xa2f0d80,23, 0xa2f0e00,23, 0xa2f0e80,23, 0xa2f0f00,23, 0xa2f0f80,23, 0xa2f1000,23, 0xa2f1080,23, 0xa2f1100,23, 0xa2f1180,23, 0xa2f1200,23, 0xa2f1280,23, 0xa2f1300,23, 0xa2f1380,23, 0xa2f1400,23, 0xa2f1480,23, 0xa2f1500,23, 0xa2f1580,23, 0xa2f1600,23, 0xa2f1680,23, 0xa2f1700,23, 0xa2f1780,23, 0xa2f1800,23, 0xa2f1880,23, 0xa2f1900,23, 0xa2f1980,23, 0xa2f1a00,23, 0xa2f1a80,23, 0xa2f1b00,23, 0xa2f1b80,23, 0xa2f1c00,23, 0xa2f1c80,23, 0xa2f1d00,23, 0xa2f1d80,23, 0xa2f1e00,23, 0xa2f1e80,23, 0xa2f1f00,23, 0xa2f1f80,23, 0xa2f2000,23, 0xa2f2080,23, 0xa2f2100,23, 0xa2f2180,23, 0xa2f2200,23, 0xa2f2280,23, 0xa2f2300,23, 0xa2f2380,23, 0xa2f2400,23, 0xa2f2480,23, 0xa2f2500,23, 0xa2f2580,23, 0xa2f2600,23, 0xa2f2680,23, 0xa2f2700,23, 0xa2f2780,23, 0xa2f2800,23, 0xa2f2880,23, 0xa2f2900,23, 0xa2f2980,23, 0xa2f2a00,23, 0xa2f2a80,23, 0xa2f2b00,23, 0xa2f2b80,23, 0xa2f2c00,23, 0xa2f2c80,23, 0xa2f2d00,23, 0xa2f2d80,23, 0xa2f2e00,23, 0xa2f2e80,23, 0xa2f2f00,23, 0xa2f2f80,23, 0xa2f3000,23, 0xa2f3080,23, 0xa2f3100,23, 0xa2f3180,23, 0xa2f3200,23, 0xa2f3280,23, 0xa2f3300,23, 0xa2f3380,23, 0xa2f3400,23, 0xa2f3480,23, 0xa2f3500,23, 0xa2f3580,23, 0xa2f3600,23, 0xa2f3680,23, 0xa2f3700,23, 0xa2f3780,23, 0xa2f3800,23, 0xa2f3880,23, 0xa2f3900,23, 0xa2f3980,23, 0xa2f3a00,23, 0xa2f3a80,23, 0xa2f3b00,23, 0xa2f3b80,23, 0xa300000,23, 0xa300080,23, 0xa300100,23, 0xa300180,23, 0xa300200,23, 0xa300280,23, 0xa300300,23, 0xa300380,23, 0xa300400,23, 0xa300480,23, 0xa300500,23, 0xa300580,23, 0xa300600,23, 0xa300680,23, 0xa300700,23, 0xa300780,23, 0xa300800,23, 0xa300880,23, 0xa300900,23, 0xa300980,23, 0xa300a00,23, 0xa300a80,23, 0xa300b00,23, 0xa300b80,23, 0xa300c00,23, 0xa300c80,23, 0xa300d00,23, 0xa300d80,23, 0xa300e00,23, 0xa300e80,23, 0xa300f00,23, 0xa300f80,23, 0xa301000,23, 0xa301080,23, 0xa301100,23, 0xa301180,23, 0xa301200,23, 0xa301280,23, 0xa301300,23, 0xa301380,23, 0xa301400,23, 0xa301480,23, 0xa301500,23, 0xa301580,23, 0xa301600,23, 0xa301680,23, 0xa301700,23, 0xa301780,23, 0xa301800,23, 0xa301880,23, 0xa301900,23, 0xa301980,23, 0xa301a00,23, 0xa301a80,23, 0xa301b00,23, 0xa301b80,23, 0xa301c00,23, 0xa301c80,23, 0xa301d00,23, 0xa301d80,23, 0xa301e00,23, 0xa301e80,23, 0xa301f00,23, 0xa301f80,23, 0xa302000,23, 0xa302080,23, 0xa302100,23, 0xa302180,23, 0xa302200,23, 0xa302280,23, 0xa302300,23, 0xa302380,23, 0xa302400,23, 0xa302480,23, 0xa302500,23, 0xa302580,23, 0xa302600,23, 0xa302680,23, 0xa302700,23, 0xa302780,23, 0xa302800,23, 0xa302880,23, 0xa302900,23, 0xa302980,23, 0xa302a00,23, 0xa302a80,23, 0xa302b00,23, 0xa302b80,23, 0xa302c00,23, 0xa302c80,23, 0xa302d00,23, 0xa302d80,23, 0xa302e00,23, 0xa302e80,23, 0xa302f00,23, 0xa302f80,23, 0xa303000,23, 0xa303080,23, 0xa303100,23, 0xa303180,23, 0xa303200,23, 0xa303280,23, 0xa303300,23, 0xa303380,23, 0xa303400,23, 0xa303480,23, 0xa303500,23, 0xa303580,23, 0xa303600,23, 0xa303680,23, 0xa303700,23, 0xa303780,23, 0xa303800,23, 0xa303880,23, 0xa303900,23, 0xa303980,23, 0xa303a00,23, 0xa303a80,23, 0xa303b00,23, 0xa303b80,23, 0xa303c00,23, 0xa303c80,23, 0xa303d00,23, 0xa303d80,23, 0xa303e00,23, 0xa303e80,23, 0xa303f00,23, 0xa303f80,23, 0xa304000,23, 0xa304080,23, 0xa304100,23, 0xa304180,23, 0xa304200,23, 0xa304280,23, 0xa304300,23, 0xa304380,23, 0xa304400,23, 0xa304480,23, 0xa304500,23, 0xa304580,23, 0xa304600,23, 0xa304680,23, 0xa304700,23, 0xa304780,23, 0xa304800,23, 0xa304880,23, 0xa304900,23, 0xa304980,23, 0xa304a00,23, 0xa304a80,23, 0xa304b00,23, 0xa304b80,23, 0xa304c00,23, 0xa304c80,23, 0xa304d00,23, 0xa304d80,23, 0xa304e00,23, 0xa304e80,23, 0xa304f00,23, 0xa304f80,23, 0xa305000,23, 0xa305080,23, 0xa305100,23, 0xa305180,23, 0xa305200,23, 0xa305280,23, 0xa305300,23, 0xa305380,23, 0xa305400,23, 0xa305480,23, 0xa305500,23, 0xa305580,23, 0xa305600,23, 0xa305680,23, 0xa305700,23, 0xa305780,23, 0xa305800,23, 0xa305880,23, 0xa305900,23, 0xa305980,23, 0xa305a00,23, 0xa305a80,23, 0xa305b00,23, 0xa305b80,23, 0xa305c00,23, 0xa305c80,23, 0xa305d00,23, 0xa305d80,23, 0xa305e00,23, 0xa305e80,23, 0xa305f00,23, 0xa305f80,23, 0xa306000,23, 0xa306080,23, 0xa306100,23, 0xa306180,23, 0xa306200,23, 0xa306280,23, 0xa306300,23, 0xa306380,23, 0xa306400,23, 0xa306480,23, 0xa306500,23, 0xa306580,23, 0xa306600,23, 0xa306680,23, 0xa306700,23, 0xa306780,23, 0xa306800,23, 0xa306880,23, 0xa306900,23, 0xa306980,23, 0xa306a00,23, 0xa306a80,23, 0xa306b00,23, 0xa306b80,23, 0xa306c00,23, 0xa306c80,23, 0xa306d00,23, 0xa306d80,23, 0xa306e00,23, 0xa306e80,23, 0xa306f00,23, 0xa306f80,23, 0xa307000,23, 0xa307080,23, 0xa307100,23, 0xa307180,23, 0xa307200,23, 0xa307280,23, 0xa307300,23, 0xa307380,23, 0xa307400,23, 0xa307480,23, 0xa307500,23, 0xa307580,23, 0xa307600,23, 0xa307680,23, 0xa307700,23, 0xa307780,23, 0xa307800,23, 0xa307880,23, 0xa307900,23, 0xa307980,23, 0xa307a00,23, 0xa307a80,23, 0xa307b00,23, 0xa307b80,23, 0xa307c00,23, 0xa307c80,23, 0xa307d00,23, 0xa307d80,23, 0xa307e00,23, 0xa307e80,23, 0xa307f00,23, 0xa307f80,23, 0xa308000,23, 0xa308080,23, 0xa308100,23, 0xa308180,23, 0xa308200,23, 0xa308280,23, 0xa308300,23, 0xa308380,23, 0xa308400,23, 0xa308480,23, 0xa308500,23, 0xa308580,23, 0xa308600,23, 0xa308680,23, 0xa308700,23, 0xa308780,23, 0xa308800,23, 0xa308880,23, 0xa308900,23, 0xa308980,23, 0xa308a00,23, 0xa308a80,23, 0xa308b00,23, 0xa308b80,23, 0xa308c00,23, 0xa308c80,23, 0xa308d00,23, 0xa308d80,23, 0xa308e00,23, 0xa308e80,23, 0xa308f00,23, 0xa308f80,23, 0xa309000,23, 0xa309080,23, 0xa309100,23, 0xa309180,23, 0xa309200,23, 0xa309280,23, 0xa309300,23, 0xa309380,23, 0xa309400,23, 0xa309480,23, 0xa309500,23, 0xa309580,23, 0xa309600,23, 0xa309680,23, 0xa309700,23, 0xa309780,23, 0xa309800,23, 0xa309880,23, 0xa309900,23, 0xa309980,23, 0xa309a00,23, 0xa309a80,23, 0xa309b00,23, 0xa309b80,23, 0xa309c00,23, 0xa309c80,23, 0xa309d00,23, 0xa309d80,23, 0xa309e00,23, 0xa309e80,23, 0xa309f00,23, 0xa309f80,23, 0xa30a000,23, 0xa30a080,23, 0xa30a100,23, 0xa30a180,23, 0xa30a200,23, 0xa30a280,23, 0xa30a300,23, 0xa30a380,23, 0xa30a400,23, 0xa30a480,23, 0xa30a500,23, 0xa30a580,23, 0xa30a600,23, 0xa30a680,23, 0xa30a700,23, 0xa30a780,23, 0xa30a800,23, 0xa30a880,23, 0xa30a900,23, 0xa30a980,23, 0xa30aa00,23, 0xa30aa80,23, 0xa30ab00,23, 0xa30ab80,23, 0xa30ac00,23, 0xa30ac80,23, 0xa30ad00,23, 0xa30ad80,23, 0xa30ae00,23, 0xa30ae80,23, 0xa30af00,23, 0xa30af80,23, 0xa30b000,23, 0xa30b080,23, 0xa30b100,23, 0xa30b180,23, 0xa30b200,23, 0xa30b280,23, 0xa30b300,23, 0xa30b380,23, 0xa30b400,23, 0xa30b480,23, 0xa30b500,23, 0xa30b580,23, 0xa30b600,23, 0xa30b680,23, 0xa30b700,23, 0xa30b780,23, 0xa30b800,23, 0xa30b880,23, 0xa30b900,23, 0xa30b980,23, 0xa30ba00,23, 0xa30ba80,23, 0xa30bb00,23, 0xa30bb80,23, 0xa30bc00,23, 0xa30bc80,23, 0xa30bd00,23, 0xa30bd80,23, 0xa30be00,23, 0xa30be80,23, 0xa30bf00,23, 0xa30bf80,23, 0xa30c000,23, 0xa30c080,23, 0xa30c100,23, 0xa30c180,23, 0xa30c200,23, 0xa30c280,23, 0xa30c300,23, 0xa30c380,23, 0xa30c400,23, 0xa30c480,23, 0xa30c500,23, 0xa30c580,23, 0xa30c600,23, 0xa30c680,23, 0xa30c700,23, 0xa30c780,23, 0xa30c800,23, 0xa30c880,23, 0xa30c900,23, 0xa30c980,23, 0xa30ca00,23, 0xa30ca80,23, 0xa30cb00,23, 0xa30cb80,23, 0xa30cc00,23, 0xa30cc80,23, 0xa30cd00,23, 0xa30cd80,23, 0xa30ce00,23, 0xa30ce80,23, 0xa30cf00,23, 0xa30cf80,23, 0xa30d000,23, 0xa30d080,23, 0xa30d100,23, 0xa30d180,23, 0xa30d200,23, 0xa30d280,23, 0xa30d300,23, 0xa30d380,23, 0xa30d400,23, 0xa30d480,23, 0xa30d500,23, 0xa30d580,23, 0xa30d600,23, 0xa30d680,23, 0xa30d700,23, 0xa30d780,23, 0xa30d800,23, 0xa30d880,23, 0xa30d900,23, 0xa30d980,23, 0xa30da00,23, 0xa30da80,23, 0xa30db00,23, 0xa30db80,23, 0xa30dc00,23, 0xa30dc80,23, 0xa30dd00,23, 0xa30dd80,23, 0xa30de00,23, 0xa30de80,23, 0xa30df00,23, 0xa30df80,23, 0xa30e000,23, 0xa30e080,23, 0xa30e100,23, 0xa30e180,23, 0xa30e200,23, 0xa30e280,23, 0xa30e300,23, 0xa30e380,23, 0xa30e400,23, 0xa30e480,23, 0xa30e500,23, 0xa30e580,23, 0xa30e600,23, 0xa30e680,23, 0xa30e700,23, 0xa30e780,23, 0xa30e800,23, 0xa30e880,23, 0xa30e900,23, 0xa30e980,23, 0xa30ea00,23, 0xa30ea80,23, 0xa30eb00,23, 0xa30eb80,23, 0xa30ec00,23, 0xa30ec80,23, 0xa30ed00,23, 0xa30ed80,23, 0xa30ee00,23, 0xa30ee80,23, 0xa30ef00,23, 0xa30ef80,23, 0xa30f000,23, 0xa30f080,23, 0xa30f100,23, 0xa30f180,23, 0xa30f200,23, 0xa30f280,23, 0xa30f300,23, 0xa30f380,23, 0xa30f400,23, 0xa30f480,23, 0xa30f500,23, 0xa30f580,23, 0xa30f600,23, 0xa30f680,23, 0xa30f700,23, 0xa30f780,23, 0xa30f800,23, 0xa30f880,23, 0xa30f900,23, 0xa30f980,23, 0xa30fa00,23, 0xa30fa80,23, 0xa30fb00,23, 0xa30fb80,23, 0xa30fc00,23, 0xa30fc80,23, 0xa30fd00,23, 0xa30fd80,23, 0xa30fe00,23, 0xa30fe80,23, 0xa30ff00,23, 0xa30ff80,23, 0xa310000,23, 0xa310080,23, 0xa310100,23, 0xa310180,23, 0xa310200,23, 0xa310280,23, 0xa310300,23, 0xa310380,23, 0xa310400,23, 0xa310480,23, 0xa310500,23, 0xa310580,23, 0xa310600,23, 0xa310680,23, 0xa310700,23, 0xa310780,23, 0xa310800,23, 0xa310880,23, 0xa310900,23, 0xa310980,23, 0xa310a00,23, 0xa310a80,23, 0xa310b00,23, 0xa310b80,23, 0xa310c00,23, 0xa310c80,23, 0xa310d00,23, 0xa310d80,23, 0xa310e00,23, 0xa310e80,23, 0xa310f00,23, 0xa310f80,23, 0xa311000,23, 0xa311080,23, 0xa311100,23, 0xa311180,23, 0xa311200,23, 0xa311280,23, 0xa311300,23, 0xa311380,23, 0xa311400,23, 0xa311480,23, 0xa311500,23, 0xa311580,23, 0xa311600,23, 0xa311680,23, 0xa311700,23, 0xa311780,23, 0xa311800,23, 0xa311880,23, 0xa311900,23, 0xa311980,23, 0xa311a00,23, 0xa311a80,23, 0xa311b00,23, 0xa311b80,23, 0xa311c00,23, 0xa311c80,23, 0xa311d00,23, 0xa311d80,23, 0xa311e00,23, 0xa311e80,23, 0xa311f00,23, 0xa311f80,23, 0xa312000,23, 0xa312080,23, 0xa312100,23, 0xa312180,23, 0xa312200,23, 0xa312280,23, 0xa312300,23, 0xa312380,23, 0xa312400,23, 0xa312480,23, 0xa312500,23, 0xa312580,23, 0xa312600,23, 0xa312680,23, 0xa312700,23, 0xa312780,23, 0xa312800,23, 0xa312880,23, 0xa312900,23, 0xa312980,23, 0xa312a00,23, 0xa312a80,23, 0xa312b00,23, 0xa312b80,23, 0xa312c00,23, 0xa312c80,23, 0xa312d00,23, 0xa312d80,23, 0xa312e00,23, 0xa312e80,23, 0xa312f00,23, 0xa312f80,23, 0xa313000,23, 0xa313080,23, 0xa313100,23, 0xa313180,23, 0xa313200,23, 0xa313280,23, 0xa313300,23, 0xa313380,23, 0xa313400,23, 0xa313480,23, 0xa313500,23, 0xa313580,23, 0xa313600,23, 0xa313680,23, 0xa313700,23, 0xa313780,23, 0xa313800,23, 0xa313880,23, 0xa313900,23, 0xa313980,23, 0xa313a00,23, 0xa313a80,23, 0xa313b00,23, 0xa313b80,23, 0xa313c00,23, 0xa313c80,23, 0xa313d00,23, 0xa313d80,23, 0xa313e00,23, 0xa313e80,23, 0xa313f00,23, 0xa313f80,23, 0xa314000,23, 0xa314080,23, 0xa314100,23, 0xa314180,23, 0xa314200,23, 0xa314280,23, 0xa314300,23, 0xa314380,23, 0xa314400,23, 0xa314480,23, 0xa314500,23, 0xa314580,23, 0xa314600,23, 0xa314680,23, 0xa314700,23, 0xa314780,23, 0xa314800,23, 0xa314880,23, 0xa314900,23, 0xa314980,23, 0xa314a00,23, 0xa314a80,23, 0xa314b00,23, 0xa314b80,23, 0xa314c00,23, 0xa314c80,23, 0xa314d00,23, 0xa314d80,23, 0xa314e00,23, 0xa314e80,23, 0xa314f00,23, 0xa314f80,23, 0xa315000,23, 0xa315080,23, 0xa315100,23, 0xa315180,23, 0xa315200,23, 0xa315280,23, 0xa315300,23, 0xa315380,23, 0xa315400,23, 0xa315480,23, 0xa315500,23, 0xa315580,23, 0xa315600,23, 0xa315680,23, 0xa315700,23, 0xa315780,23, 0xa315800,23, 0xa315880,23, 0xa315900,23, 0xa315980,23, 0xa315a00,23, 0xa315a80,23, 0xa315b00,23, 0xa315b80,23, 0xa315c00,23, 0xa315c80,23, 0xa315d00,23, 0xa315d80,23, 0xa315e00,23, 0xa315e80,23, 0xa315f00,23, 0xa315f80,23, 0xa316000,23, 0xa316080,23, 0xa316100,23, 0xa316180,23, 0xa316200,23, 0xa316280,23, 0xa316300,23, 0xa316380,23, 0xa316400,23, 0xa316480,23, 0xa316500,23, 0xa316580,23, 0xa316600,23, 0xa316680,23, 0xa316700,23, 0xa316780,23, 0xa316800,23, 0xa316880,23, 0xa316900,23, 0xa316980,23, 0xa316a00,23, 0xa316a80,23, 0xa316b00,23, 0xa316b80,23, 0xa316c00,23, 0xa316c80,23, 0xa316d00,23, 0xa316d80,23, 0xa316e00,23, 0xa316e80,23, 0xa316f00,23, 0xa316f80,23, 0xa317000,23, 0xa317080,23, 0xa317100,23, 0xa317180,23, 0xa317200,23, 0xa317280,23, 0xa317300,23, 0xa317380,23, 0xa317400,23, 0xa317480,23, 0xa317500,23, 0xa317580,23, 0xa317600,23, 0xa317680,23, 0xa317700,23, 0xa317780,23, 0xa317800,23, 0xa317880,23, 0xa317900,23, 0xa317980,23, 0xa317a00,23, 0xa317a80,23, 0xa317b00,23, 0xa317b80,23, 0xa317c00,23, 0xa317c80,23, 0xa317d00,23, 0xa317d80,23, 0xa317e00,23, 0xa317e80,23, 0xa317f00,23, 0xa317f80,23, 0xa318000,23, 0xa318080,23, 0xa318100,23, 0xa318180,23, 0xa318200,23, 0xa318280,23, 0xa318300,23, 0xa318380,23, 0xa318400,23, 0xa318480,23, 0xa318500,23, 0xa318580,23, 0xa318600,23, 0xa318680,23, 0xa318700,23, 0xa318780,23, 0xa318800,23, 0xa318880,23, 0xa318900,23, 0xa318980,23, 0xa318a00,23, 0xa318a80,23, 0xa318b00,23, 0xa318b80,23, 0xa318c00,23, 0xa318c80,23, 0xa318d00,23, 0xa318d80,23, 0xa318e00,23, 0xa318e80,23, 0xa318f00,23, 0xa318f80,23, 0xa319000,23, 0xa319080,23, 0xa319100,23, 0xa319180,23, 0xa319200,23, 0xa319280,23, 0xa319300,23, 0xa319380,23, 0xa319400,23, 0xa319480,23, 0xa319500,23, 0xa319580,23, 0xa319600,23, 0xa319680,23, 0xa319700,23, 0xa319780,23, 0xa319800,23, 0xa319880,23, 0xa319900,23, 0xa319980,23, 0xa319a00,23, 0xa319a80,23, 0xa319b00,23, 0xa319b80,23, 0xa319c00,23, 0xa319c80,23, 0xa319d00,23, 0xa319d80,23, 0xa319e00,23, 0xa319e80,23, 0xa319f00,23, 0xa319f80,23, 0xa31a000,23, 0xa31a080,23, 0xa31a100,23, 0xa31a180,23, 0xa31a200,23, 0xa31a280,23, 0xa31a300,23, 0xa31a380,23, 0xa31a400,23, 0xa31a480,23, 0xa31a500,23, 0xa31a580,23, 0xa31a600,23, 0xa31a680,23, 0xa31a700,23, 0xa31a780,23, 0xa31a800,23, 0xa31a880,23, 0xa31a900,23, 0xa31a980,23, 0xa31aa00,23, 0xa31aa80,23, 0xa31ab00,23, 0xa31ab80,23, 0xa31ac00,23, 0xa31ac80,23, 0xa31ad00,23, 0xa31ad80,23, 0xa31ae00,23, 0xa31ae80,23, 0xa31af00,23, 0xa31af80,23, 0xa31b000,23, 0xa31b080,23, 0xa31b100,23, 0xa31b180,23, 0xa31b200,23, 0xa31b280,23, 0xa31b300,23, 0xa31b380,23, 0xa31b400,23, 0xa31b480,23, 0xa31b500,23, 0xa31b580,23, 0xa31b600,23, 0xa31b680,23, 0xa31b700,23, 0xa31b780,23, 0xa31b800,23, 0xa31b880,23, 0xa31b900,23, 0xa31b980,23, 0xa31ba00,23, 0xa31ba80,23, 0xa31bb00,23, 0xa31bb80,23, 0xa31bc00,23, 0xa31bc80,23, 0xa31bd00,23, 0xa31bd80,23, 0xa31be00,23, 0xa31be80,23, 0xa31bf00,23, 0xa31bf80,23, 0xa31c000,23, 0xa31c080,23, 0xa31c100,23, 0xa31c180,23, 0xa31c200,23, 0xa31c280,23, 0xa31c300,23, 0xa31c380,23, 0xa31c400,23, 0xa31c480,23, 0xa31c500,23, 0xa31c580,23, 0xa31c600,23, 0xa31c680,23, 0xa31c700,23, 0xa31c780,23, 0xa31c800,23, 0xa31c880,23, 0xa31c900,23, 0xa31c980,23, 0xa31ca00,23, 0xa31ca80,23, 0xa31cb00,23, 0xa31cb80,23, 0xa31cc00,23, 0xa31cc80,23, 0xa31cd00,23, 0xa31cd80,23, 0xa31ce00,23, 0xa31ce80,23, 0xa31cf00,23, 0xa31cf80,23, 0xa31d000,23, 0xa31d080,23, 0xa31d100,23, 0xa31d180,23, 0xa31d200,23, 0xa31d280,23, 0xa31d300,23, 0xa31d380,23, 0xa31d400,23, 0xa31d480,23, 0xa31d500,23, 0xa31d580,23, 0xa31d600,23, 0xa31d680,23, 0xa31d700,23, 0xa31d780,23, 0xa31d800,23, 0xa31d880,23, 0xa31d900,23, 0xa31d980,23, 0xa31da00,23, 0xa31da80,23, 0xa31db00,23, 0xa31db80,23, 0xa31dc00,23, 0xa31dc80,23, 0xa31dd00,23, 0xa31dd80,23, 0xa31de00,23, 0xa31de80,23, 0xa31df00,23, 0xa31df80,23, 0xa31e000,23, 0xa31e080,23, 0xa31e100,23, 0xa31e180,23, 0xa31e200,23, 0xa31e280,23, 0xa31e300,23, 0xa31e380,23, 0xa31e400,23, 0xa31e480,23, 0xa31e500,23, 0xa31e580,23, 0xa31e600,23, 0xa31e680,23, 0xa31e700,23, 0xa31e780,23, 0xa31e800,23, 0xa31e880,23, 0xa31e900,23, 0xa31e980,23, 0xa31ea00,23, 0xa31ea80,23, 0xa31eb00,23, 0xa31eb80,23, 0xa31ec00,23, 0xa31ec80,23, 0xa31ed00,23, 0xa31ed80,23, 0xa31ee00,23, 0xa31ee80,23, 0xa31ef00,23, 0xa31ef80,23, 0xa31f000,23, 0xa31f080,23, 0xa31f100,23, 0xa31f180,23, 0xa31f200,23, 0xa31f280,23, 0xa31f300,23, 0xa31f380,23, 0xa31f400,23, 0xa31f480,23, 0xa31f500,23, 0xa31f580,23, 0xa31f600,23, 0xa31f680,23, 0xa31f700,23, 0xa31f780,23, 0xa31f800,23, 0xa31f880,23, 0xa31f900,23, 0xa31f980,23, 0xa31fa00,23, 0xa31fa80,23, 0xa31fb00,23, 0xa31fb80,23, 0xa31fc00,23, 0xa31fc80,23, 0xa31fd00,23, 0xa31fd80,23, 0xa31fe00,23, 0xa31fe80,23, 0xa31ff00,23, 0xa31ff80,23, 0xa320000,23, 0xa320080,23, 0xa320100,23, 0xa320180,23, 0xa320200,23, 0xa320280,23, 0xa320300,23, 0xa320380,23, 0xa320400,23, 0xa320480,23, 0xa320500,23, 0xa320580,23, 0xa320600,23, 0xa320680,23, 0xa320700,23, 0xa320780,23, 0xa320800,23, 0xa320880,23, 0xa320900,23, 0xa320980,23, 0xa320a00,23, 0xa320a80,23, 0xa320b00,23, 0xa320b80,23, 0xa320c00,23, 0xa320c80,23, 0xa320d00,23, 0xa320d80,23, 0xa320e00,23, 0xa320e80,23, 0xa320f00,23, 0xa320f80,23, 0xa321000,23, 0xa321080,23, 0xa321100,23, 0xa321180,23, 0xa321200,23, 0xa321280,23, 0xa321300,23, 0xa321380,23, 0xa321400,23, 0xa321480,23, 0xa321500,23, 0xa321580,23, 0xa321600,23, 0xa321680,23, 0xa321700,23, 0xa321780,23, 0xa321800,23, 0xa321880,23, 0xa321900,23, 0xa321980,23, 0xa321a00,23, 0xa321a80,23, 0xa321b00,23, 0xa321b80,23, 0xa321c00,23, 0xa321c80,23, 0xa321d00,23, 0xa321d80,23, 0xa321e00,23, 0xa321e80,23, 0xa321f00,23, 0xa321f80,23, 0xa322000,23, 0xa322080,23, 0xa322100,23, 0xa322180,23, 0xa322200,23, 0xa322280,23, 0xa322300,23, 0xa322380,23, 0xa322400,23, 0xa322480,23, 0xa322500,23, 0xa322580,23, 0xa322600,23, 0xa322680,23, 0xa322700,23, 0xa322780,23, 0xa322800,23, 0xa322880,23, 0xa322900,23, 0xa322980,23, 0xa322a00,23, 0xa322a80,23, 0xa322b00,23, 0xa322b80,23, 0xa322c00,23, 0xa322c80,23, 0xa322d00,23, 0xa322d80,23, 0xa322e00,23, 0xa322e80,23, 0xa322f00,23, 0xa322f80,23, 0xa323000,23, 0xa323080,23, 0xa323100,23, 0xa323180,23, 0xa323200,23, 0xa323280,23, 0xa323300,23, 0xa323380,23, 0xa323400,23, 0xa323480,23, 0xa323500,23, 0xa323580,23, 0xa323600,23, 0xa323680,23, 0xa323700,23, 0xa323780,23, 0xa323800,23, 0xa323880,23, 0xa323900,23, 0xa323980,23, 0xa323a00,23, 0xa323a80,23, 0xa323b00,23, 0xa323b80,23, 0xa323c00,23, 0xa323c80,23, 0xa323d00,23, 0xa323d80,23, 0xa323e00,23, 0xa323e80,23, 0xa323f00,23, 0xa323f80,23, 0xa324000,23, 0xa324080,23, 0xa324100,23, 0xa324180,23, 0xa324200,23, 0xa324280,23, 0xa324300,23, 0xa324380,23, 0xa324400,23, 0xa324480,23, 0xa324500,23, 0xa324580,23, 0xa324600,23, 0xa324680,23, 0xa324700,23, 0xa324780,23, 0xa324800,23, 0xa324880,23, 0xa324900,23, 0xa324980,23, 0xa324a00,23, 0xa324a80,23, 0xa324b00,23, 0xa324b80,23, 0xa324c00,23, 0xa324c80,23, 0xa324d00,23, 0xa324d80,23, 0xa324e00,23, 0xa324e80,23, 0xa324f00,23, 0xa324f80,23, 0xa325000,23, 0xa325080,23, 0xa325100,23, 0xa325180,23, 0xa325200,23, 0xa325280,23, 0xa325300,23, 0xa325380,23, 0xa325400,23, 0xa325480,23, 0xa325500,23, 0xa325580,23, 0xa325600,23, 0xa325680,23, 0xa325700,23, 0xa325780,23, 0xa325800,23, 0xa325880,23, 0xa325900,23, 0xa325980,23, 0xa325a00,23, 0xa325a80,23, 0xa325b00,23, 0xa325b80,23, 0xa325c00,23, 0xa325c80,23, 0xa325d00,23, 0xa325d80,23, 0xa325e00,23, 0xa325e80,23, 0xa325f00,23, 0xa325f80,23, 0xa326000,23, 0xa326080,23, 0xa326100,23, 0xa326180,23, 0xa326200,23, 0xa326280,23, 0xa326300,23, 0xa326380,23, 0xa326400,23, 0xa326480,23, 0xa326500,23, 0xa326580,23, 0xa326600,23, 0xa326680,23, 0xa326700,23, 0xa326780,23, 0xa326800,23, 0xa326880,23, 0xa326900,23, 0xa326980,23, 0xa326a00,23, 0xa326a80,23, 0xa326b00,23, 0xa326b80,23, 0xa326c00,23, 0xa326c80,23, 0xa326d00,23, 0xa326d80,23, 0xa326e00,23, 0xa326e80,23, 0xa326f00,23, 0xa326f80,23, 0xa327000,23, 0xa327080,23, 0xa327100,23, 0xa327180,23, 0xa327200,23, 0xa327280,23, 0xa327300,23, 0xa327380,23, 0xa327400,23, 0xa327480,23, 0xa327500,23, 0xa327580,23, 0xa327600,23, 0xa327680,23, 0xa327700,23, 0xa327780,23, 0xa327800,23, 0xa327880,23, 0xa327900,23, 0xa327980,23, 0xa327a00,23, 0xa327a80,23, 0xa327b00,23, 0xa327b80,23, 0xa327c00,23, 0xa327c80,23, 0xa327d00,23, 0xa327d80,23, 0xa327e00,23, 0xa327e80,23, 0xa327f00,23, 0xa327f80,23, 0xa328000,23, 0xa328080,23, 0xa328100,23, 0xa328180,23, 0xa328200,23, 0xa328280,23, 0xa328300,23, 0xa328380,23, 0xa328400,23, 0xa328480,23, 0xa328500,23, 0xa328580,23, 0xa328600,23, 0xa328680,23, 0xa328700,23, 0xa328780,23, 0xa328800,23, 0xa328880,23, 0xa328900,23, 0xa328980,23, 0xa328a00,23, 0xa328a80,23, 0xa328b00,23, 0xa328b80,23, 0xa328c00,23, 0xa328c80,23, 0xa328d00,23, 0xa328d80,23, 0xa328e00,23, 0xa328e80,23, 0xa328f00,23, 0xa328f80,23, 0xa329000,23, 0xa329080,23, 0xa329100,23, 0xa329180,23, 0xa329200,23, 0xa329280,23, 0xa329300,23, 0xa329380,23, 0xa329400,23, 0xa329480,23, 0xa329500,23, 0xa329580,23, 0xa329600,23, 0xa329680,23, 0xa329700,23, 0xa329780,23, 0xa329800,23, 0xa329880,23, 0xa329900,23, 0xa329980,23, 0xa329a00,23, 0xa329a80,23, 0xa329b00,23, 0xa329b80,23, 0xa329c00,23, 0xa329c80,23, 0xa329d00,23, 0xa329d80,23, 0xa329e00,23, 0xa329e80,23, 0xa329f00,23, 0xa329f80,23, 0xa32a000,23, 0xa32a080,23, 0xa32a100,23, 0xa32a180,23, 0xa32a200,23, 0xa32a280,23, 0xa32a300,23, 0xa32a380,23, 0xa32a400,23, 0xa32a480,23, 0xa32a500,23, 0xa32a580,23, 0xa32a600,23, 0xa32a680,23, 0xa32a700,23, 0xa32a780,23, 0xa32a800,23, 0xa32a880,23, 0xa32a900,23, 0xa32a980,23, 0xa32aa00,23, 0xa32aa80,23, 0xa32ab00,23, 0xa32ab80,23, 0xa32ac00,23, 0xa32ac80,23, 0xa32ad00,23, 0xa32ad80,23, 0xa32ae00,23, 0xa32ae80,23, 0xa32af00,23, 0xa32af80,23, 0xa32b000,23, 0xa32b080,23, 0xa32b100,23, 0xa32b180,23, 0xa32b200,23, 0xa32b280,23, 0xa32b300,23, 0xa32b380,23, 0xa32b400,23, 0xa32b480,23, 0xa32b500,23, 0xa32b580,23, 0xa32b600,23, 0xa32b680,23, 0xa32b700,23, 0xa32b780,23, 0xa32b800,23, 0xa32b880,23, 0xa32b900,23, 0xa32b980,23, 0xa32ba00,23, 0xa32ba80,23, 0xa32bb00,23, 0xa32bb80,23, 0xa32bc00,23, 0xa32bc80,23, 0xa32bd00,23, 0xa32bd80,23, 0xa32be00,23, 0xa32be80,23, 0xa32bf00,23, 0xa32bf80,23, 0xa32c000,23, 0xa32c080,23, 0xa32c100,23, 0xa32c180,23, 0xa32c200,23, 0xa32c280,23, 0xa32c300,23, 0xa32c380,23, 0xa32c400,23, 0xa32c480,23, 0xa32c500,23, 0xa32c580,23, 0xa32c600,23, 0xa32c680,23, 0xa32c700,23, 0xa32c780,23, 0xa32c800,23, 0xa32c880,23, 0xa32c900,23, 0xa32c980,23, 0xa32ca00,23, 0xa32ca80,23, 0xa32cb00,23, 0xa32cb80,23, 0xa32cc00,23, 0xa32cc80,23, 0xa32cd00,23, 0xa32cd80,23, 0xa32ce00,23, 0xa32ce80,23, 0xa32cf00,23, 0xa32cf80,23, 0xa32d000,23, 0xa32d080,23, 0xa32d100,23, 0xa32d180,23, 0xa32d200,23, 0xa32d280,23, 0xa32d300,23, 0xa32d380,23, 0xa32d400,23, 0xa32d480,23, 0xa32d500,23, 0xa32d580,23, 0xa32d600,23, 0xa32d680,23, 0xa32d700,23, 0xa32d780,23, 0xa32d800,23, 0xa32d880,23, 0xa32d900,23, 0xa32d980,23, 0xa32da00,23, 0xa32da80,23, 0xa32db00,23, 0xa32db80,23, 0xa32dc00,23, 0xa32dc80,23, 0xa32dd00,23, 0xa32dd80,23, 0xa32de00,23, 0xa32de80,23, 0xa32df00,23, 0xa32df80,23, 0xa32e000,23, 0xa32e080,23, 0xa32e100,23, 0xa32e180,23, 0xa32e200,23, 0xa32e280,23, 0xa32e300,23, 0xa32e380,23, 0xa32e400,23, 0xa32e480,23, 0xa32e500,23, 0xa32e580,23, 0xa32e600,23, 0xa32e680,23, 0xa32e700,23, 0xa32e780,23, 0xa32e800,23, 0xa32e880,23, 0xa32e900,23, 0xa32e980,23, 0xa32ea00,23, 0xa32ea80,23, 0xa32eb00,23, 0xa32eb80,23, 0xa32ec00,23, 0xa32ec80,23, 0xa32ed00,23, 0xa32ed80,23, 0xa32ee00,23, 0xa32ee80,23, 0xa32ef00,23, 0xa32ef80,23, 0xa32f000,23, 0xa32f080,23, 0xa32f100,23, 0xa32f180,23, 0xa32f200,23, 0xa32f280,23, 0xa32f300,23, 0xa32f380,23, 0xa32f400,23, 0xa32f480,23, 0xa32f500,23, 0xa32f580,23, 0xa32f600,23, 0xa32f680,23, 0xa32f700,23, 0xa32f780,23, 0xa32f800,23, 0xa32f880,23, 0xa32f900,23, 0xa32f980,23, 0xa32fa00,23, 0xa32fa80,23, 0xa32fb00,23, 0xa32fb80,23, 0xa32fc00,23, 0xa32fc80,23, 0xa32fd00,23, 0xa32fd80,23, 0xa32fe00,23, 0xa32fe80,23, 0xa32ff00,23, 0xa32ff80,23, 0xa330000,23, 0xa330080,23, 0xa330100,23, 0xa330180,23, 0xa330200,23, 0xa330280,23, 0xa330300,23, 0xa330380,23, 0xa330400,23, 0xa330480,23, 0xa330500,23, 0xa330580,23, 0xa330600,23, 0xa330680,23, 0xa330700,23, 0xa330780,23, 0xa330800,23, 0xa330880,23, 0xa330900,23, 0xa330980,23, 0xa330a00,23, 0xa330a80,23, 0xa330b00,23, 0xa330b80,23, 0xa330c00,23, 0xa330c80,23, 0xa330d00,23, 0xa330d80,23, 0xa330e00,23, 0xa330e80,23, 0xa330f00,23, 0xa330f80,23, 0xa331000,23, 0xa331080,23, 0xa331100,23, 0xa331180,23, 0xa331200,23, 0xa331280,23, 0xa331300,23, 0xa331380,23, 0xa331400,23, 0xa331480,23, 0xa331500,23, 0xa331580,23, 0xa331600,23, 0xa331680,23, 0xa331700,23, 0xa331780,23, 0xa331800,23, 0xa331880,23, 0xa331900,23, 0xa331980,23, 0xa331a00,23, 0xa331a80,23, 0xa331b00,23, 0xa331b80,23, 0xa331c00,23, 0xa331c80,23, 0xa331d00,23, 0xa331d80,23, 0xa331e00,23, 0xa331e80,23, 0xa331f00,23, 0xa331f80,23, 0xa332000,23, 0xa332080,23, 0xa332100,23, 0xa332180,23, 0xa332200,23, 0xa332280,23, 0xa332300,23, 0xa332380,23, 0xa332400,23, 0xa332480,23, 0xa332500,23, 0xa332580,23, 0xa332600,23, 0xa332680,23, 0xa332700,23, 0xa332780,23, 0xa332800,23, 0xa332880,23, 0xa332900,23, 0xa332980,23, 0xa332a00,23, 0xa332a80,23, 0xa332b00,23, 0xa332b80,23, 0xa332c00,23, 0xa332c80,23, 0xa332d00,23, 0xa332d80,23, 0xa332e00,23, 0xa332e80,23, 0xa332f00,23, 0xa332f80,23, 0xa333000,23, 0xa333080,23, 0xa333100,23, 0xa333180,23, 0xa333200,23, 0xa333280,23, 0xa333300,23, 0xa333380,23, 0xa333400,23, 0xa333480,23, 0xa333500,23, 0xa333580,23, 0xa333600,23, 0xa333680,23, 0xa333700,23, 0xa333780,23, 0xa333800,23, 0xa333880,23, 0xa333900,23, 0xa333980,23, 0xa333a00,23, 0xa333a80,23, 0xa333b00,23, 0xa333b80,23, 0xa333c00,23, 0xa333c80,23, 0xa333d00,23, 0xa333d80,23, 0xa333e00,23, 0xa333e80,23, 0xa333f00,23, 0xa333f80,23, 0xa334000,23, 0xa334080,23, 0xa334100,23, 0xa334180,23, 0xa334200,23, 0xa334280,23, 0xa334300,23, 0xa334380,23, 0xa334400,23, 0xa334480,23, 0xa334500,23, 0xa334580,23, 0xa334600,23, 0xa334680,23, 0xa334700,23, 0xa334780,23, 0xa334800,23, 0xa334880,23, 0xa334900,23, 0xa334980,23, 0xa334a00,23, 0xa334a80,23, 0xa334b00,23, 0xa334b80,23, 0xa334c00,23, 0xa334c80,23, 0xa334d00,23, 0xa334d80,23, 0xa334e00,23, 0xa334e80,23, 0xa334f00,23, 0xa334f80,23, 0xa335000,23, 0xa335080,23, 0xa335100,23, 0xa335180,23, 0xa335200,23, 0xa335280,23, 0xa335300,23, 0xa335380,23, 0xa335400,23, 0xa335480,23, 0xa335500,23, 0xa335580,23, 0xa335600,23, 0xa335680,23, 0xa335700,23, 0xa335780,23, 0xa335800,23, 0xa335880,23, 0xa335900,23, 0xa335980,23, 0xa335a00,23, 0xa335a80,23, 0xa335b00,23, 0xa335b80,23, 0xa335c00,23, 0xa335c80,23, 0xa335d00,23, 0xa335d80,23, 0xa335e00,23, 0xa335e80,23, 0xa335f00,23, 0xa335f80,23, 0xa336000,23, 0xa336080,23, 0xa336100,23, 0xa336180,23, 0xa336200,23, 0xa336280,23, 0xa336300,23, 0xa336380,23, 0xa336400,23, 0xa336480,23, 0xa336500,23, 0xa336580,23, 0xa336600,23, 0xa336680,23, 0xa336700,23, 0xa336780,23, 0xa336800,23, 0xa336880,23, 0xa336900,23, 0xa336980,23, 0xa336a00,23, 0xa336a80,23, 0xa336b00,23, 0xa336b80,23, 0xa336c00,23, 0xa336c80,23, 0xa336d00,23, 0xa336d80,23, 0xa336e00,23, 0xa336e80,23, 0xa336f00,23, 0xa336f80,23, 0xa337000,23, 0xa337080,23, 0xa337100,23, 0xa337180,23, 0xa337200,23, 0xa337280,23, 0xa337300,23, 0xa337380,23, 0xa337400,23, 0xa337480,23, 0xa337500,23, 0xa337580,23, 0xa337600,23, 0xa337680,23, 0xa337700,23, 0xa337780,23, 0xa337800,23, 0xa337880,23, 0xa337900,23, 0xa337980,23, 0xa337a00,23, 0xa337a80,23, 0xa337b00,23, 0xa337b80,23, 0xa337c00,23, 0xa337c80,23, 0xa337d00,23, 0xa337d80,23, 0xa337e00,23, 0xa337e80,23, 0xa337f00,23, 0xa337f80,23, 0xa338000,23, 0xa338080,23, 0xa338100,23, 0xa338180,23, 0xa338200,23, 0xa338280,23, 0xa338300,23, 0xa338380,23, 0xa338400,23, 0xa338480,23, 0xa338500,23, 0xa338580,23, 0xa338600,23, 0xa338680,23, 0xa338700,23, 0xa338780,23, 0xa338800,23, 0xa338880,23, 0xa338900,23, 0xa338980,23, 0xa338a00,23, 0xa338a80,23, 0xa338b00,23, 0xa338b80,23, 0xa338c00,23, 0xa338c80,23, 0xa338d00,23, 0xa338d80,23, 0xa338e00,23, 0xa338e80,23, 0xa338f00,23, 0xa338f80,23, 0xa339000,23, 0xa339080,23, 0xa339100,23, 0xa339180,23, 0xa339200,23, 0xa339280,23, 0xa339300,23, 0xa339380,23, 0xa339400,23, 0xa339480,23, 0xa339500,23, 0xa339580,23, 0xa339600,23, 0xa339680,23, 0xa339700,23, 0xa339780,23, 0xa339800,23, 0xa339880,23, 0xa339900,23, 0xa339980,23, 0xa339a00,23, 0xa339a80,23, 0xa339b00,23, 0xa339b80,23, 0xa339c00,23, 0xa339c80,23, 0xa339d00,23, 0xa339d80,23, 0xa339e00,23, 0xa339e80,23, 0xa339f00,23, 0xa339f80,23, 0xa33a000,23, 0xa33a080,23, 0xa33a100,23, 0xa33a180,23, 0xa33a200,23, 0xa33a280,23, 0xa33a300,23, 0xa33a380,23, 0xa33a400,23, 0xa33a480,23, 0xa33a500,23, 0xa33a580,23, 0xa33a600,23, 0xa33a680,23, 0xa33a700,23, 0xa33a780,23, 0xa33a800,23, 0xa33a880,23, 0xa33a900,23, 0xa33a980,23, 0xa33aa00,23, 0xa33aa80,23, 0xa33ab00,23, 0xa33ab80,23, 0xa33ac00,23, 0xa33ac80,23, 0xa33ad00,23, 0xa33ad80,23, 0xa33ae00,23, 0xa33ae80,23, 0xa33af00,23, 0xa33af80,23, 0xa33b000,23, 0xa33b080,23, 0xa33b100,23, 0xa33b180,23, 0xa33b200,23, 0xa33b280,23, 0xa33b300,23, 0xa33b380,23, 0xa33b400,23, 0xa33b480,23, 0xa33b500,23, 0xa33b580,23, 0xa33b600,23, 0xa33b680,23, 0xa33b700,23, 0xa33b780,23, 0xa33b800,23, 0xa33b880,23, 0xa33b900,23, 0xa33b980,23, 0xa33ba00,23, 0xa33ba80,23, 0xa33bb00,23, 0xa33bb80,23, 0xa33bc00,23, 0xa33bc80,23, 0xa33bd00,23, 0xa33bd80,23, 0xa33be00,23, 0xa33be80,23, 0xa33bf00,23, 0xa33bf80,23, 0xa33c000,23, 0xa33c080,23, 0xa33c100,23, 0xa33c180,23, 0xa33c200,23, 0xa33c280,23, 0xa33c300,23, 0xa33c380,23, 0xa33c400,23, 0xa33c480,23, 0xa33c500,23, 0xa33c580,23, 0xa33c600,23, 0xa33c680,23, 0xa33c700,23, 0xa33c780,23, 0xa33c800,23, 0xa33c880,23, 0xa33c900,23, 0xa33c980,23, 0xa33ca00,23, 0xa33ca80,23, 0xa33cb00,23, 0xa33cb80,23, 0xa33cc00,23, 0xa33cc80,23, 0xa33cd00,23, 0xa33cd80,23, 0xa33ce00,23, 0xa33ce80,23, 0xa33cf00,23, 0xa33cf80,23, 0xa33d000,23, 0xa33d080,23, 0xa33d100,23, 0xa33d180,23, 0xa33d200,23, 0xa33d280,23, 0xa33d300,23, 0xa33d380,23, 0xa33d400,23, 0xa33d480,23, 0xa33d500,23, 0xa33d580,23, 0xa33d600,23, 0xa33d680,23, 0xa33d700,23, 0xa33d780,23, 0xa33d800,23, 0xa33d880,23, 0xa33d900,23, 0xa33d980,23, 0xa33da00,23, 0xa33da80,23, 0xa33db00,23, 0xa33db80,23, 0xa33dc00,23, 0xa33dc80,23, 0xa33dd00,23, 0xa33dd80,23, 0xa33de00,23, 0xa33de80,23, 0xa33df00,23, 0xa33df80,23, 0xa33e000,23, 0xa33e080,23, 0xa33e100,23, 0xa33e180,23, 0xa33e200,23, 0xa33e280,23, 0xa33e300,23, 0xa33e380,23, 0xa33e400,23, 0xa33e480,23, 0xa33e500,23, 0xa33e580,23, 0xa33e600,23, 0xa33e680,23, 0xa33e700,23, 0xa33e780,23, 0xa33e800,23, 0xa33e880,23, 0xa33e900,23, 0xa33e980,23, 0xa33ea00,23, 0xa33ea80,23, 0xa33eb00,23, 0xa33eb80,23, 0xa33ec00,23, 0xa33ec80,23, 0xa33ed00,23, 0xa33ed80,23, 0xa33ee00,23, 0xa33ee80,23, 0xa33ef00,23, 0xa33ef80,23, 0xa33f000,23, 0xa33f080,23, 0xa33f100,23, 0xa33f180,23, 0xa33f200,23, 0xa33f280,23, 0xa33f300,23, 0xa33f380,23, 0xa33f400,23, 0xa33f480,23, 0xa33f500,23, 0xa33f580,23, 0xa33f600,23, 0xa33f680,23, 0xa33f700,23, 0xa33f780,23, 0xa33f800,23, 0xa33f880,23, 0xa33f900,23, 0xa33f980,23, 0xa33fa00,23, 0xa33fa80,23, 0xa33fb00,23, 0xa33fb80,23, 0xa33fc00,23, 0xa33fc80,23, 0xa33fd00,23, 0xa33fd80,23, 0xa33fe00,23, 0xa33fe80,23, 0xa33ff00,23, 0xa33ff80,23, 0xa340000,23, 0xa340080,23, 0xa340100,23, 0xa340180,23, 0xa340200,23, 0xa340280,23, 0xa340300,23, 0xa340380,23, 0xa340400,23, 0xa340480,23, 0xa340500,23, 0xa340580,23, 0xa340600,23, 0xa340680,23, 0xa340700,23, 0xa340780,23, 0xa340800,23, 0xa340880,23, 0xa340900,23, 0xa340980,23, 0xa340a00,23, 0xa340a80,23, 0xa340b00,23, 0xa340b80,23, 0xa340c00,23, 0xa340c80,23, 0xa340d00,23, 0xa340d80,23, 0xa340e00,23, 0xa340e80,23, 0xa340f00,23, 0xa340f80,23, 0xa341000,23, 0xa341080,23, 0xa341100,23, 0xa341180,23, 0xa341200,23, 0xa341280,23, 0xa341300,23, 0xa341380,23, 0xa341400,23, 0xa341480,23, 0xa341500,23, 0xa341580,23, 0xa341600,23, 0xa341680,23, 0xa341700,23, 0xa341780,23, 0xa341800,23, 0xa341880,23, 0xa341900,23, 0xa341980,23, 0xa341a00,23, 0xa341a80,23, 0xa341b00,23, 0xa341b80,23, 0xa341c00,23, 0xa341c80,23, 0xa341d00,23, 0xa341d80,23, 0xa341e00,23, 0xa341e80,23, 0xa341f00,23, 0xa341f80,23, 0xa342000,23, 0xa342080,23, 0xa342100,23, 0xa342180,23, 0xa342200,23, 0xa342280,23, 0xa342300,23, 0xa342380,23, 0xa342400,23, 0xa342480,23, 0xa342500,23, 0xa342580,23, 0xa342600,23, 0xa342680,23, 0xa342700,23, 0xa342780,23, 0xa342800,23, 0xa342880,23, 0xa342900,23, 0xa342980,23, 0xa342a00,23, 0xa342a80,23, 0xa342b00,23, 0xa342b80,23, 0xa342c00,23, 0xa342c80,23, 0xa342d00,23, 0xa342d80,23, 0xa342e00,23, 0xa342e80,23, 0xa342f00,23, 0xa342f80,23, 0xa343000,23, 0xa343080,23, 0xa343100,23, 0xa343180,23, 0xa343200,23, 0xa343280,23, 0xa343300,23, 0xa343380,23, 0xa343400,23, 0xa343480,23, 0xa343500,23, 0xa343580,23, 0xa343600,23, 0xa343680,23, 0xa343700,23, 0xa343780,23, 0xa343800,23, 0xa343880,23, 0xa343900,23, 0xa343980,23, 0xa343a00,23, 0xa343a80,23, 0xa343b00,23, 0xa343b80,23, 0xa343c00,23, 0xa343c80,23, 0xa343d00,23, 0xa343d80,23, 0xa343e00,23, 0xa343e80,23, 0xa343f00,23, 0xa343f80,23, 0xa344000,23, 0xa344080,23, 0xa344100,23, 0xa344180,23, 0xa344200,23, 0xa344280,23, 0xa344300,23, 0xa344380,23, 0xa344400,23, 0xa344480,23, 0xa344500,23, 0xa344580,23, 0xa344600,23, 0xa344680,23, 0xa344700,23, 0xa344780,23, 0xa344800,23, 0xa344880,23, 0xa344900,23, 0xa344980,23, 0xa344a00,23, 0xa344a80,23, 0xa344b00,23, 0xa344b80,23, 0xa344c00,23, 0xa344c80,23, 0xa344d00,23, 0xa344d80,23, 0xa344e00,23, 0xa344e80,23, 0xa344f00,23, 0xa344f80,23, 0xa345000,23, 0xa345080,23, 0xa345100,23, 0xa345180,23, 0xa345200,23, 0xa345280,23, 0xa345300,23, 0xa345380,23, 0xa345400,23, 0xa345480,23, 0xa345500,23, 0xa345580,23, 0xa345600,23, 0xa345680,23, 0xa345700,23, 0xa345780,23, 0xa345800,23, 0xa345880,23, 0xa345900,23, 0xa345980,23, 0xa345a00,23, 0xa345a80,23, 0xa345b00,23, 0xa345b80,23, 0xa345c00,23, 0xa345c80,23, 0xa345d00,23, 0xa345d80,23, 0xa345e00,23, 0xa345e80,23, 0xa345f00,23, 0xa345f80,23, 0xa346000,23, 0xa346080,23, 0xa346100,23, 0xa346180,23, 0xa346200,23, 0xa346280,23, 0xa346300,23, 0xa346380,23, 0xa346400,23, 0xa346480,23, 0xa346500,23, 0xa346580,23, 0xa346600,23, 0xa346680,23, 0xa346700,23, 0xa346780,23, 0xa346800,23, 0xa346880,23, 0xa346900,23, 0xa346980,23, 0xa346a00,23, 0xa346a80,23, 0xa346b00,23, 0xa346b80,23, 0xa346c00,23, 0xa346c80,23, 0xa346d00,23, 0xa346d80,23, 0xa346e00,23, 0xa346e80,23, 0xa346f00,23, 0xa346f80,23, 0xa347000,23, 0xa347080,23, 0xa347100,23, 0xa347180,23, 0xa347200,23, 0xa347280,23, 0xa347300,23, 0xa347380,23, 0xa347400,23, 0xa347480,23, 0xa347500,23, 0xa347580,23, 0xa347600,23, 0xa347680,23, 0xa347700,23, 0xa347780,23, 0xa347800,23, 0xa347880,23, 0xa347900,23, 0xa347980,23, 0xa347a00,23, 0xa347a80,23, 0xa347b00,23, 0xa347b80,23, 0xa347c00,23, 0xa347c80,23, 0xa347d00,23, 0xa347d80,23, 0xa347e00,23, 0xa347e80,23, 0xa347f00,23, 0xa347f80,23, 0xa348000,23, 0xa348080,23, 0xa348100,23, 0xa348180,23, 0xa348200,23, 0xa348280,23, 0xa348300,23, 0xa348380,23, 0xa348400,23, 0xa348480,23, 0xa348500,23, 0xa348580,23, 0xa348600,23, 0xa348680,23, 0xa348700,23, 0xa348780,23, 0xa348800,23, 0xa348880,23, 0xa348900,23, 0xa348980,23, 0xa348a00,23, 0xa348a80,23, 0xa348b00,23, 0xa348b80,23, 0xa348c00,23, 0xa348c80,23, 0xa348d00,23, 0xa348d80,23, 0xa348e00,23, 0xa348e80,23, 0xa348f00,23, 0xa348f80,23, 0xa349000,23, 0xa349080,23, 0xa349100,23, 0xa349180,23, 0xa349200,23, 0xa349280,23, 0xa349300,23, 0xa349380,23, 0xa349400,23, 0xa349480,23, 0xa349500,23, 0xa349580,23, 0xa349600,23, 0xa349680,23, 0xa349700,23, 0xa349780,23, 0xa349800,23, 0xa349880,23, 0xa349900,23, 0xa349980,23, 0xa349a00,23, 0xa349a80,23, 0xa349b00,23, 0xa349b80,23, 0xa349c00,23, 0xa349c80,23, 0xa349d00,23, 0xa349d80,23, 0xa349e00,23, 0xa349e80,23, 0xa349f00,23, 0xa349f80,23, 0xa34a000,23, 0xa34a080,23, 0xa34a100,23, 0xa34a180,23, 0xa34a200,23, 0xa34a280,23, 0xa34a300,23, 0xa34a380,23, 0xa34a400,23, 0xa34a480,23, 0xa34a500,23, 0xa34a580,23, 0xa34a600,23, 0xa34a680,23, 0xa34a700,23, 0xa34a780,23, 0xa34a800,23, 0xa34a880,23, 0xa34a900,23, 0xa34a980,23, 0xa34aa00,23, 0xa34aa80,23, 0xa34ab00,23, 0xa34ab80,23, 0xa34ac00,23, 0xa34ac80,23, 0xa34ad00,23, 0xa34ad80,23, 0xa34ae00,23, 0xa34ae80,23, 0xa34af00,23, 0xa34af80,23, 0xa34b000,23, 0xa34b080,23, 0xa34b100,23, 0xa34b180,23, 0xa34b200,23, 0xa34b280,23, 0xa34b300,23, 0xa34b380,23, 0xa34b400,23, 0xa34b480,23, 0xa34b500,23, 0xa34b580,23, 0xa34b600,23, 0xa34b680,23, 0xa34b700,23, 0xa34b780,23, 0xa34b800,23, 0xa34b880,23, 0xa34b900,23, 0xa34b980,23, 0xa34ba00,23, 0xa34ba80,23, 0xa34bb00,23, 0xa34bb80,23, 0xa34bc00,23, 0xa34bc80,23, 0xa34bd00,23, 0xa34bd80,23, 0xa34be00,23, 0xa34be80,23, 0xa34bf00,23, 0xa34bf80,23, 0xa34c000,23, 0xa34c080,23, 0xa34c100,23, 0xa34c180,23, 0xa34c200,23, 0xa34c280,23, 0xa34c300,23, 0xa34c380,23, 0xa34c400,23, 0xa34c480,23, 0xa34c500,23, 0xa34c580,23, 0xa34c600,23, 0xa34c680,23, 0xa34c700,23, 0xa34c780,23, 0xa34c800,23, 0xa34c880,23, 0xa34c900,23, 0xa34c980,23, 0xa34ca00,23, 0xa34ca80,23, 0xa34cb00,23, 0xa34cb80,23, 0xa34cc00,23, 0xa34cc80,23, 0xa34cd00,23, 0xa34cd80,23, 0xa34ce00,23, 0xa34ce80,23, 0xa34cf00,23, 0xa34cf80,23, 0xa34d000,23, 0xa34d080,23, 0xa34d100,23, 0xa34d180,23, 0xa34d200,23, 0xa34d280,23, 0xa34d300,23, 0xa34d380,23, 0xa34d400,23, 0xa34d480,23, 0xa34d500,23, 0xa34d580,23, 0xa34d600,23, 0xa34d680,23, 0xa34d700,23, 0xa34d780,23, 0xa34d800,23, 0xa34d880,23, 0xa34d900,23, 0xa34d980,23, 0xa34da00,23, 0xa34da80,23, 0xa34db00,23, 0xa34db80,23, 0xa34dc00,23, 0xa34dc80,23, 0xa34dd00,23, 0xa34dd80,23, 0xa34de00,23, 0xa34de80,23, 0xa34df00,23, 0xa34df80,23, 0xa34e000,23, 0xa34e080,23, 0xa34e100,23, 0xa34e180,23, 0xa34e200,23, 0xa34e280,23, 0xa34e300,23, 0xa34e380,23, 0xa34e400,23, 0xa34e480,23, 0xa34e500,23, 0xa34e580,23, 0xa34e600,23, 0xa34e680,23, 0xa34e700,23, 0xa34e780,23, 0xa34e800,23, 0xa34e880,23, 0xa34e900,23, 0xa34e980,23, 0xa34ea00,23, 0xa34ea80,23, 0xa34eb00,23, 0xa34eb80,23, 0xa34ec00,23, 0xa34ec80,23, 0xa34ed00,23, 0xa34ed80,23, 0xa34ee00,23, 0xa34ee80,23, 0xa34ef00,23, 0xa34ef80,23, 0xa34f000,23, 0xa34f080,23, 0xa34f100,23, 0xa34f180,23, 0xa34f200,23, 0xa34f280,23, 0xa34f300,23, 0xa34f380,23, 0xa34f400,23, 0xa34f480,23, 0xa34f500,23, 0xa34f580,23, 0xa34f600,23, 0xa34f680,23, 0xa34f700,23, 0xa34f780,23, 0xa34f800,23, 0xa34f880,23, 0xa34f900,23, 0xa34f980,23, 0xa34fa00,23, 0xa34fa80,23, 0xa34fb00,23, 0xa34fb80,23, 0xa34fc00,23, 0xa34fc80,23, 0xa34fd00,23, 0xa34fd80,23, 0xa34fe00,23, 0xa34fe80,23, 0xa34ff00,23, 0xa34ff80,23, 0xa350000,23, 0xa350080,23, 0xa350100,23, 0xa350180,23, 0xa350200,23, 0xa350280,23, 0xa350300,23, 0xa350380,23, 0xa350400,23, 0xa350480,23, 0xa350500,23, 0xa350580,23, 0xa350600,23, 0xa350680,23, 0xa350700,23, 0xa350780,23, 0xa350800,23, 0xa350880,23, 0xa350900,23, 0xa350980,23, 0xa350a00,23, 0xa350a80,23, 0xa350b00,23, 0xa350b80,23, 0xa350c00,23, 0xa350c80,23, 0xa350d00,23, 0xa350d80,23, 0xa350e00,23, 0xa350e80,23, 0xa350f00,23, 0xa350f80,23, 0xa351000,23, 0xa351080,23, 0xa351100,23, 0xa351180,23, 0xa351200,23, 0xa351280,23, 0xa351300,23, 0xa351380,23, 0xa351400,23, 0xa351480,23, 0xa351500,23, 0xa351580,23, 0xa351600,23, 0xa351680,23, 0xa351700,23, 0xa351780,23, 0xa351800,23, 0xa351880,23, 0xa351900,23, 0xa351980,23, 0xa351a00,23, 0xa351a80,23, 0xa351b00,23, 0xa351b80,23, 0xa351c00,23, 0xa351c80,23, 0xa351d00,23, 0xa351d80,23, 0xa351e00,23, 0xa351e80,23, 0xa351f00,23, 0xa351f80,23, 0xa352000,23, 0xa352080,23, 0xa352100,23, 0xa352180,23, 0xa352200,23, 0xa352280,23, 0xa352300,23, 0xa352380,23, 0xa352400,23, 0xa352480,23, 0xa352500,23, 0xa352580,23, 0xa352600,23, 0xa352680,23, 0xa352700,23, 0xa352780,23, 0xa352800,23, 0xa352880,23, 0xa352900,23, 0xa352980,23, 0xa352a00,23, 0xa352a80,23, 0xa352b00,23, 0xa352b80,23, 0xa352c00,23, 0xa352c80,23, 0xa352d00,23, 0xa352d80,23, 0xa352e00,23, 0xa352e80,23, 0xa352f00,23, 0xa352f80,23, 0xa353000,23, 0xa353080,23, 0xa353100,23, 0xa353180,23, 0xa353200,23, 0xa353280,23, 0xa353300,23, 0xa353380,23, 0xa353400,23, 0xa353480,23, 0xa353500,23, 0xa353580,23, 0xa353600,23, 0xa353680,23, 0xa353700,23, 0xa353780,23, 0xa353800,23, 0xa353880,23, 0xa353900,23, 0xa353980,23, 0xa353a00,23, 0xa353a80,23, 0xa353b00,23, 0xa353b80,23, 0xa353c00,23, 0xa353c80,23, 0xa353d00,23, 0xa353d80,23, 0xa353e00,23, 0xa353e80,23, 0xa353f00,23, 0xa353f80,23, 0xa354000,23, 0xa354080,23, 0xa354100,23, 0xa354180,23, 0xa354200,23, 0xa354280,23, 0xa354300,23, 0xa354380,23, 0xa354400,23, 0xa354480,23, 0xa354500,23, 0xa354580,23, 0xa354600,23, 0xa354680,23, 0xa354700,23, 0xa354780,23, 0xa354800,23, 0xa354880,23, 0xa354900,23, 0xa354980,23, 0xa354a00,23, 0xa354a80,23, 0xa354b00,23, 0xa354b80,23, 0xa354c00,23, 0xa354c80,23, 0xa354d00,23, 0xa354d80,23, 0xa354e00,23, 0xa354e80,23, 0xa354f00,23, 0xa354f80,23, 0xa355000,23, 0xa355080,23, 0xa355100,23, 0xa355180,23, 0xa355200,23, 0xa355280,23, 0xa355300,23, 0xa355380,23, 0xa355400,23, 0xa355480,23, 0xa355500,23, 0xa355580,23, 0xa355600,23, 0xa355680,23, 0xa355700,23, 0xa355780,23, 0xa355800,23, 0xa355880,23, 0xa355900,23, 0xa355980,23, 0xa355a00,23, 0xa355a80,23, 0xa355b00,23, 0xa355b80,23, 0xa355c00,23, 0xa355c80,23, 0xa355d00,23, 0xa355d80,23, 0xa355e00,23, 0xa355e80,23, 0xa355f00,23, 0xa355f80,23, 0xa356000,23, 0xa356080,23, 0xa356100,23, 0xa356180,23, 0xa356200,23, 0xa356280,23, 0xa356300,23, 0xa356380,23, 0xa356400,23, 0xa356480,23, 0xa356500,23, 0xa356580,23, 0xa356600,23, 0xa356680,23, 0xa356700,23, 0xa356780,23, 0xa356800,23, 0xa356880,23, 0xa356900,23, 0xa356980,23, 0xa356a00,23, 0xa356a80,23, 0xa356b00,23, 0xa356b80,23, 0xa356c00,23, 0xa356c80,23, 0xa356d00,23, 0xa356d80,23, 0xa356e00,23, 0xa356e80,23, 0xa356f00,23, 0xa356f80,23, 0xa357000,23, 0xa357080,23, 0xa357100,23, 0xa357180,23, 0xa357200,23, 0xa357280,23, 0xa357300,23, 0xa357380,23, 0xa357400,23, 0xa357480,23, 0xa357500,23, 0xa357580,23, 0xa357600,23, 0xa357680,23, 0xa357700,23, 0xa357780,23, 0xa357800,23, 0xa357880,23, 0xa357900,23, 0xa357980,23, 0xa357a00,23, 0xa357a80,23, 0xa357b00,23, 0xa357b80,23, 0xa357c00,23, 0xa357c80,23, 0xa357d00,23, 0xa357d80,23, 0xa357e00,23, 0xa357e80,23, 0xa357f00,23, 0xa357f80,23, 0xa358000,23, 0xa358080,23, 0xa358100,23, 0xa358180,23, 0xa358200,23, 0xa358280,23, 0xa358300,23, 0xa358380,23, 0xa358400,23, 0xa358480,23, 0xa358500,23, 0xa358580,23, 0xa358600,23, 0xa358680,23, 0xa358700,23, 0xa358780,23, 0xa358800,23, 0xa358880,23, 0xa358900,23, 0xa358980,23, 0xa358a00,23, 0xa358a80,23, 0xa358b00,23, 0xa358b80,23, 0xa358c00,23, 0xa358c80,23, 0xa358d00,23, 0xa358d80,23, 0xa358e00,23, 0xa358e80,23, 0xa358f00,23, 0xa358f80,23, 0xa359000,23, 0xa359080,23, 0xa359100,23, 0xa359180,23, 0xa359200,23, 0xa359280,23, 0xa359300,23, 0xa359380,23, 0xa359400,23, 0xa359480,23, 0xa359500,23, 0xa359580,23, 0xa359600,23, 0xa359680,23, 0xa359700,23, 0xa359780,23, 0xa359800,23, 0xa359880,23, 0xa359900,23, 0xa359980,23, 0xa359a00,23, 0xa359a80,23, 0xa359b00,23, 0xa359b80,23, 0xa359c00,23, 0xa359c80,23, 0xa359d00,23, 0xa359d80,23, 0xa359e00,23, 0xa359e80,23, 0xa359f00,23, 0xa359f80,23, 0xa35a000,23, 0xa35a080,23, 0xa35a100,23, 0xa35a180,23, 0xa35a200,23, 0xa35a280,23, 0xa35a300,23, 0xa35a380,23, 0xa35a400,23, 0xa35a480,23, 0xa35a500,23, 0xa35a580,23, 0xa35a600,23, 0xa35a680,23, 0xa35a700,23, 0xa35a780,23, 0xa35a800,23, 0xa35a880,23, 0xa35a900,23, 0xa35a980,23, 0xa35aa00,23, 0xa35aa80,23, 0xa35ab00,23, 0xa35ab80,23, 0xa35ac00,23, 0xa35ac80,23, 0xa35ad00,23, 0xa35ad80,23, 0xa35ae00,23, 0xa35ae80,23, 0xa35af00,23, 0xa35af80,23, 0xa35b000,23, 0xa35b080,23, 0xa35b100,23, 0xa35b180,23, 0xa35b200,23, 0xa35b280,23, 0xa35b300,23, 0xa35b380,23, 0xa35b400,23, 0xa35b480,23, 0xa35b500,23, 0xa35b580,23, 0xa35b600,23, 0xa35b680,23, 0xa35b700,23, 0xa35b780,23, 0xa35b800,23, 0xa35b880,23, 0xa35b900,23, 0xa35b980,23, 0xa35ba00,23, 0xa35ba80,23, 0xa35bb00,23, 0xa35bb80,23, 0xa35bc00,23, 0xa35bc80,23, 0xa35bd00,23, 0xa35bd80,23, 0xa35be00,23, 0xa35be80,23, 0xa35bf00,23, 0xa35bf80,23, 0xa35c000,23, 0xa35c080,23, 0xa35c100,23, 0xa35c180,23, 0xa35c200,23, 0xa35c280,23, 0xa35c300,23, 0xa35c380,23, 0xa35c400,23, 0xa35c480,23, 0xa35c500,23, 0xa35c580,23, 0xa35c600,23, 0xa35c680,23, 0xa35c700,23, 0xa35c780,23, 0xa35c800,23, 0xa35c880,23, 0xa35c900,23, 0xa35c980,23, 0xa35ca00,23, 0xa35ca80,23, 0xa35cb00,23, 0xa35cb80,23, 0xa35cc00,23, 0xa35cc80,23, 0xa35cd00,23, 0xa35cd80,23, 0xa35ce00,23, 0xa35ce80,23, 0xa35cf00,23, 0xa35cf80,23, 0xa35d000,23, 0xa35d080,23, 0xa35d100,23, 0xa35d180,23, 0xa35d200,23, 0xa35d280,23, 0xa35d300,23, 0xa35d380,23, 0xa35d400,23, 0xa35d480,23, 0xa35d500,23, 0xa35d580,23, 0xa35d600,23, 0xa35d680,23, 0xa35d700,23, 0xa35d780,23, 0xa35d800,23, 0xa35d880,23, 0xa35d900,23, 0xa35d980,23, 0xa35da00,23, 0xa35da80,23, 0xa35db00,23, 0xa35db80,23, 0xa35dc00,23, 0xa35dc80,23, 0xa35dd00,23, 0xa35dd80,23, 0xa35de00,23, 0xa35de80,23, 0xa35df00,23, 0xa35df80,23, 0xa35e000,23, 0xa35e080,23, 0xa35e100,23, 0xa35e180,23, 0xa35e200,23, 0xa35e280,23, 0xa35e300,23, 0xa35e380,23, 0xa35e400,23, 0xa35e480,23, 0xa35e500,23, 0xa35e580,23, 0xa35e600,23, 0xa35e680,23, 0xa35e700,23, 0xa35e780,23, 0xa35e800,23, 0xa35e880,23, 0xa35e900,23, 0xa35e980,23, 0xa35ea00,23, 0xa35ea80,23, 0xa35eb00,23, 0xa35eb80,23, 0xa35ec00,23, 0xa35ec80,23, 0xa35ed00,23, 0xa35ed80,23, 0xa35ee00,23, 0xa35ee80,23, 0xa35ef00,23, 0xa35ef80,23, 0xa35f000,23, 0xa35f080,23, 0xa35f100,23, 0xa35f180,23, 0xa35f200,23, 0xa35f280,23, 0xa35f300,23, 0xa35f380,23, 0xa35f400,23, 0xa35f480,23, 0xa35f500,23, 0xa35f580,23, 0xa35f600,23, 0xa35f680,23, 0xa35f700,23, 0xa35f780,23, 0xa35f800,23, 0xa35f880,23, 0xa35f900,23, 0xa35f980,23, 0xa35fa00,23, 0xa35fa80,23, 0xa35fb00,23, 0xa35fb80,23, 0xa35fc00,23, 0xa35fc80,23, 0xa35fd00,23, 0xa35fd80,23, 0xa35fe00,23, 0xa35fe80,23, 0xa35ff00,23, 0xa35ff80,23, 0xa360000,23, 0xa360080,23, 0xa360100,23, 0xa360180,23, 0xa360200,23, 0xa360280,23, 0xa360300,23, 0xa360380,23, 0xa360400,23, 0xa360480,23, 0xa360500,23, 0xa360580,23, 0xa360600,23, 0xa360680,23, 0xa360700,23, 0xa360780,23, 0xa360800,23, 0xa360880,23, 0xa360900,23, 0xa360980,23, 0xa360a00,23, 0xa360a80,23, 0xa360b00,23, 0xa360b80,23, 0xa360c00,23, 0xa360c80,23, 0xa360d00,23, 0xa360d80,23, 0xa360e00,23, 0xa360e80,23, 0xa360f00,23, 0xa360f80,23, 0xa361000,23, 0xa361080,23, 0xa361100,23, 0xa361180,23, 0xa361200,23, 0xa361280,23, 0xa361300,23, 0xa361380,23, 0xa361400,23, 0xa361480,23, 0xa361500,23, 0xa361580,23, 0xa361600,23, 0xa361680,23, 0xa361700,23, 0xa361780,23, 0xa361800,23, 0xa361880,23, 0xa361900,23, 0xa361980,23, 0xa361a00,23, 0xa361a80,23, 0xa361b00,23, 0xa361b80,23, 0xa361c00,23, 0xa361c80,23, 0xa361d00,23, 0xa361d80,23, 0xa361e00,23, 0xa361e80,23, 0xa361f00,23, 0xa361f80,23, 0xa362000,23, 0xa362080,23, 0xa362100,23, 0xa362180,23, 0xa362200,23, 0xa362280,23, 0xa362300,23, 0xa362380,23, 0xa362400,23, 0xa362480,23, 0xa362500,23, 0xa362580,23, 0xa362600,23, 0xa362680,23, 0xa362700,23, 0xa362780,23, 0xa362800,23, 0xa362880,23, 0xa362900,23, 0xa362980,23, 0xa362a00,23, 0xa362a80,23, 0xa362b00,23, 0xa362b80,23, 0xa362c00,23, 0xa362c80,23, 0xa362d00,23, 0xa362d80,23, 0xa362e00,23, 0xa362e80,23, 0xa362f00,23, 0xa362f80,23, 0xa363000,23, 0xa363080,23, 0xa363100,23, 0xa363180,23, 0xa363200,23, 0xa363280,23, 0xa363300,23, 0xa363380,23, 0xa363400,23, 0xa363480,23, 0xa363500,23, 0xa363580,23, 0xa363600,23, 0xa363680,23, 0xa363700,23, 0xa363780,23, 0xa363800,23, 0xa363880,23, 0xa363900,23, 0xa363980,23, 0xa363a00,23, 0xa363a80,23, 0xa363b00,23, 0xa363b80,23, 0xa363c00,23, 0xa363c80,23, 0xa363d00,23, 0xa363d80,23, 0xa363e00,23, 0xa363e80,23, 0xa363f00,23, 0xa363f80,23, 0xa364000,23, 0xa364080,23, 0xa364100,23, 0xa364180,23, 0xa364200,23, 0xa364280,23, 0xa364300,23, 0xa364380,23, 0xa364400,23, 0xa364480,23, 0xa364500,23, 0xa364580,23, 0xa364600,23, 0xa364680,23, 0xa364700,23, 0xa364780,23, 0xa364800,23, 0xa364880,23, 0xa364900,23, 0xa364980,23, 0xa364a00,23, 0xa364a80,23, 0xa364b00,23, 0xa364b80,23, 0xa364c00,23, 0xa364c80,23, 0xa364d00,23, 0xa364d80,23, 0xa364e00,23, 0xa364e80,23, 0xa364f00,23, 0xa364f80,23, 0xa365000,23, 0xa365080,23, 0xa365100,23, 0xa365180,23, 0xa365200,23, 0xa365280,23, 0xa365300,23, 0xa365380,23, 0xa365400,23, 0xa365480,23, 0xa365500,23, 0xa365580,23, 0xa365600,23, 0xa365680,23, 0xa365700,23, 0xa365780,23, 0xa365800,23, 0xa365880,23, 0xa365900,23, 0xa365980,23, 0xa365a00,23, 0xa365a80,23, 0xa365b00,23, 0xa365b80,23, 0xa365c00,23, 0xa365c80,23, 0xa365d00,23, 0xa365d80,23, 0xa365e00,23, 0xa365e80,23, 0xa365f00,23, 0xa365f80,23, 0xa366000,23, 0xa366080,23, 0xa366100,23, 0xa366180,23, 0xa366200,23, 0xa366280,23, 0xa366300,23, 0xa366380,23, 0xa366400,23, 0xa366480,23, 0xa366500,23, 0xa366580,23, 0xa366600,23, 0xa366680,23, 0xa366700,23, 0xa366780,23, 0xa366800,23, 0xa366880,23, 0xa366900,23, 0xa366980,23, 0xa366a00,23, 0xa366a80,23, 0xa366b00,23, 0xa366b80,23, 0xa366c00,23, 0xa366c80,23, 0xa366d00,23, 0xa366d80,23, 0xa366e00,23, 0xa366e80,23, 0xa366f00,23, 0xa366f80,23, 0xa367000,23, 0xa367080,23, 0xa367100,23, 0xa367180,23, 0xa367200,23, 0xa367280,23, 0xa367300,23, 0xa367380,23, 0xa367400,23, 0xa367480,23, 0xa367500,23, 0xa367580,23, 0xa367600,23, 0xa367680,23, 0xa367700,23, 0xa367780,23, 0xa367800,23, 0xa367880,23, 0xa367900,23, 0xa367980,23, 0xa367a00,23, 0xa367a80,23, 0xa367b00,23, 0xa367b80,23, 0xa367c00,23, 0xa367c80,23, 0xa367d00,23, 0xa367d80,23, 0xa367e00,23, 0xa367e80,23, 0xa367f00,23, 0xa367f80,23, 0xa368000,23, 0xa368080,23, 0xa368100,23, 0xa368180,23, 0xa368200,23, 0xa368280,23, 0xa368300,23, 0xa368380,23, 0xa368400,23, 0xa368480,23, 0xa368500,23, 0xa368580,23, 0xa368600,23, 0xa368680,23, 0xa368700,23, 0xa368780,23, 0xa368800,23, 0xa368880,23, 0xa368900,23, 0xa368980,23, 0xa368a00,23, 0xa368a80,23, 0xa368b00,23, 0xa368b80,23, 0xa368c00,23, 0xa368c80,23, 0xa368d00,23, 0xa368d80,23, 0xa368e00,23, 0xa368e80,23, 0xa368f00,23, 0xa368f80,23, 0xa369000,23, 0xa369080,23, 0xa369100,23, 0xa369180,23, 0xa369200,23, 0xa369280,23, 0xa369300,23, 0xa369380,23, 0xa369400,23, 0xa369480,23, 0xa369500,23, 0xa369580,23, 0xa369600,23, 0xa369680,23, 0xa369700,23, 0xa369780,23, 0xa369800,23, 0xa369880,23, 0xa369900,23, 0xa369980,23, 0xa369a00,23, 0xa369a80,23, 0xa369b00,23, 0xa369b80,23, 0xa369c00,23, 0xa369c80,23, 0xa369d00,23, 0xa369d80,23, 0xa369e00,23, 0xa369e80,23, 0xa369f00,23, 0xa369f80,23, 0xa36a000,23, 0xa36a080,23, 0xa36a100,23, 0xa36a180,23, 0xa36a200,23, 0xa36a280,23, 0xa36a300,23, 0xa36a380,23, 0xa36a400,23, 0xa36a480,23, 0xa36a500,23, 0xa36a580,23, 0xa36a600,23, 0xa36a680,23, 0xa36a700,23, 0xa36a780,23, 0xa36a800,23, 0xa36a880,23, 0xa36a900,23, 0xa36a980,23, 0xa36aa00,23, 0xa36aa80,23, 0xa36ab00,23, 0xa36ab80,23, 0xa36ac00,23, 0xa36ac80,23, 0xa36ad00,23, 0xa36ad80,23, 0xa36ae00,23, 0xa36ae80,23, 0xa36af00,23, 0xa36af80,23, 0xa36b000,23, 0xa36b080,23, 0xa36b100,23, 0xa36b180,23, 0xa36b200,23, 0xa36b280,23, 0xa36b300,23, 0xa36b380,23, 0xa36b400,23, 0xa36b480,23, 0xa36b500,23, 0xa36b580,23, 0xa36b600,23, 0xa36b680,23, 0xa36b700,23, 0xa36b780,23, 0xa36b800,23, 0xa36b880,23, 0xa36b900,23, 0xa36b980,23, 0xa36ba00,23, 0xa36ba80,23, 0xa36bb00,23, 0xa36bb80,23, 0xa36bc00,23, 0xa36bc80,23, 0xa36bd00,23, 0xa36bd80,23, 0xa36be00,23, 0xa36be80,23, 0xa36bf00,23, 0xa36bf80,23, 0xa36c000,23, 0xa36c080,23, 0xa36c100,23, 0xa36c180,23, 0xa36c200,23, 0xa36c280,23, 0xa36c300,23, 0xa36c380,23, 0xa36c400,23, 0xa36c480,23, 0xa36c500,23, 0xa36c580,23, 0xa36c600,23, 0xa36c680,23, 0xa36c700,23, 0xa36c780,23, 0xa36c800,23, 0xa36c880,23, 0xa36c900,23, 0xa36c980,23, 0xa36ca00,23, 0xa36ca80,23, 0xa36cb00,23, 0xa36cb80,23, 0xa36cc00,23, 0xa36cc80,23, 0xa36cd00,23, 0xa36cd80,23, 0xa36ce00,23, 0xa36ce80,23, 0xa36cf00,23, 0xa36cf80,23, 0xa36d000,23, 0xa36d080,23, 0xa36d100,23, 0xa36d180,23, 0xa36d200,23, 0xa36d280,23, 0xa36d300,23, 0xa36d380,23, 0xa36d400,23, 0xa36d480,23, 0xa36d500,23, 0xa36d580,23, 0xa36d600,23, 0xa36d680,23, 0xa36d700,23, 0xa36d780,23, 0xa36d800,23, 0xa36d880,23, 0xa36d900,23, 0xa36d980,23, 0xa36da00,23, 0xa36da80,23, 0xa36db00,23, 0xa36db80,23, 0xa36dc00,23, 0xa36dc80,23, 0xa36dd00,23, 0xa36dd80,23, 0xa36de00,23, 0xa36de80,23, 0xa36df00,23, 0xa36df80,23, 0xa36e000,23, 0xa36e080,23, 0xa36e100,23, 0xa36e180,23, 0xa36e200,23, 0xa36e280,23, 0xa36e300,23, 0xa36e380,23, 0xa36e400,23, 0xa36e480,23, 0xa36e500,23, 0xa36e580,23, 0xa36e600,23, 0xa36e680,23, 0xa36e700,23, 0xa36e780,23, 0xa36e800,23, 0xa36e880,23, 0xa36e900,23, 0xa36e980,23, 0xa36ea00,23, 0xa36ea80,23, 0xa36eb00,23, 0xa36eb80,23, 0xa36ec00,23, 0xa36ec80,23, 0xa36ed00,23, 0xa36ed80,23, 0xa36ee00,23, 0xa36ee80,23, 0xa36ef00,23, 0xa36ef80,23, 0xa36f000,23, 0xa36f080,23, 0xa36f100,23, 0xa36f180,23, 0xa36f200,23, 0xa36f280,23, 0xa36f300,23, 0xa36f380,23, 0xa36f400,23, 0xa36f480,23, 0xa36f500,23, 0xa36f580,23, 0xa36f600,23, 0xa36f680,23, 0xa36f700,23, 0xa36f780,23, 0xa36f800,23, 0xa36f880,23, 0xa36f900,23, 0xa36f980,23, 0xa36fa00,23, 0xa36fa80,23, 0xa36fb00,23, 0xa36fb80,23, 0xa36fc00,23, 0xa36fc80,23, 0xa36fd00,23, 0xa36fd80,23, 0xa36fe00,23, 0xa36fe80,23, 0xa36ff00,23, 0xa36ff80,23, 0xa370000,23, 0xa370080,23, 0xa370100,23, 0xa370180,23, 0xa370200,23, 0xa370280,23, 0xa370300,23, 0xa370380,23, 0xa370400,23, 0xa370480,23, 0xa370500,23, 0xa370580,23, 0xa370600,23, 0xa370680,23, 0xa370700,23, 0xa370780,23, 0xa370800,23, 0xa370880,23, 0xa370900,23, 0xa370980,23, 0xa370a00,23, 0xa370a80,23, 0xa370b00,23, 0xa370b80,23, 0xa370c00,23, 0xa370c80,23, 0xa370d00,23, 0xa370d80,23, 0xa370e00,23, 0xa370e80,23, 0xa370f00,23, 0xa370f80,23, 0xa371000,23, 0xa371080,23, 0xa371100,23, 0xa371180,23, 0xa371200,23, 0xa371280,23, 0xa371300,23, 0xa371380,23, 0xa371400,23, 0xa371480,23, 0xa371500,23, 0xa371580,23, 0xa371600,23, 0xa371680,23, 0xa371700,23, 0xa371780,23, 0xa371800,23, 0xa371880,23, 0xa371900,23, 0xa371980,23, 0xa371a00,23, 0xa371a80,23, 0xa371b00,23, 0xa371b80,23, 0xa371c00,23, 0xa371c80,23, 0xa371d00,23, 0xa371d80,23, 0xa371e00,23, 0xa371e80,23, 0xa371f00,23, 0xa371f80,23, 0xa372000,23, 0xa372080,23, 0xa372100,23, 0xa372180,23, 0xa372200,23, 0xa372280,23, 0xa372300,23, 0xa372380,23, 0xa372400,23, 0xa372480,23, 0xa372500,23, 0xa372580,23, 0xa372600,23, 0xa372680,23, 0xa372700,23, 0xa372780,23, 0xa372800,23, 0xa372880,23, 0xa372900,23, 0xa372980,23, 0xa372a00,23, 0xa372a80,23, 0xa372b00,23, 0xa372b80,23, 0xa372c00,23, 0xa372c80,23, 0xa372d00,23, 0xa372d80,23, 0xa372e00,23, 0xa372e80,23, 0xa372f00,23, 0xa372f80,23, 0xa373000,23, 0xa373080,23, 0xa373100,23, 0xa373180,23, 0xa373200,23, 0xa373280,23, 0xa373300,23, 0xa373380,23, 0xa373400,23, 0xa373480,23, 0xa373500,23, 0xa373580,23, 0xa373600,23, 0xa373680,23, 0xa373700,23, 0xa373780,23, 0xa373800,23, 0xa373880,23, 0xa373900,23, 0xa373980,23, 0xa373a00,23, 0xa373a80,23, 0xa373b00,23, 0xa373b80,23, 0xa380000,23, 0xa380080,23, 0xa380100,23, 0xa380180,23, 0xa380200,23, 0xa380280,23, 0xa380300,23, 0xa380380,23, 0xa380400,23, 0xa380480,23, 0xa380500,23, 0xa380580,23, 0xa380600,23, 0xa380680,23, 0xa380700,23, 0xa380780,23, 0xa380800,23, 0xa380880,23, 0xa380900,23, 0xa380980,23, 0xa380a00,23, 0xa380a80,23, 0xa380b00,23, 0xa380b80,23, 0xa380c00,23, 0xa380c80,23, 0xa380d00,23, 0xa380d80,23, 0xa380e00,23, 0xa380e80,23, 0xa380f00,23, 0xa380f80,23, 0xa381000,23, 0xa381080,23, 0xa381100,23, 0xa381180,23, 0xa381200,23, 0xa381280,23, 0xa381300,23, 0xa381380,23, 0xa381400,23, 0xa381480,23, 0xa381500,23, 0xa381580,23, 0xa381600,23, 0xa381680,23, 0xa381700,23, 0xa381780,23, 0xa381800,23, 0xa381880,23, 0xa381900,23, 0xa381980,23, 0xa381a00,23, 0xa381a80,23, 0xa381b00,23, 0xa381b80,23, 0xa381c00,23, 0xa381c80,23, 0xa381d00,23, 0xa381d80,23, 0xa381e00,23, 0xa381e80,23, 0xa381f00,23, 0xa381f80,23, 0xa382000,23, 0xa382080,23, 0xa382100,23, 0xa382180,23, 0xa382200,23, 0xa382280,23, 0xa382300,23, 0xa382380,23, 0xa382400,23, 0xa382480,23, 0xa382500,23, 0xa382580,23, 0xa382600,23, 0xa382680,23, 0xa382700,23, 0xa382780,23, 0xa382800,23, 0xa382880,23, 0xa382900,23, 0xa382980,23, 0xa382a00,23, 0xa382a80,23, 0xa382b00,23, 0xa382b80,23, 0xa382c00,23, 0xa382c80,23, 0xa382d00,23, 0xa382d80,23, 0xa382e00,23, 0xa382e80,23, 0xa382f00,23, 0xa382f80,23, 0xa383000,23, 0xa383080,23, 0xa383100,23, 0xa383180,23, 0xa383200,23, 0xa383280,23, 0xa383300,23, 0xa383380,23, 0xa383400,23, 0xa383480,23, 0xa383500,23, 0xa383580,23, 0xa383600,23, 0xa383680,23, 0xa383700,23, 0xa383780,23, 0xa383800,23, 0xa383880,23, 0xa383900,23, 0xa383980,23, 0xa383a00,23, 0xa383a80,23, 0xa383b00,23, 0xa383b80,23, 0xa383c00,23, 0xa383c80,23, 0xa383d00,23, 0xa383d80,23, 0xa383e00,23, 0xa383e80,23, 0xa383f00,23, 0xa383f80,23, 0xa384000,23, 0xa384080,23, 0xa384100,23, 0xa384180,23, 0xa384200,23, 0xa384280,23, 0xa384300,23, 0xa384380,23, 0xa384400,23, 0xa384480,23, 0xa384500,23, 0xa384580,23, 0xa384600,23, 0xa384680,23, 0xa384700,23, 0xa384780,23, 0xa384800,23, 0xa384880,23, 0xa384900,23, 0xa384980,23, 0xa384a00,23, 0xa384a80,23, 0xa384b00,23, 0xa384b80,23, 0xa384c00,23, 0xa384c80,23, 0xa384d00,23, 0xa384d80,23, 0xa384e00,23, 0xa384e80,23, 0xa384f00,23, 0xa384f80,23, 0xa385000,23, 0xa385080,23, 0xa385100,23, 0xa385180,23, 0xa385200,23, 0xa385280,23, 0xa385300,23, 0xa385380,23, 0xa385400,23, 0xa385480,23, 0xa385500,23, 0xa385580,23, 0xa385600,23, 0xa385680,23, 0xa385700,23, 0xa385780,23, 0xa385800,23, 0xa385880,23, 0xa385900,23, 0xa385980,23, 0xa385a00,23, 0xa385a80,23, 0xa385b00,23, 0xa385b80,23, 0xa385c00,23, 0xa385c80,23, 0xa385d00,23, 0xa385d80,23, 0xa385e00,23, 0xa385e80,23, 0xa385f00,23, 0xa385f80,23, 0xa386000,23, 0xa386080,23, 0xa386100,23, 0xa386180,23, 0xa386200,23, 0xa386280,23, 0xa386300,23, 0xa386380,23, 0xa386400,23, 0xa386480,23, 0xa386500,23, 0xa386580,23, 0xa386600,23, 0xa386680,23, 0xa386700,23, 0xa386780,23, 0xa386800,23, 0xa386880,23, 0xa386900,23, 0xa386980,23, 0xa386a00,23, 0xa386a80,23, 0xa386b00,23, 0xa386b80,23, 0xa386c00,23, 0xa386c80,23, 0xa386d00,23, 0xa386d80,23, 0xa386e00,23, 0xa386e80,23, 0xa386f00,23, 0xa386f80,23, 0xa387000,23, 0xa387080,23, 0xa387100,23, 0xa387180,23, 0xa387200,23, 0xa387280,23, 0xa387300,23, 0xa387380,23, 0xa387400,23, 0xa387480,23, 0xa387500,23, 0xa387580,23, 0xa387600,23, 0xa387680,23, 0xa387700,23, 0xa387780,23, 0xa387800,23, 0xa387880,23, 0xa387900,23, 0xa387980,23, 0xa387a00,23, 0xa387a80,23, 0xa387b00,23, 0xa387b80,23, 0xa387c00,23, 0xa387c80,23, 0xa387d00,23, 0xa387d80,23, 0xa387e00,23, 0xa387e80,23, 0xa387f00,23, 0xa387f80,23, 0xa388000,23, 0xa388080,23, 0xa388100,23, 0xa388180,23, 0xa388200,23, 0xa388280,23, 0xa388300,23, 0xa388380,23, 0xa388400,23, 0xa388480,23, 0xa388500,23, 0xa388580,23, 0xa388600,23, 0xa388680,23, 0xa388700,23, 0xa388780,23, 0xa388800,23, 0xa388880,23, 0xa388900,23, 0xa388980,23, 0xa388a00,23, 0xa388a80,23, 0xa388b00,23, 0xa388b80,23, 0xa388c00,23, 0xa388c80,23, 0xa388d00,23, 0xa388d80,23, 0xa388e00,23, 0xa388e80,23, 0xa388f00,23, 0xa388f80,23, 0xa389000,23, 0xa389080,23, 0xa389100,23, 0xa389180,23, 0xa389200,23, 0xa389280,23, 0xa389300,23, 0xa389380,23, 0xa389400,23, 0xa389480,23, 0xa389500,23, 0xa389580,23, 0xa389600,23, 0xa389680,23, 0xa389700,23, 0xa389780,23, 0xa389800,23, 0xa389880,23, 0xa389900,23, 0xa389980,23, 0xa389a00,23, 0xa389a80,23, 0xa389b00,23, 0xa389b80,23, 0xa389c00,23, 0xa389c80,23, 0xa389d00,23, 0xa389d80,23, 0xa389e00,23, 0xa389e80,23, 0xa389f00,23, 0xa389f80,23, 0xa38a000,23, 0xa38a080,23, 0xa38a100,23, 0xa38a180,23, 0xa38a200,23, 0xa38a280,23, 0xa38a300,23, 0xa38a380,23, 0xa38a400,23, 0xa38a480,23, 0xa38a500,23, 0xa38a580,23, 0xa38a600,23, 0xa38a680,23, 0xa38a700,23, 0xa38a780,23, 0xa38a800,23, 0xa38a880,23, 0xa38a900,23, 0xa38a980,23, 0xa38aa00,23, 0xa38aa80,23, 0xa38ab00,23, 0xa38ab80,23, 0xa38ac00,23, 0xa38ac80,23, 0xa38ad00,23, 0xa38ad80,23, 0xa38ae00,23, 0xa38ae80,23, 0xa38af00,23, 0xa38af80,23, 0xa38b000,23, 0xa38b080,23, 0xa38b100,23, 0xa38b180,23, 0xa38b200,23, 0xa38b280,23, 0xa38b300,23, 0xa38b380,23, 0xa38b400,23, 0xa38b480,23, 0xa38b500,23, 0xa38b580,23, 0xa38b600,23, 0xa38b680,23, 0xa38b700,23, 0xa38b780,23, 0xa38b800,23, 0xa38b880,23, 0xa38b900,23, 0xa38b980,23, 0xa38ba00,23, 0xa38ba80,23, 0xa38bb00,23, 0xa38bb80,23, 0xa38bc00,23, 0xa38bc80,23, 0xa38bd00,23, 0xa38bd80,23, 0xa38be00,23, 0xa38be80,23, 0xa38bf00,23, 0xa38bf80,23, 0xa38c000,23, 0xa38c080,23, 0xa38c100,23, 0xa38c180,23, 0xa38c200,23, 0xa38c280,23, 0xa38c300,23, 0xa38c380,23, 0xa38c400,23, 0xa38c480,23, 0xa38c500,23, 0xa38c580,23, 0xa38c600,23, 0xa38c680,23, 0xa38c700,23, 0xa38c780,23, 0xa38c800,23, 0xa38c880,23, 0xa38c900,23, 0xa38c980,23, 0xa38ca00,23, 0xa38ca80,23, 0xa38cb00,23, 0xa38cb80,23, 0xa38cc00,23, 0xa38cc80,23, 0xa38cd00,23, 0xa38cd80,23, 0xa38ce00,23, 0xa38ce80,23, 0xa38cf00,23, 0xa38cf80,23, 0xa38d000,23, 0xa38d080,23, 0xa38d100,23, 0xa38d180,23, 0xa38d200,23, 0xa38d280,23, 0xa38d300,23, 0xa38d380,23, 0xa38d400,23, 0xa38d480,23, 0xa38d500,23, 0xa38d580,23, 0xa38d600,23, 0xa38d680,23, 0xa38d700,23, 0xa38d780,23, 0xa38d800,23, 0xa38d880,23, 0xa38d900,23, 0xa38d980,23, 0xa38da00,23, 0xa38da80,23, 0xa38db00,23, 0xa38db80,23, 0xa38dc00,23, 0xa38dc80,23, 0xa38dd00,23, 0xa38dd80,23, 0xa38de00,23, 0xa38de80,23, 0xa38df00,23, 0xa38df80,23, 0xa38e000,23, 0xa38e080,23, 0xa38e100,23, 0xa38e180,23, 0xa38e200,23, 0xa38e280,23, 0xa38e300,23, 0xa38e380,23, 0xa38e400,23, 0xa38e480,23, 0xa38e500,23, 0xa38e580,23, 0xa38e600,23, 0xa38e680,23, 0xa38e700,23, 0xa38e780,23, 0xa38e800,23, 0xa38e880,23, 0xa38e900,23, 0xa38e980,23, 0xa38ea00,23, 0xa38ea80,23, 0xa38eb00,23, 0xa38eb80,23, 0xa38ec00,23, 0xa38ec80,23, 0xa38ed00,23, 0xa38ed80,23, 0xa38ee00,23, 0xa38ee80,23, 0xa38ef00,23, 0xa38ef80,23, 0xa38f000,23, 0xa38f080,23, 0xa38f100,23, 0xa38f180,23, 0xa38f200,23, 0xa38f280,23, 0xa38f300,23, 0xa38f380,23, 0xa38f400,23, 0xa38f480,23, 0xa38f500,23, 0xa38f580,23, 0xa38f600,23, 0xa38f680,23, 0xa38f700,23, 0xa38f780,23, 0xa38f800,23, 0xa38f880,23, 0xa38f900,23, 0xa38f980,23, 0xa38fa00,23, 0xa38fa80,23, 0xa38fb00,23, 0xa38fb80,23, 0xa38fc00,23, 0xa38fc80,23, 0xa38fd00,23, 0xa38fd80,23, 0xa38fe00,23, 0xa38fe80,23, 0xa38ff00,23, 0xa38ff80,23, 0xa390000,23, 0xa390080,23, 0xa390100,23, 0xa390180,23, 0xa390200,23, 0xa390280,23, 0xa390300,23, 0xa390380,23, 0xa390400,23, 0xa390480,23, 0xa390500,23, 0xa390580,23, 0xa390600,23, 0xa390680,23, 0xa390700,23, 0xa390780,23, 0xa390800,23, 0xa390880,23, 0xa390900,23, 0xa390980,23, 0xa390a00,23, 0xa390a80,23, 0xa390b00,23, 0xa390b80,23, 0xa390c00,23, 0xa390c80,23, 0xa390d00,23, 0xa390d80,23, 0xa390e00,23, 0xa390e80,23, 0xa390f00,23, 0xa390f80,23, 0xa391000,23, 0xa391080,23, 0xa391100,23, 0xa391180,23, 0xa391200,23, 0xa391280,23, 0xa391300,23, 0xa391380,23, 0xa391400,23, 0xa391480,23, 0xa391500,23, 0xa391580,23, 0xa391600,23, 0xa391680,23, 0xa391700,23, 0xa391780,23, 0xa391800,23, 0xa391880,23, 0xa391900,23, 0xa391980,23, 0xa391a00,23, 0xa391a80,23, 0xa391b00,23, 0xa391b80,23, 0xa391c00,23, 0xa391c80,23, 0xa391d00,23, 0xa391d80,23, 0xa391e00,23, 0xa391e80,23, 0xa391f00,23, 0xa391f80,23, 0xa392000,23, 0xa392080,23, 0xa392100,23, 0xa392180,23, 0xa392200,23, 0xa392280,23, 0xa392300,23, 0xa392380,23, 0xa392400,23, 0xa392480,23, 0xa392500,23, 0xa392580,23, 0xa392600,23, 0xa392680,23, 0xa392700,23, 0xa392780,23, 0xa392800,23, 0xa392880,23, 0xa392900,23, 0xa392980,23, 0xa392a00,23, 0xa392a80,23, 0xa392b00,23, 0xa392b80,23, 0xa392c00,23, 0xa392c80,23, 0xa392d00,23, 0xa392d80,23, 0xa392e00,23, 0xa392e80,23, 0xa392f00,23, 0xa392f80,23, 0xa393000,23, 0xa393080,23, 0xa393100,23, 0xa393180,23, 0xa393200,23, 0xa393280,23, 0xa393300,23, 0xa393380,23, 0xa393400,23, 0xa393480,23, 0xa393500,23, 0xa393580,23, 0xa393600,23, 0xa393680,23, 0xa393700,23, 0xa393780,23, 0xa393800,23, 0xa393880,23, 0xa393900,23, 0xa393980,23, 0xa393a00,23, 0xa393a80,23, 0xa393b00,23, 0xa393b80,23, 0xa393c00,23, 0xa393c80,23, 0xa393d00,23, 0xa393d80,23, 0xa393e00,23, 0xa393e80,23, 0xa393f00,23, 0xa393f80,23, 0xa394000,23, 0xa394080,23, 0xa394100,23, 0xa394180,23, 0xa394200,23, 0xa394280,23, 0xa394300,23, 0xa394380,23, 0xa394400,23, 0xa394480,23, 0xa394500,23, 0xa394580,23, 0xa394600,23, 0xa394680,23, 0xa394700,23, 0xa394780,23, 0xa394800,23, 0xa394880,23, 0xa394900,23, 0xa394980,23, 0xa394a00,23, 0xa394a80,23, 0xa394b00,23, 0xa394b80,23, 0xa394c00,23, 0xa394c80,23, 0xa394d00,23, 0xa394d80,23, 0xa394e00,23, 0xa394e80,23, 0xa394f00,23, 0xa394f80,23, 0xa395000,23, 0xa395080,23, 0xa395100,23, 0xa395180,23, 0xa395200,23, 0xa395280,23, 0xa395300,23, 0xa395380,23, 0xa395400,23, 0xa395480,23, 0xa395500,23, 0xa395580,23, 0xa395600,23, 0xa395680,23, 0xa395700,23, 0xa395780,23, 0xa395800,23, 0xa395880,23, 0xa395900,23, 0xa395980,23, 0xa395a00,23, 0xa395a80,23, 0xa395b00,23, 0xa395b80,23, 0xa395c00,23, 0xa395c80,23, 0xa395d00,23, 0xa395d80,23, 0xa395e00,23, 0xa395e80,23, 0xa395f00,23, 0xa395f80,23, 0xa396000,23, 0xa396080,23, 0xa396100,23, 0xa396180,23, 0xa396200,23, 0xa396280,23, 0xa396300,23, 0xa396380,23, 0xa396400,23, 0xa396480,23, 0xa396500,23, 0xa396580,23, 0xa396600,23, 0xa396680,23, 0xa396700,23, 0xa396780,23, 0xa396800,23, 0xa396880,23, 0xa396900,23, 0xa396980,23, 0xa396a00,23, 0xa396a80,23, 0xa396b00,23, 0xa396b80,23, 0xa396c00,23, 0xa396c80,23, 0xa396d00,23, 0xa396d80,23, 0xa396e00,23, 0xa396e80,23, 0xa396f00,23, 0xa396f80,23, 0xa397000,23, 0xa397080,23, 0xa397100,23, 0xa397180,23, 0xa397200,23, 0xa397280,23, 0xa397300,23, 0xa397380,23, 0xa397400,23, 0xa397480,23, 0xa397500,23, 0xa397580,23, 0xa397600,23, 0xa397680,23, 0xa397700,23, 0xa397780,23, 0xa397800,23, 0xa397880,23, 0xa397900,23, 0xa397980,23, 0xa397a00,23, 0xa397a80,23, 0xa397b00,23, 0xa397b80,23, 0xa397c00,23, 0xa397c80,23, 0xa397d00,23, 0xa397d80,23, 0xa397e00,23, 0xa397e80,23, 0xa397f00,23, 0xa397f80,23, 0xa398000,23, 0xa398080,23, 0xa398100,23, 0xa398180,23, 0xa398200,23, 0xa398280,23, 0xa398300,23, 0xa398380,23, 0xa398400,23, 0xa398480,23, 0xa398500,23, 0xa398580,23, 0xa398600,23, 0xa398680,23, 0xa398700,23, 0xa398780,23, 0xa398800,23, 0xa398880,23, 0xa398900,23, 0xa398980,23, 0xa398a00,23, 0xa398a80,23, 0xa398b00,23, 0xa398b80,23, 0xa398c00,23, 0xa398c80,23, 0xa398d00,23, 0xa398d80,23, 0xa398e00,23, 0xa398e80,23, 0xa398f00,23, 0xa398f80,23, 0xa399000,23, 0xa399080,23, 0xa399100,23, 0xa399180,23, 0xa399200,23, 0xa399280,23, 0xa399300,23, 0xa399380,23, 0xa399400,23, 0xa399480,23, 0xa399500,23, 0xa399580,23, 0xa399600,23, 0xa399680,23, 0xa399700,23, 0xa399780,23, 0xa399800,23, 0xa399880,23, 0xa399900,23, 0xa399980,23, 0xa399a00,23, 0xa399a80,23, 0xa399b00,23, 0xa399b80,23, 0xa399c00,23, 0xa399c80,23, 0xa399d00,23, 0xa399d80,23, 0xa399e00,23, 0xa399e80,23, 0xa399f00,23, 0xa399f80,23, 0xa39a000,23, 0xa39a080,23, 0xa39a100,23, 0xa39a180,23, 0xa39a200,23, 0xa39a280,23, 0xa39a300,23, 0xa39a380,23, 0xa39a400,23, 0xa39a480,23, 0xa39a500,23, 0xa39a580,23, 0xa39a600,23, 0xa39a680,23, 0xa39a700,23, 0xa39a780,23, 0xa39a800,23, 0xa39a880,23, 0xa39a900,23, 0xa39a980,23, 0xa39aa00,23, 0xa39aa80,23, 0xa39ab00,23, 0xa39ab80,23, 0xa39ac00,23, 0xa39ac80,23, 0xa39ad00,23, 0xa39ad80,23, 0xa39ae00,23, 0xa39ae80,23, 0xa39af00,23, 0xa39af80,23, 0xa39b000,23, 0xa39b080,23, 0xa39b100,23, 0xa39b180,23, 0xa39b200,23, 0xa39b280,23, 0xa39b300,23, 0xa39b380,23, 0xa39b400,23, 0xa39b480,23, 0xa39b500,23, 0xa39b580,23, 0xa39b600,23, 0xa39b680,23, 0xa39b700,23, 0xa39b780,23, 0xa39b800,23, 0xa39b880,23, 0xa39b900,23, 0xa39b980,23, 0xa39ba00,23, 0xa39ba80,23, 0xa39bb00,23, 0xa39bb80,23, 0xa39bc00,23, 0xa39bc80,23, 0xa39bd00,23, 0xa39bd80,23, 0xa39be00,23, 0xa39be80,23, 0xa39bf00,23, 0xa39bf80,23, 0xa39c000,23, 0xa39c080,23, 0xa39c100,23, 0xa39c180,23, 0xa39c200,23, 0xa39c280,23, 0xa39c300,23, 0xa39c380,23, 0xa39c400,23, 0xa39c480,23, 0xa39c500,23, 0xa39c580,23, 0xa39c600,23, 0xa39c680,23, 0xa39c700,23, 0xa39c780,23, 0xa39c800,23, 0xa39c880,23, 0xa39c900,23, 0xa39c980,23, 0xa39ca00,23, 0xa39ca80,23, 0xa39cb00,23, 0xa39cb80,23, 0xa39cc00,23, 0xa39cc80,23, 0xa39cd00,23, 0xa39cd80,23, 0xa39ce00,23, 0xa39ce80,23, 0xa39cf00,23, 0xa39cf80,23, 0xa39d000,23, 0xa39d080,23, 0xa39d100,23, 0xa39d180,23, 0xa39d200,23, 0xa39d280,23, 0xa39d300,23, 0xa39d380,23, 0xa39d400,23, 0xa39d480,23, 0xa39d500,23, 0xa39d580,23, 0xa39d600,23, 0xa39d680,23, 0xa39d700,23, 0xa39d780,23, 0xa39d800,23, 0xa39d880,23, 0xa39d900,23, 0xa39d980,23, 0xa39da00,23, 0xa39da80,23, 0xa39db00,23, 0xa39db80,23, 0xa39dc00,23, 0xa39dc80,23, 0xa39dd00,23, 0xa39dd80,23, 0xa39de00,23, 0xa39de80,23, 0xa39df00,23, 0xa39df80,23, 0xa39e000,23, 0xa39e080,23, 0xa39e100,23, 0xa39e180,23, 0xa39e200,23, 0xa39e280,23, 0xa39e300,23, 0xa39e380,23, 0xa39e400,23, 0xa39e480,23, 0xa39e500,23, 0xa39e580,23, 0xa39e600,23, 0xa39e680,23, 0xa39e700,23, 0xa39e780,23, 0xa39e800,23, 0xa39e880,23, 0xa39e900,23, 0xa39e980,23, 0xa39ea00,23, 0xa39ea80,23, 0xa39eb00,23, 0xa39eb80,23, 0xa39ec00,23, 0xa39ec80,23, 0xa39ed00,23, 0xa39ed80,23, 0xa39ee00,23, 0xa39ee80,23, 0xa39ef00,23, 0xa39ef80,23, 0xa39f000,23, 0xa39f080,23, 0xa39f100,23, 0xa39f180,23, 0xa39f200,23, 0xa39f280,23, 0xa39f300,23, 0xa39f380,23, 0xa39f400,23, 0xa39f480,23, 0xa39f500,23, 0xa39f580,23, 0xa39f600,23, 0xa39f680,23, 0xa39f700,23, 0xa39f780,23, 0xa39f800,23, 0xa39f880,23, 0xa39f900,23, 0xa39f980,23, 0xa39fa00,23, 0xa39fa80,23, 0xa39fb00,23, 0xa39fb80,23, 0xa39fc00,23, 0xa39fc80,23, 0xa39fd00,23, 0xa39fd80,23, 0xa39fe00,23, 0xa39fe80,23, 0xa39ff00,23, 0xa39ff80,23, 0xa3a0000,23, 0xa3a0080,23, 0xa3a0100,23, 0xa3a0180,23, 0xa3a0200,23, 0xa3a0280,23, 0xa3a0300,23, 0xa3a0380,23, 0xa3a0400,23, 0xa3a0480,23, 0xa3a0500,23, 0xa3a0580,23, 0xa3a0600,23, 0xa3a0680,23, 0xa3a0700,23, 0xa3a0780,23, 0xa3a0800,23, 0xa3a0880,23, 0xa3a0900,23, 0xa3a0980,23, 0xa3a0a00,23, 0xa3a0a80,23, 0xa3a0b00,23, 0xa3a0b80,23, 0xa3a0c00,23, 0xa3a0c80,23, 0xa3a0d00,23, 0xa3a0d80,23, 0xa3a0e00,23, 0xa3a0e80,23, 0xa3a0f00,23, 0xa3a0f80,23, 0xa3a1000,23, 0xa3a1080,23, 0xa3a1100,23, 0xa3a1180,23, 0xa3a1200,23, 0xa3a1280,23, 0xa3a1300,23, 0xa3a1380,23, 0xa3a1400,23, 0xa3a1480,23, 0xa3a1500,23, 0xa3a1580,23, 0xa3a1600,23, 0xa3a1680,23, 0xa3a1700,23, 0xa3a1780,23, 0xa3a1800,23, 0xa3a1880,23, 0xa3a1900,23, 0xa3a1980,23, 0xa3a1a00,23, 0xa3a1a80,23, 0xa3a1b00,23, 0xa3a1b80,23, 0xa3a1c00,23, 0xa3a1c80,23, 0xa3a1d00,23, 0xa3a1d80,23, 0xa3a1e00,23, 0xa3a1e80,23, 0xa3a1f00,23, 0xa3a1f80,23, 0xa3a2000,23, 0xa3a2080,23, 0xa3a2100,23, 0xa3a2180,23, 0xa3a2200,23, 0xa3a2280,23, 0xa3a2300,23, 0xa3a2380,23, 0xa3a2400,23, 0xa3a2480,23, 0xa3a2500,23, 0xa3a2580,23, 0xa3a2600,23, 0xa3a2680,23, 0xa3a2700,23, 0xa3a2780,23, 0xa3a2800,23, 0xa3a2880,23, 0xa3a2900,23, 0xa3a2980,23, 0xa3a2a00,23, 0xa3a2a80,23, 0xa3a2b00,23, 0xa3a2b80,23, 0xa3a2c00,23, 0xa3a2c80,23, 0xa3a2d00,23, 0xa3a2d80,23, 0xa3a2e00,23, 0xa3a2e80,23, 0xa3a2f00,23, 0xa3a2f80,23, 0xa3a3000,23, 0xa3a3080,23, 0xa3a3100,23, 0xa3a3180,23, 0xa3a3200,23, 0xa3a3280,23, 0xa3a3300,23, 0xa3a3380,23, 0xa3a3400,23, 0xa3a3480,23, 0xa3a3500,23, 0xa3a3580,23, 0xa3a3600,23, 0xa3a3680,23, 0xa3a3700,23, 0xa3a3780,23, 0xa3a3800,23, 0xa3a3880,23, 0xa3a3900,23, 0xa3a3980,23, 0xa3a3a00,23, 0xa3a3a80,23, 0xa3a3b00,23, 0xa3a3b80,23, 0xa3a3c00,23, 0xa3a3c80,23, 0xa3a3d00,23, 0xa3a3d80,23, 0xa3a3e00,23, 0xa3a3e80,23, 0xa3a3f00,23, 0xa3a3f80,23, 0xa3a4000,23, 0xa3a4080,23, 0xa3a4100,23, 0xa3a4180,23, 0xa3a4200,23, 0xa3a4280,23, 0xa3a4300,23, 0xa3a4380,23, 0xa3a4400,23, 0xa3a4480,23, 0xa3a4500,23, 0xa3a4580,23, 0xa3a4600,23, 0xa3a4680,23, 0xa3a4700,23, 0xa3a4780,23, 0xa3a4800,23, 0xa3a4880,23, 0xa3a4900,23, 0xa3a4980,23, 0xa3a4a00,23, 0xa3a4a80,23, 0xa3a4b00,23, 0xa3a4b80,23, 0xa3a4c00,23, 0xa3a4c80,23, 0xa3a4d00,23, 0xa3a4d80,23, 0xa3a4e00,23, 0xa3a4e80,23, 0xa3a4f00,23, 0xa3a4f80,23, 0xa3a5000,23, 0xa3a5080,23, 0xa3a5100,23, 0xa3a5180,23, 0xa3a5200,23, 0xa3a5280,23, 0xa3a5300,23, 0xa3a5380,23, 0xa3a5400,23, 0xa3a5480,23, 0xa3a5500,23, 0xa3a5580,23, 0xa3a5600,23, 0xa3a5680,23, 0xa3a5700,23, 0xa3a5780,23, 0xa3a5800,23, 0xa3a5880,23, 0xa3a5900,23, 0xa3a5980,23, 0xa3a5a00,23, 0xa3a5a80,23, 0xa3a5b00,23, 0xa3a5b80,23, 0xa3a5c00,23, 0xa3a5c80,23, 0xa3a5d00,23, 0xa3a5d80,23, 0xa3a5e00,23, 0xa3a5e80,23, 0xa3a5f00,23, 0xa3a5f80,23, 0xa3a6000,23, 0xa3a6080,23, 0xa3a6100,23, 0xa3a6180,23, 0xa3a6200,23, 0xa3a6280,23, 0xa3a6300,23, 0xa3a6380,23, 0xa3a6400,23, 0xa3a6480,23, 0xa3a6500,23, 0xa3a6580,23, 0xa3a6600,23, 0xa3a6680,23, 0xa3a6700,23, 0xa3a6780,23, 0xa3a6800,23, 0xa3a6880,23, 0xa3a6900,23, 0xa3a6980,23, 0xa3a6a00,23, 0xa3a6a80,23, 0xa3a6b00,23, 0xa3a6b80,23, 0xa3a6c00,23, 0xa3a6c80,23, 0xa3a6d00,23, 0xa3a6d80,23, 0xa3a6e00,23, 0xa3a6e80,23, 0xa3a6f00,23, 0xa3a6f80,23, 0xa3a7000,23, 0xa3a7080,23, 0xa3a7100,23, 0xa3a7180,23, 0xa3a7200,23, 0xa3a7280,23, 0xa3a7300,23, 0xa3a7380,23, 0xa3a7400,23, 0xa3a7480,23, 0xa3a7500,23, 0xa3a7580,23, 0xa3a7600,23, 0xa3a7680,23, 0xa3a7700,23, 0xa3a7780,23, 0xa3a7800,23, 0xa3a7880,23, 0xa3a7900,23, 0xa3a7980,23, 0xa3a7a00,23, 0xa3a7a80,23, 0xa3a7b00,23, 0xa3a7b80,23, 0xa3a7c00,23, 0xa3a7c80,23, 0xa3a7d00,23, 0xa3a7d80,23, 0xa3a7e00,23, 0xa3a7e80,23, 0xa3a7f00,23, 0xa3a7f80,23, 0xa3a8000,23, 0xa3a8080,23, 0xa3a8100,23, 0xa3a8180,23, 0xa3a8200,23, 0xa3a8280,23, 0xa3a8300,23, 0xa3a8380,23, 0xa3a8400,23, 0xa3a8480,23, 0xa3a8500,23, 0xa3a8580,23, 0xa3a8600,23, 0xa3a8680,23, 0xa3a8700,23, 0xa3a8780,23, 0xa3a8800,23, 0xa3a8880,23, 0xa3a8900,23, 0xa3a8980,23, 0xa3a8a00,23, 0xa3a8a80,23, 0xa3a8b00,23, 0xa3a8b80,23, 0xa3a8c00,23, 0xa3a8c80,23, 0xa3a8d00,23, 0xa3a8d80,23, 0xa3a8e00,23, 0xa3a8e80,23, 0xa3a8f00,23, 0xa3a8f80,23, 0xa3a9000,23, 0xa3a9080,23, 0xa3a9100,23, 0xa3a9180,23, 0xa3a9200,23, 0xa3a9280,23, 0xa3a9300,23, 0xa3a9380,23, 0xa3a9400,23, 0xa3a9480,23, 0xa3a9500,23, 0xa3a9580,23, 0xa3a9600,23, 0xa3a9680,23, 0xa3a9700,23, 0xa3a9780,23, 0xa3a9800,23, 0xa3a9880,23, 0xa3a9900,23, 0xa3a9980,23, 0xa3a9a00,23, 0xa3a9a80,23, 0xa3a9b00,23, 0xa3a9b80,23, 0xa3a9c00,23, 0xa3a9c80,23, 0xa3a9d00,23, 0xa3a9d80,23, 0xa3a9e00,23, 0xa3a9e80,23, 0xa3a9f00,23, 0xa3a9f80,23, 0xa3aa000,23, 0xa3aa080,23, 0xa3aa100,23, 0xa3aa180,23, 0xa3aa200,23, 0xa3aa280,23, 0xa3aa300,23, 0xa3aa380,23, 0xa3aa400,23, 0xa3aa480,23, 0xa3aa500,23, 0xa3aa580,23, 0xa3aa600,23, 0xa3aa680,23, 0xa3aa700,23, 0xa3aa780,23, 0xa3aa800,23, 0xa3aa880,23, 0xa3aa900,23, 0xa3aa980,23, 0xa3aaa00,23, 0xa3aaa80,23, 0xa3aab00,23, 0xa3aab80,23, 0xa3aac00,23, 0xa3aac80,23, 0xa3aad00,23, 0xa3aad80,23, 0xa3aae00,23, 0xa3aae80,23, 0xa3aaf00,23, 0xa3aaf80,23, 0xa3ab000,23, 0xa3ab080,23, 0xa3ab100,23, 0xa3ab180,23, 0xa3ab200,23, 0xa3ab280,23, 0xa3ab300,23, 0xa3ab380,23, 0xa3ab400,23, 0xa3ab480,23, 0xa3ab500,23, 0xa3ab580,23, 0xa3ab600,23, 0xa3ab680,23, 0xa3ab700,23, 0xa3ab780,23, 0xa3ab800,23, 0xa3ab880,23, 0xa3ab900,23, 0xa3ab980,23, 0xa3aba00,23, 0xa3aba80,23, 0xa3abb00,23, 0xa3abb80,23, 0xa3abc00,23, 0xa3abc80,23, 0xa3abd00,23, 0xa3abd80,23, 0xa3abe00,23, 0xa3abe80,23, 0xa3abf00,23, 0xa3abf80,23, 0xa3ac000,23, 0xa3ac080,23, 0xa3ac100,23, 0xa3ac180,23, 0xa3ac200,23, 0xa3ac280,23, 0xa3ac300,23, 0xa3ac380,23, 0xa3ac400,23, 0xa3ac480,23, 0xa3ac500,23, 0xa3ac580,23, 0xa3ac600,23, 0xa3ac680,23, 0xa3ac700,23, 0xa3ac780,23, 0xa3ac800,23, 0xa3ac880,23, 0xa3ac900,23, 0xa3ac980,23, 0xa3aca00,23, 0xa3aca80,23, 0xa3acb00,23, 0xa3acb80,23, 0xa3acc00,23, 0xa3acc80,23, 0xa3acd00,23, 0xa3acd80,23, 0xa3ace00,23, 0xa3ace80,23, 0xa3acf00,23, 0xa3acf80,23, 0xa3ad000,23, 0xa3ad080,23, 0xa3ad100,23, 0xa3ad180,23, 0xa3ad200,23, 0xa3ad280,23, 0xa3ad300,23, 0xa3ad380,23, 0xa3ad400,23, 0xa3ad480,23, 0xa3ad500,23, 0xa3ad580,23, 0xa3ad600,23, 0xa3ad680,23, 0xa3ad700,23, 0xa3ad780,23, 0xa3ad800,23, 0xa3ad880,23, 0xa3ad900,23, 0xa3ad980,23, 0xa3ada00,23, 0xa3ada80,23, 0xa3adb00,23, 0xa3adb80,23, 0xa3adc00,23, 0xa3adc80,23, 0xa3add00,23, 0xa3add80,23, 0xa3ade00,23, 0xa3ade80,23, 0xa3adf00,23, 0xa3adf80,23, 0xa3ae000,23, 0xa3ae080,23, 0xa3ae100,23, 0xa3ae180,23, 0xa3ae200,23, 0xa3ae280,23, 0xa3ae300,23, 0xa3ae380,23, 0xa3ae400,23, 0xa3ae480,23, 0xa3ae500,23, 0xa3ae580,23, 0xa3ae600,23, 0xa3ae680,23, 0xa3ae700,23, 0xa3ae780,23, 0xa3ae800,23, 0xa3ae880,23, 0xa3ae900,23, 0xa3ae980,23, 0xa3aea00,23, 0xa3aea80,23, 0xa3aeb00,23, 0xa3aeb80,23, 0xa3aec00,23, 0xa3aec80,23, 0xa3aed00,23, 0xa3aed80,23, 0xa3aee00,23, 0xa3aee80,23, 0xa3aef00,23, 0xa3aef80,23, 0xa3af000,23, 0xa3af080,23, 0xa3af100,23, 0xa3af180,23, 0xa3af200,23, 0xa3af280,23, 0xa3af300,23, 0xa3af380,23, 0xa3af400,23, 0xa3af480,23, 0xa3af500,23, 0xa3af580,23, 0xa3af600,23, 0xa3af680,23, 0xa3af700,23, 0xa3af780,23, 0xa3af800,23, 0xa3af880,23, 0xa3af900,23, 0xa3af980,23, 0xa3afa00,23, 0xa3afa80,23, 0xa3afb00,23, 0xa3afb80,23, 0xa3afc00,23, 0xa3afc80,23, 0xa3afd00,23, 0xa3afd80,23, 0xa3afe00,23, 0xa3afe80,23, 0xa3aff00,23, 0xa3aff80,23, 0xa3b0000,23, 0xa3b0080,23, 0xa3b0100,23, 0xa3b0180,23, 0xa3b0200,23, 0xa3b0280,23, 0xa3b0300,23, 0xa3b0380,23, 0xa3b0400,23, 0xa3b0480,23, 0xa3b0500,23, 0xa3b0580,23, 0xa3b0600,23, 0xa3b0680,23, 0xa3b0700,23, 0xa3b0780,23, 0xa3b0800,23, 0xa3b0880,23, 0xa3b0900,23, 0xa3b0980,23, 0xa3b0a00,23, 0xa3b0a80,23, 0xa3b0b00,23, 0xa3b0b80,23, 0xa3b0c00,23, 0xa3b0c80,23, 0xa3b0d00,23, 0xa3b0d80,23, 0xa3b0e00,23, 0xa3b0e80,23, 0xa3b0f00,23, 0xa3b0f80,23, 0xa3b1000,23, 0xa3b1080,23, 0xa3b1100,23, 0xa3b1180,23, 0xa3b1200,23, 0xa3b1280,23, 0xa3b1300,23, 0xa3b1380,23, 0xa3b1400,23, 0xa3b1480,23, 0xa3b1500,23, 0xa3b1580,23, 0xa3b1600,23, 0xa3b1680,23, 0xa3b1700,23, 0xa3b1780,23, 0xa3b1800,23, 0xa3b1880,23, 0xa3b1900,23, 0xa3b1980,23, 0xa3b1a00,23, 0xa3b1a80,23, 0xa3b1b00,23, 0xa3b1b80,23, 0xa3b1c00,23, 0xa3b1c80,23, 0xa3b1d00,23, 0xa3b1d80,23, 0xa3b1e00,23, 0xa3b1e80,23, 0xa3b1f00,23, 0xa3b1f80,23, 0xa3b2000,23, 0xa3b2080,23, 0xa3b2100,23, 0xa3b2180,23, 0xa3b2200,23, 0xa3b2280,23, 0xa3b2300,23, 0xa3b2380,23, 0xa3b2400,23, 0xa3b2480,23, 0xa3b2500,23, 0xa3b2580,23, 0xa3b2600,23, 0xa3b2680,23, 0xa3b2700,23, 0xa3b2780,23, 0xa3b2800,23, 0xa3b2880,23, 0xa3b2900,23, 0xa3b2980,23, 0xa3b2a00,23, 0xa3b2a80,23, 0xa3b2b00,23, 0xa3b2b80,23, 0xa3b2c00,23, 0xa3b2c80,23, 0xa3b2d00,23, 0xa3b2d80,23, 0xa3b2e00,23, 0xa3b2e80,23, 0xa3b2f00,23, 0xa3b2f80,23, 0xa3b3000,23, 0xa3b3080,23, 0xa3b3100,23, 0xa3b3180,23, 0xa3b3200,23, 0xa3b3280,23, 0xa3b3300,23, 0xa3b3380,23, 0xa3b3400,23, 0xa3b3480,23, 0xa3b3500,23, 0xa3b3580,23, 0xa3b3600,23, 0xa3b3680,23, 0xa3b3700,23, 0xa3b3780,23, 0xa3b3800,23, 0xa3b3880,23, 0xa3b3900,23, 0xa3b3980,23, 0xa3b3a00,23, 0xa3b3a80,23, 0xa3b3b00,23, 0xa3b3b80,23, 0xa3b3c00,23, 0xa3b3c80,23, 0xa3b3d00,23, 0xa3b3d80,23, 0xa3b3e00,23, 0xa3b3e80,23, 0xa3b3f00,23, 0xa3b3f80,23, 0xa3b4000,23, 0xa3b4080,23, 0xa3b4100,23, 0xa3b4180,23, 0xa3b4200,23, 0xa3b4280,23, 0xa3b4300,23, 0xa3b4380,23, 0xa3b4400,23, 0xa3b4480,23, 0xa3b4500,23, 0xa3b4580,23, 0xa3b4600,23, 0xa3b4680,23, 0xa3b4700,23, 0xa3b4780,23, 0xa3b4800,23, 0xa3b4880,23, 0xa3b4900,23, 0xa3b4980,23, 0xa3b4a00,23, 0xa3b4a80,23, 0xa3b4b00,23, 0xa3b4b80,23, 0xa3b4c00,23, 0xa3b4c80,23, 0xa3b4d00,23, 0xa3b4d80,23, 0xa3b4e00,23, 0xa3b4e80,23, 0xa3b4f00,23, 0xa3b4f80,23, 0xa3b5000,23, 0xa3b5080,23, 0xa3b5100,23, 0xa3b5180,23, 0xa3b5200,23, 0xa3b5280,23, 0xa3b5300,23, 0xa3b5380,23, 0xa3b5400,23, 0xa3b5480,23, 0xa3b5500,23, 0xa3b5580,23, 0xa3b5600,23, 0xa3b5680,23, 0xa3b5700,23, 0xa3b5780,23, 0xa3b5800,23, 0xa3b5880,23, 0xa3b5900,23, 0xa3b5980,23, 0xa3b5a00,23, 0xa3b5a80,23, 0xa3b5b00,23, 0xa3b5b80,23, 0xa3b5c00,23, 0xa3b5c80,23, 0xa3b5d00,23, 0xa3b5d80,23, 0xa3b5e00,23, 0xa3b5e80,23, 0xa3b5f00,23, 0xa3b5f80,23, 0xa3b6000,23, 0xa3b6080,23, 0xa3b6100,23, 0xa3b6180,23, 0xa3b6200,23, 0xa3b6280,23, 0xa3b6300,23, 0xa3b6380,23, 0xa3b6400,23, 0xa3b6480,23, 0xa3b6500,23, 0xa3b6580,23, 0xa3b6600,23, 0xa3b6680,23, 0xa3b6700,23, 0xa3b6780,23, 0xa3b6800,23, 0xa3b6880,23, 0xa3b6900,23, 0xa3b6980,23, 0xa3b6a00,23, 0xa3b6a80,23, 0xa3b6b00,23, 0xa3b6b80,23, 0xa3b6c00,23, 0xa3b6c80,23, 0xa3b6d00,23, 0xa3b6d80,23, 0xa3b6e00,23, 0xa3b6e80,23, 0xa3b6f00,23, 0xa3b6f80,23, 0xa3b7000,23, 0xa3b7080,23, 0xa3b7100,23, 0xa3b7180,23, 0xa3b7200,23, 0xa3b7280,23, 0xa3b7300,23, 0xa3b7380,23, 0xa3b7400,23, 0xa3b7480,23, 0xa3b7500,23, 0xa3b7580,23, 0xa3b7600,23, 0xa3b7680,23, 0xa3b7700,23, 0xa3b7780,23, 0xa3b7800,23, 0xa3b7880,23, 0xa3b7900,23, 0xa3b7980,23, 0xa3b7a00,23, 0xa3b7a80,23, 0xa3b7b00,23, 0xa3b7b80,23, 0xa3b7c00,23, 0xa3b7c80,23, 0xa3b7d00,23, 0xa3b7d80,23, 0xa3b7e00,23, 0xa3b7e80,23, 0xa3b7f00,23, 0xa3b7f80,23, 0xa3b8000,23, 0xa3b8080,23, 0xa3b8100,23, 0xa3b8180,23, 0xa3b8200,23, 0xa3b8280,23, 0xa3b8300,23, 0xa3b8380,23, 0xa3b8400,23, 0xa3b8480,23, 0xa3b8500,23, 0xa3b8580,23, 0xa3b8600,23, 0xa3b8680,23, 0xa3b8700,23, 0xa3b8780,23, 0xa3b8800,23, 0xa3b8880,23, 0xa3b8900,23, 0xa3b8980,23, 0xa3b8a00,23, 0xa3b8a80,23, 0xa3b8b00,23, 0xa3b8b80,23, 0xa3b8c00,23, 0xa3b8c80,23, 0xa3b8d00,23, 0xa3b8d80,23, 0xa3b8e00,23, 0xa3b8e80,23, 0xa3b8f00,23, 0xa3b8f80,23, 0xa3b9000,23, 0xa3b9080,23, 0xa3b9100,23, 0xa3b9180,23, 0xa3b9200,23, 0xa3b9280,23, 0xa3b9300,23, 0xa3b9380,23, 0xa3b9400,23, 0xa3b9480,23, 0xa3b9500,23, 0xa3b9580,23, 0xa3b9600,23, 0xa3b9680,23, 0xa3b9700,23, 0xa3b9780,23, 0xa3b9800,23, 0xa3b9880,23, 0xa3b9900,23, 0xa3b9980,23, 0xa3b9a00,23, 0xa3b9a80,23, 0xa3b9b00,23, 0xa3b9b80,23, 0xa3b9c00,23, 0xa3b9c80,23, 0xa3b9d00,23, 0xa3b9d80,23, 0xa3b9e00,23, 0xa3b9e80,23, 0xa3b9f00,23, 0xa3b9f80,23, 0xa3ba000,23, 0xa3ba080,23, 0xa3ba100,23, 0xa3ba180,23, 0xa3ba200,23, 0xa3ba280,23, 0xa3ba300,23, 0xa3ba380,23, 0xa3ba400,23, 0xa3ba480,23, 0xa3ba500,23, 0xa3ba580,23, 0xa3ba600,23, 0xa3ba680,23, 0xa3ba700,23, 0xa3ba780,23, 0xa3ba800,23, 0xa3ba880,23, 0xa3ba900,23, 0xa3ba980,23, 0xa3baa00,23, 0xa3baa80,23, 0xa3bab00,23, 0xa3bab80,23, 0xa3bac00,23, 0xa3bac80,23, 0xa3bad00,23, 0xa3bad80,23, 0xa3bae00,23, 0xa3bae80,23, 0xa3baf00,23, 0xa3baf80,23, 0xa3bb000,23, 0xa3bb080,23, 0xa3bb100,23, 0xa3bb180,23, 0xa3bb200,23, 0xa3bb280,23, 0xa3bb300,23, 0xa3bb380,23, 0xa3bb400,23, 0xa3bb480,23, 0xa3bb500,23, 0xa3bb580,23, 0xa3bb600,23, 0xa3bb680,23, 0xa3bb700,23, 0xa3bb780,23, 0xa3bb800,23, 0xa3bb880,23, 0xa3bb900,23, 0xa3bb980,23, 0xa3bba00,23, 0xa3bba80,23, 0xa3bbb00,23, 0xa3bbb80,23, 0xa3bbc00,23, 0xa3bbc80,23, 0xa3bbd00,23, 0xa3bbd80,23, 0xa3bbe00,23, 0xa3bbe80,23, 0xa3bbf00,23, 0xa3bbf80,23, 0xa3bc000,23, 0xa3bc080,23, 0xa3bc100,23, 0xa3bc180,23, 0xa3bc200,23, 0xa3bc280,23, 0xa3bc300,23, 0xa3bc380,23, 0xa3bc400,23, 0xa3bc480,23, 0xa3bc500,23, 0xa3bc580,23, 0xa3bc600,23, 0xa3bc680,23, 0xa3bc700,23, 0xa3bc780,23, 0xa3bc800,23, 0xa3bc880,23, 0xa3bc900,23, 0xa3bc980,23, 0xa3bca00,23, 0xa3bca80,23, 0xa3bcb00,23, 0xa3bcb80,23, 0xa3bcc00,23, 0xa3bcc80,23, 0xa3bcd00,23, 0xa3bcd80,23, 0xa3bce00,23, 0xa3bce80,23, 0xa3bcf00,23, 0xa3bcf80,23, 0xa3bd000,23, 0xa3bd080,23, 0xa3bd100,23, 0xa3bd180,23, 0xa3bd200,23, 0xa3bd280,23, 0xa3bd300,23, 0xa3bd380,23, 0xa3bd400,23, 0xa3bd480,23, 0xa3bd500,23, 0xa3bd580,23, 0xa3bd600,23, 0xa3bd680,23, 0xa3bd700,23, 0xa3bd780,23, 0xa3bd800,23, 0xa3bd880,23, 0xa3bd900,23, 0xa3bd980,23, 0xa3bda00,23, 0xa3bda80,23, 0xa3bdb00,23, 0xa3bdb80,23, 0xa3bdc00,23, 0xa3bdc80,23, 0xa3bdd00,23, 0xa3bdd80,23, 0xa3bde00,23, 0xa3bde80,23, 0xa3bdf00,23, 0xa3bdf80,23, 0xa3be000,23, 0xa3be080,23, 0xa3be100,23, 0xa3be180,23, 0xa3be200,23, 0xa3be280,23, 0xa3be300,23, 0xa3be380,23, 0xa3be400,23, 0xa3be480,23, 0xa3be500,23, 0xa3be580,23, 0xa3be600,23, 0xa3be680,23, 0xa3be700,23, 0xa3be780,23, 0xa3be800,23, 0xa3be880,23, 0xa3be900,23, 0xa3be980,23, 0xa3bea00,23, 0xa3bea80,23, 0xa3beb00,23, 0xa3beb80,23, 0xa3bec00,23, 0xa3bec80,23, 0xa3bed00,23, 0xa3bed80,23, 0xa3bee00,23, 0xa3bee80,23, 0xa3bef00,23, 0xa3bef80,23, 0xa3bf000,23, 0xa3bf080,23, 0xa3bf100,23, 0xa3bf180,23, 0xa3bf200,23, 0xa3bf280,23, 0xa3bf300,23, 0xa3bf380,23, 0xa3bf400,23, 0xa3bf480,23, 0xa3bf500,23, 0xa3bf580,23, 0xa3bf600,23, 0xa3bf680,23, 0xa3bf700,23, 0xa3bf780,23, 0xa3bf800,23, 0xa3bf880,23, 0xa3bf900,23, 0xa3bf980,23, 0xa3bfa00,23, 0xa3bfa80,23, 0xa3bfb00,23, 0xa3bfb80,23, 0xa3bfc00,23, 0xa3bfc80,23, 0xa3bfd00,23, 0xa3bfd80,23, 0xa3bfe00,23, 0xa3bfe80,23, 0xa3bff00,23, 0xa3bff80,23, 0xa3c0000,23, 0xa3c0080,23, 0xa3c0100,23, 0xa3c0180,23, 0xa3c0200,23, 0xa3c0280,23, 0xa3c0300,23, 0xa3c0380,23, 0xa3c0400,23, 0xa3c0480,23, 0xa3c0500,23, 0xa3c0580,23, 0xa3c0600,23, 0xa3c0680,23, 0xa3c0700,23, 0xa3c0780,23, 0xa3c0800,23, 0xa3c0880,23, 0xa3c0900,23, 0xa3c0980,23, 0xa3c0a00,23, 0xa3c0a80,23, 0xa3c0b00,23, 0xa3c0b80,23, 0xa3c0c00,23, 0xa3c0c80,23, 0xa3c0d00,23, 0xa3c0d80,23, 0xa3c0e00,23, 0xa3c0e80,23, 0xa3c0f00,23, 0xa3c0f80,23, 0xa3c1000,23, 0xa3c1080,23, 0xa3c1100,23, 0xa3c1180,23, 0xa3c1200,23, 0xa3c1280,23, 0xa3c1300,23, 0xa3c1380,23, 0xa3c1400,23, 0xa3c1480,23, 0xa3c1500,23, 0xa3c1580,23, 0xa3c1600,23, 0xa3c1680,23, 0xa3c1700,23, 0xa3c1780,23, 0xa3c1800,23, 0xa3c1880,23, 0xa3c1900,23, 0xa3c1980,23, 0xa3c1a00,23, 0xa3c1a80,23, 0xa3c1b00,23, 0xa3c1b80,23, 0xa3c1c00,23, 0xa3c1c80,23, 0xa3c1d00,23, 0xa3c1d80,23, 0xa3c1e00,23, 0xa3c1e80,23, 0xa3c1f00,23, 0xa3c1f80,23, 0xa3c2000,23, 0xa3c2080,23, 0xa3c2100,23, 0xa3c2180,23, 0xa3c2200,23, 0xa3c2280,23, 0xa3c2300,23, 0xa3c2380,23, 0xa3c2400,23, 0xa3c2480,23, 0xa3c2500,23, 0xa3c2580,23, 0xa3c2600,23, 0xa3c2680,23, 0xa3c2700,23, 0xa3c2780,23, 0xa3c2800,23, 0xa3c2880,23, 0xa3c2900,23, 0xa3c2980,23, 0xa3c2a00,23, 0xa3c2a80,23, 0xa3c2b00,23, 0xa3c2b80,23, 0xa3c2c00,23, 0xa3c2c80,23, 0xa3c2d00,23, 0xa3c2d80,23, 0xa3c2e00,23, 0xa3c2e80,23, 0xa3c2f00,23, 0xa3c2f80,23, 0xa3c3000,23, 0xa3c3080,23, 0xa3c3100,23, 0xa3c3180,23, 0xa3c3200,23, 0xa3c3280,23, 0xa3c3300,23, 0xa3c3380,23, 0xa3c3400,23, 0xa3c3480,23, 0xa3c3500,23, 0xa3c3580,23, 0xa3c3600,23, 0xa3c3680,23, 0xa3c3700,23, 0xa3c3780,23, 0xa3c3800,23, 0xa3c3880,23, 0xa3c3900,23, 0xa3c3980,23, 0xa3c3a00,23, 0xa3c3a80,23, 0xa3c3b00,23, 0xa3c3b80,23, 0xa3c3c00,23, 0xa3c3c80,23, 0xa3c3d00,23, 0xa3c3d80,23, 0xa3c3e00,23, 0xa3c3e80,23, 0xa3c3f00,23, 0xa3c3f80,23, 0xa3c4000,23, 0xa3c4080,23, 0xa3c4100,23, 0xa3c4180,23, 0xa3c4200,23, 0xa3c4280,23, 0xa3c4300,23, 0xa3c4380,23, 0xa3c4400,23, 0xa3c4480,23, 0xa3c4500,23, 0xa3c4580,23, 0xa3c4600,23, 0xa3c4680,23, 0xa3c4700,23, 0xa3c4780,23, 0xa3c4800,23, 0xa3c4880,23, 0xa3c4900,23, 0xa3c4980,23, 0xa3c4a00,23, 0xa3c4a80,23, 0xa3c4b00,23, 0xa3c4b80,23, 0xa3c4c00,23, 0xa3c4c80,23, 0xa3c4d00,23, 0xa3c4d80,23, 0xa3c4e00,23, 0xa3c4e80,23, 0xa3c4f00,23, 0xa3c4f80,23, 0xa3c5000,23, 0xa3c5080,23, 0xa3c5100,23, 0xa3c5180,23, 0xa3c5200,23, 0xa3c5280,23, 0xa3c5300,23, 0xa3c5380,23, 0xa3c5400,23, 0xa3c5480,23, 0xa3c5500,23, 0xa3c5580,23, 0xa3c5600,23, 0xa3c5680,23, 0xa3c5700,23, 0xa3c5780,23, 0xa3c5800,23, 0xa3c5880,23, 0xa3c5900,23, 0xa3c5980,23, 0xa3c5a00,23, 0xa3c5a80,23, 0xa3c5b00,23, 0xa3c5b80,23, 0xa3c5c00,23, 0xa3c5c80,23, 0xa3c5d00,23, 0xa3c5d80,23, 0xa3c5e00,23, 0xa3c5e80,23, 0xa3c5f00,23, 0xa3c5f80,23, 0xa3c6000,23, 0xa3c6080,23, 0xa3c6100,23, 0xa3c6180,23, 0xa3c6200,23, 0xa3c6280,23, 0xa3c6300,23, 0xa3c6380,23, 0xa3c6400,23, 0xa3c6480,23, 0xa3c6500,23, 0xa3c6580,23, 0xa3c6600,23, 0xa3c6680,23, 0xa3c6700,23, 0xa3c6780,23, 0xa3c6800,23, 0xa3c6880,23, 0xa3c6900,23, 0xa3c6980,23, 0xa3c6a00,23, 0xa3c6a80,23, 0xa3c6b00,23, 0xa3c6b80,23, 0xa3c6c00,23, 0xa3c6c80,23, 0xa3c6d00,23, 0xa3c6d80,23, 0xa3c6e00,23, 0xa3c6e80,23, 0xa3c6f00,23, 0xa3c6f80,23, 0xa3c7000,23, 0xa3c7080,23, 0xa3c7100,23, 0xa3c7180,23, 0xa3c7200,23, 0xa3c7280,23, 0xa3c7300,23, 0xa3c7380,23, 0xa3c7400,23, 0xa3c7480,23, 0xa3c7500,23, 0xa3c7580,23, 0xa3c7600,23, 0xa3c7680,23, 0xa3c7700,23, 0xa3c7780,23, 0xa3c7800,23, 0xa3c7880,23, 0xa3c7900,23, 0xa3c7980,23, 0xa3c7a00,23, 0xa3c7a80,23, 0xa3c7b00,23, 0xa3c7b80,23, 0xa3c7c00,23, 0xa3c7c80,23, 0xa3c7d00,23, 0xa3c7d80,23, 0xa3c7e00,23, 0xa3c7e80,23, 0xa3c7f00,23, 0xa3c7f80,23, 0xa3c8000,23, 0xa3c8080,23, 0xa3c8100,23, 0xa3c8180,23, 0xa3c8200,23, 0xa3c8280,23, 0xa3c8300,23, 0xa3c8380,23, 0xa3c8400,23, 0xa3c8480,23, 0xa3c8500,23, 0xa3c8580,23, 0xa3c8600,23, 0xa3c8680,23, 0xa3c8700,23, 0xa3c8780,23, 0xa3c8800,23, 0xa3c8880,23, 0xa3c8900,23, 0xa3c8980,23, 0xa3c8a00,23, 0xa3c8a80,23, 0xa3c8b00,23, 0xa3c8b80,23, 0xa3c8c00,23, 0xa3c8c80,23, 0xa3c8d00,23, 0xa3c8d80,23, 0xa3c8e00,23, 0xa3c8e80,23, 0xa3c8f00,23, 0xa3c8f80,23, 0xa3c9000,23, 0xa3c9080,23, 0xa3c9100,23, 0xa3c9180,23, 0xa3c9200,23, 0xa3c9280,23, 0xa3c9300,23, 0xa3c9380,23, 0xa3c9400,23, 0xa3c9480,23, 0xa3c9500,23, 0xa3c9580,23, 0xa3c9600,23, 0xa3c9680,23, 0xa3c9700,23, 0xa3c9780,23, 0xa3c9800,23, 0xa3c9880,23, 0xa3c9900,23, 0xa3c9980,23, 0xa3c9a00,23, 0xa3c9a80,23, 0xa3c9b00,23, 0xa3c9b80,23, 0xa3c9c00,23, 0xa3c9c80,23, 0xa3c9d00,23, 0xa3c9d80,23, 0xa3c9e00,23, 0xa3c9e80,23, 0xa3c9f00,23, 0xa3c9f80,23, 0xa3ca000,23, 0xa3ca080,23, 0xa3ca100,23, 0xa3ca180,23, 0xa3ca200,23, 0xa3ca280,23, 0xa3ca300,23, 0xa3ca380,23, 0xa3ca400,23, 0xa3ca480,23, 0xa3ca500,23, 0xa3ca580,23, 0xa3ca600,23, 0xa3ca680,23, 0xa3ca700,23, 0xa3ca780,23, 0xa3ca800,23, 0xa3ca880,23, 0xa3ca900,23, 0xa3ca980,23, 0xa3caa00,23, 0xa3caa80,23, 0xa3cab00,23, 0xa3cab80,23, 0xa3cac00,23, 0xa3cac80,23, 0xa3cad00,23, 0xa3cad80,23, 0xa3cae00,23, 0xa3cae80,23, 0xa3caf00,23, 0xa3caf80,23, 0xa3cb000,23, 0xa3cb080,23, 0xa3cb100,23, 0xa3cb180,23, 0xa3cb200,23, 0xa3cb280,23, 0xa3cb300,23, 0xa3cb380,23, 0xa3cb400,23, 0xa3cb480,23, 0xa3cb500,23, 0xa3cb580,23, 0xa3cb600,23, 0xa3cb680,23, 0xa3cb700,23, 0xa3cb780,23, 0xa3cb800,23, 0xa3cb880,23, 0xa3cb900,23, 0xa3cb980,23, 0xa3cba00,23, 0xa3cba80,23, 0xa3cbb00,23, 0xa3cbb80,23, 0xa3cbc00,23, 0xa3cbc80,23, 0xa3cbd00,23, 0xa3cbd80,23, 0xa3cbe00,23, 0xa3cbe80,23, 0xa3cbf00,23, 0xa3cbf80,23, 0xa3cc000,23, 0xa3cc080,23, 0xa3cc100,23, 0xa3cc180,23, 0xa3cc200,23, 0xa3cc280,23, 0xa3cc300,23, 0xa3cc380,23, 0xa3cc400,23, 0xa3cc480,23, 0xa3cc500,23, 0xa3cc580,23, 0xa3cc600,23, 0xa3cc680,23, 0xa3cc700,23, 0xa3cc780,23, 0xa3cc800,23, 0xa3cc880,23, 0xa3cc900,23, 0xa3cc980,23, 0xa3cca00,23, 0xa3cca80,23, 0xa3ccb00,23, 0xa3ccb80,23, 0xa3ccc00,23, 0xa3ccc80,23, 0xa3ccd00,23, 0xa3ccd80,23, 0xa3cce00,23, 0xa3cce80,23, 0xa3ccf00,23, 0xa3ccf80,23, 0xa3cd000,23, 0xa3cd080,23, 0xa3cd100,23, 0xa3cd180,23, 0xa3cd200,23, 0xa3cd280,23, 0xa3cd300,23, 0xa3cd380,23, 0xa3cd400,23, 0xa3cd480,23, 0xa3cd500,23, 0xa3cd580,23, 0xa3cd600,23, 0xa3cd680,23, 0xa3cd700,23, 0xa3cd780,23, 0xa3cd800,23, 0xa3cd880,23, 0xa3cd900,23, 0xa3cd980,23, 0xa3cda00,23, 0xa3cda80,23, 0xa3cdb00,23, 0xa3cdb80,23, 0xa3cdc00,23, 0xa3cdc80,23, 0xa3cdd00,23, 0xa3cdd80,23, 0xa3cde00,23, 0xa3cde80,23, 0xa3cdf00,23, 0xa3cdf80,23, 0xa3ce000,23, 0xa3ce080,23, 0xa3ce100,23, 0xa3ce180,23, 0xa3ce200,23, 0xa3ce280,23, 0xa3ce300,23, 0xa3ce380,23, 0xa3ce400,23, 0xa3ce480,23, 0xa3ce500,23, 0xa3ce580,23, 0xa3ce600,23, 0xa3ce680,23, 0xa3ce700,23, 0xa3ce780,23, 0xa3ce800,23, 0xa3ce880,23, 0xa3ce900,23, 0xa3ce980,23, 0xa3cea00,23, 0xa3cea80,23, 0xa3ceb00,23, 0xa3ceb80,23, 0xa3cec00,23, 0xa3cec80,23, 0xa3ced00,23, 0xa3ced80,23, 0xa3cee00,23, 0xa3cee80,23, 0xa3cef00,23, 0xa3cef80,23, 0xa3cf000,23, 0xa3cf080,23, 0xa3cf100,23, 0xa3cf180,23, 0xa3cf200,23, 0xa3cf280,23, 0xa3cf300,23, 0xa3cf380,23, 0xa3cf400,23, 0xa3cf480,23, 0xa3cf500,23, 0xa3cf580,23, 0xa3cf600,23, 0xa3cf680,23, 0xa3cf700,23, 0xa3cf780,23, 0xa3cf800,23, 0xa3cf880,23, 0xa3cf900,23, 0xa3cf980,23, 0xa3cfa00,23, 0xa3cfa80,23, 0xa3cfb00,23, 0xa3cfb80,23, 0xa3cfc00,23, 0xa3cfc80,23, 0xa3cfd00,23, 0xa3cfd80,23, 0xa3cfe00,23, 0xa3cfe80,23, 0xa3cff00,23, 0xa3cff80,23, 0xa3d0000,23, 0xa3d0080,23, 0xa3d0100,23, 0xa3d0180,23, 0xa3d0200,23, 0xa3d0280,23, 0xa3d0300,23, 0xa3d0380,23, 0xa3d0400,23, 0xa3d0480,23, 0xa3d0500,23, 0xa3d0580,23, 0xa3d0600,23, 0xa3d0680,23, 0xa3d0700,23, 0xa3d0780,23, 0xa3d0800,23, 0xa3d0880,23, 0xa3d0900,23, 0xa3d0980,23, 0xa3d0a00,23, 0xa3d0a80,23, 0xa3d0b00,23, 0xa3d0b80,23, 0xa3d0c00,23, 0xa3d0c80,23, 0xa3d0d00,23, 0xa3d0d80,23, 0xa3d0e00,23, 0xa3d0e80,23, 0xa3d0f00,23, 0xa3d0f80,23, 0xa3d1000,23, 0xa3d1080,23, 0xa3d1100,23, 0xa3d1180,23, 0xa3d1200,23, 0xa3d1280,23, 0xa3d1300,23, 0xa3d1380,23, 0xa3d1400,23, 0xa3d1480,23, 0xa3d1500,23, 0xa3d1580,23, 0xa3d1600,23, 0xa3d1680,23, 0xa3d1700,23, 0xa3d1780,23, 0xa3d1800,23, 0xa3d1880,23, 0xa3d1900,23, 0xa3d1980,23, 0xa3d1a00,23, 0xa3d1a80,23, 0xa3d1b00,23, 0xa3d1b80,23, 0xa3d1c00,23, 0xa3d1c80,23, 0xa3d1d00,23, 0xa3d1d80,23, 0xa3d1e00,23, 0xa3d1e80,23, 0xa3d1f00,23, 0xa3d1f80,23, 0xa3d2000,23, 0xa3d2080,23, 0xa3d2100,23, 0xa3d2180,23, 0xa3d2200,23, 0xa3d2280,23, 0xa3d2300,23, 0xa3d2380,23, 0xa3d2400,23, 0xa3d2480,23, 0xa3d2500,23, 0xa3d2580,23, 0xa3d2600,23, 0xa3d2680,23, 0xa3d2700,23, 0xa3d2780,23, 0xa3d2800,23, 0xa3d2880,23, 0xa3d2900,23, 0xa3d2980,23, 0xa3d2a00,23, 0xa3d2a80,23, 0xa3d2b00,23, 0xa3d2b80,23, 0xa3d2c00,23, 0xa3d2c80,23, 0xa3d2d00,23, 0xa3d2d80,23, 0xa3d2e00,23, 0xa3d2e80,23, 0xa3d2f00,23, 0xa3d2f80,23, 0xa3d3000,23, 0xa3d3080,23, 0xa3d3100,23, 0xa3d3180,23, 0xa3d3200,23, 0xa3d3280,23, 0xa3d3300,23, 0xa3d3380,23, 0xa3d3400,23, 0xa3d3480,23, 0xa3d3500,23, 0xa3d3580,23, 0xa3d3600,23, 0xa3d3680,23, 0xa3d3700,23, 0xa3d3780,23, 0xa3d3800,23, 0xa3d3880,23, 0xa3d3900,23, 0xa3d3980,23, 0xa3d3a00,23, 0xa3d3a80,23, 0xa3d3b00,23, 0xa3d3b80,23, 0xa3d3c00,23, 0xa3d3c80,23, 0xa3d3d00,23, 0xa3d3d80,23, 0xa3d3e00,23, 0xa3d3e80,23, 0xa3d3f00,23, 0xa3d3f80,23, 0xa3d4000,23, 0xa3d4080,23, 0xa3d4100,23, 0xa3d4180,23, 0xa3d4200,23, 0xa3d4280,23, 0xa3d4300,23, 0xa3d4380,23, 0xa3d4400,23, 0xa3d4480,23, 0xa3d4500,23, 0xa3d4580,23, 0xa3d4600,23, 0xa3d4680,23, 0xa3d4700,23, 0xa3d4780,23, 0xa3d4800,23, 0xa3d4880,23, 0xa3d4900,23, 0xa3d4980,23, 0xa3d4a00,23, 0xa3d4a80,23, 0xa3d4b00,23, 0xa3d4b80,23, 0xa3d4c00,23, 0xa3d4c80,23, 0xa3d4d00,23, 0xa3d4d80,23, 0xa3d4e00,23, 0xa3d4e80,23, 0xa3d4f00,23, 0xa3d4f80,23, 0xa3d5000,23, 0xa3d5080,23, 0xa3d5100,23, 0xa3d5180,23, 0xa3d5200,23, 0xa3d5280,23, 0xa3d5300,23, 0xa3d5380,23, 0xa3d5400,23, 0xa3d5480,23, 0xa3d5500,23, 0xa3d5580,23, 0xa3d5600,23, 0xa3d5680,23, 0xa3d5700,23, 0xa3d5780,23, 0xa3d5800,23, 0xa3d5880,23, 0xa3d5900,23, 0xa3d5980,23, 0xa3d5a00,23, 0xa3d5a80,23, 0xa3d5b00,23, 0xa3d5b80,23, 0xa3d5c00,23, 0xa3d5c80,23, 0xa3d5d00,23, 0xa3d5d80,23, 0xa3d5e00,23, 0xa3d5e80,23, 0xa3d5f00,23, 0xa3d5f80,23, 0xa3d6000,23, 0xa3d6080,23, 0xa3d6100,23, 0xa3d6180,23, 0xa3d6200,23, 0xa3d6280,23, 0xa3d6300,23, 0xa3d6380,23, 0xa3d6400,23, 0xa3d6480,23, 0xa3d6500,23, 0xa3d6580,23, 0xa3d6600,23, 0xa3d6680,23, 0xa3d6700,23, 0xa3d6780,23, 0xa3d6800,23, 0xa3d6880,23, 0xa3d6900,23, 0xa3d6980,23, 0xa3d6a00,23, 0xa3d6a80,23, 0xa3d6b00,23, 0xa3d6b80,23, 0xa3d6c00,23, 0xa3d6c80,23, 0xa3d6d00,23, 0xa3d6d80,23, 0xa3d6e00,23, 0xa3d6e80,23, 0xa3d6f00,23, 0xa3d6f80,23, 0xa3d7000,23, 0xa3d7080,23, 0xa3d7100,23, 0xa3d7180,23, 0xa3d7200,23, 0xa3d7280,23, 0xa3d7300,23, 0xa3d7380,23, 0xa3d7400,23, 0xa3d7480,23, 0xa3d7500,23, 0xa3d7580,23, 0xa3d7600,23, 0xa3d7680,23, 0xa3d7700,23, 0xa3d7780,23, 0xa3d7800,23, 0xa3d7880,23, 0xa3d7900,23, 0xa3d7980,23, 0xa3d7a00,23, 0xa3d7a80,23, 0xa3d7b00,23, 0xa3d7b80,23, 0xa3d7c00,23, 0xa3d7c80,23, 0xa3d7d00,23, 0xa3d7d80,23, 0xa3d7e00,23, 0xa3d7e80,23, 0xa3d7f00,23, 0xa3d7f80,23, 0xa3d8000,23, 0xa3d8080,23, 0xa3d8100,23, 0xa3d8180,23, 0xa3d8200,23, 0xa3d8280,23, 0xa3d8300,23, 0xa3d8380,23, 0xa3d8400,23, 0xa3d8480,23, 0xa3d8500,23, 0xa3d8580,23, 0xa3d8600,23, 0xa3d8680,23, 0xa3d8700,23, 0xa3d8780,23, 0xa3d8800,23, 0xa3d8880,23, 0xa3d8900,23, 0xa3d8980,23, 0xa3d8a00,23, 0xa3d8a80,23, 0xa3d8b00,23, 0xa3d8b80,23, 0xa3d8c00,23, 0xa3d8c80,23, 0xa3d8d00,23, 0xa3d8d80,23, 0xa3d8e00,23, 0xa3d8e80,23, 0xa3d8f00,23, 0xa3d8f80,23, 0xa3d9000,23, 0xa3d9080,23, 0xa3d9100,23, 0xa3d9180,23, 0xa3d9200,23, 0xa3d9280,23, 0xa3d9300,23, 0xa3d9380,23, 0xa3d9400,23, 0xa3d9480,23, 0xa3d9500,23, 0xa3d9580,23, 0xa3d9600,23, 0xa3d9680,23, 0xa3d9700,23, 0xa3d9780,23, 0xa3d9800,23, 0xa3d9880,23, 0xa3d9900,23, 0xa3d9980,23, 0xa3d9a00,23, 0xa3d9a80,23, 0xa3d9b00,23, 0xa3d9b80,23, 0xa3d9c00,23, 0xa3d9c80,23, 0xa3d9d00,23, 0xa3d9d80,23, 0xa3d9e00,23, 0xa3d9e80,23, 0xa3d9f00,23, 0xa3d9f80,23, 0xa3da000,23, 0xa3da080,23, 0xa3da100,23, 0xa3da180,23, 0xa3da200,23, 0xa3da280,23, 0xa3da300,23, 0xa3da380,23, 0xa3da400,23, 0xa3da480,23, 0xa3da500,23, 0xa3da580,23, 0xa3da600,23, 0xa3da680,23, 0xa3da700,23, 0xa3da780,23, 0xa3da800,23, 0xa3da880,23, 0xa3da900,23, 0xa3da980,23, 0xa3daa00,23, 0xa3daa80,23, 0xa3dab00,23, 0xa3dab80,23, 0xa3dac00,23, 0xa3dac80,23, 0xa3dad00,23, 0xa3dad80,23, 0xa3dae00,23, 0xa3dae80,23, 0xa3daf00,23, 0xa3daf80,23, 0xa3db000,23, 0xa3db080,23, 0xa3db100,23, 0xa3db180,23, 0xa3db200,23, 0xa3db280,23, 0xa3db300,23, 0xa3db380,23, 0xa3db400,23, 0xa3db480,23, 0xa3db500,23, 0xa3db580,23, 0xa3db600,23, 0xa3db680,23, 0xa3db700,23, 0xa3db780,23, 0xa3db800,23, 0xa3db880,23, 0xa3db900,23, 0xa3db980,23, 0xa3dba00,23, 0xa3dba80,23, 0xa3dbb00,23, 0xa3dbb80,23, 0xa3dbc00,23, 0xa3dbc80,23, 0xa3dbd00,23, 0xa3dbd80,23, 0xa3dbe00,23, 0xa3dbe80,23, 0xa3dbf00,23, 0xa3dbf80,23, 0xa3dc000,23, 0xa3dc080,23, 0xa3dc100,23, 0xa3dc180,23, 0xa3dc200,23, 0xa3dc280,23, 0xa3dc300,23, 0xa3dc380,23, 0xa3dc400,23, 0xa3dc480,23, 0xa3dc500,23, 0xa3dc580,23, 0xa3dc600,23, 0xa3dc680,23, 0xa3dc700,23, 0xa3dc780,23, 0xa3dc800,23, 0xa3dc880,23, 0xa3dc900,23, 0xa3dc980,23, 0xa3dca00,23, 0xa3dca80,23, 0xa3dcb00,23, 0xa3dcb80,23, 0xa3dcc00,23, 0xa3dcc80,23, 0xa3dcd00,23, 0xa3dcd80,23, 0xa3dce00,23, 0xa3dce80,23, 0xa3dcf00,23, 0xa3dcf80,23, 0xa3dd000,23, 0xa3dd080,23, 0xa3dd100,23, 0xa3dd180,23, 0xa3dd200,23, 0xa3dd280,23, 0xa3dd300,23, 0xa3dd380,23, 0xa3dd400,23, 0xa3dd480,23, 0xa3dd500,23, 0xa3dd580,23, 0xa3dd600,23, 0xa3dd680,23, 0xa3dd700,23, 0xa3dd780,23, 0xa3dd800,23, 0xa3dd880,23, 0xa3dd900,23, 0xa3dd980,23, 0xa3dda00,23, 0xa3dda80,23, 0xa3ddb00,23, 0xa3ddb80,23, 0xa3ddc00,23, 0xa3ddc80,23, 0xa3ddd00,23, 0xa3ddd80,23, 0xa3dde00,23, 0xa3dde80,23, 0xa3ddf00,23, 0xa3ddf80,23, 0xa3de000,23, 0xa3de080,23, 0xa3de100,23, 0xa3de180,23, 0xa3de200,23, 0xa3de280,23, 0xa3de300,23, 0xa3de380,23, 0xa3de400,23, 0xa3de480,23, 0xa3de500,23, 0xa3de580,23, 0xa3de600,23, 0xa3de680,23, 0xa3de700,23, 0xa3de780,23, 0xa3de800,23, 0xa3de880,23, 0xa3de900,23, 0xa3de980,23, 0xa3dea00,23, 0xa3dea80,23, 0xa3deb00,23, 0xa3deb80,23, 0xa3dec00,23, 0xa3dec80,23, 0xa3ded00,23, 0xa3ded80,23, 0xa3dee00,23, 0xa3dee80,23, 0xa3def00,23, 0xa3def80,23, 0xa3df000,23, 0xa3df080,23, 0xa3df100,23, 0xa3df180,23, 0xa3df200,23, 0xa3df280,23, 0xa3df300,23, 0xa3df380,23, 0xa3df400,23, 0xa3df480,23, 0xa3df500,23, 0xa3df580,23, 0xa3df600,23, 0xa3df680,23, 0xa3df700,23, 0xa3df780,23, 0xa3df800,23, 0xa3df880,23, 0xa3df900,23, 0xa3df980,23, 0xa3dfa00,23, 0xa3dfa80,23, 0xa3dfb00,23, 0xa3dfb80,23, 0xa3dfc00,23, 0xa3dfc80,23, 0xa3dfd00,23, 0xa3dfd80,23, 0xa3dfe00,23, 0xa3dfe80,23, 0xa3dff00,23, 0xa3dff80,23, 0xa3e0000,23, 0xa3e0080,23, 0xa3e0100,23, 0xa3e0180,23, 0xa3e0200,23, 0xa3e0280,23, 0xa3e0300,23, 0xa3e0380,23, 0xa3e0400,23, 0xa3e0480,23, 0xa3e0500,23, 0xa3e0580,23, 0xa3e0600,23, 0xa3e0680,23, 0xa3e0700,23, 0xa3e0780,23, 0xa3e0800,23, 0xa3e0880,23, 0xa3e0900,23, 0xa3e0980,23, 0xa3e0a00,23, 0xa3e0a80,23, 0xa3e0b00,23, 0xa3e0b80,23, 0xa3e0c00,23, 0xa3e0c80,23, 0xa3e0d00,23, 0xa3e0d80,23, 0xa3e0e00,23, 0xa3e0e80,23, 0xa3e0f00,23, 0xa3e0f80,23, 0xa3e1000,23, 0xa3e1080,23, 0xa3e1100,23, 0xa3e1180,23, 0xa3e1200,23, 0xa3e1280,23, 0xa3e1300,23, 0xa3e1380,23, 0xa3e1400,23, 0xa3e1480,23, 0xa3e1500,23, 0xa3e1580,23, 0xa3e1600,23, 0xa3e1680,23, 0xa3e1700,23, 0xa3e1780,23, 0xa3e1800,23, 0xa3e1880,23, 0xa3e1900,23, 0xa3e1980,23, 0xa3e1a00,23, 0xa3e1a80,23, 0xa3e1b00,23, 0xa3e1b80,23, 0xa3e1c00,23, 0xa3e1c80,23, 0xa3e1d00,23, 0xa3e1d80,23, 0xa3e1e00,23, 0xa3e1e80,23, 0xa3e1f00,23, 0xa3e1f80,23, 0xa3e2000,23, 0xa3e2080,23, 0xa3e2100,23, 0xa3e2180,23, 0xa3e2200,23, 0xa3e2280,23, 0xa3e2300,23, 0xa3e2380,23, 0xa3e2400,23, 0xa3e2480,23, 0xa3e2500,23, 0xa3e2580,23, 0xa3e2600,23, 0xa3e2680,23, 0xa3e2700,23, 0xa3e2780,23, 0xa3e2800,23, 0xa3e2880,23, 0xa3e2900,23, 0xa3e2980,23, 0xa3e2a00,23, 0xa3e2a80,23, 0xa3e2b00,23, 0xa3e2b80,23, 0xa3e2c00,23, 0xa3e2c80,23, 0xa3e2d00,23, 0xa3e2d80,23, 0xa3e2e00,23, 0xa3e2e80,23, 0xa3e2f00,23, 0xa3e2f80,23, 0xa3e3000,23, 0xa3e3080,23, 0xa3e3100,23, 0xa3e3180,23, 0xa3e3200,23, 0xa3e3280,23, 0xa3e3300,23, 0xa3e3380,23, 0xa3e3400,23, 0xa3e3480,23, 0xa3e3500,23, 0xa3e3580,23, 0xa3e3600,23, 0xa3e3680,23, 0xa3e3700,23, 0xa3e3780,23, 0xa3e3800,23, 0xa3e3880,23, 0xa3e3900,23, 0xa3e3980,23, 0xa3e3a00,23, 0xa3e3a80,23, 0xa3e3b00,23, 0xa3e3b80,23, 0xa3e3c00,23, 0xa3e3c80,23, 0xa3e3d00,23, 0xa3e3d80,23, 0xa3e3e00,23, 0xa3e3e80,23, 0xa3e3f00,23, 0xa3e3f80,23, 0xa3e4000,23, 0xa3e4080,23, 0xa3e4100,23, 0xa3e4180,23, 0xa3e4200,23, 0xa3e4280,23, 0xa3e4300,23, 0xa3e4380,23, 0xa3e4400,23, 0xa3e4480,23, 0xa3e4500,23, 0xa3e4580,23, 0xa3e4600,23, 0xa3e4680,23, 0xa3e4700,23, 0xa3e4780,23, 0xa3e4800,23, 0xa3e4880,23, 0xa3e4900,23, 0xa3e4980,23, 0xa3e4a00,23, 0xa3e4a80,23, 0xa3e4b00,23, 0xa3e4b80,23, 0xa3e4c00,23, 0xa3e4c80,23, 0xa3e4d00,23, 0xa3e4d80,23, 0xa3e4e00,23, 0xa3e4e80,23, 0xa3e4f00,23, 0xa3e4f80,23, 0xa3e5000,23, 0xa3e5080,23, 0xa3e5100,23, 0xa3e5180,23, 0xa3e5200,23, 0xa3e5280,23, 0xa3e5300,23, 0xa3e5380,23, 0xa3e5400,23, 0xa3e5480,23, 0xa3e5500,23, 0xa3e5580,23, 0xa3e5600,23, 0xa3e5680,23, 0xa3e5700,23, 0xa3e5780,23, 0xa3e5800,23, 0xa3e5880,23, 0xa3e5900,23, 0xa3e5980,23, 0xa3e5a00,23, 0xa3e5a80,23, 0xa3e5b00,23, 0xa3e5b80,23, 0xa3e5c00,23, 0xa3e5c80,23, 0xa3e5d00,23, 0xa3e5d80,23, 0xa3e5e00,23, 0xa3e5e80,23, 0xa3e5f00,23, 0xa3e5f80,23, 0xa3e6000,23, 0xa3e6080,23, 0xa3e6100,23, 0xa3e6180,23, 0xa3e6200,23, 0xa3e6280,23, 0xa3e6300,23, 0xa3e6380,23, 0xa3e6400,23, 0xa3e6480,23, 0xa3e6500,23, 0xa3e6580,23, 0xa3e6600,23, 0xa3e6680,23, 0xa3e6700,23, 0xa3e6780,23, 0xa3e6800,23, 0xa3e6880,23, 0xa3e6900,23, 0xa3e6980,23, 0xa3e6a00,23, 0xa3e6a80,23, 0xa3e6b00,23, 0xa3e6b80,23, 0xa3e6c00,23, 0xa3e6c80,23, 0xa3e6d00,23, 0xa3e6d80,23, 0xa3e6e00,23, 0xa3e6e80,23, 0xa3e6f00,23, 0xa3e6f80,23, 0xa3e7000,23, 0xa3e7080,23, 0xa3e7100,23, 0xa3e7180,23, 0xa3e7200,23, 0xa3e7280,23, 0xa3e7300,23, 0xa3e7380,23, 0xa3e7400,23, 0xa3e7480,23, 0xa3e7500,23, 0xa3e7580,23, 0xa3e7600,23, 0xa3e7680,23, 0xa3e7700,23, 0xa3e7780,23, 0xa3e7800,23, 0xa3e7880,23, 0xa3e7900,23, 0xa3e7980,23, 0xa3e7a00,23, 0xa3e7a80,23, 0xa3e7b00,23, 0xa3e7b80,23, 0xa3e7c00,23, 0xa3e7c80,23, 0xa3e7d00,23, 0xa3e7d80,23, 0xa3e7e00,23, 0xa3e7e80,23, 0xa3e7f00,23, 0xa3e7f80,23, 0xa3e8000,23, 0xa3e8080,23, 0xa3e8100,23, 0xa3e8180,23, 0xa3e8200,23, 0xa3e8280,23, 0xa3e8300,23, 0xa3e8380,23, 0xa3e8400,23, 0xa3e8480,23, 0xa3e8500,23, 0xa3e8580,23, 0xa3e8600,23, 0xa3e8680,23, 0xa3e8700,23, 0xa3e8780,23, 0xa3e8800,23, 0xa3e8880,23, 0xa3e8900,23, 0xa3e8980,23, 0xa3e8a00,23, 0xa3e8a80,23, 0xa3e8b00,23, 0xa3e8b80,23, 0xa3e8c00,23, 0xa3e8c80,23, 0xa3e8d00,23, 0xa3e8d80,23, 0xa3e8e00,23, 0xa3e8e80,23, 0xa3e8f00,23, 0xa3e8f80,23, 0xa3e9000,23, 0xa3e9080,23, 0xa3e9100,23, 0xa3e9180,23, 0xa3e9200,23, 0xa3e9280,23, 0xa3e9300,23, 0xa3e9380,23, 0xa3e9400,23, 0xa3e9480,23, 0xa3e9500,23, 0xa3e9580,23, 0xa3e9600,23, 0xa3e9680,23, 0xa3e9700,23, 0xa3e9780,23, 0xa3e9800,23, 0xa3e9880,23, 0xa3e9900,23, 0xa3e9980,23, 0xa3e9a00,23, 0xa3e9a80,23, 0xa3e9b00,23, 0xa3e9b80,23, 0xa3e9c00,23, 0xa3e9c80,23, 0xa3e9d00,23, 0xa3e9d80,23, 0xa3e9e00,23, 0xa3e9e80,23, 0xa3e9f00,23, 0xa3e9f80,23, 0xa3ea000,23, 0xa3ea080,23, 0xa3ea100,23, 0xa3ea180,23, 0xa3ea200,23, 0xa3ea280,23, 0xa3ea300,23, 0xa3ea380,23, 0xa3ea400,23, 0xa3ea480,23, 0xa3ea500,23, 0xa3ea580,23, 0xa3ea600,23, 0xa3ea680,23, 0xa3ea700,23, 0xa3ea780,23, 0xa3ea800,23, 0xa3ea880,23, 0xa3ea900,23, 0xa3ea980,23, 0xa3eaa00,23, 0xa3eaa80,23, 0xa3eab00,23, 0xa3eab80,23, 0xa3eac00,23, 0xa3eac80,23, 0xa3ead00,23, 0xa3ead80,23, 0xa3eae00,23, 0xa3eae80,23, 0xa3eaf00,23, 0xa3eaf80,23, 0xa3eb000,23, 0xa3eb080,23, 0xa3eb100,23, 0xa3eb180,23, 0xa3eb200,23, 0xa3eb280,23, 0xa3eb300,23, 0xa3eb380,23, 0xa3eb400,23, 0xa3eb480,23, 0xa3eb500,23, 0xa3eb580,23, 0xa3eb600,23, 0xa3eb680,23, 0xa3eb700,23, 0xa3eb780,23, 0xa3eb800,23, 0xa3eb880,23, 0xa3eb900,23, 0xa3eb980,23, 0xa3eba00,23, 0xa3eba80,23, 0xa3ebb00,23, 0xa3ebb80,23, 0xa3ebc00,23, 0xa3ebc80,23, 0xa3ebd00,23, 0xa3ebd80,23, 0xa3ebe00,23, 0xa3ebe80,23, 0xa3ebf00,23, 0xa3ebf80,23, 0xa3ec000,23, 0xa3ec080,23, 0xa3ec100,23, 0xa3ec180,23, 0xa3ec200,23, 0xa3ec280,23, 0xa3ec300,23, 0xa3ec380,23, 0xa3ec400,23, 0xa3ec480,23, 0xa3ec500,23, 0xa3ec580,23, 0xa3ec600,23, 0xa3ec680,23, 0xa3ec700,23, 0xa3ec780,23, 0xa3ec800,23, 0xa3ec880,23, 0xa3ec900,23, 0xa3ec980,23, 0xa3eca00,23, 0xa3eca80,23, 0xa3ecb00,23, 0xa3ecb80,23, 0xa3ecc00,23, 0xa3ecc80,23, 0xa3ecd00,23, 0xa3ecd80,23, 0xa3ece00,23, 0xa3ece80,23, 0xa3ecf00,23, 0xa3ecf80,23, 0xa3ed000,23, 0xa3ed080,23, 0xa3ed100,23, 0xa3ed180,23, 0xa3ed200,23, 0xa3ed280,23, 0xa3ed300,23, 0xa3ed380,23, 0xa3ed400,23, 0xa3ed480,23, 0xa3ed500,23, 0xa3ed580,23, 0xa3ed600,23, 0xa3ed680,23, 0xa3ed700,23, 0xa3ed780,23, 0xa3ed800,23, 0xa3ed880,23, 0xa3ed900,23, 0xa3ed980,23, 0xa3eda00,23, 0xa3eda80,23, 0xa3edb00,23, 0xa3edb80,23, 0xa3edc00,23, 0xa3edc80,23, 0xa3edd00,23, 0xa3edd80,23, 0xa3ede00,23, 0xa3ede80,23, 0xa3edf00,23, 0xa3edf80,23, 0xa3ee000,23, 0xa3ee080,23, 0xa3ee100,23, 0xa3ee180,23, 0xa3ee200,23, 0xa3ee280,23, 0xa3ee300,23, 0xa3ee380,23, 0xa3ee400,23, 0xa3ee480,23, 0xa3ee500,23, 0xa3ee580,23, 0xa3ee600,23, 0xa3ee680,23, 0xa3ee700,23, 0xa3ee780,23, 0xa3ee800,23, 0xa3ee880,23, 0xa3ee900,23, 0xa3ee980,23, 0xa3eea00,23, 0xa3eea80,23, 0xa3eeb00,23, 0xa3eeb80,23, 0xa3eec00,23, 0xa3eec80,23, 0xa3eed00,23, 0xa3eed80,23, 0xa3eee00,23, 0xa3eee80,23, 0xa3eef00,23, 0xa3eef80,23, 0xa3ef000,23, 0xa3ef080,23, 0xa3ef100,23, 0xa3ef180,23, 0xa3ef200,23, 0xa3ef280,23, 0xa3ef300,23, 0xa3ef380,23, 0xa3ef400,23, 0xa3ef480,23, 0xa3ef500,23, 0xa3ef580,23, 0xa3ef600,23, 0xa3ef680,23, 0xa3ef700,23, 0xa3ef780,23, 0xa3ef800,23, 0xa3ef880,23, 0xa3ef900,23, 0xa3ef980,23, 0xa3efa00,23, 0xa3efa80,23, 0xa3efb00,23, 0xa3efb80,23, 0xa3efc00,23, 0xa3efc80,23, 0xa3efd00,23, 0xa3efd80,23, 0xa3efe00,23, 0xa3efe80,23, 0xa3eff00,23, 0xa3eff80,23, 0xa3f0000,23, 0xa3f0080,23, 0xa3f0100,23, 0xa3f0180,23, 0xa3f0200,23, 0xa3f0280,23, 0xa3f0300,23, 0xa3f0380,23, 0xa3f0400,23, 0xa3f0480,23, 0xa3f0500,23, 0xa3f0580,23, 0xa3f0600,23, 0xa3f0680,23, 0xa3f0700,23, 0xa3f0780,23, 0xa3f0800,23, 0xa3f0880,23, 0xa3f0900,23, 0xa3f0980,23, 0xa3f0a00,23, 0xa3f0a80,23, 0xa3f0b00,23, 0xa3f0b80,23, 0xa3f0c00,23, 0xa3f0c80,23, 0xa3f0d00,23, 0xa3f0d80,23, 0xa3f0e00,23, 0xa3f0e80,23, 0xa3f0f00,23, 0xa3f0f80,23, 0xa3f1000,23, 0xa3f1080,23, 0xa3f1100,23, 0xa3f1180,23, 0xa3f1200,23, 0xa3f1280,23, 0xa3f1300,23, 0xa3f1380,23, 0xa3f1400,23, 0xa3f1480,23, 0xa3f1500,23, 0xa3f1580,23, 0xa3f1600,23, 0xa3f1680,23, 0xa3f1700,23, 0xa3f1780,23, 0xa3f1800,23, 0xa3f1880,23, 0xa3f1900,23, 0xa3f1980,23, 0xa3f1a00,23, 0xa3f1a80,23, 0xa3f1b00,23, 0xa3f1b80,23, 0xa3f1c00,23, 0xa3f1c80,23, 0xa3f1d00,23, 0xa3f1d80,23, 0xa3f1e00,23, 0xa3f1e80,23, 0xa3f1f00,23, 0xa3f1f80,23, 0xa3f2000,23, 0xa3f2080,23, 0xa3f2100,23, 0xa3f2180,23, 0xa3f2200,23, 0xa3f2280,23, 0xa3f2300,23, 0xa3f2380,23, 0xa3f2400,23, 0xa3f2480,23, 0xa3f2500,23, 0xa3f2580,23, 0xa3f2600,23, 0xa3f2680,23, 0xa3f2700,23, 0xa3f2780,23, 0xa3f2800,23, 0xa3f2880,23, 0xa3f2900,23, 0xa3f2980,23, 0xa3f2a00,23, 0xa3f2a80,23, 0xa3f2b00,23, 0xa3f2b80,23, 0xa3f2c00,23, 0xa3f2c80,23, 0xa3f2d00,23, 0xa3f2d80,23, 0xa3f2e00,23, 0xa3f2e80,23, 0xa3f2f00,23, 0xa3f2f80,23, 0xa3f3000,23, 0xa3f3080,23, 0xa3f3100,23, 0xa3f3180,23, 0xa3f3200,23, 0xa3f3280,23, 0xa3f3300,23, 0xa3f3380,23, 0xa3f3400,23, 0xa3f3480,23, 0xa3f3500,23, 0xa3f3580,23, 0xa3f3600,23, 0xa3f3680,23, 0xa3f3700,23, 0xa3f3780,23, 0xa3f3800,23, 0xa3f3880,23, 0xa3f3900,23, 0xa3f3980,23, 0xa3f3a00,23, 0xa3f3a80,23, 0xa3f3b00,23, 0xa3f3b80,23, 0xa400000,2, 0xa400040,9, 0xa400080,67, 0xa800000,35, 0xa800100,15, 0xa800140,15, 0xa800184,1, 0xa800194,6, 0xa8001b0,9, 0xa800200,35, 0xa800300,15, 0xa800340,15, 0xa800384,1, 0xa800394,6, 0xa8003b0,9, 0xa800400,35, 0xa800500,15, 0xa800540,15, 0xa800584,1, 0xa800594,6, 0xa8005b0,9, 0xa800600,35, 0xa800700,15, 0xa800740,15, 0xa800784,1, 0xa800794,6, 0xa8007b0,9, 0xa800800,35, 0xa800900,15, 0xa800940,15, 0xa800984,1, 0xa800994,6, 0xa8009b0,9, 0xa800a00,35, 0xa800b00,15, 0xa800b40,15, 0xa800b84,1, 0xa800b94,6, 0xa800bb0,9, 0xa800c00,35, 0xa800d00,15, 0xa800d40,15, 0xa800d84,1, 0xa800d94,6, 0xa800db0,9, 0xa800e00,35, 0xa800f00,15, 0xa800f40,15, 0xa800f84,1, 0xa800f94,6, 0xa800fb0,9, 0xa801000,14, 0xa801040,4, 0xa801060,7, 0xa801080,8, 0xa801100,27, 0xa801200,44, 0xa801404,1, 0xa801500,64, 0xb000000,4, 0xb000080,33, 0xb000200,4, 0xb000280,33, 0xb000400,4, 0xb000480,33, 0xb000600,4, 0xb000680,33, 0xb000800,4, 0xb000880,33, 0xb000a00,4, 0xb000a80,33, 0xb000c00,4, 0xb000c80,33, 0xb000e00,4, 0xb000e80,33, 0xb001004,1, 0xb001020,23, 0xb001080,17, 0xb001200,100, 0xb001400,15, 0xb001440,6, 0xb200000,25088, 0xb220000,25088, 0xb240000,25088, 0xb260000,25088, 0xb280000,25088, 0xb2a0000,25088, 0xb2c0000,25088, 0xb2e0000,25088, 0xb300000,2, 0xb300040,9, 0xb300080,6, 0xb3000a0,6, 0xb3000c0,3, 0xb400000,8, 0xb400080,20, 0xb400100,3, 0xb400110,4, 0xc002000,49, 0xc002100,12, 0xc002140,4, 0xc002184,1, 0xc002198,2, 0xc0021a4,1, 0xc0021b8,7, 0xc0021e0,4, 0xc002200,20, 0xc002280,3, 0xc002290,9, 0xc0022c0,6, 0xc0022e0,1, 0xc0022e8,7, 0xc002400,49, 0xc002500,12, 0xc002540,4, 0xc002584,1, 0xc002598,2, 0xc0025a4,1, 0xc0025b8,7, 0xc0025e0,4, 0xc002600,20, 0xc002680,3, 0xc002690,9, 0xc0026c0,6, 0xc0026e0,1, 0xc0026e8,7, 0xc002800,7, 0xc002820,3, 0xc002830,11, 0xc002860,14, 0xc002900,9, 0xc002a00,7, 0xc002a20,9, 0xc002a80,2, 0xc002c00,27, 0xc002c80,9, 0xc002cc0,6, 0xc002ce0,4, 0xc002d00,5, 0xc002d18,5, 0xc002d30,9, 0xc002d58,5, 0xc002d70,7, 0xc002e00,6, 0xc002e20,6, 0xc002e40,6, 0xc002e60,6, 0xc002e80,6, 0xc002ea0,6, 0xc002ec0,6, 0xc002ee0,6, 0xc002f00,6, 0xc002f20,6, 0xc002f40,6, 0xc002f60,6, 0xc002f80,6, 0xc002fa0,6, 0xc002fc0,6, 0xc002fe0,6, 0xc003000,28, 0xc003080,6, 0xc040000,3, 0xc04001c,6, 0xc040080,3, 0xc040090,1, 0xc0400d0,3, 0xc0400e4,25, 0xc04014c,21, 0xc0401a4,12, 0xc0401d8,72, 0xc040304,5, 0xc04031c,98, 0xc0404ac,4, 0xc0404c8,20, 0xc040520,56, 0xc040608,21, 0xc040664,3, 0xc040674,22, 0xc040710,1, 0xc040750,3, 0xc040764,25, 0xc0407cc,21, 0xc040824,12, 0xc040858,72, 0xc040984,5, 0xc04099c,98, 0xc040b2c,4, 0xc040b48,20, 0xc040ba0,56, 0xc040c88,21, 0xc040ce4,3, 0xc040cf4,22, 0xc040d90,1, 0xc040dd0,3, 0xc040de4,25, 0xc040e4c,21, 0xc040ea4,12, 0xc040ed8,72, 0xc041004,5, 0xc04101c,98, 0xc0411ac,4, 0xc0411c8,20, 0xc041220,56, 0xc041308,21, 0xc041364,3, 0xc041374,22, 0xc041410,1, 0xc041450,3, 0xc041464,25, 0xc0414cc,21, 0xc041524,12, 0xc041558,72, 0xc041684,5, 0xc04169c,98, 0xc04182c,4, 0xc041848,20, 0xc0418a0,56, 0xc041988,21, 0xc0419e4,3, 0xc0419f4,22, 0xc041a90,1, 0xc041ad0,3, 0xc041ae4,25, 0xc041b4c,21, 0xc041ba4,12, 0xc041bd8,72, 0xc041d04,5, 0xc041d1c,98, 0xc041eac,4, 0xc041ec8,20, 0xc041f20,56, 0xc042008,21, 0xc042064,3, 0xc042074,22, 0xc042110,1, 0xc042150,3, 0xc042164,25, 0xc0421cc,21, 0xc042224,12, 0xc042258,72, 0xc042384,5, 0xc04239c,98, 0xc04252c,4, 0xc042548,20, 0xc0425a0,56, 0xc042688,21, 0xc0426e4,3, 0xc0426f4,22, 0xc042790,1, 0xc0427d0,3, 0xc0427e4,25, 0xc04284c,21, 0xc0428a4,12, 0xc0428d8,72, 0xc042a04,5, 0xc042a1c,98, 0xc042bac,4, 0xc042bc8,20, 0xc042c20,56, 0xc042d08,21, 0xc042d64,3, 0xc042d74,22, 0xc042e10,1, 0xc042e50,3, 0xc042e64,25, 0xc042ecc,21, 0xc042f24,12, 0xc042f58,72, 0xc043084,5, 0xc04309c,98, 0xc04322c,4, 0xc043248,20, 0xc0432a0,56, 0xc043388,21, 0xc0433e4,3, 0xc0433f4,22, 0xc043490,1, 0xc0434d0,3, 0xc0434e4,25, 0xc04354c,21, 0xc0435a4,12, 0xc0435d8,72, 0xc043704,5, 0xc04371c,98, 0xc0438ac,4, 0xc0438c8,20, 0xc043920,56, 0xc043a08,21, 0xc043a64,3, 0xc043a74,22, 0xc043b10,1, 0xc043b50,3, 0xc043b64,25, 0xc043bcc,21, 0xc043c24,12, 0xc043c58,72, 0xc043d84,5, 0xc043d9c,98, 0xc043f2c,4, 0xc043f48,20, 0xc043fa0,56, 0xc044088,21, 0xc0440e4,3, 0xc0440f4,22, 0xc044190,1, 0xc0441d0,3, 0xc0441e4,25, 0xc04424c,21, 0xc0442a4,12, 0xc0442d8,72, 0xc044404,5, 0xc04441c,98, 0xc0445ac,4, 0xc0445c8,20, 0xc044620,56, 0xc044708,21, 0xc044764,3, 0xc044774,22, 0xc044810,1, 0xc044850,3, 0xc044864,25, 0xc0448cc,21, 0xc044924,12, 0xc044958,72, 0xc044a84,5, 0xc044a9c,98, 0xc044c2c,4, 0xc044c48,20, 0xc044ca0,56, 0xc044d88,21, 0xc044de4,3, 0xc044df4,22, 0xc044e90,1, 0xc044ed0,3, 0xc044ee4,25, 0xc044f4c,21, 0xc044fa4,12, 0xc044fd8,72, 0xc045104,5, 0xc04511c,98, 0xc0452ac,4, 0xc0452c8,20, 0xc045320,56, 0xc045408,21, 0xc045464,3, 0xc045474,22, 0xc045510,1, 0xc045550,3, 0xc045564,25, 0xc0455cc,21, 0xc045624,12, 0xc045658,72, 0xc045784,5, 0xc04579c,98, 0xc04592c,4, 0xc045948,20, 0xc0459a0,56, 0xc045a88,21, 0xc045ae4,3, 0xc045af4,22, 0xc045b90,1, 0xc045bd0,3, 0xc045be4,25, 0xc045c4c,21, 0xc045ca4,12, 0xc045cd8,72, 0xc045e04,5, 0xc045e1c,98, 0xc045fac,4, 0xc045fc8,20, 0xc046020,56, 0xc046108,21, 0xc046164,3, 0xc046174,22, 0xc046210,1, 0xc046250,3, 0xc046264,25, 0xc0462cc,21, 0xc046324,12, 0xc046358,72, 0xc046484,5, 0xc04649c,98, 0xc04662c,4, 0xc046648,20, 0xc0466a0,56, 0xc046788,21, 0xc0467e4,3, 0xc0467f4,22, 0xc046890,1, 0xc0468d0,3, 0xc0468e4,25, 0xc04694c,21, 0xc0469a4,12, 0xc0469d8,72, 0xc046b04,5, 0xc046b1c,98, 0xc046cac,4, 0xc046cc8,20, 0xc046d20,56, 0xc046e08,21, 0xc046e64,3, 0xc046e74,22, 0xc046f10,1, 0xc046f50,3, 0xc046f64,25, 0xc046fcc,21, 0xc047024,12, 0xc047058,72, 0xc047184,5, 0xc04719c,98, 0xc04732c,4, 0xc047348,20, 0xc0473a0,56, 0xc047488,21, 0xc0474e4,3, 0xc0474f4,22, 0xc047590,1, 0xc0475d0,3, 0xc0475e4,25, 0xc04764c,21, 0xc0476a4,12, 0xc0476d8,72, 0xc047804,5, 0xc04781c,98, 0xc0479ac,4, 0xc0479c8,20, 0xc047a20,56, 0xc047b08,21, 0xc047b64,3, 0xc047b74,22, 0xc047c10,1, 0xc047c50,3, 0xc047c64,25, 0xc047ccc,21, 0xc047d24,12, 0xc047d58,72, 0xc047e84,5, 0xc047e9c,98, 0xc04802c,4, 0xc048048,20, 0xc0480a0,56, 0xc048188,21, 0xc0481e4,3, 0xc0481f4,22, 0xc048290,1, 0xc0482d0,3, 0xc0482e4,25, 0xc04834c,21, 0xc0483a4,12, 0xc0483d8,72, 0xc048504,5, 0xc04851c,98, 0xc0486ac,4, 0xc0486c8,20, 0xc048720,56, 0xc048808,21, 0xc048864,3, 0xc048874,22, 0xc048910,1, 0xc048950,3, 0xc048964,25, 0xc0489cc,21, 0xc048a24,12, 0xc048a58,72, 0xc048b84,5, 0xc048b9c,98, 0xc048d2c,4, 0xc048d48,20, 0xc048da0,56, 0xc048e88,21, 0xc048ee4,3, 0xc048ef4,22, 0xc048f90,1, 0xc048fd0,3, 0xc048fe4,25, 0xc04904c,21, 0xc0490a4,12, 0xc0490d8,72, 0xc049204,5, 0xc04921c,98, 0xc0493ac,4, 0xc0493c8,20, 0xc049420,56, 0xc049508,21, 0xc049564,3, 0xc049574,22, 0xc049610,1, 0xc049650,3, 0xc049664,25, 0xc0496cc,21, 0xc049724,12, 0xc049758,72, 0xc049884,5, 0xc04989c,98, 0xc049a2c,4, 0xc049a48,20, 0xc049aa0,56, 0xc049b88,21, 0xc049be4,3, 0xc049bf4,22, 0xc049c90,1, 0xc049cd0,3, 0xc049ce4,25, 0xc049d4c,21, 0xc049da4,12, 0xc049dd8,72, 0xc049f04,5, 0xc049f1c,98, 0xc04a0ac,4, 0xc04a0c8,20, 0xc04a120,56, 0xc04a208,21, 0xc04a264,3, 0xc04a274,22, 0xc04a310,1, 0xc04a350,3, 0xc04a364,25, 0xc04a3cc,21, 0xc04a424,12, 0xc04a458,72, 0xc04a584,5, 0xc04a59c,98, 0xc04a72c,4, 0xc04a748,20, 0xc04a7a0,56, 0xc04a888,21, 0xc04a8e4,3, 0xc04a8f4,22, 0xc04a990,1, 0xc04a9d0,3, 0xc04a9e4,25, 0xc04aa4c,21, 0xc04aaa4,12, 0xc04aad8,72, 0xc04ac04,5, 0xc04ac1c,98, 0xc04adac,4, 0xc04adc8,20, 0xc04ae20,56, 0xc04af08,21, 0xc04af64,3, 0xc04af74,22, 0xc04b010,1, 0xc04b050,3, 0xc04b064,25, 0xc04b0cc,21, 0xc04b124,12, 0xc04b158,72, 0xc04b284,5, 0xc04b29c,98, 0xc04b42c,4, 0xc04b448,20, 0xc04b4a0,56, 0xc04b588,21, 0xc04b5e4,3, 0xc04b5f4,22, 0xc04b690,1, 0xc04b6d0,3, 0xc04b6e4,25, 0xc04b74c,21, 0xc04b7a4,12, 0xc04b7d8,72, 0xc04b904,5, 0xc04b91c,98, 0xc04baac,4, 0xc04bac8,20, 0xc04bb20,56, 0xc04bc08,21, 0xc04bc64,3, 0xc04bc74,22, 0xc04bd10,1, 0xc04bd50,3, 0xc04bd64,25, 0xc04bdcc,21, 0xc04be24,12, 0xc04be58,72, 0xc04bf84,5, 0xc04bf9c,98, 0xc04c12c,4, 0xc04c148,20, 0xc04c1a0,56, 0xc04c288,21, 0xc04c2e4,3, 0xc04c2f4,22, 0xc04c390,1, 0xc04c3d0,3, 0xc04c3e4,25, 0xc04c44c,21, 0xc04c4a4,12, 0xc04c4d8,72, 0xc04c604,5, 0xc04c61c,98, 0xc04c7ac,4, 0xc04c7c8,20, 0xc04c820,56, 0xc04c908,21, 0xc04c964,3, 0xc04c974,22, 0xc04ca10,1, 0xc04ca50,3, 0xc04ca64,25, 0xc04cacc,21, 0xc04cb24,12, 0xc04cb58,72, 0xc04cc84,5, 0xc04cc9c,98, 0xc04ce2c,4, 0xc04ce48,20, 0xc04cea0,56, 0xc04cf88,21, 0xc04cfe4,3, 0xc04cff4,22, 0xc04d090,1, 0xc04d0d0,3, 0xc04d0e4,25, 0xc04d14c,21, 0xc04d1a4,12, 0xc04d1d8,72, 0xc04d304,5, 0xc04d31c,98, 0xc04d4ac,4, 0xc04d4c8,20, 0xc04d520,56, 0xc04d608,21, 0xc04d664,3, 0xc04d674,22, 0xc04d710,1, 0xc04d750,3, 0xc04d764,25, 0xc04d7cc,21, 0xc04d824,12, 0xc04d858,72, 0xc04d984,5, 0xc04d99c,98, 0xc04db2c,4, 0xc04db48,20, 0xc04dba0,56, 0xc04dc88,21, 0xc04dce4,3, 0xc04dcf4,22, 0xc04dd90,1, 0xc04ddd0,3, 0xc04dde4,25, 0xc04de4c,21, 0xc04dea4,12, 0xc04ded8,72, 0xc04e004,5, 0xc04e01c,98, 0xc04e1ac,4, 0xc04e1c8,20, 0xc04e220,56, 0xc04e308,21, 0xc04e364,3, 0xc04e374,22, 0xc04e410,2, 0xc04e454,72, 0xc04e760,3, 0xc04e7ac,42, 0xc04e85c,31, 0xc04e990,54, 0xc04ea70,58, 0xc04eb60,58, 0xc04ec50,58, 0xc04ed40,58, 0xc04ee30,58, 0xc04ef20,58, 0xc04f010,58, 0xc04f100,58, 0xc04f1f0,58, 0xc04f2e0,58, 0xc04f3d0,58, 0xc04f4c0,58, 0xc04f5b0,58, 0xc04f6a0,58, 0xc04f790,58, 0xc04f880,58, 0xc04f970,58, 0xc04fa60,58, 0xc04fb50,58, 0xc04fc40,58, 0xc04fd30,58, 0xc04fe20,58, 0xc04ff10,58, 0xc050000,58, 0xc0500f0,58, 0xc0501e0,58, 0xc0502d0,58, 0xc0503c0,58, 0xc0504b0,58, 0xc0505a0,58, 0xc050690,58, 0xc050780,101, 0xc050990,49, 0xc050a90,18, 0xc050ae0,11, 0xc050b10,4, 0xc050b34,45, 0xc050c38,9, 0xc050c68,4, 0xc050c80,2, 0xc050cb8,14, 0xc050cf4,12, 0xc050e38,3, 0xc050e48,2, 0xc050e54,68, 0xc050f68,2, 0xc050f74,68, 0xc051088,1, 0xc051090,2, 0xc05109c,68, 0xc0511b0,2, 0xc0511bc,68, 0xc0512d0,1, 0xc0512d8,4, 0xc0512f0,3, 0xc051304,4, 0xc051318,7, 0xc051368,8, 0xc0513bc,1, 0xc0513c8,4, 0xc0513e0,3, 0xc0513f4,4, 0xc051408,7, 0xc051458,8, 0xc0514ac,1, 0xc0514b8,4, 0xc0514d0,3, 0xc0514e4,4, 0xc0514f8,7, 0xc051548,8, 0xc05159c,1, 0xc0515a8,4, 0xc0515c0,3, 0xc0515d4,4, 0xc0515e8,7, 0xc051638,8, 0xc05168c,1, 0xc051698,4, 0xc0516b0,3, 0xc0516c4,4, 0xc0516d8,7, 0xc051728,8, 0xc05177c,1, 0xc051788,4, 0xc0517a0,3, 0xc0517b4,4, 0xc0517c8,7, 0xc051818,8, 0xc05186c,1, 0xc051878,4, 0xc051890,3, 0xc0518a4,4, 0xc0518b8,7, 0xc051908,8, 0xc05195c,1, 0xc051968,4, 0xc051980,3, 0xc051994,4, 0xc0519a8,7, 0xc0519f8,8, 0xc051a4c,1, 0xc051a58,4, 0xc051a70,3, 0xc051a84,4, 0xc051a98,7, 0xc051ae8,8, 0xc051b3c,1, 0xc051b48,4, 0xc051b60,3, 0xc051b74,4, 0xc051b88,7, 0xc051bd8,8, 0xc051c2c,1, 0xc051c38,4, 0xc051c50,3, 0xc051c64,4, 0xc051c78,7, 0xc051cc8,8, 0xc051d1c,1, 0xc051d28,4, 0xc051d40,3, 0xc051d54,4, 0xc051d68,7, 0xc051db8,8, 0xc051e0c,1, 0xc051e18,4, 0xc051e30,3, 0xc051e44,4, 0xc051e58,7, 0xc051ea8,8, 0xc051efc,1, 0xc051f08,4, 0xc051f20,3, 0xc051f34,4, 0xc051f48,7, 0xc051f98,8, 0xc051fec,1, 0xc051ff8,4, 0xc052010,3, 0xc052024,4, 0xc052038,7, 0xc052088,8, 0xc0520dc,1, 0xc0520e8,4, 0xc052100,3, 0xc052114,4, 0xc052128,7, 0xc052178,8, 0xc0521cc,1, 0xc0521d8,4, 0xc0521f0,3, 0xc052204,4, 0xc052218,7, 0xc052268,8, 0xc0522bc,1, 0xc0522c8,64, 0xc052428,4, 0xc052678,27, 0xc0526ec,3, 0xc052778,1, 0xc0528c8,11, 0xc0528f8,17, 0xc052940,1, 0xc052948,1, 0xc052950,1, 0xc052978,36, 0xc052a0c,57, 0xc052af4,34, 0xc052b80,57, 0xc052c68,34, 0xc052cf4,57, 0xc052ddc,34, 0xc052e68,57, 0xc052f50,34, 0xc052fdc,57, 0xc0530c4,34, 0xc053150,57, 0xc053238,34, 0xc0532c4,57, 0xc0533ac,34, 0xc053438,57, 0xc053520,34, 0xc0535ac,57, 0xc053694,34, 0xc053720,57, 0xc053808,34, 0xc053894,57, 0xc05397c,34, 0xc053a08,57, 0xc053af0,34, 0xc053b7c,57, 0xc053c64,34, 0xc053cf0,57, 0xc053dd8,34, 0xc053e64,57, 0xc053f4c,34, 0xc053fd8,57, 0xc0540c0,34, 0xc05414c,57, 0xc054234,34, 0xc0542c0,57, 0xc0543a8,34, 0xc054434,57, 0xc05451c,34, 0xc0545a8,57, 0xc054690,34, 0xc05471c,57, 0xc054804,34, 0xc054890,57, 0xc054978,34, 0xc054a04,57, 0xc054aec,34, 0xc054b78,57, 0xc054c60,34, 0xc054cec,57, 0xc054dd4,34, 0xc054e60,57, 0xc054f48,34, 0xc054fd4,57, 0xc0550bc,34, 0xc055148,57, 0xc055230,34, 0xc0552bc,57, 0xc0553a4,34, 0xc055430,57, 0xc055518,34, 0xc0555a4,57, 0xc05568c,34, 0xc055718,57, 0xc055800,34, 0xc05588c,57, 0xc055974,34, 0xc055a00,57, 0xc055ae8,34, 0xc055b74,57, 0xc055d68,18, 0xc055ee8,2131, 0xc05830c,164, 0xc05865c,1, 0xc0591e8,1, 0xc0591f8,225, 0xc059588,7, 0xc0595a8,1, 0xc059670,1, 0xc0596a0,9, 0xc0596c8,17, 0xc059720,49, 0xc0597e8,5, 0xc059858,1, 0xc05a1e8,4, 0xc05a200,9, 0xc05a228,144, 0xc05a528,8, 0xc0a0000,3, 0xc0a0018,2, 0xc0a0024,14, 0xc0a0060,27, 0xc0a00d0,3, 0xc0a00e0,3, 0xc0a00f0,3, 0xc0a0100,14, 0xc0a0140,3, 0xc0a0150,1, 0xc0a015c,4, 0xc0a0170,1, 0xc0a0180,15, 0xc0a01c0,1, 0xc0a01c8,5, 0xc0a01e0,1, 0xc0a01f0,7, 0xc0a0218,2, 0xc0a0224,14, 0xc0a0260,27, 0xc0a02d0,3, 0xc0a02e0,3, 0xc0a02f0,3, 0xc0a0300,14, 0xc0a0340,3, 0xc0a0350,1, 0xc0a035c,4, 0xc0a0370,1, 0xc0a0380,15, 0xc0a03c0,1, 0xc0a03c8,5, 0xc0a03e0,1, 0xc0a03f0,7, 0xc0a0418,2, 0xc0a0424,14, 0xc0a0460,27, 0xc0a04d0,3, 0xc0a04e0,3, 0xc0a04f0,3, 0xc0a0500,14, 0xc0a0540,3, 0xc0a0550,1, 0xc0a055c,4, 0xc0a0570,1, 0xc0a0580,15, 0xc0a05c0,1, 0xc0a05c8,5, 0xc0a05e0,1, 0xc0a05f0,7, 0xc0a0618,2, 0xc0a0624,14, 0xc0a0660,27, 0xc0a06d0,3, 0xc0a06e0,3, 0xc0a06f0,3, 0xc0a0700,14, 0xc0a0740,3, 0xc0a0750,1, 0xc0a075c,4, 0xc0a0770,1, 0xc0a0780,15, 0xc0a07c0,1, 0xc0a07c8,5, 0xc0a07e0,1, 0xc0a07f0,7, 0xc0a0818,2, 0xc0a0824,14, 0xc0a0860,27, 0xc0a08d0,3, 0xc0a08e0,3, 0xc0a08f0,3, 0xc0a0900,14, 0xc0a0940,3, 0xc0a0950,1, 0xc0a095c,4, 0xc0a0970,1, 0xc0a0980,15, 0xc0a09c0,1, 0xc0a09c8,5, 0xc0a09e0,1, 0xc0a09f0,4, 0xc0a1844,1, 0xc0a1850,3, 0xc0a1860,3, 0xc0a1870,7, 0xc0a1894,5, 0xc0a18c0,1, 0xc0a18e0,7, 0xc0a1900,11, 0xc0a1930,3, 0xc0a1980,4, 0xc0a19c0,14, 0xc0a1c00,5, 0xc0a1c18,95, 0xc0a1da0,66, 0xc0a2000,16, 0xc0a2100,36, 0xc0a2200,44, 0xc0a2400,100, 0xc0a2600,45, 0xc0a2700,4, 0xc0a2780,20, 0xc0a2800,2, 0xc0a280c,68, 0xc0a2920,3, 0xc0a2c04,1, 0xc0a2c40,28, 0xc0a2cb4,9, 0xc0a2ce0,7, 0xc0a2d00,7, 0xc0a2d20,7, 0xc0a2d40,7, 0xc0a2d60,7, 0xc0a2d80,7, 0xc0a2da0,7, 0xc0a2dc0,7, 0xc0a2e00,9, 0xc0a2e3c,2, 0xc0a2e50,6, 0xc0a2e84,10, 0xc0a3004,1, 0xc0a31f8,130, 0xc0a3c00,1, 0xc0a3c20,10, 0xc0a3c60,8, 0xc0a3c84,5, 0xc0a3d00,32, 0xc0a3d84,1, 0xc0a3d94,6, 0xc0a3e40,71, 0xc0a4a04,3, 0xc0a4b00,33, 0xc0a4b90,3, 0xc0a4c00,12, 0xc0a4cc0,4, 0xc0a4d00,15, 0xc0a4e00,25, 0xc0a4e84,1, 0xc0a4ea0,13, 0xc0a5000,2, 0xc0a5400,4, 0xc0a5420,8, 0xc0a5444,1, 0xc0a544c,1, 0xc0a5454,1, 0xc0a545c,10, 0xc0a5800,3, 0xc0a5810,3, 0xc0a5820,3, 0xc0a5830,3, 0xc0a5840,3, 0xc0a5850,3, 0xc0a5860,3, 0xc0a5870,3, 0xc0a5880,3, 0xc0a5890,3, 0xc0a58a0,3, 0xc0a58b0,3, 0xc0a58c0,3, 0xc0a58d0,3, 0xc0a58e0,3, 0xc0a58f0,3, 0xc0a5900,3, 0xc0a5910,3, 0xc0a5920,3, 0xc0a5930,3, 0xc0a5940,3, 0xc0a5950,3, 0xc0a5960,3, 0xc0a5970,3, 0xc0a5980,3, 0xc0a5990,3, 0xc0a59a0,3, 0xc0a59b0,3, 0xc0a59c0,3, 0xc0a59d0,3, 0xc0a59e0,3, 0xc0a59f0,3, 0xc0a5a00,3, 0xc0a5a10,3, 0xc0a5a20,3, 0xc0a5a30,3, 0xc0a5a40,3, 0xc0a5a50,3, 0xc0a5a60,3, 0xc0a5a70,3, 0xc0a5a80,3, 0xc0a5a90,3, 0xc0a5aa0,3, 0xc0a5ab0,3, 0xc0a5ac0,3, 0xc0a5ad0,3, 0xc0a5ae0,3, 0xc0a5af0,3, 0xc0a5b00,3, 0xc0a5b10,3, 0xc0a5b20,3, 0xc0a5b30,3, 0xc0a5b40,3, 0xc0a5b50,3, 0xc0a5b60,3, 0xc0a5b70,3, 0xc0a5b80,3, 0xc0a5b90,3, 0xc0a5ba0,3, 0xc0a5bb0,3, 0xc0a5bc0,3, 0xc0a5bd0,3, 0xc0a5be0,3, 0xc0a5bf0,3, 0xc0a5c00,1, 0xc0a5c08,8, 0xc0a5c30,8, 0xc0a5c54,1, 0xc0a5c5c,2, 0xc0a5c68,2, 0xc0a6000,11, 0xc0a6030,1, 0xc0a6080,2, 0xc0a60c4,2, 0xc0a60d0,1, 0xc0a60d8,1, 0xc0a60e0,1, 0xc0a60f4,3, 0xc0a7000,128, 0xc0a7208,256, 0xc0a7610,145, 0xc0a8000,24, 0xc0a8078,1, 0xc0a8080,1, 0xc0f0000,1, 0xc0f000c,12, 0xc0f0040,3, 0xc0f0404,1, 0xc0f0410,6, 0xc0f0440,5, 0xc0f0460,7, 0xc0f0480,7, 0xc0f04a0,7, 0xc0f0520,4, 0xc0f0540,10, 0xc0f0580,10, 0xc0f05c0,3, 0xc0f0600,20, 0xc0f0680,3, 0xc0f0800,5, 0xc0f0a00,29, 0xc0f0a80,3, 0xc0f0c04,1, 0xc0f0d90,188, 0xc0f10a8,8, 0xc0f1100,3, 0xc0f1110,12, 0xc0f1400,1, 0xc0f1480,18, 0xc0f1500,1, 0xc0f1600,2, 0xc0f1610,3, 0xc0f1620,3, 0xc0f1630,3, 0xc0f1640,3, 0xc0f1650,3, 0xc0f1660,3, 0xc0f1670,3, 0xc0f1680,3, 0xc0f1690,3, 0xc0f16a0,3, 0xc0f16b0,3, 0xc0f16c0,3, 0xc0f16d0,3, 0xc0f16e0,3, 0xc0f16f0,3, 0xc0f1700,3, 0xc0f2000,96, 0xc0f2400,2, 0xc0f2410,3, 0xc0f2420,3, 0xc0f2430,3, 0xc0f2440,3, 0xc0f2450,3, 0xc0f2460,3, 0xc0f2470,3, 0xc0f2480,3, 0xc0f2490,3, 0xc0f24a0,3, 0xc0f24b0,3, 0xc0f24c0,3, 0xc0f24d0,3, 0xc0f24e0,3, 0xc0f24f0,3, 0xc0f2500,3, 0xc0f2600,7, 0xc0f2620,3, 0xc0f2630,1, 0xc0f2800,8, 0xc0f2900,2, 0xc0f2910,3, 0xc0f2920,3, 0xc0f2930,3, 0xc0f2940,3, 0xc0f2950,3, 0xc0f2960,3, 0xc0f2970,3, 0xc0f2980,3, 0xc0f2a00,3, 0xc0f3000,15, 0xc0f3040,3, 0xc0f3080,2, 0xc0f30c0,9, 0xc0f3100,1, 0xc0f3200,2, 0xc0f3210,3, 0xc0f3220,3, 0xc0f3230,3, 0xc0f3240,3, 0xc0f3250,3, 0xc0f3260,3, 0xc0f3270,3, 0xc0f3280,3, 0xc0f3300,2, 0xc0f3314,3, 0xc0f3324,3, 0xc0f3334,1, 0xc0f333c,1, 0xc0f3404,1, 0xc0f347c,33, 0xc0f3504,1, 0xc0f350c,1, 0xc0f3580,18, 0xc0f3600,5, 0xc0f3640,9, 0xc0f3680,9, 0xc0f36c0,27, 0xc0f3730,2, 0xc0f3740,9, 0xc0f3780,3, 0xc0f37a0,8, 0xc0f3800,6, 0xc0f3820,7, 0xc0f3840,6, 0xc0f3860,7, 0xc0f3880,3, 0xc0f3890,1, 0xc0f3900,2, 0xc0f4004,1, 0xc0f4080,34, 0xc0f4110,10, 0xc0f413c,3, 0xc0f4204,1, 0xc0f4280,36, 0xc0f4314,1, 0xc0f4400,20, 0xc0f4480,9, 0xc0f4804,1, 0xc0f4880,34, 0xc0f4910,10, 0xc0f493c,3, 0xc0f4a04,1, 0xc0f4a80,36, 0xc0f4b14,1, 0xc0f4c00,20, 0xc0f4c80,9, 0xc0f5004,1, 0xc0f5080,34, 0xc0f5110,10, 0xc0f513c,3, 0xc0f5204,1, 0xc0f5280,36, 0xc0f5314,1, 0xc0f5400,20, 0xc0f5480,9, 0xc0f5800,20, 0xc0f5884,1, 0xc0f588c,1, 0xc0f58c0,12, 0xc0f5900,3, 0xc0f5a00,20, 0xc0f5a84,1, 0xc0f5a8c,1, 0xc0f5ac0,12, 0xc0f5b00,3, 0xc0f5c00,20, 0xc0f5c84,1, 0xc0f5c8c,1, 0xc0f5cc0,12, 0xc0f5d00,3, 0xc0f5e00,7, 0xc0f5e80,20, 0xc0f5f00,12, 0xc0f5f40,11, 0xc0f6004,1, 0xc0f6014,19, 0xc0f6080,5, 0xc0f6100,3, 0xc0f6144,1, 0xc0f6150,4, 0xc0f6180,1, 0xc0f6200,1, 0xc0f6400,2, 0xc0f6410,3, 0xc0f6420,3, 0xc0f6430,3, 0xc0f6440,3, 0xc0f6450,3, 0xc0f6460,3, 0xc0f6470,3, 0xc0f6480,3, 0xc0f6490,3, 0xc0f64a0,3, 0xc0f64b0,3, 0xc0f64c0,3, 0xc0f64d0,3, 0xc0f64e0,3, 0xc0f64f0,3, 0xc0f6500,3, 0xc0f6604,1, 0xc0f6614,3, 0xc0f6640,11, 0xc0f6680,2, 0xc0f6690,3, 0xc0f66a0,3, 0xc0f66c0,9, 0xc0f6700,9, 0xc0f6740,6, 0xc0f6760,16, 0xc0f7000,2, 0xc0f7010,3, 0xc0f7020,3, 0xc0f7030,3, 0xc0f7040,3, 0xc0f7050,3, 0xc0f7060,3, 0xc0f7070,3, 0xc0f7080,3, 0xc0f7090,3, 0xc0f70a0,3, 0xc0f70b0,3, 0xc0f70c0,3, 0xc0f70d0,3, 0xc0f70e0,3, 0xc0f70f0,3, 0xc0f7100,3, 0xc0f7200,10, 0xc0f7404,1, 0xc0f7414,3, 0xc0f7800,153, 0xc100000,6, 0xc100020,3, 0xc100400,6, 0xc100424,1, 0xc100434,5, 0xc100600,128, 0xc100804,1, 0xc100828,86, 0xc100984,1, 0xc100c00,1, 0xc100c80,1, 0xc100c90,2, 0xc100d00,20, 0xc100d80,1, 0xc100da0,5, 0xc100e00,27, 0xc100f00,2, 0xc100f10,4, 0xc101000,7, 0xc180000,36, 0xc180800,10, 0xc180880,6, 0xc180900,2, 0xc180910,4, 0xc180a04,5, 0xc180a20,3, 0xc180a80,1, 0xc181000,36, 0xc181800,10, 0xc181880,6, 0xc1818a0,1, 0xc181900,2, 0xc181910,4, 0xc181a00,1, 0xc182000,36, 0xc182800,10, 0xc182880,6, 0xc1828a0,1, 0xc182900,2, 0xc182910,4, 0xc182a00,1, 0xc183000,36, 0xc183800,10, 0xc183880,6, 0xc1838a0,1, 0xc183900,2, 0xc183910,4, 0xc183a00,1, 0xc184000,36, 0xc184800,10, 0xc184880,6, 0xc1848a0,1, 0xc184900,2, 0xc184910,4, 0xc184a00,1, 0xc185000,36, 0xc185800,10, 0xc185880,6, 0xc1858a0,1, 0xc185900,2, 0xc185910,4, 0xc185a00,1, 0xc186000,36, 0xc186800,10, 0xc186880,6, 0xc1868a0,1, 0xc186900,2, 0xc186910,4, 0xc186a00,1, 0xc187000,36, 0xc187800,10, 0xc187880,6, 0xc1878a0,1, 0xc187900,2, 0xc187910,4, 0xc187a00,1, 0xc188000,36, 0xc188800,10, 0xc188880,6, 0xc1888a0,1, 0xc188900,2, 0xc188910,4, 0xc188a00,1, 0xc189000,36, 0xc189800,10, 0xc189880,6, 0xc1898a0,1, 0xc189900,2, 0xc189910,4, 0xc189a00,1, 0xc18a000,36, 0xc18a800,10, 0xc18a880,6, 0xc18a8a0,1, 0xc18a900,2, 0xc18a910,4, 0xc18aa00,1, 0xc18b000,36, 0xc18b800,10, 0xc18b880,6, 0xc18b8a0,1, 0xc18b900,2, 0xc18b910,4, 0xc18ba00,1, 0xc18c000,36, 0xc18c800,10, 0xc18c880,6, 0xc18c8a0,1, 0xc18c900,2, 0xc18c910,4, 0xc18ca00,1, 0xc18d000,36, 0xc18d800,10, 0xc18d880,6, 0xc18d8a0,1, 0xc18d900,2, 0xc18d910,4, 0xc18da00,1, 0xc18e000,36, 0xc18e800,10, 0xc18e880,6, 0xc18e8a0,1, 0xc18e900,2, 0xc18e910,4, 0xc18ea00,1, 0xc18f000,36, 0xc18f800,10, 0xc18f880,6, 0xc18f8a0,1, 0xc18f900,2, 0xc18f910,4, 0xc18fa00,1, 0xc190000,36, 0xc190800,10, 0xc190880,6, 0xc1908a0,1, 0xc190900,2, 0xc190910,4, 0xc190a00,1, 0xc191000,10, 0xc191080,5, 0xc1910a0,6, 0xc191100,2, 0xc191110,4, 0xc191200,1, 0xc192000,10, 0xc192080,5, 0xc1920a0,6, 0xc192100,2, 0xc192110,4, 0xc192200,1, 0xc193000,10, 0xc193080,5, 0xc1930a0,6, 0xc193100,2, 0xc193110,4, 0xc193200,1, 0xc194000,10, 0xc194080,5, 0xc1940a0,6, 0xc194100,2, 0xc194110,4, 0xc194200,1, 0xc195000,10, 0xc195080,5, 0xc1950a0,6, 0xc195100,2, 0xc195110,4, 0xc195200,1, 0xc196000,10, 0xc196080,5, 0xc1960a0,6, 0xc196100,2, 0xc196110,4, 0xc196200,1, 0xc197000,10, 0xc197080,5, 0xc1970a0,6, 0xc197100,2, 0xc197110,4, 0xc197200,1, 0xc198000,10, 0xc198080,5, 0xc1980a0,6, 0xc198100,2, 0xc198110,4, 0xc198200,1, 0xc199000,20, 0xc199800,10, 0xc199880,6, 0xc199900,2, 0xc199910,4, 0xc199940,2, 0xc199950,4, 0xc199a00,1, 0xc19a000,20, 0xc19a800,10, 0xc19a880,6, 0xc19a900,2, 0xc19a910,4, 0xc19a940,2, 0xc19a950,4, 0xc19aa00,1, 0xc19b000,20, 0xc19b800,10, 0xc19b880,6, 0xc19b900,2, 0xc19b910,4, 0xc19b940,2, 0xc19b950,4, 0xc19ba00,1, 0xc19c000,20, 0xc19c800,10, 0xc19c880,6, 0xc19c900,2, 0xc19c910,4, 0xc19c940,2, 0xc19c950,4, 0xc19ca00,1, 0xc19d000,20, 0xc19d800,10, 0xc19d880,6, 0xc19d900,2, 0xc19d910,4, 0xc19d940,2, 0xc19d950,4, 0xc19da00,1, 0xc19e000,20, 0xc19e800,10, 0xc19e880,6, 0xc19e900,2, 0xc19e910,4, 0xc19e940,2, 0xc19e950,4, 0xc19ea00,1, 0xc19f000,20, 0xc19f800,10, 0xc19f880,6, 0xc19f900,2, 0xc19f910,4, 0xc19f940,2, 0xc19f950,4, 0xc19fa00,1, 0xc1a0000,20, 0xc1a0800,10, 0xc1a0880,6, 0xc1a0900,2, 0xc1a0910,4, 0xc1a0940,2, 0xc1a0950,4, 0xc1a0a00,1, 0xc1a1000,20, 0xc1a1800,10, 0xc1a1880,5, 0xc1a18a0,6, 0xc1a1900,2, 0xc1a1910,4, 0xc1a1a00,1, 0xc1a2000,20, 0xc1a2800,1, 0xc1a3000,20, 0xc1a3800,1, 0xc1a4000,20, 0xc1a4800,10, 0xc1a4880,5, 0xc1a48a0,6, 0xc1a4900,2, 0xc1a4910,4, 0xc1a4a00,1, 0xc1a5000,20, 0xc1a5800,1, 0xc1a6000,20, 0xc1a6800,1, 0xc1a7000,20, 0xc1a7800,10, 0xc1a7880,5, 0xc1a78a0,6, 0xc1a7900,2, 0xc1a7910,4, 0xc1a7a00,1, 0xc1a8000,20, 0xc1a8800,1, 0xc1a9000,20, 0xc1a9800,1, 0xc1aa000,20, 0xc1aa800,10, 0xc1aa880,5, 0xc1aa8a0,6, 0xc1aa900,2, 0xc1aa910,4, 0xc1aaa00,1, 0xc1ab000,20, 0xc1ab800,1, 0xc1ac000,20, 0xc1ac800,1, 0xc1ad000,20, 0xc1ad800,10, 0xc1ad880,5, 0xc1ad8a0,6, 0xc1ad900,2, 0xc1ad910,4, 0xc1ada00,1, 0xc1ae000,20, 0xc1ae800,1, 0xc1af000,20, 0xc1af800,1, 0xc1b0000,20, 0xc1b0800,10, 0xc1b0880,5, 0xc1b08a0,6, 0xc1b0900,2, 0xc1b0910,4, 0xc1b0a00,1, 0xc1b1000,20, 0xc1b1800,1, 0xc1b2000,20, 0xc1b2800,1, 0xc1b3000,20, 0xc1b3800,10, 0xc1b3880,5, 0xc1b38a0,6, 0xc1b3900,2, 0xc1b3910,4, 0xc1b3a00,1, 0xc1b4000,20, 0xc1b4800,1, 0xc1b5000,20, 0xc1b5800,1, 0xc1b6000,20, 0xc1b6800,10, 0xc1b6880,5, 0xc1b68a0,6, 0xc1b6900,2, 0xc1b6910,4, 0xc1b6a00,1, 0xc1b7000,20, 0xc1b7800,1, 0xc1b8000,20, 0xc1b8800,1, 0xc1ba000,20, 0xc1ba800,10, 0xc1ba880,6, 0xc1ba900,2, 0xc1ba910,4, 0xc1baa00,8, 0xc1baa24,1, 0xc1baa40,8, 0xc1baa64,1, 0xc1baa80,8, 0xc1baaa4,1, 0xc1baac0,8, 0xc1baae4,1, 0xc1bab00,1, 0xc1bc000,20, 0xc1bc800,10, 0xc1bc880,6, 0xc1bc900,2, 0xc1bc910,4, 0xc1bca00,8, 0xc1bca24,1, 0xc1bca40,8, 0xc1bca64,1, 0xc1bca80,8, 0xc1bcaa4,1, 0xc1bcac0,8, 0xc1bcae4,1, 0xc1bcb00,1, 0xc1be000,20, 0xc1be800,10, 0xc1be880,6, 0xc1be900,2, 0xc1be910,4, 0xc1bea00,8, 0xc1bea24,1, 0xc1bea40,8, 0xc1bea64,1, 0xc1bea80,8, 0xc1beaa4,1, 0xc1beac0,8, 0xc1beae4,1, 0xc1beb00,1, 0xc1c0000,20, 0xc1c0800,10, 0xc1c0880,6, 0xc1c0900,2, 0xc1c0910,4, 0xc1c0a00,8, 0xc1c0a24,1, 0xc1c0a40,8, 0xc1c0a64,1, 0xc1c0a80,8, 0xc1c0aa4,1, 0xc1c0ac0,8, 0xc1c0ae4,1, 0xc1c0b00,1, 0xc1c2000,20, 0xc1c2800,10, 0xc1c2880,6, 0xc1c2900,2, 0xc1c2910,4, 0xc1c2a00,8, 0xc1c2a24,1, 0xc1c2a40,8, 0xc1c2a64,1, 0xc1c2a80,8, 0xc1c2aa4,1, 0xc1c2ac0,8, 0xc1c2ae4,1, 0xc1c2b00,1, 0xc1c4000,20, 0xc1c4800,10, 0xc1c4880,6, 0xc1c4900,2, 0xc1c4910,4, 0xc1c4a00,8, 0xc1c4a24,1, 0xc1c4a40,8, 0xc1c4a64,1, 0xc1c4a80,8, 0xc1c4aa4,1, 0xc1c4ac0,8, 0xc1c4ae4,1, 0xc1c4b00,1, 0xc1c6000,20, 0xc1c6800,10, 0xc1c6880,6, 0xc1c6900,2, 0xc1c6910,4, 0xc1c6a00,8, 0xc1c6a24,1, 0xc1c6a40,8, 0xc1c6a64,1, 0xc1c6a80,8, 0xc1c6aa4,1, 0xc1c6ac0,8, 0xc1c6ae4,1, 0xc1c6b00,1, 0xc1c8000,20, 0xc1c8800,10, 0xc1c8880,6, 0xc1c8900,2, 0xc1c8910,4, 0xc1c8a00,8, 0xc1c8a24,1, 0xc1c8a40,8, 0xc1c8a64,1, 0xc1c8a80,8, 0xc1c8aa4,1, 0xc1c8ac0,8, 0xc1c8ae4,1, 0xc1c8b00,1, 0xc1f9000,10, 0xc1fa000,10, 0xc1fb000,10, 0xc200000,198, 0xc200400,2, 0xc200440,9, 0xc200480,7, 0xc200800,198, 0xc200c00,2, 0xc200c40,9, 0xc200c80,7, 0xc201000,198, 0xc201400,198, 0xc201804,6, 0xc201824,6, 0xc201880,2, 0xc201904,1, 0xc201918,28, 0xc2019a0,6, 0xc2019c0,6, 0xc201c00,2, 0xc201d00,2, 0xc201e04,1, 0xc201e74,43, 0xc202000,2, 0xc202100,2, 0xc202204,1, 0xc202274,43, 0xc202400,3, 0xc202600,27, 0xc202680,4, 0xc2026c0,25, 0xc202740,6, 0xc202760,4, 0xc202774,11, 0xc2027a4,4, 0xc202800,4, 0xc202900,34, 0xc202a00,4, 0xc202b00,34, 0xc202c00,3, 0xc202c10,12, 0xc202e00,56, 0xc202ee4,4, 0xc202f00,4, 0xc203000,1, 0xc208000,4, 0xc208100,42, 0xc208200,1, 0xc208210,3, 0xc208220,3, 0xc208230,3, 0xc208240,1, 0xc208248,3, 0xc208400,4, 0xc208500,58, 0xc208600,1, 0xc208610,3, 0xc208620,3, 0xc208630,3, 0xc208640,1, 0xc208648,3, 0xc208800,4, 0xc208900,36, 0xc208a00,1, 0xc208c00,4, 0xc208c80,27, 0xc208d00,1, 0xc208d10,3, 0xc208d20,3, 0xc208d30,3, 0xc208d40,1, 0xc208d48,3, 0xc208e00,4, 0xc208e80,31, 0xc208f00,1, 0xc208f10,3, 0xc208f20,3, 0xc208f30,3, 0xc208f40,1, 0xc208f48,3, 0xc209000,4, 0xc209040,13, 0xc209080,1, 0xc209200,15, 0xc209240,4, 0xc209260,17, 0xc2092c0,6, 0xc2092e0,2, 0xc2092ec,3, 0xc209300,8, 0xc209324,8, 0xc209400,68, 0xc209600,60, 0xc209700,4, 0xc209720,5, 0xc209740,1, 0xc209780,2, 0xc20978c,2, 0xc2097a0,1, 0xc2097c0,12, 0xc209800,7, 0xc209820,5, 0xc209900,49, 0xc209a00,1, 0xc209a08,23, 0xc209a84,1, 0xc209a8c,1, 0xc209a94,1, 0xc209a9c,2, 0xc209ac0,1, 0xc209c00,10, 0xc209c40,1, 0xc209c50,3, 0xc209c80,10, 0xc209cc0,12, 0xc209d00,3, 0xc209e00,1, 0xc20a000,4, 0xc20a100,42, 0xc20a200,1, 0xc20a210,3, 0xc20a220,3, 0xc20a230,3, 0xc20a240,1, 0xc20a248,3, 0xc20a400,4, 0xc20a500,58, 0xc20a600,1, 0xc20a610,3, 0xc20a620,3, 0xc20a630,3, 0xc20a640,1, 0xc20a648,3, 0xc20a800,4, 0xc20a900,36, 0xc20aa00,1, 0xc20ac00,4, 0xc20ac80,27, 0xc20ad00,1, 0xc20ad10,3, 0xc20ad20,3, 0xc20ad30,3, 0xc20ad40,1, 0xc20ad48,3, 0xc20ae00,4, 0xc20ae80,31, 0xc20af00,1, 0xc20af10,3, 0xc20af20,3, 0xc20af30,3, 0xc20af40,1, 0xc20af48,3, 0xc20b000,4, 0xc20b040,13, 0xc20b080,1, 0xc20b200,15, 0xc20b240,4, 0xc20b260,17, 0xc20b2c0,6, 0xc20b2e0,2, 0xc20b2ec,3, 0xc20b300,8, 0xc20b324,8, 0xc20b400,68, 0xc20b600,60, 0xc20b700,4, 0xc20b720,5, 0xc20b740,1, 0xc20b780,2, 0xc20b78c,2, 0xc20b7a0,1, 0xc20b7c0,12, 0xc20b800,7, 0xc20b820,5, 0xc20b900,49, 0xc20ba00,1, 0xc20ba08,23, 0xc20ba84,1, 0xc20ba8c,1, 0xc20ba94,1, 0xc20ba9c,2, 0xc20bac0,1, 0xc20bc00,10, 0xc20bc40,1, 0xc20bc50,3, 0xc20bc80,10, 0xc20bcc0,12, 0xc20bd00,3, 0xc20be00,1, 0xc20c000,20, 0xc20c080,3, 0xc20c090,1, 0xc20c098,4, 0xc210000,49, 0xc210100,12, 0xc210140,4, 0xc210184,1, 0xc210198,2, 0xc2101a4,1, 0xc2101b8,7, 0xc2101e0,4, 0xc210200,20, 0xc210280,3, 0xc210290,9, 0xc2102c0,6, 0xc2102e0,1, 0xc2102e8,7, 0xc210400,49, 0xc210500,12, 0xc210540,4, 0xc210584,1, 0xc210598,2, 0xc2105a4,1, 0xc2105b8,7, 0xc2105e0,4, 0xc210600,20, 0xc210680,3, 0xc210690,9, 0xc2106c0,6, 0xc2106e0,1, 0xc2106e8,7, 0xc210800,49, 0xc210900,12, 0xc210940,4, 0xc210984,1, 0xc210998,2, 0xc2109a4,1, 0xc2109b8,7, 0xc2109e0,4, 0xc210a00,20, 0xc210a80,3, 0xc210a90,9, 0xc210ac0,6, 0xc210ae0,1, 0xc210ae8,7, 0xc210c00,49, 0xc210d00,12, 0xc210d40,4, 0xc210d84,1, 0xc210d98,2, 0xc210da4,1, 0xc210db8,7, 0xc210de0,4, 0xc210e00,20, 0xc210e80,3, 0xc210e90,9, 0xc210ec0,6, 0xc210ee0,1, 0xc210ee8,7, 0xc211000,49, 0xc211100,12, 0xc211140,4, 0xc211184,1, 0xc211198,2, 0xc2111a4,1, 0xc2111b8,7, 0xc2111e0,4, 0xc211200,20, 0xc211280,3, 0xc211290,9, 0xc2112c0,6, 0xc2112e0,1, 0xc2112e8,7, 0xc211400,49, 0xc211500,12, 0xc211540,4, 0xc211584,1, 0xc211598,2, 0xc2115a4,1, 0xc2115b8,7, 0xc2115e0,4, 0xc211600,20, 0xc211680,3, 0xc211690,9, 0xc2116c0,6, 0xc2116e0,1, 0xc2116e8,7, 0xc211800,49, 0xc211900,12, 0xc211940,4, 0xc211984,1, 0xc211998,2, 0xc2119a4,1, 0xc2119b8,7, 0xc2119e0,4, 0xc211a00,20, 0xc211a80,3, 0xc211a90,9, 0xc211ac0,6, 0xc211ae0,1, 0xc211ae8,7, 0xc212000,20, 0xc212080,10, 0xc212100,20, 0xc212180,10, 0xc212200,12, 0xc212400,20, 0xc212480,10, 0xc212500,20, 0xc212580,10, 0xc212600,12, 0xc212800,3, 0xc212840,12, 0xc212880,12, 0xc2128c0,12, 0xc212900,12, 0xc212940,12, 0xc212980,12, 0xc2129c0,12, 0xc212a00,12, 0xc212c00,12, 0xc212c40,7, 0xc212c60,10, 0xc213004,1, 0xc213044,43, 0xc213100,7, 0xc213120,7, 0xc213140,2, 0xc21314c,2, 0xc213160,2, 0xc21316c,2, 0xc213180,18, 0xc213200,2, 0xc213220,10, 0xc213260,20, 0xc2132c0,9, 0xc213300,15, 0xc213340,9, 0xc213380,6, 0xc2133a0,4, 0xc213400,5, 0xc214000,53, 0xc214100,3, 0xc214110,15, 0xc214200,53, 0xc214300,3, 0xc214310,15, 0xc214400,5, 0xc214420,5, 0xc214440,18, 0xc214800,3, 0xc214810,2, 0xc214820,3, 0xc214830,2, 0xc214840,1, 0xc215000,7, 0xc215020,7, 0xc215080,19, 0xc215100,19, 0xc215180,25, 0xc215200,20, 0xc215280,20, 0xc215300,8, 0xc215340,4, 0xc215380,15, 0xc2153c0,15, 0xc215400,9, 0xc215430,5, 0xc216000,6, 0xc216020,1, 0xc216028,2, 0xc216040,11, 0xc216070,2, 0xc218000,82, 0xc218200,2, 0xc218240,9, 0xc218280,7, 0xc218400,82, 0xc218604,6, 0xc218700,15, 0xc218740,9, 0xc218780,6, 0xc2187a0,6, 0xc218800,2, 0xc218810,3, 0xc218880,24, 0xc2188e4,1, 0xc2188f0,12, 0xc220000,22, 0xc220080,22, 0xc220100,5, 0xc220120,5, 0xc220140,3, 0xc220160,16, 0xc2201c0,7, 0xc2201e0,2, 0xc220200,7, 0xc220220,2, 0xc220400,15, 0xc220440,3, 0xc220450,3, 0xc220460,24, 0xc220500,15, 0xc220540,3, 0xc220550,3, 0xc220560,24, 0xc220600,15, 0xc220640,3, 0xc220650,3, 0xc220660,24, 0xc220700,15, 0xc220740,3, 0xc220750,3, 0xc220760,24, 0xc220800,4, 0xc220820,16, 0xc220880,10, 0xc2208c0,10, 0xc220900,6, 0xc220920,6, 0xc220940,4, 0xc220980,13, 0xc2209c0,13, 0xc220a00,9, 0xc221000,86, 0xc221200,2, 0xc221240,9, 0xc221280,7, 0xc221400,86, 0xc221604,6, 0xc221800,86, 0xc221a00,2, 0xc221a40,9, 0xc221a80,7, 0xc221c00,86, 0xc221e04,6, 0xc222000,15, 0xc222040,4, 0xc222060,17, 0xc2220c0,6, 0xc2220e0,4, 0xc2220f4,11, 0xc222128,38, 0xc2221c4,2, 0xc2221d0,4, 0xc222200,1, 0xc224000,22, 0xc224080,22, 0xc224100,5, 0xc224120,5, 0xc224140,3, 0xc224160,16, 0xc2241c0,7, 0xc2241e0,2, 0xc224200,7, 0xc224220,2, 0xc224400,15, 0xc224440,3, 0xc224450,3, 0xc224460,24, 0xc224500,15, 0xc224540,3, 0xc224550,3, 0xc224560,24, 0xc224600,15, 0xc224640,3, 0xc224650,3, 0xc224660,24, 0xc224700,15, 0xc224740,3, 0xc224750,3, 0xc224760,24, 0xc224800,4, 0xc224820,16, 0xc224880,10, 0xc2248c0,10, 0xc224900,6, 0xc224920,6, 0xc224940,4, 0xc224980,13, 0xc2249c0,13, 0xc224a00,9, 0xc225000,86, 0xc225200,2, 0xc225240,9, 0xc225280,7, 0xc225400,86, 0xc225604,6, 0xc225800,86, 0xc225a00,2, 0xc225a40,9, 0xc225a80,7, 0xc225c00,86, 0xc225e04,6, 0xc226000,15, 0xc226040,4, 0xc226060,17, 0xc2260c0,6, 0xc2260e0,4, 0xc2260f4,11, 0xc226128,38, 0xc2261c4,2, 0xc2261d0,4, 0xc226200,1, 0xc228000,9, 0xc228040,9, 0xc228080,5, 0xc228100,21, 0xc228160,5, 0xc228180,45, 0xc228240,13, 0xc228280,9, 0xc228400,9, 0xc228440,9, 0xc228480,5, 0xc228500,21, 0xc228560,5, 0xc228580,45, 0xc228640,13, 0xc228680,9, 0xc228800,12, 0xc228900,15, 0xc228940,4, 0xc228960,17, 0xc2289c0,6, 0xc2289e0,4, 0xc2289f4,29, 0xc22c000,30, 0xc22c080,3, 0xc22c090,19, 0xc22c100,30, 0xc22c180,3, 0xc22c190,19, 0xc22c200,30, 0xc22c280,3, 0xc22c290,19, 0xc22c300,30, 0xc22c380,3, 0xc22c390,19, 0xc22c400,30, 0xc22c480,3, 0xc22c490,19, 0xc22c500,30, 0xc22c580,3, 0xc22c590,19, 0xc22c600,30, 0xc22c680,3, 0xc22c690,19, 0xc22c700,30, 0xc22c780,3, 0xc22c790,19, 0xc22c800,12, 0xc22c844,1, 0xc22c854,8, 0xc22c880,7, 0xc22c8a0,2, 0xc22c8ac,2, 0xc22c8c0,26, 0xc22c980,4, 0xc22c9a0,5, 0xc22c9c0,1, 0xc22d000,3, 0xc22d010,3, 0xc22d020,3, 0xc22d030,3, 0xc22d040,3, 0xc22d050,3, 0xc22d060,3, 0xc22d070,3, 0xc22d080,6, 0xc22d0a0,6, 0xc22d0c0,6, 0xc22d0e0,6, 0xc22d100,6, 0xc22d120,6, 0xc22d140,6, 0xc22d160,6, 0xc22d200,68, 0xc22d400,1, 0xc22d804,1, 0xc22d844,54, 0xc22da00,12, 0xc22da40,12, 0xc22da80,12, 0xc22dac0,12, 0xc22db00,12, 0xc22db40,12, 0xc22db80,12, 0xc22dbc0,12, 0xc22dc00,28, 0xc22dc80,10, 0xc22e000,3, 0xc22e020,6, 0xc22e040,6, 0xc22e060,15, 0xc22e100,26, 0xc22e180,15, 0xc22e200,15, 0xc22e240,4, 0xc22e260,17, 0xc22e2c0,6, 0xc22e2e0,4, 0xc22e2f4,18, 0xc22e340,4, 0xc22e360,17, 0xc22e3c0,6, 0xc22e3e0,4, 0xc22e3f4,15, 0xc230000,1, 0xc231000,1020, 0xc232000,194, 0xc233000,1020, 0xc234000,1020, 0xc235000,1020, 0xc236000,1020, 0xc237000,1020, 0xc238000,1020, 0xc239000,1020, 0xc23a000,1020, 0xc23b000,194, 0xc23c000,3, 0xc23c010,13, 0xc23c080,16, 0xc23c100,20, 0xc23c184,1, 0xc23c18c,4, 0xc23c200,3, 0xc23c210,13, 0xc23c280,16, 0xc23c300,20, 0xc23c384,1, 0xc23c38c,4, 0xc23c400,3, 0xc23c410,13, 0xc23c480,16, 0xc23c500,20, 0xc23c584,1, 0xc23c58c,4, 0xc23c600,3, 0xc23c610,13, 0xc23c680,16, 0xc23c700,20, 0xc23c784,1, 0xc23c78c,4, 0xc23c800,3, 0xc23c810,13, 0xc23c880,16, 0xc23c900,20, 0xc23c984,1, 0xc23c98c,4, 0xc23ca00,3, 0xc23ca10,13, 0xc23ca80,16, 0xc23cb00,20, 0xc23cb84,1, 0xc23cb8c,4, 0xc23cc00,3, 0xc23cc10,13, 0xc23cc80,16, 0xc23cd00,20, 0xc23cd84,1, 0xc23cd8c,4, 0xc23ce00,3, 0xc23ce10,13, 0xc23ce80,16, 0xc23cf00,20, 0xc23cf84,1, 0xc23cf8c,4, 0xc23d000,3, 0xc23d010,13, 0xc23d080,16, 0xc23d100,20, 0xc23d184,1, 0xc23d18c,4, 0xc23d200,18, 0xc23d250,2, 0xc23d260,4, 0xc23e000,1, 0xc23e014,1, 0xc23e01c,19, 0xc23e080,1, 0xc23e094,1, 0xc23e09c,19, 0xc23e100,8, 0xc23e200,13, 0xc23e240,9, 0xc23e280,12, 0xc23e2c0,2, 0xc23e2e0,12, 0xc240000,3, 0xc240080,20, 0xc240100,10, 0xc240140,1, 0xc240154,1, 0xc24015c,2, 0xc240200,15, 0xc240240,4, 0xc240260,17, 0xc2402c0,6, 0xc2402e0,2, 0xc2402ec,3, 0xc240300,8, 0xc240324,1, 0xc240400,4, 0xc240440,20, 0xc2404c0,9, 0xc240500,33, 0xc240600,11, 0xc240640,11, 0xc240680,1, 0xc242000,1, 0xc242200,4, 0xc242300,53, 0xc242400,4, 0xc242500,40, 0xc242600,15, 0xc242640,4, 0xc242660,17, 0xc2426c0,6, 0xc2426e0,2, 0xc2426ec,3, 0xc242700,8, 0xc242724,1, 0xc242800,20, 0xc242c00,53, 0xc242d00,53, 0xc242e00,1, 0xc243000,40, 0xc243100,40, 0xc243200,1, 0xc243400,1, 0xc243804,1, 0xc243844,39, 0xc243900,3, 0xc243a00,3, 0xc243a44,1, 0xc243a50,4, 0xc243a80,1, 0xc244000,2, 0xc244200,27, 0xc244280,4, 0xc2442c0,25, 0xc244340,6, 0xc244360,2, 0xc24436c,3, 0xc244380,8, 0xc2443a4,1, 0xc244400,12, 0xc244440,1, 0xc248000,3, 0xc248080,20, 0xc248100,10, 0xc248140,1, 0xc248154,1, 0xc24815c,2, 0xc248200,15, 0xc248240,4, 0xc248260,17, 0xc2482c0,6, 0xc2482e0,2, 0xc2482ec,3, 0xc248300,8, 0xc248324,1, 0xc248400,4, 0xc248440,20, 0xc2484c0,9, 0xc248500,33, 0xc248600,11, 0xc248640,11, 0xc248680,1, 0xc24a000,1, 0xc24a200,4, 0xc24a300,53, 0xc24a400,4, 0xc24a500,40, 0xc24a600,15, 0xc24a640,4, 0xc24a660,17, 0xc24a6c0,6, 0xc24a6e0,2, 0xc24a6ec,3, 0xc24a700,8, 0xc24a724,1, 0xc24a800,20, 0xc24ac00,53, 0xc24ad00,53, 0xc24ae00,1, 0xc24b000,40, 0xc24b100,40, 0xc24b200,1, 0xc24b400,1, 0xc24b804,1, 0xc24b844,39, 0xc24b900,3, 0xc24ba00,3, 0xc24ba44,1, 0xc24ba50,4, 0xc24ba80,1, 0xc24c000,2, 0xc24c200,27, 0xc24c280,4, 0xc24c2c0,25, 0xc24c340,6, 0xc24c360,2, 0xc24c36c,3, 0xc24c380,8, 0xc24c3a4,1, 0xc24c400,12, 0xc24c440,1, 0xc250000,4, 0xc250020,3, 0xc250030,2, 0xc250200,1, 0xc250224,10, 0xc250250,5, 0xc250280,1, 0xc250288,24, 0xc250300,3, 0xc250404,1, 0xc250414,5, 0xc250500,36, 0xc250600,3, 0xc250800,2, 0xc251000,1, 0xc251008,21, 0xc251080,1, 0xc251088,21, 0xc251100,1, 0xc251108,21, 0xc251180,1, 0xc251188,21, 0xc251200,1, 0xc251208,21, 0xc251280,1, 0xc251288,21, 0xc251300,1, 0xc251308,21, 0xc251380,1, 0xc251388,21, 0xc251400,21, 0xc251800,142, 0xc251c00,1, 0xc252000,4, 0xc252100,39, 0xc252200,3, 0xc252214,3, 0xc254004,1, 0xc254020,16, 0xc254080,2, 0xc254094,1, 0xc25409c,2, 0xc2540c0,6, 0xc254100,8, 0xc258004,17, 0xc258054,1, 0xc25805c,2, 0xc258080,1, 0xc2580a0,2, 0xc2580b4,4, 0xc258100,2, 0xc258200,8, 0xc258400,1, 0xc258600,27, 0xc258680,4, 0xc2586c0,25, 0xc258740,6, 0xc258760,2, 0xc25876c,3, 0xc258780,8, 0xc2587a4,3, 0xc258800,44, 0xc258900,1, 0xc260000,1, 0xc260200,27, 0xc260280,4, 0xc2602c0,25, 0xc260340,6, 0xc260360,2, 0xc26036c,3, 0xc260380,8, 0xc2603a4,1, 0xc260400,20, 0xc260480,3, 0xc260490,9, 0xc280000,198, 0xc280400,2, 0xc280440,9, 0xc280480,7, 0xc280800,198, 0xc280c00,2, 0xc280c40,9, 0xc280c80,7, 0xc281000,198, 0xc281400,198, 0xc281804,6, 0xc281824,6, 0xc281880,2, 0xc281904,1, 0xc281918,28, 0xc2819a0,6, 0xc2819c0,6, 0xc281c00,2, 0xc281d00,2, 0xc281e04,1, 0xc281e74,43, 0xc282000,2, 0xc282100,2, 0xc282204,1, 0xc282274,43, 0xc282400,3, 0xc282600,27, 0xc282680,4, 0xc2826c0,25, 0xc282740,6, 0xc282760,4, 0xc282774,11, 0xc2827a4,4, 0xc282800,4, 0xc282900,34, 0xc282a00,4, 0xc282b00,34, 0xc282c00,3, 0xc282c10,12, 0xc282e00,56, 0xc282ee4,4, 0xc282f00,4, 0xc283000,1, 0xc288000,4, 0xc288100,42, 0xc288200,1, 0xc288210,3, 0xc288220,3, 0xc288230,3, 0xc288240,1, 0xc288248,3, 0xc288400,4, 0xc288500,58, 0xc288600,1, 0xc288610,3, 0xc288620,3, 0xc288630,3, 0xc288640,1, 0xc288648,3, 0xc288800,4, 0xc288900,36, 0xc288a00,1, 0xc288c00,4, 0xc288c80,27, 0xc288d00,1, 0xc288d10,3, 0xc288d20,3, 0xc288d30,3, 0xc288d40,1, 0xc288d48,3, 0xc288e00,4, 0xc288e80,31, 0xc288f00,1, 0xc288f10,3, 0xc288f20,3, 0xc288f30,3, 0xc288f40,1, 0xc288f48,3, 0xc289000,4, 0xc289040,13, 0xc289080,1, 0xc289200,15, 0xc289240,4, 0xc289260,17, 0xc2892c0,6, 0xc2892e0,2, 0xc2892ec,3, 0xc289300,8, 0xc289324,8, 0xc289400,68, 0xc289600,60, 0xc289700,4, 0xc289720,5, 0xc289740,1, 0xc289780,2, 0xc28978c,2, 0xc2897a0,1, 0xc2897c0,12, 0xc289800,7, 0xc289820,5, 0xc289900,49, 0xc289a00,1, 0xc289a08,23, 0xc289a84,1, 0xc289a8c,1, 0xc289a94,1, 0xc289a9c,2, 0xc289ac0,1, 0xc289c00,10, 0xc289c40,1, 0xc289c50,3, 0xc289c80,10, 0xc289cc0,12, 0xc289d00,3, 0xc289e00,1, 0xc28a000,4, 0xc28a100,42, 0xc28a200,1, 0xc28a210,3, 0xc28a220,3, 0xc28a230,3, 0xc28a240,1, 0xc28a248,3, 0xc28a400,4, 0xc28a500,58, 0xc28a600,1, 0xc28a610,3, 0xc28a620,3, 0xc28a630,3, 0xc28a640,1, 0xc28a648,3, 0xc28a800,4, 0xc28a900,36, 0xc28aa00,1, 0xc28ac00,4, 0xc28ac80,27, 0xc28ad00,1, 0xc28ad10,3, 0xc28ad20,3, 0xc28ad30,3, 0xc28ad40,1, 0xc28ad48,3, 0xc28ae00,4, 0xc28ae80,31, 0xc28af00,1, 0xc28af10,3, 0xc28af20,3, 0xc28af30,3, 0xc28af40,1, 0xc28af48,3, 0xc28b000,4, 0xc28b040,13, 0xc28b080,1, 0xc28b200,15, 0xc28b240,4, 0xc28b260,17, 0xc28b2c0,6, 0xc28b2e0,2, 0xc28b2ec,3, 0xc28b300,8, 0xc28b324,8, 0xc28b400,68, 0xc28b600,60, 0xc28b700,4, 0xc28b720,5, 0xc28b740,1, 0xc28b780,2, 0xc28b78c,2, 0xc28b7a0,1, 0xc28b7c0,12, 0xc28b800,7, 0xc28b820,5, 0xc28b900,49, 0xc28ba00,1, 0xc28ba08,23, 0xc28ba84,1, 0xc28ba8c,1, 0xc28ba94,1, 0xc28ba9c,2, 0xc28bac0,1, 0xc28bc00,10, 0xc28bc40,1, 0xc28bc50,3, 0xc28bc80,10, 0xc28bcc0,12, 0xc28bd00,3, 0xc28be00,1, 0xc28c000,20, 0xc28c080,3, 0xc28c090,1, 0xc28c098,4, 0xc290000,49, 0xc290100,12, 0xc290140,4, 0xc290184,1, 0xc290198,2, 0xc2901a4,1, 0xc2901b8,7, 0xc2901e0,4, 0xc290200,20, 0xc290280,3, 0xc290290,9, 0xc2902c0,6, 0xc2902e0,1, 0xc2902e8,7, 0xc290400,49, 0xc290500,12, 0xc290540,4, 0xc290584,1, 0xc290598,2, 0xc2905a4,1, 0xc2905b8,7, 0xc2905e0,4, 0xc290600,20, 0xc290680,3, 0xc290690,9, 0xc2906c0,6, 0xc2906e0,1, 0xc2906e8,7, 0xc290800,49, 0xc290900,12, 0xc290940,4, 0xc290984,1, 0xc290998,2, 0xc2909a4,1, 0xc2909b8,7, 0xc2909e0,4, 0xc290a00,20, 0xc290a80,3, 0xc290a90,9, 0xc290ac0,6, 0xc290ae0,1, 0xc290ae8,7, 0xc290c00,49, 0xc290d00,12, 0xc290d40,4, 0xc290d84,1, 0xc290d98,2, 0xc290da4,1, 0xc290db8,7, 0xc290de0,4, 0xc290e00,20, 0xc290e80,3, 0xc290e90,9, 0xc290ec0,6, 0xc290ee0,1, 0xc290ee8,7, 0xc291000,49, 0xc291100,12, 0xc291140,4, 0xc291184,1, 0xc291198,2, 0xc2911a4,1, 0xc2911b8,7, 0xc2911e0,4, 0xc291200,20, 0xc291280,3, 0xc291290,9, 0xc2912c0,6, 0xc2912e0,1, 0xc2912e8,7, 0xc291400,49, 0xc291500,12, 0xc291540,4, 0xc291584,1, 0xc291598,2, 0xc2915a4,1, 0xc2915b8,7, 0xc2915e0,4, 0xc291600,20, 0xc291680,3, 0xc291690,9, 0xc2916c0,6, 0xc2916e0,1, 0xc2916e8,7, 0xc291800,49, 0xc291900,12, 0xc291940,4, 0xc291984,1, 0xc291998,2, 0xc2919a4,1, 0xc2919b8,7, 0xc2919e0,4, 0xc291a00,20, 0xc291a80,3, 0xc291a90,9, 0xc291ac0,6, 0xc291ae0,1, 0xc291ae8,7, 0xc292000,20, 0xc292080,10, 0xc292100,20, 0xc292180,10, 0xc292200,12, 0xc292400,20, 0xc292480,10, 0xc292500,20, 0xc292580,10, 0xc292600,12, 0xc292800,3, 0xc292840,12, 0xc292880,12, 0xc2928c0,12, 0xc292900,12, 0xc292940,12, 0xc292980,12, 0xc2929c0,12, 0xc292a00,12, 0xc292c00,12, 0xc292c40,7, 0xc292c60,10, 0xc293004,1, 0xc293044,43, 0xc293100,7, 0xc293120,7, 0xc293140,2, 0xc29314c,2, 0xc293160,2, 0xc29316c,2, 0xc293180,18, 0xc293200,2, 0xc293220,10, 0xc293260,20, 0xc2932c0,9, 0xc293300,15, 0xc293340,9, 0xc293380,6, 0xc2933a0,4, 0xc293400,5, 0xc294000,53, 0xc294100,3, 0xc294110,15, 0xc294200,53, 0xc294300,3, 0xc294310,15, 0xc294400,5, 0xc294420,5, 0xc294440,18, 0xc294800,3, 0xc294810,2, 0xc294820,3, 0xc294830,2, 0xc294840,1, 0xc295000,7, 0xc295020,7, 0xc295080,19, 0xc295100,19, 0xc295180,25, 0xc295200,20, 0xc295280,20, 0xc295300,8, 0xc295340,4, 0xc295380,15, 0xc2953c0,15, 0xc295400,9, 0xc295430,5, 0xc296000,6, 0xc296020,1, 0xc296028,2, 0xc296040,11, 0xc296070,2, 0xc298000,82, 0xc298200,2, 0xc298240,9, 0xc298280,7, 0xc298400,82, 0xc298604,6, 0xc298700,15, 0xc298740,9, 0xc298780,6, 0xc2987a0,6, 0xc298800,2, 0xc298810,3, 0xc298880,24, 0xc2988e4,1, 0xc2988f0,12, 0xc2a0000,22, 0xc2a0080,22, 0xc2a0100,5, 0xc2a0120,5, 0xc2a0140,3, 0xc2a0160,16, 0xc2a01c0,7, 0xc2a01e0,2, 0xc2a0200,7, 0xc2a0220,2, 0xc2a0400,15, 0xc2a0440,3, 0xc2a0450,3, 0xc2a0460,24, 0xc2a0500,15, 0xc2a0540,3, 0xc2a0550,3, 0xc2a0560,24, 0xc2a0600,15, 0xc2a0640,3, 0xc2a0650,3, 0xc2a0660,24, 0xc2a0700,15, 0xc2a0740,3, 0xc2a0750,3, 0xc2a0760,24, 0xc2a0800,4, 0xc2a0820,16, 0xc2a0880,10, 0xc2a08c0,10, 0xc2a0900,6, 0xc2a0920,6, 0xc2a0940,4, 0xc2a0980,13, 0xc2a09c0,13, 0xc2a0a00,9, 0xc2a1000,86, 0xc2a1200,2, 0xc2a1240,9, 0xc2a1280,7, 0xc2a1400,86, 0xc2a1604,6, 0xc2a1800,86, 0xc2a1a00,2, 0xc2a1a40,9, 0xc2a1a80,7, 0xc2a1c00,86, 0xc2a1e04,6, 0xc2a2000,15, 0xc2a2040,4, 0xc2a2060,17, 0xc2a20c0,6, 0xc2a20e0,4, 0xc2a20f4,11, 0xc2a2128,38, 0xc2a21c4,2, 0xc2a21d0,4, 0xc2a2200,1, 0xc2a4000,22, 0xc2a4080,22, 0xc2a4100,5, 0xc2a4120,5, 0xc2a4140,3, 0xc2a4160,16, 0xc2a41c0,7, 0xc2a41e0,2, 0xc2a4200,7, 0xc2a4220,2, 0xc2a4400,15, 0xc2a4440,3, 0xc2a4450,3, 0xc2a4460,24, 0xc2a4500,15, 0xc2a4540,3, 0xc2a4550,3, 0xc2a4560,24, 0xc2a4600,15, 0xc2a4640,3, 0xc2a4650,3, 0xc2a4660,24, 0xc2a4700,15, 0xc2a4740,3, 0xc2a4750,3, 0xc2a4760,24, 0xc2a4800,4, 0xc2a4820,16, 0xc2a4880,10, 0xc2a48c0,10, 0xc2a4900,6, 0xc2a4920,6, 0xc2a4940,4, 0xc2a4980,13, 0xc2a49c0,13, 0xc2a4a00,9, 0xc2a5000,86, 0xc2a5200,2, 0xc2a5240,9, 0xc2a5280,7, 0xc2a5400,86, 0xc2a5604,6, 0xc2a5800,86, 0xc2a5a00,2, 0xc2a5a40,9, 0xc2a5a80,7, 0xc2a5c00,86, 0xc2a5e04,6, 0xc2a6000,15, 0xc2a6040,4, 0xc2a6060,17, 0xc2a60c0,6, 0xc2a60e0,4, 0xc2a60f4,11, 0xc2a6128,38, 0xc2a61c4,2, 0xc2a61d0,4, 0xc2a6200,1, 0xc2a8000,9, 0xc2a8040,9, 0xc2a8080,5, 0xc2a8100,21, 0xc2a8160,5, 0xc2a8180,45, 0xc2a8240,13, 0xc2a8280,9, 0xc2a8400,9, 0xc2a8440,9, 0xc2a8480,5, 0xc2a8500,21, 0xc2a8560,5, 0xc2a8580,45, 0xc2a8640,13, 0xc2a8680,9, 0xc2a8800,12, 0xc2a8900,15, 0xc2a8940,4, 0xc2a8960,17, 0xc2a89c0,6, 0xc2a89e0,4, 0xc2a89f4,29, 0xc2ac000,30, 0xc2ac080,3, 0xc2ac090,19, 0xc2ac100,30, 0xc2ac180,3, 0xc2ac190,19, 0xc2ac200,30, 0xc2ac280,3, 0xc2ac290,19, 0xc2ac300,30, 0xc2ac380,3, 0xc2ac390,19, 0xc2ac400,30, 0xc2ac480,3, 0xc2ac490,19, 0xc2ac500,30, 0xc2ac580,3, 0xc2ac590,19, 0xc2ac600,30, 0xc2ac680,3, 0xc2ac690,19, 0xc2ac700,30, 0xc2ac780,3, 0xc2ac790,19, 0xc2ac800,12, 0xc2ac844,1, 0xc2ac854,8, 0xc2ac880,7, 0xc2ac8a0,2, 0xc2ac8ac,2, 0xc2ac8c0,26, 0xc2ac980,4, 0xc2ac9a0,5, 0xc2ac9c0,1, 0xc2ad000,3, 0xc2ad010,3, 0xc2ad020,3, 0xc2ad030,3, 0xc2ad040,3, 0xc2ad050,3, 0xc2ad060,3, 0xc2ad070,3, 0xc2ad080,6, 0xc2ad0a0,6, 0xc2ad0c0,6, 0xc2ad0e0,6, 0xc2ad100,6, 0xc2ad120,6, 0xc2ad140,6, 0xc2ad160,6, 0xc2ad200,68, 0xc2ad400,1, 0xc2ad804,1, 0xc2ad844,54, 0xc2ada00,12, 0xc2ada40,12, 0xc2ada80,12, 0xc2adac0,12, 0xc2adb00,12, 0xc2adb40,12, 0xc2adb80,12, 0xc2adbc0,12, 0xc2adc00,28, 0xc2adc80,10, 0xc2ae000,3, 0xc2ae020,6, 0xc2ae040,6, 0xc2ae060,15, 0xc2ae100,26, 0xc2ae180,15, 0xc2ae200,15, 0xc2ae240,4, 0xc2ae260,17, 0xc2ae2c0,6, 0xc2ae2e0,4, 0xc2ae2f4,18, 0xc2ae340,4, 0xc2ae360,17, 0xc2ae3c0,6, 0xc2ae3e0,4, 0xc2ae3f4,15, 0xc2b0000,1, 0xc2b1000,1020, 0xc2b2000,194, 0xc2b3000,1020, 0xc2b4000,1020, 0xc2b5000,1020, 0xc2b6000,1020, 0xc2b7000,1020, 0xc2b8000,1020, 0xc2b9000,1020, 0xc2ba000,1020, 0xc2bb000,194, 0xc2bc000,3, 0xc2bc010,13, 0xc2bc080,16, 0xc2bc100,20, 0xc2bc184,1, 0xc2bc18c,4, 0xc2bc200,3, 0xc2bc210,13, 0xc2bc280,16, 0xc2bc300,20, 0xc2bc384,1, 0xc2bc38c,4, 0xc2bc400,3, 0xc2bc410,13, 0xc2bc480,16, 0xc2bc500,20, 0xc2bc584,1, 0xc2bc58c,4, 0xc2bc600,3, 0xc2bc610,13, 0xc2bc680,16, 0xc2bc700,20, 0xc2bc784,1, 0xc2bc78c,4, 0xc2bc800,3, 0xc2bc810,13, 0xc2bc880,16, 0xc2bc900,20, 0xc2bc984,1, 0xc2bc98c,4, 0xc2bca00,3, 0xc2bca10,13, 0xc2bca80,16, 0xc2bcb00,20, 0xc2bcb84,1, 0xc2bcb8c,4, 0xc2bcc00,3, 0xc2bcc10,13, 0xc2bcc80,16, 0xc2bcd00,20, 0xc2bcd84,1, 0xc2bcd8c,4, 0xc2bce00,3, 0xc2bce10,13, 0xc2bce80,16, 0xc2bcf00,20, 0xc2bcf84,1, 0xc2bcf8c,4, 0xc2bd000,3, 0xc2bd010,13, 0xc2bd080,16, 0xc2bd100,20, 0xc2bd184,1, 0xc2bd18c,4, 0xc2bd200,18, 0xc2bd250,2, 0xc2bd260,4, 0xc2be000,1, 0xc2be014,1, 0xc2be01c,19, 0xc2be080,1, 0xc2be094,1, 0xc2be09c,19, 0xc2be100,8, 0xc2be200,13, 0xc2be240,9, 0xc2be280,12, 0xc2be2c0,2, 0xc2be2e0,12, 0xc2c0000,3, 0xc2c0080,20, 0xc2c0100,10, 0xc2c0140,1, 0xc2c0154,1, 0xc2c015c,2, 0xc2c0200,15, 0xc2c0240,4, 0xc2c0260,17, 0xc2c02c0,6, 0xc2c02e0,2, 0xc2c02ec,3, 0xc2c0300,8, 0xc2c0324,1, 0xc2c0400,4, 0xc2c0440,20, 0xc2c04c0,9, 0xc2c0500,33, 0xc2c0600,11, 0xc2c0640,11, 0xc2c0680,1, 0xc2c2000,1, 0xc2c2200,4, 0xc2c2300,53, 0xc2c2400,4, 0xc2c2500,40, 0xc2c2600,15, 0xc2c2640,4, 0xc2c2660,17, 0xc2c26c0,6, 0xc2c26e0,2, 0xc2c26ec,3, 0xc2c2700,8, 0xc2c2724,1, 0xc2c2800,20, 0xc2c2c00,53, 0xc2c2d00,53, 0xc2c2e00,1, 0xc2c3000,40, 0xc2c3100,40, 0xc2c3200,1, 0xc2c3400,1, 0xc2c3804,1, 0xc2c3844,39, 0xc2c3900,3, 0xc2c3a00,3, 0xc2c3a44,1, 0xc2c3a50,4, 0xc2c3a80,1, 0xc2c4000,2, 0xc2c4200,27, 0xc2c4280,4, 0xc2c42c0,25, 0xc2c4340,6, 0xc2c4360,2, 0xc2c436c,3, 0xc2c4380,8, 0xc2c43a4,1, 0xc2c4400,12, 0xc2c4440,1, 0xc2c8000,3, 0xc2c8080,20, 0xc2c8100,10, 0xc2c8140,1, 0xc2c8154,1, 0xc2c815c,2, 0xc2c8200,15, 0xc2c8240,4, 0xc2c8260,17, 0xc2c82c0,6, 0xc2c82e0,2, 0xc2c82ec,3, 0xc2c8300,8, 0xc2c8324,1, 0xc2c8400,4, 0xc2c8440,20, 0xc2c84c0,9, 0xc2c8500,33, 0xc2c8600,11, 0xc2c8640,11, 0xc2c8680,1, 0xc2ca000,1, 0xc2ca200,4, 0xc2ca300,53, 0xc2ca400,4, 0xc2ca500,40, 0xc2ca600,15, 0xc2ca640,4, 0xc2ca660,17, 0xc2ca6c0,6, 0xc2ca6e0,2, 0xc2ca6ec,3, 0xc2ca700,8, 0xc2ca724,1, 0xc2ca800,20, 0xc2cac00,53, 0xc2cad00,53, 0xc2cae00,1, 0xc2cb000,40, 0xc2cb100,40, 0xc2cb200,1, 0xc2cb400,1, 0xc2cb804,1, 0xc2cb844,39, 0xc2cb900,3, 0xc2cba00,3, 0xc2cba44,1, 0xc2cba50,4, 0xc2cba80,1, 0xc2cc000,2, 0xc2cc200,27, 0xc2cc280,4, 0xc2cc2c0,25, 0xc2cc340,6, 0xc2cc360,2, 0xc2cc36c,3, 0xc2cc380,8, 0xc2cc3a4,1, 0xc2cc400,12, 0xc2cc440,1, 0xc2d0000,4, 0xc2d0020,3, 0xc2d0030,2, 0xc2d0200,1, 0xc2d0224,10, 0xc2d0250,5, 0xc2d0280,1, 0xc2d0288,24, 0xc2d0300,3, 0xc2d0404,1, 0xc2d0414,5, 0xc2d0500,36, 0xc2d0600,3, 0xc2d0800,2, 0xc2d1000,1, 0xc2d1008,21, 0xc2d1080,1, 0xc2d1088,21, 0xc2d1100,1, 0xc2d1108,21, 0xc2d1180,1, 0xc2d1188,21, 0xc2d1200,1, 0xc2d1208,21, 0xc2d1280,1, 0xc2d1288,21, 0xc2d1300,1, 0xc2d1308,21, 0xc2d1380,1, 0xc2d1388,21, 0xc2d1400,21, 0xc2d1800,142, 0xc2d1c00,1, 0xc2d2000,4, 0xc2d2100,39, 0xc2d2200,3, 0xc2d2214,3, 0xc2d4004,1, 0xc2d4020,16, 0xc2d4080,2, 0xc2d4094,1, 0xc2d409c,2, 0xc2d40c0,6, 0xc2d4100,8, 0xc2d8004,17, 0xc2d8054,1, 0xc2d805c,2, 0xc2d8080,1, 0xc2d80a0,2, 0xc2d80b4,4, 0xc2d8100,2, 0xc2d8200,8, 0xc2d8400,1, 0xc2d8600,27, 0xc2d8680,4, 0xc2d86c0,25, 0xc2d8740,6, 0xc2d8760,2, 0xc2d876c,3, 0xc2d8780,8, 0xc2d87a4,3, 0xc2d8800,44, 0xc2d8900,1, 0xc2e0000,1, 0xc2e0200,27, 0xc2e0280,4, 0xc2e02c0,25, 0xc2e0340,6, 0xc2e0360,2, 0xc2e036c,3, 0xc2e0380,8, 0xc2e03a4,1, 0xc2e0400,20, 0xc2e0480,3, 0xc2e0490,9, 0xc300000,198, 0xc300400,2, 0xc300440,9, 0xc300480,7, 0xc300800,198, 0xc300c00,2, 0xc300c40,9, 0xc300c80,7, 0xc301000,198, 0xc301400,198, 0xc301804,6, 0xc301824,6, 0xc301880,2, 0xc301904,1, 0xc301918,28, 0xc3019a0,6, 0xc3019c0,6, 0xc301c00,2, 0xc301d00,2, 0xc301e04,1, 0xc301e74,43, 0xc302000,2, 0xc302100,2, 0xc302204,1, 0xc302274,43, 0xc302400,3, 0xc302600,27, 0xc302680,4, 0xc3026c0,25, 0xc302740,6, 0xc302760,4, 0xc302774,11, 0xc3027a4,4, 0xc302800,4, 0xc302900,34, 0xc302a00,4, 0xc302b00,34, 0xc302c00,3, 0xc302c10,12, 0xc302e00,56, 0xc302ee4,4, 0xc302f00,4, 0xc303000,1, 0xc308000,4, 0xc308100,42, 0xc308200,1, 0xc308210,3, 0xc308220,3, 0xc308230,3, 0xc308240,1, 0xc308248,3, 0xc308400,4, 0xc308500,58, 0xc308600,1, 0xc308610,3, 0xc308620,3, 0xc308630,3, 0xc308640,1, 0xc308648,3, 0xc308800,4, 0xc308900,36, 0xc308a00,1, 0xc308c00,4, 0xc308c80,27, 0xc308d00,1, 0xc308d10,3, 0xc308d20,3, 0xc308d30,3, 0xc308d40,1, 0xc308d48,3, 0xc308e00,4, 0xc308e80,31, 0xc308f00,1, 0xc308f10,3, 0xc308f20,3, 0xc308f30,3, 0xc308f40,1, 0xc308f48,3, 0xc309000,4, 0xc309040,13, 0xc309080,1, 0xc309200,15, 0xc309240,4, 0xc309260,17, 0xc3092c0,6, 0xc3092e0,2, 0xc3092ec,3, 0xc309300,8, 0xc309324,8, 0xc309400,68, 0xc309600,60, 0xc309700,4, 0xc309720,5, 0xc309740,1, 0xc309780,2, 0xc30978c,2, 0xc3097a0,1, 0xc3097c0,12, 0xc309800,7, 0xc309820,5, 0xc309900,49, 0xc309a00,1, 0xc309a08,23, 0xc309a84,1, 0xc309a8c,1, 0xc309a94,1, 0xc309a9c,2, 0xc309ac0,1, 0xc309c00,10, 0xc309c40,1, 0xc309c50,3, 0xc309c80,10, 0xc309cc0,12, 0xc309d00,3, 0xc309e00,1, 0xc30a000,4, 0xc30a100,42, 0xc30a200,1, 0xc30a210,3, 0xc30a220,3, 0xc30a230,3, 0xc30a240,1, 0xc30a248,3, 0xc30a400,4, 0xc30a500,58, 0xc30a600,1, 0xc30a610,3, 0xc30a620,3, 0xc30a630,3, 0xc30a640,1, 0xc30a648,3, 0xc30a800,4, 0xc30a900,36, 0xc30aa00,1, 0xc30ac00,4, 0xc30ac80,27, 0xc30ad00,1, 0xc30ad10,3, 0xc30ad20,3, 0xc30ad30,3, 0xc30ad40,1, 0xc30ad48,3, 0xc30ae00,4, 0xc30ae80,31, 0xc30af00,1, 0xc30af10,3, 0xc30af20,3, 0xc30af30,3, 0xc30af40,1, 0xc30af48,3, 0xc30b000,4, 0xc30b040,13, 0xc30b080,1, 0xc30b200,15, 0xc30b240,4, 0xc30b260,17, 0xc30b2c0,6, 0xc30b2e0,2, 0xc30b2ec,3, 0xc30b300,8, 0xc30b324,8, 0xc30b400,68, 0xc30b600,60, 0xc30b700,4, 0xc30b720,5, 0xc30b740,1, 0xc30b780,2, 0xc30b78c,2, 0xc30b7a0,1, 0xc30b7c0,12, 0xc30b800,7, 0xc30b820,5, 0xc30b900,49, 0xc30ba00,1, 0xc30ba08,23, 0xc30ba84,1, 0xc30ba8c,1, 0xc30ba94,1, 0xc30ba9c,2, 0xc30bac0,1, 0xc30bc00,10, 0xc30bc40,1, 0xc30bc50,3, 0xc30bc80,10, 0xc30bcc0,12, 0xc30bd00,3, 0xc30be00,1, 0xc30c000,20, 0xc30c080,3, 0xc30c090,1, 0xc30c098,4, 0xc310000,49, 0xc310100,12, 0xc310140,4, 0xc310184,1, 0xc310198,2, 0xc3101a4,1, 0xc3101b8,7, 0xc3101e0,4, 0xc310200,20, 0xc310280,3, 0xc310290,9, 0xc3102c0,6, 0xc3102e0,1, 0xc3102e8,7, 0xc310400,49, 0xc310500,12, 0xc310540,4, 0xc310584,1, 0xc310598,2, 0xc3105a4,1, 0xc3105b8,7, 0xc3105e0,4, 0xc310600,20, 0xc310680,3, 0xc310690,9, 0xc3106c0,6, 0xc3106e0,1, 0xc3106e8,7, 0xc310800,49, 0xc310900,12, 0xc310940,4, 0xc310984,1, 0xc310998,2, 0xc3109a4,1, 0xc3109b8,7, 0xc3109e0,4, 0xc310a00,20, 0xc310a80,3, 0xc310a90,9, 0xc310ac0,6, 0xc310ae0,1, 0xc310ae8,7, 0xc310c00,49, 0xc310d00,12, 0xc310d40,4, 0xc310d84,1, 0xc310d98,2, 0xc310da4,1, 0xc310db8,7, 0xc310de0,4, 0xc310e00,20, 0xc310e80,3, 0xc310e90,9, 0xc310ec0,6, 0xc310ee0,1, 0xc310ee8,7, 0xc311000,49, 0xc311100,12, 0xc311140,4, 0xc311184,1, 0xc311198,2, 0xc3111a4,1, 0xc3111b8,7, 0xc3111e0,4, 0xc311200,20, 0xc311280,3, 0xc311290,9, 0xc3112c0,6, 0xc3112e0,1, 0xc3112e8,7, 0xc311400,49, 0xc311500,12, 0xc311540,4, 0xc311584,1, 0xc311598,2, 0xc3115a4,1, 0xc3115b8,7, 0xc3115e0,4, 0xc311600,20, 0xc311680,3, 0xc311690,9, 0xc3116c0,6, 0xc3116e0,1, 0xc3116e8,7, 0xc311800,49, 0xc311900,12, 0xc311940,4, 0xc311984,1, 0xc311998,2, 0xc3119a4,1, 0xc3119b8,7, 0xc3119e0,4, 0xc311a00,20, 0xc311a80,3, 0xc311a90,9, 0xc311ac0,6, 0xc311ae0,1, 0xc311ae8,7, 0xc312000,20, 0xc312080,10, 0xc312100,20, 0xc312180,10, 0xc312200,12, 0xc312400,20, 0xc312480,10, 0xc312500,20, 0xc312580,10, 0xc312600,12, 0xc312800,3, 0xc312840,12, 0xc312880,12, 0xc3128c0,12, 0xc312900,12, 0xc312940,12, 0xc312980,12, 0xc3129c0,12, 0xc312a00,12, 0xc312c00,12, 0xc312c40,7, 0xc312c60,10, 0xc313004,1, 0xc313044,43, 0xc313100,7, 0xc313120,7, 0xc313140,2, 0xc31314c,2, 0xc313160,2, 0xc31316c,2, 0xc313180,18, 0xc313200,2, 0xc313220,10, 0xc313260,20, 0xc3132c0,9, 0xc313300,15, 0xc313340,9, 0xc313380,6, 0xc3133a0,4, 0xc313400,5, 0xc314000,53, 0xc314100,3, 0xc314110,15, 0xc314200,53, 0xc314300,3, 0xc314310,15, 0xc314400,5, 0xc314420,5, 0xc314440,18, 0xc314800,3, 0xc314810,2, 0xc314820,3, 0xc314830,2, 0xc314840,1, 0xc315000,7, 0xc315020,7, 0xc315080,19, 0xc315100,19, 0xc315180,25, 0xc315200,20, 0xc315280,20, 0xc315300,8, 0xc315340,4, 0xc315380,15, 0xc3153c0,15, 0xc315400,9, 0xc315430,5, 0xc316000,6, 0xc316020,1, 0xc316028,2, 0xc316040,11, 0xc316070,2, 0xc318000,82, 0xc318200,2, 0xc318240,9, 0xc318280,7, 0xc318400,82, 0xc318604,6, 0xc318700,15, 0xc318740,9, 0xc318780,6, 0xc3187a0,6, 0xc318800,2, 0xc318810,3, 0xc318880,24, 0xc3188e4,1, 0xc3188f0,12, 0xc320000,22, 0xc320080,22, 0xc320100,5, 0xc320120,5, 0xc320140,3, 0xc320160,16, 0xc3201c0,7, 0xc3201e0,2, 0xc320200,7, 0xc320220,2, 0xc320400,15, 0xc320440,3, 0xc320450,3, 0xc320460,24, 0xc320500,15, 0xc320540,3, 0xc320550,3, 0xc320560,24, 0xc320600,15, 0xc320640,3, 0xc320650,3, 0xc320660,24, 0xc320700,15, 0xc320740,3, 0xc320750,3, 0xc320760,24, 0xc320800,4, 0xc320820,16, 0xc320880,10, 0xc3208c0,10, 0xc320900,6, 0xc320920,6, 0xc320940,4, 0xc320980,13, 0xc3209c0,13, 0xc320a00,9, 0xc321000,86, 0xc321200,2, 0xc321240,9, 0xc321280,7, 0xc321400,86, 0xc321604,6, 0xc321800,86, 0xc321a00,2, 0xc321a40,9, 0xc321a80,7, 0xc321c00,86, 0xc321e04,6, 0xc322000,15, 0xc322040,4, 0xc322060,17, 0xc3220c0,6, 0xc3220e0,4, 0xc3220f4,11, 0xc322128,38, 0xc3221c4,2, 0xc3221d0,4, 0xc322200,1, 0xc324000,22, 0xc324080,22, 0xc324100,5, 0xc324120,5, 0xc324140,3, 0xc324160,16, 0xc3241c0,7, 0xc3241e0,2, 0xc324200,7, 0xc324220,2, 0xc324400,15, 0xc324440,3, 0xc324450,3, 0xc324460,24, 0xc324500,15, 0xc324540,3, 0xc324550,3, 0xc324560,24, 0xc324600,15, 0xc324640,3, 0xc324650,3, 0xc324660,24, 0xc324700,15, 0xc324740,3, 0xc324750,3, 0xc324760,24, 0xc324800,4, 0xc324820,16, 0xc324880,10, 0xc3248c0,10, 0xc324900,6, 0xc324920,6, 0xc324940,4, 0xc324980,13, 0xc3249c0,13, 0xc324a00,9, 0xc325000,86, 0xc325200,2, 0xc325240,9, 0xc325280,7, 0xc325400,86, 0xc325604,6, 0xc325800,86, 0xc325a00,2, 0xc325a40,9, 0xc325a80,7, 0xc325c00,86, 0xc325e04,6, 0xc326000,15, 0xc326040,4, 0xc326060,17, 0xc3260c0,6, 0xc3260e0,4, 0xc3260f4,11, 0xc326128,38, 0xc3261c4,2, 0xc3261d0,4, 0xc326200,1, 0xc328000,9, 0xc328040,9, 0xc328080,5, 0xc328100,21, 0xc328160,5, 0xc328180,45, 0xc328240,13, 0xc328280,9, 0xc328400,9, 0xc328440,9, 0xc328480,5, 0xc328500,21, 0xc328560,5, 0xc328580,45, 0xc328640,13, 0xc328680,9, 0xc328800,12, 0xc328900,15, 0xc328940,4, 0xc328960,17, 0xc3289c0,6, 0xc3289e0,4, 0xc3289f4,29, 0xc32c000,30, 0xc32c080,3, 0xc32c090,19, 0xc32c100,30, 0xc32c180,3, 0xc32c190,19, 0xc32c200,30, 0xc32c280,3, 0xc32c290,19, 0xc32c300,30, 0xc32c380,3, 0xc32c390,19, 0xc32c400,30, 0xc32c480,3, 0xc32c490,19, 0xc32c500,30, 0xc32c580,3, 0xc32c590,19, 0xc32c600,30, 0xc32c680,3, 0xc32c690,19, 0xc32c700,30, 0xc32c780,3, 0xc32c790,19, 0xc32c800,12, 0xc32c844,1, 0xc32c854,8, 0xc32c880,7, 0xc32c8a0,2, 0xc32c8ac,2, 0xc32c8c0,26, 0xc32c980,4, 0xc32c9a0,5, 0xc32c9c0,1, 0xc32d000,3, 0xc32d010,3, 0xc32d020,3, 0xc32d030,3, 0xc32d040,3, 0xc32d050,3, 0xc32d060,3, 0xc32d070,3, 0xc32d080,6, 0xc32d0a0,6, 0xc32d0c0,6, 0xc32d0e0,6, 0xc32d100,6, 0xc32d120,6, 0xc32d140,6, 0xc32d160,6, 0xc32d200,68, 0xc32d400,1, 0xc32d804,1, 0xc32d844,54, 0xc32da00,12, 0xc32da40,12, 0xc32da80,12, 0xc32dac0,12, 0xc32db00,12, 0xc32db40,12, 0xc32db80,12, 0xc32dbc0,12, 0xc32dc00,28, 0xc32dc80,10, 0xc32e000,3, 0xc32e020,6, 0xc32e040,6, 0xc32e060,15, 0xc32e100,26, 0xc32e180,15, 0xc32e200,15, 0xc32e240,4, 0xc32e260,17, 0xc32e2c0,6, 0xc32e2e0,4, 0xc32e2f4,18, 0xc32e340,4, 0xc32e360,17, 0xc32e3c0,6, 0xc32e3e0,4, 0xc32e3f4,15, 0xc330000,1, 0xc331000,1020, 0xc332000,194, 0xc333000,1020, 0xc334000,1020, 0xc335000,1020, 0xc336000,1020, 0xc337000,1020, 0xc338000,1020, 0xc339000,1020, 0xc33a000,1020, 0xc33b000,194, 0xc33c000,3, 0xc33c010,13, 0xc33c080,16, 0xc33c100,20, 0xc33c184,1, 0xc33c18c,4, 0xc33c200,3, 0xc33c210,13, 0xc33c280,16, 0xc33c300,20, 0xc33c384,1, 0xc33c38c,4, 0xc33c400,3, 0xc33c410,13, 0xc33c480,16, 0xc33c500,20, 0xc33c584,1, 0xc33c58c,4, 0xc33c600,3, 0xc33c610,13, 0xc33c680,16, 0xc33c700,20, 0xc33c784,1, 0xc33c78c,4, 0xc33c800,3, 0xc33c810,13, 0xc33c880,16, 0xc33c900,20, 0xc33c984,1, 0xc33c98c,4, 0xc33ca00,3, 0xc33ca10,13, 0xc33ca80,16, 0xc33cb00,20, 0xc33cb84,1, 0xc33cb8c,4, 0xc33cc00,3, 0xc33cc10,13, 0xc33cc80,16, 0xc33cd00,20, 0xc33cd84,1, 0xc33cd8c,4, 0xc33ce00,3, 0xc33ce10,13, 0xc33ce80,16, 0xc33cf00,20, 0xc33cf84,1, 0xc33cf8c,4, 0xc33d000,3, 0xc33d010,13, 0xc33d080,16, 0xc33d100,20, 0xc33d184,1, 0xc33d18c,4, 0xc33d200,18, 0xc33d250,2, 0xc33d260,4, 0xc33e000,1, 0xc33e014,1, 0xc33e01c,19, 0xc33e080,1, 0xc33e094,1, 0xc33e09c,19, 0xc33e100,8, 0xc33e200,13, 0xc33e240,9, 0xc33e280,12, 0xc33e2c0,2, 0xc33e2e0,12, 0xc340000,3, 0xc340080,20, 0xc340100,10, 0xc340140,1, 0xc340154,1, 0xc34015c,2, 0xc340200,15, 0xc340240,4, 0xc340260,17, 0xc3402c0,6, 0xc3402e0,2, 0xc3402ec,3, 0xc340300,8, 0xc340324,1, 0xc340400,4, 0xc340440,20, 0xc3404c0,9, 0xc340500,33, 0xc340600,11, 0xc340640,11, 0xc340680,1, 0xc342000,1, 0xc342200,4, 0xc342300,53, 0xc342400,4, 0xc342500,40, 0xc342600,15, 0xc342640,4, 0xc342660,17, 0xc3426c0,6, 0xc3426e0,2, 0xc3426ec,3, 0xc342700,8, 0xc342724,1, 0xc342800,20, 0xc342c00,53, 0xc342d00,53, 0xc342e00,1, 0xc343000,40, 0xc343100,40, 0xc343200,1, 0xc343400,1, 0xc343804,1, 0xc343844,39, 0xc343900,3, 0xc343a00,3, 0xc343a44,1, 0xc343a50,4, 0xc343a80,1, 0xc344000,2, 0xc344200,27, 0xc344280,4, 0xc3442c0,25, 0xc344340,6, 0xc344360,2, 0xc34436c,3, 0xc344380,8, 0xc3443a4,1, 0xc344400,12, 0xc344440,1, 0xc348000,3, 0xc348080,20, 0xc348100,10, 0xc348140,1, 0xc348154,1, 0xc34815c,2, 0xc348200,15, 0xc348240,4, 0xc348260,17, 0xc3482c0,6, 0xc3482e0,2, 0xc3482ec,3, 0xc348300,8, 0xc348324,1, 0xc348400,4, 0xc348440,20, 0xc3484c0,9, 0xc348500,33, 0xc348600,11, 0xc348640,11, 0xc348680,1, 0xc34a000,1, 0xc34a200,4, 0xc34a300,53, 0xc34a400,4, 0xc34a500,40, 0xc34a600,15, 0xc34a640,4, 0xc34a660,17, 0xc34a6c0,6, 0xc34a6e0,2, 0xc34a6ec,3, 0xc34a700,8, 0xc34a724,1, 0xc34a800,20, 0xc34ac00,53, 0xc34ad00,53, 0xc34ae00,1, 0xc34b000,40, 0xc34b100,40, 0xc34b200,1, 0xc34b400,1, 0xc34b804,1, 0xc34b844,39, 0xc34b900,3, 0xc34ba00,3, 0xc34ba44,1, 0xc34ba50,4, 0xc34ba80,1, 0xc34c000,2, 0xc34c200,27, 0xc34c280,4, 0xc34c2c0,25, 0xc34c340,6, 0xc34c360,2, 0xc34c36c,3, 0xc34c380,8, 0xc34c3a4,1, 0xc34c400,12, 0xc34c440,1, 0xc350000,4, 0xc350020,3, 0xc350030,2, 0xc350200,1, 0xc350224,10, 0xc350250,5, 0xc350280,1, 0xc350288,24, 0xc350300,3, 0xc350404,1, 0xc350414,5, 0xc350500,36, 0xc350600,3, 0xc350800,2, 0xc351000,1, 0xc351008,21, 0xc351080,1, 0xc351088,21, 0xc351100,1, 0xc351108,21, 0xc351180,1, 0xc351188,21, 0xc351200,1, 0xc351208,21, 0xc351280,1, 0xc351288,21, 0xc351300,1, 0xc351308,21, 0xc351380,1, 0xc351388,21, 0xc351400,21, 0xc351800,142, 0xc351c00,1, 0xc352000,4, 0xc352100,39, 0xc352200,3, 0xc352214,3, 0xc354004,1, 0xc354020,16, 0xc354080,2, 0xc354094,1, 0xc35409c,2, 0xc3540c0,6, 0xc354100,8, 0xc358004,17, 0xc358054,1, 0xc35805c,2, 0xc358080,1, 0xc3580a0,2, 0xc3580b4,4, 0xc358100,2, 0xc358200,8, 0xc358400,1, 0xc358600,27, 0xc358680,4, 0xc3586c0,25, 0xc358740,6, 0xc358760,2, 0xc35876c,3, 0xc358780,8, 0xc3587a4,3, 0xc358800,44, 0xc358900,1, 0xc360000,1, 0xc360200,27, 0xc360280,4, 0xc3602c0,25, 0xc360340,6, 0xc360360,2, 0xc36036c,3, 0xc360380,8, 0xc3603a4,1, 0xc360400,20, 0xc360480,3, 0xc360490,9, 0xc380000,198, 0xc380400,2, 0xc380440,9, 0xc380480,7, 0xc380800,198, 0xc380c00,2, 0xc380c40,9, 0xc380c80,7, 0xc381000,198, 0xc381400,198, 0xc381804,6, 0xc381824,6, 0xc381880,2, 0xc381904,1, 0xc381918,28, 0xc3819a0,6, 0xc3819c0,6, 0xc381c00,2, 0xc381d00,2, 0xc381e04,1, 0xc381e74,43, 0xc382000,2, 0xc382100,2, 0xc382204,1, 0xc382274,43, 0xc382400,3, 0xc382600,27, 0xc382680,4, 0xc3826c0,25, 0xc382740,6, 0xc382760,4, 0xc382774,11, 0xc3827a4,4, 0xc382800,4, 0xc382900,34, 0xc382a00,4, 0xc382b00,34, 0xc382c00,3, 0xc382c10,12, 0xc382e00,56, 0xc382ee4,4, 0xc382f00,4, 0xc383000,1, 0xc388000,4, 0xc388100,42, 0xc388200,1, 0xc388210,3, 0xc388220,3, 0xc388230,3, 0xc388240,1, 0xc388248,3, 0xc388400,4, 0xc388500,58, 0xc388600,1, 0xc388610,3, 0xc388620,3, 0xc388630,3, 0xc388640,1, 0xc388648,3, 0xc388800,4, 0xc388900,36, 0xc388a00,1, 0xc388c00,4, 0xc388c80,27, 0xc388d00,1, 0xc388d10,3, 0xc388d20,3, 0xc388d30,3, 0xc388d40,1, 0xc388d48,3, 0xc388e00,4, 0xc388e80,31, 0xc388f00,1, 0xc388f10,3, 0xc388f20,3, 0xc388f30,3, 0xc388f40,1, 0xc388f48,3, 0xc389000,4, 0xc389040,13, 0xc389080,1, 0xc389200,15, 0xc389240,4, 0xc389260,17, 0xc3892c0,6, 0xc3892e0,2, 0xc3892ec,3, 0xc389300,8, 0xc389324,8, 0xc389400,68, 0xc389600,60, 0xc389700,4, 0xc389720,5, 0xc389740,1, 0xc389780,2, 0xc38978c,2, 0xc3897a0,1, 0xc3897c0,12, 0xc389800,7, 0xc389820,5, 0xc389900,49, 0xc389a00,1, 0xc389a08,23, 0xc389a84,1, 0xc389a8c,1, 0xc389a94,1, 0xc389a9c,2, 0xc389ac0,1, 0xc389c00,10, 0xc389c40,1, 0xc389c50,3, 0xc389c80,10, 0xc389cc0,12, 0xc389d00,3, 0xc389e00,1, 0xc38a000,4, 0xc38a100,42, 0xc38a200,1, 0xc38a210,3, 0xc38a220,3, 0xc38a230,3, 0xc38a240,1, 0xc38a248,3, 0xc38a400,4, 0xc38a500,58, 0xc38a600,1, 0xc38a610,3, 0xc38a620,3, 0xc38a630,3, 0xc38a640,1, 0xc38a648,3, 0xc38a800,4, 0xc38a900,36, 0xc38aa00,1, 0xc38ac00,4, 0xc38ac80,27, 0xc38ad00,1, 0xc38ad10,3, 0xc38ad20,3, 0xc38ad30,3, 0xc38ad40,1, 0xc38ad48,3, 0xc38ae00,4, 0xc38ae80,31, 0xc38af00,1, 0xc38af10,3, 0xc38af20,3, 0xc38af30,3, 0xc38af40,1, 0xc38af48,3, 0xc38b000,4, 0xc38b040,13, 0xc38b080,1, 0xc38b200,15, 0xc38b240,4, 0xc38b260,17, 0xc38b2c0,6, 0xc38b2e0,2, 0xc38b2ec,3, 0xc38b300,8, 0xc38b324,8, 0xc38b400,68, 0xc38b600,60, 0xc38b700,4, 0xc38b720,5, 0xc38b740,1, 0xc38b780,2, 0xc38b78c,2, 0xc38b7a0,1, 0xc38b7c0,12, 0xc38b800,7, 0xc38b820,5, 0xc38b900,49, 0xc38ba00,1, 0xc38ba08,23, 0xc38ba84,1, 0xc38ba8c,1, 0xc38ba94,1, 0xc38ba9c,2, 0xc38bac0,1, 0xc38bc00,10, 0xc38bc40,1, 0xc38bc50,3, 0xc38bc80,10, 0xc38bcc0,12, 0xc38bd00,3, 0xc38be00,1, 0xc38c000,20, 0xc38c080,3, 0xc38c090,1, 0xc38c098,4, 0xc390000,49, 0xc390100,12, 0xc390140,4, 0xc390184,1, 0xc390198,2, 0xc3901a4,1, 0xc3901b8,7, 0xc3901e0,4, 0xc390200,20, 0xc390280,3, 0xc390290,9, 0xc3902c0,6, 0xc3902e0,1, 0xc3902e8,7, 0xc390400,49, 0xc390500,12, 0xc390540,4, 0xc390584,1, 0xc390598,2, 0xc3905a4,1, 0xc3905b8,7, 0xc3905e0,4, 0xc390600,20, 0xc390680,3, 0xc390690,9, 0xc3906c0,6, 0xc3906e0,1, 0xc3906e8,7, 0xc390800,49, 0xc390900,12, 0xc390940,4, 0xc390984,1, 0xc390998,2, 0xc3909a4,1, 0xc3909b8,7, 0xc3909e0,4, 0xc390a00,20, 0xc390a80,3, 0xc390a90,9, 0xc390ac0,6, 0xc390ae0,1, 0xc390ae8,7, 0xc390c00,49, 0xc390d00,12, 0xc390d40,4, 0xc390d84,1, 0xc390d98,2, 0xc390da4,1, 0xc390db8,7, 0xc390de0,4, 0xc390e00,20, 0xc390e80,3, 0xc390e90,9, 0xc390ec0,6, 0xc390ee0,1, 0xc390ee8,7, 0xc391000,49, 0xc391100,12, 0xc391140,4, 0xc391184,1, 0xc391198,2, 0xc3911a4,1, 0xc3911b8,7, 0xc3911e0,4, 0xc391200,20, 0xc391280,3, 0xc391290,9, 0xc3912c0,6, 0xc3912e0,1, 0xc3912e8,7, 0xc391400,49, 0xc391500,12, 0xc391540,4, 0xc391584,1, 0xc391598,2, 0xc3915a4,1, 0xc3915b8,7, 0xc3915e0,4, 0xc391600,20, 0xc391680,3, 0xc391690,9, 0xc3916c0,6, 0xc3916e0,1, 0xc3916e8,7, 0xc391800,49, 0xc391900,12, 0xc391940,4, 0xc391984,1, 0xc391998,2, 0xc3919a4,1, 0xc3919b8,7, 0xc3919e0,4, 0xc391a00,20, 0xc391a80,3, 0xc391a90,9, 0xc391ac0,6, 0xc391ae0,1, 0xc391ae8,7, 0xc392000,20, 0xc392080,10, 0xc392100,20, 0xc392180,10, 0xc392200,12, 0xc392400,20, 0xc392480,10, 0xc392500,20, 0xc392580,10, 0xc392600,12, 0xc392800,3, 0xc392840,12, 0xc392880,12, 0xc3928c0,12, 0xc392900,12, 0xc392940,12, 0xc392980,12, 0xc3929c0,12, 0xc392a00,12, 0xc392c00,12, 0xc392c40,7, 0xc392c60,10, 0xc393004,1, 0xc393044,43, 0xc393100,7, 0xc393120,7, 0xc393140,2, 0xc39314c,2, 0xc393160,2, 0xc39316c,2, 0xc393180,18, 0xc393200,2, 0xc393220,10, 0xc393260,20, 0xc3932c0,9, 0xc393300,15, 0xc393340,9, 0xc393380,6, 0xc3933a0,4, 0xc393400,5, 0xc394000,53, 0xc394100,3, 0xc394110,15, 0xc394200,53, 0xc394300,3, 0xc394310,15, 0xc394400,5, 0xc394420,5, 0xc394440,18, 0xc394800,3, 0xc394810,2, 0xc394820,3, 0xc394830,2, 0xc394840,1, 0xc395000,7, 0xc395020,7, 0xc395080,19, 0xc395100,19, 0xc395180,25, 0xc395200,20, 0xc395280,20, 0xc395300,8, 0xc395340,4, 0xc395380,15, 0xc3953c0,15, 0xc395400,9, 0xc395430,5, 0xc396000,6, 0xc396020,1, 0xc396028,2, 0xc396040,11, 0xc396070,2, 0xc398000,82, 0xc398200,2, 0xc398240,9, 0xc398280,7, 0xc398400,82, 0xc398604,6, 0xc398700,15, 0xc398740,9, 0xc398780,6, 0xc3987a0,6, 0xc398800,2, 0xc398810,3, 0xc398880,24, 0xc3988e4,1, 0xc3988f0,12, 0xc3a0000,22, 0xc3a0080,22, 0xc3a0100,5, 0xc3a0120,5, 0xc3a0140,3, 0xc3a0160,16, 0xc3a01c0,7, 0xc3a01e0,2, 0xc3a0200,7, 0xc3a0220,2, 0xc3a0400,15, 0xc3a0440,3, 0xc3a0450,3, 0xc3a0460,24, 0xc3a0500,15, 0xc3a0540,3, 0xc3a0550,3, 0xc3a0560,24, 0xc3a0600,15, 0xc3a0640,3, 0xc3a0650,3, 0xc3a0660,24, 0xc3a0700,15, 0xc3a0740,3, 0xc3a0750,3, 0xc3a0760,24, 0xc3a0800,4, 0xc3a0820,16, 0xc3a0880,10, 0xc3a08c0,10, 0xc3a0900,6, 0xc3a0920,6, 0xc3a0940,4, 0xc3a0980,13, 0xc3a09c0,13, 0xc3a0a00,9, 0xc3a1000,86, 0xc3a1200,2, 0xc3a1240,9, 0xc3a1280,7, 0xc3a1400,86, 0xc3a1604,6, 0xc3a1800,86, 0xc3a1a00,2, 0xc3a1a40,9, 0xc3a1a80,7, 0xc3a1c00,86, 0xc3a1e04,6, 0xc3a2000,15, 0xc3a2040,4, 0xc3a2060,17, 0xc3a20c0,6, 0xc3a20e0,4, 0xc3a20f4,11, 0xc3a2128,38, 0xc3a21c4,2, 0xc3a21d0,4, 0xc3a2200,1, 0xc3a4000,22, 0xc3a4080,22, 0xc3a4100,5, 0xc3a4120,5, 0xc3a4140,3, 0xc3a4160,16, 0xc3a41c0,7, 0xc3a41e0,2, 0xc3a4200,7, 0xc3a4220,2, 0xc3a4400,15, 0xc3a4440,3, 0xc3a4450,3, 0xc3a4460,24, 0xc3a4500,15, 0xc3a4540,3, 0xc3a4550,3, 0xc3a4560,24, 0xc3a4600,15, 0xc3a4640,3, 0xc3a4650,3, 0xc3a4660,24, 0xc3a4700,15, 0xc3a4740,3, 0xc3a4750,3, 0xc3a4760,24, 0xc3a4800,4, 0xc3a4820,16, 0xc3a4880,10, 0xc3a48c0,10, 0xc3a4900,6, 0xc3a4920,6, 0xc3a4940,4, 0xc3a4980,13, 0xc3a49c0,13, 0xc3a4a00,9, 0xc3a5000,86, 0xc3a5200,2, 0xc3a5240,9, 0xc3a5280,7, 0xc3a5400,86, 0xc3a5604,6, 0xc3a5800,86, 0xc3a5a00,2, 0xc3a5a40,9, 0xc3a5a80,7, 0xc3a5c00,86, 0xc3a5e04,6, 0xc3a6000,15, 0xc3a6040,4, 0xc3a6060,17, 0xc3a60c0,6, 0xc3a60e0,4, 0xc3a60f4,11, 0xc3a6128,38, 0xc3a61c4,2, 0xc3a61d0,4, 0xc3a6200,1, 0xc3a8000,9, 0xc3a8040,9, 0xc3a8080,5, 0xc3a8100,21, 0xc3a8160,5, 0xc3a8180,45, 0xc3a8240,13, 0xc3a8280,9, 0xc3a8400,9, 0xc3a8440,9, 0xc3a8480,5, 0xc3a8500,21, 0xc3a8560,5, 0xc3a8580,45, 0xc3a8640,13, 0xc3a8680,9, 0xc3a8800,12, 0xc3a8900,15, 0xc3a8940,4, 0xc3a8960,17, 0xc3a89c0,6, 0xc3a89e0,4, 0xc3a89f4,29, 0xc3ac000,30, 0xc3ac080,3, 0xc3ac090,19, 0xc3ac100,30, 0xc3ac180,3, 0xc3ac190,19, 0xc3ac200,30, 0xc3ac280,3, 0xc3ac290,19, 0xc3ac300,30, 0xc3ac380,3, 0xc3ac390,19, 0xc3ac400,30, 0xc3ac480,3, 0xc3ac490,19, 0xc3ac500,30, 0xc3ac580,3, 0xc3ac590,19, 0xc3ac600,30, 0xc3ac680,3, 0xc3ac690,19, 0xc3ac700,30, 0xc3ac780,3, 0xc3ac790,19, 0xc3ac800,12, 0xc3ac844,1, 0xc3ac854,8, 0xc3ac880,7, 0xc3ac8a0,2, 0xc3ac8ac,2, 0xc3ac8c0,26, 0xc3ac980,4, 0xc3ac9a0,5, 0xc3ac9c0,1, 0xc3ad000,3, 0xc3ad010,3, 0xc3ad020,3, 0xc3ad030,3, 0xc3ad040,3, 0xc3ad050,3, 0xc3ad060,3, 0xc3ad070,3, 0xc3ad080,6, 0xc3ad0a0,6, 0xc3ad0c0,6, 0xc3ad0e0,6, 0xc3ad100,6, 0xc3ad120,6, 0xc3ad140,6, 0xc3ad160,6, 0xc3ad200,68, 0xc3ad400,1, 0xc3ad804,1, 0xc3ad844,54, 0xc3ada00,12, 0xc3ada40,12, 0xc3ada80,12, 0xc3adac0,12, 0xc3adb00,12, 0xc3adb40,12, 0xc3adb80,12, 0xc3adbc0,12, 0xc3adc00,28, 0xc3adc80,10, 0xc3ae000,3, 0xc3ae020,6, 0xc3ae040,6, 0xc3ae060,15, 0xc3ae100,26, 0xc3ae180,15, 0xc3ae200,15, 0xc3ae240,4, 0xc3ae260,17, 0xc3ae2c0,6, 0xc3ae2e0,4, 0xc3ae2f4,18, 0xc3ae340,4, 0xc3ae360,17, 0xc3ae3c0,6, 0xc3ae3e0,4, 0xc3ae3f4,15, 0xc3b0000,1, 0xc3b1000,1020, 0xc3b2000,194, 0xc3b3000,1020, 0xc3b4000,1020, 0xc3b5000,1020, 0xc3b6000,1020, 0xc3b7000,1020, 0xc3b8000,1020, 0xc3b9000,1020, 0xc3ba000,1020, 0xc3bb000,194, 0xc3bc000,3, 0xc3bc010,13, 0xc3bc080,16, 0xc3bc100,20, 0xc3bc184,1, 0xc3bc18c,4, 0xc3bc200,3, 0xc3bc210,13, 0xc3bc280,16, 0xc3bc300,20, 0xc3bc384,1, 0xc3bc38c,4, 0xc3bc400,3, 0xc3bc410,13, 0xc3bc480,16, 0xc3bc500,20, 0xc3bc584,1, 0xc3bc58c,4, 0xc3bc600,3, 0xc3bc610,13, 0xc3bc680,16, 0xc3bc700,20, 0xc3bc784,1, 0xc3bc78c,4, 0xc3bc800,3, 0xc3bc810,13, 0xc3bc880,16, 0xc3bc900,20, 0xc3bc984,1, 0xc3bc98c,4, 0xc3bca00,3, 0xc3bca10,13, 0xc3bca80,16, 0xc3bcb00,20, 0xc3bcb84,1, 0xc3bcb8c,4, 0xc3bcc00,3, 0xc3bcc10,13, 0xc3bcc80,16, 0xc3bcd00,20, 0xc3bcd84,1, 0xc3bcd8c,4, 0xc3bce00,3, 0xc3bce10,13, 0xc3bce80,16, 0xc3bcf00,20, 0xc3bcf84,1, 0xc3bcf8c,4, 0xc3bd000,3, 0xc3bd010,13, 0xc3bd080,16, 0xc3bd100,20, 0xc3bd184,1, 0xc3bd18c,4, 0xc3bd200,18, 0xc3bd250,2, 0xc3bd260,4, 0xc3be000,1, 0xc3be014,1, 0xc3be01c,19, 0xc3be080,1, 0xc3be094,1, 0xc3be09c,19, 0xc3be100,8, 0xc3be200,13, 0xc3be240,9, 0xc3be280,12, 0xc3be2c0,2, 0xc3be2e0,12, 0xc3c0000,3, 0xc3c0080,20, 0xc3c0100,10, 0xc3c0140,1, 0xc3c0154,1, 0xc3c015c,2, 0xc3c0200,15, 0xc3c0240,4, 0xc3c0260,17, 0xc3c02c0,6, 0xc3c02e0,2, 0xc3c02ec,3, 0xc3c0300,8, 0xc3c0324,1, 0xc3c0400,4, 0xc3c0440,20, 0xc3c04c0,9, 0xc3c0500,33, 0xc3c0600,11, 0xc3c0640,11, 0xc3c0680,1, 0xc3c2000,1, 0xc3c2200,4, 0xc3c2300,53, 0xc3c2400,4, 0xc3c2500,40, 0xc3c2600,15, 0xc3c2640,4, 0xc3c2660,17, 0xc3c26c0,6, 0xc3c26e0,2, 0xc3c26ec,3, 0xc3c2700,8, 0xc3c2724,1, 0xc3c2800,20, 0xc3c2c00,53, 0xc3c2d00,53, 0xc3c2e00,1, 0xc3c3000,40, 0xc3c3100,40, 0xc3c3200,1, 0xc3c3400,1, 0xc3c3804,1, 0xc3c3844,39, 0xc3c3900,3, 0xc3c3a00,3, 0xc3c3a44,1, 0xc3c3a50,4, 0xc3c3a80,1, 0xc3c4000,2, 0xc3c4200,27, 0xc3c4280,4, 0xc3c42c0,25, 0xc3c4340,6, 0xc3c4360,2, 0xc3c436c,3, 0xc3c4380,8, 0xc3c43a4,1, 0xc3c4400,12, 0xc3c4440,1, 0xc3c8000,3, 0xc3c8080,20, 0xc3c8100,10, 0xc3c8140,1, 0xc3c8154,1, 0xc3c815c,2, 0xc3c8200,15, 0xc3c8240,4, 0xc3c8260,17, 0xc3c82c0,6, 0xc3c82e0,2, 0xc3c82ec,3, 0xc3c8300,8, 0xc3c8324,1, 0xc3c8400,4, 0xc3c8440,20, 0xc3c84c0,9, 0xc3c8500,33, 0xc3c8600,11, 0xc3c8640,11, 0xc3c8680,1, 0xc3ca000,1, 0xc3ca200,4, 0xc3ca300,53, 0xc3ca400,4, 0xc3ca500,40, 0xc3ca600,15, 0xc3ca640,4, 0xc3ca660,17, 0xc3ca6c0,6, 0xc3ca6e0,2, 0xc3ca6ec,3, 0xc3ca700,8, 0xc3ca724,1, 0xc3ca800,20, 0xc3cac00,53, 0xc3cad00,53, 0xc3cae00,1, 0xc3cb000,40, 0xc3cb100,40, 0xc3cb200,1, 0xc3cb400,1, 0xc3cb804,1, 0xc3cb844,39, 0xc3cb900,3, 0xc3cba00,3, 0xc3cba44,1, 0xc3cba50,4, 0xc3cba80,1, 0xc3cc000,2, 0xc3cc200,27, 0xc3cc280,4, 0xc3cc2c0,25, 0xc3cc340,6, 0xc3cc360,2, 0xc3cc36c,3, 0xc3cc380,8, 0xc3cc3a4,1, 0xc3cc400,12, 0xc3cc440,1, 0xc3d0000,4, 0xc3d0020,3, 0xc3d0030,2, 0xc3d0200,1, 0xc3d0224,10, 0xc3d0250,5, 0xc3d0280,1, 0xc3d0288,24, 0xc3d0300,3, 0xc3d0404,1, 0xc3d0414,5, 0xc3d0500,36, 0xc3d0600,3, 0xc3d0800,2, 0xc3d1000,1, 0xc3d1008,21, 0xc3d1080,1, 0xc3d1088,21, 0xc3d1100,1, 0xc3d1108,21, 0xc3d1180,1, 0xc3d1188,21, 0xc3d1200,1, 0xc3d1208,21, 0xc3d1280,1, 0xc3d1288,21, 0xc3d1300,1, 0xc3d1308,21, 0xc3d1380,1, 0xc3d1388,21, 0xc3d1400,21, 0xc3d1800,142, 0xc3d1c00,1, 0xc3d2000,4, 0xc3d2100,39, 0xc3d2200,3, 0xc3d2214,3, 0xc3d4004,1, 0xc3d4020,16, 0xc3d4080,2, 0xc3d4094,1, 0xc3d409c,2, 0xc3d40c0,6, 0xc3d4100,8, 0xc3d8004,17, 0xc3d8054,1, 0xc3d805c,2, 0xc3d8080,1, 0xc3d80a0,2, 0xc3d80b4,4, 0xc3d8100,2, 0xc3d8200,8, 0xc3d8400,1, 0xc3d8600,27, 0xc3d8680,4, 0xc3d86c0,25, 0xc3d8740,6, 0xc3d8760,2, 0xc3d876c,3, 0xc3d8780,8, 0xc3d87a4,3, 0xc3d8800,44, 0xc3d8900,1, 0xc3e0000,1, 0xc3e0200,27, 0xc3e0280,4, 0xc3e02c0,25, 0xc3e0340,6, 0xc3e0360,2, 0xc3e036c,3, 0xc3e0380,8, 0xc3e03a4,1, 0xc3e0400,20, 0xc3e0480,3, 0xc3e0490,9, 0xc400000,198, 0xc400400,2, 0xc400440,9, 0xc400480,7, 0xc400800,198, 0xc400c00,2, 0xc400c40,9, 0xc400c80,7, 0xc401000,198, 0xc401400,198, 0xc401804,6, 0xc401824,6, 0xc401880,2, 0xc401904,1, 0xc401918,28, 0xc4019a0,6, 0xc4019c0,6, 0xc401c00,2, 0xc401d00,2, 0xc401e04,1, 0xc401e74,43, 0xc402000,2, 0xc402100,2, 0xc402204,1, 0xc402274,43, 0xc402400,3, 0xc402600,27, 0xc402680,4, 0xc4026c0,25, 0xc402740,6, 0xc402760,4, 0xc402774,11, 0xc4027a4,4, 0xc402800,4, 0xc402900,34, 0xc402a00,4, 0xc402b00,34, 0xc402c00,3, 0xc402c10,12, 0xc402e00,56, 0xc402ee4,4, 0xc402f00,4, 0xc403000,1, 0xc408000,4, 0xc408100,42, 0xc408200,1, 0xc408210,3, 0xc408220,3, 0xc408230,3, 0xc408240,1, 0xc408248,3, 0xc408400,4, 0xc408500,58, 0xc408600,1, 0xc408610,3, 0xc408620,3, 0xc408630,3, 0xc408640,1, 0xc408648,3, 0xc408800,4, 0xc408900,36, 0xc408a00,1, 0xc408c00,4, 0xc408c80,27, 0xc408d00,1, 0xc408d10,3, 0xc408d20,3, 0xc408d30,3, 0xc408d40,1, 0xc408d48,3, 0xc408e00,4, 0xc408e80,31, 0xc408f00,1, 0xc408f10,3, 0xc408f20,3, 0xc408f30,3, 0xc408f40,1, 0xc408f48,3, 0xc409000,4, 0xc409040,13, 0xc409080,1, 0xc409200,15, 0xc409240,4, 0xc409260,17, 0xc4092c0,6, 0xc4092e0,2, 0xc4092ec,3, 0xc409300,8, 0xc409324,8, 0xc409400,68, 0xc409600,60, 0xc409700,4, 0xc409720,5, 0xc409740,1, 0xc409780,2, 0xc40978c,2, 0xc4097a0,1, 0xc4097c0,12, 0xc409800,7, 0xc409820,5, 0xc409900,49, 0xc409a00,1, 0xc409a08,23, 0xc409a84,1, 0xc409a8c,1, 0xc409a94,1, 0xc409a9c,2, 0xc409ac0,1, 0xc409c00,10, 0xc409c40,1, 0xc409c50,3, 0xc409c80,10, 0xc409cc0,12, 0xc409d00,3, 0xc409e00,1, 0xc40a000,4, 0xc40a100,42, 0xc40a200,1, 0xc40a210,3, 0xc40a220,3, 0xc40a230,3, 0xc40a240,1, 0xc40a248,3, 0xc40a400,4, 0xc40a500,58, 0xc40a600,1, 0xc40a610,3, 0xc40a620,3, 0xc40a630,3, 0xc40a640,1, 0xc40a648,3, 0xc40a800,4, 0xc40a900,36, 0xc40aa00,1, 0xc40ac00,4, 0xc40ac80,27, 0xc40ad00,1, 0xc40ad10,3, 0xc40ad20,3, 0xc40ad30,3, 0xc40ad40,1, 0xc40ad48,3, 0xc40ae00,4, 0xc40ae80,31, 0xc40af00,1, 0xc40af10,3, 0xc40af20,3, 0xc40af30,3, 0xc40af40,1, 0xc40af48,3, 0xc40b000,4, 0xc40b040,13, 0xc40b080,1, 0xc40b200,15, 0xc40b240,4, 0xc40b260,17, 0xc40b2c0,6, 0xc40b2e0,2, 0xc40b2ec,3, 0xc40b300,8, 0xc40b324,8, 0xc40b400,68, 0xc40b600,60, 0xc40b700,4, 0xc40b720,5, 0xc40b740,1, 0xc40b780,2, 0xc40b78c,2, 0xc40b7a0,1, 0xc40b7c0,12, 0xc40b800,7, 0xc40b820,5, 0xc40b900,49, 0xc40ba00,1, 0xc40ba08,23, 0xc40ba84,1, 0xc40ba8c,1, 0xc40ba94,1, 0xc40ba9c,2, 0xc40bac0,1, 0xc40bc00,10, 0xc40bc40,1, 0xc40bc50,3, 0xc40bc80,10, 0xc40bcc0,12, 0xc40bd00,3, 0xc40be00,1, 0xc40c000,20, 0xc40c080,3, 0xc40c090,1, 0xc40c098,4, 0xc410000,49, 0xc410100,12, 0xc410140,4, 0xc410184,1, 0xc410198,2, 0xc4101a4,1, 0xc4101b8,7, 0xc4101e0,4, 0xc410200,20, 0xc410280,3, 0xc410290,9, 0xc4102c0,6, 0xc4102e0,1, 0xc4102e8,7, 0xc410400,49, 0xc410500,12, 0xc410540,4, 0xc410584,1, 0xc410598,2, 0xc4105a4,1, 0xc4105b8,7, 0xc4105e0,4, 0xc410600,20, 0xc410680,3, 0xc410690,9, 0xc4106c0,6, 0xc4106e0,1, 0xc4106e8,7, 0xc410800,49, 0xc410900,12, 0xc410940,4, 0xc410984,1, 0xc410998,2, 0xc4109a4,1, 0xc4109b8,7, 0xc4109e0,4, 0xc410a00,20, 0xc410a80,3, 0xc410a90,9, 0xc410ac0,6, 0xc410ae0,1, 0xc410ae8,7, 0xc410c00,49, 0xc410d00,12, 0xc410d40,4, 0xc410d84,1, 0xc410d98,2, 0xc410da4,1, 0xc410db8,7, 0xc410de0,4, 0xc410e00,20, 0xc410e80,3, 0xc410e90,9, 0xc410ec0,6, 0xc410ee0,1, 0xc410ee8,7, 0xc411000,49, 0xc411100,12, 0xc411140,4, 0xc411184,1, 0xc411198,2, 0xc4111a4,1, 0xc4111b8,7, 0xc4111e0,4, 0xc411200,20, 0xc411280,3, 0xc411290,9, 0xc4112c0,6, 0xc4112e0,1, 0xc4112e8,7, 0xc411400,49, 0xc411500,12, 0xc411540,4, 0xc411584,1, 0xc411598,2, 0xc4115a4,1, 0xc4115b8,7, 0xc4115e0,4, 0xc411600,20, 0xc411680,3, 0xc411690,9, 0xc4116c0,6, 0xc4116e0,1, 0xc4116e8,7, 0xc411800,49, 0xc411900,12, 0xc411940,4, 0xc411984,1, 0xc411998,2, 0xc4119a4,1, 0xc4119b8,7, 0xc4119e0,4, 0xc411a00,20, 0xc411a80,3, 0xc411a90,9, 0xc411ac0,6, 0xc411ae0,1, 0xc411ae8,7, 0xc412000,20, 0xc412080,10, 0xc412100,20, 0xc412180,10, 0xc412200,12, 0xc412400,20, 0xc412480,10, 0xc412500,20, 0xc412580,10, 0xc412600,12, 0xc412800,3, 0xc412840,12, 0xc412880,12, 0xc4128c0,12, 0xc412900,12, 0xc412940,12, 0xc412980,12, 0xc4129c0,12, 0xc412a00,12, 0xc412c00,12, 0xc412c40,7, 0xc412c60,10, 0xc413004,1, 0xc413044,43, 0xc413100,7, 0xc413120,7, 0xc413140,2, 0xc41314c,2, 0xc413160,2, 0xc41316c,2, 0xc413180,18, 0xc413200,2, 0xc413220,10, 0xc413260,20, 0xc4132c0,9, 0xc413300,15, 0xc413340,9, 0xc413380,6, 0xc4133a0,4, 0xc413400,5, 0xc414000,53, 0xc414100,3, 0xc414110,15, 0xc414200,53, 0xc414300,3, 0xc414310,15, 0xc414400,5, 0xc414420,5, 0xc414440,18, 0xc414800,3, 0xc414810,2, 0xc414820,3, 0xc414830,2, 0xc414840,1, 0xc415000,7, 0xc415020,7, 0xc415080,19, 0xc415100,19, 0xc415180,25, 0xc415200,20, 0xc415280,20, 0xc415300,8, 0xc415340,4, 0xc415380,15, 0xc4153c0,15, 0xc415400,9, 0xc415430,5, 0xc416000,6, 0xc416020,1, 0xc416028,2, 0xc416040,11, 0xc416070,2, 0xc418000,82, 0xc418200,2, 0xc418240,9, 0xc418280,7, 0xc418400,82, 0xc418604,6, 0xc418700,15, 0xc418740,9, 0xc418780,6, 0xc4187a0,6, 0xc418800,2, 0xc418810,3, 0xc418880,24, 0xc4188e4,1, 0xc4188f0,12, 0xc420000,22, 0xc420080,22, 0xc420100,5, 0xc420120,5, 0xc420140,3, 0xc420160,16, 0xc4201c0,7, 0xc4201e0,2, 0xc420200,7, 0xc420220,2, 0xc420400,15, 0xc420440,3, 0xc420450,3, 0xc420460,24, 0xc420500,15, 0xc420540,3, 0xc420550,3, 0xc420560,24, 0xc420600,15, 0xc420640,3, 0xc420650,3, 0xc420660,24, 0xc420700,15, 0xc420740,3, 0xc420750,3, 0xc420760,24, 0xc420800,4, 0xc420820,16, 0xc420880,10, 0xc4208c0,10, 0xc420900,6, 0xc420920,6, 0xc420940,4, 0xc420980,13, 0xc4209c0,13, 0xc420a00,9, 0xc421000,86, 0xc421200,2, 0xc421240,9, 0xc421280,7, 0xc421400,86, 0xc421604,6, 0xc421800,86, 0xc421a00,2, 0xc421a40,9, 0xc421a80,7, 0xc421c00,86, 0xc421e04,6, 0xc422000,15, 0xc422040,4, 0xc422060,17, 0xc4220c0,6, 0xc4220e0,4, 0xc4220f4,11, 0xc422128,38, 0xc4221c4,2, 0xc4221d0,4, 0xc422200,1, 0xc424000,22, 0xc424080,22, 0xc424100,5, 0xc424120,5, 0xc424140,3, 0xc424160,16, 0xc4241c0,7, 0xc4241e0,2, 0xc424200,7, 0xc424220,2, 0xc424400,15, 0xc424440,3, 0xc424450,3, 0xc424460,24, 0xc424500,15, 0xc424540,3, 0xc424550,3, 0xc424560,24, 0xc424600,15, 0xc424640,3, 0xc424650,3, 0xc424660,24, 0xc424700,15, 0xc424740,3, 0xc424750,3, 0xc424760,24, 0xc424800,4, 0xc424820,16, 0xc424880,10, 0xc4248c0,10, 0xc424900,6, 0xc424920,6, 0xc424940,4, 0xc424980,13, 0xc4249c0,13, 0xc424a00,9, 0xc425000,86, 0xc425200,2, 0xc425240,9, 0xc425280,7, 0xc425400,86, 0xc425604,6, 0xc425800,86, 0xc425a00,2, 0xc425a40,9, 0xc425a80,7, 0xc425c00,86, 0xc425e04,6, 0xc426000,15, 0xc426040,4, 0xc426060,17, 0xc4260c0,6, 0xc4260e0,4, 0xc4260f4,11, 0xc426128,38, 0xc4261c4,2, 0xc4261d0,4, 0xc426200,1, 0xc428000,9, 0xc428040,9, 0xc428080,5, 0xc428100,21, 0xc428160,5, 0xc428180,45, 0xc428240,13, 0xc428280,9, 0xc428400,9, 0xc428440,9, 0xc428480,5, 0xc428500,21, 0xc428560,5, 0xc428580,45, 0xc428640,13, 0xc428680,9, 0xc428800,12, 0xc428900,15, 0xc428940,4, 0xc428960,17, 0xc4289c0,6, 0xc4289e0,4, 0xc4289f4,29, 0xc42c000,30, 0xc42c080,3, 0xc42c090,19, 0xc42c100,30, 0xc42c180,3, 0xc42c190,19, 0xc42c200,30, 0xc42c280,3, 0xc42c290,19, 0xc42c300,30, 0xc42c380,3, 0xc42c390,19, 0xc42c400,30, 0xc42c480,3, 0xc42c490,19, 0xc42c500,30, 0xc42c580,3, 0xc42c590,19, 0xc42c600,30, 0xc42c680,3, 0xc42c690,19, 0xc42c700,30, 0xc42c780,3, 0xc42c790,19, 0xc42c800,12, 0xc42c844,1, 0xc42c854,8, 0xc42c880,7, 0xc42c8a0,2, 0xc42c8ac,2, 0xc42c8c0,26, 0xc42c980,4, 0xc42c9a0,5, 0xc42c9c0,1, 0xc42d000,3, 0xc42d010,3, 0xc42d020,3, 0xc42d030,3, 0xc42d040,3, 0xc42d050,3, 0xc42d060,3, 0xc42d070,3, 0xc42d080,6, 0xc42d0a0,6, 0xc42d0c0,6, 0xc42d0e0,6, 0xc42d100,6, 0xc42d120,6, 0xc42d140,6, 0xc42d160,6, 0xc42d200,68, 0xc42d400,1, 0xc42d804,1, 0xc42d844,54, 0xc42da00,12, 0xc42da40,12, 0xc42da80,12, 0xc42dac0,12, 0xc42db00,12, 0xc42db40,12, 0xc42db80,12, 0xc42dbc0,12, 0xc42dc00,28, 0xc42dc80,10, 0xc42e000,3, 0xc42e020,6, 0xc42e040,6, 0xc42e060,15, 0xc42e100,26, 0xc42e180,15, 0xc42e200,15, 0xc42e240,4, 0xc42e260,17, 0xc42e2c0,6, 0xc42e2e0,4, 0xc42e2f4,18, 0xc42e340,4, 0xc42e360,17, 0xc42e3c0,6, 0xc42e3e0,4, 0xc42e3f4,15, 0xc430000,1, 0xc431000,1020, 0xc432000,194, 0xc433000,1020, 0xc434000,1020, 0xc435000,1020, 0xc436000,1020, 0xc437000,1020, 0xc438000,1020, 0xc439000,1020, 0xc43a000,1020, 0xc43b000,194, 0xc43c000,3, 0xc43c010,13, 0xc43c080,16, 0xc43c100,20, 0xc43c184,1, 0xc43c18c,4, 0xc43c200,3, 0xc43c210,13, 0xc43c280,16, 0xc43c300,20, 0xc43c384,1, 0xc43c38c,4, 0xc43c400,3, 0xc43c410,13, 0xc43c480,16, 0xc43c500,20, 0xc43c584,1, 0xc43c58c,4, 0xc43c600,3, 0xc43c610,13, 0xc43c680,16, 0xc43c700,20, 0xc43c784,1, 0xc43c78c,4, 0xc43c800,3, 0xc43c810,13, 0xc43c880,16, 0xc43c900,20, 0xc43c984,1, 0xc43c98c,4, 0xc43ca00,3, 0xc43ca10,13, 0xc43ca80,16, 0xc43cb00,20, 0xc43cb84,1, 0xc43cb8c,4, 0xc43cc00,3, 0xc43cc10,13, 0xc43cc80,16, 0xc43cd00,20, 0xc43cd84,1, 0xc43cd8c,4, 0xc43ce00,3, 0xc43ce10,13, 0xc43ce80,16, 0xc43cf00,20, 0xc43cf84,1, 0xc43cf8c,4, 0xc43d000,3, 0xc43d010,13, 0xc43d080,16, 0xc43d100,20, 0xc43d184,1, 0xc43d18c,4, 0xc43d200,18, 0xc43d250,2, 0xc43d260,4, 0xc43e000,1, 0xc43e014,1, 0xc43e01c,19, 0xc43e080,1, 0xc43e094,1, 0xc43e09c,19, 0xc43e100,8, 0xc43e200,13, 0xc43e240,9, 0xc43e280,12, 0xc43e2c0,2, 0xc43e2e0,12, 0xc440000,3, 0xc440080,20, 0xc440100,10, 0xc440140,1, 0xc440154,1, 0xc44015c,2, 0xc440200,15, 0xc440240,4, 0xc440260,17, 0xc4402c0,6, 0xc4402e0,2, 0xc4402ec,3, 0xc440300,8, 0xc440324,1, 0xc440400,4, 0xc440440,20, 0xc4404c0,9, 0xc440500,33, 0xc440600,11, 0xc440640,11, 0xc440680,1, 0xc442000,1, 0xc442200,4, 0xc442300,53, 0xc442400,4, 0xc442500,40, 0xc442600,15, 0xc442640,4, 0xc442660,17, 0xc4426c0,6, 0xc4426e0,2, 0xc4426ec,3, 0xc442700,8, 0xc442724,1, 0xc442800,20, 0xc442c00,53, 0xc442d00,53, 0xc442e00,1, 0xc443000,40, 0xc443100,40, 0xc443200,1, 0xc443400,1, 0xc443804,1, 0xc443844,39, 0xc443900,3, 0xc443a00,3, 0xc443a44,1, 0xc443a50,4, 0xc443a80,1, 0xc444000,2, 0xc444200,27, 0xc444280,4, 0xc4442c0,25, 0xc444340,6, 0xc444360,2, 0xc44436c,3, 0xc444380,8, 0xc4443a4,1, 0xc444400,12, 0xc444440,1, 0xc448000,3, 0xc448080,20, 0xc448100,10, 0xc448140,1, 0xc448154,1, 0xc44815c,2, 0xc448200,15, 0xc448240,4, 0xc448260,17, 0xc4482c0,6, 0xc4482e0,2, 0xc4482ec,3, 0xc448300,8, 0xc448324,1, 0xc448400,4, 0xc448440,20, 0xc4484c0,9, 0xc448500,33, 0xc448600,11, 0xc448640,11, 0xc448680,1, 0xc44a000,1, 0xc44a200,4, 0xc44a300,53, 0xc44a400,4, 0xc44a500,40, 0xc44a600,15, 0xc44a640,4, 0xc44a660,17, 0xc44a6c0,6, 0xc44a6e0,2, 0xc44a6ec,3, 0xc44a700,8, 0xc44a724,1, 0xc44a800,20, 0xc44ac00,53, 0xc44ad00,53, 0xc44ae00,1, 0xc44b000,40, 0xc44b100,40, 0xc44b200,1, 0xc44b400,1, 0xc44b804,1, 0xc44b844,39, 0xc44b900,3, 0xc44ba00,3, 0xc44ba44,1, 0xc44ba50,4, 0xc44ba80,1, 0xc44c000,2, 0xc44c200,27, 0xc44c280,4, 0xc44c2c0,25, 0xc44c340,6, 0xc44c360,2, 0xc44c36c,3, 0xc44c380,8, 0xc44c3a4,1, 0xc44c400,12, 0xc44c440,1, 0xc450000,4, 0xc450020,3, 0xc450030,2, 0xc450200,1, 0xc450224,10, 0xc450250,5, 0xc450280,1, 0xc450288,24, 0xc450300,3, 0xc450404,1, 0xc450414,5, 0xc450500,36, 0xc450600,3, 0xc450800,2, 0xc451000,1, 0xc451008,21, 0xc451080,1, 0xc451088,21, 0xc451100,1, 0xc451108,21, 0xc451180,1, 0xc451188,21, 0xc451200,1, 0xc451208,21, 0xc451280,1, 0xc451288,21, 0xc451300,1, 0xc451308,21, 0xc451380,1, 0xc451388,21, 0xc451400,21, 0xc451800,142, 0xc451c00,1, 0xc452000,4, 0xc452100,39, 0xc452200,3, 0xc452214,3, 0xc454004,1, 0xc454020,16, 0xc454080,2, 0xc454094,1, 0xc45409c,2, 0xc4540c0,6, 0xc454100,8, 0xc458004,17, 0xc458054,1, 0xc45805c,2, 0xc458080,1, 0xc4580a0,2, 0xc4580b4,4, 0xc458100,2, 0xc458200,8, 0xc458400,1, 0xc458600,27, 0xc458680,4, 0xc4586c0,25, 0xc458740,6, 0xc458760,2, 0xc45876c,3, 0xc458780,8, 0xc4587a4,3, 0xc458800,44, 0xc458900,1, 0xc460000,1, 0xc460200,27, 0xc460280,4, 0xc4602c0,25, 0xc460340,6, 0xc460360,2, 0xc46036c,3, 0xc460380,8, 0xc4603a4,1, 0xc460400,20, 0xc460480,3, 0xc460490,9, 0xc480000,198, 0xc480400,2, 0xc480440,9, 0xc480480,7, 0xc480800,198, 0xc480c00,2, 0xc480c40,9, 0xc480c80,7, 0xc481000,198, 0xc481400,198, 0xc481804,6, 0xc481824,6, 0xc481880,2, 0xc481904,1, 0xc481918,28, 0xc4819a0,6, 0xc4819c0,6, 0xc481c00,2, 0xc481d00,2, 0xc481e04,1, 0xc481e74,43, 0xc482000,2, 0xc482100,2, 0xc482204,1, 0xc482274,43, 0xc482400,3, 0xc482600,27, 0xc482680,4, 0xc4826c0,25, 0xc482740,6, 0xc482760,4, 0xc482774,11, 0xc4827a4,4, 0xc482800,4, 0xc482900,34, 0xc482a00,4, 0xc482b00,34, 0xc482c00,3, 0xc482c10,12, 0xc482e00,56, 0xc482ee4,4, 0xc482f00,4, 0xc483000,1, 0xc488000,4, 0xc488100,42, 0xc488200,1, 0xc488210,3, 0xc488220,3, 0xc488230,3, 0xc488240,1, 0xc488248,3, 0xc488400,4, 0xc488500,58, 0xc488600,1, 0xc488610,3, 0xc488620,3, 0xc488630,3, 0xc488640,1, 0xc488648,3, 0xc488800,4, 0xc488900,36, 0xc488a00,1, 0xc488c00,4, 0xc488c80,27, 0xc488d00,1, 0xc488d10,3, 0xc488d20,3, 0xc488d30,3, 0xc488d40,1, 0xc488d48,3, 0xc488e00,4, 0xc488e80,31, 0xc488f00,1, 0xc488f10,3, 0xc488f20,3, 0xc488f30,3, 0xc488f40,1, 0xc488f48,3, 0xc489000,4, 0xc489040,13, 0xc489080,1, 0xc489200,15, 0xc489240,4, 0xc489260,17, 0xc4892c0,6, 0xc4892e0,2, 0xc4892ec,3, 0xc489300,8, 0xc489324,8, 0xc489400,68, 0xc489600,60, 0xc489700,4, 0xc489720,5, 0xc489740,1, 0xc489780,2, 0xc48978c,2, 0xc4897a0,1, 0xc4897c0,12, 0xc489800,7, 0xc489820,5, 0xc489900,49, 0xc489a00,1, 0xc489a08,23, 0xc489a84,1, 0xc489a8c,1, 0xc489a94,1, 0xc489a9c,2, 0xc489ac0,1, 0xc489c00,10, 0xc489c40,1, 0xc489c50,3, 0xc489c80,10, 0xc489cc0,12, 0xc489d00,3, 0xc489e00,1, 0xc48a000,4, 0xc48a100,42, 0xc48a200,1, 0xc48a210,3, 0xc48a220,3, 0xc48a230,3, 0xc48a240,1, 0xc48a248,3, 0xc48a400,4, 0xc48a500,58, 0xc48a600,1, 0xc48a610,3, 0xc48a620,3, 0xc48a630,3, 0xc48a640,1, 0xc48a648,3, 0xc48a800,4, 0xc48a900,36, 0xc48aa00,1, 0xc48ac00,4, 0xc48ac80,27, 0xc48ad00,1, 0xc48ad10,3, 0xc48ad20,3, 0xc48ad30,3, 0xc48ad40,1, 0xc48ad48,3, 0xc48ae00,4, 0xc48ae80,31, 0xc48af00,1, 0xc48af10,3, 0xc48af20,3, 0xc48af30,3, 0xc48af40,1, 0xc48af48,3, 0xc48b000,4, 0xc48b040,13, 0xc48b080,1, 0xc48b200,15, 0xc48b240,4, 0xc48b260,17, 0xc48b2c0,6, 0xc48b2e0,2, 0xc48b2ec,3, 0xc48b300,8, 0xc48b324,8, 0xc48b400,68, 0xc48b600,60, 0xc48b700,4, 0xc48b720,5, 0xc48b740,1, 0xc48b780,2, 0xc48b78c,2, 0xc48b7a0,1, 0xc48b7c0,12, 0xc48b800,7, 0xc48b820,5, 0xc48b900,49, 0xc48ba00,1, 0xc48ba08,23, 0xc48ba84,1, 0xc48ba8c,1, 0xc48ba94,1, 0xc48ba9c,2, 0xc48bac0,1, 0xc48bc00,10, 0xc48bc40,1, 0xc48bc50,3, 0xc48bc80,10, 0xc48bcc0,12, 0xc48bd00,3, 0xc48be00,1, 0xc48c000,20, 0xc48c080,3, 0xc48c090,1, 0xc48c098,4, 0xc490000,49, 0xc490100,12, 0xc490140,4, 0xc490184,1, 0xc490198,2, 0xc4901a4,1, 0xc4901b8,7, 0xc4901e0,4, 0xc490200,20, 0xc490280,3, 0xc490290,9, 0xc4902c0,6, 0xc4902e0,1, 0xc4902e8,7, 0xc490400,49, 0xc490500,12, 0xc490540,4, 0xc490584,1, 0xc490598,2, 0xc4905a4,1, 0xc4905b8,7, 0xc4905e0,4, 0xc490600,20, 0xc490680,3, 0xc490690,9, 0xc4906c0,6, 0xc4906e0,1, 0xc4906e8,7, 0xc490800,49, 0xc490900,12, 0xc490940,4, 0xc490984,1, 0xc490998,2, 0xc4909a4,1, 0xc4909b8,7, 0xc4909e0,4, 0xc490a00,20, 0xc490a80,3, 0xc490a90,9, 0xc490ac0,6, 0xc490ae0,1, 0xc490ae8,7, 0xc490c00,49, 0xc490d00,12, 0xc490d40,4, 0xc490d84,1, 0xc490d98,2, 0xc490da4,1, 0xc490db8,7, 0xc490de0,4, 0xc490e00,20, 0xc490e80,3, 0xc490e90,9, 0xc490ec0,6, 0xc490ee0,1, 0xc490ee8,7, 0xc491000,49, 0xc491100,12, 0xc491140,4, 0xc491184,1, 0xc491198,2, 0xc4911a4,1, 0xc4911b8,7, 0xc4911e0,4, 0xc491200,20, 0xc491280,3, 0xc491290,9, 0xc4912c0,6, 0xc4912e0,1, 0xc4912e8,7, 0xc491400,49, 0xc491500,12, 0xc491540,4, 0xc491584,1, 0xc491598,2, 0xc4915a4,1, 0xc4915b8,7, 0xc4915e0,4, 0xc491600,20, 0xc491680,3, 0xc491690,9, 0xc4916c0,6, 0xc4916e0,1, 0xc4916e8,7, 0xc491800,49, 0xc491900,12, 0xc491940,4, 0xc491984,1, 0xc491998,2, 0xc4919a4,1, 0xc4919b8,7, 0xc4919e0,4, 0xc491a00,20, 0xc491a80,3, 0xc491a90,9, 0xc491ac0,6, 0xc491ae0,1, 0xc491ae8,7, 0xc492000,20, 0xc492080,10, 0xc492100,20, 0xc492180,10, 0xc492200,12, 0xc492400,20, 0xc492480,10, 0xc492500,20, 0xc492580,10, 0xc492600,12, 0xc492800,3, 0xc492840,12, 0xc492880,12, 0xc4928c0,12, 0xc492900,12, 0xc492940,12, 0xc492980,12, 0xc4929c0,12, 0xc492a00,12, 0xc492c00,12, 0xc492c40,7, 0xc492c60,10, 0xc493004,1, 0xc493044,43, 0xc493100,7, 0xc493120,7, 0xc493140,2, 0xc49314c,2, 0xc493160,2, 0xc49316c,2, 0xc493180,18, 0xc493200,2, 0xc493220,10, 0xc493260,20, 0xc4932c0,9, 0xc493300,15, 0xc493340,9, 0xc493380,6, 0xc4933a0,4, 0xc493400,5, 0xc494000,53, 0xc494100,3, 0xc494110,15, 0xc494200,53, 0xc494300,3, 0xc494310,15, 0xc494400,5, 0xc494420,5, 0xc494440,18, 0xc494800,3, 0xc494810,2, 0xc494820,3, 0xc494830,2, 0xc494840,1, 0xc495000,7, 0xc495020,7, 0xc495080,19, 0xc495100,19, 0xc495180,25, 0xc495200,20, 0xc495280,20, 0xc495300,8, 0xc495340,4, 0xc495380,15, 0xc4953c0,15, 0xc495400,9, 0xc495430,5, 0xc496000,6, 0xc496020,1, 0xc496028,2, 0xc496040,11, 0xc496070,2, 0xc498000,82, 0xc498200,2, 0xc498240,9, 0xc498280,7, 0xc498400,82, 0xc498604,6, 0xc498700,15, 0xc498740,9, 0xc498780,6, 0xc4987a0,6, 0xc498800,2, 0xc498810,3, 0xc498880,24, 0xc4988e4,1, 0xc4988f0,12, 0xc4a0000,22, 0xc4a0080,22, 0xc4a0100,5, 0xc4a0120,5, 0xc4a0140,3, 0xc4a0160,16, 0xc4a01c0,7, 0xc4a01e0,2, 0xc4a0200,7, 0xc4a0220,2, 0xc4a0400,15, 0xc4a0440,3, 0xc4a0450,3, 0xc4a0460,24, 0xc4a0500,15, 0xc4a0540,3, 0xc4a0550,3, 0xc4a0560,24, 0xc4a0600,15, 0xc4a0640,3, 0xc4a0650,3, 0xc4a0660,24, 0xc4a0700,15, 0xc4a0740,3, 0xc4a0750,3, 0xc4a0760,24, 0xc4a0800,4, 0xc4a0820,16, 0xc4a0880,10, 0xc4a08c0,10, 0xc4a0900,6, 0xc4a0920,6, 0xc4a0940,4, 0xc4a0980,13, 0xc4a09c0,13, 0xc4a0a00,9, 0xc4a1000,86, 0xc4a1200,2, 0xc4a1240,9, 0xc4a1280,7, 0xc4a1400,86, 0xc4a1604,6, 0xc4a1800,86, 0xc4a1a00,2, 0xc4a1a40,9, 0xc4a1a80,7, 0xc4a1c00,86, 0xc4a1e04,6, 0xc4a2000,15, 0xc4a2040,4, 0xc4a2060,17, 0xc4a20c0,6, 0xc4a20e0,4, 0xc4a20f4,11, 0xc4a2128,38, 0xc4a21c4,2, 0xc4a21d0,4, 0xc4a2200,1, 0xc4a4000,22, 0xc4a4080,22, 0xc4a4100,5, 0xc4a4120,5, 0xc4a4140,3, 0xc4a4160,16, 0xc4a41c0,7, 0xc4a41e0,2, 0xc4a4200,7, 0xc4a4220,2, 0xc4a4400,15, 0xc4a4440,3, 0xc4a4450,3, 0xc4a4460,24, 0xc4a4500,15, 0xc4a4540,3, 0xc4a4550,3, 0xc4a4560,24, 0xc4a4600,15, 0xc4a4640,3, 0xc4a4650,3, 0xc4a4660,24, 0xc4a4700,15, 0xc4a4740,3, 0xc4a4750,3, 0xc4a4760,24, 0xc4a4800,4, 0xc4a4820,16, 0xc4a4880,10, 0xc4a48c0,10, 0xc4a4900,6, 0xc4a4920,6, 0xc4a4940,4, 0xc4a4980,13, 0xc4a49c0,13, 0xc4a4a00,9, 0xc4a5000,86, 0xc4a5200,2, 0xc4a5240,9, 0xc4a5280,7, 0xc4a5400,86, 0xc4a5604,6, 0xc4a5800,86, 0xc4a5a00,2, 0xc4a5a40,9, 0xc4a5a80,7, 0xc4a5c00,86, 0xc4a5e04,6, 0xc4a6000,15, 0xc4a6040,4, 0xc4a6060,17, 0xc4a60c0,6, 0xc4a60e0,4, 0xc4a60f4,11, 0xc4a6128,38, 0xc4a61c4,2, 0xc4a61d0,4, 0xc4a6200,1, 0xc4a8000,9, 0xc4a8040,9, 0xc4a8080,5, 0xc4a8100,21, 0xc4a8160,5, 0xc4a8180,45, 0xc4a8240,13, 0xc4a8280,9, 0xc4a8400,9, 0xc4a8440,9, 0xc4a8480,5, 0xc4a8500,21, 0xc4a8560,5, 0xc4a8580,45, 0xc4a8640,13, 0xc4a8680,9, 0xc4a8800,12, 0xc4a8900,15, 0xc4a8940,4, 0xc4a8960,17, 0xc4a89c0,6, 0xc4a89e0,4, 0xc4a89f4,29, 0xc4ac000,30, 0xc4ac080,3, 0xc4ac090,19, 0xc4ac100,30, 0xc4ac180,3, 0xc4ac190,19, 0xc4ac200,30, 0xc4ac280,3, 0xc4ac290,19, 0xc4ac300,30, 0xc4ac380,3, 0xc4ac390,19, 0xc4ac400,30, 0xc4ac480,3, 0xc4ac490,19, 0xc4ac500,30, 0xc4ac580,3, 0xc4ac590,19, 0xc4ac600,30, 0xc4ac680,3, 0xc4ac690,19, 0xc4ac700,30, 0xc4ac780,3, 0xc4ac790,19, 0xc4ac800,12, 0xc4ac844,1, 0xc4ac854,8, 0xc4ac880,7, 0xc4ac8a0,2, 0xc4ac8ac,2, 0xc4ac8c0,26, 0xc4ac980,4, 0xc4ac9a0,5, 0xc4ac9c0,1, 0xc4ad000,3, 0xc4ad010,3, 0xc4ad020,3, 0xc4ad030,3, 0xc4ad040,3, 0xc4ad050,3, 0xc4ad060,3, 0xc4ad070,3, 0xc4ad080,6, 0xc4ad0a0,6, 0xc4ad0c0,6, 0xc4ad0e0,6, 0xc4ad100,6, 0xc4ad120,6, 0xc4ad140,6, 0xc4ad160,6, 0xc4ad200,68, 0xc4ad400,1, 0xc4ad804,1, 0xc4ad844,54, 0xc4ada00,12, 0xc4ada40,12, 0xc4ada80,12, 0xc4adac0,12, 0xc4adb00,12, 0xc4adb40,12, 0xc4adb80,12, 0xc4adbc0,12, 0xc4adc00,28, 0xc4adc80,10, 0xc4ae000,3, 0xc4ae020,6, 0xc4ae040,6, 0xc4ae060,15, 0xc4ae100,26, 0xc4ae180,15, 0xc4ae200,15, 0xc4ae240,4, 0xc4ae260,17, 0xc4ae2c0,6, 0xc4ae2e0,4, 0xc4ae2f4,18, 0xc4ae340,4, 0xc4ae360,17, 0xc4ae3c0,6, 0xc4ae3e0,4, 0xc4ae3f4,15, 0xc4b0000,1, 0xc4b1000,1020, 0xc4b2000,194, 0xc4b3000,1020, 0xc4b4000,1020, 0xc4b5000,1020, 0xc4b6000,1020, 0xc4b7000,1020, 0xc4b8000,1020, 0xc4b9000,1020, 0xc4ba000,1020, 0xc4bb000,194, 0xc4bc000,3, 0xc4bc010,13, 0xc4bc080,16, 0xc4bc100,20, 0xc4bc184,1, 0xc4bc18c,4, 0xc4bc200,3, 0xc4bc210,13, 0xc4bc280,16, 0xc4bc300,20, 0xc4bc384,1, 0xc4bc38c,4, 0xc4bc400,3, 0xc4bc410,13, 0xc4bc480,16, 0xc4bc500,20, 0xc4bc584,1, 0xc4bc58c,4, 0xc4bc600,3, 0xc4bc610,13, 0xc4bc680,16, 0xc4bc700,20, 0xc4bc784,1, 0xc4bc78c,4, 0xc4bc800,3, 0xc4bc810,13, 0xc4bc880,16, 0xc4bc900,20, 0xc4bc984,1, 0xc4bc98c,4, 0xc4bca00,3, 0xc4bca10,13, 0xc4bca80,16, 0xc4bcb00,20, 0xc4bcb84,1, 0xc4bcb8c,4, 0xc4bcc00,3, 0xc4bcc10,13, 0xc4bcc80,16, 0xc4bcd00,20, 0xc4bcd84,1, 0xc4bcd8c,4, 0xc4bce00,3, 0xc4bce10,13, 0xc4bce80,16, 0xc4bcf00,20, 0xc4bcf84,1, 0xc4bcf8c,4, 0xc4bd000,3, 0xc4bd010,13, 0xc4bd080,16, 0xc4bd100,20, 0xc4bd184,1, 0xc4bd18c,4, 0xc4bd200,18, 0xc4bd250,2, 0xc4bd260,4, 0xc4be000,1, 0xc4be014,1, 0xc4be01c,19, 0xc4be080,1, 0xc4be094,1, 0xc4be09c,19, 0xc4be100,8, 0xc4be200,13, 0xc4be240,9, 0xc4be280,12, 0xc4be2c0,2, 0xc4be2e0,12, 0xc4c0000,3, 0xc4c0080,20, 0xc4c0100,10, 0xc4c0140,1, 0xc4c0154,1, 0xc4c015c,2, 0xc4c0200,15, 0xc4c0240,4, 0xc4c0260,17, 0xc4c02c0,6, 0xc4c02e0,2, 0xc4c02ec,3, 0xc4c0300,8, 0xc4c0324,1, 0xc4c0400,4, 0xc4c0440,20, 0xc4c04c0,9, 0xc4c0500,33, 0xc4c0600,11, 0xc4c0640,11, 0xc4c0680,1, 0xc4c2000,1, 0xc4c2200,4, 0xc4c2300,53, 0xc4c2400,4, 0xc4c2500,40, 0xc4c2600,15, 0xc4c2640,4, 0xc4c2660,17, 0xc4c26c0,6, 0xc4c26e0,2, 0xc4c26ec,3, 0xc4c2700,8, 0xc4c2724,1, 0xc4c2800,20, 0xc4c2c00,53, 0xc4c2d00,53, 0xc4c2e00,1, 0xc4c3000,40, 0xc4c3100,40, 0xc4c3200,1, 0xc4c3400,1, 0xc4c3804,1, 0xc4c3844,39, 0xc4c3900,3, 0xc4c3a00,3, 0xc4c3a44,1, 0xc4c3a50,4, 0xc4c3a80,1, 0xc4c4000,2, 0xc4c4200,27, 0xc4c4280,4, 0xc4c42c0,25, 0xc4c4340,6, 0xc4c4360,2, 0xc4c436c,3, 0xc4c4380,8, 0xc4c43a4,1, 0xc4c4400,12, 0xc4c4440,1, 0xc4c8000,3, 0xc4c8080,20, 0xc4c8100,10, 0xc4c8140,1, 0xc4c8154,1, 0xc4c815c,2, 0xc4c8200,15, 0xc4c8240,4, 0xc4c8260,17, 0xc4c82c0,6, 0xc4c82e0,2, 0xc4c82ec,3, 0xc4c8300,8, 0xc4c8324,1, 0xc4c8400,4, 0xc4c8440,20, 0xc4c84c0,9, 0xc4c8500,33, 0xc4c8600,11, 0xc4c8640,11, 0xc4c8680,1, 0xc4ca000,1, 0xc4ca200,4, 0xc4ca300,53, 0xc4ca400,4, 0xc4ca500,40, 0xc4ca600,15, 0xc4ca640,4, 0xc4ca660,17, 0xc4ca6c0,6, 0xc4ca6e0,2, 0xc4ca6ec,3, 0xc4ca700,8, 0xc4ca724,1, 0xc4ca800,20, 0xc4cac00,53, 0xc4cad00,53, 0xc4cae00,1, 0xc4cb000,40, 0xc4cb100,40, 0xc4cb200,1, 0xc4cb400,1, 0xc4cb804,1, 0xc4cb844,39, 0xc4cb900,3, 0xc4cba00,3, 0xc4cba44,1, 0xc4cba50,4, 0xc4cba80,1, 0xc4cc000,2, 0xc4cc200,27, 0xc4cc280,4, 0xc4cc2c0,25, 0xc4cc340,6, 0xc4cc360,2, 0xc4cc36c,3, 0xc4cc380,8, 0xc4cc3a4,1, 0xc4cc400,12, 0xc4cc440,1, 0xc4d0000,4, 0xc4d0020,3, 0xc4d0030,2, 0xc4d0200,1, 0xc4d0224,10, 0xc4d0250,5, 0xc4d0280,1, 0xc4d0288,24, 0xc4d0300,3, 0xc4d0404,1, 0xc4d0414,5, 0xc4d0500,36, 0xc4d0600,3, 0xc4d0800,2, 0xc4d1000,1, 0xc4d1008,21, 0xc4d1080,1, 0xc4d1088,21, 0xc4d1100,1, 0xc4d1108,21, 0xc4d1180,1, 0xc4d1188,21, 0xc4d1200,1, 0xc4d1208,21, 0xc4d1280,1, 0xc4d1288,21, 0xc4d1300,1, 0xc4d1308,21, 0xc4d1380,1, 0xc4d1388,21, 0xc4d1400,21, 0xc4d1800,142, 0xc4d1c00,1, 0xc4d2000,4, 0xc4d2100,39, 0xc4d2200,3, 0xc4d2214,3, 0xc4d4004,1, 0xc4d4020,16, 0xc4d4080,2, 0xc4d4094,1, 0xc4d409c,2, 0xc4d40c0,6, 0xc4d4100,8, 0xc4d8004,17, 0xc4d8054,1, 0xc4d805c,2, 0xc4d8080,1, 0xc4d80a0,2, 0xc4d80b4,4, 0xc4d8100,2, 0xc4d8200,8, 0xc4d8400,1, 0xc4d8600,27, 0xc4d8680,4, 0xc4d86c0,25, 0xc4d8740,6, 0xc4d8760,2, 0xc4d876c,3, 0xc4d8780,8, 0xc4d87a4,3, 0xc4d8800,44, 0xc4d8900,1, 0xc4e0000,1, 0xc4e0200,27, 0xc4e0280,4, 0xc4e02c0,25, 0xc4e0340,6, 0xc4e0360,2, 0xc4e036c,3, 0xc4e0380,8, 0xc4e03a4,1, 0xc4e0400,20, 0xc4e0480,3, 0xc4e0490,9, 0xc500000,198, 0xc500400,2, 0xc500440,9, 0xc500480,7, 0xc500800,198, 0xc500c00,2, 0xc500c40,9, 0xc500c80,7, 0xc501000,198, 0xc501400,198, 0xc501804,6, 0xc501824,6, 0xc501880,2, 0xc501904,1, 0xc501918,28, 0xc5019a0,6, 0xc5019c0,6, 0xc501c00,2, 0xc501d00,2, 0xc501e04,1, 0xc501e74,43, 0xc502000,2, 0xc502100,2, 0xc502204,1, 0xc502274,43, 0xc502400,3, 0xc502600,27, 0xc502680,4, 0xc5026c0,25, 0xc502740,6, 0xc502760,4, 0xc502774,11, 0xc5027a4,4, 0xc502800,4, 0xc502900,34, 0xc502a00,4, 0xc502b00,34, 0xc502c00,3, 0xc502c10,12, 0xc502e00,56, 0xc502ee4,4, 0xc502f00,4, 0xc503000,1, 0xc508000,4, 0xc508100,42, 0xc508200,1, 0xc508210,3, 0xc508220,3, 0xc508230,3, 0xc508240,1, 0xc508248,3, 0xc508400,4, 0xc508500,58, 0xc508600,1, 0xc508610,3, 0xc508620,3, 0xc508630,3, 0xc508640,1, 0xc508648,3, 0xc508800,4, 0xc508900,36, 0xc508a00,1, 0xc508c00,4, 0xc508c80,27, 0xc508d00,1, 0xc508d10,3, 0xc508d20,3, 0xc508d30,3, 0xc508d40,1, 0xc508d48,3, 0xc508e00,4, 0xc508e80,31, 0xc508f00,1, 0xc508f10,3, 0xc508f20,3, 0xc508f30,3, 0xc508f40,1, 0xc508f48,3, 0xc509000,4, 0xc509040,13, 0xc509080,1, 0xc509200,15, 0xc509240,4, 0xc509260,17, 0xc5092c0,6, 0xc5092e0,2, 0xc5092ec,3, 0xc509300,8, 0xc509324,8, 0xc509400,68, 0xc509600,60, 0xc509700,4, 0xc509720,5, 0xc509740,1, 0xc509780,2, 0xc50978c,2, 0xc5097a0,1, 0xc5097c0,12, 0xc509800,7, 0xc509820,5, 0xc509900,49, 0xc509a00,1, 0xc509a08,23, 0xc509a84,1, 0xc509a8c,1, 0xc509a94,1, 0xc509a9c,2, 0xc509ac0,1, 0xc509c00,10, 0xc509c40,1, 0xc509c50,3, 0xc509c80,10, 0xc509cc0,12, 0xc509d00,3, 0xc509e00,1, 0xc50a000,4, 0xc50a100,42, 0xc50a200,1, 0xc50a210,3, 0xc50a220,3, 0xc50a230,3, 0xc50a240,1, 0xc50a248,3, 0xc50a400,4, 0xc50a500,58, 0xc50a600,1, 0xc50a610,3, 0xc50a620,3, 0xc50a630,3, 0xc50a640,1, 0xc50a648,3, 0xc50a800,4, 0xc50a900,36, 0xc50aa00,1, 0xc50ac00,4, 0xc50ac80,27, 0xc50ad00,1, 0xc50ad10,3, 0xc50ad20,3, 0xc50ad30,3, 0xc50ad40,1, 0xc50ad48,3, 0xc50ae00,4, 0xc50ae80,31, 0xc50af00,1, 0xc50af10,3, 0xc50af20,3, 0xc50af30,3, 0xc50af40,1, 0xc50af48,3, 0xc50b000,4, 0xc50b040,13, 0xc50b080,1, 0xc50b200,15, 0xc50b240,4, 0xc50b260,17, 0xc50b2c0,6, 0xc50b2e0,2, 0xc50b2ec,3, 0xc50b300,8, 0xc50b324,8, 0xc50b400,68, 0xc50b600,60, 0xc50b700,4, 0xc50b720,5, 0xc50b740,1, 0xc50b780,2, 0xc50b78c,2, 0xc50b7a0,1, 0xc50b7c0,12, 0xc50b800,7, 0xc50b820,5, 0xc50b900,49, 0xc50ba00,1, 0xc50ba08,23, 0xc50ba84,1, 0xc50ba8c,1, 0xc50ba94,1, 0xc50ba9c,2, 0xc50bac0,1, 0xc50bc00,10, 0xc50bc40,1, 0xc50bc50,3, 0xc50bc80,10, 0xc50bcc0,12, 0xc50bd00,3, 0xc50be00,1, 0xc50c000,20, 0xc50c080,3, 0xc50c090,1, 0xc50c098,4, 0xc510000,49, 0xc510100,12, 0xc510140,4, 0xc510184,1, 0xc510198,2, 0xc5101a4,1, 0xc5101b8,7, 0xc5101e0,4, 0xc510200,20, 0xc510280,3, 0xc510290,9, 0xc5102c0,6, 0xc5102e0,1, 0xc5102e8,7, 0xc510400,49, 0xc510500,12, 0xc510540,4, 0xc510584,1, 0xc510598,2, 0xc5105a4,1, 0xc5105b8,7, 0xc5105e0,4, 0xc510600,20, 0xc510680,3, 0xc510690,9, 0xc5106c0,6, 0xc5106e0,1, 0xc5106e8,7, 0xc510800,49, 0xc510900,12, 0xc510940,4, 0xc510984,1, 0xc510998,2, 0xc5109a4,1, 0xc5109b8,7, 0xc5109e0,4, 0xc510a00,20, 0xc510a80,3, 0xc510a90,9, 0xc510ac0,6, 0xc510ae0,1, 0xc510ae8,7, 0xc510c00,49, 0xc510d00,12, 0xc510d40,4, 0xc510d84,1, 0xc510d98,2, 0xc510da4,1, 0xc510db8,7, 0xc510de0,4, 0xc510e00,20, 0xc510e80,3, 0xc510e90,9, 0xc510ec0,6, 0xc510ee0,1, 0xc510ee8,7, 0xc511000,49, 0xc511100,12, 0xc511140,4, 0xc511184,1, 0xc511198,2, 0xc5111a4,1, 0xc5111b8,7, 0xc5111e0,4, 0xc511200,20, 0xc511280,3, 0xc511290,9, 0xc5112c0,6, 0xc5112e0,1, 0xc5112e8,7, 0xc511400,49, 0xc511500,12, 0xc511540,4, 0xc511584,1, 0xc511598,2, 0xc5115a4,1, 0xc5115b8,7, 0xc5115e0,4, 0xc511600,20, 0xc511680,3, 0xc511690,9, 0xc5116c0,6, 0xc5116e0,1, 0xc5116e8,7, 0xc511800,49, 0xc511900,12, 0xc511940,4, 0xc511984,1, 0xc511998,2, 0xc5119a4,1, 0xc5119b8,7, 0xc5119e0,4, 0xc511a00,20, 0xc511a80,3, 0xc511a90,9, 0xc511ac0,6, 0xc511ae0,1, 0xc511ae8,7, 0xc512000,20, 0xc512080,10, 0xc512100,20, 0xc512180,10, 0xc512200,12, 0xc512400,20, 0xc512480,10, 0xc512500,20, 0xc512580,10, 0xc512600,12, 0xc512800,3, 0xc512840,12, 0xc512880,12, 0xc5128c0,12, 0xc512900,12, 0xc512940,12, 0xc512980,12, 0xc5129c0,12, 0xc512a00,12, 0xc512c00,12, 0xc512c40,7, 0xc512c60,10, 0xc513004,1, 0xc513044,43, 0xc513100,7, 0xc513120,7, 0xc513140,2, 0xc51314c,2, 0xc513160,2, 0xc51316c,2, 0xc513180,18, 0xc513200,2, 0xc513220,10, 0xc513260,20, 0xc5132c0,9, 0xc513300,15, 0xc513340,9, 0xc513380,6, 0xc5133a0,4, 0xc513400,5, 0xc514000,53, 0xc514100,3, 0xc514110,15, 0xc514200,53, 0xc514300,3, 0xc514310,15, 0xc514400,5, 0xc514420,5, 0xc514440,18, 0xc514800,3, 0xc514810,2, 0xc514820,3, 0xc514830,2, 0xc514840,1, 0xc515000,7, 0xc515020,7, 0xc515080,19, 0xc515100,19, 0xc515180,25, 0xc515200,20, 0xc515280,20, 0xc515300,8, 0xc515340,4, 0xc515380,15, 0xc5153c0,15, 0xc515400,9, 0xc515430,5, 0xc516000,6, 0xc516020,1, 0xc516028,2, 0xc516040,11, 0xc516070,2, 0xc518000,82, 0xc518200,2, 0xc518240,9, 0xc518280,7, 0xc518400,82, 0xc518604,6, 0xc518700,15, 0xc518740,9, 0xc518780,6, 0xc5187a0,6, 0xc518800,2, 0xc518810,3, 0xc518880,24, 0xc5188e4,1, 0xc5188f0,12, 0xc520000,22, 0xc520080,22, 0xc520100,5, 0xc520120,5, 0xc520140,3, 0xc520160,16, 0xc5201c0,7, 0xc5201e0,2, 0xc520200,7, 0xc520220,2, 0xc520400,15, 0xc520440,3, 0xc520450,3, 0xc520460,24, 0xc520500,15, 0xc520540,3, 0xc520550,3, 0xc520560,24, 0xc520600,15, 0xc520640,3, 0xc520650,3, 0xc520660,24, 0xc520700,15, 0xc520740,3, 0xc520750,3, 0xc520760,24, 0xc520800,4, 0xc520820,16, 0xc520880,10, 0xc5208c0,10, 0xc520900,6, 0xc520920,6, 0xc520940,4, 0xc520980,13, 0xc5209c0,13, 0xc520a00,9, 0xc521000,86, 0xc521200,2, 0xc521240,9, 0xc521280,7, 0xc521400,86, 0xc521604,6, 0xc521800,86, 0xc521a00,2, 0xc521a40,9, 0xc521a80,7, 0xc521c00,86, 0xc521e04,6, 0xc522000,15, 0xc522040,4, 0xc522060,17, 0xc5220c0,6, 0xc5220e0,4, 0xc5220f4,11, 0xc522128,38, 0xc5221c4,2, 0xc5221d0,4, 0xc522200,1, 0xc524000,22, 0xc524080,22, 0xc524100,5, 0xc524120,5, 0xc524140,3, 0xc524160,16, 0xc5241c0,7, 0xc5241e0,2, 0xc524200,7, 0xc524220,2, 0xc524400,15, 0xc524440,3, 0xc524450,3, 0xc524460,24, 0xc524500,15, 0xc524540,3, 0xc524550,3, 0xc524560,24, 0xc524600,15, 0xc524640,3, 0xc524650,3, 0xc524660,24, 0xc524700,15, 0xc524740,3, 0xc524750,3, 0xc524760,24, 0xc524800,4, 0xc524820,16, 0xc524880,10, 0xc5248c0,10, 0xc524900,6, 0xc524920,6, 0xc524940,4, 0xc524980,13, 0xc5249c0,13, 0xc524a00,9, 0xc525000,86, 0xc525200,2, 0xc525240,9, 0xc525280,7, 0xc525400,86, 0xc525604,6, 0xc525800,86, 0xc525a00,2, 0xc525a40,9, 0xc525a80,7, 0xc525c00,86, 0xc525e04,6, 0xc526000,15, 0xc526040,4, 0xc526060,17, 0xc5260c0,6, 0xc5260e0,4, 0xc5260f4,11, 0xc526128,38, 0xc5261c4,2, 0xc5261d0,4, 0xc526200,1, 0xc528000,9, 0xc528040,9, 0xc528080,5, 0xc528100,21, 0xc528160,5, 0xc528180,45, 0xc528240,13, 0xc528280,9, 0xc528400,9, 0xc528440,9, 0xc528480,5, 0xc528500,21, 0xc528560,5, 0xc528580,45, 0xc528640,13, 0xc528680,9, 0xc528800,12, 0xc528900,15, 0xc528940,4, 0xc528960,17, 0xc5289c0,6, 0xc5289e0,4, 0xc5289f4,29, 0xc52c000,30, 0xc52c080,3, 0xc52c090,19, 0xc52c100,30, 0xc52c180,3, 0xc52c190,19, 0xc52c200,30, 0xc52c280,3, 0xc52c290,19, 0xc52c300,30, 0xc52c380,3, 0xc52c390,19, 0xc52c400,30, 0xc52c480,3, 0xc52c490,19, 0xc52c500,30, 0xc52c580,3, 0xc52c590,19, 0xc52c600,30, 0xc52c680,3, 0xc52c690,19, 0xc52c700,30, 0xc52c780,3, 0xc52c790,19, 0xc52c800,12, 0xc52c844,1, 0xc52c854,8, 0xc52c880,7, 0xc52c8a0,2, 0xc52c8ac,2, 0xc52c8c0,26, 0xc52c980,4, 0xc52c9a0,5, 0xc52c9c0,1, 0xc52d000,3, 0xc52d010,3, 0xc52d020,3, 0xc52d030,3, 0xc52d040,3, 0xc52d050,3, 0xc52d060,3, 0xc52d070,3, 0xc52d080,6, 0xc52d0a0,6, 0xc52d0c0,6, 0xc52d0e0,6, 0xc52d100,6, 0xc52d120,6, 0xc52d140,6, 0xc52d160,6, 0xc52d200,68, 0xc52d400,1, 0xc52d804,1, 0xc52d844,54, 0xc52da00,12, 0xc52da40,12, 0xc52da80,12, 0xc52dac0,12, 0xc52db00,12, 0xc52db40,12, 0xc52db80,12, 0xc52dbc0,12, 0xc52dc00,28, 0xc52dc80,10, 0xc52e000,3, 0xc52e020,6, 0xc52e040,6, 0xc52e060,15, 0xc52e100,26, 0xc52e180,15, 0xc52e200,15, 0xc52e240,4, 0xc52e260,17, 0xc52e2c0,6, 0xc52e2e0,4, 0xc52e2f4,18, 0xc52e340,4, 0xc52e360,17, 0xc52e3c0,6, 0xc52e3e0,4, 0xc52e3f4,15, 0xc530000,1, 0xc531000,1020, 0xc532000,194, 0xc533000,1020, 0xc534000,1020, 0xc535000,1020, 0xc536000,1020, 0xc537000,1020, 0xc538000,1020, 0xc539000,1020, 0xc53a000,1020, 0xc53b000,194, 0xc53c000,3, 0xc53c010,13, 0xc53c080,16, 0xc53c100,20, 0xc53c184,1, 0xc53c18c,4, 0xc53c200,3, 0xc53c210,13, 0xc53c280,16, 0xc53c300,20, 0xc53c384,1, 0xc53c38c,4, 0xc53c400,3, 0xc53c410,13, 0xc53c480,16, 0xc53c500,20, 0xc53c584,1, 0xc53c58c,4, 0xc53c600,3, 0xc53c610,13, 0xc53c680,16, 0xc53c700,20, 0xc53c784,1, 0xc53c78c,4, 0xc53c800,3, 0xc53c810,13, 0xc53c880,16, 0xc53c900,20, 0xc53c984,1, 0xc53c98c,4, 0xc53ca00,3, 0xc53ca10,13, 0xc53ca80,16, 0xc53cb00,20, 0xc53cb84,1, 0xc53cb8c,4, 0xc53cc00,3, 0xc53cc10,13, 0xc53cc80,16, 0xc53cd00,20, 0xc53cd84,1, 0xc53cd8c,4, 0xc53ce00,3, 0xc53ce10,13, 0xc53ce80,16, 0xc53cf00,20, 0xc53cf84,1, 0xc53cf8c,4, 0xc53d000,3, 0xc53d010,13, 0xc53d080,16, 0xc53d100,20, 0xc53d184,1, 0xc53d18c,4, 0xc53d200,18, 0xc53d250,2, 0xc53d260,4, 0xc53e000,1, 0xc53e014,1, 0xc53e01c,19, 0xc53e080,1, 0xc53e094,1, 0xc53e09c,19, 0xc53e100,8, 0xc53e200,13, 0xc53e240,9, 0xc53e280,12, 0xc53e2c0,2, 0xc53e2e0,12, 0xc540000,3, 0xc540080,20, 0xc540100,10, 0xc540140,1, 0xc540154,1, 0xc54015c,2, 0xc540200,15, 0xc540240,4, 0xc540260,17, 0xc5402c0,6, 0xc5402e0,2, 0xc5402ec,3, 0xc540300,8, 0xc540324,1, 0xc540400,4, 0xc540440,20, 0xc5404c0,9, 0xc540500,33, 0xc540600,11, 0xc540640,11, 0xc540680,1, 0xc542000,1, 0xc542200,4, 0xc542300,53, 0xc542400,4, 0xc542500,40, 0xc542600,15, 0xc542640,4, 0xc542660,17, 0xc5426c0,6, 0xc5426e0,2, 0xc5426ec,3, 0xc542700,8, 0xc542724,1, 0xc542800,20, 0xc542c00,53, 0xc542d00,53, 0xc542e00,1, 0xc543000,40, 0xc543100,40, 0xc543200,1, 0xc543400,1, 0xc543804,1, 0xc543844,39, 0xc543900,3, 0xc543a00,3, 0xc543a44,1, 0xc543a50,4, 0xc543a80,1, 0xc544000,2, 0xc544200,27, 0xc544280,4, 0xc5442c0,25, 0xc544340,6, 0xc544360,2, 0xc54436c,3, 0xc544380,8, 0xc5443a4,1, 0xc544400,12, 0xc544440,1, 0xc548000,3, 0xc548080,20, 0xc548100,10, 0xc548140,1, 0xc548154,1, 0xc54815c,2, 0xc548200,15, 0xc548240,4, 0xc548260,17, 0xc5482c0,6, 0xc5482e0,2, 0xc5482ec,3, 0xc548300,8, 0xc548324,1, 0xc548400,4, 0xc548440,20, 0xc5484c0,9, 0xc548500,33, 0xc548600,11, 0xc548640,11, 0xc548680,1, 0xc54a000,1, 0xc54a200,4, 0xc54a300,53, 0xc54a400,4, 0xc54a500,40, 0xc54a600,15, 0xc54a640,4, 0xc54a660,17, 0xc54a6c0,6, 0xc54a6e0,2, 0xc54a6ec,3, 0xc54a700,8, 0xc54a724,1, 0xc54a800,20, 0xc54ac00,53, 0xc54ad00,53, 0xc54ae00,1, 0xc54b000,40, 0xc54b100,40, 0xc54b200,1, 0xc54b400,1, 0xc54b804,1, 0xc54b844,39, 0xc54b900,3, 0xc54ba00,3, 0xc54ba44,1, 0xc54ba50,4, 0xc54ba80,1, 0xc54c000,2, 0xc54c200,27, 0xc54c280,4, 0xc54c2c0,25, 0xc54c340,6, 0xc54c360,2, 0xc54c36c,3, 0xc54c380,8, 0xc54c3a4,1, 0xc54c400,12, 0xc54c440,1, 0xc550000,4, 0xc550020,3, 0xc550030,2, 0xc550200,1, 0xc550224,10, 0xc550250,5, 0xc550280,1, 0xc550288,24, 0xc550300,3, 0xc550404,1, 0xc550414,5, 0xc550500,36, 0xc550600,3, 0xc550800,2, 0xc551000,1, 0xc551008,21, 0xc551080,1, 0xc551088,21, 0xc551100,1, 0xc551108,21, 0xc551180,1, 0xc551188,21, 0xc551200,1, 0xc551208,21, 0xc551280,1, 0xc551288,21, 0xc551300,1, 0xc551308,21, 0xc551380,1, 0xc551388,21, 0xc551400,21, 0xc551800,142, 0xc551c00,1, 0xc552000,4, 0xc552100,39, 0xc552200,3, 0xc552214,3, 0xc554004,1, 0xc554020,16, 0xc554080,2, 0xc554094,1, 0xc55409c,2, 0xc5540c0,6, 0xc554100,8, 0xc558004,17, 0xc558054,1, 0xc55805c,2, 0xc558080,1, 0xc5580a0,2, 0xc5580b4,4, 0xc558100,2, 0xc558200,8, 0xc558400,1, 0xc558600,27, 0xc558680,4, 0xc5586c0,25, 0xc558740,6, 0xc558760,2, 0xc55876c,3, 0xc558780,8, 0xc5587a4,3, 0xc558800,44, 0xc558900,1, 0xc560000,1, 0xc560200,27, 0xc560280,4, 0xc5602c0,25, 0xc560340,6, 0xc560360,2, 0xc56036c,3, 0xc560380,8, 0xc5603a4,1, 0xc560400,20, 0xc560480,3, 0xc560490,9, 0xc580000,198, 0xc580400,2, 0xc580440,9, 0xc580480,7, 0xc580800,198, 0xc580c00,2, 0xc580c40,9, 0xc580c80,7, 0xc581000,198, 0xc581400,198, 0xc581804,6, 0xc581824,6, 0xc581880,2, 0xc581904,1, 0xc581918,28, 0xc5819a0,6, 0xc5819c0,6, 0xc581c00,2, 0xc581d00,2, 0xc581e04,1, 0xc581e74,43, 0xc582000,2, 0xc582100,2, 0xc582204,1, 0xc582274,43, 0xc582400,3, 0xc582600,27, 0xc582680,4, 0xc5826c0,25, 0xc582740,6, 0xc582760,4, 0xc582774,11, 0xc5827a4,4, 0xc582800,4, 0xc582900,34, 0xc582a00,4, 0xc582b00,34, 0xc582c00,3, 0xc582c10,12, 0xc582e00,56, 0xc582ee4,4, 0xc582f00,4, 0xc583000,1, 0xc588000,4, 0xc588100,42, 0xc588200,1, 0xc588210,3, 0xc588220,3, 0xc588230,3, 0xc588240,1, 0xc588248,3, 0xc588400,4, 0xc588500,58, 0xc588600,1, 0xc588610,3, 0xc588620,3, 0xc588630,3, 0xc588640,1, 0xc588648,3, 0xc588800,4, 0xc588900,36, 0xc588a00,1, 0xc588c00,4, 0xc588c80,27, 0xc588d00,1, 0xc588d10,3, 0xc588d20,3, 0xc588d30,3, 0xc588d40,1, 0xc588d48,3, 0xc588e00,4, 0xc588e80,31, 0xc588f00,1, 0xc588f10,3, 0xc588f20,3, 0xc588f30,3, 0xc588f40,1, 0xc588f48,3, 0xc589000,4, 0xc589040,13, 0xc589080,1, 0xc589200,15, 0xc589240,4, 0xc589260,17, 0xc5892c0,6, 0xc5892e0,2, 0xc5892ec,3, 0xc589300,8, 0xc589324,8, 0xc589400,68, 0xc589600,60, 0xc589700,4, 0xc589720,5, 0xc589740,1, 0xc589780,2, 0xc58978c,2, 0xc5897a0,1, 0xc5897c0,12, 0xc589800,7, 0xc589820,5, 0xc589900,49, 0xc589a00,1, 0xc589a08,23, 0xc589a84,1, 0xc589a8c,1, 0xc589a94,1, 0xc589a9c,2, 0xc589ac0,1, 0xc589c00,10, 0xc589c40,1, 0xc589c50,3, 0xc589c80,10, 0xc589cc0,12, 0xc589d00,3, 0xc589e00,1, 0xc58a000,4, 0xc58a100,42, 0xc58a200,1, 0xc58a210,3, 0xc58a220,3, 0xc58a230,3, 0xc58a240,1, 0xc58a248,3, 0xc58a400,4, 0xc58a500,58, 0xc58a600,1, 0xc58a610,3, 0xc58a620,3, 0xc58a630,3, 0xc58a640,1, 0xc58a648,3, 0xc58a800,4, 0xc58a900,36, 0xc58aa00,1, 0xc58ac00,4, 0xc58ac80,27, 0xc58ad00,1, 0xc58ad10,3, 0xc58ad20,3, 0xc58ad30,3, 0xc58ad40,1, 0xc58ad48,3, 0xc58ae00,4, 0xc58ae80,31, 0xc58af00,1, 0xc58af10,3, 0xc58af20,3, 0xc58af30,3, 0xc58af40,1, 0xc58af48,3, 0xc58b000,4, 0xc58b040,13, 0xc58b080,1, 0xc58b200,15, 0xc58b240,4, 0xc58b260,17, 0xc58b2c0,6, 0xc58b2e0,2, 0xc58b2ec,3, 0xc58b300,8, 0xc58b324,8, 0xc58b400,68, 0xc58b600,60, 0xc58b700,4, 0xc58b720,5, 0xc58b740,1, 0xc58b780,2, 0xc58b78c,2, 0xc58b7a0,1, 0xc58b7c0,12, 0xc58b800,7, 0xc58b820,5, 0xc58b900,49, 0xc58ba00,1, 0xc58ba08,23, 0xc58ba84,1, 0xc58ba8c,1, 0xc58ba94,1, 0xc58ba9c,2, 0xc58bac0,1, 0xc58bc00,10, 0xc58bc40,1, 0xc58bc50,3, 0xc58bc80,10, 0xc58bcc0,12, 0xc58bd00,3, 0xc58be00,1, 0xc58c000,20, 0xc58c080,3, 0xc58c090,1, 0xc58c098,4, 0xc590000,49, 0xc590100,12, 0xc590140,4, 0xc590184,1, 0xc590198,2, 0xc5901a4,1, 0xc5901b8,7, 0xc5901e0,4, 0xc590200,20, 0xc590280,3, 0xc590290,9, 0xc5902c0,6, 0xc5902e0,1, 0xc5902e8,7, 0xc590400,49, 0xc590500,12, 0xc590540,4, 0xc590584,1, 0xc590598,2, 0xc5905a4,1, 0xc5905b8,7, 0xc5905e0,4, 0xc590600,20, 0xc590680,3, 0xc590690,9, 0xc5906c0,6, 0xc5906e0,1, 0xc5906e8,7, 0xc590800,49, 0xc590900,12, 0xc590940,4, 0xc590984,1, 0xc590998,2, 0xc5909a4,1, 0xc5909b8,7, 0xc5909e0,4, 0xc590a00,20, 0xc590a80,3, 0xc590a90,9, 0xc590ac0,6, 0xc590ae0,1, 0xc590ae8,7, 0xc590c00,49, 0xc590d00,12, 0xc590d40,4, 0xc590d84,1, 0xc590d98,2, 0xc590da4,1, 0xc590db8,7, 0xc590de0,4, 0xc590e00,20, 0xc590e80,3, 0xc590e90,9, 0xc590ec0,6, 0xc590ee0,1, 0xc590ee8,7, 0xc591000,49, 0xc591100,12, 0xc591140,4, 0xc591184,1, 0xc591198,2, 0xc5911a4,1, 0xc5911b8,7, 0xc5911e0,4, 0xc591200,20, 0xc591280,3, 0xc591290,9, 0xc5912c0,6, 0xc5912e0,1, 0xc5912e8,7, 0xc591400,49, 0xc591500,12, 0xc591540,4, 0xc591584,1, 0xc591598,2, 0xc5915a4,1, 0xc5915b8,7, 0xc5915e0,4, 0xc591600,20, 0xc591680,3, 0xc591690,9, 0xc5916c0,6, 0xc5916e0,1, 0xc5916e8,7, 0xc591800,49, 0xc591900,12, 0xc591940,4, 0xc591984,1, 0xc591998,2, 0xc5919a4,1, 0xc5919b8,7, 0xc5919e0,4, 0xc591a00,20, 0xc591a80,3, 0xc591a90,9, 0xc591ac0,6, 0xc591ae0,1, 0xc591ae8,7, 0xc592000,20, 0xc592080,10, 0xc592100,20, 0xc592180,10, 0xc592200,12, 0xc592400,20, 0xc592480,10, 0xc592500,20, 0xc592580,10, 0xc592600,12, 0xc592800,3, 0xc592840,12, 0xc592880,12, 0xc5928c0,12, 0xc592900,12, 0xc592940,12, 0xc592980,12, 0xc5929c0,12, 0xc592a00,12, 0xc592c00,12, 0xc592c40,7, 0xc592c60,10, 0xc593004,1, 0xc593044,43, 0xc593100,7, 0xc593120,7, 0xc593140,2, 0xc59314c,2, 0xc593160,2, 0xc59316c,2, 0xc593180,18, 0xc593200,2, 0xc593220,10, 0xc593260,20, 0xc5932c0,9, 0xc593300,15, 0xc593340,9, 0xc593380,6, 0xc5933a0,4, 0xc593400,5, 0xc594000,53, 0xc594100,3, 0xc594110,15, 0xc594200,53, 0xc594300,3, 0xc594310,15, 0xc594400,5, 0xc594420,5, 0xc594440,18, 0xc594800,3, 0xc594810,2, 0xc594820,3, 0xc594830,2, 0xc594840,1, 0xc595000,7, 0xc595020,7, 0xc595080,19, 0xc595100,19, 0xc595180,25, 0xc595200,20, 0xc595280,20, 0xc595300,8, 0xc595340,4, 0xc595380,15, 0xc5953c0,15, 0xc595400,9, 0xc595430,5, 0xc596000,6, 0xc596020,1, 0xc596028,2, 0xc596040,11, 0xc596070,2, 0xc598000,82, 0xc598200,2, 0xc598240,9, 0xc598280,7, 0xc598400,82, 0xc598604,6, 0xc598700,15, 0xc598740,9, 0xc598780,6, 0xc5987a0,6, 0xc598800,2, 0xc598810,3, 0xc598880,24, 0xc5988e4,1, 0xc5988f0,12, 0xc5a0000,22, 0xc5a0080,22, 0xc5a0100,5, 0xc5a0120,5, 0xc5a0140,3, 0xc5a0160,16, 0xc5a01c0,7, 0xc5a01e0,2, 0xc5a0200,7, 0xc5a0220,2, 0xc5a0400,15, 0xc5a0440,3, 0xc5a0450,3, 0xc5a0460,24, 0xc5a0500,15, 0xc5a0540,3, 0xc5a0550,3, 0xc5a0560,24, 0xc5a0600,15, 0xc5a0640,3, 0xc5a0650,3, 0xc5a0660,24, 0xc5a0700,15, 0xc5a0740,3, 0xc5a0750,3, 0xc5a0760,24, 0xc5a0800,4, 0xc5a0820,16, 0xc5a0880,10, 0xc5a08c0,10, 0xc5a0900,6, 0xc5a0920,6, 0xc5a0940,4, 0xc5a0980,13, 0xc5a09c0,13, 0xc5a0a00,9, 0xc5a1000,86, 0xc5a1200,2, 0xc5a1240,9, 0xc5a1280,7, 0xc5a1400,86, 0xc5a1604,6, 0xc5a1800,86, 0xc5a1a00,2, 0xc5a1a40,9, 0xc5a1a80,7, 0xc5a1c00,86, 0xc5a1e04,6, 0xc5a2000,15, 0xc5a2040,4, 0xc5a2060,17, 0xc5a20c0,6, 0xc5a20e0,4, 0xc5a20f4,11, 0xc5a2128,38, 0xc5a21c4,2, 0xc5a21d0,4, 0xc5a2200,1, 0xc5a4000,22, 0xc5a4080,22, 0xc5a4100,5, 0xc5a4120,5, 0xc5a4140,3, 0xc5a4160,16, 0xc5a41c0,7, 0xc5a41e0,2, 0xc5a4200,7, 0xc5a4220,2, 0xc5a4400,15, 0xc5a4440,3, 0xc5a4450,3, 0xc5a4460,24, 0xc5a4500,15, 0xc5a4540,3, 0xc5a4550,3, 0xc5a4560,24, 0xc5a4600,15, 0xc5a4640,3, 0xc5a4650,3, 0xc5a4660,24, 0xc5a4700,15, 0xc5a4740,3, 0xc5a4750,3, 0xc5a4760,24, 0xc5a4800,4, 0xc5a4820,16, 0xc5a4880,10, 0xc5a48c0,10, 0xc5a4900,6, 0xc5a4920,6, 0xc5a4940,4, 0xc5a4980,13, 0xc5a49c0,13, 0xc5a4a00,9, 0xc5a5000,86, 0xc5a5200,2, 0xc5a5240,9, 0xc5a5280,7, 0xc5a5400,86, 0xc5a5604,6, 0xc5a5800,86, 0xc5a5a00,2, 0xc5a5a40,9, 0xc5a5a80,7, 0xc5a5c00,86, 0xc5a5e04,6, 0xc5a6000,15, 0xc5a6040,4, 0xc5a6060,17, 0xc5a60c0,6, 0xc5a60e0,4, 0xc5a60f4,11, 0xc5a6128,38, 0xc5a61c4,2, 0xc5a61d0,4, 0xc5a6200,1, 0xc5a8000,9, 0xc5a8040,9, 0xc5a8080,5, 0xc5a8100,21, 0xc5a8160,5, 0xc5a8180,45, 0xc5a8240,13, 0xc5a8280,9, 0xc5a8400,9, 0xc5a8440,9, 0xc5a8480,5, 0xc5a8500,21, 0xc5a8560,5, 0xc5a8580,45, 0xc5a8640,13, 0xc5a8680,9, 0xc5a8800,12, 0xc5a8900,15, 0xc5a8940,4, 0xc5a8960,17, 0xc5a89c0,6, 0xc5a89e0,4, 0xc5a89f4,29, 0xc5ac000,30, 0xc5ac080,3, 0xc5ac090,19, 0xc5ac100,30, 0xc5ac180,3, 0xc5ac190,19, 0xc5ac200,30, 0xc5ac280,3, 0xc5ac290,19, 0xc5ac300,30, 0xc5ac380,3, 0xc5ac390,19, 0xc5ac400,30, 0xc5ac480,3, 0xc5ac490,19, 0xc5ac500,30, 0xc5ac580,3, 0xc5ac590,19, 0xc5ac600,30, 0xc5ac680,3, 0xc5ac690,19, 0xc5ac700,30, 0xc5ac780,3, 0xc5ac790,19, 0xc5ac800,12, 0xc5ac844,1, 0xc5ac854,8, 0xc5ac880,7, 0xc5ac8a0,2, 0xc5ac8ac,2, 0xc5ac8c0,26, 0xc5ac980,4, 0xc5ac9a0,5, 0xc5ac9c0,1, 0xc5ad000,3, 0xc5ad010,3, 0xc5ad020,3, 0xc5ad030,3, 0xc5ad040,3, 0xc5ad050,3, 0xc5ad060,3, 0xc5ad070,3, 0xc5ad080,6, 0xc5ad0a0,6, 0xc5ad0c0,6, 0xc5ad0e0,6, 0xc5ad100,6, 0xc5ad120,6, 0xc5ad140,6, 0xc5ad160,6, 0xc5ad200,68, 0xc5ad400,1, 0xc5ad804,1, 0xc5ad844,54, 0xc5ada00,12, 0xc5ada40,12, 0xc5ada80,12, 0xc5adac0,12, 0xc5adb00,12, 0xc5adb40,12, 0xc5adb80,12, 0xc5adbc0,12, 0xc5adc00,28, 0xc5adc80,10, 0xc5ae000,3, 0xc5ae020,6, 0xc5ae040,6, 0xc5ae060,15, 0xc5ae100,26, 0xc5ae180,15, 0xc5ae200,15, 0xc5ae240,4, 0xc5ae260,17, 0xc5ae2c0,6, 0xc5ae2e0,4, 0xc5ae2f4,18, 0xc5ae340,4, 0xc5ae360,17, 0xc5ae3c0,6, 0xc5ae3e0,4, 0xc5ae3f4,15, 0xc5b0000,1, 0xc5b1000,1020, 0xc5b2000,194, 0xc5b3000,1020, 0xc5b4000,1020, 0xc5b5000,1020, 0xc5b6000,1020, 0xc5b7000,1020, 0xc5b8000,1020, 0xc5b9000,1020, 0xc5ba000,1020, 0xc5bb000,194, 0xc5bc000,3, 0xc5bc010,13, 0xc5bc080,16, 0xc5bc100,20, 0xc5bc184,1, 0xc5bc18c,4, 0xc5bc200,3, 0xc5bc210,13, 0xc5bc280,16, 0xc5bc300,20, 0xc5bc384,1, 0xc5bc38c,4, 0xc5bc400,3, 0xc5bc410,13, 0xc5bc480,16, 0xc5bc500,20, 0xc5bc584,1, 0xc5bc58c,4, 0xc5bc600,3, 0xc5bc610,13, 0xc5bc680,16, 0xc5bc700,20, 0xc5bc784,1, 0xc5bc78c,4, 0xc5bc800,3, 0xc5bc810,13, 0xc5bc880,16, 0xc5bc900,20, 0xc5bc984,1, 0xc5bc98c,4, 0xc5bca00,3, 0xc5bca10,13, 0xc5bca80,16, 0xc5bcb00,20, 0xc5bcb84,1, 0xc5bcb8c,4, 0xc5bcc00,3, 0xc5bcc10,13, 0xc5bcc80,16, 0xc5bcd00,20, 0xc5bcd84,1, 0xc5bcd8c,4, 0xc5bce00,3, 0xc5bce10,13, 0xc5bce80,16, 0xc5bcf00,20, 0xc5bcf84,1, 0xc5bcf8c,4, 0xc5bd000,3, 0xc5bd010,13, 0xc5bd080,16, 0xc5bd100,20, 0xc5bd184,1, 0xc5bd18c,4, 0xc5bd200,18, 0xc5bd250,2, 0xc5bd260,4, 0xc5be000,1, 0xc5be014,1, 0xc5be01c,19, 0xc5be080,1, 0xc5be094,1, 0xc5be09c,19, 0xc5be100,8, 0xc5be200,13, 0xc5be240,9, 0xc5be280,12, 0xc5be2c0,2, 0xc5be2e0,12, 0xc5c0000,3, 0xc5c0080,20, 0xc5c0100,10, 0xc5c0140,1, 0xc5c0154,1, 0xc5c015c,2, 0xc5c0200,15, 0xc5c0240,4, 0xc5c0260,17, 0xc5c02c0,6, 0xc5c02e0,2, 0xc5c02ec,3, 0xc5c0300,8, 0xc5c0324,1, 0xc5c0400,4, 0xc5c0440,20, 0xc5c04c0,9, 0xc5c0500,33, 0xc5c0600,11, 0xc5c0640,11, 0xc5c0680,1, 0xc5c2000,1, 0xc5c2200,4, 0xc5c2300,53, 0xc5c2400,4, 0xc5c2500,40, 0xc5c2600,15, 0xc5c2640,4, 0xc5c2660,17, 0xc5c26c0,6, 0xc5c26e0,2, 0xc5c26ec,3, 0xc5c2700,8, 0xc5c2724,1, 0xc5c2800,20, 0xc5c2c00,53, 0xc5c2d00,53, 0xc5c2e00,1, 0xc5c3000,40, 0xc5c3100,40, 0xc5c3200,1, 0xc5c3400,1, 0xc5c3804,1, 0xc5c3844,39, 0xc5c3900,3, 0xc5c3a00,3, 0xc5c3a44,1, 0xc5c3a50,4, 0xc5c3a80,1, 0xc5c4000,2, 0xc5c4200,27, 0xc5c4280,4, 0xc5c42c0,25, 0xc5c4340,6, 0xc5c4360,2, 0xc5c436c,3, 0xc5c4380,8, 0xc5c43a4,1, 0xc5c4400,12, 0xc5c4440,1, 0xc5c8000,3, 0xc5c8080,20, 0xc5c8100,10, 0xc5c8140,1, 0xc5c8154,1, 0xc5c815c,2, 0xc5c8200,15, 0xc5c8240,4, 0xc5c8260,17, 0xc5c82c0,6, 0xc5c82e0,2, 0xc5c82ec,3, 0xc5c8300,8, 0xc5c8324,1, 0xc5c8400,4, 0xc5c8440,20, 0xc5c84c0,9, 0xc5c8500,33, 0xc5c8600,11, 0xc5c8640,11, 0xc5c8680,1, 0xc5ca000,1, 0xc5ca200,4, 0xc5ca300,53, 0xc5ca400,4, 0xc5ca500,40, 0xc5ca600,15, 0xc5ca640,4, 0xc5ca660,17, 0xc5ca6c0,6, 0xc5ca6e0,2, 0xc5ca6ec,3, 0xc5ca700,8, 0xc5ca724,1, 0xc5ca800,20, 0xc5cac00,53, 0xc5cad00,53, 0xc5cae00,1, 0xc5cb000,40, 0xc5cb100,40, 0xc5cb200,1, 0xc5cb400,1, 0xc5cb804,1, 0xc5cb844,39, 0xc5cb900,3, 0xc5cba00,3, 0xc5cba44,1, 0xc5cba50,4, 0xc5cba80,1, 0xc5cc000,2, 0xc5cc200,27, 0xc5cc280,4, 0xc5cc2c0,25, 0xc5cc340,6, 0xc5cc360,2, 0xc5cc36c,3, 0xc5cc380,8, 0xc5cc3a4,1, 0xc5cc400,12, 0xc5cc440,1, 0xc5d0000,4, 0xc5d0020,3, 0xc5d0030,2, 0xc5d0200,1, 0xc5d0224,10, 0xc5d0250,5, 0xc5d0280,1, 0xc5d0288,24, 0xc5d0300,3, 0xc5d0404,1, 0xc5d0414,5, 0xc5d0500,36, 0xc5d0600,3, 0xc5d0800,2, 0xc5d1000,1, 0xc5d1008,21, 0xc5d1080,1, 0xc5d1088,21, 0xc5d1100,1, 0xc5d1108,21, 0xc5d1180,1, 0xc5d1188,21, 0xc5d1200,1, 0xc5d1208,21, 0xc5d1280,1, 0xc5d1288,21, 0xc5d1300,1, 0xc5d1308,21, 0xc5d1380,1, 0xc5d1388,21, 0xc5d1400,21, 0xc5d1800,142, 0xc5d1c00,1, 0xc5d2000,4, 0xc5d2100,39, 0xc5d2200,3, 0xc5d2214,3, 0xc5d4004,1, 0xc5d4020,16, 0xc5d4080,2, 0xc5d4094,1, 0xc5d409c,2, 0xc5d40c0,6, 0xc5d4100,8, 0xc5d8004,17, 0xc5d8054,1, 0xc5d805c,2, 0xc5d8080,1, 0xc5d80a0,2, 0xc5d80b4,4, 0xc5d8100,2, 0xc5d8200,8, 0xc5d8400,1, 0xc5d8600,27, 0xc5d8680,4, 0xc5d86c0,25, 0xc5d8740,6, 0xc5d8760,2, 0xc5d876c,3, 0xc5d8780,8, 0xc5d87a4,3, 0xc5d8800,44, 0xc5d8900,1, 0xc5e0000,1, 0xc5e0200,27, 0xc5e0280,4, 0xc5e02c0,25, 0xc5e0340,6, 0xc5e0360,2, 0xc5e036c,3, 0xc5e0380,8, 0xc5e03a4,1, 0xc5e0400,20, 0xc5e0480,3, 0xc5e0490,9, 0xc802000,49, 0xc802100,12, 0xc802140,4, 0xc802184,1, 0xc802198,2, 0xc8021a4,1, 0xc8021b8,7, 0xc8021e0,4, 0xc802200,20, 0xc802280,3, 0xc802290,9, 0xc8022c0,6, 0xc8022e0,1, 0xc8022e8,7, 0xc802400,49, 0xc802500,12, 0xc802540,4, 0xc802584,1, 0xc802598,2, 0xc8025a4,1, 0xc8025b8,7, 0xc8025e0,4, 0xc802600,20, 0xc802680,3, 0xc802690,9, 0xc8026c0,6, 0xc8026e0,1, 0xc8026e8,7, 0xc802800,7, 0xc802820,3, 0xc802830,11, 0xc802860,14, 0xc802900,9, 0xc802a00,7, 0xc802a20,9, 0xc802a80,2, 0xc802c00,27, 0xc802c80,9, 0xc802cc0,6, 0xc802ce0,4, 0xc802d00,5, 0xc802d18,5, 0xc802d30,9, 0xc802d58,5, 0xc802d70,7, 0xc802e00,6, 0xc802e20,6, 0xc802e40,6, 0xc802e60,6, 0xc802e80,6, 0xc802ea0,6, 0xc802ec0,6, 0xc802ee0,6, 0xc802f00,6, 0xc802f20,6, 0xc802f40,6, 0xc802f60,6, 0xc802f80,6, 0xc802fa0,6, 0xc802fc0,6, 0xc802fe0,6, 0xc803000,28, 0xc803080,6, 0xc840000,3, 0xc84001c,6, 0xc840080,3, 0xc840090,1, 0xc8400d0,3, 0xc8400e4,25, 0xc84014c,21, 0xc8401a4,12, 0xc8401d8,72, 0xc840304,5, 0xc84031c,98, 0xc8404ac,4, 0xc8404c8,20, 0xc840520,56, 0xc840608,21, 0xc840664,3, 0xc840674,22, 0xc840710,1, 0xc840750,3, 0xc840764,25, 0xc8407cc,21, 0xc840824,12, 0xc840858,72, 0xc840984,5, 0xc84099c,98, 0xc840b2c,4, 0xc840b48,20, 0xc840ba0,56, 0xc840c88,21, 0xc840ce4,3, 0xc840cf4,22, 0xc840d90,1, 0xc840dd0,3, 0xc840de4,25, 0xc840e4c,21, 0xc840ea4,12, 0xc840ed8,72, 0xc841004,5, 0xc84101c,98, 0xc8411ac,4, 0xc8411c8,20, 0xc841220,56, 0xc841308,21, 0xc841364,3, 0xc841374,22, 0xc841410,1, 0xc841450,3, 0xc841464,25, 0xc8414cc,21, 0xc841524,12, 0xc841558,72, 0xc841684,5, 0xc84169c,98, 0xc84182c,4, 0xc841848,20, 0xc8418a0,56, 0xc841988,21, 0xc8419e4,3, 0xc8419f4,22, 0xc841a90,1, 0xc841ad0,3, 0xc841ae4,25, 0xc841b4c,21, 0xc841ba4,12, 0xc841bd8,72, 0xc841d04,5, 0xc841d1c,98, 0xc841eac,4, 0xc841ec8,20, 0xc841f20,56, 0xc842008,21, 0xc842064,3, 0xc842074,22, 0xc842110,1, 0xc842150,3, 0xc842164,25, 0xc8421cc,21, 0xc842224,12, 0xc842258,72, 0xc842384,5, 0xc84239c,98, 0xc84252c,4, 0xc842548,20, 0xc8425a0,56, 0xc842688,21, 0xc8426e4,3, 0xc8426f4,22, 0xc842790,1, 0xc8427d0,3, 0xc8427e4,25, 0xc84284c,21, 0xc8428a4,12, 0xc8428d8,72, 0xc842a04,5, 0xc842a1c,98, 0xc842bac,4, 0xc842bc8,20, 0xc842c20,56, 0xc842d08,21, 0xc842d64,3, 0xc842d74,22, 0xc842e10,1, 0xc842e50,3, 0xc842e64,25, 0xc842ecc,21, 0xc842f24,12, 0xc842f58,72, 0xc843084,5, 0xc84309c,98, 0xc84322c,4, 0xc843248,20, 0xc8432a0,56, 0xc843388,21, 0xc8433e4,3, 0xc8433f4,22, 0xc843490,1, 0xc8434d0,3, 0xc8434e4,25, 0xc84354c,21, 0xc8435a4,12, 0xc8435d8,72, 0xc843704,5, 0xc84371c,98, 0xc8438ac,4, 0xc8438c8,20, 0xc843920,56, 0xc843a08,21, 0xc843a64,3, 0xc843a74,22, 0xc843b10,1, 0xc843b50,3, 0xc843b64,25, 0xc843bcc,21, 0xc843c24,12, 0xc843c58,72, 0xc843d84,5, 0xc843d9c,98, 0xc843f2c,4, 0xc843f48,20, 0xc843fa0,56, 0xc844088,21, 0xc8440e4,3, 0xc8440f4,22, 0xc844190,1, 0xc8441d0,3, 0xc8441e4,25, 0xc84424c,21, 0xc8442a4,12, 0xc8442d8,72, 0xc844404,5, 0xc84441c,98, 0xc8445ac,4, 0xc8445c8,20, 0xc844620,56, 0xc844708,21, 0xc844764,3, 0xc844774,22, 0xc844810,1, 0xc844850,3, 0xc844864,25, 0xc8448cc,21, 0xc844924,12, 0xc844958,72, 0xc844a84,5, 0xc844a9c,98, 0xc844c2c,4, 0xc844c48,20, 0xc844ca0,56, 0xc844d88,21, 0xc844de4,3, 0xc844df4,22, 0xc844e90,1, 0xc844ed0,3, 0xc844ee4,25, 0xc844f4c,21, 0xc844fa4,12, 0xc844fd8,72, 0xc845104,5, 0xc84511c,98, 0xc8452ac,4, 0xc8452c8,20, 0xc845320,56, 0xc845408,21, 0xc845464,3, 0xc845474,22, 0xc845510,1, 0xc845550,3, 0xc845564,25, 0xc8455cc,21, 0xc845624,12, 0xc845658,72, 0xc845784,5, 0xc84579c,98, 0xc84592c,4, 0xc845948,20, 0xc8459a0,56, 0xc845a88,21, 0xc845ae4,3, 0xc845af4,22, 0xc845b90,1, 0xc845bd0,3, 0xc845be4,25, 0xc845c4c,21, 0xc845ca4,12, 0xc845cd8,72, 0xc845e04,5, 0xc845e1c,98, 0xc845fac,4, 0xc845fc8,20, 0xc846020,56, 0xc846108,21, 0xc846164,3, 0xc846174,22, 0xc846210,1, 0xc846250,3, 0xc846264,25, 0xc8462cc,21, 0xc846324,12, 0xc846358,72, 0xc846484,5, 0xc84649c,98, 0xc84662c,4, 0xc846648,20, 0xc8466a0,56, 0xc846788,21, 0xc8467e4,3, 0xc8467f4,22, 0xc846890,1, 0xc8468d0,3, 0xc8468e4,25, 0xc84694c,21, 0xc8469a4,12, 0xc8469d8,72, 0xc846b04,5, 0xc846b1c,98, 0xc846cac,4, 0xc846cc8,20, 0xc846d20,56, 0xc846e08,21, 0xc846e64,3, 0xc846e74,22, 0xc846f10,1, 0xc846f50,3, 0xc846f64,25, 0xc846fcc,21, 0xc847024,12, 0xc847058,72, 0xc847184,5, 0xc84719c,98, 0xc84732c,4, 0xc847348,20, 0xc8473a0,56, 0xc847488,21, 0xc8474e4,3, 0xc8474f4,22, 0xc847590,1, 0xc8475d0,3, 0xc8475e4,25, 0xc84764c,21, 0xc8476a4,12, 0xc8476d8,72, 0xc847804,5, 0xc84781c,98, 0xc8479ac,4, 0xc8479c8,20, 0xc847a20,56, 0xc847b08,21, 0xc847b64,3, 0xc847b74,22, 0xc847c10,1, 0xc847c50,3, 0xc847c64,25, 0xc847ccc,21, 0xc847d24,12, 0xc847d58,72, 0xc847e84,5, 0xc847e9c,98, 0xc84802c,4, 0xc848048,20, 0xc8480a0,56, 0xc848188,21, 0xc8481e4,3, 0xc8481f4,22, 0xc848290,1, 0xc8482d0,3, 0xc8482e4,25, 0xc84834c,21, 0xc8483a4,12, 0xc8483d8,72, 0xc848504,5, 0xc84851c,98, 0xc8486ac,4, 0xc8486c8,20, 0xc848720,56, 0xc848808,21, 0xc848864,3, 0xc848874,22, 0xc848910,1, 0xc848950,3, 0xc848964,25, 0xc8489cc,21, 0xc848a24,12, 0xc848a58,72, 0xc848b84,5, 0xc848b9c,98, 0xc848d2c,4, 0xc848d48,20, 0xc848da0,56, 0xc848e88,21, 0xc848ee4,3, 0xc848ef4,22, 0xc848f90,1, 0xc848fd0,3, 0xc848fe4,25, 0xc84904c,21, 0xc8490a4,12, 0xc8490d8,72, 0xc849204,5, 0xc84921c,98, 0xc8493ac,4, 0xc8493c8,20, 0xc849420,56, 0xc849508,21, 0xc849564,3, 0xc849574,22, 0xc849610,1, 0xc849650,3, 0xc849664,25, 0xc8496cc,21, 0xc849724,12, 0xc849758,72, 0xc849884,5, 0xc84989c,98, 0xc849a2c,4, 0xc849a48,20, 0xc849aa0,56, 0xc849b88,21, 0xc849be4,3, 0xc849bf4,22, 0xc849c90,1, 0xc849cd0,3, 0xc849ce4,25, 0xc849d4c,21, 0xc849da4,12, 0xc849dd8,72, 0xc849f04,5, 0xc849f1c,98, 0xc84a0ac,4, 0xc84a0c8,20, 0xc84a120,56, 0xc84a208,21, 0xc84a264,3, 0xc84a274,22, 0xc84a310,1, 0xc84a350,3, 0xc84a364,25, 0xc84a3cc,21, 0xc84a424,12, 0xc84a458,72, 0xc84a584,5, 0xc84a59c,98, 0xc84a72c,4, 0xc84a748,20, 0xc84a7a0,56, 0xc84a888,21, 0xc84a8e4,3, 0xc84a8f4,22, 0xc84a990,1, 0xc84a9d0,3, 0xc84a9e4,25, 0xc84aa4c,21, 0xc84aaa4,12, 0xc84aad8,72, 0xc84ac04,5, 0xc84ac1c,98, 0xc84adac,4, 0xc84adc8,20, 0xc84ae20,56, 0xc84af08,21, 0xc84af64,3, 0xc84af74,22, 0xc84b010,1, 0xc84b050,3, 0xc84b064,25, 0xc84b0cc,21, 0xc84b124,12, 0xc84b158,72, 0xc84b284,5, 0xc84b29c,98, 0xc84b42c,4, 0xc84b448,20, 0xc84b4a0,56, 0xc84b588,21, 0xc84b5e4,3, 0xc84b5f4,22, 0xc84b690,1, 0xc84b6d0,3, 0xc84b6e4,25, 0xc84b74c,21, 0xc84b7a4,12, 0xc84b7d8,72, 0xc84b904,5, 0xc84b91c,98, 0xc84baac,4, 0xc84bac8,20, 0xc84bb20,56, 0xc84bc08,21, 0xc84bc64,3, 0xc84bc74,22, 0xc84bd10,1, 0xc84bd50,3, 0xc84bd64,25, 0xc84bdcc,21, 0xc84be24,12, 0xc84be58,72, 0xc84bf84,5, 0xc84bf9c,98, 0xc84c12c,4, 0xc84c148,20, 0xc84c1a0,56, 0xc84c288,21, 0xc84c2e4,3, 0xc84c2f4,22, 0xc84c390,1, 0xc84c3d0,3, 0xc84c3e4,25, 0xc84c44c,21, 0xc84c4a4,12, 0xc84c4d8,72, 0xc84c604,5, 0xc84c61c,98, 0xc84c7ac,4, 0xc84c7c8,20, 0xc84c820,56, 0xc84c908,21, 0xc84c964,3, 0xc84c974,22, 0xc84ca10,1, 0xc84ca50,3, 0xc84ca64,25, 0xc84cacc,21, 0xc84cb24,12, 0xc84cb58,72, 0xc84cc84,5, 0xc84cc9c,98, 0xc84ce2c,4, 0xc84ce48,20, 0xc84cea0,56, 0xc84cf88,21, 0xc84cfe4,3, 0xc84cff4,22, 0xc84d090,1, 0xc84d0d0,3, 0xc84d0e4,25, 0xc84d14c,21, 0xc84d1a4,12, 0xc84d1d8,72, 0xc84d304,5, 0xc84d31c,98, 0xc84d4ac,4, 0xc84d4c8,20, 0xc84d520,56, 0xc84d608,21, 0xc84d664,3, 0xc84d674,22, 0xc84d710,1, 0xc84d750,3, 0xc84d764,25, 0xc84d7cc,21, 0xc84d824,12, 0xc84d858,72, 0xc84d984,5, 0xc84d99c,98, 0xc84db2c,4, 0xc84db48,20, 0xc84dba0,56, 0xc84dc88,21, 0xc84dce4,3, 0xc84dcf4,22, 0xc84dd90,1, 0xc84ddd0,3, 0xc84dde4,25, 0xc84de4c,21, 0xc84dea4,12, 0xc84ded8,72, 0xc84e004,5, 0xc84e01c,98, 0xc84e1ac,4, 0xc84e1c8,20, 0xc84e220,56, 0xc84e308,21, 0xc84e364,3, 0xc84e374,22, 0xc84e410,2, 0xc84e454,72, 0xc84e760,3, 0xc84e7ac,42, 0xc84e85c,31, 0xc84e990,54, 0xc84ea70,58, 0xc84eb60,58, 0xc84ec50,58, 0xc84ed40,58, 0xc84ee30,58, 0xc84ef20,58, 0xc84f010,58, 0xc84f100,58, 0xc84f1f0,58, 0xc84f2e0,58, 0xc84f3d0,58, 0xc84f4c0,58, 0xc84f5b0,58, 0xc84f6a0,58, 0xc84f790,58, 0xc84f880,58, 0xc84f970,58, 0xc84fa60,58, 0xc84fb50,58, 0xc84fc40,58, 0xc84fd30,58, 0xc84fe20,58, 0xc84ff10,58, 0xc850000,58, 0xc8500f0,58, 0xc8501e0,58, 0xc8502d0,58, 0xc8503c0,58, 0xc8504b0,58, 0xc8505a0,58, 0xc850690,58, 0xc850780,101, 0xc850990,49, 0xc850a90,18, 0xc850ae0,11, 0xc850b10,4, 0xc850b34,45, 0xc850c38,9, 0xc850c68,4, 0xc850c80,2, 0xc850cb8,14, 0xc850cf4,12, 0xc850e38,3, 0xc850e48,2, 0xc850e54,68, 0xc850f68,2, 0xc850f74,68, 0xc851088,1, 0xc851090,2, 0xc85109c,68, 0xc8511b0,2, 0xc8511bc,68, 0xc8512d0,1, 0xc8512d8,4, 0xc8512f0,3, 0xc851304,4, 0xc851318,7, 0xc851368,8, 0xc8513bc,1, 0xc8513c8,4, 0xc8513e0,3, 0xc8513f4,4, 0xc851408,7, 0xc851458,8, 0xc8514ac,1, 0xc8514b8,4, 0xc8514d0,3, 0xc8514e4,4, 0xc8514f8,7, 0xc851548,8, 0xc85159c,1, 0xc8515a8,4, 0xc8515c0,3, 0xc8515d4,4, 0xc8515e8,7, 0xc851638,8, 0xc85168c,1, 0xc851698,4, 0xc8516b0,3, 0xc8516c4,4, 0xc8516d8,7, 0xc851728,8, 0xc85177c,1, 0xc851788,4, 0xc8517a0,3, 0xc8517b4,4, 0xc8517c8,7, 0xc851818,8, 0xc85186c,1, 0xc851878,4, 0xc851890,3, 0xc8518a4,4, 0xc8518b8,7, 0xc851908,8, 0xc85195c,1, 0xc851968,4, 0xc851980,3, 0xc851994,4, 0xc8519a8,7, 0xc8519f8,8, 0xc851a4c,1, 0xc851a58,4, 0xc851a70,3, 0xc851a84,4, 0xc851a98,7, 0xc851ae8,8, 0xc851b3c,1, 0xc851b48,4, 0xc851b60,3, 0xc851b74,4, 0xc851b88,7, 0xc851bd8,8, 0xc851c2c,1, 0xc851c38,4, 0xc851c50,3, 0xc851c64,4, 0xc851c78,7, 0xc851cc8,8, 0xc851d1c,1, 0xc851d28,4, 0xc851d40,3, 0xc851d54,4, 0xc851d68,7, 0xc851db8,8, 0xc851e0c,1, 0xc851e18,4, 0xc851e30,3, 0xc851e44,4, 0xc851e58,7, 0xc851ea8,8, 0xc851efc,1, 0xc851f08,4, 0xc851f20,3, 0xc851f34,4, 0xc851f48,7, 0xc851f98,8, 0xc851fec,1, 0xc851ff8,4, 0xc852010,3, 0xc852024,4, 0xc852038,7, 0xc852088,8, 0xc8520dc,1, 0xc8520e8,4, 0xc852100,3, 0xc852114,4, 0xc852128,7, 0xc852178,8, 0xc8521cc,1, 0xc8521d8,4, 0xc8521f0,3, 0xc852204,4, 0xc852218,7, 0xc852268,8, 0xc8522bc,1, 0xc8522c8,64, 0xc852428,4, 0xc852678,27, 0xc8526ec,3, 0xc852778,1, 0xc8528c8,11, 0xc8528f8,17, 0xc852940,1, 0xc852948,1, 0xc852950,1, 0xc852978,36, 0xc852a0c,57, 0xc852af4,34, 0xc852b80,57, 0xc852c68,34, 0xc852cf4,57, 0xc852ddc,34, 0xc852e68,57, 0xc852f50,34, 0xc852fdc,57, 0xc8530c4,34, 0xc853150,57, 0xc853238,34, 0xc8532c4,57, 0xc8533ac,34, 0xc853438,57, 0xc853520,34, 0xc8535ac,57, 0xc853694,34, 0xc853720,57, 0xc853808,34, 0xc853894,57, 0xc85397c,34, 0xc853a08,57, 0xc853af0,34, 0xc853b7c,57, 0xc853c64,34, 0xc853cf0,57, 0xc853dd8,34, 0xc853e64,57, 0xc853f4c,34, 0xc853fd8,57, 0xc8540c0,34, 0xc85414c,57, 0xc854234,34, 0xc8542c0,57, 0xc8543a8,34, 0xc854434,57, 0xc85451c,34, 0xc8545a8,57, 0xc854690,34, 0xc85471c,57, 0xc854804,34, 0xc854890,57, 0xc854978,34, 0xc854a04,57, 0xc854aec,34, 0xc854b78,57, 0xc854c60,34, 0xc854cec,57, 0xc854dd4,34, 0xc854e60,57, 0xc854f48,34, 0xc854fd4,57, 0xc8550bc,34, 0xc855148,57, 0xc855230,34, 0xc8552bc,57, 0xc8553a4,34, 0xc855430,57, 0xc855518,34, 0xc8555a4,57, 0xc85568c,34, 0xc855718,57, 0xc855800,34, 0xc85588c,57, 0xc855974,34, 0xc855a00,57, 0xc855ae8,34, 0xc855b74,57, 0xc855d68,18, 0xc855ee8,2131, 0xc85830c,164, 0xc85865c,1, 0xc8591e8,1, 0xc8591f8,225, 0xc859588,7, 0xc8595a8,1, 0xc859670,1, 0xc8596a0,9, 0xc8596c8,17, 0xc859720,49, 0xc8597e8,5, 0xc859858,1, 0xc85a1e8,4, 0xc85a200,9, 0xc85a228,144, 0xc85a528,8, 0xc8a0000,3, 0xc8a0018,2, 0xc8a0024,14, 0xc8a0060,27, 0xc8a00d0,3, 0xc8a00e0,3, 0xc8a00f0,3, 0xc8a0100,14, 0xc8a0140,3, 0xc8a0150,1, 0xc8a015c,4, 0xc8a0170,1, 0xc8a0180,15, 0xc8a01c0,1, 0xc8a01c8,5, 0xc8a01e0,1, 0xc8a01f0,7, 0xc8a0218,2, 0xc8a0224,14, 0xc8a0260,27, 0xc8a02d0,3, 0xc8a02e0,3, 0xc8a02f0,3, 0xc8a0300,14, 0xc8a0340,3, 0xc8a0350,1, 0xc8a035c,4, 0xc8a0370,1, 0xc8a0380,15, 0xc8a03c0,1, 0xc8a03c8,5, 0xc8a03e0,1, 0xc8a03f0,7, 0xc8a0418,2, 0xc8a0424,14, 0xc8a0460,27, 0xc8a04d0,3, 0xc8a04e0,3, 0xc8a04f0,3, 0xc8a0500,14, 0xc8a0540,3, 0xc8a0550,1, 0xc8a055c,4, 0xc8a0570,1, 0xc8a0580,15, 0xc8a05c0,1, 0xc8a05c8,5, 0xc8a05e0,1, 0xc8a05f0,7, 0xc8a0618,2, 0xc8a0624,14, 0xc8a0660,27, 0xc8a06d0,3, 0xc8a06e0,3, 0xc8a06f0,3, 0xc8a0700,14, 0xc8a0740,3, 0xc8a0750,1, 0xc8a075c,4, 0xc8a0770,1, 0xc8a0780,15, 0xc8a07c0,1, 0xc8a07c8,5, 0xc8a07e0,1, 0xc8a07f0,7, 0xc8a0818,2, 0xc8a0824,14, 0xc8a0860,27, 0xc8a08d0,3, 0xc8a08e0,3, 0xc8a08f0,3, 0xc8a0900,14, 0xc8a0940,3, 0xc8a0950,1, 0xc8a095c,4, 0xc8a0970,1, 0xc8a0980,15, 0xc8a09c0,1, 0xc8a09c8,5, 0xc8a09e0,1, 0xc8a09f0,4, 0xc8a1844,1, 0xc8a1850,3, 0xc8a1860,3, 0xc8a1870,7, 0xc8a1894,5, 0xc8a18c0,1, 0xc8a18e0,7, 0xc8a1900,11, 0xc8a1930,3, 0xc8a1980,4, 0xc8a19c0,14, 0xc8a1c00,5, 0xc8a1c18,95, 0xc8a1da0,66, 0xc8a2000,16, 0xc8a2100,36, 0xc8a2200,44, 0xc8a2400,100, 0xc8a2600,45, 0xc8a2700,4, 0xc8a2780,20, 0xc8a2800,2, 0xc8a280c,68, 0xc8a2920,3, 0xc8a2c04,1, 0xc8a2c40,28, 0xc8a2cb4,9, 0xc8a2ce0,7, 0xc8a2d00,7, 0xc8a2d20,7, 0xc8a2d40,7, 0xc8a2d60,7, 0xc8a2d80,7, 0xc8a2da0,7, 0xc8a2dc0,7, 0xc8a2e00,9, 0xc8a2e3c,2, 0xc8a2e50,6, 0xc8a2e84,10, 0xc8a3004,1, 0xc8a31f8,130, 0xc8a3c00,1, 0xc8a3c20,10, 0xc8a3c60,8, 0xc8a3c84,5, 0xc8a3d00,32, 0xc8a3d84,1, 0xc8a3d94,6, 0xc8a3e40,71, 0xc8a4a04,3, 0xc8a4b00,33, 0xc8a4b90,3, 0xc8a4c00,12, 0xc8a4cc0,4, 0xc8a4d00,15, 0xc8a4e00,25, 0xc8a4e84,1, 0xc8a4ea0,13, 0xc8a5000,2, 0xc8a5400,4, 0xc8a5420,8, 0xc8a5444,1, 0xc8a544c,1, 0xc8a5454,1, 0xc8a545c,10, 0xc8a5800,3, 0xc8a5810,3, 0xc8a5820,3, 0xc8a5830,3, 0xc8a5840,3, 0xc8a5850,3, 0xc8a5860,3, 0xc8a5870,3, 0xc8a5880,3, 0xc8a5890,3, 0xc8a58a0,3, 0xc8a58b0,3, 0xc8a58c0,3, 0xc8a58d0,3, 0xc8a58e0,3, 0xc8a58f0,3, 0xc8a5900,3, 0xc8a5910,3, 0xc8a5920,3, 0xc8a5930,3, 0xc8a5940,3, 0xc8a5950,3, 0xc8a5960,3, 0xc8a5970,3, 0xc8a5980,3, 0xc8a5990,3, 0xc8a59a0,3, 0xc8a59b0,3, 0xc8a59c0,3, 0xc8a59d0,3, 0xc8a59e0,3, 0xc8a59f0,3, 0xc8a5a00,3, 0xc8a5a10,3, 0xc8a5a20,3, 0xc8a5a30,3, 0xc8a5a40,3, 0xc8a5a50,3, 0xc8a5a60,3, 0xc8a5a70,3, 0xc8a5a80,3, 0xc8a5a90,3, 0xc8a5aa0,3, 0xc8a5ab0,3, 0xc8a5ac0,3, 0xc8a5ad0,3, 0xc8a5ae0,3, 0xc8a5af0,3, 0xc8a5b00,3, 0xc8a5b10,3, 0xc8a5b20,3, 0xc8a5b30,3, 0xc8a5b40,3, 0xc8a5b50,3, 0xc8a5b60,3, 0xc8a5b70,3, 0xc8a5b80,3, 0xc8a5b90,3, 0xc8a5ba0,3, 0xc8a5bb0,3, 0xc8a5bc0,3, 0xc8a5bd0,3, 0xc8a5be0,3, 0xc8a5bf0,3, 0xc8a5c00,1, 0xc8a5c08,8, 0xc8a5c30,8, 0xc8a5c54,1, 0xc8a5c5c,2, 0xc8a5c68,2, 0xc8a6000,11, 0xc8a6030,1, 0xc8a6080,2, 0xc8a60c4,2, 0xc8a60d0,1, 0xc8a60d8,1, 0xc8a60e0,1, 0xc8a60f4,3, 0xc8a7000,128, 0xc8a7208,256, 0xc8a7610,145, 0xc8a8000,24, 0xc8a8078,1, 0xc8a8080,1, 0xc8f0000,1, 0xc8f000c,12, 0xc8f0040,3, 0xc8f0404,1, 0xc8f0410,6, 0xc8f0440,5, 0xc8f0460,7, 0xc8f0480,7, 0xc8f04a0,7, 0xc8f0520,4, 0xc8f0540,10, 0xc8f0580,10, 0xc8f05c0,3, 0xc8f0600,20, 0xc8f0680,3, 0xc8f0800,5, 0xc8f0a00,29, 0xc8f0a80,3, 0xc8f0c04,1, 0xc8f0d90,188, 0xc8f10a8,8, 0xc8f1100,3, 0xc8f1110,12, 0xc8f1400,1, 0xc8f1480,18, 0xc8f1500,1, 0xc8f1600,2, 0xc8f1610,3, 0xc8f1620,3, 0xc8f1630,3, 0xc8f1640,3, 0xc8f1650,3, 0xc8f1660,3, 0xc8f1670,3, 0xc8f1680,3, 0xc8f1690,3, 0xc8f16a0,3, 0xc8f16b0,3, 0xc8f16c0,3, 0xc8f16d0,3, 0xc8f16e0,3, 0xc8f16f0,3, 0xc8f1700,3, 0xc8f2000,96, 0xc8f2400,2, 0xc8f2410,3, 0xc8f2420,3, 0xc8f2430,3, 0xc8f2440,3, 0xc8f2450,3, 0xc8f2460,3, 0xc8f2470,3, 0xc8f2480,3, 0xc8f2490,3, 0xc8f24a0,3, 0xc8f24b0,3, 0xc8f24c0,3, 0xc8f24d0,3, 0xc8f24e0,3, 0xc8f24f0,3, 0xc8f2500,3, 0xc8f2600,7, 0xc8f2620,3, 0xc8f2630,1, 0xc8f2800,8, 0xc8f2900,2, 0xc8f2910,3, 0xc8f2920,3, 0xc8f2930,3, 0xc8f2940,3, 0xc8f2950,3, 0xc8f2960,3, 0xc8f2970,3, 0xc8f2980,3, 0xc8f2a00,3, 0xc8f3000,15, 0xc8f3040,3, 0xc8f3080,2, 0xc8f30c0,9, 0xc8f3100,1, 0xc8f3200,2, 0xc8f3210,3, 0xc8f3220,3, 0xc8f3230,3, 0xc8f3240,3, 0xc8f3250,3, 0xc8f3260,3, 0xc8f3270,3, 0xc8f3280,3, 0xc8f3300,2, 0xc8f3314,3, 0xc8f3324,3, 0xc8f3334,1, 0xc8f333c,1, 0xc8f3404,1, 0xc8f347c,33, 0xc8f3504,1, 0xc8f350c,1, 0xc8f3580,18, 0xc8f3600,5, 0xc8f3640,9, 0xc8f3680,9, 0xc8f36c0,27, 0xc8f3730,2, 0xc8f3740,9, 0xc8f3780,3, 0xc8f37a0,8, 0xc8f3800,6, 0xc8f3820,7, 0xc8f3840,6, 0xc8f3860,7, 0xc8f3880,3, 0xc8f3890,1, 0xc8f3900,2, 0xc8f4004,1, 0xc8f4080,34, 0xc8f4110,10, 0xc8f413c,3, 0xc8f4204,1, 0xc8f4280,36, 0xc8f4314,1, 0xc8f4400,20, 0xc8f4480,9, 0xc8f4804,1, 0xc8f4880,34, 0xc8f4910,10, 0xc8f493c,3, 0xc8f4a04,1, 0xc8f4a80,36, 0xc8f4b14,1, 0xc8f4c00,20, 0xc8f4c80,9, 0xc8f5004,1, 0xc8f5080,34, 0xc8f5110,10, 0xc8f513c,3, 0xc8f5204,1, 0xc8f5280,36, 0xc8f5314,1, 0xc8f5400,20, 0xc8f5480,9, 0xc8f5800,20, 0xc8f5884,1, 0xc8f588c,1, 0xc8f58c0,12, 0xc8f5900,3, 0xc8f5a00,20, 0xc8f5a84,1, 0xc8f5a8c,1, 0xc8f5ac0,12, 0xc8f5b00,3, 0xc8f5c00,20, 0xc8f5c84,1, 0xc8f5c8c,1, 0xc8f5cc0,12, 0xc8f5d00,3, 0xc8f5e00,7, 0xc8f5e80,20, 0xc8f5f00,12, 0xc8f5f40,11, 0xc8f6004,1, 0xc8f6014,19, 0xc8f6080,5, 0xc8f6100,3, 0xc8f6144,1, 0xc8f6150,4, 0xc8f6180,1, 0xc8f6200,1, 0xc8f6400,2, 0xc8f6410,3, 0xc8f6420,3, 0xc8f6430,3, 0xc8f6440,3, 0xc8f6450,3, 0xc8f6460,3, 0xc8f6470,3, 0xc8f6480,3, 0xc8f6490,3, 0xc8f64a0,3, 0xc8f64b0,3, 0xc8f64c0,3, 0xc8f64d0,3, 0xc8f64e0,3, 0xc8f64f0,3, 0xc8f6500,3, 0xc8f6604,1, 0xc8f6614,3, 0xc8f6640,11, 0xc8f6680,2, 0xc8f6690,3, 0xc8f66a0,3, 0xc8f66c0,9, 0xc8f6700,9, 0xc8f6740,6, 0xc8f6760,16, 0xc8f7000,2, 0xc8f7010,3, 0xc8f7020,3, 0xc8f7030,3, 0xc8f7040,3, 0xc8f7050,3, 0xc8f7060,3, 0xc8f7070,3, 0xc8f7080,3, 0xc8f7090,3, 0xc8f70a0,3, 0xc8f70b0,3, 0xc8f70c0,3, 0xc8f70d0,3, 0xc8f70e0,3, 0xc8f70f0,3, 0xc8f7100,3, 0xc8f7200,10, 0xc8f7404,1, 0xc8f7414,3, 0xc8f7800,153, 0xc900000,6, 0xc900020,3, 0xc900400,6, 0xc900424,1, 0xc900434,5, 0xc900600,128, 0xc900804,1, 0xc900828,86, 0xc900984,1, 0xc900c00,1, 0xc900c80,1, 0xc900c90,2, 0xc900d00,20, 0xc900d80,1, 0xc900da0,5, 0xc900e00,27, 0xc900f00,2, 0xc900f10,4, 0xc901000,7, 0xc980000,36, 0xc980800,10, 0xc980880,6, 0xc980900,2, 0xc980910,4, 0xc980a04,5, 0xc980a20,3, 0xc980a80,1, 0xc981000,36, 0xc981800,10, 0xc981880,6, 0xc9818a0,1, 0xc981900,2, 0xc981910,4, 0xc981a00,1, 0xc982000,36, 0xc982800,10, 0xc982880,6, 0xc9828a0,1, 0xc982900,2, 0xc982910,4, 0xc982a00,1, 0xc983000,36, 0xc983800,10, 0xc983880,6, 0xc9838a0,1, 0xc983900,2, 0xc983910,4, 0xc983a00,1, 0xc984000,36, 0xc984800,10, 0xc984880,6, 0xc9848a0,1, 0xc984900,2, 0xc984910,4, 0xc984a00,1, 0xc985000,36, 0xc985800,10, 0xc985880,6, 0xc9858a0,1, 0xc985900,2, 0xc985910,4, 0xc985a00,1, 0xc986000,36, 0xc986800,10, 0xc986880,6, 0xc9868a0,1, 0xc986900,2, 0xc986910,4, 0xc986a00,1, 0xc987000,36, 0xc987800,10, 0xc987880,6, 0xc9878a0,1, 0xc987900,2, 0xc987910,4, 0xc987a00,1, 0xc988000,36, 0xc988800,10, 0xc988880,6, 0xc9888a0,1, 0xc988900,2, 0xc988910,4, 0xc988a00,1, 0xc989000,36, 0xc989800,10, 0xc989880,6, 0xc9898a0,1, 0xc989900,2, 0xc989910,4, 0xc989a00,1, 0xc98a000,36, 0xc98a800,10, 0xc98a880,6, 0xc98a8a0,1, 0xc98a900,2, 0xc98a910,4, 0xc98aa00,1, 0xc98b000,36, 0xc98b800,10, 0xc98b880,6, 0xc98b8a0,1, 0xc98b900,2, 0xc98b910,4, 0xc98ba00,1, 0xc98c000,36, 0xc98c800,10, 0xc98c880,6, 0xc98c8a0,1, 0xc98c900,2, 0xc98c910,4, 0xc98ca00,1, 0xc98d000,36, 0xc98d800,10, 0xc98d880,6, 0xc98d8a0,1, 0xc98d900,2, 0xc98d910,4, 0xc98da00,1, 0xc98e000,36, 0xc98e800,10, 0xc98e880,6, 0xc98e8a0,1, 0xc98e900,2, 0xc98e910,4, 0xc98ea00,1, 0xc98f000,36, 0xc98f800,10, 0xc98f880,6, 0xc98f8a0,1, 0xc98f900,2, 0xc98f910,4, 0xc98fa00,1, 0xc990000,36, 0xc990800,10, 0xc990880,6, 0xc9908a0,1, 0xc990900,2, 0xc990910,4, 0xc990a00,1, 0xc991000,10, 0xc991080,5, 0xc9910a0,6, 0xc991100,2, 0xc991110,4, 0xc991200,1, 0xc992000,10, 0xc992080,5, 0xc9920a0,6, 0xc992100,2, 0xc992110,4, 0xc992200,1, 0xc993000,10, 0xc993080,5, 0xc9930a0,6, 0xc993100,2, 0xc993110,4, 0xc993200,1, 0xc994000,10, 0xc994080,5, 0xc9940a0,6, 0xc994100,2, 0xc994110,4, 0xc994200,1, 0xc995000,10, 0xc995080,5, 0xc9950a0,6, 0xc995100,2, 0xc995110,4, 0xc995200,1, 0xc996000,10, 0xc996080,5, 0xc9960a0,6, 0xc996100,2, 0xc996110,4, 0xc996200,1, 0xc997000,10, 0xc997080,5, 0xc9970a0,6, 0xc997100,2, 0xc997110,4, 0xc997200,1, 0xc998000,10, 0xc998080,5, 0xc9980a0,6, 0xc998100,2, 0xc998110,4, 0xc998200,1, 0xc999000,20, 0xc999800,10, 0xc999880,6, 0xc999900,2, 0xc999910,4, 0xc999940,2, 0xc999950,4, 0xc999a00,1, 0xc99a000,20, 0xc99a800,10, 0xc99a880,6, 0xc99a900,2, 0xc99a910,4, 0xc99a940,2, 0xc99a950,4, 0xc99aa00,1, 0xc99b000,20, 0xc99b800,10, 0xc99b880,6, 0xc99b900,2, 0xc99b910,4, 0xc99b940,2, 0xc99b950,4, 0xc99ba00,1, 0xc99c000,20, 0xc99c800,10, 0xc99c880,6, 0xc99c900,2, 0xc99c910,4, 0xc99c940,2, 0xc99c950,4, 0xc99ca00,1, 0xc99d000,20, 0xc99d800,10, 0xc99d880,6, 0xc99d900,2, 0xc99d910,4, 0xc99d940,2, 0xc99d950,4, 0xc99da00,1, 0xc99e000,20, 0xc99e800,10, 0xc99e880,6, 0xc99e900,2, 0xc99e910,4, 0xc99e940,2, 0xc99e950,4, 0xc99ea00,1, 0xc99f000,20, 0xc99f800,10, 0xc99f880,6, 0xc99f900,2, 0xc99f910,4, 0xc99f940,2, 0xc99f950,4, 0xc99fa00,1, 0xc9a0000,20, 0xc9a0800,10, 0xc9a0880,6, 0xc9a0900,2, 0xc9a0910,4, 0xc9a0940,2, 0xc9a0950,4, 0xc9a0a00,1, 0xc9a1000,20, 0xc9a1800,10, 0xc9a1880,5, 0xc9a18a0,6, 0xc9a1900,2, 0xc9a1910,4, 0xc9a1a00,1, 0xc9a2000,20, 0xc9a2800,1, 0xc9a3000,20, 0xc9a3800,1, 0xc9a4000,20, 0xc9a4800,10, 0xc9a4880,5, 0xc9a48a0,6, 0xc9a4900,2, 0xc9a4910,4, 0xc9a4a00,1, 0xc9a5000,20, 0xc9a5800,1, 0xc9a6000,20, 0xc9a6800,1, 0xc9a7000,20, 0xc9a7800,10, 0xc9a7880,5, 0xc9a78a0,6, 0xc9a7900,2, 0xc9a7910,4, 0xc9a7a00,1, 0xc9a8000,20, 0xc9a8800,1, 0xc9a9000,20, 0xc9a9800,1, 0xc9aa000,20, 0xc9aa800,10, 0xc9aa880,5, 0xc9aa8a0,6, 0xc9aa900,2, 0xc9aa910,4, 0xc9aaa00,1, 0xc9ab000,20, 0xc9ab800,1, 0xc9ac000,20, 0xc9ac800,1, 0xc9ad000,20, 0xc9ad800,10, 0xc9ad880,5, 0xc9ad8a0,6, 0xc9ad900,2, 0xc9ad910,4, 0xc9ada00,1, 0xc9ae000,20, 0xc9ae800,1, 0xc9af000,20, 0xc9af800,1, 0xc9b0000,20, 0xc9b0800,10, 0xc9b0880,5, 0xc9b08a0,6, 0xc9b0900,2, 0xc9b0910,4, 0xc9b0a00,1, 0xc9b1000,20, 0xc9b1800,1, 0xc9b2000,20, 0xc9b2800,1, 0xc9b3000,20, 0xc9b3800,10, 0xc9b3880,5, 0xc9b38a0,6, 0xc9b3900,2, 0xc9b3910,4, 0xc9b3a00,1, 0xc9b4000,20, 0xc9b4800,1, 0xc9b5000,20, 0xc9b5800,1, 0xc9b6000,20, 0xc9b6800,10, 0xc9b6880,5, 0xc9b68a0,6, 0xc9b6900,2, 0xc9b6910,4, 0xc9b6a00,1, 0xc9b7000,20, 0xc9b7800,1, 0xc9b8000,20, 0xc9b8800,1, 0xc9ba000,20, 0xc9ba800,10, 0xc9ba880,6, 0xc9ba900,2, 0xc9ba910,4, 0xc9baa00,8, 0xc9baa24,1, 0xc9baa40,8, 0xc9baa64,1, 0xc9baa80,8, 0xc9baaa4,1, 0xc9baac0,8, 0xc9baae4,1, 0xc9bab00,1, 0xc9bc000,20, 0xc9bc800,10, 0xc9bc880,6, 0xc9bc900,2, 0xc9bc910,4, 0xc9bca00,8, 0xc9bca24,1, 0xc9bca40,8, 0xc9bca64,1, 0xc9bca80,8, 0xc9bcaa4,1, 0xc9bcac0,8, 0xc9bcae4,1, 0xc9bcb00,1, 0xc9be000,20, 0xc9be800,10, 0xc9be880,6, 0xc9be900,2, 0xc9be910,4, 0xc9bea00,8, 0xc9bea24,1, 0xc9bea40,8, 0xc9bea64,1, 0xc9bea80,8, 0xc9beaa4,1, 0xc9beac0,8, 0xc9beae4,1, 0xc9beb00,1, 0xc9c0000,20, 0xc9c0800,10, 0xc9c0880,6, 0xc9c0900,2, 0xc9c0910,4, 0xc9c0a00,8, 0xc9c0a24,1, 0xc9c0a40,8, 0xc9c0a64,1, 0xc9c0a80,8, 0xc9c0aa4,1, 0xc9c0ac0,8, 0xc9c0ae4,1, 0xc9c0b00,1, 0xc9c2000,20, 0xc9c2800,10, 0xc9c2880,6, 0xc9c2900,2, 0xc9c2910,4, 0xc9c2a00,8, 0xc9c2a24,1, 0xc9c2a40,8, 0xc9c2a64,1, 0xc9c2a80,8, 0xc9c2aa4,1, 0xc9c2ac0,8, 0xc9c2ae4,1, 0xc9c2b00,1, 0xc9c4000,20, 0xc9c4800,10, 0xc9c4880,6, 0xc9c4900,2, 0xc9c4910,4, 0xc9c4a00,8, 0xc9c4a24,1, 0xc9c4a40,8, 0xc9c4a64,1, 0xc9c4a80,8, 0xc9c4aa4,1, 0xc9c4ac0,8, 0xc9c4ae4,1, 0xc9c4b00,1, 0xc9c6000,20, 0xc9c6800,10, 0xc9c6880,6, 0xc9c6900,2, 0xc9c6910,4, 0xc9c6a00,8, 0xc9c6a24,1, 0xc9c6a40,8, 0xc9c6a64,1, 0xc9c6a80,8, 0xc9c6aa4,1, 0xc9c6ac0,8, 0xc9c6ae4,1, 0xc9c6b00,1, 0xc9c8000,20, 0xc9c8800,10, 0xc9c8880,6, 0xc9c8900,2, 0xc9c8910,4, 0xc9c8a00,8, 0xc9c8a24,1, 0xc9c8a40,8, 0xc9c8a64,1, 0xc9c8a80,8, 0xc9c8aa4,1, 0xc9c8ac0,8, 0xc9c8ae4,1, 0xc9c8b00,1, 0xc9f9000,10, 0xc9fa000,10, 0xc9fb000,10, 0xca00000,198, 0xca00400,2, 0xca00440,9, 0xca00480,7, 0xca00800,198, 0xca00c00,2, 0xca00c40,9, 0xca00c80,7, 0xca01000,198, 0xca01400,198, 0xca01804,6, 0xca01824,6, 0xca01880,2, 0xca01904,1, 0xca01918,28, 0xca019a0,6, 0xca019c0,6, 0xca01c00,2, 0xca01d00,2, 0xca01e04,1, 0xca01e74,43, 0xca02000,2, 0xca02100,2, 0xca02204,1, 0xca02274,43, 0xca02400,3, 0xca02600,27, 0xca02680,4, 0xca026c0,25, 0xca02740,6, 0xca02760,4, 0xca02774,11, 0xca027a4,4, 0xca02800,4, 0xca02900,34, 0xca02a00,4, 0xca02b00,34, 0xca02c00,3, 0xca02c10,12, 0xca02e00,56, 0xca02ee4,4, 0xca02f00,4, 0xca03000,1, 0xca08000,4, 0xca08100,42, 0xca08200,1, 0xca08210,3, 0xca08220,3, 0xca08230,3, 0xca08240,1, 0xca08248,3, 0xca08400,4, 0xca08500,58, 0xca08600,1, 0xca08610,3, 0xca08620,3, 0xca08630,3, 0xca08640,1, 0xca08648,3, 0xca08800,4, 0xca08900,36, 0xca08a00,1, 0xca08c00,4, 0xca08c80,27, 0xca08d00,1, 0xca08d10,3, 0xca08d20,3, 0xca08d30,3, 0xca08d40,1, 0xca08d48,3, 0xca08e00,4, 0xca08e80,31, 0xca08f00,1, 0xca08f10,3, 0xca08f20,3, 0xca08f30,3, 0xca08f40,1, 0xca08f48,3, 0xca09000,4, 0xca09040,13, 0xca09080,1, 0xca09200,15, 0xca09240,4, 0xca09260,17, 0xca092c0,6, 0xca092e0,2, 0xca092ec,3, 0xca09300,8, 0xca09324,8, 0xca09400,68, 0xca09600,60, 0xca09700,4, 0xca09720,5, 0xca09740,1, 0xca09780,2, 0xca0978c,2, 0xca097a0,1, 0xca097c0,12, 0xca09800,7, 0xca09820,5, 0xca09900,49, 0xca09a00,1, 0xca09a08,23, 0xca09a84,1, 0xca09a8c,1, 0xca09a94,1, 0xca09a9c,2, 0xca09ac0,1, 0xca09c00,10, 0xca09c40,1, 0xca09c50,3, 0xca09c80,10, 0xca09cc0,12, 0xca09d00,3, 0xca09e00,1, 0xca0a000,4, 0xca0a100,42, 0xca0a200,1, 0xca0a210,3, 0xca0a220,3, 0xca0a230,3, 0xca0a240,1, 0xca0a248,3, 0xca0a400,4, 0xca0a500,58, 0xca0a600,1, 0xca0a610,3, 0xca0a620,3, 0xca0a630,3, 0xca0a640,1, 0xca0a648,3, 0xca0a800,4, 0xca0a900,36, 0xca0aa00,1, 0xca0ac00,4, 0xca0ac80,27, 0xca0ad00,1, 0xca0ad10,3, 0xca0ad20,3, 0xca0ad30,3, 0xca0ad40,1, 0xca0ad48,3, 0xca0ae00,4, 0xca0ae80,31, 0xca0af00,1, 0xca0af10,3, 0xca0af20,3, 0xca0af30,3, 0xca0af40,1, 0xca0af48,3, 0xca0b000,4, 0xca0b040,13, 0xca0b080,1, 0xca0b200,15, 0xca0b240,4, 0xca0b260,17, 0xca0b2c0,6, 0xca0b2e0,2, 0xca0b2ec,3, 0xca0b300,8, 0xca0b324,8, 0xca0b400,68, 0xca0b600,60, 0xca0b700,4, 0xca0b720,5, 0xca0b740,1, 0xca0b780,2, 0xca0b78c,2, 0xca0b7a0,1, 0xca0b7c0,12, 0xca0b800,7, 0xca0b820,5, 0xca0b900,49, 0xca0ba00,1, 0xca0ba08,23, 0xca0ba84,1, 0xca0ba8c,1, 0xca0ba94,1, 0xca0ba9c,2, 0xca0bac0,1, 0xca0bc00,10, 0xca0bc40,1, 0xca0bc50,3, 0xca0bc80,10, 0xca0bcc0,12, 0xca0bd00,3, 0xca0be00,1, 0xca0c000,20, 0xca0c080,3, 0xca0c090,1, 0xca0c098,4, 0xca10000,49, 0xca10100,12, 0xca10140,4, 0xca10184,1, 0xca10198,2, 0xca101a4,1, 0xca101b8,7, 0xca101e0,4, 0xca10200,20, 0xca10280,3, 0xca10290,9, 0xca102c0,6, 0xca102e0,1, 0xca102e8,7, 0xca10400,49, 0xca10500,12, 0xca10540,4, 0xca10584,1, 0xca10598,2, 0xca105a4,1, 0xca105b8,7, 0xca105e0,4, 0xca10600,20, 0xca10680,3, 0xca10690,9, 0xca106c0,6, 0xca106e0,1, 0xca106e8,7, 0xca10800,49, 0xca10900,12, 0xca10940,4, 0xca10984,1, 0xca10998,2, 0xca109a4,1, 0xca109b8,7, 0xca109e0,4, 0xca10a00,20, 0xca10a80,3, 0xca10a90,9, 0xca10ac0,6, 0xca10ae0,1, 0xca10ae8,7, 0xca10c00,49, 0xca10d00,12, 0xca10d40,4, 0xca10d84,1, 0xca10d98,2, 0xca10da4,1, 0xca10db8,7, 0xca10de0,4, 0xca10e00,20, 0xca10e80,3, 0xca10e90,9, 0xca10ec0,6, 0xca10ee0,1, 0xca10ee8,7, 0xca11000,49, 0xca11100,12, 0xca11140,4, 0xca11184,1, 0xca11198,2, 0xca111a4,1, 0xca111b8,7, 0xca111e0,4, 0xca11200,20, 0xca11280,3, 0xca11290,9, 0xca112c0,6, 0xca112e0,1, 0xca112e8,7, 0xca11400,49, 0xca11500,12, 0xca11540,4, 0xca11584,1, 0xca11598,2, 0xca115a4,1, 0xca115b8,7, 0xca115e0,4, 0xca11600,20, 0xca11680,3, 0xca11690,9, 0xca116c0,6, 0xca116e0,1, 0xca116e8,7, 0xca11800,49, 0xca11900,12, 0xca11940,4, 0xca11984,1, 0xca11998,2, 0xca119a4,1, 0xca119b8,7, 0xca119e0,4, 0xca11a00,20, 0xca11a80,3, 0xca11a90,9, 0xca11ac0,6, 0xca11ae0,1, 0xca11ae8,7, 0xca12000,20, 0xca12080,10, 0xca12100,20, 0xca12180,10, 0xca12200,12, 0xca12400,20, 0xca12480,10, 0xca12500,20, 0xca12580,10, 0xca12600,12, 0xca12800,3, 0xca12840,12, 0xca12880,12, 0xca128c0,12, 0xca12900,12, 0xca12940,12, 0xca12980,12, 0xca129c0,12, 0xca12a00,12, 0xca12c00,12, 0xca12c40,7, 0xca12c60,10, 0xca13004,1, 0xca13044,43, 0xca13100,7, 0xca13120,7, 0xca13140,2, 0xca1314c,2, 0xca13160,2, 0xca1316c,2, 0xca13180,18, 0xca13200,2, 0xca13220,10, 0xca13260,20, 0xca132c0,9, 0xca13300,15, 0xca13340,9, 0xca13380,6, 0xca133a0,4, 0xca13400,5, 0xca14000,53, 0xca14100,3, 0xca14110,15, 0xca14200,53, 0xca14300,3, 0xca14310,15, 0xca14400,5, 0xca14420,5, 0xca14440,18, 0xca14800,3, 0xca14810,2, 0xca14820,3, 0xca14830,2, 0xca14840,1, 0xca15000,7, 0xca15020,7, 0xca15080,19, 0xca15100,19, 0xca15180,25, 0xca15200,20, 0xca15280,20, 0xca15300,8, 0xca15340,4, 0xca15380,15, 0xca153c0,15, 0xca15400,9, 0xca15430,5, 0xca16000,6, 0xca16020,1, 0xca16028,2, 0xca16040,11, 0xca16070,2, 0xca18000,82, 0xca18200,2, 0xca18240,9, 0xca18280,7, 0xca18400,82, 0xca18604,6, 0xca18700,15, 0xca18740,9, 0xca18780,6, 0xca187a0,6, 0xca18800,2, 0xca18810,3, 0xca18880,24, 0xca188e4,1, 0xca188f0,12, 0xca20000,22, 0xca20080,22, 0xca20100,5, 0xca20120,5, 0xca20140,3, 0xca20160,16, 0xca201c0,7, 0xca201e0,2, 0xca20200,7, 0xca20220,2, 0xca20400,15, 0xca20440,3, 0xca20450,3, 0xca20460,24, 0xca20500,15, 0xca20540,3, 0xca20550,3, 0xca20560,24, 0xca20600,15, 0xca20640,3, 0xca20650,3, 0xca20660,24, 0xca20700,15, 0xca20740,3, 0xca20750,3, 0xca20760,24, 0xca20800,4, 0xca20820,16, 0xca20880,10, 0xca208c0,10, 0xca20900,6, 0xca20920,6, 0xca20940,4, 0xca20980,13, 0xca209c0,13, 0xca20a00,9, 0xca21000,86, 0xca21200,2, 0xca21240,9, 0xca21280,7, 0xca21400,86, 0xca21604,6, 0xca21800,86, 0xca21a00,2, 0xca21a40,9, 0xca21a80,7, 0xca21c00,86, 0xca21e04,6, 0xca22000,15, 0xca22040,4, 0xca22060,17, 0xca220c0,6, 0xca220e0,4, 0xca220f4,11, 0xca22128,38, 0xca221c4,2, 0xca221d0,4, 0xca22200,1, 0xca24000,22, 0xca24080,22, 0xca24100,5, 0xca24120,5, 0xca24140,3, 0xca24160,16, 0xca241c0,7, 0xca241e0,2, 0xca24200,7, 0xca24220,2, 0xca24400,15, 0xca24440,3, 0xca24450,3, 0xca24460,24, 0xca24500,15, 0xca24540,3, 0xca24550,3, 0xca24560,24, 0xca24600,15, 0xca24640,3, 0xca24650,3, 0xca24660,24, 0xca24700,15, 0xca24740,3, 0xca24750,3, 0xca24760,24, 0xca24800,4, 0xca24820,16, 0xca24880,10, 0xca248c0,10, 0xca24900,6, 0xca24920,6, 0xca24940,4, 0xca24980,13, 0xca249c0,13, 0xca24a00,9, 0xca25000,86, 0xca25200,2, 0xca25240,9, 0xca25280,7, 0xca25400,86, 0xca25604,6, 0xca25800,86, 0xca25a00,2, 0xca25a40,9, 0xca25a80,7, 0xca25c00,86, 0xca25e04,6, 0xca26000,15, 0xca26040,4, 0xca26060,17, 0xca260c0,6, 0xca260e0,4, 0xca260f4,11, 0xca26128,38, 0xca261c4,2, 0xca261d0,4, 0xca26200,1, 0xca28000,9, 0xca28040,9, 0xca28080,5, 0xca28100,21, 0xca28160,5, 0xca28180,45, 0xca28240,13, 0xca28280,9, 0xca28400,9, 0xca28440,9, 0xca28480,5, 0xca28500,21, 0xca28560,5, 0xca28580,45, 0xca28640,13, 0xca28680,9, 0xca28800,12, 0xca28900,15, 0xca28940,4, 0xca28960,17, 0xca289c0,6, 0xca289e0,4, 0xca289f4,29, 0xca2c000,30, 0xca2c080,3, 0xca2c090,19, 0xca2c100,30, 0xca2c180,3, 0xca2c190,19, 0xca2c200,30, 0xca2c280,3, 0xca2c290,19, 0xca2c300,30, 0xca2c380,3, 0xca2c390,19, 0xca2c400,30, 0xca2c480,3, 0xca2c490,19, 0xca2c500,30, 0xca2c580,3, 0xca2c590,19, 0xca2c600,30, 0xca2c680,3, 0xca2c690,19, 0xca2c700,30, 0xca2c780,3, 0xca2c790,19, 0xca2c800,12, 0xca2c844,1, 0xca2c854,8, 0xca2c880,7, 0xca2c8a0,2, 0xca2c8ac,2, 0xca2c8c0,26, 0xca2c980,4, 0xca2c9a0,5, 0xca2c9c0,1, 0xca2d000,3, 0xca2d010,3, 0xca2d020,3, 0xca2d030,3, 0xca2d040,3, 0xca2d050,3, 0xca2d060,3, 0xca2d070,3, 0xca2d080,6, 0xca2d0a0,6, 0xca2d0c0,6, 0xca2d0e0,6, 0xca2d100,6, 0xca2d120,6, 0xca2d140,6, 0xca2d160,6, 0xca2d200,68, 0xca2d400,1, 0xca2d804,1, 0xca2d844,54, 0xca2da00,12, 0xca2da40,12, 0xca2da80,12, 0xca2dac0,12, 0xca2db00,12, 0xca2db40,12, 0xca2db80,12, 0xca2dbc0,12, 0xca2dc00,28, 0xca2dc80,10, 0xca2e000,3, 0xca2e020,6, 0xca2e040,6, 0xca2e060,15, 0xca2e100,26, 0xca2e180,15, 0xca2e200,15, 0xca2e240,4, 0xca2e260,17, 0xca2e2c0,6, 0xca2e2e0,4, 0xca2e2f4,18, 0xca2e340,4, 0xca2e360,17, 0xca2e3c0,6, 0xca2e3e0,4, 0xca2e3f4,15, 0xca30000,1, 0xca31000,1020, 0xca32000,194, 0xca33000,1020, 0xca34000,1020, 0xca35000,1020, 0xca36000,1020, 0xca37000,1020, 0xca38000,1020, 0xca39000,1020, 0xca3a000,1020, 0xca3b000,194, 0xca3c000,3, 0xca3c010,13, 0xca3c080,16, 0xca3c100,20, 0xca3c184,1, 0xca3c18c,4, 0xca3c200,3, 0xca3c210,13, 0xca3c280,16, 0xca3c300,20, 0xca3c384,1, 0xca3c38c,4, 0xca3c400,3, 0xca3c410,13, 0xca3c480,16, 0xca3c500,20, 0xca3c584,1, 0xca3c58c,4, 0xca3c600,3, 0xca3c610,13, 0xca3c680,16, 0xca3c700,20, 0xca3c784,1, 0xca3c78c,4, 0xca3c800,3, 0xca3c810,13, 0xca3c880,16, 0xca3c900,20, 0xca3c984,1, 0xca3c98c,4, 0xca3ca00,3, 0xca3ca10,13, 0xca3ca80,16, 0xca3cb00,20, 0xca3cb84,1, 0xca3cb8c,4, 0xca3cc00,3, 0xca3cc10,13, 0xca3cc80,16, 0xca3cd00,20, 0xca3cd84,1, 0xca3cd8c,4, 0xca3ce00,3, 0xca3ce10,13, 0xca3ce80,16, 0xca3cf00,20, 0xca3cf84,1, 0xca3cf8c,4, 0xca3d000,3, 0xca3d010,13, 0xca3d080,16, 0xca3d100,20, 0xca3d184,1, 0xca3d18c,4, 0xca3d200,18, 0xca3d250,2, 0xca3d260,4, 0xca3e000,1, 0xca3e014,1, 0xca3e01c,19, 0xca3e080,1, 0xca3e094,1, 0xca3e09c,19, 0xca3e100,8, 0xca3e200,13, 0xca3e240,9, 0xca3e280,12, 0xca3e2c0,2, 0xca3e2e0,12, 0xca40000,3, 0xca40080,20, 0xca40100,10, 0xca40140,1, 0xca40154,1, 0xca4015c,2, 0xca40200,15, 0xca40240,4, 0xca40260,17, 0xca402c0,6, 0xca402e0,2, 0xca402ec,3, 0xca40300,8, 0xca40324,1, 0xca40400,4, 0xca40440,20, 0xca404c0,9, 0xca40500,33, 0xca40600,11, 0xca40640,11, 0xca40680,1, 0xca42000,1, 0xca42200,4, 0xca42300,53, 0xca42400,4, 0xca42500,40, 0xca42600,15, 0xca42640,4, 0xca42660,17, 0xca426c0,6, 0xca426e0,2, 0xca426ec,3, 0xca42700,8, 0xca42724,1, 0xca42800,20, 0xca42c00,53, 0xca42d00,53, 0xca42e00,1, 0xca43000,40, 0xca43100,40, 0xca43200,1, 0xca43400,1, 0xca43804,1, 0xca43844,39, 0xca43900,3, 0xca43a00,3, 0xca43a44,1, 0xca43a50,4, 0xca43a80,1, 0xca44000,2, 0xca44200,27, 0xca44280,4, 0xca442c0,25, 0xca44340,6, 0xca44360,2, 0xca4436c,3, 0xca44380,8, 0xca443a4,1, 0xca44400,12, 0xca44440,1, 0xca48000,3, 0xca48080,20, 0xca48100,10, 0xca48140,1, 0xca48154,1, 0xca4815c,2, 0xca48200,15, 0xca48240,4, 0xca48260,17, 0xca482c0,6, 0xca482e0,2, 0xca482ec,3, 0xca48300,8, 0xca48324,1, 0xca48400,4, 0xca48440,20, 0xca484c0,9, 0xca48500,33, 0xca48600,11, 0xca48640,11, 0xca48680,1, 0xca4a000,1, 0xca4a200,4, 0xca4a300,53, 0xca4a400,4, 0xca4a500,40, 0xca4a600,15, 0xca4a640,4, 0xca4a660,17, 0xca4a6c0,6, 0xca4a6e0,2, 0xca4a6ec,3, 0xca4a700,8, 0xca4a724,1, 0xca4a800,20, 0xca4ac00,53, 0xca4ad00,53, 0xca4ae00,1, 0xca4b000,40, 0xca4b100,40, 0xca4b200,1, 0xca4b400,1, 0xca4b804,1, 0xca4b844,39, 0xca4b900,3, 0xca4ba00,3, 0xca4ba44,1, 0xca4ba50,4, 0xca4ba80,1, 0xca4c000,2, 0xca4c200,27, 0xca4c280,4, 0xca4c2c0,25, 0xca4c340,6, 0xca4c360,2, 0xca4c36c,3, 0xca4c380,8, 0xca4c3a4,1, 0xca4c400,12, 0xca4c440,1, 0xca50000,4, 0xca50020,3, 0xca50030,2, 0xca50200,1, 0xca50224,10, 0xca50250,5, 0xca50280,1, 0xca50288,24, 0xca50300,3, 0xca50404,1, 0xca50414,5, 0xca50500,36, 0xca50600,3, 0xca50800,2, 0xca51000,1, 0xca51008,21, 0xca51080,1, 0xca51088,21, 0xca51100,1, 0xca51108,21, 0xca51180,1, 0xca51188,21, 0xca51200,1, 0xca51208,21, 0xca51280,1, 0xca51288,21, 0xca51300,1, 0xca51308,21, 0xca51380,1, 0xca51388,21, 0xca51400,21, 0xca51800,142, 0xca51c00,1, 0xca52000,4, 0xca52100,39, 0xca52200,3, 0xca52214,3, 0xca54004,1, 0xca54020,16, 0xca54080,2, 0xca54094,1, 0xca5409c,2, 0xca540c0,6, 0xca54100,8, 0xca58004,17, 0xca58054,1, 0xca5805c,2, 0xca58080,1, 0xca580a0,2, 0xca580b4,4, 0xca58100,2, 0xca58200,8, 0xca58400,1, 0xca58600,27, 0xca58680,4, 0xca586c0,25, 0xca58740,6, 0xca58760,2, 0xca5876c,3, 0xca58780,8, 0xca587a4,3, 0xca58800,44, 0xca58900,1, 0xca60000,1, 0xca60200,27, 0xca60280,4, 0xca602c0,25, 0xca60340,6, 0xca60360,2, 0xca6036c,3, 0xca60380,8, 0xca603a4,1, 0xca60400,20, 0xca60480,3, 0xca60490,9, 0xca80000,198, 0xca80400,2, 0xca80440,9, 0xca80480,7, 0xca80800,198, 0xca80c00,2, 0xca80c40,9, 0xca80c80,7, 0xca81000,198, 0xca81400,198, 0xca81804,6, 0xca81824,6, 0xca81880,2, 0xca81904,1, 0xca81918,28, 0xca819a0,6, 0xca819c0,6, 0xca81c00,2, 0xca81d00,2, 0xca81e04,1, 0xca81e74,43, 0xca82000,2, 0xca82100,2, 0xca82204,1, 0xca82274,43, 0xca82400,3, 0xca82600,27, 0xca82680,4, 0xca826c0,25, 0xca82740,6, 0xca82760,4, 0xca82774,11, 0xca827a4,4, 0xca82800,4, 0xca82900,34, 0xca82a00,4, 0xca82b00,34, 0xca82c00,3, 0xca82c10,12, 0xca82e00,56, 0xca82ee4,4, 0xca82f00,4, 0xca83000,1, 0xca88000,4, 0xca88100,42, 0xca88200,1, 0xca88210,3, 0xca88220,3, 0xca88230,3, 0xca88240,1, 0xca88248,3, 0xca88400,4, 0xca88500,58, 0xca88600,1, 0xca88610,3, 0xca88620,3, 0xca88630,3, 0xca88640,1, 0xca88648,3, 0xca88800,4, 0xca88900,36, 0xca88a00,1, 0xca88c00,4, 0xca88c80,27, 0xca88d00,1, 0xca88d10,3, 0xca88d20,3, 0xca88d30,3, 0xca88d40,1, 0xca88d48,3, 0xca88e00,4, 0xca88e80,31, 0xca88f00,1, 0xca88f10,3, 0xca88f20,3, 0xca88f30,3, 0xca88f40,1, 0xca88f48,3, 0xca89000,4, 0xca89040,13, 0xca89080,1, 0xca89200,15, 0xca89240,4, 0xca89260,17, 0xca892c0,6, 0xca892e0,2, 0xca892ec,3, 0xca89300,8, 0xca89324,8, 0xca89400,68, 0xca89600,60, 0xca89700,4, 0xca89720,5, 0xca89740,1, 0xca89780,2, 0xca8978c,2, 0xca897a0,1, 0xca897c0,12, 0xca89800,7, 0xca89820,5, 0xca89900,49, 0xca89a00,1, 0xca89a08,23, 0xca89a84,1, 0xca89a8c,1, 0xca89a94,1, 0xca89a9c,2, 0xca89ac0,1, 0xca89c00,10, 0xca89c40,1, 0xca89c50,3, 0xca89c80,10, 0xca89cc0,12, 0xca89d00,3, 0xca89e00,1, 0xca8a000,4, 0xca8a100,42, 0xca8a200,1, 0xca8a210,3, 0xca8a220,3, 0xca8a230,3, 0xca8a240,1, 0xca8a248,3, 0xca8a400,4, 0xca8a500,58, 0xca8a600,1, 0xca8a610,3, 0xca8a620,3, 0xca8a630,3, 0xca8a640,1, 0xca8a648,3, 0xca8a800,4, 0xca8a900,36, 0xca8aa00,1, 0xca8ac00,4, 0xca8ac80,27, 0xca8ad00,1, 0xca8ad10,3, 0xca8ad20,3, 0xca8ad30,3, 0xca8ad40,1, 0xca8ad48,3, 0xca8ae00,4, 0xca8ae80,31, 0xca8af00,1, 0xca8af10,3, 0xca8af20,3, 0xca8af30,3, 0xca8af40,1, 0xca8af48,3, 0xca8b000,4, 0xca8b040,13, 0xca8b080,1, 0xca8b200,15, 0xca8b240,4, 0xca8b260,17, 0xca8b2c0,6, 0xca8b2e0,2, 0xca8b2ec,3, 0xca8b300,8, 0xca8b324,8, 0xca8b400,68, 0xca8b600,60, 0xca8b700,4, 0xca8b720,5, 0xca8b740,1, 0xca8b780,2, 0xca8b78c,2, 0xca8b7a0,1, 0xca8b7c0,12, 0xca8b800,7, 0xca8b820,5, 0xca8b900,49, 0xca8ba00,1, 0xca8ba08,23, 0xca8ba84,1, 0xca8ba8c,1, 0xca8ba94,1, 0xca8ba9c,2, 0xca8bac0,1, 0xca8bc00,10, 0xca8bc40,1, 0xca8bc50,3, 0xca8bc80,10, 0xca8bcc0,12, 0xca8bd00,3, 0xca8be00,1, 0xca8c000,20, 0xca8c080,3, 0xca8c090,1, 0xca8c098,4, 0xca90000,49, 0xca90100,12, 0xca90140,4, 0xca90184,1, 0xca90198,2, 0xca901a4,1, 0xca901b8,7, 0xca901e0,4, 0xca90200,20, 0xca90280,3, 0xca90290,9, 0xca902c0,6, 0xca902e0,1, 0xca902e8,7, 0xca90400,49, 0xca90500,12, 0xca90540,4, 0xca90584,1, 0xca90598,2, 0xca905a4,1, 0xca905b8,7, 0xca905e0,4, 0xca90600,20, 0xca90680,3, 0xca90690,9, 0xca906c0,6, 0xca906e0,1, 0xca906e8,7, 0xca90800,49, 0xca90900,12, 0xca90940,4, 0xca90984,1, 0xca90998,2, 0xca909a4,1, 0xca909b8,7, 0xca909e0,4, 0xca90a00,20, 0xca90a80,3, 0xca90a90,9, 0xca90ac0,6, 0xca90ae0,1, 0xca90ae8,7, 0xca90c00,49, 0xca90d00,12, 0xca90d40,4, 0xca90d84,1, 0xca90d98,2, 0xca90da4,1, 0xca90db8,7, 0xca90de0,4, 0xca90e00,20, 0xca90e80,3, 0xca90e90,9, 0xca90ec0,6, 0xca90ee0,1, 0xca90ee8,7, 0xca91000,49, 0xca91100,12, 0xca91140,4, 0xca91184,1, 0xca91198,2, 0xca911a4,1, 0xca911b8,7, 0xca911e0,4, 0xca91200,20, 0xca91280,3, 0xca91290,9, 0xca912c0,6, 0xca912e0,1, 0xca912e8,7, 0xca91400,49, 0xca91500,12, 0xca91540,4, 0xca91584,1, 0xca91598,2, 0xca915a4,1, 0xca915b8,7, 0xca915e0,4, 0xca91600,20, 0xca91680,3, 0xca91690,9, 0xca916c0,6, 0xca916e0,1, 0xca916e8,7, 0xca91800,49, 0xca91900,12, 0xca91940,4, 0xca91984,1, 0xca91998,2, 0xca919a4,1, 0xca919b8,7, 0xca919e0,4, 0xca91a00,20, 0xca91a80,3, 0xca91a90,9, 0xca91ac0,6, 0xca91ae0,1, 0xca91ae8,7, 0xca92000,20, 0xca92080,10, 0xca92100,20, 0xca92180,10, 0xca92200,12, 0xca92400,20, 0xca92480,10, 0xca92500,20, 0xca92580,10, 0xca92600,12, 0xca92800,3, 0xca92840,12, 0xca92880,12, 0xca928c0,12, 0xca92900,12, 0xca92940,12, 0xca92980,12, 0xca929c0,12, 0xca92a00,12, 0xca92c00,12, 0xca92c40,7, 0xca92c60,10, 0xca93004,1, 0xca93044,43, 0xca93100,7, 0xca93120,7, 0xca93140,2, 0xca9314c,2, 0xca93160,2, 0xca9316c,2, 0xca93180,18, 0xca93200,2, 0xca93220,10, 0xca93260,20, 0xca932c0,9, 0xca93300,15, 0xca93340,9, 0xca93380,6, 0xca933a0,4, 0xca93400,5, 0xca94000,53, 0xca94100,3, 0xca94110,15, 0xca94200,53, 0xca94300,3, 0xca94310,15, 0xca94400,5, 0xca94420,5, 0xca94440,18, 0xca94800,3, 0xca94810,2, 0xca94820,3, 0xca94830,2, 0xca94840,1, 0xca95000,7, 0xca95020,7, 0xca95080,19, 0xca95100,19, 0xca95180,25, 0xca95200,20, 0xca95280,20, 0xca95300,8, 0xca95340,4, 0xca95380,15, 0xca953c0,15, 0xca95400,9, 0xca95430,5, 0xca96000,6, 0xca96020,1, 0xca96028,2, 0xca96040,11, 0xca96070,2, 0xca98000,82, 0xca98200,2, 0xca98240,9, 0xca98280,7, 0xca98400,82, 0xca98604,6, 0xca98700,15, 0xca98740,9, 0xca98780,6, 0xca987a0,6, 0xca98800,2, 0xca98810,3, 0xca98880,24, 0xca988e4,1, 0xca988f0,12, 0xcaa0000,22, 0xcaa0080,22, 0xcaa0100,5, 0xcaa0120,5, 0xcaa0140,3, 0xcaa0160,16, 0xcaa01c0,7, 0xcaa01e0,2, 0xcaa0200,7, 0xcaa0220,2, 0xcaa0400,15, 0xcaa0440,3, 0xcaa0450,3, 0xcaa0460,24, 0xcaa0500,15, 0xcaa0540,3, 0xcaa0550,3, 0xcaa0560,24, 0xcaa0600,15, 0xcaa0640,3, 0xcaa0650,3, 0xcaa0660,24, 0xcaa0700,15, 0xcaa0740,3, 0xcaa0750,3, 0xcaa0760,24, 0xcaa0800,4, 0xcaa0820,16, 0xcaa0880,10, 0xcaa08c0,10, 0xcaa0900,6, 0xcaa0920,6, 0xcaa0940,4, 0xcaa0980,13, 0xcaa09c0,13, 0xcaa0a00,9, 0xcaa1000,86, 0xcaa1200,2, 0xcaa1240,9, 0xcaa1280,7, 0xcaa1400,86, 0xcaa1604,6, 0xcaa1800,86, 0xcaa1a00,2, 0xcaa1a40,9, 0xcaa1a80,7, 0xcaa1c00,86, 0xcaa1e04,6, 0xcaa2000,15, 0xcaa2040,4, 0xcaa2060,17, 0xcaa20c0,6, 0xcaa20e0,4, 0xcaa20f4,11, 0xcaa2128,38, 0xcaa21c4,2, 0xcaa21d0,4, 0xcaa2200,1, 0xcaa4000,22, 0xcaa4080,22, 0xcaa4100,5, 0xcaa4120,5, 0xcaa4140,3, 0xcaa4160,16, 0xcaa41c0,7, 0xcaa41e0,2, 0xcaa4200,7, 0xcaa4220,2, 0xcaa4400,15, 0xcaa4440,3, 0xcaa4450,3, 0xcaa4460,24, 0xcaa4500,15, 0xcaa4540,3, 0xcaa4550,3, 0xcaa4560,24, 0xcaa4600,15, 0xcaa4640,3, 0xcaa4650,3, 0xcaa4660,24, 0xcaa4700,15, 0xcaa4740,3, 0xcaa4750,3, 0xcaa4760,24, 0xcaa4800,4, 0xcaa4820,16, 0xcaa4880,10, 0xcaa48c0,10, 0xcaa4900,6, 0xcaa4920,6, 0xcaa4940,4, 0xcaa4980,13, 0xcaa49c0,13, 0xcaa4a00,9, 0xcaa5000,86, 0xcaa5200,2, 0xcaa5240,9, 0xcaa5280,7, 0xcaa5400,86, 0xcaa5604,6, 0xcaa5800,86, 0xcaa5a00,2, 0xcaa5a40,9, 0xcaa5a80,7, 0xcaa5c00,86, 0xcaa5e04,6, 0xcaa6000,15, 0xcaa6040,4, 0xcaa6060,17, 0xcaa60c0,6, 0xcaa60e0,4, 0xcaa60f4,11, 0xcaa6128,38, 0xcaa61c4,2, 0xcaa61d0,4, 0xcaa6200,1, 0xcaa8000,9, 0xcaa8040,9, 0xcaa8080,5, 0xcaa8100,21, 0xcaa8160,5, 0xcaa8180,45, 0xcaa8240,13, 0xcaa8280,9, 0xcaa8400,9, 0xcaa8440,9, 0xcaa8480,5, 0xcaa8500,21, 0xcaa8560,5, 0xcaa8580,45, 0xcaa8640,13, 0xcaa8680,9, 0xcaa8800,12, 0xcaa8900,15, 0xcaa8940,4, 0xcaa8960,17, 0xcaa89c0,6, 0xcaa89e0,4, 0xcaa89f4,29, 0xcaac000,30, 0xcaac080,3, 0xcaac090,19, 0xcaac100,30, 0xcaac180,3, 0xcaac190,19, 0xcaac200,30, 0xcaac280,3, 0xcaac290,19, 0xcaac300,30, 0xcaac380,3, 0xcaac390,19, 0xcaac400,30, 0xcaac480,3, 0xcaac490,19, 0xcaac500,30, 0xcaac580,3, 0xcaac590,19, 0xcaac600,30, 0xcaac680,3, 0xcaac690,19, 0xcaac700,30, 0xcaac780,3, 0xcaac790,19, 0xcaac800,12, 0xcaac844,1, 0xcaac854,8, 0xcaac880,7, 0xcaac8a0,2, 0xcaac8ac,2, 0xcaac8c0,26, 0xcaac980,4, 0xcaac9a0,5, 0xcaac9c0,1, 0xcaad000,3, 0xcaad010,3, 0xcaad020,3, 0xcaad030,3, 0xcaad040,3, 0xcaad050,3, 0xcaad060,3, 0xcaad070,3, 0xcaad080,6, 0xcaad0a0,6, 0xcaad0c0,6, 0xcaad0e0,6, 0xcaad100,6, 0xcaad120,6, 0xcaad140,6, 0xcaad160,6, 0xcaad200,68, 0xcaad400,1, 0xcaad804,1, 0xcaad844,54, 0xcaada00,12, 0xcaada40,12, 0xcaada80,12, 0xcaadac0,12, 0xcaadb00,12, 0xcaadb40,12, 0xcaadb80,12, 0xcaadbc0,12, 0xcaadc00,28, 0xcaadc80,10, 0xcaae000,3, 0xcaae020,6, 0xcaae040,6, 0xcaae060,15, 0xcaae100,26, 0xcaae180,15, 0xcaae200,15, 0xcaae240,4, 0xcaae260,17, 0xcaae2c0,6, 0xcaae2e0,4, 0xcaae2f4,18, 0xcaae340,4, 0xcaae360,17, 0xcaae3c0,6, 0xcaae3e0,4, 0xcaae3f4,15, 0xcab0000,1, 0xcab1000,1020, 0xcab2000,194, 0xcab3000,1020, 0xcab4000,1020, 0xcab5000,1020, 0xcab6000,1020, 0xcab7000,1020, 0xcab8000,1020, 0xcab9000,1020, 0xcaba000,1020, 0xcabb000,194, 0xcabc000,3, 0xcabc010,13, 0xcabc080,16, 0xcabc100,20, 0xcabc184,1, 0xcabc18c,4, 0xcabc200,3, 0xcabc210,13, 0xcabc280,16, 0xcabc300,20, 0xcabc384,1, 0xcabc38c,4, 0xcabc400,3, 0xcabc410,13, 0xcabc480,16, 0xcabc500,20, 0xcabc584,1, 0xcabc58c,4, 0xcabc600,3, 0xcabc610,13, 0xcabc680,16, 0xcabc700,20, 0xcabc784,1, 0xcabc78c,4, 0xcabc800,3, 0xcabc810,13, 0xcabc880,16, 0xcabc900,20, 0xcabc984,1, 0xcabc98c,4, 0xcabca00,3, 0xcabca10,13, 0xcabca80,16, 0xcabcb00,20, 0xcabcb84,1, 0xcabcb8c,4, 0xcabcc00,3, 0xcabcc10,13, 0xcabcc80,16, 0xcabcd00,20, 0xcabcd84,1, 0xcabcd8c,4, 0xcabce00,3, 0xcabce10,13, 0xcabce80,16, 0xcabcf00,20, 0xcabcf84,1, 0xcabcf8c,4, 0xcabd000,3, 0xcabd010,13, 0xcabd080,16, 0xcabd100,20, 0xcabd184,1, 0xcabd18c,4, 0xcabd200,18, 0xcabd250,2, 0xcabd260,4, 0xcabe000,1, 0xcabe014,1, 0xcabe01c,19, 0xcabe080,1, 0xcabe094,1, 0xcabe09c,19, 0xcabe100,8, 0xcabe200,13, 0xcabe240,9, 0xcabe280,12, 0xcabe2c0,2, 0xcabe2e0,12, 0xcac0000,3, 0xcac0080,20, 0xcac0100,10, 0xcac0140,1, 0xcac0154,1, 0xcac015c,2, 0xcac0200,15, 0xcac0240,4, 0xcac0260,17, 0xcac02c0,6, 0xcac02e0,2, 0xcac02ec,3, 0xcac0300,8, 0xcac0324,1, 0xcac0400,4, 0xcac0440,20, 0xcac04c0,9, 0xcac0500,33, 0xcac0600,11, 0xcac0640,11, 0xcac0680,1, 0xcac2000,1, 0xcac2200,4, 0xcac2300,53, 0xcac2400,4, 0xcac2500,40, 0xcac2600,15, 0xcac2640,4, 0xcac2660,17, 0xcac26c0,6, 0xcac26e0,2, 0xcac26ec,3, 0xcac2700,8, 0xcac2724,1, 0xcac2800,20, 0xcac2c00,53, 0xcac2d00,53, 0xcac2e00,1, 0xcac3000,40, 0xcac3100,40, 0xcac3200,1, 0xcac3400,1, 0xcac3804,1, 0xcac3844,39, 0xcac3900,3, 0xcac3a00,3, 0xcac3a44,1, 0xcac3a50,4, 0xcac3a80,1, 0xcac4000,2, 0xcac4200,27, 0xcac4280,4, 0xcac42c0,25, 0xcac4340,6, 0xcac4360,2, 0xcac436c,3, 0xcac4380,8, 0xcac43a4,1, 0xcac4400,12, 0xcac4440,1, 0xcac8000,3, 0xcac8080,20, 0xcac8100,10, 0xcac8140,1, 0xcac8154,1, 0xcac815c,2, 0xcac8200,15, 0xcac8240,4, 0xcac8260,17, 0xcac82c0,6, 0xcac82e0,2, 0xcac82ec,3, 0xcac8300,8, 0xcac8324,1, 0xcac8400,4, 0xcac8440,20, 0xcac84c0,9, 0xcac8500,33, 0xcac8600,11, 0xcac8640,11, 0xcac8680,1, 0xcaca000,1, 0xcaca200,4, 0xcaca300,53, 0xcaca400,4, 0xcaca500,40, 0xcaca600,15, 0xcaca640,4, 0xcaca660,17, 0xcaca6c0,6, 0xcaca6e0,2, 0xcaca6ec,3, 0xcaca700,8, 0xcaca724,1, 0xcaca800,20, 0xcacac00,53, 0xcacad00,53, 0xcacae00,1, 0xcacb000,40, 0xcacb100,40, 0xcacb200,1, 0xcacb400,1, 0xcacb804,1, 0xcacb844,39, 0xcacb900,3, 0xcacba00,3, 0xcacba44,1, 0xcacba50,4, 0xcacba80,1, 0xcacc000,2, 0xcacc200,27, 0xcacc280,4, 0xcacc2c0,25, 0xcacc340,6, 0xcacc360,2, 0xcacc36c,3, 0xcacc380,8, 0xcacc3a4,1, 0xcacc400,12, 0xcacc440,1, 0xcad0000,4, 0xcad0020,3, 0xcad0030,2, 0xcad0200,1, 0xcad0224,10, 0xcad0250,5, 0xcad0280,1, 0xcad0288,24, 0xcad0300,3, 0xcad0404,1, 0xcad0414,5, 0xcad0500,36, 0xcad0600,3, 0xcad0800,2, 0xcad1000,1, 0xcad1008,21, 0xcad1080,1, 0xcad1088,21, 0xcad1100,1, 0xcad1108,21, 0xcad1180,1, 0xcad1188,21, 0xcad1200,1, 0xcad1208,21, 0xcad1280,1, 0xcad1288,21, 0xcad1300,1, 0xcad1308,21, 0xcad1380,1, 0xcad1388,21, 0xcad1400,21, 0xcad1800,142, 0xcad1c00,1, 0xcad2000,4, 0xcad2100,39, 0xcad2200,3, 0xcad2214,3, 0xcad4004,1, 0xcad4020,16, 0xcad4080,2, 0xcad4094,1, 0xcad409c,2, 0xcad40c0,6, 0xcad4100,8, 0xcad8004,17, 0xcad8054,1, 0xcad805c,2, 0xcad8080,1, 0xcad80a0,2, 0xcad80b4,4, 0xcad8100,2, 0xcad8200,8, 0xcad8400,1, 0xcad8600,27, 0xcad8680,4, 0xcad86c0,25, 0xcad8740,6, 0xcad8760,2, 0xcad876c,3, 0xcad8780,8, 0xcad87a4,3, 0xcad8800,44, 0xcad8900,1, 0xcae0000,1, 0xcae0200,27, 0xcae0280,4, 0xcae02c0,25, 0xcae0340,6, 0xcae0360,2, 0xcae036c,3, 0xcae0380,8, 0xcae03a4,1, 0xcae0400,20, 0xcae0480,3, 0xcae0490,9, 0xcb00000,198, 0xcb00400,2, 0xcb00440,9, 0xcb00480,7, 0xcb00800,198, 0xcb00c00,2, 0xcb00c40,9, 0xcb00c80,7, 0xcb01000,198, 0xcb01400,198, 0xcb01804,6, 0xcb01824,6, 0xcb01880,2, 0xcb01904,1, 0xcb01918,28, 0xcb019a0,6, 0xcb019c0,6, 0xcb01c00,2, 0xcb01d00,2, 0xcb01e04,1, 0xcb01e74,43, 0xcb02000,2, 0xcb02100,2, 0xcb02204,1, 0xcb02274,43, 0xcb02400,3, 0xcb02600,27, 0xcb02680,4, 0xcb026c0,25, 0xcb02740,6, 0xcb02760,4, 0xcb02774,11, 0xcb027a4,4, 0xcb02800,4, 0xcb02900,34, 0xcb02a00,4, 0xcb02b00,34, 0xcb02c00,3, 0xcb02c10,12, 0xcb02e00,56, 0xcb02ee4,4, 0xcb02f00,4, 0xcb03000,1, 0xcb08000,4, 0xcb08100,42, 0xcb08200,1, 0xcb08210,3, 0xcb08220,3, 0xcb08230,3, 0xcb08240,1, 0xcb08248,3, 0xcb08400,4, 0xcb08500,58, 0xcb08600,1, 0xcb08610,3, 0xcb08620,3, 0xcb08630,3, 0xcb08640,1, 0xcb08648,3, 0xcb08800,4, 0xcb08900,36, 0xcb08a00,1, 0xcb08c00,4, 0xcb08c80,27, 0xcb08d00,1, 0xcb08d10,3, 0xcb08d20,3, 0xcb08d30,3, 0xcb08d40,1, 0xcb08d48,3, 0xcb08e00,4, 0xcb08e80,31, 0xcb08f00,1, 0xcb08f10,3, 0xcb08f20,3, 0xcb08f30,3, 0xcb08f40,1, 0xcb08f48,3, 0xcb09000,4, 0xcb09040,13, 0xcb09080,1, 0xcb09200,15, 0xcb09240,4, 0xcb09260,17, 0xcb092c0,6, 0xcb092e0,2, 0xcb092ec,3, 0xcb09300,8, 0xcb09324,8, 0xcb09400,68, 0xcb09600,60, 0xcb09700,4, 0xcb09720,5, 0xcb09740,1, 0xcb09780,2, 0xcb0978c,2, 0xcb097a0,1, 0xcb097c0,12, 0xcb09800,7, 0xcb09820,5, 0xcb09900,49, 0xcb09a00,1, 0xcb09a08,23, 0xcb09a84,1, 0xcb09a8c,1, 0xcb09a94,1, 0xcb09a9c,2, 0xcb09ac0,1, 0xcb09c00,10, 0xcb09c40,1, 0xcb09c50,3, 0xcb09c80,10, 0xcb09cc0,12, 0xcb09d00,3, 0xcb09e00,1, 0xcb0a000,4, 0xcb0a100,42, 0xcb0a200,1, 0xcb0a210,3, 0xcb0a220,3, 0xcb0a230,3, 0xcb0a240,1, 0xcb0a248,3, 0xcb0a400,4, 0xcb0a500,58, 0xcb0a600,1, 0xcb0a610,3, 0xcb0a620,3, 0xcb0a630,3, 0xcb0a640,1, 0xcb0a648,3, 0xcb0a800,4, 0xcb0a900,36, 0xcb0aa00,1, 0xcb0ac00,4, 0xcb0ac80,27, 0xcb0ad00,1, 0xcb0ad10,3, 0xcb0ad20,3, 0xcb0ad30,3, 0xcb0ad40,1, 0xcb0ad48,3, 0xcb0ae00,4, 0xcb0ae80,31, 0xcb0af00,1, 0xcb0af10,3, 0xcb0af20,3, 0xcb0af30,3, 0xcb0af40,1, 0xcb0af48,3, 0xcb0b000,4, 0xcb0b040,13, 0xcb0b080,1, 0xcb0b200,15, 0xcb0b240,4, 0xcb0b260,17, 0xcb0b2c0,6, 0xcb0b2e0,2, 0xcb0b2ec,3, 0xcb0b300,8, 0xcb0b324,8, 0xcb0b400,68, 0xcb0b600,60, 0xcb0b700,4, 0xcb0b720,5, 0xcb0b740,1, 0xcb0b780,2, 0xcb0b78c,2, 0xcb0b7a0,1, 0xcb0b7c0,12, 0xcb0b800,7, 0xcb0b820,5, 0xcb0b900,49, 0xcb0ba00,1, 0xcb0ba08,23, 0xcb0ba84,1, 0xcb0ba8c,1, 0xcb0ba94,1, 0xcb0ba9c,2, 0xcb0bac0,1, 0xcb0bc00,10, 0xcb0bc40,1, 0xcb0bc50,3, 0xcb0bc80,10, 0xcb0bcc0,12, 0xcb0bd00,3, 0xcb0be00,1, 0xcb0c000,20, 0xcb0c080,3, 0xcb0c090,1, 0xcb0c098,4, 0xcb10000,49, 0xcb10100,12, 0xcb10140,4, 0xcb10184,1, 0xcb10198,2, 0xcb101a4,1, 0xcb101b8,7, 0xcb101e0,4, 0xcb10200,20, 0xcb10280,3, 0xcb10290,9, 0xcb102c0,6, 0xcb102e0,1, 0xcb102e8,7, 0xcb10400,49, 0xcb10500,12, 0xcb10540,4, 0xcb10584,1, 0xcb10598,2, 0xcb105a4,1, 0xcb105b8,7, 0xcb105e0,4, 0xcb10600,20, 0xcb10680,3, 0xcb10690,9, 0xcb106c0,6, 0xcb106e0,1, 0xcb106e8,7, 0xcb10800,49, 0xcb10900,12, 0xcb10940,4, 0xcb10984,1, 0xcb10998,2, 0xcb109a4,1, 0xcb109b8,7, 0xcb109e0,4, 0xcb10a00,20, 0xcb10a80,3, 0xcb10a90,9, 0xcb10ac0,6, 0xcb10ae0,1, 0xcb10ae8,7, 0xcb10c00,49, 0xcb10d00,12, 0xcb10d40,4, 0xcb10d84,1, 0xcb10d98,2, 0xcb10da4,1, 0xcb10db8,7, 0xcb10de0,4, 0xcb10e00,20, 0xcb10e80,3, 0xcb10e90,9, 0xcb10ec0,6, 0xcb10ee0,1, 0xcb10ee8,7, 0xcb11000,49, 0xcb11100,12, 0xcb11140,4, 0xcb11184,1, 0xcb11198,2, 0xcb111a4,1, 0xcb111b8,7, 0xcb111e0,4, 0xcb11200,20, 0xcb11280,3, 0xcb11290,9, 0xcb112c0,6, 0xcb112e0,1, 0xcb112e8,7, 0xcb11400,49, 0xcb11500,12, 0xcb11540,4, 0xcb11584,1, 0xcb11598,2, 0xcb115a4,1, 0xcb115b8,7, 0xcb115e0,4, 0xcb11600,20, 0xcb11680,3, 0xcb11690,9, 0xcb116c0,6, 0xcb116e0,1, 0xcb116e8,7, 0xcb11800,49, 0xcb11900,12, 0xcb11940,4, 0xcb11984,1, 0xcb11998,2, 0xcb119a4,1, 0xcb119b8,7, 0xcb119e0,4, 0xcb11a00,20, 0xcb11a80,3, 0xcb11a90,9, 0xcb11ac0,6, 0xcb11ae0,1, 0xcb11ae8,7, 0xcb12000,20, 0xcb12080,10, 0xcb12100,20, 0xcb12180,10, 0xcb12200,12, 0xcb12400,20, 0xcb12480,10, 0xcb12500,20, 0xcb12580,10, 0xcb12600,12, 0xcb12800,3, 0xcb12840,12, 0xcb12880,12, 0xcb128c0,12, 0xcb12900,12, 0xcb12940,12, 0xcb12980,12, 0xcb129c0,12, 0xcb12a00,12, 0xcb12c00,12, 0xcb12c40,7, 0xcb12c60,10, 0xcb13004,1, 0xcb13044,43, 0xcb13100,7, 0xcb13120,7, 0xcb13140,2, 0xcb1314c,2, 0xcb13160,2, 0xcb1316c,2, 0xcb13180,18, 0xcb13200,2, 0xcb13220,10, 0xcb13260,20, 0xcb132c0,9, 0xcb13300,15, 0xcb13340,9, 0xcb13380,6, 0xcb133a0,4, 0xcb13400,5, 0xcb14000,53, 0xcb14100,3, 0xcb14110,15, 0xcb14200,53, 0xcb14300,3, 0xcb14310,15, 0xcb14400,5, 0xcb14420,5, 0xcb14440,18, 0xcb14800,3, 0xcb14810,2, 0xcb14820,3, 0xcb14830,2, 0xcb14840,1, 0xcb15000,7, 0xcb15020,7, 0xcb15080,19, 0xcb15100,19, 0xcb15180,25, 0xcb15200,20, 0xcb15280,20, 0xcb15300,8, 0xcb15340,4, 0xcb15380,15, 0xcb153c0,15, 0xcb15400,9, 0xcb15430,5, 0xcb16000,6, 0xcb16020,1, 0xcb16028,2, 0xcb16040,11, 0xcb16070,2, 0xcb18000,82, 0xcb18200,2, 0xcb18240,9, 0xcb18280,7, 0xcb18400,82, 0xcb18604,6, 0xcb18700,15, 0xcb18740,9, 0xcb18780,6, 0xcb187a0,6, 0xcb18800,2, 0xcb18810,3, 0xcb18880,24, 0xcb188e4,1, 0xcb188f0,12, 0xcb20000,22, 0xcb20080,22, 0xcb20100,5, 0xcb20120,5, 0xcb20140,3, 0xcb20160,16, 0xcb201c0,7, 0xcb201e0,2, 0xcb20200,7, 0xcb20220,2, 0xcb20400,15, 0xcb20440,3, 0xcb20450,3, 0xcb20460,24, 0xcb20500,15, 0xcb20540,3, 0xcb20550,3, 0xcb20560,24, 0xcb20600,15, 0xcb20640,3, 0xcb20650,3, 0xcb20660,24, 0xcb20700,15, 0xcb20740,3, 0xcb20750,3, 0xcb20760,24, 0xcb20800,4, 0xcb20820,16, 0xcb20880,10, 0xcb208c0,10, 0xcb20900,6, 0xcb20920,6, 0xcb20940,4, 0xcb20980,13, 0xcb209c0,13, 0xcb20a00,9, 0xcb21000,86, 0xcb21200,2, 0xcb21240,9, 0xcb21280,7, 0xcb21400,86, 0xcb21604,6, 0xcb21800,86, 0xcb21a00,2, 0xcb21a40,9, 0xcb21a80,7, 0xcb21c00,86, 0xcb21e04,6, 0xcb22000,15, 0xcb22040,4, 0xcb22060,17, 0xcb220c0,6, 0xcb220e0,4, 0xcb220f4,11, 0xcb22128,38, 0xcb221c4,2, 0xcb221d0,4, 0xcb22200,1, 0xcb24000,22, 0xcb24080,22, 0xcb24100,5, 0xcb24120,5, 0xcb24140,3, 0xcb24160,16, 0xcb241c0,7, 0xcb241e0,2, 0xcb24200,7, 0xcb24220,2, 0xcb24400,15, 0xcb24440,3, 0xcb24450,3, 0xcb24460,24, 0xcb24500,15, 0xcb24540,3, 0xcb24550,3, 0xcb24560,24, 0xcb24600,15, 0xcb24640,3, 0xcb24650,3, 0xcb24660,24, 0xcb24700,15, 0xcb24740,3, 0xcb24750,3, 0xcb24760,24, 0xcb24800,4, 0xcb24820,16, 0xcb24880,10, 0xcb248c0,10, 0xcb24900,6, 0xcb24920,6, 0xcb24940,4, 0xcb24980,13, 0xcb249c0,13, 0xcb24a00,9, 0xcb25000,86, 0xcb25200,2, 0xcb25240,9, 0xcb25280,7, 0xcb25400,86, 0xcb25604,6, 0xcb25800,86, 0xcb25a00,2, 0xcb25a40,9, 0xcb25a80,7, 0xcb25c00,86, 0xcb25e04,6, 0xcb26000,15, 0xcb26040,4, 0xcb26060,17, 0xcb260c0,6, 0xcb260e0,4, 0xcb260f4,11, 0xcb26128,38, 0xcb261c4,2, 0xcb261d0,4, 0xcb26200,1, 0xcb28000,9, 0xcb28040,9, 0xcb28080,5, 0xcb28100,21, 0xcb28160,5, 0xcb28180,45, 0xcb28240,13, 0xcb28280,9, 0xcb28400,9, 0xcb28440,9, 0xcb28480,5, 0xcb28500,21, 0xcb28560,5, 0xcb28580,45, 0xcb28640,13, 0xcb28680,9, 0xcb28800,12, 0xcb28900,15, 0xcb28940,4, 0xcb28960,17, 0xcb289c0,6, 0xcb289e0,4, 0xcb289f4,29, 0xcb2c000,30, 0xcb2c080,3, 0xcb2c090,19, 0xcb2c100,30, 0xcb2c180,3, 0xcb2c190,19, 0xcb2c200,30, 0xcb2c280,3, 0xcb2c290,19, 0xcb2c300,30, 0xcb2c380,3, 0xcb2c390,19, 0xcb2c400,30, 0xcb2c480,3, 0xcb2c490,19, 0xcb2c500,30, 0xcb2c580,3, 0xcb2c590,19, 0xcb2c600,30, 0xcb2c680,3, 0xcb2c690,19, 0xcb2c700,30, 0xcb2c780,3, 0xcb2c790,19, 0xcb2c800,12, 0xcb2c844,1, 0xcb2c854,8, 0xcb2c880,7, 0xcb2c8a0,2, 0xcb2c8ac,2, 0xcb2c8c0,26, 0xcb2c980,4, 0xcb2c9a0,5, 0xcb2c9c0,1, 0xcb2d000,3, 0xcb2d010,3, 0xcb2d020,3, 0xcb2d030,3, 0xcb2d040,3, 0xcb2d050,3, 0xcb2d060,3, 0xcb2d070,3, 0xcb2d080,6, 0xcb2d0a0,6, 0xcb2d0c0,6, 0xcb2d0e0,6, 0xcb2d100,6, 0xcb2d120,6, 0xcb2d140,6, 0xcb2d160,6, 0xcb2d200,68, 0xcb2d400,1, 0xcb2d804,1, 0xcb2d844,54, 0xcb2da00,12, 0xcb2da40,12, 0xcb2da80,12, 0xcb2dac0,12, 0xcb2db00,12, 0xcb2db40,12, 0xcb2db80,12, 0xcb2dbc0,12, 0xcb2dc00,28, 0xcb2dc80,10, 0xcb2e000,3, 0xcb2e020,6, 0xcb2e040,6, 0xcb2e060,15, 0xcb2e100,26, 0xcb2e180,15, 0xcb2e200,15, 0xcb2e240,4, 0xcb2e260,17, 0xcb2e2c0,6, 0xcb2e2e0,4, 0xcb2e2f4,18, 0xcb2e340,4, 0xcb2e360,17, 0xcb2e3c0,6, 0xcb2e3e0,4, 0xcb2e3f4,15, 0xcb30000,1, 0xcb31000,1020, 0xcb32000,194, 0xcb33000,1020, 0xcb34000,1020, 0xcb35000,1020, 0xcb36000,1020, 0xcb37000,1020, 0xcb38000,1020, 0xcb39000,1020, 0xcb3a000,1020, 0xcb3b000,194, 0xcb3c000,3, 0xcb3c010,13, 0xcb3c080,16, 0xcb3c100,20, 0xcb3c184,1, 0xcb3c18c,4, 0xcb3c200,3, 0xcb3c210,13, 0xcb3c280,16, 0xcb3c300,20, 0xcb3c384,1, 0xcb3c38c,4, 0xcb3c400,3, 0xcb3c410,13, 0xcb3c480,16, 0xcb3c500,20, 0xcb3c584,1, 0xcb3c58c,4, 0xcb3c600,3, 0xcb3c610,13, 0xcb3c680,16, 0xcb3c700,20, 0xcb3c784,1, 0xcb3c78c,4, 0xcb3c800,3, 0xcb3c810,13, 0xcb3c880,16, 0xcb3c900,20, 0xcb3c984,1, 0xcb3c98c,4, 0xcb3ca00,3, 0xcb3ca10,13, 0xcb3ca80,16, 0xcb3cb00,20, 0xcb3cb84,1, 0xcb3cb8c,4, 0xcb3cc00,3, 0xcb3cc10,13, 0xcb3cc80,16, 0xcb3cd00,20, 0xcb3cd84,1, 0xcb3cd8c,4, 0xcb3ce00,3, 0xcb3ce10,13, 0xcb3ce80,16, 0xcb3cf00,20, 0xcb3cf84,1, 0xcb3cf8c,4, 0xcb3d000,3, 0xcb3d010,13, 0xcb3d080,16, 0xcb3d100,20, 0xcb3d184,1, 0xcb3d18c,4, 0xcb3d200,18, 0xcb3d250,2, 0xcb3d260,4, 0xcb3e000,1, 0xcb3e014,1, 0xcb3e01c,19, 0xcb3e080,1, 0xcb3e094,1, 0xcb3e09c,19, 0xcb3e100,8, 0xcb3e200,13, 0xcb3e240,9, 0xcb3e280,12, 0xcb3e2c0,2, 0xcb3e2e0,12, 0xcb40000,3, 0xcb40080,20, 0xcb40100,10, 0xcb40140,1, 0xcb40154,1, 0xcb4015c,2, 0xcb40200,15, 0xcb40240,4, 0xcb40260,17, 0xcb402c0,6, 0xcb402e0,2, 0xcb402ec,3, 0xcb40300,8, 0xcb40324,1, 0xcb40400,4, 0xcb40440,20, 0xcb404c0,9, 0xcb40500,33, 0xcb40600,11, 0xcb40640,11, 0xcb40680,1, 0xcb42000,1, 0xcb42200,4, 0xcb42300,53, 0xcb42400,4, 0xcb42500,40, 0xcb42600,15, 0xcb42640,4, 0xcb42660,17, 0xcb426c0,6, 0xcb426e0,2, 0xcb426ec,3, 0xcb42700,8, 0xcb42724,1, 0xcb42800,20, 0xcb42c00,53, 0xcb42d00,53, 0xcb42e00,1, 0xcb43000,40, 0xcb43100,40, 0xcb43200,1, 0xcb43400,1, 0xcb43804,1, 0xcb43844,39, 0xcb43900,3, 0xcb43a00,3, 0xcb43a44,1, 0xcb43a50,4, 0xcb43a80,1, 0xcb44000,2, 0xcb44200,27, 0xcb44280,4, 0xcb442c0,25, 0xcb44340,6, 0xcb44360,2, 0xcb4436c,3, 0xcb44380,8, 0xcb443a4,1, 0xcb44400,12, 0xcb44440,1, 0xcb48000,3, 0xcb48080,20, 0xcb48100,10, 0xcb48140,1, 0xcb48154,1, 0xcb4815c,2, 0xcb48200,15, 0xcb48240,4, 0xcb48260,17, 0xcb482c0,6, 0xcb482e0,2, 0xcb482ec,3, 0xcb48300,8, 0xcb48324,1, 0xcb48400,4, 0xcb48440,20, 0xcb484c0,9, 0xcb48500,33, 0xcb48600,11, 0xcb48640,11, 0xcb48680,1, 0xcb4a000,1, 0xcb4a200,4, 0xcb4a300,53, 0xcb4a400,4, 0xcb4a500,40, 0xcb4a600,15, 0xcb4a640,4, 0xcb4a660,17, 0xcb4a6c0,6, 0xcb4a6e0,2, 0xcb4a6ec,3, 0xcb4a700,8, 0xcb4a724,1, 0xcb4a800,20, 0xcb4ac00,53, 0xcb4ad00,53, 0xcb4ae00,1, 0xcb4b000,40, 0xcb4b100,40, 0xcb4b200,1, 0xcb4b400,1, 0xcb4b804,1, 0xcb4b844,39, 0xcb4b900,3, 0xcb4ba00,3, 0xcb4ba44,1, 0xcb4ba50,4, 0xcb4ba80,1, 0xcb4c000,2, 0xcb4c200,27, 0xcb4c280,4, 0xcb4c2c0,25, 0xcb4c340,6, 0xcb4c360,2, 0xcb4c36c,3, 0xcb4c380,8, 0xcb4c3a4,1, 0xcb4c400,12, 0xcb4c440,1, 0xcb50000,4, 0xcb50020,3, 0xcb50030,2, 0xcb50200,1, 0xcb50224,10, 0xcb50250,5, 0xcb50280,1, 0xcb50288,24, 0xcb50300,3, 0xcb50404,1, 0xcb50414,5, 0xcb50500,36, 0xcb50600,3, 0xcb50800,2, 0xcb51000,1, 0xcb51008,21, 0xcb51080,1, 0xcb51088,21, 0xcb51100,1, 0xcb51108,21, 0xcb51180,1, 0xcb51188,21, 0xcb51200,1, 0xcb51208,21, 0xcb51280,1, 0xcb51288,21, 0xcb51300,1, 0xcb51308,21, 0xcb51380,1, 0xcb51388,21, 0xcb51400,21, 0xcb51800,142, 0xcb51c00,1, 0xcb52000,4, 0xcb52100,39, 0xcb52200,3, 0xcb52214,3, 0xcb54004,1, 0xcb54020,16, 0xcb54080,2, 0xcb54094,1, 0xcb5409c,2, 0xcb540c0,6, 0xcb54100,8, 0xcb58004,17, 0xcb58054,1, 0xcb5805c,2, 0xcb58080,1, 0xcb580a0,2, 0xcb580b4,4, 0xcb58100,2, 0xcb58200,8, 0xcb58400,1, 0xcb58600,27, 0xcb58680,4, 0xcb586c0,25, 0xcb58740,6, 0xcb58760,2, 0xcb5876c,3, 0xcb58780,8, 0xcb587a4,3, 0xcb58800,44, 0xcb58900,1, 0xcb60000,1, 0xcb60200,27, 0xcb60280,4, 0xcb602c0,25, 0xcb60340,6, 0xcb60360,2, 0xcb6036c,3, 0xcb60380,8, 0xcb603a4,1, 0xcb60400,20, 0xcb60480,3, 0xcb60490,9, 0xcb80000,198, 0xcb80400,2, 0xcb80440,9, 0xcb80480,7, 0xcb80800,198, 0xcb80c00,2, 0xcb80c40,9, 0xcb80c80,7, 0xcb81000,198, 0xcb81400,198, 0xcb81804,6, 0xcb81824,6, 0xcb81880,2, 0xcb81904,1, 0xcb81918,28, 0xcb819a0,6, 0xcb819c0,6, 0xcb81c00,2, 0xcb81d00,2, 0xcb81e04,1, 0xcb81e74,43, 0xcb82000,2, 0xcb82100,2, 0xcb82204,1, 0xcb82274,43, 0xcb82400,3, 0xcb82600,27, 0xcb82680,4, 0xcb826c0,25, 0xcb82740,6, 0xcb82760,4, 0xcb82774,11, 0xcb827a4,4, 0xcb82800,4, 0xcb82900,34, 0xcb82a00,4, 0xcb82b00,34, 0xcb82c00,3, 0xcb82c10,12, 0xcb82e00,56, 0xcb82ee4,4, 0xcb82f00,4, 0xcb83000,1, 0xcb88000,4, 0xcb88100,42, 0xcb88200,1, 0xcb88210,3, 0xcb88220,3, 0xcb88230,3, 0xcb88240,1, 0xcb88248,3, 0xcb88400,4, 0xcb88500,58, 0xcb88600,1, 0xcb88610,3, 0xcb88620,3, 0xcb88630,3, 0xcb88640,1, 0xcb88648,3, 0xcb88800,4, 0xcb88900,36, 0xcb88a00,1, 0xcb88c00,4, 0xcb88c80,27, 0xcb88d00,1, 0xcb88d10,3, 0xcb88d20,3, 0xcb88d30,3, 0xcb88d40,1, 0xcb88d48,3, 0xcb88e00,4, 0xcb88e80,31, 0xcb88f00,1, 0xcb88f10,3, 0xcb88f20,3, 0xcb88f30,3, 0xcb88f40,1, 0xcb88f48,3, 0xcb89000,4, 0xcb89040,13, 0xcb89080,1, 0xcb89200,15, 0xcb89240,4, 0xcb89260,17, 0xcb892c0,6, 0xcb892e0,2, 0xcb892ec,3, 0xcb89300,8, 0xcb89324,8, 0xcb89400,68, 0xcb89600,60, 0xcb89700,4, 0xcb89720,5, 0xcb89740,1, 0xcb89780,2, 0xcb8978c,2, 0xcb897a0,1, 0xcb897c0,12, 0xcb89800,7, 0xcb89820,5, 0xcb89900,49, 0xcb89a00,1, 0xcb89a08,23, 0xcb89a84,1, 0xcb89a8c,1, 0xcb89a94,1, 0xcb89a9c,2, 0xcb89ac0,1, 0xcb89c00,10, 0xcb89c40,1, 0xcb89c50,3, 0xcb89c80,10, 0xcb89cc0,12, 0xcb89d00,3, 0xcb89e00,1, 0xcb8a000,4, 0xcb8a100,42, 0xcb8a200,1, 0xcb8a210,3, 0xcb8a220,3, 0xcb8a230,3, 0xcb8a240,1, 0xcb8a248,3, 0xcb8a400,4, 0xcb8a500,58, 0xcb8a600,1, 0xcb8a610,3, 0xcb8a620,3, 0xcb8a630,3, 0xcb8a640,1, 0xcb8a648,3, 0xcb8a800,4, 0xcb8a900,36, 0xcb8aa00,1, 0xcb8ac00,4, 0xcb8ac80,27, 0xcb8ad00,1, 0xcb8ad10,3, 0xcb8ad20,3, 0xcb8ad30,3, 0xcb8ad40,1, 0xcb8ad48,3, 0xcb8ae00,4, 0xcb8ae80,31, 0xcb8af00,1, 0xcb8af10,3, 0xcb8af20,3, 0xcb8af30,3, 0xcb8af40,1, 0xcb8af48,3, 0xcb8b000,4, 0xcb8b040,13, 0xcb8b080,1, 0xcb8b200,15, 0xcb8b240,4, 0xcb8b260,17, 0xcb8b2c0,6, 0xcb8b2e0,2, 0xcb8b2ec,3, 0xcb8b300,8, 0xcb8b324,8, 0xcb8b400,68, 0xcb8b600,60, 0xcb8b700,4, 0xcb8b720,5, 0xcb8b740,1, 0xcb8b780,2, 0xcb8b78c,2, 0xcb8b7a0,1, 0xcb8b7c0,12, 0xcb8b800,7, 0xcb8b820,5, 0xcb8b900,49, 0xcb8ba00,1, 0xcb8ba08,23, 0xcb8ba84,1, 0xcb8ba8c,1, 0xcb8ba94,1, 0xcb8ba9c,2, 0xcb8bac0,1, 0xcb8bc00,10, 0xcb8bc40,1, 0xcb8bc50,3, 0xcb8bc80,10, 0xcb8bcc0,12, 0xcb8bd00,3, 0xcb8be00,1, 0xcb8c000,20, 0xcb8c080,3, 0xcb8c090,1, 0xcb8c098,4, 0xcb90000,49, 0xcb90100,12, 0xcb90140,4, 0xcb90184,1, 0xcb90198,2, 0xcb901a4,1, 0xcb901b8,7, 0xcb901e0,4, 0xcb90200,20, 0xcb90280,3, 0xcb90290,9, 0xcb902c0,6, 0xcb902e0,1, 0xcb902e8,7, 0xcb90400,49, 0xcb90500,12, 0xcb90540,4, 0xcb90584,1, 0xcb90598,2, 0xcb905a4,1, 0xcb905b8,7, 0xcb905e0,4, 0xcb90600,20, 0xcb90680,3, 0xcb90690,9, 0xcb906c0,6, 0xcb906e0,1, 0xcb906e8,7, 0xcb90800,49, 0xcb90900,12, 0xcb90940,4, 0xcb90984,1, 0xcb90998,2, 0xcb909a4,1, 0xcb909b8,7, 0xcb909e0,4, 0xcb90a00,20, 0xcb90a80,3, 0xcb90a90,9, 0xcb90ac0,6, 0xcb90ae0,1, 0xcb90ae8,7, 0xcb90c00,49, 0xcb90d00,12, 0xcb90d40,4, 0xcb90d84,1, 0xcb90d98,2, 0xcb90da4,1, 0xcb90db8,7, 0xcb90de0,4, 0xcb90e00,20, 0xcb90e80,3, 0xcb90e90,9, 0xcb90ec0,6, 0xcb90ee0,1, 0xcb90ee8,7, 0xcb91000,49, 0xcb91100,12, 0xcb91140,4, 0xcb91184,1, 0xcb91198,2, 0xcb911a4,1, 0xcb911b8,7, 0xcb911e0,4, 0xcb91200,20, 0xcb91280,3, 0xcb91290,9, 0xcb912c0,6, 0xcb912e0,1, 0xcb912e8,7, 0xcb91400,49, 0xcb91500,12, 0xcb91540,4, 0xcb91584,1, 0xcb91598,2, 0xcb915a4,1, 0xcb915b8,7, 0xcb915e0,4, 0xcb91600,20, 0xcb91680,3, 0xcb91690,9, 0xcb916c0,6, 0xcb916e0,1, 0xcb916e8,7, 0xcb91800,49, 0xcb91900,12, 0xcb91940,4, 0xcb91984,1, 0xcb91998,2, 0xcb919a4,1, 0xcb919b8,7, 0xcb919e0,4, 0xcb91a00,20, 0xcb91a80,3, 0xcb91a90,9, 0xcb91ac0,6, 0xcb91ae0,1, 0xcb91ae8,7, 0xcb92000,20, 0xcb92080,10, 0xcb92100,20, 0xcb92180,10, 0xcb92200,12, 0xcb92400,20, 0xcb92480,10, 0xcb92500,20, 0xcb92580,10, 0xcb92600,12, 0xcb92800,3, 0xcb92840,12, 0xcb92880,12, 0xcb928c0,12, 0xcb92900,12, 0xcb92940,12, 0xcb92980,12, 0xcb929c0,12, 0xcb92a00,12, 0xcb92c00,12, 0xcb92c40,7, 0xcb92c60,10, 0xcb93004,1, 0xcb93044,43, 0xcb93100,7, 0xcb93120,7, 0xcb93140,2, 0xcb9314c,2, 0xcb93160,2, 0xcb9316c,2, 0xcb93180,18, 0xcb93200,2, 0xcb93220,10, 0xcb93260,20, 0xcb932c0,9, 0xcb93300,15, 0xcb93340,9, 0xcb93380,6, 0xcb933a0,4, 0xcb93400,5, 0xcb94000,53, 0xcb94100,3, 0xcb94110,15, 0xcb94200,53, 0xcb94300,3, 0xcb94310,15, 0xcb94400,5, 0xcb94420,5, 0xcb94440,18, 0xcb94800,3, 0xcb94810,2, 0xcb94820,3, 0xcb94830,2, 0xcb94840,1, 0xcb95000,7, 0xcb95020,7, 0xcb95080,19, 0xcb95100,19, 0xcb95180,25, 0xcb95200,20, 0xcb95280,20, 0xcb95300,8, 0xcb95340,4, 0xcb95380,15, 0xcb953c0,15, 0xcb95400,9, 0xcb95430,5, 0xcb96000,6, 0xcb96020,1, 0xcb96028,2, 0xcb96040,11, 0xcb96070,2, 0xcb98000,82, 0xcb98200,2, 0xcb98240,9, 0xcb98280,7, 0xcb98400,82, 0xcb98604,6, 0xcb98700,15, 0xcb98740,9, 0xcb98780,6, 0xcb987a0,6, 0xcb98800,2, 0xcb98810,3, 0xcb98880,24, 0xcb988e4,1, 0xcb988f0,12, 0xcba0000,22, 0xcba0080,22, 0xcba0100,5, 0xcba0120,5, 0xcba0140,3, 0xcba0160,16, 0xcba01c0,7, 0xcba01e0,2, 0xcba0200,7, 0xcba0220,2, 0xcba0400,15, 0xcba0440,3, 0xcba0450,3, 0xcba0460,24, 0xcba0500,15, 0xcba0540,3, 0xcba0550,3, 0xcba0560,24, 0xcba0600,15, 0xcba0640,3, 0xcba0650,3, 0xcba0660,24, 0xcba0700,15, 0xcba0740,3, 0xcba0750,3, 0xcba0760,24, 0xcba0800,4, 0xcba0820,16, 0xcba0880,10, 0xcba08c0,10, 0xcba0900,6, 0xcba0920,6, 0xcba0940,4, 0xcba0980,13, 0xcba09c0,13, 0xcba0a00,9, 0xcba1000,86, 0xcba1200,2, 0xcba1240,9, 0xcba1280,7, 0xcba1400,86, 0xcba1604,6, 0xcba1800,86, 0xcba1a00,2, 0xcba1a40,9, 0xcba1a80,7, 0xcba1c00,86, 0xcba1e04,6, 0xcba2000,15, 0xcba2040,4, 0xcba2060,17, 0xcba20c0,6, 0xcba20e0,4, 0xcba20f4,11, 0xcba2128,38, 0xcba21c4,2, 0xcba21d0,4, 0xcba2200,1, 0xcba4000,22, 0xcba4080,22, 0xcba4100,5, 0xcba4120,5, 0xcba4140,3, 0xcba4160,16, 0xcba41c0,7, 0xcba41e0,2, 0xcba4200,7, 0xcba4220,2, 0xcba4400,15, 0xcba4440,3, 0xcba4450,3, 0xcba4460,24, 0xcba4500,15, 0xcba4540,3, 0xcba4550,3, 0xcba4560,24, 0xcba4600,15, 0xcba4640,3, 0xcba4650,3, 0xcba4660,24, 0xcba4700,15, 0xcba4740,3, 0xcba4750,3, 0xcba4760,24, 0xcba4800,4, 0xcba4820,16, 0xcba4880,10, 0xcba48c0,10, 0xcba4900,6, 0xcba4920,6, 0xcba4940,4, 0xcba4980,13, 0xcba49c0,13, 0xcba4a00,9, 0xcba5000,86, 0xcba5200,2, 0xcba5240,9, 0xcba5280,7, 0xcba5400,86, 0xcba5604,6, 0xcba5800,86, 0xcba5a00,2, 0xcba5a40,9, 0xcba5a80,7, 0xcba5c00,86, 0xcba5e04,6, 0xcba6000,15, 0xcba6040,4, 0xcba6060,17, 0xcba60c0,6, 0xcba60e0,4, 0xcba60f4,11, 0xcba6128,38, 0xcba61c4,2, 0xcba61d0,4, 0xcba6200,1, 0xcba8000,9, 0xcba8040,9, 0xcba8080,5, 0xcba8100,21, 0xcba8160,5, 0xcba8180,45, 0xcba8240,13, 0xcba8280,9, 0xcba8400,9, 0xcba8440,9, 0xcba8480,5, 0xcba8500,21, 0xcba8560,5, 0xcba8580,45, 0xcba8640,13, 0xcba8680,9, 0xcba8800,12, 0xcba8900,15, 0xcba8940,4, 0xcba8960,17, 0xcba89c0,6, 0xcba89e0,4, 0xcba89f4,29, 0xcbac000,30, 0xcbac080,3, 0xcbac090,19, 0xcbac100,30, 0xcbac180,3, 0xcbac190,19, 0xcbac200,30, 0xcbac280,3, 0xcbac290,19, 0xcbac300,30, 0xcbac380,3, 0xcbac390,19, 0xcbac400,30, 0xcbac480,3, 0xcbac490,19, 0xcbac500,30, 0xcbac580,3, 0xcbac590,19, 0xcbac600,30, 0xcbac680,3, 0xcbac690,19, 0xcbac700,30, 0xcbac780,3, 0xcbac790,19, 0xcbac800,12, 0xcbac844,1, 0xcbac854,8, 0xcbac880,7, 0xcbac8a0,2, 0xcbac8ac,2, 0xcbac8c0,26, 0xcbac980,4, 0xcbac9a0,5, 0xcbac9c0,1, 0xcbad000,3, 0xcbad010,3, 0xcbad020,3, 0xcbad030,3, 0xcbad040,3, 0xcbad050,3, 0xcbad060,3, 0xcbad070,3, 0xcbad080,6, 0xcbad0a0,6, 0xcbad0c0,6, 0xcbad0e0,6, 0xcbad100,6, 0xcbad120,6, 0xcbad140,6, 0xcbad160,6, 0xcbad200,68, 0xcbad400,1, 0xcbad804,1, 0xcbad844,54, 0xcbada00,12, 0xcbada40,12, 0xcbada80,12, 0xcbadac0,12, 0xcbadb00,12, 0xcbadb40,12, 0xcbadb80,12, 0xcbadbc0,12, 0xcbadc00,28, 0xcbadc80,10, 0xcbae000,3, 0xcbae020,6, 0xcbae040,6, 0xcbae060,15, 0xcbae100,26, 0xcbae180,15, 0xcbae200,15, 0xcbae240,4, 0xcbae260,17, 0xcbae2c0,6, 0xcbae2e0,4, 0xcbae2f4,18, 0xcbae340,4, 0xcbae360,17, 0xcbae3c0,6, 0xcbae3e0,4, 0xcbae3f4,15, 0xcbb0000,1, 0xcbb1000,1020, 0xcbb2000,194, 0xcbb3000,1020, 0xcbb4000,1020, 0xcbb5000,1020, 0xcbb6000,1020, 0xcbb7000,1020, 0xcbb8000,1020, 0xcbb9000,1020, 0xcbba000,1020, 0xcbbb000,194, 0xcbbc000,3, 0xcbbc010,13, 0xcbbc080,16, 0xcbbc100,20, 0xcbbc184,1, 0xcbbc18c,4, 0xcbbc200,3, 0xcbbc210,13, 0xcbbc280,16, 0xcbbc300,20, 0xcbbc384,1, 0xcbbc38c,4, 0xcbbc400,3, 0xcbbc410,13, 0xcbbc480,16, 0xcbbc500,20, 0xcbbc584,1, 0xcbbc58c,4, 0xcbbc600,3, 0xcbbc610,13, 0xcbbc680,16, 0xcbbc700,20, 0xcbbc784,1, 0xcbbc78c,4, 0xcbbc800,3, 0xcbbc810,13, 0xcbbc880,16, 0xcbbc900,20, 0xcbbc984,1, 0xcbbc98c,4, 0xcbbca00,3, 0xcbbca10,13, 0xcbbca80,16, 0xcbbcb00,20, 0xcbbcb84,1, 0xcbbcb8c,4, 0xcbbcc00,3, 0xcbbcc10,13, 0xcbbcc80,16, 0xcbbcd00,20, 0xcbbcd84,1, 0xcbbcd8c,4, 0xcbbce00,3, 0xcbbce10,13, 0xcbbce80,16, 0xcbbcf00,20, 0xcbbcf84,1, 0xcbbcf8c,4, 0xcbbd000,3, 0xcbbd010,13, 0xcbbd080,16, 0xcbbd100,20, 0xcbbd184,1, 0xcbbd18c,4, 0xcbbd200,18, 0xcbbd250,2, 0xcbbd260,4, 0xcbbe000,1, 0xcbbe014,1, 0xcbbe01c,19, 0xcbbe080,1, 0xcbbe094,1, 0xcbbe09c,19, 0xcbbe100,8, 0xcbbe200,13, 0xcbbe240,9, 0xcbbe280,12, 0xcbbe2c0,2, 0xcbbe2e0,12, 0xcbc0000,3, 0xcbc0080,20, 0xcbc0100,10, 0xcbc0140,1, 0xcbc0154,1, 0xcbc015c,2, 0xcbc0200,15, 0xcbc0240,4, 0xcbc0260,17, 0xcbc02c0,6, 0xcbc02e0,2, 0xcbc02ec,3, 0xcbc0300,8, 0xcbc0324,1, 0xcbc0400,4, 0xcbc0440,20, 0xcbc04c0,9, 0xcbc0500,33, 0xcbc0600,11, 0xcbc0640,11, 0xcbc0680,1, 0xcbc2000,1, 0xcbc2200,4, 0xcbc2300,53, 0xcbc2400,4, 0xcbc2500,40, 0xcbc2600,15, 0xcbc2640,4, 0xcbc2660,17, 0xcbc26c0,6, 0xcbc26e0,2, 0xcbc26ec,3, 0xcbc2700,8, 0xcbc2724,1, 0xcbc2800,20, 0xcbc2c00,53, 0xcbc2d00,53, 0xcbc2e00,1, 0xcbc3000,40, 0xcbc3100,40, 0xcbc3200,1, 0xcbc3400,1, 0xcbc3804,1, 0xcbc3844,39, 0xcbc3900,3, 0xcbc3a00,3, 0xcbc3a44,1, 0xcbc3a50,4, 0xcbc3a80,1, 0xcbc4000,2, 0xcbc4200,27, 0xcbc4280,4, 0xcbc42c0,25, 0xcbc4340,6, 0xcbc4360,2, 0xcbc436c,3, 0xcbc4380,8, 0xcbc43a4,1, 0xcbc4400,12, 0xcbc4440,1, 0xcbc8000,3, 0xcbc8080,20, 0xcbc8100,10, 0xcbc8140,1, 0xcbc8154,1, 0xcbc815c,2, 0xcbc8200,15, 0xcbc8240,4, 0xcbc8260,17, 0xcbc82c0,6, 0xcbc82e0,2, 0xcbc82ec,3, 0xcbc8300,8, 0xcbc8324,1, 0xcbc8400,4, 0xcbc8440,20, 0xcbc84c0,9, 0xcbc8500,33, 0xcbc8600,11, 0xcbc8640,11, 0xcbc8680,1, 0xcbca000,1, 0xcbca200,4, 0xcbca300,53, 0xcbca400,4, 0xcbca500,40, 0xcbca600,15, 0xcbca640,4, 0xcbca660,17, 0xcbca6c0,6, 0xcbca6e0,2, 0xcbca6ec,3, 0xcbca700,8, 0xcbca724,1, 0xcbca800,20, 0xcbcac00,53, 0xcbcad00,53, 0xcbcae00,1, 0xcbcb000,40, 0xcbcb100,40, 0xcbcb200,1, 0xcbcb400,1, 0xcbcb804,1, 0xcbcb844,39, 0xcbcb900,3, 0xcbcba00,3, 0xcbcba44,1, 0xcbcba50,4, 0xcbcba80,1, 0xcbcc000,2, 0xcbcc200,27, 0xcbcc280,4, 0xcbcc2c0,25, 0xcbcc340,6, 0xcbcc360,2, 0xcbcc36c,3, 0xcbcc380,8, 0xcbcc3a4,1, 0xcbcc400,12, 0xcbcc440,1, 0xcbd0000,4, 0xcbd0020,3, 0xcbd0030,2, 0xcbd0200,1, 0xcbd0224,10, 0xcbd0250,5, 0xcbd0280,1, 0xcbd0288,24, 0xcbd0300,3, 0xcbd0404,1, 0xcbd0414,5, 0xcbd0500,36, 0xcbd0600,3, 0xcbd0800,2, 0xcbd1000,1, 0xcbd1008,21, 0xcbd1080,1, 0xcbd1088,21, 0xcbd1100,1, 0xcbd1108,21, 0xcbd1180,1, 0xcbd1188,21, 0xcbd1200,1, 0xcbd1208,21, 0xcbd1280,1, 0xcbd1288,21, 0xcbd1300,1, 0xcbd1308,21, 0xcbd1380,1, 0xcbd1388,21, 0xcbd1400,21, 0xcbd1800,142, 0xcbd1c00,1, 0xcbd2000,4, 0xcbd2100,39, 0xcbd2200,3, 0xcbd2214,3, 0xcbd4004,1, 0xcbd4020,16, 0xcbd4080,2, 0xcbd4094,1, 0xcbd409c,2, 0xcbd40c0,6, 0xcbd4100,8, 0xcbd8004,17, 0xcbd8054,1, 0xcbd805c,2, 0xcbd8080,1, 0xcbd80a0,2, 0xcbd80b4,4, 0xcbd8100,2, 0xcbd8200,8, 0xcbd8400,1, 0xcbd8600,27, 0xcbd8680,4, 0xcbd86c0,25, 0xcbd8740,6, 0xcbd8760,2, 0xcbd876c,3, 0xcbd8780,8, 0xcbd87a4,3, 0xcbd8800,44, 0xcbd8900,1, 0xcbe0000,1, 0xcbe0200,27, 0xcbe0280,4, 0xcbe02c0,25, 0xcbe0340,6, 0xcbe0360,2, 0xcbe036c,3, 0xcbe0380,8, 0xcbe03a4,1, 0xcbe0400,20, 0xcbe0480,3, 0xcbe0490,9, 0xcc00000,198, 0xcc00400,2, 0xcc00440,9, 0xcc00480,7, 0xcc00800,198, 0xcc00c00,2, 0xcc00c40,9, 0xcc00c80,7, 0xcc01000,198, 0xcc01400,198, 0xcc01804,6, 0xcc01824,6, 0xcc01880,2, 0xcc01904,1, 0xcc01918,28, 0xcc019a0,6, 0xcc019c0,6, 0xcc01c00,2, 0xcc01d00,2, 0xcc01e04,1, 0xcc01e74,43, 0xcc02000,2, 0xcc02100,2, 0xcc02204,1, 0xcc02274,43, 0xcc02400,3, 0xcc02600,27, 0xcc02680,4, 0xcc026c0,25, 0xcc02740,6, 0xcc02760,4, 0xcc02774,11, 0xcc027a4,4, 0xcc02800,4, 0xcc02900,34, 0xcc02a00,4, 0xcc02b00,34, 0xcc02c00,3, 0xcc02c10,12, 0xcc02e00,56, 0xcc02ee4,4, 0xcc02f00,4, 0xcc03000,1, 0xcc08000,4, 0xcc08100,42, 0xcc08200,1, 0xcc08210,3, 0xcc08220,3, 0xcc08230,3, 0xcc08240,1, 0xcc08248,3, 0xcc08400,4, 0xcc08500,58, 0xcc08600,1, 0xcc08610,3, 0xcc08620,3, 0xcc08630,3, 0xcc08640,1, 0xcc08648,3, 0xcc08800,4, 0xcc08900,36, 0xcc08a00,1, 0xcc08c00,4, 0xcc08c80,27, 0xcc08d00,1, 0xcc08d10,3, 0xcc08d20,3, 0xcc08d30,3, 0xcc08d40,1, 0xcc08d48,3, 0xcc08e00,4, 0xcc08e80,31, 0xcc08f00,1, 0xcc08f10,3, 0xcc08f20,3, 0xcc08f30,3, 0xcc08f40,1, 0xcc08f48,3, 0xcc09000,4, 0xcc09040,13, 0xcc09080,1, 0xcc09200,15, 0xcc09240,4, 0xcc09260,17, 0xcc092c0,6, 0xcc092e0,2, 0xcc092ec,3, 0xcc09300,8, 0xcc09324,8, 0xcc09400,68, 0xcc09600,60, 0xcc09700,4, 0xcc09720,5, 0xcc09740,1, 0xcc09780,2, 0xcc0978c,2, 0xcc097a0,1, 0xcc097c0,12, 0xcc09800,7, 0xcc09820,5, 0xcc09900,49, 0xcc09a00,1, 0xcc09a08,23, 0xcc09a84,1, 0xcc09a8c,1, 0xcc09a94,1, 0xcc09a9c,2, 0xcc09ac0,1, 0xcc09c00,10, 0xcc09c40,1, 0xcc09c50,3, 0xcc09c80,10, 0xcc09cc0,12, 0xcc09d00,3, 0xcc09e00,1, 0xcc0a000,4, 0xcc0a100,42, 0xcc0a200,1, 0xcc0a210,3, 0xcc0a220,3, 0xcc0a230,3, 0xcc0a240,1, 0xcc0a248,3, 0xcc0a400,4, 0xcc0a500,58, 0xcc0a600,1, 0xcc0a610,3, 0xcc0a620,3, 0xcc0a630,3, 0xcc0a640,1, 0xcc0a648,3, 0xcc0a800,4, 0xcc0a900,36, 0xcc0aa00,1, 0xcc0ac00,4, 0xcc0ac80,27, 0xcc0ad00,1, 0xcc0ad10,3, 0xcc0ad20,3, 0xcc0ad30,3, 0xcc0ad40,1, 0xcc0ad48,3, 0xcc0ae00,4, 0xcc0ae80,31, 0xcc0af00,1, 0xcc0af10,3, 0xcc0af20,3, 0xcc0af30,3, 0xcc0af40,1, 0xcc0af48,3, 0xcc0b000,4, 0xcc0b040,13, 0xcc0b080,1, 0xcc0b200,15, 0xcc0b240,4, 0xcc0b260,17, 0xcc0b2c0,6, 0xcc0b2e0,2, 0xcc0b2ec,3, 0xcc0b300,8, 0xcc0b324,8, 0xcc0b400,68, 0xcc0b600,60, 0xcc0b700,4, 0xcc0b720,5, 0xcc0b740,1, 0xcc0b780,2, 0xcc0b78c,2, 0xcc0b7a0,1, 0xcc0b7c0,12, 0xcc0b800,7, 0xcc0b820,5, 0xcc0b900,49, 0xcc0ba00,1, 0xcc0ba08,23, 0xcc0ba84,1, 0xcc0ba8c,1, 0xcc0ba94,1, 0xcc0ba9c,2, 0xcc0bac0,1, 0xcc0bc00,10, 0xcc0bc40,1, 0xcc0bc50,3, 0xcc0bc80,10, 0xcc0bcc0,12, 0xcc0bd00,3, 0xcc0be00,1, 0xcc0c000,20, 0xcc0c080,3, 0xcc0c090,1, 0xcc0c098,4, 0xcc10000,49, 0xcc10100,12, 0xcc10140,4, 0xcc10184,1, 0xcc10198,2, 0xcc101a4,1, 0xcc101b8,7, 0xcc101e0,4, 0xcc10200,20, 0xcc10280,3, 0xcc10290,9, 0xcc102c0,6, 0xcc102e0,1, 0xcc102e8,7, 0xcc10400,49, 0xcc10500,12, 0xcc10540,4, 0xcc10584,1, 0xcc10598,2, 0xcc105a4,1, 0xcc105b8,7, 0xcc105e0,4, 0xcc10600,20, 0xcc10680,3, 0xcc10690,9, 0xcc106c0,6, 0xcc106e0,1, 0xcc106e8,7, 0xcc10800,49, 0xcc10900,12, 0xcc10940,4, 0xcc10984,1, 0xcc10998,2, 0xcc109a4,1, 0xcc109b8,7, 0xcc109e0,4, 0xcc10a00,20, 0xcc10a80,3, 0xcc10a90,9, 0xcc10ac0,6, 0xcc10ae0,1, 0xcc10ae8,7, 0xcc10c00,49, 0xcc10d00,12, 0xcc10d40,4, 0xcc10d84,1, 0xcc10d98,2, 0xcc10da4,1, 0xcc10db8,7, 0xcc10de0,4, 0xcc10e00,20, 0xcc10e80,3, 0xcc10e90,9, 0xcc10ec0,6, 0xcc10ee0,1, 0xcc10ee8,7, 0xcc11000,49, 0xcc11100,12, 0xcc11140,4, 0xcc11184,1, 0xcc11198,2, 0xcc111a4,1, 0xcc111b8,7, 0xcc111e0,4, 0xcc11200,20, 0xcc11280,3, 0xcc11290,9, 0xcc112c0,6, 0xcc112e0,1, 0xcc112e8,7, 0xcc11400,49, 0xcc11500,12, 0xcc11540,4, 0xcc11584,1, 0xcc11598,2, 0xcc115a4,1, 0xcc115b8,7, 0xcc115e0,4, 0xcc11600,20, 0xcc11680,3, 0xcc11690,9, 0xcc116c0,6, 0xcc116e0,1, 0xcc116e8,7, 0xcc11800,49, 0xcc11900,12, 0xcc11940,4, 0xcc11984,1, 0xcc11998,2, 0xcc119a4,1, 0xcc119b8,7, 0xcc119e0,4, 0xcc11a00,20, 0xcc11a80,3, 0xcc11a90,9, 0xcc11ac0,6, 0xcc11ae0,1, 0xcc11ae8,7, 0xcc12000,20, 0xcc12080,10, 0xcc12100,20, 0xcc12180,10, 0xcc12200,12, 0xcc12400,20, 0xcc12480,10, 0xcc12500,20, 0xcc12580,10, 0xcc12600,12, 0xcc12800,3, 0xcc12840,12, 0xcc12880,12, 0xcc128c0,12, 0xcc12900,12, 0xcc12940,12, 0xcc12980,12, 0xcc129c0,12, 0xcc12a00,12, 0xcc12c00,12, 0xcc12c40,7, 0xcc12c60,10, 0xcc13004,1, 0xcc13044,43, 0xcc13100,7, 0xcc13120,7, 0xcc13140,2, 0xcc1314c,2, 0xcc13160,2, 0xcc1316c,2, 0xcc13180,18, 0xcc13200,2, 0xcc13220,10, 0xcc13260,20, 0xcc132c0,9, 0xcc13300,15, 0xcc13340,9, 0xcc13380,6, 0xcc133a0,4, 0xcc13400,5, 0xcc14000,53, 0xcc14100,3, 0xcc14110,15, 0xcc14200,53, 0xcc14300,3, 0xcc14310,15, 0xcc14400,5, 0xcc14420,5, 0xcc14440,18, 0xcc14800,3, 0xcc14810,2, 0xcc14820,3, 0xcc14830,2, 0xcc14840,1, 0xcc15000,7, 0xcc15020,7, 0xcc15080,19, 0xcc15100,19, 0xcc15180,25, 0xcc15200,20, 0xcc15280,20, 0xcc15300,8, 0xcc15340,4, 0xcc15380,15, 0xcc153c0,15, 0xcc15400,9, 0xcc15430,5, 0xcc16000,6, 0xcc16020,1, 0xcc16028,2, 0xcc16040,11, 0xcc16070,2, 0xcc18000,82, 0xcc18200,2, 0xcc18240,9, 0xcc18280,7, 0xcc18400,82, 0xcc18604,6, 0xcc18700,15, 0xcc18740,9, 0xcc18780,6, 0xcc187a0,6, 0xcc18800,2, 0xcc18810,3, 0xcc18880,24, 0xcc188e4,1, 0xcc188f0,12, 0xcc20000,22, 0xcc20080,22, 0xcc20100,5, 0xcc20120,5, 0xcc20140,3, 0xcc20160,16, 0xcc201c0,7, 0xcc201e0,2, 0xcc20200,7, 0xcc20220,2, 0xcc20400,15, 0xcc20440,3, 0xcc20450,3, 0xcc20460,24, 0xcc20500,15, 0xcc20540,3, 0xcc20550,3, 0xcc20560,24, 0xcc20600,15, 0xcc20640,3, 0xcc20650,3, 0xcc20660,24, 0xcc20700,15, 0xcc20740,3, 0xcc20750,3, 0xcc20760,24, 0xcc20800,4, 0xcc20820,16, 0xcc20880,10, 0xcc208c0,10, 0xcc20900,6, 0xcc20920,6, 0xcc20940,4, 0xcc20980,13, 0xcc209c0,13, 0xcc20a00,9, 0xcc21000,86, 0xcc21200,2, 0xcc21240,9, 0xcc21280,7, 0xcc21400,86, 0xcc21604,6, 0xcc21800,86, 0xcc21a00,2, 0xcc21a40,9, 0xcc21a80,7, 0xcc21c00,86, 0xcc21e04,6, 0xcc22000,15, 0xcc22040,4, 0xcc22060,17, 0xcc220c0,6, 0xcc220e0,4, 0xcc220f4,11, 0xcc22128,38, 0xcc221c4,2, 0xcc221d0,4, 0xcc22200,1, 0xcc24000,22, 0xcc24080,22, 0xcc24100,5, 0xcc24120,5, 0xcc24140,3, 0xcc24160,16, 0xcc241c0,7, 0xcc241e0,2, 0xcc24200,7, 0xcc24220,2, 0xcc24400,15, 0xcc24440,3, 0xcc24450,3, 0xcc24460,24, 0xcc24500,15, 0xcc24540,3, 0xcc24550,3, 0xcc24560,24, 0xcc24600,15, 0xcc24640,3, 0xcc24650,3, 0xcc24660,24, 0xcc24700,15, 0xcc24740,3, 0xcc24750,3, 0xcc24760,24, 0xcc24800,4, 0xcc24820,16, 0xcc24880,10, 0xcc248c0,10, 0xcc24900,6, 0xcc24920,6, 0xcc24940,4, 0xcc24980,13, 0xcc249c0,13, 0xcc24a00,9, 0xcc25000,86, 0xcc25200,2, 0xcc25240,9, 0xcc25280,7, 0xcc25400,86, 0xcc25604,6, 0xcc25800,86, 0xcc25a00,2, 0xcc25a40,9, 0xcc25a80,7, 0xcc25c00,86, 0xcc25e04,6, 0xcc26000,15, 0xcc26040,4, 0xcc26060,17, 0xcc260c0,6, 0xcc260e0,4, 0xcc260f4,11, 0xcc26128,38, 0xcc261c4,2, 0xcc261d0,4, 0xcc26200,1, 0xcc28000,9, 0xcc28040,9, 0xcc28080,5, 0xcc28100,21, 0xcc28160,5, 0xcc28180,45, 0xcc28240,13, 0xcc28280,9, 0xcc28400,9, 0xcc28440,9, 0xcc28480,5, 0xcc28500,21, 0xcc28560,5, 0xcc28580,45, 0xcc28640,13, 0xcc28680,9, 0xcc28800,12, 0xcc28900,15, 0xcc28940,4, 0xcc28960,17, 0xcc289c0,6, 0xcc289e0,4, 0xcc289f4,29, 0xcc2c000,30, 0xcc2c080,3, 0xcc2c090,19, 0xcc2c100,30, 0xcc2c180,3, 0xcc2c190,19, 0xcc2c200,30, 0xcc2c280,3, 0xcc2c290,19, 0xcc2c300,30, 0xcc2c380,3, 0xcc2c390,19, 0xcc2c400,30, 0xcc2c480,3, 0xcc2c490,19, 0xcc2c500,30, 0xcc2c580,3, 0xcc2c590,19, 0xcc2c600,30, 0xcc2c680,3, 0xcc2c690,19, 0xcc2c700,30, 0xcc2c780,3, 0xcc2c790,19, 0xcc2c800,12, 0xcc2c844,1, 0xcc2c854,8, 0xcc2c880,7, 0xcc2c8a0,2, 0xcc2c8ac,2, 0xcc2c8c0,26, 0xcc2c980,4, 0xcc2c9a0,5, 0xcc2c9c0,1, 0xcc2d000,3, 0xcc2d010,3, 0xcc2d020,3, 0xcc2d030,3, 0xcc2d040,3, 0xcc2d050,3, 0xcc2d060,3, 0xcc2d070,3, 0xcc2d080,6, 0xcc2d0a0,6, 0xcc2d0c0,6, 0xcc2d0e0,6, 0xcc2d100,6, 0xcc2d120,6, 0xcc2d140,6, 0xcc2d160,6, 0xcc2d200,68, 0xcc2d400,1, 0xcc2d804,1, 0xcc2d844,54, 0xcc2da00,12, 0xcc2da40,12, 0xcc2da80,12, 0xcc2dac0,12, 0xcc2db00,12, 0xcc2db40,12, 0xcc2db80,12, 0xcc2dbc0,12, 0xcc2dc00,28, 0xcc2dc80,10, 0xcc2e000,3, 0xcc2e020,6, 0xcc2e040,6, 0xcc2e060,15, 0xcc2e100,26, 0xcc2e180,15, 0xcc2e200,15, 0xcc2e240,4, 0xcc2e260,17, 0xcc2e2c0,6, 0xcc2e2e0,4, 0xcc2e2f4,18, 0xcc2e340,4, 0xcc2e360,17, 0xcc2e3c0,6, 0xcc2e3e0,4, 0xcc2e3f4,15, 0xcc30000,1, 0xcc31000,1020, 0xcc32000,194, 0xcc33000,1020, 0xcc34000,1020, 0xcc35000,1020, 0xcc36000,1020, 0xcc37000,1020, 0xcc38000,1020, 0xcc39000,1020, 0xcc3a000,1020, 0xcc3b000,194, 0xcc3c000,3, 0xcc3c010,13, 0xcc3c080,16, 0xcc3c100,20, 0xcc3c184,1, 0xcc3c18c,4, 0xcc3c200,3, 0xcc3c210,13, 0xcc3c280,16, 0xcc3c300,20, 0xcc3c384,1, 0xcc3c38c,4, 0xcc3c400,3, 0xcc3c410,13, 0xcc3c480,16, 0xcc3c500,20, 0xcc3c584,1, 0xcc3c58c,4, 0xcc3c600,3, 0xcc3c610,13, 0xcc3c680,16, 0xcc3c700,20, 0xcc3c784,1, 0xcc3c78c,4, 0xcc3c800,3, 0xcc3c810,13, 0xcc3c880,16, 0xcc3c900,20, 0xcc3c984,1, 0xcc3c98c,4, 0xcc3ca00,3, 0xcc3ca10,13, 0xcc3ca80,16, 0xcc3cb00,20, 0xcc3cb84,1, 0xcc3cb8c,4, 0xcc3cc00,3, 0xcc3cc10,13, 0xcc3cc80,16, 0xcc3cd00,20, 0xcc3cd84,1, 0xcc3cd8c,4, 0xcc3ce00,3, 0xcc3ce10,13, 0xcc3ce80,16, 0xcc3cf00,20, 0xcc3cf84,1, 0xcc3cf8c,4, 0xcc3d000,3, 0xcc3d010,13, 0xcc3d080,16, 0xcc3d100,20, 0xcc3d184,1, 0xcc3d18c,4, 0xcc3d200,18, 0xcc3d250,2, 0xcc3d260,4, 0xcc3e000,1, 0xcc3e014,1, 0xcc3e01c,19, 0xcc3e080,1, 0xcc3e094,1, 0xcc3e09c,19, 0xcc3e100,8, 0xcc3e200,13, 0xcc3e240,9, 0xcc3e280,12, 0xcc3e2c0,2, 0xcc3e2e0,12, 0xcc40000,3, 0xcc40080,20, 0xcc40100,10, 0xcc40140,1, 0xcc40154,1, 0xcc4015c,2, 0xcc40200,15, 0xcc40240,4, 0xcc40260,17, 0xcc402c0,6, 0xcc402e0,2, 0xcc402ec,3, 0xcc40300,8, 0xcc40324,1, 0xcc40400,4, 0xcc40440,20, 0xcc404c0,9, 0xcc40500,33, 0xcc40600,11, 0xcc40640,11, 0xcc40680,1, 0xcc42000,1, 0xcc42200,4, 0xcc42300,53, 0xcc42400,4, 0xcc42500,40, 0xcc42600,15, 0xcc42640,4, 0xcc42660,17, 0xcc426c0,6, 0xcc426e0,2, 0xcc426ec,3, 0xcc42700,8, 0xcc42724,1, 0xcc42800,20, 0xcc42c00,53, 0xcc42d00,53, 0xcc42e00,1, 0xcc43000,40, 0xcc43100,40, 0xcc43200,1, 0xcc43400,1, 0xcc43804,1, 0xcc43844,39, 0xcc43900,3, 0xcc43a00,3, 0xcc43a44,1, 0xcc43a50,4, 0xcc43a80,1, 0xcc44000,2, 0xcc44200,27, 0xcc44280,4, 0xcc442c0,25, 0xcc44340,6, 0xcc44360,2, 0xcc4436c,3, 0xcc44380,8, 0xcc443a4,1, 0xcc44400,12, 0xcc44440,1, 0xcc48000,3, 0xcc48080,20, 0xcc48100,10, 0xcc48140,1, 0xcc48154,1, 0xcc4815c,2, 0xcc48200,15, 0xcc48240,4, 0xcc48260,17, 0xcc482c0,6, 0xcc482e0,2, 0xcc482ec,3, 0xcc48300,8, 0xcc48324,1, 0xcc48400,4, 0xcc48440,20, 0xcc484c0,9, 0xcc48500,33, 0xcc48600,11, 0xcc48640,11, 0xcc48680,1, 0xcc4a000,1, 0xcc4a200,4, 0xcc4a300,53, 0xcc4a400,4, 0xcc4a500,40, 0xcc4a600,15, 0xcc4a640,4, 0xcc4a660,17, 0xcc4a6c0,6, 0xcc4a6e0,2, 0xcc4a6ec,3, 0xcc4a700,8, 0xcc4a724,1, 0xcc4a800,20, 0xcc4ac00,53, 0xcc4ad00,53, 0xcc4ae00,1, 0xcc4b000,40, 0xcc4b100,40, 0xcc4b200,1, 0xcc4b400,1, 0xcc4b804,1, 0xcc4b844,39, 0xcc4b900,3, 0xcc4ba00,3, 0xcc4ba44,1, 0xcc4ba50,4, 0xcc4ba80,1, 0xcc4c000,2, 0xcc4c200,27, 0xcc4c280,4, 0xcc4c2c0,25, 0xcc4c340,6, 0xcc4c360,2, 0xcc4c36c,3, 0xcc4c380,8, 0xcc4c3a4,1, 0xcc4c400,12, 0xcc4c440,1, 0xcc50000,4, 0xcc50020,3, 0xcc50030,2, 0xcc50200,1, 0xcc50224,10, 0xcc50250,5, 0xcc50280,1, 0xcc50288,24, 0xcc50300,3, 0xcc50404,1, 0xcc50414,5, 0xcc50500,36, 0xcc50600,3, 0xcc50800,2, 0xcc51000,1, 0xcc51008,21, 0xcc51080,1, 0xcc51088,21, 0xcc51100,1, 0xcc51108,21, 0xcc51180,1, 0xcc51188,21, 0xcc51200,1, 0xcc51208,21, 0xcc51280,1, 0xcc51288,21, 0xcc51300,1, 0xcc51308,21, 0xcc51380,1, 0xcc51388,21, 0xcc51400,21, 0xcc51800,142, 0xcc51c00,1, 0xcc52000,4, 0xcc52100,39, 0xcc52200,3, 0xcc52214,3, 0xcc54004,1, 0xcc54020,16, 0xcc54080,2, 0xcc54094,1, 0xcc5409c,2, 0xcc540c0,6, 0xcc54100,8, 0xcc58004,17, 0xcc58054,1, 0xcc5805c,2, 0xcc58080,1, 0xcc580a0,2, 0xcc580b4,4, 0xcc58100,2, 0xcc58200,8, 0xcc58400,1, 0xcc58600,27, 0xcc58680,4, 0xcc586c0,25, 0xcc58740,6, 0xcc58760,2, 0xcc5876c,3, 0xcc58780,8, 0xcc587a4,3, 0xcc58800,44, 0xcc58900,1, 0xcc60000,1, 0xcc60200,27, 0xcc60280,4, 0xcc602c0,25, 0xcc60340,6, 0xcc60360,2, 0xcc6036c,3, 0xcc60380,8, 0xcc603a4,1, 0xcc60400,20, 0xcc60480,3, 0xcc60490,9, 0xcc80000,198, 0xcc80400,2, 0xcc80440,9, 0xcc80480,7, 0xcc80800,198, 0xcc80c00,2, 0xcc80c40,9, 0xcc80c80,7, 0xcc81000,198, 0xcc81400,198, 0xcc81804,6, 0xcc81824,6, 0xcc81880,2, 0xcc81904,1, 0xcc81918,28, 0xcc819a0,6, 0xcc819c0,6, 0xcc81c00,2, 0xcc81d00,2, 0xcc81e04,1, 0xcc81e74,43, 0xcc82000,2, 0xcc82100,2, 0xcc82204,1, 0xcc82274,43, 0xcc82400,3, 0xcc82600,27, 0xcc82680,4, 0xcc826c0,25, 0xcc82740,6, 0xcc82760,4, 0xcc82774,11, 0xcc827a4,4, 0xcc82800,4, 0xcc82900,34, 0xcc82a00,4, 0xcc82b00,34, 0xcc82c00,3, 0xcc82c10,12, 0xcc82e00,56, 0xcc82ee4,4, 0xcc82f00,4, 0xcc83000,1, 0xcc88000,4, 0xcc88100,42, 0xcc88200,1, 0xcc88210,3, 0xcc88220,3, 0xcc88230,3, 0xcc88240,1, 0xcc88248,3, 0xcc88400,4, 0xcc88500,58, 0xcc88600,1, 0xcc88610,3, 0xcc88620,3, 0xcc88630,3, 0xcc88640,1, 0xcc88648,3, 0xcc88800,4, 0xcc88900,36, 0xcc88a00,1, 0xcc88c00,4, 0xcc88c80,27, 0xcc88d00,1, 0xcc88d10,3, 0xcc88d20,3, 0xcc88d30,3, 0xcc88d40,1, 0xcc88d48,3, 0xcc88e00,4, 0xcc88e80,31, 0xcc88f00,1, 0xcc88f10,3, 0xcc88f20,3, 0xcc88f30,3, 0xcc88f40,1, 0xcc88f48,3, 0xcc89000,4, 0xcc89040,13, 0xcc89080,1, 0xcc89200,15, 0xcc89240,4, 0xcc89260,17, 0xcc892c0,6, 0xcc892e0,2, 0xcc892ec,3, 0xcc89300,8, 0xcc89324,8, 0xcc89400,68, 0xcc89600,60, 0xcc89700,4, 0xcc89720,5, 0xcc89740,1, 0xcc89780,2, 0xcc8978c,2, 0xcc897a0,1, 0xcc897c0,12, 0xcc89800,7, 0xcc89820,5, 0xcc89900,49, 0xcc89a00,1, 0xcc89a08,23, 0xcc89a84,1, 0xcc89a8c,1, 0xcc89a94,1, 0xcc89a9c,2, 0xcc89ac0,1, 0xcc89c00,10, 0xcc89c40,1, 0xcc89c50,3, 0xcc89c80,10, 0xcc89cc0,12, 0xcc89d00,3, 0xcc89e00,1, 0xcc8a000,4, 0xcc8a100,42, 0xcc8a200,1, 0xcc8a210,3, 0xcc8a220,3, 0xcc8a230,3, 0xcc8a240,1, 0xcc8a248,3, 0xcc8a400,4, 0xcc8a500,58, 0xcc8a600,1, 0xcc8a610,3, 0xcc8a620,3, 0xcc8a630,3, 0xcc8a640,1, 0xcc8a648,3, 0xcc8a800,4, 0xcc8a900,36, 0xcc8aa00,1, 0xcc8ac00,4, 0xcc8ac80,27, 0xcc8ad00,1, 0xcc8ad10,3, 0xcc8ad20,3, 0xcc8ad30,3, 0xcc8ad40,1, 0xcc8ad48,3, 0xcc8ae00,4, 0xcc8ae80,31, 0xcc8af00,1, 0xcc8af10,3, 0xcc8af20,3, 0xcc8af30,3, 0xcc8af40,1, 0xcc8af48,3, 0xcc8b000,4, 0xcc8b040,13, 0xcc8b080,1, 0xcc8b200,15, 0xcc8b240,4, 0xcc8b260,17, 0xcc8b2c0,6, 0xcc8b2e0,2, 0xcc8b2ec,3, 0xcc8b300,8, 0xcc8b324,8, 0xcc8b400,68, 0xcc8b600,60, 0xcc8b700,4, 0xcc8b720,5, 0xcc8b740,1, 0xcc8b780,2, 0xcc8b78c,2, 0xcc8b7a0,1, 0xcc8b7c0,12, 0xcc8b800,7, 0xcc8b820,5, 0xcc8b900,49, 0xcc8ba00,1, 0xcc8ba08,23, 0xcc8ba84,1, 0xcc8ba8c,1, 0xcc8ba94,1, 0xcc8ba9c,2, 0xcc8bac0,1, 0xcc8bc00,10, 0xcc8bc40,1, 0xcc8bc50,3, 0xcc8bc80,10, 0xcc8bcc0,12, 0xcc8bd00,3, 0xcc8be00,1, 0xcc8c000,20, 0xcc8c080,3, 0xcc8c090,1, 0xcc8c098,4, 0xcc90000,49, 0xcc90100,12, 0xcc90140,4, 0xcc90184,1, 0xcc90198,2, 0xcc901a4,1, 0xcc901b8,7, 0xcc901e0,4, 0xcc90200,20, 0xcc90280,3, 0xcc90290,9, 0xcc902c0,6, 0xcc902e0,1, 0xcc902e8,7, 0xcc90400,49, 0xcc90500,12, 0xcc90540,4, 0xcc90584,1, 0xcc90598,2, 0xcc905a4,1, 0xcc905b8,7, 0xcc905e0,4, 0xcc90600,20, 0xcc90680,3, 0xcc90690,9, 0xcc906c0,6, 0xcc906e0,1, 0xcc906e8,7, 0xcc90800,49, 0xcc90900,12, 0xcc90940,4, 0xcc90984,1, 0xcc90998,2, 0xcc909a4,1, 0xcc909b8,7, 0xcc909e0,4, 0xcc90a00,20, 0xcc90a80,3, 0xcc90a90,9, 0xcc90ac0,6, 0xcc90ae0,1, 0xcc90ae8,7, 0xcc90c00,49, 0xcc90d00,12, 0xcc90d40,4, 0xcc90d84,1, 0xcc90d98,2, 0xcc90da4,1, 0xcc90db8,7, 0xcc90de0,4, 0xcc90e00,20, 0xcc90e80,3, 0xcc90e90,9, 0xcc90ec0,6, 0xcc90ee0,1, 0xcc90ee8,7, 0xcc91000,49, 0xcc91100,12, 0xcc91140,4, 0xcc91184,1, 0xcc91198,2, 0xcc911a4,1, 0xcc911b8,7, 0xcc911e0,4, 0xcc91200,20, 0xcc91280,3, 0xcc91290,9, 0xcc912c0,6, 0xcc912e0,1, 0xcc912e8,7, 0xcc91400,49, 0xcc91500,12, 0xcc91540,4, 0xcc91584,1, 0xcc91598,2, 0xcc915a4,1, 0xcc915b8,7, 0xcc915e0,4, 0xcc91600,20, 0xcc91680,3, 0xcc91690,9, 0xcc916c0,6, 0xcc916e0,1, 0xcc916e8,7, 0xcc91800,49, 0xcc91900,12, 0xcc91940,4, 0xcc91984,1, 0xcc91998,2, 0xcc919a4,1, 0xcc919b8,7, 0xcc919e0,4, 0xcc91a00,20, 0xcc91a80,3, 0xcc91a90,9, 0xcc91ac0,6, 0xcc91ae0,1, 0xcc91ae8,7, 0xcc92000,20, 0xcc92080,10, 0xcc92100,20, 0xcc92180,10, 0xcc92200,12, 0xcc92400,20, 0xcc92480,10, 0xcc92500,20, 0xcc92580,10, 0xcc92600,12, 0xcc92800,3, 0xcc92840,12, 0xcc92880,12, 0xcc928c0,12, 0xcc92900,12, 0xcc92940,12, 0xcc92980,12, 0xcc929c0,12, 0xcc92a00,12, 0xcc92c00,12, 0xcc92c40,7, 0xcc92c60,10, 0xcc93004,1, 0xcc93044,43, 0xcc93100,7, 0xcc93120,7, 0xcc93140,2, 0xcc9314c,2, 0xcc93160,2, 0xcc9316c,2, 0xcc93180,18, 0xcc93200,2, 0xcc93220,10, 0xcc93260,20, 0xcc932c0,9, 0xcc93300,15, 0xcc93340,9, 0xcc93380,6, 0xcc933a0,4, 0xcc93400,5, 0xcc94000,53, 0xcc94100,3, 0xcc94110,15, 0xcc94200,53, 0xcc94300,3, 0xcc94310,15, 0xcc94400,5, 0xcc94420,5, 0xcc94440,18, 0xcc94800,3, 0xcc94810,2, 0xcc94820,3, 0xcc94830,2, 0xcc94840,1, 0xcc95000,7, 0xcc95020,7, 0xcc95080,19, 0xcc95100,19, 0xcc95180,25, 0xcc95200,20, 0xcc95280,20, 0xcc95300,8, 0xcc95340,4, 0xcc95380,15, 0xcc953c0,15, 0xcc95400,9, 0xcc95430,5, 0xcc96000,6, 0xcc96020,1, 0xcc96028,2, 0xcc96040,11, 0xcc96070,2, 0xcc98000,82, 0xcc98200,2, 0xcc98240,9, 0xcc98280,7, 0xcc98400,82, 0xcc98604,6, 0xcc98700,15, 0xcc98740,9, 0xcc98780,6, 0xcc987a0,6, 0xcc98800,2, 0xcc98810,3, 0xcc98880,24, 0xcc988e4,1, 0xcc988f0,12, 0xcca0000,22, 0xcca0080,22, 0xcca0100,5, 0xcca0120,5, 0xcca0140,3, 0xcca0160,16, 0xcca01c0,7, 0xcca01e0,2, 0xcca0200,7, 0xcca0220,2, 0xcca0400,15, 0xcca0440,3, 0xcca0450,3, 0xcca0460,24, 0xcca0500,15, 0xcca0540,3, 0xcca0550,3, 0xcca0560,24, 0xcca0600,15, 0xcca0640,3, 0xcca0650,3, 0xcca0660,24, 0xcca0700,15, 0xcca0740,3, 0xcca0750,3, 0xcca0760,24, 0xcca0800,4, 0xcca0820,16, 0xcca0880,10, 0xcca08c0,10, 0xcca0900,6, 0xcca0920,6, 0xcca0940,4, 0xcca0980,13, 0xcca09c0,13, 0xcca0a00,9, 0xcca1000,86, 0xcca1200,2, 0xcca1240,9, 0xcca1280,7, 0xcca1400,86, 0xcca1604,6, 0xcca1800,86, 0xcca1a00,2, 0xcca1a40,9, 0xcca1a80,7, 0xcca1c00,86, 0xcca1e04,6, 0xcca2000,15, 0xcca2040,4, 0xcca2060,17, 0xcca20c0,6, 0xcca20e0,4, 0xcca20f4,11, 0xcca2128,38, 0xcca21c4,2, 0xcca21d0,4, 0xcca2200,1, 0xcca4000,22, 0xcca4080,22, 0xcca4100,5, 0xcca4120,5, 0xcca4140,3, 0xcca4160,16, 0xcca41c0,7, 0xcca41e0,2, 0xcca4200,7, 0xcca4220,2, 0xcca4400,15, 0xcca4440,3, 0xcca4450,3, 0xcca4460,24, 0xcca4500,15, 0xcca4540,3, 0xcca4550,3, 0xcca4560,24, 0xcca4600,15, 0xcca4640,3, 0xcca4650,3, 0xcca4660,24, 0xcca4700,15, 0xcca4740,3, 0xcca4750,3, 0xcca4760,24, 0xcca4800,4, 0xcca4820,16, 0xcca4880,10, 0xcca48c0,10, 0xcca4900,6, 0xcca4920,6, 0xcca4940,4, 0xcca4980,13, 0xcca49c0,13, 0xcca4a00,9, 0xcca5000,86, 0xcca5200,2, 0xcca5240,9, 0xcca5280,7, 0xcca5400,86, 0xcca5604,6, 0xcca5800,86, 0xcca5a00,2, 0xcca5a40,9, 0xcca5a80,7, 0xcca5c00,86, 0xcca5e04,6, 0xcca6000,15, 0xcca6040,4, 0xcca6060,17, 0xcca60c0,6, 0xcca60e0,4, 0xcca60f4,11, 0xcca6128,38, 0xcca61c4,2, 0xcca61d0,4, 0xcca6200,1, 0xcca8000,9, 0xcca8040,9, 0xcca8080,5, 0xcca8100,21, 0xcca8160,5, 0xcca8180,45, 0xcca8240,13, 0xcca8280,9, 0xcca8400,9, 0xcca8440,9, 0xcca8480,5, 0xcca8500,21, 0xcca8560,5, 0xcca8580,45, 0xcca8640,13, 0xcca8680,9, 0xcca8800,12, 0xcca8900,15, 0xcca8940,4, 0xcca8960,17, 0xcca89c0,6, 0xcca89e0,4, 0xcca89f4,29, 0xccac000,30, 0xccac080,3, 0xccac090,19, 0xccac100,30, 0xccac180,3, 0xccac190,19, 0xccac200,30, 0xccac280,3, 0xccac290,19, 0xccac300,30, 0xccac380,3, 0xccac390,19, 0xccac400,30, 0xccac480,3, 0xccac490,19, 0xccac500,30, 0xccac580,3, 0xccac590,19, 0xccac600,30, 0xccac680,3, 0xccac690,19, 0xccac700,30, 0xccac780,3, 0xccac790,19, 0xccac800,12, 0xccac844,1, 0xccac854,8, 0xccac880,7, 0xccac8a0,2, 0xccac8ac,2, 0xccac8c0,26, 0xccac980,4, 0xccac9a0,5, 0xccac9c0,1, 0xccad000,3, 0xccad010,3, 0xccad020,3, 0xccad030,3, 0xccad040,3, 0xccad050,3, 0xccad060,3, 0xccad070,3, 0xccad080,6, 0xccad0a0,6, 0xccad0c0,6, 0xccad0e0,6, 0xccad100,6, 0xccad120,6, 0xccad140,6, 0xccad160,6, 0xccad200,68, 0xccad400,1, 0xccad804,1, 0xccad844,54, 0xccada00,12, 0xccada40,12, 0xccada80,12, 0xccadac0,12, 0xccadb00,12, 0xccadb40,12, 0xccadb80,12, 0xccadbc0,12, 0xccadc00,28, 0xccadc80,10, 0xccae000,3, 0xccae020,6, 0xccae040,6, 0xccae060,15, 0xccae100,26, 0xccae180,15, 0xccae200,15, 0xccae240,4, 0xccae260,17, 0xccae2c0,6, 0xccae2e0,4, 0xccae2f4,18, 0xccae340,4, 0xccae360,17, 0xccae3c0,6, 0xccae3e0,4, 0xccae3f4,15, 0xccb0000,1, 0xccb1000,1020, 0xccb2000,194, 0xccb3000,1020, 0xccb4000,1020, 0xccb5000,1020, 0xccb6000,1020, 0xccb7000,1020, 0xccb8000,1020, 0xccb9000,1020, 0xccba000,1020, 0xccbb000,194, 0xccbc000,3, 0xccbc010,13, 0xccbc080,16, 0xccbc100,20, 0xccbc184,1, 0xccbc18c,4, 0xccbc200,3, 0xccbc210,13, 0xccbc280,16, 0xccbc300,20, 0xccbc384,1, 0xccbc38c,4, 0xccbc400,3, 0xccbc410,13, 0xccbc480,16, 0xccbc500,20, 0xccbc584,1, 0xccbc58c,4, 0xccbc600,3, 0xccbc610,13, 0xccbc680,16, 0xccbc700,20, 0xccbc784,1, 0xccbc78c,4, 0xccbc800,3, 0xccbc810,13, 0xccbc880,16, 0xccbc900,20, 0xccbc984,1, 0xccbc98c,4, 0xccbca00,3, 0xccbca10,13, 0xccbca80,16, 0xccbcb00,20, 0xccbcb84,1, 0xccbcb8c,4, 0xccbcc00,3, 0xccbcc10,13, 0xccbcc80,16, 0xccbcd00,20, 0xccbcd84,1, 0xccbcd8c,4, 0xccbce00,3, 0xccbce10,13, 0xccbce80,16, 0xccbcf00,20, 0xccbcf84,1, 0xccbcf8c,4, 0xccbd000,3, 0xccbd010,13, 0xccbd080,16, 0xccbd100,20, 0xccbd184,1, 0xccbd18c,4, 0xccbd200,18, 0xccbd250,2, 0xccbd260,4, 0xccbe000,1, 0xccbe014,1, 0xccbe01c,19, 0xccbe080,1, 0xccbe094,1, 0xccbe09c,19, 0xccbe100,8, 0xccbe200,13, 0xccbe240,9, 0xccbe280,12, 0xccbe2c0,2, 0xccbe2e0,12, 0xccc0000,3, 0xccc0080,20, 0xccc0100,10, 0xccc0140,1, 0xccc0154,1, 0xccc015c,2, 0xccc0200,15, 0xccc0240,4, 0xccc0260,17, 0xccc02c0,6, 0xccc02e0,2, 0xccc02ec,3, 0xccc0300,8, 0xccc0324,1, 0xccc0400,4, 0xccc0440,20, 0xccc04c0,9, 0xccc0500,33, 0xccc0600,11, 0xccc0640,11, 0xccc0680,1, 0xccc2000,1, 0xccc2200,4, 0xccc2300,53, 0xccc2400,4, 0xccc2500,40, 0xccc2600,15, 0xccc2640,4, 0xccc2660,17, 0xccc26c0,6, 0xccc26e0,2, 0xccc26ec,3, 0xccc2700,8, 0xccc2724,1, 0xccc2800,20, 0xccc2c00,53, 0xccc2d00,53, 0xccc2e00,1, 0xccc3000,40, 0xccc3100,40, 0xccc3200,1, 0xccc3400,1, 0xccc3804,1, 0xccc3844,39, 0xccc3900,3, 0xccc3a00,3, 0xccc3a44,1, 0xccc3a50,4, 0xccc3a80,1, 0xccc4000,2, 0xccc4200,27, 0xccc4280,4, 0xccc42c0,25, 0xccc4340,6, 0xccc4360,2, 0xccc436c,3, 0xccc4380,8, 0xccc43a4,1, 0xccc4400,12, 0xccc4440,1, 0xccc8000,3, 0xccc8080,20, 0xccc8100,10, 0xccc8140,1, 0xccc8154,1, 0xccc815c,2, 0xccc8200,15, 0xccc8240,4, 0xccc8260,17, 0xccc82c0,6, 0xccc82e0,2, 0xccc82ec,3, 0xccc8300,8, 0xccc8324,1, 0xccc8400,4, 0xccc8440,20, 0xccc84c0,9, 0xccc8500,33, 0xccc8600,11, 0xccc8640,11, 0xccc8680,1, 0xccca000,1, 0xccca200,4, 0xccca300,53, 0xccca400,4, 0xccca500,40, 0xccca600,15, 0xccca640,4, 0xccca660,17, 0xccca6c0,6, 0xccca6e0,2, 0xccca6ec,3, 0xccca700,8, 0xccca724,1, 0xccca800,20, 0xcccac00,53, 0xcccad00,53, 0xcccae00,1, 0xcccb000,40, 0xcccb100,40, 0xcccb200,1, 0xcccb400,1, 0xcccb804,1, 0xcccb844,39, 0xcccb900,3, 0xcccba00,3, 0xcccba44,1, 0xcccba50,4, 0xcccba80,1, 0xcccc000,2, 0xcccc200,27, 0xcccc280,4, 0xcccc2c0,25, 0xcccc340,6, 0xcccc360,2, 0xcccc36c,3, 0xcccc380,8, 0xcccc3a4,1, 0xcccc400,12, 0xcccc440,1, 0xccd0000,4, 0xccd0020,3, 0xccd0030,2, 0xccd0200,1, 0xccd0224,10, 0xccd0250,5, 0xccd0280,1, 0xccd0288,24, 0xccd0300,3, 0xccd0404,1, 0xccd0414,5, 0xccd0500,36, 0xccd0600,3, 0xccd0800,2, 0xccd1000,1, 0xccd1008,21, 0xccd1080,1, 0xccd1088,21, 0xccd1100,1, 0xccd1108,21, 0xccd1180,1, 0xccd1188,21, 0xccd1200,1, 0xccd1208,21, 0xccd1280,1, 0xccd1288,21, 0xccd1300,1, 0xccd1308,21, 0xccd1380,1, 0xccd1388,21, 0xccd1400,21, 0xccd1800,142, 0xccd1c00,1, 0xccd2000,4, 0xccd2100,39, 0xccd2200,3, 0xccd2214,3, 0xccd4004,1, 0xccd4020,16, 0xccd4080,2, 0xccd4094,1, 0xccd409c,2, 0xccd40c0,6, 0xccd4100,8, 0xccd8004,17, 0xccd8054,1, 0xccd805c,2, 0xccd8080,1, 0xccd80a0,2, 0xccd80b4,4, 0xccd8100,2, 0xccd8200,8, 0xccd8400,1, 0xccd8600,27, 0xccd8680,4, 0xccd86c0,25, 0xccd8740,6, 0xccd8760,2, 0xccd876c,3, 0xccd8780,8, 0xccd87a4,3, 0xccd8800,44, 0xccd8900,1, 0xcce0000,1, 0xcce0200,27, 0xcce0280,4, 0xcce02c0,25, 0xcce0340,6, 0xcce0360,2, 0xcce036c,3, 0xcce0380,8, 0xcce03a4,1, 0xcce0400,20, 0xcce0480,3, 0xcce0490,9, 0xcd00000,198, 0xcd00400,2, 0xcd00440,9, 0xcd00480,7, 0xcd00800,198, 0xcd00c00,2, 0xcd00c40,9, 0xcd00c80,7, 0xcd01000,198, 0xcd01400,198, 0xcd01804,6, 0xcd01824,6, 0xcd01880,2, 0xcd01904,1, 0xcd01918,28, 0xcd019a0,6, 0xcd019c0,6, 0xcd01c00,2, 0xcd01d00,2, 0xcd01e04,1, 0xcd01e74,43, 0xcd02000,2, 0xcd02100,2, 0xcd02204,1, 0xcd02274,43, 0xcd02400,3, 0xcd02600,27, 0xcd02680,4, 0xcd026c0,25, 0xcd02740,6, 0xcd02760,4, 0xcd02774,11, 0xcd027a4,4, 0xcd02800,4, 0xcd02900,34, 0xcd02a00,4, 0xcd02b00,34, 0xcd02c00,3, 0xcd02c10,12, 0xcd02e00,56, 0xcd02ee4,4, 0xcd02f00,4, 0xcd03000,1, 0xcd08000,4, 0xcd08100,42, 0xcd08200,1, 0xcd08210,3, 0xcd08220,3, 0xcd08230,3, 0xcd08240,1, 0xcd08248,3, 0xcd08400,4, 0xcd08500,58, 0xcd08600,1, 0xcd08610,3, 0xcd08620,3, 0xcd08630,3, 0xcd08640,1, 0xcd08648,3, 0xcd08800,4, 0xcd08900,36, 0xcd08a00,1, 0xcd08c00,4, 0xcd08c80,27, 0xcd08d00,1, 0xcd08d10,3, 0xcd08d20,3, 0xcd08d30,3, 0xcd08d40,1, 0xcd08d48,3, 0xcd08e00,4, 0xcd08e80,31, 0xcd08f00,1, 0xcd08f10,3, 0xcd08f20,3, 0xcd08f30,3, 0xcd08f40,1, 0xcd08f48,3, 0xcd09000,4, 0xcd09040,13, 0xcd09080,1, 0xcd09200,15, 0xcd09240,4, 0xcd09260,17, 0xcd092c0,6, 0xcd092e0,2, 0xcd092ec,3, 0xcd09300,8, 0xcd09324,8, 0xcd09400,68, 0xcd09600,60, 0xcd09700,4, 0xcd09720,5, 0xcd09740,1, 0xcd09780,2, 0xcd0978c,2, 0xcd097a0,1, 0xcd097c0,12, 0xcd09800,7, 0xcd09820,5, 0xcd09900,49, 0xcd09a00,1, 0xcd09a08,23, 0xcd09a84,1, 0xcd09a8c,1, 0xcd09a94,1, 0xcd09a9c,2, 0xcd09ac0,1, 0xcd09c00,10, 0xcd09c40,1, 0xcd09c50,3, 0xcd09c80,10, 0xcd09cc0,12, 0xcd09d00,3, 0xcd09e00,1, 0xcd0a000,4, 0xcd0a100,42, 0xcd0a200,1, 0xcd0a210,3, 0xcd0a220,3, 0xcd0a230,3, 0xcd0a240,1, 0xcd0a248,3, 0xcd0a400,4, 0xcd0a500,58, 0xcd0a600,1, 0xcd0a610,3, 0xcd0a620,3, 0xcd0a630,3, 0xcd0a640,1, 0xcd0a648,3, 0xcd0a800,4, 0xcd0a900,36, 0xcd0aa00,1, 0xcd0ac00,4, 0xcd0ac80,27, 0xcd0ad00,1, 0xcd0ad10,3, 0xcd0ad20,3, 0xcd0ad30,3, 0xcd0ad40,1, 0xcd0ad48,3, 0xcd0ae00,4, 0xcd0ae80,31, 0xcd0af00,1, 0xcd0af10,3, 0xcd0af20,3, 0xcd0af30,3, 0xcd0af40,1, 0xcd0af48,3, 0xcd0b000,4, 0xcd0b040,13, 0xcd0b080,1, 0xcd0b200,15, 0xcd0b240,4, 0xcd0b260,17, 0xcd0b2c0,6, 0xcd0b2e0,2, 0xcd0b2ec,3, 0xcd0b300,8, 0xcd0b324,8, 0xcd0b400,68, 0xcd0b600,60, 0xcd0b700,4, 0xcd0b720,5, 0xcd0b740,1, 0xcd0b780,2, 0xcd0b78c,2, 0xcd0b7a0,1, 0xcd0b7c0,12, 0xcd0b800,7, 0xcd0b820,5, 0xcd0b900,49, 0xcd0ba00,1, 0xcd0ba08,23, 0xcd0ba84,1, 0xcd0ba8c,1, 0xcd0ba94,1, 0xcd0ba9c,2, 0xcd0bac0,1, 0xcd0bc00,10, 0xcd0bc40,1, 0xcd0bc50,3, 0xcd0bc80,10, 0xcd0bcc0,12, 0xcd0bd00,3, 0xcd0be00,1, 0xcd0c000,20, 0xcd0c080,3, 0xcd0c090,1, 0xcd0c098,4, 0xcd10000,49, 0xcd10100,12, 0xcd10140,4, 0xcd10184,1, 0xcd10198,2, 0xcd101a4,1, 0xcd101b8,7, 0xcd101e0,4, 0xcd10200,20, 0xcd10280,3, 0xcd10290,9, 0xcd102c0,6, 0xcd102e0,1, 0xcd102e8,7, 0xcd10400,49, 0xcd10500,12, 0xcd10540,4, 0xcd10584,1, 0xcd10598,2, 0xcd105a4,1, 0xcd105b8,7, 0xcd105e0,4, 0xcd10600,20, 0xcd10680,3, 0xcd10690,9, 0xcd106c0,6, 0xcd106e0,1, 0xcd106e8,7, 0xcd10800,49, 0xcd10900,12, 0xcd10940,4, 0xcd10984,1, 0xcd10998,2, 0xcd109a4,1, 0xcd109b8,7, 0xcd109e0,4, 0xcd10a00,20, 0xcd10a80,3, 0xcd10a90,9, 0xcd10ac0,6, 0xcd10ae0,1, 0xcd10ae8,7, 0xcd10c00,49, 0xcd10d00,12, 0xcd10d40,4, 0xcd10d84,1, 0xcd10d98,2, 0xcd10da4,1, 0xcd10db8,7, 0xcd10de0,4, 0xcd10e00,20, 0xcd10e80,3, 0xcd10e90,9, 0xcd10ec0,6, 0xcd10ee0,1, 0xcd10ee8,7, 0xcd11000,49, 0xcd11100,12, 0xcd11140,4, 0xcd11184,1, 0xcd11198,2, 0xcd111a4,1, 0xcd111b8,7, 0xcd111e0,4, 0xcd11200,20, 0xcd11280,3, 0xcd11290,9, 0xcd112c0,6, 0xcd112e0,1, 0xcd112e8,7, 0xcd11400,49, 0xcd11500,12, 0xcd11540,4, 0xcd11584,1, 0xcd11598,2, 0xcd115a4,1, 0xcd115b8,7, 0xcd115e0,4, 0xcd11600,20, 0xcd11680,3, 0xcd11690,9, 0xcd116c0,6, 0xcd116e0,1, 0xcd116e8,7, 0xcd11800,49, 0xcd11900,12, 0xcd11940,4, 0xcd11984,1, 0xcd11998,2, 0xcd119a4,1, 0xcd119b8,7, 0xcd119e0,4, 0xcd11a00,20, 0xcd11a80,3, 0xcd11a90,9, 0xcd11ac0,6, 0xcd11ae0,1, 0xcd11ae8,7, 0xcd12000,20, 0xcd12080,10, 0xcd12100,20, 0xcd12180,10, 0xcd12200,12, 0xcd12400,20, 0xcd12480,10, 0xcd12500,20, 0xcd12580,10, 0xcd12600,12, 0xcd12800,3, 0xcd12840,12, 0xcd12880,12, 0xcd128c0,12, 0xcd12900,12, 0xcd12940,12, 0xcd12980,12, 0xcd129c0,12, 0xcd12a00,12, 0xcd12c00,12, 0xcd12c40,7, 0xcd12c60,10, 0xcd13004,1, 0xcd13044,43, 0xcd13100,7, 0xcd13120,7, 0xcd13140,2, 0xcd1314c,2, 0xcd13160,2, 0xcd1316c,2, 0xcd13180,18, 0xcd13200,2, 0xcd13220,10, 0xcd13260,20, 0xcd132c0,9, 0xcd13300,15, 0xcd13340,9, 0xcd13380,6, 0xcd133a0,4, 0xcd13400,5, 0xcd14000,53, 0xcd14100,3, 0xcd14110,15, 0xcd14200,53, 0xcd14300,3, 0xcd14310,15, 0xcd14400,5, 0xcd14420,5, 0xcd14440,18, 0xcd14800,3, 0xcd14810,2, 0xcd14820,3, 0xcd14830,2, 0xcd14840,1, 0xcd15000,7, 0xcd15020,7, 0xcd15080,19, 0xcd15100,19, 0xcd15180,25, 0xcd15200,20, 0xcd15280,20, 0xcd15300,8, 0xcd15340,4, 0xcd15380,15, 0xcd153c0,15, 0xcd15400,9, 0xcd15430,5, 0xcd16000,6, 0xcd16020,1, 0xcd16028,2, 0xcd16040,11, 0xcd16070,2, 0xcd18000,82, 0xcd18200,2, 0xcd18240,9, 0xcd18280,7, 0xcd18400,82, 0xcd18604,6, 0xcd18700,15, 0xcd18740,9, 0xcd18780,6, 0xcd187a0,6, 0xcd18800,2, 0xcd18810,3, 0xcd18880,24, 0xcd188e4,1, 0xcd188f0,12, 0xcd20000,22, 0xcd20080,22, 0xcd20100,5, 0xcd20120,5, 0xcd20140,3, 0xcd20160,16, 0xcd201c0,7, 0xcd201e0,2, 0xcd20200,7, 0xcd20220,2, 0xcd20400,15, 0xcd20440,3, 0xcd20450,3, 0xcd20460,24, 0xcd20500,15, 0xcd20540,3, 0xcd20550,3, 0xcd20560,24, 0xcd20600,15, 0xcd20640,3, 0xcd20650,3, 0xcd20660,24, 0xcd20700,15, 0xcd20740,3, 0xcd20750,3, 0xcd20760,24, 0xcd20800,4, 0xcd20820,16, 0xcd20880,10, 0xcd208c0,10, 0xcd20900,6, 0xcd20920,6, 0xcd20940,4, 0xcd20980,13, 0xcd209c0,13, 0xcd20a00,9, 0xcd21000,86, 0xcd21200,2, 0xcd21240,9, 0xcd21280,7, 0xcd21400,86, 0xcd21604,6, 0xcd21800,86, 0xcd21a00,2, 0xcd21a40,9, 0xcd21a80,7, 0xcd21c00,86, 0xcd21e04,6, 0xcd22000,15, 0xcd22040,4, 0xcd22060,17, 0xcd220c0,6, 0xcd220e0,4, 0xcd220f4,11, 0xcd22128,38, 0xcd221c4,2, 0xcd221d0,4, 0xcd22200,1, 0xcd24000,22, 0xcd24080,22, 0xcd24100,5, 0xcd24120,5, 0xcd24140,3, 0xcd24160,16, 0xcd241c0,7, 0xcd241e0,2, 0xcd24200,7, 0xcd24220,2, 0xcd24400,15, 0xcd24440,3, 0xcd24450,3, 0xcd24460,24, 0xcd24500,15, 0xcd24540,3, 0xcd24550,3, 0xcd24560,24, 0xcd24600,15, 0xcd24640,3, 0xcd24650,3, 0xcd24660,24, 0xcd24700,15, 0xcd24740,3, 0xcd24750,3, 0xcd24760,24, 0xcd24800,4, 0xcd24820,16, 0xcd24880,10, 0xcd248c0,10, 0xcd24900,6, 0xcd24920,6, 0xcd24940,4, 0xcd24980,13, 0xcd249c0,13, 0xcd24a00,9, 0xcd25000,86, 0xcd25200,2, 0xcd25240,9, 0xcd25280,7, 0xcd25400,86, 0xcd25604,6, 0xcd25800,86, 0xcd25a00,2, 0xcd25a40,9, 0xcd25a80,7, 0xcd25c00,86, 0xcd25e04,6, 0xcd26000,15, 0xcd26040,4, 0xcd26060,17, 0xcd260c0,6, 0xcd260e0,4, 0xcd260f4,11, 0xcd26128,38, 0xcd261c4,2, 0xcd261d0,4, 0xcd26200,1, 0xcd28000,9, 0xcd28040,9, 0xcd28080,5, 0xcd28100,21, 0xcd28160,5, 0xcd28180,45, 0xcd28240,13, 0xcd28280,9, 0xcd28400,9, 0xcd28440,9, 0xcd28480,5, 0xcd28500,21, 0xcd28560,5, 0xcd28580,45, 0xcd28640,13, 0xcd28680,9, 0xcd28800,12, 0xcd28900,15, 0xcd28940,4, 0xcd28960,17, 0xcd289c0,6, 0xcd289e0,4, 0xcd289f4,29, 0xcd2c000,30, 0xcd2c080,3, 0xcd2c090,19, 0xcd2c100,30, 0xcd2c180,3, 0xcd2c190,19, 0xcd2c200,30, 0xcd2c280,3, 0xcd2c290,19, 0xcd2c300,30, 0xcd2c380,3, 0xcd2c390,19, 0xcd2c400,30, 0xcd2c480,3, 0xcd2c490,19, 0xcd2c500,30, 0xcd2c580,3, 0xcd2c590,19, 0xcd2c600,30, 0xcd2c680,3, 0xcd2c690,19, 0xcd2c700,30, 0xcd2c780,3, 0xcd2c790,19, 0xcd2c800,12, 0xcd2c844,1, 0xcd2c854,8, 0xcd2c880,7, 0xcd2c8a0,2, 0xcd2c8ac,2, 0xcd2c8c0,26, 0xcd2c980,4, 0xcd2c9a0,5, 0xcd2c9c0,1, 0xcd2d000,3, 0xcd2d010,3, 0xcd2d020,3, 0xcd2d030,3, 0xcd2d040,3, 0xcd2d050,3, 0xcd2d060,3, 0xcd2d070,3, 0xcd2d080,6, 0xcd2d0a0,6, 0xcd2d0c0,6, 0xcd2d0e0,6, 0xcd2d100,6, 0xcd2d120,6, 0xcd2d140,6, 0xcd2d160,6, 0xcd2d200,68, 0xcd2d400,1, 0xcd2d804,1, 0xcd2d844,54, 0xcd2da00,12, 0xcd2da40,12, 0xcd2da80,12, 0xcd2dac0,12, 0xcd2db00,12, 0xcd2db40,12, 0xcd2db80,12, 0xcd2dbc0,12, 0xcd2dc00,28, 0xcd2dc80,10, 0xcd2e000,3, 0xcd2e020,6, 0xcd2e040,6, 0xcd2e060,15, 0xcd2e100,26, 0xcd2e180,15, 0xcd2e200,15, 0xcd2e240,4, 0xcd2e260,17, 0xcd2e2c0,6, 0xcd2e2e0,4, 0xcd2e2f4,18, 0xcd2e340,4, 0xcd2e360,17, 0xcd2e3c0,6, 0xcd2e3e0,4, 0xcd2e3f4,15, 0xcd30000,1, 0xcd31000,1020, 0xcd32000,194, 0xcd33000,1020, 0xcd34000,1020, 0xcd35000,1020, 0xcd36000,1020, 0xcd37000,1020, 0xcd38000,1020, 0xcd39000,1020, 0xcd3a000,1020, 0xcd3b000,194, 0xcd3c000,3, 0xcd3c010,13, 0xcd3c080,16, 0xcd3c100,20, 0xcd3c184,1, 0xcd3c18c,4, 0xcd3c200,3, 0xcd3c210,13, 0xcd3c280,16, 0xcd3c300,20, 0xcd3c384,1, 0xcd3c38c,4, 0xcd3c400,3, 0xcd3c410,13, 0xcd3c480,16, 0xcd3c500,20, 0xcd3c584,1, 0xcd3c58c,4, 0xcd3c600,3, 0xcd3c610,13, 0xcd3c680,16, 0xcd3c700,20, 0xcd3c784,1, 0xcd3c78c,4, 0xcd3c800,3, 0xcd3c810,13, 0xcd3c880,16, 0xcd3c900,20, 0xcd3c984,1, 0xcd3c98c,4, 0xcd3ca00,3, 0xcd3ca10,13, 0xcd3ca80,16, 0xcd3cb00,20, 0xcd3cb84,1, 0xcd3cb8c,4, 0xcd3cc00,3, 0xcd3cc10,13, 0xcd3cc80,16, 0xcd3cd00,20, 0xcd3cd84,1, 0xcd3cd8c,4, 0xcd3ce00,3, 0xcd3ce10,13, 0xcd3ce80,16, 0xcd3cf00,20, 0xcd3cf84,1, 0xcd3cf8c,4, 0xcd3d000,3, 0xcd3d010,13, 0xcd3d080,16, 0xcd3d100,20, 0xcd3d184,1, 0xcd3d18c,4, 0xcd3d200,18, 0xcd3d250,2, 0xcd3d260,4, 0xcd3e000,1, 0xcd3e014,1, 0xcd3e01c,19, 0xcd3e080,1, 0xcd3e094,1, 0xcd3e09c,19, 0xcd3e100,8, 0xcd3e200,13, 0xcd3e240,9, 0xcd3e280,12, 0xcd3e2c0,2, 0xcd3e2e0,12, 0xcd40000,3, 0xcd40080,20, 0xcd40100,10, 0xcd40140,1, 0xcd40154,1, 0xcd4015c,2, 0xcd40200,15, 0xcd40240,4, 0xcd40260,17, 0xcd402c0,6, 0xcd402e0,2, 0xcd402ec,3, 0xcd40300,8, 0xcd40324,1, 0xcd40400,4, 0xcd40440,20, 0xcd404c0,9, 0xcd40500,33, 0xcd40600,11, 0xcd40640,11, 0xcd40680,1, 0xcd42000,1, 0xcd42200,4, 0xcd42300,53, 0xcd42400,4, 0xcd42500,40, 0xcd42600,15, 0xcd42640,4, 0xcd42660,17, 0xcd426c0,6, 0xcd426e0,2, 0xcd426ec,3, 0xcd42700,8, 0xcd42724,1, 0xcd42800,20, 0xcd42c00,53, 0xcd42d00,53, 0xcd42e00,1, 0xcd43000,40, 0xcd43100,40, 0xcd43200,1, 0xcd43400,1, 0xcd43804,1, 0xcd43844,39, 0xcd43900,3, 0xcd43a00,3, 0xcd43a44,1, 0xcd43a50,4, 0xcd43a80,1, 0xcd44000,2, 0xcd44200,27, 0xcd44280,4, 0xcd442c0,25, 0xcd44340,6, 0xcd44360,2, 0xcd4436c,3, 0xcd44380,8, 0xcd443a4,1, 0xcd44400,12, 0xcd44440,1, 0xcd48000,3, 0xcd48080,20, 0xcd48100,10, 0xcd48140,1, 0xcd48154,1, 0xcd4815c,2, 0xcd48200,15, 0xcd48240,4, 0xcd48260,17, 0xcd482c0,6, 0xcd482e0,2, 0xcd482ec,3, 0xcd48300,8, 0xcd48324,1, 0xcd48400,4, 0xcd48440,20, 0xcd484c0,9, 0xcd48500,33, 0xcd48600,11, 0xcd48640,11, 0xcd48680,1, 0xcd4a000,1, 0xcd4a200,4, 0xcd4a300,53, 0xcd4a400,4, 0xcd4a500,40, 0xcd4a600,15, 0xcd4a640,4, 0xcd4a660,17, 0xcd4a6c0,6, 0xcd4a6e0,2, 0xcd4a6ec,3, 0xcd4a700,8, 0xcd4a724,1, 0xcd4a800,20, 0xcd4ac00,53, 0xcd4ad00,53, 0xcd4ae00,1, 0xcd4b000,40, 0xcd4b100,40, 0xcd4b200,1, 0xcd4b400,1, 0xcd4b804,1, 0xcd4b844,39, 0xcd4b900,3, 0xcd4ba00,3, 0xcd4ba44,1, 0xcd4ba50,4, 0xcd4ba80,1, 0xcd4c000,2, 0xcd4c200,27, 0xcd4c280,4, 0xcd4c2c0,25, 0xcd4c340,6, 0xcd4c360,2, 0xcd4c36c,3, 0xcd4c380,8, 0xcd4c3a4,1, 0xcd4c400,12, 0xcd4c440,1, 0xcd50000,4, 0xcd50020,3, 0xcd50030,2, 0xcd50200,1, 0xcd50224,10, 0xcd50250,5, 0xcd50280,1, 0xcd50288,24, 0xcd50300,3, 0xcd50404,1, 0xcd50414,5, 0xcd50500,36, 0xcd50600,3, 0xcd50800,2, 0xcd51000,1, 0xcd51008,21, 0xcd51080,1, 0xcd51088,21, 0xcd51100,1, 0xcd51108,21, 0xcd51180,1, 0xcd51188,21, 0xcd51200,1, 0xcd51208,21, 0xcd51280,1, 0xcd51288,21, 0xcd51300,1, 0xcd51308,21, 0xcd51380,1, 0xcd51388,21, 0xcd51400,21, 0xcd51800,142, 0xcd51c00,1, 0xcd52000,4, 0xcd52100,39, 0xcd52200,3, 0xcd52214,3, 0xcd54004,1, 0xcd54020,16, 0xcd54080,2, 0xcd54094,1, 0xcd5409c,2, 0xcd540c0,6, 0xcd54100,8, 0xcd58004,17, 0xcd58054,1, 0xcd5805c,2, 0xcd58080,1, 0xcd580a0,2, 0xcd580b4,4, 0xcd58100,2, 0xcd58200,8, 0xcd58400,1, 0xcd58600,27, 0xcd58680,4, 0xcd586c0,25, 0xcd58740,6, 0xcd58760,2, 0xcd5876c,3, 0xcd58780,8, 0xcd587a4,3, 0xcd58800,44, 0xcd58900,1, 0xcd60000,1, 0xcd60200,27, 0xcd60280,4, 0xcd602c0,25, 0xcd60340,6, 0xcd60360,2, 0xcd6036c,3, 0xcd60380,8, 0xcd603a4,1, 0xcd60400,20, 0xcd60480,3, 0xcd60490,9, 0xcd80000,198, 0xcd80400,2, 0xcd80440,9, 0xcd80480,7, 0xcd80800,198, 0xcd80c00,2, 0xcd80c40,9, 0xcd80c80,7, 0xcd81000,198, 0xcd81400,198, 0xcd81804,6, 0xcd81824,6, 0xcd81880,2, 0xcd81904,1, 0xcd81918,28, 0xcd819a0,6, 0xcd819c0,6, 0xcd81c00,2, 0xcd81d00,2, 0xcd81e04,1, 0xcd81e74,43, 0xcd82000,2, 0xcd82100,2, 0xcd82204,1, 0xcd82274,43, 0xcd82400,3, 0xcd82600,27, 0xcd82680,4, 0xcd826c0,25, 0xcd82740,6, 0xcd82760,4, 0xcd82774,11, 0xcd827a4,4, 0xcd82800,4, 0xcd82900,34, 0xcd82a00,4, 0xcd82b00,34, 0xcd82c00,3, 0xcd82c10,12, 0xcd82e00,56, 0xcd82ee4,4, 0xcd82f00,4, 0xcd83000,1, 0xcd88000,4, 0xcd88100,42, 0xcd88200,1, 0xcd88210,3, 0xcd88220,3, 0xcd88230,3, 0xcd88240,1, 0xcd88248,3, 0xcd88400,4, 0xcd88500,58, 0xcd88600,1, 0xcd88610,3, 0xcd88620,3, 0xcd88630,3, 0xcd88640,1, 0xcd88648,3, 0xcd88800,4, 0xcd88900,36, 0xcd88a00,1, 0xcd88c00,4, 0xcd88c80,27, 0xcd88d00,1, 0xcd88d10,3, 0xcd88d20,3, 0xcd88d30,3, 0xcd88d40,1, 0xcd88d48,3, 0xcd88e00,4, 0xcd88e80,31, 0xcd88f00,1, 0xcd88f10,3, 0xcd88f20,3, 0xcd88f30,3, 0xcd88f40,1, 0xcd88f48,3, 0xcd89000,4, 0xcd89040,13, 0xcd89080,1, 0xcd89200,15, 0xcd89240,4, 0xcd89260,17, 0xcd892c0,6, 0xcd892e0,2, 0xcd892ec,3, 0xcd89300,8, 0xcd89324,8, 0xcd89400,68, 0xcd89600,60, 0xcd89700,4, 0xcd89720,5, 0xcd89740,1, 0xcd89780,2, 0xcd8978c,2, 0xcd897a0,1, 0xcd897c0,12, 0xcd89800,7, 0xcd89820,5, 0xcd89900,49, 0xcd89a00,1, 0xcd89a08,23, 0xcd89a84,1, 0xcd89a8c,1, 0xcd89a94,1, 0xcd89a9c,2, 0xcd89ac0,1, 0xcd89c00,10, 0xcd89c40,1, 0xcd89c50,3, 0xcd89c80,10, 0xcd89cc0,12, 0xcd89d00,3, 0xcd89e00,1, 0xcd8a000,4, 0xcd8a100,42, 0xcd8a200,1, 0xcd8a210,3, 0xcd8a220,3, 0xcd8a230,3, 0xcd8a240,1, 0xcd8a248,3, 0xcd8a400,4, 0xcd8a500,58, 0xcd8a600,1, 0xcd8a610,3, 0xcd8a620,3, 0xcd8a630,3, 0xcd8a640,1, 0xcd8a648,3, 0xcd8a800,4, 0xcd8a900,36, 0xcd8aa00,1, 0xcd8ac00,4, 0xcd8ac80,27, 0xcd8ad00,1, 0xcd8ad10,3, 0xcd8ad20,3, 0xcd8ad30,3, 0xcd8ad40,1, 0xcd8ad48,3, 0xcd8ae00,4, 0xcd8ae80,31, 0xcd8af00,1, 0xcd8af10,3, 0xcd8af20,3, 0xcd8af30,3, 0xcd8af40,1, 0xcd8af48,3, 0xcd8b000,4, 0xcd8b040,13, 0xcd8b080,1, 0xcd8b200,15, 0xcd8b240,4, 0xcd8b260,17, 0xcd8b2c0,6, 0xcd8b2e0,2, 0xcd8b2ec,3, 0xcd8b300,8, 0xcd8b324,8, 0xcd8b400,68, 0xcd8b600,60, 0xcd8b700,4, 0xcd8b720,5, 0xcd8b740,1, 0xcd8b780,2, 0xcd8b78c,2, 0xcd8b7a0,1, 0xcd8b7c0,12, 0xcd8b800,7, 0xcd8b820,5, 0xcd8b900,49, 0xcd8ba00,1, 0xcd8ba08,23, 0xcd8ba84,1, 0xcd8ba8c,1, 0xcd8ba94,1, 0xcd8ba9c,2, 0xcd8bac0,1, 0xcd8bc00,10, 0xcd8bc40,1, 0xcd8bc50,3, 0xcd8bc80,10, 0xcd8bcc0,12, 0xcd8bd00,3, 0xcd8be00,1, 0xcd8c000,20, 0xcd8c080,3, 0xcd8c090,1, 0xcd8c098,4, 0xcd90000,49, 0xcd90100,12, 0xcd90140,4, 0xcd90184,1, 0xcd90198,2, 0xcd901a4,1, 0xcd901b8,7, 0xcd901e0,4, 0xcd90200,20, 0xcd90280,3, 0xcd90290,9, 0xcd902c0,6, 0xcd902e0,1, 0xcd902e8,7, 0xcd90400,49, 0xcd90500,12, 0xcd90540,4, 0xcd90584,1, 0xcd90598,2, 0xcd905a4,1, 0xcd905b8,7, 0xcd905e0,4, 0xcd90600,20, 0xcd90680,3, 0xcd90690,9, 0xcd906c0,6, 0xcd906e0,1, 0xcd906e8,7, 0xcd90800,49, 0xcd90900,12, 0xcd90940,4, 0xcd90984,1, 0xcd90998,2, 0xcd909a4,1, 0xcd909b8,7, 0xcd909e0,4, 0xcd90a00,20, 0xcd90a80,3, 0xcd90a90,9, 0xcd90ac0,6, 0xcd90ae0,1, 0xcd90ae8,7, 0xcd90c00,49, 0xcd90d00,12, 0xcd90d40,4, 0xcd90d84,1, 0xcd90d98,2, 0xcd90da4,1, 0xcd90db8,7, 0xcd90de0,4, 0xcd90e00,20, 0xcd90e80,3, 0xcd90e90,9, 0xcd90ec0,6, 0xcd90ee0,1, 0xcd90ee8,7, 0xcd91000,49, 0xcd91100,12, 0xcd91140,4, 0xcd91184,1, 0xcd91198,2, 0xcd911a4,1, 0xcd911b8,7, 0xcd911e0,4, 0xcd91200,20, 0xcd91280,3, 0xcd91290,9, 0xcd912c0,6, 0xcd912e0,1, 0xcd912e8,7, 0xcd91400,49, 0xcd91500,12, 0xcd91540,4, 0xcd91584,1, 0xcd91598,2, 0xcd915a4,1, 0xcd915b8,7, 0xcd915e0,4, 0xcd91600,20, 0xcd91680,3, 0xcd91690,9, 0xcd916c0,6, 0xcd916e0,1, 0xcd916e8,7, 0xcd91800,49, 0xcd91900,12, 0xcd91940,4, 0xcd91984,1, 0xcd91998,2, 0xcd919a4,1, 0xcd919b8,7, 0xcd919e0,4, 0xcd91a00,20, 0xcd91a80,3, 0xcd91a90,9, 0xcd91ac0,6, 0xcd91ae0,1, 0xcd91ae8,7, 0xcd92000,20, 0xcd92080,10, 0xcd92100,20, 0xcd92180,10, 0xcd92200,12, 0xcd92400,20, 0xcd92480,10, 0xcd92500,20, 0xcd92580,10, 0xcd92600,12, 0xcd92800,3, 0xcd92840,12, 0xcd92880,12, 0xcd928c0,12, 0xcd92900,12, 0xcd92940,12, 0xcd92980,12, 0xcd929c0,12, 0xcd92a00,12, 0xcd92c00,12, 0xcd92c40,7, 0xcd92c60,10, 0xcd93004,1, 0xcd93044,43, 0xcd93100,7, 0xcd93120,7, 0xcd93140,2, 0xcd9314c,2, 0xcd93160,2, 0xcd9316c,2, 0xcd93180,18, 0xcd93200,2, 0xcd93220,10, 0xcd93260,20, 0xcd932c0,9, 0xcd93300,15, 0xcd93340,9, 0xcd93380,6, 0xcd933a0,4, 0xcd93400,5, 0xcd94000,53, 0xcd94100,3, 0xcd94110,15, 0xcd94200,53, 0xcd94300,3, 0xcd94310,15, 0xcd94400,5, 0xcd94420,5, 0xcd94440,18, 0xcd94800,3, 0xcd94810,2, 0xcd94820,3, 0xcd94830,2, 0xcd94840,1, 0xcd95000,7, 0xcd95020,7, 0xcd95080,19, 0xcd95100,19, 0xcd95180,25, 0xcd95200,20, 0xcd95280,20, 0xcd95300,8, 0xcd95340,4, 0xcd95380,15, 0xcd953c0,15, 0xcd95400,9, 0xcd95430,5, 0xcd96000,6, 0xcd96020,1, 0xcd96028,2, 0xcd96040,11, 0xcd96070,2, 0xcd98000,82, 0xcd98200,2, 0xcd98240,9, 0xcd98280,7, 0xcd98400,82, 0xcd98604,6, 0xcd98700,15, 0xcd98740,9, 0xcd98780,6, 0xcd987a0,6, 0xcd98800,2, 0xcd98810,3, 0xcd98880,24, 0xcd988e4,1, 0xcd988f0,12, 0xcda0000,22, 0xcda0080,22, 0xcda0100,5, 0xcda0120,5, 0xcda0140,3, 0xcda0160,16, 0xcda01c0,7, 0xcda01e0,2, 0xcda0200,7, 0xcda0220,2, 0xcda0400,15, 0xcda0440,3, 0xcda0450,3, 0xcda0460,24, 0xcda0500,15, 0xcda0540,3, 0xcda0550,3, 0xcda0560,24, 0xcda0600,15, 0xcda0640,3, 0xcda0650,3, 0xcda0660,24, 0xcda0700,15, 0xcda0740,3, 0xcda0750,3, 0xcda0760,24, 0xcda0800,4, 0xcda0820,16, 0xcda0880,10, 0xcda08c0,10, 0xcda0900,6, 0xcda0920,6, 0xcda0940,4, 0xcda0980,13, 0xcda09c0,13, 0xcda0a00,9, 0xcda1000,86, 0xcda1200,2, 0xcda1240,9, 0xcda1280,7, 0xcda1400,86, 0xcda1604,6, 0xcda1800,86, 0xcda1a00,2, 0xcda1a40,9, 0xcda1a80,7, 0xcda1c00,86, 0xcda1e04,6, 0xcda2000,15, 0xcda2040,4, 0xcda2060,17, 0xcda20c0,6, 0xcda20e0,4, 0xcda20f4,11, 0xcda2128,38, 0xcda21c4,2, 0xcda21d0,4, 0xcda2200,1, 0xcda4000,22, 0xcda4080,22, 0xcda4100,5, 0xcda4120,5, 0xcda4140,3, 0xcda4160,16, 0xcda41c0,7, 0xcda41e0,2, 0xcda4200,7, 0xcda4220,2, 0xcda4400,15, 0xcda4440,3, 0xcda4450,3, 0xcda4460,24, 0xcda4500,15, 0xcda4540,3, 0xcda4550,3, 0xcda4560,24, 0xcda4600,15, 0xcda4640,3, 0xcda4650,3, 0xcda4660,24, 0xcda4700,15, 0xcda4740,3, 0xcda4750,3, 0xcda4760,24, 0xcda4800,4, 0xcda4820,16, 0xcda4880,10, 0xcda48c0,10, 0xcda4900,6, 0xcda4920,6, 0xcda4940,4, 0xcda4980,13, 0xcda49c0,13, 0xcda4a00,9, 0xcda5000,86, 0xcda5200,2, 0xcda5240,9, 0xcda5280,7, 0xcda5400,86, 0xcda5604,6, 0xcda5800,86, 0xcda5a00,2, 0xcda5a40,9, 0xcda5a80,7, 0xcda5c00,86, 0xcda5e04,6, 0xcda6000,15, 0xcda6040,4, 0xcda6060,17, 0xcda60c0,6, 0xcda60e0,4, 0xcda60f4,11, 0xcda6128,38, 0xcda61c4,2, 0xcda61d0,4, 0xcda6200,1, 0xcda8000,9, 0xcda8040,9, 0xcda8080,5, 0xcda8100,21, 0xcda8160,5, 0xcda8180,45, 0xcda8240,13, 0xcda8280,9, 0xcda8400,9, 0xcda8440,9, 0xcda8480,5, 0xcda8500,21, 0xcda8560,5, 0xcda8580,45, 0xcda8640,13, 0xcda8680,9, 0xcda8800,12, 0xcda8900,15, 0xcda8940,4, 0xcda8960,17, 0xcda89c0,6, 0xcda89e0,4, 0xcda89f4,29, 0xcdac000,30, 0xcdac080,3, 0xcdac090,19, 0xcdac100,30, 0xcdac180,3, 0xcdac190,19, 0xcdac200,30, 0xcdac280,3, 0xcdac290,19, 0xcdac300,30, 0xcdac380,3, 0xcdac390,19, 0xcdac400,30, 0xcdac480,3, 0xcdac490,19, 0xcdac500,30, 0xcdac580,3, 0xcdac590,19, 0xcdac600,30, 0xcdac680,3, 0xcdac690,19, 0xcdac700,30, 0xcdac780,3, 0xcdac790,19, 0xcdac800,12, 0xcdac844,1, 0xcdac854,8, 0xcdac880,7, 0xcdac8a0,2, 0xcdac8ac,2, 0xcdac8c0,26, 0xcdac980,4, 0xcdac9a0,5, 0xcdac9c0,1, 0xcdad000,3, 0xcdad010,3, 0xcdad020,3, 0xcdad030,3, 0xcdad040,3, 0xcdad050,3, 0xcdad060,3, 0xcdad070,3, 0xcdad080,6, 0xcdad0a0,6, 0xcdad0c0,6, 0xcdad0e0,6, 0xcdad100,6, 0xcdad120,6, 0xcdad140,6, 0xcdad160,6, 0xcdad200,68, 0xcdad400,1, 0xcdad804,1, 0xcdad844,54, 0xcdada00,12, 0xcdada40,12, 0xcdada80,12, 0xcdadac0,12, 0xcdadb00,12, 0xcdadb40,12, 0xcdadb80,12, 0xcdadbc0,12, 0xcdadc00,28, 0xcdadc80,10, 0xcdae000,3, 0xcdae020,6, 0xcdae040,6, 0xcdae060,15, 0xcdae100,26, 0xcdae180,15, 0xcdae200,15, 0xcdae240,4, 0xcdae260,17, 0xcdae2c0,6, 0xcdae2e0,4, 0xcdae2f4,18, 0xcdae340,4, 0xcdae360,17, 0xcdae3c0,6, 0xcdae3e0,4, 0xcdae3f4,15, 0xcdb0000,1, 0xcdb1000,1020, 0xcdb2000,194, 0xcdb3000,1020, 0xcdb4000,1020, 0xcdb5000,1020, 0xcdb6000,1020, 0xcdb7000,1020, 0xcdb8000,1020, 0xcdb9000,1020, 0xcdba000,1020, 0xcdbb000,194, 0xcdbc000,3, 0xcdbc010,13, 0xcdbc080,16, 0xcdbc100,20, 0xcdbc184,1, 0xcdbc18c,4, 0xcdbc200,3, 0xcdbc210,13, 0xcdbc280,16, 0xcdbc300,20, 0xcdbc384,1, 0xcdbc38c,4, 0xcdbc400,3, 0xcdbc410,13, 0xcdbc480,16, 0xcdbc500,20, 0xcdbc584,1, 0xcdbc58c,4, 0xcdbc600,3, 0xcdbc610,13, 0xcdbc680,16, 0xcdbc700,20, 0xcdbc784,1, 0xcdbc78c,4, 0xcdbc800,3, 0xcdbc810,13, 0xcdbc880,16, 0xcdbc900,20, 0xcdbc984,1, 0xcdbc98c,4, 0xcdbca00,3, 0xcdbca10,13, 0xcdbca80,16, 0xcdbcb00,20, 0xcdbcb84,1, 0xcdbcb8c,4, 0xcdbcc00,3, 0xcdbcc10,13, 0xcdbcc80,16, 0xcdbcd00,20, 0xcdbcd84,1, 0xcdbcd8c,4, 0xcdbce00,3, 0xcdbce10,13, 0xcdbce80,16, 0xcdbcf00,20, 0xcdbcf84,1, 0xcdbcf8c,4, 0xcdbd000,3, 0xcdbd010,13, 0xcdbd080,16, 0xcdbd100,20, 0xcdbd184,1, 0xcdbd18c,4, 0xcdbd200,18, 0xcdbd250,2, 0xcdbd260,4, 0xcdbe000,1, 0xcdbe014,1, 0xcdbe01c,19, 0xcdbe080,1, 0xcdbe094,1, 0xcdbe09c,19, 0xcdbe100,8, 0xcdbe200,13, 0xcdbe240,9, 0xcdbe280,12, 0xcdbe2c0,2, 0xcdbe2e0,12, 0xcdc0000,3, 0xcdc0080,20, 0xcdc0100,10, 0xcdc0140,1, 0xcdc0154,1, 0xcdc015c,2, 0xcdc0200,15, 0xcdc0240,4, 0xcdc0260,17, 0xcdc02c0,6, 0xcdc02e0,2, 0xcdc02ec,3, 0xcdc0300,8, 0xcdc0324,1, 0xcdc0400,4, 0xcdc0440,20, 0xcdc04c0,9, 0xcdc0500,33, 0xcdc0600,11, 0xcdc0640,11, 0xcdc0680,1, 0xcdc2000,1, 0xcdc2200,4, 0xcdc2300,53, 0xcdc2400,4, 0xcdc2500,40, 0xcdc2600,15, 0xcdc2640,4, 0xcdc2660,17, 0xcdc26c0,6, 0xcdc26e0,2, 0xcdc26ec,3, 0xcdc2700,8, 0xcdc2724,1, 0xcdc2800,20, 0xcdc2c00,53, 0xcdc2d00,53, 0xcdc2e00,1, 0xcdc3000,40, 0xcdc3100,40, 0xcdc3200,1, 0xcdc3400,1, 0xcdc3804,1, 0xcdc3844,39, 0xcdc3900,3, 0xcdc3a00,3, 0xcdc3a44,1, 0xcdc3a50,4, 0xcdc3a80,1, 0xcdc4000,2, 0xcdc4200,27, 0xcdc4280,4, 0xcdc42c0,25, 0xcdc4340,6, 0xcdc4360,2, 0xcdc436c,3, 0xcdc4380,8, 0xcdc43a4,1, 0xcdc4400,12, 0xcdc4440,1, 0xcdc8000,3, 0xcdc8080,20, 0xcdc8100,10, 0xcdc8140,1, 0xcdc8154,1, 0xcdc815c,2, 0xcdc8200,15, 0xcdc8240,4, 0xcdc8260,17, 0xcdc82c0,6, 0xcdc82e0,2, 0xcdc82ec,3, 0xcdc8300,8, 0xcdc8324,1, 0xcdc8400,4, 0xcdc8440,20, 0xcdc84c0,9, 0xcdc8500,33, 0xcdc8600,11, 0xcdc8640,11, 0xcdc8680,1, 0xcdca000,1, 0xcdca200,4, 0xcdca300,53, 0xcdca400,4, 0xcdca500,40, 0xcdca600,15, 0xcdca640,4, 0xcdca660,17, 0xcdca6c0,6, 0xcdca6e0,2, 0xcdca6ec,3, 0xcdca700,8, 0xcdca724,1, 0xcdca800,20, 0xcdcac00,53, 0xcdcad00,53, 0xcdcae00,1, 0xcdcb000,40, 0xcdcb100,40, 0xcdcb200,1, 0xcdcb400,1, 0xcdcb804,1, 0xcdcb844,39, 0xcdcb900,3, 0xcdcba00,3, 0xcdcba44,1, 0xcdcba50,4, 0xcdcba80,1, 0xcdcc000,2, 0xcdcc200,27, 0xcdcc280,4, 0xcdcc2c0,25, 0xcdcc340,6, 0xcdcc360,2, 0xcdcc36c,3, 0xcdcc380,8, 0xcdcc3a4,1, 0xcdcc400,12, 0xcdcc440,1, 0xcdd0000,4, 0xcdd0020,3, 0xcdd0030,2, 0xcdd0200,1, 0xcdd0224,10, 0xcdd0250,5, 0xcdd0280,1, 0xcdd0288,24, 0xcdd0300,3, 0xcdd0404,1, 0xcdd0414,5, 0xcdd0500,36, 0xcdd0600,3, 0xcdd0800,2, 0xcdd1000,1, 0xcdd1008,21, 0xcdd1080,1, 0xcdd1088,21, 0xcdd1100,1, 0xcdd1108,21, 0xcdd1180,1, 0xcdd1188,21, 0xcdd1200,1, 0xcdd1208,21, 0xcdd1280,1, 0xcdd1288,21, 0xcdd1300,1, 0xcdd1308,21, 0xcdd1380,1, 0xcdd1388,21, 0xcdd1400,21, 0xcdd1800,142, 0xcdd1c00,1, 0xcdd2000,4, 0xcdd2100,39, 0xcdd2200,3, 0xcdd2214,3, 0xcdd4004,1, 0xcdd4020,16, 0xcdd4080,2, 0xcdd4094,1, 0xcdd409c,2, 0xcdd40c0,6, 0xcdd4100,8, 0xcdd8004,17, 0xcdd8054,1, 0xcdd805c,2, 0xcdd8080,1, 0xcdd80a0,2, 0xcdd80b4,4, 0xcdd8100,2, 0xcdd8200,8, 0xcdd8400,1, 0xcdd8600,27, 0xcdd8680,4, 0xcdd86c0,25, 0xcdd8740,6, 0xcdd8760,2, 0xcdd876c,3, 0xcdd8780,8, 0xcdd87a4,3, 0xcdd8800,44, 0xcdd8900,1, 0xcde0000,1, 0xcde0200,27, 0xcde0280,4, 0xcde02c0,25, 0xcde0340,6, 0xcde0360,2, 0xcde036c,3, 0xcde0380,8, 0xcde03a4,1, 0xcde0400,20, 0xcde0480,3, 0xcde0490,9, 0xd002000,49, 0xd002100,12, 0xd002140,4, 0xd002184,1, 0xd002198,2, 0xd0021a4,1, 0xd0021b8,7, 0xd0021e0,4, 0xd002200,20, 0xd002280,3, 0xd002290,9, 0xd0022c0,6, 0xd0022e0,1, 0xd0022e8,7, 0xd002400,49, 0xd002500,12, 0xd002540,4, 0xd002584,1, 0xd002598,2, 0xd0025a4,1, 0xd0025b8,7, 0xd0025e0,4, 0xd002600,20, 0xd002680,3, 0xd002690,9, 0xd0026c0,6, 0xd0026e0,1, 0xd0026e8,7, 0xd002800,7, 0xd002820,3, 0xd002830,11, 0xd002860,14, 0xd002900,9, 0xd002a00,7, 0xd002a20,9, 0xd002a80,2, 0xd002c00,27, 0xd002c80,9, 0xd002cc0,6, 0xd002ce0,4, 0xd002d00,5, 0xd002d18,5, 0xd002d30,9, 0xd002d58,5, 0xd002d70,7, 0xd002e00,6, 0xd002e20,6, 0xd002e40,6, 0xd002e60,6, 0xd002e80,6, 0xd002ea0,6, 0xd002ec0,6, 0xd002ee0,6, 0xd002f00,6, 0xd002f20,6, 0xd002f40,6, 0xd002f60,6, 0xd002f80,6, 0xd002fa0,6, 0xd002fc0,6, 0xd002fe0,6, 0xd003000,28, 0xd003080,6, 0xd040000,3, 0xd04001c,6, 0xd040080,3, 0xd040090,1, 0xd0400d0,3, 0xd0400e4,25, 0xd04014c,21, 0xd0401a4,12, 0xd0401d8,72, 0xd040304,5, 0xd04031c,98, 0xd0404ac,4, 0xd0404c8,20, 0xd040520,56, 0xd040608,21, 0xd040664,3, 0xd040674,22, 0xd040710,1, 0xd040750,3, 0xd040764,25, 0xd0407cc,21, 0xd040824,12, 0xd040858,72, 0xd040984,5, 0xd04099c,98, 0xd040b2c,4, 0xd040b48,20, 0xd040ba0,56, 0xd040c88,21, 0xd040ce4,3, 0xd040cf4,22, 0xd040d90,1, 0xd040dd0,3, 0xd040de4,25, 0xd040e4c,21, 0xd040ea4,12, 0xd040ed8,72, 0xd041004,5, 0xd04101c,98, 0xd0411ac,4, 0xd0411c8,20, 0xd041220,56, 0xd041308,21, 0xd041364,3, 0xd041374,22, 0xd041410,1, 0xd041450,3, 0xd041464,25, 0xd0414cc,21, 0xd041524,12, 0xd041558,72, 0xd041684,5, 0xd04169c,98, 0xd04182c,4, 0xd041848,20, 0xd0418a0,56, 0xd041988,21, 0xd0419e4,3, 0xd0419f4,22, 0xd041a90,1, 0xd041ad0,3, 0xd041ae4,25, 0xd041b4c,21, 0xd041ba4,12, 0xd041bd8,72, 0xd041d04,5, 0xd041d1c,98, 0xd041eac,4, 0xd041ec8,20, 0xd041f20,56, 0xd042008,21, 0xd042064,3, 0xd042074,22, 0xd042110,1, 0xd042150,3, 0xd042164,25, 0xd0421cc,21, 0xd042224,12, 0xd042258,72, 0xd042384,5, 0xd04239c,98, 0xd04252c,4, 0xd042548,20, 0xd0425a0,56, 0xd042688,21, 0xd0426e4,3, 0xd0426f4,22, 0xd042790,1, 0xd0427d0,3, 0xd0427e4,25, 0xd04284c,21, 0xd0428a4,12, 0xd0428d8,72, 0xd042a04,5, 0xd042a1c,98, 0xd042bac,4, 0xd042bc8,20, 0xd042c20,56, 0xd042d08,21, 0xd042d64,3, 0xd042d74,22, 0xd042e10,1, 0xd042e50,3, 0xd042e64,25, 0xd042ecc,21, 0xd042f24,12, 0xd042f58,72, 0xd043084,5, 0xd04309c,98, 0xd04322c,4, 0xd043248,20, 0xd0432a0,56, 0xd043388,21, 0xd0433e4,3, 0xd0433f4,22, 0xd043490,1, 0xd0434d0,3, 0xd0434e4,25, 0xd04354c,21, 0xd0435a4,12, 0xd0435d8,72, 0xd043704,5, 0xd04371c,98, 0xd0438ac,4, 0xd0438c8,20, 0xd043920,56, 0xd043a08,21, 0xd043a64,3, 0xd043a74,22, 0xd043b10,1, 0xd043b50,3, 0xd043b64,25, 0xd043bcc,21, 0xd043c24,12, 0xd043c58,72, 0xd043d84,5, 0xd043d9c,98, 0xd043f2c,4, 0xd043f48,20, 0xd043fa0,56, 0xd044088,21, 0xd0440e4,3, 0xd0440f4,22, 0xd044190,1, 0xd0441d0,3, 0xd0441e4,25, 0xd04424c,21, 0xd0442a4,12, 0xd0442d8,72, 0xd044404,5, 0xd04441c,98, 0xd0445ac,4, 0xd0445c8,20, 0xd044620,56, 0xd044708,21, 0xd044764,3, 0xd044774,22, 0xd044810,1, 0xd044850,3, 0xd044864,25, 0xd0448cc,21, 0xd044924,12, 0xd044958,72, 0xd044a84,5, 0xd044a9c,98, 0xd044c2c,4, 0xd044c48,20, 0xd044ca0,56, 0xd044d88,21, 0xd044de4,3, 0xd044df4,22, 0xd044e90,1, 0xd044ed0,3, 0xd044ee4,25, 0xd044f4c,21, 0xd044fa4,12, 0xd044fd8,72, 0xd045104,5, 0xd04511c,98, 0xd0452ac,4, 0xd0452c8,20, 0xd045320,56, 0xd045408,21, 0xd045464,3, 0xd045474,22, 0xd045510,1, 0xd045550,3, 0xd045564,25, 0xd0455cc,21, 0xd045624,12, 0xd045658,72, 0xd045784,5, 0xd04579c,98, 0xd04592c,4, 0xd045948,20, 0xd0459a0,56, 0xd045a88,21, 0xd045ae4,3, 0xd045af4,22, 0xd045b90,1, 0xd045bd0,3, 0xd045be4,25, 0xd045c4c,21, 0xd045ca4,12, 0xd045cd8,72, 0xd045e04,5, 0xd045e1c,98, 0xd045fac,4, 0xd045fc8,20, 0xd046020,56, 0xd046108,21, 0xd046164,3, 0xd046174,22, 0xd046210,1, 0xd046250,3, 0xd046264,25, 0xd0462cc,21, 0xd046324,12, 0xd046358,72, 0xd046484,5, 0xd04649c,98, 0xd04662c,4, 0xd046648,20, 0xd0466a0,56, 0xd046788,21, 0xd0467e4,3, 0xd0467f4,22, 0xd046890,1, 0xd0468d0,3, 0xd0468e4,25, 0xd04694c,21, 0xd0469a4,12, 0xd0469d8,72, 0xd046b04,5, 0xd046b1c,98, 0xd046cac,4, 0xd046cc8,20, 0xd046d20,56, 0xd046e08,21, 0xd046e64,3, 0xd046e74,22, 0xd046f10,1, 0xd046f50,3, 0xd046f64,25, 0xd046fcc,21, 0xd047024,12, 0xd047058,72, 0xd047184,5, 0xd04719c,98, 0xd04732c,4, 0xd047348,20, 0xd0473a0,56, 0xd047488,21, 0xd0474e4,3, 0xd0474f4,22, 0xd047590,1, 0xd0475d0,3, 0xd0475e4,25, 0xd04764c,21, 0xd0476a4,12, 0xd0476d8,72, 0xd047804,5, 0xd04781c,98, 0xd0479ac,4, 0xd0479c8,20, 0xd047a20,56, 0xd047b08,21, 0xd047b64,3, 0xd047b74,22, 0xd047c10,1, 0xd047c50,3, 0xd047c64,25, 0xd047ccc,21, 0xd047d24,12, 0xd047d58,72, 0xd047e84,5, 0xd047e9c,98, 0xd04802c,4, 0xd048048,20, 0xd0480a0,56, 0xd048188,21, 0xd0481e4,3, 0xd0481f4,22, 0xd048290,1, 0xd0482d0,3, 0xd0482e4,25, 0xd04834c,21, 0xd0483a4,12, 0xd0483d8,72, 0xd048504,5, 0xd04851c,98, 0xd0486ac,4, 0xd0486c8,20, 0xd048720,56, 0xd048808,21, 0xd048864,3, 0xd048874,22, 0xd048910,1, 0xd048950,3, 0xd048964,25, 0xd0489cc,21, 0xd048a24,12, 0xd048a58,72, 0xd048b84,5, 0xd048b9c,98, 0xd048d2c,4, 0xd048d48,20, 0xd048da0,56, 0xd048e88,21, 0xd048ee4,3, 0xd048ef4,22, 0xd048f90,1, 0xd048fd0,3, 0xd048fe4,25, 0xd04904c,21, 0xd0490a4,12, 0xd0490d8,72, 0xd049204,5, 0xd04921c,98, 0xd0493ac,4, 0xd0493c8,20, 0xd049420,56, 0xd049508,21, 0xd049564,3, 0xd049574,22, 0xd049610,1, 0xd049650,3, 0xd049664,25, 0xd0496cc,21, 0xd049724,12, 0xd049758,72, 0xd049884,5, 0xd04989c,98, 0xd049a2c,4, 0xd049a48,20, 0xd049aa0,56, 0xd049b88,21, 0xd049be4,3, 0xd049bf4,22, 0xd049c90,1, 0xd049cd0,3, 0xd049ce4,25, 0xd049d4c,21, 0xd049da4,12, 0xd049dd8,72, 0xd049f04,5, 0xd049f1c,98, 0xd04a0ac,4, 0xd04a0c8,20, 0xd04a120,56, 0xd04a208,21, 0xd04a264,3, 0xd04a274,22, 0xd04a310,1, 0xd04a350,3, 0xd04a364,25, 0xd04a3cc,21, 0xd04a424,12, 0xd04a458,72, 0xd04a584,5, 0xd04a59c,98, 0xd04a72c,4, 0xd04a748,20, 0xd04a7a0,56, 0xd04a888,21, 0xd04a8e4,3, 0xd04a8f4,22, 0xd04a990,1, 0xd04a9d0,3, 0xd04a9e4,25, 0xd04aa4c,21, 0xd04aaa4,12, 0xd04aad8,72, 0xd04ac04,5, 0xd04ac1c,98, 0xd04adac,4, 0xd04adc8,20, 0xd04ae20,56, 0xd04af08,21, 0xd04af64,3, 0xd04af74,22, 0xd04b010,1, 0xd04b050,3, 0xd04b064,25, 0xd04b0cc,21, 0xd04b124,12, 0xd04b158,72, 0xd04b284,5, 0xd04b29c,98, 0xd04b42c,4, 0xd04b448,20, 0xd04b4a0,56, 0xd04b588,21, 0xd04b5e4,3, 0xd04b5f4,22, 0xd04b690,1, 0xd04b6d0,3, 0xd04b6e4,25, 0xd04b74c,21, 0xd04b7a4,12, 0xd04b7d8,72, 0xd04b904,5, 0xd04b91c,98, 0xd04baac,4, 0xd04bac8,20, 0xd04bb20,56, 0xd04bc08,21, 0xd04bc64,3, 0xd04bc74,22, 0xd04bd10,1, 0xd04bd50,3, 0xd04bd64,25, 0xd04bdcc,21, 0xd04be24,12, 0xd04be58,72, 0xd04bf84,5, 0xd04bf9c,98, 0xd04c12c,4, 0xd04c148,20, 0xd04c1a0,56, 0xd04c288,21, 0xd04c2e4,3, 0xd04c2f4,22, 0xd04c390,1, 0xd04c3d0,3, 0xd04c3e4,25, 0xd04c44c,21, 0xd04c4a4,12, 0xd04c4d8,72, 0xd04c604,5, 0xd04c61c,98, 0xd04c7ac,4, 0xd04c7c8,20, 0xd04c820,56, 0xd04c908,21, 0xd04c964,3, 0xd04c974,22, 0xd04ca10,1, 0xd04ca50,3, 0xd04ca64,25, 0xd04cacc,21, 0xd04cb24,12, 0xd04cb58,72, 0xd04cc84,5, 0xd04cc9c,98, 0xd04ce2c,4, 0xd04ce48,20, 0xd04cea0,56, 0xd04cf88,21, 0xd04cfe4,3, 0xd04cff4,22, 0xd04d090,1, 0xd04d0d0,3, 0xd04d0e4,25, 0xd04d14c,21, 0xd04d1a4,12, 0xd04d1d8,72, 0xd04d304,5, 0xd04d31c,98, 0xd04d4ac,4, 0xd04d4c8,20, 0xd04d520,56, 0xd04d608,21, 0xd04d664,3, 0xd04d674,22, 0xd04d710,1, 0xd04d750,3, 0xd04d764,25, 0xd04d7cc,21, 0xd04d824,12, 0xd04d858,72, 0xd04d984,5, 0xd04d99c,98, 0xd04db2c,4, 0xd04db48,20, 0xd04dba0,56, 0xd04dc88,21, 0xd04dce4,3, 0xd04dcf4,22, 0xd04dd90,1, 0xd04ddd0,3, 0xd04dde4,25, 0xd04de4c,21, 0xd04dea4,12, 0xd04ded8,72, 0xd04e004,5, 0xd04e01c,98, 0xd04e1ac,4, 0xd04e1c8,20, 0xd04e220,56, 0xd04e308,21, 0xd04e364,3, 0xd04e374,22, 0xd04e410,2, 0xd04e454,72, 0xd04e760,3, 0xd04e7ac,42, 0xd04e85c,31, 0xd04e990,54, 0xd04ea70,58, 0xd04eb60,58, 0xd04ec50,58, 0xd04ed40,58, 0xd04ee30,58, 0xd04ef20,58, 0xd04f010,58, 0xd04f100,58, 0xd04f1f0,58, 0xd04f2e0,58, 0xd04f3d0,58, 0xd04f4c0,58, 0xd04f5b0,58, 0xd04f6a0,58, 0xd04f790,58, 0xd04f880,58, 0xd04f970,58, 0xd04fa60,58, 0xd04fb50,58, 0xd04fc40,58, 0xd04fd30,58, 0xd04fe20,58, 0xd04ff10,58, 0xd050000,58, 0xd0500f0,58, 0xd0501e0,58, 0xd0502d0,58, 0xd0503c0,58, 0xd0504b0,58, 0xd0505a0,58, 0xd050690,58, 0xd050780,101, 0xd050990,49, 0xd050a90,18, 0xd050ae0,11, 0xd050b10,4, 0xd050b34,45, 0xd050c38,9, 0xd050c68,4, 0xd050c80,2, 0xd050cb8,14, 0xd050cf4,12, 0xd050e38,3, 0xd050e48,2, 0xd050e54,68, 0xd050f68,2, 0xd050f74,68, 0xd051088,1, 0xd051090,2, 0xd05109c,68, 0xd0511b0,2, 0xd0511bc,68, 0xd0512d0,1, 0xd0512d8,4, 0xd0512f0,3, 0xd051304,4, 0xd051318,7, 0xd051368,8, 0xd0513bc,1, 0xd0513c8,4, 0xd0513e0,3, 0xd0513f4,4, 0xd051408,7, 0xd051458,8, 0xd0514ac,1, 0xd0514b8,4, 0xd0514d0,3, 0xd0514e4,4, 0xd0514f8,7, 0xd051548,8, 0xd05159c,1, 0xd0515a8,4, 0xd0515c0,3, 0xd0515d4,4, 0xd0515e8,7, 0xd051638,8, 0xd05168c,1, 0xd051698,4, 0xd0516b0,3, 0xd0516c4,4, 0xd0516d8,7, 0xd051728,8, 0xd05177c,1, 0xd051788,4, 0xd0517a0,3, 0xd0517b4,4, 0xd0517c8,7, 0xd051818,8, 0xd05186c,1, 0xd051878,4, 0xd051890,3, 0xd0518a4,4, 0xd0518b8,7, 0xd051908,8, 0xd05195c,1, 0xd051968,4, 0xd051980,3, 0xd051994,4, 0xd0519a8,7, 0xd0519f8,8, 0xd051a4c,1, 0xd051a58,4, 0xd051a70,3, 0xd051a84,4, 0xd051a98,7, 0xd051ae8,8, 0xd051b3c,1, 0xd051b48,4, 0xd051b60,3, 0xd051b74,4, 0xd051b88,7, 0xd051bd8,8, 0xd051c2c,1, 0xd051c38,4, 0xd051c50,3, 0xd051c64,4, 0xd051c78,7, 0xd051cc8,8, 0xd051d1c,1, 0xd051d28,4, 0xd051d40,3, 0xd051d54,4, 0xd051d68,7, 0xd051db8,8, 0xd051e0c,1, 0xd051e18,4, 0xd051e30,3, 0xd051e44,4, 0xd051e58,7, 0xd051ea8,8, 0xd051efc,1, 0xd051f08,4, 0xd051f20,3, 0xd051f34,4, 0xd051f48,7, 0xd051f98,8, 0xd051fec,1, 0xd051ff8,4, 0xd052010,3, 0xd052024,4, 0xd052038,7, 0xd052088,8, 0xd0520dc,1, 0xd0520e8,4, 0xd052100,3, 0xd052114,4, 0xd052128,7, 0xd052178,8, 0xd0521cc,1, 0xd0521d8,4, 0xd0521f0,3, 0xd052204,4, 0xd052218,7, 0xd052268,8, 0xd0522bc,1, 0xd0522c8,64, 0xd052428,4, 0xd052678,27, 0xd0526ec,3, 0xd052778,1, 0xd0528c8,11, 0xd0528f8,17, 0xd052940,1, 0xd052948,1, 0xd052950,1, 0xd052978,36, 0xd052a0c,57, 0xd052af4,34, 0xd052b80,57, 0xd052c68,34, 0xd052cf4,57, 0xd052ddc,34, 0xd052e68,57, 0xd052f50,34, 0xd052fdc,57, 0xd0530c4,34, 0xd053150,57, 0xd053238,34, 0xd0532c4,57, 0xd0533ac,34, 0xd053438,57, 0xd053520,34, 0xd0535ac,57, 0xd053694,34, 0xd053720,57, 0xd053808,34, 0xd053894,57, 0xd05397c,34, 0xd053a08,57, 0xd053af0,34, 0xd053b7c,57, 0xd053c64,34, 0xd053cf0,57, 0xd053dd8,34, 0xd053e64,57, 0xd053f4c,34, 0xd053fd8,57, 0xd0540c0,34, 0xd05414c,57, 0xd054234,34, 0xd0542c0,57, 0xd0543a8,34, 0xd054434,57, 0xd05451c,34, 0xd0545a8,57, 0xd054690,34, 0xd05471c,57, 0xd054804,34, 0xd054890,57, 0xd054978,34, 0xd054a04,57, 0xd054aec,34, 0xd054b78,57, 0xd054c60,34, 0xd054cec,57, 0xd054dd4,34, 0xd054e60,57, 0xd054f48,34, 0xd054fd4,57, 0xd0550bc,34, 0xd055148,57, 0xd055230,34, 0xd0552bc,57, 0xd0553a4,34, 0xd055430,57, 0xd055518,34, 0xd0555a4,57, 0xd05568c,34, 0xd055718,57, 0xd055800,34, 0xd05588c,57, 0xd055974,34, 0xd055a00,57, 0xd055ae8,34, 0xd055b74,57, 0xd055d68,18, 0xd055ee8,2131, 0xd05830c,164, 0xd05865c,1, 0xd0591e8,1, 0xd0591f8,225, 0xd059588,7, 0xd0595a8,1, 0xd059670,1, 0xd0596a0,9, 0xd0596c8,17, 0xd059720,49, 0xd0597e8,5, 0xd059858,1, 0xd05a1e8,4, 0xd05a200,9, 0xd05a228,144, 0xd05a528,8, 0xd0a0000,3, 0xd0a0018,2, 0xd0a0024,14, 0xd0a0060,27, 0xd0a00d0,3, 0xd0a00e0,3, 0xd0a00f0,3, 0xd0a0100,14, 0xd0a0140,3, 0xd0a0150,1, 0xd0a015c,4, 0xd0a0170,1, 0xd0a0180,15, 0xd0a01c0,1, 0xd0a01c8,5, 0xd0a01e0,1, 0xd0a01f0,7, 0xd0a0218,2, 0xd0a0224,14, 0xd0a0260,27, 0xd0a02d0,3, 0xd0a02e0,3, 0xd0a02f0,3, 0xd0a0300,14, 0xd0a0340,3, 0xd0a0350,1, 0xd0a035c,4, 0xd0a0370,1, 0xd0a0380,15, 0xd0a03c0,1, 0xd0a03c8,5, 0xd0a03e0,1, 0xd0a03f0,7, 0xd0a0418,2, 0xd0a0424,14, 0xd0a0460,27, 0xd0a04d0,3, 0xd0a04e0,3, 0xd0a04f0,3, 0xd0a0500,14, 0xd0a0540,3, 0xd0a0550,1, 0xd0a055c,4, 0xd0a0570,1, 0xd0a0580,15, 0xd0a05c0,1, 0xd0a05c8,5, 0xd0a05e0,1, 0xd0a05f0,7, 0xd0a0618,2, 0xd0a0624,14, 0xd0a0660,27, 0xd0a06d0,3, 0xd0a06e0,3, 0xd0a06f0,3, 0xd0a0700,14, 0xd0a0740,3, 0xd0a0750,1, 0xd0a075c,4, 0xd0a0770,1, 0xd0a0780,15, 0xd0a07c0,1, 0xd0a07c8,5, 0xd0a07e0,1, 0xd0a07f0,7, 0xd0a0818,2, 0xd0a0824,14, 0xd0a0860,27, 0xd0a08d0,3, 0xd0a08e0,3, 0xd0a08f0,3, 0xd0a0900,14, 0xd0a0940,3, 0xd0a0950,1, 0xd0a095c,4, 0xd0a0970,1, 0xd0a0980,15, 0xd0a09c0,1, 0xd0a09c8,5, 0xd0a09e0,1, 0xd0a09f0,4, 0xd0a1844,1, 0xd0a1850,3, 0xd0a1860,3, 0xd0a1870,7, 0xd0a1894,5, 0xd0a18c0,1, 0xd0a18e0,7, 0xd0a1900,11, 0xd0a1930,3, 0xd0a1980,4, 0xd0a19c0,14, 0xd0a1c00,5, 0xd0a1c18,95, 0xd0a1da0,66, 0xd0a2000,16, 0xd0a2100,36, 0xd0a2200,44, 0xd0a2400,100, 0xd0a2600,45, 0xd0a2700,4, 0xd0a2780,20, 0xd0a2800,2, 0xd0a280c,68, 0xd0a2920,3, 0xd0a2c04,1, 0xd0a2c40,28, 0xd0a2cb4,9, 0xd0a2ce0,7, 0xd0a2d00,7, 0xd0a2d20,7, 0xd0a2d40,7, 0xd0a2d60,7, 0xd0a2d80,7, 0xd0a2da0,7, 0xd0a2dc0,7, 0xd0a2e00,9, 0xd0a2e3c,2, 0xd0a2e50,6, 0xd0a2e84,10, 0xd0a3004,1, 0xd0a31f8,130, 0xd0a3c00,1, 0xd0a3c20,10, 0xd0a3c60,8, 0xd0a3c84,5, 0xd0a3d00,32, 0xd0a3d84,1, 0xd0a3d94,6, 0xd0a3e40,71, 0xd0a4a04,3, 0xd0a4b00,33, 0xd0a4b90,3, 0xd0a4c00,12, 0xd0a4cc0,4, 0xd0a4d00,15, 0xd0a4e00,25, 0xd0a4e84,1, 0xd0a4ea0,13, 0xd0a5000,2, 0xd0a5400,4, 0xd0a5420,8, 0xd0a5444,1, 0xd0a544c,1, 0xd0a5454,1, 0xd0a545c,10, 0xd0a5800,3, 0xd0a5810,3, 0xd0a5820,3, 0xd0a5830,3, 0xd0a5840,3, 0xd0a5850,3, 0xd0a5860,3, 0xd0a5870,3, 0xd0a5880,3, 0xd0a5890,3, 0xd0a58a0,3, 0xd0a58b0,3, 0xd0a58c0,3, 0xd0a58d0,3, 0xd0a58e0,3, 0xd0a58f0,3, 0xd0a5900,3, 0xd0a5910,3, 0xd0a5920,3, 0xd0a5930,3, 0xd0a5940,3, 0xd0a5950,3, 0xd0a5960,3, 0xd0a5970,3, 0xd0a5980,3, 0xd0a5990,3, 0xd0a59a0,3, 0xd0a59b0,3, 0xd0a59c0,3, 0xd0a59d0,3, 0xd0a59e0,3, 0xd0a59f0,3, 0xd0a5a00,3, 0xd0a5a10,3, 0xd0a5a20,3, 0xd0a5a30,3, 0xd0a5a40,3, 0xd0a5a50,3, 0xd0a5a60,3, 0xd0a5a70,3, 0xd0a5a80,3, 0xd0a5a90,3, 0xd0a5aa0,3, 0xd0a5ab0,3, 0xd0a5ac0,3, 0xd0a5ad0,3, 0xd0a5ae0,3, 0xd0a5af0,3, 0xd0a5b00,3, 0xd0a5b10,3, 0xd0a5b20,3, 0xd0a5b30,3, 0xd0a5b40,3, 0xd0a5b50,3, 0xd0a5b60,3, 0xd0a5b70,3, 0xd0a5b80,3, 0xd0a5b90,3, 0xd0a5ba0,3, 0xd0a5bb0,3, 0xd0a5bc0,3, 0xd0a5bd0,3, 0xd0a5be0,3, 0xd0a5bf0,3, 0xd0a5c00,1, 0xd0a5c08,8, 0xd0a5c30,8, 0xd0a5c54,1, 0xd0a5c5c,2, 0xd0a5c68,2, 0xd0a6000,11, 0xd0a6030,1, 0xd0a6080,2, 0xd0a60c4,2, 0xd0a60d0,1, 0xd0a60d8,1, 0xd0a60e0,1, 0xd0a60f4,3, 0xd0a7000,128, 0xd0a7208,256, 0xd0a7610,145, 0xd0a8000,24, 0xd0a8078,1, 0xd0a8080,1, 0xd0f0000,1, 0xd0f000c,12, 0xd0f0040,3, 0xd0f0404,1, 0xd0f0410,6, 0xd0f0440,5, 0xd0f0460,7, 0xd0f0480,7, 0xd0f04a0,7, 0xd0f0520,4, 0xd0f0540,10, 0xd0f0580,10, 0xd0f05c0,3, 0xd0f0600,20, 0xd0f0680,3, 0xd0f0800,5, 0xd0f0a00,29, 0xd0f0a80,3, 0xd0f0c04,1, 0xd0f0d90,188, 0xd0f10a8,8, 0xd0f1100,3, 0xd0f1110,12, 0xd0f1400,1, 0xd0f1480,18, 0xd0f1500,1, 0xd0f1600,2, 0xd0f1610,3, 0xd0f1620,3, 0xd0f1630,3, 0xd0f1640,3, 0xd0f1650,3, 0xd0f1660,3, 0xd0f1670,3, 0xd0f1680,3, 0xd0f1690,3, 0xd0f16a0,3, 0xd0f16b0,3, 0xd0f16c0,3, 0xd0f16d0,3, 0xd0f16e0,3, 0xd0f16f0,3, 0xd0f1700,3, 0xd0f2000,96, 0xd0f2400,2, 0xd0f2410,3, 0xd0f2420,3, 0xd0f2430,3, 0xd0f2440,3, 0xd0f2450,3, 0xd0f2460,3, 0xd0f2470,3, 0xd0f2480,3, 0xd0f2490,3, 0xd0f24a0,3, 0xd0f24b0,3, 0xd0f24c0,3, 0xd0f24d0,3, 0xd0f24e0,3, 0xd0f24f0,3, 0xd0f2500,3, 0xd0f2600,7, 0xd0f2620,3, 0xd0f2630,1, 0xd0f2800,8, 0xd0f2900,2, 0xd0f2910,3, 0xd0f2920,3, 0xd0f2930,3, 0xd0f2940,3, 0xd0f2950,3, 0xd0f2960,3, 0xd0f2970,3, 0xd0f2980,3, 0xd0f2a00,3, 0xd0f3000,15, 0xd0f3040,3, 0xd0f3080,2, 0xd0f30c0,9, 0xd0f3100,1, 0xd0f3200,2, 0xd0f3210,3, 0xd0f3220,3, 0xd0f3230,3, 0xd0f3240,3, 0xd0f3250,3, 0xd0f3260,3, 0xd0f3270,3, 0xd0f3280,3, 0xd0f3300,2, 0xd0f3314,3, 0xd0f3324,3, 0xd0f3334,1, 0xd0f333c,1, 0xd0f3404,1, 0xd0f347c,33, 0xd0f3504,1, 0xd0f350c,1, 0xd0f3580,18, 0xd0f3600,5, 0xd0f3640,9, 0xd0f3680,9, 0xd0f36c0,27, 0xd0f3730,2, 0xd0f3740,9, 0xd0f3780,3, 0xd0f37a0,8, 0xd0f3800,6, 0xd0f3820,7, 0xd0f3840,6, 0xd0f3860,7, 0xd0f3880,3, 0xd0f3890,1, 0xd0f3900,2, 0xd0f4004,1, 0xd0f4080,34, 0xd0f4110,10, 0xd0f413c,3, 0xd0f4204,1, 0xd0f4280,36, 0xd0f4314,1, 0xd0f4400,20, 0xd0f4480,9, 0xd0f4804,1, 0xd0f4880,34, 0xd0f4910,10, 0xd0f493c,3, 0xd0f4a04,1, 0xd0f4a80,36, 0xd0f4b14,1, 0xd0f4c00,20, 0xd0f4c80,9, 0xd0f5004,1, 0xd0f5080,34, 0xd0f5110,10, 0xd0f513c,3, 0xd0f5204,1, 0xd0f5280,36, 0xd0f5314,1, 0xd0f5400,20, 0xd0f5480,9, 0xd0f5800,20, 0xd0f5884,1, 0xd0f588c,1, 0xd0f58c0,12, 0xd0f5900,3, 0xd0f5a00,20, 0xd0f5a84,1, 0xd0f5a8c,1, 0xd0f5ac0,12, 0xd0f5b00,3, 0xd0f5c00,20, 0xd0f5c84,1, 0xd0f5c8c,1, 0xd0f5cc0,12, 0xd0f5d00,3, 0xd0f5e00,7, 0xd0f5e80,20, 0xd0f5f00,12, 0xd0f5f40,11, 0xd0f6004,1, 0xd0f6014,19, 0xd0f6080,5, 0xd0f6100,3, 0xd0f6144,1, 0xd0f6150,4, 0xd0f6180,1, 0xd0f6200,1, 0xd0f6400,2, 0xd0f6410,3, 0xd0f6420,3, 0xd0f6430,3, 0xd0f6440,3, 0xd0f6450,3, 0xd0f6460,3, 0xd0f6470,3, 0xd0f6480,3, 0xd0f6490,3, 0xd0f64a0,3, 0xd0f64b0,3, 0xd0f64c0,3, 0xd0f64d0,3, 0xd0f64e0,3, 0xd0f64f0,3, 0xd0f6500,3, 0xd0f6604,1, 0xd0f6614,3, 0xd0f6640,11, 0xd0f6680,2, 0xd0f6690,3, 0xd0f66a0,3, 0xd0f66c0,9, 0xd0f6700,9, 0xd0f6740,6, 0xd0f6760,16, 0xd0f7000,2, 0xd0f7010,3, 0xd0f7020,3, 0xd0f7030,3, 0xd0f7040,3, 0xd0f7050,3, 0xd0f7060,3, 0xd0f7070,3, 0xd0f7080,3, 0xd0f7090,3, 0xd0f70a0,3, 0xd0f70b0,3, 0xd0f70c0,3, 0xd0f70d0,3, 0xd0f70e0,3, 0xd0f70f0,3, 0xd0f7100,3, 0xd0f7200,10, 0xd0f7404,1, 0xd0f7414,3, 0xd0f7800,153, 0xd100000,6, 0xd100020,3, 0xd100400,6, 0xd100424,1, 0xd100434,5, 0xd100600,128, 0xd100804,1, 0xd100828,86, 0xd100984,1, 0xd100c00,1, 0xd100c80,1, 0xd100c90,2, 0xd100d00,20, 0xd100d80,1, 0xd100da0,5, 0xd100e00,27, 0xd100f00,2, 0xd100f10,4, 0xd101000,7, 0xd180000,36, 0xd180800,10, 0xd180880,6, 0xd180900,2, 0xd180910,4, 0xd180a04,5, 0xd180a20,3, 0xd180a80,1, 0xd181000,36, 0xd181800,10, 0xd181880,6, 0xd1818a0,1, 0xd181900,2, 0xd181910,4, 0xd181a00,1, 0xd182000,36, 0xd182800,10, 0xd182880,6, 0xd1828a0,1, 0xd182900,2, 0xd182910,4, 0xd182a00,1, 0xd183000,36, 0xd183800,10, 0xd183880,6, 0xd1838a0,1, 0xd183900,2, 0xd183910,4, 0xd183a00,1, 0xd184000,36, 0xd184800,10, 0xd184880,6, 0xd1848a0,1, 0xd184900,2, 0xd184910,4, 0xd184a00,1, 0xd185000,36, 0xd185800,10, 0xd185880,6, 0xd1858a0,1, 0xd185900,2, 0xd185910,4, 0xd185a00,1, 0xd186000,36, 0xd186800,10, 0xd186880,6, 0xd1868a0,1, 0xd186900,2, 0xd186910,4, 0xd186a00,1, 0xd187000,36, 0xd187800,10, 0xd187880,6, 0xd1878a0,1, 0xd187900,2, 0xd187910,4, 0xd187a00,1, 0xd188000,36, 0xd188800,10, 0xd188880,6, 0xd1888a0,1, 0xd188900,2, 0xd188910,4, 0xd188a00,1, 0xd189000,36, 0xd189800,10, 0xd189880,6, 0xd1898a0,1, 0xd189900,2, 0xd189910,4, 0xd189a00,1, 0xd18a000,36, 0xd18a800,10, 0xd18a880,6, 0xd18a8a0,1, 0xd18a900,2, 0xd18a910,4, 0xd18aa00,1, 0xd18b000,36, 0xd18b800,10, 0xd18b880,6, 0xd18b8a0,1, 0xd18b900,2, 0xd18b910,4, 0xd18ba00,1, 0xd18c000,36, 0xd18c800,10, 0xd18c880,6, 0xd18c8a0,1, 0xd18c900,2, 0xd18c910,4, 0xd18ca00,1, 0xd18d000,36, 0xd18d800,10, 0xd18d880,6, 0xd18d8a0,1, 0xd18d900,2, 0xd18d910,4, 0xd18da00,1, 0xd18e000,36, 0xd18e800,10, 0xd18e880,6, 0xd18e8a0,1, 0xd18e900,2, 0xd18e910,4, 0xd18ea00,1, 0xd18f000,36, 0xd18f800,10, 0xd18f880,6, 0xd18f8a0,1, 0xd18f900,2, 0xd18f910,4, 0xd18fa00,1, 0xd190000,36, 0xd190800,10, 0xd190880,6, 0xd1908a0,1, 0xd190900,2, 0xd190910,4, 0xd190a00,1, 0xd191000,10, 0xd191080,5, 0xd1910a0,6, 0xd191100,2, 0xd191110,4, 0xd191200,1, 0xd192000,10, 0xd192080,5, 0xd1920a0,6, 0xd192100,2, 0xd192110,4, 0xd192200,1, 0xd193000,10, 0xd193080,5, 0xd1930a0,6, 0xd193100,2, 0xd193110,4, 0xd193200,1, 0xd194000,10, 0xd194080,5, 0xd1940a0,6, 0xd194100,2, 0xd194110,4, 0xd194200,1, 0xd195000,10, 0xd195080,5, 0xd1950a0,6, 0xd195100,2, 0xd195110,4, 0xd195200,1, 0xd196000,10, 0xd196080,5, 0xd1960a0,6, 0xd196100,2, 0xd196110,4, 0xd196200,1, 0xd197000,10, 0xd197080,5, 0xd1970a0,6, 0xd197100,2, 0xd197110,4, 0xd197200,1, 0xd198000,10, 0xd198080,5, 0xd1980a0,6, 0xd198100,2, 0xd198110,4, 0xd198200,1, 0xd199000,20, 0xd199800,10, 0xd199880,6, 0xd199900,2, 0xd199910,4, 0xd199940,2, 0xd199950,4, 0xd199a00,1, 0xd19a000,20, 0xd19a800,10, 0xd19a880,6, 0xd19a900,2, 0xd19a910,4, 0xd19a940,2, 0xd19a950,4, 0xd19aa00,1, 0xd19b000,20, 0xd19b800,10, 0xd19b880,6, 0xd19b900,2, 0xd19b910,4, 0xd19b940,2, 0xd19b950,4, 0xd19ba00,1, 0xd19c000,20, 0xd19c800,10, 0xd19c880,6, 0xd19c900,2, 0xd19c910,4, 0xd19c940,2, 0xd19c950,4, 0xd19ca00,1, 0xd19d000,20, 0xd19d800,10, 0xd19d880,6, 0xd19d900,2, 0xd19d910,4, 0xd19d940,2, 0xd19d950,4, 0xd19da00,1, 0xd19e000,20, 0xd19e800,10, 0xd19e880,6, 0xd19e900,2, 0xd19e910,4, 0xd19e940,2, 0xd19e950,4, 0xd19ea00,1, 0xd19f000,20, 0xd19f800,10, 0xd19f880,6, 0xd19f900,2, 0xd19f910,4, 0xd19f940,2, 0xd19f950,4, 0xd19fa00,1, 0xd1a0000,20, 0xd1a0800,10, 0xd1a0880,6, 0xd1a0900,2, 0xd1a0910,4, 0xd1a0940,2, 0xd1a0950,4, 0xd1a0a00,1, 0xd1a1000,20, 0xd1a1800,10, 0xd1a1880,5, 0xd1a18a0,6, 0xd1a1900,2, 0xd1a1910,4, 0xd1a1a00,1, 0xd1a2000,20, 0xd1a2800,1, 0xd1a3000,20, 0xd1a3800,1, 0xd1a4000,20, 0xd1a4800,10, 0xd1a4880,5, 0xd1a48a0,6, 0xd1a4900,2, 0xd1a4910,4, 0xd1a4a00,1, 0xd1a5000,20, 0xd1a5800,1, 0xd1a6000,20, 0xd1a6800,1, 0xd1a7000,20, 0xd1a7800,10, 0xd1a7880,5, 0xd1a78a0,6, 0xd1a7900,2, 0xd1a7910,4, 0xd1a7a00,1, 0xd1a8000,20, 0xd1a8800,1, 0xd1a9000,20, 0xd1a9800,1, 0xd1aa000,20, 0xd1aa800,10, 0xd1aa880,5, 0xd1aa8a0,6, 0xd1aa900,2, 0xd1aa910,4, 0xd1aaa00,1, 0xd1ab000,20, 0xd1ab800,1, 0xd1ac000,20, 0xd1ac800,1, 0xd1ad000,20, 0xd1ad800,10, 0xd1ad880,5, 0xd1ad8a0,6, 0xd1ad900,2, 0xd1ad910,4, 0xd1ada00,1, 0xd1ae000,20, 0xd1ae800,1, 0xd1af000,20, 0xd1af800,1, 0xd1b0000,20, 0xd1b0800,10, 0xd1b0880,5, 0xd1b08a0,6, 0xd1b0900,2, 0xd1b0910,4, 0xd1b0a00,1, 0xd1b1000,20, 0xd1b1800,1, 0xd1b2000,20, 0xd1b2800,1, 0xd1b3000,20, 0xd1b3800,10, 0xd1b3880,5, 0xd1b38a0,6, 0xd1b3900,2, 0xd1b3910,4, 0xd1b3a00,1, 0xd1b4000,20, 0xd1b4800,1, 0xd1b5000,20, 0xd1b5800,1, 0xd1b6000,20, 0xd1b6800,10, 0xd1b6880,5, 0xd1b68a0,6, 0xd1b6900,2, 0xd1b6910,4, 0xd1b6a00,1, 0xd1b7000,20, 0xd1b7800,1, 0xd1b8000,20, 0xd1b8800,1, 0xd1ba000,20, 0xd1ba800,10, 0xd1ba880,6, 0xd1ba900,2, 0xd1ba910,4, 0xd1baa00,8, 0xd1baa24,1, 0xd1baa40,8, 0xd1baa64,1, 0xd1baa80,8, 0xd1baaa4,1, 0xd1baac0,8, 0xd1baae4,1, 0xd1bab00,1, 0xd1bc000,20, 0xd1bc800,10, 0xd1bc880,6, 0xd1bc900,2, 0xd1bc910,4, 0xd1bca00,8, 0xd1bca24,1, 0xd1bca40,8, 0xd1bca64,1, 0xd1bca80,8, 0xd1bcaa4,1, 0xd1bcac0,8, 0xd1bcae4,1, 0xd1bcb00,1, 0xd1be000,20, 0xd1be800,10, 0xd1be880,6, 0xd1be900,2, 0xd1be910,4, 0xd1bea00,8, 0xd1bea24,1, 0xd1bea40,8, 0xd1bea64,1, 0xd1bea80,8, 0xd1beaa4,1, 0xd1beac0,8, 0xd1beae4,1, 0xd1beb00,1, 0xd1c0000,20, 0xd1c0800,10, 0xd1c0880,6, 0xd1c0900,2, 0xd1c0910,4, 0xd1c0a00,8, 0xd1c0a24,1, 0xd1c0a40,8, 0xd1c0a64,1, 0xd1c0a80,8, 0xd1c0aa4,1, 0xd1c0ac0,8, 0xd1c0ae4,1, 0xd1c0b00,1, 0xd1c2000,20, 0xd1c2800,10, 0xd1c2880,6, 0xd1c2900,2, 0xd1c2910,4, 0xd1c2a00,8, 0xd1c2a24,1, 0xd1c2a40,8, 0xd1c2a64,1, 0xd1c2a80,8, 0xd1c2aa4,1, 0xd1c2ac0,8, 0xd1c2ae4,1, 0xd1c2b00,1, 0xd1c4000,20, 0xd1c4800,10, 0xd1c4880,6, 0xd1c4900,2, 0xd1c4910,4, 0xd1c4a00,8, 0xd1c4a24,1, 0xd1c4a40,8, 0xd1c4a64,1, 0xd1c4a80,8, 0xd1c4aa4,1, 0xd1c4ac0,8, 0xd1c4ae4,1, 0xd1c4b00,1, 0xd1c6000,20, 0xd1c6800,10, 0xd1c6880,6, 0xd1c6900,2, 0xd1c6910,4, 0xd1c6a00,8, 0xd1c6a24,1, 0xd1c6a40,8, 0xd1c6a64,1, 0xd1c6a80,8, 0xd1c6aa4,1, 0xd1c6ac0,8, 0xd1c6ae4,1, 0xd1c6b00,1, 0xd1c8000,20, 0xd1c8800,10, 0xd1c8880,6, 0xd1c8900,2, 0xd1c8910,4, 0xd1c8a00,8, 0xd1c8a24,1, 0xd1c8a40,8, 0xd1c8a64,1, 0xd1c8a80,8, 0xd1c8aa4,1, 0xd1c8ac0,8, 0xd1c8ae4,1, 0xd1c8b00,1, 0xd1f9000,10, 0xd1fa000,10, 0xd1fb000,10, 0xd200000,198, 0xd200400,2, 0xd200440,9, 0xd200480,7, 0xd200800,198, 0xd200c00,2, 0xd200c40,9, 0xd200c80,7, 0xd201000,198, 0xd201400,198, 0xd201804,6, 0xd201824,6, 0xd201880,2, 0xd201904,1, 0xd201918,28, 0xd2019a0,6, 0xd2019c0,6, 0xd201c00,2, 0xd201d00,2, 0xd201e04,1, 0xd201e74,43, 0xd202000,2, 0xd202100,2, 0xd202204,1, 0xd202274,43, 0xd202400,3, 0xd202600,27, 0xd202680,4, 0xd2026c0,25, 0xd202740,6, 0xd202760,4, 0xd202774,11, 0xd2027a4,4, 0xd202800,4, 0xd202900,34, 0xd202a00,4, 0xd202b00,34, 0xd202c00,3, 0xd202c10,12, 0xd202e00,56, 0xd202ee4,4, 0xd202f00,4, 0xd203000,1, 0xd208000,4, 0xd208100,42, 0xd208200,1, 0xd208210,3, 0xd208220,3, 0xd208230,3, 0xd208240,1, 0xd208248,3, 0xd208400,4, 0xd208500,58, 0xd208600,1, 0xd208610,3, 0xd208620,3, 0xd208630,3, 0xd208640,1, 0xd208648,3, 0xd208800,4, 0xd208900,36, 0xd208a00,1, 0xd208c00,4, 0xd208c80,27, 0xd208d00,1, 0xd208d10,3, 0xd208d20,3, 0xd208d30,3, 0xd208d40,1, 0xd208d48,3, 0xd208e00,4, 0xd208e80,31, 0xd208f00,1, 0xd208f10,3, 0xd208f20,3, 0xd208f30,3, 0xd208f40,1, 0xd208f48,3, 0xd209000,4, 0xd209040,13, 0xd209080,1, 0xd209200,15, 0xd209240,4, 0xd209260,17, 0xd2092c0,6, 0xd2092e0,2, 0xd2092ec,3, 0xd209300,8, 0xd209324,8, 0xd209400,68, 0xd209600,60, 0xd209700,4, 0xd209720,5, 0xd209740,1, 0xd209780,2, 0xd20978c,2, 0xd2097a0,1, 0xd2097c0,12, 0xd209800,7, 0xd209820,5, 0xd209900,49, 0xd209a00,1, 0xd209a08,23, 0xd209a84,1, 0xd209a8c,1, 0xd209a94,1, 0xd209a9c,2, 0xd209ac0,1, 0xd209c00,10, 0xd209c40,1, 0xd209c50,3, 0xd209c80,10, 0xd209cc0,12, 0xd209d00,3, 0xd209e00,1, 0xd20a000,4, 0xd20a100,42, 0xd20a200,1, 0xd20a210,3, 0xd20a220,3, 0xd20a230,3, 0xd20a240,1, 0xd20a248,3, 0xd20a400,4, 0xd20a500,58, 0xd20a600,1, 0xd20a610,3, 0xd20a620,3, 0xd20a630,3, 0xd20a640,1, 0xd20a648,3, 0xd20a800,4, 0xd20a900,36, 0xd20aa00,1, 0xd20ac00,4, 0xd20ac80,27, 0xd20ad00,1, 0xd20ad10,3, 0xd20ad20,3, 0xd20ad30,3, 0xd20ad40,1, 0xd20ad48,3, 0xd20ae00,4, 0xd20ae80,31, 0xd20af00,1, 0xd20af10,3, 0xd20af20,3, 0xd20af30,3, 0xd20af40,1, 0xd20af48,3, 0xd20b000,4, 0xd20b040,13, 0xd20b080,1, 0xd20b200,15, 0xd20b240,4, 0xd20b260,17, 0xd20b2c0,6, 0xd20b2e0,2, 0xd20b2ec,3, 0xd20b300,8, 0xd20b324,8, 0xd20b400,68, 0xd20b600,60, 0xd20b700,4, 0xd20b720,5, 0xd20b740,1, 0xd20b780,2, 0xd20b78c,2, 0xd20b7a0,1, 0xd20b7c0,12, 0xd20b800,7, 0xd20b820,5, 0xd20b900,49, 0xd20ba00,1, 0xd20ba08,23, 0xd20ba84,1, 0xd20ba8c,1, 0xd20ba94,1, 0xd20ba9c,2, 0xd20bac0,1, 0xd20bc00,10, 0xd20bc40,1, 0xd20bc50,3, 0xd20bc80,10, 0xd20bcc0,12, 0xd20bd00,3, 0xd20be00,1, 0xd20c000,20, 0xd20c080,3, 0xd20c090,1, 0xd20c098,4, 0xd210000,49, 0xd210100,12, 0xd210140,4, 0xd210184,1, 0xd210198,2, 0xd2101a4,1, 0xd2101b8,7, 0xd2101e0,4, 0xd210200,20, 0xd210280,3, 0xd210290,9, 0xd2102c0,6, 0xd2102e0,1, 0xd2102e8,7, 0xd210400,49, 0xd210500,12, 0xd210540,4, 0xd210584,1, 0xd210598,2, 0xd2105a4,1, 0xd2105b8,7, 0xd2105e0,4, 0xd210600,20, 0xd210680,3, 0xd210690,9, 0xd2106c0,6, 0xd2106e0,1, 0xd2106e8,7, 0xd210800,49, 0xd210900,12, 0xd210940,4, 0xd210984,1, 0xd210998,2, 0xd2109a4,1, 0xd2109b8,7, 0xd2109e0,4, 0xd210a00,20, 0xd210a80,3, 0xd210a90,9, 0xd210ac0,6, 0xd210ae0,1, 0xd210ae8,7, 0xd210c00,49, 0xd210d00,12, 0xd210d40,4, 0xd210d84,1, 0xd210d98,2, 0xd210da4,1, 0xd210db8,7, 0xd210de0,4, 0xd210e00,20, 0xd210e80,3, 0xd210e90,9, 0xd210ec0,6, 0xd210ee0,1, 0xd210ee8,7, 0xd211000,49, 0xd211100,12, 0xd211140,4, 0xd211184,1, 0xd211198,2, 0xd2111a4,1, 0xd2111b8,7, 0xd2111e0,4, 0xd211200,20, 0xd211280,3, 0xd211290,9, 0xd2112c0,6, 0xd2112e0,1, 0xd2112e8,7, 0xd211400,49, 0xd211500,12, 0xd211540,4, 0xd211584,1, 0xd211598,2, 0xd2115a4,1, 0xd2115b8,7, 0xd2115e0,4, 0xd211600,20, 0xd211680,3, 0xd211690,9, 0xd2116c0,6, 0xd2116e0,1, 0xd2116e8,7, 0xd211800,49, 0xd211900,12, 0xd211940,4, 0xd211984,1, 0xd211998,2, 0xd2119a4,1, 0xd2119b8,7, 0xd2119e0,4, 0xd211a00,20, 0xd211a80,3, 0xd211a90,9, 0xd211ac0,6, 0xd211ae0,1, 0xd211ae8,7, 0xd212000,20, 0xd212080,10, 0xd212100,20, 0xd212180,10, 0xd212200,12, 0xd212400,20, 0xd212480,10, 0xd212500,20, 0xd212580,10, 0xd212600,12, 0xd212800,3, 0xd212840,12, 0xd212880,12, 0xd2128c0,12, 0xd212900,12, 0xd212940,12, 0xd212980,12, 0xd2129c0,12, 0xd212a00,12, 0xd212c00,12, 0xd212c40,7, 0xd212c60,10, 0xd213004,1, 0xd213044,43, 0xd213100,7, 0xd213120,7, 0xd213140,2, 0xd21314c,2, 0xd213160,2, 0xd21316c,2, 0xd213180,18, 0xd213200,2, 0xd213220,10, 0xd213260,20, 0xd2132c0,9, 0xd213300,15, 0xd213340,9, 0xd213380,6, 0xd2133a0,4, 0xd213400,5, 0xd214000,53, 0xd214100,3, 0xd214110,15, 0xd214200,53, 0xd214300,3, 0xd214310,15, 0xd214400,5, 0xd214420,5, 0xd214440,18, 0xd214800,3, 0xd214810,2, 0xd214820,3, 0xd214830,2, 0xd214840,1, 0xd215000,7, 0xd215020,7, 0xd215080,19, 0xd215100,19, 0xd215180,25, 0xd215200,20, 0xd215280,20, 0xd215300,8, 0xd215340,4, 0xd215380,15, 0xd2153c0,15, 0xd215400,9, 0xd215430,5, 0xd216000,6, 0xd216020,1, 0xd216028,2, 0xd216040,11, 0xd216070,2, 0xd218000,82, 0xd218200,2, 0xd218240,9, 0xd218280,7, 0xd218400,82, 0xd218604,6, 0xd218700,15, 0xd218740,9, 0xd218780,6, 0xd2187a0,6, 0xd218800,2, 0xd218810,3, 0xd218880,24, 0xd2188e4,1, 0xd2188f0,12, 0xd220000,22, 0xd220080,22, 0xd220100,5, 0xd220120,5, 0xd220140,3, 0xd220160,16, 0xd2201c0,7, 0xd2201e0,2, 0xd220200,7, 0xd220220,2, 0xd220400,15, 0xd220440,3, 0xd220450,3, 0xd220460,24, 0xd220500,15, 0xd220540,3, 0xd220550,3, 0xd220560,24, 0xd220600,15, 0xd220640,3, 0xd220650,3, 0xd220660,24, 0xd220700,15, 0xd220740,3, 0xd220750,3, 0xd220760,24, 0xd220800,4, 0xd220820,16, 0xd220880,10, 0xd2208c0,10, 0xd220900,6, 0xd220920,6, 0xd220940,4, 0xd220980,13, 0xd2209c0,13, 0xd220a00,9, 0xd221000,86, 0xd221200,2, 0xd221240,9, 0xd221280,7, 0xd221400,86, 0xd221604,6, 0xd221800,86, 0xd221a00,2, 0xd221a40,9, 0xd221a80,7, 0xd221c00,86, 0xd221e04,6, 0xd222000,15, 0xd222040,4, 0xd222060,17, 0xd2220c0,6, 0xd2220e0,4, 0xd2220f4,11, 0xd222128,38, 0xd2221c4,2, 0xd2221d0,4, 0xd222200,1, 0xd224000,22, 0xd224080,22, 0xd224100,5, 0xd224120,5, 0xd224140,3, 0xd224160,16, 0xd2241c0,7, 0xd2241e0,2, 0xd224200,7, 0xd224220,2, 0xd224400,15, 0xd224440,3, 0xd224450,3, 0xd224460,24, 0xd224500,15, 0xd224540,3, 0xd224550,3, 0xd224560,24, 0xd224600,15, 0xd224640,3, 0xd224650,3, 0xd224660,24, 0xd224700,15, 0xd224740,3, 0xd224750,3, 0xd224760,24, 0xd224800,4, 0xd224820,16, 0xd224880,10, 0xd2248c0,10, 0xd224900,6, 0xd224920,6, 0xd224940,4, 0xd224980,13, 0xd2249c0,13, 0xd224a00,9, 0xd225000,86, 0xd225200,2, 0xd225240,9, 0xd225280,7, 0xd225400,86, 0xd225604,6, 0xd225800,86, 0xd225a00,2, 0xd225a40,9, 0xd225a80,7, 0xd225c00,86, 0xd225e04,6, 0xd226000,15, 0xd226040,4, 0xd226060,17, 0xd2260c0,6, 0xd2260e0,4, 0xd2260f4,11, 0xd226128,38, 0xd2261c4,2, 0xd2261d0,4, 0xd226200,1, 0xd228000,9, 0xd228040,9, 0xd228080,5, 0xd228100,21, 0xd228160,5, 0xd228180,45, 0xd228240,13, 0xd228280,9, 0xd228400,9, 0xd228440,9, 0xd228480,5, 0xd228500,21, 0xd228560,5, 0xd228580,45, 0xd228640,13, 0xd228680,9, 0xd228800,12, 0xd228900,15, 0xd228940,4, 0xd228960,17, 0xd2289c0,6, 0xd2289e0,4, 0xd2289f4,29, 0xd22c000,30, 0xd22c080,3, 0xd22c090,19, 0xd22c100,30, 0xd22c180,3, 0xd22c190,19, 0xd22c200,30, 0xd22c280,3, 0xd22c290,19, 0xd22c300,30, 0xd22c380,3, 0xd22c390,19, 0xd22c400,30, 0xd22c480,3, 0xd22c490,19, 0xd22c500,30, 0xd22c580,3, 0xd22c590,19, 0xd22c600,30, 0xd22c680,3, 0xd22c690,19, 0xd22c700,30, 0xd22c780,3, 0xd22c790,19, 0xd22c800,12, 0xd22c844,1, 0xd22c854,8, 0xd22c880,7, 0xd22c8a0,2, 0xd22c8ac,2, 0xd22c8c0,26, 0xd22c980,4, 0xd22c9a0,5, 0xd22c9c0,1, 0xd22d000,3, 0xd22d010,3, 0xd22d020,3, 0xd22d030,3, 0xd22d040,3, 0xd22d050,3, 0xd22d060,3, 0xd22d070,3, 0xd22d080,6, 0xd22d0a0,6, 0xd22d0c0,6, 0xd22d0e0,6, 0xd22d100,6, 0xd22d120,6, 0xd22d140,6, 0xd22d160,6, 0xd22d200,68, 0xd22d400,1, 0xd22d804,1, 0xd22d844,54, 0xd22da00,12, 0xd22da40,12, 0xd22da80,12, 0xd22dac0,12, 0xd22db00,12, 0xd22db40,12, 0xd22db80,12, 0xd22dbc0,12, 0xd22dc00,28, 0xd22dc80,10, 0xd22e000,3, 0xd22e020,6, 0xd22e040,6, 0xd22e060,15, 0xd22e100,26, 0xd22e180,15, 0xd22e200,15, 0xd22e240,4, 0xd22e260,17, 0xd22e2c0,6, 0xd22e2e0,4, 0xd22e2f4,18, 0xd22e340,4, 0xd22e360,17, 0xd22e3c0,6, 0xd22e3e0,4, 0xd22e3f4,15, 0xd230000,1, 0xd231000,1020, 0xd232000,194, 0xd233000,1020, 0xd234000,1020, 0xd235000,1020, 0xd236000,1020, 0xd237000,1020, 0xd238000,1020, 0xd239000,1020, 0xd23a000,1020, 0xd23b000,194, 0xd23c000,3, 0xd23c010,13, 0xd23c080,16, 0xd23c100,20, 0xd23c184,1, 0xd23c18c,4, 0xd23c200,3, 0xd23c210,13, 0xd23c280,16, 0xd23c300,20, 0xd23c384,1, 0xd23c38c,4, 0xd23c400,3, 0xd23c410,13, 0xd23c480,16, 0xd23c500,20, 0xd23c584,1, 0xd23c58c,4, 0xd23c600,3, 0xd23c610,13, 0xd23c680,16, 0xd23c700,20, 0xd23c784,1, 0xd23c78c,4, 0xd23c800,3, 0xd23c810,13, 0xd23c880,16, 0xd23c900,20, 0xd23c984,1, 0xd23c98c,4, 0xd23ca00,3, 0xd23ca10,13, 0xd23ca80,16, 0xd23cb00,20, 0xd23cb84,1, 0xd23cb8c,4, 0xd23cc00,3, 0xd23cc10,13, 0xd23cc80,16, 0xd23cd00,20, 0xd23cd84,1, 0xd23cd8c,4, 0xd23ce00,3, 0xd23ce10,13, 0xd23ce80,16, 0xd23cf00,20, 0xd23cf84,1, 0xd23cf8c,4, 0xd23d000,3, 0xd23d010,13, 0xd23d080,16, 0xd23d100,20, 0xd23d184,1, 0xd23d18c,4, 0xd23d200,18, 0xd23d250,2, 0xd23d260,4, 0xd23e000,1, 0xd23e014,1, 0xd23e01c,19, 0xd23e080,1, 0xd23e094,1, 0xd23e09c,19, 0xd23e100,8, 0xd23e200,13, 0xd23e240,9, 0xd23e280,12, 0xd23e2c0,2, 0xd23e2e0,12, 0xd240000,3, 0xd240080,20, 0xd240100,10, 0xd240140,1, 0xd240154,1, 0xd24015c,2, 0xd240200,15, 0xd240240,4, 0xd240260,17, 0xd2402c0,6, 0xd2402e0,2, 0xd2402ec,3, 0xd240300,8, 0xd240324,1, 0xd240400,4, 0xd240440,20, 0xd2404c0,9, 0xd240500,33, 0xd240600,11, 0xd240640,11, 0xd240680,1, 0xd242000,1, 0xd242200,4, 0xd242300,53, 0xd242400,4, 0xd242500,40, 0xd242600,15, 0xd242640,4, 0xd242660,17, 0xd2426c0,6, 0xd2426e0,2, 0xd2426ec,3, 0xd242700,8, 0xd242724,1, 0xd242800,20, 0xd242c00,53, 0xd242d00,53, 0xd242e00,1, 0xd243000,40, 0xd243100,40, 0xd243200,1, 0xd243400,1, 0xd243804,1, 0xd243844,39, 0xd243900,3, 0xd243a00,3, 0xd243a44,1, 0xd243a50,4, 0xd243a80,1, 0xd244000,2, 0xd244200,27, 0xd244280,4, 0xd2442c0,25, 0xd244340,6, 0xd244360,2, 0xd24436c,3, 0xd244380,8, 0xd2443a4,1, 0xd244400,12, 0xd244440,1, 0xd248000,3, 0xd248080,20, 0xd248100,10, 0xd248140,1, 0xd248154,1, 0xd24815c,2, 0xd248200,15, 0xd248240,4, 0xd248260,17, 0xd2482c0,6, 0xd2482e0,2, 0xd2482ec,3, 0xd248300,8, 0xd248324,1, 0xd248400,4, 0xd248440,20, 0xd2484c0,9, 0xd248500,33, 0xd248600,11, 0xd248640,11, 0xd248680,1, 0xd24a000,1, 0xd24a200,4, 0xd24a300,53, 0xd24a400,4, 0xd24a500,40, 0xd24a600,15, 0xd24a640,4, 0xd24a660,17, 0xd24a6c0,6, 0xd24a6e0,2, 0xd24a6ec,3, 0xd24a700,8, 0xd24a724,1, 0xd24a800,20, 0xd24ac00,53, 0xd24ad00,53, 0xd24ae00,1, 0xd24b000,40, 0xd24b100,40, 0xd24b200,1, 0xd24b400,1, 0xd24b804,1, 0xd24b844,39, 0xd24b900,3, 0xd24ba00,3, 0xd24ba44,1, 0xd24ba50,4, 0xd24ba80,1, 0xd24c000,2, 0xd24c200,27, 0xd24c280,4, 0xd24c2c0,25, 0xd24c340,6, 0xd24c360,2, 0xd24c36c,3, 0xd24c380,8, 0xd24c3a4,1, 0xd24c400,12, 0xd24c440,1, 0xd250000,4, 0xd250020,3, 0xd250030,2, 0xd250200,1, 0xd250224,10, 0xd250250,5, 0xd250280,1, 0xd250288,24, 0xd250300,3, 0xd250404,1, 0xd250414,5, 0xd250500,36, 0xd250600,3, 0xd250800,2, 0xd251000,1, 0xd251008,21, 0xd251080,1, 0xd251088,21, 0xd251100,1, 0xd251108,21, 0xd251180,1, 0xd251188,21, 0xd251200,1, 0xd251208,21, 0xd251280,1, 0xd251288,21, 0xd251300,1, 0xd251308,21, 0xd251380,1, 0xd251388,21, 0xd251400,21, 0xd251800,142, 0xd251c00,1, 0xd252000,4, 0xd252100,39, 0xd252200,3, 0xd252214,3, 0xd254004,1, 0xd254020,16, 0xd254080,2, 0xd254094,1, 0xd25409c,2, 0xd2540c0,6, 0xd254100,8, 0xd258004,17, 0xd258054,1, 0xd25805c,2, 0xd258080,1, 0xd2580a0,2, 0xd2580b4,4, 0xd258100,2, 0xd258200,8, 0xd258400,1, 0xd258600,27, 0xd258680,4, 0xd2586c0,25, 0xd258740,6, 0xd258760,2, 0xd25876c,3, 0xd258780,8, 0xd2587a4,3, 0xd258800,44, 0xd258900,1, 0xd260000,1, 0xd260200,27, 0xd260280,4, 0xd2602c0,25, 0xd260340,6, 0xd260360,2, 0xd26036c,3, 0xd260380,8, 0xd2603a4,1, 0xd260400,20, 0xd260480,3, 0xd260490,9, 0xd280000,198, 0xd280400,2, 0xd280440,9, 0xd280480,7, 0xd280800,198, 0xd280c00,2, 0xd280c40,9, 0xd280c80,7, 0xd281000,198, 0xd281400,198, 0xd281804,6, 0xd281824,6, 0xd281880,2, 0xd281904,1, 0xd281918,28, 0xd2819a0,6, 0xd2819c0,6, 0xd281c00,2, 0xd281d00,2, 0xd281e04,1, 0xd281e74,43, 0xd282000,2, 0xd282100,2, 0xd282204,1, 0xd282274,43, 0xd282400,3, 0xd282600,27, 0xd282680,4, 0xd2826c0,25, 0xd282740,6, 0xd282760,4, 0xd282774,11, 0xd2827a4,4, 0xd282800,4, 0xd282900,34, 0xd282a00,4, 0xd282b00,34, 0xd282c00,3, 0xd282c10,12, 0xd282e00,56, 0xd282ee4,4, 0xd282f00,4, 0xd283000,1, 0xd288000,4, 0xd288100,42, 0xd288200,1, 0xd288210,3, 0xd288220,3, 0xd288230,3, 0xd288240,1, 0xd288248,3, 0xd288400,4, 0xd288500,58, 0xd288600,1, 0xd288610,3, 0xd288620,3, 0xd288630,3, 0xd288640,1, 0xd288648,3, 0xd288800,4, 0xd288900,36, 0xd288a00,1, 0xd288c00,4, 0xd288c80,27, 0xd288d00,1, 0xd288d10,3, 0xd288d20,3, 0xd288d30,3, 0xd288d40,1, 0xd288d48,3, 0xd288e00,4, 0xd288e80,31, 0xd288f00,1, 0xd288f10,3, 0xd288f20,3, 0xd288f30,3, 0xd288f40,1, 0xd288f48,3, 0xd289000,4, 0xd289040,13, 0xd289080,1, 0xd289200,15, 0xd289240,4, 0xd289260,17, 0xd2892c0,6, 0xd2892e0,2, 0xd2892ec,3, 0xd289300,8, 0xd289324,8, 0xd289400,68, 0xd289600,60, 0xd289700,4, 0xd289720,5, 0xd289740,1, 0xd289780,2, 0xd28978c,2, 0xd2897a0,1, 0xd2897c0,12, 0xd289800,7, 0xd289820,5, 0xd289900,49, 0xd289a00,1, 0xd289a08,23, 0xd289a84,1, 0xd289a8c,1, 0xd289a94,1, 0xd289a9c,2, 0xd289ac0,1, 0xd289c00,10, 0xd289c40,1, 0xd289c50,3, 0xd289c80,10, 0xd289cc0,12, 0xd289d00,3, 0xd289e00,1, 0xd28a000,4, 0xd28a100,42, 0xd28a200,1, 0xd28a210,3, 0xd28a220,3, 0xd28a230,3, 0xd28a240,1, 0xd28a248,3, 0xd28a400,4, 0xd28a500,58, 0xd28a600,1, 0xd28a610,3, 0xd28a620,3, 0xd28a630,3, 0xd28a640,1, 0xd28a648,3, 0xd28a800,4, 0xd28a900,36, 0xd28aa00,1, 0xd28ac00,4, 0xd28ac80,27, 0xd28ad00,1, 0xd28ad10,3, 0xd28ad20,3, 0xd28ad30,3, 0xd28ad40,1, 0xd28ad48,3, 0xd28ae00,4, 0xd28ae80,31, 0xd28af00,1, 0xd28af10,3, 0xd28af20,3, 0xd28af30,3, 0xd28af40,1, 0xd28af48,3, 0xd28b000,4, 0xd28b040,13, 0xd28b080,1, 0xd28b200,15, 0xd28b240,4, 0xd28b260,17, 0xd28b2c0,6, 0xd28b2e0,2, 0xd28b2ec,3, 0xd28b300,8, 0xd28b324,8, 0xd28b400,68, 0xd28b600,60, 0xd28b700,4, 0xd28b720,5, 0xd28b740,1, 0xd28b780,2, 0xd28b78c,2, 0xd28b7a0,1, 0xd28b7c0,12, 0xd28b800,7, 0xd28b820,5, 0xd28b900,49, 0xd28ba00,1, 0xd28ba08,23, 0xd28ba84,1, 0xd28ba8c,1, 0xd28ba94,1, 0xd28ba9c,2, 0xd28bac0,1, 0xd28bc00,10, 0xd28bc40,1, 0xd28bc50,3, 0xd28bc80,10, 0xd28bcc0,12, 0xd28bd00,3, 0xd28be00,1, 0xd28c000,20, 0xd28c080,3, 0xd28c090,1, 0xd28c098,4, 0xd290000,49, 0xd290100,12, 0xd290140,4, 0xd290184,1, 0xd290198,2, 0xd2901a4,1, 0xd2901b8,7, 0xd2901e0,4, 0xd290200,20, 0xd290280,3, 0xd290290,9, 0xd2902c0,6, 0xd2902e0,1, 0xd2902e8,7, 0xd290400,49, 0xd290500,12, 0xd290540,4, 0xd290584,1, 0xd290598,2, 0xd2905a4,1, 0xd2905b8,7, 0xd2905e0,4, 0xd290600,20, 0xd290680,3, 0xd290690,9, 0xd2906c0,6, 0xd2906e0,1, 0xd2906e8,7, 0xd290800,49, 0xd290900,12, 0xd290940,4, 0xd290984,1, 0xd290998,2, 0xd2909a4,1, 0xd2909b8,7, 0xd2909e0,4, 0xd290a00,20, 0xd290a80,3, 0xd290a90,9, 0xd290ac0,6, 0xd290ae0,1, 0xd290ae8,7, 0xd290c00,49, 0xd290d00,12, 0xd290d40,4, 0xd290d84,1, 0xd290d98,2, 0xd290da4,1, 0xd290db8,7, 0xd290de0,4, 0xd290e00,20, 0xd290e80,3, 0xd290e90,9, 0xd290ec0,6, 0xd290ee0,1, 0xd290ee8,7, 0xd291000,49, 0xd291100,12, 0xd291140,4, 0xd291184,1, 0xd291198,2, 0xd2911a4,1, 0xd2911b8,7, 0xd2911e0,4, 0xd291200,20, 0xd291280,3, 0xd291290,9, 0xd2912c0,6, 0xd2912e0,1, 0xd2912e8,7, 0xd291400,49, 0xd291500,12, 0xd291540,4, 0xd291584,1, 0xd291598,2, 0xd2915a4,1, 0xd2915b8,7, 0xd2915e0,4, 0xd291600,20, 0xd291680,3, 0xd291690,9, 0xd2916c0,6, 0xd2916e0,1, 0xd2916e8,7, 0xd291800,49, 0xd291900,12, 0xd291940,4, 0xd291984,1, 0xd291998,2, 0xd2919a4,1, 0xd2919b8,7, 0xd2919e0,4, 0xd291a00,20, 0xd291a80,3, 0xd291a90,9, 0xd291ac0,6, 0xd291ae0,1, 0xd291ae8,7, 0xd292000,20, 0xd292080,10, 0xd292100,20, 0xd292180,10, 0xd292200,12, 0xd292400,20, 0xd292480,10, 0xd292500,20, 0xd292580,10, 0xd292600,12, 0xd292800,3, 0xd292840,12, 0xd292880,12, 0xd2928c0,12, 0xd292900,12, 0xd292940,12, 0xd292980,12, 0xd2929c0,12, 0xd292a00,12, 0xd292c00,12, 0xd292c40,7, 0xd292c60,10, 0xd293004,1, 0xd293044,43, 0xd293100,7, 0xd293120,7, 0xd293140,2, 0xd29314c,2, 0xd293160,2, 0xd29316c,2, 0xd293180,18, 0xd293200,2, 0xd293220,10, 0xd293260,20, 0xd2932c0,9, 0xd293300,15, 0xd293340,9, 0xd293380,6, 0xd2933a0,4, 0xd293400,5, 0xd294000,53, 0xd294100,3, 0xd294110,15, 0xd294200,53, 0xd294300,3, 0xd294310,15, 0xd294400,5, 0xd294420,5, 0xd294440,18, 0xd294800,3, 0xd294810,2, 0xd294820,3, 0xd294830,2, 0xd294840,1, 0xd295000,7, 0xd295020,7, 0xd295080,19, 0xd295100,19, 0xd295180,25, 0xd295200,20, 0xd295280,20, 0xd295300,8, 0xd295340,4, 0xd295380,15, 0xd2953c0,15, 0xd295400,9, 0xd295430,5, 0xd296000,6, 0xd296020,1, 0xd296028,2, 0xd296040,11, 0xd296070,2, 0xd298000,82, 0xd298200,2, 0xd298240,9, 0xd298280,7, 0xd298400,82, 0xd298604,6, 0xd298700,15, 0xd298740,9, 0xd298780,6, 0xd2987a0,6, 0xd298800,2, 0xd298810,3, 0xd298880,24, 0xd2988e4,1, 0xd2988f0,12, 0xd2a0000,22, 0xd2a0080,22, 0xd2a0100,5, 0xd2a0120,5, 0xd2a0140,3, 0xd2a0160,16, 0xd2a01c0,7, 0xd2a01e0,2, 0xd2a0200,7, 0xd2a0220,2, 0xd2a0400,15, 0xd2a0440,3, 0xd2a0450,3, 0xd2a0460,24, 0xd2a0500,15, 0xd2a0540,3, 0xd2a0550,3, 0xd2a0560,24, 0xd2a0600,15, 0xd2a0640,3, 0xd2a0650,3, 0xd2a0660,24, 0xd2a0700,15, 0xd2a0740,3, 0xd2a0750,3, 0xd2a0760,24, 0xd2a0800,4, 0xd2a0820,16, 0xd2a0880,10, 0xd2a08c0,10, 0xd2a0900,6, 0xd2a0920,6, 0xd2a0940,4, 0xd2a0980,13, 0xd2a09c0,13, 0xd2a0a00,9, 0xd2a1000,86, 0xd2a1200,2, 0xd2a1240,9, 0xd2a1280,7, 0xd2a1400,86, 0xd2a1604,6, 0xd2a1800,86, 0xd2a1a00,2, 0xd2a1a40,9, 0xd2a1a80,7, 0xd2a1c00,86, 0xd2a1e04,6, 0xd2a2000,15, 0xd2a2040,4, 0xd2a2060,17, 0xd2a20c0,6, 0xd2a20e0,4, 0xd2a20f4,11, 0xd2a2128,38, 0xd2a21c4,2, 0xd2a21d0,4, 0xd2a2200,1, 0xd2a4000,22, 0xd2a4080,22, 0xd2a4100,5, 0xd2a4120,5, 0xd2a4140,3, 0xd2a4160,16, 0xd2a41c0,7, 0xd2a41e0,2, 0xd2a4200,7, 0xd2a4220,2, 0xd2a4400,15, 0xd2a4440,3, 0xd2a4450,3, 0xd2a4460,24, 0xd2a4500,15, 0xd2a4540,3, 0xd2a4550,3, 0xd2a4560,24, 0xd2a4600,15, 0xd2a4640,3, 0xd2a4650,3, 0xd2a4660,24, 0xd2a4700,15, 0xd2a4740,3, 0xd2a4750,3, 0xd2a4760,24, 0xd2a4800,4, 0xd2a4820,16, 0xd2a4880,10, 0xd2a48c0,10, 0xd2a4900,6, 0xd2a4920,6, 0xd2a4940,4, 0xd2a4980,13, 0xd2a49c0,13, 0xd2a4a00,9, 0xd2a5000,86, 0xd2a5200,2, 0xd2a5240,9, 0xd2a5280,7, 0xd2a5400,86, 0xd2a5604,6, 0xd2a5800,86, 0xd2a5a00,2, 0xd2a5a40,9, 0xd2a5a80,7, 0xd2a5c00,86, 0xd2a5e04,6, 0xd2a6000,15, 0xd2a6040,4, 0xd2a6060,17, 0xd2a60c0,6, 0xd2a60e0,4, 0xd2a60f4,11, 0xd2a6128,38, 0xd2a61c4,2, 0xd2a61d0,4, 0xd2a6200,1, 0xd2a8000,9, 0xd2a8040,9, 0xd2a8080,5, 0xd2a8100,21, 0xd2a8160,5, 0xd2a8180,45, 0xd2a8240,13, 0xd2a8280,9, 0xd2a8400,9, 0xd2a8440,9, 0xd2a8480,5, 0xd2a8500,21, 0xd2a8560,5, 0xd2a8580,45, 0xd2a8640,13, 0xd2a8680,9, 0xd2a8800,12, 0xd2a8900,15, 0xd2a8940,4, 0xd2a8960,17, 0xd2a89c0,6, 0xd2a89e0,4, 0xd2a89f4,29, 0xd2ac000,30, 0xd2ac080,3, 0xd2ac090,19, 0xd2ac100,30, 0xd2ac180,3, 0xd2ac190,19, 0xd2ac200,30, 0xd2ac280,3, 0xd2ac290,19, 0xd2ac300,30, 0xd2ac380,3, 0xd2ac390,19, 0xd2ac400,30, 0xd2ac480,3, 0xd2ac490,19, 0xd2ac500,30, 0xd2ac580,3, 0xd2ac590,19, 0xd2ac600,30, 0xd2ac680,3, 0xd2ac690,19, 0xd2ac700,30, 0xd2ac780,3, 0xd2ac790,19, 0xd2ac800,12, 0xd2ac844,1, 0xd2ac854,8, 0xd2ac880,7, 0xd2ac8a0,2, 0xd2ac8ac,2, 0xd2ac8c0,26, 0xd2ac980,4, 0xd2ac9a0,5, 0xd2ac9c0,1, 0xd2ad000,3, 0xd2ad010,3, 0xd2ad020,3, 0xd2ad030,3, 0xd2ad040,3, 0xd2ad050,3, 0xd2ad060,3, 0xd2ad070,3, 0xd2ad080,6, 0xd2ad0a0,6, 0xd2ad0c0,6, 0xd2ad0e0,6, 0xd2ad100,6, 0xd2ad120,6, 0xd2ad140,6, 0xd2ad160,6, 0xd2ad200,68, 0xd2ad400,1, 0xd2ad804,1, 0xd2ad844,54, 0xd2ada00,12, 0xd2ada40,12, 0xd2ada80,12, 0xd2adac0,12, 0xd2adb00,12, 0xd2adb40,12, 0xd2adb80,12, 0xd2adbc0,12, 0xd2adc00,28, 0xd2adc80,10, 0xd2ae000,3, 0xd2ae020,6, 0xd2ae040,6, 0xd2ae060,15, 0xd2ae100,26, 0xd2ae180,15, 0xd2ae200,15, 0xd2ae240,4, 0xd2ae260,17, 0xd2ae2c0,6, 0xd2ae2e0,4, 0xd2ae2f4,18, 0xd2ae340,4, 0xd2ae360,17, 0xd2ae3c0,6, 0xd2ae3e0,4, 0xd2ae3f4,15, 0xd2b0000,1, 0xd2b1000,1020, 0xd2b2000,194, 0xd2b3000,1020, 0xd2b4000,1020, 0xd2b5000,1020, 0xd2b6000,1020, 0xd2b7000,1020, 0xd2b8000,1020, 0xd2b9000,1020, 0xd2ba000,1020, 0xd2bb000,194, 0xd2bc000,3, 0xd2bc010,13, 0xd2bc080,16, 0xd2bc100,20, 0xd2bc184,1, 0xd2bc18c,4, 0xd2bc200,3, 0xd2bc210,13, 0xd2bc280,16, 0xd2bc300,20, 0xd2bc384,1, 0xd2bc38c,4, 0xd2bc400,3, 0xd2bc410,13, 0xd2bc480,16, 0xd2bc500,20, 0xd2bc584,1, 0xd2bc58c,4, 0xd2bc600,3, 0xd2bc610,13, 0xd2bc680,16, 0xd2bc700,20, 0xd2bc784,1, 0xd2bc78c,4, 0xd2bc800,3, 0xd2bc810,13, 0xd2bc880,16, 0xd2bc900,20, 0xd2bc984,1, 0xd2bc98c,4, 0xd2bca00,3, 0xd2bca10,13, 0xd2bca80,16, 0xd2bcb00,20, 0xd2bcb84,1, 0xd2bcb8c,4, 0xd2bcc00,3, 0xd2bcc10,13, 0xd2bcc80,16, 0xd2bcd00,20, 0xd2bcd84,1, 0xd2bcd8c,4, 0xd2bce00,3, 0xd2bce10,13, 0xd2bce80,16, 0xd2bcf00,20, 0xd2bcf84,1, 0xd2bcf8c,4, 0xd2bd000,3, 0xd2bd010,13, 0xd2bd080,16, 0xd2bd100,20, 0xd2bd184,1, 0xd2bd18c,4, 0xd2bd200,18, 0xd2bd250,2, 0xd2bd260,4, 0xd2be000,1, 0xd2be014,1, 0xd2be01c,19, 0xd2be080,1, 0xd2be094,1, 0xd2be09c,19, 0xd2be100,8, 0xd2be200,13, 0xd2be240,9, 0xd2be280,12, 0xd2be2c0,2, 0xd2be2e0,12, 0xd2c0000,3, 0xd2c0080,20, 0xd2c0100,10, 0xd2c0140,1, 0xd2c0154,1, 0xd2c015c,2, 0xd2c0200,15, 0xd2c0240,4, 0xd2c0260,17, 0xd2c02c0,6, 0xd2c02e0,2, 0xd2c02ec,3, 0xd2c0300,8, 0xd2c0324,1, 0xd2c0400,4, 0xd2c0440,20, 0xd2c04c0,9, 0xd2c0500,33, 0xd2c0600,11, 0xd2c0640,11, 0xd2c0680,1, 0xd2c2000,1, 0xd2c2200,4, 0xd2c2300,53, 0xd2c2400,4, 0xd2c2500,40, 0xd2c2600,15, 0xd2c2640,4, 0xd2c2660,17, 0xd2c26c0,6, 0xd2c26e0,2, 0xd2c26ec,3, 0xd2c2700,8, 0xd2c2724,1, 0xd2c2800,20, 0xd2c2c00,53, 0xd2c2d00,53, 0xd2c2e00,1, 0xd2c3000,40, 0xd2c3100,40, 0xd2c3200,1, 0xd2c3400,1, 0xd2c3804,1, 0xd2c3844,39, 0xd2c3900,3, 0xd2c3a00,3, 0xd2c3a44,1, 0xd2c3a50,4, 0xd2c3a80,1, 0xd2c4000,2, 0xd2c4200,27, 0xd2c4280,4, 0xd2c42c0,25, 0xd2c4340,6, 0xd2c4360,2, 0xd2c436c,3, 0xd2c4380,8, 0xd2c43a4,1, 0xd2c4400,12, 0xd2c4440,1, 0xd2c8000,3, 0xd2c8080,20, 0xd2c8100,10, 0xd2c8140,1, 0xd2c8154,1, 0xd2c815c,2, 0xd2c8200,15, 0xd2c8240,4, 0xd2c8260,17, 0xd2c82c0,6, 0xd2c82e0,2, 0xd2c82ec,3, 0xd2c8300,8, 0xd2c8324,1, 0xd2c8400,4, 0xd2c8440,20, 0xd2c84c0,9, 0xd2c8500,33, 0xd2c8600,11, 0xd2c8640,11, 0xd2c8680,1, 0xd2ca000,1, 0xd2ca200,4, 0xd2ca300,53, 0xd2ca400,4, 0xd2ca500,40, 0xd2ca600,15, 0xd2ca640,4, 0xd2ca660,17, 0xd2ca6c0,6, 0xd2ca6e0,2, 0xd2ca6ec,3, 0xd2ca700,8, 0xd2ca724,1, 0xd2ca800,20, 0xd2cac00,53, 0xd2cad00,53, 0xd2cae00,1, 0xd2cb000,40, 0xd2cb100,40, 0xd2cb200,1, 0xd2cb400,1, 0xd2cb804,1, 0xd2cb844,39, 0xd2cb900,3, 0xd2cba00,3, 0xd2cba44,1, 0xd2cba50,4, 0xd2cba80,1, 0xd2cc000,2, 0xd2cc200,27, 0xd2cc280,4, 0xd2cc2c0,25, 0xd2cc340,6, 0xd2cc360,2, 0xd2cc36c,3, 0xd2cc380,8, 0xd2cc3a4,1, 0xd2cc400,12, 0xd2cc440,1, 0xd2d0000,4, 0xd2d0020,3, 0xd2d0030,2, 0xd2d0200,1, 0xd2d0224,10, 0xd2d0250,5, 0xd2d0280,1, 0xd2d0288,24, 0xd2d0300,3, 0xd2d0404,1, 0xd2d0414,5, 0xd2d0500,36, 0xd2d0600,3, 0xd2d0800,2, 0xd2d1000,1, 0xd2d1008,21, 0xd2d1080,1, 0xd2d1088,21, 0xd2d1100,1, 0xd2d1108,21, 0xd2d1180,1, 0xd2d1188,21, 0xd2d1200,1, 0xd2d1208,21, 0xd2d1280,1, 0xd2d1288,21, 0xd2d1300,1, 0xd2d1308,21, 0xd2d1380,1, 0xd2d1388,21, 0xd2d1400,21, 0xd2d1800,142, 0xd2d1c00,1, 0xd2d2000,4, 0xd2d2100,39, 0xd2d2200,3, 0xd2d2214,3, 0xd2d4004,1, 0xd2d4020,16, 0xd2d4080,2, 0xd2d4094,1, 0xd2d409c,2, 0xd2d40c0,6, 0xd2d4100,8, 0xd2d8004,17, 0xd2d8054,1, 0xd2d805c,2, 0xd2d8080,1, 0xd2d80a0,2, 0xd2d80b4,4, 0xd2d8100,2, 0xd2d8200,8, 0xd2d8400,1, 0xd2d8600,27, 0xd2d8680,4, 0xd2d86c0,25, 0xd2d8740,6, 0xd2d8760,2, 0xd2d876c,3, 0xd2d8780,8, 0xd2d87a4,3, 0xd2d8800,44, 0xd2d8900,1, 0xd2e0000,1, 0xd2e0200,27, 0xd2e0280,4, 0xd2e02c0,25, 0xd2e0340,6, 0xd2e0360,2, 0xd2e036c,3, 0xd2e0380,8, 0xd2e03a4,1, 0xd2e0400,20, 0xd2e0480,3, 0xd2e0490,9, 0xd300000,198, 0xd300400,2, 0xd300440,9, 0xd300480,7, 0xd300800,198, 0xd300c00,2, 0xd300c40,9, 0xd300c80,7, 0xd301000,198, 0xd301400,198, 0xd301804,6, 0xd301824,6, 0xd301880,2, 0xd301904,1, 0xd301918,28, 0xd3019a0,6, 0xd3019c0,6, 0xd301c00,2, 0xd301d00,2, 0xd301e04,1, 0xd301e74,43, 0xd302000,2, 0xd302100,2, 0xd302204,1, 0xd302274,43, 0xd302400,3, 0xd302600,27, 0xd302680,4, 0xd3026c0,25, 0xd302740,6, 0xd302760,4, 0xd302774,11, 0xd3027a4,4, 0xd302800,4, 0xd302900,34, 0xd302a00,4, 0xd302b00,34, 0xd302c00,3, 0xd302c10,12, 0xd302e00,56, 0xd302ee4,4, 0xd302f00,4, 0xd303000,1, 0xd308000,4, 0xd308100,42, 0xd308200,1, 0xd308210,3, 0xd308220,3, 0xd308230,3, 0xd308240,1, 0xd308248,3, 0xd308400,4, 0xd308500,58, 0xd308600,1, 0xd308610,3, 0xd308620,3, 0xd308630,3, 0xd308640,1, 0xd308648,3, 0xd308800,4, 0xd308900,36, 0xd308a00,1, 0xd308c00,4, 0xd308c80,27, 0xd308d00,1, 0xd308d10,3, 0xd308d20,3, 0xd308d30,3, 0xd308d40,1, 0xd308d48,3, 0xd308e00,4, 0xd308e80,31, 0xd308f00,1, 0xd308f10,3, 0xd308f20,3, 0xd308f30,3, 0xd308f40,1, 0xd308f48,3, 0xd309000,4, 0xd309040,13, 0xd309080,1, 0xd309200,15, 0xd309240,4, 0xd309260,17, 0xd3092c0,6, 0xd3092e0,2, 0xd3092ec,3, 0xd309300,8, 0xd309324,8, 0xd309400,68, 0xd309600,60, 0xd309700,4, 0xd309720,5, 0xd309740,1, 0xd309780,2, 0xd30978c,2, 0xd3097a0,1, 0xd3097c0,12, 0xd309800,7, 0xd309820,5, 0xd309900,49, 0xd309a00,1, 0xd309a08,23, 0xd309a84,1, 0xd309a8c,1, 0xd309a94,1, 0xd309a9c,2, 0xd309ac0,1, 0xd309c00,10, 0xd309c40,1, 0xd309c50,3, 0xd309c80,10, 0xd309cc0,12, 0xd309d00,3, 0xd309e00,1, 0xd30a000,4, 0xd30a100,42, 0xd30a200,1, 0xd30a210,3, 0xd30a220,3, 0xd30a230,3, 0xd30a240,1, 0xd30a248,3, 0xd30a400,4, 0xd30a500,58, 0xd30a600,1, 0xd30a610,3, 0xd30a620,3, 0xd30a630,3, 0xd30a640,1, 0xd30a648,3, 0xd30a800,4, 0xd30a900,36, 0xd30aa00,1, 0xd30ac00,4, 0xd30ac80,27, 0xd30ad00,1, 0xd30ad10,3, 0xd30ad20,3, 0xd30ad30,3, 0xd30ad40,1, 0xd30ad48,3, 0xd30ae00,4, 0xd30ae80,31, 0xd30af00,1, 0xd30af10,3, 0xd30af20,3, 0xd30af30,3, 0xd30af40,1, 0xd30af48,3, 0xd30b000,4, 0xd30b040,13, 0xd30b080,1, 0xd30b200,15, 0xd30b240,4, 0xd30b260,17, 0xd30b2c0,6, 0xd30b2e0,2, 0xd30b2ec,3, 0xd30b300,8, 0xd30b324,8, 0xd30b400,68, 0xd30b600,60, 0xd30b700,4, 0xd30b720,5, 0xd30b740,1, 0xd30b780,2, 0xd30b78c,2, 0xd30b7a0,1, 0xd30b7c0,12, 0xd30b800,7, 0xd30b820,5, 0xd30b900,49, 0xd30ba00,1, 0xd30ba08,23, 0xd30ba84,1, 0xd30ba8c,1, 0xd30ba94,1, 0xd30ba9c,2, 0xd30bac0,1, 0xd30bc00,10, 0xd30bc40,1, 0xd30bc50,3, 0xd30bc80,10, 0xd30bcc0,12, 0xd30bd00,3, 0xd30be00,1, 0xd30c000,20, 0xd30c080,3, 0xd30c090,1, 0xd30c098,4, 0xd310000,49, 0xd310100,12, 0xd310140,4, 0xd310184,1, 0xd310198,2, 0xd3101a4,1, 0xd3101b8,7, 0xd3101e0,4, 0xd310200,20, 0xd310280,3, 0xd310290,9, 0xd3102c0,6, 0xd3102e0,1, 0xd3102e8,7, 0xd310400,49, 0xd310500,12, 0xd310540,4, 0xd310584,1, 0xd310598,2, 0xd3105a4,1, 0xd3105b8,7, 0xd3105e0,4, 0xd310600,20, 0xd310680,3, 0xd310690,9, 0xd3106c0,6, 0xd3106e0,1, 0xd3106e8,7, 0xd310800,49, 0xd310900,12, 0xd310940,4, 0xd310984,1, 0xd310998,2, 0xd3109a4,1, 0xd3109b8,7, 0xd3109e0,4, 0xd310a00,20, 0xd310a80,3, 0xd310a90,9, 0xd310ac0,6, 0xd310ae0,1, 0xd310ae8,7, 0xd310c00,49, 0xd310d00,12, 0xd310d40,4, 0xd310d84,1, 0xd310d98,2, 0xd310da4,1, 0xd310db8,7, 0xd310de0,4, 0xd310e00,20, 0xd310e80,3, 0xd310e90,9, 0xd310ec0,6, 0xd310ee0,1, 0xd310ee8,7, 0xd311000,49, 0xd311100,12, 0xd311140,4, 0xd311184,1, 0xd311198,2, 0xd3111a4,1, 0xd3111b8,7, 0xd3111e0,4, 0xd311200,20, 0xd311280,3, 0xd311290,9, 0xd3112c0,6, 0xd3112e0,1, 0xd3112e8,7, 0xd311400,49, 0xd311500,12, 0xd311540,4, 0xd311584,1, 0xd311598,2, 0xd3115a4,1, 0xd3115b8,7, 0xd3115e0,4, 0xd311600,20, 0xd311680,3, 0xd311690,9, 0xd3116c0,6, 0xd3116e0,1, 0xd3116e8,7, 0xd311800,49, 0xd311900,12, 0xd311940,4, 0xd311984,1, 0xd311998,2, 0xd3119a4,1, 0xd3119b8,7, 0xd3119e0,4, 0xd311a00,20, 0xd311a80,3, 0xd311a90,9, 0xd311ac0,6, 0xd311ae0,1, 0xd311ae8,7, 0xd312000,20, 0xd312080,10, 0xd312100,20, 0xd312180,10, 0xd312200,12, 0xd312400,20, 0xd312480,10, 0xd312500,20, 0xd312580,10, 0xd312600,12, 0xd312800,3, 0xd312840,12, 0xd312880,12, 0xd3128c0,12, 0xd312900,12, 0xd312940,12, 0xd312980,12, 0xd3129c0,12, 0xd312a00,12, 0xd312c00,12, 0xd312c40,7, 0xd312c60,10, 0xd313004,1, 0xd313044,43, 0xd313100,7, 0xd313120,7, 0xd313140,2, 0xd31314c,2, 0xd313160,2, 0xd31316c,2, 0xd313180,18, 0xd313200,2, 0xd313220,10, 0xd313260,20, 0xd3132c0,9, 0xd313300,15, 0xd313340,9, 0xd313380,6, 0xd3133a0,4, 0xd313400,5, 0xd314000,53, 0xd314100,3, 0xd314110,15, 0xd314200,53, 0xd314300,3, 0xd314310,15, 0xd314400,5, 0xd314420,5, 0xd314440,18, 0xd314800,3, 0xd314810,2, 0xd314820,3, 0xd314830,2, 0xd314840,1, 0xd315000,7, 0xd315020,7, 0xd315080,19, 0xd315100,19, 0xd315180,25, 0xd315200,20, 0xd315280,20, 0xd315300,8, 0xd315340,4, 0xd315380,15, 0xd3153c0,15, 0xd315400,9, 0xd315430,5, 0xd316000,6, 0xd316020,1, 0xd316028,2, 0xd316040,11, 0xd316070,2, 0xd318000,82, 0xd318200,2, 0xd318240,9, 0xd318280,7, 0xd318400,82, 0xd318604,6, 0xd318700,15, 0xd318740,9, 0xd318780,6, 0xd3187a0,6, 0xd318800,2, 0xd318810,3, 0xd318880,24, 0xd3188e4,1, 0xd3188f0,12, 0xd320000,22, 0xd320080,22, 0xd320100,5, 0xd320120,5, 0xd320140,3, 0xd320160,16, 0xd3201c0,7, 0xd3201e0,2, 0xd320200,7, 0xd320220,2, 0xd320400,15, 0xd320440,3, 0xd320450,3, 0xd320460,24, 0xd320500,15, 0xd320540,3, 0xd320550,3, 0xd320560,24, 0xd320600,15, 0xd320640,3, 0xd320650,3, 0xd320660,24, 0xd320700,15, 0xd320740,3, 0xd320750,3, 0xd320760,24, 0xd320800,4, 0xd320820,16, 0xd320880,10, 0xd3208c0,10, 0xd320900,6, 0xd320920,6, 0xd320940,4, 0xd320980,13, 0xd3209c0,13, 0xd320a00,9, 0xd321000,86, 0xd321200,2, 0xd321240,9, 0xd321280,7, 0xd321400,86, 0xd321604,6, 0xd321800,86, 0xd321a00,2, 0xd321a40,9, 0xd321a80,7, 0xd321c00,86, 0xd321e04,6, 0xd322000,15, 0xd322040,4, 0xd322060,17, 0xd3220c0,6, 0xd3220e0,4, 0xd3220f4,11, 0xd322128,38, 0xd3221c4,2, 0xd3221d0,4, 0xd322200,1, 0xd324000,22, 0xd324080,22, 0xd324100,5, 0xd324120,5, 0xd324140,3, 0xd324160,16, 0xd3241c0,7, 0xd3241e0,2, 0xd324200,7, 0xd324220,2, 0xd324400,15, 0xd324440,3, 0xd324450,3, 0xd324460,24, 0xd324500,15, 0xd324540,3, 0xd324550,3, 0xd324560,24, 0xd324600,15, 0xd324640,3, 0xd324650,3, 0xd324660,24, 0xd324700,15, 0xd324740,3, 0xd324750,3, 0xd324760,24, 0xd324800,4, 0xd324820,16, 0xd324880,10, 0xd3248c0,10, 0xd324900,6, 0xd324920,6, 0xd324940,4, 0xd324980,13, 0xd3249c0,13, 0xd324a00,9, 0xd325000,86, 0xd325200,2, 0xd325240,9, 0xd325280,7, 0xd325400,86, 0xd325604,6, 0xd325800,86, 0xd325a00,2, 0xd325a40,9, 0xd325a80,7, 0xd325c00,86, 0xd325e04,6, 0xd326000,15, 0xd326040,4, 0xd326060,17, 0xd3260c0,6, 0xd3260e0,4, 0xd3260f4,11, 0xd326128,38, 0xd3261c4,2, 0xd3261d0,4, 0xd326200,1, 0xd328000,9, 0xd328040,9, 0xd328080,5, 0xd328100,21, 0xd328160,5, 0xd328180,45, 0xd328240,13, 0xd328280,9, 0xd328400,9, 0xd328440,9, 0xd328480,5, 0xd328500,21, 0xd328560,5, 0xd328580,45, 0xd328640,13, 0xd328680,9, 0xd328800,12, 0xd328900,15, 0xd328940,4, 0xd328960,17, 0xd3289c0,6, 0xd3289e0,4, 0xd3289f4,29, 0xd32c000,30, 0xd32c080,3, 0xd32c090,19, 0xd32c100,30, 0xd32c180,3, 0xd32c190,19, 0xd32c200,30, 0xd32c280,3, 0xd32c290,19, 0xd32c300,30, 0xd32c380,3, 0xd32c390,19, 0xd32c400,30, 0xd32c480,3, 0xd32c490,19, 0xd32c500,30, 0xd32c580,3, 0xd32c590,19, 0xd32c600,30, 0xd32c680,3, 0xd32c690,19, 0xd32c700,30, 0xd32c780,3, 0xd32c790,19, 0xd32c800,12, 0xd32c844,1, 0xd32c854,8, 0xd32c880,7, 0xd32c8a0,2, 0xd32c8ac,2, 0xd32c8c0,26, 0xd32c980,4, 0xd32c9a0,5, 0xd32c9c0,1, 0xd32d000,3, 0xd32d010,3, 0xd32d020,3, 0xd32d030,3, 0xd32d040,3, 0xd32d050,3, 0xd32d060,3, 0xd32d070,3, 0xd32d080,6, 0xd32d0a0,6, 0xd32d0c0,6, 0xd32d0e0,6, 0xd32d100,6, 0xd32d120,6, 0xd32d140,6, 0xd32d160,6, 0xd32d200,68, 0xd32d400,1, 0xd32d804,1, 0xd32d844,54, 0xd32da00,12, 0xd32da40,12, 0xd32da80,12, 0xd32dac0,12, 0xd32db00,12, 0xd32db40,12, 0xd32db80,12, 0xd32dbc0,12, 0xd32dc00,28, 0xd32dc80,10, 0xd32e000,3, 0xd32e020,6, 0xd32e040,6, 0xd32e060,15, 0xd32e100,26, 0xd32e180,15, 0xd32e200,15, 0xd32e240,4, 0xd32e260,17, 0xd32e2c0,6, 0xd32e2e0,4, 0xd32e2f4,18, 0xd32e340,4, 0xd32e360,17, 0xd32e3c0,6, 0xd32e3e0,4, 0xd32e3f4,15, 0xd330000,1, 0xd331000,1020, 0xd332000,194, 0xd333000,1020, 0xd334000,1020, 0xd335000,1020, 0xd336000,1020, 0xd337000,1020, 0xd338000,1020, 0xd339000,1020, 0xd33a000,1020, 0xd33b000,194, 0xd33c000,3, 0xd33c010,13, 0xd33c080,16, 0xd33c100,20, 0xd33c184,1, 0xd33c18c,4, 0xd33c200,3, 0xd33c210,13, 0xd33c280,16, 0xd33c300,20, 0xd33c384,1, 0xd33c38c,4, 0xd33c400,3, 0xd33c410,13, 0xd33c480,16, 0xd33c500,20, 0xd33c584,1, 0xd33c58c,4, 0xd33c600,3, 0xd33c610,13, 0xd33c680,16, 0xd33c700,20, 0xd33c784,1, 0xd33c78c,4, 0xd33c800,3, 0xd33c810,13, 0xd33c880,16, 0xd33c900,20, 0xd33c984,1, 0xd33c98c,4, 0xd33ca00,3, 0xd33ca10,13, 0xd33ca80,16, 0xd33cb00,20, 0xd33cb84,1, 0xd33cb8c,4, 0xd33cc00,3, 0xd33cc10,13, 0xd33cc80,16, 0xd33cd00,20, 0xd33cd84,1, 0xd33cd8c,4, 0xd33ce00,3, 0xd33ce10,13, 0xd33ce80,16, 0xd33cf00,20, 0xd33cf84,1, 0xd33cf8c,4, 0xd33d000,3, 0xd33d010,13, 0xd33d080,16, 0xd33d100,20, 0xd33d184,1, 0xd33d18c,4, 0xd33d200,18, 0xd33d250,2, 0xd33d260,4, 0xd33e000,1, 0xd33e014,1, 0xd33e01c,19, 0xd33e080,1, 0xd33e094,1, 0xd33e09c,19, 0xd33e100,8, 0xd33e200,13, 0xd33e240,9, 0xd33e280,12, 0xd33e2c0,2, 0xd33e2e0,12, 0xd340000,3, 0xd340080,20, 0xd340100,10, 0xd340140,1, 0xd340154,1, 0xd34015c,2, 0xd340200,15, 0xd340240,4, 0xd340260,17, 0xd3402c0,6, 0xd3402e0,2, 0xd3402ec,3, 0xd340300,8, 0xd340324,1, 0xd340400,4, 0xd340440,20, 0xd3404c0,9, 0xd340500,33, 0xd340600,11, 0xd340640,11, 0xd340680,1, 0xd342000,1, 0xd342200,4, 0xd342300,53, 0xd342400,4, 0xd342500,40, 0xd342600,15, 0xd342640,4, 0xd342660,17, 0xd3426c0,6, 0xd3426e0,2, 0xd3426ec,3, 0xd342700,8, 0xd342724,1, 0xd342800,20, 0xd342c00,53, 0xd342d00,53, 0xd342e00,1, 0xd343000,40, 0xd343100,40, 0xd343200,1, 0xd343400,1, 0xd343804,1, 0xd343844,39, 0xd343900,3, 0xd343a00,3, 0xd343a44,1, 0xd343a50,4, 0xd343a80,1, 0xd344000,2, 0xd344200,27, 0xd344280,4, 0xd3442c0,25, 0xd344340,6, 0xd344360,2, 0xd34436c,3, 0xd344380,8, 0xd3443a4,1, 0xd344400,12, 0xd344440,1, 0xd348000,3, 0xd348080,20, 0xd348100,10, 0xd348140,1, 0xd348154,1, 0xd34815c,2, 0xd348200,15, 0xd348240,4, 0xd348260,17, 0xd3482c0,6, 0xd3482e0,2, 0xd3482ec,3, 0xd348300,8, 0xd348324,1, 0xd348400,4, 0xd348440,20, 0xd3484c0,9, 0xd348500,33, 0xd348600,11, 0xd348640,11, 0xd348680,1, 0xd34a000,1, 0xd34a200,4, 0xd34a300,53, 0xd34a400,4, 0xd34a500,40, 0xd34a600,15, 0xd34a640,4, 0xd34a660,17, 0xd34a6c0,6, 0xd34a6e0,2, 0xd34a6ec,3, 0xd34a700,8, 0xd34a724,1, 0xd34a800,20, 0xd34ac00,53, 0xd34ad00,53, 0xd34ae00,1, 0xd34b000,40, 0xd34b100,40, 0xd34b200,1, 0xd34b400,1, 0xd34b804,1, 0xd34b844,39, 0xd34b900,3, 0xd34ba00,3, 0xd34ba44,1, 0xd34ba50,4, 0xd34ba80,1, 0xd34c000,2, 0xd34c200,27, 0xd34c280,4, 0xd34c2c0,25, 0xd34c340,6, 0xd34c360,2, 0xd34c36c,3, 0xd34c380,8, 0xd34c3a4,1, 0xd34c400,12, 0xd34c440,1, 0xd350000,4, 0xd350020,3, 0xd350030,2, 0xd350200,1, 0xd350224,10, 0xd350250,5, 0xd350280,1, 0xd350288,24, 0xd350300,3, 0xd350404,1, 0xd350414,5, 0xd350500,36, 0xd350600,3, 0xd350800,2, 0xd351000,1, 0xd351008,21, 0xd351080,1, 0xd351088,21, 0xd351100,1, 0xd351108,21, 0xd351180,1, 0xd351188,21, 0xd351200,1, 0xd351208,21, 0xd351280,1, 0xd351288,21, 0xd351300,1, 0xd351308,21, 0xd351380,1, 0xd351388,21, 0xd351400,21, 0xd351800,142, 0xd351c00,1, 0xd352000,4, 0xd352100,39, 0xd352200,3, 0xd352214,3, 0xd354004,1, 0xd354020,16, 0xd354080,2, 0xd354094,1, 0xd35409c,2, 0xd3540c0,6, 0xd354100,8, 0xd358004,17, 0xd358054,1, 0xd35805c,2, 0xd358080,1, 0xd3580a0,2, 0xd3580b4,4, 0xd358100,2, 0xd358200,8, 0xd358400,1, 0xd358600,27, 0xd358680,4, 0xd3586c0,25, 0xd358740,6, 0xd358760,2, 0xd35876c,3, 0xd358780,8, 0xd3587a4,3, 0xd358800,44, 0xd358900,1, 0xd360000,1, 0xd360200,27, 0xd360280,4, 0xd3602c0,25, 0xd360340,6, 0xd360360,2, 0xd36036c,3, 0xd360380,8, 0xd3603a4,1, 0xd360400,20, 0xd360480,3, 0xd360490,9, 0xd380000,198, 0xd380400,2, 0xd380440,9, 0xd380480,7, 0xd380800,198, 0xd380c00,2, 0xd380c40,9, 0xd380c80,7, 0xd381000,198, 0xd381400,198, 0xd381804,6, 0xd381824,6, 0xd381880,2, 0xd381904,1, 0xd381918,28, 0xd3819a0,6, 0xd3819c0,6, 0xd381c00,2, 0xd381d00,2, 0xd381e04,1, 0xd381e74,43, 0xd382000,2, 0xd382100,2, 0xd382204,1, 0xd382274,43, 0xd382400,3, 0xd382600,27, 0xd382680,4, 0xd3826c0,25, 0xd382740,6, 0xd382760,4, 0xd382774,11, 0xd3827a4,4, 0xd382800,4, 0xd382900,34, 0xd382a00,4, 0xd382b00,34, 0xd382c00,3, 0xd382c10,12, 0xd382e00,56, 0xd382ee4,4, 0xd382f00,4, 0xd383000,1, 0xd388000,4, 0xd388100,42, 0xd388200,1, 0xd388210,3, 0xd388220,3, 0xd388230,3, 0xd388240,1, 0xd388248,3, 0xd388400,4, 0xd388500,58, 0xd388600,1, 0xd388610,3, 0xd388620,3, 0xd388630,3, 0xd388640,1, 0xd388648,3, 0xd388800,4, 0xd388900,36, 0xd388a00,1, 0xd388c00,4, 0xd388c80,27, 0xd388d00,1, 0xd388d10,3, 0xd388d20,3, 0xd388d30,3, 0xd388d40,1, 0xd388d48,3, 0xd388e00,4, 0xd388e80,31, 0xd388f00,1, 0xd388f10,3, 0xd388f20,3, 0xd388f30,3, 0xd388f40,1, 0xd388f48,3, 0xd389000,4, 0xd389040,13, 0xd389080,1, 0xd389200,15, 0xd389240,4, 0xd389260,17, 0xd3892c0,6, 0xd3892e0,2, 0xd3892ec,3, 0xd389300,8, 0xd389324,8, 0xd389400,68, 0xd389600,60, 0xd389700,4, 0xd389720,5, 0xd389740,1, 0xd389780,2, 0xd38978c,2, 0xd3897a0,1, 0xd3897c0,12, 0xd389800,7, 0xd389820,5, 0xd389900,49, 0xd389a00,1, 0xd389a08,23, 0xd389a84,1, 0xd389a8c,1, 0xd389a94,1, 0xd389a9c,2, 0xd389ac0,1, 0xd389c00,10, 0xd389c40,1, 0xd389c50,3, 0xd389c80,10, 0xd389cc0,12, 0xd389d00,3, 0xd389e00,1, 0xd38a000,4, 0xd38a100,42, 0xd38a200,1, 0xd38a210,3, 0xd38a220,3, 0xd38a230,3, 0xd38a240,1, 0xd38a248,3, 0xd38a400,4, 0xd38a500,58, 0xd38a600,1, 0xd38a610,3, 0xd38a620,3, 0xd38a630,3, 0xd38a640,1, 0xd38a648,3, 0xd38a800,4, 0xd38a900,36, 0xd38aa00,1, 0xd38ac00,4, 0xd38ac80,27, 0xd38ad00,1, 0xd38ad10,3, 0xd38ad20,3, 0xd38ad30,3, 0xd38ad40,1, 0xd38ad48,3, 0xd38ae00,4, 0xd38ae80,31, 0xd38af00,1, 0xd38af10,3, 0xd38af20,3, 0xd38af30,3, 0xd38af40,1, 0xd38af48,3, 0xd38b000,4, 0xd38b040,13, 0xd38b080,1, 0xd38b200,15, 0xd38b240,4, 0xd38b260,17, 0xd38b2c0,6, 0xd38b2e0,2, 0xd38b2ec,3, 0xd38b300,8, 0xd38b324,8, 0xd38b400,68, 0xd38b600,60, 0xd38b700,4, 0xd38b720,5, 0xd38b740,1, 0xd38b780,2, 0xd38b78c,2, 0xd38b7a0,1, 0xd38b7c0,12, 0xd38b800,7, 0xd38b820,5, 0xd38b900,49, 0xd38ba00,1, 0xd38ba08,23, 0xd38ba84,1, 0xd38ba8c,1, 0xd38ba94,1, 0xd38ba9c,2, 0xd38bac0,1, 0xd38bc00,10, 0xd38bc40,1, 0xd38bc50,3, 0xd38bc80,10, 0xd38bcc0,12, 0xd38bd00,3, 0xd38be00,1, 0xd38c000,20, 0xd38c080,3, 0xd38c090,1, 0xd38c098,4, 0xd390000,49, 0xd390100,12, 0xd390140,4, 0xd390184,1, 0xd390198,2, 0xd3901a4,1, 0xd3901b8,7, 0xd3901e0,4, 0xd390200,20, 0xd390280,3, 0xd390290,9, 0xd3902c0,6, 0xd3902e0,1, 0xd3902e8,7, 0xd390400,49, 0xd390500,12, 0xd390540,4, 0xd390584,1, 0xd390598,2, 0xd3905a4,1, 0xd3905b8,7, 0xd3905e0,4, 0xd390600,20, 0xd390680,3, 0xd390690,9, 0xd3906c0,6, 0xd3906e0,1, 0xd3906e8,7, 0xd390800,49, 0xd390900,12, 0xd390940,4, 0xd390984,1, 0xd390998,2, 0xd3909a4,1, 0xd3909b8,7, 0xd3909e0,4, 0xd390a00,20, 0xd390a80,3, 0xd390a90,9, 0xd390ac0,6, 0xd390ae0,1, 0xd390ae8,7, 0xd390c00,49, 0xd390d00,12, 0xd390d40,4, 0xd390d84,1, 0xd390d98,2, 0xd390da4,1, 0xd390db8,7, 0xd390de0,4, 0xd390e00,20, 0xd390e80,3, 0xd390e90,9, 0xd390ec0,6, 0xd390ee0,1, 0xd390ee8,7, 0xd391000,49, 0xd391100,12, 0xd391140,4, 0xd391184,1, 0xd391198,2, 0xd3911a4,1, 0xd3911b8,7, 0xd3911e0,4, 0xd391200,20, 0xd391280,3, 0xd391290,9, 0xd3912c0,6, 0xd3912e0,1, 0xd3912e8,7, 0xd391400,49, 0xd391500,12, 0xd391540,4, 0xd391584,1, 0xd391598,2, 0xd3915a4,1, 0xd3915b8,7, 0xd3915e0,4, 0xd391600,20, 0xd391680,3, 0xd391690,9, 0xd3916c0,6, 0xd3916e0,1, 0xd3916e8,7, 0xd391800,49, 0xd391900,12, 0xd391940,4, 0xd391984,1, 0xd391998,2, 0xd3919a4,1, 0xd3919b8,7, 0xd3919e0,4, 0xd391a00,20, 0xd391a80,3, 0xd391a90,9, 0xd391ac0,6, 0xd391ae0,1, 0xd391ae8,7, 0xd392000,20, 0xd392080,10, 0xd392100,20, 0xd392180,10, 0xd392200,12, 0xd392400,20, 0xd392480,10, 0xd392500,20, 0xd392580,10, 0xd392600,12, 0xd392800,3, 0xd392840,12, 0xd392880,12, 0xd3928c0,12, 0xd392900,12, 0xd392940,12, 0xd392980,12, 0xd3929c0,12, 0xd392a00,12, 0xd392c00,12, 0xd392c40,7, 0xd392c60,10, 0xd393004,1, 0xd393044,43, 0xd393100,7, 0xd393120,7, 0xd393140,2, 0xd39314c,2, 0xd393160,2, 0xd39316c,2, 0xd393180,18, 0xd393200,2, 0xd393220,10, 0xd393260,20, 0xd3932c0,9, 0xd393300,15, 0xd393340,9, 0xd393380,6, 0xd3933a0,4, 0xd393400,5, 0xd394000,53, 0xd394100,3, 0xd394110,15, 0xd394200,53, 0xd394300,3, 0xd394310,15, 0xd394400,5, 0xd394420,5, 0xd394440,18, 0xd394800,3, 0xd394810,2, 0xd394820,3, 0xd394830,2, 0xd394840,1, 0xd395000,7, 0xd395020,7, 0xd395080,19, 0xd395100,19, 0xd395180,25, 0xd395200,20, 0xd395280,20, 0xd395300,8, 0xd395340,4, 0xd395380,15, 0xd3953c0,15, 0xd395400,9, 0xd395430,5, 0xd396000,6, 0xd396020,1, 0xd396028,2, 0xd396040,11, 0xd396070,2, 0xd398000,82, 0xd398200,2, 0xd398240,9, 0xd398280,7, 0xd398400,82, 0xd398604,6, 0xd398700,15, 0xd398740,9, 0xd398780,6, 0xd3987a0,6, 0xd398800,2, 0xd398810,3, 0xd398880,24, 0xd3988e4,1, 0xd3988f0,12, 0xd3a0000,22, 0xd3a0080,22, 0xd3a0100,5, 0xd3a0120,5, 0xd3a0140,3, 0xd3a0160,16, 0xd3a01c0,7, 0xd3a01e0,2, 0xd3a0200,7, 0xd3a0220,2, 0xd3a0400,15, 0xd3a0440,3, 0xd3a0450,3, 0xd3a0460,24, 0xd3a0500,15, 0xd3a0540,3, 0xd3a0550,3, 0xd3a0560,24, 0xd3a0600,15, 0xd3a0640,3, 0xd3a0650,3, 0xd3a0660,24, 0xd3a0700,15, 0xd3a0740,3, 0xd3a0750,3, 0xd3a0760,24, 0xd3a0800,4, 0xd3a0820,16, 0xd3a0880,10, 0xd3a08c0,10, 0xd3a0900,6, 0xd3a0920,6, 0xd3a0940,4, 0xd3a0980,13, 0xd3a09c0,13, 0xd3a0a00,9, 0xd3a1000,86, 0xd3a1200,2, 0xd3a1240,9, 0xd3a1280,7, 0xd3a1400,86, 0xd3a1604,6, 0xd3a1800,86, 0xd3a1a00,2, 0xd3a1a40,9, 0xd3a1a80,7, 0xd3a1c00,86, 0xd3a1e04,6, 0xd3a2000,15, 0xd3a2040,4, 0xd3a2060,17, 0xd3a20c0,6, 0xd3a20e0,4, 0xd3a20f4,11, 0xd3a2128,38, 0xd3a21c4,2, 0xd3a21d0,4, 0xd3a2200,1, 0xd3a4000,22, 0xd3a4080,22, 0xd3a4100,5, 0xd3a4120,5, 0xd3a4140,3, 0xd3a4160,16, 0xd3a41c0,7, 0xd3a41e0,2, 0xd3a4200,7, 0xd3a4220,2, 0xd3a4400,15, 0xd3a4440,3, 0xd3a4450,3, 0xd3a4460,24, 0xd3a4500,15, 0xd3a4540,3, 0xd3a4550,3, 0xd3a4560,24, 0xd3a4600,15, 0xd3a4640,3, 0xd3a4650,3, 0xd3a4660,24, 0xd3a4700,15, 0xd3a4740,3, 0xd3a4750,3, 0xd3a4760,24, 0xd3a4800,4, 0xd3a4820,16, 0xd3a4880,10, 0xd3a48c0,10, 0xd3a4900,6, 0xd3a4920,6, 0xd3a4940,4, 0xd3a4980,13, 0xd3a49c0,13, 0xd3a4a00,9, 0xd3a5000,86, 0xd3a5200,2, 0xd3a5240,9, 0xd3a5280,7, 0xd3a5400,86, 0xd3a5604,6, 0xd3a5800,86, 0xd3a5a00,2, 0xd3a5a40,9, 0xd3a5a80,7, 0xd3a5c00,86, 0xd3a5e04,6, 0xd3a6000,15, 0xd3a6040,4, 0xd3a6060,17, 0xd3a60c0,6, 0xd3a60e0,4, 0xd3a60f4,11, 0xd3a6128,38, 0xd3a61c4,2, 0xd3a61d0,4, 0xd3a6200,1, 0xd3a8000,9, 0xd3a8040,9, 0xd3a8080,5, 0xd3a8100,21, 0xd3a8160,5, 0xd3a8180,45, 0xd3a8240,13, 0xd3a8280,9, 0xd3a8400,9, 0xd3a8440,9, 0xd3a8480,5, 0xd3a8500,21, 0xd3a8560,5, 0xd3a8580,45, 0xd3a8640,13, 0xd3a8680,9, 0xd3a8800,12, 0xd3a8900,15, 0xd3a8940,4, 0xd3a8960,17, 0xd3a89c0,6, 0xd3a89e0,4, 0xd3a89f4,29, 0xd3ac000,30, 0xd3ac080,3, 0xd3ac090,19, 0xd3ac100,30, 0xd3ac180,3, 0xd3ac190,19, 0xd3ac200,30, 0xd3ac280,3, 0xd3ac290,19, 0xd3ac300,30, 0xd3ac380,3, 0xd3ac390,19, 0xd3ac400,30, 0xd3ac480,3, 0xd3ac490,19, 0xd3ac500,30, 0xd3ac580,3, 0xd3ac590,19, 0xd3ac600,30, 0xd3ac680,3, 0xd3ac690,19, 0xd3ac700,30, 0xd3ac780,3, 0xd3ac790,19, 0xd3ac800,12, 0xd3ac844,1, 0xd3ac854,8, 0xd3ac880,7, 0xd3ac8a0,2, 0xd3ac8ac,2, 0xd3ac8c0,26, 0xd3ac980,4, 0xd3ac9a0,5, 0xd3ac9c0,1, 0xd3ad000,3, 0xd3ad010,3, 0xd3ad020,3, 0xd3ad030,3, 0xd3ad040,3, 0xd3ad050,3, 0xd3ad060,3, 0xd3ad070,3, 0xd3ad080,6, 0xd3ad0a0,6, 0xd3ad0c0,6, 0xd3ad0e0,6, 0xd3ad100,6, 0xd3ad120,6, 0xd3ad140,6, 0xd3ad160,6, 0xd3ad200,68, 0xd3ad400,1, 0xd3ad804,1, 0xd3ad844,54, 0xd3ada00,12, 0xd3ada40,12, 0xd3ada80,12, 0xd3adac0,12, 0xd3adb00,12, 0xd3adb40,12, 0xd3adb80,12, 0xd3adbc0,12, 0xd3adc00,28, 0xd3adc80,10, 0xd3ae000,3, 0xd3ae020,6, 0xd3ae040,6, 0xd3ae060,15, 0xd3ae100,26, 0xd3ae180,15, 0xd3ae200,15, 0xd3ae240,4, 0xd3ae260,17, 0xd3ae2c0,6, 0xd3ae2e0,4, 0xd3ae2f4,18, 0xd3ae340,4, 0xd3ae360,17, 0xd3ae3c0,6, 0xd3ae3e0,4, 0xd3ae3f4,15, 0xd3b0000,1, 0xd3b1000,1020, 0xd3b2000,194, 0xd3b3000,1020, 0xd3b4000,1020, 0xd3b5000,1020, 0xd3b6000,1020, 0xd3b7000,1020, 0xd3b8000,1020, 0xd3b9000,1020, 0xd3ba000,1020, 0xd3bb000,194, 0xd3bc000,3, 0xd3bc010,13, 0xd3bc080,16, 0xd3bc100,20, 0xd3bc184,1, 0xd3bc18c,4, 0xd3bc200,3, 0xd3bc210,13, 0xd3bc280,16, 0xd3bc300,20, 0xd3bc384,1, 0xd3bc38c,4, 0xd3bc400,3, 0xd3bc410,13, 0xd3bc480,16, 0xd3bc500,20, 0xd3bc584,1, 0xd3bc58c,4, 0xd3bc600,3, 0xd3bc610,13, 0xd3bc680,16, 0xd3bc700,20, 0xd3bc784,1, 0xd3bc78c,4, 0xd3bc800,3, 0xd3bc810,13, 0xd3bc880,16, 0xd3bc900,20, 0xd3bc984,1, 0xd3bc98c,4, 0xd3bca00,3, 0xd3bca10,13, 0xd3bca80,16, 0xd3bcb00,20, 0xd3bcb84,1, 0xd3bcb8c,4, 0xd3bcc00,3, 0xd3bcc10,13, 0xd3bcc80,16, 0xd3bcd00,20, 0xd3bcd84,1, 0xd3bcd8c,4, 0xd3bce00,3, 0xd3bce10,13, 0xd3bce80,16, 0xd3bcf00,20, 0xd3bcf84,1, 0xd3bcf8c,4, 0xd3bd000,3, 0xd3bd010,13, 0xd3bd080,16, 0xd3bd100,20, 0xd3bd184,1, 0xd3bd18c,4, 0xd3bd200,18, 0xd3bd250,2, 0xd3bd260,4, 0xd3be000,1, 0xd3be014,1, 0xd3be01c,19, 0xd3be080,1, 0xd3be094,1, 0xd3be09c,19, 0xd3be100,8, 0xd3be200,13, 0xd3be240,9, 0xd3be280,12, 0xd3be2c0,2, 0xd3be2e0,12, 0xd3c0000,3, 0xd3c0080,20, 0xd3c0100,10, 0xd3c0140,1, 0xd3c0154,1, 0xd3c015c,2, 0xd3c0200,15, 0xd3c0240,4, 0xd3c0260,17, 0xd3c02c0,6, 0xd3c02e0,2, 0xd3c02ec,3, 0xd3c0300,8, 0xd3c0324,1, 0xd3c0400,4, 0xd3c0440,20, 0xd3c04c0,9, 0xd3c0500,33, 0xd3c0600,11, 0xd3c0640,11, 0xd3c0680,1, 0xd3c2000,1, 0xd3c2200,4, 0xd3c2300,53, 0xd3c2400,4, 0xd3c2500,40, 0xd3c2600,15, 0xd3c2640,4, 0xd3c2660,17, 0xd3c26c0,6, 0xd3c26e0,2, 0xd3c26ec,3, 0xd3c2700,8, 0xd3c2724,1, 0xd3c2800,20, 0xd3c2c00,53, 0xd3c2d00,53, 0xd3c2e00,1, 0xd3c3000,40, 0xd3c3100,40, 0xd3c3200,1, 0xd3c3400,1, 0xd3c3804,1, 0xd3c3844,39, 0xd3c3900,3, 0xd3c3a00,3, 0xd3c3a44,1, 0xd3c3a50,4, 0xd3c3a80,1, 0xd3c4000,2, 0xd3c4200,27, 0xd3c4280,4, 0xd3c42c0,25, 0xd3c4340,6, 0xd3c4360,2, 0xd3c436c,3, 0xd3c4380,8, 0xd3c43a4,1, 0xd3c4400,12, 0xd3c4440,1, 0xd3c8000,3, 0xd3c8080,20, 0xd3c8100,10, 0xd3c8140,1, 0xd3c8154,1, 0xd3c815c,2, 0xd3c8200,15, 0xd3c8240,4, 0xd3c8260,17, 0xd3c82c0,6, 0xd3c82e0,2, 0xd3c82ec,3, 0xd3c8300,8, 0xd3c8324,1, 0xd3c8400,4, 0xd3c8440,20, 0xd3c84c0,9, 0xd3c8500,33, 0xd3c8600,11, 0xd3c8640,11, 0xd3c8680,1, 0xd3ca000,1, 0xd3ca200,4, 0xd3ca300,53, 0xd3ca400,4, 0xd3ca500,40, 0xd3ca600,15, 0xd3ca640,4, 0xd3ca660,17, 0xd3ca6c0,6, 0xd3ca6e0,2, 0xd3ca6ec,3, 0xd3ca700,8, 0xd3ca724,1, 0xd3ca800,20, 0xd3cac00,53, 0xd3cad00,53, 0xd3cae00,1, 0xd3cb000,40, 0xd3cb100,40, 0xd3cb200,1, 0xd3cb400,1, 0xd3cb804,1, 0xd3cb844,39, 0xd3cb900,3, 0xd3cba00,3, 0xd3cba44,1, 0xd3cba50,4, 0xd3cba80,1, 0xd3cc000,2, 0xd3cc200,27, 0xd3cc280,4, 0xd3cc2c0,25, 0xd3cc340,6, 0xd3cc360,2, 0xd3cc36c,3, 0xd3cc380,8, 0xd3cc3a4,1, 0xd3cc400,12, 0xd3cc440,1, 0xd3d0000,4, 0xd3d0020,3, 0xd3d0030,2, 0xd3d0200,1, 0xd3d0224,10, 0xd3d0250,5, 0xd3d0280,1, 0xd3d0288,24, 0xd3d0300,3, 0xd3d0404,1, 0xd3d0414,5, 0xd3d0500,36, 0xd3d0600,3, 0xd3d0800,2, 0xd3d1000,1, 0xd3d1008,21, 0xd3d1080,1, 0xd3d1088,21, 0xd3d1100,1, 0xd3d1108,21, 0xd3d1180,1, 0xd3d1188,21, 0xd3d1200,1, 0xd3d1208,21, 0xd3d1280,1, 0xd3d1288,21, 0xd3d1300,1, 0xd3d1308,21, 0xd3d1380,1, 0xd3d1388,21, 0xd3d1400,21, 0xd3d1800,142, 0xd3d1c00,1, 0xd3d2000,4, 0xd3d2100,39, 0xd3d2200,3, 0xd3d2214,3, 0xd3d4004,1, 0xd3d4020,16, 0xd3d4080,2, 0xd3d4094,1, 0xd3d409c,2, 0xd3d40c0,6, 0xd3d4100,8, 0xd3d8004,17, 0xd3d8054,1, 0xd3d805c,2, 0xd3d8080,1, 0xd3d80a0,2, 0xd3d80b4,4, 0xd3d8100,2, 0xd3d8200,8, 0xd3d8400,1, 0xd3d8600,27, 0xd3d8680,4, 0xd3d86c0,25, 0xd3d8740,6, 0xd3d8760,2, 0xd3d876c,3, 0xd3d8780,8, 0xd3d87a4,3, 0xd3d8800,44, 0xd3d8900,1, 0xd3e0000,1, 0xd3e0200,27, 0xd3e0280,4, 0xd3e02c0,25, 0xd3e0340,6, 0xd3e0360,2, 0xd3e036c,3, 0xd3e0380,8, 0xd3e03a4,1, 0xd3e0400,20, 0xd3e0480,3, 0xd3e0490,9, 0xd400000,198, 0xd400400,2, 0xd400440,9, 0xd400480,7, 0xd400800,198, 0xd400c00,2, 0xd400c40,9, 0xd400c80,7, 0xd401000,198, 0xd401400,198, 0xd401804,6, 0xd401824,6, 0xd401880,2, 0xd401904,1, 0xd401918,28, 0xd4019a0,6, 0xd4019c0,6, 0xd401c00,2, 0xd401d00,2, 0xd401e04,1, 0xd401e74,43, 0xd402000,2, 0xd402100,2, 0xd402204,1, 0xd402274,43, 0xd402400,3, 0xd402600,27, 0xd402680,4, 0xd4026c0,25, 0xd402740,6, 0xd402760,4, 0xd402774,11, 0xd4027a4,4, 0xd402800,4, 0xd402900,34, 0xd402a00,4, 0xd402b00,34, 0xd402c00,3, 0xd402c10,12, 0xd402e00,56, 0xd402ee4,4, 0xd402f00,4, 0xd403000,1, 0xd408000,4, 0xd408100,42, 0xd408200,1, 0xd408210,3, 0xd408220,3, 0xd408230,3, 0xd408240,1, 0xd408248,3, 0xd408400,4, 0xd408500,58, 0xd408600,1, 0xd408610,3, 0xd408620,3, 0xd408630,3, 0xd408640,1, 0xd408648,3, 0xd408800,4, 0xd408900,36, 0xd408a00,1, 0xd408c00,4, 0xd408c80,27, 0xd408d00,1, 0xd408d10,3, 0xd408d20,3, 0xd408d30,3, 0xd408d40,1, 0xd408d48,3, 0xd408e00,4, 0xd408e80,31, 0xd408f00,1, 0xd408f10,3, 0xd408f20,3, 0xd408f30,3, 0xd408f40,1, 0xd408f48,3, 0xd409000,4, 0xd409040,13, 0xd409080,1, 0xd409200,15, 0xd409240,4, 0xd409260,17, 0xd4092c0,6, 0xd4092e0,2, 0xd4092ec,3, 0xd409300,8, 0xd409324,8, 0xd409400,68, 0xd409600,60, 0xd409700,4, 0xd409720,5, 0xd409740,1, 0xd409780,2, 0xd40978c,2, 0xd4097a0,1, 0xd4097c0,12, 0xd409800,7, 0xd409820,5, 0xd409900,49, 0xd409a00,1, 0xd409a08,23, 0xd409a84,1, 0xd409a8c,1, 0xd409a94,1, 0xd409a9c,2, 0xd409ac0,1, 0xd409c00,10, 0xd409c40,1, 0xd409c50,3, 0xd409c80,10, 0xd409cc0,12, 0xd409d00,3, 0xd409e00,1, 0xd40a000,4, 0xd40a100,42, 0xd40a200,1, 0xd40a210,3, 0xd40a220,3, 0xd40a230,3, 0xd40a240,1, 0xd40a248,3, 0xd40a400,4, 0xd40a500,58, 0xd40a600,1, 0xd40a610,3, 0xd40a620,3, 0xd40a630,3, 0xd40a640,1, 0xd40a648,3, 0xd40a800,4, 0xd40a900,36, 0xd40aa00,1, 0xd40ac00,4, 0xd40ac80,27, 0xd40ad00,1, 0xd40ad10,3, 0xd40ad20,3, 0xd40ad30,3, 0xd40ad40,1, 0xd40ad48,3, 0xd40ae00,4, 0xd40ae80,31, 0xd40af00,1, 0xd40af10,3, 0xd40af20,3, 0xd40af30,3, 0xd40af40,1, 0xd40af48,3, 0xd40b000,4, 0xd40b040,13, 0xd40b080,1, 0xd40b200,15, 0xd40b240,4, 0xd40b260,17, 0xd40b2c0,6, 0xd40b2e0,2, 0xd40b2ec,3, 0xd40b300,8, 0xd40b324,8, 0xd40b400,68, 0xd40b600,60, 0xd40b700,4, 0xd40b720,5, 0xd40b740,1, 0xd40b780,2, 0xd40b78c,2, 0xd40b7a0,1, 0xd40b7c0,12, 0xd40b800,7, 0xd40b820,5, 0xd40b900,49, 0xd40ba00,1, 0xd40ba08,23, 0xd40ba84,1, 0xd40ba8c,1, 0xd40ba94,1, 0xd40ba9c,2, 0xd40bac0,1, 0xd40bc00,10, 0xd40bc40,1, 0xd40bc50,3, 0xd40bc80,10, 0xd40bcc0,12, 0xd40bd00,3, 0xd40be00,1, 0xd40c000,20, 0xd40c080,3, 0xd40c090,1, 0xd40c098,4, 0xd410000,49, 0xd410100,12, 0xd410140,4, 0xd410184,1, 0xd410198,2, 0xd4101a4,1, 0xd4101b8,7, 0xd4101e0,4, 0xd410200,20, 0xd410280,3, 0xd410290,9, 0xd4102c0,6, 0xd4102e0,1, 0xd4102e8,7, 0xd410400,49, 0xd410500,12, 0xd410540,4, 0xd410584,1, 0xd410598,2, 0xd4105a4,1, 0xd4105b8,7, 0xd4105e0,4, 0xd410600,20, 0xd410680,3, 0xd410690,9, 0xd4106c0,6, 0xd4106e0,1, 0xd4106e8,7, 0xd410800,49, 0xd410900,12, 0xd410940,4, 0xd410984,1, 0xd410998,2, 0xd4109a4,1, 0xd4109b8,7, 0xd4109e0,4, 0xd410a00,20, 0xd410a80,3, 0xd410a90,9, 0xd410ac0,6, 0xd410ae0,1, 0xd410ae8,7, 0xd410c00,49, 0xd410d00,12, 0xd410d40,4, 0xd410d84,1, 0xd410d98,2, 0xd410da4,1, 0xd410db8,7, 0xd410de0,4, 0xd410e00,20, 0xd410e80,3, 0xd410e90,9, 0xd410ec0,6, 0xd410ee0,1, 0xd410ee8,7, 0xd411000,49, 0xd411100,12, 0xd411140,4, 0xd411184,1, 0xd411198,2, 0xd4111a4,1, 0xd4111b8,7, 0xd4111e0,4, 0xd411200,20, 0xd411280,3, 0xd411290,9, 0xd4112c0,6, 0xd4112e0,1, 0xd4112e8,7, 0xd411400,49, 0xd411500,12, 0xd411540,4, 0xd411584,1, 0xd411598,2, 0xd4115a4,1, 0xd4115b8,7, 0xd4115e0,4, 0xd411600,20, 0xd411680,3, 0xd411690,9, 0xd4116c0,6, 0xd4116e0,1, 0xd4116e8,7, 0xd411800,49, 0xd411900,12, 0xd411940,4, 0xd411984,1, 0xd411998,2, 0xd4119a4,1, 0xd4119b8,7, 0xd4119e0,4, 0xd411a00,20, 0xd411a80,3, 0xd411a90,9, 0xd411ac0,6, 0xd411ae0,1, 0xd411ae8,7, 0xd412000,20, 0xd412080,10, 0xd412100,20, 0xd412180,10, 0xd412200,12, 0xd412400,20, 0xd412480,10, 0xd412500,20, 0xd412580,10, 0xd412600,12, 0xd412800,3, 0xd412840,12, 0xd412880,12, 0xd4128c0,12, 0xd412900,12, 0xd412940,12, 0xd412980,12, 0xd4129c0,12, 0xd412a00,12, 0xd412c00,12, 0xd412c40,7, 0xd412c60,10, 0xd413004,1, 0xd413044,43, 0xd413100,7, 0xd413120,7, 0xd413140,2, 0xd41314c,2, 0xd413160,2, 0xd41316c,2, 0xd413180,18, 0xd413200,2, 0xd413220,10, 0xd413260,20, 0xd4132c0,9, 0xd413300,15, 0xd413340,9, 0xd413380,6, 0xd4133a0,4, 0xd413400,5, 0xd414000,53, 0xd414100,3, 0xd414110,15, 0xd414200,53, 0xd414300,3, 0xd414310,15, 0xd414400,5, 0xd414420,5, 0xd414440,18, 0xd414800,3, 0xd414810,2, 0xd414820,3, 0xd414830,2, 0xd414840,1, 0xd415000,7, 0xd415020,7, 0xd415080,19, 0xd415100,19, 0xd415180,25, 0xd415200,20, 0xd415280,20, 0xd415300,8, 0xd415340,4, 0xd415380,15, 0xd4153c0,15, 0xd415400,9, 0xd415430,5, 0xd416000,6, 0xd416020,1, 0xd416028,2, 0xd416040,11, 0xd416070,2, 0xd418000,82, 0xd418200,2, 0xd418240,9, 0xd418280,7, 0xd418400,82, 0xd418604,6, 0xd418700,15, 0xd418740,9, 0xd418780,6, 0xd4187a0,6, 0xd418800,2, 0xd418810,3, 0xd418880,24, 0xd4188e4,1, 0xd4188f0,12, 0xd420000,22, 0xd420080,22, 0xd420100,5, 0xd420120,5, 0xd420140,3, 0xd420160,16, 0xd4201c0,7, 0xd4201e0,2, 0xd420200,7, 0xd420220,2, 0xd420400,15, 0xd420440,3, 0xd420450,3, 0xd420460,24, 0xd420500,15, 0xd420540,3, 0xd420550,3, 0xd420560,24, 0xd420600,15, 0xd420640,3, 0xd420650,3, 0xd420660,24, 0xd420700,15, 0xd420740,3, 0xd420750,3, 0xd420760,24, 0xd420800,4, 0xd420820,16, 0xd420880,10, 0xd4208c0,10, 0xd420900,6, 0xd420920,6, 0xd420940,4, 0xd420980,13, 0xd4209c0,13, 0xd420a00,9, 0xd421000,86, 0xd421200,2, 0xd421240,9, 0xd421280,7, 0xd421400,86, 0xd421604,6, 0xd421800,86, 0xd421a00,2, 0xd421a40,9, 0xd421a80,7, 0xd421c00,86, 0xd421e04,6, 0xd422000,15, 0xd422040,4, 0xd422060,17, 0xd4220c0,6, 0xd4220e0,4, 0xd4220f4,11, 0xd422128,38, 0xd4221c4,2, 0xd4221d0,4, 0xd422200,1, 0xd424000,22, 0xd424080,22, 0xd424100,5, 0xd424120,5, 0xd424140,3, 0xd424160,16, 0xd4241c0,7, 0xd4241e0,2, 0xd424200,7, 0xd424220,2, 0xd424400,15, 0xd424440,3, 0xd424450,3, 0xd424460,24, 0xd424500,15, 0xd424540,3, 0xd424550,3, 0xd424560,24, 0xd424600,15, 0xd424640,3, 0xd424650,3, 0xd424660,24, 0xd424700,15, 0xd424740,3, 0xd424750,3, 0xd424760,24, 0xd424800,4, 0xd424820,16, 0xd424880,10, 0xd4248c0,10, 0xd424900,6, 0xd424920,6, 0xd424940,4, 0xd424980,13, 0xd4249c0,13, 0xd424a00,9, 0xd425000,86, 0xd425200,2, 0xd425240,9, 0xd425280,7, 0xd425400,86, 0xd425604,6, 0xd425800,86, 0xd425a00,2, 0xd425a40,9, 0xd425a80,7, 0xd425c00,86, 0xd425e04,6, 0xd426000,15, 0xd426040,4, 0xd426060,17, 0xd4260c0,6, 0xd4260e0,4, 0xd4260f4,11, 0xd426128,38, 0xd4261c4,2, 0xd4261d0,4, 0xd426200,1, 0xd428000,9, 0xd428040,9, 0xd428080,5, 0xd428100,21, 0xd428160,5, 0xd428180,45, 0xd428240,13, 0xd428280,9, 0xd428400,9, 0xd428440,9, 0xd428480,5, 0xd428500,21, 0xd428560,5, 0xd428580,45, 0xd428640,13, 0xd428680,9, 0xd428800,12, 0xd428900,15, 0xd428940,4, 0xd428960,17, 0xd4289c0,6, 0xd4289e0,4, 0xd4289f4,29, 0xd42c000,30, 0xd42c080,3, 0xd42c090,19, 0xd42c100,30, 0xd42c180,3, 0xd42c190,19, 0xd42c200,30, 0xd42c280,3, 0xd42c290,19, 0xd42c300,30, 0xd42c380,3, 0xd42c390,19, 0xd42c400,30, 0xd42c480,3, 0xd42c490,19, 0xd42c500,30, 0xd42c580,3, 0xd42c590,19, 0xd42c600,30, 0xd42c680,3, 0xd42c690,19, 0xd42c700,30, 0xd42c780,3, 0xd42c790,19, 0xd42c800,12, 0xd42c844,1, 0xd42c854,8, 0xd42c880,7, 0xd42c8a0,2, 0xd42c8ac,2, 0xd42c8c0,26, 0xd42c980,4, 0xd42c9a0,5, 0xd42c9c0,1, 0xd42d000,3, 0xd42d010,3, 0xd42d020,3, 0xd42d030,3, 0xd42d040,3, 0xd42d050,3, 0xd42d060,3, 0xd42d070,3, 0xd42d080,6, 0xd42d0a0,6, 0xd42d0c0,6, 0xd42d0e0,6, 0xd42d100,6, 0xd42d120,6, 0xd42d140,6, 0xd42d160,6, 0xd42d200,68, 0xd42d400,1, 0xd42d804,1, 0xd42d844,54, 0xd42da00,12, 0xd42da40,12, 0xd42da80,12, 0xd42dac0,12, 0xd42db00,12, 0xd42db40,12, 0xd42db80,12, 0xd42dbc0,12, 0xd42dc00,28, 0xd42dc80,10, 0xd42e000,3, 0xd42e020,6, 0xd42e040,6, 0xd42e060,15, 0xd42e100,26, 0xd42e180,15, 0xd42e200,15, 0xd42e240,4, 0xd42e260,17, 0xd42e2c0,6, 0xd42e2e0,4, 0xd42e2f4,18, 0xd42e340,4, 0xd42e360,17, 0xd42e3c0,6, 0xd42e3e0,4, 0xd42e3f4,15, 0xd430000,1, 0xd431000,1020, 0xd432000,194, 0xd433000,1020, 0xd434000,1020, 0xd435000,1020, 0xd436000,1020, 0xd437000,1020, 0xd438000,1020, 0xd439000,1020, 0xd43a000,1020, 0xd43b000,194, 0xd43c000,3, 0xd43c010,13, 0xd43c080,16, 0xd43c100,20, 0xd43c184,1, 0xd43c18c,4, 0xd43c200,3, 0xd43c210,13, 0xd43c280,16, 0xd43c300,20, 0xd43c384,1, 0xd43c38c,4, 0xd43c400,3, 0xd43c410,13, 0xd43c480,16, 0xd43c500,20, 0xd43c584,1, 0xd43c58c,4, 0xd43c600,3, 0xd43c610,13, 0xd43c680,16, 0xd43c700,20, 0xd43c784,1, 0xd43c78c,4, 0xd43c800,3, 0xd43c810,13, 0xd43c880,16, 0xd43c900,20, 0xd43c984,1, 0xd43c98c,4, 0xd43ca00,3, 0xd43ca10,13, 0xd43ca80,16, 0xd43cb00,20, 0xd43cb84,1, 0xd43cb8c,4, 0xd43cc00,3, 0xd43cc10,13, 0xd43cc80,16, 0xd43cd00,20, 0xd43cd84,1, 0xd43cd8c,4, 0xd43ce00,3, 0xd43ce10,13, 0xd43ce80,16, 0xd43cf00,20, 0xd43cf84,1, 0xd43cf8c,4, 0xd43d000,3, 0xd43d010,13, 0xd43d080,16, 0xd43d100,20, 0xd43d184,1, 0xd43d18c,4, 0xd43d200,18, 0xd43d250,2, 0xd43d260,4, 0xd43e000,1, 0xd43e014,1, 0xd43e01c,19, 0xd43e080,1, 0xd43e094,1, 0xd43e09c,19, 0xd43e100,8, 0xd43e200,13, 0xd43e240,9, 0xd43e280,12, 0xd43e2c0,2, 0xd43e2e0,12, 0xd440000,3, 0xd440080,20, 0xd440100,10, 0xd440140,1, 0xd440154,1, 0xd44015c,2, 0xd440200,15, 0xd440240,4, 0xd440260,17, 0xd4402c0,6, 0xd4402e0,2, 0xd4402ec,3, 0xd440300,8, 0xd440324,1, 0xd440400,4, 0xd440440,20, 0xd4404c0,9, 0xd440500,33, 0xd440600,11, 0xd440640,11, 0xd440680,1, 0xd442000,1, 0xd442200,4, 0xd442300,53, 0xd442400,4, 0xd442500,40, 0xd442600,15, 0xd442640,4, 0xd442660,17, 0xd4426c0,6, 0xd4426e0,2, 0xd4426ec,3, 0xd442700,8, 0xd442724,1, 0xd442800,20, 0xd442c00,53, 0xd442d00,53, 0xd442e00,1, 0xd443000,40, 0xd443100,40, 0xd443200,1, 0xd443400,1, 0xd443804,1, 0xd443844,39, 0xd443900,3, 0xd443a00,3, 0xd443a44,1, 0xd443a50,4, 0xd443a80,1, 0xd444000,2, 0xd444200,27, 0xd444280,4, 0xd4442c0,25, 0xd444340,6, 0xd444360,2, 0xd44436c,3, 0xd444380,8, 0xd4443a4,1, 0xd444400,12, 0xd444440,1, 0xd448000,3, 0xd448080,20, 0xd448100,10, 0xd448140,1, 0xd448154,1, 0xd44815c,2, 0xd448200,15, 0xd448240,4, 0xd448260,17, 0xd4482c0,6, 0xd4482e0,2, 0xd4482ec,3, 0xd448300,8, 0xd448324,1, 0xd448400,4, 0xd448440,20, 0xd4484c0,9, 0xd448500,33, 0xd448600,11, 0xd448640,11, 0xd448680,1, 0xd44a000,1, 0xd44a200,4, 0xd44a300,53, 0xd44a400,4, 0xd44a500,40, 0xd44a600,15, 0xd44a640,4, 0xd44a660,17, 0xd44a6c0,6, 0xd44a6e0,2, 0xd44a6ec,3, 0xd44a700,8, 0xd44a724,1, 0xd44a800,20, 0xd44ac00,53, 0xd44ad00,53, 0xd44ae00,1, 0xd44b000,40, 0xd44b100,40, 0xd44b200,1, 0xd44b400,1, 0xd44b804,1, 0xd44b844,39, 0xd44b900,3, 0xd44ba00,3, 0xd44ba44,1, 0xd44ba50,4, 0xd44ba80,1, 0xd44c000,2, 0xd44c200,27, 0xd44c280,4, 0xd44c2c0,25, 0xd44c340,6, 0xd44c360,2, 0xd44c36c,3, 0xd44c380,8, 0xd44c3a4,1, 0xd44c400,12, 0xd44c440,1, 0xd450000,4, 0xd450020,3, 0xd450030,2, 0xd450200,1, 0xd450224,10, 0xd450250,5, 0xd450280,1, 0xd450288,24, 0xd450300,3, 0xd450404,1, 0xd450414,5, 0xd450500,36, 0xd450600,3, 0xd450800,2, 0xd451000,1, 0xd451008,21, 0xd451080,1, 0xd451088,21, 0xd451100,1, 0xd451108,21, 0xd451180,1, 0xd451188,21, 0xd451200,1, 0xd451208,21, 0xd451280,1, 0xd451288,21, 0xd451300,1, 0xd451308,21, 0xd451380,1, 0xd451388,21, 0xd451400,21, 0xd451800,142, 0xd451c00,1, 0xd452000,4, 0xd452100,39, 0xd452200,3, 0xd452214,3, 0xd454004,1, 0xd454020,16, 0xd454080,2, 0xd454094,1, 0xd45409c,2, 0xd4540c0,6, 0xd454100,8, 0xd458004,17, 0xd458054,1, 0xd45805c,2, 0xd458080,1, 0xd4580a0,2, 0xd4580b4,4, 0xd458100,2, 0xd458200,8, 0xd458400,1, 0xd458600,27, 0xd458680,4, 0xd4586c0,25, 0xd458740,6, 0xd458760,2, 0xd45876c,3, 0xd458780,8, 0xd4587a4,3, 0xd458800,44, 0xd458900,1, 0xd460000,1, 0xd460200,27, 0xd460280,4, 0xd4602c0,25, 0xd460340,6, 0xd460360,2, 0xd46036c,3, 0xd460380,8, 0xd4603a4,1, 0xd460400,20, 0xd460480,3, 0xd460490,9, 0xd480000,198, 0xd480400,2, 0xd480440,9, 0xd480480,7, 0xd480800,198, 0xd480c00,2, 0xd480c40,9, 0xd480c80,7, 0xd481000,198, 0xd481400,198, 0xd481804,6, 0xd481824,6, 0xd481880,2, 0xd481904,1, 0xd481918,28, 0xd4819a0,6, 0xd4819c0,6, 0xd481c00,2, 0xd481d00,2, 0xd481e04,1, 0xd481e74,43, 0xd482000,2, 0xd482100,2, 0xd482204,1, 0xd482274,43, 0xd482400,3, 0xd482600,27, 0xd482680,4, 0xd4826c0,25, 0xd482740,6, 0xd482760,4, 0xd482774,11, 0xd4827a4,4, 0xd482800,4, 0xd482900,34, 0xd482a00,4, 0xd482b00,34, 0xd482c00,3, 0xd482c10,12, 0xd482e00,56, 0xd482ee4,4, 0xd482f00,4, 0xd483000,1, 0xd488000,4, 0xd488100,42, 0xd488200,1, 0xd488210,3, 0xd488220,3, 0xd488230,3, 0xd488240,1, 0xd488248,3, 0xd488400,4, 0xd488500,58, 0xd488600,1, 0xd488610,3, 0xd488620,3, 0xd488630,3, 0xd488640,1, 0xd488648,3, 0xd488800,4, 0xd488900,36, 0xd488a00,1, 0xd488c00,4, 0xd488c80,27, 0xd488d00,1, 0xd488d10,3, 0xd488d20,3, 0xd488d30,3, 0xd488d40,1, 0xd488d48,3, 0xd488e00,4, 0xd488e80,31, 0xd488f00,1, 0xd488f10,3, 0xd488f20,3, 0xd488f30,3, 0xd488f40,1, 0xd488f48,3, 0xd489000,4, 0xd489040,13, 0xd489080,1, 0xd489200,15, 0xd489240,4, 0xd489260,17, 0xd4892c0,6, 0xd4892e0,2, 0xd4892ec,3, 0xd489300,8, 0xd489324,8, 0xd489400,68, 0xd489600,60, 0xd489700,4, 0xd489720,5, 0xd489740,1, 0xd489780,2, 0xd48978c,2, 0xd4897a0,1, 0xd4897c0,12, 0xd489800,7, 0xd489820,5, 0xd489900,49, 0xd489a00,1, 0xd489a08,23, 0xd489a84,1, 0xd489a8c,1, 0xd489a94,1, 0xd489a9c,2, 0xd489ac0,1, 0xd489c00,10, 0xd489c40,1, 0xd489c50,3, 0xd489c80,10, 0xd489cc0,12, 0xd489d00,3, 0xd489e00,1, 0xd48a000,4, 0xd48a100,42, 0xd48a200,1, 0xd48a210,3, 0xd48a220,3, 0xd48a230,3, 0xd48a240,1, 0xd48a248,3, 0xd48a400,4, 0xd48a500,58, 0xd48a600,1, 0xd48a610,3, 0xd48a620,3, 0xd48a630,3, 0xd48a640,1, 0xd48a648,3, 0xd48a800,4, 0xd48a900,36, 0xd48aa00,1, 0xd48ac00,4, 0xd48ac80,27, 0xd48ad00,1, 0xd48ad10,3, 0xd48ad20,3, 0xd48ad30,3, 0xd48ad40,1, 0xd48ad48,3, 0xd48ae00,4, 0xd48ae80,31, 0xd48af00,1, 0xd48af10,3, 0xd48af20,3, 0xd48af30,3, 0xd48af40,1, 0xd48af48,3, 0xd48b000,4, 0xd48b040,13, 0xd48b080,1, 0xd48b200,15, 0xd48b240,4, 0xd48b260,17, 0xd48b2c0,6, 0xd48b2e0,2, 0xd48b2ec,3, 0xd48b300,8, 0xd48b324,8, 0xd48b400,68, 0xd48b600,60, 0xd48b700,4, 0xd48b720,5, 0xd48b740,1, 0xd48b780,2, 0xd48b78c,2, 0xd48b7a0,1, 0xd48b7c0,12, 0xd48b800,7, 0xd48b820,5, 0xd48b900,49, 0xd48ba00,1, 0xd48ba08,23, 0xd48ba84,1, 0xd48ba8c,1, 0xd48ba94,1, 0xd48ba9c,2, 0xd48bac0,1, 0xd48bc00,10, 0xd48bc40,1, 0xd48bc50,3, 0xd48bc80,10, 0xd48bcc0,12, 0xd48bd00,3, 0xd48be00,1, 0xd48c000,20, 0xd48c080,3, 0xd48c090,1, 0xd48c098,4, 0xd490000,49, 0xd490100,12, 0xd490140,4, 0xd490184,1, 0xd490198,2, 0xd4901a4,1, 0xd4901b8,7, 0xd4901e0,4, 0xd490200,20, 0xd490280,3, 0xd490290,9, 0xd4902c0,6, 0xd4902e0,1, 0xd4902e8,7, 0xd490400,49, 0xd490500,12, 0xd490540,4, 0xd490584,1, 0xd490598,2, 0xd4905a4,1, 0xd4905b8,7, 0xd4905e0,4, 0xd490600,20, 0xd490680,3, 0xd490690,9, 0xd4906c0,6, 0xd4906e0,1, 0xd4906e8,7, 0xd490800,49, 0xd490900,12, 0xd490940,4, 0xd490984,1, 0xd490998,2, 0xd4909a4,1, 0xd4909b8,7, 0xd4909e0,4, 0xd490a00,20, 0xd490a80,3, 0xd490a90,9, 0xd490ac0,6, 0xd490ae0,1, 0xd490ae8,7, 0xd490c00,49, 0xd490d00,12, 0xd490d40,4, 0xd490d84,1, 0xd490d98,2, 0xd490da4,1, 0xd490db8,7, 0xd490de0,4, 0xd490e00,20, 0xd490e80,3, 0xd490e90,9, 0xd490ec0,6, 0xd490ee0,1, 0xd490ee8,7, 0xd491000,49, 0xd491100,12, 0xd491140,4, 0xd491184,1, 0xd491198,2, 0xd4911a4,1, 0xd4911b8,7, 0xd4911e0,4, 0xd491200,20, 0xd491280,3, 0xd491290,9, 0xd4912c0,6, 0xd4912e0,1, 0xd4912e8,7, 0xd491400,49, 0xd491500,12, 0xd491540,4, 0xd491584,1, 0xd491598,2, 0xd4915a4,1, 0xd4915b8,7, 0xd4915e0,4, 0xd491600,20, 0xd491680,3, 0xd491690,9, 0xd4916c0,6, 0xd4916e0,1, 0xd4916e8,7, 0xd491800,49, 0xd491900,12, 0xd491940,4, 0xd491984,1, 0xd491998,2, 0xd4919a4,1, 0xd4919b8,7, 0xd4919e0,4, 0xd491a00,20, 0xd491a80,3, 0xd491a90,9, 0xd491ac0,6, 0xd491ae0,1, 0xd491ae8,7, 0xd492000,20, 0xd492080,10, 0xd492100,20, 0xd492180,10, 0xd492200,12, 0xd492400,20, 0xd492480,10, 0xd492500,20, 0xd492580,10, 0xd492600,12, 0xd492800,3, 0xd492840,12, 0xd492880,12, 0xd4928c0,12, 0xd492900,12, 0xd492940,12, 0xd492980,12, 0xd4929c0,12, 0xd492a00,12, 0xd492c00,12, 0xd492c40,7, 0xd492c60,10, 0xd493004,1, 0xd493044,43, 0xd493100,7, 0xd493120,7, 0xd493140,2, 0xd49314c,2, 0xd493160,2, 0xd49316c,2, 0xd493180,18, 0xd493200,2, 0xd493220,10, 0xd493260,20, 0xd4932c0,9, 0xd493300,15, 0xd493340,9, 0xd493380,6, 0xd4933a0,4, 0xd493400,5, 0xd494000,53, 0xd494100,3, 0xd494110,15, 0xd494200,53, 0xd494300,3, 0xd494310,15, 0xd494400,5, 0xd494420,5, 0xd494440,18, 0xd494800,3, 0xd494810,2, 0xd494820,3, 0xd494830,2, 0xd494840,1, 0xd495000,7, 0xd495020,7, 0xd495080,19, 0xd495100,19, 0xd495180,25, 0xd495200,20, 0xd495280,20, 0xd495300,8, 0xd495340,4, 0xd495380,15, 0xd4953c0,15, 0xd495400,9, 0xd495430,5, 0xd496000,6, 0xd496020,1, 0xd496028,2, 0xd496040,11, 0xd496070,2, 0xd498000,82, 0xd498200,2, 0xd498240,9, 0xd498280,7, 0xd498400,82, 0xd498604,6, 0xd498700,15, 0xd498740,9, 0xd498780,6, 0xd4987a0,6, 0xd498800,2, 0xd498810,3, 0xd498880,24, 0xd4988e4,1, 0xd4988f0,12, 0xd4a0000,22, 0xd4a0080,22, 0xd4a0100,5, 0xd4a0120,5, 0xd4a0140,3, 0xd4a0160,16, 0xd4a01c0,7, 0xd4a01e0,2, 0xd4a0200,7, 0xd4a0220,2, 0xd4a0400,15, 0xd4a0440,3, 0xd4a0450,3, 0xd4a0460,24, 0xd4a0500,15, 0xd4a0540,3, 0xd4a0550,3, 0xd4a0560,24, 0xd4a0600,15, 0xd4a0640,3, 0xd4a0650,3, 0xd4a0660,24, 0xd4a0700,15, 0xd4a0740,3, 0xd4a0750,3, 0xd4a0760,24, 0xd4a0800,4, 0xd4a0820,16, 0xd4a0880,10, 0xd4a08c0,10, 0xd4a0900,6, 0xd4a0920,6, 0xd4a0940,4, 0xd4a0980,13, 0xd4a09c0,13, 0xd4a0a00,9, 0xd4a1000,86, 0xd4a1200,2, 0xd4a1240,9, 0xd4a1280,7, 0xd4a1400,86, 0xd4a1604,6, 0xd4a1800,86, 0xd4a1a00,2, 0xd4a1a40,9, 0xd4a1a80,7, 0xd4a1c00,86, 0xd4a1e04,6, 0xd4a2000,15, 0xd4a2040,4, 0xd4a2060,17, 0xd4a20c0,6, 0xd4a20e0,4, 0xd4a20f4,11, 0xd4a2128,38, 0xd4a21c4,2, 0xd4a21d0,4, 0xd4a2200,1, 0xd4a4000,22, 0xd4a4080,22, 0xd4a4100,5, 0xd4a4120,5, 0xd4a4140,3, 0xd4a4160,16, 0xd4a41c0,7, 0xd4a41e0,2, 0xd4a4200,7, 0xd4a4220,2, 0xd4a4400,15, 0xd4a4440,3, 0xd4a4450,3, 0xd4a4460,24, 0xd4a4500,15, 0xd4a4540,3, 0xd4a4550,3, 0xd4a4560,24, 0xd4a4600,15, 0xd4a4640,3, 0xd4a4650,3, 0xd4a4660,24, 0xd4a4700,15, 0xd4a4740,3, 0xd4a4750,3, 0xd4a4760,24, 0xd4a4800,4, 0xd4a4820,16, 0xd4a4880,10, 0xd4a48c0,10, 0xd4a4900,6, 0xd4a4920,6, 0xd4a4940,4, 0xd4a4980,13, 0xd4a49c0,13, 0xd4a4a00,9, 0xd4a5000,86, 0xd4a5200,2, 0xd4a5240,9, 0xd4a5280,7, 0xd4a5400,86, 0xd4a5604,6, 0xd4a5800,86, 0xd4a5a00,2, 0xd4a5a40,9, 0xd4a5a80,7, 0xd4a5c00,86, 0xd4a5e04,6, 0xd4a6000,15, 0xd4a6040,4, 0xd4a6060,17, 0xd4a60c0,6, 0xd4a60e0,4, 0xd4a60f4,11, 0xd4a6128,38, 0xd4a61c4,2, 0xd4a61d0,4, 0xd4a6200,1, 0xd4a8000,9, 0xd4a8040,9, 0xd4a8080,5, 0xd4a8100,21, 0xd4a8160,5, 0xd4a8180,45, 0xd4a8240,13, 0xd4a8280,9, 0xd4a8400,9, 0xd4a8440,9, 0xd4a8480,5, 0xd4a8500,21, 0xd4a8560,5, 0xd4a8580,45, 0xd4a8640,13, 0xd4a8680,9, 0xd4a8800,12, 0xd4a8900,15, 0xd4a8940,4, 0xd4a8960,17, 0xd4a89c0,6, 0xd4a89e0,4, 0xd4a89f4,29, 0xd4ac000,30, 0xd4ac080,3, 0xd4ac090,19, 0xd4ac100,30, 0xd4ac180,3, 0xd4ac190,19, 0xd4ac200,30, 0xd4ac280,3, 0xd4ac290,19, 0xd4ac300,30, 0xd4ac380,3, 0xd4ac390,19, 0xd4ac400,30, 0xd4ac480,3, 0xd4ac490,19, 0xd4ac500,30, 0xd4ac580,3, 0xd4ac590,19, 0xd4ac600,30, 0xd4ac680,3, 0xd4ac690,19, 0xd4ac700,30, 0xd4ac780,3, 0xd4ac790,19, 0xd4ac800,12, 0xd4ac844,1, 0xd4ac854,8, 0xd4ac880,7, 0xd4ac8a0,2, 0xd4ac8ac,2, 0xd4ac8c0,26, 0xd4ac980,4, 0xd4ac9a0,5, 0xd4ac9c0,1, 0xd4ad000,3, 0xd4ad010,3, 0xd4ad020,3, 0xd4ad030,3, 0xd4ad040,3, 0xd4ad050,3, 0xd4ad060,3, 0xd4ad070,3, 0xd4ad080,6, 0xd4ad0a0,6, 0xd4ad0c0,6, 0xd4ad0e0,6, 0xd4ad100,6, 0xd4ad120,6, 0xd4ad140,6, 0xd4ad160,6, 0xd4ad200,68, 0xd4ad400,1, 0xd4ad804,1, 0xd4ad844,54, 0xd4ada00,12, 0xd4ada40,12, 0xd4ada80,12, 0xd4adac0,12, 0xd4adb00,12, 0xd4adb40,12, 0xd4adb80,12, 0xd4adbc0,12, 0xd4adc00,28, 0xd4adc80,10, 0xd4ae000,3, 0xd4ae020,6, 0xd4ae040,6, 0xd4ae060,15, 0xd4ae100,26, 0xd4ae180,15, 0xd4ae200,15, 0xd4ae240,4, 0xd4ae260,17, 0xd4ae2c0,6, 0xd4ae2e0,4, 0xd4ae2f4,18, 0xd4ae340,4, 0xd4ae360,17, 0xd4ae3c0,6, 0xd4ae3e0,4, 0xd4ae3f4,15, 0xd4b0000,1, 0xd4b1000,1020, 0xd4b2000,194, 0xd4b3000,1020, 0xd4b4000,1020, 0xd4b5000,1020, 0xd4b6000,1020, 0xd4b7000,1020, 0xd4b8000,1020, 0xd4b9000,1020, 0xd4ba000,1020, 0xd4bb000,194, 0xd4bc000,3, 0xd4bc010,13, 0xd4bc080,16, 0xd4bc100,20, 0xd4bc184,1, 0xd4bc18c,4, 0xd4bc200,3, 0xd4bc210,13, 0xd4bc280,16, 0xd4bc300,20, 0xd4bc384,1, 0xd4bc38c,4, 0xd4bc400,3, 0xd4bc410,13, 0xd4bc480,16, 0xd4bc500,20, 0xd4bc584,1, 0xd4bc58c,4, 0xd4bc600,3, 0xd4bc610,13, 0xd4bc680,16, 0xd4bc700,20, 0xd4bc784,1, 0xd4bc78c,4, 0xd4bc800,3, 0xd4bc810,13, 0xd4bc880,16, 0xd4bc900,20, 0xd4bc984,1, 0xd4bc98c,4, 0xd4bca00,3, 0xd4bca10,13, 0xd4bca80,16, 0xd4bcb00,20, 0xd4bcb84,1, 0xd4bcb8c,4, 0xd4bcc00,3, 0xd4bcc10,13, 0xd4bcc80,16, 0xd4bcd00,20, 0xd4bcd84,1, 0xd4bcd8c,4, 0xd4bce00,3, 0xd4bce10,13, 0xd4bce80,16, 0xd4bcf00,20, 0xd4bcf84,1, 0xd4bcf8c,4, 0xd4bd000,3, 0xd4bd010,13, 0xd4bd080,16, 0xd4bd100,20, 0xd4bd184,1, 0xd4bd18c,4, 0xd4bd200,18, 0xd4bd250,2, 0xd4bd260,4, 0xd4be000,1, 0xd4be014,1, 0xd4be01c,19, 0xd4be080,1, 0xd4be094,1, 0xd4be09c,19, 0xd4be100,8, 0xd4be200,13, 0xd4be240,9, 0xd4be280,12, 0xd4be2c0,2, 0xd4be2e0,12, 0xd4c0000,3, 0xd4c0080,20, 0xd4c0100,10, 0xd4c0140,1, 0xd4c0154,1, 0xd4c015c,2, 0xd4c0200,15, 0xd4c0240,4, 0xd4c0260,17, 0xd4c02c0,6, 0xd4c02e0,2, 0xd4c02ec,3, 0xd4c0300,8, 0xd4c0324,1, 0xd4c0400,4, 0xd4c0440,20, 0xd4c04c0,9, 0xd4c0500,33, 0xd4c0600,11, 0xd4c0640,11, 0xd4c0680,1, 0xd4c2000,1, 0xd4c2200,4, 0xd4c2300,53, 0xd4c2400,4, 0xd4c2500,40, 0xd4c2600,15, 0xd4c2640,4, 0xd4c2660,17, 0xd4c26c0,6, 0xd4c26e0,2, 0xd4c26ec,3, 0xd4c2700,8, 0xd4c2724,1, 0xd4c2800,20, 0xd4c2c00,53, 0xd4c2d00,53, 0xd4c2e00,1, 0xd4c3000,40, 0xd4c3100,40, 0xd4c3200,1, 0xd4c3400,1, 0xd4c3804,1, 0xd4c3844,39, 0xd4c3900,3, 0xd4c3a00,3, 0xd4c3a44,1, 0xd4c3a50,4, 0xd4c3a80,1, 0xd4c4000,2, 0xd4c4200,27, 0xd4c4280,4, 0xd4c42c0,25, 0xd4c4340,6, 0xd4c4360,2, 0xd4c436c,3, 0xd4c4380,8, 0xd4c43a4,1, 0xd4c4400,12, 0xd4c4440,1, 0xd4c8000,3, 0xd4c8080,20, 0xd4c8100,10, 0xd4c8140,1, 0xd4c8154,1, 0xd4c815c,2, 0xd4c8200,15, 0xd4c8240,4, 0xd4c8260,17, 0xd4c82c0,6, 0xd4c82e0,2, 0xd4c82ec,3, 0xd4c8300,8, 0xd4c8324,1, 0xd4c8400,4, 0xd4c8440,20, 0xd4c84c0,9, 0xd4c8500,33, 0xd4c8600,11, 0xd4c8640,11, 0xd4c8680,1, 0xd4ca000,1, 0xd4ca200,4, 0xd4ca300,53, 0xd4ca400,4, 0xd4ca500,40, 0xd4ca600,15, 0xd4ca640,4, 0xd4ca660,17, 0xd4ca6c0,6, 0xd4ca6e0,2, 0xd4ca6ec,3, 0xd4ca700,8, 0xd4ca724,1, 0xd4ca800,20, 0xd4cac00,53, 0xd4cad00,53, 0xd4cae00,1, 0xd4cb000,40, 0xd4cb100,40, 0xd4cb200,1, 0xd4cb400,1, 0xd4cb804,1, 0xd4cb844,39, 0xd4cb900,3, 0xd4cba00,3, 0xd4cba44,1, 0xd4cba50,4, 0xd4cba80,1, 0xd4cc000,2, 0xd4cc200,27, 0xd4cc280,4, 0xd4cc2c0,25, 0xd4cc340,6, 0xd4cc360,2, 0xd4cc36c,3, 0xd4cc380,8, 0xd4cc3a4,1, 0xd4cc400,12, 0xd4cc440,1, 0xd4d0000,4, 0xd4d0020,3, 0xd4d0030,2, 0xd4d0200,1, 0xd4d0224,10, 0xd4d0250,5, 0xd4d0280,1, 0xd4d0288,24, 0xd4d0300,3, 0xd4d0404,1, 0xd4d0414,5, 0xd4d0500,36, 0xd4d0600,3, 0xd4d0800,2, 0xd4d1000,1, 0xd4d1008,21, 0xd4d1080,1, 0xd4d1088,21, 0xd4d1100,1, 0xd4d1108,21, 0xd4d1180,1, 0xd4d1188,21, 0xd4d1200,1, 0xd4d1208,21, 0xd4d1280,1, 0xd4d1288,21, 0xd4d1300,1, 0xd4d1308,21, 0xd4d1380,1, 0xd4d1388,21, 0xd4d1400,21, 0xd4d1800,142, 0xd4d1c00,1, 0xd4d2000,4, 0xd4d2100,39, 0xd4d2200,3, 0xd4d2214,3, 0xd4d4004,1, 0xd4d4020,16, 0xd4d4080,2, 0xd4d4094,1, 0xd4d409c,2, 0xd4d40c0,6, 0xd4d4100,8, 0xd4d8004,17, 0xd4d8054,1, 0xd4d805c,2, 0xd4d8080,1, 0xd4d80a0,2, 0xd4d80b4,4, 0xd4d8100,2, 0xd4d8200,8, 0xd4d8400,1, 0xd4d8600,27, 0xd4d8680,4, 0xd4d86c0,25, 0xd4d8740,6, 0xd4d8760,2, 0xd4d876c,3, 0xd4d8780,8, 0xd4d87a4,3, 0xd4d8800,44, 0xd4d8900,1, 0xd4e0000,1, 0xd4e0200,27, 0xd4e0280,4, 0xd4e02c0,25, 0xd4e0340,6, 0xd4e0360,2, 0xd4e036c,3, 0xd4e0380,8, 0xd4e03a4,1, 0xd4e0400,20, 0xd4e0480,3, 0xd4e0490,9, 0xd500000,198, 0xd500400,2, 0xd500440,9, 0xd500480,7, 0xd500800,198, 0xd500c00,2, 0xd500c40,9, 0xd500c80,7, 0xd501000,198, 0xd501400,198, 0xd501804,6, 0xd501824,6, 0xd501880,2, 0xd501904,1, 0xd501918,28, 0xd5019a0,6, 0xd5019c0,6, 0xd501c00,2, 0xd501d00,2, 0xd501e04,1, 0xd501e74,43, 0xd502000,2, 0xd502100,2, 0xd502204,1, 0xd502274,43, 0xd502400,3, 0xd502600,27, 0xd502680,4, 0xd5026c0,25, 0xd502740,6, 0xd502760,4, 0xd502774,11, 0xd5027a4,4, 0xd502800,4, 0xd502900,34, 0xd502a00,4, 0xd502b00,34, 0xd502c00,3, 0xd502c10,12, 0xd502e00,56, 0xd502ee4,4, 0xd502f00,4, 0xd503000,1, 0xd508000,4, 0xd508100,42, 0xd508200,1, 0xd508210,3, 0xd508220,3, 0xd508230,3, 0xd508240,1, 0xd508248,3, 0xd508400,4, 0xd508500,58, 0xd508600,1, 0xd508610,3, 0xd508620,3, 0xd508630,3, 0xd508640,1, 0xd508648,3, 0xd508800,4, 0xd508900,36, 0xd508a00,1, 0xd508c00,4, 0xd508c80,27, 0xd508d00,1, 0xd508d10,3, 0xd508d20,3, 0xd508d30,3, 0xd508d40,1, 0xd508d48,3, 0xd508e00,4, 0xd508e80,31, 0xd508f00,1, 0xd508f10,3, 0xd508f20,3, 0xd508f30,3, 0xd508f40,1, 0xd508f48,3, 0xd509000,4, 0xd509040,13, 0xd509080,1, 0xd509200,15, 0xd509240,4, 0xd509260,17, 0xd5092c0,6, 0xd5092e0,2, 0xd5092ec,3, 0xd509300,8, 0xd509324,8, 0xd509400,68, 0xd509600,60, 0xd509700,4, 0xd509720,5, 0xd509740,1, 0xd509780,2, 0xd50978c,2, 0xd5097a0,1, 0xd5097c0,12, 0xd509800,7, 0xd509820,5, 0xd509900,49, 0xd509a00,1, 0xd509a08,23, 0xd509a84,1, 0xd509a8c,1, 0xd509a94,1, 0xd509a9c,2, 0xd509ac0,1, 0xd509c00,10, 0xd509c40,1, 0xd509c50,3, 0xd509c80,10, 0xd509cc0,12, 0xd509d00,3, 0xd509e00,1, 0xd50a000,4, 0xd50a100,42, 0xd50a200,1, 0xd50a210,3, 0xd50a220,3, 0xd50a230,3, 0xd50a240,1, 0xd50a248,3, 0xd50a400,4, 0xd50a500,58, 0xd50a600,1, 0xd50a610,3, 0xd50a620,3, 0xd50a630,3, 0xd50a640,1, 0xd50a648,3, 0xd50a800,4, 0xd50a900,36, 0xd50aa00,1, 0xd50ac00,4, 0xd50ac80,27, 0xd50ad00,1, 0xd50ad10,3, 0xd50ad20,3, 0xd50ad30,3, 0xd50ad40,1, 0xd50ad48,3, 0xd50ae00,4, 0xd50ae80,31, 0xd50af00,1, 0xd50af10,3, 0xd50af20,3, 0xd50af30,3, 0xd50af40,1, 0xd50af48,3, 0xd50b000,4, 0xd50b040,13, 0xd50b080,1, 0xd50b200,15, 0xd50b240,4, 0xd50b260,17, 0xd50b2c0,6, 0xd50b2e0,2, 0xd50b2ec,3, 0xd50b300,8, 0xd50b324,8, 0xd50b400,68, 0xd50b600,60, 0xd50b700,4, 0xd50b720,5, 0xd50b740,1, 0xd50b780,2, 0xd50b78c,2, 0xd50b7a0,1, 0xd50b7c0,12, 0xd50b800,7, 0xd50b820,5, 0xd50b900,49, 0xd50ba00,1, 0xd50ba08,23, 0xd50ba84,1, 0xd50ba8c,1, 0xd50ba94,1, 0xd50ba9c,2, 0xd50bac0,1, 0xd50bc00,10, 0xd50bc40,1, 0xd50bc50,3, 0xd50bc80,10, 0xd50bcc0,12, 0xd50bd00,3, 0xd50be00,1, 0xd50c000,20, 0xd50c080,3, 0xd50c090,1, 0xd50c098,4, 0xd510000,49, 0xd510100,12, 0xd510140,4, 0xd510184,1, 0xd510198,2, 0xd5101a4,1, 0xd5101b8,7, 0xd5101e0,4, 0xd510200,20, 0xd510280,3, 0xd510290,9, 0xd5102c0,6, 0xd5102e0,1, 0xd5102e8,7, 0xd510400,49, 0xd510500,12, 0xd510540,4, 0xd510584,1, 0xd510598,2, 0xd5105a4,1, 0xd5105b8,7, 0xd5105e0,4, 0xd510600,20, 0xd510680,3, 0xd510690,9, 0xd5106c0,6, 0xd5106e0,1, 0xd5106e8,7, 0xd510800,49, 0xd510900,12, 0xd510940,4, 0xd510984,1, 0xd510998,2, 0xd5109a4,1, 0xd5109b8,7, 0xd5109e0,4, 0xd510a00,20, 0xd510a80,3, 0xd510a90,9, 0xd510ac0,6, 0xd510ae0,1, 0xd510ae8,7, 0xd510c00,49, 0xd510d00,12, 0xd510d40,4, 0xd510d84,1, 0xd510d98,2, 0xd510da4,1, 0xd510db8,7, 0xd510de0,4, 0xd510e00,20, 0xd510e80,3, 0xd510e90,9, 0xd510ec0,6, 0xd510ee0,1, 0xd510ee8,7, 0xd511000,49, 0xd511100,12, 0xd511140,4, 0xd511184,1, 0xd511198,2, 0xd5111a4,1, 0xd5111b8,7, 0xd5111e0,4, 0xd511200,20, 0xd511280,3, 0xd511290,9, 0xd5112c0,6, 0xd5112e0,1, 0xd5112e8,7, 0xd511400,49, 0xd511500,12, 0xd511540,4, 0xd511584,1, 0xd511598,2, 0xd5115a4,1, 0xd5115b8,7, 0xd5115e0,4, 0xd511600,20, 0xd511680,3, 0xd511690,9, 0xd5116c0,6, 0xd5116e0,1, 0xd5116e8,7, 0xd511800,49, 0xd511900,12, 0xd511940,4, 0xd511984,1, 0xd511998,2, 0xd5119a4,1, 0xd5119b8,7, 0xd5119e0,4, 0xd511a00,20, 0xd511a80,3, 0xd511a90,9, 0xd511ac0,6, 0xd511ae0,1, 0xd511ae8,7, 0xd512000,20, 0xd512080,10, 0xd512100,20, 0xd512180,10, 0xd512200,12, 0xd512400,20, 0xd512480,10, 0xd512500,20, 0xd512580,10, 0xd512600,12, 0xd512800,3, 0xd512840,12, 0xd512880,12, 0xd5128c0,12, 0xd512900,12, 0xd512940,12, 0xd512980,12, 0xd5129c0,12, 0xd512a00,12, 0xd512c00,12, 0xd512c40,7, 0xd512c60,10, 0xd513004,1, 0xd513044,43, 0xd513100,7, 0xd513120,7, 0xd513140,2, 0xd51314c,2, 0xd513160,2, 0xd51316c,2, 0xd513180,18, 0xd513200,2, 0xd513220,10, 0xd513260,20, 0xd5132c0,9, 0xd513300,15, 0xd513340,9, 0xd513380,6, 0xd5133a0,4, 0xd513400,5, 0xd514000,53, 0xd514100,3, 0xd514110,15, 0xd514200,53, 0xd514300,3, 0xd514310,15, 0xd514400,5, 0xd514420,5, 0xd514440,18, 0xd514800,3, 0xd514810,2, 0xd514820,3, 0xd514830,2, 0xd514840,1, 0xd515000,7, 0xd515020,7, 0xd515080,19, 0xd515100,19, 0xd515180,25, 0xd515200,20, 0xd515280,20, 0xd515300,8, 0xd515340,4, 0xd515380,15, 0xd5153c0,15, 0xd515400,9, 0xd515430,5, 0xd516000,6, 0xd516020,1, 0xd516028,2, 0xd516040,11, 0xd516070,2, 0xd518000,82, 0xd518200,2, 0xd518240,9, 0xd518280,7, 0xd518400,82, 0xd518604,6, 0xd518700,15, 0xd518740,9, 0xd518780,6, 0xd5187a0,6, 0xd518800,2, 0xd518810,3, 0xd518880,24, 0xd5188e4,1, 0xd5188f0,12, 0xd520000,22, 0xd520080,22, 0xd520100,5, 0xd520120,5, 0xd520140,3, 0xd520160,16, 0xd5201c0,7, 0xd5201e0,2, 0xd520200,7, 0xd520220,2, 0xd520400,15, 0xd520440,3, 0xd520450,3, 0xd520460,24, 0xd520500,15, 0xd520540,3, 0xd520550,3, 0xd520560,24, 0xd520600,15, 0xd520640,3, 0xd520650,3, 0xd520660,24, 0xd520700,15, 0xd520740,3, 0xd520750,3, 0xd520760,24, 0xd520800,4, 0xd520820,16, 0xd520880,10, 0xd5208c0,10, 0xd520900,6, 0xd520920,6, 0xd520940,4, 0xd520980,13, 0xd5209c0,13, 0xd520a00,9, 0xd521000,86, 0xd521200,2, 0xd521240,9, 0xd521280,7, 0xd521400,86, 0xd521604,6, 0xd521800,86, 0xd521a00,2, 0xd521a40,9, 0xd521a80,7, 0xd521c00,86, 0xd521e04,6, 0xd522000,15, 0xd522040,4, 0xd522060,17, 0xd5220c0,6, 0xd5220e0,4, 0xd5220f4,11, 0xd522128,38, 0xd5221c4,2, 0xd5221d0,4, 0xd522200,1, 0xd524000,22, 0xd524080,22, 0xd524100,5, 0xd524120,5, 0xd524140,3, 0xd524160,16, 0xd5241c0,7, 0xd5241e0,2, 0xd524200,7, 0xd524220,2, 0xd524400,15, 0xd524440,3, 0xd524450,3, 0xd524460,24, 0xd524500,15, 0xd524540,3, 0xd524550,3, 0xd524560,24, 0xd524600,15, 0xd524640,3, 0xd524650,3, 0xd524660,24, 0xd524700,15, 0xd524740,3, 0xd524750,3, 0xd524760,24, 0xd524800,4, 0xd524820,16, 0xd524880,10, 0xd5248c0,10, 0xd524900,6, 0xd524920,6, 0xd524940,4, 0xd524980,13, 0xd5249c0,13, 0xd524a00,9, 0xd525000,86, 0xd525200,2, 0xd525240,9, 0xd525280,7, 0xd525400,86, 0xd525604,6, 0xd525800,86, 0xd525a00,2, 0xd525a40,9, 0xd525a80,7, 0xd525c00,86, 0xd525e04,6, 0xd526000,15, 0xd526040,4, 0xd526060,17, 0xd5260c0,6, 0xd5260e0,4, 0xd5260f4,11, 0xd526128,38, 0xd5261c4,2, 0xd5261d0,4, 0xd526200,1, 0xd528000,9, 0xd528040,9, 0xd528080,5, 0xd528100,21, 0xd528160,5, 0xd528180,45, 0xd528240,13, 0xd528280,9, 0xd528400,9, 0xd528440,9, 0xd528480,5, 0xd528500,21, 0xd528560,5, 0xd528580,45, 0xd528640,13, 0xd528680,9, 0xd528800,12, 0xd528900,15, 0xd528940,4, 0xd528960,17, 0xd5289c0,6, 0xd5289e0,4, 0xd5289f4,29, 0xd52c000,30, 0xd52c080,3, 0xd52c090,19, 0xd52c100,30, 0xd52c180,3, 0xd52c190,19, 0xd52c200,30, 0xd52c280,3, 0xd52c290,19, 0xd52c300,30, 0xd52c380,3, 0xd52c390,19, 0xd52c400,30, 0xd52c480,3, 0xd52c490,19, 0xd52c500,30, 0xd52c580,3, 0xd52c590,19, 0xd52c600,30, 0xd52c680,3, 0xd52c690,19, 0xd52c700,30, 0xd52c780,3, 0xd52c790,19, 0xd52c800,12, 0xd52c844,1, 0xd52c854,8, 0xd52c880,7, 0xd52c8a0,2, 0xd52c8ac,2, 0xd52c8c0,26, 0xd52c980,4, 0xd52c9a0,5, 0xd52c9c0,1, 0xd52d000,3, 0xd52d010,3, 0xd52d020,3, 0xd52d030,3, 0xd52d040,3, 0xd52d050,3, 0xd52d060,3, 0xd52d070,3, 0xd52d080,6, 0xd52d0a0,6, 0xd52d0c0,6, 0xd52d0e0,6, 0xd52d100,6, 0xd52d120,6, 0xd52d140,6, 0xd52d160,6, 0xd52d200,68, 0xd52d400,1, 0xd52d804,1, 0xd52d844,54, 0xd52da00,12, 0xd52da40,12, 0xd52da80,12, 0xd52dac0,12, 0xd52db00,12, 0xd52db40,12, 0xd52db80,12, 0xd52dbc0,12, 0xd52dc00,28, 0xd52dc80,10, 0xd52e000,3, 0xd52e020,6, 0xd52e040,6, 0xd52e060,15, 0xd52e100,26, 0xd52e180,15, 0xd52e200,15, 0xd52e240,4, 0xd52e260,17, 0xd52e2c0,6, 0xd52e2e0,4, 0xd52e2f4,18, 0xd52e340,4, 0xd52e360,17, 0xd52e3c0,6, 0xd52e3e0,4, 0xd52e3f4,15, 0xd530000,1, 0xd531000,1020, 0xd532000,194, 0xd533000,1020, 0xd534000,1020, 0xd535000,1020, 0xd536000,1020, 0xd537000,1020, 0xd538000,1020, 0xd539000,1020, 0xd53a000,1020, 0xd53b000,194, 0xd53c000,3, 0xd53c010,13, 0xd53c080,16, 0xd53c100,20, 0xd53c184,1, 0xd53c18c,4, 0xd53c200,3, 0xd53c210,13, 0xd53c280,16, 0xd53c300,20, 0xd53c384,1, 0xd53c38c,4, 0xd53c400,3, 0xd53c410,13, 0xd53c480,16, 0xd53c500,20, 0xd53c584,1, 0xd53c58c,4, 0xd53c600,3, 0xd53c610,13, 0xd53c680,16, 0xd53c700,20, 0xd53c784,1, 0xd53c78c,4, 0xd53c800,3, 0xd53c810,13, 0xd53c880,16, 0xd53c900,20, 0xd53c984,1, 0xd53c98c,4, 0xd53ca00,3, 0xd53ca10,13, 0xd53ca80,16, 0xd53cb00,20, 0xd53cb84,1, 0xd53cb8c,4, 0xd53cc00,3, 0xd53cc10,13, 0xd53cc80,16, 0xd53cd00,20, 0xd53cd84,1, 0xd53cd8c,4, 0xd53ce00,3, 0xd53ce10,13, 0xd53ce80,16, 0xd53cf00,20, 0xd53cf84,1, 0xd53cf8c,4, 0xd53d000,3, 0xd53d010,13, 0xd53d080,16, 0xd53d100,20, 0xd53d184,1, 0xd53d18c,4, 0xd53d200,18, 0xd53d250,2, 0xd53d260,4, 0xd53e000,1, 0xd53e014,1, 0xd53e01c,19, 0xd53e080,1, 0xd53e094,1, 0xd53e09c,19, 0xd53e100,8, 0xd53e200,13, 0xd53e240,9, 0xd53e280,12, 0xd53e2c0,2, 0xd53e2e0,12, 0xd540000,3, 0xd540080,20, 0xd540100,10, 0xd540140,1, 0xd540154,1, 0xd54015c,2, 0xd540200,15, 0xd540240,4, 0xd540260,17, 0xd5402c0,6, 0xd5402e0,2, 0xd5402ec,3, 0xd540300,8, 0xd540324,1, 0xd540400,4, 0xd540440,20, 0xd5404c0,9, 0xd540500,33, 0xd540600,11, 0xd540640,11, 0xd540680,1, 0xd542000,1, 0xd542200,4, 0xd542300,53, 0xd542400,4, 0xd542500,40, 0xd542600,15, 0xd542640,4, 0xd542660,17, 0xd5426c0,6, 0xd5426e0,2, 0xd5426ec,3, 0xd542700,8, 0xd542724,1, 0xd542800,20, 0xd542c00,53, 0xd542d00,53, 0xd542e00,1, 0xd543000,40, 0xd543100,40, 0xd543200,1, 0xd543400,1, 0xd543804,1, 0xd543844,39, 0xd543900,3, 0xd543a00,3, 0xd543a44,1, 0xd543a50,4, 0xd543a80,1, 0xd544000,2, 0xd544200,27, 0xd544280,4, 0xd5442c0,25, 0xd544340,6, 0xd544360,2, 0xd54436c,3, 0xd544380,8, 0xd5443a4,1, 0xd544400,12, 0xd544440,1, 0xd548000,3, 0xd548080,20, 0xd548100,10, 0xd548140,1, 0xd548154,1, 0xd54815c,2, 0xd548200,15, 0xd548240,4, 0xd548260,17, 0xd5482c0,6, 0xd5482e0,2, 0xd5482ec,3, 0xd548300,8, 0xd548324,1, 0xd548400,4, 0xd548440,20, 0xd5484c0,9, 0xd548500,33, 0xd548600,11, 0xd548640,11, 0xd548680,1, 0xd54a000,1, 0xd54a200,4, 0xd54a300,53, 0xd54a400,4, 0xd54a500,40, 0xd54a600,15, 0xd54a640,4, 0xd54a660,17, 0xd54a6c0,6, 0xd54a6e0,2, 0xd54a6ec,3, 0xd54a700,8, 0xd54a724,1, 0xd54a800,20, 0xd54ac00,53, 0xd54ad00,53, 0xd54ae00,1, 0xd54b000,40, 0xd54b100,40, 0xd54b200,1, 0xd54b400,1, 0xd54b804,1, 0xd54b844,39, 0xd54b900,3, 0xd54ba00,3, 0xd54ba44,1, 0xd54ba50,4, 0xd54ba80,1, 0xd54c000,2, 0xd54c200,27, 0xd54c280,4, 0xd54c2c0,25, 0xd54c340,6, 0xd54c360,2, 0xd54c36c,3, 0xd54c380,8, 0xd54c3a4,1, 0xd54c400,12, 0xd54c440,1, 0xd550000,4, 0xd550020,3, 0xd550030,2, 0xd550200,1, 0xd550224,10, 0xd550250,5, 0xd550280,1, 0xd550288,24, 0xd550300,3, 0xd550404,1, 0xd550414,5, 0xd550500,36, 0xd550600,3, 0xd550800,2, 0xd551000,1, 0xd551008,21, 0xd551080,1, 0xd551088,21, 0xd551100,1, 0xd551108,21, 0xd551180,1, 0xd551188,21, 0xd551200,1, 0xd551208,21, 0xd551280,1, 0xd551288,21, 0xd551300,1, 0xd551308,21, 0xd551380,1, 0xd551388,21, 0xd551400,21, 0xd551800,142, 0xd551c00,1, 0xd552000,4, 0xd552100,39, 0xd552200,3, 0xd552214,3, 0xd554004,1, 0xd554020,16, 0xd554080,2, 0xd554094,1, 0xd55409c,2, 0xd5540c0,6, 0xd554100,8, 0xd558004,17, 0xd558054,1, 0xd55805c,2, 0xd558080,1, 0xd5580a0,2, 0xd5580b4,4, 0xd558100,2, 0xd558200,8, 0xd558400,1, 0xd558600,27, 0xd558680,4, 0xd5586c0,25, 0xd558740,6, 0xd558760,2, 0xd55876c,3, 0xd558780,8, 0xd5587a4,3, 0xd558800,44, 0xd558900,1, 0xd560000,1, 0xd560200,27, 0xd560280,4, 0xd5602c0,25, 0xd560340,6, 0xd560360,2, 0xd56036c,3, 0xd560380,8, 0xd5603a4,1, 0xd560400,20, 0xd560480,3, 0xd560490,9, 0xd580000,198, 0xd580400,2, 0xd580440,9, 0xd580480,7, 0xd580800,198, 0xd580c00,2, 0xd580c40,9, 0xd580c80,7, 0xd581000,198, 0xd581400,198, 0xd581804,6, 0xd581824,6, 0xd581880,2, 0xd581904,1, 0xd581918,28, 0xd5819a0,6, 0xd5819c0,6, 0xd581c00,2, 0xd581d00,2, 0xd581e04,1, 0xd581e74,43, 0xd582000,2, 0xd582100,2, 0xd582204,1, 0xd582274,43, 0xd582400,3, 0xd582600,27, 0xd582680,4, 0xd5826c0,25, 0xd582740,6, 0xd582760,4, 0xd582774,11, 0xd5827a4,4, 0xd582800,4, 0xd582900,34, 0xd582a00,4, 0xd582b00,34, 0xd582c00,3, 0xd582c10,12, 0xd582e00,56, 0xd582ee4,4, 0xd582f00,4, 0xd583000,1, 0xd588000,4, 0xd588100,42, 0xd588200,1, 0xd588210,3, 0xd588220,3, 0xd588230,3, 0xd588240,1, 0xd588248,3, 0xd588400,4, 0xd588500,58, 0xd588600,1, 0xd588610,3, 0xd588620,3, 0xd588630,3, 0xd588640,1, 0xd588648,3, 0xd588800,4, 0xd588900,36, 0xd588a00,1, 0xd588c00,4, 0xd588c80,27, 0xd588d00,1, 0xd588d10,3, 0xd588d20,3, 0xd588d30,3, 0xd588d40,1, 0xd588d48,3, 0xd588e00,4, 0xd588e80,31, 0xd588f00,1, 0xd588f10,3, 0xd588f20,3, 0xd588f30,3, 0xd588f40,1, 0xd588f48,3, 0xd589000,4, 0xd589040,13, 0xd589080,1, 0xd589200,15, 0xd589240,4, 0xd589260,17, 0xd5892c0,6, 0xd5892e0,2, 0xd5892ec,3, 0xd589300,8, 0xd589324,8, 0xd589400,68, 0xd589600,60, 0xd589700,4, 0xd589720,5, 0xd589740,1, 0xd589780,2, 0xd58978c,2, 0xd5897a0,1, 0xd5897c0,12, 0xd589800,7, 0xd589820,5, 0xd589900,49, 0xd589a00,1, 0xd589a08,23, 0xd589a84,1, 0xd589a8c,1, 0xd589a94,1, 0xd589a9c,2, 0xd589ac0,1, 0xd589c00,10, 0xd589c40,1, 0xd589c50,3, 0xd589c80,10, 0xd589cc0,12, 0xd589d00,3, 0xd589e00,1, 0xd58a000,4, 0xd58a100,42, 0xd58a200,1, 0xd58a210,3, 0xd58a220,3, 0xd58a230,3, 0xd58a240,1, 0xd58a248,3, 0xd58a400,4, 0xd58a500,58, 0xd58a600,1, 0xd58a610,3, 0xd58a620,3, 0xd58a630,3, 0xd58a640,1, 0xd58a648,3, 0xd58a800,4, 0xd58a900,36, 0xd58aa00,1, 0xd58ac00,4, 0xd58ac80,27, 0xd58ad00,1, 0xd58ad10,3, 0xd58ad20,3, 0xd58ad30,3, 0xd58ad40,1, 0xd58ad48,3, 0xd58ae00,4, 0xd58ae80,31, 0xd58af00,1, 0xd58af10,3, 0xd58af20,3, 0xd58af30,3, 0xd58af40,1, 0xd58af48,3, 0xd58b000,4, 0xd58b040,13, 0xd58b080,1, 0xd58b200,15, 0xd58b240,4, 0xd58b260,17, 0xd58b2c0,6, 0xd58b2e0,2, 0xd58b2ec,3, 0xd58b300,8, 0xd58b324,8, 0xd58b400,68, 0xd58b600,60, 0xd58b700,4, 0xd58b720,5, 0xd58b740,1, 0xd58b780,2, 0xd58b78c,2, 0xd58b7a0,1, 0xd58b7c0,12, 0xd58b800,7, 0xd58b820,5, 0xd58b900,49, 0xd58ba00,1, 0xd58ba08,23, 0xd58ba84,1, 0xd58ba8c,1, 0xd58ba94,1, 0xd58ba9c,2, 0xd58bac0,1, 0xd58bc00,10, 0xd58bc40,1, 0xd58bc50,3, 0xd58bc80,10, 0xd58bcc0,12, 0xd58bd00,3, 0xd58be00,1, 0xd58c000,20, 0xd58c080,3, 0xd58c090,1, 0xd58c098,4, 0xd590000,49, 0xd590100,12, 0xd590140,4, 0xd590184,1, 0xd590198,2, 0xd5901a4,1, 0xd5901b8,7, 0xd5901e0,4, 0xd590200,20, 0xd590280,3, 0xd590290,9, 0xd5902c0,6, 0xd5902e0,1, 0xd5902e8,7, 0xd590400,49, 0xd590500,12, 0xd590540,4, 0xd590584,1, 0xd590598,2, 0xd5905a4,1, 0xd5905b8,7, 0xd5905e0,4, 0xd590600,20, 0xd590680,3, 0xd590690,9, 0xd5906c0,6, 0xd5906e0,1, 0xd5906e8,7, 0xd590800,49, 0xd590900,12, 0xd590940,4, 0xd590984,1, 0xd590998,2, 0xd5909a4,1, 0xd5909b8,7, 0xd5909e0,4, 0xd590a00,20, 0xd590a80,3, 0xd590a90,9, 0xd590ac0,6, 0xd590ae0,1, 0xd590ae8,7, 0xd590c00,49, 0xd590d00,12, 0xd590d40,4, 0xd590d84,1, 0xd590d98,2, 0xd590da4,1, 0xd590db8,7, 0xd590de0,4, 0xd590e00,20, 0xd590e80,3, 0xd590e90,9, 0xd590ec0,6, 0xd590ee0,1, 0xd590ee8,7, 0xd591000,49, 0xd591100,12, 0xd591140,4, 0xd591184,1, 0xd591198,2, 0xd5911a4,1, 0xd5911b8,7, 0xd5911e0,4, 0xd591200,20, 0xd591280,3, 0xd591290,9, 0xd5912c0,6, 0xd5912e0,1, 0xd5912e8,7, 0xd591400,49, 0xd591500,12, 0xd591540,4, 0xd591584,1, 0xd591598,2, 0xd5915a4,1, 0xd5915b8,7, 0xd5915e0,4, 0xd591600,20, 0xd591680,3, 0xd591690,9, 0xd5916c0,6, 0xd5916e0,1, 0xd5916e8,7, 0xd591800,49, 0xd591900,12, 0xd591940,4, 0xd591984,1, 0xd591998,2, 0xd5919a4,1, 0xd5919b8,7, 0xd5919e0,4, 0xd591a00,20, 0xd591a80,3, 0xd591a90,9, 0xd591ac0,6, 0xd591ae0,1, 0xd591ae8,7, 0xd592000,20, 0xd592080,10, 0xd592100,20, 0xd592180,10, 0xd592200,12, 0xd592400,20, 0xd592480,10, 0xd592500,20, 0xd592580,10, 0xd592600,12, 0xd592800,3, 0xd592840,12, 0xd592880,12, 0xd5928c0,12, 0xd592900,12, 0xd592940,12, 0xd592980,12, 0xd5929c0,12, 0xd592a00,12, 0xd592c00,12, 0xd592c40,7, 0xd592c60,10, 0xd593004,1, 0xd593044,43, 0xd593100,7, 0xd593120,7, 0xd593140,2, 0xd59314c,2, 0xd593160,2, 0xd59316c,2, 0xd593180,18, 0xd593200,2, 0xd593220,10, 0xd593260,20, 0xd5932c0,9, 0xd593300,15, 0xd593340,9, 0xd593380,6, 0xd5933a0,4, 0xd593400,5, 0xd594000,53, 0xd594100,3, 0xd594110,15, 0xd594200,53, 0xd594300,3, 0xd594310,15, 0xd594400,5, 0xd594420,5, 0xd594440,18, 0xd594800,3, 0xd594810,2, 0xd594820,3, 0xd594830,2, 0xd594840,1, 0xd595000,7, 0xd595020,7, 0xd595080,19, 0xd595100,19, 0xd595180,25, 0xd595200,20, 0xd595280,20, 0xd595300,8, 0xd595340,4, 0xd595380,15, 0xd5953c0,15, 0xd595400,9, 0xd595430,5, 0xd596000,6, 0xd596020,1, 0xd596028,2, 0xd596040,11, 0xd596070,2, 0xd598000,82, 0xd598200,2, 0xd598240,9, 0xd598280,7, 0xd598400,82, 0xd598604,6, 0xd598700,15, 0xd598740,9, 0xd598780,6, 0xd5987a0,6, 0xd598800,2, 0xd598810,3, 0xd598880,24, 0xd5988e4,1, 0xd5988f0,12, 0xd5a0000,22, 0xd5a0080,22, 0xd5a0100,5, 0xd5a0120,5, 0xd5a0140,3, 0xd5a0160,16, 0xd5a01c0,7, 0xd5a01e0,2, 0xd5a0200,7, 0xd5a0220,2, 0xd5a0400,15, 0xd5a0440,3, 0xd5a0450,3, 0xd5a0460,24, 0xd5a0500,15, 0xd5a0540,3, 0xd5a0550,3, 0xd5a0560,24, 0xd5a0600,15, 0xd5a0640,3, 0xd5a0650,3, 0xd5a0660,24, 0xd5a0700,15, 0xd5a0740,3, 0xd5a0750,3, 0xd5a0760,24, 0xd5a0800,4, 0xd5a0820,16, 0xd5a0880,10, 0xd5a08c0,10, 0xd5a0900,6, 0xd5a0920,6, 0xd5a0940,4, 0xd5a0980,13, 0xd5a09c0,13, 0xd5a0a00,9, 0xd5a1000,86, 0xd5a1200,2, 0xd5a1240,9, 0xd5a1280,7, 0xd5a1400,86, 0xd5a1604,6, 0xd5a1800,86, 0xd5a1a00,2, 0xd5a1a40,9, 0xd5a1a80,7, 0xd5a1c00,86, 0xd5a1e04,6, 0xd5a2000,15, 0xd5a2040,4, 0xd5a2060,17, 0xd5a20c0,6, 0xd5a20e0,4, 0xd5a20f4,11, 0xd5a2128,38, 0xd5a21c4,2, 0xd5a21d0,4, 0xd5a2200,1, 0xd5a4000,22, 0xd5a4080,22, 0xd5a4100,5, 0xd5a4120,5, 0xd5a4140,3, 0xd5a4160,16, 0xd5a41c0,7, 0xd5a41e0,2, 0xd5a4200,7, 0xd5a4220,2, 0xd5a4400,15, 0xd5a4440,3, 0xd5a4450,3, 0xd5a4460,24, 0xd5a4500,15, 0xd5a4540,3, 0xd5a4550,3, 0xd5a4560,24, 0xd5a4600,15, 0xd5a4640,3, 0xd5a4650,3, 0xd5a4660,24, 0xd5a4700,15, 0xd5a4740,3, 0xd5a4750,3, 0xd5a4760,24, 0xd5a4800,4, 0xd5a4820,16, 0xd5a4880,10, 0xd5a48c0,10, 0xd5a4900,6, 0xd5a4920,6, 0xd5a4940,4, 0xd5a4980,13, 0xd5a49c0,13, 0xd5a4a00,9, 0xd5a5000,86, 0xd5a5200,2, 0xd5a5240,9, 0xd5a5280,7, 0xd5a5400,86, 0xd5a5604,6, 0xd5a5800,86, 0xd5a5a00,2, 0xd5a5a40,9, 0xd5a5a80,7, 0xd5a5c00,86, 0xd5a5e04,6, 0xd5a6000,15, 0xd5a6040,4, 0xd5a6060,17, 0xd5a60c0,6, 0xd5a60e0,4, 0xd5a60f4,11, 0xd5a6128,38, 0xd5a61c4,2, 0xd5a61d0,4, 0xd5a6200,1, 0xd5a8000,9, 0xd5a8040,9, 0xd5a8080,5, 0xd5a8100,21, 0xd5a8160,5, 0xd5a8180,45, 0xd5a8240,13, 0xd5a8280,9, 0xd5a8400,9, 0xd5a8440,9, 0xd5a8480,5, 0xd5a8500,21, 0xd5a8560,5, 0xd5a8580,45, 0xd5a8640,13, 0xd5a8680,9, 0xd5a8800,12, 0xd5a8900,15, 0xd5a8940,4, 0xd5a8960,17, 0xd5a89c0,6, 0xd5a89e0,4, 0xd5a89f4,29, 0xd5ac000,30, 0xd5ac080,3, 0xd5ac090,19, 0xd5ac100,30, 0xd5ac180,3, 0xd5ac190,19, 0xd5ac200,30, 0xd5ac280,3, 0xd5ac290,19, 0xd5ac300,30, 0xd5ac380,3, 0xd5ac390,19, 0xd5ac400,30, 0xd5ac480,3, 0xd5ac490,19, 0xd5ac500,30, 0xd5ac580,3, 0xd5ac590,19, 0xd5ac600,30, 0xd5ac680,3, 0xd5ac690,19, 0xd5ac700,30, 0xd5ac780,3, 0xd5ac790,19, 0xd5ac800,12, 0xd5ac844,1, 0xd5ac854,8, 0xd5ac880,7, 0xd5ac8a0,2, 0xd5ac8ac,2, 0xd5ac8c0,26, 0xd5ac980,4, 0xd5ac9a0,5, 0xd5ac9c0,1, 0xd5ad000,3, 0xd5ad010,3, 0xd5ad020,3, 0xd5ad030,3, 0xd5ad040,3, 0xd5ad050,3, 0xd5ad060,3, 0xd5ad070,3, 0xd5ad080,6, 0xd5ad0a0,6, 0xd5ad0c0,6, 0xd5ad0e0,6, 0xd5ad100,6, 0xd5ad120,6, 0xd5ad140,6, 0xd5ad160,6, 0xd5ad200,68, 0xd5ad400,1, 0xd5ad804,1, 0xd5ad844,54, 0xd5ada00,12, 0xd5ada40,12, 0xd5ada80,12, 0xd5adac0,12, 0xd5adb00,12, 0xd5adb40,12, 0xd5adb80,12, 0xd5adbc0,12, 0xd5adc00,28, 0xd5adc80,10, 0xd5ae000,3, 0xd5ae020,6, 0xd5ae040,6, 0xd5ae060,15, 0xd5ae100,26, 0xd5ae180,15, 0xd5ae200,15, 0xd5ae240,4, 0xd5ae260,17, 0xd5ae2c0,6, 0xd5ae2e0,4, 0xd5ae2f4,18, 0xd5ae340,4, 0xd5ae360,17, 0xd5ae3c0,6, 0xd5ae3e0,4, 0xd5ae3f4,15, 0xd5b0000,1, 0xd5b1000,1020, 0xd5b2000,194, 0xd5b3000,1020, 0xd5b4000,1020, 0xd5b5000,1020, 0xd5b6000,1020, 0xd5b7000,1020, 0xd5b8000,1020, 0xd5b9000,1020, 0xd5ba000,1020, 0xd5bb000,194, 0xd5bc000,3, 0xd5bc010,13, 0xd5bc080,16, 0xd5bc100,20, 0xd5bc184,1, 0xd5bc18c,4, 0xd5bc200,3, 0xd5bc210,13, 0xd5bc280,16, 0xd5bc300,20, 0xd5bc384,1, 0xd5bc38c,4, 0xd5bc400,3, 0xd5bc410,13, 0xd5bc480,16, 0xd5bc500,20, 0xd5bc584,1, 0xd5bc58c,4, 0xd5bc600,3, 0xd5bc610,13, 0xd5bc680,16, 0xd5bc700,20, 0xd5bc784,1, 0xd5bc78c,4, 0xd5bc800,3, 0xd5bc810,13, 0xd5bc880,16, 0xd5bc900,20, 0xd5bc984,1, 0xd5bc98c,4, 0xd5bca00,3, 0xd5bca10,13, 0xd5bca80,16, 0xd5bcb00,20, 0xd5bcb84,1, 0xd5bcb8c,4, 0xd5bcc00,3, 0xd5bcc10,13, 0xd5bcc80,16, 0xd5bcd00,20, 0xd5bcd84,1, 0xd5bcd8c,4, 0xd5bce00,3, 0xd5bce10,13, 0xd5bce80,16, 0xd5bcf00,20, 0xd5bcf84,1, 0xd5bcf8c,4, 0xd5bd000,3, 0xd5bd010,13, 0xd5bd080,16, 0xd5bd100,20, 0xd5bd184,1, 0xd5bd18c,4, 0xd5bd200,18, 0xd5bd250,2, 0xd5bd260,4, 0xd5be000,1, 0xd5be014,1, 0xd5be01c,19, 0xd5be080,1, 0xd5be094,1, 0xd5be09c,19, 0xd5be100,8, 0xd5be200,13, 0xd5be240,9, 0xd5be280,12, 0xd5be2c0,2, 0xd5be2e0,12, 0xd5c0000,3, 0xd5c0080,20, 0xd5c0100,10, 0xd5c0140,1, 0xd5c0154,1, 0xd5c015c,2, 0xd5c0200,15, 0xd5c0240,4, 0xd5c0260,17, 0xd5c02c0,6, 0xd5c02e0,2, 0xd5c02ec,3, 0xd5c0300,8, 0xd5c0324,1, 0xd5c0400,4, 0xd5c0440,20, 0xd5c04c0,9, 0xd5c0500,33, 0xd5c0600,11, 0xd5c0640,11, 0xd5c0680,1, 0xd5c2000,1, 0xd5c2200,4, 0xd5c2300,53, 0xd5c2400,4, 0xd5c2500,40, 0xd5c2600,15, 0xd5c2640,4, 0xd5c2660,17, 0xd5c26c0,6, 0xd5c26e0,2, 0xd5c26ec,3, 0xd5c2700,8, 0xd5c2724,1, 0xd5c2800,20, 0xd5c2c00,53, 0xd5c2d00,53, 0xd5c2e00,1, 0xd5c3000,40, 0xd5c3100,40, 0xd5c3200,1, 0xd5c3400,1, 0xd5c3804,1, 0xd5c3844,39, 0xd5c3900,3, 0xd5c3a00,3, 0xd5c3a44,1, 0xd5c3a50,4, 0xd5c3a80,1, 0xd5c4000,2, 0xd5c4200,27, 0xd5c4280,4, 0xd5c42c0,25, 0xd5c4340,6, 0xd5c4360,2, 0xd5c436c,3, 0xd5c4380,8, 0xd5c43a4,1, 0xd5c4400,12, 0xd5c4440,1, 0xd5c8000,3, 0xd5c8080,20, 0xd5c8100,10, 0xd5c8140,1, 0xd5c8154,1, 0xd5c815c,2, 0xd5c8200,15, 0xd5c8240,4, 0xd5c8260,17, 0xd5c82c0,6, 0xd5c82e0,2, 0xd5c82ec,3, 0xd5c8300,8, 0xd5c8324,1, 0xd5c8400,4, 0xd5c8440,20, 0xd5c84c0,9, 0xd5c8500,33, 0xd5c8600,11, 0xd5c8640,11, 0xd5c8680,1, 0xd5ca000,1, 0xd5ca200,4, 0xd5ca300,53, 0xd5ca400,4, 0xd5ca500,40, 0xd5ca600,15, 0xd5ca640,4, 0xd5ca660,17, 0xd5ca6c0,6, 0xd5ca6e0,2, 0xd5ca6ec,3, 0xd5ca700,8, 0xd5ca724,1, 0xd5ca800,20, 0xd5cac00,53, 0xd5cad00,53, 0xd5cae00,1, 0xd5cb000,40, 0xd5cb100,40, 0xd5cb200,1, 0xd5cb400,1, 0xd5cb804,1, 0xd5cb844,39, 0xd5cb900,3, 0xd5cba00,3, 0xd5cba44,1, 0xd5cba50,4, 0xd5cba80,1, 0xd5cc000,2, 0xd5cc200,27, 0xd5cc280,4, 0xd5cc2c0,25, 0xd5cc340,6, 0xd5cc360,2, 0xd5cc36c,3, 0xd5cc380,8, 0xd5cc3a4,1, 0xd5cc400,12, 0xd5cc440,1, 0xd5d0000,4, 0xd5d0020,3, 0xd5d0030,2, 0xd5d0200,1, 0xd5d0224,10, 0xd5d0250,5, 0xd5d0280,1, 0xd5d0288,24, 0xd5d0300,3, 0xd5d0404,1, 0xd5d0414,5, 0xd5d0500,36, 0xd5d0600,3, 0xd5d0800,2, 0xd5d1000,1, 0xd5d1008,21, 0xd5d1080,1, 0xd5d1088,21, 0xd5d1100,1, 0xd5d1108,21, 0xd5d1180,1, 0xd5d1188,21, 0xd5d1200,1, 0xd5d1208,21, 0xd5d1280,1, 0xd5d1288,21, 0xd5d1300,1, 0xd5d1308,21, 0xd5d1380,1, 0xd5d1388,21, 0xd5d1400,21, 0xd5d1800,142, 0xd5d1c00,1, 0xd5d2000,4, 0xd5d2100,39, 0xd5d2200,3, 0xd5d2214,3, 0xd5d4004,1, 0xd5d4020,16, 0xd5d4080,2, 0xd5d4094,1, 0xd5d409c,2, 0xd5d40c0,6, 0xd5d4100,8, 0xd5d8004,17, 0xd5d8054,1, 0xd5d805c,2, 0xd5d8080,1, 0xd5d80a0,2, 0xd5d80b4,4, 0xd5d8100,2, 0xd5d8200,8, 0xd5d8400,1, 0xd5d8600,27, 0xd5d8680,4, 0xd5d86c0,25, 0xd5d8740,6, 0xd5d8760,2, 0xd5d876c,3, 0xd5d8780,8, 0xd5d87a4,3, 0xd5d8800,44, 0xd5d8900,1, 0xd5e0000,1, 0xd5e0200,27, 0xd5e0280,4, 0xd5e02c0,25, 0xd5e0340,6, 0xd5e0360,2, 0xd5e036c,3, 0xd5e0380,8, 0xd5e03a4,1, 0xd5e0400,20, 0xd5e0480,3, 0xd5e0490,9, 0xd802000,49, 0xd802100,12, 0xd802140,4, 0xd802184,1, 0xd802198,2, 0xd8021a4,1, 0xd8021b8,7, 0xd8021e0,4, 0xd802200,20, 0xd802280,3, 0xd802290,9, 0xd8022c0,6, 0xd8022e0,1, 0xd8022e8,7, 0xd802400,49, 0xd802500,12, 0xd802540,4, 0xd802584,1, 0xd802598,2, 0xd8025a4,1, 0xd8025b8,7, 0xd8025e0,4, 0xd802600,20, 0xd802680,3, 0xd802690,9, 0xd8026c0,6, 0xd8026e0,1, 0xd8026e8,7, 0xd802800,7, 0xd802820,3, 0xd802830,11, 0xd802860,14, 0xd802900,9, 0xd802a00,7, 0xd802a20,9, 0xd802a80,2, 0xd802c00,27, 0xd802c80,9, 0xd802cc0,6, 0xd802ce0,4, 0xd802d00,5, 0xd802d18,5, 0xd802d30,9, 0xd802d58,5, 0xd802d70,7, 0xd802e00,6, 0xd802e20,6, 0xd802e40,6, 0xd802e60,6, 0xd802e80,6, 0xd802ea0,6, 0xd802ec0,6, 0xd802ee0,6, 0xd802f00,6, 0xd802f20,6, 0xd802f40,6, 0xd802f60,6, 0xd802f80,6, 0xd802fa0,6, 0xd802fc0,6, 0xd802fe0,6, 0xd803000,28, 0xd803080,6, 0xd840000,3, 0xd84001c,6, 0xd840080,3, 0xd840090,1, 0xd8400d0,3, 0xd8400e4,25, 0xd84014c,21, 0xd8401a4,12, 0xd8401d8,72, 0xd840304,5, 0xd84031c,98, 0xd8404ac,4, 0xd8404c8,20, 0xd840520,56, 0xd840608,21, 0xd840664,3, 0xd840674,22, 0xd840710,1, 0xd840750,3, 0xd840764,25, 0xd8407cc,21, 0xd840824,12, 0xd840858,72, 0xd840984,5, 0xd84099c,98, 0xd840b2c,4, 0xd840b48,20, 0xd840ba0,56, 0xd840c88,21, 0xd840ce4,3, 0xd840cf4,22, 0xd840d90,1, 0xd840dd0,3, 0xd840de4,25, 0xd840e4c,21, 0xd840ea4,12, 0xd840ed8,72, 0xd841004,5, 0xd84101c,98, 0xd8411ac,4, 0xd8411c8,20, 0xd841220,56, 0xd841308,21, 0xd841364,3, 0xd841374,22, 0xd841410,1, 0xd841450,3, 0xd841464,25, 0xd8414cc,21, 0xd841524,12, 0xd841558,72, 0xd841684,5, 0xd84169c,98, 0xd84182c,4, 0xd841848,20, 0xd8418a0,56, 0xd841988,21, 0xd8419e4,3, 0xd8419f4,22, 0xd841a90,1, 0xd841ad0,3, 0xd841ae4,25, 0xd841b4c,21, 0xd841ba4,12, 0xd841bd8,72, 0xd841d04,5, 0xd841d1c,98, 0xd841eac,4, 0xd841ec8,20, 0xd841f20,56, 0xd842008,21, 0xd842064,3, 0xd842074,22, 0xd842110,1, 0xd842150,3, 0xd842164,25, 0xd8421cc,21, 0xd842224,12, 0xd842258,72, 0xd842384,5, 0xd84239c,98, 0xd84252c,4, 0xd842548,20, 0xd8425a0,56, 0xd842688,21, 0xd8426e4,3, 0xd8426f4,22, 0xd842790,1, 0xd8427d0,3, 0xd8427e4,25, 0xd84284c,21, 0xd8428a4,12, 0xd8428d8,72, 0xd842a04,5, 0xd842a1c,98, 0xd842bac,4, 0xd842bc8,20, 0xd842c20,56, 0xd842d08,21, 0xd842d64,3, 0xd842d74,22, 0xd842e10,1, 0xd842e50,3, 0xd842e64,25, 0xd842ecc,21, 0xd842f24,12, 0xd842f58,72, 0xd843084,5, 0xd84309c,98, 0xd84322c,4, 0xd843248,20, 0xd8432a0,56, 0xd843388,21, 0xd8433e4,3, 0xd8433f4,22, 0xd843490,1, 0xd8434d0,3, 0xd8434e4,25, 0xd84354c,21, 0xd8435a4,12, 0xd8435d8,72, 0xd843704,5, 0xd84371c,98, 0xd8438ac,4, 0xd8438c8,20, 0xd843920,56, 0xd843a08,21, 0xd843a64,3, 0xd843a74,22, 0xd843b10,1, 0xd843b50,3, 0xd843b64,25, 0xd843bcc,21, 0xd843c24,12, 0xd843c58,72, 0xd843d84,5, 0xd843d9c,98, 0xd843f2c,4, 0xd843f48,20, 0xd843fa0,56, 0xd844088,21, 0xd8440e4,3, 0xd8440f4,22, 0xd844190,1, 0xd8441d0,3, 0xd8441e4,25, 0xd84424c,21, 0xd8442a4,12, 0xd8442d8,72, 0xd844404,5, 0xd84441c,98, 0xd8445ac,4, 0xd8445c8,20, 0xd844620,56, 0xd844708,21, 0xd844764,3, 0xd844774,22, 0xd844810,1, 0xd844850,3, 0xd844864,25, 0xd8448cc,21, 0xd844924,12, 0xd844958,72, 0xd844a84,5, 0xd844a9c,98, 0xd844c2c,4, 0xd844c48,20, 0xd844ca0,56, 0xd844d88,21, 0xd844de4,3, 0xd844df4,22, 0xd844e90,1, 0xd844ed0,3, 0xd844ee4,25, 0xd844f4c,21, 0xd844fa4,12, 0xd844fd8,72, 0xd845104,5, 0xd84511c,98, 0xd8452ac,4, 0xd8452c8,20, 0xd845320,56, 0xd845408,21, 0xd845464,3, 0xd845474,22, 0xd845510,1, 0xd845550,3, 0xd845564,25, 0xd8455cc,21, 0xd845624,12, 0xd845658,72, 0xd845784,5, 0xd84579c,98, 0xd84592c,4, 0xd845948,20, 0xd8459a0,56, 0xd845a88,21, 0xd845ae4,3, 0xd845af4,22, 0xd845b90,1, 0xd845bd0,3, 0xd845be4,25, 0xd845c4c,21, 0xd845ca4,12, 0xd845cd8,72, 0xd845e04,5, 0xd845e1c,98, 0xd845fac,4, 0xd845fc8,20, 0xd846020,56, 0xd846108,21, 0xd846164,3, 0xd846174,22, 0xd846210,1, 0xd846250,3, 0xd846264,25, 0xd8462cc,21, 0xd846324,12, 0xd846358,72, 0xd846484,5, 0xd84649c,98, 0xd84662c,4, 0xd846648,20, 0xd8466a0,56, 0xd846788,21, 0xd8467e4,3, 0xd8467f4,22, 0xd846890,1, 0xd8468d0,3, 0xd8468e4,25, 0xd84694c,21, 0xd8469a4,12, 0xd8469d8,72, 0xd846b04,5, 0xd846b1c,98, 0xd846cac,4, 0xd846cc8,20, 0xd846d20,56, 0xd846e08,21, 0xd846e64,3, 0xd846e74,22, 0xd846f10,1, 0xd846f50,3, 0xd846f64,25, 0xd846fcc,21, 0xd847024,12, 0xd847058,72, 0xd847184,5, 0xd84719c,98, 0xd84732c,4, 0xd847348,20, 0xd8473a0,56, 0xd847488,21, 0xd8474e4,3, 0xd8474f4,22, 0xd847590,1, 0xd8475d0,3, 0xd8475e4,25, 0xd84764c,21, 0xd8476a4,12, 0xd8476d8,72, 0xd847804,5, 0xd84781c,98, 0xd8479ac,4, 0xd8479c8,20, 0xd847a20,56, 0xd847b08,21, 0xd847b64,3, 0xd847b74,22, 0xd847c10,1, 0xd847c50,3, 0xd847c64,25, 0xd847ccc,21, 0xd847d24,12, 0xd847d58,72, 0xd847e84,5, 0xd847e9c,98, 0xd84802c,4, 0xd848048,20, 0xd8480a0,56, 0xd848188,21, 0xd8481e4,3, 0xd8481f4,22, 0xd848290,1, 0xd8482d0,3, 0xd8482e4,25, 0xd84834c,21, 0xd8483a4,12, 0xd8483d8,72, 0xd848504,5, 0xd84851c,98, 0xd8486ac,4, 0xd8486c8,20, 0xd848720,56, 0xd848808,21, 0xd848864,3, 0xd848874,22, 0xd848910,1, 0xd848950,3, 0xd848964,25, 0xd8489cc,21, 0xd848a24,12, 0xd848a58,72, 0xd848b84,5, 0xd848b9c,98, 0xd848d2c,4, 0xd848d48,20, 0xd848da0,56, 0xd848e88,21, 0xd848ee4,3, 0xd848ef4,22, 0xd848f90,1, 0xd848fd0,3, 0xd848fe4,25, 0xd84904c,21, 0xd8490a4,12, 0xd8490d8,72, 0xd849204,5, 0xd84921c,98, 0xd8493ac,4, 0xd8493c8,20, 0xd849420,56, 0xd849508,21, 0xd849564,3, 0xd849574,22, 0xd849610,1, 0xd849650,3, 0xd849664,25, 0xd8496cc,21, 0xd849724,12, 0xd849758,72, 0xd849884,5, 0xd84989c,98, 0xd849a2c,4, 0xd849a48,20, 0xd849aa0,56, 0xd849b88,21, 0xd849be4,3, 0xd849bf4,22, 0xd849c90,1, 0xd849cd0,3, 0xd849ce4,25, 0xd849d4c,21, 0xd849da4,12, 0xd849dd8,72, 0xd849f04,5, 0xd849f1c,98, 0xd84a0ac,4, 0xd84a0c8,20, 0xd84a120,56, 0xd84a208,21, 0xd84a264,3, 0xd84a274,22, 0xd84a310,1, 0xd84a350,3, 0xd84a364,25, 0xd84a3cc,21, 0xd84a424,12, 0xd84a458,72, 0xd84a584,5, 0xd84a59c,98, 0xd84a72c,4, 0xd84a748,20, 0xd84a7a0,56, 0xd84a888,21, 0xd84a8e4,3, 0xd84a8f4,22, 0xd84a990,1, 0xd84a9d0,3, 0xd84a9e4,25, 0xd84aa4c,21, 0xd84aaa4,12, 0xd84aad8,72, 0xd84ac04,5, 0xd84ac1c,98, 0xd84adac,4, 0xd84adc8,20, 0xd84ae20,56, 0xd84af08,21, 0xd84af64,3, 0xd84af74,22, 0xd84b010,1, 0xd84b050,3, 0xd84b064,25, 0xd84b0cc,21, 0xd84b124,12, 0xd84b158,72, 0xd84b284,5, 0xd84b29c,98, 0xd84b42c,4, 0xd84b448,20, 0xd84b4a0,56, 0xd84b588,21, 0xd84b5e4,3, 0xd84b5f4,22, 0xd84b690,1, 0xd84b6d0,3, 0xd84b6e4,25, 0xd84b74c,21, 0xd84b7a4,12, 0xd84b7d8,72, 0xd84b904,5, 0xd84b91c,98, 0xd84baac,4, 0xd84bac8,20, 0xd84bb20,56, 0xd84bc08,21, 0xd84bc64,3, 0xd84bc74,22, 0xd84bd10,1, 0xd84bd50,3, 0xd84bd64,25, 0xd84bdcc,21, 0xd84be24,12, 0xd84be58,72, 0xd84bf84,5, 0xd84bf9c,98, 0xd84c12c,4, 0xd84c148,20, 0xd84c1a0,56, 0xd84c288,21, 0xd84c2e4,3, 0xd84c2f4,22, 0xd84c390,1, 0xd84c3d0,3, 0xd84c3e4,25, 0xd84c44c,21, 0xd84c4a4,12, 0xd84c4d8,72, 0xd84c604,5, 0xd84c61c,98, 0xd84c7ac,4, 0xd84c7c8,20, 0xd84c820,56, 0xd84c908,21, 0xd84c964,3, 0xd84c974,22, 0xd84ca10,1, 0xd84ca50,3, 0xd84ca64,25, 0xd84cacc,21, 0xd84cb24,12, 0xd84cb58,72, 0xd84cc84,5, 0xd84cc9c,98, 0xd84ce2c,4, 0xd84ce48,20, 0xd84cea0,56, 0xd84cf88,21, 0xd84cfe4,3, 0xd84cff4,22, 0xd84d090,1, 0xd84d0d0,3, 0xd84d0e4,25, 0xd84d14c,21, 0xd84d1a4,12, 0xd84d1d8,72, 0xd84d304,5, 0xd84d31c,98, 0xd84d4ac,4, 0xd84d4c8,20, 0xd84d520,56, 0xd84d608,21, 0xd84d664,3, 0xd84d674,22, 0xd84d710,1, 0xd84d750,3, 0xd84d764,25, 0xd84d7cc,21, 0xd84d824,12, 0xd84d858,72, 0xd84d984,5, 0xd84d99c,98, 0xd84db2c,4, 0xd84db48,20, 0xd84dba0,56, 0xd84dc88,21, 0xd84dce4,3, 0xd84dcf4,22, 0xd84dd90,1, 0xd84ddd0,3, 0xd84dde4,25, 0xd84de4c,21, 0xd84dea4,12, 0xd84ded8,72, 0xd84e004,5, 0xd84e01c,98, 0xd84e1ac,4, 0xd84e1c8,20, 0xd84e220,56, 0xd84e308,21, 0xd84e364,3, 0xd84e374,22, 0xd84e410,2, 0xd84e454,72, 0xd84e760,3, 0xd84e7ac,42, 0xd84e85c,31, 0xd84e990,54, 0xd84ea70,58, 0xd84eb60,58, 0xd84ec50,58, 0xd84ed40,58, 0xd84ee30,58, 0xd84ef20,58, 0xd84f010,58, 0xd84f100,58, 0xd84f1f0,58, 0xd84f2e0,58, 0xd84f3d0,58, 0xd84f4c0,58, 0xd84f5b0,58, 0xd84f6a0,58, 0xd84f790,58, 0xd84f880,58, 0xd84f970,58, 0xd84fa60,58, 0xd84fb50,58, 0xd84fc40,58, 0xd84fd30,58, 0xd84fe20,58, 0xd84ff10,58, 0xd850000,58, 0xd8500f0,58, 0xd8501e0,58, 0xd8502d0,58, 0xd8503c0,58, 0xd8504b0,58, 0xd8505a0,58, 0xd850690,58, 0xd850780,101, 0xd850990,49, 0xd850a90,18, 0xd850ae0,11, 0xd850b10,4, 0xd850b34,45, 0xd850c38,9, 0xd850c68,4, 0xd850c80,2, 0xd850cb8,14, 0xd850cf4,12, 0xd850e38,3, 0xd850e48,2, 0xd850e54,68, 0xd850f68,2, 0xd850f74,68, 0xd851088,1, 0xd851090,2, 0xd85109c,68, 0xd8511b0,2, 0xd8511bc,68, 0xd8512d0,1, 0xd8512d8,4, 0xd8512f0,3, 0xd851304,4, 0xd851318,7, 0xd851368,8, 0xd8513bc,1, 0xd8513c8,4, 0xd8513e0,3, 0xd8513f4,4, 0xd851408,7, 0xd851458,8, 0xd8514ac,1, 0xd8514b8,4, 0xd8514d0,3, 0xd8514e4,4, 0xd8514f8,7, 0xd851548,8, 0xd85159c,1, 0xd8515a8,4, 0xd8515c0,3, 0xd8515d4,4, 0xd8515e8,7, 0xd851638,8, 0xd85168c,1, 0xd851698,4, 0xd8516b0,3, 0xd8516c4,4, 0xd8516d8,7, 0xd851728,8, 0xd85177c,1, 0xd851788,4, 0xd8517a0,3, 0xd8517b4,4, 0xd8517c8,7, 0xd851818,8, 0xd85186c,1, 0xd851878,4, 0xd851890,3, 0xd8518a4,4, 0xd8518b8,7, 0xd851908,8, 0xd85195c,1, 0xd851968,4, 0xd851980,3, 0xd851994,4, 0xd8519a8,7, 0xd8519f8,8, 0xd851a4c,1, 0xd851a58,4, 0xd851a70,3, 0xd851a84,4, 0xd851a98,7, 0xd851ae8,8, 0xd851b3c,1, 0xd851b48,4, 0xd851b60,3, 0xd851b74,4, 0xd851b88,7, 0xd851bd8,8, 0xd851c2c,1, 0xd851c38,4, 0xd851c50,3, 0xd851c64,4, 0xd851c78,7, 0xd851cc8,8, 0xd851d1c,1, 0xd851d28,4, 0xd851d40,3, 0xd851d54,4, 0xd851d68,7, 0xd851db8,8, 0xd851e0c,1, 0xd851e18,4, 0xd851e30,3, 0xd851e44,4, 0xd851e58,7, 0xd851ea8,8, 0xd851efc,1, 0xd851f08,4, 0xd851f20,3, 0xd851f34,4, 0xd851f48,7, 0xd851f98,8, 0xd851fec,1, 0xd851ff8,4, 0xd852010,3, 0xd852024,4, 0xd852038,7, 0xd852088,8, 0xd8520dc,1, 0xd8520e8,4, 0xd852100,3, 0xd852114,4, 0xd852128,7, 0xd852178,8, 0xd8521cc,1, 0xd8521d8,4, 0xd8521f0,3, 0xd852204,4, 0xd852218,7, 0xd852268,8, 0xd8522bc,1, 0xd8522c8,64, 0xd852428,4, 0xd852678,27, 0xd8526ec,3, 0xd852778,1, 0xd8528c8,11, 0xd8528f8,17, 0xd852940,1, 0xd852948,1, 0xd852950,1, 0xd852978,36, 0xd852a0c,57, 0xd852af4,34, 0xd852b80,57, 0xd852c68,34, 0xd852cf4,57, 0xd852ddc,34, 0xd852e68,57, 0xd852f50,34, 0xd852fdc,57, 0xd8530c4,34, 0xd853150,57, 0xd853238,34, 0xd8532c4,57, 0xd8533ac,34, 0xd853438,57, 0xd853520,34, 0xd8535ac,57, 0xd853694,34, 0xd853720,57, 0xd853808,34, 0xd853894,57, 0xd85397c,34, 0xd853a08,57, 0xd853af0,34, 0xd853b7c,57, 0xd853c64,34, 0xd853cf0,57, 0xd853dd8,34, 0xd853e64,57, 0xd853f4c,34, 0xd853fd8,57, 0xd8540c0,34, 0xd85414c,57, 0xd854234,34, 0xd8542c0,57, 0xd8543a8,34, 0xd854434,57, 0xd85451c,34, 0xd8545a8,57, 0xd854690,34, 0xd85471c,57, 0xd854804,34, 0xd854890,57, 0xd854978,34, 0xd854a04,57, 0xd854aec,34, 0xd854b78,57, 0xd854c60,34, 0xd854cec,57, 0xd854dd4,34, 0xd854e60,57, 0xd854f48,34, 0xd854fd4,57, 0xd8550bc,34, 0xd855148,57, 0xd855230,34, 0xd8552bc,57, 0xd8553a4,34, 0xd855430,57, 0xd855518,34, 0xd8555a4,57, 0xd85568c,34, 0xd855718,57, 0xd855800,34, 0xd85588c,57, 0xd855974,34, 0xd855a00,57, 0xd855ae8,34, 0xd855b74,57, 0xd855d68,18, 0xd855ee8,2131, 0xd85830c,164, 0xd85865c,1, 0xd8591e8,1, 0xd8591f8,225, 0xd859588,7, 0xd8595a8,1, 0xd859670,1, 0xd8596a0,9, 0xd8596c8,17, 0xd859720,49, 0xd8597e8,5, 0xd859858,1, 0xd85a1e8,4, 0xd85a200,9, 0xd85a228,144, 0xd85a528,8, 0xd8a0000,3, 0xd8a0018,2, 0xd8a0024,14, 0xd8a0060,27, 0xd8a00d0,3, 0xd8a00e0,3, 0xd8a00f0,3, 0xd8a0100,14, 0xd8a0140,3, 0xd8a0150,1, 0xd8a015c,4, 0xd8a0170,1, 0xd8a0180,15, 0xd8a01c0,1, 0xd8a01c8,5, 0xd8a01e0,1, 0xd8a01f0,7, 0xd8a0218,2, 0xd8a0224,14, 0xd8a0260,27, 0xd8a02d0,3, 0xd8a02e0,3, 0xd8a02f0,3, 0xd8a0300,14, 0xd8a0340,3, 0xd8a0350,1, 0xd8a035c,4, 0xd8a0370,1, 0xd8a0380,15, 0xd8a03c0,1, 0xd8a03c8,5, 0xd8a03e0,1, 0xd8a03f0,7, 0xd8a0418,2, 0xd8a0424,14, 0xd8a0460,27, 0xd8a04d0,3, 0xd8a04e0,3, 0xd8a04f0,3, 0xd8a0500,14, 0xd8a0540,3, 0xd8a0550,1, 0xd8a055c,4, 0xd8a0570,1, 0xd8a0580,15, 0xd8a05c0,1, 0xd8a05c8,5, 0xd8a05e0,1, 0xd8a05f0,7, 0xd8a0618,2, 0xd8a0624,14, 0xd8a0660,27, 0xd8a06d0,3, 0xd8a06e0,3, 0xd8a06f0,3, 0xd8a0700,14, 0xd8a0740,3, 0xd8a0750,1, 0xd8a075c,4, 0xd8a0770,1, 0xd8a0780,15, 0xd8a07c0,1, 0xd8a07c8,5, 0xd8a07e0,1, 0xd8a07f0,7, 0xd8a0818,2, 0xd8a0824,14, 0xd8a0860,27, 0xd8a08d0,3, 0xd8a08e0,3, 0xd8a08f0,3, 0xd8a0900,14, 0xd8a0940,3, 0xd8a0950,1, 0xd8a095c,4, 0xd8a0970,1, 0xd8a0980,15, 0xd8a09c0,1, 0xd8a09c8,5, 0xd8a09e0,1, 0xd8a09f0,4, 0xd8a1844,1, 0xd8a1850,3, 0xd8a1860,3, 0xd8a1870,7, 0xd8a1894,5, 0xd8a18c0,1, 0xd8a18e0,7, 0xd8a1900,11, 0xd8a1930,3, 0xd8a1980,4, 0xd8a19c0,14, 0xd8a1c00,5, 0xd8a1c18,95, 0xd8a1da0,66, 0xd8a2000,16, 0xd8a2100,36, 0xd8a2200,44, 0xd8a2400,100, 0xd8a2600,45, 0xd8a2700,4, 0xd8a2780,20, 0xd8a2800,2, 0xd8a280c,68, 0xd8a2920,3, 0xd8a2c04,1, 0xd8a2c40,28, 0xd8a2cb4,9, 0xd8a2ce0,7, 0xd8a2d00,7, 0xd8a2d20,7, 0xd8a2d40,7, 0xd8a2d60,7, 0xd8a2d80,7, 0xd8a2da0,7, 0xd8a2dc0,7, 0xd8a2e00,9, 0xd8a2e3c,2, 0xd8a2e50,6, 0xd8a2e84,10, 0xd8a3004,1, 0xd8a31f8,130, 0xd8a3c00,1, 0xd8a3c20,10, 0xd8a3c60,8, 0xd8a3c84,5, 0xd8a3d00,32, 0xd8a3d84,1, 0xd8a3d94,6, 0xd8a3e40,71, 0xd8a4a04,3, 0xd8a4b00,33, 0xd8a4b90,3, 0xd8a4c00,12, 0xd8a4cc0,4, 0xd8a4d00,15, 0xd8a4e00,25, 0xd8a4e84,1, 0xd8a4ea0,13, 0xd8a5000,2, 0xd8a5400,4, 0xd8a5420,8, 0xd8a5444,1, 0xd8a544c,1, 0xd8a5454,1, 0xd8a545c,10, 0xd8a5800,3, 0xd8a5810,3, 0xd8a5820,3, 0xd8a5830,3, 0xd8a5840,3, 0xd8a5850,3, 0xd8a5860,3, 0xd8a5870,3, 0xd8a5880,3, 0xd8a5890,3, 0xd8a58a0,3, 0xd8a58b0,3, 0xd8a58c0,3, 0xd8a58d0,3, 0xd8a58e0,3, 0xd8a58f0,3, 0xd8a5900,3, 0xd8a5910,3, 0xd8a5920,3, 0xd8a5930,3, 0xd8a5940,3, 0xd8a5950,3, 0xd8a5960,3, 0xd8a5970,3, 0xd8a5980,3, 0xd8a5990,3, 0xd8a59a0,3, 0xd8a59b0,3, 0xd8a59c0,3, 0xd8a59d0,3, 0xd8a59e0,3, 0xd8a59f0,3, 0xd8a5a00,3, 0xd8a5a10,3, 0xd8a5a20,3, 0xd8a5a30,3, 0xd8a5a40,3, 0xd8a5a50,3, 0xd8a5a60,3, 0xd8a5a70,3, 0xd8a5a80,3, 0xd8a5a90,3, 0xd8a5aa0,3, 0xd8a5ab0,3, 0xd8a5ac0,3, 0xd8a5ad0,3, 0xd8a5ae0,3, 0xd8a5af0,3, 0xd8a5b00,3, 0xd8a5b10,3, 0xd8a5b20,3, 0xd8a5b30,3, 0xd8a5b40,3, 0xd8a5b50,3, 0xd8a5b60,3, 0xd8a5b70,3, 0xd8a5b80,3, 0xd8a5b90,3, 0xd8a5ba0,3, 0xd8a5bb0,3, 0xd8a5bc0,3, 0xd8a5bd0,3, 0xd8a5be0,3, 0xd8a5bf0,3, 0xd8a5c00,1, 0xd8a5c08,8, 0xd8a5c30,8, 0xd8a5c54,1, 0xd8a5c5c,2, 0xd8a5c68,2, 0xd8a6000,11, 0xd8a6030,1, 0xd8a6080,2, 0xd8a60c4,2, 0xd8a60d0,1, 0xd8a60d8,1, 0xd8a60e0,1, 0xd8a60f4,3, 0xd8a7000,128, 0xd8a7208,256, 0xd8a7610,145, 0xd8a8000,24, 0xd8a8078,1, 0xd8a8080,1, 0xd8f0000,1, 0xd8f000c,12, 0xd8f0040,3, 0xd8f0404,1, 0xd8f0410,6, 0xd8f0440,5, 0xd8f0460,7, 0xd8f0480,7, 0xd8f04a0,7, 0xd8f0520,4, 0xd8f0540,10, 0xd8f0580,10, 0xd8f05c0,3, 0xd8f0600,20, 0xd8f0680,3, 0xd8f0800,5, 0xd8f0a00,29, 0xd8f0a80,3, 0xd8f0c04,1, 0xd8f0d90,188, 0xd8f10a8,8, 0xd8f1100,3, 0xd8f1110,12, 0xd8f1400,1, 0xd8f1480,18, 0xd8f1500,1, 0xd8f1600,2, 0xd8f1610,3, 0xd8f1620,3, 0xd8f1630,3, 0xd8f1640,3, 0xd8f1650,3, 0xd8f1660,3, 0xd8f1670,3, 0xd8f1680,3, 0xd8f1690,3, 0xd8f16a0,3, 0xd8f16b0,3, 0xd8f16c0,3, 0xd8f16d0,3, 0xd8f16e0,3, 0xd8f16f0,3, 0xd8f1700,3, 0xd8f2000,96, 0xd8f2400,2, 0xd8f2410,3, 0xd8f2420,3, 0xd8f2430,3, 0xd8f2440,3, 0xd8f2450,3, 0xd8f2460,3, 0xd8f2470,3, 0xd8f2480,3, 0xd8f2490,3, 0xd8f24a0,3, 0xd8f24b0,3, 0xd8f24c0,3, 0xd8f24d0,3, 0xd8f24e0,3, 0xd8f24f0,3, 0xd8f2500,3, 0xd8f2600,7, 0xd8f2620,3, 0xd8f2630,1, 0xd8f2800,8, 0xd8f2900,2, 0xd8f2910,3, 0xd8f2920,3, 0xd8f2930,3, 0xd8f2940,3, 0xd8f2950,3, 0xd8f2960,3, 0xd8f2970,3, 0xd8f2980,3, 0xd8f2a00,3, 0xd8f3000,15, 0xd8f3040,3, 0xd8f3080,2, 0xd8f30c0,9, 0xd8f3100,1, 0xd8f3200,2, 0xd8f3210,3, 0xd8f3220,3, 0xd8f3230,3, 0xd8f3240,3, 0xd8f3250,3, 0xd8f3260,3, 0xd8f3270,3, 0xd8f3280,3, 0xd8f3300,2, 0xd8f3314,3, 0xd8f3324,3, 0xd8f3334,1, 0xd8f333c,1, 0xd8f3404,1, 0xd8f347c,33, 0xd8f3504,1, 0xd8f350c,1, 0xd8f3580,18, 0xd8f3600,5, 0xd8f3640,9, 0xd8f3680,9, 0xd8f36c0,27, 0xd8f3730,2, 0xd8f3740,9, 0xd8f3780,3, 0xd8f37a0,8, 0xd8f3800,6, 0xd8f3820,7, 0xd8f3840,6, 0xd8f3860,7, 0xd8f3880,3, 0xd8f3890,1, 0xd8f3900,2, 0xd8f4004,1, 0xd8f4080,34, 0xd8f4110,10, 0xd8f413c,3, 0xd8f4204,1, 0xd8f4280,36, 0xd8f4314,1, 0xd8f4400,20, 0xd8f4480,9, 0xd8f4804,1, 0xd8f4880,34, 0xd8f4910,10, 0xd8f493c,3, 0xd8f4a04,1, 0xd8f4a80,36, 0xd8f4b14,1, 0xd8f4c00,20, 0xd8f4c80,9, 0xd8f5004,1, 0xd8f5080,34, 0xd8f5110,10, 0xd8f513c,3, 0xd8f5204,1, 0xd8f5280,36, 0xd8f5314,1, 0xd8f5400,20, 0xd8f5480,9, 0xd8f5800,20, 0xd8f5884,1, 0xd8f588c,1, 0xd8f58c0,12, 0xd8f5900,3, 0xd8f5a00,20, 0xd8f5a84,1, 0xd8f5a8c,1, 0xd8f5ac0,12, 0xd8f5b00,3, 0xd8f5c00,20, 0xd8f5c84,1, 0xd8f5c8c,1, 0xd8f5cc0,12, 0xd8f5d00,3, 0xd8f5e00,7, 0xd8f5e80,20, 0xd8f5f00,12, 0xd8f5f40,11, 0xd8f6004,1, 0xd8f6014,19, 0xd8f6080,5, 0xd8f6100,3, 0xd8f6144,1, 0xd8f6150,4, 0xd8f6180,1, 0xd8f6200,1, 0xd8f6400,2, 0xd8f6410,3, 0xd8f6420,3, 0xd8f6430,3, 0xd8f6440,3, 0xd8f6450,3, 0xd8f6460,3, 0xd8f6470,3, 0xd8f6480,3, 0xd8f6490,3, 0xd8f64a0,3, 0xd8f64b0,3, 0xd8f64c0,3, 0xd8f64d0,3, 0xd8f64e0,3, 0xd8f64f0,3, 0xd8f6500,3, 0xd8f6604,1, 0xd8f6614,3, 0xd8f6640,11, 0xd8f6680,2, 0xd8f6690,3, 0xd8f66a0,3, 0xd8f66c0,9, 0xd8f6700,9, 0xd8f6740,6, 0xd8f6760,16, 0xd8f7000,2, 0xd8f7010,3, 0xd8f7020,3, 0xd8f7030,3, 0xd8f7040,3, 0xd8f7050,3, 0xd8f7060,3, 0xd8f7070,3, 0xd8f7080,3, 0xd8f7090,3, 0xd8f70a0,3, 0xd8f70b0,3, 0xd8f70c0,3, 0xd8f70d0,3, 0xd8f70e0,3, 0xd8f70f0,3, 0xd8f7100,3, 0xd8f7200,10, 0xd8f7404,1, 0xd8f7414,3, 0xd8f7800,153, 0xd900000,6, 0xd900020,3, 0xd900400,6, 0xd900424,1, 0xd900434,5, 0xd900600,128, 0xd900804,1, 0xd900828,86, 0xd900984,1, 0xd900c00,1, 0xd900c80,1, 0xd900c90,2, 0xd900d00,20, 0xd900d80,1, 0xd900da0,5, 0xd900e00,27, 0xd900f00,2, 0xd900f10,4, 0xd901000,7, 0xd980000,36, 0xd980800,10, 0xd980880,6, 0xd980900,2, 0xd980910,4, 0xd980a04,5, 0xd980a20,3, 0xd980a80,1, 0xd981000,36, 0xd981800,10, 0xd981880,6, 0xd9818a0,1, 0xd981900,2, 0xd981910,4, 0xd981a00,1, 0xd982000,36, 0xd982800,10, 0xd982880,6, 0xd9828a0,1, 0xd982900,2, 0xd982910,4, 0xd982a00,1, 0xd983000,36, 0xd983800,10, 0xd983880,6, 0xd9838a0,1, 0xd983900,2, 0xd983910,4, 0xd983a00,1, 0xd984000,36, 0xd984800,10, 0xd984880,6, 0xd9848a0,1, 0xd984900,2, 0xd984910,4, 0xd984a00,1, 0xd985000,36, 0xd985800,10, 0xd985880,6, 0xd9858a0,1, 0xd985900,2, 0xd985910,4, 0xd985a00,1, 0xd986000,36, 0xd986800,10, 0xd986880,6, 0xd9868a0,1, 0xd986900,2, 0xd986910,4, 0xd986a00,1, 0xd987000,36, 0xd987800,10, 0xd987880,6, 0xd9878a0,1, 0xd987900,2, 0xd987910,4, 0xd987a00,1, 0xd988000,36, 0xd988800,10, 0xd988880,6, 0xd9888a0,1, 0xd988900,2, 0xd988910,4, 0xd988a00,1, 0xd989000,36, 0xd989800,10, 0xd989880,6, 0xd9898a0,1, 0xd989900,2, 0xd989910,4, 0xd989a00,1, 0xd98a000,36, 0xd98a800,10, 0xd98a880,6, 0xd98a8a0,1, 0xd98a900,2, 0xd98a910,4, 0xd98aa00,1, 0xd98b000,36, 0xd98b800,10, 0xd98b880,6, 0xd98b8a0,1, 0xd98b900,2, 0xd98b910,4, 0xd98ba00,1, 0xd98c000,36, 0xd98c800,10, 0xd98c880,6, 0xd98c8a0,1, 0xd98c900,2, 0xd98c910,4, 0xd98ca00,1, 0xd98d000,36, 0xd98d800,10, 0xd98d880,6, 0xd98d8a0,1, 0xd98d900,2, 0xd98d910,4, 0xd98da00,1, 0xd98e000,36, 0xd98e800,10, 0xd98e880,6, 0xd98e8a0,1, 0xd98e900,2, 0xd98e910,4, 0xd98ea00,1, 0xd98f000,36, 0xd98f800,10, 0xd98f880,6, 0xd98f8a0,1, 0xd98f900,2, 0xd98f910,4, 0xd98fa00,1, 0xd990000,36, 0xd990800,10, 0xd990880,6, 0xd9908a0,1, 0xd990900,2, 0xd990910,4, 0xd990a00,1, 0xd991000,10, 0xd991080,5, 0xd9910a0,6, 0xd991100,2, 0xd991110,4, 0xd991200,1, 0xd992000,10, 0xd992080,5, 0xd9920a0,6, 0xd992100,2, 0xd992110,4, 0xd992200,1, 0xd993000,10, 0xd993080,5, 0xd9930a0,6, 0xd993100,2, 0xd993110,4, 0xd993200,1, 0xd994000,10, 0xd994080,5, 0xd9940a0,6, 0xd994100,2, 0xd994110,4, 0xd994200,1, 0xd995000,10, 0xd995080,5, 0xd9950a0,6, 0xd995100,2, 0xd995110,4, 0xd995200,1, 0xd996000,10, 0xd996080,5, 0xd9960a0,6, 0xd996100,2, 0xd996110,4, 0xd996200,1, 0xd997000,10, 0xd997080,5, 0xd9970a0,6, 0xd997100,2, 0xd997110,4, 0xd997200,1, 0xd998000,10, 0xd998080,5, 0xd9980a0,6, 0xd998100,2, 0xd998110,4, 0xd998200,1, 0xd999000,20, 0xd999800,10, 0xd999880,6, 0xd999900,2, 0xd999910,4, 0xd999940,2, 0xd999950,4, 0xd999a00,1, 0xd99a000,20, 0xd99a800,10, 0xd99a880,6, 0xd99a900,2, 0xd99a910,4, 0xd99a940,2, 0xd99a950,4, 0xd99aa00,1, 0xd99b000,20, 0xd99b800,10, 0xd99b880,6, 0xd99b900,2, 0xd99b910,4, 0xd99b940,2, 0xd99b950,4, 0xd99ba00,1, 0xd99c000,20, 0xd99c800,10, 0xd99c880,6, 0xd99c900,2, 0xd99c910,4, 0xd99c940,2, 0xd99c950,4, 0xd99ca00,1, 0xd99d000,20, 0xd99d800,10, 0xd99d880,6, 0xd99d900,2, 0xd99d910,4, 0xd99d940,2, 0xd99d950,4, 0xd99da00,1, 0xd99e000,20, 0xd99e800,10, 0xd99e880,6, 0xd99e900,2, 0xd99e910,4, 0xd99e940,2, 0xd99e950,4, 0xd99ea00,1, 0xd99f000,20, 0xd99f800,10, 0xd99f880,6, 0xd99f900,2, 0xd99f910,4, 0xd99f940,2, 0xd99f950,4, 0xd99fa00,1, 0xd9a0000,20, 0xd9a0800,10, 0xd9a0880,6, 0xd9a0900,2, 0xd9a0910,4, 0xd9a0940,2, 0xd9a0950,4, 0xd9a0a00,1, 0xd9a1000,20, 0xd9a1800,10, 0xd9a1880,5, 0xd9a18a0,6, 0xd9a1900,2, 0xd9a1910,4, 0xd9a1a00,1, 0xd9a2000,20, 0xd9a2800,1, 0xd9a3000,20, 0xd9a3800,1, 0xd9a4000,20, 0xd9a4800,10, 0xd9a4880,5, 0xd9a48a0,6, 0xd9a4900,2, 0xd9a4910,4, 0xd9a4a00,1, 0xd9a5000,20, 0xd9a5800,1, 0xd9a6000,20, 0xd9a6800,1, 0xd9a7000,20, 0xd9a7800,10, 0xd9a7880,5, 0xd9a78a0,6, 0xd9a7900,2, 0xd9a7910,4, 0xd9a7a00,1, 0xd9a8000,20, 0xd9a8800,1, 0xd9a9000,20, 0xd9a9800,1, 0xd9aa000,20, 0xd9aa800,10, 0xd9aa880,5, 0xd9aa8a0,6, 0xd9aa900,2, 0xd9aa910,4, 0xd9aaa00,1, 0xd9ab000,20, 0xd9ab800,1, 0xd9ac000,20, 0xd9ac800,1, 0xd9ad000,20, 0xd9ad800,10, 0xd9ad880,5, 0xd9ad8a0,6, 0xd9ad900,2, 0xd9ad910,4, 0xd9ada00,1, 0xd9ae000,20, 0xd9ae800,1, 0xd9af000,20, 0xd9af800,1, 0xd9b0000,20, 0xd9b0800,10, 0xd9b0880,5, 0xd9b08a0,6, 0xd9b0900,2, 0xd9b0910,4, 0xd9b0a00,1, 0xd9b1000,20, 0xd9b1800,1, 0xd9b2000,20, 0xd9b2800,1, 0xd9b3000,20, 0xd9b3800,10, 0xd9b3880,5, 0xd9b38a0,6, 0xd9b3900,2, 0xd9b3910,4, 0xd9b3a00,1, 0xd9b4000,20, 0xd9b4800,1, 0xd9b5000,20, 0xd9b5800,1, 0xd9b6000,20, 0xd9b6800,10, 0xd9b6880,5, 0xd9b68a0,6, 0xd9b6900,2, 0xd9b6910,4, 0xd9b6a00,1, 0xd9b7000,20, 0xd9b7800,1, 0xd9b8000,20, 0xd9b8800,1, 0xd9ba000,20, 0xd9ba800,10, 0xd9ba880,6, 0xd9ba900,2, 0xd9ba910,4, 0xd9baa00,8, 0xd9baa24,1, 0xd9baa40,8, 0xd9baa64,1, 0xd9baa80,8, 0xd9baaa4,1, 0xd9baac0,8, 0xd9baae4,1, 0xd9bab00,1, 0xd9bc000,20, 0xd9bc800,10, 0xd9bc880,6, 0xd9bc900,2, 0xd9bc910,4, 0xd9bca00,8, 0xd9bca24,1, 0xd9bca40,8, 0xd9bca64,1, 0xd9bca80,8, 0xd9bcaa4,1, 0xd9bcac0,8, 0xd9bcae4,1, 0xd9bcb00,1, 0xd9be000,20, 0xd9be800,10, 0xd9be880,6, 0xd9be900,2, 0xd9be910,4, 0xd9bea00,8, 0xd9bea24,1, 0xd9bea40,8, 0xd9bea64,1, 0xd9bea80,8, 0xd9beaa4,1, 0xd9beac0,8, 0xd9beae4,1, 0xd9beb00,1, 0xd9c0000,20, 0xd9c0800,10, 0xd9c0880,6, 0xd9c0900,2, 0xd9c0910,4, 0xd9c0a00,8, 0xd9c0a24,1, 0xd9c0a40,8, 0xd9c0a64,1, 0xd9c0a80,8, 0xd9c0aa4,1, 0xd9c0ac0,8, 0xd9c0ae4,1, 0xd9c0b00,1, 0xd9c2000,20, 0xd9c2800,10, 0xd9c2880,6, 0xd9c2900,2, 0xd9c2910,4, 0xd9c2a00,8, 0xd9c2a24,1, 0xd9c2a40,8, 0xd9c2a64,1, 0xd9c2a80,8, 0xd9c2aa4,1, 0xd9c2ac0,8, 0xd9c2ae4,1, 0xd9c2b00,1, 0xd9c4000,20, 0xd9c4800,10, 0xd9c4880,6, 0xd9c4900,2, 0xd9c4910,4, 0xd9c4a00,8, 0xd9c4a24,1, 0xd9c4a40,8, 0xd9c4a64,1, 0xd9c4a80,8, 0xd9c4aa4,1, 0xd9c4ac0,8, 0xd9c4ae4,1, 0xd9c4b00,1, 0xd9c6000,20, 0xd9c6800,10, 0xd9c6880,6, 0xd9c6900,2, 0xd9c6910,4, 0xd9c6a00,8, 0xd9c6a24,1, 0xd9c6a40,8, 0xd9c6a64,1, 0xd9c6a80,8, 0xd9c6aa4,1, 0xd9c6ac0,8, 0xd9c6ae4,1, 0xd9c6b00,1, 0xd9c8000,20, 0xd9c8800,10, 0xd9c8880,6, 0xd9c8900,2, 0xd9c8910,4, 0xd9c8a00,8, 0xd9c8a24,1, 0xd9c8a40,8, 0xd9c8a64,1, 0xd9c8a80,8, 0xd9c8aa4,1, 0xd9c8ac0,8, 0xd9c8ae4,1, 0xd9c8b00,1, 0xd9f9000,10, 0xd9fa000,10, 0xd9fb000,10, 0xda00000,198, 0xda00400,2, 0xda00440,9, 0xda00480,7, 0xda00800,198, 0xda00c00,2, 0xda00c40,9, 0xda00c80,7, 0xda01000,198, 0xda01400,198, 0xda01804,6, 0xda01824,6, 0xda01880,2, 0xda01904,1, 0xda01918,28, 0xda019a0,6, 0xda019c0,6, 0xda01c00,2, 0xda01d00,2, 0xda01e04,1, 0xda01e74,43, 0xda02000,2, 0xda02100,2, 0xda02204,1, 0xda02274,43, 0xda02400,3, 0xda02600,27, 0xda02680,4, 0xda026c0,25, 0xda02740,6, 0xda02760,4, 0xda02774,11, 0xda027a4,4, 0xda02800,4, 0xda02900,34, 0xda02a00,4, 0xda02b00,34, 0xda02c00,3, 0xda02c10,12, 0xda02e00,56, 0xda02ee4,4, 0xda02f00,4, 0xda03000,1, 0xda08000,4, 0xda08100,42, 0xda08200,1, 0xda08210,3, 0xda08220,3, 0xda08230,3, 0xda08240,1, 0xda08248,3, 0xda08400,4, 0xda08500,58, 0xda08600,1, 0xda08610,3, 0xda08620,3, 0xda08630,3, 0xda08640,1, 0xda08648,3, 0xda08800,4, 0xda08900,36, 0xda08a00,1, 0xda08c00,4, 0xda08c80,27, 0xda08d00,1, 0xda08d10,3, 0xda08d20,3, 0xda08d30,3, 0xda08d40,1, 0xda08d48,3, 0xda08e00,4, 0xda08e80,31, 0xda08f00,1, 0xda08f10,3, 0xda08f20,3, 0xda08f30,3, 0xda08f40,1, 0xda08f48,3, 0xda09000,4, 0xda09040,13, 0xda09080,1, 0xda09200,15, 0xda09240,4, 0xda09260,17, 0xda092c0,6, 0xda092e0,2, 0xda092ec,3, 0xda09300,8, 0xda09324,8, 0xda09400,68, 0xda09600,60, 0xda09700,4, 0xda09720,5, 0xda09740,1, 0xda09780,2, 0xda0978c,2, 0xda097a0,1, 0xda097c0,12, 0xda09800,7, 0xda09820,5, 0xda09900,49, 0xda09a00,1, 0xda09a08,23, 0xda09a84,1, 0xda09a8c,1, 0xda09a94,1, 0xda09a9c,2, 0xda09ac0,1, 0xda09c00,10, 0xda09c40,1, 0xda09c50,3, 0xda09c80,10, 0xda09cc0,12, 0xda09d00,3, 0xda09e00,1, 0xda0a000,4, 0xda0a100,42, 0xda0a200,1, 0xda0a210,3, 0xda0a220,3, 0xda0a230,3, 0xda0a240,1, 0xda0a248,3, 0xda0a400,4, 0xda0a500,58, 0xda0a600,1, 0xda0a610,3, 0xda0a620,3, 0xda0a630,3, 0xda0a640,1, 0xda0a648,3, 0xda0a800,4, 0xda0a900,36, 0xda0aa00,1, 0xda0ac00,4, 0xda0ac80,27, 0xda0ad00,1, 0xda0ad10,3, 0xda0ad20,3, 0xda0ad30,3, 0xda0ad40,1, 0xda0ad48,3, 0xda0ae00,4, 0xda0ae80,31, 0xda0af00,1, 0xda0af10,3, 0xda0af20,3, 0xda0af30,3, 0xda0af40,1, 0xda0af48,3, 0xda0b000,4, 0xda0b040,13, 0xda0b080,1, 0xda0b200,15, 0xda0b240,4, 0xda0b260,17, 0xda0b2c0,6, 0xda0b2e0,2, 0xda0b2ec,3, 0xda0b300,8, 0xda0b324,8, 0xda0b400,68, 0xda0b600,60, 0xda0b700,4, 0xda0b720,5, 0xda0b740,1, 0xda0b780,2, 0xda0b78c,2, 0xda0b7a0,1, 0xda0b7c0,12, 0xda0b800,7, 0xda0b820,5, 0xda0b900,49, 0xda0ba00,1, 0xda0ba08,23, 0xda0ba84,1, 0xda0ba8c,1, 0xda0ba94,1, 0xda0ba9c,2, 0xda0bac0,1, 0xda0bc00,10, 0xda0bc40,1, 0xda0bc50,3, 0xda0bc80,10, 0xda0bcc0,12, 0xda0bd00,3, 0xda0be00,1, 0xda0c000,20, 0xda0c080,3, 0xda0c090,1, 0xda0c098,4, 0xda10000,49, 0xda10100,12, 0xda10140,4, 0xda10184,1, 0xda10198,2, 0xda101a4,1, 0xda101b8,7, 0xda101e0,4, 0xda10200,20, 0xda10280,3, 0xda10290,9, 0xda102c0,6, 0xda102e0,1, 0xda102e8,7, 0xda10400,49, 0xda10500,12, 0xda10540,4, 0xda10584,1, 0xda10598,2, 0xda105a4,1, 0xda105b8,7, 0xda105e0,4, 0xda10600,20, 0xda10680,3, 0xda10690,9, 0xda106c0,6, 0xda106e0,1, 0xda106e8,7, 0xda10800,49, 0xda10900,12, 0xda10940,4, 0xda10984,1, 0xda10998,2, 0xda109a4,1, 0xda109b8,7, 0xda109e0,4, 0xda10a00,20, 0xda10a80,3, 0xda10a90,9, 0xda10ac0,6, 0xda10ae0,1, 0xda10ae8,7, 0xda10c00,49, 0xda10d00,12, 0xda10d40,4, 0xda10d84,1, 0xda10d98,2, 0xda10da4,1, 0xda10db8,7, 0xda10de0,4, 0xda10e00,20, 0xda10e80,3, 0xda10e90,9, 0xda10ec0,6, 0xda10ee0,1, 0xda10ee8,7, 0xda11000,49, 0xda11100,12, 0xda11140,4, 0xda11184,1, 0xda11198,2, 0xda111a4,1, 0xda111b8,7, 0xda111e0,4, 0xda11200,20, 0xda11280,3, 0xda11290,9, 0xda112c0,6, 0xda112e0,1, 0xda112e8,7, 0xda11400,49, 0xda11500,12, 0xda11540,4, 0xda11584,1, 0xda11598,2, 0xda115a4,1, 0xda115b8,7, 0xda115e0,4, 0xda11600,20, 0xda11680,3, 0xda11690,9, 0xda116c0,6, 0xda116e0,1, 0xda116e8,7, 0xda11800,49, 0xda11900,12, 0xda11940,4, 0xda11984,1, 0xda11998,2, 0xda119a4,1, 0xda119b8,7, 0xda119e0,4, 0xda11a00,20, 0xda11a80,3, 0xda11a90,9, 0xda11ac0,6, 0xda11ae0,1, 0xda11ae8,7, 0xda12000,20, 0xda12080,10, 0xda12100,20, 0xda12180,10, 0xda12200,12, 0xda12400,20, 0xda12480,10, 0xda12500,20, 0xda12580,10, 0xda12600,12, 0xda12800,3, 0xda12840,12, 0xda12880,12, 0xda128c0,12, 0xda12900,12, 0xda12940,12, 0xda12980,12, 0xda129c0,12, 0xda12a00,12, 0xda12c00,12, 0xda12c40,7, 0xda12c60,10, 0xda13004,1, 0xda13044,43, 0xda13100,7, 0xda13120,7, 0xda13140,2, 0xda1314c,2, 0xda13160,2, 0xda1316c,2, 0xda13180,18, 0xda13200,2, 0xda13220,10, 0xda13260,20, 0xda132c0,9, 0xda13300,15, 0xda13340,9, 0xda13380,6, 0xda133a0,4, 0xda13400,5, 0xda14000,53, 0xda14100,3, 0xda14110,15, 0xda14200,53, 0xda14300,3, 0xda14310,15, 0xda14400,5, 0xda14420,5, 0xda14440,18, 0xda14800,3, 0xda14810,2, 0xda14820,3, 0xda14830,2, 0xda14840,1, 0xda15000,7, 0xda15020,7, 0xda15080,19, 0xda15100,19, 0xda15180,25, 0xda15200,20, 0xda15280,20, 0xda15300,8, 0xda15340,4, 0xda15380,15, 0xda153c0,15, 0xda15400,9, 0xda15430,5, 0xda16000,6, 0xda16020,1, 0xda16028,2, 0xda16040,11, 0xda16070,2, 0xda18000,82, 0xda18200,2, 0xda18240,9, 0xda18280,7, 0xda18400,82, 0xda18604,6, 0xda18700,15, 0xda18740,9, 0xda18780,6, 0xda187a0,6, 0xda18800,2, 0xda18810,3, 0xda18880,24, 0xda188e4,1, 0xda188f0,12, 0xda20000,22, 0xda20080,22, 0xda20100,5, 0xda20120,5, 0xda20140,3, 0xda20160,16, 0xda201c0,7, 0xda201e0,2, 0xda20200,7, 0xda20220,2, 0xda20400,15, 0xda20440,3, 0xda20450,3, 0xda20460,24, 0xda20500,15, 0xda20540,3, 0xda20550,3, 0xda20560,24, 0xda20600,15, 0xda20640,3, 0xda20650,3, 0xda20660,24, 0xda20700,15, 0xda20740,3, 0xda20750,3, 0xda20760,24, 0xda20800,4, 0xda20820,16, 0xda20880,10, 0xda208c0,10, 0xda20900,6, 0xda20920,6, 0xda20940,4, 0xda20980,13, 0xda209c0,13, 0xda20a00,9, 0xda21000,86, 0xda21200,2, 0xda21240,9, 0xda21280,7, 0xda21400,86, 0xda21604,6, 0xda21800,86, 0xda21a00,2, 0xda21a40,9, 0xda21a80,7, 0xda21c00,86, 0xda21e04,6, 0xda22000,15, 0xda22040,4, 0xda22060,17, 0xda220c0,6, 0xda220e0,4, 0xda220f4,11, 0xda22128,38, 0xda221c4,2, 0xda221d0,4, 0xda22200,1, 0xda24000,22, 0xda24080,22, 0xda24100,5, 0xda24120,5, 0xda24140,3, 0xda24160,16, 0xda241c0,7, 0xda241e0,2, 0xda24200,7, 0xda24220,2, 0xda24400,15, 0xda24440,3, 0xda24450,3, 0xda24460,24, 0xda24500,15, 0xda24540,3, 0xda24550,3, 0xda24560,24, 0xda24600,15, 0xda24640,3, 0xda24650,3, 0xda24660,24, 0xda24700,15, 0xda24740,3, 0xda24750,3, 0xda24760,24, 0xda24800,4, 0xda24820,16, 0xda24880,10, 0xda248c0,10, 0xda24900,6, 0xda24920,6, 0xda24940,4, 0xda24980,13, 0xda249c0,13, 0xda24a00,9, 0xda25000,86, 0xda25200,2, 0xda25240,9, 0xda25280,7, 0xda25400,86, 0xda25604,6, 0xda25800,86, 0xda25a00,2, 0xda25a40,9, 0xda25a80,7, 0xda25c00,86, 0xda25e04,6, 0xda26000,15, 0xda26040,4, 0xda26060,17, 0xda260c0,6, 0xda260e0,4, 0xda260f4,11, 0xda26128,38, 0xda261c4,2, 0xda261d0,4, 0xda26200,1, 0xda28000,9, 0xda28040,9, 0xda28080,5, 0xda28100,21, 0xda28160,5, 0xda28180,45, 0xda28240,13, 0xda28280,9, 0xda28400,9, 0xda28440,9, 0xda28480,5, 0xda28500,21, 0xda28560,5, 0xda28580,45, 0xda28640,13, 0xda28680,9, 0xda28800,12, 0xda28900,15, 0xda28940,4, 0xda28960,17, 0xda289c0,6, 0xda289e0,4, 0xda289f4,29, 0xda2c000,30, 0xda2c080,3, 0xda2c090,19, 0xda2c100,30, 0xda2c180,3, 0xda2c190,19, 0xda2c200,30, 0xda2c280,3, 0xda2c290,19, 0xda2c300,30, 0xda2c380,3, 0xda2c390,19, 0xda2c400,30, 0xda2c480,3, 0xda2c490,19, 0xda2c500,30, 0xda2c580,3, 0xda2c590,19, 0xda2c600,30, 0xda2c680,3, 0xda2c690,19, 0xda2c700,30, 0xda2c780,3, 0xda2c790,19, 0xda2c800,12, 0xda2c844,1, 0xda2c854,8, 0xda2c880,7, 0xda2c8a0,2, 0xda2c8ac,2, 0xda2c8c0,26, 0xda2c980,4, 0xda2c9a0,5, 0xda2c9c0,1, 0xda2d000,3, 0xda2d010,3, 0xda2d020,3, 0xda2d030,3, 0xda2d040,3, 0xda2d050,3, 0xda2d060,3, 0xda2d070,3, 0xda2d080,6, 0xda2d0a0,6, 0xda2d0c0,6, 0xda2d0e0,6, 0xda2d100,6, 0xda2d120,6, 0xda2d140,6, 0xda2d160,6, 0xda2d200,68, 0xda2d400,1, 0xda2d804,1, 0xda2d844,54, 0xda2da00,12, 0xda2da40,12, 0xda2da80,12, 0xda2dac0,12, 0xda2db00,12, 0xda2db40,12, 0xda2db80,12, 0xda2dbc0,12, 0xda2dc00,28, 0xda2dc80,10, 0xda2e000,3, 0xda2e020,6, 0xda2e040,6, 0xda2e060,15, 0xda2e100,26, 0xda2e180,15, 0xda2e200,15, 0xda2e240,4, 0xda2e260,17, 0xda2e2c0,6, 0xda2e2e0,4, 0xda2e2f4,18, 0xda2e340,4, 0xda2e360,17, 0xda2e3c0,6, 0xda2e3e0,4, 0xda2e3f4,15, 0xda30000,1, 0xda31000,1020, 0xda32000,194, 0xda33000,1020, 0xda34000,1020, 0xda35000,1020, 0xda36000,1020, 0xda37000,1020, 0xda38000,1020, 0xda39000,1020, 0xda3a000,1020, 0xda3b000,194, 0xda3c000,3, 0xda3c010,13, 0xda3c080,16, 0xda3c100,20, 0xda3c184,1, 0xda3c18c,4, 0xda3c200,3, 0xda3c210,13, 0xda3c280,16, 0xda3c300,20, 0xda3c384,1, 0xda3c38c,4, 0xda3c400,3, 0xda3c410,13, 0xda3c480,16, 0xda3c500,20, 0xda3c584,1, 0xda3c58c,4, 0xda3c600,3, 0xda3c610,13, 0xda3c680,16, 0xda3c700,20, 0xda3c784,1, 0xda3c78c,4, 0xda3c800,3, 0xda3c810,13, 0xda3c880,16, 0xda3c900,20, 0xda3c984,1, 0xda3c98c,4, 0xda3ca00,3, 0xda3ca10,13, 0xda3ca80,16, 0xda3cb00,20, 0xda3cb84,1, 0xda3cb8c,4, 0xda3cc00,3, 0xda3cc10,13, 0xda3cc80,16, 0xda3cd00,20, 0xda3cd84,1, 0xda3cd8c,4, 0xda3ce00,3, 0xda3ce10,13, 0xda3ce80,16, 0xda3cf00,20, 0xda3cf84,1, 0xda3cf8c,4, 0xda3d000,3, 0xda3d010,13, 0xda3d080,16, 0xda3d100,20, 0xda3d184,1, 0xda3d18c,4, 0xda3d200,18, 0xda3d250,2, 0xda3d260,4, 0xda3e000,1, 0xda3e014,1, 0xda3e01c,19, 0xda3e080,1, 0xda3e094,1, 0xda3e09c,19, 0xda3e100,8, 0xda3e200,13, 0xda3e240,9, 0xda3e280,12, 0xda3e2c0,2, 0xda3e2e0,12, 0xda40000,3, 0xda40080,20, 0xda40100,10, 0xda40140,1, 0xda40154,1, 0xda4015c,2, 0xda40200,15, 0xda40240,4, 0xda40260,17, 0xda402c0,6, 0xda402e0,2, 0xda402ec,3, 0xda40300,8, 0xda40324,1, 0xda40400,4, 0xda40440,20, 0xda404c0,9, 0xda40500,33, 0xda40600,11, 0xda40640,11, 0xda40680,1, 0xda42000,1, 0xda42200,4, 0xda42300,53, 0xda42400,4, 0xda42500,40, 0xda42600,15, 0xda42640,4, 0xda42660,17, 0xda426c0,6, 0xda426e0,2, 0xda426ec,3, 0xda42700,8, 0xda42724,1, 0xda42800,20, 0xda42c00,53, 0xda42d00,53, 0xda42e00,1, 0xda43000,40, 0xda43100,40, 0xda43200,1, 0xda43400,1, 0xda43804,1, 0xda43844,39, 0xda43900,3, 0xda43a00,3, 0xda43a44,1, 0xda43a50,4, 0xda43a80,1, 0xda44000,2, 0xda44200,27, 0xda44280,4, 0xda442c0,25, 0xda44340,6, 0xda44360,2, 0xda4436c,3, 0xda44380,8, 0xda443a4,1, 0xda44400,12, 0xda44440,1, 0xda48000,3, 0xda48080,20, 0xda48100,10, 0xda48140,1, 0xda48154,1, 0xda4815c,2, 0xda48200,15, 0xda48240,4, 0xda48260,17, 0xda482c0,6, 0xda482e0,2, 0xda482ec,3, 0xda48300,8, 0xda48324,1, 0xda48400,4, 0xda48440,20, 0xda484c0,9, 0xda48500,33, 0xda48600,11, 0xda48640,11, 0xda48680,1, 0xda4a000,1, 0xda4a200,4, 0xda4a300,53, 0xda4a400,4, 0xda4a500,40, 0xda4a600,15, 0xda4a640,4, 0xda4a660,17, 0xda4a6c0,6, 0xda4a6e0,2, 0xda4a6ec,3, 0xda4a700,8, 0xda4a724,1, 0xda4a800,20, 0xda4ac00,53, 0xda4ad00,53, 0xda4ae00,1, 0xda4b000,40, 0xda4b100,40, 0xda4b200,1, 0xda4b400,1, 0xda4b804,1, 0xda4b844,39, 0xda4b900,3, 0xda4ba00,3, 0xda4ba44,1, 0xda4ba50,4, 0xda4ba80,1, 0xda4c000,2, 0xda4c200,27, 0xda4c280,4, 0xda4c2c0,25, 0xda4c340,6, 0xda4c360,2, 0xda4c36c,3, 0xda4c380,8, 0xda4c3a4,1, 0xda4c400,12, 0xda4c440,1, 0xda50000,4, 0xda50020,3, 0xda50030,2, 0xda50200,1, 0xda50224,10, 0xda50250,5, 0xda50280,1, 0xda50288,24, 0xda50300,3, 0xda50404,1, 0xda50414,5, 0xda50500,36, 0xda50600,3, 0xda50800,2, 0xda51000,1, 0xda51008,21, 0xda51080,1, 0xda51088,21, 0xda51100,1, 0xda51108,21, 0xda51180,1, 0xda51188,21, 0xda51200,1, 0xda51208,21, 0xda51280,1, 0xda51288,21, 0xda51300,1, 0xda51308,21, 0xda51380,1, 0xda51388,21, 0xda51400,21, 0xda51800,142, 0xda51c00,1, 0xda52000,4, 0xda52100,39, 0xda52200,3, 0xda52214,3, 0xda54004,1, 0xda54020,16, 0xda54080,2, 0xda54094,1, 0xda5409c,2, 0xda540c0,6, 0xda54100,8, 0xda58004,17, 0xda58054,1, 0xda5805c,2, 0xda58080,1, 0xda580a0,2, 0xda580b4,4, 0xda58100,2, 0xda58200,8, 0xda58400,1, 0xda58600,27, 0xda58680,4, 0xda586c0,25, 0xda58740,6, 0xda58760,2, 0xda5876c,3, 0xda58780,8, 0xda587a4,3, 0xda58800,44, 0xda58900,1, 0xda60000,1, 0xda60200,27, 0xda60280,4, 0xda602c0,25, 0xda60340,6, 0xda60360,2, 0xda6036c,3, 0xda60380,8, 0xda603a4,1, 0xda60400,20, 0xda60480,3, 0xda60490,9, 0xda80000,198, 0xda80400,2, 0xda80440,9, 0xda80480,7, 0xda80800,198, 0xda80c00,2, 0xda80c40,9, 0xda80c80,7, 0xda81000,198, 0xda81400,198, 0xda81804,6, 0xda81824,6, 0xda81880,2, 0xda81904,1, 0xda81918,28, 0xda819a0,6, 0xda819c0,6, 0xda81c00,2, 0xda81d00,2, 0xda81e04,1, 0xda81e74,43, 0xda82000,2, 0xda82100,2, 0xda82204,1, 0xda82274,43, 0xda82400,3, 0xda82600,27, 0xda82680,4, 0xda826c0,25, 0xda82740,6, 0xda82760,4, 0xda82774,11, 0xda827a4,4, 0xda82800,4, 0xda82900,34, 0xda82a00,4, 0xda82b00,34, 0xda82c00,3, 0xda82c10,12, 0xda82e00,56, 0xda82ee4,4, 0xda82f00,4, 0xda83000,1, 0xda88000,4, 0xda88100,42, 0xda88200,1, 0xda88210,3, 0xda88220,3, 0xda88230,3, 0xda88240,1, 0xda88248,3, 0xda88400,4, 0xda88500,58, 0xda88600,1, 0xda88610,3, 0xda88620,3, 0xda88630,3, 0xda88640,1, 0xda88648,3, 0xda88800,4, 0xda88900,36, 0xda88a00,1, 0xda88c00,4, 0xda88c80,27, 0xda88d00,1, 0xda88d10,3, 0xda88d20,3, 0xda88d30,3, 0xda88d40,1, 0xda88d48,3, 0xda88e00,4, 0xda88e80,31, 0xda88f00,1, 0xda88f10,3, 0xda88f20,3, 0xda88f30,3, 0xda88f40,1, 0xda88f48,3, 0xda89000,4, 0xda89040,13, 0xda89080,1, 0xda89200,15, 0xda89240,4, 0xda89260,17, 0xda892c0,6, 0xda892e0,2, 0xda892ec,3, 0xda89300,8, 0xda89324,8, 0xda89400,68, 0xda89600,60, 0xda89700,4, 0xda89720,5, 0xda89740,1, 0xda89780,2, 0xda8978c,2, 0xda897a0,1, 0xda897c0,12, 0xda89800,7, 0xda89820,5, 0xda89900,49, 0xda89a00,1, 0xda89a08,23, 0xda89a84,1, 0xda89a8c,1, 0xda89a94,1, 0xda89a9c,2, 0xda89ac0,1, 0xda89c00,10, 0xda89c40,1, 0xda89c50,3, 0xda89c80,10, 0xda89cc0,12, 0xda89d00,3, 0xda89e00,1, 0xda8a000,4, 0xda8a100,42, 0xda8a200,1, 0xda8a210,3, 0xda8a220,3, 0xda8a230,3, 0xda8a240,1, 0xda8a248,3, 0xda8a400,4, 0xda8a500,58, 0xda8a600,1, 0xda8a610,3, 0xda8a620,3, 0xda8a630,3, 0xda8a640,1, 0xda8a648,3, 0xda8a800,4, 0xda8a900,36, 0xda8aa00,1, 0xda8ac00,4, 0xda8ac80,27, 0xda8ad00,1, 0xda8ad10,3, 0xda8ad20,3, 0xda8ad30,3, 0xda8ad40,1, 0xda8ad48,3, 0xda8ae00,4, 0xda8ae80,31, 0xda8af00,1, 0xda8af10,3, 0xda8af20,3, 0xda8af30,3, 0xda8af40,1, 0xda8af48,3, 0xda8b000,4, 0xda8b040,13, 0xda8b080,1, 0xda8b200,15, 0xda8b240,4, 0xda8b260,17, 0xda8b2c0,6, 0xda8b2e0,2, 0xda8b2ec,3, 0xda8b300,8, 0xda8b324,8, 0xda8b400,68, 0xda8b600,60, 0xda8b700,4, 0xda8b720,5, 0xda8b740,1, 0xda8b780,2, 0xda8b78c,2, 0xda8b7a0,1, 0xda8b7c0,12, 0xda8b800,7, 0xda8b820,5, 0xda8b900,49, 0xda8ba00,1, 0xda8ba08,23, 0xda8ba84,1, 0xda8ba8c,1, 0xda8ba94,1, 0xda8ba9c,2, 0xda8bac0,1, 0xda8bc00,10, 0xda8bc40,1, 0xda8bc50,3, 0xda8bc80,10, 0xda8bcc0,12, 0xda8bd00,3, 0xda8be00,1, 0xda8c000,20, 0xda8c080,3, 0xda8c090,1, 0xda8c098,4, 0xda90000,49, 0xda90100,12, 0xda90140,4, 0xda90184,1, 0xda90198,2, 0xda901a4,1, 0xda901b8,7, 0xda901e0,4, 0xda90200,20, 0xda90280,3, 0xda90290,9, 0xda902c0,6, 0xda902e0,1, 0xda902e8,7, 0xda90400,49, 0xda90500,12, 0xda90540,4, 0xda90584,1, 0xda90598,2, 0xda905a4,1, 0xda905b8,7, 0xda905e0,4, 0xda90600,20, 0xda90680,3, 0xda90690,9, 0xda906c0,6, 0xda906e0,1, 0xda906e8,7, 0xda90800,49, 0xda90900,12, 0xda90940,4, 0xda90984,1, 0xda90998,2, 0xda909a4,1, 0xda909b8,7, 0xda909e0,4, 0xda90a00,20, 0xda90a80,3, 0xda90a90,9, 0xda90ac0,6, 0xda90ae0,1, 0xda90ae8,7, 0xda90c00,49, 0xda90d00,12, 0xda90d40,4, 0xda90d84,1, 0xda90d98,2, 0xda90da4,1, 0xda90db8,7, 0xda90de0,4, 0xda90e00,20, 0xda90e80,3, 0xda90e90,9, 0xda90ec0,6, 0xda90ee0,1, 0xda90ee8,7, 0xda91000,49, 0xda91100,12, 0xda91140,4, 0xda91184,1, 0xda91198,2, 0xda911a4,1, 0xda911b8,7, 0xda911e0,4, 0xda91200,20, 0xda91280,3, 0xda91290,9, 0xda912c0,6, 0xda912e0,1, 0xda912e8,7, 0xda91400,49, 0xda91500,12, 0xda91540,4, 0xda91584,1, 0xda91598,2, 0xda915a4,1, 0xda915b8,7, 0xda915e0,4, 0xda91600,20, 0xda91680,3, 0xda91690,9, 0xda916c0,6, 0xda916e0,1, 0xda916e8,7, 0xda91800,49, 0xda91900,12, 0xda91940,4, 0xda91984,1, 0xda91998,2, 0xda919a4,1, 0xda919b8,7, 0xda919e0,4, 0xda91a00,20, 0xda91a80,3, 0xda91a90,9, 0xda91ac0,6, 0xda91ae0,1, 0xda91ae8,7, 0xda92000,20, 0xda92080,10, 0xda92100,20, 0xda92180,10, 0xda92200,12, 0xda92400,20, 0xda92480,10, 0xda92500,20, 0xda92580,10, 0xda92600,12, 0xda92800,3, 0xda92840,12, 0xda92880,12, 0xda928c0,12, 0xda92900,12, 0xda92940,12, 0xda92980,12, 0xda929c0,12, 0xda92a00,12, 0xda92c00,12, 0xda92c40,7, 0xda92c60,10, 0xda93004,1, 0xda93044,43, 0xda93100,7, 0xda93120,7, 0xda93140,2, 0xda9314c,2, 0xda93160,2, 0xda9316c,2, 0xda93180,18, 0xda93200,2, 0xda93220,10, 0xda93260,20, 0xda932c0,9, 0xda93300,15, 0xda93340,9, 0xda93380,6, 0xda933a0,4, 0xda93400,5, 0xda94000,53, 0xda94100,3, 0xda94110,15, 0xda94200,53, 0xda94300,3, 0xda94310,15, 0xda94400,5, 0xda94420,5, 0xda94440,18, 0xda94800,3, 0xda94810,2, 0xda94820,3, 0xda94830,2, 0xda94840,1, 0xda95000,7, 0xda95020,7, 0xda95080,19, 0xda95100,19, 0xda95180,25, 0xda95200,20, 0xda95280,20, 0xda95300,8, 0xda95340,4, 0xda95380,15, 0xda953c0,15, 0xda95400,9, 0xda95430,5, 0xda96000,6, 0xda96020,1, 0xda96028,2, 0xda96040,11, 0xda96070,2, 0xda98000,82, 0xda98200,2, 0xda98240,9, 0xda98280,7, 0xda98400,82, 0xda98604,6, 0xda98700,15, 0xda98740,9, 0xda98780,6, 0xda987a0,6, 0xda98800,2, 0xda98810,3, 0xda98880,24, 0xda988e4,1, 0xda988f0,12, 0xdaa0000,22, 0xdaa0080,22, 0xdaa0100,5, 0xdaa0120,5, 0xdaa0140,3, 0xdaa0160,16, 0xdaa01c0,7, 0xdaa01e0,2, 0xdaa0200,7, 0xdaa0220,2, 0xdaa0400,15, 0xdaa0440,3, 0xdaa0450,3, 0xdaa0460,24, 0xdaa0500,15, 0xdaa0540,3, 0xdaa0550,3, 0xdaa0560,24, 0xdaa0600,15, 0xdaa0640,3, 0xdaa0650,3, 0xdaa0660,24, 0xdaa0700,15, 0xdaa0740,3, 0xdaa0750,3, 0xdaa0760,24, 0xdaa0800,4, 0xdaa0820,16, 0xdaa0880,10, 0xdaa08c0,10, 0xdaa0900,6, 0xdaa0920,6, 0xdaa0940,4, 0xdaa0980,13, 0xdaa09c0,13, 0xdaa0a00,9, 0xdaa1000,86, 0xdaa1200,2, 0xdaa1240,9, 0xdaa1280,7, 0xdaa1400,86, 0xdaa1604,6, 0xdaa1800,86, 0xdaa1a00,2, 0xdaa1a40,9, 0xdaa1a80,7, 0xdaa1c00,86, 0xdaa1e04,6, 0xdaa2000,15, 0xdaa2040,4, 0xdaa2060,17, 0xdaa20c0,6, 0xdaa20e0,4, 0xdaa20f4,11, 0xdaa2128,38, 0xdaa21c4,2, 0xdaa21d0,4, 0xdaa2200,1, 0xdaa4000,22, 0xdaa4080,22, 0xdaa4100,5, 0xdaa4120,5, 0xdaa4140,3, 0xdaa4160,16, 0xdaa41c0,7, 0xdaa41e0,2, 0xdaa4200,7, 0xdaa4220,2, 0xdaa4400,15, 0xdaa4440,3, 0xdaa4450,3, 0xdaa4460,24, 0xdaa4500,15, 0xdaa4540,3, 0xdaa4550,3, 0xdaa4560,24, 0xdaa4600,15, 0xdaa4640,3, 0xdaa4650,3, 0xdaa4660,24, 0xdaa4700,15, 0xdaa4740,3, 0xdaa4750,3, 0xdaa4760,24, 0xdaa4800,4, 0xdaa4820,16, 0xdaa4880,10, 0xdaa48c0,10, 0xdaa4900,6, 0xdaa4920,6, 0xdaa4940,4, 0xdaa4980,13, 0xdaa49c0,13, 0xdaa4a00,9, 0xdaa5000,86, 0xdaa5200,2, 0xdaa5240,9, 0xdaa5280,7, 0xdaa5400,86, 0xdaa5604,6, 0xdaa5800,86, 0xdaa5a00,2, 0xdaa5a40,9, 0xdaa5a80,7, 0xdaa5c00,86, 0xdaa5e04,6, 0xdaa6000,15, 0xdaa6040,4, 0xdaa6060,17, 0xdaa60c0,6, 0xdaa60e0,4, 0xdaa60f4,11, 0xdaa6128,38, 0xdaa61c4,2, 0xdaa61d0,4, 0xdaa6200,1, 0xdaa8000,9, 0xdaa8040,9, 0xdaa8080,5, 0xdaa8100,21, 0xdaa8160,5, 0xdaa8180,45, 0xdaa8240,13, 0xdaa8280,9, 0xdaa8400,9, 0xdaa8440,9, 0xdaa8480,5, 0xdaa8500,21, 0xdaa8560,5, 0xdaa8580,45, 0xdaa8640,13, 0xdaa8680,9, 0xdaa8800,12, 0xdaa8900,15, 0xdaa8940,4, 0xdaa8960,17, 0xdaa89c0,6, 0xdaa89e0,4, 0xdaa89f4,29, 0xdaac000,30, 0xdaac080,3, 0xdaac090,19, 0xdaac100,30, 0xdaac180,3, 0xdaac190,19, 0xdaac200,30, 0xdaac280,3, 0xdaac290,19, 0xdaac300,30, 0xdaac380,3, 0xdaac390,19, 0xdaac400,30, 0xdaac480,3, 0xdaac490,19, 0xdaac500,30, 0xdaac580,3, 0xdaac590,19, 0xdaac600,30, 0xdaac680,3, 0xdaac690,19, 0xdaac700,30, 0xdaac780,3, 0xdaac790,19, 0xdaac800,12, 0xdaac844,1, 0xdaac854,8, 0xdaac880,7, 0xdaac8a0,2, 0xdaac8ac,2, 0xdaac8c0,26, 0xdaac980,4, 0xdaac9a0,5, 0xdaac9c0,1, 0xdaad000,3, 0xdaad010,3, 0xdaad020,3, 0xdaad030,3, 0xdaad040,3, 0xdaad050,3, 0xdaad060,3, 0xdaad070,3, 0xdaad080,6, 0xdaad0a0,6, 0xdaad0c0,6, 0xdaad0e0,6, 0xdaad100,6, 0xdaad120,6, 0xdaad140,6, 0xdaad160,6, 0xdaad200,68, 0xdaad400,1, 0xdaad804,1, 0xdaad844,54, 0xdaada00,12, 0xdaada40,12, 0xdaada80,12, 0xdaadac0,12, 0xdaadb00,12, 0xdaadb40,12, 0xdaadb80,12, 0xdaadbc0,12, 0xdaadc00,28, 0xdaadc80,10, 0xdaae000,3, 0xdaae020,6, 0xdaae040,6, 0xdaae060,15, 0xdaae100,26, 0xdaae180,15, 0xdaae200,15, 0xdaae240,4, 0xdaae260,17, 0xdaae2c0,6, 0xdaae2e0,4, 0xdaae2f4,18, 0xdaae340,4, 0xdaae360,17, 0xdaae3c0,6, 0xdaae3e0,4, 0xdaae3f4,15, 0xdab0000,1, 0xdab1000,1020, 0xdab2000,194, 0xdab3000,1020, 0xdab4000,1020, 0xdab5000,1020, 0xdab6000,1020, 0xdab7000,1020, 0xdab8000,1020, 0xdab9000,1020, 0xdaba000,1020, 0xdabb000,194, 0xdabc000,3, 0xdabc010,13, 0xdabc080,16, 0xdabc100,20, 0xdabc184,1, 0xdabc18c,4, 0xdabc200,3, 0xdabc210,13, 0xdabc280,16, 0xdabc300,20, 0xdabc384,1, 0xdabc38c,4, 0xdabc400,3, 0xdabc410,13, 0xdabc480,16, 0xdabc500,20, 0xdabc584,1, 0xdabc58c,4, 0xdabc600,3, 0xdabc610,13, 0xdabc680,16, 0xdabc700,20, 0xdabc784,1, 0xdabc78c,4, 0xdabc800,3, 0xdabc810,13, 0xdabc880,16, 0xdabc900,20, 0xdabc984,1, 0xdabc98c,4, 0xdabca00,3, 0xdabca10,13, 0xdabca80,16, 0xdabcb00,20, 0xdabcb84,1, 0xdabcb8c,4, 0xdabcc00,3, 0xdabcc10,13, 0xdabcc80,16, 0xdabcd00,20, 0xdabcd84,1, 0xdabcd8c,4, 0xdabce00,3, 0xdabce10,13, 0xdabce80,16, 0xdabcf00,20, 0xdabcf84,1, 0xdabcf8c,4, 0xdabd000,3, 0xdabd010,13, 0xdabd080,16, 0xdabd100,20, 0xdabd184,1, 0xdabd18c,4, 0xdabd200,18, 0xdabd250,2, 0xdabd260,4, 0xdabe000,1, 0xdabe014,1, 0xdabe01c,19, 0xdabe080,1, 0xdabe094,1, 0xdabe09c,19, 0xdabe100,8, 0xdabe200,13, 0xdabe240,9, 0xdabe280,12, 0xdabe2c0,2, 0xdabe2e0,12, 0xdac0000,3, 0xdac0080,20, 0xdac0100,10, 0xdac0140,1, 0xdac0154,1, 0xdac015c,2, 0xdac0200,15, 0xdac0240,4, 0xdac0260,17, 0xdac02c0,6, 0xdac02e0,2, 0xdac02ec,3, 0xdac0300,8, 0xdac0324,1, 0xdac0400,4, 0xdac0440,20, 0xdac04c0,9, 0xdac0500,33, 0xdac0600,11, 0xdac0640,11, 0xdac0680,1, 0xdac2000,1, 0xdac2200,4, 0xdac2300,53, 0xdac2400,4, 0xdac2500,40, 0xdac2600,15, 0xdac2640,4, 0xdac2660,17, 0xdac26c0,6, 0xdac26e0,2, 0xdac26ec,3, 0xdac2700,8, 0xdac2724,1, 0xdac2800,20, 0xdac2c00,53, 0xdac2d00,53, 0xdac2e00,1, 0xdac3000,40, 0xdac3100,40, 0xdac3200,1, 0xdac3400,1, 0xdac3804,1, 0xdac3844,39, 0xdac3900,3, 0xdac3a00,3, 0xdac3a44,1, 0xdac3a50,4, 0xdac3a80,1, 0xdac4000,2, 0xdac4200,27, 0xdac4280,4, 0xdac42c0,25, 0xdac4340,6, 0xdac4360,2, 0xdac436c,3, 0xdac4380,8, 0xdac43a4,1, 0xdac4400,12, 0xdac4440,1, 0xdac8000,3, 0xdac8080,20, 0xdac8100,10, 0xdac8140,1, 0xdac8154,1, 0xdac815c,2, 0xdac8200,15, 0xdac8240,4, 0xdac8260,17, 0xdac82c0,6, 0xdac82e0,2, 0xdac82ec,3, 0xdac8300,8, 0xdac8324,1, 0xdac8400,4, 0xdac8440,20, 0xdac84c0,9, 0xdac8500,33, 0xdac8600,11, 0xdac8640,11, 0xdac8680,1, 0xdaca000,1, 0xdaca200,4, 0xdaca300,53, 0xdaca400,4, 0xdaca500,40, 0xdaca600,15, 0xdaca640,4, 0xdaca660,17, 0xdaca6c0,6, 0xdaca6e0,2, 0xdaca6ec,3, 0xdaca700,8, 0xdaca724,1, 0xdaca800,20, 0xdacac00,53, 0xdacad00,53, 0xdacae00,1, 0xdacb000,40, 0xdacb100,40, 0xdacb200,1, 0xdacb400,1, 0xdacb804,1, 0xdacb844,39, 0xdacb900,3, 0xdacba00,3, 0xdacba44,1, 0xdacba50,4, 0xdacba80,1, 0xdacc000,2, 0xdacc200,27, 0xdacc280,4, 0xdacc2c0,25, 0xdacc340,6, 0xdacc360,2, 0xdacc36c,3, 0xdacc380,8, 0xdacc3a4,1, 0xdacc400,12, 0xdacc440,1, 0xdad0000,4, 0xdad0020,3, 0xdad0030,2, 0xdad0200,1, 0xdad0224,10, 0xdad0250,5, 0xdad0280,1, 0xdad0288,24, 0xdad0300,3, 0xdad0404,1, 0xdad0414,5, 0xdad0500,36, 0xdad0600,3, 0xdad0800,2, 0xdad1000,1, 0xdad1008,21, 0xdad1080,1, 0xdad1088,21, 0xdad1100,1, 0xdad1108,21, 0xdad1180,1, 0xdad1188,21, 0xdad1200,1, 0xdad1208,21, 0xdad1280,1, 0xdad1288,21, 0xdad1300,1, 0xdad1308,21, 0xdad1380,1, 0xdad1388,21, 0xdad1400,21, 0xdad1800,142, 0xdad1c00,1, 0xdad2000,4, 0xdad2100,39, 0xdad2200,3, 0xdad2214,3, 0xdad4004,1, 0xdad4020,16, 0xdad4080,2, 0xdad4094,1, 0xdad409c,2, 0xdad40c0,6, 0xdad4100,8, 0xdad8004,17, 0xdad8054,1, 0xdad805c,2, 0xdad8080,1, 0xdad80a0,2, 0xdad80b4,4, 0xdad8100,2, 0xdad8200,8, 0xdad8400,1, 0xdad8600,27, 0xdad8680,4, 0xdad86c0,25, 0xdad8740,6, 0xdad8760,2, 0xdad876c,3, 0xdad8780,8, 0xdad87a4,3, 0xdad8800,44, 0xdad8900,1, 0xdae0000,1, 0xdae0200,27, 0xdae0280,4, 0xdae02c0,25, 0xdae0340,6, 0xdae0360,2, 0xdae036c,3, 0xdae0380,8, 0xdae03a4,1, 0xdae0400,20, 0xdae0480,3, 0xdae0490,9, 0xdb00000,198, 0xdb00400,2, 0xdb00440,9, 0xdb00480,7, 0xdb00800,198, 0xdb00c00,2, 0xdb00c40,9, 0xdb00c80,7, 0xdb01000,198, 0xdb01400,198, 0xdb01804,6, 0xdb01824,6, 0xdb01880,2, 0xdb01904,1, 0xdb01918,28, 0xdb019a0,6, 0xdb019c0,6, 0xdb01c00,2, 0xdb01d00,2, 0xdb01e04,1, 0xdb01e74,43, 0xdb02000,2, 0xdb02100,2, 0xdb02204,1, 0xdb02274,43, 0xdb02400,3, 0xdb02600,27, 0xdb02680,4, 0xdb026c0,25, 0xdb02740,6, 0xdb02760,4, 0xdb02774,11, 0xdb027a4,4, 0xdb02800,4, 0xdb02900,34, 0xdb02a00,4, 0xdb02b00,34, 0xdb02c00,3, 0xdb02c10,12, 0xdb02e00,56, 0xdb02ee4,4, 0xdb02f00,4, 0xdb03000,1, 0xdb08000,4, 0xdb08100,42, 0xdb08200,1, 0xdb08210,3, 0xdb08220,3, 0xdb08230,3, 0xdb08240,1, 0xdb08248,3, 0xdb08400,4, 0xdb08500,58, 0xdb08600,1, 0xdb08610,3, 0xdb08620,3, 0xdb08630,3, 0xdb08640,1, 0xdb08648,3, 0xdb08800,4, 0xdb08900,36, 0xdb08a00,1, 0xdb08c00,4, 0xdb08c80,27, 0xdb08d00,1, 0xdb08d10,3, 0xdb08d20,3, 0xdb08d30,3, 0xdb08d40,1, 0xdb08d48,3, 0xdb08e00,4, 0xdb08e80,31, 0xdb08f00,1, 0xdb08f10,3, 0xdb08f20,3, 0xdb08f30,3, 0xdb08f40,1, 0xdb08f48,3, 0xdb09000,4, 0xdb09040,13, 0xdb09080,1, 0xdb09200,15, 0xdb09240,4, 0xdb09260,17, 0xdb092c0,6, 0xdb092e0,2, 0xdb092ec,3, 0xdb09300,8, 0xdb09324,8, 0xdb09400,68, 0xdb09600,60, 0xdb09700,4, 0xdb09720,5, 0xdb09740,1, 0xdb09780,2, 0xdb0978c,2, 0xdb097a0,1, 0xdb097c0,12, 0xdb09800,7, 0xdb09820,5, 0xdb09900,49, 0xdb09a00,1, 0xdb09a08,23, 0xdb09a84,1, 0xdb09a8c,1, 0xdb09a94,1, 0xdb09a9c,2, 0xdb09ac0,1, 0xdb09c00,10, 0xdb09c40,1, 0xdb09c50,3, 0xdb09c80,10, 0xdb09cc0,12, 0xdb09d00,3, 0xdb09e00,1, 0xdb0a000,4, 0xdb0a100,42, 0xdb0a200,1, 0xdb0a210,3, 0xdb0a220,3, 0xdb0a230,3, 0xdb0a240,1, 0xdb0a248,3, 0xdb0a400,4, 0xdb0a500,58, 0xdb0a600,1, 0xdb0a610,3, 0xdb0a620,3, 0xdb0a630,3, 0xdb0a640,1, 0xdb0a648,3, 0xdb0a800,4, 0xdb0a900,36, 0xdb0aa00,1, 0xdb0ac00,4, 0xdb0ac80,27, 0xdb0ad00,1, 0xdb0ad10,3, 0xdb0ad20,3, 0xdb0ad30,3, 0xdb0ad40,1, 0xdb0ad48,3, 0xdb0ae00,4, 0xdb0ae80,31, 0xdb0af00,1, 0xdb0af10,3, 0xdb0af20,3, 0xdb0af30,3, 0xdb0af40,1, 0xdb0af48,3, 0xdb0b000,4, 0xdb0b040,13, 0xdb0b080,1, 0xdb0b200,15, 0xdb0b240,4, 0xdb0b260,17, 0xdb0b2c0,6, 0xdb0b2e0,2, 0xdb0b2ec,3, 0xdb0b300,8, 0xdb0b324,8, 0xdb0b400,68, 0xdb0b600,60, 0xdb0b700,4, 0xdb0b720,5, 0xdb0b740,1, 0xdb0b780,2, 0xdb0b78c,2, 0xdb0b7a0,1, 0xdb0b7c0,12, 0xdb0b800,7, 0xdb0b820,5, 0xdb0b900,49, 0xdb0ba00,1, 0xdb0ba08,23, 0xdb0ba84,1, 0xdb0ba8c,1, 0xdb0ba94,1, 0xdb0ba9c,2, 0xdb0bac0,1, 0xdb0bc00,10, 0xdb0bc40,1, 0xdb0bc50,3, 0xdb0bc80,10, 0xdb0bcc0,12, 0xdb0bd00,3, 0xdb0be00,1, 0xdb0c000,20, 0xdb0c080,3, 0xdb0c090,1, 0xdb0c098,4, 0xdb10000,49, 0xdb10100,12, 0xdb10140,4, 0xdb10184,1, 0xdb10198,2, 0xdb101a4,1, 0xdb101b8,7, 0xdb101e0,4, 0xdb10200,20, 0xdb10280,3, 0xdb10290,9, 0xdb102c0,6, 0xdb102e0,1, 0xdb102e8,7, 0xdb10400,49, 0xdb10500,12, 0xdb10540,4, 0xdb10584,1, 0xdb10598,2, 0xdb105a4,1, 0xdb105b8,7, 0xdb105e0,4, 0xdb10600,20, 0xdb10680,3, 0xdb10690,9, 0xdb106c0,6, 0xdb106e0,1, 0xdb106e8,7, 0xdb10800,49, 0xdb10900,12, 0xdb10940,4, 0xdb10984,1, 0xdb10998,2, 0xdb109a4,1, 0xdb109b8,7, 0xdb109e0,4, 0xdb10a00,20, 0xdb10a80,3, 0xdb10a90,9, 0xdb10ac0,6, 0xdb10ae0,1, 0xdb10ae8,7, 0xdb10c00,49, 0xdb10d00,12, 0xdb10d40,4, 0xdb10d84,1, 0xdb10d98,2, 0xdb10da4,1, 0xdb10db8,7, 0xdb10de0,4, 0xdb10e00,20, 0xdb10e80,3, 0xdb10e90,9, 0xdb10ec0,6, 0xdb10ee0,1, 0xdb10ee8,7, 0xdb11000,49, 0xdb11100,12, 0xdb11140,4, 0xdb11184,1, 0xdb11198,2, 0xdb111a4,1, 0xdb111b8,7, 0xdb111e0,4, 0xdb11200,20, 0xdb11280,3, 0xdb11290,9, 0xdb112c0,6, 0xdb112e0,1, 0xdb112e8,7, 0xdb11400,49, 0xdb11500,12, 0xdb11540,4, 0xdb11584,1, 0xdb11598,2, 0xdb115a4,1, 0xdb115b8,7, 0xdb115e0,4, 0xdb11600,20, 0xdb11680,3, 0xdb11690,9, 0xdb116c0,6, 0xdb116e0,1, 0xdb116e8,7, 0xdb11800,49, 0xdb11900,12, 0xdb11940,4, 0xdb11984,1, 0xdb11998,2, 0xdb119a4,1, 0xdb119b8,7, 0xdb119e0,4, 0xdb11a00,20, 0xdb11a80,3, 0xdb11a90,9, 0xdb11ac0,6, 0xdb11ae0,1, 0xdb11ae8,7, 0xdb12000,20, 0xdb12080,10, 0xdb12100,20, 0xdb12180,10, 0xdb12200,12, 0xdb12400,20, 0xdb12480,10, 0xdb12500,20, 0xdb12580,10, 0xdb12600,12, 0xdb12800,3, 0xdb12840,12, 0xdb12880,12, 0xdb128c0,12, 0xdb12900,12, 0xdb12940,12, 0xdb12980,12, 0xdb129c0,12, 0xdb12a00,12, 0xdb12c00,12, 0xdb12c40,7, 0xdb12c60,10, 0xdb13004,1, 0xdb13044,43, 0xdb13100,7, 0xdb13120,7, 0xdb13140,2, 0xdb1314c,2, 0xdb13160,2, 0xdb1316c,2, 0xdb13180,18, 0xdb13200,2, 0xdb13220,10, 0xdb13260,20, 0xdb132c0,9, 0xdb13300,15, 0xdb13340,9, 0xdb13380,6, 0xdb133a0,4, 0xdb13400,5, 0xdb14000,53, 0xdb14100,3, 0xdb14110,15, 0xdb14200,53, 0xdb14300,3, 0xdb14310,15, 0xdb14400,5, 0xdb14420,5, 0xdb14440,18, 0xdb14800,3, 0xdb14810,2, 0xdb14820,3, 0xdb14830,2, 0xdb14840,1, 0xdb15000,7, 0xdb15020,7, 0xdb15080,19, 0xdb15100,19, 0xdb15180,25, 0xdb15200,20, 0xdb15280,20, 0xdb15300,8, 0xdb15340,4, 0xdb15380,15, 0xdb153c0,15, 0xdb15400,9, 0xdb15430,5, 0xdb16000,6, 0xdb16020,1, 0xdb16028,2, 0xdb16040,11, 0xdb16070,2, 0xdb18000,82, 0xdb18200,2, 0xdb18240,9, 0xdb18280,7, 0xdb18400,82, 0xdb18604,6, 0xdb18700,15, 0xdb18740,9, 0xdb18780,6, 0xdb187a0,6, 0xdb18800,2, 0xdb18810,3, 0xdb18880,24, 0xdb188e4,1, 0xdb188f0,12, 0xdb20000,22, 0xdb20080,22, 0xdb20100,5, 0xdb20120,5, 0xdb20140,3, 0xdb20160,16, 0xdb201c0,7, 0xdb201e0,2, 0xdb20200,7, 0xdb20220,2, 0xdb20400,15, 0xdb20440,3, 0xdb20450,3, 0xdb20460,24, 0xdb20500,15, 0xdb20540,3, 0xdb20550,3, 0xdb20560,24, 0xdb20600,15, 0xdb20640,3, 0xdb20650,3, 0xdb20660,24, 0xdb20700,15, 0xdb20740,3, 0xdb20750,3, 0xdb20760,24, 0xdb20800,4, 0xdb20820,16, 0xdb20880,10, 0xdb208c0,10, 0xdb20900,6, 0xdb20920,6, 0xdb20940,4, 0xdb20980,13, 0xdb209c0,13, 0xdb20a00,9, 0xdb21000,86, 0xdb21200,2, 0xdb21240,9, 0xdb21280,7, 0xdb21400,86, 0xdb21604,6, 0xdb21800,86, 0xdb21a00,2, 0xdb21a40,9, 0xdb21a80,7, 0xdb21c00,86, 0xdb21e04,6, 0xdb22000,15, 0xdb22040,4, 0xdb22060,17, 0xdb220c0,6, 0xdb220e0,4, 0xdb220f4,11, 0xdb22128,38, 0xdb221c4,2, 0xdb221d0,4, 0xdb22200,1, 0xdb24000,22, 0xdb24080,22, 0xdb24100,5, 0xdb24120,5, 0xdb24140,3, 0xdb24160,16, 0xdb241c0,7, 0xdb241e0,2, 0xdb24200,7, 0xdb24220,2, 0xdb24400,15, 0xdb24440,3, 0xdb24450,3, 0xdb24460,24, 0xdb24500,15, 0xdb24540,3, 0xdb24550,3, 0xdb24560,24, 0xdb24600,15, 0xdb24640,3, 0xdb24650,3, 0xdb24660,24, 0xdb24700,15, 0xdb24740,3, 0xdb24750,3, 0xdb24760,24, 0xdb24800,4, 0xdb24820,16, 0xdb24880,10, 0xdb248c0,10, 0xdb24900,6, 0xdb24920,6, 0xdb24940,4, 0xdb24980,13, 0xdb249c0,13, 0xdb24a00,9, 0xdb25000,86, 0xdb25200,2, 0xdb25240,9, 0xdb25280,7, 0xdb25400,86, 0xdb25604,6, 0xdb25800,86, 0xdb25a00,2, 0xdb25a40,9, 0xdb25a80,7, 0xdb25c00,86, 0xdb25e04,6, 0xdb26000,15, 0xdb26040,4, 0xdb26060,17, 0xdb260c0,6, 0xdb260e0,4, 0xdb260f4,11, 0xdb26128,38, 0xdb261c4,2, 0xdb261d0,4, 0xdb26200,1, 0xdb28000,9, 0xdb28040,9, 0xdb28080,5, 0xdb28100,21, 0xdb28160,5, 0xdb28180,45, 0xdb28240,13, 0xdb28280,9, 0xdb28400,9, 0xdb28440,9, 0xdb28480,5, 0xdb28500,21, 0xdb28560,5, 0xdb28580,45, 0xdb28640,13, 0xdb28680,9, 0xdb28800,12, 0xdb28900,15, 0xdb28940,4, 0xdb28960,17, 0xdb289c0,6, 0xdb289e0,4, 0xdb289f4,29, 0xdb2c000,30, 0xdb2c080,3, 0xdb2c090,19, 0xdb2c100,30, 0xdb2c180,3, 0xdb2c190,19, 0xdb2c200,30, 0xdb2c280,3, 0xdb2c290,19, 0xdb2c300,30, 0xdb2c380,3, 0xdb2c390,19, 0xdb2c400,30, 0xdb2c480,3, 0xdb2c490,19, 0xdb2c500,30, 0xdb2c580,3, 0xdb2c590,19, 0xdb2c600,30, 0xdb2c680,3, 0xdb2c690,19, 0xdb2c700,30, 0xdb2c780,3, 0xdb2c790,19, 0xdb2c800,12, 0xdb2c844,1, 0xdb2c854,8, 0xdb2c880,7, 0xdb2c8a0,2, 0xdb2c8ac,2, 0xdb2c8c0,26, 0xdb2c980,4, 0xdb2c9a0,5, 0xdb2c9c0,1, 0xdb2d000,3, 0xdb2d010,3, 0xdb2d020,3, 0xdb2d030,3, 0xdb2d040,3, 0xdb2d050,3, 0xdb2d060,3, 0xdb2d070,3, 0xdb2d080,6, 0xdb2d0a0,6, 0xdb2d0c0,6, 0xdb2d0e0,6, 0xdb2d100,6, 0xdb2d120,6, 0xdb2d140,6, 0xdb2d160,6, 0xdb2d200,68, 0xdb2d400,1, 0xdb2d804,1, 0xdb2d844,54, 0xdb2da00,12, 0xdb2da40,12, 0xdb2da80,12, 0xdb2dac0,12, 0xdb2db00,12, 0xdb2db40,12, 0xdb2db80,12, 0xdb2dbc0,12, 0xdb2dc00,28, 0xdb2dc80,10, 0xdb2e000,3, 0xdb2e020,6, 0xdb2e040,6, 0xdb2e060,15, 0xdb2e100,26, 0xdb2e180,15, 0xdb2e200,15, 0xdb2e240,4, 0xdb2e260,17, 0xdb2e2c0,6, 0xdb2e2e0,4, 0xdb2e2f4,18, 0xdb2e340,4, 0xdb2e360,17, 0xdb2e3c0,6, 0xdb2e3e0,4, 0xdb2e3f4,15, 0xdb30000,1, 0xdb31000,1020, 0xdb32000,194, 0xdb33000,1020, 0xdb34000,1020, 0xdb35000,1020, 0xdb36000,1020, 0xdb37000,1020, 0xdb38000,1020, 0xdb39000,1020, 0xdb3a000,1020, 0xdb3b000,194, 0xdb3c000,3, 0xdb3c010,13, 0xdb3c080,16, 0xdb3c100,20, 0xdb3c184,1, 0xdb3c18c,4, 0xdb3c200,3, 0xdb3c210,13, 0xdb3c280,16, 0xdb3c300,20, 0xdb3c384,1, 0xdb3c38c,4, 0xdb3c400,3, 0xdb3c410,13, 0xdb3c480,16, 0xdb3c500,20, 0xdb3c584,1, 0xdb3c58c,4, 0xdb3c600,3, 0xdb3c610,13, 0xdb3c680,16, 0xdb3c700,20, 0xdb3c784,1, 0xdb3c78c,4, 0xdb3c800,3, 0xdb3c810,13, 0xdb3c880,16, 0xdb3c900,20, 0xdb3c984,1, 0xdb3c98c,4, 0xdb3ca00,3, 0xdb3ca10,13, 0xdb3ca80,16, 0xdb3cb00,20, 0xdb3cb84,1, 0xdb3cb8c,4, 0xdb3cc00,3, 0xdb3cc10,13, 0xdb3cc80,16, 0xdb3cd00,20, 0xdb3cd84,1, 0xdb3cd8c,4, 0xdb3ce00,3, 0xdb3ce10,13, 0xdb3ce80,16, 0xdb3cf00,20, 0xdb3cf84,1, 0xdb3cf8c,4, 0xdb3d000,3, 0xdb3d010,13, 0xdb3d080,16, 0xdb3d100,20, 0xdb3d184,1, 0xdb3d18c,4, 0xdb3d200,18, 0xdb3d250,2, 0xdb3d260,4, 0xdb3e000,1, 0xdb3e014,1, 0xdb3e01c,19, 0xdb3e080,1, 0xdb3e094,1, 0xdb3e09c,19, 0xdb3e100,8, 0xdb3e200,13, 0xdb3e240,9, 0xdb3e280,12, 0xdb3e2c0,2, 0xdb3e2e0,12, 0xdb40000,3, 0xdb40080,20, 0xdb40100,10, 0xdb40140,1, 0xdb40154,1, 0xdb4015c,2, 0xdb40200,15, 0xdb40240,4, 0xdb40260,17, 0xdb402c0,6, 0xdb402e0,2, 0xdb402ec,3, 0xdb40300,8, 0xdb40324,1, 0xdb40400,4, 0xdb40440,20, 0xdb404c0,9, 0xdb40500,33, 0xdb40600,11, 0xdb40640,11, 0xdb40680,1, 0xdb42000,1, 0xdb42200,4, 0xdb42300,53, 0xdb42400,4, 0xdb42500,40, 0xdb42600,15, 0xdb42640,4, 0xdb42660,17, 0xdb426c0,6, 0xdb426e0,2, 0xdb426ec,3, 0xdb42700,8, 0xdb42724,1, 0xdb42800,20, 0xdb42c00,53, 0xdb42d00,53, 0xdb42e00,1, 0xdb43000,40, 0xdb43100,40, 0xdb43200,1, 0xdb43400,1, 0xdb43804,1, 0xdb43844,39, 0xdb43900,3, 0xdb43a00,3, 0xdb43a44,1, 0xdb43a50,4, 0xdb43a80,1, 0xdb44000,2, 0xdb44200,27, 0xdb44280,4, 0xdb442c0,25, 0xdb44340,6, 0xdb44360,2, 0xdb4436c,3, 0xdb44380,8, 0xdb443a4,1, 0xdb44400,12, 0xdb44440,1, 0xdb48000,3, 0xdb48080,20, 0xdb48100,10, 0xdb48140,1, 0xdb48154,1, 0xdb4815c,2, 0xdb48200,15, 0xdb48240,4, 0xdb48260,17, 0xdb482c0,6, 0xdb482e0,2, 0xdb482ec,3, 0xdb48300,8, 0xdb48324,1, 0xdb48400,4, 0xdb48440,20, 0xdb484c0,9, 0xdb48500,33, 0xdb48600,11, 0xdb48640,11, 0xdb48680,1, 0xdb4a000,1, 0xdb4a200,4, 0xdb4a300,53, 0xdb4a400,4, 0xdb4a500,40, 0xdb4a600,15, 0xdb4a640,4, 0xdb4a660,17, 0xdb4a6c0,6, 0xdb4a6e0,2, 0xdb4a6ec,3, 0xdb4a700,8, 0xdb4a724,1, 0xdb4a800,20, 0xdb4ac00,53, 0xdb4ad00,53, 0xdb4ae00,1, 0xdb4b000,40, 0xdb4b100,40, 0xdb4b200,1, 0xdb4b400,1, 0xdb4b804,1, 0xdb4b844,39, 0xdb4b900,3, 0xdb4ba00,3, 0xdb4ba44,1, 0xdb4ba50,4, 0xdb4ba80,1, 0xdb4c000,2, 0xdb4c200,27, 0xdb4c280,4, 0xdb4c2c0,25, 0xdb4c340,6, 0xdb4c360,2, 0xdb4c36c,3, 0xdb4c380,8, 0xdb4c3a4,1, 0xdb4c400,12, 0xdb4c440,1, 0xdb50000,4, 0xdb50020,3, 0xdb50030,2, 0xdb50200,1, 0xdb50224,10, 0xdb50250,5, 0xdb50280,1, 0xdb50288,24, 0xdb50300,3, 0xdb50404,1, 0xdb50414,5, 0xdb50500,36, 0xdb50600,3, 0xdb50800,2, 0xdb51000,1, 0xdb51008,21, 0xdb51080,1, 0xdb51088,21, 0xdb51100,1, 0xdb51108,21, 0xdb51180,1, 0xdb51188,21, 0xdb51200,1, 0xdb51208,21, 0xdb51280,1, 0xdb51288,21, 0xdb51300,1, 0xdb51308,21, 0xdb51380,1, 0xdb51388,21, 0xdb51400,21, 0xdb51800,142, 0xdb51c00,1, 0xdb52000,4, 0xdb52100,39, 0xdb52200,3, 0xdb52214,3, 0xdb54004,1, 0xdb54020,16, 0xdb54080,2, 0xdb54094,1, 0xdb5409c,2, 0xdb540c0,6, 0xdb54100,8, 0xdb58004,17, 0xdb58054,1, 0xdb5805c,2, 0xdb58080,1, 0xdb580a0,2, 0xdb580b4,4, 0xdb58100,2, 0xdb58200,8, 0xdb58400,1, 0xdb58600,27, 0xdb58680,4, 0xdb586c0,25, 0xdb58740,6, 0xdb58760,2, 0xdb5876c,3, 0xdb58780,8, 0xdb587a4,3, 0xdb58800,44, 0xdb58900,1, 0xdb60000,1, 0xdb60200,27, 0xdb60280,4, 0xdb602c0,25, 0xdb60340,6, 0xdb60360,2, 0xdb6036c,3, 0xdb60380,8, 0xdb603a4,1, 0xdb60400,20, 0xdb60480,3, 0xdb60490,9, 0xdb80000,198, 0xdb80400,2, 0xdb80440,9, 0xdb80480,7, 0xdb80800,198, 0xdb80c00,2, 0xdb80c40,9, 0xdb80c80,7, 0xdb81000,198, 0xdb81400,198, 0xdb81804,6, 0xdb81824,6, 0xdb81880,2, 0xdb81904,1, 0xdb81918,28, 0xdb819a0,6, 0xdb819c0,6, 0xdb81c00,2, 0xdb81d00,2, 0xdb81e04,1, 0xdb81e74,43, 0xdb82000,2, 0xdb82100,2, 0xdb82204,1, 0xdb82274,43, 0xdb82400,3, 0xdb82600,27, 0xdb82680,4, 0xdb826c0,25, 0xdb82740,6, 0xdb82760,4, 0xdb82774,11, 0xdb827a4,4, 0xdb82800,4, 0xdb82900,34, 0xdb82a00,4, 0xdb82b00,34, 0xdb82c00,3, 0xdb82c10,12, 0xdb82e00,56, 0xdb82ee4,4, 0xdb82f00,4, 0xdb83000,1, 0xdb88000,4, 0xdb88100,42, 0xdb88200,1, 0xdb88210,3, 0xdb88220,3, 0xdb88230,3, 0xdb88240,1, 0xdb88248,3, 0xdb88400,4, 0xdb88500,58, 0xdb88600,1, 0xdb88610,3, 0xdb88620,3, 0xdb88630,3, 0xdb88640,1, 0xdb88648,3, 0xdb88800,4, 0xdb88900,36, 0xdb88a00,1, 0xdb88c00,4, 0xdb88c80,27, 0xdb88d00,1, 0xdb88d10,3, 0xdb88d20,3, 0xdb88d30,3, 0xdb88d40,1, 0xdb88d48,3, 0xdb88e00,4, 0xdb88e80,31, 0xdb88f00,1, 0xdb88f10,3, 0xdb88f20,3, 0xdb88f30,3, 0xdb88f40,1, 0xdb88f48,3, 0xdb89000,4, 0xdb89040,13, 0xdb89080,1, 0xdb89200,15, 0xdb89240,4, 0xdb89260,17, 0xdb892c0,6, 0xdb892e0,2, 0xdb892ec,3, 0xdb89300,8, 0xdb89324,8, 0xdb89400,68, 0xdb89600,60, 0xdb89700,4, 0xdb89720,5, 0xdb89740,1, 0xdb89780,2, 0xdb8978c,2, 0xdb897a0,1, 0xdb897c0,12, 0xdb89800,7, 0xdb89820,5, 0xdb89900,49, 0xdb89a00,1, 0xdb89a08,23, 0xdb89a84,1, 0xdb89a8c,1, 0xdb89a94,1, 0xdb89a9c,2, 0xdb89ac0,1, 0xdb89c00,10, 0xdb89c40,1, 0xdb89c50,3, 0xdb89c80,10, 0xdb89cc0,12, 0xdb89d00,3, 0xdb89e00,1, 0xdb8a000,4, 0xdb8a100,42, 0xdb8a200,1, 0xdb8a210,3, 0xdb8a220,3, 0xdb8a230,3, 0xdb8a240,1, 0xdb8a248,3, 0xdb8a400,4, 0xdb8a500,58, 0xdb8a600,1, 0xdb8a610,3, 0xdb8a620,3, 0xdb8a630,3, 0xdb8a640,1, 0xdb8a648,3, 0xdb8a800,4, 0xdb8a900,36, 0xdb8aa00,1, 0xdb8ac00,4, 0xdb8ac80,27, 0xdb8ad00,1, 0xdb8ad10,3, 0xdb8ad20,3, 0xdb8ad30,3, 0xdb8ad40,1, 0xdb8ad48,3, 0xdb8ae00,4, 0xdb8ae80,31, 0xdb8af00,1, 0xdb8af10,3, 0xdb8af20,3, 0xdb8af30,3, 0xdb8af40,1, 0xdb8af48,3, 0xdb8b000,4, 0xdb8b040,13, 0xdb8b080,1, 0xdb8b200,15, 0xdb8b240,4, 0xdb8b260,17, 0xdb8b2c0,6, 0xdb8b2e0,2, 0xdb8b2ec,3, 0xdb8b300,8, 0xdb8b324,8, 0xdb8b400,68, 0xdb8b600,60, 0xdb8b700,4, 0xdb8b720,5, 0xdb8b740,1, 0xdb8b780,2, 0xdb8b78c,2, 0xdb8b7a0,1, 0xdb8b7c0,12, 0xdb8b800,7, 0xdb8b820,5, 0xdb8b900,49, 0xdb8ba00,1, 0xdb8ba08,23, 0xdb8ba84,1, 0xdb8ba8c,1, 0xdb8ba94,1, 0xdb8ba9c,2, 0xdb8bac0,1, 0xdb8bc00,10, 0xdb8bc40,1, 0xdb8bc50,3, 0xdb8bc80,10, 0xdb8bcc0,12, 0xdb8bd00,3, 0xdb8be00,1, 0xdb8c000,20, 0xdb8c080,3, 0xdb8c090,1, 0xdb8c098,4, 0xdb90000,49, 0xdb90100,12, 0xdb90140,4, 0xdb90184,1, 0xdb90198,2, 0xdb901a4,1, 0xdb901b8,7, 0xdb901e0,4, 0xdb90200,20, 0xdb90280,3, 0xdb90290,9, 0xdb902c0,6, 0xdb902e0,1, 0xdb902e8,7, 0xdb90400,49, 0xdb90500,12, 0xdb90540,4, 0xdb90584,1, 0xdb90598,2, 0xdb905a4,1, 0xdb905b8,7, 0xdb905e0,4, 0xdb90600,20, 0xdb90680,3, 0xdb90690,9, 0xdb906c0,6, 0xdb906e0,1, 0xdb906e8,7, 0xdb90800,49, 0xdb90900,12, 0xdb90940,4, 0xdb90984,1, 0xdb90998,2, 0xdb909a4,1, 0xdb909b8,7, 0xdb909e0,4, 0xdb90a00,20, 0xdb90a80,3, 0xdb90a90,9, 0xdb90ac0,6, 0xdb90ae0,1, 0xdb90ae8,7, 0xdb90c00,49, 0xdb90d00,12, 0xdb90d40,4, 0xdb90d84,1, 0xdb90d98,2, 0xdb90da4,1, 0xdb90db8,7, 0xdb90de0,4, 0xdb90e00,20, 0xdb90e80,3, 0xdb90e90,9, 0xdb90ec0,6, 0xdb90ee0,1, 0xdb90ee8,7, 0xdb91000,49, 0xdb91100,12, 0xdb91140,4, 0xdb91184,1, 0xdb91198,2, 0xdb911a4,1, 0xdb911b8,7, 0xdb911e0,4, 0xdb91200,20, 0xdb91280,3, 0xdb91290,9, 0xdb912c0,6, 0xdb912e0,1, 0xdb912e8,7, 0xdb91400,49, 0xdb91500,12, 0xdb91540,4, 0xdb91584,1, 0xdb91598,2, 0xdb915a4,1, 0xdb915b8,7, 0xdb915e0,4, 0xdb91600,20, 0xdb91680,3, 0xdb91690,9, 0xdb916c0,6, 0xdb916e0,1, 0xdb916e8,7, 0xdb91800,49, 0xdb91900,12, 0xdb91940,4, 0xdb91984,1, 0xdb91998,2, 0xdb919a4,1, 0xdb919b8,7, 0xdb919e0,4, 0xdb91a00,20, 0xdb91a80,3, 0xdb91a90,9, 0xdb91ac0,6, 0xdb91ae0,1, 0xdb91ae8,7, 0xdb92000,20, 0xdb92080,10, 0xdb92100,20, 0xdb92180,10, 0xdb92200,12, 0xdb92400,20, 0xdb92480,10, 0xdb92500,20, 0xdb92580,10, 0xdb92600,12, 0xdb92800,3, 0xdb92840,12, 0xdb92880,12, 0xdb928c0,12, 0xdb92900,12, 0xdb92940,12, 0xdb92980,12, 0xdb929c0,12, 0xdb92a00,12, 0xdb92c00,12, 0xdb92c40,7, 0xdb92c60,10, 0xdb93004,1, 0xdb93044,43, 0xdb93100,7, 0xdb93120,7, 0xdb93140,2, 0xdb9314c,2, 0xdb93160,2, 0xdb9316c,2, 0xdb93180,18, 0xdb93200,2, 0xdb93220,10, 0xdb93260,20, 0xdb932c0,9, 0xdb93300,15, 0xdb93340,9, 0xdb93380,6, 0xdb933a0,4, 0xdb93400,5, 0xdb94000,53, 0xdb94100,3, 0xdb94110,15, 0xdb94200,53, 0xdb94300,3, 0xdb94310,15, 0xdb94400,5, 0xdb94420,5, 0xdb94440,18, 0xdb94800,3, 0xdb94810,2, 0xdb94820,3, 0xdb94830,2, 0xdb94840,1, 0xdb95000,7, 0xdb95020,7, 0xdb95080,19, 0xdb95100,19, 0xdb95180,25, 0xdb95200,20, 0xdb95280,20, 0xdb95300,8, 0xdb95340,4, 0xdb95380,15, 0xdb953c0,15, 0xdb95400,9, 0xdb95430,5, 0xdb96000,6, 0xdb96020,1, 0xdb96028,2, 0xdb96040,11, 0xdb96070,2, 0xdb98000,82, 0xdb98200,2, 0xdb98240,9, 0xdb98280,7, 0xdb98400,82, 0xdb98604,6, 0xdb98700,15, 0xdb98740,9, 0xdb98780,6, 0xdb987a0,6, 0xdb98800,2, 0xdb98810,3, 0xdb98880,24, 0xdb988e4,1, 0xdb988f0,12, 0xdba0000,22, 0xdba0080,22, 0xdba0100,5, 0xdba0120,5, 0xdba0140,3, 0xdba0160,16, 0xdba01c0,7, 0xdba01e0,2, 0xdba0200,7, 0xdba0220,2, 0xdba0400,15, 0xdba0440,3, 0xdba0450,3, 0xdba0460,24, 0xdba0500,15, 0xdba0540,3, 0xdba0550,3, 0xdba0560,24, 0xdba0600,15, 0xdba0640,3, 0xdba0650,3, 0xdba0660,24, 0xdba0700,15, 0xdba0740,3, 0xdba0750,3, 0xdba0760,24, 0xdba0800,4, 0xdba0820,16, 0xdba0880,10, 0xdba08c0,10, 0xdba0900,6, 0xdba0920,6, 0xdba0940,4, 0xdba0980,13, 0xdba09c0,13, 0xdba0a00,9, 0xdba1000,86, 0xdba1200,2, 0xdba1240,9, 0xdba1280,7, 0xdba1400,86, 0xdba1604,6, 0xdba1800,86, 0xdba1a00,2, 0xdba1a40,9, 0xdba1a80,7, 0xdba1c00,86, 0xdba1e04,6, 0xdba2000,15, 0xdba2040,4, 0xdba2060,17, 0xdba20c0,6, 0xdba20e0,4, 0xdba20f4,11, 0xdba2128,38, 0xdba21c4,2, 0xdba21d0,4, 0xdba2200,1, 0xdba4000,22, 0xdba4080,22, 0xdba4100,5, 0xdba4120,5, 0xdba4140,3, 0xdba4160,16, 0xdba41c0,7, 0xdba41e0,2, 0xdba4200,7, 0xdba4220,2, 0xdba4400,15, 0xdba4440,3, 0xdba4450,3, 0xdba4460,24, 0xdba4500,15, 0xdba4540,3, 0xdba4550,3, 0xdba4560,24, 0xdba4600,15, 0xdba4640,3, 0xdba4650,3, 0xdba4660,24, 0xdba4700,15, 0xdba4740,3, 0xdba4750,3, 0xdba4760,24, 0xdba4800,4, 0xdba4820,16, 0xdba4880,10, 0xdba48c0,10, 0xdba4900,6, 0xdba4920,6, 0xdba4940,4, 0xdba4980,13, 0xdba49c0,13, 0xdba4a00,9, 0xdba5000,86, 0xdba5200,2, 0xdba5240,9, 0xdba5280,7, 0xdba5400,86, 0xdba5604,6, 0xdba5800,86, 0xdba5a00,2, 0xdba5a40,9, 0xdba5a80,7, 0xdba5c00,86, 0xdba5e04,6, 0xdba6000,15, 0xdba6040,4, 0xdba6060,17, 0xdba60c0,6, 0xdba60e0,4, 0xdba60f4,11, 0xdba6128,38, 0xdba61c4,2, 0xdba61d0,4, 0xdba6200,1, 0xdba8000,9, 0xdba8040,9, 0xdba8080,5, 0xdba8100,21, 0xdba8160,5, 0xdba8180,45, 0xdba8240,13, 0xdba8280,9, 0xdba8400,9, 0xdba8440,9, 0xdba8480,5, 0xdba8500,21, 0xdba8560,5, 0xdba8580,45, 0xdba8640,13, 0xdba8680,9, 0xdba8800,12, 0xdba8900,15, 0xdba8940,4, 0xdba8960,17, 0xdba89c0,6, 0xdba89e0,4, 0xdba89f4,29, 0xdbac000,30, 0xdbac080,3, 0xdbac090,19, 0xdbac100,30, 0xdbac180,3, 0xdbac190,19, 0xdbac200,30, 0xdbac280,3, 0xdbac290,19, 0xdbac300,30, 0xdbac380,3, 0xdbac390,19, 0xdbac400,30, 0xdbac480,3, 0xdbac490,19, 0xdbac500,30, 0xdbac580,3, 0xdbac590,19, 0xdbac600,30, 0xdbac680,3, 0xdbac690,19, 0xdbac700,30, 0xdbac780,3, 0xdbac790,19, 0xdbac800,12, 0xdbac844,1, 0xdbac854,8, 0xdbac880,7, 0xdbac8a0,2, 0xdbac8ac,2, 0xdbac8c0,26, 0xdbac980,4, 0xdbac9a0,5, 0xdbac9c0,1, 0xdbad000,3, 0xdbad010,3, 0xdbad020,3, 0xdbad030,3, 0xdbad040,3, 0xdbad050,3, 0xdbad060,3, 0xdbad070,3, 0xdbad080,6, 0xdbad0a0,6, 0xdbad0c0,6, 0xdbad0e0,6, 0xdbad100,6, 0xdbad120,6, 0xdbad140,6, 0xdbad160,6, 0xdbad200,68, 0xdbad400,1, 0xdbad804,1, 0xdbad844,54, 0xdbada00,12, 0xdbada40,12, 0xdbada80,12, 0xdbadac0,12, 0xdbadb00,12, 0xdbadb40,12, 0xdbadb80,12, 0xdbadbc0,12, 0xdbadc00,28, 0xdbadc80,10, 0xdbae000,3, 0xdbae020,6, 0xdbae040,6, 0xdbae060,15, 0xdbae100,26, 0xdbae180,15, 0xdbae200,15, 0xdbae240,4, 0xdbae260,17, 0xdbae2c0,6, 0xdbae2e0,4, 0xdbae2f4,18, 0xdbae340,4, 0xdbae360,17, 0xdbae3c0,6, 0xdbae3e0,4, 0xdbae3f4,15, 0xdbb0000,1, 0xdbb1000,1020, 0xdbb2000,194, 0xdbb3000,1020, 0xdbb4000,1020, 0xdbb5000,1020, 0xdbb6000,1020, 0xdbb7000,1020, 0xdbb8000,1020, 0xdbb9000,1020, 0xdbba000,1020, 0xdbbb000,194, 0xdbbc000,3, 0xdbbc010,13, 0xdbbc080,16, 0xdbbc100,20, 0xdbbc184,1, 0xdbbc18c,4, 0xdbbc200,3, 0xdbbc210,13, 0xdbbc280,16, 0xdbbc300,20, 0xdbbc384,1, 0xdbbc38c,4, 0xdbbc400,3, 0xdbbc410,13, 0xdbbc480,16, 0xdbbc500,20, 0xdbbc584,1, 0xdbbc58c,4, 0xdbbc600,3, 0xdbbc610,13, 0xdbbc680,16, 0xdbbc700,20, 0xdbbc784,1, 0xdbbc78c,4, 0xdbbc800,3, 0xdbbc810,13, 0xdbbc880,16, 0xdbbc900,20, 0xdbbc984,1, 0xdbbc98c,4, 0xdbbca00,3, 0xdbbca10,13, 0xdbbca80,16, 0xdbbcb00,20, 0xdbbcb84,1, 0xdbbcb8c,4, 0xdbbcc00,3, 0xdbbcc10,13, 0xdbbcc80,16, 0xdbbcd00,20, 0xdbbcd84,1, 0xdbbcd8c,4, 0xdbbce00,3, 0xdbbce10,13, 0xdbbce80,16, 0xdbbcf00,20, 0xdbbcf84,1, 0xdbbcf8c,4, 0xdbbd000,3, 0xdbbd010,13, 0xdbbd080,16, 0xdbbd100,20, 0xdbbd184,1, 0xdbbd18c,4, 0xdbbd200,18, 0xdbbd250,2, 0xdbbd260,4, 0xdbbe000,1, 0xdbbe014,1, 0xdbbe01c,19, 0xdbbe080,1, 0xdbbe094,1, 0xdbbe09c,19, 0xdbbe100,8, 0xdbbe200,13, 0xdbbe240,9, 0xdbbe280,12, 0xdbbe2c0,2, 0xdbbe2e0,12, 0xdbc0000,3, 0xdbc0080,20, 0xdbc0100,10, 0xdbc0140,1, 0xdbc0154,1, 0xdbc015c,2, 0xdbc0200,15, 0xdbc0240,4, 0xdbc0260,17, 0xdbc02c0,6, 0xdbc02e0,2, 0xdbc02ec,3, 0xdbc0300,8, 0xdbc0324,1, 0xdbc0400,4, 0xdbc0440,20, 0xdbc04c0,9, 0xdbc0500,33, 0xdbc0600,11, 0xdbc0640,11, 0xdbc0680,1, 0xdbc2000,1, 0xdbc2200,4, 0xdbc2300,53, 0xdbc2400,4, 0xdbc2500,40, 0xdbc2600,15, 0xdbc2640,4, 0xdbc2660,17, 0xdbc26c0,6, 0xdbc26e0,2, 0xdbc26ec,3, 0xdbc2700,8, 0xdbc2724,1, 0xdbc2800,20, 0xdbc2c00,53, 0xdbc2d00,53, 0xdbc2e00,1, 0xdbc3000,40, 0xdbc3100,40, 0xdbc3200,1, 0xdbc3400,1, 0xdbc3804,1, 0xdbc3844,39, 0xdbc3900,3, 0xdbc3a00,3, 0xdbc3a44,1, 0xdbc3a50,4, 0xdbc3a80,1, 0xdbc4000,2, 0xdbc4200,27, 0xdbc4280,4, 0xdbc42c0,25, 0xdbc4340,6, 0xdbc4360,2, 0xdbc436c,3, 0xdbc4380,8, 0xdbc43a4,1, 0xdbc4400,12, 0xdbc4440,1, 0xdbc8000,3, 0xdbc8080,20, 0xdbc8100,10, 0xdbc8140,1, 0xdbc8154,1, 0xdbc815c,2, 0xdbc8200,15, 0xdbc8240,4, 0xdbc8260,17, 0xdbc82c0,6, 0xdbc82e0,2, 0xdbc82ec,3, 0xdbc8300,8, 0xdbc8324,1, 0xdbc8400,4, 0xdbc8440,20, 0xdbc84c0,9, 0xdbc8500,33, 0xdbc8600,11, 0xdbc8640,11, 0xdbc8680,1, 0xdbca000,1, 0xdbca200,4, 0xdbca300,53, 0xdbca400,4, 0xdbca500,40, 0xdbca600,15, 0xdbca640,4, 0xdbca660,17, 0xdbca6c0,6, 0xdbca6e0,2, 0xdbca6ec,3, 0xdbca700,8, 0xdbca724,1, 0xdbca800,20, 0xdbcac00,53, 0xdbcad00,53, 0xdbcae00,1, 0xdbcb000,40, 0xdbcb100,40, 0xdbcb200,1, 0xdbcb400,1, 0xdbcb804,1, 0xdbcb844,39, 0xdbcb900,3, 0xdbcba00,3, 0xdbcba44,1, 0xdbcba50,4, 0xdbcba80,1, 0xdbcc000,2, 0xdbcc200,27, 0xdbcc280,4, 0xdbcc2c0,25, 0xdbcc340,6, 0xdbcc360,2, 0xdbcc36c,3, 0xdbcc380,8, 0xdbcc3a4,1, 0xdbcc400,12, 0xdbcc440,1, 0xdbd0000,4, 0xdbd0020,3, 0xdbd0030,2, 0xdbd0200,1, 0xdbd0224,10, 0xdbd0250,5, 0xdbd0280,1, 0xdbd0288,24, 0xdbd0300,3, 0xdbd0404,1, 0xdbd0414,5, 0xdbd0500,36, 0xdbd0600,3, 0xdbd0800,2, 0xdbd1000,1, 0xdbd1008,21, 0xdbd1080,1, 0xdbd1088,21, 0xdbd1100,1, 0xdbd1108,21, 0xdbd1180,1, 0xdbd1188,21, 0xdbd1200,1, 0xdbd1208,21, 0xdbd1280,1, 0xdbd1288,21, 0xdbd1300,1, 0xdbd1308,21, 0xdbd1380,1, 0xdbd1388,21, 0xdbd1400,21, 0xdbd1800,142, 0xdbd1c00,1, 0xdbd2000,4, 0xdbd2100,39, 0xdbd2200,3, 0xdbd2214,3, 0xdbd4004,1, 0xdbd4020,16, 0xdbd4080,2, 0xdbd4094,1, 0xdbd409c,2, 0xdbd40c0,6, 0xdbd4100,8, 0xdbd8004,17, 0xdbd8054,1, 0xdbd805c,2, 0xdbd8080,1, 0xdbd80a0,2, 0xdbd80b4,4, 0xdbd8100,2, 0xdbd8200,8, 0xdbd8400,1, 0xdbd8600,27, 0xdbd8680,4, 0xdbd86c0,25, 0xdbd8740,6, 0xdbd8760,2, 0xdbd876c,3, 0xdbd8780,8, 0xdbd87a4,3, 0xdbd8800,44, 0xdbd8900,1, 0xdbe0000,1, 0xdbe0200,27, 0xdbe0280,4, 0xdbe02c0,25, 0xdbe0340,6, 0xdbe0360,2, 0xdbe036c,3, 0xdbe0380,8, 0xdbe03a4,1, 0xdbe0400,20, 0xdbe0480,3, 0xdbe0490,9, 0xdc00000,198, 0xdc00400,2, 0xdc00440,9, 0xdc00480,7, 0xdc00800,198, 0xdc00c00,2, 0xdc00c40,9, 0xdc00c80,7, 0xdc01000,198, 0xdc01400,198, 0xdc01804,6, 0xdc01824,6, 0xdc01880,2, 0xdc01904,1, 0xdc01918,28, 0xdc019a0,6, 0xdc019c0,6, 0xdc01c00,2, 0xdc01d00,2, 0xdc01e04,1, 0xdc01e74,43, 0xdc02000,2, 0xdc02100,2, 0xdc02204,1, 0xdc02274,43, 0xdc02400,3, 0xdc02600,27, 0xdc02680,4, 0xdc026c0,25, 0xdc02740,6, 0xdc02760,4, 0xdc02774,11, 0xdc027a4,4, 0xdc02800,4, 0xdc02900,34, 0xdc02a00,4, 0xdc02b00,34, 0xdc02c00,3, 0xdc02c10,12, 0xdc02e00,56, 0xdc02ee4,4, 0xdc02f00,4, 0xdc03000,1, 0xdc08000,4, 0xdc08100,42, 0xdc08200,1, 0xdc08210,3, 0xdc08220,3, 0xdc08230,3, 0xdc08240,1, 0xdc08248,3, 0xdc08400,4, 0xdc08500,58, 0xdc08600,1, 0xdc08610,3, 0xdc08620,3, 0xdc08630,3, 0xdc08640,1, 0xdc08648,3, 0xdc08800,4, 0xdc08900,36, 0xdc08a00,1, 0xdc08c00,4, 0xdc08c80,27, 0xdc08d00,1, 0xdc08d10,3, 0xdc08d20,3, 0xdc08d30,3, 0xdc08d40,1, 0xdc08d48,3, 0xdc08e00,4, 0xdc08e80,31, 0xdc08f00,1, 0xdc08f10,3, 0xdc08f20,3, 0xdc08f30,3, 0xdc08f40,1, 0xdc08f48,3, 0xdc09000,4, 0xdc09040,13, 0xdc09080,1, 0xdc09200,15, 0xdc09240,4, 0xdc09260,17, 0xdc092c0,6, 0xdc092e0,2, 0xdc092ec,3, 0xdc09300,8, 0xdc09324,8, 0xdc09400,68, 0xdc09600,60, 0xdc09700,4, 0xdc09720,5, 0xdc09740,1, 0xdc09780,2, 0xdc0978c,2, 0xdc097a0,1, 0xdc097c0,12, 0xdc09800,7, 0xdc09820,5, 0xdc09900,49, 0xdc09a00,1, 0xdc09a08,23, 0xdc09a84,1, 0xdc09a8c,1, 0xdc09a94,1, 0xdc09a9c,2, 0xdc09ac0,1, 0xdc09c00,10, 0xdc09c40,1, 0xdc09c50,3, 0xdc09c80,10, 0xdc09cc0,12, 0xdc09d00,3, 0xdc09e00,1, 0xdc0a000,4, 0xdc0a100,42, 0xdc0a200,1, 0xdc0a210,3, 0xdc0a220,3, 0xdc0a230,3, 0xdc0a240,1, 0xdc0a248,3, 0xdc0a400,4, 0xdc0a500,58, 0xdc0a600,1, 0xdc0a610,3, 0xdc0a620,3, 0xdc0a630,3, 0xdc0a640,1, 0xdc0a648,3, 0xdc0a800,4, 0xdc0a900,36, 0xdc0aa00,1, 0xdc0ac00,4, 0xdc0ac80,27, 0xdc0ad00,1, 0xdc0ad10,3, 0xdc0ad20,3, 0xdc0ad30,3, 0xdc0ad40,1, 0xdc0ad48,3, 0xdc0ae00,4, 0xdc0ae80,31, 0xdc0af00,1, 0xdc0af10,3, 0xdc0af20,3, 0xdc0af30,3, 0xdc0af40,1, 0xdc0af48,3, 0xdc0b000,4, 0xdc0b040,13, 0xdc0b080,1, 0xdc0b200,15, 0xdc0b240,4, 0xdc0b260,17, 0xdc0b2c0,6, 0xdc0b2e0,2, 0xdc0b2ec,3, 0xdc0b300,8, 0xdc0b324,8, 0xdc0b400,68, 0xdc0b600,60, 0xdc0b700,4, 0xdc0b720,5, 0xdc0b740,1, 0xdc0b780,2, 0xdc0b78c,2, 0xdc0b7a0,1, 0xdc0b7c0,12, 0xdc0b800,7, 0xdc0b820,5, 0xdc0b900,49, 0xdc0ba00,1, 0xdc0ba08,23, 0xdc0ba84,1, 0xdc0ba8c,1, 0xdc0ba94,1, 0xdc0ba9c,2, 0xdc0bac0,1, 0xdc0bc00,10, 0xdc0bc40,1, 0xdc0bc50,3, 0xdc0bc80,10, 0xdc0bcc0,12, 0xdc0bd00,3, 0xdc0be00,1, 0xdc0c000,20, 0xdc0c080,3, 0xdc0c090,1, 0xdc0c098,4, 0xdc10000,49, 0xdc10100,12, 0xdc10140,4, 0xdc10184,1, 0xdc10198,2, 0xdc101a4,1, 0xdc101b8,7, 0xdc101e0,4, 0xdc10200,20, 0xdc10280,3, 0xdc10290,9, 0xdc102c0,6, 0xdc102e0,1, 0xdc102e8,7, 0xdc10400,49, 0xdc10500,12, 0xdc10540,4, 0xdc10584,1, 0xdc10598,2, 0xdc105a4,1, 0xdc105b8,7, 0xdc105e0,4, 0xdc10600,20, 0xdc10680,3, 0xdc10690,9, 0xdc106c0,6, 0xdc106e0,1, 0xdc106e8,7, 0xdc10800,49, 0xdc10900,12, 0xdc10940,4, 0xdc10984,1, 0xdc10998,2, 0xdc109a4,1, 0xdc109b8,7, 0xdc109e0,4, 0xdc10a00,20, 0xdc10a80,3, 0xdc10a90,9, 0xdc10ac0,6, 0xdc10ae0,1, 0xdc10ae8,7, 0xdc10c00,49, 0xdc10d00,12, 0xdc10d40,4, 0xdc10d84,1, 0xdc10d98,2, 0xdc10da4,1, 0xdc10db8,7, 0xdc10de0,4, 0xdc10e00,20, 0xdc10e80,3, 0xdc10e90,9, 0xdc10ec0,6, 0xdc10ee0,1, 0xdc10ee8,7, 0xdc11000,49, 0xdc11100,12, 0xdc11140,4, 0xdc11184,1, 0xdc11198,2, 0xdc111a4,1, 0xdc111b8,7, 0xdc111e0,4, 0xdc11200,20, 0xdc11280,3, 0xdc11290,9, 0xdc112c0,6, 0xdc112e0,1, 0xdc112e8,7, 0xdc11400,49, 0xdc11500,12, 0xdc11540,4, 0xdc11584,1, 0xdc11598,2, 0xdc115a4,1, 0xdc115b8,7, 0xdc115e0,4, 0xdc11600,20, 0xdc11680,3, 0xdc11690,9, 0xdc116c0,6, 0xdc116e0,1, 0xdc116e8,7, 0xdc11800,49, 0xdc11900,12, 0xdc11940,4, 0xdc11984,1, 0xdc11998,2, 0xdc119a4,1, 0xdc119b8,7, 0xdc119e0,4, 0xdc11a00,20, 0xdc11a80,3, 0xdc11a90,9, 0xdc11ac0,6, 0xdc11ae0,1, 0xdc11ae8,7, 0xdc12000,20, 0xdc12080,10, 0xdc12100,20, 0xdc12180,10, 0xdc12200,12, 0xdc12400,20, 0xdc12480,10, 0xdc12500,20, 0xdc12580,10, 0xdc12600,12, 0xdc12800,3, 0xdc12840,12, 0xdc12880,12, 0xdc128c0,12, 0xdc12900,12, 0xdc12940,12, 0xdc12980,12, 0xdc129c0,12, 0xdc12a00,12, 0xdc12c00,12, 0xdc12c40,7, 0xdc12c60,10, 0xdc13004,1, 0xdc13044,43, 0xdc13100,7, 0xdc13120,7, 0xdc13140,2, 0xdc1314c,2, 0xdc13160,2, 0xdc1316c,2, 0xdc13180,18, 0xdc13200,2, 0xdc13220,10, 0xdc13260,20, 0xdc132c0,9, 0xdc13300,15, 0xdc13340,9, 0xdc13380,6, 0xdc133a0,4, 0xdc13400,5, 0xdc14000,53, 0xdc14100,3, 0xdc14110,15, 0xdc14200,53, 0xdc14300,3, 0xdc14310,15, 0xdc14400,5, 0xdc14420,5, 0xdc14440,18, 0xdc14800,3, 0xdc14810,2, 0xdc14820,3, 0xdc14830,2, 0xdc14840,1, 0xdc15000,7, 0xdc15020,7, 0xdc15080,19, 0xdc15100,19, 0xdc15180,25, 0xdc15200,20, 0xdc15280,20, 0xdc15300,8, 0xdc15340,4, 0xdc15380,15, 0xdc153c0,15, 0xdc15400,9, 0xdc15430,5, 0xdc16000,6, 0xdc16020,1, 0xdc16028,2, 0xdc16040,11, 0xdc16070,2, 0xdc18000,82, 0xdc18200,2, 0xdc18240,9, 0xdc18280,7, 0xdc18400,82, 0xdc18604,6, 0xdc18700,15, 0xdc18740,9, 0xdc18780,6, 0xdc187a0,6, 0xdc18800,2, 0xdc18810,3, 0xdc18880,24, 0xdc188e4,1, 0xdc188f0,12, 0xdc20000,22, 0xdc20080,22, 0xdc20100,5, 0xdc20120,5, 0xdc20140,3, 0xdc20160,16, 0xdc201c0,7, 0xdc201e0,2, 0xdc20200,7, 0xdc20220,2, 0xdc20400,15, 0xdc20440,3, 0xdc20450,3, 0xdc20460,24, 0xdc20500,15, 0xdc20540,3, 0xdc20550,3, 0xdc20560,24, 0xdc20600,15, 0xdc20640,3, 0xdc20650,3, 0xdc20660,24, 0xdc20700,15, 0xdc20740,3, 0xdc20750,3, 0xdc20760,24, 0xdc20800,4, 0xdc20820,16, 0xdc20880,10, 0xdc208c0,10, 0xdc20900,6, 0xdc20920,6, 0xdc20940,4, 0xdc20980,13, 0xdc209c0,13, 0xdc20a00,9, 0xdc21000,86, 0xdc21200,2, 0xdc21240,9, 0xdc21280,7, 0xdc21400,86, 0xdc21604,6, 0xdc21800,86, 0xdc21a00,2, 0xdc21a40,9, 0xdc21a80,7, 0xdc21c00,86, 0xdc21e04,6, 0xdc22000,15, 0xdc22040,4, 0xdc22060,17, 0xdc220c0,6, 0xdc220e0,4, 0xdc220f4,11, 0xdc22128,38, 0xdc221c4,2, 0xdc221d0,4, 0xdc22200,1, 0xdc24000,22, 0xdc24080,22, 0xdc24100,5, 0xdc24120,5, 0xdc24140,3, 0xdc24160,16, 0xdc241c0,7, 0xdc241e0,2, 0xdc24200,7, 0xdc24220,2, 0xdc24400,15, 0xdc24440,3, 0xdc24450,3, 0xdc24460,24, 0xdc24500,15, 0xdc24540,3, 0xdc24550,3, 0xdc24560,24, 0xdc24600,15, 0xdc24640,3, 0xdc24650,3, 0xdc24660,24, 0xdc24700,15, 0xdc24740,3, 0xdc24750,3, 0xdc24760,24, 0xdc24800,4, 0xdc24820,16, 0xdc24880,10, 0xdc248c0,10, 0xdc24900,6, 0xdc24920,6, 0xdc24940,4, 0xdc24980,13, 0xdc249c0,13, 0xdc24a00,9, 0xdc25000,86, 0xdc25200,2, 0xdc25240,9, 0xdc25280,7, 0xdc25400,86, 0xdc25604,6, 0xdc25800,86, 0xdc25a00,2, 0xdc25a40,9, 0xdc25a80,7, 0xdc25c00,86, 0xdc25e04,6, 0xdc26000,15, 0xdc26040,4, 0xdc26060,17, 0xdc260c0,6, 0xdc260e0,4, 0xdc260f4,11, 0xdc26128,38, 0xdc261c4,2, 0xdc261d0,4, 0xdc26200,1, 0xdc28000,9, 0xdc28040,9, 0xdc28080,5, 0xdc28100,21, 0xdc28160,5, 0xdc28180,45, 0xdc28240,13, 0xdc28280,9, 0xdc28400,9, 0xdc28440,9, 0xdc28480,5, 0xdc28500,21, 0xdc28560,5, 0xdc28580,45, 0xdc28640,13, 0xdc28680,9, 0xdc28800,12, 0xdc28900,15, 0xdc28940,4, 0xdc28960,17, 0xdc289c0,6, 0xdc289e0,4, 0xdc289f4,29, 0xdc2c000,30, 0xdc2c080,3, 0xdc2c090,19, 0xdc2c100,30, 0xdc2c180,3, 0xdc2c190,19, 0xdc2c200,30, 0xdc2c280,3, 0xdc2c290,19, 0xdc2c300,30, 0xdc2c380,3, 0xdc2c390,19, 0xdc2c400,30, 0xdc2c480,3, 0xdc2c490,19, 0xdc2c500,30, 0xdc2c580,3, 0xdc2c590,19, 0xdc2c600,30, 0xdc2c680,3, 0xdc2c690,19, 0xdc2c700,30, 0xdc2c780,3, 0xdc2c790,19, 0xdc2c800,12, 0xdc2c844,1, 0xdc2c854,8, 0xdc2c880,7, 0xdc2c8a0,2, 0xdc2c8ac,2, 0xdc2c8c0,26, 0xdc2c980,4, 0xdc2c9a0,5, 0xdc2c9c0,1, 0xdc2d000,3, 0xdc2d010,3, 0xdc2d020,3, 0xdc2d030,3, 0xdc2d040,3, 0xdc2d050,3, 0xdc2d060,3, 0xdc2d070,3, 0xdc2d080,6, 0xdc2d0a0,6, 0xdc2d0c0,6, 0xdc2d0e0,6, 0xdc2d100,6, 0xdc2d120,6, 0xdc2d140,6, 0xdc2d160,6, 0xdc2d200,68, 0xdc2d400,1, 0xdc2d804,1, 0xdc2d844,54, 0xdc2da00,12, 0xdc2da40,12, 0xdc2da80,12, 0xdc2dac0,12, 0xdc2db00,12, 0xdc2db40,12, 0xdc2db80,12, 0xdc2dbc0,12, 0xdc2dc00,28, 0xdc2dc80,10, 0xdc2e000,3, 0xdc2e020,6, 0xdc2e040,6, 0xdc2e060,15, 0xdc2e100,26, 0xdc2e180,15, 0xdc2e200,15, 0xdc2e240,4, 0xdc2e260,17, 0xdc2e2c0,6, 0xdc2e2e0,4, 0xdc2e2f4,18, 0xdc2e340,4, 0xdc2e360,17, 0xdc2e3c0,6, 0xdc2e3e0,4, 0xdc2e3f4,15, 0xdc30000,1, 0xdc31000,1020, 0xdc32000,194, 0xdc33000,1020, 0xdc34000,1020, 0xdc35000,1020, 0xdc36000,1020, 0xdc37000,1020, 0xdc38000,1020, 0xdc39000,1020, 0xdc3a000,1020, 0xdc3b000,194, 0xdc3c000,3, 0xdc3c010,13, 0xdc3c080,16, 0xdc3c100,20, 0xdc3c184,1, 0xdc3c18c,4, 0xdc3c200,3, 0xdc3c210,13, 0xdc3c280,16, 0xdc3c300,20, 0xdc3c384,1, 0xdc3c38c,4, 0xdc3c400,3, 0xdc3c410,13, 0xdc3c480,16, 0xdc3c500,20, 0xdc3c584,1, 0xdc3c58c,4, 0xdc3c600,3, 0xdc3c610,13, 0xdc3c680,16, 0xdc3c700,20, 0xdc3c784,1, 0xdc3c78c,4, 0xdc3c800,3, 0xdc3c810,13, 0xdc3c880,16, 0xdc3c900,20, 0xdc3c984,1, 0xdc3c98c,4, 0xdc3ca00,3, 0xdc3ca10,13, 0xdc3ca80,16, 0xdc3cb00,20, 0xdc3cb84,1, 0xdc3cb8c,4, 0xdc3cc00,3, 0xdc3cc10,13, 0xdc3cc80,16, 0xdc3cd00,20, 0xdc3cd84,1, 0xdc3cd8c,4, 0xdc3ce00,3, 0xdc3ce10,13, 0xdc3ce80,16, 0xdc3cf00,20, 0xdc3cf84,1, 0xdc3cf8c,4, 0xdc3d000,3, 0xdc3d010,13, 0xdc3d080,16, 0xdc3d100,20, 0xdc3d184,1, 0xdc3d18c,4, 0xdc3d200,18, 0xdc3d250,2, 0xdc3d260,4, 0xdc3e000,1, 0xdc3e014,1, 0xdc3e01c,19, 0xdc3e080,1, 0xdc3e094,1, 0xdc3e09c,19, 0xdc3e100,8, 0xdc3e200,13, 0xdc3e240,9, 0xdc3e280,12, 0xdc3e2c0,2, 0xdc3e2e0,12, 0xdc40000,3, 0xdc40080,20, 0xdc40100,10, 0xdc40140,1, 0xdc40154,1, 0xdc4015c,2, 0xdc40200,15, 0xdc40240,4, 0xdc40260,17, 0xdc402c0,6, 0xdc402e0,2, 0xdc402ec,3, 0xdc40300,8, 0xdc40324,1, 0xdc40400,4, 0xdc40440,20, 0xdc404c0,9, 0xdc40500,33, 0xdc40600,11, 0xdc40640,11, 0xdc40680,1, 0xdc42000,1, 0xdc42200,4, 0xdc42300,53, 0xdc42400,4, 0xdc42500,40, 0xdc42600,15, 0xdc42640,4, 0xdc42660,17, 0xdc426c0,6, 0xdc426e0,2, 0xdc426ec,3, 0xdc42700,8, 0xdc42724,1, 0xdc42800,20, 0xdc42c00,53, 0xdc42d00,53, 0xdc42e00,1, 0xdc43000,40, 0xdc43100,40, 0xdc43200,1, 0xdc43400,1, 0xdc43804,1, 0xdc43844,39, 0xdc43900,3, 0xdc43a00,3, 0xdc43a44,1, 0xdc43a50,4, 0xdc43a80,1, 0xdc44000,2, 0xdc44200,27, 0xdc44280,4, 0xdc442c0,25, 0xdc44340,6, 0xdc44360,2, 0xdc4436c,3, 0xdc44380,8, 0xdc443a4,1, 0xdc44400,12, 0xdc44440,1, 0xdc48000,3, 0xdc48080,20, 0xdc48100,10, 0xdc48140,1, 0xdc48154,1, 0xdc4815c,2, 0xdc48200,15, 0xdc48240,4, 0xdc48260,17, 0xdc482c0,6, 0xdc482e0,2, 0xdc482ec,3, 0xdc48300,8, 0xdc48324,1, 0xdc48400,4, 0xdc48440,20, 0xdc484c0,9, 0xdc48500,33, 0xdc48600,11, 0xdc48640,11, 0xdc48680,1, 0xdc4a000,1, 0xdc4a200,4, 0xdc4a300,53, 0xdc4a400,4, 0xdc4a500,40, 0xdc4a600,15, 0xdc4a640,4, 0xdc4a660,17, 0xdc4a6c0,6, 0xdc4a6e0,2, 0xdc4a6ec,3, 0xdc4a700,8, 0xdc4a724,1, 0xdc4a800,20, 0xdc4ac00,53, 0xdc4ad00,53, 0xdc4ae00,1, 0xdc4b000,40, 0xdc4b100,40, 0xdc4b200,1, 0xdc4b400,1, 0xdc4b804,1, 0xdc4b844,39, 0xdc4b900,3, 0xdc4ba00,3, 0xdc4ba44,1, 0xdc4ba50,4, 0xdc4ba80,1, 0xdc4c000,2, 0xdc4c200,27, 0xdc4c280,4, 0xdc4c2c0,25, 0xdc4c340,6, 0xdc4c360,2, 0xdc4c36c,3, 0xdc4c380,8, 0xdc4c3a4,1, 0xdc4c400,12, 0xdc4c440,1, 0xdc50000,4, 0xdc50020,3, 0xdc50030,2, 0xdc50200,1, 0xdc50224,10, 0xdc50250,5, 0xdc50280,1, 0xdc50288,24, 0xdc50300,3, 0xdc50404,1, 0xdc50414,5, 0xdc50500,36, 0xdc50600,3, 0xdc50800,2, 0xdc51000,1, 0xdc51008,21, 0xdc51080,1, 0xdc51088,21, 0xdc51100,1, 0xdc51108,21, 0xdc51180,1, 0xdc51188,21, 0xdc51200,1, 0xdc51208,21, 0xdc51280,1, 0xdc51288,21, 0xdc51300,1, 0xdc51308,21, 0xdc51380,1, 0xdc51388,21, 0xdc51400,21, 0xdc51800,142, 0xdc51c00,1, 0xdc52000,4, 0xdc52100,39, 0xdc52200,3, 0xdc52214,3, 0xdc54004,1, 0xdc54020,16, 0xdc54080,2, 0xdc54094,1, 0xdc5409c,2, 0xdc540c0,6, 0xdc54100,8, 0xdc58004,17, 0xdc58054,1, 0xdc5805c,2, 0xdc58080,1, 0xdc580a0,2, 0xdc580b4,4, 0xdc58100,2, 0xdc58200,8, 0xdc58400,1, 0xdc58600,27, 0xdc58680,4, 0xdc586c0,25, 0xdc58740,6, 0xdc58760,2, 0xdc5876c,3, 0xdc58780,8, 0xdc587a4,3, 0xdc58800,44, 0xdc58900,1, 0xdc60000,1, 0xdc60200,27, 0xdc60280,4, 0xdc602c0,25, 0xdc60340,6, 0xdc60360,2, 0xdc6036c,3, 0xdc60380,8, 0xdc603a4,1, 0xdc60400,20, 0xdc60480,3, 0xdc60490,9, 0xdc80000,198, 0xdc80400,2, 0xdc80440,9, 0xdc80480,7, 0xdc80800,198, 0xdc80c00,2, 0xdc80c40,9, 0xdc80c80,7, 0xdc81000,198, 0xdc81400,198, 0xdc81804,6, 0xdc81824,6, 0xdc81880,2, 0xdc81904,1, 0xdc81918,28, 0xdc819a0,6, 0xdc819c0,6, 0xdc81c00,2, 0xdc81d00,2, 0xdc81e04,1, 0xdc81e74,43, 0xdc82000,2, 0xdc82100,2, 0xdc82204,1, 0xdc82274,43, 0xdc82400,3, 0xdc82600,27, 0xdc82680,4, 0xdc826c0,25, 0xdc82740,6, 0xdc82760,4, 0xdc82774,11, 0xdc827a4,4, 0xdc82800,4, 0xdc82900,34, 0xdc82a00,4, 0xdc82b00,34, 0xdc82c00,3, 0xdc82c10,12, 0xdc82e00,56, 0xdc82ee4,4, 0xdc82f00,4, 0xdc83000,1, 0xdc88000,4, 0xdc88100,42, 0xdc88200,1, 0xdc88210,3, 0xdc88220,3, 0xdc88230,3, 0xdc88240,1, 0xdc88248,3, 0xdc88400,4, 0xdc88500,58, 0xdc88600,1, 0xdc88610,3, 0xdc88620,3, 0xdc88630,3, 0xdc88640,1, 0xdc88648,3, 0xdc88800,4, 0xdc88900,36, 0xdc88a00,1, 0xdc88c00,4, 0xdc88c80,27, 0xdc88d00,1, 0xdc88d10,3, 0xdc88d20,3, 0xdc88d30,3, 0xdc88d40,1, 0xdc88d48,3, 0xdc88e00,4, 0xdc88e80,31, 0xdc88f00,1, 0xdc88f10,3, 0xdc88f20,3, 0xdc88f30,3, 0xdc88f40,1, 0xdc88f48,3, 0xdc89000,4, 0xdc89040,13, 0xdc89080,1, 0xdc89200,15, 0xdc89240,4, 0xdc89260,17, 0xdc892c0,6, 0xdc892e0,2, 0xdc892ec,3, 0xdc89300,8, 0xdc89324,8, 0xdc89400,68, 0xdc89600,60, 0xdc89700,4, 0xdc89720,5, 0xdc89740,1, 0xdc89780,2, 0xdc8978c,2, 0xdc897a0,1, 0xdc897c0,12, 0xdc89800,7, 0xdc89820,5, 0xdc89900,49, 0xdc89a00,1, 0xdc89a08,23, 0xdc89a84,1, 0xdc89a8c,1, 0xdc89a94,1, 0xdc89a9c,2, 0xdc89ac0,1, 0xdc89c00,10, 0xdc89c40,1, 0xdc89c50,3, 0xdc89c80,10, 0xdc89cc0,12, 0xdc89d00,3, 0xdc89e00,1, 0xdc8a000,4, 0xdc8a100,42, 0xdc8a200,1, 0xdc8a210,3, 0xdc8a220,3, 0xdc8a230,3, 0xdc8a240,1, 0xdc8a248,3, 0xdc8a400,4, 0xdc8a500,58, 0xdc8a600,1, 0xdc8a610,3, 0xdc8a620,3, 0xdc8a630,3, 0xdc8a640,1, 0xdc8a648,3, 0xdc8a800,4, 0xdc8a900,36, 0xdc8aa00,1, 0xdc8ac00,4, 0xdc8ac80,27, 0xdc8ad00,1, 0xdc8ad10,3, 0xdc8ad20,3, 0xdc8ad30,3, 0xdc8ad40,1, 0xdc8ad48,3, 0xdc8ae00,4, 0xdc8ae80,31, 0xdc8af00,1, 0xdc8af10,3, 0xdc8af20,3, 0xdc8af30,3, 0xdc8af40,1, 0xdc8af48,3, 0xdc8b000,4, 0xdc8b040,13, 0xdc8b080,1, 0xdc8b200,15, 0xdc8b240,4, 0xdc8b260,17, 0xdc8b2c0,6, 0xdc8b2e0,2, 0xdc8b2ec,3, 0xdc8b300,8, 0xdc8b324,8, 0xdc8b400,68, 0xdc8b600,60, 0xdc8b700,4, 0xdc8b720,5, 0xdc8b740,1, 0xdc8b780,2, 0xdc8b78c,2, 0xdc8b7a0,1, 0xdc8b7c0,12, 0xdc8b800,7, 0xdc8b820,5, 0xdc8b900,49, 0xdc8ba00,1, 0xdc8ba08,23, 0xdc8ba84,1, 0xdc8ba8c,1, 0xdc8ba94,1, 0xdc8ba9c,2, 0xdc8bac0,1, 0xdc8bc00,10, 0xdc8bc40,1, 0xdc8bc50,3, 0xdc8bc80,10, 0xdc8bcc0,12, 0xdc8bd00,3, 0xdc8be00,1, 0xdc8c000,20, 0xdc8c080,3, 0xdc8c090,1, 0xdc8c098,4, 0xdc90000,49, 0xdc90100,12, 0xdc90140,4, 0xdc90184,1, 0xdc90198,2, 0xdc901a4,1, 0xdc901b8,7, 0xdc901e0,4, 0xdc90200,20, 0xdc90280,3, 0xdc90290,9, 0xdc902c0,6, 0xdc902e0,1, 0xdc902e8,7, 0xdc90400,49, 0xdc90500,12, 0xdc90540,4, 0xdc90584,1, 0xdc90598,2, 0xdc905a4,1, 0xdc905b8,7, 0xdc905e0,4, 0xdc90600,20, 0xdc90680,3, 0xdc90690,9, 0xdc906c0,6, 0xdc906e0,1, 0xdc906e8,7, 0xdc90800,49, 0xdc90900,12, 0xdc90940,4, 0xdc90984,1, 0xdc90998,2, 0xdc909a4,1, 0xdc909b8,7, 0xdc909e0,4, 0xdc90a00,20, 0xdc90a80,3, 0xdc90a90,9, 0xdc90ac0,6, 0xdc90ae0,1, 0xdc90ae8,7, 0xdc90c00,49, 0xdc90d00,12, 0xdc90d40,4, 0xdc90d84,1, 0xdc90d98,2, 0xdc90da4,1, 0xdc90db8,7, 0xdc90de0,4, 0xdc90e00,20, 0xdc90e80,3, 0xdc90e90,9, 0xdc90ec0,6, 0xdc90ee0,1, 0xdc90ee8,7, 0xdc91000,49, 0xdc91100,12, 0xdc91140,4, 0xdc91184,1, 0xdc91198,2, 0xdc911a4,1, 0xdc911b8,7, 0xdc911e0,4, 0xdc91200,20, 0xdc91280,3, 0xdc91290,9, 0xdc912c0,6, 0xdc912e0,1, 0xdc912e8,7, 0xdc91400,49, 0xdc91500,12, 0xdc91540,4, 0xdc91584,1, 0xdc91598,2, 0xdc915a4,1, 0xdc915b8,7, 0xdc915e0,4, 0xdc91600,20, 0xdc91680,3, 0xdc91690,9, 0xdc916c0,6, 0xdc916e0,1, 0xdc916e8,7, 0xdc91800,49, 0xdc91900,12, 0xdc91940,4, 0xdc91984,1, 0xdc91998,2, 0xdc919a4,1, 0xdc919b8,7, 0xdc919e0,4, 0xdc91a00,20, 0xdc91a80,3, 0xdc91a90,9, 0xdc91ac0,6, 0xdc91ae0,1, 0xdc91ae8,7, 0xdc92000,20, 0xdc92080,10, 0xdc92100,20, 0xdc92180,10, 0xdc92200,12, 0xdc92400,20, 0xdc92480,10, 0xdc92500,20, 0xdc92580,10, 0xdc92600,12, 0xdc92800,3, 0xdc92840,12, 0xdc92880,12, 0xdc928c0,12, 0xdc92900,12, 0xdc92940,12, 0xdc92980,12, 0xdc929c0,12, 0xdc92a00,12, 0xdc92c00,12, 0xdc92c40,7, 0xdc92c60,10, 0xdc93004,1, 0xdc93044,43, 0xdc93100,7, 0xdc93120,7, 0xdc93140,2, 0xdc9314c,2, 0xdc93160,2, 0xdc9316c,2, 0xdc93180,18, 0xdc93200,2, 0xdc93220,10, 0xdc93260,20, 0xdc932c0,9, 0xdc93300,15, 0xdc93340,9, 0xdc93380,6, 0xdc933a0,4, 0xdc93400,5, 0xdc94000,53, 0xdc94100,3, 0xdc94110,15, 0xdc94200,53, 0xdc94300,3, 0xdc94310,15, 0xdc94400,5, 0xdc94420,5, 0xdc94440,18, 0xdc94800,3, 0xdc94810,2, 0xdc94820,3, 0xdc94830,2, 0xdc94840,1, 0xdc95000,7, 0xdc95020,7, 0xdc95080,19, 0xdc95100,19, 0xdc95180,25, 0xdc95200,20, 0xdc95280,20, 0xdc95300,8, 0xdc95340,4, 0xdc95380,15, 0xdc953c0,15, 0xdc95400,9, 0xdc95430,5, 0xdc96000,6, 0xdc96020,1, 0xdc96028,2, 0xdc96040,11, 0xdc96070,2, 0xdc98000,82, 0xdc98200,2, 0xdc98240,9, 0xdc98280,7, 0xdc98400,82, 0xdc98604,6, 0xdc98700,15, 0xdc98740,9, 0xdc98780,6, 0xdc987a0,6, 0xdc98800,2, 0xdc98810,3, 0xdc98880,24, 0xdc988e4,1, 0xdc988f0,12, 0xdca0000,22, 0xdca0080,22, 0xdca0100,5, 0xdca0120,5, 0xdca0140,3, 0xdca0160,16, 0xdca01c0,7, 0xdca01e0,2, 0xdca0200,7, 0xdca0220,2, 0xdca0400,15, 0xdca0440,3, 0xdca0450,3, 0xdca0460,24, 0xdca0500,15, 0xdca0540,3, 0xdca0550,3, 0xdca0560,24, 0xdca0600,15, 0xdca0640,3, 0xdca0650,3, 0xdca0660,24, 0xdca0700,15, 0xdca0740,3, 0xdca0750,3, 0xdca0760,24, 0xdca0800,4, 0xdca0820,16, 0xdca0880,10, 0xdca08c0,10, 0xdca0900,6, 0xdca0920,6, 0xdca0940,4, 0xdca0980,13, 0xdca09c0,13, 0xdca0a00,9, 0xdca1000,86, 0xdca1200,2, 0xdca1240,9, 0xdca1280,7, 0xdca1400,86, 0xdca1604,6, 0xdca1800,86, 0xdca1a00,2, 0xdca1a40,9, 0xdca1a80,7, 0xdca1c00,86, 0xdca1e04,6, 0xdca2000,15, 0xdca2040,4, 0xdca2060,17, 0xdca20c0,6, 0xdca20e0,4, 0xdca20f4,11, 0xdca2128,38, 0xdca21c4,2, 0xdca21d0,4, 0xdca2200,1, 0xdca4000,22, 0xdca4080,22, 0xdca4100,5, 0xdca4120,5, 0xdca4140,3, 0xdca4160,16, 0xdca41c0,7, 0xdca41e0,2, 0xdca4200,7, 0xdca4220,2, 0xdca4400,15, 0xdca4440,3, 0xdca4450,3, 0xdca4460,24, 0xdca4500,15, 0xdca4540,3, 0xdca4550,3, 0xdca4560,24, 0xdca4600,15, 0xdca4640,3, 0xdca4650,3, 0xdca4660,24, 0xdca4700,15, 0xdca4740,3, 0xdca4750,3, 0xdca4760,24, 0xdca4800,4, 0xdca4820,16, 0xdca4880,10, 0xdca48c0,10, 0xdca4900,6, 0xdca4920,6, 0xdca4940,4, 0xdca4980,13, 0xdca49c0,13, 0xdca4a00,9, 0xdca5000,86, 0xdca5200,2, 0xdca5240,9, 0xdca5280,7, 0xdca5400,86, 0xdca5604,6, 0xdca5800,86, 0xdca5a00,2, 0xdca5a40,9, 0xdca5a80,7, 0xdca5c00,86, 0xdca5e04,6, 0xdca6000,15, 0xdca6040,4, 0xdca6060,17, 0xdca60c0,6, 0xdca60e0,4, 0xdca60f4,11, 0xdca6128,38, 0xdca61c4,2, 0xdca61d0,4, 0xdca6200,1, 0xdca8000,9, 0xdca8040,9, 0xdca8080,5, 0xdca8100,21, 0xdca8160,5, 0xdca8180,45, 0xdca8240,13, 0xdca8280,9, 0xdca8400,9, 0xdca8440,9, 0xdca8480,5, 0xdca8500,21, 0xdca8560,5, 0xdca8580,45, 0xdca8640,13, 0xdca8680,9, 0xdca8800,12, 0xdca8900,15, 0xdca8940,4, 0xdca8960,17, 0xdca89c0,6, 0xdca89e0,4, 0xdca89f4,29, 0xdcac000,30, 0xdcac080,3, 0xdcac090,19, 0xdcac100,30, 0xdcac180,3, 0xdcac190,19, 0xdcac200,30, 0xdcac280,3, 0xdcac290,19, 0xdcac300,30, 0xdcac380,3, 0xdcac390,19, 0xdcac400,30, 0xdcac480,3, 0xdcac490,19, 0xdcac500,30, 0xdcac580,3, 0xdcac590,19, 0xdcac600,30, 0xdcac680,3, 0xdcac690,19, 0xdcac700,30, 0xdcac780,3, 0xdcac790,19, 0xdcac800,12, 0xdcac844,1, 0xdcac854,8, 0xdcac880,7, 0xdcac8a0,2, 0xdcac8ac,2, 0xdcac8c0,26, 0xdcac980,4, 0xdcac9a0,5, 0xdcac9c0,1, 0xdcad000,3, 0xdcad010,3, 0xdcad020,3, 0xdcad030,3, 0xdcad040,3, 0xdcad050,3, 0xdcad060,3, 0xdcad070,3, 0xdcad080,6, 0xdcad0a0,6, 0xdcad0c0,6, 0xdcad0e0,6, 0xdcad100,6, 0xdcad120,6, 0xdcad140,6, 0xdcad160,6, 0xdcad200,68, 0xdcad400,1, 0xdcad804,1, 0xdcad844,54, 0xdcada00,12, 0xdcada40,12, 0xdcada80,12, 0xdcadac0,12, 0xdcadb00,12, 0xdcadb40,12, 0xdcadb80,12, 0xdcadbc0,12, 0xdcadc00,28, 0xdcadc80,10, 0xdcae000,3, 0xdcae020,6, 0xdcae040,6, 0xdcae060,15, 0xdcae100,26, 0xdcae180,15, 0xdcae200,15, 0xdcae240,4, 0xdcae260,17, 0xdcae2c0,6, 0xdcae2e0,4, 0xdcae2f4,18, 0xdcae340,4, 0xdcae360,17, 0xdcae3c0,6, 0xdcae3e0,4, 0xdcae3f4,15, 0xdcb0000,1, 0xdcb1000,1020, 0xdcb2000,194, 0xdcb3000,1020, 0xdcb4000,1020, 0xdcb5000,1020, 0xdcb6000,1020, 0xdcb7000,1020, 0xdcb8000,1020, 0xdcb9000,1020, 0xdcba000,1020, 0xdcbb000,194, 0xdcbc000,3, 0xdcbc010,13, 0xdcbc080,16, 0xdcbc100,20, 0xdcbc184,1, 0xdcbc18c,4, 0xdcbc200,3, 0xdcbc210,13, 0xdcbc280,16, 0xdcbc300,20, 0xdcbc384,1, 0xdcbc38c,4, 0xdcbc400,3, 0xdcbc410,13, 0xdcbc480,16, 0xdcbc500,20, 0xdcbc584,1, 0xdcbc58c,4, 0xdcbc600,3, 0xdcbc610,13, 0xdcbc680,16, 0xdcbc700,20, 0xdcbc784,1, 0xdcbc78c,4, 0xdcbc800,3, 0xdcbc810,13, 0xdcbc880,16, 0xdcbc900,20, 0xdcbc984,1, 0xdcbc98c,4, 0xdcbca00,3, 0xdcbca10,13, 0xdcbca80,16, 0xdcbcb00,20, 0xdcbcb84,1, 0xdcbcb8c,4, 0xdcbcc00,3, 0xdcbcc10,13, 0xdcbcc80,16, 0xdcbcd00,20, 0xdcbcd84,1, 0xdcbcd8c,4, 0xdcbce00,3, 0xdcbce10,13, 0xdcbce80,16, 0xdcbcf00,20, 0xdcbcf84,1, 0xdcbcf8c,4, 0xdcbd000,3, 0xdcbd010,13, 0xdcbd080,16, 0xdcbd100,20, 0xdcbd184,1, 0xdcbd18c,4, 0xdcbd200,18, 0xdcbd250,2, 0xdcbd260,4, 0xdcbe000,1, 0xdcbe014,1, 0xdcbe01c,19, 0xdcbe080,1, 0xdcbe094,1, 0xdcbe09c,19, 0xdcbe100,8, 0xdcbe200,13, 0xdcbe240,9, 0xdcbe280,12, 0xdcbe2c0,2, 0xdcbe2e0,12, 0xdcc0000,3, 0xdcc0080,20, 0xdcc0100,10, 0xdcc0140,1, 0xdcc0154,1, 0xdcc015c,2, 0xdcc0200,15, 0xdcc0240,4, 0xdcc0260,17, 0xdcc02c0,6, 0xdcc02e0,2, 0xdcc02ec,3, 0xdcc0300,8, 0xdcc0324,1, 0xdcc0400,4, 0xdcc0440,20, 0xdcc04c0,9, 0xdcc0500,33, 0xdcc0600,11, 0xdcc0640,11, 0xdcc0680,1, 0xdcc2000,1, 0xdcc2200,4, 0xdcc2300,53, 0xdcc2400,4, 0xdcc2500,40, 0xdcc2600,15, 0xdcc2640,4, 0xdcc2660,17, 0xdcc26c0,6, 0xdcc26e0,2, 0xdcc26ec,3, 0xdcc2700,8, 0xdcc2724,1, 0xdcc2800,20, 0xdcc2c00,53, 0xdcc2d00,53, 0xdcc2e00,1, 0xdcc3000,40, 0xdcc3100,40, 0xdcc3200,1, 0xdcc3400,1, 0xdcc3804,1, 0xdcc3844,39, 0xdcc3900,3, 0xdcc3a00,3, 0xdcc3a44,1, 0xdcc3a50,4, 0xdcc3a80,1, 0xdcc4000,2, 0xdcc4200,27, 0xdcc4280,4, 0xdcc42c0,25, 0xdcc4340,6, 0xdcc4360,2, 0xdcc436c,3, 0xdcc4380,8, 0xdcc43a4,1, 0xdcc4400,12, 0xdcc4440,1, 0xdcc8000,3, 0xdcc8080,20, 0xdcc8100,10, 0xdcc8140,1, 0xdcc8154,1, 0xdcc815c,2, 0xdcc8200,15, 0xdcc8240,4, 0xdcc8260,17, 0xdcc82c0,6, 0xdcc82e0,2, 0xdcc82ec,3, 0xdcc8300,8, 0xdcc8324,1, 0xdcc8400,4, 0xdcc8440,20, 0xdcc84c0,9, 0xdcc8500,33, 0xdcc8600,11, 0xdcc8640,11, 0xdcc8680,1, 0xdcca000,1, 0xdcca200,4, 0xdcca300,53, 0xdcca400,4, 0xdcca500,40, 0xdcca600,15, 0xdcca640,4, 0xdcca660,17, 0xdcca6c0,6, 0xdcca6e0,2, 0xdcca6ec,3, 0xdcca700,8, 0xdcca724,1, 0xdcca800,20, 0xdccac00,53, 0xdccad00,53, 0xdccae00,1, 0xdccb000,40, 0xdccb100,40, 0xdccb200,1, 0xdccb400,1, 0xdccb804,1, 0xdccb844,39, 0xdccb900,3, 0xdccba00,3, 0xdccba44,1, 0xdccba50,4, 0xdccba80,1, 0xdccc000,2, 0xdccc200,27, 0xdccc280,4, 0xdccc2c0,25, 0xdccc340,6, 0xdccc360,2, 0xdccc36c,3, 0xdccc380,8, 0xdccc3a4,1, 0xdccc400,12, 0xdccc440,1, 0xdcd0000,4, 0xdcd0020,3, 0xdcd0030,2, 0xdcd0200,1, 0xdcd0224,10, 0xdcd0250,5, 0xdcd0280,1, 0xdcd0288,24, 0xdcd0300,3, 0xdcd0404,1, 0xdcd0414,5, 0xdcd0500,36, 0xdcd0600,3, 0xdcd0800,2, 0xdcd1000,1, 0xdcd1008,21, 0xdcd1080,1, 0xdcd1088,21, 0xdcd1100,1, 0xdcd1108,21, 0xdcd1180,1, 0xdcd1188,21, 0xdcd1200,1, 0xdcd1208,21, 0xdcd1280,1, 0xdcd1288,21, 0xdcd1300,1, 0xdcd1308,21, 0xdcd1380,1, 0xdcd1388,21, 0xdcd1400,21, 0xdcd1800,142, 0xdcd1c00,1, 0xdcd2000,4, 0xdcd2100,39, 0xdcd2200,3, 0xdcd2214,3, 0xdcd4004,1, 0xdcd4020,16, 0xdcd4080,2, 0xdcd4094,1, 0xdcd409c,2, 0xdcd40c0,6, 0xdcd4100,8, 0xdcd8004,17, 0xdcd8054,1, 0xdcd805c,2, 0xdcd8080,1, 0xdcd80a0,2, 0xdcd80b4,4, 0xdcd8100,2, 0xdcd8200,8, 0xdcd8400,1, 0xdcd8600,27, 0xdcd8680,4, 0xdcd86c0,25, 0xdcd8740,6, 0xdcd8760,2, 0xdcd876c,3, 0xdcd8780,8, 0xdcd87a4,3, 0xdcd8800,44, 0xdcd8900,1, 0xdce0000,1, 0xdce0200,27, 0xdce0280,4, 0xdce02c0,25, 0xdce0340,6, 0xdce0360,2, 0xdce036c,3, 0xdce0380,8, 0xdce03a4,1, 0xdce0400,20, 0xdce0480,3, 0xdce0490,9, 0xdd00000,198, 0xdd00400,2, 0xdd00440,9, 0xdd00480,7, 0xdd00800,198, 0xdd00c00,2, 0xdd00c40,9, 0xdd00c80,7, 0xdd01000,198, 0xdd01400,198, 0xdd01804,6, 0xdd01824,6, 0xdd01880,2, 0xdd01904,1, 0xdd01918,28, 0xdd019a0,6, 0xdd019c0,6, 0xdd01c00,2, 0xdd01d00,2, 0xdd01e04,1, 0xdd01e74,43, 0xdd02000,2, 0xdd02100,2, 0xdd02204,1, 0xdd02274,43, 0xdd02400,3, 0xdd02600,27, 0xdd02680,4, 0xdd026c0,25, 0xdd02740,6, 0xdd02760,4, 0xdd02774,11, 0xdd027a4,4, 0xdd02800,4, 0xdd02900,34, 0xdd02a00,4, 0xdd02b00,34, 0xdd02c00,3, 0xdd02c10,12, 0xdd02e00,56, 0xdd02ee4,4, 0xdd02f00,4, 0xdd03000,1, 0xdd08000,4, 0xdd08100,42, 0xdd08200,1, 0xdd08210,3, 0xdd08220,3, 0xdd08230,3, 0xdd08240,1, 0xdd08248,3, 0xdd08400,4, 0xdd08500,58, 0xdd08600,1, 0xdd08610,3, 0xdd08620,3, 0xdd08630,3, 0xdd08640,1, 0xdd08648,3, 0xdd08800,4, 0xdd08900,36, 0xdd08a00,1, 0xdd08c00,4, 0xdd08c80,27, 0xdd08d00,1, 0xdd08d10,3, 0xdd08d20,3, 0xdd08d30,3, 0xdd08d40,1, 0xdd08d48,3, 0xdd08e00,4, 0xdd08e80,31, 0xdd08f00,1, 0xdd08f10,3, 0xdd08f20,3, 0xdd08f30,3, 0xdd08f40,1, 0xdd08f48,3, 0xdd09000,4, 0xdd09040,13, 0xdd09080,1, 0xdd09200,15, 0xdd09240,4, 0xdd09260,17, 0xdd092c0,6, 0xdd092e0,2, 0xdd092ec,3, 0xdd09300,8, 0xdd09324,8, 0xdd09400,68, 0xdd09600,60, 0xdd09700,4, 0xdd09720,5, 0xdd09740,1, 0xdd09780,2, 0xdd0978c,2, 0xdd097a0,1, 0xdd097c0,12, 0xdd09800,7, 0xdd09820,5, 0xdd09900,49, 0xdd09a00,1, 0xdd09a08,23, 0xdd09a84,1, 0xdd09a8c,1, 0xdd09a94,1, 0xdd09a9c,2, 0xdd09ac0,1, 0xdd09c00,10, 0xdd09c40,1, 0xdd09c50,3, 0xdd09c80,10, 0xdd09cc0,12, 0xdd09d00,3, 0xdd09e00,1, 0xdd0a000,4, 0xdd0a100,42, 0xdd0a200,1, 0xdd0a210,3, 0xdd0a220,3, 0xdd0a230,3, 0xdd0a240,1, 0xdd0a248,3, 0xdd0a400,4, 0xdd0a500,58, 0xdd0a600,1, 0xdd0a610,3, 0xdd0a620,3, 0xdd0a630,3, 0xdd0a640,1, 0xdd0a648,3, 0xdd0a800,4, 0xdd0a900,36, 0xdd0aa00,1, 0xdd0ac00,4, 0xdd0ac80,27, 0xdd0ad00,1, 0xdd0ad10,3, 0xdd0ad20,3, 0xdd0ad30,3, 0xdd0ad40,1, 0xdd0ad48,3, 0xdd0ae00,4, 0xdd0ae80,31, 0xdd0af00,1, 0xdd0af10,3, 0xdd0af20,3, 0xdd0af30,3, 0xdd0af40,1, 0xdd0af48,3, 0xdd0b000,4, 0xdd0b040,13, 0xdd0b080,1, 0xdd0b200,15, 0xdd0b240,4, 0xdd0b260,17, 0xdd0b2c0,6, 0xdd0b2e0,2, 0xdd0b2ec,3, 0xdd0b300,8, 0xdd0b324,8, 0xdd0b400,68, 0xdd0b600,60, 0xdd0b700,4, 0xdd0b720,5, 0xdd0b740,1, 0xdd0b780,2, 0xdd0b78c,2, 0xdd0b7a0,1, 0xdd0b7c0,12, 0xdd0b800,7, 0xdd0b820,5, 0xdd0b900,49, 0xdd0ba00,1, 0xdd0ba08,23, 0xdd0ba84,1, 0xdd0ba8c,1, 0xdd0ba94,1, 0xdd0ba9c,2, 0xdd0bac0,1, 0xdd0bc00,10, 0xdd0bc40,1, 0xdd0bc50,3, 0xdd0bc80,10, 0xdd0bcc0,12, 0xdd0bd00,3, 0xdd0be00,1, 0xdd0c000,20, 0xdd0c080,3, 0xdd0c090,1, 0xdd0c098,4, 0xdd10000,49, 0xdd10100,12, 0xdd10140,4, 0xdd10184,1, 0xdd10198,2, 0xdd101a4,1, 0xdd101b8,7, 0xdd101e0,4, 0xdd10200,20, 0xdd10280,3, 0xdd10290,9, 0xdd102c0,6, 0xdd102e0,1, 0xdd102e8,7, 0xdd10400,49, 0xdd10500,12, 0xdd10540,4, 0xdd10584,1, 0xdd10598,2, 0xdd105a4,1, 0xdd105b8,7, 0xdd105e0,4, 0xdd10600,20, 0xdd10680,3, 0xdd10690,9, 0xdd106c0,6, 0xdd106e0,1, 0xdd106e8,7, 0xdd10800,49, 0xdd10900,12, 0xdd10940,4, 0xdd10984,1, 0xdd10998,2, 0xdd109a4,1, 0xdd109b8,7, 0xdd109e0,4, 0xdd10a00,20, 0xdd10a80,3, 0xdd10a90,9, 0xdd10ac0,6, 0xdd10ae0,1, 0xdd10ae8,7, 0xdd10c00,49, 0xdd10d00,12, 0xdd10d40,4, 0xdd10d84,1, 0xdd10d98,2, 0xdd10da4,1, 0xdd10db8,7, 0xdd10de0,4, 0xdd10e00,20, 0xdd10e80,3, 0xdd10e90,9, 0xdd10ec0,6, 0xdd10ee0,1, 0xdd10ee8,7, 0xdd11000,49, 0xdd11100,12, 0xdd11140,4, 0xdd11184,1, 0xdd11198,2, 0xdd111a4,1, 0xdd111b8,7, 0xdd111e0,4, 0xdd11200,20, 0xdd11280,3, 0xdd11290,9, 0xdd112c0,6, 0xdd112e0,1, 0xdd112e8,7, 0xdd11400,49, 0xdd11500,12, 0xdd11540,4, 0xdd11584,1, 0xdd11598,2, 0xdd115a4,1, 0xdd115b8,7, 0xdd115e0,4, 0xdd11600,20, 0xdd11680,3, 0xdd11690,9, 0xdd116c0,6, 0xdd116e0,1, 0xdd116e8,7, 0xdd11800,49, 0xdd11900,12, 0xdd11940,4, 0xdd11984,1, 0xdd11998,2, 0xdd119a4,1, 0xdd119b8,7, 0xdd119e0,4, 0xdd11a00,20, 0xdd11a80,3, 0xdd11a90,9, 0xdd11ac0,6, 0xdd11ae0,1, 0xdd11ae8,7, 0xdd12000,20, 0xdd12080,10, 0xdd12100,20, 0xdd12180,10, 0xdd12200,12, 0xdd12400,20, 0xdd12480,10, 0xdd12500,20, 0xdd12580,10, 0xdd12600,12, 0xdd12800,3, 0xdd12840,12, 0xdd12880,12, 0xdd128c0,12, 0xdd12900,12, 0xdd12940,12, 0xdd12980,12, 0xdd129c0,12, 0xdd12a00,12, 0xdd12c00,12, 0xdd12c40,7, 0xdd12c60,10, 0xdd13004,1, 0xdd13044,43, 0xdd13100,7, 0xdd13120,7, 0xdd13140,2, 0xdd1314c,2, 0xdd13160,2, 0xdd1316c,2, 0xdd13180,18, 0xdd13200,2, 0xdd13220,10, 0xdd13260,20, 0xdd132c0,9, 0xdd13300,15, 0xdd13340,9, 0xdd13380,6, 0xdd133a0,4, 0xdd13400,5, 0xdd14000,53, 0xdd14100,3, 0xdd14110,15, 0xdd14200,53, 0xdd14300,3, 0xdd14310,15, 0xdd14400,5, 0xdd14420,5, 0xdd14440,18, 0xdd14800,3, 0xdd14810,2, 0xdd14820,3, 0xdd14830,2, 0xdd14840,1, 0xdd15000,7, 0xdd15020,7, 0xdd15080,19, 0xdd15100,19, 0xdd15180,25, 0xdd15200,20, 0xdd15280,20, 0xdd15300,8, 0xdd15340,4, 0xdd15380,15, 0xdd153c0,15, 0xdd15400,9, 0xdd15430,5, 0xdd16000,6, 0xdd16020,1, 0xdd16028,2, 0xdd16040,11, 0xdd16070,2, 0xdd18000,82, 0xdd18200,2, 0xdd18240,9, 0xdd18280,7, 0xdd18400,82, 0xdd18604,6, 0xdd18700,15, 0xdd18740,9, 0xdd18780,6, 0xdd187a0,6, 0xdd18800,2, 0xdd18810,3, 0xdd18880,24, 0xdd188e4,1, 0xdd188f0,12, 0xdd20000,22, 0xdd20080,22, 0xdd20100,5, 0xdd20120,5, 0xdd20140,3, 0xdd20160,16, 0xdd201c0,7, 0xdd201e0,2, 0xdd20200,7, 0xdd20220,2, 0xdd20400,15, 0xdd20440,3, 0xdd20450,3, 0xdd20460,24, 0xdd20500,15, 0xdd20540,3, 0xdd20550,3, 0xdd20560,24, 0xdd20600,15, 0xdd20640,3, 0xdd20650,3, 0xdd20660,24, 0xdd20700,15, 0xdd20740,3, 0xdd20750,3, 0xdd20760,24, 0xdd20800,4, 0xdd20820,16, 0xdd20880,10, 0xdd208c0,10, 0xdd20900,6, 0xdd20920,6, 0xdd20940,4, 0xdd20980,13, 0xdd209c0,13, 0xdd20a00,9, 0xdd21000,86, 0xdd21200,2, 0xdd21240,9, 0xdd21280,7, 0xdd21400,86, 0xdd21604,6, 0xdd21800,86, 0xdd21a00,2, 0xdd21a40,9, 0xdd21a80,7, 0xdd21c00,86, 0xdd21e04,6, 0xdd22000,15, 0xdd22040,4, 0xdd22060,17, 0xdd220c0,6, 0xdd220e0,4, 0xdd220f4,11, 0xdd22128,38, 0xdd221c4,2, 0xdd221d0,4, 0xdd22200,1, 0xdd24000,22, 0xdd24080,22, 0xdd24100,5, 0xdd24120,5, 0xdd24140,3, 0xdd24160,16, 0xdd241c0,7, 0xdd241e0,2, 0xdd24200,7, 0xdd24220,2, 0xdd24400,15, 0xdd24440,3, 0xdd24450,3, 0xdd24460,24, 0xdd24500,15, 0xdd24540,3, 0xdd24550,3, 0xdd24560,24, 0xdd24600,15, 0xdd24640,3, 0xdd24650,3, 0xdd24660,24, 0xdd24700,15, 0xdd24740,3, 0xdd24750,3, 0xdd24760,24, 0xdd24800,4, 0xdd24820,16, 0xdd24880,10, 0xdd248c0,10, 0xdd24900,6, 0xdd24920,6, 0xdd24940,4, 0xdd24980,13, 0xdd249c0,13, 0xdd24a00,9, 0xdd25000,86, 0xdd25200,2, 0xdd25240,9, 0xdd25280,7, 0xdd25400,86, 0xdd25604,6, 0xdd25800,86, 0xdd25a00,2, 0xdd25a40,9, 0xdd25a80,7, 0xdd25c00,86, 0xdd25e04,6, 0xdd26000,15, 0xdd26040,4, 0xdd26060,17, 0xdd260c0,6, 0xdd260e0,4, 0xdd260f4,11, 0xdd26128,38, 0xdd261c4,2, 0xdd261d0,4, 0xdd26200,1, 0xdd28000,9, 0xdd28040,9, 0xdd28080,5, 0xdd28100,21, 0xdd28160,5, 0xdd28180,45, 0xdd28240,13, 0xdd28280,9, 0xdd28400,9, 0xdd28440,9, 0xdd28480,5, 0xdd28500,21, 0xdd28560,5, 0xdd28580,45, 0xdd28640,13, 0xdd28680,9, 0xdd28800,12, 0xdd28900,15, 0xdd28940,4, 0xdd28960,17, 0xdd289c0,6, 0xdd289e0,4, 0xdd289f4,29, 0xdd2c000,30, 0xdd2c080,3, 0xdd2c090,19, 0xdd2c100,30, 0xdd2c180,3, 0xdd2c190,19, 0xdd2c200,30, 0xdd2c280,3, 0xdd2c290,19, 0xdd2c300,30, 0xdd2c380,3, 0xdd2c390,19, 0xdd2c400,30, 0xdd2c480,3, 0xdd2c490,19, 0xdd2c500,30, 0xdd2c580,3, 0xdd2c590,19, 0xdd2c600,30, 0xdd2c680,3, 0xdd2c690,19, 0xdd2c700,30, 0xdd2c780,3, 0xdd2c790,19, 0xdd2c800,12, 0xdd2c844,1, 0xdd2c854,8, 0xdd2c880,7, 0xdd2c8a0,2, 0xdd2c8ac,2, 0xdd2c8c0,26, 0xdd2c980,4, 0xdd2c9a0,5, 0xdd2c9c0,1, 0xdd2d000,3, 0xdd2d010,3, 0xdd2d020,3, 0xdd2d030,3, 0xdd2d040,3, 0xdd2d050,3, 0xdd2d060,3, 0xdd2d070,3, 0xdd2d080,6, 0xdd2d0a0,6, 0xdd2d0c0,6, 0xdd2d0e0,6, 0xdd2d100,6, 0xdd2d120,6, 0xdd2d140,6, 0xdd2d160,6, 0xdd2d200,68, 0xdd2d400,1, 0xdd2d804,1, 0xdd2d844,54, 0xdd2da00,12, 0xdd2da40,12, 0xdd2da80,12, 0xdd2dac0,12, 0xdd2db00,12, 0xdd2db40,12, 0xdd2db80,12, 0xdd2dbc0,12, 0xdd2dc00,28, 0xdd2dc80,10, 0xdd2e000,3, 0xdd2e020,6, 0xdd2e040,6, 0xdd2e060,15, 0xdd2e100,26, 0xdd2e180,15, 0xdd2e200,15, 0xdd2e240,4, 0xdd2e260,17, 0xdd2e2c0,6, 0xdd2e2e0,4, 0xdd2e2f4,18, 0xdd2e340,4, 0xdd2e360,17, 0xdd2e3c0,6, 0xdd2e3e0,4, 0xdd2e3f4,15, 0xdd30000,1, 0xdd31000,1020, 0xdd32000,194, 0xdd33000,1020, 0xdd34000,1020, 0xdd35000,1020, 0xdd36000,1020, 0xdd37000,1020, 0xdd38000,1020, 0xdd39000,1020, 0xdd3a000,1020, 0xdd3b000,194, 0xdd3c000,3, 0xdd3c010,13, 0xdd3c080,16, 0xdd3c100,20, 0xdd3c184,1, 0xdd3c18c,4, 0xdd3c200,3, 0xdd3c210,13, 0xdd3c280,16, 0xdd3c300,20, 0xdd3c384,1, 0xdd3c38c,4, 0xdd3c400,3, 0xdd3c410,13, 0xdd3c480,16, 0xdd3c500,20, 0xdd3c584,1, 0xdd3c58c,4, 0xdd3c600,3, 0xdd3c610,13, 0xdd3c680,16, 0xdd3c700,20, 0xdd3c784,1, 0xdd3c78c,4, 0xdd3c800,3, 0xdd3c810,13, 0xdd3c880,16, 0xdd3c900,20, 0xdd3c984,1, 0xdd3c98c,4, 0xdd3ca00,3, 0xdd3ca10,13, 0xdd3ca80,16, 0xdd3cb00,20, 0xdd3cb84,1, 0xdd3cb8c,4, 0xdd3cc00,3, 0xdd3cc10,13, 0xdd3cc80,16, 0xdd3cd00,20, 0xdd3cd84,1, 0xdd3cd8c,4, 0xdd3ce00,3, 0xdd3ce10,13, 0xdd3ce80,16, 0xdd3cf00,20, 0xdd3cf84,1, 0xdd3cf8c,4, 0xdd3d000,3, 0xdd3d010,13, 0xdd3d080,16, 0xdd3d100,20, 0xdd3d184,1, 0xdd3d18c,4, 0xdd3d200,18, 0xdd3d250,2, 0xdd3d260,4, 0xdd3e000,1, 0xdd3e014,1, 0xdd3e01c,19, 0xdd3e080,1, 0xdd3e094,1, 0xdd3e09c,19, 0xdd3e100,8, 0xdd3e200,13, 0xdd3e240,9, 0xdd3e280,12, 0xdd3e2c0,2, 0xdd3e2e0,12, 0xdd40000,3, 0xdd40080,20, 0xdd40100,10, 0xdd40140,1, 0xdd40154,1, 0xdd4015c,2, 0xdd40200,15, 0xdd40240,4, 0xdd40260,17, 0xdd402c0,6, 0xdd402e0,2, 0xdd402ec,3, 0xdd40300,8, 0xdd40324,1, 0xdd40400,4, 0xdd40440,20, 0xdd404c0,9, 0xdd40500,33, 0xdd40600,11, 0xdd40640,11, 0xdd40680,1, 0xdd42000,1, 0xdd42200,4, 0xdd42300,53, 0xdd42400,4, 0xdd42500,40, 0xdd42600,15, 0xdd42640,4, 0xdd42660,17, 0xdd426c0,6, 0xdd426e0,2, 0xdd426ec,3, 0xdd42700,8, 0xdd42724,1, 0xdd42800,20, 0xdd42c00,53, 0xdd42d00,53, 0xdd42e00,1, 0xdd43000,40, 0xdd43100,40, 0xdd43200,1, 0xdd43400,1, 0xdd43804,1, 0xdd43844,39, 0xdd43900,3, 0xdd43a00,3, 0xdd43a44,1, 0xdd43a50,4, 0xdd43a80,1, 0xdd44000,2, 0xdd44200,27, 0xdd44280,4, 0xdd442c0,25, 0xdd44340,6, 0xdd44360,2, 0xdd4436c,3, 0xdd44380,8, 0xdd443a4,1, 0xdd44400,12, 0xdd44440,1, 0xdd48000,3, 0xdd48080,20, 0xdd48100,10, 0xdd48140,1, 0xdd48154,1, 0xdd4815c,2, 0xdd48200,15, 0xdd48240,4, 0xdd48260,17, 0xdd482c0,6, 0xdd482e0,2, 0xdd482ec,3, 0xdd48300,8, 0xdd48324,1, 0xdd48400,4, 0xdd48440,20, 0xdd484c0,9, 0xdd48500,33, 0xdd48600,11, 0xdd48640,11, 0xdd48680,1, 0xdd4a000,1, 0xdd4a200,4, 0xdd4a300,53, 0xdd4a400,4, 0xdd4a500,40, 0xdd4a600,15, 0xdd4a640,4, 0xdd4a660,17, 0xdd4a6c0,6, 0xdd4a6e0,2, 0xdd4a6ec,3, 0xdd4a700,8, 0xdd4a724,1, 0xdd4a800,20, 0xdd4ac00,53, 0xdd4ad00,53, 0xdd4ae00,1, 0xdd4b000,40, 0xdd4b100,40, 0xdd4b200,1, 0xdd4b400,1, 0xdd4b804,1, 0xdd4b844,39, 0xdd4b900,3, 0xdd4ba00,3, 0xdd4ba44,1, 0xdd4ba50,4, 0xdd4ba80,1, 0xdd4c000,2, 0xdd4c200,27, 0xdd4c280,4, 0xdd4c2c0,25, 0xdd4c340,6, 0xdd4c360,2, 0xdd4c36c,3, 0xdd4c380,8, 0xdd4c3a4,1, 0xdd4c400,12, 0xdd4c440,1, 0xdd50000,4, 0xdd50020,3, 0xdd50030,2, 0xdd50200,1, 0xdd50224,10, 0xdd50250,5, 0xdd50280,1, 0xdd50288,24, 0xdd50300,3, 0xdd50404,1, 0xdd50414,5, 0xdd50500,36, 0xdd50600,3, 0xdd50800,2, 0xdd51000,1, 0xdd51008,21, 0xdd51080,1, 0xdd51088,21, 0xdd51100,1, 0xdd51108,21, 0xdd51180,1, 0xdd51188,21, 0xdd51200,1, 0xdd51208,21, 0xdd51280,1, 0xdd51288,21, 0xdd51300,1, 0xdd51308,21, 0xdd51380,1, 0xdd51388,21, 0xdd51400,21, 0xdd51800,142, 0xdd51c00,1, 0xdd52000,4, 0xdd52100,39, 0xdd52200,3, 0xdd52214,3, 0xdd54004,1, 0xdd54020,16, 0xdd54080,2, 0xdd54094,1, 0xdd5409c,2, 0xdd540c0,6, 0xdd54100,8, 0xdd58004,17, 0xdd58054,1, 0xdd5805c,2, 0xdd58080,1, 0xdd580a0,2, 0xdd580b4,4, 0xdd58100,2, 0xdd58200,8, 0xdd58400,1, 0xdd58600,27, 0xdd58680,4, 0xdd586c0,25, 0xdd58740,6, 0xdd58760,2, 0xdd5876c,3, 0xdd58780,8, 0xdd587a4,3, 0xdd58800,44, 0xdd58900,1, 0xdd60000,1, 0xdd60200,27, 0xdd60280,4, 0xdd602c0,25, 0xdd60340,6, 0xdd60360,2, 0xdd6036c,3, 0xdd60380,8, 0xdd603a4,1, 0xdd60400,20, 0xdd60480,3, 0xdd60490,9, 0xdd80000,198, 0xdd80400,2, 0xdd80440,9, 0xdd80480,7, 0xdd80800,198, 0xdd80c00,2, 0xdd80c40,9, 0xdd80c80,7, 0xdd81000,198, 0xdd81400,198, 0xdd81804,6, 0xdd81824,6, 0xdd81880,2, 0xdd81904,1, 0xdd81918,28, 0xdd819a0,6, 0xdd819c0,6, 0xdd81c00,2, 0xdd81d00,2, 0xdd81e04,1, 0xdd81e74,43, 0xdd82000,2, 0xdd82100,2, 0xdd82204,1, 0xdd82274,43, 0xdd82400,3, 0xdd82600,27, 0xdd82680,4, 0xdd826c0,25, 0xdd82740,6, 0xdd82760,4, 0xdd82774,11, 0xdd827a4,4, 0xdd82800,4, 0xdd82900,34, 0xdd82a00,4, 0xdd82b00,34, 0xdd82c00,3, 0xdd82c10,12, 0xdd82e00,56, 0xdd82ee4,4, 0xdd82f00,4, 0xdd83000,1, 0xdd88000,4, 0xdd88100,42, 0xdd88200,1, 0xdd88210,3, 0xdd88220,3, 0xdd88230,3, 0xdd88240,1, 0xdd88248,3, 0xdd88400,4, 0xdd88500,58, 0xdd88600,1, 0xdd88610,3, 0xdd88620,3, 0xdd88630,3, 0xdd88640,1, 0xdd88648,3, 0xdd88800,4, 0xdd88900,36, 0xdd88a00,1, 0xdd88c00,4, 0xdd88c80,27, 0xdd88d00,1, 0xdd88d10,3, 0xdd88d20,3, 0xdd88d30,3, 0xdd88d40,1, 0xdd88d48,3, 0xdd88e00,4, 0xdd88e80,31, 0xdd88f00,1, 0xdd88f10,3, 0xdd88f20,3, 0xdd88f30,3, 0xdd88f40,1, 0xdd88f48,3, 0xdd89000,4, 0xdd89040,13, 0xdd89080,1, 0xdd89200,15, 0xdd89240,4, 0xdd89260,17, 0xdd892c0,6, 0xdd892e0,2, 0xdd892ec,3, 0xdd89300,8, 0xdd89324,8, 0xdd89400,68, 0xdd89600,60, 0xdd89700,4, 0xdd89720,5, 0xdd89740,1, 0xdd89780,2, 0xdd8978c,2, 0xdd897a0,1, 0xdd897c0,12, 0xdd89800,7, 0xdd89820,5, 0xdd89900,49, 0xdd89a00,1, 0xdd89a08,23, 0xdd89a84,1, 0xdd89a8c,1, 0xdd89a94,1, 0xdd89a9c,2, 0xdd89ac0,1, 0xdd89c00,10, 0xdd89c40,1, 0xdd89c50,3, 0xdd89c80,10, 0xdd89cc0,12, 0xdd89d00,3, 0xdd89e00,1, 0xdd8a000,4, 0xdd8a100,42, 0xdd8a200,1, 0xdd8a210,3, 0xdd8a220,3, 0xdd8a230,3, 0xdd8a240,1, 0xdd8a248,3, 0xdd8a400,4, 0xdd8a500,58, 0xdd8a600,1, 0xdd8a610,3, 0xdd8a620,3, 0xdd8a630,3, 0xdd8a640,1, 0xdd8a648,3, 0xdd8a800,4, 0xdd8a900,36, 0xdd8aa00,1, 0xdd8ac00,4, 0xdd8ac80,27, 0xdd8ad00,1, 0xdd8ad10,3, 0xdd8ad20,3, 0xdd8ad30,3, 0xdd8ad40,1, 0xdd8ad48,3, 0xdd8ae00,4, 0xdd8ae80,31, 0xdd8af00,1, 0xdd8af10,3, 0xdd8af20,3, 0xdd8af30,3, 0xdd8af40,1, 0xdd8af48,3, 0xdd8b000,4, 0xdd8b040,13, 0xdd8b080,1, 0xdd8b200,15, 0xdd8b240,4, 0xdd8b260,17, 0xdd8b2c0,6, 0xdd8b2e0,2, 0xdd8b2ec,3, 0xdd8b300,8, 0xdd8b324,8, 0xdd8b400,68, 0xdd8b600,60, 0xdd8b700,4, 0xdd8b720,5, 0xdd8b740,1, 0xdd8b780,2, 0xdd8b78c,2, 0xdd8b7a0,1, 0xdd8b7c0,12, 0xdd8b800,7, 0xdd8b820,5, 0xdd8b900,49, 0xdd8ba00,1, 0xdd8ba08,23, 0xdd8ba84,1, 0xdd8ba8c,1, 0xdd8ba94,1, 0xdd8ba9c,2, 0xdd8bac0,1, 0xdd8bc00,10, 0xdd8bc40,1, 0xdd8bc50,3, 0xdd8bc80,10, 0xdd8bcc0,12, 0xdd8bd00,3, 0xdd8be00,1, 0xdd8c000,20, 0xdd8c080,3, 0xdd8c090,1, 0xdd8c098,4, 0xdd90000,49, 0xdd90100,12, 0xdd90140,4, 0xdd90184,1, 0xdd90198,2, 0xdd901a4,1, 0xdd901b8,7, 0xdd901e0,4, 0xdd90200,20, 0xdd90280,3, 0xdd90290,9, 0xdd902c0,6, 0xdd902e0,1, 0xdd902e8,7, 0xdd90400,49, 0xdd90500,12, 0xdd90540,4, 0xdd90584,1, 0xdd90598,2, 0xdd905a4,1, 0xdd905b8,7, 0xdd905e0,4, 0xdd90600,20, 0xdd90680,3, 0xdd90690,9, 0xdd906c0,6, 0xdd906e0,1, 0xdd906e8,7, 0xdd90800,49, 0xdd90900,12, 0xdd90940,4, 0xdd90984,1, 0xdd90998,2, 0xdd909a4,1, 0xdd909b8,7, 0xdd909e0,4, 0xdd90a00,20, 0xdd90a80,3, 0xdd90a90,9, 0xdd90ac0,6, 0xdd90ae0,1, 0xdd90ae8,7, 0xdd90c00,49, 0xdd90d00,12, 0xdd90d40,4, 0xdd90d84,1, 0xdd90d98,2, 0xdd90da4,1, 0xdd90db8,7, 0xdd90de0,4, 0xdd90e00,20, 0xdd90e80,3, 0xdd90e90,9, 0xdd90ec0,6, 0xdd90ee0,1, 0xdd90ee8,7, 0xdd91000,49, 0xdd91100,12, 0xdd91140,4, 0xdd91184,1, 0xdd91198,2, 0xdd911a4,1, 0xdd911b8,7, 0xdd911e0,4, 0xdd91200,20, 0xdd91280,3, 0xdd91290,9, 0xdd912c0,6, 0xdd912e0,1, 0xdd912e8,7, 0xdd91400,49, 0xdd91500,12, 0xdd91540,4, 0xdd91584,1, 0xdd91598,2, 0xdd915a4,1, 0xdd915b8,7, 0xdd915e0,4, 0xdd91600,20, 0xdd91680,3, 0xdd91690,9, 0xdd916c0,6, 0xdd916e0,1, 0xdd916e8,7, 0xdd91800,49, 0xdd91900,12, 0xdd91940,4, 0xdd91984,1, 0xdd91998,2, 0xdd919a4,1, 0xdd919b8,7, 0xdd919e0,4, 0xdd91a00,20, 0xdd91a80,3, 0xdd91a90,9, 0xdd91ac0,6, 0xdd91ae0,1, 0xdd91ae8,7, 0xdd92000,20, 0xdd92080,10, 0xdd92100,20, 0xdd92180,10, 0xdd92200,12, 0xdd92400,20, 0xdd92480,10, 0xdd92500,20, 0xdd92580,10, 0xdd92600,12, 0xdd92800,3, 0xdd92840,12, 0xdd92880,12, 0xdd928c0,12, 0xdd92900,12, 0xdd92940,12, 0xdd92980,12, 0xdd929c0,12, 0xdd92a00,12, 0xdd92c00,12, 0xdd92c40,7, 0xdd92c60,10, 0xdd93004,1, 0xdd93044,43, 0xdd93100,7, 0xdd93120,7, 0xdd93140,2, 0xdd9314c,2, 0xdd93160,2, 0xdd9316c,2, 0xdd93180,18, 0xdd93200,2, 0xdd93220,10, 0xdd93260,20, 0xdd932c0,9, 0xdd93300,15, 0xdd93340,9, 0xdd93380,6, 0xdd933a0,4, 0xdd93400,5, 0xdd94000,53, 0xdd94100,3, 0xdd94110,15, 0xdd94200,53, 0xdd94300,3, 0xdd94310,15, 0xdd94400,5, 0xdd94420,5, 0xdd94440,18, 0xdd94800,3, 0xdd94810,2, 0xdd94820,3, 0xdd94830,2, 0xdd94840,1, 0xdd95000,7, 0xdd95020,7, 0xdd95080,19, 0xdd95100,19, 0xdd95180,25, 0xdd95200,20, 0xdd95280,20, 0xdd95300,8, 0xdd95340,4, 0xdd95380,15, 0xdd953c0,15, 0xdd95400,9, 0xdd95430,5, 0xdd96000,6, 0xdd96020,1, 0xdd96028,2, 0xdd96040,11, 0xdd96070,2, 0xdd98000,82, 0xdd98200,2, 0xdd98240,9, 0xdd98280,7, 0xdd98400,82, 0xdd98604,6, 0xdd98700,15, 0xdd98740,9, 0xdd98780,6, 0xdd987a0,6, 0xdd98800,2, 0xdd98810,3, 0xdd98880,24, 0xdd988e4,1, 0xdd988f0,12, 0xdda0000,22, 0xdda0080,22, 0xdda0100,5, 0xdda0120,5, 0xdda0140,3, 0xdda0160,16, 0xdda01c0,7, 0xdda01e0,2, 0xdda0200,7, 0xdda0220,2, 0xdda0400,15, 0xdda0440,3, 0xdda0450,3, 0xdda0460,24, 0xdda0500,15, 0xdda0540,3, 0xdda0550,3, 0xdda0560,24, 0xdda0600,15, 0xdda0640,3, 0xdda0650,3, 0xdda0660,24, 0xdda0700,15, 0xdda0740,3, 0xdda0750,3, 0xdda0760,24, 0xdda0800,4, 0xdda0820,16, 0xdda0880,10, 0xdda08c0,10, 0xdda0900,6, 0xdda0920,6, 0xdda0940,4, 0xdda0980,13, 0xdda09c0,13, 0xdda0a00,9, 0xdda1000,86, 0xdda1200,2, 0xdda1240,9, 0xdda1280,7, 0xdda1400,86, 0xdda1604,6, 0xdda1800,86, 0xdda1a00,2, 0xdda1a40,9, 0xdda1a80,7, 0xdda1c00,86, 0xdda1e04,6, 0xdda2000,15, 0xdda2040,4, 0xdda2060,17, 0xdda20c0,6, 0xdda20e0,4, 0xdda20f4,11, 0xdda2128,38, 0xdda21c4,2, 0xdda21d0,4, 0xdda2200,1, 0xdda4000,22, 0xdda4080,22, 0xdda4100,5, 0xdda4120,5, 0xdda4140,3, 0xdda4160,16, 0xdda41c0,7, 0xdda41e0,2, 0xdda4200,7, 0xdda4220,2, 0xdda4400,15, 0xdda4440,3, 0xdda4450,3, 0xdda4460,24, 0xdda4500,15, 0xdda4540,3, 0xdda4550,3, 0xdda4560,24, 0xdda4600,15, 0xdda4640,3, 0xdda4650,3, 0xdda4660,24, 0xdda4700,15, 0xdda4740,3, 0xdda4750,3, 0xdda4760,24, 0xdda4800,4, 0xdda4820,16, 0xdda4880,10, 0xdda48c0,10, 0xdda4900,6, 0xdda4920,6, 0xdda4940,4, 0xdda4980,13, 0xdda49c0,13, 0xdda4a00,9, 0xdda5000,86, 0xdda5200,2, 0xdda5240,9, 0xdda5280,7, 0xdda5400,86, 0xdda5604,6, 0xdda5800,86, 0xdda5a00,2, 0xdda5a40,9, 0xdda5a80,7, 0xdda5c00,86, 0xdda5e04,6, 0xdda6000,15, 0xdda6040,4, 0xdda6060,17, 0xdda60c0,6, 0xdda60e0,4, 0xdda60f4,11, 0xdda6128,38, 0xdda61c4,2, 0xdda61d0,4, 0xdda6200,1, 0xdda8000,9, 0xdda8040,9, 0xdda8080,5, 0xdda8100,21, 0xdda8160,5, 0xdda8180,45, 0xdda8240,13, 0xdda8280,9, 0xdda8400,9, 0xdda8440,9, 0xdda8480,5, 0xdda8500,21, 0xdda8560,5, 0xdda8580,45, 0xdda8640,13, 0xdda8680,9, 0xdda8800,12, 0xdda8900,15, 0xdda8940,4, 0xdda8960,17, 0xdda89c0,6, 0xdda89e0,4, 0xdda89f4,29, 0xddac000,30, 0xddac080,3, 0xddac090,19, 0xddac100,30, 0xddac180,3, 0xddac190,19, 0xddac200,30, 0xddac280,3, 0xddac290,19, 0xddac300,30, 0xddac380,3, 0xddac390,19, 0xddac400,30, 0xddac480,3, 0xddac490,19, 0xddac500,30, 0xddac580,3, 0xddac590,19, 0xddac600,30, 0xddac680,3, 0xddac690,19, 0xddac700,30, 0xddac780,3, 0xddac790,19, 0xddac800,12, 0xddac844,1, 0xddac854,8, 0xddac880,7, 0xddac8a0,2, 0xddac8ac,2, 0xddac8c0,26, 0xddac980,4, 0xddac9a0,5, 0xddac9c0,1, 0xddad000,3, 0xddad010,3, 0xddad020,3, 0xddad030,3, 0xddad040,3, 0xddad050,3, 0xddad060,3, 0xddad070,3, 0xddad080,6, 0xddad0a0,6, 0xddad0c0,6, 0xddad0e0,6, 0xddad100,6, 0xddad120,6, 0xddad140,6, 0xddad160,6, 0xddad200,68, 0xddad400,1, 0xddad804,1, 0xddad844,54, 0xddada00,12, 0xddada40,12, 0xddada80,12, 0xddadac0,12, 0xddadb00,12, 0xddadb40,12, 0xddadb80,12, 0xddadbc0,12, 0xddadc00,28, 0xddadc80,10, 0xddae000,3, 0xddae020,6, 0xddae040,6, 0xddae060,15, 0xddae100,26, 0xddae180,15, 0xddae200,15, 0xddae240,4, 0xddae260,17, 0xddae2c0,6, 0xddae2e0,4, 0xddae2f4,18, 0xddae340,4, 0xddae360,17, 0xddae3c0,6, 0xddae3e0,4, 0xddae3f4,15, 0xddb0000,1, 0xddb1000,1020, 0xddb2000,194, 0xddb3000,1020, 0xddb4000,1020, 0xddb5000,1020, 0xddb6000,1020, 0xddb7000,1020, 0xddb8000,1020, 0xddb9000,1020, 0xddba000,1020, 0xddbb000,194, 0xddbc000,3, 0xddbc010,13, 0xddbc080,16, 0xddbc100,20, 0xddbc184,1, 0xddbc18c,4, 0xddbc200,3, 0xddbc210,13, 0xddbc280,16, 0xddbc300,20, 0xddbc384,1, 0xddbc38c,4, 0xddbc400,3, 0xddbc410,13, 0xddbc480,16, 0xddbc500,20, 0xddbc584,1, 0xddbc58c,4, 0xddbc600,3, 0xddbc610,13, 0xddbc680,16, 0xddbc700,20, 0xddbc784,1, 0xddbc78c,4, 0xddbc800,3, 0xddbc810,13, 0xddbc880,16, 0xddbc900,20, 0xddbc984,1, 0xddbc98c,4, 0xddbca00,3, 0xddbca10,13, 0xddbca80,16, 0xddbcb00,20, 0xddbcb84,1, 0xddbcb8c,4, 0xddbcc00,3, 0xddbcc10,13, 0xddbcc80,16, 0xddbcd00,20, 0xddbcd84,1, 0xddbcd8c,4, 0xddbce00,3, 0xddbce10,13, 0xddbce80,16, 0xddbcf00,20, 0xddbcf84,1, 0xddbcf8c,4, 0xddbd000,3, 0xddbd010,13, 0xddbd080,16, 0xddbd100,20, 0xddbd184,1, 0xddbd18c,4, 0xddbd200,18, 0xddbd250,2, 0xddbd260,4, 0xddbe000,1, 0xddbe014,1, 0xddbe01c,19, 0xddbe080,1, 0xddbe094,1, 0xddbe09c,19, 0xddbe100,8, 0xddbe200,13, 0xddbe240,9, 0xddbe280,12, 0xddbe2c0,2, 0xddbe2e0,12, 0xddc0000,3, 0xddc0080,20, 0xddc0100,10, 0xddc0140,1, 0xddc0154,1, 0xddc015c,2, 0xddc0200,15, 0xddc0240,4, 0xddc0260,17, 0xddc02c0,6, 0xddc02e0,2, 0xddc02ec,3, 0xddc0300,8, 0xddc0324,1, 0xddc0400,4, 0xddc0440,20, 0xddc04c0,9, 0xddc0500,33, 0xddc0600,11, 0xddc0640,11, 0xddc0680,1, 0xddc2000,1, 0xddc2200,4, 0xddc2300,53, 0xddc2400,4, 0xddc2500,40, 0xddc2600,15, 0xddc2640,4, 0xddc2660,17, 0xddc26c0,6, 0xddc26e0,2, 0xddc26ec,3, 0xddc2700,8, 0xddc2724,1, 0xddc2800,20, 0xddc2c00,53, 0xddc2d00,53, 0xddc2e00,1, 0xddc3000,40, 0xddc3100,40, 0xddc3200,1, 0xddc3400,1, 0xddc3804,1, 0xddc3844,39, 0xddc3900,3, 0xddc3a00,3, 0xddc3a44,1, 0xddc3a50,4, 0xddc3a80,1, 0xddc4000,2, 0xddc4200,27, 0xddc4280,4, 0xddc42c0,25, 0xddc4340,6, 0xddc4360,2, 0xddc436c,3, 0xddc4380,8, 0xddc43a4,1, 0xddc4400,12, 0xddc4440,1, 0xddc8000,3, 0xddc8080,20, 0xddc8100,10, 0xddc8140,1, 0xddc8154,1, 0xddc815c,2, 0xddc8200,15, 0xddc8240,4, 0xddc8260,17, 0xddc82c0,6, 0xddc82e0,2, 0xddc82ec,3, 0xddc8300,8, 0xddc8324,1, 0xddc8400,4, 0xddc8440,20, 0xddc84c0,9, 0xddc8500,33, 0xddc8600,11, 0xddc8640,11, 0xddc8680,1, 0xddca000,1, 0xddca200,4, 0xddca300,53, 0xddca400,4, 0xddca500,40, 0xddca600,15, 0xddca640,4, 0xddca660,17, 0xddca6c0,6, 0xddca6e0,2, 0xddca6ec,3, 0xddca700,8, 0xddca724,1, 0xddca800,20, 0xddcac00,53, 0xddcad00,53, 0xddcae00,1, 0xddcb000,40, 0xddcb100,40, 0xddcb200,1, 0xddcb400,1, 0xddcb804,1, 0xddcb844,39, 0xddcb900,3, 0xddcba00,3, 0xddcba44,1, 0xddcba50,4, 0xddcba80,1, 0xddcc000,2, 0xddcc200,27, 0xddcc280,4, 0xddcc2c0,25, 0xddcc340,6, 0xddcc360,2, 0xddcc36c,3, 0xddcc380,8, 0xddcc3a4,1, 0xddcc400,12, 0xddcc440,1, 0xddd0000,4, 0xddd0020,3, 0xddd0030,2, 0xddd0200,1, 0xddd0224,10, 0xddd0250,5, 0xddd0280,1, 0xddd0288,24, 0xddd0300,3, 0xddd0404,1, 0xddd0414,5, 0xddd0500,36, 0xddd0600,3, 0xddd0800,2, 0xddd1000,1, 0xddd1008,21, 0xddd1080,1, 0xddd1088,21, 0xddd1100,1, 0xddd1108,21, 0xddd1180,1, 0xddd1188,21, 0xddd1200,1, 0xddd1208,21, 0xddd1280,1, 0xddd1288,21, 0xddd1300,1, 0xddd1308,21, 0xddd1380,1, 0xddd1388,21, 0xddd1400,21, 0xddd1800,142, 0xddd1c00,1, 0xddd2000,4, 0xddd2100,39, 0xddd2200,3, 0xddd2214,3, 0xddd4004,1, 0xddd4020,16, 0xddd4080,2, 0xddd4094,1, 0xddd409c,2, 0xddd40c0,6, 0xddd4100,8, 0xddd8004,17, 0xddd8054,1, 0xddd805c,2, 0xddd8080,1, 0xddd80a0,2, 0xddd80b4,4, 0xddd8100,2, 0xddd8200,8, 0xddd8400,1, 0xddd8600,27, 0xddd8680,4, 0xddd86c0,25, 0xddd8740,6, 0xddd8760,2, 0xddd876c,3, 0xddd8780,8, 0xddd87a4,3, 0xddd8800,44, 0xddd8900,1, 0xdde0000,1, 0xdde0200,27, 0xdde0280,4, 0xdde02c0,25, 0xdde0340,6, 0xdde0360,2, 0xdde036c,3, 0xdde0380,8, 0xdde03a4,1, 0xdde0400,20, 0xdde0480,3, 0xdde0490,9, 0xe002000,49, 0xe002100,12, 0xe002140,4, 0xe002184,1, 0xe002198,2, 0xe0021a4,1, 0xe0021b8,7, 0xe0021e0,4, 0xe002200,20, 0xe002280,3, 0xe002290,9, 0xe0022c0,6, 0xe0022e0,1, 0xe0022e8,7, 0xe002400,49, 0xe002500,12, 0xe002540,4, 0xe002584,1, 0xe002598,2, 0xe0025a4,1, 0xe0025b8,7, 0xe0025e0,4, 0xe002600,20, 0xe002680,3, 0xe002690,9, 0xe0026c0,6, 0xe0026e0,1, 0xe0026e8,7, 0xe002800,7, 0xe002820,3, 0xe002830,11, 0xe002860,14, 0xe002900,9, 0xe002a00,7, 0xe002a20,9, 0xe002a80,2, 0xe002c00,27, 0xe002c80,9, 0xe002cc0,6, 0xe002ce0,4, 0xe002d00,5, 0xe002d18,5, 0xe002d30,9, 0xe002d58,5, 0xe002d70,7, 0xe002e00,6, 0xe002e20,6, 0xe002e40,6, 0xe002e60,6, 0xe002e80,6, 0xe002ea0,6, 0xe002ec0,6, 0xe002ee0,6, 0xe002f00,6, 0xe002f20,6, 0xe002f40,6, 0xe002f60,6, 0xe002f80,6, 0xe002fa0,6, 0xe002fc0,6, 0xe002fe0,6, 0xe003000,28, 0xe003080,6, 0xe040000,3, 0xe04001c,6, 0xe040080,3, 0xe040090,1, 0xe0400d0,3, 0xe0400e4,25, 0xe04014c,21, 0xe0401a4,12, 0xe0401d8,72, 0xe040304,5, 0xe04031c,98, 0xe0404ac,4, 0xe0404c8,20, 0xe040520,56, 0xe040608,21, 0xe040664,3, 0xe040674,22, 0xe040710,1, 0xe040750,3, 0xe040764,25, 0xe0407cc,21, 0xe040824,12, 0xe040858,72, 0xe040984,5, 0xe04099c,98, 0xe040b2c,4, 0xe040b48,20, 0xe040ba0,56, 0xe040c88,21, 0xe040ce4,3, 0xe040cf4,22, 0xe040d90,1, 0xe040dd0,3, 0xe040de4,25, 0xe040e4c,21, 0xe040ea4,12, 0xe040ed8,72, 0xe041004,5, 0xe04101c,98, 0xe0411ac,4, 0xe0411c8,20, 0xe041220,56, 0xe041308,21, 0xe041364,3, 0xe041374,22, 0xe041410,1, 0xe041450,3, 0xe041464,25, 0xe0414cc,21, 0xe041524,12, 0xe041558,72, 0xe041684,5, 0xe04169c,98, 0xe04182c,4, 0xe041848,20, 0xe0418a0,56, 0xe041988,21, 0xe0419e4,3, 0xe0419f4,22, 0xe041a90,1, 0xe041ad0,3, 0xe041ae4,25, 0xe041b4c,21, 0xe041ba4,12, 0xe041bd8,72, 0xe041d04,5, 0xe041d1c,98, 0xe041eac,4, 0xe041ec8,20, 0xe041f20,56, 0xe042008,21, 0xe042064,3, 0xe042074,22, 0xe042110,1, 0xe042150,3, 0xe042164,25, 0xe0421cc,21, 0xe042224,12, 0xe042258,72, 0xe042384,5, 0xe04239c,98, 0xe04252c,4, 0xe042548,20, 0xe0425a0,56, 0xe042688,21, 0xe0426e4,3, 0xe0426f4,22, 0xe042790,1, 0xe0427d0,3, 0xe0427e4,25, 0xe04284c,21, 0xe0428a4,12, 0xe0428d8,72, 0xe042a04,5, 0xe042a1c,98, 0xe042bac,4, 0xe042bc8,20, 0xe042c20,56, 0xe042d08,21, 0xe042d64,3, 0xe042d74,22, 0xe042e10,1, 0xe042e50,3, 0xe042e64,25, 0xe042ecc,21, 0xe042f24,12, 0xe042f58,72, 0xe043084,5, 0xe04309c,98, 0xe04322c,4, 0xe043248,20, 0xe0432a0,56, 0xe043388,21, 0xe0433e4,3, 0xe0433f4,22, 0xe043490,1, 0xe0434d0,3, 0xe0434e4,25, 0xe04354c,21, 0xe0435a4,12, 0xe0435d8,72, 0xe043704,5, 0xe04371c,98, 0xe0438ac,4, 0xe0438c8,20, 0xe043920,56, 0xe043a08,21, 0xe043a64,3, 0xe043a74,22, 0xe043b10,1, 0xe043b50,3, 0xe043b64,25, 0xe043bcc,21, 0xe043c24,12, 0xe043c58,72, 0xe043d84,5, 0xe043d9c,98, 0xe043f2c,4, 0xe043f48,20, 0xe043fa0,56, 0xe044088,21, 0xe0440e4,3, 0xe0440f4,22, 0xe044190,1, 0xe0441d0,3, 0xe0441e4,25, 0xe04424c,21, 0xe0442a4,12, 0xe0442d8,72, 0xe044404,5, 0xe04441c,98, 0xe0445ac,4, 0xe0445c8,20, 0xe044620,56, 0xe044708,21, 0xe044764,3, 0xe044774,22, 0xe044810,1, 0xe044850,3, 0xe044864,25, 0xe0448cc,21, 0xe044924,12, 0xe044958,72, 0xe044a84,5, 0xe044a9c,98, 0xe044c2c,4, 0xe044c48,20, 0xe044ca0,56, 0xe044d88,21, 0xe044de4,3, 0xe044df4,22, 0xe044e90,1, 0xe044ed0,3, 0xe044ee4,25, 0xe044f4c,21, 0xe044fa4,12, 0xe044fd8,72, 0xe045104,5, 0xe04511c,98, 0xe0452ac,4, 0xe0452c8,20, 0xe045320,56, 0xe045408,21, 0xe045464,3, 0xe045474,22, 0xe045510,1, 0xe045550,3, 0xe045564,25, 0xe0455cc,21, 0xe045624,12, 0xe045658,72, 0xe045784,5, 0xe04579c,98, 0xe04592c,4, 0xe045948,20, 0xe0459a0,56, 0xe045a88,21, 0xe045ae4,3, 0xe045af4,22, 0xe045b90,1, 0xe045bd0,3, 0xe045be4,25, 0xe045c4c,21, 0xe045ca4,12, 0xe045cd8,72, 0xe045e04,5, 0xe045e1c,98, 0xe045fac,4, 0xe045fc8,20, 0xe046020,56, 0xe046108,21, 0xe046164,3, 0xe046174,22, 0xe046210,1, 0xe046250,3, 0xe046264,25, 0xe0462cc,21, 0xe046324,12, 0xe046358,72, 0xe046484,5, 0xe04649c,98, 0xe04662c,4, 0xe046648,20, 0xe0466a0,56, 0xe046788,21, 0xe0467e4,3, 0xe0467f4,22, 0xe046890,1, 0xe0468d0,3, 0xe0468e4,25, 0xe04694c,21, 0xe0469a4,12, 0xe0469d8,72, 0xe046b04,5, 0xe046b1c,98, 0xe046cac,4, 0xe046cc8,20, 0xe046d20,56, 0xe046e08,21, 0xe046e64,3, 0xe046e74,22, 0xe046f10,1, 0xe046f50,3, 0xe046f64,25, 0xe046fcc,21, 0xe047024,12, 0xe047058,72, 0xe047184,5, 0xe04719c,98, 0xe04732c,4, 0xe047348,20, 0xe0473a0,56, 0xe047488,21, 0xe0474e4,3, 0xe0474f4,22, 0xe047590,1, 0xe0475d0,3, 0xe0475e4,25, 0xe04764c,21, 0xe0476a4,12, 0xe0476d8,72, 0xe047804,5, 0xe04781c,98, 0xe0479ac,4, 0xe0479c8,20, 0xe047a20,56, 0xe047b08,21, 0xe047b64,3, 0xe047b74,22, 0xe047c10,1, 0xe047c50,3, 0xe047c64,25, 0xe047ccc,21, 0xe047d24,12, 0xe047d58,72, 0xe047e84,5, 0xe047e9c,98, 0xe04802c,4, 0xe048048,20, 0xe0480a0,56, 0xe048188,21, 0xe0481e4,3, 0xe0481f4,22, 0xe048290,1, 0xe0482d0,3, 0xe0482e4,25, 0xe04834c,21, 0xe0483a4,12, 0xe0483d8,72, 0xe048504,5, 0xe04851c,98, 0xe0486ac,4, 0xe0486c8,20, 0xe048720,56, 0xe048808,21, 0xe048864,3, 0xe048874,22, 0xe048910,1, 0xe048950,3, 0xe048964,25, 0xe0489cc,21, 0xe048a24,12, 0xe048a58,72, 0xe048b84,5, 0xe048b9c,98, 0xe048d2c,4, 0xe048d48,20, 0xe048da0,56, 0xe048e88,21, 0xe048ee4,3, 0xe048ef4,22, 0xe048f90,1, 0xe048fd0,3, 0xe048fe4,25, 0xe04904c,21, 0xe0490a4,12, 0xe0490d8,72, 0xe049204,5, 0xe04921c,98, 0xe0493ac,4, 0xe0493c8,20, 0xe049420,56, 0xe049508,21, 0xe049564,3, 0xe049574,22, 0xe049610,1, 0xe049650,3, 0xe049664,25, 0xe0496cc,21, 0xe049724,12, 0xe049758,72, 0xe049884,5, 0xe04989c,98, 0xe049a2c,4, 0xe049a48,20, 0xe049aa0,56, 0xe049b88,21, 0xe049be4,3, 0xe049bf4,22, 0xe049c90,1, 0xe049cd0,3, 0xe049ce4,25, 0xe049d4c,21, 0xe049da4,12, 0xe049dd8,72, 0xe049f04,5, 0xe049f1c,98, 0xe04a0ac,4, 0xe04a0c8,20, 0xe04a120,56, 0xe04a208,21, 0xe04a264,3, 0xe04a274,22, 0xe04a310,1, 0xe04a350,3, 0xe04a364,25, 0xe04a3cc,21, 0xe04a424,12, 0xe04a458,72, 0xe04a584,5, 0xe04a59c,98, 0xe04a72c,4, 0xe04a748,20, 0xe04a7a0,56, 0xe04a888,21, 0xe04a8e4,3, 0xe04a8f4,22, 0xe04a990,1, 0xe04a9d0,3, 0xe04a9e4,25, 0xe04aa4c,21, 0xe04aaa4,12, 0xe04aad8,72, 0xe04ac04,5, 0xe04ac1c,98, 0xe04adac,4, 0xe04adc8,20, 0xe04ae20,56, 0xe04af08,21, 0xe04af64,3, 0xe04af74,22, 0xe04b010,1, 0xe04b050,3, 0xe04b064,25, 0xe04b0cc,21, 0xe04b124,12, 0xe04b158,72, 0xe04b284,5, 0xe04b29c,98, 0xe04b42c,4, 0xe04b448,20, 0xe04b4a0,56, 0xe04b588,21, 0xe04b5e4,3, 0xe04b5f4,22, 0xe04b690,1, 0xe04b6d0,3, 0xe04b6e4,25, 0xe04b74c,21, 0xe04b7a4,12, 0xe04b7d8,72, 0xe04b904,5, 0xe04b91c,98, 0xe04baac,4, 0xe04bac8,20, 0xe04bb20,56, 0xe04bc08,21, 0xe04bc64,3, 0xe04bc74,22, 0xe04bd10,1, 0xe04bd50,3, 0xe04bd64,25, 0xe04bdcc,21, 0xe04be24,12, 0xe04be58,72, 0xe04bf84,5, 0xe04bf9c,98, 0xe04c12c,4, 0xe04c148,20, 0xe04c1a0,56, 0xe04c288,21, 0xe04c2e4,3, 0xe04c2f4,22, 0xe04c390,1, 0xe04c3d0,3, 0xe04c3e4,25, 0xe04c44c,21, 0xe04c4a4,12, 0xe04c4d8,72, 0xe04c604,5, 0xe04c61c,98, 0xe04c7ac,4, 0xe04c7c8,20, 0xe04c820,56, 0xe04c908,21, 0xe04c964,3, 0xe04c974,22, 0xe04ca10,1, 0xe04ca50,3, 0xe04ca64,25, 0xe04cacc,21, 0xe04cb24,12, 0xe04cb58,72, 0xe04cc84,5, 0xe04cc9c,98, 0xe04ce2c,4, 0xe04ce48,20, 0xe04cea0,56, 0xe04cf88,21, 0xe04cfe4,3, 0xe04cff4,22, 0xe04d090,1, 0xe04d0d0,3, 0xe04d0e4,25, 0xe04d14c,21, 0xe04d1a4,12, 0xe04d1d8,72, 0xe04d304,5, 0xe04d31c,98, 0xe04d4ac,4, 0xe04d4c8,20, 0xe04d520,56, 0xe04d608,21, 0xe04d664,3, 0xe04d674,22, 0xe04d710,1, 0xe04d750,3, 0xe04d764,25, 0xe04d7cc,21, 0xe04d824,12, 0xe04d858,72, 0xe04d984,5, 0xe04d99c,98, 0xe04db2c,4, 0xe04db48,20, 0xe04dba0,56, 0xe04dc88,21, 0xe04dce4,3, 0xe04dcf4,22, 0xe04dd90,1, 0xe04ddd0,3, 0xe04dde4,25, 0xe04de4c,21, 0xe04dea4,12, 0xe04ded8,72, 0xe04e004,5, 0xe04e01c,98, 0xe04e1ac,4, 0xe04e1c8,20, 0xe04e220,56, 0xe04e308,21, 0xe04e364,3, 0xe04e374,22, 0xe04e410,2, 0xe04e454,72, 0xe04e760,3, 0xe04e7ac,42, 0xe04e85c,31, 0xe04e990,54, 0xe04ea70,58, 0xe04eb60,58, 0xe04ec50,58, 0xe04ed40,58, 0xe04ee30,58, 0xe04ef20,58, 0xe04f010,58, 0xe04f100,58, 0xe04f1f0,58, 0xe04f2e0,58, 0xe04f3d0,58, 0xe04f4c0,58, 0xe04f5b0,58, 0xe04f6a0,58, 0xe04f790,58, 0xe04f880,58, 0xe04f970,58, 0xe04fa60,58, 0xe04fb50,58, 0xe04fc40,58, 0xe04fd30,58, 0xe04fe20,58, 0xe04ff10,58, 0xe050000,58, 0xe0500f0,58, 0xe0501e0,58, 0xe0502d0,58, 0xe0503c0,58, 0xe0504b0,58, 0xe0505a0,58, 0xe050690,58, 0xe050780,101, 0xe050990,49, 0xe050a90,18, 0xe050ae0,11, 0xe050b10,4, 0xe050b34,45, 0xe050c38,9, 0xe050c68,4, 0xe050c80,2, 0xe050cb8,14, 0xe050cf4,12, 0xe050e38,3, 0xe050e48,2, 0xe050e54,68, 0xe050f68,2, 0xe050f74,68, 0xe051088,1, 0xe051090,2, 0xe05109c,68, 0xe0511b0,2, 0xe0511bc,68, 0xe0512d0,1, 0xe0512d8,4, 0xe0512f0,3, 0xe051304,4, 0xe051318,7, 0xe051368,8, 0xe0513bc,1, 0xe0513c8,4, 0xe0513e0,3, 0xe0513f4,4, 0xe051408,7, 0xe051458,8, 0xe0514ac,1, 0xe0514b8,4, 0xe0514d0,3, 0xe0514e4,4, 0xe0514f8,7, 0xe051548,8, 0xe05159c,1, 0xe0515a8,4, 0xe0515c0,3, 0xe0515d4,4, 0xe0515e8,7, 0xe051638,8, 0xe05168c,1, 0xe051698,4, 0xe0516b0,3, 0xe0516c4,4, 0xe0516d8,7, 0xe051728,8, 0xe05177c,1, 0xe051788,4, 0xe0517a0,3, 0xe0517b4,4, 0xe0517c8,7, 0xe051818,8, 0xe05186c,1, 0xe051878,4, 0xe051890,3, 0xe0518a4,4, 0xe0518b8,7, 0xe051908,8, 0xe05195c,1, 0xe051968,4, 0xe051980,3, 0xe051994,4, 0xe0519a8,7, 0xe0519f8,8, 0xe051a4c,1, 0xe051a58,4, 0xe051a70,3, 0xe051a84,4, 0xe051a98,7, 0xe051ae8,8, 0xe051b3c,1, 0xe051b48,4, 0xe051b60,3, 0xe051b74,4, 0xe051b88,7, 0xe051bd8,8, 0xe051c2c,1, 0xe051c38,4, 0xe051c50,3, 0xe051c64,4, 0xe051c78,7, 0xe051cc8,8, 0xe051d1c,1, 0xe051d28,4, 0xe051d40,3, 0xe051d54,4, 0xe051d68,7, 0xe051db8,8, 0xe051e0c,1, 0xe051e18,4, 0xe051e30,3, 0xe051e44,4, 0xe051e58,7, 0xe051ea8,8, 0xe051efc,1, 0xe051f08,4, 0xe051f20,3, 0xe051f34,4, 0xe051f48,7, 0xe051f98,8, 0xe051fec,1, 0xe051ff8,4, 0xe052010,3, 0xe052024,4, 0xe052038,7, 0xe052088,8, 0xe0520dc,1, 0xe0520e8,4, 0xe052100,3, 0xe052114,4, 0xe052128,7, 0xe052178,8, 0xe0521cc,1, 0xe0521d8,4, 0xe0521f0,3, 0xe052204,4, 0xe052218,7, 0xe052268,8, 0xe0522bc,1, 0xe0522c8,64, 0xe052428,4, 0xe052678,27, 0xe0526ec,3, 0xe052778,1, 0xe0528c8,11, 0xe0528f8,17, 0xe052940,1, 0xe052948,1, 0xe052950,1, 0xe052978,36, 0xe052a0c,57, 0xe052af4,34, 0xe052b80,57, 0xe052c68,34, 0xe052cf4,57, 0xe052ddc,34, 0xe052e68,57, 0xe052f50,34, 0xe052fdc,57, 0xe0530c4,34, 0xe053150,57, 0xe053238,34, 0xe0532c4,57, 0xe0533ac,34, 0xe053438,57, 0xe053520,34, 0xe0535ac,57, 0xe053694,34, 0xe053720,57, 0xe053808,34, 0xe053894,57, 0xe05397c,34, 0xe053a08,57, 0xe053af0,34, 0xe053b7c,57, 0xe053c64,34, 0xe053cf0,57, 0xe053dd8,34, 0xe053e64,57, 0xe053f4c,34, 0xe053fd8,57, 0xe0540c0,34, 0xe05414c,57, 0xe054234,34, 0xe0542c0,57, 0xe0543a8,34, 0xe054434,57, 0xe05451c,34, 0xe0545a8,57, 0xe054690,34, 0xe05471c,57, 0xe054804,34, 0xe054890,57, 0xe054978,34, 0xe054a04,57, 0xe054aec,34, 0xe054b78,57, 0xe054c60,34, 0xe054cec,57, 0xe054dd4,34, 0xe054e60,57, 0xe054f48,34, 0xe054fd4,57, 0xe0550bc,34, 0xe055148,57, 0xe055230,34, 0xe0552bc,57, 0xe0553a4,34, 0xe055430,57, 0xe055518,34, 0xe0555a4,57, 0xe05568c,34, 0xe055718,57, 0xe055800,34, 0xe05588c,57, 0xe055974,34, 0xe055a00,57, 0xe055ae8,34, 0xe055b74,57, 0xe055d68,18, 0xe055ee8,2131, 0xe05830c,164, 0xe05865c,1, 0xe0591e8,1, 0xe0591f8,225, 0xe059588,7, 0xe0595a8,1, 0xe059670,1, 0xe0596a0,9, 0xe0596c8,17, 0xe059720,49, 0xe0597e8,5, 0xe059858,1, 0xe05a1e8,4, 0xe05a200,9, 0xe05a228,144, 0xe05a528,8, 0xe0a0000,3, 0xe0a0018,2, 0xe0a0024,14, 0xe0a0060,27, 0xe0a00d0,3, 0xe0a00e0,3, 0xe0a00f0,3, 0xe0a0100,14, 0xe0a0140,3, 0xe0a0150,1, 0xe0a015c,4, 0xe0a0170,1, 0xe0a0180,15, 0xe0a01c0,1, 0xe0a01c8,5, 0xe0a01e0,1, 0xe0a01f0,7, 0xe0a0218,2, 0xe0a0224,14, 0xe0a0260,27, 0xe0a02d0,3, 0xe0a02e0,3, 0xe0a02f0,3, 0xe0a0300,14, 0xe0a0340,3, 0xe0a0350,1, 0xe0a035c,4, 0xe0a0370,1, 0xe0a0380,15, 0xe0a03c0,1, 0xe0a03c8,5, 0xe0a03e0,1, 0xe0a03f0,7, 0xe0a0418,2, 0xe0a0424,14, 0xe0a0460,27, 0xe0a04d0,3, 0xe0a04e0,3, 0xe0a04f0,3, 0xe0a0500,14, 0xe0a0540,3, 0xe0a0550,1, 0xe0a055c,4, 0xe0a0570,1, 0xe0a0580,15, 0xe0a05c0,1, 0xe0a05c8,5, 0xe0a05e0,1, 0xe0a05f0,7, 0xe0a0618,2, 0xe0a0624,14, 0xe0a0660,27, 0xe0a06d0,3, 0xe0a06e0,3, 0xe0a06f0,3, 0xe0a0700,14, 0xe0a0740,3, 0xe0a0750,1, 0xe0a075c,4, 0xe0a0770,1, 0xe0a0780,15, 0xe0a07c0,1, 0xe0a07c8,5, 0xe0a07e0,1, 0xe0a07f0,7, 0xe0a0818,2, 0xe0a0824,14, 0xe0a0860,27, 0xe0a08d0,3, 0xe0a08e0,3, 0xe0a08f0,3, 0xe0a0900,14, 0xe0a0940,3, 0xe0a0950,1, 0xe0a095c,4, 0xe0a0970,1, 0xe0a0980,15, 0xe0a09c0,1, 0xe0a09c8,5, 0xe0a09e0,1, 0xe0a09f0,4, 0xe0a1844,1, 0xe0a1850,3, 0xe0a1860,3, 0xe0a1870,7, 0xe0a1894,5, 0xe0a18c0,1, 0xe0a18e0,7, 0xe0a1900,11, 0xe0a1930,3, 0xe0a1980,4, 0xe0a19c0,14, 0xe0a1c00,5, 0xe0a1c18,95, 0xe0a1da0,66, 0xe0a2000,16, 0xe0a2100,36, 0xe0a2200,44, 0xe0a2400,100, 0xe0a2600,45, 0xe0a2700,4, 0xe0a2780,20, 0xe0a2800,2, 0xe0a280c,68, 0xe0a2920,3, 0xe0a2c04,1, 0xe0a2c40,28, 0xe0a2cb4,9, 0xe0a2ce0,7, 0xe0a2d00,7, 0xe0a2d20,7, 0xe0a2d40,7, 0xe0a2d60,7, 0xe0a2d80,7, 0xe0a2da0,7, 0xe0a2dc0,7, 0xe0a2e00,9, 0xe0a2e3c,2, 0xe0a2e50,6, 0xe0a2e84,10, 0xe0a3004,1, 0xe0a31f8,130, 0xe0a3c00,1, 0xe0a3c20,10, 0xe0a3c60,8, 0xe0a3c84,5, 0xe0a3d00,32, 0xe0a3d84,1, 0xe0a3d94,6, 0xe0a3e40,71, 0xe0a4a04,3, 0xe0a4b00,33, 0xe0a4b90,3, 0xe0a4c00,12, 0xe0a4cc0,4, 0xe0a4d00,15, 0xe0a4e00,25, 0xe0a4e84,1, 0xe0a4ea0,13, 0xe0a5000,2, 0xe0a5400,4, 0xe0a5420,8, 0xe0a5444,1, 0xe0a544c,1, 0xe0a5454,1, 0xe0a545c,10, 0xe0a5800,3, 0xe0a5810,3, 0xe0a5820,3, 0xe0a5830,3, 0xe0a5840,3, 0xe0a5850,3, 0xe0a5860,3, 0xe0a5870,3, 0xe0a5880,3, 0xe0a5890,3, 0xe0a58a0,3, 0xe0a58b0,3, 0xe0a58c0,3, 0xe0a58d0,3, 0xe0a58e0,3, 0xe0a58f0,3, 0xe0a5900,3, 0xe0a5910,3, 0xe0a5920,3, 0xe0a5930,3, 0xe0a5940,3, 0xe0a5950,3, 0xe0a5960,3, 0xe0a5970,3, 0xe0a5980,3, 0xe0a5990,3, 0xe0a59a0,3, 0xe0a59b0,3, 0xe0a59c0,3, 0xe0a59d0,3, 0xe0a59e0,3, 0xe0a59f0,3, 0xe0a5a00,3, 0xe0a5a10,3, 0xe0a5a20,3, 0xe0a5a30,3, 0xe0a5a40,3, 0xe0a5a50,3, 0xe0a5a60,3, 0xe0a5a70,3, 0xe0a5a80,3, 0xe0a5a90,3, 0xe0a5aa0,3, 0xe0a5ab0,3, 0xe0a5ac0,3, 0xe0a5ad0,3, 0xe0a5ae0,3, 0xe0a5af0,3, 0xe0a5b00,3, 0xe0a5b10,3, 0xe0a5b20,3, 0xe0a5b30,3, 0xe0a5b40,3, 0xe0a5b50,3, 0xe0a5b60,3, 0xe0a5b70,3, 0xe0a5b80,3, 0xe0a5b90,3, 0xe0a5ba0,3, 0xe0a5bb0,3, 0xe0a5bc0,3, 0xe0a5bd0,3, 0xe0a5be0,3, 0xe0a5bf0,3, 0xe0a5c00,1, 0xe0a5c08,8, 0xe0a5c30,8, 0xe0a5c54,1, 0xe0a5c5c,2, 0xe0a5c68,2, 0xe0a6000,11, 0xe0a6030,1, 0xe0a6080,2, 0xe0a60c4,2, 0xe0a60d0,1, 0xe0a60d8,1, 0xe0a60e0,1, 0xe0a60f4,3, 0xe0a7000,128, 0xe0a7208,256, 0xe0a7610,145, 0xe0a8000,24, 0xe0a8078,1, 0xe0a8080,1, 0xe0f0000,1, 0xe0f000c,12, 0xe0f0040,3, 0xe0f0404,1, 0xe0f0410,6, 0xe0f0440,5, 0xe0f0460,7, 0xe0f0480,7, 0xe0f04a0,7, 0xe0f0520,4, 0xe0f0540,10, 0xe0f0580,10, 0xe0f05c0,3, 0xe0f0600,20, 0xe0f0680,3, 0xe0f0800,5, 0xe0f0a00,29, 0xe0f0a80,3, 0xe0f0c04,1, 0xe0f0d90,188, 0xe0f10a8,8, 0xe0f1100,3, 0xe0f1110,12, 0xe0f1400,1, 0xe0f1480,18, 0xe0f1500,1, 0xe0f1600,2, 0xe0f1610,3, 0xe0f1620,3, 0xe0f1630,3, 0xe0f1640,3, 0xe0f1650,3, 0xe0f1660,3, 0xe0f1670,3, 0xe0f1680,3, 0xe0f1690,3, 0xe0f16a0,3, 0xe0f16b0,3, 0xe0f16c0,3, 0xe0f16d0,3, 0xe0f16e0,3, 0xe0f16f0,3, 0xe0f1700,3, 0xe0f2000,96, 0xe0f2400,2, 0xe0f2410,3, 0xe0f2420,3, 0xe0f2430,3, 0xe0f2440,3, 0xe0f2450,3, 0xe0f2460,3, 0xe0f2470,3, 0xe0f2480,3, 0xe0f2490,3, 0xe0f24a0,3, 0xe0f24b0,3, 0xe0f24c0,3, 0xe0f24d0,3, 0xe0f24e0,3, 0xe0f24f0,3, 0xe0f2500,3, 0xe0f2600,7, 0xe0f2620,3, 0xe0f2630,1, 0xe0f2800,8, 0xe0f2900,2, 0xe0f2910,3, 0xe0f2920,3, 0xe0f2930,3, 0xe0f2940,3, 0xe0f2950,3, 0xe0f2960,3, 0xe0f2970,3, 0xe0f2980,3, 0xe0f2a00,3, 0xe0f3000,15, 0xe0f3040,3, 0xe0f3080,2, 0xe0f30c0,9, 0xe0f3100,1, 0xe0f3200,2, 0xe0f3210,3, 0xe0f3220,3, 0xe0f3230,3, 0xe0f3240,3, 0xe0f3250,3, 0xe0f3260,3, 0xe0f3270,3, 0xe0f3280,3, 0xe0f3300,2, 0xe0f3314,3, 0xe0f3324,3, 0xe0f3334,1, 0xe0f333c,1, 0xe0f3404,1, 0xe0f347c,33, 0xe0f3504,1, 0xe0f350c,1, 0xe0f3580,18, 0xe0f3600,5, 0xe0f3640,9, 0xe0f3680,9, 0xe0f36c0,27, 0xe0f3730,2, 0xe0f3740,9, 0xe0f3780,3, 0xe0f37a0,8, 0xe0f3800,6, 0xe0f3820,7, 0xe0f3840,6, 0xe0f3860,7, 0xe0f3880,3, 0xe0f3890,1, 0xe0f3900,2, 0xe0f4004,1, 0xe0f4080,34, 0xe0f4110,10, 0xe0f413c,3, 0xe0f4204,1, 0xe0f4280,36, 0xe0f4314,1, 0xe0f4400,20, 0xe0f4480,9, 0xe0f4804,1, 0xe0f4880,34, 0xe0f4910,10, 0xe0f493c,3, 0xe0f4a04,1, 0xe0f4a80,36, 0xe0f4b14,1, 0xe0f4c00,20, 0xe0f4c80,9, 0xe0f5004,1, 0xe0f5080,34, 0xe0f5110,10, 0xe0f513c,3, 0xe0f5204,1, 0xe0f5280,36, 0xe0f5314,1, 0xe0f5400,20, 0xe0f5480,9, 0xe0f5800,20, 0xe0f5884,1, 0xe0f588c,1, 0xe0f58c0,12, 0xe0f5900,3, 0xe0f5a00,20, 0xe0f5a84,1, 0xe0f5a8c,1, 0xe0f5ac0,12, 0xe0f5b00,3, 0xe0f5c00,20, 0xe0f5c84,1, 0xe0f5c8c,1, 0xe0f5cc0,12, 0xe0f5d00,3, 0xe0f5e00,7, 0xe0f5e80,20, 0xe0f5f00,12, 0xe0f5f40,11, 0xe0f6004,1, 0xe0f6014,19, 0xe0f6080,5, 0xe0f6100,3, 0xe0f6144,1, 0xe0f6150,4, 0xe0f6180,1, 0xe0f6200,1, 0xe0f6400,2, 0xe0f6410,3, 0xe0f6420,3, 0xe0f6430,3, 0xe0f6440,3, 0xe0f6450,3, 0xe0f6460,3, 0xe0f6470,3, 0xe0f6480,3, 0xe0f6490,3, 0xe0f64a0,3, 0xe0f64b0,3, 0xe0f64c0,3, 0xe0f64d0,3, 0xe0f64e0,3, 0xe0f64f0,3, 0xe0f6500,3, 0xe0f6604,1, 0xe0f6614,3, 0xe0f6640,11, 0xe0f6680,2, 0xe0f6690,3, 0xe0f66a0,3, 0xe0f66c0,9, 0xe0f6700,9, 0xe0f6740,6, 0xe0f6760,16, 0xe0f7000,2, 0xe0f7010,3, 0xe0f7020,3, 0xe0f7030,3, 0xe0f7040,3, 0xe0f7050,3, 0xe0f7060,3, 0xe0f7070,3, 0xe0f7080,3, 0xe0f7090,3, 0xe0f70a0,3, 0xe0f70b0,3, 0xe0f70c0,3, 0xe0f70d0,3, 0xe0f70e0,3, 0xe0f70f0,3, 0xe0f7100,3, 0xe0f7200,10, 0xe0f7404,1, 0xe0f7414,3, 0xe0f7800,153, 0xe100000,6, 0xe100020,3, 0xe100400,6, 0xe100424,1, 0xe100434,5, 0xe100600,128, 0xe100804,1, 0xe100828,86, 0xe100984,1, 0xe100c00,1, 0xe100c80,1, 0xe100c90,2, 0xe100d00,20, 0xe100d80,1, 0xe100da0,5, 0xe100e00,27, 0xe100f00,2, 0xe100f10,4, 0xe101000,7, 0xe180000,36, 0xe180800,10, 0xe180880,6, 0xe180900,2, 0xe180910,4, 0xe180a04,5, 0xe180a20,3, 0xe180a80,1, 0xe181000,36, 0xe181800,10, 0xe181880,6, 0xe1818a0,1, 0xe181900,2, 0xe181910,4, 0xe181a00,1, 0xe182000,36, 0xe182800,10, 0xe182880,6, 0xe1828a0,1, 0xe182900,2, 0xe182910,4, 0xe182a00,1, 0xe183000,36, 0xe183800,10, 0xe183880,6, 0xe1838a0,1, 0xe183900,2, 0xe183910,4, 0xe183a00,1, 0xe184000,36, 0xe184800,10, 0xe184880,6, 0xe1848a0,1, 0xe184900,2, 0xe184910,4, 0xe184a00,1, 0xe185000,36, 0xe185800,10, 0xe185880,6, 0xe1858a0,1, 0xe185900,2, 0xe185910,4, 0xe185a00,1, 0xe186000,36, 0xe186800,10, 0xe186880,6, 0xe1868a0,1, 0xe186900,2, 0xe186910,4, 0xe186a00,1, 0xe187000,36, 0xe187800,10, 0xe187880,6, 0xe1878a0,1, 0xe187900,2, 0xe187910,4, 0xe187a00,1, 0xe188000,36, 0xe188800,10, 0xe188880,6, 0xe1888a0,1, 0xe188900,2, 0xe188910,4, 0xe188a00,1, 0xe189000,36, 0xe189800,10, 0xe189880,6, 0xe1898a0,1, 0xe189900,2, 0xe189910,4, 0xe189a00,1, 0xe18a000,36, 0xe18a800,10, 0xe18a880,6, 0xe18a8a0,1, 0xe18a900,2, 0xe18a910,4, 0xe18aa00,1, 0xe18b000,36, 0xe18b800,10, 0xe18b880,6, 0xe18b8a0,1, 0xe18b900,2, 0xe18b910,4, 0xe18ba00,1, 0xe18c000,36, 0xe18c800,10, 0xe18c880,6, 0xe18c8a0,1, 0xe18c900,2, 0xe18c910,4, 0xe18ca00,1, 0xe18d000,36, 0xe18d800,10, 0xe18d880,6, 0xe18d8a0,1, 0xe18d900,2, 0xe18d910,4, 0xe18da00,1, 0xe18e000,36, 0xe18e800,10, 0xe18e880,6, 0xe18e8a0,1, 0xe18e900,2, 0xe18e910,4, 0xe18ea00,1, 0xe18f000,36, 0xe18f800,10, 0xe18f880,6, 0xe18f8a0,1, 0xe18f900,2, 0xe18f910,4, 0xe18fa00,1, 0xe190000,36, 0xe190800,10, 0xe190880,6, 0xe1908a0,1, 0xe190900,2, 0xe190910,4, 0xe190a00,1, 0xe191000,10, 0xe191080,5, 0xe1910a0,6, 0xe191100,2, 0xe191110,4, 0xe191200,1, 0xe192000,10, 0xe192080,5, 0xe1920a0,6, 0xe192100,2, 0xe192110,4, 0xe192200,1, 0xe193000,10, 0xe193080,5, 0xe1930a0,6, 0xe193100,2, 0xe193110,4, 0xe193200,1, 0xe194000,10, 0xe194080,5, 0xe1940a0,6, 0xe194100,2, 0xe194110,4, 0xe194200,1, 0xe195000,10, 0xe195080,5, 0xe1950a0,6, 0xe195100,2, 0xe195110,4, 0xe195200,1, 0xe196000,10, 0xe196080,5, 0xe1960a0,6, 0xe196100,2, 0xe196110,4, 0xe196200,1, 0xe197000,10, 0xe197080,5, 0xe1970a0,6, 0xe197100,2, 0xe197110,4, 0xe197200,1, 0xe198000,10, 0xe198080,5, 0xe1980a0,6, 0xe198100,2, 0xe198110,4, 0xe198200,1, 0xe199000,20, 0xe199800,10, 0xe199880,6, 0xe199900,2, 0xe199910,4, 0xe199940,2, 0xe199950,4, 0xe199a00,1, 0xe19a000,20, 0xe19a800,10, 0xe19a880,6, 0xe19a900,2, 0xe19a910,4, 0xe19a940,2, 0xe19a950,4, 0xe19aa00,1, 0xe19b000,20, 0xe19b800,10, 0xe19b880,6, 0xe19b900,2, 0xe19b910,4, 0xe19b940,2, 0xe19b950,4, 0xe19ba00,1, 0xe19c000,20, 0xe19c800,10, 0xe19c880,6, 0xe19c900,2, 0xe19c910,4, 0xe19c940,2, 0xe19c950,4, 0xe19ca00,1, 0xe19d000,20, 0xe19d800,10, 0xe19d880,6, 0xe19d900,2, 0xe19d910,4, 0xe19d940,2, 0xe19d950,4, 0xe19da00,1, 0xe19e000,20, 0xe19e800,10, 0xe19e880,6, 0xe19e900,2, 0xe19e910,4, 0xe19e940,2, 0xe19e950,4, 0xe19ea00,1, 0xe19f000,20, 0xe19f800,10, 0xe19f880,6, 0xe19f900,2, 0xe19f910,4, 0xe19f940,2, 0xe19f950,4, 0xe19fa00,1, 0xe1a0000,20, 0xe1a0800,10, 0xe1a0880,6, 0xe1a0900,2, 0xe1a0910,4, 0xe1a0940,2, 0xe1a0950,4, 0xe1a0a00,1, 0xe1a1000,20, 0xe1a1800,10, 0xe1a1880,5, 0xe1a18a0,6, 0xe1a1900,2, 0xe1a1910,4, 0xe1a1a00,1, 0xe1a2000,20, 0xe1a2800,1, 0xe1a3000,20, 0xe1a3800,1, 0xe1a4000,20, 0xe1a4800,10, 0xe1a4880,5, 0xe1a48a0,6, 0xe1a4900,2, 0xe1a4910,4, 0xe1a4a00,1, 0xe1a5000,20, 0xe1a5800,1, 0xe1a6000,20, 0xe1a6800,1, 0xe1a7000,20, 0xe1a7800,10, 0xe1a7880,5, 0xe1a78a0,6, 0xe1a7900,2, 0xe1a7910,4, 0xe1a7a00,1, 0xe1a8000,20, 0xe1a8800,1, 0xe1a9000,20, 0xe1a9800,1, 0xe1aa000,20, 0xe1aa800,10, 0xe1aa880,5, 0xe1aa8a0,6, 0xe1aa900,2, 0xe1aa910,4, 0xe1aaa00,1, 0xe1ab000,20, 0xe1ab800,1, 0xe1ac000,20, 0xe1ac800,1, 0xe1ad000,20, 0xe1ad800,10, 0xe1ad880,5, 0xe1ad8a0,6, 0xe1ad900,2, 0xe1ad910,4, 0xe1ada00,1, 0xe1ae000,20, 0xe1ae800,1, 0xe1af000,20, 0xe1af800,1, 0xe1b0000,20, 0xe1b0800,10, 0xe1b0880,5, 0xe1b08a0,6, 0xe1b0900,2, 0xe1b0910,4, 0xe1b0a00,1, 0xe1b1000,20, 0xe1b1800,1, 0xe1b2000,20, 0xe1b2800,1, 0xe1b3000,20, 0xe1b3800,10, 0xe1b3880,5, 0xe1b38a0,6, 0xe1b3900,2, 0xe1b3910,4, 0xe1b3a00,1, 0xe1b4000,20, 0xe1b4800,1, 0xe1b5000,20, 0xe1b5800,1, 0xe1b6000,20, 0xe1b6800,10, 0xe1b6880,5, 0xe1b68a0,6, 0xe1b6900,2, 0xe1b6910,4, 0xe1b6a00,1, 0xe1b7000,20, 0xe1b7800,1, 0xe1b8000,20, 0xe1b8800,1, 0xe1ba000,20, 0xe1ba800,10, 0xe1ba880,6, 0xe1ba900,2, 0xe1ba910,4, 0xe1baa00,8, 0xe1baa24,1, 0xe1baa40,8, 0xe1baa64,1, 0xe1baa80,8, 0xe1baaa4,1, 0xe1baac0,8, 0xe1baae4,1, 0xe1bab00,1, 0xe1bc000,20, 0xe1bc800,10, 0xe1bc880,6, 0xe1bc900,2, 0xe1bc910,4, 0xe1bca00,8, 0xe1bca24,1, 0xe1bca40,8, 0xe1bca64,1, 0xe1bca80,8, 0xe1bcaa4,1, 0xe1bcac0,8, 0xe1bcae4,1, 0xe1bcb00,1, 0xe1be000,20, 0xe1be800,10, 0xe1be880,6, 0xe1be900,2, 0xe1be910,4, 0xe1bea00,8, 0xe1bea24,1, 0xe1bea40,8, 0xe1bea64,1, 0xe1bea80,8, 0xe1beaa4,1, 0xe1beac0,8, 0xe1beae4,1, 0xe1beb00,1, 0xe1c0000,20, 0xe1c0800,10, 0xe1c0880,6, 0xe1c0900,2, 0xe1c0910,4, 0xe1c0a00,8, 0xe1c0a24,1, 0xe1c0a40,8, 0xe1c0a64,1, 0xe1c0a80,8, 0xe1c0aa4,1, 0xe1c0ac0,8, 0xe1c0ae4,1, 0xe1c0b00,1, 0xe1c2000,20, 0xe1c2800,10, 0xe1c2880,6, 0xe1c2900,2, 0xe1c2910,4, 0xe1c2a00,8, 0xe1c2a24,1, 0xe1c2a40,8, 0xe1c2a64,1, 0xe1c2a80,8, 0xe1c2aa4,1, 0xe1c2ac0,8, 0xe1c2ae4,1, 0xe1c2b00,1, 0xe1c4000,20, 0xe1c4800,10, 0xe1c4880,6, 0xe1c4900,2, 0xe1c4910,4, 0xe1c4a00,8, 0xe1c4a24,1, 0xe1c4a40,8, 0xe1c4a64,1, 0xe1c4a80,8, 0xe1c4aa4,1, 0xe1c4ac0,8, 0xe1c4ae4,1, 0xe1c4b00,1, 0xe1c6000,20, 0xe1c6800,10, 0xe1c6880,6, 0xe1c6900,2, 0xe1c6910,4, 0xe1c6a00,8, 0xe1c6a24,1, 0xe1c6a40,8, 0xe1c6a64,1, 0xe1c6a80,8, 0xe1c6aa4,1, 0xe1c6ac0,8, 0xe1c6ae4,1, 0xe1c6b00,1, 0xe1c8000,20, 0xe1c8800,10, 0xe1c8880,6, 0xe1c8900,2, 0xe1c8910,4, 0xe1c8a00,8, 0xe1c8a24,1, 0xe1c8a40,8, 0xe1c8a64,1, 0xe1c8a80,8, 0xe1c8aa4,1, 0xe1c8ac0,8, 0xe1c8ae4,1, 0xe1c8b00,1, 0xe1f9000,10, 0xe1fa000,10, 0xe1fb000,10, 0xe200000,198, 0xe200400,2, 0xe200440,9, 0xe200480,7, 0xe200800,198, 0xe200c00,2, 0xe200c40,9, 0xe200c80,7, 0xe201000,198, 0xe201400,198, 0xe201804,6, 0xe201824,6, 0xe201880,2, 0xe201904,1, 0xe201918,28, 0xe2019a0,6, 0xe2019c0,6, 0xe201c00,2, 0xe201d00,2, 0xe201e04,1, 0xe201e74,43, 0xe202000,2, 0xe202100,2, 0xe202204,1, 0xe202274,43, 0xe202400,3, 0xe202600,27, 0xe202680,4, 0xe2026c0,25, 0xe202740,6, 0xe202760,4, 0xe202774,11, 0xe2027a4,4, 0xe202800,4, 0xe202900,34, 0xe202a00,4, 0xe202b00,34, 0xe202c00,3, 0xe202c10,12, 0xe202e00,56, 0xe202ee4,4, 0xe202f00,4, 0xe203000,1, 0xe208000,4, 0xe208100,42, 0xe208200,1, 0xe208210,3, 0xe208220,3, 0xe208230,3, 0xe208240,1, 0xe208248,3, 0xe208400,4, 0xe208500,58, 0xe208600,1, 0xe208610,3, 0xe208620,3, 0xe208630,3, 0xe208640,1, 0xe208648,3, 0xe208800,4, 0xe208900,36, 0xe208a00,1, 0xe208c00,4, 0xe208c80,27, 0xe208d00,1, 0xe208d10,3, 0xe208d20,3, 0xe208d30,3, 0xe208d40,1, 0xe208d48,3, 0xe208e00,4, 0xe208e80,31, 0xe208f00,1, 0xe208f10,3, 0xe208f20,3, 0xe208f30,3, 0xe208f40,1, 0xe208f48,3, 0xe209000,4, 0xe209040,13, 0xe209080,1, 0xe209200,15, 0xe209240,4, 0xe209260,17, 0xe2092c0,6, 0xe2092e0,2, 0xe2092ec,3, 0xe209300,8, 0xe209324,8, 0xe209400,68, 0xe209600,60, 0xe209700,4, 0xe209720,5, 0xe209740,1, 0xe209780,2, 0xe20978c,2, 0xe2097a0,1, 0xe2097c0,12, 0xe209800,7, 0xe209820,5, 0xe209900,49, 0xe209a00,1, 0xe209a08,23, 0xe209a84,1, 0xe209a8c,1, 0xe209a94,1, 0xe209a9c,2, 0xe209ac0,1, 0xe209c00,10, 0xe209c40,1, 0xe209c50,3, 0xe209c80,10, 0xe209cc0,12, 0xe209d00,3, 0xe209e00,1, 0xe20a000,4, 0xe20a100,42, 0xe20a200,1, 0xe20a210,3, 0xe20a220,3, 0xe20a230,3, 0xe20a240,1, 0xe20a248,3, 0xe20a400,4, 0xe20a500,58, 0xe20a600,1, 0xe20a610,3, 0xe20a620,3, 0xe20a630,3, 0xe20a640,1, 0xe20a648,3, 0xe20a800,4, 0xe20a900,36, 0xe20aa00,1, 0xe20ac00,4, 0xe20ac80,27, 0xe20ad00,1, 0xe20ad10,3, 0xe20ad20,3, 0xe20ad30,3, 0xe20ad40,1, 0xe20ad48,3, 0xe20ae00,4, 0xe20ae80,31, 0xe20af00,1, 0xe20af10,3, 0xe20af20,3, 0xe20af30,3, 0xe20af40,1, 0xe20af48,3, 0xe20b000,4, 0xe20b040,13, 0xe20b080,1, 0xe20b200,15, 0xe20b240,4, 0xe20b260,17, 0xe20b2c0,6, 0xe20b2e0,2, 0xe20b2ec,3, 0xe20b300,8, 0xe20b324,8, 0xe20b400,68, 0xe20b600,60, 0xe20b700,4, 0xe20b720,5, 0xe20b740,1, 0xe20b780,2, 0xe20b78c,2, 0xe20b7a0,1, 0xe20b7c0,12, 0xe20b800,7, 0xe20b820,5, 0xe20b900,49, 0xe20ba00,1, 0xe20ba08,23, 0xe20ba84,1, 0xe20ba8c,1, 0xe20ba94,1, 0xe20ba9c,2, 0xe20bac0,1, 0xe20bc00,10, 0xe20bc40,1, 0xe20bc50,3, 0xe20bc80,10, 0xe20bcc0,12, 0xe20bd00,3, 0xe20be00,1, 0xe20c000,20, 0xe20c080,3, 0xe20c090,1, 0xe20c098,4, 0xe210000,49, 0xe210100,12, 0xe210140,4, 0xe210184,1, 0xe210198,2, 0xe2101a4,1, 0xe2101b8,7, 0xe2101e0,4, 0xe210200,20, 0xe210280,3, 0xe210290,9, 0xe2102c0,6, 0xe2102e0,1, 0xe2102e8,7, 0xe210400,49, 0xe210500,12, 0xe210540,4, 0xe210584,1, 0xe210598,2, 0xe2105a4,1, 0xe2105b8,7, 0xe2105e0,4, 0xe210600,20, 0xe210680,3, 0xe210690,9, 0xe2106c0,6, 0xe2106e0,1, 0xe2106e8,7, 0xe210800,49, 0xe210900,12, 0xe210940,4, 0xe210984,1, 0xe210998,2, 0xe2109a4,1, 0xe2109b8,7, 0xe2109e0,4, 0xe210a00,20, 0xe210a80,3, 0xe210a90,9, 0xe210ac0,6, 0xe210ae0,1, 0xe210ae8,7, 0xe210c00,49, 0xe210d00,12, 0xe210d40,4, 0xe210d84,1, 0xe210d98,2, 0xe210da4,1, 0xe210db8,7, 0xe210de0,4, 0xe210e00,20, 0xe210e80,3, 0xe210e90,9, 0xe210ec0,6, 0xe210ee0,1, 0xe210ee8,7, 0xe211000,49, 0xe211100,12, 0xe211140,4, 0xe211184,1, 0xe211198,2, 0xe2111a4,1, 0xe2111b8,7, 0xe2111e0,4, 0xe211200,20, 0xe211280,3, 0xe211290,9, 0xe2112c0,6, 0xe2112e0,1, 0xe2112e8,7, 0xe211400,49, 0xe211500,12, 0xe211540,4, 0xe211584,1, 0xe211598,2, 0xe2115a4,1, 0xe2115b8,7, 0xe2115e0,4, 0xe211600,20, 0xe211680,3, 0xe211690,9, 0xe2116c0,6, 0xe2116e0,1, 0xe2116e8,7, 0xe211800,49, 0xe211900,12, 0xe211940,4, 0xe211984,1, 0xe211998,2, 0xe2119a4,1, 0xe2119b8,7, 0xe2119e0,4, 0xe211a00,20, 0xe211a80,3, 0xe211a90,9, 0xe211ac0,6, 0xe211ae0,1, 0xe211ae8,7, 0xe212000,20, 0xe212080,10, 0xe212100,20, 0xe212180,10, 0xe212200,12, 0xe212400,20, 0xe212480,10, 0xe212500,20, 0xe212580,10, 0xe212600,12, 0xe212800,3, 0xe212840,12, 0xe212880,12, 0xe2128c0,12, 0xe212900,12, 0xe212940,12, 0xe212980,12, 0xe2129c0,12, 0xe212a00,12, 0xe212c00,12, 0xe212c40,7, 0xe212c60,10, 0xe213004,1, 0xe213044,43, 0xe213100,7, 0xe213120,7, 0xe213140,2, 0xe21314c,2, 0xe213160,2, 0xe21316c,2, 0xe213180,18, 0xe213200,2, 0xe213220,10, 0xe213260,20, 0xe2132c0,9, 0xe213300,15, 0xe213340,9, 0xe213380,6, 0xe2133a0,4, 0xe213400,5, 0xe214000,53, 0xe214100,3, 0xe214110,15, 0xe214200,53, 0xe214300,3, 0xe214310,15, 0xe214400,5, 0xe214420,5, 0xe214440,18, 0xe214800,3, 0xe214810,2, 0xe214820,3, 0xe214830,2, 0xe214840,1, 0xe215000,7, 0xe215020,7, 0xe215080,19, 0xe215100,19, 0xe215180,25, 0xe215200,20, 0xe215280,20, 0xe215300,8, 0xe215340,4, 0xe215380,15, 0xe2153c0,15, 0xe215400,9, 0xe215430,5, 0xe216000,6, 0xe216020,1, 0xe216028,2, 0xe216040,11, 0xe216070,2, 0xe218000,82, 0xe218200,2, 0xe218240,9, 0xe218280,7, 0xe218400,82, 0xe218604,6, 0xe218700,15, 0xe218740,9, 0xe218780,6, 0xe2187a0,6, 0xe218800,2, 0xe218810,3, 0xe218880,24, 0xe2188e4,1, 0xe2188f0,12, 0xe220000,22, 0xe220080,22, 0xe220100,5, 0xe220120,5, 0xe220140,3, 0xe220160,16, 0xe2201c0,7, 0xe2201e0,2, 0xe220200,7, 0xe220220,2, 0xe220400,15, 0xe220440,3, 0xe220450,3, 0xe220460,24, 0xe220500,15, 0xe220540,3, 0xe220550,3, 0xe220560,24, 0xe220600,15, 0xe220640,3, 0xe220650,3, 0xe220660,24, 0xe220700,15, 0xe220740,3, 0xe220750,3, 0xe220760,24, 0xe220800,4, 0xe220820,16, 0xe220880,10, 0xe2208c0,10, 0xe220900,6, 0xe220920,6, 0xe220940,4, 0xe220980,13, 0xe2209c0,13, 0xe220a00,9, 0xe221000,86, 0xe221200,2, 0xe221240,9, 0xe221280,7, 0xe221400,86, 0xe221604,6, 0xe221800,86, 0xe221a00,2, 0xe221a40,9, 0xe221a80,7, 0xe221c00,86, 0xe221e04,6, 0xe222000,15, 0xe222040,4, 0xe222060,17, 0xe2220c0,6, 0xe2220e0,4, 0xe2220f4,11, 0xe222128,38, 0xe2221c4,2, 0xe2221d0,4, 0xe222200,1, 0xe224000,22, 0xe224080,22, 0xe224100,5, 0xe224120,5, 0xe224140,3, 0xe224160,16, 0xe2241c0,7, 0xe2241e0,2, 0xe224200,7, 0xe224220,2, 0xe224400,15, 0xe224440,3, 0xe224450,3, 0xe224460,24, 0xe224500,15, 0xe224540,3, 0xe224550,3, 0xe224560,24, 0xe224600,15, 0xe224640,3, 0xe224650,3, 0xe224660,24, 0xe224700,15, 0xe224740,3, 0xe224750,3, 0xe224760,24, 0xe224800,4, 0xe224820,16, 0xe224880,10, 0xe2248c0,10, 0xe224900,6, 0xe224920,6, 0xe224940,4, 0xe224980,13, 0xe2249c0,13, 0xe224a00,9, 0xe225000,86, 0xe225200,2, 0xe225240,9, 0xe225280,7, 0xe225400,86, 0xe225604,6, 0xe225800,86, 0xe225a00,2, 0xe225a40,9, 0xe225a80,7, 0xe225c00,86, 0xe225e04,6, 0xe226000,15, 0xe226040,4, 0xe226060,17, 0xe2260c0,6, 0xe2260e0,4, 0xe2260f4,11, 0xe226128,38, 0xe2261c4,2, 0xe2261d0,4, 0xe226200,1, 0xe228000,9, 0xe228040,9, 0xe228080,5, 0xe228100,21, 0xe228160,5, 0xe228180,45, 0xe228240,13, 0xe228280,9, 0xe228400,9, 0xe228440,9, 0xe228480,5, 0xe228500,21, 0xe228560,5, 0xe228580,45, 0xe228640,13, 0xe228680,9, 0xe228800,12, 0xe228900,15, 0xe228940,4, 0xe228960,17, 0xe2289c0,6, 0xe2289e0,4, 0xe2289f4,29, 0xe22c000,30, 0xe22c080,3, 0xe22c090,19, 0xe22c100,30, 0xe22c180,3, 0xe22c190,19, 0xe22c200,30, 0xe22c280,3, 0xe22c290,19, 0xe22c300,30, 0xe22c380,3, 0xe22c390,19, 0xe22c400,30, 0xe22c480,3, 0xe22c490,19, 0xe22c500,30, 0xe22c580,3, 0xe22c590,19, 0xe22c600,30, 0xe22c680,3, 0xe22c690,19, 0xe22c700,30, 0xe22c780,3, 0xe22c790,19, 0xe22c800,12, 0xe22c844,1, 0xe22c854,8, 0xe22c880,7, 0xe22c8a0,2, 0xe22c8ac,2, 0xe22c8c0,26, 0xe22c980,4, 0xe22c9a0,5, 0xe22c9c0,1, 0xe22d000,3, 0xe22d010,3, 0xe22d020,3, 0xe22d030,3, 0xe22d040,3, 0xe22d050,3, 0xe22d060,3, 0xe22d070,3, 0xe22d080,6, 0xe22d0a0,6, 0xe22d0c0,6, 0xe22d0e0,6, 0xe22d100,6, 0xe22d120,6, 0xe22d140,6, 0xe22d160,6, 0xe22d200,68, 0xe22d400,1, 0xe22d804,1, 0xe22d844,54, 0xe22da00,12, 0xe22da40,12, 0xe22da80,12, 0xe22dac0,12, 0xe22db00,12, 0xe22db40,12, 0xe22db80,12, 0xe22dbc0,12, 0xe22dc00,28, 0xe22dc80,10, 0xe22e000,3, 0xe22e020,6, 0xe22e040,6, 0xe22e060,15, 0xe22e100,26, 0xe22e180,15, 0xe22e200,15, 0xe22e240,4, 0xe22e260,17, 0xe22e2c0,6, 0xe22e2e0,4, 0xe22e2f4,18, 0xe22e340,4, 0xe22e360,17, 0xe22e3c0,6, 0xe22e3e0,4, 0xe22e3f4,15, 0xe230000,1, 0xe231000,1020, 0xe232000,194, 0xe233000,1020, 0xe234000,1020, 0xe235000,1020, 0xe236000,1020, 0xe237000,1020, 0xe238000,1020, 0xe239000,1020, 0xe23a000,1020, 0xe23b000,194, 0xe23c000,3, 0xe23c010,13, 0xe23c080,16, 0xe23c100,20, 0xe23c184,1, 0xe23c18c,4, 0xe23c200,3, 0xe23c210,13, 0xe23c280,16, 0xe23c300,20, 0xe23c384,1, 0xe23c38c,4, 0xe23c400,3, 0xe23c410,13, 0xe23c480,16, 0xe23c500,20, 0xe23c584,1, 0xe23c58c,4, 0xe23c600,3, 0xe23c610,13, 0xe23c680,16, 0xe23c700,20, 0xe23c784,1, 0xe23c78c,4, 0xe23c800,3, 0xe23c810,13, 0xe23c880,16, 0xe23c900,20, 0xe23c984,1, 0xe23c98c,4, 0xe23ca00,3, 0xe23ca10,13, 0xe23ca80,16, 0xe23cb00,20, 0xe23cb84,1, 0xe23cb8c,4, 0xe23cc00,3, 0xe23cc10,13, 0xe23cc80,16, 0xe23cd00,20, 0xe23cd84,1, 0xe23cd8c,4, 0xe23ce00,3, 0xe23ce10,13, 0xe23ce80,16, 0xe23cf00,20, 0xe23cf84,1, 0xe23cf8c,4, 0xe23d000,3, 0xe23d010,13, 0xe23d080,16, 0xe23d100,20, 0xe23d184,1, 0xe23d18c,4, 0xe23d200,18, 0xe23d250,2, 0xe23d260,4, 0xe23e000,1, 0xe23e014,1, 0xe23e01c,19, 0xe23e080,1, 0xe23e094,1, 0xe23e09c,19, 0xe23e100,8, 0xe23e200,13, 0xe23e240,9, 0xe23e280,12, 0xe23e2c0,2, 0xe23e2e0,12, 0xe240000,3, 0xe240080,20, 0xe240100,10, 0xe240140,1, 0xe240154,1, 0xe24015c,2, 0xe240200,15, 0xe240240,4, 0xe240260,17, 0xe2402c0,6, 0xe2402e0,2, 0xe2402ec,3, 0xe240300,8, 0xe240324,1, 0xe240400,4, 0xe240440,20, 0xe2404c0,9, 0xe240500,33, 0xe240600,11, 0xe240640,11, 0xe240680,1, 0xe242000,1, 0xe242200,4, 0xe242300,53, 0xe242400,4, 0xe242500,40, 0xe242600,15, 0xe242640,4, 0xe242660,17, 0xe2426c0,6, 0xe2426e0,2, 0xe2426ec,3, 0xe242700,8, 0xe242724,1, 0xe242800,20, 0xe242c00,53, 0xe242d00,53, 0xe242e00,1, 0xe243000,40, 0xe243100,40, 0xe243200,1, 0xe243400,1, 0xe243804,1, 0xe243844,39, 0xe243900,3, 0xe243a00,3, 0xe243a44,1, 0xe243a50,4, 0xe243a80,1, 0xe244000,2, 0xe244200,27, 0xe244280,4, 0xe2442c0,25, 0xe244340,6, 0xe244360,2, 0xe24436c,3, 0xe244380,8, 0xe2443a4,1, 0xe244400,12, 0xe244440,1, 0xe248000,3, 0xe248080,20, 0xe248100,10, 0xe248140,1, 0xe248154,1, 0xe24815c,2, 0xe248200,15, 0xe248240,4, 0xe248260,17, 0xe2482c0,6, 0xe2482e0,2, 0xe2482ec,3, 0xe248300,8, 0xe248324,1, 0xe248400,4, 0xe248440,20, 0xe2484c0,9, 0xe248500,33, 0xe248600,11, 0xe248640,11, 0xe248680,1, 0xe24a000,1, 0xe24a200,4, 0xe24a300,53, 0xe24a400,4, 0xe24a500,40, 0xe24a600,15, 0xe24a640,4, 0xe24a660,17, 0xe24a6c0,6, 0xe24a6e0,2, 0xe24a6ec,3, 0xe24a700,8, 0xe24a724,1, 0xe24a800,20, 0xe24ac00,53, 0xe24ad00,53, 0xe24ae00,1, 0xe24b000,40, 0xe24b100,40, 0xe24b200,1, 0xe24b400,1, 0xe24b804,1, 0xe24b844,39, 0xe24b900,3, 0xe24ba00,3, 0xe24ba44,1, 0xe24ba50,4, 0xe24ba80,1, 0xe24c000,2, 0xe24c200,27, 0xe24c280,4, 0xe24c2c0,25, 0xe24c340,6, 0xe24c360,2, 0xe24c36c,3, 0xe24c380,8, 0xe24c3a4,1, 0xe24c400,12, 0xe24c440,1, 0xe250000,4, 0xe250020,3, 0xe250030,2, 0xe250200,1, 0xe250224,10, 0xe250250,5, 0xe250280,1, 0xe250288,24, 0xe250300,3, 0xe250404,1, 0xe250414,5, 0xe250500,36, 0xe250600,3, 0xe250800,2, 0xe251000,1, 0xe251008,21, 0xe251080,1, 0xe251088,21, 0xe251100,1, 0xe251108,21, 0xe251180,1, 0xe251188,21, 0xe251200,1, 0xe251208,21, 0xe251280,1, 0xe251288,21, 0xe251300,1, 0xe251308,21, 0xe251380,1, 0xe251388,21, 0xe251400,21, 0xe251800,142, 0xe251c00,1, 0xe252000,4, 0xe252100,39, 0xe252200,3, 0xe252214,3, 0xe254004,1, 0xe254020,16, 0xe254080,2, 0xe254094,1, 0xe25409c,2, 0xe2540c0,6, 0xe254100,8, 0xe258004,17, 0xe258054,1, 0xe25805c,2, 0xe258080,1, 0xe2580a0,2, 0xe2580b4,4, 0xe258100,2, 0xe258200,8, 0xe258400,1, 0xe258600,27, 0xe258680,4, 0xe2586c0,25, 0xe258740,6, 0xe258760,2, 0xe25876c,3, 0xe258780,8, 0xe2587a4,3, 0xe258800,44, 0xe258900,1, 0xe260000,1, 0xe260200,27, 0xe260280,4, 0xe2602c0,25, 0xe260340,6, 0xe260360,2, 0xe26036c,3, 0xe260380,8, 0xe2603a4,1, 0xe260400,20, 0xe260480,3, 0xe260490,9, 0xe280000,198, 0xe280400,2, 0xe280440,9, 0xe280480,7, 0xe280800,198, 0xe280c00,2, 0xe280c40,9, 0xe280c80,7, 0xe281000,198, 0xe281400,198, 0xe281804,6, 0xe281824,6, 0xe281880,2, 0xe281904,1, 0xe281918,28, 0xe2819a0,6, 0xe2819c0,6, 0xe281c00,2, 0xe281d00,2, 0xe281e04,1, 0xe281e74,43, 0xe282000,2, 0xe282100,2, 0xe282204,1, 0xe282274,43, 0xe282400,3, 0xe282600,27, 0xe282680,4, 0xe2826c0,25, 0xe282740,6, 0xe282760,4, 0xe282774,11, 0xe2827a4,4, 0xe282800,4, 0xe282900,34, 0xe282a00,4, 0xe282b00,34, 0xe282c00,3, 0xe282c10,12, 0xe282e00,56, 0xe282ee4,4, 0xe282f00,4, 0xe283000,1, 0xe288000,4, 0xe288100,42, 0xe288200,1, 0xe288210,3, 0xe288220,3, 0xe288230,3, 0xe288240,1, 0xe288248,3, 0xe288400,4, 0xe288500,58, 0xe288600,1, 0xe288610,3, 0xe288620,3, 0xe288630,3, 0xe288640,1, 0xe288648,3, 0xe288800,4, 0xe288900,36, 0xe288a00,1, 0xe288c00,4, 0xe288c80,27, 0xe288d00,1, 0xe288d10,3, 0xe288d20,3, 0xe288d30,3, 0xe288d40,1, 0xe288d48,3, 0xe288e00,4, 0xe288e80,31, 0xe288f00,1, 0xe288f10,3, 0xe288f20,3, 0xe288f30,3, 0xe288f40,1, 0xe288f48,3, 0xe289000,4, 0xe289040,13, 0xe289080,1, 0xe289200,15, 0xe289240,4, 0xe289260,17, 0xe2892c0,6, 0xe2892e0,2, 0xe2892ec,3, 0xe289300,8, 0xe289324,8, 0xe289400,68, 0xe289600,60, 0xe289700,4, 0xe289720,5, 0xe289740,1, 0xe289780,2, 0xe28978c,2, 0xe2897a0,1, 0xe2897c0,12, 0xe289800,7, 0xe289820,5, 0xe289900,49, 0xe289a00,1, 0xe289a08,23, 0xe289a84,1, 0xe289a8c,1, 0xe289a94,1, 0xe289a9c,2, 0xe289ac0,1, 0xe289c00,10, 0xe289c40,1, 0xe289c50,3, 0xe289c80,10, 0xe289cc0,12, 0xe289d00,3, 0xe289e00,1, 0xe28a000,4, 0xe28a100,42, 0xe28a200,1, 0xe28a210,3, 0xe28a220,3, 0xe28a230,3, 0xe28a240,1, 0xe28a248,3, 0xe28a400,4, 0xe28a500,58, 0xe28a600,1, 0xe28a610,3, 0xe28a620,3, 0xe28a630,3, 0xe28a640,1, 0xe28a648,3, 0xe28a800,4, 0xe28a900,36, 0xe28aa00,1, 0xe28ac00,4, 0xe28ac80,27, 0xe28ad00,1, 0xe28ad10,3, 0xe28ad20,3, 0xe28ad30,3, 0xe28ad40,1, 0xe28ad48,3, 0xe28ae00,4, 0xe28ae80,31, 0xe28af00,1, 0xe28af10,3, 0xe28af20,3, 0xe28af30,3, 0xe28af40,1, 0xe28af48,3, 0xe28b000,4, 0xe28b040,13, 0xe28b080,1, 0xe28b200,15, 0xe28b240,4, 0xe28b260,17, 0xe28b2c0,6, 0xe28b2e0,2, 0xe28b2ec,3, 0xe28b300,8, 0xe28b324,8, 0xe28b400,68, 0xe28b600,60, 0xe28b700,4, 0xe28b720,5, 0xe28b740,1, 0xe28b780,2, 0xe28b78c,2, 0xe28b7a0,1, 0xe28b7c0,12, 0xe28b800,7, 0xe28b820,5, 0xe28b900,49, 0xe28ba00,1, 0xe28ba08,23, 0xe28ba84,1, 0xe28ba8c,1, 0xe28ba94,1, 0xe28ba9c,2, 0xe28bac0,1, 0xe28bc00,10, 0xe28bc40,1, 0xe28bc50,3, 0xe28bc80,10, 0xe28bcc0,12, 0xe28bd00,3, 0xe28be00,1, 0xe28c000,20, 0xe28c080,3, 0xe28c090,1, 0xe28c098,4, 0xe290000,49, 0xe290100,12, 0xe290140,4, 0xe290184,1, 0xe290198,2, 0xe2901a4,1, 0xe2901b8,7, 0xe2901e0,4, 0xe290200,20, 0xe290280,3, 0xe290290,9, 0xe2902c0,6, 0xe2902e0,1, 0xe2902e8,7, 0xe290400,49, 0xe290500,12, 0xe290540,4, 0xe290584,1, 0xe290598,2, 0xe2905a4,1, 0xe2905b8,7, 0xe2905e0,4, 0xe290600,20, 0xe290680,3, 0xe290690,9, 0xe2906c0,6, 0xe2906e0,1, 0xe2906e8,7, 0xe290800,49, 0xe290900,12, 0xe290940,4, 0xe290984,1, 0xe290998,2, 0xe2909a4,1, 0xe2909b8,7, 0xe2909e0,4, 0xe290a00,20, 0xe290a80,3, 0xe290a90,9, 0xe290ac0,6, 0xe290ae0,1, 0xe290ae8,7, 0xe290c00,49, 0xe290d00,12, 0xe290d40,4, 0xe290d84,1, 0xe290d98,2, 0xe290da4,1, 0xe290db8,7, 0xe290de0,4, 0xe290e00,20, 0xe290e80,3, 0xe290e90,9, 0xe290ec0,6, 0xe290ee0,1, 0xe290ee8,7, 0xe291000,49, 0xe291100,12, 0xe291140,4, 0xe291184,1, 0xe291198,2, 0xe2911a4,1, 0xe2911b8,7, 0xe2911e0,4, 0xe291200,20, 0xe291280,3, 0xe291290,9, 0xe2912c0,6, 0xe2912e0,1, 0xe2912e8,7, 0xe291400,49, 0xe291500,12, 0xe291540,4, 0xe291584,1, 0xe291598,2, 0xe2915a4,1, 0xe2915b8,7, 0xe2915e0,4, 0xe291600,20, 0xe291680,3, 0xe291690,9, 0xe2916c0,6, 0xe2916e0,1, 0xe2916e8,7, 0xe291800,49, 0xe291900,12, 0xe291940,4, 0xe291984,1, 0xe291998,2, 0xe2919a4,1, 0xe2919b8,7, 0xe2919e0,4, 0xe291a00,20, 0xe291a80,3, 0xe291a90,9, 0xe291ac0,6, 0xe291ae0,1, 0xe291ae8,7, 0xe292000,20, 0xe292080,10, 0xe292100,20, 0xe292180,10, 0xe292200,12, 0xe292400,20, 0xe292480,10, 0xe292500,20, 0xe292580,10, 0xe292600,12, 0xe292800,3, 0xe292840,12, 0xe292880,12, 0xe2928c0,12, 0xe292900,12, 0xe292940,12, 0xe292980,12, 0xe2929c0,12, 0xe292a00,12, 0xe292c00,12, 0xe292c40,7, 0xe292c60,10, 0xe293004,1, 0xe293044,43, 0xe293100,7, 0xe293120,7, 0xe293140,2, 0xe29314c,2, 0xe293160,2, 0xe29316c,2, 0xe293180,18, 0xe293200,2, 0xe293220,10, 0xe293260,20, 0xe2932c0,9, 0xe293300,15, 0xe293340,9, 0xe293380,6, 0xe2933a0,4, 0xe293400,5, 0xe294000,53, 0xe294100,3, 0xe294110,15, 0xe294200,53, 0xe294300,3, 0xe294310,15, 0xe294400,5, 0xe294420,5, 0xe294440,18, 0xe294800,3, 0xe294810,2, 0xe294820,3, 0xe294830,2, 0xe294840,1, 0xe295000,7, 0xe295020,7, 0xe295080,19, 0xe295100,19, 0xe295180,25, 0xe295200,20, 0xe295280,20, 0xe295300,8, 0xe295340,4, 0xe295380,15, 0xe2953c0,15, 0xe295400,9, 0xe295430,5, 0xe296000,6, 0xe296020,1, 0xe296028,2, 0xe296040,11, 0xe296070,2, 0xe298000,82, 0xe298200,2, 0xe298240,9, 0xe298280,7, 0xe298400,82, 0xe298604,6, 0xe298700,15, 0xe298740,9, 0xe298780,6, 0xe2987a0,6, 0xe298800,2, 0xe298810,3, 0xe298880,24, 0xe2988e4,1, 0xe2988f0,12, 0xe2a0000,22, 0xe2a0080,22, 0xe2a0100,5, 0xe2a0120,5, 0xe2a0140,3, 0xe2a0160,16, 0xe2a01c0,7, 0xe2a01e0,2, 0xe2a0200,7, 0xe2a0220,2, 0xe2a0400,15, 0xe2a0440,3, 0xe2a0450,3, 0xe2a0460,24, 0xe2a0500,15, 0xe2a0540,3, 0xe2a0550,3, 0xe2a0560,24, 0xe2a0600,15, 0xe2a0640,3, 0xe2a0650,3, 0xe2a0660,24, 0xe2a0700,15, 0xe2a0740,3, 0xe2a0750,3, 0xe2a0760,24, 0xe2a0800,4, 0xe2a0820,16, 0xe2a0880,10, 0xe2a08c0,10, 0xe2a0900,6, 0xe2a0920,6, 0xe2a0940,4, 0xe2a0980,13, 0xe2a09c0,13, 0xe2a0a00,9, 0xe2a1000,86, 0xe2a1200,2, 0xe2a1240,9, 0xe2a1280,7, 0xe2a1400,86, 0xe2a1604,6, 0xe2a1800,86, 0xe2a1a00,2, 0xe2a1a40,9, 0xe2a1a80,7, 0xe2a1c00,86, 0xe2a1e04,6, 0xe2a2000,15, 0xe2a2040,4, 0xe2a2060,17, 0xe2a20c0,6, 0xe2a20e0,4, 0xe2a20f4,11, 0xe2a2128,38, 0xe2a21c4,2, 0xe2a21d0,4, 0xe2a2200,1, 0xe2a4000,22, 0xe2a4080,22, 0xe2a4100,5, 0xe2a4120,5, 0xe2a4140,3, 0xe2a4160,16, 0xe2a41c0,7, 0xe2a41e0,2, 0xe2a4200,7, 0xe2a4220,2, 0xe2a4400,15, 0xe2a4440,3, 0xe2a4450,3, 0xe2a4460,24, 0xe2a4500,15, 0xe2a4540,3, 0xe2a4550,3, 0xe2a4560,24, 0xe2a4600,15, 0xe2a4640,3, 0xe2a4650,3, 0xe2a4660,24, 0xe2a4700,15, 0xe2a4740,3, 0xe2a4750,3, 0xe2a4760,24, 0xe2a4800,4, 0xe2a4820,16, 0xe2a4880,10, 0xe2a48c0,10, 0xe2a4900,6, 0xe2a4920,6, 0xe2a4940,4, 0xe2a4980,13, 0xe2a49c0,13, 0xe2a4a00,9, 0xe2a5000,86, 0xe2a5200,2, 0xe2a5240,9, 0xe2a5280,7, 0xe2a5400,86, 0xe2a5604,6, 0xe2a5800,86, 0xe2a5a00,2, 0xe2a5a40,9, 0xe2a5a80,7, 0xe2a5c00,86, 0xe2a5e04,6, 0xe2a6000,15, 0xe2a6040,4, 0xe2a6060,17, 0xe2a60c0,6, 0xe2a60e0,4, 0xe2a60f4,11, 0xe2a6128,38, 0xe2a61c4,2, 0xe2a61d0,4, 0xe2a6200,1, 0xe2a8000,9, 0xe2a8040,9, 0xe2a8080,5, 0xe2a8100,21, 0xe2a8160,5, 0xe2a8180,45, 0xe2a8240,13, 0xe2a8280,9, 0xe2a8400,9, 0xe2a8440,9, 0xe2a8480,5, 0xe2a8500,21, 0xe2a8560,5, 0xe2a8580,45, 0xe2a8640,13, 0xe2a8680,9, 0xe2a8800,12, 0xe2a8900,15, 0xe2a8940,4, 0xe2a8960,17, 0xe2a89c0,6, 0xe2a89e0,4, 0xe2a89f4,29, 0xe2ac000,30, 0xe2ac080,3, 0xe2ac090,19, 0xe2ac100,30, 0xe2ac180,3, 0xe2ac190,19, 0xe2ac200,30, 0xe2ac280,3, 0xe2ac290,19, 0xe2ac300,30, 0xe2ac380,3, 0xe2ac390,19, 0xe2ac400,30, 0xe2ac480,3, 0xe2ac490,19, 0xe2ac500,30, 0xe2ac580,3, 0xe2ac590,19, 0xe2ac600,30, 0xe2ac680,3, 0xe2ac690,19, 0xe2ac700,30, 0xe2ac780,3, 0xe2ac790,19, 0xe2ac800,12, 0xe2ac844,1, 0xe2ac854,8, 0xe2ac880,7, 0xe2ac8a0,2, 0xe2ac8ac,2, 0xe2ac8c0,26, 0xe2ac980,4, 0xe2ac9a0,5, 0xe2ac9c0,1, 0xe2ad000,3, 0xe2ad010,3, 0xe2ad020,3, 0xe2ad030,3, 0xe2ad040,3, 0xe2ad050,3, 0xe2ad060,3, 0xe2ad070,3, 0xe2ad080,6, 0xe2ad0a0,6, 0xe2ad0c0,6, 0xe2ad0e0,6, 0xe2ad100,6, 0xe2ad120,6, 0xe2ad140,6, 0xe2ad160,6, 0xe2ad200,68, 0xe2ad400,1, 0xe2ad804,1, 0xe2ad844,54, 0xe2ada00,12, 0xe2ada40,12, 0xe2ada80,12, 0xe2adac0,12, 0xe2adb00,12, 0xe2adb40,12, 0xe2adb80,12, 0xe2adbc0,12, 0xe2adc00,28, 0xe2adc80,10, 0xe2ae000,3, 0xe2ae020,6, 0xe2ae040,6, 0xe2ae060,15, 0xe2ae100,26, 0xe2ae180,15, 0xe2ae200,15, 0xe2ae240,4, 0xe2ae260,17, 0xe2ae2c0,6, 0xe2ae2e0,4, 0xe2ae2f4,18, 0xe2ae340,4, 0xe2ae360,17, 0xe2ae3c0,6, 0xe2ae3e0,4, 0xe2ae3f4,15, 0xe2b0000,1, 0xe2b1000,1020, 0xe2b2000,194, 0xe2b3000,1020, 0xe2b4000,1020, 0xe2b5000,1020, 0xe2b6000,1020, 0xe2b7000,1020, 0xe2b8000,1020, 0xe2b9000,1020, 0xe2ba000,1020, 0xe2bb000,194, 0xe2bc000,3, 0xe2bc010,13, 0xe2bc080,16, 0xe2bc100,20, 0xe2bc184,1, 0xe2bc18c,4, 0xe2bc200,3, 0xe2bc210,13, 0xe2bc280,16, 0xe2bc300,20, 0xe2bc384,1, 0xe2bc38c,4, 0xe2bc400,3, 0xe2bc410,13, 0xe2bc480,16, 0xe2bc500,20, 0xe2bc584,1, 0xe2bc58c,4, 0xe2bc600,3, 0xe2bc610,13, 0xe2bc680,16, 0xe2bc700,20, 0xe2bc784,1, 0xe2bc78c,4, 0xe2bc800,3, 0xe2bc810,13, 0xe2bc880,16, 0xe2bc900,20, 0xe2bc984,1, 0xe2bc98c,4, 0xe2bca00,3, 0xe2bca10,13, 0xe2bca80,16, 0xe2bcb00,20, 0xe2bcb84,1, 0xe2bcb8c,4, 0xe2bcc00,3, 0xe2bcc10,13, 0xe2bcc80,16, 0xe2bcd00,20, 0xe2bcd84,1, 0xe2bcd8c,4, 0xe2bce00,3, 0xe2bce10,13, 0xe2bce80,16, 0xe2bcf00,20, 0xe2bcf84,1, 0xe2bcf8c,4, 0xe2bd000,3, 0xe2bd010,13, 0xe2bd080,16, 0xe2bd100,20, 0xe2bd184,1, 0xe2bd18c,4, 0xe2bd200,18, 0xe2bd250,2, 0xe2bd260,4, 0xe2be000,1, 0xe2be014,1, 0xe2be01c,19, 0xe2be080,1, 0xe2be094,1, 0xe2be09c,19, 0xe2be100,8, 0xe2be200,13, 0xe2be240,9, 0xe2be280,12, 0xe2be2c0,2, 0xe2be2e0,12, 0xe2c0000,3, 0xe2c0080,20, 0xe2c0100,10, 0xe2c0140,1, 0xe2c0154,1, 0xe2c015c,2, 0xe2c0200,15, 0xe2c0240,4, 0xe2c0260,17, 0xe2c02c0,6, 0xe2c02e0,2, 0xe2c02ec,3, 0xe2c0300,8, 0xe2c0324,1, 0xe2c0400,4, 0xe2c0440,20, 0xe2c04c0,9, 0xe2c0500,33, 0xe2c0600,11, 0xe2c0640,11, 0xe2c0680,1, 0xe2c2000,1, 0xe2c2200,4, 0xe2c2300,53, 0xe2c2400,4, 0xe2c2500,40, 0xe2c2600,15, 0xe2c2640,4, 0xe2c2660,17, 0xe2c26c0,6, 0xe2c26e0,2, 0xe2c26ec,3, 0xe2c2700,8, 0xe2c2724,1, 0xe2c2800,20, 0xe2c2c00,53, 0xe2c2d00,53, 0xe2c2e00,1, 0xe2c3000,40, 0xe2c3100,40, 0xe2c3200,1, 0xe2c3400,1, 0xe2c3804,1, 0xe2c3844,39, 0xe2c3900,3, 0xe2c3a00,3, 0xe2c3a44,1, 0xe2c3a50,4, 0xe2c3a80,1, 0xe2c4000,2, 0xe2c4200,27, 0xe2c4280,4, 0xe2c42c0,25, 0xe2c4340,6, 0xe2c4360,2, 0xe2c436c,3, 0xe2c4380,8, 0xe2c43a4,1, 0xe2c4400,12, 0xe2c4440,1, 0xe2c8000,3, 0xe2c8080,20, 0xe2c8100,10, 0xe2c8140,1, 0xe2c8154,1, 0xe2c815c,2, 0xe2c8200,15, 0xe2c8240,4, 0xe2c8260,17, 0xe2c82c0,6, 0xe2c82e0,2, 0xe2c82ec,3, 0xe2c8300,8, 0xe2c8324,1, 0xe2c8400,4, 0xe2c8440,20, 0xe2c84c0,9, 0xe2c8500,33, 0xe2c8600,11, 0xe2c8640,11, 0xe2c8680,1, 0xe2ca000,1, 0xe2ca200,4, 0xe2ca300,53, 0xe2ca400,4, 0xe2ca500,40, 0xe2ca600,15, 0xe2ca640,4, 0xe2ca660,17, 0xe2ca6c0,6, 0xe2ca6e0,2, 0xe2ca6ec,3, 0xe2ca700,8, 0xe2ca724,1, 0xe2ca800,20, 0xe2cac00,53, 0xe2cad00,53, 0xe2cae00,1, 0xe2cb000,40, 0xe2cb100,40, 0xe2cb200,1, 0xe2cb400,1, 0xe2cb804,1, 0xe2cb844,39, 0xe2cb900,3, 0xe2cba00,3, 0xe2cba44,1, 0xe2cba50,4, 0xe2cba80,1, 0xe2cc000,2, 0xe2cc200,27, 0xe2cc280,4, 0xe2cc2c0,25, 0xe2cc340,6, 0xe2cc360,2, 0xe2cc36c,3, 0xe2cc380,8, 0xe2cc3a4,1, 0xe2cc400,12, 0xe2cc440,1, 0xe2d0000,4, 0xe2d0020,3, 0xe2d0030,2, 0xe2d0200,1, 0xe2d0224,10, 0xe2d0250,5, 0xe2d0280,1, 0xe2d0288,24, 0xe2d0300,3, 0xe2d0404,1, 0xe2d0414,5, 0xe2d0500,36, 0xe2d0600,3, 0xe2d0800,2, 0xe2d1000,1, 0xe2d1008,21, 0xe2d1080,1, 0xe2d1088,21, 0xe2d1100,1, 0xe2d1108,21, 0xe2d1180,1, 0xe2d1188,21, 0xe2d1200,1, 0xe2d1208,21, 0xe2d1280,1, 0xe2d1288,21, 0xe2d1300,1, 0xe2d1308,21, 0xe2d1380,1, 0xe2d1388,21, 0xe2d1400,21, 0xe2d1800,142, 0xe2d1c00,1, 0xe2d2000,4, 0xe2d2100,39, 0xe2d2200,3, 0xe2d2214,3, 0xe2d4004,1, 0xe2d4020,16, 0xe2d4080,2, 0xe2d4094,1, 0xe2d409c,2, 0xe2d40c0,6, 0xe2d4100,8, 0xe2d8004,17, 0xe2d8054,1, 0xe2d805c,2, 0xe2d8080,1, 0xe2d80a0,2, 0xe2d80b4,4, 0xe2d8100,2, 0xe2d8200,8, 0xe2d8400,1, 0xe2d8600,27, 0xe2d8680,4, 0xe2d86c0,25, 0xe2d8740,6, 0xe2d8760,2, 0xe2d876c,3, 0xe2d8780,8, 0xe2d87a4,3, 0xe2d8800,44, 0xe2d8900,1, 0xe2e0000,1, 0xe2e0200,27, 0xe2e0280,4, 0xe2e02c0,25, 0xe2e0340,6, 0xe2e0360,2, 0xe2e036c,3, 0xe2e0380,8, 0xe2e03a4,1, 0xe2e0400,20, 0xe2e0480,3, 0xe2e0490,9, 0xe300000,198, 0xe300400,2, 0xe300440,9, 0xe300480,7, 0xe300800,198, 0xe300c00,2, 0xe300c40,9, 0xe300c80,7, 0xe301000,198, 0xe301400,198, 0xe301804,6, 0xe301824,6, 0xe301880,2, 0xe301904,1, 0xe301918,28, 0xe3019a0,6, 0xe3019c0,6, 0xe301c00,2, 0xe301d00,2, 0xe301e04,1, 0xe301e74,43, 0xe302000,2, 0xe302100,2, 0xe302204,1, 0xe302274,43, 0xe302400,3, 0xe302600,27, 0xe302680,4, 0xe3026c0,25, 0xe302740,6, 0xe302760,4, 0xe302774,11, 0xe3027a4,4, 0xe302800,4, 0xe302900,34, 0xe302a00,4, 0xe302b00,34, 0xe302c00,3, 0xe302c10,12, 0xe302e00,56, 0xe302ee4,4, 0xe302f00,4, 0xe303000,1, 0xe308000,4, 0xe308100,42, 0xe308200,1, 0xe308210,3, 0xe308220,3, 0xe308230,3, 0xe308240,1, 0xe308248,3, 0xe308400,4, 0xe308500,58, 0xe308600,1, 0xe308610,3, 0xe308620,3, 0xe308630,3, 0xe308640,1, 0xe308648,3, 0xe308800,4, 0xe308900,36, 0xe308a00,1, 0xe308c00,4, 0xe308c80,27, 0xe308d00,1, 0xe308d10,3, 0xe308d20,3, 0xe308d30,3, 0xe308d40,1, 0xe308d48,3, 0xe308e00,4, 0xe308e80,31, 0xe308f00,1, 0xe308f10,3, 0xe308f20,3, 0xe308f30,3, 0xe308f40,1, 0xe308f48,3, 0xe309000,4, 0xe309040,13, 0xe309080,1, 0xe309200,15, 0xe309240,4, 0xe309260,17, 0xe3092c0,6, 0xe3092e0,2, 0xe3092ec,3, 0xe309300,8, 0xe309324,8, 0xe309400,68, 0xe309600,60, 0xe309700,4, 0xe309720,5, 0xe309740,1, 0xe309780,2, 0xe30978c,2, 0xe3097a0,1, 0xe3097c0,12, 0xe309800,7, 0xe309820,5, 0xe309900,49, 0xe309a00,1, 0xe309a08,23, 0xe309a84,1, 0xe309a8c,1, 0xe309a94,1, 0xe309a9c,2, 0xe309ac0,1, 0xe309c00,10, 0xe309c40,1, 0xe309c50,3, 0xe309c80,10, 0xe309cc0,12, 0xe309d00,3, 0xe309e00,1, 0xe30a000,4, 0xe30a100,42, 0xe30a200,1, 0xe30a210,3, 0xe30a220,3, 0xe30a230,3, 0xe30a240,1, 0xe30a248,3, 0xe30a400,4, 0xe30a500,58, 0xe30a600,1, 0xe30a610,3, 0xe30a620,3, 0xe30a630,3, 0xe30a640,1, 0xe30a648,3, 0xe30a800,4, 0xe30a900,36, 0xe30aa00,1, 0xe30ac00,4, 0xe30ac80,27, 0xe30ad00,1, 0xe30ad10,3, 0xe30ad20,3, 0xe30ad30,3, 0xe30ad40,1, 0xe30ad48,3, 0xe30ae00,4, 0xe30ae80,31, 0xe30af00,1, 0xe30af10,3, 0xe30af20,3, 0xe30af30,3, 0xe30af40,1, 0xe30af48,3, 0xe30b000,4, 0xe30b040,13, 0xe30b080,1, 0xe30b200,15, 0xe30b240,4, 0xe30b260,17, 0xe30b2c0,6, 0xe30b2e0,2, 0xe30b2ec,3, 0xe30b300,8, 0xe30b324,8, 0xe30b400,68, 0xe30b600,60, 0xe30b700,4, 0xe30b720,5, 0xe30b740,1, 0xe30b780,2, 0xe30b78c,2, 0xe30b7a0,1, 0xe30b7c0,12, 0xe30b800,7, 0xe30b820,5, 0xe30b900,49, 0xe30ba00,1, 0xe30ba08,23, 0xe30ba84,1, 0xe30ba8c,1, 0xe30ba94,1, 0xe30ba9c,2, 0xe30bac0,1, 0xe30bc00,10, 0xe30bc40,1, 0xe30bc50,3, 0xe30bc80,10, 0xe30bcc0,12, 0xe30bd00,3, 0xe30be00,1, 0xe30c000,20, 0xe30c080,3, 0xe30c090,1, 0xe30c098,4, 0xe310000,49, 0xe310100,12, 0xe310140,4, 0xe310184,1, 0xe310198,2, 0xe3101a4,1, 0xe3101b8,7, 0xe3101e0,4, 0xe310200,20, 0xe310280,3, 0xe310290,9, 0xe3102c0,6, 0xe3102e0,1, 0xe3102e8,7, 0xe310400,49, 0xe310500,12, 0xe310540,4, 0xe310584,1, 0xe310598,2, 0xe3105a4,1, 0xe3105b8,7, 0xe3105e0,4, 0xe310600,20, 0xe310680,3, 0xe310690,9, 0xe3106c0,6, 0xe3106e0,1, 0xe3106e8,7, 0xe310800,49, 0xe310900,12, 0xe310940,4, 0xe310984,1, 0xe310998,2, 0xe3109a4,1, 0xe3109b8,7, 0xe3109e0,4, 0xe310a00,20, 0xe310a80,3, 0xe310a90,9, 0xe310ac0,6, 0xe310ae0,1, 0xe310ae8,7, 0xe310c00,49, 0xe310d00,12, 0xe310d40,4, 0xe310d84,1, 0xe310d98,2, 0xe310da4,1, 0xe310db8,7, 0xe310de0,4, 0xe310e00,20, 0xe310e80,3, 0xe310e90,9, 0xe310ec0,6, 0xe310ee0,1, 0xe310ee8,7, 0xe311000,49, 0xe311100,12, 0xe311140,4, 0xe311184,1, 0xe311198,2, 0xe3111a4,1, 0xe3111b8,7, 0xe3111e0,4, 0xe311200,20, 0xe311280,3, 0xe311290,9, 0xe3112c0,6, 0xe3112e0,1, 0xe3112e8,7, 0xe311400,49, 0xe311500,12, 0xe311540,4, 0xe311584,1, 0xe311598,2, 0xe3115a4,1, 0xe3115b8,7, 0xe3115e0,4, 0xe311600,20, 0xe311680,3, 0xe311690,9, 0xe3116c0,6, 0xe3116e0,1, 0xe3116e8,7, 0xe311800,49, 0xe311900,12, 0xe311940,4, 0xe311984,1, 0xe311998,2, 0xe3119a4,1, 0xe3119b8,7, 0xe3119e0,4, 0xe311a00,20, 0xe311a80,3, 0xe311a90,9, 0xe311ac0,6, 0xe311ae0,1, 0xe311ae8,7, 0xe312000,20, 0xe312080,10, 0xe312100,20, 0xe312180,10, 0xe312200,12, 0xe312400,20, 0xe312480,10, 0xe312500,20, 0xe312580,10, 0xe312600,12, 0xe312800,3, 0xe312840,12, 0xe312880,12, 0xe3128c0,12, 0xe312900,12, 0xe312940,12, 0xe312980,12, 0xe3129c0,12, 0xe312a00,12, 0xe312c00,12, 0xe312c40,7, 0xe312c60,10, 0xe313004,1, 0xe313044,43, 0xe313100,7, 0xe313120,7, 0xe313140,2, 0xe31314c,2, 0xe313160,2, 0xe31316c,2, 0xe313180,18, 0xe313200,2, 0xe313220,10, 0xe313260,20, 0xe3132c0,9, 0xe313300,15, 0xe313340,9, 0xe313380,6, 0xe3133a0,4, 0xe313400,5, 0xe314000,53, 0xe314100,3, 0xe314110,15, 0xe314200,53, 0xe314300,3, 0xe314310,15, 0xe314400,5, 0xe314420,5, 0xe314440,18, 0xe314800,3, 0xe314810,2, 0xe314820,3, 0xe314830,2, 0xe314840,1, 0xe315000,7, 0xe315020,7, 0xe315080,19, 0xe315100,19, 0xe315180,25, 0xe315200,20, 0xe315280,20, 0xe315300,8, 0xe315340,4, 0xe315380,15, 0xe3153c0,15, 0xe315400,9, 0xe315430,5, 0xe316000,6, 0xe316020,1, 0xe316028,2, 0xe316040,11, 0xe316070,2, 0xe318000,82, 0xe318200,2, 0xe318240,9, 0xe318280,7, 0xe318400,82, 0xe318604,6, 0xe318700,15, 0xe318740,9, 0xe318780,6, 0xe3187a0,6, 0xe318800,2, 0xe318810,3, 0xe318880,24, 0xe3188e4,1, 0xe3188f0,12, 0xe320000,22, 0xe320080,22, 0xe320100,5, 0xe320120,5, 0xe320140,3, 0xe320160,16, 0xe3201c0,7, 0xe3201e0,2, 0xe320200,7, 0xe320220,2, 0xe320400,15, 0xe320440,3, 0xe320450,3, 0xe320460,24, 0xe320500,15, 0xe320540,3, 0xe320550,3, 0xe320560,24, 0xe320600,15, 0xe320640,3, 0xe320650,3, 0xe320660,24, 0xe320700,15, 0xe320740,3, 0xe320750,3, 0xe320760,24, 0xe320800,4, 0xe320820,16, 0xe320880,10, 0xe3208c0,10, 0xe320900,6, 0xe320920,6, 0xe320940,4, 0xe320980,13, 0xe3209c0,13, 0xe320a00,9, 0xe321000,86, 0xe321200,2, 0xe321240,9, 0xe321280,7, 0xe321400,86, 0xe321604,6, 0xe321800,86, 0xe321a00,2, 0xe321a40,9, 0xe321a80,7, 0xe321c00,86, 0xe321e04,6, 0xe322000,15, 0xe322040,4, 0xe322060,17, 0xe3220c0,6, 0xe3220e0,4, 0xe3220f4,11, 0xe322128,38, 0xe3221c4,2, 0xe3221d0,4, 0xe322200,1, 0xe324000,22, 0xe324080,22, 0xe324100,5, 0xe324120,5, 0xe324140,3, 0xe324160,16, 0xe3241c0,7, 0xe3241e0,2, 0xe324200,7, 0xe324220,2, 0xe324400,15, 0xe324440,3, 0xe324450,3, 0xe324460,24, 0xe324500,15, 0xe324540,3, 0xe324550,3, 0xe324560,24, 0xe324600,15, 0xe324640,3, 0xe324650,3, 0xe324660,24, 0xe324700,15, 0xe324740,3, 0xe324750,3, 0xe324760,24, 0xe324800,4, 0xe324820,16, 0xe324880,10, 0xe3248c0,10, 0xe324900,6, 0xe324920,6, 0xe324940,4, 0xe324980,13, 0xe3249c0,13, 0xe324a00,9, 0xe325000,86, 0xe325200,2, 0xe325240,9, 0xe325280,7, 0xe325400,86, 0xe325604,6, 0xe325800,86, 0xe325a00,2, 0xe325a40,9, 0xe325a80,7, 0xe325c00,86, 0xe325e04,6, 0xe326000,15, 0xe326040,4, 0xe326060,17, 0xe3260c0,6, 0xe3260e0,4, 0xe3260f4,11, 0xe326128,38, 0xe3261c4,2, 0xe3261d0,4, 0xe326200,1, 0xe328000,9, 0xe328040,9, 0xe328080,5, 0xe328100,21, 0xe328160,5, 0xe328180,45, 0xe328240,13, 0xe328280,9, 0xe328400,9, 0xe328440,9, 0xe328480,5, 0xe328500,21, 0xe328560,5, 0xe328580,45, 0xe328640,13, 0xe328680,9, 0xe328800,12, 0xe328900,15, 0xe328940,4, 0xe328960,17, 0xe3289c0,6, 0xe3289e0,4, 0xe3289f4,29, 0xe32c000,30, 0xe32c080,3, 0xe32c090,19, 0xe32c100,30, 0xe32c180,3, 0xe32c190,19, 0xe32c200,30, 0xe32c280,3, 0xe32c290,19, 0xe32c300,30, 0xe32c380,3, 0xe32c390,19, 0xe32c400,30, 0xe32c480,3, 0xe32c490,19, 0xe32c500,30, 0xe32c580,3, 0xe32c590,19, 0xe32c600,30, 0xe32c680,3, 0xe32c690,19, 0xe32c700,30, 0xe32c780,3, 0xe32c790,19, 0xe32c800,12, 0xe32c844,1, 0xe32c854,8, 0xe32c880,7, 0xe32c8a0,2, 0xe32c8ac,2, 0xe32c8c0,26, 0xe32c980,4, 0xe32c9a0,5, 0xe32c9c0,1, 0xe32d000,3, 0xe32d010,3, 0xe32d020,3, 0xe32d030,3, 0xe32d040,3, 0xe32d050,3, 0xe32d060,3, 0xe32d070,3, 0xe32d080,6, 0xe32d0a0,6, 0xe32d0c0,6, 0xe32d0e0,6, 0xe32d100,6, 0xe32d120,6, 0xe32d140,6, 0xe32d160,6, 0xe32d200,68, 0xe32d400,1, 0xe32d804,1, 0xe32d844,54, 0xe32da00,12, 0xe32da40,12, 0xe32da80,12, 0xe32dac0,12, 0xe32db00,12, 0xe32db40,12, 0xe32db80,12, 0xe32dbc0,12, 0xe32dc00,28, 0xe32dc80,10, 0xe32e000,3, 0xe32e020,6, 0xe32e040,6, 0xe32e060,15, 0xe32e100,26, 0xe32e180,15, 0xe32e200,15, 0xe32e240,4, 0xe32e260,17, 0xe32e2c0,6, 0xe32e2e0,4, 0xe32e2f4,18, 0xe32e340,4, 0xe32e360,17, 0xe32e3c0,6, 0xe32e3e0,4, 0xe32e3f4,15, 0xe330000,1, 0xe331000,1020, 0xe332000,194, 0xe333000,1020, 0xe334000,1020, 0xe335000,1020, 0xe336000,1020, 0xe337000,1020, 0xe338000,1020, 0xe339000,1020, 0xe33a000,1020, 0xe33b000,194, 0xe33c000,3, 0xe33c010,13, 0xe33c080,16, 0xe33c100,20, 0xe33c184,1, 0xe33c18c,4, 0xe33c200,3, 0xe33c210,13, 0xe33c280,16, 0xe33c300,20, 0xe33c384,1, 0xe33c38c,4, 0xe33c400,3, 0xe33c410,13, 0xe33c480,16, 0xe33c500,20, 0xe33c584,1, 0xe33c58c,4, 0xe33c600,3, 0xe33c610,13, 0xe33c680,16, 0xe33c700,20, 0xe33c784,1, 0xe33c78c,4, 0xe33c800,3, 0xe33c810,13, 0xe33c880,16, 0xe33c900,20, 0xe33c984,1, 0xe33c98c,4, 0xe33ca00,3, 0xe33ca10,13, 0xe33ca80,16, 0xe33cb00,20, 0xe33cb84,1, 0xe33cb8c,4, 0xe33cc00,3, 0xe33cc10,13, 0xe33cc80,16, 0xe33cd00,20, 0xe33cd84,1, 0xe33cd8c,4, 0xe33ce00,3, 0xe33ce10,13, 0xe33ce80,16, 0xe33cf00,20, 0xe33cf84,1, 0xe33cf8c,4, 0xe33d000,3, 0xe33d010,13, 0xe33d080,16, 0xe33d100,20, 0xe33d184,1, 0xe33d18c,4, 0xe33d200,18, 0xe33d250,2, 0xe33d260,4, 0xe33e000,1, 0xe33e014,1, 0xe33e01c,19, 0xe33e080,1, 0xe33e094,1, 0xe33e09c,19, 0xe33e100,8, 0xe33e200,13, 0xe33e240,9, 0xe33e280,12, 0xe33e2c0,2, 0xe33e2e0,12, 0xe340000,3, 0xe340080,20, 0xe340100,10, 0xe340140,1, 0xe340154,1, 0xe34015c,2, 0xe340200,15, 0xe340240,4, 0xe340260,17, 0xe3402c0,6, 0xe3402e0,2, 0xe3402ec,3, 0xe340300,8, 0xe340324,1, 0xe340400,4, 0xe340440,20, 0xe3404c0,9, 0xe340500,33, 0xe340600,11, 0xe340640,11, 0xe340680,1, 0xe342000,1, 0xe342200,4, 0xe342300,53, 0xe342400,4, 0xe342500,40, 0xe342600,15, 0xe342640,4, 0xe342660,17, 0xe3426c0,6, 0xe3426e0,2, 0xe3426ec,3, 0xe342700,8, 0xe342724,1, 0xe342800,20, 0xe342c00,53, 0xe342d00,53, 0xe342e00,1, 0xe343000,40, 0xe343100,40, 0xe343200,1, 0xe343400,1, 0xe343804,1, 0xe343844,39, 0xe343900,3, 0xe343a00,3, 0xe343a44,1, 0xe343a50,4, 0xe343a80,1, 0xe344000,2, 0xe344200,27, 0xe344280,4, 0xe3442c0,25, 0xe344340,6, 0xe344360,2, 0xe34436c,3, 0xe344380,8, 0xe3443a4,1, 0xe344400,12, 0xe344440,1, 0xe348000,3, 0xe348080,20, 0xe348100,10, 0xe348140,1, 0xe348154,1, 0xe34815c,2, 0xe348200,15, 0xe348240,4, 0xe348260,17, 0xe3482c0,6, 0xe3482e0,2, 0xe3482ec,3, 0xe348300,8, 0xe348324,1, 0xe348400,4, 0xe348440,20, 0xe3484c0,9, 0xe348500,33, 0xe348600,11, 0xe348640,11, 0xe348680,1, 0xe34a000,1, 0xe34a200,4, 0xe34a300,53, 0xe34a400,4, 0xe34a500,40, 0xe34a600,15, 0xe34a640,4, 0xe34a660,17, 0xe34a6c0,6, 0xe34a6e0,2, 0xe34a6ec,3, 0xe34a700,8, 0xe34a724,1, 0xe34a800,20, 0xe34ac00,53, 0xe34ad00,53, 0xe34ae00,1, 0xe34b000,40, 0xe34b100,40, 0xe34b200,1, 0xe34b400,1, 0xe34b804,1, 0xe34b844,39, 0xe34b900,3, 0xe34ba00,3, 0xe34ba44,1, 0xe34ba50,4, 0xe34ba80,1, 0xe34c000,2, 0xe34c200,27, 0xe34c280,4, 0xe34c2c0,25, 0xe34c340,6, 0xe34c360,2, 0xe34c36c,3, 0xe34c380,8, 0xe34c3a4,1, 0xe34c400,12, 0xe34c440,1, 0xe350000,4, 0xe350020,3, 0xe350030,2, 0xe350200,1, 0xe350224,10, 0xe350250,5, 0xe350280,1, 0xe350288,24, 0xe350300,3, 0xe350404,1, 0xe350414,5, 0xe350500,36, 0xe350600,3, 0xe350800,2, 0xe351000,1, 0xe351008,21, 0xe351080,1, 0xe351088,21, 0xe351100,1, 0xe351108,21, 0xe351180,1, 0xe351188,21, 0xe351200,1, 0xe351208,21, 0xe351280,1, 0xe351288,21, 0xe351300,1, 0xe351308,21, 0xe351380,1, 0xe351388,21, 0xe351400,21, 0xe351800,142, 0xe351c00,1, 0xe352000,4, 0xe352100,39, 0xe352200,3, 0xe352214,3, 0xe354004,1, 0xe354020,16, 0xe354080,2, 0xe354094,1, 0xe35409c,2, 0xe3540c0,6, 0xe354100,8, 0xe358004,17, 0xe358054,1, 0xe35805c,2, 0xe358080,1, 0xe3580a0,2, 0xe3580b4,4, 0xe358100,2, 0xe358200,8, 0xe358400,1, 0xe358600,27, 0xe358680,4, 0xe3586c0,25, 0xe358740,6, 0xe358760,2, 0xe35876c,3, 0xe358780,8, 0xe3587a4,3, 0xe358800,44, 0xe358900,1, 0xe360000,1, 0xe360200,27, 0xe360280,4, 0xe3602c0,25, 0xe360340,6, 0xe360360,2, 0xe36036c,3, 0xe360380,8, 0xe3603a4,1, 0xe360400,20, 0xe360480,3, 0xe360490,9, 0xe380000,198, 0xe380400,2, 0xe380440,9, 0xe380480,7, 0xe380800,198, 0xe380c00,2, 0xe380c40,9, 0xe380c80,7, 0xe381000,198, 0xe381400,198, 0xe381804,6, 0xe381824,6, 0xe381880,2, 0xe381904,1, 0xe381918,28, 0xe3819a0,6, 0xe3819c0,6, 0xe381c00,2, 0xe381d00,2, 0xe381e04,1, 0xe381e74,43, 0xe382000,2, 0xe382100,2, 0xe382204,1, 0xe382274,43, 0xe382400,3, 0xe382600,27, 0xe382680,4, 0xe3826c0,25, 0xe382740,6, 0xe382760,4, 0xe382774,11, 0xe3827a4,4, 0xe382800,4, 0xe382900,34, 0xe382a00,4, 0xe382b00,34, 0xe382c00,3, 0xe382c10,12, 0xe382e00,56, 0xe382ee4,4, 0xe382f00,4, 0xe383000,1, 0xe388000,4, 0xe388100,42, 0xe388200,1, 0xe388210,3, 0xe388220,3, 0xe388230,3, 0xe388240,1, 0xe388248,3, 0xe388400,4, 0xe388500,58, 0xe388600,1, 0xe388610,3, 0xe388620,3, 0xe388630,3, 0xe388640,1, 0xe388648,3, 0xe388800,4, 0xe388900,36, 0xe388a00,1, 0xe388c00,4, 0xe388c80,27, 0xe388d00,1, 0xe388d10,3, 0xe388d20,3, 0xe388d30,3, 0xe388d40,1, 0xe388d48,3, 0xe388e00,4, 0xe388e80,31, 0xe388f00,1, 0xe388f10,3, 0xe388f20,3, 0xe388f30,3, 0xe388f40,1, 0xe388f48,3, 0xe389000,4, 0xe389040,13, 0xe389080,1, 0xe389200,15, 0xe389240,4, 0xe389260,17, 0xe3892c0,6, 0xe3892e0,2, 0xe3892ec,3, 0xe389300,8, 0xe389324,8, 0xe389400,68, 0xe389600,60, 0xe389700,4, 0xe389720,5, 0xe389740,1, 0xe389780,2, 0xe38978c,2, 0xe3897a0,1, 0xe3897c0,12, 0xe389800,7, 0xe389820,5, 0xe389900,49, 0xe389a00,1, 0xe389a08,23, 0xe389a84,1, 0xe389a8c,1, 0xe389a94,1, 0xe389a9c,2, 0xe389ac0,1, 0xe389c00,10, 0xe389c40,1, 0xe389c50,3, 0xe389c80,10, 0xe389cc0,12, 0xe389d00,3, 0xe389e00,1, 0xe38a000,4, 0xe38a100,42, 0xe38a200,1, 0xe38a210,3, 0xe38a220,3, 0xe38a230,3, 0xe38a240,1, 0xe38a248,3, 0xe38a400,4, 0xe38a500,58, 0xe38a600,1, 0xe38a610,3, 0xe38a620,3, 0xe38a630,3, 0xe38a640,1, 0xe38a648,3, 0xe38a800,4, 0xe38a900,36, 0xe38aa00,1, 0xe38ac00,4, 0xe38ac80,27, 0xe38ad00,1, 0xe38ad10,3, 0xe38ad20,3, 0xe38ad30,3, 0xe38ad40,1, 0xe38ad48,3, 0xe38ae00,4, 0xe38ae80,31, 0xe38af00,1, 0xe38af10,3, 0xe38af20,3, 0xe38af30,3, 0xe38af40,1, 0xe38af48,3, 0xe38b000,4, 0xe38b040,13, 0xe38b080,1, 0xe38b200,15, 0xe38b240,4, 0xe38b260,17, 0xe38b2c0,6, 0xe38b2e0,2, 0xe38b2ec,3, 0xe38b300,8, 0xe38b324,8, 0xe38b400,68, 0xe38b600,60, 0xe38b700,4, 0xe38b720,5, 0xe38b740,1, 0xe38b780,2, 0xe38b78c,2, 0xe38b7a0,1, 0xe38b7c0,12, 0xe38b800,7, 0xe38b820,5, 0xe38b900,49, 0xe38ba00,1, 0xe38ba08,23, 0xe38ba84,1, 0xe38ba8c,1, 0xe38ba94,1, 0xe38ba9c,2, 0xe38bac0,1, 0xe38bc00,10, 0xe38bc40,1, 0xe38bc50,3, 0xe38bc80,10, 0xe38bcc0,12, 0xe38bd00,3, 0xe38be00,1, 0xe38c000,20, 0xe38c080,3, 0xe38c090,1, 0xe38c098,4, 0xe390000,49, 0xe390100,12, 0xe390140,4, 0xe390184,1, 0xe390198,2, 0xe3901a4,1, 0xe3901b8,7, 0xe3901e0,4, 0xe390200,20, 0xe390280,3, 0xe390290,9, 0xe3902c0,6, 0xe3902e0,1, 0xe3902e8,7, 0xe390400,49, 0xe390500,12, 0xe390540,4, 0xe390584,1, 0xe390598,2, 0xe3905a4,1, 0xe3905b8,7, 0xe3905e0,4, 0xe390600,20, 0xe390680,3, 0xe390690,9, 0xe3906c0,6, 0xe3906e0,1, 0xe3906e8,7, 0xe390800,49, 0xe390900,12, 0xe390940,4, 0xe390984,1, 0xe390998,2, 0xe3909a4,1, 0xe3909b8,7, 0xe3909e0,4, 0xe390a00,20, 0xe390a80,3, 0xe390a90,9, 0xe390ac0,6, 0xe390ae0,1, 0xe390ae8,7, 0xe390c00,49, 0xe390d00,12, 0xe390d40,4, 0xe390d84,1, 0xe390d98,2, 0xe390da4,1, 0xe390db8,7, 0xe390de0,4, 0xe390e00,20, 0xe390e80,3, 0xe390e90,9, 0xe390ec0,6, 0xe390ee0,1, 0xe390ee8,7, 0xe391000,49, 0xe391100,12, 0xe391140,4, 0xe391184,1, 0xe391198,2, 0xe3911a4,1, 0xe3911b8,7, 0xe3911e0,4, 0xe391200,20, 0xe391280,3, 0xe391290,9, 0xe3912c0,6, 0xe3912e0,1, 0xe3912e8,7, 0xe391400,49, 0xe391500,12, 0xe391540,4, 0xe391584,1, 0xe391598,2, 0xe3915a4,1, 0xe3915b8,7, 0xe3915e0,4, 0xe391600,20, 0xe391680,3, 0xe391690,9, 0xe3916c0,6, 0xe3916e0,1, 0xe3916e8,7, 0xe391800,49, 0xe391900,12, 0xe391940,4, 0xe391984,1, 0xe391998,2, 0xe3919a4,1, 0xe3919b8,7, 0xe3919e0,4, 0xe391a00,20, 0xe391a80,3, 0xe391a90,9, 0xe391ac0,6, 0xe391ae0,1, 0xe391ae8,7, 0xe392000,20, 0xe392080,10, 0xe392100,20, 0xe392180,10, 0xe392200,12, 0xe392400,20, 0xe392480,10, 0xe392500,20, 0xe392580,10, 0xe392600,12, 0xe392800,3, 0xe392840,12, 0xe392880,12, 0xe3928c0,12, 0xe392900,12, 0xe392940,12, 0xe392980,12, 0xe3929c0,12, 0xe392a00,12, 0xe392c00,12, 0xe392c40,7, 0xe392c60,10, 0xe393004,1, 0xe393044,43, 0xe393100,7, 0xe393120,7, 0xe393140,2, 0xe39314c,2, 0xe393160,2, 0xe39316c,2, 0xe393180,18, 0xe393200,2, 0xe393220,10, 0xe393260,20, 0xe3932c0,9, 0xe393300,15, 0xe393340,9, 0xe393380,6, 0xe3933a0,4, 0xe393400,5, 0xe394000,53, 0xe394100,3, 0xe394110,15, 0xe394200,53, 0xe394300,3, 0xe394310,15, 0xe394400,5, 0xe394420,5, 0xe394440,18, 0xe394800,3, 0xe394810,2, 0xe394820,3, 0xe394830,2, 0xe394840,1, 0xe395000,7, 0xe395020,7, 0xe395080,19, 0xe395100,19, 0xe395180,25, 0xe395200,20, 0xe395280,20, 0xe395300,8, 0xe395340,4, 0xe395380,15, 0xe3953c0,15, 0xe395400,9, 0xe395430,5, 0xe396000,6, 0xe396020,1, 0xe396028,2, 0xe396040,11, 0xe396070,2, 0xe398000,82, 0xe398200,2, 0xe398240,9, 0xe398280,7, 0xe398400,82, 0xe398604,6, 0xe398700,15, 0xe398740,9, 0xe398780,6, 0xe3987a0,6, 0xe398800,2, 0xe398810,3, 0xe398880,24, 0xe3988e4,1, 0xe3988f0,12, 0xe3a0000,22, 0xe3a0080,22, 0xe3a0100,5, 0xe3a0120,5, 0xe3a0140,3, 0xe3a0160,16, 0xe3a01c0,7, 0xe3a01e0,2, 0xe3a0200,7, 0xe3a0220,2, 0xe3a0400,15, 0xe3a0440,3, 0xe3a0450,3, 0xe3a0460,24, 0xe3a0500,15, 0xe3a0540,3, 0xe3a0550,3, 0xe3a0560,24, 0xe3a0600,15, 0xe3a0640,3, 0xe3a0650,3, 0xe3a0660,24, 0xe3a0700,15, 0xe3a0740,3, 0xe3a0750,3, 0xe3a0760,24, 0xe3a0800,4, 0xe3a0820,16, 0xe3a0880,10, 0xe3a08c0,10, 0xe3a0900,6, 0xe3a0920,6, 0xe3a0940,4, 0xe3a0980,13, 0xe3a09c0,13, 0xe3a0a00,9, 0xe3a1000,86, 0xe3a1200,2, 0xe3a1240,9, 0xe3a1280,7, 0xe3a1400,86, 0xe3a1604,6, 0xe3a1800,86, 0xe3a1a00,2, 0xe3a1a40,9, 0xe3a1a80,7, 0xe3a1c00,86, 0xe3a1e04,6, 0xe3a2000,15, 0xe3a2040,4, 0xe3a2060,17, 0xe3a20c0,6, 0xe3a20e0,4, 0xe3a20f4,11, 0xe3a2128,38, 0xe3a21c4,2, 0xe3a21d0,4, 0xe3a2200,1, 0xe3a4000,22, 0xe3a4080,22, 0xe3a4100,5, 0xe3a4120,5, 0xe3a4140,3, 0xe3a4160,16, 0xe3a41c0,7, 0xe3a41e0,2, 0xe3a4200,7, 0xe3a4220,2, 0xe3a4400,15, 0xe3a4440,3, 0xe3a4450,3, 0xe3a4460,24, 0xe3a4500,15, 0xe3a4540,3, 0xe3a4550,3, 0xe3a4560,24, 0xe3a4600,15, 0xe3a4640,3, 0xe3a4650,3, 0xe3a4660,24, 0xe3a4700,15, 0xe3a4740,3, 0xe3a4750,3, 0xe3a4760,24, 0xe3a4800,4, 0xe3a4820,16, 0xe3a4880,10, 0xe3a48c0,10, 0xe3a4900,6, 0xe3a4920,6, 0xe3a4940,4, 0xe3a4980,13, 0xe3a49c0,13, 0xe3a4a00,9, 0xe3a5000,86, 0xe3a5200,2, 0xe3a5240,9, 0xe3a5280,7, 0xe3a5400,86, 0xe3a5604,6, 0xe3a5800,86, 0xe3a5a00,2, 0xe3a5a40,9, 0xe3a5a80,7, 0xe3a5c00,86, 0xe3a5e04,6, 0xe3a6000,15, 0xe3a6040,4, 0xe3a6060,17, 0xe3a60c0,6, 0xe3a60e0,4, 0xe3a60f4,11, 0xe3a6128,38, 0xe3a61c4,2, 0xe3a61d0,4, 0xe3a6200,1, 0xe3a8000,9, 0xe3a8040,9, 0xe3a8080,5, 0xe3a8100,21, 0xe3a8160,5, 0xe3a8180,45, 0xe3a8240,13, 0xe3a8280,9, 0xe3a8400,9, 0xe3a8440,9, 0xe3a8480,5, 0xe3a8500,21, 0xe3a8560,5, 0xe3a8580,45, 0xe3a8640,13, 0xe3a8680,9, 0xe3a8800,12, 0xe3a8900,15, 0xe3a8940,4, 0xe3a8960,17, 0xe3a89c0,6, 0xe3a89e0,4, 0xe3a89f4,29, 0xe3ac000,30, 0xe3ac080,3, 0xe3ac090,19, 0xe3ac100,30, 0xe3ac180,3, 0xe3ac190,19, 0xe3ac200,30, 0xe3ac280,3, 0xe3ac290,19, 0xe3ac300,30, 0xe3ac380,3, 0xe3ac390,19, 0xe3ac400,30, 0xe3ac480,3, 0xe3ac490,19, 0xe3ac500,30, 0xe3ac580,3, 0xe3ac590,19, 0xe3ac600,30, 0xe3ac680,3, 0xe3ac690,19, 0xe3ac700,30, 0xe3ac780,3, 0xe3ac790,19, 0xe3ac800,12, 0xe3ac844,1, 0xe3ac854,8, 0xe3ac880,7, 0xe3ac8a0,2, 0xe3ac8ac,2, 0xe3ac8c0,26, 0xe3ac980,4, 0xe3ac9a0,5, 0xe3ac9c0,1, 0xe3ad000,3, 0xe3ad010,3, 0xe3ad020,3, 0xe3ad030,3, 0xe3ad040,3, 0xe3ad050,3, 0xe3ad060,3, 0xe3ad070,3, 0xe3ad080,6, 0xe3ad0a0,6, 0xe3ad0c0,6, 0xe3ad0e0,6, 0xe3ad100,6, 0xe3ad120,6, 0xe3ad140,6, 0xe3ad160,6, 0xe3ad200,68, 0xe3ad400,1, 0xe3ad804,1, 0xe3ad844,54, 0xe3ada00,12, 0xe3ada40,12, 0xe3ada80,12, 0xe3adac0,12, 0xe3adb00,12, 0xe3adb40,12, 0xe3adb80,12, 0xe3adbc0,12, 0xe3adc00,28, 0xe3adc80,10, 0xe3ae000,3, 0xe3ae020,6, 0xe3ae040,6, 0xe3ae060,15, 0xe3ae100,26, 0xe3ae180,15, 0xe3ae200,15, 0xe3ae240,4, 0xe3ae260,17, 0xe3ae2c0,6, 0xe3ae2e0,4, 0xe3ae2f4,18, 0xe3ae340,4, 0xe3ae360,17, 0xe3ae3c0,6, 0xe3ae3e0,4, 0xe3ae3f4,15, 0xe3b0000,1, 0xe3b1000,1020, 0xe3b2000,194, 0xe3b3000,1020, 0xe3b4000,1020, 0xe3b5000,1020, 0xe3b6000,1020, 0xe3b7000,1020, 0xe3b8000,1020, 0xe3b9000,1020, 0xe3ba000,1020, 0xe3bb000,194, 0xe3bc000,3, 0xe3bc010,13, 0xe3bc080,16, 0xe3bc100,20, 0xe3bc184,1, 0xe3bc18c,4, 0xe3bc200,3, 0xe3bc210,13, 0xe3bc280,16, 0xe3bc300,20, 0xe3bc384,1, 0xe3bc38c,4, 0xe3bc400,3, 0xe3bc410,13, 0xe3bc480,16, 0xe3bc500,20, 0xe3bc584,1, 0xe3bc58c,4, 0xe3bc600,3, 0xe3bc610,13, 0xe3bc680,16, 0xe3bc700,20, 0xe3bc784,1, 0xe3bc78c,4, 0xe3bc800,3, 0xe3bc810,13, 0xe3bc880,16, 0xe3bc900,20, 0xe3bc984,1, 0xe3bc98c,4, 0xe3bca00,3, 0xe3bca10,13, 0xe3bca80,16, 0xe3bcb00,20, 0xe3bcb84,1, 0xe3bcb8c,4, 0xe3bcc00,3, 0xe3bcc10,13, 0xe3bcc80,16, 0xe3bcd00,20, 0xe3bcd84,1, 0xe3bcd8c,4, 0xe3bce00,3, 0xe3bce10,13, 0xe3bce80,16, 0xe3bcf00,20, 0xe3bcf84,1, 0xe3bcf8c,4, 0xe3bd000,3, 0xe3bd010,13, 0xe3bd080,16, 0xe3bd100,20, 0xe3bd184,1, 0xe3bd18c,4, 0xe3bd200,18, 0xe3bd250,2, 0xe3bd260,4, 0xe3be000,1, 0xe3be014,1, 0xe3be01c,19, 0xe3be080,1, 0xe3be094,1, 0xe3be09c,19, 0xe3be100,8, 0xe3be200,13, 0xe3be240,9, 0xe3be280,12, 0xe3be2c0,2, 0xe3be2e0,12, 0xe3c0000,3, 0xe3c0080,20, 0xe3c0100,10, 0xe3c0140,1, 0xe3c0154,1, 0xe3c015c,2, 0xe3c0200,15, 0xe3c0240,4, 0xe3c0260,17, 0xe3c02c0,6, 0xe3c02e0,2, 0xe3c02ec,3, 0xe3c0300,8, 0xe3c0324,1, 0xe3c0400,4, 0xe3c0440,20, 0xe3c04c0,9, 0xe3c0500,33, 0xe3c0600,11, 0xe3c0640,11, 0xe3c0680,1, 0xe3c2000,1, 0xe3c2200,4, 0xe3c2300,53, 0xe3c2400,4, 0xe3c2500,40, 0xe3c2600,15, 0xe3c2640,4, 0xe3c2660,17, 0xe3c26c0,6, 0xe3c26e0,2, 0xe3c26ec,3, 0xe3c2700,8, 0xe3c2724,1, 0xe3c2800,20, 0xe3c2c00,53, 0xe3c2d00,53, 0xe3c2e00,1, 0xe3c3000,40, 0xe3c3100,40, 0xe3c3200,1, 0xe3c3400,1, 0xe3c3804,1, 0xe3c3844,39, 0xe3c3900,3, 0xe3c3a00,3, 0xe3c3a44,1, 0xe3c3a50,4, 0xe3c3a80,1, 0xe3c4000,2, 0xe3c4200,27, 0xe3c4280,4, 0xe3c42c0,25, 0xe3c4340,6, 0xe3c4360,2, 0xe3c436c,3, 0xe3c4380,8, 0xe3c43a4,1, 0xe3c4400,12, 0xe3c4440,1, 0xe3c8000,3, 0xe3c8080,20, 0xe3c8100,10, 0xe3c8140,1, 0xe3c8154,1, 0xe3c815c,2, 0xe3c8200,15, 0xe3c8240,4, 0xe3c8260,17, 0xe3c82c0,6, 0xe3c82e0,2, 0xe3c82ec,3, 0xe3c8300,8, 0xe3c8324,1, 0xe3c8400,4, 0xe3c8440,20, 0xe3c84c0,9, 0xe3c8500,33, 0xe3c8600,11, 0xe3c8640,11, 0xe3c8680,1, 0xe3ca000,1, 0xe3ca200,4, 0xe3ca300,53, 0xe3ca400,4, 0xe3ca500,40, 0xe3ca600,15, 0xe3ca640,4, 0xe3ca660,17, 0xe3ca6c0,6, 0xe3ca6e0,2, 0xe3ca6ec,3, 0xe3ca700,8, 0xe3ca724,1, 0xe3ca800,20, 0xe3cac00,53, 0xe3cad00,53, 0xe3cae00,1, 0xe3cb000,40, 0xe3cb100,40, 0xe3cb200,1, 0xe3cb400,1, 0xe3cb804,1, 0xe3cb844,39, 0xe3cb900,3, 0xe3cba00,3, 0xe3cba44,1, 0xe3cba50,4, 0xe3cba80,1, 0xe3cc000,2, 0xe3cc200,27, 0xe3cc280,4, 0xe3cc2c0,25, 0xe3cc340,6, 0xe3cc360,2, 0xe3cc36c,3, 0xe3cc380,8, 0xe3cc3a4,1, 0xe3cc400,12, 0xe3cc440,1, 0xe3d0000,4, 0xe3d0020,3, 0xe3d0030,2, 0xe3d0200,1, 0xe3d0224,10, 0xe3d0250,5, 0xe3d0280,1, 0xe3d0288,24, 0xe3d0300,3, 0xe3d0404,1, 0xe3d0414,5, 0xe3d0500,36, 0xe3d0600,3, 0xe3d0800,2, 0xe3d1000,1, 0xe3d1008,21, 0xe3d1080,1, 0xe3d1088,21, 0xe3d1100,1, 0xe3d1108,21, 0xe3d1180,1, 0xe3d1188,21, 0xe3d1200,1, 0xe3d1208,21, 0xe3d1280,1, 0xe3d1288,21, 0xe3d1300,1, 0xe3d1308,21, 0xe3d1380,1, 0xe3d1388,21, 0xe3d1400,21, 0xe3d1800,142, 0xe3d1c00,1, 0xe3d2000,4, 0xe3d2100,39, 0xe3d2200,3, 0xe3d2214,3, 0xe3d4004,1, 0xe3d4020,16, 0xe3d4080,2, 0xe3d4094,1, 0xe3d409c,2, 0xe3d40c0,6, 0xe3d4100,8, 0xe3d8004,17, 0xe3d8054,1, 0xe3d805c,2, 0xe3d8080,1, 0xe3d80a0,2, 0xe3d80b4,4, 0xe3d8100,2, 0xe3d8200,8, 0xe3d8400,1, 0xe3d8600,27, 0xe3d8680,4, 0xe3d86c0,25, 0xe3d8740,6, 0xe3d8760,2, 0xe3d876c,3, 0xe3d8780,8, 0xe3d87a4,3, 0xe3d8800,44, 0xe3d8900,1, 0xe3e0000,1, 0xe3e0200,27, 0xe3e0280,4, 0xe3e02c0,25, 0xe3e0340,6, 0xe3e0360,2, 0xe3e036c,3, 0xe3e0380,8, 0xe3e03a4,1, 0xe3e0400,20, 0xe3e0480,3, 0xe3e0490,9, 0xe400000,198, 0xe400400,2, 0xe400440,9, 0xe400480,7, 0xe400800,198, 0xe400c00,2, 0xe400c40,9, 0xe400c80,7, 0xe401000,198, 0xe401400,198, 0xe401804,6, 0xe401824,6, 0xe401880,2, 0xe401904,1, 0xe401918,28, 0xe4019a0,6, 0xe4019c0,6, 0xe401c00,2, 0xe401d00,2, 0xe401e04,1, 0xe401e74,43, 0xe402000,2, 0xe402100,2, 0xe402204,1, 0xe402274,43, 0xe402400,3, 0xe402600,27, 0xe402680,4, 0xe4026c0,25, 0xe402740,6, 0xe402760,4, 0xe402774,11, 0xe4027a4,4, 0xe402800,4, 0xe402900,34, 0xe402a00,4, 0xe402b00,34, 0xe402c00,3, 0xe402c10,12, 0xe402e00,56, 0xe402ee4,4, 0xe402f00,4, 0xe403000,1, 0xe408000,4, 0xe408100,42, 0xe408200,1, 0xe408210,3, 0xe408220,3, 0xe408230,3, 0xe408240,1, 0xe408248,3, 0xe408400,4, 0xe408500,58, 0xe408600,1, 0xe408610,3, 0xe408620,3, 0xe408630,3, 0xe408640,1, 0xe408648,3, 0xe408800,4, 0xe408900,36, 0xe408a00,1, 0xe408c00,4, 0xe408c80,27, 0xe408d00,1, 0xe408d10,3, 0xe408d20,3, 0xe408d30,3, 0xe408d40,1, 0xe408d48,3, 0xe408e00,4, 0xe408e80,31, 0xe408f00,1, 0xe408f10,3, 0xe408f20,3, 0xe408f30,3, 0xe408f40,1, 0xe408f48,3, 0xe409000,4, 0xe409040,13, 0xe409080,1, 0xe409200,15, 0xe409240,4, 0xe409260,17, 0xe4092c0,6, 0xe4092e0,2, 0xe4092ec,3, 0xe409300,8, 0xe409324,8, 0xe409400,68, 0xe409600,60, 0xe409700,4, 0xe409720,5, 0xe409740,1, 0xe409780,2, 0xe40978c,2, 0xe4097a0,1, 0xe4097c0,12, 0xe409800,7, 0xe409820,5, 0xe409900,49, 0xe409a00,1, 0xe409a08,23, 0xe409a84,1, 0xe409a8c,1, 0xe409a94,1, 0xe409a9c,2, 0xe409ac0,1, 0xe409c00,10, 0xe409c40,1, 0xe409c50,3, 0xe409c80,10, 0xe409cc0,12, 0xe409d00,3, 0xe409e00,1, 0xe40a000,4, 0xe40a100,42, 0xe40a200,1, 0xe40a210,3, 0xe40a220,3, 0xe40a230,3, 0xe40a240,1, 0xe40a248,3, 0xe40a400,4, 0xe40a500,58, 0xe40a600,1, 0xe40a610,3, 0xe40a620,3, 0xe40a630,3, 0xe40a640,1, 0xe40a648,3, 0xe40a800,4, 0xe40a900,36, 0xe40aa00,1, 0xe40ac00,4, 0xe40ac80,27, 0xe40ad00,1, 0xe40ad10,3, 0xe40ad20,3, 0xe40ad30,3, 0xe40ad40,1, 0xe40ad48,3, 0xe40ae00,4, 0xe40ae80,31, 0xe40af00,1, 0xe40af10,3, 0xe40af20,3, 0xe40af30,3, 0xe40af40,1, 0xe40af48,3, 0xe40b000,4, 0xe40b040,13, 0xe40b080,1, 0xe40b200,15, 0xe40b240,4, 0xe40b260,17, 0xe40b2c0,6, 0xe40b2e0,2, 0xe40b2ec,3, 0xe40b300,8, 0xe40b324,8, 0xe40b400,68, 0xe40b600,60, 0xe40b700,4, 0xe40b720,5, 0xe40b740,1, 0xe40b780,2, 0xe40b78c,2, 0xe40b7a0,1, 0xe40b7c0,12, 0xe40b800,7, 0xe40b820,5, 0xe40b900,49, 0xe40ba00,1, 0xe40ba08,23, 0xe40ba84,1, 0xe40ba8c,1, 0xe40ba94,1, 0xe40ba9c,2, 0xe40bac0,1, 0xe40bc00,10, 0xe40bc40,1, 0xe40bc50,3, 0xe40bc80,10, 0xe40bcc0,12, 0xe40bd00,3, 0xe40be00,1, 0xe40c000,20, 0xe40c080,3, 0xe40c090,1, 0xe40c098,4, 0xe410000,49, 0xe410100,12, 0xe410140,4, 0xe410184,1, 0xe410198,2, 0xe4101a4,1, 0xe4101b8,7, 0xe4101e0,4, 0xe410200,20, 0xe410280,3, 0xe410290,9, 0xe4102c0,6, 0xe4102e0,1, 0xe4102e8,7, 0xe410400,49, 0xe410500,12, 0xe410540,4, 0xe410584,1, 0xe410598,2, 0xe4105a4,1, 0xe4105b8,7, 0xe4105e0,4, 0xe410600,20, 0xe410680,3, 0xe410690,9, 0xe4106c0,6, 0xe4106e0,1, 0xe4106e8,7, 0xe410800,49, 0xe410900,12, 0xe410940,4, 0xe410984,1, 0xe410998,2, 0xe4109a4,1, 0xe4109b8,7, 0xe4109e0,4, 0xe410a00,20, 0xe410a80,3, 0xe410a90,9, 0xe410ac0,6, 0xe410ae0,1, 0xe410ae8,7, 0xe410c00,49, 0xe410d00,12, 0xe410d40,4, 0xe410d84,1, 0xe410d98,2, 0xe410da4,1, 0xe410db8,7, 0xe410de0,4, 0xe410e00,20, 0xe410e80,3, 0xe410e90,9, 0xe410ec0,6, 0xe410ee0,1, 0xe410ee8,7, 0xe411000,49, 0xe411100,12, 0xe411140,4, 0xe411184,1, 0xe411198,2, 0xe4111a4,1, 0xe4111b8,7, 0xe4111e0,4, 0xe411200,20, 0xe411280,3, 0xe411290,9, 0xe4112c0,6, 0xe4112e0,1, 0xe4112e8,7, 0xe411400,49, 0xe411500,12, 0xe411540,4, 0xe411584,1, 0xe411598,2, 0xe4115a4,1, 0xe4115b8,7, 0xe4115e0,4, 0xe411600,20, 0xe411680,3, 0xe411690,9, 0xe4116c0,6, 0xe4116e0,1, 0xe4116e8,7, 0xe411800,49, 0xe411900,12, 0xe411940,4, 0xe411984,1, 0xe411998,2, 0xe4119a4,1, 0xe4119b8,7, 0xe4119e0,4, 0xe411a00,20, 0xe411a80,3, 0xe411a90,9, 0xe411ac0,6, 0xe411ae0,1, 0xe411ae8,7, 0xe412000,20, 0xe412080,10, 0xe412100,20, 0xe412180,10, 0xe412200,12, 0xe412400,20, 0xe412480,10, 0xe412500,20, 0xe412580,10, 0xe412600,12, 0xe412800,3, 0xe412840,12, 0xe412880,12, 0xe4128c0,12, 0xe412900,12, 0xe412940,12, 0xe412980,12, 0xe4129c0,12, 0xe412a00,12, 0xe412c00,12, 0xe412c40,7, 0xe412c60,10, 0xe413004,1, 0xe413044,43, 0xe413100,7, 0xe413120,7, 0xe413140,2, 0xe41314c,2, 0xe413160,2, 0xe41316c,2, 0xe413180,18, 0xe413200,2, 0xe413220,10, 0xe413260,20, 0xe4132c0,9, 0xe413300,15, 0xe413340,9, 0xe413380,6, 0xe4133a0,4, 0xe413400,5, 0xe414000,53, 0xe414100,3, 0xe414110,15, 0xe414200,53, 0xe414300,3, 0xe414310,15, 0xe414400,5, 0xe414420,5, 0xe414440,18, 0xe414800,3, 0xe414810,2, 0xe414820,3, 0xe414830,2, 0xe414840,1, 0xe415000,7, 0xe415020,7, 0xe415080,19, 0xe415100,19, 0xe415180,25, 0xe415200,20, 0xe415280,20, 0xe415300,8, 0xe415340,4, 0xe415380,15, 0xe4153c0,15, 0xe415400,9, 0xe415430,5, 0xe416000,6, 0xe416020,1, 0xe416028,2, 0xe416040,11, 0xe416070,2, 0xe418000,82, 0xe418200,2, 0xe418240,9, 0xe418280,7, 0xe418400,82, 0xe418604,6, 0xe418700,15, 0xe418740,9, 0xe418780,6, 0xe4187a0,6, 0xe418800,2, 0xe418810,3, 0xe418880,24, 0xe4188e4,1, 0xe4188f0,12, 0xe420000,22, 0xe420080,22, 0xe420100,5, 0xe420120,5, 0xe420140,3, 0xe420160,16, 0xe4201c0,7, 0xe4201e0,2, 0xe420200,7, 0xe420220,2, 0xe420400,15, 0xe420440,3, 0xe420450,3, 0xe420460,24, 0xe420500,15, 0xe420540,3, 0xe420550,3, 0xe420560,24, 0xe420600,15, 0xe420640,3, 0xe420650,3, 0xe420660,24, 0xe420700,15, 0xe420740,3, 0xe420750,3, 0xe420760,24, 0xe420800,4, 0xe420820,16, 0xe420880,10, 0xe4208c0,10, 0xe420900,6, 0xe420920,6, 0xe420940,4, 0xe420980,13, 0xe4209c0,13, 0xe420a00,9, 0xe421000,86, 0xe421200,2, 0xe421240,9, 0xe421280,7, 0xe421400,86, 0xe421604,6, 0xe421800,86, 0xe421a00,2, 0xe421a40,9, 0xe421a80,7, 0xe421c00,86, 0xe421e04,6, 0xe422000,15, 0xe422040,4, 0xe422060,17, 0xe4220c0,6, 0xe4220e0,4, 0xe4220f4,11, 0xe422128,38, 0xe4221c4,2, 0xe4221d0,4, 0xe422200,1, 0xe424000,22, 0xe424080,22, 0xe424100,5, 0xe424120,5, 0xe424140,3, 0xe424160,16, 0xe4241c0,7, 0xe4241e0,2, 0xe424200,7, 0xe424220,2, 0xe424400,15, 0xe424440,3, 0xe424450,3, 0xe424460,24, 0xe424500,15, 0xe424540,3, 0xe424550,3, 0xe424560,24, 0xe424600,15, 0xe424640,3, 0xe424650,3, 0xe424660,24, 0xe424700,15, 0xe424740,3, 0xe424750,3, 0xe424760,24, 0xe424800,4, 0xe424820,16, 0xe424880,10, 0xe4248c0,10, 0xe424900,6, 0xe424920,6, 0xe424940,4, 0xe424980,13, 0xe4249c0,13, 0xe424a00,9, 0xe425000,86, 0xe425200,2, 0xe425240,9, 0xe425280,7, 0xe425400,86, 0xe425604,6, 0xe425800,86, 0xe425a00,2, 0xe425a40,9, 0xe425a80,7, 0xe425c00,86, 0xe425e04,6, 0xe426000,15, 0xe426040,4, 0xe426060,17, 0xe4260c0,6, 0xe4260e0,4, 0xe4260f4,11, 0xe426128,38, 0xe4261c4,2, 0xe4261d0,4, 0xe426200,1, 0xe428000,9, 0xe428040,9, 0xe428080,5, 0xe428100,21, 0xe428160,5, 0xe428180,45, 0xe428240,13, 0xe428280,9, 0xe428400,9, 0xe428440,9, 0xe428480,5, 0xe428500,21, 0xe428560,5, 0xe428580,45, 0xe428640,13, 0xe428680,9, 0xe428800,12, 0xe428900,15, 0xe428940,4, 0xe428960,17, 0xe4289c0,6, 0xe4289e0,4, 0xe4289f4,29, 0xe42c000,30, 0xe42c080,3, 0xe42c090,19, 0xe42c100,30, 0xe42c180,3, 0xe42c190,19, 0xe42c200,30, 0xe42c280,3, 0xe42c290,19, 0xe42c300,30, 0xe42c380,3, 0xe42c390,19, 0xe42c400,30, 0xe42c480,3, 0xe42c490,19, 0xe42c500,30, 0xe42c580,3, 0xe42c590,19, 0xe42c600,30, 0xe42c680,3, 0xe42c690,19, 0xe42c700,30, 0xe42c780,3, 0xe42c790,19, 0xe42c800,12, 0xe42c844,1, 0xe42c854,8, 0xe42c880,7, 0xe42c8a0,2, 0xe42c8ac,2, 0xe42c8c0,26, 0xe42c980,4, 0xe42c9a0,5, 0xe42c9c0,1, 0xe42d000,3, 0xe42d010,3, 0xe42d020,3, 0xe42d030,3, 0xe42d040,3, 0xe42d050,3, 0xe42d060,3, 0xe42d070,3, 0xe42d080,6, 0xe42d0a0,6, 0xe42d0c0,6, 0xe42d0e0,6, 0xe42d100,6, 0xe42d120,6, 0xe42d140,6, 0xe42d160,6, 0xe42d200,68, 0xe42d400,1, 0xe42d804,1, 0xe42d844,54, 0xe42da00,12, 0xe42da40,12, 0xe42da80,12, 0xe42dac0,12, 0xe42db00,12, 0xe42db40,12, 0xe42db80,12, 0xe42dbc0,12, 0xe42dc00,28, 0xe42dc80,10, 0xe42e000,3, 0xe42e020,6, 0xe42e040,6, 0xe42e060,15, 0xe42e100,26, 0xe42e180,15, 0xe42e200,15, 0xe42e240,4, 0xe42e260,17, 0xe42e2c0,6, 0xe42e2e0,4, 0xe42e2f4,18, 0xe42e340,4, 0xe42e360,17, 0xe42e3c0,6, 0xe42e3e0,4, 0xe42e3f4,15, 0xe430000,1, 0xe431000,1020, 0xe432000,194, 0xe433000,1020, 0xe434000,1020, 0xe435000,1020, 0xe436000,1020, 0xe437000,1020, 0xe438000,1020, 0xe439000,1020, 0xe43a000,1020, 0xe43b000,194, 0xe43c000,3, 0xe43c010,13, 0xe43c080,16, 0xe43c100,20, 0xe43c184,1, 0xe43c18c,4, 0xe43c200,3, 0xe43c210,13, 0xe43c280,16, 0xe43c300,20, 0xe43c384,1, 0xe43c38c,4, 0xe43c400,3, 0xe43c410,13, 0xe43c480,16, 0xe43c500,20, 0xe43c584,1, 0xe43c58c,4, 0xe43c600,3, 0xe43c610,13, 0xe43c680,16, 0xe43c700,20, 0xe43c784,1, 0xe43c78c,4, 0xe43c800,3, 0xe43c810,13, 0xe43c880,16, 0xe43c900,20, 0xe43c984,1, 0xe43c98c,4, 0xe43ca00,3, 0xe43ca10,13, 0xe43ca80,16, 0xe43cb00,20, 0xe43cb84,1, 0xe43cb8c,4, 0xe43cc00,3, 0xe43cc10,13, 0xe43cc80,16, 0xe43cd00,20, 0xe43cd84,1, 0xe43cd8c,4, 0xe43ce00,3, 0xe43ce10,13, 0xe43ce80,16, 0xe43cf00,20, 0xe43cf84,1, 0xe43cf8c,4, 0xe43d000,3, 0xe43d010,13, 0xe43d080,16, 0xe43d100,20, 0xe43d184,1, 0xe43d18c,4, 0xe43d200,18, 0xe43d250,2, 0xe43d260,4, 0xe43e000,1, 0xe43e014,1, 0xe43e01c,19, 0xe43e080,1, 0xe43e094,1, 0xe43e09c,19, 0xe43e100,8, 0xe43e200,13, 0xe43e240,9, 0xe43e280,12, 0xe43e2c0,2, 0xe43e2e0,12, 0xe440000,3, 0xe440080,20, 0xe440100,10, 0xe440140,1, 0xe440154,1, 0xe44015c,2, 0xe440200,15, 0xe440240,4, 0xe440260,17, 0xe4402c0,6, 0xe4402e0,2, 0xe4402ec,3, 0xe440300,8, 0xe440324,1, 0xe440400,4, 0xe440440,20, 0xe4404c0,9, 0xe440500,33, 0xe440600,11, 0xe440640,11, 0xe440680,1, 0xe442000,1, 0xe442200,4, 0xe442300,53, 0xe442400,4, 0xe442500,40, 0xe442600,15, 0xe442640,4, 0xe442660,17, 0xe4426c0,6, 0xe4426e0,2, 0xe4426ec,3, 0xe442700,8, 0xe442724,1, 0xe442800,20, 0xe442c00,53, 0xe442d00,53, 0xe442e00,1, 0xe443000,40, 0xe443100,40, 0xe443200,1, 0xe443400,1, 0xe443804,1, 0xe443844,39, 0xe443900,3, 0xe443a00,3, 0xe443a44,1, 0xe443a50,4, 0xe443a80,1, 0xe444000,2, 0xe444200,27, 0xe444280,4, 0xe4442c0,25, 0xe444340,6, 0xe444360,2, 0xe44436c,3, 0xe444380,8, 0xe4443a4,1, 0xe444400,12, 0xe444440,1, 0xe448000,3, 0xe448080,20, 0xe448100,10, 0xe448140,1, 0xe448154,1, 0xe44815c,2, 0xe448200,15, 0xe448240,4, 0xe448260,17, 0xe4482c0,6, 0xe4482e0,2, 0xe4482ec,3, 0xe448300,8, 0xe448324,1, 0xe448400,4, 0xe448440,20, 0xe4484c0,9, 0xe448500,33, 0xe448600,11, 0xe448640,11, 0xe448680,1, 0xe44a000,1, 0xe44a200,4, 0xe44a300,53, 0xe44a400,4, 0xe44a500,40, 0xe44a600,15, 0xe44a640,4, 0xe44a660,17, 0xe44a6c0,6, 0xe44a6e0,2, 0xe44a6ec,3, 0xe44a700,8, 0xe44a724,1, 0xe44a800,20, 0xe44ac00,53, 0xe44ad00,53, 0xe44ae00,1, 0xe44b000,40, 0xe44b100,40, 0xe44b200,1, 0xe44b400,1, 0xe44b804,1, 0xe44b844,39, 0xe44b900,3, 0xe44ba00,3, 0xe44ba44,1, 0xe44ba50,4, 0xe44ba80,1, 0xe44c000,2, 0xe44c200,27, 0xe44c280,4, 0xe44c2c0,25, 0xe44c340,6, 0xe44c360,2, 0xe44c36c,3, 0xe44c380,8, 0xe44c3a4,1, 0xe44c400,12, 0xe44c440,1, 0xe450000,4, 0xe450020,3, 0xe450030,2, 0xe450200,1, 0xe450224,10, 0xe450250,5, 0xe450280,1, 0xe450288,24, 0xe450300,3, 0xe450404,1, 0xe450414,5, 0xe450500,36, 0xe450600,3, 0xe450800,2, 0xe451000,1, 0xe451008,21, 0xe451080,1, 0xe451088,21, 0xe451100,1, 0xe451108,21, 0xe451180,1, 0xe451188,21, 0xe451200,1, 0xe451208,21, 0xe451280,1, 0xe451288,21, 0xe451300,1, 0xe451308,21, 0xe451380,1, 0xe451388,21, 0xe451400,21, 0xe451800,142, 0xe451c00,1, 0xe452000,4, 0xe452100,39, 0xe452200,3, 0xe452214,3, 0xe454004,1, 0xe454020,16, 0xe454080,2, 0xe454094,1, 0xe45409c,2, 0xe4540c0,6, 0xe454100,8, 0xe458004,17, 0xe458054,1, 0xe45805c,2, 0xe458080,1, 0xe4580a0,2, 0xe4580b4,4, 0xe458100,2, 0xe458200,8, 0xe458400,1, 0xe458600,27, 0xe458680,4, 0xe4586c0,25, 0xe458740,6, 0xe458760,2, 0xe45876c,3, 0xe458780,8, 0xe4587a4,3, 0xe458800,44, 0xe458900,1, 0xe460000,1, 0xe460200,27, 0xe460280,4, 0xe4602c0,25, 0xe460340,6, 0xe460360,2, 0xe46036c,3, 0xe460380,8, 0xe4603a4,1, 0xe460400,20, 0xe460480,3, 0xe460490,9, 0xe480000,198, 0xe480400,2, 0xe480440,9, 0xe480480,7, 0xe480800,198, 0xe480c00,2, 0xe480c40,9, 0xe480c80,7, 0xe481000,198, 0xe481400,198, 0xe481804,6, 0xe481824,6, 0xe481880,2, 0xe481904,1, 0xe481918,28, 0xe4819a0,6, 0xe4819c0,6, 0xe481c00,2, 0xe481d00,2, 0xe481e04,1, 0xe481e74,43, 0xe482000,2, 0xe482100,2, 0xe482204,1, 0xe482274,43, 0xe482400,3, 0xe482600,27, 0xe482680,4, 0xe4826c0,25, 0xe482740,6, 0xe482760,4, 0xe482774,11, 0xe4827a4,4, 0xe482800,4, 0xe482900,34, 0xe482a00,4, 0xe482b00,34, 0xe482c00,3, 0xe482c10,12, 0xe482e00,56, 0xe482ee4,4, 0xe482f00,4, 0xe483000,1, 0xe488000,4, 0xe488100,42, 0xe488200,1, 0xe488210,3, 0xe488220,3, 0xe488230,3, 0xe488240,1, 0xe488248,3, 0xe488400,4, 0xe488500,58, 0xe488600,1, 0xe488610,3, 0xe488620,3, 0xe488630,3, 0xe488640,1, 0xe488648,3, 0xe488800,4, 0xe488900,36, 0xe488a00,1, 0xe488c00,4, 0xe488c80,27, 0xe488d00,1, 0xe488d10,3, 0xe488d20,3, 0xe488d30,3, 0xe488d40,1, 0xe488d48,3, 0xe488e00,4, 0xe488e80,31, 0xe488f00,1, 0xe488f10,3, 0xe488f20,3, 0xe488f30,3, 0xe488f40,1, 0xe488f48,3, 0xe489000,4, 0xe489040,13, 0xe489080,1, 0xe489200,15, 0xe489240,4, 0xe489260,17, 0xe4892c0,6, 0xe4892e0,2, 0xe4892ec,3, 0xe489300,8, 0xe489324,8, 0xe489400,68, 0xe489600,60, 0xe489700,4, 0xe489720,5, 0xe489740,1, 0xe489780,2, 0xe48978c,2, 0xe4897a0,1, 0xe4897c0,12, 0xe489800,7, 0xe489820,5, 0xe489900,49, 0xe489a00,1, 0xe489a08,23, 0xe489a84,1, 0xe489a8c,1, 0xe489a94,1, 0xe489a9c,2, 0xe489ac0,1, 0xe489c00,10, 0xe489c40,1, 0xe489c50,3, 0xe489c80,10, 0xe489cc0,12, 0xe489d00,3, 0xe489e00,1, 0xe48a000,4, 0xe48a100,42, 0xe48a200,1, 0xe48a210,3, 0xe48a220,3, 0xe48a230,3, 0xe48a240,1, 0xe48a248,3, 0xe48a400,4, 0xe48a500,58, 0xe48a600,1, 0xe48a610,3, 0xe48a620,3, 0xe48a630,3, 0xe48a640,1, 0xe48a648,3, 0xe48a800,4, 0xe48a900,36, 0xe48aa00,1, 0xe48ac00,4, 0xe48ac80,27, 0xe48ad00,1, 0xe48ad10,3, 0xe48ad20,3, 0xe48ad30,3, 0xe48ad40,1, 0xe48ad48,3, 0xe48ae00,4, 0xe48ae80,31, 0xe48af00,1, 0xe48af10,3, 0xe48af20,3, 0xe48af30,3, 0xe48af40,1, 0xe48af48,3, 0xe48b000,4, 0xe48b040,13, 0xe48b080,1, 0xe48b200,15, 0xe48b240,4, 0xe48b260,17, 0xe48b2c0,6, 0xe48b2e0,2, 0xe48b2ec,3, 0xe48b300,8, 0xe48b324,8, 0xe48b400,68, 0xe48b600,60, 0xe48b700,4, 0xe48b720,5, 0xe48b740,1, 0xe48b780,2, 0xe48b78c,2, 0xe48b7a0,1, 0xe48b7c0,12, 0xe48b800,7, 0xe48b820,5, 0xe48b900,49, 0xe48ba00,1, 0xe48ba08,23, 0xe48ba84,1, 0xe48ba8c,1, 0xe48ba94,1, 0xe48ba9c,2, 0xe48bac0,1, 0xe48bc00,10, 0xe48bc40,1, 0xe48bc50,3, 0xe48bc80,10, 0xe48bcc0,12, 0xe48bd00,3, 0xe48be00,1, 0xe48c000,20, 0xe48c080,3, 0xe48c090,1, 0xe48c098,4, 0xe490000,49, 0xe490100,12, 0xe490140,4, 0xe490184,1, 0xe490198,2, 0xe4901a4,1, 0xe4901b8,7, 0xe4901e0,4, 0xe490200,20, 0xe490280,3, 0xe490290,9, 0xe4902c0,6, 0xe4902e0,1, 0xe4902e8,7, 0xe490400,49, 0xe490500,12, 0xe490540,4, 0xe490584,1, 0xe490598,2, 0xe4905a4,1, 0xe4905b8,7, 0xe4905e0,4, 0xe490600,20, 0xe490680,3, 0xe490690,9, 0xe4906c0,6, 0xe4906e0,1, 0xe4906e8,7, 0xe490800,49, 0xe490900,12, 0xe490940,4, 0xe490984,1, 0xe490998,2, 0xe4909a4,1, 0xe4909b8,7, 0xe4909e0,4, 0xe490a00,20, 0xe490a80,3, 0xe490a90,9, 0xe490ac0,6, 0xe490ae0,1, 0xe490ae8,7, 0xe490c00,49, 0xe490d00,12, 0xe490d40,4, 0xe490d84,1, 0xe490d98,2, 0xe490da4,1, 0xe490db8,7, 0xe490de0,4, 0xe490e00,20, 0xe490e80,3, 0xe490e90,9, 0xe490ec0,6, 0xe490ee0,1, 0xe490ee8,7, 0xe491000,49, 0xe491100,12, 0xe491140,4, 0xe491184,1, 0xe491198,2, 0xe4911a4,1, 0xe4911b8,7, 0xe4911e0,4, 0xe491200,20, 0xe491280,3, 0xe491290,9, 0xe4912c0,6, 0xe4912e0,1, 0xe4912e8,7, 0xe491400,49, 0xe491500,12, 0xe491540,4, 0xe491584,1, 0xe491598,2, 0xe4915a4,1, 0xe4915b8,7, 0xe4915e0,4, 0xe491600,20, 0xe491680,3, 0xe491690,9, 0xe4916c0,6, 0xe4916e0,1, 0xe4916e8,7, 0xe491800,49, 0xe491900,12, 0xe491940,4, 0xe491984,1, 0xe491998,2, 0xe4919a4,1, 0xe4919b8,7, 0xe4919e0,4, 0xe491a00,20, 0xe491a80,3, 0xe491a90,9, 0xe491ac0,6, 0xe491ae0,1, 0xe491ae8,7, 0xe492000,20, 0xe492080,10, 0xe492100,20, 0xe492180,10, 0xe492200,12, 0xe492400,20, 0xe492480,10, 0xe492500,20, 0xe492580,10, 0xe492600,12, 0xe492800,3, 0xe492840,12, 0xe492880,12, 0xe4928c0,12, 0xe492900,12, 0xe492940,12, 0xe492980,12, 0xe4929c0,12, 0xe492a00,12, 0xe492c00,12, 0xe492c40,7, 0xe492c60,10, 0xe493004,1, 0xe493044,43, 0xe493100,7, 0xe493120,7, 0xe493140,2, 0xe49314c,2, 0xe493160,2, 0xe49316c,2, 0xe493180,18, 0xe493200,2, 0xe493220,10, 0xe493260,20, 0xe4932c0,9, 0xe493300,15, 0xe493340,9, 0xe493380,6, 0xe4933a0,4, 0xe493400,5, 0xe494000,53, 0xe494100,3, 0xe494110,15, 0xe494200,53, 0xe494300,3, 0xe494310,15, 0xe494400,5, 0xe494420,5, 0xe494440,18, 0xe494800,3, 0xe494810,2, 0xe494820,3, 0xe494830,2, 0xe494840,1, 0xe495000,7, 0xe495020,7, 0xe495080,19, 0xe495100,19, 0xe495180,25, 0xe495200,20, 0xe495280,20, 0xe495300,8, 0xe495340,4, 0xe495380,15, 0xe4953c0,15, 0xe495400,9, 0xe495430,5, 0xe496000,6, 0xe496020,1, 0xe496028,2, 0xe496040,11, 0xe496070,2, 0xe498000,82, 0xe498200,2, 0xe498240,9, 0xe498280,7, 0xe498400,82, 0xe498604,6, 0xe498700,15, 0xe498740,9, 0xe498780,6, 0xe4987a0,6, 0xe498800,2, 0xe498810,3, 0xe498880,24, 0xe4988e4,1, 0xe4988f0,12, 0xe4a0000,22, 0xe4a0080,22, 0xe4a0100,5, 0xe4a0120,5, 0xe4a0140,3, 0xe4a0160,16, 0xe4a01c0,7, 0xe4a01e0,2, 0xe4a0200,7, 0xe4a0220,2, 0xe4a0400,15, 0xe4a0440,3, 0xe4a0450,3, 0xe4a0460,24, 0xe4a0500,15, 0xe4a0540,3, 0xe4a0550,3, 0xe4a0560,24, 0xe4a0600,15, 0xe4a0640,3, 0xe4a0650,3, 0xe4a0660,24, 0xe4a0700,15, 0xe4a0740,3, 0xe4a0750,3, 0xe4a0760,24, 0xe4a0800,4, 0xe4a0820,16, 0xe4a0880,10, 0xe4a08c0,10, 0xe4a0900,6, 0xe4a0920,6, 0xe4a0940,4, 0xe4a0980,13, 0xe4a09c0,13, 0xe4a0a00,9, 0xe4a1000,86, 0xe4a1200,2, 0xe4a1240,9, 0xe4a1280,7, 0xe4a1400,86, 0xe4a1604,6, 0xe4a1800,86, 0xe4a1a00,2, 0xe4a1a40,9, 0xe4a1a80,7, 0xe4a1c00,86, 0xe4a1e04,6, 0xe4a2000,15, 0xe4a2040,4, 0xe4a2060,17, 0xe4a20c0,6, 0xe4a20e0,4, 0xe4a20f4,11, 0xe4a2128,38, 0xe4a21c4,2, 0xe4a21d0,4, 0xe4a2200,1, 0xe4a4000,22, 0xe4a4080,22, 0xe4a4100,5, 0xe4a4120,5, 0xe4a4140,3, 0xe4a4160,16, 0xe4a41c0,7, 0xe4a41e0,2, 0xe4a4200,7, 0xe4a4220,2, 0xe4a4400,15, 0xe4a4440,3, 0xe4a4450,3, 0xe4a4460,24, 0xe4a4500,15, 0xe4a4540,3, 0xe4a4550,3, 0xe4a4560,24, 0xe4a4600,15, 0xe4a4640,3, 0xe4a4650,3, 0xe4a4660,24, 0xe4a4700,15, 0xe4a4740,3, 0xe4a4750,3, 0xe4a4760,24, 0xe4a4800,4, 0xe4a4820,16, 0xe4a4880,10, 0xe4a48c0,10, 0xe4a4900,6, 0xe4a4920,6, 0xe4a4940,4, 0xe4a4980,13, 0xe4a49c0,13, 0xe4a4a00,9, 0xe4a5000,86, 0xe4a5200,2, 0xe4a5240,9, 0xe4a5280,7, 0xe4a5400,86, 0xe4a5604,6, 0xe4a5800,86, 0xe4a5a00,2, 0xe4a5a40,9, 0xe4a5a80,7, 0xe4a5c00,86, 0xe4a5e04,6, 0xe4a6000,15, 0xe4a6040,4, 0xe4a6060,17, 0xe4a60c0,6, 0xe4a60e0,4, 0xe4a60f4,11, 0xe4a6128,38, 0xe4a61c4,2, 0xe4a61d0,4, 0xe4a6200,1, 0xe4a8000,9, 0xe4a8040,9, 0xe4a8080,5, 0xe4a8100,21, 0xe4a8160,5, 0xe4a8180,45, 0xe4a8240,13, 0xe4a8280,9, 0xe4a8400,9, 0xe4a8440,9, 0xe4a8480,5, 0xe4a8500,21, 0xe4a8560,5, 0xe4a8580,45, 0xe4a8640,13, 0xe4a8680,9, 0xe4a8800,12, 0xe4a8900,15, 0xe4a8940,4, 0xe4a8960,17, 0xe4a89c0,6, 0xe4a89e0,4, 0xe4a89f4,29, 0xe4ac000,30, 0xe4ac080,3, 0xe4ac090,19, 0xe4ac100,30, 0xe4ac180,3, 0xe4ac190,19, 0xe4ac200,30, 0xe4ac280,3, 0xe4ac290,19, 0xe4ac300,30, 0xe4ac380,3, 0xe4ac390,19, 0xe4ac400,30, 0xe4ac480,3, 0xe4ac490,19, 0xe4ac500,30, 0xe4ac580,3, 0xe4ac590,19, 0xe4ac600,30, 0xe4ac680,3, 0xe4ac690,19, 0xe4ac700,30, 0xe4ac780,3, 0xe4ac790,19, 0xe4ac800,12, 0xe4ac844,1, 0xe4ac854,8, 0xe4ac880,7, 0xe4ac8a0,2, 0xe4ac8ac,2, 0xe4ac8c0,26, 0xe4ac980,4, 0xe4ac9a0,5, 0xe4ac9c0,1, 0xe4ad000,3, 0xe4ad010,3, 0xe4ad020,3, 0xe4ad030,3, 0xe4ad040,3, 0xe4ad050,3, 0xe4ad060,3, 0xe4ad070,3, 0xe4ad080,6, 0xe4ad0a0,6, 0xe4ad0c0,6, 0xe4ad0e0,6, 0xe4ad100,6, 0xe4ad120,6, 0xe4ad140,6, 0xe4ad160,6, 0xe4ad200,68, 0xe4ad400,1, 0xe4ad804,1, 0xe4ad844,54, 0xe4ada00,12, 0xe4ada40,12, 0xe4ada80,12, 0xe4adac0,12, 0xe4adb00,12, 0xe4adb40,12, 0xe4adb80,12, 0xe4adbc0,12, 0xe4adc00,28, 0xe4adc80,10, 0xe4ae000,3, 0xe4ae020,6, 0xe4ae040,6, 0xe4ae060,15, 0xe4ae100,26, 0xe4ae180,15, 0xe4ae200,15, 0xe4ae240,4, 0xe4ae260,17, 0xe4ae2c0,6, 0xe4ae2e0,4, 0xe4ae2f4,18, 0xe4ae340,4, 0xe4ae360,17, 0xe4ae3c0,6, 0xe4ae3e0,4, 0xe4ae3f4,15, 0xe4b0000,1, 0xe4b1000,1020, 0xe4b2000,194, 0xe4b3000,1020, 0xe4b4000,1020, 0xe4b5000,1020, 0xe4b6000,1020, 0xe4b7000,1020, 0xe4b8000,1020, 0xe4b9000,1020, 0xe4ba000,1020, 0xe4bb000,194, 0xe4bc000,3, 0xe4bc010,13, 0xe4bc080,16, 0xe4bc100,20, 0xe4bc184,1, 0xe4bc18c,4, 0xe4bc200,3, 0xe4bc210,13, 0xe4bc280,16, 0xe4bc300,20, 0xe4bc384,1, 0xe4bc38c,4, 0xe4bc400,3, 0xe4bc410,13, 0xe4bc480,16, 0xe4bc500,20, 0xe4bc584,1, 0xe4bc58c,4, 0xe4bc600,3, 0xe4bc610,13, 0xe4bc680,16, 0xe4bc700,20, 0xe4bc784,1, 0xe4bc78c,4, 0xe4bc800,3, 0xe4bc810,13, 0xe4bc880,16, 0xe4bc900,20, 0xe4bc984,1, 0xe4bc98c,4, 0xe4bca00,3, 0xe4bca10,13, 0xe4bca80,16, 0xe4bcb00,20, 0xe4bcb84,1, 0xe4bcb8c,4, 0xe4bcc00,3, 0xe4bcc10,13, 0xe4bcc80,16, 0xe4bcd00,20, 0xe4bcd84,1, 0xe4bcd8c,4, 0xe4bce00,3, 0xe4bce10,13, 0xe4bce80,16, 0xe4bcf00,20, 0xe4bcf84,1, 0xe4bcf8c,4, 0xe4bd000,3, 0xe4bd010,13, 0xe4bd080,16, 0xe4bd100,20, 0xe4bd184,1, 0xe4bd18c,4, 0xe4bd200,18, 0xe4bd250,2, 0xe4bd260,4, 0xe4be000,1, 0xe4be014,1, 0xe4be01c,19, 0xe4be080,1, 0xe4be094,1, 0xe4be09c,19, 0xe4be100,8, 0xe4be200,13, 0xe4be240,9, 0xe4be280,12, 0xe4be2c0,2, 0xe4be2e0,12, 0xe4c0000,3, 0xe4c0080,20, 0xe4c0100,10, 0xe4c0140,1, 0xe4c0154,1, 0xe4c015c,2, 0xe4c0200,15, 0xe4c0240,4, 0xe4c0260,17, 0xe4c02c0,6, 0xe4c02e0,2, 0xe4c02ec,3, 0xe4c0300,8, 0xe4c0324,1, 0xe4c0400,4, 0xe4c0440,20, 0xe4c04c0,9, 0xe4c0500,33, 0xe4c0600,11, 0xe4c0640,11, 0xe4c0680,1, 0xe4c2000,1, 0xe4c2200,4, 0xe4c2300,53, 0xe4c2400,4, 0xe4c2500,40, 0xe4c2600,15, 0xe4c2640,4, 0xe4c2660,17, 0xe4c26c0,6, 0xe4c26e0,2, 0xe4c26ec,3, 0xe4c2700,8, 0xe4c2724,1, 0xe4c2800,20, 0xe4c2c00,53, 0xe4c2d00,53, 0xe4c2e00,1, 0xe4c3000,40, 0xe4c3100,40, 0xe4c3200,1, 0xe4c3400,1, 0xe4c3804,1, 0xe4c3844,39, 0xe4c3900,3, 0xe4c3a00,3, 0xe4c3a44,1, 0xe4c3a50,4, 0xe4c3a80,1, 0xe4c4000,2, 0xe4c4200,27, 0xe4c4280,4, 0xe4c42c0,25, 0xe4c4340,6, 0xe4c4360,2, 0xe4c436c,3, 0xe4c4380,8, 0xe4c43a4,1, 0xe4c4400,12, 0xe4c4440,1, 0xe4c8000,3, 0xe4c8080,20, 0xe4c8100,10, 0xe4c8140,1, 0xe4c8154,1, 0xe4c815c,2, 0xe4c8200,15, 0xe4c8240,4, 0xe4c8260,17, 0xe4c82c0,6, 0xe4c82e0,2, 0xe4c82ec,3, 0xe4c8300,8, 0xe4c8324,1, 0xe4c8400,4, 0xe4c8440,20, 0xe4c84c0,9, 0xe4c8500,33, 0xe4c8600,11, 0xe4c8640,11, 0xe4c8680,1, 0xe4ca000,1, 0xe4ca200,4, 0xe4ca300,53, 0xe4ca400,4, 0xe4ca500,40, 0xe4ca600,15, 0xe4ca640,4, 0xe4ca660,17, 0xe4ca6c0,6, 0xe4ca6e0,2, 0xe4ca6ec,3, 0xe4ca700,8, 0xe4ca724,1, 0xe4ca800,20, 0xe4cac00,53, 0xe4cad00,53, 0xe4cae00,1, 0xe4cb000,40, 0xe4cb100,40, 0xe4cb200,1, 0xe4cb400,1, 0xe4cb804,1, 0xe4cb844,39, 0xe4cb900,3, 0xe4cba00,3, 0xe4cba44,1, 0xe4cba50,4, 0xe4cba80,1, 0xe4cc000,2, 0xe4cc200,27, 0xe4cc280,4, 0xe4cc2c0,25, 0xe4cc340,6, 0xe4cc360,2, 0xe4cc36c,3, 0xe4cc380,8, 0xe4cc3a4,1, 0xe4cc400,12, 0xe4cc440,1, 0xe4d0000,4, 0xe4d0020,3, 0xe4d0030,2, 0xe4d0200,1, 0xe4d0224,10, 0xe4d0250,5, 0xe4d0280,1, 0xe4d0288,24, 0xe4d0300,3, 0xe4d0404,1, 0xe4d0414,5, 0xe4d0500,36, 0xe4d0600,3, 0xe4d0800,2, 0xe4d1000,1, 0xe4d1008,21, 0xe4d1080,1, 0xe4d1088,21, 0xe4d1100,1, 0xe4d1108,21, 0xe4d1180,1, 0xe4d1188,21, 0xe4d1200,1, 0xe4d1208,21, 0xe4d1280,1, 0xe4d1288,21, 0xe4d1300,1, 0xe4d1308,21, 0xe4d1380,1, 0xe4d1388,21, 0xe4d1400,21, 0xe4d1800,142, 0xe4d1c00,1, 0xe4d2000,4, 0xe4d2100,39, 0xe4d2200,3, 0xe4d2214,3, 0xe4d4004,1, 0xe4d4020,16, 0xe4d4080,2, 0xe4d4094,1, 0xe4d409c,2, 0xe4d40c0,6, 0xe4d4100,8, 0xe4d8004,17, 0xe4d8054,1, 0xe4d805c,2, 0xe4d8080,1, 0xe4d80a0,2, 0xe4d80b4,4, 0xe4d8100,2, 0xe4d8200,8, 0xe4d8400,1, 0xe4d8600,27, 0xe4d8680,4, 0xe4d86c0,25, 0xe4d8740,6, 0xe4d8760,2, 0xe4d876c,3, 0xe4d8780,8, 0xe4d87a4,3, 0xe4d8800,44, 0xe4d8900,1, 0xe4e0000,1, 0xe4e0200,27, 0xe4e0280,4, 0xe4e02c0,25, 0xe4e0340,6, 0xe4e0360,2, 0xe4e036c,3, 0xe4e0380,8, 0xe4e03a4,1, 0xe4e0400,20, 0xe4e0480,3, 0xe4e0490,9, 0xe500000,198, 0xe500400,2, 0xe500440,9, 0xe500480,7, 0xe500800,198, 0xe500c00,2, 0xe500c40,9, 0xe500c80,7, 0xe501000,198, 0xe501400,198, 0xe501804,6, 0xe501824,6, 0xe501880,2, 0xe501904,1, 0xe501918,28, 0xe5019a0,6, 0xe5019c0,6, 0xe501c00,2, 0xe501d00,2, 0xe501e04,1, 0xe501e74,43, 0xe502000,2, 0xe502100,2, 0xe502204,1, 0xe502274,43, 0xe502400,3, 0xe502600,27, 0xe502680,4, 0xe5026c0,25, 0xe502740,6, 0xe502760,4, 0xe502774,11, 0xe5027a4,4, 0xe502800,4, 0xe502900,34, 0xe502a00,4, 0xe502b00,34, 0xe502c00,3, 0xe502c10,12, 0xe502e00,56, 0xe502ee4,4, 0xe502f00,4, 0xe503000,1, 0xe508000,4, 0xe508100,42, 0xe508200,1, 0xe508210,3, 0xe508220,3, 0xe508230,3, 0xe508240,1, 0xe508248,3, 0xe508400,4, 0xe508500,58, 0xe508600,1, 0xe508610,3, 0xe508620,3, 0xe508630,3, 0xe508640,1, 0xe508648,3, 0xe508800,4, 0xe508900,36, 0xe508a00,1, 0xe508c00,4, 0xe508c80,27, 0xe508d00,1, 0xe508d10,3, 0xe508d20,3, 0xe508d30,3, 0xe508d40,1, 0xe508d48,3, 0xe508e00,4, 0xe508e80,31, 0xe508f00,1, 0xe508f10,3, 0xe508f20,3, 0xe508f30,3, 0xe508f40,1, 0xe508f48,3, 0xe509000,4, 0xe509040,13, 0xe509080,1, 0xe509200,15, 0xe509240,4, 0xe509260,17, 0xe5092c0,6, 0xe5092e0,2, 0xe5092ec,3, 0xe509300,8, 0xe509324,8, 0xe509400,68, 0xe509600,60, 0xe509700,4, 0xe509720,5, 0xe509740,1, 0xe509780,2, 0xe50978c,2, 0xe5097a0,1, 0xe5097c0,12, 0xe509800,7, 0xe509820,5, 0xe509900,49, 0xe509a00,1, 0xe509a08,23, 0xe509a84,1, 0xe509a8c,1, 0xe509a94,1, 0xe509a9c,2, 0xe509ac0,1, 0xe509c00,10, 0xe509c40,1, 0xe509c50,3, 0xe509c80,10, 0xe509cc0,12, 0xe509d00,3, 0xe509e00,1, 0xe50a000,4, 0xe50a100,42, 0xe50a200,1, 0xe50a210,3, 0xe50a220,3, 0xe50a230,3, 0xe50a240,1, 0xe50a248,3, 0xe50a400,4, 0xe50a500,58, 0xe50a600,1, 0xe50a610,3, 0xe50a620,3, 0xe50a630,3, 0xe50a640,1, 0xe50a648,3, 0xe50a800,4, 0xe50a900,36, 0xe50aa00,1, 0xe50ac00,4, 0xe50ac80,27, 0xe50ad00,1, 0xe50ad10,3, 0xe50ad20,3, 0xe50ad30,3, 0xe50ad40,1, 0xe50ad48,3, 0xe50ae00,4, 0xe50ae80,31, 0xe50af00,1, 0xe50af10,3, 0xe50af20,3, 0xe50af30,3, 0xe50af40,1, 0xe50af48,3, 0xe50b000,4, 0xe50b040,13, 0xe50b080,1, 0xe50b200,15, 0xe50b240,4, 0xe50b260,17, 0xe50b2c0,6, 0xe50b2e0,2, 0xe50b2ec,3, 0xe50b300,8, 0xe50b324,8, 0xe50b400,68, 0xe50b600,60, 0xe50b700,4, 0xe50b720,5, 0xe50b740,1, 0xe50b780,2, 0xe50b78c,2, 0xe50b7a0,1, 0xe50b7c0,12, 0xe50b800,7, 0xe50b820,5, 0xe50b900,49, 0xe50ba00,1, 0xe50ba08,23, 0xe50ba84,1, 0xe50ba8c,1, 0xe50ba94,1, 0xe50ba9c,2, 0xe50bac0,1, 0xe50bc00,10, 0xe50bc40,1, 0xe50bc50,3, 0xe50bc80,10, 0xe50bcc0,12, 0xe50bd00,3, 0xe50be00,1, 0xe50c000,20, 0xe50c080,3, 0xe50c090,1, 0xe50c098,4, 0xe510000,49, 0xe510100,12, 0xe510140,4, 0xe510184,1, 0xe510198,2, 0xe5101a4,1, 0xe5101b8,7, 0xe5101e0,4, 0xe510200,20, 0xe510280,3, 0xe510290,9, 0xe5102c0,6, 0xe5102e0,1, 0xe5102e8,7, 0xe510400,49, 0xe510500,12, 0xe510540,4, 0xe510584,1, 0xe510598,2, 0xe5105a4,1, 0xe5105b8,7, 0xe5105e0,4, 0xe510600,20, 0xe510680,3, 0xe510690,9, 0xe5106c0,6, 0xe5106e0,1, 0xe5106e8,7, 0xe510800,49, 0xe510900,12, 0xe510940,4, 0xe510984,1, 0xe510998,2, 0xe5109a4,1, 0xe5109b8,7, 0xe5109e0,4, 0xe510a00,20, 0xe510a80,3, 0xe510a90,9, 0xe510ac0,6, 0xe510ae0,1, 0xe510ae8,7, 0xe510c00,49, 0xe510d00,12, 0xe510d40,4, 0xe510d84,1, 0xe510d98,2, 0xe510da4,1, 0xe510db8,7, 0xe510de0,4, 0xe510e00,20, 0xe510e80,3, 0xe510e90,9, 0xe510ec0,6, 0xe510ee0,1, 0xe510ee8,7, 0xe511000,49, 0xe511100,12, 0xe511140,4, 0xe511184,1, 0xe511198,2, 0xe5111a4,1, 0xe5111b8,7, 0xe5111e0,4, 0xe511200,20, 0xe511280,3, 0xe511290,9, 0xe5112c0,6, 0xe5112e0,1, 0xe5112e8,7, 0xe511400,49, 0xe511500,12, 0xe511540,4, 0xe511584,1, 0xe511598,2, 0xe5115a4,1, 0xe5115b8,7, 0xe5115e0,4, 0xe511600,20, 0xe511680,3, 0xe511690,9, 0xe5116c0,6, 0xe5116e0,1, 0xe5116e8,7, 0xe511800,49, 0xe511900,12, 0xe511940,4, 0xe511984,1, 0xe511998,2, 0xe5119a4,1, 0xe5119b8,7, 0xe5119e0,4, 0xe511a00,20, 0xe511a80,3, 0xe511a90,9, 0xe511ac0,6, 0xe511ae0,1, 0xe511ae8,7, 0xe512000,20, 0xe512080,10, 0xe512100,20, 0xe512180,10, 0xe512200,12, 0xe512400,20, 0xe512480,10, 0xe512500,20, 0xe512580,10, 0xe512600,12, 0xe512800,3, 0xe512840,12, 0xe512880,12, 0xe5128c0,12, 0xe512900,12, 0xe512940,12, 0xe512980,12, 0xe5129c0,12, 0xe512a00,12, 0xe512c00,12, 0xe512c40,7, 0xe512c60,10, 0xe513004,1, 0xe513044,43, 0xe513100,7, 0xe513120,7, 0xe513140,2, 0xe51314c,2, 0xe513160,2, 0xe51316c,2, 0xe513180,18, 0xe513200,2, 0xe513220,10, 0xe513260,20, 0xe5132c0,9, 0xe513300,15, 0xe513340,9, 0xe513380,6, 0xe5133a0,4, 0xe513400,5, 0xe514000,53, 0xe514100,3, 0xe514110,15, 0xe514200,53, 0xe514300,3, 0xe514310,15, 0xe514400,5, 0xe514420,5, 0xe514440,18, 0xe514800,3, 0xe514810,2, 0xe514820,3, 0xe514830,2, 0xe514840,1, 0xe515000,7, 0xe515020,7, 0xe515080,19, 0xe515100,19, 0xe515180,25, 0xe515200,20, 0xe515280,20, 0xe515300,8, 0xe515340,4, 0xe515380,15, 0xe5153c0,15, 0xe515400,9, 0xe515430,5, 0xe516000,6, 0xe516020,1, 0xe516028,2, 0xe516040,11, 0xe516070,2, 0xe518000,82, 0xe518200,2, 0xe518240,9, 0xe518280,7, 0xe518400,82, 0xe518604,6, 0xe518700,15, 0xe518740,9, 0xe518780,6, 0xe5187a0,6, 0xe518800,2, 0xe518810,3, 0xe518880,24, 0xe5188e4,1, 0xe5188f0,12, 0xe520000,22, 0xe520080,22, 0xe520100,5, 0xe520120,5, 0xe520140,3, 0xe520160,16, 0xe5201c0,7, 0xe5201e0,2, 0xe520200,7, 0xe520220,2, 0xe520400,15, 0xe520440,3, 0xe520450,3, 0xe520460,24, 0xe520500,15, 0xe520540,3, 0xe520550,3, 0xe520560,24, 0xe520600,15, 0xe520640,3, 0xe520650,3, 0xe520660,24, 0xe520700,15, 0xe520740,3, 0xe520750,3, 0xe520760,24, 0xe520800,4, 0xe520820,16, 0xe520880,10, 0xe5208c0,10, 0xe520900,6, 0xe520920,6, 0xe520940,4, 0xe520980,13, 0xe5209c0,13, 0xe520a00,9, 0xe521000,86, 0xe521200,2, 0xe521240,9, 0xe521280,7, 0xe521400,86, 0xe521604,6, 0xe521800,86, 0xe521a00,2, 0xe521a40,9, 0xe521a80,7, 0xe521c00,86, 0xe521e04,6, 0xe522000,15, 0xe522040,4, 0xe522060,17, 0xe5220c0,6, 0xe5220e0,4, 0xe5220f4,11, 0xe522128,38, 0xe5221c4,2, 0xe5221d0,4, 0xe522200,1, 0xe524000,22, 0xe524080,22, 0xe524100,5, 0xe524120,5, 0xe524140,3, 0xe524160,16, 0xe5241c0,7, 0xe5241e0,2, 0xe524200,7, 0xe524220,2, 0xe524400,15, 0xe524440,3, 0xe524450,3, 0xe524460,24, 0xe524500,15, 0xe524540,3, 0xe524550,3, 0xe524560,24, 0xe524600,15, 0xe524640,3, 0xe524650,3, 0xe524660,24, 0xe524700,15, 0xe524740,3, 0xe524750,3, 0xe524760,24, 0xe524800,4, 0xe524820,16, 0xe524880,10, 0xe5248c0,10, 0xe524900,6, 0xe524920,6, 0xe524940,4, 0xe524980,13, 0xe5249c0,13, 0xe524a00,9, 0xe525000,86, 0xe525200,2, 0xe525240,9, 0xe525280,7, 0xe525400,86, 0xe525604,6, 0xe525800,86, 0xe525a00,2, 0xe525a40,9, 0xe525a80,7, 0xe525c00,86, 0xe525e04,6, 0xe526000,15, 0xe526040,4, 0xe526060,17, 0xe5260c0,6, 0xe5260e0,4, 0xe5260f4,11, 0xe526128,38, 0xe5261c4,2, 0xe5261d0,4, 0xe526200,1, 0xe528000,9, 0xe528040,9, 0xe528080,5, 0xe528100,21, 0xe528160,5, 0xe528180,45, 0xe528240,13, 0xe528280,9, 0xe528400,9, 0xe528440,9, 0xe528480,5, 0xe528500,21, 0xe528560,5, 0xe528580,45, 0xe528640,13, 0xe528680,9, 0xe528800,12, 0xe528900,15, 0xe528940,4, 0xe528960,17, 0xe5289c0,6, 0xe5289e0,4, 0xe5289f4,29, 0xe52c000,30, 0xe52c080,3, 0xe52c090,19, 0xe52c100,30, 0xe52c180,3, 0xe52c190,19, 0xe52c200,30, 0xe52c280,3, 0xe52c290,19, 0xe52c300,30, 0xe52c380,3, 0xe52c390,19, 0xe52c400,30, 0xe52c480,3, 0xe52c490,19, 0xe52c500,30, 0xe52c580,3, 0xe52c590,19, 0xe52c600,30, 0xe52c680,3, 0xe52c690,19, 0xe52c700,30, 0xe52c780,3, 0xe52c790,19, 0xe52c800,12, 0xe52c844,1, 0xe52c854,8, 0xe52c880,7, 0xe52c8a0,2, 0xe52c8ac,2, 0xe52c8c0,26, 0xe52c980,4, 0xe52c9a0,5, 0xe52c9c0,1, 0xe52d000,3, 0xe52d010,3, 0xe52d020,3, 0xe52d030,3, 0xe52d040,3, 0xe52d050,3, 0xe52d060,3, 0xe52d070,3, 0xe52d080,6, 0xe52d0a0,6, 0xe52d0c0,6, 0xe52d0e0,6, 0xe52d100,6, 0xe52d120,6, 0xe52d140,6, 0xe52d160,6, 0xe52d200,68, 0xe52d400,1, 0xe52d804,1, 0xe52d844,54, 0xe52da00,12, 0xe52da40,12, 0xe52da80,12, 0xe52dac0,12, 0xe52db00,12, 0xe52db40,12, 0xe52db80,12, 0xe52dbc0,12, 0xe52dc00,28, 0xe52dc80,10, 0xe52e000,3, 0xe52e020,6, 0xe52e040,6, 0xe52e060,15, 0xe52e100,26, 0xe52e180,15, 0xe52e200,15, 0xe52e240,4, 0xe52e260,17, 0xe52e2c0,6, 0xe52e2e0,4, 0xe52e2f4,18, 0xe52e340,4, 0xe52e360,17, 0xe52e3c0,6, 0xe52e3e0,4, 0xe52e3f4,15, 0xe530000,1, 0xe531000,1020, 0xe532000,194, 0xe533000,1020, 0xe534000,1020, 0xe535000,1020, 0xe536000,1020, 0xe537000,1020, 0xe538000,1020, 0xe539000,1020, 0xe53a000,1020, 0xe53b000,194, 0xe53c000,3, 0xe53c010,13, 0xe53c080,16, 0xe53c100,20, 0xe53c184,1, 0xe53c18c,4, 0xe53c200,3, 0xe53c210,13, 0xe53c280,16, 0xe53c300,20, 0xe53c384,1, 0xe53c38c,4, 0xe53c400,3, 0xe53c410,13, 0xe53c480,16, 0xe53c500,20, 0xe53c584,1, 0xe53c58c,4, 0xe53c600,3, 0xe53c610,13, 0xe53c680,16, 0xe53c700,20, 0xe53c784,1, 0xe53c78c,4, 0xe53c800,3, 0xe53c810,13, 0xe53c880,16, 0xe53c900,20, 0xe53c984,1, 0xe53c98c,4, 0xe53ca00,3, 0xe53ca10,13, 0xe53ca80,16, 0xe53cb00,20, 0xe53cb84,1, 0xe53cb8c,4, 0xe53cc00,3, 0xe53cc10,13, 0xe53cc80,16, 0xe53cd00,20, 0xe53cd84,1, 0xe53cd8c,4, 0xe53ce00,3, 0xe53ce10,13, 0xe53ce80,16, 0xe53cf00,20, 0xe53cf84,1, 0xe53cf8c,4, 0xe53d000,3, 0xe53d010,13, 0xe53d080,16, 0xe53d100,20, 0xe53d184,1, 0xe53d18c,4, 0xe53d200,18, 0xe53d250,2, 0xe53d260,4, 0xe53e000,1, 0xe53e014,1, 0xe53e01c,19, 0xe53e080,1, 0xe53e094,1, 0xe53e09c,19, 0xe53e100,8, 0xe53e200,13, 0xe53e240,9, 0xe53e280,12, 0xe53e2c0,2, 0xe53e2e0,12, 0xe540000,3, 0xe540080,20, 0xe540100,10, 0xe540140,1, 0xe540154,1, 0xe54015c,2, 0xe540200,15, 0xe540240,4, 0xe540260,17, 0xe5402c0,6, 0xe5402e0,2, 0xe5402ec,3, 0xe540300,8, 0xe540324,1, 0xe540400,4, 0xe540440,20, 0xe5404c0,9, 0xe540500,33, 0xe540600,11, 0xe540640,11, 0xe540680,1, 0xe542000,1, 0xe542200,4, 0xe542300,53, 0xe542400,4, 0xe542500,40, 0xe542600,15, 0xe542640,4, 0xe542660,17, 0xe5426c0,6, 0xe5426e0,2, 0xe5426ec,3, 0xe542700,8, 0xe542724,1, 0xe542800,20, 0xe542c00,53, 0xe542d00,53, 0xe542e00,1, 0xe543000,40, 0xe543100,40, 0xe543200,1, 0xe543400,1, 0xe543804,1, 0xe543844,39, 0xe543900,3, 0xe543a00,3, 0xe543a44,1, 0xe543a50,4, 0xe543a80,1, 0xe544000,2, 0xe544200,27, 0xe544280,4, 0xe5442c0,25, 0xe544340,6, 0xe544360,2, 0xe54436c,3, 0xe544380,8, 0xe5443a4,1, 0xe544400,12, 0xe544440,1, 0xe548000,3, 0xe548080,20, 0xe548100,10, 0xe548140,1, 0xe548154,1, 0xe54815c,2, 0xe548200,15, 0xe548240,4, 0xe548260,17, 0xe5482c0,6, 0xe5482e0,2, 0xe5482ec,3, 0xe548300,8, 0xe548324,1, 0xe548400,4, 0xe548440,20, 0xe5484c0,9, 0xe548500,33, 0xe548600,11, 0xe548640,11, 0xe548680,1, 0xe54a000,1, 0xe54a200,4, 0xe54a300,53, 0xe54a400,4, 0xe54a500,40, 0xe54a600,15, 0xe54a640,4, 0xe54a660,17, 0xe54a6c0,6, 0xe54a6e0,2, 0xe54a6ec,3, 0xe54a700,8, 0xe54a724,1, 0xe54a800,20, 0xe54ac00,53, 0xe54ad00,53, 0xe54ae00,1, 0xe54b000,40, 0xe54b100,40, 0xe54b200,1, 0xe54b400,1, 0xe54b804,1, 0xe54b844,39, 0xe54b900,3, 0xe54ba00,3, 0xe54ba44,1, 0xe54ba50,4, 0xe54ba80,1, 0xe54c000,2, 0xe54c200,27, 0xe54c280,4, 0xe54c2c0,25, 0xe54c340,6, 0xe54c360,2, 0xe54c36c,3, 0xe54c380,8, 0xe54c3a4,1, 0xe54c400,12, 0xe54c440,1, 0xe550000,4, 0xe550020,3, 0xe550030,2, 0xe550200,1, 0xe550224,10, 0xe550250,5, 0xe550280,1, 0xe550288,24, 0xe550300,3, 0xe550404,1, 0xe550414,5, 0xe550500,36, 0xe550600,3, 0xe550800,2, 0xe551000,1, 0xe551008,21, 0xe551080,1, 0xe551088,21, 0xe551100,1, 0xe551108,21, 0xe551180,1, 0xe551188,21, 0xe551200,1, 0xe551208,21, 0xe551280,1, 0xe551288,21, 0xe551300,1, 0xe551308,21, 0xe551380,1, 0xe551388,21, 0xe551400,21, 0xe551800,142, 0xe551c00,1, 0xe552000,4, 0xe552100,39, 0xe552200,3, 0xe552214,3, 0xe554004,1, 0xe554020,16, 0xe554080,2, 0xe554094,1, 0xe55409c,2, 0xe5540c0,6, 0xe554100,8, 0xe558004,17, 0xe558054,1, 0xe55805c,2, 0xe558080,1, 0xe5580a0,2, 0xe5580b4,4, 0xe558100,2, 0xe558200,8, 0xe558400,1, 0xe558600,27, 0xe558680,4, 0xe5586c0,25, 0xe558740,6, 0xe558760,2, 0xe55876c,3, 0xe558780,8, 0xe5587a4,3, 0xe558800,44, 0xe558900,1, 0xe560000,1, 0xe560200,27, 0xe560280,4, 0xe5602c0,25, 0xe560340,6, 0xe560360,2, 0xe56036c,3, 0xe560380,8, 0xe5603a4,1, 0xe560400,20, 0xe560480,3, 0xe560490,9, 0xe580000,198, 0xe580400,2, 0xe580440,9, 0xe580480,7, 0xe580800,198, 0xe580c00,2, 0xe580c40,9, 0xe580c80,7, 0xe581000,198, 0xe581400,198, 0xe581804,6, 0xe581824,6, 0xe581880,2, 0xe581904,1, 0xe581918,28, 0xe5819a0,6, 0xe5819c0,6, 0xe581c00,2, 0xe581d00,2, 0xe581e04,1, 0xe581e74,43, 0xe582000,2, 0xe582100,2, 0xe582204,1, 0xe582274,43, 0xe582400,3, 0xe582600,27, 0xe582680,4, 0xe5826c0,25, 0xe582740,6, 0xe582760,4, 0xe582774,11, 0xe5827a4,4, 0xe582800,4, 0xe582900,34, 0xe582a00,4, 0xe582b00,34, 0xe582c00,3, 0xe582c10,12, 0xe582e00,56, 0xe582ee4,4, 0xe582f00,4, 0xe583000,1, 0xe588000,4, 0xe588100,42, 0xe588200,1, 0xe588210,3, 0xe588220,3, 0xe588230,3, 0xe588240,1, 0xe588248,3, 0xe588400,4, 0xe588500,58, 0xe588600,1, 0xe588610,3, 0xe588620,3, 0xe588630,3, 0xe588640,1, 0xe588648,3, 0xe588800,4, 0xe588900,36, 0xe588a00,1, 0xe588c00,4, 0xe588c80,27, 0xe588d00,1, 0xe588d10,3, 0xe588d20,3, 0xe588d30,3, 0xe588d40,1, 0xe588d48,3, 0xe588e00,4, 0xe588e80,31, 0xe588f00,1, 0xe588f10,3, 0xe588f20,3, 0xe588f30,3, 0xe588f40,1, 0xe588f48,3, 0xe589000,4, 0xe589040,13, 0xe589080,1, 0xe589200,15, 0xe589240,4, 0xe589260,17, 0xe5892c0,6, 0xe5892e0,2, 0xe5892ec,3, 0xe589300,8, 0xe589324,8, 0xe589400,68, 0xe589600,60, 0xe589700,4, 0xe589720,5, 0xe589740,1, 0xe589780,2, 0xe58978c,2, 0xe5897a0,1, 0xe5897c0,12, 0xe589800,7, 0xe589820,5, 0xe589900,49, 0xe589a00,1, 0xe589a08,23, 0xe589a84,1, 0xe589a8c,1, 0xe589a94,1, 0xe589a9c,2, 0xe589ac0,1, 0xe589c00,10, 0xe589c40,1, 0xe589c50,3, 0xe589c80,10, 0xe589cc0,12, 0xe589d00,3, 0xe589e00,1, 0xe58a000,4, 0xe58a100,42, 0xe58a200,1, 0xe58a210,3, 0xe58a220,3, 0xe58a230,3, 0xe58a240,1, 0xe58a248,3, 0xe58a400,4, 0xe58a500,58, 0xe58a600,1, 0xe58a610,3, 0xe58a620,3, 0xe58a630,3, 0xe58a640,1, 0xe58a648,3, 0xe58a800,4, 0xe58a900,36, 0xe58aa00,1, 0xe58ac00,4, 0xe58ac80,27, 0xe58ad00,1, 0xe58ad10,3, 0xe58ad20,3, 0xe58ad30,3, 0xe58ad40,1, 0xe58ad48,3, 0xe58ae00,4, 0xe58ae80,31, 0xe58af00,1, 0xe58af10,3, 0xe58af20,3, 0xe58af30,3, 0xe58af40,1, 0xe58af48,3, 0xe58b000,4, 0xe58b040,13, 0xe58b080,1, 0xe58b200,15, 0xe58b240,4, 0xe58b260,17, 0xe58b2c0,6, 0xe58b2e0,2, 0xe58b2ec,3, 0xe58b300,8, 0xe58b324,8, 0xe58b400,68, 0xe58b600,60, 0xe58b700,4, 0xe58b720,5, 0xe58b740,1, 0xe58b780,2, 0xe58b78c,2, 0xe58b7a0,1, 0xe58b7c0,12, 0xe58b800,7, 0xe58b820,5, 0xe58b900,49, 0xe58ba00,1, 0xe58ba08,23, 0xe58ba84,1, 0xe58ba8c,1, 0xe58ba94,1, 0xe58ba9c,2, 0xe58bac0,1, 0xe58bc00,10, 0xe58bc40,1, 0xe58bc50,3, 0xe58bc80,10, 0xe58bcc0,12, 0xe58bd00,3, 0xe58be00,1, 0xe58c000,20, 0xe58c080,3, 0xe58c090,1, 0xe58c098,4, 0xe590000,49, 0xe590100,12, 0xe590140,4, 0xe590184,1, 0xe590198,2, 0xe5901a4,1, 0xe5901b8,7, 0xe5901e0,4, 0xe590200,20, 0xe590280,3, 0xe590290,9, 0xe5902c0,6, 0xe5902e0,1, 0xe5902e8,7, 0xe590400,49, 0xe590500,12, 0xe590540,4, 0xe590584,1, 0xe590598,2, 0xe5905a4,1, 0xe5905b8,7, 0xe5905e0,4, 0xe590600,20, 0xe590680,3, 0xe590690,9, 0xe5906c0,6, 0xe5906e0,1, 0xe5906e8,7, 0xe590800,49, 0xe590900,12, 0xe590940,4, 0xe590984,1, 0xe590998,2, 0xe5909a4,1, 0xe5909b8,7, 0xe5909e0,4, 0xe590a00,20, 0xe590a80,3, 0xe590a90,9, 0xe590ac0,6, 0xe590ae0,1, 0xe590ae8,7, 0xe590c00,49, 0xe590d00,12, 0xe590d40,4, 0xe590d84,1, 0xe590d98,2, 0xe590da4,1, 0xe590db8,7, 0xe590de0,4, 0xe590e00,20, 0xe590e80,3, 0xe590e90,9, 0xe590ec0,6, 0xe590ee0,1, 0xe590ee8,7, 0xe591000,49, 0xe591100,12, 0xe591140,4, 0xe591184,1, 0xe591198,2, 0xe5911a4,1, 0xe5911b8,7, 0xe5911e0,4, 0xe591200,20, 0xe591280,3, 0xe591290,9, 0xe5912c0,6, 0xe5912e0,1, 0xe5912e8,7, 0xe591400,49, 0xe591500,12, 0xe591540,4, 0xe591584,1, 0xe591598,2, 0xe5915a4,1, 0xe5915b8,7, 0xe5915e0,4, 0xe591600,20, 0xe591680,3, 0xe591690,9, 0xe5916c0,6, 0xe5916e0,1, 0xe5916e8,7, 0xe591800,49, 0xe591900,12, 0xe591940,4, 0xe591984,1, 0xe591998,2, 0xe5919a4,1, 0xe5919b8,7, 0xe5919e0,4, 0xe591a00,20, 0xe591a80,3, 0xe591a90,9, 0xe591ac0,6, 0xe591ae0,1, 0xe591ae8,7, 0xe592000,20, 0xe592080,10, 0xe592100,20, 0xe592180,10, 0xe592200,12, 0xe592400,20, 0xe592480,10, 0xe592500,20, 0xe592580,10, 0xe592600,12, 0xe592800,3, 0xe592840,12, 0xe592880,12, 0xe5928c0,12, 0xe592900,12, 0xe592940,12, 0xe592980,12, 0xe5929c0,12, 0xe592a00,12, 0xe592c00,12, 0xe592c40,7, 0xe592c60,10, 0xe593004,1, 0xe593044,43, 0xe593100,7, 0xe593120,7, 0xe593140,2, 0xe59314c,2, 0xe593160,2, 0xe59316c,2, 0xe593180,18, 0xe593200,2, 0xe593220,10, 0xe593260,20, 0xe5932c0,9, 0xe593300,15, 0xe593340,9, 0xe593380,6, 0xe5933a0,4, 0xe593400,5, 0xe594000,53, 0xe594100,3, 0xe594110,15, 0xe594200,53, 0xe594300,3, 0xe594310,15, 0xe594400,5, 0xe594420,5, 0xe594440,18, 0xe594800,3, 0xe594810,2, 0xe594820,3, 0xe594830,2, 0xe594840,1, 0xe595000,7, 0xe595020,7, 0xe595080,19, 0xe595100,19, 0xe595180,25, 0xe595200,20, 0xe595280,20, 0xe595300,8, 0xe595340,4, 0xe595380,15, 0xe5953c0,15, 0xe595400,9, 0xe595430,5, 0xe596000,6, 0xe596020,1, 0xe596028,2, 0xe596040,11, 0xe596070,2, 0xe598000,82, 0xe598200,2, 0xe598240,9, 0xe598280,7, 0xe598400,82, 0xe598604,6, 0xe598700,15, 0xe598740,9, 0xe598780,6, 0xe5987a0,6, 0xe598800,2, 0xe598810,3, 0xe598880,24, 0xe5988e4,1, 0xe5988f0,12, 0xe5a0000,22, 0xe5a0080,22, 0xe5a0100,5, 0xe5a0120,5, 0xe5a0140,3, 0xe5a0160,16, 0xe5a01c0,7, 0xe5a01e0,2, 0xe5a0200,7, 0xe5a0220,2, 0xe5a0400,15, 0xe5a0440,3, 0xe5a0450,3, 0xe5a0460,24, 0xe5a0500,15, 0xe5a0540,3, 0xe5a0550,3, 0xe5a0560,24, 0xe5a0600,15, 0xe5a0640,3, 0xe5a0650,3, 0xe5a0660,24, 0xe5a0700,15, 0xe5a0740,3, 0xe5a0750,3, 0xe5a0760,24, 0xe5a0800,4, 0xe5a0820,16, 0xe5a0880,10, 0xe5a08c0,10, 0xe5a0900,6, 0xe5a0920,6, 0xe5a0940,4, 0xe5a0980,13, 0xe5a09c0,13, 0xe5a0a00,9, 0xe5a1000,86, 0xe5a1200,2, 0xe5a1240,9, 0xe5a1280,7, 0xe5a1400,86, 0xe5a1604,6, 0xe5a1800,86, 0xe5a1a00,2, 0xe5a1a40,9, 0xe5a1a80,7, 0xe5a1c00,86, 0xe5a1e04,6, 0xe5a2000,15, 0xe5a2040,4, 0xe5a2060,17, 0xe5a20c0,6, 0xe5a20e0,4, 0xe5a20f4,11, 0xe5a2128,38, 0xe5a21c4,2, 0xe5a21d0,4, 0xe5a2200,1, 0xe5a4000,22, 0xe5a4080,22, 0xe5a4100,5, 0xe5a4120,5, 0xe5a4140,3, 0xe5a4160,16, 0xe5a41c0,7, 0xe5a41e0,2, 0xe5a4200,7, 0xe5a4220,2, 0xe5a4400,15, 0xe5a4440,3, 0xe5a4450,3, 0xe5a4460,24, 0xe5a4500,15, 0xe5a4540,3, 0xe5a4550,3, 0xe5a4560,24, 0xe5a4600,15, 0xe5a4640,3, 0xe5a4650,3, 0xe5a4660,24, 0xe5a4700,15, 0xe5a4740,3, 0xe5a4750,3, 0xe5a4760,24, 0xe5a4800,4, 0xe5a4820,16, 0xe5a4880,10, 0xe5a48c0,10, 0xe5a4900,6, 0xe5a4920,6, 0xe5a4940,4, 0xe5a4980,13, 0xe5a49c0,13, 0xe5a4a00,9, 0xe5a5000,86, 0xe5a5200,2, 0xe5a5240,9, 0xe5a5280,7, 0xe5a5400,86, 0xe5a5604,6, 0xe5a5800,86, 0xe5a5a00,2, 0xe5a5a40,9, 0xe5a5a80,7, 0xe5a5c00,86, 0xe5a5e04,6, 0xe5a6000,15, 0xe5a6040,4, 0xe5a6060,17, 0xe5a60c0,6, 0xe5a60e0,4, 0xe5a60f4,11, 0xe5a6128,38, 0xe5a61c4,2, 0xe5a61d0,4, 0xe5a6200,1, 0xe5a8000,9, 0xe5a8040,9, 0xe5a8080,5, 0xe5a8100,21, 0xe5a8160,5, 0xe5a8180,45, 0xe5a8240,13, 0xe5a8280,9, 0xe5a8400,9, 0xe5a8440,9, 0xe5a8480,5, 0xe5a8500,21, 0xe5a8560,5, 0xe5a8580,45, 0xe5a8640,13, 0xe5a8680,9, 0xe5a8800,12, 0xe5a8900,15, 0xe5a8940,4, 0xe5a8960,17, 0xe5a89c0,6, 0xe5a89e0,4, 0xe5a89f4,29, 0xe5ac000,30, 0xe5ac080,3, 0xe5ac090,19, 0xe5ac100,30, 0xe5ac180,3, 0xe5ac190,19, 0xe5ac200,30, 0xe5ac280,3, 0xe5ac290,19, 0xe5ac300,30, 0xe5ac380,3, 0xe5ac390,19, 0xe5ac400,30, 0xe5ac480,3, 0xe5ac490,19, 0xe5ac500,30, 0xe5ac580,3, 0xe5ac590,19, 0xe5ac600,30, 0xe5ac680,3, 0xe5ac690,19, 0xe5ac700,30, 0xe5ac780,3, 0xe5ac790,19, 0xe5ac800,12, 0xe5ac844,1, 0xe5ac854,8, 0xe5ac880,7, 0xe5ac8a0,2, 0xe5ac8ac,2, 0xe5ac8c0,26, 0xe5ac980,4, 0xe5ac9a0,5, 0xe5ac9c0,1, 0xe5ad000,3, 0xe5ad010,3, 0xe5ad020,3, 0xe5ad030,3, 0xe5ad040,3, 0xe5ad050,3, 0xe5ad060,3, 0xe5ad070,3, 0xe5ad080,6, 0xe5ad0a0,6, 0xe5ad0c0,6, 0xe5ad0e0,6, 0xe5ad100,6, 0xe5ad120,6, 0xe5ad140,6, 0xe5ad160,6, 0xe5ad200,68, 0xe5ad400,1, 0xe5ad804,1, 0xe5ad844,54, 0xe5ada00,12, 0xe5ada40,12, 0xe5ada80,12, 0xe5adac0,12, 0xe5adb00,12, 0xe5adb40,12, 0xe5adb80,12, 0xe5adbc0,12, 0xe5adc00,28, 0xe5adc80,10, 0xe5ae000,3, 0xe5ae020,6, 0xe5ae040,6, 0xe5ae060,15, 0xe5ae100,26, 0xe5ae180,15, 0xe5ae200,15, 0xe5ae240,4, 0xe5ae260,17, 0xe5ae2c0,6, 0xe5ae2e0,4, 0xe5ae2f4,18, 0xe5ae340,4, 0xe5ae360,17, 0xe5ae3c0,6, 0xe5ae3e0,4, 0xe5ae3f4,15, 0xe5b0000,1, 0xe5b1000,1020, 0xe5b2000,194, 0xe5b3000,1020, 0xe5b4000,1020, 0xe5b5000,1020, 0xe5b6000,1020, 0xe5b7000,1020, 0xe5b8000,1020, 0xe5b9000,1020, 0xe5ba000,1020, 0xe5bb000,194, 0xe5bc000,3, 0xe5bc010,13, 0xe5bc080,16, 0xe5bc100,20, 0xe5bc184,1, 0xe5bc18c,4, 0xe5bc200,3, 0xe5bc210,13, 0xe5bc280,16, 0xe5bc300,20, 0xe5bc384,1, 0xe5bc38c,4, 0xe5bc400,3, 0xe5bc410,13, 0xe5bc480,16, 0xe5bc500,20, 0xe5bc584,1, 0xe5bc58c,4, 0xe5bc600,3, 0xe5bc610,13, 0xe5bc680,16, 0xe5bc700,20, 0xe5bc784,1, 0xe5bc78c,4, 0xe5bc800,3, 0xe5bc810,13, 0xe5bc880,16, 0xe5bc900,20, 0xe5bc984,1, 0xe5bc98c,4, 0xe5bca00,3, 0xe5bca10,13, 0xe5bca80,16, 0xe5bcb00,20, 0xe5bcb84,1, 0xe5bcb8c,4, 0xe5bcc00,3, 0xe5bcc10,13, 0xe5bcc80,16, 0xe5bcd00,20, 0xe5bcd84,1, 0xe5bcd8c,4, 0xe5bce00,3, 0xe5bce10,13, 0xe5bce80,16, 0xe5bcf00,20, 0xe5bcf84,1, 0xe5bcf8c,4, 0xe5bd000,3, 0xe5bd010,13, 0xe5bd080,16, 0xe5bd100,20, 0xe5bd184,1, 0xe5bd18c,4, 0xe5bd200,18, 0xe5bd250,2, 0xe5bd260,4, 0xe5be000,1, 0xe5be014,1, 0xe5be01c,19, 0xe5be080,1, 0xe5be094,1, 0xe5be09c,19, 0xe5be100,8, 0xe5be200,13, 0xe5be240,9, 0xe5be280,12, 0xe5be2c0,2, 0xe5be2e0,12, 0xe5c0000,3, 0xe5c0080,20, 0xe5c0100,10, 0xe5c0140,1, 0xe5c0154,1, 0xe5c015c,2, 0xe5c0200,15, 0xe5c0240,4, 0xe5c0260,17, 0xe5c02c0,6, 0xe5c02e0,2, 0xe5c02ec,3, 0xe5c0300,8, 0xe5c0324,1, 0xe5c0400,4, 0xe5c0440,20, 0xe5c04c0,9, 0xe5c0500,33, 0xe5c0600,11, 0xe5c0640,11, 0xe5c0680,1, 0xe5c2000,1, 0xe5c2200,4, 0xe5c2300,53, 0xe5c2400,4, 0xe5c2500,40, 0xe5c2600,15, 0xe5c2640,4, 0xe5c2660,17, 0xe5c26c0,6, 0xe5c26e0,2, 0xe5c26ec,3, 0xe5c2700,8, 0xe5c2724,1, 0xe5c2800,20, 0xe5c2c00,53, 0xe5c2d00,53, 0xe5c2e00,1, 0xe5c3000,40, 0xe5c3100,40, 0xe5c3200,1, 0xe5c3400,1, 0xe5c3804,1, 0xe5c3844,39, 0xe5c3900,3, 0xe5c3a00,3, 0xe5c3a44,1, 0xe5c3a50,4, 0xe5c3a80,1, 0xe5c4000,2, 0xe5c4200,27, 0xe5c4280,4, 0xe5c42c0,25, 0xe5c4340,6, 0xe5c4360,2, 0xe5c436c,3, 0xe5c4380,8, 0xe5c43a4,1, 0xe5c4400,12, 0xe5c4440,1, 0xe5c8000,3, 0xe5c8080,20, 0xe5c8100,10, 0xe5c8140,1, 0xe5c8154,1, 0xe5c815c,2, 0xe5c8200,15, 0xe5c8240,4, 0xe5c8260,17, 0xe5c82c0,6, 0xe5c82e0,2, 0xe5c82ec,3, 0xe5c8300,8, 0xe5c8324,1, 0xe5c8400,4, 0xe5c8440,20, 0xe5c84c0,9, 0xe5c8500,33, 0xe5c8600,11, 0xe5c8640,11, 0xe5c8680,1, 0xe5ca000,1, 0xe5ca200,4, 0xe5ca300,53, 0xe5ca400,4, 0xe5ca500,40, 0xe5ca600,15, 0xe5ca640,4, 0xe5ca660,17, 0xe5ca6c0,6, 0xe5ca6e0,2, 0xe5ca6ec,3, 0xe5ca700,8, 0xe5ca724,1, 0xe5ca800,20, 0xe5cac00,53, 0xe5cad00,53, 0xe5cae00,1, 0xe5cb000,40, 0xe5cb100,40, 0xe5cb200,1, 0xe5cb400,1, 0xe5cb804,1, 0xe5cb844,39, 0xe5cb900,3, 0xe5cba00,3, 0xe5cba44,1, 0xe5cba50,4, 0xe5cba80,1, 0xe5cc000,2, 0xe5cc200,27, 0xe5cc280,4, 0xe5cc2c0,25, 0xe5cc340,6, 0xe5cc360,2, 0xe5cc36c,3, 0xe5cc380,8, 0xe5cc3a4,1, 0xe5cc400,12, 0xe5cc440,1, 0xe5d0000,4, 0xe5d0020,3, 0xe5d0030,2, 0xe5d0200,1, 0xe5d0224,10, 0xe5d0250,5, 0xe5d0280,1, 0xe5d0288,24, 0xe5d0300,3, 0xe5d0404,1, 0xe5d0414,5, 0xe5d0500,36, 0xe5d0600,3, 0xe5d0800,2, 0xe5d1000,1, 0xe5d1008,21, 0xe5d1080,1, 0xe5d1088,21, 0xe5d1100,1, 0xe5d1108,21, 0xe5d1180,1, 0xe5d1188,21, 0xe5d1200,1, 0xe5d1208,21, 0xe5d1280,1, 0xe5d1288,21, 0xe5d1300,1, 0xe5d1308,21, 0xe5d1380,1, 0xe5d1388,21, 0xe5d1400,21, 0xe5d1800,142, 0xe5d1c00,1, 0xe5d2000,4, 0xe5d2100,39, 0xe5d2200,3, 0xe5d2214,3, 0xe5d4004,1, 0xe5d4020,16, 0xe5d4080,2, 0xe5d4094,1, 0xe5d409c,2, 0xe5d40c0,6, 0xe5d4100,8, 0xe5d8004,17, 0xe5d8054,1, 0xe5d805c,2, 0xe5d8080,1, 0xe5d80a0,2, 0xe5d80b4,4, 0xe5d8100,2, 0xe5d8200,8, 0xe5d8400,1, 0xe5d8600,27, 0xe5d8680,4, 0xe5d86c0,25, 0xe5d8740,6, 0xe5d8760,2, 0xe5d876c,3, 0xe5d8780,8, 0xe5d87a4,3, 0xe5d8800,44, 0xe5d8900,1, 0xe5e0000,1, 0xe5e0200,27, 0xe5e0280,4, 0xe5e02c0,25, 0xe5e0340,6, 0xe5e0360,2, 0xe5e036c,3, 0xe5e0380,8, 0xe5e03a4,1, 0xe5e0400,20, 0xe5e0480,3, 0xe5e0490,9, 0xe802000,49, 0xe802100,12, 0xe802140,4, 0xe802184,1, 0xe802198,2, 0xe8021a4,1, 0xe8021b8,7, 0xe8021e0,4, 0xe802200,20, 0xe802280,3, 0xe802290,9, 0xe8022c0,6, 0xe8022e0,1, 0xe8022e8,7, 0xe802400,49, 0xe802500,12, 0xe802540,4, 0xe802584,1, 0xe802598,2, 0xe8025a4,1, 0xe8025b8,7, 0xe8025e0,4, 0xe802600,20, 0xe802680,3, 0xe802690,9, 0xe8026c0,6, 0xe8026e0,1, 0xe8026e8,7, 0xe802800,7, 0xe802820,3, 0xe802830,11, 0xe802860,14, 0xe802900,9, 0xe802a00,7, 0xe802a20,9, 0xe802a80,2, 0xe802c00,27, 0xe802c80,9, 0xe802cc0,6, 0xe802ce0,4, 0xe802d00,5, 0xe802d18,5, 0xe802d30,9, 0xe802d58,5, 0xe802d70,7, 0xe802e00,6, 0xe802e20,6, 0xe802e40,6, 0xe802e60,6, 0xe802e80,6, 0xe802ea0,6, 0xe802ec0,6, 0xe802ee0,6, 0xe802f00,6, 0xe802f20,6, 0xe802f40,6, 0xe802f60,6, 0xe802f80,6, 0xe802fa0,6, 0xe802fc0,6, 0xe802fe0,6, 0xe803000,28, 0xe803080,6, 0xe840000,3, 0xe84001c,6, 0xe840080,3, 0xe840090,1, 0xe8400d0,3, 0xe8400e4,25, 0xe84014c,21, 0xe8401a4,12, 0xe8401d8,72, 0xe840304,5, 0xe84031c,98, 0xe8404ac,4, 0xe8404c8,20, 0xe840520,56, 0xe840608,21, 0xe840664,3, 0xe840674,22, 0xe840710,1, 0xe840750,3, 0xe840764,25, 0xe8407cc,21, 0xe840824,12, 0xe840858,72, 0xe840984,5, 0xe84099c,98, 0xe840b2c,4, 0xe840b48,20, 0xe840ba0,56, 0xe840c88,21, 0xe840ce4,3, 0xe840cf4,22, 0xe840d90,1, 0xe840dd0,3, 0xe840de4,25, 0xe840e4c,21, 0xe840ea4,12, 0xe840ed8,72, 0xe841004,5, 0xe84101c,98, 0xe8411ac,4, 0xe8411c8,20, 0xe841220,56, 0xe841308,21, 0xe841364,3, 0xe841374,22, 0xe841410,1, 0xe841450,3, 0xe841464,25, 0xe8414cc,21, 0xe841524,12, 0xe841558,72, 0xe841684,5, 0xe84169c,98, 0xe84182c,4, 0xe841848,20, 0xe8418a0,56, 0xe841988,21, 0xe8419e4,3, 0xe8419f4,22, 0xe841a90,1, 0xe841ad0,3, 0xe841ae4,25, 0xe841b4c,21, 0xe841ba4,12, 0xe841bd8,72, 0xe841d04,5, 0xe841d1c,98, 0xe841eac,4, 0xe841ec8,20, 0xe841f20,56, 0xe842008,21, 0xe842064,3, 0xe842074,22, 0xe842110,1, 0xe842150,3, 0xe842164,25, 0xe8421cc,21, 0xe842224,12, 0xe842258,72, 0xe842384,5, 0xe84239c,98, 0xe84252c,4, 0xe842548,20, 0xe8425a0,56, 0xe842688,21, 0xe8426e4,3, 0xe8426f4,22, 0xe842790,1, 0xe8427d0,3, 0xe8427e4,25, 0xe84284c,21, 0xe8428a4,12, 0xe8428d8,72, 0xe842a04,5, 0xe842a1c,98, 0xe842bac,4, 0xe842bc8,20, 0xe842c20,56, 0xe842d08,21, 0xe842d64,3, 0xe842d74,22, 0xe842e10,1, 0xe842e50,3, 0xe842e64,25, 0xe842ecc,21, 0xe842f24,12, 0xe842f58,72, 0xe843084,5, 0xe84309c,98, 0xe84322c,4, 0xe843248,20, 0xe8432a0,56, 0xe843388,21, 0xe8433e4,3, 0xe8433f4,22, 0xe843490,1, 0xe8434d0,3, 0xe8434e4,25, 0xe84354c,21, 0xe8435a4,12, 0xe8435d8,72, 0xe843704,5, 0xe84371c,98, 0xe8438ac,4, 0xe8438c8,20, 0xe843920,56, 0xe843a08,21, 0xe843a64,3, 0xe843a74,22, 0xe843b10,1, 0xe843b50,3, 0xe843b64,25, 0xe843bcc,21, 0xe843c24,12, 0xe843c58,72, 0xe843d84,5, 0xe843d9c,98, 0xe843f2c,4, 0xe843f48,20, 0xe843fa0,56, 0xe844088,21, 0xe8440e4,3, 0xe8440f4,22, 0xe844190,1, 0xe8441d0,3, 0xe8441e4,25, 0xe84424c,21, 0xe8442a4,12, 0xe8442d8,72, 0xe844404,5, 0xe84441c,98, 0xe8445ac,4, 0xe8445c8,20, 0xe844620,56, 0xe844708,21, 0xe844764,3, 0xe844774,22, 0xe844810,1, 0xe844850,3, 0xe844864,25, 0xe8448cc,21, 0xe844924,12, 0xe844958,72, 0xe844a84,5, 0xe844a9c,98, 0xe844c2c,4, 0xe844c48,20, 0xe844ca0,56, 0xe844d88,21, 0xe844de4,3, 0xe844df4,22, 0xe844e90,1, 0xe844ed0,3, 0xe844ee4,25, 0xe844f4c,21, 0xe844fa4,12, 0xe844fd8,72, 0xe845104,5, 0xe84511c,98, 0xe8452ac,4, 0xe8452c8,20, 0xe845320,56, 0xe845408,21, 0xe845464,3, 0xe845474,22, 0xe845510,1, 0xe845550,3, 0xe845564,25, 0xe8455cc,21, 0xe845624,12, 0xe845658,72, 0xe845784,5, 0xe84579c,98, 0xe84592c,4, 0xe845948,20, 0xe8459a0,56, 0xe845a88,21, 0xe845ae4,3, 0xe845af4,22, 0xe845b90,1, 0xe845bd0,3, 0xe845be4,25, 0xe845c4c,21, 0xe845ca4,12, 0xe845cd8,72, 0xe845e04,5, 0xe845e1c,98, 0xe845fac,4, 0xe845fc8,20, 0xe846020,56, 0xe846108,21, 0xe846164,3, 0xe846174,22, 0xe846210,1, 0xe846250,3, 0xe846264,25, 0xe8462cc,21, 0xe846324,12, 0xe846358,72, 0xe846484,5, 0xe84649c,98, 0xe84662c,4, 0xe846648,20, 0xe8466a0,56, 0xe846788,21, 0xe8467e4,3, 0xe8467f4,22, 0xe846890,1, 0xe8468d0,3, 0xe8468e4,25, 0xe84694c,21, 0xe8469a4,12, 0xe8469d8,72, 0xe846b04,5, 0xe846b1c,98, 0xe846cac,4, 0xe846cc8,20, 0xe846d20,56, 0xe846e08,21, 0xe846e64,3, 0xe846e74,22, 0xe846f10,1, 0xe846f50,3, 0xe846f64,25, 0xe846fcc,21, 0xe847024,12, 0xe847058,72, 0xe847184,5, 0xe84719c,98, 0xe84732c,4, 0xe847348,20, 0xe8473a0,56, 0xe847488,21, 0xe8474e4,3, 0xe8474f4,22, 0xe847590,1, 0xe8475d0,3, 0xe8475e4,25, 0xe84764c,21, 0xe8476a4,12, 0xe8476d8,72, 0xe847804,5, 0xe84781c,98, 0xe8479ac,4, 0xe8479c8,20, 0xe847a20,56, 0xe847b08,21, 0xe847b64,3, 0xe847b74,22, 0xe847c10,1, 0xe847c50,3, 0xe847c64,25, 0xe847ccc,21, 0xe847d24,12, 0xe847d58,72, 0xe847e84,5, 0xe847e9c,98, 0xe84802c,4, 0xe848048,20, 0xe8480a0,56, 0xe848188,21, 0xe8481e4,3, 0xe8481f4,22, 0xe848290,1, 0xe8482d0,3, 0xe8482e4,25, 0xe84834c,21, 0xe8483a4,12, 0xe8483d8,72, 0xe848504,5, 0xe84851c,98, 0xe8486ac,4, 0xe8486c8,20, 0xe848720,56, 0xe848808,21, 0xe848864,3, 0xe848874,22, 0xe848910,1, 0xe848950,3, 0xe848964,25, 0xe8489cc,21, 0xe848a24,12, 0xe848a58,72, 0xe848b84,5, 0xe848b9c,98, 0xe848d2c,4, 0xe848d48,20, 0xe848da0,56, 0xe848e88,21, 0xe848ee4,3, 0xe848ef4,22, 0xe848f90,1, 0xe848fd0,3, 0xe848fe4,25, 0xe84904c,21, 0xe8490a4,12, 0xe8490d8,72, 0xe849204,5, 0xe84921c,98, 0xe8493ac,4, 0xe8493c8,20, 0xe849420,56, 0xe849508,21, 0xe849564,3, 0xe849574,22, 0xe849610,1, 0xe849650,3, 0xe849664,25, 0xe8496cc,21, 0xe849724,12, 0xe849758,72, 0xe849884,5, 0xe84989c,98, 0xe849a2c,4, 0xe849a48,20, 0xe849aa0,56, 0xe849b88,21, 0xe849be4,3, 0xe849bf4,22, 0xe849c90,1, 0xe849cd0,3, 0xe849ce4,25, 0xe849d4c,21, 0xe849da4,12, 0xe849dd8,72, 0xe849f04,5, 0xe849f1c,98, 0xe84a0ac,4, 0xe84a0c8,20, 0xe84a120,56, 0xe84a208,21, 0xe84a264,3, 0xe84a274,22, 0xe84a310,1, 0xe84a350,3, 0xe84a364,25, 0xe84a3cc,21, 0xe84a424,12, 0xe84a458,72, 0xe84a584,5, 0xe84a59c,98, 0xe84a72c,4, 0xe84a748,20, 0xe84a7a0,56, 0xe84a888,21, 0xe84a8e4,3, 0xe84a8f4,22, 0xe84a990,1, 0xe84a9d0,3, 0xe84a9e4,25, 0xe84aa4c,21, 0xe84aaa4,12, 0xe84aad8,72, 0xe84ac04,5, 0xe84ac1c,98, 0xe84adac,4, 0xe84adc8,20, 0xe84ae20,56, 0xe84af08,21, 0xe84af64,3, 0xe84af74,22, 0xe84b010,1, 0xe84b050,3, 0xe84b064,25, 0xe84b0cc,21, 0xe84b124,12, 0xe84b158,72, 0xe84b284,5, 0xe84b29c,98, 0xe84b42c,4, 0xe84b448,20, 0xe84b4a0,56, 0xe84b588,21, 0xe84b5e4,3, 0xe84b5f4,22, 0xe84b690,1, 0xe84b6d0,3, 0xe84b6e4,25, 0xe84b74c,21, 0xe84b7a4,12, 0xe84b7d8,72, 0xe84b904,5, 0xe84b91c,98, 0xe84baac,4, 0xe84bac8,20, 0xe84bb20,56, 0xe84bc08,21, 0xe84bc64,3, 0xe84bc74,22, 0xe84bd10,1, 0xe84bd50,3, 0xe84bd64,25, 0xe84bdcc,21, 0xe84be24,12, 0xe84be58,72, 0xe84bf84,5, 0xe84bf9c,98, 0xe84c12c,4, 0xe84c148,20, 0xe84c1a0,56, 0xe84c288,21, 0xe84c2e4,3, 0xe84c2f4,22, 0xe84c390,1, 0xe84c3d0,3, 0xe84c3e4,25, 0xe84c44c,21, 0xe84c4a4,12, 0xe84c4d8,72, 0xe84c604,5, 0xe84c61c,98, 0xe84c7ac,4, 0xe84c7c8,20, 0xe84c820,56, 0xe84c908,21, 0xe84c964,3, 0xe84c974,22, 0xe84ca10,1, 0xe84ca50,3, 0xe84ca64,25, 0xe84cacc,21, 0xe84cb24,12, 0xe84cb58,72, 0xe84cc84,5, 0xe84cc9c,98, 0xe84ce2c,4, 0xe84ce48,20, 0xe84cea0,56, 0xe84cf88,21, 0xe84cfe4,3, 0xe84cff4,22, 0xe84d090,1, 0xe84d0d0,3, 0xe84d0e4,25, 0xe84d14c,21, 0xe84d1a4,12, 0xe84d1d8,72, 0xe84d304,5, 0xe84d31c,98, 0xe84d4ac,4, 0xe84d4c8,20, 0xe84d520,56, 0xe84d608,21, 0xe84d664,3, 0xe84d674,22, 0xe84d710,1, 0xe84d750,3, 0xe84d764,25, 0xe84d7cc,21, 0xe84d824,12, 0xe84d858,72, 0xe84d984,5, 0xe84d99c,98, 0xe84db2c,4, 0xe84db48,20, 0xe84dba0,56, 0xe84dc88,21, 0xe84dce4,3, 0xe84dcf4,22, 0xe84dd90,1, 0xe84ddd0,3, 0xe84dde4,25, 0xe84de4c,21, 0xe84dea4,12, 0xe84ded8,72, 0xe84e004,5, 0xe84e01c,98, 0xe84e1ac,4, 0xe84e1c8,20, 0xe84e220,56, 0xe84e308,21, 0xe84e364,3, 0xe84e374,22, 0xe84e410,2, 0xe84e454,72, 0xe84e760,3, 0xe84e7ac,42, 0xe84e85c,31, 0xe84e990,54, 0xe84ea70,58, 0xe84eb60,58, 0xe84ec50,58, 0xe84ed40,58, 0xe84ee30,58, 0xe84ef20,58, 0xe84f010,58, 0xe84f100,58, 0xe84f1f0,58, 0xe84f2e0,58, 0xe84f3d0,58, 0xe84f4c0,58, 0xe84f5b0,58, 0xe84f6a0,58, 0xe84f790,58, 0xe84f880,58, 0xe84f970,58, 0xe84fa60,58, 0xe84fb50,58, 0xe84fc40,58, 0xe84fd30,58, 0xe84fe20,58, 0xe84ff10,58, 0xe850000,58, 0xe8500f0,58, 0xe8501e0,58, 0xe8502d0,58, 0xe8503c0,58, 0xe8504b0,58, 0xe8505a0,58, 0xe850690,58, 0xe850780,101, 0xe850990,49, 0xe850a90,18, 0xe850ae0,11, 0xe850b10,4, 0xe850b34,45, 0xe850c38,9, 0xe850c68,4, 0xe850c80,2, 0xe850cb8,14, 0xe850cf4,12, 0xe850e38,3, 0xe850e48,2, 0xe850e54,68, 0xe850f68,2, 0xe850f74,68, 0xe851088,1, 0xe851090,2, 0xe85109c,68, 0xe8511b0,2, 0xe8511bc,68, 0xe8512d0,1, 0xe8512d8,4, 0xe8512f0,3, 0xe851304,4, 0xe851318,7, 0xe851368,8, 0xe8513bc,1, 0xe8513c8,4, 0xe8513e0,3, 0xe8513f4,4, 0xe851408,7, 0xe851458,8, 0xe8514ac,1, 0xe8514b8,4, 0xe8514d0,3, 0xe8514e4,4, 0xe8514f8,7, 0xe851548,8, 0xe85159c,1, 0xe8515a8,4, 0xe8515c0,3, 0xe8515d4,4, 0xe8515e8,7, 0xe851638,8, 0xe85168c,1, 0xe851698,4, 0xe8516b0,3, 0xe8516c4,4, 0xe8516d8,7, 0xe851728,8, 0xe85177c,1, 0xe851788,4, 0xe8517a0,3, 0xe8517b4,4, 0xe8517c8,7, 0xe851818,8, 0xe85186c,1, 0xe851878,4, 0xe851890,3, 0xe8518a4,4, 0xe8518b8,7, 0xe851908,8, 0xe85195c,1, 0xe851968,4, 0xe851980,3, 0xe851994,4, 0xe8519a8,7, 0xe8519f8,8, 0xe851a4c,1, 0xe851a58,4, 0xe851a70,3, 0xe851a84,4, 0xe851a98,7, 0xe851ae8,8, 0xe851b3c,1, 0xe851b48,4, 0xe851b60,3, 0xe851b74,4, 0xe851b88,7, 0xe851bd8,8, 0xe851c2c,1, 0xe851c38,4, 0xe851c50,3, 0xe851c64,4, 0xe851c78,7, 0xe851cc8,8, 0xe851d1c,1, 0xe851d28,4, 0xe851d40,3, 0xe851d54,4, 0xe851d68,7, 0xe851db8,8, 0xe851e0c,1, 0xe851e18,4, 0xe851e30,3, 0xe851e44,4, 0xe851e58,7, 0xe851ea8,8, 0xe851efc,1, 0xe851f08,4, 0xe851f20,3, 0xe851f34,4, 0xe851f48,7, 0xe851f98,8, 0xe851fec,1, 0xe851ff8,4, 0xe852010,3, 0xe852024,4, 0xe852038,7, 0xe852088,8, 0xe8520dc,1, 0xe8520e8,4, 0xe852100,3, 0xe852114,4, 0xe852128,7, 0xe852178,8, 0xe8521cc,1, 0xe8521d8,4, 0xe8521f0,3, 0xe852204,4, 0xe852218,7, 0xe852268,8, 0xe8522bc,1, 0xe8522c8,64, 0xe852428,4, 0xe852678,27, 0xe8526ec,3, 0xe852778,1, 0xe8528c8,11, 0xe8528f8,17, 0xe852940,1, 0xe852948,1, 0xe852950,1, 0xe852978,36, 0xe852a0c,57, 0xe852af4,34, 0xe852b80,57, 0xe852c68,34, 0xe852cf4,57, 0xe852ddc,34, 0xe852e68,57, 0xe852f50,34, 0xe852fdc,57, 0xe8530c4,34, 0xe853150,57, 0xe853238,34, 0xe8532c4,57, 0xe8533ac,34, 0xe853438,57, 0xe853520,34, 0xe8535ac,57, 0xe853694,34, 0xe853720,57, 0xe853808,34, 0xe853894,57, 0xe85397c,34, 0xe853a08,57, 0xe853af0,34, 0xe853b7c,57, 0xe853c64,34, 0xe853cf0,57, 0xe853dd8,34, 0xe853e64,57, 0xe853f4c,34, 0xe853fd8,57, 0xe8540c0,34, 0xe85414c,57, 0xe854234,34, 0xe8542c0,57, 0xe8543a8,34, 0xe854434,57, 0xe85451c,34, 0xe8545a8,57, 0xe854690,34, 0xe85471c,57, 0xe854804,34, 0xe854890,57, 0xe854978,34, 0xe854a04,57, 0xe854aec,34, 0xe854b78,57, 0xe854c60,34, 0xe854cec,57, 0xe854dd4,34, 0xe854e60,57, 0xe854f48,34, 0xe854fd4,57, 0xe8550bc,34, 0xe855148,57, 0xe855230,34, 0xe8552bc,57, 0xe8553a4,34, 0xe855430,57, 0xe855518,34, 0xe8555a4,57, 0xe85568c,34, 0xe855718,57, 0xe855800,34, 0xe85588c,57, 0xe855974,34, 0xe855a00,57, 0xe855ae8,34, 0xe855b74,57, 0xe855d68,18, 0xe855ee8,2131, 0xe85830c,164, 0xe85865c,1, 0xe8591e8,1, 0xe8591f8,225, 0xe859588,7, 0xe8595a8,1, 0xe859670,1, 0xe8596a0,9, 0xe8596c8,17, 0xe859720,49, 0xe8597e8,5, 0xe859858,1, 0xe85a1e8,4, 0xe85a200,9, 0xe85a228,144, 0xe85a528,8, 0xe8a0000,3, 0xe8a0018,2, 0xe8a0024,14, 0xe8a0060,27, 0xe8a00d0,3, 0xe8a00e0,3, 0xe8a00f0,3, 0xe8a0100,14, 0xe8a0140,3, 0xe8a0150,1, 0xe8a015c,4, 0xe8a0170,1, 0xe8a0180,15, 0xe8a01c0,1, 0xe8a01c8,5, 0xe8a01e0,1, 0xe8a01f0,7, 0xe8a0218,2, 0xe8a0224,14, 0xe8a0260,27, 0xe8a02d0,3, 0xe8a02e0,3, 0xe8a02f0,3, 0xe8a0300,14, 0xe8a0340,3, 0xe8a0350,1, 0xe8a035c,4, 0xe8a0370,1, 0xe8a0380,15, 0xe8a03c0,1, 0xe8a03c8,5, 0xe8a03e0,1, 0xe8a03f0,7, 0xe8a0418,2, 0xe8a0424,14, 0xe8a0460,27, 0xe8a04d0,3, 0xe8a04e0,3, 0xe8a04f0,3, 0xe8a0500,14, 0xe8a0540,3, 0xe8a0550,1, 0xe8a055c,4, 0xe8a0570,1, 0xe8a0580,15, 0xe8a05c0,1, 0xe8a05c8,5, 0xe8a05e0,1, 0xe8a05f0,7, 0xe8a0618,2, 0xe8a0624,14, 0xe8a0660,27, 0xe8a06d0,3, 0xe8a06e0,3, 0xe8a06f0,3, 0xe8a0700,14, 0xe8a0740,3, 0xe8a0750,1, 0xe8a075c,4, 0xe8a0770,1, 0xe8a0780,15, 0xe8a07c0,1, 0xe8a07c8,5, 0xe8a07e0,1, 0xe8a07f0,7, 0xe8a0818,2, 0xe8a0824,14, 0xe8a0860,27, 0xe8a08d0,3, 0xe8a08e0,3, 0xe8a08f0,3, 0xe8a0900,14, 0xe8a0940,3, 0xe8a0950,1, 0xe8a095c,4, 0xe8a0970,1, 0xe8a0980,15, 0xe8a09c0,1, 0xe8a09c8,5, 0xe8a09e0,1, 0xe8a09f0,4, 0xe8a1844,1, 0xe8a1850,3, 0xe8a1860,3, 0xe8a1870,7, 0xe8a1894,5, 0xe8a18c0,1, 0xe8a18e0,7, 0xe8a1900,11, 0xe8a1930,3, 0xe8a1980,4, 0xe8a19c0,14, 0xe8a1c00,5, 0xe8a1c18,95, 0xe8a1da0,66, 0xe8a2000,16, 0xe8a2100,36, 0xe8a2200,44, 0xe8a2400,100, 0xe8a2600,45, 0xe8a2700,4, 0xe8a2780,20, 0xe8a2800,2, 0xe8a280c,68, 0xe8a2920,3, 0xe8a2c04,1, 0xe8a2c40,28, 0xe8a2cb4,9, 0xe8a2ce0,7, 0xe8a2d00,7, 0xe8a2d20,7, 0xe8a2d40,7, 0xe8a2d60,7, 0xe8a2d80,7, 0xe8a2da0,7, 0xe8a2dc0,7, 0xe8a2e00,9, 0xe8a2e3c,2, 0xe8a2e50,6, 0xe8a2e84,10, 0xe8a3004,1, 0xe8a31f8,130, 0xe8a3c00,1, 0xe8a3c20,10, 0xe8a3c60,8, 0xe8a3c84,5, 0xe8a3d00,32, 0xe8a3d84,1, 0xe8a3d94,6, 0xe8a3e40,71, 0xe8a4a04,3, 0xe8a4b00,33, 0xe8a4b90,3, 0xe8a4c00,12, 0xe8a4cc0,4, 0xe8a4d00,15, 0xe8a4e00,25, 0xe8a4e84,1, 0xe8a4ea0,13, 0xe8a5000,2, 0xe8a5400,4, 0xe8a5420,8, 0xe8a5444,1, 0xe8a544c,1, 0xe8a5454,1, 0xe8a545c,10, 0xe8a5800,3, 0xe8a5810,3, 0xe8a5820,3, 0xe8a5830,3, 0xe8a5840,3, 0xe8a5850,3, 0xe8a5860,3, 0xe8a5870,3, 0xe8a5880,3, 0xe8a5890,3, 0xe8a58a0,3, 0xe8a58b0,3, 0xe8a58c0,3, 0xe8a58d0,3, 0xe8a58e0,3, 0xe8a58f0,3, 0xe8a5900,3, 0xe8a5910,3, 0xe8a5920,3, 0xe8a5930,3, 0xe8a5940,3, 0xe8a5950,3, 0xe8a5960,3, 0xe8a5970,3, 0xe8a5980,3, 0xe8a5990,3, 0xe8a59a0,3, 0xe8a59b0,3, 0xe8a59c0,3, 0xe8a59d0,3, 0xe8a59e0,3, 0xe8a59f0,3, 0xe8a5a00,3, 0xe8a5a10,3, 0xe8a5a20,3, 0xe8a5a30,3, 0xe8a5a40,3, 0xe8a5a50,3, 0xe8a5a60,3, 0xe8a5a70,3, 0xe8a5a80,3, 0xe8a5a90,3, 0xe8a5aa0,3, 0xe8a5ab0,3, 0xe8a5ac0,3, 0xe8a5ad0,3, 0xe8a5ae0,3, 0xe8a5af0,3, 0xe8a5b00,3, 0xe8a5b10,3, 0xe8a5b20,3, 0xe8a5b30,3, 0xe8a5b40,3, 0xe8a5b50,3, 0xe8a5b60,3, 0xe8a5b70,3, 0xe8a5b80,3, 0xe8a5b90,3, 0xe8a5ba0,3, 0xe8a5bb0,3, 0xe8a5bc0,3, 0xe8a5bd0,3, 0xe8a5be0,3, 0xe8a5bf0,3, 0xe8a5c00,1, 0xe8a5c08,8, 0xe8a5c30,8, 0xe8a5c54,1, 0xe8a5c5c,2, 0xe8a5c68,2, 0xe8a6000,11, 0xe8a6030,1, 0xe8a6080,2, 0xe8a60c4,2, 0xe8a60d0,1, 0xe8a60d8,1, 0xe8a60e0,1, 0xe8a60f4,3, 0xe8a7000,128, 0xe8a7208,256, 0xe8a7610,145, 0xe8a8000,24, 0xe8a8078,1, 0xe8a8080,1, 0xe8f0000,1, 0xe8f000c,12, 0xe8f0040,3, 0xe8f0404,1, 0xe8f0410,6, 0xe8f0440,5, 0xe8f0460,7, 0xe8f0480,7, 0xe8f04a0,7, 0xe8f0520,4, 0xe8f0540,10, 0xe8f0580,10, 0xe8f05c0,3, 0xe8f0600,20, 0xe8f0680,3, 0xe8f0800,5, 0xe8f0a00,29, 0xe8f0a80,3, 0xe8f0c04,1, 0xe8f0d90,188, 0xe8f10a8,8, 0xe8f1100,3, 0xe8f1110,12, 0xe8f1400,1, 0xe8f1480,18, 0xe8f1500,1, 0xe8f1600,2, 0xe8f1610,3, 0xe8f1620,3, 0xe8f1630,3, 0xe8f1640,3, 0xe8f1650,3, 0xe8f1660,3, 0xe8f1670,3, 0xe8f1680,3, 0xe8f1690,3, 0xe8f16a0,3, 0xe8f16b0,3, 0xe8f16c0,3, 0xe8f16d0,3, 0xe8f16e0,3, 0xe8f16f0,3, 0xe8f1700,3, 0xe8f2000,96, 0xe8f2400,2, 0xe8f2410,3, 0xe8f2420,3, 0xe8f2430,3, 0xe8f2440,3, 0xe8f2450,3, 0xe8f2460,3, 0xe8f2470,3, 0xe8f2480,3, 0xe8f2490,3, 0xe8f24a0,3, 0xe8f24b0,3, 0xe8f24c0,3, 0xe8f24d0,3, 0xe8f24e0,3, 0xe8f24f0,3, 0xe8f2500,3, 0xe8f2600,7, 0xe8f2620,3, 0xe8f2630,1, 0xe8f2800,8, 0xe8f2900,2, 0xe8f2910,3, 0xe8f2920,3, 0xe8f2930,3, 0xe8f2940,3, 0xe8f2950,3, 0xe8f2960,3, 0xe8f2970,3, 0xe8f2980,3, 0xe8f2a00,3, 0xe8f3000,15, 0xe8f3040,3, 0xe8f3080,2, 0xe8f30c0,9, 0xe8f3100,1, 0xe8f3200,2, 0xe8f3210,3, 0xe8f3220,3, 0xe8f3230,3, 0xe8f3240,3, 0xe8f3250,3, 0xe8f3260,3, 0xe8f3270,3, 0xe8f3280,3, 0xe8f3300,2, 0xe8f3314,3, 0xe8f3324,3, 0xe8f3334,1, 0xe8f333c,1, 0xe8f3404,1, 0xe8f347c,33, 0xe8f3504,1, 0xe8f350c,1, 0xe8f3580,18, 0xe8f3600,5, 0xe8f3640,9, 0xe8f3680,9, 0xe8f36c0,27, 0xe8f3730,2, 0xe8f3740,9, 0xe8f3780,3, 0xe8f37a0,8, 0xe8f3800,6, 0xe8f3820,7, 0xe8f3840,6, 0xe8f3860,7, 0xe8f3880,3, 0xe8f3890,1, 0xe8f3900,2, 0xe8f4004,1, 0xe8f4080,34, 0xe8f4110,10, 0xe8f413c,3, 0xe8f4204,1, 0xe8f4280,36, 0xe8f4314,1, 0xe8f4400,20, 0xe8f4480,9, 0xe8f4804,1, 0xe8f4880,34, 0xe8f4910,10, 0xe8f493c,3, 0xe8f4a04,1, 0xe8f4a80,36, 0xe8f4b14,1, 0xe8f4c00,20, 0xe8f4c80,9, 0xe8f5004,1, 0xe8f5080,34, 0xe8f5110,10, 0xe8f513c,3, 0xe8f5204,1, 0xe8f5280,36, 0xe8f5314,1, 0xe8f5400,20, 0xe8f5480,9, 0xe8f5800,20, 0xe8f5884,1, 0xe8f588c,1, 0xe8f58c0,12, 0xe8f5900,3, 0xe8f5a00,20, 0xe8f5a84,1, 0xe8f5a8c,1, 0xe8f5ac0,12, 0xe8f5b00,3, 0xe8f5c00,20, 0xe8f5c84,1, 0xe8f5c8c,1, 0xe8f5cc0,12, 0xe8f5d00,3, 0xe8f5e00,7, 0xe8f5e80,20, 0xe8f5f00,12, 0xe8f5f40,11, 0xe8f6004,1, 0xe8f6014,19, 0xe8f6080,5, 0xe8f6100,3, 0xe8f6144,1, 0xe8f6150,4, 0xe8f6180,1, 0xe8f6200,1, 0xe8f6400,2, 0xe8f6410,3, 0xe8f6420,3, 0xe8f6430,3, 0xe8f6440,3, 0xe8f6450,3, 0xe8f6460,3, 0xe8f6470,3, 0xe8f6480,3, 0xe8f6490,3, 0xe8f64a0,3, 0xe8f64b0,3, 0xe8f64c0,3, 0xe8f64d0,3, 0xe8f64e0,3, 0xe8f64f0,3, 0xe8f6500,3, 0xe8f6604,1, 0xe8f6614,3, 0xe8f6640,11, 0xe8f6680,2, 0xe8f6690,3, 0xe8f66a0,3, 0xe8f66c0,9, 0xe8f6700,9, 0xe8f6740,6, 0xe8f6760,16, 0xe8f7000,2, 0xe8f7010,3, 0xe8f7020,3, 0xe8f7030,3, 0xe8f7040,3, 0xe8f7050,3, 0xe8f7060,3, 0xe8f7070,3, 0xe8f7080,3, 0xe8f7090,3, 0xe8f70a0,3, 0xe8f70b0,3, 0xe8f70c0,3, 0xe8f70d0,3, 0xe8f70e0,3, 0xe8f70f0,3, 0xe8f7100,3, 0xe8f7200,10, 0xe8f7404,1, 0xe8f7414,3, 0xe8f7800,153, 0xe900000,6, 0xe900020,3, 0xe900400,6, 0xe900424,1, 0xe900434,5, 0xe900600,128, 0xe900804,1, 0xe900828,86, 0xe900984,1, 0xe900c00,1, 0xe900c80,1, 0xe900c90,2, 0xe900d00,20, 0xe900d80,1, 0xe900da0,5, 0xe900e00,27, 0xe900f00,2, 0xe900f10,4, 0xe901000,7, 0xe980000,36, 0xe980800,10, 0xe980880,6, 0xe980900,2, 0xe980910,4, 0xe980a04,5, 0xe980a20,3, 0xe980a80,1, 0xe981000,36, 0xe981800,10, 0xe981880,6, 0xe9818a0,1, 0xe981900,2, 0xe981910,4, 0xe981a00,1, 0xe982000,36, 0xe982800,10, 0xe982880,6, 0xe9828a0,1, 0xe982900,2, 0xe982910,4, 0xe982a00,1, 0xe983000,36, 0xe983800,10, 0xe983880,6, 0xe9838a0,1, 0xe983900,2, 0xe983910,4, 0xe983a00,1, 0xe984000,36, 0xe984800,10, 0xe984880,6, 0xe9848a0,1, 0xe984900,2, 0xe984910,4, 0xe984a00,1, 0xe985000,36, 0xe985800,10, 0xe985880,6, 0xe9858a0,1, 0xe985900,2, 0xe985910,4, 0xe985a00,1, 0xe986000,36, 0xe986800,10, 0xe986880,6, 0xe9868a0,1, 0xe986900,2, 0xe986910,4, 0xe986a00,1, 0xe987000,36, 0xe987800,10, 0xe987880,6, 0xe9878a0,1, 0xe987900,2, 0xe987910,4, 0xe987a00,1, 0xe988000,36, 0xe988800,10, 0xe988880,6, 0xe9888a0,1, 0xe988900,2, 0xe988910,4, 0xe988a00,1, 0xe989000,36, 0xe989800,10, 0xe989880,6, 0xe9898a0,1, 0xe989900,2, 0xe989910,4, 0xe989a00,1, 0xe98a000,36, 0xe98a800,10, 0xe98a880,6, 0xe98a8a0,1, 0xe98a900,2, 0xe98a910,4, 0xe98aa00,1, 0xe98b000,36, 0xe98b800,10, 0xe98b880,6, 0xe98b8a0,1, 0xe98b900,2, 0xe98b910,4, 0xe98ba00,1, 0xe98c000,36, 0xe98c800,10, 0xe98c880,6, 0xe98c8a0,1, 0xe98c900,2, 0xe98c910,4, 0xe98ca00,1, 0xe98d000,36, 0xe98d800,10, 0xe98d880,6, 0xe98d8a0,1, 0xe98d900,2, 0xe98d910,4, 0xe98da00,1, 0xe98e000,36, 0xe98e800,10, 0xe98e880,6, 0xe98e8a0,1, 0xe98e900,2, 0xe98e910,4, 0xe98ea00,1, 0xe98f000,36, 0xe98f800,10, 0xe98f880,6, 0xe98f8a0,1, 0xe98f900,2, 0xe98f910,4, 0xe98fa00,1, 0xe990000,36, 0xe990800,10, 0xe990880,6, 0xe9908a0,1, 0xe990900,2, 0xe990910,4, 0xe990a00,1, 0xe991000,10, 0xe991080,5, 0xe9910a0,6, 0xe991100,2, 0xe991110,4, 0xe991200,1, 0xe992000,10, 0xe992080,5, 0xe9920a0,6, 0xe992100,2, 0xe992110,4, 0xe992200,1, 0xe993000,10, 0xe993080,5, 0xe9930a0,6, 0xe993100,2, 0xe993110,4, 0xe993200,1, 0xe994000,10, 0xe994080,5, 0xe9940a0,6, 0xe994100,2, 0xe994110,4, 0xe994200,1, 0xe995000,10, 0xe995080,5, 0xe9950a0,6, 0xe995100,2, 0xe995110,4, 0xe995200,1, 0xe996000,10, 0xe996080,5, 0xe9960a0,6, 0xe996100,2, 0xe996110,4, 0xe996200,1, 0xe997000,10, 0xe997080,5, 0xe9970a0,6, 0xe997100,2, 0xe997110,4, 0xe997200,1, 0xe998000,10, 0xe998080,5, 0xe9980a0,6, 0xe998100,2, 0xe998110,4, 0xe998200,1, 0xe999000,20, 0xe999800,10, 0xe999880,6, 0xe999900,2, 0xe999910,4, 0xe999940,2, 0xe999950,4, 0xe999a00,1, 0xe99a000,20, 0xe99a800,10, 0xe99a880,6, 0xe99a900,2, 0xe99a910,4, 0xe99a940,2, 0xe99a950,4, 0xe99aa00,1, 0xe99b000,20, 0xe99b800,10, 0xe99b880,6, 0xe99b900,2, 0xe99b910,4, 0xe99b940,2, 0xe99b950,4, 0xe99ba00,1, 0xe99c000,20, 0xe99c800,10, 0xe99c880,6, 0xe99c900,2, 0xe99c910,4, 0xe99c940,2, 0xe99c950,4, 0xe99ca00,1, 0xe99d000,20, 0xe99d800,10, 0xe99d880,6, 0xe99d900,2, 0xe99d910,4, 0xe99d940,2, 0xe99d950,4, 0xe99da00,1, 0xe99e000,20, 0xe99e800,10, 0xe99e880,6, 0xe99e900,2, 0xe99e910,4, 0xe99e940,2, 0xe99e950,4, 0xe99ea00,1, 0xe99f000,20, 0xe99f800,10, 0xe99f880,6, 0xe99f900,2, 0xe99f910,4, 0xe99f940,2, 0xe99f950,4, 0xe99fa00,1, 0xe9a0000,20, 0xe9a0800,10, 0xe9a0880,6, 0xe9a0900,2, 0xe9a0910,4, 0xe9a0940,2, 0xe9a0950,4, 0xe9a0a00,1, 0xe9a1000,20, 0xe9a1800,10, 0xe9a1880,5, 0xe9a18a0,6, 0xe9a1900,2, 0xe9a1910,4, 0xe9a1a00,1, 0xe9a2000,20, 0xe9a2800,1, 0xe9a3000,20, 0xe9a3800,1, 0xe9a4000,20, 0xe9a4800,10, 0xe9a4880,5, 0xe9a48a0,6, 0xe9a4900,2, 0xe9a4910,4, 0xe9a4a00,1, 0xe9a5000,20, 0xe9a5800,1, 0xe9a6000,20, 0xe9a6800,1, 0xe9a7000,20, 0xe9a7800,10, 0xe9a7880,5, 0xe9a78a0,6, 0xe9a7900,2, 0xe9a7910,4, 0xe9a7a00,1, 0xe9a8000,20, 0xe9a8800,1, 0xe9a9000,20, 0xe9a9800,1, 0xe9aa000,20, 0xe9aa800,10, 0xe9aa880,5, 0xe9aa8a0,6, 0xe9aa900,2, 0xe9aa910,4, 0xe9aaa00,1, 0xe9ab000,20, 0xe9ab800,1, 0xe9ac000,20, 0xe9ac800,1, 0xe9ad000,20, 0xe9ad800,10, 0xe9ad880,5, 0xe9ad8a0,6, 0xe9ad900,2, 0xe9ad910,4, 0xe9ada00,1, 0xe9ae000,20, 0xe9ae800,1, 0xe9af000,20, 0xe9af800,1, 0xe9b0000,20, 0xe9b0800,10, 0xe9b0880,5, 0xe9b08a0,6, 0xe9b0900,2, 0xe9b0910,4, 0xe9b0a00,1, 0xe9b1000,20, 0xe9b1800,1, 0xe9b2000,20, 0xe9b2800,1, 0xe9b3000,20, 0xe9b3800,10, 0xe9b3880,5, 0xe9b38a0,6, 0xe9b3900,2, 0xe9b3910,4, 0xe9b3a00,1, 0xe9b4000,20, 0xe9b4800,1, 0xe9b5000,20, 0xe9b5800,1, 0xe9b6000,20, 0xe9b6800,10, 0xe9b6880,5, 0xe9b68a0,6, 0xe9b6900,2, 0xe9b6910,4, 0xe9b6a00,1, 0xe9b7000,20, 0xe9b7800,1, 0xe9b8000,20, 0xe9b8800,1, 0xe9ba000,20, 0xe9ba800,10, 0xe9ba880,6, 0xe9ba900,2, 0xe9ba910,4, 0xe9baa00,8, 0xe9baa24,1, 0xe9baa40,8, 0xe9baa64,1, 0xe9baa80,8, 0xe9baaa4,1, 0xe9baac0,8, 0xe9baae4,1, 0xe9bab00,1, 0xe9bc000,20, 0xe9bc800,10, 0xe9bc880,6, 0xe9bc900,2, 0xe9bc910,4, 0xe9bca00,8, 0xe9bca24,1, 0xe9bca40,8, 0xe9bca64,1, 0xe9bca80,8, 0xe9bcaa4,1, 0xe9bcac0,8, 0xe9bcae4,1, 0xe9bcb00,1, 0xe9be000,20, 0xe9be800,10, 0xe9be880,6, 0xe9be900,2, 0xe9be910,4, 0xe9bea00,8, 0xe9bea24,1, 0xe9bea40,8, 0xe9bea64,1, 0xe9bea80,8, 0xe9beaa4,1, 0xe9beac0,8, 0xe9beae4,1, 0xe9beb00,1, 0xe9c0000,20, 0xe9c0800,10, 0xe9c0880,6, 0xe9c0900,2, 0xe9c0910,4, 0xe9c0a00,8, 0xe9c0a24,1, 0xe9c0a40,8, 0xe9c0a64,1, 0xe9c0a80,8, 0xe9c0aa4,1, 0xe9c0ac0,8, 0xe9c0ae4,1, 0xe9c0b00,1, 0xe9c2000,20, 0xe9c2800,10, 0xe9c2880,6, 0xe9c2900,2, 0xe9c2910,4, 0xe9c2a00,8, 0xe9c2a24,1, 0xe9c2a40,8, 0xe9c2a64,1, 0xe9c2a80,8, 0xe9c2aa4,1, 0xe9c2ac0,8, 0xe9c2ae4,1, 0xe9c2b00,1, 0xe9c4000,20, 0xe9c4800,10, 0xe9c4880,6, 0xe9c4900,2, 0xe9c4910,4, 0xe9c4a00,8, 0xe9c4a24,1, 0xe9c4a40,8, 0xe9c4a64,1, 0xe9c4a80,8, 0xe9c4aa4,1, 0xe9c4ac0,8, 0xe9c4ae4,1, 0xe9c4b00,1, 0xe9c6000,20, 0xe9c6800,10, 0xe9c6880,6, 0xe9c6900,2, 0xe9c6910,4, 0xe9c6a00,8, 0xe9c6a24,1, 0xe9c6a40,8, 0xe9c6a64,1, 0xe9c6a80,8, 0xe9c6aa4,1, 0xe9c6ac0,8, 0xe9c6ae4,1, 0xe9c6b00,1, 0xe9c8000,20, 0xe9c8800,10, 0xe9c8880,6, 0xe9c8900,2, 0xe9c8910,4, 0xe9c8a00,8, 0xe9c8a24,1, 0xe9c8a40,8, 0xe9c8a64,1, 0xe9c8a80,8, 0xe9c8aa4,1, 0xe9c8ac0,8, 0xe9c8ae4,1, 0xe9c8b00,1, 0xe9f9000,10, 0xe9fa000,10, 0xe9fb000,10, 0xea00000,198, 0xea00400,2, 0xea00440,9, 0xea00480,7, 0xea00800,198, 0xea00c00,2, 0xea00c40,9, 0xea00c80,7, 0xea01000,198, 0xea01400,198, 0xea01804,6, 0xea01824,6, 0xea01880,2, 0xea01904,1, 0xea01918,28, 0xea019a0,6, 0xea019c0,6, 0xea01c00,2, 0xea01d00,2, 0xea01e04,1, 0xea01e74,43, 0xea02000,2, 0xea02100,2, 0xea02204,1, 0xea02274,43, 0xea02400,3, 0xea02600,27, 0xea02680,4, 0xea026c0,25, 0xea02740,6, 0xea02760,4, 0xea02774,11, 0xea027a4,4, 0xea02800,4, 0xea02900,34, 0xea02a00,4, 0xea02b00,34, 0xea02c00,3, 0xea02c10,12, 0xea02e00,56, 0xea02ee4,4, 0xea02f00,4, 0xea03000,1, 0xea08000,4, 0xea08100,42, 0xea08200,1, 0xea08210,3, 0xea08220,3, 0xea08230,3, 0xea08240,1, 0xea08248,3, 0xea08400,4, 0xea08500,58, 0xea08600,1, 0xea08610,3, 0xea08620,3, 0xea08630,3, 0xea08640,1, 0xea08648,3, 0xea08800,4, 0xea08900,36, 0xea08a00,1, 0xea08c00,4, 0xea08c80,27, 0xea08d00,1, 0xea08d10,3, 0xea08d20,3, 0xea08d30,3, 0xea08d40,1, 0xea08d48,3, 0xea08e00,4, 0xea08e80,31, 0xea08f00,1, 0xea08f10,3, 0xea08f20,3, 0xea08f30,3, 0xea08f40,1, 0xea08f48,3, 0xea09000,4, 0xea09040,13, 0xea09080,1, 0xea09200,15, 0xea09240,4, 0xea09260,17, 0xea092c0,6, 0xea092e0,2, 0xea092ec,3, 0xea09300,8, 0xea09324,8, 0xea09400,68, 0xea09600,60, 0xea09700,4, 0xea09720,5, 0xea09740,1, 0xea09780,2, 0xea0978c,2, 0xea097a0,1, 0xea097c0,12, 0xea09800,7, 0xea09820,5, 0xea09900,49, 0xea09a00,1, 0xea09a08,23, 0xea09a84,1, 0xea09a8c,1, 0xea09a94,1, 0xea09a9c,2, 0xea09ac0,1, 0xea09c00,10, 0xea09c40,1, 0xea09c50,3, 0xea09c80,10, 0xea09cc0,12, 0xea09d00,3, 0xea09e00,1, 0xea0a000,4, 0xea0a100,42, 0xea0a200,1, 0xea0a210,3, 0xea0a220,3, 0xea0a230,3, 0xea0a240,1, 0xea0a248,3, 0xea0a400,4, 0xea0a500,58, 0xea0a600,1, 0xea0a610,3, 0xea0a620,3, 0xea0a630,3, 0xea0a640,1, 0xea0a648,3, 0xea0a800,4, 0xea0a900,36, 0xea0aa00,1, 0xea0ac00,4, 0xea0ac80,27, 0xea0ad00,1, 0xea0ad10,3, 0xea0ad20,3, 0xea0ad30,3, 0xea0ad40,1, 0xea0ad48,3, 0xea0ae00,4, 0xea0ae80,31, 0xea0af00,1, 0xea0af10,3, 0xea0af20,3, 0xea0af30,3, 0xea0af40,1, 0xea0af48,3, 0xea0b000,4, 0xea0b040,13, 0xea0b080,1, 0xea0b200,15, 0xea0b240,4, 0xea0b260,17, 0xea0b2c0,6, 0xea0b2e0,2, 0xea0b2ec,3, 0xea0b300,8, 0xea0b324,8, 0xea0b400,68, 0xea0b600,60, 0xea0b700,4, 0xea0b720,5, 0xea0b740,1, 0xea0b780,2, 0xea0b78c,2, 0xea0b7a0,1, 0xea0b7c0,12, 0xea0b800,7, 0xea0b820,5, 0xea0b900,49, 0xea0ba00,1, 0xea0ba08,23, 0xea0ba84,1, 0xea0ba8c,1, 0xea0ba94,1, 0xea0ba9c,2, 0xea0bac0,1, 0xea0bc00,10, 0xea0bc40,1, 0xea0bc50,3, 0xea0bc80,10, 0xea0bcc0,12, 0xea0bd00,3, 0xea0be00,1, 0xea0c000,20, 0xea0c080,3, 0xea0c090,1, 0xea0c098,4, 0xea10000,49, 0xea10100,12, 0xea10140,4, 0xea10184,1, 0xea10198,2, 0xea101a4,1, 0xea101b8,7, 0xea101e0,4, 0xea10200,20, 0xea10280,3, 0xea10290,9, 0xea102c0,6, 0xea102e0,1, 0xea102e8,7, 0xea10400,49, 0xea10500,12, 0xea10540,4, 0xea10584,1, 0xea10598,2, 0xea105a4,1, 0xea105b8,7, 0xea105e0,4, 0xea10600,20, 0xea10680,3, 0xea10690,9, 0xea106c0,6, 0xea106e0,1, 0xea106e8,7, 0xea10800,49, 0xea10900,12, 0xea10940,4, 0xea10984,1, 0xea10998,2, 0xea109a4,1, 0xea109b8,7, 0xea109e0,4, 0xea10a00,20, 0xea10a80,3, 0xea10a90,9, 0xea10ac0,6, 0xea10ae0,1, 0xea10ae8,7, 0xea10c00,49, 0xea10d00,12, 0xea10d40,4, 0xea10d84,1, 0xea10d98,2, 0xea10da4,1, 0xea10db8,7, 0xea10de0,4, 0xea10e00,20, 0xea10e80,3, 0xea10e90,9, 0xea10ec0,6, 0xea10ee0,1, 0xea10ee8,7, 0xea11000,49, 0xea11100,12, 0xea11140,4, 0xea11184,1, 0xea11198,2, 0xea111a4,1, 0xea111b8,7, 0xea111e0,4, 0xea11200,20, 0xea11280,3, 0xea11290,9, 0xea112c0,6, 0xea112e0,1, 0xea112e8,7, 0xea11400,49, 0xea11500,12, 0xea11540,4, 0xea11584,1, 0xea11598,2, 0xea115a4,1, 0xea115b8,7, 0xea115e0,4, 0xea11600,20, 0xea11680,3, 0xea11690,9, 0xea116c0,6, 0xea116e0,1, 0xea116e8,7, 0xea11800,49, 0xea11900,12, 0xea11940,4, 0xea11984,1, 0xea11998,2, 0xea119a4,1, 0xea119b8,7, 0xea119e0,4, 0xea11a00,20, 0xea11a80,3, 0xea11a90,9, 0xea11ac0,6, 0xea11ae0,1, 0xea11ae8,7, 0xea12000,20, 0xea12080,10, 0xea12100,20, 0xea12180,10, 0xea12200,12, 0xea12400,20, 0xea12480,10, 0xea12500,20, 0xea12580,10, 0xea12600,12, 0xea12800,3, 0xea12840,12, 0xea12880,12, 0xea128c0,12, 0xea12900,12, 0xea12940,12, 0xea12980,12, 0xea129c0,12, 0xea12a00,12, 0xea12c00,12, 0xea12c40,7, 0xea12c60,10, 0xea13004,1, 0xea13044,43, 0xea13100,7, 0xea13120,7, 0xea13140,2, 0xea1314c,2, 0xea13160,2, 0xea1316c,2, 0xea13180,18, 0xea13200,2, 0xea13220,10, 0xea13260,20, 0xea132c0,9, 0xea13300,15, 0xea13340,9, 0xea13380,6, 0xea133a0,4, 0xea13400,5, 0xea14000,53, 0xea14100,3, 0xea14110,15, 0xea14200,53, 0xea14300,3, 0xea14310,15, 0xea14400,5, 0xea14420,5, 0xea14440,18, 0xea14800,3, 0xea14810,2, 0xea14820,3, 0xea14830,2, 0xea14840,1, 0xea15000,7, 0xea15020,7, 0xea15080,19, 0xea15100,19, 0xea15180,25, 0xea15200,20, 0xea15280,20, 0xea15300,8, 0xea15340,4, 0xea15380,15, 0xea153c0,15, 0xea15400,9, 0xea15430,5, 0xea16000,6, 0xea16020,1, 0xea16028,2, 0xea16040,11, 0xea16070,2, 0xea18000,82, 0xea18200,2, 0xea18240,9, 0xea18280,7, 0xea18400,82, 0xea18604,6, 0xea18700,15, 0xea18740,9, 0xea18780,6, 0xea187a0,6, 0xea18800,2, 0xea18810,3, 0xea18880,24, 0xea188e4,1, 0xea188f0,12, 0xea20000,22, 0xea20080,22, 0xea20100,5, 0xea20120,5, 0xea20140,3, 0xea20160,16, 0xea201c0,7, 0xea201e0,2, 0xea20200,7, 0xea20220,2, 0xea20400,15, 0xea20440,3, 0xea20450,3, 0xea20460,24, 0xea20500,15, 0xea20540,3, 0xea20550,3, 0xea20560,24, 0xea20600,15, 0xea20640,3, 0xea20650,3, 0xea20660,24, 0xea20700,15, 0xea20740,3, 0xea20750,3, 0xea20760,24, 0xea20800,4, 0xea20820,16, 0xea20880,10, 0xea208c0,10, 0xea20900,6, 0xea20920,6, 0xea20940,4, 0xea20980,13, 0xea209c0,13, 0xea20a00,9, 0xea21000,86, 0xea21200,2, 0xea21240,9, 0xea21280,7, 0xea21400,86, 0xea21604,6, 0xea21800,86, 0xea21a00,2, 0xea21a40,9, 0xea21a80,7, 0xea21c00,86, 0xea21e04,6, 0xea22000,15, 0xea22040,4, 0xea22060,17, 0xea220c0,6, 0xea220e0,4, 0xea220f4,11, 0xea22128,38, 0xea221c4,2, 0xea221d0,4, 0xea22200,1, 0xea24000,22, 0xea24080,22, 0xea24100,5, 0xea24120,5, 0xea24140,3, 0xea24160,16, 0xea241c0,7, 0xea241e0,2, 0xea24200,7, 0xea24220,2, 0xea24400,15, 0xea24440,3, 0xea24450,3, 0xea24460,24, 0xea24500,15, 0xea24540,3, 0xea24550,3, 0xea24560,24, 0xea24600,15, 0xea24640,3, 0xea24650,3, 0xea24660,24, 0xea24700,15, 0xea24740,3, 0xea24750,3, 0xea24760,24, 0xea24800,4, 0xea24820,16, 0xea24880,10, 0xea248c0,10, 0xea24900,6, 0xea24920,6, 0xea24940,4, 0xea24980,13, 0xea249c0,13, 0xea24a00,9, 0xea25000,86, 0xea25200,2, 0xea25240,9, 0xea25280,7, 0xea25400,86, 0xea25604,6, 0xea25800,86, 0xea25a00,2, 0xea25a40,9, 0xea25a80,7, 0xea25c00,86, 0xea25e04,6, 0xea26000,15, 0xea26040,4, 0xea26060,17, 0xea260c0,6, 0xea260e0,4, 0xea260f4,11, 0xea26128,38, 0xea261c4,2, 0xea261d0,4, 0xea26200,1, 0xea28000,9, 0xea28040,9, 0xea28080,5, 0xea28100,21, 0xea28160,5, 0xea28180,45, 0xea28240,13, 0xea28280,9, 0xea28400,9, 0xea28440,9, 0xea28480,5, 0xea28500,21, 0xea28560,5, 0xea28580,45, 0xea28640,13, 0xea28680,9, 0xea28800,12, 0xea28900,15, 0xea28940,4, 0xea28960,17, 0xea289c0,6, 0xea289e0,4, 0xea289f4,29, 0xea2c000,30, 0xea2c080,3, 0xea2c090,19, 0xea2c100,30, 0xea2c180,3, 0xea2c190,19, 0xea2c200,30, 0xea2c280,3, 0xea2c290,19, 0xea2c300,30, 0xea2c380,3, 0xea2c390,19, 0xea2c400,30, 0xea2c480,3, 0xea2c490,19, 0xea2c500,30, 0xea2c580,3, 0xea2c590,19, 0xea2c600,30, 0xea2c680,3, 0xea2c690,19, 0xea2c700,30, 0xea2c780,3, 0xea2c790,19, 0xea2c800,12, 0xea2c844,1, 0xea2c854,8, 0xea2c880,7, 0xea2c8a0,2, 0xea2c8ac,2, 0xea2c8c0,26, 0xea2c980,4, 0xea2c9a0,5, 0xea2c9c0,1, 0xea2d000,3, 0xea2d010,3, 0xea2d020,3, 0xea2d030,3, 0xea2d040,3, 0xea2d050,3, 0xea2d060,3, 0xea2d070,3, 0xea2d080,6, 0xea2d0a0,6, 0xea2d0c0,6, 0xea2d0e0,6, 0xea2d100,6, 0xea2d120,6, 0xea2d140,6, 0xea2d160,6, 0xea2d200,68, 0xea2d400,1, 0xea2d804,1, 0xea2d844,54, 0xea2da00,12, 0xea2da40,12, 0xea2da80,12, 0xea2dac0,12, 0xea2db00,12, 0xea2db40,12, 0xea2db80,12, 0xea2dbc0,12, 0xea2dc00,28, 0xea2dc80,10, 0xea2e000,3, 0xea2e020,6, 0xea2e040,6, 0xea2e060,15, 0xea2e100,26, 0xea2e180,15, 0xea2e200,15, 0xea2e240,4, 0xea2e260,17, 0xea2e2c0,6, 0xea2e2e0,4, 0xea2e2f4,18, 0xea2e340,4, 0xea2e360,17, 0xea2e3c0,6, 0xea2e3e0,4, 0xea2e3f4,15, 0xea30000,1, 0xea31000,1020, 0xea32000,194, 0xea33000,1020, 0xea34000,1020, 0xea35000,1020, 0xea36000,1020, 0xea37000,1020, 0xea38000,1020, 0xea39000,1020, 0xea3a000,1020, 0xea3b000,194, 0xea3c000,3, 0xea3c010,13, 0xea3c080,16, 0xea3c100,20, 0xea3c184,1, 0xea3c18c,4, 0xea3c200,3, 0xea3c210,13, 0xea3c280,16, 0xea3c300,20, 0xea3c384,1, 0xea3c38c,4, 0xea3c400,3, 0xea3c410,13, 0xea3c480,16, 0xea3c500,20, 0xea3c584,1, 0xea3c58c,4, 0xea3c600,3, 0xea3c610,13, 0xea3c680,16, 0xea3c700,20, 0xea3c784,1, 0xea3c78c,4, 0xea3c800,3, 0xea3c810,13, 0xea3c880,16, 0xea3c900,20, 0xea3c984,1, 0xea3c98c,4, 0xea3ca00,3, 0xea3ca10,13, 0xea3ca80,16, 0xea3cb00,20, 0xea3cb84,1, 0xea3cb8c,4, 0xea3cc00,3, 0xea3cc10,13, 0xea3cc80,16, 0xea3cd00,20, 0xea3cd84,1, 0xea3cd8c,4, 0xea3ce00,3, 0xea3ce10,13, 0xea3ce80,16, 0xea3cf00,20, 0xea3cf84,1, 0xea3cf8c,4, 0xea3d000,3, 0xea3d010,13, 0xea3d080,16, 0xea3d100,20, 0xea3d184,1, 0xea3d18c,4, 0xea3d200,18, 0xea3d250,2, 0xea3d260,4, 0xea3e000,1, 0xea3e014,1, 0xea3e01c,19, 0xea3e080,1, 0xea3e094,1, 0xea3e09c,19, 0xea3e100,8, 0xea3e200,13, 0xea3e240,9, 0xea3e280,12, 0xea3e2c0,2, 0xea3e2e0,12, 0xea40000,3, 0xea40080,20, 0xea40100,10, 0xea40140,1, 0xea40154,1, 0xea4015c,2, 0xea40200,15, 0xea40240,4, 0xea40260,17, 0xea402c0,6, 0xea402e0,2, 0xea402ec,3, 0xea40300,8, 0xea40324,1, 0xea40400,4, 0xea40440,20, 0xea404c0,9, 0xea40500,33, 0xea40600,11, 0xea40640,11, 0xea40680,1, 0xea42000,1, 0xea42200,4, 0xea42300,53, 0xea42400,4, 0xea42500,40, 0xea42600,15, 0xea42640,4, 0xea42660,17, 0xea426c0,6, 0xea426e0,2, 0xea426ec,3, 0xea42700,8, 0xea42724,1, 0xea42800,20, 0xea42c00,53, 0xea42d00,53, 0xea42e00,1, 0xea43000,40, 0xea43100,40, 0xea43200,1, 0xea43400,1, 0xea43804,1, 0xea43844,39, 0xea43900,3, 0xea43a00,3, 0xea43a44,1, 0xea43a50,4, 0xea43a80,1, 0xea44000,2, 0xea44200,27, 0xea44280,4, 0xea442c0,25, 0xea44340,6, 0xea44360,2, 0xea4436c,3, 0xea44380,8, 0xea443a4,1, 0xea44400,12, 0xea44440,1, 0xea48000,3, 0xea48080,20, 0xea48100,10, 0xea48140,1, 0xea48154,1, 0xea4815c,2, 0xea48200,15, 0xea48240,4, 0xea48260,17, 0xea482c0,6, 0xea482e0,2, 0xea482ec,3, 0xea48300,8, 0xea48324,1, 0xea48400,4, 0xea48440,20, 0xea484c0,9, 0xea48500,33, 0xea48600,11, 0xea48640,11, 0xea48680,1, 0xea4a000,1, 0xea4a200,4, 0xea4a300,53, 0xea4a400,4, 0xea4a500,40, 0xea4a600,15, 0xea4a640,4, 0xea4a660,17, 0xea4a6c0,6, 0xea4a6e0,2, 0xea4a6ec,3, 0xea4a700,8, 0xea4a724,1, 0xea4a800,20, 0xea4ac00,53, 0xea4ad00,53, 0xea4ae00,1, 0xea4b000,40, 0xea4b100,40, 0xea4b200,1, 0xea4b400,1, 0xea4b804,1, 0xea4b844,39, 0xea4b900,3, 0xea4ba00,3, 0xea4ba44,1, 0xea4ba50,4, 0xea4ba80,1, 0xea4c000,2, 0xea4c200,27, 0xea4c280,4, 0xea4c2c0,25, 0xea4c340,6, 0xea4c360,2, 0xea4c36c,3, 0xea4c380,8, 0xea4c3a4,1, 0xea4c400,12, 0xea4c440,1, 0xea50000,4, 0xea50020,3, 0xea50030,2, 0xea50200,1, 0xea50224,10, 0xea50250,5, 0xea50280,1, 0xea50288,24, 0xea50300,3, 0xea50404,1, 0xea50414,5, 0xea50500,36, 0xea50600,3, 0xea50800,2, 0xea51000,1, 0xea51008,21, 0xea51080,1, 0xea51088,21, 0xea51100,1, 0xea51108,21, 0xea51180,1, 0xea51188,21, 0xea51200,1, 0xea51208,21, 0xea51280,1, 0xea51288,21, 0xea51300,1, 0xea51308,21, 0xea51380,1, 0xea51388,21, 0xea51400,21, 0xea51800,142, 0xea51c00,1, 0xea52000,4, 0xea52100,39, 0xea52200,3, 0xea52214,3, 0xea54004,1, 0xea54020,16, 0xea54080,2, 0xea54094,1, 0xea5409c,2, 0xea540c0,6, 0xea54100,8, 0xea58004,17, 0xea58054,1, 0xea5805c,2, 0xea58080,1, 0xea580a0,2, 0xea580b4,4, 0xea58100,2, 0xea58200,8, 0xea58400,1, 0xea58600,27, 0xea58680,4, 0xea586c0,25, 0xea58740,6, 0xea58760,2, 0xea5876c,3, 0xea58780,8, 0xea587a4,3, 0xea58800,44, 0xea58900,1, 0xea60000,1, 0xea60200,27, 0xea60280,4, 0xea602c0,25, 0xea60340,6, 0xea60360,2, 0xea6036c,3, 0xea60380,8, 0xea603a4,1, 0xea60400,20, 0xea60480,3, 0xea60490,9, 0xea80000,198, 0xea80400,2, 0xea80440,9, 0xea80480,7, 0xea80800,198, 0xea80c00,2, 0xea80c40,9, 0xea80c80,7, 0xea81000,198, 0xea81400,198, 0xea81804,6, 0xea81824,6, 0xea81880,2, 0xea81904,1, 0xea81918,28, 0xea819a0,6, 0xea819c0,6, 0xea81c00,2, 0xea81d00,2, 0xea81e04,1, 0xea81e74,43, 0xea82000,2, 0xea82100,2, 0xea82204,1, 0xea82274,43, 0xea82400,3, 0xea82600,27, 0xea82680,4, 0xea826c0,25, 0xea82740,6, 0xea82760,4, 0xea82774,11, 0xea827a4,4, 0xea82800,4, 0xea82900,34, 0xea82a00,4, 0xea82b00,34, 0xea82c00,3, 0xea82c10,12, 0xea82e00,56, 0xea82ee4,4, 0xea82f00,4, 0xea83000,1, 0xea88000,4, 0xea88100,42, 0xea88200,1, 0xea88210,3, 0xea88220,3, 0xea88230,3, 0xea88240,1, 0xea88248,3, 0xea88400,4, 0xea88500,58, 0xea88600,1, 0xea88610,3, 0xea88620,3, 0xea88630,3, 0xea88640,1, 0xea88648,3, 0xea88800,4, 0xea88900,36, 0xea88a00,1, 0xea88c00,4, 0xea88c80,27, 0xea88d00,1, 0xea88d10,3, 0xea88d20,3, 0xea88d30,3, 0xea88d40,1, 0xea88d48,3, 0xea88e00,4, 0xea88e80,31, 0xea88f00,1, 0xea88f10,3, 0xea88f20,3, 0xea88f30,3, 0xea88f40,1, 0xea88f48,3, 0xea89000,4, 0xea89040,13, 0xea89080,1, 0xea89200,15, 0xea89240,4, 0xea89260,17, 0xea892c0,6, 0xea892e0,2, 0xea892ec,3, 0xea89300,8, 0xea89324,8, 0xea89400,68, 0xea89600,60, 0xea89700,4, 0xea89720,5, 0xea89740,1, 0xea89780,2, 0xea8978c,2, 0xea897a0,1, 0xea897c0,12, 0xea89800,7, 0xea89820,5, 0xea89900,49, 0xea89a00,1, 0xea89a08,23, 0xea89a84,1, 0xea89a8c,1, 0xea89a94,1, 0xea89a9c,2, 0xea89ac0,1, 0xea89c00,10, 0xea89c40,1, 0xea89c50,3, 0xea89c80,10, 0xea89cc0,12, 0xea89d00,3, 0xea89e00,1, 0xea8a000,4, 0xea8a100,42, 0xea8a200,1, 0xea8a210,3, 0xea8a220,3, 0xea8a230,3, 0xea8a240,1, 0xea8a248,3, 0xea8a400,4, 0xea8a500,58, 0xea8a600,1, 0xea8a610,3, 0xea8a620,3, 0xea8a630,3, 0xea8a640,1, 0xea8a648,3, 0xea8a800,4, 0xea8a900,36, 0xea8aa00,1, 0xea8ac00,4, 0xea8ac80,27, 0xea8ad00,1, 0xea8ad10,3, 0xea8ad20,3, 0xea8ad30,3, 0xea8ad40,1, 0xea8ad48,3, 0xea8ae00,4, 0xea8ae80,31, 0xea8af00,1, 0xea8af10,3, 0xea8af20,3, 0xea8af30,3, 0xea8af40,1, 0xea8af48,3, 0xea8b000,4, 0xea8b040,13, 0xea8b080,1, 0xea8b200,15, 0xea8b240,4, 0xea8b260,17, 0xea8b2c0,6, 0xea8b2e0,2, 0xea8b2ec,3, 0xea8b300,8, 0xea8b324,8, 0xea8b400,68, 0xea8b600,60, 0xea8b700,4, 0xea8b720,5, 0xea8b740,1, 0xea8b780,2, 0xea8b78c,2, 0xea8b7a0,1, 0xea8b7c0,12, 0xea8b800,7, 0xea8b820,5, 0xea8b900,49, 0xea8ba00,1, 0xea8ba08,23, 0xea8ba84,1, 0xea8ba8c,1, 0xea8ba94,1, 0xea8ba9c,2, 0xea8bac0,1, 0xea8bc00,10, 0xea8bc40,1, 0xea8bc50,3, 0xea8bc80,10, 0xea8bcc0,12, 0xea8bd00,3, 0xea8be00,1, 0xea8c000,20, 0xea8c080,3, 0xea8c090,1, 0xea8c098,4, 0xea90000,49, 0xea90100,12, 0xea90140,4, 0xea90184,1, 0xea90198,2, 0xea901a4,1, 0xea901b8,7, 0xea901e0,4, 0xea90200,20, 0xea90280,3, 0xea90290,9, 0xea902c0,6, 0xea902e0,1, 0xea902e8,7, 0xea90400,49, 0xea90500,12, 0xea90540,4, 0xea90584,1, 0xea90598,2, 0xea905a4,1, 0xea905b8,7, 0xea905e0,4, 0xea90600,20, 0xea90680,3, 0xea90690,9, 0xea906c0,6, 0xea906e0,1, 0xea906e8,7, 0xea90800,49, 0xea90900,12, 0xea90940,4, 0xea90984,1, 0xea90998,2, 0xea909a4,1, 0xea909b8,7, 0xea909e0,4, 0xea90a00,20, 0xea90a80,3, 0xea90a90,9, 0xea90ac0,6, 0xea90ae0,1, 0xea90ae8,7, 0xea90c00,49, 0xea90d00,12, 0xea90d40,4, 0xea90d84,1, 0xea90d98,2, 0xea90da4,1, 0xea90db8,7, 0xea90de0,4, 0xea90e00,20, 0xea90e80,3, 0xea90e90,9, 0xea90ec0,6, 0xea90ee0,1, 0xea90ee8,7, 0xea91000,49, 0xea91100,12, 0xea91140,4, 0xea91184,1, 0xea91198,2, 0xea911a4,1, 0xea911b8,7, 0xea911e0,4, 0xea91200,20, 0xea91280,3, 0xea91290,9, 0xea912c0,6, 0xea912e0,1, 0xea912e8,7, 0xea91400,49, 0xea91500,12, 0xea91540,4, 0xea91584,1, 0xea91598,2, 0xea915a4,1, 0xea915b8,7, 0xea915e0,4, 0xea91600,20, 0xea91680,3, 0xea91690,9, 0xea916c0,6, 0xea916e0,1, 0xea916e8,7, 0xea91800,49, 0xea91900,12, 0xea91940,4, 0xea91984,1, 0xea91998,2, 0xea919a4,1, 0xea919b8,7, 0xea919e0,4, 0xea91a00,20, 0xea91a80,3, 0xea91a90,9, 0xea91ac0,6, 0xea91ae0,1, 0xea91ae8,7, 0xea92000,20, 0xea92080,10, 0xea92100,20, 0xea92180,10, 0xea92200,12, 0xea92400,20, 0xea92480,10, 0xea92500,20, 0xea92580,10, 0xea92600,12, 0xea92800,3, 0xea92840,12, 0xea92880,12, 0xea928c0,12, 0xea92900,12, 0xea92940,12, 0xea92980,12, 0xea929c0,12, 0xea92a00,12, 0xea92c00,12, 0xea92c40,7, 0xea92c60,10, 0xea93004,1, 0xea93044,43, 0xea93100,7, 0xea93120,7, 0xea93140,2, 0xea9314c,2, 0xea93160,2, 0xea9316c,2, 0xea93180,18, 0xea93200,2, 0xea93220,10, 0xea93260,20, 0xea932c0,9, 0xea93300,15, 0xea93340,9, 0xea93380,6, 0xea933a0,4, 0xea93400,5, 0xea94000,53, 0xea94100,3, 0xea94110,15, 0xea94200,53, 0xea94300,3, 0xea94310,15, 0xea94400,5, 0xea94420,5, 0xea94440,18, 0xea94800,3, 0xea94810,2, 0xea94820,3, 0xea94830,2, 0xea94840,1, 0xea95000,7, 0xea95020,7, 0xea95080,19, 0xea95100,19, 0xea95180,25, 0xea95200,20, 0xea95280,20, 0xea95300,8, 0xea95340,4, 0xea95380,15, 0xea953c0,15, 0xea95400,9, 0xea95430,5, 0xea96000,6, 0xea96020,1, 0xea96028,2, 0xea96040,11, 0xea96070,2, 0xea98000,82, 0xea98200,2, 0xea98240,9, 0xea98280,7, 0xea98400,82, 0xea98604,6, 0xea98700,15, 0xea98740,9, 0xea98780,6, 0xea987a0,6, 0xea98800,2, 0xea98810,3, 0xea98880,24, 0xea988e4,1, 0xea988f0,12, 0xeaa0000,22, 0xeaa0080,22, 0xeaa0100,5, 0xeaa0120,5, 0xeaa0140,3, 0xeaa0160,16, 0xeaa01c0,7, 0xeaa01e0,2, 0xeaa0200,7, 0xeaa0220,2, 0xeaa0400,15, 0xeaa0440,3, 0xeaa0450,3, 0xeaa0460,24, 0xeaa0500,15, 0xeaa0540,3, 0xeaa0550,3, 0xeaa0560,24, 0xeaa0600,15, 0xeaa0640,3, 0xeaa0650,3, 0xeaa0660,24, 0xeaa0700,15, 0xeaa0740,3, 0xeaa0750,3, 0xeaa0760,24, 0xeaa0800,4, 0xeaa0820,16, 0xeaa0880,10, 0xeaa08c0,10, 0xeaa0900,6, 0xeaa0920,6, 0xeaa0940,4, 0xeaa0980,13, 0xeaa09c0,13, 0xeaa0a00,9, 0xeaa1000,86, 0xeaa1200,2, 0xeaa1240,9, 0xeaa1280,7, 0xeaa1400,86, 0xeaa1604,6, 0xeaa1800,86, 0xeaa1a00,2, 0xeaa1a40,9, 0xeaa1a80,7, 0xeaa1c00,86, 0xeaa1e04,6, 0xeaa2000,15, 0xeaa2040,4, 0xeaa2060,17, 0xeaa20c0,6, 0xeaa20e0,4, 0xeaa20f4,11, 0xeaa2128,38, 0xeaa21c4,2, 0xeaa21d0,4, 0xeaa2200,1, 0xeaa4000,22, 0xeaa4080,22, 0xeaa4100,5, 0xeaa4120,5, 0xeaa4140,3, 0xeaa4160,16, 0xeaa41c0,7, 0xeaa41e0,2, 0xeaa4200,7, 0xeaa4220,2, 0xeaa4400,15, 0xeaa4440,3, 0xeaa4450,3, 0xeaa4460,24, 0xeaa4500,15, 0xeaa4540,3, 0xeaa4550,3, 0xeaa4560,24, 0xeaa4600,15, 0xeaa4640,3, 0xeaa4650,3, 0xeaa4660,24, 0xeaa4700,15, 0xeaa4740,3, 0xeaa4750,3, 0xeaa4760,24, 0xeaa4800,4, 0xeaa4820,16, 0xeaa4880,10, 0xeaa48c0,10, 0xeaa4900,6, 0xeaa4920,6, 0xeaa4940,4, 0xeaa4980,13, 0xeaa49c0,13, 0xeaa4a00,9, 0xeaa5000,86, 0xeaa5200,2, 0xeaa5240,9, 0xeaa5280,7, 0xeaa5400,86, 0xeaa5604,6, 0xeaa5800,86, 0xeaa5a00,2, 0xeaa5a40,9, 0xeaa5a80,7, 0xeaa5c00,86, 0xeaa5e04,6, 0xeaa6000,15, 0xeaa6040,4, 0xeaa6060,17, 0xeaa60c0,6, 0xeaa60e0,4, 0xeaa60f4,11, 0xeaa6128,38, 0xeaa61c4,2, 0xeaa61d0,4, 0xeaa6200,1, 0xeaa8000,9, 0xeaa8040,9, 0xeaa8080,5, 0xeaa8100,21, 0xeaa8160,5, 0xeaa8180,45, 0xeaa8240,13, 0xeaa8280,9, 0xeaa8400,9, 0xeaa8440,9, 0xeaa8480,5, 0xeaa8500,21, 0xeaa8560,5, 0xeaa8580,45, 0xeaa8640,13, 0xeaa8680,9, 0xeaa8800,12, 0xeaa8900,15, 0xeaa8940,4, 0xeaa8960,17, 0xeaa89c0,6, 0xeaa89e0,4, 0xeaa89f4,29, 0xeaac000,30, 0xeaac080,3, 0xeaac090,19, 0xeaac100,30, 0xeaac180,3, 0xeaac190,19, 0xeaac200,30, 0xeaac280,3, 0xeaac290,19, 0xeaac300,30, 0xeaac380,3, 0xeaac390,19, 0xeaac400,30, 0xeaac480,3, 0xeaac490,19, 0xeaac500,30, 0xeaac580,3, 0xeaac590,19, 0xeaac600,30, 0xeaac680,3, 0xeaac690,19, 0xeaac700,30, 0xeaac780,3, 0xeaac790,19, 0xeaac800,12, 0xeaac844,1, 0xeaac854,8, 0xeaac880,7, 0xeaac8a0,2, 0xeaac8ac,2, 0xeaac8c0,26, 0xeaac980,4, 0xeaac9a0,5, 0xeaac9c0,1, 0xeaad000,3, 0xeaad010,3, 0xeaad020,3, 0xeaad030,3, 0xeaad040,3, 0xeaad050,3, 0xeaad060,3, 0xeaad070,3, 0xeaad080,6, 0xeaad0a0,6, 0xeaad0c0,6, 0xeaad0e0,6, 0xeaad100,6, 0xeaad120,6, 0xeaad140,6, 0xeaad160,6, 0xeaad200,68, 0xeaad400,1, 0xeaad804,1, 0xeaad844,54, 0xeaada00,12, 0xeaada40,12, 0xeaada80,12, 0xeaadac0,12, 0xeaadb00,12, 0xeaadb40,12, 0xeaadb80,12, 0xeaadbc0,12, 0xeaadc00,28, 0xeaadc80,10, 0xeaae000,3, 0xeaae020,6, 0xeaae040,6, 0xeaae060,15, 0xeaae100,26, 0xeaae180,15, 0xeaae200,15, 0xeaae240,4, 0xeaae260,17, 0xeaae2c0,6, 0xeaae2e0,4, 0xeaae2f4,18, 0xeaae340,4, 0xeaae360,17, 0xeaae3c0,6, 0xeaae3e0,4, 0xeaae3f4,15, 0xeab0000,1, 0xeab1000,1020, 0xeab2000,194, 0xeab3000,1020, 0xeab4000,1020, 0xeab5000,1020, 0xeab6000,1020, 0xeab7000,1020, 0xeab8000,1020, 0xeab9000,1020, 0xeaba000,1020, 0xeabb000,194, 0xeabc000,3, 0xeabc010,13, 0xeabc080,16, 0xeabc100,20, 0xeabc184,1, 0xeabc18c,4, 0xeabc200,3, 0xeabc210,13, 0xeabc280,16, 0xeabc300,20, 0xeabc384,1, 0xeabc38c,4, 0xeabc400,3, 0xeabc410,13, 0xeabc480,16, 0xeabc500,20, 0xeabc584,1, 0xeabc58c,4, 0xeabc600,3, 0xeabc610,13, 0xeabc680,16, 0xeabc700,20, 0xeabc784,1, 0xeabc78c,4, 0xeabc800,3, 0xeabc810,13, 0xeabc880,16, 0xeabc900,20, 0xeabc984,1, 0xeabc98c,4, 0xeabca00,3, 0xeabca10,13, 0xeabca80,16, 0xeabcb00,20, 0xeabcb84,1, 0xeabcb8c,4, 0xeabcc00,3, 0xeabcc10,13, 0xeabcc80,16, 0xeabcd00,20, 0xeabcd84,1, 0xeabcd8c,4, 0xeabce00,3, 0xeabce10,13, 0xeabce80,16, 0xeabcf00,20, 0xeabcf84,1, 0xeabcf8c,4, 0xeabd000,3, 0xeabd010,13, 0xeabd080,16, 0xeabd100,20, 0xeabd184,1, 0xeabd18c,4, 0xeabd200,18, 0xeabd250,2, 0xeabd260,4, 0xeabe000,1, 0xeabe014,1, 0xeabe01c,19, 0xeabe080,1, 0xeabe094,1, 0xeabe09c,19, 0xeabe100,8, 0xeabe200,13, 0xeabe240,9, 0xeabe280,12, 0xeabe2c0,2, 0xeabe2e0,12, 0xeac0000,3, 0xeac0080,20, 0xeac0100,10, 0xeac0140,1, 0xeac0154,1, 0xeac015c,2, 0xeac0200,15, 0xeac0240,4, 0xeac0260,17, 0xeac02c0,6, 0xeac02e0,2, 0xeac02ec,3, 0xeac0300,8, 0xeac0324,1, 0xeac0400,4, 0xeac0440,20, 0xeac04c0,9, 0xeac0500,33, 0xeac0600,11, 0xeac0640,11, 0xeac0680,1, 0xeac2000,1, 0xeac2200,4, 0xeac2300,53, 0xeac2400,4, 0xeac2500,40, 0xeac2600,15, 0xeac2640,4, 0xeac2660,17, 0xeac26c0,6, 0xeac26e0,2, 0xeac26ec,3, 0xeac2700,8, 0xeac2724,1, 0xeac2800,20, 0xeac2c00,53, 0xeac2d00,53, 0xeac2e00,1, 0xeac3000,40, 0xeac3100,40, 0xeac3200,1, 0xeac3400,1, 0xeac3804,1, 0xeac3844,39, 0xeac3900,3, 0xeac3a00,3, 0xeac3a44,1, 0xeac3a50,4, 0xeac3a80,1, 0xeac4000,2, 0xeac4200,27, 0xeac4280,4, 0xeac42c0,25, 0xeac4340,6, 0xeac4360,2, 0xeac436c,3, 0xeac4380,8, 0xeac43a4,1, 0xeac4400,12, 0xeac4440,1, 0xeac8000,3, 0xeac8080,20, 0xeac8100,10, 0xeac8140,1, 0xeac8154,1, 0xeac815c,2, 0xeac8200,15, 0xeac8240,4, 0xeac8260,17, 0xeac82c0,6, 0xeac82e0,2, 0xeac82ec,3, 0xeac8300,8, 0xeac8324,1, 0xeac8400,4, 0xeac8440,20, 0xeac84c0,9, 0xeac8500,33, 0xeac8600,11, 0xeac8640,11, 0xeac8680,1, 0xeaca000,1, 0xeaca200,4, 0xeaca300,53, 0xeaca400,4, 0xeaca500,40, 0xeaca600,15, 0xeaca640,4, 0xeaca660,17, 0xeaca6c0,6, 0xeaca6e0,2, 0xeaca6ec,3, 0xeaca700,8, 0xeaca724,1, 0xeaca800,20, 0xeacac00,53, 0xeacad00,53, 0xeacae00,1, 0xeacb000,40, 0xeacb100,40, 0xeacb200,1, 0xeacb400,1, 0xeacb804,1, 0xeacb844,39, 0xeacb900,3, 0xeacba00,3, 0xeacba44,1, 0xeacba50,4, 0xeacba80,1, 0xeacc000,2, 0xeacc200,27, 0xeacc280,4, 0xeacc2c0,25, 0xeacc340,6, 0xeacc360,2, 0xeacc36c,3, 0xeacc380,8, 0xeacc3a4,1, 0xeacc400,12, 0xeacc440,1, 0xead0000,4, 0xead0020,3, 0xead0030,2, 0xead0200,1, 0xead0224,10, 0xead0250,5, 0xead0280,1, 0xead0288,24, 0xead0300,3, 0xead0404,1, 0xead0414,5, 0xead0500,36, 0xead0600,3, 0xead0800,2, 0xead1000,1, 0xead1008,21, 0xead1080,1, 0xead1088,21, 0xead1100,1, 0xead1108,21, 0xead1180,1, 0xead1188,21, 0xead1200,1, 0xead1208,21, 0xead1280,1, 0xead1288,21, 0xead1300,1, 0xead1308,21, 0xead1380,1, 0xead1388,21, 0xead1400,21, 0xead1800,142, 0xead1c00,1, 0xead2000,4, 0xead2100,39, 0xead2200,3, 0xead2214,3, 0xead4004,1, 0xead4020,16, 0xead4080,2, 0xead4094,1, 0xead409c,2, 0xead40c0,6, 0xead4100,8, 0xead8004,17, 0xead8054,1, 0xead805c,2, 0xead8080,1, 0xead80a0,2, 0xead80b4,4, 0xead8100,2, 0xead8200,8, 0xead8400,1, 0xead8600,27, 0xead8680,4, 0xead86c0,25, 0xead8740,6, 0xead8760,2, 0xead876c,3, 0xead8780,8, 0xead87a4,3, 0xead8800,44, 0xead8900,1, 0xeae0000,1, 0xeae0200,27, 0xeae0280,4, 0xeae02c0,25, 0xeae0340,6, 0xeae0360,2, 0xeae036c,3, 0xeae0380,8, 0xeae03a4,1, 0xeae0400,20, 0xeae0480,3, 0xeae0490,9, 0xeb00000,198, 0xeb00400,2, 0xeb00440,9, 0xeb00480,7, 0xeb00800,198, 0xeb00c00,2, 0xeb00c40,9, 0xeb00c80,7, 0xeb01000,198, 0xeb01400,198, 0xeb01804,6, 0xeb01824,6, 0xeb01880,2, 0xeb01904,1, 0xeb01918,28, 0xeb019a0,6, 0xeb019c0,6, 0xeb01c00,2, 0xeb01d00,2, 0xeb01e04,1, 0xeb01e74,43, 0xeb02000,2, 0xeb02100,2, 0xeb02204,1, 0xeb02274,43, 0xeb02400,3, 0xeb02600,27, 0xeb02680,4, 0xeb026c0,25, 0xeb02740,6, 0xeb02760,4, 0xeb02774,11, 0xeb027a4,4, 0xeb02800,4, 0xeb02900,34, 0xeb02a00,4, 0xeb02b00,34, 0xeb02c00,3, 0xeb02c10,12, 0xeb02e00,56, 0xeb02ee4,4, 0xeb02f00,4, 0xeb03000,1, 0xeb08000,4, 0xeb08100,42, 0xeb08200,1, 0xeb08210,3, 0xeb08220,3, 0xeb08230,3, 0xeb08240,1, 0xeb08248,3, 0xeb08400,4, 0xeb08500,58, 0xeb08600,1, 0xeb08610,3, 0xeb08620,3, 0xeb08630,3, 0xeb08640,1, 0xeb08648,3, 0xeb08800,4, 0xeb08900,36, 0xeb08a00,1, 0xeb08c00,4, 0xeb08c80,27, 0xeb08d00,1, 0xeb08d10,3, 0xeb08d20,3, 0xeb08d30,3, 0xeb08d40,1, 0xeb08d48,3, 0xeb08e00,4, 0xeb08e80,31, 0xeb08f00,1, 0xeb08f10,3, 0xeb08f20,3, 0xeb08f30,3, 0xeb08f40,1, 0xeb08f48,3, 0xeb09000,4, 0xeb09040,13, 0xeb09080,1, 0xeb09200,15, 0xeb09240,4, 0xeb09260,17, 0xeb092c0,6, 0xeb092e0,2, 0xeb092ec,3, 0xeb09300,8, 0xeb09324,8, 0xeb09400,68, 0xeb09600,60, 0xeb09700,4, 0xeb09720,5, 0xeb09740,1, 0xeb09780,2, 0xeb0978c,2, 0xeb097a0,1, 0xeb097c0,12, 0xeb09800,7, 0xeb09820,5, 0xeb09900,49, 0xeb09a00,1, 0xeb09a08,23, 0xeb09a84,1, 0xeb09a8c,1, 0xeb09a94,1, 0xeb09a9c,2, 0xeb09ac0,1, 0xeb09c00,10, 0xeb09c40,1, 0xeb09c50,3, 0xeb09c80,10, 0xeb09cc0,12, 0xeb09d00,3, 0xeb09e00,1, 0xeb0a000,4, 0xeb0a100,42, 0xeb0a200,1, 0xeb0a210,3, 0xeb0a220,3, 0xeb0a230,3, 0xeb0a240,1, 0xeb0a248,3, 0xeb0a400,4, 0xeb0a500,58, 0xeb0a600,1, 0xeb0a610,3, 0xeb0a620,3, 0xeb0a630,3, 0xeb0a640,1, 0xeb0a648,3, 0xeb0a800,4, 0xeb0a900,36, 0xeb0aa00,1, 0xeb0ac00,4, 0xeb0ac80,27, 0xeb0ad00,1, 0xeb0ad10,3, 0xeb0ad20,3, 0xeb0ad30,3, 0xeb0ad40,1, 0xeb0ad48,3, 0xeb0ae00,4, 0xeb0ae80,31, 0xeb0af00,1, 0xeb0af10,3, 0xeb0af20,3, 0xeb0af30,3, 0xeb0af40,1, 0xeb0af48,3, 0xeb0b000,4, 0xeb0b040,13, 0xeb0b080,1, 0xeb0b200,15, 0xeb0b240,4, 0xeb0b260,17, 0xeb0b2c0,6, 0xeb0b2e0,2, 0xeb0b2ec,3, 0xeb0b300,8, 0xeb0b324,8, 0xeb0b400,68, 0xeb0b600,60, 0xeb0b700,4, 0xeb0b720,5, 0xeb0b740,1, 0xeb0b780,2, 0xeb0b78c,2, 0xeb0b7a0,1, 0xeb0b7c0,12, 0xeb0b800,7, 0xeb0b820,5, 0xeb0b900,49, 0xeb0ba00,1, 0xeb0ba08,23, 0xeb0ba84,1, 0xeb0ba8c,1, 0xeb0ba94,1, 0xeb0ba9c,2, 0xeb0bac0,1, 0xeb0bc00,10, 0xeb0bc40,1, 0xeb0bc50,3, 0xeb0bc80,10, 0xeb0bcc0,12, 0xeb0bd00,3, 0xeb0be00,1, 0xeb0c000,20, 0xeb0c080,3, 0xeb0c090,1, 0xeb0c098,4, 0xeb10000,49, 0xeb10100,12, 0xeb10140,4, 0xeb10184,1, 0xeb10198,2, 0xeb101a4,1, 0xeb101b8,7, 0xeb101e0,4, 0xeb10200,20, 0xeb10280,3, 0xeb10290,9, 0xeb102c0,6, 0xeb102e0,1, 0xeb102e8,7, 0xeb10400,49, 0xeb10500,12, 0xeb10540,4, 0xeb10584,1, 0xeb10598,2, 0xeb105a4,1, 0xeb105b8,7, 0xeb105e0,4, 0xeb10600,20, 0xeb10680,3, 0xeb10690,9, 0xeb106c0,6, 0xeb106e0,1, 0xeb106e8,7, 0xeb10800,49, 0xeb10900,12, 0xeb10940,4, 0xeb10984,1, 0xeb10998,2, 0xeb109a4,1, 0xeb109b8,7, 0xeb109e0,4, 0xeb10a00,20, 0xeb10a80,3, 0xeb10a90,9, 0xeb10ac0,6, 0xeb10ae0,1, 0xeb10ae8,7, 0xeb10c00,49, 0xeb10d00,12, 0xeb10d40,4, 0xeb10d84,1, 0xeb10d98,2, 0xeb10da4,1, 0xeb10db8,7, 0xeb10de0,4, 0xeb10e00,20, 0xeb10e80,3, 0xeb10e90,9, 0xeb10ec0,6, 0xeb10ee0,1, 0xeb10ee8,7, 0xeb11000,49, 0xeb11100,12, 0xeb11140,4, 0xeb11184,1, 0xeb11198,2, 0xeb111a4,1, 0xeb111b8,7, 0xeb111e0,4, 0xeb11200,20, 0xeb11280,3, 0xeb11290,9, 0xeb112c0,6, 0xeb112e0,1, 0xeb112e8,7, 0xeb11400,49, 0xeb11500,12, 0xeb11540,4, 0xeb11584,1, 0xeb11598,2, 0xeb115a4,1, 0xeb115b8,7, 0xeb115e0,4, 0xeb11600,20, 0xeb11680,3, 0xeb11690,9, 0xeb116c0,6, 0xeb116e0,1, 0xeb116e8,7, 0xeb11800,49, 0xeb11900,12, 0xeb11940,4, 0xeb11984,1, 0xeb11998,2, 0xeb119a4,1, 0xeb119b8,7, 0xeb119e0,4, 0xeb11a00,20, 0xeb11a80,3, 0xeb11a90,9, 0xeb11ac0,6, 0xeb11ae0,1, 0xeb11ae8,7, 0xeb12000,20, 0xeb12080,10, 0xeb12100,20, 0xeb12180,10, 0xeb12200,12, 0xeb12400,20, 0xeb12480,10, 0xeb12500,20, 0xeb12580,10, 0xeb12600,12, 0xeb12800,3, 0xeb12840,12, 0xeb12880,12, 0xeb128c0,12, 0xeb12900,12, 0xeb12940,12, 0xeb12980,12, 0xeb129c0,12, 0xeb12a00,12, 0xeb12c00,12, 0xeb12c40,7, 0xeb12c60,10, 0xeb13004,1, 0xeb13044,43, 0xeb13100,7, 0xeb13120,7, 0xeb13140,2, 0xeb1314c,2, 0xeb13160,2, 0xeb1316c,2, 0xeb13180,18, 0xeb13200,2, 0xeb13220,10, 0xeb13260,20, 0xeb132c0,9, 0xeb13300,15, 0xeb13340,9, 0xeb13380,6, 0xeb133a0,4, 0xeb13400,5, 0xeb14000,53, 0xeb14100,3, 0xeb14110,15, 0xeb14200,53, 0xeb14300,3, 0xeb14310,15, 0xeb14400,5, 0xeb14420,5, 0xeb14440,18, 0xeb14800,3, 0xeb14810,2, 0xeb14820,3, 0xeb14830,2, 0xeb14840,1, 0xeb15000,7, 0xeb15020,7, 0xeb15080,19, 0xeb15100,19, 0xeb15180,25, 0xeb15200,20, 0xeb15280,20, 0xeb15300,8, 0xeb15340,4, 0xeb15380,15, 0xeb153c0,15, 0xeb15400,9, 0xeb15430,5, 0xeb16000,6, 0xeb16020,1, 0xeb16028,2, 0xeb16040,11, 0xeb16070,2, 0xeb18000,82, 0xeb18200,2, 0xeb18240,9, 0xeb18280,7, 0xeb18400,82, 0xeb18604,6, 0xeb18700,15, 0xeb18740,9, 0xeb18780,6, 0xeb187a0,6, 0xeb18800,2, 0xeb18810,3, 0xeb18880,24, 0xeb188e4,1, 0xeb188f0,12, 0xeb20000,22, 0xeb20080,22, 0xeb20100,5, 0xeb20120,5, 0xeb20140,3, 0xeb20160,16, 0xeb201c0,7, 0xeb201e0,2, 0xeb20200,7, 0xeb20220,2, 0xeb20400,15, 0xeb20440,3, 0xeb20450,3, 0xeb20460,24, 0xeb20500,15, 0xeb20540,3, 0xeb20550,3, 0xeb20560,24, 0xeb20600,15, 0xeb20640,3, 0xeb20650,3, 0xeb20660,24, 0xeb20700,15, 0xeb20740,3, 0xeb20750,3, 0xeb20760,24, 0xeb20800,4, 0xeb20820,16, 0xeb20880,10, 0xeb208c0,10, 0xeb20900,6, 0xeb20920,6, 0xeb20940,4, 0xeb20980,13, 0xeb209c0,13, 0xeb20a00,9, 0xeb21000,86, 0xeb21200,2, 0xeb21240,9, 0xeb21280,7, 0xeb21400,86, 0xeb21604,6, 0xeb21800,86, 0xeb21a00,2, 0xeb21a40,9, 0xeb21a80,7, 0xeb21c00,86, 0xeb21e04,6, 0xeb22000,15, 0xeb22040,4, 0xeb22060,17, 0xeb220c0,6, 0xeb220e0,4, 0xeb220f4,11, 0xeb22128,38, 0xeb221c4,2, 0xeb221d0,4, 0xeb22200,1, 0xeb24000,22, 0xeb24080,22, 0xeb24100,5, 0xeb24120,5, 0xeb24140,3, 0xeb24160,16, 0xeb241c0,7, 0xeb241e0,2, 0xeb24200,7, 0xeb24220,2, 0xeb24400,15, 0xeb24440,3, 0xeb24450,3, 0xeb24460,24, 0xeb24500,15, 0xeb24540,3, 0xeb24550,3, 0xeb24560,24, 0xeb24600,15, 0xeb24640,3, 0xeb24650,3, 0xeb24660,24, 0xeb24700,15, 0xeb24740,3, 0xeb24750,3, 0xeb24760,24, 0xeb24800,4, 0xeb24820,16, 0xeb24880,10, 0xeb248c0,10, 0xeb24900,6, 0xeb24920,6, 0xeb24940,4, 0xeb24980,13, 0xeb249c0,13, 0xeb24a00,9, 0xeb25000,86, 0xeb25200,2, 0xeb25240,9, 0xeb25280,7, 0xeb25400,86, 0xeb25604,6, 0xeb25800,86, 0xeb25a00,2, 0xeb25a40,9, 0xeb25a80,7, 0xeb25c00,86, 0xeb25e04,6, 0xeb26000,15, 0xeb26040,4, 0xeb26060,17, 0xeb260c0,6, 0xeb260e0,4, 0xeb260f4,11, 0xeb26128,38, 0xeb261c4,2, 0xeb261d0,4, 0xeb26200,1, 0xeb28000,9, 0xeb28040,9, 0xeb28080,5, 0xeb28100,21, 0xeb28160,5, 0xeb28180,45, 0xeb28240,13, 0xeb28280,9, 0xeb28400,9, 0xeb28440,9, 0xeb28480,5, 0xeb28500,21, 0xeb28560,5, 0xeb28580,45, 0xeb28640,13, 0xeb28680,9, 0xeb28800,12, 0xeb28900,15, 0xeb28940,4, 0xeb28960,17, 0xeb289c0,6, 0xeb289e0,4, 0xeb289f4,29, 0xeb2c000,30, 0xeb2c080,3, 0xeb2c090,19, 0xeb2c100,30, 0xeb2c180,3, 0xeb2c190,19, 0xeb2c200,30, 0xeb2c280,3, 0xeb2c290,19, 0xeb2c300,30, 0xeb2c380,3, 0xeb2c390,19, 0xeb2c400,30, 0xeb2c480,3, 0xeb2c490,19, 0xeb2c500,30, 0xeb2c580,3, 0xeb2c590,19, 0xeb2c600,30, 0xeb2c680,3, 0xeb2c690,19, 0xeb2c700,30, 0xeb2c780,3, 0xeb2c790,19, 0xeb2c800,12, 0xeb2c844,1, 0xeb2c854,8, 0xeb2c880,7, 0xeb2c8a0,2, 0xeb2c8ac,2, 0xeb2c8c0,26, 0xeb2c980,4, 0xeb2c9a0,5, 0xeb2c9c0,1, 0xeb2d000,3, 0xeb2d010,3, 0xeb2d020,3, 0xeb2d030,3, 0xeb2d040,3, 0xeb2d050,3, 0xeb2d060,3, 0xeb2d070,3, 0xeb2d080,6, 0xeb2d0a0,6, 0xeb2d0c0,6, 0xeb2d0e0,6, 0xeb2d100,6, 0xeb2d120,6, 0xeb2d140,6, 0xeb2d160,6, 0xeb2d200,68, 0xeb2d400,1, 0xeb2d804,1, 0xeb2d844,54, 0xeb2da00,12, 0xeb2da40,12, 0xeb2da80,12, 0xeb2dac0,12, 0xeb2db00,12, 0xeb2db40,12, 0xeb2db80,12, 0xeb2dbc0,12, 0xeb2dc00,28, 0xeb2dc80,10, 0xeb2e000,3, 0xeb2e020,6, 0xeb2e040,6, 0xeb2e060,15, 0xeb2e100,26, 0xeb2e180,15, 0xeb2e200,15, 0xeb2e240,4, 0xeb2e260,17, 0xeb2e2c0,6, 0xeb2e2e0,4, 0xeb2e2f4,18, 0xeb2e340,4, 0xeb2e360,17, 0xeb2e3c0,6, 0xeb2e3e0,4, 0xeb2e3f4,15, 0xeb30000,1, 0xeb31000,1020, 0xeb32000,194, 0xeb33000,1020, 0xeb34000,1020, 0xeb35000,1020, 0xeb36000,1020, 0xeb37000,1020, 0xeb38000,1020, 0xeb39000,1020, 0xeb3a000,1020, 0xeb3b000,194, 0xeb3c000,3, 0xeb3c010,13, 0xeb3c080,16, 0xeb3c100,20, 0xeb3c184,1, 0xeb3c18c,4, 0xeb3c200,3, 0xeb3c210,13, 0xeb3c280,16, 0xeb3c300,20, 0xeb3c384,1, 0xeb3c38c,4, 0xeb3c400,3, 0xeb3c410,13, 0xeb3c480,16, 0xeb3c500,20, 0xeb3c584,1, 0xeb3c58c,4, 0xeb3c600,3, 0xeb3c610,13, 0xeb3c680,16, 0xeb3c700,20, 0xeb3c784,1, 0xeb3c78c,4, 0xeb3c800,3, 0xeb3c810,13, 0xeb3c880,16, 0xeb3c900,20, 0xeb3c984,1, 0xeb3c98c,4, 0xeb3ca00,3, 0xeb3ca10,13, 0xeb3ca80,16, 0xeb3cb00,20, 0xeb3cb84,1, 0xeb3cb8c,4, 0xeb3cc00,3, 0xeb3cc10,13, 0xeb3cc80,16, 0xeb3cd00,20, 0xeb3cd84,1, 0xeb3cd8c,4, 0xeb3ce00,3, 0xeb3ce10,13, 0xeb3ce80,16, 0xeb3cf00,20, 0xeb3cf84,1, 0xeb3cf8c,4, 0xeb3d000,3, 0xeb3d010,13, 0xeb3d080,16, 0xeb3d100,20, 0xeb3d184,1, 0xeb3d18c,4, 0xeb3d200,18, 0xeb3d250,2, 0xeb3d260,4, 0xeb3e000,1, 0xeb3e014,1, 0xeb3e01c,19, 0xeb3e080,1, 0xeb3e094,1, 0xeb3e09c,19, 0xeb3e100,8, 0xeb3e200,13, 0xeb3e240,9, 0xeb3e280,12, 0xeb3e2c0,2, 0xeb3e2e0,12, 0xeb40000,3, 0xeb40080,20, 0xeb40100,10, 0xeb40140,1, 0xeb40154,1, 0xeb4015c,2, 0xeb40200,15, 0xeb40240,4, 0xeb40260,17, 0xeb402c0,6, 0xeb402e0,2, 0xeb402ec,3, 0xeb40300,8, 0xeb40324,1, 0xeb40400,4, 0xeb40440,20, 0xeb404c0,9, 0xeb40500,33, 0xeb40600,11, 0xeb40640,11, 0xeb40680,1, 0xeb42000,1, 0xeb42200,4, 0xeb42300,53, 0xeb42400,4, 0xeb42500,40, 0xeb42600,15, 0xeb42640,4, 0xeb42660,17, 0xeb426c0,6, 0xeb426e0,2, 0xeb426ec,3, 0xeb42700,8, 0xeb42724,1, 0xeb42800,20, 0xeb42c00,53, 0xeb42d00,53, 0xeb42e00,1, 0xeb43000,40, 0xeb43100,40, 0xeb43200,1, 0xeb43400,1, 0xeb43804,1, 0xeb43844,39, 0xeb43900,3, 0xeb43a00,3, 0xeb43a44,1, 0xeb43a50,4, 0xeb43a80,1, 0xeb44000,2, 0xeb44200,27, 0xeb44280,4, 0xeb442c0,25, 0xeb44340,6, 0xeb44360,2, 0xeb4436c,3, 0xeb44380,8, 0xeb443a4,1, 0xeb44400,12, 0xeb44440,1, 0xeb48000,3, 0xeb48080,20, 0xeb48100,10, 0xeb48140,1, 0xeb48154,1, 0xeb4815c,2, 0xeb48200,15, 0xeb48240,4, 0xeb48260,17, 0xeb482c0,6, 0xeb482e0,2, 0xeb482ec,3, 0xeb48300,8, 0xeb48324,1, 0xeb48400,4, 0xeb48440,20, 0xeb484c0,9, 0xeb48500,33, 0xeb48600,11, 0xeb48640,11, 0xeb48680,1, 0xeb4a000,1, 0xeb4a200,4, 0xeb4a300,53, 0xeb4a400,4, 0xeb4a500,40, 0xeb4a600,15, 0xeb4a640,4, 0xeb4a660,17, 0xeb4a6c0,6, 0xeb4a6e0,2, 0xeb4a6ec,3, 0xeb4a700,8, 0xeb4a724,1, 0xeb4a800,20, 0xeb4ac00,53, 0xeb4ad00,53, 0xeb4ae00,1, 0xeb4b000,40, 0xeb4b100,40, 0xeb4b200,1, 0xeb4b400,1, 0xeb4b804,1, 0xeb4b844,39, 0xeb4b900,3, 0xeb4ba00,3, 0xeb4ba44,1, 0xeb4ba50,4, 0xeb4ba80,1, 0xeb4c000,2, 0xeb4c200,27, 0xeb4c280,4, 0xeb4c2c0,25, 0xeb4c340,6, 0xeb4c360,2, 0xeb4c36c,3, 0xeb4c380,8, 0xeb4c3a4,1, 0xeb4c400,12, 0xeb4c440,1, 0xeb50000,4, 0xeb50020,3, 0xeb50030,2, 0xeb50200,1, 0xeb50224,10, 0xeb50250,5, 0xeb50280,1, 0xeb50288,24, 0xeb50300,3, 0xeb50404,1, 0xeb50414,5, 0xeb50500,36, 0xeb50600,3, 0xeb50800,2, 0xeb51000,1, 0xeb51008,21, 0xeb51080,1, 0xeb51088,21, 0xeb51100,1, 0xeb51108,21, 0xeb51180,1, 0xeb51188,21, 0xeb51200,1, 0xeb51208,21, 0xeb51280,1, 0xeb51288,21, 0xeb51300,1, 0xeb51308,21, 0xeb51380,1, 0xeb51388,21, 0xeb51400,21, 0xeb51800,142, 0xeb51c00,1, 0xeb52000,4, 0xeb52100,39, 0xeb52200,3, 0xeb52214,3, 0xeb54004,1, 0xeb54020,16, 0xeb54080,2, 0xeb54094,1, 0xeb5409c,2, 0xeb540c0,6, 0xeb54100,8, 0xeb58004,17, 0xeb58054,1, 0xeb5805c,2, 0xeb58080,1, 0xeb580a0,2, 0xeb580b4,4, 0xeb58100,2, 0xeb58200,8, 0xeb58400,1, 0xeb58600,27, 0xeb58680,4, 0xeb586c0,25, 0xeb58740,6, 0xeb58760,2, 0xeb5876c,3, 0xeb58780,8, 0xeb587a4,3, 0xeb58800,44, 0xeb58900,1, 0xeb60000,1, 0xeb60200,27, 0xeb60280,4, 0xeb602c0,25, 0xeb60340,6, 0xeb60360,2, 0xeb6036c,3, 0xeb60380,8, 0xeb603a4,1, 0xeb60400,20, 0xeb60480,3, 0xeb60490,9, 0xeb80000,198, 0xeb80400,2, 0xeb80440,9, 0xeb80480,7, 0xeb80800,198, 0xeb80c00,2, 0xeb80c40,9, 0xeb80c80,7, 0xeb81000,198, 0xeb81400,198, 0xeb81804,6, 0xeb81824,6, 0xeb81880,2, 0xeb81904,1, 0xeb81918,28, 0xeb819a0,6, 0xeb819c0,6, 0xeb81c00,2, 0xeb81d00,2, 0xeb81e04,1, 0xeb81e74,43, 0xeb82000,2, 0xeb82100,2, 0xeb82204,1, 0xeb82274,43, 0xeb82400,3, 0xeb82600,27, 0xeb82680,4, 0xeb826c0,25, 0xeb82740,6, 0xeb82760,4, 0xeb82774,11, 0xeb827a4,4, 0xeb82800,4, 0xeb82900,34, 0xeb82a00,4, 0xeb82b00,34, 0xeb82c00,3, 0xeb82c10,12, 0xeb82e00,56, 0xeb82ee4,4, 0xeb82f00,4, 0xeb83000,1, 0xeb88000,4, 0xeb88100,42, 0xeb88200,1, 0xeb88210,3, 0xeb88220,3, 0xeb88230,3, 0xeb88240,1, 0xeb88248,3, 0xeb88400,4, 0xeb88500,58, 0xeb88600,1, 0xeb88610,3, 0xeb88620,3, 0xeb88630,3, 0xeb88640,1, 0xeb88648,3, 0xeb88800,4, 0xeb88900,36, 0xeb88a00,1, 0xeb88c00,4, 0xeb88c80,27, 0xeb88d00,1, 0xeb88d10,3, 0xeb88d20,3, 0xeb88d30,3, 0xeb88d40,1, 0xeb88d48,3, 0xeb88e00,4, 0xeb88e80,31, 0xeb88f00,1, 0xeb88f10,3, 0xeb88f20,3, 0xeb88f30,3, 0xeb88f40,1, 0xeb88f48,3, 0xeb89000,4, 0xeb89040,13, 0xeb89080,1, 0xeb89200,15, 0xeb89240,4, 0xeb89260,17, 0xeb892c0,6, 0xeb892e0,2, 0xeb892ec,3, 0xeb89300,8, 0xeb89324,8, 0xeb89400,68, 0xeb89600,60, 0xeb89700,4, 0xeb89720,5, 0xeb89740,1, 0xeb89780,2, 0xeb8978c,2, 0xeb897a0,1, 0xeb897c0,12, 0xeb89800,7, 0xeb89820,5, 0xeb89900,49, 0xeb89a00,1, 0xeb89a08,23, 0xeb89a84,1, 0xeb89a8c,1, 0xeb89a94,1, 0xeb89a9c,2, 0xeb89ac0,1, 0xeb89c00,10, 0xeb89c40,1, 0xeb89c50,3, 0xeb89c80,10, 0xeb89cc0,12, 0xeb89d00,3, 0xeb89e00,1, 0xeb8a000,4, 0xeb8a100,42, 0xeb8a200,1, 0xeb8a210,3, 0xeb8a220,3, 0xeb8a230,3, 0xeb8a240,1, 0xeb8a248,3, 0xeb8a400,4, 0xeb8a500,58, 0xeb8a600,1, 0xeb8a610,3, 0xeb8a620,3, 0xeb8a630,3, 0xeb8a640,1, 0xeb8a648,3, 0xeb8a800,4, 0xeb8a900,36, 0xeb8aa00,1, 0xeb8ac00,4, 0xeb8ac80,27, 0xeb8ad00,1, 0xeb8ad10,3, 0xeb8ad20,3, 0xeb8ad30,3, 0xeb8ad40,1, 0xeb8ad48,3, 0xeb8ae00,4, 0xeb8ae80,31, 0xeb8af00,1, 0xeb8af10,3, 0xeb8af20,3, 0xeb8af30,3, 0xeb8af40,1, 0xeb8af48,3, 0xeb8b000,4, 0xeb8b040,13, 0xeb8b080,1, 0xeb8b200,15, 0xeb8b240,4, 0xeb8b260,17, 0xeb8b2c0,6, 0xeb8b2e0,2, 0xeb8b2ec,3, 0xeb8b300,8, 0xeb8b324,8, 0xeb8b400,68, 0xeb8b600,60, 0xeb8b700,4, 0xeb8b720,5, 0xeb8b740,1, 0xeb8b780,2, 0xeb8b78c,2, 0xeb8b7a0,1, 0xeb8b7c0,12, 0xeb8b800,7, 0xeb8b820,5, 0xeb8b900,49, 0xeb8ba00,1, 0xeb8ba08,23, 0xeb8ba84,1, 0xeb8ba8c,1, 0xeb8ba94,1, 0xeb8ba9c,2, 0xeb8bac0,1, 0xeb8bc00,10, 0xeb8bc40,1, 0xeb8bc50,3, 0xeb8bc80,10, 0xeb8bcc0,12, 0xeb8bd00,3, 0xeb8be00,1, 0xeb8c000,20, 0xeb8c080,3, 0xeb8c090,1, 0xeb8c098,4, 0xeb90000,49, 0xeb90100,12, 0xeb90140,4, 0xeb90184,1, 0xeb90198,2, 0xeb901a4,1, 0xeb901b8,7, 0xeb901e0,4, 0xeb90200,20, 0xeb90280,3, 0xeb90290,9, 0xeb902c0,6, 0xeb902e0,1, 0xeb902e8,7, 0xeb90400,49, 0xeb90500,12, 0xeb90540,4, 0xeb90584,1, 0xeb90598,2, 0xeb905a4,1, 0xeb905b8,7, 0xeb905e0,4, 0xeb90600,20, 0xeb90680,3, 0xeb90690,9, 0xeb906c0,6, 0xeb906e0,1, 0xeb906e8,7, 0xeb90800,49, 0xeb90900,12, 0xeb90940,4, 0xeb90984,1, 0xeb90998,2, 0xeb909a4,1, 0xeb909b8,7, 0xeb909e0,4, 0xeb90a00,20, 0xeb90a80,3, 0xeb90a90,9, 0xeb90ac0,6, 0xeb90ae0,1, 0xeb90ae8,7, 0xeb90c00,49, 0xeb90d00,12, 0xeb90d40,4, 0xeb90d84,1, 0xeb90d98,2, 0xeb90da4,1, 0xeb90db8,7, 0xeb90de0,4, 0xeb90e00,20, 0xeb90e80,3, 0xeb90e90,9, 0xeb90ec0,6, 0xeb90ee0,1, 0xeb90ee8,7, 0xeb91000,49, 0xeb91100,12, 0xeb91140,4, 0xeb91184,1, 0xeb91198,2, 0xeb911a4,1, 0xeb911b8,7, 0xeb911e0,4, 0xeb91200,20, 0xeb91280,3, 0xeb91290,9, 0xeb912c0,6, 0xeb912e0,1, 0xeb912e8,7, 0xeb91400,49, 0xeb91500,12, 0xeb91540,4, 0xeb91584,1, 0xeb91598,2, 0xeb915a4,1, 0xeb915b8,7, 0xeb915e0,4, 0xeb91600,20, 0xeb91680,3, 0xeb91690,9, 0xeb916c0,6, 0xeb916e0,1, 0xeb916e8,7, 0xeb91800,49, 0xeb91900,12, 0xeb91940,4, 0xeb91984,1, 0xeb91998,2, 0xeb919a4,1, 0xeb919b8,7, 0xeb919e0,4, 0xeb91a00,20, 0xeb91a80,3, 0xeb91a90,9, 0xeb91ac0,6, 0xeb91ae0,1, 0xeb91ae8,7, 0xeb92000,20, 0xeb92080,10, 0xeb92100,20, 0xeb92180,10, 0xeb92200,12, 0xeb92400,20, 0xeb92480,10, 0xeb92500,20, 0xeb92580,10, 0xeb92600,12, 0xeb92800,3, 0xeb92840,12, 0xeb92880,12, 0xeb928c0,12, 0xeb92900,12, 0xeb92940,12, 0xeb92980,12, 0xeb929c0,12, 0xeb92a00,12, 0xeb92c00,12, 0xeb92c40,7, 0xeb92c60,10, 0xeb93004,1, 0xeb93044,43, 0xeb93100,7, 0xeb93120,7, 0xeb93140,2, 0xeb9314c,2, 0xeb93160,2, 0xeb9316c,2, 0xeb93180,18, 0xeb93200,2, 0xeb93220,10, 0xeb93260,20, 0xeb932c0,9, 0xeb93300,15, 0xeb93340,9, 0xeb93380,6, 0xeb933a0,4, 0xeb93400,5, 0xeb94000,53, 0xeb94100,3, 0xeb94110,15, 0xeb94200,53, 0xeb94300,3, 0xeb94310,15, 0xeb94400,5, 0xeb94420,5, 0xeb94440,18, 0xeb94800,3, 0xeb94810,2, 0xeb94820,3, 0xeb94830,2, 0xeb94840,1, 0xeb95000,7, 0xeb95020,7, 0xeb95080,19, 0xeb95100,19, 0xeb95180,25, 0xeb95200,20, 0xeb95280,20, 0xeb95300,8, 0xeb95340,4, 0xeb95380,15, 0xeb953c0,15, 0xeb95400,9, 0xeb95430,5, 0xeb96000,6, 0xeb96020,1, 0xeb96028,2, 0xeb96040,11, 0xeb96070,2, 0xeb98000,82, 0xeb98200,2, 0xeb98240,9, 0xeb98280,7, 0xeb98400,82, 0xeb98604,6, 0xeb98700,15, 0xeb98740,9, 0xeb98780,6, 0xeb987a0,6, 0xeb98800,2, 0xeb98810,3, 0xeb98880,24, 0xeb988e4,1, 0xeb988f0,12, 0xeba0000,22, 0xeba0080,22, 0xeba0100,5, 0xeba0120,5, 0xeba0140,3, 0xeba0160,16, 0xeba01c0,7, 0xeba01e0,2, 0xeba0200,7, 0xeba0220,2, 0xeba0400,15, 0xeba0440,3, 0xeba0450,3, 0xeba0460,24, 0xeba0500,15, 0xeba0540,3, 0xeba0550,3, 0xeba0560,24, 0xeba0600,15, 0xeba0640,3, 0xeba0650,3, 0xeba0660,24, 0xeba0700,15, 0xeba0740,3, 0xeba0750,3, 0xeba0760,24, 0xeba0800,4, 0xeba0820,16, 0xeba0880,10, 0xeba08c0,10, 0xeba0900,6, 0xeba0920,6, 0xeba0940,4, 0xeba0980,13, 0xeba09c0,13, 0xeba0a00,9, 0xeba1000,86, 0xeba1200,2, 0xeba1240,9, 0xeba1280,7, 0xeba1400,86, 0xeba1604,6, 0xeba1800,86, 0xeba1a00,2, 0xeba1a40,9, 0xeba1a80,7, 0xeba1c00,86, 0xeba1e04,6, 0xeba2000,15, 0xeba2040,4, 0xeba2060,17, 0xeba20c0,6, 0xeba20e0,4, 0xeba20f4,11, 0xeba2128,38, 0xeba21c4,2, 0xeba21d0,4, 0xeba2200,1, 0xeba4000,22, 0xeba4080,22, 0xeba4100,5, 0xeba4120,5, 0xeba4140,3, 0xeba4160,16, 0xeba41c0,7, 0xeba41e0,2, 0xeba4200,7, 0xeba4220,2, 0xeba4400,15, 0xeba4440,3, 0xeba4450,3, 0xeba4460,24, 0xeba4500,15, 0xeba4540,3, 0xeba4550,3, 0xeba4560,24, 0xeba4600,15, 0xeba4640,3, 0xeba4650,3, 0xeba4660,24, 0xeba4700,15, 0xeba4740,3, 0xeba4750,3, 0xeba4760,24, 0xeba4800,4, 0xeba4820,16, 0xeba4880,10, 0xeba48c0,10, 0xeba4900,6, 0xeba4920,6, 0xeba4940,4, 0xeba4980,13, 0xeba49c0,13, 0xeba4a00,9, 0xeba5000,86, 0xeba5200,2, 0xeba5240,9, 0xeba5280,7, 0xeba5400,86, 0xeba5604,6, 0xeba5800,86, 0xeba5a00,2, 0xeba5a40,9, 0xeba5a80,7, 0xeba5c00,86, 0xeba5e04,6, 0xeba6000,15, 0xeba6040,4, 0xeba6060,17, 0xeba60c0,6, 0xeba60e0,4, 0xeba60f4,11, 0xeba6128,38, 0xeba61c4,2, 0xeba61d0,4, 0xeba6200,1, 0xeba8000,9, 0xeba8040,9, 0xeba8080,5, 0xeba8100,21, 0xeba8160,5, 0xeba8180,45, 0xeba8240,13, 0xeba8280,9, 0xeba8400,9, 0xeba8440,9, 0xeba8480,5, 0xeba8500,21, 0xeba8560,5, 0xeba8580,45, 0xeba8640,13, 0xeba8680,9, 0xeba8800,12, 0xeba8900,15, 0xeba8940,4, 0xeba8960,17, 0xeba89c0,6, 0xeba89e0,4, 0xeba89f4,29, 0xebac000,30, 0xebac080,3, 0xebac090,19, 0xebac100,30, 0xebac180,3, 0xebac190,19, 0xebac200,30, 0xebac280,3, 0xebac290,19, 0xebac300,30, 0xebac380,3, 0xebac390,19, 0xebac400,30, 0xebac480,3, 0xebac490,19, 0xebac500,30, 0xebac580,3, 0xebac590,19, 0xebac600,30, 0xebac680,3, 0xebac690,19, 0xebac700,30, 0xebac780,3, 0xebac790,19, 0xebac800,12, 0xebac844,1, 0xebac854,8, 0xebac880,7, 0xebac8a0,2, 0xebac8ac,2, 0xebac8c0,26, 0xebac980,4, 0xebac9a0,5, 0xebac9c0,1, 0xebad000,3, 0xebad010,3, 0xebad020,3, 0xebad030,3, 0xebad040,3, 0xebad050,3, 0xebad060,3, 0xebad070,3, 0xebad080,6, 0xebad0a0,6, 0xebad0c0,6, 0xebad0e0,6, 0xebad100,6, 0xebad120,6, 0xebad140,6, 0xebad160,6, 0xebad200,68, 0xebad400,1, 0xebad804,1, 0xebad844,54, 0xebada00,12, 0xebada40,12, 0xebada80,12, 0xebadac0,12, 0xebadb00,12, 0xebadb40,12, 0xebadb80,12, 0xebadbc0,12, 0xebadc00,28, 0xebadc80,10, 0xebae000,3, 0xebae020,6, 0xebae040,6, 0xebae060,15, 0xebae100,26, 0xebae180,15, 0xebae200,15, 0xebae240,4, 0xebae260,17, 0xebae2c0,6, 0xebae2e0,4, 0xebae2f4,18, 0xebae340,4, 0xebae360,17, 0xebae3c0,6, 0xebae3e0,4, 0xebae3f4,15, 0xebb0000,1, 0xebb1000,1020, 0xebb2000,194, 0xebb3000,1020, 0xebb4000,1020, 0xebb5000,1020, 0xebb6000,1020, 0xebb7000,1020, 0xebb8000,1020, 0xebb9000,1020, 0xebba000,1020, 0xebbb000,194, 0xebbc000,3, 0xebbc010,13, 0xebbc080,16, 0xebbc100,20, 0xebbc184,1, 0xebbc18c,4, 0xebbc200,3, 0xebbc210,13, 0xebbc280,16, 0xebbc300,20, 0xebbc384,1, 0xebbc38c,4, 0xebbc400,3, 0xebbc410,13, 0xebbc480,16, 0xebbc500,20, 0xebbc584,1, 0xebbc58c,4, 0xebbc600,3, 0xebbc610,13, 0xebbc680,16, 0xebbc700,20, 0xebbc784,1, 0xebbc78c,4, 0xebbc800,3, 0xebbc810,13, 0xebbc880,16, 0xebbc900,20, 0xebbc984,1, 0xebbc98c,4, 0xebbca00,3, 0xebbca10,13, 0xebbca80,16, 0xebbcb00,20, 0xebbcb84,1, 0xebbcb8c,4, 0xebbcc00,3, 0xebbcc10,13, 0xebbcc80,16, 0xebbcd00,20, 0xebbcd84,1, 0xebbcd8c,4, 0xebbce00,3, 0xebbce10,13, 0xebbce80,16, 0xebbcf00,20, 0xebbcf84,1, 0xebbcf8c,4, 0xebbd000,3, 0xebbd010,13, 0xebbd080,16, 0xebbd100,20, 0xebbd184,1, 0xebbd18c,4, 0xebbd200,18, 0xebbd250,2, 0xebbd260,4, 0xebbe000,1, 0xebbe014,1, 0xebbe01c,19, 0xebbe080,1, 0xebbe094,1, 0xebbe09c,19, 0xebbe100,8, 0xebbe200,13, 0xebbe240,9, 0xebbe280,12, 0xebbe2c0,2, 0xebbe2e0,12, 0xebc0000,3, 0xebc0080,20, 0xebc0100,10, 0xebc0140,1, 0xebc0154,1, 0xebc015c,2, 0xebc0200,15, 0xebc0240,4, 0xebc0260,17, 0xebc02c0,6, 0xebc02e0,2, 0xebc02ec,3, 0xebc0300,8, 0xebc0324,1, 0xebc0400,4, 0xebc0440,20, 0xebc04c0,9, 0xebc0500,33, 0xebc0600,11, 0xebc0640,11, 0xebc0680,1, 0xebc2000,1, 0xebc2200,4, 0xebc2300,53, 0xebc2400,4, 0xebc2500,40, 0xebc2600,15, 0xebc2640,4, 0xebc2660,17, 0xebc26c0,6, 0xebc26e0,2, 0xebc26ec,3, 0xebc2700,8, 0xebc2724,1, 0xebc2800,20, 0xebc2c00,53, 0xebc2d00,53, 0xebc2e00,1, 0xebc3000,40, 0xebc3100,40, 0xebc3200,1, 0xebc3400,1, 0xebc3804,1, 0xebc3844,39, 0xebc3900,3, 0xebc3a00,3, 0xebc3a44,1, 0xebc3a50,4, 0xebc3a80,1, 0xebc4000,2, 0xebc4200,27, 0xebc4280,4, 0xebc42c0,25, 0xebc4340,6, 0xebc4360,2, 0xebc436c,3, 0xebc4380,8, 0xebc43a4,1, 0xebc4400,12, 0xebc4440,1, 0xebc8000,3, 0xebc8080,20, 0xebc8100,10, 0xebc8140,1, 0xebc8154,1, 0xebc815c,2, 0xebc8200,15, 0xebc8240,4, 0xebc8260,17, 0xebc82c0,6, 0xebc82e0,2, 0xebc82ec,3, 0xebc8300,8, 0xebc8324,1, 0xebc8400,4, 0xebc8440,20, 0xebc84c0,9, 0xebc8500,33, 0xebc8600,11, 0xebc8640,11, 0xebc8680,1, 0xebca000,1, 0xebca200,4, 0xebca300,53, 0xebca400,4, 0xebca500,40, 0xebca600,15, 0xebca640,4, 0xebca660,17, 0xebca6c0,6, 0xebca6e0,2, 0xebca6ec,3, 0xebca700,8, 0xebca724,1, 0xebca800,20, 0xebcac00,53, 0xebcad00,53, 0xebcae00,1, 0xebcb000,40, 0xebcb100,40, 0xebcb200,1, 0xebcb400,1, 0xebcb804,1, 0xebcb844,39, 0xebcb900,3, 0xebcba00,3, 0xebcba44,1, 0xebcba50,4, 0xebcba80,1, 0xebcc000,2, 0xebcc200,27, 0xebcc280,4, 0xebcc2c0,25, 0xebcc340,6, 0xebcc360,2, 0xebcc36c,3, 0xebcc380,8, 0xebcc3a4,1, 0xebcc400,12, 0xebcc440,1, 0xebd0000,4, 0xebd0020,3, 0xebd0030,2, 0xebd0200,1, 0xebd0224,10, 0xebd0250,5, 0xebd0280,1, 0xebd0288,24, 0xebd0300,3, 0xebd0404,1, 0xebd0414,5, 0xebd0500,36, 0xebd0600,3, 0xebd0800,2, 0xebd1000,1, 0xebd1008,21, 0xebd1080,1, 0xebd1088,21, 0xebd1100,1, 0xebd1108,21, 0xebd1180,1, 0xebd1188,21, 0xebd1200,1, 0xebd1208,21, 0xebd1280,1, 0xebd1288,21, 0xebd1300,1, 0xebd1308,21, 0xebd1380,1, 0xebd1388,21, 0xebd1400,21, 0xebd1800,142, 0xebd1c00,1, 0xebd2000,4, 0xebd2100,39, 0xebd2200,3, 0xebd2214,3, 0xebd4004,1, 0xebd4020,16, 0xebd4080,2, 0xebd4094,1, 0xebd409c,2, 0xebd40c0,6, 0xebd4100,8, 0xebd8004,17, 0xebd8054,1, 0xebd805c,2, 0xebd8080,1, 0xebd80a0,2, 0xebd80b4,4, 0xebd8100,2, 0xebd8200,8, 0xebd8400,1, 0xebd8600,27, 0xebd8680,4, 0xebd86c0,25, 0xebd8740,6, 0xebd8760,2, 0xebd876c,3, 0xebd8780,8, 0xebd87a4,3, 0xebd8800,44, 0xebd8900,1, 0xebe0000,1, 0xebe0200,27, 0xebe0280,4, 0xebe02c0,25, 0xebe0340,6, 0xebe0360,2, 0xebe036c,3, 0xebe0380,8, 0xebe03a4,1, 0xebe0400,20, 0xebe0480,3, 0xebe0490,9, 0xec00000,198, 0xec00400,2, 0xec00440,9, 0xec00480,7, 0xec00800,198, 0xec00c00,2, 0xec00c40,9, 0xec00c80,7, 0xec01000,198, 0xec01400,198, 0xec01804,6, 0xec01824,6, 0xec01880,2, 0xec01904,1, 0xec01918,28, 0xec019a0,6, 0xec019c0,6, 0xec01c00,2, 0xec01d00,2, 0xec01e04,1, 0xec01e74,43, 0xec02000,2, 0xec02100,2, 0xec02204,1, 0xec02274,43, 0xec02400,3, 0xec02600,27, 0xec02680,4, 0xec026c0,25, 0xec02740,6, 0xec02760,4, 0xec02774,11, 0xec027a4,4, 0xec02800,4, 0xec02900,34, 0xec02a00,4, 0xec02b00,34, 0xec02c00,3, 0xec02c10,12, 0xec02e00,56, 0xec02ee4,4, 0xec02f00,4, 0xec03000,1, 0xec08000,4, 0xec08100,42, 0xec08200,1, 0xec08210,3, 0xec08220,3, 0xec08230,3, 0xec08240,1, 0xec08248,3, 0xec08400,4, 0xec08500,58, 0xec08600,1, 0xec08610,3, 0xec08620,3, 0xec08630,3, 0xec08640,1, 0xec08648,3, 0xec08800,4, 0xec08900,36, 0xec08a00,1, 0xec08c00,4, 0xec08c80,27, 0xec08d00,1, 0xec08d10,3, 0xec08d20,3, 0xec08d30,3, 0xec08d40,1, 0xec08d48,3, 0xec08e00,4, 0xec08e80,31, 0xec08f00,1, 0xec08f10,3, 0xec08f20,3, 0xec08f30,3, 0xec08f40,1, 0xec08f48,3, 0xec09000,4, 0xec09040,13, 0xec09080,1, 0xec09200,15, 0xec09240,4, 0xec09260,17, 0xec092c0,6, 0xec092e0,2, 0xec092ec,3, 0xec09300,8, 0xec09324,8, 0xec09400,68, 0xec09600,60, 0xec09700,4, 0xec09720,5, 0xec09740,1, 0xec09780,2, 0xec0978c,2, 0xec097a0,1, 0xec097c0,12, 0xec09800,7, 0xec09820,5, 0xec09900,49, 0xec09a00,1, 0xec09a08,23, 0xec09a84,1, 0xec09a8c,1, 0xec09a94,1, 0xec09a9c,2, 0xec09ac0,1, 0xec09c00,10, 0xec09c40,1, 0xec09c50,3, 0xec09c80,10, 0xec09cc0,12, 0xec09d00,3, 0xec09e00,1, 0xec0a000,4, 0xec0a100,42, 0xec0a200,1, 0xec0a210,3, 0xec0a220,3, 0xec0a230,3, 0xec0a240,1, 0xec0a248,3, 0xec0a400,4, 0xec0a500,58, 0xec0a600,1, 0xec0a610,3, 0xec0a620,3, 0xec0a630,3, 0xec0a640,1, 0xec0a648,3, 0xec0a800,4, 0xec0a900,36, 0xec0aa00,1, 0xec0ac00,4, 0xec0ac80,27, 0xec0ad00,1, 0xec0ad10,3, 0xec0ad20,3, 0xec0ad30,3, 0xec0ad40,1, 0xec0ad48,3, 0xec0ae00,4, 0xec0ae80,31, 0xec0af00,1, 0xec0af10,3, 0xec0af20,3, 0xec0af30,3, 0xec0af40,1, 0xec0af48,3, 0xec0b000,4, 0xec0b040,13, 0xec0b080,1, 0xec0b200,15, 0xec0b240,4, 0xec0b260,17, 0xec0b2c0,6, 0xec0b2e0,2, 0xec0b2ec,3, 0xec0b300,8, 0xec0b324,8, 0xec0b400,68, 0xec0b600,60, 0xec0b700,4, 0xec0b720,5, 0xec0b740,1, 0xec0b780,2, 0xec0b78c,2, 0xec0b7a0,1, 0xec0b7c0,12, 0xec0b800,7, 0xec0b820,5, 0xec0b900,49, 0xec0ba00,1, 0xec0ba08,23, 0xec0ba84,1, 0xec0ba8c,1, 0xec0ba94,1, 0xec0ba9c,2, 0xec0bac0,1, 0xec0bc00,10, 0xec0bc40,1, 0xec0bc50,3, 0xec0bc80,10, 0xec0bcc0,12, 0xec0bd00,3, 0xec0be00,1, 0xec0c000,20, 0xec0c080,3, 0xec0c090,1, 0xec0c098,4, 0xec10000,49, 0xec10100,12, 0xec10140,4, 0xec10184,1, 0xec10198,2, 0xec101a4,1, 0xec101b8,7, 0xec101e0,4, 0xec10200,20, 0xec10280,3, 0xec10290,9, 0xec102c0,6, 0xec102e0,1, 0xec102e8,7, 0xec10400,49, 0xec10500,12, 0xec10540,4, 0xec10584,1, 0xec10598,2, 0xec105a4,1, 0xec105b8,7, 0xec105e0,4, 0xec10600,20, 0xec10680,3, 0xec10690,9, 0xec106c0,6, 0xec106e0,1, 0xec106e8,7, 0xec10800,49, 0xec10900,12, 0xec10940,4, 0xec10984,1, 0xec10998,2, 0xec109a4,1, 0xec109b8,7, 0xec109e0,4, 0xec10a00,20, 0xec10a80,3, 0xec10a90,9, 0xec10ac0,6, 0xec10ae0,1, 0xec10ae8,7, 0xec10c00,49, 0xec10d00,12, 0xec10d40,4, 0xec10d84,1, 0xec10d98,2, 0xec10da4,1, 0xec10db8,7, 0xec10de0,4, 0xec10e00,20, 0xec10e80,3, 0xec10e90,9, 0xec10ec0,6, 0xec10ee0,1, 0xec10ee8,7, 0xec11000,49, 0xec11100,12, 0xec11140,4, 0xec11184,1, 0xec11198,2, 0xec111a4,1, 0xec111b8,7, 0xec111e0,4, 0xec11200,20, 0xec11280,3, 0xec11290,9, 0xec112c0,6, 0xec112e0,1, 0xec112e8,7, 0xec11400,49, 0xec11500,12, 0xec11540,4, 0xec11584,1, 0xec11598,2, 0xec115a4,1, 0xec115b8,7, 0xec115e0,4, 0xec11600,20, 0xec11680,3, 0xec11690,9, 0xec116c0,6, 0xec116e0,1, 0xec116e8,7, 0xec11800,49, 0xec11900,12, 0xec11940,4, 0xec11984,1, 0xec11998,2, 0xec119a4,1, 0xec119b8,7, 0xec119e0,4, 0xec11a00,20, 0xec11a80,3, 0xec11a90,9, 0xec11ac0,6, 0xec11ae0,1, 0xec11ae8,7, 0xec12000,20, 0xec12080,10, 0xec12100,20, 0xec12180,10, 0xec12200,12, 0xec12400,20, 0xec12480,10, 0xec12500,20, 0xec12580,10, 0xec12600,12, 0xec12800,3, 0xec12840,12, 0xec12880,12, 0xec128c0,12, 0xec12900,12, 0xec12940,12, 0xec12980,12, 0xec129c0,12, 0xec12a00,12, 0xec12c00,12, 0xec12c40,7, 0xec12c60,10, 0xec13004,1, 0xec13044,43, 0xec13100,7, 0xec13120,7, 0xec13140,2, 0xec1314c,2, 0xec13160,2, 0xec1316c,2, 0xec13180,18, 0xec13200,2, 0xec13220,10, 0xec13260,20, 0xec132c0,9, 0xec13300,15, 0xec13340,9, 0xec13380,6, 0xec133a0,4, 0xec13400,5, 0xec14000,53, 0xec14100,3, 0xec14110,15, 0xec14200,53, 0xec14300,3, 0xec14310,15, 0xec14400,5, 0xec14420,5, 0xec14440,18, 0xec14800,3, 0xec14810,2, 0xec14820,3, 0xec14830,2, 0xec14840,1, 0xec15000,7, 0xec15020,7, 0xec15080,19, 0xec15100,19, 0xec15180,25, 0xec15200,20, 0xec15280,20, 0xec15300,8, 0xec15340,4, 0xec15380,15, 0xec153c0,15, 0xec15400,9, 0xec15430,5, 0xec16000,6, 0xec16020,1, 0xec16028,2, 0xec16040,11, 0xec16070,2, 0xec18000,82, 0xec18200,2, 0xec18240,9, 0xec18280,7, 0xec18400,82, 0xec18604,6, 0xec18700,15, 0xec18740,9, 0xec18780,6, 0xec187a0,6, 0xec18800,2, 0xec18810,3, 0xec18880,24, 0xec188e4,1, 0xec188f0,12, 0xec20000,22, 0xec20080,22, 0xec20100,5, 0xec20120,5, 0xec20140,3, 0xec20160,16, 0xec201c0,7, 0xec201e0,2, 0xec20200,7, 0xec20220,2, 0xec20400,15, 0xec20440,3, 0xec20450,3, 0xec20460,24, 0xec20500,15, 0xec20540,3, 0xec20550,3, 0xec20560,24, 0xec20600,15, 0xec20640,3, 0xec20650,3, 0xec20660,24, 0xec20700,15, 0xec20740,3, 0xec20750,3, 0xec20760,24, 0xec20800,4, 0xec20820,16, 0xec20880,10, 0xec208c0,10, 0xec20900,6, 0xec20920,6, 0xec20940,4, 0xec20980,13, 0xec209c0,13, 0xec20a00,9, 0xec21000,86, 0xec21200,2, 0xec21240,9, 0xec21280,7, 0xec21400,86, 0xec21604,6, 0xec21800,86, 0xec21a00,2, 0xec21a40,9, 0xec21a80,7, 0xec21c00,86, 0xec21e04,6, 0xec22000,15, 0xec22040,4, 0xec22060,17, 0xec220c0,6, 0xec220e0,4, 0xec220f4,11, 0xec22128,38, 0xec221c4,2, 0xec221d0,4, 0xec22200,1, 0xec24000,22, 0xec24080,22, 0xec24100,5, 0xec24120,5, 0xec24140,3, 0xec24160,16, 0xec241c0,7, 0xec241e0,2, 0xec24200,7, 0xec24220,2, 0xec24400,15, 0xec24440,3, 0xec24450,3, 0xec24460,24, 0xec24500,15, 0xec24540,3, 0xec24550,3, 0xec24560,24, 0xec24600,15, 0xec24640,3, 0xec24650,3, 0xec24660,24, 0xec24700,15, 0xec24740,3, 0xec24750,3, 0xec24760,24, 0xec24800,4, 0xec24820,16, 0xec24880,10, 0xec248c0,10, 0xec24900,6, 0xec24920,6, 0xec24940,4, 0xec24980,13, 0xec249c0,13, 0xec24a00,9, 0xec25000,86, 0xec25200,2, 0xec25240,9, 0xec25280,7, 0xec25400,86, 0xec25604,6, 0xec25800,86, 0xec25a00,2, 0xec25a40,9, 0xec25a80,7, 0xec25c00,86, 0xec25e04,6, 0xec26000,15, 0xec26040,4, 0xec26060,17, 0xec260c0,6, 0xec260e0,4, 0xec260f4,11, 0xec26128,38, 0xec261c4,2, 0xec261d0,4, 0xec26200,1, 0xec28000,9, 0xec28040,9, 0xec28080,5, 0xec28100,21, 0xec28160,5, 0xec28180,45, 0xec28240,13, 0xec28280,9, 0xec28400,9, 0xec28440,9, 0xec28480,5, 0xec28500,21, 0xec28560,5, 0xec28580,45, 0xec28640,13, 0xec28680,9, 0xec28800,12, 0xec28900,15, 0xec28940,4, 0xec28960,17, 0xec289c0,6, 0xec289e0,4, 0xec289f4,29, 0xec2c000,30, 0xec2c080,3, 0xec2c090,19, 0xec2c100,30, 0xec2c180,3, 0xec2c190,19, 0xec2c200,30, 0xec2c280,3, 0xec2c290,19, 0xec2c300,30, 0xec2c380,3, 0xec2c390,19, 0xec2c400,30, 0xec2c480,3, 0xec2c490,19, 0xec2c500,30, 0xec2c580,3, 0xec2c590,19, 0xec2c600,30, 0xec2c680,3, 0xec2c690,19, 0xec2c700,30, 0xec2c780,3, 0xec2c790,19, 0xec2c800,12, 0xec2c844,1, 0xec2c854,8, 0xec2c880,7, 0xec2c8a0,2, 0xec2c8ac,2, 0xec2c8c0,26, 0xec2c980,4, 0xec2c9a0,5, 0xec2c9c0,1, 0xec2d000,3, 0xec2d010,3, 0xec2d020,3, 0xec2d030,3, 0xec2d040,3, 0xec2d050,3, 0xec2d060,3, 0xec2d070,3, 0xec2d080,6, 0xec2d0a0,6, 0xec2d0c0,6, 0xec2d0e0,6, 0xec2d100,6, 0xec2d120,6, 0xec2d140,6, 0xec2d160,6, 0xec2d200,68, 0xec2d400,1, 0xec2d804,1, 0xec2d844,54, 0xec2da00,12, 0xec2da40,12, 0xec2da80,12, 0xec2dac0,12, 0xec2db00,12, 0xec2db40,12, 0xec2db80,12, 0xec2dbc0,12, 0xec2dc00,28, 0xec2dc80,10, 0xec2e000,3, 0xec2e020,6, 0xec2e040,6, 0xec2e060,15, 0xec2e100,26, 0xec2e180,15, 0xec2e200,15, 0xec2e240,4, 0xec2e260,17, 0xec2e2c0,6, 0xec2e2e0,4, 0xec2e2f4,18, 0xec2e340,4, 0xec2e360,17, 0xec2e3c0,6, 0xec2e3e0,4, 0xec2e3f4,15, 0xec30000,1, 0xec31000,1020, 0xec32000,194, 0xec33000,1020, 0xec34000,1020, 0xec35000,1020, 0xec36000,1020, 0xec37000,1020, 0xec38000,1020, 0xec39000,1020, 0xec3a000,1020, 0xec3b000,194, 0xec3c000,3, 0xec3c010,13, 0xec3c080,16, 0xec3c100,20, 0xec3c184,1, 0xec3c18c,4, 0xec3c200,3, 0xec3c210,13, 0xec3c280,16, 0xec3c300,20, 0xec3c384,1, 0xec3c38c,4, 0xec3c400,3, 0xec3c410,13, 0xec3c480,16, 0xec3c500,20, 0xec3c584,1, 0xec3c58c,4, 0xec3c600,3, 0xec3c610,13, 0xec3c680,16, 0xec3c700,20, 0xec3c784,1, 0xec3c78c,4, 0xec3c800,3, 0xec3c810,13, 0xec3c880,16, 0xec3c900,20, 0xec3c984,1, 0xec3c98c,4, 0xec3ca00,3, 0xec3ca10,13, 0xec3ca80,16, 0xec3cb00,20, 0xec3cb84,1, 0xec3cb8c,4, 0xec3cc00,3, 0xec3cc10,13, 0xec3cc80,16, 0xec3cd00,20, 0xec3cd84,1, 0xec3cd8c,4, 0xec3ce00,3, 0xec3ce10,13, 0xec3ce80,16, 0xec3cf00,20, 0xec3cf84,1, 0xec3cf8c,4, 0xec3d000,3, 0xec3d010,13, 0xec3d080,16, 0xec3d100,20, 0xec3d184,1, 0xec3d18c,4, 0xec3d200,18, 0xec3d250,2, 0xec3d260,4, 0xec3e000,1, 0xec3e014,1, 0xec3e01c,19, 0xec3e080,1, 0xec3e094,1, 0xec3e09c,19, 0xec3e100,8, 0xec3e200,13, 0xec3e240,9, 0xec3e280,12, 0xec3e2c0,2, 0xec3e2e0,12, 0xec40000,3, 0xec40080,20, 0xec40100,10, 0xec40140,1, 0xec40154,1, 0xec4015c,2, 0xec40200,15, 0xec40240,4, 0xec40260,17, 0xec402c0,6, 0xec402e0,2, 0xec402ec,3, 0xec40300,8, 0xec40324,1, 0xec40400,4, 0xec40440,20, 0xec404c0,9, 0xec40500,33, 0xec40600,11, 0xec40640,11, 0xec40680,1, 0xec42000,1, 0xec42200,4, 0xec42300,53, 0xec42400,4, 0xec42500,40, 0xec42600,15, 0xec42640,4, 0xec42660,17, 0xec426c0,6, 0xec426e0,2, 0xec426ec,3, 0xec42700,8, 0xec42724,1, 0xec42800,20, 0xec42c00,53, 0xec42d00,53, 0xec42e00,1, 0xec43000,40, 0xec43100,40, 0xec43200,1, 0xec43400,1, 0xec43804,1, 0xec43844,39, 0xec43900,3, 0xec43a00,3, 0xec43a44,1, 0xec43a50,4, 0xec43a80,1, 0xec44000,2, 0xec44200,27, 0xec44280,4, 0xec442c0,25, 0xec44340,6, 0xec44360,2, 0xec4436c,3, 0xec44380,8, 0xec443a4,1, 0xec44400,12, 0xec44440,1, 0xec48000,3, 0xec48080,20, 0xec48100,10, 0xec48140,1, 0xec48154,1, 0xec4815c,2, 0xec48200,15, 0xec48240,4, 0xec48260,17, 0xec482c0,6, 0xec482e0,2, 0xec482ec,3, 0xec48300,8, 0xec48324,1, 0xec48400,4, 0xec48440,20, 0xec484c0,9, 0xec48500,33, 0xec48600,11, 0xec48640,11, 0xec48680,1, 0xec4a000,1, 0xec4a200,4, 0xec4a300,53, 0xec4a400,4, 0xec4a500,40, 0xec4a600,15, 0xec4a640,4, 0xec4a660,17, 0xec4a6c0,6, 0xec4a6e0,2, 0xec4a6ec,3, 0xec4a700,8, 0xec4a724,1, 0xec4a800,20, 0xec4ac00,53, 0xec4ad00,53, 0xec4ae00,1, 0xec4b000,40, 0xec4b100,40, 0xec4b200,1, 0xec4b400,1, 0xec4b804,1, 0xec4b844,39, 0xec4b900,3, 0xec4ba00,3, 0xec4ba44,1, 0xec4ba50,4, 0xec4ba80,1, 0xec4c000,2, 0xec4c200,27, 0xec4c280,4, 0xec4c2c0,25, 0xec4c340,6, 0xec4c360,2, 0xec4c36c,3, 0xec4c380,8, 0xec4c3a4,1, 0xec4c400,12, 0xec4c440,1, 0xec50000,4, 0xec50020,3, 0xec50030,2, 0xec50200,1, 0xec50224,10, 0xec50250,5, 0xec50280,1, 0xec50288,24, 0xec50300,3, 0xec50404,1, 0xec50414,5, 0xec50500,36, 0xec50600,3, 0xec50800,2, 0xec51000,1, 0xec51008,21, 0xec51080,1, 0xec51088,21, 0xec51100,1, 0xec51108,21, 0xec51180,1, 0xec51188,21, 0xec51200,1, 0xec51208,21, 0xec51280,1, 0xec51288,21, 0xec51300,1, 0xec51308,21, 0xec51380,1, 0xec51388,21, 0xec51400,21, 0xec51800,142, 0xec51c00,1, 0xec52000,4, 0xec52100,39, 0xec52200,3, 0xec52214,3, 0xec54004,1, 0xec54020,16, 0xec54080,2, 0xec54094,1, 0xec5409c,2, 0xec540c0,6, 0xec54100,8, 0xec58004,17, 0xec58054,1, 0xec5805c,2, 0xec58080,1, 0xec580a0,2, 0xec580b4,4, 0xec58100,2, 0xec58200,8, 0xec58400,1, 0xec58600,27, 0xec58680,4, 0xec586c0,25, 0xec58740,6, 0xec58760,2, 0xec5876c,3, 0xec58780,8, 0xec587a4,3, 0xec58800,44, 0xec58900,1, 0xec60000,1, 0xec60200,27, 0xec60280,4, 0xec602c0,25, 0xec60340,6, 0xec60360,2, 0xec6036c,3, 0xec60380,8, 0xec603a4,1, 0xec60400,20, 0xec60480,3, 0xec60490,9, 0xec80000,198, 0xec80400,2, 0xec80440,9, 0xec80480,7, 0xec80800,198, 0xec80c00,2, 0xec80c40,9, 0xec80c80,7, 0xec81000,198, 0xec81400,198, 0xec81804,6, 0xec81824,6, 0xec81880,2, 0xec81904,1, 0xec81918,28, 0xec819a0,6, 0xec819c0,6, 0xec81c00,2, 0xec81d00,2, 0xec81e04,1, 0xec81e74,43, 0xec82000,2, 0xec82100,2, 0xec82204,1, 0xec82274,43, 0xec82400,3, 0xec82600,27, 0xec82680,4, 0xec826c0,25, 0xec82740,6, 0xec82760,4, 0xec82774,11, 0xec827a4,4, 0xec82800,4, 0xec82900,34, 0xec82a00,4, 0xec82b00,34, 0xec82c00,3, 0xec82c10,12, 0xec82e00,56, 0xec82ee4,4, 0xec82f00,4, 0xec83000,1, 0xec88000,4, 0xec88100,42, 0xec88200,1, 0xec88210,3, 0xec88220,3, 0xec88230,3, 0xec88240,1, 0xec88248,3, 0xec88400,4, 0xec88500,58, 0xec88600,1, 0xec88610,3, 0xec88620,3, 0xec88630,3, 0xec88640,1, 0xec88648,3, 0xec88800,4, 0xec88900,36, 0xec88a00,1, 0xec88c00,4, 0xec88c80,27, 0xec88d00,1, 0xec88d10,3, 0xec88d20,3, 0xec88d30,3, 0xec88d40,1, 0xec88d48,3, 0xec88e00,4, 0xec88e80,31, 0xec88f00,1, 0xec88f10,3, 0xec88f20,3, 0xec88f30,3, 0xec88f40,1, 0xec88f48,3, 0xec89000,4, 0xec89040,13, 0xec89080,1, 0xec89200,15, 0xec89240,4, 0xec89260,17, 0xec892c0,6, 0xec892e0,2, 0xec892ec,3, 0xec89300,8, 0xec89324,8, 0xec89400,68, 0xec89600,60, 0xec89700,4, 0xec89720,5, 0xec89740,1, 0xec89780,2, 0xec8978c,2, 0xec897a0,1, 0xec897c0,12, 0xec89800,7, 0xec89820,5, 0xec89900,49, 0xec89a00,1, 0xec89a08,23, 0xec89a84,1, 0xec89a8c,1, 0xec89a94,1, 0xec89a9c,2, 0xec89ac0,1, 0xec89c00,10, 0xec89c40,1, 0xec89c50,3, 0xec89c80,10, 0xec89cc0,12, 0xec89d00,3, 0xec89e00,1, 0xec8a000,4, 0xec8a100,42, 0xec8a200,1, 0xec8a210,3, 0xec8a220,3, 0xec8a230,3, 0xec8a240,1, 0xec8a248,3, 0xec8a400,4, 0xec8a500,58, 0xec8a600,1, 0xec8a610,3, 0xec8a620,3, 0xec8a630,3, 0xec8a640,1, 0xec8a648,3, 0xec8a800,4, 0xec8a900,36, 0xec8aa00,1, 0xec8ac00,4, 0xec8ac80,27, 0xec8ad00,1, 0xec8ad10,3, 0xec8ad20,3, 0xec8ad30,3, 0xec8ad40,1, 0xec8ad48,3, 0xec8ae00,4, 0xec8ae80,31, 0xec8af00,1, 0xec8af10,3, 0xec8af20,3, 0xec8af30,3, 0xec8af40,1, 0xec8af48,3, 0xec8b000,4, 0xec8b040,13, 0xec8b080,1, 0xec8b200,15, 0xec8b240,4, 0xec8b260,17, 0xec8b2c0,6, 0xec8b2e0,2, 0xec8b2ec,3, 0xec8b300,8, 0xec8b324,8, 0xec8b400,68, 0xec8b600,60, 0xec8b700,4, 0xec8b720,5, 0xec8b740,1, 0xec8b780,2, 0xec8b78c,2, 0xec8b7a0,1, 0xec8b7c0,12, 0xec8b800,7, 0xec8b820,5, 0xec8b900,49, 0xec8ba00,1, 0xec8ba08,23, 0xec8ba84,1, 0xec8ba8c,1, 0xec8ba94,1, 0xec8ba9c,2, 0xec8bac0,1, 0xec8bc00,10, 0xec8bc40,1, 0xec8bc50,3, 0xec8bc80,10, 0xec8bcc0,12, 0xec8bd00,3, 0xec8be00,1, 0xec8c000,20, 0xec8c080,3, 0xec8c090,1, 0xec8c098,4, 0xec90000,49, 0xec90100,12, 0xec90140,4, 0xec90184,1, 0xec90198,2, 0xec901a4,1, 0xec901b8,7, 0xec901e0,4, 0xec90200,20, 0xec90280,3, 0xec90290,9, 0xec902c0,6, 0xec902e0,1, 0xec902e8,7, 0xec90400,49, 0xec90500,12, 0xec90540,4, 0xec90584,1, 0xec90598,2, 0xec905a4,1, 0xec905b8,7, 0xec905e0,4, 0xec90600,20, 0xec90680,3, 0xec90690,9, 0xec906c0,6, 0xec906e0,1, 0xec906e8,7, 0xec90800,49, 0xec90900,12, 0xec90940,4, 0xec90984,1, 0xec90998,2, 0xec909a4,1, 0xec909b8,7, 0xec909e0,4, 0xec90a00,20, 0xec90a80,3, 0xec90a90,9, 0xec90ac0,6, 0xec90ae0,1, 0xec90ae8,7, 0xec90c00,49, 0xec90d00,12, 0xec90d40,4, 0xec90d84,1, 0xec90d98,2, 0xec90da4,1, 0xec90db8,7, 0xec90de0,4, 0xec90e00,20, 0xec90e80,3, 0xec90e90,9, 0xec90ec0,6, 0xec90ee0,1, 0xec90ee8,7, 0xec91000,49, 0xec91100,12, 0xec91140,4, 0xec91184,1, 0xec91198,2, 0xec911a4,1, 0xec911b8,7, 0xec911e0,4, 0xec91200,20, 0xec91280,3, 0xec91290,9, 0xec912c0,6, 0xec912e0,1, 0xec912e8,7, 0xec91400,49, 0xec91500,12, 0xec91540,4, 0xec91584,1, 0xec91598,2, 0xec915a4,1, 0xec915b8,7, 0xec915e0,4, 0xec91600,20, 0xec91680,3, 0xec91690,9, 0xec916c0,6, 0xec916e0,1, 0xec916e8,7, 0xec91800,49, 0xec91900,12, 0xec91940,4, 0xec91984,1, 0xec91998,2, 0xec919a4,1, 0xec919b8,7, 0xec919e0,4, 0xec91a00,20, 0xec91a80,3, 0xec91a90,9, 0xec91ac0,6, 0xec91ae0,1, 0xec91ae8,7, 0xec92000,20, 0xec92080,10, 0xec92100,20, 0xec92180,10, 0xec92200,12, 0xec92400,20, 0xec92480,10, 0xec92500,20, 0xec92580,10, 0xec92600,12, 0xec92800,3, 0xec92840,12, 0xec92880,12, 0xec928c0,12, 0xec92900,12, 0xec92940,12, 0xec92980,12, 0xec929c0,12, 0xec92a00,12, 0xec92c00,12, 0xec92c40,7, 0xec92c60,10, 0xec93004,1, 0xec93044,43, 0xec93100,7, 0xec93120,7, 0xec93140,2, 0xec9314c,2, 0xec93160,2, 0xec9316c,2, 0xec93180,18, 0xec93200,2, 0xec93220,10, 0xec93260,20, 0xec932c0,9, 0xec93300,15, 0xec93340,9, 0xec93380,6, 0xec933a0,4, 0xec93400,5, 0xec94000,53, 0xec94100,3, 0xec94110,15, 0xec94200,53, 0xec94300,3, 0xec94310,15, 0xec94400,5, 0xec94420,5, 0xec94440,18, 0xec94800,3, 0xec94810,2, 0xec94820,3, 0xec94830,2, 0xec94840,1, 0xec95000,7, 0xec95020,7, 0xec95080,19, 0xec95100,19, 0xec95180,25, 0xec95200,20, 0xec95280,20, 0xec95300,8, 0xec95340,4, 0xec95380,15, 0xec953c0,15, 0xec95400,9, 0xec95430,5, 0xec96000,6, 0xec96020,1, 0xec96028,2, 0xec96040,11, 0xec96070,2, 0xec98000,82, 0xec98200,2, 0xec98240,9, 0xec98280,7, 0xec98400,82, 0xec98604,6, 0xec98700,15, 0xec98740,9, 0xec98780,6, 0xec987a0,6, 0xec98800,2, 0xec98810,3, 0xec98880,24, 0xec988e4,1, 0xec988f0,12, 0xeca0000,22, 0xeca0080,22, 0xeca0100,5, 0xeca0120,5, 0xeca0140,3, 0xeca0160,16, 0xeca01c0,7, 0xeca01e0,2, 0xeca0200,7, 0xeca0220,2, 0xeca0400,15, 0xeca0440,3, 0xeca0450,3, 0xeca0460,24, 0xeca0500,15, 0xeca0540,3, 0xeca0550,3, 0xeca0560,24, 0xeca0600,15, 0xeca0640,3, 0xeca0650,3, 0xeca0660,24, 0xeca0700,15, 0xeca0740,3, 0xeca0750,3, 0xeca0760,24, 0xeca0800,4, 0xeca0820,16, 0xeca0880,10, 0xeca08c0,10, 0xeca0900,6, 0xeca0920,6, 0xeca0940,4, 0xeca0980,13, 0xeca09c0,13, 0xeca0a00,9, 0xeca1000,86, 0xeca1200,2, 0xeca1240,9, 0xeca1280,7, 0xeca1400,86, 0xeca1604,6, 0xeca1800,86, 0xeca1a00,2, 0xeca1a40,9, 0xeca1a80,7, 0xeca1c00,86, 0xeca1e04,6, 0xeca2000,15, 0xeca2040,4, 0xeca2060,17, 0xeca20c0,6, 0xeca20e0,4, 0xeca20f4,11, 0xeca2128,38, 0xeca21c4,2, 0xeca21d0,4, 0xeca2200,1, 0xeca4000,22, 0xeca4080,22, 0xeca4100,5, 0xeca4120,5, 0xeca4140,3, 0xeca4160,16, 0xeca41c0,7, 0xeca41e0,2, 0xeca4200,7, 0xeca4220,2, 0xeca4400,15, 0xeca4440,3, 0xeca4450,3, 0xeca4460,24, 0xeca4500,15, 0xeca4540,3, 0xeca4550,3, 0xeca4560,24, 0xeca4600,15, 0xeca4640,3, 0xeca4650,3, 0xeca4660,24, 0xeca4700,15, 0xeca4740,3, 0xeca4750,3, 0xeca4760,24, 0xeca4800,4, 0xeca4820,16, 0xeca4880,10, 0xeca48c0,10, 0xeca4900,6, 0xeca4920,6, 0xeca4940,4, 0xeca4980,13, 0xeca49c0,13, 0xeca4a00,9, 0xeca5000,86, 0xeca5200,2, 0xeca5240,9, 0xeca5280,7, 0xeca5400,86, 0xeca5604,6, 0xeca5800,86, 0xeca5a00,2, 0xeca5a40,9, 0xeca5a80,7, 0xeca5c00,86, 0xeca5e04,6, 0xeca6000,15, 0xeca6040,4, 0xeca6060,17, 0xeca60c0,6, 0xeca60e0,4, 0xeca60f4,11, 0xeca6128,38, 0xeca61c4,2, 0xeca61d0,4, 0xeca6200,1, 0xeca8000,9, 0xeca8040,9, 0xeca8080,5, 0xeca8100,21, 0xeca8160,5, 0xeca8180,45, 0xeca8240,13, 0xeca8280,9, 0xeca8400,9, 0xeca8440,9, 0xeca8480,5, 0xeca8500,21, 0xeca8560,5, 0xeca8580,45, 0xeca8640,13, 0xeca8680,9, 0xeca8800,12, 0xeca8900,15, 0xeca8940,4, 0xeca8960,17, 0xeca89c0,6, 0xeca89e0,4, 0xeca89f4,29, 0xecac000,30, 0xecac080,3, 0xecac090,19, 0xecac100,30, 0xecac180,3, 0xecac190,19, 0xecac200,30, 0xecac280,3, 0xecac290,19, 0xecac300,30, 0xecac380,3, 0xecac390,19, 0xecac400,30, 0xecac480,3, 0xecac490,19, 0xecac500,30, 0xecac580,3, 0xecac590,19, 0xecac600,30, 0xecac680,3, 0xecac690,19, 0xecac700,30, 0xecac780,3, 0xecac790,19, 0xecac800,12, 0xecac844,1, 0xecac854,8, 0xecac880,7, 0xecac8a0,2, 0xecac8ac,2, 0xecac8c0,26, 0xecac980,4, 0xecac9a0,5, 0xecac9c0,1, 0xecad000,3, 0xecad010,3, 0xecad020,3, 0xecad030,3, 0xecad040,3, 0xecad050,3, 0xecad060,3, 0xecad070,3, 0xecad080,6, 0xecad0a0,6, 0xecad0c0,6, 0xecad0e0,6, 0xecad100,6, 0xecad120,6, 0xecad140,6, 0xecad160,6, 0xecad200,68, 0xecad400,1, 0xecad804,1, 0xecad844,54, 0xecada00,12, 0xecada40,12, 0xecada80,12, 0xecadac0,12, 0xecadb00,12, 0xecadb40,12, 0xecadb80,12, 0xecadbc0,12, 0xecadc00,28, 0xecadc80,10, 0xecae000,3, 0xecae020,6, 0xecae040,6, 0xecae060,15, 0xecae100,26, 0xecae180,15, 0xecae200,15, 0xecae240,4, 0xecae260,17, 0xecae2c0,6, 0xecae2e0,4, 0xecae2f4,18, 0xecae340,4, 0xecae360,17, 0xecae3c0,6, 0xecae3e0,4, 0xecae3f4,15, 0xecb0000,1, 0xecb1000,1020, 0xecb2000,194, 0xecb3000,1020, 0xecb4000,1020, 0xecb5000,1020, 0xecb6000,1020, 0xecb7000,1020, 0xecb8000,1020, 0xecb9000,1020, 0xecba000,1020, 0xecbb000,194, 0xecbc000,3, 0xecbc010,13, 0xecbc080,16, 0xecbc100,20, 0xecbc184,1, 0xecbc18c,4, 0xecbc200,3, 0xecbc210,13, 0xecbc280,16, 0xecbc300,20, 0xecbc384,1, 0xecbc38c,4, 0xecbc400,3, 0xecbc410,13, 0xecbc480,16, 0xecbc500,20, 0xecbc584,1, 0xecbc58c,4, 0xecbc600,3, 0xecbc610,13, 0xecbc680,16, 0xecbc700,20, 0xecbc784,1, 0xecbc78c,4, 0xecbc800,3, 0xecbc810,13, 0xecbc880,16, 0xecbc900,20, 0xecbc984,1, 0xecbc98c,4, 0xecbca00,3, 0xecbca10,13, 0xecbca80,16, 0xecbcb00,20, 0xecbcb84,1, 0xecbcb8c,4, 0xecbcc00,3, 0xecbcc10,13, 0xecbcc80,16, 0xecbcd00,20, 0xecbcd84,1, 0xecbcd8c,4, 0xecbce00,3, 0xecbce10,13, 0xecbce80,16, 0xecbcf00,20, 0xecbcf84,1, 0xecbcf8c,4, 0xecbd000,3, 0xecbd010,13, 0xecbd080,16, 0xecbd100,20, 0xecbd184,1, 0xecbd18c,4, 0xecbd200,18, 0xecbd250,2, 0xecbd260,4, 0xecbe000,1, 0xecbe014,1, 0xecbe01c,19, 0xecbe080,1, 0xecbe094,1, 0xecbe09c,19, 0xecbe100,8, 0xecbe200,13, 0xecbe240,9, 0xecbe280,12, 0xecbe2c0,2, 0xecbe2e0,12, 0xecc0000,3, 0xecc0080,20, 0xecc0100,10, 0xecc0140,1, 0xecc0154,1, 0xecc015c,2, 0xecc0200,15, 0xecc0240,4, 0xecc0260,17, 0xecc02c0,6, 0xecc02e0,2, 0xecc02ec,3, 0xecc0300,8, 0xecc0324,1, 0xecc0400,4, 0xecc0440,20, 0xecc04c0,9, 0xecc0500,33, 0xecc0600,11, 0xecc0640,11, 0xecc0680,1, 0xecc2000,1, 0xecc2200,4, 0xecc2300,53, 0xecc2400,4, 0xecc2500,40, 0xecc2600,15, 0xecc2640,4, 0xecc2660,17, 0xecc26c0,6, 0xecc26e0,2, 0xecc26ec,3, 0xecc2700,8, 0xecc2724,1, 0xecc2800,20, 0xecc2c00,53, 0xecc2d00,53, 0xecc2e00,1, 0xecc3000,40, 0xecc3100,40, 0xecc3200,1, 0xecc3400,1, 0xecc3804,1, 0xecc3844,39, 0xecc3900,3, 0xecc3a00,3, 0xecc3a44,1, 0xecc3a50,4, 0xecc3a80,1, 0xecc4000,2, 0xecc4200,27, 0xecc4280,4, 0xecc42c0,25, 0xecc4340,6, 0xecc4360,2, 0xecc436c,3, 0xecc4380,8, 0xecc43a4,1, 0xecc4400,12, 0xecc4440,1, 0xecc8000,3, 0xecc8080,20, 0xecc8100,10, 0xecc8140,1, 0xecc8154,1, 0xecc815c,2, 0xecc8200,15, 0xecc8240,4, 0xecc8260,17, 0xecc82c0,6, 0xecc82e0,2, 0xecc82ec,3, 0xecc8300,8, 0xecc8324,1, 0xecc8400,4, 0xecc8440,20, 0xecc84c0,9, 0xecc8500,33, 0xecc8600,11, 0xecc8640,11, 0xecc8680,1, 0xecca000,1, 0xecca200,4, 0xecca300,53, 0xecca400,4, 0xecca500,40, 0xecca600,15, 0xecca640,4, 0xecca660,17, 0xecca6c0,6, 0xecca6e0,2, 0xecca6ec,3, 0xecca700,8, 0xecca724,1, 0xecca800,20, 0xeccac00,53, 0xeccad00,53, 0xeccae00,1, 0xeccb000,40, 0xeccb100,40, 0xeccb200,1, 0xeccb400,1, 0xeccb804,1, 0xeccb844,39, 0xeccb900,3, 0xeccba00,3, 0xeccba44,1, 0xeccba50,4, 0xeccba80,1, 0xeccc000,2, 0xeccc200,27, 0xeccc280,4, 0xeccc2c0,25, 0xeccc340,6, 0xeccc360,2, 0xeccc36c,3, 0xeccc380,8, 0xeccc3a4,1, 0xeccc400,12, 0xeccc440,1, 0xecd0000,4, 0xecd0020,3, 0xecd0030,2, 0xecd0200,1, 0xecd0224,10, 0xecd0250,5, 0xecd0280,1, 0xecd0288,24, 0xecd0300,3, 0xecd0404,1, 0xecd0414,5, 0xecd0500,36, 0xecd0600,3, 0xecd0800,2, 0xecd1000,1, 0xecd1008,21, 0xecd1080,1, 0xecd1088,21, 0xecd1100,1, 0xecd1108,21, 0xecd1180,1, 0xecd1188,21, 0xecd1200,1, 0xecd1208,21, 0xecd1280,1, 0xecd1288,21, 0xecd1300,1, 0xecd1308,21, 0xecd1380,1, 0xecd1388,21, 0xecd1400,21, 0xecd1800,142, 0xecd1c00,1, 0xecd2000,4, 0xecd2100,39, 0xecd2200,3, 0xecd2214,3, 0xecd4004,1, 0xecd4020,16, 0xecd4080,2, 0xecd4094,1, 0xecd409c,2, 0xecd40c0,6, 0xecd4100,8, 0xecd8004,17, 0xecd8054,1, 0xecd805c,2, 0xecd8080,1, 0xecd80a0,2, 0xecd80b4,4, 0xecd8100,2, 0xecd8200,8, 0xecd8400,1, 0xecd8600,27, 0xecd8680,4, 0xecd86c0,25, 0xecd8740,6, 0xecd8760,2, 0xecd876c,3, 0xecd8780,8, 0xecd87a4,3, 0xecd8800,44, 0xecd8900,1, 0xece0000,1, 0xece0200,27, 0xece0280,4, 0xece02c0,25, 0xece0340,6, 0xece0360,2, 0xece036c,3, 0xece0380,8, 0xece03a4,1, 0xece0400,20, 0xece0480,3, 0xece0490,9, 0xed00000,198, 0xed00400,2, 0xed00440,9, 0xed00480,7, 0xed00800,198, 0xed00c00,2, 0xed00c40,9, 0xed00c80,7, 0xed01000,198, 0xed01400,198, 0xed01804,6, 0xed01824,6, 0xed01880,2, 0xed01904,1, 0xed01918,28, 0xed019a0,6, 0xed019c0,6, 0xed01c00,2, 0xed01d00,2, 0xed01e04,1, 0xed01e74,43, 0xed02000,2, 0xed02100,2, 0xed02204,1, 0xed02274,43, 0xed02400,3, 0xed02600,27, 0xed02680,4, 0xed026c0,25, 0xed02740,6, 0xed02760,4, 0xed02774,11, 0xed027a4,4, 0xed02800,4, 0xed02900,34, 0xed02a00,4, 0xed02b00,34, 0xed02c00,3, 0xed02c10,12, 0xed02e00,56, 0xed02ee4,4, 0xed02f00,4, 0xed03000,1, 0xed08000,4, 0xed08100,42, 0xed08200,1, 0xed08210,3, 0xed08220,3, 0xed08230,3, 0xed08240,1, 0xed08248,3, 0xed08400,4, 0xed08500,58, 0xed08600,1, 0xed08610,3, 0xed08620,3, 0xed08630,3, 0xed08640,1, 0xed08648,3, 0xed08800,4, 0xed08900,36, 0xed08a00,1, 0xed08c00,4, 0xed08c80,27, 0xed08d00,1, 0xed08d10,3, 0xed08d20,3, 0xed08d30,3, 0xed08d40,1, 0xed08d48,3, 0xed08e00,4, 0xed08e80,31, 0xed08f00,1, 0xed08f10,3, 0xed08f20,3, 0xed08f30,3, 0xed08f40,1, 0xed08f48,3, 0xed09000,4, 0xed09040,13, 0xed09080,1, 0xed09200,15, 0xed09240,4, 0xed09260,17, 0xed092c0,6, 0xed092e0,2, 0xed092ec,3, 0xed09300,8, 0xed09324,8, 0xed09400,68, 0xed09600,60, 0xed09700,4, 0xed09720,5, 0xed09740,1, 0xed09780,2, 0xed0978c,2, 0xed097a0,1, 0xed097c0,12, 0xed09800,7, 0xed09820,5, 0xed09900,49, 0xed09a00,1, 0xed09a08,23, 0xed09a84,1, 0xed09a8c,1, 0xed09a94,1, 0xed09a9c,2, 0xed09ac0,1, 0xed09c00,10, 0xed09c40,1, 0xed09c50,3, 0xed09c80,10, 0xed09cc0,12, 0xed09d00,3, 0xed09e00,1, 0xed0a000,4, 0xed0a100,42, 0xed0a200,1, 0xed0a210,3, 0xed0a220,3, 0xed0a230,3, 0xed0a240,1, 0xed0a248,3, 0xed0a400,4, 0xed0a500,58, 0xed0a600,1, 0xed0a610,3, 0xed0a620,3, 0xed0a630,3, 0xed0a640,1, 0xed0a648,3, 0xed0a800,4, 0xed0a900,36, 0xed0aa00,1, 0xed0ac00,4, 0xed0ac80,27, 0xed0ad00,1, 0xed0ad10,3, 0xed0ad20,3, 0xed0ad30,3, 0xed0ad40,1, 0xed0ad48,3, 0xed0ae00,4, 0xed0ae80,31, 0xed0af00,1, 0xed0af10,3, 0xed0af20,3, 0xed0af30,3, 0xed0af40,1, 0xed0af48,3, 0xed0b000,4, 0xed0b040,13, 0xed0b080,1, 0xed0b200,15, 0xed0b240,4, 0xed0b260,17, 0xed0b2c0,6, 0xed0b2e0,2, 0xed0b2ec,3, 0xed0b300,8, 0xed0b324,8, 0xed0b400,68, 0xed0b600,60, 0xed0b700,4, 0xed0b720,5, 0xed0b740,1, 0xed0b780,2, 0xed0b78c,2, 0xed0b7a0,1, 0xed0b7c0,12, 0xed0b800,7, 0xed0b820,5, 0xed0b900,49, 0xed0ba00,1, 0xed0ba08,23, 0xed0ba84,1, 0xed0ba8c,1, 0xed0ba94,1, 0xed0ba9c,2, 0xed0bac0,1, 0xed0bc00,10, 0xed0bc40,1, 0xed0bc50,3, 0xed0bc80,10, 0xed0bcc0,12, 0xed0bd00,3, 0xed0be00,1, 0xed0c000,20, 0xed0c080,3, 0xed0c090,1, 0xed0c098,4, 0xed10000,49, 0xed10100,12, 0xed10140,4, 0xed10184,1, 0xed10198,2, 0xed101a4,1, 0xed101b8,7, 0xed101e0,4, 0xed10200,20, 0xed10280,3, 0xed10290,9, 0xed102c0,6, 0xed102e0,1, 0xed102e8,7, 0xed10400,49, 0xed10500,12, 0xed10540,4, 0xed10584,1, 0xed10598,2, 0xed105a4,1, 0xed105b8,7, 0xed105e0,4, 0xed10600,20, 0xed10680,3, 0xed10690,9, 0xed106c0,6, 0xed106e0,1, 0xed106e8,7, 0xed10800,49, 0xed10900,12, 0xed10940,4, 0xed10984,1, 0xed10998,2, 0xed109a4,1, 0xed109b8,7, 0xed109e0,4, 0xed10a00,20, 0xed10a80,3, 0xed10a90,9, 0xed10ac0,6, 0xed10ae0,1, 0xed10ae8,7, 0xed10c00,49, 0xed10d00,12, 0xed10d40,4, 0xed10d84,1, 0xed10d98,2, 0xed10da4,1, 0xed10db8,7, 0xed10de0,4, 0xed10e00,20, 0xed10e80,3, 0xed10e90,9, 0xed10ec0,6, 0xed10ee0,1, 0xed10ee8,7, 0xed11000,49, 0xed11100,12, 0xed11140,4, 0xed11184,1, 0xed11198,2, 0xed111a4,1, 0xed111b8,7, 0xed111e0,4, 0xed11200,20, 0xed11280,3, 0xed11290,9, 0xed112c0,6, 0xed112e0,1, 0xed112e8,7, 0xed11400,49, 0xed11500,12, 0xed11540,4, 0xed11584,1, 0xed11598,2, 0xed115a4,1, 0xed115b8,7, 0xed115e0,4, 0xed11600,20, 0xed11680,3, 0xed11690,9, 0xed116c0,6, 0xed116e0,1, 0xed116e8,7, 0xed11800,49, 0xed11900,12, 0xed11940,4, 0xed11984,1, 0xed11998,2, 0xed119a4,1, 0xed119b8,7, 0xed119e0,4, 0xed11a00,20, 0xed11a80,3, 0xed11a90,9, 0xed11ac0,6, 0xed11ae0,1, 0xed11ae8,7, 0xed12000,20, 0xed12080,10, 0xed12100,20, 0xed12180,10, 0xed12200,12, 0xed12400,20, 0xed12480,10, 0xed12500,20, 0xed12580,10, 0xed12600,12, 0xed12800,3, 0xed12840,12, 0xed12880,12, 0xed128c0,12, 0xed12900,12, 0xed12940,12, 0xed12980,12, 0xed129c0,12, 0xed12a00,12, 0xed12c00,12, 0xed12c40,7, 0xed12c60,10, 0xed13004,1, 0xed13044,43, 0xed13100,7, 0xed13120,7, 0xed13140,2, 0xed1314c,2, 0xed13160,2, 0xed1316c,2, 0xed13180,18, 0xed13200,2, 0xed13220,10, 0xed13260,20, 0xed132c0,9, 0xed13300,15, 0xed13340,9, 0xed13380,6, 0xed133a0,4, 0xed13400,5, 0xed14000,53, 0xed14100,3, 0xed14110,15, 0xed14200,53, 0xed14300,3, 0xed14310,15, 0xed14400,5, 0xed14420,5, 0xed14440,18, 0xed14800,3, 0xed14810,2, 0xed14820,3, 0xed14830,2, 0xed14840,1, 0xed15000,7, 0xed15020,7, 0xed15080,19, 0xed15100,19, 0xed15180,25, 0xed15200,20, 0xed15280,20, 0xed15300,8, 0xed15340,4, 0xed15380,15, 0xed153c0,15, 0xed15400,9, 0xed15430,5, 0xed16000,6, 0xed16020,1, 0xed16028,2, 0xed16040,11, 0xed16070,2, 0xed18000,82, 0xed18200,2, 0xed18240,9, 0xed18280,7, 0xed18400,82, 0xed18604,6, 0xed18700,15, 0xed18740,9, 0xed18780,6, 0xed187a0,6, 0xed18800,2, 0xed18810,3, 0xed18880,24, 0xed188e4,1, 0xed188f0,12, 0xed20000,22, 0xed20080,22, 0xed20100,5, 0xed20120,5, 0xed20140,3, 0xed20160,16, 0xed201c0,7, 0xed201e0,2, 0xed20200,7, 0xed20220,2, 0xed20400,15, 0xed20440,3, 0xed20450,3, 0xed20460,24, 0xed20500,15, 0xed20540,3, 0xed20550,3, 0xed20560,24, 0xed20600,15, 0xed20640,3, 0xed20650,3, 0xed20660,24, 0xed20700,15, 0xed20740,3, 0xed20750,3, 0xed20760,24, 0xed20800,4, 0xed20820,16, 0xed20880,10, 0xed208c0,10, 0xed20900,6, 0xed20920,6, 0xed20940,4, 0xed20980,13, 0xed209c0,13, 0xed20a00,9, 0xed21000,86, 0xed21200,2, 0xed21240,9, 0xed21280,7, 0xed21400,86, 0xed21604,6, 0xed21800,86, 0xed21a00,2, 0xed21a40,9, 0xed21a80,7, 0xed21c00,86, 0xed21e04,6, 0xed22000,15, 0xed22040,4, 0xed22060,17, 0xed220c0,6, 0xed220e0,4, 0xed220f4,11, 0xed22128,38, 0xed221c4,2, 0xed221d0,4, 0xed22200,1, 0xed24000,22, 0xed24080,22, 0xed24100,5, 0xed24120,5, 0xed24140,3, 0xed24160,16, 0xed241c0,7, 0xed241e0,2, 0xed24200,7, 0xed24220,2, 0xed24400,15, 0xed24440,3, 0xed24450,3, 0xed24460,24, 0xed24500,15, 0xed24540,3, 0xed24550,3, 0xed24560,24, 0xed24600,15, 0xed24640,3, 0xed24650,3, 0xed24660,24, 0xed24700,15, 0xed24740,3, 0xed24750,3, 0xed24760,24, 0xed24800,4, 0xed24820,16, 0xed24880,10, 0xed248c0,10, 0xed24900,6, 0xed24920,6, 0xed24940,4, 0xed24980,13, 0xed249c0,13, 0xed24a00,9, 0xed25000,86, 0xed25200,2, 0xed25240,9, 0xed25280,7, 0xed25400,86, 0xed25604,6, 0xed25800,86, 0xed25a00,2, 0xed25a40,9, 0xed25a80,7, 0xed25c00,86, 0xed25e04,6, 0xed26000,15, 0xed26040,4, 0xed26060,17, 0xed260c0,6, 0xed260e0,4, 0xed260f4,11, 0xed26128,38, 0xed261c4,2, 0xed261d0,4, 0xed26200,1, 0xed28000,9, 0xed28040,9, 0xed28080,5, 0xed28100,21, 0xed28160,5, 0xed28180,45, 0xed28240,13, 0xed28280,9, 0xed28400,9, 0xed28440,9, 0xed28480,5, 0xed28500,21, 0xed28560,5, 0xed28580,45, 0xed28640,13, 0xed28680,9, 0xed28800,12, 0xed28900,15, 0xed28940,4, 0xed28960,17, 0xed289c0,6, 0xed289e0,4, 0xed289f4,29, 0xed2c000,30, 0xed2c080,3, 0xed2c090,19, 0xed2c100,30, 0xed2c180,3, 0xed2c190,19, 0xed2c200,30, 0xed2c280,3, 0xed2c290,19, 0xed2c300,30, 0xed2c380,3, 0xed2c390,19, 0xed2c400,30, 0xed2c480,3, 0xed2c490,19, 0xed2c500,30, 0xed2c580,3, 0xed2c590,19, 0xed2c600,30, 0xed2c680,3, 0xed2c690,19, 0xed2c700,30, 0xed2c780,3, 0xed2c790,19, 0xed2c800,12, 0xed2c844,1, 0xed2c854,8, 0xed2c880,7, 0xed2c8a0,2, 0xed2c8ac,2, 0xed2c8c0,26, 0xed2c980,4, 0xed2c9a0,5, 0xed2c9c0,1, 0xed2d000,3, 0xed2d010,3, 0xed2d020,3, 0xed2d030,3, 0xed2d040,3, 0xed2d050,3, 0xed2d060,3, 0xed2d070,3, 0xed2d080,6, 0xed2d0a0,6, 0xed2d0c0,6, 0xed2d0e0,6, 0xed2d100,6, 0xed2d120,6, 0xed2d140,6, 0xed2d160,6, 0xed2d200,68, 0xed2d400,1, 0xed2d804,1, 0xed2d844,54, 0xed2da00,12, 0xed2da40,12, 0xed2da80,12, 0xed2dac0,12, 0xed2db00,12, 0xed2db40,12, 0xed2db80,12, 0xed2dbc0,12, 0xed2dc00,28, 0xed2dc80,10, 0xed2e000,3, 0xed2e020,6, 0xed2e040,6, 0xed2e060,15, 0xed2e100,26, 0xed2e180,15, 0xed2e200,15, 0xed2e240,4, 0xed2e260,17, 0xed2e2c0,6, 0xed2e2e0,4, 0xed2e2f4,18, 0xed2e340,4, 0xed2e360,17, 0xed2e3c0,6, 0xed2e3e0,4, 0xed2e3f4,15, 0xed30000,1, 0xed31000,1020, 0xed32000,194, 0xed33000,1020, 0xed34000,1020, 0xed35000,1020, 0xed36000,1020, 0xed37000,1020, 0xed38000,1020, 0xed39000,1020, 0xed3a000,1020, 0xed3b000,194, 0xed3c000,3, 0xed3c010,13, 0xed3c080,16, 0xed3c100,20, 0xed3c184,1, 0xed3c18c,4, 0xed3c200,3, 0xed3c210,13, 0xed3c280,16, 0xed3c300,20, 0xed3c384,1, 0xed3c38c,4, 0xed3c400,3, 0xed3c410,13, 0xed3c480,16, 0xed3c500,20, 0xed3c584,1, 0xed3c58c,4, 0xed3c600,3, 0xed3c610,13, 0xed3c680,16, 0xed3c700,20, 0xed3c784,1, 0xed3c78c,4, 0xed3c800,3, 0xed3c810,13, 0xed3c880,16, 0xed3c900,20, 0xed3c984,1, 0xed3c98c,4, 0xed3ca00,3, 0xed3ca10,13, 0xed3ca80,16, 0xed3cb00,20, 0xed3cb84,1, 0xed3cb8c,4, 0xed3cc00,3, 0xed3cc10,13, 0xed3cc80,16, 0xed3cd00,20, 0xed3cd84,1, 0xed3cd8c,4, 0xed3ce00,3, 0xed3ce10,13, 0xed3ce80,16, 0xed3cf00,20, 0xed3cf84,1, 0xed3cf8c,4, 0xed3d000,3, 0xed3d010,13, 0xed3d080,16, 0xed3d100,20, 0xed3d184,1, 0xed3d18c,4, 0xed3d200,18, 0xed3d250,2, 0xed3d260,4, 0xed3e000,1, 0xed3e014,1, 0xed3e01c,19, 0xed3e080,1, 0xed3e094,1, 0xed3e09c,19, 0xed3e100,8, 0xed3e200,13, 0xed3e240,9, 0xed3e280,12, 0xed3e2c0,2, 0xed3e2e0,12, 0xed40000,3, 0xed40080,20, 0xed40100,10, 0xed40140,1, 0xed40154,1, 0xed4015c,2, 0xed40200,15, 0xed40240,4, 0xed40260,17, 0xed402c0,6, 0xed402e0,2, 0xed402ec,3, 0xed40300,8, 0xed40324,1, 0xed40400,4, 0xed40440,20, 0xed404c0,9, 0xed40500,33, 0xed40600,11, 0xed40640,11, 0xed40680,1, 0xed42000,1, 0xed42200,4, 0xed42300,53, 0xed42400,4, 0xed42500,40, 0xed42600,15, 0xed42640,4, 0xed42660,17, 0xed426c0,6, 0xed426e0,2, 0xed426ec,3, 0xed42700,8, 0xed42724,1, 0xed42800,20, 0xed42c00,53, 0xed42d00,53, 0xed42e00,1, 0xed43000,40, 0xed43100,40, 0xed43200,1, 0xed43400,1, 0xed43804,1, 0xed43844,39, 0xed43900,3, 0xed43a00,3, 0xed43a44,1, 0xed43a50,4, 0xed43a80,1, 0xed44000,2, 0xed44200,27, 0xed44280,4, 0xed442c0,25, 0xed44340,6, 0xed44360,2, 0xed4436c,3, 0xed44380,8, 0xed443a4,1, 0xed44400,12, 0xed44440,1, 0xed48000,3, 0xed48080,20, 0xed48100,10, 0xed48140,1, 0xed48154,1, 0xed4815c,2, 0xed48200,15, 0xed48240,4, 0xed48260,17, 0xed482c0,6, 0xed482e0,2, 0xed482ec,3, 0xed48300,8, 0xed48324,1, 0xed48400,4, 0xed48440,20, 0xed484c0,9, 0xed48500,33, 0xed48600,11, 0xed48640,11, 0xed48680,1, 0xed4a000,1, 0xed4a200,4, 0xed4a300,53, 0xed4a400,4, 0xed4a500,40, 0xed4a600,15, 0xed4a640,4, 0xed4a660,17, 0xed4a6c0,6, 0xed4a6e0,2, 0xed4a6ec,3, 0xed4a700,8, 0xed4a724,1, 0xed4a800,20, 0xed4ac00,53, 0xed4ad00,53, 0xed4ae00,1, 0xed4b000,40, 0xed4b100,40, 0xed4b200,1, 0xed4b400,1, 0xed4b804,1, 0xed4b844,39, 0xed4b900,3, 0xed4ba00,3, 0xed4ba44,1, 0xed4ba50,4, 0xed4ba80,1, 0xed4c000,2, 0xed4c200,27, 0xed4c280,4, 0xed4c2c0,25, 0xed4c340,6, 0xed4c360,2, 0xed4c36c,3, 0xed4c380,8, 0xed4c3a4,1, 0xed4c400,12, 0xed4c440,1, 0xed50000,4, 0xed50020,3, 0xed50030,2, 0xed50200,1, 0xed50224,10, 0xed50250,5, 0xed50280,1, 0xed50288,24, 0xed50300,3, 0xed50404,1, 0xed50414,5, 0xed50500,36, 0xed50600,3, 0xed50800,2, 0xed51000,1, 0xed51008,21, 0xed51080,1, 0xed51088,21, 0xed51100,1, 0xed51108,21, 0xed51180,1, 0xed51188,21, 0xed51200,1, 0xed51208,21, 0xed51280,1, 0xed51288,21, 0xed51300,1, 0xed51308,21, 0xed51380,1, 0xed51388,21, 0xed51400,21, 0xed51800,142, 0xed51c00,1, 0xed52000,4, 0xed52100,39, 0xed52200,3, 0xed52214,3, 0xed54004,1, 0xed54020,16, 0xed54080,2, 0xed54094,1, 0xed5409c,2, 0xed540c0,6, 0xed54100,8, 0xed58004,17, 0xed58054,1, 0xed5805c,2, 0xed58080,1, 0xed580a0,2, 0xed580b4,4, 0xed58100,2, 0xed58200,8, 0xed58400,1, 0xed58600,27, 0xed58680,4, 0xed586c0,25, 0xed58740,6, 0xed58760,2, 0xed5876c,3, 0xed58780,8, 0xed587a4,3, 0xed58800,44, 0xed58900,1, 0xed60000,1, 0xed60200,27, 0xed60280,4, 0xed602c0,25, 0xed60340,6, 0xed60360,2, 0xed6036c,3, 0xed60380,8, 0xed603a4,1, 0xed60400,20, 0xed60480,3, 0xed60490,9, 0xed80000,198, 0xed80400,2, 0xed80440,9, 0xed80480,7, 0xed80800,198, 0xed80c00,2, 0xed80c40,9, 0xed80c80,7, 0xed81000,198, 0xed81400,198, 0xed81804,6, 0xed81824,6, 0xed81880,2, 0xed81904,1, 0xed81918,28, 0xed819a0,6, 0xed819c0,6, 0xed81c00,2, 0xed81d00,2, 0xed81e04,1, 0xed81e74,43, 0xed82000,2, 0xed82100,2, 0xed82204,1, 0xed82274,43, 0xed82400,3, 0xed82600,27, 0xed82680,4, 0xed826c0,25, 0xed82740,6, 0xed82760,4, 0xed82774,11, 0xed827a4,4, 0xed82800,4, 0xed82900,34, 0xed82a00,4, 0xed82b00,34, 0xed82c00,3, 0xed82c10,12, 0xed82e00,56, 0xed82ee4,4, 0xed82f00,4, 0xed83000,1, 0xed88000,4, 0xed88100,42, 0xed88200,1, 0xed88210,3, 0xed88220,3, 0xed88230,3, 0xed88240,1, 0xed88248,3, 0xed88400,4, 0xed88500,58, 0xed88600,1, 0xed88610,3, 0xed88620,3, 0xed88630,3, 0xed88640,1, 0xed88648,3, 0xed88800,4, 0xed88900,36, 0xed88a00,1, 0xed88c00,4, 0xed88c80,27, 0xed88d00,1, 0xed88d10,3, 0xed88d20,3, 0xed88d30,3, 0xed88d40,1, 0xed88d48,3, 0xed88e00,4, 0xed88e80,31, 0xed88f00,1, 0xed88f10,3, 0xed88f20,3, 0xed88f30,3, 0xed88f40,1, 0xed88f48,3, 0xed89000,4, 0xed89040,13, 0xed89080,1, 0xed89200,15, 0xed89240,4, 0xed89260,17, 0xed892c0,6, 0xed892e0,2, 0xed892ec,3, 0xed89300,8, 0xed89324,8, 0xed89400,68, 0xed89600,60, 0xed89700,4, 0xed89720,5, 0xed89740,1, 0xed89780,2, 0xed8978c,2, 0xed897a0,1, 0xed897c0,12, 0xed89800,7, 0xed89820,5, 0xed89900,49, 0xed89a00,1, 0xed89a08,23, 0xed89a84,1, 0xed89a8c,1, 0xed89a94,1, 0xed89a9c,2, 0xed89ac0,1, 0xed89c00,10, 0xed89c40,1, 0xed89c50,3, 0xed89c80,10, 0xed89cc0,12, 0xed89d00,3, 0xed89e00,1, 0xed8a000,4, 0xed8a100,42, 0xed8a200,1, 0xed8a210,3, 0xed8a220,3, 0xed8a230,3, 0xed8a240,1, 0xed8a248,3, 0xed8a400,4, 0xed8a500,58, 0xed8a600,1, 0xed8a610,3, 0xed8a620,3, 0xed8a630,3, 0xed8a640,1, 0xed8a648,3, 0xed8a800,4, 0xed8a900,36, 0xed8aa00,1, 0xed8ac00,4, 0xed8ac80,27, 0xed8ad00,1, 0xed8ad10,3, 0xed8ad20,3, 0xed8ad30,3, 0xed8ad40,1, 0xed8ad48,3, 0xed8ae00,4, 0xed8ae80,31, 0xed8af00,1, 0xed8af10,3, 0xed8af20,3, 0xed8af30,3, 0xed8af40,1, 0xed8af48,3, 0xed8b000,4, 0xed8b040,13, 0xed8b080,1, 0xed8b200,15, 0xed8b240,4, 0xed8b260,17, 0xed8b2c0,6, 0xed8b2e0,2, 0xed8b2ec,3, 0xed8b300,8, 0xed8b324,8, 0xed8b400,68, 0xed8b600,60, 0xed8b700,4, 0xed8b720,5, 0xed8b740,1, 0xed8b780,2, 0xed8b78c,2, 0xed8b7a0,1, 0xed8b7c0,12, 0xed8b800,7, 0xed8b820,5, 0xed8b900,49, 0xed8ba00,1, 0xed8ba08,23, 0xed8ba84,1, 0xed8ba8c,1, 0xed8ba94,1, 0xed8ba9c,2, 0xed8bac0,1, 0xed8bc00,10, 0xed8bc40,1, 0xed8bc50,3, 0xed8bc80,10, 0xed8bcc0,12, 0xed8bd00,3, 0xed8be00,1, 0xed8c000,20, 0xed8c080,3, 0xed8c090,1, 0xed8c098,4, 0xed90000,49, 0xed90100,12, 0xed90140,4, 0xed90184,1, 0xed90198,2, 0xed901a4,1, 0xed901b8,7, 0xed901e0,4, 0xed90200,20, 0xed90280,3, 0xed90290,9, 0xed902c0,6, 0xed902e0,1, 0xed902e8,7, 0xed90400,49, 0xed90500,12, 0xed90540,4, 0xed90584,1, 0xed90598,2, 0xed905a4,1, 0xed905b8,7, 0xed905e0,4, 0xed90600,20, 0xed90680,3, 0xed90690,9, 0xed906c0,6, 0xed906e0,1, 0xed906e8,7, 0xed90800,49, 0xed90900,12, 0xed90940,4, 0xed90984,1, 0xed90998,2, 0xed909a4,1, 0xed909b8,7, 0xed909e0,4, 0xed90a00,20, 0xed90a80,3, 0xed90a90,9, 0xed90ac0,6, 0xed90ae0,1, 0xed90ae8,7, 0xed90c00,49, 0xed90d00,12, 0xed90d40,4, 0xed90d84,1, 0xed90d98,2, 0xed90da4,1, 0xed90db8,7, 0xed90de0,4, 0xed90e00,20, 0xed90e80,3, 0xed90e90,9, 0xed90ec0,6, 0xed90ee0,1, 0xed90ee8,7, 0xed91000,49, 0xed91100,12, 0xed91140,4, 0xed91184,1, 0xed91198,2, 0xed911a4,1, 0xed911b8,7, 0xed911e0,4, 0xed91200,20, 0xed91280,3, 0xed91290,9, 0xed912c0,6, 0xed912e0,1, 0xed912e8,7, 0xed91400,49, 0xed91500,12, 0xed91540,4, 0xed91584,1, 0xed91598,2, 0xed915a4,1, 0xed915b8,7, 0xed915e0,4, 0xed91600,20, 0xed91680,3, 0xed91690,9, 0xed916c0,6, 0xed916e0,1, 0xed916e8,7, 0xed91800,49, 0xed91900,12, 0xed91940,4, 0xed91984,1, 0xed91998,2, 0xed919a4,1, 0xed919b8,7, 0xed919e0,4, 0xed91a00,20, 0xed91a80,3, 0xed91a90,9, 0xed91ac0,6, 0xed91ae0,1, 0xed91ae8,7, 0xed92000,20, 0xed92080,10, 0xed92100,20, 0xed92180,10, 0xed92200,12, 0xed92400,20, 0xed92480,10, 0xed92500,20, 0xed92580,10, 0xed92600,12, 0xed92800,3, 0xed92840,12, 0xed92880,12, 0xed928c0,12, 0xed92900,12, 0xed92940,12, 0xed92980,12, 0xed929c0,12, 0xed92a00,12, 0xed92c00,12, 0xed92c40,7, 0xed92c60,10, 0xed93004,1, 0xed93044,43, 0xed93100,7, 0xed93120,7, 0xed93140,2, 0xed9314c,2, 0xed93160,2, 0xed9316c,2, 0xed93180,18, 0xed93200,2, 0xed93220,10, 0xed93260,20, 0xed932c0,9, 0xed93300,15, 0xed93340,9, 0xed93380,6, 0xed933a0,4, 0xed93400,5, 0xed94000,53, 0xed94100,3, 0xed94110,15, 0xed94200,53, 0xed94300,3, 0xed94310,15, 0xed94400,5, 0xed94420,5, 0xed94440,18, 0xed94800,3, 0xed94810,2, 0xed94820,3, 0xed94830,2, 0xed94840,1, 0xed95000,7, 0xed95020,7, 0xed95080,19, 0xed95100,19, 0xed95180,25, 0xed95200,20, 0xed95280,20, 0xed95300,8, 0xed95340,4, 0xed95380,15, 0xed953c0,15, 0xed95400,9, 0xed95430,5, 0xed96000,6, 0xed96020,1, 0xed96028,2, 0xed96040,11, 0xed96070,2, 0xed98000,82, 0xed98200,2, 0xed98240,9, 0xed98280,7, 0xed98400,82, 0xed98604,6, 0xed98700,15, 0xed98740,9, 0xed98780,6, 0xed987a0,6, 0xed98800,2, 0xed98810,3, 0xed98880,24, 0xed988e4,1, 0xed988f0,12, 0xeda0000,22, 0xeda0080,22, 0xeda0100,5, 0xeda0120,5, 0xeda0140,3, 0xeda0160,16, 0xeda01c0,7, 0xeda01e0,2, 0xeda0200,7, 0xeda0220,2, 0xeda0400,15, 0xeda0440,3, 0xeda0450,3, 0xeda0460,24, 0xeda0500,15, 0xeda0540,3, 0xeda0550,3, 0xeda0560,24, 0xeda0600,15, 0xeda0640,3, 0xeda0650,3, 0xeda0660,24, 0xeda0700,15, 0xeda0740,3, 0xeda0750,3, 0xeda0760,24, 0xeda0800,4, 0xeda0820,16, 0xeda0880,10, 0xeda08c0,10, 0xeda0900,6, 0xeda0920,6, 0xeda0940,4, 0xeda0980,13, 0xeda09c0,13, 0xeda0a00,9, 0xeda1000,86, 0xeda1200,2, 0xeda1240,9, 0xeda1280,7, 0xeda1400,86, 0xeda1604,6, 0xeda1800,86, 0xeda1a00,2, 0xeda1a40,9, 0xeda1a80,7, 0xeda1c00,86, 0xeda1e04,6, 0xeda2000,15, 0xeda2040,4, 0xeda2060,17, 0xeda20c0,6, 0xeda20e0,4, 0xeda20f4,11, 0xeda2128,38, 0xeda21c4,2, 0xeda21d0,4, 0xeda2200,1, 0xeda4000,22, 0xeda4080,22, 0xeda4100,5, 0xeda4120,5, 0xeda4140,3, 0xeda4160,16, 0xeda41c0,7, 0xeda41e0,2, 0xeda4200,7, 0xeda4220,2, 0xeda4400,15, 0xeda4440,3, 0xeda4450,3, 0xeda4460,24, 0xeda4500,15, 0xeda4540,3, 0xeda4550,3, 0xeda4560,24, 0xeda4600,15, 0xeda4640,3, 0xeda4650,3, 0xeda4660,24, 0xeda4700,15, 0xeda4740,3, 0xeda4750,3, 0xeda4760,24, 0xeda4800,4, 0xeda4820,16, 0xeda4880,10, 0xeda48c0,10, 0xeda4900,6, 0xeda4920,6, 0xeda4940,4, 0xeda4980,13, 0xeda49c0,13, 0xeda4a00,9, 0xeda5000,86, 0xeda5200,2, 0xeda5240,9, 0xeda5280,7, 0xeda5400,86, 0xeda5604,6, 0xeda5800,86, 0xeda5a00,2, 0xeda5a40,9, 0xeda5a80,7, 0xeda5c00,86, 0xeda5e04,6, 0xeda6000,15, 0xeda6040,4, 0xeda6060,17, 0xeda60c0,6, 0xeda60e0,4, 0xeda60f4,11, 0xeda6128,38, 0xeda61c4,2, 0xeda61d0,4, 0xeda6200,1, 0xeda8000,9, 0xeda8040,9, 0xeda8080,5, 0xeda8100,21, 0xeda8160,5, 0xeda8180,45, 0xeda8240,13, 0xeda8280,9, 0xeda8400,9, 0xeda8440,9, 0xeda8480,5, 0xeda8500,21, 0xeda8560,5, 0xeda8580,45, 0xeda8640,13, 0xeda8680,9, 0xeda8800,12, 0xeda8900,15, 0xeda8940,4, 0xeda8960,17, 0xeda89c0,6, 0xeda89e0,4, 0xeda89f4,29, 0xedac000,30, 0xedac080,3, 0xedac090,19, 0xedac100,30, 0xedac180,3, 0xedac190,19, 0xedac200,30, 0xedac280,3, 0xedac290,19, 0xedac300,30, 0xedac380,3, 0xedac390,19, 0xedac400,30, 0xedac480,3, 0xedac490,19, 0xedac500,30, 0xedac580,3, 0xedac590,19, 0xedac600,30, 0xedac680,3, 0xedac690,19, 0xedac700,30, 0xedac780,3, 0xedac790,19, 0xedac800,12, 0xedac844,1, 0xedac854,8, 0xedac880,7, 0xedac8a0,2, 0xedac8ac,2, 0xedac8c0,26, 0xedac980,4, 0xedac9a0,5, 0xedac9c0,1, 0xedad000,3, 0xedad010,3, 0xedad020,3, 0xedad030,3, 0xedad040,3, 0xedad050,3, 0xedad060,3, 0xedad070,3, 0xedad080,6, 0xedad0a0,6, 0xedad0c0,6, 0xedad0e0,6, 0xedad100,6, 0xedad120,6, 0xedad140,6, 0xedad160,6, 0xedad200,68, 0xedad400,1, 0xedad804,1, 0xedad844,54, 0xedada00,12, 0xedada40,12, 0xedada80,12, 0xedadac0,12, 0xedadb00,12, 0xedadb40,12, 0xedadb80,12, 0xedadbc0,12, 0xedadc00,28, 0xedadc80,10, 0xedae000,3, 0xedae020,6, 0xedae040,6, 0xedae060,15, 0xedae100,26, 0xedae180,15, 0xedae200,15, 0xedae240,4, 0xedae260,17, 0xedae2c0,6, 0xedae2e0,4, 0xedae2f4,18, 0xedae340,4, 0xedae360,17, 0xedae3c0,6, 0xedae3e0,4, 0xedae3f4,15, 0xedb0000,1, 0xedb1000,1020, 0xedb2000,194, 0xedb3000,1020, 0xedb4000,1020, 0xedb5000,1020, 0xedb6000,1020, 0xedb7000,1020, 0xedb8000,1020, 0xedb9000,1020, 0xedba000,1020, 0xedbb000,194, 0xedbc000,3, 0xedbc010,13, 0xedbc080,16, 0xedbc100,20, 0xedbc184,1, 0xedbc18c,4, 0xedbc200,3, 0xedbc210,13, 0xedbc280,16, 0xedbc300,20, 0xedbc384,1, 0xedbc38c,4, 0xedbc400,3, 0xedbc410,13, 0xedbc480,16, 0xedbc500,20, 0xedbc584,1, 0xedbc58c,4, 0xedbc600,3, 0xedbc610,13, 0xedbc680,16, 0xedbc700,20, 0xedbc784,1, 0xedbc78c,4, 0xedbc800,3, 0xedbc810,13, 0xedbc880,16, 0xedbc900,20, 0xedbc984,1, 0xedbc98c,4, 0xedbca00,3, 0xedbca10,13, 0xedbca80,16, 0xedbcb00,20, 0xedbcb84,1, 0xedbcb8c,4, 0xedbcc00,3, 0xedbcc10,13, 0xedbcc80,16, 0xedbcd00,20, 0xedbcd84,1, 0xedbcd8c,4, 0xedbce00,3, 0xedbce10,13, 0xedbce80,16, 0xedbcf00,20, 0xedbcf84,1, 0xedbcf8c,4, 0xedbd000,3, 0xedbd010,13, 0xedbd080,16, 0xedbd100,20, 0xedbd184,1, 0xedbd18c,4, 0xedbd200,18, 0xedbd250,2, 0xedbd260,4, 0xedbe000,1, 0xedbe014,1, 0xedbe01c,19, 0xedbe080,1, 0xedbe094,1, 0xedbe09c,19, 0xedbe100,8, 0xedbe200,13, 0xedbe240,9, 0xedbe280,12, 0xedbe2c0,2, 0xedbe2e0,12, 0xedc0000,3, 0xedc0080,20, 0xedc0100,10, 0xedc0140,1, 0xedc0154,1, 0xedc015c,2, 0xedc0200,15, 0xedc0240,4, 0xedc0260,17, 0xedc02c0,6, 0xedc02e0,2, 0xedc02ec,3, 0xedc0300,8, 0xedc0324,1, 0xedc0400,4, 0xedc0440,20, 0xedc04c0,9, 0xedc0500,33, 0xedc0600,11, 0xedc0640,11, 0xedc0680,1, 0xedc2000,1, 0xedc2200,4, 0xedc2300,53, 0xedc2400,4, 0xedc2500,40, 0xedc2600,15, 0xedc2640,4, 0xedc2660,17, 0xedc26c0,6, 0xedc26e0,2, 0xedc26ec,3, 0xedc2700,8, 0xedc2724,1, 0xedc2800,20, 0xedc2c00,53, 0xedc2d00,53, 0xedc2e00,1, 0xedc3000,40, 0xedc3100,40, 0xedc3200,1, 0xedc3400,1, 0xedc3804,1, 0xedc3844,39, 0xedc3900,3, 0xedc3a00,3, 0xedc3a44,1, 0xedc3a50,4, 0xedc3a80,1, 0xedc4000,2, 0xedc4200,27, 0xedc4280,4, 0xedc42c0,25, 0xedc4340,6, 0xedc4360,2, 0xedc436c,3, 0xedc4380,8, 0xedc43a4,1, 0xedc4400,12, 0xedc4440,1, 0xedc8000,3, 0xedc8080,20, 0xedc8100,10, 0xedc8140,1, 0xedc8154,1, 0xedc815c,2, 0xedc8200,15, 0xedc8240,4, 0xedc8260,17, 0xedc82c0,6, 0xedc82e0,2, 0xedc82ec,3, 0xedc8300,8, 0xedc8324,1, 0xedc8400,4, 0xedc8440,20, 0xedc84c0,9, 0xedc8500,33, 0xedc8600,11, 0xedc8640,11, 0xedc8680,1, 0xedca000,1, 0xedca200,4, 0xedca300,53, 0xedca400,4, 0xedca500,40, 0xedca600,15, 0xedca640,4, 0xedca660,17, 0xedca6c0,6, 0xedca6e0,2, 0xedca6ec,3, 0xedca700,8, 0xedca724,1, 0xedca800,20, 0xedcac00,53, 0xedcad00,53, 0xedcae00,1, 0xedcb000,40, 0xedcb100,40, 0xedcb200,1, 0xedcb400,1, 0xedcb804,1, 0xedcb844,39, 0xedcb900,3, 0xedcba00,3, 0xedcba44,1, 0xedcba50,4, 0xedcba80,1, 0xedcc000,2, 0xedcc200,27, 0xedcc280,4, 0xedcc2c0,25, 0xedcc340,6, 0xedcc360,2, 0xedcc36c,3, 0xedcc380,8, 0xedcc3a4,1, 0xedcc400,12, 0xedcc440,1, 0xedd0000,4, 0xedd0020,3, 0xedd0030,2, 0xedd0200,1, 0xedd0224,10, 0xedd0250,5, 0xedd0280,1, 0xedd0288,24, 0xedd0300,3, 0xedd0404,1, 0xedd0414,5, 0xedd0500,36, 0xedd0600,3, 0xedd0800,2, 0xedd1000,1, 0xedd1008,21, 0xedd1080,1, 0xedd1088,21, 0xedd1100,1, 0xedd1108,21, 0xedd1180,1, 0xedd1188,21, 0xedd1200,1, 0xedd1208,21, 0xedd1280,1, 0xedd1288,21, 0xedd1300,1, 0xedd1308,21, 0xedd1380,1, 0xedd1388,21, 0xedd1400,21, 0xedd1800,142, 0xedd1c00,1, 0xedd2000,4, 0xedd2100,39, 0xedd2200,3, 0xedd2214,3, 0xedd4004,1, 0xedd4020,16, 0xedd4080,2, 0xedd4094,1, 0xedd409c,2, 0xedd40c0,6, 0xedd4100,8, 0xedd8004,17, 0xedd8054,1, 0xedd805c,2, 0xedd8080,1, 0xedd80a0,2, 0xedd80b4,4, 0xedd8100,2, 0xedd8200,8, 0xedd8400,1, 0xedd8600,27, 0xedd8680,4, 0xedd86c0,25, 0xedd8740,6, 0xedd8760,2, 0xedd876c,3, 0xedd8780,8, 0xedd87a4,3, 0xedd8800,44, 0xedd8900,1, 0xede0000,1, 0xede0200,27, 0xede0280,4, 0xede02c0,25, 0xede0340,6, 0xede0360,2, 0xede036c,3, 0xede0380,8, 0xede03a4,1, 0xede0400,20, 0xede0480,3, 0xede0490,9, 0xf002000,49, 0xf002100,12, 0xf002140,4, 0xf002184,1, 0xf002198,2, 0xf0021a4,1, 0xf0021b8,7, 0xf0021e0,4, 0xf002200,20, 0xf002280,3, 0xf002290,9, 0xf0022c0,6, 0xf0022e0,1, 0xf0022e8,7, 0xf002400,49, 0xf002500,12, 0xf002540,4, 0xf002584,1, 0xf002598,2, 0xf0025a4,1, 0xf0025b8,7, 0xf0025e0,4, 0xf002600,20, 0xf002680,3, 0xf002690,9, 0xf0026c0,6, 0xf0026e0,1, 0xf0026e8,7, 0xf002800,7, 0xf002820,3, 0xf002830,11, 0xf002860,14, 0xf002900,9, 0xf002a00,7, 0xf002a20,9, 0xf002a80,2, 0xf002c00,27, 0xf002c80,9, 0xf002cc0,6, 0xf002ce0,4, 0xf002d00,5, 0xf002d18,5, 0xf002d30,9, 0xf002d58,5, 0xf002d70,7, 0xf002e00,6, 0xf002e20,6, 0xf002e40,6, 0xf002e60,6, 0xf002e80,6, 0xf002ea0,6, 0xf002ec0,6, 0xf002ee0,6, 0xf002f00,6, 0xf002f20,6, 0xf002f40,6, 0xf002f60,6, 0xf002f80,6, 0xf002fa0,6, 0xf002fc0,6, 0xf002fe0,6, 0xf003000,28, 0xf003080,6, 0xf040000,3, 0xf04001c,6, 0xf040080,3, 0xf040090,1, 0xf0400d0,3, 0xf0400e4,25, 0xf04014c,21, 0xf0401a4,12, 0xf0401d8,72, 0xf040304,5, 0xf04031c,98, 0xf0404ac,4, 0xf0404c8,20, 0xf040520,56, 0xf040608,21, 0xf040664,3, 0xf040674,22, 0xf040710,1, 0xf040750,3, 0xf040764,25, 0xf0407cc,21, 0xf040824,12, 0xf040858,72, 0xf040984,5, 0xf04099c,98, 0xf040b2c,4, 0xf040b48,20, 0xf040ba0,56, 0xf040c88,21, 0xf040ce4,3, 0xf040cf4,22, 0xf040d90,1, 0xf040dd0,3, 0xf040de4,25, 0xf040e4c,21, 0xf040ea4,12, 0xf040ed8,72, 0xf041004,5, 0xf04101c,98, 0xf0411ac,4, 0xf0411c8,20, 0xf041220,56, 0xf041308,21, 0xf041364,3, 0xf041374,22, 0xf041410,1, 0xf041450,3, 0xf041464,25, 0xf0414cc,21, 0xf041524,12, 0xf041558,72, 0xf041684,5, 0xf04169c,98, 0xf04182c,4, 0xf041848,20, 0xf0418a0,56, 0xf041988,21, 0xf0419e4,3, 0xf0419f4,22, 0xf041a90,1, 0xf041ad0,3, 0xf041ae4,25, 0xf041b4c,21, 0xf041ba4,12, 0xf041bd8,72, 0xf041d04,5, 0xf041d1c,98, 0xf041eac,4, 0xf041ec8,20, 0xf041f20,56, 0xf042008,21, 0xf042064,3, 0xf042074,22, 0xf042110,1, 0xf042150,3, 0xf042164,25, 0xf0421cc,21, 0xf042224,12, 0xf042258,72, 0xf042384,5, 0xf04239c,98, 0xf04252c,4, 0xf042548,20, 0xf0425a0,56, 0xf042688,21, 0xf0426e4,3, 0xf0426f4,22, 0xf042790,1, 0xf0427d0,3, 0xf0427e4,25, 0xf04284c,21, 0xf0428a4,12, 0xf0428d8,72, 0xf042a04,5, 0xf042a1c,98, 0xf042bac,4, 0xf042bc8,20, 0xf042c20,56, 0xf042d08,21, 0xf042d64,3, 0xf042d74,22, 0xf042e10,1, 0xf042e50,3, 0xf042e64,25, 0xf042ecc,21, 0xf042f24,12, 0xf042f58,72, 0xf043084,5, 0xf04309c,98, 0xf04322c,4, 0xf043248,20, 0xf0432a0,56, 0xf043388,21, 0xf0433e4,3, 0xf0433f4,22, 0xf043490,1, 0xf0434d0,3, 0xf0434e4,25, 0xf04354c,21, 0xf0435a4,12, 0xf0435d8,72, 0xf043704,5, 0xf04371c,98, 0xf0438ac,4, 0xf0438c8,20, 0xf043920,56, 0xf043a08,21, 0xf043a64,3, 0xf043a74,22, 0xf043b10,1, 0xf043b50,3, 0xf043b64,25, 0xf043bcc,21, 0xf043c24,12, 0xf043c58,72, 0xf043d84,5, 0xf043d9c,98, 0xf043f2c,4, 0xf043f48,20, 0xf043fa0,56, 0xf044088,21, 0xf0440e4,3, 0xf0440f4,22, 0xf044190,1, 0xf0441d0,3, 0xf0441e4,25, 0xf04424c,21, 0xf0442a4,12, 0xf0442d8,72, 0xf044404,5, 0xf04441c,98, 0xf0445ac,4, 0xf0445c8,20, 0xf044620,56, 0xf044708,21, 0xf044764,3, 0xf044774,22, 0xf044810,1, 0xf044850,3, 0xf044864,25, 0xf0448cc,21, 0xf044924,12, 0xf044958,72, 0xf044a84,5, 0xf044a9c,98, 0xf044c2c,4, 0xf044c48,20, 0xf044ca0,56, 0xf044d88,21, 0xf044de4,3, 0xf044df4,22, 0xf044e90,1, 0xf044ed0,3, 0xf044ee4,25, 0xf044f4c,21, 0xf044fa4,12, 0xf044fd8,72, 0xf045104,5, 0xf04511c,98, 0xf0452ac,4, 0xf0452c8,20, 0xf045320,56, 0xf045408,21, 0xf045464,3, 0xf045474,22, 0xf045510,1, 0xf045550,3, 0xf045564,25, 0xf0455cc,21, 0xf045624,12, 0xf045658,72, 0xf045784,5, 0xf04579c,98, 0xf04592c,4, 0xf045948,20, 0xf0459a0,56, 0xf045a88,21, 0xf045ae4,3, 0xf045af4,22, 0xf045b90,1, 0xf045bd0,3, 0xf045be4,25, 0xf045c4c,21, 0xf045ca4,12, 0xf045cd8,72, 0xf045e04,5, 0xf045e1c,98, 0xf045fac,4, 0xf045fc8,20, 0xf046020,56, 0xf046108,21, 0xf046164,3, 0xf046174,22, 0xf046210,1, 0xf046250,3, 0xf046264,25, 0xf0462cc,21, 0xf046324,12, 0xf046358,72, 0xf046484,5, 0xf04649c,98, 0xf04662c,4, 0xf046648,20, 0xf0466a0,56, 0xf046788,21, 0xf0467e4,3, 0xf0467f4,22, 0xf046890,1, 0xf0468d0,3, 0xf0468e4,25, 0xf04694c,21, 0xf0469a4,12, 0xf0469d8,72, 0xf046b04,5, 0xf046b1c,98, 0xf046cac,4, 0xf046cc8,20, 0xf046d20,56, 0xf046e08,21, 0xf046e64,3, 0xf046e74,22, 0xf046f10,1, 0xf046f50,3, 0xf046f64,25, 0xf046fcc,21, 0xf047024,12, 0xf047058,72, 0xf047184,5, 0xf04719c,98, 0xf04732c,4, 0xf047348,20, 0xf0473a0,56, 0xf047488,21, 0xf0474e4,3, 0xf0474f4,22, 0xf047590,1, 0xf0475d0,3, 0xf0475e4,25, 0xf04764c,21, 0xf0476a4,12, 0xf0476d8,72, 0xf047804,5, 0xf04781c,98, 0xf0479ac,4, 0xf0479c8,20, 0xf047a20,56, 0xf047b08,21, 0xf047b64,3, 0xf047b74,22, 0xf047c10,1, 0xf047c50,3, 0xf047c64,25, 0xf047ccc,21, 0xf047d24,12, 0xf047d58,72, 0xf047e84,5, 0xf047e9c,98, 0xf04802c,4, 0xf048048,20, 0xf0480a0,56, 0xf048188,21, 0xf0481e4,3, 0xf0481f4,22, 0xf048290,1, 0xf0482d0,3, 0xf0482e4,25, 0xf04834c,21, 0xf0483a4,12, 0xf0483d8,72, 0xf048504,5, 0xf04851c,98, 0xf0486ac,4, 0xf0486c8,20, 0xf048720,56, 0xf048808,21, 0xf048864,3, 0xf048874,22, 0xf048910,1, 0xf048950,3, 0xf048964,25, 0xf0489cc,21, 0xf048a24,12, 0xf048a58,72, 0xf048b84,5, 0xf048b9c,98, 0xf048d2c,4, 0xf048d48,20, 0xf048da0,56, 0xf048e88,21, 0xf048ee4,3, 0xf048ef4,22, 0xf048f90,1, 0xf048fd0,3, 0xf048fe4,25, 0xf04904c,21, 0xf0490a4,12, 0xf0490d8,72, 0xf049204,5, 0xf04921c,98, 0xf0493ac,4, 0xf0493c8,20, 0xf049420,56, 0xf049508,21, 0xf049564,3, 0xf049574,22, 0xf049610,1, 0xf049650,3, 0xf049664,25, 0xf0496cc,21, 0xf049724,12, 0xf049758,72, 0xf049884,5, 0xf04989c,98, 0xf049a2c,4, 0xf049a48,20, 0xf049aa0,56, 0xf049b88,21, 0xf049be4,3, 0xf049bf4,22, 0xf049c90,1, 0xf049cd0,3, 0xf049ce4,25, 0xf049d4c,21, 0xf049da4,12, 0xf049dd8,72, 0xf049f04,5, 0xf049f1c,98, 0xf04a0ac,4, 0xf04a0c8,20, 0xf04a120,56, 0xf04a208,21, 0xf04a264,3, 0xf04a274,22, 0xf04a310,1, 0xf04a350,3, 0xf04a364,25, 0xf04a3cc,21, 0xf04a424,12, 0xf04a458,72, 0xf04a584,5, 0xf04a59c,98, 0xf04a72c,4, 0xf04a748,20, 0xf04a7a0,56, 0xf04a888,21, 0xf04a8e4,3, 0xf04a8f4,22, 0xf04a990,1, 0xf04a9d0,3, 0xf04a9e4,25, 0xf04aa4c,21, 0xf04aaa4,12, 0xf04aad8,72, 0xf04ac04,5, 0xf04ac1c,98, 0xf04adac,4, 0xf04adc8,20, 0xf04ae20,56, 0xf04af08,21, 0xf04af64,3, 0xf04af74,22, 0xf04b010,1, 0xf04b050,3, 0xf04b064,25, 0xf04b0cc,21, 0xf04b124,12, 0xf04b158,72, 0xf04b284,5, 0xf04b29c,98, 0xf04b42c,4, 0xf04b448,20, 0xf04b4a0,56, 0xf04b588,21, 0xf04b5e4,3, 0xf04b5f4,22, 0xf04b690,1, 0xf04b6d0,3, 0xf04b6e4,25, 0xf04b74c,21, 0xf04b7a4,12, 0xf04b7d8,72, 0xf04b904,5, 0xf04b91c,98, 0xf04baac,4, 0xf04bac8,20, 0xf04bb20,56, 0xf04bc08,21, 0xf04bc64,3, 0xf04bc74,22, 0xf04bd10,1, 0xf04bd50,3, 0xf04bd64,25, 0xf04bdcc,21, 0xf04be24,12, 0xf04be58,72, 0xf04bf84,5, 0xf04bf9c,98, 0xf04c12c,4, 0xf04c148,20, 0xf04c1a0,56, 0xf04c288,21, 0xf04c2e4,3, 0xf04c2f4,22, 0xf04c390,1, 0xf04c3d0,3, 0xf04c3e4,25, 0xf04c44c,21, 0xf04c4a4,12, 0xf04c4d8,72, 0xf04c604,5, 0xf04c61c,98, 0xf04c7ac,4, 0xf04c7c8,20, 0xf04c820,56, 0xf04c908,21, 0xf04c964,3, 0xf04c974,22, 0xf04ca10,1, 0xf04ca50,3, 0xf04ca64,25, 0xf04cacc,21, 0xf04cb24,12, 0xf04cb58,72, 0xf04cc84,5, 0xf04cc9c,98, 0xf04ce2c,4, 0xf04ce48,20, 0xf04cea0,56, 0xf04cf88,21, 0xf04cfe4,3, 0xf04cff4,22, 0xf04d090,1, 0xf04d0d0,3, 0xf04d0e4,25, 0xf04d14c,21, 0xf04d1a4,12, 0xf04d1d8,72, 0xf04d304,5, 0xf04d31c,98, 0xf04d4ac,4, 0xf04d4c8,20, 0xf04d520,56, 0xf04d608,21, 0xf04d664,3, 0xf04d674,22, 0xf04d710,1, 0xf04d750,3, 0xf04d764,25, 0xf04d7cc,21, 0xf04d824,12, 0xf04d858,72, 0xf04d984,5, 0xf04d99c,98, 0xf04db2c,4, 0xf04db48,20, 0xf04dba0,56, 0xf04dc88,21, 0xf04dce4,3, 0xf04dcf4,22, 0xf04dd90,1, 0xf04ddd0,3, 0xf04dde4,25, 0xf04de4c,21, 0xf04dea4,12, 0xf04ded8,72, 0xf04e004,5, 0xf04e01c,98, 0xf04e1ac,4, 0xf04e1c8,20, 0xf04e220,56, 0xf04e308,21, 0xf04e364,3, 0xf04e374,22, 0xf04e410,2, 0xf04e454,72, 0xf04e760,3, 0xf04e7ac,42, 0xf04e85c,31, 0xf04e990,54, 0xf04ea70,58, 0xf04eb60,58, 0xf04ec50,58, 0xf04ed40,58, 0xf04ee30,58, 0xf04ef20,58, 0xf04f010,58, 0xf04f100,58, 0xf04f1f0,58, 0xf04f2e0,58, 0xf04f3d0,58, 0xf04f4c0,58, 0xf04f5b0,58, 0xf04f6a0,58, 0xf04f790,58, 0xf04f880,58, 0xf04f970,58, 0xf04fa60,58, 0xf04fb50,58, 0xf04fc40,58, 0xf04fd30,58, 0xf04fe20,58, 0xf04ff10,58, 0xf050000,58, 0xf0500f0,58, 0xf0501e0,58, 0xf0502d0,58, 0xf0503c0,58, 0xf0504b0,58, 0xf0505a0,58, 0xf050690,58, 0xf050780,101, 0xf050990,49, 0xf050a90,18, 0xf050ae0,11, 0xf050b10,4, 0xf050b34,45, 0xf050c38,9, 0xf050c68,4, 0xf050c80,2, 0xf050cb8,14, 0xf050cf4,12, 0xf050e38,3, 0xf050e48,2, 0xf050e54,68, 0xf050f68,2, 0xf050f74,68, 0xf051088,1, 0xf051090,2, 0xf05109c,68, 0xf0511b0,2, 0xf0511bc,68, 0xf0512d0,1, 0xf0512d8,4, 0xf0512f0,3, 0xf051304,4, 0xf051318,7, 0xf051368,8, 0xf0513bc,1, 0xf0513c8,4, 0xf0513e0,3, 0xf0513f4,4, 0xf051408,7, 0xf051458,8, 0xf0514ac,1, 0xf0514b8,4, 0xf0514d0,3, 0xf0514e4,4, 0xf0514f8,7, 0xf051548,8, 0xf05159c,1, 0xf0515a8,4, 0xf0515c0,3, 0xf0515d4,4, 0xf0515e8,7, 0xf051638,8, 0xf05168c,1, 0xf051698,4, 0xf0516b0,3, 0xf0516c4,4, 0xf0516d8,7, 0xf051728,8, 0xf05177c,1, 0xf051788,4, 0xf0517a0,3, 0xf0517b4,4, 0xf0517c8,7, 0xf051818,8, 0xf05186c,1, 0xf051878,4, 0xf051890,3, 0xf0518a4,4, 0xf0518b8,7, 0xf051908,8, 0xf05195c,1, 0xf051968,4, 0xf051980,3, 0xf051994,4, 0xf0519a8,7, 0xf0519f8,8, 0xf051a4c,1, 0xf051a58,4, 0xf051a70,3, 0xf051a84,4, 0xf051a98,7, 0xf051ae8,8, 0xf051b3c,1, 0xf051b48,4, 0xf051b60,3, 0xf051b74,4, 0xf051b88,7, 0xf051bd8,8, 0xf051c2c,1, 0xf051c38,4, 0xf051c50,3, 0xf051c64,4, 0xf051c78,7, 0xf051cc8,8, 0xf051d1c,1, 0xf051d28,4, 0xf051d40,3, 0xf051d54,4, 0xf051d68,7, 0xf051db8,8, 0xf051e0c,1, 0xf051e18,4, 0xf051e30,3, 0xf051e44,4, 0xf051e58,7, 0xf051ea8,8, 0xf051efc,1, 0xf051f08,4, 0xf051f20,3, 0xf051f34,4, 0xf051f48,7, 0xf051f98,8, 0xf051fec,1, 0xf051ff8,4, 0xf052010,3, 0xf052024,4, 0xf052038,7, 0xf052088,8, 0xf0520dc,1, 0xf0520e8,4, 0xf052100,3, 0xf052114,4, 0xf052128,7, 0xf052178,8, 0xf0521cc,1, 0xf0521d8,4, 0xf0521f0,3, 0xf052204,4, 0xf052218,7, 0xf052268,8, 0xf0522bc,1, 0xf0522c8,64, 0xf052428,4, 0xf052678,27, 0xf0526ec,3, 0xf052778,1, 0xf0528c8,11, 0xf0528f8,17, 0xf052940,1, 0xf052948,1, 0xf052950,1, 0xf052978,36, 0xf052a0c,57, 0xf052af4,34, 0xf052b80,57, 0xf052c68,34, 0xf052cf4,57, 0xf052ddc,34, 0xf052e68,57, 0xf052f50,34, 0xf052fdc,57, 0xf0530c4,34, 0xf053150,57, 0xf053238,34, 0xf0532c4,57, 0xf0533ac,34, 0xf053438,57, 0xf053520,34, 0xf0535ac,57, 0xf053694,34, 0xf053720,57, 0xf053808,34, 0xf053894,57, 0xf05397c,34, 0xf053a08,57, 0xf053af0,34, 0xf053b7c,57, 0xf053c64,34, 0xf053cf0,57, 0xf053dd8,34, 0xf053e64,57, 0xf053f4c,34, 0xf053fd8,57, 0xf0540c0,34, 0xf05414c,57, 0xf054234,34, 0xf0542c0,57, 0xf0543a8,34, 0xf054434,57, 0xf05451c,34, 0xf0545a8,57, 0xf054690,34, 0xf05471c,57, 0xf054804,34, 0xf054890,57, 0xf054978,34, 0xf054a04,57, 0xf054aec,34, 0xf054b78,57, 0xf054c60,34, 0xf054cec,57, 0xf054dd4,34, 0xf054e60,57, 0xf054f48,34, 0xf054fd4,57, 0xf0550bc,34, 0xf055148,57, 0xf055230,34, 0xf0552bc,57, 0xf0553a4,34, 0xf055430,57, 0xf055518,34, 0xf0555a4,57, 0xf05568c,34, 0xf055718,57, 0xf055800,34, 0xf05588c,57, 0xf055974,34, 0xf055a00,57, 0xf055ae8,34, 0xf055b74,57, 0xf055d68,18, 0xf055ee8,2131, 0xf05830c,164, 0xf05865c,1, 0xf0591e8,1, 0xf0591f8,225, 0xf059588,7, 0xf0595a8,1, 0xf059670,1, 0xf0596a0,9, 0xf0596c8,17, 0xf059720,49, 0xf0597e8,5, 0xf059858,1, 0xf05a1e8,4, 0xf05a200,9, 0xf05a228,144, 0xf05a528,8, 0xf0a0000,3, 0xf0a0018,2, 0xf0a0024,14, 0xf0a0060,27, 0xf0a00d0,3, 0xf0a00e0,3, 0xf0a00f0,3, 0xf0a0100,14, 0xf0a0140,3, 0xf0a0150,1, 0xf0a015c,4, 0xf0a0170,1, 0xf0a0180,15, 0xf0a01c0,1, 0xf0a01c8,5, 0xf0a01e0,1, 0xf0a01f0,7, 0xf0a0218,2, 0xf0a0224,14, 0xf0a0260,27, 0xf0a02d0,3, 0xf0a02e0,3, 0xf0a02f0,3, 0xf0a0300,14, 0xf0a0340,3, 0xf0a0350,1, 0xf0a035c,4, 0xf0a0370,1, 0xf0a0380,15, 0xf0a03c0,1, 0xf0a03c8,5, 0xf0a03e0,1, 0xf0a03f0,7, 0xf0a0418,2, 0xf0a0424,14, 0xf0a0460,27, 0xf0a04d0,3, 0xf0a04e0,3, 0xf0a04f0,3, 0xf0a0500,14, 0xf0a0540,3, 0xf0a0550,1, 0xf0a055c,4, 0xf0a0570,1, 0xf0a0580,15, 0xf0a05c0,1, 0xf0a05c8,5, 0xf0a05e0,1, 0xf0a05f0,7, 0xf0a0618,2, 0xf0a0624,14, 0xf0a0660,27, 0xf0a06d0,3, 0xf0a06e0,3, 0xf0a06f0,3, 0xf0a0700,14, 0xf0a0740,3, 0xf0a0750,1, 0xf0a075c,4, 0xf0a0770,1, 0xf0a0780,15, 0xf0a07c0,1, 0xf0a07c8,5, 0xf0a07e0,1, 0xf0a07f0,7, 0xf0a0818,2, 0xf0a0824,14, 0xf0a0860,27, 0xf0a08d0,3, 0xf0a08e0,3, 0xf0a08f0,3, 0xf0a0900,14, 0xf0a0940,3, 0xf0a0950,1, 0xf0a095c,4, 0xf0a0970,1, 0xf0a0980,15, 0xf0a09c0,1, 0xf0a09c8,5, 0xf0a09e0,1, 0xf0a09f0,4, 0xf0a1844,1, 0xf0a1850,3, 0xf0a1860,3, 0xf0a1870,7, 0xf0a1894,5, 0xf0a18c0,1, 0xf0a18e0,7, 0xf0a1900,11, 0xf0a1930,3, 0xf0a1980,4, 0xf0a19c0,14, 0xf0a1c00,5, 0xf0a1c18,95, 0xf0a1da0,66, 0xf0a2000,16, 0xf0a2100,36, 0xf0a2200,44, 0xf0a2400,100, 0xf0a2600,45, 0xf0a2700,4, 0xf0a2780,20, 0xf0a2800,2, 0xf0a280c,68, 0xf0a2920,3, 0xf0a2c04,1, 0xf0a2c40,28, 0xf0a2cb4,9, 0xf0a2ce0,7, 0xf0a2d00,7, 0xf0a2d20,7, 0xf0a2d40,7, 0xf0a2d60,7, 0xf0a2d80,7, 0xf0a2da0,7, 0xf0a2dc0,7, 0xf0a2e00,9, 0xf0a2e3c,2, 0xf0a2e50,6, 0xf0a2e84,10, 0xf0a3004,1, 0xf0a31f8,130, 0xf0a3c00,1, 0xf0a3c20,10, 0xf0a3c60,8, 0xf0a3c84,5, 0xf0a3d00,32, 0xf0a3d84,1, 0xf0a3d94,6, 0xf0a3e40,71, 0xf0a4a04,3, 0xf0a4b00,33, 0xf0a4b90,3, 0xf0a4c00,12, 0xf0a4cc0,4, 0xf0a4d00,15, 0xf0a4e00,25, 0xf0a4e84,1, 0xf0a4ea0,13, 0xf0a5000,2, 0xf0a5400,4, 0xf0a5420,8, 0xf0a5444,1, 0xf0a544c,1, 0xf0a5454,1, 0xf0a545c,10, 0xf0a5800,3, 0xf0a5810,3, 0xf0a5820,3, 0xf0a5830,3, 0xf0a5840,3, 0xf0a5850,3, 0xf0a5860,3, 0xf0a5870,3, 0xf0a5880,3, 0xf0a5890,3, 0xf0a58a0,3, 0xf0a58b0,3, 0xf0a58c0,3, 0xf0a58d0,3, 0xf0a58e0,3, 0xf0a58f0,3, 0xf0a5900,3, 0xf0a5910,3, 0xf0a5920,3, 0xf0a5930,3, 0xf0a5940,3, 0xf0a5950,3, 0xf0a5960,3, 0xf0a5970,3, 0xf0a5980,3, 0xf0a5990,3, 0xf0a59a0,3, 0xf0a59b0,3, 0xf0a59c0,3, 0xf0a59d0,3, 0xf0a59e0,3, 0xf0a59f0,3, 0xf0a5a00,3, 0xf0a5a10,3, 0xf0a5a20,3, 0xf0a5a30,3, 0xf0a5a40,3, 0xf0a5a50,3, 0xf0a5a60,3, 0xf0a5a70,3, 0xf0a5a80,3, 0xf0a5a90,3, 0xf0a5aa0,3, 0xf0a5ab0,3, 0xf0a5ac0,3, 0xf0a5ad0,3, 0xf0a5ae0,3, 0xf0a5af0,3, 0xf0a5b00,3, 0xf0a5b10,3, 0xf0a5b20,3, 0xf0a5b30,3, 0xf0a5b40,3, 0xf0a5b50,3, 0xf0a5b60,3, 0xf0a5b70,3, 0xf0a5b80,3, 0xf0a5b90,3, 0xf0a5ba0,3, 0xf0a5bb0,3, 0xf0a5bc0,3, 0xf0a5bd0,3, 0xf0a5be0,3, 0xf0a5bf0,3, 0xf0a5c00,1, 0xf0a5c08,8, 0xf0a5c30,8, 0xf0a5c54,1, 0xf0a5c5c,2, 0xf0a5c68,2, 0xf0a6000,11, 0xf0a6030,1, 0xf0a6080,2, 0xf0a60c4,2, 0xf0a60d0,1, 0xf0a60d8,1, 0xf0a60e0,1, 0xf0a60f4,3, 0xf0a7000,128, 0xf0a7208,256, 0xf0a7610,145, 0xf0a8000,24, 0xf0a8078,1, 0xf0a8080,1, 0xf0f0000,1, 0xf0f000c,12, 0xf0f0040,3, 0xf0f0404,1, 0xf0f0410,6, 0xf0f0440,5, 0xf0f0460,7, 0xf0f0480,7, 0xf0f04a0,7, 0xf0f0520,4, 0xf0f0540,10, 0xf0f0580,10, 0xf0f05c0,3, 0xf0f0600,20, 0xf0f0680,3, 0xf0f0800,5, 0xf0f0a00,29, 0xf0f0a80,3, 0xf0f0c04,1, 0xf0f0d90,188, 0xf0f10a8,8, 0xf0f1100,3, 0xf0f1110,12, 0xf0f1400,1, 0xf0f1480,18, 0xf0f1500,1, 0xf0f1600,2, 0xf0f1610,3, 0xf0f1620,3, 0xf0f1630,3, 0xf0f1640,3, 0xf0f1650,3, 0xf0f1660,3, 0xf0f1670,3, 0xf0f1680,3, 0xf0f1690,3, 0xf0f16a0,3, 0xf0f16b0,3, 0xf0f16c0,3, 0xf0f16d0,3, 0xf0f16e0,3, 0xf0f16f0,3, 0xf0f1700,3, 0xf0f2000,96, 0xf0f2400,2, 0xf0f2410,3, 0xf0f2420,3, 0xf0f2430,3, 0xf0f2440,3, 0xf0f2450,3, 0xf0f2460,3, 0xf0f2470,3, 0xf0f2480,3, 0xf0f2490,3, 0xf0f24a0,3, 0xf0f24b0,3, 0xf0f24c0,3, 0xf0f24d0,3, 0xf0f24e0,3, 0xf0f24f0,3, 0xf0f2500,3, 0xf0f2600,7, 0xf0f2620,3, 0xf0f2630,1, 0xf0f2800,8, 0xf0f2900,2, 0xf0f2910,3, 0xf0f2920,3, 0xf0f2930,3, 0xf0f2940,3, 0xf0f2950,3, 0xf0f2960,3, 0xf0f2970,3, 0xf0f2980,3, 0xf0f2a00,3, 0xf0f3000,15, 0xf0f3040,3, 0xf0f3080,2, 0xf0f30c0,9, 0xf0f3100,1, 0xf0f3200,2, 0xf0f3210,3, 0xf0f3220,3, 0xf0f3230,3, 0xf0f3240,3, 0xf0f3250,3, 0xf0f3260,3, 0xf0f3270,3, 0xf0f3280,3, 0xf0f3300,2, 0xf0f3314,3, 0xf0f3324,3, 0xf0f3334,1, 0xf0f333c,1, 0xf0f3404,1, 0xf0f347c,33, 0xf0f3504,1, 0xf0f350c,1, 0xf0f3580,18, 0xf0f3600,5, 0xf0f3640,9, 0xf0f3680,9, 0xf0f36c0,27, 0xf0f3730,2, 0xf0f3740,9, 0xf0f3780,3, 0xf0f37a0,8, 0xf0f3800,6, 0xf0f3820,7, 0xf0f3840,6, 0xf0f3860,7, 0xf0f3880,3, 0xf0f3890,1, 0xf0f3900,2, 0xf0f4004,1, 0xf0f4080,34, 0xf0f4110,10, 0xf0f413c,3, 0xf0f4204,1, 0xf0f4280,36, 0xf0f4314,1, 0xf0f4400,20, 0xf0f4480,9, 0xf0f4804,1, 0xf0f4880,34, 0xf0f4910,10, 0xf0f493c,3, 0xf0f4a04,1, 0xf0f4a80,36, 0xf0f4b14,1, 0xf0f4c00,20, 0xf0f4c80,9, 0xf0f5004,1, 0xf0f5080,34, 0xf0f5110,10, 0xf0f513c,3, 0xf0f5204,1, 0xf0f5280,36, 0xf0f5314,1, 0xf0f5400,20, 0xf0f5480,9, 0xf0f5800,20, 0xf0f5884,1, 0xf0f588c,1, 0xf0f58c0,12, 0xf0f5900,3, 0xf0f5a00,20, 0xf0f5a84,1, 0xf0f5a8c,1, 0xf0f5ac0,12, 0xf0f5b00,3, 0xf0f5c00,20, 0xf0f5c84,1, 0xf0f5c8c,1, 0xf0f5cc0,12, 0xf0f5d00,3, 0xf0f5e00,7, 0xf0f5e80,20, 0xf0f5f00,12, 0xf0f5f40,11, 0xf0f6004,1, 0xf0f6014,19, 0xf0f6080,5, 0xf0f6100,3, 0xf0f6144,1, 0xf0f6150,4, 0xf0f6180,1, 0xf0f6200,1, 0xf0f6400,2, 0xf0f6410,3, 0xf0f6420,3, 0xf0f6430,3, 0xf0f6440,3, 0xf0f6450,3, 0xf0f6460,3, 0xf0f6470,3, 0xf0f6480,3, 0xf0f6490,3, 0xf0f64a0,3, 0xf0f64b0,3, 0xf0f64c0,3, 0xf0f64d0,3, 0xf0f64e0,3, 0xf0f64f0,3, 0xf0f6500,3, 0xf0f6604,1, 0xf0f6614,3, 0xf0f6640,11, 0xf0f6680,2, 0xf0f6690,3, 0xf0f66a0,3, 0xf0f66c0,9, 0xf0f6700,9, 0xf0f6740,6, 0xf0f6760,16, 0xf0f7000,2, 0xf0f7010,3, 0xf0f7020,3, 0xf0f7030,3, 0xf0f7040,3, 0xf0f7050,3, 0xf0f7060,3, 0xf0f7070,3, 0xf0f7080,3, 0xf0f7090,3, 0xf0f70a0,3, 0xf0f70b0,3, 0xf0f70c0,3, 0xf0f70d0,3, 0xf0f70e0,3, 0xf0f70f0,3, 0xf0f7100,3, 0xf0f7200,10, 0xf0f7404,1, 0xf0f7414,3, 0xf0f7800,153, 0xf100000,6, 0xf100020,3, 0xf100400,6, 0xf100424,1, 0xf100434,5, 0xf100600,128, 0xf100804,1, 0xf100828,86, 0xf100984,1, 0xf100c00,1, 0xf100c80,1, 0xf100c90,2, 0xf100d00,20, 0xf100d80,1, 0xf100da0,5, 0xf100e00,27, 0xf100f00,2, 0xf100f10,4, 0xf101000,7, 0xf180000,36, 0xf180800,10, 0xf180880,6, 0xf180900,2, 0xf180910,4, 0xf180a04,5, 0xf180a20,3, 0xf180a80,1, 0xf181000,36, 0xf181800,10, 0xf181880,6, 0xf1818a0,1, 0xf181900,2, 0xf181910,4, 0xf181a00,1, 0xf182000,36, 0xf182800,10, 0xf182880,6, 0xf1828a0,1, 0xf182900,2, 0xf182910,4, 0xf182a00,1, 0xf183000,36, 0xf183800,10, 0xf183880,6, 0xf1838a0,1, 0xf183900,2, 0xf183910,4, 0xf183a00,1, 0xf184000,36, 0xf184800,10, 0xf184880,6, 0xf1848a0,1, 0xf184900,2, 0xf184910,4, 0xf184a00,1, 0xf185000,36, 0xf185800,10, 0xf185880,6, 0xf1858a0,1, 0xf185900,2, 0xf185910,4, 0xf185a00,1, 0xf186000,36, 0xf186800,10, 0xf186880,6, 0xf1868a0,1, 0xf186900,2, 0xf186910,4, 0xf186a00,1, 0xf187000,36, 0xf187800,10, 0xf187880,6, 0xf1878a0,1, 0xf187900,2, 0xf187910,4, 0xf187a00,1, 0xf188000,36, 0xf188800,10, 0xf188880,6, 0xf1888a0,1, 0xf188900,2, 0xf188910,4, 0xf188a00,1, 0xf189000,36, 0xf189800,10, 0xf189880,6, 0xf1898a0,1, 0xf189900,2, 0xf189910,4, 0xf189a00,1, 0xf18a000,36, 0xf18a800,10, 0xf18a880,6, 0xf18a8a0,1, 0xf18a900,2, 0xf18a910,4, 0xf18aa00,1, 0xf18b000,36, 0xf18b800,10, 0xf18b880,6, 0xf18b8a0,1, 0xf18b900,2, 0xf18b910,4, 0xf18ba00,1, 0xf18c000,36, 0xf18c800,10, 0xf18c880,6, 0xf18c8a0,1, 0xf18c900,2, 0xf18c910,4, 0xf18ca00,1, 0xf18d000,36, 0xf18d800,10, 0xf18d880,6, 0xf18d8a0,1, 0xf18d900,2, 0xf18d910,4, 0xf18da00,1, 0xf18e000,36, 0xf18e800,10, 0xf18e880,6, 0xf18e8a0,1, 0xf18e900,2, 0xf18e910,4, 0xf18ea00,1, 0xf18f000,36, 0xf18f800,10, 0xf18f880,6, 0xf18f8a0,1, 0xf18f900,2, 0xf18f910,4, 0xf18fa00,1, 0xf190000,36, 0xf190800,10, 0xf190880,6, 0xf1908a0,1, 0xf190900,2, 0xf190910,4, 0xf190a00,1, 0xf191000,10, 0xf191080,5, 0xf1910a0,6, 0xf191100,2, 0xf191110,4, 0xf191200,1, 0xf192000,10, 0xf192080,5, 0xf1920a0,6, 0xf192100,2, 0xf192110,4, 0xf192200,1, 0xf193000,10, 0xf193080,5, 0xf1930a0,6, 0xf193100,2, 0xf193110,4, 0xf193200,1, 0xf194000,10, 0xf194080,5, 0xf1940a0,6, 0xf194100,2, 0xf194110,4, 0xf194200,1, 0xf195000,10, 0xf195080,5, 0xf1950a0,6, 0xf195100,2, 0xf195110,4, 0xf195200,1, 0xf196000,10, 0xf196080,5, 0xf1960a0,6, 0xf196100,2, 0xf196110,4, 0xf196200,1, 0xf197000,10, 0xf197080,5, 0xf1970a0,6, 0xf197100,2, 0xf197110,4, 0xf197200,1, 0xf198000,10, 0xf198080,5, 0xf1980a0,6, 0xf198100,2, 0xf198110,4, 0xf198200,1, 0xf199000,20, 0xf199800,10, 0xf199880,6, 0xf199900,2, 0xf199910,4, 0xf199940,2, 0xf199950,4, 0xf199a00,1, 0xf19a000,20, 0xf19a800,10, 0xf19a880,6, 0xf19a900,2, 0xf19a910,4, 0xf19a940,2, 0xf19a950,4, 0xf19aa00,1, 0xf19b000,20, 0xf19b800,10, 0xf19b880,6, 0xf19b900,2, 0xf19b910,4, 0xf19b940,2, 0xf19b950,4, 0xf19ba00,1, 0xf19c000,20, 0xf19c800,10, 0xf19c880,6, 0xf19c900,2, 0xf19c910,4, 0xf19c940,2, 0xf19c950,4, 0xf19ca00,1, 0xf19d000,20, 0xf19d800,10, 0xf19d880,6, 0xf19d900,2, 0xf19d910,4, 0xf19d940,2, 0xf19d950,4, 0xf19da00,1, 0xf19e000,20, 0xf19e800,10, 0xf19e880,6, 0xf19e900,2, 0xf19e910,4, 0xf19e940,2, 0xf19e950,4, 0xf19ea00,1, 0xf19f000,20, 0xf19f800,10, 0xf19f880,6, 0xf19f900,2, 0xf19f910,4, 0xf19f940,2, 0xf19f950,4, 0xf19fa00,1, 0xf1a0000,20, 0xf1a0800,10, 0xf1a0880,6, 0xf1a0900,2, 0xf1a0910,4, 0xf1a0940,2, 0xf1a0950,4, 0xf1a0a00,1, 0xf1a1000,20, 0xf1a1800,10, 0xf1a1880,5, 0xf1a18a0,6, 0xf1a1900,2, 0xf1a1910,4, 0xf1a1a00,1, 0xf1a2000,20, 0xf1a2800,1, 0xf1a3000,20, 0xf1a3800,1, 0xf1a4000,20, 0xf1a4800,10, 0xf1a4880,5, 0xf1a48a0,6, 0xf1a4900,2, 0xf1a4910,4, 0xf1a4a00,1, 0xf1a5000,20, 0xf1a5800,1, 0xf1a6000,20, 0xf1a6800,1, 0xf1a7000,20, 0xf1a7800,10, 0xf1a7880,5, 0xf1a78a0,6, 0xf1a7900,2, 0xf1a7910,4, 0xf1a7a00,1, 0xf1a8000,20, 0xf1a8800,1, 0xf1a9000,20, 0xf1a9800,1, 0xf1aa000,20, 0xf1aa800,10, 0xf1aa880,5, 0xf1aa8a0,6, 0xf1aa900,2, 0xf1aa910,4, 0xf1aaa00,1, 0xf1ab000,20, 0xf1ab800,1, 0xf1ac000,20, 0xf1ac800,1, 0xf1ad000,20, 0xf1ad800,10, 0xf1ad880,5, 0xf1ad8a0,6, 0xf1ad900,2, 0xf1ad910,4, 0xf1ada00,1, 0xf1ae000,20, 0xf1ae800,1, 0xf1af000,20, 0xf1af800,1, 0xf1b0000,20, 0xf1b0800,10, 0xf1b0880,5, 0xf1b08a0,6, 0xf1b0900,2, 0xf1b0910,4, 0xf1b0a00,1, 0xf1b1000,20, 0xf1b1800,1, 0xf1b2000,20, 0xf1b2800,1, 0xf1b3000,20, 0xf1b3800,10, 0xf1b3880,5, 0xf1b38a0,6, 0xf1b3900,2, 0xf1b3910,4, 0xf1b3a00,1, 0xf1b4000,20, 0xf1b4800,1, 0xf1b5000,20, 0xf1b5800,1, 0xf1b6000,20, 0xf1b6800,10, 0xf1b6880,5, 0xf1b68a0,6, 0xf1b6900,2, 0xf1b6910,4, 0xf1b6a00,1, 0xf1b7000,20, 0xf1b7800,1, 0xf1b8000,20, 0xf1b8800,1, 0xf1ba000,20, 0xf1ba800,10, 0xf1ba880,6, 0xf1ba900,2, 0xf1ba910,4, 0xf1baa00,8, 0xf1baa24,1, 0xf1baa40,8, 0xf1baa64,1, 0xf1baa80,8, 0xf1baaa4,1, 0xf1baac0,8, 0xf1baae4,1, 0xf1bab00,1, 0xf1bc000,20, 0xf1bc800,10, 0xf1bc880,6, 0xf1bc900,2, 0xf1bc910,4, 0xf1bca00,8, 0xf1bca24,1, 0xf1bca40,8, 0xf1bca64,1, 0xf1bca80,8, 0xf1bcaa4,1, 0xf1bcac0,8, 0xf1bcae4,1, 0xf1bcb00,1, 0xf1be000,20, 0xf1be800,10, 0xf1be880,6, 0xf1be900,2, 0xf1be910,4, 0xf1bea00,8, 0xf1bea24,1, 0xf1bea40,8, 0xf1bea64,1, 0xf1bea80,8, 0xf1beaa4,1, 0xf1beac0,8, 0xf1beae4,1, 0xf1beb00,1, 0xf1c0000,20, 0xf1c0800,10, 0xf1c0880,6, 0xf1c0900,2, 0xf1c0910,4, 0xf1c0a00,8, 0xf1c0a24,1, 0xf1c0a40,8, 0xf1c0a64,1, 0xf1c0a80,8, 0xf1c0aa4,1, 0xf1c0ac0,8, 0xf1c0ae4,1, 0xf1c0b00,1, 0xf1c2000,20, 0xf1c2800,10, 0xf1c2880,6, 0xf1c2900,2, 0xf1c2910,4, 0xf1c2a00,8, 0xf1c2a24,1, 0xf1c2a40,8, 0xf1c2a64,1, 0xf1c2a80,8, 0xf1c2aa4,1, 0xf1c2ac0,8, 0xf1c2ae4,1, 0xf1c2b00,1, 0xf1c4000,20, 0xf1c4800,10, 0xf1c4880,6, 0xf1c4900,2, 0xf1c4910,4, 0xf1c4a00,8, 0xf1c4a24,1, 0xf1c4a40,8, 0xf1c4a64,1, 0xf1c4a80,8, 0xf1c4aa4,1, 0xf1c4ac0,8, 0xf1c4ae4,1, 0xf1c4b00,1, 0xf1c6000,20, 0xf1c6800,10, 0xf1c6880,6, 0xf1c6900,2, 0xf1c6910,4, 0xf1c6a00,8, 0xf1c6a24,1, 0xf1c6a40,8, 0xf1c6a64,1, 0xf1c6a80,8, 0xf1c6aa4,1, 0xf1c6ac0,8, 0xf1c6ae4,1, 0xf1c6b00,1, 0xf1c8000,20, 0xf1c8800,10, 0xf1c8880,6, 0xf1c8900,2, 0xf1c8910,4, 0xf1c8a00,8, 0xf1c8a24,1, 0xf1c8a40,8, 0xf1c8a64,1, 0xf1c8a80,8, 0xf1c8aa4,1, 0xf1c8ac0,8, 0xf1c8ae4,1, 0xf1c8b00,1, 0xf1f9000,10, 0xf1fa000,10, 0xf1fb000,10, 0xf200000,198, 0xf200400,2, 0xf200440,9, 0xf200480,7, 0xf200800,198, 0xf200c00,2, 0xf200c40,9, 0xf200c80,7, 0xf201000,198, 0xf201400,198, 0xf201804,6, 0xf201824,6, 0xf201880,2, 0xf201904,1, 0xf201918,28, 0xf2019a0,6, 0xf2019c0,6, 0xf201c00,2, 0xf201d00,2, 0xf201e04,1, 0xf201e74,43, 0xf202000,2, 0xf202100,2, 0xf202204,1, 0xf202274,43, 0xf202400,3, 0xf202600,27, 0xf202680,4, 0xf2026c0,25, 0xf202740,6, 0xf202760,4, 0xf202774,11, 0xf2027a4,4, 0xf202800,4, 0xf202900,34, 0xf202a00,4, 0xf202b00,34, 0xf202c00,3, 0xf202c10,12, 0xf202e00,56, 0xf202ee4,4, 0xf202f00,4, 0xf203000,1, 0xf208000,4, 0xf208100,42, 0xf208200,1, 0xf208210,3, 0xf208220,3, 0xf208230,3, 0xf208240,1, 0xf208248,3, 0xf208400,4, 0xf208500,58, 0xf208600,1, 0xf208610,3, 0xf208620,3, 0xf208630,3, 0xf208640,1, 0xf208648,3, 0xf208800,4, 0xf208900,36, 0xf208a00,1, 0xf208c00,4, 0xf208c80,27, 0xf208d00,1, 0xf208d10,3, 0xf208d20,3, 0xf208d30,3, 0xf208d40,1, 0xf208d48,3, 0xf208e00,4, 0xf208e80,31, 0xf208f00,1, 0xf208f10,3, 0xf208f20,3, 0xf208f30,3, 0xf208f40,1, 0xf208f48,3, 0xf209000,4, 0xf209040,13, 0xf209080,1, 0xf209200,15, 0xf209240,4, 0xf209260,17, 0xf2092c0,6, 0xf2092e0,2, 0xf2092ec,3, 0xf209300,8, 0xf209324,8, 0xf209400,68, 0xf209600,60, 0xf209700,4, 0xf209720,5, 0xf209740,1, 0xf209780,2, 0xf20978c,2, 0xf2097a0,1, 0xf2097c0,12, 0xf209800,7, 0xf209820,5, 0xf209900,49, 0xf209a00,1, 0xf209a08,23, 0xf209a84,1, 0xf209a8c,1, 0xf209a94,1, 0xf209a9c,2, 0xf209ac0,1, 0xf209c00,10, 0xf209c40,1, 0xf209c50,3, 0xf209c80,10, 0xf209cc0,12, 0xf209d00,3, 0xf209e00,1, 0xf20a000,4, 0xf20a100,42, 0xf20a200,1, 0xf20a210,3, 0xf20a220,3, 0xf20a230,3, 0xf20a240,1, 0xf20a248,3, 0xf20a400,4, 0xf20a500,58, 0xf20a600,1, 0xf20a610,3, 0xf20a620,3, 0xf20a630,3, 0xf20a640,1, 0xf20a648,3, 0xf20a800,4, 0xf20a900,36, 0xf20aa00,1, 0xf20ac00,4, 0xf20ac80,27, 0xf20ad00,1, 0xf20ad10,3, 0xf20ad20,3, 0xf20ad30,3, 0xf20ad40,1, 0xf20ad48,3, 0xf20ae00,4, 0xf20ae80,31, 0xf20af00,1, 0xf20af10,3, 0xf20af20,3, 0xf20af30,3, 0xf20af40,1, 0xf20af48,3, 0xf20b000,4, 0xf20b040,13, 0xf20b080,1, 0xf20b200,15, 0xf20b240,4, 0xf20b260,17, 0xf20b2c0,6, 0xf20b2e0,2, 0xf20b2ec,3, 0xf20b300,8, 0xf20b324,8, 0xf20b400,68, 0xf20b600,60, 0xf20b700,4, 0xf20b720,5, 0xf20b740,1, 0xf20b780,2, 0xf20b78c,2, 0xf20b7a0,1, 0xf20b7c0,12, 0xf20b800,7, 0xf20b820,5, 0xf20b900,49, 0xf20ba00,1, 0xf20ba08,23, 0xf20ba84,1, 0xf20ba8c,1, 0xf20ba94,1, 0xf20ba9c,2, 0xf20bac0,1, 0xf20bc00,10, 0xf20bc40,1, 0xf20bc50,3, 0xf20bc80,10, 0xf20bcc0,12, 0xf20bd00,3, 0xf20be00,1, 0xf20c000,20, 0xf20c080,3, 0xf20c090,1, 0xf20c098,4, 0xf210000,49, 0xf210100,12, 0xf210140,4, 0xf210184,1, 0xf210198,2, 0xf2101a4,1, 0xf2101b8,7, 0xf2101e0,4, 0xf210200,20, 0xf210280,3, 0xf210290,9, 0xf2102c0,6, 0xf2102e0,1, 0xf2102e8,7, 0xf210400,49, 0xf210500,12, 0xf210540,4, 0xf210584,1, 0xf210598,2, 0xf2105a4,1, 0xf2105b8,7, 0xf2105e0,4, 0xf210600,20, 0xf210680,3, 0xf210690,9, 0xf2106c0,6, 0xf2106e0,1, 0xf2106e8,7, 0xf210800,49, 0xf210900,12, 0xf210940,4, 0xf210984,1, 0xf210998,2, 0xf2109a4,1, 0xf2109b8,7, 0xf2109e0,4, 0xf210a00,20, 0xf210a80,3, 0xf210a90,9, 0xf210ac0,6, 0xf210ae0,1, 0xf210ae8,7, 0xf210c00,49, 0xf210d00,12, 0xf210d40,4, 0xf210d84,1, 0xf210d98,2, 0xf210da4,1, 0xf210db8,7, 0xf210de0,4, 0xf210e00,20, 0xf210e80,3, 0xf210e90,9, 0xf210ec0,6, 0xf210ee0,1, 0xf210ee8,7, 0xf211000,49, 0xf211100,12, 0xf211140,4, 0xf211184,1, 0xf211198,2, 0xf2111a4,1, 0xf2111b8,7, 0xf2111e0,4, 0xf211200,20, 0xf211280,3, 0xf211290,9, 0xf2112c0,6, 0xf2112e0,1, 0xf2112e8,7, 0xf211400,49, 0xf211500,12, 0xf211540,4, 0xf211584,1, 0xf211598,2, 0xf2115a4,1, 0xf2115b8,7, 0xf2115e0,4, 0xf211600,20, 0xf211680,3, 0xf211690,9, 0xf2116c0,6, 0xf2116e0,1, 0xf2116e8,7, 0xf211800,49, 0xf211900,12, 0xf211940,4, 0xf211984,1, 0xf211998,2, 0xf2119a4,1, 0xf2119b8,7, 0xf2119e0,4, 0xf211a00,20, 0xf211a80,3, 0xf211a90,9, 0xf211ac0,6, 0xf211ae0,1, 0xf211ae8,7, 0xf212000,20, 0xf212080,10, 0xf212100,20, 0xf212180,10, 0xf212200,12, 0xf212400,20, 0xf212480,10, 0xf212500,20, 0xf212580,10, 0xf212600,12, 0xf212800,3, 0xf212840,12, 0xf212880,12, 0xf2128c0,12, 0xf212900,12, 0xf212940,12, 0xf212980,12, 0xf2129c0,12, 0xf212a00,12, 0xf212c00,12, 0xf212c40,7, 0xf212c60,10, 0xf213004,1, 0xf213044,43, 0xf213100,7, 0xf213120,7, 0xf213140,2, 0xf21314c,2, 0xf213160,2, 0xf21316c,2, 0xf213180,18, 0xf213200,2, 0xf213220,10, 0xf213260,20, 0xf2132c0,9, 0xf213300,15, 0xf213340,9, 0xf213380,6, 0xf2133a0,4, 0xf213400,5, 0xf214000,53, 0xf214100,3, 0xf214110,15, 0xf214200,53, 0xf214300,3, 0xf214310,15, 0xf214400,5, 0xf214420,5, 0xf214440,18, 0xf214800,3, 0xf214810,2, 0xf214820,3, 0xf214830,2, 0xf214840,1, 0xf215000,7, 0xf215020,7, 0xf215080,19, 0xf215100,19, 0xf215180,25, 0xf215200,20, 0xf215280,20, 0xf215300,8, 0xf215340,4, 0xf215380,15, 0xf2153c0,15, 0xf215400,9, 0xf215430,5, 0xf216000,6, 0xf216020,1, 0xf216028,2, 0xf216040,11, 0xf216070,2, 0xf218000,82, 0xf218200,2, 0xf218240,9, 0xf218280,7, 0xf218400,82, 0xf218604,6, 0xf218700,15, 0xf218740,9, 0xf218780,6, 0xf2187a0,6, 0xf218800,2, 0xf218810,3, 0xf218880,24, 0xf2188e4,1, 0xf2188f0,12, 0xf220000,22, 0xf220080,22, 0xf220100,5, 0xf220120,5, 0xf220140,3, 0xf220160,16, 0xf2201c0,7, 0xf2201e0,2, 0xf220200,7, 0xf220220,2, 0xf220400,15, 0xf220440,3, 0xf220450,3, 0xf220460,24, 0xf220500,15, 0xf220540,3, 0xf220550,3, 0xf220560,24, 0xf220600,15, 0xf220640,3, 0xf220650,3, 0xf220660,24, 0xf220700,15, 0xf220740,3, 0xf220750,3, 0xf220760,24, 0xf220800,4, 0xf220820,16, 0xf220880,10, 0xf2208c0,10, 0xf220900,6, 0xf220920,6, 0xf220940,4, 0xf220980,13, 0xf2209c0,13, 0xf220a00,9, 0xf221000,86, 0xf221200,2, 0xf221240,9, 0xf221280,7, 0xf221400,86, 0xf221604,6, 0xf221800,86, 0xf221a00,2, 0xf221a40,9, 0xf221a80,7, 0xf221c00,86, 0xf221e04,6, 0xf222000,15, 0xf222040,4, 0xf222060,17, 0xf2220c0,6, 0xf2220e0,4, 0xf2220f4,11, 0xf222128,38, 0xf2221c4,2, 0xf2221d0,4, 0xf222200,1, 0xf224000,22, 0xf224080,22, 0xf224100,5, 0xf224120,5, 0xf224140,3, 0xf224160,16, 0xf2241c0,7, 0xf2241e0,2, 0xf224200,7, 0xf224220,2, 0xf224400,15, 0xf224440,3, 0xf224450,3, 0xf224460,24, 0xf224500,15, 0xf224540,3, 0xf224550,3, 0xf224560,24, 0xf224600,15, 0xf224640,3, 0xf224650,3, 0xf224660,24, 0xf224700,15, 0xf224740,3, 0xf224750,3, 0xf224760,24, 0xf224800,4, 0xf224820,16, 0xf224880,10, 0xf2248c0,10, 0xf224900,6, 0xf224920,6, 0xf224940,4, 0xf224980,13, 0xf2249c0,13, 0xf224a00,9, 0xf225000,86, 0xf225200,2, 0xf225240,9, 0xf225280,7, 0xf225400,86, 0xf225604,6, 0xf225800,86, 0xf225a00,2, 0xf225a40,9, 0xf225a80,7, 0xf225c00,86, 0xf225e04,6, 0xf226000,15, 0xf226040,4, 0xf226060,17, 0xf2260c0,6, 0xf2260e0,4, 0xf2260f4,11, 0xf226128,38, 0xf2261c4,2, 0xf2261d0,4, 0xf226200,1, 0xf228000,9, 0xf228040,9, 0xf228080,5, 0xf228100,21, 0xf228160,5, 0xf228180,45, 0xf228240,13, 0xf228280,9, 0xf228400,9, 0xf228440,9, 0xf228480,5, 0xf228500,21, 0xf228560,5, 0xf228580,45, 0xf228640,13, 0xf228680,9, 0xf228800,12, 0xf228900,15, 0xf228940,4, 0xf228960,17, 0xf2289c0,6, 0xf2289e0,4, 0xf2289f4,29, 0xf22c000,30, 0xf22c080,3, 0xf22c090,19, 0xf22c100,30, 0xf22c180,3, 0xf22c190,19, 0xf22c200,30, 0xf22c280,3, 0xf22c290,19, 0xf22c300,30, 0xf22c380,3, 0xf22c390,19, 0xf22c400,30, 0xf22c480,3, 0xf22c490,19, 0xf22c500,30, 0xf22c580,3, 0xf22c590,19, 0xf22c600,30, 0xf22c680,3, 0xf22c690,19, 0xf22c700,30, 0xf22c780,3, 0xf22c790,19, 0xf22c800,12, 0xf22c844,1, 0xf22c854,8, 0xf22c880,7, 0xf22c8a0,2, 0xf22c8ac,2, 0xf22c8c0,26, 0xf22c980,4, 0xf22c9a0,5, 0xf22c9c0,1, 0xf22d000,3, 0xf22d010,3, 0xf22d020,3, 0xf22d030,3, 0xf22d040,3, 0xf22d050,3, 0xf22d060,3, 0xf22d070,3, 0xf22d080,6, 0xf22d0a0,6, 0xf22d0c0,6, 0xf22d0e0,6, 0xf22d100,6, 0xf22d120,6, 0xf22d140,6, 0xf22d160,6, 0xf22d200,68, 0xf22d400,1, 0xf22d804,1, 0xf22d844,54, 0xf22da00,12, 0xf22da40,12, 0xf22da80,12, 0xf22dac0,12, 0xf22db00,12, 0xf22db40,12, 0xf22db80,12, 0xf22dbc0,12, 0xf22dc00,28, 0xf22dc80,10, 0xf22e000,3, 0xf22e020,6, 0xf22e040,6, 0xf22e060,15, 0xf22e100,26, 0xf22e180,15, 0xf22e200,15, 0xf22e240,4, 0xf22e260,17, 0xf22e2c0,6, 0xf22e2e0,4, 0xf22e2f4,18, 0xf22e340,4, 0xf22e360,17, 0xf22e3c0,6, 0xf22e3e0,4, 0xf22e3f4,15, 0xf230000,1, 0xf231000,1020, 0xf232000,194, 0xf233000,1020, 0xf234000,1020, 0xf235000,1020, 0xf236000,1020, 0xf237000,1020, 0xf238000,1020, 0xf239000,1020, 0xf23a000,1020, 0xf23b000,194, 0xf23c000,3, 0xf23c010,13, 0xf23c080,16, 0xf23c100,20, 0xf23c184,1, 0xf23c18c,4, 0xf23c200,3, 0xf23c210,13, 0xf23c280,16, 0xf23c300,20, 0xf23c384,1, 0xf23c38c,4, 0xf23c400,3, 0xf23c410,13, 0xf23c480,16, 0xf23c500,20, 0xf23c584,1, 0xf23c58c,4, 0xf23c600,3, 0xf23c610,13, 0xf23c680,16, 0xf23c700,20, 0xf23c784,1, 0xf23c78c,4, 0xf23c800,3, 0xf23c810,13, 0xf23c880,16, 0xf23c900,20, 0xf23c984,1, 0xf23c98c,4, 0xf23ca00,3, 0xf23ca10,13, 0xf23ca80,16, 0xf23cb00,20, 0xf23cb84,1, 0xf23cb8c,4, 0xf23cc00,3, 0xf23cc10,13, 0xf23cc80,16, 0xf23cd00,20, 0xf23cd84,1, 0xf23cd8c,4, 0xf23ce00,3, 0xf23ce10,13, 0xf23ce80,16, 0xf23cf00,20, 0xf23cf84,1, 0xf23cf8c,4, 0xf23d000,3, 0xf23d010,13, 0xf23d080,16, 0xf23d100,20, 0xf23d184,1, 0xf23d18c,4, 0xf23d200,18, 0xf23d250,2, 0xf23d260,4, 0xf23e000,1, 0xf23e014,1, 0xf23e01c,19, 0xf23e080,1, 0xf23e094,1, 0xf23e09c,19, 0xf23e100,8, 0xf23e200,13, 0xf23e240,9, 0xf23e280,12, 0xf23e2c0,2, 0xf23e2e0,12, 0xf240000,3, 0xf240080,20, 0xf240100,10, 0xf240140,1, 0xf240154,1, 0xf24015c,2, 0xf240200,15, 0xf240240,4, 0xf240260,17, 0xf2402c0,6, 0xf2402e0,2, 0xf2402ec,3, 0xf240300,8, 0xf240324,1, 0xf240400,4, 0xf240440,20, 0xf2404c0,9, 0xf240500,33, 0xf240600,11, 0xf240640,11, 0xf240680,1, 0xf242000,1, 0xf242200,4, 0xf242300,53, 0xf242400,4, 0xf242500,40, 0xf242600,15, 0xf242640,4, 0xf242660,17, 0xf2426c0,6, 0xf2426e0,2, 0xf2426ec,3, 0xf242700,8, 0xf242724,1, 0xf242800,20, 0xf242c00,53, 0xf242d00,53, 0xf242e00,1, 0xf243000,40, 0xf243100,40, 0xf243200,1, 0xf243400,1, 0xf243804,1, 0xf243844,39, 0xf243900,3, 0xf243a00,3, 0xf243a44,1, 0xf243a50,4, 0xf243a80,1, 0xf244000,2, 0xf244200,27, 0xf244280,4, 0xf2442c0,25, 0xf244340,6, 0xf244360,2, 0xf24436c,3, 0xf244380,8, 0xf2443a4,1, 0xf244400,12, 0xf244440,1, 0xf248000,3, 0xf248080,20, 0xf248100,10, 0xf248140,1, 0xf248154,1, 0xf24815c,2, 0xf248200,15, 0xf248240,4, 0xf248260,17, 0xf2482c0,6, 0xf2482e0,2, 0xf2482ec,3, 0xf248300,8, 0xf248324,1, 0xf248400,4, 0xf248440,20, 0xf2484c0,9, 0xf248500,33, 0xf248600,11, 0xf248640,11, 0xf248680,1, 0xf24a000,1, 0xf24a200,4, 0xf24a300,53, 0xf24a400,4, 0xf24a500,40, 0xf24a600,15, 0xf24a640,4, 0xf24a660,17, 0xf24a6c0,6, 0xf24a6e0,2, 0xf24a6ec,3, 0xf24a700,8, 0xf24a724,1, 0xf24a800,20, 0xf24ac00,53, 0xf24ad00,53, 0xf24ae00,1, 0xf24b000,40, 0xf24b100,40, 0xf24b200,1, 0xf24b400,1, 0xf24b804,1, 0xf24b844,39, 0xf24b900,3, 0xf24ba00,3, 0xf24ba44,1, 0xf24ba50,4, 0xf24ba80,1, 0xf24c000,2, 0xf24c200,27, 0xf24c280,4, 0xf24c2c0,25, 0xf24c340,6, 0xf24c360,2, 0xf24c36c,3, 0xf24c380,8, 0xf24c3a4,1, 0xf24c400,12, 0xf24c440,1, 0xf250000,4, 0xf250020,3, 0xf250030,2, 0xf250200,1, 0xf250224,10, 0xf250250,5, 0xf250280,1, 0xf250288,24, 0xf250300,3, 0xf250404,1, 0xf250414,5, 0xf250500,36, 0xf250600,3, 0xf250800,2, 0xf251000,1, 0xf251008,21, 0xf251080,1, 0xf251088,21, 0xf251100,1, 0xf251108,21, 0xf251180,1, 0xf251188,21, 0xf251200,1, 0xf251208,21, 0xf251280,1, 0xf251288,21, 0xf251300,1, 0xf251308,21, 0xf251380,1, 0xf251388,21, 0xf251400,21, 0xf251800,142, 0xf251c00,1, 0xf252000,4, 0xf252100,39, 0xf252200,3, 0xf252214,3, 0xf254004,1, 0xf254020,16, 0xf254080,2, 0xf254094,1, 0xf25409c,2, 0xf2540c0,6, 0xf254100,8, 0xf258004,17, 0xf258054,1, 0xf25805c,2, 0xf258080,1, 0xf2580a0,2, 0xf2580b4,4, 0xf258100,2, 0xf258200,8, 0xf258400,1, 0xf258600,27, 0xf258680,4, 0xf2586c0,25, 0xf258740,6, 0xf258760,2, 0xf25876c,3, 0xf258780,8, 0xf2587a4,3, 0xf258800,44, 0xf258900,1, 0xf260000,1, 0xf260200,27, 0xf260280,4, 0xf2602c0,25, 0xf260340,6, 0xf260360,2, 0xf26036c,3, 0xf260380,8, 0xf2603a4,1, 0xf260400,20, 0xf260480,3, 0xf260490,9, 0xf280000,198, 0xf280400,2, 0xf280440,9, 0xf280480,7, 0xf280800,198, 0xf280c00,2, 0xf280c40,9, 0xf280c80,7, 0xf281000,198, 0xf281400,198, 0xf281804,6, 0xf281824,6, 0xf281880,2, 0xf281904,1, 0xf281918,28, 0xf2819a0,6, 0xf2819c0,6, 0xf281c00,2, 0xf281d00,2, 0xf281e04,1, 0xf281e74,43, 0xf282000,2, 0xf282100,2, 0xf282204,1, 0xf282274,43, 0xf282400,3, 0xf282600,27, 0xf282680,4, 0xf2826c0,25, 0xf282740,6, 0xf282760,4, 0xf282774,11, 0xf2827a4,4, 0xf282800,4, 0xf282900,34, 0xf282a00,4, 0xf282b00,34, 0xf282c00,3, 0xf282c10,12, 0xf282e00,56, 0xf282ee4,4, 0xf282f00,4, 0xf283000,1, 0xf288000,4, 0xf288100,42, 0xf288200,1, 0xf288210,3, 0xf288220,3, 0xf288230,3, 0xf288240,1, 0xf288248,3, 0xf288400,4, 0xf288500,58, 0xf288600,1, 0xf288610,3, 0xf288620,3, 0xf288630,3, 0xf288640,1, 0xf288648,3, 0xf288800,4, 0xf288900,36, 0xf288a00,1, 0xf288c00,4, 0xf288c80,27, 0xf288d00,1, 0xf288d10,3, 0xf288d20,3, 0xf288d30,3, 0xf288d40,1, 0xf288d48,3, 0xf288e00,4, 0xf288e80,31, 0xf288f00,1, 0xf288f10,3, 0xf288f20,3, 0xf288f30,3, 0xf288f40,1, 0xf288f48,3, 0xf289000,4, 0xf289040,13, 0xf289080,1, 0xf289200,15, 0xf289240,4, 0xf289260,17, 0xf2892c0,6, 0xf2892e0,2, 0xf2892ec,3, 0xf289300,8, 0xf289324,8, 0xf289400,68, 0xf289600,60, 0xf289700,4, 0xf289720,5, 0xf289740,1, 0xf289780,2, 0xf28978c,2, 0xf2897a0,1, 0xf2897c0,12, 0xf289800,7, 0xf289820,5, 0xf289900,49, 0xf289a00,1, 0xf289a08,23, 0xf289a84,1, 0xf289a8c,1, 0xf289a94,1, 0xf289a9c,2, 0xf289ac0,1, 0xf289c00,10, 0xf289c40,1, 0xf289c50,3, 0xf289c80,10, 0xf289cc0,12, 0xf289d00,3, 0xf289e00,1, 0xf28a000,4, 0xf28a100,42, 0xf28a200,1, 0xf28a210,3, 0xf28a220,3, 0xf28a230,3, 0xf28a240,1, 0xf28a248,3, 0xf28a400,4, 0xf28a500,58, 0xf28a600,1, 0xf28a610,3, 0xf28a620,3, 0xf28a630,3, 0xf28a640,1, 0xf28a648,3, 0xf28a800,4, 0xf28a900,36, 0xf28aa00,1, 0xf28ac00,4, 0xf28ac80,27, 0xf28ad00,1, 0xf28ad10,3, 0xf28ad20,3, 0xf28ad30,3, 0xf28ad40,1, 0xf28ad48,3, 0xf28ae00,4, 0xf28ae80,31, 0xf28af00,1, 0xf28af10,3, 0xf28af20,3, 0xf28af30,3, 0xf28af40,1, 0xf28af48,3, 0xf28b000,4, 0xf28b040,13, 0xf28b080,1, 0xf28b200,15, 0xf28b240,4, 0xf28b260,17, 0xf28b2c0,6, 0xf28b2e0,2, 0xf28b2ec,3, 0xf28b300,8, 0xf28b324,8, 0xf28b400,68, 0xf28b600,60, 0xf28b700,4, 0xf28b720,5, 0xf28b740,1, 0xf28b780,2, 0xf28b78c,2, 0xf28b7a0,1, 0xf28b7c0,12, 0xf28b800,7, 0xf28b820,5, 0xf28b900,49, 0xf28ba00,1, 0xf28ba08,23, 0xf28ba84,1, 0xf28ba8c,1, 0xf28ba94,1, 0xf28ba9c,2, 0xf28bac0,1, 0xf28bc00,10, 0xf28bc40,1, 0xf28bc50,3, 0xf28bc80,10, 0xf28bcc0,12, 0xf28bd00,3, 0xf28be00,1, 0xf28c000,20, 0xf28c080,3, 0xf28c090,1, 0xf28c098,4, 0xf290000,49, 0xf290100,12, 0xf290140,4, 0xf290184,1, 0xf290198,2, 0xf2901a4,1, 0xf2901b8,7, 0xf2901e0,4, 0xf290200,20, 0xf290280,3, 0xf290290,9, 0xf2902c0,6, 0xf2902e0,1, 0xf2902e8,7, 0xf290400,49, 0xf290500,12, 0xf290540,4, 0xf290584,1, 0xf290598,2, 0xf2905a4,1, 0xf2905b8,7, 0xf2905e0,4, 0xf290600,20, 0xf290680,3, 0xf290690,9, 0xf2906c0,6, 0xf2906e0,1, 0xf2906e8,7, 0xf290800,49, 0xf290900,12, 0xf290940,4, 0xf290984,1, 0xf290998,2, 0xf2909a4,1, 0xf2909b8,7, 0xf2909e0,4, 0xf290a00,20, 0xf290a80,3, 0xf290a90,9, 0xf290ac0,6, 0xf290ae0,1, 0xf290ae8,7, 0xf290c00,49, 0xf290d00,12, 0xf290d40,4, 0xf290d84,1, 0xf290d98,2, 0xf290da4,1, 0xf290db8,7, 0xf290de0,4, 0xf290e00,20, 0xf290e80,3, 0xf290e90,9, 0xf290ec0,6, 0xf290ee0,1, 0xf290ee8,7, 0xf291000,49, 0xf291100,12, 0xf291140,4, 0xf291184,1, 0xf291198,2, 0xf2911a4,1, 0xf2911b8,7, 0xf2911e0,4, 0xf291200,20, 0xf291280,3, 0xf291290,9, 0xf2912c0,6, 0xf2912e0,1, 0xf2912e8,7, 0xf291400,49, 0xf291500,12, 0xf291540,4, 0xf291584,1, 0xf291598,2, 0xf2915a4,1, 0xf2915b8,7, 0xf2915e0,4, 0xf291600,20, 0xf291680,3, 0xf291690,9, 0xf2916c0,6, 0xf2916e0,1, 0xf2916e8,7, 0xf291800,49, 0xf291900,12, 0xf291940,4, 0xf291984,1, 0xf291998,2, 0xf2919a4,1, 0xf2919b8,7, 0xf2919e0,4, 0xf291a00,20, 0xf291a80,3, 0xf291a90,9, 0xf291ac0,6, 0xf291ae0,1, 0xf291ae8,7, 0xf292000,20, 0xf292080,10, 0xf292100,20, 0xf292180,10, 0xf292200,12, 0xf292400,20, 0xf292480,10, 0xf292500,20, 0xf292580,10, 0xf292600,12, 0xf292800,3, 0xf292840,12, 0xf292880,12, 0xf2928c0,12, 0xf292900,12, 0xf292940,12, 0xf292980,12, 0xf2929c0,12, 0xf292a00,12, 0xf292c00,12, 0xf292c40,7, 0xf292c60,10, 0xf293004,1, 0xf293044,43, 0xf293100,7, 0xf293120,7, 0xf293140,2, 0xf29314c,2, 0xf293160,2, 0xf29316c,2, 0xf293180,18, 0xf293200,2, 0xf293220,10, 0xf293260,20, 0xf2932c0,9, 0xf293300,15, 0xf293340,9, 0xf293380,6, 0xf2933a0,4, 0xf293400,5, 0xf294000,53, 0xf294100,3, 0xf294110,15, 0xf294200,53, 0xf294300,3, 0xf294310,15, 0xf294400,5, 0xf294420,5, 0xf294440,18, 0xf294800,3, 0xf294810,2, 0xf294820,3, 0xf294830,2, 0xf294840,1, 0xf295000,7, 0xf295020,7, 0xf295080,19, 0xf295100,19, 0xf295180,25, 0xf295200,20, 0xf295280,20, 0xf295300,8, 0xf295340,4, 0xf295380,15, 0xf2953c0,15, 0xf295400,9, 0xf295430,5, 0xf296000,6, 0xf296020,1, 0xf296028,2, 0xf296040,11, 0xf296070,2, 0xf298000,82, 0xf298200,2, 0xf298240,9, 0xf298280,7, 0xf298400,82, 0xf298604,6, 0xf298700,15, 0xf298740,9, 0xf298780,6, 0xf2987a0,6, 0xf298800,2, 0xf298810,3, 0xf298880,24, 0xf2988e4,1, 0xf2988f0,12, 0xf2a0000,22, 0xf2a0080,22, 0xf2a0100,5, 0xf2a0120,5, 0xf2a0140,3, 0xf2a0160,16, 0xf2a01c0,7, 0xf2a01e0,2, 0xf2a0200,7, 0xf2a0220,2, 0xf2a0400,15, 0xf2a0440,3, 0xf2a0450,3, 0xf2a0460,24, 0xf2a0500,15, 0xf2a0540,3, 0xf2a0550,3, 0xf2a0560,24, 0xf2a0600,15, 0xf2a0640,3, 0xf2a0650,3, 0xf2a0660,24, 0xf2a0700,15, 0xf2a0740,3, 0xf2a0750,3, 0xf2a0760,24, 0xf2a0800,4, 0xf2a0820,16, 0xf2a0880,10, 0xf2a08c0,10, 0xf2a0900,6, 0xf2a0920,6, 0xf2a0940,4, 0xf2a0980,13, 0xf2a09c0,13, 0xf2a0a00,9, 0xf2a1000,86, 0xf2a1200,2, 0xf2a1240,9, 0xf2a1280,7, 0xf2a1400,86, 0xf2a1604,6, 0xf2a1800,86, 0xf2a1a00,2, 0xf2a1a40,9, 0xf2a1a80,7, 0xf2a1c00,86, 0xf2a1e04,6, 0xf2a2000,15, 0xf2a2040,4, 0xf2a2060,17, 0xf2a20c0,6, 0xf2a20e0,4, 0xf2a20f4,11, 0xf2a2128,38, 0xf2a21c4,2, 0xf2a21d0,4, 0xf2a2200,1, 0xf2a4000,22, 0xf2a4080,22, 0xf2a4100,5, 0xf2a4120,5, 0xf2a4140,3, 0xf2a4160,16, 0xf2a41c0,7, 0xf2a41e0,2, 0xf2a4200,7, 0xf2a4220,2, 0xf2a4400,15, 0xf2a4440,3, 0xf2a4450,3, 0xf2a4460,24, 0xf2a4500,15, 0xf2a4540,3, 0xf2a4550,3, 0xf2a4560,24, 0xf2a4600,15, 0xf2a4640,3, 0xf2a4650,3, 0xf2a4660,24, 0xf2a4700,15, 0xf2a4740,3, 0xf2a4750,3, 0xf2a4760,24, 0xf2a4800,4, 0xf2a4820,16, 0xf2a4880,10, 0xf2a48c0,10, 0xf2a4900,6, 0xf2a4920,6, 0xf2a4940,4, 0xf2a4980,13, 0xf2a49c0,13, 0xf2a4a00,9, 0xf2a5000,86, 0xf2a5200,2, 0xf2a5240,9, 0xf2a5280,7, 0xf2a5400,86, 0xf2a5604,6, 0xf2a5800,86, 0xf2a5a00,2, 0xf2a5a40,9, 0xf2a5a80,7, 0xf2a5c00,86, 0xf2a5e04,6, 0xf2a6000,15, 0xf2a6040,4, 0xf2a6060,17, 0xf2a60c0,6, 0xf2a60e0,4, 0xf2a60f4,11, 0xf2a6128,38, 0xf2a61c4,2, 0xf2a61d0,4, 0xf2a6200,1, 0xf2a8000,9, 0xf2a8040,9, 0xf2a8080,5, 0xf2a8100,21, 0xf2a8160,5, 0xf2a8180,45, 0xf2a8240,13, 0xf2a8280,9, 0xf2a8400,9, 0xf2a8440,9, 0xf2a8480,5, 0xf2a8500,21, 0xf2a8560,5, 0xf2a8580,45, 0xf2a8640,13, 0xf2a8680,9, 0xf2a8800,12, 0xf2a8900,15, 0xf2a8940,4, 0xf2a8960,17, 0xf2a89c0,6, 0xf2a89e0,4, 0xf2a89f4,29, 0xf2ac000,30, 0xf2ac080,3, 0xf2ac090,19, 0xf2ac100,30, 0xf2ac180,3, 0xf2ac190,19, 0xf2ac200,30, 0xf2ac280,3, 0xf2ac290,19, 0xf2ac300,30, 0xf2ac380,3, 0xf2ac390,19, 0xf2ac400,30, 0xf2ac480,3, 0xf2ac490,19, 0xf2ac500,30, 0xf2ac580,3, 0xf2ac590,19, 0xf2ac600,30, 0xf2ac680,3, 0xf2ac690,19, 0xf2ac700,30, 0xf2ac780,3, 0xf2ac790,19, 0xf2ac800,12, 0xf2ac844,1, 0xf2ac854,8, 0xf2ac880,7, 0xf2ac8a0,2, 0xf2ac8ac,2, 0xf2ac8c0,26, 0xf2ac980,4, 0xf2ac9a0,5, 0xf2ac9c0,1, 0xf2ad000,3, 0xf2ad010,3, 0xf2ad020,3, 0xf2ad030,3, 0xf2ad040,3, 0xf2ad050,3, 0xf2ad060,3, 0xf2ad070,3, 0xf2ad080,6, 0xf2ad0a0,6, 0xf2ad0c0,6, 0xf2ad0e0,6, 0xf2ad100,6, 0xf2ad120,6, 0xf2ad140,6, 0xf2ad160,6, 0xf2ad200,68, 0xf2ad400,1, 0xf2ad804,1, 0xf2ad844,54, 0xf2ada00,12, 0xf2ada40,12, 0xf2ada80,12, 0xf2adac0,12, 0xf2adb00,12, 0xf2adb40,12, 0xf2adb80,12, 0xf2adbc0,12, 0xf2adc00,28, 0xf2adc80,10, 0xf2ae000,3, 0xf2ae020,6, 0xf2ae040,6, 0xf2ae060,15, 0xf2ae100,26, 0xf2ae180,15, 0xf2ae200,15, 0xf2ae240,4, 0xf2ae260,17, 0xf2ae2c0,6, 0xf2ae2e0,4, 0xf2ae2f4,18, 0xf2ae340,4, 0xf2ae360,17, 0xf2ae3c0,6, 0xf2ae3e0,4, 0xf2ae3f4,15, 0xf2b0000,1, 0xf2b1000,1020, 0xf2b2000,194, 0xf2b3000,1020, 0xf2b4000,1020, 0xf2b5000,1020, 0xf2b6000,1020, 0xf2b7000,1020, 0xf2b8000,1020, 0xf2b9000,1020, 0xf2ba000,1020, 0xf2bb000,194, 0xf2bc000,3, 0xf2bc010,13, 0xf2bc080,16, 0xf2bc100,20, 0xf2bc184,1, 0xf2bc18c,4, 0xf2bc200,3, 0xf2bc210,13, 0xf2bc280,16, 0xf2bc300,20, 0xf2bc384,1, 0xf2bc38c,4, 0xf2bc400,3, 0xf2bc410,13, 0xf2bc480,16, 0xf2bc500,20, 0xf2bc584,1, 0xf2bc58c,4, 0xf2bc600,3, 0xf2bc610,13, 0xf2bc680,16, 0xf2bc700,20, 0xf2bc784,1, 0xf2bc78c,4, 0xf2bc800,3, 0xf2bc810,13, 0xf2bc880,16, 0xf2bc900,20, 0xf2bc984,1, 0xf2bc98c,4, 0xf2bca00,3, 0xf2bca10,13, 0xf2bca80,16, 0xf2bcb00,20, 0xf2bcb84,1, 0xf2bcb8c,4, 0xf2bcc00,3, 0xf2bcc10,13, 0xf2bcc80,16, 0xf2bcd00,20, 0xf2bcd84,1, 0xf2bcd8c,4, 0xf2bce00,3, 0xf2bce10,13, 0xf2bce80,16, 0xf2bcf00,20, 0xf2bcf84,1, 0xf2bcf8c,4, 0xf2bd000,3, 0xf2bd010,13, 0xf2bd080,16, 0xf2bd100,20, 0xf2bd184,1, 0xf2bd18c,4, 0xf2bd200,18, 0xf2bd250,2, 0xf2bd260,4, 0xf2be000,1, 0xf2be014,1, 0xf2be01c,19, 0xf2be080,1, 0xf2be094,1, 0xf2be09c,19, 0xf2be100,8, 0xf2be200,13, 0xf2be240,9, 0xf2be280,12, 0xf2be2c0,2, 0xf2be2e0,12, 0xf2c0000,3, 0xf2c0080,20, 0xf2c0100,10, 0xf2c0140,1, 0xf2c0154,1, 0xf2c015c,2, 0xf2c0200,15, 0xf2c0240,4, 0xf2c0260,17, 0xf2c02c0,6, 0xf2c02e0,2, 0xf2c02ec,3, 0xf2c0300,8, 0xf2c0324,1, 0xf2c0400,4, 0xf2c0440,20, 0xf2c04c0,9, 0xf2c0500,33, 0xf2c0600,11, 0xf2c0640,11, 0xf2c0680,1, 0xf2c2000,1, 0xf2c2200,4, 0xf2c2300,53, 0xf2c2400,4, 0xf2c2500,40, 0xf2c2600,15, 0xf2c2640,4, 0xf2c2660,17, 0xf2c26c0,6, 0xf2c26e0,2, 0xf2c26ec,3, 0xf2c2700,8, 0xf2c2724,1, 0xf2c2800,20, 0xf2c2c00,53, 0xf2c2d00,53, 0xf2c2e00,1, 0xf2c3000,40, 0xf2c3100,40, 0xf2c3200,1, 0xf2c3400,1, 0xf2c3804,1, 0xf2c3844,39, 0xf2c3900,3, 0xf2c3a00,3, 0xf2c3a44,1, 0xf2c3a50,4, 0xf2c3a80,1, 0xf2c4000,2, 0xf2c4200,27, 0xf2c4280,4, 0xf2c42c0,25, 0xf2c4340,6, 0xf2c4360,2, 0xf2c436c,3, 0xf2c4380,8, 0xf2c43a4,1, 0xf2c4400,12, 0xf2c4440,1, 0xf2c8000,3, 0xf2c8080,20, 0xf2c8100,10, 0xf2c8140,1, 0xf2c8154,1, 0xf2c815c,2, 0xf2c8200,15, 0xf2c8240,4, 0xf2c8260,17, 0xf2c82c0,6, 0xf2c82e0,2, 0xf2c82ec,3, 0xf2c8300,8, 0xf2c8324,1, 0xf2c8400,4, 0xf2c8440,20, 0xf2c84c0,9, 0xf2c8500,33, 0xf2c8600,11, 0xf2c8640,11, 0xf2c8680,1, 0xf2ca000,1, 0xf2ca200,4, 0xf2ca300,53, 0xf2ca400,4, 0xf2ca500,40, 0xf2ca600,15, 0xf2ca640,4, 0xf2ca660,17, 0xf2ca6c0,6, 0xf2ca6e0,2, 0xf2ca6ec,3, 0xf2ca700,8, 0xf2ca724,1, 0xf2ca800,20, 0xf2cac00,53, 0xf2cad00,53, 0xf2cae00,1, 0xf2cb000,40, 0xf2cb100,40, 0xf2cb200,1, 0xf2cb400,1, 0xf2cb804,1, 0xf2cb844,39, 0xf2cb900,3, 0xf2cba00,3, 0xf2cba44,1, 0xf2cba50,4, 0xf2cba80,1, 0xf2cc000,2, 0xf2cc200,27, 0xf2cc280,4, 0xf2cc2c0,25, 0xf2cc340,6, 0xf2cc360,2, 0xf2cc36c,3, 0xf2cc380,8, 0xf2cc3a4,1, 0xf2cc400,12, 0xf2cc440,1, 0xf2d0000,4, 0xf2d0020,3, 0xf2d0030,2, 0xf2d0200,1, 0xf2d0224,10, 0xf2d0250,5, 0xf2d0280,1, 0xf2d0288,24, 0xf2d0300,3, 0xf2d0404,1, 0xf2d0414,5, 0xf2d0500,36, 0xf2d0600,3, 0xf2d0800,2, 0xf2d1000,1, 0xf2d1008,21, 0xf2d1080,1, 0xf2d1088,21, 0xf2d1100,1, 0xf2d1108,21, 0xf2d1180,1, 0xf2d1188,21, 0xf2d1200,1, 0xf2d1208,21, 0xf2d1280,1, 0xf2d1288,21, 0xf2d1300,1, 0xf2d1308,21, 0xf2d1380,1, 0xf2d1388,21, 0xf2d1400,21, 0xf2d1800,142, 0xf2d1c00,1, 0xf2d2000,4, 0xf2d2100,39, 0xf2d2200,3, 0xf2d2214,3, 0xf2d4004,1, 0xf2d4020,16, 0xf2d4080,2, 0xf2d4094,1, 0xf2d409c,2, 0xf2d40c0,6, 0xf2d4100,8, 0xf2d8004,17, 0xf2d8054,1, 0xf2d805c,2, 0xf2d8080,1, 0xf2d80a0,2, 0xf2d80b4,4, 0xf2d8100,2, 0xf2d8200,8, 0xf2d8400,1, 0xf2d8600,27, 0xf2d8680,4, 0xf2d86c0,25, 0xf2d8740,6, 0xf2d8760,2, 0xf2d876c,3, 0xf2d8780,8, 0xf2d87a4,3, 0xf2d8800,44, 0xf2d8900,1, 0xf2e0000,1, 0xf2e0200,27, 0xf2e0280,4, 0xf2e02c0,25, 0xf2e0340,6, 0xf2e0360,2, 0xf2e036c,3, 0xf2e0380,8, 0xf2e03a4,1, 0xf2e0400,20, 0xf2e0480,3, 0xf2e0490,9, 0xf300000,198, 0xf300400,2, 0xf300440,9, 0xf300480,7, 0xf300800,198, 0xf300c00,2, 0xf300c40,9, 0xf300c80,7, 0xf301000,198, 0xf301400,198, 0xf301804,6, 0xf301824,6, 0xf301880,2, 0xf301904,1, 0xf301918,28, 0xf3019a0,6, 0xf3019c0,6, 0xf301c00,2, 0xf301d00,2, 0xf301e04,1, 0xf301e74,43, 0xf302000,2, 0xf302100,2, 0xf302204,1, 0xf302274,43, 0xf302400,3, 0xf302600,27, 0xf302680,4, 0xf3026c0,25, 0xf302740,6, 0xf302760,4, 0xf302774,11, 0xf3027a4,4, 0xf302800,4, 0xf302900,34, 0xf302a00,4, 0xf302b00,34, 0xf302c00,3, 0xf302c10,12, 0xf302e00,56, 0xf302ee4,4, 0xf302f00,4, 0xf303000,1, 0xf308000,4, 0xf308100,42, 0xf308200,1, 0xf308210,3, 0xf308220,3, 0xf308230,3, 0xf308240,1, 0xf308248,3, 0xf308400,4, 0xf308500,58, 0xf308600,1, 0xf308610,3, 0xf308620,3, 0xf308630,3, 0xf308640,1, 0xf308648,3, 0xf308800,4, 0xf308900,36, 0xf308a00,1, 0xf308c00,4, 0xf308c80,27, 0xf308d00,1, 0xf308d10,3, 0xf308d20,3, 0xf308d30,3, 0xf308d40,1, 0xf308d48,3, 0xf308e00,4, 0xf308e80,31, 0xf308f00,1, 0xf308f10,3, 0xf308f20,3, 0xf308f30,3, 0xf308f40,1, 0xf308f48,3, 0xf309000,4, 0xf309040,13, 0xf309080,1, 0xf309200,15, 0xf309240,4, 0xf309260,17, 0xf3092c0,6, 0xf3092e0,2, 0xf3092ec,3, 0xf309300,8, 0xf309324,8, 0xf309400,68, 0xf309600,60, 0xf309700,4, 0xf309720,5, 0xf309740,1, 0xf309780,2, 0xf30978c,2, 0xf3097a0,1, 0xf3097c0,12, 0xf309800,7, 0xf309820,5, 0xf309900,49, 0xf309a00,1, 0xf309a08,23, 0xf309a84,1, 0xf309a8c,1, 0xf309a94,1, 0xf309a9c,2, 0xf309ac0,1, 0xf309c00,10, 0xf309c40,1, 0xf309c50,3, 0xf309c80,10, 0xf309cc0,12, 0xf309d00,3, 0xf309e00,1, 0xf30a000,4, 0xf30a100,42, 0xf30a200,1, 0xf30a210,3, 0xf30a220,3, 0xf30a230,3, 0xf30a240,1, 0xf30a248,3, 0xf30a400,4, 0xf30a500,58, 0xf30a600,1, 0xf30a610,3, 0xf30a620,3, 0xf30a630,3, 0xf30a640,1, 0xf30a648,3, 0xf30a800,4, 0xf30a900,36, 0xf30aa00,1, 0xf30ac00,4, 0xf30ac80,27, 0xf30ad00,1, 0xf30ad10,3, 0xf30ad20,3, 0xf30ad30,3, 0xf30ad40,1, 0xf30ad48,3, 0xf30ae00,4, 0xf30ae80,31, 0xf30af00,1, 0xf30af10,3, 0xf30af20,3, 0xf30af30,3, 0xf30af40,1, 0xf30af48,3, 0xf30b000,4, 0xf30b040,13, 0xf30b080,1, 0xf30b200,15, 0xf30b240,4, 0xf30b260,17, 0xf30b2c0,6, 0xf30b2e0,2, 0xf30b2ec,3, 0xf30b300,8, 0xf30b324,8, 0xf30b400,68, 0xf30b600,60, 0xf30b700,4, 0xf30b720,5, 0xf30b740,1, 0xf30b780,2, 0xf30b78c,2, 0xf30b7a0,1, 0xf30b7c0,12, 0xf30b800,7, 0xf30b820,5, 0xf30b900,49, 0xf30ba00,1, 0xf30ba08,23, 0xf30ba84,1, 0xf30ba8c,1, 0xf30ba94,1, 0xf30ba9c,2, 0xf30bac0,1, 0xf30bc00,10, 0xf30bc40,1, 0xf30bc50,3, 0xf30bc80,10, 0xf30bcc0,12, 0xf30bd00,3, 0xf30be00,1, 0xf30c000,20, 0xf30c080,3, 0xf30c090,1, 0xf30c098,4, 0xf310000,49, 0xf310100,12, 0xf310140,4, 0xf310184,1, 0xf310198,2, 0xf3101a4,1, 0xf3101b8,7, 0xf3101e0,4, 0xf310200,20, 0xf310280,3, 0xf310290,9, 0xf3102c0,6, 0xf3102e0,1, 0xf3102e8,7, 0xf310400,49, 0xf310500,12, 0xf310540,4, 0xf310584,1, 0xf310598,2, 0xf3105a4,1, 0xf3105b8,7, 0xf3105e0,4, 0xf310600,20, 0xf310680,3, 0xf310690,9, 0xf3106c0,6, 0xf3106e0,1, 0xf3106e8,7, 0xf310800,49, 0xf310900,12, 0xf310940,4, 0xf310984,1, 0xf310998,2, 0xf3109a4,1, 0xf3109b8,7, 0xf3109e0,4, 0xf310a00,20, 0xf310a80,3, 0xf310a90,9, 0xf310ac0,6, 0xf310ae0,1, 0xf310ae8,7, 0xf310c00,49, 0xf310d00,12, 0xf310d40,4, 0xf310d84,1, 0xf310d98,2, 0xf310da4,1, 0xf310db8,7, 0xf310de0,4, 0xf310e00,20, 0xf310e80,3, 0xf310e90,9, 0xf310ec0,6, 0xf310ee0,1, 0xf310ee8,7, 0xf311000,49, 0xf311100,12, 0xf311140,4, 0xf311184,1, 0xf311198,2, 0xf3111a4,1, 0xf3111b8,7, 0xf3111e0,4, 0xf311200,20, 0xf311280,3, 0xf311290,9, 0xf3112c0,6, 0xf3112e0,1, 0xf3112e8,7, 0xf311400,49, 0xf311500,12, 0xf311540,4, 0xf311584,1, 0xf311598,2, 0xf3115a4,1, 0xf3115b8,7, 0xf3115e0,4, 0xf311600,20, 0xf311680,3, 0xf311690,9, 0xf3116c0,6, 0xf3116e0,1, 0xf3116e8,7, 0xf311800,49, 0xf311900,12, 0xf311940,4, 0xf311984,1, 0xf311998,2, 0xf3119a4,1, 0xf3119b8,7, 0xf3119e0,4, 0xf311a00,20, 0xf311a80,3, 0xf311a90,9, 0xf311ac0,6, 0xf311ae0,1, 0xf311ae8,7, 0xf312000,20, 0xf312080,10, 0xf312100,20, 0xf312180,10, 0xf312200,12, 0xf312400,20, 0xf312480,10, 0xf312500,20, 0xf312580,10, 0xf312600,12, 0xf312800,3, 0xf312840,12, 0xf312880,12, 0xf3128c0,12, 0xf312900,12, 0xf312940,12, 0xf312980,12, 0xf3129c0,12, 0xf312a00,12, 0xf312c00,12, 0xf312c40,7, 0xf312c60,10, 0xf313004,1, 0xf313044,43, 0xf313100,7, 0xf313120,7, 0xf313140,2, 0xf31314c,2, 0xf313160,2, 0xf31316c,2, 0xf313180,18, 0xf313200,2, 0xf313220,10, 0xf313260,20, 0xf3132c0,9, 0xf313300,15, 0xf313340,9, 0xf313380,6, 0xf3133a0,4, 0xf313400,5, 0xf314000,53, 0xf314100,3, 0xf314110,15, 0xf314200,53, 0xf314300,3, 0xf314310,15, 0xf314400,5, 0xf314420,5, 0xf314440,18, 0xf314800,3, 0xf314810,2, 0xf314820,3, 0xf314830,2, 0xf314840,1, 0xf315000,7, 0xf315020,7, 0xf315080,19, 0xf315100,19, 0xf315180,25, 0xf315200,20, 0xf315280,20, 0xf315300,8, 0xf315340,4, 0xf315380,15, 0xf3153c0,15, 0xf315400,9, 0xf315430,5, 0xf316000,6, 0xf316020,1, 0xf316028,2, 0xf316040,11, 0xf316070,2, 0xf318000,82, 0xf318200,2, 0xf318240,9, 0xf318280,7, 0xf318400,82, 0xf318604,6, 0xf318700,15, 0xf318740,9, 0xf318780,6, 0xf3187a0,6, 0xf318800,2, 0xf318810,3, 0xf318880,24, 0xf3188e4,1, 0xf3188f0,12, 0xf320000,22, 0xf320080,22, 0xf320100,5, 0xf320120,5, 0xf320140,3, 0xf320160,16, 0xf3201c0,7, 0xf3201e0,2, 0xf320200,7, 0xf320220,2, 0xf320400,15, 0xf320440,3, 0xf320450,3, 0xf320460,24, 0xf320500,15, 0xf320540,3, 0xf320550,3, 0xf320560,24, 0xf320600,15, 0xf320640,3, 0xf320650,3, 0xf320660,24, 0xf320700,15, 0xf320740,3, 0xf320750,3, 0xf320760,24, 0xf320800,4, 0xf320820,16, 0xf320880,10, 0xf3208c0,10, 0xf320900,6, 0xf320920,6, 0xf320940,4, 0xf320980,13, 0xf3209c0,13, 0xf320a00,9, 0xf321000,86, 0xf321200,2, 0xf321240,9, 0xf321280,7, 0xf321400,86, 0xf321604,6, 0xf321800,86, 0xf321a00,2, 0xf321a40,9, 0xf321a80,7, 0xf321c00,86, 0xf321e04,6, 0xf322000,15, 0xf322040,4, 0xf322060,17, 0xf3220c0,6, 0xf3220e0,4, 0xf3220f4,11, 0xf322128,38, 0xf3221c4,2, 0xf3221d0,4, 0xf322200,1, 0xf324000,22, 0xf324080,22, 0xf324100,5, 0xf324120,5, 0xf324140,3, 0xf324160,16, 0xf3241c0,7, 0xf3241e0,2, 0xf324200,7, 0xf324220,2, 0xf324400,15, 0xf324440,3, 0xf324450,3, 0xf324460,24, 0xf324500,15, 0xf324540,3, 0xf324550,3, 0xf324560,24, 0xf324600,15, 0xf324640,3, 0xf324650,3, 0xf324660,24, 0xf324700,15, 0xf324740,3, 0xf324750,3, 0xf324760,24, 0xf324800,4, 0xf324820,16, 0xf324880,10, 0xf3248c0,10, 0xf324900,6, 0xf324920,6, 0xf324940,4, 0xf324980,13, 0xf3249c0,13, 0xf324a00,9, 0xf325000,86, 0xf325200,2, 0xf325240,9, 0xf325280,7, 0xf325400,86, 0xf325604,6, 0xf325800,86, 0xf325a00,2, 0xf325a40,9, 0xf325a80,7, 0xf325c00,86, 0xf325e04,6, 0xf326000,15, 0xf326040,4, 0xf326060,17, 0xf3260c0,6, 0xf3260e0,4, 0xf3260f4,11, 0xf326128,38, 0xf3261c4,2, 0xf3261d0,4, 0xf326200,1, 0xf328000,9, 0xf328040,9, 0xf328080,5, 0xf328100,21, 0xf328160,5, 0xf328180,45, 0xf328240,13, 0xf328280,9, 0xf328400,9, 0xf328440,9, 0xf328480,5, 0xf328500,21, 0xf328560,5, 0xf328580,45, 0xf328640,13, 0xf328680,9, 0xf328800,12, 0xf328900,15, 0xf328940,4, 0xf328960,17, 0xf3289c0,6, 0xf3289e0,4, 0xf3289f4,29, 0xf32c000,30, 0xf32c080,3, 0xf32c090,19, 0xf32c100,30, 0xf32c180,3, 0xf32c190,19, 0xf32c200,30, 0xf32c280,3, 0xf32c290,19, 0xf32c300,30, 0xf32c380,3, 0xf32c390,19, 0xf32c400,30, 0xf32c480,3, 0xf32c490,19, 0xf32c500,30, 0xf32c580,3, 0xf32c590,19, 0xf32c600,30, 0xf32c680,3, 0xf32c690,19, 0xf32c700,30, 0xf32c780,3, 0xf32c790,19, 0xf32c800,12, 0xf32c844,1, 0xf32c854,8, 0xf32c880,7, 0xf32c8a0,2, 0xf32c8ac,2, 0xf32c8c0,26, 0xf32c980,4, 0xf32c9a0,5, 0xf32c9c0,1, 0xf32d000,3, 0xf32d010,3, 0xf32d020,3, 0xf32d030,3, 0xf32d040,3, 0xf32d050,3, 0xf32d060,3, 0xf32d070,3, 0xf32d080,6, 0xf32d0a0,6, 0xf32d0c0,6, 0xf32d0e0,6, 0xf32d100,6, 0xf32d120,6, 0xf32d140,6, 0xf32d160,6, 0xf32d200,68, 0xf32d400,1, 0xf32d804,1, 0xf32d844,54, 0xf32da00,12, 0xf32da40,12, 0xf32da80,12, 0xf32dac0,12, 0xf32db00,12, 0xf32db40,12, 0xf32db80,12, 0xf32dbc0,12, 0xf32dc00,28, 0xf32dc80,10, 0xf32e000,3, 0xf32e020,6, 0xf32e040,6, 0xf32e060,15, 0xf32e100,26, 0xf32e180,15, 0xf32e200,15, 0xf32e240,4, 0xf32e260,17, 0xf32e2c0,6, 0xf32e2e0,4, 0xf32e2f4,18, 0xf32e340,4, 0xf32e360,17, 0xf32e3c0,6, 0xf32e3e0,4, 0xf32e3f4,15, 0xf330000,1, 0xf331000,1020, 0xf332000,194, 0xf333000,1020, 0xf334000,1020, 0xf335000,1020, 0xf336000,1020, 0xf337000,1020, 0xf338000,1020, 0xf339000,1020, 0xf33a000,1020, 0xf33b000,194, 0xf33c000,3, 0xf33c010,13, 0xf33c080,16, 0xf33c100,20, 0xf33c184,1, 0xf33c18c,4, 0xf33c200,3, 0xf33c210,13, 0xf33c280,16, 0xf33c300,20, 0xf33c384,1, 0xf33c38c,4, 0xf33c400,3, 0xf33c410,13, 0xf33c480,16, 0xf33c500,20, 0xf33c584,1, 0xf33c58c,4, 0xf33c600,3, 0xf33c610,13, 0xf33c680,16, 0xf33c700,20, 0xf33c784,1, 0xf33c78c,4, 0xf33c800,3, 0xf33c810,13, 0xf33c880,16, 0xf33c900,20, 0xf33c984,1, 0xf33c98c,4, 0xf33ca00,3, 0xf33ca10,13, 0xf33ca80,16, 0xf33cb00,20, 0xf33cb84,1, 0xf33cb8c,4, 0xf33cc00,3, 0xf33cc10,13, 0xf33cc80,16, 0xf33cd00,20, 0xf33cd84,1, 0xf33cd8c,4, 0xf33ce00,3, 0xf33ce10,13, 0xf33ce80,16, 0xf33cf00,20, 0xf33cf84,1, 0xf33cf8c,4, 0xf33d000,3, 0xf33d010,13, 0xf33d080,16, 0xf33d100,20, 0xf33d184,1, 0xf33d18c,4, 0xf33d200,18, 0xf33d250,2, 0xf33d260,4, 0xf33e000,1, 0xf33e014,1, 0xf33e01c,19, 0xf33e080,1, 0xf33e094,1, 0xf33e09c,19, 0xf33e100,8, 0xf33e200,13, 0xf33e240,9, 0xf33e280,12, 0xf33e2c0,2, 0xf33e2e0,12, 0xf340000,3, 0xf340080,20, 0xf340100,10, 0xf340140,1, 0xf340154,1, 0xf34015c,2, 0xf340200,15, 0xf340240,4, 0xf340260,17, 0xf3402c0,6, 0xf3402e0,2, 0xf3402ec,3, 0xf340300,8, 0xf340324,1, 0xf340400,4, 0xf340440,20, 0xf3404c0,9, 0xf340500,33, 0xf340600,11, 0xf340640,11, 0xf340680,1, 0xf342000,1, 0xf342200,4, 0xf342300,53, 0xf342400,4, 0xf342500,40, 0xf342600,15, 0xf342640,4, 0xf342660,17, 0xf3426c0,6, 0xf3426e0,2, 0xf3426ec,3, 0xf342700,8, 0xf342724,1, 0xf342800,20, 0xf342c00,53, 0xf342d00,53, 0xf342e00,1, 0xf343000,40, 0xf343100,40, 0xf343200,1, 0xf343400,1, 0xf343804,1, 0xf343844,39, 0xf343900,3, 0xf343a00,3, 0xf343a44,1, 0xf343a50,4, 0xf343a80,1, 0xf344000,2, 0xf344200,27, 0xf344280,4, 0xf3442c0,25, 0xf344340,6, 0xf344360,2, 0xf34436c,3, 0xf344380,8, 0xf3443a4,1, 0xf344400,12, 0xf344440,1, 0xf348000,3, 0xf348080,20, 0xf348100,10, 0xf348140,1, 0xf348154,1, 0xf34815c,2, 0xf348200,15, 0xf348240,4, 0xf348260,17, 0xf3482c0,6, 0xf3482e0,2, 0xf3482ec,3, 0xf348300,8, 0xf348324,1, 0xf348400,4, 0xf348440,20, 0xf3484c0,9, 0xf348500,33, 0xf348600,11, 0xf348640,11, 0xf348680,1, 0xf34a000,1, 0xf34a200,4, 0xf34a300,53, 0xf34a400,4, 0xf34a500,40, 0xf34a600,15, 0xf34a640,4, 0xf34a660,17, 0xf34a6c0,6, 0xf34a6e0,2, 0xf34a6ec,3, 0xf34a700,8, 0xf34a724,1, 0xf34a800,20, 0xf34ac00,53, 0xf34ad00,53, 0xf34ae00,1, 0xf34b000,40, 0xf34b100,40, 0xf34b200,1, 0xf34b400,1, 0xf34b804,1, 0xf34b844,39, 0xf34b900,3, 0xf34ba00,3, 0xf34ba44,1, 0xf34ba50,4, 0xf34ba80,1, 0xf34c000,2, 0xf34c200,27, 0xf34c280,4, 0xf34c2c0,25, 0xf34c340,6, 0xf34c360,2, 0xf34c36c,3, 0xf34c380,8, 0xf34c3a4,1, 0xf34c400,12, 0xf34c440,1, 0xf350000,4, 0xf350020,3, 0xf350030,2, 0xf350200,1, 0xf350224,10, 0xf350250,5, 0xf350280,1, 0xf350288,24, 0xf350300,3, 0xf350404,1, 0xf350414,5, 0xf350500,36, 0xf350600,3, 0xf350800,2, 0xf351000,1, 0xf351008,21, 0xf351080,1, 0xf351088,21, 0xf351100,1, 0xf351108,21, 0xf351180,1, 0xf351188,21, 0xf351200,1, 0xf351208,21, 0xf351280,1, 0xf351288,21, 0xf351300,1, 0xf351308,21, 0xf351380,1, 0xf351388,21, 0xf351400,21, 0xf351800,142, 0xf351c00,1, 0xf352000,4, 0xf352100,39, 0xf352200,3, 0xf352214,3, 0xf354004,1, 0xf354020,16, 0xf354080,2, 0xf354094,1, 0xf35409c,2, 0xf3540c0,6, 0xf354100,8, 0xf358004,17, 0xf358054,1, 0xf35805c,2, 0xf358080,1, 0xf3580a0,2, 0xf3580b4,4, 0xf358100,2, 0xf358200,8, 0xf358400,1, 0xf358600,27, 0xf358680,4, 0xf3586c0,25, 0xf358740,6, 0xf358760,2, 0xf35876c,3, 0xf358780,8, 0xf3587a4,3, 0xf358800,44, 0xf358900,1, 0xf360000,1, 0xf360200,27, 0xf360280,4, 0xf3602c0,25, 0xf360340,6, 0xf360360,2, 0xf36036c,3, 0xf360380,8, 0xf3603a4,1, 0xf360400,20, 0xf360480,3, 0xf360490,9, 0xf380000,198, 0xf380400,2, 0xf380440,9, 0xf380480,7, 0xf380800,198, 0xf380c00,2, 0xf380c40,9, 0xf380c80,7, 0xf381000,198, 0xf381400,198, 0xf381804,6, 0xf381824,6, 0xf381880,2, 0xf381904,1, 0xf381918,28, 0xf3819a0,6, 0xf3819c0,6, 0xf381c00,2, 0xf381d00,2, 0xf381e04,1, 0xf381e74,43, 0xf382000,2, 0xf382100,2, 0xf382204,1, 0xf382274,43, 0xf382400,3, 0xf382600,27, 0xf382680,4, 0xf3826c0,25, 0xf382740,6, 0xf382760,4, 0xf382774,11, 0xf3827a4,4, 0xf382800,4, 0xf382900,34, 0xf382a00,4, 0xf382b00,34, 0xf382c00,3, 0xf382c10,12, 0xf382e00,56, 0xf382ee4,4, 0xf382f00,4, 0xf383000,1, 0xf388000,4, 0xf388100,42, 0xf388200,1, 0xf388210,3, 0xf388220,3, 0xf388230,3, 0xf388240,1, 0xf388248,3, 0xf388400,4, 0xf388500,58, 0xf388600,1, 0xf388610,3, 0xf388620,3, 0xf388630,3, 0xf388640,1, 0xf388648,3, 0xf388800,4, 0xf388900,36, 0xf388a00,1, 0xf388c00,4, 0xf388c80,27, 0xf388d00,1, 0xf388d10,3, 0xf388d20,3, 0xf388d30,3, 0xf388d40,1, 0xf388d48,3, 0xf388e00,4, 0xf388e80,31, 0xf388f00,1, 0xf388f10,3, 0xf388f20,3, 0xf388f30,3, 0xf388f40,1, 0xf388f48,3, 0xf389000,4, 0xf389040,13, 0xf389080,1, 0xf389200,15, 0xf389240,4, 0xf389260,17, 0xf3892c0,6, 0xf3892e0,2, 0xf3892ec,3, 0xf389300,8, 0xf389324,8, 0xf389400,68, 0xf389600,60, 0xf389700,4, 0xf389720,5, 0xf389740,1, 0xf389780,2, 0xf38978c,2, 0xf3897a0,1, 0xf3897c0,12, 0xf389800,7, 0xf389820,5, 0xf389900,49, 0xf389a00,1, 0xf389a08,23, 0xf389a84,1, 0xf389a8c,1, 0xf389a94,1, 0xf389a9c,2, 0xf389ac0,1, 0xf389c00,10, 0xf389c40,1, 0xf389c50,3, 0xf389c80,10, 0xf389cc0,12, 0xf389d00,3, 0xf389e00,1, 0xf38a000,4, 0xf38a100,42, 0xf38a200,1, 0xf38a210,3, 0xf38a220,3, 0xf38a230,3, 0xf38a240,1, 0xf38a248,3, 0xf38a400,4, 0xf38a500,58, 0xf38a600,1, 0xf38a610,3, 0xf38a620,3, 0xf38a630,3, 0xf38a640,1, 0xf38a648,3, 0xf38a800,4, 0xf38a900,36, 0xf38aa00,1, 0xf38ac00,4, 0xf38ac80,27, 0xf38ad00,1, 0xf38ad10,3, 0xf38ad20,3, 0xf38ad30,3, 0xf38ad40,1, 0xf38ad48,3, 0xf38ae00,4, 0xf38ae80,31, 0xf38af00,1, 0xf38af10,3, 0xf38af20,3, 0xf38af30,3, 0xf38af40,1, 0xf38af48,3, 0xf38b000,4, 0xf38b040,13, 0xf38b080,1, 0xf38b200,15, 0xf38b240,4, 0xf38b260,17, 0xf38b2c0,6, 0xf38b2e0,2, 0xf38b2ec,3, 0xf38b300,8, 0xf38b324,8, 0xf38b400,68, 0xf38b600,60, 0xf38b700,4, 0xf38b720,5, 0xf38b740,1, 0xf38b780,2, 0xf38b78c,2, 0xf38b7a0,1, 0xf38b7c0,12, 0xf38b800,7, 0xf38b820,5, 0xf38b900,49, 0xf38ba00,1, 0xf38ba08,23, 0xf38ba84,1, 0xf38ba8c,1, 0xf38ba94,1, 0xf38ba9c,2, 0xf38bac0,1, 0xf38bc00,10, 0xf38bc40,1, 0xf38bc50,3, 0xf38bc80,10, 0xf38bcc0,12, 0xf38bd00,3, 0xf38be00,1, 0xf38c000,20, 0xf38c080,3, 0xf38c090,1, 0xf38c098,4, 0xf390000,49, 0xf390100,12, 0xf390140,4, 0xf390184,1, 0xf390198,2, 0xf3901a4,1, 0xf3901b8,7, 0xf3901e0,4, 0xf390200,20, 0xf390280,3, 0xf390290,9, 0xf3902c0,6, 0xf3902e0,1, 0xf3902e8,7, 0xf390400,49, 0xf390500,12, 0xf390540,4, 0xf390584,1, 0xf390598,2, 0xf3905a4,1, 0xf3905b8,7, 0xf3905e0,4, 0xf390600,20, 0xf390680,3, 0xf390690,9, 0xf3906c0,6, 0xf3906e0,1, 0xf3906e8,7, 0xf390800,49, 0xf390900,12, 0xf390940,4, 0xf390984,1, 0xf390998,2, 0xf3909a4,1, 0xf3909b8,7, 0xf3909e0,4, 0xf390a00,20, 0xf390a80,3, 0xf390a90,9, 0xf390ac0,6, 0xf390ae0,1, 0xf390ae8,7, 0xf390c00,49, 0xf390d00,12, 0xf390d40,4, 0xf390d84,1, 0xf390d98,2, 0xf390da4,1, 0xf390db8,7, 0xf390de0,4, 0xf390e00,20, 0xf390e80,3, 0xf390e90,9, 0xf390ec0,6, 0xf390ee0,1, 0xf390ee8,7, 0xf391000,49, 0xf391100,12, 0xf391140,4, 0xf391184,1, 0xf391198,2, 0xf3911a4,1, 0xf3911b8,7, 0xf3911e0,4, 0xf391200,20, 0xf391280,3, 0xf391290,9, 0xf3912c0,6, 0xf3912e0,1, 0xf3912e8,7, 0xf391400,49, 0xf391500,12, 0xf391540,4, 0xf391584,1, 0xf391598,2, 0xf3915a4,1, 0xf3915b8,7, 0xf3915e0,4, 0xf391600,20, 0xf391680,3, 0xf391690,9, 0xf3916c0,6, 0xf3916e0,1, 0xf3916e8,7, 0xf391800,49, 0xf391900,12, 0xf391940,4, 0xf391984,1, 0xf391998,2, 0xf3919a4,1, 0xf3919b8,7, 0xf3919e0,4, 0xf391a00,20, 0xf391a80,3, 0xf391a90,9, 0xf391ac0,6, 0xf391ae0,1, 0xf391ae8,7, 0xf392000,20, 0xf392080,10, 0xf392100,20, 0xf392180,10, 0xf392200,12, 0xf392400,20, 0xf392480,10, 0xf392500,20, 0xf392580,10, 0xf392600,12, 0xf392800,3, 0xf392840,12, 0xf392880,12, 0xf3928c0,12, 0xf392900,12, 0xf392940,12, 0xf392980,12, 0xf3929c0,12, 0xf392a00,12, 0xf392c00,12, 0xf392c40,7, 0xf392c60,10, 0xf393004,1, 0xf393044,43, 0xf393100,7, 0xf393120,7, 0xf393140,2, 0xf39314c,2, 0xf393160,2, 0xf39316c,2, 0xf393180,18, 0xf393200,2, 0xf393220,10, 0xf393260,20, 0xf3932c0,9, 0xf393300,15, 0xf393340,9, 0xf393380,6, 0xf3933a0,4, 0xf393400,5, 0xf394000,53, 0xf394100,3, 0xf394110,15, 0xf394200,53, 0xf394300,3, 0xf394310,15, 0xf394400,5, 0xf394420,5, 0xf394440,18, 0xf394800,3, 0xf394810,2, 0xf394820,3, 0xf394830,2, 0xf394840,1, 0xf395000,7, 0xf395020,7, 0xf395080,19, 0xf395100,19, 0xf395180,25, 0xf395200,20, 0xf395280,20, 0xf395300,8, 0xf395340,4, 0xf395380,15, 0xf3953c0,15, 0xf395400,9, 0xf395430,5, 0xf396000,6, 0xf396020,1, 0xf396028,2, 0xf396040,11, 0xf396070,2, 0xf398000,82, 0xf398200,2, 0xf398240,9, 0xf398280,7, 0xf398400,82, 0xf398604,6, 0xf398700,15, 0xf398740,9, 0xf398780,6, 0xf3987a0,6, 0xf398800,2, 0xf398810,3, 0xf398880,24, 0xf3988e4,1, 0xf3988f0,12, 0xf3a0000,22, 0xf3a0080,22, 0xf3a0100,5, 0xf3a0120,5, 0xf3a0140,3, 0xf3a0160,16, 0xf3a01c0,7, 0xf3a01e0,2, 0xf3a0200,7, 0xf3a0220,2, 0xf3a0400,15, 0xf3a0440,3, 0xf3a0450,3, 0xf3a0460,24, 0xf3a0500,15, 0xf3a0540,3, 0xf3a0550,3, 0xf3a0560,24, 0xf3a0600,15, 0xf3a0640,3, 0xf3a0650,3, 0xf3a0660,24, 0xf3a0700,15, 0xf3a0740,3, 0xf3a0750,3, 0xf3a0760,24, 0xf3a0800,4, 0xf3a0820,16, 0xf3a0880,10, 0xf3a08c0,10, 0xf3a0900,6, 0xf3a0920,6, 0xf3a0940,4, 0xf3a0980,13, 0xf3a09c0,13, 0xf3a0a00,9, 0xf3a1000,86, 0xf3a1200,2, 0xf3a1240,9, 0xf3a1280,7, 0xf3a1400,86, 0xf3a1604,6, 0xf3a1800,86, 0xf3a1a00,2, 0xf3a1a40,9, 0xf3a1a80,7, 0xf3a1c00,86, 0xf3a1e04,6, 0xf3a2000,15, 0xf3a2040,4, 0xf3a2060,17, 0xf3a20c0,6, 0xf3a20e0,4, 0xf3a20f4,11, 0xf3a2128,38, 0xf3a21c4,2, 0xf3a21d0,4, 0xf3a2200,1, 0xf3a4000,22, 0xf3a4080,22, 0xf3a4100,5, 0xf3a4120,5, 0xf3a4140,3, 0xf3a4160,16, 0xf3a41c0,7, 0xf3a41e0,2, 0xf3a4200,7, 0xf3a4220,2, 0xf3a4400,15, 0xf3a4440,3, 0xf3a4450,3, 0xf3a4460,24, 0xf3a4500,15, 0xf3a4540,3, 0xf3a4550,3, 0xf3a4560,24, 0xf3a4600,15, 0xf3a4640,3, 0xf3a4650,3, 0xf3a4660,24, 0xf3a4700,15, 0xf3a4740,3, 0xf3a4750,3, 0xf3a4760,24, 0xf3a4800,4, 0xf3a4820,16, 0xf3a4880,10, 0xf3a48c0,10, 0xf3a4900,6, 0xf3a4920,6, 0xf3a4940,4, 0xf3a4980,13, 0xf3a49c0,13, 0xf3a4a00,9, 0xf3a5000,86, 0xf3a5200,2, 0xf3a5240,9, 0xf3a5280,7, 0xf3a5400,86, 0xf3a5604,6, 0xf3a5800,86, 0xf3a5a00,2, 0xf3a5a40,9, 0xf3a5a80,7, 0xf3a5c00,86, 0xf3a5e04,6, 0xf3a6000,15, 0xf3a6040,4, 0xf3a6060,17, 0xf3a60c0,6, 0xf3a60e0,4, 0xf3a60f4,11, 0xf3a6128,38, 0xf3a61c4,2, 0xf3a61d0,4, 0xf3a6200,1, 0xf3a8000,9, 0xf3a8040,9, 0xf3a8080,5, 0xf3a8100,21, 0xf3a8160,5, 0xf3a8180,45, 0xf3a8240,13, 0xf3a8280,9, 0xf3a8400,9, 0xf3a8440,9, 0xf3a8480,5, 0xf3a8500,21, 0xf3a8560,5, 0xf3a8580,45, 0xf3a8640,13, 0xf3a8680,9, 0xf3a8800,12, 0xf3a8900,15, 0xf3a8940,4, 0xf3a8960,17, 0xf3a89c0,6, 0xf3a89e0,4, 0xf3a89f4,29, 0xf3ac000,30, 0xf3ac080,3, 0xf3ac090,19, 0xf3ac100,30, 0xf3ac180,3, 0xf3ac190,19, 0xf3ac200,30, 0xf3ac280,3, 0xf3ac290,19, 0xf3ac300,30, 0xf3ac380,3, 0xf3ac390,19, 0xf3ac400,30, 0xf3ac480,3, 0xf3ac490,19, 0xf3ac500,30, 0xf3ac580,3, 0xf3ac590,19, 0xf3ac600,30, 0xf3ac680,3, 0xf3ac690,19, 0xf3ac700,30, 0xf3ac780,3, 0xf3ac790,19, 0xf3ac800,12, 0xf3ac844,1, 0xf3ac854,8, 0xf3ac880,7, 0xf3ac8a0,2, 0xf3ac8ac,2, 0xf3ac8c0,26, 0xf3ac980,4, 0xf3ac9a0,5, 0xf3ac9c0,1, 0xf3ad000,3, 0xf3ad010,3, 0xf3ad020,3, 0xf3ad030,3, 0xf3ad040,3, 0xf3ad050,3, 0xf3ad060,3, 0xf3ad070,3, 0xf3ad080,6, 0xf3ad0a0,6, 0xf3ad0c0,6, 0xf3ad0e0,6, 0xf3ad100,6, 0xf3ad120,6, 0xf3ad140,6, 0xf3ad160,6, 0xf3ad200,68, 0xf3ad400,1, 0xf3ad804,1, 0xf3ad844,54, 0xf3ada00,12, 0xf3ada40,12, 0xf3ada80,12, 0xf3adac0,12, 0xf3adb00,12, 0xf3adb40,12, 0xf3adb80,12, 0xf3adbc0,12, 0xf3adc00,28, 0xf3adc80,10, 0xf3ae000,3, 0xf3ae020,6, 0xf3ae040,6, 0xf3ae060,15, 0xf3ae100,26, 0xf3ae180,15, 0xf3ae200,15, 0xf3ae240,4, 0xf3ae260,17, 0xf3ae2c0,6, 0xf3ae2e0,4, 0xf3ae2f4,18, 0xf3ae340,4, 0xf3ae360,17, 0xf3ae3c0,6, 0xf3ae3e0,4, 0xf3ae3f4,15, 0xf3b0000,1, 0xf3b1000,1020, 0xf3b2000,194, 0xf3b3000,1020, 0xf3b4000,1020, 0xf3b5000,1020, 0xf3b6000,1020, 0xf3b7000,1020, 0xf3b8000,1020, 0xf3b9000,1020, 0xf3ba000,1020, 0xf3bb000,194, 0xf3bc000,3, 0xf3bc010,13, 0xf3bc080,16, 0xf3bc100,20, 0xf3bc184,1, 0xf3bc18c,4, 0xf3bc200,3, 0xf3bc210,13, 0xf3bc280,16, 0xf3bc300,20, 0xf3bc384,1, 0xf3bc38c,4, 0xf3bc400,3, 0xf3bc410,13, 0xf3bc480,16, 0xf3bc500,20, 0xf3bc584,1, 0xf3bc58c,4, 0xf3bc600,3, 0xf3bc610,13, 0xf3bc680,16, 0xf3bc700,20, 0xf3bc784,1, 0xf3bc78c,4, 0xf3bc800,3, 0xf3bc810,13, 0xf3bc880,16, 0xf3bc900,20, 0xf3bc984,1, 0xf3bc98c,4, 0xf3bca00,3, 0xf3bca10,13, 0xf3bca80,16, 0xf3bcb00,20, 0xf3bcb84,1, 0xf3bcb8c,4, 0xf3bcc00,3, 0xf3bcc10,13, 0xf3bcc80,16, 0xf3bcd00,20, 0xf3bcd84,1, 0xf3bcd8c,4, 0xf3bce00,3, 0xf3bce10,13, 0xf3bce80,16, 0xf3bcf00,20, 0xf3bcf84,1, 0xf3bcf8c,4, 0xf3bd000,3, 0xf3bd010,13, 0xf3bd080,16, 0xf3bd100,20, 0xf3bd184,1, 0xf3bd18c,4, 0xf3bd200,18, 0xf3bd250,2, 0xf3bd260,4, 0xf3be000,1, 0xf3be014,1, 0xf3be01c,19, 0xf3be080,1, 0xf3be094,1, 0xf3be09c,19, 0xf3be100,8, 0xf3be200,13, 0xf3be240,9, 0xf3be280,12, 0xf3be2c0,2, 0xf3be2e0,12, 0xf3c0000,3, 0xf3c0080,20, 0xf3c0100,10, 0xf3c0140,1, 0xf3c0154,1, 0xf3c015c,2, 0xf3c0200,15, 0xf3c0240,4, 0xf3c0260,17, 0xf3c02c0,6, 0xf3c02e0,2, 0xf3c02ec,3, 0xf3c0300,8, 0xf3c0324,1, 0xf3c0400,4, 0xf3c0440,20, 0xf3c04c0,9, 0xf3c0500,33, 0xf3c0600,11, 0xf3c0640,11, 0xf3c0680,1, 0xf3c2000,1, 0xf3c2200,4, 0xf3c2300,53, 0xf3c2400,4, 0xf3c2500,40, 0xf3c2600,15, 0xf3c2640,4, 0xf3c2660,17, 0xf3c26c0,6, 0xf3c26e0,2, 0xf3c26ec,3, 0xf3c2700,8, 0xf3c2724,1, 0xf3c2800,20, 0xf3c2c00,53, 0xf3c2d00,53, 0xf3c2e00,1, 0xf3c3000,40, 0xf3c3100,40, 0xf3c3200,1, 0xf3c3400,1, 0xf3c3804,1, 0xf3c3844,39, 0xf3c3900,3, 0xf3c3a00,3, 0xf3c3a44,1, 0xf3c3a50,4, 0xf3c3a80,1, 0xf3c4000,2, 0xf3c4200,27, 0xf3c4280,4, 0xf3c42c0,25, 0xf3c4340,6, 0xf3c4360,2, 0xf3c436c,3, 0xf3c4380,8, 0xf3c43a4,1, 0xf3c4400,12, 0xf3c4440,1, 0xf3c8000,3, 0xf3c8080,20, 0xf3c8100,10, 0xf3c8140,1, 0xf3c8154,1, 0xf3c815c,2, 0xf3c8200,15, 0xf3c8240,4, 0xf3c8260,17, 0xf3c82c0,6, 0xf3c82e0,2, 0xf3c82ec,3, 0xf3c8300,8, 0xf3c8324,1, 0xf3c8400,4, 0xf3c8440,20, 0xf3c84c0,9, 0xf3c8500,33, 0xf3c8600,11, 0xf3c8640,11, 0xf3c8680,1, 0xf3ca000,1, 0xf3ca200,4, 0xf3ca300,53, 0xf3ca400,4, 0xf3ca500,40, 0xf3ca600,15, 0xf3ca640,4, 0xf3ca660,17, 0xf3ca6c0,6, 0xf3ca6e0,2, 0xf3ca6ec,3, 0xf3ca700,8, 0xf3ca724,1, 0xf3ca800,20, 0xf3cac00,53, 0xf3cad00,53, 0xf3cae00,1, 0xf3cb000,40, 0xf3cb100,40, 0xf3cb200,1, 0xf3cb400,1, 0xf3cb804,1, 0xf3cb844,39, 0xf3cb900,3, 0xf3cba00,3, 0xf3cba44,1, 0xf3cba50,4, 0xf3cba80,1, 0xf3cc000,2, 0xf3cc200,27, 0xf3cc280,4, 0xf3cc2c0,25, 0xf3cc340,6, 0xf3cc360,2, 0xf3cc36c,3, 0xf3cc380,8, 0xf3cc3a4,1, 0xf3cc400,12, 0xf3cc440,1, 0xf3d0000,4, 0xf3d0020,3, 0xf3d0030,2, 0xf3d0200,1, 0xf3d0224,10, 0xf3d0250,5, 0xf3d0280,1, 0xf3d0288,24, 0xf3d0300,3, 0xf3d0404,1, 0xf3d0414,5, 0xf3d0500,36, 0xf3d0600,3, 0xf3d0800,2, 0xf3d1000,1, 0xf3d1008,21, 0xf3d1080,1, 0xf3d1088,21, 0xf3d1100,1, 0xf3d1108,21, 0xf3d1180,1, 0xf3d1188,21, 0xf3d1200,1, 0xf3d1208,21, 0xf3d1280,1, 0xf3d1288,21, 0xf3d1300,1, 0xf3d1308,21, 0xf3d1380,1, 0xf3d1388,21, 0xf3d1400,21, 0xf3d1800,142, 0xf3d1c00,1, 0xf3d2000,4, 0xf3d2100,39, 0xf3d2200,3, 0xf3d2214,3, 0xf3d4004,1, 0xf3d4020,16, 0xf3d4080,2, 0xf3d4094,1, 0xf3d409c,2, 0xf3d40c0,6, 0xf3d4100,8, 0xf3d8004,17, 0xf3d8054,1, 0xf3d805c,2, 0xf3d8080,1, 0xf3d80a0,2, 0xf3d80b4,4, 0xf3d8100,2, 0xf3d8200,8, 0xf3d8400,1, 0xf3d8600,27, 0xf3d8680,4, 0xf3d86c0,25, 0xf3d8740,6, 0xf3d8760,2, 0xf3d876c,3, 0xf3d8780,8, 0xf3d87a4,3, 0xf3d8800,44, 0xf3d8900,1, 0xf3e0000,1, 0xf3e0200,27, 0xf3e0280,4, 0xf3e02c0,25, 0xf3e0340,6, 0xf3e0360,2, 0xf3e036c,3, 0xf3e0380,8, 0xf3e03a4,1, 0xf3e0400,20, 0xf3e0480,3, 0xf3e0490,9, 0xf400000,198, 0xf400400,2, 0xf400440,9, 0xf400480,7, 0xf400800,198, 0xf400c00,2, 0xf400c40,9, 0xf400c80,7, 0xf401000,198, 0xf401400,198, 0xf401804,6, 0xf401824,6, 0xf401880,2, 0xf401904,1, 0xf401918,28, 0xf4019a0,6, 0xf4019c0,6, 0xf401c00,2, 0xf401d00,2, 0xf401e04,1, 0xf401e74,43, 0xf402000,2, 0xf402100,2, 0xf402204,1, 0xf402274,43, 0xf402400,3, 0xf402600,27, 0xf402680,4, 0xf4026c0,25, 0xf402740,6, 0xf402760,4, 0xf402774,11, 0xf4027a4,4, 0xf402800,4, 0xf402900,34, 0xf402a00,4, 0xf402b00,34, 0xf402c00,3, 0xf402c10,12, 0xf402e00,56, 0xf402ee4,4, 0xf402f00,4, 0xf403000,1, 0xf408000,4, 0xf408100,42, 0xf408200,1, 0xf408210,3, 0xf408220,3, 0xf408230,3, 0xf408240,1, 0xf408248,3, 0xf408400,4, 0xf408500,58, 0xf408600,1, 0xf408610,3, 0xf408620,3, 0xf408630,3, 0xf408640,1, 0xf408648,3, 0xf408800,4, 0xf408900,36, 0xf408a00,1, 0xf408c00,4, 0xf408c80,27, 0xf408d00,1, 0xf408d10,3, 0xf408d20,3, 0xf408d30,3, 0xf408d40,1, 0xf408d48,3, 0xf408e00,4, 0xf408e80,31, 0xf408f00,1, 0xf408f10,3, 0xf408f20,3, 0xf408f30,3, 0xf408f40,1, 0xf408f48,3, 0xf409000,4, 0xf409040,13, 0xf409080,1, 0xf409200,15, 0xf409240,4, 0xf409260,17, 0xf4092c0,6, 0xf4092e0,2, 0xf4092ec,3, 0xf409300,8, 0xf409324,8, 0xf409400,68, 0xf409600,60, 0xf409700,4, 0xf409720,5, 0xf409740,1, 0xf409780,2, 0xf40978c,2, 0xf4097a0,1, 0xf4097c0,12, 0xf409800,7, 0xf409820,5, 0xf409900,49, 0xf409a00,1, 0xf409a08,23, 0xf409a84,1, 0xf409a8c,1, 0xf409a94,1, 0xf409a9c,2, 0xf409ac0,1, 0xf409c00,10, 0xf409c40,1, 0xf409c50,3, 0xf409c80,10, 0xf409cc0,12, 0xf409d00,3, 0xf409e00,1, 0xf40a000,4, 0xf40a100,42, 0xf40a200,1, 0xf40a210,3, 0xf40a220,3, 0xf40a230,3, 0xf40a240,1, 0xf40a248,3, 0xf40a400,4, 0xf40a500,58, 0xf40a600,1, 0xf40a610,3, 0xf40a620,3, 0xf40a630,3, 0xf40a640,1, 0xf40a648,3, 0xf40a800,4, 0xf40a900,36, 0xf40aa00,1, 0xf40ac00,4, 0xf40ac80,27, 0xf40ad00,1, 0xf40ad10,3, 0xf40ad20,3, 0xf40ad30,3, 0xf40ad40,1, 0xf40ad48,3, 0xf40ae00,4, 0xf40ae80,31, 0xf40af00,1, 0xf40af10,3, 0xf40af20,3, 0xf40af30,3, 0xf40af40,1, 0xf40af48,3, 0xf40b000,4, 0xf40b040,13, 0xf40b080,1, 0xf40b200,15, 0xf40b240,4, 0xf40b260,17, 0xf40b2c0,6, 0xf40b2e0,2, 0xf40b2ec,3, 0xf40b300,8, 0xf40b324,8, 0xf40b400,68, 0xf40b600,60, 0xf40b700,4, 0xf40b720,5, 0xf40b740,1, 0xf40b780,2, 0xf40b78c,2, 0xf40b7a0,1, 0xf40b7c0,12, 0xf40b800,7, 0xf40b820,5, 0xf40b900,49, 0xf40ba00,1, 0xf40ba08,23, 0xf40ba84,1, 0xf40ba8c,1, 0xf40ba94,1, 0xf40ba9c,2, 0xf40bac0,1, 0xf40bc00,10, 0xf40bc40,1, 0xf40bc50,3, 0xf40bc80,10, 0xf40bcc0,12, 0xf40bd00,3, 0xf40be00,1, 0xf40c000,20, 0xf40c080,3, 0xf40c090,1, 0xf40c098,4, 0xf410000,49, 0xf410100,12, 0xf410140,4, 0xf410184,1, 0xf410198,2, 0xf4101a4,1, 0xf4101b8,7, 0xf4101e0,4, 0xf410200,20, 0xf410280,3, 0xf410290,9, 0xf4102c0,6, 0xf4102e0,1, 0xf4102e8,7, 0xf410400,49, 0xf410500,12, 0xf410540,4, 0xf410584,1, 0xf410598,2, 0xf4105a4,1, 0xf4105b8,7, 0xf4105e0,4, 0xf410600,20, 0xf410680,3, 0xf410690,9, 0xf4106c0,6, 0xf4106e0,1, 0xf4106e8,7, 0xf410800,49, 0xf410900,12, 0xf410940,4, 0xf410984,1, 0xf410998,2, 0xf4109a4,1, 0xf4109b8,7, 0xf4109e0,4, 0xf410a00,20, 0xf410a80,3, 0xf410a90,9, 0xf410ac0,6, 0xf410ae0,1, 0xf410ae8,7, 0xf410c00,49, 0xf410d00,12, 0xf410d40,4, 0xf410d84,1, 0xf410d98,2, 0xf410da4,1, 0xf410db8,7, 0xf410de0,4, 0xf410e00,20, 0xf410e80,3, 0xf410e90,9, 0xf410ec0,6, 0xf410ee0,1, 0xf410ee8,7, 0xf411000,49, 0xf411100,12, 0xf411140,4, 0xf411184,1, 0xf411198,2, 0xf4111a4,1, 0xf4111b8,7, 0xf4111e0,4, 0xf411200,20, 0xf411280,3, 0xf411290,9, 0xf4112c0,6, 0xf4112e0,1, 0xf4112e8,7, 0xf411400,49, 0xf411500,12, 0xf411540,4, 0xf411584,1, 0xf411598,2, 0xf4115a4,1, 0xf4115b8,7, 0xf4115e0,4, 0xf411600,20, 0xf411680,3, 0xf411690,9, 0xf4116c0,6, 0xf4116e0,1, 0xf4116e8,7, 0xf411800,49, 0xf411900,12, 0xf411940,4, 0xf411984,1, 0xf411998,2, 0xf4119a4,1, 0xf4119b8,7, 0xf4119e0,4, 0xf411a00,20, 0xf411a80,3, 0xf411a90,9, 0xf411ac0,6, 0xf411ae0,1, 0xf411ae8,7, 0xf412000,20, 0xf412080,10, 0xf412100,20, 0xf412180,10, 0xf412200,12, 0xf412400,20, 0xf412480,10, 0xf412500,20, 0xf412580,10, 0xf412600,12, 0xf412800,3, 0xf412840,12, 0xf412880,12, 0xf4128c0,12, 0xf412900,12, 0xf412940,12, 0xf412980,12, 0xf4129c0,12, 0xf412a00,12, 0xf412c00,12, 0xf412c40,7, 0xf412c60,10, 0xf413004,1, 0xf413044,43, 0xf413100,7, 0xf413120,7, 0xf413140,2, 0xf41314c,2, 0xf413160,2, 0xf41316c,2, 0xf413180,18, 0xf413200,2, 0xf413220,10, 0xf413260,20, 0xf4132c0,9, 0xf413300,15, 0xf413340,9, 0xf413380,6, 0xf4133a0,4, 0xf413400,5, 0xf414000,53, 0xf414100,3, 0xf414110,15, 0xf414200,53, 0xf414300,3, 0xf414310,15, 0xf414400,5, 0xf414420,5, 0xf414440,18, 0xf414800,3, 0xf414810,2, 0xf414820,3, 0xf414830,2, 0xf414840,1, 0xf415000,7, 0xf415020,7, 0xf415080,19, 0xf415100,19, 0xf415180,25, 0xf415200,20, 0xf415280,20, 0xf415300,8, 0xf415340,4, 0xf415380,15, 0xf4153c0,15, 0xf415400,9, 0xf415430,5, 0xf416000,6, 0xf416020,1, 0xf416028,2, 0xf416040,11, 0xf416070,2, 0xf418000,82, 0xf418200,2, 0xf418240,9, 0xf418280,7, 0xf418400,82, 0xf418604,6, 0xf418700,15, 0xf418740,9, 0xf418780,6, 0xf4187a0,6, 0xf418800,2, 0xf418810,3, 0xf418880,24, 0xf4188e4,1, 0xf4188f0,12, 0xf420000,22, 0xf420080,22, 0xf420100,5, 0xf420120,5, 0xf420140,3, 0xf420160,16, 0xf4201c0,7, 0xf4201e0,2, 0xf420200,7, 0xf420220,2, 0xf420400,15, 0xf420440,3, 0xf420450,3, 0xf420460,24, 0xf420500,15, 0xf420540,3, 0xf420550,3, 0xf420560,24, 0xf420600,15, 0xf420640,3, 0xf420650,3, 0xf420660,24, 0xf420700,15, 0xf420740,3, 0xf420750,3, 0xf420760,24, 0xf420800,4, 0xf420820,16, 0xf420880,10, 0xf4208c0,10, 0xf420900,6, 0xf420920,6, 0xf420940,4, 0xf420980,13, 0xf4209c0,13, 0xf420a00,9, 0xf421000,86, 0xf421200,2, 0xf421240,9, 0xf421280,7, 0xf421400,86, 0xf421604,6, 0xf421800,86, 0xf421a00,2, 0xf421a40,9, 0xf421a80,7, 0xf421c00,86, 0xf421e04,6, 0xf422000,15, 0xf422040,4, 0xf422060,17, 0xf4220c0,6, 0xf4220e0,4, 0xf4220f4,11, 0xf422128,38, 0xf4221c4,2, 0xf4221d0,4, 0xf422200,1, 0xf424000,22, 0xf424080,22, 0xf424100,5, 0xf424120,5, 0xf424140,3, 0xf424160,16, 0xf4241c0,7, 0xf4241e0,2, 0xf424200,7, 0xf424220,2, 0xf424400,15, 0xf424440,3, 0xf424450,3, 0xf424460,24, 0xf424500,15, 0xf424540,3, 0xf424550,3, 0xf424560,24, 0xf424600,15, 0xf424640,3, 0xf424650,3, 0xf424660,24, 0xf424700,15, 0xf424740,3, 0xf424750,3, 0xf424760,24, 0xf424800,4, 0xf424820,16, 0xf424880,10, 0xf4248c0,10, 0xf424900,6, 0xf424920,6, 0xf424940,4, 0xf424980,13, 0xf4249c0,13, 0xf424a00,9, 0xf425000,86, 0xf425200,2, 0xf425240,9, 0xf425280,7, 0xf425400,86, 0xf425604,6, 0xf425800,86, 0xf425a00,2, 0xf425a40,9, 0xf425a80,7, 0xf425c00,86, 0xf425e04,6, 0xf426000,15, 0xf426040,4, 0xf426060,17, 0xf4260c0,6, 0xf4260e0,4, 0xf4260f4,11, 0xf426128,38, 0xf4261c4,2, 0xf4261d0,4, 0xf426200,1, 0xf428000,9, 0xf428040,9, 0xf428080,5, 0xf428100,21, 0xf428160,5, 0xf428180,45, 0xf428240,13, 0xf428280,9, 0xf428400,9, 0xf428440,9, 0xf428480,5, 0xf428500,21, 0xf428560,5, 0xf428580,45, 0xf428640,13, 0xf428680,9, 0xf428800,12, 0xf428900,15, 0xf428940,4, 0xf428960,17, 0xf4289c0,6, 0xf4289e0,4, 0xf4289f4,29, 0xf42c000,30, 0xf42c080,3, 0xf42c090,19, 0xf42c100,30, 0xf42c180,3, 0xf42c190,19, 0xf42c200,30, 0xf42c280,3, 0xf42c290,19, 0xf42c300,30, 0xf42c380,3, 0xf42c390,19, 0xf42c400,30, 0xf42c480,3, 0xf42c490,19, 0xf42c500,30, 0xf42c580,3, 0xf42c590,19, 0xf42c600,30, 0xf42c680,3, 0xf42c690,19, 0xf42c700,30, 0xf42c780,3, 0xf42c790,19, 0xf42c800,12, 0xf42c844,1, 0xf42c854,8, 0xf42c880,7, 0xf42c8a0,2, 0xf42c8ac,2, 0xf42c8c0,26, 0xf42c980,4, 0xf42c9a0,5, 0xf42c9c0,1, 0xf42d000,3, 0xf42d010,3, 0xf42d020,3, 0xf42d030,3, 0xf42d040,3, 0xf42d050,3, 0xf42d060,3, 0xf42d070,3, 0xf42d080,6, 0xf42d0a0,6, 0xf42d0c0,6, 0xf42d0e0,6, 0xf42d100,6, 0xf42d120,6, 0xf42d140,6, 0xf42d160,6, 0xf42d200,68, 0xf42d400,1, 0xf42d804,1, 0xf42d844,54, 0xf42da00,12, 0xf42da40,12, 0xf42da80,12, 0xf42dac0,12, 0xf42db00,12, 0xf42db40,12, 0xf42db80,12, 0xf42dbc0,12, 0xf42dc00,28, 0xf42dc80,10, 0xf42e000,3, 0xf42e020,6, 0xf42e040,6, 0xf42e060,15, 0xf42e100,26, 0xf42e180,15, 0xf42e200,15, 0xf42e240,4, 0xf42e260,17, 0xf42e2c0,6, 0xf42e2e0,4, 0xf42e2f4,18, 0xf42e340,4, 0xf42e360,17, 0xf42e3c0,6, 0xf42e3e0,4, 0xf42e3f4,15, 0xf430000,1, 0xf431000,1020, 0xf432000,194, 0xf433000,1020, 0xf434000,1020, 0xf435000,1020, 0xf436000,1020, 0xf437000,1020, 0xf438000,1020, 0xf439000,1020, 0xf43a000,1020, 0xf43b000,194, 0xf43c000,3, 0xf43c010,13, 0xf43c080,16, 0xf43c100,20, 0xf43c184,1, 0xf43c18c,4, 0xf43c200,3, 0xf43c210,13, 0xf43c280,16, 0xf43c300,20, 0xf43c384,1, 0xf43c38c,4, 0xf43c400,3, 0xf43c410,13, 0xf43c480,16, 0xf43c500,20, 0xf43c584,1, 0xf43c58c,4, 0xf43c600,3, 0xf43c610,13, 0xf43c680,16, 0xf43c700,20, 0xf43c784,1, 0xf43c78c,4, 0xf43c800,3, 0xf43c810,13, 0xf43c880,16, 0xf43c900,20, 0xf43c984,1, 0xf43c98c,4, 0xf43ca00,3, 0xf43ca10,13, 0xf43ca80,16, 0xf43cb00,20, 0xf43cb84,1, 0xf43cb8c,4, 0xf43cc00,3, 0xf43cc10,13, 0xf43cc80,16, 0xf43cd00,20, 0xf43cd84,1, 0xf43cd8c,4, 0xf43ce00,3, 0xf43ce10,13, 0xf43ce80,16, 0xf43cf00,20, 0xf43cf84,1, 0xf43cf8c,4, 0xf43d000,3, 0xf43d010,13, 0xf43d080,16, 0xf43d100,20, 0xf43d184,1, 0xf43d18c,4, 0xf43d200,18, 0xf43d250,2, 0xf43d260,4, 0xf43e000,1, 0xf43e014,1, 0xf43e01c,19, 0xf43e080,1, 0xf43e094,1, 0xf43e09c,19, 0xf43e100,8, 0xf43e200,13, 0xf43e240,9, 0xf43e280,12, 0xf43e2c0,2, 0xf43e2e0,12, 0xf440000,3, 0xf440080,20, 0xf440100,10, 0xf440140,1, 0xf440154,1, 0xf44015c,2, 0xf440200,15, 0xf440240,4, 0xf440260,17, 0xf4402c0,6, 0xf4402e0,2, 0xf4402ec,3, 0xf440300,8, 0xf440324,1, 0xf440400,4, 0xf440440,20, 0xf4404c0,9, 0xf440500,33, 0xf440600,11, 0xf440640,11, 0xf440680,1, 0xf442000,1, 0xf442200,4, 0xf442300,53, 0xf442400,4, 0xf442500,40, 0xf442600,15, 0xf442640,4, 0xf442660,17, 0xf4426c0,6, 0xf4426e0,2, 0xf4426ec,3, 0xf442700,8, 0xf442724,1, 0xf442800,20, 0xf442c00,53, 0xf442d00,53, 0xf442e00,1, 0xf443000,40, 0xf443100,40, 0xf443200,1, 0xf443400,1, 0xf443804,1, 0xf443844,39, 0xf443900,3, 0xf443a00,3, 0xf443a44,1, 0xf443a50,4, 0xf443a80,1, 0xf444000,2, 0xf444200,27, 0xf444280,4, 0xf4442c0,25, 0xf444340,6, 0xf444360,2, 0xf44436c,3, 0xf444380,8, 0xf4443a4,1, 0xf444400,12, 0xf444440,1, 0xf448000,3, 0xf448080,20, 0xf448100,10, 0xf448140,1, 0xf448154,1, 0xf44815c,2, 0xf448200,15, 0xf448240,4, 0xf448260,17, 0xf4482c0,6, 0xf4482e0,2, 0xf4482ec,3, 0xf448300,8, 0xf448324,1, 0xf448400,4, 0xf448440,20, 0xf4484c0,9, 0xf448500,33, 0xf448600,11, 0xf448640,11, 0xf448680,1, 0xf44a000,1, 0xf44a200,4, 0xf44a300,53, 0xf44a400,4, 0xf44a500,40, 0xf44a600,15, 0xf44a640,4, 0xf44a660,17, 0xf44a6c0,6, 0xf44a6e0,2, 0xf44a6ec,3, 0xf44a700,8, 0xf44a724,1, 0xf44a800,20, 0xf44ac00,53, 0xf44ad00,53, 0xf44ae00,1, 0xf44b000,40, 0xf44b100,40, 0xf44b200,1, 0xf44b400,1, 0xf44b804,1, 0xf44b844,39, 0xf44b900,3, 0xf44ba00,3, 0xf44ba44,1, 0xf44ba50,4, 0xf44ba80,1, 0xf44c000,2, 0xf44c200,27, 0xf44c280,4, 0xf44c2c0,25, 0xf44c340,6, 0xf44c360,2, 0xf44c36c,3, 0xf44c380,8, 0xf44c3a4,1, 0xf44c400,12, 0xf44c440,1, 0xf450000,4, 0xf450020,3, 0xf450030,2, 0xf450200,1, 0xf450224,10, 0xf450250,5, 0xf450280,1, 0xf450288,24, 0xf450300,3, 0xf450404,1, 0xf450414,5, 0xf450500,36, 0xf450600,3, 0xf450800,2, 0xf451000,1, 0xf451008,21, 0xf451080,1, 0xf451088,21, 0xf451100,1, 0xf451108,21, 0xf451180,1, 0xf451188,21, 0xf451200,1, 0xf451208,21, 0xf451280,1, 0xf451288,21, 0xf451300,1, 0xf451308,21, 0xf451380,1, 0xf451388,21, 0xf451400,21, 0xf451800,142, 0xf451c00,1, 0xf452000,4, 0xf452100,39, 0xf452200,3, 0xf452214,3, 0xf454004,1, 0xf454020,16, 0xf454080,2, 0xf454094,1, 0xf45409c,2, 0xf4540c0,6, 0xf454100,8, 0xf458004,17, 0xf458054,1, 0xf45805c,2, 0xf458080,1, 0xf4580a0,2, 0xf4580b4,4, 0xf458100,2, 0xf458200,8, 0xf458400,1, 0xf458600,27, 0xf458680,4, 0xf4586c0,25, 0xf458740,6, 0xf458760,2, 0xf45876c,3, 0xf458780,8, 0xf4587a4,3, 0xf458800,44, 0xf458900,1, 0xf460000,1, 0xf460200,27, 0xf460280,4, 0xf4602c0,25, 0xf460340,6, 0xf460360,2, 0xf46036c,3, 0xf460380,8, 0xf4603a4,1, 0xf460400,20, 0xf460480,3, 0xf460490,9, 0xf480000,198, 0xf480400,2, 0xf480440,9, 0xf480480,7, 0xf480800,198, 0xf480c00,2, 0xf480c40,9, 0xf480c80,7, 0xf481000,198, 0xf481400,198, 0xf481804,6, 0xf481824,6, 0xf481880,2, 0xf481904,1, 0xf481918,28, 0xf4819a0,6, 0xf4819c0,6, 0xf481c00,2, 0xf481d00,2, 0xf481e04,1, 0xf481e74,43, 0xf482000,2, 0xf482100,2, 0xf482204,1, 0xf482274,43, 0xf482400,3, 0xf482600,27, 0xf482680,4, 0xf4826c0,25, 0xf482740,6, 0xf482760,4, 0xf482774,11, 0xf4827a4,4, 0xf482800,4, 0xf482900,34, 0xf482a00,4, 0xf482b00,34, 0xf482c00,3, 0xf482c10,12, 0xf482e00,56, 0xf482ee4,4, 0xf482f00,4, 0xf483000,1, 0xf488000,4, 0xf488100,42, 0xf488200,1, 0xf488210,3, 0xf488220,3, 0xf488230,3, 0xf488240,1, 0xf488248,3, 0xf488400,4, 0xf488500,58, 0xf488600,1, 0xf488610,3, 0xf488620,3, 0xf488630,3, 0xf488640,1, 0xf488648,3, 0xf488800,4, 0xf488900,36, 0xf488a00,1, 0xf488c00,4, 0xf488c80,27, 0xf488d00,1, 0xf488d10,3, 0xf488d20,3, 0xf488d30,3, 0xf488d40,1, 0xf488d48,3, 0xf488e00,4, 0xf488e80,31, 0xf488f00,1, 0xf488f10,3, 0xf488f20,3, 0xf488f30,3, 0xf488f40,1, 0xf488f48,3, 0xf489000,4, 0xf489040,13, 0xf489080,1, 0xf489200,15, 0xf489240,4, 0xf489260,17, 0xf4892c0,6, 0xf4892e0,2, 0xf4892ec,3, 0xf489300,8, 0xf489324,8, 0xf489400,68, 0xf489600,60, 0xf489700,4, 0xf489720,5, 0xf489740,1, 0xf489780,2, 0xf48978c,2, 0xf4897a0,1, 0xf4897c0,12, 0xf489800,7, 0xf489820,5, 0xf489900,49, 0xf489a00,1, 0xf489a08,23, 0xf489a84,1, 0xf489a8c,1, 0xf489a94,1, 0xf489a9c,2, 0xf489ac0,1, 0xf489c00,10, 0xf489c40,1, 0xf489c50,3, 0xf489c80,10, 0xf489cc0,12, 0xf489d00,3, 0xf489e00,1, 0xf48a000,4, 0xf48a100,42, 0xf48a200,1, 0xf48a210,3, 0xf48a220,3, 0xf48a230,3, 0xf48a240,1, 0xf48a248,3, 0xf48a400,4, 0xf48a500,58, 0xf48a600,1, 0xf48a610,3, 0xf48a620,3, 0xf48a630,3, 0xf48a640,1, 0xf48a648,3, 0xf48a800,4, 0xf48a900,36, 0xf48aa00,1, 0xf48ac00,4, 0xf48ac80,27, 0xf48ad00,1, 0xf48ad10,3, 0xf48ad20,3, 0xf48ad30,3, 0xf48ad40,1, 0xf48ad48,3, 0xf48ae00,4, 0xf48ae80,31, 0xf48af00,1, 0xf48af10,3, 0xf48af20,3, 0xf48af30,3, 0xf48af40,1, 0xf48af48,3, 0xf48b000,4, 0xf48b040,13, 0xf48b080,1, 0xf48b200,15, 0xf48b240,4, 0xf48b260,17, 0xf48b2c0,6, 0xf48b2e0,2, 0xf48b2ec,3, 0xf48b300,8, 0xf48b324,8, 0xf48b400,68, 0xf48b600,60, 0xf48b700,4, 0xf48b720,5, 0xf48b740,1, 0xf48b780,2, 0xf48b78c,2, 0xf48b7a0,1, 0xf48b7c0,12, 0xf48b800,7, 0xf48b820,5, 0xf48b900,49, 0xf48ba00,1, 0xf48ba08,23, 0xf48ba84,1, 0xf48ba8c,1, 0xf48ba94,1, 0xf48ba9c,2, 0xf48bac0,1, 0xf48bc00,10, 0xf48bc40,1, 0xf48bc50,3, 0xf48bc80,10, 0xf48bcc0,12, 0xf48bd00,3, 0xf48be00,1, 0xf48c000,20, 0xf48c080,3, 0xf48c090,1, 0xf48c098,4, 0xf490000,49, 0xf490100,12, 0xf490140,4, 0xf490184,1, 0xf490198,2, 0xf4901a4,1, 0xf4901b8,7, 0xf4901e0,4, 0xf490200,20, 0xf490280,3, 0xf490290,9, 0xf4902c0,6, 0xf4902e0,1, 0xf4902e8,7, 0xf490400,49, 0xf490500,12, 0xf490540,4, 0xf490584,1, 0xf490598,2, 0xf4905a4,1, 0xf4905b8,7, 0xf4905e0,4, 0xf490600,20, 0xf490680,3, 0xf490690,9, 0xf4906c0,6, 0xf4906e0,1, 0xf4906e8,7, 0xf490800,49, 0xf490900,12, 0xf490940,4, 0xf490984,1, 0xf490998,2, 0xf4909a4,1, 0xf4909b8,7, 0xf4909e0,4, 0xf490a00,20, 0xf490a80,3, 0xf490a90,9, 0xf490ac0,6, 0xf490ae0,1, 0xf490ae8,7, 0xf490c00,49, 0xf490d00,12, 0xf490d40,4, 0xf490d84,1, 0xf490d98,2, 0xf490da4,1, 0xf490db8,7, 0xf490de0,4, 0xf490e00,20, 0xf490e80,3, 0xf490e90,9, 0xf490ec0,6, 0xf490ee0,1, 0xf490ee8,7, 0xf491000,49, 0xf491100,12, 0xf491140,4, 0xf491184,1, 0xf491198,2, 0xf4911a4,1, 0xf4911b8,7, 0xf4911e0,4, 0xf491200,20, 0xf491280,3, 0xf491290,9, 0xf4912c0,6, 0xf4912e0,1, 0xf4912e8,7, 0xf491400,49, 0xf491500,12, 0xf491540,4, 0xf491584,1, 0xf491598,2, 0xf4915a4,1, 0xf4915b8,7, 0xf4915e0,4, 0xf491600,20, 0xf491680,3, 0xf491690,9, 0xf4916c0,6, 0xf4916e0,1, 0xf4916e8,7, 0xf491800,49, 0xf491900,12, 0xf491940,4, 0xf491984,1, 0xf491998,2, 0xf4919a4,1, 0xf4919b8,7, 0xf4919e0,4, 0xf491a00,20, 0xf491a80,3, 0xf491a90,9, 0xf491ac0,6, 0xf491ae0,1, 0xf491ae8,7, 0xf492000,20, 0xf492080,10, 0xf492100,20, 0xf492180,10, 0xf492200,12, 0xf492400,20, 0xf492480,10, 0xf492500,20, 0xf492580,10, 0xf492600,12, 0xf492800,3, 0xf492840,12, 0xf492880,12, 0xf4928c0,12, 0xf492900,12, 0xf492940,12, 0xf492980,12, 0xf4929c0,12, 0xf492a00,12, 0xf492c00,12, 0xf492c40,7, 0xf492c60,10, 0xf493004,1, 0xf493044,43, 0xf493100,7, 0xf493120,7, 0xf493140,2, 0xf49314c,2, 0xf493160,2, 0xf49316c,2, 0xf493180,18, 0xf493200,2, 0xf493220,10, 0xf493260,20, 0xf4932c0,9, 0xf493300,15, 0xf493340,9, 0xf493380,6, 0xf4933a0,4, 0xf493400,5, 0xf494000,53, 0xf494100,3, 0xf494110,15, 0xf494200,53, 0xf494300,3, 0xf494310,15, 0xf494400,5, 0xf494420,5, 0xf494440,18, 0xf494800,3, 0xf494810,2, 0xf494820,3, 0xf494830,2, 0xf494840,1, 0xf495000,7, 0xf495020,7, 0xf495080,19, 0xf495100,19, 0xf495180,25, 0xf495200,20, 0xf495280,20, 0xf495300,8, 0xf495340,4, 0xf495380,15, 0xf4953c0,15, 0xf495400,9, 0xf495430,5, 0xf496000,6, 0xf496020,1, 0xf496028,2, 0xf496040,11, 0xf496070,2, 0xf498000,82, 0xf498200,2, 0xf498240,9, 0xf498280,7, 0xf498400,82, 0xf498604,6, 0xf498700,15, 0xf498740,9, 0xf498780,6, 0xf4987a0,6, 0xf498800,2, 0xf498810,3, 0xf498880,24, 0xf4988e4,1, 0xf4988f0,12, 0xf4a0000,22, 0xf4a0080,22, 0xf4a0100,5, 0xf4a0120,5, 0xf4a0140,3, 0xf4a0160,16, 0xf4a01c0,7, 0xf4a01e0,2, 0xf4a0200,7, 0xf4a0220,2, 0xf4a0400,15, 0xf4a0440,3, 0xf4a0450,3, 0xf4a0460,24, 0xf4a0500,15, 0xf4a0540,3, 0xf4a0550,3, 0xf4a0560,24, 0xf4a0600,15, 0xf4a0640,3, 0xf4a0650,3, 0xf4a0660,24, 0xf4a0700,15, 0xf4a0740,3, 0xf4a0750,3, 0xf4a0760,24, 0xf4a0800,4, 0xf4a0820,16, 0xf4a0880,10, 0xf4a08c0,10, 0xf4a0900,6, 0xf4a0920,6, 0xf4a0940,4, 0xf4a0980,13, 0xf4a09c0,13, 0xf4a0a00,9, 0xf4a1000,86, 0xf4a1200,2, 0xf4a1240,9, 0xf4a1280,7, 0xf4a1400,86, 0xf4a1604,6, 0xf4a1800,86, 0xf4a1a00,2, 0xf4a1a40,9, 0xf4a1a80,7, 0xf4a1c00,86, 0xf4a1e04,6, 0xf4a2000,15, 0xf4a2040,4, 0xf4a2060,17, 0xf4a20c0,6, 0xf4a20e0,4, 0xf4a20f4,11, 0xf4a2128,38, 0xf4a21c4,2, 0xf4a21d0,4, 0xf4a2200,1, 0xf4a4000,22, 0xf4a4080,22, 0xf4a4100,5, 0xf4a4120,5, 0xf4a4140,3, 0xf4a4160,16, 0xf4a41c0,7, 0xf4a41e0,2, 0xf4a4200,7, 0xf4a4220,2, 0xf4a4400,15, 0xf4a4440,3, 0xf4a4450,3, 0xf4a4460,24, 0xf4a4500,15, 0xf4a4540,3, 0xf4a4550,3, 0xf4a4560,24, 0xf4a4600,15, 0xf4a4640,3, 0xf4a4650,3, 0xf4a4660,24, 0xf4a4700,15, 0xf4a4740,3, 0xf4a4750,3, 0xf4a4760,24, 0xf4a4800,4, 0xf4a4820,16, 0xf4a4880,10, 0xf4a48c0,10, 0xf4a4900,6, 0xf4a4920,6, 0xf4a4940,4, 0xf4a4980,13, 0xf4a49c0,13, 0xf4a4a00,9, 0xf4a5000,86, 0xf4a5200,2, 0xf4a5240,9, 0xf4a5280,7, 0xf4a5400,86, 0xf4a5604,6, 0xf4a5800,86, 0xf4a5a00,2, 0xf4a5a40,9, 0xf4a5a80,7, 0xf4a5c00,86, 0xf4a5e04,6, 0xf4a6000,15, 0xf4a6040,4, 0xf4a6060,17, 0xf4a60c0,6, 0xf4a60e0,4, 0xf4a60f4,11, 0xf4a6128,38, 0xf4a61c4,2, 0xf4a61d0,4, 0xf4a6200,1, 0xf4a8000,9, 0xf4a8040,9, 0xf4a8080,5, 0xf4a8100,21, 0xf4a8160,5, 0xf4a8180,45, 0xf4a8240,13, 0xf4a8280,9, 0xf4a8400,9, 0xf4a8440,9, 0xf4a8480,5, 0xf4a8500,21, 0xf4a8560,5, 0xf4a8580,45, 0xf4a8640,13, 0xf4a8680,9, 0xf4a8800,12, 0xf4a8900,15, 0xf4a8940,4, 0xf4a8960,17, 0xf4a89c0,6, 0xf4a89e0,4, 0xf4a89f4,29, 0xf4ac000,30, 0xf4ac080,3, 0xf4ac090,19, 0xf4ac100,30, 0xf4ac180,3, 0xf4ac190,19, 0xf4ac200,30, 0xf4ac280,3, 0xf4ac290,19, 0xf4ac300,30, 0xf4ac380,3, 0xf4ac390,19, 0xf4ac400,30, 0xf4ac480,3, 0xf4ac490,19, 0xf4ac500,30, 0xf4ac580,3, 0xf4ac590,19, 0xf4ac600,30, 0xf4ac680,3, 0xf4ac690,19, 0xf4ac700,30, 0xf4ac780,3, 0xf4ac790,19, 0xf4ac800,12, 0xf4ac844,1, 0xf4ac854,8, 0xf4ac880,7, 0xf4ac8a0,2, 0xf4ac8ac,2, 0xf4ac8c0,26, 0xf4ac980,4, 0xf4ac9a0,5, 0xf4ac9c0,1, 0xf4ad000,3, 0xf4ad010,3, 0xf4ad020,3, 0xf4ad030,3, 0xf4ad040,3, 0xf4ad050,3, 0xf4ad060,3, 0xf4ad070,3, 0xf4ad080,6, 0xf4ad0a0,6, 0xf4ad0c0,6, 0xf4ad0e0,6, 0xf4ad100,6, 0xf4ad120,6, 0xf4ad140,6, 0xf4ad160,6, 0xf4ad200,68, 0xf4ad400,1, 0xf4ad804,1, 0xf4ad844,54, 0xf4ada00,12, 0xf4ada40,12, 0xf4ada80,12, 0xf4adac0,12, 0xf4adb00,12, 0xf4adb40,12, 0xf4adb80,12, 0xf4adbc0,12, 0xf4adc00,28, 0xf4adc80,10, 0xf4ae000,3, 0xf4ae020,6, 0xf4ae040,6, 0xf4ae060,15, 0xf4ae100,26, 0xf4ae180,15, 0xf4ae200,15, 0xf4ae240,4, 0xf4ae260,17, 0xf4ae2c0,6, 0xf4ae2e0,4, 0xf4ae2f4,18, 0xf4ae340,4, 0xf4ae360,17, 0xf4ae3c0,6, 0xf4ae3e0,4, 0xf4ae3f4,15, 0xf4b0000,1, 0xf4b1000,1020, 0xf4b2000,194, 0xf4b3000,1020, 0xf4b4000,1020, 0xf4b5000,1020, 0xf4b6000,1020, 0xf4b7000,1020, 0xf4b8000,1020, 0xf4b9000,1020, 0xf4ba000,1020, 0xf4bb000,194, 0xf4bc000,3, 0xf4bc010,13, 0xf4bc080,16, 0xf4bc100,20, 0xf4bc184,1, 0xf4bc18c,4, 0xf4bc200,3, 0xf4bc210,13, 0xf4bc280,16, 0xf4bc300,20, 0xf4bc384,1, 0xf4bc38c,4, 0xf4bc400,3, 0xf4bc410,13, 0xf4bc480,16, 0xf4bc500,20, 0xf4bc584,1, 0xf4bc58c,4, 0xf4bc600,3, 0xf4bc610,13, 0xf4bc680,16, 0xf4bc700,20, 0xf4bc784,1, 0xf4bc78c,4, 0xf4bc800,3, 0xf4bc810,13, 0xf4bc880,16, 0xf4bc900,20, 0xf4bc984,1, 0xf4bc98c,4, 0xf4bca00,3, 0xf4bca10,13, 0xf4bca80,16, 0xf4bcb00,20, 0xf4bcb84,1, 0xf4bcb8c,4, 0xf4bcc00,3, 0xf4bcc10,13, 0xf4bcc80,16, 0xf4bcd00,20, 0xf4bcd84,1, 0xf4bcd8c,4, 0xf4bce00,3, 0xf4bce10,13, 0xf4bce80,16, 0xf4bcf00,20, 0xf4bcf84,1, 0xf4bcf8c,4, 0xf4bd000,3, 0xf4bd010,13, 0xf4bd080,16, 0xf4bd100,20, 0xf4bd184,1, 0xf4bd18c,4, 0xf4bd200,18, 0xf4bd250,2, 0xf4bd260,4, 0xf4be000,1, 0xf4be014,1, 0xf4be01c,19, 0xf4be080,1, 0xf4be094,1, 0xf4be09c,19, 0xf4be100,8, 0xf4be200,13, 0xf4be240,9, 0xf4be280,12, 0xf4be2c0,2, 0xf4be2e0,12, 0xf4c0000,3, 0xf4c0080,20, 0xf4c0100,10, 0xf4c0140,1, 0xf4c0154,1, 0xf4c015c,2, 0xf4c0200,15, 0xf4c0240,4, 0xf4c0260,17, 0xf4c02c0,6, 0xf4c02e0,2, 0xf4c02ec,3, 0xf4c0300,8, 0xf4c0324,1, 0xf4c0400,4, 0xf4c0440,20, 0xf4c04c0,9, 0xf4c0500,33, 0xf4c0600,11, 0xf4c0640,11, 0xf4c0680,1, 0xf4c2000,1, 0xf4c2200,4, 0xf4c2300,53, 0xf4c2400,4, 0xf4c2500,40, 0xf4c2600,15, 0xf4c2640,4, 0xf4c2660,17, 0xf4c26c0,6, 0xf4c26e0,2, 0xf4c26ec,3, 0xf4c2700,8, 0xf4c2724,1, 0xf4c2800,20, 0xf4c2c00,53, 0xf4c2d00,53, 0xf4c2e00,1, 0xf4c3000,40, 0xf4c3100,40, 0xf4c3200,1, 0xf4c3400,1, 0xf4c3804,1, 0xf4c3844,39, 0xf4c3900,3, 0xf4c3a00,3, 0xf4c3a44,1, 0xf4c3a50,4, 0xf4c3a80,1, 0xf4c4000,2, 0xf4c4200,27, 0xf4c4280,4, 0xf4c42c0,25, 0xf4c4340,6, 0xf4c4360,2, 0xf4c436c,3, 0xf4c4380,8, 0xf4c43a4,1, 0xf4c4400,12, 0xf4c4440,1, 0xf4c8000,3, 0xf4c8080,20, 0xf4c8100,10, 0xf4c8140,1, 0xf4c8154,1, 0xf4c815c,2, 0xf4c8200,15, 0xf4c8240,4, 0xf4c8260,17, 0xf4c82c0,6, 0xf4c82e0,2, 0xf4c82ec,3, 0xf4c8300,8, 0xf4c8324,1, 0xf4c8400,4, 0xf4c8440,20, 0xf4c84c0,9, 0xf4c8500,33, 0xf4c8600,11, 0xf4c8640,11, 0xf4c8680,1, 0xf4ca000,1, 0xf4ca200,4, 0xf4ca300,53, 0xf4ca400,4, 0xf4ca500,40, 0xf4ca600,15, 0xf4ca640,4, 0xf4ca660,17, 0xf4ca6c0,6, 0xf4ca6e0,2, 0xf4ca6ec,3, 0xf4ca700,8, 0xf4ca724,1, 0xf4ca800,20, 0xf4cac00,53, 0xf4cad00,53, 0xf4cae00,1, 0xf4cb000,40, 0xf4cb100,40, 0xf4cb200,1, 0xf4cb400,1, 0xf4cb804,1, 0xf4cb844,39, 0xf4cb900,3, 0xf4cba00,3, 0xf4cba44,1, 0xf4cba50,4, 0xf4cba80,1, 0xf4cc000,2, 0xf4cc200,27, 0xf4cc280,4, 0xf4cc2c0,25, 0xf4cc340,6, 0xf4cc360,2, 0xf4cc36c,3, 0xf4cc380,8, 0xf4cc3a4,1, 0xf4cc400,12, 0xf4cc440,1, 0xf4d0000,4, 0xf4d0020,3, 0xf4d0030,2, 0xf4d0200,1, 0xf4d0224,10, 0xf4d0250,5, 0xf4d0280,1, 0xf4d0288,24, 0xf4d0300,3, 0xf4d0404,1, 0xf4d0414,5, 0xf4d0500,36, 0xf4d0600,3, 0xf4d0800,2, 0xf4d1000,1, 0xf4d1008,21, 0xf4d1080,1, 0xf4d1088,21, 0xf4d1100,1, 0xf4d1108,21, 0xf4d1180,1, 0xf4d1188,21, 0xf4d1200,1, 0xf4d1208,21, 0xf4d1280,1, 0xf4d1288,21, 0xf4d1300,1, 0xf4d1308,21, 0xf4d1380,1, 0xf4d1388,21, 0xf4d1400,21, 0xf4d1800,142, 0xf4d1c00,1, 0xf4d2000,4, 0xf4d2100,39, 0xf4d2200,3, 0xf4d2214,3, 0xf4d4004,1, 0xf4d4020,16, 0xf4d4080,2, 0xf4d4094,1, 0xf4d409c,2, 0xf4d40c0,6, 0xf4d4100,8, 0xf4d8004,17, 0xf4d8054,1, 0xf4d805c,2, 0xf4d8080,1, 0xf4d80a0,2, 0xf4d80b4,4, 0xf4d8100,2, 0xf4d8200,8, 0xf4d8400,1, 0xf4d8600,27, 0xf4d8680,4, 0xf4d86c0,25, 0xf4d8740,6, 0xf4d8760,2, 0xf4d876c,3, 0xf4d8780,8, 0xf4d87a4,3, 0xf4d8800,44, 0xf4d8900,1, 0xf4e0000,1, 0xf4e0200,27, 0xf4e0280,4, 0xf4e02c0,25, 0xf4e0340,6, 0xf4e0360,2, 0xf4e036c,3, 0xf4e0380,8, 0xf4e03a4,1, 0xf4e0400,20, 0xf4e0480,3, 0xf4e0490,9, 0xf500000,198, 0xf500400,2, 0xf500440,9, 0xf500480,7, 0xf500800,198, 0xf500c00,2, 0xf500c40,9, 0xf500c80,7, 0xf501000,198, 0xf501400,198, 0xf501804,6, 0xf501824,6, 0xf501880,2, 0xf501904,1, 0xf501918,28, 0xf5019a0,6, 0xf5019c0,6, 0xf501c00,2, 0xf501d00,2, 0xf501e04,1, 0xf501e74,43, 0xf502000,2, 0xf502100,2, 0xf502204,1, 0xf502274,43, 0xf502400,3, 0xf502600,27, 0xf502680,4, 0xf5026c0,25, 0xf502740,6, 0xf502760,4, 0xf502774,11, 0xf5027a4,4, 0xf502800,4, 0xf502900,34, 0xf502a00,4, 0xf502b00,34, 0xf502c00,3, 0xf502c10,12, 0xf502e00,56, 0xf502ee4,4, 0xf502f00,4, 0xf503000,1, 0xf508000,4, 0xf508100,42, 0xf508200,1, 0xf508210,3, 0xf508220,3, 0xf508230,3, 0xf508240,1, 0xf508248,3, 0xf508400,4, 0xf508500,58, 0xf508600,1, 0xf508610,3, 0xf508620,3, 0xf508630,3, 0xf508640,1, 0xf508648,3, 0xf508800,4, 0xf508900,36, 0xf508a00,1, 0xf508c00,4, 0xf508c80,27, 0xf508d00,1, 0xf508d10,3, 0xf508d20,3, 0xf508d30,3, 0xf508d40,1, 0xf508d48,3, 0xf508e00,4, 0xf508e80,31, 0xf508f00,1, 0xf508f10,3, 0xf508f20,3, 0xf508f30,3, 0xf508f40,1, 0xf508f48,3, 0xf509000,4, 0xf509040,13, 0xf509080,1, 0xf509200,15, 0xf509240,4, 0xf509260,17, 0xf5092c0,6, 0xf5092e0,2, 0xf5092ec,3, 0xf509300,8, 0xf509324,8, 0xf509400,68, 0xf509600,60, 0xf509700,4, 0xf509720,5, 0xf509740,1, 0xf509780,2, 0xf50978c,2, 0xf5097a0,1, 0xf5097c0,12, 0xf509800,7, 0xf509820,5, 0xf509900,49, 0xf509a00,1, 0xf509a08,23, 0xf509a84,1, 0xf509a8c,1, 0xf509a94,1, 0xf509a9c,2, 0xf509ac0,1, 0xf509c00,10, 0xf509c40,1, 0xf509c50,3, 0xf509c80,10, 0xf509cc0,12, 0xf509d00,3, 0xf509e00,1, 0xf50a000,4, 0xf50a100,42, 0xf50a200,1, 0xf50a210,3, 0xf50a220,3, 0xf50a230,3, 0xf50a240,1, 0xf50a248,3, 0xf50a400,4, 0xf50a500,58, 0xf50a600,1, 0xf50a610,3, 0xf50a620,3, 0xf50a630,3, 0xf50a640,1, 0xf50a648,3, 0xf50a800,4, 0xf50a900,36, 0xf50aa00,1, 0xf50ac00,4, 0xf50ac80,27, 0xf50ad00,1, 0xf50ad10,3, 0xf50ad20,3, 0xf50ad30,3, 0xf50ad40,1, 0xf50ad48,3, 0xf50ae00,4, 0xf50ae80,31, 0xf50af00,1, 0xf50af10,3, 0xf50af20,3, 0xf50af30,3, 0xf50af40,1, 0xf50af48,3, 0xf50b000,4, 0xf50b040,13, 0xf50b080,1, 0xf50b200,15, 0xf50b240,4, 0xf50b260,17, 0xf50b2c0,6, 0xf50b2e0,2, 0xf50b2ec,3, 0xf50b300,8, 0xf50b324,8, 0xf50b400,68, 0xf50b600,60, 0xf50b700,4, 0xf50b720,5, 0xf50b740,1, 0xf50b780,2, 0xf50b78c,2, 0xf50b7a0,1, 0xf50b7c0,12, 0xf50b800,7, 0xf50b820,5, 0xf50b900,49, 0xf50ba00,1, 0xf50ba08,23, 0xf50ba84,1, 0xf50ba8c,1, 0xf50ba94,1, 0xf50ba9c,2, 0xf50bac0,1, 0xf50bc00,10, 0xf50bc40,1, 0xf50bc50,3, 0xf50bc80,10, 0xf50bcc0,12, 0xf50bd00,3, 0xf50be00,1, 0xf50c000,20, 0xf50c080,3, 0xf50c090,1, 0xf50c098,4, 0xf510000,49, 0xf510100,12, 0xf510140,4, 0xf510184,1, 0xf510198,2, 0xf5101a4,1, 0xf5101b8,7, 0xf5101e0,4, 0xf510200,20, 0xf510280,3, 0xf510290,9, 0xf5102c0,6, 0xf5102e0,1, 0xf5102e8,7, 0xf510400,49, 0xf510500,12, 0xf510540,4, 0xf510584,1, 0xf510598,2, 0xf5105a4,1, 0xf5105b8,7, 0xf5105e0,4, 0xf510600,20, 0xf510680,3, 0xf510690,9, 0xf5106c0,6, 0xf5106e0,1, 0xf5106e8,7, 0xf510800,49, 0xf510900,12, 0xf510940,4, 0xf510984,1, 0xf510998,2, 0xf5109a4,1, 0xf5109b8,7, 0xf5109e0,4, 0xf510a00,20, 0xf510a80,3, 0xf510a90,9, 0xf510ac0,6, 0xf510ae0,1, 0xf510ae8,7, 0xf510c00,49, 0xf510d00,12, 0xf510d40,4, 0xf510d84,1, 0xf510d98,2, 0xf510da4,1, 0xf510db8,7, 0xf510de0,4, 0xf510e00,20, 0xf510e80,3, 0xf510e90,9, 0xf510ec0,6, 0xf510ee0,1, 0xf510ee8,7, 0xf511000,49, 0xf511100,12, 0xf511140,4, 0xf511184,1, 0xf511198,2, 0xf5111a4,1, 0xf5111b8,7, 0xf5111e0,4, 0xf511200,20, 0xf511280,3, 0xf511290,9, 0xf5112c0,6, 0xf5112e0,1, 0xf5112e8,7, 0xf511400,49, 0xf511500,12, 0xf511540,4, 0xf511584,1, 0xf511598,2, 0xf5115a4,1, 0xf5115b8,7, 0xf5115e0,4, 0xf511600,20, 0xf511680,3, 0xf511690,9, 0xf5116c0,6, 0xf5116e0,1, 0xf5116e8,7, 0xf511800,49, 0xf511900,12, 0xf511940,4, 0xf511984,1, 0xf511998,2, 0xf5119a4,1, 0xf5119b8,7, 0xf5119e0,4, 0xf511a00,20, 0xf511a80,3, 0xf511a90,9, 0xf511ac0,6, 0xf511ae0,1, 0xf511ae8,7, 0xf512000,20, 0xf512080,10, 0xf512100,20, 0xf512180,10, 0xf512200,12, 0xf512400,20, 0xf512480,10, 0xf512500,20, 0xf512580,10, 0xf512600,12, 0xf512800,3, 0xf512840,12, 0xf512880,12, 0xf5128c0,12, 0xf512900,12, 0xf512940,12, 0xf512980,12, 0xf5129c0,12, 0xf512a00,12, 0xf512c00,12, 0xf512c40,7, 0xf512c60,10, 0xf513004,1, 0xf513044,43, 0xf513100,7, 0xf513120,7, 0xf513140,2, 0xf51314c,2, 0xf513160,2, 0xf51316c,2, 0xf513180,18, 0xf513200,2, 0xf513220,10, 0xf513260,20, 0xf5132c0,9, 0xf513300,15, 0xf513340,9, 0xf513380,6, 0xf5133a0,4, 0xf513400,5, 0xf514000,53, 0xf514100,3, 0xf514110,15, 0xf514200,53, 0xf514300,3, 0xf514310,15, 0xf514400,5, 0xf514420,5, 0xf514440,18, 0xf514800,3, 0xf514810,2, 0xf514820,3, 0xf514830,2, 0xf514840,1, 0xf515000,7, 0xf515020,7, 0xf515080,19, 0xf515100,19, 0xf515180,25, 0xf515200,20, 0xf515280,20, 0xf515300,8, 0xf515340,4, 0xf515380,15, 0xf5153c0,15, 0xf515400,9, 0xf515430,5, 0xf516000,6, 0xf516020,1, 0xf516028,2, 0xf516040,11, 0xf516070,2, 0xf518000,82, 0xf518200,2, 0xf518240,9, 0xf518280,7, 0xf518400,82, 0xf518604,6, 0xf518700,15, 0xf518740,9, 0xf518780,6, 0xf5187a0,6, 0xf518800,2, 0xf518810,3, 0xf518880,24, 0xf5188e4,1, 0xf5188f0,12, 0xf520000,22, 0xf520080,22, 0xf520100,5, 0xf520120,5, 0xf520140,3, 0xf520160,16, 0xf5201c0,7, 0xf5201e0,2, 0xf520200,7, 0xf520220,2, 0xf520400,15, 0xf520440,3, 0xf520450,3, 0xf520460,24, 0xf520500,15, 0xf520540,3, 0xf520550,3, 0xf520560,24, 0xf520600,15, 0xf520640,3, 0xf520650,3, 0xf520660,24, 0xf520700,15, 0xf520740,3, 0xf520750,3, 0xf520760,24, 0xf520800,4, 0xf520820,16, 0xf520880,10, 0xf5208c0,10, 0xf520900,6, 0xf520920,6, 0xf520940,4, 0xf520980,13, 0xf5209c0,13, 0xf520a00,9, 0xf521000,86, 0xf521200,2, 0xf521240,9, 0xf521280,7, 0xf521400,86, 0xf521604,6, 0xf521800,86, 0xf521a00,2, 0xf521a40,9, 0xf521a80,7, 0xf521c00,86, 0xf521e04,6, 0xf522000,15, 0xf522040,4, 0xf522060,17, 0xf5220c0,6, 0xf5220e0,4, 0xf5220f4,11, 0xf522128,38, 0xf5221c4,2, 0xf5221d0,4, 0xf522200,1, 0xf524000,22, 0xf524080,22, 0xf524100,5, 0xf524120,5, 0xf524140,3, 0xf524160,16, 0xf5241c0,7, 0xf5241e0,2, 0xf524200,7, 0xf524220,2, 0xf524400,15, 0xf524440,3, 0xf524450,3, 0xf524460,24, 0xf524500,15, 0xf524540,3, 0xf524550,3, 0xf524560,24, 0xf524600,15, 0xf524640,3, 0xf524650,3, 0xf524660,24, 0xf524700,15, 0xf524740,3, 0xf524750,3, 0xf524760,24, 0xf524800,4, 0xf524820,16, 0xf524880,10, 0xf5248c0,10, 0xf524900,6, 0xf524920,6, 0xf524940,4, 0xf524980,13, 0xf5249c0,13, 0xf524a00,9, 0xf525000,86, 0xf525200,2, 0xf525240,9, 0xf525280,7, 0xf525400,86, 0xf525604,6, 0xf525800,86, 0xf525a00,2, 0xf525a40,9, 0xf525a80,7, 0xf525c00,86, 0xf525e04,6, 0xf526000,15, 0xf526040,4, 0xf526060,17, 0xf5260c0,6, 0xf5260e0,4, 0xf5260f4,11, 0xf526128,38, 0xf5261c4,2, 0xf5261d0,4, 0xf526200,1, 0xf528000,9, 0xf528040,9, 0xf528080,5, 0xf528100,21, 0xf528160,5, 0xf528180,45, 0xf528240,13, 0xf528280,9, 0xf528400,9, 0xf528440,9, 0xf528480,5, 0xf528500,21, 0xf528560,5, 0xf528580,45, 0xf528640,13, 0xf528680,9, 0xf528800,12, 0xf528900,15, 0xf528940,4, 0xf528960,17, 0xf5289c0,6, 0xf5289e0,4, 0xf5289f4,29, 0xf52c000,30, 0xf52c080,3, 0xf52c090,19, 0xf52c100,30, 0xf52c180,3, 0xf52c190,19, 0xf52c200,30, 0xf52c280,3, 0xf52c290,19, 0xf52c300,30, 0xf52c380,3, 0xf52c390,19, 0xf52c400,30, 0xf52c480,3, 0xf52c490,19, 0xf52c500,30, 0xf52c580,3, 0xf52c590,19, 0xf52c600,30, 0xf52c680,3, 0xf52c690,19, 0xf52c700,30, 0xf52c780,3, 0xf52c790,19, 0xf52c800,12, 0xf52c844,1, 0xf52c854,8, 0xf52c880,7, 0xf52c8a0,2, 0xf52c8ac,2, 0xf52c8c0,26, 0xf52c980,4, 0xf52c9a0,5, 0xf52c9c0,1, 0xf52d000,3, 0xf52d010,3, 0xf52d020,3, 0xf52d030,3, 0xf52d040,3, 0xf52d050,3, 0xf52d060,3, 0xf52d070,3, 0xf52d080,6, 0xf52d0a0,6, 0xf52d0c0,6, 0xf52d0e0,6, 0xf52d100,6, 0xf52d120,6, 0xf52d140,6, 0xf52d160,6, 0xf52d200,68, 0xf52d400,1, 0xf52d804,1, 0xf52d844,54, 0xf52da00,12, 0xf52da40,12, 0xf52da80,12, 0xf52dac0,12, 0xf52db00,12, 0xf52db40,12, 0xf52db80,12, 0xf52dbc0,12, 0xf52dc00,28, 0xf52dc80,10, 0xf52e000,3, 0xf52e020,6, 0xf52e040,6, 0xf52e060,15, 0xf52e100,26, 0xf52e180,15, 0xf52e200,15, 0xf52e240,4, 0xf52e260,17, 0xf52e2c0,6, 0xf52e2e0,4, 0xf52e2f4,18, 0xf52e340,4, 0xf52e360,17, 0xf52e3c0,6, 0xf52e3e0,4, 0xf52e3f4,15, 0xf530000,1, 0xf531000,1020, 0xf532000,194, 0xf533000,1020, 0xf534000,1020, 0xf535000,1020, 0xf536000,1020, 0xf537000,1020, 0xf538000,1020, 0xf539000,1020, 0xf53a000,1020, 0xf53b000,194, 0xf53c000,3, 0xf53c010,13, 0xf53c080,16, 0xf53c100,20, 0xf53c184,1, 0xf53c18c,4, 0xf53c200,3, 0xf53c210,13, 0xf53c280,16, 0xf53c300,20, 0xf53c384,1, 0xf53c38c,4, 0xf53c400,3, 0xf53c410,13, 0xf53c480,16, 0xf53c500,20, 0xf53c584,1, 0xf53c58c,4, 0xf53c600,3, 0xf53c610,13, 0xf53c680,16, 0xf53c700,20, 0xf53c784,1, 0xf53c78c,4, 0xf53c800,3, 0xf53c810,13, 0xf53c880,16, 0xf53c900,20, 0xf53c984,1, 0xf53c98c,4, 0xf53ca00,3, 0xf53ca10,13, 0xf53ca80,16, 0xf53cb00,20, 0xf53cb84,1, 0xf53cb8c,4, 0xf53cc00,3, 0xf53cc10,13, 0xf53cc80,16, 0xf53cd00,20, 0xf53cd84,1, 0xf53cd8c,4, 0xf53ce00,3, 0xf53ce10,13, 0xf53ce80,16, 0xf53cf00,20, 0xf53cf84,1, 0xf53cf8c,4, 0xf53d000,3, 0xf53d010,13, 0xf53d080,16, 0xf53d100,20, 0xf53d184,1, 0xf53d18c,4, 0xf53d200,18, 0xf53d250,2, 0xf53d260,4, 0xf53e000,1, 0xf53e014,1, 0xf53e01c,19, 0xf53e080,1, 0xf53e094,1, 0xf53e09c,19, 0xf53e100,8, 0xf53e200,13, 0xf53e240,9, 0xf53e280,12, 0xf53e2c0,2, 0xf53e2e0,12, 0xf540000,3, 0xf540080,20, 0xf540100,10, 0xf540140,1, 0xf540154,1, 0xf54015c,2, 0xf540200,15, 0xf540240,4, 0xf540260,17, 0xf5402c0,6, 0xf5402e0,2, 0xf5402ec,3, 0xf540300,8, 0xf540324,1, 0xf540400,4, 0xf540440,20, 0xf5404c0,9, 0xf540500,33, 0xf540600,11, 0xf540640,11, 0xf540680,1, 0xf542000,1, 0xf542200,4, 0xf542300,53, 0xf542400,4, 0xf542500,40, 0xf542600,15, 0xf542640,4, 0xf542660,17, 0xf5426c0,6, 0xf5426e0,2, 0xf5426ec,3, 0xf542700,8, 0xf542724,1, 0xf542800,20, 0xf542c00,53, 0xf542d00,53, 0xf542e00,1, 0xf543000,40, 0xf543100,40, 0xf543200,1, 0xf543400,1, 0xf543804,1, 0xf543844,39, 0xf543900,3, 0xf543a00,3, 0xf543a44,1, 0xf543a50,4, 0xf543a80,1, 0xf544000,2, 0xf544200,27, 0xf544280,4, 0xf5442c0,25, 0xf544340,6, 0xf544360,2, 0xf54436c,3, 0xf544380,8, 0xf5443a4,1, 0xf544400,12, 0xf544440,1, 0xf548000,3, 0xf548080,20, 0xf548100,10, 0xf548140,1, 0xf548154,1, 0xf54815c,2, 0xf548200,15, 0xf548240,4, 0xf548260,17, 0xf5482c0,6, 0xf5482e0,2, 0xf5482ec,3, 0xf548300,8, 0xf548324,1, 0xf548400,4, 0xf548440,20, 0xf5484c0,9, 0xf548500,33, 0xf548600,11, 0xf548640,11, 0xf548680,1, 0xf54a000,1, 0xf54a200,4, 0xf54a300,53, 0xf54a400,4, 0xf54a500,40, 0xf54a600,15, 0xf54a640,4, 0xf54a660,17, 0xf54a6c0,6, 0xf54a6e0,2, 0xf54a6ec,3, 0xf54a700,8, 0xf54a724,1, 0xf54a800,20, 0xf54ac00,53, 0xf54ad00,53, 0xf54ae00,1, 0xf54b000,40, 0xf54b100,40, 0xf54b200,1, 0xf54b400,1, 0xf54b804,1, 0xf54b844,39, 0xf54b900,3, 0xf54ba00,3, 0xf54ba44,1, 0xf54ba50,4, 0xf54ba80,1, 0xf54c000,2, 0xf54c200,27, 0xf54c280,4, 0xf54c2c0,25, 0xf54c340,6, 0xf54c360,2, 0xf54c36c,3, 0xf54c380,8, 0xf54c3a4,1, 0xf54c400,12, 0xf54c440,1, 0xf550000,4, 0xf550020,3, 0xf550030,2, 0xf550200,1, 0xf550224,10, 0xf550250,5, 0xf550280,1, 0xf550288,24, 0xf550300,3, 0xf550404,1, 0xf550414,5, 0xf550500,36, 0xf550600,3, 0xf550800,2, 0xf551000,1, 0xf551008,21, 0xf551080,1, 0xf551088,21, 0xf551100,1, 0xf551108,21, 0xf551180,1, 0xf551188,21, 0xf551200,1, 0xf551208,21, 0xf551280,1, 0xf551288,21, 0xf551300,1, 0xf551308,21, 0xf551380,1, 0xf551388,21, 0xf551400,21, 0xf551800,142, 0xf551c00,1, 0xf552000,4, 0xf552100,39, 0xf552200,3, 0xf552214,3, 0xf554004,1, 0xf554020,16, 0xf554080,2, 0xf554094,1, 0xf55409c,2, 0xf5540c0,6, 0xf554100,8, 0xf558004,17, 0xf558054,1, 0xf55805c,2, 0xf558080,1, 0xf5580a0,2, 0xf5580b4,4, 0xf558100,2, 0xf558200,8, 0xf558400,1, 0xf558600,27, 0xf558680,4, 0xf5586c0,25, 0xf558740,6, 0xf558760,2, 0xf55876c,3, 0xf558780,8, 0xf5587a4,3, 0xf558800,44, 0xf558900,1, 0xf560000,1, 0xf560200,27, 0xf560280,4, 0xf5602c0,25, 0xf560340,6, 0xf560360,2, 0xf56036c,3, 0xf560380,8, 0xf5603a4,1, 0xf560400,20, 0xf560480,3, 0xf560490,9, 0xf580000,198, 0xf580400,2, 0xf580440,9, 0xf580480,7, 0xf580800,198, 0xf580c00,2, 0xf580c40,9, 0xf580c80,7, 0xf581000,198, 0xf581400,198, 0xf581804,6, 0xf581824,6, 0xf581880,2, 0xf581904,1, 0xf581918,28, 0xf5819a0,6, 0xf5819c0,6, 0xf581c00,2, 0xf581d00,2, 0xf581e04,1, 0xf581e74,43, 0xf582000,2, 0xf582100,2, 0xf582204,1, 0xf582274,43, 0xf582400,3, 0xf582600,27, 0xf582680,4, 0xf5826c0,25, 0xf582740,6, 0xf582760,4, 0xf582774,11, 0xf5827a4,4, 0xf582800,4, 0xf582900,34, 0xf582a00,4, 0xf582b00,34, 0xf582c00,3, 0xf582c10,12, 0xf582e00,56, 0xf582ee4,4, 0xf582f00,4, 0xf583000,1, 0xf588000,4, 0xf588100,42, 0xf588200,1, 0xf588210,3, 0xf588220,3, 0xf588230,3, 0xf588240,1, 0xf588248,3, 0xf588400,4, 0xf588500,58, 0xf588600,1, 0xf588610,3, 0xf588620,3, 0xf588630,3, 0xf588640,1, 0xf588648,3, 0xf588800,4, 0xf588900,36, 0xf588a00,1, 0xf588c00,4, 0xf588c80,27, 0xf588d00,1, 0xf588d10,3, 0xf588d20,3, 0xf588d30,3, 0xf588d40,1, 0xf588d48,3, 0xf588e00,4, 0xf588e80,31, 0xf588f00,1, 0xf588f10,3, 0xf588f20,3, 0xf588f30,3, 0xf588f40,1, 0xf588f48,3, 0xf589000,4, 0xf589040,13, 0xf589080,1, 0xf589200,15, 0xf589240,4, 0xf589260,17, 0xf5892c0,6, 0xf5892e0,2, 0xf5892ec,3, 0xf589300,8, 0xf589324,8, 0xf589400,68, 0xf589600,60, 0xf589700,4, 0xf589720,5, 0xf589740,1, 0xf589780,2, 0xf58978c,2, 0xf5897a0,1, 0xf5897c0,12, 0xf589800,7, 0xf589820,5, 0xf589900,49, 0xf589a00,1, 0xf589a08,23, 0xf589a84,1, 0xf589a8c,1, 0xf589a94,1, 0xf589a9c,2, 0xf589ac0,1, 0xf589c00,10, 0xf589c40,1, 0xf589c50,3, 0xf589c80,10, 0xf589cc0,12, 0xf589d00,3, 0xf589e00,1, 0xf58a000,4, 0xf58a100,42, 0xf58a200,1, 0xf58a210,3, 0xf58a220,3, 0xf58a230,3, 0xf58a240,1, 0xf58a248,3, 0xf58a400,4, 0xf58a500,58, 0xf58a600,1, 0xf58a610,3, 0xf58a620,3, 0xf58a630,3, 0xf58a640,1, 0xf58a648,3, 0xf58a800,4, 0xf58a900,36, 0xf58aa00,1, 0xf58ac00,4, 0xf58ac80,27, 0xf58ad00,1, 0xf58ad10,3, 0xf58ad20,3, 0xf58ad30,3, 0xf58ad40,1, 0xf58ad48,3, 0xf58ae00,4, 0xf58ae80,31, 0xf58af00,1, 0xf58af10,3, 0xf58af20,3, 0xf58af30,3, 0xf58af40,1, 0xf58af48,3, 0xf58b000,4, 0xf58b040,13, 0xf58b080,1, 0xf58b200,15, 0xf58b240,4, 0xf58b260,17, 0xf58b2c0,6, 0xf58b2e0,2, 0xf58b2ec,3, 0xf58b300,8, 0xf58b324,8, 0xf58b400,68, 0xf58b600,60, 0xf58b700,4, 0xf58b720,5, 0xf58b740,1, 0xf58b780,2, 0xf58b78c,2, 0xf58b7a0,1, 0xf58b7c0,12, 0xf58b800,7, 0xf58b820,5, 0xf58b900,49, 0xf58ba00,1, 0xf58ba08,23, 0xf58ba84,1, 0xf58ba8c,1, 0xf58ba94,1, 0xf58ba9c,2, 0xf58bac0,1, 0xf58bc00,10, 0xf58bc40,1, 0xf58bc50,3, 0xf58bc80,10, 0xf58bcc0,12, 0xf58bd00,3, 0xf58be00,1, 0xf58c000,20, 0xf58c080,3, 0xf58c090,1, 0xf58c098,4, 0xf590000,49, 0xf590100,12, 0xf590140,4, 0xf590184,1, 0xf590198,2, 0xf5901a4,1, 0xf5901b8,7, 0xf5901e0,4, 0xf590200,20, 0xf590280,3, 0xf590290,9, 0xf5902c0,6, 0xf5902e0,1, 0xf5902e8,7, 0xf590400,49, 0xf590500,12, 0xf590540,4, 0xf590584,1, 0xf590598,2, 0xf5905a4,1, 0xf5905b8,7, 0xf5905e0,4, 0xf590600,20, 0xf590680,3, 0xf590690,9, 0xf5906c0,6, 0xf5906e0,1, 0xf5906e8,7, 0xf590800,49, 0xf590900,12, 0xf590940,4, 0xf590984,1, 0xf590998,2, 0xf5909a4,1, 0xf5909b8,7, 0xf5909e0,4, 0xf590a00,20, 0xf590a80,3, 0xf590a90,9, 0xf590ac0,6, 0xf590ae0,1, 0xf590ae8,7, 0xf590c00,49, 0xf590d00,12, 0xf590d40,4, 0xf590d84,1, 0xf590d98,2, 0xf590da4,1, 0xf590db8,7, 0xf590de0,4, 0xf590e00,20, 0xf590e80,3, 0xf590e90,9, 0xf590ec0,6, 0xf590ee0,1, 0xf590ee8,7, 0xf591000,49, 0xf591100,12, 0xf591140,4, 0xf591184,1, 0xf591198,2, 0xf5911a4,1, 0xf5911b8,7, 0xf5911e0,4, 0xf591200,20, 0xf591280,3, 0xf591290,9, 0xf5912c0,6, 0xf5912e0,1, 0xf5912e8,7, 0xf591400,49, 0xf591500,12, 0xf591540,4, 0xf591584,1, 0xf591598,2, 0xf5915a4,1, 0xf5915b8,7, 0xf5915e0,4, 0xf591600,20, 0xf591680,3, 0xf591690,9, 0xf5916c0,6, 0xf5916e0,1, 0xf5916e8,7, 0xf591800,49, 0xf591900,12, 0xf591940,4, 0xf591984,1, 0xf591998,2, 0xf5919a4,1, 0xf5919b8,7, 0xf5919e0,4, 0xf591a00,20, 0xf591a80,3, 0xf591a90,9, 0xf591ac0,6, 0xf591ae0,1, 0xf591ae8,7, 0xf592000,20, 0xf592080,10, 0xf592100,20, 0xf592180,10, 0xf592200,12, 0xf592400,20, 0xf592480,10, 0xf592500,20, 0xf592580,10, 0xf592600,12, 0xf592800,3, 0xf592840,12, 0xf592880,12, 0xf5928c0,12, 0xf592900,12, 0xf592940,12, 0xf592980,12, 0xf5929c0,12, 0xf592a00,12, 0xf592c00,12, 0xf592c40,7, 0xf592c60,10, 0xf593004,1, 0xf593044,43, 0xf593100,7, 0xf593120,7, 0xf593140,2, 0xf59314c,2, 0xf593160,2, 0xf59316c,2, 0xf593180,18, 0xf593200,2, 0xf593220,10, 0xf593260,20, 0xf5932c0,9, 0xf593300,15, 0xf593340,9, 0xf593380,6, 0xf5933a0,4, 0xf593400,5, 0xf594000,53, 0xf594100,3, 0xf594110,15, 0xf594200,53, 0xf594300,3, 0xf594310,15, 0xf594400,5, 0xf594420,5, 0xf594440,18, 0xf594800,3, 0xf594810,2, 0xf594820,3, 0xf594830,2, 0xf594840,1, 0xf595000,7, 0xf595020,7, 0xf595080,19, 0xf595100,19, 0xf595180,25, 0xf595200,20, 0xf595280,20, 0xf595300,8, 0xf595340,4, 0xf595380,15, 0xf5953c0,15, 0xf595400,9, 0xf595430,5, 0xf596000,6, 0xf596020,1, 0xf596028,2, 0xf596040,11, 0xf596070,2, 0xf598000,82, 0xf598200,2, 0xf598240,9, 0xf598280,7, 0xf598400,82, 0xf598604,6, 0xf598700,15, 0xf598740,9, 0xf598780,6, 0xf5987a0,6, 0xf598800,2, 0xf598810,3, 0xf598880,24, 0xf5988e4,1, 0xf5988f0,12, 0xf5a0000,22, 0xf5a0080,22, 0xf5a0100,5, 0xf5a0120,5, 0xf5a0140,3, 0xf5a0160,16, 0xf5a01c0,7, 0xf5a01e0,2, 0xf5a0200,7, 0xf5a0220,2, 0xf5a0400,15, 0xf5a0440,3, 0xf5a0450,3, 0xf5a0460,24, 0xf5a0500,15, 0xf5a0540,3, 0xf5a0550,3, 0xf5a0560,24, 0xf5a0600,15, 0xf5a0640,3, 0xf5a0650,3, 0xf5a0660,24, 0xf5a0700,15, 0xf5a0740,3, 0xf5a0750,3, 0xf5a0760,24, 0xf5a0800,4, 0xf5a0820,16, 0xf5a0880,10, 0xf5a08c0,10, 0xf5a0900,6, 0xf5a0920,6, 0xf5a0940,4, 0xf5a0980,13, 0xf5a09c0,13, 0xf5a0a00,9, 0xf5a1000,86, 0xf5a1200,2, 0xf5a1240,9, 0xf5a1280,7, 0xf5a1400,86, 0xf5a1604,6, 0xf5a1800,86, 0xf5a1a00,2, 0xf5a1a40,9, 0xf5a1a80,7, 0xf5a1c00,86, 0xf5a1e04,6, 0xf5a2000,15, 0xf5a2040,4, 0xf5a2060,17, 0xf5a20c0,6, 0xf5a20e0,4, 0xf5a20f4,11, 0xf5a2128,38, 0xf5a21c4,2, 0xf5a21d0,4, 0xf5a2200,1, 0xf5a4000,22, 0xf5a4080,22, 0xf5a4100,5, 0xf5a4120,5, 0xf5a4140,3, 0xf5a4160,16, 0xf5a41c0,7, 0xf5a41e0,2, 0xf5a4200,7, 0xf5a4220,2, 0xf5a4400,15, 0xf5a4440,3, 0xf5a4450,3, 0xf5a4460,24, 0xf5a4500,15, 0xf5a4540,3, 0xf5a4550,3, 0xf5a4560,24, 0xf5a4600,15, 0xf5a4640,3, 0xf5a4650,3, 0xf5a4660,24, 0xf5a4700,15, 0xf5a4740,3, 0xf5a4750,3, 0xf5a4760,24, 0xf5a4800,4, 0xf5a4820,16, 0xf5a4880,10, 0xf5a48c0,10, 0xf5a4900,6, 0xf5a4920,6, 0xf5a4940,4, 0xf5a4980,13, 0xf5a49c0,13, 0xf5a4a00,9, 0xf5a5000,86, 0xf5a5200,2, 0xf5a5240,9, 0xf5a5280,7, 0xf5a5400,86, 0xf5a5604,6, 0xf5a5800,86, 0xf5a5a00,2, 0xf5a5a40,9, 0xf5a5a80,7, 0xf5a5c00,86, 0xf5a5e04,6, 0xf5a6000,15, 0xf5a6040,4, 0xf5a6060,17, 0xf5a60c0,6, 0xf5a60e0,4, 0xf5a60f4,11, 0xf5a6128,38, 0xf5a61c4,2, 0xf5a61d0,4, 0xf5a6200,1, 0xf5a8000,9, 0xf5a8040,9, 0xf5a8080,5, 0xf5a8100,21, 0xf5a8160,5, 0xf5a8180,45, 0xf5a8240,13, 0xf5a8280,9, 0xf5a8400,9, 0xf5a8440,9, 0xf5a8480,5, 0xf5a8500,21, 0xf5a8560,5, 0xf5a8580,45, 0xf5a8640,13, 0xf5a8680,9, 0xf5a8800,12, 0xf5a8900,15, 0xf5a8940,4, 0xf5a8960,17, 0xf5a89c0,6, 0xf5a89e0,4, 0xf5a89f4,29, 0xf5ac000,30, 0xf5ac080,3, 0xf5ac090,19, 0xf5ac100,30, 0xf5ac180,3, 0xf5ac190,19, 0xf5ac200,30, 0xf5ac280,3, 0xf5ac290,19, 0xf5ac300,30, 0xf5ac380,3, 0xf5ac390,19, 0xf5ac400,30, 0xf5ac480,3, 0xf5ac490,19, 0xf5ac500,30, 0xf5ac580,3, 0xf5ac590,19, 0xf5ac600,30, 0xf5ac680,3, 0xf5ac690,19, 0xf5ac700,30, 0xf5ac780,3, 0xf5ac790,19, 0xf5ac800,12, 0xf5ac844,1, 0xf5ac854,8, 0xf5ac880,7, 0xf5ac8a0,2, 0xf5ac8ac,2, 0xf5ac8c0,26, 0xf5ac980,4, 0xf5ac9a0,5, 0xf5ac9c0,1, 0xf5ad000,3, 0xf5ad010,3, 0xf5ad020,3, 0xf5ad030,3, 0xf5ad040,3, 0xf5ad050,3, 0xf5ad060,3, 0xf5ad070,3, 0xf5ad080,6, 0xf5ad0a0,6, 0xf5ad0c0,6, 0xf5ad0e0,6, 0xf5ad100,6, 0xf5ad120,6, 0xf5ad140,6, 0xf5ad160,6, 0xf5ad200,68, 0xf5ad400,1, 0xf5ad804,1, 0xf5ad844,54, 0xf5ada00,12, 0xf5ada40,12, 0xf5ada80,12, 0xf5adac0,12, 0xf5adb00,12, 0xf5adb40,12, 0xf5adb80,12, 0xf5adbc0,12, 0xf5adc00,28, 0xf5adc80,10, 0xf5ae000,3, 0xf5ae020,6, 0xf5ae040,6, 0xf5ae060,15, 0xf5ae100,26, 0xf5ae180,15, 0xf5ae200,15, 0xf5ae240,4, 0xf5ae260,17, 0xf5ae2c0,6, 0xf5ae2e0,4, 0xf5ae2f4,18, 0xf5ae340,4, 0xf5ae360,17, 0xf5ae3c0,6, 0xf5ae3e0,4, 0xf5ae3f4,15, 0xf5b0000,1, 0xf5b1000,1020, 0xf5b2000,194, 0xf5b3000,1020, 0xf5b4000,1020, 0xf5b5000,1020, 0xf5b6000,1020, 0xf5b7000,1020, 0xf5b8000,1020, 0xf5b9000,1020, 0xf5ba000,1020, 0xf5bb000,194, 0xf5bc000,3, 0xf5bc010,13, 0xf5bc080,16, 0xf5bc100,20, 0xf5bc184,1, 0xf5bc18c,4, 0xf5bc200,3, 0xf5bc210,13, 0xf5bc280,16, 0xf5bc300,20, 0xf5bc384,1, 0xf5bc38c,4, 0xf5bc400,3, 0xf5bc410,13, 0xf5bc480,16, 0xf5bc500,20, 0xf5bc584,1, 0xf5bc58c,4, 0xf5bc600,3, 0xf5bc610,13, 0xf5bc680,16, 0xf5bc700,20, 0xf5bc784,1, 0xf5bc78c,4, 0xf5bc800,3, 0xf5bc810,13, 0xf5bc880,16, 0xf5bc900,20, 0xf5bc984,1, 0xf5bc98c,4, 0xf5bca00,3, 0xf5bca10,13, 0xf5bca80,16, 0xf5bcb00,20, 0xf5bcb84,1, 0xf5bcb8c,4, 0xf5bcc00,3, 0xf5bcc10,13, 0xf5bcc80,16, 0xf5bcd00,20, 0xf5bcd84,1, 0xf5bcd8c,4, 0xf5bce00,3, 0xf5bce10,13, 0xf5bce80,16, 0xf5bcf00,20, 0xf5bcf84,1, 0xf5bcf8c,4, 0xf5bd000,3, 0xf5bd010,13, 0xf5bd080,16, 0xf5bd100,20, 0xf5bd184,1, 0xf5bd18c,4, 0xf5bd200,18, 0xf5bd250,2, 0xf5bd260,4, 0xf5be000,1, 0xf5be014,1, 0xf5be01c,19, 0xf5be080,1, 0xf5be094,1, 0xf5be09c,19, 0xf5be100,8, 0xf5be200,13, 0xf5be240,9, 0xf5be280,12, 0xf5be2c0,2, 0xf5be2e0,12, 0xf5c0000,3, 0xf5c0080,20, 0xf5c0100,10, 0xf5c0140,1, 0xf5c0154,1, 0xf5c015c,2, 0xf5c0200,15, 0xf5c0240,4, 0xf5c0260,17, 0xf5c02c0,6, 0xf5c02e0,2, 0xf5c02ec,3, 0xf5c0300,8, 0xf5c0324,1, 0xf5c0400,4, 0xf5c0440,20, 0xf5c04c0,9, 0xf5c0500,33, 0xf5c0600,11, 0xf5c0640,11, 0xf5c0680,1, 0xf5c2000,1, 0xf5c2200,4, 0xf5c2300,53, 0xf5c2400,4, 0xf5c2500,40, 0xf5c2600,15, 0xf5c2640,4, 0xf5c2660,17, 0xf5c26c0,6, 0xf5c26e0,2, 0xf5c26ec,3, 0xf5c2700,8, 0xf5c2724,1, 0xf5c2800,20, 0xf5c2c00,53, 0xf5c2d00,53, 0xf5c2e00,1, 0xf5c3000,40, 0xf5c3100,40, 0xf5c3200,1, 0xf5c3400,1, 0xf5c3804,1, 0xf5c3844,39, 0xf5c3900,3, 0xf5c3a00,3, 0xf5c3a44,1, 0xf5c3a50,4, 0xf5c3a80,1, 0xf5c4000,2, 0xf5c4200,27, 0xf5c4280,4, 0xf5c42c0,25, 0xf5c4340,6, 0xf5c4360,2, 0xf5c436c,3, 0xf5c4380,8, 0xf5c43a4,1, 0xf5c4400,12, 0xf5c4440,1, 0xf5c8000,3, 0xf5c8080,20, 0xf5c8100,10, 0xf5c8140,1, 0xf5c8154,1, 0xf5c815c,2, 0xf5c8200,15, 0xf5c8240,4, 0xf5c8260,17, 0xf5c82c0,6, 0xf5c82e0,2, 0xf5c82ec,3, 0xf5c8300,8, 0xf5c8324,1, 0xf5c8400,4, 0xf5c8440,20, 0xf5c84c0,9, 0xf5c8500,33, 0xf5c8600,11, 0xf5c8640,11, 0xf5c8680,1, 0xf5ca000,1, 0xf5ca200,4, 0xf5ca300,53, 0xf5ca400,4, 0xf5ca500,40, 0xf5ca600,15, 0xf5ca640,4, 0xf5ca660,17, 0xf5ca6c0,6, 0xf5ca6e0,2, 0xf5ca6ec,3, 0xf5ca700,8, 0xf5ca724,1, 0xf5ca800,20, 0xf5cac00,53, 0xf5cad00,53, 0xf5cae00,1, 0xf5cb000,40, 0xf5cb100,40, 0xf5cb200,1, 0xf5cb400,1, 0xf5cb804,1, 0xf5cb844,39, 0xf5cb900,3, 0xf5cba00,3, 0xf5cba44,1, 0xf5cba50,4, 0xf5cba80,1, 0xf5cc000,2, 0xf5cc200,27, 0xf5cc280,4, 0xf5cc2c0,25, 0xf5cc340,6, 0xf5cc360,2, 0xf5cc36c,3, 0xf5cc380,8, 0xf5cc3a4,1, 0xf5cc400,12, 0xf5cc440,1, 0xf5d0000,4, 0xf5d0020,3, 0xf5d0030,2, 0xf5d0200,1, 0xf5d0224,10, 0xf5d0250,5, 0xf5d0280,1, 0xf5d0288,24, 0xf5d0300,3, 0xf5d0404,1, 0xf5d0414,5, 0xf5d0500,36, 0xf5d0600,3, 0xf5d0800,2, 0xf5d1000,1, 0xf5d1008,21, 0xf5d1080,1, 0xf5d1088,21, 0xf5d1100,1, 0xf5d1108,21, 0xf5d1180,1, 0xf5d1188,21, 0xf5d1200,1, 0xf5d1208,21, 0xf5d1280,1, 0xf5d1288,21, 0xf5d1300,1, 0xf5d1308,21, 0xf5d1380,1, 0xf5d1388,21, 0xf5d1400,21, 0xf5d1800,142, 0xf5d1c00,1, 0xf5d2000,4, 0xf5d2100,39, 0xf5d2200,3, 0xf5d2214,3, 0xf5d4004,1, 0xf5d4020,16, 0xf5d4080,2, 0xf5d4094,1, 0xf5d409c,2, 0xf5d40c0,6, 0xf5d4100,8, 0xf5d8004,17, 0xf5d8054,1, 0xf5d805c,2, 0xf5d8080,1, 0xf5d80a0,2, 0xf5d80b4,4, 0xf5d8100,2, 0xf5d8200,8, 0xf5d8400,1, 0xf5d8600,27, 0xf5d8680,4, 0xf5d86c0,25, 0xf5d8740,6, 0xf5d8760,2, 0xf5d876c,3, 0xf5d8780,8, 0xf5d87a4,3, 0xf5d8800,44, 0xf5d8900,1, 0xf5e0000,1, 0xf5e0200,27, 0xf5e0280,4, 0xf5e02c0,25, 0xf5e0340,6, 0xf5e0360,2, 0xf5e036c,3, 0xf5e0380,8, 0xf5e03a4,1, 0xf5e0400,20, 0xf5e0480,3, 0xf5e0490,9, 0xf802000,49, 0xf802100,12, 0xf802140,4, 0xf802184,1, 0xf802198,2, 0xf8021a4,1, 0xf8021b8,7, 0xf8021e0,4, 0xf802200,20, 0xf802280,3, 0xf802290,9, 0xf8022c0,6, 0xf8022e0,1, 0xf8022e8,7, 0xf802400,49, 0xf802500,12, 0xf802540,4, 0xf802584,1, 0xf802598,2, 0xf8025a4,1, 0xf8025b8,7, 0xf8025e0,4, 0xf802600,20, 0xf802680,3, 0xf802690,9, 0xf8026c0,6, 0xf8026e0,1, 0xf8026e8,7, 0xf802800,7, 0xf802820,3, 0xf802830,11, 0xf802860,14, 0xf802900,9, 0xf802a00,7, 0xf802a20,9, 0xf802a80,2, 0xf802c00,27, 0xf802c80,9, 0xf802cc0,6, 0xf802ce0,4, 0xf802d00,5, 0xf802d18,5, 0xf802d30,9, 0xf802d58,5, 0xf802d70,7, 0xf802e00,6, 0xf802e20,6, 0xf802e40,6, 0xf802e60,6, 0xf802e80,6, 0xf802ea0,6, 0xf802ec0,6, 0xf802ee0,6, 0xf802f00,6, 0xf802f20,6, 0xf802f40,6, 0xf802f60,6, 0xf802f80,6, 0xf802fa0,6, 0xf802fc0,6, 0xf802fe0,6, 0xf803000,28, 0xf803080,6, 0xf840000,3, 0xf84001c,6, 0xf840080,3, 0xf840090,1, 0xf8400d0,3, 0xf8400e4,25, 0xf84014c,21, 0xf8401a4,12, 0xf8401d8,72, 0xf840304,5, 0xf84031c,98, 0xf8404ac,4, 0xf8404c8,20, 0xf840520,56, 0xf840608,21, 0xf840664,3, 0xf840674,22, 0xf840710,1, 0xf840750,3, 0xf840764,25, 0xf8407cc,21, 0xf840824,12, 0xf840858,72, 0xf840984,5, 0xf84099c,98, 0xf840b2c,4, 0xf840b48,20, 0xf840ba0,56, 0xf840c88,21, 0xf840ce4,3, 0xf840cf4,22, 0xf840d90,1, 0xf840dd0,3, 0xf840de4,25, 0xf840e4c,21, 0xf840ea4,12, 0xf840ed8,72, 0xf841004,5, 0xf84101c,98, 0xf8411ac,4, 0xf8411c8,20, 0xf841220,56, 0xf841308,21, 0xf841364,3, 0xf841374,22, 0xf841410,1, 0xf841450,3, 0xf841464,25, 0xf8414cc,21, 0xf841524,12, 0xf841558,72, 0xf841684,5, 0xf84169c,98, 0xf84182c,4, 0xf841848,20, 0xf8418a0,56, 0xf841988,21, 0xf8419e4,3, 0xf8419f4,22, 0xf841a90,1, 0xf841ad0,3, 0xf841ae4,25, 0xf841b4c,21, 0xf841ba4,12, 0xf841bd8,72, 0xf841d04,5, 0xf841d1c,98, 0xf841eac,4, 0xf841ec8,20, 0xf841f20,56, 0xf842008,21, 0xf842064,3, 0xf842074,22, 0xf842110,1, 0xf842150,3, 0xf842164,25, 0xf8421cc,21, 0xf842224,12, 0xf842258,72, 0xf842384,5, 0xf84239c,98, 0xf84252c,4, 0xf842548,20, 0xf8425a0,56, 0xf842688,21, 0xf8426e4,3, 0xf8426f4,22, 0xf842790,1, 0xf8427d0,3, 0xf8427e4,25, 0xf84284c,21, 0xf8428a4,12, 0xf8428d8,72, 0xf842a04,5, 0xf842a1c,98, 0xf842bac,4, 0xf842bc8,20, 0xf842c20,56, 0xf842d08,21, 0xf842d64,3, 0xf842d74,22, 0xf842e10,1, 0xf842e50,3, 0xf842e64,25, 0xf842ecc,21, 0xf842f24,12, 0xf842f58,72, 0xf843084,5, 0xf84309c,98, 0xf84322c,4, 0xf843248,20, 0xf8432a0,56, 0xf843388,21, 0xf8433e4,3, 0xf8433f4,22, 0xf843490,1, 0xf8434d0,3, 0xf8434e4,25, 0xf84354c,21, 0xf8435a4,12, 0xf8435d8,72, 0xf843704,5, 0xf84371c,98, 0xf8438ac,4, 0xf8438c8,20, 0xf843920,56, 0xf843a08,21, 0xf843a64,3, 0xf843a74,22, 0xf843b10,1, 0xf843b50,3, 0xf843b64,25, 0xf843bcc,21, 0xf843c24,12, 0xf843c58,72, 0xf843d84,5, 0xf843d9c,98, 0xf843f2c,4, 0xf843f48,20, 0xf843fa0,56, 0xf844088,21, 0xf8440e4,3, 0xf8440f4,22, 0xf844190,1, 0xf8441d0,3, 0xf8441e4,25, 0xf84424c,21, 0xf8442a4,12, 0xf8442d8,72, 0xf844404,5, 0xf84441c,98, 0xf8445ac,4, 0xf8445c8,20, 0xf844620,56, 0xf844708,21, 0xf844764,3, 0xf844774,22, 0xf844810,1, 0xf844850,3, 0xf844864,25, 0xf8448cc,21, 0xf844924,12, 0xf844958,72, 0xf844a84,5, 0xf844a9c,98, 0xf844c2c,4, 0xf844c48,20, 0xf844ca0,56, 0xf844d88,21, 0xf844de4,3, 0xf844df4,22, 0xf844e90,1, 0xf844ed0,3, 0xf844ee4,25, 0xf844f4c,21, 0xf844fa4,12, 0xf844fd8,72, 0xf845104,5, 0xf84511c,98, 0xf8452ac,4, 0xf8452c8,20, 0xf845320,56, 0xf845408,21, 0xf845464,3, 0xf845474,22, 0xf845510,1, 0xf845550,3, 0xf845564,25, 0xf8455cc,21, 0xf845624,12, 0xf845658,72, 0xf845784,5, 0xf84579c,98, 0xf84592c,4, 0xf845948,20, 0xf8459a0,56, 0xf845a88,21, 0xf845ae4,3, 0xf845af4,22, 0xf845b90,1, 0xf845bd0,3, 0xf845be4,25, 0xf845c4c,21, 0xf845ca4,12, 0xf845cd8,72, 0xf845e04,5, 0xf845e1c,98, 0xf845fac,4, 0xf845fc8,20, 0xf846020,56, 0xf846108,21, 0xf846164,3, 0xf846174,22, 0xf846210,1, 0xf846250,3, 0xf846264,25, 0xf8462cc,21, 0xf846324,12, 0xf846358,72, 0xf846484,5, 0xf84649c,98, 0xf84662c,4, 0xf846648,20, 0xf8466a0,56, 0xf846788,21, 0xf8467e4,3, 0xf8467f4,22, 0xf846890,1, 0xf8468d0,3, 0xf8468e4,25, 0xf84694c,21, 0xf8469a4,12, 0xf8469d8,72, 0xf846b04,5, 0xf846b1c,98, 0xf846cac,4, 0xf846cc8,20, 0xf846d20,56, 0xf846e08,21, 0xf846e64,3, 0xf846e74,22, 0xf846f10,1, 0xf846f50,3, 0xf846f64,25, 0xf846fcc,21, 0xf847024,12, 0xf847058,72, 0xf847184,5, 0xf84719c,98, 0xf84732c,4, 0xf847348,20, 0xf8473a0,56, 0xf847488,21, 0xf8474e4,3, 0xf8474f4,22, 0xf847590,1, 0xf8475d0,3, 0xf8475e4,25, 0xf84764c,21, 0xf8476a4,12, 0xf8476d8,72, 0xf847804,5, 0xf84781c,98, 0xf8479ac,4, 0xf8479c8,20, 0xf847a20,56, 0xf847b08,21, 0xf847b64,3, 0xf847b74,22, 0xf847c10,1, 0xf847c50,3, 0xf847c64,25, 0xf847ccc,21, 0xf847d24,12, 0xf847d58,72, 0xf847e84,5, 0xf847e9c,98, 0xf84802c,4, 0xf848048,20, 0xf8480a0,56, 0xf848188,21, 0xf8481e4,3, 0xf8481f4,22, 0xf848290,1, 0xf8482d0,3, 0xf8482e4,25, 0xf84834c,21, 0xf8483a4,12, 0xf8483d8,72, 0xf848504,5, 0xf84851c,98, 0xf8486ac,4, 0xf8486c8,20, 0xf848720,56, 0xf848808,21, 0xf848864,3, 0xf848874,22, 0xf848910,1, 0xf848950,3, 0xf848964,25, 0xf8489cc,21, 0xf848a24,12, 0xf848a58,72, 0xf848b84,5, 0xf848b9c,98, 0xf848d2c,4, 0xf848d48,20, 0xf848da0,56, 0xf848e88,21, 0xf848ee4,3, 0xf848ef4,22, 0xf848f90,1, 0xf848fd0,3, 0xf848fe4,25, 0xf84904c,21, 0xf8490a4,12, 0xf8490d8,72, 0xf849204,5, 0xf84921c,98, 0xf8493ac,4, 0xf8493c8,20, 0xf849420,56, 0xf849508,21, 0xf849564,3, 0xf849574,22, 0xf849610,1, 0xf849650,3, 0xf849664,25, 0xf8496cc,21, 0xf849724,12, 0xf849758,72, 0xf849884,5, 0xf84989c,98, 0xf849a2c,4, 0xf849a48,20, 0xf849aa0,56, 0xf849b88,21, 0xf849be4,3, 0xf849bf4,22, 0xf849c90,1, 0xf849cd0,3, 0xf849ce4,25, 0xf849d4c,21, 0xf849da4,12, 0xf849dd8,72, 0xf849f04,5, 0xf849f1c,98, 0xf84a0ac,4, 0xf84a0c8,20, 0xf84a120,56, 0xf84a208,21, 0xf84a264,3, 0xf84a274,22, 0xf84a310,1, 0xf84a350,3, 0xf84a364,25, 0xf84a3cc,21, 0xf84a424,12, 0xf84a458,72, 0xf84a584,5, 0xf84a59c,98, 0xf84a72c,4, 0xf84a748,20, 0xf84a7a0,56, 0xf84a888,21, 0xf84a8e4,3, 0xf84a8f4,22, 0xf84a990,1, 0xf84a9d0,3, 0xf84a9e4,25, 0xf84aa4c,21, 0xf84aaa4,12, 0xf84aad8,72, 0xf84ac04,5, 0xf84ac1c,98, 0xf84adac,4, 0xf84adc8,20, 0xf84ae20,56, 0xf84af08,21, 0xf84af64,3, 0xf84af74,22, 0xf84b010,1, 0xf84b050,3, 0xf84b064,25, 0xf84b0cc,21, 0xf84b124,12, 0xf84b158,72, 0xf84b284,5, 0xf84b29c,98, 0xf84b42c,4, 0xf84b448,20, 0xf84b4a0,56, 0xf84b588,21, 0xf84b5e4,3, 0xf84b5f4,22, 0xf84b690,1, 0xf84b6d0,3, 0xf84b6e4,25, 0xf84b74c,21, 0xf84b7a4,12, 0xf84b7d8,72, 0xf84b904,5, 0xf84b91c,98, 0xf84baac,4, 0xf84bac8,20, 0xf84bb20,56, 0xf84bc08,21, 0xf84bc64,3, 0xf84bc74,22, 0xf84bd10,1, 0xf84bd50,3, 0xf84bd64,25, 0xf84bdcc,21, 0xf84be24,12, 0xf84be58,72, 0xf84bf84,5, 0xf84bf9c,98, 0xf84c12c,4, 0xf84c148,20, 0xf84c1a0,56, 0xf84c288,21, 0xf84c2e4,3, 0xf84c2f4,22, 0xf84c390,1, 0xf84c3d0,3, 0xf84c3e4,25, 0xf84c44c,21, 0xf84c4a4,12, 0xf84c4d8,72, 0xf84c604,5, 0xf84c61c,98, 0xf84c7ac,4, 0xf84c7c8,20, 0xf84c820,56, 0xf84c908,21, 0xf84c964,3, 0xf84c974,22, 0xf84ca10,1, 0xf84ca50,3, 0xf84ca64,25, 0xf84cacc,21, 0xf84cb24,12, 0xf84cb58,72, 0xf84cc84,5, 0xf84cc9c,98, 0xf84ce2c,4, 0xf84ce48,20, 0xf84cea0,56, 0xf84cf88,21, 0xf84cfe4,3, 0xf84cff4,22, 0xf84d090,1, 0xf84d0d0,3, 0xf84d0e4,25, 0xf84d14c,21, 0xf84d1a4,12, 0xf84d1d8,72, 0xf84d304,5, 0xf84d31c,98, 0xf84d4ac,4, 0xf84d4c8,20, 0xf84d520,56, 0xf84d608,21, 0xf84d664,3, 0xf84d674,22, 0xf84d710,1, 0xf84d750,3, 0xf84d764,25, 0xf84d7cc,21, 0xf84d824,12, 0xf84d858,72, 0xf84d984,5, 0xf84d99c,98, 0xf84db2c,4, 0xf84db48,20, 0xf84dba0,56, 0xf84dc88,21, 0xf84dce4,3, 0xf84dcf4,22, 0xf84dd90,1, 0xf84ddd0,3, 0xf84dde4,25, 0xf84de4c,21, 0xf84dea4,12, 0xf84ded8,72, 0xf84e004,5, 0xf84e01c,98, 0xf84e1ac,4, 0xf84e1c8,20, 0xf84e220,56, 0xf84e308,21, 0xf84e364,3, 0xf84e374,22, 0xf84e410,2, 0xf84e454,72, 0xf84e760,3, 0xf84e7ac,42, 0xf84e85c,31, 0xf84e990,54, 0xf84ea70,58, 0xf84eb60,58, 0xf84ec50,58, 0xf84ed40,58, 0xf84ee30,58, 0xf84ef20,58, 0xf84f010,58, 0xf84f100,58, 0xf84f1f0,58, 0xf84f2e0,58, 0xf84f3d0,58, 0xf84f4c0,58, 0xf84f5b0,58, 0xf84f6a0,58, 0xf84f790,58, 0xf84f880,58, 0xf84f970,58, 0xf84fa60,58, 0xf84fb50,58, 0xf84fc40,58, 0xf84fd30,58, 0xf84fe20,58, 0xf84ff10,58, 0xf850000,58, 0xf8500f0,58, 0xf8501e0,58, 0xf8502d0,58, 0xf8503c0,58, 0xf8504b0,58, 0xf8505a0,58, 0xf850690,58, 0xf850780,101, 0xf850990,49, 0xf850a90,18, 0xf850ae0,11, 0xf850b10,4, 0xf850b34,45, 0xf850c38,9, 0xf850c68,4, 0xf850c80,2, 0xf850cb8,14, 0xf850cf4,12, 0xf850e38,3, 0xf850e48,2, 0xf850e54,68, 0xf850f68,2, 0xf850f74,68, 0xf851088,1, 0xf851090,2, 0xf85109c,68, 0xf8511b0,2, 0xf8511bc,68, 0xf8512d0,1, 0xf8512d8,4, 0xf8512f0,3, 0xf851304,4, 0xf851318,7, 0xf851368,8, 0xf8513bc,1, 0xf8513c8,4, 0xf8513e0,3, 0xf8513f4,4, 0xf851408,7, 0xf851458,8, 0xf8514ac,1, 0xf8514b8,4, 0xf8514d0,3, 0xf8514e4,4, 0xf8514f8,7, 0xf851548,8, 0xf85159c,1, 0xf8515a8,4, 0xf8515c0,3, 0xf8515d4,4, 0xf8515e8,7, 0xf851638,8, 0xf85168c,1, 0xf851698,4, 0xf8516b0,3, 0xf8516c4,4, 0xf8516d8,7, 0xf851728,8, 0xf85177c,1, 0xf851788,4, 0xf8517a0,3, 0xf8517b4,4, 0xf8517c8,7, 0xf851818,8, 0xf85186c,1, 0xf851878,4, 0xf851890,3, 0xf8518a4,4, 0xf8518b8,7, 0xf851908,8, 0xf85195c,1, 0xf851968,4, 0xf851980,3, 0xf851994,4, 0xf8519a8,7, 0xf8519f8,8, 0xf851a4c,1, 0xf851a58,4, 0xf851a70,3, 0xf851a84,4, 0xf851a98,7, 0xf851ae8,8, 0xf851b3c,1, 0xf851b48,4, 0xf851b60,3, 0xf851b74,4, 0xf851b88,7, 0xf851bd8,8, 0xf851c2c,1, 0xf851c38,4, 0xf851c50,3, 0xf851c64,4, 0xf851c78,7, 0xf851cc8,8, 0xf851d1c,1, 0xf851d28,4, 0xf851d40,3, 0xf851d54,4, 0xf851d68,7, 0xf851db8,8, 0xf851e0c,1, 0xf851e18,4, 0xf851e30,3, 0xf851e44,4, 0xf851e58,7, 0xf851ea8,8, 0xf851efc,1, 0xf851f08,4, 0xf851f20,3, 0xf851f34,4, 0xf851f48,7, 0xf851f98,8, 0xf851fec,1, 0xf851ff8,4, 0xf852010,3, 0xf852024,4, 0xf852038,7, 0xf852088,8, 0xf8520dc,1, 0xf8520e8,4, 0xf852100,3, 0xf852114,4, 0xf852128,7, 0xf852178,8, 0xf8521cc,1, 0xf8521d8,4, 0xf8521f0,3, 0xf852204,4, 0xf852218,7, 0xf852268,8, 0xf8522bc,1, 0xf8522c8,64, 0xf852428,4, 0xf852678,27, 0xf8526ec,3, 0xf852778,1, 0xf8528c8,11, 0xf8528f8,17, 0xf852940,1, 0xf852948,1, 0xf852950,1, 0xf852978,36, 0xf852a0c,57, 0xf852af4,34, 0xf852b80,57, 0xf852c68,34, 0xf852cf4,57, 0xf852ddc,34, 0xf852e68,57, 0xf852f50,34, 0xf852fdc,57, 0xf8530c4,34, 0xf853150,57, 0xf853238,34, 0xf8532c4,57, 0xf8533ac,34, 0xf853438,57, 0xf853520,34, 0xf8535ac,57, 0xf853694,34, 0xf853720,57, 0xf853808,34, 0xf853894,57, 0xf85397c,34, 0xf853a08,57, 0xf853af0,34, 0xf853b7c,57, 0xf853c64,34, 0xf853cf0,57, 0xf853dd8,34, 0xf853e64,57, 0xf853f4c,34, 0xf853fd8,57, 0xf8540c0,34, 0xf85414c,57, 0xf854234,34, 0xf8542c0,57, 0xf8543a8,34, 0xf854434,57, 0xf85451c,34, 0xf8545a8,57, 0xf854690,34, 0xf85471c,57, 0xf854804,34, 0xf854890,57, 0xf854978,34, 0xf854a04,57, 0xf854aec,34, 0xf854b78,57, 0xf854c60,34, 0xf854cec,57, 0xf854dd4,34, 0xf854e60,57, 0xf854f48,34, 0xf854fd4,57, 0xf8550bc,34, 0xf855148,57, 0xf855230,34, 0xf8552bc,57, 0xf8553a4,34, 0xf855430,57, 0xf855518,34, 0xf8555a4,57, 0xf85568c,34, 0xf855718,57, 0xf855800,34, 0xf85588c,57, 0xf855974,34, 0xf855a00,57, 0xf855ae8,34, 0xf855b74,57, 0xf855d68,18, 0xf855ee8,2131, 0xf85830c,164, 0xf85865c,1, 0xf8591e8,1, 0xf8591f8,225, 0xf859588,7, 0xf8595a8,1, 0xf859670,1, 0xf8596a0,9, 0xf8596c8,17, 0xf859720,49, 0xf8597e8,5, 0xf859858,1, 0xf85a1e8,4, 0xf85a200,9, 0xf85a228,144, 0xf85a528,8, 0xf8a0000,3, 0xf8a0018,2, 0xf8a0024,14, 0xf8a0060,27, 0xf8a00d0,3, 0xf8a00e0,3, 0xf8a00f0,3, 0xf8a0100,14, 0xf8a0140,3, 0xf8a0150,1, 0xf8a015c,4, 0xf8a0170,1, 0xf8a0180,15, 0xf8a01c0,1, 0xf8a01c8,5, 0xf8a01e0,1, 0xf8a01f0,7, 0xf8a0218,2, 0xf8a0224,14, 0xf8a0260,27, 0xf8a02d0,3, 0xf8a02e0,3, 0xf8a02f0,3, 0xf8a0300,14, 0xf8a0340,3, 0xf8a0350,1, 0xf8a035c,4, 0xf8a0370,1, 0xf8a0380,15, 0xf8a03c0,1, 0xf8a03c8,5, 0xf8a03e0,1, 0xf8a03f0,7, 0xf8a0418,2, 0xf8a0424,14, 0xf8a0460,27, 0xf8a04d0,3, 0xf8a04e0,3, 0xf8a04f0,3, 0xf8a0500,14, 0xf8a0540,3, 0xf8a0550,1, 0xf8a055c,4, 0xf8a0570,1, 0xf8a0580,15, 0xf8a05c0,1, 0xf8a05c8,5, 0xf8a05e0,1, 0xf8a05f0,7, 0xf8a0618,2, 0xf8a0624,14, 0xf8a0660,27, 0xf8a06d0,3, 0xf8a06e0,3, 0xf8a06f0,3, 0xf8a0700,14, 0xf8a0740,3, 0xf8a0750,1, 0xf8a075c,4, 0xf8a0770,1, 0xf8a0780,15, 0xf8a07c0,1, 0xf8a07c8,5, 0xf8a07e0,1, 0xf8a07f0,7, 0xf8a0818,2, 0xf8a0824,14, 0xf8a0860,27, 0xf8a08d0,3, 0xf8a08e0,3, 0xf8a08f0,3, 0xf8a0900,14, 0xf8a0940,3, 0xf8a0950,1, 0xf8a095c,4, 0xf8a0970,1, 0xf8a0980,15, 0xf8a09c0,1, 0xf8a09c8,5, 0xf8a09e0,1, 0xf8a09f0,4, 0xf8a1844,1, 0xf8a1850,3, 0xf8a1860,3, 0xf8a1870,7, 0xf8a1894,5, 0xf8a18c0,1, 0xf8a18e0,7, 0xf8a1900,11, 0xf8a1930,3, 0xf8a1980,4, 0xf8a19c0,14, 0xf8a1c00,5, 0xf8a1c18,95, 0xf8a1da0,66, 0xf8a2000,16, 0xf8a2100,36, 0xf8a2200,44, 0xf8a2400,100, 0xf8a2600,45, 0xf8a2700,4, 0xf8a2780,20, 0xf8a2800,2, 0xf8a280c,68, 0xf8a2920,3, 0xf8a2c04,1, 0xf8a2c40,28, 0xf8a2cb4,9, 0xf8a2ce0,7, 0xf8a2d00,7, 0xf8a2d20,7, 0xf8a2d40,7, 0xf8a2d60,7, 0xf8a2d80,7, 0xf8a2da0,7, 0xf8a2dc0,7, 0xf8a2e00,9, 0xf8a2e3c,2, 0xf8a2e50,6, 0xf8a2e84,10, 0xf8a3004,1, 0xf8a31f8,130, 0xf8a3c00,1, 0xf8a3c20,10, 0xf8a3c60,8, 0xf8a3c84,5, 0xf8a3d00,32, 0xf8a3d84,1, 0xf8a3d94,6, 0xf8a3e40,71, 0xf8a4a04,3, 0xf8a4b00,33, 0xf8a4b90,3, 0xf8a4c00,12, 0xf8a4cc0,4, 0xf8a4d00,15, 0xf8a4e00,25, 0xf8a4e84,1, 0xf8a4ea0,13, 0xf8a5000,2, 0xf8a5400,4, 0xf8a5420,8, 0xf8a5444,1, 0xf8a544c,1, 0xf8a5454,1, 0xf8a545c,10, 0xf8a5800,3, 0xf8a5810,3, 0xf8a5820,3, 0xf8a5830,3, 0xf8a5840,3, 0xf8a5850,3, 0xf8a5860,3, 0xf8a5870,3, 0xf8a5880,3, 0xf8a5890,3, 0xf8a58a0,3, 0xf8a58b0,3, 0xf8a58c0,3, 0xf8a58d0,3, 0xf8a58e0,3, 0xf8a58f0,3, 0xf8a5900,3, 0xf8a5910,3, 0xf8a5920,3, 0xf8a5930,3, 0xf8a5940,3, 0xf8a5950,3, 0xf8a5960,3, 0xf8a5970,3, 0xf8a5980,3, 0xf8a5990,3, 0xf8a59a0,3, 0xf8a59b0,3, 0xf8a59c0,3, 0xf8a59d0,3, 0xf8a59e0,3, 0xf8a59f0,3, 0xf8a5a00,3, 0xf8a5a10,3, 0xf8a5a20,3, 0xf8a5a30,3, 0xf8a5a40,3, 0xf8a5a50,3, 0xf8a5a60,3, 0xf8a5a70,3, 0xf8a5a80,3, 0xf8a5a90,3, 0xf8a5aa0,3, 0xf8a5ab0,3, 0xf8a5ac0,3, 0xf8a5ad0,3, 0xf8a5ae0,3, 0xf8a5af0,3, 0xf8a5b00,3, 0xf8a5b10,3, 0xf8a5b20,3, 0xf8a5b30,3, 0xf8a5b40,3, 0xf8a5b50,3, 0xf8a5b60,3, 0xf8a5b70,3, 0xf8a5b80,3, 0xf8a5b90,3, 0xf8a5ba0,3, 0xf8a5bb0,3, 0xf8a5bc0,3, 0xf8a5bd0,3, 0xf8a5be0,3, 0xf8a5bf0,3, 0xf8a5c00,1, 0xf8a5c08,8, 0xf8a5c30,8, 0xf8a5c54,1, 0xf8a5c5c,2, 0xf8a5c68,2, 0xf8a6000,11, 0xf8a6030,1, 0xf8a6080,2, 0xf8a60c4,2, 0xf8a60d0,1, 0xf8a60d8,1, 0xf8a60e0,1, 0xf8a60f4,3, 0xf8a7000,128, 0xf8a7208,256, 0xf8a7610,145, 0xf8a8000,24, 0xf8a8078,1, 0xf8a8080,1, 0xf8f0000,1, 0xf8f000c,12, 0xf8f0040,3, 0xf8f0404,1, 0xf8f0410,6, 0xf8f0440,5, 0xf8f0460,7, 0xf8f0480,7, 0xf8f04a0,7, 0xf8f0520,4, 0xf8f0540,10, 0xf8f0580,10, 0xf8f05c0,3, 0xf8f0600,20, 0xf8f0680,3, 0xf8f0800,5, 0xf8f0a00,29, 0xf8f0a80,3, 0xf8f0c04,1, 0xf8f0d90,188, 0xf8f10a8,8, 0xf8f1100,3, 0xf8f1110,12, 0xf8f1400,1, 0xf8f1480,18, 0xf8f1500,1, 0xf8f1600,2, 0xf8f1610,3, 0xf8f1620,3, 0xf8f1630,3, 0xf8f1640,3, 0xf8f1650,3, 0xf8f1660,3, 0xf8f1670,3, 0xf8f1680,3, 0xf8f1690,3, 0xf8f16a0,3, 0xf8f16b0,3, 0xf8f16c0,3, 0xf8f16d0,3, 0xf8f16e0,3, 0xf8f16f0,3, 0xf8f1700,3, 0xf8f2000,96, 0xf8f2400,2, 0xf8f2410,3, 0xf8f2420,3, 0xf8f2430,3, 0xf8f2440,3, 0xf8f2450,3, 0xf8f2460,3, 0xf8f2470,3, 0xf8f2480,3, 0xf8f2490,3, 0xf8f24a0,3, 0xf8f24b0,3, 0xf8f24c0,3, 0xf8f24d0,3, 0xf8f24e0,3, 0xf8f24f0,3, 0xf8f2500,3, 0xf8f2600,7, 0xf8f2620,3, 0xf8f2630,1, 0xf8f2800,8, 0xf8f2900,2, 0xf8f2910,3, 0xf8f2920,3, 0xf8f2930,3, 0xf8f2940,3, 0xf8f2950,3, 0xf8f2960,3, 0xf8f2970,3, 0xf8f2980,3, 0xf8f2a00,3, 0xf8f3000,15, 0xf8f3040,3, 0xf8f3080,2, 0xf8f30c0,9, 0xf8f3100,1, 0xf8f3200,2, 0xf8f3210,3, 0xf8f3220,3, 0xf8f3230,3, 0xf8f3240,3, 0xf8f3250,3, 0xf8f3260,3, 0xf8f3270,3, 0xf8f3280,3, 0xf8f3300,2, 0xf8f3314,3, 0xf8f3324,3, 0xf8f3334,1, 0xf8f333c,1, 0xf8f3404,1, 0xf8f347c,33, 0xf8f3504,1, 0xf8f350c,1, 0xf8f3580,18, 0xf8f3600,5, 0xf8f3640,9, 0xf8f3680,9, 0xf8f36c0,27, 0xf8f3730,2, 0xf8f3740,9, 0xf8f3780,3, 0xf8f37a0,8, 0xf8f3800,6, 0xf8f3820,7, 0xf8f3840,6, 0xf8f3860,7, 0xf8f3880,3, 0xf8f3890,1, 0xf8f3900,2, 0xf8f4004,1, 0xf8f4080,34, 0xf8f4110,10, 0xf8f413c,3, 0xf8f4204,1, 0xf8f4280,36, 0xf8f4314,1, 0xf8f4400,20, 0xf8f4480,9, 0xf8f4804,1, 0xf8f4880,34, 0xf8f4910,10, 0xf8f493c,3, 0xf8f4a04,1, 0xf8f4a80,36, 0xf8f4b14,1, 0xf8f4c00,20, 0xf8f4c80,9, 0xf8f5004,1, 0xf8f5080,34, 0xf8f5110,10, 0xf8f513c,3, 0xf8f5204,1, 0xf8f5280,36, 0xf8f5314,1, 0xf8f5400,20, 0xf8f5480,9, 0xf8f5800,20, 0xf8f5884,1, 0xf8f588c,1, 0xf8f58c0,12, 0xf8f5900,3, 0xf8f5a00,20, 0xf8f5a84,1, 0xf8f5a8c,1, 0xf8f5ac0,12, 0xf8f5b00,3, 0xf8f5c00,20, 0xf8f5c84,1, 0xf8f5c8c,1, 0xf8f5cc0,12, 0xf8f5d00,3, 0xf8f5e00,7, 0xf8f5e80,20, 0xf8f5f00,12, 0xf8f5f40,11, 0xf8f6004,1, 0xf8f6014,19, 0xf8f6080,5, 0xf8f6100,3, 0xf8f6144,1, 0xf8f6150,4, 0xf8f6180,1, 0xf8f6200,1, 0xf8f6400,2, 0xf8f6410,3, 0xf8f6420,3, 0xf8f6430,3, 0xf8f6440,3, 0xf8f6450,3, 0xf8f6460,3, 0xf8f6470,3, 0xf8f6480,3, 0xf8f6490,3, 0xf8f64a0,3, 0xf8f64b0,3, 0xf8f64c0,3, 0xf8f64d0,3, 0xf8f64e0,3, 0xf8f64f0,3, 0xf8f6500,3, 0xf8f6604,1, 0xf8f6614,3, 0xf8f6640,11, 0xf8f6680,2, 0xf8f6690,3, 0xf8f66a0,3, 0xf8f66c0,9, 0xf8f6700,9, 0xf8f6740,6, 0xf8f6760,16, 0xf8f7000,2, 0xf8f7010,3, 0xf8f7020,3, 0xf8f7030,3, 0xf8f7040,3, 0xf8f7050,3, 0xf8f7060,3, 0xf8f7070,3, 0xf8f7080,3, 0xf8f7090,3, 0xf8f70a0,3, 0xf8f70b0,3, 0xf8f70c0,3, 0xf8f70d0,3, 0xf8f70e0,3, 0xf8f70f0,3, 0xf8f7100,3, 0xf8f7200,10, 0xf8f7404,1, 0xf8f7414,3, 0xf8f7800,153, 0xf900000,6, 0xf900020,3, 0xf900400,6, 0xf900424,1, 0xf900434,5, 0xf900600,128, 0xf900804,1, 0xf900828,86, 0xf900984,1, 0xf900c00,1, 0xf900c80,1, 0xf900c90,2, 0xf900d00,20, 0xf900d80,1, 0xf900da0,5, 0xf900e00,27, 0xf900f00,2, 0xf900f10,4, 0xf901000,7, 0xf980000,36, 0xf980800,10, 0xf980880,6, 0xf980900,2, 0xf980910,4, 0xf980a04,5, 0xf980a20,3, 0xf980a80,1, 0xf981000,36, 0xf981800,10, 0xf981880,6, 0xf9818a0,1, 0xf981900,2, 0xf981910,4, 0xf981a00,1, 0xf982000,36, 0xf982800,10, 0xf982880,6, 0xf9828a0,1, 0xf982900,2, 0xf982910,4, 0xf982a00,1, 0xf983000,36, 0xf983800,10, 0xf983880,6, 0xf9838a0,1, 0xf983900,2, 0xf983910,4, 0xf983a00,1, 0xf984000,36, 0xf984800,10, 0xf984880,6, 0xf9848a0,1, 0xf984900,2, 0xf984910,4, 0xf984a00,1, 0xf985000,36, 0xf985800,10, 0xf985880,6, 0xf9858a0,1, 0xf985900,2, 0xf985910,4, 0xf985a00,1, 0xf986000,36, 0xf986800,10, 0xf986880,6, 0xf9868a0,1, 0xf986900,2, 0xf986910,4, 0xf986a00,1, 0xf987000,36, 0xf987800,10, 0xf987880,6, 0xf9878a0,1, 0xf987900,2, 0xf987910,4, 0xf987a00,1, 0xf988000,36, 0xf988800,10, 0xf988880,6, 0xf9888a0,1, 0xf988900,2, 0xf988910,4, 0xf988a00,1, 0xf989000,36, 0xf989800,10, 0xf989880,6, 0xf9898a0,1, 0xf989900,2, 0xf989910,4, 0xf989a00,1, 0xf98a000,36, 0xf98a800,10, 0xf98a880,6, 0xf98a8a0,1, 0xf98a900,2, 0xf98a910,4, 0xf98aa00,1, 0xf98b000,36, 0xf98b800,10, 0xf98b880,6, 0xf98b8a0,1, 0xf98b900,2, 0xf98b910,4, 0xf98ba00,1, 0xf98c000,36, 0xf98c800,10, 0xf98c880,6, 0xf98c8a0,1, 0xf98c900,2, 0xf98c910,4, 0xf98ca00,1, 0xf98d000,36, 0xf98d800,10, 0xf98d880,6, 0xf98d8a0,1, 0xf98d900,2, 0xf98d910,4, 0xf98da00,1, 0xf98e000,36, 0xf98e800,10, 0xf98e880,6, 0xf98e8a0,1, 0xf98e900,2, 0xf98e910,4, 0xf98ea00,1, 0xf98f000,36, 0xf98f800,10, 0xf98f880,6, 0xf98f8a0,1, 0xf98f900,2, 0xf98f910,4, 0xf98fa00,1, 0xf990000,36, 0xf990800,10, 0xf990880,6, 0xf9908a0,1, 0xf990900,2, 0xf990910,4, 0xf990a00,1, 0xf991000,10, 0xf991080,5, 0xf9910a0,6, 0xf991100,2, 0xf991110,4, 0xf991200,1, 0xf992000,10, 0xf992080,5, 0xf9920a0,6, 0xf992100,2, 0xf992110,4, 0xf992200,1, 0xf993000,10, 0xf993080,5, 0xf9930a0,6, 0xf993100,2, 0xf993110,4, 0xf993200,1, 0xf994000,10, 0xf994080,5, 0xf9940a0,6, 0xf994100,2, 0xf994110,4, 0xf994200,1, 0xf995000,10, 0xf995080,5, 0xf9950a0,6, 0xf995100,2, 0xf995110,4, 0xf995200,1, 0xf996000,10, 0xf996080,5, 0xf9960a0,6, 0xf996100,2, 0xf996110,4, 0xf996200,1, 0xf997000,10, 0xf997080,5, 0xf9970a0,6, 0xf997100,2, 0xf997110,4, 0xf997200,1, 0xf998000,10, 0xf998080,5, 0xf9980a0,6, 0xf998100,2, 0xf998110,4, 0xf998200,1, 0xf999000,20, 0xf999800,10, 0xf999880,6, 0xf999900,2, 0xf999910,4, 0xf999940,2, 0xf999950,4, 0xf999a00,1, 0xf99a000,20, 0xf99a800,10, 0xf99a880,6, 0xf99a900,2, 0xf99a910,4, 0xf99a940,2, 0xf99a950,4, 0xf99aa00,1, 0xf99b000,20, 0xf99b800,10, 0xf99b880,6, 0xf99b900,2, 0xf99b910,4, 0xf99b940,2, 0xf99b950,4, 0xf99ba00,1, 0xf99c000,20, 0xf99c800,10, 0xf99c880,6, 0xf99c900,2, 0xf99c910,4, 0xf99c940,2, 0xf99c950,4, 0xf99ca00,1, 0xf99d000,20, 0xf99d800,10, 0xf99d880,6, 0xf99d900,2, 0xf99d910,4, 0xf99d940,2, 0xf99d950,4, 0xf99da00,1, 0xf99e000,20, 0xf99e800,10, 0xf99e880,6, 0xf99e900,2, 0xf99e910,4, 0xf99e940,2, 0xf99e950,4, 0xf99ea00,1, 0xf99f000,20, 0xf99f800,10, 0xf99f880,6, 0xf99f900,2, 0xf99f910,4, 0xf99f940,2, 0xf99f950,4, 0xf99fa00,1, 0xf9a0000,20, 0xf9a0800,10, 0xf9a0880,6, 0xf9a0900,2, 0xf9a0910,4, 0xf9a0940,2, 0xf9a0950,4, 0xf9a0a00,1, 0xf9a1000,20, 0xf9a1800,10, 0xf9a1880,5, 0xf9a18a0,6, 0xf9a1900,2, 0xf9a1910,4, 0xf9a1a00,1, 0xf9a2000,20, 0xf9a2800,1, 0xf9a3000,20, 0xf9a3800,1, 0xf9a4000,20, 0xf9a4800,10, 0xf9a4880,5, 0xf9a48a0,6, 0xf9a4900,2, 0xf9a4910,4, 0xf9a4a00,1, 0xf9a5000,20, 0xf9a5800,1, 0xf9a6000,20, 0xf9a6800,1, 0xf9a7000,20, 0xf9a7800,10, 0xf9a7880,5, 0xf9a78a0,6, 0xf9a7900,2, 0xf9a7910,4, 0xf9a7a00,1, 0xf9a8000,20, 0xf9a8800,1, 0xf9a9000,20, 0xf9a9800,1, 0xf9aa000,20, 0xf9aa800,10, 0xf9aa880,5, 0xf9aa8a0,6, 0xf9aa900,2, 0xf9aa910,4, 0xf9aaa00,1, 0xf9ab000,20, 0xf9ab800,1, 0xf9ac000,20, 0xf9ac800,1, 0xf9ad000,20, 0xf9ad800,10, 0xf9ad880,5, 0xf9ad8a0,6, 0xf9ad900,2, 0xf9ad910,4, 0xf9ada00,1, 0xf9ae000,20, 0xf9ae800,1, 0xf9af000,20, 0xf9af800,1, 0xf9b0000,20, 0xf9b0800,10, 0xf9b0880,5, 0xf9b08a0,6, 0xf9b0900,2, 0xf9b0910,4, 0xf9b0a00,1, 0xf9b1000,20, 0xf9b1800,1, 0xf9b2000,20, 0xf9b2800,1, 0xf9b3000,20, 0xf9b3800,10, 0xf9b3880,5, 0xf9b38a0,6, 0xf9b3900,2, 0xf9b3910,4, 0xf9b3a00,1, 0xf9b4000,20, 0xf9b4800,1, 0xf9b5000,20, 0xf9b5800,1, 0xf9b6000,20, 0xf9b6800,10, 0xf9b6880,5, 0xf9b68a0,6, 0xf9b6900,2, 0xf9b6910,4, 0xf9b6a00,1, 0xf9b7000,20, 0xf9b7800,1, 0xf9b8000,20, 0xf9b8800,1, 0xf9ba000,20, 0xf9ba800,10, 0xf9ba880,6, 0xf9ba900,2, 0xf9ba910,4, 0xf9baa00,8, 0xf9baa24,1, 0xf9baa40,8, 0xf9baa64,1, 0xf9baa80,8, 0xf9baaa4,1, 0xf9baac0,8, 0xf9baae4,1, 0xf9bab00,1, 0xf9bc000,20, 0xf9bc800,10, 0xf9bc880,6, 0xf9bc900,2, 0xf9bc910,4, 0xf9bca00,8, 0xf9bca24,1, 0xf9bca40,8, 0xf9bca64,1, 0xf9bca80,8, 0xf9bcaa4,1, 0xf9bcac0,8, 0xf9bcae4,1, 0xf9bcb00,1, 0xf9be000,20, 0xf9be800,10, 0xf9be880,6, 0xf9be900,2, 0xf9be910,4, 0xf9bea00,8, 0xf9bea24,1, 0xf9bea40,8, 0xf9bea64,1, 0xf9bea80,8, 0xf9beaa4,1, 0xf9beac0,8, 0xf9beae4,1, 0xf9beb00,1, 0xf9c0000,20, 0xf9c0800,10, 0xf9c0880,6, 0xf9c0900,2, 0xf9c0910,4, 0xf9c0a00,8, 0xf9c0a24,1, 0xf9c0a40,8, 0xf9c0a64,1, 0xf9c0a80,8, 0xf9c0aa4,1, 0xf9c0ac0,8, 0xf9c0ae4,1, 0xf9c0b00,1, 0xf9c2000,20, 0xf9c2800,10, 0xf9c2880,6, 0xf9c2900,2, 0xf9c2910,4, 0xf9c2a00,8, 0xf9c2a24,1, 0xf9c2a40,8, 0xf9c2a64,1, 0xf9c2a80,8, 0xf9c2aa4,1, 0xf9c2ac0,8, 0xf9c2ae4,1, 0xf9c2b00,1, 0xf9c4000,20, 0xf9c4800,10, 0xf9c4880,6, 0xf9c4900,2, 0xf9c4910,4, 0xf9c4a00,8, 0xf9c4a24,1, 0xf9c4a40,8, 0xf9c4a64,1, 0xf9c4a80,8, 0xf9c4aa4,1, 0xf9c4ac0,8, 0xf9c4ae4,1, 0xf9c4b00,1, 0xf9c6000,20, 0xf9c6800,10, 0xf9c6880,6, 0xf9c6900,2, 0xf9c6910,4, 0xf9c6a00,8, 0xf9c6a24,1, 0xf9c6a40,8, 0xf9c6a64,1, 0xf9c6a80,8, 0xf9c6aa4,1, 0xf9c6ac0,8, 0xf9c6ae4,1, 0xf9c6b00,1, 0xf9c8000,20, 0xf9c8800,10, 0xf9c8880,6, 0xf9c8900,2, 0xf9c8910,4, 0xf9c8a00,8, 0xf9c8a24,1, 0xf9c8a40,8, 0xf9c8a64,1, 0xf9c8a80,8, 0xf9c8aa4,1, 0xf9c8ac0,8, 0xf9c8ae4,1, 0xf9c8b00,1, 0xf9f9000,10, 0xf9fa000,10, 0xf9fb000,10, 0xfa00000,198, 0xfa00400,2, 0xfa00440,9, 0xfa00480,7, 0xfa00800,198, 0xfa00c00,2, 0xfa00c40,9, 0xfa00c80,7, 0xfa01000,198, 0xfa01400,198, 0xfa01804,6, 0xfa01824,6, 0xfa01880,2, 0xfa01904,1, 0xfa01918,28, 0xfa019a0,6, 0xfa019c0,6, 0xfa01c00,2, 0xfa01d00,2, 0xfa01e04,1, 0xfa01e74,43, 0xfa02000,2, 0xfa02100,2, 0xfa02204,1, 0xfa02274,43, 0xfa02400,3, 0xfa02600,27, 0xfa02680,4, 0xfa026c0,25, 0xfa02740,6, 0xfa02760,4, 0xfa02774,11, 0xfa027a4,4, 0xfa02800,4, 0xfa02900,34, 0xfa02a00,4, 0xfa02b00,34, 0xfa02c00,3, 0xfa02c10,12, 0xfa02e00,56, 0xfa02ee4,4, 0xfa02f00,4, 0xfa03000,1, 0xfa08000,4, 0xfa08100,42, 0xfa08200,1, 0xfa08210,3, 0xfa08220,3, 0xfa08230,3, 0xfa08240,1, 0xfa08248,3, 0xfa08400,4, 0xfa08500,58, 0xfa08600,1, 0xfa08610,3, 0xfa08620,3, 0xfa08630,3, 0xfa08640,1, 0xfa08648,3, 0xfa08800,4, 0xfa08900,36, 0xfa08a00,1, 0xfa08c00,4, 0xfa08c80,27, 0xfa08d00,1, 0xfa08d10,3, 0xfa08d20,3, 0xfa08d30,3, 0xfa08d40,1, 0xfa08d48,3, 0xfa08e00,4, 0xfa08e80,31, 0xfa08f00,1, 0xfa08f10,3, 0xfa08f20,3, 0xfa08f30,3, 0xfa08f40,1, 0xfa08f48,3, 0xfa09000,4, 0xfa09040,13, 0xfa09080,1, 0xfa09200,15, 0xfa09240,4, 0xfa09260,17, 0xfa092c0,6, 0xfa092e0,2, 0xfa092ec,3, 0xfa09300,8, 0xfa09324,8, 0xfa09400,68, 0xfa09600,60, 0xfa09700,4, 0xfa09720,5, 0xfa09740,1, 0xfa09780,2, 0xfa0978c,2, 0xfa097a0,1, 0xfa097c0,12, 0xfa09800,7, 0xfa09820,5, 0xfa09900,49, 0xfa09a00,1, 0xfa09a08,23, 0xfa09a84,1, 0xfa09a8c,1, 0xfa09a94,1, 0xfa09a9c,2, 0xfa09ac0,1, 0xfa09c00,10, 0xfa09c40,1, 0xfa09c50,3, 0xfa09c80,10, 0xfa09cc0,12, 0xfa09d00,3, 0xfa09e00,1, 0xfa0a000,4, 0xfa0a100,42, 0xfa0a200,1, 0xfa0a210,3, 0xfa0a220,3, 0xfa0a230,3, 0xfa0a240,1, 0xfa0a248,3, 0xfa0a400,4, 0xfa0a500,58, 0xfa0a600,1, 0xfa0a610,3, 0xfa0a620,3, 0xfa0a630,3, 0xfa0a640,1, 0xfa0a648,3, 0xfa0a800,4, 0xfa0a900,36, 0xfa0aa00,1, 0xfa0ac00,4, 0xfa0ac80,27, 0xfa0ad00,1, 0xfa0ad10,3, 0xfa0ad20,3, 0xfa0ad30,3, 0xfa0ad40,1, 0xfa0ad48,3, 0xfa0ae00,4, 0xfa0ae80,31, 0xfa0af00,1, 0xfa0af10,3, 0xfa0af20,3, 0xfa0af30,3, 0xfa0af40,1, 0xfa0af48,3, 0xfa0b000,4, 0xfa0b040,13, 0xfa0b080,1, 0xfa0b200,15, 0xfa0b240,4, 0xfa0b260,17, 0xfa0b2c0,6, 0xfa0b2e0,2, 0xfa0b2ec,3, 0xfa0b300,8, 0xfa0b324,8, 0xfa0b400,68, 0xfa0b600,60, 0xfa0b700,4, 0xfa0b720,5, 0xfa0b740,1, 0xfa0b780,2, 0xfa0b78c,2, 0xfa0b7a0,1, 0xfa0b7c0,12, 0xfa0b800,7, 0xfa0b820,5, 0xfa0b900,49, 0xfa0ba00,1, 0xfa0ba08,23, 0xfa0ba84,1, 0xfa0ba8c,1, 0xfa0ba94,1, 0xfa0ba9c,2, 0xfa0bac0,1, 0xfa0bc00,10, 0xfa0bc40,1, 0xfa0bc50,3, 0xfa0bc80,10, 0xfa0bcc0,12, 0xfa0bd00,3, 0xfa0be00,1, 0xfa0c000,20, 0xfa0c080,3, 0xfa0c090,1, 0xfa0c098,4, 0xfa10000,49, 0xfa10100,12, 0xfa10140,4, 0xfa10184,1, 0xfa10198,2, 0xfa101a4,1, 0xfa101b8,7, 0xfa101e0,4, 0xfa10200,20, 0xfa10280,3, 0xfa10290,9, 0xfa102c0,6, 0xfa102e0,1, 0xfa102e8,7, 0xfa10400,49, 0xfa10500,12, 0xfa10540,4, 0xfa10584,1, 0xfa10598,2, 0xfa105a4,1, 0xfa105b8,7, 0xfa105e0,4, 0xfa10600,20, 0xfa10680,3, 0xfa10690,9, 0xfa106c0,6, 0xfa106e0,1, 0xfa106e8,7, 0xfa10800,49, 0xfa10900,12, 0xfa10940,4, 0xfa10984,1, 0xfa10998,2, 0xfa109a4,1, 0xfa109b8,7, 0xfa109e0,4, 0xfa10a00,20, 0xfa10a80,3, 0xfa10a90,9, 0xfa10ac0,6, 0xfa10ae0,1, 0xfa10ae8,7, 0xfa10c00,49, 0xfa10d00,12, 0xfa10d40,4, 0xfa10d84,1, 0xfa10d98,2, 0xfa10da4,1, 0xfa10db8,7, 0xfa10de0,4, 0xfa10e00,20, 0xfa10e80,3, 0xfa10e90,9, 0xfa10ec0,6, 0xfa10ee0,1, 0xfa10ee8,7, 0xfa11000,49, 0xfa11100,12, 0xfa11140,4, 0xfa11184,1, 0xfa11198,2, 0xfa111a4,1, 0xfa111b8,7, 0xfa111e0,4, 0xfa11200,20, 0xfa11280,3, 0xfa11290,9, 0xfa112c0,6, 0xfa112e0,1, 0xfa112e8,7, 0xfa11400,49, 0xfa11500,12, 0xfa11540,4, 0xfa11584,1, 0xfa11598,2, 0xfa115a4,1, 0xfa115b8,7, 0xfa115e0,4, 0xfa11600,20, 0xfa11680,3, 0xfa11690,9, 0xfa116c0,6, 0xfa116e0,1, 0xfa116e8,7, 0xfa11800,49, 0xfa11900,12, 0xfa11940,4, 0xfa11984,1, 0xfa11998,2, 0xfa119a4,1, 0xfa119b8,7, 0xfa119e0,4, 0xfa11a00,20, 0xfa11a80,3, 0xfa11a90,9, 0xfa11ac0,6, 0xfa11ae0,1, 0xfa11ae8,7, 0xfa12000,20, 0xfa12080,10, 0xfa12100,20, 0xfa12180,10, 0xfa12200,12, 0xfa12400,20, 0xfa12480,10, 0xfa12500,20, 0xfa12580,10, 0xfa12600,12, 0xfa12800,3, 0xfa12840,12, 0xfa12880,12, 0xfa128c0,12, 0xfa12900,12, 0xfa12940,12, 0xfa12980,12, 0xfa129c0,12, 0xfa12a00,12, 0xfa12c00,12, 0xfa12c40,7, 0xfa12c60,10, 0xfa13004,1, 0xfa13044,43, 0xfa13100,7, 0xfa13120,7, 0xfa13140,2, 0xfa1314c,2, 0xfa13160,2, 0xfa1316c,2, 0xfa13180,18, 0xfa13200,2, 0xfa13220,10, 0xfa13260,20, 0xfa132c0,9, 0xfa13300,15, 0xfa13340,9, 0xfa13380,6, 0xfa133a0,4, 0xfa13400,5, 0xfa14000,53, 0xfa14100,3, 0xfa14110,15, 0xfa14200,53, 0xfa14300,3, 0xfa14310,15, 0xfa14400,5, 0xfa14420,5, 0xfa14440,18, 0xfa14800,3, 0xfa14810,2, 0xfa14820,3, 0xfa14830,2, 0xfa14840,1, 0xfa15000,7, 0xfa15020,7, 0xfa15080,19, 0xfa15100,19, 0xfa15180,25, 0xfa15200,20, 0xfa15280,20, 0xfa15300,8, 0xfa15340,4, 0xfa15380,15, 0xfa153c0,15, 0xfa15400,9, 0xfa15430,5, 0xfa16000,6, 0xfa16020,1, 0xfa16028,2, 0xfa16040,11, 0xfa16070,2, 0xfa18000,82, 0xfa18200,2, 0xfa18240,9, 0xfa18280,7, 0xfa18400,82, 0xfa18604,6, 0xfa18700,15, 0xfa18740,9, 0xfa18780,6, 0xfa187a0,6, 0xfa18800,2, 0xfa18810,3, 0xfa18880,24, 0xfa188e4,1, 0xfa188f0,12, 0xfa20000,22, 0xfa20080,22, 0xfa20100,5, 0xfa20120,5, 0xfa20140,3, 0xfa20160,16, 0xfa201c0,7, 0xfa201e0,2, 0xfa20200,7, 0xfa20220,2, 0xfa20400,15, 0xfa20440,3, 0xfa20450,3, 0xfa20460,24, 0xfa20500,15, 0xfa20540,3, 0xfa20550,3, 0xfa20560,24, 0xfa20600,15, 0xfa20640,3, 0xfa20650,3, 0xfa20660,24, 0xfa20700,15, 0xfa20740,3, 0xfa20750,3, 0xfa20760,24, 0xfa20800,4, 0xfa20820,16, 0xfa20880,10, 0xfa208c0,10, 0xfa20900,6, 0xfa20920,6, 0xfa20940,4, 0xfa20980,13, 0xfa209c0,13, 0xfa20a00,9, 0xfa21000,86, 0xfa21200,2, 0xfa21240,9, 0xfa21280,7, 0xfa21400,86, 0xfa21604,6, 0xfa21800,86, 0xfa21a00,2, 0xfa21a40,9, 0xfa21a80,7, 0xfa21c00,86, 0xfa21e04,6, 0xfa22000,15, 0xfa22040,4, 0xfa22060,17, 0xfa220c0,6, 0xfa220e0,4, 0xfa220f4,11, 0xfa22128,38, 0xfa221c4,2, 0xfa221d0,4, 0xfa22200,1, 0xfa24000,22, 0xfa24080,22, 0xfa24100,5, 0xfa24120,5, 0xfa24140,3, 0xfa24160,16, 0xfa241c0,7, 0xfa241e0,2, 0xfa24200,7, 0xfa24220,2, 0xfa24400,15, 0xfa24440,3, 0xfa24450,3, 0xfa24460,24, 0xfa24500,15, 0xfa24540,3, 0xfa24550,3, 0xfa24560,24, 0xfa24600,15, 0xfa24640,3, 0xfa24650,3, 0xfa24660,24, 0xfa24700,15, 0xfa24740,3, 0xfa24750,3, 0xfa24760,24, 0xfa24800,4, 0xfa24820,16, 0xfa24880,10, 0xfa248c0,10, 0xfa24900,6, 0xfa24920,6, 0xfa24940,4, 0xfa24980,13, 0xfa249c0,13, 0xfa24a00,9, 0xfa25000,86, 0xfa25200,2, 0xfa25240,9, 0xfa25280,7, 0xfa25400,86, 0xfa25604,6, 0xfa25800,86, 0xfa25a00,2, 0xfa25a40,9, 0xfa25a80,7, 0xfa25c00,86, 0xfa25e04,6, 0xfa26000,15, 0xfa26040,4, 0xfa26060,17, 0xfa260c0,6, 0xfa260e0,4, 0xfa260f4,11, 0xfa26128,38, 0xfa261c4,2, 0xfa261d0,4, 0xfa26200,1, 0xfa28000,9, 0xfa28040,9, 0xfa28080,5, 0xfa28100,21, 0xfa28160,5, 0xfa28180,45, 0xfa28240,13, 0xfa28280,9, 0xfa28400,9, 0xfa28440,9, 0xfa28480,5, 0xfa28500,21, 0xfa28560,5, 0xfa28580,45, 0xfa28640,13, 0xfa28680,9, 0xfa28800,12, 0xfa28900,15, 0xfa28940,4, 0xfa28960,17, 0xfa289c0,6, 0xfa289e0,4, 0xfa289f4,29, 0xfa2c000,30, 0xfa2c080,3, 0xfa2c090,19, 0xfa2c100,30, 0xfa2c180,3, 0xfa2c190,19, 0xfa2c200,30, 0xfa2c280,3, 0xfa2c290,19, 0xfa2c300,30, 0xfa2c380,3, 0xfa2c390,19, 0xfa2c400,30, 0xfa2c480,3, 0xfa2c490,19, 0xfa2c500,30, 0xfa2c580,3, 0xfa2c590,19, 0xfa2c600,30, 0xfa2c680,3, 0xfa2c690,19, 0xfa2c700,30, 0xfa2c780,3, 0xfa2c790,19, 0xfa2c800,12, 0xfa2c844,1, 0xfa2c854,8, 0xfa2c880,7, 0xfa2c8a0,2, 0xfa2c8ac,2, 0xfa2c8c0,26, 0xfa2c980,4, 0xfa2c9a0,5, 0xfa2c9c0,1, 0xfa2d000,3, 0xfa2d010,3, 0xfa2d020,3, 0xfa2d030,3, 0xfa2d040,3, 0xfa2d050,3, 0xfa2d060,3, 0xfa2d070,3, 0xfa2d080,6, 0xfa2d0a0,6, 0xfa2d0c0,6, 0xfa2d0e0,6, 0xfa2d100,6, 0xfa2d120,6, 0xfa2d140,6, 0xfa2d160,6, 0xfa2d200,68, 0xfa2d400,1, 0xfa2d804,1, 0xfa2d844,54, 0xfa2da00,12, 0xfa2da40,12, 0xfa2da80,12, 0xfa2dac0,12, 0xfa2db00,12, 0xfa2db40,12, 0xfa2db80,12, 0xfa2dbc0,12, 0xfa2dc00,28, 0xfa2dc80,10, 0xfa2e000,3, 0xfa2e020,6, 0xfa2e040,6, 0xfa2e060,15, 0xfa2e100,26, 0xfa2e180,15, 0xfa2e200,15, 0xfa2e240,4, 0xfa2e260,17, 0xfa2e2c0,6, 0xfa2e2e0,4, 0xfa2e2f4,18, 0xfa2e340,4, 0xfa2e360,17, 0xfa2e3c0,6, 0xfa2e3e0,4, 0xfa2e3f4,15, 0xfa30000,1, 0xfa31000,1020, 0xfa32000,194, 0xfa33000,1020, 0xfa34000,1020, 0xfa35000,1020, 0xfa36000,1020, 0xfa37000,1020, 0xfa38000,1020, 0xfa39000,1020, 0xfa3a000,1020, 0xfa3b000,194, 0xfa3c000,3, 0xfa3c010,13, 0xfa3c080,16, 0xfa3c100,20, 0xfa3c184,1, 0xfa3c18c,4, 0xfa3c200,3, 0xfa3c210,13, 0xfa3c280,16, 0xfa3c300,20, 0xfa3c384,1, 0xfa3c38c,4, 0xfa3c400,3, 0xfa3c410,13, 0xfa3c480,16, 0xfa3c500,20, 0xfa3c584,1, 0xfa3c58c,4, 0xfa3c600,3, 0xfa3c610,13, 0xfa3c680,16, 0xfa3c700,20, 0xfa3c784,1, 0xfa3c78c,4, 0xfa3c800,3, 0xfa3c810,13, 0xfa3c880,16, 0xfa3c900,20, 0xfa3c984,1, 0xfa3c98c,4, 0xfa3ca00,3, 0xfa3ca10,13, 0xfa3ca80,16, 0xfa3cb00,20, 0xfa3cb84,1, 0xfa3cb8c,4, 0xfa3cc00,3, 0xfa3cc10,13, 0xfa3cc80,16, 0xfa3cd00,20, 0xfa3cd84,1, 0xfa3cd8c,4, 0xfa3ce00,3, 0xfa3ce10,13, 0xfa3ce80,16, 0xfa3cf00,20, 0xfa3cf84,1, 0xfa3cf8c,4, 0xfa3d000,3, 0xfa3d010,13, 0xfa3d080,16, 0xfa3d100,20, 0xfa3d184,1, 0xfa3d18c,4, 0xfa3d200,18, 0xfa3d250,2, 0xfa3d260,4, 0xfa3e000,1, 0xfa3e014,1, 0xfa3e01c,19, 0xfa3e080,1, 0xfa3e094,1, 0xfa3e09c,19, 0xfa3e100,8, 0xfa3e200,13, 0xfa3e240,9, 0xfa3e280,12, 0xfa3e2c0,2, 0xfa3e2e0,12, 0xfa40000,3, 0xfa40080,20, 0xfa40100,10, 0xfa40140,1, 0xfa40154,1, 0xfa4015c,2, 0xfa40200,15, 0xfa40240,4, 0xfa40260,17, 0xfa402c0,6, 0xfa402e0,2, 0xfa402ec,3, 0xfa40300,8, 0xfa40324,1, 0xfa40400,4, 0xfa40440,20, 0xfa404c0,9, 0xfa40500,33, 0xfa40600,11, 0xfa40640,11, 0xfa40680,1, 0xfa42000,1, 0xfa42200,4, 0xfa42300,53, 0xfa42400,4, 0xfa42500,40, 0xfa42600,15, 0xfa42640,4, 0xfa42660,17, 0xfa426c0,6, 0xfa426e0,2, 0xfa426ec,3, 0xfa42700,8, 0xfa42724,1, 0xfa42800,20, 0xfa42c00,53, 0xfa42d00,53, 0xfa42e00,1, 0xfa43000,40, 0xfa43100,40, 0xfa43200,1, 0xfa43400,1, 0xfa43804,1, 0xfa43844,39, 0xfa43900,3, 0xfa43a00,3, 0xfa43a44,1, 0xfa43a50,4, 0xfa43a80,1, 0xfa44000,2, 0xfa44200,27, 0xfa44280,4, 0xfa442c0,25, 0xfa44340,6, 0xfa44360,2, 0xfa4436c,3, 0xfa44380,8, 0xfa443a4,1, 0xfa44400,12, 0xfa44440,1, 0xfa48000,3, 0xfa48080,20, 0xfa48100,10, 0xfa48140,1, 0xfa48154,1, 0xfa4815c,2, 0xfa48200,15, 0xfa48240,4, 0xfa48260,17, 0xfa482c0,6, 0xfa482e0,2, 0xfa482ec,3, 0xfa48300,8, 0xfa48324,1, 0xfa48400,4, 0xfa48440,20, 0xfa484c0,9, 0xfa48500,33, 0xfa48600,11, 0xfa48640,11, 0xfa48680,1, 0xfa4a000,1, 0xfa4a200,4, 0xfa4a300,53, 0xfa4a400,4, 0xfa4a500,40, 0xfa4a600,15, 0xfa4a640,4, 0xfa4a660,17, 0xfa4a6c0,6, 0xfa4a6e0,2, 0xfa4a6ec,3, 0xfa4a700,8, 0xfa4a724,1, 0xfa4a800,20, 0xfa4ac00,53, 0xfa4ad00,53, 0xfa4ae00,1, 0xfa4b000,40, 0xfa4b100,40, 0xfa4b200,1, 0xfa4b400,1, 0xfa4b804,1, 0xfa4b844,39, 0xfa4b900,3, 0xfa4ba00,3, 0xfa4ba44,1, 0xfa4ba50,4, 0xfa4ba80,1, 0xfa4c000,2, 0xfa4c200,27, 0xfa4c280,4, 0xfa4c2c0,25, 0xfa4c340,6, 0xfa4c360,2, 0xfa4c36c,3, 0xfa4c380,8, 0xfa4c3a4,1, 0xfa4c400,12, 0xfa4c440,1, 0xfa50000,4, 0xfa50020,3, 0xfa50030,2, 0xfa50200,1, 0xfa50224,10, 0xfa50250,5, 0xfa50280,1, 0xfa50288,24, 0xfa50300,3, 0xfa50404,1, 0xfa50414,5, 0xfa50500,36, 0xfa50600,3, 0xfa50800,2, 0xfa51000,1, 0xfa51008,21, 0xfa51080,1, 0xfa51088,21, 0xfa51100,1, 0xfa51108,21, 0xfa51180,1, 0xfa51188,21, 0xfa51200,1, 0xfa51208,21, 0xfa51280,1, 0xfa51288,21, 0xfa51300,1, 0xfa51308,21, 0xfa51380,1, 0xfa51388,21, 0xfa51400,21, 0xfa51800,142, 0xfa51c00,1, 0xfa52000,4, 0xfa52100,39, 0xfa52200,3, 0xfa52214,3, 0xfa54004,1, 0xfa54020,16, 0xfa54080,2, 0xfa54094,1, 0xfa5409c,2, 0xfa540c0,6, 0xfa54100,8, 0xfa58004,17, 0xfa58054,1, 0xfa5805c,2, 0xfa58080,1, 0xfa580a0,2, 0xfa580b4,4, 0xfa58100,2, 0xfa58200,8, 0xfa58400,1, 0xfa58600,27, 0xfa58680,4, 0xfa586c0,25, 0xfa58740,6, 0xfa58760,2, 0xfa5876c,3, 0xfa58780,8, 0xfa587a4,3, 0xfa58800,44, 0xfa58900,1, 0xfa60000,1, 0xfa60200,27, 0xfa60280,4, 0xfa602c0,25, 0xfa60340,6, 0xfa60360,2, 0xfa6036c,3, 0xfa60380,8, 0xfa603a4,1, 0xfa60400,20, 0xfa60480,3, 0xfa60490,9, 0xfa80000,198, 0xfa80400,2, 0xfa80440,9, 0xfa80480,7, 0xfa80800,198, 0xfa80c00,2, 0xfa80c40,9, 0xfa80c80,7, 0xfa81000,198, 0xfa81400,198, 0xfa81804,6, 0xfa81824,6, 0xfa81880,2, 0xfa81904,1, 0xfa81918,28, 0xfa819a0,6, 0xfa819c0,6, 0xfa81c00,2, 0xfa81d00,2, 0xfa81e04,1, 0xfa81e74,43, 0xfa82000,2, 0xfa82100,2, 0xfa82204,1, 0xfa82274,43, 0xfa82400,3, 0xfa82600,27, 0xfa82680,4, 0xfa826c0,25, 0xfa82740,6, 0xfa82760,4, 0xfa82774,11, 0xfa827a4,4, 0xfa82800,4, 0xfa82900,34, 0xfa82a00,4, 0xfa82b00,34, 0xfa82c00,3, 0xfa82c10,12, 0xfa82e00,56, 0xfa82ee4,4, 0xfa82f00,4, 0xfa83000,1, 0xfa88000,4, 0xfa88100,42, 0xfa88200,1, 0xfa88210,3, 0xfa88220,3, 0xfa88230,3, 0xfa88240,1, 0xfa88248,3, 0xfa88400,4, 0xfa88500,58, 0xfa88600,1, 0xfa88610,3, 0xfa88620,3, 0xfa88630,3, 0xfa88640,1, 0xfa88648,3, 0xfa88800,4, 0xfa88900,36, 0xfa88a00,1, 0xfa88c00,4, 0xfa88c80,27, 0xfa88d00,1, 0xfa88d10,3, 0xfa88d20,3, 0xfa88d30,3, 0xfa88d40,1, 0xfa88d48,3, 0xfa88e00,4, 0xfa88e80,31, 0xfa88f00,1, 0xfa88f10,3, 0xfa88f20,3, 0xfa88f30,3, 0xfa88f40,1, 0xfa88f48,3, 0xfa89000,4, 0xfa89040,13, 0xfa89080,1, 0xfa89200,15, 0xfa89240,4, 0xfa89260,17, 0xfa892c0,6, 0xfa892e0,2, 0xfa892ec,3, 0xfa89300,8, 0xfa89324,8, 0xfa89400,68, 0xfa89600,60, 0xfa89700,4, 0xfa89720,5, 0xfa89740,1, 0xfa89780,2, 0xfa8978c,2, 0xfa897a0,1, 0xfa897c0,12, 0xfa89800,7, 0xfa89820,5, 0xfa89900,49, 0xfa89a00,1, 0xfa89a08,23, 0xfa89a84,1, 0xfa89a8c,1, 0xfa89a94,1, 0xfa89a9c,2, 0xfa89ac0,1, 0xfa89c00,10, 0xfa89c40,1, 0xfa89c50,3, 0xfa89c80,10, 0xfa89cc0,12, 0xfa89d00,3, 0xfa89e00,1, 0xfa8a000,4, 0xfa8a100,42, 0xfa8a200,1, 0xfa8a210,3, 0xfa8a220,3, 0xfa8a230,3, 0xfa8a240,1, 0xfa8a248,3, 0xfa8a400,4, 0xfa8a500,58, 0xfa8a600,1, 0xfa8a610,3, 0xfa8a620,3, 0xfa8a630,3, 0xfa8a640,1, 0xfa8a648,3, 0xfa8a800,4, 0xfa8a900,36, 0xfa8aa00,1, 0xfa8ac00,4, 0xfa8ac80,27, 0xfa8ad00,1, 0xfa8ad10,3, 0xfa8ad20,3, 0xfa8ad30,3, 0xfa8ad40,1, 0xfa8ad48,3, 0xfa8ae00,4, 0xfa8ae80,31, 0xfa8af00,1, 0xfa8af10,3, 0xfa8af20,3, 0xfa8af30,3, 0xfa8af40,1, 0xfa8af48,3, 0xfa8b000,4, 0xfa8b040,13, 0xfa8b080,1, 0xfa8b200,15, 0xfa8b240,4, 0xfa8b260,17, 0xfa8b2c0,6, 0xfa8b2e0,2, 0xfa8b2ec,3, 0xfa8b300,8, 0xfa8b324,8, 0xfa8b400,68, 0xfa8b600,60, 0xfa8b700,4, 0xfa8b720,5, 0xfa8b740,1, 0xfa8b780,2, 0xfa8b78c,2, 0xfa8b7a0,1, 0xfa8b7c0,12, 0xfa8b800,7, 0xfa8b820,5, 0xfa8b900,49, 0xfa8ba00,1, 0xfa8ba08,23, 0xfa8ba84,1, 0xfa8ba8c,1, 0xfa8ba94,1, 0xfa8ba9c,2, 0xfa8bac0,1, 0xfa8bc00,10, 0xfa8bc40,1, 0xfa8bc50,3, 0xfa8bc80,10, 0xfa8bcc0,12, 0xfa8bd00,3, 0xfa8be00,1, 0xfa8c000,20, 0xfa8c080,3, 0xfa8c090,1, 0xfa8c098,4, 0xfa90000,49, 0xfa90100,12, 0xfa90140,4, 0xfa90184,1, 0xfa90198,2, 0xfa901a4,1, 0xfa901b8,7, 0xfa901e0,4, 0xfa90200,20, 0xfa90280,3, 0xfa90290,9, 0xfa902c0,6, 0xfa902e0,1, 0xfa902e8,7, 0xfa90400,49, 0xfa90500,12, 0xfa90540,4, 0xfa90584,1, 0xfa90598,2, 0xfa905a4,1, 0xfa905b8,7, 0xfa905e0,4, 0xfa90600,20, 0xfa90680,3, 0xfa90690,9, 0xfa906c0,6, 0xfa906e0,1, 0xfa906e8,7, 0xfa90800,49, 0xfa90900,12, 0xfa90940,4, 0xfa90984,1, 0xfa90998,2, 0xfa909a4,1, 0xfa909b8,7, 0xfa909e0,4, 0xfa90a00,20, 0xfa90a80,3, 0xfa90a90,9, 0xfa90ac0,6, 0xfa90ae0,1, 0xfa90ae8,7, 0xfa90c00,49, 0xfa90d00,12, 0xfa90d40,4, 0xfa90d84,1, 0xfa90d98,2, 0xfa90da4,1, 0xfa90db8,7, 0xfa90de0,4, 0xfa90e00,20, 0xfa90e80,3, 0xfa90e90,9, 0xfa90ec0,6, 0xfa90ee0,1, 0xfa90ee8,7, 0xfa91000,49, 0xfa91100,12, 0xfa91140,4, 0xfa91184,1, 0xfa91198,2, 0xfa911a4,1, 0xfa911b8,7, 0xfa911e0,4, 0xfa91200,20, 0xfa91280,3, 0xfa91290,9, 0xfa912c0,6, 0xfa912e0,1, 0xfa912e8,7, 0xfa91400,49, 0xfa91500,12, 0xfa91540,4, 0xfa91584,1, 0xfa91598,2, 0xfa915a4,1, 0xfa915b8,7, 0xfa915e0,4, 0xfa91600,20, 0xfa91680,3, 0xfa91690,9, 0xfa916c0,6, 0xfa916e0,1, 0xfa916e8,7, 0xfa91800,49, 0xfa91900,12, 0xfa91940,4, 0xfa91984,1, 0xfa91998,2, 0xfa919a4,1, 0xfa919b8,7, 0xfa919e0,4, 0xfa91a00,20, 0xfa91a80,3, 0xfa91a90,9, 0xfa91ac0,6, 0xfa91ae0,1, 0xfa91ae8,7, 0xfa92000,20, 0xfa92080,10, 0xfa92100,20, 0xfa92180,10, 0xfa92200,12, 0xfa92400,20, 0xfa92480,10, 0xfa92500,20, 0xfa92580,10, 0xfa92600,12, 0xfa92800,3, 0xfa92840,12, 0xfa92880,12, 0xfa928c0,12, 0xfa92900,12, 0xfa92940,12, 0xfa92980,12, 0xfa929c0,12, 0xfa92a00,12, 0xfa92c00,12, 0xfa92c40,7, 0xfa92c60,10, 0xfa93004,1, 0xfa93044,43, 0xfa93100,7, 0xfa93120,7, 0xfa93140,2, 0xfa9314c,2, 0xfa93160,2, 0xfa9316c,2, 0xfa93180,18, 0xfa93200,2, 0xfa93220,10, 0xfa93260,20, 0xfa932c0,9, 0xfa93300,15, 0xfa93340,9, 0xfa93380,6, 0xfa933a0,4, 0xfa93400,5, 0xfa94000,53, 0xfa94100,3, 0xfa94110,15, 0xfa94200,53, 0xfa94300,3, 0xfa94310,15, 0xfa94400,5, 0xfa94420,5, 0xfa94440,18, 0xfa94800,3, 0xfa94810,2, 0xfa94820,3, 0xfa94830,2, 0xfa94840,1, 0xfa95000,7, 0xfa95020,7, 0xfa95080,19, 0xfa95100,19, 0xfa95180,25, 0xfa95200,20, 0xfa95280,20, 0xfa95300,8, 0xfa95340,4, 0xfa95380,15, 0xfa953c0,15, 0xfa95400,9, 0xfa95430,5, 0xfa96000,6, 0xfa96020,1, 0xfa96028,2, 0xfa96040,11, 0xfa96070,2, 0xfa98000,82, 0xfa98200,2, 0xfa98240,9, 0xfa98280,7, 0xfa98400,82, 0xfa98604,6, 0xfa98700,15, 0xfa98740,9, 0xfa98780,6, 0xfa987a0,6, 0xfa98800,2, 0xfa98810,3, 0xfa98880,24, 0xfa988e4,1, 0xfa988f0,12, 0xfaa0000,22, 0xfaa0080,22, 0xfaa0100,5, 0xfaa0120,5, 0xfaa0140,3, 0xfaa0160,16, 0xfaa01c0,7, 0xfaa01e0,2, 0xfaa0200,7, 0xfaa0220,2, 0xfaa0400,15, 0xfaa0440,3, 0xfaa0450,3, 0xfaa0460,24, 0xfaa0500,15, 0xfaa0540,3, 0xfaa0550,3, 0xfaa0560,24, 0xfaa0600,15, 0xfaa0640,3, 0xfaa0650,3, 0xfaa0660,24, 0xfaa0700,15, 0xfaa0740,3, 0xfaa0750,3, 0xfaa0760,24, 0xfaa0800,4, 0xfaa0820,16, 0xfaa0880,10, 0xfaa08c0,10, 0xfaa0900,6, 0xfaa0920,6, 0xfaa0940,4, 0xfaa0980,13, 0xfaa09c0,13, 0xfaa0a00,9, 0xfaa1000,86, 0xfaa1200,2, 0xfaa1240,9, 0xfaa1280,7, 0xfaa1400,86, 0xfaa1604,6, 0xfaa1800,86, 0xfaa1a00,2, 0xfaa1a40,9, 0xfaa1a80,7, 0xfaa1c00,86, 0xfaa1e04,6, 0xfaa2000,15, 0xfaa2040,4, 0xfaa2060,17, 0xfaa20c0,6, 0xfaa20e0,4, 0xfaa20f4,11, 0xfaa2128,38, 0xfaa21c4,2, 0xfaa21d0,4, 0xfaa2200,1, 0xfaa4000,22, 0xfaa4080,22, 0xfaa4100,5, 0xfaa4120,5, 0xfaa4140,3, 0xfaa4160,16, 0xfaa41c0,7, 0xfaa41e0,2, 0xfaa4200,7, 0xfaa4220,2, 0xfaa4400,15, 0xfaa4440,3, 0xfaa4450,3, 0xfaa4460,24, 0xfaa4500,15, 0xfaa4540,3, 0xfaa4550,3, 0xfaa4560,24, 0xfaa4600,15, 0xfaa4640,3, 0xfaa4650,3, 0xfaa4660,24, 0xfaa4700,15, 0xfaa4740,3, 0xfaa4750,3, 0xfaa4760,24, 0xfaa4800,4, 0xfaa4820,16, 0xfaa4880,10, 0xfaa48c0,10, 0xfaa4900,6, 0xfaa4920,6, 0xfaa4940,4, 0xfaa4980,13, 0xfaa49c0,13, 0xfaa4a00,9, 0xfaa5000,86, 0xfaa5200,2, 0xfaa5240,9, 0xfaa5280,7, 0xfaa5400,86, 0xfaa5604,6, 0xfaa5800,86, 0xfaa5a00,2, 0xfaa5a40,9, 0xfaa5a80,7, 0xfaa5c00,86, 0xfaa5e04,6, 0xfaa6000,15, 0xfaa6040,4, 0xfaa6060,17, 0xfaa60c0,6, 0xfaa60e0,4, 0xfaa60f4,11, 0xfaa6128,38, 0xfaa61c4,2, 0xfaa61d0,4, 0xfaa6200,1, 0xfaa8000,9, 0xfaa8040,9, 0xfaa8080,5, 0xfaa8100,21, 0xfaa8160,5, 0xfaa8180,45, 0xfaa8240,13, 0xfaa8280,9, 0xfaa8400,9, 0xfaa8440,9, 0xfaa8480,5, 0xfaa8500,21, 0xfaa8560,5, 0xfaa8580,45, 0xfaa8640,13, 0xfaa8680,9, 0xfaa8800,12, 0xfaa8900,15, 0xfaa8940,4, 0xfaa8960,17, 0xfaa89c0,6, 0xfaa89e0,4, 0xfaa89f4,29, 0xfaac000,30, 0xfaac080,3, 0xfaac090,19, 0xfaac100,30, 0xfaac180,3, 0xfaac190,19, 0xfaac200,30, 0xfaac280,3, 0xfaac290,19, 0xfaac300,30, 0xfaac380,3, 0xfaac390,19, 0xfaac400,30, 0xfaac480,3, 0xfaac490,19, 0xfaac500,30, 0xfaac580,3, 0xfaac590,19, 0xfaac600,30, 0xfaac680,3, 0xfaac690,19, 0xfaac700,30, 0xfaac780,3, 0xfaac790,19, 0xfaac800,12, 0xfaac844,1, 0xfaac854,8, 0xfaac880,7, 0xfaac8a0,2, 0xfaac8ac,2, 0xfaac8c0,26, 0xfaac980,4, 0xfaac9a0,5, 0xfaac9c0,1, 0xfaad000,3, 0xfaad010,3, 0xfaad020,3, 0xfaad030,3, 0xfaad040,3, 0xfaad050,3, 0xfaad060,3, 0xfaad070,3, 0xfaad080,6, 0xfaad0a0,6, 0xfaad0c0,6, 0xfaad0e0,6, 0xfaad100,6, 0xfaad120,6, 0xfaad140,6, 0xfaad160,6, 0xfaad200,68, 0xfaad400,1, 0xfaad804,1, 0xfaad844,54, 0xfaada00,12, 0xfaada40,12, 0xfaada80,12, 0xfaadac0,12, 0xfaadb00,12, 0xfaadb40,12, 0xfaadb80,12, 0xfaadbc0,12, 0xfaadc00,28, 0xfaadc80,10, 0xfaae000,3, 0xfaae020,6, 0xfaae040,6, 0xfaae060,15, 0xfaae100,26, 0xfaae180,15, 0xfaae200,15, 0xfaae240,4, 0xfaae260,17, 0xfaae2c0,6, 0xfaae2e0,4, 0xfaae2f4,18, 0xfaae340,4, 0xfaae360,17, 0xfaae3c0,6, 0xfaae3e0,4, 0xfaae3f4,15, 0xfab0000,1, 0xfab1000,1020, 0xfab2000,194, 0xfab3000,1020, 0xfab4000,1020, 0xfab5000,1020, 0xfab6000,1020, 0xfab7000,1020, 0xfab8000,1020, 0xfab9000,1020, 0xfaba000,1020, 0xfabb000,194, 0xfabc000,3, 0xfabc010,13, 0xfabc080,16, 0xfabc100,20, 0xfabc184,1, 0xfabc18c,4, 0xfabc200,3, 0xfabc210,13, 0xfabc280,16, 0xfabc300,20, 0xfabc384,1, 0xfabc38c,4, 0xfabc400,3, 0xfabc410,13, 0xfabc480,16, 0xfabc500,20, 0xfabc584,1, 0xfabc58c,4, 0xfabc600,3, 0xfabc610,13, 0xfabc680,16, 0xfabc700,20, 0xfabc784,1, 0xfabc78c,4, 0xfabc800,3, 0xfabc810,13, 0xfabc880,16, 0xfabc900,20, 0xfabc984,1, 0xfabc98c,4, 0xfabca00,3, 0xfabca10,13, 0xfabca80,16, 0xfabcb00,20, 0xfabcb84,1, 0xfabcb8c,4, 0xfabcc00,3, 0xfabcc10,13, 0xfabcc80,16, 0xfabcd00,20, 0xfabcd84,1, 0xfabcd8c,4, 0xfabce00,3, 0xfabce10,13, 0xfabce80,16, 0xfabcf00,20, 0xfabcf84,1, 0xfabcf8c,4, 0xfabd000,3, 0xfabd010,13, 0xfabd080,16, 0xfabd100,20, 0xfabd184,1, 0xfabd18c,4, 0xfabd200,18, 0xfabd250,2, 0xfabd260,4, 0xfabe000,1, 0xfabe014,1, 0xfabe01c,19, 0xfabe080,1, 0xfabe094,1, 0xfabe09c,19, 0xfabe100,8, 0xfabe200,13, 0xfabe240,9, 0xfabe280,12, 0xfabe2c0,2, 0xfabe2e0,12, 0xfac0000,3, 0xfac0080,20, 0xfac0100,10, 0xfac0140,1, 0xfac0154,1, 0xfac015c,2, 0xfac0200,15, 0xfac0240,4, 0xfac0260,17, 0xfac02c0,6, 0xfac02e0,2, 0xfac02ec,3, 0xfac0300,8, 0xfac0324,1, 0xfac0400,4, 0xfac0440,20, 0xfac04c0,9, 0xfac0500,33, 0xfac0600,11, 0xfac0640,11, 0xfac0680,1, 0xfac2000,1, 0xfac2200,4, 0xfac2300,53, 0xfac2400,4, 0xfac2500,40, 0xfac2600,15, 0xfac2640,4, 0xfac2660,17, 0xfac26c0,6, 0xfac26e0,2, 0xfac26ec,3, 0xfac2700,8, 0xfac2724,1, 0xfac2800,20, 0xfac2c00,53, 0xfac2d00,53, 0xfac2e00,1, 0xfac3000,40, 0xfac3100,40, 0xfac3200,1, 0xfac3400,1, 0xfac3804,1, 0xfac3844,39, 0xfac3900,3, 0xfac3a00,3, 0xfac3a44,1, 0xfac3a50,4, 0xfac3a80,1, 0xfac4000,2, 0xfac4200,27, 0xfac4280,4, 0xfac42c0,25, 0xfac4340,6, 0xfac4360,2, 0xfac436c,3, 0xfac4380,8, 0xfac43a4,1, 0xfac4400,12, 0xfac4440,1, 0xfac8000,3, 0xfac8080,20, 0xfac8100,10, 0xfac8140,1, 0xfac8154,1, 0xfac815c,2, 0xfac8200,15, 0xfac8240,4, 0xfac8260,17, 0xfac82c0,6, 0xfac82e0,2, 0xfac82ec,3, 0xfac8300,8, 0xfac8324,1, 0xfac8400,4, 0xfac8440,20, 0xfac84c0,9, 0xfac8500,33, 0xfac8600,11, 0xfac8640,11, 0xfac8680,1, 0xfaca000,1, 0xfaca200,4, 0xfaca300,53, 0xfaca400,4, 0xfaca500,40, 0xfaca600,15, 0xfaca640,4, 0xfaca660,17, 0xfaca6c0,6, 0xfaca6e0,2, 0xfaca6ec,3, 0xfaca700,8, 0xfaca724,1, 0xfaca800,20, 0xfacac00,53, 0xfacad00,53, 0xfacae00,1, 0xfacb000,40, 0xfacb100,40, 0xfacb200,1, 0xfacb400,1, 0xfacb804,1, 0xfacb844,39, 0xfacb900,3, 0xfacba00,3, 0xfacba44,1, 0xfacba50,4, 0xfacba80,1, 0xfacc000,2, 0xfacc200,27, 0xfacc280,4, 0xfacc2c0,25, 0xfacc340,6, 0xfacc360,2, 0xfacc36c,3, 0xfacc380,8, 0xfacc3a4,1, 0xfacc400,12, 0xfacc440,1, 0xfad0000,4, 0xfad0020,3, 0xfad0030,2, 0xfad0200,1, 0xfad0224,10, 0xfad0250,5, 0xfad0280,1, 0xfad0288,24, 0xfad0300,3, 0xfad0404,1, 0xfad0414,5, 0xfad0500,36, 0xfad0600,3, 0xfad0800,2, 0xfad1000,1, 0xfad1008,21, 0xfad1080,1, 0xfad1088,21, 0xfad1100,1, 0xfad1108,21, 0xfad1180,1, 0xfad1188,21, 0xfad1200,1, 0xfad1208,21, 0xfad1280,1, 0xfad1288,21, 0xfad1300,1, 0xfad1308,21, 0xfad1380,1, 0xfad1388,21, 0xfad1400,21, 0xfad1800,142, 0xfad1c00,1, 0xfad2000,4, 0xfad2100,39, 0xfad2200,3, 0xfad2214,3, 0xfad4004,1, 0xfad4020,16, 0xfad4080,2, 0xfad4094,1, 0xfad409c,2, 0xfad40c0,6, 0xfad4100,8, 0xfad8004,17, 0xfad8054,1, 0xfad805c,2, 0xfad8080,1, 0xfad80a0,2, 0xfad80b4,4, 0xfad8100,2, 0xfad8200,8, 0xfad8400,1, 0xfad8600,27, 0xfad8680,4, 0xfad86c0,25, 0xfad8740,6, 0xfad8760,2, 0xfad876c,3, 0xfad8780,8, 0xfad87a4,3, 0xfad8800,44, 0xfad8900,1, 0xfae0000,1, 0xfae0200,27, 0xfae0280,4, 0xfae02c0,25, 0xfae0340,6, 0xfae0360,2, 0xfae036c,3, 0xfae0380,8, 0xfae03a4,1, 0xfae0400,20, 0xfae0480,3, 0xfae0490,9, 0xfb00000,198, 0xfb00400,2, 0xfb00440,9, 0xfb00480,7, 0xfb00800,198, 0xfb00c00,2, 0xfb00c40,9, 0xfb00c80,7, 0xfb01000,198, 0xfb01400,198, 0xfb01804,6, 0xfb01824,6, 0xfb01880,2, 0xfb01904,1, 0xfb01918,28, 0xfb019a0,6, 0xfb019c0,6, 0xfb01c00,2, 0xfb01d00,2, 0xfb01e04,1, 0xfb01e74,43, 0xfb02000,2, 0xfb02100,2, 0xfb02204,1, 0xfb02274,43, 0xfb02400,3, 0xfb02600,27, 0xfb02680,4, 0xfb026c0,25, 0xfb02740,6, 0xfb02760,4, 0xfb02774,11, 0xfb027a4,4, 0xfb02800,4, 0xfb02900,34, 0xfb02a00,4, 0xfb02b00,34, 0xfb02c00,3, 0xfb02c10,12, 0xfb02e00,56, 0xfb02ee4,4, 0xfb02f00,4, 0xfb03000,1, 0xfb08000,4, 0xfb08100,42, 0xfb08200,1, 0xfb08210,3, 0xfb08220,3, 0xfb08230,3, 0xfb08240,1, 0xfb08248,3, 0xfb08400,4, 0xfb08500,58, 0xfb08600,1, 0xfb08610,3, 0xfb08620,3, 0xfb08630,3, 0xfb08640,1, 0xfb08648,3, 0xfb08800,4, 0xfb08900,36, 0xfb08a00,1, 0xfb08c00,4, 0xfb08c80,27, 0xfb08d00,1, 0xfb08d10,3, 0xfb08d20,3, 0xfb08d30,3, 0xfb08d40,1, 0xfb08d48,3, 0xfb08e00,4, 0xfb08e80,31, 0xfb08f00,1, 0xfb08f10,3, 0xfb08f20,3, 0xfb08f30,3, 0xfb08f40,1, 0xfb08f48,3, 0xfb09000,4, 0xfb09040,13, 0xfb09080,1, 0xfb09200,15, 0xfb09240,4, 0xfb09260,17, 0xfb092c0,6, 0xfb092e0,2, 0xfb092ec,3, 0xfb09300,8, 0xfb09324,8, 0xfb09400,68, 0xfb09600,60, 0xfb09700,4, 0xfb09720,5, 0xfb09740,1, 0xfb09780,2, 0xfb0978c,2, 0xfb097a0,1, 0xfb097c0,12, 0xfb09800,7, 0xfb09820,5, 0xfb09900,49, 0xfb09a00,1, 0xfb09a08,23, 0xfb09a84,1, 0xfb09a8c,1, 0xfb09a94,1, 0xfb09a9c,2, 0xfb09ac0,1, 0xfb09c00,10, 0xfb09c40,1, 0xfb09c50,3, 0xfb09c80,10, 0xfb09cc0,12, 0xfb09d00,3, 0xfb09e00,1, 0xfb0a000,4, 0xfb0a100,42, 0xfb0a200,1, 0xfb0a210,3, 0xfb0a220,3, 0xfb0a230,3, 0xfb0a240,1, 0xfb0a248,3, 0xfb0a400,4, 0xfb0a500,58, 0xfb0a600,1, 0xfb0a610,3, 0xfb0a620,3, 0xfb0a630,3, 0xfb0a640,1, 0xfb0a648,3, 0xfb0a800,4, 0xfb0a900,36, 0xfb0aa00,1, 0xfb0ac00,4, 0xfb0ac80,27, 0xfb0ad00,1, 0xfb0ad10,3, 0xfb0ad20,3, 0xfb0ad30,3, 0xfb0ad40,1, 0xfb0ad48,3, 0xfb0ae00,4, 0xfb0ae80,31, 0xfb0af00,1, 0xfb0af10,3, 0xfb0af20,3, 0xfb0af30,3, 0xfb0af40,1, 0xfb0af48,3, 0xfb0b000,4, 0xfb0b040,13, 0xfb0b080,1, 0xfb0b200,15, 0xfb0b240,4, 0xfb0b260,17, 0xfb0b2c0,6, 0xfb0b2e0,2, 0xfb0b2ec,3, 0xfb0b300,8, 0xfb0b324,8, 0xfb0b400,68, 0xfb0b600,60, 0xfb0b700,4, 0xfb0b720,5, 0xfb0b740,1, 0xfb0b780,2, 0xfb0b78c,2, 0xfb0b7a0,1, 0xfb0b7c0,12, 0xfb0b800,7, 0xfb0b820,5, 0xfb0b900,49, 0xfb0ba00,1, 0xfb0ba08,23, 0xfb0ba84,1, 0xfb0ba8c,1, 0xfb0ba94,1, 0xfb0ba9c,2, 0xfb0bac0,1, 0xfb0bc00,10, 0xfb0bc40,1, 0xfb0bc50,3, 0xfb0bc80,10, 0xfb0bcc0,12, 0xfb0bd00,3, 0xfb0be00,1, 0xfb0c000,20, 0xfb0c080,3, 0xfb0c090,1, 0xfb0c098,4, 0xfb10000,49, 0xfb10100,12, 0xfb10140,4, 0xfb10184,1, 0xfb10198,2, 0xfb101a4,1, 0xfb101b8,7, 0xfb101e0,4, 0xfb10200,20, 0xfb10280,3, 0xfb10290,9, 0xfb102c0,6, 0xfb102e0,1, 0xfb102e8,7, 0xfb10400,49, 0xfb10500,12, 0xfb10540,4, 0xfb10584,1, 0xfb10598,2, 0xfb105a4,1, 0xfb105b8,7, 0xfb105e0,4, 0xfb10600,20, 0xfb10680,3, 0xfb10690,9, 0xfb106c0,6, 0xfb106e0,1, 0xfb106e8,7, 0xfb10800,49, 0xfb10900,12, 0xfb10940,4, 0xfb10984,1, 0xfb10998,2, 0xfb109a4,1, 0xfb109b8,7, 0xfb109e0,4, 0xfb10a00,20, 0xfb10a80,3, 0xfb10a90,9, 0xfb10ac0,6, 0xfb10ae0,1, 0xfb10ae8,7, 0xfb10c00,49, 0xfb10d00,12, 0xfb10d40,4, 0xfb10d84,1, 0xfb10d98,2, 0xfb10da4,1, 0xfb10db8,7, 0xfb10de0,4, 0xfb10e00,20, 0xfb10e80,3, 0xfb10e90,9, 0xfb10ec0,6, 0xfb10ee0,1, 0xfb10ee8,7, 0xfb11000,49, 0xfb11100,12, 0xfb11140,4, 0xfb11184,1, 0xfb11198,2, 0xfb111a4,1, 0xfb111b8,7, 0xfb111e0,4, 0xfb11200,20, 0xfb11280,3, 0xfb11290,9, 0xfb112c0,6, 0xfb112e0,1, 0xfb112e8,7, 0xfb11400,49, 0xfb11500,12, 0xfb11540,4, 0xfb11584,1, 0xfb11598,2, 0xfb115a4,1, 0xfb115b8,7, 0xfb115e0,4, 0xfb11600,20, 0xfb11680,3, 0xfb11690,9, 0xfb116c0,6, 0xfb116e0,1, 0xfb116e8,7, 0xfb11800,49, 0xfb11900,12, 0xfb11940,4, 0xfb11984,1, 0xfb11998,2, 0xfb119a4,1, 0xfb119b8,7, 0xfb119e0,4, 0xfb11a00,20, 0xfb11a80,3, 0xfb11a90,9, 0xfb11ac0,6, 0xfb11ae0,1, 0xfb11ae8,7, 0xfb12000,20, 0xfb12080,10, 0xfb12100,20, 0xfb12180,10, 0xfb12200,12, 0xfb12400,20, 0xfb12480,10, 0xfb12500,20, 0xfb12580,10, 0xfb12600,12, 0xfb12800,3, 0xfb12840,12, 0xfb12880,12, 0xfb128c0,12, 0xfb12900,12, 0xfb12940,12, 0xfb12980,12, 0xfb129c0,12, 0xfb12a00,12, 0xfb12c00,12, 0xfb12c40,7, 0xfb12c60,10, 0xfb13004,1, 0xfb13044,43, 0xfb13100,7, 0xfb13120,7, 0xfb13140,2, 0xfb1314c,2, 0xfb13160,2, 0xfb1316c,2, 0xfb13180,18, 0xfb13200,2, 0xfb13220,10, 0xfb13260,20, 0xfb132c0,9, 0xfb13300,15, 0xfb13340,9, 0xfb13380,6, 0xfb133a0,4, 0xfb13400,5, 0xfb14000,53, 0xfb14100,3, 0xfb14110,15, 0xfb14200,53, 0xfb14300,3, 0xfb14310,15, 0xfb14400,5, 0xfb14420,5, 0xfb14440,18, 0xfb14800,3, 0xfb14810,2, 0xfb14820,3, 0xfb14830,2, 0xfb14840,1, 0xfb15000,7, 0xfb15020,7, 0xfb15080,19, 0xfb15100,19, 0xfb15180,25, 0xfb15200,20, 0xfb15280,20, 0xfb15300,8, 0xfb15340,4, 0xfb15380,15, 0xfb153c0,15, 0xfb15400,9, 0xfb15430,5, 0xfb16000,6, 0xfb16020,1, 0xfb16028,2, 0xfb16040,11, 0xfb16070,2, 0xfb18000,82, 0xfb18200,2, 0xfb18240,9, 0xfb18280,7, 0xfb18400,82, 0xfb18604,6, 0xfb18700,15, 0xfb18740,9, 0xfb18780,6, 0xfb187a0,6, 0xfb18800,2, 0xfb18810,3, 0xfb18880,24, 0xfb188e4,1, 0xfb188f0,12, 0xfb20000,22, 0xfb20080,22, 0xfb20100,5, 0xfb20120,5, 0xfb20140,3, 0xfb20160,16, 0xfb201c0,7, 0xfb201e0,2, 0xfb20200,7, 0xfb20220,2, 0xfb20400,15, 0xfb20440,3, 0xfb20450,3, 0xfb20460,24, 0xfb20500,15, 0xfb20540,3, 0xfb20550,3, 0xfb20560,24, 0xfb20600,15, 0xfb20640,3, 0xfb20650,3, 0xfb20660,24, 0xfb20700,15, 0xfb20740,3, 0xfb20750,3, 0xfb20760,24, 0xfb20800,4, 0xfb20820,16, 0xfb20880,10, 0xfb208c0,10, 0xfb20900,6, 0xfb20920,6, 0xfb20940,4, 0xfb20980,13, 0xfb209c0,13, 0xfb20a00,9, 0xfb21000,86, 0xfb21200,2, 0xfb21240,9, 0xfb21280,7, 0xfb21400,86, 0xfb21604,6, 0xfb21800,86, 0xfb21a00,2, 0xfb21a40,9, 0xfb21a80,7, 0xfb21c00,86, 0xfb21e04,6, 0xfb22000,15, 0xfb22040,4, 0xfb22060,17, 0xfb220c0,6, 0xfb220e0,4, 0xfb220f4,11, 0xfb22128,38, 0xfb221c4,2, 0xfb221d0,4, 0xfb22200,1, 0xfb24000,22, 0xfb24080,22, 0xfb24100,5, 0xfb24120,5, 0xfb24140,3, 0xfb24160,16, 0xfb241c0,7, 0xfb241e0,2, 0xfb24200,7, 0xfb24220,2, 0xfb24400,15, 0xfb24440,3, 0xfb24450,3, 0xfb24460,24, 0xfb24500,15, 0xfb24540,3, 0xfb24550,3, 0xfb24560,24, 0xfb24600,15, 0xfb24640,3, 0xfb24650,3, 0xfb24660,24, 0xfb24700,15, 0xfb24740,3, 0xfb24750,3, 0xfb24760,24, 0xfb24800,4, 0xfb24820,16, 0xfb24880,10, 0xfb248c0,10, 0xfb24900,6, 0xfb24920,6, 0xfb24940,4, 0xfb24980,13, 0xfb249c0,13, 0xfb24a00,9, 0xfb25000,86, 0xfb25200,2, 0xfb25240,9, 0xfb25280,7, 0xfb25400,86, 0xfb25604,6, 0xfb25800,86, 0xfb25a00,2, 0xfb25a40,9, 0xfb25a80,7, 0xfb25c00,86, 0xfb25e04,6, 0xfb26000,15, 0xfb26040,4, 0xfb26060,17, 0xfb260c0,6, 0xfb260e0,4, 0xfb260f4,11, 0xfb26128,38, 0xfb261c4,2, 0xfb261d0,4, 0xfb26200,1, 0xfb28000,9, 0xfb28040,9, 0xfb28080,5, 0xfb28100,21, 0xfb28160,5, 0xfb28180,45, 0xfb28240,13, 0xfb28280,9, 0xfb28400,9, 0xfb28440,9, 0xfb28480,5, 0xfb28500,21, 0xfb28560,5, 0xfb28580,45, 0xfb28640,13, 0xfb28680,9, 0xfb28800,12, 0xfb28900,15, 0xfb28940,4, 0xfb28960,17, 0xfb289c0,6, 0xfb289e0,4, 0xfb289f4,29, 0xfb2c000,30, 0xfb2c080,3, 0xfb2c090,19, 0xfb2c100,30, 0xfb2c180,3, 0xfb2c190,19, 0xfb2c200,30, 0xfb2c280,3, 0xfb2c290,19, 0xfb2c300,30, 0xfb2c380,3, 0xfb2c390,19, 0xfb2c400,30, 0xfb2c480,3, 0xfb2c490,19, 0xfb2c500,30, 0xfb2c580,3, 0xfb2c590,19, 0xfb2c600,30, 0xfb2c680,3, 0xfb2c690,19, 0xfb2c700,30, 0xfb2c780,3, 0xfb2c790,19, 0xfb2c800,12, 0xfb2c844,1, 0xfb2c854,8, 0xfb2c880,7, 0xfb2c8a0,2, 0xfb2c8ac,2, 0xfb2c8c0,26, 0xfb2c980,4, 0xfb2c9a0,5, 0xfb2c9c0,1, 0xfb2d000,3, 0xfb2d010,3, 0xfb2d020,3, 0xfb2d030,3, 0xfb2d040,3, 0xfb2d050,3, 0xfb2d060,3, 0xfb2d070,3, 0xfb2d080,6, 0xfb2d0a0,6, 0xfb2d0c0,6, 0xfb2d0e0,6, 0xfb2d100,6, 0xfb2d120,6, 0xfb2d140,6, 0xfb2d160,6, 0xfb2d200,68, 0xfb2d400,1, 0xfb2d804,1, 0xfb2d844,54, 0xfb2da00,12, 0xfb2da40,12, 0xfb2da80,12, 0xfb2dac0,12, 0xfb2db00,12, 0xfb2db40,12, 0xfb2db80,12, 0xfb2dbc0,12, 0xfb2dc00,28, 0xfb2dc80,10, 0xfb2e000,3, 0xfb2e020,6, 0xfb2e040,6, 0xfb2e060,15, 0xfb2e100,26, 0xfb2e180,15, 0xfb2e200,15, 0xfb2e240,4, 0xfb2e260,17, 0xfb2e2c0,6, 0xfb2e2e0,4, 0xfb2e2f4,18, 0xfb2e340,4, 0xfb2e360,17, 0xfb2e3c0,6, 0xfb2e3e0,4, 0xfb2e3f4,15, 0xfb30000,1, 0xfb31000,1020, 0xfb32000,194, 0xfb33000,1020, 0xfb34000,1020, 0xfb35000,1020, 0xfb36000,1020, 0xfb37000,1020, 0xfb38000,1020, 0xfb39000,1020, 0xfb3a000,1020, 0xfb3b000,194, 0xfb3c000,3, 0xfb3c010,13, 0xfb3c080,16, 0xfb3c100,20, 0xfb3c184,1, 0xfb3c18c,4, 0xfb3c200,3, 0xfb3c210,13, 0xfb3c280,16, 0xfb3c300,20, 0xfb3c384,1, 0xfb3c38c,4, 0xfb3c400,3, 0xfb3c410,13, 0xfb3c480,16, 0xfb3c500,20, 0xfb3c584,1, 0xfb3c58c,4, 0xfb3c600,3, 0xfb3c610,13, 0xfb3c680,16, 0xfb3c700,20, 0xfb3c784,1, 0xfb3c78c,4, 0xfb3c800,3, 0xfb3c810,13, 0xfb3c880,16, 0xfb3c900,20, 0xfb3c984,1, 0xfb3c98c,4, 0xfb3ca00,3, 0xfb3ca10,13, 0xfb3ca80,16, 0xfb3cb00,20, 0xfb3cb84,1, 0xfb3cb8c,4, 0xfb3cc00,3, 0xfb3cc10,13, 0xfb3cc80,16, 0xfb3cd00,20, 0xfb3cd84,1, 0xfb3cd8c,4, 0xfb3ce00,3, 0xfb3ce10,13, 0xfb3ce80,16, 0xfb3cf00,20, 0xfb3cf84,1, 0xfb3cf8c,4, 0xfb3d000,3, 0xfb3d010,13, 0xfb3d080,16, 0xfb3d100,20, 0xfb3d184,1, 0xfb3d18c,4, 0xfb3d200,18, 0xfb3d250,2, 0xfb3d260,4, 0xfb3e000,1, 0xfb3e014,1, 0xfb3e01c,19, 0xfb3e080,1, 0xfb3e094,1, 0xfb3e09c,19, 0xfb3e100,8, 0xfb3e200,13, 0xfb3e240,9, 0xfb3e280,12, 0xfb3e2c0,2, 0xfb3e2e0,12, 0xfb40000,3, 0xfb40080,20, 0xfb40100,10, 0xfb40140,1, 0xfb40154,1, 0xfb4015c,2, 0xfb40200,15, 0xfb40240,4, 0xfb40260,17, 0xfb402c0,6, 0xfb402e0,2, 0xfb402ec,3, 0xfb40300,8, 0xfb40324,1, 0xfb40400,4, 0xfb40440,20, 0xfb404c0,9, 0xfb40500,33, 0xfb40600,11, 0xfb40640,11, 0xfb40680,1, 0xfb42000,1, 0xfb42200,4, 0xfb42300,53, 0xfb42400,4, 0xfb42500,40, 0xfb42600,15, 0xfb42640,4, 0xfb42660,17, 0xfb426c0,6, 0xfb426e0,2, 0xfb426ec,3, 0xfb42700,8, 0xfb42724,1, 0xfb42800,20, 0xfb42c00,53, 0xfb42d00,53, 0xfb42e00,1, 0xfb43000,40, 0xfb43100,40, 0xfb43200,1, 0xfb43400,1, 0xfb43804,1, 0xfb43844,39, 0xfb43900,3, 0xfb43a00,3, 0xfb43a44,1, 0xfb43a50,4, 0xfb43a80,1, 0xfb44000,2, 0xfb44200,27, 0xfb44280,4, 0xfb442c0,25, 0xfb44340,6, 0xfb44360,2, 0xfb4436c,3, 0xfb44380,8, 0xfb443a4,1, 0xfb44400,12, 0xfb44440,1, 0xfb48000,3, 0xfb48080,20, 0xfb48100,10, 0xfb48140,1, 0xfb48154,1, 0xfb4815c,2, 0xfb48200,15, 0xfb48240,4, 0xfb48260,17, 0xfb482c0,6, 0xfb482e0,2, 0xfb482ec,3, 0xfb48300,8, 0xfb48324,1, 0xfb48400,4, 0xfb48440,20, 0xfb484c0,9, 0xfb48500,33, 0xfb48600,11, 0xfb48640,11, 0xfb48680,1, 0xfb4a000,1, 0xfb4a200,4, 0xfb4a300,53, 0xfb4a400,4, 0xfb4a500,40, 0xfb4a600,15, 0xfb4a640,4, 0xfb4a660,17, 0xfb4a6c0,6, 0xfb4a6e0,2, 0xfb4a6ec,3, 0xfb4a700,8, 0xfb4a724,1, 0xfb4a800,20, 0xfb4ac00,53, 0xfb4ad00,53, 0xfb4ae00,1, 0xfb4b000,40, 0xfb4b100,40, 0xfb4b200,1, 0xfb4b400,1, 0xfb4b804,1, 0xfb4b844,39, 0xfb4b900,3, 0xfb4ba00,3, 0xfb4ba44,1, 0xfb4ba50,4, 0xfb4ba80,1, 0xfb4c000,2, 0xfb4c200,27, 0xfb4c280,4, 0xfb4c2c0,25, 0xfb4c340,6, 0xfb4c360,2, 0xfb4c36c,3, 0xfb4c380,8, 0xfb4c3a4,1, 0xfb4c400,12, 0xfb4c440,1, 0xfb50000,4, 0xfb50020,3, 0xfb50030,2, 0xfb50200,1, 0xfb50224,10, 0xfb50250,5, 0xfb50280,1, 0xfb50288,24, 0xfb50300,3, 0xfb50404,1, 0xfb50414,5, 0xfb50500,36, 0xfb50600,3, 0xfb50800,2, 0xfb51000,1, 0xfb51008,21, 0xfb51080,1, 0xfb51088,21, 0xfb51100,1, 0xfb51108,21, 0xfb51180,1, 0xfb51188,21, 0xfb51200,1, 0xfb51208,21, 0xfb51280,1, 0xfb51288,21, 0xfb51300,1, 0xfb51308,21, 0xfb51380,1, 0xfb51388,21, 0xfb51400,21, 0xfb51800,142, 0xfb51c00,1, 0xfb52000,4, 0xfb52100,39, 0xfb52200,3, 0xfb52214,3, 0xfb54004,1, 0xfb54020,16, 0xfb54080,2, 0xfb54094,1, 0xfb5409c,2, 0xfb540c0,6, 0xfb54100,8, 0xfb58004,17, 0xfb58054,1, 0xfb5805c,2, 0xfb58080,1, 0xfb580a0,2, 0xfb580b4,4, 0xfb58100,2, 0xfb58200,8, 0xfb58400,1, 0xfb58600,27, 0xfb58680,4, 0xfb586c0,25, 0xfb58740,6, 0xfb58760,2, 0xfb5876c,3, 0xfb58780,8, 0xfb587a4,3, 0xfb58800,44, 0xfb58900,1, 0xfb60000,1, 0xfb60200,27, 0xfb60280,4, 0xfb602c0,25, 0xfb60340,6, 0xfb60360,2, 0xfb6036c,3, 0xfb60380,8, 0xfb603a4,1, 0xfb60400,20, 0xfb60480,3, 0xfb60490,9, 0xfb80000,198, 0xfb80400,2, 0xfb80440,9, 0xfb80480,7, 0xfb80800,198, 0xfb80c00,2, 0xfb80c40,9, 0xfb80c80,7, 0xfb81000,198, 0xfb81400,198, 0xfb81804,6, 0xfb81824,6, 0xfb81880,2, 0xfb81904,1, 0xfb81918,28, 0xfb819a0,6, 0xfb819c0,6, 0xfb81c00,2, 0xfb81d00,2, 0xfb81e04,1, 0xfb81e74,43, 0xfb82000,2, 0xfb82100,2, 0xfb82204,1, 0xfb82274,43, 0xfb82400,3, 0xfb82600,27, 0xfb82680,4, 0xfb826c0,25, 0xfb82740,6, 0xfb82760,4, 0xfb82774,11, 0xfb827a4,4, 0xfb82800,4, 0xfb82900,34, 0xfb82a00,4, 0xfb82b00,34, 0xfb82c00,3, 0xfb82c10,12, 0xfb82e00,56, 0xfb82ee4,4, 0xfb82f00,4, 0xfb83000,1, 0xfb88000,4, 0xfb88100,42, 0xfb88200,1, 0xfb88210,3, 0xfb88220,3, 0xfb88230,3, 0xfb88240,1, 0xfb88248,3, 0xfb88400,4, 0xfb88500,58, 0xfb88600,1, 0xfb88610,3, 0xfb88620,3, 0xfb88630,3, 0xfb88640,1, 0xfb88648,3, 0xfb88800,4, 0xfb88900,36, 0xfb88a00,1, 0xfb88c00,4, 0xfb88c80,27, 0xfb88d00,1, 0xfb88d10,3, 0xfb88d20,3, 0xfb88d30,3, 0xfb88d40,1, 0xfb88d48,3, 0xfb88e00,4, 0xfb88e80,31, 0xfb88f00,1, 0xfb88f10,3, 0xfb88f20,3, 0xfb88f30,3, 0xfb88f40,1, 0xfb88f48,3, 0xfb89000,4, 0xfb89040,13, 0xfb89080,1, 0xfb89200,15, 0xfb89240,4, 0xfb89260,17, 0xfb892c0,6, 0xfb892e0,2, 0xfb892ec,3, 0xfb89300,8, 0xfb89324,8, 0xfb89400,68, 0xfb89600,60, 0xfb89700,4, 0xfb89720,5, 0xfb89740,1, 0xfb89780,2, 0xfb8978c,2, 0xfb897a0,1, 0xfb897c0,12, 0xfb89800,7, 0xfb89820,5, 0xfb89900,49, 0xfb89a00,1, 0xfb89a08,23, 0xfb89a84,1, 0xfb89a8c,1, 0xfb89a94,1, 0xfb89a9c,2, 0xfb89ac0,1, 0xfb89c00,10, 0xfb89c40,1, 0xfb89c50,3, 0xfb89c80,10, 0xfb89cc0,12, 0xfb89d00,3, 0xfb89e00,1, 0xfb8a000,4, 0xfb8a100,42, 0xfb8a200,1, 0xfb8a210,3, 0xfb8a220,3, 0xfb8a230,3, 0xfb8a240,1, 0xfb8a248,3, 0xfb8a400,4, 0xfb8a500,58, 0xfb8a600,1, 0xfb8a610,3, 0xfb8a620,3, 0xfb8a630,3, 0xfb8a640,1, 0xfb8a648,3, 0xfb8a800,4, 0xfb8a900,36, 0xfb8aa00,1, 0xfb8ac00,4, 0xfb8ac80,27, 0xfb8ad00,1, 0xfb8ad10,3, 0xfb8ad20,3, 0xfb8ad30,3, 0xfb8ad40,1, 0xfb8ad48,3, 0xfb8ae00,4, 0xfb8ae80,31, 0xfb8af00,1, 0xfb8af10,3, 0xfb8af20,3, 0xfb8af30,3, 0xfb8af40,1, 0xfb8af48,3, 0xfb8b000,4, 0xfb8b040,13, 0xfb8b080,1, 0xfb8b200,15, 0xfb8b240,4, 0xfb8b260,17, 0xfb8b2c0,6, 0xfb8b2e0,2, 0xfb8b2ec,3, 0xfb8b300,8, 0xfb8b324,8, 0xfb8b400,68, 0xfb8b600,60, 0xfb8b700,4, 0xfb8b720,5, 0xfb8b740,1, 0xfb8b780,2, 0xfb8b78c,2, 0xfb8b7a0,1, 0xfb8b7c0,12, 0xfb8b800,7, 0xfb8b820,5, 0xfb8b900,49, 0xfb8ba00,1, 0xfb8ba08,23, 0xfb8ba84,1, 0xfb8ba8c,1, 0xfb8ba94,1, 0xfb8ba9c,2, 0xfb8bac0,1, 0xfb8bc00,10, 0xfb8bc40,1, 0xfb8bc50,3, 0xfb8bc80,10, 0xfb8bcc0,12, 0xfb8bd00,3, 0xfb8be00,1, 0xfb8c000,20, 0xfb8c080,3, 0xfb8c090,1, 0xfb8c098,4, 0xfb90000,49, 0xfb90100,12, 0xfb90140,4, 0xfb90184,1, 0xfb90198,2, 0xfb901a4,1, 0xfb901b8,7, 0xfb901e0,4, 0xfb90200,20, 0xfb90280,3, 0xfb90290,9, 0xfb902c0,6, 0xfb902e0,1, 0xfb902e8,7, 0xfb90400,49, 0xfb90500,12, 0xfb90540,4, 0xfb90584,1, 0xfb90598,2, 0xfb905a4,1, 0xfb905b8,7, 0xfb905e0,4, 0xfb90600,20, 0xfb90680,3, 0xfb90690,9, 0xfb906c0,6, 0xfb906e0,1, 0xfb906e8,7, 0xfb90800,49, 0xfb90900,12, 0xfb90940,4, 0xfb90984,1, 0xfb90998,2, 0xfb909a4,1, 0xfb909b8,7, 0xfb909e0,4, 0xfb90a00,20, 0xfb90a80,3, 0xfb90a90,9, 0xfb90ac0,6, 0xfb90ae0,1, 0xfb90ae8,7, 0xfb90c00,49, 0xfb90d00,12, 0xfb90d40,4, 0xfb90d84,1, 0xfb90d98,2, 0xfb90da4,1, 0xfb90db8,7, 0xfb90de0,4, 0xfb90e00,20, 0xfb90e80,3, 0xfb90e90,9, 0xfb90ec0,6, 0xfb90ee0,1, 0xfb90ee8,7, 0xfb91000,49, 0xfb91100,12, 0xfb91140,4, 0xfb91184,1, 0xfb91198,2, 0xfb911a4,1, 0xfb911b8,7, 0xfb911e0,4, 0xfb91200,20, 0xfb91280,3, 0xfb91290,9, 0xfb912c0,6, 0xfb912e0,1, 0xfb912e8,7, 0xfb91400,49, 0xfb91500,12, 0xfb91540,4, 0xfb91584,1, 0xfb91598,2, 0xfb915a4,1, 0xfb915b8,7, 0xfb915e0,4, 0xfb91600,20, 0xfb91680,3, 0xfb91690,9, 0xfb916c0,6, 0xfb916e0,1, 0xfb916e8,7, 0xfb91800,49, 0xfb91900,12, 0xfb91940,4, 0xfb91984,1, 0xfb91998,2, 0xfb919a4,1, 0xfb919b8,7, 0xfb919e0,4, 0xfb91a00,20, 0xfb91a80,3, 0xfb91a90,9, 0xfb91ac0,6, 0xfb91ae0,1, 0xfb91ae8,7, 0xfb92000,20, 0xfb92080,10, 0xfb92100,20, 0xfb92180,10, 0xfb92200,12, 0xfb92400,20, 0xfb92480,10, 0xfb92500,20, 0xfb92580,10, 0xfb92600,12, 0xfb92800,3, 0xfb92840,12, 0xfb92880,12, 0xfb928c0,12, 0xfb92900,12, 0xfb92940,12, 0xfb92980,12, 0xfb929c0,12, 0xfb92a00,12, 0xfb92c00,12, 0xfb92c40,7, 0xfb92c60,10, 0xfb93004,1, 0xfb93044,43, 0xfb93100,7, 0xfb93120,7, 0xfb93140,2, 0xfb9314c,2, 0xfb93160,2, 0xfb9316c,2, 0xfb93180,18, 0xfb93200,2, 0xfb93220,10, 0xfb93260,20, 0xfb932c0,9, 0xfb93300,15, 0xfb93340,9, 0xfb93380,6, 0xfb933a0,4, 0xfb93400,5, 0xfb94000,53, 0xfb94100,3, 0xfb94110,15, 0xfb94200,53, 0xfb94300,3, 0xfb94310,15, 0xfb94400,5, 0xfb94420,5, 0xfb94440,18, 0xfb94800,3, 0xfb94810,2, 0xfb94820,3, 0xfb94830,2, 0xfb94840,1, 0xfb95000,7, 0xfb95020,7, 0xfb95080,19, 0xfb95100,19, 0xfb95180,25, 0xfb95200,20, 0xfb95280,20, 0xfb95300,8, 0xfb95340,4, 0xfb95380,15, 0xfb953c0,15, 0xfb95400,9, 0xfb95430,5, 0xfb96000,6, 0xfb96020,1, 0xfb96028,2, 0xfb96040,11, 0xfb96070,2, 0xfb98000,82, 0xfb98200,2, 0xfb98240,9, 0xfb98280,7, 0xfb98400,82, 0xfb98604,6, 0xfb98700,15, 0xfb98740,9, 0xfb98780,6, 0xfb987a0,6, 0xfb98800,2, 0xfb98810,3, 0xfb98880,24, 0xfb988e4,1, 0xfb988f0,12, 0xfba0000,22, 0xfba0080,22, 0xfba0100,5, 0xfba0120,5, 0xfba0140,3, 0xfba0160,16, 0xfba01c0,7, 0xfba01e0,2, 0xfba0200,7, 0xfba0220,2, 0xfba0400,15, 0xfba0440,3, 0xfba0450,3, 0xfba0460,24, 0xfba0500,15, 0xfba0540,3, 0xfba0550,3, 0xfba0560,24, 0xfba0600,15, 0xfba0640,3, 0xfba0650,3, 0xfba0660,24, 0xfba0700,15, 0xfba0740,3, 0xfba0750,3, 0xfba0760,24, 0xfba0800,4, 0xfba0820,16, 0xfba0880,10, 0xfba08c0,10, 0xfba0900,6, 0xfba0920,6, 0xfba0940,4, 0xfba0980,13, 0xfba09c0,13, 0xfba0a00,9, 0xfba1000,86, 0xfba1200,2, 0xfba1240,9, 0xfba1280,7, 0xfba1400,86, 0xfba1604,6, 0xfba1800,86, 0xfba1a00,2, 0xfba1a40,9, 0xfba1a80,7, 0xfba1c00,86, 0xfba1e04,6, 0xfba2000,15, 0xfba2040,4, 0xfba2060,17, 0xfba20c0,6, 0xfba20e0,4, 0xfba20f4,11, 0xfba2128,38, 0xfba21c4,2, 0xfba21d0,4, 0xfba2200,1, 0xfba4000,22, 0xfba4080,22, 0xfba4100,5, 0xfba4120,5, 0xfba4140,3, 0xfba4160,16, 0xfba41c0,7, 0xfba41e0,2, 0xfba4200,7, 0xfba4220,2, 0xfba4400,15, 0xfba4440,3, 0xfba4450,3, 0xfba4460,24, 0xfba4500,15, 0xfba4540,3, 0xfba4550,3, 0xfba4560,24, 0xfba4600,15, 0xfba4640,3, 0xfba4650,3, 0xfba4660,24, 0xfba4700,15, 0xfba4740,3, 0xfba4750,3, 0xfba4760,24, 0xfba4800,4, 0xfba4820,16, 0xfba4880,10, 0xfba48c0,10, 0xfba4900,6, 0xfba4920,6, 0xfba4940,4, 0xfba4980,13, 0xfba49c0,13, 0xfba4a00,9, 0xfba5000,86, 0xfba5200,2, 0xfba5240,9, 0xfba5280,7, 0xfba5400,86, 0xfba5604,6, 0xfba5800,86, 0xfba5a00,2, 0xfba5a40,9, 0xfba5a80,7, 0xfba5c00,86, 0xfba5e04,6, 0xfba6000,15, 0xfba6040,4, 0xfba6060,17, 0xfba60c0,6, 0xfba60e0,4, 0xfba60f4,11, 0xfba6128,38, 0xfba61c4,2, 0xfba61d0,4, 0xfba6200,1, 0xfba8000,9, 0xfba8040,9, 0xfba8080,5, 0xfba8100,21, 0xfba8160,5, 0xfba8180,45, 0xfba8240,13, 0xfba8280,9, 0xfba8400,9, 0xfba8440,9, 0xfba8480,5, 0xfba8500,21, 0xfba8560,5, 0xfba8580,45, 0xfba8640,13, 0xfba8680,9, 0xfba8800,12, 0xfba8900,15, 0xfba8940,4, 0xfba8960,17, 0xfba89c0,6, 0xfba89e0,4, 0xfba89f4,29, 0xfbac000,30, 0xfbac080,3, 0xfbac090,19, 0xfbac100,30, 0xfbac180,3, 0xfbac190,19, 0xfbac200,30, 0xfbac280,3, 0xfbac290,19, 0xfbac300,30, 0xfbac380,3, 0xfbac390,19, 0xfbac400,30, 0xfbac480,3, 0xfbac490,19, 0xfbac500,30, 0xfbac580,3, 0xfbac590,19, 0xfbac600,30, 0xfbac680,3, 0xfbac690,19, 0xfbac700,30, 0xfbac780,3, 0xfbac790,19, 0xfbac800,12, 0xfbac844,1, 0xfbac854,8, 0xfbac880,7, 0xfbac8a0,2, 0xfbac8ac,2, 0xfbac8c0,26, 0xfbac980,4, 0xfbac9a0,5, 0xfbac9c0,1, 0xfbad000,3, 0xfbad010,3, 0xfbad020,3, 0xfbad030,3, 0xfbad040,3, 0xfbad050,3, 0xfbad060,3, 0xfbad070,3, 0xfbad080,6, 0xfbad0a0,6, 0xfbad0c0,6, 0xfbad0e0,6, 0xfbad100,6, 0xfbad120,6, 0xfbad140,6, 0xfbad160,6, 0xfbad200,68, 0xfbad400,1, 0xfbad804,1, 0xfbad844,54, 0xfbada00,12, 0xfbada40,12, 0xfbada80,12, 0xfbadac0,12, 0xfbadb00,12, 0xfbadb40,12, 0xfbadb80,12, 0xfbadbc0,12, 0xfbadc00,28, 0xfbadc80,10, 0xfbae000,3, 0xfbae020,6, 0xfbae040,6, 0xfbae060,15, 0xfbae100,26, 0xfbae180,15, 0xfbae200,15, 0xfbae240,4, 0xfbae260,17, 0xfbae2c0,6, 0xfbae2e0,4, 0xfbae2f4,18, 0xfbae340,4, 0xfbae360,17, 0xfbae3c0,6, 0xfbae3e0,4, 0xfbae3f4,15, 0xfbb0000,1, 0xfbb1000,1020, 0xfbb2000,194, 0xfbb3000,1020, 0xfbb4000,1020, 0xfbb5000,1020, 0xfbb6000,1020, 0xfbb7000,1020, 0xfbb8000,1020, 0xfbb9000,1020, 0xfbba000,1020, 0xfbbb000,194, 0xfbbc000,3, 0xfbbc010,13, 0xfbbc080,16, 0xfbbc100,20, 0xfbbc184,1, 0xfbbc18c,4, 0xfbbc200,3, 0xfbbc210,13, 0xfbbc280,16, 0xfbbc300,20, 0xfbbc384,1, 0xfbbc38c,4, 0xfbbc400,3, 0xfbbc410,13, 0xfbbc480,16, 0xfbbc500,20, 0xfbbc584,1, 0xfbbc58c,4, 0xfbbc600,3, 0xfbbc610,13, 0xfbbc680,16, 0xfbbc700,20, 0xfbbc784,1, 0xfbbc78c,4, 0xfbbc800,3, 0xfbbc810,13, 0xfbbc880,16, 0xfbbc900,20, 0xfbbc984,1, 0xfbbc98c,4, 0xfbbca00,3, 0xfbbca10,13, 0xfbbca80,16, 0xfbbcb00,20, 0xfbbcb84,1, 0xfbbcb8c,4, 0xfbbcc00,3, 0xfbbcc10,13, 0xfbbcc80,16, 0xfbbcd00,20, 0xfbbcd84,1, 0xfbbcd8c,4, 0xfbbce00,3, 0xfbbce10,13, 0xfbbce80,16, 0xfbbcf00,20, 0xfbbcf84,1, 0xfbbcf8c,4, 0xfbbd000,3, 0xfbbd010,13, 0xfbbd080,16, 0xfbbd100,20, 0xfbbd184,1, 0xfbbd18c,4, 0xfbbd200,18, 0xfbbd250,2, 0xfbbd260,4, 0xfbbe000,1, 0xfbbe014,1, 0xfbbe01c,19, 0xfbbe080,1, 0xfbbe094,1, 0xfbbe09c,19, 0xfbbe100,8, 0xfbbe200,13, 0xfbbe240,9, 0xfbbe280,12, 0xfbbe2c0,2, 0xfbbe2e0,12, 0xfbc0000,3, 0xfbc0080,20, 0xfbc0100,10, 0xfbc0140,1, 0xfbc0154,1, 0xfbc015c,2, 0xfbc0200,15, 0xfbc0240,4, 0xfbc0260,17, 0xfbc02c0,6, 0xfbc02e0,2, 0xfbc02ec,3, 0xfbc0300,8, 0xfbc0324,1, 0xfbc0400,4, 0xfbc0440,20, 0xfbc04c0,9, 0xfbc0500,33, 0xfbc0600,11, 0xfbc0640,11, 0xfbc0680,1, 0xfbc2000,1, 0xfbc2200,4, 0xfbc2300,53, 0xfbc2400,4, 0xfbc2500,40, 0xfbc2600,15, 0xfbc2640,4, 0xfbc2660,17, 0xfbc26c0,6, 0xfbc26e0,2, 0xfbc26ec,3, 0xfbc2700,8, 0xfbc2724,1, 0xfbc2800,20, 0xfbc2c00,53, 0xfbc2d00,53, 0xfbc2e00,1, 0xfbc3000,40, 0xfbc3100,40, 0xfbc3200,1, 0xfbc3400,1, 0xfbc3804,1, 0xfbc3844,39, 0xfbc3900,3, 0xfbc3a00,3, 0xfbc3a44,1, 0xfbc3a50,4, 0xfbc3a80,1, 0xfbc4000,2, 0xfbc4200,27, 0xfbc4280,4, 0xfbc42c0,25, 0xfbc4340,6, 0xfbc4360,2, 0xfbc436c,3, 0xfbc4380,8, 0xfbc43a4,1, 0xfbc4400,12, 0xfbc4440,1, 0xfbc8000,3, 0xfbc8080,20, 0xfbc8100,10, 0xfbc8140,1, 0xfbc8154,1, 0xfbc815c,2, 0xfbc8200,15, 0xfbc8240,4, 0xfbc8260,17, 0xfbc82c0,6, 0xfbc82e0,2, 0xfbc82ec,3, 0xfbc8300,8, 0xfbc8324,1, 0xfbc8400,4, 0xfbc8440,20, 0xfbc84c0,9, 0xfbc8500,33, 0xfbc8600,11, 0xfbc8640,11, 0xfbc8680,1, 0xfbca000,1, 0xfbca200,4, 0xfbca300,53, 0xfbca400,4, 0xfbca500,40, 0xfbca600,15, 0xfbca640,4, 0xfbca660,17, 0xfbca6c0,6, 0xfbca6e0,2, 0xfbca6ec,3, 0xfbca700,8, 0xfbca724,1, 0xfbca800,20, 0xfbcac00,53, 0xfbcad00,53, 0xfbcae00,1, 0xfbcb000,40, 0xfbcb100,40, 0xfbcb200,1, 0xfbcb400,1, 0xfbcb804,1, 0xfbcb844,39, 0xfbcb900,3, 0xfbcba00,3, 0xfbcba44,1, 0xfbcba50,4, 0xfbcba80,1, 0xfbcc000,2, 0xfbcc200,27, 0xfbcc280,4, 0xfbcc2c0,25, 0xfbcc340,6, 0xfbcc360,2, 0xfbcc36c,3, 0xfbcc380,8, 0xfbcc3a4,1, 0xfbcc400,12, 0xfbcc440,1, 0xfbd0000,4, 0xfbd0020,3, 0xfbd0030,2, 0xfbd0200,1, 0xfbd0224,10, 0xfbd0250,5, 0xfbd0280,1, 0xfbd0288,24, 0xfbd0300,3, 0xfbd0404,1, 0xfbd0414,5, 0xfbd0500,36, 0xfbd0600,3, 0xfbd0800,2, 0xfbd1000,1, 0xfbd1008,21, 0xfbd1080,1, 0xfbd1088,21, 0xfbd1100,1, 0xfbd1108,21, 0xfbd1180,1, 0xfbd1188,21, 0xfbd1200,1, 0xfbd1208,21, 0xfbd1280,1, 0xfbd1288,21, 0xfbd1300,1, 0xfbd1308,21, 0xfbd1380,1, 0xfbd1388,21, 0xfbd1400,21, 0xfbd1800,142, 0xfbd1c00,1, 0xfbd2000,4, 0xfbd2100,39, 0xfbd2200,3, 0xfbd2214,3, 0xfbd4004,1, 0xfbd4020,16, 0xfbd4080,2, 0xfbd4094,1, 0xfbd409c,2, 0xfbd40c0,6, 0xfbd4100,8, 0xfbd8004,17, 0xfbd8054,1, 0xfbd805c,2, 0xfbd8080,1, 0xfbd80a0,2, 0xfbd80b4,4, 0xfbd8100,2, 0xfbd8200,8, 0xfbd8400,1, 0xfbd8600,27, 0xfbd8680,4, 0xfbd86c0,25, 0xfbd8740,6, 0xfbd8760,2, 0xfbd876c,3, 0xfbd8780,8, 0xfbd87a4,3, 0xfbd8800,44, 0xfbd8900,1, 0xfbe0000,1, 0xfbe0200,27, 0xfbe0280,4, 0xfbe02c0,25, 0xfbe0340,6, 0xfbe0360,2, 0xfbe036c,3, 0xfbe0380,8, 0xfbe03a4,1, 0xfbe0400,20, 0xfbe0480,3, 0xfbe0490,9, 0xfc00000,198, 0xfc00400,2, 0xfc00440,9, 0xfc00480,7, 0xfc00800,198, 0xfc00c00,2, 0xfc00c40,9, 0xfc00c80,7, 0xfc01000,198, 0xfc01400,198, 0xfc01804,6, 0xfc01824,6, 0xfc01880,2, 0xfc01904,1, 0xfc01918,28, 0xfc019a0,6, 0xfc019c0,6, 0xfc01c00,2, 0xfc01d00,2, 0xfc01e04,1, 0xfc01e74,43, 0xfc02000,2, 0xfc02100,2, 0xfc02204,1, 0xfc02274,43, 0xfc02400,3, 0xfc02600,27, 0xfc02680,4, 0xfc026c0,25, 0xfc02740,6, 0xfc02760,4, 0xfc02774,11, 0xfc027a4,4, 0xfc02800,4, 0xfc02900,34, 0xfc02a00,4, 0xfc02b00,34, 0xfc02c00,3, 0xfc02c10,12, 0xfc02e00,56, 0xfc02ee4,4, 0xfc02f00,4, 0xfc03000,1, 0xfc08000,4, 0xfc08100,42, 0xfc08200,1, 0xfc08210,3, 0xfc08220,3, 0xfc08230,3, 0xfc08240,1, 0xfc08248,3, 0xfc08400,4, 0xfc08500,58, 0xfc08600,1, 0xfc08610,3, 0xfc08620,3, 0xfc08630,3, 0xfc08640,1, 0xfc08648,3, 0xfc08800,4, 0xfc08900,36, 0xfc08a00,1, 0xfc08c00,4, 0xfc08c80,27, 0xfc08d00,1, 0xfc08d10,3, 0xfc08d20,3, 0xfc08d30,3, 0xfc08d40,1, 0xfc08d48,3, 0xfc08e00,4, 0xfc08e80,31, 0xfc08f00,1, 0xfc08f10,3, 0xfc08f20,3, 0xfc08f30,3, 0xfc08f40,1, 0xfc08f48,3, 0xfc09000,4, 0xfc09040,13, 0xfc09080,1, 0xfc09200,15, 0xfc09240,4, 0xfc09260,17, 0xfc092c0,6, 0xfc092e0,2, 0xfc092ec,3, 0xfc09300,8, 0xfc09324,8, 0xfc09400,68, 0xfc09600,60, 0xfc09700,4, 0xfc09720,5, 0xfc09740,1, 0xfc09780,2, 0xfc0978c,2, 0xfc097a0,1, 0xfc097c0,12, 0xfc09800,7, 0xfc09820,5, 0xfc09900,49, 0xfc09a00,1, 0xfc09a08,23, 0xfc09a84,1, 0xfc09a8c,1, 0xfc09a94,1, 0xfc09a9c,2, 0xfc09ac0,1, 0xfc09c00,10, 0xfc09c40,1, 0xfc09c50,3, 0xfc09c80,10, 0xfc09cc0,12, 0xfc09d00,3, 0xfc09e00,1, 0xfc0a000,4, 0xfc0a100,42, 0xfc0a200,1, 0xfc0a210,3, 0xfc0a220,3, 0xfc0a230,3, 0xfc0a240,1, 0xfc0a248,3, 0xfc0a400,4, 0xfc0a500,58, 0xfc0a600,1, 0xfc0a610,3, 0xfc0a620,3, 0xfc0a630,3, 0xfc0a640,1, 0xfc0a648,3, 0xfc0a800,4, 0xfc0a900,36, 0xfc0aa00,1, 0xfc0ac00,4, 0xfc0ac80,27, 0xfc0ad00,1, 0xfc0ad10,3, 0xfc0ad20,3, 0xfc0ad30,3, 0xfc0ad40,1, 0xfc0ad48,3, 0xfc0ae00,4, 0xfc0ae80,31, 0xfc0af00,1, 0xfc0af10,3, 0xfc0af20,3, 0xfc0af30,3, 0xfc0af40,1, 0xfc0af48,3, 0xfc0b000,4, 0xfc0b040,13, 0xfc0b080,1, 0xfc0b200,15, 0xfc0b240,4, 0xfc0b260,17, 0xfc0b2c0,6, 0xfc0b2e0,2, 0xfc0b2ec,3, 0xfc0b300,8, 0xfc0b324,8, 0xfc0b400,68, 0xfc0b600,60, 0xfc0b700,4, 0xfc0b720,5, 0xfc0b740,1, 0xfc0b780,2, 0xfc0b78c,2, 0xfc0b7a0,1, 0xfc0b7c0,12, 0xfc0b800,7, 0xfc0b820,5, 0xfc0b900,49, 0xfc0ba00,1, 0xfc0ba08,23, 0xfc0ba84,1, 0xfc0ba8c,1, 0xfc0ba94,1, 0xfc0ba9c,2, 0xfc0bac0,1, 0xfc0bc00,10, 0xfc0bc40,1, 0xfc0bc50,3, 0xfc0bc80,10, 0xfc0bcc0,12, 0xfc0bd00,3, 0xfc0be00,1, 0xfc0c000,20, 0xfc0c080,3, 0xfc0c090,1, 0xfc0c098,4, 0xfc10000,49, 0xfc10100,12, 0xfc10140,4, 0xfc10184,1, 0xfc10198,2, 0xfc101a4,1, 0xfc101b8,7, 0xfc101e0,4, 0xfc10200,20, 0xfc10280,3, 0xfc10290,9, 0xfc102c0,6, 0xfc102e0,1, 0xfc102e8,7, 0xfc10400,49, 0xfc10500,12, 0xfc10540,4, 0xfc10584,1, 0xfc10598,2, 0xfc105a4,1, 0xfc105b8,7, 0xfc105e0,4, 0xfc10600,20, 0xfc10680,3, 0xfc10690,9, 0xfc106c0,6, 0xfc106e0,1, 0xfc106e8,7, 0xfc10800,49, 0xfc10900,12, 0xfc10940,4, 0xfc10984,1, 0xfc10998,2, 0xfc109a4,1, 0xfc109b8,7, 0xfc109e0,4, 0xfc10a00,20, 0xfc10a80,3, 0xfc10a90,9, 0xfc10ac0,6, 0xfc10ae0,1, 0xfc10ae8,7, 0xfc10c00,49, 0xfc10d00,12, 0xfc10d40,4, 0xfc10d84,1, 0xfc10d98,2, 0xfc10da4,1, 0xfc10db8,7, 0xfc10de0,4, 0xfc10e00,20, 0xfc10e80,3, 0xfc10e90,9, 0xfc10ec0,6, 0xfc10ee0,1, 0xfc10ee8,7, 0xfc11000,49, 0xfc11100,12, 0xfc11140,4, 0xfc11184,1, 0xfc11198,2, 0xfc111a4,1, 0xfc111b8,7, 0xfc111e0,4, 0xfc11200,20, 0xfc11280,3, 0xfc11290,9, 0xfc112c0,6, 0xfc112e0,1, 0xfc112e8,7, 0xfc11400,49, 0xfc11500,12, 0xfc11540,4, 0xfc11584,1, 0xfc11598,2, 0xfc115a4,1, 0xfc115b8,7, 0xfc115e0,4, 0xfc11600,20, 0xfc11680,3, 0xfc11690,9, 0xfc116c0,6, 0xfc116e0,1, 0xfc116e8,7, 0xfc11800,49, 0xfc11900,12, 0xfc11940,4, 0xfc11984,1, 0xfc11998,2, 0xfc119a4,1, 0xfc119b8,7, 0xfc119e0,4, 0xfc11a00,20, 0xfc11a80,3, 0xfc11a90,9, 0xfc11ac0,6, 0xfc11ae0,1, 0xfc11ae8,7, 0xfc12000,20, 0xfc12080,10, 0xfc12100,20, 0xfc12180,10, 0xfc12200,12, 0xfc12400,20, 0xfc12480,10, 0xfc12500,20, 0xfc12580,10, 0xfc12600,12, 0xfc12800,3, 0xfc12840,12, 0xfc12880,12, 0xfc128c0,12, 0xfc12900,12, 0xfc12940,12, 0xfc12980,12, 0xfc129c0,12, 0xfc12a00,12, 0xfc12c00,12, 0xfc12c40,7, 0xfc12c60,10, 0xfc13004,1, 0xfc13044,43, 0xfc13100,7, 0xfc13120,7, 0xfc13140,2, 0xfc1314c,2, 0xfc13160,2, 0xfc1316c,2, 0xfc13180,18, 0xfc13200,2, 0xfc13220,10, 0xfc13260,20, 0xfc132c0,9, 0xfc13300,15, 0xfc13340,9, 0xfc13380,6, 0xfc133a0,4, 0xfc13400,5, 0xfc14000,53, 0xfc14100,3, 0xfc14110,15, 0xfc14200,53, 0xfc14300,3, 0xfc14310,15, 0xfc14400,5, 0xfc14420,5, 0xfc14440,18, 0xfc14800,3, 0xfc14810,2, 0xfc14820,3, 0xfc14830,2, 0xfc14840,1, 0xfc15000,7, 0xfc15020,7, 0xfc15080,19, 0xfc15100,19, 0xfc15180,25, 0xfc15200,20, 0xfc15280,20, 0xfc15300,8, 0xfc15340,4, 0xfc15380,15, 0xfc153c0,15, 0xfc15400,9, 0xfc15430,5, 0xfc16000,6, 0xfc16020,1, 0xfc16028,2, 0xfc16040,11, 0xfc16070,2, 0xfc18000,82, 0xfc18200,2, 0xfc18240,9, 0xfc18280,7, 0xfc18400,82, 0xfc18604,6, 0xfc18700,15, 0xfc18740,9, 0xfc18780,6, 0xfc187a0,6, 0xfc18800,2, 0xfc18810,3, 0xfc18880,24, 0xfc188e4,1, 0xfc188f0,12, 0xfc20000,22, 0xfc20080,22, 0xfc20100,5, 0xfc20120,5, 0xfc20140,3, 0xfc20160,16, 0xfc201c0,7, 0xfc201e0,2, 0xfc20200,7, 0xfc20220,2, 0xfc20400,15, 0xfc20440,3, 0xfc20450,3, 0xfc20460,24, 0xfc20500,15, 0xfc20540,3, 0xfc20550,3, 0xfc20560,24, 0xfc20600,15, 0xfc20640,3, 0xfc20650,3, 0xfc20660,24, 0xfc20700,15, 0xfc20740,3, 0xfc20750,3, 0xfc20760,24, 0xfc20800,4, 0xfc20820,16, 0xfc20880,10, 0xfc208c0,10, 0xfc20900,6, 0xfc20920,6, 0xfc20940,4, 0xfc20980,13, 0xfc209c0,13, 0xfc20a00,9, 0xfc21000,86, 0xfc21200,2, 0xfc21240,9, 0xfc21280,7, 0xfc21400,86, 0xfc21604,6, 0xfc21800,86, 0xfc21a00,2, 0xfc21a40,9, 0xfc21a80,7, 0xfc21c00,86, 0xfc21e04,6, 0xfc22000,15, 0xfc22040,4, 0xfc22060,17, 0xfc220c0,6, 0xfc220e0,4, 0xfc220f4,11, 0xfc22128,38, 0xfc221c4,2, 0xfc221d0,4, 0xfc22200,1, 0xfc24000,22, 0xfc24080,22, 0xfc24100,5, 0xfc24120,5, 0xfc24140,3, 0xfc24160,16, 0xfc241c0,7, 0xfc241e0,2, 0xfc24200,7, 0xfc24220,2, 0xfc24400,15, 0xfc24440,3, 0xfc24450,3, 0xfc24460,24, 0xfc24500,15, 0xfc24540,3, 0xfc24550,3, 0xfc24560,24, 0xfc24600,15, 0xfc24640,3, 0xfc24650,3, 0xfc24660,24, 0xfc24700,15, 0xfc24740,3, 0xfc24750,3, 0xfc24760,24, 0xfc24800,4, 0xfc24820,16, 0xfc24880,10, 0xfc248c0,10, 0xfc24900,6, 0xfc24920,6, 0xfc24940,4, 0xfc24980,13, 0xfc249c0,13, 0xfc24a00,9, 0xfc25000,86, 0xfc25200,2, 0xfc25240,9, 0xfc25280,7, 0xfc25400,86, 0xfc25604,6, 0xfc25800,86, 0xfc25a00,2, 0xfc25a40,9, 0xfc25a80,7, 0xfc25c00,86, 0xfc25e04,6, 0xfc26000,15, 0xfc26040,4, 0xfc26060,17, 0xfc260c0,6, 0xfc260e0,4, 0xfc260f4,11, 0xfc26128,38, 0xfc261c4,2, 0xfc261d0,4, 0xfc26200,1, 0xfc28000,9, 0xfc28040,9, 0xfc28080,5, 0xfc28100,21, 0xfc28160,5, 0xfc28180,45, 0xfc28240,13, 0xfc28280,9, 0xfc28400,9, 0xfc28440,9, 0xfc28480,5, 0xfc28500,21, 0xfc28560,5, 0xfc28580,45, 0xfc28640,13, 0xfc28680,9, 0xfc28800,12, 0xfc28900,15, 0xfc28940,4, 0xfc28960,17, 0xfc289c0,6, 0xfc289e0,4, 0xfc289f4,29, 0xfc2c000,30, 0xfc2c080,3, 0xfc2c090,19, 0xfc2c100,30, 0xfc2c180,3, 0xfc2c190,19, 0xfc2c200,30, 0xfc2c280,3, 0xfc2c290,19, 0xfc2c300,30, 0xfc2c380,3, 0xfc2c390,19, 0xfc2c400,30, 0xfc2c480,3, 0xfc2c490,19, 0xfc2c500,30, 0xfc2c580,3, 0xfc2c590,19, 0xfc2c600,30, 0xfc2c680,3, 0xfc2c690,19, 0xfc2c700,30, 0xfc2c780,3, 0xfc2c790,19, 0xfc2c800,12, 0xfc2c844,1, 0xfc2c854,8, 0xfc2c880,7, 0xfc2c8a0,2, 0xfc2c8ac,2, 0xfc2c8c0,26, 0xfc2c980,4, 0xfc2c9a0,5, 0xfc2c9c0,1, 0xfc2d000,3, 0xfc2d010,3, 0xfc2d020,3, 0xfc2d030,3, 0xfc2d040,3, 0xfc2d050,3, 0xfc2d060,3, 0xfc2d070,3, 0xfc2d080,6, 0xfc2d0a0,6, 0xfc2d0c0,6, 0xfc2d0e0,6, 0xfc2d100,6, 0xfc2d120,6, 0xfc2d140,6, 0xfc2d160,6, 0xfc2d200,68, 0xfc2d400,1, 0xfc2d804,1, 0xfc2d844,54, 0xfc2da00,12, 0xfc2da40,12, 0xfc2da80,12, 0xfc2dac0,12, 0xfc2db00,12, 0xfc2db40,12, 0xfc2db80,12, 0xfc2dbc0,12, 0xfc2dc00,28, 0xfc2dc80,10, 0xfc2e000,3, 0xfc2e020,6, 0xfc2e040,6, 0xfc2e060,15, 0xfc2e100,26, 0xfc2e180,15, 0xfc2e200,15, 0xfc2e240,4, 0xfc2e260,17, 0xfc2e2c0,6, 0xfc2e2e0,4, 0xfc2e2f4,18, 0xfc2e340,4, 0xfc2e360,17, 0xfc2e3c0,6, 0xfc2e3e0,4, 0xfc2e3f4,15, 0xfc30000,1, 0xfc31000,1020, 0xfc32000,194, 0xfc33000,1020, 0xfc34000,1020, 0xfc35000,1020, 0xfc36000,1020, 0xfc37000,1020, 0xfc38000,1020, 0xfc39000,1020, 0xfc3a000,1020, 0xfc3b000,194, 0xfc3c000,3, 0xfc3c010,13, 0xfc3c080,16, 0xfc3c100,20, 0xfc3c184,1, 0xfc3c18c,4, 0xfc3c200,3, 0xfc3c210,13, 0xfc3c280,16, 0xfc3c300,20, 0xfc3c384,1, 0xfc3c38c,4, 0xfc3c400,3, 0xfc3c410,13, 0xfc3c480,16, 0xfc3c500,20, 0xfc3c584,1, 0xfc3c58c,4, 0xfc3c600,3, 0xfc3c610,13, 0xfc3c680,16, 0xfc3c700,20, 0xfc3c784,1, 0xfc3c78c,4, 0xfc3c800,3, 0xfc3c810,13, 0xfc3c880,16, 0xfc3c900,20, 0xfc3c984,1, 0xfc3c98c,4, 0xfc3ca00,3, 0xfc3ca10,13, 0xfc3ca80,16, 0xfc3cb00,20, 0xfc3cb84,1, 0xfc3cb8c,4, 0xfc3cc00,3, 0xfc3cc10,13, 0xfc3cc80,16, 0xfc3cd00,20, 0xfc3cd84,1, 0xfc3cd8c,4, 0xfc3ce00,3, 0xfc3ce10,13, 0xfc3ce80,16, 0xfc3cf00,20, 0xfc3cf84,1, 0xfc3cf8c,4, 0xfc3d000,3, 0xfc3d010,13, 0xfc3d080,16, 0xfc3d100,20, 0xfc3d184,1, 0xfc3d18c,4, 0xfc3d200,18, 0xfc3d250,2, 0xfc3d260,4, 0xfc3e000,1, 0xfc3e014,1, 0xfc3e01c,19, 0xfc3e080,1, 0xfc3e094,1, 0xfc3e09c,19, 0xfc3e100,8, 0xfc3e200,13, 0xfc3e240,9, 0xfc3e280,12, 0xfc3e2c0,2, 0xfc3e2e0,12, 0xfc40000,3, 0xfc40080,20, 0xfc40100,10, 0xfc40140,1, 0xfc40154,1, 0xfc4015c,2, 0xfc40200,15, 0xfc40240,4, 0xfc40260,17, 0xfc402c0,6, 0xfc402e0,2, 0xfc402ec,3, 0xfc40300,8, 0xfc40324,1, 0xfc40400,4, 0xfc40440,20, 0xfc404c0,9, 0xfc40500,33, 0xfc40600,11, 0xfc40640,11, 0xfc40680,1, 0xfc42000,1, 0xfc42200,4, 0xfc42300,53, 0xfc42400,4, 0xfc42500,40, 0xfc42600,15, 0xfc42640,4, 0xfc42660,17, 0xfc426c0,6, 0xfc426e0,2, 0xfc426ec,3, 0xfc42700,8, 0xfc42724,1, 0xfc42800,20, 0xfc42c00,53, 0xfc42d00,53, 0xfc42e00,1, 0xfc43000,40, 0xfc43100,40, 0xfc43200,1, 0xfc43400,1, 0xfc43804,1, 0xfc43844,39, 0xfc43900,3, 0xfc43a00,3, 0xfc43a44,1, 0xfc43a50,4, 0xfc43a80,1, 0xfc44000,2, 0xfc44200,27, 0xfc44280,4, 0xfc442c0,25, 0xfc44340,6, 0xfc44360,2, 0xfc4436c,3, 0xfc44380,8, 0xfc443a4,1, 0xfc44400,12, 0xfc44440,1, 0xfc48000,3, 0xfc48080,20, 0xfc48100,10, 0xfc48140,1, 0xfc48154,1, 0xfc4815c,2, 0xfc48200,15, 0xfc48240,4, 0xfc48260,17, 0xfc482c0,6, 0xfc482e0,2, 0xfc482ec,3, 0xfc48300,8, 0xfc48324,1, 0xfc48400,4, 0xfc48440,20, 0xfc484c0,9, 0xfc48500,33, 0xfc48600,11, 0xfc48640,11, 0xfc48680,1, 0xfc4a000,1, 0xfc4a200,4, 0xfc4a300,53, 0xfc4a400,4, 0xfc4a500,40, 0xfc4a600,15, 0xfc4a640,4, 0xfc4a660,17, 0xfc4a6c0,6, 0xfc4a6e0,2, 0xfc4a6ec,3, 0xfc4a700,8, 0xfc4a724,1, 0xfc4a800,20, 0xfc4ac00,53, 0xfc4ad00,53, 0xfc4ae00,1, 0xfc4b000,40, 0xfc4b100,40, 0xfc4b200,1, 0xfc4b400,1, 0xfc4b804,1, 0xfc4b844,39, 0xfc4b900,3, 0xfc4ba00,3, 0xfc4ba44,1, 0xfc4ba50,4, 0xfc4ba80,1, 0xfc4c000,2, 0xfc4c200,27, 0xfc4c280,4, 0xfc4c2c0,25, 0xfc4c340,6, 0xfc4c360,2, 0xfc4c36c,3, 0xfc4c380,8, 0xfc4c3a4,1, 0xfc4c400,12, 0xfc4c440,1, 0xfc50000,4, 0xfc50020,3, 0xfc50030,2, 0xfc50200,1, 0xfc50224,10, 0xfc50250,5, 0xfc50280,1, 0xfc50288,24, 0xfc50300,3, 0xfc50404,1, 0xfc50414,5, 0xfc50500,36, 0xfc50600,3, 0xfc50800,2, 0xfc51000,1, 0xfc51008,21, 0xfc51080,1, 0xfc51088,21, 0xfc51100,1, 0xfc51108,21, 0xfc51180,1, 0xfc51188,21, 0xfc51200,1, 0xfc51208,21, 0xfc51280,1, 0xfc51288,21, 0xfc51300,1, 0xfc51308,21, 0xfc51380,1, 0xfc51388,21, 0xfc51400,21, 0xfc51800,142, 0xfc51c00,1, 0xfc52000,4, 0xfc52100,39, 0xfc52200,3, 0xfc52214,3, 0xfc54004,1, 0xfc54020,16, 0xfc54080,2, 0xfc54094,1, 0xfc5409c,2, 0xfc540c0,6, 0xfc54100,8, 0xfc58004,17, 0xfc58054,1, 0xfc5805c,2, 0xfc58080,1, 0xfc580a0,2, 0xfc580b4,4, 0xfc58100,2, 0xfc58200,8, 0xfc58400,1, 0xfc58600,27, 0xfc58680,4, 0xfc586c0,25, 0xfc58740,6, 0xfc58760,2, 0xfc5876c,3, 0xfc58780,8, 0xfc587a4,3, 0xfc58800,44, 0xfc58900,1, 0xfc60000,1, 0xfc60200,27, 0xfc60280,4, 0xfc602c0,25, 0xfc60340,6, 0xfc60360,2, 0xfc6036c,3, 0xfc60380,8, 0xfc603a4,1, 0xfc60400,20, 0xfc60480,3, 0xfc60490,9, 0xfc80000,198, 0xfc80400,2, 0xfc80440,9, 0xfc80480,7, 0xfc80800,198, 0xfc80c00,2, 0xfc80c40,9, 0xfc80c80,7, 0xfc81000,198, 0xfc81400,198, 0xfc81804,6, 0xfc81824,6, 0xfc81880,2, 0xfc81904,1, 0xfc81918,28, 0xfc819a0,6, 0xfc819c0,6, 0xfc81c00,2, 0xfc81d00,2, 0xfc81e04,1, 0xfc81e74,43, 0xfc82000,2, 0xfc82100,2, 0xfc82204,1, 0xfc82274,43, 0xfc82400,3, 0xfc82600,27, 0xfc82680,4, 0xfc826c0,25, 0xfc82740,6, 0xfc82760,4, 0xfc82774,11, 0xfc827a4,4, 0xfc82800,4, 0xfc82900,34, 0xfc82a00,4, 0xfc82b00,34, 0xfc82c00,3, 0xfc82c10,12, 0xfc82e00,56, 0xfc82ee4,4, 0xfc82f00,4, 0xfc83000,1, 0xfc88000,4, 0xfc88100,42, 0xfc88200,1, 0xfc88210,3, 0xfc88220,3, 0xfc88230,3, 0xfc88240,1, 0xfc88248,3, 0xfc88400,4, 0xfc88500,58, 0xfc88600,1, 0xfc88610,3, 0xfc88620,3, 0xfc88630,3, 0xfc88640,1, 0xfc88648,3, 0xfc88800,4, 0xfc88900,36, 0xfc88a00,1, 0xfc88c00,4, 0xfc88c80,27, 0xfc88d00,1, 0xfc88d10,3, 0xfc88d20,3, 0xfc88d30,3, 0xfc88d40,1, 0xfc88d48,3, 0xfc88e00,4, 0xfc88e80,31, 0xfc88f00,1, 0xfc88f10,3, 0xfc88f20,3, 0xfc88f30,3, 0xfc88f40,1, 0xfc88f48,3, 0xfc89000,4, 0xfc89040,13, 0xfc89080,1, 0xfc89200,15, 0xfc89240,4, 0xfc89260,17, 0xfc892c0,6, 0xfc892e0,2, 0xfc892ec,3, 0xfc89300,8, 0xfc89324,8, 0xfc89400,68, 0xfc89600,60, 0xfc89700,4, 0xfc89720,5, 0xfc89740,1, 0xfc89780,2, 0xfc8978c,2, 0xfc897a0,1, 0xfc897c0,12, 0xfc89800,7, 0xfc89820,5, 0xfc89900,49, 0xfc89a00,1, 0xfc89a08,23, 0xfc89a84,1, 0xfc89a8c,1, 0xfc89a94,1, 0xfc89a9c,2, 0xfc89ac0,1, 0xfc89c00,10, 0xfc89c40,1, 0xfc89c50,3, 0xfc89c80,10, 0xfc89cc0,12, 0xfc89d00,3, 0xfc89e00,1, 0xfc8a000,4, 0xfc8a100,42, 0xfc8a200,1, 0xfc8a210,3, 0xfc8a220,3, 0xfc8a230,3, 0xfc8a240,1, 0xfc8a248,3, 0xfc8a400,4, 0xfc8a500,58, 0xfc8a600,1, 0xfc8a610,3, 0xfc8a620,3, 0xfc8a630,3, 0xfc8a640,1, 0xfc8a648,3, 0xfc8a800,4, 0xfc8a900,36, 0xfc8aa00,1, 0xfc8ac00,4, 0xfc8ac80,27, 0xfc8ad00,1, 0xfc8ad10,3, 0xfc8ad20,3, 0xfc8ad30,3, 0xfc8ad40,1, 0xfc8ad48,3, 0xfc8ae00,4, 0xfc8ae80,31, 0xfc8af00,1, 0xfc8af10,3, 0xfc8af20,3, 0xfc8af30,3, 0xfc8af40,1, 0xfc8af48,3, 0xfc8b000,4, 0xfc8b040,13, 0xfc8b080,1, 0xfc8b200,15, 0xfc8b240,4, 0xfc8b260,17, 0xfc8b2c0,6, 0xfc8b2e0,2, 0xfc8b2ec,3, 0xfc8b300,8, 0xfc8b324,8, 0xfc8b400,68, 0xfc8b600,60, 0xfc8b700,4, 0xfc8b720,5, 0xfc8b740,1, 0xfc8b780,2, 0xfc8b78c,2, 0xfc8b7a0,1, 0xfc8b7c0,12, 0xfc8b800,7, 0xfc8b820,5, 0xfc8b900,49, 0xfc8ba00,1, 0xfc8ba08,23, 0xfc8ba84,1, 0xfc8ba8c,1, 0xfc8ba94,1, 0xfc8ba9c,2, 0xfc8bac0,1, 0xfc8bc00,10, 0xfc8bc40,1, 0xfc8bc50,3, 0xfc8bc80,10, 0xfc8bcc0,12, 0xfc8bd00,3, 0xfc8be00,1, 0xfc8c000,20, 0xfc8c080,3, 0xfc8c090,1, 0xfc8c098,4, 0xfc90000,49, 0xfc90100,12, 0xfc90140,4, 0xfc90184,1, 0xfc90198,2, 0xfc901a4,1, 0xfc901b8,7, 0xfc901e0,4, 0xfc90200,20, 0xfc90280,3, 0xfc90290,9, 0xfc902c0,6, 0xfc902e0,1, 0xfc902e8,7, 0xfc90400,49, 0xfc90500,12, 0xfc90540,4, 0xfc90584,1, 0xfc90598,2, 0xfc905a4,1, 0xfc905b8,7, 0xfc905e0,4, 0xfc90600,20, 0xfc90680,3, 0xfc90690,9, 0xfc906c0,6, 0xfc906e0,1, 0xfc906e8,7, 0xfc90800,49, 0xfc90900,12, 0xfc90940,4, 0xfc90984,1, 0xfc90998,2, 0xfc909a4,1, 0xfc909b8,7, 0xfc909e0,4, 0xfc90a00,20, 0xfc90a80,3, 0xfc90a90,9, 0xfc90ac0,6, 0xfc90ae0,1, 0xfc90ae8,7, 0xfc90c00,49, 0xfc90d00,12, 0xfc90d40,4, 0xfc90d84,1, 0xfc90d98,2, 0xfc90da4,1, 0xfc90db8,7, 0xfc90de0,4, 0xfc90e00,20, 0xfc90e80,3, 0xfc90e90,9, 0xfc90ec0,6, 0xfc90ee0,1, 0xfc90ee8,7, 0xfc91000,49, 0xfc91100,12, 0xfc91140,4, 0xfc91184,1, 0xfc91198,2, 0xfc911a4,1, 0xfc911b8,7, 0xfc911e0,4, 0xfc91200,20, 0xfc91280,3, 0xfc91290,9, 0xfc912c0,6, 0xfc912e0,1, 0xfc912e8,7, 0xfc91400,49, 0xfc91500,12, 0xfc91540,4, 0xfc91584,1, 0xfc91598,2, 0xfc915a4,1, 0xfc915b8,7, 0xfc915e0,4, 0xfc91600,20, 0xfc91680,3, 0xfc91690,9, 0xfc916c0,6, 0xfc916e0,1, 0xfc916e8,7, 0xfc91800,49, 0xfc91900,12, 0xfc91940,4, 0xfc91984,1, 0xfc91998,2, 0xfc919a4,1, 0xfc919b8,7, 0xfc919e0,4, 0xfc91a00,20, 0xfc91a80,3, 0xfc91a90,9, 0xfc91ac0,6, 0xfc91ae0,1, 0xfc91ae8,7, 0xfc92000,20, 0xfc92080,10, 0xfc92100,20, 0xfc92180,10, 0xfc92200,12, 0xfc92400,20, 0xfc92480,10, 0xfc92500,20, 0xfc92580,10, 0xfc92600,12, 0xfc92800,3, 0xfc92840,12, 0xfc92880,12, 0xfc928c0,12, 0xfc92900,12, 0xfc92940,12, 0xfc92980,12, 0xfc929c0,12, 0xfc92a00,12, 0xfc92c00,12, 0xfc92c40,7, 0xfc92c60,10, 0xfc93004,1, 0xfc93044,43, 0xfc93100,7, 0xfc93120,7, 0xfc93140,2, 0xfc9314c,2, 0xfc93160,2, 0xfc9316c,2, 0xfc93180,18, 0xfc93200,2, 0xfc93220,10, 0xfc93260,20, 0xfc932c0,9, 0xfc93300,15, 0xfc93340,9, 0xfc93380,6, 0xfc933a0,4, 0xfc93400,5, 0xfc94000,53, 0xfc94100,3, 0xfc94110,15, 0xfc94200,53, 0xfc94300,3, 0xfc94310,15, 0xfc94400,5, 0xfc94420,5, 0xfc94440,18, 0xfc94800,3, 0xfc94810,2, 0xfc94820,3, 0xfc94830,2, 0xfc94840,1, 0xfc95000,7, 0xfc95020,7, 0xfc95080,19, 0xfc95100,19, 0xfc95180,25, 0xfc95200,20, 0xfc95280,20, 0xfc95300,8, 0xfc95340,4, 0xfc95380,15, 0xfc953c0,15, 0xfc95400,9, 0xfc95430,5, 0xfc96000,6, 0xfc96020,1, 0xfc96028,2, 0xfc96040,11, 0xfc96070,2, 0xfc98000,82, 0xfc98200,2, 0xfc98240,9, 0xfc98280,7, 0xfc98400,82, 0xfc98604,6, 0xfc98700,15, 0xfc98740,9, 0xfc98780,6, 0xfc987a0,6, 0xfc98800,2, 0xfc98810,3, 0xfc98880,24, 0xfc988e4,1, 0xfc988f0,12, 0xfca0000,22, 0xfca0080,22, 0xfca0100,5, 0xfca0120,5, 0xfca0140,3, 0xfca0160,16, 0xfca01c0,7, 0xfca01e0,2, 0xfca0200,7, 0xfca0220,2, 0xfca0400,15, 0xfca0440,3, 0xfca0450,3, 0xfca0460,24, 0xfca0500,15, 0xfca0540,3, 0xfca0550,3, 0xfca0560,24, 0xfca0600,15, 0xfca0640,3, 0xfca0650,3, 0xfca0660,24, 0xfca0700,15, 0xfca0740,3, 0xfca0750,3, 0xfca0760,24, 0xfca0800,4, 0xfca0820,16, 0xfca0880,10, 0xfca08c0,10, 0xfca0900,6, 0xfca0920,6, 0xfca0940,4, 0xfca0980,13, 0xfca09c0,13, 0xfca0a00,9, 0xfca1000,86, 0xfca1200,2, 0xfca1240,9, 0xfca1280,7, 0xfca1400,86, 0xfca1604,6, 0xfca1800,86, 0xfca1a00,2, 0xfca1a40,9, 0xfca1a80,7, 0xfca1c00,86, 0xfca1e04,6, 0xfca2000,15, 0xfca2040,4, 0xfca2060,17, 0xfca20c0,6, 0xfca20e0,4, 0xfca20f4,11, 0xfca2128,38, 0xfca21c4,2, 0xfca21d0,4, 0xfca2200,1, 0xfca4000,22, 0xfca4080,22, 0xfca4100,5, 0xfca4120,5, 0xfca4140,3, 0xfca4160,16, 0xfca41c0,7, 0xfca41e0,2, 0xfca4200,7, 0xfca4220,2, 0xfca4400,15, 0xfca4440,3, 0xfca4450,3, 0xfca4460,24, 0xfca4500,15, 0xfca4540,3, 0xfca4550,3, 0xfca4560,24, 0xfca4600,15, 0xfca4640,3, 0xfca4650,3, 0xfca4660,24, 0xfca4700,15, 0xfca4740,3, 0xfca4750,3, 0xfca4760,24, 0xfca4800,4, 0xfca4820,16, 0xfca4880,10, 0xfca48c0,10, 0xfca4900,6, 0xfca4920,6, 0xfca4940,4, 0xfca4980,13, 0xfca49c0,13, 0xfca4a00,9, 0xfca5000,86, 0xfca5200,2, 0xfca5240,9, 0xfca5280,7, 0xfca5400,86, 0xfca5604,6, 0xfca5800,86, 0xfca5a00,2, 0xfca5a40,9, 0xfca5a80,7, 0xfca5c00,86, 0xfca5e04,6, 0xfca6000,15, 0xfca6040,4, 0xfca6060,17, 0xfca60c0,6, 0xfca60e0,4, 0xfca60f4,11, 0xfca6128,38, 0xfca61c4,2, 0xfca61d0,4, 0xfca6200,1, 0xfca8000,9, 0xfca8040,9, 0xfca8080,5, 0xfca8100,21, 0xfca8160,5, 0xfca8180,45, 0xfca8240,13, 0xfca8280,9, 0xfca8400,9, 0xfca8440,9, 0xfca8480,5, 0xfca8500,21, 0xfca8560,5, 0xfca8580,45, 0xfca8640,13, 0xfca8680,9, 0xfca8800,12, 0xfca8900,15, 0xfca8940,4, 0xfca8960,17, 0xfca89c0,6, 0xfca89e0,4, 0xfca89f4,29, 0xfcac000,30, 0xfcac080,3, 0xfcac090,19, 0xfcac100,30, 0xfcac180,3, 0xfcac190,19, 0xfcac200,30, 0xfcac280,3, 0xfcac290,19, 0xfcac300,30, 0xfcac380,3, 0xfcac390,19, 0xfcac400,30, 0xfcac480,3, 0xfcac490,19, 0xfcac500,30, 0xfcac580,3, 0xfcac590,19, 0xfcac600,30, 0xfcac680,3, 0xfcac690,19, 0xfcac700,30, 0xfcac780,3, 0xfcac790,19, 0xfcac800,12, 0xfcac844,1, 0xfcac854,8, 0xfcac880,7, 0xfcac8a0,2, 0xfcac8ac,2, 0xfcac8c0,26, 0xfcac980,4, 0xfcac9a0,5, 0xfcac9c0,1, 0xfcad000,3, 0xfcad010,3, 0xfcad020,3, 0xfcad030,3, 0xfcad040,3, 0xfcad050,3, 0xfcad060,3, 0xfcad070,3, 0xfcad080,6, 0xfcad0a0,6, 0xfcad0c0,6, 0xfcad0e0,6, 0xfcad100,6, 0xfcad120,6, 0xfcad140,6, 0xfcad160,6, 0xfcad200,68, 0xfcad400,1, 0xfcad804,1, 0xfcad844,54, 0xfcada00,12, 0xfcada40,12, 0xfcada80,12, 0xfcadac0,12, 0xfcadb00,12, 0xfcadb40,12, 0xfcadb80,12, 0xfcadbc0,12, 0xfcadc00,28, 0xfcadc80,10, 0xfcae000,3, 0xfcae020,6, 0xfcae040,6, 0xfcae060,15, 0xfcae100,26, 0xfcae180,15, 0xfcae200,15, 0xfcae240,4, 0xfcae260,17, 0xfcae2c0,6, 0xfcae2e0,4, 0xfcae2f4,18, 0xfcae340,4, 0xfcae360,17, 0xfcae3c0,6, 0xfcae3e0,4, 0xfcae3f4,15, 0xfcb0000,1, 0xfcb1000,1020, 0xfcb2000,194, 0xfcb3000,1020, 0xfcb4000,1020, 0xfcb5000,1020, 0xfcb6000,1020, 0xfcb7000,1020, 0xfcb8000,1020, 0xfcb9000,1020, 0xfcba000,1020, 0xfcbb000,194, 0xfcbc000,3, 0xfcbc010,13, 0xfcbc080,16, 0xfcbc100,20, 0xfcbc184,1, 0xfcbc18c,4, 0xfcbc200,3, 0xfcbc210,13, 0xfcbc280,16, 0xfcbc300,20, 0xfcbc384,1, 0xfcbc38c,4, 0xfcbc400,3, 0xfcbc410,13, 0xfcbc480,16, 0xfcbc500,20, 0xfcbc584,1, 0xfcbc58c,4, 0xfcbc600,3, 0xfcbc610,13, 0xfcbc680,16, 0xfcbc700,20, 0xfcbc784,1, 0xfcbc78c,4, 0xfcbc800,3, 0xfcbc810,13, 0xfcbc880,16, 0xfcbc900,20, 0xfcbc984,1, 0xfcbc98c,4, 0xfcbca00,3, 0xfcbca10,13, 0xfcbca80,16, 0xfcbcb00,20, 0xfcbcb84,1, 0xfcbcb8c,4, 0xfcbcc00,3, 0xfcbcc10,13, 0xfcbcc80,16, 0xfcbcd00,20, 0xfcbcd84,1, 0xfcbcd8c,4, 0xfcbce00,3, 0xfcbce10,13, 0xfcbce80,16, 0xfcbcf00,20, 0xfcbcf84,1, 0xfcbcf8c,4, 0xfcbd000,3, 0xfcbd010,13, 0xfcbd080,16, 0xfcbd100,20, 0xfcbd184,1, 0xfcbd18c,4, 0xfcbd200,18, 0xfcbd250,2, 0xfcbd260,4, 0xfcbe000,1, 0xfcbe014,1, 0xfcbe01c,19, 0xfcbe080,1, 0xfcbe094,1, 0xfcbe09c,19, 0xfcbe100,8, 0xfcbe200,13, 0xfcbe240,9, 0xfcbe280,12, 0xfcbe2c0,2, 0xfcbe2e0,12, 0xfcc0000,3, 0xfcc0080,20, 0xfcc0100,10, 0xfcc0140,1, 0xfcc0154,1, 0xfcc015c,2, 0xfcc0200,15, 0xfcc0240,4, 0xfcc0260,17, 0xfcc02c0,6, 0xfcc02e0,2, 0xfcc02ec,3, 0xfcc0300,8, 0xfcc0324,1, 0xfcc0400,4, 0xfcc0440,20, 0xfcc04c0,9, 0xfcc0500,33, 0xfcc0600,11, 0xfcc0640,11, 0xfcc0680,1, 0xfcc2000,1, 0xfcc2200,4, 0xfcc2300,53, 0xfcc2400,4, 0xfcc2500,40, 0xfcc2600,15, 0xfcc2640,4, 0xfcc2660,17, 0xfcc26c0,6, 0xfcc26e0,2, 0xfcc26ec,3, 0xfcc2700,8, 0xfcc2724,1, 0xfcc2800,20, 0xfcc2c00,53, 0xfcc2d00,53, 0xfcc2e00,1, 0xfcc3000,40, 0xfcc3100,40, 0xfcc3200,1, 0xfcc3400,1, 0xfcc3804,1, 0xfcc3844,39, 0xfcc3900,3, 0xfcc3a00,3, 0xfcc3a44,1, 0xfcc3a50,4, 0xfcc3a80,1, 0xfcc4000,2, 0xfcc4200,27, 0xfcc4280,4, 0xfcc42c0,25, 0xfcc4340,6, 0xfcc4360,2, 0xfcc436c,3, 0xfcc4380,8, 0xfcc43a4,1, 0xfcc4400,12, 0xfcc4440,1, 0xfcc8000,3, 0xfcc8080,20, 0xfcc8100,10, 0xfcc8140,1, 0xfcc8154,1, 0xfcc815c,2, 0xfcc8200,15, 0xfcc8240,4, 0xfcc8260,17, 0xfcc82c0,6, 0xfcc82e0,2, 0xfcc82ec,3, 0xfcc8300,8, 0xfcc8324,1, 0xfcc8400,4, 0xfcc8440,20, 0xfcc84c0,9, 0xfcc8500,33, 0xfcc8600,11, 0xfcc8640,11, 0xfcc8680,1, 0xfcca000,1, 0xfcca200,4, 0xfcca300,53, 0xfcca400,4, 0xfcca500,40, 0xfcca600,15, 0xfcca640,4, 0xfcca660,17, 0xfcca6c0,6, 0xfcca6e0,2, 0xfcca6ec,3, 0xfcca700,8, 0xfcca724,1, 0xfcca800,20, 0xfccac00,53, 0xfccad00,53, 0xfccae00,1, 0xfccb000,40, 0xfccb100,40, 0xfccb200,1, 0xfccb400,1, 0xfccb804,1, 0xfccb844,39, 0xfccb900,3, 0xfccba00,3, 0xfccba44,1, 0xfccba50,4, 0xfccba80,1, 0xfccc000,2, 0xfccc200,27, 0xfccc280,4, 0xfccc2c0,25, 0xfccc340,6, 0xfccc360,2, 0xfccc36c,3, 0xfccc380,8, 0xfccc3a4,1, 0xfccc400,12, 0xfccc440,1, 0xfcd0000,4, 0xfcd0020,3, 0xfcd0030,2, 0xfcd0200,1, 0xfcd0224,10, 0xfcd0250,5, 0xfcd0280,1, 0xfcd0288,24, 0xfcd0300,3, 0xfcd0404,1, 0xfcd0414,5, 0xfcd0500,36, 0xfcd0600,3, 0xfcd0800,2, 0xfcd1000,1, 0xfcd1008,21, 0xfcd1080,1, 0xfcd1088,21, 0xfcd1100,1, 0xfcd1108,21, 0xfcd1180,1, 0xfcd1188,21, 0xfcd1200,1, 0xfcd1208,21, 0xfcd1280,1, 0xfcd1288,21, 0xfcd1300,1, 0xfcd1308,21, 0xfcd1380,1, 0xfcd1388,21, 0xfcd1400,21, 0xfcd1800,142, 0xfcd1c00,1, 0xfcd2000,4, 0xfcd2100,39, 0xfcd2200,3, 0xfcd2214,3, 0xfcd4004,1, 0xfcd4020,16, 0xfcd4080,2, 0xfcd4094,1, 0xfcd409c,2, 0xfcd40c0,6, 0xfcd4100,8, 0xfcd8004,17, 0xfcd8054,1, 0xfcd805c,2, 0xfcd8080,1, 0xfcd80a0,2, 0xfcd80b4,4, 0xfcd8100,2, 0xfcd8200,8, 0xfcd8400,1, 0xfcd8600,27, 0xfcd8680,4, 0xfcd86c0,25, 0xfcd8740,6, 0xfcd8760,2, 0xfcd876c,3, 0xfcd8780,8, 0xfcd87a4,3, 0xfcd8800,44, 0xfcd8900,1, 0xfce0000,1, 0xfce0200,27, 0xfce0280,4, 0xfce02c0,25, 0xfce0340,6, 0xfce0360,2, 0xfce036c,3, 0xfce0380,8, 0xfce03a4,1, 0xfce0400,20, 0xfce0480,3, 0xfce0490,9, 0xfd00000,198, 0xfd00400,2, 0xfd00440,9, 0xfd00480,7, 0xfd00800,198, 0xfd00c00,2, 0xfd00c40,9, 0xfd00c80,7, 0xfd01000,198, 0xfd01400,198, 0xfd01804,6, 0xfd01824,6, 0xfd01880,2, 0xfd01904,1, 0xfd01918,28, 0xfd019a0,6, 0xfd019c0,6, 0xfd01c00,2, 0xfd01d00,2, 0xfd01e04,1, 0xfd01e74,43, 0xfd02000,2, 0xfd02100,2, 0xfd02204,1, 0xfd02274,43, 0xfd02400,3, 0xfd02600,27, 0xfd02680,4, 0xfd026c0,25, 0xfd02740,6, 0xfd02760,4, 0xfd02774,11, 0xfd027a4,4, 0xfd02800,4, 0xfd02900,34, 0xfd02a00,4, 0xfd02b00,34, 0xfd02c00,3, 0xfd02c10,12, 0xfd02e00,56, 0xfd02ee4,4, 0xfd02f00,4, 0xfd03000,1, 0xfd08000,4, 0xfd08100,42, 0xfd08200,1, 0xfd08210,3, 0xfd08220,3, 0xfd08230,3, 0xfd08240,1, 0xfd08248,3, 0xfd08400,4, 0xfd08500,58, 0xfd08600,1, 0xfd08610,3, 0xfd08620,3, 0xfd08630,3, 0xfd08640,1, 0xfd08648,3, 0xfd08800,4, 0xfd08900,36, 0xfd08a00,1, 0xfd08c00,4, 0xfd08c80,27, 0xfd08d00,1, 0xfd08d10,3, 0xfd08d20,3, 0xfd08d30,3, 0xfd08d40,1, 0xfd08d48,3, 0xfd08e00,4, 0xfd08e80,31, 0xfd08f00,1, 0xfd08f10,3, 0xfd08f20,3, 0xfd08f30,3, 0xfd08f40,1, 0xfd08f48,3, 0xfd09000,4, 0xfd09040,13, 0xfd09080,1, 0xfd09200,15, 0xfd09240,4, 0xfd09260,17, 0xfd092c0,6, 0xfd092e0,2, 0xfd092ec,3, 0xfd09300,8, 0xfd09324,8, 0xfd09400,68, 0xfd09600,60, 0xfd09700,4, 0xfd09720,5, 0xfd09740,1, 0xfd09780,2, 0xfd0978c,2, 0xfd097a0,1, 0xfd097c0,12, 0xfd09800,7, 0xfd09820,5, 0xfd09900,49, 0xfd09a00,1, 0xfd09a08,23, 0xfd09a84,1, 0xfd09a8c,1, 0xfd09a94,1, 0xfd09a9c,2, 0xfd09ac0,1, 0xfd09c00,10, 0xfd09c40,1, 0xfd09c50,3, 0xfd09c80,10, 0xfd09cc0,12, 0xfd09d00,3, 0xfd09e00,1, 0xfd0a000,4, 0xfd0a100,42, 0xfd0a200,1, 0xfd0a210,3, 0xfd0a220,3, 0xfd0a230,3, 0xfd0a240,1, 0xfd0a248,3, 0xfd0a400,4, 0xfd0a500,58, 0xfd0a600,1, 0xfd0a610,3, 0xfd0a620,3, 0xfd0a630,3, 0xfd0a640,1, 0xfd0a648,3, 0xfd0a800,4, 0xfd0a900,36, 0xfd0aa00,1, 0xfd0ac00,4, 0xfd0ac80,27, 0xfd0ad00,1, 0xfd0ad10,3, 0xfd0ad20,3, 0xfd0ad30,3, 0xfd0ad40,1, 0xfd0ad48,3, 0xfd0ae00,4, 0xfd0ae80,31, 0xfd0af00,1, 0xfd0af10,3, 0xfd0af20,3, 0xfd0af30,3, 0xfd0af40,1, 0xfd0af48,3, 0xfd0b000,4, 0xfd0b040,13, 0xfd0b080,1, 0xfd0b200,15, 0xfd0b240,4, 0xfd0b260,17, 0xfd0b2c0,6, 0xfd0b2e0,2, 0xfd0b2ec,3, 0xfd0b300,8, 0xfd0b324,8, 0xfd0b400,68, 0xfd0b600,60, 0xfd0b700,4, 0xfd0b720,5, 0xfd0b740,1, 0xfd0b780,2, 0xfd0b78c,2, 0xfd0b7a0,1, 0xfd0b7c0,12, 0xfd0b800,7, 0xfd0b820,5, 0xfd0b900,49, 0xfd0ba00,1, 0xfd0ba08,23, 0xfd0ba84,1, 0xfd0ba8c,1, 0xfd0ba94,1, 0xfd0ba9c,2, 0xfd0bac0,1, 0xfd0bc00,10, 0xfd0bc40,1, 0xfd0bc50,3, 0xfd0bc80,10, 0xfd0bcc0,12, 0xfd0bd00,3, 0xfd0be00,1, 0xfd0c000,20, 0xfd0c080,3, 0xfd0c090,1, 0xfd0c098,4, 0xfd10000,49, 0xfd10100,12, 0xfd10140,4, 0xfd10184,1, 0xfd10198,2, 0xfd101a4,1, 0xfd101b8,7, 0xfd101e0,4, 0xfd10200,20, 0xfd10280,3, 0xfd10290,9, 0xfd102c0,6, 0xfd102e0,1, 0xfd102e8,7, 0xfd10400,49, 0xfd10500,12, 0xfd10540,4, 0xfd10584,1, 0xfd10598,2, 0xfd105a4,1, 0xfd105b8,7, 0xfd105e0,4, 0xfd10600,20, 0xfd10680,3, 0xfd10690,9, 0xfd106c0,6, 0xfd106e0,1, 0xfd106e8,7, 0xfd10800,49, 0xfd10900,12, 0xfd10940,4, 0xfd10984,1, 0xfd10998,2, 0xfd109a4,1, 0xfd109b8,7, 0xfd109e0,4, 0xfd10a00,20, 0xfd10a80,3, 0xfd10a90,9, 0xfd10ac0,6, 0xfd10ae0,1, 0xfd10ae8,7, 0xfd10c00,49, 0xfd10d00,12, 0xfd10d40,4, 0xfd10d84,1, 0xfd10d98,2, 0xfd10da4,1, 0xfd10db8,7, 0xfd10de0,4, 0xfd10e00,20, 0xfd10e80,3, 0xfd10e90,9, 0xfd10ec0,6, 0xfd10ee0,1, 0xfd10ee8,7, 0xfd11000,49, 0xfd11100,12, 0xfd11140,4, 0xfd11184,1, 0xfd11198,2, 0xfd111a4,1, 0xfd111b8,7, 0xfd111e0,4, 0xfd11200,20, 0xfd11280,3, 0xfd11290,9, 0xfd112c0,6, 0xfd112e0,1, 0xfd112e8,7, 0xfd11400,49, 0xfd11500,12, 0xfd11540,4, 0xfd11584,1, 0xfd11598,2, 0xfd115a4,1, 0xfd115b8,7, 0xfd115e0,4, 0xfd11600,20, 0xfd11680,3, 0xfd11690,9, 0xfd116c0,6, 0xfd116e0,1, 0xfd116e8,7, 0xfd11800,49, 0xfd11900,12, 0xfd11940,4, 0xfd11984,1, 0xfd11998,2, 0xfd119a4,1, 0xfd119b8,7, 0xfd119e0,4, 0xfd11a00,20, 0xfd11a80,3, 0xfd11a90,9, 0xfd11ac0,6, 0xfd11ae0,1, 0xfd11ae8,7, 0xfd12000,20, 0xfd12080,10, 0xfd12100,20, 0xfd12180,10, 0xfd12200,12, 0xfd12400,20, 0xfd12480,10, 0xfd12500,20, 0xfd12580,10, 0xfd12600,12, 0xfd12800,3, 0xfd12840,12, 0xfd12880,12, 0xfd128c0,12, 0xfd12900,12, 0xfd12940,12, 0xfd12980,12, 0xfd129c0,12, 0xfd12a00,12, 0xfd12c00,12, 0xfd12c40,7, 0xfd12c60,10, 0xfd13004,1, 0xfd13044,43, 0xfd13100,7, 0xfd13120,7, 0xfd13140,2, 0xfd1314c,2, 0xfd13160,2, 0xfd1316c,2, 0xfd13180,18, 0xfd13200,2, 0xfd13220,10, 0xfd13260,20, 0xfd132c0,9, 0xfd13300,15, 0xfd13340,9, 0xfd13380,6, 0xfd133a0,4, 0xfd13400,5, 0xfd14000,53, 0xfd14100,3, 0xfd14110,15, 0xfd14200,53, 0xfd14300,3, 0xfd14310,15, 0xfd14400,5, 0xfd14420,5, 0xfd14440,18, 0xfd14800,3, 0xfd14810,2, 0xfd14820,3, 0xfd14830,2, 0xfd14840,1, 0xfd15000,7, 0xfd15020,7, 0xfd15080,19, 0xfd15100,19, 0xfd15180,25, 0xfd15200,20, 0xfd15280,20, 0xfd15300,8, 0xfd15340,4, 0xfd15380,15, 0xfd153c0,15, 0xfd15400,9, 0xfd15430,5, 0xfd16000,6, 0xfd16020,1, 0xfd16028,2, 0xfd16040,11, 0xfd16070,2, 0xfd18000,82, 0xfd18200,2, 0xfd18240,9, 0xfd18280,7, 0xfd18400,82, 0xfd18604,6, 0xfd18700,15, 0xfd18740,9, 0xfd18780,6, 0xfd187a0,6, 0xfd18800,2, 0xfd18810,3, 0xfd18880,24, 0xfd188e4,1, 0xfd188f0,12, 0xfd20000,22, 0xfd20080,22, 0xfd20100,5, 0xfd20120,5, 0xfd20140,3, 0xfd20160,16, 0xfd201c0,7, 0xfd201e0,2, 0xfd20200,7, 0xfd20220,2, 0xfd20400,15, 0xfd20440,3, 0xfd20450,3, 0xfd20460,24, 0xfd20500,15, 0xfd20540,3, 0xfd20550,3, 0xfd20560,24, 0xfd20600,15, 0xfd20640,3, 0xfd20650,3, 0xfd20660,24, 0xfd20700,15, 0xfd20740,3, 0xfd20750,3, 0xfd20760,24, 0xfd20800,4, 0xfd20820,16, 0xfd20880,10, 0xfd208c0,10, 0xfd20900,6, 0xfd20920,6, 0xfd20940,4, 0xfd20980,13, 0xfd209c0,13, 0xfd20a00,9, 0xfd21000,86, 0xfd21200,2, 0xfd21240,9, 0xfd21280,7, 0xfd21400,86, 0xfd21604,6, 0xfd21800,86, 0xfd21a00,2, 0xfd21a40,9, 0xfd21a80,7, 0xfd21c00,86, 0xfd21e04,6, 0xfd22000,15, 0xfd22040,4, 0xfd22060,17, 0xfd220c0,6, 0xfd220e0,4, 0xfd220f4,11, 0xfd22128,38, 0xfd221c4,2, 0xfd221d0,4, 0xfd22200,1, 0xfd24000,22, 0xfd24080,22, 0xfd24100,5, 0xfd24120,5, 0xfd24140,3, 0xfd24160,16, 0xfd241c0,7, 0xfd241e0,2, 0xfd24200,7, 0xfd24220,2, 0xfd24400,15, 0xfd24440,3, 0xfd24450,3, 0xfd24460,24, 0xfd24500,15, 0xfd24540,3, 0xfd24550,3, 0xfd24560,24, 0xfd24600,15, 0xfd24640,3, 0xfd24650,3, 0xfd24660,24, 0xfd24700,15, 0xfd24740,3, 0xfd24750,3, 0xfd24760,24, 0xfd24800,4, 0xfd24820,16, 0xfd24880,10, 0xfd248c0,10, 0xfd24900,6, 0xfd24920,6, 0xfd24940,4, 0xfd24980,13, 0xfd249c0,13, 0xfd24a00,9, 0xfd25000,86, 0xfd25200,2, 0xfd25240,9, 0xfd25280,7, 0xfd25400,86, 0xfd25604,6, 0xfd25800,86, 0xfd25a00,2, 0xfd25a40,9, 0xfd25a80,7, 0xfd25c00,86, 0xfd25e04,6, 0xfd26000,15, 0xfd26040,4, 0xfd26060,17, 0xfd260c0,6, 0xfd260e0,4, 0xfd260f4,11, 0xfd26128,38, 0xfd261c4,2, 0xfd261d0,4, 0xfd26200,1, 0xfd28000,9, 0xfd28040,9, 0xfd28080,5, 0xfd28100,21, 0xfd28160,5, 0xfd28180,45, 0xfd28240,13, 0xfd28280,9, 0xfd28400,9, 0xfd28440,9, 0xfd28480,5, 0xfd28500,21, 0xfd28560,5, 0xfd28580,45, 0xfd28640,13, 0xfd28680,9, 0xfd28800,12, 0xfd28900,15, 0xfd28940,4, 0xfd28960,17, 0xfd289c0,6, 0xfd289e0,4, 0xfd289f4,29, 0xfd2c000,30, 0xfd2c080,3, 0xfd2c090,19, 0xfd2c100,30, 0xfd2c180,3, 0xfd2c190,19, 0xfd2c200,30, 0xfd2c280,3, 0xfd2c290,19, 0xfd2c300,30, 0xfd2c380,3, 0xfd2c390,19, 0xfd2c400,30, 0xfd2c480,3, 0xfd2c490,19, 0xfd2c500,30, 0xfd2c580,3, 0xfd2c590,19, 0xfd2c600,30, 0xfd2c680,3, 0xfd2c690,19, 0xfd2c700,30, 0xfd2c780,3, 0xfd2c790,19, 0xfd2c800,12, 0xfd2c844,1, 0xfd2c854,8, 0xfd2c880,7, 0xfd2c8a0,2, 0xfd2c8ac,2, 0xfd2c8c0,26, 0xfd2c980,4, 0xfd2c9a0,5, 0xfd2c9c0,1, 0xfd2d000,3, 0xfd2d010,3, 0xfd2d020,3, 0xfd2d030,3, 0xfd2d040,3, 0xfd2d050,3, 0xfd2d060,3, 0xfd2d070,3, 0xfd2d080,6, 0xfd2d0a0,6, 0xfd2d0c0,6, 0xfd2d0e0,6, 0xfd2d100,6, 0xfd2d120,6, 0xfd2d140,6, 0xfd2d160,6, 0xfd2d200,68, 0xfd2d400,1, 0xfd2d804,1, 0xfd2d844,54, 0xfd2da00,12, 0xfd2da40,12, 0xfd2da80,12, 0xfd2dac0,12, 0xfd2db00,12, 0xfd2db40,12, 0xfd2db80,12, 0xfd2dbc0,12, 0xfd2dc00,28, 0xfd2dc80,10, 0xfd2e000,3, 0xfd2e020,6, 0xfd2e040,6, 0xfd2e060,15, 0xfd2e100,26, 0xfd2e180,15, 0xfd2e200,15, 0xfd2e240,4, 0xfd2e260,17, 0xfd2e2c0,6, 0xfd2e2e0,4, 0xfd2e2f4,18, 0xfd2e340,4, 0xfd2e360,17, 0xfd2e3c0,6, 0xfd2e3e0,4, 0xfd2e3f4,15, 0xfd30000,1, 0xfd31000,1020, 0xfd32000,194, 0xfd33000,1020, 0xfd34000,1020, 0xfd35000,1020, 0xfd36000,1020, 0xfd37000,1020, 0xfd38000,1020, 0xfd39000,1020, 0xfd3a000,1020, 0xfd3b000,194, 0xfd3c000,3, 0xfd3c010,13, 0xfd3c080,16, 0xfd3c100,20, 0xfd3c184,1, 0xfd3c18c,4, 0xfd3c200,3, 0xfd3c210,13, 0xfd3c280,16, 0xfd3c300,20, 0xfd3c384,1, 0xfd3c38c,4, 0xfd3c400,3, 0xfd3c410,13, 0xfd3c480,16, 0xfd3c500,20, 0xfd3c584,1, 0xfd3c58c,4, 0xfd3c600,3, 0xfd3c610,13, 0xfd3c680,16, 0xfd3c700,20, 0xfd3c784,1, 0xfd3c78c,4, 0xfd3c800,3, 0xfd3c810,13, 0xfd3c880,16, 0xfd3c900,20, 0xfd3c984,1, 0xfd3c98c,4, 0xfd3ca00,3, 0xfd3ca10,13, 0xfd3ca80,16, 0xfd3cb00,20, 0xfd3cb84,1, 0xfd3cb8c,4, 0xfd3cc00,3, 0xfd3cc10,13, 0xfd3cc80,16, 0xfd3cd00,20, 0xfd3cd84,1, 0xfd3cd8c,4, 0xfd3ce00,3, 0xfd3ce10,13, 0xfd3ce80,16, 0xfd3cf00,20, 0xfd3cf84,1, 0xfd3cf8c,4, 0xfd3d000,3, 0xfd3d010,13, 0xfd3d080,16, 0xfd3d100,20, 0xfd3d184,1, 0xfd3d18c,4, 0xfd3d200,18, 0xfd3d250,2, 0xfd3d260,4, 0xfd3e000,1, 0xfd3e014,1, 0xfd3e01c,19, 0xfd3e080,1, 0xfd3e094,1, 0xfd3e09c,19, 0xfd3e100,8, 0xfd3e200,13, 0xfd3e240,9, 0xfd3e280,12, 0xfd3e2c0,2, 0xfd3e2e0,12, 0xfd40000,3, 0xfd40080,20, 0xfd40100,10, 0xfd40140,1, 0xfd40154,1, 0xfd4015c,2, 0xfd40200,15, 0xfd40240,4, 0xfd40260,17, 0xfd402c0,6, 0xfd402e0,2, 0xfd402ec,3, 0xfd40300,8, 0xfd40324,1, 0xfd40400,4, 0xfd40440,20, 0xfd404c0,9, 0xfd40500,33, 0xfd40600,11, 0xfd40640,11, 0xfd40680,1, 0xfd42000,1, 0xfd42200,4, 0xfd42300,53, 0xfd42400,4, 0xfd42500,40, 0xfd42600,15, 0xfd42640,4, 0xfd42660,17, 0xfd426c0,6, 0xfd426e0,2, 0xfd426ec,3, 0xfd42700,8, 0xfd42724,1, 0xfd42800,20, 0xfd42c00,53, 0xfd42d00,53, 0xfd42e00,1, 0xfd43000,40, 0xfd43100,40, 0xfd43200,1, 0xfd43400,1, 0xfd43804,1, 0xfd43844,39, 0xfd43900,3, 0xfd43a00,3, 0xfd43a44,1, 0xfd43a50,4, 0xfd43a80,1, 0xfd44000,2, 0xfd44200,27, 0xfd44280,4, 0xfd442c0,25, 0xfd44340,6, 0xfd44360,2, 0xfd4436c,3, 0xfd44380,8, 0xfd443a4,1, 0xfd44400,12, 0xfd44440,1, 0xfd48000,3, 0xfd48080,20, 0xfd48100,10, 0xfd48140,1, 0xfd48154,1, 0xfd4815c,2, 0xfd48200,15, 0xfd48240,4, 0xfd48260,17, 0xfd482c0,6, 0xfd482e0,2, 0xfd482ec,3, 0xfd48300,8, 0xfd48324,1, 0xfd48400,4, 0xfd48440,20, 0xfd484c0,9, 0xfd48500,33, 0xfd48600,11, 0xfd48640,11, 0xfd48680,1, 0xfd4a000,1, 0xfd4a200,4, 0xfd4a300,53, 0xfd4a400,4, 0xfd4a500,40, 0xfd4a600,15, 0xfd4a640,4, 0xfd4a660,17, 0xfd4a6c0,6, 0xfd4a6e0,2, 0xfd4a6ec,3, 0xfd4a700,8, 0xfd4a724,1, 0xfd4a800,20, 0xfd4ac00,53, 0xfd4ad00,53, 0xfd4ae00,1, 0xfd4b000,40, 0xfd4b100,40, 0xfd4b200,1, 0xfd4b400,1, 0xfd4b804,1, 0xfd4b844,39, 0xfd4b900,3, 0xfd4ba00,3, 0xfd4ba44,1, 0xfd4ba50,4, 0xfd4ba80,1, 0xfd4c000,2, 0xfd4c200,27, 0xfd4c280,4, 0xfd4c2c0,25, 0xfd4c340,6, 0xfd4c360,2, 0xfd4c36c,3, 0xfd4c380,8, 0xfd4c3a4,1, 0xfd4c400,12, 0xfd4c440,1, 0xfd50000,4, 0xfd50020,3, 0xfd50030,2, 0xfd50200,1, 0xfd50224,10, 0xfd50250,5, 0xfd50280,1, 0xfd50288,24, 0xfd50300,3, 0xfd50404,1, 0xfd50414,5, 0xfd50500,36, 0xfd50600,3, 0xfd50800,2, 0xfd51000,1, 0xfd51008,21, 0xfd51080,1, 0xfd51088,21, 0xfd51100,1, 0xfd51108,21, 0xfd51180,1, 0xfd51188,21, 0xfd51200,1, 0xfd51208,21, 0xfd51280,1, 0xfd51288,21, 0xfd51300,1, 0xfd51308,21, 0xfd51380,1, 0xfd51388,21, 0xfd51400,21, 0xfd51800,142, 0xfd51c00,1, 0xfd52000,4, 0xfd52100,39, 0xfd52200,3, 0xfd52214,3, 0xfd54004,1, 0xfd54020,16, 0xfd54080,2, 0xfd54094,1, 0xfd5409c,2, 0xfd540c0,6, 0xfd54100,8, 0xfd58004,17, 0xfd58054,1, 0xfd5805c,2, 0xfd58080,1, 0xfd580a0,2, 0xfd580b4,4, 0xfd58100,2, 0xfd58200,8, 0xfd58400,1, 0xfd58600,27, 0xfd58680,4, 0xfd586c0,25, 0xfd58740,6, 0xfd58760,2, 0xfd5876c,3, 0xfd58780,8, 0xfd587a4,3, 0xfd58800,44, 0xfd58900,1, 0xfd60000,1, 0xfd60200,27, 0xfd60280,4, 0xfd602c0,25, 0xfd60340,6, 0xfd60360,2, 0xfd6036c,3, 0xfd60380,8, 0xfd603a4,1, 0xfd60400,20, 0xfd60480,3, 0xfd60490,9, 0xfd80000,198, 0xfd80400,2, 0xfd80440,9, 0xfd80480,7, 0xfd80800,198, 0xfd80c00,2, 0xfd80c40,9, 0xfd80c80,7, 0xfd81000,198, 0xfd81400,198, 0xfd81804,6, 0xfd81824,6, 0xfd81880,2, 0xfd81904,1, 0xfd81918,28, 0xfd819a0,6, 0xfd819c0,6, 0xfd81c00,2, 0xfd81d00,2, 0xfd81e04,1, 0xfd81e74,43, 0xfd82000,2, 0xfd82100,2, 0xfd82204,1, 0xfd82274,43, 0xfd82400,3, 0xfd82600,27, 0xfd82680,4, 0xfd826c0,25, 0xfd82740,6, 0xfd82760,4, 0xfd82774,11, 0xfd827a4,4, 0xfd82800,4, 0xfd82900,34, 0xfd82a00,4, 0xfd82b00,34, 0xfd82c00,3, 0xfd82c10,12, 0xfd82e00,56, 0xfd82ee4,4, 0xfd82f00,4, 0xfd83000,1, 0xfd88000,4, 0xfd88100,42, 0xfd88200,1, 0xfd88210,3, 0xfd88220,3, 0xfd88230,3, 0xfd88240,1, 0xfd88248,3, 0xfd88400,4, 0xfd88500,58, 0xfd88600,1, 0xfd88610,3, 0xfd88620,3, 0xfd88630,3, 0xfd88640,1, 0xfd88648,3, 0xfd88800,4, 0xfd88900,36, 0xfd88a00,1, 0xfd88c00,4, 0xfd88c80,27, 0xfd88d00,1, 0xfd88d10,3, 0xfd88d20,3, 0xfd88d30,3, 0xfd88d40,1, 0xfd88d48,3, 0xfd88e00,4, 0xfd88e80,31, 0xfd88f00,1, 0xfd88f10,3, 0xfd88f20,3, 0xfd88f30,3, 0xfd88f40,1, 0xfd88f48,3, 0xfd89000,4, 0xfd89040,13, 0xfd89080,1, 0xfd89200,15, 0xfd89240,4, 0xfd89260,17, 0xfd892c0,6, 0xfd892e0,2, 0xfd892ec,3, 0xfd89300,8, 0xfd89324,8, 0xfd89400,68, 0xfd89600,60, 0xfd89700,4, 0xfd89720,5, 0xfd89740,1, 0xfd89780,2, 0xfd8978c,2, 0xfd897a0,1, 0xfd897c0,12, 0xfd89800,7, 0xfd89820,5, 0xfd89900,49, 0xfd89a00,1, 0xfd89a08,23, 0xfd89a84,1, 0xfd89a8c,1, 0xfd89a94,1, 0xfd89a9c,2, 0xfd89ac0,1, 0xfd89c00,10, 0xfd89c40,1, 0xfd89c50,3, 0xfd89c80,10, 0xfd89cc0,12, 0xfd89d00,3, 0xfd89e00,1, 0xfd8a000,4, 0xfd8a100,42, 0xfd8a200,1, 0xfd8a210,3, 0xfd8a220,3, 0xfd8a230,3, 0xfd8a240,1, 0xfd8a248,3, 0xfd8a400,4, 0xfd8a500,58, 0xfd8a600,1, 0xfd8a610,3, 0xfd8a620,3, 0xfd8a630,3, 0xfd8a640,1, 0xfd8a648,3, 0xfd8a800,4, 0xfd8a900,36, 0xfd8aa00,1, 0xfd8ac00,4, 0xfd8ac80,27, 0xfd8ad00,1, 0xfd8ad10,3, 0xfd8ad20,3, 0xfd8ad30,3, 0xfd8ad40,1, 0xfd8ad48,3, 0xfd8ae00,4, 0xfd8ae80,31, 0xfd8af00,1, 0xfd8af10,3, 0xfd8af20,3, 0xfd8af30,3, 0xfd8af40,1, 0xfd8af48,3, 0xfd8b000,4, 0xfd8b040,13, 0xfd8b080,1, 0xfd8b200,15, 0xfd8b240,4, 0xfd8b260,17, 0xfd8b2c0,6, 0xfd8b2e0,2, 0xfd8b2ec,3, 0xfd8b300,8, 0xfd8b324,8, 0xfd8b400,68, 0xfd8b600,60, 0xfd8b700,4, 0xfd8b720,5, 0xfd8b740,1, 0xfd8b780,2, 0xfd8b78c,2, 0xfd8b7a0,1, 0xfd8b7c0,12, 0xfd8b800,7, 0xfd8b820,5, 0xfd8b900,49, 0xfd8ba00,1, 0xfd8ba08,23, 0xfd8ba84,1, 0xfd8ba8c,1, 0xfd8ba94,1, 0xfd8ba9c,2, 0xfd8bac0,1, 0xfd8bc00,10, 0xfd8bc40,1, 0xfd8bc50,3, 0xfd8bc80,10, 0xfd8bcc0,12, 0xfd8bd00,3, 0xfd8be00,1, 0xfd8c000,20, 0xfd8c080,3, 0xfd8c090,1, 0xfd8c098,4, 0xfd90000,49, 0xfd90100,12, 0xfd90140,4, 0xfd90184,1, 0xfd90198,2, 0xfd901a4,1, 0xfd901b8,7, 0xfd901e0,4, 0xfd90200,20, 0xfd90280,3, 0xfd90290,9, 0xfd902c0,6, 0xfd902e0,1, 0xfd902e8,7, 0xfd90400,49, 0xfd90500,12, 0xfd90540,4, 0xfd90584,1, 0xfd90598,2, 0xfd905a4,1, 0xfd905b8,7, 0xfd905e0,4, 0xfd90600,20, 0xfd90680,3, 0xfd90690,9, 0xfd906c0,6, 0xfd906e0,1, 0xfd906e8,7, 0xfd90800,49, 0xfd90900,12, 0xfd90940,4, 0xfd90984,1, 0xfd90998,2, 0xfd909a4,1, 0xfd909b8,7, 0xfd909e0,4, 0xfd90a00,20, 0xfd90a80,3, 0xfd90a90,9, 0xfd90ac0,6, 0xfd90ae0,1, 0xfd90ae8,7, 0xfd90c00,49, 0xfd90d00,12, 0xfd90d40,4, 0xfd90d84,1, 0xfd90d98,2, 0xfd90da4,1, 0xfd90db8,7, 0xfd90de0,4, 0xfd90e00,20, 0xfd90e80,3, 0xfd90e90,9, 0xfd90ec0,6, 0xfd90ee0,1, 0xfd90ee8,7, 0xfd91000,49, 0xfd91100,12, 0xfd91140,4, 0xfd91184,1, 0xfd91198,2, 0xfd911a4,1, 0xfd911b8,7, 0xfd911e0,4, 0xfd91200,20, 0xfd91280,3, 0xfd91290,9, 0xfd912c0,6, 0xfd912e0,1, 0xfd912e8,7, 0xfd91400,49, 0xfd91500,12, 0xfd91540,4, 0xfd91584,1, 0xfd91598,2, 0xfd915a4,1, 0xfd915b8,7, 0xfd915e0,4, 0xfd91600,20, 0xfd91680,3, 0xfd91690,9, 0xfd916c0,6, 0xfd916e0,1, 0xfd916e8,7, 0xfd91800,49, 0xfd91900,12, 0xfd91940,4, 0xfd91984,1, 0xfd91998,2, 0xfd919a4,1, 0xfd919b8,7, 0xfd919e0,4, 0xfd91a00,20, 0xfd91a80,3, 0xfd91a90,9, 0xfd91ac0,6, 0xfd91ae0,1, 0xfd91ae8,7, 0xfd92000,20, 0xfd92080,10, 0xfd92100,20, 0xfd92180,10, 0xfd92200,12, 0xfd92400,20, 0xfd92480,10, 0xfd92500,20, 0xfd92580,10, 0xfd92600,12, 0xfd92800,3, 0xfd92840,12, 0xfd92880,12, 0xfd928c0,12, 0xfd92900,12, 0xfd92940,12, 0xfd92980,12, 0xfd929c0,12, 0xfd92a00,12, 0xfd92c00,12, 0xfd92c40,7, 0xfd92c60,10, 0xfd93004,1, 0xfd93044,43, 0xfd93100,7, 0xfd93120,7, 0xfd93140,2, 0xfd9314c,2, 0xfd93160,2, 0xfd9316c,2, 0xfd93180,18, 0xfd93200,2, 0xfd93220,10, 0xfd93260,20, 0xfd932c0,9, 0xfd93300,15, 0xfd93340,9, 0xfd93380,6, 0xfd933a0,4, 0xfd93400,5, 0xfd94000,53, 0xfd94100,3, 0xfd94110,15, 0xfd94200,53, 0xfd94300,3, 0xfd94310,15, 0xfd94400,5, 0xfd94420,5, 0xfd94440,18, 0xfd94800,3, 0xfd94810,2, 0xfd94820,3, 0xfd94830,2, 0xfd94840,1, 0xfd95000,7, 0xfd95020,7, 0xfd95080,19, 0xfd95100,19, 0xfd95180,25, 0xfd95200,20, 0xfd95280,20, 0xfd95300,8, 0xfd95340,4, 0xfd95380,15, 0xfd953c0,15, 0xfd95400,9, 0xfd95430,5, 0xfd96000,6, 0xfd96020,1, 0xfd96028,2, 0xfd96040,11, 0xfd96070,2, 0xfd98000,82, 0xfd98200,2, 0xfd98240,9, 0xfd98280,7, 0xfd98400,82, 0xfd98604,6, 0xfd98700,15, 0xfd98740,9, 0xfd98780,6, 0xfd987a0,6, 0xfd98800,2, 0xfd98810,3, 0xfd98880,24, 0xfd988e4,1, 0xfd988f0,12, 0xfda0000,22, 0xfda0080,22, 0xfda0100,5, 0xfda0120,5, 0xfda0140,3, 0xfda0160,16, 0xfda01c0,7, 0xfda01e0,2, 0xfda0200,7, 0xfda0220,2, 0xfda0400,15, 0xfda0440,3, 0xfda0450,3, 0xfda0460,24, 0xfda0500,15, 0xfda0540,3, 0xfda0550,3, 0xfda0560,24, 0xfda0600,15, 0xfda0640,3, 0xfda0650,3, 0xfda0660,24, 0xfda0700,15, 0xfda0740,3, 0xfda0750,3, 0xfda0760,24, 0xfda0800,4, 0xfda0820,16, 0xfda0880,10, 0xfda08c0,10, 0xfda0900,6, 0xfda0920,6, 0xfda0940,4, 0xfda0980,13, 0xfda09c0,13, 0xfda0a00,9, 0xfda1000,86, 0xfda1200,2, 0xfda1240,9, 0xfda1280,7, 0xfda1400,86, 0xfda1604,6, 0xfda1800,86, 0xfda1a00,2, 0xfda1a40,9, 0xfda1a80,7, 0xfda1c00,86, 0xfda1e04,6, 0xfda2000,15, 0xfda2040,4, 0xfda2060,17, 0xfda20c0,6, 0xfda20e0,4, 0xfda20f4,11, 0xfda2128,38, 0xfda21c4,2, 0xfda21d0,4, 0xfda2200,1, 0xfda4000,22, 0xfda4080,22, 0xfda4100,5, 0xfda4120,5, 0xfda4140,3, 0xfda4160,16, 0xfda41c0,7, 0xfda41e0,2, 0xfda4200,7, 0xfda4220,2, 0xfda4400,15, 0xfda4440,3, 0xfda4450,3, 0xfda4460,24, 0xfda4500,15, 0xfda4540,3, 0xfda4550,3, 0xfda4560,24, 0xfda4600,15, 0xfda4640,3, 0xfda4650,3, 0xfda4660,24, 0xfda4700,15, 0xfda4740,3, 0xfda4750,3, 0xfda4760,24, 0xfda4800,4, 0xfda4820,16, 0xfda4880,10, 0xfda48c0,10, 0xfda4900,6, 0xfda4920,6, 0xfda4940,4, 0xfda4980,13, 0xfda49c0,13, 0xfda4a00,9, 0xfda5000,86, 0xfda5200,2, 0xfda5240,9, 0xfda5280,7, 0xfda5400,86, 0xfda5604,6, 0xfda5800,86, 0xfda5a00,2, 0xfda5a40,9, 0xfda5a80,7, 0xfda5c00,86, 0xfda5e04,6, 0xfda6000,15, 0xfda6040,4, 0xfda6060,17, 0xfda60c0,6, 0xfda60e0,4, 0xfda60f4,11, 0xfda6128,38, 0xfda61c4,2, 0xfda61d0,4, 0xfda6200,1, 0xfda8000,9, 0xfda8040,9, 0xfda8080,5, 0xfda8100,21, 0xfda8160,5, 0xfda8180,45, 0xfda8240,13, 0xfda8280,9, 0xfda8400,9, 0xfda8440,9, 0xfda8480,5, 0xfda8500,21, 0xfda8560,5, 0xfda8580,45, 0xfda8640,13, 0xfda8680,9, 0xfda8800,12, 0xfda8900,15, 0xfda8940,4, 0xfda8960,17, 0xfda89c0,6, 0xfda89e0,4, 0xfda89f4,29, 0xfdac000,30, 0xfdac080,3, 0xfdac090,19, 0xfdac100,30, 0xfdac180,3, 0xfdac190,19, 0xfdac200,30, 0xfdac280,3, 0xfdac290,19, 0xfdac300,30, 0xfdac380,3, 0xfdac390,19, 0xfdac400,30, 0xfdac480,3, 0xfdac490,19, 0xfdac500,30, 0xfdac580,3, 0xfdac590,19, 0xfdac600,30, 0xfdac680,3, 0xfdac690,19, 0xfdac700,30, 0xfdac780,3, 0xfdac790,19, 0xfdac800,12, 0xfdac844,1, 0xfdac854,8, 0xfdac880,7, 0xfdac8a0,2, 0xfdac8ac,2, 0xfdac8c0,26, 0xfdac980,4, 0xfdac9a0,5, 0xfdac9c0,1, 0xfdad000,3, 0xfdad010,3, 0xfdad020,3, 0xfdad030,3, 0xfdad040,3, 0xfdad050,3, 0xfdad060,3, 0xfdad070,3, 0xfdad080,6, 0xfdad0a0,6, 0xfdad0c0,6, 0xfdad0e0,6, 0xfdad100,6, 0xfdad120,6, 0xfdad140,6, 0xfdad160,6, 0xfdad200,68, 0xfdad400,1, 0xfdad804,1, 0xfdad844,54, 0xfdada00,12, 0xfdada40,12, 0xfdada80,12, 0xfdadac0,12, 0xfdadb00,12, 0xfdadb40,12, 0xfdadb80,12, 0xfdadbc0,12, 0xfdadc00,28, 0xfdadc80,10, 0xfdae000,3, 0xfdae020,6, 0xfdae040,6, 0xfdae060,15, 0xfdae100,26, 0xfdae180,15, 0xfdae200,15, 0xfdae240,4, 0xfdae260,17, 0xfdae2c0,6, 0xfdae2e0,4, 0xfdae2f4,18, 0xfdae340,4, 0xfdae360,17, 0xfdae3c0,6, 0xfdae3e0,4, 0xfdae3f4,15, 0xfdb0000,1, 0xfdb1000,1020, 0xfdb2000,194, 0xfdb3000,1020, 0xfdb4000,1020, 0xfdb5000,1020, 0xfdb6000,1020, 0xfdb7000,1020, 0xfdb8000,1020, 0xfdb9000,1020, 0xfdba000,1020, 0xfdbb000,194, 0xfdbc000,3, 0xfdbc010,13, 0xfdbc080,16, 0xfdbc100,20, 0xfdbc184,1, 0xfdbc18c,4, 0xfdbc200,3, 0xfdbc210,13, 0xfdbc280,16, 0xfdbc300,20, 0xfdbc384,1, 0xfdbc38c,4, 0xfdbc400,3, 0xfdbc410,13, 0xfdbc480,16, 0xfdbc500,20, 0xfdbc584,1, 0xfdbc58c,4, 0xfdbc600,3, 0xfdbc610,13, 0xfdbc680,16, 0xfdbc700,20, 0xfdbc784,1, 0xfdbc78c,4, 0xfdbc800,3, 0xfdbc810,13, 0xfdbc880,16, 0xfdbc900,20, 0xfdbc984,1, 0xfdbc98c,4, 0xfdbca00,3, 0xfdbca10,13, 0xfdbca80,16, 0xfdbcb00,20, 0xfdbcb84,1, 0xfdbcb8c,4, 0xfdbcc00,3, 0xfdbcc10,13, 0xfdbcc80,16, 0xfdbcd00,20, 0xfdbcd84,1, 0xfdbcd8c,4, 0xfdbce00,3, 0xfdbce10,13, 0xfdbce80,16, 0xfdbcf00,20, 0xfdbcf84,1, 0xfdbcf8c,4, 0xfdbd000,3, 0xfdbd010,13, 0xfdbd080,16, 0xfdbd100,20, 0xfdbd184,1, 0xfdbd18c,4, 0xfdbd200,18, 0xfdbd250,2, 0xfdbd260,4, 0xfdbe000,1, 0xfdbe014,1, 0xfdbe01c,19, 0xfdbe080,1, 0xfdbe094,1, 0xfdbe09c,19, 0xfdbe100,8, 0xfdbe200,13, 0xfdbe240,9, 0xfdbe280,12, 0xfdbe2c0,2, 0xfdbe2e0,12, 0xfdc0000,3, 0xfdc0080,20, 0xfdc0100,10, 0xfdc0140,1, 0xfdc0154,1, 0xfdc015c,2, 0xfdc0200,15, 0xfdc0240,4, 0xfdc0260,17, 0xfdc02c0,6, 0xfdc02e0,2, 0xfdc02ec,3, 0xfdc0300,8, 0xfdc0324,1, 0xfdc0400,4, 0xfdc0440,20, 0xfdc04c0,9, 0xfdc0500,33, 0xfdc0600,11, 0xfdc0640,11, 0xfdc0680,1, 0xfdc2000,1, 0xfdc2200,4, 0xfdc2300,53, 0xfdc2400,4, 0xfdc2500,40, 0xfdc2600,15, 0xfdc2640,4, 0xfdc2660,17, 0xfdc26c0,6, 0xfdc26e0,2, 0xfdc26ec,3, 0xfdc2700,8, 0xfdc2724,1, 0xfdc2800,20, 0xfdc2c00,53, 0xfdc2d00,53, 0xfdc2e00,1, 0xfdc3000,40, 0xfdc3100,40, 0xfdc3200,1, 0xfdc3400,1, 0xfdc3804,1, 0xfdc3844,39, 0xfdc3900,3, 0xfdc3a00,3, 0xfdc3a44,1, 0xfdc3a50,4, 0xfdc3a80,1, 0xfdc4000,2, 0xfdc4200,27, 0xfdc4280,4, 0xfdc42c0,25, 0xfdc4340,6, 0xfdc4360,2, 0xfdc436c,3, 0xfdc4380,8, 0xfdc43a4,1, 0xfdc4400,12, 0xfdc4440,1, 0xfdc8000,3, 0xfdc8080,20, 0xfdc8100,10, 0xfdc8140,1, 0xfdc8154,1, 0xfdc815c,2, 0xfdc8200,15, 0xfdc8240,4, 0xfdc8260,17, 0xfdc82c0,6, 0xfdc82e0,2, 0xfdc82ec,3, 0xfdc8300,8, 0xfdc8324,1, 0xfdc8400,4, 0xfdc8440,20, 0xfdc84c0,9, 0xfdc8500,33, 0xfdc8600,11, 0xfdc8640,11, 0xfdc8680,1, 0xfdca000,1, 0xfdca200,4, 0xfdca300,53, 0xfdca400,4, 0xfdca500,40, 0xfdca600,15, 0xfdca640,4, 0xfdca660,17, 0xfdca6c0,6, 0xfdca6e0,2, 0xfdca6ec,3, 0xfdca700,8, 0xfdca724,1, 0xfdca800,20, 0xfdcac00,53, 0xfdcad00,53, 0xfdcae00,1, 0xfdcb000,40, 0xfdcb100,40, 0xfdcb200,1, 0xfdcb400,1, 0xfdcb804,1, 0xfdcb844,39, 0xfdcb900,3, 0xfdcba00,3, 0xfdcba44,1, 0xfdcba50,4, 0xfdcba80,1, 0xfdcc000,2, 0xfdcc200,27, 0xfdcc280,4, 0xfdcc2c0,25, 0xfdcc340,6, 0xfdcc360,2, 0xfdcc36c,3, 0xfdcc380,8, 0xfdcc3a4,1, 0xfdcc400,12, 0xfdcc440,1, 0xfdd0000,4, 0xfdd0020,3, 0xfdd0030,2, 0xfdd0200,1, 0xfdd0224,10, 0xfdd0250,5, 0xfdd0280,1, 0xfdd0288,24, 0xfdd0300,3, 0xfdd0404,1, 0xfdd0414,5, 0xfdd0500,36, 0xfdd0600,3, 0xfdd0800,2, 0xfdd1000,1, 0xfdd1008,21, 0xfdd1080,1, 0xfdd1088,21, 0xfdd1100,1, 0xfdd1108,21, 0xfdd1180,1, 0xfdd1188,21, 0xfdd1200,1, 0xfdd1208,21, 0xfdd1280,1, 0xfdd1288,21, 0xfdd1300,1, 0xfdd1308,21, 0xfdd1380,1, 0xfdd1388,21, 0xfdd1400,21, 0xfdd1800,142, 0xfdd1c00,1, 0xfdd2000,4, 0xfdd2100,39, 0xfdd2200,3, 0xfdd2214,3, 0xfdd4004,1, 0xfdd4020,16, 0xfdd4080,2, 0xfdd4094,1, 0xfdd409c,2, 0xfdd40c0,6, 0xfdd4100,8, 0xfdd8004,17, 0xfdd8054,1, 0xfdd805c,2, 0xfdd8080,1, 0xfdd80a0,2, 0xfdd80b4,4, 0xfdd8100,2, 0xfdd8200,8, 0xfdd8400,1, 0xfdd8600,27, 0xfdd8680,4, 0xfdd86c0,25, 0xfdd8740,6, 0xfdd8760,2, 0xfdd876c,3, 0xfdd8780,8, 0xfdd87a4,3, 0xfdd8800,44, 0xfdd8900,1, 0xfde0000,1, 0xfde0200,27, 0xfde0280,4, 0xfde02c0,25, 0xfde0340,6, 0xfde0360,2, 0xfde036c,3, 0xfde0380,8, 0xfde03a4,1, 0xfde0400,20, 0xfde0480,3, 0xfde0490,9, mstflint-4.26.0/mstdump/mstdump_dbs/CableSFP51.csv0000644000175000017500000000004614522641732022157 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,64, mstflint-4.26.0/mstdump/mstdump_dbs/Quantum2.csv0000644000175000017500000244777314522641732022176 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,20, 0x000480,26, 0x000500,4, 0x000800,20, 0x000880,26, 0x000900,4, 0x000c00,20, 0x000c80,26, 0x000d00,4, 0x001000,20, 0x001080,26, 0x001100,4, 0x001400,20, 0x001480,26, 0x001500,4, 0x001800,20, 0x001880,26, 0x001900,4, 0x001c00,20, 0x001c80,26, 0x001d00,4, 0x002000,20, 0x002080,26, 0x002100,4, 0x002400,20, 0x002480,26, 0x002500,4, 0x002800,20, 0x002880,26, 0x002900,4, 0x002c00,20, 0x002c80,26, 0x002d00,4, 0x003000,20, 0x003080,26, 0x003100,4, 0x003400,20, 0x003480,26, 0x003500,4, 0x003800,20, 0x003880,26, 0x003900,4, 0x003c00,20, 0x003c80,26, 0x003d00,4, 0x004000,20, 0x004080,26, 0x004100,4, 0x004400,20, 0x004480,26, 0x004500,4, 0x004800,20, 0x004880,26, 0x004900,4, 0x004c00,20, 0x004c80,26, 0x004d00,4, 0x005000,20, 0x005080,26, 0x005100,4, 0x005400,20, 0x005480,26, 0x005500,4, 0x005800,20, 0x005880,26, 0x005900,4, 0x005c00,20, 0x005c80,26, 0x005d00,4, 0x006000,20, 0x006080,26, 0x006100,4, 0x006400,20, 0x006480,26, 0x006500,4, 0x006800,20, 0x006880,26, 0x006900,4, 0x006c00,20, 0x006c80,26, 0x006d00,4, 0x007000,20, 0x007080,26, 0x007100,4, 0x007400,20, 0x007480,26, 0x007500,4, 0x007800,20, 0x007880,26, 0x007900,4, 0x007c00,20, 0x007c80,26, 0x007d00,4, 0x008000,20, 0x008080,26, 0x008100,4, 0x008400,20, 0x008480,28, 0x008500,4, 0x008800,28, 0x008900,42, 0x008a00,4, 0x008c00,28, 0x008c80,36, 0x009000,20, 0x009080,24, 0x009100,4, 0x009400,20, 0x009480,24, 0x009500,4, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c00,11, 0x060c40,6, 0x060c60,7, 0x060c80,2, 0x060ca4,1, 0x060cac,12, 0x060ce0,1, 0x060d00,6, 0x060d20,41, 0x060e04,1, 0x060e40,23, 0x060ec4,1, 0x060ee0,15, 0x060f24,1, 0x060f34,6, 0x060f50,5, 0x060f80,6, 0x060fa0,6, 0x060fc0,3, 0x060fd0,11, 0x061000,18, 0x061200,31, 0x061280,5, 0x061298,5, 0x061400,70, 0x061600,7, 0x061620,2, 0x06162c,4, 0x061640,4, 0x061654,2, 0x061660,6, 0x061680,14, 0x0616c0,7, 0x0616e0,2, 0x0616ec,3, 0x061700,7, 0x061720,1, 0x064000,7, 0x064020,19, 0x064084,1, 0x06408c,19, 0x0640e0,3, 0x0640f0,3, 0x064100,3, 0x064120,7, 0x064140,17, 0x0641c4,1, 0x0641cc,18, 0x064244,1, 0x06425c,10, 0x064288,3, 0x068000,5, 0x068020,1, 0x068030,1, 0x068040,1, 0x068050,1, 0x068060,1, 0x068070,1, 0x068080,1, 0x068090,1, 0x0680a0,1, 0x0680b0,1, 0x0680c0,1, 0x0680d0,1, 0x0680e0,1, 0x0680f0,1, 0x068100,1, 0x068110,1, 0x068120,1, 0x068130,1, 0x068140,1, 0x068150,1, 0x068160,1, 0x068170,1, 0x068180,1, 0x068190,1, 0x0681a0,1, 0x0681b0,1, 0x0681c0,1, 0x0681d0,1, 0x0681e0,1, 0x0681f0,1, 0x068200,1, 0x068210,1, 0x068220,1, 0x068230,1, 0x068240,1, 0x068250,1, 0x068260,1, 0x068270,1, 0x068280,1, 0x068290,1, 0x0682a0,1, 0x0682b0,1, 0x0682c0,1, 0x0682d0,1, 0x0682e0,1, 0x0682f0,1, 0x068300,1, 0x068310,1, 0x068320,1, 0x068330,1, 0x068340,1, 0x068350,1, 0x068360,1, 0x068370,1, 0x068380,1, 0x068390,1, 0x0683a0,1, 0x0683b0,1, 0x0683c0,1, 0x0683d0,1, 0x0683e0,1, 0x0683f0,1, 0x068400,1, 0x068410,1, 0x068420,1, 0x068430,1, 0x068440,1, 0x068450,1, 0x068460,1, 0x068470,1, 0x068480,1, 0x068490,1, 0x0684a0,1, 0x0684b0,1, 0x0684c0,1, 0x0684d0,1, 0x0684e0,1, 0x0684f0,1, 0x068500,1, 0x068510,1, 0x068520,1, 0x068530,1, 0x068540,1, 0x068550,1, 0x068560,1, 0x068570,1, 0x068580,1, 0x068590,1, 0x0685a0,1, 0x0685b0,1, 0x0685c0,1, 0x0685d0,1, 0x0685e0,1, 0x0685f0,1, 0x068600,1, 0x068610,1, 0x068620,1, 0x068630,1, 0x068640,1, 0x068650,1, 0x068660,1, 0x068670,1, 0x068680,1, 0x068690,1, 0x0686a0,1, 0x0686b0,1, 0x0686c0,1, 0x0686d0,1, 0x0686e0,1, 0x0686f0,1, 0x068700,1, 0x068710,1, 0x068720,1, 0x068730,1, 0x068740,1, 0x068750,1, 0x068760,1, 0x068770,1, 0x068780,1, 0x068790,1, 0x0687a0,1, 0x0687b0,1, 0x0687c0,1, 0x0687d0,1, 0x0687e0,1, 0x0687f0,1, 0x068800,1, 0x068810,1, 0x068820,1, 0x068830,1, 0x068840,1, 0x068850,1, 0x068860,1, 0x068870,1, 0x068880,1, 0x068890,1, 0x0688a0,1, 0x0688b0,1, 0x0688c0,1, 0x0688d0,1, 0x0688e0,1, 0x0688f0,1, 0x068900,1, 0x068910,1, 0x068920,1, 0x068930,1, 0x068940,1, 0x068950,1, 0x068960,1, 0x068970,1, 0x068980,1, 0x068990,1, 0x0689a0,1, 0x0689b0,1, 0x0689c0,1, 0x0689d0,1, 0x0689e0,1, 0x0689f0,1, 0x068a00,1, 0x068a10,1, 0x068a20,1, 0x068a30,1, 0x068a40,1, 0x068a50,1, 0x068a60,1, 0x068a70,1, 0x068a80,1, 0x068a90,1, 0x068aa0,1, 0x068ab0,1, 0x068ac0,1, 0x068ad0,1, 0x068ae0,1, 0x068af0,1, 0x068b00,1, 0x068b10,1, 0x068b20,1, 0x068b30,1, 0x068b40,1, 0x068b50,1, 0x068b60,1, 0x068b70,1, 0x068b80,1, 0x068b90,1, 0x068ba0,1, 0x068bb0,1, 0x068bc0,1, 0x068bd0,1, 0x068be0,1, 0x068bf0,1, 0x068c00,1, 0x068c10,1, 0x068c20,1, 0x068c30,1, 0x068c40,1, 0x068c50,1, 0x068c60,1, 0x068c70,1, 0x068c80,1, 0x068c90,1, 0x068ca0,1, 0x068cb0,1, 0x068cc0,1, 0x068cd0,1, 0x068ce0,1, 0x068cf0,1, 0x068d00,1, 0x068d10,1, 0x068d20,1, 0x068d30,1, 0x068d40,1, 0x068d50,1, 0x068d60,1, 0x068d70,1, 0x068d80,1, 0x068d90,1, 0x068da0,1, 0x068db0,1, 0x068dc0,1, 0x068dd0,1, 0x068de0,1, 0x068df0,1, 0x068e00,1, 0x068e10,1, 0x068e20,1, 0x068e30,1, 0x068e40,1, 0x068e50,1, 0x068e60,1, 0x068e70,1, 0x068e80,1, 0x068e90,1, 0x068ea0,1, 0x068eb0,1, 0x068ec0,1, 0x068ed0,1, 0x068ee0,1, 0x068ef0,1, 0x068f00,1, 0x068f10,1, 0x068f20,1, 0x068f30,1, 0x068f40,1, 0x068f50,1, 0x068f60,1, 0x068f70,1, 0x068f80,1, 0x068f90,1, 0x068fa0,1, 0x068fb0,1, 0x068fc0,1, 0x068fd0,1, 0x068fe0,1, 0x068ff0,1, 0x069000,8, 0x06a000,5, 0x06a020,1, 0x06a030,1, 0x06a040,1, 0x06a050,1, 0x06a060,1, 0x06a070,1, 0x06a080,1, 0x06a090,1, 0x06a0a0,1, 0x06a0b0,1, 0x06a0c0,1, 0x06a0d0,1, 0x06a0e0,1, 0x06a0f0,1, 0x06a100,1, 0x06a110,1, 0x06a120,1, 0x06a130,1, 0x06a140,1, 0x06a150,1, 0x06a160,1, 0x06a170,1, 0x06a180,1, 0x06a190,1, 0x06a1a0,1, 0x06a1b0,1, 0x06a1c0,1, 0x06a1d0,1, 0x06a1e0,1, 0x06a1f0,1, 0x06a200,1, 0x06a210,1, 0x06a220,1, 0x06a230,1, 0x06a240,1, 0x06a250,1, 0x06a260,1, 0x06a270,1, 0x06a280,1, 0x06a290,1, 0x06a2a0,1, 0x06a2b0,1, 0x06a2c0,1, 0x06a2d0,1, 0x06a2e0,1, 0x06a2f0,1, 0x06a300,1, 0x06a310,1, 0x06a320,1, 0x06a330,1, 0x06a340,1, 0x06a350,1, 0x06a360,1, 0x06a370,1, 0x06a380,1, 0x06a390,1, 0x06a3a0,1, 0x06a3b0,1, 0x06a3c0,1, 0x06a3d0,1, 0x06a3e0,1, 0x06a3f0,1, 0x06a400,1, 0x06a410,1, 0x06a420,1, 0x06a430,1, 0x06a440,1, 0x06a450,1, 0x06a460,1, 0x06a470,1, 0x06a480,1, 0x06a490,1, 0x06a4a0,1, 0x06a4b0,1, 0x06a4c0,1, 0x06a4d0,1, 0x06a4e0,1, 0x06a4f0,1, 0x06a500,1, 0x06a510,1, 0x06a520,1, 0x06a530,1, 0x06a540,1, 0x06a550,1, 0x06a560,1, 0x06a570,1, 0x06a580,1, 0x06a590,1, 0x06a5a0,1, 0x06a5b0,1, 0x06a5c0,1, 0x06a5d0,1, 0x06a5e0,1, 0x06a5f0,1, 0x06a600,1, 0x06a610,1, 0x06a620,1, 0x06a630,1, 0x06a640,1, 0x06a650,1, 0x06a660,1, 0x06a670,1, 0x06a680,1, 0x06a690,1, 0x06a6a0,1, 0x06a6b0,1, 0x06a6c0,1, 0x06a6d0,1, 0x06a6e0,1, 0x06a6f0,1, 0x06a700,1, 0x06a710,1, 0x06a720,1, 0x06a730,1, 0x06a740,1, 0x06a750,1, 0x06a760,1, 0x06a770,1, 0x06a780,1, 0x06a790,1, 0x06a7a0,1, 0x06a7b0,1, 0x06a7c0,1, 0x06a7d0,1, 0x06a7e0,1, 0x06a7f0,1, 0x06a800,1, 0x06a810,1, 0x06a820,1, 0x06a830,1, 0x06a840,1, 0x06a850,1, 0x06a860,1, 0x06a870,1, 0x06a880,1, 0x06a890,1, 0x06a8a0,1, 0x06a8b0,1, 0x06a8c0,1, 0x06a8d0,1, 0x06a8e0,1, 0x06a8f0,1, 0x06a900,1, 0x06a910,1, 0x06a920,1, 0x06a930,1, 0x06a940,1, 0x06a950,1, 0x06a960,1, 0x06a970,1, 0x06a980,1, 0x06a990,1, 0x06a9a0,1, 0x06a9b0,1, 0x06a9c0,1, 0x06a9d0,1, 0x06a9e0,1, 0x06a9f0,1, 0x06aa00,1, 0x06aa10,1, 0x06aa20,1, 0x06aa30,1, 0x06aa40,1, 0x06aa50,1, 0x06aa60,1, 0x06aa70,1, 0x06aa80,1, 0x06aa90,1, 0x06aaa0,1, 0x06aab0,1, 0x06aac0,1, 0x06aad0,1, 0x06aae0,1, 0x06aaf0,1, 0x06ab00,1, 0x06ab10,1, 0x06ab20,1, 0x06ab30,1, 0x06ab40,1, 0x06ab50,1, 0x06ab60,1, 0x06ab70,1, 0x06ab80,1, 0x06ab90,1, 0x06aba0,1, 0x06abb0,1, 0x06abc0,1, 0x06abd0,1, 0x06abe0,1, 0x06abf0,1, 0x06ac00,1, 0x06ac10,1, 0x06ac20,1, 0x06ac30,1, 0x06ac40,1, 0x06ac50,1, 0x06ac60,1, 0x06ac70,1, 0x06ac80,1, 0x06ac90,1, 0x06aca0,1, 0x06acb0,1, 0x06acc0,1, 0x06acd0,1, 0x06ace0,1, 0x06acf0,1, 0x06ad00,1, 0x06ad10,1, 0x06ad20,1, 0x06ad30,1, 0x06ad40,1, 0x06ad50,1, 0x06ad60,1, 0x06ad70,1, 0x06ad80,1, 0x06ad90,1, 0x06ada0,1, 0x06adb0,1, 0x06adc0,1, 0x06add0,1, 0x06ade0,1, 0x06adf0,1, 0x06ae00,1, 0x06ae10,1, 0x06ae20,1, 0x06ae30,1, 0x06ae40,1, 0x06ae50,1, 0x06ae60,1, 0x06ae70,1, 0x06ae80,1, 0x06ae90,1, 0x06aea0,1, 0x06aeb0,1, 0x06aec0,1, 0x06aed0,1, 0x06aee0,1, 0x06aef0,1, 0x06af00,1, 0x06af10,1, 0x06af20,1, 0x06af30,1, 0x06af40,1, 0x06af50,1, 0x06af60,1, 0x06af70,1, 0x06af80,1, 0x06af90,1, 0x06afa0,1, 0x06afb0,1, 0x06afc0,1, 0x06afd0,1, 0x06afe0,1, 0x06aff0,1, 0x06b000,16, 0x06b100,8, 0x06b124,7, 0x06b144,7, 0x06b200,3, 0x06b7f8,2, 0x070000,29, 0x070080,15, 0x0700c0,23, 0x070120,2, 0x070130,8, 0x070180,8, 0x0701c0,15, 0x070200,12, 0x070240,7, 0x070400,29, 0x070480,15, 0x0704c0,23, 0x070520,2, 0x070530,8, 0x070580,8, 0x0705c0,15, 0x070600,12, 0x070640,7, 0x070800,29, 0x070880,15, 0x0708c0,23, 0x070920,2, 0x070930,8, 0x070980,8, 0x0709c0,15, 0x070a00,12, 0x070a40,7, 0x070c00,7, 0x070c20,7, 0x070c40,7, 0x070c60,7, 0x070c80,7, 0x070ca0,7, 0x070cc0,7, 0x070ce0,7, 0x070d00,4, 0x070d14,17, 0x070d5c,21, 0x070e04,5, 0x070e24,5, 0x070e44,1, 0x070e4c,3, 0x070e64,1, 0x070e6c,3, 0x070e84,1, 0x070e8c,3, 0x070ea4,1, 0x070eac,3, 0x070ec0,5, 0x070f00,1, 0x070f08,13, 0x070f40,10, 0x071000,7, 0x072000,7, 0x073000,22, 0x073080,22, 0x073100,22, 0x073180,22, 0x073200,22, 0x073280,22, 0x073300,22, 0x073380,22, 0x073400,132, 0x073640,15, 0x073680,4, 0x0736a0,6, 0x0736c0,5, 0x0736d8,2, 0x073700,15, 0x073740,6, 0x073760,6, 0x073780,3, 0x073790,2, 0x073800,153, 0x073c00,156, 0x073e84,1, 0x073e94,17, 0x073f00,15, 0x073f40,3, 0x073f60,12, 0x074000,4096, 0x078004,1, 0x07802c,21, 0x078084,1, 0x0780ac,36, 0x078140,11, 0x078180,11, 0x0781c0,11, 0x078200,11, 0x078240,11, 0x078280,3, 0x0782c0,11, 0x078300,11, 0x078340,11, 0x078380,11, 0x0783c0,11, 0x078400,11, 0x078440,5, 0x078458,9, 0x078480,6, 0x0784a0,1, 0x0784c0,11, 0x078500,11, 0x078540,4, 0x078580,6, 0x0785a0,1, 0x0785c0,11, 0x078600,11, 0x078640,1, 0x078680,6, 0x0786a0,1, 0x0786c0,11, 0x078700,11, 0x078740,32, 0x078800,13, 0x078840,15, 0x078880,7, 0x0788a0,2, 0x078900,13, 0x078940,15, 0x078980,7, 0x0789a0,2, 0x078a04,1, 0x078a0c,14, 0x078a48,8, 0x078c00,6, 0x078c20,6, 0x078c40,12, 0x078c80,8, 0x078cc0,15, 0x078d00,5, 0x078d40,6, 0x078d60,2, 0x078d80,6, 0x078da0,2, 0x078dc0,7, 0x078de0,23, 0x078e40,7, 0x078e84,1, 0x078ea0,10, 0x078f00,32, 0x079000,114, 0x0791d0,3, 0x0791e0,3, 0x0791f0,3, 0x079200,58, 0x079400,28, 0x079600,80, 0x079744,1, 0x079750,4, 0x079800,48, 0x0798c4,7, 0x079900,8, 0x079980,28, 0x079a04,12, 0x079a38,7, 0x079a80,15, 0x079b00,15, 0x079b40,7, 0x079b80,8, 0x079c00,26, 0x079c80,4, 0x079cc0,25, 0x079d40,6, 0x079d60,1, 0x079d68,2, 0x079d74,11, 0x079da4,20, 0x079e00,13, 0x079e44,9, 0x07a000,48, 0x07a0c4,6, 0x07a0e0,7, 0x07a100,1, 0x07a110,14, 0x07a150,3, 0x07a160,22, 0x07a1c0,16, 0x080000,15, 0x080040,527, 0x080880,271, 0x080cc0,2575, 0x083500,527, 0x083d40,527, 0x084580,271, 0x0849c0,271, 0x084e00,271, 0x085240,430, 0x0a0000,3, 0x0a0018,2, 0x0a0024,14, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,14, 0x0a0140,3, 0x0a0150,1, 0x0a015c,4, 0x0a0170,1, 0x0a0180,15, 0x0a01c0,1, 0x0a01c8,5, 0x0a01e0,1, 0x0a01f0,7, 0x0a0218,2, 0x0a0224,14, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,14, 0x0a0340,3, 0x0a0350,1, 0x0a035c,4, 0x0a0370,1, 0x0a0380,15, 0x0a03c0,1, 0x0a03c8,5, 0x0a03e0,1, 0x0a03f0,7, 0x0a0418,2, 0x0a0424,14, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,14, 0x0a0540,3, 0x0a0550,1, 0x0a055c,4, 0x0a0570,1, 0x0a0580,15, 0x0a05c0,1, 0x0a05c8,5, 0x0a05e0,1, 0x0a05f0,7, 0x0a0618,2, 0x0a0624,14, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,14, 0x0a0740,3, 0x0a0750,1, 0x0a075c,4, 0x0a0770,1, 0x0a0780,15, 0x0a07c0,1, 0x0a07c8,5, 0x0a07e0,1, 0x0a07f0,7, 0x0a0818,2, 0x0a0824,14, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,14, 0x0a0940,3, 0x0a0950,1, 0x0a095c,4, 0x0a0970,1, 0x0a0980,15, 0x0a09c0,1, 0x0a09c8,5, 0x0a09e0,1, 0x0a09f0,7, 0x0a0a18,2, 0x0a0a24,14, 0x0a0a60,27, 0x0a0ad0,3, 0x0a0ae0,3, 0x0a0af0,3, 0x0a0b00,14, 0x0a0b40,3, 0x0a0b50,1, 0x0a0b5c,4, 0x0a0b70,1, 0x0a0b80,15, 0x0a0bc0,1, 0x0a0bc8,5, 0x0a0be0,1, 0x0a0bf0,7, 0x0a0c18,2, 0x0a0c24,14, 0x0a0c60,27, 0x0a0cd0,3, 0x0a0ce0,3, 0x0a0cf0,3, 0x0a0d00,14, 0x0a0d40,3, 0x0a0d50,1, 0x0a0d5c,4, 0x0a0d70,1, 0x0a0d80,15, 0x0a0dc0,1, 0x0a0dc8,5, 0x0a0de0,1, 0x0a0df0,7, 0x0a0e18,2, 0x0a0e24,14, 0x0a0e60,27, 0x0a0ed0,3, 0x0a0ee0,3, 0x0a0ef0,3, 0x0a0f00,14, 0x0a0f40,3, 0x0a0f50,1, 0x0a0f5c,4, 0x0a0f70,1, 0x0a0f80,15, 0x0a0fc0,1, 0x0a0fc8,5, 0x0a0fe0,1, 0x0a0ff0,7, 0x0a1018,2, 0x0a1024,14, 0x0a1060,27, 0x0a10d0,3, 0x0a10e0,3, 0x0a10f0,3, 0x0a1100,14, 0x0a1140,3, 0x0a1150,1, 0x0a115c,4, 0x0a1170,1, 0x0a1180,15, 0x0a11c0,1, 0x0a11c8,5, 0x0a11e0,1, 0x0a11f0,7, 0x0a1218,2, 0x0a1224,14, 0x0a1260,27, 0x0a12d0,3, 0x0a12e0,3, 0x0a12f0,3, 0x0a1300,14, 0x0a1340,3, 0x0a1350,1, 0x0a135c,4, 0x0a1370,1, 0x0a1380,15, 0x0a13c0,1, 0x0a13c8,5, 0x0a13e0,1, 0x0a13f0,4, 0x0a1844,1, 0x0a184c,4, 0x0a1864,5, 0x0a1880,1, 0x0a18a0,7, 0x0a18c0,11, 0x0a18f0,3, 0x0a1900,4, 0x0a1940,14, 0x0a1a00,5, 0x0a1a18,89, 0x0a1b80,11, 0x0a1bb0,11, 0x0a1c00,12, 0x0a1c80,28, 0x0a1d00,44, 0x0a1e00,100, 0x0a2000,38, 0x0a2100,20, 0x0a2180,11, 0x0a21b0,1, 0x0a2404,1, 0x0a2440,28, 0x0a24b4,10, 0x0a24e0,7, 0x0a2500,7, 0x0a2520,7, 0x0a2540,7, 0x0a2560,7, 0x0a2580,7, 0x0a25a0,7, 0x0a25c0,7, 0x0a2600,9, 0x0a263c,2, 0x0a2650,6, 0x0a2684,10, 0x0a2804,1, 0x0a29f8,140, 0x0a2c40,8, 0x0a2c64,5, 0x0a2d00,32, 0x0a2d84,1, 0x0a2d94,6, 0x0a2e40,2, 0x0a2e4c,36, 0x0a3000,128, 0x0a3204,6, 0x0a3c00,1, 0x0a4a04,3, 0x0a4b00,33, 0x0a4b90,3, 0x0a4c00,16, 0x0a4cc0,4, 0x0a4d00,14, 0x0a4e00,28, 0x0a4e84,1, 0x0a4ea0,37, 0x0a5000,3, 0x0a5400,4, 0x0a5420,8, 0x0a5444,1, 0x0a544c,1, 0x0a5600,3, 0x0a5610,3, 0x0a5620,3, 0x0a5630,3, 0x0a5640,3, 0x0a5650,3, 0x0a5660,3, 0x0a5670,3, 0x0a5680,3, 0x0a5690,3, 0x0a56a0,3, 0x0a56b0,3, 0x0a56c0,3, 0x0a56d0,3, 0x0a56e0,3, 0x0a56f0,3, 0x0a5700,3, 0x0a5710,3, 0x0a5720,3, 0x0a5730,3, 0x0a5740,3, 0x0a5750,3, 0x0a5760,3, 0x0a5770,3, 0x0a5780,3, 0x0a5790,3, 0x0a57a0,3, 0x0a57b0,3, 0x0a57c0,3, 0x0a57d0,3, 0x0a57e0,3, 0x0a57f0,3, 0x0a5800,1, 0x0a6000,11, 0x0a6030,1, 0x0a6080,2, 0x0a60c4,2, 0x0a60d0,1, 0x0a60d8,1, 0x0a60e0,1, 0x0a60f4,3, 0x0a7000,128, 0x0a7208,256, 0x0a7610,145, 0x0a8000,24, 0x0a8078,1, 0x0a8080,1, 0x0e0000,62, 0x0e0128,8, 0x0e01a8,8, 0x0e0228,8, 0x0e02a8,8, 0x0e0328,8, 0x0e03a8,8, 0x0e0428,8, 0x0e04a8,8, 0x0e0528,8, 0x0e05a8,8, 0x0e0628,8, 0x0e06a8,8, 0x0e0728,8, 0x0e07a8,8, 0x0e0828,8, 0x0e08a8,8, 0x0e0928,8, 0x0e09a8,8, 0x0e0a28,8, 0x0e0aa8,8, 0x0e0b28,8, 0x0e0ba8,8, 0x0e0c28,8, 0x0e0ca8,8, 0x0e0d28,8, 0x0e0da8,8, 0x0e0e28,8, 0x0e0ea8,8, 0x0e0f28,8, 0x0e0fa8,8, 0x0e1028,8, 0x0e10a8,8, 0x0e1128,8, 0x0e11a8,8, 0x0e1228,8, 0x0e12a8,8, 0x0e1328,8, 0x0e13a8,8, 0x0e1428,8, 0x0e14a8,8, 0x0e1528,8, 0x0e15a8,8, 0x0e1628,8, 0x0e16a8,8, 0x0e1728,8, 0x0e17a8,8, 0x0e1828,8, 0x0e18a8,8, 0x0e1928,8, 0x0e19a8,8, 0x0e1a28,8, 0x0e1aa8,8, 0x0e1b28,8, 0x0e1ba8,8, 0x0e1c28,8, 0x0e1ca8,8, 0x0e1d28,8, 0x0e1da8,8, 0x0e1e28,8, 0x0e1ea8,8, 0x0e1f28,8, 0x0e1fa8,8, 0x0e2028,8, 0x0e20a8,8, 0x0e2128,8, 0x0e21a8,8, 0x0e2200,3, 0x0e2210,3, 0x0e2800,260, 0x0e3000,260, 0x0e3800,20, 0x0e3880,1, 0x0e3890,44, 0x0f0000,1, 0x0f000c,4, 0x0f0020,7, 0x0f0040,2, 0x0f0404,1, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,6, 0x0f04a0,6, 0x0f0520,2, 0x0f052c,2, 0x0f0540,10, 0x0f0580,2, 0x0f0600,20, 0x0f0680,1, 0x0f0800,5, 0x0f0a00,27, 0x0f0a80,2, 0x0f0c04,1, 0x0f0d88,159, 0x0f1080,18, 0x0f1100,1, 0x0f1200,2, 0x0f1210,3, 0x0f1220,3, 0x0f1230,3, 0x0f1240,3, 0x0f1250,3, 0x0f1260,3, 0x0f1270,3, 0x0f1280,3, 0x0f1290,3, 0x0f12a0,3, 0x0f12b0,3, 0x0f12c0,3, 0x0f12d0,3, 0x0f12e0,3, 0x0f12f0,3, 0x0f1300,3, 0x0f2000,128, 0x0f2400,2, 0x0f2410,3, 0x0f2420,3, 0x0f2430,3, 0x0f2440,3, 0x0f2450,3, 0x0f2460,3, 0x0f2470,3, 0x0f2480,3, 0x0f2490,3, 0x0f24a0,3, 0x0f24b0,3, 0x0f24c0,3, 0x0f24d0,3, 0x0f24e0,3, 0x0f24f0,3, 0x0f2500,3, 0x0f2600,13, 0x0f2640,2, 0x0f2800,8, 0x0f2900,2, 0x0f2910,3, 0x0f2920,3, 0x0f2930,3, 0x0f2940,3, 0x0f2950,3, 0x0f2960,3, 0x0f2970,3, 0x0f2980,3, 0x0f2a00,3, 0x0f3000,23, 0x0f3080,2, 0x0f30a0,9, 0x0f3100,2, 0x0f3110,3, 0x0f3120,3, 0x0f3130,3, 0x0f3140,3, 0x0f3150,3, 0x0f3160,3, 0x0f3170,3, 0x0f3180,3, 0x0f3200,1, 0x0f3210,2, 0x0f3224,1, 0x0f3234,3, 0x0f3244,3, 0x0f3254,1, 0x0f325c,1, 0x0f3304,1, 0x0f337c,51, 0x0f3600,5, 0x0f3640,9, 0x0f3680,9, 0x0f36c0,12, 0x0f3700,3, 0x0f3710,2, 0x0f3740,9, 0x0f3780,3, 0x0f37a0,8, 0x0f3800,6, 0x0f3820,7, 0x0f3840,6, 0x0f3860,7, 0x0f3880,3, 0x0f3890,1, 0x0f3900,2, 0x0f3c00,6, 0x0f3d00,70, 0x0f3e20,9, 0x0f4000,1, 0x0f4008,4, 0x0f4804,1, 0x0f4880,36, 0x0f4914,13, 0x0f4a04,1, 0x0f4a80,36, 0x0f4b14,1, 0x0f4c00,20, 0x0f4c80,9, 0x0f5004,1, 0x0f5080,36, 0x0f5114,13, 0x0f5204,1, 0x0f5280,36, 0x0f5314,1, 0x0f5400,20, 0x0f5480,9, 0x0f5804,1, 0x0f5880,36, 0x0f5914,13, 0x0f5a04,1, 0x0f5a80,36, 0x0f5b14,1, 0x0f5c00,20, 0x0f5c80,9, 0x0f6004,1, 0x0f6080,36, 0x0f6114,13, 0x0f6204,1, 0x0f6280,36, 0x0f6314,1, 0x0f6400,20, 0x0f6480,9, 0x0f6804,1, 0x0f6880,36, 0x0f6914,13, 0x0f6a04,1, 0x0f6a80,36, 0x0f6b14,1, 0x0f6c00,20, 0x0f6c80,9, 0x0f7004,1, 0x0f7080,36, 0x0f7114,13, 0x0f7204,1, 0x0f7280,36, 0x0f7314,1, 0x0f7400,20, 0x0f7480,9, 0x0f7804,1, 0x0f7880,36, 0x0f7914,13, 0x0f7a04,1, 0x0f7a80,36, 0x0f7b14,1, 0x0f7c00,20, 0x0f7c80,9, 0x0f8004,1, 0x0f8080,36, 0x0f8114,13, 0x0f8204,1, 0x0f8280,36, 0x0f8314,1, 0x0f8400,20, 0x0f8480,9, 0x0f8804,1, 0x0f8880,36, 0x0f8914,13, 0x0f8a04,1, 0x0f8a80,36, 0x0f8b14,1, 0x0f8c00,20, 0x0f8c80,9, 0x0f9004,1, 0x0f9080,36, 0x0f9114,13, 0x0f9204,1, 0x0f9280,36, 0x0f9314,1, 0x0f9400,20, 0x0f9480,9, 0x0f9800,20, 0x0f9884,1, 0x0f988c,1, 0x0f98c0,12, 0x0f9900,3, 0x0f9a00,20, 0x0f9a84,1, 0x0f9a8c,1, 0x0f9ac0,12, 0x0f9b00,3, 0x0f9c00,20, 0x0f9c84,1, 0x0f9c8c,1, 0x0f9cc0,12, 0x0f9d00,3, 0x0f9e00,20, 0x0f9e84,1, 0x0f9e8c,1, 0x0f9ec0,12, 0x0f9f00,3, 0x0fa000,20, 0x0fa084,1, 0x0fa08c,1, 0x0fa0c0,12, 0x0fa100,3, 0x0fa200,20, 0x0fa284,1, 0x0fa28c,1, 0x0fa2c0,12, 0x0fa300,3, 0x0fa400,20, 0x0fa484,1, 0x0fa48c,1, 0x0fa4c0,12, 0x0fa500,3, 0x0fa600,20, 0x0fa684,1, 0x0fa68c,1, 0x0fa6c0,12, 0x0fa700,3, 0x0fa800,20, 0x0fa884,1, 0x0fa88c,1, 0x0fa8c0,12, 0x0fa900,3, 0x0faa00,20, 0x0faa84,1, 0x0faa8c,1, 0x0faac0,12, 0x0fab00,3, 0x0fac00,20, 0x0fac84,1, 0x0fac8c,1, 0x0facc0,12, 0x0fad00,3, 0x0fae00,20, 0x0fae84,1, 0x0fae8c,1, 0x0faec0,12, 0x0faf00,3, 0x0fb000,20, 0x0fb084,1, 0x0fb08c,1, 0x0fb0c0,12, 0x0fb100,3, 0x0fb200,20, 0x0fb284,1, 0x0fb28c,1, 0x0fb2c0,12, 0x0fb300,3, 0x0fb400,20, 0x0fb484,1, 0x0fb48c,1, 0x0fb4c0,12, 0x0fb500,3, 0x0fb600,20, 0x0fb684,1, 0x0fb68c,1, 0x0fb6c0,12, 0x0fb700,3, 0x0fb800,20, 0x0fb884,1, 0x0fb88c,1, 0x0fb8c0,12, 0x0fb900,3, 0x0fba00,20, 0x0fba84,1, 0x0fba8c,1, 0x0fbac0,12, 0x0fbb00,3, 0x0fbc00,23, 0x0fbe00,92, 0x0fc000,20, 0x0fc080,8, 0x0fc204,1, 0x0fc234,23, 0x0fc300,3, 0x0fc344,1, 0x0fc350,13, 0x0fd000,2, 0x0fd010,3, 0x0fd020,3, 0x0fd030,3, 0x0fd040,3, 0x0fd050,3, 0x0fd060,3, 0x0fd070,3, 0x0fd080,3, 0x0fd090,3, 0x0fd0a0,3, 0x0fd0b0,3, 0x0fd0c0,3, 0x0fd0d0,3, 0x0fd0e0,3, 0x0fd0f0,3, 0x0fd100,3, 0x0fd200,10, 0x0fd404,1, 0x0fd414,3, 0x0fd800,309, 0x0fe000,3, 0x100000,158720, 0x200000,7, 0x200020,31, 0x2000a0,2, 0x2000c0,7, 0x2000e0,7, 0x200100,6, 0x200120,5, 0x200140,1, 0x200180,13, 0x2001c0,5, 0x2001e0,1, 0x200200,14, 0x200240,5, 0x200400,3, 0x200410,3, 0x200420,3, 0x200430,3, 0x200440,3, 0x200450,3, 0x200460,3, 0x200470,3, 0x200480,3, 0x200490,3, 0x2004a0,3, 0x2004b0,3, 0x2004c0,3, 0x2004d0,3, 0x2004e0,3, 0x2004f0,3, 0x200500,3, 0x200510,3, 0x200520,3, 0x200530,3, 0x200540,3, 0x200550,3, 0x200560,3, 0x200570,3, 0x200580,3, 0x200590,3, 0x2005a0,3, 0x2005b0,3, 0x2005c0,3, 0x2005d0,3, 0x2005e0,3, 0x2005f0,3, 0x200600,2, 0x20060c,12, 0x200640,20, 0x200800,20, 0x200884,1, 0x201000,26, 0x201100,26, 0x201180,26, 0x201200,14, 0x201240,3, 0x201250,4, 0x208000,72, 0x208200,18, 0x208280,18, 0x208300,18, 0x208380,18, 0x208400,45, 0x2084c0,2, 0x2084d0,9, 0x208500,19, 0x208550,1, 0x209000,21, 0x209060,29, 0x2090e0,29, 0x209160,29, 0x2091e0,37, 0x209280,5, 0x2092a0,14, 0x2092dc,1, 0x2092e4,2, 0x209300,20, 0x209380,20, 0x209400,128, 0x209800,5, 0x209820,5, 0x209840,5, 0x209860,5, 0x209880,5, 0x2098a0,5, 0x2098c0,5, 0x2098e0,5, 0x209900,5, 0x209920,5, 0x209940,5, 0x209960,5, 0x209980,5, 0x2099a0,5, 0x2099c0,5, 0x2099e0,5, 0x209a00,33, 0x209c00,8, 0x209c24,1, 0x209c2c,3, 0x209c40,6, 0x209c60,3, 0x209c70,3, 0x209c80,3, 0x209c90,3, 0x209ca0,3, 0x209cb0,3, 0x209cc0,3, 0x209cd0,3, 0x209ce0,3, 0x209cf0,3, 0x209d00,3, 0x209d10,3, 0x209d20,3, 0x209d30,3, 0x209d40,3, 0x209d50,3, 0x209d60,19, 0x209db0,3, 0x209dc0,3, 0x209dd0,3, 0x20a000,28, 0x20a080,25, 0x20a100,2, 0x20a180,8, 0x20a1a4,8, 0x20a200,8, 0x20a224,8, 0x20a280,8, 0x20a2a4,8, 0x20a300,8, 0x20a324,8, 0x20a380,4, 0x20a394,19, 0x20a400,5, 0x20a420,5, 0x20a440,5, 0x20a460,5, 0x20a480,5, 0x20a4a0,5, 0x20a4c0,5, 0x20a4e0,5, 0x20a500,5, 0x20a520,5, 0x20a540,5, 0x20a560,5, 0x20a580,5, 0x20a5a0,5, 0x20a5c0,5, 0x20a5e0,5, 0x20a600,33, 0x20a800,44, 0x20b000,20, 0x20b080,16, 0x20b100,28, 0x20b180,28, 0x20b200,16, 0x20b280,20, 0x20b300,1, 0x20b400,128, 0x20b604,9, 0x20b800,37, 0x20b898,3, 0x20b8a8,2, 0x20b8b4,8, 0x20ba00,12, 0x20ba44,1, 0x20ba54,8, 0x20ba80,7, 0x20baa0,2, 0x20baac,2, 0x20bac0,16, 0x20bb40,1, 0x20bc00,11, 0x20c000,26, 0x20c06c,2, 0x20c080,3, 0x20c090,17, 0x20c100,26, 0x20c16c,2, 0x20c180,3, 0x20c190,17, 0x20c200,26, 0x20c26c,2, 0x20c280,3, 0x20c290,17, 0x20c300,26, 0x20c36c,2, 0x20c380,3, 0x20c390,17, 0x20c404,1, 0x20c410,4, 0x20c440,28, 0x20c500,11, 0x20c540,11, 0x20c580,11, 0x20c5c0,11, 0x20c600,8, 0x20c640,12, 0x20c680,1, 0x20c800,18, 0x20c880,1, 0x20c888,1, 0x20c890,2, 0x20c8a0,8, 0x220000,1, 0x221000,977, 0x222000,161, 0x223000,977, 0x224000,977, 0x225000,977, 0x226000,977, 0x227000,161, 0x228000,12, 0x228040,14, 0x228080,20, 0x228104,1, 0x22810c,4, 0x228200,12, 0x228240,14, 0x228280,20, 0x228304,1, 0x22830c,4, 0x228400,12, 0x228440,14, 0x228480,20, 0x228504,1, 0x22850c,4, 0x228600,12, 0x228640,14, 0x228680,20, 0x228704,1, 0x22870c,4, 0x228800,12, 0x228840,14, 0x228880,20, 0x228904,1, 0x22890c,4, 0x228a00,17, 0x228a50,2, 0x228a60,3, 0x229000,1, 0x229014,1, 0x22901c,11, 0x229060,9, 0x229094,1, 0x22909c,11, 0x2290e0,15, 0x229200,22, 0x240000,2, 0x240100,1, 0x240200,57, 0x240300,2, 0x24030c,4, 0x240800,27, 0x240870,3, 0x240880,1, 0x240888,25, 0x240904,1, 0x240910,6, 0x240930,10, 0x240960,9, 0x2409a0,17, 0x240a00,5, 0x240a20,3, 0x240a30,15, 0x240c04,1, 0x240c10,12, 0x240d04,1, 0x240d50,44, 0x240e04,1, 0x240e1c,11, 0x241000,34, 0x2410c0,12, 0x242000,48, 0x242100,48, 0x242204,1, 0x24221c,11, 0x242280,3, 0x2422a0,5, 0x2422c0,9, 0x242300,3, 0x242320,6, 0x242340,11, 0x242380,5, 0x2423a0,1, 0x2423b0,30, 0x242800,43, 0x2428b0,10, 0x242900,36, 0x242a00,36, 0x242b00,36, 0x242c00,26, 0x242c80,1, 0x242ca0,8, 0x242d00,20, 0x242d80,20, 0x242e00,20, 0x242e80,20, 0x243000,3, 0x243010,3, 0x243020,3, 0x243030,3, 0x243040,3, 0x243050,3, 0x243060,3, 0x243070,3, 0x243080,4, 0x243100,28, 0x243180,28, 0x243200,28, 0x243400,4, 0x244000,2, 0x244020,9, 0x244080,2, 0x244100,2, 0x244110,1, 0x244118,1, 0x244120,1, 0x244144,8, 0x244180,8, 0x244200,1, 0x244208,7, 0x244280,20, 0x244300,36, 0x244400,28, 0x244480,4, 0x2444a0,1, 0x2444c0,1, 0x2444e0,7, 0x244500,7, 0x244520,1, 0x244540,7, 0x244560,7, 0x244580,1, 0x2445a0,7, 0x2445c0,7, 0x2445e0,1, 0x244600,7, 0x244620,7, 0x244640,3, 0x244650,7, 0x244670,22, 0x2446e0,15, 0x244720,15, 0x244780,2, 0x24478c,3, 0x244800,11, 0x244840,6, 0x24485c,2, 0x244a00,26, 0x244a80,1, 0x244aa0,6, 0x244c00,26, 0x244c80,4, 0x244cc0,25, 0x244d40,6, 0x244d60,2, 0x244d6c,3, 0x244d80,8, 0x244da4,7, 0x244e00,26, 0x244e80,1, 0x244ea0,6, 0x244f00,26, 0x244f80,2, 0x244f90,3, 0x244fa0,1, 0x245000,33, 0x246000,6, 0x246020,2, 0x248000,9, 0x248028,8, 0x248080,3, 0x2480a0,5, 0x248100,9, 0x248128,8, 0x248180,3, 0x2481a0,5, 0x248200,9, 0x248228,8, 0x248280,3, 0x2482a0,5, 0x248300,9, 0x248328,8, 0x248380,6, 0x2483a0,5, 0x248400,9, 0x248428,8, 0x248480,3, 0x2484a0,5, 0x248800,9, 0x248828,8, 0x248880,3, 0x2488a0,5, 0x248900,9, 0x248928,8, 0x248980,3, 0x2489a0,5, 0x248a00,9, 0x248a28,8, 0x248a80,3, 0x248aa0,5, 0x248b00,9, 0x248b28,8, 0x248b80,6, 0x248ba0,5, 0x248c00,9, 0x248c28,8, 0x248c80,3, 0x248ca0,5, 0x249000,9, 0x249028,8, 0x249080,6, 0x2490a0,5, 0x249100,9, 0x249128,8, 0x249180,4, 0x2491c0,13, 0x249200,6, 0x249220,5, 0x24a000,3, 0x24a010,3, 0x24a020,2, 0x24a040,3, 0x24a050,3, 0x24a060,2, 0x24a080,3, 0x24a090,3, 0x24a0a0,2, 0x24a0c0,12, 0x24b000,5, 0x24b020,5, 0x24b040,5, 0x24b060,5, 0x24b080,5, 0x24b0a0,5, 0x24b0c0,5, 0x24b0e0,5, 0x24b100,5, 0x24b120,5, 0x24b140,5, 0x24b160,5, 0x24b180,5, 0x24b1a0,5, 0x24b1c0,5, 0x24b1e0,5, 0x24b200,5, 0x24b220,5, 0x24b240,5, 0x24b260,5, 0x24b280,5, 0x24b2a0,5, 0x24b2c0,5, 0x24b2e0,5, 0x24b300,5, 0x24b320,5, 0x24b340,5, 0x24b360,5, 0x24b380,5, 0x24b3a0,5, 0x24b3c0,5, 0x24b3e0,5, 0x24b400,5, 0x24b420,5, 0x24b440,5, 0x24b460,5, 0x24b480,5, 0x24b4a0,5, 0x24b4c0,5, 0x24b4e0,5, 0x24b500,5, 0x24b520,5, 0x24b540,5, 0x24b560,5, 0x24b580,5, 0x24b5a0,5, 0x24b5c0,5, 0x24b5e0,5, 0x24b600,5, 0x24b620,5, 0x24b640,5, 0x24b660,5, 0x24b680,5, 0x24b6a0,5, 0x24b6c0,5, 0x24b6e0,5, 0x24b700,5, 0x24b720,5, 0x24b740,5, 0x24b760,5, 0x24b780,5, 0x24b7a0,5, 0x24b7c0,5, 0x24b7e0,5, 0x24b800,22, 0x24b860,10, 0x24b890,6, 0x24b8b0,3, 0x24c000,5, 0x24c020,5, 0x24c040,5, 0x24c060,5, 0x24c080,5, 0x24c0a0,5, 0x24c0c0,5, 0x24c0e0,5, 0x24c100,5, 0x24c120,5, 0x24c140,5, 0x24c160,5, 0x24c180,5, 0x24c1a0,5, 0x24c1c0,5, 0x24c1e0,5, 0x24c200,5, 0x24c220,5, 0x24c240,5, 0x24c260,5, 0x24c280,5, 0x24c2a0,5, 0x24c2c0,5, 0x24c2e0,5, 0x24c300,5, 0x24c320,5, 0x24c340,5, 0x24c360,5, 0x24c380,5, 0x24c3a0,5, 0x24c3c0,5, 0x24c3e0,5, 0x24c400,5, 0x24c420,5, 0x24c440,5, 0x24c460,5, 0x24c480,5, 0x24c4a0,5, 0x24c4c0,5, 0x24c4e0,5, 0x24c500,5, 0x24c520,5, 0x24c540,5, 0x24c560,5, 0x24c580,5, 0x24c5a0,5, 0x24c5c0,5, 0x24c5e0,5, 0x24c600,5, 0x24c620,5, 0x24c640,5, 0x24c660,5, 0x24c680,5, 0x24c6a0,5, 0x24c6c0,5, 0x24c6e0,5, 0x24c700,5, 0x24c720,5, 0x24c740,5, 0x24c760,5, 0x24c780,5, 0x24c7a0,5, 0x24c7c0,5, 0x24c7e0,5, 0x24c800,22, 0x24c860,10, 0x24d000,11, 0x24d030,7, 0x24d080,11, 0x24d0b0,7, 0x24d100,1, 0x260000,3, 0x260200,2, 0x260304,1, 0x260344,53, 0x260600,3, 0x260620,15, 0x260680,3, 0x260690,3, 0x2606a0,3, 0x2606b0,3, 0x2606c0,3, 0x2606d0,3, 0x260700,2, 0x260720,9, 0x260760,9, 0x2607a0,8, 0x260800,1, 0x260808,13, 0x260900,35, 0x260990,11, 0x2609c0,2, 0x2609e4,1, 0x2609ec,11, 0x260a24,7, 0x260c00,8, 0x260d00,47, 0x260e00,10, 0x260f00,47, 0x261000,20, 0x261080,6, 0x2610a0,2, 0x2610ac,2, 0x2610c0,1, 0x2610d0,19, 0x261120,7, 0x261140,7, 0x261160,6, 0x261180,6, 0x2611a0,9, 0x2611c8,5, 0x261200,14, 0x261280,20, 0x261300,14, 0x280000,67, 0x280144,1, 0x280154,6, 0x280204,1, 0x280270,100, 0x280404,1, 0x280430,52, 0x280604,1, 0x2806c0,80, 0x280804,1, 0x280828,54, 0x280904,1, 0x280910,60, 0x280a04,1, 0x280a20,24, 0x280a84,1, 0x280ac0,16, 0x280b04,1, 0x280b40,16, 0x280b84,1, 0x280bc0,16, 0x280c04,1, 0x280c18,10, 0x280c44,1, 0x280c58,10, 0x280c84,1, 0x280ca0,8, 0x280cc4,1, 0x280cd0,12, 0x280d04,15, 0x280d84,1, 0x280dc0,16, 0x280e04,1, 0x280e28,22, 0x280e84,1, 0x280e90,12, 0x280ec4,1, 0x280ed8,10, 0x280f04,1, 0x280f18,10, 0x280f44,1, 0x280f58,10, 0x280f84,1, 0x280f90,12, 0x281004,1, 0x281030,20, 0x281104,1, 0x28111c,49, 0x281204,1, 0x281210,12, 0x281244,1, 0x281250,8, 0x281300,5, 0x281320,5, 0x281340,1, 0x281348,2, 0x281364,1, 0x28136c,18, 0x281404,1, 0x281410,20, 0x281504,1, 0x281510,12, 0x281600,5, 0x281620,5, 0x281640,1, 0x281648,2, 0x281664,1, 0x28166c,18, 0x281704,5, 0x281780,3, 0x281790,2, 0x2817a4,1, 0x2817ac,1, 0x2817c0,10, 0x281804,5, 0x281824,3, 0x281840,5, 0x281860,1, 0x282000,7, 0x282020,7, 0x282040,1, 0x282080,7, 0x2820a0,7, 0x2820c0,1, 0x282100,70, 0x282240,3, 0x282250,3, 0x282260,3, 0x282270,2, 0x282284,1, 0x28229c,49, 0x282384,7, 0x282400,5, 0x282420,5, 0x282440,5, 0x282460,2, 0x282484,1, 0x282494,6, 0x282504,1, 0x282540,16, 0x282600,10, 0x282640,10, 0x282680,10, 0x2826c0,2, 0x282700,5, 0x282720,5, 0x282740,1, 0x282748,2, 0x282764,1, 0x28276c,26, 0x282800,4, 0x283000,6, 0x283020,6, 0x283040,6, 0x283060,6, 0x283080,6, 0x2830a0,6, 0x2830c0,6, 0x2830e0,6, 0x283100,6, 0x283120,6, 0x283140,6, 0x283160,6, 0x283180,6, 0x2831a0,6, 0x2831c0,6, 0x2831e0,6, 0x283200,2, 0x283284,1, 0x2832b0,20, 0x283400,27, 0x283480,27, 0x283500,27, 0x283580,2, 0x283600,2, 0x283800,7, 0x283904,1, 0x283940,16, 0x283a00,10, 0x283a40,10, 0x283a80,10, 0x283ac0,2, 0x283b04,1, 0x283b14,6, 0x283c00,5, 0x283c20,5, 0x283c40,1, 0x283c48,2, 0x283c64,1, 0x283c6c,26, 0x283d00,2, 0x284004,1, 0x284018,58, 0x284104,31, 0x284184,31, 0x284204,1, 0x284240,16, 0x284284,1, 0x2842c0,16, 0x284800,4, 0x284820,5, 0x284900,5, 0x284920,5, 0x284940,1, 0x284948,2, 0x284964,1, 0x28496c,26, 0x284c00,46, 0x284d00,46, 0x284e00,46, 0x284f00,2, 0x285000,1, 0x285100,50, 0x285200,40, 0x285300,30, 0x285380,19, 0x285400,18, 0x285500,33, 0x285600,33, 0x285700,18, 0x285780,18, 0x285800,30, 0x285880,30, 0x285900,19, 0x285980,19, 0x285a00,22, 0x285a80,22, 0x285b00,13, 0x285b40,13, 0x285b80,7, 0x285c04,1, 0x285c30,20, 0x285d00,4, 0x285d80,20, 0x286000,148, 0x286400,124, 0x286600,6, 0x286640,9, 0x286680,1, 0x286688,9, 0x2866c4,7, 0x2866e4,1, 0x2866f4,3, 0x286704,1, 0x286714,3, 0x286724,1, 0x286734,3, 0x286744,1, 0x286754,3, 0x286764,1, 0x286774,3, 0x286784,1, 0x286794,3, 0x2867a4,1, 0x2867b4,3, 0x2867c4,1, 0x2867d4,3, 0x2867e4,1, 0x2867f4,3, 0x286804,1, 0x286814,3, 0x286824,1, 0x286834,3, 0x286844,1, 0x286854,3, 0x286880,14, 0x2868c0,3, 0x288000,8, 0x288040,12, 0x288080,3, 0x288090,3, 0x2a0000,128, 0x2a0400,193, 0x2a0800,258, 0x2a1000,120, 0x2a11e4,4, 0x2a1200,4, 0x2a1400,4, 0x2a1420,5, 0x2a1440,4, 0x2a1460,5, 0x2a1480,4, 0x2a14a0,5, 0x2a14c0,4, 0x2a14e0,5, 0x2a1500,4, 0x2a1520,5, 0x2a1540,4, 0x2a1560,5, 0x2a1580,4, 0x2a15a0,5, 0x2a15c0,4, 0x2a15e0,5, 0x2a1600,4, 0x2a1620,5, 0x2a1640,4, 0x2a1660,5, 0x2a1680,4, 0x2a16a0,5, 0x2a16c0,4, 0x2a16e0,5, 0x2a1700,4, 0x2a1720,5, 0x2a1740,4, 0x2a1760,5, 0x2a1780,4, 0x2a17a0,5, 0x2a17c0,4, 0x2a17e0,5, 0x2a1800,4, 0x2a1820,5, 0x2a1840,4, 0x2a1860,5, 0x2a1880,4, 0x2a18a0,5, 0x2a18c0,4, 0x2a18e0,5, 0x2a1900,4, 0x2a1920,5, 0x2a1940,4, 0x2a1960,5, 0x2a1980,4, 0x2a19a0,5, 0x2a19c0,4, 0x2a19e0,5, 0x2a1a00,4, 0x2a1a20,5, 0x2a1a40,4, 0x2a1a60,5, 0x2a1a80,4, 0x2a1aa0,5, 0x2a1ac0,4, 0x2a1ae0,5, 0x2a1b00,4, 0x2a1b20,5, 0x2a1b40,4, 0x2a1b60,5, 0x2a1b80,4, 0x2a1ba0,5, 0x2a1bc0,4, 0x2a1be0,5, 0x2a1c00,4, 0x2a1c20,5, 0x2a1c40,4, 0x2a1c60,5, 0x2a1c80,4, 0x2a1ca0,5, 0x2a1cc0,4, 0x2a1ce0,5, 0x2a1d00,4, 0x2a1d20,5, 0x2a1d40,4, 0x2a1d60,5, 0x2a1d80,4, 0x2a1da0,5, 0x2a1dc0,4, 0x2a1de0,5, 0x2a1e00,4, 0x2a1e20,5, 0x2a1e40,4, 0x2a1e60,5, 0x2a1e80,4, 0x2a1ea0,5, 0x2a1ec0,4, 0x2a1ee0,5, 0x2a1f00,4, 0x2a1f20,5, 0x2a1f40,4, 0x2a1f60,5, 0x2a1f80,4, 0x2a1fa0,5, 0x2a1fc0,4, 0x2a1fe0,5, 0x2a2000,4, 0x2a2020,5, 0x2a2040,4, 0x2a2060,5, 0x2a2080,4, 0x2a20a0,5, 0x2a20c0,4, 0x2a20e0,5, 0x2a2100,4, 0x2a2120,5, 0x2a2140,4, 0x2a2160,5, 0x2a2180,4, 0x2a21a0,5, 0x2a21c0,4, 0x2a21e0,5, 0x2a2200,4, 0x2a2220,5, 0x2a2240,4, 0x2a2260,5, 0x2a2280,4, 0x2a22a0,5, 0x2a22c0,4, 0x2a22e0,5, 0x2a2300,4, 0x2a2320,5, 0x2a2340,4, 0x2a2360,5, 0x2a2380,4, 0x2a23a0,5, 0x2a23c0,4, 0x2a23e0,5, 0x2a2400,6, 0x2a4000,4, 0x2a4080,17, 0x2a4100,4, 0x2a4180,17, 0x2a4200,4, 0x2a4280,17, 0x2a4300,4, 0x2a4380,17, 0x2a4400,4, 0x2a4440,12, 0x2a4480,4, 0x2a44c0,12, 0x2a4500,4, 0x2a4540,12, 0x2a4580,4, 0x2a45c0,12, 0x2a4600,384, 0x2a4c04,6, 0x2a4c20,3, 0x2a4c30,14, 0x2a5004,1, 0x2a5040,4, 0x2a5060,6, 0x2a5080,37, 0x2a5200,20, 0x2a5280,11, 0x2a52b0,1, 0x2a52b8,4, 0x2b0004,1, 0x2b00fc,67, 0x2b0404,1, 0x2b0420,26, 0x2b0504,1, 0x2b0524,9, 0x2b0584,1, 0x2b05a4,9, 0x2b05e4,9, 0x2b0624,9, 0x2b0664,16, 0x2b06a8,2, 0x2b0704,1, 0x2b070c,15, 0x2b0804,1, 0x2b08b0,86, 0x2b0c00,7, 0x2b0c20,7, 0x2b1000,26, 0x2b1080,4, 0x2b10c0,25, 0x2b1140,6, 0x2b1160,1, 0x2b1168,2, 0x2b1174,3, 0x2b1200,8, 0x2b1224,38, 0x2b1400,7, 0x2b1420,7, 0x2b1440,1, 0x2b1480,10, 0x2b14c0,4, 0x2b14e0,7, 0x2b1500,2, 0x2b1604,1, 0x2b1628,24, 0x2b1700,11, 0x2b1730,7, 0x2b1750,7, 0x2b1770,17, 0x2b17b8,133, 0x2b2000,2, 0x2b2010,3, 0x2b2080,28, 0x2b2100,2, 0x2c0004,365, 0x2c05c0,4, 0x2c05e4,1, 0x2c05ec,3, 0x2c0600,14, 0x2c0640,10, 0x2c0670,10, 0x2c06a0,10, 0x2c06d0,10, 0x2c0700,10, 0x2c0730,10, 0x2c0760,10, 0x2c0790,10, 0x2c07c0,10, 0x2c07f0,10, 0x2c0820,10, 0x2c0850,10, 0x2c0880,10, 0x2c08b0,10, 0x2c08e0,10, 0x2c0910,36, 0x2c09c0,7, 0x2c09e0,7, 0x2c0a04,5, 0x2c0a24,10, 0x2c2000,19, 0x2c2060,19, 0x2c20c0,19, 0x2c2120,19, 0x2c2180,19, 0x2c21e0,19, 0x2c2240,19, 0x2c22a0,19, 0x2c2300,19, 0x2c2360,19, 0x2c23c0,19, 0x2c2420,19, 0x2c2480,19, 0x2c24e0,19, 0x2c2540,19, 0x2c25a0,19, 0x2c2600,19, 0x2c2660,19, 0x2c26c0,19, 0x2c2720,19, 0x2c2780,19, 0x2c27e0,19, 0x2c2840,19, 0x2c28a0,19, 0x2c2900,19, 0x2c2960,19, 0x2c29c0,19, 0x2c2a20,19, 0x2c2a80,19, 0x2c2ae0,19, 0x2c2b40,19, 0x2c2ba0,19, 0x2c2c00,19, 0x2c2c60,19, 0x2c2cc0,19, 0x2c2d20,19, 0x2c2d80,19, 0x2c2de0,19, 0x2c2e40,19, 0x2c2ea0,19, 0x2c2f00,19, 0x2c2f60,19, 0x2c2fc0,19, 0x2c3020,19, 0x2c3080,19, 0x2c30e0,19, 0x2c3140,19, 0x2c31a0,19, 0x2c3200,19, 0x2c3260,19, 0x2c32c0,19, 0x2c3320,19, 0x2c3380,19, 0x2c33e0,19, 0x2c3440,19, 0x2c34a0,19, 0x2c3500,19, 0x2c3560,19, 0x2c35c0,19, 0x2c3620,19, 0x2c3680,19, 0x2c36e0,19, 0x2c3740,19, 0x2c37a0,19, 0x2c3804,1, 0x2c3814,5, 0x2c3840,5, 0x2c3860,6, 0x2c3880,4, 0x2c3900,19, 0x2c3980,1, 0x2c3988,3, 0x2c3998,7, 0x2c4000,7, 0x2c4040,13, 0x2c4080,7, 0x2c40c0,13, 0x2c4100,7, 0x2c4120,3, 0x2c4130,3, 0x2c4140,3, 0x2c4150,3, 0x2c4160,3, 0x2c4170,3, 0x2c4180,3, 0x2c4190,3, 0x2c41a0,3, 0x2c41b0,3, 0x2c41c0,3, 0x2c41d0,3, 0x2c41e0,3, 0x2c41f0,3, 0x2c4200,3, 0x2c4210,3, 0x2c4220,3, 0x2c4230,3, 0x2c4240,3, 0x2c4250,3, 0x2c4260,3, 0x2c4270,3, 0x2c4280,3, 0x2c4290,3, 0x2c42a0,3, 0x2c42b0,3, 0x2c42c0,3, 0x2c42d0,3, 0x2c42e0,3, 0x2c42f0,3, 0x2c4300,3, 0x2c4310,3, 0x2c4320,3, 0x2c4330,3, 0x2c4340,3, 0x2c4350,3, 0x2c4360,3, 0x2c4370,3, 0x2c4380,3, 0x2c4390,3, 0x2c43a0,3, 0x2c43b0,3, 0x2c43c0,3, 0x2c43d0,3, 0x2c43e0,3, 0x2c43f0,3, 0x2c4400,3, 0x2c4410,3, 0x2c4420,3, 0x2c4430,3, 0x2c4440,3, 0x2c4450,3, 0x2c4460,3, 0x2c4470,3, 0x2c4480,3, 0x2c4490,3, 0x2c44a0,3, 0x2c44b0,3, 0x2c44c0,3, 0x2c44d0,3, 0x2c44e0,3, 0x2c44f0,3, 0x2c4500,3, 0x2c4510,144, 0x2c4780,2, 0x2c4804,1, 0x2c4824,9, 0x2c4880,38, 0x2c4920,9, 0x2c4948,15, 0x2c49a4,5, 0x2c49c4,1, 0x2c49d4,10, 0x2c4a00,2, 0x2c4b00,48, 0x2c4c00,26, 0x2c4c80,2, 0x2c4e04,1, 0x2c4ef8,66, 0x2c5004,3, 0x2c5014,1, 0x2c501c,5, 0x2c5080,1, 0x2c5094,13, 0x2c5100,3, 0x2c5180,5, 0x2c51a0,5, 0x2c51c0,1, 0x2c5200,9, 0x2c5240,11, 0x2c8004,1, 0x2c800c,31, 0x2c8104,1, 0x2c811c,9, 0x2c8204,1, 0x2c8240,18, 0x2c8304,1, 0x2c831c,12, 0x2c8350,13, 0x2c8404,1, 0x2c8418,12, 0x2c8484,1, 0x2c84a4,7, 0x2c8504,1, 0x2c8538,18, 0x2c8584,1, 0x2c8590,4, 0x2c85a4,1, 0x2c85ac,1, 0x2c85b4,1, 0x2c85bc,10, 0x2c8804,3, 0x2c8a04,1, 0x2c8af8,68, 0x2c9000,66, 0x2c9200,4, 0x2ca000,58, 0x2ca100,49, 0x2ca200,2, 0x2ca304,1, 0x2ca314,29, 0x2ca400,38, 0x2ca4a4,1, 0x2ca4ac,1, 0x2ca4b4,1, 0x2ca4bc,1, 0x2ca4c4,1, 0x2ca4cc,1, 0x2ca4d4,1, 0x2ca4dc,17, 0x2ca804,6, 0x2ca824,6, 0x2ca840,6, 0x2ca860,3, 0x2cac00,168, 0x2caea4,2, 0x2caeb0,4, 0x2cb000,7, 0x2cb020,2, 0x2cb400,26, 0x2cb480,4, 0x2cb4c0,25, 0x2cb540,6, 0x2cb560,1, 0x2cb568,2, 0x2cb574,3, 0x2cb600,8, 0x2cb624,74, 0x2cc000,932, 0x2cd000,380, 0x2cd800,4, 0x2d0004,1, 0x2d003c,49, 0x2d0104,1, 0x2d013c,51, 0x2d0400,1, 0x2d4000,4, 0x2d4800,3, 0x2d4810,256, 0x2d5000,202, 0x2d6000,7, 0x2d6024,1, 0x2d6400,137, 0x2d6800,17, 0x2d7000,5, 0x2d7040,2, 0x2d7064,1, 0x2d706c,5, 0x2d7084,13, 0x2d7400,26, 0x2d7480,4, 0x2d74c0,25, 0x2d7540,6, 0x2d7560,1, 0x2d7568,2, 0x2d7574,3, 0x2d7600,8, 0x2d7624,37, 0x2d7804,1, 0x2d7810,3, 0x2d7820,128, 0x2d8000,4, 0x2d8040,10, 0x2d8080,2, 0x2d8200,84, 0x2d8400,1, 0x2e0000,28, 0x2e0080,17, 0x2e0100,28, 0x2e0180,17, 0x2e0200,3, 0x2e0214,1, 0x2e021c,1, 0x2e0280,3, 0x2e0294,1, 0x2e029c,1, 0x2e0300,18, 0x2e0380,18, 0x2e0400,18, 0x2e0480,18, 0x2e0500,18, 0x2e0580,18, 0x2e0600,18, 0x2e0680,18, 0x2e0700,13, 0x2e0738,6, 0x2e0780,13, 0x2e07b8,6, 0x2e0800,1, 0x2e0808,22, 0x2e0880,1, 0x2e0894,13, 0x2e0900,3, 0x2e0910,3, 0x2e0920,3, 0x2e0940,1, 0x2e0954,1, 0x2e095c,1, 0x2e0a00,52, 0x2e0c00,4, 0x2e0d00,34, 0x2e0e00,4, 0x2e0e80,30, 0x2e0f00,1, 0x2e0f40,5, 0x2e0f60,5, 0x2e0f80,6, 0x2e1000,14, 0x2e1040,4, 0x2e1060,17, 0x2e10c0,6, 0x2e10e0,1, 0x2e10e8,2, 0x2e10f4,11, 0x2e1124,17, 0x2e1200,3, 0x2e1210,3, 0x2e1220,3, 0x2e1230,3, 0x2e1240,3, 0x2e2000,20, 0x2e2080,3, 0x2e2090,1, 0x2e2098,2, 0x2e4000,11, 0x2e4030,7, 0x2e4050,3, 0x2e4060,21, 0x2e4200,11, 0x2e4230,2, 0x2e4240,11, 0x2e4270,2, 0x2e4280,1, 0x2e4288,15, 0x2e42e0,2, 0x2e42ec,2, 0x2e4300,4, 0x2e4380,27, 0x2e4400,24, 0x2e4464,2, 0x2e4470,4, 0x2e4600,26, 0x2e4680,4, 0x2e46c0,25, 0x2e4740,6, 0x2e4760,1, 0x2e4768,2, 0x2e4774,11, 0x2e47a4,7, 0x2e4800,9, 0x2e4840,11, 0x2e4880,23, 0x2e48e0,15, 0x2e4920,15, 0x2e4960,1, 0x2e5000,11, 0x2e5030,7, 0x2e5050,3, 0x2e5060,21, 0x2e5200,11, 0x2e5230,2, 0x2e5240,11, 0x2e5270,2, 0x2e5280,1, 0x2e5288,15, 0x2e52e0,2, 0x2e52ec,2, 0x2e5300,4, 0x2e5380,27, 0x2e5400,24, 0x2e5464,2, 0x2e5470,4, 0x2e5600,26, 0x2e5680,4, 0x2e56c0,25, 0x2e5740,6, 0x2e5760,1, 0x2e5768,2, 0x2e5774,11, 0x2e57a4,7, 0x2e5800,9, 0x2e5840,11, 0x2e5880,23, 0x2e58e0,15, 0x2e5920,15, 0x2e5960,1, 0x2e6000,1, 0x2e6100,36, 0x2e6200,7, 0x2e8000,3, 0x2e8800,7, 0x2e8820,6, 0x2e8840,6, 0x2e8880,1, 0x2e8894,1, 0x2e889c,2, 0x2e88c0,9, 0x2e8900,18, 0x2e8a00,36, 0x2e8b00,22, 0x2e8b80,18, 0x2e8c00,3, 0x2e8c10,3, 0x2e9000,3, 0x2e9010,2, 0x2e9080,20, 0x2e9100,1, 0x2e9200,26, 0x2e9280,4, 0x2e92c0,25, 0x2e9340,6, 0x2e9360,1, 0x2e9368,2, 0x2e9374,11, 0x2e93a4,4, 0x2e9400,1, 0x300000,4, 0x300014,15, 0x300080,4, 0x300094,15, 0x300100,13, 0x300140,13, 0x300180,2, 0x300200,29, 0x300280,29, 0x300300,1, 0x300400,44, 0x300500,1, 0x300508,43, 0x300600,3, 0x300684,1, 0x3006b8,22, 0x300720,5, 0x300740,2, 0x300780,10, 0x3007c0,10, 0x300800,8, 0x301000,4, 0x301014,15, 0x301080,4, 0x301094,15, 0x301100,13, 0x301140,13, 0x301180,2, 0x301200,29, 0x301280,29, 0x301300,1, 0x301400,44, 0x301500,1, 0x301508,43, 0x301600,3, 0x301684,1, 0x3016b8,22, 0x301720,5, 0x301740,2, 0x301780,10, 0x3017c0,10, 0x301800,8, 0x302000,9, 0x302104,1, 0x302130,41, 0x302200,9, 0x302304,1, 0x302330,41, 0x303000,29, 0x303078,32, 0x303200,81, 0x303400,81, 0x303600,81, 0x303800,19, 0x304000,7, 0x304020,3, 0x304040,7, 0x304060,3, 0x304080,7, 0x3040a0,2, 0x3040c0,7, 0x3040e0,2, 0x3040f0,3, 0x304100,67, 0x308000,54, 0x308100,238, 0x3084c0,6, 0x3084e0,6, 0x308500,6, 0x308520,6, 0x308540,6, 0x308560,6, 0x308580,6, 0x3085c0,35, 0x308650,15, 0x308690,9, 0x308800,1, 0x308808,10, 0x308a00,117, 0x308c00,5, 0x308c20,5, 0x309000,1, 0x309084,15, 0x309100,2, 0x309200,26, 0x309280,4, 0x3092c0,25, 0x309340,6, 0x309360,1, 0x309368,2, 0x309374,11, 0x3093a4,11, 0x309400,24, 0x309464,1, 0x309470,7, 0x309490,3, 0x3094a0,3, 0x3094b0,3, 0x3094c0,3, 0x309500,16, 0x309544,1, 0x309550,4, 0x309580,16, 0x3095c4,1, 0x3095d0,4, 0x309600,4, 0x309640,13, 0x309680,4, 0x3096c0,13, 0x309700,4, 0x309740,11, 0x309780,4, 0x3097c0,11, 0x309800,4, 0x309820,6, 0x309840,4, 0x309860,6, 0x309880,19, 0x320000,1, 0x320800,40, 0x320900,40, 0x320a00,6, 0x320a20,22, 0x320a80,18, 0x320b00,18, 0x320b80,19, 0x320c00,10, 0x320c40,10, 0x320c80,15, 0x321000,40, 0x321100,40, 0x321200,6, 0x321220,22, 0x321280,18, 0x321300,18, 0x321380,19, 0x321400,10, 0x321440,10, 0x321480,15, 0x321800,3, 0x321814,6, 0x321830,7, 0x321850,3, 0x321860,3, 0x321870,3, 0x321880,9, 0x3218c0,8, 0x321a00,84, 0x321c00,2, 0x321c0c,2, 0x321c20,3, 0x322000,3, 0x322014,6, 0x322030,7, 0x322050,3, 0x322060,3, 0x322070,3, 0x322080,9, 0x3220c0,8, 0x322200,84, 0x322400,2, 0x32240c,2, 0x322420,3, 0x322800,18, 0x324000,9, 0x324040,9, 0x324084,1, 0x32408c,6, 0x3240a8,5, 0x3240c0,21, 0x324200,73, 0x324400,4, 0x324440,29, 0x3244c0,1, 0x324800,9, 0x324840,9, 0x324884,1, 0x32488c,6, 0x3248a8,5, 0x3248c0,21, 0x324a00,73, 0x324c00,4, 0x324c40,29, 0x324cc0,1, 0x325000,6, 0x325024,6, 0x325200,8, 0x325224,1, 0x325230,4, 0x325400,26, 0x325480,4, 0x3254c0,25, 0x325540,6, 0x325560,1, 0x325568,2, 0x325574,11, 0x3255a4,13, 0x325600,4, 0x325640,15, 0x325680,4, 0x3256c0,15, 0x325700,32, 0x325784,1, 0x325790,4, 0x325800,3, 0x325810,2, 0x325900,32, 0x325984,1, 0x325990,4, 0x325a00,3, 0x325a10,2, 0x340000,2, 0x340010,3, 0x340040,12, 0x380000,22, 0x380080,22, 0x380100,12, 0x380140,12, 0x380200,52, 0x380300,52, 0x380400,11, 0x380440,11, 0x380480,3, 0x3804a0,6, 0x3804c0,6, 0x3804e0,3, 0x3804f0,3, 0x380800,9, 0x380840,15, 0x380880,15, 0x3808c0,15, 0x380900,1, 0x380914,13, 0x380980,13, 0x381000,17, 0x381080,17, 0x381104,5, 0x381120,3, 0x381130,11, 0x381200,31, 0x381280,31, 0x381300,12, 0x381340,12, 0x381380,2, 0x381390,2, 0x3813a0,3, 0x3813b0,3, 0x3813c0,5, 0x3813e0,5, 0x381400,3, 0x381410,3, 0x381420,3, 0x381430,3, 0x381440,3, 0x381450,3, 0x381460,7, 0x381800,26, 0x381880,4, 0x3818c0,25, 0x381940,6, 0x381960,1, 0x381968,2, 0x381974,11, 0x3819a4,11, 0x381a00,4, 0x381b00,43, 0x381c00,4, 0x381c20,7, 0x381c40,3, 0x381c50,1, 0x381e00,32, 0x381e84,1, 0x381e90,4, 0x381ea4,1, 0x381eb4,14, 0x381ef0,2, 0x381f04,1, 0x381f10,8, 0x381f34,6, 0x382000,3, 0x382010,17, 0x382080,4, 0x382100,15, 0x382140,1, 0x382180,2, 0x384000,22, 0x384080,22, 0x384100,12, 0x384140,12, 0x384200,52, 0x384300,52, 0x384400,11, 0x384440,11, 0x384480,3, 0x3844a0,6, 0x3844c0,6, 0x3844e0,3, 0x3844f0,3, 0x384800,9, 0x384840,15, 0x384880,15, 0x3848c0,15, 0x384900,1, 0x384914,13, 0x384980,13, 0x385000,17, 0x385080,17, 0x385104,5, 0x385120,3, 0x385130,11, 0x385200,31, 0x385280,31, 0x385300,12, 0x385340,12, 0x385380,2, 0x385390,2, 0x3853a0,3, 0x3853b0,3, 0x3853c0,5, 0x3853e0,5, 0x385400,3, 0x385410,3, 0x385420,3, 0x385430,3, 0x385440,3, 0x385450,3, 0x385460,7, 0x385800,26, 0x385880,4, 0x3858c0,25, 0x385940,6, 0x385960,1, 0x385968,2, 0x385974,11, 0x3859a4,11, 0x385a00,4, 0x385b00,43, 0x385c00,4, 0x385c20,7, 0x385c40,3, 0x385c50,1, 0x385e00,32, 0x385e84,1, 0x385e90,4, 0x385ea4,1, 0x385eb4,14, 0x385ef0,2, 0x385f04,1, 0x385f10,8, 0x385f34,6, 0x386000,3, 0x386010,17, 0x386080,4, 0x386100,15, 0x386140,1, 0x386180,2, 0x388000,100, 0x388200,3, 0x388210,5, 0x390000,22, 0x390080,22, 0x390100,22, 0x390180,22, 0x390200,22, 0x390280,22, 0x390300,22, 0x390380,22, 0x390400,12, 0x390440,12, 0x390480,12, 0x3904c0,12, 0x390500,12, 0x390540,12, 0x390580,12, 0x3905c0,12, 0x390600,52, 0x390700,52, 0x390800,11, 0x390840,3, 0x390850,134, 0x390a74,1, 0x390a7c,1, 0x391000,5, 0x391020,6, 0x391040,6, 0x391060,6, 0x391080,1, 0x391094,13, 0x391100,13, 0x392000,17, 0x392080,17, 0x392100,17, 0x392180,17, 0x392200,17, 0x392280,17, 0x392300,17, 0x392380,17, 0x392404,5, 0x392420,3, 0x392430,10, 0x392800,31, 0x392880,31, 0x392900,31, 0x392980,31, 0x392a00,31, 0x392a80,31, 0x392b00,31, 0x392b80,31, 0x392c00,12, 0x392c40,12, 0x392c80,12, 0x392cc0,12, 0x392d00,12, 0x392d40,12, 0x392d80,12, 0x392dc0,12, 0x392e00,2, 0x392e10,3, 0x392e20,3, 0x392e40,5, 0x392e60,3, 0x392e70,3, 0x393000,17, 0x393080,17, 0x393100,17, 0x393180,17, 0x393200,17, 0x393280,17, 0x393300,17, 0x393380,17, 0x393404,5, 0x393420,3, 0x393430,10, 0x393800,31, 0x393880,31, 0x393900,31, 0x393980,31, 0x393a00,31, 0x393a80,31, 0x393b00,31, 0x393b80,31, 0x393c00,12, 0x393c40,12, 0x393c80,12, 0x393cc0,12, 0x393d00,12, 0x393d40,12, 0x393d80,12, 0x393dc0,12, 0x393e00,2, 0x393e10,3, 0x393e20,3, 0x393e40,5, 0x393e60,3, 0x393e70,3, 0x394000,17, 0x394080,17, 0x394100,17, 0x394180,17, 0x394200,17, 0x394280,17, 0x394300,17, 0x394380,17, 0x394404,5, 0x394420,3, 0x394430,10, 0x394800,31, 0x394880,31, 0x394900,31, 0x394980,31, 0x394a00,31, 0x394a80,31, 0x394b00,31, 0x394b80,31, 0x394c00,12, 0x394c40,12, 0x394c80,12, 0x394cc0,12, 0x394d00,12, 0x394d40,12, 0x394d80,12, 0x394dc0,12, 0x394e00,2, 0x394e10,3, 0x394e20,3, 0x394e40,5, 0x394e60,3, 0x394e70,3, 0x395000,17, 0x395080,17, 0x395100,17, 0x395180,17, 0x395200,17, 0x395280,17, 0x395300,17, 0x395380,17, 0x395404,5, 0x395420,3, 0x395430,10, 0x395800,31, 0x395880,31, 0x395900,31, 0x395980,31, 0x395a00,31, 0x395a80,31, 0x395b00,31, 0x395b80,31, 0x395c00,12, 0x395c40,12, 0x395c80,12, 0x395cc0,12, 0x395d00,12, 0x395d40,12, 0x395d80,12, 0x395dc0,12, 0x395e00,2, 0x395e10,3, 0x395e20,3, 0x395e40,5, 0x395e60,3, 0x395e70,3, 0x396000,26, 0x396080,4, 0x3960c0,25, 0x396140,6, 0x396160,1, 0x396168,2, 0x396174,11, 0x3961a4,6, 0x396200,4, 0x396300,43, 0x396400,4, 0x396420,6, 0x396440,3, 0x396450,1, 0x396480,3, 0x396490,7, 0x3964c0,6, 0x398000,44, 0x398100,3, 0x398110,4, 0x3a0000,138, 0x3a0230,1, 0x3a0238,3, 0x3a0248,3, 0x3a0258,3, 0x3a0268,3, 0x3a0278,3, 0x3a0288,3, 0x3a0298,3, 0x3a02a8,2, 0x3a02c0,42, 0x3a0384,1, 0x3a0390,7, 0x3a03c0,514, 0x3a0be4,1, 0x3a0bf0,6, 0x3a0c10,3, 0x3a0d00,36, 0x3a0e00,26, 0x3a0e80,4, 0x3a0ec0,25, 0x3a0f40,6, 0x3a0f60,1, 0x3a0f68,2, 0x3a0f74,11, 0x3a0fa4,4, 0x400000,1, 0x400014,6, 0x400040,1, 0x400054,6, 0x400080,1, 0x400094,6, 0x4000c0,1, 0x4000d4,6, 0x400100,1, 0x400114,6, 0x400140,1, 0x400154,6, 0x400180,1, 0x400194,6, 0x4001c0,1, 0x4001d4,6, 0x400200,1, 0x400214,6, 0x400240,1, 0x400254,6, 0x400280,1, 0x400294,6, 0x4002c0,1, 0x4002d4,6, 0x400300,1, 0x400314,6, 0x400340,1, 0x400354,6, 0x400380,1, 0x400394,6, 0x4003c0,1, 0x4003d4,6, 0x400400,1, 0x400414,6, 0x400440,1, 0x400454,6, 0x400480,1, 0x400494,6, 0x4004c0,1, 0x4004d4,6, 0x400500,1, 0x400514,6, 0x400540,1, 0x400554,6, 0x400580,1, 0x400594,6, 0x4005c0,1, 0x4005d4,6, 0x400600,1, 0x400614,6, 0x400640,1, 0x400654,6, 0x400680,1, 0x400694,6, 0x4006c0,1, 0x4006d4,6, 0x400700,1, 0x400714,6, 0x400740,1, 0x400754,6, 0x400780,1, 0x400794,6, 0x4007c0,1, 0x4007d4,6, 0x400800,1, 0x400814,6, 0x400840,1, 0x400854,6, 0x400880,1, 0x400894,6, 0x4008c0,1, 0x4008d4,6, 0x400900,1, 0x400914,6, 0x400940,1, 0x400954,6, 0x400980,1, 0x400994,6, 0x4009c0,1, 0x4009d4,6, 0x400a00,1, 0x400a14,6, 0x400a40,1, 0x400a54,6, 0x400a80,1, 0x400a94,6, 0x400ac0,1, 0x400ad4,6, 0x400b00,1, 0x400b14,6, 0x400b40,1, 0x400b54,6, 0x400b80,1, 0x400b94,6, 0x400bc0,1, 0x400bd4,6, 0x400c00,1, 0x400c14,6, 0x400c40,1, 0x400c54,6, 0x400c80,1, 0x400c94,6, 0x400cc0,1, 0x400cd4,6, 0x400d00,1, 0x400d14,6, 0x400d40,1, 0x400d54,6, 0x400d80,1, 0x400d94,6, 0x400dc0,1, 0x400dd4,6, 0x400e00,1, 0x400e14,6, 0x400e40,1, 0x400e54,6, 0x400e80,1, 0x400e94,6, 0x400ec0,1, 0x400ed4,6, 0x400f00,1, 0x400f14,6, 0x400f40,1, 0x400f54,6, 0x400f80,1, 0x400f94,6, 0x400fc0,1, 0x400fd4,6, 0x401000,1, 0x401014,6, 0x401100,5, 0x401120,2, 0x40112c,3, 0x401140,4, 0x401180,3, 0x401200,5, 0x401220,2, 0x40122c,3, 0x401240,4, 0x401280,3, 0x401300,5, 0x401320,2, 0x40132c,3, 0x401340,4, 0x401380,3, 0x401400,5, 0x401420,2, 0x40142c,3, 0x401440,4, 0x401480,3, 0x401500,5, 0x401520,2, 0x40152c,3, 0x401540,4, 0x401580,3, 0x401600,5, 0x401620,2, 0x40162c,3, 0x401640,4, 0x401680,3, 0x401700,5, 0x401720,2, 0x40172c,3, 0x401740,4, 0x401780,3, 0x401800,5, 0x401820,2, 0x40182c,3, 0x401840,4, 0x401880,3, 0x401900,5, 0x401920,2, 0x40192c,3, 0x401940,4, 0x401980,3, 0x401a00,5, 0x401a20,2, 0x401a2c,3, 0x401a40,4, 0x401a80,3, 0x401b00,5, 0x401b20,2, 0x401b2c,3, 0x401b40,4, 0x401b80,3, 0x401c00,5, 0x401c20,2, 0x401c2c,3, 0x401c40,4, 0x401c80,3, 0x401d00,5, 0x401d20,2, 0x401d2c,3, 0x401d40,4, 0x401d80,3, 0x401e00,5, 0x401e20,2, 0x401e2c,3, 0x401e40,4, 0x401e80,3, 0x401f00,5, 0x401f20,2, 0x401f2c,3, 0x401f40,4, 0x401f80,3, 0x402000,5, 0x402020,2, 0x40202c,3, 0x402040,4, 0x402080,3, 0x402100,5, 0x402120,2, 0x40212c,3, 0x402140,4, 0x402180,3, 0x402200,5, 0x402220,2, 0x40222c,3, 0x402240,4, 0x402280,3, 0x402300,5, 0x402320,2, 0x40232c,3, 0x402340,4, 0x402380,3, 0x402400,5, 0x402420,2, 0x40242c,3, 0x402440,4, 0x402480,3, 0x402500,5, 0x402520,2, 0x40252c,3, 0x402540,4, 0x402580,3, 0x402600,5, 0x402620,2, 0x40262c,3, 0x402640,4, 0x402680,3, 0x402700,5, 0x402720,2, 0x40272c,3, 0x402740,4, 0x402780,3, 0x402800,5, 0x402820,2, 0x40282c,3, 0x402840,4, 0x402880,3, 0x402900,5, 0x402920,2, 0x40292c,3, 0x402940,4, 0x402980,3, 0x402a00,5, 0x402a20,2, 0x402a2c,3, 0x402a40,4, 0x402a80,3, 0x402b00,5, 0x402b20,2, 0x402b2c,3, 0x402b40,4, 0x402b80,3, 0x402c00,5, 0x402c20,2, 0x402c2c,3, 0x402c40,4, 0x402c80,3, 0x402d00,5, 0x402d20,2, 0x402d2c,3, 0x402d40,4, 0x402d80,3, 0x402e00,5, 0x402e20,2, 0x402e2c,3, 0x402e40,4, 0x402e80,3, 0x402f00,5, 0x402f20,2, 0x402f2c,3, 0x402f40,4, 0x402f80,3, 0x403000,5, 0x403020,2, 0x40302c,3, 0x403040,4, 0x403080,3, 0x403100,5, 0x403120,2, 0x40312c,3, 0x403140,4, 0x403180,3, 0x403200,5, 0x403220,2, 0x40322c,3, 0x403240,4, 0x403280,3, 0x403300,5, 0x403320,2, 0x40332c,3, 0x403340,4, 0x403380,3, 0x403400,5, 0x403420,2, 0x40342c,3, 0x403440,4, 0x403480,3, 0x403500,5, 0x403520,2, 0x40352c,3, 0x403540,4, 0x403580,3, 0x403600,5, 0x403620,2, 0x40362c,3, 0x403640,4, 0x403680,3, 0x403700,5, 0x403720,2, 0x40372c,3, 0x403740,4, 0x403780,3, 0x403800,5, 0x403820,2, 0x40382c,3, 0x403840,4, 0x403880,3, 0x403900,5, 0x403920,2, 0x40392c,3, 0x403940,4, 0x403980,3, 0x403a00,5, 0x403a20,2, 0x403a2c,3, 0x403a40,4, 0x403a80,3, 0x403b00,5, 0x403b20,2, 0x403b2c,3, 0x403b40,4, 0x403b80,3, 0x403c00,5, 0x403c20,2, 0x403c2c,3, 0x403c40,4, 0x403c80,3, 0x403d00,5, 0x403d20,2, 0x403d2c,3, 0x403d40,4, 0x403d80,3, 0x403e00,5, 0x403e20,2, 0x403e2c,3, 0x403e40,4, 0x403e80,3, 0x403f00,5, 0x403f20,2, 0x403f2c,3, 0x403f40,4, 0x403f80,3, 0x404000,5, 0x404020,2, 0x40402c,3, 0x404040,4, 0x404080,3, 0x404100,5, 0x404120,2, 0x40412c,3, 0x404140,4, 0x404180,3, 0x404200,5, 0x404220,2, 0x40422c,3, 0x404240,4, 0x404280,3, 0x404300,5, 0x404320,2, 0x40432c,3, 0x404340,4, 0x404380,3, 0x404400,5, 0x404420,2, 0x40442c,3, 0x404440,4, 0x404480,3, 0x404500,5, 0x404520,2, 0x40452c,3, 0x404540,4, 0x404580,3, 0x404600,5, 0x404620,2, 0x40462c,3, 0x404640,4, 0x404680,3, 0x404700,5, 0x404720,2, 0x40472c,3, 0x404740,4, 0x404780,3, 0x404800,5, 0x404820,2, 0x40482c,3, 0x404840,4, 0x404880,3, 0x404900,5, 0x404920,2, 0x40492c,3, 0x404940,4, 0x404980,3, 0x404a00,5, 0x404a20,2, 0x404a2c,3, 0x404a40,4, 0x404a80,3, 0x404b00,5, 0x404b20,2, 0x404b2c,3, 0x404b40,4, 0x404b80,3, 0x404c00,5, 0x404c20,2, 0x404c2c,3, 0x404c40,4, 0x404c80,3, 0x404d00,5, 0x404d20,2, 0x404d2c,3, 0x404d40,4, 0x404d80,3, 0x404e00,5, 0x404e20,2, 0x404e2c,3, 0x404e40,4, 0x404e80,3, 0x404f00,5, 0x404f20,2, 0x404f2c,3, 0x404f40,4, 0x404f80,3, 0x405000,5, 0x405020,2, 0x40502c,3, 0x405040,4, 0x405080,3, 0x405100,5, 0x405120,2, 0x40512c,3, 0x405140,4, 0x405180,3, 0x405200,1, 0x405210,3, 0x405220,2, 0x405800,256, 0x405c04,32, 0x405c90,4, 0x406000,256, 0x406404,32, 0x406490,4, 0x406800,24, 0x406864,1, 0x406870,4, 0x406c00,26, 0x406c80,4, 0x406cc0,25, 0x406d40,6, 0x406d60,1, 0x406d68,2, 0x406d74,3, 0x406e00,8, 0x406e24,46, 0x407000,4, 0x407020,5, 0x407040,4, 0x420000,2, 0x420200,76, 0x420400,68, 0x420520,272, 0x420a00,36, 0x420b00,333, 0x422000,2, 0x422200,76, 0x422400,68, 0x422520,272, 0x422a00,36, 0x422b00,333, 0x424000,2, 0x424200,76, 0x424400,68, 0x424520,272, 0x424a00,36, 0x424b00,333, 0x426000,2, 0x426200,76, 0x426400,68, 0x426520,272, 0x426a00,36, 0x426b00,333, 0x428000,2, 0x428200,76, 0x428400,68, 0x428520,272, 0x428a00,36, 0x428b00,333, 0x42a000,2, 0x42a200,76, 0x42a400,68, 0x42a520,272, 0x42aa00,36, 0x42ab00,333, 0x42c000,2, 0x42c200,76, 0x42c400,68, 0x42c520,272, 0x42ca00,36, 0x42cb00,333, 0x42e000,2, 0x42e200,76, 0x42e400,68, 0x42e520,272, 0x42ea00,36, 0x42eb00,333, 0x430000,2, 0x430200,76, 0x430400,68, 0x430520,272, 0x430a00,36, 0x430b00,333, 0x432000,2, 0x432200,76, 0x432400,68, 0x432520,272, 0x432a00,36, 0x432b00,333, 0x434000,2, 0x434200,76, 0x434400,68, 0x434520,272, 0x434a00,36, 0x434b00,333, 0x436000,2, 0x436200,76, 0x436400,68, 0x436520,272, 0x436a00,36, 0x436b00,333, 0x440000,1, 0x441000,977, 0x442000,161, 0x443000,977, 0x444000,977, 0x445000,161, 0x446000,12, 0x446040,14, 0x446080,20, 0x446104,1, 0x44610c,4, 0x446200,12, 0x446240,14, 0x446280,20, 0x446304,1, 0x44630c,4, 0x446400,12, 0x446440,14, 0x446480,20, 0x446504,1, 0x44650c,4, 0x446600,17, 0x446650,2, 0x446660,3, 0x446800,1, 0x446814,1, 0x44681c,11, 0x446860,9, 0x446894,1, 0x44689c,11, 0x4468e0,15, 0x446a00,6, 0x446a20,14, 0x460000,3, 0x460010,3, 0x460020,1, 0x460040,3, 0x460050,2, 0x460060,3, 0x460070,2, 0x460800,53, 0x460900,3, 0x460910,16, 0x460a00,53, 0x460b00,3, 0x460b10,16, 0x460c00,5, 0x460c20,5, 0x460c40,18, 0x461000,6, 0x461020,4, 0x461040,16, 0x462000,22, 0x462080,22, 0x462100,23, 0x462160,7, 0x462200,5, 0x462220,3, 0x462230,3, 0x462240,3, 0x462260,24, 0x462300,5, 0x462320,3, 0x462330,3, 0x462340,3, 0x462360,24, 0x462400,5, 0x462420,3, 0x462430,3, 0x462440,3, 0x462460,24, 0x462500,5, 0x462520,3, 0x462530,3, 0x462540,3, 0x462560,24, 0x462800,4, 0x462820,16, 0x462880,10, 0x4628c0,10, 0x462900,6, 0x462920,6, 0x462940,4, 0x462980,13, 0x4629c0,13, 0x462a00,9, 0x463000,14, 0x463040,9, 0x463080,6, 0x4630a0,1, 0x4630a8,4, 0x463100,4, 0x463200,100, 0x463400,100, 0x463600,8, 0x463624,1, 0x463644,6, 0x463664,6, 0x463680,1, 0x463688,6, 0x4636a8,2, 0x464000,92, 0x464180,28, 0x464200,7, 0x464400,11, 0x464440,11, 0x464480,19, 0x464500,19, 0x464580,4, 0x4645a0,37, 0x464800,10, 0x464840,10, 0x464880,5, 0x464900,11, 0x464930,3, 0x464940,5, 0x464960,5, 0x464980,45, 0x464a40,13, 0x464a80,9, 0x464c00,14, 0x464c40,9, 0x464c80,6, 0x464ca0,1, 0x464ca8,4, 0x464d00,7, 0x464d20,5, 0x468000,26, 0x46806c,2, 0x468080,3, 0x468090,17, 0x468100,26, 0x46816c,2, 0x468180,3, 0x468190,17, 0x468200,26, 0x46826c,2, 0x468280,3, 0x468290,17, 0x468300,26, 0x46836c,2, 0x468380,3, 0x468390,17, 0x468400,12, 0x468444,1, 0x468454,8, 0x468480,7, 0x4684a0,2, 0x4684ac,2, 0x4684c0,20, 0x468580,4, 0x4685a0,5, 0x4685c0,1, 0x468800,3, 0x468810,3, 0x468820,3, 0x468830,3, 0x468840,5, 0x468860,5, 0x468880,5, 0x4688a0,5, 0x468900,36, 0x468a00,1, 0x468c04,1, 0x468c44,54, 0x468e00,11, 0x468e40,11, 0x468e80,11, 0x468ec0,11, 0x468f00,8, 0x468f40,12, 0x468f80,5, 0x468fa0,1, 0x469000,2, 0x469020,6, 0x469040,14, 0x469080,20, 0x469100,14, 0x469140,9, 0x469180,6, 0x4691a0,1, 0x4691a8,4, 0x469200,3, 0x46c000,10, 0x46c030,3, 0x46c040,4, 0x480000,534, 0x481000,2, 0x481020,15, 0x482000,534, 0x483000,8, 0x483024,6, 0x483040,8, 0x483080,7, 0x4830a0,7, 0x4830c0,7, 0x4830e0,7, 0x483100,8, 0x483124,6, 0x483140,12, 0x484000,534, 0x485000,2, 0x485020,15, 0x486000,534, 0x487000,8, 0x487024,6, 0x487040,8, 0x487080,7, 0x4870a0,7, 0x4870c0,7, 0x4870e0,7, 0x487100,8, 0x487124,6, 0x487140,12, 0x488004,5, 0x488200,26, 0x488280,4, 0x4882c0,25, 0x488340,6, 0x488360,1, 0x488368,2, 0x488374,11, 0x4883a4,4, 0x488400,1, 0x490000,432, 0x490800,82, 0x490960,6, 0x490a00,41, 0x490b00,2, 0x490b20,19, 0x490c00,1, 0x490c80,28, 0x490d00,1, 0x491000,432, 0x491800,82, 0x491960,6, 0x491a00,41, 0x491b00,2, 0x491b20,19, 0x491c00,1, 0x491c80,28, 0x491d00,1, 0x492000,7, 0x492040,9, 0x492080,4, 0x4920a0,5, 0x4920c0,1, 0x494000,3, 0x494010,6, 0x494200,7, 0x494220,6, 0x494240,7, 0x494260,6, 0x494280,2, 0x49428c,2, 0x4942a0,2, 0x4942ac,2, 0x4942c0,7, 0x4942e0,7, 0x494300,2, 0x49430c,2, 0x494320,6, 0x494340,7, 0x494360,6, 0x494380,6, 0x4943a0,7, 0x4943c0,6, 0x4943e0,6, 0x494400,3, 0x494440,12, 0x494800,7, 0x494820,14, 0x494880,16, 0x494900,7, 0x494920,14, 0x494980,16, 0x494a00,6, 0x494a20,7, 0x494c00,3, 0x4c0000,14, 0x4c003c,32, 0x4c0100,48, 0x4c0200,40, 0x4c0300,5, 0x4c0320,6, 0x4c0340,4, 0x4c0360,5, 0x4c0380,8, 0x4c0400,20, 0x4c0480,12, 0x4c04b8,24, 0x4c0800,14, 0x4c083c,32, 0x4c0900,48, 0x4c0a00,40, 0x4c0b00,5, 0x4c0b20,6, 0x4c0b40,4, 0x4c0b60,5, 0x4c0b80,8, 0x4c0c00,20, 0x4c0c80,12, 0x4c0cb8,24, 0x4c1000,1, 0x4c1008,20, 0x4c2000,14, 0x4c203c,32, 0x4c2100,48, 0x4c2200,40, 0x4c2300,5, 0x4c2320,6, 0x4c2340,4, 0x4c2360,5, 0x4c2380,8, 0x4c2400,20, 0x4c2480,12, 0x4c24b8,24, 0x4c2800,14, 0x4c283c,32, 0x4c2900,48, 0x4c2a00,40, 0x4c2b00,5, 0x4c2b20,6, 0x4c2b40,4, 0x4c2b60,5, 0x4c2b80,8, 0x4c2c00,20, 0x4c2c80,12, 0x4c2cb8,24, 0x4c3000,1, 0x4c3008,20, 0x4c4000,14, 0x4c403c,32, 0x4c4100,48, 0x4c4200,40, 0x4c4300,5, 0x4c4320,6, 0x4c4340,4, 0x4c4360,5, 0x4c4380,8, 0x4c4400,20, 0x4c4480,12, 0x4c44b8,24, 0x4c4800,14, 0x4c483c,32, 0x4c4900,48, 0x4c4a00,40, 0x4c4b00,5, 0x4c4b20,6, 0x4c4b40,4, 0x4c4b60,5, 0x4c4b80,8, 0x4c4c00,20, 0x4c4c80,12, 0x4c4cb8,24, 0x4c5000,1, 0x4c5008,20, 0x4c6000,14, 0x4c603c,32, 0x4c6100,48, 0x4c6200,40, 0x4c6300,5, 0x4c6320,6, 0x4c6340,4, 0x4c6360,5, 0x4c6380,8, 0x4c6400,20, 0x4c6480,12, 0x4c64b8,24, 0x4c6800,14, 0x4c683c,32, 0x4c6900,48, 0x4c6a00,40, 0x4c6b00,5, 0x4c6b20,6, 0x4c6b40,4, 0x4c6b60,5, 0x4c6b80,8, 0x4c6c00,20, 0x4c6c80,12, 0x4c6cb8,24, 0x4c7000,1, 0x4c7008,20, 0x4c8000,14, 0x4c803c,32, 0x4c8100,48, 0x4c8200,40, 0x4c8300,5, 0x4c8320,6, 0x4c8340,4, 0x4c8360,5, 0x4c8380,8, 0x4c8400,20, 0x4c8480,12, 0x4c84b8,24, 0x4c8800,14, 0x4c883c,32, 0x4c8900,48, 0x4c8a00,40, 0x4c8b00,5, 0x4c8b20,6, 0x4c8b40,4, 0x4c8b60,5, 0x4c8b80,8, 0x4c8c00,20, 0x4c8c80,12, 0x4c8cb8,24, 0x4c9000,1, 0x4c9008,20, 0x4ca000,14, 0x4ca03c,32, 0x4ca100,48, 0x4ca200,40, 0x4ca300,5, 0x4ca320,6, 0x4ca340,4, 0x4ca360,5, 0x4ca380,8, 0x4ca400,20, 0x4ca480,12, 0x4ca4b8,24, 0x4ca800,14, 0x4ca83c,32, 0x4ca900,48, 0x4caa00,40, 0x4cab00,5, 0x4cab20,6, 0x4cab40,4, 0x4cab60,5, 0x4cab80,8, 0x4cac00,20, 0x4cac80,12, 0x4cacb8,24, 0x4cb000,1, 0x4cb008,20, 0x4cc000,14, 0x4cc03c,32, 0x4cc100,48, 0x4cc200,40, 0x4cc300,5, 0x4cc320,6, 0x4cc340,4, 0x4cc360,5, 0x4cc380,8, 0x4cc400,20, 0x4cc480,12, 0x4cc4b8,24, 0x4cc800,14, 0x4cc83c,32, 0x4cc900,48, 0x4cca00,40, 0x4ccb00,5, 0x4ccb20,6, 0x4ccb40,4, 0x4ccb60,5, 0x4ccb80,8, 0x4ccc00,20, 0x4ccc80,12, 0x4cccb8,24, 0x4cd000,1, 0x4cd008,20, 0x4ce000,14, 0x4ce03c,32, 0x4ce100,48, 0x4ce200,40, 0x4ce300,5, 0x4ce320,6, 0x4ce340,4, 0x4ce360,5, 0x4ce380,8, 0x4ce400,20, 0x4ce480,12, 0x4ce4b8,24, 0x4ce800,14, 0x4ce83c,32, 0x4ce900,48, 0x4cea00,40, 0x4ceb00,5, 0x4ceb20,6, 0x4ceb40,4, 0x4ceb60,5, 0x4ceb80,8, 0x4cec00,20, 0x4cec80,12, 0x4cecb8,24, 0x4cf000,1, 0x4cf008,20, 0x4d0000,14, 0x4d003c,32, 0x4d0100,48, 0x4d0200,40, 0x4d0300,5, 0x4d0320,6, 0x4d0340,4, 0x4d0360,5, 0x4d0380,8, 0x4d0400,20, 0x4d0480,12, 0x4d04b8,24, 0x4d0800,14, 0x4d083c,32, 0x4d0900,48, 0x4d0a00,40, 0x4d0b00,5, 0x4d0b20,6, 0x4d0b40,4, 0x4d0b60,5, 0x4d0b80,8, 0x4d0c00,20, 0x4d0c80,12, 0x4d0cb8,24, 0x4d1000,1, 0x4d1008,20, 0x4d2000,14, 0x4d203c,32, 0x4d2100,48, 0x4d2200,40, 0x4d2300,5, 0x4d2320,6, 0x4d2340,4, 0x4d2360,5, 0x4d2380,8, 0x4d2400,20, 0x4d2480,12, 0x4d24b8,24, 0x4d2800,14, 0x4d283c,32, 0x4d2900,48, 0x4d2a00,40, 0x4d2b00,5, 0x4d2b20,6, 0x4d2b40,4, 0x4d2b60,5, 0x4d2b80,8, 0x4d2c00,20, 0x4d2c80,12, 0x4d2cb8,24, 0x4d3000,1, 0x4d3008,20, 0x4d4000,14, 0x4d403c,32, 0x4d4100,48, 0x4d4200,40, 0x4d4300,5, 0x4d4320,6, 0x4d4340,4, 0x4d4360,5, 0x4d4380,8, 0x4d4400,20, 0x4d4480,12, 0x4d44b8,24, 0x4d4800,14, 0x4d483c,32, 0x4d4900,48, 0x4d4a00,40, 0x4d4b00,5, 0x4d4b20,6, 0x4d4b40,4, 0x4d4b60,5, 0x4d4b80,8, 0x4d4c00,20, 0x4d4c80,12, 0x4d4cb8,24, 0x4d5000,1, 0x4d5008,20, 0x4d6000,14, 0x4d603c,32, 0x4d6100,48, 0x4d6200,40, 0x4d6300,5, 0x4d6320,6, 0x4d6340,4, 0x4d6360,5, 0x4d6380,8, 0x4d6400,20, 0x4d6480,12, 0x4d64b8,24, 0x4d6800,14, 0x4d683c,32, 0x4d6900,48, 0x4d6a00,40, 0x4d6b00,5, 0x4d6b20,6, 0x4d6b40,4, 0x4d6b60,5, 0x4d6b80,8, 0x4d6c00,20, 0x4d6c80,12, 0x4d6cb8,24, 0x4d7000,1, 0x4d7008,20, 0x4d8000,14, 0x4d803c,32, 0x4d8100,48, 0x4d8200,40, 0x4d8300,5, 0x4d8320,6, 0x4d8340,4, 0x4d8360,5, 0x4d8380,8, 0x4d8400,20, 0x4d8480,12, 0x4d84b8,24, 0x4d8800,14, 0x4d883c,32, 0x4d8900,48, 0x4d8a00,40, 0x4d8b00,5, 0x4d8b20,6, 0x4d8b40,4, 0x4d8b60,5, 0x4d8b80,8, 0x4d8c00,20, 0x4d8c80,12, 0x4d8cb8,24, 0x4d9000,1, 0x4d9008,20, 0x4da000,14, 0x4da03c,32, 0x4da100,48, 0x4da200,40, 0x4da300,5, 0x4da320,6, 0x4da340,4, 0x4da360,5, 0x4da380,8, 0x4da400,20, 0x4da480,12, 0x4da4b8,24, 0x4da800,14, 0x4da83c,32, 0x4da900,48, 0x4daa00,40, 0x4dab00,5, 0x4dab20,6, 0x4dab40,4, 0x4dab60,5, 0x4dab80,8, 0x4dac00,20, 0x4dac80,12, 0x4dacb8,24, 0x4db000,1, 0x4db008,20, 0x4dc000,14, 0x4dc03c,32, 0x4dc100,48, 0x4dc200,40, 0x4dc300,5, 0x4dc320,6, 0x4dc340,4, 0x4dc360,5, 0x4dc380,8, 0x4dc400,20, 0x4dc480,12, 0x4dc4b8,24, 0x4dc800,14, 0x4dc83c,32, 0x4dc900,48, 0x4dca00,40, 0x4dcb00,5, 0x4dcb20,6, 0x4dcb40,4, 0x4dcb60,5, 0x4dcb80,8, 0x4dcc00,20, 0x4dcc80,12, 0x4dccb8,24, 0x4dd000,1, 0x4dd008,20, 0x4de000,14, 0x4de03c,32, 0x4de100,48, 0x4de200,40, 0x4de300,5, 0x4de320,6, 0x4de340,4, 0x4de360,5, 0x4de380,8, 0x4de400,20, 0x4de480,12, 0x4de4b8,24, 0x4de800,14, 0x4de83c,32, 0x4de900,48, 0x4dea00,40, 0x4deb00,5, 0x4deb20,6, 0x4deb40,4, 0x4deb60,5, 0x4deb80,8, 0x4dec00,20, 0x4dec80,12, 0x4decb8,24, 0x4df000,1, 0x4df008,20, 0x4e0000,14, 0x4e003c,32, 0x4e0100,48, 0x4e0200,40, 0x4e0300,5, 0x4e0320,6, 0x4e0340,4, 0x4e0360,5, 0x4e0380,8, 0x4e0400,20, 0x4e0480,12, 0x4e04b8,24, 0x4e0800,14, 0x4e083c,32, 0x4e0900,48, 0x4e0a00,40, 0x4e0b00,5, 0x4e0b20,6, 0x4e0b40,4, 0x4e0b60,5, 0x4e0b80,8, 0x4e0c00,20, 0x4e0c80,12, 0x4e0cb8,24, 0x4e1000,1, 0x4e1008,20, 0x4e2000,14, 0x4e203c,32, 0x4e2100,48, 0x4e2200,40, 0x4e2300,5, 0x4e2320,6, 0x4e2340,4, 0x4e2360,5, 0x4e2380,8, 0x4e2400,20, 0x4e2480,12, 0x4e24b8,24, 0x4e2800,14, 0x4e283c,32, 0x4e2900,48, 0x4e2a00,40, 0x4e2b00,5, 0x4e2b20,6, 0x4e2b40,4, 0x4e2b60,5, 0x4e2b80,8, 0x4e2c00,20, 0x4e2c80,12, 0x4e2cb8,24, 0x4e3000,1, 0x4e3008,20, 0x4e4000,2, 0x4e4044,1, 0x4e4058,14, 0x4e4100,14, 0x4e4140,9, 0x4e4180,6, 0x4e41a0,1, 0x4e41a8,4, 0x4e41c4,12, 0x4e4200,9, 0x4e4228,2, 0x4e4280,28, 0x4e4300,10, 0x4e4330,3, 0x500000,14, 0x50003c,32, 0x500100,48, 0x500200,40, 0x500300,5, 0x500320,6, 0x500340,4, 0x500360,5, 0x500380,8, 0x500400,20, 0x500480,12, 0x5004b8,24, 0x500800,14, 0x50083c,32, 0x500900,48, 0x500a00,40, 0x500b00,5, 0x500b20,6, 0x500b40,4, 0x500b60,5, 0x500b80,8, 0x500c00,20, 0x500c80,12, 0x500cb8,24, 0x501000,1, 0x501008,20, 0x502000,14, 0x50203c,32, 0x502100,48, 0x502200,40, 0x502300,5, 0x502320,6, 0x502340,4, 0x502360,5, 0x502380,8, 0x502400,20, 0x502480,12, 0x5024b8,24, 0x502800,14, 0x50283c,32, 0x502900,48, 0x502a00,40, 0x502b00,5, 0x502b20,6, 0x502b40,4, 0x502b60,5, 0x502b80,8, 0x502c00,20, 0x502c80,12, 0x502cb8,24, 0x503000,1, 0x503008,20, 0x504000,14, 0x50403c,32, 0x504100,48, 0x504200,40, 0x504300,5, 0x504320,6, 0x504340,4, 0x504360,5, 0x504380,8, 0x504400,20, 0x504480,12, 0x5044b8,24, 0x504800,14, 0x50483c,32, 0x504900,48, 0x504a00,40, 0x504b00,5, 0x504b20,6, 0x504b40,4, 0x504b60,5, 0x504b80,8, 0x504c00,20, 0x504c80,12, 0x504cb8,24, 0x505000,1, 0x505008,20, 0x506000,14, 0x50603c,32, 0x506100,48, 0x506200,40, 0x506300,5, 0x506320,6, 0x506340,4, 0x506360,5, 0x506380,8, 0x506400,20, 0x506480,12, 0x5064b8,24, 0x506800,14, 0x50683c,32, 0x506900,48, 0x506a00,40, 0x506b00,5, 0x506b20,6, 0x506b40,4, 0x506b60,5, 0x506b80,8, 0x506c00,20, 0x506c80,12, 0x506cb8,24, 0x507000,1, 0x507008,20, 0x508000,14, 0x50803c,32, 0x508100,48, 0x508200,40, 0x508300,5, 0x508320,6, 0x508340,4, 0x508360,5, 0x508380,8, 0x508400,20, 0x508480,12, 0x5084b8,24, 0x508800,14, 0x50883c,32, 0x508900,48, 0x508a00,40, 0x508b00,5, 0x508b20,6, 0x508b40,4, 0x508b60,5, 0x508b80,8, 0x508c00,20, 0x508c80,12, 0x508cb8,24, 0x509000,1, 0x509008,20, 0x50a000,14, 0x50a03c,32, 0x50a100,48, 0x50a200,40, 0x50a300,5, 0x50a320,6, 0x50a340,4, 0x50a360,5, 0x50a380,8, 0x50a400,20, 0x50a480,12, 0x50a4b8,24, 0x50a800,14, 0x50a83c,32, 0x50a900,48, 0x50aa00,40, 0x50ab00,5, 0x50ab20,6, 0x50ab40,4, 0x50ab60,5, 0x50ab80,8, 0x50ac00,20, 0x50ac80,12, 0x50acb8,24, 0x50b000,1, 0x50b008,20, 0x50c000,14, 0x50c03c,32, 0x50c100,48, 0x50c200,40, 0x50c300,5, 0x50c320,6, 0x50c340,4, 0x50c360,5, 0x50c380,8, 0x50c400,20, 0x50c480,12, 0x50c4b8,24, 0x50c800,14, 0x50c83c,32, 0x50c900,48, 0x50ca00,40, 0x50cb00,5, 0x50cb20,6, 0x50cb40,4, 0x50cb60,5, 0x50cb80,8, 0x50cc00,20, 0x50cc80,12, 0x50ccb8,24, 0x50d000,1, 0x50d008,20, 0x50e000,14, 0x50e03c,32, 0x50e100,48, 0x50e200,40, 0x50e300,5, 0x50e320,6, 0x50e340,4, 0x50e360,5, 0x50e380,8, 0x50e400,20, 0x50e480,12, 0x50e4b8,24, 0x50e800,14, 0x50e83c,32, 0x50e900,48, 0x50ea00,40, 0x50eb00,5, 0x50eb20,6, 0x50eb40,4, 0x50eb60,5, 0x50eb80,8, 0x50ec00,20, 0x50ec80,12, 0x50ecb8,24, 0x50f000,1, 0x50f008,20, 0x510000,14, 0x51003c,32, 0x510100,48, 0x510200,40, 0x510300,5, 0x510320,6, 0x510340,4, 0x510360,5, 0x510380,8, 0x510400,20, 0x510480,12, 0x5104b8,24, 0x510800,14, 0x51083c,32, 0x510900,48, 0x510a00,40, 0x510b00,5, 0x510b20,6, 0x510b40,4, 0x510b60,5, 0x510b80,8, 0x510c00,20, 0x510c80,12, 0x510cb8,24, 0x511000,1, 0x511008,20, 0x512000,14, 0x51203c,32, 0x512100,48, 0x512200,40, 0x512300,5, 0x512320,6, 0x512340,4, 0x512360,5, 0x512380,8, 0x512400,20, 0x512480,12, 0x5124b8,24, 0x512800,14, 0x51283c,32, 0x512900,48, 0x512a00,40, 0x512b00,5, 0x512b20,6, 0x512b40,4, 0x512b60,5, 0x512b80,8, 0x512c00,20, 0x512c80,12, 0x512cb8,24, 0x513000,1, 0x513008,20, 0x514000,14, 0x51403c,32, 0x514100,48, 0x514200,40, 0x514300,5, 0x514320,6, 0x514340,4, 0x514360,5, 0x514380,8, 0x514400,20, 0x514480,12, 0x5144b8,24, 0x514800,14, 0x51483c,32, 0x514900,48, 0x514a00,40, 0x514b00,5, 0x514b20,6, 0x514b40,4, 0x514b60,5, 0x514b80,8, 0x514c00,20, 0x514c80,12, 0x514cb8,24, 0x515000,1, 0x515008,20, 0x516000,14, 0x51603c,32, 0x516100,48, 0x516200,40, 0x516300,5, 0x516320,6, 0x516340,4, 0x516360,5, 0x516380,8, 0x516400,20, 0x516480,12, 0x5164b8,24, 0x516800,14, 0x51683c,32, 0x516900,48, 0x516a00,40, 0x516b00,5, 0x516b20,6, 0x516b40,4, 0x516b60,5, 0x516b80,8, 0x516c00,20, 0x516c80,12, 0x516cb8,24, 0x517000,1, 0x517008,20, 0x518000,14, 0x51803c,32, 0x518100,48, 0x518200,40, 0x518300,5, 0x518320,6, 0x518340,4, 0x518360,5, 0x518380,8, 0x518400,20, 0x518480,12, 0x5184b8,24, 0x518800,14, 0x51883c,32, 0x518900,48, 0x518a00,40, 0x518b00,5, 0x518b20,6, 0x518b40,4, 0x518b60,5, 0x518b80,8, 0x518c00,20, 0x518c80,12, 0x518cb8,24, 0x519000,1, 0x519008,20, 0x51a000,14, 0x51a03c,32, 0x51a100,48, 0x51a200,40, 0x51a300,5, 0x51a320,6, 0x51a340,4, 0x51a360,5, 0x51a380,8, 0x51a400,20, 0x51a480,12, 0x51a4b8,24, 0x51a800,14, 0x51a83c,32, 0x51a900,48, 0x51aa00,40, 0x51ab00,5, 0x51ab20,6, 0x51ab40,4, 0x51ab60,5, 0x51ab80,8, 0x51ac00,20, 0x51ac80,12, 0x51acb8,24, 0x51b000,1, 0x51b008,20, 0x51c000,14, 0x51c03c,32, 0x51c100,48, 0x51c200,40, 0x51c300,5, 0x51c320,6, 0x51c340,4, 0x51c360,5, 0x51c380,8, 0x51c400,20, 0x51c480,12, 0x51c4b8,24, 0x51c800,14, 0x51c83c,32, 0x51c900,48, 0x51ca00,40, 0x51cb00,5, 0x51cb20,6, 0x51cb40,4, 0x51cb60,5, 0x51cb80,8, 0x51cc00,20, 0x51cc80,12, 0x51ccb8,24, 0x51d000,1, 0x51d008,20, 0x51e000,14, 0x51e03c,32, 0x51e100,48, 0x51e200,40, 0x51e300,5, 0x51e320,6, 0x51e340,4, 0x51e360,5, 0x51e380,8, 0x51e400,20, 0x51e480,12, 0x51e4b8,24, 0x51e800,14, 0x51e83c,32, 0x51e900,48, 0x51ea00,40, 0x51eb00,5, 0x51eb20,6, 0x51eb40,4, 0x51eb60,5, 0x51eb80,8, 0x51ec00,20, 0x51ec80,12, 0x51ecb8,24, 0x51f000,1, 0x51f008,20, 0x520000,14, 0x52003c,32, 0x520100,48, 0x520200,40, 0x520300,5, 0x520320,6, 0x520340,4, 0x520360,5, 0x520380,8, 0x520400,20, 0x520480,12, 0x5204b8,24, 0x520800,14, 0x52083c,32, 0x520900,48, 0x520a00,40, 0x520b00,5, 0x520b20,6, 0x520b40,4, 0x520b60,5, 0x520b80,8, 0x520c00,20, 0x520c80,12, 0x520cb8,24, 0x521000,1, 0x521008,20, 0x522000,14, 0x52203c,32, 0x522100,48, 0x522200,40, 0x522300,5, 0x522320,6, 0x522340,4, 0x522360,5, 0x522380,8, 0x522400,20, 0x522480,12, 0x5224b8,24, 0x522800,14, 0x52283c,32, 0x522900,48, 0x522a00,40, 0x522b00,5, 0x522b20,6, 0x522b40,4, 0x522b60,5, 0x522b80,8, 0x522c00,20, 0x522c80,12, 0x522cb8,24, 0x523000,1, 0x523008,20, 0x524000,2, 0x524044,1, 0x524058,14, 0x524100,14, 0x524140,9, 0x524180,6, 0x5241a0,1, 0x5241a8,4, 0x5241c4,12, 0x524200,9, 0x524228,2, 0x524280,28, 0x524300,10, 0x524330,3, 0x540000,14, 0x54003c,32, 0x540100,48, 0x540200,40, 0x540300,5, 0x540320,6, 0x540340,4, 0x540360,5, 0x540380,8, 0x540400,20, 0x540480,12, 0x5404b8,24, 0x540800,14, 0x54083c,32, 0x540900,48, 0x540a00,40, 0x540b00,5, 0x540b20,6, 0x540b40,4, 0x540b60,5, 0x540b80,8, 0x540c00,20, 0x540c80,12, 0x540cb8,24, 0x541000,1, 0x541008,20, 0x542000,14, 0x54203c,32, 0x542100,48, 0x542200,40, 0x542300,5, 0x542320,6, 0x542340,4, 0x542360,5, 0x542380,8, 0x542400,20, 0x542480,12, 0x5424b8,24, 0x542800,14, 0x54283c,32, 0x542900,48, 0x542a00,40, 0x542b00,5, 0x542b20,6, 0x542b40,4, 0x542b60,5, 0x542b80,8, 0x542c00,20, 0x542c80,12, 0x542cb8,24, 0x543000,1, 0x543008,20, 0x544000,14, 0x54403c,32, 0x544100,48, 0x544200,40, 0x544300,5, 0x544320,6, 0x544340,4, 0x544360,5, 0x544380,8, 0x544400,20, 0x544480,12, 0x5444b8,24, 0x544800,14, 0x54483c,32, 0x544900,48, 0x544a00,40, 0x544b00,5, 0x544b20,6, 0x544b40,4, 0x544b60,5, 0x544b80,8, 0x544c00,20, 0x544c80,12, 0x544cb8,24, 0x545000,1, 0x545008,20, 0x546000,14, 0x54603c,32, 0x546100,48, 0x546200,40, 0x546300,5, 0x546320,6, 0x546340,4, 0x546360,5, 0x546380,8, 0x546400,20, 0x546480,12, 0x5464b8,24, 0x546800,14, 0x54683c,32, 0x546900,48, 0x546a00,40, 0x546b00,5, 0x546b20,6, 0x546b40,4, 0x546b60,5, 0x546b80,8, 0x546c00,20, 0x546c80,12, 0x546cb8,24, 0x547000,1, 0x547008,20, 0x548000,14, 0x54803c,32, 0x548100,48, 0x548200,40, 0x548300,5, 0x548320,6, 0x548340,4, 0x548360,5, 0x548380,8, 0x548400,20, 0x548480,12, 0x5484b8,24, 0x548800,14, 0x54883c,32, 0x548900,48, 0x548a00,40, 0x548b00,5, 0x548b20,6, 0x548b40,4, 0x548b60,5, 0x548b80,8, 0x548c00,20, 0x548c80,12, 0x548cb8,24, 0x549000,1, 0x549008,20, 0x54a000,14, 0x54a03c,32, 0x54a100,48, 0x54a200,40, 0x54a300,5, 0x54a320,6, 0x54a340,4, 0x54a360,5, 0x54a380,8, 0x54a400,20, 0x54a480,12, 0x54a4b8,24, 0x54a800,14, 0x54a83c,32, 0x54a900,48, 0x54aa00,40, 0x54ab00,5, 0x54ab20,6, 0x54ab40,4, 0x54ab60,5, 0x54ab80,8, 0x54ac00,20, 0x54ac80,12, 0x54acb8,24, 0x54b000,1, 0x54b008,20, 0x54c000,14, 0x54c03c,32, 0x54c100,48, 0x54c200,40, 0x54c300,5, 0x54c320,6, 0x54c340,4, 0x54c360,5, 0x54c380,8, 0x54c400,20, 0x54c480,12, 0x54c4b8,24, 0x54c800,14, 0x54c83c,32, 0x54c900,48, 0x54ca00,40, 0x54cb00,5, 0x54cb20,6, 0x54cb40,4, 0x54cb60,5, 0x54cb80,8, 0x54cc00,20, 0x54cc80,12, 0x54ccb8,24, 0x54d000,1, 0x54d008,20, 0x54e000,14, 0x54e03c,32, 0x54e100,48, 0x54e200,40, 0x54e300,5, 0x54e320,6, 0x54e340,4, 0x54e360,5, 0x54e380,8, 0x54e400,20, 0x54e480,12, 0x54e4b8,24, 0x54e800,14, 0x54e83c,32, 0x54e900,48, 0x54ea00,40, 0x54eb00,5, 0x54eb20,6, 0x54eb40,4, 0x54eb60,5, 0x54eb80,8, 0x54ec00,20, 0x54ec80,12, 0x54ecb8,24, 0x54f000,1, 0x54f008,20, 0x550000,14, 0x55003c,32, 0x550100,48, 0x550200,40, 0x550300,5, 0x550320,6, 0x550340,4, 0x550360,5, 0x550380,8, 0x550400,20, 0x550480,12, 0x5504b8,24, 0x550800,14, 0x55083c,32, 0x550900,48, 0x550a00,40, 0x550b00,5, 0x550b20,6, 0x550b40,4, 0x550b60,5, 0x550b80,8, 0x550c00,20, 0x550c80,12, 0x550cb8,24, 0x551000,1, 0x551008,20, 0x552000,14, 0x55203c,32, 0x552100,48, 0x552200,40, 0x552300,5, 0x552320,6, 0x552340,4, 0x552360,5, 0x552380,8, 0x552400,20, 0x552480,12, 0x5524b8,24, 0x552800,14, 0x55283c,32, 0x552900,48, 0x552a00,40, 0x552b00,5, 0x552b20,6, 0x552b40,4, 0x552b60,5, 0x552b80,8, 0x552c00,20, 0x552c80,12, 0x552cb8,24, 0x553000,1, 0x553008,20, 0x554000,14, 0x55403c,32, 0x554100,48, 0x554200,40, 0x554300,5, 0x554320,6, 0x554340,4, 0x554360,5, 0x554380,8, 0x554400,20, 0x554480,12, 0x5544b8,24, 0x554800,14, 0x55483c,32, 0x554900,48, 0x554a00,40, 0x554b00,5, 0x554b20,6, 0x554b40,4, 0x554b60,5, 0x554b80,8, 0x554c00,20, 0x554c80,12, 0x554cb8,24, 0x555000,1, 0x555008,20, 0x556000,14, 0x55603c,32, 0x556100,48, 0x556200,40, 0x556300,5, 0x556320,6, 0x556340,4, 0x556360,5, 0x556380,8, 0x556400,20, 0x556480,12, 0x5564b8,24, 0x556800,14, 0x55683c,32, 0x556900,48, 0x556a00,40, 0x556b00,5, 0x556b20,6, 0x556b40,4, 0x556b60,5, 0x556b80,8, 0x556c00,20, 0x556c80,12, 0x556cb8,24, 0x557000,1, 0x557008,20, 0x558000,14, 0x55803c,32, 0x558100,48, 0x558200,40, 0x558300,5, 0x558320,6, 0x558340,4, 0x558360,5, 0x558380,8, 0x558400,20, 0x558480,12, 0x5584b8,24, 0x558800,14, 0x55883c,32, 0x558900,48, 0x558a00,40, 0x558b00,5, 0x558b20,6, 0x558b40,4, 0x558b60,5, 0x558b80,8, 0x558c00,20, 0x558c80,12, 0x558cb8,24, 0x559000,1, 0x559008,20, 0x55a000,14, 0x55a03c,32, 0x55a100,48, 0x55a200,40, 0x55a300,5, 0x55a320,6, 0x55a340,4, 0x55a360,5, 0x55a380,8, 0x55a400,20, 0x55a480,12, 0x55a4b8,24, 0x55a800,14, 0x55a83c,32, 0x55a900,48, 0x55aa00,40, 0x55ab00,5, 0x55ab20,6, 0x55ab40,4, 0x55ab60,5, 0x55ab80,8, 0x55ac00,20, 0x55ac80,12, 0x55acb8,24, 0x55b000,1, 0x55b008,20, 0x55c000,14, 0x55c03c,32, 0x55c100,48, 0x55c200,40, 0x55c300,5, 0x55c320,6, 0x55c340,4, 0x55c360,5, 0x55c380,8, 0x55c400,20, 0x55c480,12, 0x55c4b8,24, 0x55c800,14, 0x55c83c,32, 0x55c900,48, 0x55ca00,40, 0x55cb00,5, 0x55cb20,6, 0x55cb40,4, 0x55cb60,5, 0x55cb80,8, 0x55cc00,20, 0x55cc80,12, 0x55ccb8,24, 0x55d000,1, 0x55d008,20, 0x55e000,14, 0x55e03c,32, 0x55e100,48, 0x55e200,40, 0x55e300,5, 0x55e320,6, 0x55e340,4, 0x55e360,5, 0x55e380,8, 0x55e400,20, 0x55e480,12, 0x55e4b8,24, 0x55e800,14, 0x55e83c,32, 0x55e900,48, 0x55ea00,40, 0x55eb00,5, 0x55eb20,6, 0x55eb40,4, 0x55eb60,5, 0x55eb80,8, 0x55ec00,20, 0x55ec80,12, 0x55ecb8,24, 0x55f000,1, 0x55f008,20, 0x560000,14, 0x56003c,32, 0x560100,48, 0x560200,40, 0x560300,5, 0x560320,6, 0x560340,4, 0x560360,5, 0x560380,8, 0x560400,20, 0x560480,12, 0x5604b8,24, 0x560800,14, 0x56083c,32, 0x560900,48, 0x560a00,40, 0x560b00,5, 0x560b20,6, 0x560b40,4, 0x560b60,5, 0x560b80,8, 0x560c00,20, 0x560c80,12, 0x560cb8,24, 0x561000,1, 0x561008,20, 0x562000,14, 0x56203c,32, 0x562100,48, 0x562200,40, 0x562300,5, 0x562320,6, 0x562340,4, 0x562360,5, 0x562380,8, 0x562400,20, 0x562480,12, 0x5624b8,24, 0x562800,14, 0x56283c,32, 0x562900,48, 0x562a00,40, 0x562b00,5, 0x562b20,6, 0x562b40,4, 0x562b60,5, 0x562b80,8, 0x562c00,20, 0x562c80,12, 0x562cb8,24, 0x563000,1, 0x563008,20, 0x564000,2, 0x564044,1, 0x564058,14, 0x564100,14, 0x564140,9, 0x564180,6, 0x5641a0,1, 0x5641a8,4, 0x5641c4,12, 0x564200,9, 0x564228,2, 0x564280,28, 0x564300,10, 0x564330,3, 0x580000,14, 0x58003c,32, 0x580100,48, 0x580200,40, 0x580300,5, 0x580320,6, 0x580340,4, 0x580360,5, 0x580380,8, 0x580400,20, 0x580480,12, 0x5804b8,24, 0x580800,14, 0x58083c,32, 0x580900,48, 0x580a00,40, 0x580b00,5, 0x580b20,6, 0x580b40,4, 0x580b60,5, 0x580b80,8, 0x580c00,20, 0x580c80,12, 0x580cb8,24, 0x581000,1, 0x581008,20, 0x582000,14, 0x58203c,32, 0x582100,48, 0x582200,40, 0x582300,5, 0x582320,6, 0x582340,4, 0x582360,5, 0x582380,8, 0x582400,20, 0x582480,12, 0x5824b8,24, 0x582800,14, 0x58283c,32, 0x582900,48, 0x582a00,40, 0x582b00,5, 0x582b20,6, 0x582b40,4, 0x582b60,5, 0x582b80,8, 0x582c00,20, 0x582c80,12, 0x582cb8,24, 0x583000,1, 0x583008,20, 0x584000,14, 0x58403c,32, 0x584100,48, 0x584200,40, 0x584300,5, 0x584320,6, 0x584340,4, 0x584360,5, 0x584380,8, 0x584400,20, 0x584480,12, 0x5844b8,24, 0x584800,14, 0x58483c,32, 0x584900,48, 0x584a00,40, 0x584b00,5, 0x584b20,6, 0x584b40,4, 0x584b60,5, 0x584b80,8, 0x584c00,20, 0x584c80,12, 0x584cb8,24, 0x585000,1, 0x585008,20, 0x586000,14, 0x58603c,32, 0x586100,48, 0x586200,40, 0x586300,5, 0x586320,6, 0x586340,4, 0x586360,5, 0x586380,8, 0x586400,20, 0x586480,12, 0x5864b8,24, 0x586800,14, 0x58683c,32, 0x586900,48, 0x586a00,40, 0x586b00,5, 0x586b20,6, 0x586b40,4, 0x586b60,5, 0x586b80,8, 0x586c00,20, 0x586c80,12, 0x586cb8,24, 0x587000,1, 0x587008,20, 0x588000,14, 0x58803c,32, 0x588100,48, 0x588200,40, 0x588300,5, 0x588320,6, 0x588340,4, 0x588360,5, 0x588380,8, 0x588400,20, 0x588480,12, 0x5884b8,24, 0x588800,14, 0x58883c,32, 0x588900,48, 0x588a00,40, 0x588b00,5, 0x588b20,6, 0x588b40,4, 0x588b60,5, 0x588b80,8, 0x588c00,20, 0x588c80,12, 0x588cb8,24, 0x589000,1, 0x589008,20, 0x58a000,14, 0x58a03c,32, 0x58a100,48, 0x58a200,40, 0x58a300,5, 0x58a320,6, 0x58a340,4, 0x58a360,5, 0x58a380,8, 0x58a400,20, 0x58a480,12, 0x58a4b8,24, 0x58a800,14, 0x58a83c,32, 0x58a900,48, 0x58aa00,40, 0x58ab00,5, 0x58ab20,6, 0x58ab40,4, 0x58ab60,5, 0x58ab80,8, 0x58ac00,20, 0x58ac80,12, 0x58acb8,24, 0x58b000,1, 0x58b008,20, 0x58c000,14, 0x58c03c,32, 0x58c100,48, 0x58c200,40, 0x58c300,5, 0x58c320,6, 0x58c340,4, 0x58c360,5, 0x58c380,8, 0x58c400,20, 0x58c480,12, 0x58c4b8,24, 0x58c800,14, 0x58c83c,32, 0x58c900,48, 0x58ca00,40, 0x58cb00,5, 0x58cb20,6, 0x58cb40,4, 0x58cb60,5, 0x58cb80,8, 0x58cc00,20, 0x58cc80,12, 0x58ccb8,24, 0x58d000,1, 0x58d008,20, 0x58e000,14, 0x58e03c,32, 0x58e100,48, 0x58e200,40, 0x58e300,5, 0x58e320,6, 0x58e340,4, 0x58e360,5, 0x58e380,8, 0x58e400,20, 0x58e480,12, 0x58e4b8,24, 0x58e800,14, 0x58e83c,32, 0x58e900,48, 0x58ea00,40, 0x58eb00,5, 0x58eb20,6, 0x58eb40,4, 0x58eb60,5, 0x58eb80,8, 0x58ec00,20, 0x58ec80,12, 0x58ecb8,24, 0x58f000,1, 0x58f008,20, 0x590000,14, 0x59003c,32, 0x590100,48, 0x590200,40, 0x590300,5, 0x590320,6, 0x590340,4, 0x590360,5, 0x590380,8, 0x590400,20, 0x590480,12, 0x5904b8,24, 0x590800,14, 0x59083c,32, 0x590900,48, 0x590a00,40, 0x590b00,5, 0x590b20,6, 0x590b40,4, 0x590b60,5, 0x590b80,8, 0x590c00,20, 0x590c80,12, 0x590cb8,24, 0x591000,1, 0x591008,20, 0x592000,14, 0x59203c,32, 0x592100,48, 0x592200,40, 0x592300,5, 0x592320,6, 0x592340,4, 0x592360,5, 0x592380,8, 0x592400,20, 0x592480,12, 0x5924b8,24, 0x592800,14, 0x59283c,32, 0x592900,48, 0x592a00,40, 0x592b00,5, 0x592b20,6, 0x592b40,4, 0x592b60,5, 0x592b80,8, 0x592c00,20, 0x592c80,12, 0x592cb8,24, 0x593000,1, 0x593008,20, 0x594000,14, 0x59403c,32, 0x594100,48, 0x594200,40, 0x594300,5, 0x594320,6, 0x594340,4, 0x594360,5, 0x594380,8, 0x594400,20, 0x594480,12, 0x5944b8,24, 0x594800,14, 0x59483c,32, 0x594900,48, 0x594a00,40, 0x594b00,5, 0x594b20,6, 0x594b40,4, 0x594b60,5, 0x594b80,8, 0x594c00,20, 0x594c80,12, 0x594cb8,24, 0x595000,1, 0x595008,20, 0x596000,14, 0x59603c,32, 0x596100,48, 0x596200,40, 0x596300,5, 0x596320,6, 0x596340,4, 0x596360,5, 0x596380,8, 0x596400,20, 0x596480,12, 0x5964b8,24, 0x596800,14, 0x59683c,32, 0x596900,48, 0x596a00,40, 0x596b00,5, 0x596b20,6, 0x596b40,4, 0x596b60,5, 0x596b80,8, 0x596c00,20, 0x596c80,12, 0x596cb8,24, 0x597000,1, 0x597008,20, 0x598000,14, 0x59803c,32, 0x598100,48, 0x598200,40, 0x598300,5, 0x598320,6, 0x598340,4, 0x598360,5, 0x598380,8, 0x598400,20, 0x598480,12, 0x5984b8,24, 0x598800,14, 0x59883c,32, 0x598900,48, 0x598a00,40, 0x598b00,5, 0x598b20,6, 0x598b40,4, 0x598b60,5, 0x598b80,8, 0x598c00,20, 0x598c80,12, 0x598cb8,24, 0x599000,1, 0x599008,20, 0x59a000,14, 0x59a03c,32, 0x59a100,48, 0x59a200,40, 0x59a300,5, 0x59a320,6, 0x59a340,4, 0x59a360,5, 0x59a380,8, 0x59a400,20, 0x59a480,12, 0x59a4b8,24, 0x59a800,14, 0x59a83c,32, 0x59a900,48, 0x59aa00,40, 0x59ab00,5, 0x59ab20,6, 0x59ab40,4, 0x59ab60,5, 0x59ab80,8, 0x59ac00,20, 0x59ac80,12, 0x59acb8,24, 0x59b000,1, 0x59b008,20, 0x59c000,14, 0x59c03c,32, 0x59c100,48, 0x59c200,40, 0x59c300,5, 0x59c320,6, 0x59c340,4, 0x59c360,5, 0x59c380,8, 0x59c400,20, 0x59c480,12, 0x59c4b8,24, 0x59c800,14, 0x59c83c,32, 0x59c900,48, 0x59ca00,40, 0x59cb00,5, 0x59cb20,6, 0x59cb40,4, 0x59cb60,5, 0x59cb80,8, 0x59cc00,20, 0x59cc80,12, 0x59ccb8,24, 0x59d000,1, 0x59d008,20, 0x59e000,14, 0x59e03c,32, 0x59e100,48, 0x59e200,40, 0x59e300,5, 0x59e320,6, 0x59e340,4, 0x59e360,5, 0x59e380,8, 0x59e400,20, 0x59e480,12, 0x59e4b8,24, 0x59e800,14, 0x59e83c,32, 0x59e900,48, 0x59ea00,40, 0x59eb00,5, 0x59eb20,6, 0x59eb40,4, 0x59eb60,5, 0x59eb80,8, 0x59ec00,20, 0x59ec80,12, 0x59ecb8,24, 0x59f000,1, 0x59f008,20, 0x5a0000,14, 0x5a003c,32, 0x5a0100,48, 0x5a0200,40, 0x5a0300,5, 0x5a0320,6, 0x5a0340,4, 0x5a0360,5, 0x5a0380,8, 0x5a0400,20, 0x5a0480,12, 0x5a04b8,24, 0x5a0800,14, 0x5a083c,32, 0x5a0900,48, 0x5a0a00,40, 0x5a0b00,5, 0x5a0b20,6, 0x5a0b40,4, 0x5a0b60,5, 0x5a0b80,8, 0x5a0c00,20, 0x5a0c80,12, 0x5a0cb8,24, 0x5a1000,1, 0x5a1008,20, 0x5a2000,14, 0x5a203c,32, 0x5a2100,48, 0x5a2200,40, 0x5a2300,5, 0x5a2320,6, 0x5a2340,4, 0x5a2360,5, 0x5a2380,8, 0x5a2400,20, 0x5a2480,12, 0x5a24b8,24, 0x5a2800,14, 0x5a283c,32, 0x5a2900,48, 0x5a2a00,40, 0x5a2b00,5, 0x5a2b20,6, 0x5a2b40,4, 0x5a2b60,5, 0x5a2b80,8, 0x5a2c00,20, 0x5a2c80,12, 0x5a2cb8,24, 0x5a3000,1, 0x5a3008,20, 0x5a4000,2, 0x5a4044,1, 0x5a4058,14, 0x5a4100,14, 0x5a4140,9, 0x5a4180,6, 0x5a41a0,1, 0x5a41a8,4, 0x5a41c4,12, 0x5a4200,9, 0x5a4228,2, 0x5a4280,28, 0x5a4300,10, 0x5a4330,3, 0x5c0004,1, 0x5c000c,4, 0x5c0024,1, 0x5c002c,4, 0x5c0040,5, 0x5c0104,1, 0x5c0140,39, 0x5c0200,7, 0x5c0220,46, 0x5c02e4,5, 0x5c0304,5, 0x5c0324,1, 0x5c032c,3, 0x5c0344,1, 0x5c034c,3, 0x5c0384,1, 0x5c03a0,11, 0x5c03d0,3, 0x5c03e0,1, 0x5c0400,20, 0x5c0480,4, 0x5c04c0,9, 0x5c0500,4, 0x5c0520,5, 0x5c0540,3, 0x5c0550,17, 0x5c05a0,9, 0x5c0804,1, 0x5c080c,4, 0x5c0824,1, 0x5c082c,4, 0x5c0840,5, 0x5c0904,1, 0x5c0940,39, 0x5c0a00,7, 0x5c0a20,46, 0x5c0ae4,5, 0x5c0b04,5, 0x5c0b24,1, 0x5c0b2c,3, 0x5c0b44,1, 0x5c0b4c,3, 0x5c0b84,1, 0x5c0ba0,11, 0x5c0bd0,3, 0x5c0be0,1, 0x5c0c00,20, 0x5c0c80,4, 0x5c0cc0,9, 0x5c0d00,4, 0x5c0d20,5, 0x5c0d40,3, 0x5c0d50,17, 0x5c0da0,9, 0x5c1004,1, 0x5c100c,4, 0x5c1024,1, 0x5c102c,4, 0x5c1040,5, 0x5c1104,1, 0x5c1140,39, 0x5c1200,7, 0x5c1220,46, 0x5c12e4,5, 0x5c1304,5, 0x5c1324,1, 0x5c132c,3, 0x5c1344,1, 0x5c134c,3, 0x5c1384,1, 0x5c13a0,11, 0x5c13d0,3, 0x5c13e0,1, 0x5c1400,20, 0x5c1480,4, 0x5c14c0,9, 0x5c1500,4, 0x5c1520,5, 0x5c1540,3, 0x5c1550,17, 0x5c15a0,9, 0x5c1804,1, 0x5c180c,4, 0x5c1824,1, 0x5c182c,4, 0x5c1840,5, 0x5c1904,1, 0x5c1940,39, 0x5c1a00,7, 0x5c1a20,46, 0x5c1ae4,5, 0x5c1b04,5, 0x5c1b24,1, 0x5c1b2c,3, 0x5c1b44,1, 0x5c1b4c,3, 0x5c1b84,1, 0x5c1ba0,11, 0x5c1bd0,3, 0x5c1be0,1, 0x5c1c00,20, 0x5c1c80,4, 0x5c1cc0,9, 0x5c1d00,4, 0x5c1d20,5, 0x5c1d40,3, 0x5c1d50,17, 0x5c1da0,9, 0x5c2004,1, 0x5c200c,4, 0x5c2024,1, 0x5c202c,4, 0x5c2040,5, 0x5c2104,1, 0x5c2140,39, 0x5c2200,7, 0x5c2220,46, 0x5c22e4,5, 0x5c2304,5, 0x5c2324,1, 0x5c232c,3, 0x5c2344,1, 0x5c234c,3, 0x5c2384,1, 0x5c23a0,11, 0x5c23d0,3, 0x5c23e0,1, 0x5c2400,20, 0x5c2480,4, 0x5c24c0,9, 0x5c2500,4, 0x5c2520,5, 0x5c2540,3, 0x5c2550,17, 0x5c25a0,9, 0x5c2804,1, 0x5c280c,4, 0x5c2824,1, 0x5c282c,4, 0x5c2840,5, 0x5c2904,1, 0x5c2940,39, 0x5c2a00,7, 0x5c2a20,46, 0x5c2ae4,5, 0x5c2b04,5, 0x5c2b24,1, 0x5c2b2c,3, 0x5c2b44,1, 0x5c2b4c,3, 0x5c2b84,1, 0x5c2ba0,11, 0x5c2bd0,3, 0x5c2be0,1, 0x5c2c00,20, 0x5c2c80,4, 0x5c2cc0,9, 0x5c2d00,4, 0x5c2d20,5, 0x5c2d40,3, 0x5c2d50,17, 0x5c2da0,9, 0x5c3004,1, 0x5c300c,4, 0x5c3024,1, 0x5c302c,4, 0x5c3040,5, 0x5c3104,1, 0x5c3140,39, 0x5c3200,7, 0x5c3220,46, 0x5c32e4,5, 0x5c3304,5, 0x5c3324,1, 0x5c332c,3, 0x5c3344,1, 0x5c334c,3, 0x5c3384,1, 0x5c33a0,11, 0x5c33d0,3, 0x5c33e0,1, 0x5c3400,20, 0x5c3480,4, 0x5c34c0,9, 0x5c3500,4, 0x5c3520,5, 0x5c3540,3, 0x5c3550,17, 0x5c35a0,9, 0x5c3804,1, 0x5c380c,4, 0x5c3824,1, 0x5c382c,4, 0x5c3840,5, 0x5c3904,1, 0x5c3940,39, 0x5c3a00,7, 0x5c3a20,46, 0x5c3ae4,5, 0x5c3b04,5, 0x5c3b24,1, 0x5c3b2c,3, 0x5c3b44,1, 0x5c3b4c,3, 0x5c3b84,1, 0x5c3ba0,11, 0x5c3bd0,3, 0x5c3be0,1, 0x5c3c00,20, 0x5c3c80,4, 0x5c3cc0,9, 0x5c3d00,4, 0x5c3d20,5, 0x5c3d40,3, 0x5c3d50,17, 0x5c3da0,9, 0x5c4004,1, 0x5c400c,4, 0x5c4024,1, 0x5c402c,4, 0x5c4040,5, 0x5c4104,1, 0x5c4140,39, 0x5c4200,7, 0x5c4220,46, 0x5c42e4,5, 0x5c4304,5, 0x5c4324,1, 0x5c432c,3, 0x5c4344,1, 0x5c434c,3, 0x5c4384,1, 0x5c43a0,11, 0x5c43d0,3, 0x5c43e0,1, 0x5c4400,20, 0x5c4480,4, 0x5c44c0,9, 0x5c4500,4, 0x5c4520,5, 0x5c4540,3, 0x5c4550,17, 0x5c45a0,9, 0x5c4804,1, 0x5c480c,4, 0x5c4824,1, 0x5c482c,4, 0x5c4840,5, 0x5c4904,1, 0x5c4940,39, 0x5c4a00,7, 0x5c4a20,46, 0x5c4ae4,5, 0x5c4b04,5, 0x5c4b24,1, 0x5c4b2c,3, 0x5c4b44,1, 0x5c4b4c,3, 0x5c4b84,1, 0x5c4ba0,11, 0x5c4bd0,3, 0x5c4be0,1, 0x5c4c00,20, 0x5c4c80,4, 0x5c4cc0,9, 0x5c4d00,4, 0x5c4d20,5, 0x5c4d40,3, 0x5c4d50,17, 0x5c4da0,9, 0x5c5004,1, 0x5c500c,4, 0x5c5024,1, 0x5c502c,4, 0x5c5040,5, 0x5c5104,1, 0x5c5140,39, 0x5c5200,7, 0x5c5220,46, 0x5c52e4,5, 0x5c5304,5, 0x5c5324,1, 0x5c532c,3, 0x5c5344,1, 0x5c534c,3, 0x5c5384,1, 0x5c53a0,11, 0x5c53d0,3, 0x5c53e0,1, 0x5c5400,20, 0x5c5480,4, 0x5c54c0,9, 0x5c5500,4, 0x5c5520,5, 0x5c5540,3, 0x5c5550,17, 0x5c55a0,9, 0x5c5804,1, 0x5c580c,4, 0x5c5824,1, 0x5c582c,4, 0x5c5840,5, 0x5c5904,1, 0x5c5940,39, 0x5c5a00,7, 0x5c5a20,46, 0x5c5ae4,5, 0x5c5b04,5, 0x5c5b24,1, 0x5c5b2c,3, 0x5c5b44,1, 0x5c5b4c,3, 0x5c5b84,1, 0x5c5ba0,11, 0x5c5bd0,3, 0x5c5be0,1, 0x5c5c00,20, 0x5c5c80,4, 0x5c5cc0,9, 0x5c5d00,4, 0x5c5d20,5, 0x5c5d40,3, 0x5c5d50,17, 0x5c5da0,9, 0x5c6004,1, 0x5c600c,4, 0x5c6024,1, 0x5c602c,4, 0x5c6040,5, 0x5c6104,1, 0x5c6140,39, 0x5c6200,7, 0x5c6220,46, 0x5c62e4,5, 0x5c6304,5, 0x5c6324,1, 0x5c632c,3, 0x5c6344,1, 0x5c634c,3, 0x5c6384,1, 0x5c63a0,11, 0x5c63d0,3, 0x5c63e0,1, 0x5c6400,20, 0x5c6480,4, 0x5c64c0,9, 0x5c6500,4, 0x5c6520,5, 0x5c6540,3, 0x5c6550,17, 0x5c65a0,9, 0x5c6804,1, 0x5c680c,4, 0x5c6824,1, 0x5c682c,4, 0x5c6840,5, 0x5c6904,1, 0x5c6940,39, 0x5c6a00,7, 0x5c6a20,46, 0x5c6ae4,5, 0x5c6b04,5, 0x5c6b24,1, 0x5c6b2c,3, 0x5c6b44,1, 0x5c6b4c,3, 0x5c6b84,1, 0x5c6ba0,11, 0x5c6bd0,3, 0x5c6be0,1, 0x5c6c00,20, 0x5c6c80,4, 0x5c6cc0,9, 0x5c6d00,4, 0x5c6d20,5, 0x5c6d40,3, 0x5c6d50,17, 0x5c6da0,9, 0x5c7004,1, 0x5c700c,4, 0x5c7024,1, 0x5c702c,4, 0x5c7040,5, 0x5c7104,1, 0x5c7140,39, 0x5c7200,7, 0x5c7220,46, 0x5c72e4,5, 0x5c7304,5, 0x5c7324,1, 0x5c732c,3, 0x5c7344,1, 0x5c734c,3, 0x5c7384,1, 0x5c73a0,11, 0x5c73d0,3, 0x5c73e0,1, 0x5c7400,20, 0x5c7480,4, 0x5c74c0,9, 0x5c7500,4, 0x5c7520,5, 0x5c7540,3, 0x5c7550,17, 0x5c75a0,9, 0x5c7804,1, 0x5c780c,4, 0x5c7824,1, 0x5c782c,4, 0x5c7840,5, 0x5c7904,1, 0x5c7940,39, 0x5c7a00,7, 0x5c7a20,46, 0x5c7ae4,5, 0x5c7b04,5, 0x5c7b24,1, 0x5c7b2c,3, 0x5c7b44,1, 0x5c7b4c,3, 0x5c7b84,1, 0x5c7ba0,11, 0x5c7bd0,3, 0x5c7be0,1, 0x5c7c00,20, 0x5c7c80,4, 0x5c7cc0,9, 0x5c7d00,4, 0x5c7d20,5, 0x5c7d40,3, 0x5c7d50,17, 0x5c7da0,9, 0x5c8004,1, 0x5c800c,4, 0x5c8024,1, 0x5c802c,4, 0x5c8040,5, 0x5c8104,1, 0x5c8140,39, 0x5c8200,7, 0x5c8220,46, 0x5c82e4,5, 0x5c8304,5, 0x5c8324,1, 0x5c832c,3, 0x5c8344,1, 0x5c834c,3, 0x5c8384,1, 0x5c83a0,11, 0x5c83d0,3, 0x5c83e0,1, 0x5c8400,20, 0x5c8480,4, 0x5c84c0,9, 0x5c8500,4, 0x5c8520,5, 0x5c8540,3, 0x5c8550,17, 0x5c85a0,9, 0x5c9000,137, 0x5c9400,118, 0x5c95e4,5, 0x5c9604,5, 0x5c9624,1, 0x5c962c,3, 0x5c9644,1, 0x5c964c,3, 0x5c9664,1, 0x5c966c,15, 0x5c96b0,12, 0x5c9700,20, 0x5c9780,4, 0x5c97c0,9, 0x5c9800,19, 0x5ca000,20, 0x5ca080,2, 0x5ca090,3, 0x5ca200,26, 0x5ca280,4, 0x5ca2c0,25, 0x5ca340,6, 0x5ca360,1, 0x5ca368,2, 0x5ca374,11, 0x5ca3a4,10, 0x5ca400,4, 0x5d0004,1, 0x5d000c,4, 0x5d0024,1, 0x5d002c,4, 0x5d0040,5, 0x5d0104,1, 0x5d0140,39, 0x5d0200,7, 0x5d0220,46, 0x5d02e4,5, 0x5d0304,5, 0x5d0324,1, 0x5d032c,3, 0x5d0344,1, 0x5d034c,3, 0x5d0384,1, 0x5d03a0,11, 0x5d03d0,3, 0x5d03e0,1, 0x5d0400,20, 0x5d0480,4, 0x5d04c0,9, 0x5d0500,4, 0x5d0520,5, 0x5d0540,3, 0x5d0550,17, 0x5d05a0,9, 0x5d0804,1, 0x5d080c,4, 0x5d0824,1, 0x5d082c,4, 0x5d0840,5, 0x5d0904,1, 0x5d0940,39, 0x5d0a00,7, 0x5d0a20,46, 0x5d0ae4,5, 0x5d0b04,5, 0x5d0b24,1, 0x5d0b2c,3, 0x5d0b44,1, 0x5d0b4c,3, 0x5d0b84,1, 0x5d0ba0,11, 0x5d0bd0,3, 0x5d0be0,1, 0x5d0c00,20, 0x5d0c80,4, 0x5d0cc0,9, 0x5d0d00,4, 0x5d0d20,5, 0x5d0d40,3, 0x5d0d50,17, 0x5d0da0,9, 0x5d1004,1, 0x5d100c,4, 0x5d1024,1, 0x5d102c,4, 0x5d1040,5, 0x5d1104,1, 0x5d1140,39, 0x5d1200,7, 0x5d1220,46, 0x5d12e4,5, 0x5d1304,5, 0x5d1324,1, 0x5d132c,3, 0x5d1344,1, 0x5d134c,3, 0x5d1384,1, 0x5d13a0,11, 0x5d13d0,3, 0x5d13e0,1, 0x5d1400,20, 0x5d1480,4, 0x5d14c0,9, 0x5d1500,4, 0x5d1520,5, 0x5d1540,3, 0x5d1550,17, 0x5d15a0,9, 0x5d1804,1, 0x5d180c,4, 0x5d1824,1, 0x5d182c,4, 0x5d1840,5, 0x5d1904,1, 0x5d1940,39, 0x5d1a00,7, 0x5d1a20,46, 0x5d1ae4,5, 0x5d1b04,5, 0x5d1b24,1, 0x5d1b2c,3, 0x5d1b44,1, 0x5d1b4c,3, 0x5d1b84,1, 0x5d1ba0,11, 0x5d1bd0,3, 0x5d1be0,1, 0x5d1c00,20, 0x5d1c80,4, 0x5d1cc0,9, 0x5d1d00,4, 0x5d1d20,5, 0x5d1d40,3, 0x5d1d50,17, 0x5d1da0,9, 0x5d2004,1, 0x5d200c,4, 0x5d2024,1, 0x5d202c,4, 0x5d2040,5, 0x5d2104,1, 0x5d2140,39, 0x5d2200,7, 0x5d2220,46, 0x5d22e4,5, 0x5d2304,5, 0x5d2324,1, 0x5d232c,3, 0x5d2344,1, 0x5d234c,3, 0x5d2384,1, 0x5d23a0,11, 0x5d23d0,3, 0x5d23e0,1, 0x5d2400,20, 0x5d2480,4, 0x5d24c0,9, 0x5d2500,4, 0x5d2520,5, 0x5d2540,3, 0x5d2550,17, 0x5d25a0,9, 0x5d2804,1, 0x5d280c,4, 0x5d2824,1, 0x5d282c,4, 0x5d2840,5, 0x5d2904,1, 0x5d2940,39, 0x5d2a00,7, 0x5d2a20,46, 0x5d2ae4,5, 0x5d2b04,5, 0x5d2b24,1, 0x5d2b2c,3, 0x5d2b44,1, 0x5d2b4c,3, 0x5d2b84,1, 0x5d2ba0,11, 0x5d2bd0,3, 0x5d2be0,1, 0x5d2c00,20, 0x5d2c80,4, 0x5d2cc0,9, 0x5d2d00,4, 0x5d2d20,5, 0x5d2d40,3, 0x5d2d50,17, 0x5d2da0,9, 0x5d3004,1, 0x5d300c,4, 0x5d3024,1, 0x5d302c,4, 0x5d3040,5, 0x5d3104,1, 0x5d3140,39, 0x5d3200,7, 0x5d3220,46, 0x5d32e4,5, 0x5d3304,5, 0x5d3324,1, 0x5d332c,3, 0x5d3344,1, 0x5d334c,3, 0x5d3384,1, 0x5d33a0,11, 0x5d33d0,3, 0x5d33e0,1, 0x5d3400,20, 0x5d3480,4, 0x5d34c0,9, 0x5d3500,4, 0x5d3520,5, 0x5d3540,3, 0x5d3550,17, 0x5d35a0,9, 0x5d3804,1, 0x5d380c,4, 0x5d3824,1, 0x5d382c,4, 0x5d3840,5, 0x5d3904,1, 0x5d3940,39, 0x5d3a00,7, 0x5d3a20,46, 0x5d3ae4,5, 0x5d3b04,5, 0x5d3b24,1, 0x5d3b2c,3, 0x5d3b44,1, 0x5d3b4c,3, 0x5d3b84,1, 0x5d3ba0,11, 0x5d3bd0,3, 0x5d3be0,1, 0x5d3c00,20, 0x5d3c80,4, 0x5d3cc0,9, 0x5d3d00,4, 0x5d3d20,5, 0x5d3d40,3, 0x5d3d50,17, 0x5d3da0,9, 0x5d4004,1, 0x5d400c,4, 0x5d4024,1, 0x5d402c,4, 0x5d4040,5, 0x5d4104,1, 0x5d4140,39, 0x5d4200,7, 0x5d4220,46, 0x5d42e4,5, 0x5d4304,5, 0x5d4324,1, 0x5d432c,3, 0x5d4344,1, 0x5d434c,3, 0x5d4384,1, 0x5d43a0,11, 0x5d43d0,3, 0x5d43e0,1, 0x5d4400,20, 0x5d4480,4, 0x5d44c0,9, 0x5d4500,4, 0x5d4520,5, 0x5d4540,3, 0x5d4550,17, 0x5d45a0,9, 0x5d4804,1, 0x5d480c,4, 0x5d4824,1, 0x5d482c,4, 0x5d4840,5, 0x5d4904,1, 0x5d4940,39, 0x5d4a00,7, 0x5d4a20,46, 0x5d4ae4,5, 0x5d4b04,5, 0x5d4b24,1, 0x5d4b2c,3, 0x5d4b44,1, 0x5d4b4c,3, 0x5d4b84,1, 0x5d4ba0,11, 0x5d4bd0,3, 0x5d4be0,1, 0x5d4c00,20, 0x5d4c80,4, 0x5d4cc0,9, 0x5d4d00,4, 0x5d4d20,5, 0x5d4d40,3, 0x5d4d50,17, 0x5d4da0,9, 0x5d5004,1, 0x5d500c,4, 0x5d5024,1, 0x5d502c,4, 0x5d5040,5, 0x5d5104,1, 0x5d5140,39, 0x5d5200,7, 0x5d5220,46, 0x5d52e4,5, 0x5d5304,5, 0x5d5324,1, 0x5d532c,3, 0x5d5344,1, 0x5d534c,3, 0x5d5384,1, 0x5d53a0,11, 0x5d53d0,3, 0x5d53e0,1, 0x5d5400,20, 0x5d5480,4, 0x5d54c0,9, 0x5d5500,4, 0x5d5520,5, 0x5d5540,3, 0x5d5550,17, 0x5d55a0,9, 0x5d5804,1, 0x5d580c,4, 0x5d5824,1, 0x5d582c,4, 0x5d5840,5, 0x5d5904,1, 0x5d5940,39, 0x5d5a00,7, 0x5d5a20,46, 0x5d5ae4,5, 0x5d5b04,5, 0x5d5b24,1, 0x5d5b2c,3, 0x5d5b44,1, 0x5d5b4c,3, 0x5d5b84,1, 0x5d5ba0,11, 0x5d5bd0,3, 0x5d5be0,1, 0x5d5c00,20, 0x5d5c80,4, 0x5d5cc0,9, 0x5d5d00,4, 0x5d5d20,5, 0x5d5d40,3, 0x5d5d50,17, 0x5d5da0,9, 0x5d6004,1, 0x5d600c,4, 0x5d6024,1, 0x5d602c,4, 0x5d6040,5, 0x5d6104,1, 0x5d6140,39, 0x5d6200,7, 0x5d6220,46, 0x5d62e4,5, 0x5d6304,5, 0x5d6324,1, 0x5d632c,3, 0x5d6344,1, 0x5d634c,3, 0x5d6384,1, 0x5d63a0,11, 0x5d63d0,3, 0x5d63e0,1, 0x5d6400,20, 0x5d6480,4, 0x5d64c0,9, 0x5d6500,4, 0x5d6520,5, 0x5d6540,3, 0x5d6550,17, 0x5d65a0,9, 0x5d6804,1, 0x5d680c,4, 0x5d6824,1, 0x5d682c,4, 0x5d6840,5, 0x5d6904,1, 0x5d6940,39, 0x5d6a00,7, 0x5d6a20,46, 0x5d6ae4,5, 0x5d6b04,5, 0x5d6b24,1, 0x5d6b2c,3, 0x5d6b44,1, 0x5d6b4c,3, 0x5d6b84,1, 0x5d6ba0,11, 0x5d6bd0,3, 0x5d6be0,1, 0x5d6c00,20, 0x5d6c80,4, 0x5d6cc0,9, 0x5d6d00,4, 0x5d6d20,5, 0x5d6d40,3, 0x5d6d50,17, 0x5d6da0,9, 0x5d7004,1, 0x5d700c,4, 0x5d7024,1, 0x5d702c,4, 0x5d7040,5, 0x5d7104,1, 0x5d7140,39, 0x5d7200,7, 0x5d7220,46, 0x5d72e4,5, 0x5d7304,5, 0x5d7324,1, 0x5d732c,3, 0x5d7344,1, 0x5d734c,3, 0x5d7384,1, 0x5d73a0,11, 0x5d73d0,3, 0x5d73e0,1, 0x5d7400,20, 0x5d7480,4, 0x5d74c0,9, 0x5d7500,4, 0x5d7520,5, 0x5d7540,3, 0x5d7550,17, 0x5d75a0,9, 0x5d7804,1, 0x5d780c,4, 0x5d7824,1, 0x5d782c,4, 0x5d7840,5, 0x5d7904,1, 0x5d7940,39, 0x5d7a00,7, 0x5d7a20,46, 0x5d7ae4,5, 0x5d7b04,5, 0x5d7b24,1, 0x5d7b2c,3, 0x5d7b44,1, 0x5d7b4c,3, 0x5d7b84,1, 0x5d7ba0,11, 0x5d7bd0,3, 0x5d7be0,1, 0x5d7c00,20, 0x5d7c80,4, 0x5d7cc0,9, 0x5d7d00,4, 0x5d7d20,5, 0x5d7d40,3, 0x5d7d50,17, 0x5d7da0,9, 0x5d8004,1, 0x5d800c,4, 0x5d8024,1, 0x5d802c,4, 0x5d8040,5, 0x5d8104,1, 0x5d8140,39, 0x5d8200,7, 0x5d8220,46, 0x5d82e4,5, 0x5d8304,5, 0x5d8324,1, 0x5d832c,3, 0x5d8344,1, 0x5d834c,3, 0x5d8384,1, 0x5d83a0,11, 0x5d83d0,3, 0x5d83e0,1, 0x5d8400,20, 0x5d8480,4, 0x5d84c0,9, 0x5d8500,4, 0x5d8520,5, 0x5d8540,3, 0x5d8550,17, 0x5d85a0,9, 0x5d9000,137, 0x5d9400,118, 0x5d95e4,5, 0x5d9604,5, 0x5d9624,1, 0x5d962c,3, 0x5d9644,1, 0x5d964c,3, 0x5d9664,1, 0x5d966c,15, 0x5d96b0,12, 0x5d9700,20, 0x5d9780,4, 0x5d97c0,9, 0x5d9800,19, 0x5da000,20, 0x5da080,2, 0x5da090,3, 0x5da200,26, 0x5da280,4, 0x5da2c0,25, 0x5da340,6, 0x5da360,1, 0x5da368,2, 0x5da374,11, 0x5da3a4,10, 0x5da400,4, 0x5e0004,1, 0x5e000c,4, 0x5e0024,1, 0x5e002c,4, 0x5e0040,5, 0x5e0104,1, 0x5e0140,39, 0x5e0200,7, 0x5e0220,46, 0x5e02e4,5, 0x5e0304,5, 0x5e0324,1, 0x5e032c,3, 0x5e0344,1, 0x5e034c,3, 0x5e0384,1, 0x5e03a0,11, 0x5e03d0,3, 0x5e03e0,1, 0x5e0400,20, 0x5e0480,4, 0x5e04c0,9, 0x5e0500,4, 0x5e0520,5, 0x5e0540,3, 0x5e0550,17, 0x5e05a0,9, 0x5e0804,1, 0x5e080c,4, 0x5e0824,1, 0x5e082c,4, 0x5e0840,5, 0x5e0904,1, 0x5e0940,39, 0x5e0a00,7, 0x5e0a20,46, 0x5e0ae4,5, 0x5e0b04,5, 0x5e0b24,1, 0x5e0b2c,3, 0x5e0b44,1, 0x5e0b4c,3, 0x5e0b84,1, 0x5e0ba0,11, 0x5e0bd0,3, 0x5e0be0,1, 0x5e0c00,20, 0x5e0c80,4, 0x5e0cc0,9, 0x5e0d00,4, 0x5e0d20,5, 0x5e0d40,3, 0x5e0d50,17, 0x5e0da0,9, 0x5e1004,1, 0x5e100c,4, 0x5e1024,1, 0x5e102c,4, 0x5e1040,5, 0x5e1104,1, 0x5e1140,39, 0x5e1200,7, 0x5e1220,46, 0x5e12e4,5, 0x5e1304,5, 0x5e1324,1, 0x5e132c,3, 0x5e1344,1, 0x5e134c,3, 0x5e1384,1, 0x5e13a0,11, 0x5e13d0,3, 0x5e13e0,1, 0x5e1400,20, 0x5e1480,4, 0x5e14c0,9, 0x5e1500,4, 0x5e1520,5, 0x5e1540,3, 0x5e1550,17, 0x5e15a0,9, 0x5e1804,1, 0x5e180c,4, 0x5e1824,1, 0x5e182c,4, 0x5e1840,5, 0x5e1904,1, 0x5e1940,39, 0x5e1a00,7, 0x5e1a20,46, 0x5e1ae4,5, 0x5e1b04,5, 0x5e1b24,1, 0x5e1b2c,3, 0x5e1b44,1, 0x5e1b4c,3, 0x5e1b84,1, 0x5e1ba0,11, 0x5e1bd0,3, 0x5e1be0,1, 0x5e1c00,20, 0x5e1c80,4, 0x5e1cc0,9, 0x5e1d00,4, 0x5e1d20,5, 0x5e1d40,3, 0x5e1d50,17, 0x5e1da0,9, 0x5e2004,1, 0x5e200c,4, 0x5e2024,1, 0x5e202c,4, 0x5e2040,5, 0x5e2104,1, 0x5e2140,39, 0x5e2200,7, 0x5e2220,46, 0x5e22e4,5, 0x5e2304,5, 0x5e2324,1, 0x5e232c,3, 0x5e2344,1, 0x5e234c,3, 0x5e2384,1, 0x5e23a0,11, 0x5e23d0,3, 0x5e23e0,1, 0x5e2400,20, 0x5e2480,4, 0x5e24c0,9, 0x5e2500,4, 0x5e2520,5, 0x5e2540,3, 0x5e2550,17, 0x5e25a0,9, 0x5e2804,1, 0x5e280c,4, 0x5e2824,1, 0x5e282c,4, 0x5e2840,5, 0x5e2904,1, 0x5e2940,39, 0x5e2a00,7, 0x5e2a20,46, 0x5e2ae4,5, 0x5e2b04,5, 0x5e2b24,1, 0x5e2b2c,3, 0x5e2b44,1, 0x5e2b4c,3, 0x5e2b84,1, 0x5e2ba0,11, 0x5e2bd0,3, 0x5e2be0,1, 0x5e2c00,20, 0x5e2c80,4, 0x5e2cc0,9, 0x5e2d00,4, 0x5e2d20,5, 0x5e2d40,3, 0x5e2d50,17, 0x5e2da0,9, 0x5e3004,1, 0x5e300c,4, 0x5e3024,1, 0x5e302c,4, 0x5e3040,5, 0x5e3104,1, 0x5e3140,39, 0x5e3200,7, 0x5e3220,46, 0x5e32e4,5, 0x5e3304,5, 0x5e3324,1, 0x5e332c,3, 0x5e3344,1, 0x5e334c,3, 0x5e3384,1, 0x5e33a0,11, 0x5e33d0,3, 0x5e33e0,1, 0x5e3400,20, 0x5e3480,4, 0x5e34c0,9, 0x5e3500,4, 0x5e3520,5, 0x5e3540,3, 0x5e3550,17, 0x5e35a0,9, 0x5e3804,1, 0x5e380c,4, 0x5e3824,1, 0x5e382c,4, 0x5e3840,5, 0x5e3904,1, 0x5e3940,39, 0x5e3a00,7, 0x5e3a20,46, 0x5e3ae4,5, 0x5e3b04,5, 0x5e3b24,1, 0x5e3b2c,3, 0x5e3b44,1, 0x5e3b4c,3, 0x5e3b84,1, 0x5e3ba0,11, 0x5e3bd0,3, 0x5e3be0,1, 0x5e3c00,20, 0x5e3c80,4, 0x5e3cc0,9, 0x5e3d00,4, 0x5e3d20,5, 0x5e3d40,3, 0x5e3d50,17, 0x5e3da0,9, 0x5e4004,1, 0x5e400c,4, 0x5e4024,1, 0x5e402c,4, 0x5e4040,5, 0x5e4104,1, 0x5e4140,39, 0x5e4200,7, 0x5e4220,46, 0x5e42e4,5, 0x5e4304,5, 0x5e4324,1, 0x5e432c,3, 0x5e4344,1, 0x5e434c,3, 0x5e4384,1, 0x5e43a0,11, 0x5e43d0,3, 0x5e43e0,1, 0x5e4400,20, 0x5e4480,4, 0x5e44c0,9, 0x5e4500,4, 0x5e4520,5, 0x5e4540,3, 0x5e4550,17, 0x5e45a0,9, 0x5e4804,1, 0x5e480c,4, 0x5e4824,1, 0x5e482c,4, 0x5e4840,5, 0x5e4904,1, 0x5e4940,39, 0x5e4a00,7, 0x5e4a20,46, 0x5e4ae4,5, 0x5e4b04,5, 0x5e4b24,1, 0x5e4b2c,3, 0x5e4b44,1, 0x5e4b4c,3, 0x5e4b84,1, 0x5e4ba0,11, 0x5e4bd0,3, 0x5e4be0,1, 0x5e4c00,20, 0x5e4c80,4, 0x5e4cc0,9, 0x5e4d00,4, 0x5e4d20,5, 0x5e4d40,3, 0x5e4d50,17, 0x5e4da0,9, 0x5e5004,1, 0x5e500c,4, 0x5e5024,1, 0x5e502c,4, 0x5e5040,5, 0x5e5104,1, 0x5e5140,39, 0x5e5200,7, 0x5e5220,46, 0x5e52e4,5, 0x5e5304,5, 0x5e5324,1, 0x5e532c,3, 0x5e5344,1, 0x5e534c,3, 0x5e5384,1, 0x5e53a0,11, 0x5e53d0,3, 0x5e53e0,1, 0x5e5400,20, 0x5e5480,4, 0x5e54c0,9, 0x5e5500,4, 0x5e5520,5, 0x5e5540,3, 0x5e5550,17, 0x5e55a0,9, 0x5e5804,1, 0x5e580c,4, 0x5e5824,1, 0x5e582c,4, 0x5e5840,5, 0x5e5904,1, 0x5e5940,39, 0x5e5a00,7, 0x5e5a20,46, 0x5e5ae4,5, 0x5e5b04,5, 0x5e5b24,1, 0x5e5b2c,3, 0x5e5b44,1, 0x5e5b4c,3, 0x5e5b84,1, 0x5e5ba0,11, 0x5e5bd0,3, 0x5e5be0,1, 0x5e5c00,20, 0x5e5c80,4, 0x5e5cc0,9, 0x5e5d00,4, 0x5e5d20,5, 0x5e5d40,3, 0x5e5d50,17, 0x5e5da0,9, 0x5e6004,1, 0x5e600c,4, 0x5e6024,1, 0x5e602c,4, 0x5e6040,5, 0x5e6104,1, 0x5e6140,39, 0x5e6200,7, 0x5e6220,46, 0x5e62e4,5, 0x5e6304,5, 0x5e6324,1, 0x5e632c,3, 0x5e6344,1, 0x5e634c,3, 0x5e6384,1, 0x5e63a0,11, 0x5e63d0,3, 0x5e63e0,1, 0x5e6400,20, 0x5e6480,4, 0x5e64c0,9, 0x5e6500,4, 0x5e6520,5, 0x5e6540,3, 0x5e6550,17, 0x5e65a0,9, 0x5e6804,1, 0x5e680c,4, 0x5e6824,1, 0x5e682c,4, 0x5e6840,5, 0x5e6904,1, 0x5e6940,39, 0x5e6a00,7, 0x5e6a20,46, 0x5e6ae4,5, 0x5e6b04,5, 0x5e6b24,1, 0x5e6b2c,3, 0x5e6b44,1, 0x5e6b4c,3, 0x5e6b84,1, 0x5e6ba0,11, 0x5e6bd0,3, 0x5e6be0,1, 0x5e6c00,20, 0x5e6c80,4, 0x5e6cc0,9, 0x5e6d00,4, 0x5e6d20,5, 0x5e6d40,3, 0x5e6d50,17, 0x5e6da0,9, 0x5e7004,1, 0x5e700c,4, 0x5e7024,1, 0x5e702c,4, 0x5e7040,5, 0x5e7104,1, 0x5e7140,39, 0x5e7200,7, 0x5e7220,46, 0x5e72e4,5, 0x5e7304,5, 0x5e7324,1, 0x5e732c,3, 0x5e7344,1, 0x5e734c,3, 0x5e7384,1, 0x5e73a0,11, 0x5e73d0,3, 0x5e73e0,1, 0x5e7400,20, 0x5e7480,4, 0x5e74c0,9, 0x5e7500,4, 0x5e7520,5, 0x5e7540,3, 0x5e7550,17, 0x5e75a0,9, 0x5e7804,1, 0x5e780c,4, 0x5e7824,1, 0x5e782c,4, 0x5e7840,5, 0x5e7904,1, 0x5e7940,39, 0x5e7a00,7, 0x5e7a20,46, 0x5e7ae4,5, 0x5e7b04,5, 0x5e7b24,1, 0x5e7b2c,3, 0x5e7b44,1, 0x5e7b4c,3, 0x5e7b84,1, 0x5e7ba0,11, 0x5e7bd0,3, 0x5e7be0,1, 0x5e7c00,20, 0x5e7c80,4, 0x5e7cc0,9, 0x5e7d00,4, 0x5e7d20,5, 0x5e7d40,3, 0x5e7d50,17, 0x5e7da0,9, 0x5e8004,1, 0x5e800c,4, 0x5e8024,1, 0x5e802c,4, 0x5e8040,5, 0x5e8104,1, 0x5e8140,39, 0x5e8200,7, 0x5e8220,46, 0x5e82e4,5, 0x5e8304,5, 0x5e8324,1, 0x5e832c,3, 0x5e8344,1, 0x5e834c,3, 0x5e8384,1, 0x5e83a0,11, 0x5e83d0,3, 0x5e83e0,1, 0x5e8400,20, 0x5e8480,4, 0x5e84c0,9, 0x5e8500,4, 0x5e8520,5, 0x5e8540,3, 0x5e8550,17, 0x5e85a0,9, 0x5e9000,137, 0x5e9400,118, 0x5e95e4,5, 0x5e9604,5, 0x5e9624,1, 0x5e962c,3, 0x5e9644,1, 0x5e964c,3, 0x5e9664,1, 0x5e966c,15, 0x5e96b0,12, 0x5e9700,20, 0x5e9780,4, 0x5e97c0,9, 0x5e9800,19, 0x5ea000,20, 0x5ea080,2, 0x5ea090,3, 0x5ea200,26, 0x5ea280,4, 0x5ea2c0,25, 0x5ea340,6, 0x5ea360,1, 0x5ea368,2, 0x5ea374,11, 0x5ea3a4,10, 0x5ea400,4, 0x5f0004,1, 0x5f000c,4, 0x5f0024,1, 0x5f002c,4, 0x5f0040,5, 0x5f0104,1, 0x5f0140,39, 0x5f0200,7, 0x5f0220,46, 0x5f02e4,5, 0x5f0304,5, 0x5f0324,1, 0x5f032c,3, 0x5f0344,1, 0x5f034c,3, 0x5f0384,1, 0x5f03a0,11, 0x5f03d0,3, 0x5f03e0,1, 0x5f0400,20, 0x5f0480,4, 0x5f04c0,9, 0x5f0500,4, 0x5f0520,5, 0x5f0540,3, 0x5f0550,17, 0x5f05a0,9, 0x5f0804,1, 0x5f080c,4, 0x5f0824,1, 0x5f082c,4, 0x5f0840,5, 0x5f0904,1, 0x5f0940,39, 0x5f0a00,7, 0x5f0a20,46, 0x5f0ae4,5, 0x5f0b04,5, 0x5f0b24,1, 0x5f0b2c,3, 0x5f0b44,1, 0x5f0b4c,3, 0x5f0b84,1, 0x5f0ba0,11, 0x5f0bd0,3, 0x5f0be0,1, 0x5f0c00,20, 0x5f0c80,4, 0x5f0cc0,9, 0x5f0d00,4, 0x5f0d20,5, 0x5f0d40,3, 0x5f0d50,17, 0x5f0da0,9, 0x5f1004,1, 0x5f100c,4, 0x5f1024,1, 0x5f102c,4, 0x5f1040,5, 0x5f1104,1, 0x5f1140,39, 0x5f1200,7, 0x5f1220,46, 0x5f12e4,5, 0x5f1304,5, 0x5f1324,1, 0x5f132c,3, 0x5f1344,1, 0x5f134c,3, 0x5f1384,1, 0x5f13a0,11, 0x5f13d0,3, 0x5f13e0,1, 0x5f1400,20, 0x5f1480,4, 0x5f14c0,9, 0x5f1500,4, 0x5f1520,5, 0x5f1540,3, 0x5f1550,17, 0x5f15a0,9, 0x5f1804,1, 0x5f180c,4, 0x5f1824,1, 0x5f182c,4, 0x5f1840,5, 0x5f1904,1, 0x5f1940,39, 0x5f1a00,7, 0x5f1a20,46, 0x5f1ae4,5, 0x5f1b04,5, 0x5f1b24,1, 0x5f1b2c,3, 0x5f1b44,1, 0x5f1b4c,3, 0x5f1b84,1, 0x5f1ba0,11, 0x5f1bd0,3, 0x5f1be0,1, 0x5f1c00,20, 0x5f1c80,4, 0x5f1cc0,9, 0x5f1d00,4, 0x5f1d20,5, 0x5f1d40,3, 0x5f1d50,17, 0x5f1da0,9, 0x5f2004,1, 0x5f200c,4, 0x5f2024,1, 0x5f202c,4, 0x5f2040,5, 0x5f2104,1, 0x5f2140,39, 0x5f2200,7, 0x5f2220,46, 0x5f22e4,5, 0x5f2304,5, 0x5f2324,1, 0x5f232c,3, 0x5f2344,1, 0x5f234c,3, 0x5f2384,1, 0x5f23a0,11, 0x5f23d0,3, 0x5f23e0,1, 0x5f2400,20, 0x5f2480,4, 0x5f24c0,9, 0x5f2500,4, 0x5f2520,5, 0x5f2540,3, 0x5f2550,17, 0x5f25a0,9, 0x5f2804,1, 0x5f280c,4, 0x5f2824,1, 0x5f282c,4, 0x5f2840,5, 0x5f2904,1, 0x5f2940,39, 0x5f2a00,7, 0x5f2a20,46, 0x5f2ae4,5, 0x5f2b04,5, 0x5f2b24,1, 0x5f2b2c,3, 0x5f2b44,1, 0x5f2b4c,3, 0x5f2b84,1, 0x5f2ba0,11, 0x5f2bd0,3, 0x5f2be0,1, 0x5f2c00,20, 0x5f2c80,4, 0x5f2cc0,9, 0x5f2d00,4, 0x5f2d20,5, 0x5f2d40,3, 0x5f2d50,17, 0x5f2da0,9, 0x5f3004,1, 0x5f300c,4, 0x5f3024,1, 0x5f302c,4, 0x5f3040,5, 0x5f3104,1, 0x5f3140,39, 0x5f3200,7, 0x5f3220,46, 0x5f32e4,5, 0x5f3304,5, 0x5f3324,1, 0x5f332c,3, 0x5f3344,1, 0x5f334c,3, 0x5f3384,1, 0x5f33a0,11, 0x5f33d0,3, 0x5f33e0,1, 0x5f3400,20, 0x5f3480,4, 0x5f34c0,9, 0x5f3500,4, 0x5f3520,5, 0x5f3540,3, 0x5f3550,17, 0x5f35a0,9, 0x5f3804,1, 0x5f380c,4, 0x5f3824,1, 0x5f382c,4, 0x5f3840,5, 0x5f3904,1, 0x5f3940,39, 0x5f3a00,7, 0x5f3a20,46, 0x5f3ae4,5, 0x5f3b04,5, 0x5f3b24,1, 0x5f3b2c,3, 0x5f3b44,1, 0x5f3b4c,3, 0x5f3b84,1, 0x5f3ba0,11, 0x5f3bd0,3, 0x5f3be0,1, 0x5f3c00,20, 0x5f3c80,4, 0x5f3cc0,9, 0x5f3d00,4, 0x5f3d20,5, 0x5f3d40,3, 0x5f3d50,17, 0x5f3da0,9, 0x5f4004,1, 0x5f400c,4, 0x5f4024,1, 0x5f402c,4, 0x5f4040,5, 0x5f4104,1, 0x5f4140,39, 0x5f4200,7, 0x5f4220,46, 0x5f42e4,5, 0x5f4304,5, 0x5f4324,1, 0x5f432c,3, 0x5f4344,1, 0x5f434c,3, 0x5f4384,1, 0x5f43a0,11, 0x5f43d0,3, 0x5f43e0,1, 0x5f4400,20, 0x5f4480,4, 0x5f44c0,9, 0x5f4500,4, 0x5f4520,5, 0x5f4540,3, 0x5f4550,17, 0x5f45a0,9, 0x5f4804,1, 0x5f480c,4, 0x5f4824,1, 0x5f482c,4, 0x5f4840,5, 0x5f4904,1, 0x5f4940,39, 0x5f4a00,7, 0x5f4a20,46, 0x5f4ae4,5, 0x5f4b04,5, 0x5f4b24,1, 0x5f4b2c,3, 0x5f4b44,1, 0x5f4b4c,3, 0x5f4b84,1, 0x5f4ba0,11, 0x5f4bd0,3, 0x5f4be0,1, 0x5f4c00,20, 0x5f4c80,4, 0x5f4cc0,9, 0x5f4d00,4, 0x5f4d20,5, 0x5f4d40,3, 0x5f4d50,17, 0x5f4da0,9, 0x5f5004,1, 0x5f500c,4, 0x5f5024,1, 0x5f502c,4, 0x5f5040,5, 0x5f5104,1, 0x5f5140,39, 0x5f5200,7, 0x5f5220,46, 0x5f52e4,5, 0x5f5304,5, 0x5f5324,1, 0x5f532c,3, 0x5f5344,1, 0x5f534c,3, 0x5f5384,1, 0x5f53a0,11, 0x5f53d0,3, 0x5f53e0,1, 0x5f5400,20, 0x5f5480,4, 0x5f54c0,9, 0x5f5500,4, 0x5f5520,5, 0x5f5540,3, 0x5f5550,17, 0x5f55a0,9, 0x5f5804,1, 0x5f580c,4, 0x5f5824,1, 0x5f582c,4, 0x5f5840,5, 0x5f5904,1, 0x5f5940,39, 0x5f5a00,7, 0x5f5a20,46, 0x5f5ae4,5, 0x5f5b04,5, 0x5f5b24,1, 0x5f5b2c,3, 0x5f5b44,1, 0x5f5b4c,3, 0x5f5b84,1, 0x5f5ba0,11, 0x5f5bd0,3, 0x5f5be0,1, 0x5f5c00,20, 0x5f5c80,4, 0x5f5cc0,9, 0x5f5d00,4, 0x5f5d20,5, 0x5f5d40,3, 0x5f5d50,17, 0x5f5da0,9, 0x5f6004,1, 0x5f600c,4, 0x5f6024,1, 0x5f602c,4, 0x5f6040,5, 0x5f6104,1, 0x5f6140,39, 0x5f6200,7, 0x5f6220,46, 0x5f62e4,5, 0x5f6304,5, 0x5f6324,1, 0x5f632c,3, 0x5f6344,1, 0x5f634c,3, 0x5f6384,1, 0x5f63a0,11, 0x5f63d0,3, 0x5f63e0,1, 0x5f6400,20, 0x5f6480,4, 0x5f64c0,9, 0x5f6500,4, 0x5f6520,5, 0x5f6540,3, 0x5f6550,17, 0x5f65a0,9, 0x5f6804,1, 0x5f680c,4, 0x5f6824,1, 0x5f682c,4, 0x5f6840,5, 0x5f6904,1, 0x5f6940,39, 0x5f6a00,7, 0x5f6a20,46, 0x5f6ae4,5, 0x5f6b04,5, 0x5f6b24,1, 0x5f6b2c,3, 0x5f6b44,1, 0x5f6b4c,3, 0x5f6b84,1, 0x5f6ba0,11, 0x5f6bd0,3, 0x5f6be0,1, 0x5f6c00,20, 0x5f6c80,4, 0x5f6cc0,9, 0x5f6d00,4, 0x5f6d20,5, 0x5f6d40,3, 0x5f6d50,17, 0x5f6da0,9, 0x5f7004,1, 0x5f700c,4, 0x5f7024,1, 0x5f702c,4, 0x5f7040,5, 0x5f7104,1, 0x5f7140,39, 0x5f7200,7, 0x5f7220,46, 0x5f72e4,5, 0x5f7304,5, 0x5f7324,1, 0x5f732c,3, 0x5f7344,1, 0x5f734c,3, 0x5f7384,1, 0x5f73a0,11, 0x5f73d0,3, 0x5f73e0,1, 0x5f7400,20, 0x5f7480,4, 0x5f74c0,9, 0x5f7500,4, 0x5f7520,5, 0x5f7540,3, 0x5f7550,17, 0x5f75a0,9, 0x5f7804,1, 0x5f780c,4, 0x5f7824,1, 0x5f782c,4, 0x5f7840,5, 0x5f7904,1, 0x5f7940,39, 0x5f7a00,7, 0x5f7a20,46, 0x5f7ae4,5, 0x5f7b04,5, 0x5f7b24,1, 0x5f7b2c,3, 0x5f7b44,1, 0x5f7b4c,3, 0x5f7b84,1, 0x5f7ba0,11, 0x5f7bd0,3, 0x5f7be0,1, 0x5f7c00,20, 0x5f7c80,4, 0x5f7cc0,9, 0x5f7d00,4, 0x5f7d20,5, 0x5f7d40,3, 0x5f7d50,17, 0x5f7da0,9, 0x5f8004,1, 0x5f800c,4, 0x5f8024,1, 0x5f802c,4, 0x5f8040,5, 0x5f8104,1, 0x5f8140,39, 0x5f8200,7, 0x5f8220,46, 0x5f82e4,5, 0x5f8304,5, 0x5f8324,1, 0x5f832c,3, 0x5f8344,1, 0x5f834c,3, 0x5f8384,1, 0x5f83a0,11, 0x5f83d0,3, 0x5f83e0,1, 0x5f8400,20, 0x5f8480,4, 0x5f84c0,9, 0x5f8500,4, 0x5f8520,5, 0x5f8540,3, 0x5f8550,17, 0x5f85a0,9, 0x5f9000,137, 0x5f9400,118, 0x5f95e4,5, 0x5f9604,5, 0x5f9624,1, 0x5f962c,3, 0x5f9644,1, 0x5f964c,3, 0x5f9664,1, 0x5f966c,15, 0x5f96b0,12, 0x5f9700,20, 0x5f9780,4, 0x5f97c0,9, 0x5f9800,19, 0x5fa000,20, 0x5fa080,2, 0x5fa090,3, 0x5fa200,26, 0x5fa280,4, 0x5fa2c0,25, 0x5fa340,6, 0x5fa360,1, 0x5fa368,2, 0x5fa374,11, 0x5fa3a4,10, 0x5fa400,4, 0x600000,15, 0x600040,4, 0x600060,6, 0x600080,6, 0x6000a0,6, 0x6000c0,11, 0x600100,15, 0x600140,4, 0x600160,6, 0x600180,6, 0x6001a0,6, 0x6001c0,11, 0x600200,2, 0x600220,34, 0x600400,15, 0x600440,4, 0x600460,6, 0x600480,6, 0x6004a0,6, 0x6004c0,11, 0x600500,15, 0x600540,4, 0x600560,6, 0x600580,6, 0x6005a0,6, 0x6005c0,11, 0x600600,2, 0x600620,34, 0x600800,15, 0x600840,4, 0x600860,6, 0x600880,6, 0x6008a0,6, 0x6008c0,11, 0x600900,15, 0x600940,4, 0x600960,6, 0x600980,6, 0x6009a0,6, 0x6009c0,11, 0x600a00,2, 0x600a20,34, 0x600c00,15, 0x600c40,4, 0x600c60,6, 0x600c80,6, 0x600ca0,6, 0x600cc0,11, 0x600d00,15, 0x600d40,4, 0x600d60,6, 0x600d80,6, 0x600da0,6, 0x600dc0,11, 0x600e00,2, 0x600e20,34, 0x601000,15, 0x601040,4, 0x601060,6, 0x601080,6, 0x6010a0,6, 0x6010c0,11, 0x601100,15, 0x601140,4, 0x601160,6, 0x601180,6, 0x6011a0,6, 0x6011c0,11, 0x601200,2, 0x601220,34, 0x601400,15, 0x601440,4, 0x601460,6, 0x601480,6, 0x6014a0,6, 0x6014c0,11, 0x601500,15, 0x601540,4, 0x601560,6, 0x601580,6, 0x6015a0,6, 0x6015c0,11, 0x601600,2, 0x601620,34, 0x601800,15, 0x601840,4, 0x601860,6, 0x601880,6, 0x6018a0,6, 0x6018c0,11, 0x601900,15, 0x601940,4, 0x601960,6, 0x601980,6, 0x6019a0,6, 0x6019c0,11, 0x601a00,2, 0x601a20,34, 0x601c00,15, 0x601c40,4, 0x601c60,6, 0x601c80,6, 0x601ca0,6, 0x601cc0,11, 0x601d00,15, 0x601d40,4, 0x601d60,6, 0x601d80,6, 0x601da0,6, 0x601dc0,11, 0x601e00,2, 0x601e20,34, 0x602000,15, 0x602040,4, 0x602060,6, 0x602080,6, 0x6020a0,6, 0x6020c0,11, 0x602100,15, 0x602140,4, 0x602160,6, 0x602180,6, 0x6021a0,6, 0x6021c0,11, 0x602200,2, 0x602220,34, 0x602400,15, 0x602440,4, 0x602460,6, 0x602480,6, 0x6024a0,6, 0x6024c0,11, 0x602500,15, 0x602540,4, 0x602560,6, 0x602580,6, 0x6025a0,6, 0x6025c0,11, 0x602600,2, 0x602620,34, 0x602800,15, 0x602840,4, 0x602860,6, 0x602880,6, 0x6028a0,6, 0x6028c0,11, 0x602900,15, 0x602940,4, 0x602960,6, 0x602980,6, 0x6029a0,6, 0x6029c0,11, 0x602a00,2, 0x602a20,34, 0x602c00,15, 0x602c40,4, 0x602c60,6, 0x602c80,6, 0x602ca0,6, 0x602cc0,11, 0x602d00,15, 0x602d40,4, 0x602d60,6, 0x602d80,6, 0x602da0,6, 0x602dc0,11, 0x602e00,2, 0x602e20,34, 0x603000,15, 0x603040,4, 0x603060,6, 0x603080,6, 0x6030a0,6, 0x6030c0,11, 0x603100,15, 0x603140,4, 0x603160,6, 0x603180,6, 0x6031a0,6, 0x6031c0,11, 0x603200,2, 0x603220,34, 0x603400,15, 0x603440,4, 0x603460,6, 0x603480,6, 0x6034a0,6, 0x6034c0,11, 0x603500,15, 0x603540,4, 0x603560,6, 0x603580,6, 0x6035a0,6, 0x6035c0,11, 0x603600,2, 0x603620,34, 0x603800,15, 0x603840,4, 0x603860,6, 0x603880,6, 0x6038a0,6, 0x6038c0,11, 0x603900,15, 0x603940,4, 0x603960,6, 0x603980,6, 0x6039a0,6, 0x6039c0,11, 0x603a00,2, 0x603a20,34, 0x603c00,15, 0x603c40,4, 0x603c60,6, 0x603c80,6, 0x603ca0,6, 0x603cc0,11, 0x603d00,15, 0x603d40,4, 0x603d60,6, 0x603d80,6, 0x603da0,6, 0x603dc0,11, 0x603e00,2, 0x603e20,34, 0x604000,15, 0x604040,4, 0x604060,6, 0x604080,6, 0x6040a0,6, 0x6040c0,11, 0x604100,15, 0x604140,4, 0x604160,6, 0x604180,6, 0x6041a0,6, 0x6041c0,11, 0x604200,2, 0x604220,34, 0x604400,15, 0x604440,4, 0x604460,6, 0x604480,6, 0x6044a0,6, 0x6044c0,11, 0x604500,15, 0x604540,4, 0x604560,6, 0x604580,6, 0x6045a0,6, 0x6045c0,11, 0x604600,2, 0x604620,34, 0x604800,15, 0x604840,4, 0x604860,6, 0x604880,6, 0x6048a0,6, 0x6048c0,11, 0x604900,15, 0x604940,4, 0x604960,6, 0x604980,6, 0x6049a0,6, 0x6049c0,11, 0x604a00,2, 0x604a20,34, 0x604c00,15, 0x604c40,4, 0x604c60,6, 0x604c80,6, 0x604ca0,6, 0x604cc0,11, 0x604d00,15, 0x604d40,4, 0x604d60,6, 0x604d80,6, 0x604da0,6, 0x604dc0,11, 0x604e00,2, 0x604e20,34, 0x605000,15, 0x605040,4, 0x605060,6, 0x605080,6, 0x6050a0,6, 0x6050c0,11, 0x605100,15, 0x605140,4, 0x605160,6, 0x605180,6, 0x6051a0,6, 0x6051c0,11, 0x605200,2, 0x605220,34, 0x605400,15, 0x605440,4, 0x605460,6, 0x605480,6, 0x6054a0,6, 0x6054c0,11, 0x605500,15, 0x605540,4, 0x605560,6, 0x605580,6, 0x6055a0,6, 0x6055c0,11, 0x605600,2, 0x605620,34, 0x605800,15, 0x605840,4, 0x605860,6, 0x605880,6, 0x6058a0,6, 0x6058c0,11, 0x605900,15, 0x605940,4, 0x605960,6, 0x605980,6, 0x6059a0,6, 0x6059c0,11, 0x605a00,2, 0x605a20,34, 0x605c00,15, 0x605c40,4, 0x605c60,6, 0x605c80,6, 0x605ca0,6, 0x605cc0,11, 0x605d00,15, 0x605d40,4, 0x605d60,6, 0x605d80,6, 0x605da0,6, 0x605dc0,11, 0x605e00,2, 0x605e20,34, 0x606000,15, 0x606040,4, 0x606060,6, 0x606080,6, 0x6060a0,6, 0x6060c0,11, 0x606100,15, 0x606140,4, 0x606160,6, 0x606180,6, 0x6061a0,6, 0x6061c0,11, 0x606200,2, 0x606220,34, 0x606400,15, 0x606440,4, 0x606460,6, 0x606480,6, 0x6064a0,6, 0x6064c0,11, 0x606500,15, 0x606540,4, 0x606560,6, 0x606580,6, 0x6065a0,6, 0x6065c0,11, 0x606600,2, 0x606620,34, 0x606800,15, 0x606840,4, 0x606860,6, 0x606880,6, 0x6068a0,6, 0x6068c0,11, 0x606900,15, 0x606940,4, 0x606960,6, 0x606980,6, 0x6069a0,6, 0x6069c0,11, 0x606a00,2, 0x606a20,34, 0x606c00,15, 0x606c40,4, 0x606c60,6, 0x606c80,6, 0x606ca0,6, 0x606cc0,11, 0x606d00,15, 0x606d40,4, 0x606d60,6, 0x606d80,6, 0x606da0,6, 0x606dc0,11, 0x606e00,2, 0x606e20,34, 0x607000,15, 0x607040,4, 0x607060,6, 0x607080,6, 0x6070a0,6, 0x6070c0,11, 0x607100,15, 0x607140,4, 0x607160,6, 0x607180,6, 0x6071a0,6, 0x6071c0,11, 0x607200,2, 0x607220,34, 0x607400,15, 0x607440,4, 0x607460,6, 0x607480,6, 0x6074a0,6, 0x6074c0,11, 0x607500,15, 0x607540,4, 0x607560,6, 0x607580,6, 0x6075a0,6, 0x6075c0,11, 0x607600,2, 0x607620,34, 0x607800,15, 0x607840,4, 0x607860,6, 0x607880,6, 0x6078a0,6, 0x6078c0,11, 0x607900,15, 0x607940,4, 0x607960,6, 0x607980,6, 0x6079a0,6, 0x6079c0,11, 0x607a00,2, 0x607a20,34, 0x607c00,15, 0x607c40,4, 0x607c60,6, 0x607c80,6, 0x607ca0,6, 0x607cc0,11, 0x607d00,15, 0x607d40,4, 0x607d60,6, 0x607d80,6, 0x607da0,6, 0x607dc0,11, 0x607e00,2, 0x607e20,34, 0x608000,15, 0x608040,4, 0x608060,6, 0x608080,6, 0x6080a0,6, 0x6080c0,11, 0x608100,15, 0x608140,4, 0x608160,6, 0x608180,6, 0x6081a0,6, 0x6081c0,11, 0x608200,2, 0x608220,34, 0x608404,2, 0x608420,23, 0x608484,2, 0x6084a0,23, 0x608504,2, 0x608520,23, 0x608584,2, 0x6085a0,23, 0x608604,2, 0x608620,23, 0x608684,2, 0x6086a0,23, 0x608704,2, 0x608720,23, 0x608784,2, 0x6087a0,23, 0x608804,2, 0x608820,23, 0x608884,2, 0x6088a0,23, 0x608904,2, 0x608920,23, 0x608984,2, 0x6089a0,23, 0x608a04,2, 0x608a20,23, 0x608a84,2, 0x608aa0,23, 0x608b04,2, 0x608b20,23, 0x608b84,2, 0x608ba0,23, 0x608c04,2, 0x608c20,23, 0x608c84,2, 0x608ca0,23, 0x608d04,2, 0x608d20,23, 0x608d84,2, 0x608da0,23, 0x608e04,2, 0x608e20,23, 0x608e84,2, 0x608ea0,23, 0x608f04,2, 0x608f20,23, 0x608f84,2, 0x608fa0,23, 0x609004,2, 0x609020,23, 0x609084,2, 0x6090a0,23, 0x609104,2, 0x609120,23, 0x609184,2, 0x6091a0,23, 0x609204,2, 0x609220,23, 0x609284,2, 0x6092a0,23, 0x609304,2, 0x609320,23, 0x609384,2, 0x6093a0,23, 0x609404,2, 0x609420,23, 0x609484,2, 0x6094a0,23, 0x609504,2, 0x609520,23, 0x609584,2, 0x6095a0,23, 0x609604,2, 0x609620,23, 0x609684,2, 0x6096a0,23, 0x609704,2, 0x609720,23, 0x609784,2, 0x6097a0,23, 0x609804,2, 0x609820,23, 0x609884,2, 0x6098a0,23, 0x609904,2, 0x609920,23, 0x609984,2, 0x6099a0,23, 0x609a04,2, 0x609a20,23, 0x609a84,2, 0x609aa0,23, 0x609b04,2, 0x609b20,23, 0x609b84,2, 0x609ba0,23, 0x609c04,2, 0x609c20,23, 0x609c84,2, 0x609ca0,23, 0x609d04,2, 0x609d20,23, 0x609d84,2, 0x609da0,23, 0x609e04,2, 0x609e20,23, 0x609e84,2, 0x609ea0,23, 0x609f04,2, 0x609f20,23, 0x609f84,2, 0x609fa0,23, 0x60a004,2, 0x60a020,23, 0x60a084,2, 0x60a0a0,23, 0x60a104,2, 0x60a120,23, 0x60a184,2, 0x60a1a0,23, 0x60a204,2, 0x60a220,23, 0x60a284,2, 0x60a2a0,23, 0x60a304,2, 0x60a320,23, 0x60a384,2, 0x60a3a0,23, 0x60a404,2, 0x60a420,23, 0x60a484,2, 0x60a4a0,23, 0x60a504,2, 0x60a520,23, 0x60a584,2, 0x60a5a0,23, 0x60a600,24, 0x60a664,7, 0x60a800,14, 0x60a840,9, 0x60a880,6, 0x60a8a0,1, 0x60a8a8,4, 0x60a904,39, 0x60aa00,33, 0x60aa90,3, 0x60aaa0,3, 0x60ab04,32, 0x60ac04,32, 0x60ad00,6, 0x620000,8, 0x620024,1, 0x620040,4, 0x620060,5, 0x620080,10, 0x620100,8, 0x620124,1, 0x620140,4, 0x620160,5, 0x620180,10, 0x620200,8, 0x620224,1, 0x620240,4, 0x620260,5, 0x620280,10, 0x620300,8, 0x620324,1, 0x620340,4, 0x620360,5, 0x620380,10, 0x620400,8, 0x620424,1, 0x620440,4, 0x620460,5, 0x620480,10, 0x620500,8, 0x620524,1, 0x620540,4, 0x620560,5, 0x620580,10, 0x620600,8, 0x620624,1, 0x620640,4, 0x620660,5, 0x620680,10, 0x620700,8, 0x620724,1, 0x620740,4, 0x620760,5, 0x620780,10, 0x620800,8, 0x620824,1, 0x620840,4, 0x620860,5, 0x620880,10, 0x620900,8, 0x620924,1, 0x620940,4, 0x620960,5, 0x620980,10, 0x620a00,8, 0x620a24,1, 0x620a40,4, 0x620a60,5, 0x620a80,10, 0x620b00,8, 0x620b24,1, 0x620b40,4, 0x620b60,5, 0x620b80,10, 0x620c00,8, 0x620c24,1, 0x620c40,4, 0x620c60,5, 0x620c80,10, 0x620d00,8, 0x620d24,1, 0x620d40,4, 0x620d60,5, 0x620d80,10, 0x620e00,8, 0x620e24,1, 0x620e40,4, 0x620e60,5, 0x620e80,10, 0x620f00,8, 0x620f24,1, 0x620f40,4, 0x620f60,5, 0x620f80,10, 0x621000,8, 0x621024,1, 0x621040,4, 0x621060,5, 0x621080,10, 0x621100,8, 0x621124,1, 0x621140,4, 0x621160,5, 0x621180,10, 0x621200,8, 0x621224,1, 0x621240,4, 0x621260,5, 0x621280,10, 0x621300,8, 0x621324,1, 0x621340,4, 0x621360,5, 0x621380,10, 0x621400,8, 0x621424,1, 0x621440,4, 0x621460,5, 0x621480,10, 0x621500,8, 0x621524,1, 0x621540,4, 0x621560,5, 0x621580,10, 0x621600,8, 0x621624,1, 0x621640,4, 0x621660,5, 0x621680,10, 0x621700,8, 0x621724,1, 0x621740,4, 0x621760,5, 0x621780,10, 0x621800,8, 0x621824,1, 0x621840,4, 0x621860,5, 0x621880,10, 0x621900,8, 0x621924,1, 0x621940,4, 0x621960,5, 0x621980,10, 0x621a00,8, 0x621a24,1, 0x621a40,4, 0x621a60,5, 0x621a80,10, 0x621b00,8, 0x621b24,1, 0x621b40,4, 0x621b60,5, 0x621b80,10, 0x621c00,8, 0x621c24,1, 0x621c40,4, 0x621c60,5, 0x621c80,10, 0x621d00,8, 0x621d24,1, 0x621d40,4, 0x621d60,5, 0x621d80,10, 0x621e00,8, 0x621e24,1, 0x621e40,4, 0x621e60,5, 0x621e80,10, 0x621f00,8, 0x621f24,1, 0x621f40,4, 0x621f60,5, 0x621f80,10, 0x622000,8, 0x622024,1, 0x622040,4, 0x622060,5, 0x622080,10, 0x622100,8, 0x622124,1, 0x622140,4, 0x622160,5, 0x622180,10, 0x622200,6, 0x622220,3, 0x622240,6, 0x622260,3, 0x622280,6, 0x6222a0,3, 0x6222c0,6, 0x6222e0,3, 0x622300,6, 0x622320,3, 0x622340,6, 0x622360,3, 0x622380,6, 0x6223a0,3, 0x6223c0,6, 0x6223e0,3, 0x622400,6, 0x622420,3, 0x622440,6, 0x622460,3, 0x622480,6, 0x6224a0,3, 0x6224c0,6, 0x6224e0,3, 0x622500,6, 0x622520,3, 0x622540,6, 0x622560,3, 0x622580,6, 0x6225a0,3, 0x6225c0,6, 0x6225e0,3, 0x622600,6, 0x622620,3, 0x622640,6, 0x622660,3, 0x622680,6, 0x6226a0,3, 0x6226c0,6, 0x6226e0,3, 0x622700,6, 0x622720,3, 0x622740,6, 0x622760,3, 0x622780,6, 0x6227a0,3, 0x6227c0,6, 0x6227e0,3, 0x622800,6, 0x622820,3, 0x622840,6, 0x622860,3, 0x622880,6, 0x6228a0,3, 0x6228c0,6, 0x6228e0,3, 0x622900,6, 0x622920,3, 0x622940,6, 0x622960,3, 0x622980,6, 0x6229a0,3, 0x6229c0,6, 0x6229e0,3, 0x622a00,6, 0x622a20,3, 0x622a40,6, 0x622a60,3, 0x622a80,20, 0x622c00,14, 0x622c40,9, 0x622c80,6, 0x622ca0,1, 0x622ca8,4, 0x622d04,54, 0x622e00,4, 0x622f04,34, 0x623000,3, 0x623010,21, 0x623068,6, 0x624000,8, 0x624024,1, 0x624040,4, 0x624060,5, 0x624080,10, 0x624100,8, 0x624124,1, 0x624140,4, 0x624160,5, 0x624180,10, 0x624200,8, 0x624224,1, 0x624240,4, 0x624260,5, 0x624280,10, 0x624300,8, 0x624324,1, 0x624340,4, 0x624360,5, 0x624380,10, 0x624400,8, 0x624424,1, 0x624440,4, 0x624460,5, 0x624480,10, 0x624500,8, 0x624524,1, 0x624540,4, 0x624560,5, 0x624580,10, 0x624600,8, 0x624624,1, 0x624640,4, 0x624660,5, 0x624680,10, 0x624700,8, 0x624724,1, 0x624740,4, 0x624760,5, 0x624780,10, 0x624800,8, 0x624824,1, 0x624840,4, 0x624860,5, 0x624880,10, 0x624900,8, 0x624924,1, 0x624940,4, 0x624960,5, 0x624980,10, 0x624a00,8, 0x624a24,1, 0x624a40,4, 0x624a60,5, 0x624a80,10, 0x624b00,8, 0x624b24,1, 0x624b40,4, 0x624b60,5, 0x624b80,10, 0x624c00,8, 0x624c24,1, 0x624c40,4, 0x624c60,5, 0x624c80,10, 0x624d00,8, 0x624d24,1, 0x624d40,4, 0x624d60,5, 0x624d80,10, 0x624e00,8, 0x624e24,1, 0x624e40,4, 0x624e60,5, 0x624e80,10, 0x624f00,8, 0x624f24,1, 0x624f40,4, 0x624f60,5, 0x624f80,10, 0x625000,8, 0x625024,1, 0x625040,4, 0x625060,5, 0x625080,10, 0x625100,8, 0x625124,1, 0x625140,4, 0x625160,5, 0x625180,10, 0x625200,8, 0x625224,1, 0x625240,4, 0x625260,5, 0x625280,10, 0x625300,8, 0x625324,1, 0x625340,4, 0x625360,5, 0x625380,10, 0x625400,8, 0x625424,1, 0x625440,4, 0x625460,5, 0x625480,10, 0x625500,8, 0x625524,1, 0x625540,4, 0x625560,5, 0x625580,10, 0x625600,8, 0x625624,1, 0x625640,4, 0x625660,5, 0x625680,10, 0x625700,8, 0x625724,1, 0x625740,4, 0x625760,5, 0x625780,10, 0x625800,8, 0x625824,1, 0x625840,4, 0x625860,5, 0x625880,10, 0x625900,8, 0x625924,1, 0x625940,4, 0x625960,5, 0x625980,10, 0x625a00,8, 0x625a24,1, 0x625a40,4, 0x625a60,5, 0x625a80,10, 0x625b00,8, 0x625b24,1, 0x625b40,4, 0x625b60,5, 0x625b80,10, 0x625c00,8, 0x625c24,1, 0x625c40,4, 0x625c60,5, 0x625c80,10, 0x625d00,8, 0x625d24,1, 0x625d40,4, 0x625d60,5, 0x625d80,10, 0x625e00,8, 0x625e24,1, 0x625e40,4, 0x625e60,5, 0x625e80,10, 0x625f00,8, 0x625f24,1, 0x625f40,4, 0x625f60,5, 0x625f80,10, 0x626000,8, 0x626024,1, 0x626040,4, 0x626060,5, 0x626080,10, 0x626100,8, 0x626124,1, 0x626140,4, 0x626160,5, 0x626180,10, 0x626200,6, 0x626220,3, 0x626240,6, 0x626260,3, 0x626280,6, 0x6262a0,3, 0x6262c0,6, 0x6262e0,3, 0x626300,6, 0x626320,3, 0x626340,6, 0x626360,3, 0x626380,6, 0x6263a0,3, 0x6263c0,6, 0x6263e0,3, 0x626400,6, 0x626420,3, 0x626440,6, 0x626460,3, 0x626480,6, 0x6264a0,3, 0x6264c0,6, 0x6264e0,3, 0x626500,6, 0x626520,3, 0x626540,6, 0x626560,3, 0x626580,6, 0x6265a0,3, 0x6265c0,6, 0x6265e0,3, 0x626600,6, 0x626620,3, 0x626640,6, 0x626660,3, 0x626680,6, 0x6266a0,3, 0x6266c0,6, 0x6266e0,3, 0x626700,6, 0x626720,3, 0x626740,6, 0x626760,3, 0x626780,6, 0x6267a0,3, 0x6267c0,6, 0x6267e0,3, 0x626800,6, 0x626820,3, 0x626840,6, 0x626860,3, 0x626880,6, 0x6268a0,3, 0x6268c0,6, 0x6268e0,3, 0x626900,6, 0x626920,3, 0x626940,6, 0x626960,3, 0x626980,6, 0x6269a0,3, 0x6269c0,6, 0x6269e0,3, 0x626a00,6, 0x626a20,3, 0x626a40,6, 0x626a60,3, 0x626a80,20, 0x626c00,14, 0x626c40,9, 0x626c80,6, 0x626ca0,1, 0x626ca8,4, 0x626d04,54, 0x626e00,4, 0x626f04,34, 0x627000,3, 0x627010,21, 0x627068,6, 0x640000,546, 0x640c00,128, 0x640e04,16, 0x640e50,4, 0x641000,136, 0x641224,17, 0x641270,4, 0x641400,12, 0x641440,2, 0x648000,546, 0x648c00,128, 0x648e04,16, 0x648e50,4, 0x649000,136, 0x649224,17, 0x649270,4, 0x649400,12, 0x649440,2, 0x660000,4, 0x660040,12, 0x660080,3, 0x660090,3, 0x6600a0,1, 0x6600c0,5, 0x660100,4, 0x660140,12, 0x660180,3, 0x660190,3, 0x6601a0,1, 0x6601c0,5, 0x660200,4, 0x660240,12, 0x660280,3, 0x660290,3, 0x6602a0,1, 0x660300,4, 0x660340,12, 0x660380,3, 0x660390,3, 0x6603a0,1, 0x6603c0,5, 0x660400,4, 0x660440,12, 0x660480,3, 0x660490,3, 0x6604a0,1, 0x660500,4, 0x660540,12, 0x660580,3, 0x660590,3, 0x6605a0,1, 0x6605c0,5, 0x660600,4, 0x660640,12, 0x660680,3, 0x660690,3, 0x6606a0,1, 0x660700,4, 0x660740,12, 0x660780,3, 0x660790,3, 0x6607a0,1, 0x6607c0,5, 0x660800,4, 0x660840,12, 0x660880,3, 0x660890,3, 0x6608a0,1, 0x660900,4, 0x660940,12, 0x660980,3, 0x660990,3, 0x6609a0,1, 0x6609c0,5, 0x660a00,4, 0x660a40,12, 0x660a80,3, 0x660a90,3, 0x660aa0,1, 0x660b00,4, 0x660b40,12, 0x660b80,3, 0x660b90,3, 0x660ba0,1, 0x660bc0,5, 0x660c00,4, 0x660c40,12, 0x660c80,3, 0x660c90,3, 0x660ca0,1, 0x660d00,4, 0x660d40,12, 0x660d80,3, 0x660d90,3, 0x660da0,1, 0x660dc0,5, 0x660e00,4, 0x660e40,12, 0x660e80,3, 0x660e90,3, 0x660ea0,1, 0x660f00,4, 0x660f40,12, 0x660f80,3, 0x660f90,3, 0x660fa0,1, 0x660fc0,5, 0x661000,4, 0x661040,12, 0x661080,3, 0x661090,3, 0x6610a0,1, 0x661100,4, 0x661140,12, 0x661180,3, 0x661190,3, 0x6611a0,1, 0x6611c0,5, 0x661200,4, 0x661240,12, 0x661280,3, 0x661290,3, 0x6612a0,1, 0x661300,4, 0x661340,12, 0x661380,3, 0x661390,3, 0x6613a0,1, 0x6613c0,5, 0x661400,4, 0x661440,12, 0x661480,3, 0x661490,3, 0x6614a0,1, 0x661500,4, 0x661540,12, 0x661580,3, 0x661590,3, 0x6615a0,1, 0x6615c0,5, 0x661600,4, 0x661640,12, 0x661680,3, 0x661690,3, 0x6616a0,1, 0x661700,4, 0x661740,12, 0x661780,3, 0x661790,3, 0x6617a0,1, 0x6617c0,5, 0x661800,4, 0x661840,12, 0x661880,3, 0x661890,3, 0x6618a0,1, 0x661900,4, 0x661940,12, 0x661980,3, 0x661990,3, 0x6619a0,1, 0x6619c0,5, 0x661a00,4, 0x661a40,12, 0x661a80,3, 0x661a90,3, 0x661aa0,1, 0x661b00,4, 0x661b40,12, 0x661b80,3, 0x661b90,3, 0x661ba0,1, 0x661bc0,5, 0x661c00,4, 0x661c40,12, 0x661c80,3, 0x661c90,3, 0x661ca0,1, 0x661d00,4, 0x661d40,12, 0x661d80,3, 0x661d90,3, 0x661da0,1, 0x661dc0,5, 0x661e00,4, 0x661e40,12, 0x661e80,3, 0x661e90,3, 0x661ea0,1, 0x661f00,4, 0x661f40,12, 0x661f80,3, 0x661f90,3, 0x661fa0,1, 0x661fc0,5, 0x662000,4, 0x662040,12, 0x662080,3, 0x662090,3, 0x6620a0,1, 0x662100,4, 0x662140,12, 0x662180,3, 0x662190,3, 0x6621a0,1, 0x6621c0,5, 0x662200,4, 0x662240,12, 0x662280,3, 0x662290,3, 0x6622a0,1, 0x662300,4, 0x662340,12, 0x662380,3, 0x662390,3, 0x6623a0,1, 0x6623c0,5, 0x662400,4, 0x662440,12, 0x662480,3, 0x662490,3, 0x6624a0,1, 0x662500,4, 0x662540,12, 0x662580,3, 0x662590,3, 0x6625a0,1, 0x6625c0,5, 0x662600,4, 0x662640,12, 0x662680,3, 0x662690,3, 0x6626a0,1, 0x662700,4, 0x662740,12, 0x662780,3, 0x662790,3, 0x6627a0,1, 0x6627c0,5, 0x662800,4, 0x662840,12, 0x662880,3, 0x662890,3, 0x6628a0,1, 0x662900,4, 0x662940,12, 0x662980,3, 0x662990,3, 0x6629a0,1, 0x6629c0,5, 0x662a00,4, 0x662a40,12, 0x662a80,3, 0x662a90,3, 0x662aa0,1, 0x662b00,4, 0x662b40,12, 0x662b80,3, 0x662b90,3, 0x662ba0,1, 0x662bc0,5, 0x662c00,4, 0x662c40,12, 0x662c80,3, 0x662c90,3, 0x662ca0,1, 0x662d00,4, 0x662d40,12, 0x662d80,3, 0x662d90,3, 0x662da0,1, 0x662dc0,5, 0x662e00,4, 0x662e40,12, 0x662e80,3, 0x662e90,3, 0x662ea0,1, 0x662f00,4, 0x662f40,12, 0x662f80,3, 0x662f90,3, 0x662fa0,1, 0x662fc0,5, 0x663000,4, 0x663040,12, 0x663080,3, 0x663090,3, 0x6630a0,1, 0x663100,4, 0x663140,12, 0x663180,3, 0x663190,3, 0x6631a0,1, 0x6631c0,5, 0x663200,4, 0x663240,12, 0x663280,3, 0x663290,3, 0x6632a0,1, 0x663300,4, 0x663340,12, 0x663380,3, 0x663390,3, 0x6633a0,1, 0x6633c0,5, 0x663400,4, 0x663440,12, 0x663480,3, 0x663490,3, 0x6634a0,1, 0x663500,4, 0x663540,12, 0x663580,3, 0x663590,3, 0x6635a0,1, 0x6635c0,5, 0x663600,4, 0x663640,12, 0x663680,3, 0x663690,3, 0x6636a0,1, 0x663700,4, 0x663740,12, 0x663780,3, 0x663790,3, 0x6637a0,1, 0x6637c0,5, 0x663800,4, 0x663840,12, 0x663880,3, 0x663890,3, 0x6638a0,1, 0x663900,4, 0x663940,12, 0x663980,3, 0x663990,3, 0x6639a0,1, 0x6639c0,5, 0x663a00,4, 0x663a40,12, 0x663a80,3, 0x663a90,3, 0x663aa0,1, 0x663b00,4, 0x663b40,12, 0x663b80,3, 0x663b90,3, 0x663ba0,1, 0x663bc0,5, 0x663c00,4, 0x663c40,12, 0x663c80,3, 0x663c90,3, 0x663ca0,1, 0x663d00,4, 0x663d40,12, 0x663d80,3, 0x663d90,3, 0x663da0,1, 0x663dc0,5, 0x663e00,4, 0x663e40,12, 0x663e80,3, 0x663e90,3, 0x663ea0,1, 0x663f00,4, 0x663f40,12, 0x663f80,3, 0x663f90,3, 0x663fa0,1, 0x663fc0,5, 0x664000,4, 0x664040,12, 0x664080,3, 0x664090,3, 0x6640a0,1, 0x664100,4, 0x664140,12, 0x664180,3, 0x664190,3, 0x6641a0,1, 0x6641c0,5, 0x664200,1, 0x664208,13, 0x664240,1, 0x664248,13, 0x664280,1, 0x664288,13, 0x6642c0,1, 0x6642c8,13, 0x664300,1, 0x664308,13, 0x664340,1, 0x664348,13, 0x664380,1, 0x664388,13, 0x6643c0,1, 0x6643c8,13, 0x664400,1, 0x664408,13, 0x664440,1, 0x664448,13, 0x664480,1, 0x664488,13, 0x6644c0,1, 0x6644c8,13, 0x664500,1, 0x664508,13, 0x664540,1, 0x664548,13, 0x664580,1, 0x664588,13, 0x6645c0,1, 0x6645c8,13, 0x664600,1, 0x664608,13, 0x664640,1, 0x664648,13, 0x664680,1, 0x664688,13, 0x6646c0,1, 0x6646c8,13, 0x664700,1, 0x664708,13, 0x664740,1, 0x664748,13, 0x664780,1, 0x664788,13, 0x6647c0,1, 0x6647c8,13, 0x664800,1, 0x664808,13, 0x664840,1, 0x664848,13, 0x664880,1, 0x664888,13, 0x6648c0,1, 0x6648c8,13, 0x664900,1, 0x664908,13, 0x664940,1, 0x664948,13, 0x664980,1, 0x664988,13, 0x6649c0,1, 0x6649c8,13, 0x664a00,1, 0x664a08,13, 0x664a40,1, 0x664a48,13, 0x664a80,1, 0x664a88,13, 0x664ac0,1, 0x664ac8,13, 0x664b00,1, 0x664b08,13, 0x664b40,1, 0x664b48,13, 0x664b80,1, 0x664b88,13, 0x664bc0,1, 0x664bc8,13, 0x664c00,1, 0x664c08,13, 0x664c40,1, 0x664c48,13, 0x664c80,1, 0x664c88,13, 0x664cc0,1, 0x664cc8,13, 0x664d00,1, 0x664d08,13, 0x664d40,1, 0x664d48,13, 0x664d80,1, 0x664d88,13, 0x664dc0,1, 0x664dc8,13, 0x664e00,1, 0x664e08,13, 0x664e40,1, 0x664e48,13, 0x664e80,1, 0x664e88,13, 0x664ec0,1, 0x664ec8,13, 0x664f00,1, 0x664f08,13, 0x664f40,1, 0x664f48,13, 0x664f80,1, 0x664f88,13, 0x664fc0,1, 0x664fc8,13, 0x665000,1, 0x665008,13, 0x665040,1, 0x665048,13, 0x665080,1, 0x665088,13, 0x6650c0,1, 0x6650c8,13, 0x665100,1, 0x665108,13, 0x665140,1, 0x665148,13, 0x665180,1, 0x665188,13, 0x6651c0,1, 0x6651c8,13, 0x665200,1, 0x665208,13, 0x665240,1, 0x665248,13, 0x665280,7, 0x665400,26, 0x665480,4, 0x6654c0,25, 0x665540,6, 0x665560,1, 0x665568,2, 0x665574,11, 0x6655a4,17, 0x665600,1, 0x665800,256, 0x665c04,32, 0x665c90,4, 0x666000,16, 0x666044,2, 0x666050,4, 0x666080,16, 0x6660c4,2, 0x6660d0,4, 0x666800,256, 0x666c04,32, 0x666c90,4, 0x667000,256, 0x667404,32, 0x667490,4, 0x667800,44, 0x667900,12, 0x667940,3, 0x667950,5, 0x680000,142, 0x680400,76, 0x680600,134, 0x680a00,92, 0x680c00,4, 0x700000,4, 0x700014,15, 0x700080,4, 0x700094,15, 0x700100,13, 0x700140,13, 0x700180,2, 0x700200,29, 0x700280,29, 0x700300,1, 0x700400,44, 0x700500,1, 0x700508,43, 0x700600,3, 0x700684,1, 0x7006b8,22, 0x700720,5, 0x700740,2, 0x700780,10, 0x7007c0,10, 0x700800,8, 0x701000,4, 0x701014,15, 0x701080,4, 0x701094,15, 0x701100,13, 0x701140,13, 0x701180,2, 0x701200,29, 0x701280,29, 0x701300,1, 0x701400,44, 0x701500,1, 0x701508,43, 0x701600,3, 0x701684,1, 0x7016b8,22, 0x701720,5, 0x701740,2, 0x701780,10, 0x7017c0,10, 0x701800,8, 0x702000,4, 0x702014,15, 0x702080,4, 0x702094,15, 0x702100,13, 0x702140,13, 0x702180,2, 0x702200,29, 0x702280,29, 0x702300,1, 0x702400,44, 0x702500,1, 0x702508,43, 0x702600,3, 0x702684,1, 0x7026b8,22, 0x702720,5, 0x702740,2, 0x702780,10, 0x7027c0,10, 0x702800,8, 0x703000,4, 0x703014,15, 0x703080,4, 0x703094,15, 0x703100,13, 0x703140,13, 0x703180,2, 0x703200,29, 0x703280,29, 0x703300,1, 0x703400,44, 0x703500,1, 0x703508,43, 0x703600,3, 0x703684,1, 0x7036b8,22, 0x703720,5, 0x703740,2, 0x703780,10, 0x7037c0,10, 0x703800,8, 0x704000,4, 0x704014,15, 0x704080,4, 0x704094,15, 0x704100,13, 0x704140,13, 0x704180,2, 0x704200,29, 0x704280,29, 0x704300,1, 0x704400,44, 0x704500,1, 0x704508,43, 0x704600,3, 0x704684,1, 0x7046b8,22, 0x704720,5, 0x704740,2, 0x704780,10, 0x7047c0,10, 0x704800,8, 0x705000,4, 0x705014,15, 0x705080,4, 0x705094,15, 0x705100,13, 0x705140,13, 0x705180,2, 0x705200,29, 0x705280,29, 0x705300,1, 0x705400,44, 0x705500,1, 0x705508,43, 0x705600,3, 0x705684,1, 0x7056b8,22, 0x705720,5, 0x705740,2, 0x705780,10, 0x7057c0,10, 0x705800,8, 0x706000,4, 0x706014,15, 0x706080,4, 0x706094,15, 0x706100,13, 0x706140,13, 0x706180,2, 0x706200,29, 0x706280,29, 0x706300,1, 0x706400,44, 0x706500,1, 0x706508,43, 0x706600,3, 0x706684,1, 0x7066b8,22, 0x706720,5, 0x706740,2, 0x706780,10, 0x7067c0,10, 0x706800,8, 0x707000,4, 0x707014,15, 0x707080,4, 0x707094,15, 0x707100,13, 0x707140,13, 0x707180,2, 0x707200,29, 0x707280,29, 0x707300,1, 0x707400,44, 0x707500,1, 0x707508,43, 0x707600,3, 0x707684,1, 0x7076b8,22, 0x707720,5, 0x707740,2, 0x707780,10, 0x7077c0,10, 0x707800,8, 0x708000,9, 0x708104,1, 0x708130,41, 0x708200,9, 0x708304,1, 0x708330,41, 0x708400,9, 0x708504,1, 0x708530,41, 0x708600,9, 0x708704,1, 0x708730,41, 0x708800,9, 0x708904,1, 0x708930,41, 0x708a00,9, 0x708b04,1, 0x708b30,41, 0x708c00,9, 0x708d04,1, 0x708d30,41, 0x708e00,9, 0x708f04,1, 0x708f30,41, 0x709000,29, 0x709078,32, 0x709200,81, 0x709400,81, 0x709600,81, 0x709800,19, 0x70a000,7, 0x70a020,3, 0x70a040,7, 0x70a060,3, 0x70a080,7, 0x70a0a0,3, 0x70a0c0,7, 0x70a0e0,3, 0x70a100,7, 0x70a120,3, 0x70a140,7, 0x70a160,3, 0x70a180,7, 0x70a1a0,3, 0x70a1c0,7, 0x70a1e0,3, 0x710000,54, 0x710100,238, 0x7104c0,6, 0x7104e0,6, 0x710500,6, 0x710520,6, 0x710540,6, 0x710560,6, 0x710580,6, 0x7105c0,131, 0x7107d0,14, 0x710810,10, 0x710840,3, 0x710850,33, 0x711000,1, 0x711008,10, 0x711200,117, 0x711400,5, 0x711420,5, 0x711800,1, 0x711884,15, 0x711900,2, 0x711c00,26, 0x711c80,4, 0x711cc0,25, 0x711d40,6, 0x711d60,1, 0x711d68,2, 0x711d74,3, 0x711e00,8, 0x711e24,38, 0x712000,32, 0x712084,1, 0x712090,4, 0x712100,3, 0x712110,3, 0x712120,3, 0x712130,3, 0x712140,3, 0x712150,3, 0x712160,3, 0x712170,3, 0x712180,10, 0x7121b0,3, 0x7121c0,1, 0x712200,16, 0x712244,1, 0x712250,4, 0x712280,16, 0x7122c4,1, 0x7122d0,4, 0x712300,16, 0x712344,1, 0x712350,4, 0x712380,16, 0x7123c4,1, 0x7123d0,4, 0x712400,16, 0x712444,1, 0x712450,4, 0x712480,16, 0x7124c4,1, 0x7124d0,4, 0x712500,16, 0x712544,1, 0x712550,4, 0x712580,16, 0x7125c4,1, 0x7125d0,4, 0x712600,4, 0x712640,13, 0x712680,4, 0x7126c0,13, 0x712700,4, 0x712740,13, 0x712780,4, 0x7127c0,13, 0x712800,4, 0x712840,13, 0x712880,4, 0x7128c0,13, 0x712900,4, 0x712940,13, 0x712980,4, 0x7129c0,13, 0x712a00,4, 0x712a40,11, 0x712a80,4, 0x712ac0,11, 0x712b00,4, 0x712b40,11, 0x712b80,4, 0x712bc0,11, 0x712c00,4, 0x712c40,11, 0x712c80,4, 0x712cc0,11, 0x712d00,4, 0x712d40,11, 0x712d80,4, 0x712dc0,11, 0x712e00,4, 0x712e20,6, 0x712e40,4, 0x712e60,6, 0x712e80,4, 0x712ea0,6, 0x712ec0,4, 0x712ee0,6, 0x712f00,4, 0x712f20,6, 0x712f40,4, 0x712f60,6, 0x712f80,4, 0x712fa0,6, 0x712fc0,4, 0x712fe0,6, 0x713000,20, 0x720000,4, 0x720014,15, 0x720080,4, 0x720094,15, 0x720100,13, 0x720140,13, 0x720180,2, 0x720200,29, 0x720280,29, 0x720300,1, 0x720400,44, 0x720500,1, 0x720508,43, 0x720600,3, 0x720684,1, 0x7206b8,22, 0x720720,5, 0x720740,2, 0x720780,10, 0x7207c0,10, 0x720800,8, 0x721000,4, 0x721014,15, 0x721080,4, 0x721094,15, 0x721100,13, 0x721140,13, 0x721180,2, 0x721200,29, 0x721280,29, 0x721300,1, 0x721400,44, 0x721500,1, 0x721508,43, 0x721600,3, 0x721684,1, 0x7216b8,22, 0x721720,5, 0x721740,2, 0x721780,10, 0x7217c0,10, 0x721800,8, 0x722000,4, 0x722014,15, 0x722080,4, 0x722094,15, 0x722100,13, 0x722140,13, 0x722180,2, 0x722200,29, 0x722280,29, 0x722300,1, 0x722400,44, 0x722500,1, 0x722508,43, 0x722600,3, 0x722684,1, 0x7226b8,22, 0x722720,5, 0x722740,2, 0x722780,10, 0x7227c0,10, 0x722800,8, 0x723000,4, 0x723014,15, 0x723080,4, 0x723094,15, 0x723100,13, 0x723140,13, 0x723180,2, 0x723200,29, 0x723280,29, 0x723300,1, 0x723400,44, 0x723500,1, 0x723508,43, 0x723600,3, 0x723684,1, 0x7236b8,22, 0x723720,5, 0x723740,2, 0x723780,10, 0x7237c0,10, 0x723800,8, 0x724000,4, 0x724014,15, 0x724080,4, 0x724094,15, 0x724100,13, 0x724140,13, 0x724180,2, 0x724200,29, 0x724280,29, 0x724300,1, 0x724400,44, 0x724500,1, 0x724508,43, 0x724600,3, 0x724684,1, 0x7246b8,22, 0x724720,5, 0x724740,2, 0x724780,10, 0x7247c0,10, 0x724800,8, 0x725000,4, 0x725014,15, 0x725080,4, 0x725094,15, 0x725100,13, 0x725140,13, 0x725180,2, 0x725200,29, 0x725280,29, 0x725300,1, 0x725400,44, 0x725500,1, 0x725508,43, 0x725600,3, 0x725684,1, 0x7256b8,22, 0x725720,5, 0x725740,2, 0x725780,10, 0x7257c0,10, 0x725800,8, 0x726000,4, 0x726014,15, 0x726080,4, 0x726094,15, 0x726100,13, 0x726140,13, 0x726180,2, 0x726200,29, 0x726280,29, 0x726300,1, 0x726400,44, 0x726500,1, 0x726508,43, 0x726600,3, 0x726684,1, 0x7266b8,22, 0x726720,5, 0x726740,2, 0x726780,10, 0x7267c0,10, 0x726800,8, 0x727000,4, 0x727014,15, 0x727080,4, 0x727094,15, 0x727100,13, 0x727140,13, 0x727180,2, 0x727200,29, 0x727280,29, 0x727300,1, 0x727400,44, 0x727500,1, 0x727508,43, 0x727600,3, 0x727684,1, 0x7276b8,22, 0x727720,5, 0x727740,2, 0x727780,10, 0x7277c0,10, 0x727800,8, 0x728000,9, 0x728104,1, 0x728130,41, 0x728200,9, 0x728304,1, 0x728330,41, 0x728400,9, 0x728504,1, 0x728530,41, 0x728600,9, 0x728704,1, 0x728730,41, 0x728800,9, 0x728904,1, 0x728930,41, 0x728a00,9, 0x728b04,1, 0x728b30,41, 0x728c00,9, 0x728d04,1, 0x728d30,41, 0x728e00,9, 0x728f04,1, 0x728f30,41, 0x729000,29, 0x729078,32, 0x729200,81, 0x729400,81, 0x729600,81, 0x729800,19, 0x72a000,7, 0x72a020,3, 0x72a040,7, 0x72a060,3, 0x72a080,7, 0x72a0a0,3, 0x72a0c0,7, 0x72a0e0,3, 0x72a100,7, 0x72a120,3, 0x72a140,7, 0x72a160,3, 0x72a180,7, 0x72a1a0,3, 0x72a1c0,7, 0x72a1e0,3, 0x730000,54, 0x730100,238, 0x7304c0,6, 0x7304e0,6, 0x730500,6, 0x730520,6, 0x730540,6, 0x730560,6, 0x730580,6, 0x7305c0,131, 0x7307d0,14, 0x730810,10, 0x730840,3, 0x730850,33, 0x731000,1, 0x731008,10, 0x731200,117, 0x731400,5, 0x731420,5, 0x731800,1, 0x731884,15, 0x731900,2, 0x731c00,26, 0x731c80,4, 0x731cc0,25, 0x731d40,6, 0x731d60,1, 0x731d68,2, 0x731d74,3, 0x731e00,8, 0x731e24,38, 0x732000,32, 0x732084,1, 0x732090,4, 0x732100,3, 0x732110,3, 0x732120,3, 0x732130,3, 0x732140,3, 0x732150,3, 0x732160,3, 0x732170,3, 0x732180,10, 0x7321b0,3, 0x7321c0,1, 0x732200,16, 0x732244,1, 0x732250,4, 0x732280,16, 0x7322c4,1, 0x7322d0,4, 0x732300,16, 0x732344,1, 0x732350,4, 0x732380,16, 0x7323c4,1, 0x7323d0,4, 0x732400,16, 0x732444,1, 0x732450,4, 0x732480,16, 0x7324c4,1, 0x7324d0,4, 0x732500,16, 0x732544,1, 0x732550,4, 0x732580,16, 0x7325c4,1, 0x7325d0,4, 0x732600,4, 0x732640,13, 0x732680,4, 0x7326c0,13, 0x732700,4, 0x732740,13, 0x732780,4, 0x7327c0,13, 0x732800,4, 0x732840,13, 0x732880,4, 0x7328c0,13, 0x732900,4, 0x732940,13, 0x732980,4, 0x7329c0,13, 0x732a00,4, 0x732a40,11, 0x732a80,4, 0x732ac0,11, 0x732b00,4, 0x732b40,11, 0x732b80,4, 0x732bc0,11, 0x732c00,4, 0x732c40,11, 0x732c80,4, 0x732cc0,11, 0x732d00,4, 0x732d40,11, 0x732d80,4, 0x732dc0,11, 0x732e00,4, 0x732e20,6, 0x732e40,4, 0x732e60,6, 0x732e80,4, 0x732ea0,6, 0x732ec0,4, 0x732ee0,6, 0x732f00,4, 0x732f20,6, 0x732f40,4, 0x732f60,6, 0x732f80,4, 0x732fa0,6, 0x732fc0,4, 0x732fe0,6, 0x733000,20, 0x740000,4, 0x740014,15, 0x740080,4, 0x740094,15, 0x740100,13, 0x740140,13, 0x740180,2, 0x740200,29, 0x740280,29, 0x740300,1, 0x740400,44, 0x740500,1, 0x740508,43, 0x740600,3, 0x740684,1, 0x7406b8,22, 0x740720,5, 0x740740,2, 0x740780,10, 0x7407c0,10, 0x740800,8, 0x741000,4, 0x741014,15, 0x741080,4, 0x741094,15, 0x741100,13, 0x741140,13, 0x741180,2, 0x741200,29, 0x741280,29, 0x741300,1, 0x741400,44, 0x741500,1, 0x741508,43, 0x741600,3, 0x741684,1, 0x7416b8,22, 0x741720,5, 0x741740,2, 0x741780,10, 0x7417c0,10, 0x741800,8, 0x742000,4, 0x742014,15, 0x742080,4, 0x742094,15, 0x742100,13, 0x742140,13, 0x742180,2, 0x742200,29, 0x742280,29, 0x742300,1, 0x742400,44, 0x742500,1, 0x742508,43, 0x742600,3, 0x742684,1, 0x7426b8,22, 0x742720,5, 0x742740,2, 0x742780,10, 0x7427c0,10, 0x742800,8, 0x743000,4, 0x743014,15, 0x743080,4, 0x743094,15, 0x743100,13, 0x743140,13, 0x743180,2, 0x743200,29, 0x743280,29, 0x743300,1, 0x743400,44, 0x743500,1, 0x743508,43, 0x743600,3, 0x743684,1, 0x7436b8,22, 0x743720,5, 0x743740,2, 0x743780,10, 0x7437c0,10, 0x743800,8, 0x744000,4, 0x744014,15, 0x744080,4, 0x744094,15, 0x744100,13, 0x744140,13, 0x744180,2, 0x744200,29, 0x744280,29, 0x744300,1, 0x744400,44, 0x744500,1, 0x744508,43, 0x744600,3, 0x744684,1, 0x7446b8,22, 0x744720,5, 0x744740,2, 0x744780,10, 0x7447c0,10, 0x744800,8, 0x745000,4, 0x745014,15, 0x745080,4, 0x745094,15, 0x745100,13, 0x745140,13, 0x745180,2, 0x745200,29, 0x745280,29, 0x745300,1, 0x745400,44, 0x745500,1, 0x745508,43, 0x745600,3, 0x745684,1, 0x7456b8,22, 0x745720,5, 0x745740,2, 0x745780,10, 0x7457c0,10, 0x745800,8, 0x746000,4, 0x746014,15, 0x746080,4, 0x746094,15, 0x746100,13, 0x746140,13, 0x746180,2, 0x746200,29, 0x746280,29, 0x746300,1, 0x746400,44, 0x746500,1, 0x746508,43, 0x746600,3, 0x746684,1, 0x7466b8,22, 0x746720,5, 0x746740,2, 0x746780,10, 0x7467c0,10, 0x746800,8, 0x747000,4, 0x747014,15, 0x747080,4, 0x747094,15, 0x747100,13, 0x747140,13, 0x747180,2, 0x747200,29, 0x747280,29, 0x747300,1, 0x747400,44, 0x747500,1, 0x747508,43, 0x747600,3, 0x747684,1, 0x7476b8,22, 0x747720,5, 0x747740,2, 0x747780,10, 0x7477c0,10, 0x747800,8, 0x748000,9, 0x748104,1, 0x748130,41, 0x748200,9, 0x748304,1, 0x748330,41, 0x748400,9, 0x748504,1, 0x748530,41, 0x748600,9, 0x748704,1, 0x748730,41, 0x748800,9, 0x748904,1, 0x748930,41, 0x748a00,9, 0x748b04,1, 0x748b30,41, 0x748c00,9, 0x748d04,1, 0x748d30,41, 0x748e00,9, 0x748f04,1, 0x748f30,41, 0x749000,29, 0x749078,32, 0x749200,81, 0x749400,81, 0x749600,81, 0x749800,19, 0x74a000,7, 0x74a020,3, 0x74a040,7, 0x74a060,3, 0x74a080,7, 0x74a0a0,3, 0x74a0c0,7, 0x74a0e0,3, 0x74a100,7, 0x74a120,3, 0x74a140,7, 0x74a160,3, 0x74a180,7, 0x74a1a0,3, 0x74a1c0,7, 0x74a1e0,3, 0x750000,54, 0x750100,238, 0x7504c0,6, 0x7504e0,6, 0x750500,6, 0x750520,6, 0x750540,6, 0x750560,6, 0x750580,6, 0x7505c0,131, 0x7507d0,14, 0x750810,10, 0x750840,3, 0x750850,33, 0x751000,1, 0x751008,10, 0x751200,117, 0x751400,5, 0x751420,5, 0x751800,1, 0x751884,15, 0x751900,2, 0x751c00,26, 0x751c80,4, 0x751cc0,25, 0x751d40,6, 0x751d60,1, 0x751d68,2, 0x751d74,3, 0x751e00,8, 0x751e24,38, 0x752000,32, 0x752084,1, 0x752090,4, 0x752100,3, 0x752110,3, 0x752120,3, 0x752130,3, 0x752140,3, 0x752150,3, 0x752160,3, 0x752170,3, 0x752180,10, 0x7521b0,3, 0x7521c0,1, 0x752200,16, 0x752244,1, 0x752250,4, 0x752280,16, 0x7522c4,1, 0x7522d0,4, 0x752300,16, 0x752344,1, 0x752350,4, 0x752380,16, 0x7523c4,1, 0x7523d0,4, 0x752400,16, 0x752444,1, 0x752450,4, 0x752480,16, 0x7524c4,1, 0x7524d0,4, 0x752500,16, 0x752544,1, 0x752550,4, 0x752580,16, 0x7525c4,1, 0x7525d0,4, 0x752600,4, 0x752640,13, 0x752680,4, 0x7526c0,13, 0x752700,4, 0x752740,13, 0x752780,4, 0x7527c0,13, 0x752800,4, 0x752840,13, 0x752880,4, 0x7528c0,13, 0x752900,4, 0x752940,13, 0x752980,4, 0x7529c0,13, 0x752a00,4, 0x752a40,11, 0x752a80,4, 0x752ac0,11, 0x752b00,4, 0x752b40,11, 0x752b80,4, 0x752bc0,11, 0x752c00,4, 0x752c40,11, 0x752c80,4, 0x752cc0,11, 0x752d00,4, 0x752d40,11, 0x752d80,4, 0x752dc0,11, 0x752e00,4, 0x752e20,6, 0x752e40,4, 0x752e60,6, 0x752e80,4, 0x752ea0,6, 0x752ec0,4, 0x752ee0,6, 0x752f00,4, 0x752f20,6, 0x752f40,4, 0x752f60,6, 0x752f80,4, 0x752fa0,6, 0x752fc0,4, 0x752fe0,6, 0x753000,20, 0x760000,4, 0x760014,15, 0x760080,4, 0x760094,15, 0x760100,13, 0x760140,13, 0x760180,2, 0x760200,29, 0x760280,29, 0x760300,1, 0x760400,44, 0x760500,1, 0x760508,43, 0x760600,3, 0x760684,1, 0x7606b8,22, 0x760720,5, 0x760740,2, 0x760780,10, 0x7607c0,10, 0x760800,8, 0x761000,4, 0x761014,15, 0x761080,4, 0x761094,15, 0x761100,13, 0x761140,13, 0x761180,2, 0x761200,29, 0x761280,29, 0x761300,1, 0x761400,44, 0x761500,1, 0x761508,43, 0x761600,3, 0x761684,1, 0x7616b8,22, 0x761720,5, 0x761740,2, 0x761780,10, 0x7617c0,10, 0x761800,8, 0x762000,4, 0x762014,15, 0x762080,4, 0x762094,15, 0x762100,13, 0x762140,13, 0x762180,2, 0x762200,29, 0x762280,29, 0x762300,1, 0x762400,44, 0x762500,1, 0x762508,43, 0x762600,3, 0x762684,1, 0x7626b8,22, 0x762720,5, 0x762740,2, 0x762780,10, 0x7627c0,10, 0x762800,8, 0x763000,4, 0x763014,15, 0x763080,4, 0x763094,15, 0x763100,13, 0x763140,13, 0x763180,2, 0x763200,29, 0x763280,29, 0x763300,1, 0x763400,44, 0x763500,1, 0x763508,43, 0x763600,3, 0x763684,1, 0x7636b8,22, 0x763720,5, 0x763740,2, 0x763780,10, 0x7637c0,10, 0x763800,8, 0x764000,4, 0x764014,15, 0x764080,4, 0x764094,15, 0x764100,13, 0x764140,13, 0x764180,2, 0x764200,29, 0x764280,29, 0x764300,1, 0x764400,44, 0x764500,1, 0x764508,43, 0x764600,3, 0x764684,1, 0x7646b8,22, 0x764720,5, 0x764740,2, 0x764780,10, 0x7647c0,10, 0x764800,8, 0x765000,4, 0x765014,15, 0x765080,4, 0x765094,15, 0x765100,13, 0x765140,13, 0x765180,2, 0x765200,29, 0x765280,29, 0x765300,1, 0x765400,44, 0x765500,1, 0x765508,43, 0x765600,3, 0x765684,1, 0x7656b8,22, 0x765720,5, 0x765740,2, 0x765780,10, 0x7657c0,10, 0x765800,8, 0x766000,4, 0x766014,15, 0x766080,4, 0x766094,15, 0x766100,13, 0x766140,13, 0x766180,2, 0x766200,29, 0x766280,29, 0x766300,1, 0x766400,44, 0x766500,1, 0x766508,43, 0x766600,3, 0x766684,1, 0x7666b8,22, 0x766720,5, 0x766740,2, 0x766780,10, 0x7667c0,10, 0x766800,8, 0x767000,4, 0x767014,15, 0x767080,4, 0x767094,15, 0x767100,13, 0x767140,13, 0x767180,2, 0x767200,29, 0x767280,29, 0x767300,1, 0x767400,44, 0x767500,1, 0x767508,43, 0x767600,3, 0x767684,1, 0x7676b8,22, 0x767720,5, 0x767740,2, 0x767780,10, 0x7677c0,10, 0x767800,8, 0x768000,9, 0x768104,1, 0x768130,41, 0x768200,9, 0x768304,1, 0x768330,41, 0x768400,9, 0x768504,1, 0x768530,41, 0x768600,9, 0x768704,1, 0x768730,41, 0x768800,9, 0x768904,1, 0x768930,41, 0x768a00,9, 0x768b04,1, 0x768b30,41, 0x768c00,9, 0x768d04,1, 0x768d30,41, 0x768e00,9, 0x768f04,1, 0x768f30,41, 0x769000,29, 0x769078,32, 0x769200,81, 0x769400,81, 0x769600,81, 0x769800,19, 0x76a000,7, 0x76a020,3, 0x76a040,7, 0x76a060,3, 0x76a080,7, 0x76a0a0,3, 0x76a0c0,7, 0x76a0e0,3, 0x76a100,7, 0x76a120,3, 0x76a140,7, 0x76a160,3, 0x76a180,7, 0x76a1a0,3, 0x76a1c0,7, 0x76a1e0,3, 0x770000,54, 0x770100,238, 0x7704c0,6, 0x7704e0,6, 0x770500,6, 0x770520,6, 0x770540,6, 0x770560,6, 0x770580,6, 0x7705c0,131, 0x7707d0,14, 0x770810,10, 0x770840,3, 0x770850,33, 0x771000,1, 0x771008,10, 0x771200,117, 0x771400,5, 0x771420,5, 0x771800,1, 0x771884,15, 0x771900,2, 0x771c00,26, 0x771c80,4, 0x771cc0,25, 0x771d40,6, 0x771d60,1, 0x771d68,2, 0x771d74,3, 0x771e00,8, 0x771e24,38, 0x772000,32, 0x772084,1, 0x772090,4, 0x772100,3, 0x772110,3, 0x772120,3, 0x772130,3, 0x772140,3, 0x772150,3, 0x772160,3, 0x772170,3, 0x772180,10, 0x7721b0,3, 0x7721c0,1, 0x772200,16, 0x772244,1, 0x772250,4, 0x772280,16, 0x7722c4,1, 0x7722d0,4, 0x772300,16, 0x772344,1, 0x772350,4, 0x772380,16, 0x7723c4,1, 0x7723d0,4, 0x772400,16, 0x772444,1, 0x772450,4, 0x772480,16, 0x7724c4,1, 0x7724d0,4, 0x772500,16, 0x772544,1, 0x772550,4, 0x772580,16, 0x7725c4,1, 0x7725d0,4, 0x772600,4, 0x772640,13, 0x772680,4, 0x7726c0,13, 0x772700,4, 0x772740,13, 0x772780,4, 0x7727c0,13, 0x772800,4, 0x772840,13, 0x772880,4, 0x7728c0,13, 0x772900,4, 0x772940,13, 0x772980,4, 0x7729c0,13, 0x772a00,4, 0x772a40,11, 0x772a80,4, 0x772ac0,11, 0x772b00,4, 0x772b40,11, 0x772b80,4, 0x772bc0,11, 0x772c00,4, 0x772c40,11, 0x772c80,4, 0x772cc0,11, 0x772d00,4, 0x772d40,11, 0x772d80,4, 0x772dc0,11, 0x772e00,4, 0x772e20,6, 0x772e40,4, 0x772e60,6, 0x772e80,4, 0x772ea0,6, 0x772ec0,4, 0x772ee0,6, 0x772f00,4, 0x772f20,6, 0x772f40,4, 0x772f60,6, 0x772f80,4, 0x772fa0,6, 0x772fc0,4, 0x772fe0,6, 0x773000,20, 0x780000,4, 0x780014,15, 0x780080,4, 0x780094,15, 0x780100,13, 0x780140,13, 0x780180,2, 0x780200,29, 0x780280,29, 0x780300,1, 0x780400,44, 0x780500,1, 0x780508,43, 0x780600,3, 0x780684,1, 0x7806b8,22, 0x780720,5, 0x780740,2, 0x780780,10, 0x7807c0,10, 0x780800,8, 0x781000,4, 0x781014,15, 0x781080,4, 0x781094,15, 0x781100,13, 0x781140,13, 0x781180,2, 0x781200,29, 0x781280,29, 0x781300,1, 0x781400,44, 0x781500,1, 0x781508,43, 0x781600,3, 0x781684,1, 0x7816b8,22, 0x781720,5, 0x781740,2, 0x781780,10, 0x7817c0,10, 0x781800,8, 0x782000,4, 0x782014,15, 0x782080,4, 0x782094,15, 0x782100,13, 0x782140,13, 0x782180,2, 0x782200,29, 0x782280,29, 0x782300,1, 0x782400,44, 0x782500,1, 0x782508,43, 0x782600,3, 0x782684,1, 0x7826b8,22, 0x782720,5, 0x782740,2, 0x782780,10, 0x7827c0,10, 0x782800,8, 0x783000,4, 0x783014,15, 0x783080,4, 0x783094,15, 0x783100,13, 0x783140,13, 0x783180,2, 0x783200,29, 0x783280,29, 0x783300,1, 0x783400,44, 0x783500,1, 0x783508,43, 0x783600,3, 0x783684,1, 0x7836b8,22, 0x783720,5, 0x783740,2, 0x783780,10, 0x7837c0,10, 0x783800,8, 0x784000,4, 0x784014,15, 0x784080,4, 0x784094,15, 0x784100,13, 0x784140,13, 0x784180,2, 0x784200,29, 0x784280,29, 0x784300,1, 0x784400,44, 0x784500,1, 0x784508,43, 0x784600,3, 0x784684,1, 0x7846b8,22, 0x784720,5, 0x784740,2, 0x784780,10, 0x7847c0,10, 0x784800,8, 0x785000,4, 0x785014,15, 0x785080,4, 0x785094,15, 0x785100,13, 0x785140,13, 0x785180,2, 0x785200,29, 0x785280,29, 0x785300,1, 0x785400,44, 0x785500,1, 0x785508,43, 0x785600,3, 0x785684,1, 0x7856b8,22, 0x785720,5, 0x785740,2, 0x785780,10, 0x7857c0,10, 0x785800,8, 0x786000,4, 0x786014,15, 0x786080,4, 0x786094,15, 0x786100,13, 0x786140,13, 0x786180,2, 0x786200,29, 0x786280,29, 0x786300,1, 0x786400,44, 0x786500,1, 0x786508,43, 0x786600,3, 0x786684,1, 0x7866b8,22, 0x786720,5, 0x786740,2, 0x786780,10, 0x7867c0,10, 0x786800,8, 0x787000,4, 0x787014,15, 0x787080,4, 0x787094,15, 0x787100,13, 0x787140,13, 0x787180,2, 0x787200,29, 0x787280,29, 0x787300,1, 0x787400,44, 0x787500,1, 0x787508,43, 0x787600,3, 0x787684,1, 0x7876b8,22, 0x787720,5, 0x787740,2, 0x787780,10, 0x7877c0,10, 0x787800,8, 0x788000,9, 0x788104,1, 0x788130,41, 0x788200,9, 0x788304,1, 0x788330,41, 0x788400,9, 0x788504,1, 0x788530,41, 0x788600,9, 0x788704,1, 0x788730,41, 0x788800,9, 0x788904,1, 0x788930,41, 0x788a00,9, 0x788b04,1, 0x788b30,41, 0x788c00,9, 0x788d04,1, 0x788d30,41, 0x788e00,9, 0x788f04,1, 0x788f30,41, 0x789000,29, 0x789078,32, 0x789200,81, 0x789400,81, 0x789600,81, 0x789800,19, 0x78a000,7, 0x78a020,3, 0x78a040,7, 0x78a060,3, 0x78a080,7, 0x78a0a0,3, 0x78a0c0,7, 0x78a0e0,3, 0x78a100,7, 0x78a120,3, 0x78a140,7, 0x78a160,3, 0x78a180,7, 0x78a1a0,3, 0x78a1c0,7, 0x78a1e0,3, 0x790000,54, 0x790100,238, 0x7904c0,6, 0x7904e0,6, 0x790500,6, 0x790520,6, 0x790540,6, 0x790560,6, 0x790580,6, 0x7905c0,131, 0x7907d0,14, 0x790810,10, 0x790840,3, 0x790850,33, 0x791000,1, 0x791008,10, 0x791200,117, 0x791400,5, 0x791420,5, 0x791800,1, 0x791884,15, 0x791900,2, 0x791c00,26, 0x791c80,4, 0x791cc0,25, 0x791d40,6, 0x791d60,1, 0x791d68,2, 0x791d74,3, 0x791e00,8, 0x791e24,38, 0x792000,32, 0x792084,1, 0x792090,4, 0x792100,3, 0x792110,3, 0x792120,3, 0x792130,3, 0x792140,3, 0x792150,3, 0x792160,3, 0x792170,3, 0x792180,10, 0x7921b0,3, 0x7921c0,1, 0x792200,16, 0x792244,1, 0x792250,4, 0x792280,16, 0x7922c4,1, 0x7922d0,4, 0x792300,16, 0x792344,1, 0x792350,4, 0x792380,16, 0x7923c4,1, 0x7923d0,4, 0x792400,16, 0x792444,1, 0x792450,4, 0x792480,16, 0x7924c4,1, 0x7924d0,4, 0x792500,16, 0x792544,1, 0x792550,4, 0x792580,16, 0x7925c4,1, 0x7925d0,4, 0x792600,4, 0x792640,13, 0x792680,4, 0x7926c0,13, 0x792700,4, 0x792740,13, 0x792780,4, 0x7927c0,13, 0x792800,4, 0x792840,13, 0x792880,4, 0x7928c0,13, 0x792900,4, 0x792940,13, 0x792980,4, 0x7929c0,13, 0x792a00,4, 0x792a40,11, 0x792a80,4, 0x792ac0,11, 0x792b00,4, 0x792b40,11, 0x792b80,4, 0x792bc0,11, 0x792c00,4, 0x792c40,11, 0x792c80,4, 0x792cc0,11, 0x792d00,4, 0x792d40,11, 0x792d80,4, 0x792dc0,11, 0x792e00,4, 0x792e20,6, 0x792e40,4, 0x792e60,6, 0x792e80,4, 0x792ea0,6, 0x792ec0,4, 0x792ee0,6, 0x792f00,4, 0x792f20,6, 0x792f40,4, 0x792f60,6, 0x792f80,4, 0x792fa0,6, 0x792fc0,4, 0x792fe0,6, 0x793000,20, 0x7a0000,4, 0x7a0014,15, 0x7a0080,4, 0x7a0094,15, 0x7a0100,13, 0x7a0140,13, 0x7a0180,2, 0x7a0200,29, 0x7a0280,29, 0x7a0300,1, 0x7a0400,44, 0x7a0500,1, 0x7a0508,43, 0x7a0600,3, 0x7a0684,1, 0x7a06b8,22, 0x7a0720,5, 0x7a0740,2, 0x7a0780,10, 0x7a07c0,10, 0x7a0800,8, 0x7a1000,4, 0x7a1014,15, 0x7a1080,4, 0x7a1094,15, 0x7a1100,13, 0x7a1140,13, 0x7a1180,2, 0x7a1200,29, 0x7a1280,29, 0x7a1300,1, 0x7a1400,44, 0x7a1500,1, 0x7a1508,43, 0x7a1600,3, 0x7a1684,1, 0x7a16b8,22, 0x7a1720,5, 0x7a1740,2, 0x7a1780,10, 0x7a17c0,10, 0x7a1800,8, 0x7a2000,4, 0x7a2014,15, 0x7a2080,4, 0x7a2094,15, 0x7a2100,13, 0x7a2140,13, 0x7a2180,2, 0x7a2200,29, 0x7a2280,29, 0x7a2300,1, 0x7a2400,44, 0x7a2500,1, 0x7a2508,43, 0x7a2600,3, 0x7a2684,1, 0x7a26b8,22, 0x7a2720,5, 0x7a2740,2, 0x7a2780,10, 0x7a27c0,10, 0x7a2800,8, 0x7a3000,4, 0x7a3014,15, 0x7a3080,4, 0x7a3094,15, 0x7a3100,13, 0x7a3140,13, 0x7a3180,2, 0x7a3200,29, 0x7a3280,29, 0x7a3300,1, 0x7a3400,44, 0x7a3500,1, 0x7a3508,43, 0x7a3600,3, 0x7a3684,1, 0x7a36b8,22, 0x7a3720,5, 0x7a3740,2, 0x7a3780,10, 0x7a37c0,10, 0x7a3800,8, 0x7a4000,4, 0x7a4014,15, 0x7a4080,4, 0x7a4094,15, 0x7a4100,13, 0x7a4140,13, 0x7a4180,2, 0x7a4200,29, 0x7a4280,29, 0x7a4300,1, 0x7a4400,44, 0x7a4500,1, 0x7a4508,43, 0x7a4600,3, 0x7a4684,1, 0x7a46b8,22, 0x7a4720,5, 0x7a4740,2, 0x7a4780,10, 0x7a47c0,10, 0x7a4800,8, 0x7a5000,4, 0x7a5014,15, 0x7a5080,4, 0x7a5094,15, 0x7a5100,13, 0x7a5140,13, 0x7a5180,2, 0x7a5200,29, 0x7a5280,29, 0x7a5300,1, 0x7a5400,44, 0x7a5500,1, 0x7a5508,43, 0x7a5600,3, 0x7a5684,1, 0x7a56b8,22, 0x7a5720,5, 0x7a5740,2, 0x7a5780,10, 0x7a57c0,10, 0x7a5800,8, 0x7a6000,4, 0x7a6014,15, 0x7a6080,4, 0x7a6094,15, 0x7a6100,13, 0x7a6140,13, 0x7a6180,2, 0x7a6200,29, 0x7a6280,29, 0x7a6300,1, 0x7a6400,44, 0x7a6500,1, 0x7a6508,43, 0x7a6600,3, 0x7a6684,1, 0x7a66b8,22, 0x7a6720,5, 0x7a6740,2, 0x7a6780,10, 0x7a67c0,10, 0x7a6800,8, 0x7a7000,4, 0x7a7014,15, 0x7a7080,4, 0x7a7094,15, 0x7a7100,13, 0x7a7140,13, 0x7a7180,2, 0x7a7200,29, 0x7a7280,29, 0x7a7300,1, 0x7a7400,44, 0x7a7500,1, 0x7a7508,43, 0x7a7600,3, 0x7a7684,1, 0x7a76b8,22, 0x7a7720,5, 0x7a7740,2, 0x7a7780,10, 0x7a77c0,10, 0x7a7800,8, 0x7a8000,9, 0x7a8104,1, 0x7a8130,41, 0x7a8200,9, 0x7a8304,1, 0x7a8330,41, 0x7a8400,9, 0x7a8504,1, 0x7a8530,41, 0x7a8600,9, 0x7a8704,1, 0x7a8730,41, 0x7a8800,9, 0x7a8904,1, 0x7a8930,41, 0x7a8a00,9, 0x7a8b04,1, 0x7a8b30,41, 0x7a8c00,9, 0x7a8d04,1, 0x7a8d30,41, 0x7a8e00,9, 0x7a8f04,1, 0x7a8f30,41, 0x7a9000,29, 0x7a9078,32, 0x7a9200,81, 0x7a9400,81, 0x7a9600,81, 0x7a9800,19, 0x7aa000,7, 0x7aa020,3, 0x7aa040,7, 0x7aa060,3, 0x7aa080,7, 0x7aa0a0,3, 0x7aa0c0,7, 0x7aa0e0,3, 0x7aa100,7, 0x7aa120,3, 0x7aa140,7, 0x7aa160,3, 0x7aa180,7, 0x7aa1a0,3, 0x7aa1c0,7, 0x7aa1e0,3, 0x7b0000,54, 0x7b0100,238, 0x7b04c0,6, 0x7b04e0,6, 0x7b0500,6, 0x7b0520,6, 0x7b0540,6, 0x7b0560,6, 0x7b0580,6, 0x7b05c0,131, 0x7b07d0,14, 0x7b0810,10, 0x7b0840,3, 0x7b0850,33, 0x7b1000,1, 0x7b1008,10, 0x7b1200,117, 0x7b1400,5, 0x7b1420,5, 0x7b1800,1, 0x7b1884,15, 0x7b1900,2, 0x7b1c00,26, 0x7b1c80,4, 0x7b1cc0,25, 0x7b1d40,6, 0x7b1d60,1, 0x7b1d68,2, 0x7b1d74,3, 0x7b1e00,8, 0x7b1e24,38, 0x7b2000,32, 0x7b2084,1, 0x7b2090,4, 0x7b2100,3, 0x7b2110,3, 0x7b2120,3, 0x7b2130,3, 0x7b2140,3, 0x7b2150,3, 0x7b2160,3, 0x7b2170,3, 0x7b2180,10, 0x7b21b0,3, 0x7b21c0,1, 0x7b2200,16, 0x7b2244,1, 0x7b2250,4, 0x7b2280,16, 0x7b22c4,1, 0x7b22d0,4, 0x7b2300,16, 0x7b2344,1, 0x7b2350,4, 0x7b2380,16, 0x7b23c4,1, 0x7b23d0,4, 0x7b2400,16, 0x7b2444,1, 0x7b2450,4, 0x7b2480,16, 0x7b24c4,1, 0x7b24d0,4, 0x7b2500,16, 0x7b2544,1, 0x7b2550,4, 0x7b2580,16, 0x7b25c4,1, 0x7b25d0,4, 0x7b2600,4, 0x7b2640,13, 0x7b2680,4, 0x7b26c0,13, 0x7b2700,4, 0x7b2740,13, 0x7b2780,4, 0x7b27c0,13, 0x7b2800,4, 0x7b2840,13, 0x7b2880,4, 0x7b28c0,13, 0x7b2900,4, 0x7b2940,13, 0x7b2980,4, 0x7b29c0,13, 0x7b2a00,4, 0x7b2a40,11, 0x7b2a80,4, 0x7b2ac0,11, 0x7b2b00,4, 0x7b2b40,11, 0x7b2b80,4, 0x7b2bc0,11, 0x7b2c00,4, 0x7b2c40,11, 0x7b2c80,4, 0x7b2cc0,11, 0x7b2d00,4, 0x7b2d40,11, 0x7b2d80,4, 0x7b2dc0,11, 0x7b2e00,4, 0x7b2e20,6, 0x7b2e40,4, 0x7b2e60,6, 0x7b2e80,4, 0x7b2ea0,6, 0x7b2ec0,4, 0x7b2ee0,6, 0x7b2f00,4, 0x7b2f20,6, 0x7b2f40,4, 0x7b2f60,6, 0x7b2f80,4, 0x7b2fa0,6, 0x7b2fc0,4, 0x7b2fe0,6, 0x7b3000,20, 0x7c0000,4, 0x7c0014,15, 0x7c0080,4, 0x7c0094,15, 0x7c0100,13, 0x7c0140,13, 0x7c0180,2, 0x7c0200,29, 0x7c0280,29, 0x7c0300,1, 0x7c0400,44, 0x7c0500,1, 0x7c0508,43, 0x7c0600,3, 0x7c0684,1, 0x7c06b8,22, 0x7c0720,5, 0x7c0740,2, 0x7c0780,10, 0x7c07c0,10, 0x7c0800,8, 0x7c1000,4, 0x7c1014,15, 0x7c1080,4, 0x7c1094,15, 0x7c1100,13, 0x7c1140,13, 0x7c1180,2, 0x7c1200,29, 0x7c1280,29, 0x7c1300,1, 0x7c1400,44, 0x7c1500,1, 0x7c1508,43, 0x7c1600,3, 0x7c1684,1, 0x7c16b8,22, 0x7c1720,5, 0x7c1740,2, 0x7c1780,10, 0x7c17c0,10, 0x7c1800,8, 0x7c2000,4, 0x7c2014,15, 0x7c2080,4, 0x7c2094,15, 0x7c2100,13, 0x7c2140,13, 0x7c2180,2, 0x7c2200,29, 0x7c2280,29, 0x7c2300,1, 0x7c2400,44, 0x7c2500,1, 0x7c2508,43, 0x7c2600,3, 0x7c2684,1, 0x7c26b8,22, 0x7c2720,5, 0x7c2740,2, 0x7c2780,10, 0x7c27c0,10, 0x7c2800,8, 0x7c3000,4, 0x7c3014,15, 0x7c3080,4, 0x7c3094,15, 0x7c3100,13, 0x7c3140,13, 0x7c3180,2, 0x7c3200,29, 0x7c3280,29, 0x7c3300,1, 0x7c3400,44, 0x7c3500,1, 0x7c3508,43, 0x7c3600,3, 0x7c3684,1, 0x7c36b8,22, 0x7c3720,5, 0x7c3740,2, 0x7c3780,10, 0x7c37c0,10, 0x7c3800,8, 0x7c4000,4, 0x7c4014,15, 0x7c4080,4, 0x7c4094,15, 0x7c4100,13, 0x7c4140,13, 0x7c4180,2, 0x7c4200,29, 0x7c4280,29, 0x7c4300,1, 0x7c4400,44, 0x7c4500,1, 0x7c4508,43, 0x7c4600,3, 0x7c4684,1, 0x7c46b8,22, 0x7c4720,5, 0x7c4740,2, 0x7c4780,10, 0x7c47c0,10, 0x7c4800,8, 0x7c5000,4, 0x7c5014,15, 0x7c5080,4, 0x7c5094,15, 0x7c5100,13, 0x7c5140,13, 0x7c5180,2, 0x7c5200,29, 0x7c5280,29, 0x7c5300,1, 0x7c5400,44, 0x7c5500,1, 0x7c5508,43, 0x7c5600,3, 0x7c5684,1, 0x7c56b8,22, 0x7c5720,5, 0x7c5740,2, 0x7c5780,10, 0x7c57c0,10, 0x7c5800,8, 0x7c6000,4, 0x7c6014,15, 0x7c6080,4, 0x7c6094,15, 0x7c6100,13, 0x7c6140,13, 0x7c6180,2, 0x7c6200,29, 0x7c6280,29, 0x7c6300,1, 0x7c6400,44, 0x7c6500,1, 0x7c6508,43, 0x7c6600,3, 0x7c6684,1, 0x7c66b8,22, 0x7c6720,5, 0x7c6740,2, 0x7c6780,10, 0x7c67c0,10, 0x7c6800,8, 0x7c7000,4, 0x7c7014,15, 0x7c7080,4, 0x7c7094,15, 0x7c7100,13, 0x7c7140,13, 0x7c7180,2, 0x7c7200,29, 0x7c7280,29, 0x7c7300,1, 0x7c7400,44, 0x7c7500,1, 0x7c7508,43, 0x7c7600,3, 0x7c7684,1, 0x7c76b8,22, 0x7c7720,5, 0x7c7740,2, 0x7c7780,10, 0x7c77c0,10, 0x7c7800,8, 0x7c8000,9, 0x7c8104,1, 0x7c8130,41, 0x7c8200,9, 0x7c8304,1, 0x7c8330,41, 0x7c8400,9, 0x7c8504,1, 0x7c8530,41, 0x7c8600,9, 0x7c8704,1, 0x7c8730,41, 0x7c8800,9, 0x7c8904,1, 0x7c8930,41, 0x7c8a00,9, 0x7c8b04,1, 0x7c8b30,41, 0x7c8c00,9, 0x7c8d04,1, 0x7c8d30,41, 0x7c8e00,9, 0x7c8f04,1, 0x7c8f30,41, 0x7c9000,29, 0x7c9078,32, 0x7c9200,81, 0x7c9400,81, 0x7c9600,81, 0x7c9800,19, 0x7ca000,7, 0x7ca020,3, 0x7ca040,7, 0x7ca060,3, 0x7ca080,7, 0x7ca0a0,3, 0x7ca0c0,7, 0x7ca0e0,3, 0x7ca100,7, 0x7ca120,3, 0x7ca140,7, 0x7ca160,3, 0x7ca180,7, 0x7ca1a0,3, 0x7ca1c0,7, 0x7ca1e0,3, 0x7d0000,54, 0x7d0100,238, 0x7d04c0,6, 0x7d04e0,6, 0x7d0500,6, 0x7d0520,6, 0x7d0540,6, 0x7d0560,6, 0x7d0580,6, 0x7d05c0,131, 0x7d07d0,14, 0x7d0810,10, 0x7d0840,3, 0x7d0850,33, 0x7d1000,1, 0x7d1008,10, 0x7d1200,117, 0x7d1400,5, 0x7d1420,5, 0x7d1800,1, 0x7d1884,15, 0x7d1900,2, 0x7d1c00,26, 0x7d1c80,4, 0x7d1cc0,25, 0x7d1d40,6, 0x7d1d60,1, 0x7d1d68,2, 0x7d1d74,3, 0x7d1e00,8, 0x7d1e24,38, 0x7d2000,32, 0x7d2084,1, 0x7d2090,4, 0x7d2100,3, 0x7d2110,3, 0x7d2120,3, 0x7d2130,3, 0x7d2140,3, 0x7d2150,3, 0x7d2160,3, 0x7d2170,3, 0x7d2180,10, 0x7d21b0,3, 0x7d21c0,1, 0x7d2200,16, 0x7d2244,1, 0x7d2250,4, 0x7d2280,16, 0x7d22c4,1, 0x7d22d0,4, 0x7d2300,16, 0x7d2344,1, 0x7d2350,4, 0x7d2380,16, 0x7d23c4,1, 0x7d23d0,4, 0x7d2400,16, 0x7d2444,1, 0x7d2450,4, 0x7d2480,16, 0x7d24c4,1, 0x7d24d0,4, 0x7d2500,16, 0x7d2544,1, 0x7d2550,4, 0x7d2580,16, 0x7d25c4,1, 0x7d25d0,4, 0x7d2600,4, 0x7d2640,13, 0x7d2680,4, 0x7d26c0,13, 0x7d2700,4, 0x7d2740,13, 0x7d2780,4, 0x7d27c0,13, 0x7d2800,4, 0x7d2840,13, 0x7d2880,4, 0x7d28c0,13, 0x7d2900,4, 0x7d2940,13, 0x7d2980,4, 0x7d29c0,13, 0x7d2a00,4, 0x7d2a40,11, 0x7d2a80,4, 0x7d2ac0,11, 0x7d2b00,4, 0x7d2b40,11, 0x7d2b80,4, 0x7d2bc0,11, 0x7d2c00,4, 0x7d2c40,11, 0x7d2c80,4, 0x7d2cc0,11, 0x7d2d00,4, 0x7d2d40,11, 0x7d2d80,4, 0x7d2dc0,11, 0x7d2e00,4, 0x7d2e20,6, 0x7d2e40,4, 0x7d2e60,6, 0x7d2e80,4, 0x7d2ea0,6, 0x7d2ec0,4, 0x7d2ee0,6, 0x7d2f00,4, 0x7d2f20,6, 0x7d2f40,4, 0x7d2f60,6, 0x7d2f80,4, 0x7d2fa0,6, 0x7d2fc0,4, 0x7d2fe0,6, 0x7d3000,20, 0x7e0000,4, 0x7e0014,15, 0x7e0080,4, 0x7e0094,15, 0x7e0100,13, 0x7e0140,13, 0x7e0180,2, 0x7e0200,29, 0x7e0280,29, 0x7e0300,1, 0x7e0400,44, 0x7e0500,1, 0x7e0508,43, 0x7e0600,3, 0x7e0684,1, 0x7e06b8,22, 0x7e0720,5, 0x7e0740,2, 0x7e0780,10, 0x7e07c0,10, 0x7e0800,8, 0x7e1000,4, 0x7e1014,15, 0x7e1080,4, 0x7e1094,15, 0x7e1100,13, 0x7e1140,13, 0x7e1180,2, 0x7e1200,29, 0x7e1280,29, 0x7e1300,1, 0x7e1400,44, 0x7e1500,1, 0x7e1508,43, 0x7e1600,3, 0x7e1684,1, 0x7e16b8,22, 0x7e1720,5, 0x7e1740,2, 0x7e1780,10, 0x7e17c0,10, 0x7e1800,8, 0x7e2000,4, 0x7e2014,15, 0x7e2080,4, 0x7e2094,15, 0x7e2100,13, 0x7e2140,13, 0x7e2180,2, 0x7e2200,29, 0x7e2280,29, 0x7e2300,1, 0x7e2400,44, 0x7e2500,1, 0x7e2508,43, 0x7e2600,3, 0x7e2684,1, 0x7e26b8,22, 0x7e2720,5, 0x7e2740,2, 0x7e2780,10, 0x7e27c0,10, 0x7e2800,8, 0x7e3000,4, 0x7e3014,15, 0x7e3080,4, 0x7e3094,15, 0x7e3100,13, 0x7e3140,13, 0x7e3180,2, 0x7e3200,29, 0x7e3280,29, 0x7e3300,1, 0x7e3400,44, 0x7e3500,1, 0x7e3508,43, 0x7e3600,3, 0x7e3684,1, 0x7e36b8,22, 0x7e3720,5, 0x7e3740,2, 0x7e3780,10, 0x7e37c0,10, 0x7e3800,8, 0x7e4000,4, 0x7e4014,15, 0x7e4080,4, 0x7e4094,15, 0x7e4100,13, 0x7e4140,13, 0x7e4180,2, 0x7e4200,29, 0x7e4280,29, 0x7e4300,1, 0x7e4400,44, 0x7e4500,1, 0x7e4508,43, 0x7e4600,3, 0x7e4684,1, 0x7e46b8,22, 0x7e4720,5, 0x7e4740,2, 0x7e4780,10, 0x7e47c0,10, 0x7e4800,8, 0x7e5000,4, 0x7e5014,15, 0x7e5080,4, 0x7e5094,15, 0x7e5100,13, 0x7e5140,13, 0x7e5180,2, 0x7e5200,29, 0x7e5280,29, 0x7e5300,1, 0x7e5400,44, 0x7e5500,1, 0x7e5508,43, 0x7e5600,3, 0x7e5684,1, 0x7e56b8,22, 0x7e5720,5, 0x7e5740,2, 0x7e5780,10, 0x7e57c0,10, 0x7e5800,8, 0x7e6000,4, 0x7e6014,15, 0x7e6080,4, 0x7e6094,15, 0x7e6100,13, 0x7e6140,13, 0x7e6180,2, 0x7e6200,29, 0x7e6280,29, 0x7e6300,1, 0x7e6400,44, 0x7e6500,1, 0x7e6508,43, 0x7e6600,3, 0x7e6684,1, 0x7e66b8,22, 0x7e6720,5, 0x7e6740,2, 0x7e6780,10, 0x7e67c0,10, 0x7e6800,8, 0x7e7000,4, 0x7e7014,15, 0x7e7080,4, 0x7e7094,15, 0x7e7100,13, 0x7e7140,13, 0x7e7180,2, 0x7e7200,29, 0x7e7280,29, 0x7e7300,1, 0x7e7400,44, 0x7e7500,1, 0x7e7508,43, 0x7e7600,3, 0x7e7684,1, 0x7e76b8,22, 0x7e7720,5, 0x7e7740,2, 0x7e7780,10, 0x7e77c0,10, 0x7e7800,8, 0x7e8000,9, 0x7e8104,1, 0x7e8130,41, 0x7e8200,9, 0x7e8304,1, 0x7e8330,41, 0x7e8400,9, 0x7e8504,1, 0x7e8530,41, 0x7e8600,9, 0x7e8704,1, 0x7e8730,41, 0x7e8800,9, 0x7e8904,1, 0x7e8930,41, 0x7e8a00,9, 0x7e8b04,1, 0x7e8b30,41, 0x7e8c00,9, 0x7e8d04,1, 0x7e8d30,41, 0x7e8e00,9, 0x7e8f04,1, 0x7e8f30,41, 0x7e9000,29, 0x7e9078,32, 0x7e9200,81, 0x7e9400,81, 0x7e9600,81, 0x7e9800,19, 0x7ea000,7, 0x7ea020,3, 0x7ea040,7, 0x7ea060,3, 0x7ea080,7, 0x7ea0a0,3, 0x7ea0c0,7, 0x7ea0e0,3, 0x7ea100,7, 0x7ea120,3, 0x7ea140,7, 0x7ea160,3, 0x7ea180,7, 0x7ea1a0,3, 0x7ea1c0,7, 0x7ea1e0,3, 0x7f0000,54, 0x7f0100,238, 0x7f04c0,6, 0x7f04e0,6, 0x7f0500,6, 0x7f0520,6, 0x7f0540,6, 0x7f0560,6, 0x7f0580,6, 0x7f05c0,131, 0x7f07d0,14, 0x7f0810,10, 0x7f0840,3, 0x7f0850,33, 0x7f1000,1, 0x7f1008,10, 0x7f1200,117, 0x7f1400,5, 0x7f1420,5, 0x7f1800,1, 0x7f1884,15, 0x7f1900,2, 0x7f1c00,26, 0x7f1c80,4, 0x7f1cc0,25, 0x7f1d40,6, 0x7f1d60,1, 0x7f1d68,2, 0x7f1d74,3, 0x7f1e00,8, 0x7f1e24,38, 0x7f2000,32, 0x7f2084,1, 0x7f2090,4, 0x7f2100,3, 0x7f2110,3, 0x7f2120,3, 0x7f2130,3, 0x7f2140,3, 0x7f2150,3, 0x7f2160,3, 0x7f2170,3, 0x7f2180,10, 0x7f21b0,3, 0x7f21c0,1, 0x7f2200,16, 0x7f2244,1, 0x7f2250,4, 0x7f2280,16, 0x7f22c4,1, 0x7f22d0,4, 0x7f2300,16, 0x7f2344,1, 0x7f2350,4, 0x7f2380,16, 0x7f23c4,1, 0x7f23d0,4, 0x7f2400,16, 0x7f2444,1, 0x7f2450,4, 0x7f2480,16, 0x7f24c4,1, 0x7f24d0,4, 0x7f2500,16, 0x7f2544,1, 0x7f2550,4, 0x7f2580,16, 0x7f25c4,1, 0x7f25d0,4, 0x7f2600,4, 0x7f2640,13, 0x7f2680,4, 0x7f26c0,13, 0x7f2700,4, 0x7f2740,13, 0x7f2780,4, 0x7f27c0,13, 0x7f2800,4, 0x7f2840,13, 0x7f2880,4, 0x7f28c0,13, 0x7f2900,4, 0x7f2940,13, 0x7f2980,4, 0x7f29c0,13, 0x7f2a00,4, 0x7f2a40,11, 0x7f2a80,4, 0x7f2ac0,11, 0x7f2b00,4, 0x7f2b40,11, 0x7f2b80,4, 0x7f2bc0,11, 0x7f2c00,4, 0x7f2c40,11, 0x7f2c80,4, 0x7f2cc0,11, 0x7f2d00,4, 0x7f2d40,11, 0x7f2d80,4, 0x7f2dc0,11, 0x7f2e00,4, 0x7f2e20,6, 0x7f2e40,4, 0x7f2e60,6, 0x7f2e80,4, 0x7f2ea0,6, 0x7f2ec0,4, 0x7f2ee0,6, 0x7f2f00,4, 0x7f2f20,6, 0x7f2f40,4, 0x7f2f60,6, 0x7f2f80,4, 0x7f2fa0,6, 0x7f2fc0,4, 0x7f2fe0,6, 0x7f3000,20, 0x800000,1, 0x800008,32, 0x800800,38, 0x800900,38, 0x800a00,30, 0x800a80,18, 0x800b00,18, 0x800b80,19, 0x800c00,10, 0x800c40,10, 0x800c80,15, 0x801000,38, 0x801100,38, 0x801200,30, 0x801280,18, 0x801300,18, 0x801380,19, 0x801400,10, 0x801440,10, 0x801480,15, 0x801800,38, 0x801900,38, 0x801a00,30, 0x801a80,18, 0x801b00,18, 0x801b80,19, 0x801c00,10, 0x801c40,10, 0x801c80,15, 0x802000,38, 0x802100,38, 0x802200,30, 0x802280,18, 0x802300,18, 0x802380,19, 0x802400,10, 0x802440,10, 0x802480,15, 0x802800,38, 0x802900,38, 0x802a00,30, 0x802a80,18, 0x802b00,18, 0x802b80,19, 0x802c00,10, 0x802c40,10, 0x802c80,15, 0x803000,38, 0x803100,38, 0x803200,30, 0x803280,18, 0x803300,18, 0x803380,19, 0x803400,10, 0x803440,10, 0x803480,15, 0x803800,38, 0x803900,38, 0x803a00,30, 0x803a80,18, 0x803b00,18, 0x803b80,19, 0x803c00,10, 0x803c40,10, 0x803c80,15, 0x804000,38, 0x804100,38, 0x804200,30, 0x804280,18, 0x804300,18, 0x804380,19, 0x804400,10, 0x804440,10, 0x804480,15, 0x804800,3, 0x804814,6, 0x804830,7, 0x804850,3, 0x804860,3, 0x804870,3, 0x804880,9, 0x8048c0,8, 0x804a00,84, 0x804c00,2, 0x804c0c,2, 0x804c20,3, 0x805000,3, 0x805014,6, 0x805030,7, 0x805050,3, 0x805060,3, 0x805070,3, 0x805080,9, 0x8050c0,8, 0x805200,84, 0x805400,2, 0x80540c,2, 0x805420,3, 0x805800,3, 0x805814,6, 0x805830,7, 0x805850,3, 0x805860,3, 0x805870,3, 0x805880,9, 0x8058c0,8, 0x805a00,84, 0x805c00,2, 0x805c0c,2, 0x805c20,3, 0x806000,3, 0x806014,6, 0x806030,7, 0x806050,3, 0x806060,3, 0x806070,3, 0x806080,9, 0x8060c0,8, 0x806200,84, 0x806400,2, 0x80640c,2, 0x806420,3, 0x806800,3, 0x806814,6, 0x806830,7, 0x806850,3, 0x806860,3, 0x806870,3, 0x806880,9, 0x8068c0,8, 0x806a00,84, 0x806c00,2, 0x806c0c,2, 0x806c20,3, 0x807000,3, 0x807014,6, 0x807030,7, 0x807050,3, 0x807060,3, 0x807070,3, 0x807080,9, 0x8070c0,8, 0x807200,84, 0x807400,2, 0x80740c,2, 0x807420,3, 0x807800,3, 0x807814,6, 0x807830,7, 0x807850,3, 0x807860,3, 0x807870,3, 0x807880,9, 0x8078c0,8, 0x807a00,84, 0x807c00,2, 0x807c0c,2, 0x807c20,3, 0x808000,3, 0x808014,6, 0x808030,7, 0x808050,3, 0x808060,3, 0x808070,3, 0x808080,9, 0x8080c0,8, 0x808200,84, 0x808400,2, 0x80840c,2, 0x808420,3, 0x808800,40, 0x810000,9, 0x810040,9, 0x810084,1, 0x81008c,6, 0x8100a8,5, 0x8100c0,21, 0x810200,73, 0x810400,4, 0x810440,29, 0x8104c0,1, 0x810800,9, 0x810840,9, 0x810884,1, 0x81088c,6, 0x8108a8,5, 0x8108c0,21, 0x810a00,73, 0x810c00,4, 0x810c40,29, 0x810cc0,1, 0x811000,9, 0x811040,9, 0x811084,1, 0x81108c,6, 0x8110a8,5, 0x8110c0,21, 0x811200,73, 0x811400,4, 0x811440,29, 0x8114c0,1, 0x811800,9, 0x811840,9, 0x811884,1, 0x81188c,6, 0x8118a8,5, 0x8118c0,21, 0x811a00,73, 0x811c00,4, 0x811c40,29, 0x811cc0,1, 0x812000,9, 0x812040,9, 0x812084,1, 0x81208c,6, 0x8120a8,5, 0x8120c0,21, 0x812200,73, 0x812400,4, 0x812440,29, 0x8124c0,1, 0x812800,9, 0x812840,9, 0x812884,1, 0x81288c,6, 0x8128a8,5, 0x8128c0,21, 0x812a00,73, 0x812c00,4, 0x812c40,29, 0x812cc0,1, 0x813000,9, 0x813040,9, 0x813084,1, 0x81308c,6, 0x8130a8,5, 0x8130c0,21, 0x813200,73, 0x813400,4, 0x813440,29, 0x8134c0,1, 0x813800,9, 0x813840,9, 0x813884,1, 0x81388c,6, 0x8138a8,5, 0x8138c0,21, 0x813a00,73, 0x813c00,4, 0x813c40,29, 0x813cc0,1, 0x814000,6, 0x814024,6, 0x814400,16, 0x814444,1, 0x814450,4, 0x814800,26, 0x814880,4, 0x8148c0,25, 0x814940,6, 0x814960,1, 0x814968,2, 0x814974,3, 0x814a00,8, 0x814a24,50, 0x814c00,4, 0x814c40,15, 0x814c80,4, 0x814cc0,15, 0x814d00,4, 0x814d40,15, 0x814d80,4, 0x814dc0,15, 0x814e00,4, 0x814e40,15, 0x814e80,4, 0x814ec0,15, 0x814f00,4, 0x814f40,15, 0x814f80,4, 0x814fc0,15, 0x815000,32, 0x815084,1, 0x815090,4, 0x815100,3, 0x815110,2, 0x815200,32, 0x815284,1, 0x815290,4, 0x815300,3, 0x815310,2, 0x815400,32, 0x815484,1, 0x815490,4, 0x815500,3, 0x815510,2, 0x815600,32, 0x815684,1, 0x815690,4, 0x815700,3, 0x815710,2, 0x815800,32, 0x815884,1, 0x815890,4, 0x815900,3, 0x815910,2, 0x815a00,32, 0x815a84,1, 0x815a90,4, 0x815b00,3, 0x815b10,2, 0x815c00,32, 0x815c84,1, 0x815c90,4, 0x815d00,3, 0x815d10,2, 0x815e00,32, 0x815e84,1, 0x815e90,4, 0x815f00,3, 0x815f10,7, 0x820000,1, 0x820008,32, 0x820800,38, 0x820900,38, 0x820a00,30, 0x820a80,18, 0x820b00,18, 0x820b80,19, 0x820c00,10, 0x820c40,10, 0x820c80,15, 0x821000,38, 0x821100,38, 0x821200,30, 0x821280,18, 0x821300,18, 0x821380,19, 0x821400,10, 0x821440,10, 0x821480,15, 0x821800,38, 0x821900,38, 0x821a00,30, 0x821a80,18, 0x821b00,18, 0x821b80,19, 0x821c00,10, 0x821c40,10, 0x821c80,15, 0x822000,38, 0x822100,38, 0x822200,30, 0x822280,18, 0x822300,18, 0x822380,19, 0x822400,10, 0x822440,10, 0x822480,15, 0x822800,38, 0x822900,38, 0x822a00,30, 0x822a80,18, 0x822b00,18, 0x822b80,19, 0x822c00,10, 0x822c40,10, 0x822c80,15, 0x823000,38, 0x823100,38, 0x823200,30, 0x823280,18, 0x823300,18, 0x823380,19, 0x823400,10, 0x823440,10, 0x823480,15, 0x823800,38, 0x823900,38, 0x823a00,30, 0x823a80,18, 0x823b00,18, 0x823b80,19, 0x823c00,10, 0x823c40,10, 0x823c80,15, 0x824000,38, 0x824100,38, 0x824200,30, 0x824280,18, 0x824300,18, 0x824380,19, 0x824400,10, 0x824440,10, 0x824480,15, 0x824800,3, 0x824814,6, 0x824830,7, 0x824850,3, 0x824860,3, 0x824870,3, 0x824880,9, 0x8248c0,8, 0x824a00,84, 0x824c00,2, 0x824c0c,2, 0x824c20,3, 0x825000,3, 0x825014,6, 0x825030,7, 0x825050,3, 0x825060,3, 0x825070,3, 0x825080,9, 0x8250c0,8, 0x825200,84, 0x825400,2, 0x82540c,2, 0x825420,3, 0x825800,3, 0x825814,6, 0x825830,7, 0x825850,3, 0x825860,3, 0x825870,3, 0x825880,9, 0x8258c0,8, 0x825a00,84, 0x825c00,2, 0x825c0c,2, 0x825c20,3, 0x826000,3, 0x826014,6, 0x826030,7, 0x826050,3, 0x826060,3, 0x826070,3, 0x826080,9, 0x8260c0,8, 0x826200,84, 0x826400,2, 0x82640c,2, 0x826420,3, 0x826800,3, 0x826814,6, 0x826830,7, 0x826850,3, 0x826860,3, 0x826870,3, 0x826880,9, 0x8268c0,8, 0x826a00,84, 0x826c00,2, 0x826c0c,2, 0x826c20,3, 0x827000,3, 0x827014,6, 0x827030,7, 0x827050,3, 0x827060,3, 0x827070,3, 0x827080,9, 0x8270c0,8, 0x827200,84, 0x827400,2, 0x82740c,2, 0x827420,3, 0x827800,3, 0x827814,6, 0x827830,7, 0x827850,3, 0x827860,3, 0x827870,3, 0x827880,9, 0x8278c0,8, 0x827a00,84, 0x827c00,2, 0x827c0c,2, 0x827c20,3, 0x828000,3, 0x828014,6, 0x828030,7, 0x828050,3, 0x828060,3, 0x828070,3, 0x828080,9, 0x8280c0,8, 0x828200,84, 0x828400,2, 0x82840c,2, 0x828420,3, 0x828800,40, 0x830000,9, 0x830040,9, 0x830084,1, 0x83008c,6, 0x8300a8,5, 0x8300c0,21, 0x830200,73, 0x830400,4, 0x830440,29, 0x8304c0,1, 0x830800,9, 0x830840,9, 0x830884,1, 0x83088c,6, 0x8308a8,5, 0x8308c0,21, 0x830a00,73, 0x830c00,4, 0x830c40,29, 0x830cc0,1, 0x831000,9, 0x831040,9, 0x831084,1, 0x83108c,6, 0x8310a8,5, 0x8310c0,21, 0x831200,73, 0x831400,4, 0x831440,29, 0x8314c0,1, 0x831800,9, 0x831840,9, 0x831884,1, 0x83188c,6, 0x8318a8,5, 0x8318c0,21, 0x831a00,73, 0x831c00,4, 0x831c40,29, 0x831cc0,1, 0x832000,9, 0x832040,9, 0x832084,1, 0x83208c,6, 0x8320a8,5, 0x8320c0,21, 0x832200,73, 0x832400,4, 0x832440,29, 0x8324c0,1, 0x832800,9, 0x832840,9, 0x832884,1, 0x83288c,6, 0x8328a8,5, 0x8328c0,21, 0x832a00,73, 0x832c00,4, 0x832c40,29, 0x832cc0,1, 0x833000,9, 0x833040,9, 0x833084,1, 0x83308c,6, 0x8330a8,5, 0x8330c0,21, 0x833200,73, 0x833400,4, 0x833440,29, 0x8334c0,1, 0x833800,9, 0x833840,9, 0x833884,1, 0x83388c,6, 0x8338a8,5, 0x8338c0,21, 0x833a00,73, 0x833c00,4, 0x833c40,29, 0x833cc0,1, 0x834000,6, 0x834024,6, 0x834400,16, 0x834444,1, 0x834450,4, 0x834800,26, 0x834880,4, 0x8348c0,25, 0x834940,6, 0x834960,1, 0x834968,2, 0x834974,3, 0x834a00,8, 0x834a24,50, 0x834c00,4, 0x834c40,15, 0x834c80,4, 0x834cc0,15, 0x834d00,4, 0x834d40,15, 0x834d80,4, 0x834dc0,15, 0x834e00,4, 0x834e40,15, 0x834e80,4, 0x834ec0,15, 0x834f00,4, 0x834f40,15, 0x834f80,4, 0x834fc0,15, 0x835000,32, 0x835084,1, 0x835090,4, 0x835100,3, 0x835110,2, 0x835200,32, 0x835284,1, 0x835290,4, 0x835300,3, 0x835310,2, 0x835400,32, 0x835484,1, 0x835490,4, 0x835500,3, 0x835510,2, 0x835600,32, 0x835684,1, 0x835690,4, 0x835700,3, 0x835710,2, 0x835800,32, 0x835884,1, 0x835890,4, 0x835900,3, 0x835910,2, 0x835a00,32, 0x835a84,1, 0x835a90,4, 0x835b00,3, 0x835b10,2, 0x835c00,32, 0x835c84,1, 0x835c90,4, 0x835d00,3, 0x835d10,2, 0x835e00,32, 0x835e84,1, 0x835e90,4, 0x835f00,3, 0x835f10,7, 0x840000,1, 0x840008,32, 0x840800,38, 0x840900,38, 0x840a00,30, 0x840a80,18, 0x840b00,18, 0x840b80,19, 0x840c00,10, 0x840c40,10, 0x840c80,15, 0x841000,38, 0x841100,38, 0x841200,30, 0x841280,18, 0x841300,18, 0x841380,19, 0x841400,10, 0x841440,10, 0x841480,15, 0x841800,38, 0x841900,38, 0x841a00,30, 0x841a80,18, 0x841b00,18, 0x841b80,19, 0x841c00,10, 0x841c40,10, 0x841c80,15, 0x842000,38, 0x842100,38, 0x842200,30, 0x842280,18, 0x842300,18, 0x842380,19, 0x842400,10, 0x842440,10, 0x842480,15, 0x842800,38, 0x842900,38, 0x842a00,30, 0x842a80,18, 0x842b00,18, 0x842b80,19, 0x842c00,10, 0x842c40,10, 0x842c80,15, 0x843000,38, 0x843100,38, 0x843200,30, 0x843280,18, 0x843300,18, 0x843380,19, 0x843400,10, 0x843440,10, 0x843480,15, 0x843800,38, 0x843900,38, 0x843a00,30, 0x843a80,18, 0x843b00,18, 0x843b80,19, 0x843c00,10, 0x843c40,10, 0x843c80,15, 0x844000,38, 0x844100,38, 0x844200,30, 0x844280,18, 0x844300,18, 0x844380,19, 0x844400,10, 0x844440,10, 0x844480,15, 0x844800,3, 0x844814,6, 0x844830,7, 0x844850,3, 0x844860,3, 0x844870,3, 0x844880,9, 0x8448c0,8, 0x844a00,84, 0x844c00,2, 0x844c0c,2, 0x844c20,3, 0x845000,3, 0x845014,6, 0x845030,7, 0x845050,3, 0x845060,3, 0x845070,3, 0x845080,9, 0x8450c0,8, 0x845200,84, 0x845400,2, 0x84540c,2, 0x845420,3, 0x845800,3, 0x845814,6, 0x845830,7, 0x845850,3, 0x845860,3, 0x845870,3, 0x845880,9, 0x8458c0,8, 0x845a00,84, 0x845c00,2, 0x845c0c,2, 0x845c20,3, 0x846000,3, 0x846014,6, 0x846030,7, 0x846050,3, 0x846060,3, 0x846070,3, 0x846080,9, 0x8460c0,8, 0x846200,84, 0x846400,2, 0x84640c,2, 0x846420,3, 0x846800,3, 0x846814,6, 0x846830,7, 0x846850,3, 0x846860,3, 0x846870,3, 0x846880,9, 0x8468c0,8, 0x846a00,84, 0x846c00,2, 0x846c0c,2, 0x846c20,3, 0x847000,3, 0x847014,6, 0x847030,7, 0x847050,3, 0x847060,3, 0x847070,3, 0x847080,9, 0x8470c0,8, 0x847200,84, 0x847400,2, 0x84740c,2, 0x847420,3, 0x847800,3, 0x847814,6, 0x847830,7, 0x847850,3, 0x847860,3, 0x847870,3, 0x847880,9, 0x8478c0,8, 0x847a00,84, 0x847c00,2, 0x847c0c,2, 0x847c20,3, 0x848000,3, 0x848014,6, 0x848030,7, 0x848050,3, 0x848060,3, 0x848070,3, 0x848080,9, 0x8480c0,8, 0x848200,84, 0x848400,2, 0x84840c,2, 0x848420,3, 0x848800,40, 0x850000,9, 0x850040,9, 0x850084,1, 0x85008c,6, 0x8500a8,5, 0x8500c0,21, 0x850200,73, 0x850400,4, 0x850440,29, 0x8504c0,1, 0x850800,9, 0x850840,9, 0x850884,1, 0x85088c,6, 0x8508a8,5, 0x8508c0,21, 0x850a00,73, 0x850c00,4, 0x850c40,29, 0x850cc0,1, 0x851000,9, 0x851040,9, 0x851084,1, 0x85108c,6, 0x8510a8,5, 0x8510c0,21, 0x851200,73, 0x851400,4, 0x851440,29, 0x8514c0,1, 0x851800,9, 0x851840,9, 0x851884,1, 0x85188c,6, 0x8518a8,5, 0x8518c0,21, 0x851a00,73, 0x851c00,4, 0x851c40,29, 0x851cc0,1, 0x852000,9, 0x852040,9, 0x852084,1, 0x85208c,6, 0x8520a8,5, 0x8520c0,21, 0x852200,73, 0x852400,4, 0x852440,29, 0x8524c0,1, 0x852800,9, 0x852840,9, 0x852884,1, 0x85288c,6, 0x8528a8,5, 0x8528c0,21, 0x852a00,73, 0x852c00,4, 0x852c40,29, 0x852cc0,1, 0x853000,9, 0x853040,9, 0x853084,1, 0x85308c,6, 0x8530a8,5, 0x8530c0,21, 0x853200,73, 0x853400,4, 0x853440,29, 0x8534c0,1, 0x853800,9, 0x853840,9, 0x853884,1, 0x85388c,6, 0x8538a8,5, 0x8538c0,21, 0x853a00,73, 0x853c00,4, 0x853c40,29, 0x853cc0,1, 0x854000,6, 0x854024,6, 0x854400,16, 0x854444,1, 0x854450,4, 0x854800,26, 0x854880,4, 0x8548c0,25, 0x854940,6, 0x854960,1, 0x854968,2, 0x854974,3, 0x854a00,8, 0x854a24,50, 0x854c00,4, 0x854c40,15, 0x854c80,4, 0x854cc0,15, 0x854d00,4, 0x854d40,15, 0x854d80,4, 0x854dc0,15, 0x854e00,4, 0x854e40,15, 0x854e80,4, 0x854ec0,15, 0x854f00,4, 0x854f40,15, 0x854f80,4, 0x854fc0,15, 0x855000,32, 0x855084,1, 0x855090,4, 0x855100,3, 0x855110,2, 0x855200,32, 0x855284,1, 0x855290,4, 0x855300,3, 0x855310,2, 0x855400,32, 0x855484,1, 0x855490,4, 0x855500,3, 0x855510,2, 0x855600,32, 0x855684,1, 0x855690,4, 0x855700,3, 0x855710,2, 0x855800,32, 0x855884,1, 0x855890,4, 0x855900,3, 0x855910,2, 0x855a00,32, 0x855a84,1, 0x855a90,4, 0x855b00,3, 0x855b10,2, 0x855c00,32, 0x855c84,1, 0x855c90,4, 0x855d00,3, 0x855d10,2, 0x855e00,32, 0x855e84,1, 0x855e90,4, 0x855f00,3, 0x855f10,7, 0x860000,1, 0x860008,32, 0x860800,38, 0x860900,38, 0x860a00,30, 0x860a80,18, 0x860b00,18, 0x860b80,19, 0x860c00,10, 0x860c40,10, 0x860c80,15, 0x861000,38, 0x861100,38, 0x861200,30, 0x861280,18, 0x861300,18, 0x861380,19, 0x861400,10, 0x861440,10, 0x861480,15, 0x861800,38, 0x861900,38, 0x861a00,30, 0x861a80,18, 0x861b00,18, 0x861b80,19, 0x861c00,10, 0x861c40,10, 0x861c80,15, 0x862000,38, 0x862100,38, 0x862200,30, 0x862280,18, 0x862300,18, 0x862380,19, 0x862400,10, 0x862440,10, 0x862480,15, 0x862800,38, 0x862900,38, 0x862a00,30, 0x862a80,18, 0x862b00,18, 0x862b80,19, 0x862c00,10, 0x862c40,10, 0x862c80,15, 0x863000,38, 0x863100,38, 0x863200,30, 0x863280,18, 0x863300,18, 0x863380,19, 0x863400,10, 0x863440,10, 0x863480,15, 0x863800,38, 0x863900,38, 0x863a00,30, 0x863a80,18, 0x863b00,18, 0x863b80,19, 0x863c00,10, 0x863c40,10, 0x863c80,15, 0x864000,38, 0x864100,38, 0x864200,30, 0x864280,18, 0x864300,18, 0x864380,19, 0x864400,10, 0x864440,10, 0x864480,15, 0x864800,3, 0x864814,6, 0x864830,7, 0x864850,3, 0x864860,3, 0x864870,3, 0x864880,9, 0x8648c0,8, 0x864a00,84, 0x864c00,2, 0x864c0c,2, 0x864c20,3, 0x865000,3, 0x865014,6, 0x865030,7, 0x865050,3, 0x865060,3, 0x865070,3, 0x865080,9, 0x8650c0,8, 0x865200,84, 0x865400,2, 0x86540c,2, 0x865420,3, 0x865800,3, 0x865814,6, 0x865830,7, 0x865850,3, 0x865860,3, 0x865870,3, 0x865880,9, 0x8658c0,8, 0x865a00,84, 0x865c00,2, 0x865c0c,2, 0x865c20,3, 0x866000,3, 0x866014,6, 0x866030,7, 0x866050,3, 0x866060,3, 0x866070,3, 0x866080,9, 0x8660c0,8, 0x866200,84, 0x866400,2, 0x86640c,2, 0x866420,3, 0x866800,3, 0x866814,6, 0x866830,7, 0x866850,3, 0x866860,3, 0x866870,3, 0x866880,9, 0x8668c0,8, 0x866a00,84, 0x866c00,2, 0x866c0c,2, 0x866c20,3, 0x867000,3, 0x867014,6, 0x867030,7, 0x867050,3, 0x867060,3, 0x867070,3, 0x867080,9, 0x8670c0,8, 0x867200,84, 0x867400,2, 0x86740c,2, 0x867420,3, 0x867800,3, 0x867814,6, 0x867830,7, 0x867850,3, 0x867860,3, 0x867870,3, 0x867880,9, 0x8678c0,8, 0x867a00,84, 0x867c00,2, 0x867c0c,2, 0x867c20,3, 0x868000,3, 0x868014,6, 0x868030,7, 0x868050,3, 0x868060,3, 0x868070,3, 0x868080,9, 0x8680c0,8, 0x868200,84, 0x868400,2, 0x86840c,2, 0x868420,3, 0x868800,40, 0x870000,9, 0x870040,9, 0x870084,1, 0x87008c,6, 0x8700a8,5, 0x8700c0,21, 0x870200,73, 0x870400,4, 0x870440,29, 0x8704c0,1, 0x870800,9, 0x870840,9, 0x870884,1, 0x87088c,6, 0x8708a8,5, 0x8708c0,21, 0x870a00,73, 0x870c00,4, 0x870c40,29, 0x870cc0,1, 0x871000,9, 0x871040,9, 0x871084,1, 0x87108c,6, 0x8710a8,5, 0x8710c0,21, 0x871200,73, 0x871400,4, 0x871440,29, 0x8714c0,1, 0x871800,9, 0x871840,9, 0x871884,1, 0x87188c,6, 0x8718a8,5, 0x8718c0,21, 0x871a00,73, 0x871c00,4, 0x871c40,29, 0x871cc0,1, 0x872000,9, 0x872040,9, 0x872084,1, 0x87208c,6, 0x8720a8,5, 0x8720c0,21, 0x872200,73, 0x872400,4, 0x872440,29, 0x8724c0,1, 0x872800,9, 0x872840,9, 0x872884,1, 0x87288c,6, 0x8728a8,5, 0x8728c0,21, 0x872a00,73, 0x872c00,4, 0x872c40,29, 0x872cc0,1, 0x873000,9, 0x873040,9, 0x873084,1, 0x87308c,6, 0x8730a8,5, 0x8730c0,21, 0x873200,73, 0x873400,4, 0x873440,29, 0x8734c0,1, 0x873800,9, 0x873840,9, 0x873884,1, 0x87388c,6, 0x8738a8,5, 0x8738c0,21, 0x873a00,73, 0x873c00,4, 0x873c40,29, 0x873cc0,1, 0x874000,6, 0x874024,6, 0x874400,16, 0x874444,1, 0x874450,4, 0x874800,26, 0x874880,4, 0x8748c0,25, 0x874940,6, 0x874960,1, 0x874968,2, 0x874974,3, 0x874a00,8, 0x874a24,50, 0x874c00,4, 0x874c40,15, 0x874c80,4, 0x874cc0,15, 0x874d00,4, 0x874d40,15, 0x874d80,4, 0x874dc0,15, 0x874e00,4, 0x874e40,15, 0x874e80,4, 0x874ec0,15, 0x874f00,4, 0x874f40,15, 0x874f80,4, 0x874fc0,15, 0x875000,32, 0x875084,1, 0x875090,4, 0x875100,3, 0x875110,2, 0x875200,32, 0x875284,1, 0x875290,4, 0x875300,3, 0x875310,2, 0x875400,32, 0x875484,1, 0x875490,4, 0x875500,3, 0x875510,2, 0x875600,32, 0x875684,1, 0x875690,4, 0x875700,3, 0x875710,2, 0x875800,32, 0x875884,1, 0x875890,4, 0x875900,3, 0x875910,2, 0x875a00,32, 0x875a84,1, 0x875a90,4, 0x875b00,3, 0x875b10,2, 0x875c00,32, 0x875c84,1, 0x875c90,4, 0x875d00,3, 0x875d10,2, 0x875e00,32, 0x875e84,1, 0x875e90,4, 0x875f00,3, 0x875f10,7, 0x880000,1, 0x880008,32, 0x880800,38, 0x880900,38, 0x880a00,30, 0x880a80,18, 0x880b00,18, 0x880b80,19, 0x880c00,10, 0x880c40,10, 0x880c80,15, 0x881000,38, 0x881100,38, 0x881200,30, 0x881280,18, 0x881300,18, 0x881380,19, 0x881400,10, 0x881440,10, 0x881480,15, 0x881800,38, 0x881900,38, 0x881a00,30, 0x881a80,18, 0x881b00,18, 0x881b80,19, 0x881c00,10, 0x881c40,10, 0x881c80,15, 0x882000,38, 0x882100,38, 0x882200,30, 0x882280,18, 0x882300,18, 0x882380,19, 0x882400,10, 0x882440,10, 0x882480,15, 0x882800,38, 0x882900,38, 0x882a00,30, 0x882a80,18, 0x882b00,18, 0x882b80,19, 0x882c00,10, 0x882c40,10, 0x882c80,15, 0x883000,38, 0x883100,38, 0x883200,30, 0x883280,18, 0x883300,18, 0x883380,19, 0x883400,10, 0x883440,10, 0x883480,15, 0x883800,38, 0x883900,38, 0x883a00,30, 0x883a80,18, 0x883b00,18, 0x883b80,19, 0x883c00,10, 0x883c40,10, 0x883c80,15, 0x884000,38, 0x884100,38, 0x884200,30, 0x884280,18, 0x884300,18, 0x884380,19, 0x884400,10, 0x884440,10, 0x884480,15, 0x884800,3, 0x884814,6, 0x884830,7, 0x884850,3, 0x884860,3, 0x884870,3, 0x884880,9, 0x8848c0,8, 0x884a00,84, 0x884c00,2, 0x884c0c,2, 0x884c20,3, 0x885000,3, 0x885014,6, 0x885030,7, 0x885050,3, 0x885060,3, 0x885070,3, 0x885080,9, 0x8850c0,8, 0x885200,84, 0x885400,2, 0x88540c,2, 0x885420,3, 0x885800,3, 0x885814,6, 0x885830,7, 0x885850,3, 0x885860,3, 0x885870,3, 0x885880,9, 0x8858c0,8, 0x885a00,84, 0x885c00,2, 0x885c0c,2, 0x885c20,3, 0x886000,3, 0x886014,6, 0x886030,7, 0x886050,3, 0x886060,3, 0x886070,3, 0x886080,9, 0x8860c0,8, 0x886200,84, 0x886400,2, 0x88640c,2, 0x886420,3, 0x886800,3, 0x886814,6, 0x886830,7, 0x886850,3, 0x886860,3, 0x886870,3, 0x886880,9, 0x8868c0,8, 0x886a00,84, 0x886c00,2, 0x886c0c,2, 0x886c20,3, 0x887000,3, 0x887014,6, 0x887030,7, 0x887050,3, 0x887060,3, 0x887070,3, 0x887080,9, 0x8870c0,8, 0x887200,84, 0x887400,2, 0x88740c,2, 0x887420,3, 0x887800,3, 0x887814,6, 0x887830,7, 0x887850,3, 0x887860,3, 0x887870,3, 0x887880,9, 0x8878c0,8, 0x887a00,84, 0x887c00,2, 0x887c0c,2, 0x887c20,3, 0x888000,3, 0x888014,6, 0x888030,7, 0x888050,3, 0x888060,3, 0x888070,3, 0x888080,9, 0x8880c0,8, 0x888200,84, 0x888400,2, 0x88840c,2, 0x888420,3, 0x888800,40, 0x890000,9, 0x890040,9, 0x890084,1, 0x89008c,6, 0x8900a8,5, 0x8900c0,21, 0x890200,73, 0x890400,4, 0x890440,29, 0x8904c0,1, 0x890800,9, 0x890840,9, 0x890884,1, 0x89088c,6, 0x8908a8,5, 0x8908c0,21, 0x890a00,73, 0x890c00,4, 0x890c40,29, 0x890cc0,1, 0x891000,9, 0x891040,9, 0x891084,1, 0x89108c,6, 0x8910a8,5, 0x8910c0,21, 0x891200,73, 0x891400,4, 0x891440,29, 0x8914c0,1, 0x891800,9, 0x891840,9, 0x891884,1, 0x89188c,6, 0x8918a8,5, 0x8918c0,21, 0x891a00,73, 0x891c00,4, 0x891c40,29, 0x891cc0,1, 0x892000,9, 0x892040,9, 0x892084,1, 0x89208c,6, 0x8920a8,5, 0x8920c0,21, 0x892200,73, 0x892400,4, 0x892440,29, 0x8924c0,1, 0x892800,9, 0x892840,9, 0x892884,1, 0x89288c,6, 0x8928a8,5, 0x8928c0,21, 0x892a00,73, 0x892c00,4, 0x892c40,29, 0x892cc0,1, 0x893000,9, 0x893040,9, 0x893084,1, 0x89308c,6, 0x8930a8,5, 0x8930c0,21, 0x893200,73, 0x893400,4, 0x893440,29, 0x8934c0,1, 0x893800,9, 0x893840,9, 0x893884,1, 0x89388c,6, 0x8938a8,5, 0x8938c0,21, 0x893a00,73, 0x893c00,4, 0x893c40,29, 0x893cc0,1, 0x894000,6, 0x894024,6, 0x894400,16, 0x894444,1, 0x894450,4, 0x894800,26, 0x894880,4, 0x8948c0,25, 0x894940,6, 0x894960,1, 0x894968,2, 0x894974,3, 0x894a00,8, 0x894a24,50, 0x894c00,4, 0x894c40,15, 0x894c80,4, 0x894cc0,15, 0x894d00,4, 0x894d40,15, 0x894d80,4, 0x894dc0,15, 0x894e00,4, 0x894e40,15, 0x894e80,4, 0x894ec0,15, 0x894f00,4, 0x894f40,15, 0x894f80,4, 0x894fc0,15, 0x895000,32, 0x895084,1, 0x895090,4, 0x895100,3, 0x895110,2, 0x895200,32, 0x895284,1, 0x895290,4, 0x895300,3, 0x895310,2, 0x895400,32, 0x895484,1, 0x895490,4, 0x895500,3, 0x895510,2, 0x895600,32, 0x895684,1, 0x895690,4, 0x895700,3, 0x895710,2, 0x895800,32, 0x895884,1, 0x895890,4, 0x895900,3, 0x895910,2, 0x895a00,32, 0x895a84,1, 0x895a90,4, 0x895b00,3, 0x895b10,2, 0x895c00,32, 0x895c84,1, 0x895c90,4, 0x895d00,3, 0x895d10,2, 0x895e00,32, 0x895e84,1, 0x895e90,4, 0x895f00,3, 0x895f10,7, 0x8a0000,1, 0x8a0008,32, 0x8a0800,38, 0x8a0900,38, 0x8a0a00,30, 0x8a0a80,18, 0x8a0b00,18, 0x8a0b80,19, 0x8a0c00,10, 0x8a0c40,10, 0x8a0c80,15, 0x8a1000,38, 0x8a1100,38, 0x8a1200,30, 0x8a1280,18, 0x8a1300,18, 0x8a1380,19, 0x8a1400,10, 0x8a1440,10, 0x8a1480,15, 0x8a1800,38, 0x8a1900,38, 0x8a1a00,30, 0x8a1a80,18, 0x8a1b00,18, 0x8a1b80,19, 0x8a1c00,10, 0x8a1c40,10, 0x8a1c80,15, 0x8a2000,38, 0x8a2100,38, 0x8a2200,30, 0x8a2280,18, 0x8a2300,18, 0x8a2380,19, 0x8a2400,10, 0x8a2440,10, 0x8a2480,15, 0x8a2800,38, 0x8a2900,38, 0x8a2a00,30, 0x8a2a80,18, 0x8a2b00,18, 0x8a2b80,19, 0x8a2c00,10, 0x8a2c40,10, 0x8a2c80,15, 0x8a3000,38, 0x8a3100,38, 0x8a3200,30, 0x8a3280,18, 0x8a3300,18, 0x8a3380,19, 0x8a3400,10, 0x8a3440,10, 0x8a3480,15, 0x8a3800,38, 0x8a3900,38, 0x8a3a00,30, 0x8a3a80,18, 0x8a3b00,18, 0x8a3b80,19, 0x8a3c00,10, 0x8a3c40,10, 0x8a3c80,15, 0x8a4000,38, 0x8a4100,38, 0x8a4200,30, 0x8a4280,18, 0x8a4300,18, 0x8a4380,19, 0x8a4400,10, 0x8a4440,10, 0x8a4480,15, 0x8a4800,3, 0x8a4814,6, 0x8a4830,7, 0x8a4850,3, 0x8a4860,3, 0x8a4870,3, 0x8a4880,9, 0x8a48c0,8, 0x8a4a00,84, 0x8a4c00,2, 0x8a4c0c,2, 0x8a4c20,3, 0x8a5000,3, 0x8a5014,6, 0x8a5030,7, 0x8a5050,3, 0x8a5060,3, 0x8a5070,3, 0x8a5080,9, 0x8a50c0,8, 0x8a5200,84, 0x8a5400,2, 0x8a540c,2, 0x8a5420,3, 0x8a5800,3, 0x8a5814,6, 0x8a5830,7, 0x8a5850,3, 0x8a5860,3, 0x8a5870,3, 0x8a5880,9, 0x8a58c0,8, 0x8a5a00,84, 0x8a5c00,2, 0x8a5c0c,2, 0x8a5c20,3, 0x8a6000,3, 0x8a6014,6, 0x8a6030,7, 0x8a6050,3, 0x8a6060,3, 0x8a6070,3, 0x8a6080,9, 0x8a60c0,8, 0x8a6200,84, 0x8a6400,2, 0x8a640c,2, 0x8a6420,3, 0x8a6800,3, 0x8a6814,6, 0x8a6830,7, 0x8a6850,3, 0x8a6860,3, 0x8a6870,3, 0x8a6880,9, 0x8a68c0,8, 0x8a6a00,84, 0x8a6c00,2, 0x8a6c0c,2, 0x8a6c20,3, 0x8a7000,3, 0x8a7014,6, 0x8a7030,7, 0x8a7050,3, 0x8a7060,3, 0x8a7070,3, 0x8a7080,9, 0x8a70c0,8, 0x8a7200,84, 0x8a7400,2, 0x8a740c,2, 0x8a7420,3, 0x8a7800,3, 0x8a7814,6, 0x8a7830,7, 0x8a7850,3, 0x8a7860,3, 0x8a7870,3, 0x8a7880,9, 0x8a78c0,8, 0x8a7a00,84, 0x8a7c00,2, 0x8a7c0c,2, 0x8a7c20,3, 0x8a8000,3, 0x8a8014,6, 0x8a8030,7, 0x8a8050,3, 0x8a8060,3, 0x8a8070,3, 0x8a8080,9, 0x8a80c0,8, 0x8a8200,84, 0x8a8400,2, 0x8a840c,2, 0x8a8420,3, 0x8a8800,40, 0x8b0000,9, 0x8b0040,9, 0x8b0084,1, 0x8b008c,6, 0x8b00a8,5, 0x8b00c0,21, 0x8b0200,73, 0x8b0400,4, 0x8b0440,29, 0x8b04c0,1, 0x8b0800,9, 0x8b0840,9, 0x8b0884,1, 0x8b088c,6, 0x8b08a8,5, 0x8b08c0,21, 0x8b0a00,73, 0x8b0c00,4, 0x8b0c40,29, 0x8b0cc0,1, 0x8b1000,9, 0x8b1040,9, 0x8b1084,1, 0x8b108c,6, 0x8b10a8,5, 0x8b10c0,21, 0x8b1200,73, 0x8b1400,4, 0x8b1440,29, 0x8b14c0,1, 0x8b1800,9, 0x8b1840,9, 0x8b1884,1, 0x8b188c,6, 0x8b18a8,5, 0x8b18c0,21, 0x8b1a00,73, 0x8b1c00,4, 0x8b1c40,29, 0x8b1cc0,1, 0x8b2000,9, 0x8b2040,9, 0x8b2084,1, 0x8b208c,6, 0x8b20a8,5, 0x8b20c0,21, 0x8b2200,73, 0x8b2400,4, 0x8b2440,29, 0x8b24c0,1, 0x8b2800,9, 0x8b2840,9, 0x8b2884,1, 0x8b288c,6, 0x8b28a8,5, 0x8b28c0,21, 0x8b2a00,73, 0x8b2c00,4, 0x8b2c40,29, 0x8b2cc0,1, 0x8b3000,9, 0x8b3040,9, 0x8b3084,1, 0x8b308c,6, 0x8b30a8,5, 0x8b30c0,21, 0x8b3200,73, 0x8b3400,4, 0x8b3440,29, 0x8b34c0,1, 0x8b3800,9, 0x8b3840,9, 0x8b3884,1, 0x8b388c,6, 0x8b38a8,5, 0x8b38c0,21, 0x8b3a00,73, 0x8b3c00,4, 0x8b3c40,29, 0x8b3cc0,1, 0x8b4000,6, 0x8b4024,6, 0x8b4400,16, 0x8b4444,1, 0x8b4450,4, 0x8b4800,26, 0x8b4880,4, 0x8b48c0,25, 0x8b4940,6, 0x8b4960,1, 0x8b4968,2, 0x8b4974,3, 0x8b4a00,8, 0x8b4a24,50, 0x8b4c00,4, 0x8b4c40,15, 0x8b4c80,4, 0x8b4cc0,15, 0x8b4d00,4, 0x8b4d40,15, 0x8b4d80,4, 0x8b4dc0,15, 0x8b4e00,4, 0x8b4e40,15, 0x8b4e80,4, 0x8b4ec0,15, 0x8b4f00,4, 0x8b4f40,15, 0x8b4f80,4, 0x8b4fc0,15, 0x8b5000,32, 0x8b5084,1, 0x8b5090,4, 0x8b5100,3, 0x8b5110,2, 0x8b5200,32, 0x8b5284,1, 0x8b5290,4, 0x8b5300,3, 0x8b5310,2, 0x8b5400,32, 0x8b5484,1, 0x8b5490,4, 0x8b5500,3, 0x8b5510,2, 0x8b5600,32, 0x8b5684,1, 0x8b5690,4, 0x8b5700,3, 0x8b5710,2, 0x8b5800,32, 0x8b5884,1, 0x8b5890,4, 0x8b5900,3, 0x8b5910,2, 0x8b5a00,32, 0x8b5a84,1, 0x8b5a90,4, 0x8b5b00,3, 0x8b5b10,2, 0x8b5c00,32, 0x8b5c84,1, 0x8b5c90,4, 0x8b5d00,3, 0x8b5d10,2, 0x8b5e00,32, 0x8b5e84,1, 0x8b5e90,4, 0x8b5f00,3, 0x8b5f10,7, 0x8c0000,1, 0x8c0008,32, 0x8c0800,38, 0x8c0900,38, 0x8c0a00,30, 0x8c0a80,18, 0x8c0b00,18, 0x8c0b80,19, 0x8c0c00,10, 0x8c0c40,10, 0x8c0c80,15, 0x8c1000,38, 0x8c1100,38, 0x8c1200,30, 0x8c1280,18, 0x8c1300,18, 0x8c1380,19, 0x8c1400,10, 0x8c1440,10, 0x8c1480,15, 0x8c1800,38, 0x8c1900,38, 0x8c1a00,30, 0x8c1a80,18, 0x8c1b00,18, 0x8c1b80,19, 0x8c1c00,10, 0x8c1c40,10, 0x8c1c80,15, 0x8c2000,38, 0x8c2100,38, 0x8c2200,30, 0x8c2280,18, 0x8c2300,18, 0x8c2380,19, 0x8c2400,10, 0x8c2440,10, 0x8c2480,15, 0x8c2800,38, 0x8c2900,38, 0x8c2a00,30, 0x8c2a80,18, 0x8c2b00,18, 0x8c2b80,19, 0x8c2c00,10, 0x8c2c40,10, 0x8c2c80,15, 0x8c3000,38, 0x8c3100,38, 0x8c3200,30, 0x8c3280,18, 0x8c3300,18, 0x8c3380,19, 0x8c3400,10, 0x8c3440,10, 0x8c3480,15, 0x8c3800,38, 0x8c3900,38, 0x8c3a00,30, 0x8c3a80,18, 0x8c3b00,18, 0x8c3b80,19, 0x8c3c00,10, 0x8c3c40,10, 0x8c3c80,15, 0x8c4000,38, 0x8c4100,38, 0x8c4200,30, 0x8c4280,18, 0x8c4300,18, 0x8c4380,19, 0x8c4400,10, 0x8c4440,10, 0x8c4480,15, 0x8c4800,3, 0x8c4814,6, 0x8c4830,7, 0x8c4850,3, 0x8c4860,3, 0x8c4870,3, 0x8c4880,9, 0x8c48c0,8, 0x8c4a00,84, 0x8c4c00,2, 0x8c4c0c,2, 0x8c4c20,3, 0x8c5000,3, 0x8c5014,6, 0x8c5030,7, 0x8c5050,3, 0x8c5060,3, 0x8c5070,3, 0x8c5080,9, 0x8c50c0,8, 0x8c5200,84, 0x8c5400,2, 0x8c540c,2, 0x8c5420,3, 0x8c5800,3, 0x8c5814,6, 0x8c5830,7, 0x8c5850,3, 0x8c5860,3, 0x8c5870,3, 0x8c5880,9, 0x8c58c0,8, 0x8c5a00,84, 0x8c5c00,2, 0x8c5c0c,2, 0x8c5c20,3, 0x8c6000,3, 0x8c6014,6, 0x8c6030,7, 0x8c6050,3, 0x8c6060,3, 0x8c6070,3, 0x8c6080,9, 0x8c60c0,8, 0x8c6200,84, 0x8c6400,2, 0x8c640c,2, 0x8c6420,3, 0x8c6800,3, 0x8c6814,6, 0x8c6830,7, 0x8c6850,3, 0x8c6860,3, 0x8c6870,3, 0x8c6880,9, 0x8c68c0,8, 0x8c6a00,84, 0x8c6c00,2, 0x8c6c0c,2, 0x8c6c20,3, 0x8c7000,3, 0x8c7014,6, 0x8c7030,7, 0x8c7050,3, 0x8c7060,3, 0x8c7070,3, 0x8c7080,9, 0x8c70c0,8, 0x8c7200,84, 0x8c7400,2, 0x8c740c,2, 0x8c7420,3, 0x8c7800,3, 0x8c7814,6, 0x8c7830,7, 0x8c7850,3, 0x8c7860,3, 0x8c7870,3, 0x8c7880,9, 0x8c78c0,8, 0x8c7a00,84, 0x8c7c00,2, 0x8c7c0c,2, 0x8c7c20,3, 0x8c8000,3, 0x8c8014,6, 0x8c8030,7, 0x8c8050,3, 0x8c8060,3, 0x8c8070,3, 0x8c8080,9, 0x8c80c0,8, 0x8c8200,84, 0x8c8400,2, 0x8c840c,2, 0x8c8420,3, 0x8c8800,40, 0x8d0000,9, 0x8d0040,9, 0x8d0084,1, 0x8d008c,6, 0x8d00a8,5, 0x8d00c0,21, 0x8d0200,73, 0x8d0400,4, 0x8d0440,29, 0x8d04c0,1, 0x8d0800,9, 0x8d0840,9, 0x8d0884,1, 0x8d088c,6, 0x8d08a8,5, 0x8d08c0,21, 0x8d0a00,73, 0x8d0c00,4, 0x8d0c40,29, 0x8d0cc0,1, 0x8d1000,9, 0x8d1040,9, 0x8d1084,1, 0x8d108c,6, 0x8d10a8,5, 0x8d10c0,21, 0x8d1200,73, 0x8d1400,4, 0x8d1440,29, 0x8d14c0,1, 0x8d1800,9, 0x8d1840,9, 0x8d1884,1, 0x8d188c,6, 0x8d18a8,5, 0x8d18c0,21, 0x8d1a00,73, 0x8d1c00,4, 0x8d1c40,29, 0x8d1cc0,1, 0x8d2000,9, 0x8d2040,9, 0x8d2084,1, 0x8d208c,6, 0x8d20a8,5, 0x8d20c0,21, 0x8d2200,73, 0x8d2400,4, 0x8d2440,29, 0x8d24c0,1, 0x8d2800,9, 0x8d2840,9, 0x8d2884,1, 0x8d288c,6, 0x8d28a8,5, 0x8d28c0,21, 0x8d2a00,73, 0x8d2c00,4, 0x8d2c40,29, 0x8d2cc0,1, 0x8d3000,9, 0x8d3040,9, 0x8d3084,1, 0x8d308c,6, 0x8d30a8,5, 0x8d30c0,21, 0x8d3200,73, 0x8d3400,4, 0x8d3440,29, 0x8d34c0,1, 0x8d3800,9, 0x8d3840,9, 0x8d3884,1, 0x8d388c,6, 0x8d38a8,5, 0x8d38c0,21, 0x8d3a00,73, 0x8d3c00,4, 0x8d3c40,29, 0x8d3cc0,1, 0x8d4000,6, 0x8d4024,6, 0x8d4400,16, 0x8d4444,1, 0x8d4450,4, 0x8d4800,26, 0x8d4880,4, 0x8d48c0,25, 0x8d4940,6, 0x8d4960,1, 0x8d4968,2, 0x8d4974,3, 0x8d4a00,8, 0x8d4a24,50, 0x8d4c00,4, 0x8d4c40,15, 0x8d4c80,4, 0x8d4cc0,15, 0x8d4d00,4, 0x8d4d40,15, 0x8d4d80,4, 0x8d4dc0,15, 0x8d4e00,4, 0x8d4e40,15, 0x8d4e80,4, 0x8d4ec0,15, 0x8d4f00,4, 0x8d4f40,15, 0x8d4f80,4, 0x8d4fc0,15, 0x8d5000,32, 0x8d5084,1, 0x8d5090,4, 0x8d5100,3, 0x8d5110,2, 0x8d5200,32, 0x8d5284,1, 0x8d5290,4, 0x8d5300,3, 0x8d5310,2, 0x8d5400,32, 0x8d5484,1, 0x8d5490,4, 0x8d5500,3, 0x8d5510,2, 0x8d5600,32, 0x8d5684,1, 0x8d5690,4, 0x8d5700,3, 0x8d5710,2, 0x8d5800,32, 0x8d5884,1, 0x8d5890,4, 0x8d5900,3, 0x8d5910,2, 0x8d5a00,32, 0x8d5a84,1, 0x8d5a90,4, 0x8d5b00,3, 0x8d5b10,2, 0x8d5c00,32, 0x8d5c84,1, 0x8d5c90,4, 0x8d5d00,3, 0x8d5d10,2, 0x8d5e00,32, 0x8d5e84,1, 0x8d5e90,4, 0x8d5f00,3, 0x8d5f10,7, 0x8e0000,1, 0x8e0008,32, 0x8e0800,38, 0x8e0900,38, 0x8e0a00,30, 0x8e0a80,18, 0x8e0b00,18, 0x8e0b80,19, 0x8e0c00,10, 0x8e0c40,10, 0x8e0c80,15, 0x8e1000,38, 0x8e1100,38, 0x8e1200,30, 0x8e1280,18, 0x8e1300,18, 0x8e1380,19, 0x8e1400,10, 0x8e1440,10, 0x8e1480,15, 0x8e1800,38, 0x8e1900,38, 0x8e1a00,30, 0x8e1a80,18, 0x8e1b00,18, 0x8e1b80,19, 0x8e1c00,10, 0x8e1c40,10, 0x8e1c80,15, 0x8e2000,38, 0x8e2100,38, 0x8e2200,30, 0x8e2280,18, 0x8e2300,18, 0x8e2380,19, 0x8e2400,10, 0x8e2440,10, 0x8e2480,15, 0x8e2800,38, 0x8e2900,38, 0x8e2a00,30, 0x8e2a80,18, 0x8e2b00,18, 0x8e2b80,19, 0x8e2c00,10, 0x8e2c40,10, 0x8e2c80,15, 0x8e3000,38, 0x8e3100,38, 0x8e3200,30, 0x8e3280,18, 0x8e3300,18, 0x8e3380,19, 0x8e3400,10, 0x8e3440,10, 0x8e3480,15, 0x8e3800,38, 0x8e3900,38, 0x8e3a00,30, 0x8e3a80,18, 0x8e3b00,18, 0x8e3b80,19, 0x8e3c00,10, 0x8e3c40,10, 0x8e3c80,15, 0x8e4000,38, 0x8e4100,38, 0x8e4200,30, 0x8e4280,18, 0x8e4300,18, 0x8e4380,19, 0x8e4400,10, 0x8e4440,10, 0x8e4480,15, 0x8e4800,3, 0x8e4814,6, 0x8e4830,7, 0x8e4850,3, 0x8e4860,3, 0x8e4870,3, 0x8e4880,9, 0x8e48c0,8, 0x8e4a00,84, 0x8e4c00,2, 0x8e4c0c,2, 0x8e4c20,3, 0x8e5000,3, 0x8e5014,6, 0x8e5030,7, 0x8e5050,3, 0x8e5060,3, 0x8e5070,3, 0x8e5080,9, 0x8e50c0,8, 0x8e5200,84, 0x8e5400,2, 0x8e540c,2, 0x8e5420,3, 0x8e5800,3, 0x8e5814,6, 0x8e5830,7, 0x8e5850,3, 0x8e5860,3, 0x8e5870,3, 0x8e5880,9, 0x8e58c0,8, 0x8e5a00,84, 0x8e5c00,2, 0x8e5c0c,2, 0x8e5c20,3, 0x8e6000,3, 0x8e6014,6, 0x8e6030,7, 0x8e6050,3, 0x8e6060,3, 0x8e6070,3, 0x8e6080,9, 0x8e60c0,8, 0x8e6200,84, 0x8e6400,2, 0x8e640c,2, 0x8e6420,3, 0x8e6800,3, 0x8e6814,6, 0x8e6830,7, 0x8e6850,3, 0x8e6860,3, 0x8e6870,3, 0x8e6880,9, 0x8e68c0,8, 0x8e6a00,84, 0x8e6c00,2, 0x8e6c0c,2, 0x8e6c20,3, 0x8e7000,3, 0x8e7014,6, 0x8e7030,7, 0x8e7050,3, 0x8e7060,3, 0x8e7070,3, 0x8e7080,9, 0x8e70c0,8, 0x8e7200,84, 0x8e7400,2, 0x8e740c,2, 0x8e7420,3, 0x8e7800,3, 0x8e7814,6, 0x8e7830,7, 0x8e7850,3, 0x8e7860,3, 0x8e7870,3, 0x8e7880,9, 0x8e78c0,8, 0x8e7a00,84, 0x8e7c00,2, 0x8e7c0c,2, 0x8e7c20,3, 0x8e8000,3, 0x8e8014,6, 0x8e8030,7, 0x8e8050,3, 0x8e8060,3, 0x8e8070,3, 0x8e8080,9, 0x8e80c0,8, 0x8e8200,84, 0x8e8400,2, 0x8e840c,2, 0x8e8420,3, 0x8e8800,40, 0x8f0000,9, 0x8f0040,9, 0x8f0084,1, 0x8f008c,6, 0x8f00a8,5, 0x8f00c0,21, 0x8f0200,73, 0x8f0400,4, 0x8f0440,29, 0x8f04c0,1, 0x8f0800,9, 0x8f0840,9, 0x8f0884,1, 0x8f088c,6, 0x8f08a8,5, 0x8f08c0,21, 0x8f0a00,73, 0x8f0c00,4, 0x8f0c40,29, 0x8f0cc0,1, 0x8f1000,9, 0x8f1040,9, 0x8f1084,1, 0x8f108c,6, 0x8f10a8,5, 0x8f10c0,21, 0x8f1200,73, 0x8f1400,4, 0x8f1440,29, 0x8f14c0,1, 0x8f1800,9, 0x8f1840,9, 0x8f1884,1, 0x8f188c,6, 0x8f18a8,5, 0x8f18c0,21, 0x8f1a00,73, 0x8f1c00,4, 0x8f1c40,29, 0x8f1cc0,1, 0x8f2000,9, 0x8f2040,9, 0x8f2084,1, 0x8f208c,6, 0x8f20a8,5, 0x8f20c0,21, 0x8f2200,73, 0x8f2400,4, 0x8f2440,29, 0x8f24c0,1, 0x8f2800,9, 0x8f2840,9, 0x8f2884,1, 0x8f288c,6, 0x8f28a8,5, 0x8f28c0,21, 0x8f2a00,73, 0x8f2c00,4, 0x8f2c40,29, 0x8f2cc0,1, 0x8f3000,9, 0x8f3040,9, 0x8f3084,1, 0x8f308c,6, 0x8f30a8,5, 0x8f30c0,21, 0x8f3200,73, 0x8f3400,4, 0x8f3440,29, 0x8f34c0,1, 0x8f3800,9, 0x8f3840,9, 0x8f3884,1, 0x8f388c,6, 0x8f38a8,5, 0x8f38c0,21, 0x8f3a00,73, 0x8f3c00,4, 0x8f3c40,29, 0x8f3cc0,1, 0x8f4000,6, 0x8f4024,6, 0x8f4400,16, 0x8f4444,1, 0x8f4450,4, 0x8f4800,26, 0x8f4880,4, 0x8f48c0,25, 0x8f4940,6, 0x8f4960,1, 0x8f4968,2, 0x8f4974,3, 0x8f4a00,8, 0x8f4a24,50, 0x8f4c00,4, 0x8f4c40,15, 0x8f4c80,4, 0x8f4cc0,15, 0x8f4d00,4, 0x8f4d40,15, 0x8f4d80,4, 0x8f4dc0,15, 0x8f4e00,4, 0x8f4e40,15, 0x8f4e80,4, 0x8f4ec0,15, 0x8f4f00,4, 0x8f4f40,15, 0x8f4f80,4, 0x8f4fc0,15, 0x8f5000,32, 0x8f5084,1, 0x8f5090,4, 0x8f5100,3, 0x8f5110,2, 0x8f5200,32, 0x8f5284,1, 0x8f5290,4, 0x8f5300,3, 0x8f5310,2, 0x8f5400,32, 0x8f5484,1, 0x8f5490,4, 0x8f5500,3, 0x8f5510,2, 0x8f5600,32, 0x8f5684,1, 0x8f5690,4, 0x8f5700,3, 0x8f5710,2, 0x8f5800,32, 0x8f5884,1, 0x8f5890,4, 0x8f5900,3, 0x8f5910,2, 0x8f5a00,32, 0x8f5a84,1, 0x8f5a90,4, 0x8f5b00,3, 0x8f5b10,2, 0x8f5c00,32, 0x8f5c84,1, 0x8f5c90,4, 0x8f5d00,3, 0x8f5d10,2, 0x8f5e00,32, 0x8f5e84,1, 0x8f5e90,4, 0x8f5f00,3, 0x8f5f10,7, 0xa00000,1, 0xa00020,3, 0xa00030,2, 0xa00040,3, 0xa00050,2, 0xa00800,53, 0xa00900,3, 0xa00910,13, 0xa00a00,53, 0xa00b00,3, 0xa00b10,13, 0xa00c00,5, 0xa00c20,5, 0xa00c40,18, 0xa01000,6, 0xa01020,4, 0xa01040,16, 0xa02000,20, 0xa02080,15, 0xa02100,20, 0xa02180,15, 0xa02200,23, 0xa02260,7, 0xa02400,11, 0xa02430,3, 0xa02440,3, 0xa02450,3, 0xa02460,24, 0xa02500,11, 0xa02530,3, 0xa02540,3, 0xa02550,3, 0xa02560,24, 0xa02600,11, 0xa02630,3, 0xa02640,3, 0xa02650,3, 0xa02660,24, 0xa02700,11, 0xa02730,3, 0xa02740,3, 0xa02750,3, 0xa02760,24, 0xa02800,4, 0xa02820,16, 0xa02880,10, 0xa028c0,10, 0xa02900,6, 0xa02920,6, 0xa02940,4, 0xa02980,13, 0xa029c0,13, 0xa02a00,9, 0xa03000,14, 0xa03040,9, 0xa03080,6, 0xa030a0,1, 0xa030a8,4, 0xa03100,4, 0xa03200,124, 0xa03400,124, 0xa03600,8, 0xa03624,1, 0xa03644,6, 0xa03664,6, 0xa03680,1, 0xa03688,6, 0xa036a8,22, 0xa04000,1, 0xa04020,3, 0xa04030,2, 0xa04040,3, 0xa04050,2, 0xa04800,53, 0xa04900,3, 0xa04910,13, 0xa04a00,53, 0xa04b00,3, 0xa04b10,13, 0xa04c00,5, 0xa04c20,5, 0xa04c40,18, 0xa05000,6, 0xa05020,4, 0xa05040,16, 0xa06000,20, 0xa06080,15, 0xa06100,20, 0xa06180,15, 0xa06200,23, 0xa06260,7, 0xa06400,11, 0xa06430,3, 0xa06440,3, 0xa06450,3, 0xa06460,24, 0xa06500,11, 0xa06530,3, 0xa06540,3, 0xa06550,3, 0xa06560,24, 0xa06600,11, 0xa06630,3, 0xa06640,3, 0xa06650,3, 0xa06660,24, 0xa06700,11, 0xa06730,3, 0xa06740,3, 0xa06750,3, 0xa06760,24, 0xa06800,4, 0xa06820,16, 0xa06880,10, 0xa068c0,10, 0xa06900,6, 0xa06920,6, 0xa06940,4, 0xa06980,13, 0xa069c0,13, 0xa06a00,9, 0xa07000,14, 0xa07040,9, 0xa07080,6, 0xa070a0,1, 0xa070a8,4, 0xa07100,4, 0xa07200,124, 0xa07400,124, 0xa07600,8, 0xa07624,1, 0xa07644,6, 0xa07664,6, 0xa07680,1, 0xa07688,6, 0xa076a8,22, 0xa08000,84, 0xa08180,20, 0xa08200,5, 0xa08400,11, 0xa08440,11, 0xa08480,19, 0xa08500,19, 0xa08580,24, 0xa08600,13, 0xa08800,84, 0xa08980,20, 0xa08a00,5, 0xa08c00,11, 0xa08c40,11, 0xa08c80,19, 0xa08d00,19, 0xa08d80,24, 0xa08e00,13, 0xa09000,10, 0xa09040,5, 0xa09080,10, 0xa090c0,5, 0xa09100,5, 0xa09200,11, 0xa09230,3, 0xa09240,5, 0xa09260,5, 0xa09280,32, 0xa09400,13, 0xa09440,13, 0xa09480,9, 0xa094c0,1, 0xa094d0,5, 0xa094f0,21, 0xa09800,10, 0xa09840,5, 0xa09880,10, 0xa098c0,5, 0xa09900,5, 0xa09a00,11, 0xa09a30,3, 0xa09a40,5, 0xa09a60,5, 0xa09a80,32, 0xa09c00,13, 0xa09c40,13, 0xa09c80,9, 0xa09cc0,1, 0xa09cd0,5, 0xa09cf0,21, 0xa0a000,14, 0xa0a040,9, 0xa0a080,6, 0xa0a0a0,1, 0xa0a0a8,4, 0xa0a100,7, 0xa0a120,3, 0xa0a130,25, 0xa0c000,26, 0xa0c06c,2, 0xa0c080,3, 0xa0c090,17, 0xa0c100,26, 0xa0c16c,2, 0xa0c180,3, 0xa0c190,17, 0xa0c200,26, 0xa0c26c,2, 0xa0c280,3, 0xa0c290,17, 0xa0c300,26, 0xa0c36c,2, 0xa0c380,3, 0xa0c390,17, 0xa0c400,26, 0xa0c46c,2, 0xa0c480,3, 0xa0c490,17, 0xa0c500,26, 0xa0c56c,2, 0xa0c580,3, 0xa0c590,17, 0xa0c600,26, 0xa0c66c,2, 0xa0c680,3, 0xa0c690,17, 0xa0c700,26, 0xa0c76c,2, 0xa0c780,3, 0xa0c790,17, 0xa0c800,12, 0xa0c844,1, 0xa0c854,8, 0xa0c880,7, 0xa0c8a0,2, 0xa0c8ac,2, 0xa0c8c0,26, 0xa0c980,4, 0xa0c9a0,5, 0xa0c9c0,1, 0xa0d000,3, 0xa0d010,3, 0xa0d020,3, 0xa0d030,3, 0xa0d040,3, 0xa0d050,3, 0xa0d060,3, 0xa0d070,3, 0xa0d080,5, 0xa0d0a0,5, 0xa0d0c0,5, 0xa0d0e0,5, 0xa0d100,5, 0xa0d120,5, 0xa0d140,5, 0xa0d160,5, 0xa0d200,68, 0xa0d400,1, 0xa0d804,1, 0xa0d844,54, 0xa0da00,11, 0xa0da40,11, 0xa0da80,11, 0xa0dac0,11, 0xa0db00,11, 0xa0db40,11, 0xa0db80,11, 0xa0dbc0,11, 0xa0dc00,28, 0xa0dc80,5, 0xa0dca0,2, 0xa0e000,4, 0xa0e020,6, 0xa0e040,6, 0xa0e060,14, 0xa0e100,26, 0xa0e180,15, 0xa0e200,14, 0xa0e240,9, 0xa0e280,6, 0xa0e2a0,1, 0xa0e2a8,4, 0xa0e300,14, 0xa0e340,9, 0xa0e380,6, 0xa0e3a0,4, 0xa0e400,9, 0xa20000,1, 0xa21000,977, 0xa22000,161, 0xa23000,977, 0xa24000,977, 0xa25000,977, 0xa26000,977, 0xa27000,977, 0xa28000,977, 0xa29000,977, 0xa2a000,977, 0xa2b000,161, 0xa2c000,12, 0xa2c040,14, 0xa2c080,20, 0xa2c104,1, 0xa2c10c,4, 0xa2c200,12, 0xa2c240,14, 0xa2c280,20, 0xa2c304,1, 0xa2c30c,4, 0xa2c400,12, 0xa2c440,14, 0xa2c480,20, 0xa2c504,1, 0xa2c50c,4, 0xa2c600,12, 0xa2c640,14, 0xa2c680,20, 0xa2c704,1, 0xa2c70c,4, 0xa2c800,12, 0xa2c840,14, 0xa2c880,20, 0xa2c904,1, 0xa2c90c,4, 0xa2ca00,12, 0xa2ca40,14, 0xa2ca80,20, 0xa2cb04,1, 0xa2cb0c,4, 0xa2cc00,12, 0xa2cc40,14, 0xa2cc80,20, 0xa2cd04,1, 0xa2cd0c,4, 0xa2ce00,12, 0xa2ce40,14, 0xa2ce80,20, 0xa2cf04,1, 0xa2cf0c,4, 0xa2d000,12, 0xa2d040,14, 0xa2d080,20, 0xa2d104,1, 0xa2d10c,4, 0xa2d200,17, 0xa2d250,2, 0xa2d260,4, 0xa2e000,1, 0xa2e014,1, 0xa2e01c,11, 0xa2e060,9, 0xa2e094,1, 0xa2e09c,11, 0xa2e0e0,15, 0xa2e200,12, 0xa2e240,13, 0xa2e280,3, 0xa2e290,1, 0xa80000,500, 0xa80800,2, 0xa80820,15, 0xa81000,500, 0xa81800,8, 0xa81824,6, 0xa81840,8, 0xa81880,7, 0xa818a0,7, 0xa818c0,7, 0xa818e0,7, 0xa81900,8, 0xa81924,16, 0xa81980,12, 0xa82000,500, 0xa82800,2, 0xa82820,15, 0xa83000,500, 0xa83800,8, 0xa83824,6, 0xa83840,8, 0xa83880,7, 0xa838a0,7, 0xa838c0,7, 0xa838e0,7, 0xa83900,8, 0xa83924,16, 0xa83980,12, 0xa84004,5, 0xa84200,26, 0xa84280,4, 0xa842c0,25, 0xa84340,6, 0xa84360,1, 0xa84368,2, 0xa84374,11, 0xa843a4,10, 0xa84400,1, 0xa88000,52, 0xa88400,82, 0xa88560,6, 0xa88600,41, 0xa88700,2, 0xa88720,19, 0xa88800,25, 0xa88880,1, 0xa88900,28, 0xa88980,1, 0xa89000,52, 0xa89400,82, 0xa89560,6, 0xa89600,41, 0xa89700,2, 0xa89720,19, 0xa89800,25, 0xa89880,1, 0xa89900,28, 0xa89980,1, 0xa8a000,7, 0xa8a080,6, 0xa8a0a0,6, 0xa8a0c0,1, 0xa8a100,4, 0xa8a120,9, 0xa8c000,3, 0xa8c010,6, 0xa8c200,7, 0xa8c220,6, 0xa8c240,7, 0xa8c260,6, 0xa8c280,2, 0xa8c28c,2, 0xa8c2a0,2, 0xa8c2ac,2, 0xa8c2c0,7, 0xa8c2e0,7, 0xa8c300,2, 0xa8c30c,2, 0xa8c320,6, 0xa8c400,3, 0xa8c440,12, 0xa8c800,7, 0xa8c820,14, 0xa8c880,16, 0xa8c900,7, 0xa8c920,14, 0xa8c980,16, 0xa8ca00,6, 0xa8ca20,7, 0xa8cc00,3, 0xaa0000,3, 0xaa0800,7, 0xaa0820,6, 0xaa0840,6, 0xaa0880,1, 0xaa0894,1, 0xaa089c,2, 0xaa08c0,9, 0xaa0900,18, 0xaa0a00,36, 0xaa0b00,22, 0xaa0b80,18, 0xaa0c00,3, 0xaa0c10,3, 0xaa1000,3, 0xaa1010,2, 0xaa1080,20, 0xaa1100,1, 0xaa1200,26, 0xaa1280,4, 0xaa12c0,25, 0xaa1340,6, 0xaa1360,1, 0xaa1368,2, 0xaa1374,11, 0xaa13a4,4, 0xaa1400,1, 0xab0000,11, 0xab0030,19, 0xab0080,17, 0xab0100,11, 0xab0130,19, 0xab0180,17, 0xab0200,3, 0xab0214,1, 0xab021c,1, 0xab0280,3, 0xab0294,1, 0xab029c,1, 0xab0300,18, 0xab0380,18, 0xab0400,18, 0xab0480,18, 0xab0500,18, 0xab0580,18, 0xab0600,18, 0xab0680,18, 0xab0700,13, 0xab0738,6, 0xab0780,13, 0xab07b8,6, 0xab0800,1, 0xab0808,22, 0xab0880,1, 0xab0894,13, 0xab0900,3, 0xab0910,3, 0xab0920,3, 0xab0940,3, 0xab0954,1, 0xab095c,1, 0xab0a00,52, 0xab0c00,4, 0xab0d00,34, 0xab0e00,4, 0xab0e80,30, 0xab0f00,1, 0xab0f40,5, 0xab0f60,5, 0xab0f80,6, 0xab1000,14, 0xab1040,4, 0xab1060,17, 0xab10c0,6, 0xab10e0,1, 0xab10e8,2, 0xab10f4,11, 0xab1124,17, 0xab1200,3, 0xab1210,3, 0xab1220,3, 0xab1230,3, 0xab1240,3, 0xab1250,3, 0xab2000,20, 0xab2080,3, 0xab2090,1, 0xab2098,2, 0xac0000,500, 0xac0800,2, 0xac0820,15, 0xac1000,500, 0xac1800,8, 0xac1824,6, 0xac1840,8, 0xac1880,7, 0xac18a0,7, 0xac18c0,7, 0xac18e0,7, 0xac1900,8, 0xac1924,16, 0xac1980,12, 0xac2000,500, 0xac2800,2, 0xac2820,15, 0xac3000,500, 0xac3800,8, 0xac3824,6, 0xac3840,8, 0xac3880,7, 0xac38a0,7, 0xac38c0,7, 0xac38e0,7, 0xac3900,8, 0xac3924,16, 0xac3980,12, 0xac4004,5, 0xac4200,26, 0xac4280,4, 0xac42c0,25, 0xac4340,6, 0xac4360,1, 0xac4368,2, 0xac4374,11, 0xac43a4,10, 0xac4400,1, 0xac8000,52, 0xac8400,82, 0xac8560,6, 0xac8600,41, 0xac8700,2, 0xac8720,19, 0xac8800,25, 0xac8880,1, 0xac8900,28, 0xac8980,1, 0xac9000,52, 0xac9400,82, 0xac9560,6, 0xac9600,41, 0xac9700,2, 0xac9720,19, 0xac9800,25, 0xac9880,1, 0xac9900,28, 0xac9980,1, 0xaca000,7, 0xaca080,6, 0xaca0a0,6, 0xaca0c0,1, 0xaca100,4, 0xaca120,9, 0xacc000,3, 0xacc010,6, 0xacc200,7, 0xacc220,6, 0xacc240,7, 0xacc260,6, 0xacc280,2, 0xacc28c,2, 0xacc2a0,2, 0xacc2ac,2, 0xacc2c0,7, 0xacc2e0,7, 0xacc300,2, 0xacc30c,2, 0xacc320,6, 0xacc400,3, 0xacc440,12, 0xacc800,7, 0xacc820,14, 0xacc880,16, 0xacc900,7, 0xacc920,14, 0xacc980,16, 0xacca00,6, 0xacca20,7, 0xaccc00,3, 0xae0000,3, 0xae0800,7, 0xae0820,6, 0xae0840,6, 0xae0880,1, 0xae0894,1, 0xae089c,2, 0xae08c0,9, 0xae0900,18, 0xae0a00,36, 0xae0b00,22, 0xae0b80,18, 0xae0c00,3, 0xae0c10,3, 0xae1000,3, 0xae1010,2, 0xae1080,20, 0xae1100,1, 0xae1200,26, 0xae1280,4, 0xae12c0,25, 0xae1340,6, 0xae1360,1, 0xae1368,2, 0xae1374,11, 0xae13a4,4, 0xae1400,1, 0xaf0000,11, 0xaf0030,19, 0xaf0080,17, 0xaf0100,11, 0xaf0130,19, 0xaf0180,17, 0xaf0200,3, 0xaf0214,1, 0xaf021c,1, 0xaf0280,3, 0xaf0294,1, 0xaf029c,1, 0xaf0300,18, 0xaf0380,18, 0xaf0400,18, 0xaf0480,18, 0xaf0500,18, 0xaf0580,18, 0xaf0600,18, 0xaf0680,18, 0xaf0700,13, 0xaf0738,6, 0xaf0780,13, 0xaf07b8,6, 0xaf0800,1, 0xaf0808,22, 0xaf0880,1, 0xaf0894,13, 0xaf0900,3, 0xaf0910,3, 0xaf0920,3, 0xaf0940,3, 0xaf0954,1, 0xaf095c,1, 0xaf0a00,52, 0xaf0c00,4, 0xaf0d00,34, 0xaf0e00,4, 0xaf0e80,30, 0xaf0f00,1, 0xaf0f40,5, 0xaf0f60,5, 0xaf0f80,6, 0xaf1000,14, 0xaf1040,4, 0xaf1060,17, 0xaf10c0,6, 0xaf10e0,1, 0xaf10e8,2, 0xaf10f4,11, 0xaf1124,17, 0xaf1200,3, 0xaf1210,3, 0xaf1220,3, 0xaf1230,3, 0xaf1240,3, 0xaf1250,3, 0xaf2000,20, 0xaf2080,3, 0xaf2090,1, 0xaf2098,2, 0xb00000,13, 0xb00038,4, 0xb00050,3, 0xb00060,3, 0xb00070,16, 0xb000c0,5, 0xb00400,14, 0xb00440,2, 0xb0044c,3, 0xb00480,14, 0xb004c0,2, 0xb004cc,3, 0xb00500,1, 0xb00508,15, 0xb00560,2, 0xb0056c,2, 0xb00600,4, 0xb00680,27, 0xb00800,2, 0xb00900,32, 0xb00984,2, 0xb00990,4, 0xb00a00,26, 0xb00a80,4, 0xb00ac0,25, 0xb00b40,6, 0xb00b60,1, 0xb00b68,2, 0xb00b74,11, 0xb00ba4,8, 0xb00c00,9, 0xb00c40,11, 0xb00c80,23, 0xb00ce0,15, 0xb00d20,15, 0xb00d60,1, 0xb01000,13, 0xb01038,4, 0xb01050,3, 0xb01060,3, 0xb01070,16, 0xb010c0,5, 0xb01400,14, 0xb01440,2, 0xb0144c,3, 0xb01480,14, 0xb014c0,2, 0xb014cc,3, 0xb01500,1, 0xb01508,15, 0xb01560,2, 0xb0156c,2, 0xb01600,4, 0xb01680,27, 0xb01800,2, 0xb01900,32, 0xb01984,2, 0xb01990,4, 0xb01a00,26, 0xb01a80,4, 0xb01ac0,25, 0xb01b40,6, 0xb01b60,1, 0xb01b68,2, 0xb01b74,11, 0xb01ba4,8, 0xb01c00,9, 0xb01c40,11, 0xb01c80,23, 0xb01ce0,15, 0xb01d20,15, 0xb01d60,1, 0xb02000,1, 0xb02100,36, 0xb02200,7, 0xb10000,22, 0xb10080,22, 0xb10100,12, 0xb10140,12, 0xb10200,52, 0xb10300,52, 0xb10400,11, 0xb10440,11, 0xb10480,3, 0xb104a0,6, 0xb104c0,6, 0xb104e0,3, 0xb104f0,3, 0xb10800,9, 0xb10840,15, 0xb10880,15, 0xb108c0,15, 0xb10900,1, 0xb10914,13, 0xb10980,17, 0xb11000,17, 0xb11080,17, 0xb11104,5, 0xb11120,3, 0xb11130,11, 0xb11200,31, 0xb11280,31, 0xb11300,12, 0xb11340,12, 0xb11380,2, 0xb11390,2, 0xb113a0,3, 0xb113b0,3, 0xb113c0,5, 0xb113e0,5, 0xb11400,3, 0xb11410,3, 0xb11420,3, 0xb11430,3, 0xb11440,3, 0xb11450,3, 0xb11460,7, 0xb11800,26, 0xb11880,4, 0xb118c0,25, 0xb11940,6, 0xb11960,1, 0xb11968,2, 0xb11974,11, 0xb119a4,12, 0xb11a00,4, 0xb11b00,43, 0xb11c00,4, 0xb11c20,7, 0xb11c40,3, 0xb11c50,1, 0xb11c60,3, 0xb11e00,32, 0xb11e84,1, 0xb11e90,4, 0xb11ea4,1, 0xb11eb4,14, 0xb11ef0,2, 0xb11f04,1, 0xb11f10,8, 0xb11f34,6, 0xb12000,3, 0xb12010,21, 0xb12080,1, 0xb12094,1, 0xb1209c,5, 0xb12100,15, 0xb12140,1, 0xb12180,6, 0xb14000,22, 0xb14080,22, 0xb14100,12, 0xb14140,12, 0xb14200,52, 0xb14300,52, 0xb14400,11, 0xb14440,11, 0xb14480,3, 0xb144a0,6, 0xb144c0,6, 0xb144e0,3, 0xb144f0,3, 0xb14800,9, 0xb14840,15, 0xb14880,15, 0xb148c0,15, 0xb14900,1, 0xb14914,13, 0xb14980,17, 0xb15000,17, 0xb15080,17, 0xb15104,5, 0xb15120,3, 0xb15130,11, 0xb15200,31, 0xb15280,31, 0xb15300,12, 0xb15340,12, 0xb15380,2, 0xb15390,2, 0xb153a0,3, 0xb153b0,3, 0xb153c0,5, 0xb153e0,5, 0xb15400,3, 0xb15410,3, 0xb15420,3, 0xb15430,3, 0xb15440,3, 0xb15450,3, 0xb15460,7, 0xb15800,26, 0xb15880,4, 0xb158c0,25, 0xb15940,6, 0xb15960,1, 0xb15968,2, 0xb15974,11, 0xb159a4,12, 0xb15a00,4, 0xb15b00,43, 0xb15c00,4, 0xb15c20,7, 0xb15c40,3, 0xb15c50,1, 0xb15c60,3, 0xb15e00,32, 0xb15e84,1, 0xb15e90,4, 0xb15ea4,1, 0xb15eb4,14, 0xb15ef0,2, 0xb15f04,1, 0xb15f10,8, 0xb15f34,6, 0xb16000,3, 0xb16010,21, 0xb16080,1, 0xb16094,1, 0xb1609c,5, 0xb16100,15, 0xb16140,1, 0xb16180,6, 0xb18000,100, 0xb18200,3, 0xb18210,5, 0xb20000,12, 0xb20040,2, 0xb20050,3, 0xb22000,1006, 0xb23000,31, 0xb23084,6, 0xb24004,1, 0xb2400c,3, 0xb24200,23, 0xb24280,23, 0xb24300,1, 0xb24400,1, 0xb24800,122, 0xb24a00,122, 0xb24c04,63, 0xb24d04,1, 0xb24d10,5, 0xb24d40,6, 0xb24d60,5, 0xb26000,1, 0xb26100,1, 0xb26108,3, 0xb26120,2, 0xb26134,8, 0xb26160,2, 0xb26174,8, 0xb261a0,4, 0xb26200,54, 0xb26800,5, 0xb26820,2, 0xb26834,1, 0xb2683c,1, 0xb26a00,24, 0xb26a80,24, 0xb26b00,1, 0xb26c00,6, 0xb26c24,5, 0xb26c40,16, 0xb27000,1, 0xb27020,5, 0xb27040,1, 0xb27048,2, 0xb27080,1, 0xb27100,4, 0xb27180,24, 0xb27200,4, 0xb27280,27, 0xb27300,2, 0xb2730c,3, 0xb28004,1, 0xb2800c,3, 0xb28020,1, 0xb28100,2, 0xb28110,3, 0xb28120,2, 0xb28140,10, 0xb28180,13, 0xb28200,2, 0xb28210,3, 0xb28220,2, 0xb28240,10, 0xb28280,13, 0xb28400,14, 0xb28440,3, 0xb28450,3, 0xb28460,1, 0xb28500,36, 0xb28600,10, 0xb28640,5, 0xb28660,5, 0xb28700,27, 0xb28780,7, 0xb287a0,8, 0xb28800,27, 0xb28880,7, 0xb288a0,8, 0xb28900,27, 0xb28980,7, 0xb289a0,8, 0xb28a00,27, 0xb28a80,7, 0xb28aa0,8, 0xb28b00,48, 0xb28bc4,8, 0xb28bf0,30, 0xb28c80,4, 0xb28cc0,25, 0xb28d40,6, 0xb28d60,1, 0xb28d68,2, 0xb28d74,3, 0xb28e00,8, 0xb28e24,28, 0xb29000,4, 0xb29080,23, 0xb29100,14, 0xb29140,9, 0xb29200,10, 0xb29230,3, 0xb29240,5, 0xb29260,5, 0xb29280,9, 0xb29400,67, 0xb29600,10, 0xb30000,12, 0xb30040,2, 0xb30050,3, 0xb32000,1006, 0xb33000,31, 0xb33084,6, 0xb34004,1, 0xb3400c,3, 0xb34200,23, 0xb34280,23, 0xb34300,1, 0xb34400,1, 0xb34800,122, 0xb34a00,122, 0xb34c04,63, 0xb34d04,1, 0xb34d10,5, 0xb34d40,6, 0xb34d60,5, 0xb36000,1, 0xb36100,1, 0xb36108,3, 0xb36120,2, 0xb36134,8, 0xb36160,2, 0xb36174,8, 0xb361a0,4, 0xb36200,54, 0xb36800,5, 0xb36820,2, 0xb36834,1, 0xb3683c,1, 0xb36a00,24, 0xb36a80,24, 0xb36b00,1, 0xb36c00,6, 0xb36c24,5, 0xb36c40,16, 0xb37000,1, 0xb37020,5, 0xb37040,1, 0xb37048,2, 0xb37080,1, 0xb37100,4, 0xb37180,24, 0xb37200,4, 0xb37280,27, 0xb37300,2, 0xb3730c,3, 0xb38004,1, 0xb3800c,3, 0xb38020,1, 0xb38100,2, 0xb38110,3, 0xb38120,2, 0xb38140,10, 0xb38180,13, 0xb38200,2, 0xb38210,3, 0xb38220,2, 0xb38240,10, 0xb38280,13, 0xb38400,14, 0xb38440,3, 0xb38450,3, 0xb38460,1, 0xb38500,36, 0xb38600,10, 0xb38640,5, 0xb38660,5, 0xb38700,27, 0xb38780,7, 0xb387a0,8, 0xb38800,27, 0xb38880,7, 0xb388a0,8, 0xb38900,27, 0xb38980,7, 0xb389a0,8, 0xb38a00,27, 0xb38a80,7, 0xb38aa0,8, 0xb38b00,48, 0xb38bc4,8, 0xb38bf0,30, 0xb38c80,4, 0xb38cc0,25, 0xb38d40,6, 0xb38d60,1, 0xb38d68,2, 0xb38d74,3, 0xb38e00,8, 0xb38e24,28, 0xb39000,4, 0xb39080,23, 0xb39100,14, 0xb39140,9, 0xb39200,10, 0xb39230,3, 0xb39240,5, 0xb39260,5, 0xb39280,9, 0xb39400,67, 0xb39600,10, 0xc00000,1, 0xc00020,3, 0xc00030,2, 0xc00040,3, 0xc00050,2, 0xc00800,53, 0xc00900,3, 0xc00910,13, 0xc00a00,53, 0xc00b00,3, 0xc00b10,13, 0xc00c00,5, 0xc00c20,5, 0xc00c40,18, 0xc01000,6, 0xc01020,4, 0xc01040,16, 0xc02000,20, 0xc02080,15, 0xc02100,20, 0xc02180,15, 0xc02200,23, 0xc02260,7, 0xc02400,11, 0xc02430,3, 0xc02440,3, 0xc02450,3, 0xc02460,24, 0xc02500,11, 0xc02530,3, 0xc02540,3, 0xc02550,3, 0xc02560,24, 0xc02600,11, 0xc02630,3, 0xc02640,3, 0xc02650,3, 0xc02660,24, 0xc02700,11, 0xc02730,3, 0xc02740,3, 0xc02750,3, 0xc02760,24, 0xc02800,4, 0xc02820,16, 0xc02880,10, 0xc028c0,10, 0xc02900,6, 0xc02920,6, 0xc02940,4, 0xc02980,13, 0xc029c0,13, 0xc02a00,9, 0xc03000,14, 0xc03040,9, 0xc03080,6, 0xc030a0,1, 0xc030a8,4, 0xc03100,4, 0xc03200,124, 0xc03400,124, 0xc03600,8, 0xc03624,1, 0xc03644,6, 0xc03664,6, 0xc03680,1, 0xc03688,6, 0xc036a8,22, 0xc04000,1, 0xc04020,3, 0xc04030,2, 0xc04040,3, 0xc04050,2, 0xc04800,53, 0xc04900,3, 0xc04910,13, 0xc04a00,53, 0xc04b00,3, 0xc04b10,13, 0xc04c00,5, 0xc04c20,5, 0xc04c40,18, 0xc05000,6, 0xc05020,4, 0xc05040,16, 0xc06000,20, 0xc06080,15, 0xc06100,20, 0xc06180,15, 0xc06200,23, 0xc06260,7, 0xc06400,11, 0xc06430,3, 0xc06440,3, 0xc06450,3, 0xc06460,24, 0xc06500,11, 0xc06530,3, 0xc06540,3, 0xc06550,3, 0xc06560,24, 0xc06600,11, 0xc06630,3, 0xc06640,3, 0xc06650,3, 0xc06660,24, 0xc06700,11, 0xc06730,3, 0xc06740,3, 0xc06750,3, 0xc06760,24, 0xc06800,4, 0xc06820,16, 0xc06880,10, 0xc068c0,10, 0xc06900,6, 0xc06920,6, 0xc06940,4, 0xc06980,13, 0xc069c0,13, 0xc06a00,9, 0xc07000,14, 0xc07040,9, 0xc07080,6, 0xc070a0,1, 0xc070a8,4, 0xc07100,4, 0xc07200,124, 0xc07400,124, 0xc07600,8, 0xc07624,1, 0xc07644,6, 0xc07664,6, 0xc07680,1, 0xc07688,6, 0xc076a8,22, 0xc08000,84, 0xc08180,20, 0xc08200,5, 0xc08400,11, 0xc08440,11, 0xc08480,19, 0xc08500,19, 0xc08580,24, 0xc08600,13, 0xc08800,84, 0xc08980,20, 0xc08a00,5, 0xc08c00,11, 0xc08c40,11, 0xc08c80,19, 0xc08d00,19, 0xc08d80,24, 0xc08e00,13, 0xc09000,10, 0xc09040,5, 0xc09080,10, 0xc090c0,5, 0xc09100,5, 0xc09200,11, 0xc09230,3, 0xc09240,5, 0xc09260,5, 0xc09280,32, 0xc09400,13, 0xc09440,13, 0xc09480,9, 0xc094c0,1, 0xc094d0,5, 0xc094f0,21, 0xc09800,10, 0xc09840,5, 0xc09880,10, 0xc098c0,5, 0xc09900,5, 0xc09a00,11, 0xc09a30,3, 0xc09a40,5, 0xc09a60,5, 0xc09a80,32, 0xc09c00,13, 0xc09c40,13, 0xc09c80,9, 0xc09cc0,1, 0xc09cd0,5, 0xc09cf0,21, 0xc0a000,14, 0xc0a040,9, 0xc0a080,6, 0xc0a0a0,1, 0xc0a0a8,4, 0xc0a100,7, 0xc0a120,3, 0xc0a130,25, 0xc0c000,26, 0xc0c06c,2, 0xc0c080,3, 0xc0c090,17, 0xc0c100,26, 0xc0c16c,2, 0xc0c180,3, 0xc0c190,17, 0xc0c200,26, 0xc0c26c,2, 0xc0c280,3, 0xc0c290,17, 0xc0c300,26, 0xc0c36c,2, 0xc0c380,3, 0xc0c390,17, 0xc0c400,26, 0xc0c46c,2, 0xc0c480,3, 0xc0c490,17, 0xc0c500,26, 0xc0c56c,2, 0xc0c580,3, 0xc0c590,17, 0xc0c600,26, 0xc0c66c,2, 0xc0c680,3, 0xc0c690,17, 0xc0c700,26, 0xc0c76c,2, 0xc0c780,3, 0xc0c790,17, 0xc0c800,12, 0xc0c844,1, 0xc0c854,8, 0xc0c880,7, 0xc0c8a0,2, 0xc0c8ac,2, 0xc0c8c0,26, 0xc0c980,4, 0xc0c9a0,5, 0xc0c9c0,1, 0xc0d000,3, 0xc0d010,3, 0xc0d020,3, 0xc0d030,3, 0xc0d040,3, 0xc0d050,3, 0xc0d060,3, 0xc0d070,3, 0xc0d080,5, 0xc0d0a0,5, 0xc0d0c0,5, 0xc0d0e0,5, 0xc0d100,5, 0xc0d120,5, 0xc0d140,5, 0xc0d160,5, 0xc0d200,68, 0xc0d400,1, 0xc0d804,1, 0xc0d844,54, 0xc0da00,11, 0xc0da40,11, 0xc0da80,11, 0xc0dac0,11, 0xc0db00,11, 0xc0db40,11, 0xc0db80,11, 0xc0dbc0,11, 0xc0dc00,28, 0xc0dc80,5, 0xc0dca0,2, 0xc0e000,4, 0xc0e020,6, 0xc0e040,6, 0xc0e060,14, 0xc0e100,26, 0xc0e180,15, 0xc0e200,14, 0xc0e240,9, 0xc0e280,6, 0xc0e2a0,1, 0xc0e2a8,4, 0xc0e300,14, 0xc0e340,9, 0xc0e380,6, 0xc0e3a0,4, 0xc0e400,9, 0xc20000,1, 0xc21000,977, 0xc22000,161, 0xc23000,977, 0xc24000,977, 0xc25000,977, 0xc26000,977, 0xc27000,977, 0xc28000,977, 0xc29000,977, 0xc2a000,977, 0xc2b000,161, 0xc2c000,12, 0xc2c040,14, 0xc2c080,20, 0xc2c104,1, 0xc2c10c,4, 0xc2c200,12, 0xc2c240,14, 0xc2c280,20, 0xc2c304,1, 0xc2c30c,4, 0xc2c400,12, 0xc2c440,14, 0xc2c480,20, 0xc2c504,1, 0xc2c50c,4, 0xc2c600,12, 0xc2c640,14, 0xc2c680,20, 0xc2c704,1, 0xc2c70c,4, 0xc2c800,12, 0xc2c840,14, 0xc2c880,20, 0xc2c904,1, 0xc2c90c,4, 0xc2ca00,12, 0xc2ca40,14, 0xc2ca80,20, 0xc2cb04,1, 0xc2cb0c,4, 0xc2cc00,12, 0xc2cc40,14, 0xc2cc80,20, 0xc2cd04,1, 0xc2cd0c,4, 0xc2ce00,12, 0xc2ce40,14, 0xc2ce80,20, 0xc2cf04,1, 0xc2cf0c,4, 0xc2d000,12, 0xc2d040,14, 0xc2d080,20, 0xc2d104,1, 0xc2d10c,4, 0xc2d200,17, 0xc2d250,2, 0xc2d260,4, 0xc2e000,1, 0xc2e014,1, 0xc2e01c,11, 0xc2e060,9, 0xc2e094,1, 0xc2e09c,11, 0xc2e0e0,15, 0xc2e200,12, 0xc2e240,13, 0xc2e280,3, 0xc2e290,1, 0xc80000,500, 0xc80800,2, 0xc80820,15, 0xc81000,500, 0xc81800,8, 0xc81824,6, 0xc81840,8, 0xc81880,7, 0xc818a0,7, 0xc818c0,7, 0xc818e0,7, 0xc81900,8, 0xc81924,16, 0xc81980,12, 0xc82000,500, 0xc82800,2, 0xc82820,15, 0xc83000,500, 0xc83800,8, 0xc83824,6, 0xc83840,8, 0xc83880,7, 0xc838a0,7, 0xc838c0,7, 0xc838e0,7, 0xc83900,8, 0xc83924,16, 0xc83980,12, 0xc84004,5, 0xc84200,26, 0xc84280,4, 0xc842c0,25, 0xc84340,6, 0xc84360,1, 0xc84368,2, 0xc84374,11, 0xc843a4,10, 0xc84400,1, 0xc88000,52, 0xc88400,82, 0xc88560,6, 0xc88600,41, 0xc88700,2, 0xc88720,19, 0xc88800,25, 0xc88880,1, 0xc88900,28, 0xc88980,1, 0xc89000,52, 0xc89400,82, 0xc89560,6, 0xc89600,41, 0xc89700,2, 0xc89720,19, 0xc89800,25, 0xc89880,1, 0xc89900,28, 0xc89980,1, 0xc8a000,7, 0xc8a080,6, 0xc8a0a0,6, 0xc8a0c0,1, 0xc8a100,4, 0xc8a120,9, 0xc8c000,3, 0xc8c010,6, 0xc8c200,7, 0xc8c220,6, 0xc8c240,7, 0xc8c260,6, 0xc8c280,2, 0xc8c28c,2, 0xc8c2a0,2, 0xc8c2ac,2, 0xc8c2c0,7, 0xc8c2e0,7, 0xc8c300,2, 0xc8c30c,2, 0xc8c320,6, 0xc8c400,3, 0xc8c440,12, 0xc8c800,7, 0xc8c820,14, 0xc8c880,16, 0xc8c900,7, 0xc8c920,14, 0xc8c980,16, 0xc8ca00,6, 0xc8ca20,7, 0xc8cc00,3, 0xca0000,3, 0xca0800,7, 0xca0820,6, 0xca0840,6, 0xca0880,1, 0xca0894,1, 0xca089c,2, 0xca08c0,9, 0xca0900,18, 0xca0a00,36, 0xca0b00,22, 0xca0b80,18, 0xca0c00,3, 0xca0c10,3, 0xca1000,3, 0xca1010,2, 0xca1080,20, 0xca1100,1, 0xca1200,26, 0xca1280,4, 0xca12c0,25, 0xca1340,6, 0xca1360,1, 0xca1368,2, 0xca1374,11, 0xca13a4,4, 0xca1400,1, 0xcb0000,11, 0xcb0030,19, 0xcb0080,17, 0xcb0100,11, 0xcb0130,19, 0xcb0180,17, 0xcb0200,3, 0xcb0214,1, 0xcb021c,1, 0xcb0280,3, 0xcb0294,1, 0xcb029c,1, 0xcb0300,18, 0xcb0380,18, 0xcb0400,18, 0xcb0480,18, 0xcb0500,18, 0xcb0580,18, 0xcb0600,18, 0xcb0680,18, 0xcb0700,13, 0xcb0738,6, 0xcb0780,13, 0xcb07b8,6, 0xcb0800,1, 0xcb0808,22, 0xcb0880,1, 0xcb0894,13, 0xcb0900,3, 0xcb0910,3, 0xcb0920,3, 0xcb0940,3, 0xcb0954,1, 0xcb095c,1, 0xcb0a00,52, 0xcb0c00,4, 0xcb0d00,34, 0xcb0e00,4, 0xcb0e80,30, 0xcb0f00,1, 0xcb0f40,5, 0xcb0f60,5, 0xcb0f80,6, 0xcb1000,14, 0xcb1040,4, 0xcb1060,17, 0xcb10c0,6, 0xcb10e0,1, 0xcb10e8,2, 0xcb10f4,11, 0xcb1124,17, 0xcb1200,3, 0xcb1210,3, 0xcb1220,3, 0xcb1230,3, 0xcb1240,3, 0xcb1250,3, 0xcb2000,20, 0xcb2080,3, 0xcb2090,1, 0xcb2098,2, 0xcc0000,500, 0xcc0800,2, 0xcc0820,15, 0xcc1000,500, 0xcc1800,8, 0xcc1824,6, 0xcc1840,8, 0xcc1880,7, 0xcc18a0,7, 0xcc18c0,7, 0xcc18e0,7, 0xcc1900,8, 0xcc1924,16, 0xcc1980,12, 0xcc2000,500, 0xcc2800,2, 0xcc2820,15, 0xcc3000,500, 0xcc3800,8, 0xcc3824,6, 0xcc3840,8, 0xcc3880,7, 0xcc38a0,7, 0xcc38c0,7, 0xcc38e0,7, 0xcc3900,8, 0xcc3924,16, 0xcc3980,12, 0xcc4004,5, 0xcc4200,26, 0xcc4280,4, 0xcc42c0,25, 0xcc4340,6, 0xcc4360,1, 0xcc4368,2, 0xcc4374,11, 0xcc43a4,10, 0xcc4400,1, 0xcc8000,52, 0xcc8400,82, 0xcc8560,6, 0xcc8600,41, 0xcc8700,2, 0xcc8720,19, 0xcc8800,25, 0xcc8880,1, 0xcc8900,28, 0xcc8980,1, 0xcc9000,52, 0xcc9400,82, 0xcc9560,6, 0xcc9600,41, 0xcc9700,2, 0xcc9720,19, 0xcc9800,25, 0xcc9880,1, 0xcc9900,28, 0xcc9980,1, 0xcca000,7, 0xcca080,6, 0xcca0a0,6, 0xcca0c0,1, 0xcca100,4, 0xcca120,9, 0xccc000,3, 0xccc010,6, 0xccc200,7, 0xccc220,6, 0xccc240,7, 0xccc260,6, 0xccc280,2, 0xccc28c,2, 0xccc2a0,2, 0xccc2ac,2, 0xccc2c0,7, 0xccc2e0,7, 0xccc300,2, 0xccc30c,2, 0xccc320,6, 0xccc400,3, 0xccc440,12, 0xccc800,7, 0xccc820,14, 0xccc880,16, 0xccc900,7, 0xccc920,14, 0xccc980,16, 0xccca00,6, 0xccca20,7, 0xcccc00,3, 0xce0000,3, 0xce0800,7, 0xce0820,6, 0xce0840,6, 0xce0880,1, 0xce0894,1, 0xce089c,2, 0xce08c0,9, 0xce0900,18, 0xce0a00,36, 0xce0b00,22, 0xce0b80,18, 0xce0c00,3, 0xce0c10,3, 0xce1000,3, 0xce1010,2, 0xce1080,20, 0xce1100,1, 0xce1200,26, 0xce1280,4, 0xce12c0,25, 0xce1340,6, 0xce1360,1, 0xce1368,2, 0xce1374,11, 0xce13a4,4, 0xce1400,1, 0xcf0000,11, 0xcf0030,19, 0xcf0080,17, 0xcf0100,11, 0xcf0130,19, 0xcf0180,17, 0xcf0200,3, 0xcf0214,1, 0xcf021c,1, 0xcf0280,3, 0xcf0294,1, 0xcf029c,1, 0xcf0300,18, 0xcf0380,18, 0xcf0400,18, 0xcf0480,18, 0xcf0500,18, 0xcf0580,18, 0xcf0600,18, 0xcf0680,18, 0xcf0700,13, 0xcf0738,6, 0xcf0780,13, 0xcf07b8,6, 0xcf0800,1, 0xcf0808,22, 0xcf0880,1, 0xcf0894,13, 0xcf0900,3, 0xcf0910,3, 0xcf0920,3, 0xcf0940,3, 0xcf0954,1, 0xcf095c,1, 0xcf0a00,52, 0xcf0c00,4, 0xcf0d00,34, 0xcf0e00,4, 0xcf0e80,30, 0xcf0f00,1, 0xcf0f40,5, 0xcf0f60,5, 0xcf0f80,6, 0xcf1000,14, 0xcf1040,4, 0xcf1060,17, 0xcf10c0,6, 0xcf10e0,1, 0xcf10e8,2, 0xcf10f4,11, 0xcf1124,17, 0xcf1200,3, 0xcf1210,3, 0xcf1220,3, 0xcf1230,3, 0xcf1240,3, 0xcf1250,3, 0xcf2000,20, 0xcf2080,3, 0xcf2090,1, 0xcf2098,2, 0xd00000,13, 0xd00038,4, 0xd00050,3, 0xd00060,3, 0xd00070,16, 0xd000c0,5, 0xd00400,14, 0xd00440,2, 0xd0044c,3, 0xd00480,14, 0xd004c0,2, 0xd004cc,3, 0xd00500,1, 0xd00508,15, 0xd00560,2, 0xd0056c,2, 0xd00600,4, 0xd00680,27, 0xd00800,2, 0xd00900,32, 0xd00984,2, 0xd00990,4, 0xd00a00,26, 0xd00a80,4, 0xd00ac0,25, 0xd00b40,6, 0xd00b60,1, 0xd00b68,2, 0xd00b74,11, 0xd00ba4,8, 0xd00c00,9, 0xd00c40,11, 0xd00c80,23, 0xd00ce0,15, 0xd00d20,15, 0xd00d60,1, 0xd01000,13, 0xd01038,4, 0xd01050,3, 0xd01060,3, 0xd01070,16, 0xd010c0,5, 0xd01400,14, 0xd01440,2, 0xd0144c,3, 0xd01480,14, 0xd014c0,2, 0xd014cc,3, 0xd01500,1, 0xd01508,15, 0xd01560,2, 0xd0156c,2, 0xd01600,4, 0xd01680,27, 0xd01800,2, 0xd01900,32, 0xd01984,2, 0xd01990,4, 0xd01a00,26, 0xd01a80,4, 0xd01ac0,25, 0xd01b40,6, 0xd01b60,1, 0xd01b68,2, 0xd01b74,11, 0xd01ba4,8, 0xd01c00,9, 0xd01c40,11, 0xd01c80,23, 0xd01ce0,15, 0xd01d20,15, 0xd01d60,1, 0xd02000,1, 0xd02100,36, 0xd02200,7, 0xd10000,22, 0xd10080,22, 0xd10100,12, 0xd10140,12, 0xd10200,52, 0xd10300,52, 0xd10400,11, 0xd10440,11, 0xd10480,3, 0xd104a0,6, 0xd104c0,6, 0xd104e0,3, 0xd104f0,3, 0xd10800,9, 0xd10840,15, 0xd10880,15, 0xd108c0,15, 0xd10900,1, 0xd10914,13, 0xd10980,17, 0xd11000,17, 0xd11080,17, 0xd11104,5, 0xd11120,3, 0xd11130,11, 0xd11200,31, 0xd11280,31, 0xd11300,12, 0xd11340,12, 0xd11380,2, 0xd11390,2, 0xd113a0,3, 0xd113b0,3, 0xd113c0,5, 0xd113e0,5, 0xd11400,3, 0xd11410,3, 0xd11420,3, 0xd11430,3, 0xd11440,3, 0xd11450,3, 0xd11460,7, 0xd11800,26, 0xd11880,4, 0xd118c0,25, 0xd11940,6, 0xd11960,1, 0xd11968,2, 0xd11974,11, 0xd119a4,12, 0xd11a00,4, 0xd11b00,43, 0xd11c00,4, 0xd11c20,7, 0xd11c40,3, 0xd11c50,1, 0xd11c60,3, 0xd11e00,32, 0xd11e84,1, 0xd11e90,4, 0xd11ea4,1, 0xd11eb4,14, 0xd11ef0,2, 0xd11f04,1, 0xd11f10,8, 0xd11f34,6, 0xd12000,3, 0xd12010,21, 0xd12080,1, 0xd12094,1, 0xd1209c,5, 0xd12100,15, 0xd12140,1, 0xd12180,6, 0xd14000,22, 0xd14080,22, 0xd14100,12, 0xd14140,12, 0xd14200,52, 0xd14300,52, 0xd14400,11, 0xd14440,11, 0xd14480,3, 0xd144a0,6, 0xd144c0,6, 0xd144e0,3, 0xd144f0,3, 0xd14800,9, 0xd14840,15, 0xd14880,15, 0xd148c0,15, 0xd14900,1, 0xd14914,13, 0xd14980,17, 0xd15000,17, 0xd15080,17, 0xd15104,5, 0xd15120,3, 0xd15130,11, 0xd15200,31, 0xd15280,31, 0xd15300,12, 0xd15340,12, 0xd15380,2, 0xd15390,2, 0xd153a0,3, 0xd153b0,3, 0xd153c0,5, 0xd153e0,5, 0xd15400,3, 0xd15410,3, 0xd15420,3, 0xd15430,3, 0xd15440,3, 0xd15450,3, 0xd15460,7, 0xd15800,26, 0xd15880,4, 0xd158c0,25, 0xd15940,6, 0xd15960,1, 0xd15968,2, 0xd15974,11, 0xd159a4,12, 0xd15a00,4, 0xd15b00,43, 0xd15c00,4, 0xd15c20,7, 0xd15c40,3, 0xd15c50,1, 0xd15c60,3, 0xd15e00,32, 0xd15e84,1, 0xd15e90,4, 0xd15ea4,1, 0xd15eb4,14, 0xd15ef0,2, 0xd15f04,1, 0xd15f10,8, 0xd15f34,6, 0xd16000,3, 0xd16010,21, 0xd16080,1, 0xd16094,1, 0xd1609c,5, 0xd16100,15, 0xd16140,1, 0xd16180,6, 0xd18000,100, 0xd18200,3, 0xd18210,5, 0xd20000,12, 0xd20040,2, 0xd20050,3, 0xd22000,1006, 0xd23000,31, 0xd23084,6, 0xd24004,1, 0xd2400c,3, 0xd24200,23, 0xd24280,23, 0xd24300,1, 0xd24400,1, 0xd24800,122, 0xd24a00,122, 0xd24c04,63, 0xd24d04,1, 0xd24d10,5, 0xd24d40,6, 0xd24d60,5, 0xd26000,1, 0xd26100,1, 0xd26108,3, 0xd26120,2, 0xd26134,8, 0xd26160,2, 0xd26174,8, 0xd261a0,4, 0xd26200,54, 0xd26800,5, 0xd26820,2, 0xd26834,1, 0xd2683c,1, 0xd26a00,24, 0xd26a80,24, 0xd26b00,1, 0xd26c00,6, 0xd26c24,5, 0xd26c40,16, 0xd27000,1, 0xd27020,5, 0xd27040,1, 0xd27048,2, 0xd27080,1, 0xd27100,4, 0xd27180,24, 0xd27200,4, 0xd27280,27, 0xd27300,2, 0xd2730c,3, 0xd28004,1, 0xd2800c,3, 0xd28020,1, 0xd28100,2, 0xd28110,3, 0xd28120,2, 0xd28140,10, 0xd28180,13, 0xd28200,2, 0xd28210,3, 0xd28220,2, 0xd28240,10, 0xd28280,13, 0xd28400,14, 0xd28440,3, 0xd28450,3, 0xd28460,1, 0xd28500,36, 0xd28600,10, 0xd28640,5, 0xd28660,5, 0xd28700,27, 0xd28780,7, 0xd287a0,8, 0xd28800,27, 0xd28880,7, 0xd288a0,8, 0xd28900,27, 0xd28980,7, 0xd289a0,8, 0xd28a00,27, 0xd28a80,7, 0xd28aa0,8, 0xd28b00,48, 0xd28bc4,8, 0xd28bf0,30, 0xd28c80,4, 0xd28cc0,25, 0xd28d40,6, 0xd28d60,1, 0xd28d68,2, 0xd28d74,3, 0xd28e00,8, 0xd28e24,28, 0xd29000,4, 0xd29080,23, 0xd29100,14, 0xd29140,9, 0xd29200,10, 0xd29230,3, 0xd29240,5, 0xd29260,5, 0xd29280,9, 0xd29400,67, 0xd29600,10, 0xd30000,12, 0xd30040,2, 0xd30050,3, 0xd32000,1006, 0xd33000,31, 0xd33084,6, 0xd34004,1, 0xd3400c,3, 0xd34200,23, 0xd34280,23, 0xd34300,1, 0xd34400,1, 0xd34800,122, 0xd34a00,122, 0xd34c04,63, 0xd34d04,1, 0xd34d10,5, 0xd34d40,6, 0xd34d60,5, 0xd36000,1, 0xd36100,1, 0xd36108,3, 0xd36120,2, 0xd36134,8, 0xd36160,2, 0xd36174,8, 0xd361a0,4, 0xd36200,54, 0xd36800,5, 0xd36820,2, 0xd36834,1, 0xd3683c,1, 0xd36a00,24, 0xd36a80,24, 0xd36b00,1, 0xd36c00,6, 0xd36c24,5, 0xd36c40,16, 0xd37000,1, 0xd37020,5, 0xd37040,1, 0xd37048,2, 0xd37080,1, 0xd37100,4, 0xd37180,24, 0xd37200,4, 0xd37280,27, 0xd37300,2, 0xd3730c,3, 0xd38004,1, 0xd3800c,3, 0xd38020,1, 0xd38100,2, 0xd38110,3, 0xd38120,2, 0xd38140,10, 0xd38180,13, 0xd38200,2, 0xd38210,3, 0xd38220,2, 0xd38240,10, 0xd38280,13, 0xd38400,14, 0xd38440,3, 0xd38450,3, 0xd38460,1, 0xd38500,36, 0xd38600,10, 0xd38640,5, 0xd38660,5, 0xd38700,27, 0xd38780,7, 0xd387a0,8, 0xd38800,27, 0xd38880,7, 0xd388a0,8, 0xd38900,27, 0xd38980,7, 0xd389a0,8, 0xd38a00,27, 0xd38a80,7, 0xd38aa0,8, 0xd38b00,48, 0xd38bc4,8, 0xd38bf0,30, 0xd38c80,4, 0xd38cc0,25, 0xd38d40,6, 0xd38d60,1, 0xd38d68,2, 0xd38d74,3, 0xd38e00,8, 0xd38e24,28, 0xd39000,4, 0xd39080,23, 0xd39100,14, 0xd39140,9, 0xd39200,10, 0xd39230,3, 0xd39240,5, 0xd39260,5, 0xd39280,9, 0xd39400,67, 0xd39600,10, 0xe00000,1, 0xe00020,3, 0xe00030,2, 0xe00040,3, 0xe00050,2, 0xe00800,53, 0xe00900,3, 0xe00910,13, 0xe00a00,53, 0xe00b00,3, 0xe00b10,13, 0xe00c00,5, 0xe00c20,5, 0xe00c40,18, 0xe01000,6, 0xe01020,4, 0xe01040,16, 0xe02000,20, 0xe02080,15, 0xe02100,20, 0xe02180,15, 0xe02200,23, 0xe02260,7, 0xe02400,11, 0xe02430,3, 0xe02440,3, 0xe02450,3, 0xe02460,24, 0xe02500,11, 0xe02530,3, 0xe02540,3, 0xe02550,3, 0xe02560,24, 0xe02600,11, 0xe02630,3, 0xe02640,3, 0xe02650,3, 0xe02660,24, 0xe02700,11, 0xe02730,3, 0xe02740,3, 0xe02750,3, 0xe02760,24, 0xe02800,4, 0xe02820,16, 0xe02880,10, 0xe028c0,10, 0xe02900,6, 0xe02920,6, 0xe02940,4, 0xe02980,13, 0xe029c0,13, 0xe02a00,9, 0xe03000,14, 0xe03040,9, 0xe03080,6, 0xe030a0,1, 0xe030a8,4, 0xe03100,4, 0xe03200,124, 0xe03400,124, 0xe03600,8, 0xe03624,1, 0xe03644,6, 0xe03664,6, 0xe03680,1, 0xe03688,6, 0xe036a8,22, 0xe04000,1, 0xe04020,3, 0xe04030,2, 0xe04040,3, 0xe04050,2, 0xe04800,53, 0xe04900,3, 0xe04910,13, 0xe04a00,53, 0xe04b00,3, 0xe04b10,13, 0xe04c00,5, 0xe04c20,5, 0xe04c40,18, 0xe05000,6, 0xe05020,4, 0xe05040,16, 0xe06000,20, 0xe06080,15, 0xe06100,20, 0xe06180,15, 0xe06200,23, 0xe06260,7, 0xe06400,11, 0xe06430,3, 0xe06440,3, 0xe06450,3, 0xe06460,24, 0xe06500,11, 0xe06530,3, 0xe06540,3, 0xe06550,3, 0xe06560,24, 0xe06600,11, 0xe06630,3, 0xe06640,3, 0xe06650,3, 0xe06660,24, 0xe06700,11, 0xe06730,3, 0xe06740,3, 0xe06750,3, 0xe06760,24, 0xe06800,4, 0xe06820,16, 0xe06880,10, 0xe068c0,10, 0xe06900,6, 0xe06920,6, 0xe06940,4, 0xe06980,13, 0xe069c0,13, 0xe06a00,9, 0xe07000,14, 0xe07040,9, 0xe07080,6, 0xe070a0,1, 0xe070a8,4, 0xe07100,4, 0xe07200,124, 0xe07400,124, 0xe07600,8, 0xe07624,1, 0xe07644,6, 0xe07664,6, 0xe07680,1, 0xe07688,6, 0xe076a8,22, 0xe08000,84, 0xe08180,20, 0xe08200,5, 0xe08400,11, 0xe08440,11, 0xe08480,19, 0xe08500,19, 0xe08580,24, 0xe08600,13, 0xe08800,84, 0xe08980,20, 0xe08a00,5, 0xe08c00,11, 0xe08c40,11, 0xe08c80,19, 0xe08d00,19, 0xe08d80,24, 0xe08e00,13, 0xe09000,10, 0xe09040,5, 0xe09080,10, 0xe090c0,5, 0xe09100,5, 0xe09200,11, 0xe09230,3, 0xe09240,5, 0xe09260,5, 0xe09280,32, 0xe09400,13, 0xe09440,13, 0xe09480,9, 0xe094c0,1, 0xe094d0,5, 0xe094f0,21, 0xe09800,10, 0xe09840,5, 0xe09880,10, 0xe098c0,5, 0xe09900,5, 0xe09a00,11, 0xe09a30,3, 0xe09a40,5, 0xe09a60,5, 0xe09a80,32, 0xe09c00,13, 0xe09c40,13, 0xe09c80,9, 0xe09cc0,1, 0xe09cd0,5, 0xe09cf0,21, 0xe0a000,14, 0xe0a040,9, 0xe0a080,6, 0xe0a0a0,1, 0xe0a0a8,4, 0xe0a100,7, 0xe0a120,3, 0xe0a130,25, 0xe0c000,26, 0xe0c06c,2, 0xe0c080,3, 0xe0c090,17, 0xe0c100,26, 0xe0c16c,2, 0xe0c180,3, 0xe0c190,17, 0xe0c200,26, 0xe0c26c,2, 0xe0c280,3, 0xe0c290,17, 0xe0c300,26, 0xe0c36c,2, 0xe0c380,3, 0xe0c390,17, 0xe0c400,26, 0xe0c46c,2, 0xe0c480,3, 0xe0c490,17, 0xe0c500,26, 0xe0c56c,2, 0xe0c580,3, 0xe0c590,17, 0xe0c600,26, 0xe0c66c,2, 0xe0c680,3, 0xe0c690,17, 0xe0c700,26, 0xe0c76c,2, 0xe0c780,3, 0xe0c790,17, 0xe0c800,12, 0xe0c844,1, 0xe0c854,8, 0xe0c880,7, 0xe0c8a0,2, 0xe0c8ac,2, 0xe0c8c0,26, 0xe0c980,4, 0xe0c9a0,5, 0xe0c9c0,1, 0xe0d000,3, 0xe0d010,3, 0xe0d020,3, 0xe0d030,3, 0xe0d040,3, 0xe0d050,3, 0xe0d060,3, 0xe0d070,3, 0xe0d080,5, 0xe0d0a0,5, 0xe0d0c0,5, 0xe0d0e0,5, 0xe0d100,5, 0xe0d120,5, 0xe0d140,5, 0xe0d160,5, 0xe0d200,68, 0xe0d400,1, 0xe0d804,1, 0xe0d844,54, 0xe0da00,11, 0xe0da40,11, 0xe0da80,11, 0xe0dac0,11, 0xe0db00,11, 0xe0db40,11, 0xe0db80,11, 0xe0dbc0,11, 0xe0dc00,28, 0xe0dc80,5, 0xe0dca0,2, 0xe0e000,4, 0xe0e020,6, 0xe0e040,6, 0xe0e060,14, 0xe0e100,26, 0xe0e180,15, 0xe0e200,14, 0xe0e240,9, 0xe0e280,6, 0xe0e2a0,1, 0xe0e2a8,4, 0xe0e300,14, 0xe0e340,9, 0xe0e380,6, 0xe0e3a0,4, 0xe0e400,9, 0xe20000,1, 0xe21000,977, 0xe22000,161, 0xe23000,977, 0xe24000,977, 0xe25000,977, 0xe26000,977, 0xe27000,977, 0xe28000,977, 0xe29000,977, 0xe2a000,977, 0xe2b000,161, 0xe2c000,12, 0xe2c040,14, 0xe2c080,20, 0xe2c104,1, 0xe2c10c,4, 0xe2c200,12, 0xe2c240,14, 0xe2c280,20, 0xe2c304,1, 0xe2c30c,4, 0xe2c400,12, 0xe2c440,14, 0xe2c480,20, 0xe2c504,1, 0xe2c50c,4, 0xe2c600,12, 0xe2c640,14, 0xe2c680,20, 0xe2c704,1, 0xe2c70c,4, 0xe2c800,12, 0xe2c840,14, 0xe2c880,20, 0xe2c904,1, 0xe2c90c,4, 0xe2ca00,12, 0xe2ca40,14, 0xe2ca80,20, 0xe2cb04,1, 0xe2cb0c,4, 0xe2cc00,12, 0xe2cc40,14, 0xe2cc80,20, 0xe2cd04,1, 0xe2cd0c,4, 0xe2ce00,12, 0xe2ce40,14, 0xe2ce80,20, 0xe2cf04,1, 0xe2cf0c,4, 0xe2d000,12, 0xe2d040,14, 0xe2d080,20, 0xe2d104,1, 0xe2d10c,4, 0xe2d200,17, 0xe2d250,2, 0xe2d260,4, 0xe2e000,1, 0xe2e014,1, 0xe2e01c,11, 0xe2e060,9, 0xe2e094,1, 0xe2e09c,11, 0xe2e0e0,15, 0xe2e200,12, 0xe2e240,13, 0xe2e280,3, 0xe2e290,1, 0xe80000,500, 0xe80800,2, 0xe80820,15, 0xe81000,500, 0xe81800,8, 0xe81824,6, 0xe81840,8, 0xe81880,7, 0xe818a0,7, 0xe818c0,7, 0xe818e0,7, 0xe81900,8, 0xe81924,16, 0xe81980,12, 0xe82000,500, 0xe82800,2, 0xe82820,15, 0xe83000,500, 0xe83800,8, 0xe83824,6, 0xe83840,8, 0xe83880,7, 0xe838a0,7, 0xe838c0,7, 0xe838e0,7, 0xe83900,8, 0xe83924,16, 0xe83980,12, 0xe84004,5, 0xe84200,26, 0xe84280,4, 0xe842c0,25, 0xe84340,6, 0xe84360,1, 0xe84368,2, 0xe84374,11, 0xe843a4,10, 0xe84400,1, 0xe88000,52, 0xe88400,82, 0xe88560,6, 0xe88600,41, 0xe88700,2, 0xe88720,19, 0xe88800,25, 0xe88880,1, 0xe88900,28, 0xe88980,1, 0xe89000,52, 0xe89400,82, 0xe89560,6, 0xe89600,41, 0xe89700,2, 0xe89720,19, 0xe89800,25, 0xe89880,1, 0xe89900,28, 0xe89980,1, 0xe8a000,7, 0xe8a080,6, 0xe8a0a0,6, 0xe8a0c0,1, 0xe8a100,4, 0xe8a120,9, 0xe8c000,3, 0xe8c010,6, 0xe8c200,7, 0xe8c220,6, 0xe8c240,7, 0xe8c260,6, 0xe8c280,2, 0xe8c28c,2, 0xe8c2a0,2, 0xe8c2ac,2, 0xe8c2c0,7, 0xe8c2e0,7, 0xe8c300,2, 0xe8c30c,2, 0xe8c320,6, 0xe8c400,3, 0xe8c440,12, 0xe8c800,7, 0xe8c820,14, 0xe8c880,16, 0xe8c900,7, 0xe8c920,14, 0xe8c980,16, 0xe8ca00,6, 0xe8ca20,7, 0xe8cc00,3, 0xea0000,3, 0xea0800,7, 0xea0820,6, 0xea0840,6, 0xea0880,1, 0xea0894,1, 0xea089c,2, 0xea08c0,9, 0xea0900,18, 0xea0a00,36, 0xea0b00,22, 0xea0b80,18, 0xea0c00,3, 0xea0c10,3, 0xea1000,3, 0xea1010,2, 0xea1080,20, 0xea1100,1, 0xea1200,26, 0xea1280,4, 0xea12c0,25, 0xea1340,6, 0xea1360,1, 0xea1368,2, 0xea1374,11, 0xea13a4,4, 0xea1400,1, 0xeb0000,11, 0xeb0030,19, 0xeb0080,17, 0xeb0100,11, 0xeb0130,19, 0xeb0180,17, 0xeb0200,3, 0xeb0214,1, 0xeb021c,1, 0xeb0280,3, 0xeb0294,1, 0xeb029c,1, 0xeb0300,18, 0xeb0380,18, 0xeb0400,18, 0xeb0480,18, 0xeb0500,18, 0xeb0580,18, 0xeb0600,18, 0xeb0680,18, 0xeb0700,13, 0xeb0738,6, 0xeb0780,13, 0xeb07b8,6, 0xeb0800,1, 0xeb0808,22, 0xeb0880,1, 0xeb0894,13, 0xeb0900,3, 0xeb0910,3, 0xeb0920,3, 0xeb0940,3, 0xeb0954,1, 0xeb095c,1, 0xeb0a00,52, 0xeb0c00,4, 0xeb0d00,34, 0xeb0e00,4, 0xeb0e80,30, 0xeb0f00,1, 0xeb0f40,5, 0xeb0f60,5, 0xeb0f80,6, 0xeb1000,14, 0xeb1040,4, 0xeb1060,17, 0xeb10c0,6, 0xeb10e0,1, 0xeb10e8,2, 0xeb10f4,11, 0xeb1124,17, 0xeb1200,3, 0xeb1210,3, 0xeb1220,3, 0xeb1230,3, 0xeb1240,3, 0xeb1250,3, 0xeb2000,20, 0xeb2080,3, 0xeb2090,1, 0xeb2098,2, 0xec0000,500, 0xec0800,2, 0xec0820,15, 0xec1000,500, 0xec1800,8, 0xec1824,6, 0xec1840,8, 0xec1880,7, 0xec18a0,7, 0xec18c0,7, 0xec18e0,7, 0xec1900,8, 0xec1924,16, 0xec1980,12, 0xec2000,500, 0xec2800,2, 0xec2820,15, 0xec3000,500, 0xec3800,8, 0xec3824,6, 0xec3840,8, 0xec3880,7, 0xec38a0,7, 0xec38c0,7, 0xec38e0,7, 0xec3900,8, 0xec3924,16, 0xec3980,12, 0xec4004,5, 0xec4200,26, 0xec4280,4, 0xec42c0,25, 0xec4340,6, 0xec4360,1, 0xec4368,2, 0xec4374,11, 0xec43a4,10, 0xec4400,1, 0xec8000,52, 0xec8400,82, 0xec8560,6, 0xec8600,41, 0xec8700,2, 0xec8720,19, 0xec8800,25, 0xec8880,1, 0xec8900,28, 0xec8980,1, 0xec9000,52, 0xec9400,82, 0xec9560,6, 0xec9600,41, 0xec9700,2, 0xec9720,19, 0xec9800,25, 0xec9880,1, 0xec9900,28, 0xec9980,1, 0xeca000,7, 0xeca080,6, 0xeca0a0,6, 0xeca0c0,1, 0xeca100,4, 0xeca120,9, 0xecc000,3, 0xecc010,6, 0xecc200,7, 0xecc220,6, 0xecc240,7, 0xecc260,6, 0xecc280,2, 0xecc28c,2, 0xecc2a0,2, 0xecc2ac,2, 0xecc2c0,7, 0xecc2e0,7, 0xecc300,2, 0xecc30c,2, 0xecc320,6, 0xecc400,3, 0xecc440,12, 0xecc800,7, 0xecc820,14, 0xecc880,16, 0xecc900,7, 0xecc920,14, 0xecc980,16, 0xecca00,6, 0xecca20,7, 0xeccc00,3, 0xee0000,3, 0xee0800,7, 0xee0820,6, 0xee0840,6, 0xee0880,1, 0xee0894,1, 0xee089c,2, 0xee08c0,9, 0xee0900,18, 0xee0a00,36, 0xee0b00,22, 0xee0b80,18, 0xee0c00,3, 0xee0c10,3, 0xee1000,3, 0xee1010,2, 0xee1080,20, 0xee1100,1, 0xee1200,26, 0xee1280,4, 0xee12c0,25, 0xee1340,6, 0xee1360,1, 0xee1368,2, 0xee1374,11, 0xee13a4,4, 0xee1400,1, 0xef0000,11, 0xef0030,19, 0xef0080,17, 0xef0100,11, 0xef0130,19, 0xef0180,17, 0xef0200,3, 0xef0214,1, 0xef021c,1, 0xef0280,3, 0xef0294,1, 0xef029c,1, 0xef0300,18, 0xef0380,18, 0xef0400,18, 0xef0480,18, 0xef0500,18, 0xef0580,18, 0xef0600,18, 0xef0680,18, 0xef0700,13, 0xef0738,6, 0xef0780,13, 0xef07b8,6, 0xef0800,1, 0xef0808,22, 0xef0880,1, 0xef0894,13, 0xef0900,3, 0xef0910,3, 0xef0920,3, 0xef0940,3, 0xef0954,1, 0xef095c,1, 0xef0a00,52, 0xef0c00,4, 0xef0d00,34, 0xef0e00,4, 0xef0e80,30, 0xef0f00,1, 0xef0f40,5, 0xef0f60,5, 0xef0f80,6, 0xef1000,14, 0xef1040,4, 0xef1060,17, 0xef10c0,6, 0xef10e0,1, 0xef10e8,2, 0xef10f4,11, 0xef1124,17, 0xef1200,3, 0xef1210,3, 0xef1220,3, 0xef1230,3, 0xef1240,3, 0xef1250,3, 0xef2000,20, 0xef2080,3, 0xef2090,1, 0xef2098,2, 0xf00000,13, 0xf00038,4, 0xf00050,3, 0xf00060,3, 0xf00070,16, 0xf000c0,5, 0xf00400,14, 0xf00440,2, 0xf0044c,3, 0xf00480,14, 0xf004c0,2, 0xf004cc,3, 0xf00500,1, 0xf00508,15, 0xf00560,2, 0xf0056c,2, 0xf00600,4, 0xf00680,27, 0xf00800,2, 0xf00900,32, 0xf00984,2, 0xf00990,4, 0xf00a00,26, 0xf00a80,4, 0xf00ac0,25, 0xf00b40,6, 0xf00b60,1, 0xf00b68,2, 0xf00b74,11, 0xf00ba4,8, 0xf00c00,9, 0xf00c40,11, 0xf00c80,23, 0xf00ce0,15, 0xf00d20,15, 0xf00d60,1, 0xf01000,13, 0xf01038,4, 0xf01050,3, 0xf01060,3, 0xf01070,16, 0xf010c0,5, 0xf01400,14, 0xf01440,2, 0xf0144c,3, 0xf01480,14, 0xf014c0,2, 0xf014cc,3, 0xf01500,1, 0xf01508,15, 0xf01560,2, 0xf0156c,2, 0xf01600,4, 0xf01680,27, 0xf01800,2, 0xf01900,32, 0xf01984,2, 0xf01990,4, 0xf01a00,26, 0xf01a80,4, 0xf01ac0,25, 0xf01b40,6, 0xf01b60,1, 0xf01b68,2, 0xf01b74,11, 0xf01ba4,8, 0xf01c00,9, 0xf01c40,11, 0xf01c80,23, 0xf01ce0,15, 0xf01d20,15, 0xf01d60,1, 0xf02000,1, 0xf02100,36, 0xf02200,7, 0xf10000,22, 0xf10080,22, 0xf10100,12, 0xf10140,12, 0xf10200,52, 0xf10300,52, 0xf10400,11, 0xf10440,11, 0xf10480,3, 0xf104a0,6, 0xf104c0,6, 0xf104e0,3, 0xf104f0,3, 0xf10800,9, 0xf10840,15, 0xf10880,15, 0xf108c0,15, 0xf10900,1, 0xf10914,13, 0xf10980,17, 0xf11000,17, 0xf11080,17, 0xf11104,5, 0xf11120,3, 0xf11130,11, 0xf11200,31, 0xf11280,31, 0xf11300,12, 0xf11340,12, 0xf11380,2, 0xf11390,2, 0xf113a0,3, 0xf113b0,3, 0xf113c0,5, 0xf113e0,5, 0xf11400,3, 0xf11410,3, 0xf11420,3, 0xf11430,3, 0xf11440,3, 0xf11450,3, 0xf11460,7, 0xf11800,26, 0xf11880,4, 0xf118c0,25, 0xf11940,6, 0xf11960,1, 0xf11968,2, 0xf11974,11, 0xf119a4,12, 0xf11a00,4, 0xf11b00,43, 0xf11c00,4, 0xf11c20,7, 0xf11c40,3, 0xf11c50,1, 0xf11c60,3, 0xf11e00,32, 0xf11e84,1, 0xf11e90,4, 0xf11ea4,1, 0xf11eb4,14, 0xf11ef0,2, 0xf11f04,1, 0xf11f10,8, 0xf11f34,6, 0xf12000,3, 0xf12010,21, 0xf12080,1, 0xf12094,1, 0xf1209c,5, 0xf12100,15, 0xf12140,1, 0xf12180,6, 0xf14000,22, 0xf14080,22, 0xf14100,12, 0xf14140,12, 0xf14200,52, 0xf14300,52, 0xf14400,11, 0xf14440,11, 0xf14480,3, 0xf144a0,6, 0xf144c0,6, 0xf144e0,3, 0xf144f0,3, 0xf14800,9, 0xf14840,15, 0xf14880,15, 0xf148c0,15, 0xf14900,1, 0xf14914,13, 0xf14980,17, 0xf15000,17, 0xf15080,17, 0xf15104,5, 0xf15120,3, 0xf15130,11, 0xf15200,31, 0xf15280,31, 0xf15300,12, 0xf15340,12, 0xf15380,2, 0xf15390,2, 0xf153a0,3, 0xf153b0,3, 0xf153c0,5, 0xf153e0,5, 0xf15400,3, 0xf15410,3, 0xf15420,3, 0xf15430,3, 0xf15440,3, 0xf15450,3, 0xf15460,7, 0xf15800,26, 0xf15880,4, 0xf158c0,25, 0xf15940,6, 0xf15960,1, 0xf15968,2, 0xf15974,11, 0xf159a4,12, 0xf15a00,4, 0xf15b00,43, 0xf15c00,4, 0xf15c20,7, 0xf15c40,3, 0xf15c50,1, 0xf15c60,3, 0xf15e00,32, 0xf15e84,1, 0xf15e90,4, 0xf15ea4,1, 0xf15eb4,14, 0xf15ef0,2, 0xf15f04,1, 0xf15f10,8, 0xf15f34,6, 0xf16000,3, 0xf16010,21, 0xf16080,1, 0xf16094,1, 0xf1609c,5, 0xf16100,15, 0xf16140,1, 0xf16180,6, 0xf18000,100, 0xf18200,3, 0xf18210,5, 0xf20000,12, 0xf20040,2, 0xf20050,3, 0xf22000,1006, 0xf23000,31, 0xf23084,6, 0xf24004,1, 0xf2400c,3, 0xf24200,23, 0xf24280,23, 0xf24300,1, 0xf24400,1, 0xf24800,122, 0xf24a00,122, 0xf24c04,63, 0xf24d04,1, 0xf24d10,5, 0xf24d40,6, 0xf24d60,5, 0xf26000,1, 0xf26100,1, 0xf26108,3, 0xf26120,2, 0xf26134,8, 0xf26160,2, 0xf26174,8, 0xf261a0,4, 0xf26200,54, 0xf26800,5, 0xf26820,2, 0xf26834,1, 0xf2683c,1, 0xf26a00,24, 0xf26a80,24, 0xf26b00,1, 0xf26c00,6, 0xf26c24,5, 0xf26c40,16, 0xf27000,1, 0xf27020,5, 0xf27040,1, 0xf27048,2, 0xf27080,1, 0xf27100,4, 0xf27180,24, 0xf27200,4, 0xf27280,27, 0xf27300,2, 0xf2730c,3, 0xf28004,1, 0xf2800c,3, 0xf28020,1, 0xf28100,2, 0xf28110,3, 0xf28120,2, 0xf28140,10, 0xf28180,13, 0xf28200,2, 0xf28210,3, 0xf28220,2, 0xf28240,10, 0xf28280,13, 0xf28400,14, 0xf28440,3, 0xf28450,3, 0xf28460,1, 0xf28500,36, 0xf28600,10, 0xf28640,5, 0xf28660,5, 0xf28700,27, 0xf28780,7, 0xf287a0,8, 0xf28800,27, 0xf28880,7, 0xf288a0,8, 0xf28900,27, 0xf28980,7, 0xf289a0,8, 0xf28a00,27, 0xf28a80,7, 0xf28aa0,8, 0xf28b00,48, 0xf28bc4,8, 0xf28bf0,30, 0xf28c80,4, 0xf28cc0,25, 0xf28d40,6, 0xf28d60,1, 0xf28d68,2, 0xf28d74,3, 0xf28e00,8, 0xf28e24,28, 0xf29000,4, 0xf29080,23, 0xf29100,14, 0xf29140,9, 0xf29200,10, 0xf29230,3, 0xf29240,5, 0xf29260,5, 0xf29280,9, 0xf29400,67, 0xf29600,10, 0xf30000,12, 0xf30040,2, 0xf30050,3, 0xf32000,1006, 0xf33000,31, 0xf33084,6, 0xf34004,1, 0xf3400c,3, 0xf34200,23, 0xf34280,23, 0xf34300,1, 0xf34400,1, 0xf34800,122, 0xf34a00,122, 0xf34c04,63, 0xf34d04,1, 0xf34d10,5, 0xf34d40,6, 0xf34d60,5, 0xf36000,1, 0xf36100,1, 0xf36108,3, 0xf36120,2, 0xf36134,8, 0xf36160,2, 0xf36174,8, 0xf361a0,4, 0xf36200,54, 0xf36800,5, 0xf36820,2, 0xf36834,1, 0xf3683c,1, 0xf36a00,24, 0xf36a80,24, 0xf36b00,1, 0xf36c00,6, 0xf36c24,5, 0xf36c40,16, 0xf37000,1, 0xf37020,5, 0xf37040,1, 0xf37048,2, 0xf37080,1, 0xf37100,4, 0xf37180,24, 0xf37200,4, 0xf37280,27, 0xf37300,2, 0xf3730c,3, 0xf38004,1, 0xf3800c,3, 0xf38020,1, 0xf38100,2, 0xf38110,3, 0xf38120,2, 0xf38140,10, 0xf38180,13, 0xf38200,2, 0xf38210,3, 0xf38220,2, 0xf38240,10, 0xf38280,13, 0xf38400,14, 0xf38440,3, 0xf38450,3, 0xf38460,1, 0xf38500,36, 0xf38600,10, 0xf38640,5, 0xf38660,5, 0xf38700,27, 0xf38780,7, 0xf387a0,8, 0xf38800,27, 0xf38880,7, 0xf388a0,8, 0xf38900,27, 0xf38980,7, 0xf389a0,8, 0xf38a00,27, 0xf38a80,7, 0xf38aa0,8, 0xf38b00,48, 0xf38bc4,8, 0xf38bf0,30, 0xf38c80,4, 0xf38cc0,25, 0xf38d40,6, 0xf38d60,1, 0xf38d68,2, 0xf38d74,3, 0xf38e00,8, 0xf38e24,28, 0xf39000,4, 0xf39080,23, 0xf39100,14, 0xf39140,9, 0xf39200,10, 0xf39230,3, 0xf39240,5, 0xf39260,5, 0xf39280,9, 0xf39400,67, 0xf39600,10, 0x1000000,1, 0x1000020,3, 0x1000030,2, 0x1000040,3, 0x1000050,2, 0x1000800,53, 0x1000900,3, 0x1000910,13, 0x1000a00,53, 0x1000b00,3, 0x1000b10,13, 0x1000c00,5, 0x1000c20,5, 0x1000c40,18, 0x1001000,6, 0x1001020,4, 0x1001040,16, 0x1002000,20, 0x1002080,15, 0x1002100,20, 0x1002180,15, 0x1002200,23, 0x1002260,7, 0x1002400,11, 0x1002430,3, 0x1002440,3, 0x1002450,3, 0x1002460,24, 0x1002500,11, 0x1002530,3, 0x1002540,3, 0x1002550,3, 0x1002560,24, 0x1002600,11, 0x1002630,3, 0x1002640,3, 0x1002650,3, 0x1002660,24, 0x1002700,11, 0x1002730,3, 0x1002740,3, 0x1002750,3, 0x1002760,24, 0x1002800,4, 0x1002820,16, 0x1002880,10, 0x10028c0,10, 0x1002900,6, 0x1002920,6, 0x1002940,4, 0x1002980,13, 0x10029c0,13, 0x1002a00,9, 0x1003000,14, 0x1003040,9, 0x1003080,6, 0x10030a0,1, 0x10030a8,4, 0x1003100,4, 0x1003200,124, 0x1003400,124, 0x1003600,8, 0x1003624,1, 0x1003644,6, 0x1003664,6, 0x1003680,1, 0x1003688,6, 0x10036a8,22, 0x1004000,1, 0x1004020,3, 0x1004030,2, 0x1004040,3, 0x1004050,2, 0x1004800,53, 0x1004900,3, 0x1004910,13, 0x1004a00,53, 0x1004b00,3, 0x1004b10,13, 0x1004c00,5, 0x1004c20,5, 0x1004c40,18, 0x1005000,6, 0x1005020,4, 0x1005040,16, 0x1006000,20, 0x1006080,15, 0x1006100,20, 0x1006180,15, 0x1006200,23, 0x1006260,7, 0x1006400,11, 0x1006430,3, 0x1006440,3, 0x1006450,3, 0x1006460,24, 0x1006500,11, 0x1006530,3, 0x1006540,3, 0x1006550,3, 0x1006560,24, 0x1006600,11, 0x1006630,3, 0x1006640,3, 0x1006650,3, 0x1006660,24, 0x1006700,11, 0x1006730,3, 0x1006740,3, 0x1006750,3, 0x1006760,24, 0x1006800,4, 0x1006820,16, 0x1006880,10, 0x10068c0,10, 0x1006900,6, 0x1006920,6, 0x1006940,4, 0x1006980,13, 0x10069c0,13, 0x1006a00,9, 0x1007000,14, 0x1007040,9, 0x1007080,6, 0x10070a0,1, 0x10070a8,4, 0x1007100,4, 0x1007200,124, 0x1007400,124, 0x1007600,8, 0x1007624,1, 0x1007644,6, 0x1007664,6, 0x1007680,1, 0x1007688,6, 0x10076a8,22, 0x1008000,84, 0x1008180,20, 0x1008200,5, 0x1008400,11, 0x1008440,11, 0x1008480,19, 0x1008500,19, 0x1008580,24, 0x1008600,13, 0x1008800,84, 0x1008980,20, 0x1008a00,5, 0x1008c00,11, 0x1008c40,11, 0x1008c80,19, 0x1008d00,19, 0x1008d80,24, 0x1008e00,13, 0x1009000,10, 0x1009040,5, 0x1009080,10, 0x10090c0,5, 0x1009100,5, 0x1009200,11, 0x1009230,3, 0x1009240,5, 0x1009260,5, 0x1009280,32, 0x1009400,13, 0x1009440,13, 0x1009480,9, 0x10094c0,1, 0x10094d0,5, 0x10094f0,21, 0x1009800,10, 0x1009840,5, 0x1009880,10, 0x10098c0,5, 0x1009900,5, 0x1009a00,11, 0x1009a30,3, 0x1009a40,5, 0x1009a60,5, 0x1009a80,32, 0x1009c00,13, 0x1009c40,13, 0x1009c80,9, 0x1009cc0,1, 0x1009cd0,5, 0x1009cf0,21, 0x100a000,14, 0x100a040,9, 0x100a080,6, 0x100a0a0,1, 0x100a0a8,4, 0x100a100,7, 0x100a120,3, 0x100a130,25, 0x100c000,26, 0x100c06c,2, 0x100c080,3, 0x100c090,17, 0x100c100,26, 0x100c16c,2, 0x100c180,3, 0x100c190,17, 0x100c200,26, 0x100c26c,2, 0x100c280,3, 0x100c290,17, 0x100c300,26, 0x100c36c,2, 0x100c380,3, 0x100c390,17, 0x100c400,26, 0x100c46c,2, 0x100c480,3, 0x100c490,17, 0x100c500,26, 0x100c56c,2, 0x100c580,3, 0x100c590,17, 0x100c600,26, 0x100c66c,2, 0x100c680,3, 0x100c690,17, 0x100c700,26, 0x100c76c,2, 0x100c780,3, 0x100c790,17, 0x100c800,12, 0x100c844,1, 0x100c854,8, 0x100c880,7, 0x100c8a0,2, 0x100c8ac,2, 0x100c8c0,26, 0x100c980,4, 0x100c9a0,5, 0x100c9c0,1, 0x100d000,3, 0x100d010,3, 0x100d020,3, 0x100d030,3, 0x100d040,3, 0x100d050,3, 0x100d060,3, 0x100d070,3, 0x100d080,5, 0x100d0a0,5, 0x100d0c0,5, 0x100d0e0,5, 0x100d100,5, 0x100d120,5, 0x100d140,5, 0x100d160,5, 0x100d200,68, 0x100d400,1, 0x100d804,1, 0x100d844,54, 0x100da00,11, 0x100da40,11, 0x100da80,11, 0x100dac0,11, 0x100db00,11, 0x100db40,11, 0x100db80,11, 0x100dbc0,11, 0x100dc00,28, 0x100dc80,5, 0x100dca0,2, 0x100e000,4, 0x100e020,6, 0x100e040,6, 0x100e060,14, 0x100e100,26, 0x100e180,15, 0x100e200,14, 0x100e240,9, 0x100e280,6, 0x100e2a0,1, 0x100e2a8,4, 0x100e300,14, 0x100e340,9, 0x100e380,6, 0x100e3a0,4, 0x100e400,9, 0x1020000,1, 0x1021000,977, 0x1022000,161, 0x1023000,977, 0x1024000,977, 0x1025000,977, 0x1026000,977, 0x1027000,977, 0x1028000,977, 0x1029000,977, 0x102a000,977, 0x102b000,161, 0x102c000,12, 0x102c040,14, 0x102c080,20, 0x102c104,1, 0x102c10c,4, 0x102c200,12, 0x102c240,14, 0x102c280,20, 0x102c304,1, 0x102c30c,4, 0x102c400,12, 0x102c440,14, 0x102c480,20, 0x102c504,1, 0x102c50c,4, 0x102c600,12, 0x102c640,14, 0x102c680,20, 0x102c704,1, 0x102c70c,4, 0x102c800,12, 0x102c840,14, 0x102c880,20, 0x102c904,1, 0x102c90c,4, 0x102ca00,12, 0x102ca40,14, 0x102ca80,20, 0x102cb04,1, 0x102cb0c,4, 0x102cc00,12, 0x102cc40,14, 0x102cc80,20, 0x102cd04,1, 0x102cd0c,4, 0x102ce00,12, 0x102ce40,14, 0x102ce80,20, 0x102cf04,1, 0x102cf0c,4, 0x102d000,12, 0x102d040,14, 0x102d080,20, 0x102d104,1, 0x102d10c,4, 0x102d200,17, 0x102d250,2, 0x102d260,4, 0x102e000,1, 0x102e014,1, 0x102e01c,11, 0x102e060,9, 0x102e094,1, 0x102e09c,11, 0x102e0e0,15, 0x102e200,12, 0x102e240,13, 0x102e280,3, 0x102e290,1, 0x1080000,500, 0x1080800,2, 0x1080820,15, 0x1081000,500, 0x1081800,8, 0x1081824,6, 0x1081840,8, 0x1081880,7, 0x10818a0,7, 0x10818c0,7, 0x10818e0,7, 0x1081900,8, 0x1081924,16, 0x1081980,12, 0x1082000,500, 0x1082800,2, 0x1082820,15, 0x1083000,500, 0x1083800,8, 0x1083824,6, 0x1083840,8, 0x1083880,7, 0x10838a0,7, 0x10838c0,7, 0x10838e0,7, 0x1083900,8, 0x1083924,16, 0x1083980,12, 0x1084004,5, 0x1084200,26, 0x1084280,4, 0x10842c0,25, 0x1084340,6, 0x1084360,1, 0x1084368,2, 0x1084374,11, 0x10843a4,10, 0x1084400,1, 0x1088000,52, 0x1088400,82, 0x1088560,6, 0x1088600,41, 0x1088700,2, 0x1088720,19, 0x1088800,25, 0x1088880,1, 0x1088900,28, 0x1088980,1, 0x1089000,52, 0x1089400,82, 0x1089560,6, 0x1089600,41, 0x1089700,2, 0x1089720,19, 0x1089800,25, 0x1089880,1, 0x1089900,28, 0x1089980,1, 0x108a000,7, 0x108a080,6, 0x108a0a0,6, 0x108a0c0,1, 0x108a100,4, 0x108a120,9, 0x108c000,3, 0x108c010,6, 0x108c200,7, 0x108c220,6, 0x108c240,7, 0x108c260,6, 0x108c280,2, 0x108c28c,2, 0x108c2a0,2, 0x108c2ac,2, 0x108c2c0,7, 0x108c2e0,7, 0x108c300,2, 0x108c30c,2, 0x108c320,6, 0x108c400,3, 0x108c440,12, 0x108c800,7, 0x108c820,14, 0x108c880,16, 0x108c900,7, 0x108c920,14, 0x108c980,16, 0x108ca00,6, 0x108ca20,7, 0x108cc00,3, 0x10a0000,3, 0x10a0800,7, 0x10a0820,6, 0x10a0840,6, 0x10a0880,1, 0x10a0894,1, 0x10a089c,2, 0x10a08c0,9, 0x10a0900,18, 0x10a0a00,36, 0x10a0b00,22, 0x10a0b80,18, 0x10a0c00,3, 0x10a0c10,3, 0x10a1000,3, 0x10a1010,2, 0x10a1080,20, 0x10a1100,1, 0x10a1200,26, 0x10a1280,4, 0x10a12c0,25, 0x10a1340,6, 0x10a1360,1, 0x10a1368,2, 0x10a1374,11, 0x10a13a4,4, 0x10a1400,1, 0x10b0000,11, 0x10b0030,19, 0x10b0080,17, 0x10b0100,11, 0x10b0130,19, 0x10b0180,17, 0x10b0200,3, 0x10b0214,1, 0x10b021c,1, 0x10b0280,3, 0x10b0294,1, 0x10b029c,1, 0x10b0300,18, 0x10b0380,18, 0x10b0400,18, 0x10b0480,18, 0x10b0500,18, 0x10b0580,18, 0x10b0600,18, 0x10b0680,18, 0x10b0700,13, 0x10b0738,6, 0x10b0780,13, 0x10b07b8,6, 0x10b0800,1, 0x10b0808,22, 0x10b0880,1, 0x10b0894,13, 0x10b0900,3, 0x10b0910,3, 0x10b0920,3, 0x10b0940,3, 0x10b0954,1, 0x10b095c,1, 0x10b0a00,52, 0x10b0c00,4, 0x10b0d00,34, 0x10b0e00,4, 0x10b0e80,30, 0x10b0f00,1, 0x10b0f40,5, 0x10b0f60,5, 0x10b0f80,6, 0x10b1000,14, 0x10b1040,4, 0x10b1060,17, 0x10b10c0,6, 0x10b10e0,1, 0x10b10e8,2, 0x10b10f4,11, 0x10b1124,17, 0x10b1200,3, 0x10b1210,3, 0x10b1220,3, 0x10b1230,3, 0x10b1240,3, 0x10b1250,3, 0x10b2000,20, 0x10b2080,3, 0x10b2090,1, 0x10b2098,2, 0x10c0000,500, 0x10c0800,2, 0x10c0820,15, 0x10c1000,500, 0x10c1800,8, 0x10c1824,6, 0x10c1840,8, 0x10c1880,7, 0x10c18a0,7, 0x10c18c0,7, 0x10c18e0,7, 0x10c1900,8, 0x10c1924,16, 0x10c1980,12, 0x10c2000,500, 0x10c2800,2, 0x10c2820,15, 0x10c3000,500, 0x10c3800,8, 0x10c3824,6, 0x10c3840,8, 0x10c3880,7, 0x10c38a0,7, 0x10c38c0,7, 0x10c38e0,7, 0x10c3900,8, 0x10c3924,16, 0x10c3980,12, 0x10c4004,5, 0x10c4200,26, 0x10c4280,4, 0x10c42c0,25, 0x10c4340,6, 0x10c4360,1, 0x10c4368,2, 0x10c4374,11, 0x10c43a4,10, 0x10c4400,1, 0x10c8000,52, 0x10c8400,82, 0x10c8560,6, 0x10c8600,41, 0x10c8700,2, 0x10c8720,19, 0x10c8800,25, 0x10c8880,1, 0x10c8900,28, 0x10c8980,1, 0x10c9000,52, 0x10c9400,82, 0x10c9560,6, 0x10c9600,41, 0x10c9700,2, 0x10c9720,19, 0x10c9800,25, 0x10c9880,1, 0x10c9900,28, 0x10c9980,1, 0x10ca000,7, 0x10ca080,6, 0x10ca0a0,6, 0x10ca0c0,1, 0x10ca100,4, 0x10ca120,9, 0x10cc000,3, 0x10cc010,6, 0x10cc200,7, 0x10cc220,6, 0x10cc240,7, 0x10cc260,6, 0x10cc280,2, 0x10cc28c,2, 0x10cc2a0,2, 0x10cc2ac,2, 0x10cc2c0,7, 0x10cc2e0,7, 0x10cc300,2, 0x10cc30c,2, 0x10cc320,6, 0x10cc400,3, 0x10cc440,12, 0x10cc800,7, 0x10cc820,14, 0x10cc880,16, 0x10cc900,7, 0x10cc920,14, 0x10cc980,16, 0x10cca00,6, 0x10cca20,7, 0x10ccc00,3, 0x10e0000,3, 0x10e0800,7, 0x10e0820,6, 0x10e0840,6, 0x10e0880,1, 0x10e0894,1, 0x10e089c,2, 0x10e08c0,9, 0x10e0900,18, 0x10e0a00,36, 0x10e0b00,22, 0x10e0b80,18, 0x10e0c00,3, 0x10e0c10,3, 0x10e1000,3, 0x10e1010,2, 0x10e1080,20, 0x10e1100,1, 0x10e1200,26, 0x10e1280,4, 0x10e12c0,25, 0x10e1340,6, 0x10e1360,1, 0x10e1368,2, 0x10e1374,11, 0x10e13a4,4, 0x10e1400,1, 0x10f0000,11, 0x10f0030,19, 0x10f0080,17, 0x10f0100,11, 0x10f0130,19, 0x10f0180,17, 0x10f0200,3, 0x10f0214,1, 0x10f021c,1, 0x10f0280,3, 0x10f0294,1, 0x10f029c,1, 0x10f0300,18, 0x10f0380,18, 0x10f0400,18, 0x10f0480,18, 0x10f0500,18, 0x10f0580,18, 0x10f0600,18, 0x10f0680,18, 0x10f0700,13, 0x10f0738,6, 0x10f0780,13, 0x10f07b8,6, 0x10f0800,1, 0x10f0808,22, 0x10f0880,1, 0x10f0894,13, 0x10f0900,3, 0x10f0910,3, 0x10f0920,3, 0x10f0940,3, 0x10f0954,1, 0x10f095c,1, 0x10f0a00,52, 0x10f0c00,4, 0x10f0d00,34, 0x10f0e00,4, 0x10f0e80,30, 0x10f0f00,1, 0x10f0f40,5, 0x10f0f60,5, 0x10f0f80,6, 0x10f1000,14, 0x10f1040,4, 0x10f1060,17, 0x10f10c0,6, 0x10f10e0,1, 0x10f10e8,2, 0x10f10f4,11, 0x10f1124,17, 0x10f1200,3, 0x10f1210,3, 0x10f1220,3, 0x10f1230,3, 0x10f1240,3, 0x10f1250,3, 0x10f2000,20, 0x10f2080,3, 0x10f2090,1, 0x10f2098,2, 0x1100000,13, 0x1100038,4, 0x1100050,3, 0x1100060,3, 0x1100070,16, 0x11000c0,5, 0x1100400,14, 0x1100440,2, 0x110044c,3, 0x1100480,14, 0x11004c0,2, 0x11004cc,3, 0x1100500,1, 0x1100508,15, 0x1100560,2, 0x110056c,2, 0x1100600,4, 0x1100680,27, 0x1100800,2, 0x1100900,32, 0x1100984,2, 0x1100990,4, 0x1100a00,26, 0x1100a80,4, 0x1100ac0,25, 0x1100b40,6, 0x1100b60,1, 0x1100b68,2, 0x1100b74,11, 0x1100ba4,8, 0x1100c00,9, 0x1100c40,11, 0x1100c80,23, 0x1100ce0,15, 0x1100d20,15, 0x1100d60,1, 0x1101000,13, 0x1101038,4, 0x1101050,3, 0x1101060,3, 0x1101070,16, 0x11010c0,5, 0x1101400,14, 0x1101440,2, 0x110144c,3, 0x1101480,14, 0x11014c0,2, 0x11014cc,3, 0x1101500,1, 0x1101508,15, 0x1101560,2, 0x110156c,2, 0x1101600,4, 0x1101680,27, 0x1101800,2, 0x1101900,32, 0x1101984,2, 0x1101990,4, 0x1101a00,26, 0x1101a80,4, 0x1101ac0,25, 0x1101b40,6, 0x1101b60,1, 0x1101b68,2, 0x1101b74,11, 0x1101ba4,8, 0x1101c00,9, 0x1101c40,11, 0x1101c80,23, 0x1101ce0,15, 0x1101d20,15, 0x1101d60,1, 0x1102000,1, 0x1102100,36, 0x1102200,7, 0x1110000,22, 0x1110080,22, 0x1110100,12, 0x1110140,12, 0x1110200,52, 0x1110300,52, 0x1110400,11, 0x1110440,11, 0x1110480,3, 0x11104a0,6, 0x11104c0,6, 0x11104e0,3, 0x11104f0,3, 0x1110800,9, 0x1110840,15, 0x1110880,15, 0x11108c0,15, 0x1110900,1, 0x1110914,13, 0x1110980,17, 0x1111000,17, 0x1111080,17, 0x1111104,5, 0x1111120,3, 0x1111130,11, 0x1111200,31, 0x1111280,31, 0x1111300,12, 0x1111340,12, 0x1111380,2, 0x1111390,2, 0x11113a0,3, 0x11113b0,3, 0x11113c0,5, 0x11113e0,5, 0x1111400,3, 0x1111410,3, 0x1111420,3, 0x1111430,3, 0x1111440,3, 0x1111450,3, 0x1111460,7, 0x1111800,26, 0x1111880,4, 0x11118c0,25, 0x1111940,6, 0x1111960,1, 0x1111968,2, 0x1111974,11, 0x11119a4,12, 0x1111a00,4, 0x1111b00,43, 0x1111c00,4, 0x1111c20,7, 0x1111c40,3, 0x1111c50,1, 0x1111c60,3, 0x1111e00,32, 0x1111e84,1, 0x1111e90,4, 0x1111ea4,1, 0x1111eb4,14, 0x1111ef0,2, 0x1111f04,1, 0x1111f10,8, 0x1111f34,6, 0x1112000,3, 0x1112010,21, 0x1112080,1, 0x1112094,1, 0x111209c,5, 0x1112100,15, 0x1112140,1, 0x1112180,6, 0x1114000,22, 0x1114080,22, 0x1114100,12, 0x1114140,12, 0x1114200,52, 0x1114300,52, 0x1114400,11, 0x1114440,11, 0x1114480,3, 0x11144a0,6, 0x11144c0,6, 0x11144e0,3, 0x11144f0,3, 0x1114800,9, 0x1114840,15, 0x1114880,15, 0x11148c0,15, 0x1114900,1, 0x1114914,13, 0x1114980,17, 0x1115000,17, 0x1115080,17, 0x1115104,5, 0x1115120,3, 0x1115130,11, 0x1115200,31, 0x1115280,31, 0x1115300,12, 0x1115340,12, 0x1115380,2, 0x1115390,2, 0x11153a0,3, 0x11153b0,3, 0x11153c0,5, 0x11153e0,5, 0x1115400,3, 0x1115410,3, 0x1115420,3, 0x1115430,3, 0x1115440,3, 0x1115450,3, 0x1115460,7, 0x1115800,26, 0x1115880,4, 0x11158c0,25, 0x1115940,6, 0x1115960,1, 0x1115968,2, 0x1115974,11, 0x11159a4,12, 0x1115a00,4, 0x1115b00,43, 0x1115c00,4, 0x1115c20,7, 0x1115c40,3, 0x1115c50,1, 0x1115c60,3, 0x1115e00,32, 0x1115e84,1, 0x1115e90,4, 0x1115ea4,1, 0x1115eb4,14, 0x1115ef0,2, 0x1115f04,1, 0x1115f10,8, 0x1115f34,6, 0x1116000,3, 0x1116010,21, 0x1116080,1, 0x1116094,1, 0x111609c,5, 0x1116100,15, 0x1116140,1, 0x1116180,6, 0x1118000,100, 0x1118200,3, 0x1118210,5, 0x1120000,12, 0x1120040,2, 0x1120050,3, 0x1122000,1006, 0x1123000,31, 0x1123084,6, 0x1124004,1, 0x112400c,3, 0x1124200,23, 0x1124280,23, 0x1124300,1, 0x1124400,1, 0x1124800,122, 0x1124a00,122, 0x1124c04,63, 0x1124d04,1, 0x1124d10,5, 0x1124d40,6, 0x1124d60,5, 0x1126000,1, 0x1126100,1, 0x1126108,3, 0x1126120,2, 0x1126134,8, 0x1126160,2, 0x1126174,8, 0x11261a0,4, 0x1126200,54, 0x1126800,5, 0x1126820,2, 0x1126834,1, 0x112683c,1, 0x1126a00,24, 0x1126a80,24, 0x1126b00,1, 0x1126c00,6, 0x1126c24,5, 0x1126c40,16, 0x1127000,1, 0x1127020,5, 0x1127040,1, 0x1127048,2, 0x1127080,1, 0x1127100,4, 0x1127180,24, 0x1127200,4, 0x1127280,27, 0x1127300,2, 0x112730c,3, 0x1128004,1, 0x112800c,3, 0x1128020,1, 0x1128100,2, 0x1128110,3, 0x1128120,2, 0x1128140,10, 0x1128180,13, 0x1128200,2, 0x1128210,3, 0x1128220,2, 0x1128240,10, 0x1128280,13, 0x1128400,14, 0x1128440,3, 0x1128450,3, 0x1128460,1, 0x1128500,36, 0x1128600,10, 0x1128640,5, 0x1128660,5, 0x1128700,27, 0x1128780,7, 0x11287a0,8, 0x1128800,27, 0x1128880,7, 0x11288a0,8, 0x1128900,27, 0x1128980,7, 0x11289a0,8, 0x1128a00,27, 0x1128a80,7, 0x1128aa0,8, 0x1128b00,48, 0x1128bc4,8, 0x1128bf0,30, 0x1128c80,4, 0x1128cc0,25, 0x1128d40,6, 0x1128d60,1, 0x1128d68,2, 0x1128d74,3, 0x1128e00,8, 0x1128e24,28, 0x1129000,4, 0x1129080,23, 0x1129100,14, 0x1129140,9, 0x1129200,10, 0x1129230,3, 0x1129240,5, 0x1129260,5, 0x1129280,9, 0x1129400,67, 0x1129600,10, 0x1130000,12, 0x1130040,2, 0x1130050,3, 0x1132000,1006, 0x1133000,31, 0x1133084,6, 0x1134004,1, 0x113400c,3, 0x1134200,23, 0x1134280,23, 0x1134300,1, 0x1134400,1, 0x1134800,122, 0x1134a00,122, 0x1134c04,63, 0x1134d04,1, 0x1134d10,5, 0x1134d40,6, 0x1134d60,5, 0x1136000,1, 0x1136100,1, 0x1136108,3, 0x1136120,2, 0x1136134,8, 0x1136160,2, 0x1136174,8, 0x11361a0,4, 0x1136200,54, 0x1136800,5, 0x1136820,2, 0x1136834,1, 0x113683c,1, 0x1136a00,24, 0x1136a80,24, 0x1136b00,1, 0x1136c00,6, 0x1136c24,5, 0x1136c40,16, 0x1137000,1, 0x1137020,5, 0x1137040,1, 0x1137048,2, 0x1137080,1, 0x1137100,4, 0x1137180,24, 0x1137200,4, 0x1137280,27, 0x1137300,2, 0x113730c,3, 0x1138004,1, 0x113800c,3, 0x1138020,1, 0x1138100,2, 0x1138110,3, 0x1138120,2, 0x1138140,10, 0x1138180,13, 0x1138200,2, 0x1138210,3, 0x1138220,2, 0x1138240,10, 0x1138280,13, 0x1138400,14, 0x1138440,3, 0x1138450,3, 0x1138460,1, 0x1138500,36, 0x1138600,10, 0x1138640,5, 0x1138660,5, 0x1138700,27, 0x1138780,7, 0x11387a0,8, 0x1138800,27, 0x1138880,7, 0x11388a0,8, 0x1138900,27, 0x1138980,7, 0x11389a0,8, 0x1138a00,27, 0x1138a80,7, 0x1138aa0,8, 0x1138b00,48, 0x1138bc4,8, 0x1138bf0,30, 0x1138c80,4, 0x1138cc0,25, 0x1138d40,6, 0x1138d60,1, 0x1138d68,2, 0x1138d74,3, 0x1138e00,8, 0x1138e24,28, 0x1139000,4, 0x1139080,23, 0x1139100,14, 0x1139140,9, 0x1139200,10, 0x1139230,3, 0x1139240,5, 0x1139260,5, 0x1139280,9, 0x1139400,67, 0x1139600,10, 0x1200000,1, 0x1200020,3, 0x1200030,2, 0x1200040,3, 0x1200050,2, 0x1200800,53, 0x1200900,3, 0x1200910,13, 0x1200a00,53, 0x1200b00,3, 0x1200b10,13, 0x1200c00,5, 0x1200c20,5, 0x1200c40,18, 0x1201000,6, 0x1201020,4, 0x1201040,16, 0x1202000,20, 0x1202080,15, 0x1202100,20, 0x1202180,15, 0x1202200,23, 0x1202260,7, 0x1202400,11, 0x1202430,3, 0x1202440,3, 0x1202450,3, 0x1202460,24, 0x1202500,11, 0x1202530,3, 0x1202540,3, 0x1202550,3, 0x1202560,24, 0x1202600,11, 0x1202630,3, 0x1202640,3, 0x1202650,3, 0x1202660,24, 0x1202700,11, 0x1202730,3, 0x1202740,3, 0x1202750,3, 0x1202760,24, 0x1202800,4, 0x1202820,16, 0x1202880,10, 0x12028c0,10, 0x1202900,6, 0x1202920,6, 0x1202940,4, 0x1202980,13, 0x12029c0,13, 0x1202a00,9, 0x1203000,14, 0x1203040,9, 0x1203080,6, 0x12030a0,1, 0x12030a8,4, 0x1203100,4, 0x1203200,124, 0x1203400,124, 0x1203600,8, 0x1203624,1, 0x1203644,6, 0x1203664,6, 0x1203680,1, 0x1203688,6, 0x12036a8,22, 0x1204000,1, 0x1204020,3, 0x1204030,2, 0x1204040,3, 0x1204050,2, 0x1204800,53, 0x1204900,3, 0x1204910,13, 0x1204a00,53, 0x1204b00,3, 0x1204b10,13, 0x1204c00,5, 0x1204c20,5, 0x1204c40,18, 0x1205000,6, 0x1205020,4, 0x1205040,16, 0x1206000,20, 0x1206080,15, 0x1206100,20, 0x1206180,15, 0x1206200,23, 0x1206260,7, 0x1206400,11, 0x1206430,3, 0x1206440,3, 0x1206450,3, 0x1206460,24, 0x1206500,11, 0x1206530,3, 0x1206540,3, 0x1206550,3, 0x1206560,24, 0x1206600,11, 0x1206630,3, 0x1206640,3, 0x1206650,3, 0x1206660,24, 0x1206700,11, 0x1206730,3, 0x1206740,3, 0x1206750,3, 0x1206760,24, 0x1206800,4, 0x1206820,16, 0x1206880,10, 0x12068c0,10, 0x1206900,6, 0x1206920,6, 0x1206940,4, 0x1206980,13, 0x12069c0,13, 0x1206a00,9, 0x1207000,14, 0x1207040,9, 0x1207080,6, 0x12070a0,1, 0x12070a8,4, 0x1207100,4, 0x1207200,124, 0x1207400,124, 0x1207600,8, 0x1207624,1, 0x1207644,6, 0x1207664,6, 0x1207680,1, 0x1207688,6, 0x12076a8,22, 0x1208000,84, 0x1208180,20, 0x1208200,5, 0x1208400,11, 0x1208440,11, 0x1208480,19, 0x1208500,19, 0x1208580,24, 0x1208600,13, 0x1208800,84, 0x1208980,20, 0x1208a00,5, 0x1208c00,11, 0x1208c40,11, 0x1208c80,19, 0x1208d00,19, 0x1208d80,24, 0x1208e00,13, 0x1209000,10, 0x1209040,5, 0x1209080,10, 0x12090c0,5, 0x1209100,5, 0x1209200,11, 0x1209230,3, 0x1209240,5, 0x1209260,5, 0x1209280,32, 0x1209400,13, 0x1209440,13, 0x1209480,9, 0x12094c0,1, 0x12094d0,5, 0x12094f0,21, 0x1209800,10, 0x1209840,5, 0x1209880,10, 0x12098c0,5, 0x1209900,5, 0x1209a00,11, 0x1209a30,3, 0x1209a40,5, 0x1209a60,5, 0x1209a80,32, 0x1209c00,13, 0x1209c40,13, 0x1209c80,9, 0x1209cc0,1, 0x1209cd0,5, 0x1209cf0,21, 0x120a000,14, 0x120a040,9, 0x120a080,6, 0x120a0a0,1, 0x120a0a8,4, 0x120a100,7, 0x120a120,3, 0x120a130,25, 0x120c000,26, 0x120c06c,2, 0x120c080,3, 0x120c090,17, 0x120c100,26, 0x120c16c,2, 0x120c180,3, 0x120c190,17, 0x120c200,26, 0x120c26c,2, 0x120c280,3, 0x120c290,17, 0x120c300,26, 0x120c36c,2, 0x120c380,3, 0x120c390,17, 0x120c400,26, 0x120c46c,2, 0x120c480,3, 0x120c490,17, 0x120c500,26, 0x120c56c,2, 0x120c580,3, 0x120c590,17, 0x120c600,26, 0x120c66c,2, 0x120c680,3, 0x120c690,17, 0x120c700,26, 0x120c76c,2, 0x120c780,3, 0x120c790,17, 0x120c800,12, 0x120c844,1, 0x120c854,8, 0x120c880,7, 0x120c8a0,2, 0x120c8ac,2, 0x120c8c0,26, 0x120c980,4, 0x120c9a0,5, 0x120c9c0,1, 0x120d000,3, 0x120d010,3, 0x120d020,3, 0x120d030,3, 0x120d040,3, 0x120d050,3, 0x120d060,3, 0x120d070,3, 0x120d080,5, 0x120d0a0,5, 0x120d0c0,5, 0x120d0e0,5, 0x120d100,5, 0x120d120,5, 0x120d140,5, 0x120d160,5, 0x120d200,68, 0x120d400,1, 0x120d804,1, 0x120d844,54, 0x120da00,11, 0x120da40,11, 0x120da80,11, 0x120dac0,11, 0x120db00,11, 0x120db40,11, 0x120db80,11, 0x120dbc0,11, 0x120dc00,28, 0x120dc80,5, 0x120dca0,2, 0x120e000,4, 0x120e020,6, 0x120e040,6, 0x120e060,14, 0x120e100,26, 0x120e180,15, 0x120e200,14, 0x120e240,9, 0x120e280,6, 0x120e2a0,1, 0x120e2a8,4, 0x120e300,14, 0x120e340,9, 0x120e380,6, 0x120e3a0,4, 0x120e400,9, 0x1220000,1, 0x1221000,977, 0x1222000,161, 0x1223000,977, 0x1224000,977, 0x1225000,977, 0x1226000,977, 0x1227000,977, 0x1228000,977, 0x1229000,977, 0x122a000,977, 0x122b000,161, 0x122c000,12, 0x122c040,14, 0x122c080,20, 0x122c104,1, 0x122c10c,4, 0x122c200,12, 0x122c240,14, 0x122c280,20, 0x122c304,1, 0x122c30c,4, 0x122c400,12, 0x122c440,14, 0x122c480,20, 0x122c504,1, 0x122c50c,4, 0x122c600,12, 0x122c640,14, 0x122c680,20, 0x122c704,1, 0x122c70c,4, 0x122c800,12, 0x122c840,14, 0x122c880,20, 0x122c904,1, 0x122c90c,4, 0x122ca00,12, 0x122ca40,14, 0x122ca80,20, 0x122cb04,1, 0x122cb0c,4, 0x122cc00,12, 0x122cc40,14, 0x122cc80,20, 0x122cd04,1, 0x122cd0c,4, 0x122ce00,12, 0x122ce40,14, 0x122ce80,20, 0x122cf04,1, 0x122cf0c,4, 0x122d000,12, 0x122d040,14, 0x122d080,20, 0x122d104,1, 0x122d10c,4, 0x122d200,17, 0x122d250,2, 0x122d260,4, 0x122e000,1, 0x122e014,1, 0x122e01c,11, 0x122e060,9, 0x122e094,1, 0x122e09c,11, 0x122e0e0,15, 0x122e200,12, 0x122e240,13, 0x122e280,3, 0x122e290,1, 0x1280000,500, 0x1280800,2, 0x1280820,15, 0x1281000,500, 0x1281800,8, 0x1281824,6, 0x1281840,8, 0x1281880,7, 0x12818a0,7, 0x12818c0,7, 0x12818e0,7, 0x1281900,8, 0x1281924,16, 0x1281980,12, 0x1282000,500, 0x1282800,2, 0x1282820,15, 0x1283000,500, 0x1283800,8, 0x1283824,6, 0x1283840,8, 0x1283880,7, 0x12838a0,7, 0x12838c0,7, 0x12838e0,7, 0x1283900,8, 0x1283924,16, 0x1283980,12, 0x1284004,5, 0x1284200,26, 0x1284280,4, 0x12842c0,25, 0x1284340,6, 0x1284360,1, 0x1284368,2, 0x1284374,11, 0x12843a4,10, 0x1284400,1, 0x1288000,52, 0x1288400,82, 0x1288560,6, 0x1288600,41, 0x1288700,2, 0x1288720,19, 0x1288800,25, 0x1288880,1, 0x1288900,28, 0x1288980,1, 0x1289000,52, 0x1289400,82, 0x1289560,6, 0x1289600,41, 0x1289700,2, 0x1289720,19, 0x1289800,25, 0x1289880,1, 0x1289900,28, 0x1289980,1, 0x128a000,7, 0x128a080,6, 0x128a0a0,6, 0x128a0c0,1, 0x128a100,4, 0x128a120,9, 0x128c000,3, 0x128c010,6, 0x128c200,7, 0x128c220,6, 0x128c240,7, 0x128c260,6, 0x128c280,2, 0x128c28c,2, 0x128c2a0,2, 0x128c2ac,2, 0x128c2c0,7, 0x128c2e0,7, 0x128c300,2, 0x128c30c,2, 0x128c320,6, 0x128c400,3, 0x128c440,12, 0x128c800,7, 0x128c820,14, 0x128c880,16, 0x128c900,7, 0x128c920,14, 0x128c980,16, 0x128ca00,6, 0x128ca20,7, 0x128cc00,3, 0x12a0000,3, 0x12a0800,7, 0x12a0820,6, 0x12a0840,6, 0x12a0880,1, 0x12a0894,1, 0x12a089c,2, 0x12a08c0,9, 0x12a0900,18, 0x12a0a00,36, 0x12a0b00,22, 0x12a0b80,18, 0x12a0c00,3, 0x12a0c10,3, 0x12a1000,3, 0x12a1010,2, 0x12a1080,20, 0x12a1100,1, 0x12a1200,26, 0x12a1280,4, 0x12a12c0,25, 0x12a1340,6, 0x12a1360,1, 0x12a1368,2, 0x12a1374,11, 0x12a13a4,4, 0x12a1400,1, 0x12b0000,11, 0x12b0030,19, 0x12b0080,17, 0x12b0100,11, 0x12b0130,19, 0x12b0180,17, 0x12b0200,3, 0x12b0214,1, 0x12b021c,1, 0x12b0280,3, 0x12b0294,1, 0x12b029c,1, 0x12b0300,18, 0x12b0380,18, 0x12b0400,18, 0x12b0480,18, 0x12b0500,18, 0x12b0580,18, 0x12b0600,18, 0x12b0680,18, 0x12b0700,13, 0x12b0738,6, 0x12b0780,13, 0x12b07b8,6, 0x12b0800,1, 0x12b0808,22, 0x12b0880,1, 0x12b0894,13, 0x12b0900,3, 0x12b0910,3, 0x12b0920,3, 0x12b0940,3, 0x12b0954,1, 0x12b095c,1, 0x12b0a00,52, 0x12b0c00,4, 0x12b0d00,34, 0x12b0e00,4, 0x12b0e80,30, 0x12b0f00,1, 0x12b0f40,5, 0x12b0f60,5, 0x12b0f80,6, 0x12b1000,14, 0x12b1040,4, 0x12b1060,17, 0x12b10c0,6, 0x12b10e0,1, 0x12b10e8,2, 0x12b10f4,11, 0x12b1124,17, 0x12b1200,3, 0x12b1210,3, 0x12b1220,3, 0x12b1230,3, 0x12b1240,3, 0x12b1250,3, 0x12b2000,20, 0x12b2080,3, 0x12b2090,1, 0x12b2098,2, 0x12c0000,500, 0x12c0800,2, 0x12c0820,15, 0x12c1000,500, 0x12c1800,8, 0x12c1824,6, 0x12c1840,8, 0x12c1880,7, 0x12c18a0,7, 0x12c18c0,7, 0x12c18e0,7, 0x12c1900,8, 0x12c1924,16, 0x12c1980,12, 0x12c2000,500, 0x12c2800,2, 0x12c2820,15, 0x12c3000,500, 0x12c3800,8, 0x12c3824,6, 0x12c3840,8, 0x12c3880,7, 0x12c38a0,7, 0x12c38c0,7, 0x12c38e0,7, 0x12c3900,8, 0x12c3924,16, 0x12c3980,12, 0x12c4004,5, 0x12c4200,26, 0x12c4280,4, 0x12c42c0,25, 0x12c4340,6, 0x12c4360,1, 0x12c4368,2, 0x12c4374,11, 0x12c43a4,10, 0x12c4400,1, 0x12c8000,52, 0x12c8400,82, 0x12c8560,6, 0x12c8600,41, 0x12c8700,2, 0x12c8720,19, 0x12c8800,25, 0x12c8880,1, 0x12c8900,28, 0x12c8980,1, 0x12c9000,52, 0x12c9400,82, 0x12c9560,6, 0x12c9600,41, 0x12c9700,2, 0x12c9720,19, 0x12c9800,25, 0x12c9880,1, 0x12c9900,28, 0x12c9980,1, 0x12ca000,7, 0x12ca080,6, 0x12ca0a0,6, 0x12ca0c0,1, 0x12ca100,4, 0x12ca120,9, 0x12cc000,3, 0x12cc010,6, 0x12cc200,7, 0x12cc220,6, 0x12cc240,7, 0x12cc260,6, 0x12cc280,2, 0x12cc28c,2, 0x12cc2a0,2, 0x12cc2ac,2, 0x12cc2c0,7, 0x12cc2e0,7, 0x12cc300,2, 0x12cc30c,2, 0x12cc320,6, 0x12cc400,3, 0x12cc440,12, 0x12cc800,7, 0x12cc820,14, 0x12cc880,16, 0x12cc900,7, 0x12cc920,14, 0x12cc980,16, 0x12cca00,6, 0x12cca20,7, 0x12ccc00,3, 0x12e0000,3, 0x12e0800,7, 0x12e0820,6, 0x12e0840,6, 0x12e0880,1, 0x12e0894,1, 0x12e089c,2, 0x12e08c0,9, 0x12e0900,18, 0x12e0a00,36, 0x12e0b00,22, 0x12e0b80,18, 0x12e0c00,3, 0x12e0c10,3, 0x12e1000,3, 0x12e1010,2, 0x12e1080,20, 0x12e1100,1, 0x12e1200,26, 0x12e1280,4, 0x12e12c0,25, 0x12e1340,6, 0x12e1360,1, 0x12e1368,2, 0x12e1374,11, 0x12e13a4,4, 0x12e1400,1, 0x12f0000,11, 0x12f0030,19, 0x12f0080,17, 0x12f0100,11, 0x12f0130,19, 0x12f0180,17, 0x12f0200,3, 0x12f0214,1, 0x12f021c,1, 0x12f0280,3, 0x12f0294,1, 0x12f029c,1, 0x12f0300,18, 0x12f0380,18, 0x12f0400,18, 0x12f0480,18, 0x12f0500,18, 0x12f0580,18, 0x12f0600,18, 0x12f0680,18, 0x12f0700,13, 0x12f0738,6, 0x12f0780,13, 0x12f07b8,6, 0x12f0800,1, 0x12f0808,22, 0x12f0880,1, 0x12f0894,13, 0x12f0900,3, 0x12f0910,3, 0x12f0920,3, 0x12f0940,3, 0x12f0954,1, 0x12f095c,1, 0x12f0a00,52, 0x12f0c00,4, 0x12f0d00,34, 0x12f0e00,4, 0x12f0e80,30, 0x12f0f00,1, 0x12f0f40,5, 0x12f0f60,5, 0x12f0f80,6, 0x12f1000,14, 0x12f1040,4, 0x12f1060,17, 0x12f10c0,6, 0x12f10e0,1, 0x12f10e8,2, 0x12f10f4,11, 0x12f1124,17, 0x12f1200,3, 0x12f1210,3, 0x12f1220,3, 0x12f1230,3, 0x12f1240,3, 0x12f1250,3, 0x12f2000,20, 0x12f2080,3, 0x12f2090,1, 0x12f2098,2, 0x1300000,13, 0x1300038,4, 0x1300050,3, 0x1300060,3, 0x1300070,16, 0x13000c0,5, 0x1300400,14, 0x1300440,2, 0x130044c,3, 0x1300480,14, 0x13004c0,2, 0x13004cc,3, 0x1300500,1, 0x1300508,15, 0x1300560,2, 0x130056c,2, 0x1300600,4, 0x1300680,27, 0x1300800,2, 0x1300900,32, 0x1300984,2, 0x1300990,4, 0x1300a00,26, 0x1300a80,4, 0x1300ac0,25, 0x1300b40,6, 0x1300b60,1, 0x1300b68,2, 0x1300b74,11, 0x1300ba4,8, 0x1300c00,9, 0x1300c40,11, 0x1300c80,23, 0x1300ce0,15, 0x1300d20,15, 0x1300d60,1, 0x1301000,13, 0x1301038,4, 0x1301050,3, 0x1301060,3, 0x1301070,16, 0x13010c0,5, 0x1301400,14, 0x1301440,2, 0x130144c,3, 0x1301480,14, 0x13014c0,2, 0x13014cc,3, 0x1301500,1, 0x1301508,15, 0x1301560,2, 0x130156c,2, 0x1301600,4, 0x1301680,27, 0x1301800,2, 0x1301900,32, 0x1301984,2, 0x1301990,4, 0x1301a00,26, 0x1301a80,4, 0x1301ac0,25, 0x1301b40,6, 0x1301b60,1, 0x1301b68,2, 0x1301b74,11, 0x1301ba4,8, 0x1301c00,9, 0x1301c40,11, 0x1301c80,23, 0x1301ce0,15, 0x1301d20,15, 0x1301d60,1, 0x1302000,1, 0x1302100,36, 0x1302200,7, 0x1310000,22, 0x1310080,22, 0x1310100,12, 0x1310140,12, 0x1310200,52, 0x1310300,52, 0x1310400,11, 0x1310440,11, 0x1310480,3, 0x13104a0,6, 0x13104c0,6, 0x13104e0,3, 0x13104f0,3, 0x1310800,9, 0x1310840,15, 0x1310880,15, 0x13108c0,15, 0x1310900,1, 0x1310914,13, 0x1310980,17, 0x1311000,17, 0x1311080,17, 0x1311104,5, 0x1311120,3, 0x1311130,11, 0x1311200,31, 0x1311280,31, 0x1311300,12, 0x1311340,12, 0x1311380,2, 0x1311390,2, 0x13113a0,3, 0x13113b0,3, 0x13113c0,5, 0x13113e0,5, 0x1311400,3, 0x1311410,3, 0x1311420,3, 0x1311430,3, 0x1311440,3, 0x1311450,3, 0x1311460,7, 0x1311800,26, 0x1311880,4, 0x13118c0,25, 0x1311940,6, 0x1311960,1, 0x1311968,2, 0x1311974,11, 0x13119a4,12, 0x1311a00,4, 0x1311b00,43, 0x1311c00,4, 0x1311c20,7, 0x1311c40,3, 0x1311c50,1, 0x1311c60,3, 0x1311e00,32, 0x1311e84,1, 0x1311e90,4, 0x1311ea4,1, 0x1311eb4,14, 0x1311ef0,2, 0x1311f04,1, 0x1311f10,8, 0x1311f34,6, 0x1312000,3, 0x1312010,21, 0x1312080,1, 0x1312094,1, 0x131209c,5, 0x1312100,15, 0x1312140,1, 0x1312180,6, 0x1314000,22, 0x1314080,22, 0x1314100,12, 0x1314140,12, 0x1314200,52, 0x1314300,52, 0x1314400,11, 0x1314440,11, 0x1314480,3, 0x13144a0,6, 0x13144c0,6, 0x13144e0,3, 0x13144f0,3, 0x1314800,9, 0x1314840,15, 0x1314880,15, 0x13148c0,15, 0x1314900,1, 0x1314914,13, 0x1314980,17, 0x1315000,17, 0x1315080,17, 0x1315104,5, 0x1315120,3, 0x1315130,11, 0x1315200,31, 0x1315280,31, 0x1315300,12, 0x1315340,12, 0x1315380,2, 0x1315390,2, 0x13153a0,3, 0x13153b0,3, 0x13153c0,5, 0x13153e0,5, 0x1315400,3, 0x1315410,3, 0x1315420,3, 0x1315430,3, 0x1315440,3, 0x1315450,3, 0x1315460,7, 0x1315800,26, 0x1315880,4, 0x13158c0,25, 0x1315940,6, 0x1315960,1, 0x1315968,2, 0x1315974,11, 0x13159a4,12, 0x1315a00,4, 0x1315b00,43, 0x1315c00,4, 0x1315c20,7, 0x1315c40,3, 0x1315c50,1, 0x1315c60,3, 0x1315e00,32, 0x1315e84,1, 0x1315e90,4, 0x1315ea4,1, 0x1315eb4,14, 0x1315ef0,2, 0x1315f04,1, 0x1315f10,8, 0x1315f34,6, 0x1316000,3, 0x1316010,21, 0x1316080,1, 0x1316094,1, 0x131609c,5, 0x1316100,15, 0x1316140,1, 0x1316180,6, 0x1318000,100, 0x1318200,3, 0x1318210,5, 0x1320000,12, 0x1320040,2, 0x1320050,3, 0x1322000,1006, 0x1323000,31, 0x1323084,6, 0x1324004,1, 0x132400c,3, 0x1324200,23, 0x1324280,23, 0x1324300,1, 0x1324400,1, 0x1324800,122, 0x1324a00,122, 0x1324c04,63, 0x1324d04,1, 0x1324d10,5, 0x1324d40,6, 0x1324d60,5, 0x1326000,1, 0x1326100,1, 0x1326108,3, 0x1326120,2, 0x1326134,8, 0x1326160,2, 0x1326174,8, 0x13261a0,4, 0x1326200,54, 0x1326800,5, 0x1326820,2, 0x1326834,1, 0x132683c,1, 0x1326a00,24, 0x1326a80,24, 0x1326b00,1, 0x1326c00,6, 0x1326c24,5, 0x1326c40,16, 0x1327000,1, 0x1327020,5, 0x1327040,1, 0x1327048,2, 0x1327080,1, 0x1327100,4, 0x1327180,24, 0x1327200,4, 0x1327280,27, 0x1327300,2, 0x132730c,3, 0x1328004,1, 0x132800c,3, 0x1328020,1, 0x1328100,2, 0x1328110,3, 0x1328120,2, 0x1328140,10, 0x1328180,13, 0x1328200,2, 0x1328210,3, 0x1328220,2, 0x1328240,10, 0x1328280,13, 0x1328400,14, 0x1328440,3, 0x1328450,3, 0x1328460,1, 0x1328500,36, 0x1328600,10, 0x1328640,5, 0x1328660,5, 0x1328700,27, 0x1328780,7, 0x13287a0,8, 0x1328800,27, 0x1328880,7, 0x13288a0,8, 0x1328900,27, 0x1328980,7, 0x13289a0,8, 0x1328a00,27, 0x1328a80,7, 0x1328aa0,8, 0x1328b00,48, 0x1328bc4,8, 0x1328bf0,30, 0x1328c80,4, 0x1328cc0,25, 0x1328d40,6, 0x1328d60,1, 0x1328d68,2, 0x1328d74,3, 0x1328e00,8, 0x1328e24,28, 0x1329000,4, 0x1329080,23, 0x1329100,14, 0x1329140,9, 0x1329200,10, 0x1329230,3, 0x1329240,5, 0x1329260,5, 0x1329280,9, 0x1329400,67, 0x1329600,10, 0x1330000,12, 0x1330040,2, 0x1330050,3, 0x1332000,1006, 0x1333000,31, 0x1333084,6, 0x1334004,1, 0x133400c,3, 0x1334200,23, 0x1334280,23, 0x1334300,1, 0x1334400,1, 0x1334800,122, 0x1334a00,122, 0x1334c04,63, 0x1334d04,1, 0x1334d10,5, 0x1334d40,6, 0x1334d60,5, 0x1336000,1, 0x1336100,1, 0x1336108,3, 0x1336120,2, 0x1336134,8, 0x1336160,2, 0x1336174,8, 0x13361a0,4, 0x1336200,54, 0x1336800,5, 0x1336820,2, 0x1336834,1, 0x133683c,1, 0x1336a00,24, 0x1336a80,24, 0x1336b00,1, 0x1336c00,6, 0x1336c24,5, 0x1336c40,16, 0x1337000,1, 0x1337020,5, 0x1337040,1, 0x1337048,2, 0x1337080,1, 0x1337100,4, 0x1337180,24, 0x1337200,4, 0x1337280,27, 0x1337300,2, 0x133730c,3, 0x1338004,1, 0x133800c,3, 0x1338020,1, 0x1338100,2, 0x1338110,3, 0x1338120,2, 0x1338140,10, 0x1338180,13, 0x1338200,2, 0x1338210,3, 0x1338220,2, 0x1338240,10, 0x1338280,13, 0x1338400,14, 0x1338440,3, 0x1338450,3, 0x1338460,1, 0x1338500,36, 0x1338600,10, 0x1338640,5, 0x1338660,5, 0x1338700,27, 0x1338780,7, 0x13387a0,8, 0x1338800,27, 0x1338880,7, 0x13388a0,8, 0x1338900,27, 0x1338980,7, 0x13389a0,8, 0x1338a00,27, 0x1338a80,7, 0x1338aa0,8, 0x1338b00,48, 0x1338bc4,8, 0x1338bf0,30, 0x1338c80,4, 0x1338cc0,25, 0x1338d40,6, 0x1338d60,1, 0x1338d68,2, 0x1338d74,3, 0x1338e00,8, 0x1338e24,28, 0x1339000,4, 0x1339080,23, 0x1339100,14, 0x1339140,9, 0x1339200,10, 0x1339230,3, 0x1339240,5, 0x1339260,5, 0x1339280,9, 0x1339400,67, 0x1339600,10, 0x1400000,1, 0x1400020,3, 0x1400030,2, 0x1400040,3, 0x1400050,2, 0x1400800,53, 0x1400900,3, 0x1400910,13, 0x1400a00,53, 0x1400b00,3, 0x1400b10,13, 0x1400c00,5, 0x1400c20,5, 0x1400c40,18, 0x1401000,6, 0x1401020,4, 0x1401040,16, 0x1402000,20, 0x1402080,15, 0x1402100,20, 0x1402180,15, 0x1402200,23, 0x1402260,7, 0x1402400,11, 0x1402430,3, 0x1402440,3, 0x1402450,3, 0x1402460,24, 0x1402500,11, 0x1402530,3, 0x1402540,3, 0x1402550,3, 0x1402560,24, 0x1402600,11, 0x1402630,3, 0x1402640,3, 0x1402650,3, 0x1402660,24, 0x1402700,11, 0x1402730,3, 0x1402740,3, 0x1402750,3, 0x1402760,24, 0x1402800,4, 0x1402820,16, 0x1402880,10, 0x14028c0,10, 0x1402900,6, 0x1402920,6, 0x1402940,4, 0x1402980,13, 0x14029c0,13, 0x1402a00,9, 0x1403000,14, 0x1403040,9, 0x1403080,6, 0x14030a0,1, 0x14030a8,4, 0x1403100,4, 0x1403200,124, 0x1403400,124, 0x1403600,8, 0x1403624,1, 0x1403644,6, 0x1403664,6, 0x1403680,1, 0x1403688,6, 0x14036a8,22, 0x1404000,1, 0x1404020,3, 0x1404030,2, 0x1404040,3, 0x1404050,2, 0x1404800,53, 0x1404900,3, 0x1404910,13, 0x1404a00,53, 0x1404b00,3, 0x1404b10,13, 0x1404c00,5, 0x1404c20,5, 0x1404c40,18, 0x1405000,6, 0x1405020,4, 0x1405040,16, 0x1406000,20, 0x1406080,15, 0x1406100,20, 0x1406180,15, 0x1406200,23, 0x1406260,7, 0x1406400,11, 0x1406430,3, 0x1406440,3, 0x1406450,3, 0x1406460,24, 0x1406500,11, 0x1406530,3, 0x1406540,3, 0x1406550,3, 0x1406560,24, 0x1406600,11, 0x1406630,3, 0x1406640,3, 0x1406650,3, 0x1406660,24, 0x1406700,11, 0x1406730,3, 0x1406740,3, 0x1406750,3, 0x1406760,24, 0x1406800,4, 0x1406820,16, 0x1406880,10, 0x14068c0,10, 0x1406900,6, 0x1406920,6, 0x1406940,4, 0x1406980,13, 0x14069c0,13, 0x1406a00,9, 0x1407000,14, 0x1407040,9, 0x1407080,6, 0x14070a0,1, 0x14070a8,4, 0x1407100,4, 0x1407200,124, 0x1407400,124, 0x1407600,8, 0x1407624,1, 0x1407644,6, 0x1407664,6, 0x1407680,1, 0x1407688,6, 0x14076a8,22, 0x1408000,84, 0x1408180,20, 0x1408200,5, 0x1408400,11, 0x1408440,11, 0x1408480,19, 0x1408500,19, 0x1408580,24, 0x1408600,13, 0x1408800,84, 0x1408980,20, 0x1408a00,5, 0x1408c00,11, 0x1408c40,11, 0x1408c80,19, 0x1408d00,19, 0x1408d80,24, 0x1408e00,13, 0x1409000,10, 0x1409040,5, 0x1409080,10, 0x14090c0,5, 0x1409100,5, 0x1409200,11, 0x1409230,3, 0x1409240,5, 0x1409260,5, 0x1409280,32, 0x1409400,13, 0x1409440,13, 0x1409480,9, 0x14094c0,1, 0x14094d0,5, 0x14094f0,21, 0x1409800,10, 0x1409840,5, 0x1409880,10, 0x14098c0,5, 0x1409900,5, 0x1409a00,11, 0x1409a30,3, 0x1409a40,5, 0x1409a60,5, 0x1409a80,32, 0x1409c00,13, 0x1409c40,13, 0x1409c80,9, 0x1409cc0,1, 0x1409cd0,5, 0x1409cf0,21, 0x140a000,14, 0x140a040,9, 0x140a080,6, 0x140a0a0,1, 0x140a0a8,4, 0x140a100,7, 0x140a120,3, 0x140a130,25, 0x140c000,26, 0x140c06c,2, 0x140c080,3, 0x140c090,17, 0x140c100,26, 0x140c16c,2, 0x140c180,3, 0x140c190,17, 0x140c200,26, 0x140c26c,2, 0x140c280,3, 0x140c290,17, 0x140c300,26, 0x140c36c,2, 0x140c380,3, 0x140c390,17, 0x140c400,26, 0x140c46c,2, 0x140c480,3, 0x140c490,17, 0x140c500,26, 0x140c56c,2, 0x140c580,3, 0x140c590,17, 0x140c600,26, 0x140c66c,2, 0x140c680,3, 0x140c690,17, 0x140c700,26, 0x140c76c,2, 0x140c780,3, 0x140c790,17, 0x140c800,12, 0x140c844,1, 0x140c854,8, 0x140c880,7, 0x140c8a0,2, 0x140c8ac,2, 0x140c8c0,26, 0x140c980,4, 0x140c9a0,5, 0x140c9c0,1, 0x140d000,3, 0x140d010,3, 0x140d020,3, 0x140d030,3, 0x140d040,3, 0x140d050,3, 0x140d060,3, 0x140d070,3, 0x140d080,5, 0x140d0a0,5, 0x140d0c0,5, 0x140d0e0,5, 0x140d100,5, 0x140d120,5, 0x140d140,5, 0x140d160,5, 0x140d200,68, 0x140d400,1, 0x140d804,1, 0x140d844,54, 0x140da00,11, 0x140da40,11, 0x140da80,11, 0x140dac0,11, 0x140db00,11, 0x140db40,11, 0x140db80,11, 0x140dbc0,11, 0x140dc00,28, 0x140dc80,5, 0x140dca0,2, 0x140e000,4, 0x140e020,6, 0x140e040,6, 0x140e060,14, 0x140e100,26, 0x140e180,15, 0x140e200,14, 0x140e240,9, 0x140e280,6, 0x140e2a0,1, 0x140e2a8,4, 0x140e300,14, 0x140e340,9, 0x140e380,6, 0x140e3a0,4, 0x140e400,9, 0x1420000,1, 0x1421000,977, 0x1422000,161, 0x1423000,977, 0x1424000,977, 0x1425000,977, 0x1426000,977, 0x1427000,977, 0x1428000,977, 0x1429000,977, 0x142a000,977, 0x142b000,161, 0x142c000,12, 0x142c040,14, 0x142c080,20, 0x142c104,1, 0x142c10c,4, 0x142c200,12, 0x142c240,14, 0x142c280,20, 0x142c304,1, 0x142c30c,4, 0x142c400,12, 0x142c440,14, 0x142c480,20, 0x142c504,1, 0x142c50c,4, 0x142c600,12, 0x142c640,14, 0x142c680,20, 0x142c704,1, 0x142c70c,4, 0x142c800,12, 0x142c840,14, 0x142c880,20, 0x142c904,1, 0x142c90c,4, 0x142ca00,12, 0x142ca40,14, 0x142ca80,20, 0x142cb04,1, 0x142cb0c,4, 0x142cc00,12, 0x142cc40,14, 0x142cc80,20, 0x142cd04,1, 0x142cd0c,4, 0x142ce00,12, 0x142ce40,14, 0x142ce80,20, 0x142cf04,1, 0x142cf0c,4, 0x142d000,12, 0x142d040,14, 0x142d080,20, 0x142d104,1, 0x142d10c,4, 0x142d200,17, 0x142d250,2, 0x142d260,4, 0x142e000,1, 0x142e014,1, 0x142e01c,11, 0x142e060,9, 0x142e094,1, 0x142e09c,11, 0x142e0e0,15, 0x142e200,12, 0x142e240,13, 0x142e280,3, 0x142e290,1, 0x1480000,500, 0x1480800,2, 0x1480820,15, 0x1481000,500, 0x1481800,8, 0x1481824,6, 0x1481840,8, 0x1481880,7, 0x14818a0,7, 0x14818c0,7, 0x14818e0,7, 0x1481900,8, 0x1481924,16, 0x1481980,12, 0x1482000,500, 0x1482800,2, 0x1482820,15, 0x1483000,500, 0x1483800,8, 0x1483824,6, 0x1483840,8, 0x1483880,7, 0x14838a0,7, 0x14838c0,7, 0x14838e0,7, 0x1483900,8, 0x1483924,16, 0x1483980,12, 0x1484004,5, 0x1484200,26, 0x1484280,4, 0x14842c0,25, 0x1484340,6, 0x1484360,1, 0x1484368,2, 0x1484374,11, 0x14843a4,10, 0x1484400,1, 0x1488000,52, 0x1488400,82, 0x1488560,6, 0x1488600,41, 0x1488700,2, 0x1488720,19, 0x1488800,25, 0x1488880,1, 0x1488900,28, 0x1488980,1, 0x1489000,52, 0x1489400,82, 0x1489560,6, 0x1489600,41, 0x1489700,2, 0x1489720,19, 0x1489800,25, 0x1489880,1, 0x1489900,28, 0x1489980,1, 0x148a000,7, 0x148a080,6, 0x148a0a0,6, 0x148a0c0,1, 0x148a100,4, 0x148a120,9, 0x148c000,3, 0x148c010,6, 0x148c200,7, 0x148c220,6, 0x148c240,7, 0x148c260,6, 0x148c280,2, 0x148c28c,2, 0x148c2a0,2, 0x148c2ac,2, 0x148c2c0,7, 0x148c2e0,7, 0x148c300,2, 0x148c30c,2, 0x148c320,6, 0x148c400,3, 0x148c440,12, 0x148c800,7, 0x148c820,14, 0x148c880,16, 0x148c900,7, 0x148c920,14, 0x148c980,16, 0x148ca00,6, 0x148ca20,7, 0x148cc00,3, 0x14a0000,3, 0x14a0800,7, 0x14a0820,6, 0x14a0840,6, 0x14a0880,1, 0x14a0894,1, 0x14a089c,2, 0x14a08c0,9, 0x14a0900,18, 0x14a0a00,36, 0x14a0b00,22, 0x14a0b80,18, 0x14a0c00,3, 0x14a0c10,3, 0x14a1000,3, 0x14a1010,2, 0x14a1080,20, 0x14a1100,1, 0x14a1200,26, 0x14a1280,4, 0x14a12c0,25, 0x14a1340,6, 0x14a1360,1, 0x14a1368,2, 0x14a1374,11, 0x14a13a4,4, 0x14a1400,1, 0x14b0000,11, 0x14b0030,19, 0x14b0080,17, 0x14b0100,11, 0x14b0130,19, 0x14b0180,17, 0x14b0200,3, 0x14b0214,1, 0x14b021c,1, 0x14b0280,3, 0x14b0294,1, 0x14b029c,1, 0x14b0300,18, 0x14b0380,18, 0x14b0400,18, 0x14b0480,18, 0x14b0500,18, 0x14b0580,18, 0x14b0600,18, 0x14b0680,18, 0x14b0700,13, 0x14b0738,6, 0x14b0780,13, 0x14b07b8,6, 0x14b0800,1, 0x14b0808,22, 0x14b0880,1, 0x14b0894,13, 0x14b0900,3, 0x14b0910,3, 0x14b0920,3, 0x14b0940,3, 0x14b0954,1, 0x14b095c,1, 0x14b0a00,52, 0x14b0c00,4, 0x14b0d00,34, 0x14b0e00,4, 0x14b0e80,30, 0x14b0f00,1, 0x14b0f40,5, 0x14b0f60,5, 0x14b0f80,6, 0x14b1000,14, 0x14b1040,4, 0x14b1060,17, 0x14b10c0,6, 0x14b10e0,1, 0x14b10e8,2, 0x14b10f4,11, 0x14b1124,17, 0x14b1200,3, 0x14b1210,3, 0x14b1220,3, 0x14b1230,3, 0x14b1240,3, 0x14b1250,3, 0x14b2000,20, 0x14b2080,3, 0x14b2090,1, 0x14b2098,2, 0x14c0000,500, 0x14c0800,2, 0x14c0820,15, 0x14c1000,500, 0x14c1800,8, 0x14c1824,6, 0x14c1840,8, 0x14c1880,7, 0x14c18a0,7, 0x14c18c0,7, 0x14c18e0,7, 0x14c1900,8, 0x14c1924,16, 0x14c1980,12, 0x14c2000,500, 0x14c2800,2, 0x14c2820,15, 0x14c3000,500, 0x14c3800,8, 0x14c3824,6, 0x14c3840,8, 0x14c3880,7, 0x14c38a0,7, 0x14c38c0,7, 0x14c38e0,7, 0x14c3900,8, 0x14c3924,16, 0x14c3980,12, 0x14c4004,5, 0x14c4200,26, 0x14c4280,4, 0x14c42c0,25, 0x14c4340,6, 0x14c4360,1, 0x14c4368,2, 0x14c4374,11, 0x14c43a4,10, 0x14c4400,1, 0x14c8000,52, 0x14c8400,82, 0x14c8560,6, 0x14c8600,41, 0x14c8700,2, 0x14c8720,19, 0x14c8800,25, 0x14c8880,1, 0x14c8900,28, 0x14c8980,1, 0x14c9000,52, 0x14c9400,82, 0x14c9560,6, 0x14c9600,41, 0x14c9700,2, 0x14c9720,19, 0x14c9800,25, 0x14c9880,1, 0x14c9900,28, 0x14c9980,1, 0x14ca000,7, 0x14ca080,6, 0x14ca0a0,6, 0x14ca0c0,1, 0x14ca100,4, 0x14ca120,9, 0x14cc000,3, 0x14cc010,6, 0x14cc200,7, 0x14cc220,6, 0x14cc240,7, 0x14cc260,6, 0x14cc280,2, 0x14cc28c,2, 0x14cc2a0,2, 0x14cc2ac,2, 0x14cc2c0,7, 0x14cc2e0,7, 0x14cc300,2, 0x14cc30c,2, 0x14cc320,6, 0x14cc400,3, 0x14cc440,12, 0x14cc800,7, 0x14cc820,14, 0x14cc880,16, 0x14cc900,7, 0x14cc920,14, 0x14cc980,16, 0x14cca00,6, 0x14cca20,7, 0x14ccc00,3, 0x14e0000,3, 0x14e0800,7, 0x14e0820,6, 0x14e0840,6, 0x14e0880,1, 0x14e0894,1, 0x14e089c,2, 0x14e08c0,9, 0x14e0900,18, 0x14e0a00,36, 0x14e0b00,22, 0x14e0b80,18, 0x14e0c00,3, 0x14e0c10,3, 0x14e1000,3, 0x14e1010,2, 0x14e1080,20, 0x14e1100,1, 0x14e1200,26, 0x14e1280,4, 0x14e12c0,25, 0x14e1340,6, 0x14e1360,1, 0x14e1368,2, 0x14e1374,11, 0x14e13a4,4, 0x14e1400,1, 0x14f0000,11, 0x14f0030,19, 0x14f0080,17, 0x14f0100,11, 0x14f0130,19, 0x14f0180,17, 0x14f0200,3, 0x14f0214,1, 0x14f021c,1, 0x14f0280,3, 0x14f0294,1, 0x14f029c,1, 0x14f0300,18, 0x14f0380,18, 0x14f0400,18, 0x14f0480,18, 0x14f0500,18, 0x14f0580,18, 0x14f0600,18, 0x14f0680,18, 0x14f0700,13, 0x14f0738,6, 0x14f0780,13, 0x14f07b8,6, 0x14f0800,1, 0x14f0808,22, 0x14f0880,1, 0x14f0894,13, 0x14f0900,3, 0x14f0910,3, 0x14f0920,3, 0x14f0940,3, 0x14f0954,1, 0x14f095c,1, 0x14f0a00,52, 0x14f0c00,4, 0x14f0d00,34, 0x14f0e00,4, 0x14f0e80,30, 0x14f0f00,1, 0x14f0f40,5, 0x14f0f60,5, 0x14f0f80,6, 0x14f1000,14, 0x14f1040,4, 0x14f1060,17, 0x14f10c0,6, 0x14f10e0,1, 0x14f10e8,2, 0x14f10f4,11, 0x14f1124,17, 0x14f1200,3, 0x14f1210,3, 0x14f1220,3, 0x14f1230,3, 0x14f1240,3, 0x14f1250,3, 0x14f2000,20, 0x14f2080,3, 0x14f2090,1, 0x14f2098,2, 0x1500000,13, 0x1500038,4, 0x1500050,3, 0x1500060,3, 0x1500070,16, 0x15000c0,5, 0x1500400,14, 0x1500440,2, 0x150044c,3, 0x1500480,14, 0x15004c0,2, 0x15004cc,3, 0x1500500,1, 0x1500508,15, 0x1500560,2, 0x150056c,2, 0x1500600,4, 0x1500680,27, 0x1500800,2, 0x1500900,32, 0x1500984,2, 0x1500990,4, 0x1500a00,26, 0x1500a80,4, 0x1500ac0,25, 0x1500b40,6, 0x1500b60,1, 0x1500b68,2, 0x1500b74,11, 0x1500ba4,8, 0x1500c00,9, 0x1500c40,11, 0x1500c80,23, 0x1500ce0,15, 0x1500d20,15, 0x1500d60,1, 0x1501000,13, 0x1501038,4, 0x1501050,3, 0x1501060,3, 0x1501070,16, 0x15010c0,5, 0x1501400,14, 0x1501440,2, 0x150144c,3, 0x1501480,14, 0x15014c0,2, 0x15014cc,3, 0x1501500,1, 0x1501508,15, 0x1501560,2, 0x150156c,2, 0x1501600,4, 0x1501680,27, 0x1501800,2, 0x1501900,32, 0x1501984,2, 0x1501990,4, 0x1501a00,26, 0x1501a80,4, 0x1501ac0,25, 0x1501b40,6, 0x1501b60,1, 0x1501b68,2, 0x1501b74,11, 0x1501ba4,8, 0x1501c00,9, 0x1501c40,11, 0x1501c80,23, 0x1501ce0,15, 0x1501d20,15, 0x1501d60,1, 0x1502000,1, 0x1502100,36, 0x1502200,7, 0x1510000,22, 0x1510080,22, 0x1510100,12, 0x1510140,12, 0x1510200,52, 0x1510300,52, 0x1510400,11, 0x1510440,11, 0x1510480,3, 0x15104a0,6, 0x15104c0,6, 0x15104e0,3, 0x15104f0,3, 0x1510800,9, 0x1510840,15, 0x1510880,15, 0x15108c0,15, 0x1510900,1, 0x1510914,13, 0x1510980,17, 0x1511000,17, 0x1511080,17, 0x1511104,5, 0x1511120,3, 0x1511130,11, 0x1511200,31, 0x1511280,31, 0x1511300,12, 0x1511340,12, 0x1511380,2, 0x1511390,2, 0x15113a0,3, 0x15113b0,3, 0x15113c0,5, 0x15113e0,5, 0x1511400,3, 0x1511410,3, 0x1511420,3, 0x1511430,3, 0x1511440,3, 0x1511450,3, 0x1511460,7, 0x1511800,26, 0x1511880,4, 0x15118c0,25, 0x1511940,6, 0x1511960,1, 0x1511968,2, 0x1511974,11, 0x15119a4,12, 0x1511a00,4, 0x1511b00,43, 0x1511c00,4, 0x1511c20,7, 0x1511c40,3, 0x1511c50,1, 0x1511c60,3, 0x1511e00,32, 0x1511e84,1, 0x1511e90,4, 0x1511ea4,1, 0x1511eb4,14, 0x1511ef0,2, 0x1511f04,1, 0x1511f10,8, 0x1511f34,6, 0x1512000,3, 0x1512010,21, 0x1512080,1, 0x1512094,1, 0x151209c,5, 0x1512100,15, 0x1512140,1, 0x1512180,6, 0x1514000,22, 0x1514080,22, 0x1514100,12, 0x1514140,12, 0x1514200,52, 0x1514300,52, 0x1514400,11, 0x1514440,11, 0x1514480,3, 0x15144a0,6, 0x15144c0,6, 0x15144e0,3, 0x15144f0,3, 0x1514800,9, 0x1514840,15, 0x1514880,15, 0x15148c0,15, 0x1514900,1, 0x1514914,13, 0x1514980,17, 0x1515000,17, 0x1515080,17, 0x1515104,5, 0x1515120,3, 0x1515130,11, 0x1515200,31, 0x1515280,31, 0x1515300,12, 0x1515340,12, 0x1515380,2, 0x1515390,2, 0x15153a0,3, 0x15153b0,3, 0x15153c0,5, 0x15153e0,5, 0x1515400,3, 0x1515410,3, 0x1515420,3, 0x1515430,3, 0x1515440,3, 0x1515450,3, 0x1515460,7, 0x1515800,26, 0x1515880,4, 0x15158c0,25, 0x1515940,6, 0x1515960,1, 0x1515968,2, 0x1515974,11, 0x15159a4,12, 0x1515a00,4, 0x1515b00,43, 0x1515c00,4, 0x1515c20,7, 0x1515c40,3, 0x1515c50,1, 0x1515c60,3, 0x1515e00,32, 0x1515e84,1, 0x1515e90,4, 0x1515ea4,1, 0x1515eb4,14, 0x1515ef0,2, 0x1515f04,1, 0x1515f10,8, 0x1515f34,6, 0x1516000,3, 0x1516010,21, 0x1516080,1, 0x1516094,1, 0x151609c,5, 0x1516100,15, 0x1516140,1, 0x1516180,6, 0x1518000,100, 0x1518200,3, 0x1518210,5, 0x1520000,12, 0x1520040,2, 0x1520050,3, 0x1522000,1006, 0x1523000,31, 0x1523084,6, 0x1524004,1, 0x152400c,3, 0x1524200,23, 0x1524280,23, 0x1524300,1, 0x1524400,1, 0x1524800,122, 0x1524a00,122, 0x1524c04,63, 0x1524d04,1, 0x1524d10,5, 0x1524d40,6, 0x1524d60,5, 0x1526000,1, 0x1526100,1, 0x1526108,3, 0x1526120,2, 0x1526134,8, 0x1526160,2, 0x1526174,8, 0x15261a0,4, 0x1526200,54, 0x1526800,5, 0x1526820,2, 0x1526834,1, 0x152683c,1, 0x1526a00,24, 0x1526a80,24, 0x1526b00,1, 0x1526c00,6, 0x1526c24,5, 0x1526c40,16, 0x1527000,1, 0x1527020,5, 0x1527040,1, 0x1527048,2, 0x1527080,1, 0x1527100,4, 0x1527180,24, 0x1527200,4, 0x1527280,27, 0x1527300,2, 0x152730c,3, 0x1528004,1, 0x152800c,3, 0x1528020,1, 0x1528100,2, 0x1528110,3, 0x1528120,2, 0x1528140,10, 0x1528180,13, 0x1528200,2, 0x1528210,3, 0x1528220,2, 0x1528240,10, 0x1528280,13, 0x1528400,14, 0x1528440,3, 0x1528450,3, 0x1528460,1, 0x1528500,36, 0x1528600,10, 0x1528640,5, 0x1528660,5, 0x1528700,27, 0x1528780,7, 0x15287a0,8, 0x1528800,27, 0x1528880,7, 0x15288a0,8, 0x1528900,27, 0x1528980,7, 0x15289a0,8, 0x1528a00,27, 0x1528a80,7, 0x1528aa0,8, 0x1528b00,48, 0x1528bc4,8, 0x1528bf0,30, 0x1528c80,4, 0x1528cc0,25, 0x1528d40,6, 0x1528d60,1, 0x1528d68,2, 0x1528d74,3, 0x1528e00,8, 0x1528e24,28, 0x1529000,4, 0x1529080,23, 0x1529100,14, 0x1529140,9, 0x1529200,10, 0x1529230,3, 0x1529240,5, 0x1529260,5, 0x1529280,9, 0x1529400,67, 0x1529600,10, 0x1530000,12, 0x1530040,2, 0x1530050,3, 0x1532000,1006, 0x1533000,31, 0x1533084,6, 0x1534004,1, 0x153400c,3, 0x1534200,23, 0x1534280,23, 0x1534300,1, 0x1534400,1, 0x1534800,122, 0x1534a00,122, 0x1534c04,63, 0x1534d04,1, 0x1534d10,5, 0x1534d40,6, 0x1534d60,5, 0x1536000,1, 0x1536100,1, 0x1536108,3, 0x1536120,2, 0x1536134,8, 0x1536160,2, 0x1536174,8, 0x15361a0,4, 0x1536200,54, 0x1536800,5, 0x1536820,2, 0x1536834,1, 0x153683c,1, 0x1536a00,24, 0x1536a80,24, 0x1536b00,1, 0x1536c00,6, 0x1536c24,5, 0x1536c40,16, 0x1537000,1, 0x1537020,5, 0x1537040,1, 0x1537048,2, 0x1537080,1, 0x1537100,4, 0x1537180,24, 0x1537200,4, 0x1537280,27, 0x1537300,2, 0x153730c,3, 0x1538004,1, 0x153800c,3, 0x1538020,1, 0x1538100,2, 0x1538110,3, 0x1538120,2, 0x1538140,10, 0x1538180,13, 0x1538200,2, 0x1538210,3, 0x1538220,2, 0x1538240,10, 0x1538280,13, 0x1538400,14, 0x1538440,3, 0x1538450,3, 0x1538460,1, 0x1538500,36, 0x1538600,10, 0x1538640,5, 0x1538660,5, 0x1538700,27, 0x1538780,7, 0x15387a0,8, 0x1538800,27, 0x1538880,7, 0x15388a0,8, 0x1538900,27, 0x1538980,7, 0x15389a0,8, 0x1538a00,27, 0x1538a80,7, 0x1538aa0,8, 0x1538b00,48, 0x1538bc4,8, 0x1538bf0,30, 0x1538c80,4, 0x1538cc0,25, 0x1538d40,6, 0x1538d60,1, 0x1538d68,2, 0x1538d74,3, 0x1538e00,8, 0x1538e24,28, 0x1539000,4, 0x1539080,23, 0x1539100,14, 0x1539140,9, 0x1539200,10, 0x1539230,3, 0x1539240,5, 0x1539260,5, 0x1539280,9, 0x1539400,67, 0x1539600,10, 0x1600000,1, 0x1600020,3, 0x1600030,2, 0x1600040,3, 0x1600050,2, 0x1600800,53, 0x1600900,3, 0x1600910,13, 0x1600a00,53, 0x1600b00,3, 0x1600b10,13, 0x1600c00,5, 0x1600c20,5, 0x1600c40,18, 0x1601000,6, 0x1601020,4, 0x1601040,16, 0x1602000,20, 0x1602080,15, 0x1602100,20, 0x1602180,15, 0x1602200,23, 0x1602260,7, 0x1602400,11, 0x1602430,3, 0x1602440,3, 0x1602450,3, 0x1602460,24, 0x1602500,11, 0x1602530,3, 0x1602540,3, 0x1602550,3, 0x1602560,24, 0x1602600,11, 0x1602630,3, 0x1602640,3, 0x1602650,3, 0x1602660,24, 0x1602700,11, 0x1602730,3, 0x1602740,3, 0x1602750,3, 0x1602760,24, 0x1602800,4, 0x1602820,16, 0x1602880,10, 0x16028c0,10, 0x1602900,6, 0x1602920,6, 0x1602940,4, 0x1602980,13, 0x16029c0,13, 0x1602a00,9, 0x1603000,14, 0x1603040,9, 0x1603080,6, 0x16030a0,1, 0x16030a8,4, 0x1603100,4, 0x1603200,124, 0x1603400,124, 0x1603600,8, 0x1603624,1, 0x1603644,6, 0x1603664,6, 0x1603680,1, 0x1603688,6, 0x16036a8,22, 0x1604000,1, 0x1604020,3, 0x1604030,2, 0x1604040,3, 0x1604050,2, 0x1604800,53, 0x1604900,3, 0x1604910,13, 0x1604a00,53, 0x1604b00,3, 0x1604b10,13, 0x1604c00,5, 0x1604c20,5, 0x1604c40,18, 0x1605000,6, 0x1605020,4, 0x1605040,16, 0x1606000,20, 0x1606080,15, 0x1606100,20, 0x1606180,15, 0x1606200,23, 0x1606260,7, 0x1606400,11, 0x1606430,3, 0x1606440,3, 0x1606450,3, 0x1606460,24, 0x1606500,11, 0x1606530,3, 0x1606540,3, 0x1606550,3, 0x1606560,24, 0x1606600,11, 0x1606630,3, 0x1606640,3, 0x1606650,3, 0x1606660,24, 0x1606700,11, 0x1606730,3, 0x1606740,3, 0x1606750,3, 0x1606760,24, 0x1606800,4, 0x1606820,16, 0x1606880,10, 0x16068c0,10, 0x1606900,6, 0x1606920,6, 0x1606940,4, 0x1606980,13, 0x16069c0,13, 0x1606a00,9, 0x1607000,14, 0x1607040,9, 0x1607080,6, 0x16070a0,1, 0x16070a8,4, 0x1607100,4, 0x1607200,124, 0x1607400,124, 0x1607600,8, 0x1607624,1, 0x1607644,6, 0x1607664,6, 0x1607680,1, 0x1607688,6, 0x16076a8,22, 0x1608000,84, 0x1608180,20, 0x1608200,5, 0x1608400,11, 0x1608440,11, 0x1608480,19, 0x1608500,19, 0x1608580,24, 0x1608600,13, 0x1608800,84, 0x1608980,20, 0x1608a00,5, 0x1608c00,11, 0x1608c40,11, 0x1608c80,19, 0x1608d00,19, 0x1608d80,24, 0x1608e00,13, 0x1609000,10, 0x1609040,5, 0x1609080,10, 0x16090c0,5, 0x1609100,5, 0x1609200,11, 0x1609230,3, 0x1609240,5, 0x1609260,5, 0x1609280,32, 0x1609400,13, 0x1609440,13, 0x1609480,9, 0x16094c0,1, 0x16094d0,5, 0x16094f0,21, 0x1609800,10, 0x1609840,5, 0x1609880,10, 0x16098c0,5, 0x1609900,5, 0x1609a00,11, 0x1609a30,3, 0x1609a40,5, 0x1609a60,5, 0x1609a80,32, 0x1609c00,13, 0x1609c40,13, 0x1609c80,9, 0x1609cc0,1, 0x1609cd0,5, 0x1609cf0,21, 0x160a000,14, 0x160a040,9, 0x160a080,6, 0x160a0a0,1, 0x160a0a8,4, 0x160a100,7, 0x160a120,3, 0x160a130,25, 0x160c000,26, 0x160c06c,2, 0x160c080,3, 0x160c090,17, 0x160c100,26, 0x160c16c,2, 0x160c180,3, 0x160c190,17, 0x160c200,26, 0x160c26c,2, 0x160c280,3, 0x160c290,17, 0x160c300,26, 0x160c36c,2, 0x160c380,3, 0x160c390,17, 0x160c400,26, 0x160c46c,2, 0x160c480,3, 0x160c490,17, 0x160c500,26, 0x160c56c,2, 0x160c580,3, 0x160c590,17, 0x160c600,26, 0x160c66c,2, 0x160c680,3, 0x160c690,17, 0x160c700,26, 0x160c76c,2, 0x160c780,3, 0x160c790,17, 0x160c800,12, 0x160c844,1, 0x160c854,8, 0x160c880,7, 0x160c8a0,2, 0x160c8ac,2, 0x160c8c0,26, 0x160c980,4, 0x160c9a0,5, 0x160c9c0,1, 0x160d000,3, 0x160d010,3, 0x160d020,3, 0x160d030,3, 0x160d040,3, 0x160d050,3, 0x160d060,3, 0x160d070,3, 0x160d080,5, 0x160d0a0,5, 0x160d0c0,5, 0x160d0e0,5, 0x160d100,5, 0x160d120,5, 0x160d140,5, 0x160d160,5, 0x160d200,68, 0x160d400,1, 0x160d804,1, 0x160d844,54, 0x160da00,11, 0x160da40,11, 0x160da80,11, 0x160dac0,11, 0x160db00,11, 0x160db40,11, 0x160db80,11, 0x160dbc0,11, 0x160dc00,28, 0x160dc80,5, 0x160dca0,2, 0x160e000,4, 0x160e020,6, 0x160e040,6, 0x160e060,14, 0x160e100,26, 0x160e180,15, 0x160e200,14, 0x160e240,9, 0x160e280,6, 0x160e2a0,1, 0x160e2a8,4, 0x160e300,14, 0x160e340,9, 0x160e380,6, 0x160e3a0,4, 0x160e400,9, 0x1620000,1, 0x1621000,977, 0x1622000,161, 0x1623000,977, 0x1624000,977, 0x1625000,977, 0x1626000,977, 0x1627000,977, 0x1628000,977, 0x1629000,977, 0x162a000,977, 0x162b000,161, 0x162c000,12, 0x162c040,14, 0x162c080,20, 0x162c104,1, 0x162c10c,4, 0x162c200,12, 0x162c240,14, 0x162c280,20, 0x162c304,1, 0x162c30c,4, 0x162c400,12, 0x162c440,14, 0x162c480,20, 0x162c504,1, 0x162c50c,4, 0x162c600,12, 0x162c640,14, 0x162c680,20, 0x162c704,1, 0x162c70c,4, 0x162c800,12, 0x162c840,14, 0x162c880,20, 0x162c904,1, 0x162c90c,4, 0x162ca00,12, 0x162ca40,14, 0x162ca80,20, 0x162cb04,1, 0x162cb0c,4, 0x162cc00,12, 0x162cc40,14, 0x162cc80,20, 0x162cd04,1, 0x162cd0c,4, 0x162ce00,12, 0x162ce40,14, 0x162ce80,20, 0x162cf04,1, 0x162cf0c,4, 0x162d000,12, 0x162d040,14, 0x162d080,20, 0x162d104,1, 0x162d10c,4, 0x162d200,17, 0x162d250,2, 0x162d260,4, 0x162e000,1, 0x162e014,1, 0x162e01c,11, 0x162e060,9, 0x162e094,1, 0x162e09c,11, 0x162e0e0,15, 0x162e200,12, 0x162e240,13, 0x162e280,3, 0x162e290,1, 0x1680000,500, 0x1680800,2, 0x1680820,15, 0x1681000,500, 0x1681800,8, 0x1681824,6, 0x1681840,8, 0x1681880,7, 0x16818a0,7, 0x16818c0,7, 0x16818e0,7, 0x1681900,8, 0x1681924,16, 0x1681980,12, 0x1682000,500, 0x1682800,2, 0x1682820,15, 0x1683000,500, 0x1683800,8, 0x1683824,6, 0x1683840,8, 0x1683880,7, 0x16838a0,7, 0x16838c0,7, 0x16838e0,7, 0x1683900,8, 0x1683924,16, 0x1683980,12, 0x1684004,5, 0x1684200,26, 0x1684280,4, 0x16842c0,25, 0x1684340,6, 0x1684360,1, 0x1684368,2, 0x1684374,11, 0x16843a4,10, 0x1684400,1, 0x1688000,52, 0x1688400,82, 0x1688560,6, 0x1688600,41, 0x1688700,2, 0x1688720,19, 0x1688800,25, 0x1688880,1, 0x1688900,28, 0x1688980,1, 0x1689000,52, 0x1689400,82, 0x1689560,6, 0x1689600,41, 0x1689700,2, 0x1689720,19, 0x1689800,25, 0x1689880,1, 0x1689900,28, 0x1689980,1, 0x168a000,7, 0x168a080,6, 0x168a0a0,6, 0x168a0c0,1, 0x168a100,4, 0x168a120,9, 0x168c000,3, 0x168c010,6, 0x168c200,7, 0x168c220,6, 0x168c240,7, 0x168c260,6, 0x168c280,2, 0x168c28c,2, 0x168c2a0,2, 0x168c2ac,2, 0x168c2c0,7, 0x168c2e0,7, 0x168c300,2, 0x168c30c,2, 0x168c320,6, 0x168c400,3, 0x168c440,12, 0x168c800,7, 0x168c820,14, 0x168c880,16, 0x168c900,7, 0x168c920,14, 0x168c980,16, 0x168ca00,6, 0x168ca20,7, 0x168cc00,3, 0x16a0000,3, 0x16a0800,7, 0x16a0820,6, 0x16a0840,6, 0x16a0880,1, 0x16a0894,1, 0x16a089c,2, 0x16a08c0,9, 0x16a0900,18, 0x16a0a00,36, 0x16a0b00,22, 0x16a0b80,18, 0x16a0c00,3, 0x16a0c10,3, 0x16a1000,3, 0x16a1010,2, 0x16a1080,20, 0x16a1100,1, 0x16a1200,26, 0x16a1280,4, 0x16a12c0,25, 0x16a1340,6, 0x16a1360,1, 0x16a1368,2, 0x16a1374,11, 0x16a13a4,4, 0x16a1400,1, 0x16b0000,11, 0x16b0030,19, 0x16b0080,17, 0x16b0100,11, 0x16b0130,19, 0x16b0180,17, 0x16b0200,3, 0x16b0214,1, 0x16b021c,1, 0x16b0280,3, 0x16b0294,1, 0x16b029c,1, 0x16b0300,18, 0x16b0380,18, 0x16b0400,18, 0x16b0480,18, 0x16b0500,18, 0x16b0580,18, 0x16b0600,18, 0x16b0680,18, 0x16b0700,13, 0x16b0738,6, 0x16b0780,13, 0x16b07b8,6, 0x16b0800,1, 0x16b0808,22, 0x16b0880,1, 0x16b0894,13, 0x16b0900,3, 0x16b0910,3, 0x16b0920,3, 0x16b0940,3, 0x16b0954,1, 0x16b095c,1, 0x16b0a00,52, 0x16b0c00,4, 0x16b0d00,34, 0x16b0e00,4, 0x16b0e80,30, 0x16b0f00,1, 0x16b0f40,5, 0x16b0f60,5, 0x16b0f80,6, 0x16b1000,14, 0x16b1040,4, 0x16b1060,17, 0x16b10c0,6, 0x16b10e0,1, 0x16b10e8,2, 0x16b10f4,11, 0x16b1124,17, 0x16b1200,3, 0x16b1210,3, 0x16b1220,3, 0x16b1230,3, 0x16b1240,3, 0x16b1250,3, 0x16b2000,20, 0x16b2080,3, 0x16b2090,1, 0x16b2098,2, 0x16c0000,500, 0x16c0800,2, 0x16c0820,15, 0x16c1000,500, 0x16c1800,8, 0x16c1824,6, 0x16c1840,8, 0x16c1880,7, 0x16c18a0,7, 0x16c18c0,7, 0x16c18e0,7, 0x16c1900,8, 0x16c1924,16, 0x16c1980,12, 0x16c2000,500, 0x16c2800,2, 0x16c2820,15, 0x16c3000,500, 0x16c3800,8, 0x16c3824,6, 0x16c3840,8, 0x16c3880,7, 0x16c38a0,7, 0x16c38c0,7, 0x16c38e0,7, 0x16c3900,8, 0x16c3924,16, 0x16c3980,12, 0x16c4004,5, 0x16c4200,26, 0x16c4280,4, 0x16c42c0,25, 0x16c4340,6, 0x16c4360,1, 0x16c4368,2, 0x16c4374,11, 0x16c43a4,10, 0x16c4400,1, 0x16c8000,52, 0x16c8400,82, 0x16c8560,6, 0x16c8600,41, 0x16c8700,2, 0x16c8720,19, 0x16c8800,25, 0x16c8880,1, 0x16c8900,28, 0x16c8980,1, 0x16c9000,52, 0x16c9400,82, 0x16c9560,6, 0x16c9600,41, 0x16c9700,2, 0x16c9720,19, 0x16c9800,25, 0x16c9880,1, 0x16c9900,28, 0x16c9980,1, 0x16ca000,7, 0x16ca080,6, 0x16ca0a0,6, 0x16ca0c0,1, 0x16ca100,4, 0x16ca120,9, 0x16cc000,3, 0x16cc010,6, 0x16cc200,7, 0x16cc220,6, 0x16cc240,7, 0x16cc260,6, 0x16cc280,2, 0x16cc28c,2, 0x16cc2a0,2, 0x16cc2ac,2, 0x16cc2c0,7, 0x16cc2e0,7, 0x16cc300,2, 0x16cc30c,2, 0x16cc320,6, 0x16cc400,3, 0x16cc440,12, 0x16cc800,7, 0x16cc820,14, 0x16cc880,16, 0x16cc900,7, 0x16cc920,14, 0x16cc980,16, 0x16cca00,6, 0x16cca20,7, 0x16ccc00,3, 0x16e0000,3, 0x16e0800,7, 0x16e0820,6, 0x16e0840,6, 0x16e0880,1, 0x16e0894,1, 0x16e089c,2, 0x16e08c0,9, 0x16e0900,18, 0x16e0a00,36, 0x16e0b00,22, 0x16e0b80,18, 0x16e0c00,3, 0x16e0c10,3, 0x16e1000,3, 0x16e1010,2, 0x16e1080,20, 0x16e1100,1, 0x16e1200,26, 0x16e1280,4, 0x16e12c0,25, 0x16e1340,6, 0x16e1360,1, 0x16e1368,2, 0x16e1374,11, 0x16e13a4,4, 0x16e1400,1, 0x16f0000,11, 0x16f0030,19, 0x16f0080,17, 0x16f0100,11, 0x16f0130,19, 0x16f0180,17, 0x16f0200,3, 0x16f0214,1, 0x16f021c,1, 0x16f0280,3, 0x16f0294,1, 0x16f029c,1, 0x16f0300,18, 0x16f0380,18, 0x16f0400,18, 0x16f0480,18, 0x16f0500,18, 0x16f0580,18, 0x16f0600,18, 0x16f0680,18, 0x16f0700,13, 0x16f0738,6, 0x16f0780,13, 0x16f07b8,6, 0x16f0800,1, 0x16f0808,22, 0x16f0880,1, 0x16f0894,13, 0x16f0900,3, 0x16f0910,3, 0x16f0920,3, 0x16f0940,3, 0x16f0954,1, 0x16f095c,1, 0x16f0a00,52, 0x16f0c00,4, 0x16f0d00,34, 0x16f0e00,4, 0x16f0e80,30, 0x16f0f00,1, 0x16f0f40,5, 0x16f0f60,5, 0x16f0f80,6, 0x16f1000,14, 0x16f1040,4, 0x16f1060,17, 0x16f10c0,6, 0x16f10e0,1, 0x16f10e8,2, 0x16f10f4,11, 0x16f1124,17, 0x16f1200,3, 0x16f1210,3, 0x16f1220,3, 0x16f1230,3, 0x16f1240,3, 0x16f1250,3, 0x16f2000,20, 0x16f2080,3, 0x16f2090,1, 0x16f2098,2, 0x1700000,13, 0x1700038,4, 0x1700050,3, 0x1700060,3, 0x1700070,16, 0x17000c0,5, 0x1700400,14, 0x1700440,2, 0x170044c,3, 0x1700480,14, 0x17004c0,2, 0x17004cc,3, 0x1700500,1, 0x1700508,15, 0x1700560,2, 0x170056c,2, 0x1700600,4, 0x1700680,27, 0x1700800,2, 0x1700900,32, 0x1700984,2, 0x1700990,4, 0x1700a00,26, 0x1700a80,4, 0x1700ac0,25, 0x1700b40,6, 0x1700b60,1, 0x1700b68,2, 0x1700b74,11, 0x1700ba4,8, 0x1700c00,9, 0x1700c40,11, 0x1700c80,23, 0x1700ce0,15, 0x1700d20,15, 0x1700d60,1, 0x1701000,13, 0x1701038,4, 0x1701050,3, 0x1701060,3, 0x1701070,16, 0x17010c0,5, 0x1701400,14, 0x1701440,2, 0x170144c,3, 0x1701480,14, 0x17014c0,2, 0x17014cc,3, 0x1701500,1, 0x1701508,15, 0x1701560,2, 0x170156c,2, 0x1701600,4, 0x1701680,27, 0x1701800,2, 0x1701900,32, 0x1701984,2, 0x1701990,4, 0x1701a00,26, 0x1701a80,4, 0x1701ac0,25, 0x1701b40,6, 0x1701b60,1, 0x1701b68,2, 0x1701b74,11, 0x1701ba4,8, 0x1701c00,9, 0x1701c40,11, 0x1701c80,23, 0x1701ce0,15, 0x1701d20,15, 0x1701d60,1, 0x1702000,1, 0x1702100,36, 0x1702200,7, 0x1710000,22, 0x1710080,22, 0x1710100,12, 0x1710140,12, 0x1710200,52, 0x1710300,52, 0x1710400,11, 0x1710440,11, 0x1710480,3, 0x17104a0,6, 0x17104c0,6, 0x17104e0,3, 0x17104f0,3, 0x1710800,9, 0x1710840,15, 0x1710880,15, 0x17108c0,15, 0x1710900,1, 0x1710914,13, 0x1710980,17, 0x1711000,17, 0x1711080,17, 0x1711104,5, 0x1711120,3, 0x1711130,11, 0x1711200,31, 0x1711280,31, 0x1711300,12, 0x1711340,12, 0x1711380,2, 0x1711390,2, 0x17113a0,3, 0x17113b0,3, 0x17113c0,5, 0x17113e0,5, 0x1711400,3, 0x1711410,3, 0x1711420,3, 0x1711430,3, 0x1711440,3, 0x1711450,3, 0x1711460,7, 0x1711800,26, 0x1711880,4, 0x17118c0,25, 0x1711940,6, 0x1711960,1, 0x1711968,2, 0x1711974,11, 0x17119a4,12, 0x1711a00,4, 0x1711b00,43, 0x1711c00,4, 0x1711c20,7, 0x1711c40,3, 0x1711c50,1, 0x1711c60,3, 0x1711e00,32, 0x1711e84,1, 0x1711e90,4, 0x1711ea4,1, 0x1711eb4,14, 0x1711ef0,2, 0x1711f04,1, 0x1711f10,8, 0x1711f34,6, 0x1712000,3, 0x1712010,21, 0x1712080,1, 0x1712094,1, 0x171209c,5, 0x1712100,15, 0x1712140,1, 0x1712180,6, 0x1714000,22, 0x1714080,22, 0x1714100,12, 0x1714140,12, 0x1714200,52, 0x1714300,52, 0x1714400,11, 0x1714440,11, 0x1714480,3, 0x17144a0,6, 0x17144c0,6, 0x17144e0,3, 0x17144f0,3, 0x1714800,9, 0x1714840,15, 0x1714880,15, 0x17148c0,15, 0x1714900,1, 0x1714914,13, 0x1714980,17, 0x1715000,17, 0x1715080,17, 0x1715104,5, 0x1715120,3, 0x1715130,11, 0x1715200,31, 0x1715280,31, 0x1715300,12, 0x1715340,12, 0x1715380,2, 0x1715390,2, 0x17153a0,3, 0x17153b0,3, 0x17153c0,5, 0x17153e0,5, 0x1715400,3, 0x1715410,3, 0x1715420,3, 0x1715430,3, 0x1715440,3, 0x1715450,3, 0x1715460,7, 0x1715800,26, 0x1715880,4, 0x17158c0,25, 0x1715940,6, 0x1715960,1, 0x1715968,2, 0x1715974,11, 0x17159a4,12, 0x1715a00,4, 0x1715b00,43, 0x1715c00,4, 0x1715c20,7, 0x1715c40,3, 0x1715c50,1, 0x1715c60,3, 0x1715e00,32, 0x1715e84,1, 0x1715e90,4, 0x1715ea4,1, 0x1715eb4,14, 0x1715ef0,2, 0x1715f04,1, 0x1715f10,8, 0x1715f34,6, 0x1716000,3, 0x1716010,21, 0x1716080,1, 0x1716094,1, 0x171609c,5, 0x1716100,15, 0x1716140,1, 0x1716180,6, 0x1718000,100, 0x1718200,3, 0x1718210,5, 0x1720000,12, 0x1720040,2, 0x1720050,3, 0x1722000,1006, 0x1723000,31, 0x1723084,6, 0x1724004,1, 0x172400c,3, 0x1724200,23, 0x1724280,23, 0x1724300,1, 0x1724400,1, 0x1724800,122, 0x1724a00,122, 0x1724c04,63, 0x1724d04,1, 0x1724d10,5, 0x1724d40,6, 0x1724d60,5, 0x1726000,1, 0x1726100,1, 0x1726108,3, 0x1726120,2, 0x1726134,8, 0x1726160,2, 0x1726174,8, 0x17261a0,4, 0x1726200,54, 0x1726800,5, 0x1726820,2, 0x1726834,1, 0x172683c,1, 0x1726a00,24, 0x1726a80,24, 0x1726b00,1, 0x1726c00,6, 0x1726c24,5, 0x1726c40,16, 0x1727000,1, 0x1727020,5, 0x1727040,1, 0x1727048,2, 0x1727080,1, 0x1727100,4, 0x1727180,24, 0x1727200,4, 0x1727280,27, 0x1727300,2, 0x172730c,3, 0x1728004,1, 0x172800c,3, 0x1728020,1, 0x1728100,2, 0x1728110,3, 0x1728120,2, 0x1728140,10, 0x1728180,13, 0x1728200,2, 0x1728210,3, 0x1728220,2, 0x1728240,10, 0x1728280,13, 0x1728400,14, 0x1728440,3, 0x1728450,3, 0x1728460,1, 0x1728500,36, 0x1728600,10, 0x1728640,5, 0x1728660,5, 0x1728700,27, 0x1728780,7, 0x17287a0,8, 0x1728800,27, 0x1728880,7, 0x17288a0,8, 0x1728900,27, 0x1728980,7, 0x17289a0,8, 0x1728a00,27, 0x1728a80,7, 0x1728aa0,8, 0x1728b00,48, 0x1728bc4,8, 0x1728bf0,30, 0x1728c80,4, 0x1728cc0,25, 0x1728d40,6, 0x1728d60,1, 0x1728d68,2, 0x1728d74,3, 0x1728e00,8, 0x1728e24,28, 0x1729000,4, 0x1729080,23, 0x1729100,14, 0x1729140,9, 0x1729200,10, 0x1729230,3, 0x1729240,5, 0x1729260,5, 0x1729280,9, 0x1729400,67, 0x1729600,10, 0x1730000,12, 0x1730040,2, 0x1730050,3, 0x1732000,1006, 0x1733000,31, 0x1733084,6, 0x1734004,1, 0x173400c,3, 0x1734200,23, 0x1734280,23, 0x1734300,1, 0x1734400,1, 0x1734800,122, 0x1734a00,122, 0x1734c04,63, 0x1734d04,1, 0x1734d10,5, 0x1734d40,6, 0x1734d60,5, 0x1736000,1, 0x1736100,1, 0x1736108,3, 0x1736120,2, 0x1736134,8, 0x1736160,2, 0x1736174,8, 0x17361a0,4, 0x1736200,54, 0x1736800,5, 0x1736820,2, 0x1736834,1, 0x173683c,1, 0x1736a00,24, 0x1736a80,24, 0x1736b00,1, 0x1736c00,6, 0x1736c24,5, 0x1736c40,16, 0x1737000,1, 0x1737020,5, 0x1737040,1, 0x1737048,2, 0x1737080,1, 0x1737100,4, 0x1737180,24, 0x1737200,4, 0x1737280,27, 0x1737300,2, 0x173730c,3, 0x1738004,1, 0x173800c,3, 0x1738020,1, 0x1738100,2, 0x1738110,3, 0x1738120,2, 0x1738140,10, 0x1738180,13, 0x1738200,2, 0x1738210,3, 0x1738220,2, 0x1738240,10, 0x1738280,13, 0x1738400,14, 0x1738440,3, 0x1738450,3, 0x1738460,1, 0x1738500,36, 0x1738600,10, 0x1738640,5, 0x1738660,5, 0x1738700,27, 0x1738780,7, 0x17387a0,8, 0x1738800,27, 0x1738880,7, 0x17388a0,8, 0x1738900,27, 0x1738980,7, 0x17389a0,8, 0x1738a00,27, 0x1738a80,7, 0x1738aa0,8, 0x1738b00,48, 0x1738bc4,8, 0x1738bf0,30, 0x1738c80,4, 0x1738cc0,25, 0x1738d40,6, 0x1738d60,1, 0x1738d68,2, 0x1738d74,3, 0x1738e00,8, 0x1738e24,28, 0x1739000,4, 0x1739080,23, 0x1739100,14, 0x1739140,9, 0x1739200,10, 0x1739230,3, 0x1739240,5, 0x1739260,5, 0x1739280,9, 0x1739400,67, 0x1739600,10, 0x1800000,1, 0x1800020,3, 0x1800030,2, 0x1800040,3, 0x1800050,2, 0x1800800,53, 0x1800900,3, 0x1800910,13, 0x1800a00,53, 0x1800b00,3, 0x1800b10,13, 0x1800c00,5, 0x1800c20,5, 0x1800c40,18, 0x1801000,6, 0x1801020,4, 0x1801040,16, 0x1802000,20, 0x1802080,15, 0x1802100,20, 0x1802180,15, 0x1802200,23, 0x1802260,7, 0x1802400,11, 0x1802430,3, 0x1802440,3, 0x1802450,3, 0x1802460,24, 0x1802500,11, 0x1802530,3, 0x1802540,3, 0x1802550,3, 0x1802560,24, 0x1802600,11, 0x1802630,3, 0x1802640,3, 0x1802650,3, 0x1802660,24, 0x1802700,11, 0x1802730,3, 0x1802740,3, 0x1802750,3, 0x1802760,24, 0x1802800,4, 0x1802820,16, 0x1802880,10, 0x18028c0,10, 0x1802900,6, 0x1802920,6, 0x1802940,4, 0x1802980,13, 0x18029c0,13, 0x1802a00,9, 0x1803000,14, 0x1803040,9, 0x1803080,6, 0x18030a0,1, 0x18030a8,4, 0x1803100,4, 0x1803200,124, 0x1803400,124, 0x1803600,8, 0x1803624,1, 0x1803644,6, 0x1803664,6, 0x1803680,1, 0x1803688,6, 0x18036a8,22, 0x1804000,1, 0x1804020,3, 0x1804030,2, 0x1804040,3, 0x1804050,2, 0x1804800,53, 0x1804900,3, 0x1804910,13, 0x1804a00,53, 0x1804b00,3, 0x1804b10,13, 0x1804c00,5, 0x1804c20,5, 0x1804c40,18, 0x1805000,6, 0x1805020,4, 0x1805040,16, 0x1806000,20, 0x1806080,15, 0x1806100,20, 0x1806180,15, 0x1806200,23, 0x1806260,7, 0x1806400,11, 0x1806430,3, 0x1806440,3, 0x1806450,3, 0x1806460,24, 0x1806500,11, 0x1806530,3, 0x1806540,3, 0x1806550,3, 0x1806560,24, 0x1806600,11, 0x1806630,3, 0x1806640,3, 0x1806650,3, 0x1806660,24, 0x1806700,11, 0x1806730,3, 0x1806740,3, 0x1806750,3, 0x1806760,24, 0x1806800,4, 0x1806820,16, 0x1806880,10, 0x18068c0,10, 0x1806900,6, 0x1806920,6, 0x1806940,4, 0x1806980,13, 0x18069c0,13, 0x1806a00,9, 0x1807000,14, 0x1807040,9, 0x1807080,6, 0x18070a0,1, 0x18070a8,4, 0x1807100,4, 0x1807200,124, 0x1807400,124, 0x1807600,8, 0x1807624,1, 0x1807644,6, 0x1807664,6, 0x1807680,1, 0x1807688,6, 0x18076a8,22, 0x1808000,84, 0x1808180,20, 0x1808200,5, 0x1808400,11, 0x1808440,11, 0x1808480,19, 0x1808500,19, 0x1808580,24, 0x1808600,13, 0x1808800,84, 0x1808980,20, 0x1808a00,5, 0x1808c00,11, 0x1808c40,11, 0x1808c80,19, 0x1808d00,19, 0x1808d80,24, 0x1808e00,13, 0x1809000,10, 0x1809040,5, 0x1809080,10, 0x18090c0,5, 0x1809100,5, 0x1809200,11, 0x1809230,3, 0x1809240,5, 0x1809260,5, 0x1809280,32, 0x1809400,13, 0x1809440,13, 0x1809480,9, 0x18094c0,1, 0x18094d0,5, 0x18094f0,21, 0x1809800,10, 0x1809840,5, 0x1809880,10, 0x18098c0,5, 0x1809900,5, 0x1809a00,11, 0x1809a30,3, 0x1809a40,5, 0x1809a60,5, 0x1809a80,32, 0x1809c00,13, 0x1809c40,13, 0x1809c80,9, 0x1809cc0,1, 0x1809cd0,5, 0x1809cf0,21, 0x180a000,14, 0x180a040,9, 0x180a080,6, 0x180a0a0,1, 0x180a0a8,4, 0x180a100,7, 0x180a120,3, 0x180a130,25, 0x180c000,26, 0x180c06c,2, 0x180c080,3, 0x180c090,17, 0x180c100,26, 0x180c16c,2, 0x180c180,3, 0x180c190,17, 0x180c200,26, 0x180c26c,2, 0x180c280,3, 0x180c290,17, 0x180c300,26, 0x180c36c,2, 0x180c380,3, 0x180c390,17, 0x180c400,26, 0x180c46c,2, 0x180c480,3, 0x180c490,17, 0x180c500,26, 0x180c56c,2, 0x180c580,3, 0x180c590,17, 0x180c600,26, 0x180c66c,2, 0x180c680,3, 0x180c690,17, 0x180c700,26, 0x180c76c,2, 0x180c780,3, 0x180c790,17, 0x180c800,12, 0x180c844,1, 0x180c854,8, 0x180c880,7, 0x180c8a0,2, 0x180c8ac,2, 0x180c8c0,26, 0x180c980,4, 0x180c9a0,5, 0x180c9c0,1, 0x180d000,3, 0x180d010,3, 0x180d020,3, 0x180d030,3, 0x180d040,3, 0x180d050,3, 0x180d060,3, 0x180d070,3, 0x180d080,5, 0x180d0a0,5, 0x180d0c0,5, 0x180d0e0,5, 0x180d100,5, 0x180d120,5, 0x180d140,5, 0x180d160,5, 0x180d200,68, 0x180d400,1, 0x180d804,1, 0x180d844,54, 0x180da00,11, 0x180da40,11, 0x180da80,11, 0x180dac0,11, 0x180db00,11, 0x180db40,11, 0x180db80,11, 0x180dbc0,11, 0x180dc00,28, 0x180dc80,5, 0x180dca0,2, 0x180e000,4, 0x180e020,6, 0x180e040,6, 0x180e060,14, 0x180e100,26, 0x180e180,15, 0x180e200,14, 0x180e240,9, 0x180e280,6, 0x180e2a0,1, 0x180e2a8,4, 0x180e300,14, 0x180e340,9, 0x180e380,6, 0x180e3a0,4, 0x180e400,9, 0x1820000,1, 0x1821000,977, 0x1822000,161, 0x1823000,977, 0x1824000,977, 0x1825000,977, 0x1826000,977, 0x1827000,977, 0x1828000,977, 0x1829000,977, 0x182a000,977, 0x182b000,161, 0x182c000,12, 0x182c040,14, 0x182c080,20, 0x182c104,1, 0x182c10c,4, 0x182c200,12, 0x182c240,14, 0x182c280,20, 0x182c304,1, 0x182c30c,4, 0x182c400,12, 0x182c440,14, 0x182c480,20, 0x182c504,1, 0x182c50c,4, 0x182c600,12, 0x182c640,14, 0x182c680,20, 0x182c704,1, 0x182c70c,4, 0x182c800,12, 0x182c840,14, 0x182c880,20, 0x182c904,1, 0x182c90c,4, 0x182ca00,12, 0x182ca40,14, 0x182ca80,20, 0x182cb04,1, 0x182cb0c,4, 0x182cc00,12, 0x182cc40,14, 0x182cc80,20, 0x182cd04,1, 0x182cd0c,4, 0x182ce00,12, 0x182ce40,14, 0x182ce80,20, 0x182cf04,1, 0x182cf0c,4, 0x182d000,12, 0x182d040,14, 0x182d080,20, 0x182d104,1, 0x182d10c,4, 0x182d200,17, 0x182d250,2, 0x182d260,4, 0x182e000,1, 0x182e014,1, 0x182e01c,11, 0x182e060,9, 0x182e094,1, 0x182e09c,11, 0x182e0e0,15, 0x182e200,12, 0x182e240,13, 0x182e280,3, 0x182e290,1, 0x1880000,500, 0x1880800,2, 0x1880820,15, 0x1881000,500, 0x1881800,8, 0x1881824,6, 0x1881840,8, 0x1881880,7, 0x18818a0,7, 0x18818c0,7, 0x18818e0,7, 0x1881900,8, 0x1881924,16, 0x1881980,12, 0x1882000,500, 0x1882800,2, 0x1882820,15, 0x1883000,500, 0x1883800,8, 0x1883824,6, 0x1883840,8, 0x1883880,7, 0x18838a0,7, 0x18838c0,7, 0x18838e0,7, 0x1883900,8, 0x1883924,16, 0x1883980,12, 0x1884004,5, 0x1884200,26, 0x1884280,4, 0x18842c0,25, 0x1884340,6, 0x1884360,1, 0x1884368,2, 0x1884374,11, 0x18843a4,10, 0x1884400,1, 0x1888000,52, 0x1888400,82, 0x1888560,6, 0x1888600,41, 0x1888700,2, 0x1888720,19, 0x1888800,25, 0x1888880,1, 0x1888900,28, 0x1888980,1, 0x1889000,52, 0x1889400,82, 0x1889560,6, 0x1889600,41, 0x1889700,2, 0x1889720,19, 0x1889800,25, 0x1889880,1, 0x1889900,28, 0x1889980,1, 0x188a000,7, 0x188a080,6, 0x188a0a0,6, 0x188a0c0,1, 0x188a100,4, 0x188a120,9, 0x188c000,3, 0x188c010,6, 0x188c200,7, 0x188c220,6, 0x188c240,7, 0x188c260,6, 0x188c280,2, 0x188c28c,2, 0x188c2a0,2, 0x188c2ac,2, 0x188c2c0,7, 0x188c2e0,7, 0x188c300,2, 0x188c30c,2, 0x188c320,6, 0x188c400,3, 0x188c440,12, 0x188c800,7, 0x188c820,14, 0x188c880,16, 0x188c900,7, 0x188c920,14, 0x188c980,16, 0x188ca00,6, 0x188ca20,7, 0x188cc00,3, 0x18a0000,3, 0x18a0800,7, 0x18a0820,6, 0x18a0840,6, 0x18a0880,1, 0x18a0894,1, 0x18a089c,2, 0x18a08c0,9, 0x18a0900,18, 0x18a0a00,36, 0x18a0b00,22, 0x18a0b80,18, 0x18a0c00,3, 0x18a0c10,3, 0x18a1000,3, 0x18a1010,2, 0x18a1080,20, 0x18a1100,1, 0x18a1200,26, 0x18a1280,4, 0x18a12c0,25, 0x18a1340,6, 0x18a1360,1, 0x18a1368,2, 0x18a1374,11, 0x18a13a4,4, 0x18a1400,1, 0x18b0000,11, 0x18b0030,19, 0x18b0080,17, 0x18b0100,11, 0x18b0130,19, 0x18b0180,17, 0x18b0200,3, 0x18b0214,1, 0x18b021c,1, 0x18b0280,3, 0x18b0294,1, 0x18b029c,1, 0x18b0300,18, 0x18b0380,18, 0x18b0400,18, 0x18b0480,18, 0x18b0500,18, 0x18b0580,18, 0x18b0600,18, 0x18b0680,18, 0x18b0700,13, 0x18b0738,6, 0x18b0780,13, 0x18b07b8,6, 0x18b0800,1, 0x18b0808,22, 0x18b0880,1, 0x18b0894,13, 0x18b0900,3, 0x18b0910,3, 0x18b0920,3, 0x18b0940,3, 0x18b0954,1, 0x18b095c,1, 0x18b0a00,52, 0x18b0c00,4, 0x18b0d00,34, 0x18b0e00,4, 0x18b0e80,30, 0x18b0f00,1, 0x18b0f40,5, 0x18b0f60,5, 0x18b0f80,6, 0x18b1000,14, 0x18b1040,4, 0x18b1060,17, 0x18b10c0,6, 0x18b10e0,1, 0x18b10e8,2, 0x18b10f4,11, 0x18b1124,17, 0x18b1200,3, 0x18b1210,3, 0x18b1220,3, 0x18b1230,3, 0x18b1240,3, 0x18b1250,3, 0x18b2000,20, 0x18b2080,3, 0x18b2090,1, 0x18b2098,2, 0x18c0000,500, 0x18c0800,2, 0x18c0820,15, 0x18c1000,500, 0x18c1800,8, 0x18c1824,6, 0x18c1840,8, 0x18c1880,7, 0x18c18a0,7, 0x18c18c0,7, 0x18c18e0,7, 0x18c1900,8, 0x18c1924,16, 0x18c1980,12, 0x18c2000,500, 0x18c2800,2, 0x18c2820,15, 0x18c3000,500, 0x18c3800,8, 0x18c3824,6, 0x18c3840,8, 0x18c3880,7, 0x18c38a0,7, 0x18c38c0,7, 0x18c38e0,7, 0x18c3900,8, 0x18c3924,16, 0x18c3980,12, 0x18c4004,5, 0x18c4200,26, 0x18c4280,4, 0x18c42c0,25, 0x18c4340,6, 0x18c4360,1, 0x18c4368,2, 0x18c4374,11, 0x18c43a4,10, 0x18c4400,1, 0x18c8000,52, 0x18c8400,82, 0x18c8560,6, 0x18c8600,41, 0x18c8700,2, 0x18c8720,19, 0x18c8800,25, 0x18c8880,1, 0x18c8900,28, 0x18c8980,1, 0x18c9000,52, 0x18c9400,82, 0x18c9560,6, 0x18c9600,41, 0x18c9700,2, 0x18c9720,19, 0x18c9800,25, 0x18c9880,1, 0x18c9900,28, 0x18c9980,1, 0x18ca000,7, 0x18ca080,6, 0x18ca0a0,6, 0x18ca0c0,1, 0x18ca100,4, 0x18ca120,9, 0x18cc000,3, 0x18cc010,6, 0x18cc200,7, 0x18cc220,6, 0x18cc240,7, 0x18cc260,6, 0x18cc280,2, 0x18cc28c,2, 0x18cc2a0,2, 0x18cc2ac,2, 0x18cc2c0,7, 0x18cc2e0,7, 0x18cc300,2, 0x18cc30c,2, 0x18cc320,6, 0x18cc400,3, 0x18cc440,12, 0x18cc800,7, 0x18cc820,14, 0x18cc880,16, 0x18cc900,7, 0x18cc920,14, 0x18cc980,16, 0x18cca00,6, 0x18cca20,7, 0x18ccc00,3, 0x18e0000,3, 0x18e0800,7, 0x18e0820,6, 0x18e0840,6, 0x18e0880,1, 0x18e0894,1, 0x18e089c,2, 0x18e08c0,9, 0x18e0900,18, 0x18e0a00,36, 0x18e0b00,22, 0x18e0b80,18, 0x18e0c00,3, 0x18e0c10,3, 0x18e1000,3, 0x18e1010,2, 0x18e1080,20, 0x18e1100,1, 0x18e1200,26, 0x18e1280,4, 0x18e12c0,25, 0x18e1340,6, 0x18e1360,1, 0x18e1368,2, 0x18e1374,11, 0x18e13a4,4, 0x18e1400,1, 0x18f0000,11, 0x18f0030,19, 0x18f0080,17, 0x18f0100,11, 0x18f0130,19, 0x18f0180,17, 0x18f0200,3, 0x18f0214,1, 0x18f021c,1, 0x18f0280,3, 0x18f0294,1, 0x18f029c,1, 0x18f0300,18, 0x18f0380,18, 0x18f0400,18, 0x18f0480,18, 0x18f0500,18, 0x18f0580,18, 0x18f0600,18, 0x18f0680,18, 0x18f0700,13, 0x18f0738,6, 0x18f0780,13, 0x18f07b8,6, 0x18f0800,1, 0x18f0808,22, 0x18f0880,1, 0x18f0894,13, 0x18f0900,3, 0x18f0910,3, 0x18f0920,3, 0x18f0940,3, 0x18f0954,1, 0x18f095c,1, 0x18f0a00,52, 0x18f0c00,4, 0x18f0d00,34, 0x18f0e00,4, 0x18f0e80,30, 0x18f0f00,1, 0x18f0f40,5, 0x18f0f60,5, 0x18f0f80,6, 0x18f1000,14, 0x18f1040,4, 0x18f1060,17, 0x18f10c0,6, 0x18f10e0,1, 0x18f10e8,2, 0x18f10f4,11, 0x18f1124,17, 0x18f1200,3, 0x18f1210,3, 0x18f1220,3, 0x18f1230,3, 0x18f1240,3, 0x18f1250,3, 0x18f2000,20, 0x18f2080,3, 0x18f2090,1, 0x18f2098,2, 0x1900000,13, 0x1900038,4, 0x1900050,3, 0x1900060,3, 0x1900070,16, 0x19000c0,5, 0x1900400,14, 0x1900440,2, 0x190044c,3, 0x1900480,14, 0x19004c0,2, 0x19004cc,3, 0x1900500,1, 0x1900508,15, 0x1900560,2, 0x190056c,2, 0x1900600,4, 0x1900680,27, 0x1900800,2, 0x1900900,32, 0x1900984,2, 0x1900990,4, 0x1900a00,26, 0x1900a80,4, 0x1900ac0,25, 0x1900b40,6, 0x1900b60,1, 0x1900b68,2, 0x1900b74,11, 0x1900ba4,8, 0x1900c00,9, 0x1900c40,11, 0x1900c80,23, 0x1900ce0,15, 0x1900d20,15, 0x1900d60,1, 0x1901000,13, 0x1901038,4, 0x1901050,3, 0x1901060,3, 0x1901070,16, 0x19010c0,5, 0x1901400,14, 0x1901440,2, 0x190144c,3, 0x1901480,14, 0x19014c0,2, 0x19014cc,3, 0x1901500,1, 0x1901508,15, 0x1901560,2, 0x190156c,2, 0x1901600,4, 0x1901680,27, 0x1901800,2, 0x1901900,32, 0x1901984,2, 0x1901990,4, 0x1901a00,26, 0x1901a80,4, 0x1901ac0,25, 0x1901b40,6, 0x1901b60,1, 0x1901b68,2, 0x1901b74,11, 0x1901ba4,8, 0x1901c00,9, 0x1901c40,11, 0x1901c80,23, 0x1901ce0,15, 0x1901d20,15, 0x1901d60,1, 0x1902000,1, 0x1902100,36, 0x1902200,7, 0x1910000,22, 0x1910080,22, 0x1910100,12, 0x1910140,12, 0x1910200,52, 0x1910300,52, 0x1910400,11, 0x1910440,11, 0x1910480,3, 0x19104a0,6, 0x19104c0,6, 0x19104e0,3, 0x19104f0,3, 0x1910800,9, 0x1910840,15, 0x1910880,15, 0x19108c0,15, 0x1910900,1, 0x1910914,13, 0x1910980,17, 0x1911000,17, 0x1911080,17, 0x1911104,5, 0x1911120,3, 0x1911130,11, 0x1911200,31, 0x1911280,31, 0x1911300,12, 0x1911340,12, 0x1911380,2, 0x1911390,2, 0x19113a0,3, 0x19113b0,3, 0x19113c0,5, 0x19113e0,5, 0x1911400,3, 0x1911410,3, 0x1911420,3, 0x1911430,3, 0x1911440,3, 0x1911450,3, 0x1911460,7, 0x1911800,26, 0x1911880,4, 0x19118c0,25, 0x1911940,6, 0x1911960,1, 0x1911968,2, 0x1911974,11, 0x19119a4,12, 0x1911a00,4, 0x1911b00,43, 0x1911c00,4, 0x1911c20,7, 0x1911c40,3, 0x1911c50,1, 0x1911c60,3, 0x1911e00,32, 0x1911e84,1, 0x1911e90,4, 0x1911ea4,1, 0x1911eb4,14, 0x1911ef0,2, 0x1911f04,1, 0x1911f10,8, 0x1911f34,6, 0x1912000,3, 0x1912010,21, 0x1912080,1, 0x1912094,1, 0x191209c,5, 0x1912100,15, 0x1912140,1, 0x1912180,6, 0x1914000,22, 0x1914080,22, 0x1914100,12, 0x1914140,12, 0x1914200,52, 0x1914300,52, 0x1914400,11, 0x1914440,11, 0x1914480,3, 0x19144a0,6, 0x19144c0,6, 0x19144e0,3, 0x19144f0,3, 0x1914800,9, 0x1914840,15, 0x1914880,15, 0x19148c0,15, 0x1914900,1, 0x1914914,13, 0x1914980,17, 0x1915000,17, 0x1915080,17, 0x1915104,5, 0x1915120,3, 0x1915130,11, 0x1915200,31, 0x1915280,31, 0x1915300,12, 0x1915340,12, 0x1915380,2, 0x1915390,2, 0x19153a0,3, 0x19153b0,3, 0x19153c0,5, 0x19153e0,5, 0x1915400,3, 0x1915410,3, 0x1915420,3, 0x1915430,3, 0x1915440,3, 0x1915450,3, 0x1915460,7, 0x1915800,26, 0x1915880,4, 0x19158c0,25, 0x1915940,6, 0x1915960,1, 0x1915968,2, 0x1915974,11, 0x19159a4,12, 0x1915a00,4, 0x1915b00,43, 0x1915c00,4, 0x1915c20,7, 0x1915c40,3, 0x1915c50,1, 0x1915c60,3, 0x1915e00,32, 0x1915e84,1, 0x1915e90,4, 0x1915ea4,1, 0x1915eb4,14, 0x1915ef0,2, 0x1915f04,1, 0x1915f10,8, 0x1915f34,6, 0x1916000,3, 0x1916010,21, 0x1916080,1, 0x1916094,1, 0x191609c,5, 0x1916100,15, 0x1916140,1, 0x1916180,6, 0x1918000,100, 0x1918200,3, 0x1918210,5, 0x1920000,12, 0x1920040,2, 0x1920050,3, 0x1922000,1006, 0x1923000,31, 0x1923084,6, 0x1924004,1, 0x192400c,3, 0x1924200,23, 0x1924280,23, 0x1924300,1, 0x1924400,1, 0x1924800,122, 0x1924a00,122, 0x1924c04,63, 0x1924d04,1, 0x1924d10,5, 0x1924d40,6, 0x1924d60,5, 0x1926000,1, 0x1926100,1, 0x1926108,3, 0x1926120,2, 0x1926134,8, 0x1926160,2, 0x1926174,8, 0x19261a0,4, 0x1926200,54, 0x1926800,5, 0x1926820,2, 0x1926834,1, 0x192683c,1, 0x1926a00,24, 0x1926a80,24, 0x1926b00,1, 0x1926c00,6, 0x1926c24,5, 0x1926c40,16, 0x1927000,1, 0x1927020,5, 0x1927040,1, 0x1927048,2, 0x1927080,1, 0x1927100,4, 0x1927180,24, 0x1927200,4, 0x1927280,27, 0x1927300,2, 0x192730c,3, 0x1928004,1, 0x192800c,3, 0x1928020,1, 0x1928100,2, 0x1928110,3, 0x1928120,2, 0x1928140,10, 0x1928180,13, 0x1928200,2, 0x1928210,3, 0x1928220,2, 0x1928240,10, 0x1928280,13, 0x1928400,14, 0x1928440,3, 0x1928450,3, 0x1928460,1, 0x1928500,36, 0x1928600,10, 0x1928640,5, 0x1928660,5, 0x1928700,27, 0x1928780,7, 0x19287a0,8, 0x1928800,27, 0x1928880,7, 0x19288a0,8, 0x1928900,27, 0x1928980,7, 0x19289a0,8, 0x1928a00,27, 0x1928a80,7, 0x1928aa0,8, 0x1928b00,48, 0x1928bc4,8, 0x1928bf0,30, 0x1928c80,4, 0x1928cc0,25, 0x1928d40,6, 0x1928d60,1, 0x1928d68,2, 0x1928d74,3, 0x1928e00,8, 0x1928e24,28, 0x1929000,4, 0x1929080,23, 0x1929100,14, 0x1929140,9, 0x1929200,10, 0x1929230,3, 0x1929240,5, 0x1929260,5, 0x1929280,9, 0x1929400,67, 0x1929600,10, 0x1930000,12, 0x1930040,2, 0x1930050,3, 0x1932000,1006, 0x1933000,31, 0x1933084,6, 0x1934004,1, 0x193400c,3, 0x1934200,23, 0x1934280,23, 0x1934300,1, 0x1934400,1, 0x1934800,122, 0x1934a00,122, 0x1934c04,63, 0x1934d04,1, 0x1934d10,5, 0x1934d40,6, 0x1934d60,5, 0x1936000,1, 0x1936100,1, 0x1936108,3, 0x1936120,2, 0x1936134,8, 0x1936160,2, 0x1936174,8, 0x19361a0,4, 0x1936200,54, 0x1936800,5, 0x1936820,2, 0x1936834,1, 0x193683c,1, 0x1936a00,24, 0x1936a80,24, 0x1936b00,1, 0x1936c00,6, 0x1936c24,5, 0x1936c40,16, 0x1937000,1, 0x1937020,5, 0x1937040,1, 0x1937048,2, 0x1937080,1, 0x1937100,4, 0x1937180,24, 0x1937200,4, 0x1937280,27, 0x1937300,2, 0x193730c,3, 0x1938004,1, 0x193800c,3, 0x1938020,1, 0x1938100,2, 0x1938110,3, 0x1938120,2, 0x1938140,10, 0x1938180,13, 0x1938200,2, 0x1938210,3, 0x1938220,2, 0x1938240,10, 0x1938280,13, 0x1938400,14, 0x1938440,3, 0x1938450,3, 0x1938460,1, 0x1938500,36, 0x1938600,10, 0x1938640,5, 0x1938660,5, 0x1938700,27, 0x1938780,7, 0x19387a0,8, 0x1938800,27, 0x1938880,7, 0x19388a0,8, 0x1938900,27, 0x1938980,7, 0x19389a0,8, 0x1938a00,27, 0x1938a80,7, 0x1938aa0,8, 0x1938b00,48, 0x1938bc4,8, 0x1938bf0,30, 0x1938c80,4, 0x1938cc0,25, 0x1938d40,6, 0x1938d60,1, 0x1938d68,2, 0x1938d74,3, 0x1938e00,8, 0x1938e24,28, 0x1939000,4, 0x1939080,23, 0x1939100,14, 0x1939140,9, 0x1939200,10, 0x1939230,3, 0x1939240,5, 0x1939260,5, 0x1939280,9, 0x1939400,67, 0x1939600,10, 0x1a00000,1, 0x1a00020,3, 0x1a00030,2, 0x1a00040,3, 0x1a00050,2, 0x1a00800,53, 0x1a00900,3, 0x1a00910,13, 0x1a00a00,53, 0x1a00b00,3, 0x1a00b10,13, 0x1a00c00,5, 0x1a00c20,5, 0x1a00c40,18, 0x1a01000,6, 0x1a01020,4, 0x1a01040,16, 0x1a02000,20, 0x1a02080,15, 0x1a02100,20, 0x1a02180,15, 0x1a02200,23, 0x1a02260,7, 0x1a02400,11, 0x1a02430,3, 0x1a02440,3, 0x1a02450,3, 0x1a02460,24, 0x1a02500,11, 0x1a02530,3, 0x1a02540,3, 0x1a02550,3, 0x1a02560,24, 0x1a02600,11, 0x1a02630,3, 0x1a02640,3, 0x1a02650,3, 0x1a02660,24, 0x1a02700,11, 0x1a02730,3, 0x1a02740,3, 0x1a02750,3, 0x1a02760,24, 0x1a02800,4, 0x1a02820,16, 0x1a02880,10, 0x1a028c0,10, 0x1a02900,6, 0x1a02920,6, 0x1a02940,4, 0x1a02980,13, 0x1a029c0,13, 0x1a02a00,9, 0x1a03000,14, 0x1a03040,9, 0x1a03080,6, 0x1a030a0,1, 0x1a030a8,4, 0x1a03100,4, 0x1a03200,124, 0x1a03400,124, 0x1a03600,8, 0x1a03624,1, 0x1a03644,6, 0x1a03664,6, 0x1a03680,1, 0x1a03688,6, 0x1a036a8,22, 0x1a04000,1, 0x1a04020,3, 0x1a04030,2, 0x1a04040,3, 0x1a04050,2, 0x1a04800,53, 0x1a04900,3, 0x1a04910,13, 0x1a04a00,53, 0x1a04b00,3, 0x1a04b10,13, 0x1a04c00,5, 0x1a04c20,5, 0x1a04c40,18, 0x1a05000,6, 0x1a05020,4, 0x1a05040,16, 0x1a06000,20, 0x1a06080,15, 0x1a06100,20, 0x1a06180,15, 0x1a06200,23, 0x1a06260,7, 0x1a06400,11, 0x1a06430,3, 0x1a06440,3, 0x1a06450,3, 0x1a06460,24, 0x1a06500,11, 0x1a06530,3, 0x1a06540,3, 0x1a06550,3, 0x1a06560,24, 0x1a06600,11, 0x1a06630,3, 0x1a06640,3, 0x1a06650,3, 0x1a06660,24, 0x1a06700,11, 0x1a06730,3, 0x1a06740,3, 0x1a06750,3, 0x1a06760,24, 0x1a06800,4, 0x1a06820,16, 0x1a06880,10, 0x1a068c0,10, 0x1a06900,6, 0x1a06920,6, 0x1a06940,4, 0x1a06980,13, 0x1a069c0,13, 0x1a06a00,9, 0x1a07000,14, 0x1a07040,9, 0x1a07080,6, 0x1a070a0,1, 0x1a070a8,4, 0x1a07100,4, 0x1a07200,124, 0x1a07400,124, 0x1a07600,8, 0x1a07624,1, 0x1a07644,6, 0x1a07664,6, 0x1a07680,1, 0x1a07688,6, 0x1a076a8,22, 0x1a08000,84, 0x1a08180,20, 0x1a08200,5, 0x1a08400,11, 0x1a08440,11, 0x1a08480,19, 0x1a08500,19, 0x1a08580,24, 0x1a08600,13, 0x1a08800,84, 0x1a08980,20, 0x1a08a00,5, 0x1a08c00,11, 0x1a08c40,11, 0x1a08c80,19, 0x1a08d00,19, 0x1a08d80,24, 0x1a08e00,13, 0x1a09000,10, 0x1a09040,5, 0x1a09080,10, 0x1a090c0,5, 0x1a09100,5, 0x1a09200,11, 0x1a09230,3, 0x1a09240,5, 0x1a09260,5, 0x1a09280,32, 0x1a09400,13, 0x1a09440,13, 0x1a09480,9, 0x1a094c0,1, 0x1a094d0,5, 0x1a094f0,21, 0x1a09800,10, 0x1a09840,5, 0x1a09880,10, 0x1a098c0,5, 0x1a09900,5, 0x1a09a00,11, 0x1a09a30,3, 0x1a09a40,5, 0x1a09a60,5, 0x1a09a80,32, 0x1a09c00,13, 0x1a09c40,13, 0x1a09c80,9, 0x1a09cc0,1, 0x1a09cd0,5, 0x1a09cf0,21, 0x1a0a000,14, 0x1a0a040,9, 0x1a0a080,6, 0x1a0a0a0,1, 0x1a0a0a8,4, 0x1a0a100,7, 0x1a0a120,3, 0x1a0a130,25, 0x1a0c000,26, 0x1a0c06c,2, 0x1a0c080,3, 0x1a0c090,17, 0x1a0c100,26, 0x1a0c16c,2, 0x1a0c180,3, 0x1a0c190,17, 0x1a0c200,26, 0x1a0c26c,2, 0x1a0c280,3, 0x1a0c290,17, 0x1a0c300,26, 0x1a0c36c,2, 0x1a0c380,3, 0x1a0c390,17, 0x1a0c400,26, 0x1a0c46c,2, 0x1a0c480,3, 0x1a0c490,17, 0x1a0c500,26, 0x1a0c56c,2, 0x1a0c580,3, 0x1a0c590,17, 0x1a0c600,26, 0x1a0c66c,2, 0x1a0c680,3, 0x1a0c690,17, 0x1a0c700,26, 0x1a0c76c,2, 0x1a0c780,3, 0x1a0c790,17, 0x1a0c800,12, 0x1a0c844,1, 0x1a0c854,8, 0x1a0c880,7, 0x1a0c8a0,2, 0x1a0c8ac,2, 0x1a0c8c0,26, 0x1a0c980,4, 0x1a0c9a0,5, 0x1a0c9c0,1, 0x1a0d000,3, 0x1a0d010,3, 0x1a0d020,3, 0x1a0d030,3, 0x1a0d040,3, 0x1a0d050,3, 0x1a0d060,3, 0x1a0d070,3, 0x1a0d080,5, 0x1a0d0a0,5, 0x1a0d0c0,5, 0x1a0d0e0,5, 0x1a0d100,5, 0x1a0d120,5, 0x1a0d140,5, 0x1a0d160,5, 0x1a0d200,68, 0x1a0d400,1, 0x1a0d804,1, 0x1a0d844,54, 0x1a0da00,11, 0x1a0da40,11, 0x1a0da80,11, 0x1a0dac0,11, 0x1a0db00,11, 0x1a0db40,11, 0x1a0db80,11, 0x1a0dbc0,11, 0x1a0dc00,28, 0x1a0dc80,5, 0x1a0dca0,2, 0x1a0e000,4, 0x1a0e020,6, 0x1a0e040,6, 0x1a0e060,14, 0x1a0e100,26, 0x1a0e180,15, 0x1a0e200,14, 0x1a0e240,9, 0x1a0e280,6, 0x1a0e2a0,1, 0x1a0e2a8,4, 0x1a0e300,14, 0x1a0e340,9, 0x1a0e380,6, 0x1a0e3a0,4, 0x1a0e400,9, 0x1a20000,1, 0x1a21000,977, 0x1a22000,161, 0x1a23000,977, 0x1a24000,977, 0x1a25000,977, 0x1a26000,977, 0x1a27000,977, 0x1a28000,977, 0x1a29000,977, 0x1a2a000,977, 0x1a2b000,161, 0x1a2c000,12, 0x1a2c040,14, 0x1a2c080,20, 0x1a2c104,1, 0x1a2c10c,4, 0x1a2c200,12, 0x1a2c240,14, 0x1a2c280,20, 0x1a2c304,1, 0x1a2c30c,4, 0x1a2c400,12, 0x1a2c440,14, 0x1a2c480,20, 0x1a2c504,1, 0x1a2c50c,4, 0x1a2c600,12, 0x1a2c640,14, 0x1a2c680,20, 0x1a2c704,1, 0x1a2c70c,4, 0x1a2c800,12, 0x1a2c840,14, 0x1a2c880,20, 0x1a2c904,1, 0x1a2c90c,4, 0x1a2ca00,12, 0x1a2ca40,14, 0x1a2ca80,20, 0x1a2cb04,1, 0x1a2cb0c,4, 0x1a2cc00,12, 0x1a2cc40,14, 0x1a2cc80,20, 0x1a2cd04,1, 0x1a2cd0c,4, 0x1a2ce00,12, 0x1a2ce40,14, 0x1a2ce80,20, 0x1a2cf04,1, 0x1a2cf0c,4, 0x1a2d000,12, 0x1a2d040,14, 0x1a2d080,20, 0x1a2d104,1, 0x1a2d10c,4, 0x1a2d200,17, 0x1a2d250,2, 0x1a2d260,4, 0x1a2e000,1, 0x1a2e014,1, 0x1a2e01c,11, 0x1a2e060,9, 0x1a2e094,1, 0x1a2e09c,11, 0x1a2e0e0,15, 0x1a2e200,12, 0x1a2e240,13, 0x1a2e280,3, 0x1a2e290,1, 0x1a80000,500, 0x1a80800,2, 0x1a80820,15, 0x1a81000,500, 0x1a81800,8, 0x1a81824,6, 0x1a81840,8, 0x1a81880,7, 0x1a818a0,7, 0x1a818c0,7, 0x1a818e0,7, 0x1a81900,8, 0x1a81924,16, 0x1a81980,12, 0x1a82000,500, 0x1a82800,2, 0x1a82820,15, 0x1a83000,500, 0x1a83800,8, 0x1a83824,6, 0x1a83840,8, 0x1a83880,7, 0x1a838a0,7, 0x1a838c0,7, 0x1a838e0,7, 0x1a83900,8, 0x1a83924,16, 0x1a83980,12, 0x1a84004,5, 0x1a84200,26, 0x1a84280,4, 0x1a842c0,25, 0x1a84340,6, 0x1a84360,1, 0x1a84368,2, 0x1a84374,11, 0x1a843a4,10, 0x1a84400,1, 0x1a88000,52, 0x1a88400,82, 0x1a88560,6, 0x1a88600,41, 0x1a88700,2, 0x1a88720,19, 0x1a88800,25, 0x1a88880,1, 0x1a88900,28, 0x1a88980,1, 0x1a89000,52, 0x1a89400,82, 0x1a89560,6, 0x1a89600,41, 0x1a89700,2, 0x1a89720,19, 0x1a89800,25, 0x1a89880,1, 0x1a89900,28, 0x1a89980,1, 0x1a8a000,7, 0x1a8a080,6, 0x1a8a0a0,6, 0x1a8a0c0,1, 0x1a8a100,4, 0x1a8a120,9, 0x1a8c000,3, 0x1a8c010,6, 0x1a8c200,7, 0x1a8c220,6, 0x1a8c240,7, 0x1a8c260,6, 0x1a8c280,2, 0x1a8c28c,2, 0x1a8c2a0,2, 0x1a8c2ac,2, 0x1a8c2c0,7, 0x1a8c2e0,7, 0x1a8c300,2, 0x1a8c30c,2, 0x1a8c320,6, 0x1a8c400,3, 0x1a8c440,12, 0x1a8c800,7, 0x1a8c820,14, 0x1a8c880,16, 0x1a8c900,7, 0x1a8c920,14, 0x1a8c980,16, 0x1a8ca00,6, 0x1a8ca20,7, 0x1a8cc00,3, 0x1aa0000,3, 0x1aa0800,7, 0x1aa0820,6, 0x1aa0840,6, 0x1aa0880,1, 0x1aa0894,1, 0x1aa089c,2, 0x1aa08c0,9, 0x1aa0900,18, 0x1aa0a00,36, 0x1aa0b00,22, 0x1aa0b80,18, 0x1aa0c00,3, 0x1aa0c10,3, 0x1aa1000,3, 0x1aa1010,2, 0x1aa1080,20, 0x1aa1100,1, 0x1aa1200,26, 0x1aa1280,4, 0x1aa12c0,25, 0x1aa1340,6, 0x1aa1360,1, 0x1aa1368,2, 0x1aa1374,11, 0x1aa13a4,4, 0x1aa1400,1, 0x1ab0000,11, 0x1ab0030,19, 0x1ab0080,17, 0x1ab0100,11, 0x1ab0130,19, 0x1ab0180,17, 0x1ab0200,3, 0x1ab0214,1, 0x1ab021c,1, 0x1ab0280,3, 0x1ab0294,1, 0x1ab029c,1, 0x1ab0300,18, 0x1ab0380,18, 0x1ab0400,18, 0x1ab0480,18, 0x1ab0500,18, 0x1ab0580,18, 0x1ab0600,18, 0x1ab0680,18, 0x1ab0700,13, 0x1ab0738,6, 0x1ab0780,13, 0x1ab07b8,6, 0x1ab0800,1, 0x1ab0808,22, 0x1ab0880,1, 0x1ab0894,13, 0x1ab0900,3, 0x1ab0910,3, 0x1ab0920,3, 0x1ab0940,3, 0x1ab0954,1, 0x1ab095c,1, 0x1ab0a00,52, 0x1ab0c00,4, 0x1ab0d00,34, 0x1ab0e00,4, 0x1ab0e80,30, 0x1ab0f00,1, 0x1ab0f40,5, 0x1ab0f60,5, 0x1ab0f80,6, 0x1ab1000,14, 0x1ab1040,4, 0x1ab1060,17, 0x1ab10c0,6, 0x1ab10e0,1, 0x1ab10e8,2, 0x1ab10f4,11, 0x1ab1124,17, 0x1ab1200,3, 0x1ab1210,3, 0x1ab1220,3, 0x1ab1230,3, 0x1ab1240,3, 0x1ab1250,3, 0x1ab2000,20, 0x1ab2080,3, 0x1ab2090,1, 0x1ab2098,2, 0x1ac0000,500, 0x1ac0800,2, 0x1ac0820,15, 0x1ac1000,500, 0x1ac1800,8, 0x1ac1824,6, 0x1ac1840,8, 0x1ac1880,7, 0x1ac18a0,7, 0x1ac18c0,7, 0x1ac18e0,7, 0x1ac1900,8, 0x1ac1924,16, 0x1ac1980,12, 0x1ac2000,500, 0x1ac2800,2, 0x1ac2820,15, 0x1ac3000,500, 0x1ac3800,8, 0x1ac3824,6, 0x1ac3840,8, 0x1ac3880,7, 0x1ac38a0,7, 0x1ac38c0,7, 0x1ac38e0,7, 0x1ac3900,8, 0x1ac3924,16, 0x1ac3980,12, 0x1ac4004,5, 0x1ac4200,26, 0x1ac4280,4, 0x1ac42c0,25, 0x1ac4340,6, 0x1ac4360,1, 0x1ac4368,2, 0x1ac4374,11, 0x1ac43a4,10, 0x1ac4400,1, 0x1ac8000,52, 0x1ac8400,82, 0x1ac8560,6, 0x1ac8600,41, 0x1ac8700,2, 0x1ac8720,19, 0x1ac8800,25, 0x1ac8880,1, 0x1ac8900,28, 0x1ac8980,1, 0x1ac9000,52, 0x1ac9400,82, 0x1ac9560,6, 0x1ac9600,41, 0x1ac9700,2, 0x1ac9720,19, 0x1ac9800,25, 0x1ac9880,1, 0x1ac9900,28, 0x1ac9980,1, 0x1aca000,7, 0x1aca080,6, 0x1aca0a0,6, 0x1aca0c0,1, 0x1aca100,4, 0x1aca120,9, 0x1acc000,3, 0x1acc010,6, 0x1acc200,7, 0x1acc220,6, 0x1acc240,7, 0x1acc260,6, 0x1acc280,2, 0x1acc28c,2, 0x1acc2a0,2, 0x1acc2ac,2, 0x1acc2c0,7, 0x1acc2e0,7, 0x1acc300,2, 0x1acc30c,2, 0x1acc320,6, 0x1acc400,3, 0x1acc440,12, 0x1acc800,7, 0x1acc820,14, 0x1acc880,16, 0x1acc900,7, 0x1acc920,14, 0x1acc980,16, 0x1acca00,6, 0x1acca20,7, 0x1accc00,3, 0x1ae0000,3, 0x1ae0800,7, 0x1ae0820,6, 0x1ae0840,6, 0x1ae0880,1, 0x1ae0894,1, 0x1ae089c,2, 0x1ae08c0,9, 0x1ae0900,18, 0x1ae0a00,36, 0x1ae0b00,22, 0x1ae0b80,18, 0x1ae0c00,3, 0x1ae0c10,3, 0x1ae1000,3, 0x1ae1010,2, 0x1ae1080,20, 0x1ae1100,1, 0x1ae1200,26, 0x1ae1280,4, 0x1ae12c0,25, 0x1ae1340,6, 0x1ae1360,1, 0x1ae1368,2, 0x1ae1374,11, 0x1ae13a4,4, 0x1ae1400,1, 0x1af0000,11, 0x1af0030,19, 0x1af0080,17, 0x1af0100,11, 0x1af0130,19, 0x1af0180,17, 0x1af0200,3, 0x1af0214,1, 0x1af021c,1, 0x1af0280,3, 0x1af0294,1, 0x1af029c,1, 0x1af0300,18, 0x1af0380,18, 0x1af0400,18, 0x1af0480,18, 0x1af0500,18, 0x1af0580,18, 0x1af0600,18, 0x1af0680,18, 0x1af0700,13, 0x1af0738,6, 0x1af0780,13, 0x1af07b8,6, 0x1af0800,1, 0x1af0808,22, 0x1af0880,1, 0x1af0894,13, 0x1af0900,3, 0x1af0910,3, 0x1af0920,3, 0x1af0940,3, 0x1af0954,1, 0x1af095c,1, 0x1af0a00,52, 0x1af0c00,4, 0x1af0d00,34, 0x1af0e00,4, 0x1af0e80,30, 0x1af0f00,1, 0x1af0f40,5, 0x1af0f60,5, 0x1af0f80,6, 0x1af1000,14, 0x1af1040,4, 0x1af1060,17, 0x1af10c0,6, 0x1af10e0,1, 0x1af10e8,2, 0x1af10f4,11, 0x1af1124,17, 0x1af1200,3, 0x1af1210,3, 0x1af1220,3, 0x1af1230,3, 0x1af1240,3, 0x1af1250,3, 0x1af2000,20, 0x1af2080,3, 0x1af2090,1, 0x1af2098,2, 0x1b00000,13, 0x1b00038,4, 0x1b00050,3, 0x1b00060,3, 0x1b00070,16, 0x1b000c0,5, 0x1b00400,14, 0x1b00440,2, 0x1b0044c,3, 0x1b00480,14, 0x1b004c0,2, 0x1b004cc,3, 0x1b00500,1, 0x1b00508,15, 0x1b00560,2, 0x1b0056c,2, 0x1b00600,4, 0x1b00680,27, 0x1b00800,2, 0x1b00900,32, 0x1b00984,2, 0x1b00990,4, 0x1b00a00,26, 0x1b00a80,4, 0x1b00ac0,25, 0x1b00b40,6, 0x1b00b60,1, 0x1b00b68,2, 0x1b00b74,11, 0x1b00ba4,8, 0x1b00c00,9, 0x1b00c40,11, 0x1b00c80,23, 0x1b00ce0,15, 0x1b00d20,15, 0x1b00d60,1, 0x1b01000,13, 0x1b01038,4, 0x1b01050,3, 0x1b01060,3, 0x1b01070,16, 0x1b010c0,5, 0x1b01400,14, 0x1b01440,2, 0x1b0144c,3, 0x1b01480,14, 0x1b014c0,2, 0x1b014cc,3, 0x1b01500,1, 0x1b01508,15, 0x1b01560,2, 0x1b0156c,2, 0x1b01600,4, 0x1b01680,27, 0x1b01800,2, 0x1b01900,32, 0x1b01984,2, 0x1b01990,4, 0x1b01a00,26, 0x1b01a80,4, 0x1b01ac0,25, 0x1b01b40,6, 0x1b01b60,1, 0x1b01b68,2, 0x1b01b74,11, 0x1b01ba4,8, 0x1b01c00,9, 0x1b01c40,11, 0x1b01c80,23, 0x1b01ce0,15, 0x1b01d20,15, 0x1b01d60,1, 0x1b02000,1, 0x1b02100,36, 0x1b02200,7, 0x1b10000,22, 0x1b10080,22, 0x1b10100,12, 0x1b10140,12, 0x1b10200,52, 0x1b10300,52, 0x1b10400,11, 0x1b10440,11, 0x1b10480,3, 0x1b104a0,6, 0x1b104c0,6, 0x1b104e0,3, 0x1b104f0,3, 0x1b10800,9, 0x1b10840,15, 0x1b10880,15, 0x1b108c0,15, 0x1b10900,1, 0x1b10914,13, 0x1b10980,17, 0x1b11000,17, 0x1b11080,17, 0x1b11104,5, 0x1b11120,3, 0x1b11130,11, 0x1b11200,31, 0x1b11280,31, 0x1b11300,12, 0x1b11340,12, 0x1b11380,2, 0x1b11390,2, 0x1b113a0,3, 0x1b113b0,3, 0x1b113c0,5, 0x1b113e0,5, 0x1b11400,3, 0x1b11410,3, 0x1b11420,3, 0x1b11430,3, 0x1b11440,3, 0x1b11450,3, 0x1b11460,7, 0x1b11800,26, 0x1b11880,4, 0x1b118c0,25, 0x1b11940,6, 0x1b11960,1, 0x1b11968,2, 0x1b11974,11, 0x1b119a4,12, 0x1b11a00,4, 0x1b11b00,43, 0x1b11c00,4, 0x1b11c20,7, 0x1b11c40,3, 0x1b11c50,1, 0x1b11c60,3, 0x1b11e00,32, 0x1b11e84,1, 0x1b11e90,4, 0x1b11ea4,1, 0x1b11eb4,14, 0x1b11ef0,2, 0x1b11f04,1, 0x1b11f10,8, 0x1b11f34,6, 0x1b12000,3, 0x1b12010,21, 0x1b12080,1, 0x1b12094,1, 0x1b1209c,5, 0x1b12100,15, 0x1b12140,1, 0x1b12180,6, 0x1b14000,22, 0x1b14080,22, 0x1b14100,12, 0x1b14140,12, 0x1b14200,52, 0x1b14300,52, 0x1b14400,11, 0x1b14440,11, 0x1b14480,3, 0x1b144a0,6, 0x1b144c0,6, 0x1b144e0,3, 0x1b144f0,3, 0x1b14800,9, 0x1b14840,15, 0x1b14880,15, 0x1b148c0,15, 0x1b14900,1, 0x1b14914,13, 0x1b14980,17, 0x1b15000,17, 0x1b15080,17, 0x1b15104,5, 0x1b15120,3, 0x1b15130,11, 0x1b15200,31, 0x1b15280,31, 0x1b15300,12, 0x1b15340,12, 0x1b15380,2, 0x1b15390,2, 0x1b153a0,3, 0x1b153b0,3, 0x1b153c0,5, 0x1b153e0,5, 0x1b15400,3, 0x1b15410,3, 0x1b15420,3, 0x1b15430,3, 0x1b15440,3, 0x1b15450,3, 0x1b15460,7, 0x1b15800,26, 0x1b15880,4, 0x1b158c0,25, 0x1b15940,6, 0x1b15960,1, 0x1b15968,2, 0x1b15974,11, 0x1b159a4,12, 0x1b15a00,4, 0x1b15b00,43, 0x1b15c00,4, 0x1b15c20,7, 0x1b15c40,3, 0x1b15c50,1, 0x1b15c60,3, 0x1b15e00,32, 0x1b15e84,1, 0x1b15e90,4, 0x1b15ea4,1, 0x1b15eb4,14, 0x1b15ef0,2, 0x1b15f04,1, 0x1b15f10,8, 0x1b15f34,6, 0x1b16000,3, 0x1b16010,21, 0x1b16080,1, 0x1b16094,1, 0x1b1609c,5, 0x1b16100,15, 0x1b16140,1, 0x1b16180,6, 0x1b18000,100, 0x1b18200,3, 0x1b18210,5, 0x1b20000,12, 0x1b20040,2, 0x1b20050,3, 0x1b22000,1006, 0x1b23000,31, 0x1b23084,6, 0x1b24004,1, 0x1b2400c,3, 0x1b24200,23, 0x1b24280,23, 0x1b24300,1, 0x1b24400,1, 0x1b24800,122, 0x1b24a00,122, 0x1b24c04,63, 0x1b24d04,1, 0x1b24d10,5, 0x1b24d40,6, 0x1b24d60,5, 0x1b26000,1, 0x1b26100,1, 0x1b26108,3, 0x1b26120,2, 0x1b26134,8, 0x1b26160,2, 0x1b26174,8, 0x1b261a0,4, 0x1b26200,54, 0x1b26800,5, 0x1b26820,2, 0x1b26834,1, 0x1b2683c,1, 0x1b26a00,24, 0x1b26a80,24, 0x1b26b00,1, 0x1b26c00,6, 0x1b26c24,5, 0x1b26c40,16, 0x1b27000,1, 0x1b27020,5, 0x1b27040,1, 0x1b27048,2, 0x1b27080,1, 0x1b27100,4, 0x1b27180,24, 0x1b27200,4, 0x1b27280,27, 0x1b27300,2, 0x1b2730c,3, 0x1b28004,1, 0x1b2800c,3, 0x1b28020,1, 0x1b28100,2, 0x1b28110,3, 0x1b28120,2, 0x1b28140,10, 0x1b28180,13, 0x1b28200,2, 0x1b28210,3, 0x1b28220,2, 0x1b28240,10, 0x1b28280,13, 0x1b28400,14, 0x1b28440,3, 0x1b28450,3, 0x1b28460,1, 0x1b28500,36, 0x1b28600,10, 0x1b28640,5, 0x1b28660,5, 0x1b28700,27, 0x1b28780,7, 0x1b287a0,8, 0x1b28800,27, 0x1b28880,7, 0x1b288a0,8, 0x1b28900,27, 0x1b28980,7, 0x1b289a0,8, 0x1b28a00,27, 0x1b28a80,7, 0x1b28aa0,8, 0x1b28b00,48, 0x1b28bc4,8, 0x1b28bf0,30, 0x1b28c80,4, 0x1b28cc0,25, 0x1b28d40,6, 0x1b28d60,1, 0x1b28d68,2, 0x1b28d74,3, 0x1b28e00,8, 0x1b28e24,28, 0x1b29000,4, 0x1b29080,23, 0x1b29100,14, 0x1b29140,9, 0x1b29200,10, 0x1b29230,3, 0x1b29240,5, 0x1b29260,5, 0x1b29280,9, 0x1b29400,67, 0x1b29600,10, 0x1b30000,12, 0x1b30040,2, 0x1b30050,3, 0x1b32000,1006, 0x1b33000,31, 0x1b33084,6, 0x1b34004,1, 0x1b3400c,3, 0x1b34200,23, 0x1b34280,23, 0x1b34300,1, 0x1b34400,1, 0x1b34800,122, 0x1b34a00,122, 0x1b34c04,63, 0x1b34d04,1, 0x1b34d10,5, 0x1b34d40,6, 0x1b34d60,5, 0x1b36000,1, 0x1b36100,1, 0x1b36108,3, 0x1b36120,2, 0x1b36134,8, 0x1b36160,2, 0x1b36174,8, 0x1b361a0,4, 0x1b36200,54, 0x1b36800,5, 0x1b36820,2, 0x1b36834,1, 0x1b3683c,1, 0x1b36a00,24, 0x1b36a80,24, 0x1b36b00,1, 0x1b36c00,6, 0x1b36c24,5, 0x1b36c40,16, 0x1b37000,1, 0x1b37020,5, 0x1b37040,1, 0x1b37048,2, 0x1b37080,1, 0x1b37100,4, 0x1b37180,24, 0x1b37200,4, 0x1b37280,27, 0x1b37300,2, 0x1b3730c,3, 0x1b38004,1, 0x1b3800c,3, 0x1b38020,1, 0x1b38100,2, 0x1b38110,3, 0x1b38120,2, 0x1b38140,10, 0x1b38180,13, 0x1b38200,2, 0x1b38210,3, 0x1b38220,2, 0x1b38240,10, 0x1b38280,13, 0x1b38400,14, 0x1b38440,3, 0x1b38450,3, 0x1b38460,1, 0x1b38500,36, 0x1b38600,10, 0x1b38640,5, 0x1b38660,5, 0x1b38700,27, 0x1b38780,7, 0x1b387a0,8, 0x1b38800,27, 0x1b38880,7, 0x1b388a0,8, 0x1b38900,27, 0x1b38980,7, 0x1b389a0,8, 0x1b38a00,27, 0x1b38a80,7, 0x1b38aa0,8, 0x1b38b00,48, 0x1b38bc4,8, 0x1b38bf0,30, 0x1b38c80,4, 0x1b38cc0,25, 0x1b38d40,6, 0x1b38d60,1, 0x1b38d68,2, 0x1b38d74,3, 0x1b38e00,8, 0x1b38e24,28, 0x1b39000,4, 0x1b39080,23, 0x1b39100,14, 0x1b39140,9, 0x1b39200,10, 0x1b39230,3, 0x1b39240,5, 0x1b39260,5, 0x1b39280,9, 0x1b39400,67, 0x1b39600,10, 0x1c00000,1, 0x1c00020,3, 0x1c00030,2, 0x1c00040,3, 0x1c00050,2, 0x1c00800,53, 0x1c00900,3, 0x1c00910,13, 0x1c00a00,53, 0x1c00b00,3, 0x1c00b10,13, 0x1c00c00,5, 0x1c00c20,5, 0x1c00c40,18, 0x1c01000,6, 0x1c01020,4, 0x1c01040,16, 0x1c02000,20, 0x1c02080,15, 0x1c02100,20, 0x1c02180,15, 0x1c02200,23, 0x1c02260,7, 0x1c02400,11, 0x1c02430,3, 0x1c02440,3, 0x1c02450,3, 0x1c02460,24, 0x1c02500,11, 0x1c02530,3, 0x1c02540,3, 0x1c02550,3, 0x1c02560,24, 0x1c02600,11, 0x1c02630,3, 0x1c02640,3, 0x1c02650,3, 0x1c02660,24, 0x1c02700,11, 0x1c02730,3, 0x1c02740,3, 0x1c02750,3, 0x1c02760,24, 0x1c02800,4, 0x1c02820,16, 0x1c02880,10, 0x1c028c0,10, 0x1c02900,6, 0x1c02920,6, 0x1c02940,4, 0x1c02980,13, 0x1c029c0,13, 0x1c02a00,9, 0x1c03000,14, 0x1c03040,9, 0x1c03080,6, 0x1c030a0,1, 0x1c030a8,4, 0x1c03100,4, 0x1c03200,124, 0x1c03400,124, 0x1c03600,8, 0x1c03624,1, 0x1c03644,6, 0x1c03664,6, 0x1c03680,1, 0x1c03688,6, 0x1c036a8,22, 0x1c04000,1, 0x1c04020,3, 0x1c04030,2, 0x1c04040,3, 0x1c04050,2, 0x1c04800,53, 0x1c04900,3, 0x1c04910,13, 0x1c04a00,53, 0x1c04b00,3, 0x1c04b10,13, 0x1c04c00,5, 0x1c04c20,5, 0x1c04c40,18, 0x1c05000,6, 0x1c05020,4, 0x1c05040,16, 0x1c06000,20, 0x1c06080,15, 0x1c06100,20, 0x1c06180,15, 0x1c06200,23, 0x1c06260,7, 0x1c06400,11, 0x1c06430,3, 0x1c06440,3, 0x1c06450,3, 0x1c06460,24, 0x1c06500,11, 0x1c06530,3, 0x1c06540,3, 0x1c06550,3, 0x1c06560,24, 0x1c06600,11, 0x1c06630,3, 0x1c06640,3, 0x1c06650,3, 0x1c06660,24, 0x1c06700,11, 0x1c06730,3, 0x1c06740,3, 0x1c06750,3, 0x1c06760,24, 0x1c06800,4, 0x1c06820,16, 0x1c06880,10, 0x1c068c0,10, 0x1c06900,6, 0x1c06920,6, 0x1c06940,4, 0x1c06980,13, 0x1c069c0,13, 0x1c06a00,9, 0x1c07000,14, 0x1c07040,9, 0x1c07080,6, 0x1c070a0,1, 0x1c070a8,4, 0x1c07100,4, 0x1c07200,124, 0x1c07400,124, 0x1c07600,8, 0x1c07624,1, 0x1c07644,6, 0x1c07664,6, 0x1c07680,1, 0x1c07688,6, 0x1c076a8,22, 0x1c08000,84, 0x1c08180,20, 0x1c08200,5, 0x1c08400,11, 0x1c08440,11, 0x1c08480,19, 0x1c08500,19, 0x1c08580,24, 0x1c08600,13, 0x1c08800,84, 0x1c08980,20, 0x1c08a00,5, 0x1c08c00,11, 0x1c08c40,11, 0x1c08c80,19, 0x1c08d00,19, 0x1c08d80,24, 0x1c08e00,13, 0x1c09000,10, 0x1c09040,5, 0x1c09080,10, 0x1c090c0,5, 0x1c09100,5, 0x1c09200,11, 0x1c09230,3, 0x1c09240,5, 0x1c09260,5, 0x1c09280,32, 0x1c09400,13, 0x1c09440,13, 0x1c09480,9, 0x1c094c0,1, 0x1c094d0,5, 0x1c094f0,21, 0x1c09800,10, 0x1c09840,5, 0x1c09880,10, 0x1c098c0,5, 0x1c09900,5, 0x1c09a00,11, 0x1c09a30,3, 0x1c09a40,5, 0x1c09a60,5, 0x1c09a80,32, 0x1c09c00,13, 0x1c09c40,13, 0x1c09c80,9, 0x1c09cc0,1, 0x1c09cd0,5, 0x1c09cf0,21, 0x1c0a000,14, 0x1c0a040,9, 0x1c0a080,6, 0x1c0a0a0,1, 0x1c0a0a8,4, 0x1c0a100,7, 0x1c0a120,3, 0x1c0a130,25, 0x1c0c000,26, 0x1c0c06c,2, 0x1c0c080,3, 0x1c0c090,17, 0x1c0c100,26, 0x1c0c16c,2, 0x1c0c180,3, 0x1c0c190,17, 0x1c0c200,26, 0x1c0c26c,2, 0x1c0c280,3, 0x1c0c290,17, 0x1c0c300,26, 0x1c0c36c,2, 0x1c0c380,3, 0x1c0c390,17, 0x1c0c400,26, 0x1c0c46c,2, 0x1c0c480,3, 0x1c0c490,17, 0x1c0c500,26, 0x1c0c56c,2, 0x1c0c580,3, 0x1c0c590,17, 0x1c0c600,26, 0x1c0c66c,2, 0x1c0c680,3, 0x1c0c690,17, 0x1c0c700,26, 0x1c0c76c,2, 0x1c0c780,3, 0x1c0c790,17, 0x1c0c800,12, 0x1c0c844,1, 0x1c0c854,8, 0x1c0c880,7, 0x1c0c8a0,2, 0x1c0c8ac,2, 0x1c0c8c0,26, 0x1c0c980,4, 0x1c0c9a0,5, 0x1c0c9c0,1, 0x1c0d000,3, 0x1c0d010,3, 0x1c0d020,3, 0x1c0d030,3, 0x1c0d040,3, 0x1c0d050,3, 0x1c0d060,3, 0x1c0d070,3, 0x1c0d080,5, 0x1c0d0a0,5, 0x1c0d0c0,5, 0x1c0d0e0,5, 0x1c0d100,5, 0x1c0d120,5, 0x1c0d140,5, 0x1c0d160,5, 0x1c0d200,68, 0x1c0d400,1, 0x1c0d804,1, 0x1c0d844,54, 0x1c0da00,11, 0x1c0da40,11, 0x1c0da80,11, 0x1c0dac0,11, 0x1c0db00,11, 0x1c0db40,11, 0x1c0db80,11, 0x1c0dbc0,11, 0x1c0dc00,28, 0x1c0dc80,5, 0x1c0dca0,2, 0x1c0e000,4, 0x1c0e020,6, 0x1c0e040,6, 0x1c0e060,14, 0x1c0e100,26, 0x1c0e180,15, 0x1c0e200,14, 0x1c0e240,9, 0x1c0e280,6, 0x1c0e2a0,1, 0x1c0e2a8,4, 0x1c0e300,14, 0x1c0e340,9, 0x1c0e380,6, 0x1c0e3a0,4, 0x1c0e400,9, 0x1c20000,1, 0x1c21000,977, 0x1c22000,161, 0x1c23000,977, 0x1c24000,977, 0x1c25000,977, 0x1c26000,977, 0x1c27000,977, 0x1c28000,977, 0x1c29000,977, 0x1c2a000,977, 0x1c2b000,161, 0x1c2c000,12, 0x1c2c040,14, 0x1c2c080,20, 0x1c2c104,1, 0x1c2c10c,4, 0x1c2c200,12, 0x1c2c240,14, 0x1c2c280,20, 0x1c2c304,1, 0x1c2c30c,4, 0x1c2c400,12, 0x1c2c440,14, 0x1c2c480,20, 0x1c2c504,1, 0x1c2c50c,4, 0x1c2c600,12, 0x1c2c640,14, 0x1c2c680,20, 0x1c2c704,1, 0x1c2c70c,4, 0x1c2c800,12, 0x1c2c840,14, 0x1c2c880,20, 0x1c2c904,1, 0x1c2c90c,4, 0x1c2ca00,12, 0x1c2ca40,14, 0x1c2ca80,20, 0x1c2cb04,1, 0x1c2cb0c,4, 0x1c2cc00,12, 0x1c2cc40,14, 0x1c2cc80,20, 0x1c2cd04,1, 0x1c2cd0c,4, 0x1c2ce00,12, 0x1c2ce40,14, 0x1c2ce80,20, 0x1c2cf04,1, 0x1c2cf0c,4, 0x1c2d000,12, 0x1c2d040,14, 0x1c2d080,20, 0x1c2d104,1, 0x1c2d10c,4, 0x1c2d200,17, 0x1c2d250,2, 0x1c2d260,4, 0x1c2e000,1, 0x1c2e014,1, 0x1c2e01c,11, 0x1c2e060,9, 0x1c2e094,1, 0x1c2e09c,11, 0x1c2e0e0,15, 0x1c2e200,12, 0x1c2e240,13, 0x1c2e280,3, 0x1c2e290,1, 0x1c80000,500, 0x1c80800,2, 0x1c80820,15, 0x1c81000,500, 0x1c81800,8, 0x1c81824,6, 0x1c81840,8, 0x1c81880,7, 0x1c818a0,7, 0x1c818c0,7, 0x1c818e0,7, 0x1c81900,8, 0x1c81924,16, 0x1c81980,12, 0x1c82000,500, 0x1c82800,2, 0x1c82820,15, 0x1c83000,500, 0x1c83800,8, 0x1c83824,6, 0x1c83840,8, 0x1c83880,7, 0x1c838a0,7, 0x1c838c0,7, 0x1c838e0,7, 0x1c83900,8, 0x1c83924,16, 0x1c83980,12, 0x1c84004,5, 0x1c84200,26, 0x1c84280,4, 0x1c842c0,25, 0x1c84340,6, 0x1c84360,1, 0x1c84368,2, 0x1c84374,11, 0x1c843a4,10, 0x1c84400,1, 0x1c88000,52, 0x1c88400,82, 0x1c88560,6, 0x1c88600,41, 0x1c88700,2, 0x1c88720,19, 0x1c88800,25, 0x1c88880,1, 0x1c88900,28, 0x1c88980,1, 0x1c89000,52, 0x1c89400,82, 0x1c89560,6, 0x1c89600,41, 0x1c89700,2, 0x1c89720,19, 0x1c89800,25, 0x1c89880,1, 0x1c89900,28, 0x1c89980,1, 0x1c8a000,7, 0x1c8a080,6, 0x1c8a0a0,6, 0x1c8a0c0,1, 0x1c8a100,4, 0x1c8a120,9, 0x1c8c000,3, 0x1c8c010,6, 0x1c8c200,7, 0x1c8c220,6, 0x1c8c240,7, 0x1c8c260,6, 0x1c8c280,2, 0x1c8c28c,2, 0x1c8c2a0,2, 0x1c8c2ac,2, 0x1c8c2c0,7, 0x1c8c2e0,7, 0x1c8c300,2, 0x1c8c30c,2, 0x1c8c320,6, 0x1c8c400,3, 0x1c8c440,12, 0x1c8c800,7, 0x1c8c820,14, 0x1c8c880,16, 0x1c8c900,7, 0x1c8c920,14, 0x1c8c980,16, 0x1c8ca00,6, 0x1c8ca20,7, 0x1c8cc00,3, 0x1ca0000,3, 0x1ca0800,7, 0x1ca0820,6, 0x1ca0840,6, 0x1ca0880,1, 0x1ca0894,1, 0x1ca089c,2, 0x1ca08c0,9, 0x1ca0900,18, 0x1ca0a00,36, 0x1ca0b00,22, 0x1ca0b80,18, 0x1ca0c00,3, 0x1ca0c10,3, 0x1ca1000,3, 0x1ca1010,2, 0x1ca1080,20, 0x1ca1100,1, 0x1ca1200,26, 0x1ca1280,4, 0x1ca12c0,25, 0x1ca1340,6, 0x1ca1360,1, 0x1ca1368,2, 0x1ca1374,11, 0x1ca13a4,4, 0x1ca1400,1, 0x1cb0000,11, 0x1cb0030,19, 0x1cb0080,17, 0x1cb0100,11, 0x1cb0130,19, 0x1cb0180,17, 0x1cb0200,3, 0x1cb0214,1, 0x1cb021c,1, 0x1cb0280,3, 0x1cb0294,1, 0x1cb029c,1, 0x1cb0300,18, 0x1cb0380,18, 0x1cb0400,18, 0x1cb0480,18, 0x1cb0500,18, 0x1cb0580,18, 0x1cb0600,18, 0x1cb0680,18, 0x1cb0700,13, 0x1cb0738,6, 0x1cb0780,13, 0x1cb07b8,6, 0x1cb0800,1, 0x1cb0808,22, 0x1cb0880,1, 0x1cb0894,13, 0x1cb0900,3, 0x1cb0910,3, 0x1cb0920,3, 0x1cb0940,3, 0x1cb0954,1, 0x1cb095c,1, 0x1cb0a00,52, 0x1cb0c00,4, 0x1cb0d00,34, 0x1cb0e00,4, 0x1cb0e80,30, 0x1cb0f00,1, 0x1cb0f40,5, 0x1cb0f60,5, 0x1cb0f80,6, 0x1cb1000,14, 0x1cb1040,4, 0x1cb1060,17, 0x1cb10c0,6, 0x1cb10e0,1, 0x1cb10e8,2, 0x1cb10f4,11, 0x1cb1124,17, 0x1cb1200,3, 0x1cb1210,3, 0x1cb1220,3, 0x1cb1230,3, 0x1cb1240,3, 0x1cb1250,3, 0x1cb2000,20, 0x1cb2080,3, 0x1cb2090,1, 0x1cb2098,2, 0x1cc0000,500, 0x1cc0800,2, 0x1cc0820,15, 0x1cc1000,500, 0x1cc1800,8, 0x1cc1824,6, 0x1cc1840,8, 0x1cc1880,7, 0x1cc18a0,7, 0x1cc18c0,7, 0x1cc18e0,7, 0x1cc1900,8, 0x1cc1924,16, 0x1cc1980,12, 0x1cc2000,500, 0x1cc2800,2, 0x1cc2820,15, 0x1cc3000,500, 0x1cc3800,8, 0x1cc3824,6, 0x1cc3840,8, 0x1cc3880,7, 0x1cc38a0,7, 0x1cc38c0,7, 0x1cc38e0,7, 0x1cc3900,8, 0x1cc3924,16, 0x1cc3980,12, 0x1cc4004,5, 0x1cc4200,26, 0x1cc4280,4, 0x1cc42c0,25, 0x1cc4340,6, 0x1cc4360,1, 0x1cc4368,2, 0x1cc4374,11, 0x1cc43a4,10, 0x1cc4400,1, 0x1cc8000,52, 0x1cc8400,82, 0x1cc8560,6, 0x1cc8600,41, 0x1cc8700,2, 0x1cc8720,19, 0x1cc8800,25, 0x1cc8880,1, 0x1cc8900,28, 0x1cc8980,1, 0x1cc9000,52, 0x1cc9400,82, 0x1cc9560,6, 0x1cc9600,41, 0x1cc9700,2, 0x1cc9720,19, 0x1cc9800,25, 0x1cc9880,1, 0x1cc9900,28, 0x1cc9980,1, 0x1cca000,7, 0x1cca080,6, 0x1cca0a0,6, 0x1cca0c0,1, 0x1cca100,4, 0x1cca120,9, 0x1ccc000,3, 0x1ccc010,6, 0x1ccc200,7, 0x1ccc220,6, 0x1ccc240,7, 0x1ccc260,6, 0x1ccc280,2, 0x1ccc28c,2, 0x1ccc2a0,2, 0x1ccc2ac,2, 0x1ccc2c0,7, 0x1ccc2e0,7, 0x1ccc300,2, 0x1ccc30c,2, 0x1ccc320,6, 0x1ccc400,3, 0x1ccc440,12, 0x1ccc800,7, 0x1ccc820,14, 0x1ccc880,16, 0x1ccc900,7, 0x1ccc920,14, 0x1ccc980,16, 0x1ccca00,6, 0x1ccca20,7, 0x1cccc00,3, 0x1ce0000,3, 0x1ce0800,7, 0x1ce0820,6, 0x1ce0840,6, 0x1ce0880,1, 0x1ce0894,1, 0x1ce089c,2, 0x1ce08c0,9, 0x1ce0900,18, 0x1ce0a00,36, 0x1ce0b00,22, 0x1ce0b80,18, 0x1ce0c00,3, 0x1ce0c10,3, 0x1ce1000,3, 0x1ce1010,2, 0x1ce1080,20, 0x1ce1100,1, 0x1ce1200,26, 0x1ce1280,4, 0x1ce12c0,25, 0x1ce1340,6, 0x1ce1360,1, 0x1ce1368,2, 0x1ce1374,11, 0x1ce13a4,4, 0x1ce1400,1, 0x1cf0000,11, 0x1cf0030,19, 0x1cf0080,17, 0x1cf0100,11, 0x1cf0130,19, 0x1cf0180,17, 0x1cf0200,3, 0x1cf0214,1, 0x1cf021c,1, 0x1cf0280,3, 0x1cf0294,1, 0x1cf029c,1, 0x1cf0300,18, 0x1cf0380,18, 0x1cf0400,18, 0x1cf0480,18, 0x1cf0500,18, 0x1cf0580,18, 0x1cf0600,18, 0x1cf0680,18, 0x1cf0700,13, 0x1cf0738,6, 0x1cf0780,13, 0x1cf07b8,6, 0x1cf0800,1, 0x1cf0808,22, 0x1cf0880,1, 0x1cf0894,13, 0x1cf0900,3, 0x1cf0910,3, 0x1cf0920,3, 0x1cf0940,3, 0x1cf0954,1, 0x1cf095c,1, 0x1cf0a00,52, 0x1cf0c00,4, 0x1cf0d00,34, 0x1cf0e00,4, 0x1cf0e80,30, 0x1cf0f00,1, 0x1cf0f40,5, 0x1cf0f60,5, 0x1cf0f80,6, 0x1cf1000,14, 0x1cf1040,4, 0x1cf1060,17, 0x1cf10c0,6, 0x1cf10e0,1, 0x1cf10e8,2, 0x1cf10f4,11, 0x1cf1124,17, 0x1cf1200,3, 0x1cf1210,3, 0x1cf1220,3, 0x1cf1230,3, 0x1cf1240,3, 0x1cf1250,3, 0x1cf2000,20, 0x1cf2080,3, 0x1cf2090,1, 0x1cf2098,2, 0x1d00000,13, 0x1d00038,4, 0x1d00050,3, 0x1d00060,3, 0x1d00070,16, 0x1d000c0,5, 0x1d00400,14, 0x1d00440,2, 0x1d0044c,3, 0x1d00480,14, 0x1d004c0,2, 0x1d004cc,3, 0x1d00500,1, 0x1d00508,15, 0x1d00560,2, 0x1d0056c,2, 0x1d00600,4, 0x1d00680,27, 0x1d00800,2, 0x1d00900,32, 0x1d00984,2, 0x1d00990,4, 0x1d00a00,26, 0x1d00a80,4, 0x1d00ac0,25, 0x1d00b40,6, 0x1d00b60,1, 0x1d00b68,2, 0x1d00b74,11, 0x1d00ba4,8, 0x1d00c00,9, 0x1d00c40,11, 0x1d00c80,23, 0x1d00ce0,15, 0x1d00d20,15, 0x1d00d60,1, 0x1d01000,13, 0x1d01038,4, 0x1d01050,3, 0x1d01060,3, 0x1d01070,16, 0x1d010c0,5, 0x1d01400,14, 0x1d01440,2, 0x1d0144c,3, 0x1d01480,14, 0x1d014c0,2, 0x1d014cc,3, 0x1d01500,1, 0x1d01508,15, 0x1d01560,2, 0x1d0156c,2, 0x1d01600,4, 0x1d01680,27, 0x1d01800,2, 0x1d01900,32, 0x1d01984,2, 0x1d01990,4, 0x1d01a00,26, 0x1d01a80,4, 0x1d01ac0,25, 0x1d01b40,6, 0x1d01b60,1, 0x1d01b68,2, 0x1d01b74,11, 0x1d01ba4,8, 0x1d01c00,9, 0x1d01c40,11, 0x1d01c80,23, 0x1d01ce0,15, 0x1d01d20,15, 0x1d01d60,1, 0x1d02000,1, 0x1d02100,36, 0x1d02200,7, 0x1d10000,22, 0x1d10080,22, 0x1d10100,12, 0x1d10140,12, 0x1d10200,52, 0x1d10300,52, 0x1d10400,11, 0x1d10440,11, 0x1d10480,3, 0x1d104a0,6, 0x1d104c0,6, 0x1d104e0,3, 0x1d104f0,3, 0x1d10800,9, 0x1d10840,15, 0x1d10880,15, 0x1d108c0,15, 0x1d10900,1, 0x1d10914,13, 0x1d10980,17, 0x1d11000,17, 0x1d11080,17, 0x1d11104,5, 0x1d11120,3, 0x1d11130,11, 0x1d11200,31, 0x1d11280,31, 0x1d11300,12, 0x1d11340,12, 0x1d11380,2, 0x1d11390,2, 0x1d113a0,3, 0x1d113b0,3, 0x1d113c0,5, 0x1d113e0,5, 0x1d11400,3, 0x1d11410,3, 0x1d11420,3, 0x1d11430,3, 0x1d11440,3, 0x1d11450,3, 0x1d11460,7, 0x1d11800,26, 0x1d11880,4, 0x1d118c0,25, 0x1d11940,6, 0x1d11960,1, 0x1d11968,2, 0x1d11974,11, 0x1d119a4,12, 0x1d11a00,4, 0x1d11b00,43, 0x1d11c00,4, 0x1d11c20,7, 0x1d11c40,3, 0x1d11c50,1, 0x1d11c60,3, 0x1d11e00,32, 0x1d11e84,1, 0x1d11e90,4, 0x1d11ea4,1, 0x1d11eb4,14, 0x1d11ef0,2, 0x1d11f04,1, 0x1d11f10,8, 0x1d11f34,6, 0x1d12000,3, 0x1d12010,21, 0x1d12080,1, 0x1d12094,1, 0x1d1209c,5, 0x1d12100,15, 0x1d12140,1, 0x1d12180,6, 0x1d14000,22, 0x1d14080,22, 0x1d14100,12, 0x1d14140,12, 0x1d14200,52, 0x1d14300,52, 0x1d14400,11, 0x1d14440,11, 0x1d14480,3, 0x1d144a0,6, 0x1d144c0,6, 0x1d144e0,3, 0x1d144f0,3, 0x1d14800,9, 0x1d14840,15, 0x1d14880,15, 0x1d148c0,15, 0x1d14900,1, 0x1d14914,13, 0x1d14980,17, 0x1d15000,17, 0x1d15080,17, 0x1d15104,5, 0x1d15120,3, 0x1d15130,11, 0x1d15200,31, 0x1d15280,31, 0x1d15300,12, 0x1d15340,12, 0x1d15380,2, 0x1d15390,2, 0x1d153a0,3, 0x1d153b0,3, 0x1d153c0,5, 0x1d153e0,5, 0x1d15400,3, 0x1d15410,3, 0x1d15420,3, 0x1d15430,3, 0x1d15440,3, 0x1d15450,3, 0x1d15460,7, 0x1d15800,26, 0x1d15880,4, 0x1d158c0,25, 0x1d15940,6, 0x1d15960,1, 0x1d15968,2, 0x1d15974,11, 0x1d159a4,12, 0x1d15a00,4, 0x1d15b00,43, 0x1d15c00,4, 0x1d15c20,7, 0x1d15c40,3, 0x1d15c50,1, 0x1d15c60,3, 0x1d15e00,32, 0x1d15e84,1, 0x1d15e90,4, 0x1d15ea4,1, 0x1d15eb4,14, 0x1d15ef0,2, 0x1d15f04,1, 0x1d15f10,8, 0x1d15f34,6, 0x1d16000,3, 0x1d16010,21, 0x1d16080,1, 0x1d16094,1, 0x1d1609c,5, 0x1d16100,15, 0x1d16140,1, 0x1d16180,6, 0x1d18000,100, 0x1d18200,3, 0x1d18210,5, 0x1d20000,12, 0x1d20040,2, 0x1d20050,3, 0x1d22000,1006, 0x1d23000,31, 0x1d23084,6, 0x1d24004,1, 0x1d2400c,3, 0x1d24200,23, 0x1d24280,23, 0x1d24300,1, 0x1d24400,1, 0x1d24800,122, 0x1d24a00,122, 0x1d24c04,63, 0x1d24d04,1, 0x1d24d10,5, 0x1d24d40,6, 0x1d24d60,5, 0x1d26000,1, 0x1d26100,1, 0x1d26108,3, 0x1d26120,2, 0x1d26134,8, 0x1d26160,2, 0x1d26174,8, 0x1d261a0,4, 0x1d26200,54, 0x1d26800,5, 0x1d26820,2, 0x1d26834,1, 0x1d2683c,1, 0x1d26a00,24, 0x1d26a80,24, 0x1d26b00,1, 0x1d26c00,6, 0x1d26c24,5, 0x1d26c40,16, 0x1d27000,1, 0x1d27020,5, 0x1d27040,1, 0x1d27048,2, 0x1d27080,1, 0x1d27100,4, 0x1d27180,24, 0x1d27200,4, 0x1d27280,27, 0x1d27300,2, 0x1d2730c,3, 0x1d28004,1, 0x1d2800c,3, 0x1d28020,1, 0x1d28100,2, 0x1d28110,3, 0x1d28120,2, 0x1d28140,10, 0x1d28180,13, 0x1d28200,2, 0x1d28210,3, 0x1d28220,2, 0x1d28240,10, 0x1d28280,13, 0x1d28400,14, 0x1d28440,3, 0x1d28450,3, 0x1d28460,1, 0x1d28500,36, 0x1d28600,10, 0x1d28640,5, 0x1d28660,5, 0x1d28700,27, 0x1d28780,7, 0x1d287a0,8, 0x1d28800,27, 0x1d28880,7, 0x1d288a0,8, 0x1d28900,27, 0x1d28980,7, 0x1d289a0,8, 0x1d28a00,27, 0x1d28a80,7, 0x1d28aa0,8, 0x1d28b00,48, 0x1d28bc4,8, 0x1d28bf0,30, 0x1d28c80,4, 0x1d28cc0,25, 0x1d28d40,6, 0x1d28d60,1, 0x1d28d68,2, 0x1d28d74,3, 0x1d28e00,8, 0x1d28e24,28, 0x1d29000,4, 0x1d29080,23, 0x1d29100,14, 0x1d29140,9, 0x1d29200,10, 0x1d29230,3, 0x1d29240,5, 0x1d29260,5, 0x1d29280,9, 0x1d29400,67, 0x1d29600,10, 0x1d30000,12, 0x1d30040,2, 0x1d30050,3, 0x1d32000,1006, 0x1d33000,31, 0x1d33084,6, 0x1d34004,1, 0x1d3400c,3, 0x1d34200,23, 0x1d34280,23, 0x1d34300,1, 0x1d34400,1, 0x1d34800,122, 0x1d34a00,122, 0x1d34c04,63, 0x1d34d04,1, 0x1d34d10,5, 0x1d34d40,6, 0x1d34d60,5, 0x1d36000,1, 0x1d36100,1, 0x1d36108,3, 0x1d36120,2, 0x1d36134,8, 0x1d36160,2, 0x1d36174,8, 0x1d361a0,4, 0x1d36200,54, 0x1d36800,5, 0x1d36820,2, 0x1d36834,1, 0x1d3683c,1, 0x1d36a00,24, 0x1d36a80,24, 0x1d36b00,1, 0x1d36c00,6, 0x1d36c24,5, 0x1d36c40,16, 0x1d37000,1, 0x1d37020,5, 0x1d37040,1, 0x1d37048,2, 0x1d37080,1, 0x1d37100,4, 0x1d37180,24, 0x1d37200,4, 0x1d37280,27, 0x1d37300,2, 0x1d3730c,3, 0x1d38004,1, 0x1d3800c,3, 0x1d38020,1, 0x1d38100,2, 0x1d38110,3, 0x1d38120,2, 0x1d38140,10, 0x1d38180,13, 0x1d38200,2, 0x1d38210,3, 0x1d38220,2, 0x1d38240,10, 0x1d38280,13, 0x1d38400,14, 0x1d38440,3, 0x1d38450,3, 0x1d38460,1, 0x1d38500,36, 0x1d38600,10, 0x1d38640,5, 0x1d38660,5, 0x1d38700,27, 0x1d38780,7, 0x1d387a0,8, 0x1d38800,27, 0x1d38880,7, 0x1d388a0,8, 0x1d38900,27, 0x1d38980,7, 0x1d389a0,8, 0x1d38a00,27, 0x1d38a80,7, 0x1d38aa0,8, 0x1d38b00,48, 0x1d38bc4,8, 0x1d38bf0,30, 0x1d38c80,4, 0x1d38cc0,25, 0x1d38d40,6, 0x1d38d60,1, 0x1d38d68,2, 0x1d38d74,3, 0x1d38e00,8, 0x1d38e24,28, 0x1d39000,4, 0x1d39080,23, 0x1d39100,14, 0x1d39140,9, 0x1d39200,10, 0x1d39230,3, 0x1d39240,5, 0x1d39260,5, 0x1d39280,9, 0x1d39400,67, 0x1d39600,10, 0x1e00000,1, 0x1e00020,3, 0x1e00030,2, 0x1e00040,3, 0x1e00050,2, 0x1e00800,53, 0x1e00900,3, 0x1e00910,13, 0x1e00a00,53, 0x1e00b00,3, 0x1e00b10,13, 0x1e00c00,5, 0x1e00c20,5, 0x1e00c40,18, 0x1e01000,6, 0x1e01020,4, 0x1e01040,16, 0x1e02000,20, 0x1e02080,15, 0x1e02100,20, 0x1e02180,15, 0x1e02200,23, 0x1e02260,7, 0x1e02400,11, 0x1e02430,3, 0x1e02440,3, 0x1e02450,3, 0x1e02460,24, 0x1e02500,11, 0x1e02530,3, 0x1e02540,3, 0x1e02550,3, 0x1e02560,24, 0x1e02600,11, 0x1e02630,3, 0x1e02640,3, 0x1e02650,3, 0x1e02660,24, 0x1e02700,11, 0x1e02730,3, 0x1e02740,3, 0x1e02750,3, 0x1e02760,24, 0x1e02800,4, 0x1e02820,16, 0x1e02880,10, 0x1e028c0,10, 0x1e02900,6, 0x1e02920,6, 0x1e02940,4, 0x1e02980,13, 0x1e029c0,13, 0x1e02a00,9, 0x1e03000,14, 0x1e03040,9, 0x1e03080,6, 0x1e030a0,1, 0x1e030a8,4, 0x1e03100,4, 0x1e03200,124, 0x1e03400,124, 0x1e03600,8, 0x1e03624,1, 0x1e03644,6, 0x1e03664,6, 0x1e03680,1, 0x1e03688,6, 0x1e036a8,22, 0x1e04000,1, 0x1e04020,3, 0x1e04030,2, 0x1e04040,3, 0x1e04050,2, 0x1e04800,53, 0x1e04900,3, 0x1e04910,13, 0x1e04a00,53, 0x1e04b00,3, 0x1e04b10,13, 0x1e04c00,5, 0x1e04c20,5, 0x1e04c40,18, 0x1e05000,6, 0x1e05020,4, 0x1e05040,16, 0x1e06000,20, 0x1e06080,15, 0x1e06100,20, 0x1e06180,15, 0x1e06200,23, 0x1e06260,7, 0x1e06400,11, 0x1e06430,3, 0x1e06440,3, 0x1e06450,3, 0x1e06460,24, 0x1e06500,11, 0x1e06530,3, 0x1e06540,3, 0x1e06550,3, 0x1e06560,24, 0x1e06600,11, 0x1e06630,3, 0x1e06640,3, 0x1e06650,3, 0x1e06660,24, 0x1e06700,11, 0x1e06730,3, 0x1e06740,3, 0x1e06750,3, 0x1e06760,24, 0x1e06800,4, 0x1e06820,16, 0x1e06880,10, 0x1e068c0,10, 0x1e06900,6, 0x1e06920,6, 0x1e06940,4, 0x1e06980,13, 0x1e069c0,13, 0x1e06a00,9, 0x1e07000,14, 0x1e07040,9, 0x1e07080,6, 0x1e070a0,1, 0x1e070a8,4, 0x1e07100,4, 0x1e07200,124, 0x1e07400,124, 0x1e07600,8, 0x1e07624,1, 0x1e07644,6, 0x1e07664,6, 0x1e07680,1, 0x1e07688,6, 0x1e076a8,22, 0x1e08000,84, 0x1e08180,20, 0x1e08200,5, 0x1e08400,11, 0x1e08440,11, 0x1e08480,19, 0x1e08500,19, 0x1e08580,24, 0x1e08600,13, 0x1e08800,84, 0x1e08980,20, 0x1e08a00,5, 0x1e08c00,11, 0x1e08c40,11, 0x1e08c80,19, 0x1e08d00,19, 0x1e08d80,24, 0x1e08e00,13, 0x1e09000,10, 0x1e09040,5, 0x1e09080,10, 0x1e090c0,5, 0x1e09100,5, 0x1e09200,11, 0x1e09230,3, 0x1e09240,5, 0x1e09260,5, 0x1e09280,32, 0x1e09400,13, 0x1e09440,13, 0x1e09480,9, 0x1e094c0,1, 0x1e094d0,5, 0x1e094f0,21, 0x1e09800,10, 0x1e09840,5, 0x1e09880,10, 0x1e098c0,5, 0x1e09900,5, 0x1e09a00,11, 0x1e09a30,3, 0x1e09a40,5, 0x1e09a60,5, 0x1e09a80,32, 0x1e09c00,13, 0x1e09c40,13, 0x1e09c80,9, 0x1e09cc0,1, 0x1e09cd0,5, 0x1e09cf0,21, 0x1e0a000,14, 0x1e0a040,9, 0x1e0a080,6, 0x1e0a0a0,1, 0x1e0a0a8,4, 0x1e0a100,7, 0x1e0a120,3, 0x1e0a130,25, 0x1e0c000,26, 0x1e0c06c,2, 0x1e0c080,3, 0x1e0c090,17, 0x1e0c100,26, 0x1e0c16c,2, 0x1e0c180,3, 0x1e0c190,17, 0x1e0c200,26, 0x1e0c26c,2, 0x1e0c280,3, 0x1e0c290,17, 0x1e0c300,26, 0x1e0c36c,2, 0x1e0c380,3, 0x1e0c390,17, 0x1e0c400,26, 0x1e0c46c,2, 0x1e0c480,3, 0x1e0c490,17, 0x1e0c500,26, 0x1e0c56c,2, 0x1e0c580,3, 0x1e0c590,17, 0x1e0c600,26, 0x1e0c66c,2, 0x1e0c680,3, 0x1e0c690,17, 0x1e0c700,26, 0x1e0c76c,2, 0x1e0c780,3, 0x1e0c790,17, 0x1e0c800,12, 0x1e0c844,1, 0x1e0c854,8, 0x1e0c880,7, 0x1e0c8a0,2, 0x1e0c8ac,2, 0x1e0c8c0,26, 0x1e0c980,4, 0x1e0c9a0,5, 0x1e0c9c0,1, 0x1e0d000,3, 0x1e0d010,3, 0x1e0d020,3, 0x1e0d030,3, 0x1e0d040,3, 0x1e0d050,3, 0x1e0d060,3, 0x1e0d070,3, 0x1e0d080,5, 0x1e0d0a0,5, 0x1e0d0c0,5, 0x1e0d0e0,5, 0x1e0d100,5, 0x1e0d120,5, 0x1e0d140,5, 0x1e0d160,5, 0x1e0d200,68, 0x1e0d400,1, 0x1e0d804,1, 0x1e0d844,54, 0x1e0da00,11, 0x1e0da40,11, 0x1e0da80,11, 0x1e0dac0,11, 0x1e0db00,11, 0x1e0db40,11, 0x1e0db80,11, 0x1e0dbc0,11, 0x1e0dc00,28, 0x1e0dc80,5, 0x1e0dca0,2, 0x1e0e000,4, 0x1e0e020,6, 0x1e0e040,6, 0x1e0e060,14, 0x1e0e100,26, 0x1e0e180,15, 0x1e0e200,14, 0x1e0e240,9, 0x1e0e280,6, 0x1e0e2a0,1, 0x1e0e2a8,4, 0x1e0e300,14, 0x1e0e340,9, 0x1e0e380,6, 0x1e0e3a0,4, 0x1e0e400,9, 0x1e20000,1, 0x1e21000,977, 0x1e22000,161, 0x1e23000,977, 0x1e24000,977, 0x1e25000,977, 0x1e26000,977, 0x1e27000,977, 0x1e28000,977, 0x1e29000,977, 0x1e2a000,977, 0x1e2b000,161, 0x1e2c000,12, 0x1e2c040,14, 0x1e2c080,20, 0x1e2c104,1, 0x1e2c10c,4, 0x1e2c200,12, 0x1e2c240,14, 0x1e2c280,20, 0x1e2c304,1, 0x1e2c30c,4, 0x1e2c400,12, 0x1e2c440,14, 0x1e2c480,20, 0x1e2c504,1, 0x1e2c50c,4, 0x1e2c600,12, 0x1e2c640,14, 0x1e2c680,20, 0x1e2c704,1, 0x1e2c70c,4, 0x1e2c800,12, 0x1e2c840,14, 0x1e2c880,20, 0x1e2c904,1, 0x1e2c90c,4, 0x1e2ca00,12, 0x1e2ca40,14, 0x1e2ca80,20, 0x1e2cb04,1, 0x1e2cb0c,4, 0x1e2cc00,12, 0x1e2cc40,14, 0x1e2cc80,20, 0x1e2cd04,1, 0x1e2cd0c,4, 0x1e2ce00,12, 0x1e2ce40,14, 0x1e2ce80,20, 0x1e2cf04,1, 0x1e2cf0c,4, 0x1e2d000,12, 0x1e2d040,14, 0x1e2d080,20, 0x1e2d104,1, 0x1e2d10c,4, 0x1e2d200,17, 0x1e2d250,2, 0x1e2d260,4, 0x1e2e000,1, 0x1e2e014,1, 0x1e2e01c,11, 0x1e2e060,9, 0x1e2e094,1, 0x1e2e09c,11, 0x1e2e0e0,15, 0x1e2e200,12, 0x1e2e240,13, 0x1e2e280,3, 0x1e2e290,1, 0x1e80000,500, 0x1e80800,2, 0x1e80820,15, 0x1e81000,500, 0x1e81800,8, 0x1e81824,6, 0x1e81840,8, 0x1e81880,7, 0x1e818a0,7, 0x1e818c0,7, 0x1e818e0,7, 0x1e81900,8, 0x1e81924,16, 0x1e81980,12, 0x1e82000,500, 0x1e82800,2, 0x1e82820,15, 0x1e83000,500, 0x1e83800,8, 0x1e83824,6, 0x1e83840,8, 0x1e83880,7, 0x1e838a0,7, 0x1e838c0,7, 0x1e838e0,7, 0x1e83900,8, 0x1e83924,16, 0x1e83980,12, 0x1e84004,5, 0x1e84200,26, 0x1e84280,4, 0x1e842c0,25, 0x1e84340,6, 0x1e84360,1, 0x1e84368,2, 0x1e84374,11, 0x1e843a4,10, 0x1e84400,1, 0x1e88000,52, 0x1e88400,82, 0x1e88560,6, 0x1e88600,41, 0x1e88700,2, 0x1e88720,19, 0x1e88800,25, 0x1e88880,1, 0x1e88900,28, 0x1e88980,1, 0x1e89000,52, 0x1e89400,82, 0x1e89560,6, 0x1e89600,41, 0x1e89700,2, 0x1e89720,19, 0x1e89800,25, 0x1e89880,1, 0x1e89900,28, 0x1e89980,1, 0x1e8a000,7, 0x1e8a080,6, 0x1e8a0a0,6, 0x1e8a0c0,1, 0x1e8a100,4, 0x1e8a120,9, 0x1e8c000,3, 0x1e8c010,6, 0x1e8c200,7, 0x1e8c220,6, 0x1e8c240,7, 0x1e8c260,6, 0x1e8c280,2, 0x1e8c28c,2, 0x1e8c2a0,2, 0x1e8c2ac,2, 0x1e8c2c0,7, 0x1e8c2e0,7, 0x1e8c300,2, 0x1e8c30c,2, 0x1e8c320,6, 0x1e8c400,3, 0x1e8c440,12, 0x1e8c800,7, 0x1e8c820,14, 0x1e8c880,16, 0x1e8c900,7, 0x1e8c920,14, 0x1e8c980,16, 0x1e8ca00,6, 0x1e8ca20,7, 0x1e8cc00,3, 0x1ea0000,3, 0x1ea0800,7, 0x1ea0820,6, 0x1ea0840,6, 0x1ea0880,1, 0x1ea0894,1, 0x1ea089c,2, 0x1ea08c0,9, 0x1ea0900,18, 0x1ea0a00,36, 0x1ea0b00,22, 0x1ea0b80,18, 0x1ea0c00,3, 0x1ea0c10,3, 0x1ea1000,3, 0x1ea1010,2, 0x1ea1080,20, 0x1ea1100,1, 0x1ea1200,26, 0x1ea1280,4, 0x1ea12c0,25, 0x1ea1340,6, 0x1ea1360,1, 0x1ea1368,2, 0x1ea1374,11, 0x1ea13a4,4, 0x1ea1400,1, 0x1eb0000,11, 0x1eb0030,19, 0x1eb0080,17, 0x1eb0100,11, 0x1eb0130,19, 0x1eb0180,17, 0x1eb0200,3, 0x1eb0214,1, 0x1eb021c,1, 0x1eb0280,3, 0x1eb0294,1, 0x1eb029c,1, 0x1eb0300,18, 0x1eb0380,18, 0x1eb0400,18, 0x1eb0480,18, 0x1eb0500,18, 0x1eb0580,18, 0x1eb0600,18, 0x1eb0680,18, 0x1eb0700,13, 0x1eb0738,6, 0x1eb0780,13, 0x1eb07b8,6, 0x1eb0800,1, 0x1eb0808,22, 0x1eb0880,1, 0x1eb0894,13, 0x1eb0900,3, 0x1eb0910,3, 0x1eb0920,3, 0x1eb0940,3, 0x1eb0954,1, 0x1eb095c,1, 0x1eb0a00,52, 0x1eb0c00,4, 0x1eb0d00,34, 0x1eb0e00,4, 0x1eb0e80,30, 0x1eb0f00,1, 0x1eb0f40,5, 0x1eb0f60,5, 0x1eb0f80,6, 0x1eb1000,14, 0x1eb1040,4, 0x1eb1060,17, 0x1eb10c0,6, 0x1eb10e0,1, 0x1eb10e8,2, 0x1eb10f4,11, 0x1eb1124,17, 0x1eb1200,3, 0x1eb1210,3, 0x1eb1220,3, 0x1eb1230,3, 0x1eb1240,3, 0x1eb1250,3, 0x1eb2000,20, 0x1eb2080,3, 0x1eb2090,1, 0x1eb2098,2, 0x1ec0000,500, 0x1ec0800,2, 0x1ec0820,15, 0x1ec1000,500, 0x1ec1800,8, 0x1ec1824,6, 0x1ec1840,8, 0x1ec1880,7, 0x1ec18a0,7, 0x1ec18c0,7, 0x1ec18e0,7, 0x1ec1900,8, 0x1ec1924,16, 0x1ec1980,12, 0x1ec2000,500, 0x1ec2800,2, 0x1ec2820,15, 0x1ec3000,500, 0x1ec3800,8, 0x1ec3824,6, 0x1ec3840,8, 0x1ec3880,7, 0x1ec38a0,7, 0x1ec38c0,7, 0x1ec38e0,7, 0x1ec3900,8, 0x1ec3924,16, 0x1ec3980,12, 0x1ec4004,5, 0x1ec4200,26, 0x1ec4280,4, 0x1ec42c0,25, 0x1ec4340,6, 0x1ec4360,1, 0x1ec4368,2, 0x1ec4374,11, 0x1ec43a4,10, 0x1ec4400,1, 0x1ec8000,52, 0x1ec8400,82, 0x1ec8560,6, 0x1ec8600,41, 0x1ec8700,2, 0x1ec8720,19, 0x1ec8800,25, 0x1ec8880,1, 0x1ec8900,28, 0x1ec8980,1, 0x1ec9000,52, 0x1ec9400,82, 0x1ec9560,6, 0x1ec9600,41, 0x1ec9700,2, 0x1ec9720,19, 0x1ec9800,25, 0x1ec9880,1, 0x1ec9900,28, 0x1ec9980,1, 0x1eca000,7, 0x1eca080,6, 0x1eca0a0,6, 0x1eca0c0,1, 0x1eca100,4, 0x1eca120,9, 0x1ecc000,3, 0x1ecc010,6, 0x1ecc200,7, 0x1ecc220,6, 0x1ecc240,7, 0x1ecc260,6, 0x1ecc280,2, 0x1ecc28c,2, 0x1ecc2a0,2, 0x1ecc2ac,2, 0x1ecc2c0,7, 0x1ecc2e0,7, 0x1ecc300,2, 0x1ecc30c,2, 0x1ecc320,6, 0x1ecc400,3, 0x1ecc440,12, 0x1ecc800,7, 0x1ecc820,14, 0x1ecc880,16, 0x1ecc900,7, 0x1ecc920,14, 0x1ecc980,16, 0x1ecca00,6, 0x1ecca20,7, 0x1eccc00,3, 0x1ee0000,3, 0x1ee0800,7, 0x1ee0820,6, 0x1ee0840,6, 0x1ee0880,1, 0x1ee0894,1, 0x1ee089c,2, 0x1ee08c0,9, 0x1ee0900,18, 0x1ee0a00,36, 0x1ee0b00,22, 0x1ee0b80,18, 0x1ee0c00,3, 0x1ee0c10,3, 0x1ee1000,3, 0x1ee1010,2, 0x1ee1080,20, 0x1ee1100,1, 0x1ee1200,26, 0x1ee1280,4, 0x1ee12c0,25, 0x1ee1340,6, 0x1ee1360,1, 0x1ee1368,2, 0x1ee1374,11, 0x1ee13a4,4, 0x1ee1400,1, 0x1ef0000,11, 0x1ef0030,19, 0x1ef0080,17, 0x1ef0100,11, 0x1ef0130,19, 0x1ef0180,17, 0x1ef0200,3, 0x1ef0214,1, 0x1ef021c,1, 0x1ef0280,3, 0x1ef0294,1, 0x1ef029c,1, 0x1ef0300,18, 0x1ef0380,18, 0x1ef0400,18, 0x1ef0480,18, 0x1ef0500,18, 0x1ef0580,18, 0x1ef0600,18, 0x1ef0680,18, 0x1ef0700,13, 0x1ef0738,6, 0x1ef0780,13, 0x1ef07b8,6, 0x1ef0800,1, 0x1ef0808,22, 0x1ef0880,1, 0x1ef0894,13, 0x1ef0900,3, 0x1ef0910,3, 0x1ef0920,3, 0x1ef0940,3, 0x1ef0954,1, 0x1ef095c,1, 0x1ef0a00,52, 0x1ef0c00,4, 0x1ef0d00,34, 0x1ef0e00,4, 0x1ef0e80,30, 0x1ef0f00,1, 0x1ef0f40,5, 0x1ef0f60,5, 0x1ef0f80,6, 0x1ef1000,14, 0x1ef1040,4, 0x1ef1060,17, 0x1ef10c0,6, 0x1ef10e0,1, 0x1ef10e8,2, 0x1ef10f4,11, 0x1ef1124,17, 0x1ef1200,3, 0x1ef1210,3, 0x1ef1220,3, 0x1ef1230,3, 0x1ef1240,3, 0x1ef1250,3, 0x1ef2000,20, 0x1ef2080,3, 0x1ef2090,1, 0x1ef2098,2, 0x1f00000,13, 0x1f00038,4, 0x1f00050,3, 0x1f00060,3, 0x1f00070,16, 0x1f000c0,5, 0x1f00400,14, 0x1f00440,2, 0x1f0044c,3, 0x1f00480,14, 0x1f004c0,2, 0x1f004cc,3, 0x1f00500,1, 0x1f00508,15, 0x1f00560,2, 0x1f0056c,2, 0x1f00600,4, 0x1f00680,27, 0x1f00800,2, 0x1f00900,32, 0x1f00984,2, 0x1f00990,4, 0x1f00a00,26, 0x1f00a80,4, 0x1f00ac0,25, 0x1f00b40,6, 0x1f00b60,1, 0x1f00b68,2, 0x1f00b74,11, 0x1f00ba4,8, 0x1f00c00,9, 0x1f00c40,11, 0x1f00c80,23, 0x1f00ce0,15, 0x1f00d20,15, 0x1f00d60,1, 0x1f01000,13, 0x1f01038,4, 0x1f01050,3, 0x1f01060,3, 0x1f01070,16, 0x1f010c0,5, 0x1f01400,14, 0x1f01440,2, 0x1f0144c,3, 0x1f01480,14, 0x1f014c0,2, 0x1f014cc,3, 0x1f01500,1, 0x1f01508,15, 0x1f01560,2, 0x1f0156c,2, 0x1f01600,4, 0x1f01680,27, 0x1f01800,2, 0x1f01900,32, 0x1f01984,2, 0x1f01990,4, 0x1f01a00,26, 0x1f01a80,4, 0x1f01ac0,25, 0x1f01b40,6, 0x1f01b60,1, 0x1f01b68,2, 0x1f01b74,11, 0x1f01ba4,8, 0x1f01c00,9, 0x1f01c40,11, 0x1f01c80,23, 0x1f01ce0,15, 0x1f01d20,15, 0x1f01d60,1, 0x1f02000,1, 0x1f02100,36, 0x1f02200,7, 0x1f10000,22, 0x1f10080,22, 0x1f10100,12, 0x1f10140,12, 0x1f10200,52, 0x1f10300,52, 0x1f10400,11, 0x1f10440,11, 0x1f10480,3, 0x1f104a0,6, 0x1f104c0,6, 0x1f104e0,3, 0x1f104f0,3, 0x1f10800,9, 0x1f10840,15, 0x1f10880,15, 0x1f108c0,15, 0x1f10900,1, 0x1f10914,13, 0x1f10980,17, 0x1f11000,17, 0x1f11080,17, 0x1f11104,5, 0x1f11120,3, 0x1f11130,11, 0x1f11200,31, 0x1f11280,31, 0x1f11300,12, 0x1f11340,12, 0x1f11380,2, 0x1f11390,2, 0x1f113a0,3, 0x1f113b0,3, 0x1f113c0,5, 0x1f113e0,5, 0x1f11400,3, 0x1f11410,3, 0x1f11420,3, 0x1f11430,3, 0x1f11440,3, 0x1f11450,3, 0x1f11460,7, 0x1f11800,26, 0x1f11880,4, 0x1f118c0,25, 0x1f11940,6, 0x1f11960,1, 0x1f11968,2, 0x1f11974,11, 0x1f119a4,12, 0x1f11a00,4, 0x1f11b00,43, 0x1f11c00,4, 0x1f11c20,7, 0x1f11c40,3, 0x1f11c50,1, 0x1f11c60,3, 0x1f11e00,32, 0x1f11e84,1, 0x1f11e90,4, 0x1f11ea4,1, 0x1f11eb4,14, 0x1f11ef0,2, 0x1f11f04,1, 0x1f11f10,8, 0x1f11f34,6, 0x1f12000,3, 0x1f12010,21, 0x1f12080,1, 0x1f12094,1, 0x1f1209c,5, 0x1f12100,15, 0x1f12140,1, 0x1f12180,6, 0x1f14000,22, 0x1f14080,22, 0x1f14100,12, 0x1f14140,12, 0x1f14200,52, 0x1f14300,52, 0x1f14400,11, 0x1f14440,11, 0x1f14480,3, 0x1f144a0,6, 0x1f144c0,6, 0x1f144e0,3, 0x1f144f0,3, 0x1f14800,9, 0x1f14840,15, 0x1f14880,15, 0x1f148c0,15, 0x1f14900,1, 0x1f14914,13, 0x1f14980,17, 0x1f15000,17, 0x1f15080,17, 0x1f15104,5, 0x1f15120,3, 0x1f15130,11, 0x1f15200,31, 0x1f15280,31, 0x1f15300,12, 0x1f15340,12, 0x1f15380,2, 0x1f15390,2, 0x1f153a0,3, 0x1f153b0,3, 0x1f153c0,5, 0x1f153e0,5, 0x1f15400,3, 0x1f15410,3, 0x1f15420,3, 0x1f15430,3, 0x1f15440,3, 0x1f15450,3, 0x1f15460,7, 0x1f15800,26, 0x1f15880,4, 0x1f158c0,25, 0x1f15940,6, 0x1f15960,1, 0x1f15968,2, 0x1f15974,11, 0x1f159a4,12, 0x1f15a00,4, 0x1f15b00,43, 0x1f15c00,4, 0x1f15c20,7, 0x1f15c40,3, 0x1f15c50,1, 0x1f15c60,3, 0x1f15e00,32, 0x1f15e84,1, 0x1f15e90,4, 0x1f15ea4,1, 0x1f15eb4,14, 0x1f15ef0,2, 0x1f15f04,1, 0x1f15f10,8, 0x1f15f34,6, 0x1f16000,3, 0x1f16010,21, 0x1f16080,1, 0x1f16094,1, 0x1f1609c,5, 0x1f16100,15, 0x1f16140,1, 0x1f16180,6, 0x1f18000,100, 0x1f18200,3, 0x1f18210,5, 0x1f20000,12, 0x1f20040,2, 0x1f20050,3, 0x1f22000,1006, 0x1f23000,31, 0x1f23084,6, 0x1f24004,1, 0x1f2400c,3, 0x1f24200,23, 0x1f24280,23, 0x1f24300,1, 0x1f24400,1, 0x1f24800,122, 0x1f24a00,122, 0x1f24c04,63, 0x1f24d04,1, 0x1f24d10,5, 0x1f24d40,6, 0x1f24d60,5, 0x1f26000,1, 0x1f26100,1, 0x1f26108,3, 0x1f26120,2, 0x1f26134,8, 0x1f26160,2, 0x1f26174,8, 0x1f261a0,4, 0x1f26200,54, 0x1f26800,5, 0x1f26820,2, 0x1f26834,1, 0x1f2683c,1, 0x1f26a00,24, 0x1f26a80,24, 0x1f26b00,1, 0x1f26c00,6, 0x1f26c24,5, 0x1f26c40,16, 0x1f27000,1, 0x1f27020,5, 0x1f27040,1, 0x1f27048,2, 0x1f27080,1, 0x1f27100,4, 0x1f27180,24, 0x1f27200,4, 0x1f27280,27, 0x1f27300,2, 0x1f2730c,3, 0x1f28004,1, 0x1f2800c,3, 0x1f28020,1, 0x1f28100,2, 0x1f28110,3, 0x1f28120,2, 0x1f28140,10, 0x1f28180,13, 0x1f28200,2, 0x1f28210,3, 0x1f28220,2, 0x1f28240,10, 0x1f28280,13, 0x1f28400,14, 0x1f28440,3, 0x1f28450,3, 0x1f28460,1, 0x1f28500,36, 0x1f28600,10, 0x1f28640,5, 0x1f28660,5, 0x1f28700,27, 0x1f28780,7, 0x1f287a0,8, 0x1f28800,27, 0x1f28880,7, 0x1f288a0,8, 0x1f28900,27, 0x1f28980,7, 0x1f289a0,8, 0x1f28a00,27, 0x1f28a80,7, 0x1f28aa0,8, 0x1f28b00,48, 0x1f28bc4,8, 0x1f28bf0,30, 0x1f28c80,4, 0x1f28cc0,25, 0x1f28d40,6, 0x1f28d60,1, 0x1f28d68,2, 0x1f28d74,3, 0x1f28e00,8, 0x1f28e24,28, 0x1f29000,4, 0x1f29080,23, 0x1f29100,14, 0x1f29140,9, 0x1f29200,10, 0x1f29230,3, 0x1f29240,5, 0x1f29260,5, 0x1f29280,9, 0x1f29400,67, 0x1f29600,10, 0x1f30000,12, 0x1f30040,2, 0x1f30050,3, 0x1f32000,1006, 0x1f33000,31, 0x1f33084,6, 0x1f34004,1, 0x1f3400c,3, 0x1f34200,23, 0x1f34280,23, 0x1f34300,1, 0x1f34400,1, 0x1f34800,122, 0x1f34a00,122, 0x1f34c04,63, 0x1f34d04,1, 0x1f34d10,5, 0x1f34d40,6, 0x1f34d60,5, 0x1f36000,1, 0x1f36100,1, 0x1f36108,3, 0x1f36120,2, 0x1f36134,8, 0x1f36160,2, 0x1f36174,8, 0x1f361a0,4, 0x1f36200,54, 0x1f36800,5, 0x1f36820,2, 0x1f36834,1, 0x1f3683c,1, 0x1f36a00,24, 0x1f36a80,24, 0x1f36b00,1, 0x1f36c00,6, 0x1f36c24,5, 0x1f36c40,16, 0x1f37000,1, 0x1f37020,5, 0x1f37040,1, 0x1f37048,2, 0x1f37080,1, 0x1f37100,4, 0x1f37180,24, 0x1f37200,4, 0x1f37280,27, 0x1f37300,2, 0x1f3730c,3, 0x1f38004,1, 0x1f3800c,3, 0x1f38020,1, 0x1f38100,2, 0x1f38110,3, 0x1f38120,2, 0x1f38140,10, 0x1f38180,13, 0x1f38200,2, 0x1f38210,3, 0x1f38220,2, 0x1f38240,10, 0x1f38280,13, 0x1f38400,14, 0x1f38440,3, 0x1f38450,3, 0x1f38460,1, 0x1f38500,36, 0x1f38600,10, 0x1f38640,5, 0x1f38660,5, 0x1f38700,27, 0x1f38780,7, 0x1f387a0,8, 0x1f38800,27, 0x1f38880,7, 0x1f388a0,8, 0x1f38900,27, 0x1f38980,7, 0x1f389a0,8, 0x1f38a00,27, 0x1f38a80,7, 0x1f38aa0,8, 0x1f38b00,48, 0x1f38bc4,8, 0x1f38bf0,30, 0x1f38c80,4, 0x1f38cc0,25, 0x1f38d40,6, 0x1f38d60,1, 0x1f38d68,2, 0x1f38d74,3, 0x1f38e00,8, 0x1f38e24,28, 0x1f39000,4, 0x1f39080,23, 0x1f39100,14, 0x1f39140,9, 0x1f39200,10, 0x1f39230,3, 0x1f39240,5, 0x1f39260,5, 0x1f39280,9, 0x1f39400,67, 0x1f39600,10, 0x2000000,1, 0x2000020,3, 0x2000030,2, 0x2000040,3, 0x2000050,2, 0x2000800,53, 0x2000900,3, 0x2000910,13, 0x2000a00,53, 0x2000b00,3, 0x2000b10,13, 0x2000c00,5, 0x2000c20,5, 0x2000c40,18, 0x2001000,6, 0x2001020,4, 0x2001040,16, 0x2002000,20, 0x2002080,15, 0x2002100,20, 0x2002180,15, 0x2002200,23, 0x2002260,7, 0x2002400,11, 0x2002430,3, 0x2002440,3, 0x2002450,3, 0x2002460,24, 0x2002500,11, 0x2002530,3, 0x2002540,3, 0x2002550,3, 0x2002560,24, 0x2002600,11, 0x2002630,3, 0x2002640,3, 0x2002650,3, 0x2002660,24, 0x2002700,11, 0x2002730,3, 0x2002740,3, 0x2002750,3, 0x2002760,24, 0x2002800,4, 0x2002820,16, 0x2002880,10, 0x20028c0,10, 0x2002900,6, 0x2002920,6, 0x2002940,4, 0x2002980,13, 0x20029c0,13, 0x2002a00,9, 0x2003000,14, 0x2003040,9, 0x2003080,6, 0x20030a0,1, 0x20030a8,4, 0x2003100,4, 0x2003200,124, 0x2003400,124, 0x2003600,8, 0x2003624,1, 0x2003644,6, 0x2003664,6, 0x2003680,1, 0x2003688,6, 0x20036a8,22, 0x2004000,1, 0x2004020,3, 0x2004030,2, 0x2004040,3, 0x2004050,2, 0x2004800,53, 0x2004900,3, 0x2004910,13, 0x2004a00,53, 0x2004b00,3, 0x2004b10,13, 0x2004c00,5, 0x2004c20,5, 0x2004c40,18, 0x2005000,6, 0x2005020,4, 0x2005040,16, 0x2006000,20, 0x2006080,15, 0x2006100,20, 0x2006180,15, 0x2006200,23, 0x2006260,7, 0x2006400,11, 0x2006430,3, 0x2006440,3, 0x2006450,3, 0x2006460,24, 0x2006500,11, 0x2006530,3, 0x2006540,3, 0x2006550,3, 0x2006560,24, 0x2006600,11, 0x2006630,3, 0x2006640,3, 0x2006650,3, 0x2006660,24, 0x2006700,11, 0x2006730,3, 0x2006740,3, 0x2006750,3, 0x2006760,24, 0x2006800,4, 0x2006820,16, 0x2006880,10, 0x20068c0,10, 0x2006900,6, 0x2006920,6, 0x2006940,4, 0x2006980,13, 0x20069c0,13, 0x2006a00,9, 0x2007000,14, 0x2007040,9, 0x2007080,6, 0x20070a0,1, 0x20070a8,4, 0x2007100,4, 0x2007200,124, 0x2007400,124, 0x2007600,8, 0x2007624,1, 0x2007644,6, 0x2007664,6, 0x2007680,1, 0x2007688,6, 0x20076a8,22, 0x2008000,84, 0x2008180,20, 0x2008200,5, 0x2008400,11, 0x2008440,11, 0x2008480,19, 0x2008500,19, 0x2008580,24, 0x2008600,13, 0x2008800,84, 0x2008980,20, 0x2008a00,5, 0x2008c00,11, 0x2008c40,11, 0x2008c80,19, 0x2008d00,19, 0x2008d80,24, 0x2008e00,13, 0x2009000,10, 0x2009040,5, 0x2009080,10, 0x20090c0,5, 0x2009100,5, 0x2009200,11, 0x2009230,3, 0x2009240,5, 0x2009260,5, 0x2009280,32, 0x2009400,13, 0x2009440,13, 0x2009480,9, 0x20094c0,1, 0x20094d0,5, 0x20094f0,21, 0x2009800,10, 0x2009840,5, 0x2009880,10, 0x20098c0,5, 0x2009900,5, 0x2009a00,11, 0x2009a30,3, 0x2009a40,5, 0x2009a60,5, 0x2009a80,32, 0x2009c00,13, 0x2009c40,13, 0x2009c80,9, 0x2009cc0,1, 0x2009cd0,5, 0x2009cf0,21, 0x200a000,14, 0x200a040,9, 0x200a080,6, 0x200a0a0,1, 0x200a0a8,4, 0x200a100,7, 0x200a120,3, 0x200a130,25, 0x200c000,26, 0x200c06c,2, 0x200c080,3, 0x200c090,17, 0x200c100,26, 0x200c16c,2, 0x200c180,3, 0x200c190,17, 0x200c200,26, 0x200c26c,2, 0x200c280,3, 0x200c290,17, 0x200c300,26, 0x200c36c,2, 0x200c380,3, 0x200c390,17, 0x200c400,26, 0x200c46c,2, 0x200c480,3, 0x200c490,17, 0x200c500,26, 0x200c56c,2, 0x200c580,3, 0x200c590,17, 0x200c600,26, 0x200c66c,2, 0x200c680,3, 0x200c690,17, 0x200c700,26, 0x200c76c,2, 0x200c780,3, 0x200c790,17, 0x200c800,12, 0x200c844,1, 0x200c854,8, 0x200c880,7, 0x200c8a0,2, 0x200c8ac,2, 0x200c8c0,26, 0x200c980,4, 0x200c9a0,5, 0x200c9c0,1, 0x200d000,3, 0x200d010,3, 0x200d020,3, 0x200d030,3, 0x200d040,3, 0x200d050,3, 0x200d060,3, 0x200d070,3, 0x200d080,5, 0x200d0a0,5, 0x200d0c0,5, 0x200d0e0,5, 0x200d100,5, 0x200d120,5, 0x200d140,5, 0x200d160,5, 0x200d200,68, 0x200d400,1, 0x200d804,1, 0x200d844,54, 0x200da00,11, 0x200da40,11, 0x200da80,11, 0x200dac0,11, 0x200db00,11, 0x200db40,11, 0x200db80,11, 0x200dbc0,11, 0x200dc00,28, 0x200dc80,5, 0x200dca0,2, 0x200e000,4, 0x200e020,6, 0x200e040,6, 0x200e060,14, 0x200e100,26, 0x200e180,15, 0x200e200,14, 0x200e240,9, 0x200e280,6, 0x200e2a0,1, 0x200e2a8,4, 0x200e300,14, 0x200e340,9, 0x200e380,6, 0x200e3a0,4, 0x200e400,9, 0x2020000,1, 0x2021000,977, 0x2022000,161, 0x2023000,977, 0x2024000,977, 0x2025000,977, 0x2026000,977, 0x2027000,977, 0x2028000,977, 0x2029000,977, 0x202a000,977, 0x202b000,161, 0x202c000,12, 0x202c040,14, 0x202c080,20, 0x202c104,1, 0x202c10c,4, 0x202c200,12, 0x202c240,14, 0x202c280,20, 0x202c304,1, 0x202c30c,4, 0x202c400,12, 0x202c440,14, 0x202c480,20, 0x202c504,1, 0x202c50c,4, 0x202c600,12, 0x202c640,14, 0x202c680,20, 0x202c704,1, 0x202c70c,4, 0x202c800,12, 0x202c840,14, 0x202c880,20, 0x202c904,1, 0x202c90c,4, 0x202ca00,12, 0x202ca40,14, 0x202ca80,20, 0x202cb04,1, 0x202cb0c,4, 0x202cc00,12, 0x202cc40,14, 0x202cc80,20, 0x202cd04,1, 0x202cd0c,4, 0x202ce00,12, 0x202ce40,14, 0x202ce80,20, 0x202cf04,1, 0x202cf0c,4, 0x202d000,12, 0x202d040,14, 0x202d080,20, 0x202d104,1, 0x202d10c,4, 0x202d200,17, 0x202d250,2, 0x202d260,4, 0x202e000,1, 0x202e014,1, 0x202e01c,11, 0x202e060,9, 0x202e094,1, 0x202e09c,11, 0x202e0e0,15, 0x202e200,12, 0x202e240,13, 0x202e280,3, 0x202e290,1, 0x2080000,500, 0x2080800,2, 0x2080820,15, 0x2081000,500, 0x2081800,8, 0x2081824,6, 0x2081840,8, 0x2081880,7, 0x20818a0,7, 0x20818c0,7, 0x20818e0,7, 0x2081900,8, 0x2081924,16, 0x2081980,12, 0x2082000,500, 0x2082800,2, 0x2082820,15, 0x2083000,500, 0x2083800,8, 0x2083824,6, 0x2083840,8, 0x2083880,7, 0x20838a0,7, 0x20838c0,7, 0x20838e0,7, 0x2083900,8, 0x2083924,16, 0x2083980,12, 0x2084004,5, 0x2084200,26, 0x2084280,4, 0x20842c0,25, 0x2084340,6, 0x2084360,1, 0x2084368,2, 0x2084374,11, 0x20843a4,10, 0x2084400,1, 0x2088000,52, 0x2088400,82, 0x2088560,6, 0x2088600,41, 0x2088700,2, 0x2088720,19, 0x2088800,25, 0x2088880,1, 0x2088900,28, 0x2088980,1, 0x2089000,52, 0x2089400,82, 0x2089560,6, 0x2089600,41, 0x2089700,2, 0x2089720,19, 0x2089800,25, 0x2089880,1, 0x2089900,28, 0x2089980,1, 0x208a000,7, 0x208a080,6, 0x208a0a0,6, 0x208a0c0,1, 0x208a100,4, 0x208a120,9, 0x208c000,3, 0x208c010,6, 0x208c200,7, 0x208c220,6, 0x208c240,7, 0x208c260,6, 0x208c280,2, 0x208c28c,2, 0x208c2a0,2, 0x208c2ac,2, 0x208c2c0,7, 0x208c2e0,7, 0x208c300,2, 0x208c30c,2, 0x208c320,6, 0x208c400,3, 0x208c440,12, 0x208c800,7, 0x208c820,14, 0x208c880,16, 0x208c900,7, 0x208c920,14, 0x208c980,16, 0x208ca00,6, 0x208ca20,7, 0x208cc00,3, 0x20a0000,3, 0x20a0800,7, 0x20a0820,6, 0x20a0840,6, 0x20a0880,1, 0x20a0894,1, 0x20a089c,2, 0x20a08c0,9, 0x20a0900,18, 0x20a0a00,36, 0x20a0b00,22, 0x20a0b80,18, 0x20a0c00,3, 0x20a0c10,3, 0x20a1000,3, 0x20a1010,2, 0x20a1080,20, 0x20a1100,1, 0x20a1200,26, 0x20a1280,4, 0x20a12c0,25, 0x20a1340,6, 0x20a1360,1, 0x20a1368,2, 0x20a1374,11, 0x20a13a4,4, 0x20a1400,1, 0x20b0000,11, 0x20b0030,19, 0x20b0080,17, 0x20b0100,11, 0x20b0130,19, 0x20b0180,17, 0x20b0200,3, 0x20b0214,1, 0x20b021c,1, 0x20b0280,3, 0x20b0294,1, 0x20b029c,1, 0x20b0300,18, 0x20b0380,18, 0x20b0400,18, 0x20b0480,18, 0x20b0500,18, 0x20b0580,18, 0x20b0600,18, 0x20b0680,18, 0x20b0700,13, 0x20b0738,6, 0x20b0780,13, 0x20b07b8,6, 0x20b0800,1, 0x20b0808,22, 0x20b0880,1, 0x20b0894,13, 0x20b0900,3, 0x20b0910,3, 0x20b0920,3, 0x20b0940,3, 0x20b0954,1, 0x20b095c,1, 0x20b0a00,52, 0x20b0c00,4, 0x20b0d00,34, 0x20b0e00,4, 0x20b0e80,30, 0x20b0f00,1, 0x20b0f40,5, 0x20b0f60,5, 0x20b0f80,6, 0x20b1000,14, 0x20b1040,4, 0x20b1060,17, 0x20b10c0,6, 0x20b10e0,1, 0x20b10e8,2, 0x20b10f4,11, 0x20b1124,17, 0x20b1200,3, 0x20b1210,3, 0x20b1220,3, 0x20b1230,3, 0x20b1240,3, 0x20b1250,3, 0x20b2000,20, 0x20b2080,3, 0x20b2090,1, 0x20b2098,2, 0x20c0000,500, 0x20c0800,2, 0x20c0820,15, 0x20c1000,500, 0x20c1800,8, 0x20c1824,6, 0x20c1840,8, 0x20c1880,7, 0x20c18a0,7, 0x20c18c0,7, 0x20c18e0,7, 0x20c1900,8, 0x20c1924,16, 0x20c1980,12, 0x20c2000,500, 0x20c2800,2, 0x20c2820,15, 0x20c3000,500, 0x20c3800,8, 0x20c3824,6, 0x20c3840,8, 0x20c3880,7, 0x20c38a0,7, 0x20c38c0,7, 0x20c38e0,7, 0x20c3900,8, 0x20c3924,16, 0x20c3980,12, 0x20c4004,5, 0x20c4200,26, 0x20c4280,4, 0x20c42c0,25, 0x20c4340,6, 0x20c4360,1, 0x20c4368,2, 0x20c4374,11, 0x20c43a4,10, 0x20c4400,1, 0x20c8000,52, 0x20c8400,82, 0x20c8560,6, 0x20c8600,41, 0x20c8700,2, 0x20c8720,19, 0x20c8800,25, 0x20c8880,1, 0x20c8900,28, 0x20c8980,1, 0x20c9000,52, 0x20c9400,82, 0x20c9560,6, 0x20c9600,41, 0x20c9700,2, 0x20c9720,19, 0x20c9800,25, 0x20c9880,1, 0x20c9900,28, 0x20c9980,1, 0x20ca000,7, 0x20ca080,6, 0x20ca0a0,6, 0x20ca0c0,1, 0x20ca100,4, 0x20ca120,9, 0x20cc000,3, 0x20cc010,6, 0x20cc200,7, 0x20cc220,6, 0x20cc240,7, 0x20cc260,6, 0x20cc280,2, 0x20cc28c,2, 0x20cc2a0,2, 0x20cc2ac,2, 0x20cc2c0,7, 0x20cc2e0,7, 0x20cc300,2, 0x20cc30c,2, 0x20cc320,6, 0x20cc400,3, 0x20cc440,12, 0x20cc800,7, 0x20cc820,14, 0x20cc880,16, 0x20cc900,7, 0x20cc920,14, 0x20cc980,16, 0x20cca00,6, 0x20cca20,7, 0x20ccc00,3, 0x20e0000,3, 0x20e0800,7, 0x20e0820,6, 0x20e0840,6, 0x20e0880,1, 0x20e0894,1, 0x20e089c,2, 0x20e08c0,9, 0x20e0900,18, 0x20e0a00,36, 0x20e0b00,22, 0x20e0b80,18, 0x20e0c00,3, 0x20e0c10,3, 0x20e1000,3, 0x20e1010,2, 0x20e1080,20, 0x20e1100,1, 0x20e1200,26, 0x20e1280,4, 0x20e12c0,25, 0x20e1340,6, 0x20e1360,1, 0x20e1368,2, 0x20e1374,11, 0x20e13a4,4, 0x20e1400,1, 0x20f0000,11, 0x20f0030,19, 0x20f0080,17, 0x20f0100,11, 0x20f0130,19, 0x20f0180,17, 0x20f0200,3, 0x20f0214,1, 0x20f021c,1, 0x20f0280,3, 0x20f0294,1, 0x20f029c,1, 0x20f0300,18, 0x20f0380,18, 0x20f0400,18, 0x20f0480,18, 0x20f0500,18, 0x20f0580,18, 0x20f0600,18, 0x20f0680,18, 0x20f0700,13, 0x20f0738,6, 0x20f0780,13, 0x20f07b8,6, 0x20f0800,1, 0x20f0808,22, 0x20f0880,1, 0x20f0894,13, 0x20f0900,3, 0x20f0910,3, 0x20f0920,3, 0x20f0940,3, 0x20f0954,1, 0x20f095c,1, 0x20f0a00,52, 0x20f0c00,4, 0x20f0d00,34, 0x20f0e00,4, 0x20f0e80,30, 0x20f0f00,1, 0x20f0f40,5, 0x20f0f60,5, 0x20f0f80,6, 0x20f1000,14, 0x20f1040,4, 0x20f1060,17, 0x20f10c0,6, 0x20f10e0,1, 0x20f10e8,2, 0x20f10f4,11, 0x20f1124,17, 0x20f1200,3, 0x20f1210,3, 0x20f1220,3, 0x20f1230,3, 0x20f1240,3, 0x20f1250,3, 0x20f2000,20, 0x20f2080,3, 0x20f2090,1, 0x20f2098,2, 0x2100000,13, 0x2100038,4, 0x2100050,3, 0x2100060,3, 0x2100070,16, 0x21000c0,5, 0x2100400,14, 0x2100440,2, 0x210044c,3, 0x2100480,14, 0x21004c0,2, 0x21004cc,3, 0x2100500,1, 0x2100508,15, 0x2100560,2, 0x210056c,2, 0x2100600,4, 0x2100680,27, 0x2100800,2, 0x2100900,32, 0x2100984,2, 0x2100990,4, 0x2100a00,26, 0x2100a80,4, 0x2100ac0,25, 0x2100b40,6, 0x2100b60,1, 0x2100b68,2, 0x2100b74,11, 0x2100ba4,8, 0x2100c00,9, 0x2100c40,11, 0x2100c80,23, 0x2100ce0,15, 0x2100d20,15, 0x2100d60,1, 0x2101000,13, 0x2101038,4, 0x2101050,3, 0x2101060,3, 0x2101070,16, 0x21010c0,5, 0x2101400,14, 0x2101440,2, 0x210144c,3, 0x2101480,14, 0x21014c0,2, 0x21014cc,3, 0x2101500,1, 0x2101508,15, 0x2101560,2, 0x210156c,2, 0x2101600,4, 0x2101680,27, 0x2101800,2, 0x2101900,32, 0x2101984,2, 0x2101990,4, 0x2101a00,26, 0x2101a80,4, 0x2101ac0,25, 0x2101b40,6, 0x2101b60,1, 0x2101b68,2, 0x2101b74,11, 0x2101ba4,8, 0x2101c00,9, 0x2101c40,11, 0x2101c80,23, 0x2101ce0,15, 0x2101d20,15, 0x2101d60,1, 0x2102000,1, 0x2102100,36, 0x2102200,7, 0x2110000,22, 0x2110080,22, 0x2110100,12, 0x2110140,12, 0x2110200,52, 0x2110300,52, 0x2110400,11, 0x2110440,11, 0x2110480,3, 0x21104a0,6, 0x21104c0,6, 0x21104e0,3, 0x21104f0,3, 0x2110800,9, 0x2110840,15, 0x2110880,15, 0x21108c0,15, 0x2110900,1, 0x2110914,13, 0x2110980,17, 0x2111000,17, 0x2111080,17, 0x2111104,5, 0x2111120,3, 0x2111130,11, 0x2111200,31, 0x2111280,31, 0x2111300,12, 0x2111340,12, 0x2111380,2, 0x2111390,2, 0x21113a0,3, 0x21113b0,3, 0x21113c0,5, 0x21113e0,5, 0x2111400,3, 0x2111410,3, 0x2111420,3, 0x2111430,3, 0x2111440,3, 0x2111450,3, 0x2111460,7, 0x2111800,26, 0x2111880,4, 0x21118c0,25, 0x2111940,6, 0x2111960,1, 0x2111968,2, 0x2111974,11, 0x21119a4,12, 0x2111a00,4, 0x2111b00,43, 0x2111c00,4, 0x2111c20,7, 0x2111c40,3, 0x2111c50,1, 0x2111c60,3, 0x2111e00,32, 0x2111e84,1, 0x2111e90,4, 0x2111ea4,1, 0x2111eb4,14, 0x2111ef0,2, 0x2111f04,1, 0x2111f10,8, 0x2111f34,6, 0x2112000,3, 0x2112010,21, 0x2112080,1, 0x2112094,1, 0x211209c,5, 0x2112100,15, 0x2112140,1, 0x2112180,6, 0x2114000,22, 0x2114080,22, 0x2114100,12, 0x2114140,12, 0x2114200,52, 0x2114300,52, 0x2114400,11, 0x2114440,11, 0x2114480,3, 0x21144a0,6, 0x21144c0,6, 0x21144e0,3, 0x21144f0,3, 0x2114800,9, 0x2114840,15, 0x2114880,15, 0x21148c0,15, 0x2114900,1, 0x2114914,13, 0x2114980,17, 0x2115000,17, 0x2115080,17, 0x2115104,5, 0x2115120,3, 0x2115130,11, 0x2115200,31, 0x2115280,31, 0x2115300,12, 0x2115340,12, 0x2115380,2, 0x2115390,2, 0x21153a0,3, 0x21153b0,3, 0x21153c0,5, 0x21153e0,5, 0x2115400,3, 0x2115410,3, 0x2115420,3, 0x2115430,3, 0x2115440,3, 0x2115450,3, 0x2115460,7, 0x2115800,26, 0x2115880,4, 0x21158c0,25, 0x2115940,6, 0x2115960,1, 0x2115968,2, 0x2115974,11, 0x21159a4,12, 0x2115a00,4, 0x2115b00,43, 0x2115c00,4, 0x2115c20,7, 0x2115c40,3, 0x2115c50,1, 0x2115c60,3, 0x2115e00,32, 0x2115e84,1, 0x2115e90,4, 0x2115ea4,1, 0x2115eb4,14, 0x2115ef0,2, 0x2115f04,1, 0x2115f10,8, 0x2115f34,6, 0x2116000,3, 0x2116010,21, 0x2116080,1, 0x2116094,1, 0x211609c,5, 0x2116100,15, 0x2116140,1, 0x2116180,6, 0x2118000,100, 0x2118200,3, 0x2118210,5, 0x2120000,12, 0x2120040,2, 0x2120050,3, 0x2122000,1006, 0x2123000,31, 0x2123084,6, 0x2124004,1, 0x212400c,3, 0x2124200,23, 0x2124280,23, 0x2124300,1, 0x2124400,1, 0x2124800,122, 0x2124a00,122, 0x2124c04,63, 0x2124d04,1, 0x2124d10,5, 0x2124d40,6, 0x2124d60,5, 0x2126000,1, 0x2126100,1, 0x2126108,3, 0x2126120,2, 0x2126134,8, 0x2126160,2, 0x2126174,8, 0x21261a0,4, 0x2126200,54, 0x2126800,5, 0x2126820,2, 0x2126834,1, 0x212683c,1, 0x2126a00,24, 0x2126a80,24, 0x2126b00,1, 0x2126c00,6, 0x2126c24,5, 0x2126c40,16, 0x2127000,1, 0x2127020,5, 0x2127040,1, 0x2127048,2, 0x2127080,1, 0x2127100,4, 0x2127180,24, 0x2127200,4, 0x2127280,27, 0x2127300,2, 0x212730c,3, 0x2128004,1, 0x212800c,3, 0x2128020,1, 0x2128100,2, 0x2128110,3, 0x2128120,2, 0x2128140,10, 0x2128180,13, 0x2128200,2, 0x2128210,3, 0x2128220,2, 0x2128240,10, 0x2128280,13, 0x2128400,14, 0x2128440,3, 0x2128450,3, 0x2128460,1, 0x2128500,36, 0x2128600,10, 0x2128640,5, 0x2128660,5, 0x2128700,27, 0x2128780,7, 0x21287a0,8, 0x2128800,27, 0x2128880,7, 0x21288a0,8, 0x2128900,27, 0x2128980,7, 0x21289a0,8, 0x2128a00,27, 0x2128a80,7, 0x2128aa0,8, 0x2128b00,48, 0x2128bc4,8, 0x2128bf0,30, 0x2128c80,4, 0x2128cc0,25, 0x2128d40,6, 0x2128d60,1, 0x2128d68,2, 0x2128d74,3, 0x2128e00,8, 0x2128e24,28, 0x2129000,4, 0x2129080,23, 0x2129100,14, 0x2129140,9, 0x2129200,10, 0x2129230,3, 0x2129240,5, 0x2129260,5, 0x2129280,9, 0x2129400,67, 0x2129600,10, 0x2130000,12, 0x2130040,2, 0x2130050,3, 0x2132000,1006, 0x2133000,31, 0x2133084,6, 0x2134004,1, 0x213400c,3, 0x2134200,23, 0x2134280,23, 0x2134300,1, 0x2134400,1, 0x2134800,122, 0x2134a00,122, 0x2134c04,63, 0x2134d04,1, 0x2134d10,5, 0x2134d40,6, 0x2134d60,5, 0x2136000,1, 0x2136100,1, 0x2136108,3, 0x2136120,2, 0x2136134,8, 0x2136160,2, 0x2136174,8, 0x21361a0,4, 0x2136200,54, 0x2136800,5, 0x2136820,2, 0x2136834,1, 0x213683c,1, 0x2136a00,24, 0x2136a80,24, 0x2136b00,1, 0x2136c00,6, 0x2136c24,5, 0x2136c40,16, 0x2137000,1, 0x2137020,5, 0x2137040,1, 0x2137048,2, 0x2137080,1, 0x2137100,4, 0x2137180,24, 0x2137200,4, 0x2137280,27, 0x2137300,2, 0x213730c,3, 0x2138004,1, 0x213800c,3, 0x2138020,1, 0x2138100,2, 0x2138110,3, 0x2138120,2, 0x2138140,10, 0x2138180,13, 0x2138200,2, 0x2138210,3, 0x2138220,2, 0x2138240,10, 0x2138280,13, 0x2138400,14, 0x2138440,3, 0x2138450,3, 0x2138460,1, 0x2138500,36, 0x2138600,10, 0x2138640,5, 0x2138660,5, 0x2138700,27, 0x2138780,7, 0x21387a0,8, 0x2138800,27, 0x2138880,7, 0x21388a0,8, 0x2138900,27, 0x2138980,7, 0x21389a0,8, 0x2138a00,27, 0x2138a80,7, 0x2138aa0,8, 0x2138b00,48, 0x2138bc4,8, 0x2138bf0,30, 0x2138c80,4, 0x2138cc0,25, 0x2138d40,6, 0x2138d60,1, 0x2138d68,2, 0x2138d74,3, 0x2138e00,8, 0x2138e24,28, 0x2139000,4, 0x2139080,23, 0x2139100,14, 0x2139140,9, 0x2139200,10, 0x2139230,3, 0x2139240,5, 0x2139260,5, 0x2139280,9, 0x2139400,67, 0x2139600,10, 0x2200000,1, 0x2200020,3, 0x2200030,2, 0x2200040,3, 0x2200050,2, 0x2200800,53, 0x2200900,3, 0x2200910,13, 0x2200a00,53, 0x2200b00,3, 0x2200b10,13, 0x2200c00,5, 0x2200c20,5, 0x2200c40,18, 0x2201000,6, 0x2201020,4, 0x2201040,16, 0x2202000,20, 0x2202080,15, 0x2202100,20, 0x2202180,15, 0x2202200,23, 0x2202260,7, 0x2202400,11, 0x2202430,3, 0x2202440,3, 0x2202450,3, 0x2202460,24, 0x2202500,11, 0x2202530,3, 0x2202540,3, 0x2202550,3, 0x2202560,24, 0x2202600,11, 0x2202630,3, 0x2202640,3, 0x2202650,3, 0x2202660,24, 0x2202700,11, 0x2202730,3, 0x2202740,3, 0x2202750,3, 0x2202760,24, 0x2202800,4, 0x2202820,16, 0x2202880,10, 0x22028c0,10, 0x2202900,6, 0x2202920,6, 0x2202940,4, 0x2202980,13, 0x22029c0,13, 0x2202a00,9, 0x2203000,14, 0x2203040,9, 0x2203080,6, 0x22030a0,1, 0x22030a8,4, 0x2203100,4, 0x2203200,124, 0x2203400,124, 0x2203600,8, 0x2203624,1, 0x2203644,6, 0x2203664,6, 0x2203680,1, 0x2203688,6, 0x22036a8,22, 0x2204000,1, 0x2204020,3, 0x2204030,2, 0x2204040,3, 0x2204050,2, 0x2204800,53, 0x2204900,3, 0x2204910,13, 0x2204a00,53, 0x2204b00,3, 0x2204b10,13, 0x2204c00,5, 0x2204c20,5, 0x2204c40,18, 0x2205000,6, 0x2205020,4, 0x2205040,16, 0x2206000,20, 0x2206080,15, 0x2206100,20, 0x2206180,15, 0x2206200,23, 0x2206260,7, 0x2206400,11, 0x2206430,3, 0x2206440,3, 0x2206450,3, 0x2206460,24, 0x2206500,11, 0x2206530,3, 0x2206540,3, 0x2206550,3, 0x2206560,24, 0x2206600,11, 0x2206630,3, 0x2206640,3, 0x2206650,3, 0x2206660,24, 0x2206700,11, 0x2206730,3, 0x2206740,3, 0x2206750,3, 0x2206760,24, 0x2206800,4, 0x2206820,16, 0x2206880,10, 0x22068c0,10, 0x2206900,6, 0x2206920,6, 0x2206940,4, 0x2206980,13, 0x22069c0,13, 0x2206a00,9, 0x2207000,14, 0x2207040,9, 0x2207080,6, 0x22070a0,1, 0x22070a8,4, 0x2207100,4, 0x2207200,124, 0x2207400,124, 0x2207600,8, 0x2207624,1, 0x2207644,6, 0x2207664,6, 0x2207680,1, 0x2207688,6, 0x22076a8,22, 0x2208000,84, 0x2208180,20, 0x2208200,5, 0x2208400,11, 0x2208440,11, 0x2208480,19, 0x2208500,19, 0x2208580,24, 0x2208600,13, 0x2208800,84, 0x2208980,20, 0x2208a00,5, 0x2208c00,11, 0x2208c40,11, 0x2208c80,19, 0x2208d00,19, 0x2208d80,24, 0x2208e00,13, 0x2209000,10, 0x2209040,5, 0x2209080,10, 0x22090c0,5, 0x2209100,5, 0x2209200,11, 0x2209230,3, 0x2209240,5, 0x2209260,5, 0x2209280,32, 0x2209400,13, 0x2209440,13, 0x2209480,9, 0x22094c0,1, 0x22094d0,5, 0x22094f0,21, 0x2209800,10, 0x2209840,5, 0x2209880,10, 0x22098c0,5, 0x2209900,5, 0x2209a00,11, 0x2209a30,3, 0x2209a40,5, 0x2209a60,5, 0x2209a80,32, 0x2209c00,13, 0x2209c40,13, 0x2209c80,9, 0x2209cc0,1, 0x2209cd0,5, 0x2209cf0,21, 0x220a000,14, 0x220a040,9, 0x220a080,6, 0x220a0a0,1, 0x220a0a8,4, 0x220a100,7, 0x220a120,3, 0x220a130,25, 0x220c000,26, 0x220c06c,2, 0x220c080,3, 0x220c090,17, 0x220c100,26, 0x220c16c,2, 0x220c180,3, 0x220c190,17, 0x220c200,26, 0x220c26c,2, 0x220c280,3, 0x220c290,17, 0x220c300,26, 0x220c36c,2, 0x220c380,3, 0x220c390,17, 0x220c400,26, 0x220c46c,2, 0x220c480,3, 0x220c490,17, 0x220c500,26, 0x220c56c,2, 0x220c580,3, 0x220c590,17, 0x220c600,26, 0x220c66c,2, 0x220c680,3, 0x220c690,17, 0x220c700,26, 0x220c76c,2, 0x220c780,3, 0x220c790,17, 0x220c800,12, 0x220c844,1, 0x220c854,8, 0x220c880,7, 0x220c8a0,2, 0x220c8ac,2, 0x220c8c0,26, 0x220c980,4, 0x220c9a0,5, 0x220c9c0,1, 0x220d000,3, 0x220d010,3, 0x220d020,3, 0x220d030,3, 0x220d040,3, 0x220d050,3, 0x220d060,3, 0x220d070,3, 0x220d080,5, 0x220d0a0,5, 0x220d0c0,5, 0x220d0e0,5, 0x220d100,5, 0x220d120,5, 0x220d140,5, 0x220d160,5, 0x220d200,68, 0x220d400,1, 0x220d804,1, 0x220d844,54, 0x220da00,11, 0x220da40,11, 0x220da80,11, 0x220dac0,11, 0x220db00,11, 0x220db40,11, 0x220db80,11, 0x220dbc0,11, 0x220dc00,28, 0x220dc80,5, 0x220dca0,2, 0x220e000,4, 0x220e020,6, 0x220e040,6, 0x220e060,14, 0x220e100,26, 0x220e180,15, 0x220e200,14, 0x220e240,9, 0x220e280,6, 0x220e2a0,1, 0x220e2a8,4, 0x220e300,14, 0x220e340,9, 0x220e380,6, 0x220e3a0,4, 0x220e400,9, 0x2220000,1, 0x2221000,977, 0x2222000,161, 0x2223000,977, 0x2224000,977, 0x2225000,977, 0x2226000,977, 0x2227000,977, 0x2228000,977, 0x2229000,977, 0x222a000,977, 0x222b000,161, 0x222c000,12, 0x222c040,14, 0x222c080,20, 0x222c104,1, 0x222c10c,4, 0x222c200,12, 0x222c240,14, 0x222c280,20, 0x222c304,1, 0x222c30c,4, 0x222c400,12, 0x222c440,14, 0x222c480,20, 0x222c504,1, 0x222c50c,4, 0x222c600,12, 0x222c640,14, 0x222c680,20, 0x222c704,1, 0x222c70c,4, 0x222c800,12, 0x222c840,14, 0x222c880,20, 0x222c904,1, 0x222c90c,4, 0x222ca00,12, 0x222ca40,14, 0x222ca80,20, 0x222cb04,1, 0x222cb0c,4, 0x222cc00,12, 0x222cc40,14, 0x222cc80,20, 0x222cd04,1, 0x222cd0c,4, 0x222ce00,12, 0x222ce40,14, 0x222ce80,20, 0x222cf04,1, 0x222cf0c,4, 0x222d000,12, 0x222d040,14, 0x222d080,20, 0x222d104,1, 0x222d10c,4, 0x222d200,17, 0x222d250,2, 0x222d260,4, 0x222e000,1, 0x222e014,1, 0x222e01c,11, 0x222e060,9, 0x222e094,1, 0x222e09c,11, 0x222e0e0,15, 0x222e200,12, 0x222e240,13, 0x222e280,3, 0x222e290,1, 0x2280000,500, 0x2280800,2, 0x2280820,15, 0x2281000,500, 0x2281800,8, 0x2281824,6, 0x2281840,8, 0x2281880,7, 0x22818a0,7, 0x22818c0,7, 0x22818e0,7, 0x2281900,8, 0x2281924,16, 0x2281980,12, 0x2282000,500, 0x2282800,2, 0x2282820,15, 0x2283000,500, 0x2283800,8, 0x2283824,6, 0x2283840,8, 0x2283880,7, 0x22838a0,7, 0x22838c0,7, 0x22838e0,7, 0x2283900,8, 0x2283924,16, 0x2283980,12, 0x2284004,5, 0x2284200,26, 0x2284280,4, 0x22842c0,25, 0x2284340,6, 0x2284360,1, 0x2284368,2, 0x2284374,11, 0x22843a4,10, 0x2284400,1, 0x2288000,52, 0x2288400,82, 0x2288560,6, 0x2288600,41, 0x2288700,2, 0x2288720,19, 0x2288800,25, 0x2288880,1, 0x2288900,28, 0x2288980,1, 0x2289000,52, 0x2289400,82, 0x2289560,6, 0x2289600,41, 0x2289700,2, 0x2289720,19, 0x2289800,25, 0x2289880,1, 0x2289900,28, 0x2289980,1, 0x228a000,7, 0x228a080,6, 0x228a0a0,6, 0x228a0c0,1, 0x228a100,4, 0x228a120,9, 0x228c000,3, 0x228c010,6, 0x228c200,7, 0x228c220,6, 0x228c240,7, 0x228c260,6, 0x228c280,2, 0x228c28c,2, 0x228c2a0,2, 0x228c2ac,2, 0x228c2c0,7, 0x228c2e0,7, 0x228c300,2, 0x228c30c,2, 0x228c320,6, 0x228c400,3, 0x228c440,12, 0x228c800,7, 0x228c820,14, 0x228c880,16, 0x228c900,7, 0x228c920,14, 0x228c980,16, 0x228ca00,6, 0x228ca20,7, 0x228cc00,3, 0x22a0000,3, 0x22a0800,7, 0x22a0820,6, 0x22a0840,6, 0x22a0880,1, 0x22a0894,1, 0x22a089c,2, 0x22a08c0,9, 0x22a0900,18, 0x22a0a00,36, 0x22a0b00,22, 0x22a0b80,18, 0x22a0c00,3, 0x22a0c10,3, 0x22a1000,3, 0x22a1010,2, 0x22a1080,20, 0x22a1100,1, 0x22a1200,26, 0x22a1280,4, 0x22a12c0,25, 0x22a1340,6, 0x22a1360,1, 0x22a1368,2, 0x22a1374,11, 0x22a13a4,4, 0x22a1400,1, 0x22b0000,11, 0x22b0030,19, 0x22b0080,17, 0x22b0100,11, 0x22b0130,19, 0x22b0180,17, 0x22b0200,3, 0x22b0214,1, 0x22b021c,1, 0x22b0280,3, 0x22b0294,1, 0x22b029c,1, 0x22b0300,18, 0x22b0380,18, 0x22b0400,18, 0x22b0480,18, 0x22b0500,18, 0x22b0580,18, 0x22b0600,18, 0x22b0680,18, 0x22b0700,13, 0x22b0738,6, 0x22b0780,13, 0x22b07b8,6, 0x22b0800,1, 0x22b0808,22, 0x22b0880,1, 0x22b0894,13, 0x22b0900,3, 0x22b0910,3, 0x22b0920,3, 0x22b0940,3, 0x22b0954,1, 0x22b095c,1, 0x22b0a00,52, 0x22b0c00,4, 0x22b0d00,34, 0x22b0e00,4, 0x22b0e80,30, 0x22b0f00,1, 0x22b0f40,5, 0x22b0f60,5, 0x22b0f80,6, 0x22b1000,14, 0x22b1040,4, 0x22b1060,17, 0x22b10c0,6, 0x22b10e0,1, 0x22b10e8,2, 0x22b10f4,11, 0x22b1124,17, 0x22b1200,3, 0x22b1210,3, 0x22b1220,3, 0x22b1230,3, 0x22b1240,3, 0x22b1250,3, 0x22b2000,20, 0x22b2080,3, 0x22b2090,1, 0x22b2098,2, 0x22c0000,500, 0x22c0800,2, 0x22c0820,15, 0x22c1000,500, 0x22c1800,8, 0x22c1824,6, 0x22c1840,8, 0x22c1880,7, 0x22c18a0,7, 0x22c18c0,7, 0x22c18e0,7, 0x22c1900,8, 0x22c1924,16, 0x22c1980,12, 0x22c2000,500, 0x22c2800,2, 0x22c2820,15, 0x22c3000,500, 0x22c3800,8, 0x22c3824,6, 0x22c3840,8, 0x22c3880,7, 0x22c38a0,7, 0x22c38c0,7, 0x22c38e0,7, 0x22c3900,8, 0x22c3924,16, 0x22c3980,12, 0x22c4004,5, 0x22c4200,26, 0x22c4280,4, 0x22c42c0,25, 0x22c4340,6, 0x22c4360,1, 0x22c4368,2, 0x22c4374,11, 0x22c43a4,10, 0x22c4400,1, 0x22c8000,52, 0x22c8400,82, 0x22c8560,6, 0x22c8600,41, 0x22c8700,2, 0x22c8720,19, 0x22c8800,25, 0x22c8880,1, 0x22c8900,28, 0x22c8980,1, 0x22c9000,52, 0x22c9400,82, 0x22c9560,6, 0x22c9600,41, 0x22c9700,2, 0x22c9720,19, 0x22c9800,25, 0x22c9880,1, 0x22c9900,28, 0x22c9980,1, 0x22ca000,7, 0x22ca080,6, 0x22ca0a0,6, 0x22ca0c0,1, 0x22ca100,4, 0x22ca120,9, 0x22cc000,3, 0x22cc010,6, 0x22cc200,7, 0x22cc220,6, 0x22cc240,7, 0x22cc260,6, 0x22cc280,2, 0x22cc28c,2, 0x22cc2a0,2, 0x22cc2ac,2, 0x22cc2c0,7, 0x22cc2e0,7, 0x22cc300,2, 0x22cc30c,2, 0x22cc320,6, 0x22cc400,3, 0x22cc440,12, 0x22cc800,7, 0x22cc820,14, 0x22cc880,16, 0x22cc900,7, 0x22cc920,14, 0x22cc980,16, 0x22cca00,6, 0x22cca20,7, 0x22ccc00,3, 0x22e0000,3, 0x22e0800,7, 0x22e0820,6, 0x22e0840,6, 0x22e0880,1, 0x22e0894,1, 0x22e089c,2, 0x22e08c0,9, 0x22e0900,18, 0x22e0a00,36, 0x22e0b00,22, 0x22e0b80,18, 0x22e0c00,3, 0x22e0c10,3, 0x22e1000,3, 0x22e1010,2, 0x22e1080,20, 0x22e1100,1, 0x22e1200,26, 0x22e1280,4, 0x22e12c0,25, 0x22e1340,6, 0x22e1360,1, 0x22e1368,2, 0x22e1374,11, 0x22e13a4,4, 0x22e1400,1, 0x22f0000,11, 0x22f0030,19, 0x22f0080,17, 0x22f0100,11, 0x22f0130,19, 0x22f0180,17, 0x22f0200,3, 0x22f0214,1, 0x22f021c,1, 0x22f0280,3, 0x22f0294,1, 0x22f029c,1, 0x22f0300,18, 0x22f0380,18, 0x22f0400,18, 0x22f0480,18, 0x22f0500,18, 0x22f0580,18, 0x22f0600,18, 0x22f0680,18, 0x22f0700,13, 0x22f0738,6, 0x22f0780,13, 0x22f07b8,6, 0x22f0800,1, 0x22f0808,22, 0x22f0880,1, 0x22f0894,13, 0x22f0900,3, 0x22f0910,3, 0x22f0920,3, 0x22f0940,3, 0x22f0954,1, 0x22f095c,1, 0x22f0a00,52, 0x22f0c00,4, 0x22f0d00,34, 0x22f0e00,4, 0x22f0e80,30, 0x22f0f00,1, 0x22f0f40,5, 0x22f0f60,5, 0x22f0f80,6, 0x22f1000,14, 0x22f1040,4, 0x22f1060,17, 0x22f10c0,6, 0x22f10e0,1, 0x22f10e8,2, 0x22f10f4,11, 0x22f1124,17, 0x22f1200,3, 0x22f1210,3, 0x22f1220,3, 0x22f1230,3, 0x22f1240,3, 0x22f1250,3, 0x22f2000,20, 0x22f2080,3, 0x22f2090,1, 0x22f2098,2, 0x2300000,13, 0x2300038,4, 0x2300050,3, 0x2300060,3, 0x2300070,16, 0x23000c0,5, 0x2300400,14, 0x2300440,2, 0x230044c,3, 0x2300480,14, 0x23004c0,2, 0x23004cc,3, 0x2300500,1, 0x2300508,15, 0x2300560,2, 0x230056c,2, 0x2300600,4, 0x2300680,27, 0x2300800,2, 0x2300900,32, 0x2300984,2, 0x2300990,4, 0x2300a00,26, 0x2300a80,4, 0x2300ac0,25, 0x2300b40,6, 0x2300b60,1, 0x2300b68,2, 0x2300b74,11, 0x2300ba4,8, 0x2300c00,9, 0x2300c40,11, 0x2300c80,23, 0x2300ce0,15, 0x2300d20,15, 0x2300d60,1, 0x2301000,13, 0x2301038,4, 0x2301050,3, 0x2301060,3, 0x2301070,16, 0x23010c0,5, 0x2301400,14, 0x2301440,2, 0x230144c,3, 0x2301480,14, 0x23014c0,2, 0x23014cc,3, 0x2301500,1, 0x2301508,15, 0x2301560,2, 0x230156c,2, 0x2301600,4, 0x2301680,27, 0x2301800,2, 0x2301900,32, 0x2301984,2, 0x2301990,4, 0x2301a00,26, 0x2301a80,4, 0x2301ac0,25, 0x2301b40,6, 0x2301b60,1, 0x2301b68,2, 0x2301b74,11, 0x2301ba4,8, 0x2301c00,9, 0x2301c40,11, 0x2301c80,23, 0x2301ce0,15, 0x2301d20,15, 0x2301d60,1, 0x2302000,1, 0x2302100,36, 0x2302200,7, 0x2310000,22, 0x2310080,22, 0x2310100,12, 0x2310140,12, 0x2310200,52, 0x2310300,52, 0x2310400,11, 0x2310440,11, 0x2310480,3, 0x23104a0,6, 0x23104c0,6, 0x23104e0,3, 0x23104f0,3, 0x2310800,9, 0x2310840,15, 0x2310880,15, 0x23108c0,15, 0x2310900,1, 0x2310914,13, 0x2310980,17, 0x2311000,17, 0x2311080,17, 0x2311104,5, 0x2311120,3, 0x2311130,11, 0x2311200,31, 0x2311280,31, 0x2311300,12, 0x2311340,12, 0x2311380,2, 0x2311390,2, 0x23113a0,3, 0x23113b0,3, 0x23113c0,5, 0x23113e0,5, 0x2311400,3, 0x2311410,3, 0x2311420,3, 0x2311430,3, 0x2311440,3, 0x2311450,3, 0x2311460,7, 0x2311800,26, 0x2311880,4, 0x23118c0,25, 0x2311940,6, 0x2311960,1, 0x2311968,2, 0x2311974,11, 0x23119a4,12, 0x2311a00,4, 0x2311b00,43, 0x2311c00,4, 0x2311c20,7, 0x2311c40,3, 0x2311c50,1, 0x2311c60,3, 0x2311e00,32, 0x2311e84,1, 0x2311e90,4, 0x2311ea4,1, 0x2311eb4,14, 0x2311ef0,2, 0x2311f04,1, 0x2311f10,8, 0x2311f34,6, 0x2312000,3, 0x2312010,21, 0x2312080,1, 0x2312094,1, 0x231209c,5, 0x2312100,15, 0x2312140,1, 0x2312180,6, 0x2314000,22, 0x2314080,22, 0x2314100,12, 0x2314140,12, 0x2314200,52, 0x2314300,52, 0x2314400,11, 0x2314440,11, 0x2314480,3, 0x23144a0,6, 0x23144c0,6, 0x23144e0,3, 0x23144f0,3, 0x2314800,9, 0x2314840,15, 0x2314880,15, 0x23148c0,15, 0x2314900,1, 0x2314914,13, 0x2314980,17, 0x2315000,17, 0x2315080,17, 0x2315104,5, 0x2315120,3, 0x2315130,11, 0x2315200,31, 0x2315280,31, 0x2315300,12, 0x2315340,12, 0x2315380,2, 0x2315390,2, 0x23153a0,3, 0x23153b0,3, 0x23153c0,5, 0x23153e0,5, 0x2315400,3, 0x2315410,3, 0x2315420,3, 0x2315430,3, 0x2315440,3, 0x2315450,3, 0x2315460,7, 0x2315800,26, 0x2315880,4, 0x23158c0,25, 0x2315940,6, 0x2315960,1, 0x2315968,2, 0x2315974,11, 0x23159a4,12, 0x2315a00,4, 0x2315b00,43, 0x2315c00,4, 0x2315c20,7, 0x2315c40,3, 0x2315c50,1, 0x2315c60,3, 0x2315e00,32, 0x2315e84,1, 0x2315e90,4, 0x2315ea4,1, 0x2315eb4,14, 0x2315ef0,2, 0x2315f04,1, 0x2315f10,8, 0x2315f34,6, 0x2316000,3, 0x2316010,21, 0x2316080,1, 0x2316094,1, 0x231609c,5, 0x2316100,15, 0x2316140,1, 0x2316180,6, 0x2318000,100, 0x2318200,3, 0x2318210,5, 0x2320000,12, 0x2320040,2, 0x2320050,3, 0x2322000,1006, 0x2323000,31, 0x2323084,6, 0x2324004,1, 0x232400c,3, 0x2324200,23, 0x2324280,23, 0x2324300,1, 0x2324400,1, 0x2324800,122, 0x2324a00,122, 0x2324c04,63, 0x2324d04,1, 0x2324d10,5, 0x2324d40,6, 0x2324d60,5, 0x2326000,1, 0x2326100,1, 0x2326108,3, 0x2326120,2, 0x2326134,8, 0x2326160,2, 0x2326174,8, 0x23261a0,4, 0x2326200,54, 0x2326800,5, 0x2326820,2, 0x2326834,1, 0x232683c,1, 0x2326a00,24, 0x2326a80,24, 0x2326b00,1, 0x2326c00,6, 0x2326c24,5, 0x2326c40,16, 0x2327000,1, 0x2327020,5, 0x2327040,1, 0x2327048,2, 0x2327080,1, 0x2327100,4, 0x2327180,24, 0x2327200,4, 0x2327280,27, 0x2327300,2, 0x232730c,3, 0x2328004,1, 0x232800c,3, 0x2328020,1, 0x2328100,2, 0x2328110,3, 0x2328120,2, 0x2328140,10, 0x2328180,13, 0x2328200,2, 0x2328210,3, 0x2328220,2, 0x2328240,10, 0x2328280,13, 0x2328400,14, 0x2328440,3, 0x2328450,3, 0x2328460,1, 0x2328500,36, 0x2328600,10, 0x2328640,5, 0x2328660,5, 0x2328700,27, 0x2328780,7, 0x23287a0,8, 0x2328800,27, 0x2328880,7, 0x23288a0,8, 0x2328900,27, 0x2328980,7, 0x23289a0,8, 0x2328a00,27, 0x2328a80,7, 0x2328aa0,8, 0x2328b00,48, 0x2328bc4,8, 0x2328bf0,30, 0x2328c80,4, 0x2328cc0,25, 0x2328d40,6, 0x2328d60,1, 0x2328d68,2, 0x2328d74,3, 0x2328e00,8, 0x2328e24,28, 0x2329000,4, 0x2329080,23, 0x2329100,14, 0x2329140,9, 0x2329200,10, 0x2329230,3, 0x2329240,5, 0x2329260,5, 0x2329280,9, 0x2329400,67, 0x2329600,10, 0x2330000,12, 0x2330040,2, 0x2330050,3, 0x2332000,1006, 0x2333000,31, 0x2333084,6, 0x2334004,1, 0x233400c,3, 0x2334200,23, 0x2334280,23, 0x2334300,1, 0x2334400,1, 0x2334800,122, 0x2334a00,122, 0x2334c04,63, 0x2334d04,1, 0x2334d10,5, 0x2334d40,6, 0x2334d60,5, 0x2336000,1, 0x2336100,1, 0x2336108,3, 0x2336120,2, 0x2336134,8, 0x2336160,2, 0x2336174,8, 0x23361a0,4, 0x2336200,54, 0x2336800,5, 0x2336820,2, 0x2336834,1, 0x233683c,1, 0x2336a00,24, 0x2336a80,24, 0x2336b00,1, 0x2336c00,6, 0x2336c24,5, 0x2336c40,16, 0x2337000,1, 0x2337020,5, 0x2337040,1, 0x2337048,2, 0x2337080,1, 0x2337100,4, 0x2337180,24, 0x2337200,4, 0x2337280,27, 0x2337300,2, 0x233730c,3, 0x2338004,1, 0x233800c,3, 0x2338020,1, 0x2338100,2, 0x2338110,3, 0x2338120,2, 0x2338140,10, 0x2338180,13, 0x2338200,2, 0x2338210,3, 0x2338220,2, 0x2338240,10, 0x2338280,13, 0x2338400,14, 0x2338440,3, 0x2338450,3, 0x2338460,1, 0x2338500,36, 0x2338600,10, 0x2338640,5, 0x2338660,5, 0x2338700,27, 0x2338780,7, 0x23387a0,8, 0x2338800,27, 0x2338880,7, 0x23388a0,8, 0x2338900,27, 0x2338980,7, 0x23389a0,8, 0x2338a00,27, 0x2338a80,7, 0x2338aa0,8, 0x2338b00,48, 0x2338bc4,8, 0x2338bf0,30, 0x2338c80,4, 0x2338cc0,25, 0x2338d40,6, 0x2338d60,1, 0x2338d68,2, 0x2338d74,3, 0x2338e00,8, 0x2338e24,28, 0x2339000,4, 0x2339080,23, 0x2339100,14, 0x2339140,9, 0x2339200,10, 0x2339230,3, 0x2339240,5, 0x2339260,5, 0x2339280,9, 0x2339400,67, 0x2339600,10, 0x2400000,1, 0x2400020,3, 0x2400030,2, 0x2400040,3, 0x2400050,2, 0x2400800,53, 0x2400900,3, 0x2400910,13, 0x2400a00,53, 0x2400b00,3, 0x2400b10,13, 0x2400c00,5, 0x2400c20,5, 0x2400c40,18, 0x2401000,6, 0x2401020,4, 0x2401040,16, 0x2402000,20, 0x2402080,15, 0x2402100,20, 0x2402180,15, 0x2402200,23, 0x2402260,7, 0x2402400,11, 0x2402430,3, 0x2402440,3, 0x2402450,3, 0x2402460,24, 0x2402500,11, 0x2402530,3, 0x2402540,3, 0x2402550,3, 0x2402560,24, 0x2402600,11, 0x2402630,3, 0x2402640,3, 0x2402650,3, 0x2402660,24, 0x2402700,11, 0x2402730,3, 0x2402740,3, 0x2402750,3, 0x2402760,24, 0x2402800,4, 0x2402820,16, 0x2402880,10, 0x24028c0,10, 0x2402900,6, 0x2402920,6, 0x2402940,4, 0x2402980,13, 0x24029c0,13, 0x2402a00,9, 0x2403000,14, 0x2403040,9, 0x2403080,6, 0x24030a0,1, 0x24030a8,4, 0x2403100,4, 0x2403200,124, 0x2403400,124, 0x2403600,8, 0x2403624,1, 0x2403644,6, 0x2403664,6, 0x2403680,1, 0x2403688,6, 0x24036a8,22, 0x2404000,1, 0x2404020,3, 0x2404030,2, 0x2404040,3, 0x2404050,2, 0x2404800,53, 0x2404900,3, 0x2404910,13, 0x2404a00,53, 0x2404b00,3, 0x2404b10,13, 0x2404c00,5, 0x2404c20,5, 0x2404c40,18, 0x2405000,6, 0x2405020,4, 0x2405040,16, 0x2406000,20, 0x2406080,15, 0x2406100,20, 0x2406180,15, 0x2406200,23, 0x2406260,7, 0x2406400,11, 0x2406430,3, 0x2406440,3, 0x2406450,3, 0x2406460,24, 0x2406500,11, 0x2406530,3, 0x2406540,3, 0x2406550,3, 0x2406560,24, 0x2406600,11, 0x2406630,3, 0x2406640,3, 0x2406650,3, 0x2406660,24, 0x2406700,11, 0x2406730,3, 0x2406740,3, 0x2406750,3, 0x2406760,24, 0x2406800,4, 0x2406820,16, 0x2406880,10, 0x24068c0,10, 0x2406900,6, 0x2406920,6, 0x2406940,4, 0x2406980,13, 0x24069c0,13, 0x2406a00,9, 0x2407000,14, 0x2407040,9, 0x2407080,6, 0x24070a0,1, 0x24070a8,4, 0x2407100,4, 0x2407200,124, 0x2407400,124, 0x2407600,8, 0x2407624,1, 0x2407644,6, 0x2407664,6, 0x2407680,1, 0x2407688,6, 0x24076a8,22, 0x2408000,84, 0x2408180,20, 0x2408200,5, 0x2408400,11, 0x2408440,11, 0x2408480,19, 0x2408500,19, 0x2408580,24, 0x2408600,13, 0x2408800,84, 0x2408980,20, 0x2408a00,5, 0x2408c00,11, 0x2408c40,11, 0x2408c80,19, 0x2408d00,19, 0x2408d80,24, 0x2408e00,13, 0x2409000,10, 0x2409040,5, 0x2409080,10, 0x24090c0,5, 0x2409100,5, 0x2409200,11, 0x2409230,3, 0x2409240,5, 0x2409260,5, 0x2409280,32, 0x2409400,13, 0x2409440,13, 0x2409480,9, 0x24094c0,1, 0x24094d0,5, 0x24094f0,21, 0x2409800,10, 0x2409840,5, 0x2409880,10, 0x24098c0,5, 0x2409900,5, 0x2409a00,11, 0x2409a30,3, 0x2409a40,5, 0x2409a60,5, 0x2409a80,32, 0x2409c00,13, 0x2409c40,13, 0x2409c80,9, 0x2409cc0,1, 0x2409cd0,5, 0x2409cf0,21, 0x240a000,14, 0x240a040,9, 0x240a080,6, 0x240a0a0,1, 0x240a0a8,4, 0x240a100,7, 0x240a120,3, 0x240a130,25, 0x240c000,26, 0x240c06c,2, 0x240c080,3, 0x240c090,17, 0x240c100,26, 0x240c16c,2, 0x240c180,3, 0x240c190,17, 0x240c200,26, 0x240c26c,2, 0x240c280,3, 0x240c290,17, 0x240c300,26, 0x240c36c,2, 0x240c380,3, 0x240c390,17, 0x240c400,26, 0x240c46c,2, 0x240c480,3, 0x240c490,17, 0x240c500,26, 0x240c56c,2, 0x240c580,3, 0x240c590,17, 0x240c600,26, 0x240c66c,2, 0x240c680,3, 0x240c690,17, 0x240c700,26, 0x240c76c,2, 0x240c780,3, 0x240c790,17, 0x240c800,12, 0x240c844,1, 0x240c854,8, 0x240c880,7, 0x240c8a0,2, 0x240c8ac,2, 0x240c8c0,26, 0x240c980,4, 0x240c9a0,5, 0x240c9c0,1, 0x240d000,3, 0x240d010,3, 0x240d020,3, 0x240d030,3, 0x240d040,3, 0x240d050,3, 0x240d060,3, 0x240d070,3, 0x240d080,5, 0x240d0a0,5, 0x240d0c0,5, 0x240d0e0,5, 0x240d100,5, 0x240d120,5, 0x240d140,5, 0x240d160,5, 0x240d200,68, 0x240d400,1, 0x240d804,1, 0x240d844,54, 0x240da00,11, 0x240da40,11, 0x240da80,11, 0x240dac0,11, 0x240db00,11, 0x240db40,11, 0x240db80,11, 0x240dbc0,11, 0x240dc00,28, 0x240dc80,5, 0x240dca0,2, 0x240e000,4, 0x240e020,6, 0x240e040,6, 0x240e060,14, 0x240e100,26, 0x240e180,15, 0x240e200,14, 0x240e240,9, 0x240e280,6, 0x240e2a0,1, 0x240e2a8,4, 0x240e300,14, 0x240e340,9, 0x240e380,6, 0x240e3a0,4, 0x240e400,9, 0x2420000,1, 0x2421000,977, 0x2422000,161, 0x2423000,977, 0x2424000,977, 0x2425000,977, 0x2426000,977, 0x2427000,977, 0x2428000,977, 0x2429000,977, 0x242a000,977, 0x242b000,161, 0x242c000,12, 0x242c040,14, 0x242c080,20, 0x242c104,1, 0x242c10c,4, 0x242c200,12, 0x242c240,14, 0x242c280,20, 0x242c304,1, 0x242c30c,4, 0x242c400,12, 0x242c440,14, 0x242c480,20, 0x242c504,1, 0x242c50c,4, 0x242c600,12, 0x242c640,14, 0x242c680,20, 0x242c704,1, 0x242c70c,4, 0x242c800,12, 0x242c840,14, 0x242c880,20, 0x242c904,1, 0x242c90c,4, 0x242ca00,12, 0x242ca40,14, 0x242ca80,20, 0x242cb04,1, 0x242cb0c,4, 0x242cc00,12, 0x242cc40,14, 0x242cc80,20, 0x242cd04,1, 0x242cd0c,4, 0x242ce00,12, 0x242ce40,14, 0x242ce80,20, 0x242cf04,1, 0x242cf0c,4, 0x242d000,12, 0x242d040,14, 0x242d080,20, 0x242d104,1, 0x242d10c,4, 0x242d200,17, 0x242d250,2, 0x242d260,4, 0x242e000,1, 0x242e014,1, 0x242e01c,11, 0x242e060,9, 0x242e094,1, 0x242e09c,11, 0x242e0e0,15, 0x242e200,12, 0x242e240,13, 0x242e280,3, 0x242e290,1, 0x2480000,500, 0x2480800,2, 0x2480820,15, 0x2481000,500, 0x2481800,8, 0x2481824,6, 0x2481840,8, 0x2481880,7, 0x24818a0,7, 0x24818c0,7, 0x24818e0,7, 0x2481900,8, 0x2481924,16, 0x2481980,12, 0x2482000,500, 0x2482800,2, 0x2482820,15, 0x2483000,500, 0x2483800,8, 0x2483824,6, 0x2483840,8, 0x2483880,7, 0x24838a0,7, 0x24838c0,7, 0x24838e0,7, 0x2483900,8, 0x2483924,16, 0x2483980,12, 0x2484004,5, 0x2484200,26, 0x2484280,4, 0x24842c0,25, 0x2484340,6, 0x2484360,1, 0x2484368,2, 0x2484374,11, 0x24843a4,10, 0x2484400,1, 0x2488000,52, 0x2488400,82, 0x2488560,6, 0x2488600,41, 0x2488700,2, 0x2488720,19, 0x2488800,25, 0x2488880,1, 0x2488900,28, 0x2488980,1, 0x2489000,52, 0x2489400,82, 0x2489560,6, 0x2489600,41, 0x2489700,2, 0x2489720,19, 0x2489800,25, 0x2489880,1, 0x2489900,28, 0x2489980,1, 0x248a000,7, 0x248a080,6, 0x248a0a0,6, 0x248a0c0,1, 0x248a100,4, 0x248a120,9, 0x248c000,3, 0x248c010,6, 0x248c200,7, 0x248c220,6, 0x248c240,7, 0x248c260,6, 0x248c280,2, 0x248c28c,2, 0x248c2a0,2, 0x248c2ac,2, 0x248c2c0,7, 0x248c2e0,7, 0x248c300,2, 0x248c30c,2, 0x248c320,6, 0x248c400,3, 0x248c440,12, 0x248c800,7, 0x248c820,14, 0x248c880,16, 0x248c900,7, 0x248c920,14, 0x248c980,16, 0x248ca00,6, 0x248ca20,7, 0x248cc00,3, 0x24a0000,3, 0x24a0800,7, 0x24a0820,6, 0x24a0840,6, 0x24a0880,1, 0x24a0894,1, 0x24a089c,2, 0x24a08c0,9, 0x24a0900,18, 0x24a0a00,36, 0x24a0b00,22, 0x24a0b80,18, 0x24a0c00,3, 0x24a0c10,3, 0x24a1000,3, 0x24a1010,2, 0x24a1080,20, 0x24a1100,1, 0x24a1200,26, 0x24a1280,4, 0x24a12c0,25, 0x24a1340,6, 0x24a1360,1, 0x24a1368,2, 0x24a1374,11, 0x24a13a4,4, 0x24a1400,1, 0x24b0000,11, 0x24b0030,19, 0x24b0080,17, 0x24b0100,11, 0x24b0130,19, 0x24b0180,17, 0x24b0200,3, 0x24b0214,1, 0x24b021c,1, 0x24b0280,3, 0x24b0294,1, 0x24b029c,1, 0x24b0300,18, 0x24b0380,18, 0x24b0400,18, 0x24b0480,18, 0x24b0500,18, 0x24b0580,18, 0x24b0600,18, 0x24b0680,18, 0x24b0700,13, 0x24b0738,6, 0x24b0780,13, 0x24b07b8,6, 0x24b0800,1, 0x24b0808,22, 0x24b0880,1, 0x24b0894,13, 0x24b0900,3, 0x24b0910,3, 0x24b0920,3, 0x24b0940,3, 0x24b0954,1, 0x24b095c,1, 0x24b0a00,52, 0x24b0c00,4, 0x24b0d00,34, 0x24b0e00,4, 0x24b0e80,30, 0x24b0f00,1, 0x24b0f40,5, 0x24b0f60,5, 0x24b0f80,6, 0x24b1000,14, 0x24b1040,4, 0x24b1060,17, 0x24b10c0,6, 0x24b10e0,1, 0x24b10e8,2, 0x24b10f4,11, 0x24b1124,17, 0x24b1200,3, 0x24b1210,3, 0x24b1220,3, 0x24b1230,3, 0x24b1240,3, 0x24b1250,3, 0x24b2000,20, 0x24b2080,3, 0x24b2090,1, 0x24b2098,2, 0x24c0000,500, 0x24c0800,2, 0x24c0820,15, 0x24c1000,500, 0x24c1800,8, 0x24c1824,6, 0x24c1840,8, 0x24c1880,7, 0x24c18a0,7, 0x24c18c0,7, 0x24c18e0,7, 0x24c1900,8, 0x24c1924,16, 0x24c1980,12, 0x24c2000,500, 0x24c2800,2, 0x24c2820,15, 0x24c3000,500, 0x24c3800,8, 0x24c3824,6, 0x24c3840,8, 0x24c3880,7, 0x24c38a0,7, 0x24c38c0,7, 0x24c38e0,7, 0x24c3900,8, 0x24c3924,16, 0x24c3980,12, 0x24c4004,5, 0x24c4200,26, 0x24c4280,4, 0x24c42c0,25, 0x24c4340,6, 0x24c4360,1, 0x24c4368,2, 0x24c4374,11, 0x24c43a4,10, 0x24c4400,1, 0x24c8000,52, 0x24c8400,82, 0x24c8560,6, 0x24c8600,41, 0x24c8700,2, 0x24c8720,19, 0x24c8800,25, 0x24c8880,1, 0x24c8900,28, 0x24c8980,1, 0x24c9000,52, 0x24c9400,82, 0x24c9560,6, 0x24c9600,41, 0x24c9700,2, 0x24c9720,19, 0x24c9800,25, 0x24c9880,1, 0x24c9900,28, 0x24c9980,1, 0x24ca000,7, 0x24ca080,6, 0x24ca0a0,6, 0x24ca0c0,1, 0x24ca100,4, 0x24ca120,9, 0x24cc000,3, 0x24cc010,6, 0x24cc200,7, 0x24cc220,6, 0x24cc240,7, 0x24cc260,6, 0x24cc280,2, 0x24cc28c,2, 0x24cc2a0,2, 0x24cc2ac,2, 0x24cc2c0,7, 0x24cc2e0,7, 0x24cc300,2, 0x24cc30c,2, 0x24cc320,6, 0x24cc400,3, 0x24cc440,12, 0x24cc800,7, 0x24cc820,14, 0x24cc880,16, 0x24cc900,7, 0x24cc920,14, 0x24cc980,16, 0x24cca00,6, 0x24cca20,7, 0x24ccc00,3, 0x24e0000,3, 0x24e0800,7, 0x24e0820,6, 0x24e0840,6, 0x24e0880,1, 0x24e0894,1, 0x24e089c,2, 0x24e08c0,9, 0x24e0900,18, 0x24e0a00,36, 0x24e0b00,22, 0x24e0b80,18, 0x24e0c00,3, 0x24e0c10,3, 0x24e1000,3, 0x24e1010,2, 0x24e1080,20, 0x24e1100,1, 0x24e1200,26, 0x24e1280,4, 0x24e12c0,25, 0x24e1340,6, 0x24e1360,1, 0x24e1368,2, 0x24e1374,11, 0x24e13a4,4, 0x24e1400,1, 0x24f0000,11, 0x24f0030,19, 0x24f0080,17, 0x24f0100,11, 0x24f0130,19, 0x24f0180,17, 0x24f0200,3, 0x24f0214,1, 0x24f021c,1, 0x24f0280,3, 0x24f0294,1, 0x24f029c,1, 0x24f0300,18, 0x24f0380,18, 0x24f0400,18, 0x24f0480,18, 0x24f0500,18, 0x24f0580,18, 0x24f0600,18, 0x24f0680,18, 0x24f0700,13, 0x24f0738,6, 0x24f0780,13, 0x24f07b8,6, 0x24f0800,1, 0x24f0808,22, 0x24f0880,1, 0x24f0894,13, 0x24f0900,3, 0x24f0910,3, 0x24f0920,3, 0x24f0940,3, 0x24f0954,1, 0x24f095c,1, 0x24f0a00,52, 0x24f0c00,4, 0x24f0d00,34, 0x24f0e00,4, 0x24f0e80,30, 0x24f0f00,1, 0x24f0f40,5, 0x24f0f60,5, 0x24f0f80,6, 0x24f1000,14, 0x24f1040,4, 0x24f1060,17, 0x24f10c0,6, 0x24f10e0,1, 0x24f10e8,2, 0x24f10f4,11, 0x24f1124,17, 0x24f1200,3, 0x24f1210,3, 0x24f1220,3, 0x24f1230,3, 0x24f1240,3, 0x24f1250,3, 0x24f2000,20, 0x24f2080,3, 0x24f2090,1, 0x24f2098,2, 0x2500000,13, 0x2500038,4, 0x2500050,3, 0x2500060,3, 0x2500070,16, 0x25000c0,5, 0x2500400,14, 0x2500440,2, 0x250044c,3, 0x2500480,14, 0x25004c0,2, 0x25004cc,3, 0x2500500,1, 0x2500508,15, 0x2500560,2, 0x250056c,2, 0x2500600,4, 0x2500680,27, 0x2500800,2, 0x2500900,32, 0x2500984,2, 0x2500990,4, 0x2500a00,26, 0x2500a80,4, 0x2500ac0,25, 0x2500b40,6, 0x2500b60,1, 0x2500b68,2, 0x2500b74,11, 0x2500ba4,8, 0x2500c00,9, 0x2500c40,11, 0x2500c80,23, 0x2500ce0,15, 0x2500d20,15, 0x2500d60,1, 0x2501000,13, 0x2501038,4, 0x2501050,3, 0x2501060,3, 0x2501070,16, 0x25010c0,5, 0x2501400,14, 0x2501440,2, 0x250144c,3, 0x2501480,14, 0x25014c0,2, 0x25014cc,3, 0x2501500,1, 0x2501508,15, 0x2501560,2, 0x250156c,2, 0x2501600,4, 0x2501680,27, 0x2501800,2, 0x2501900,32, 0x2501984,2, 0x2501990,4, 0x2501a00,26, 0x2501a80,4, 0x2501ac0,25, 0x2501b40,6, 0x2501b60,1, 0x2501b68,2, 0x2501b74,11, 0x2501ba4,8, 0x2501c00,9, 0x2501c40,11, 0x2501c80,23, 0x2501ce0,15, 0x2501d20,15, 0x2501d60,1, 0x2502000,1, 0x2502100,36, 0x2502200,7, 0x2510000,22, 0x2510080,22, 0x2510100,12, 0x2510140,12, 0x2510200,52, 0x2510300,52, 0x2510400,11, 0x2510440,11, 0x2510480,3, 0x25104a0,6, 0x25104c0,6, 0x25104e0,3, 0x25104f0,3, 0x2510800,9, 0x2510840,15, 0x2510880,15, 0x25108c0,15, 0x2510900,1, 0x2510914,13, 0x2510980,17, 0x2511000,17, 0x2511080,17, 0x2511104,5, 0x2511120,3, 0x2511130,11, 0x2511200,31, 0x2511280,31, 0x2511300,12, 0x2511340,12, 0x2511380,2, 0x2511390,2, 0x25113a0,3, 0x25113b0,3, 0x25113c0,5, 0x25113e0,5, 0x2511400,3, 0x2511410,3, 0x2511420,3, 0x2511430,3, 0x2511440,3, 0x2511450,3, 0x2511460,7, 0x2511800,26, 0x2511880,4, 0x25118c0,25, 0x2511940,6, 0x2511960,1, 0x2511968,2, 0x2511974,11, 0x25119a4,12, 0x2511a00,4, 0x2511b00,43, 0x2511c00,4, 0x2511c20,7, 0x2511c40,3, 0x2511c50,1, 0x2511c60,3, 0x2511e00,32, 0x2511e84,1, 0x2511e90,4, 0x2511ea4,1, 0x2511eb4,14, 0x2511ef0,2, 0x2511f04,1, 0x2511f10,8, 0x2511f34,6, 0x2512000,3, 0x2512010,21, 0x2512080,1, 0x2512094,1, 0x251209c,5, 0x2512100,15, 0x2512140,1, 0x2512180,6, 0x2514000,22, 0x2514080,22, 0x2514100,12, 0x2514140,12, 0x2514200,52, 0x2514300,52, 0x2514400,11, 0x2514440,11, 0x2514480,3, 0x25144a0,6, 0x25144c0,6, 0x25144e0,3, 0x25144f0,3, 0x2514800,9, 0x2514840,15, 0x2514880,15, 0x25148c0,15, 0x2514900,1, 0x2514914,13, 0x2514980,17, 0x2515000,17, 0x2515080,17, 0x2515104,5, 0x2515120,3, 0x2515130,11, 0x2515200,31, 0x2515280,31, 0x2515300,12, 0x2515340,12, 0x2515380,2, 0x2515390,2, 0x25153a0,3, 0x25153b0,3, 0x25153c0,5, 0x25153e0,5, 0x2515400,3, 0x2515410,3, 0x2515420,3, 0x2515430,3, 0x2515440,3, 0x2515450,3, 0x2515460,7, 0x2515800,26, 0x2515880,4, 0x25158c0,25, 0x2515940,6, 0x2515960,1, 0x2515968,2, 0x2515974,11, 0x25159a4,12, 0x2515a00,4, 0x2515b00,43, 0x2515c00,4, 0x2515c20,7, 0x2515c40,3, 0x2515c50,1, 0x2515c60,3, 0x2515e00,32, 0x2515e84,1, 0x2515e90,4, 0x2515ea4,1, 0x2515eb4,14, 0x2515ef0,2, 0x2515f04,1, 0x2515f10,8, 0x2515f34,6, 0x2516000,3, 0x2516010,21, 0x2516080,1, 0x2516094,1, 0x251609c,5, 0x2516100,15, 0x2516140,1, 0x2516180,6, 0x2518000,100, 0x2518200,3, 0x2518210,5, 0x2520000,12, 0x2520040,2, 0x2520050,3, 0x2522000,1006, 0x2523000,31, 0x2523084,6, 0x2524004,1, 0x252400c,3, 0x2524200,23, 0x2524280,23, 0x2524300,1, 0x2524400,1, 0x2524800,122, 0x2524a00,122, 0x2524c04,63, 0x2524d04,1, 0x2524d10,5, 0x2524d40,6, 0x2524d60,5, 0x2526000,1, 0x2526100,1, 0x2526108,3, 0x2526120,2, 0x2526134,8, 0x2526160,2, 0x2526174,8, 0x25261a0,4, 0x2526200,54, 0x2526800,5, 0x2526820,2, 0x2526834,1, 0x252683c,1, 0x2526a00,24, 0x2526a80,24, 0x2526b00,1, 0x2526c00,6, 0x2526c24,5, 0x2526c40,16, 0x2527000,1, 0x2527020,5, 0x2527040,1, 0x2527048,2, 0x2527080,1, 0x2527100,4, 0x2527180,24, 0x2527200,4, 0x2527280,27, 0x2527300,2, 0x252730c,3, 0x2528004,1, 0x252800c,3, 0x2528020,1, 0x2528100,2, 0x2528110,3, 0x2528120,2, 0x2528140,10, 0x2528180,13, 0x2528200,2, 0x2528210,3, 0x2528220,2, 0x2528240,10, 0x2528280,13, 0x2528400,14, 0x2528440,3, 0x2528450,3, 0x2528460,1, 0x2528500,36, 0x2528600,10, 0x2528640,5, 0x2528660,5, 0x2528700,27, 0x2528780,7, 0x25287a0,8, 0x2528800,27, 0x2528880,7, 0x25288a0,8, 0x2528900,27, 0x2528980,7, 0x25289a0,8, 0x2528a00,27, 0x2528a80,7, 0x2528aa0,8, 0x2528b00,48, 0x2528bc4,8, 0x2528bf0,30, 0x2528c80,4, 0x2528cc0,25, 0x2528d40,6, 0x2528d60,1, 0x2528d68,2, 0x2528d74,3, 0x2528e00,8, 0x2528e24,28, 0x2529000,4, 0x2529080,23, 0x2529100,14, 0x2529140,9, 0x2529200,10, 0x2529230,3, 0x2529240,5, 0x2529260,5, 0x2529280,9, 0x2529400,67, 0x2529600,10, 0x2530000,12, 0x2530040,2, 0x2530050,3, 0x2532000,1006, 0x2533000,31, 0x2533084,6, 0x2534004,1, 0x253400c,3, 0x2534200,23, 0x2534280,23, 0x2534300,1, 0x2534400,1, 0x2534800,122, 0x2534a00,122, 0x2534c04,63, 0x2534d04,1, 0x2534d10,5, 0x2534d40,6, 0x2534d60,5, 0x2536000,1, 0x2536100,1, 0x2536108,3, 0x2536120,2, 0x2536134,8, 0x2536160,2, 0x2536174,8, 0x25361a0,4, 0x2536200,54, 0x2536800,5, 0x2536820,2, 0x2536834,1, 0x253683c,1, 0x2536a00,24, 0x2536a80,24, 0x2536b00,1, 0x2536c00,6, 0x2536c24,5, 0x2536c40,16, 0x2537000,1, 0x2537020,5, 0x2537040,1, 0x2537048,2, 0x2537080,1, 0x2537100,4, 0x2537180,24, 0x2537200,4, 0x2537280,27, 0x2537300,2, 0x253730c,3, 0x2538004,1, 0x253800c,3, 0x2538020,1, 0x2538100,2, 0x2538110,3, 0x2538120,2, 0x2538140,10, 0x2538180,13, 0x2538200,2, 0x2538210,3, 0x2538220,2, 0x2538240,10, 0x2538280,13, 0x2538400,14, 0x2538440,3, 0x2538450,3, 0x2538460,1, 0x2538500,36, 0x2538600,10, 0x2538640,5, 0x2538660,5, 0x2538700,27, 0x2538780,7, 0x25387a0,8, 0x2538800,27, 0x2538880,7, 0x25388a0,8, 0x2538900,27, 0x2538980,7, 0x25389a0,8, 0x2538a00,27, 0x2538a80,7, 0x2538aa0,8, 0x2538b00,48, 0x2538bc4,8, 0x2538bf0,30, 0x2538c80,4, 0x2538cc0,25, 0x2538d40,6, 0x2538d60,1, 0x2538d68,2, 0x2538d74,3, 0x2538e00,8, 0x2538e24,28, 0x2539000,4, 0x2539080,23, 0x2539100,14, 0x2539140,9, 0x2539200,10, 0x2539230,3, 0x2539240,5, 0x2539260,5, 0x2539280,9, 0x2539400,67, 0x2539600,10, 0x2600000,1, 0x2600020,3, 0x2600030,2, 0x2600040,3, 0x2600050,2, 0x2600800,53, 0x2600900,3, 0x2600910,13, 0x2600a00,53, 0x2600b00,3, 0x2600b10,13, 0x2600c00,5, 0x2600c20,5, 0x2600c40,18, 0x2601000,6, 0x2601020,4, 0x2601040,16, 0x2602000,20, 0x2602080,15, 0x2602100,20, 0x2602180,15, 0x2602200,23, 0x2602260,7, 0x2602400,11, 0x2602430,3, 0x2602440,3, 0x2602450,3, 0x2602460,24, 0x2602500,11, 0x2602530,3, 0x2602540,3, 0x2602550,3, 0x2602560,24, 0x2602600,11, 0x2602630,3, 0x2602640,3, 0x2602650,3, 0x2602660,24, 0x2602700,11, 0x2602730,3, 0x2602740,3, 0x2602750,3, 0x2602760,24, 0x2602800,4, 0x2602820,16, 0x2602880,10, 0x26028c0,10, 0x2602900,6, 0x2602920,6, 0x2602940,4, 0x2602980,13, 0x26029c0,13, 0x2602a00,9, 0x2603000,14, 0x2603040,9, 0x2603080,6, 0x26030a0,1, 0x26030a8,4, 0x2603100,4, 0x2603200,124, 0x2603400,124, 0x2603600,8, 0x2603624,1, 0x2603644,6, 0x2603664,6, 0x2603680,1, 0x2603688,6, 0x26036a8,22, 0x2604000,1, 0x2604020,3, 0x2604030,2, 0x2604040,3, 0x2604050,2, 0x2604800,53, 0x2604900,3, 0x2604910,13, 0x2604a00,53, 0x2604b00,3, 0x2604b10,13, 0x2604c00,5, 0x2604c20,5, 0x2604c40,18, 0x2605000,6, 0x2605020,4, 0x2605040,16, 0x2606000,20, 0x2606080,15, 0x2606100,20, 0x2606180,15, 0x2606200,23, 0x2606260,7, 0x2606400,11, 0x2606430,3, 0x2606440,3, 0x2606450,3, 0x2606460,24, 0x2606500,11, 0x2606530,3, 0x2606540,3, 0x2606550,3, 0x2606560,24, 0x2606600,11, 0x2606630,3, 0x2606640,3, 0x2606650,3, 0x2606660,24, 0x2606700,11, 0x2606730,3, 0x2606740,3, 0x2606750,3, 0x2606760,24, 0x2606800,4, 0x2606820,16, 0x2606880,10, 0x26068c0,10, 0x2606900,6, 0x2606920,6, 0x2606940,4, 0x2606980,13, 0x26069c0,13, 0x2606a00,9, 0x2607000,14, 0x2607040,9, 0x2607080,6, 0x26070a0,1, 0x26070a8,4, 0x2607100,4, 0x2607200,124, 0x2607400,124, 0x2607600,8, 0x2607624,1, 0x2607644,6, 0x2607664,6, 0x2607680,1, 0x2607688,6, 0x26076a8,22, 0x2608000,84, 0x2608180,20, 0x2608200,5, 0x2608400,11, 0x2608440,11, 0x2608480,19, 0x2608500,19, 0x2608580,24, 0x2608600,13, 0x2608800,84, 0x2608980,20, 0x2608a00,5, 0x2608c00,11, 0x2608c40,11, 0x2608c80,19, 0x2608d00,19, 0x2608d80,24, 0x2608e00,13, 0x2609000,10, 0x2609040,5, 0x2609080,10, 0x26090c0,5, 0x2609100,5, 0x2609200,11, 0x2609230,3, 0x2609240,5, 0x2609260,5, 0x2609280,32, 0x2609400,13, 0x2609440,13, 0x2609480,9, 0x26094c0,1, 0x26094d0,5, 0x26094f0,21, 0x2609800,10, 0x2609840,5, 0x2609880,10, 0x26098c0,5, 0x2609900,5, 0x2609a00,11, 0x2609a30,3, 0x2609a40,5, 0x2609a60,5, 0x2609a80,32, 0x2609c00,13, 0x2609c40,13, 0x2609c80,9, 0x2609cc0,1, 0x2609cd0,5, 0x2609cf0,21, 0x260a000,14, 0x260a040,9, 0x260a080,6, 0x260a0a0,1, 0x260a0a8,4, 0x260a100,7, 0x260a120,3, 0x260a130,25, 0x260c000,26, 0x260c06c,2, 0x260c080,3, 0x260c090,17, 0x260c100,26, 0x260c16c,2, 0x260c180,3, 0x260c190,17, 0x260c200,26, 0x260c26c,2, 0x260c280,3, 0x260c290,17, 0x260c300,26, 0x260c36c,2, 0x260c380,3, 0x260c390,17, 0x260c400,26, 0x260c46c,2, 0x260c480,3, 0x260c490,17, 0x260c500,26, 0x260c56c,2, 0x260c580,3, 0x260c590,17, 0x260c600,26, 0x260c66c,2, 0x260c680,3, 0x260c690,17, 0x260c700,26, 0x260c76c,2, 0x260c780,3, 0x260c790,17, 0x260c800,12, 0x260c844,1, 0x260c854,8, 0x260c880,7, 0x260c8a0,2, 0x260c8ac,2, 0x260c8c0,26, 0x260c980,4, 0x260c9a0,5, 0x260c9c0,1, 0x260d000,3, 0x260d010,3, 0x260d020,3, 0x260d030,3, 0x260d040,3, 0x260d050,3, 0x260d060,3, 0x260d070,3, 0x260d080,5, 0x260d0a0,5, 0x260d0c0,5, 0x260d0e0,5, 0x260d100,5, 0x260d120,5, 0x260d140,5, 0x260d160,5, 0x260d200,68, 0x260d400,1, 0x260d804,1, 0x260d844,54, 0x260da00,11, 0x260da40,11, 0x260da80,11, 0x260dac0,11, 0x260db00,11, 0x260db40,11, 0x260db80,11, 0x260dbc0,11, 0x260dc00,28, 0x260dc80,5, 0x260dca0,2, 0x260e000,4, 0x260e020,6, 0x260e040,6, 0x260e060,14, 0x260e100,26, 0x260e180,15, 0x260e200,14, 0x260e240,9, 0x260e280,6, 0x260e2a0,1, 0x260e2a8,4, 0x260e300,14, 0x260e340,9, 0x260e380,6, 0x260e3a0,4, 0x260e400,9, 0x2620000,1, 0x2621000,977, 0x2622000,161, 0x2623000,977, 0x2624000,977, 0x2625000,977, 0x2626000,977, 0x2627000,977, 0x2628000,977, 0x2629000,977, 0x262a000,977, 0x262b000,161, 0x262c000,12, 0x262c040,14, 0x262c080,20, 0x262c104,1, 0x262c10c,4, 0x262c200,12, 0x262c240,14, 0x262c280,20, 0x262c304,1, 0x262c30c,4, 0x262c400,12, 0x262c440,14, 0x262c480,20, 0x262c504,1, 0x262c50c,4, 0x262c600,12, 0x262c640,14, 0x262c680,20, 0x262c704,1, 0x262c70c,4, 0x262c800,12, 0x262c840,14, 0x262c880,20, 0x262c904,1, 0x262c90c,4, 0x262ca00,12, 0x262ca40,14, 0x262ca80,20, 0x262cb04,1, 0x262cb0c,4, 0x262cc00,12, 0x262cc40,14, 0x262cc80,20, 0x262cd04,1, 0x262cd0c,4, 0x262ce00,12, 0x262ce40,14, 0x262ce80,20, 0x262cf04,1, 0x262cf0c,4, 0x262d000,12, 0x262d040,14, 0x262d080,20, 0x262d104,1, 0x262d10c,4, 0x262d200,17, 0x262d250,2, 0x262d260,4, 0x262e000,1, 0x262e014,1, 0x262e01c,11, 0x262e060,9, 0x262e094,1, 0x262e09c,11, 0x262e0e0,15, 0x262e200,12, 0x262e240,13, 0x262e280,3, 0x262e290,1, 0x2680000,500, 0x2680800,2, 0x2680820,15, 0x2681000,500, 0x2681800,8, 0x2681824,6, 0x2681840,8, 0x2681880,7, 0x26818a0,7, 0x26818c0,7, 0x26818e0,7, 0x2681900,8, 0x2681924,16, 0x2681980,12, 0x2682000,500, 0x2682800,2, 0x2682820,15, 0x2683000,500, 0x2683800,8, 0x2683824,6, 0x2683840,8, 0x2683880,7, 0x26838a0,7, 0x26838c0,7, 0x26838e0,7, 0x2683900,8, 0x2683924,16, 0x2683980,12, 0x2684004,5, 0x2684200,26, 0x2684280,4, 0x26842c0,25, 0x2684340,6, 0x2684360,1, 0x2684368,2, 0x2684374,11, 0x26843a4,10, 0x2684400,1, 0x2688000,52, 0x2688400,82, 0x2688560,6, 0x2688600,41, 0x2688700,2, 0x2688720,19, 0x2688800,25, 0x2688880,1, 0x2688900,28, 0x2688980,1, 0x2689000,52, 0x2689400,82, 0x2689560,6, 0x2689600,41, 0x2689700,2, 0x2689720,19, 0x2689800,25, 0x2689880,1, 0x2689900,28, 0x2689980,1, 0x268a000,7, 0x268a080,6, 0x268a0a0,6, 0x268a0c0,1, 0x268a100,4, 0x268a120,9, 0x268c000,3, 0x268c010,6, 0x268c200,7, 0x268c220,6, 0x268c240,7, 0x268c260,6, 0x268c280,2, 0x268c28c,2, 0x268c2a0,2, 0x268c2ac,2, 0x268c2c0,7, 0x268c2e0,7, 0x268c300,2, 0x268c30c,2, 0x268c320,6, 0x268c400,3, 0x268c440,12, 0x268c800,7, 0x268c820,14, 0x268c880,16, 0x268c900,7, 0x268c920,14, 0x268c980,16, 0x268ca00,6, 0x268ca20,7, 0x268cc00,3, 0x26a0000,3, 0x26a0800,7, 0x26a0820,6, 0x26a0840,6, 0x26a0880,1, 0x26a0894,1, 0x26a089c,2, 0x26a08c0,9, 0x26a0900,18, 0x26a0a00,36, 0x26a0b00,22, 0x26a0b80,18, 0x26a0c00,3, 0x26a0c10,3, 0x26a1000,3, 0x26a1010,2, 0x26a1080,20, 0x26a1100,1, 0x26a1200,26, 0x26a1280,4, 0x26a12c0,25, 0x26a1340,6, 0x26a1360,1, 0x26a1368,2, 0x26a1374,11, 0x26a13a4,4, 0x26a1400,1, 0x26b0000,11, 0x26b0030,19, 0x26b0080,17, 0x26b0100,11, 0x26b0130,19, 0x26b0180,17, 0x26b0200,3, 0x26b0214,1, 0x26b021c,1, 0x26b0280,3, 0x26b0294,1, 0x26b029c,1, 0x26b0300,18, 0x26b0380,18, 0x26b0400,18, 0x26b0480,18, 0x26b0500,18, 0x26b0580,18, 0x26b0600,18, 0x26b0680,18, 0x26b0700,13, 0x26b0738,6, 0x26b0780,13, 0x26b07b8,6, 0x26b0800,1, 0x26b0808,22, 0x26b0880,1, 0x26b0894,13, 0x26b0900,3, 0x26b0910,3, 0x26b0920,3, 0x26b0940,3, 0x26b0954,1, 0x26b095c,1, 0x26b0a00,52, 0x26b0c00,4, 0x26b0d00,34, 0x26b0e00,4, 0x26b0e80,30, 0x26b0f00,1, 0x26b0f40,5, 0x26b0f60,5, 0x26b0f80,6, 0x26b1000,14, 0x26b1040,4, 0x26b1060,17, 0x26b10c0,6, 0x26b10e0,1, 0x26b10e8,2, 0x26b10f4,11, 0x26b1124,17, 0x26b1200,3, 0x26b1210,3, 0x26b1220,3, 0x26b1230,3, 0x26b1240,3, 0x26b1250,3, 0x26b2000,20, 0x26b2080,3, 0x26b2090,1, 0x26b2098,2, 0x26c0000,500, 0x26c0800,2, 0x26c0820,15, 0x26c1000,500, 0x26c1800,8, 0x26c1824,6, 0x26c1840,8, 0x26c1880,7, 0x26c18a0,7, 0x26c18c0,7, 0x26c18e0,7, 0x26c1900,8, 0x26c1924,16, 0x26c1980,12, 0x26c2000,500, 0x26c2800,2, 0x26c2820,15, 0x26c3000,500, 0x26c3800,8, 0x26c3824,6, 0x26c3840,8, 0x26c3880,7, 0x26c38a0,7, 0x26c38c0,7, 0x26c38e0,7, 0x26c3900,8, 0x26c3924,16, 0x26c3980,12, 0x26c4004,5, 0x26c4200,26, 0x26c4280,4, 0x26c42c0,25, 0x26c4340,6, 0x26c4360,1, 0x26c4368,2, 0x26c4374,11, 0x26c43a4,10, 0x26c4400,1, 0x26c8000,52, 0x26c8400,82, 0x26c8560,6, 0x26c8600,41, 0x26c8700,2, 0x26c8720,19, 0x26c8800,25, 0x26c8880,1, 0x26c8900,28, 0x26c8980,1, 0x26c9000,52, 0x26c9400,82, 0x26c9560,6, 0x26c9600,41, 0x26c9700,2, 0x26c9720,19, 0x26c9800,25, 0x26c9880,1, 0x26c9900,28, 0x26c9980,1, 0x26ca000,7, 0x26ca080,6, 0x26ca0a0,6, 0x26ca0c0,1, 0x26ca100,4, 0x26ca120,9, 0x26cc000,3, 0x26cc010,6, 0x26cc200,7, 0x26cc220,6, 0x26cc240,7, 0x26cc260,6, 0x26cc280,2, 0x26cc28c,2, 0x26cc2a0,2, 0x26cc2ac,2, 0x26cc2c0,7, 0x26cc2e0,7, 0x26cc300,2, 0x26cc30c,2, 0x26cc320,6, 0x26cc400,3, 0x26cc440,12, 0x26cc800,7, 0x26cc820,14, 0x26cc880,16, 0x26cc900,7, 0x26cc920,14, 0x26cc980,16, 0x26cca00,6, 0x26cca20,7, 0x26ccc00,3, 0x26e0000,3, 0x26e0800,7, 0x26e0820,6, 0x26e0840,6, 0x26e0880,1, 0x26e0894,1, 0x26e089c,2, 0x26e08c0,9, 0x26e0900,18, 0x26e0a00,36, 0x26e0b00,22, 0x26e0b80,18, 0x26e0c00,3, 0x26e0c10,3, 0x26e1000,3, 0x26e1010,2, 0x26e1080,20, 0x26e1100,1, 0x26e1200,26, 0x26e1280,4, 0x26e12c0,25, 0x26e1340,6, 0x26e1360,1, 0x26e1368,2, 0x26e1374,11, 0x26e13a4,4, 0x26e1400,1, 0x26f0000,11, 0x26f0030,19, 0x26f0080,17, 0x26f0100,11, 0x26f0130,19, 0x26f0180,17, 0x26f0200,3, 0x26f0214,1, 0x26f021c,1, 0x26f0280,3, 0x26f0294,1, 0x26f029c,1, 0x26f0300,18, 0x26f0380,18, 0x26f0400,18, 0x26f0480,18, 0x26f0500,18, 0x26f0580,18, 0x26f0600,18, 0x26f0680,18, 0x26f0700,13, 0x26f0738,6, 0x26f0780,13, 0x26f07b8,6, 0x26f0800,1, 0x26f0808,22, 0x26f0880,1, 0x26f0894,13, 0x26f0900,3, 0x26f0910,3, 0x26f0920,3, 0x26f0940,3, 0x26f0954,1, 0x26f095c,1, 0x26f0a00,52, 0x26f0c00,4, 0x26f0d00,34, 0x26f0e00,4, 0x26f0e80,30, 0x26f0f00,1, 0x26f0f40,5, 0x26f0f60,5, 0x26f0f80,6, 0x26f1000,14, 0x26f1040,4, 0x26f1060,17, 0x26f10c0,6, 0x26f10e0,1, 0x26f10e8,2, 0x26f10f4,11, 0x26f1124,17, 0x26f1200,3, 0x26f1210,3, 0x26f1220,3, 0x26f1230,3, 0x26f1240,3, 0x26f1250,3, 0x26f2000,20, 0x26f2080,3, 0x26f2090,1, 0x26f2098,2, 0x2700000,13, 0x2700038,4, 0x2700050,3, 0x2700060,3, 0x2700070,16, 0x27000c0,5, 0x2700400,14, 0x2700440,2, 0x270044c,3, 0x2700480,14, 0x27004c0,2, 0x27004cc,3, 0x2700500,1, 0x2700508,15, 0x2700560,2, 0x270056c,2, 0x2700600,4, 0x2700680,27, 0x2700800,2, 0x2700900,32, 0x2700984,2, 0x2700990,4, 0x2700a00,26, 0x2700a80,4, 0x2700ac0,25, 0x2700b40,6, 0x2700b60,1, 0x2700b68,2, 0x2700b74,11, 0x2700ba4,8, 0x2700c00,9, 0x2700c40,11, 0x2700c80,23, 0x2700ce0,15, 0x2700d20,15, 0x2700d60,1, 0x2701000,13, 0x2701038,4, 0x2701050,3, 0x2701060,3, 0x2701070,16, 0x27010c0,5, 0x2701400,14, 0x2701440,2, 0x270144c,3, 0x2701480,14, 0x27014c0,2, 0x27014cc,3, 0x2701500,1, 0x2701508,15, 0x2701560,2, 0x270156c,2, 0x2701600,4, 0x2701680,27, 0x2701800,2, 0x2701900,32, 0x2701984,2, 0x2701990,4, 0x2701a00,26, 0x2701a80,4, 0x2701ac0,25, 0x2701b40,6, 0x2701b60,1, 0x2701b68,2, 0x2701b74,11, 0x2701ba4,8, 0x2701c00,9, 0x2701c40,11, 0x2701c80,23, 0x2701ce0,15, 0x2701d20,15, 0x2701d60,1, 0x2702000,1, 0x2702100,36, 0x2702200,7, 0x2710000,22, 0x2710080,22, 0x2710100,12, 0x2710140,12, 0x2710200,52, 0x2710300,52, 0x2710400,11, 0x2710440,11, 0x2710480,3, 0x27104a0,6, 0x27104c0,6, 0x27104e0,3, 0x27104f0,3, 0x2710800,9, 0x2710840,15, 0x2710880,15, 0x27108c0,15, 0x2710900,1, 0x2710914,13, 0x2710980,17, 0x2711000,17, 0x2711080,17, 0x2711104,5, 0x2711120,3, 0x2711130,11, 0x2711200,31, 0x2711280,31, 0x2711300,12, 0x2711340,12, 0x2711380,2, 0x2711390,2, 0x27113a0,3, 0x27113b0,3, 0x27113c0,5, 0x27113e0,5, 0x2711400,3, 0x2711410,3, 0x2711420,3, 0x2711430,3, 0x2711440,3, 0x2711450,3, 0x2711460,7, 0x2711800,26, 0x2711880,4, 0x27118c0,25, 0x2711940,6, 0x2711960,1, 0x2711968,2, 0x2711974,11, 0x27119a4,12, 0x2711a00,4, 0x2711b00,43, 0x2711c00,4, 0x2711c20,7, 0x2711c40,3, 0x2711c50,1, 0x2711c60,3, 0x2711e00,32, 0x2711e84,1, 0x2711e90,4, 0x2711ea4,1, 0x2711eb4,14, 0x2711ef0,2, 0x2711f04,1, 0x2711f10,8, 0x2711f34,6, 0x2712000,3, 0x2712010,21, 0x2712080,1, 0x2712094,1, 0x271209c,5, 0x2712100,15, 0x2712140,1, 0x2712180,6, 0x2714000,22, 0x2714080,22, 0x2714100,12, 0x2714140,12, 0x2714200,52, 0x2714300,52, 0x2714400,11, 0x2714440,11, 0x2714480,3, 0x27144a0,6, 0x27144c0,6, 0x27144e0,3, 0x27144f0,3, 0x2714800,9, 0x2714840,15, 0x2714880,15, 0x27148c0,15, 0x2714900,1, 0x2714914,13, 0x2714980,17, 0x2715000,17, 0x2715080,17, 0x2715104,5, 0x2715120,3, 0x2715130,11, 0x2715200,31, 0x2715280,31, 0x2715300,12, 0x2715340,12, 0x2715380,2, 0x2715390,2, 0x27153a0,3, 0x27153b0,3, 0x27153c0,5, 0x27153e0,5, 0x2715400,3, 0x2715410,3, 0x2715420,3, 0x2715430,3, 0x2715440,3, 0x2715450,3, 0x2715460,7, 0x2715800,26, 0x2715880,4, 0x27158c0,25, 0x2715940,6, 0x2715960,1, 0x2715968,2, 0x2715974,11, 0x27159a4,12, 0x2715a00,4, 0x2715b00,43, 0x2715c00,4, 0x2715c20,7, 0x2715c40,3, 0x2715c50,1, 0x2715c60,3, 0x2715e00,32, 0x2715e84,1, 0x2715e90,4, 0x2715ea4,1, 0x2715eb4,14, 0x2715ef0,2, 0x2715f04,1, 0x2715f10,8, 0x2715f34,6, 0x2716000,3, 0x2716010,21, 0x2716080,1, 0x2716094,1, 0x271609c,5, 0x2716100,15, 0x2716140,1, 0x2716180,6, 0x2718000,100, 0x2718200,3, 0x2718210,5, 0x2720000,12, 0x2720040,2, 0x2720050,3, 0x2722000,1006, 0x2723000,31, 0x2723084,6, 0x2724004,1, 0x272400c,3, 0x2724200,23, 0x2724280,23, 0x2724300,1, 0x2724400,1, 0x2724800,122, 0x2724a00,122, 0x2724c04,63, 0x2724d04,1, 0x2724d10,5, 0x2724d40,6, 0x2724d60,5, 0x2726000,1, 0x2726100,1, 0x2726108,3, 0x2726120,2, 0x2726134,8, 0x2726160,2, 0x2726174,8, 0x27261a0,4, 0x2726200,54, 0x2726800,5, 0x2726820,2, 0x2726834,1, 0x272683c,1, 0x2726a00,24, 0x2726a80,24, 0x2726b00,1, 0x2726c00,6, 0x2726c24,5, 0x2726c40,16, 0x2727000,1, 0x2727020,5, 0x2727040,1, 0x2727048,2, 0x2727080,1, 0x2727100,4, 0x2727180,24, 0x2727200,4, 0x2727280,27, 0x2727300,2, 0x272730c,3, 0x2728004,1, 0x272800c,3, 0x2728020,1, 0x2728100,2, 0x2728110,3, 0x2728120,2, 0x2728140,10, 0x2728180,13, 0x2728200,2, 0x2728210,3, 0x2728220,2, 0x2728240,10, 0x2728280,13, 0x2728400,14, 0x2728440,3, 0x2728450,3, 0x2728460,1, 0x2728500,36, 0x2728600,10, 0x2728640,5, 0x2728660,5, 0x2728700,27, 0x2728780,7, 0x27287a0,8, 0x2728800,27, 0x2728880,7, 0x27288a0,8, 0x2728900,27, 0x2728980,7, 0x27289a0,8, 0x2728a00,27, 0x2728a80,7, 0x2728aa0,8, 0x2728b00,48, 0x2728bc4,8, 0x2728bf0,30, 0x2728c80,4, 0x2728cc0,25, 0x2728d40,6, 0x2728d60,1, 0x2728d68,2, 0x2728d74,3, 0x2728e00,8, 0x2728e24,28, 0x2729000,4, 0x2729080,23, 0x2729100,14, 0x2729140,9, 0x2729200,10, 0x2729230,3, 0x2729240,5, 0x2729260,5, 0x2729280,9, 0x2729400,67, 0x2729600,10, 0x2730000,12, 0x2730040,2, 0x2730050,3, 0x2732000,1006, 0x2733000,31, 0x2733084,6, 0x2734004,1, 0x273400c,3, 0x2734200,23, 0x2734280,23, 0x2734300,1, 0x2734400,1, 0x2734800,122, 0x2734a00,122, 0x2734c04,63, 0x2734d04,1, 0x2734d10,5, 0x2734d40,6, 0x2734d60,5, 0x2736000,1, 0x2736100,1, 0x2736108,3, 0x2736120,2, 0x2736134,8, 0x2736160,2, 0x2736174,8, 0x27361a0,4, 0x2736200,54, 0x2736800,5, 0x2736820,2, 0x2736834,1, 0x273683c,1, 0x2736a00,24, 0x2736a80,24, 0x2736b00,1, 0x2736c00,6, 0x2736c24,5, 0x2736c40,16, 0x2737000,1, 0x2737020,5, 0x2737040,1, 0x2737048,2, 0x2737080,1, 0x2737100,4, 0x2737180,24, 0x2737200,4, 0x2737280,27, 0x2737300,2, 0x273730c,3, 0x2738004,1, 0x273800c,3, 0x2738020,1, 0x2738100,2, 0x2738110,3, 0x2738120,2, 0x2738140,10, 0x2738180,13, 0x2738200,2, 0x2738210,3, 0x2738220,2, 0x2738240,10, 0x2738280,13, 0x2738400,14, 0x2738440,3, 0x2738450,3, 0x2738460,1, 0x2738500,36, 0x2738600,10, 0x2738640,5, 0x2738660,5, 0x2738700,27, 0x2738780,7, 0x27387a0,8, 0x2738800,27, 0x2738880,7, 0x27388a0,8, 0x2738900,27, 0x2738980,7, 0x27389a0,8, 0x2738a00,27, 0x2738a80,7, 0x2738aa0,8, 0x2738b00,48, 0x2738bc4,8, 0x2738bf0,30, 0x2738c80,4, 0x2738cc0,25, 0x2738d40,6, 0x2738d60,1, 0x2738d68,2, 0x2738d74,3, 0x2738e00,8, 0x2738e24,28, 0x2739000,4, 0x2739080,23, 0x2739100,14, 0x2739140,9, 0x2739200,10, 0x2739230,3, 0x2739240,5, 0x2739260,5, 0x2739280,9, 0x2739400,67, 0x2739600,10, 0x2800000,1, 0x2800020,3, 0x2800030,2, 0x2800040,3, 0x2800050,2, 0x2800800,53, 0x2800900,3, 0x2800910,13, 0x2800a00,53, 0x2800b00,3, 0x2800b10,13, 0x2800c00,5, 0x2800c20,5, 0x2800c40,18, 0x2801000,6, 0x2801020,4, 0x2801040,16, 0x2802000,20, 0x2802080,15, 0x2802100,20, 0x2802180,15, 0x2802200,23, 0x2802260,7, 0x2802400,11, 0x2802430,3, 0x2802440,3, 0x2802450,3, 0x2802460,24, 0x2802500,11, 0x2802530,3, 0x2802540,3, 0x2802550,3, 0x2802560,24, 0x2802600,11, 0x2802630,3, 0x2802640,3, 0x2802650,3, 0x2802660,24, 0x2802700,11, 0x2802730,3, 0x2802740,3, 0x2802750,3, 0x2802760,24, 0x2802800,4, 0x2802820,16, 0x2802880,10, 0x28028c0,10, 0x2802900,6, 0x2802920,6, 0x2802940,4, 0x2802980,13, 0x28029c0,13, 0x2802a00,9, 0x2803000,14, 0x2803040,9, 0x2803080,6, 0x28030a0,1, 0x28030a8,4, 0x2803100,4, 0x2803200,124, 0x2803400,124, 0x2803600,8, 0x2803624,1, 0x2803644,6, 0x2803664,6, 0x2803680,1, 0x2803688,6, 0x28036a8,22, 0x2804000,1, 0x2804020,3, 0x2804030,2, 0x2804040,3, 0x2804050,2, 0x2804800,53, 0x2804900,3, 0x2804910,13, 0x2804a00,53, 0x2804b00,3, 0x2804b10,13, 0x2804c00,5, 0x2804c20,5, 0x2804c40,18, 0x2805000,6, 0x2805020,4, 0x2805040,16, 0x2806000,20, 0x2806080,15, 0x2806100,20, 0x2806180,15, 0x2806200,23, 0x2806260,7, 0x2806400,11, 0x2806430,3, 0x2806440,3, 0x2806450,3, 0x2806460,24, 0x2806500,11, 0x2806530,3, 0x2806540,3, 0x2806550,3, 0x2806560,24, 0x2806600,11, 0x2806630,3, 0x2806640,3, 0x2806650,3, 0x2806660,24, 0x2806700,11, 0x2806730,3, 0x2806740,3, 0x2806750,3, 0x2806760,24, 0x2806800,4, 0x2806820,16, 0x2806880,10, 0x28068c0,10, 0x2806900,6, 0x2806920,6, 0x2806940,4, 0x2806980,13, 0x28069c0,13, 0x2806a00,9, 0x2807000,14, 0x2807040,9, 0x2807080,6, 0x28070a0,1, 0x28070a8,4, 0x2807100,4, 0x2807200,124, 0x2807400,124, 0x2807600,8, 0x2807624,1, 0x2807644,6, 0x2807664,6, 0x2807680,1, 0x2807688,6, 0x28076a8,22, 0x2808000,84, 0x2808180,20, 0x2808200,5, 0x2808400,11, 0x2808440,11, 0x2808480,19, 0x2808500,19, 0x2808580,24, 0x2808600,13, 0x2808800,84, 0x2808980,20, 0x2808a00,5, 0x2808c00,11, 0x2808c40,11, 0x2808c80,19, 0x2808d00,19, 0x2808d80,24, 0x2808e00,13, 0x2809000,10, 0x2809040,5, 0x2809080,10, 0x28090c0,5, 0x2809100,5, 0x2809200,11, 0x2809230,3, 0x2809240,5, 0x2809260,5, 0x2809280,32, 0x2809400,13, 0x2809440,13, 0x2809480,9, 0x28094c0,1, 0x28094d0,5, 0x28094f0,21, 0x2809800,10, 0x2809840,5, 0x2809880,10, 0x28098c0,5, 0x2809900,5, 0x2809a00,11, 0x2809a30,3, 0x2809a40,5, 0x2809a60,5, 0x2809a80,32, 0x2809c00,13, 0x2809c40,13, 0x2809c80,9, 0x2809cc0,1, 0x2809cd0,5, 0x2809cf0,21, 0x280a000,14, 0x280a040,9, 0x280a080,6, 0x280a0a0,1, 0x280a0a8,4, 0x280a100,7, 0x280a120,3, 0x280a130,25, 0x280c000,26, 0x280c06c,2, 0x280c080,3, 0x280c090,17, 0x280c100,26, 0x280c16c,2, 0x280c180,3, 0x280c190,17, 0x280c200,26, 0x280c26c,2, 0x280c280,3, 0x280c290,17, 0x280c300,26, 0x280c36c,2, 0x280c380,3, 0x280c390,17, 0x280c400,26, 0x280c46c,2, 0x280c480,3, 0x280c490,17, 0x280c500,26, 0x280c56c,2, 0x280c580,3, 0x280c590,17, 0x280c600,26, 0x280c66c,2, 0x280c680,3, 0x280c690,17, 0x280c700,26, 0x280c76c,2, 0x280c780,3, 0x280c790,17, 0x280c800,12, 0x280c844,1, 0x280c854,8, 0x280c880,7, 0x280c8a0,2, 0x280c8ac,2, 0x280c8c0,26, 0x280c980,4, 0x280c9a0,5, 0x280c9c0,1, 0x280d000,3, 0x280d010,3, 0x280d020,3, 0x280d030,3, 0x280d040,3, 0x280d050,3, 0x280d060,3, 0x280d070,3, 0x280d080,5, 0x280d0a0,5, 0x280d0c0,5, 0x280d0e0,5, 0x280d100,5, 0x280d120,5, 0x280d140,5, 0x280d160,5, 0x280d200,68, 0x280d400,1, 0x280d804,1, 0x280d844,54, 0x280da00,11, 0x280da40,11, 0x280da80,11, 0x280dac0,11, 0x280db00,11, 0x280db40,11, 0x280db80,11, 0x280dbc0,11, 0x280dc00,28, 0x280dc80,5, 0x280dca0,2, 0x280e000,4, 0x280e020,6, 0x280e040,6, 0x280e060,14, 0x280e100,26, 0x280e180,15, 0x280e200,14, 0x280e240,9, 0x280e280,6, 0x280e2a0,1, 0x280e2a8,4, 0x280e300,14, 0x280e340,9, 0x280e380,6, 0x280e3a0,4, 0x280e400,9, 0x2820000,1, 0x2821000,977, 0x2822000,161, 0x2823000,977, 0x2824000,977, 0x2825000,977, 0x2826000,977, 0x2827000,977, 0x2828000,977, 0x2829000,977, 0x282a000,977, 0x282b000,161, 0x282c000,12, 0x282c040,14, 0x282c080,20, 0x282c104,1, 0x282c10c,4, 0x282c200,12, 0x282c240,14, 0x282c280,20, 0x282c304,1, 0x282c30c,4, 0x282c400,12, 0x282c440,14, 0x282c480,20, 0x282c504,1, 0x282c50c,4, 0x282c600,12, 0x282c640,14, 0x282c680,20, 0x282c704,1, 0x282c70c,4, 0x282c800,12, 0x282c840,14, 0x282c880,20, 0x282c904,1, 0x282c90c,4, 0x282ca00,12, 0x282ca40,14, 0x282ca80,20, 0x282cb04,1, 0x282cb0c,4, 0x282cc00,12, 0x282cc40,14, 0x282cc80,20, 0x282cd04,1, 0x282cd0c,4, 0x282ce00,12, 0x282ce40,14, 0x282ce80,20, 0x282cf04,1, 0x282cf0c,4, 0x282d000,12, 0x282d040,14, 0x282d080,20, 0x282d104,1, 0x282d10c,4, 0x282d200,17, 0x282d250,2, 0x282d260,4, 0x282e000,1, 0x282e014,1, 0x282e01c,11, 0x282e060,9, 0x282e094,1, 0x282e09c,11, 0x282e0e0,15, 0x282e200,12, 0x282e240,13, 0x282e280,3, 0x282e290,1, 0x2880000,500, 0x2880800,2, 0x2880820,15, 0x2881000,500, 0x2881800,8, 0x2881824,6, 0x2881840,8, 0x2881880,7, 0x28818a0,7, 0x28818c0,7, 0x28818e0,7, 0x2881900,8, 0x2881924,16, 0x2881980,12, 0x2882000,500, 0x2882800,2, 0x2882820,15, 0x2883000,500, 0x2883800,8, 0x2883824,6, 0x2883840,8, 0x2883880,7, 0x28838a0,7, 0x28838c0,7, 0x28838e0,7, 0x2883900,8, 0x2883924,16, 0x2883980,12, 0x2884004,5, 0x2884200,26, 0x2884280,4, 0x28842c0,25, 0x2884340,6, 0x2884360,1, 0x2884368,2, 0x2884374,11, 0x28843a4,10, 0x2884400,1, 0x2888000,52, 0x2888400,82, 0x2888560,6, 0x2888600,41, 0x2888700,2, 0x2888720,19, 0x2888800,25, 0x2888880,1, 0x2888900,28, 0x2888980,1, 0x2889000,52, 0x2889400,82, 0x2889560,6, 0x2889600,41, 0x2889700,2, 0x2889720,19, 0x2889800,25, 0x2889880,1, 0x2889900,28, 0x2889980,1, 0x288a000,7, 0x288a080,6, 0x288a0a0,6, 0x288a0c0,1, 0x288a100,4, 0x288a120,9, 0x288c000,3, 0x288c010,6, 0x288c200,7, 0x288c220,6, 0x288c240,7, 0x288c260,6, 0x288c280,2, 0x288c28c,2, 0x288c2a0,2, 0x288c2ac,2, 0x288c2c0,7, 0x288c2e0,7, 0x288c300,2, 0x288c30c,2, 0x288c320,6, 0x288c400,3, 0x288c440,12, 0x288c800,7, 0x288c820,14, 0x288c880,16, 0x288c900,7, 0x288c920,14, 0x288c980,16, 0x288ca00,6, 0x288ca20,7, 0x288cc00,3, 0x28a0000,3, 0x28a0800,7, 0x28a0820,6, 0x28a0840,6, 0x28a0880,1, 0x28a0894,1, 0x28a089c,2, 0x28a08c0,9, 0x28a0900,18, 0x28a0a00,36, 0x28a0b00,22, 0x28a0b80,18, 0x28a0c00,3, 0x28a0c10,3, 0x28a1000,3, 0x28a1010,2, 0x28a1080,20, 0x28a1100,1, 0x28a1200,26, 0x28a1280,4, 0x28a12c0,25, 0x28a1340,6, 0x28a1360,1, 0x28a1368,2, 0x28a1374,11, 0x28a13a4,4, 0x28a1400,1, 0x28b0000,11, 0x28b0030,19, 0x28b0080,17, 0x28b0100,11, 0x28b0130,19, 0x28b0180,17, 0x28b0200,3, 0x28b0214,1, 0x28b021c,1, 0x28b0280,3, 0x28b0294,1, 0x28b029c,1, 0x28b0300,18, 0x28b0380,18, 0x28b0400,18, 0x28b0480,18, 0x28b0500,18, 0x28b0580,18, 0x28b0600,18, 0x28b0680,18, 0x28b0700,13, 0x28b0738,6, 0x28b0780,13, 0x28b07b8,6, 0x28b0800,1, 0x28b0808,22, 0x28b0880,1, 0x28b0894,13, 0x28b0900,3, 0x28b0910,3, 0x28b0920,3, 0x28b0940,3, 0x28b0954,1, 0x28b095c,1, 0x28b0a00,52, 0x28b0c00,4, 0x28b0d00,34, 0x28b0e00,4, 0x28b0e80,30, 0x28b0f00,1, 0x28b0f40,5, 0x28b0f60,5, 0x28b0f80,6, 0x28b1000,14, 0x28b1040,4, 0x28b1060,17, 0x28b10c0,6, 0x28b10e0,1, 0x28b10e8,2, 0x28b10f4,11, 0x28b1124,17, 0x28b1200,3, 0x28b1210,3, 0x28b1220,3, 0x28b1230,3, 0x28b1240,3, 0x28b1250,3, 0x28b2000,20, 0x28b2080,3, 0x28b2090,1, 0x28b2098,2, 0x28c0000,500, 0x28c0800,2, 0x28c0820,15, 0x28c1000,500, 0x28c1800,8, 0x28c1824,6, 0x28c1840,8, 0x28c1880,7, 0x28c18a0,7, 0x28c18c0,7, 0x28c18e0,7, 0x28c1900,8, 0x28c1924,16, 0x28c1980,12, 0x28c2000,500, 0x28c2800,2, 0x28c2820,15, 0x28c3000,500, 0x28c3800,8, 0x28c3824,6, 0x28c3840,8, 0x28c3880,7, 0x28c38a0,7, 0x28c38c0,7, 0x28c38e0,7, 0x28c3900,8, 0x28c3924,16, 0x28c3980,12, 0x28c4004,5, 0x28c4200,26, 0x28c4280,4, 0x28c42c0,25, 0x28c4340,6, 0x28c4360,1, 0x28c4368,2, 0x28c4374,11, 0x28c43a4,10, 0x28c4400,1, 0x28c8000,52, 0x28c8400,82, 0x28c8560,6, 0x28c8600,41, 0x28c8700,2, 0x28c8720,19, 0x28c8800,25, 0x28c8880,1, 0x28c8900,28, 0x28c8980,1, 0x28c9000,52, 0x28c9400,82, 0x28c9560,6, 0x28c9600,41, 0x28c9700,2, 0x28c9720,19, 0x28c9800,25, 0x28c9880,1, 0x28c9900,28, 0x28c9980,1, 0x28ca000,7, 0x28ca080,6, 0x28ca0a0,6, 0x28ca0c0,1, 0x28ca100,4, 0x28ca120,9, 0x28cc000,3, 0x28cc010,6, 0x28cc200,7, 0x28cc220,6, 0x28cc240,7, 0x28cc260,6, 0x28cc280,2, 0x28cc28c,2, 0x28cc2a0,2, 0x28cc2ac,2, 0x28cc2c0,7, 0x28cc2e0,7, 0x28cc300,2, 0x28cc30c,2, 0x28cc320,6, 0x28cc400,3, 0x28cc440,12, 0x28cc800,7, 0x28cc820,14, 0x28cc880,16, 0x28cc900,7, 0x28cc920,14, 0x28cc980,16, 0x28cca00,6, 0x28cca20,7, 0x28ccc00,3, 0x28e0000,3, 0x28e0800,7, 0x28e0820,6, 0x28e0840,6, 0x28e0880,1, 0x28e0894,1, 0x28e089c,2, 0x28e08c0,9, 0x28e0900,18, 0x28e0a00,36, 0x28e0b00,22, 0x28e0b80,18, 0x28e0c00,3, 0x28e0c10,3, 0x28e1000,3, 0x28e1010,2, 0x28e1080,20, 0x28e1100,1, 0x28e1200,26, 0x28e1280,4, 0x28e12c0,25, 0x28e1340,6, 0x28e1360,1, 0x28e1368,2, 0x28e1374,11, 0x28e13a4,4, 0x28e1400,1, 0x28f0000,11, 0x28f0030,19, 0x28f0080,17, 0x28f0100,11, 0x28f0130,19, 0x28f0180,17, 0x28f0200,3, 0x28f0214,1, 0x28f021c,1, 0x28f0280,3, 0x28f0294,1, 0x28f029c,1, 0x28f0300,18, 0x28f0380,18, 0x28f0400,18, 0x28f0480,18, 0x28f0500,18, 0x28f0580,18, 0x28f0600,18, 0x28f0680,18, 0x28f0700,13, 0x28f0738,6, 0x28f0780,13, 0x28f07b8,6, 0x28f0800,1, 0x28f0808,22, 0x28f0880,1, 0x28f0894,13, 0x28f0900,3, 0x28f0910,3, 0x28f0920,3, 0x28f0940,3, 0x28f0954,1, 0x28f095c,1, 0x28f0a00,52, 0x28f0c00,4, 0x28f0d00,34, 0x28f0e00,4, 0x28f0e80,30, 0x28f0f00,1, 0x28f0f40,5, 0x28f0f60,5, 0x28f0f80,6, 0x28f1000,14, 0x28f1040,4, 0x28f1060,17, 0x28f10c0,6, 0x28f10e0,1, 0x28f10e8,2, 0x28f10f4,11, 0x28f1124,17, 0x28f1200,3, 0x28f1210,3, 0x28f1220,3, 0x28f1230,3, 0x28f1240,3, 0x28f1250,3, 0x28f2000,20, 0x28f2080,3, 0x28f2090,1, 0x28f2098,2, 0x2900000,13, 0x2900038,4, 0x2900050,3, 0x2900060,3, 0x2900070,16, 0x29000c0,5, 0x2900400,14, 0x2900440,2, 0x290044c,3, 0x2900480,14, 0x29004c0,2, 0x29004cc,3, 0x2900500,1, 0x2900508,15, 0x2900560,2, 0x290056c,2, 0x2900600,4, 0x2900680,27, 0x2900800,2, 0x2900900,32, 0x2900984,2, 0x2900990,4, 0x2900a00,26, 0x2900a80,4, 0x2900ac0,25, 0x2900b40,6, 0x2900b60,1, 0x2900b68,2, 0x2900b74,11, 0x2900ba4,8, 0x2900c00,9, 0x2900c40,11, 0x2900c80,23, 0x2900ce0,15, 0x2900d20,15, 0x2900d60,1, 0x2901000,13, 0x2901038,4, 0x2901050,3, 0x2901060,3, 0x2901070,16, 0x29010c0,5, 0x2901400,14, 0x2901440,2, 0x290144c,3, 0x2901480,14, 0x29014c0,2, 0x29014cc,3, 0x2901500,1, 0x2901508,15, 0x2901560,2, 0x290156c,2, 0x2901600,4, 0x2901680,27, 0x2901800,2, 0x2901900,32, 0x2901984,2, 0x2901990,4, 0x2901a00,26, 0x2901a80,4, 0x2901ac0,25, 0x2901b40,6, 0x2901b60,1, 0x2901b68,2, 0x2901b74,11, 0x2901ba4,8, 0x2901c00,9, 0x2901c40,11, 0x2901c80,23, 0x2901ce0,15, 0x2901d20,15, 0x2901d60,1, 0x2902000,1, 0x2902100,36, 0x2902200,7, 0x2910000,22, 0x2910080,22, 0x2910100,12, 0x2910140,12, 0x2910200,52, 0x2910300,52, 0x2910400,11, 0x2910440,11, 0x2910480,3, 0x29104a0,6, 0x29104c0,6, 0x29104e0,3, 0x29104f0,3, 0x2910800,9, 0x2910840,15, 0x2910880,15, 0x29108c0,15, 0x2910900,1, 0x2910914,13, 0x2910980,17, 0x2911000,17, 0x2911080,17, 0x2911104,5, 0x2911120,3, 0x2911130,11, 0x2911200,31, 0x2911280,31, 0x2911300,12, 0x2911340,12, 0x2911380,2, 0x2911390,2, 0x29113a0,3, 0x29113b0,3, 0x29113c0,5, 0x29113e0,5, 0x2911400,3, 0x2911410,3, 0x2911420,3, 0x2911430,3, 0x2911440,3, 0x2911450,3, 0x2911460,7, 0x2911800,26, 0x2911880,4, 0x29118c0,25, 0x2911940,6, 0x2911960,1, 0x2911968,2, 0x2911974,11, 0x29119a4,12, 0x2911a00,4, 0x2911b00,43, 0x2911c00,4, 0x2911c20,7, 0x2911c40,3, 0x2911c50,1, 0x2911c60,3, 0x2911e00,32, 0x2911e84,1, 0x2911e90,4, 0x2911ea4,1, 0x2911eb4,14, 0x2911ef0,2, 0x2911f04,1, 0x2911f10,8, 0x2911f34,6, 0x2912000,3, 0x2912010,21, 0x2912080,1, 0x2912094,1, 0x291209c,5, 0x2912100,15, 0x2912140,1, 0x2912180,6, 0x2914000,22, 0x2914080,22, 0x2914100,12, 0x2914140,12, 0x2914200,52, 0x2914300,52, 0x2914400,11, 0x2914440,11, 0x2914480,3, 0x29144a0,6, 0x29144c0,6, 0x29144e0,3, 0x29144f0,3, 0x2914800,9, 0x2914840,15, 0x2914880,15, 0x29148c0,15, 0x2914900,1, 0x2914914,13, 0x2914980,17, 0x2915000,17, 0x2915080,17, 0x2915104,5, 0x2915120,3, 0x2915130,11, 0x2915200,31, 0x2915280,31, 0x2915300,12, 0x2915340,12, 0x2915380,2, 0x2915390,2, 0x29153a0,3, 0x29153b0,3, 0x29153c0,5, 0x29153e0,5, 0x2915400,3, 0x2915410,3, 0x2915420,3, 0x2915430,3, 0x2915440,3, 0x2915450,3, 0x2915460,7, 0x2915800,26, 0x2915880,4, 0x29158c0,25, 0x2915940,6, 0x2915960,1, 0x2915968,2, 0x2915974,11, 0x29159a4,12, 0x2915a00,4, 0x2915b00,43, 0x2915c00,4, 0x2915c20,7, 0x2915c40,3, 0x2915c50,1, 0x2915c60,3, 0x2915e00,32, 0x2915e84,1, 0x2915e90,4, 0x2915ea4,1, 0x2915eb4,14, 0x2915ef0,2, 0x2915f04,1, 0x2915f10,8, 0x2915f34,6, 0x2916000,3, 0x2916010,21, 0x2916080,1, 0x2916094,1, 0x291609c,5, 0x2916100,15, 0x2916140,1, 0x2916180,6, 0x2918000,100, 0x2918200,3, 0x2918210,5, 0x2920000,12, 0x2920040,2, 0x2920050,3, 0x2922000,1006, 0x2923000,31, 0x2923084,6, 0x2924004,1, 0x292400c,3, 0x2924200,23, 0x2924280,23, 0x2924300,1, 0x2924400,1, 0x2924800,122, 0x2924a00,122, 0x2924c04,63, 0x2924d04,1, 0x2924d10,5, 0x2924d40,6, 0x2924d60,5, 0x2926000,1, 0x2926100,1, 0x2926108,3, 0x2926120,2, 0x2926134,8, 0x2926160,2, 0x2926174,8, 0x29261a0,4, 0x2926200,54, 0x2926800,5, 0x2926820,2, 0x2926834,1, 0x292683c,1, 0x2926a00,24, 0x2926a80,24, 0x2926b00,1, 0x2926c00,6, 0x2926c24,5, 0x2926c40,16, 0x2927000,1, 0x2927020,5, 0x2927040,1, 0x2927048,2, 0x2927080,1, 0x2927100,4, 0x2927180,24, 0x2927200,4, 0x2927280,27, 0x2927300,2, 0x292730c,3, 0x2928004,1, 0x292800c,3, 0x2928020,1, 0x2928100,2, 0x2928110,3, 0x2928120,2, 0x2928140,10, 0x2928180,13, 0x2928200,2, 0x2928210,3, 0x2928220,2, 0x2928240,10, 0x2928280,13, 0x2928400,14, 0x2928440,3, 0x2928450,3, 0x2928460,1, 0x2928500,36, 0x2928600,10, 0x2928640,5, 0x2928660,5, 0x2928700,27, 0x2928780,7, 0x29287a0,8, 0x2928800,27, 0x2928880,7, 0x29288a0,8, 0x2928900,27, 0x2928980,7, 0x29289a0,8, 0x2928a00,27, 0x2928a80,7, 0x2928aa0,8, 0x2928b00,48, 0x2928bc4,8, 0x2928bf0,30, 0x2928c80,4, 0x2928cc0,25, 0x2928d40,6, 0x2928d60,1, 0x2928d68,2, 0x2928d74,3, 0x2928e00,8, 0x2928e24,28, 0x2929000,4, 0x2929080,23, 0x2929100,14, 0x2929140,9, 0x2929200,10, 0x2929230,3, 0x2929240,5, 0x2929260,5, 0x2929280,9, 0x2929400,67, 0x2929600,10, 0x2930000,12, 0x2930040,2, 0x2930050,3, 0x2932000,1006, 0x2933000,31, 0x2933084,6, 0x2934004,1, 0x293400c,3, 0x2934200,23, 0x2934280,23, 0x2934300,1, 0x2934400,1, 0x2934800,122, 0x2934a00,122, 0x2934c04,63, 0x2934d04,1, 0x2934d10,5, 0x2934d40,6, 0x2934d60,5, 0x2936000,1, 0x2936100,1, 0x2936108,3, 0x2936120,2, 0x2936134,8, 0x2936160,2, 0x2936174,8, 0x29361a0,4, 0x2936200,54, 0x2936800,5, 0x2936820,2, 0x2936834,1, 0x293683c,1, 0x2936a00,24, 0x2936a80,24, 0x2936b00,1, 0x2936c00,6, 0x2936c24,5, 0x2936c40,16, 0x2937000,1, 0x2937020,5, 0x2937040,1, 0x2937048,2, 0x2937080,1, 0x2937100,4, 0x2937180,24, 0x2937200,4, 0x2937280,27, 0x2937300,2, 0x293730c,3, 0x2938004,1, 0x293800c,3, 0x2938020,1, 0x2938100,2, 0x2938110,3, 0x2938120,2, 0x2938140,10, 0x2938180,13, 0x2938200,2, 0x2938210,3, 0x2938220,2, 0x2938240,10, 0x2938280,13, 0x2938400,14, 0x2938440,3, 0x2938450,3, 0x2938460,1, 0x2938500,36, 0x2938600,10, 0x2938640,5, 0x2938660,5, 0x2938700,27, 0x2938780,7, 0x29387a0,8, 0x2938800,27, 0x2938880,7, 0x29388a0,8, 0x2938900,27, 0x2938980,7, 0x29389a0,8, 0x2938a00,27, 0x2938a80,7, 0x2938aa0,8, 0x2938b00,48, 0x2938bc4,8, 0x2938bf0,30, 0x2938c80,4, 0x2938cc0,25, 0x2938d40,6, 0x2938d60,1, 0x2938d68,2, 0x2938d74,3, 0x2938e00,8, 0x2938e24,28, 0x2939000,4, 0x2939080,23, 0x2939100,14, 0x2939140,9, 0x2939200,10, 0x2939230,3, 0x2939240,5, 0x2939260,5, 0x2939280,9, 0x2939400,67, 0x2939600,10, 0x2a00000,1, 0x2a00020,3, 0x2a00030,2, 0x2a00040,3, 0x2a00050,2, 0x2a00800,53, 0x2a00900,3, 0x2a00910,13, 0x2a00a00,53, 0x2a00b00,3, 0x2a00b10,13, 0x2a00c00,5, 0x2a00c20,5, 0x2a00c40,18, 0x2a01000,6, 0x2a01020,4, 0x2a01040,16, 0x2a02000,20, 0x2a02080,15, 0x2a02100,20, 0x2a02180,15, 0x2a02200,23, 0x2a02260,7, 0x2a02400,11, 0x2a02430,3, 0x2a02440,3, 0x2a02450,3, 0x2a02460,24, 0x2a02500,11, 0x2a02530,3, 0x2a02540,3, 0x2a02550,3, 0x2a02560,24, 0x2a02600,11, 0x2a02630,3, 0x2a02640,3, 0x2a02650,3, 0x2a02660,24, 0x2a02700,11, 0x2a02730,3, 0x2a02740,3, 0x2a02750,3, 0x2a02760,24, 0x2a02800,4, 0x2a02820,16, 0x2a02880,10, 0x2a028c0,10, 0x2a02900,6, 0x2a02920,6, 0x2a02940,4, 0x2a02980,13, 0x2a029c0,13, 0x2a02a00,9, 0x2a03000,14, 0x2a03040,9, 0x2a03080,6, 0x2a030a0,1, 0x2a030a8,4, 0x2a03100,4, 0x2a03200,124, 0x2a03400,124, 0x2a03600,8, 0x2a03624,1, 0x2a03644,6, 0x2a03664,6, 0x2a03680,1, 0x2a03688,6, 0x2a036a8,22, 0x2a04000,1, 0x2a04020,3, 0x2a04030,2, 0x2a04040,3, 0x2a04050,2, 0x2a04800,53, 0x2a04900,3, 0x2a04910,13, 0x2a04a00,53, 0x2a04b00,3, 0x2a04b10,13, 0x2a04c00,5, 0x2a04c20,5, 0x2a04c40,18, 0x2a05000,6, 0x2a05020,4, 0x2a05040,16, 0x2a06000,20, 0x2a06080,15, 0x2a06100,20, 0x2a06180,15, 0x2a06200,23, 0x2a06260,7, 0x2a06400,11, 0x2a06430,3, 0x2a06440,3, 0x2a06450,3, 0x2a06460,24, 0x2a06500,11, 0x2a06530,3, 0x2a06540,3, 0x2a06550,3, 0x2a06560,24, 0x2a06600,11, 0x2a06630,3, 0x2a06640,3, 0x2a06650,3, 0x2a06660,24, 0x2a06700,11, 0x2a06730,3, 0x2a06740,3, 0x2a06750,3, 0x2a06760,24, 0x2a06800,4, 0x2a06820,16, 0x2a06880,10, 0x2a068c0,10, 0x2a06900,6, 0x2a06920,6, 0x2a06940,4, 0x2a06980,13, 0x2a069c0,13, 0x2a06a00,9, 0x2a07000,14, 0x2a07040,9, 0x2a07080,6, 0x2a070a0,1, 0x2a070a8,4, 0x2a07100,4, 0x2a07200,124, 0x2a07400,124, 0x2a07600,8, 0x2a07624,1, 0x2a07644,6, 0x2a07664,6, 0x2a07680,1, 0x2a07688,6, 0x2a076a8,22, 0x2a08000,84, 0x2a08180,20, 0x2a08200,5, 0x2a08400,11, 0x2a08440,11, 0x2a08480,19, 0x2a08500,19, 0x2a08580,24, 0x2a08600,13, 0x2a08800,84, 0x2a08980,20, 0x2a08a00,5, 0x2a08c00,11, 0x2a08c40,11, 0x2a08c80,19, 0x2a08d00,19, 0x2a08d80,24, 0x2a08e00,13, 0x2a09000,10, 0x2a09040,5, 0x2a09080,10, 0x2a090c0,5, 0x2a09100,5, 0x2a09200,11, 0x2a09230,3, 0x2a09240,5, 0x2a09260,5, 0x2a09280,32, 0x2a09400,13, 0x2a09440,13, 0x2a09480,9, 0x2a094c0,1, 0x2a094d0,5, 0x2a094f0,21, 0x2a09800,10, 0x2a09840,5, 0x2a09880,10, 0x2a098c0,5, 0x2a09900,5, 0x2a09a00,11, 0x2a09a30,3, 0x2a09a40,5, 0x2a09a60,5, 0x2a09a80,32, 0x2a09c00,13, 0x2a09c40,13, 0x2a09c80,9, 0x2a09cc0,1, 0x2a09cd0,5, 0x2a09cf0,21, 0x2a0a000,14, 0x2a0a040,9, 0x2a0a080,6, 0x2a0a0a0,1, 0x2a0a0a8,4, 0x2a0a100,7, 0x2a0a120,3, 0x2a0a130,25, 0x2a0c000,26, 0x2a0c06c,2, 0x2a0c080,3, 0x2a0c090,17, 0x2a0c100,26, 0x2a0c16c,2, 0x2a0c180,3, 0x2a0c190,17, 0x2a0c200,26, 0x2a0c26c,2, 0x2a0c280,3, 0x2a0c290,17, 0x2a0c300,26, 0x2a0c36c,2, 0x2a0c380,3, 0x2a0c390,17, 0x2a0c400,26, 0x2a0c46c,2, 0x2a0c480,3, 0x2a0c490,17, 0x2a0c500,26, 0x2a0c56c,2, 0x2a0c580,3, 0x2a0c590,17, 0x2a0c600,26, 0x2a0c66c,2, 0x2a0c680,3, 0x2a0c690,17, 0x2a0c700,26, 0x2a0c76c,2, 0x2a0c780,3, 0x2a0c790,17, 0x2a0c800,12, 0x2a0c844,1, 0x2a0c854,8, 0x2a0c880,7, 0x2a0c8a0,2, 0x2a0c8ac,2, 0x2a0c8c0,26, 0x2a0c980,4, 0x2a0c9a0,5, 0x2a0c9c0,1, 0x2a0d000,3, 0x2a0d010,3, 0x2a0d020,3, 0x2a0d030,3, 0x2a0d040,3, 0x2a0d050,3, 0x2a0d060,3, 0x2a0d070,3, 0x2a0d080,5, 0x2a0d0a0,5, 0x2a0d0c0,5, 0x2a0d0e0,5, 0x2a0d100,5, 0x2a0d120,5, 0x2a0d140,5, 0x2a0d160,5, 0x2a0d200,68, 0x2a0d400,1, 0x2a0d804,1, 0x2a0d844,54, 0x2a0da00,11, 0x2a0da40,11, 0x2a0da80,11, 0x2a0dac0,11, 0x2a0db00,11, 0x2a0db40,11, 0x2a0db80,11, 0x2a0dbc0,11, 0x2a0dc00,28, 0x2a0dc80,5, 0x2a0dca0,2, 0x2a0e000,4, 0x2a0e020,6, 0x2a0e040,6, 0x2a0e060,14, 0x2a0e100,26, 0x2a0e180,15, 0x2a0e200,14, 0x2a0e240,9, 0x2a0e280,6, 0x2a0e2a0,1, 0x2a0e2a8,4, 0x2a0e300,14, 0x2a0e340,9, 0x2a0e380,6, 0x2a0e3a0,4, 0x2a0e400,9, 0x2a20000,1, 0x2a21000,977, 0x2a22000,161, 0x2a23000,977, 0x2a24000,977, 0x2a25000,977, 0x2a26000,977, 0x2a27000,977, 0x2a28000,977, 0x2a29000,977, 0x2a2a000,977, 0x2a2b000,161, 0x2a2c000,12, 0x2a2c040,14, 0x2a2c080,20, 0x2a2c104,1, 0x2a2c10c,4, 0x2a2c200,12, 0x2a2c240,14, 0x2a2c280,20, 0x2a2c304,1, 0x2a2c30c,4, 0x2a2c400,12, 0x2a2c440,14, 0x2a2c480,20, 0x2a2c504,1, 0x2a2c50c,4, 0x2a2c600,12, 0x2a2c640,14, 0x2a2c680,20, 0x2a2c704,1, 0x2a2c70c,4, 0x2a2c800,12, 0x2a2c840,14, 0x2a2c880,20, 0x2a2c904,1, 0x2a2c90c,4, 0x2a2ca00,12, 0x2a2ca40,14, 0x2a2ca80,20, 0x2a2cb04,1, 0x2a2cb0c,4, 0x2a2cc00,12, 0x2a2cc40,14, 0x2a2cc80,20, 0x2a2cd04,1, 0x2a2cd0c,4, 0x2a2ce00,12, 0x2a2ce40,14, 0x2a2ce80,20, 0x2a2cf04,1, 0x2a2cf0c,4, 0x2a2d000,12, 0x2a2d040,14, 0x2a2d080,20, 0x2a2d104,1, 0x2a2d10c,4, 0x2a2d200,17, 0x2a2d250,2, 0x2a2d260,4, 0x2a2e000,1, 0x2a2e014,1, 0x2a2e01c,11, 0x2a2e060,9, 0x2a2e094,1, 0x2a2e09c,11, 0x2a2e0e0,15, 0x2a2e200,12, 0x2a2e240,13, 0x2a2e280,3, 0x2a2e290,1, 0x2a80000,500, 0x2a80800,2, 0x2a80820,15, 0x2a81000,500, 0x2a81800,8, 0x2a81824,6, 0x2a81840,8, 0x2a81880,7, 0x2a818a0,7, 0x2a818c0,7, 0x2a818e0,7, 0x2a81900,8, 0x2a81924,16, 0x2a81980,12, 0x2a82000,500, 0x2a82800,2, 0x2a82820,15, 0x2a83000,500, 0x2a83800,8, 0x2a83824,6, 0x2a83840,8, 0x2a83880,7, 0x2a838a0,7, 0x2a838c0,7, 0x2a838e0,7, 0x2a83900,8, 0x2a83924,16, 0x2a83980,12, 0x2a84004,5, 0x2a84200,26, 0x2a84280,4, 0x2a842c0,25, 0x2a84340,6, 0x2a84360,1, 0x2a84368,2, 0x2a84374,11, 0x2a843a4,10, 0x2a84400,1, 0x2a88000,52, 0x2a88400,82, 0x2a88560,6, 0x2a88600,41, 0x2a88700,2, 0x2a88720,19, 0x2a88800,25, 0x2a88880,1, 0x2a88900,28, 0x2a88980,1, 0x2a89000,52, 0x2a89400,82, 0x2a89560,6, 0x2a89600,41, 0x2a89700,2, 0x2a89720,19, 0x2a89800,25, 0x2a89880,1, 0x2a89900,28, 0x2a89980,1, 0x2a8a000,7, 0x2a8a080,6, 0x2a8a0a0,6, 0x2a8a0c0,1, 0x2a8a100,4, 0x2a8a120,9, 0x2a8c000,3, 0x2a8c010,6, 0x2a8c200,7, 0x2a8c220,6, 0x2a8c240,7, 0x2a8c260,6, 0x2a8c280,2, 0x2a8c28c,2, 0x2a8c2a0,2, 0x2a8c2ac,2, 0x2a8c2c0,7, 0x2a8c2e0,7, 0x2a8c300,2, 0x2a8c30c,2, 0x2a8c320,6, 0x2a8c400,3, 0x2a8c440,12, 0x2a8c800,7, 0x2a8c820,14, 0x2a8c880,16, 0x2a8c900,7, 0x2a8c920,14, 0x2a8c980,16, 0x2a8ca00,6, 0x2a8ca20,7, 0x2a8cc00,3, 0x2aa0000,3, 0x2aa0800,7, 0x2aa0820,6, 0x2aa0840,6, 0x2aa0880,1, 0x2aa0894,1, 0x2aa089c,2, 0x2aa08c0,9, 0x2aa0900,18, 0x2aa0a00,36, 0x2aa0b00,22, 0x2aa0b80,18, 0x2aa0c00,3, 0x2aa0c10,3, 0x2aa1000,3, 0x2aa1010,2, 0x2aa1080,20, 0x2aa1100,1, 0x2aa1200,26, 0x2aa1280,4, 0x2aa12c0,25, 0x2aa1340,6, 0x2aa1360,1, 0x2aa1368,2, 0x2aa1374,11, 0x2aa13a4,4, 0x2aa1400,1, 0x2ab0000,11, 0x2ab0030,19, 0x2ab0080,17, 0x2ab0100,11, 0x2ab0130,19, 0x2ab0180,17, 0x2ab0200,3, 0x2ab0214,1, 0x2ab021c,1, 0x2ab0280,3, 0x2ab0294,1, 0x2ab029c,1, 0x2ab0300,18, 0x2ab0380,18, 0x2ab0400,18, 0x2ab0480,18, 0x2ab0500,18, 0x2ab0580,18, 0x2ab0600,18, 0x2ab0680,18, 0x2ab0700,13, 0x2ab0738,6, 0x2ab0780,13, 0x2ab07b8,6, 0x2ab0800,1, 0x2ab0808,22, 0x2ab0880,1, 0x2ab0894,13, 0x2ab0900,3, 0x2ab0910,3, 0x2ab0920,3, 0x2ab0940,3, 0x2ab0954,1, 0x2ab095c,1, 0x2ab0a00,52, 0x2ab0c00,4, 0x2ab0d00,34, 0x2ab0e00,4, 0x2ab0e80,30, 0x2ab0f00,1, 0x2ab0f40,5, 0x2ab0f60,5, 0x2ab0f80,6, 0x2ab1000,14, 0x2ab1040,4, 0x2ab1060,17, 0x2ab10c0,6, 0x2ab10e0,1, 0x2ab10e8,2, 0x2ab10f4,11, 0x2ab1124,17, 0x2ab1200,3, 0x2ab1210,3, 0x2ab1220,3, 0x2ab1230,3, 0x2ab1240,3, 0x2ab1250,3, 0x2ab2000,20, 0x2ab2080,3, 0x2ab2090,1, 0x2ab2098,2, 0x2ac0000,500, 0x2ac0800,2, 0x2ac0820,15, 0x2ac1000,500, 0x2ac1800,8, 0x2ac1824,6, 0x2ac1840,8, 0x2ac1880,7, 0x2ac18a0,7, 0x2ac18c0,7, 0x2ac18e0,7, 0x2ac1900,8, 0x2ac1924,16, 0x2ac1980,12, 0x2ac2000,500, 0x2ac2800,2, 0x2ac2820,15, 0x2ac3000,500, 0x2ac3800,8, 0x2ac3824,6, 0x2ac3840,8, 0x2ac3880,7, 0x2ac38a0,7, 0x2ac38c0,7, 0x2ac38e0,7, 0x2ac3900,8, 0x2ac3924,16, 0x2ac3980,12, 0x2ac4004,5, 0x2ac4200,26, 0x2ac4280,4, 0x2ac42c0,25, 0x2ac4340,6, 0x2ac4360,1, 0x2ac4368,2, 0x2ac4374,11, 0x2ac43a4,10, 0x2ac4400,1, 0x2ac8000,52, 0x2ac8400,82, 0x2ac8560,6, 0x2ac8600,41, 0x2ac8700,2, 0x2ac8720,19, 0x2ac8800,25, 0x2ac8880,1, 0x2ac8900,28, 0x2ac8980,1, 0x2ac9000,52, 0x2ac9400,82, 0x2ac9560,6, 0x2ac9600,41, 0x2ac9700,2, 0x2ac9720,19, 0x2ac9800,25, 0x2ac9880,1, 0x2ac9900,28, 0x2ac9980,1, 0x2aca000,7, 0x2aca080,6, 0x2aca0a0,6, 0x2aca0c0,1, 0x2aca100,4, 0x2aca120,9, 0x2acc000,3, 0x2acc010,6, 0x2acc200,7, 0x2acc220,6, 0x2acc240,7, 0x2acc260,6, 0x2acc280,2, 0x2acc28c,2, 0x2acc2a0,2, 0x2acc2ac,2, 0x2acc2c0,7, 0x2acc2e0,7, 0x2acc300,2, 0x2acc30c,2, 0x2acc320,6, 0x2acc400,3, 0x2acc440,12, 0x2acc800,7, 0x2acc820,14, 0x2acc880,16, 0x2acc900,7, 0x2acc920,14, 0x2acc980,16, 0x2acca00,6, 0x2acca20,7, 0x2accc00,3, 0x2ae0000,3, 0x2ae0800,7, 0x2ae0820,6, 0x2ae0840,6, 0x2ae0880,1, 0x2ae0894,1, 0x2ae089c,2, 0x2ae08c0,9, 0x2ae0900,18, 0x2ae0a00,36, 0x2ae0b00,22, 0x2ae0b80,18, 0x2ae0c00,3, 0x2ae0c10,3, 0x2ae1000,3, 0x2ae1010,2, 0x2ae1080,20, 0x2ae1100,1, 0x2ae1200,26, 0x2ae1280,4, 0x2ae12c0,25, 0x2ae1340,6, 0x2ae1360,1, 0x2ae1368,2, 0x2ae1374,11, 0x2ae13a4,4, 0x2ae1400,1, 0x2af0000,11, 0x2af0030,19, 0x2af0080,17, 0x2af0100,11, 0x2af0130,19, 0x2af0180,17, 0x2af0200,3, 0x2af0214,1, 0x2af021c,1, 0x2af0280,3, 0x2af0294,1, 0x2af029c,1, 0x2af0300,18, 0x2af0380,18, 0x2af0400,18, 0x2af0480,18, 0x2af0500,18, 0x2af0580,18, 0x2af0600,18, 0x2af0680,18, 0x2af0700,13, 0x2af0738,6, 0x2af0780,13, 0x2af07b8,6, 0x2af0800,1, 0x2af0808,22, 0x2af0880,1, 0x2af0894,13, 0x2af0900,3, 0x2af0910,3, 0x2af0920,3, 0x2af0940,3, 0x2af0954,1, 0x2af095c,1, 0x2af0a00,52, 0x2af0c00,4, 0x2af0d00,34, 0x2af0e00,4, 0x2af0e80,30, 0x2af0f00,1, 0x2af0f40,5, 0x2af0f60,5, 0x2af0f80,6, 0x2af1000,14, 0x2af1040,4, 0x2af1060,17, 0x2af10c0,6, 0x2af10e0,1, 0x2af10e8,2, 0x2af10f4,11, 0x2af1124,17, 0x2af1200,3, 0x2af1210,3, 0x2af1220,3, 0x2af1230,3, 0x2af1240,3, 0x2af1250,3, 0x2af2000,20, 0x2af2080,3, 0x2af2090,1, 0x2af2098,2, 0x2b00000,13, 0x2b00038,4, 0x2b00050,3, 0x2b00060,3, 0x2b00070,16, 0x2b000c0,5, 0x2b00400,14, 0x2b00440,2, 0x2b0044c,3, 0x2b00480,14, 0x2b004c0,2, 0x2b004cc,3, 0x2b00500,1, 0x2b00508,15, 0x2b00560,2, 0x2b0056c,2, 0x2b00600,4, 0x2b00680,27, 0x2b00800,2, 0x2b00900,32, 0x2b00984,2, 0x2b00990,4, 0x2b00a00,26, 0x2b00a80,4, 0x2b00ac0,25, 0x2b00b40,6, 0x2b00b60,1, 0x2b00b68,2, 0x2b00b74,11, 0x2b00ba4,8, 0x2b00c00,9, 0x2b00c40,11, 0x2b00c80,23, 0x2b00ce0,15, 0x2b00d20,15, 0x2b00d60,1, 0x2b01000,13, 0x2b01038,4, 0x2b01050,3, 0x2b01060,3, 0x2b01070,16, 0x2b010c0,5, 0x2b01400,14, 0x2b01440,2, 0x2b0144c,3, 0x2b01480,14, 0x2b014c0,2, 0x2b014cc,3, 0x2b01500,1, 0x2b01508,15, 0x2b01560,2, 0x2b0156c,2, 0x2b01600,4, 0x2b01680,27, 0x2b01800,2, 0x2b01900,32, 0x2b01984,2, 0x2b01990,4, 0x2b01a00,26, 0x2b01a80,4, 0x2b01ac0,25, 0x2b01b40,6, 0x2b01b60,1, 0x2b01b68,2, 0x2b01b74,11, 0x2b01ba4,8, 0x2b01c00,9, 0x2b01c40,11, 0x2b01c80,23, 0x2b01ce0,15, 0x2b01d20,15, 0x2b01d60,1, 0x2b02000,1, 0x2b02100,36, 0x2b02200,7, 0x2b10000,22, 0x2b10080,22, 0x2b10100,12, 0x2b10140,12, 0x2b10200,52, 0x2b10300,52, 0x2b10400,11, 0x2b10440,11, 0x2b10480,3, 0x2b104a0,6, 0x2b104c0,6, 0x2b104e0,3, 0x2b104f0,3, 0x2b10800,9, 0x2b10840,15, 0x2b10880,15, 0x2b108c0,15, 0x2b10900,1, 0x2b10914,13, 0x2b10980,17, 0x2b11000,17, 0x2b11080,17, 0x2b11104,5, 0x2b11120,3, 0x2b11130,11, 0x2b11200,31, 0x2b11280,31, 0x2b11300,12, 0x2b11340,12, 0x2b11380,2, 0x2b11390,2, 0x2b113a0,3, 0x2b113b0,3, 0x2b113c0,5, 0x2b113e0,5, 0x2b11400,3, 0x2b11410,3, 0x2b11420,3, 0x2b11430,3, 0x2b11440,3, 0x2b11450,3, 0x2b11460,7, 0x2b11800,26, 0x2b11880,4, 0x2b118c0,25, 0x2b11940,6, 0x2b11960,1, 0x2b11968,2, 0x2b11974,11, 0x2b119a4,12, 0x2b11a00,4, 0x2b11b00,43, 0x2b11c00,4, 0x2b11c20,7, 0x2b11c40,3, 0x2b11c50,1, 0x2b11c60,3, 0x2b11e00,32, 0x2b11e84,1, 0x2b11e90,4, 0x2b11ea4,1, 0x2b11eb4,14, 0x2b11ef0,2, 0x2b11f04,1, 0x2b11f10,8, 0x2b11f34,6, 0x2b12000,3, 0x2b12010,21, 0x2b12080,1, 0x2b12094,1, 0x2b1209c,5, 0x2b12100,15, 0x2b12140,1, 0x2b12180,6, 0x2b14000,22, 0x2b14080,22, 0x2b14100,12, 0x2b14140,12, 0x2b14200,52, 0x2b14300,52, 0x2b14400,11, 0x2b14440,11, 0x2b14480,3, 0x2b144a0,6, 0x2b144c0,6, 0x2b144e0,3, 0x2b144f0,3, 0x2b14800,9, 0x2b14840,15, 0x2b14880,15, 0x2b148c0,15, 0x2b14900,1, 0x2b14914,13, 0x2b14980,17, 0x2b15000,17, 0x2b15080,17, 0x2b15104,5, 0x2b15120,3, 0x2b15130,11, 0x2b15200,31, 0x2b15280,31, 0x2b15300,12, 0x2b15340,12, 0x2b15380,2, 0x2b15390,2, 0x2b153a0,3, 0x2b153b0,3, 0x2b153c0,5, 0x2b153e0,5, 0x2b15400,3, 0x2b15410,3, 0x2b15420,3, 0x2b15430,3, 0x2b15440,3, 0x2b15450,3, 0x2b15460,7, 0x2b15800,26, 0x2b15880,4, 0x2b158c0,25, 0x2b15940,6, 0x2b15960,1, 0x2b15968,2, 0x2b15974,11, 0x2b159a4,12, 0x2b15a00,4, 0x2b15b00,43, 0x2b15c00,4, 0x2b15c20,7, 0x2b15c40,3, 0x2b15c50,1, 0x2b15c60,3, 0x2b15e00,32, 0x2b15e84,1, 0x2b15e90,4, 0x2b15ea4,1, 0x2b15eb4,14, 0x2b15ef0,2, 0x2b15f04,1, 0x2b15f10,8, 0x2b15f34,6, 0x2b16000,3, 0x2b16010,21, 0x2b16080,1, 0x2b16094,1, 0x2b1609c,5, 0x2b16100,15, 0x2b16140,1, 0x2b16180,6, 0x2b18000,100, 0x2b18200,3, 0x2b18210,5, 0x2b20000,12, 0x2b20040,2, 0x2b20050,3, 0x2b22000,1006, 0x2b23000,31, 0x2b23084,6, 0x2b24004,1, 0x2b2400c,3, 0x2b24200,23, 0x2b24280,23, 0x2b24300,1, 0x2b24400,1, 0x2b24800,122, 0x2b24a00,122, 0x2b24c04,63, 0x2b24d04,1, 0x2b24d10,5, 0x2b24d40,6, 0x2b24d60,5, 0x2b26000,1, 0x2b26100,1, 0x2b26108,3, 0x2b26120,2, 0x2b26134,8, 0x2b26160,2, 0x2b26174,8, 0x2b261a0,4, 0x2b26200,54, 0x2b26800,5, 0x2b26820,2, 0x2b26834,1, 0x2b2683c,1, 0x2b26a00,24, 0x2b26a80,24, 0x2b26b00,1, 0x2b26c00,6, 0x2b26c24,5, 0x2b26c40,16, 0x2b27000,1, 0x2b27020,5, 0x2b27040,1, 0x2b27048,2, 0x2b27080,1, 0x2b27100,4, 0x2b27180,24, 0x2b27200,4, 0x2b27280,27, 0x2b27300,2, 0x2b2730c,3, 0x2b28004,1, 0x2b2800c,3, 0x2b28020,1, 0x2b28100,2, 0x2b28110,3, 0x2b28120,2, 0x2b28140,10, 0x2b28180,13, 0x2b28200,2, 0x2b28210,3, 0x2b28220,2, 0x2b28240,10, 0x2b28280,13, 0x2b28400,14, 0x2b28440,3, 0x2b28450,3, 0x2b28460,1, 0x2b28500,36, 0x2b28600,10, 0x2b28640,5, 0x2b28660,5, 0x2b28700,27, 0x2b28780,7, 0x2b287a0,8, 0x2b28800,27, 0x2b28880,7, 0x2b288a0,8, 0x2b28900,27, 0x2b28980,7, 0x2b289a0,8, 0x2b28a00,27, 0x2b28a80,7, 0x2b28aa0,8, 0x2b28b00,48, 0x2b28bc4,8, 0x2b28bf0,30, 0x2b28c80,4, 0x2b28cc0,25, 0x2b28d40,6, 0x2b28d60,1, 0x2b28d68,2, 0x2b28d74,3, 0x2b28e00,8, 0x2b28e24,28, 0x2b29000,4, 0x2b29080,23, 0x2b29100,14, 0x2b29140,9, 0x2b29200,10, 0x2b29230,3, 0x2b29240,5, 0x2b29260,5, 0x2b29280,9, 0x2b29400,67, 0x2b29600,10, 0x2b30000,12, 0x2b30040,2, 0x2b30050,3, 0x2b32000,1006, 0x2b33000,31, 0x2b33084,6, 0x2b34004,1, 0x2b3400c,3, 0x2b34200,23, 0x2b34280,23, 0x2b34300,1, 0x2b34400,1, 0x2b34800,122, 0x2b34a00,122, 0x2b34c04,63, 0x2b34d04,1, 0x2b34d10,5, 0x2b34d40,6, 0x2b34d60,5, 0x2b36000,1, 0x2b36100,1, 0x2b36108,3, 0x2b36120,2, 0x2b36134,8, 0x2b36160,2, 0x2b36174,8, 0x2b361a0,4, 0x2b36200,54, 0x2b36800,5, 0x2b36820,2, 0x2b36834,1, 0x2b3683c,1, 0x2b36a00,24, 0x2b36a80,24, 0x2b36b00,1, 0x2b36c00,6, 0x2b36c24,5, 0x2b36c40,16, 0x2b37000,1, 0x2b37020,5, 0x2b37040,1, 0x2b37048,2, 0x2b37080,1, 0x2b37100,4, 0x2b37180,24, 0x2b37200,4, 0x2b37280,27, 0x2b37300,2, 0x2b3730c,3, 0x2b38004,1, 0x2b3800c,3, 0x2b38020,1, 0x2b38100,2, 0x2b38110,3, 0x2b38120,2, 0x2b38140,10, 0x2b38180,13, 0x2b38200,2, 0x2b38210,3, 0x2b38220,2, 0x2b38240,10, 0x2b38280,13, 0x2b38400,14, 0x2b38440,3, 0x2b38450,3, 0x2b38460,1, 0x2b38500,36, 0x2b38600,10, 0x2b38640,5, 0x2b38660,5, 0x2b38700,27, 0x2b38780,7, 0x2b387a0,8, 0x2b38800,27, 0x2b38880,7, 0x2b388a0,8, 0x2b38900,27, 0x2b38980,7, 0x2b389a0,8, 0x2b38a00,27, 0x2b38a80,7, 0x2b38aa0,8, 0x2b38b00,48, 0x2b38bc4,8, 0x2b38bf0,30, 0x2b38c80,4, 0x2b38cc0,25, 0x2b38d40,6, 0x2b38d60,1, 0x2b38d68,2, 0x2b38d74,3, 0x2b38e00,8, 0x2b38e24,28, 0x2b39000,4, 0x2b39080,23, 0x2b39100,14, 0x2b39140,9, 0x2b39200,10, 0x2b39230,3, 0x2b39240,5, 0x2b39260,5, 0x2b39280,9, 0x2b39400,67, 0x2b39600,10, 0x2c00000,1, 0x2c00020,3, 0x2c00030,2, 0x2c00040,3, 0x2c00050,2, 0x2c00800,53, 0x2c00900,3, 0x2c00910,13, 0x2c00a00,53, 0x2c00b00,3, 0x2c00b10,13, 0x2c00c00,5, 0x2c00c20,5, 0x2c00c40,18, 0x2c01000,6, 0x2c01020,4, 0x2c01040,16, 0x2c02000,20, 0x2c02080,15, 0x2c02100,20, 0x2c02180,15, 0x2c02200,23, 0x2c02260,7, 0x2c02400,11, 0x2c02430,3, 0x2c02440,3, 0x2c02450,3, 0x2c02460,24, 0x2c02500,11, 0x2c02530,3, 0x2c02540,3, 0x2c02550,3, 0x2c02560,24, 0x2c02600,11, 0x2c02630,3, 0x2c02640,3, 0x2c02650,3, 0x2c02660,24, 0x2c02700,11, 0x2c02730,3, 0x2c02740,3, 0x2c02750,3, 0x2c02760,24, 0x2c02800,4, 0x2c02820,16, 0x2c02880,10, 0x2c028c0,10, 0x2c02900,6, 0x2c02920,6, 0x2c02940,4, 0x2c02980,13, 0x2c029c0,13, 0x2c02a00,9, 0x2c03000,14, 0x2c03040,9, 0x2c03080,6, 0x2c030a0,1, 0x2c030a8,4, 0x2c03100,4, 0x2c03200,124, 0x2c03400,124, 0x2c03600,8, 0x2c03624,1, 0x2c03644,6, 0x2c03664,6, 0x2c03680,1, 0x2c03688,6, 0x2c036a8,22, 0x2c04000,1, 0x2c04020,3, 0x2c04030,2, 0x2c04040,3, 0x2c04050,2, 0x2c04800,53, 0x2c04900,3, 0x2c04910,13, 0x2c04a00,53, 0x2c04b00,3, 0x2c04b10,13, 0x2c04c00,5, 0x2c04c20,5, 0x2c04c40,18, 0x2c05000,6, 0x2c05020,4, 0x2c05040,16, 0x2c06000,20, 0x2c06080,15, 0x2c06100,20, 0x2c06180,15, 0x2c06200,23, 0x2c06260,7, 0x2c06400,11, 0x2c06430,3, 0x2c06440,3, 0x2c06450,3, 0x2c06460,24, 0x2c06500,11, 0x2c06530,3, 0x2c06540,3, 0x2c06550,3, 0x2c06560,24, 0x2c06600,11, 0x2c06630,3, 0x2c06640,3, 0x2c06650,3, 0x2c06660,24, 0x2c06700,11, 0x2c06730,3, 0x2c06740,3, 0x2c06750,3, 0x2c06760,24, 0x2c06800,4, 0x2c06820,16, 0x2c06880,10, 0x2c068c0,10, 0x2c06900,6, 0x2c06920,6, 0x2c06940,4, 0x2c06980,13, 0x2c069c0,13, 0x2c06a00,9, 0x2c07000,14, 0x2c07040,9, 0x2c07080,6, 0x2c070a0,1, 0x2c070a8,4, 0x2c07100,4, 0x2c07200,124, 0x2c07400,124, 0x2c07600,8, 0x2c07624,1, 0x2c07644,6, 0x2c07664,6, 0x2c07680,1, 0x2c07688,6, 0x2c076a8,22, 0x2c08000,84, 0x2c08180,20, 0x2c08200,5, 0x2c08400,11, 0x2c08440,11, 0x2c08480,19, 0x2c08500,19, 0x2c08580,24, 0x2c08600,13, 0x2c08800,84, 0x2c08980,20, 0x2c08a00,5, 0x2c08c00,11, 0x2c08c40,11, 0x2c08c80,19, 0x2c08d00,19, 0x2c08d80,24, 0x2c08e00,13, 0x2c09000,10, 0x2c09040,5, 0x2c09080,10, 0x2c090c0,5, 0x2c09100,5, 0x2c09200,11, 0x2c09230,3, 0x2c09240,5, 0x2c09260,5, 0x2c09280,32, 0x2c09400,13, 0x2c09440,13, 0x2c09480,9, 0x2c094c0,1, 0x2c094d0,5, 0x2c094f0,21, 0x2c09800,10, 0x2c09840,5, 0x2c09880,10, 0x2c098c0,5, 0x2c09900,5, 0x2c09a00,11, 0x2c09a30,3, 0x2c09a40,5, 0x2c09a60,5, 0x2c09a80,32, 0x2c09c00,13, 0x2c09c40,13, 0x2c09c80,9, 0x2c09cc0,1, 0x2c09cd0,5, 0x2c09cf0,21, 0x2c0a000,14, 0x2c0a040,9, 0x2c0a080,6, 0x2c0a0a0,1, 0x2c0a0a8,4, 0x2c0a100,7, 0x2c0a120,3, 0x2c0a130,25, 0x2c0c000,26, 0x2c0c06c,2, 0x2c0c080,3, 0x2c0c090,17, 0x2c0c100,26, 0x2c0c16c,2, 0x2c0c180,3, 0x2c0c190,17, 0x2c0c200,26, 0x2c0c26c,2, 0x2c0c280,3, 0x2c0c290,17, 0x2c0c300,26, 0x2c0c36c,2, 0x2c0c380,3, 0x2c0c390,17, 0x2c0c400,26, 0x2c0c46c,2, 0x2c0c480,3, 0x2c0c490,17, 0x2c0c500,26, 0x2c0c56c,2, 0x2c0c580,3, 0x2c0c590,17, 0x2c0c600,26, 0x2c0c66c,2, 0x2c0c680,3, 0x2c0c690,17, 0x2c0c700,26, 0x2c0c76c,2, 0x2c0c780,3, 0x2c0c790,17, 0x2c0c800,12, 0x2c0c844,1, 0x2c0c854,8, 0x2c0c880,7, 0x2c0c8a0,2, 0x2c0c8ac,2, 0x2c0c8c0,26, 0x2c0c980,4, 0x2c0c9a0,5, 0x2c0c9c0,1, 0x2c0d000,3, 0x2c0d010,3, 0x2c0d020,3, 0x2c0d030,3, 0x2c0d040,3, 0x2c0d050,3, 0x2c0d060,3, 0x2c0d070,3, 0x2c0d080,5, 0x2c0d0a0,5, 0x2c0d0c0,5, 0x2c0d0e0,5, 0x2c0d100,5, 0x2c0d120,5, 0x2c0d140,5, 0x2c0d160,5, 0x2c0d200,68, 0x2c0d400,1, 0x2c0d804,1, 0x2c0d844,54, 0x2c0da00,11, 0x2c0da40,11, 0x2c0da80,11, 0x2c0dac0,11, 0x2c0db00,11, 0x2c0db40,11, 0x2c0db80,11, 0x2c0dbc0,11, 0x2c0dc00,28, 0x2c0dc80,5, 0x2c0dca0,2, 0x2c0e000,4, 0x2c0e020,6, 0x2c0e040,6, 0x2c0e060,14, 0x2c0e100,26, 0x2c0e180,15, 0x2c0e200,14, 0x2c0e240,9, 0x2c0e280,6, 0x2c0e2a0,1, 0x2c0e2a8,4, 0x2c0e300,14, 0x2c0e340,9, 0x2c0e380,6, 0x2c0e3a0,4, 0x2c0e400,9, 0x2c20000,1, 0x2c21000,977, 0x2c22000,161, 0x2c23000,977, 0x2c24000,977, 0x2c25000,977, 0x2c26000,977, 0x2c27000,977, 0x2c28000,977, 0x2c29000,977, 0x2c2a000,977, 0x2c2b000,161, 0x2c2c000,12, 0x2c2c040,14, 0x2c2c080,20, 0x2c2c104,1, 0x2c2c10c,4, 0x2c2c200,12, 0x2c2c240,14, 0x2c2c280,20, 0x2c2c304,1, 0x2c2c30c,4, 0x2c2c400,12, 0x2c2c440,14, 0x2c2c480,20, 0x2c2c504,1, 0x2c2c50c,4, 0x2c2c600,12, 0x2c2c640,14, 0x2c2c680,20, 0x2c2c704,1, 0x2c2c70c,4, 0x2c2c800,12, 0x2c2c840,14, 0x2c2c880,20, 0x2c2c904,1, 0x2c2c90c,4, 0x2c2ca00,12, 0x2c2ca40,14, 0x2c2ca80,20, 0x2c2cb04,1, 0x2c2cb0c,4, 0x2c2cc00,12, 0x2c2cc40,14, 0x2c2cc80,20, 0x2c2cd04,1, 0x2c2cd0c,4, 0x2c2ce00,12, 0x2c2ce40,14, 0x2c2ce80,20, 0x2c2cf04,1, 0x2c2cf0c,4, 0x2c2d000,12, 0x2c2d040,14, 0x2c2d080,20, 0x2c2d104,1, 0x2c2d10c,4, 0x2c2d200,17, 0x2c2d250,2, 0x2c2d260,4, 0x2c2e000,1, 0x2c2e014,1, 0x2c2e01c,11, 0x2c2e060,9, 0x2c2e094,1, 0x2c2e09c,11, 0x2c2e0e0,15, 0x2c2e200,12, 0x2c2e240,13, 0x2c2e280,3, 0x2c2e290,1, 0x2c80000,500, 0x2c80800,2, 0x2c80820,15, 0x2c81000,500, 0x2c81800,8, 0x2c81824,6, 0x2c81840,8, 0x2c81880,7, 0x2c818a0,7, 0x2c818c0,7, 0x2c818e0,7, 0x2c81900,8, 0x2c81924,16, 0x2c81980,12, 0x2c82000,500, 0x2c82800,2, 0x2c82820,15, 0x2c83000,500, 0x2c83800,8, 0x2c83824,6, 0x2c83840,8, 0x2c83880,7, 0x2c838a0,7, 0x2c838c0,7, 0x2c838e0,7, 0x2c83900,8, 0x2c83924,16, 0x2c83980,12, 0x2c84004,5, 0x2c84200,26, 0x2c84280,4, 0x2c842c0,25, 0x2c84340,6, 0x2c84360,1, 0x2c84368,2, 0x2c84374,11, 0x2c843a4,10, 0x2c84400,1, 0x2c88000,52, 0x2c88400,82, 0x2c88560,6, 0x2c88600,41, 0x2c88700,2, 0x2c88720,19, 0x2c88800,25, 0x2c88880,1, 0x2c88900,28, 0x2c88980,1, 0x2c89000,52, 0x2c89400,82, 0x2c89560,6, 0x2c89600,41, 0x2c89700,2, 0x2c89720,19, 0x2c89800,25, 0x2c89880,1, 0x2c89900,28, 0x2c89980,1, 0x2c8a000,7, 0x2c8a080,6, 0x2c8a0a0,6, 0x2c8a0c0,1, 0x2c8a100,4, 0x2c8a120,9, 0x2c8c000,3, 0x2c8c010,6, 0x2c8c200,7, 0x2c8c220,6, 0x2c8c240,7, 0x2c8c260,6, 0x2c8c280,2, 0x2c8c28c,2, 0x2c8c2a0,2, 0x2c8c2ac,2, 0x2c8c2c0,7, 0x2c8c2e0,7, 0x2c8c300,2, 0x2c8c30c,2, 0x2c8c320,6, 0x2c8c400,3, 0x2c8c440,12, 0x2c8c800,7, 0x2c8c820,14, 0x2c8c880,16, 0x2c8c900,7, 0x2c8c920,14, 0x2c8c980,16, 0x2c8ca00,6, 0x2c8ca20,7, 0x2c8cc00,3, 0x2ca0000,3, 0x2ca0800,7, 0x2ca0820,6, 0x2ca0840,6, 0x2ca0880,1, 0x2ca0894,1, 0x2ca089c,2, 0x2ca08c0,9, 0x2ca0900,18, 0x2ca0a00,36, 0x2ca0b00,22, 0x2ca0b80,18, 0x2ca0c00,3, 0x2ca0c10,3, 0x2ca1000,3, 0x2ca1010,2, 0x2ca1080,20, 0x2ca1100,1, 0x2ca1200,26, 0x2ca1280,4, 0x2ca12c0,25, 0x2ca1340,6, 0x2ca1360,1, 0x2ca1368,2, 0x2ca1374,11, 0x2ca13a4,4, 0x2ca1400,1, 0x2cb0000,11, 0x2cb0030,19, 0x2cb0080,17, 0x2cb0100,11, 0x2cb0130,19, 0x2cb0180,17, 0x2cb0200,3, 0x2cb0214,1, 0x2cb021c,1, 0x2cb0280,3, 0x2cb0294,1, 0x2cb029c,1, 0x2cb0300,18, 0x2cb0380,18, 0x2cb0400,18, 0x2cb0480,18, 0x2cb0500,18, 0x2cb0580,18, 0x2cb0600,18, 0x2cb0680,18, 0x2cb0700,13, 0x2cb0738,6, 0x2cb0780,13, 0x2cb07b8,6, 0x2cb0800,1, 0x2cb0808,22, 0x2cb0880,1, 0x2cb0894,13, 0x2cb0900,3, 0x2cb0910,3, 0x2cb0920,3, 0x2cb0940,3, 0x2cb0954,1, 0x2cb095c,1, 0x2cb0a00,52, 0x2cb0c00,4, 0x2cb0d00,34, 0x2cb0e00,4, 0x2cb0e80,30, 0x2cb0f00,1, 0x2cb0f40,5, 0x2cb0f60,5, 0x2cb0f80,6, 0x2cb1000,14, 0x2cb1040,4, 0x2cb1060,17, 0x2cb10c0,6, 0x2cb10e0,1, 0x2cb10e8,2, 0x2cb10f4,11, 0x2cb1124,17, 0x2cb1200,3, 0x2cb1210,3, 0x2cb1220,3, 0x2cb1230,3, 0x2cb1240,3, 0x2cb1250,3, 0x2cb2000,20, 0x2cb2080,3, 0x2cb2090,1, 0x2cb2098,2, 0x2cc0000,500, 0x2cc0800,2, 0x2cc0820,15, 0x2cc1000,500, 0x2cc1800,8, 0x2cc1824,6, 0x2cc1840,8, 0x2cc1880,7, 0x2cc18a0,7, 0x2cc18c0,7, 0x2cc18e0,7, 0x2cc1900,8, 0x2cc1924,16, 0x2cc1980,12, 0x2cc2000,500, 0x2cc2800,2, 0x2cc2820,15, 0x2cc3000,500, 0x2cc3800,8, 0x2cc3824,6, 0x2cc3840,8, 0x2cc3880,7, 0x2cc38a0,7, 0x2cc38c0,7, 0x2cc38e0,7, 0x2cc3900,8, 0x2cc3924,16, 0x2cc3980,12, 0x2cc4004,5, 0x2cc4200,26, 0x2cc4280,4, 0x2cc42c0,25, 0x2cc4340,6, 0x2cc4360,1, 0x2cc4368,2, 0x2cc4374,11, 0x2cc43a4,10, 0x2cc4400,1, 0x2cc8000,52, 0x2cc8400,82, 0x2cc8560,6, 0x2cc8600,41, 0x2cc8700,2, 0x2cc8720,19, 0x2cc8800,25, 0x2cc8880,1, 0x2cc8900,28, 0x2cc8980,1, 0x2cc9000,52, 0x2cc9400,82, 0x2cc9560,6, 0x2cc9600,41, 0x2cc9700,2, 0x2cc9720,19, 0x2cc9800,25, 0x2cc9880,1, 0x2cc9900,28, 0x2cc9980,1, 0x2cca000,7, 0x2cca080,6, 0x2cca0a0,6, 0x2cca0c0,1, 0x2cca100,4, 0x2cca120,9, 0x2ccc000,3, 0x2ccc010,6, 0x2ccc200,7, 0x2ccc220,6, 0x2ccc240,7, 0x2ccc260,6, 0x2ccc280,2, 0x2ccc28c,2, 0x2ccc2a0,2, 0x2ccc2ac,2, 0x2ccc2c0,7, 0x2ccc2e0,7, 0x2ccc300,2, 0x2ccc30c,2, 0x2ccc320,6, 0x2ccc400,3, 0x2ccc440,12, 0x2ccc800,7, 0x2ccc820,14, 0x2ccc880,16, 0x2ccc900,7, 0x2ccc920,14, 0x2ccc980,16, 0x2ccca00,6, 0x2ccca20,7, 0x2cccc00,3, 0x2ce0000,3, 0x2ce0800,7, 0x2ce0820,6, 0x2ce0840,6, 0x2ce0880,1, 0x2ce0894,1, 0x2ce089c,2, 0x2ce08c0,9, 0x2ce0900,18, 0x2ce0a00,36, 0x2ce0b00,22, 0x2ce0b80,18, 0x2ce0c00,3, 0x2ce0c10,3, 0x2ce1000,3, 0x2ce1010,2, 0x2ce1080,20, 0x2ce1100,1, 0x2ce1200,26, 0x2ce1280,4, 0x2ce12c0,25, 0x2ce1340,6, 0x2ce1360,1, 0x2ce1368,2, 0x2ce1374,11, 0x2ce13a4,4, 0x2ce1400,1, 0x2cf0000,11, 0x2cf0030,19, 0x2cf0080,17, 0x2cf0100,11, 0x2cf0130,19, 0x2cf0180,17, 0x2cf0200,3, 0x2cf0214,1, 0x2cf021c,1, 0x2cf0280,3, 0x2cf0294,1, 0x2cf029c,1, 0x2cf0300,18, 0x2cf0380,18, 0x2cf0400,18, 0x2cf0480,18, 0x2cf0500,18, 0x2cf0580,18, 0x2cf0600,18, 0x2cf0680,18, 0x2cf0700,13, 0x2cf0738,6, 0x2cf0780,13, 0x2cf07b8,6, 0x2cf0800,1, 0x2cf0808,22, 0x2cf0880,1, 0x2cf0894,13, 0x2cf0900,3, 0x2cf0910,3, 0x2cf0920,3, 0x2cf0940,3, 0x2cf0954,1, 0x2cf095c,1, 0x2cf0a00,52, 0x2cf0c00,4, 0x2cf0d00,34, 0x2cf0e00,4, 0x2cf0e80,30, 0x2cf0f00,1, 0x2cf0f40,5, 0x2cf0f60,5, 0x2cf0f80,6, 0x2cf1000,14, 0x2cf1040,4, 0x2cf1060,17, 0x2cf10c0,6, 0x2cf10e0,1, 0x2cf10e8,2, 0x2cf10f4,11, 0x2cf1124,17, 0x2cf1200,3, 0x2cf1210,3, 0x2cf1220,3, 0x2cf1230,3, 0x2cf1240,3, 0x2cf1250,3, 0x2cf2000,20, 0x2cf2080,3, 0x2cf2090,1, 0x2cf2098,2, 0x2d00000,13, 0x2d00038,4, 0x2d00050,3, 0x2d00060,3, 0x2d00070,16, 0x2d000c0,5, 0x2d00400,14, 0x2d00440,2, 0x2d0044c,3, 0x2d00480,14, 0x2d004c0,2, 0x2d004cc,3, 0x2d00500,1, 0x2d00508,15, 0x2d00560,2, 0x2d0056c,2, 0x2d00600,4, 0x2d00680,27, 0x2d00800,2, 0x2d00900,32, 0x2d00984,2, 0x2d00990,4, 0x2d00a00,26, 0x2d00a80,4, 0x2d00ac0,25, 0x2d00b40,6, 0x2d00b60,1, 0x2d00b68,2, 0x2d00b74,11, 0x2d00ba4,8, 0x2d00c00,9, 0x2d00c40,11, 0x2d00c80,23, 0x2d00ce0,15, 0x2d00d20,15, 0x2d00d60,1, 0x2d01000,13, 0x2d01038,4, 0x2d01050,3, 0x2d01060,3, 0x2d01070,16, 0x2d010c0,5, 0x2d01400,14, 0x2d01440,2, 0x2d0144c,3, 0x2d01480,14, 0x2d014c0,2, 0x2d014cc,3, 0x2d01500,1, 0x2d01508,15, 0x2d01560,2, 0x2d0156c,2, 0x2d01600,4, 0x2d01680,27, 0x2d01800,2, 0x2d01900,32, 0x2d01984,2, 0x2d01990,4, 0x2d01a00,26, 0x2d01a80,4, 0x2d01ac0,25, 0x2d01b40,6, 0x2d01b60,1, 0x2d01b68,2, 0x2d01b74,11, 0x2d01ba4,8, 0x2d01c00,9, 0x2d01c40,11, 0x2d01c80,23, 0x2d01ce0,15, 0x2d01d20,15, 0x2d01d60,1, 0x2d02000,1, 0x2d02100,36, 0x2d02200,7, 0x2d10000,22, 0x2d10080,22, 0x2d10100,12, 0x2d10140,12, 0x2d10200,52, 0x2d10300,52, 0x2d10400,11, 0x2d10440,11, 0x2d10480,3, 0x2d104a0,6, 0x2d104c0,6, 0x2d104e0,3, 0x2d104f0,3, 0x2d10800,9, 0x2d10840,15, 0x2d10880,15, 0x2d108c0,15, 0x2d10900,1, 0x2d10914,13, 0x2d10980,17, 0x2d11000,17, 0x2d11080,17, 0x2d11104,5, 0x2d11120,3, 0x2d11130,11, 0x2d11200,31, 0x2d11280,31, 0x2d11300,12, 0x2d11340,12, 0x2d11380,2, 0x2d11390,2, 0x2d113a0,3, 0x2d113b0,3, 0x2d113c0,5, 0x2d113e0,5, 0x2d11400,3, 0x2d11410,3, 0x2d11420,3, 0x2d11430,3, 0x2d11440,3, 0x2d11450,3, 0x2d11460,7, 0x2d11800,26, 0x2d11880,4, 0x2d118c0,25, 0x2d11940,6, 0x2d11960,1, 0x2d11968,2, 0x2d11974,11, 0x2d119a4,12, 0x2d11a00,4, 0x2d11b00,43, 0x2d11c00,4, 0x2d11c20,7, 0x2d11c40,3, 0x2d11c50,1, 0x2d11c60,3, 0x2d11e00,32, 0x2d11e84,1, 0x2d11e90,4, 0x2d11ea4,1, 0x2d11eb4,14, 0x2d11ef0,2, 0x2d11f04,1, 0x2d11f10,8, 0x2d11f34,6, 0x2d12000,3, 0x2d12010,21, 0x2d12080,1, 0x2d12094,1, 0x2d1209c,5, 0x2d12100,15, 0x2d12140,1, 0x2d12180,6, 0x2d14000,22, 0x2d14080,22, 0x2d14100,12, 0x2d14140,12, 0x2d14200,52, 0x2d14300,52, 0x2d14400,11, 0x2d14440,11, 0x2d14480,3, 0x2d144a0,6, 0x2d144c0,6, 0x2d144e0,3, 0x2d144f0,3, 0x2d14800,9, 0x2d14840,15, 0x2d14880,15, 0x2d148c0,15, 0x2d14900,1, 0x2d14914,13, 0x2d14980,17, 0x2d15000,17, 0x2d15080,17, 0x2d15104,5, 0x2d15120,3, 0x2d15130,11, 0x2d15200,31, 0x2d15280,31, 0x2d15300,12, 0x2d15340,12, 0x2d15380,2, 0x2d15390,2, 0x2d153a0,3, 0x2d153b0,3, 0x2d153c0,5, 0x2d153e0,5, 0x2d15400,3, 0x2d15410,3, 0x2d15420,3, 0x2d15430,3, 0x2d15440,3, 0x2d15450,3, 0x2d15460,7, 0x2d15800,26, 0x2d15880,4, 0x2d158c0,25, 0x2d15940,6, 0x2d15960,1, 0x2d15968,2, 0x2d15974,11, 0x2d159a4,12, 0x2d15a00,4, 0x2d15b00,43, 0x2d15c00,4, 0x2d15c20,7, 0x2d15c40,3, 0x2d15c50,1, 0x2d15c60,3, 0x2d15e00,32, 0x2d15e84,1, 0x2d15e90,4, 0x2d15ea4,1, 0x2d15eb4,14, 0x2d15ef0,2, 0x2d15f04,1, 0x2d15f10,8, 0x2d15f34,6, 0x2d16000,3, 0x2d16010,21, 0x2d16080,1, 0x2d16094,1, 0x2d1609c,5, 0x2d16100,15, 0x2d16140,1, 0x2d16180,6, 0x2d18000,100, 0x2d18200,3, 0x2d18210,5, 0x2d20000,12, 0x2d20040,2, 0x2d20050,3, 0x2d22000,1006, 0x2d23000,31, 0x2d23084,6, 0x2d24004,1, 0x2d2400c,3, 0x2d24200,23, 0x2d24280,23, 0x2d24300,1, 0x2d24400,1, 0x2d24800,122, 0x2d24a00,122, 0x2d24c04,63, 0x2d24d04,1, 0x2d24d10,5, 0x2d24d40,6, 0x2d24d60,5, 0x2d26000,1, 0x2d26100,1, 0x2d26108,3, 0x2d26120,2, 0x2d26134,8, 0x2d26160,2, 0x2d26174,8, 0x2d261a0,4, 0x2d26200,54, 0x2d26800,5, 0x2d26820,2, 0x2d26834,1, 0x2d2683c,1, 0x2d26a00,24, 0x2d26a80,24, 0x2d26b00,1, 0x2d26c00,6, 0x2d26c24,5, 0x2d26c40,16, 0x2d27000,1, 0x2d27020,5, 0x2d27040,1, 0x2d27048,2, 0x2d27080,1, 0x2d27100,4, 0x2d27180,24, 0x2d27200,4, 0x2d27280,27, 0x2d27300,2, 0x2d2730c,3, 0x2d28004,1, 0x2d2800c,3, 0x2d28020,1, 0x2d28100,2, 0x2d28110,3, 0x2d28120,2, 0x2d28140,10, 0x2d28180,13, 0x2d28200,2, 0x2d28210,3, 0x2d28220,2, 0x2d28240,10, 0x2d28280,13, 0x2d28400,14, 0x2d28440,3, 0x2d28450,3, 0x2d28460,1, 0x2d28500,36, 0x2d28600,10, 0x2d28640,5, 0x2d28660,5, 0x2d28700,27, 0x2d28780,7, 0x2d287a0,8, 0x2d28800,27, 0x2d28880,7, 0x2d288a0,8, 0x2d28900,27, 0x2d28980,7, 0x2d289a0,8, 0x2d28a00,27, 0x2d28a80,7, 0x2d28aa0,8, 0x2d28b00,48, 0x2d28bc4,8, 0x2d28bf0,30, 0x2d28c80,4, 0x2d28cc0,25, 0x2d28d40,6, 0x2d28d60,1, 0x2d28d68,2, 0x2d28d74,3, 0x2d28e00,8, 0x2d28e24,28, 0x2d29000,4, 0x2d29080,23, 0x2d29100,14, 0x2d29140,9, 0x2d29200,10, 0x2d29230,3, 0x2d29240,5, 0x2d29260,5, 0x2d29280,9, 0x2d29400,67, 0x2d29600,10, 0x2d30000,12, 0x2d30040,2, 0x2d30050,3, 0x2d32000,1006, 0x2d33000,31, 0x2d33084,6, 0x2d34004,1, 0x2d3400c,3, 0x2d34200,23, 0x2d34280,23, 0x2d34300,1, 0x2d34400,1, 0x2d34800,122, 0x2d34a00,122, 0x2d34c04,63, 0x2d34d04,1, 0x2d34d10,5, 0x2d34d40,6, 0x2d34d60,5, 0x2d36000,1, 0x2d36100,1, 0x2d36108,3, 0x2d36120,2, 0x2d36134,8, 0x2d36160,2, 0x2d36174,8, 0x2d361a0,4, 0x2d36200,54, 0x2d36800,5, 0x2d36820,2, 0x2d36834,1, 0x2d3683c,1, 0x2d36a00,24, 0x2d36a80,24, 0x2d36b00,1, 0x2d36c00,6, 0x2d36c24,5, 0x2d36c40,16, 0x2d37000,1, 0x2d37020,5, 0x2d37040,1, 0x2d37048,2, 0x2d37080,1, 0x2d37100,4, 0x2d37180,24, 0x2d37200,4, 0x2d37280,27, 0x2d37300,2, 0x2d3730c,3, 0x2d38004,1, 0x2d3800c,3, 0x2d38020,1, 0x2d38100,2, 0x2d38110,3, 0x2d38120,2, 0x2d38140,10, 0x2d38180,13, 0x2d38200,2, 0x2d38210,3, 0x2d38220,2, 0x2d38240,10, 0x2d38280,13, 0x2d38400,14, 0x2d38440,3, 0x2d38450,3, 0x2d38460,1, 0x2d38500,36, 0x2d38600,10, 0x2d38640,5, 0x2d38660,5, 0x2d38700,27, 0x2d38780,7, 0x2d387a0,8, 0x2d38800,27, 0x2d38880,7, 0x2d388a0,8, 0x2d38900,27, 0x2d38980,7, 0x2d389a0,8, 0x2d38a00,27, 0x2d38a80,7, 0x2d38aa0,8, 0x2d38b00,48, 0x2d38bc4,8, 0x2d38bf0,30, 0x2d38c80,4, 0x2d38cc0,25, 0x2d38d40,6, 0x2d38d60,1, 0x2d38d68,2, 0x2d38d74,3, 0x2d38e00,8, 0x2d38e24,28, 0x2d39000,4, 0x2d39080,23, 0x2d39100,14, 0x2d39140,9, 0x2d39200,10, 0x2d39230,3, 0x2d39240,5, 0x2d39260,5, 0x2d39280,9, 0x2d39400,67, 0x2d39600,10, 0x2e00000,1, 0x2e00020,3, 0x2e00030,2, 0x2e00040,3, 0x2e00050,2, 0x2e00800,53, 0x2e00900,3, 0x2e00910,13, 0x2e00a00,53, 0x2e00b00,3, 0x2e00b10,13, 0x2e00c00,5, 0x2e00c20,5, 0x2e00c40,18, 0x2e01000,6, 0x2e01020,4, 0x2e01040,16, 0x2e02000,20, 0x2e02080,15, 0x2e02100,20, 0x2e02180,15, 0x2e02200,23, 0x2e02260,7, 0x2e02400,11, 0x2e02430,3, 0x2e02440,3, 0x2e02450,3, 0x2e02460,24, 0x2e02500,11, 0x2e02530,3, 0x2e02540,3, 0x2e02550,3, 0x2e02560,24, 0x2e02600,11, 0x2e02630,3, 0x2e02640,3, 0x2e02650,3, 0x2e02660,24, 0x2e02700,11, 0x2e02730,3, 0x2e02740,3, 0x2e02750,3, 0x2e02760,24, 0x2e02800,4, 0x2e02820,16, 0x2e02880,10, 0x2e028c0,10, 0x2e02900,6, 0x2e02920,6, 0x2e02940,4, 0x2e02980,13, 0x2e029c0,13, 0x2e02a00,9, 0x2e03000,14, 0x2e03040,9, 0x2e03080,6, 0x2e030a0,1, 0x2e030a8,4, 0x2e03100,4, 0x2e03200,124, 0x2e03400,124, 0x2e03600,8, 0x2e03624,1, 0x2e03644,6, 0x2e03664,6, 0x2e03680,1, 0x2e03688,6, 0x2e036a8,22, 0x2e04000,1, 0x2e04020,3, 0x2e04030,2, 0x2e04040,3, 0x2e04050,2, 0x2e04800,53, 0x2e04900,3, 0x2e04910,13, 0x2e04a00,53, 0x2e04b00,3, 0x2e04b10,13, 0x2e04c00,5, 0x2e04c20,5, 0x2e04c40,18, 0x2e05000,6, 0x2e05020,4, 0x2e05040,16, 0x2e06000,20, 0x2e06080,15, 0x2e06100,20, 0x2e06180,15, 0x2e06200,23, 0x2e06260,7, 0x2e06400,11, 0x2e06430,3, 0x2e06440,3, 0x2e06450,3, 0x2e06460,24, 0x2e06500,11, 0x2e06530,3, 0x2e06540,3, 0x2e06550,3, 0x2e06560,24, 0x2e06600,11, 0x2e06630,3, 0x2e06640,3, 0x2e06650,3, 0x2e06660,24, 0x2e06700,11, 0x2e06730,3, 0x2e06740,3, 0x2e06750,3, 0x2e06760,24, 0x2e06800,4, 0x2e06820,16, 0x2e06880,10, 0x2e068c0,10, 0x2e06900,6, 0x2e06920,6, 0x2e06940,4, 0x2e06980,13, 0x2e069c0,13, 0x2e06a00,9, 0x2e07000,14, 0x2e07040,9, 0x2e07080,6, 0x2e070a0,1, 0x2e070a8,4, 0x2e07100,4, 0x2e07200,124, 0x2e07400,124, 0x2e07600,8, 0x2e07624,1, 0x2e07644,6, 0x2e07664,6, 0x2e07680,1, 0x2e07688,6, 0x2e076a8,22, 0x2e08000,84, 0x2e08180,20, 0x2e08200,5, 0x2e08400,11, 0x2e08440,11, 0x2e08480,19, 0x2e08500,19, 0x2e08580,24, 0x2e08600,13, 0x2e08800,84, 0x2e08980,20, 0x2e08a00,5, 0x2e08c00,11, 0x2e08c40,11, 0x2e08c80,19, 0x2e08d00,19, 0x2e08d80,24, 0x2e08e00,13, 0x2e09000,10, 0x2e09040,5, 0x2e09080,10, 0x2e090c0,5, 0x2e09100,5, 0x2e09200,11, 0x2e09230,3, 0x2e09240,5, 0x2e09260,5, 0x2e09280,32, 0x2e09400,13, 0x2e09440,13, 0x2e09480,9, 0x2e094c0,1, 0x2e094d0,5, 0x2e094f0,21, 0x2e09800,10, 0x2e09840,5, 0x2e09880,10, 0x2e098c0,5, 0x2e09900,5, 0x2e09a00,11, 0x2e09a30,3, 0x2e09a40,5, 0x2e09a60,5, 0x2e09a80,32, 0x2e09c00,13, 0x2e09c40,13, 0x2e09c80,9, 0x2e09cc0,1, 0x2e09cd0,5, 0x2e09cf0,21, 0x2e0a000,14, 0x2e0a040,9, 0x2e0a080,6, 0x2e0a0a0,1, 0x2e0a0a8,4, 0x2e0a100,7, 0x2e0a120,3, 0x2e0a130,25, 0x2e0c000,26, 0x2e0c06c,2, 0x2e0c080,3, 0x2e0c090,17, 0x2e0c100,26, 0x2e0c16c,2, 0x2e0c180,3, 0x2e0c190,17, 0x2e0c200,26, 0x2e0c26c,2, 0x2e0c280,3, 0x2e0c290,17, 0x2e0c300,26, 0x2e0c36c,2, 0x2e0c380,3, 0x2e0c390,17, 0x2e0c400,26, 0x2e0c46c,2, 0x2e0c480,3, 0x2e0c490,17, 0x2e0c500,26, 0x2e0c56c,2, 0x2e0c580,3, 0x2e0c590,17, 0x2e0c600,26, 0x2e0c66c,2, 0x2e0c680,3, 0x2e0c690,17, 0x2e0c700,26, 0x2e0c76c,2, 0x2e0c780,3, 0x2e0c790,17, 0x2e0c800,12, 0x2e0c844,1, 0x2e0c854,8, 0x2e0c880,7, 0x2e0c8a0,2, 0x2e0c8ac,2, 0x2e0c8c0,26, 0x2e0c980,4, 0x2e0c9a0,5, 0x2e0c9c0,1, 0x2e0d000,3, 0x2e0d010,3, 0x2e0d020,3, 0x2e0d030,3, 0x2e0d040,3, 0x2e0d050,3, 0x2e0d060,3, 0x2e0d070,3, 0x2e0d080,5, 0x2e0d0a0,5, 0x2e0d0c0,5, 0x2e0d0e0,5, 0x2e0d100,5, 0x2e0d120,5, 0x2e0d140,5, 0x2e0d160,5, 0x2e0d200,68, 0x2e0d400,1, 0x2e0d804,1, 0x2e0d844,54, 0x2e0da00,11, 0x2e0da40,11, 0x2e0da80,11, 0x2e0dac0,11, 0x2e0db00,11, 0x2e0db40,11, 0x2e0db80,11, 0x2e0dbc0,11, 0x2e0dc00,28, 0x2e0dc80,5, 0x2e0dca0,2, 0x2e0e000,4, 0x2e0e020,6, 0x2e0e040,6, 0x2e0e060,14, 0x2e0e100,26, 0x2e0e180,15, 0x2e0e200,14, 0x2e0e240,9, 0x2e0e280,6, 0x2e0e2a0,1, 0x2e0e2a8,4, 0x2e0e300,14, 0x2e0e340,9, 0x2e0e380,6, 0x2e0e3a0,4, 0x2e0e400,9, 0x2e20000,1, 0x2e21000,977, 0x2e22000,161, 0x2e23000,977, 0x2e24000,977, 0x2e25000,977, 0x2e26000,977, 0x2e27000,977, 0x2e28000,977, 0x2e29000,977, 0x2e2a000,977, 0x2e2b000,161, 0x2e2c000,12, 0x2e2c040,14, 0x2e2c080,20, 0x2e2c104,1, 0x2e2c10c,4, 0x2e2c200,12, 0x2e2c240,14, 0x2e2c280,20, 0x2e2c304,1, 0x2e2c30c,4, 0x2e2c400,12, 0x2e2c440,14, 0x2e2c480,20, 0x2e2c504,1, 0x2e2c50c,4, 0x2e2c600,12, 0x2e2c640,14, 0x2e2c680,20, 0x2e2c704,1, 0x2e2c70c,4, 0x2e2c800,12, 0x2e2c840,14, 0x2e2c880,20, 0x2e2c904,1, 0x2e2c90c,4, 0x2e2ca00,12, 0x2e2ca40,14, 0x2e2ca80,20, 0x2e2cb04,1, 0x2e2cb0c,4, 0x2e2cc00,12, 0x2e2cc40,14, 0x2e2cc80,20, 0x2e2cd04,1, 0x2e2cd0c,4, 0x2e2ce00,12, 0x2e2ce40,14, 0x2e2ce80,20, 0x2e2cf04,1, 0x2e2cf0c,4, 0x2e2d000,12, 0x2e2d040,14, 0x2e2d080,20, 0x2e2d104,1, 0x2e2d10c,4, 0x2e2d200,17, 0x2e2d250,2, 0x2e2d260,4, 0x2e2e000,1, 0x2e2e014,1, 0x2e2e01c,11, 0x2e2e060,9, 0x2e2e094,1, 0x2e2e09c,11, 0x2e2e0e0,15, 0x2e2e200,12, 0x2e2e240,13, 0x2e2e280,3, 0x2e2e290,1, 0x2e80000,500, 0x2e80800,2, 0x2e80820,15, 0x2e81000,500, 0x2e81800,8, 0x2e81824,6, 0x2e81840,8, 0x2e81880,7, 0x2e818a0,7, 0x2e818c0,7, 0x2e818e0,7, 0x2e81900,8, 0x2e81924,16, 0x2e81980,12, 0x2e82000,500, 0x2e82800,2, 0x2e82820,15, 0x2e83000,500, 0x2e83800,8, 0x2e83824,6, 0x2e83840,8, 0x2e83880,7, 0x2e838a0,7, 0x2e838c0,7, 0x2e838e0,7, 0x2e83900,8, 0x2e83924,16, 0x2e83980,12, 0x2e84004,5, 0x2e84200,26, 0x2e84280,4, 0x2e842c0,25, 0x2e84340,6, 0x2e84360,1, 0x2e84368,2, 0x2e84374,11, 0x2e843a4,10, 0x2e84400,1, 0x2e88000,52, 0x2e88400,82, 0x2e88560,6, 0x2e88600,41, 0x2e88700,2, 0x2e88720,19, 0x2e88800,25, 0x2e88880,1, 0x2e88900,28, 0x2e88980,1, 0x2e89000,52, 0x2e89400,82, 0x2e89560,6, 0x2e89600,41, 0x2e89700,2, 0x2e89720,19, 0x2e89800,25, 0x2e89880,1, 0x2e89900,28, 0x2e89980,1, 0x2e8a000,7, 0x2e8a080,6, 0x2e8a0a0,6, 0x2e8a0c0,1, 0x2e8a100,4, 0x2e8a120,9, 0x2e8c000,3, 0x2e8c010,6, 0x2e8c200,7, 0x2e8c220,6, 0x2e8c240,7, 0x2e8c260,6, 0x2e8c280,2, 0x2e8c28c,2, 0x2e8c2a0,2, 0x2e8c2ac,2, 0x2e8c2c0,7, 0x2e8c2e0,7, 0x2e8c300,2, 0x2e8c30c,2, 0x2e8c320,6, 0x2e8c400,3, 0x2e8c440,12, 0x2e8c800,7, 0x2e8c820,14, 0x2e8c880,16, 0x2e8c900,7, 0x2e8c920,14, 0x2e8c980,16, 0x2e8ca00,6, 0x2e8ca20,7, 0x2e8cc00,3, 0x2ea0000,3, 0x2ea0800,7, 0x2ea0820,6, 0x2ea0840,6, 0x2ea0880,1, 0x2ea0894,1, 0x2ea089c,2, 0x2ea08c0,9, 0x2ea0900,18, 0x2ea0a00,36, 0x2ea0b00,22, 0x2ea0b80,18, 0x2ea0c00,3, 0x2ea0c10,3, 0x2ea1000,3, 0x2ea1010,2, 0x2ea1080,20, 0x2ea1100,1, 0x2ea1200,26, 0x2ea1280,4, 0x2ea12c0,25, 0x2ea1340,6, 0x2ea1360,1, 0x2ea1368,2, 0x2ea1374,11, 0x2ea13a4,4, 0x2ea1400,1, 0x2eb0000,11, 0x2eb0030,19, 0x2eb0080,17, 0x2eb0100,11, 0x2eb0130,19, 0x2eb0180,17, 0x2eb0200,3, 0x2eb0214,1, 0x2eb021c,1, 0x2eb0280,3, 0x2eb0294,1, 0x2eb029c,1, 0x2eb0300,18, 0x2eb0380,18, 0x2eb0400,18, 0x2eb0480,18, 0x2eb0500,18, 0x2eb0580,18, 0x2eb0600,18, 0x2eb0680,18, 0x2eb0700,13, 0x2eb0738,6, 0x2eb0780,13, 0x2eb07b8,6, 0x2eb0800,1, 0x2eb0808,22, 0x2eb0880,1, 0x2eb0894,13, 0x2eb0900,3, 0x2eb0910,3, 0x2eb0920,3, 0x2eb0940,3, 0x2eb0954,1, 0x2eb095c,1, 0x2eb0a00,52, 0x2eb0c00,4, 0x2eb0d00,34, 0x2eb0e00,4, 0x2eb0e80,30, 0x2eb0f00,1, 0x2eb0f40,5, 0x2eb0f60,5, 0x2eb0f80,6, 0x2eb1000,14, 0x2eb1040,4, 0x2eb1060,17, 0x2eb10c0,6, 0x2eb10e0,1, 0x2eb10e8,2, 0x2eb10f4,11, 0x2eb1124,17, 0x2eb1200,3, 0x2eb1210,3, 0x2eb1220,3, 0x2eb1230,3, 0x2eb1240,3, 0x2eb1250,3, 0x2eb2000,20, 0x2eb2080,3, 0x2eb2090,1, 0x2eb2098,2, 0x2ec0000,500, 0x2ec0800,2, 0x2ec0820,15, 0x2ec1000,500, 0x2ec1800,8, 0x2ec1824,6, 0x2ec1840,8, 0x2ec1880,7, 0x2ec18a0,7, 0x2ec18c0,7, 0x2ec18e0,7, 0x2ec1900,8, 0x2ec1924,16, 0x2ec1980,12, 0x2ec2000,500, 0x2ec2800,2, 0x2ec2820,15, 0x2ec3000,500, 0x2ec3800,8, 0x2ec3824,6, 0x2ec3840,8, 0x2ec3880,7, 0x2ec38a0,7, 0x2ec38c0,7, 0x2ec38e0,7, 0x2ec3900,8, 0x2ec3924,16, 0x2ec3980,12, 0x2ec4004,5, 0x2ec4200,26, 0x2ec4280,4, 0x2ec42c0,25, 0x2ec4340,6, 0x2ec4360,1, 0x2ec4368,2, 0x2ec4374,11, 0x2ec43a4,10, 0x2ec4400,1, 0x2ec8000,52, 0x2ec8400,82, 0x2ec8560,6, 0x2ec8600,41, 0x2ec8700,2, 0x2ec8720,19, 0x2ec8800,25, 0x2ec8880,1, 0x2ec8900,28, 0x2ec8980,1, 0x2ec9000,52, 0x2ec9400,82, 0x2ec9560,6, 0x2ec9600,41, 0x2ec9700,2, 0x2ec9720,19, 0x2ec9800,25, 0x2ec9880,1, 0x2ec9900,28, 0x2ec9980,1, 0x2eca000,7, 0x2eca080,6, 0x2eca0a0,6, 0x2eca0c0,1, 0x2eca100,4, 0x2eca120,9, 0x2ecc000,3, 0x2ecc010,6, 0x2ecc200,7, 0x2ecc220,6, 0x2ecc240,7, 0x2ecc260,6, 0x2ecc280,2, 0x2ecc28c,2, 0x2ecc2a0,2, 0x2ecc2ac,2, 0x2ecc2c0,7, 0x2ecc2e0,7, 0x2ecc300,2, 0x2ecc30c,2, 0x2ecc320,6, 0x2ecc400,3, 0x2ecc440,12, 0x2ecc800,7, 0x2ecc820,14, 0x2ecc880,16, 0x2ecc900,7, 0x2ecc920,14, 0x2ecc980,16, 0x2ecca00,6, 0x2ecca20,7, 0x2eccc00,3, 0x2ee0000,3, 0x2ee0800,7, 0x2ee0820,6, 0x2ee0840,6, 0x2ee0880,1, 0x2ee0894,1, 0x2ee089c,2, 0x2ee08c0,9, 0x2ee0900,18, 0x2ee0a00,36, 0x2ee0b00,22, 0x2ee0b80,18, 0x2ee0c00,3, 0x2ee0c10,3, 0x2ee1000,3, 0x2ee1010,2, 0x2ee1080,20, 0x2ee1100,1, 0x2ee1200,26, 0x2ee1280,4, 0x2ee12c0,25, 0x2ee1340,6, 0x2ee1360,1, 0x2ee1368,2, 0x2ee1374,11, 0x2ee13a4,4, 0x2ee1400,1, 0x2ef0000,11, 0x2ef0030,19, 0x2ef0080,17, 0x2ef0100,11, 0x2ef0130,19, 0x2ef0180,17, 0x2ef0200,3, 0x2ef0214,1, 0x2ef021c,1, 0x2ef0280,3, 0x2ef0294,1, 0x2ef029c,1, 0x2ef0300,18, 0x2ef0380,18, 0x2ef0400,18, 0x2ef0480,18, 0x2ef0500,18, 0x2ef0580,18, 0x2ef0600,18, 0x2ef0680,18, 0x2ef0700,13, 0x2ef0738,6, 0x2ef0780,13, 0x2ef07b8,6, 0x2ef0800,1, 0x2ef0808,22, 0x2ef0880,1, 0x2ef0894,13, 0x2ef0900,3, 0x2ef0910,3, 0x2ef0920,3, 0x2ef0940,3, 0x2ef0954,1, 0x2ef095c,1, 0x2ef0a00,52, 0x2ef0c00,4, 0x2ef0d00,34, 0x2ef0e00,4, 0x2ef0e80,30, 0x2ef0f00,1, 0x2ef0f40,5, 0x2ef0f60,5, 0x2ef0f80,6, 0x2ef1000,14, 0x2ef1040,4, 0x2ef1060,17, 0x2ef10c0,6, 0x2ef10e0,1, 0x2ef10e8,2, 0x2ef10f4,11, 0x2ef1124,17, 0x2ef1200,3, 0x2ef1210,3, 0x2ef1220,3, 0x2ef1230,3, 0x2ef1240,3, 0x2ef1250,3, 0x2ef2000,20, 0x2ef2080,3, 0x2ef2090,1, 0x2ef2098,2, 0x2f00000,13, 0x2f00038,4, 0x2f00050,3, 0x2f00060,3, 0x2f00070,16, 0x2f000c0,5, 0x2f00400,14, 0x2f00440,2, 0x2f0044c,3, 0x2f00480,14, 0x2f004c0,2, 0x2f004cc,3, 0x2f00500,1, 0x2f00508,15, 0x2f00560,2, 0x2f0056c,2, 0x2f00600,4, 0x2f00680,27, 0x2f00800,2, 0x2f00900,32, 0x2f00984,2, 0x2f00990,4, 0x2f00a00,26, 0x2f00a80,4, 0x2f00ac0,25, 0x2f00b40,6, 0x2f00b60,1, 0x2f00b68,2, 0x2f00b74,11, 0x2f00ba4,8, 0x2f00c00,9, 0x2f00c40,11, 0x2f00c80,23, 0x2f00ce0,15, 0x2f00d20,15, 0x2f00d60,1, 0x2f01000,13, 0x2f01038,4, 0x2f01050,3, 0x2f01060,3, 0x2f01070,16, 0x2f010c0,5, 0x2f01400,14, 0x2f01440,2, 0x2f0144c,3, 0x2f01480,14, 0x2f014c0,2, 0x2f014cc,3, 0x2f01500,1, 0x2f01508,15, 0x2f01560,2, 0x2f0156c,2, 0x2f01600,4, 0x2f01680,27, 0x2f01800,2, 0x2f01900,32, 0x2f01984,2, 0x2f01990,4, 0x2f01a00,26, 0x2f01a80,4, 0x2f01ac0,25, 0x2f01b40,6, 0x2f01b60,1, 0x2f01b68,2, 0x2f01b74,11, 0x2f01ba4,8, 0x2f01c00,9, 0x2f01c40,11, 0x2f01c80,23, 0x2f01ce0,15, 0x2f01d20,15, 0x2f01d60,1, 0x2f02000,1, 0x2f02100,36, 0x2f02200,7, 0x2f10000,22, 0x2f10080,22, 0x2f10100,12, 0x2f10140,12, 0x2f10200,52, 0x2f10300,52, 0x2f10400,11, 0x2f10440,11, 0x2f10480,3, 0x2f104a0,6, 0x2f104c0,6, 0x2f104e0,3, 0x2f104f0,3, 0x2f10800,9, 0x2f10840,15, 0x2f10880,15, 0x2f108c0,15, 0x2f10900,1, 0x2f10914,13, 0x2f10980,17, 0x2f11000,17, 0x2f11080,17, 0x2f11104,5, 0x2f11120,3, 0x2f11130,11, 0x2f11200,31, 0x2f11280,31, 0x2f11300,12, 0x2f11340,12, 0x2f11380,2, 0x2f11390,2, 0x2f113a0,3, 0x2f113b0,3, 0x2f113c0,5, 0x2f113e0,5, 0x2f11400,3, 0x2f11410,3, 0x2f11420,3, 0x2f11430,3, 0x2f11440,3, 0x2f11450,3, 0x2f11460,7, 0x2f11800,26, 0x2f11880,4, 0x2f118c0,25, 0x2f11940,6, 0x2f11960,1, 0x2f11968,2, 0x2f11974,11, 0x2f119a4,12, 0x2f11a00,4, 0x2f11b00,43, 0x2f11c00,4, 0x2f11c20,7, 0x2f11c40,3, 0x2f11c50,1, 0x2f11c60,3, 0x2f11e00,32, 0x2f11e84,1, 0x2f11e90,4, 0x2f11ea4,1, 0x2f11eb4,14, 0x2f11ef0,2, 0x2f11f04,1, 0x2f11f10,8, 0x2f11f34,6, 0x2f12000,3, 0x2f12010,21, 0x2f12080,1, 0x2f12094,1, 0x2f1209c,5, 0x2f12100,15, 0x2f12140,1, 0x2f12180,6, 0x2f14000,22, 0x2f14080,22, 0x2f14100,12, 0x2f14140,12, 0x2f14200,52, 0x2f14300,52, 0x2f14400,11, 0x2f14440,11, 0x2f14480,3, 0x2f144a0,6, 0x2f144c0,6, 0x2f144e0,3, 0x2f144f0,3, 0x2f14800,9, 0x2f14840,15, 0x2f14880,15, 0x2f148c0,15, 0x2f14900,1, 0x2f14914,13, 0x2f14980,17, 0x2f15000,17, 0x2f15080,17, 0x2f15104,5, 0x2f15120,3, 0x2f15130,11, 0x2f15200,31, 0x2f15280,31, 0x2f15300,12, 0x2f15340,12, 0x2f15380,2, 0x2f15390,2, 0x2f153a0,3, 0x2f153b0,3, 0x2f153c0,5, 0x2f153e0,5, 0x2f15400,3, 0x2f15410,3, 0x2f15420,3, 0x2f15430,3, 0x2f15440,3, 0x2f15450,3, 0x2f15460,7, 0x2f15800,26, 0x2f15880,4, 0x2f158c0,25, 0x2f15940,6, 0x2f15960,1, 0x2f15968,2, 0x2f15974,11, 0x2f159a4,12, 0x2f15a00,4, 0x2f15b00,43, 0x2f15c00,4, 0x2f15c20,7, 0x2f15c40,3, 0x2f15c50,1, 0x2f15c60,3, 0x2f15e00,32, 0x2f15e84,1, 0x2f15e90,4, 0x2f15ea4,1, 0x2f15eb4,14, 0x2f15ef0,2, 0x2f15f04,1, 0x2f15f10,8, 0x2f15f34,6, 0x2f16000,3, 0x2f16010,21, 0x2f16080,1, 0x2f16094,1, 0x2f1609c,5, 0x2f16100,15, 0x2f16140,1, 0x2f16180,6, 0x2f18000,100, 0x2f18200,3, 0x2f18210,5, 0x2f20000,12, 0x2f20040,2, 0x2f20050,3, 0x2f22000,1006, 0x2f23000,31, 0x2f23084,6, 0x2f24004,1, 0x2f2400c,3, 0x2f24200,23, 0x2f24280,23, 0x2f24300,1, 0x2f24400,1, 0x2f24800,122, 0x2f24a00,122, 0x2f24c04,63, 0x2f24d04,1, 0x2f24d10,5, 0x2f24d40,6, 0x2f24d60,5, 0x2f26000,1, 0x2f26100,1, 0x2f26108,3, 0x2f26120,2, 0x2f26134,8, 0x2f26160,2, 0x2f26174,8, 0x2f261a0,4, 0x2f26200,54, 0x2f26800,5, 0x2f26820,2, 0x2f26834,1, 0x2f2683c,1, 0x2f26a00,24, 0x2f26a80,24, 0x2f26b00,1, 0x2f26c00,6, 0x2f26c24,5, 0x2f26c40,16, 0x2f27000,1, 0x2f27020,5, 0x2f27040,1, 0x2f27048,2, 0x2f27080,1, 0x2f27100,4, 0x2f27180,24, 0x2f27200,4, 0x2f27280,27, 0x2f27300,2, 0x2f2730c,3, 0x2f28004,1, 0x2f2800c,3, 0x2f28020,1, 0x2f28100,2, 0x2f28110,3, 0x2f28120,2, 0x2f28140,10, 0x2f28180,13, 0x2f28200,2, 0x2f28210,3, 0x2f28220,2, 0x2f28240,10, 0x2f28280,13, 0x2f28400,14, 0x2f28440,3, 0x2f28450,3, 0x2f28460,1, 0x2f28500,36, 0x2f28600,10, 0x2f28640,5, 0x2f28660,5, 0x2f28700,27, 0x2f28780,7, 0x2f287a0,8, 0x2f28800,27, 0x2f28880,7, 0x2f288a0,8, 0x2f28900,27, 0x2f28980,7, 0x2f289a0,8, 0x2f28a00,27, 0x2f28a80,7, 0x2f28aa0,8, 0x2f28b00,48, 0x2f28bc4,8, 0x2f28bf0,30, 0x2f28c80,4, 0x2f28cc0,25, 0x2f28d40,6, 0x2f28d60,1, 0x2f28d68,2, 0x2f28d74,3, 0x2f28e00,8, 0x2f28e24,28, 0x2f29000,4, 0x2f29080,23, 0x2f29100,14, 0x2f29140,9, 0x2f29200,10, 0x2f29230,3, 0x2f29240,5, 0x2f29260,5, 0x2f29280,9, 0x2f29400,67, 0x2f29600,10, 0x2f30000,12, 0x2f30040,2, 0x2f30050,3, 0x2f32000,1006, 0x2f33000,31, 0x2f33084,6, 0x2f34004,1, 0x2f3400c,3, 0x2f34200,23, 0x2f34280,23, 0x2f34300,1, 0x2f34400,1, 0x2f34800,122, 0x2f34a00,122, 0x2f34c04,63, 0x2f34d04,1, 0x2f34d10,5, 0x2f34d40,6, 0x2f34d60,5, 0x2f36000,1, 0x2f36100,1, 0x2f36108,3, 0x2f36120,2, 0x2f36134,8, 0x2f36160,2, 0x2f36174,8, 0x2f361a0,4, 0x2f36200,54, 0x2f36800,5, 0x2f36820,2, 0x2f36834,1, 0x2f3683c,1, 0x2f36a00,24, 0x2f36a80,24, 0x2f36b00,1, 0x2f36c00,6, 0x2f36c24,5, 0x2f36c40,16, 0x2f37000,1, 0x2f37020,5, 0x2f37040,1, 0x2f37048,2, 0x2f37080,1, 0x2f37100,4, 0x2f37180,24, 0x2f37200,4, 0x2f37280,27, 0x2f37300,2, 0x2f3730c,3, 0x2f38004,1, 0x2f3800c,3, 0x2f38020,1, 0x2f38100,2, 0x2f38110,3, 0x2f38120,2, 0x2f38140,10, 0x2f38180,13, 0x2f38200,2, 0x2f38210,3, 0x2f38220,2, 0x2f38240,10, 0x2f38280,13, 0x2f38400,14, 0x2f38440,3, 0x2f38450,3, 0x2f38460,1, 0x2f38500,36, 0x2f38600,10, 0x2f38640,5, 0x2f38660,5, 0x2f38700,27, 0x2f38780,7, 0x2f387a0,8, 0x2f38800,27, 0x2f38880,7, 0x2f388a0,8, 0x2f38900,27, 0x2f38980,7, 0x2f389a0,8, 0x2f38a00,27, 0x2f38a80,7, 0x2f38aa0,8, 0x2f38b00,48, 0x2f38bc4,8, 0x2f38bf0,30, 0x2f38c80,4, 0x2f38cc0,25, 0x2f38d40,6, 0x2f38d60,1, 0x2f38d68,2, 0x2f38d74,3, 0x2f38e00,8, 0x2f38e24,28, 0x2f39000,4, 0x2f39080,23, 0x2f39100,14, 0x2f39140,9, 0x2f39200,10, 0x2f39230,3, 0x2f39240,5, 0x2f39260,5, 0x2f39280,9, 0x2f39400,67, 0x2f39600,10, 0x3000000,1, 0x3000020,3, 0x3000030,2, 0x3000040,3, 0x3000050,2, 0x3000800,53, 0x3000900,3, 0x3000910,13, 0x3000a00,53, 0x3000b00,3, 0x3000b10,13, 0x3000c00,5, 0x3000c20,5, 0x3000c40,18, 0x3001000,6, 0x3001020,4, 0x3001040,16, 0x3002000,20, 0x3002080,15, 0x3002100,20, 0x3002180,15, 0x3002200,23, 0x3002260,7, 0x3002400,11, 0x3002430,3, 0x3002440,3, 0x3002450,3, 0x3002460,24, 0x3002500,11, 0x3002530,3, 0x3002540,3, 0x3002550,3, 0x3002560,24, 0x3002600,11, 0x3002630,3, 0x3002640,3, 0x3002650,3, 0x3002660,24, 0x3002700,11, 0x3002730,3, 0x3002740,3, 0x3002750,3, 0x3002760,24, 0x3002800,4, 0x3002820,16, 0x3002880,10, 0x30028c0,10, 0x3002900,6, 0x3002920,6, 0x3002940,4, 0x3002980,13, 0x30029c0,13, 0x3002a00,9, 0x3003000,14, 0x3003040,9, 0x3003080,6, 0x30030a0,1, 0x30030a8,4, 0x3003100,4, 0x3003200,124, 0x3003400,124, 0x3003600,8, 0x3003624,1, 0x3003644,6, 0x3003664,6, 0x3003680,1, 0x3003688,6, 0x30036a8,22, 0x3004000,1, 0x3004020,3, 0x3004030,2, 0x3004040,3, 0x3004050,2, 0x3004800,53, 0x3004900,3, 0x3004910,13, 0x3004a00,53, 0x3004b00,3, 0x3004b10,13, 0x3004c00,5, 0x3004c20,5, 0x3004c40,18, 0x3005000,6, 0x3005020,4, 0x3005040,16, 0x3006000,20, 0x3006080,15, 0x3006100,20, 0x3006180,15, 0x3006200,23, 0x3006260,7, 0x3006400,11, 0x3006430,3, 0x3006440,3, 0x3006450,3, 0x3006460,24, 0x3006500,11, 0x3006530,3, 0x3006540,3, 0x3006550,3, 0x3006560,24, 0x3006600,11, 0x3006630,3, 0x3006640,3, 0x3006650,3, 0x3006660,24, 0x3006700,11, 0x3006730,3, 0x3006740,3, 0x3006750,3, 0x3006760,24, 0x3006800,4, 0x3006820,16, 0x3006880,10, 0x30068c0,10, 0x3006900,6, 0x3006920,6, 0x3006940,4, 0x3006980,13, 0x30069c0,13, 0x3006a00,9, 0x3007000,14, 0x3007040,9, 0x3007080,6, 0x30070a0,1, 0x30070a8,4, 0x3007100,4, 0x3007200,124, 0x3007400,124, 0x3007600,8, 0x3007624,1, 0x3007644,6, 0x3007664,6, 0x3007680,1, 0x3007688,6, 0x30076a8,22, 0x3008000,84, 0x3008180,20, 0x3008200,5, 0x3008400,11, 0x3008440,11, 0x3008480,19, 0x3008500,19, 0x3008580,24, 0x3008600,13, 0x3008800,84, 0x3008980,20, 0x3008a00,5, 0x3008c00,11, 0x3008c40,11, 0x3008c80,19, 0x3008d00,19, 0x3008d80,24, 0x3008e00,13, 0x3009000,10, 0x3009040,5, 0x3009080,10, 0x30090c0,5, 0x3009100,5, 0x3009200,11, 0x3009230,3, 0x3009240,5, 0x3009260,5, 0x3009280,32, 0x3009400,13, 0x3009440,13, 0x3009480,9, 0x30094c0,1, 0x30094d0,5, 0x30094f0,21, 0x3009800,10, 0x3009840,5, 0x3009880,10, 0x30098c0,5, 0x3009900,5, 0x3009a00,11, 0x3009a30,3, 0x3009a40,5, 0x3009a60,5, 0x3009a80,32, 0x3009c00,13, 0x3009c40,13, 0x3009c80,9, 0x3009cc0,1, 0x3009cd0,5, 0x3009cf0,21, 0x300a000,14, 0x300a040,9, 0x300a080,6, 0x300a0a0,1, 0x300a0a8,4, 0x300a100,7, 0x300a120,3, 0x300a130,25, 0x300c000,26, 0x300c06c,2, 0x300c080,3, 0x300c090,17, 0x300c100,26, 0x300c16c,2, 0x300c180,3, 0x300c190,17, 0x300c200,26, 0x300c26c,2, 0x300c280,3, 0x300c290,17, 0x300c300,26, 0x300c36c,2, 0x300c380,3, 0x300c390,17, 0x300c400,26, 0x300c46c,2, 0x300c480,3, 0x300c490,17, 0x300c500,26, 0x300c56c,2, 0x300c580,3, 0x300c590,17, 0x300c600,26, 0x300c66c,2, 0x300c680,3, 0x300c690,17, 0x300c700,26, 0x300c76c,2, 0x300c780,3, 0x300c790,17, 0x300c800,12, 0x300c844,1, 0x300c854,8, 0x300c880,7, 0x300c8a0,2, 0x300c8ac,2, 0x300c8c0,26, 0x300c980,4, 0x300c9a0,5, 0x300c9c0,1, 0x300d000,3, 0x300d010,3, 0x300d020,3, 0x300d030,3, 0x300d040,3, 0x300d050,3, 0x300d060,3, 0x300d070,3, 0x300d080,5, 0x300d0a0,5, 0x300d0c0,5, 0x300d0e0,5, 0x300d100,5, 0x300d120,5, 0x300d140,5, 0x300d160,5, 0x300d200,68, 0x300d400,1, 0x300d804,1, 0x300d844,54, 0x300da00,11, 0x300da40,11, 0x300da80,11, 0x300dac0,11, 0x300db00,11, 0x300db40,11, 0x300db80,11, 0x300dbc0,11, 0x300dc00,28, 0x300dc80,5, 0x300dca0,2, 0x300e000,4, 0x300e020,6, 0x300e040,6, 0x300e060,14, 0x300e100,26, 0x300e180,15, 0x300e200,14, 0x300e240,9, 0x300e280,6, 0x300e2a0,1, 0x300e2a8,4, 0x300e300,14, 0x300e340,9, 0x300e380,6, 0x300e3a0,4, 0x300e400,9, 0x3020000,1, 0x3021000,977, 0x3022000,161, 0x3023000,977, 0x3024000,977, 0x3025000,977, 0x3026000,977, 0x3027000,977, 0x3028000,977, 0x3029000,977, 0x302a000,977, 0x302b000,161, 0x302c000,12, 0x302c040,14, 0x302c080,20, 0x302c104,1, 0x302c10c,4, 0x302c200,12, 0x302c240,14, 0x302c280,20, 0x302c304,1, 0x302c30c,4, 0x302c400,12, 0x302c440,14, 0x302c480,20, 0x302c504,1, 0x302c50c,4, 0x302c600,12, 0x302c640,14, 0x302c680,20, 0x302c704,1, 0x302c70c,4, 0x302c800,12, 0x302c840,14, 0x302c880,20, 0x302c904,1, 0x302c90c,4, 0x302ca00,12, 0x302ca40,14, 0x302ca80,20, 0x302cb04,1, 0x302cb0c,4, 0x302cc00,12, 0x302cc40,14, 0x302cc80,20, 0x302cd04,1, 0x302cd0c,4, 0x302ce00,12, 0x302ce40,14, 0x302ce80,20, 0x302cf04,1, 0x302cf0c,4, 0x302d000,12, 0x302d040,14, 0x302d080,20, 0x302d104,1, 0x302d10c,4, 0x302d200,17, 0x302d250,2, 0x302d260,4, 0x302e000,1, 0x302e014,1, 0x302e01c,11, 0x302e060,9, 0x302e094,1, 0x302e09c,11, 0x302e0e0,15, 0x302e200,12, 0x302e240,13, 0x302e280,3, 0x302e290,1, 0x3080000,500, 0x3080800,2, 0x3080820,15, 0x3081000,500, 0x3081800,8, 0x3081824,6, 0x3081840,8, 0x3081880,7, 0x30818a0,7, 0x30818c0,7, 0x30818e0,7, 0x3081900,8, 0x3081924,16, 0x3081980,12, 0x3082000,500, 0x3082800,2, 0x3082820,15, 0x3083000,500, 0x3083800,8, 0x3083824,6, 0x3083840,8, 0x3083880,7, 0x30838a0,7, 0x30838c0,7, 0x30838e0,7, 0x3083900,8, 0x3083924,16, 0x3083980,12, 0x3084004,5, 0x3084200,26, 0x3084280,4, 0x30842c0,25, 0x3084340,6, 0x3084360,1, 0x3084368,2, 0x3084374,11, 0x30843a4,10, 0x3084400,1, 0x3088000,52, 0x3088400,82, 0x3088560,6, 0x3088600,41, 0x3088700,2, 0x3088720,19, 0x3088800,25, 0x3088880,1, 0x3088900,28, 0x3088980,1, 0x3089000,52, 0x3089400,82, 0x3089560,6, 0x3089600,41, 0x3089700,2, 0x3089720,19, 0x3089800,25, 0x3089880,1, 0x3089900,28, 0x3089980,1, 0x308a000,7, 0x308a080,6, 0x308a0a0,6, 0x308a0c0,1, 0x308a100,4, 0x308a120,9, 0x308c000,3, 0x308c010,6, 0x308c200,7, 0x308c220,6, 0x308c240,7, 0x308c260,6, 0x308c280,2, 0x308c28c,2, 0x308c2a0,2, 0x308c2ac,2, 0x308c2c0,7, 0x308c2e0,7, 0x308c300,2, 0x308c30c,2, 0x308c320,6, 0x308c400,3, 0x308c440,12, 0x308c800,7, 0x308c820,14, 0x308c880,16, 0x308c900,7, 0x308c920,14, 0x308c980,16, 0x308ca00,6, 0x308ca20,7, 0x308cc00,3, 0x30a0000,3, 0x30a0800,7, 0x30a0820,6, 0x30a0840,6, 0x30a0880,1, 0x30a0894,1, 0x30a089c,2, 0x30a08c0,9, 0x30a0900,18, 0x30a0a00,36, 0x30a0b00,22, 0x30a0b80,18, 0x30a0c00,3, 0x30a0c10,3, 0x30a1000,3, 0x30a1010,2, 0x30a1080,20, 0x30a1100,1, 0x30a1200,26, 0x30a1280,4, 0x30a12c0,25, 0x30a1340,6, 0x30a1360,1, 0x30a1368,2, 0x30a1374,11, 0x30a13a4,4, 0x30a1400,1, 0x30b0000,11, 0x30b0030,19, 0x30b0080,17, 0x30b0100,11, 0x30b0130,19, 0x30b0180,17, 0x30b0200,3, 0x30b0214,1, 0x30b021c,1, 0x30b0280,3, 0x30b0294,1, 0x30b029c,1, 0x30b0300,18, 0x30b0380,18, 0x30b0400,18, 0x30b0480,18, 0x30b0500,18, 0x30b0580,18, 0x30b0600,18, 0x30b0680,18, 0x30b0700,13, 0x30b0738,6, 0x30b0780,13, 0x30b07b8,6, 0x30b0800,1, 0x30b0808,22, 0x30b0880,1, 0x30b0894,13, 0x30b0900,3, 0x30b0910,3, 0x30b0920,3, 0x30b0940,3, 0x30b0954,1, 0x30b095c,1, 0x30b0a00,52, 0x30b0c00,4, 0x30b0d00,34, 0x30b0e00,4, 0x30b0e80,30, 0x30b0f00,1, 0x30b0f40,5, 0x30b0f60,5, 0x30b0f80,6, 0x30b1000,14, 0x30b1040,4, 0x30b1060,17, 0x30b10c0,6, 0x30b10e0,1, 0x30b10e8,2, 0x30b10f4,11, 0x30b1124,17, 0x30b1200,3, 0x30b1210,3, 0x30b1220,3, 0x30b1230,3, 0x30b1240,3, 0x30b1250,3, 0x30b2000,20, 0x30b2080,3, 0x30b2090,1, 0x30b2098,2, 0x30c0000,500, 0x30c0800,2, 0x30c0820,15, 0x30c1000,500, 0x30c1800,8, 0x30c1824,6, 0x30c1840,8, 0x30c1880,7, 0x30c18a0,7, 0x30c18c0,7, 0x30c18e0,7, 0x30c1900,8, 0x30c1924,16, 0x30c1980,12, 0x30c2000,500, 0x30c2800,2, 0x30c2820,15, 0x30c3000,500, 0x30c3800,8, 0x30c3824,6, 0x30c3840,8, 0x30c3880,7, 0x30c38a0,7, 0x30c38c0,7, 0x30c38e0,7, 0x30c3900,8, 0x30c3924,16, 0x30c3980,12, 0x30c4004,5, 0x30c4200,26, 0x30c4280,4, 0x30c42c0,25, 0x30c4340,6, 0x30c4360,1, 0x30c4368,2, 0x30c4374,11, 0x30c43a4,10, 0x30c4400,1, 0x30c8000,52, 0x30c8400,82, 0x30c8560,6, 0x30c8600,41, 0x30c8700,2, 0x30c8720,19, 0x30c8800,25, 0x30c8880,1, 0x30c8900,28, 0x30c8980,1, 0x30c9000,52, 0x30c9400,82, 0x30c9560,6, 0x30c9600,41, 0x30c9700,2, 0x30c9720,19, 0x30c9800,25, 0x30c9880,1, 0x30c9900,28, 0x30c9980,1, 0x30ca000,7, 0x30ca080,6, 0x30ca0a0,6, 0x30ca0c0,1, 0x30ca100,4, 0x30ca120,9, 0x30cc000,3, 0x30cc010,6, 0x30cc200,7, 0x30cc220,6, 0x30cc240,7, 0x30cc260,6, 0x30cc280,2, 0x30cc28c,2, 0x30cc2a0,2, 0x30cc2ac,2, 0x30cc2c0,7, 0x30cc2e0,7, 0x30cc300,2, 0x30cc30c,2, 0x30cc320,6, 0x30cc400,3, 0x30cc440,12, 0x30cc800,7, 0x30cc820,14, 0x30cc880,16, 0x30cc900,7, 0x30cc920,14, 0x30cc980,16, 0x30cca00,6, 0x30cca20,7, 0x30ccc00,3, 0x30e0000,3, 0x30e0800,7, 0x30e0820,6, 0x30e0840,6, 0x30e0880,1, 0x30e0894,1, 0x30e089c,2, 0x30e08c0,9, 0x30e0900,18, 0x30e0a00,36, 0x30e0b00,22, 0x30e0b80,18, 0x30e0c00,3, 0x30e0c10,3, 0x30e1000,3, 0x30e1010,2, 0x30e1080,20, 0x30e1100,1, 0x30e1200,26, 0x30e1280,4, 0x30e12c0,25, 0x30e1340,6, 0x30e1360,1, 0x30e1368,2, 0x30e1374,11, 0x30e13a4,4, 0x30e1400,1, 0x30f0000,11, 0x30f0030,19, 0x30f0080,17, 0x30f0100,11, 0x30f0130,19, 0x30f0180,17, 0x30f0200,3, 0x30f0214,1, 0x30f021c,1, 0x30f0280,3, 0x30f0294,1, 0x30f029c,1, 0x30f0300,18, 0x30f0380,18, 0x30f0400,18, 0x30f0480,18, 0x30f0500,18, 0x30f0580,18, 0x30f0600,18, 0x30f0680,18, 0x30f0700,13, 0x30f0738,6, 0x30f0780,13, 0x30f07b8,6, 0x30f0800,1, 0x30f0808,22, 0x30f0880,1, 0x30f0894,13, 0x30f0900,3, 0x30f0910,3, 0x30f0920,3, 0x30f0940,3, 0x30f0954,1, 0x30f095c,1, 0x30f0a00,52, 0x30f0c00,4, 0x30f0d00,34, 0x30f0e00,4, 0x30f0e80,30, 0x30f0f00,1, 0x30f0f40,5, 0x30f0f60,5, 0x30f0f80,6, 0x30f1000,14, 0x30f1040,4, 0x30f1060,17, 0x30f10c0,6, 0x30f10e0,1, 0x30f10e8,2, 0x30f10f4,11, 0x30f1124,17, 0x30f1200,3, 0x30f1210,3, 0x30f1220,3, 0x30f1230,3, 0x30f1240,3, 0x30f1250,3, 0x30f2000,20, 0x30f2080,3, 0x30f2090,1, 0x30f2098,2, 0x3100000,13, 0x3100038,4, 0x3100050,3, 0x3100060,3, 0x3100070,16, 0x31000c0,5, 0x3100400,14, 0x3100440,2, 0x310044c,3, 0x3100480,14, 0x31004c0,2, 0x31004cc,3, 0x3100500,1, 0x3100508,15, 0x3100560,2, 0x310056c,2, 0x3100600,4, 0x3100680,27, 0x3100800,2, 0x3100900,32, 0x3100984,2, 0x3100990,4, 0x3100a00,26, 0x3100a80,4, 0x3100ac0,25, 0x3100b40,6, 0x3100b60,1, 0x3100b68,2, 0x3100b74,11, 0x3100ba4,8, 0x3100c00,9, 0x3100c40,11, 0x3100c80,23, 0x3100ce0,15, 0x3100d20,15, 0x3100d60,1, 0x3101000,13, 0x3101038,4, 0x3101050,3, 0x3101060,3, 0x3101070,16, 0x31010c0,5, 0x3101400,14, 0x3101440,2, 0x310144c,3, 0x3101480,14, 0x31014c0,2, 0x31014cc,3, 0x3101500,1, 0x3101508,15, 0x3101560,2, 0x310156c,2, 0x3101600,4, 0x3101680,27, 0x3101800,2, 0x3101900,32, 0x3101984,2, 0x3101990,4, 0x3101a00,26, 0x3101a80,4, 0x3101ac0,25, 0x3101b40,6, 0x3101b60,1, 0x3101b68,2, 0x3101b74,11, 0x3101ba4,8, 0x3101c00,9, 0x3101c40,11, 0x3101c80,23, 0x3101ce0,15, 0x3101d20,15, 0x3101d60,1, 0x3102000,1, 0x3102100,36, 0x3102200,7, 0x3110000,22, 0x3110080,22, 0x3110100,12, 0x3110140,12, 0x3110200,52, 0x3110300,52, 0x3110400,11, 0x3110440,11, 0x3110480,3, 0x31104a0,6, 0x31104c0,6, 0x31104e0,3, 0x31104f0,3, 0x3110800,9, 0x3110840,15, 0x3110880,15, 0x31108c0,15, 0x3110900,1, 0x3110914,13, 0x3110980,17, 0x3111000,17, 0x3111080,17, 0x3111104,5, 0x3111120,3, 0x3111130,11, 0x3111200,31, 0x3111280,31, 0x3111300,12, 0x3111340,12, 0x3111380,2, 0x3111390,2, 0x31113a0,3, 0x31113b0,3, 0x31113c0,5, 0x31113e0,5, 0x3111400,3, 0x3111410,3, 0x3111420,3, 0x3111430,3, 0x3111440,3, 0x3111450,3, 0x3111460,7, 0x3111800,26, 0x3111880,4, 0x31118c0,25, 0x3111940,6, 0x3111960,1, 0x3111968,2, 0x3111974,11, 0x31119a4,12, 0x3111a00,4, 0x3111b00,43, 0x3111c00,4, 0x3111c20,7, 0x3111c40,3, 0x3111c50,1, 0x3111c60,3, 0x3111e00,32, 0x3111e84,1, 0x3111e90,4, 0x3111ea4,1, 0x3111eb4,14, 0x3111ef0,2, 0x3111f04,1, 0x3111f10,8, 0x3111f34,6, 0x3112000,3, 0x3112010,21, 0x3112080,1, 0x3112094,1, 0x311209c,5, 0x3112100,15, 0x3112140,1, 0x3112180,6, 0x3114000,22, 0x3114080,22, 0x3114100,12, 0x3114140,12, 0x3114200,52, 0x3114300,52, 0x3114400,11, 0x3114440,11, 0x3114480,3, 0x31144a0,6, 0x31144c0,6, 0x31144e0,3, 0x31144f0,3, 0x3114800,9, 0x3114840,15, 0x3114880,15, 0x31148c0,15, 0x3114900,1, 0x3114914,13, 0x3114980,17, 0x3115000,17, 0x3115080,17, 0x3115104,5, 0x3115120,3, 0x3115130,11, 0x3115200,31, 0x3115280,31, 0x3115300,12, 0x3115340,12, 0x3115380,2, 0x3115390,2, 0x31153a0,3, 0x31153b0,3, 0x31153c0,5, 0x31153e0,5, 0x3115400,3, 0x3115410,3, 0x3115420,3, 0x3115430,3, 0x3115440,3, 0x3115450,3, 0x3115460,7, 0x3115800,26, 0x3115880,4, 0x31158c0,25, 0x3115940,6, 0x3115960,1, 0x3115968,2, 0x3115974,11, 0x31159a4,12, 0x3115a00,4, 0x3115b00,43, 0x3115c00,4, 0x3115c20,7, 0x3115c40,3, 0x3115c50,1, 0x3115c60,3, 0x3115e00,32, 0x3115e84,1, 0x3115e90,4, 0x3115ea4,1, 0x3115eb4,14, 0x3115ef0,2, 0x3115f04,1, 0x3115f10,8, 0x3115f34,6, 0x3116000,3, 0x3116010,21, 0x3116080,1, 0x3116094,1, 0x311609c,5, 0x3116100,15, 0x3116140,1, 0x3116180,6, 0x3118000,100, 0x3118200,3, 0x3118210,5, 0x3120000,12, 0x3120040,2, 0x3120050,3, 0x3122000,1006, 0x3123000,31, 0x3123084,6, 0x3124004,1, 0x312400c,3, 0x3124200,23, 0x3124280,23, 0x3124300,1, 0x3124400,1, 0x3124800,122, 0x3124a00,122, 0x3124c04,63, 0x3124d04,1, 0x3124d10,5, 0x3124d40,6, 0x3124d60,5, 0x3126000,1, 0x3126100,1, 0x3126108,3, 0x3126120,2, 0x3126134,8, 0x3126160,2, 0x3126174,8, 0x31261a0,4, 0x3126200,54, 0x3126800,5, 0x3126820,2, 0x3126834,1, 0x312683c,1, 0x3126a00,24, 0x3126a80,24, 0x3126b00,1, 0x3126c00,6, 0x3126c24,5, 0x3126c40,16, 0x3127000,1, 0x3127020,5, 0x3127040,1, 0x3127048,2, 0x3127080,1, 0x3127100,4, 0x3127180,24, 0x3127200,4, 0x3127280,27, 0x3127300,2, 0x312730c,3, 0x3128004,1, 0x312800c,3, 0x3128020,1, 0x3128100,2, 0x3128110,3, 0x3128120,2, 0x3128140,10, 0x3128180,13, 0x3128200,2, 0x3128210,3, 0x3128220,2, 0x3128240,10, 0x3128280,13, 0x3128400,14, 0x3128440,3, 0x3128450,3, 0x3128460,1, 0x3128500,36, 0x3128600,10, 0x3128640,5, 0x3128660,5, 0x3128700,27, 0x3128780,7, 0x31287a0,8, 0x3128800,27, 0x3128880,7, 0x31288a0,8, 0x3128900,27, 0x3128980,7, 0x31289a0,8, 0x3128a00,27, 0x3128a80,7, 0x3128aa0,8, 0x3128b00,48, 0x3128bc4,8, 0x3128bf0,30, 0x3128c80,4, 0x3128cc0,25, 0x3128d40,6, 0x3128d60,1, 0x3128d68,2, 0x3128d74,3, 0x3128e00,8, 0x3128e24,28, 0x3129000,4, 0x3129080,23, 0x3129100,14, 0x3129140,9, 0x3129200,10, 0x3129230,3, 0x3129240,5, 0x3129260,5, 0x3129280,9, 0x3129400,67, 0x3129600,10, 0x3130000,12, 0x3130040,2, 0x3130050,3, 0x3132000,1006, 0x3133000,31, 0x3133084,6, 0x3134004,1, 0x313400c,3, 0x3134200,23, 0x3134280,23, 0x3134300,1, 0x3134400,1, 0x3134800,122, 0x3134a00,122, 0x3134c04,63, 0x3134d04,1, 0x3134d10,5, 0x3134d40,6, 0x3134d60,5, 0x3136000,1, 0x3136100,1, 0x3136108,3, 0x3136120,2, 0x3136134,8, 0x3136160,2, 0x3136174,8, 0x31361a0,4, 0x3136200,54, 0x3136800,5, 0x3136820,2, 0x3136834,1, 0x313683c,1, 0x3136a00,24, 0x3136a80,24, 0x3136b00,1, 0x3136c00,6, 0x3136c24,5, 0x3136c40,16, 0x3137000,1, 0x3137020,5, 0x3137040,1, 0x3137048,2, 0x3137080,1, 0x3137100,4, 0x3137180,24, 0x3137200,4, 0x3137280,27, 0x3137300,2, 0x313730c,3, 0x3138004,1, 0x313800c,3, 0x3138020,1, 0x3138100,2, 0x3138110,3, 0x3138120,2, 0x3138140,10, 0x3138180,13, 0x3138200,2, 0x3138210,3, 0x3138220,2, 0x3138240,10, 0x3138280,13, 0x3138400,14, 0x3138440,3, 0x3138450,3, 0x3138460,1, 0x3138500,36, 0x3138600,10, 0x3138640,5, 0x3138660,5, 0x3138700,27, 0x3138780,7, 0x31387a0,8, 0x3138800,27, 0x3138880,7, 0x31388a0,8, 0x3138900,27, 0x3138980,7, 0x31389a0,8, 0x3138a00,27, 0x3138a80,7, 0x3138aa0,8, 0x3138b00,48, 0x3138bc4,8, 0x3138bf0,30, 0x3138c80,4, 0x3138cc0,25, 0x3138d40,6, 0x3138d60,1, 0x3138d68,2, 0x3138d74,3, 0x3138e00,8, 0x3138e24,28, 0x3139000,4, 0x3139080,23, 0x3139100,14, 0x3139140,9, 0x3139200,10, 0x3139230,3, 0x3139240,5, 0x3139260,5, 0x3139280,9, 0x3139400,67, 0x3139600,10, 0x3200000,1, 0x3200020,3, 0x3200030,2, 0x3200040,3, 0x3200050,2, 0x3200800,53, 0x3200900,3, 0x3200910,13, 0x3200a00,53, 0x3200b00,3, 0x3200b10,13, 0x3200c00,5, 0x3200c20,5, 0x3200c40,18, 0x3201000,6, 0x3201020,4, 0x3201040,16, 0x3202000,20, 0x3202080,15, 0x3202100,20, 0x3202180,15, 0x3202200,23, 0x3202260,7, 0x3202400,11, 0x3202430,3, 0x3202440,3, 0x3202450,3, 0x3202460,24, 0x3202500,11, 0x3202530,3, 0x3202540,3, 0x3202550,3, 0x3202560,24, 0x3202600,11, 0x3202630,3, 0x3202640,3, 0x3202650,3, 0x3202660,24, 0x3202700,11, 0x3202730,3, 0x3202740,3, 0x3202750,3, 0x3202760,24, 0x3202800,4, 0x3202820,16, 0x3202880,10, 0x32028c0,10, 0x3202900,6, 0x3202920,6, 0x3202940,4, 0x3202980,13, 0x32029c0,13, 0x3202a00,9, 0x3203000,14, 0x3203040,9, 0x3203080,6, 0x32030a0,1, 0x32030a8,4, 0x3203100,4, 0x3203200,124, 0x3203400,124, 0x3203600,8, 0x3203624,1, 0x3203644,6, 0x3203664,6, 0x3203680,1, 0x3203688,6, 0x32036a8,22, 0x3204000,1, 0x3204020,3, 0x3204030,2, 0x3204040,3, 0x3204050,2, 0x3204800,53, 0x3204900,3, 0x3204910,13, 0x3204a00,53, 0x3204b00,3, 0x3204b10,13, 0x3204c00,5, 0x3204c20,5, 0x3204c40,18, 0x3205000,6, 0x3205020,4, 0x3205040,16, 0x3206000,20, 0x3206080,15, 0x3206100,20, 0x3206180,15, 0x3206200,23, 0x3206260,7, 0x3206400,11, 0x3206430,3, 0x3206440,3, 0x3206450,3, 0x3206460,24, 0x3206500,11, 0x3206530,3, 0x3206540,3, 0x3206550,3, 0x3206560,24, 0x3206600,11, 0x3206630,3, 0x3206640,3, 0x3206650,3, 0x3206660,24, 0x3206700,11, 0x3206730,3, 0x3206740,3, 0x3206750,3, 0x3206760,24, 0x3206800,4, 0x3206820,16, 0x3206880,10, 0x32068c0,10, 0x3206900,6, 0x3206920,6, 0x3206940,4, 0x3206980,13, 0x32069c0,13, 0x3206a00,9, 0x3207000,14, 0x3207040,9, 0x3207080,6, 0x32070a0,1, 0x32070a8,4, 0x3207100,4, 0x3207200,124, 0x3207400,124, 0x3207600,8, 0x3207624,1, 0x3207644,6, 0x3207664,6, 0x3207680,1, 0x3207688,6, 0x32076a8,22, 0x3208000,84, 0x3208180,20, 0x3208200,5, 0x3208400,11, 0x3208440,11, 0x3208480,19, 0x3208500,19, 0x3208580,24, 0x3208600,13, 0x3208800,84, 0x3208980,20, 0x3208a00,5, 0x3208c00,11, 0x3208c40,11, 0x3208c80,19, 0x3208d00,19, 0x3208d80,24, 0x3208e00,13, 0x3209000,10, 0x3209040,5, 0x3209080,10, 0x32090c0,5, 0x3209100,5, 0x3209200,11, 0x3209230,3, 0x3209240,5, 0x3209260,5, 0x3209280,32, 0x3209400,13, 0x3209440,13, 0x3209480,9, 0x32094c0,1, 0x32094d0,5, 0x32094f0,21, 0x3209800,10, 0x3209840,5, 0x3209880,10, 0x32098c0,5, 0x3209900,5, 0x3209a00,11, 0x3209a30,3, 0x3209a40,5, 0x3209a60,5, 0x3209a80,32, 0x3209c00,13, 0x3209c40,13, 0x3209c80,9, 0x3209cc0,1, 0x3209cd0,5, 0x3209cf0,21, 0x320a000,14, 0x320a040,9, 0x320a080,6, 0x320a0a0,1, 0x320a0a8,4, 0x320a100,7, 0x320a120,3, 0x320a130,25, 0x320c000,26, 0x320c06c,2, 0x320c080,3, 0x320c090,17, 0x320c100,26, 0x320c16c,2, 0x320c180,3, 0x320c190,17, 0x320c200,26, 0x320c26c,2, 0x320c280,3, 0x320c290,17, 0x320c300,26, 0x320c36c,2, 0x320c380,3, 0x320c390,17, 0x320c400,26, 0x320c46c,2, 0x320c480,3, 0x320c490,17, 0x320c500,26, 0x320c56c,2, 0x320c580,3, 0x320c590,17, 0x320c600,26, 0x320c66c,2, 0x320c680,3, 0x320c690,17, 0x320c700,26, 0x320c76c,2, 0x320c780,3, 0x320c790,17, 0x320c800,12, 0x320c844,1, 0x320c854,8, 0x320c880,7, 0x320c8a0,2, 0x320c8ac,2, 0x320c8c0,26, 0x320c980,4, 0x320c9a0,5, 0x320c9c0,1, 0x320d000,3, 0x320d010,3, 0x320d020,3, 0x320d030,3, 0x320d040,3, 0x320d050,3, 0x320d060,3, 0x320d070,3, 0x320d080,5, 0x320d0a0,5, 0x320d0c0,5, 0x320d0e0,5, 0x320d100,5, 0x320d120,5, 0x320d140,5, 0x320d160,5, 0x320d200,68, 0x320d400,1, 0x320d804,1, 0x320d844,54, 0x320da00,11, 0x320da40,11, 0x320da80,11, 0x320dac0,11, 0x320db00,11, 0x320db40,11, 0x320db80,11, 0x320dbc0,11, 0x320dc00,28, 0x320dc80,5, 0x320dca0,2, 0x320e000,4, 0x320e020,6, 0x320e040,6, 0x320e060,14, 0x320e100,26, 0x320e180,15, 0x320e200,14, 0x320e240,9, 0x320e280,6, 0x320e2a0,1, 0x320e2a8,4, 0x320e300,14, 0x320e340,9, 0x320e380,6, 0x320e3a0,4, 0x320e400,9, 0x3220000,1, 0x3221000,977, 0x3222000,161, 0x3223000,977, 0x3224000,977, 0x3225000,977, 0x3226000,977, 0x3227000,977, 0x3228000,977, 0x3229000,977, 0x322a000,977, 0x322b000,161, 0x322c000,12, 0x322c040,14, 0x322c080,20, 0x322c104,1, 0x322c10c,4, 0x322c200,12, 0x322c240,14, 0x322c280,20, 0x322c304,1, 0x322c30c,4, 0x322c400,12, 0x322c440,14, 0x322c480,20, 0x322c504,1, 0x322c50c,4, 0x322c600,12, 0x322c640,14, 0x322c680,20, 0x322c704,1, 0x322c70c,4, 0x322c800,12, 0x322c840,14, 0x322c880,20, 0x322c904,1, 0x322c90c,4, 0x322ca00,12, 0x322ca40,14, 0x322ca80,20, 0x322cb04,1, 0x322cb0c,4, 0x322cc00,12, 0x322cc40,14, 0x322cc80,20, 0x322cd04,1, 0x322cd0c,4, 0x322ce00,12, 0x322ce40,14, 0x322ce80,20, 0x322cf04,1, 0x322cf0c,4, 0x322d000,12, 0x322d040,14, 0x322d080,20, 0x322d104,1, 0x322d10c,4, 0x322d200,17, 0x322d250,2, 0x322d260,4, 0x322e000,1, 0x322e014,1, 0x322e01c,11, 0x322e060,9, 0x322e094,1, 0x322e09c,11, 0x322e0e0,15, 0x322e200,12, 0x322e240,13, 0x322e280,3, 0x322e290,1, 0x3280000,500, 0x3280800,2, 0x3280820,15, 0x3281000,500, 0x3281800,8, 0x3281824,6, 0x3281840,8, 0x3281880,7, 0x32818a0,7, 0x32818c0,7, 0x32818e0,7, 0x3281900,8, 0x3281924,16, 0x3281980,12, 0x3282000,500, 0x3282800,2, 0x3282820,15, 0x3283000,500, 0x3283800,8, 0x3283824,6, 0x3283840,8, 0x3283880,7, 0x32838a0,7, 0x32838c0,7, 0x32838e0,7, 0x3283900,8, 0x3283924,16, 0x3283980,12, 0x3284004,5, 0x3284200,26, 0x3284280,4, 0x32842c0,25, 0x3284340,6, 0x3284360,1, 0x3284368,2, 0x3284374,11, 0x32843a4,10, 0x3284400,1, 0x3288000,52, 0x3288400,82, 0x3288560,6, 0x3288600,41, 0x3288700,2, 0x3288720,19, 0x3288800,25, 0x3288880,1, 0x3288900,28, 0x3288980,1, 0x3289000,52, 0x3289400,82, 0x3289560,6, 0x3289600,41, 0x3289700,2, 0x3289720,19, 0x3289800,25, 0x3289880,1, 0x3289900,28, 0x3289980,1, 0x328a000,7, 0x328a080,6, 0x328a0a0,6, 0x328a0c0,1, 0x328a100,4, 0x328a120,9, 0x328c000,3, 0x328c010,6, 0x328c200,7, 0x328c220,6, 0x328c240,7, 0x328c260,6, 0x328c280,2, 0x328c28c,2, 0x328c2a0,2, 0x328c2ac,2, 0x328c2c0,7, 0x328c2e0,7, 0x328c300,2, 0x328c30c,2, 0x328c320,6, 0x328c400,3, 0x328c440,12, 0x328c800,7, 0x328c820,14, 0x328c880,16, 0x328c900,7, 0x328c920,14, 0x328c980,16, 0x328ca00,6, 0x328ca20,7, 0x328cc00,3, 0x32a0000,3, 0x32a0800,7, 0x32a0820,6, 0x32a0840,6, 0x32a0880,1, 0x32a0894,1, 0x32a089c,2, 0x32a08c0,9, 0x32a0900,18, 0x32a0a00,36, 0x32a0b00,22, 0x32a0b80,18, 0x32a0c00,3, 0x32a0c10,3, 0x32a1000,3, 0x32a1010,2, 0x32a1080,20, 0x32a1100,1, 0x32a1200,26, 0x32a1280,4, 0x32a12c0,25, 0x32a1340,6, 0x32a1360,1, 0x32a1368,2, 0x32a1374,11, 0x32a13a4,4, 0x32a1400,1, 0x32b0000,11, 0x32b0030,19, 0x32b0080,17, 0x32b0100,11, 0x32b0130,19, 0x32b0180,17, 0x32b0200,3, 0x32b0214,1, 0x32b021c,1, 0x32b0280,3, 0x32b0294,1, 0x32b029c,1, 0x32b0300,18, 0x32b0380,18, 0x32b0400,18, 0x32b0480,18, 0x32b0500,18, 0x32b0580,18, 0x32b0600,18, 0x32b0680,18, 0x32b0700,13, 0x32b0738,6, 0x32b0780,13, 0x32b07b8,6, 0x32b0800,1, 0x32b0808,22, 0x32b0880,1, 0x32b0894,13, 0x32b0900,3, 0x32b0910,3, 0x32b0920,3, 0x32b0940,3, 0x32b0954,1, 0x32b095c,1, 0x32b0a00,52, 0x32b0c00,4, 0x32b0d00,34, 0x32b0e00,4, 0x32b0e80,30, 0x32b0f00,1, 0x32b0f40,5, 0x32b0f60,5, 0x32b0f80,6, 0x32b1000,14, 0x32b1040,4, 0x32b1060,17, 0x32b10c0,6, 0x32b10e0,1, 0x32b10e8,2, 0x32b10f4,11, 0x32b1124,17, 0x32b1200,3, 0x32b1210,3, 0x32b1220,3, 0x32b1230,3, 0x32b1240,3, 0x32b1250,3, 0x32b2000,20, 0x32b2080,3, 0x32b2090,1, 0x32b2098,2, 0x32c0000,500, 0x32c0800,2, 0x32c0820,15, 0x32c1000,500, 0x32c1800,8, 0x32c1824,6, 0x32c1840,8, 0x32c1880,7, 0x32c18a0,7, 0x32c18c0,7, 0x32c18e0,7, 0x32c1900,8, 0x32c1924,16, 0x32c1980,12, 0x32c2000,500, 0x32c2800,2, 0x32c2820,15, 0x32c3000,500, 0x32c3800,8, 0x32c3824,6, 0x32c3840,8, 0x32c3880,7, 0x32c38a0,7, 0x32c38c0,7, 0x32c38e0,7, 0x32c3900,8, 0x32c3924,16, 0x32c3980,12, 0x32c4004,5, 0x32c4200,26, 0x32c4280,4, 0x32c42c0,25, 0x32c4340,6, 0x32c4360,1, 0x32c4368,2, 0x32c4374,11, 0x32c43a4,10, 0x32c4400,1, 0x32c8000,52, 0x32c8400,82, 0x32c8560,6, 0x32c8600,41, 0x32c8700,2, 0x32c8720,19, 0x32c8800,25, 0x32c8880,1, 0x32c8900,28, 0x32c8980,1, 0x32c9000,52, 0x32c9400,82, 0x32c9560,6, 0x32c9600,41, 0x32c9700,2, 0x32c9720,19, 0x32c9800,25, 0x32c9880,1, 0x32c9900,28, 0x32c9980,1, 0x32ca000,7, 0x32ca080,6, 0x32ca0a0,6, 0x32ca0c0,1, 0x32ca100,4, 0x32ca120,9, 0x32cc000,3, 0x32cc010,6, 0x32cc200,7, 0x32cc220,6, 0x32cc240,7, 0x32cc260,6, 0x32cc280,2, 0x32cc28c,2, 0x32cc2a0,2, 0x32cc2ac,2, 0x32cc2c0,7, 0x32cc2e0,7, 0x32cc300,2, 0x32cc30c,2, 0x32cc320,6, 0x32cc400,3, 0x32cc440,12, 0x32cc800,7, 0x32cc820,14, 0x32cc880,16, 0x32cc900,7, 0x32cc920,14, 0x32cc980,16, 0x32cca00,6, 0x32cca20,7, 0x32ccc00,3, 0x32e0000,3, 0x32e0800,7, 0x32e0820,6, 0x32e0840,6, 0x32e0880,1, 0x32e0894,1, 0x32e089c,2, 0x32e08c0,9, 0x32e0900,18, 0x32e0a00,36, 0x32e0b00,22, 0x32e0b80,18, 0x32e0c00,3, 0x32e0c10,3, 0x32e1000,3, 0x32e1010,2, 0x32e1080,20, 0x32e1100,1, 0x32e1200,26, 0x32e1280,4, 0x32e12c0,25, 0x32e1340,6, 0x32e1360,1, 0x32e1368,2, 0x32e1374,11, 0x32e13a4,4, 0x32e1400,1, 0x32f0000,11, 0x32f0030,19, 0x32f0080,17, 0x32f0100,11, 0x32f0130,19, 0x32f0180,17, 0x32f0200,3, 0x32f0214,1, 0x32f021c,1, 0x32f0280,3, 0x32f0294,1, 0x32f029c,1, 0x32f0300,18, 0x32f0380,18, 0x32f0400,18, 0x32f0480,18, 0x32f0500,18, 0x32f0580,18, 0x32f0600,18, 0x32f0680,18, 0x32f0700,13, 0x32f0738,6, 0x32f0780,13, 0x32f07b8,6, 0x32f0800,1, 0x32f0808,22, 0x32f0880,1, 0x32f0894,13, 0x32f0900,3, 0x32f0910,3, 0x32f0920,3, 0x32f0940,3, 0x32f0954,1, 0x32f095c,1, 0x32f0a00,52, 0x32f0c00,4, 0x32f0d00,34, 0x32f0e00,4, 0x32f0e80,30, 0x32f0f00,1, 0x32f0f40,5, 0x32f0f60,5, 0x32f0f80,6, 0x32f1000,14, 0x32f1040,4, 0x32f1060,17, 0x32f10c0,6, 0x32f10e0,1, 0x32f10e8,2, 0x32f10f4,11, 0x32f1124,17, 0x32f1200,3, 0x32f1210,3, 0x32f1220,3, 0x32f1230,3, 0x32f1240,3, 0x32f1250,3, 0x32f2000,20, 0x32f2080,3, 0x32f2090,1, 0x32f2098,2, 0x3300000,13, 0x3300038,4, 0x3300050,3, 0x3300060,3, 0x3300070,16, 0x33000c0,5, 0x3300400,14, 0x3300440,2, 0x330044c,3, 0x3300480,14, 0x33004c0,2, 0x33004cc,3, 0x3300500,1, 0x3300508,15, 0x3300560,2, 0x330056c,2, 0x3300600,4, 0x3300680,27, 0x3300800,2, 0x3300900,32, 0x3300984,2, 0x3300990,4, 0x3300a00,26, 0x3300a80,4, 0x3300ac0,25, 0x3300b40,6, 0x3300b60,1, 0x3300b68,2, 0x3300b74,11, 0x3300ba4,8, 0x3300c00,9, 0x3300c40,11, 0x3300c80,23, 0x3300ce0,15, 0x3300d20,15, 0x3300d60,1, 0x3301000,13, 0x3301038,4, 0x3301050,3, 0x3301060,3, 0x3301070,16, 0x33010c0,5, 0x3301400,14, 0x3301440,2, 0x330144c,3, 0x3301480,14, 0x33014c0,2, 0x33014cc,3, 0x3301500,1, 0x3301508,15, 0x3301560,2, 0x330156c,2, 0x3301600,4, 0x3301680,27, 0x3301800,2, 0x3301900,32, 0x3301984,2, 0x3301990,4, 0x3301a00,26, 0x3301a80,4, 0x3301ac0,25, 0x3301b40,6, 0x3301b60,1, 0x3301b68,2, 0x3301b74,11, 0x3301ba4,8, 0x3301c00,9, 0x3301c40,11, 0x3301c80,23, 0x3301ce0,15, 0x3301d20,15, 0x3301d60,1, 0x3302000,1, 0x3302100,36, 0x3302200,7, 0x3310000,22, 0x3310080,22, 0x3310100,12, 0x3310140,12, 0x3310200,52, 0x3310300,52, 0x3310400,11, 0x3310440,11, 0x3310480,3, 0x33104a0,6, 0x33104c0,6, 0x33104e0,3, 0x33104f0,3, 0x3310800,9, 0x3310840,15, 0x3310880,15, 0x33108c0,15, 0x3310900,1, 0x3310914,13, 0x3310980,17, 0x3311000,17, 0x3311080,17, 0x3311104,5, 0x3311120,3, 0x3311130,11, 0x3311200,31, 0x3311280,31, 0x3311300,12, 0x3311340,12, 0x3311380,2, 0x3311390,2, 0x33113a0,3, 0x33113b0,3, 0x33113c0,5, 0x33113e0,5, 0x3311400,3, 0x3311410,3, 0x3311420,3, 0x3311430,3, 0x3311440,3, 0x3311450,3, 0x3311460,7, 0x3311800,26, 0x3311880,4, 0x33118c0,25, 0x3311940,6, 0x3311960,1, 0x3311968,2, 0x3311974,11, 0x33119a4,12, 0x3311a00,4, 0x3311b00,43, 0x3311c00,4, 0x3311c20,7, 0x3311c40,3, 0x3311c50,1, 0x3311c60,3, 0x3311e00,32, 0x3311e84,1, 0x3311e90,4, 0x3311ea4,1, 0x3311eb4,14, 0x3311ef0,2, 0x3311f04,1, 0x3311f10,8, 0x3311f34,6, 0x3312000,3, 0x3312010,21, 0x3312080,1, 0x3312094,1, 0x331209c,5, 0x3312100,15, 0x3312140,1, 0x3312180,6, 0x3314000,22, 0x3314080,22, 0x3314100,12, 0x3314140,12, 0x3314200,52, 0x3314300,52, 0x3314400,11, 0x3314440,11, 0x3314480,3, 0x33144a0,6, 0x33144c0,6, 0x33144e0,3, 0x33144f0,3, 0x3314800,9, 0x3314840,15, 0x3314880,15, 0x33148c0,15, 0x3314900,1, 0x3314914,13, 0x3314980,17, 0x3315000,17, 0x3315080,17, 0x3315104,5, 0x3315120,3, 0x3315130,11, 0x3315200,31, 0x3315280,31, 0x3315300,12, 0x3315340,12, 0x3315380,2, 0x3315390,2, 0x33153a0,3, 0x33153b0,3, 0x33153c0,5, 0x33153e0,5, 0x3315400,3, 0x3315410,3, 0x3315420,3, 0x3315430,3, 0x3315440,3, 0x3315450,3, 0x3315460,7, 0x3315800,26, 0x3315880,4, 0x33158c0,25, 0x3315940,6, 0x3315960,1, 0x3315968,2, 0x3315974,11, 0x33159a4,12, 0x3315a00,4, 0x3315b00,43, 0x3315c00,4, 0x3315c20,7, 0x3315c40,3, 0x3315c50,1, 0x3315c60,3, 0x3315e00,32, 0x3315e84,1, 0x3315e90,4, 0x3315ea4,1, 0x3315eb4,14, 0x3315ef0,2, 0x3315f04,1, 0x3315f10,8, 0x3315f34,6, 0x3316000,3, 0x3316010,21, 0x3316080,1, 0x3316094,1, 0x331609c,5, 0x3316100,15, 0x3316140,1, 0x3316180,6, 0x3318000,100, 0x3318200,3, 0x3318210,5, 0x3320000,12, 0x3320040,2, 0x3320050,3, 0x3322000,1006, 0x3323000,31, 0x3323084,6, 0x3324004,1, 0x332400c,3, 0x3324200,23, 0x3324280,23, 0x3324300,1, 0x3324400,1, 0x3324800,122, 0x3324a00,122, 0x3324c04,63, 0x3324d04,1, 0x3324d10,5, 0x3324d40,6, 0x3324d60,5, 0x3326000,1, 0x3326100,1, 0x3326108,3, 0x3326120,2, 0x3326134,8, 0x3326160,2, 0x3326174,8, 0x33261a0,4, 0x3326200,54, 0x3326800,5, 0x3326820,2, 0x3326834,1, 0x332683c,1, 0x3326a00,24, 0x3326a80,24, 0x3326b00,1, 0x3326c00,6, 0x3326c24,5, 0x3326c40,16, 0x3327000,1, 0x3327020,5, 0x3327040,1, 0x3327048,2, 0x3327080,1, 0x3327100,4, 0x3327180,24, 0x3327200,4, 0x3327280,27, 0x3327300,2, 0x332730c,3, 0x3328004,1, 0x332800c,3, 0x3328020,1, 0x3328100,2, 0x3328110,3, 0x3328120,2, 0x3328140,10, 0x3328180,13, 0x3328200,2, 0x3328210,3, 0x3328220,2, 0x3328240,10, 0x3328280,13, 0x3328400,14, 0x3328440,3, 0x3328450,3, 0x3328460,1, 0x3328500,36, 0x3328600,10, 0x3328640,5, 0x3328660,5, 0x3328700,27, 0x3328780,7, 0x33287a0,8, 0x3328800,27, 0x3328880,7, 0x33288a0,8, 0x3328900,27, 0x3328980,7, 0x33289a0,8, 0x3328a00,27, 0x3328a80,7, 0x3328aa0,8, 0x3328b00,48, 0x3328bc4,8, 0x3328bf0,30, 0x3328c80,4, 0x3328cc0,25, 0x3328d40,6, 0x3328d60,1, 0x3328d68,2, 0x3328d74,3, 0x3328e00,8, 0x3328e24,28, 0x3329000,4, 0x3329080,23, 0x3329100,14, 0x3329140,9, 0x3329200,10, 0x3329230,3, 0x3329240,5, 0x3329260,5, 0x3329280,9, 0x3329400,67, 0x3329600,10, 0x3330000,12, 0x3330040,2, 0x3330050,3, 0x3332000,1006, 0x3333000,31, 0x3333084,6, 0x3334004,1, 0x333400c,3, 0x3334200,23, 0x3334280,23, 0x3334300,1, 0x3334400,1, 0x3334800,122, 0x3334a00,122, 0x3334c04,63, 0x3334d04,1, 0x3334d10,5, 0x3334d40,6, 0x3334d60,5, 0x3336000,1, 0x3336100,1, 0x3336108,3, 0x3336120,2, 0x3336134,8, 0x3336160,2, 0x3336174,8, 0x33361a0,4, 0x3336200,54, 0x3336800,5, 0x3336820,2, 0x3336834,1, 0x333683c,1, 0x3336a00,24, 0x3336a80,24, 0x3336b00,1, 0x3336c00,6, 0x3336c24,5, 0x3336c40,16, 0x3337000,1, 0x3337020,5, 0x3337040,1, 0x3337048,2, 0x3337080,1, 0x3337100,4, 0x3337180,24, 0x3337200,4, 0x3337280,27, 0x3337300,2, 0x333730c,3, 0x3338004,1, 0x333800c,3, 0x3338020,1, 0x3338100,2, 0x3338110,3, 0x3338120,2, 0x3338140,10, 0x3338180,13, 0x3338200,2, 0x3338210,3, 0x3338220,2, 0x3338240,10, 0x3338280,13, 0x3338400,14, 0x3338440,3, 0x3338450,3, 0x3338460,1, 0x3338500,36, 0x3338600,10, 0x3338640,5, 0x3338660,5, 0x3338700,27, 0x3338780,7, 0x33387a0,8, 0x3338800,27, 0x3338880,7, 0x33388a0,8, 0x3338900,27, 0x3338980,7, 0x33389a0,8, 0x3338a00,27, 0x3338a80,7, 0x3338aa0,8, 0x3338b00,48, 0x3338bc4,8, 0x3338bf0,30, 0x3338c80,4, 0x3338cc0,25, 0x3338d40,6, 0x3338d60,1, 0x3338d68,2, 0x3338d74,3, 0x3338e00,8, 0x3338e24,28, 0x3339000,4, 0x3339080,23, 0x3339100,14, 0x3339140,9, 0x3339200,10, 0x3339230,3, 0x3339240,5, 0x3339260,5, 0x3339280,9, 0x3339400,67, 0x3339600,10, 0x3400000,1, 0x3400020,3, 0x3400030,2, 0x3400040,3, 0x3400050,2, 0x3400800,53, 0x3400900,3, 0x3400910,13, 0x3400a00,53, 0x3400b00,3, 0x3400b10,13, 0x3400c00,5, 0x3400c20,5, 0x3400c40,18, 0x3401000,6, 0x3401020,4, 0x3401040,16, 0x3402000,20, 0x3402080,15, 0x3402100,20, 0x3402180,15, 0x3402200,23, 0x3402260,7, 0x3402400,11, 0x3402430,3, 0x3402440,3, 0x3402450,3, 0x3402460,24, 0x3402500,11, 0x3402530,3, 0x3402540,3, 0x3402550,3, 0x3402560,24, 0x3402600,11, 0x3402630,3, 0x3402640,3, 0x3402650,3, 0x3402660,24, 0x3402700,11, 0x3402730,3, 0x3402740,3, 0x3402750,3, 0x3402760,24, 0x3402800,4, 0x3402820,16, 0x3402880,10, 0x34028c0,10, 0x3402900,6, 0x3402920,6, 0x3402940,4, 0x3402980,13, 0x34029c0,13, 0x3402a00,9, 0x3403000,14, 0x3403040,9, 0x3403080,6, 0x34030a0,1, 0x34030a8,4, 0x3403100,4, 0x3403200,124, 0x3403400,124, 0x3403600,8, 0x3403624,1, 0x3403644,6, 0x3403664,6, 0x3403680,1, 0x3403688,6, 0x34036a8,22, 0x3404000,1, 0x3404020,3, 0x3404030,2, 0x3404040,3, 0x3404050,2, 0x3404800,53, 0x3404900,3, 0x3404910,13, 0x3404a00,53, 0x3404b00,3, 0x3404b10,13, 0x3404c00,5, 0x3404c20,5, 0x3404c40,18, 0x3405000,6, 0x3405020,4, 0x3405040,16, 0x3406000,20, 0x3406080,15, 0x3406100,20, 0x3406180,15, 0x3406200,23, 0x3406260,7, 0x3406400,11, 0x3406430,3, 0x3406440,3, 0x3406450,3, 0x3406460,24, 0x3406500,11, 0x3406530,3, 0x3406540,3, 0x3406550,3, 0x3406560,24, 0x3406600,11, 0x3406630,3, 0x3406640,3, 0x3406650,3, 0x3406660,24, 0x3406700,11, 0x3406730,3, 0x3406740,3, 0x3406750,3, 0x3406760,24, 0x3406800,4, 0x3406820,16, 0x3406880,10, 0x34068c0,10, 0x3406900,6, 0x3406920,6, 0x3406940,4, 0x3406980,13, 0x34069c0,13, 0x3406a00,9, 0x3407000,14, 0x3407040,9, 0x3407080,6, 0x34070a0,1, 0x34070a8,4, 0x3407100,4, 0x3407200,124, 0x3407400,124, 0x3407600,8, 0x3407624,1, 0x3407644,6, 0x3407664,6, 0x3407680,1, 0x3407688,6, 0x34076a8,22, 0x3408000,84, 0x3408180,20, 0x3408200,5, 0x3408400,11, 0x3408440,11, 0x3408480,19, 0x3408500,19, 0x3408580,24, 0x3408600,13, 0x3408800,84, 0x3408980,20, 0x3408a00,5, 0x3408c00,11, 0x3408c40,11, 0x3408c80,19, 0x3408d00,19, 0x3408d80,24, 0x3408e00,13, 0x3409000,10, 0x3409040,5, 0x3409080,10, 0x34090c0,5, 0x3409100,5, 0x3409200,11, 0x3409230,3, 0x3409240,5, 0x3409260,5, 0x3409280,32, 0x3409400,13, 0x3409440,13, 0x3409480,9, 0x34094c0,1, 0x34094d0,5, 0x34094f0,21, 0x3409800,10, 0x3409840,5, 0x3409880,10, 0x34098c0,5, 0x3409900,5, 0x3409a00,11, 0x3409a30,3, 0x3409a40,5, 0x3409a60,5, 0x3409a80,32, 0x3409c00,13, 0x3409c40,13, 0x3409c80,9, 0x3409cc0,1, 0x3409cd0,5, 0x3409cf0,21, 0x340a000,14, 0x340a040,9, 0x340a080,6, 0x340a0a0,1, 0x340a0a8,4, 0x340a100,7, 0x340a120,3, 0x340a130,25, 0x340c000,26, 0x340c06c,2, 0x340c080,3, 0x340c090,17, 0x340c100,26, 0x340c16c,2, 0x340c180,3, 0x340c190,17, 0x340c200,26, 0x340c26c,2, 0x340c280,3, 0x340c290,17, 0x340c300,26, 0x340c36c,2, 0x340c380,3, 0x340c390,17, 0x340c400,26, 0x340c46c,2, 0x340c480,3, 0x340c490,17, 0x340c500,26, 0x340c56c,2, 0x340c580,3, 0x340c590,17, 0x340c600,26, 0x340c66c,2, 0x340c680,3, 0x340c690,17, 0x340c700,26, 0x340c76c,2, 0x340c780,3, 0x340c790,17, 0x340c800,12, 0x340c844,1, 0x340c854,8, 0x340c880,7, 0x340c8a0,2, 0x340c8ac,2, 0x340c8c0,26, 0x340c980,4, 0x340c9a0,5, 0x340c9c0,1, 0x340d000,3, 0x340d010,3, 0x340d020,3, 0x340d030,3, 0x340d040,3, 0x340d050,3, 0x340d060,3, 0x340d070,3, 0x340d080,5, 0x340d0a0,5, 0x340d0c0,5, 0x340d0e0,5, 0x340d100,5, 0x340d120,5, 0x340d140,5, 0x340d160,5, 0x340d200,68, 0x340d400,1, 0x340d804,1, 0x340d844,54, 0x340da00,11, 0x340da40,11, 0x340da80,11, 0x340dac0,11, 0x340db00,11, 0x340db40,11, 0x340db80,11, 0x340dbc0,11, 0x340dc00,28, 0x340dc80,5, 0x340dca0,2, 0x340e000,4, 0x340e020,6, 0x340e040,6, 0x340e060,14, 0x340e100,26, 0x340e180,15, 0x340e200,14, 0x340e240,9, 0x340e280,6, 0x340e2a0,1, 0x340e2a8,4, 0x340e300,14, 0x340e340,9, 0x340e380,6, 0x340e3a0,4, 0x340e400,9, 0x3420000,1, 0x3421000,977, 0x3422000,161, 0x3423000,977, 0x3424000,977, 0x3425000,977, 0x3426000,977, 0x3427000,977, 0x3428000,977, 0x3429000,977, 0x342a000,977, 0x342b000,161, 0x342c000,12, 0x342c040,14, 0x342c080,20, 0x342c104,1, 0x342c10c,4, 0x342c200,12, 0x342c240,14, 0x342c280,20, 0x342c304,1, 0x342c30c,4, 0x342c400,12, 0x342c440,14, 0x342c480,20, 0x342c504,1, 0x342c50c,4, 0x342c600,12, 0x342c640,14, 0x342c680,20, 0x342c704,1, 0x342c70c,4, 0x342c800,12, 0x342c840,14, 0x342c880,20, 0x342c904,1, 0x342c90c,4, 0x342ca00,12, 0x342ca40,14, 0x342ca80,20, 0x342cb04,1, 0x342cb0c,4, 0x342cc00,12, 0x342cc40,14, 0x342cc80,20, 0x342cd04,1, 0x342cd0c,4, 0x342ce00,12, 0x342ce40,14, 0x342ce80,20, 0x342cf04,1, 0x342cf0c,4, 0x342d000,12, 0x342d040,14, 0x342d080,20, 0x342d104,1, 0x342d10c,4, 0x342d200,17, 0x342d250,2, 0x342d260,4, 0x342e000,1, 0x342e014,1, 0x342e01c,11, 0x342e060,9, 0x342e094,1, 0x342e09c,11, 0x342e0e0,15, 0x342e200,12, 0x342e240,13, 0x342e280,3, 0x342e290,1, 0x3480000,500, 0x3480800,2, 0x3480820,15, 0x3481000,500, 0x3481800,8, 0x3481824,6, 0x3481840,8, 0x3481880,7, 0x34818a0,7, 0x34818c0,7, 0x34818e0,7, 0x3481900,8, 0x3481924,16, 0x3481980,12, 0x3482000,500, 0x3482800,2, 0x3482820,15, 0x3483000,500, 0x3483800,8, 0x3483824,6, 0x3483840,8, 0x3483880,7, 0x34838a0,7, 0x34838c0,7, 0x34838e0,7, 0x3483900,8, 0x3483924,16, 0x3483980,12, 0x3484004,5, 0x3484200,26, 0x3484280,4, 0x34842c0,25, 0x3484340,6, 0x3484360,1, 0x3484368,2, 0x3484374,11, 0x34843a4,10, 0x3484400,1, 0x3488000,52, 0x3488400,82, 0x3488560,6, 0x3488600,41, 0x3488700,2, 0x3488720,19, 0x3488800,25, 0x3488880,1, 0x3488900,28, 0x3488980,1, 0x3489000,52, 0x3489400,82, 0x3489560,6, 0x3489600,41, 0x3489700,2, 0x3489720,19, 0x3489800,25, 0x3489880,1, 0x3489900,28, 0x3489980,1, 0x348a000,7, 0x348a080,6, 0x348a0a0,6, 0x348a0c0,1, 0x348a100,4, 0x348a120,9, 0x348c000,3, 0x348c010,6, 0x348c200,7, 0x348c220,6, 0x348c240,7, 0x348c260,6, 0x348c280,2, 0x348c28c,2, 0x348c2a0,2, 0x348c2ac,2, 0x348c2c0,7, 0x348c2e0,7, 0x348c300,2, 0x348c30c,2, 0x348c320,6, 0x348c400,3, 0x348c440,12, 0x348c800,7, 0x348c820,14, 0x348c880,16, 0x348c900,7, 0x348c920,14, 0x348c980,16, 0x348ca00,6, 0x348ca20,7, 0x348cc00,3, 0x34a0000,3, 0x34a0800,7, 0x34a0820,6, 0x34a0840,6, 0x34a0880,1, 0x34a0894,1, 0x34a089c,2, 0x34a08c0,9, 0x34a0900,18, 0x34a0a00,36, 0x34a0b00,22, 0x34a0b80,18, 0x34a0c00,3, 0x34a0c10,3, 0x34a1000,3, 0x34a1010,2, 0x34a1080,20, 0x34a1100,1, 0x34a1200,26, 0x34a1280,4, 0x34a12c0,25, 0x34a1340,6, 0x34a1360,1, 0x34a1368,2, 0x34a1374,11, 0x34a13a4,4, 0x34a1400,1, 0x34b0000,11, 0x34b0030,19, 0x34b0080,17, 0x34b0100,11, 0x34b0130,19, 0x34b0180,17, 0x34b0200,3, 0x34b0214,1, 0x34b021c,1, 0x34b0280,3, 0x34b0294,1, 0x34b029c,1, 0x34b0300,18, 0x34b0380,18, 0x34b0400,18, 0x34b0480,18, 0x34b0500,18, 0x34b0580,18, 0x34b0600,18, 0x34b0680,18, 0x34b0700,13, 0x34b0738,6, 0x34b0780,13, 0x34b07b8,6, 0x34b0800,1, 0x34b0808,22, 0x34b0880,1, 0x34b0894,13, 0x34b0900,3, 0x34b0910,3, 0x34b0920,3, 0x34b0940,3, 0x34b0954,1, 0x34b095c,1, 0x34b0a00,52, 0x34b0c00,4, 0x34b0d00,34, 0x34b0e00,4, 0x34b0e80,30, 0x34b0f00,1, 0x34b0f40,5, 0x34b0f60,5, 0x34b0f80,6, 0x34b1000,14, 0x34b1040,4, 0x34b1060,17, 0x34b10c0,6, 0x34b10e0,1, 0x34b10e8,2, 0x34b10f4,11, 0x34b1124,17, 0x34b1200,3, 0x34b1210,3, 0x34b1220,3, 0x34b1230,3, 0x34b1240,3, 0x34b1250,3, 0x34b2000,20, 0x34b2080,3, 0x34b2090,1, 0x34b2098,2, 0x34c0000,500, 0x34c0800,2, 0x34c0820,15, 0x34c1000,500, 0x34c1800,8, 0x34c1824,6, 0x34c1840,8, 0x34c1880,7, 0x34c18a0,7, 0x34c18c0,7, 0x34c18e0,7, 0x34c1900,8, 0x34c1924,16, 0x34c1980,12, 0x34c2000,500, 0x34c2800,2, 0x34c2820,15, 0x34c3000,500, 0x34c3800,8, 0x34c3824,6, 0x34c3840,8, 0x34c3880,7, 0x34c38a0,7, 0x34c38c0,7, 0x34c38e0,7, 0x34c3900,8, 0x34c3924,16, 0x34c3980,12, 0x34c4004,5, 0x34c4200,26, 0x34c4280,4, 0x34c42c0,25, 0x34c4340,6, 0x34c4360,1, 0x34c4368,2, 0x34c4374,11, 0x34c43a4,10, 0x34c4400,1, 0x34c8000,52, 0x34c8400,82, 0x34c8560,6, 0x34c8600,41, 0x34c8700,2, 0x34c8720,19, 0x34c8800,25, 0x34c8880,1, 0x34c8900,28, 0x34c8980,1, 0x34c9000,52, 0x34c9400,82, 0x34c9560,6, 0x34c9600,41, 0x34c9700,2, 0x34c9720,19, 0x34c9800,25, 0x34c9880,1, 0x34c9900,28, 0x34c9980,1, 0x34ca000,7, 0x34ca080,6, 0x34ca0a0,6, 0x34ca0c0,1, 0x34ca100,4, 0x34ca120,9, 0x34cc000,3, 0x34cc010,6, 0x34cc200,7, 0x34cc220,6, 0x34cc240,7, 0x34cc260,6, 0x34cc280,2, 0x34cc28c,2, 0x34cc2a0,2, 0x34cc2ac,2, 0x34cc2c0,7, 0x34cc2e0,7, 0x34cc300,2, 0x34cc30c,2, 0x34cc320,6, 0x34cc400,3, 0x34cc440,12, 0x34cc800,7, 0x34cc820,14, 0x34cc880,16, 0x34cc900,7, 0x34cc920,14, 0x34cc980,16, 0x34cca00,6, 0x34cca20,7, 0x34ccc00,3, 0x34e0000,3, 0x34e0800,7, 0x34e0820,6, 0x34e0840,6, 0x34e0880,1, 0x34e0894,1, 0x34e089c,2, 0x34e08c0,9, 0x34e0900,18, 0x34e0a00,36, 0x34e0b00,22, 0x34e0b80,18, 0x34e0c00,3, 0x34e0c10,3, 0x34e1000,3, 0x34e1010,2, 0x34e1080,20, 0x34e1100,1, 0x34e1200,26, 0x34e1280,4, 0x34e12c0,25, 0x34e1340,6, 0x34e1360,1, 0x34e1368,2, 0x34e1374,11, 0x34e13a4,4, 0x34e1400,1, 0x34f0000,11, 0x34f0030,19, 0x34f0080,17, 0x34f0100,11, 0x34f0130,19, 0x34f0180,17, 0x34f0200,3, 0x34f0214,1, 0x34f021c,1, 0x34f0280,3, 0x34f0294,1, 0x34f029c,1, 0x34f0300,18, 0x34f0380,18, 0x34f0400,18, 0x34f0480,18, 0x34f0500,18, 0x34f0580,18, 0x34f0600,18, 0x34f0680,18, 0x34f0700,13, 0x34f0738,6, 0x34f0780,13, 0x34f07b8,6, 0x34f0800,1, 0x34f0808,22, 0x34f0880,1, 0x34f0894,13, 0x34f0900,3, 0x34f0910,3, 0x34f0920,3, 0x34f0940,3, 0x34f0954,1, 0x34f095c,1, 0x34f0a00,52, 0x34f0c00,4, 0x34f0d00,34, 0x34f0e00,4, 0x34f0e80,30, 0x34f0f00,1, 0x34f0f40,5, 0x34f0f60,5, 0x34f0f80,6, 0x34f1000,14, 0x34f1040,4, 0x34f1060,17, 0x34f10c0,6, 0x34f10e0,1, 0x34f10e8,2, 0x34f10f4,11, 0x34f1124,17, 0x34f1200,3, 0x34f1210,3, 0x34f1220,3, 0x34f1230,3, 0x34f1240,3, 0x34f1250,3, 0x34f2000,20, 0x34f2080,3, 0x34f2090,1, 0x34f2098,2, 0x3500000,13, 0x3500038,4, 0x3500050,3, 0x3500060,3, 0x3500070,16, 0x35000c0,5, 0x3500400,14, 0x3500440,2, 0x350044c,3, 0x3500480,14, 0x35004c0,2, 0x35004cc,3, 0x3500500,1, 0x3500508,15, 0x3500560,2, 0x350056c,2, 0x3500600,4, 0x3500680,27, 0x3500800,2, 0x3500900,32, 0x3500984,2, 0x3500990,4, 0x3500a00,26, 0x3500a80,4, 0x3500ac0,25, 0x3500b40,6, 0x3500b60,1, 0x3500b68,2, 0x3500b74,11, 0x3500ba4,8, 0x3500c00,9, 0x3500c40,11, 0x3500c80,23, 0x3500ce0,15, 0x3500d20,15, 0x3500d60,1, 0x3501000,13, 0x3501038,4, 0x3501050,3, 0x3501060,3, 0x3501070,16, 0x35010c0,5, 0x3501400,14, 0x3501440,2, 0x350144c,3, 0x3501480,14, 0x35014c0,2, 0x35014cc,3, 0x3501500,1, 0x3501508,15, 0x3501560,2, 0x350156c,2, 0x3501600,4, 0x3501680,27, 0x3501800,2, 0x3501900,32, 0x3501984,2, 0x3501990,4, 0x3501a00,26, 0x3501a80,4, 0x3501ac0,25, 0x3501b40,6, 0x3501b60,1, 0x3501b68,2, 0x3501b74,11, 0x3501ba4,8, 0x3501c00,9, 0x3501c40,11, 0x3501c80,23, 0x3501ce0,15, 0x3501d20,15, 0x3501d60,1, 0x3502000,1, 0x3502100,36, 0x3502200,7, 0x3510000,22, 0x3510080,22, 0x3510100,12, 0x3510140,12, 0x3510200,52, 0x3510300,52, 0x3510400,11, 0x3510440,11, 0x3510480,3, 0x35104a0,6, 0x35104c0,6, 0x35104e0,3, 0x35104f0,3, 0x3510800,9, 0x3510840,15, 0x3510880,15, 0x35108c0,15, 0x3510900,1, 0x3510914,13, 0x3510980,17, 0x3511000,17, 0x3511080,17, 0x3511104,5, 0x3511120,3, 0x3511130,11, 0x3511200,31, 0x3511280,31, 0x3511300,12, 0x3511340,12, 0x3511380,2, 0x3511390,2, 0x35113a0,3, 0x35113b0,3, 0x35113c0,5, 0x35113e0,5, 0x3511400,3, 0x3511410,3, 0x3511420,3, 0x3511430,3, 0x3511440,3, 0x3511450,3, 0x3511460,7, 0x3511800,26, 0x3511880,4, 0x35118c0,25, 0x3511940,6, 0x3511960,1, 0x3511968,2, 0x3511974,11, 0x35119a4,12, 0x3511a00,4, 0x3511b00,43, 0x3511c00,4, 0x3511c20,7, 0x3511c40,3, 0x3511c50,1, 0x3511c60,3, 0x3511e00,32, 0x3511e84,1, 0x3511e90,4, 0x3511ea4,1, 0x3511eb4,14, 0x3511ef0,2, 0x3511f04,1, 0x3511f10,8, 0x3511f34,6, 0x3512000,3, 0x3512010,21, 0x3512080,1, 0x3512094,1, 0x351209c,5, 0x3512100,15, 0x3512140,1, 0x3512180,6, 0x3514000,22, 0x3514080,22, 0x3514100,12, 0x3514140,12, 0x3514200,52, 0x3514300,52, 0x3514400,11, 0x3514440,11, 0x3514480,3, 0x35144a0,6, 0x35144c0,6, 0x35144e0,3, 0x35144f0,3, 0x3514800,9, 0x3514840,15, 0x3514880,15, 0x35148c0,15, 0x3514900,1, 0x3514914,13, 0x3514980,17, 0x3515000,17, 0x3515080,17, 0x3515104,5, 0x3515120,3, 0x3515130,11, 0x3515200,31, 0x3515280,31, 0x3515300,12, 0x3515340,12, 0x3515380,2, 0x3515390,2, 0x35153a0,3, 0x35153b0,3, 0x35153c0,5, 0x35153e0,5, 0x3515400,3, 0x3515410,3, 0x3515420,3, 0x3515430,3, 0x3515440,3, 0x3515450,3, 0x3515460,7, 0x3515800,26, 0x3515880,4, 0x35158c0,25, 0x3515940,6, 0x3515960,1, 0x3515968,2, 0x3515974,11, 0x35159a4,12, 0x3515a00,4, 0x3515b00,43, 0x3515c00,4, 0x3515c20,7, 0x3515c40,3, 0x3515c50,1, 0x3515c60,3, 0x3515e00,32, 0x3515e84,1, 0x3515e90,4, 0x3515ea4,1, 0x3515eb4,14, 0x3515ef0,2, 0x3515f04,1, 0x3515f10,8, 0x3515f34,6, 0x3516000,3, 0x3516010,21, 0x3516080,1, 0x3516094,1, 0x351609c,5, 0x3516100,15, 0x3516140,1, 0x3516180,6, 0x3518000,100, 0x3518200,3, 0x3518210,5, 0x3520000,12, 0x3520040,2, 0x3520050,3, 0x3522000,1006, 0x3523000,31, 0x3523084,6, 0x3524004,1, 0x352400c,3, 0x3524200,23, 0x3524280,23, 0x3524300,1, 0x3524400,1, 0x3524800,122, 0x3524a00,122, 0x3524c04,63, 0x3524d04,1, 0x3524d10,5, 0x3524d40,6, 0x3524d60,5, 0x3526000,1, 0x3526100,1, 0x3526108,3, 0x3526120,2, 0x3526134,8, 0x3526160,2, 0x3526174,8, 0x35261a0,4, 0x3526200,54, 0x3526800,5, 0x3526820,2, 0x3526834,1, 0x352683c,1, 0x3526a00,24, 0x3526a80,24, 0x3526b00,1, 0x3526c00,6, 0x3526c24,5, 0x3526c40,16, 0x3527000,1, 0x3527020,5, 0x3527040,1, 0x3527048,2, 0x3527080,1, 0x3527100,4, 0x3527180,24, 0x3527200,4, 0x3527280,27, 0x3527300,2, 0x352730c,3, 0x3528004,1, 0x352800c,3, 0x3528020,1, 0x3528100,2, 0x3528110,3, 0x3528120,2, 0x3528140,10, 0x3528180,13, 0x3528200,2, 0x3528210,3, 0x3528220,2, 0x3528240,10, 0x3528280,13, 0x3528400,14, 0x3528440,3, 0x3528450,3, 0x3528460,1, 0x3528500,36, 0x3528600,10, 0x3528640,5, 0x3528660,5, 0x3528700,27, 0x3528780,7, 0x35287a0,8, 0x3528800,27, 0x3528880,7, 0x35288a0,8, 0x3528900,27, 0x3528980,7, 0x35289a0,8, 0x3528a00,27, 0x3528a80,7, 0x3528aa0,8, 0x3528b00,48, 0x3528bc4,8, 0x3528bf0,30, 0x3528c80,4, 0x3528cc0,25, 0x3528d40,6, 0x3528d60,1, 0x3528d68,2, 0x3528d74,3, 0x3528e00,8, 0x3528e24,28, 0x3529000,4, 0x3529080,23, 0x3529100,14, 0x3529140,9, 0x3529200,10, 0x3529230,3, 0x3529240,5, 0x3529260,5, 0x3529280,9, 0x3529400,67, 0x3529600,10, 0x3530000,12, 0x3530040,2, 0x3530050,3, 0x3532000,1006, 0x3533000,31, 0x3533084,6, 0x3534004,1, 0x353400c,3, 0x3534200,23, 0x3534280,23, 0x3534300,1, 0x3534400,1, 0x3534800,122, 0x3534a00,122, 0x3534c04,63, 0x3534d04,1, 0x3534d10,5, 0x3534d40,6, 0x3534d60,5, 0x3536000,1, 0x3536100,1, 0x3536108,3, 0x3536120,2, 0x3536134,8, 0x3536160,2, 0x3536174,8, 0x35361a0,4, 0x3536200,54, 0x3536800,5, 0x3536820,2, 0x3536834,1, 0x353683c,1, 0x3536a00,24, 0x3536a80,24, 0x3536b00,1, 0x3536c00,6, 0x3536c24,5, 0x3536c40,16, 0x3537000,1, 0x3537020,5, 0x3537040,1, 0x3537048,2, 0x3537080,1, 0x3537100,4, 0x3537180,24, 0x3537200,4, 0x3537280,27, 0x3537300,2, 0x353730c,3, 0x3538004,1, 0x353800c,3, 0x3538020,1, 0x3538100,2, 0x3538110,3, 0x3538120,2, 0x3538140,10, 0x3538180,13, 0x3538200,2, 0x3538210,3, 0x3538220,2, 0x3538240,10, 0x3538280,13, 0x3538400,14, 0x3538440,3, 0x3538450,3, 0x3538460,1, 0x3538500,36, 0x3538600,10, 0x3538640,5, 0x3538660,5, 0x3538700,27, 0x3538780,7, 0x35387a0,8, 0x3538800,27, 0x3538880,7, 0x35388a0,8, 0x3538900,27, 0x3538980,7, 0x35389a0,8, 0x3538a00,27, 0x3538a80,7, 0x3538aa0,8, 0x3538b00,48, 0x3538bc4,8, 0x3538bf0,30, 0x3538c80,4, 0x3538cc0,25, 0x3538d40,6, 0x3538d60,1, 0x3538d68,2, 0x3538d74,3, 0x3538e00,8, 0x3538e24,28, 0x3539000,4, 0x3539080,23, 0x3539100,14, 0x3539140,9, 0x3539200,10, 0x3539230,3, 0x3539240,5, 0x3539260,5, 0x3539280,9, 0x3539400,67, 0x3539600,10, 0x3600000,1, 0x3600020,3, 0x3600030,2, 0x3600040,3, 0x3600050,2, 0x3600800,53, 0x3600900,3, 0x3600910,13, 0x3600a00,53, 0x3600b00,3, 0x3600b10,13, 0x3600c00,5, 0x3600c20,5, 0x3600c40,18, 0x3601000,6, 0x3601020,4, 0x3601040,16, 0x3602000,20, 0x3602080,15, 0x3602100,20, 0x3602180,15, 0x3602200,23, 0x3602260,7, 0x3602400,11, 0x3602430,3, 0x3602440,3, 0x3602450,3, 0x3602460,24, 0x3602500,11, 0x3602530,3, 0x3602540,3, 0x3602550,3, 0x3602560,24, 0x3602600,11, 0x3602630,3, 0x3602640,3, 0x3602650,3, 0x3602660,24, 0x3602700,11, 0x3602730,3, 0x3602740,3, 0x3602750,3, 0x3602760,24, 0x3602800,4, 0x3602820,16, 0x3602880,10, 0x36028c0,10, 0x3602900,6, 0x3602920,6, 0x3602940,4, 0x3602980,13, 0x36029c0,13, 0x3602a00,9, 0x3603000,14, 0x3603040,9, 0x3603080,6, 0x36030a0,1, 0x36030a8,4, 0x3603100,4, 0x3603200,124, 0x3603400,124, 0x3603600,8, 0x3603624,1, 0x3603644,6, 0x3603664,6, 0x3603680,1, 0x3603688,6, 0x36036a8,22, 0x3604000,1, 0x3604020,3, 0x3604030,2, 0x3604040,3, 0x3604050,2, 0x3604800,53, 0x3604900,3, 0x3604910,13, 0x3604a00,53, 0x3604b00,3, 0x3604b10,13, 0x3604c00,5, 0x3604c20,5, 0x3604c40,18, 0x3605000,6, 0x3605020,4, 0x3605040,16, 0x3606000,20, 0x3606080,15, 0x3606100,20, 0x3606180,15, 0x3606200,23, 0x3606260,7, 0x3606400,11, 0x3606430,3, 0x3606440,3, 0x3606450,3, 0x3606460,24, 0x3606500,11, 0x3606530,3, 0x3606540,3, 0x3606550,3, 0x3606560,24, 0x3606600,11, 0x3606630,3, 0x3606640,3, 0x3606650,3, 0x3606660,24, 0x3606700,11, 0x3606730,3, 0x3606740,3, 0x3606750,3, 0x3606760,24, 0x3606800,4, 0x3606820,16, 0x3606880,10, 0x36068c0,10, 0x3606900,6, 0x3606920,6, 0x3606940,4, 0x3606980,13, 0x36069c0,13, 0x3606a00,9, 0x3607000,14, 0x3607040,9, 0x3607080,6, 0x36070a0,1, 0x36070a8,4, 0x3607100,4, 0x3607200,124, 0x3607400,124, 0x3607600,8, 0x3607624,1, 0x3607644,6, 0x3607664,6, 0x3607680,1, 0x3607688,6, 0x36076a8,22, 0x3608000,84, 0x3608180,20, 0x3608200,5, 0x3608400,11, 0x3608440,11, 0x3608480,19, 0x3608500,19, 0x3608580,24, 0x3608600,13, 0x3608800,84, 0x3608980,20, 0x3608a00,5, 0x3608c00,11, 0x3608c40,11, 0x3608c80,19, 0x3608d00,19, 0x3608d80,24, 0x3608e00,13, 0x3609000,10, 0x3609040,5, 0x3609080,10, 0x36090c0,5, 0x3609100,5, 0x3609200,11, 0x3609230,3, 0x3609240,5, 0x3609260,5, 0x3609280,32, 0x3609400,13, 0x3609440,13, 0x3609480,9, 0x36094c0,1, 0x36094d0,5, 0x36094f0,21, 0x3609800,10, 0x3609840,5, 0x3609880,10, 0x36098c0,5, 0x3609900,5, 0x3609a00,11, 0x3609a30,3, 0x3609a40,5, 0x3609a60,5, 0x3609a80,32, 0x3609c00,13, 0x3609c40,13, 0x3609c80,9, 0x3609cc0,1, 0x3609cd0,5, 0x3609cf0,21, 0x360a000,14, 0x360a040,9, 0x360a080,6, 0x360a0a0,1, 0x360a0a8,4, 0x360a100,7, 0x360a120,3, 0x360a130,25, 0x360c000,26, 0x360c06c,2, 0x360c080,3, 0x360c090,17, 0x360c100,26, 0x360c16c,2, 0x360c180,3, 0x360c190,17, 0x360c200,26, 0x360c26c,2, 0x360c280,3, 0x360c290,17, 0x360c300,26, 0x360c36c,2, 0x360c380,3, 0x360c390,17, 0x360c400,26, 0x360c46c,2, 0x360c480,3, 0x360c490,17, 0x360c500,26, 0x360c56c,2, 0x360c580,3, 0x360c590,17, 0x360c600,26, 0x360c66c,2, 0x360c680,3, 0x360c690,17, 0x360c700,26, 0x360c76c,2, 0x360c780,3, 0x360c790,17, 0x360c800,12, 0x360c844,1, 0x360c854,8, 0x360c880,7, 0x360c8a0,2, 0x360c8ac,2, 0x360c8c0,26, 0x360c980,4, 0x360c9a0,5, 0x360c9c0,1, 0x360d000,3, 0x360d010,3, 0x360d020,3, 0x360d030,3, 0x360d040,3, 0x360d050,3, 0x360d060,3, 0x360d070,3, 0x360d080,5, 0x360d0a0,5, 0x360d0c0,5, 0x360d0e0,5, 0x360d100,5, 0x360d120,5, 0x360d140,5, 0x360d160,5, 0x360d200,68, 0x360d400,1, 0x360d804,1, 0x360d844,54, 0x360da00,11, 0x360da40,11, 0x360da80,11, 0x360dac0,11, 0x360db00,11, 0x360db40,11, 0x360db80,11, 0x360dbc0,11, 0x360dc00,28, 0x360dc80,5, 0x360dca0,2, 0x360e000,4, 0x360e020,6, 0x360e040,6, 0x360e060,14, 0x360e100,26, 0x360e180,15, 0x360e200,14, 0x360e240,9, 0x360e280,6, 0x360e2a0,1, 0x360e2a8,4, 0x360e300,14, 0x360e340,9, 0x360e380,6, 0x360e3a0,4, 0x360e400,9, 0x3620000,1, 0x3621000,977, 0x3622000,161, 0x3623000,977, 0x3624000,977, 0x3625000,977, 0x3626000,977, 0x3627000,977, 0x3628000,977, 0x3629000,977, 0x362a000,977, 0x362b000,161, 0x362c000,12, 0x362c040,14, 0x362c080,20, 0x362c104,1, 0x362c10c,4, 0x362c200,12, 0x362c240,14, 0x362c280,20, 0x362c304,1, 0x362c30c,4, 0x362c400,12, 0x362c440,14, 0x362c480,20, 0x362c504,1, 0x362c50c,4, 0x362c600,12, 0x362c640,14, 0x362c680,20, 0x362c704,1, 0x362c70c,4, 0x362c800,12, 0x362c840,14, 0x362c880,20, 0x362c904,1, 0x362c90c,4, 0x362ca00,12, 0x362ca40,14, 0x362ca80,20, 0x362cb04,1, 0x362cb0c,4, 0x362cc00,12, 0x362cc40,14, 0x362cc80,20, 0x362cd04,1, 0x362cd0c,4, 0x362ce00,12, 0x362ce40,14, 0x362ce80,20, 0x362cf04,1, 0x362cf0c,4, 0x362d000,12, 0x362d040,14, 0x362d080,20, 0x362d104,1, 0x362d10c,4, 0x362d200,17, 0x362d250,2, 0x362d260,4, 0x362e000,1, 0x362e014,1, 0x362e01c,11, 0x362e060,9, 0x362e094,1, 0x362e09c,11, 0x362e0e0,15, 0x362e200,12, 0x362e240,13, 0x362e280,3, 0x362e290,1, 0x3680000,500, 0x3680800,2, 0x3680820,15, 0x3681000,500, 0x3681800,8, 0x3681824,6, 0x3681840,8, 0x3681880,7, 0x36818a0,7, 0x36818c0,7, 0x36818e0,7, 0x3681900,8, 0x3681924,16, 0x3681980,12, 0x3682000,500, 0x3682800,2, 0x3682820,15, 0x3683000,500, 0x3683800,8, 0x3683824,6, 0x3683840,8, 0x3683880,7, 0x36838a0,7, 0x36838c0,7, 0x36838e0,7, 0x3683900,8, 0x3683924,16, 0x3683980,12, 0x3684004,5, 0x3684200,26, 0x3684280,4, 0x36842c0,25, 0x3684340,6, 0x3684360,1, 0x3684368,2, 0x3684374,11, 0x36843a4,10, 0x3684400,1, 0x3688000,52, 0x3688400,82, 0x3688560,6, 0x3688600,41, 0x3688700,2, 0x3688720,19, 0x3688800,25, 0x3688880,1, 0x3688900,28, 0x3688980,1, 0x3689000,52, 0x3689400,82, 0x3689560,6, 0x3689600,41, 0x3689700,2, 0x3689720,19, 0x3689800,25, 0x3689880,1, 0x3689900,28, 0x3689980,1, 0x368a000,7, 0x368a080,6, 0x368a0a0,6, 0x368a0c0,1, 0x368a100,4, 0x368a120,9, 0x368c000,3, 0x368c010,6, 0x368c200,7, 0x368c220,6, 0x368c240,7, 0x368c260,6, 0x368c280,2, 0x368c28c,2, 0x368c2a0,2, 0x368c2ac,2, 0x368c2c0,7, 0x368c2e0,7, 0x368c300,2, 0x368c30c,2, 0x368c320,6, 0x368c400,3, 0x368c440,12, 0x368c800,7, 0x368c820,14, 0x368c880,16, 0x368c900,7, 0x368c920,14, 0x368c980,16, 0x368ca00,6, 0x368ca20,7, 0x368cc00,3, 0x36a0000,3, 0x36a0800,7, 0x36a0820,6, 0x36a0840,6, 0x36a0880,1, 0x36a0894,1, 0x36a089c,2, 0x36a08c0,9, 0x36a0900,18, 0x36a0a00,36, 0x36a0b00,22, 0x36a0b80,18, 0x36a0c00,3, 0x36a0c10,3, 0x36a1000,3, 0x36a1010,2, 0x36a1080,20, 0x36a1100,1, 0x36a1200,26, 0x36a1280,4, 0x36a12c0,25, 0x36a1340,6, 0x36a1360,1, 0x36a1368,2, 0x36a1374,11, 0x36a13a4,4, 0x36a1400,1, 0x36b0000,11, 0x36b0030,19, 0x36b0080,17, 0x36b0100,11, 0x36b0130,19, 0x36b0180,17, 0x36b0200,3, 0x36b0214,1, 0x36b021c,1, 0x36b0280,3, 0x36b0294,1, 0x36b029c,1, 0x36b0300,18, 0x36b0380,18, 0x36b0400,18, 0x36b0480,18, 0x36b0500,18, 0x36b0580,18, 0x36b0600,18, 0x36b0680,18, 0x36b0700,13, 0x36b0738,6, 0x36b0780,13, 0x36b07b8,6, 0x36b0800,1, 0x36b0808,22, 0x36b0880,1, 0x36b0894,13, 0x36b0900,3, 0x36b0910,3, 0x36b0920,3, 0x36b0940,3, 0x36b0954,1, 0x36b095c,1, 0x36b0a00,52, 0x36b0c00,4, 0x36b0d00,34, 0x36b0e00,4, 0x36b0e80,30, 0x36b0f00,1, 0x36b0f40,5, 0x36b0f60,5, 0x36b0f80,6, 0x36b1000,14, 0x36b1040,4, 0x36b1060,17, 0x36b10c0,6, 0x36b10e0,1, 0x36b10e8,2, 0x36b10f4,11, 0x36b1124,17, 0x36b1200,3, 0x36b1210,3, 0x36b1220,3, 0x36b1230,3, 0x36b1240,3, 0x36b1250,3, 0x36b2000,20, 0x36b2080,3, 0x36b2090,1, 0x36b2098,2, 0x36c0000,500, 0x36c0800,2, 0x36c0820,15, 0x36c1000,500, 0x36c1800,8, 0x36c1824,6, 0x36c1840,8, 0x36c1880,7, 0x36c18a0,7, 0x36c18c0,7, 0x36c18e0,7, 0x36c1900,8, 0x36c1924,16, 0x36c1980,12, 0x36c2000,500, 0x36c2800,2, 0x36c2820,15, 0x36c3000,500, 0x36c3800,8, 0x36c3824,6, 0x36c3840,8, 0x36c3880,7, 0x36c38a0,7, 0x36c38c0,7, 0x36c38e0,7, 0x36c3900,8, 0x36c3924,16, 0x36c3980,12, 0x36c4004,5, 0x36c4200,26, 0x36c4280,4, 0x36c42c0,25, 0x36c4340,6, 0x36c4360,1, 0x36c4368,2, 0x36c4374,11, 0x36c43a4,10, 0x36c4400,1, 0x36c8000,52, 0x36c8400,82, 0x36c8560,6, 0x36c8600,41, 0x36c8700,2, 0x36c8720,19, 0x36c8800,25, 0x36c8880,1, 0x36c8900,28, 0x36c8980,1, 0x36c9000,52, 0x36c9400,82, 0x36c9560,6, 0x36c9600,41, 0x36c9700,2, 0x36c9720,19, 0x36c9800,25, 0x36c9880,1, 0x36c9900,28, 0x36c9980,1, 0x36ca000,7, 0x36ca080,6, 0x36ca0a0,6, 0x36ca0c0,1, 0x36ca100,4, 0x36ca120,9, 0x36cc000,3, 0x36cc010,6, 0x36cc200,7, 0x36cc220,6, 0x36cc240,7, 0x36cc260,6, 0x36cc280,2, 0x36cc28c,2, 0x36cc2a0,2, 0x36cc2ac,2, 0x36cc2c0,7, 0x36cc2e0,7, 0x36cc300,2, 0x36cc30c,2, 0x36cc320,6, 0x36cc400,3, 0x36cc440,12, 0x36cc800,7, 0x36cc820,14, 0x36cc880,16, 0x36cc900,7, 0x36cc920,14, 0x36cc980,16, 0x36cca00,6, 0x36cca20,7, 0x36ccc00,3, 0x36e0000,3, 0x36e0800,7, 0x36e0820,6, 0x36e0840,6, 0x36e0880,1, 0x36e0894,1, 0x36e089c,2, 0x36e08c0,9, 0x36e0900,18, 0x36e0a00,36, 0x36e0b00,22, 0x36e0b80,18, 0x36e0c00,3, 0x36e0c10,3, 0x36e1000,3, 0x36e1010,2, 0x36e1080,20, 0x36e1100,1, 0x36e1200,26, 0x36e1280,4, 0x36e12c0,25, 0x36e1340,6, 0x36e1360,1, 0x36e1368,2, 0x36e1374,11, 0x36e13a4,4, 0x36e1400,1, 0x36f0000,11, 0x36f0030,19, 0x36f0080,17, 0x36f0100,11, 0x36f0130,19, 0x36f0180,17, 0x36f0200,3, 0x36f0214,1, 0x36f021c,1, 0x36f0280,3, 0x36f0294,1, 0x36f029c,1, 0x36f0300,18, 0x36f0380,18, 0x36f0400,18, 0x36f0480,18, 0x36f0500,18, 0x36f0580,18, 0x36f0600,18, 0x36f0680,18, 0x36f0700,13, 0x36f0738,6, 0x36f0780,13, 0x36f07b8,6, 0x36f0800,1, 0x36f0808,22, 0x36f0880,1, 0x36f0894,13, 0x36f0900,3, 0x36f0910,3, 0x36f0920,3, 0x36f0940,3, 0x36f0954,1, 0x36f095c,1, 0x36f0a00,52, 0x36f0c00,4, 0x36f0d00,34, 0x36f0e00,4, 0x36f0e80,30, 0x36f0f00,1, 0x36f0f40,5, 0x36f0f60,5, 0x36f0f80,6, 0x36f1000,14, 0x36f1040,4, 0x36f1060,17, 0x36f10c0,6, 0x36f10e0,1, 0x36f10e8,2, 0x36f10f4,11, 0x36f1124,17, 0x36f1200,3, 0x36f1210,3, 0x36f1220,3, 0x36f1230,3, 0x36f1240,3, 0x36f1250,3, 0x36f2000,20, 0x36f2080,3, 0x36f2090,1, 0x36f2098,2, 0x3700000,13, 0x3700038,4, 0x3700050,3, 0x3700060,3, 0x3700070,16, 0x37000c0,5, 0x3700400,14, 0x3700440,2, 0x370044c,3, 0x3700480,14, 0x37004c0,2, 0x37004cc,3, 0x3700500,1, 0x3700508,15, 0x3700560,2, 0x370056c,2, 0x3700600,4, 0x3700680,27, 0x3700800,2, 0x3700900,32, 0x3700984,2, 0x3700990,4, 0x3700a00,26, 0x3700a80,4, 0x3700ac0,25, 0x3700b40,6, 0x3700b60,1, 0x3700b68,2, 0x3700b74,11, 0x3700ba4,8, 0x3700c00,9, 0x3700c40,11, 0x3700c80,23, 0x3700ce0,15, 0x3700d20,15, 0x3700d60,1, 0x3701000,13, 0x3701038,4, 0x3701050,3, 0x3701060,3, 0x3701070,16, 0x37010c0,5, 0x3701400,14, 0x3701440,2, 0x370144c,3, 0x3701480,14, 0x37014c0,2, 0x37014cc,3, 0x3701500,1, 0x3701508,15, 0x3701560,2, 0x370156c,2, 0x3701600,4, 0x3701680,27, 0x3701800,2, 0x3701900,32, 0x3701984,2, 0x3701990,4, 0x3701a00,26, 0x3701a80,4, 0x3701ac0,25, 0x3701b40,6, 0x3701b60,1, 0x3701b68,2, 0x3701b74,11, 0x3701ba4,8, 0x3701c00,9, 0x3701c40,11, 0x3701c80,23, 0x3701ce0,15, 0x3701d20,15, 0x3701d60,1, 0x3702000,1, 0x3702100,36, 0x3702200,7, 0x3710000,22, 0x3710080,22, 0x3710100,12, 0x3710140,12, 0x3710200,52, 0x3710300,52, 0x3710400,11, 0x3710440,11, 0x3710480,3, 0x37104a0,6, 0x37104c0,6, 0x37104e0,3, 0x37104f0,3, 0x3710800,9, 0x3710840,15, 0x3710880,15, 0x37108c0,15, 0x3710900,1, 0x3710914,13, 0x3710980,17, 0x3711000,17, 0x3711080,17, 0x3711104,5, 0x3711120,3, 0x3711130,11, 0x3711200,31, 0x3711280,31, 0x3711300,12, 0x3711340,12, 0x3711380,2, 0x3711390,2, 0x37113a0,3, 0x37113b0,3, 0x37113c0,5, 0x37113e0,5, 0x3711400,3, 0x3711410,3, 0x3711420,3, 0x3711430,3, 0x3711440,3, 0x3711450,3, 0x3711460,7, 0x3711800,26, 0x3711880,4, 0x37118c0,25, 0x3711940,6, 0x3711960,1, 0x3711968,2, 0x3711974,11, 0x37119a4,12, 0x3711a00,4, 0x3711b00,43, 0x3711c00,4, 0x3711c20,7, 0x3711c40,3, 0x3711c50,1, 0x3711c60,3, 0x3711e00,32, 0x3711e84,1, 0x3711e90,4, 0x3711ea4,1, 0x3711eb4,14, 0x3711ef0,2, 0x3711f04,1, 0x3711f10,8, 0x3711f34,6, 0x3712000,3, 0x3712010,21, 0x3712080,1, 0x3712094,1, 0x371209c,5, 0x3712100,15, 0x3712140,1, 0x3712180,6, 0x3714000,22, 0x3714080,22, 0x3714100,12, 0x3714140,12, 0x3714200,52, 0x3714300,52, 0x3714400,11, 0x3714440,11, 0x3714480,3, 0x37144a0,6, 0x37144c0,6, 0x37144e0,3, 0x37144f0,3, 0x3714800,9, 0x3714840,15, 0x3714880,15, 0x37148c0,15, 0x3714900,1, 0x3714914,13, 0x3714980,17, 0x3715000,17, 0x3715080,17, 0x3715104,5, 0x3715120,3, 0x3715130,11, 0x3715200,31, 0x3715280,31, 0x3715300,12, 0x3715340,12, 0x3715380,2, 0x3715390,2, 0x37153a0,3, 0x37153b0,3, 0x37153c0,5, 0x37153e0,5, 0x3715400,3, 0x3715410,3, 0x3715420,3, 0x3715430,3, 0x3715440,3, 0x3715450,3, 0x3715460,7, 0x3715800,26, 0x3715880,4, 0x37158c0,25, 0x3715940,6, 0x3715960,1, 0x3715968,2, 0x3715974,11, 0x37159a4,12, 0x3715a00,4, 0x3715b00,43, 0x3715c00,4, 0x3715c20,7, 0x3715c40,3, 0x3715c50,1, 0x3715c60,3, 0x3715e00,32, 0x3715e84,1, 0x3715e90,4, 0x3715ea4,1, 0x3715eb4,14, 0x3715ef0,2, 0x3715f04,1, 0x3715f10,8, 0x3715f34,6, 0x3716000,3, 0x3716010,21, 0x3716080,1, 0x3716094,1, 0x371609c,5, 0x3716100,15, 0x3716140,1, 0x3716180,6, 0x3718000,100, 0x3718200,3, 0x3718210,5, 0x3720000,12, 0x3720040,2, 0x3720050,3, 0x3722000,1006, 0x3723000,31, 0x3723084,6, 0x3724004,1, 0x372400c,3, 0x3724200,23, 0x3724280,23, 0x3724300,1, 0x3724400,1, 0x3724800,122, 0x3724a00,122, 0x3724c04,63, 0x3724d04,1, 0x3724d10,5, 0x3724d40,6, 0x3724d60,5, 0x3726000,1, 0x3726100,1, 0x3726108,3, 0x3726120,2, 0x3726134,8, 0x3726160,2, 0x3726174,8, 0x37261a0,4, 0x3726200,54, 0x3726800,5, 0x3726820,2, 0x3726834,1, 0x372683c,1, 0x3726a00,24, 0x3726a80,24, 0x3726b00,1, 0x3726c00,6, 0x3726c24,5, 0x3726c40,16, 0x3727000,1, 0x3727020,5, 0x3727040,1, 0x3727048,2, 0x3727080,1, 0x3727100,4, 0x3727180,24, 0x3727200,4, 0x3727280,27, 0x3727300,2, 0x372730c,3, 0x3728004,1, 0x372800c,3, 0x3728020,1, 0x3728100,2, 0x3728110,3, 0x3728120,2, 0x3728140,10, 0x3728180,13, 0x3728200,2, 0x3728210,3, 0x3728220,2, 0x3728240,10, 0x3728280,13, 0x3728400,14, 0x3728440,3, 0x3728450,3, 0x3728460,1, 0x3728500,36, 0x3728600,10, 0x3728640,5, 0x3728660,5, 0x3728700,27, 0x3728780,7, 0x37287a0,8, 0x3728800,27, 0x3728880,7, 0x37288a0,8, 0x3728900,27, 0x3728980,7, 0x37289a0,8, 0x3728a00,27, 0x3728a80,7, 0x3728aa0,8, 0x3728b00,48, 0x3728bc4,8, 0x3728bf0,30, 0x3728c80,4, 0x3728cc0,25, 0x3728d40,6, 0x3728d60,1, 0x3728d68,2, 0x3728d74,3, 0x3728e00,8, 0x3728e24,28, 0x3729000,4, 0x3729080,23, 0x3729100,14, 0x3729140,9, 0x3729200,10, 0x3729230,3, 0x3729240,5, 0x3729260,5, 0x3729280,9, 0x3729400,67, 0x3729600,10, 0x3730000,12, 0x3730040,2, 0x3730050,3, 0x3732000,1006, 0x3733000,31, 0x3733084,6, 0x3734004,1, 0x373400c,3, 0x3734200,23, 0x3734280,23, 0x3734300,1, 0x3734400,1, 0x3734800,122, 0x3734a00,122, 0x3734c04,63, 0x3734d04,1, 0x3734d10,5, 0x3734d40,6, 0x3734d60,5, 0x3736000,1, 0x3736100,1, 0x3736108,3, 0x3736120,2, 0x3736134,8, 0x3736160,2, 0x3736174,8, 0x37361a0,4, 0x3736200,54, 0x3736800,5, 0x3736820,2, 0x3736834,1, 0x373683c,1, 0x3736a00,24, 0x3736a80,24, 0x3736b00,1, 0x3736c00,6, 0x3736c24,5, 0x3736c40,16, 0x3737000,1, 0x3737020,5, 0x3737040,1, 0x3737048,2, 0x3737080,1, 0x3737100,4, 0x3737180,24, 0x3737200,4, 0x3737280,27, 0x3737300,2, 0x373730c,3, 0x3738004,1, 0x373800c,3, 0x3738020,1, 0x3738100,2, 0x3738110,3, 0x3738120,2, 0x3738140,10, 0x3738180,13, 0x3738200,2, 0x3738210,3, 0x3738220,2, 0x3738240,10, 0x3738280,13, 0x3738400,14, 0x3738440,3, 0x3738450,3, 0x3738460,1, 0x3738500,36, 0x3738600,10, 0x3738640,5, 0x3738660,5, 0x3738700,27, 0x3738780,7, 0x37387a0,8, 0x3738800,27, 0x3738880,7, 0x37388a0,8, 0x3738900,27, 0x3738980,7, 0x37389a0,8, 0x3738a00,27, 0x3738a80,7, 0x3738aa0,8, 0x3738b00,48, 0x3738bc4,8, 0x3738bf0,30, 0x3738c80,4, 0x3738cc0,25, 0x3738d40,6, 0x3738d60,1, 0x3738d68,2, 0x3738d74,3, 0x3738e00,8, 0x3738e24,28, 0x3739000,4, 0x3739080,23, 0x3739100,14, 0x3739140,9, 0x3739200,10, 0x3739230,3, 0x3739240,5, 0x3739260,5, 0x3739280,9, 0x3739400,67, 0x3739600,10, 0x3800000,1, 0x3800020,3, 0x3800030,2, 0x3800040,3, 0x3800050,2, 0x3800800,53, 0x3800900,3, 0x3800910,13, 0x3800a00,53, 0x3800b00,3, 0x3800b10,13, 0x3800c00,5, 0x3800c20,5, 0x3800c40,18, 0x3801000,6, 0x3801020,4, 0x3801040,16, 0x3802000,20, 0x3802080,15, 0x3802100,20, 0x3802180,15, 0x3802200,23, 0x3802260,7, 0x3802400,11, 0x3802430,3, 0x3802440,3, 0x3802450,3, 0x3802460,24, 0x3802500,11, 0x3802530,3, 0x3802540,3, 0x3802550,3, 0x3802560,24, 0x3802600,11, 0x3802630,3, 0x3802640,3, 0x3802650,3, 0x3802660,24, 0x3802700,11, 0x3802730,3, 0x3802740,3, 0x3802750,3, 0x3802760,24, 0x3802800,4, 0x3802820,16, 0x3802880,10, 0x38028c0,10, 0x3802900,6, 0x3802920,6, 0x3802940,4, 0x3802980,13, 0x38029c0,13, 0x3802a00,9, 0x3803000,14, 0x3803040,9, 0x3803080,6, 0x38030a0,1, 0x38030a8,4, 0x3803100,4, 0x3803200,124, 0x3803400,124, 0x3803600,8, 0x3803624,1, 0x3803644,6, 0x3803664,6, 0x3803680,1, 0x3803688,6, 0x38036a8,22, 0x3804000,1, 0x3804020,3, 0x3804030,2, 0x3804040,3, 0x3804050,2, 0x3804800,53, 0x3804900,3, 0x3804910,13, 0x3804a00,53, 0x3804b00,3, 0x3804b10,13, 0x3804c00,5, 0x3804c20,5, 0x3804c40,18, 0x3805000,6, 0x3805020,4, 0x3805040,16, 0x3806000,20, 0x3806080,15, 0x3806100,20, 0x3806180,15, 0x3806200,23, 0x3806260,7, 0x3806400,11, 0x3806430,3, 0x3806440,3, 0x3806450,3, 0x3806460,24, 0x3806500,11, 0x3806530,3, 0x3806540,3, 0x3806550,3, 0x3806560,24, 0x3806600,11, 0x3806630,3, 0x3806640,3, 0x3806650,3, 0x3806660,24, 0x3806700,11, 0x3806730,3, 0x3806740,3, 0x3806750,3, 0x3806760,24, 0x3806800,4, 0x3806820,16, 0x3806880,10, 0x38068c0,10, 0x3806900,6, 0x3806920,6, 0x3806940,4, 0x3806980,13, 0x38069c0,13, 0x3806a00,9, 0x3807000,14, 0x3807040,9, 0x3807080,6, 0x38070a0,1, 0x38070a8,4, 0x3807100,4, 0x3807200,124, 0x3807400,124, 0x3807600,8, 0x3807624,1, 0x3807644,6, 0x3807664,6, 0x3807680,1, 0x3807688,6, 0x38076a8,22, 0x3808000,84, 0x3808180,20, 0x3808200,5, 0x3808400,11, 0x3808440,11, 0x3808480,19, 0x3808500,19, 0x3808580,24, 0x3808600,13, 0x3808800,84, 0x3808980,20, 0x3808a00,5, 0x3808c00,11, 0x3808c40,11, 0x3808c80,19, 0x3808d00,19, 0x3808d80,24, 0x3808e00,13, 0x3809000,10, 0x3809040,5, 0x3809080,10, 0x38090c0,5, 0x3809100,5, 0x3809200,11, 0x3809230,3, 0x3809240,5, 0x3809260,5, 0x3809280,32, 0x3809400,13, 0x3809440,13, 0x3809480,9, 0x38094c0,1, 0x38094d0,5, 0x38094f0,21, 0x3809800,10, 0x3809840,5, 0x3809880,10, 0x38098c0,5, 0x3809900,5, 0x3809a00,11, 0x3809a30,3, 0x3809a40,5, 0x3809a60,5, 0x3809a80,32, 0x3809c00,13, 0x3809c40,13, 0x3809c80,9, 0x3809cc0,1, 0x3809cd0,5, 0x3809cf0,21, 0x380a000,14, 0x380a040,9, 0x380a080,6, 0x380a0a0,1, 0x380a0a8,4, 0x380a100,7, 0x380a120,3, 0x380a130,25, 0x380c000,26, 0x380c06c,2, 0x380c080,3, 0x380c090,17, 0x380c100,26, 0x380c16c,2, 0x380c180,3, 0x380c190,17, 0x380c200,26, 0x380c26c,2, 0x380c280,3, 0x380c290,17, 0x380c300,26, 0x380c36c,2, 0x380c380,3, 0x380c390,17, 0x380c400,26, 0x380c46c,2, 0x380c480,3, 0x380c490,17, 0x380c500,26, 0x380c56c,2, 0x380c580,3, 0x380c590,17, 0x380c600,26, 0x380c66c,2, 0x380c680,3, 0x380c690,17, 0x380c700,26, 0x380c76c,2, 0x380c780,3, 0x380c790,17, 0x380c800,12, 0x380c844,1, 0x380c854,8, 0x380c880,7, 0x380c8a0,2, 0x380c8ac,2, 0x380c8c0,26, 0x380c980,4, 0x380c9a0,5, 0x380c9c0,1, 0x380d000,3, 0x380d010,3, 0x380d020,3, 0x380d030,3, 0x380d040,3, 0x380d050,3, 0x380d060,3, 0x380d070,3, 0x380d080,5, 0x380d0a0,5, 0x380d0c0,5, 0x380d0e0,5, 0x380d100,5, 0x380d120,5, 0x380d140,5, 0x380d160,5, 0x380d200,68, 0x380d400,1, 0x380d804,1, 0x380d844,54, 0x380da00,11, 0x380da40,11, 0x380da80,11, 0x380dac0,11, 0x380db00,11, 0x380db40,11, 0x380db80,11, 0x380dbc0,11, 0x380dc00,28, 0x380dc80,5, 0x380dca0,2, 0x380e000,4, 0x380e020,6, 0x380e040,6, 0x380e060,14, 0x380e100,26, 0x380e180,15, 0x380e200,14, 0x380e240,9, 0x380e280,6, 0x380e2a0,1, 0x380e2a8,4, 0x380e300,14, 0x380e340,9, 0x380e380,6, 0x380e3a0,4, 0x380e400,9, 0x3820000,1, 0x3821000,977, 0x3822000,161, 0x3823000,977, 0x3824000,977, 0x3825000,977, 0x3826000,977, 0x3827000,977, 0x3828000,977, 0x3829000,977, 0x382a000,977, 0x382b000,161, 0x382c000,12, 0x382c040,14, 0x382c080,20, 0x382c104,1, 0x382c10c,4, 0x382c200,12, 0x382c240,14, 0x382c280,20, 0x382c304,1, 0x382c30c,4, 0x382c400,12, 0x382c440,14, 0x382c480,20, 0x382c504,1, 0x382c50c,4, 0x382c600,12, 0x382c640,14, 0x382c680,20, 0x382c704,1, 0x382c70c,4, 0x382c800,12, 0x382c840,14, 0x382c880,20, 0x382c904,1, 0x382c90c,4, 0x382ca00,12, 0x382ca40,14, 0x382ca80,20, 0x382cb04,1, 0x382cb0c,4, 0x382cc00,12, 0x382cc40,14, 0x382cc80,20, 0x382cd04,1, 0x382cd0c,4, 0x382ce00,12, 0x382ce40,14, 0x382ce80,20, 0x382cf04,1, 0x382cf0c,4, 0x382d000,12, 0x382d040,14, 0x382d080,20, 0x382d104,1, 0x382d10c,4, 0x382d200,17, 0x382d250,2, 0x382d260,4, 0x382e000,1, 0x382e014,1, 0x382e01c,11, 0x382e060,9, 0x382e094,1, 0x382e09c,11, 0x382e0e0,15, 0x382e200,12, 0x382e240,13, 0x382e280,3, 0x382e290,1, 0x3880000,500, 0x3880800,2, 0x3880820,15, 0x3881000,500, 0x3881800,8, 0x3881824,6, 0x3881840,8, 0x3881880,7, 0x38818a0,7, 0x38818c0,7, 0x38818e0,7, 0x3881900,8, 0x3881924,16, 0x3881980,12, 0x3882000,500, 0x3882800,2, 0x3882820,15, 0x3883000,500, 0x3883800,8, 0x3883824,6, 0x3883840,8, 0x3883880,7, 0x38838a0,7, 0x38838c0,7, 0x38838e0,7, 0x3883900,8, 0x3883924,16, 0x3883980,12, 0x3884004,5, 0x3884200,26, 0x3884280,4, 0x38842c0,25, 0x3884340,6, 0x3884360,1, 0x3884368,2, 0x3884374,11, 0x38843a4,10, 0x3884400,1, 0x3888000,52, 0x3888400,82, 0x3888560,6, 0x3888600,41, 0x3888700,2, 0x3888720,19, 0x3888800,25, 0x3888880,1, 0x3888900,28, 0x3888980,1, 0x3889000,52, 0x3889400,82, 0x3889560,6, 0x3889600,41, 0x3889700,2, 0x3889720,19, 0x3889800,25, 0x3889880,1, 0x3889900,28, 0x3889980,1, 0x388a000,7, 0x388a080,6, 0x388a0a0,6, 0x388a0c0,1, 0x388a100,4, 0x388a120,9, 0x388c000,3, 0x388c010,6, 0x388c200,7, 0x388c220,6, 0x388c240,7, 0x388c260,6, 0x388c280,2, 0x388c28c,2, 0x388c2a0,2, 0x388c2ac,2, 0x388c2c0,7, 0x388c2e0,7, 0x388c300,2, 0x388c30c,2, 0x388c320,6, 0x388c400,3, 0x388c440,12, 0x388c800,7, 0x388c820,14, 0x388c880,16, 0x388c900,7, 0x388c920,14, 0x388c980,16, 0x388ca00,6, 0x388ca20,7, 0x388cc00,3, 0x38a0000,3, 0x38a0800,7, 0x38a0820,6, 0x38a0840,6, 0x38a0880,1, 0x38a0894,1, 0x38a089c,2, 0x38a08c0,9, 0x38a0900,18, 0x38a0a00,36, 0x38a0b00,22, 0x38a0b80,18, 0x38a0c00,3, 0x38a0c10,3, 0x38a1000,3, 0x38a1010,2, 0x38a1080,20, 0x38a1100,1, 0x38a1200,26, 0x38a1280,4, 0x38a12c0,25, 0x38a1340,6, 0x38a1360,1, 0x38a1368,2, 0x38a1374,11, 0x38a13a4,4, 0x38a1400,1, 0x38b0000,11, 0x38b0030,19, 0x38b0080,17, 0x38b0100,11, 0x38b0130,19, 0x38b0180,17, 0x38b0200,3, 0x38b0214,1, 0x38b021c,1, 0x38b0280,3, 0x38b0294,1, 0x38b029c,1, 0x38b0300,18, 0x38b0380,18, 0x38b0400,18, 0x38b0480,18, 0x38b0500,18, 0x38b0580,18, 0x38b0600,18, 0x38b0680,18, 0x38b0700,13, 0x38b0738,6, 0x38b0780,13, 0x38b07b8,6, 0x38b0800,1, 0x38b0808,22, 0x38b0880,1, 0x38b0894,13, 0x38b0900,3, 0x38b0910,3, 0x38b0920,3, 0x38b0940,3, 0x38b0954,1, 0x38b095c,1, 0x38b0a00,52, 0x38b0c00,4, 0x38b0d00,34, 0x38b0e00,4, 0x38b0e80,30, 0x38b0f00,1, 0x38b0f40,5, 0x38b0f60,5, 0x38b0f80,6, 0x38b1000,14, 0x38b1040,4, 0x38b1060,17, 0x38b10c0,6, 0x38b10e0,1, 0x38b10e8,2, 0x38b10f4,11, 0x38b1124,17, 0x38b1200,3, 0x38b1210,3, 0x38b1220,3, 0x38b1230,3, 0x38b1240,3, 0x38b1250,3, 0x38b2000,20, 0x38b2080,3, 0x38b2090,1, 0x38b2098,2, 0x38c0000,500, 0x38c0800,2, 0x38c0820,15, 0x38c1000,500, 0x38c1800,8, 0x38c1824,6, 0x38c1840,8, 0x38c1880,7, 0x38c18a0,7, 0x38c18c0,7, 0x38c18e0,7, 0x38c1900,8, 0x38c1924,16, 0x38c1980,12, 0x38c2000,500, 0x38c2800,2, 0x38c2820,15, 0x38c3000,500, 0x38c3800,8, 0x38c3824,6, 0x38c3840,8, 0x38c3880,7, 0x38c38a0,7, 0x38c38c0,7, 0x38c38e0,7, 0x38c3900,8, 0x38c3924,16, 0x38c3980,12, 0x38c4004,5, 0x38c4200,26, 0x38c4280,4, 0x38c42c0,25, 0x38c4340,6, 0x38c4360,1, 0x38c4368,2, 0x38c4374,11, 0x38c43a4,10, 0x38c4400,1, 0x38c8000,52, 0x38c8400,82, 0x38c8560,6, 0x38c8600,41, 0x38c8700,2, 0x38c8720,19, 0x38c8800,25, 0x38c8880,1, 0x38c8900,28, 0x38c8980,1, 0x38c9000,52, 0x38c9400,82, 0x38c9560,6, 0x38c9600,41, 0x38c9700,2, 0x38c9720,19, 0x38c9800,25, 0x38c9880,1, 0x38c9900,28, 0x38c9980,1, 0x38ca000,7, 0x38ca080,6, 0x38ca0a0,6, 0x38ca0c0,1, 0x38ca100,4, 0x38ca120,9, 0x38cc000,3, 0x38cc010,6, 0x38cc200,7, 0x38cc220,6, 0x38cc240,7, 0x38cc260,6, 0x38cc280,2, 0x38cc28c,2, 0x38cc2a0,2, 0x38cc2ac,2, 0x38cc2c0,7, 0x38cc2e0,7, 0x38cc300,2, 0x38cc30c,2, 0x38cc320,6, 0x38cc400,3, 0x38cc440,12, 0x38cc800,7, 0x38cc820,14, 0x38cc880,16, 0x38cc900,7, 0x38cc920,14, 0x38cc980,16, 0x38cca00,6, 0x38cca20,7, 0x38ccc00,3, 0x38e0000,3, 0x38e0800,7, 0x38e0820,6, 0x38e0840,6, 0x38e0880,1, 0x38e0894,1, 0x38e089c,2, 0x38e08c0,9, 0x38e0900,18, 0x38e0a00,36, 0x38e0b00,22, 0x38e0b80,18, 0x38e0c00,3, 0x38e0c10,3, 0x38e1000,3, 0x38e1010,2, 0x38e1080,20, 0x38e1100,1, 0x38e1200,26, 0x38e1280,4, 0x38e12c0,25, 0x38e1340,6, 0x38e1360,1, 0x38e1368,2, 0x38e1374,11, 0x38e13a4,4, 0x38e1400,1, 0x38f0000,11, 0x38f0030,19, 0x38f0080,17, 0x38f0100,11, 0x38f0130,19, 0x38f0180,17, 0x38f0200,3, 0x38f0214,1, 0x38f021c,1, 0x38f0280,3, 0x38f0294,1, 0x38f029c,1, 0x38f0300,18, 0x38f0380,18, 0x38f0400,18, 0x38f0480,18, 0x38f0500,18, 0x38f0580,18, 0x38f0600,18, 0x38f0680,18, 0x38f0700,13, 0x38f0738,6, 0x38f0780,13, 0x38f07b8,6, 0x38f0800,1, 0x38f0808,22, 0x38f0880,1, 0x38f0894,13, 0x38f0900,3, 0x38f0910,3, 0x38f0920,3, 0x38f0940,3, 0x38f0954,1, 0x38f095c,1, 0x38f0a00,52, 0x38f0c00,4, 0x38f0d00,34, 0x38f0e00,4, 0x38f0e80,30, 0x38f0f00,1, 0x38f0f40,5, 0x38f0f60,5, 0x38f0f80,6, 0x38f1000,14, 0x38f1040,4, 0x38f1060,17, 0x38f10c0,6, 0x38f10e0,1, 0x38f10e8,2, 0x38f10f4,11, 0x38f1124,17, 0x38f1200,3, 0x38f1210,3, 0x38f1220,3, 0x38f1230,3, 0x38f1240,3, 0x38f1250,3, 0x38f2000,20, 0x38f2080,3, 0x38f2090,1, 0x38f2098,2, 0x3900000,13, 0x3900038,4, 0x3900050,3, 0x3900060,3, 0x3900070,16, 0x39000c0,5, 0x3900400,14, 0x3900440,2, 0x390044c,3, 0x3900480,14, 0x39004c0,2, 0x39004cc,3, 0x3900500,1, 0x3900508,15, 0x3900560,2, 0x390056c,2, 0x3900600,4, 0x3900680,27, 0x3900800,2, 0x3900900,32, 0x3900984,2, 0x3900990,4, 0x3900a00,26, 0x3900a80,4, 0x3900ac0,25, 0x3900b40,6, 0x3900b60,1, 0x3900b68,2, 0x3900b74,11, 0x3900ba4,8, 0x3900c00,9, 0x3900c40,11, 0x3900c80,23, 0x3900ce0,15, 0x3900d20,15, 0x3900d60,1, 0x3901000,13, 0x3901038,4, 0x3901050,3, 0x3901060,3, 0x3901070,16, 0x39010c0,5, 0x3901400,14, 0x3901440,2, 0x390144c,3, 0x3901480,14, 0x39014c0,2, 0x39014cc,3, 0x3901500,1, 0x3901508,15, 0x3901560,2, 0x390156c,2, 0x3901600,4, 0x3901680,27, 0x3901800,2, 0x3901900,32, 0x3901984,2, 0x3901990,4, 0x3901a00,26, 0x3901a80,4, 0x3901ac0,25, 0x3901b40,6, 0x3901b60,1, 0x3901b68,2, 0x3901b74,11, 0x3901ba4,8, 0x3901c00,9, 0x3901c40,11, 0x3901c80,23, 0x3901ce0,15, 0x3901d20,15, 0x3901d60,1, 0x3902000,1, 0x3902100,36, 0x3902200,7, 0x3910000,22, 0x3910080,22, 0x3910100,12, 0x3910140,12, 0x3910200,52, 0x3910300,52, 0x3910400,11, 0x3910440,11, 0x3910480,3, 0x39104a0,6, 0x39104c0,6, 0x39104e0,3, 0x39104f0,3, 0x3910800,9, 0x3910840,15, 0x3910880,15, 0x39108c0,15, 0x3910900,1, 0x3910914,13, 0x3910980,17, 0x3911000,17, 0x3911080,17, 0x3911104,5, 0x3911120,3, 0x3911130,11, 0x3911200,31, 0x3911280,31, 0x3911300,12, 0x3911340,12, 0x3911380,2, 0x3911390,2, 0x39113a0,3, 0x39113b0,3, 0x39113c0,5, 0x39113e0,5, 0x3911400,3, 0x3911410,3, 0x3911420,3, 0x3911430,3, 0x3911440,3, 0x3911450,3, 0x3911460,7, 0x3911800,26, 0x3911880,4, 0x39118c0,25, 0x3911940,6, 0x3911960,1, 0x3911968,2, 0x3911974,11, 0x39119a4,12, 0x3911a00,4, 0x3911b00,43, 0x3911c00,4, 0x3911c20,7, 0x3911c40,3, 0x3911c50,1, 0x3911c60,3, 0x3911e00,32, 0x3911e84,1, 0x3911e90,4, 0x3911ea4,1, 0x3911eb4,14, 0x3911ef0,2, 0x3911f04,1, 0x3911f10,8, 0x3911f34,6, 0x3912000,3, 0x3912010,21, 0x3912080,1, 0x3912094,1, 0x391209c,5, 0x3912100,15, 0x3912140,1, 0x3912180,6, 0x3914000,22, 0x3914080,22, 0x3914100,12, 0x3914140,12, 0x3914200,52, 0x3914300,52, 0x3914400,11, 0x3914440,11, 0x3914480,3, 0x39144a0,6, 0x39144c0,6, 0x39144e0,3, 0x39144f0,3, 0x3914800,9, 0x3914840,15, 0x3914880,15, 0x39148c0,15, 0x3914900,1, 0x3914914,13, 0x3914980,17, 0x3915000,17, 0x3915080,17, 0x3915104,5, 0x3915120,3, 0x3915130,11, 0x3915200,31, 0x3915280,31, 0x3915300,12, 0x3915340,12, 0x3915380,2, 0x3915390,2, 0x39153a0,3, 0x39153b0,3, 0x39153c0,5, 0x39153e0,5, 0x3915400,3, 0x3915410,3, 0x3915420,3, 0x3915430,3, 0x3915440,3, 0x3915450,3, 0x3915460,7, 0x3915800,26, 0x3915880,4, 0x39158c0,25, 0x3915940,6, 0x3915960,1, 0x3915968,2, 0x3915974,11, 0x39159a4,12, 0x3915a00,4, 0x3915b00,43, 0x3915c00,4, 0x3915c20,7, 0x3915c40,3, 0x3915c50,1, 0x3915c60,3, 0x3915e00,32, 0x3915e84,1, 0x3915e90,4, 0x3915ea4,1, 0x3915eb4,14, 0x3915ef0,2, 0x3915f04,1, 0x3915f10,8, 0x3915f34,6, 0x3916000,3, 0x3916010,21, 0x3916080,1, 0x3916094,1, 0x391609c,5, 0x3916100,15, 0x3916140,1, 0x3916180,6, 0x3918000,100, 0x3918200,3, 0x3918210,5, 0x3920000,12, 0x3920040,2, 0x3920050,3, 0x3922000,1006, 0x3923000,31, 0x3923084,6, 0x3924004,1, 0x392400c,3, 0x3924200,23, 0x3924280,23, 0x3924300,1, 0x3924400,1, 0x3924800,122, 0x3924a00,122, 0x3924c04,63, 0x3924d04,1, 0x3924d10,5, 0x3924d40,6, 0x3924d60,5, 0x3926000,1, 0x3926100,1, 0x3926108,3, 0x3926120,2, 0x3926134,8, 0x3926160,2, 0x3926174,8, 0x39261a0,4, 0x3926200,54, 0x3926800,5, 0x3926820,2, 0x3926834,1, 0x392683c,1, 0x3926a00,24, 0x3926a80,24, 0x3926b00,1, 0x3926c00,6, 0x3926c24,5, 0x3926c40,16, 0x3927000,1, 0x3927020,5, 0x3927040,1, 0x3927048,2, 0x3927080,1, 0x3927100,4, 0x3927180,24, 0x3927200,4, 0x3927280,27, 0x3927300,2, 0x392730c,3, 0x3928004,1, 0x392800c,3, 0x3928020,1, 0x3928100,2, 0x3928110,3, 0x3928120,2, 0x3928140,10, 0x3928180,13, 0x3928200,2, 0x3928210,3, 0x3928220,2, 0x3928240,10, 0x3928280,13, 0x3928400,14, 0x3928440,3, 0x3928450,3, 0x3928460,1, 0x3928500,36, 0x3928600,10, 0x3928640,5, 0x3928660,5, 0x3928700,27, 0x3928780,7, 0x39287a0,8, 0x3928800,27, 0x3928880,7, 0x39288a0,8, 0x3928900,27, 0x3928980,7, 0x39289a0,8, 0x3928a00,27, 0x3928a80,7, 0x3928aa0,8, 0x3928b00,48, 0x3928bc4,8, 0x3928bf0,30, 0x3928c80,4, 0x3928cc0,25, 0x3928d40,6, 0x3928d60,1, 0x3928d68,2, 0x3928d74,3, 0x3928e00,8, 0x3928e24,28, 0x3929000,4, 0x3929080,23, 0x3929100,14, 0x3929140,9, 0x3929200,10, 0x3929230,3, 0x3929240,5, 0x3929260,5, 0x3929280,9, 0x3929400,67, 0x3929600,10, 0x3930000,12, 0x3930040,2, 0x3930050,3, 0x3932000,1006, 0x3933000,31, 0x3933084,6, 0x3934004,1, 0x393400c,3, 0x3934200,23, 0x3934280,23, 0x3934300,1, 0x3934400,1, 0x3934800,122, 0x3934a00,122, 0x3934c04,63, 0x3934d04,1, 0x3934d10,5, 0x3934d40,6, 0x3934d60,5, 0x3936000,1, 0x3936100,1, 0x3936108,3, 0x3936120,2, 0x3936134,8, 0x3936160,2, 0x3936174,8, 0x39361a0,4, 0x3936200,54, 0x3936800,5, 0x3936820,2, 0x3936834,1, 0x393683c,1, 0x3936a00,24, 0x3936a80,24, 0x3936b00,1, 0x3936c00,6, 0x3936c24,5, 0x3936c40,16, 0x3937000,1, 0x3937020,5, 0x3937040,1, 0x3937048,2, 0x3937080,1, 0x3937100,4, 0x3937180,24, 0x3937200,4, 0x3937280,27, 0x3937300,2, 0x393730c,3, 0x3938004,1, 0x393800c,3, 0x3938020,1, 0x3938100,2, 0x3938110,3, 0x3938120,2, 0x3938140,10, 0x3938180,13, 0x3938200,2, 0x3938210,3, 0x3938220,2, 0x3938240,10, 0x3938280,13, 0x3938400,14, 0x3938440,3, 0x3938450,3, 0x3938460,1, 0x3938500,36, 0x3938600,10, 0x3938640,5, 0x3938660,5, 0x3938700,27, 0x3938780,7, 0x39387a0,8, 0x3938800,27, 0x3938880,7, 0x39388a0,8, 0x3938900,27, 0x3938980,7, 0x39389a0,8, 0x3938a00,27, 0x3938a80,7, 0x3938aa0,8, 0x3938b00,48, 0x3938bc4,8, 0x3938bf0,30, 0x3938c80,4, 0x3938cc0,25, 0x3938d40,6, 0x3938d60,1, 0x3938d68,2, 0x3938d74,3, 0x3938e00,8, 0x3938e24,28, 0x3939000,4, 0x3939080,23, 0x3939100,14, 0x3939140,9, 0x3939200,10, 0x3939230,3, 0x3939240,5, 0x3939260,5, 0x3939280,9, 0x3939400,67, 0x3939600,10, 0x3a00000,1, 0x3a00020,3, 0x3a00030,2, 0x3a00040,3, 0x3a00050,2, 0x3a00800,53, 0x3a00900,3, 0x3a00910,13, 0x3a00a00,53, 0x3a00b00,3, 0x3a00b10,13, 0x3a00c00,5, 0x3a00c20,5, 0x3a00c40,18, 0x3a01000,6, 0x3a01020,4, 0x3a01040,16, 0x3a02000,20, 0x3a02080,15, 0x3a02100,20, 0x3a02180,15, 0x3a02200,23, 0x3a02260,7, 0x3a02400,11, 0x3a02430,3, 0x3a02440,3, 0x3a02450,3, 0x3a02460,24, 0x3a02500,11, 0x3a02530,3, 0x3a02540,3, 0x3a02550,3, 0x3a02560,24, 0x3a02600,11, 0x3a02630,3, 0x3a02640,3, 0x3a02650,3, 0x3a02660,24, 0x3a02700,11, 0x3a02730,3, 0x3a02740,3, 0x3a02750,3, 0x3a02760,24, 0x3a02800,4, 0x3a02820,16, 0x3a02880,10, 0x3a028c0,10, 0x3a02900,6, 0x3a02920,6, 0x3a02940,4, 0x3a02980,13, 0x3a029c0,13, 0x3a02a00,9, 0x3a03000,14, 0x3a03040,9, 0x3a03080,6, 0x3a030a0,1, 0x3a030a8,4, 0x3a03100,4, 0x3a03200,124, 0x3a03400,124, 0x3a03600,8, 0x3a03624,1, 0x3a03644,6, 0x3a03664,6, 0x3a03680,1, 0x3a03688,6, 0x3a036a8,22, 0x3a04000,1, 0x3a04020,3, 0x3a04030,2, 0x3a04040,3, 0x3a04050,2, 0x3a04800,53, 0x3a04900,3, 0x3a04910,13, 0x3a04a00,53, 0x3a04b00,3, 0x3a04b10,13, 0x3a04c00,5, 0x3a04c20,5, 0x3a04c40,18, 0x3a05000,6, 0x3a05020,4, 0x3a05040,16, 0x3a06000,20, 0x3a06080,15, 0x3a06100,20, 0x3a06180,15, 0x3a06200,23, 0x3a06260,7, 0x3a06400,11, 0x3a06430,3, 0x3a06440,3, 0x3a06450,3, 0x3a06460,24, 0x3a06500,11, 0x3a06530,3, 0x3a06540,3, 0x3a06550,3, 0x3a06560,24, 0x3a06600,11, 0x3a06630,3, 0x3a06640,3, 0x3a06650,3, 0x3a06660,24, 0x3a06700,11, 0x3a06730,3, 0x3a06740,3, 0x3a06750,3, 0x3a06760,24, 0x3a06800,4, 0x3a06820,16, 0x3a06880,10, 0x3a068c0,10, 0x3a06900,6, 0x3a06920,6, 0x3a06940,4, 0x3a06980,13, 0x3a069c0,13, 0x3a06a00,9, 0x3a07000,14, 0x3a07040,9, 0x3a07080,6, 0x3a070a0,1, 0x3a070a8,4, 0x3a07100,4, 0x3a07200,124, 0x3a07400,124, 0x3a07600,8, 0x3a07624,1, 0x3a07644,6, 0x3a07664,6, 0x3a07680,1, 0x3a07688,6, 0x3a076a8,22, 0x3a08000,84, 0x3a08180,20, 0x3a08200,5, 0x3a08400,11, 0x3a08440,11, 0x3a08480,19, 0x3a08500,19, 0x3a08580,24, 0x3a08600,13, 0x3a08800,84, 0x3a08980,20, 0x3a08a00,5, 0x3a08c00,11, 0x3a08c40,11, 0x3a08c80,19, 0x3a08d00,19, 0x3a08d80,24, 0x3a08e00,13, 0x3a09000,10, 0x3a09040,5, 0x3a09080,10, 0x3a090c0,5, 0x3a09100,5, 0x3a09200,11, 0x3a09230,3, 0x3a09240,5, 0x3a09260,5, 0x3a09280,32, 0x3a09400,13, 0x3a09440,13, 0x3a09480,9, 0x3a094c0,1, 0x3a094d0,5, 0x3a094f0,21, 0x3a09800,10, 0x3a09840,5, 0x3a09880,10, 0x3a098c0,5, 0x3a09900,5, 0x3a09a00,11, 0x3a09a30,3, 0x3a09a40,5, 0x3a09a60,5, 0x3a09a80,32, 0x3a09c00,13, 0x3a09c40,13, 0x3a09c80,9, 0x3a09cc0,1, 0x3a09cd0,5, 0x3a09cf0,21, 0x3a0a000,14, 0x3a0a040,9, 0x3a0a080,6, 0x3a0a0a0,1, 0x3a0a0a8,4, 0x3a0a100,7, 0x3a0a120,3, 0x3a0a130,25, 0x3a0c000,26, 0x3a0c06c,2, 0x3a0c080,3, 0x3a0c090,17, 0x3a0c100,26, 0x3a0c16c,2, 0x3a0c180,3, 0x3a0c190,17, 0x3a0c200,26, 0x3a0c26c,2, 0x3a0c280,3, 0x3a0c290,17, 0x3a0c300,26, 0x3a0c36c,2, 0x3a0c380,3, 0x3a0c390,17, 0x3a0c400,26, 0x3a0c46c,2, 0x3a0c480,3, 0x3a0c490,17, 0x3a0c500,26, 0x3a0c56c,2, 0x3a0c580,3, 0x3a0c590,17, 0x3a0c600,26, 0x3a0c66c,2, 0x3a0c680,3, 0x3a0c690,17, 0x3a0c700,26, 0x3a0c76c,2, 0x3a0c780,3, 0x3a0c790,17, 0x3a0c800,12, 0x3a0c844,1, 0x3a0c854,8, 0x3a0c880,7, 0x3a0c8a0,2, 0x3a0c8ac,2, 0x3a0c8c0,26, 0x3a0c980,4, 0x3a0c9a0,5, 0x3a0c9c0,1, 0x3a0d000,3, 0x3a0d010,3, 0x3a0d020,3, 0x3a0d030,3, 0x3a0d040,3, 0x3a0d050,3, 0x3a0d060,3, 0x3a0d070,3, 0x3a0d080,5, 0x3a0d0a0,5, 0x3a0d0c0,5, 0x3a0d0e0,5, 0x3a0d100,5, 0x3a0d120,5, 0x3a0d140,5, 0x3a0d160,5, 0x3a0d200,68, 0x3a0d400,1, 0x3a0d804,1, 0x3a0d844,54, 0x3a0da00,11, 0x3a0da40,11, 0x3a0da80,11, 0x3a0dac0,11, 0x3a0db00,11, 0x3a0db40,11, 0x3a0db80,11, 0x3a0dbc0,11, 0x3a0dc00,28, 0x3a0dc80,5, 0x3a0dca0,2, 0x3a0e000,4, 0x3a0e020,6, 0x3a0e040,6, 0x3a0e060,14, 0x3a0e100,26, 0x3a0e180,15, 0x3a0e200,14, 0x3a0e240,9, 0x3a0e280,6, 0x3a0e2a0,1, 0x3a0e2a8,4, 0x3a0e300,14, 0x3a0e340,9, 0x3a0e380,6, 0x3a0e3a0,4, 0x3a0e400,9, 0x3a20000,1, 0x3a21000,977, 0x3a22000,161, 0x3a23000,977, 0x3a24000,977, 0x3a25000,977, 0x3a26000,977, 0x3a27000,977, 0x3a28000,977, 0x3a29000,977, 0x3a2a000,977, 0x3a2b000,161, 0x3a2c000,12, 0x3a2c040,14, 0x3a2c080,20, 0x3a2c104,1, 0x3a2c10c,4, 0x3a2c200,12, 0x3a2c240,14, 0x3a2c280,20, 0x3a2c304,1, 0x3a2c30c,4, 0x3a2c400,12, 0x3a2c440,14, 0x3a2c480,20, 0x3a2c504,1, 0x3a2c50c,4, 0x3a2c600,12, 0x3a2c640,14, 0x3a2c680,20, 0x3a2c704,1, 0x3a2c70c,4, 0x3a2c800,12, 0x3a2c840,14, 0x3a2c880,20, 0x3a2c904,1, 0x3a2c90c,4, 0x3a2ca00,12, 0x3a2ca40,14, 0x3a2ca80,20, 0x3a2cb04,1, 0x3a2cb0c,4, 0x3a2cc00,12, 0x3a2cc40,14, 0x3a2cc80,20, 0x3a2cd04,1, 0x3a2cd0c,4, 0x3a2ce00,12, 0x3a2ce40,14, 0x3a2ce80,20, 0x3a2cf04,1, 0x3a2cf0c,4, 0x3a2d000,12, 0x3a2d040,14, 0x3a2d080,20, 0x3a2d104,1, 0x3a2d10c,4, 0x3a2d200,17, 0x3a2d250,2, 0x3a2d260,4, 0x3a2e000,1, 0x3a2e014,1, 0x3a2e01c,11, 0x3a2e060,9, 0x3a2e094,1, 0x3a2e09c,11, 0x3a2e0e0,15, 0x3a2e200,12, 0x3a2e240,13, 0x3a2e280,3, 0x3a2e290,1, 0x3a80000,500, 0x3a80800,2, 0x3a80820,15, 0x3a81000,500, 0x3a81800,8, 0x3a81824,6, 0x3a81840,8, 0x3a81880,7, 0x3a818a0,7, 0x3a818c0,7, 0x3a818e0,7, 0x3a81900,8, 0x3a81924,16, 0x3a81980,12, 0x3a82000,500, 0x3a82800,2, 0x3a82820,15, 0x3a83000,500, 0x3a83800,8, 0x3a83824,6, 0x3a83840,8, 0x3a83880,7, 0x3a838a0,7, 0x3a838c0,7, 0x3a838e0,7, 0x3a83900,8, 0x3a83924,16, 0x3a83980,12, 0x3a84004,5, 0x3a84200,26, 0x3a84280,4, 0x3a842c0,25, 0x3a84340,6, 0x3a84360,1, 0x3a84368,2, 0x3a84374,11, 0x3a843a4,10, 0x3a84400,1, 0x3a88000,52, 0x3a88400,82, 0x3a88560,6, 0x3a88600,41, 0x3a88700,2, 0x3a88720,19, 0x3a88800,25, 0x3a88880,1, 0x3a88900,28, 0x3a88980,1, 0x3a89000,52, 0x3a89400,82, 0x3a89560,6, 0x3a89600,41, 0x3a89700,2, 0x3a89720,19, 0x3a89800,25, 0x3a89880,1, 0x3a89900,28, 0x3a89980,1, 0x3a8a000,7, 0x3a8a080,6, 0x3a8a0a0,6, 0x3a8a0c0,1, 0x3a8a100,4, 0x3a8a120,9, 0x3a8c000,3, 0x3a8c010,6, 0x3a8c200,7, 0x3a8c220,6, 0x3a8c240,7, 0x3a8c260,6, 0x3a8c280,2, 0x3a8c28c,2, 0x3a8c2a0,2, 0x3a8c2ac,2, 0x3a8c2c0,7, 0x3a8c2e0,7, 0x3a8c300,2, 0x3a8c30c,2, 0x3a8c320,6, 0x3a8c400,3, 0x3a8c440,12, 0x3a8c800,7, 0x3a8c820,14, 0x3a8c880,16, 0x3a8c900,7, 0x3a8c920,14, 0x3a8c980,16, 0x3a8ca00,6, 0x3a8ca20,7, 0x3a8cc00,3, 0x3aa0000,3, 0x3aa0800,7, 0x3aa0820,6, 0x3aa0840,6, 0x3aa0880,1, 0x3aa0894,1, 0x3aa089c,2, 0x3aa08c0,9, 0x3aa0900,18, 0x3aa0a00,36, 0x3aa0b00,22, 0x3aa0b80,18, 0x3aa0c00,3, 0x3aa0c10,3, 0x3aa1000,3, 0x3aa1010,2, 0x3aa1080,20, 0x3aa1100,1, 0x3aa1200,26, 0x3aa1280,4, 0x3aa12c0,25, 0x3aa1340,6, 0x3aa1360,1, 0x3aa1368,2, 0x3aa1374,11, 0x3aa13a4,4, 0x3aa1400,1, 0x3ab0000,11, 0x3ab0030,19, 0x3ab0080,17, 0x3ab0100,11, 0x3ab0130,19, 0x3ab0180,17, 0x3ab0200,3, 0x3ab0214,1, 0x3ab021c,1, 0x3ab0280,3, 0x3ab0294,1, 0x3ab029c,1, 0x3ab0300,18, 0x3ab0380,18, 0x3ab0400,18, 0x3ab0480,18, 0x3ab0500,18, 0x3ab0580,18, 0x3ab0600,18, 0x3ab0680,18, 0x3ab0700,13, 0x3ab0738,6, 0x3ab0780,13, 0x3ab07b8,6, 0x3ab0800,1, 0x3ab0808,22, 0x3ab0880,1, 0x3ab0894,13, 0x3ab0900,3, 0x3ab0910,3, 0x3ab0920,3, 0x3ab0940,3, 0x3ab0954,1, 0x3ab095c,1, 0x3ab0a00,52, 0x3ab0c00,4, 0x3ab0d00,34, 0x3ab0e00,4, 0x3ab0e80,30, 0x3ab0f00,1, 0x3ab0f40,5, 0x3ab0f60,5, 0x3ab0f80,6, 0x3ab1000,14, 0x3ab1040,4, 0x3ab1060,17, 0x3ab10c0,6, 0x3ab10e0,1, 0x3ab10e8,2, 0x3ab10f4,11, 0x3ab1124,17, 0x3ab1200,3, 0x3ab1210,3, 0x3ab1220,3, 0x3ab1230,3, 0x3ab1240,3, 0x3ab1250,3, 0x3ab2000,20, 0x3ab2080,3, 0x3ab2090,1, 0x3ab2098,2, 0x3ac0000,500, 0x3ac0800,2, 0x3ac0820,15, 0x3ac1000,500, 0x3ac1800,8, 0x3ac1824,6, 0x3ac1840,8, 0x3ac1880,7, 0x3ac18a0,7, 0x3ac18c0,7, 0x3ac18e0,7, 0x3ac1900,8, 0x3ac1924,16, 0x3ac1980,12, 0x3ac2000,500, 0x3ac2800,2, 0x3ac2820,15, 0x3ac3000,500, 0x3ac3800,8, 0x3ac3824,6, 0x3ac3840,8, 0x3ac3880,7, 0x3ac38a0,7, 0x3ac38c0,7, 0x3ac38e0,7, 0x3ac3900,8, 0x3ac3924,16, 0x3ac3980,12, 0x3ac4004,5, 0x3ac4200,26, 0x3ac4280,4, 0x3ac42c0,25, 0x3ac4340,6, 0x3ac4360,1, 0x3ac4368,2, 0x3ac4374,11, 0x3ac43a4,10, 0x3ac4400,1, 0x3ac8000,52, 0x3ac8400,82, 0x3ac8560,6, 0x3ac8600,41, 0x3ac8700,2, 0x3ac8720,19, 0x3ac8800,25, 0x3ac8880,1, 0x3ac8900,28, 0x3ac8980,1, 0x3ac9000,52, 0x3ac9400,82, 0x3ac9560,6, 0x3ac9600,41, 0x3ac9700,2, 0x3ac9720,19, 0x3ac9800,25, 0x3ac9880,1, 0x3ac9900,28, 0x3ac9980,1, 0x3aca000,7, 0x3aca080,6, 0x3aca0a0,6, 0x3aca0c0,1, 0x3aca100,4, 0x3aca120,9, 0x3acc000,3, 0x3acc010,6, 0x3acc200,7, 0x3acc220,6, 0x3acc240,7, 0x3acc260,6, 0x3acc280,2, 0x3acc28c,2, 0x3acc2a0,2, 0x3acc2ac,2, 0x3acc2c0,7, 0x3acc2e0,7, 0x3acc300,2, 0x3acc30c,2, 0x3acc320,6, 0x3acc400,3, 0x3acc440,12, 0x3acc800,7, 0x3acc820,14, 0x3acc880,16, 0x3acc900,7, 0x3acc920,14, 0x3acc980,16, 0x3acca00,6, 0x3acca20,7, 0x3accc00,3, 0x3ae0000,3, 0x3ae0800,7, 0x3ae0820,6, 0x3ae0840,6, 0x3ae0880,1, 0x3ae0894,1, 0x3ae089c,2, 0x3ae08c0,9, 0x3ae0900,18, 0x3ae0a00,36, 0x3ae0b00,22, 0x3ae0b80,18, 0x3ae0c00,3, 0x3ae0c10,3, 0x3ae1000,3, 0x3ae1010,2, 0x3ae1080,20, 0x3ae1100,1, 0x3ae1200,26, 0x3ae1280,4, 0x3ae12c0,25, 0x3ae1340,6, 0x3ae1360,1, 0x3ae1368,2, 0x3ae1374,11, 0x3ae13a4,4, 0x3ae1400,1, 0x3af0000,11, 0x3af0030,19, 0x3af0080,17, 0x3af0100,11, 0x3af0130,19, 0x3af0180,17, 0x3af0200,3, 0x3af0214,1, 0x3af021c,1, 0x3af0280,3, 0x3af0294,1, 0x3af029c,1, 0x3af0300,18, 0x3af0380,18, 0x3af0400,18, 0x3af0480,18, 0x3af0500,18, 0x3af0580,18, 0x3af0600,18, 0x3af0680,18, 0x3af0700,13, 0x3af0738,6, 0x3af0780,13, 0x3af07b8,6, 0x3af0800,1, 0x3af0808,22, 0x3af0880,1, 0x3af0894,13, 0x3af0900,3, 0x3af0910,3, 0x3af0920,3, 0x3af0940,3, 0x3af0954,1, 0x3af095c,1, 0x3af0a00,52, 0x3af0c00,4, 0x3af0d00,34, 0x3af0e00,4, 0x3af0e80,30, 0x3af0f00,1, 0x3af0f40,5, 0x3af0f60,5, 0x3af0f80,6, 0x3af1000,14, 0x3af1040,4, 0x3af1060,17, 0x3af10c0,6, 0x3af10e0,1, 0x3af10e8,2, 0x3af10f4,11, 0x3af1124,17, 0x3af1200,3, 0x3af1210,3, 0x3af1220,3, 0x3af1230,3, 0x3af1240,3, 0x3af1250,3, 0x3af2000,20, 0x3af2080,3, 0x3af2090,1, 0x3af2098,2, 0x3b00000,13, 0x3b00038,4, 0x3b00050,3, 0x3b00060,3, 0x3b00070,16, 0x3b000c0,5, 0x3b00400,14, 0x3b00440,2, 0x3b0044c,3, 0x3b00480,14, 0x3b004c0,2, 0x3b004cc,3, 0x3b00500,1, 0x3b00508,15, 0x3b00560,2, 0x3b0056c,2, 0x3b00600,4, 0x3b00680,27, 0x3b00800,2, 0x3b00900,32, 0x3b00984,2, 0x3b00990,4, 0x3b00a00,26, 0x3b00a80,4, 0x3b00ac0,25, 0x3b00b40,6, 0x3b00b60,1, 0x3b00b68,2, 0x3b00b74,11, 0x3b00ba4,8, 0x3b00c00,9, 0x3b00c40,11, 0x3b00c80,23, 0x3b00ce0,15, 0x3b00d20,15, 0x3b00d60,1, 0x3b01000,13, 0x3b01038,4, 0x3b01050,3, 0x3b01060,3, 0x3b01070,16, 0x3b010c0,5, 0x3b01400,14, 0x3b01440,2, 0x3b0144c,3, 0x3b01480,14, 0x3b014c0,2, 0x3b014cc,3, 0x3b01500,1, 0x3b01508,15, 0x3b01560,2, 0x3b0156c,2, 0x3b01600,4, 0x3b01680,27, 0x3b01800,2, 0x3b01900,32, 0x3b01984,2, 0x3b01990,4, 0x3b01a00,26, 0x3b01a80,4, 0x3b01ac0,25, 0x3b01b40,6, 0x3b01b60,1, 0x3b01b68,2, 0x3b01b74,11, 0x3b01ba4,8, 0x3b01c00,9, 0x3b01c40,11, 0x3b01c80,23, 0x3b01ce0,15, 0x3b01d20,15, 0x3b01d60,1, 0x3b02000,1, 0x3b02100,36, 0x3b02200,7, 0x3b10000,22, 0x3b10080,22, 0x3b10100,12, 0x3b10140,12, 0x3b10200,52, 0x3b10300,52, 0x3b10400,11, 0x3b10440,11, 0x3b10480,3, 0x3b104a0,6, 0x3b104c0,6, 0x3b104e0,3, 0x3b104f0,3, 0x3b10800,9, 0x3b10840,15, 0x3b10880,15, 0x3b108c0,15, 0x3b10900,1, 0x3b10914,13, 0x3b10980,17, 0x3b11000,17, 0x3b11080,17, 0x3b11104,5, 0x3b11120,3, 0x3b11130,11, 0x3b11200,31, 0x3b11280,31, 0x3b11300,12, 0x3b11340,12, 0x3b11380,2, 0x3b11390,2, 0x3b113a0,3, 0x3b113b0,3, 0x3b113c0,5, 0x3b113e0,5, 0x3b11400,3, 0x3b11410,3, 0x3b11420,3, 0x3b11430,3, 0x3b11440,3, 0x3b11450,3, 0x3b11460,7, 0x3b11800,26, 0x3b11880,4, 0x3b118c0,25, 0x3b11940,6, 0x3b11960,1, 0x3b11968,2, 0x3b11974,11, 0x3b119a4,12, 0x3b11a00,4, 0x3b11b00,43, 0x3b11c00,4, 0x3b11c20,7, 0x3b11c40,3, 0x3b11c50,1, 0x3b11c60,3, 0x3b11e00,32, 0x3b11e84,1, 0x3b11e90,4, 0x3b11ea4,1, 0x3b11eb4,14, 0x3b11ef0,2, 0x3b11f04,1, 0x3b11f10,8, 0x3b11f34,6, 0x3b12000,3, 0x3b12010,21, 0x3b12080,1, 0x3b12094,1, 0x3b1209c,5, 0x3b12100,15, 0x3b12140,1, 0x3b12180,6, 0x3b14000,22, 0x3b14080,22, 0x3b14100,12, 0x3b14140,12, 0x3b14200,52, 0x3b14300,52, 0x3b14400,11, 0x3b14440,11, 0x3b14480,3, 0x3b144a0,6, 0x3b144c0,6, 0x3b144e0,3, 0x3b144f0,3, 0x3b14800,9, 0x3b14840,15, 0x3b14880,15, 0x3b148c0,15, 0x3b14900,1, 0x3b14914,13, 0x3b14980,17, 0x3b15000,17, 0x3b15080,17, 0x3b15104,5, 0x3b15120,3, 0x3b15130,11, 0x3b15200,31, 0x3b15280,31, 0x3b15300,12, 0x3b15340,12, 0x3b15380,2, 0x3b15390,2, 0x3b153a0,3, 0x3b153b0,3, 0x3b153c0,5, 0x3b153e0,5, 0x3b15400,3, 0x3b15410,3, 0x3b15420,3, 0x3b15430,3, 0x3b15440,3, 0x3b15450,3, 0x3b15460,7, 0x3b15800,26, 0x3b15880,4, 0x3b158c0,25, 0x3b15940,6, 0x3b15960,1, 0x3b15968,2, 0x3b15974,11, 0x3b159a4,12, 0x3b15a00,4, 0x3b15b00,43, 0x3b15c00,4, 0x3b15c20,7, 0x3b15c40,3, 0x3b15c50,1, 0x3b15c60,3, 0x3b15e00,32, 0x3b15e84,1, 0x3b15e90,4, 0x3b15ea4,1, 0x3b15eb4,14, 0x3b15ef0,2, 0x3b15f04,1, 0x3b15f10,8, 0x3b15f34,6, 0x3b16000,3, 0x3b16010,21, 0x3b16080,1, 0x3b16094,1, 0x3b1609c,5, 0x3b16100,15, 0x3b16140,1, 0x3b16180,6, 0x3b18000,100, 0x3b18200,3, 0x3b18210,5, 0x3b20000,12, 0x3b20040,2, 0x3b20050,3, 0x3b22000,1006, 0x3b23000,31, 0x3b23084,6, 0x3b24004,1, 0x3b2400c,3, 0x3b24200,23, 0x3b24280,23, 0x3b24300,1, 0x3b24400,1, 0x3b24800,122, 0x3b24a00,122, 0x3b24c04,63, 0x3b24d04,1, 0x3b24d10,5, 0x3b24d40,6, 0x3b24d60,5, 0x3b26000,1, 0x3b26100,1, 0x3b26108,3, 0x3b26120,2, 0x3b26134,8, 0x3b26160,2, 0x3b26174,8, 0x3b261a0,4, 0x3b26200,54, 0x3b26800,5, 0x3b26820,2, 0x3b26834,1, 0x3b2683c,1, 0x3b26a00,24, 0x3b26a80,24, 0x3b26b00,1, 0x3b26c00,6, 0x3b26c24,5, 0x3b26c40,16, 0x3b27000,1, 0x3b27020,5, 0x3b27040,1, 0x3b27048,2, 0x3b27080,1, 0x3b27100,4, 0x3b27180,24, 0x3b27200,4, 0x3b27280,27, 0x3b27300,2, 0x3b2730c,3, 0x3b28004,1, 0x3b2800c,3, 0x3b28020,1, 0x3b28100,2, 0x3b28110,3, 0x3b28120,2, 0x3b28140,10, 0x3b28180,13, 0x3b28200,2, 0x3b28210,3, 0x3b28220,2, 0x3b28240,10, 0x3b28280,13, 0x3b28400,14, 0x3b28440,3, 0x3b28450,3, 0x3b28460,1, 0x3b28500,36, 0x3b28600,10, 0x3b28640,5, 0x3b28660,5, 0x3b28700,27, 0x3b28780,7, 0x3b287a0,8, 0x3b28800,27, 0x3b28880,7, 0x3b288a0,8, 0x3b28900,27, 0x3b28980,7, 0x3b289a0,8, 0x3b28a00,27, 0x3b28a80,7, 0x3b28aa0,8, 0x3b28b00,48, 0x3b28bc4,8, 0x3b28bf0,30, 0x3b28c80,4, 0x3b28cc0,25, 0x3b28d40,6, 0x3b28d60,1, 0x3b28d68,2, 0x3b28d74,3, 0x3b28e00,8, 0x3b28e24,28, 0x3b29000,4, 0x3b29080,23, 0x3b29100,14, 0x3b29140,9, 0x3b29200,10, 0x3b29230,3, 0x3b29240,5, 0x3b29260,5, 0x3b29280,9, 0x3b29400,67, 0x3b29600,10, 0x3b30000,12, 0x3b30040,2, 0x3b30050,3, 0x3b32000,1006, 0x3b33000,31, 0x3b33084,6, 0x3b34004,1, 0x3b3400c,3, 0x3b34200,23, 0x3b34280,23, 0x3b34300,1, 0x3b34400,1, 0x3b34800,122, 0x3b34a00,122, 0x3b34c04,63, 0x3b34d04,1, 0x3b34d10,5, 0x3b34d40,6, 0x3b34d60,5, 0x3b36000,1, 0x3b36100,1, 0x3b36108,3, 0x3b36120,2, 0x3b36134,8, 0x3b36160,2, 0x3b36174,8, 0x3b361a0,4, 0x3b36200,54, 0x3b36800,5, 0x3b36820,2, 0x3b36834,1, 0x3b3683c,1, 0x3b36a00,24, 0x3b36a80,24, 0x3b36b00,1, 0x3b36c00,6, 0x3b36c24,5, 0x3b36c40,16, 0x3b37000,1, 0x3b37020,5, 0x3b37040,1, 0x3b37048,2, 0x3b37080,1, 0x3b37100,4, 0x3b37180,24, 0x3b37200,4, 0x3b37280,27, 0x3b37300,2, 0x3b3730c,3, 0x3b38004,1, 0x3b3800c,3, 0x3b38020,1, 0x3b38100,2, 0x3b38110,3, 0x3b38120,2, 0x3b38140,10, 0x3b38180,13, 0x3b38200,2, 0x3b38210,3, 0x3b38220,2, 0x3b38240,10, 0x3b38280,13, 0x3b38400,14, 0x3b38440,3, 0x3b38450,3, 0x3b38460,1, 0x3b38500,36, 0x3b38600,10, 0x3b38640,5, 0x3b38660,5, 0x3b38700,27, 0x3b38780,7, 0x3b387a0,8, 0x3b38800,27, 0x3b38880,7, 0x3b388a0,8, 0x3b38900,27, 0x3b38980,7, 0x3b389a0,8, 0x3b38a00,27, 0x3b38a80,7, 0x3b38aa0,8, 0x3b38b00,48, 0x3b38bc4,8, 0x3b38bf0,30, 0x3b38c80,4, 0x3b38cc0,25, 0x3b38d40,6, 0x3b38d60,1, 0x3b38d68,2, 0x3b38d74,3, 0x3b38e00,8, 0x3b38e24,28, 0x3b39000,4, 0x3b39080,23, 0x3b39100,14, 0x3b39140,9, 0x3b39200,10, 0x3b39230,3, 0x3b39240,5, 0x3b39260,5, 0x3b39280,9, 0x3b39400,67, 0x3b39600,10, 0x3c00000,1, 0x3c00020,3, 0x3c00030,2, 0x3c00040,3, 0x3c00050,2, 0x3c00800,53, 0x3c00900,3, 0x3c00910,13, 0x3c00a00,53, 0x3c00b00,3, 0x3c00b10,13, 0x3c00c00,5, 0x3c00c20,5, 0x3c00c40,18, 0x3c01000,6, 0x3c01020,4, 0x3c01040,16, 0x3c02000,20, 0x3c02080,15, 0x3c02100,20, 0x3c02180,15, 0x3c02200,23, 0x3c02260,7, 0x3c02400,11, 0x3c02430,3, 0x3c02440,3, 0x3c02450,3, 0x3c02460,24, 0x3c02500,11, 0x3c02530,3, 0x3c02540,3, 0x3c02550,3, 0x3c02560,24, 0x3c02600,11, 0x3c02630,3, 0x3c02640,3, 0x3c02650,3, 0x3c02660,24, 0x3c02700,11, 0x3c02730,3, 0x3c02740,3, 0x3c02750,3, 0x3c02760,24, 0x3c02800,4, 0x3c02820,16, 0x3c02880,10, 0x3c028c0,10, 0x3c02900,6, 0x3c02920,6, 0x3c02940,4, 0x3c02980,13, 0x3c029c0,13, 0x3c02a00,9, 0x3c03000,14, 0x3c03040,9, 0x3c03080,6, 0x3c030a0,1, 0x3c030a8,4, 0x3c03100,4, 0x3c03200,124, 0x3c03400,124, 0x3c03600,8, 0x3c03624,1, 0x3c03644,6, 0x3c03664,6, 0x3c03680,1, 0x3c03688,6, 0x3c036a8,22, 0x3c04000,1, 0x3c04020,3, 0x3c04030,2, 0x3c04040,3, 0x3c04050,2, 0x3c04800,53, 0x3c04900,3, 0x3c04910,13, 0x3c04a00,53, 0x3c04b00,3, 0x3c04b10,13, 0x3c04c00,5, 0x3c04c20,5, 0x3c04c40,18, 0x3c05000,6, 0x3c05020,4, 0x3c05040,16, 0x3c06000,20, 0x3c06080,15, 0x3c06100,20, 0x3c06180,15, 0x3c06200,23, 0x3c06260,7, 0x3c06400,11, 0x3c06430,3, 0x3c06440,3, 0x3c06450,3, 0x3c06460,24, 0x3c06500,11, 0x3c06530,3, 0x3c06540,3, 0x3c06550,3, 0x3c06560,24, 0x3c06600,11, 0x3c06630,3, 0x3c06640,3, 0x3c06650,3, 0x3c06660,24, 0x3c06700,11, 0x3c06730,3, 0x3c06740,3, 0x3c06750,3, 0x3c06760,24, 0x3c06800,4, 0x3c06820,16, 0x3c06880,10, 0x3c068c0,10, 0x3c06900,6, 0x3c06920,6, 0x3c06940,4, 0x3c06980,13, 0x3c069c0,13, 0x3c06a00,9, 0x3c07000,14, 0x3c07040,9, 0x3c07080,6, 0x3c070a0,1, 0x3c070a8,4, 0x3c07100,4, 0x3c07200,124, 0x3c07400,124, 0x3c07600,8, 0x3c07624,1, 0x3c07644,6, 0x3c07664,6, 0x3c07680,1, 0x3c07688,6, 0x3c076a8,22, 0x3c08000,84, 0x3c08180,20, 0x3c08200,5, 0x3c08400,11, 0x3c08440,11, 0x3c08480,19, 0x3c08500,19, 0x3c08580,24, 0x3c08600,13, 0x3c08800,84, 0x3c08980,20, 0x3c08a00,5, 0x3c08c00,11, 0x3c08c40,11, 0x3c08c80,19, 0x3c08d00,19, 0x3c08d80,24, 0x3c08e00,13, 0x3c09000,10, 0x3c09040,5, 0x3c09080,10, 0x3c090c0,5, 0x3c09100,5, 0x3c09200,11, 0x3c09230,3, 0x3c09240,5, 0x3c09260,5, 0x3c09280,32, 0x3c09400,13, 0x3c09440,13, 0x3c09480,9, 0x3c094c0,1, 0x3c094d0,5, 0x3c094f0,21, 0x3c09800,10, 0x3c09840,5, 0x3c09880,10, 0x3c098c0,5, 0x3c09900,5, 0x3c09a00,11, 0x3c09a30,3, 0x3c09a40,5, 0x3c09a60,5, 0x3c09a80,32, 0x3c09c00,13, 0x3c09c40,13, 0x3c09c80,9, 0x3c09cc0,1, 0x3c09cd0,5, 0x3c09cf0,21, 0x3c0a000,14, 0x3c0a040,9, 0x3c0a080,6, 0x3c0a0a0,1, 0x3c0a0a8,4, 0x3c0a100,7, 0x3c0a120,3, 0x3c0a130,25, 0x3c0c000,26, 0x3c0c06c,2, 0x3c0c080,3, 0x3c0c090,17, 0x3c0c100,26, 0x3c0c16c,2, 0x3c0c180,3, 0x3c0c190,17, 0x3c0c200,26, 0x3c0c26c,2, 0x3c0c280,3, 0x3c0c290,17, 0x3c0c300,26, 0x3c0c36c,2, 0x3c0c380,3, 0x3c0c390,17, 0x3c0c400,26, 0x3c0c46c,2, 0x3c0c480,3, 0x3c0c490,17, 0x3c0c500,26, 0x3c0c56c,2, 0x3c0c580,3, 0x3c0c590,17, 0x3c0c600,26, 0x3c0c66c,2, 0x3c0c680,3, 0x3c0c690,17, 0x3c0c700,26, 0x3c0c76c,2, 0x3c0c780,3, 0x3c0c790,17, 0x3c0c800,12, 0x3c0c844,1, 0x3c0c854,8, 0x3c0c880,7, 0x3c0c8a0,2, 0x3c0c8ac,2, 0x3c0c8c0,26, 0x3c0c980,4, 0x3c0c9a0,5, 0x3c0c9c0,1, 0x3c0d000,3, 0x3c0d010,3, 0x3c0d020,3, 0x3c0d030,3, 0x3c0d040,3, 0x3c0d050,3, 0x3c0d060,3, 0x3c0d070,3, 0x3c0d080,5, 0x3c0d0a0,5, 0x3c0d0c0,5, 0x3c0d0e0,5, 0x3c0d100,5, 0x3c0d120,5, 0x3c0d140,5, 0x3c0d160,5, 0x3c0d200,68, 0x3c0d400,1, 0x3c0d804,1, 0x3c0d844,54, 0x3c0da00,11, 0x3c0da40,11, 0x3c0da80,11, 0x3c0dac0,11, 0x3c0db00,11, 0x3c0db40,11, 0x3c0db80,11, 0x3c0dbc0,11, 0x3c0dc00,28, 0x3c0dc80,5, 0x3c0dca0,2, 0x3c0e000,4, 0x3c0e020,6, 0x3c0e040,6, 0x3c0e060,14, 0x3c0e100,26, 0x3c0e180,15, 0x3c0e200,14, 0x3c0e240,9, 0x3c0e280,6, 0x3c0e2a0,1, 0x3c0e2a8,4, 0x3c0e300,14, 0x3c0e340,9, 0x3c0e380,6, 0x3c0e3a0,4, 0x3c0e400,9, 0x3c20000,1, 0x3c21000,977, 0x3c22000,161, 0x3c23000,977, 0x3c24000,977, 0x3c25000,977, 0x3c26000,977, 0x3c27000,977, 0x3c28000,977, 0x3c29000,977, 0x3c2a000,977, 0x3c2b000,161, 0x3c2c000,12, 0x3c2c040,14, 0x3c2c080,20, 0x3c2c104,1, 0x3c2c10c,4, 0x3c2c200,12, 0x3c2c240,14, 0x3c2c280,20, 0x3c2c304,1, 0x3c2c30c,4, 0x3c2c400,12, 0x3c2c440,14, 0x3c2c480,20, 0x3c2c504,1, 0x3c2c50c,4, 0x3c2c600,12, 0x3c2c640,14, 0x3c2c680,20, 0x3c2c704,1, 0x3c2c70c,4, 0x3c2c800,12, 0x3c2c840,14, 0x3c2c880,20, 0x3c2c904,1, 0x3c2c90c,4, 0x3c2ca00,12, 0x3c2ca40,14, 0x3c2ca80,20, 0x3c2cb04,1, 0x3c2cb0c,4, 0x3c2cc00,12, 0x3c2cc40,14, 0x3c2cc80,20, 0x3c2cd04,1, 0x3c2cd0c,4, 0x3c2ce00,12, 0x3c2ce40,14, 0x3c2ce80,20, 0x3c2cf04,1, 0x3c2cf0c,4, 0x3c2d000,12, 0x3c2d040,14, 0x3c2d080,20, 0x3c2d104,1, 0x3c2d10c,4, 0x3c2d200,17, 0x3c2d250,2, 0x3c2d260,4, 0x3c2e000,1, 0x3c2e014,1, 0x3c2e01c,11, 0x3c2e060,9, 0x3c2e094,1, 0x3c2e09c,11, 0x3c2e0e0,15, 0x3c2e200,12, 0x3c2e240,13, 0x3c2e280,3, 0x3c2e290,1, 0x3c80000,500, 0x3c80800,2, 0x3c80820,15, 0x3c81000,500, 0x3c81800,8, 0x3c81824,6, 0x3c81840,8, 0x3c81880,7, 0x3c818a0,7, 0x3c818c0,7, 0x3c818e0,7, 0x3c81900,8, 0x3c81924,16, 0x3c81980,12, 0x3c82000,500, 0x3c82800,2, 0x3c82820,15, 0x3c83000,500, 0x3c83800,8, 0x3c83824,6, 0x3c83840,8, 0x3c83880,7, 0x3c838a0,7, 0x3c838c0,7, 0x3c838e0,7, 0x3c83900,8, 0x3c83924,16, 0x3c83980,12, 0x3c84004,5, 0x3c84200,26, 0x3c84280,4, 0x3c842c0,25, 0x3c84340,6, 0x3c84360,1, 0x3c84368,2, 0x3c84374,11, 0x3c843a4,10, 0x3c84400,1, 0x3c88000,52, 0x3c88400,82, 0x3c88560,6, 0x3c88600,41, 0x3c88700,2, 0x3c88720,19, 0x3c88800,25, 0x3c88880,1, 0x3c88900,28, 0x3c88980,1, 0x3c89000,52, 0x3c89400,82, 0x3c89560,6, 0x3c89600,41, 0x3c89700,2, 0x3c89720,19, 0x3c89800,25, 0x3c89880,1, 0x3c89900,28, 0x3c89980,1, 0x3c8a000,7, 0x3c8a080,6, 0x3c8a0a0,6, 0x3c8a0c0,1, 0x3c8a100,4, 0x3c8a120,9, 0x3c8c000,3, 0x3c8c010,6, 0x3c8c200,7, 0x3c8c220,6, 0x3c8c240,7, 0x3c8c260,6, 0x3c8c280,2, 0x3c8c28c,2, 0x3c8c2a0,2, 0x3c8c2ac,2, 0x3c8c2c0,7, 0x3c8c2e0,7, 0x3c8c300,2, 0x3c8c30c,2, 0x3c8c320,6, 0x3c8c400,3, 0x3c8c440,12, 0x3c8c800,7, 0x3c8c820,14, 0x3c8c880,16, 0x3c8c900,7, 0x3c8c920,14, 0x3c8c980,16, 0x3c8ca00,6, 0x3c8ca20,7, 0x3c8cc00,3, 0x3ca0000,3, 0x3ca0800,7, 0x3ca0820,6, 0x3ca0840,6, 0x3ca0880,1, 0x3ca0894,1, 0x3ca089c,2, 0x3ca08c0,9, 0x3ca0900,18, 0x3ca0a00,36, 0x3ca0b00,22, 0x3ca0b80,18, 0x3ca0c00,3, 0x3ca0c10,3, 0x3ca1000,3, 0x3ca1010,2, 0x3ca1080,20, 0x3ca1100,1, 0x3ca1200,26, 0x3ca1280,4, 0x3ca12c0,25, 0x3ca1340,6, 0x3ca1360,1, 0x3ca1368,2, 0x3ca1374,11, 0x3ca13a4,4, 0x3ca1400,1, 0x3cb0000,11, 0x3cb0030,19, 0x3cb0080,17, 0x3cb0100,11, 0x3cb0130,19, 0x3cb0180,17, 0x3cb0200,3, 0x3cb0214,1, 0x3cb021c,1, 0x3cb0280,3, 0x3cb0294,1, 0x3cb029c,1, 0x3cb0300,18, 0x3cb0380,18, 0x3cb0400,18, 0x3cb0480,18, 0x3cb0500,18, 0x3cb0580,18, 0x3cb0600,18, 0x3cb0680,18, 0x3cb0700,13, 0x3cb0738,6, 0x3cb0780,13, 0x3cb07b8,6, 0x3cb0800,1, 0x3cb0808,22, 0x3cb0880,1, 0x3cb0894,13, 0x3cb0900,3, 0x3cb0910,3, 0x3cb0920,3, 0x3cb0940,3, 0x3cb0954,1, 0x3cb095c,1, 0x3cb0a00,52, 0x3cb0c00,4, 0x3cb0d00,34, 0x3cb0e00,4, 0x3cb0e80,30, 0x3cb0f00,1, 0x3cb0f40,5, 0x3cb0f60,5, 0x3cb0f80,6, 0x3cb1000,14, 0x3cb1040,4, 0x3cb1060,17, 0x3cb10c0,6, 0x3cb10e0,1, 0x3cb10e8,2, 0x3cb10f4,11, 0x3cb1124,17, 0x3cb1200,3, 0x3cb1210,3, 0x3cb1220,3, 0x3cb1230,3, 0x3cb1240,3, 0x3cb1250,3, 0x3cb2000,20, 0x3cb2080,3, 0x3cb2090,1, 0x3cb2098,2, 0x3cc0000,500, 0x3cc0800,2, 0x3cc0820,15, 0x3cc1000,500, 0x3cc1800,8, 0x3cc1824,6, 0x3cc1840,8, 0x3cc1880,7, 0x3cc18a0,7, 0x3cc18c0,7, 0x3cc18e0,7, 0x3cc1900,8, 0x3cc1924,16, 0x3cc1980,12, 0x3cc2000,500, 0x3cc2800,2, 0x3cc2820,15, 0x3cc3000,500, 0x3cc3800,8, 0x3cc3824,6, 0x3cc3840,8, 0x3cc3880,7, 0x3cc38a0,7, 0x3cc38c0,7, 0x3cc38e0,7, 0x3cc3900,8, 0x3cc3924,16, 0x3cc3980,12, 0x3cc4004,5, 0x3cc4200,26, 0x3cc4280,4, 0x3cc42c0,25, 0x3cc4340,6, 0x3cc4360,1, 0x3cc4368,2, 0x3cc4374,11, 0x3cc43a4,10, 0x3cc4400,1, 0x3cc8000,52, 0x3cc8400,82, 0x3cc8560,6, 0x3cc8600,41, 0x3cc8700,2, 0x3cc8720,19, 0x3cc8800,25, 0x3cc8880,1, 0x3cc8900,28, 0x3cc8980,1, 0x3cc9000,52, 0x3cc9400,82, 0x3cc9560,6, 0x3cc9600,41, 0x3cc9700,2, 0x3cc9720,19, 0x3cc9800,25, 0x3cc9880,1, 0x3cc9900,28, 0x3cc9980,1, 0x3cca000,7, 0x3cca080,6, 0x3cca0a0,6, 0x3cca0c0,1, 0x3cca100,4, 0x3cca120,9, 0x3ccc000,3, 0x3ccc010,6, 0x3ccc200,7, 0x3ccc220,6, 0x3ccc240,7, 0x3ccc260,6, 0x3ccc280,2, 0x3ccc28c,2, 0x3ccc2a0,2, 0x3ccc2ac,2, 0x3ccc2c0,7, 0x3ccc2e0,7, 0x3ccc300,2, 0x3ccc30c,2, 0x3ccc320,6, 0x3ccc400,3, 0x3ccc440,12, 0x3ccc800,7, 0x3ccc820,14, 0x3ccc880,16, 0x3ccc900,7, 0x3ccc920,14, 0x3ccc980,16, 0x3ccca00,6, 0x3ccca20,7, 0x3cccc00,3, 0x3ce0000,3, 0x3ce0800,7, 0x3ce0820,6, 0x3ce0840,6, 0x3ce0880,1, 0x3ce0894,1, 0x3ce089c,2, 0x3ce08c0,9, 0x3ce0900,18, 0x3ce0a00,36, 0x3ce0b00,22, 0x3ce0b80,18, 0x3ce0c00,3, 0x3ce0c10,3, 0x3ce1000,3, 0x3ce1010,2, 0x3ce1080,20, 0x3ce1100,1, 0x3ce1200,26, 0x3ce1280,4, 0x3ce12c0,25, 0x3ce1340,6, 0x3ce1360,1, 0x3ce1368,2, 0x3ce1374,11, 0x3ce13a4,4, 0x3ce1400,1, 0x3cf0000,11, 0x3cf0030,19, 0x3cf0080,17, 0x3cf0100,11, 0x3cf0130,19, 0x3cf0180,17, 0x3cf0200,3, 0x3cf0214,1, 0x3cf021c,1, 0x3cf0280,3, 0x3cf0294,1, 0x3cf029c,1, 0x3cf0300,18, 0x3cf0380,18, 0x3cf0400,18, 0x3cf0480,18, 0x3cf0500,18, 0x3cf0580,18, 0x3cf0600,18, 0x3cf0680,18, 0x3cf0700,13, 0x3cf0738,6, 0x3cf0780,13, 0x3cf07b8,6, 0x3cf0800,1, 0x3cf0808,22, 0x3cf0880,1, 0x3cf0894,13, 0x3cf0900,3, 0x3cf0910,3, 0x3cf0920,3, 0x3cf0940,3, 0x3cf0954,1, 0x3cf095c,1, 0x3cf0a00,52, 0x3cf0c00,4, 0x3cf0d00,34, 0x3cf0e00,4, 0x3cf0e80,30, 0x3cf0f00,1, 0x3cf0f40,5, 0x3cf0f60,5, 0x3cf0f80,6, 0x3cf1000,14, 0x3cf1040,4, 0x3cf1060,17, 0x3cf10c0,6, 0x3cf10e0,1, 0x3cf10e8,2, 0x3cf10f4,11, 0x3cf1124,17, 0x3cf1200,3, 0x3cf1210,3, 0x3cf1220,3, 0x3cf1230,3, 0x3cf1240,3, 0x3cf1250,3, 0x3cf2000,20, 0x3cf2080,3, 0x3cf2090,1, 0x3cf2098,2, 0x3d00000,13, 0x3d00038,4, 0x3d00050,3, 0x3d00060,3, 0x3d00070,16, 0x3d000c0,5, 0x3d00400,14, 0x3d00440,2, 0x3d0044c,3, 0x3d00480,14, 0x3d004c0,2, 0x3d004cc,3, 0x3d00500,1, 0x3d00508,15, 0x3d00560,2, 0x3d0056c,2, 0x3d00600,4, 0x3d00680,27, 0x3d00800,2, 0x3d00900,32, 0x3d00984,2, 0x3d00990,4, 0x3d00a00,26, 0x3d00a80,4, 0x3d00ac0,25, 0x3d00b40,6, 0x3d00b60,1, 0x3d00b68,2, 0x3d00b74,11, 0x3d00ba4,8, 0x3d00c00,9, 0x3d00c40,11, 0x3d00c80,23, 0x3d00ce0,15, 0x3d00d20,15, 0x3d00d60,1, 0x3d01000,13, 0x3d01038,4, 0x3d01050,3, 0x3d01060,3, 0x3d01070,16, 0x3d010c0,5, 0x3d01400,14, 0x3d01440,2, 0x3d0144c,3, 0x3d01480,14, 0x3d014c0,2, 0x3d014cc,3, 0x3d01500,1, 0x3d01508,15, 0x3d01560,2, 0x3d0156c,2, 0x3d01600,4, 0x3d01680,27, 0x3d01800,2, 0x3d01900,32, 0x3d01984,2, 0x3d01990,4, 0x3d01a00,26, 0x3d01a80,4, 0x3d01ac0,25, 0x3d01b40,6, 0x3d01b60,1, 0x3d01b68,2, 0x3d01b74,11, 0x3d01ba4,8, 0x3d01c00,9, 0x3d01c40,11, 0x3d01c80,23, 0x3d01ce0,15, 0x3d01d20,15, 0x3d01d60,1, 0x3d02000,1, 0x3d02100,36, 0x3d02200,7, 0x3d10000,22, 0x3d10080,22, 0x3d10100,12, 0x3d10140,12, 0x3d10200,52, 0x3d10300,52, 0x3d10400,11, 0x3d10440,11, 0x3d10480,3, 0x3d104a0,6, 0x3d104c0,6, 0x3d104e0,3, 0x3d104f0,3, 0x3d10800,9, 0x3d10840,15, 0x3d10880,15, 0x3d108c0,15, 0x3d10900,1, 0x3d10914,13, 0x3d10980,17, 0x3d11000,17, 0x3d11080,17, 0x3d11104,5, 0x3d11120,3, 0x3d11130,11, 0x3d11200,31, 0x3d11280,31, 0x3d11300,12, 0x3d11340,12, 0x3d11380,2, 0x3d11390,2, 0x3d113a0,3, 0x3d113b0,3, 0x3d113c0,5, 0x3d113e0,5, 0x3d11400,3, 0x3d11410,3, 0x3d11420,3, 0x3d11430,3, 0x3d11440,3, 0x3d11450,3, 0x3d11460,7, 0x3d11800,26, 0x3d11880,4, 0x3d118c0,25, 0x3d11940,6, 0x3d11960,1, 0x3d11968,2, 0x3d11974,11, 0x3d119a4,12, 0x3d11a00,4, 0x3d11b00,43, 0x3d11c00,4, 0x3d11c20,7, 0x3d11c40,3, 0x3d11c50,1, 0x3d11c60,3, 0x3d11e00,32, 0x3d11e84,1, 0x3d11e90,4, 0x3d11ea4,1, 0x3d11eb4,14, 0x3d11ef0,2, 0x3d11f04,1, 0x3d11f10,8, 0x3d11f34,6, 0x3d12000,3, 0x3d12010,21, 0x3d12080,1, 0x3d12094,1, 0x3d1209c,5, 0x3d12100,15, 0x3d12140,1, 0x3d12180,6, 0x3d14000,22, 0x3d14080,22, 0x3d14100,12, 0x3d14140,12, 0x3d14200,52, 0x3d14300,52, 0x3d14400,11, 0x3d14440,11, 0x3d14480,3, 0x3d144a0,6, 0x3d144c0,6, 0x3d144e0,3, 0x3d144f0,3, 0x3d14800,9, 0x3d14840,15, 0x3d14880,15, 0x3d148c0,15, 0x3d14900,1, 0x3d14914,13, 0x3d14980,17, 0x3d15000,17, 0x3d15080,17, 0x3d15104,5, 0x3d15120,3, 0x3d15130,11, 0x3d15200,31, 0x3d15280,31, 0x3d15300,12, 0x3d15340,12, 0x3d15380,2, 0x3d15390,2, 0x3d153a0,3, 0x3d153b0,3, 0x3d153c0,5, 0x3d153e0,5, 0x3d15400,3, 0x3d15410,3, 0x3d15420,3, 0x3d15430,3, 0x3d15440,3, 0x3d15450,3, 0x3d15460,7, 0x3d15800,26, 0x3d15880,4, 0x3d158c0,25, 0x3d15940,6, 0x3d15960,1, 0x3d15968,2, 0x3d15974,11, 0x3d159a4,12, 0x3d15a00,4, 0x3d15b00,43, 0x3d15c00,4, 0x3d15c20,7, 0x3d15c40,3, 0x3d15c50,1, 0x3d15c60,3, 0x3d15e00,32, 0x3d15e84,1, 0x3d15e90,4, 0x3d15ea4,1, 0x3d15eb4,14, 0x3d15ef0,2, 0x3d15f04,1, 0x3d15f10,8, 0x3d15f34,6, 0x3d16000,3, 0x3d16010,21, 0x3d16080,1, 0x3d16094,1, 0x3d1609c,5, 0x3d16100,15, 0x3d16140,1, 0x3d16180,6, 0x3d18000,100, 0x3d18200,3, 0x3d18210,5, 0x3d20000,12, 0x3d20040,2, 0x3d20050,3, 0x3d22000,1006, 0x3d23000,31, 0x3d23084,6, 0x3d24004,1, 0x3d2400c,3, 0x3d24200,23, 0x3d24280,23, 0x3d24300,1, 0x3d24400,1, 0x3d24800,122, 0x3d24a00,122, 0x3d24c04,63, 0x3d24d04,1, 0x3d24d10,5, 0x3d24d40,6, 0x3d24d60,5, 0x3d26000,1, 0x3d26100,1, 0x3d26108,3, 0x3d26120,2, 0x3d26134,8, 0x3d26160,2, 0x3d26174,8, 0x3d261a0,4, 0x3d26200,54, 0x3d26800,5, 0x3d26820,2, 0x3d26834,1, 0x3d2683c,1, 0x3d26a00,24, 0x3d26a80,24, 0x3d26b00,1, 0x3d26c00,6, 0x3d26c24,5, 0x3d26c40,16, 0x3d27000,1, 0x3d27020,5, 0x3d27040,1, 0x3d27048,2, 0x3d27080,1, 0x3d27100,4, 0x3d27180,24, 0x3d27200,4, 0x3d27280,27, 0x3d27300,2, 0x3d2730c,3, 0x3d28004,1, 0x3d2800c,3, 0x3d28020,1, 0x3d28100,2, 0x3d28110,3, 0x3d28120,2, 0x3d28140,10, 0x3d28180,13, 0x3d28200,2, 0x3d28210,3, 0x3d28220,2, 0x3d28240,10, 0x3d28280,13, 0x3d28400,14, 0x3d28440,3, 0x3d28450,3, 0x3d28460,1, 0x3d28500,36, 0x3d28600,10, 0x3d28640,5, 0x3d28660,5, 0x3d28700,27, 0x3d28780,7, 0x3d287a0,8, 0x3d28800,27, 0x3d28880,7, 0x3d288a0,8, 0x3d28900,27, 0x3d28980,7, 0x3d289a0,8, 0x3d28a00,27, 0x3d28a80,7, 0x3d28aa0,8, 0x3d28b00,48, 0x3d28bc4,8, 0x3d28bf0,30, 0x3d28c80,4, 0x3d28cc0,25, 0x3d28d40,6, 0x3d28d60,1, 0x3d28d68,2, 0x3d28d74,3, 0x3d28e00,8, 0x3d28e24,28, 0x3d29000,4, 0x3d29080,23, 0x3d29100,14, 0x3d29140,9, 0x3d29200,10, 0x3d29230,3, 0x3d29240,5, 0x3d29260,5, 0x3d29280,9, 0x3d29400,67, 0x3d29600,10, 0x3d30000,12, 0x3d30040,2, 0x3d30050,3, 0x3d32000,1006, 0x3d33000,31, 0x3d33084,6, 0x3d34004,1, 0x3d3400c,3, 0x3d34200,23, 0x3d34280,23, 0x3d34300,1, 0x3d34400,1, 0x3d34800,122, 0x3d34a00,122, 0x3d34c04,63, 0x3d34d04,1, 0x3d34d10,5, 0x3d34d40,6, 0x3d34d60,5, 0x3d36000,1, 0x3d36100,1, 0x3d36108,3, 0x3d36120,2, 0x3d36134,8, 0x3d36160,2, 0x3d36174,8, 0x3d361a0,4, 0x3d36200,54, 0x3d36800,5, 0x3d36820,2, 0x3d36834,1, 0x3d3683c,1, 0x3d36a00,24, 0x3d36a80,24, 0x3d36b00,1, 0x3d36c00,6, 0x3d36c24,5, 0x3d36c40,16, 0x3d37000,1, 0x3d37020,5, 0x3d37040,1, 0x3d37048,2, 0x3d37080,1, 0x3d37100,4, 0x3d37180,24, 0x3d37200,4, 0x3d37280,27, 0x3d37300,2, 0x3d3730c,3, 0x3d38004,1, 0x3d3800c,3, 0x3d38020,1, 0x3d38100,2, 0x3d38110,3, 0x3d38120,2, 0x3d38140,10, 0x3d38180,13, 0x3d38200,2, 0x3d38210,3, 0x3d38220,2, 0x3d38240,10, 0x3d38280,13, 0x3d38400,14, 0x3d38440,3, 0x3d38450,3, 0x3d38460,1, 0x3d38500,36, 0x3d38600,10, 0x3d38640,5, 0x3d38660,5, 0x3d38700,27, 0x3d38780,7, 0x3d387a0,8, 0x3d38800,27, 0x3d38880,7, 0x3d388a0,8, 0x3d38900,27, 0x3d38980,7, 0x3d389a0,8, 0x3d38a00,27, 0x3d38a80,7, 0x3d38aa0,8, 0x3d38b00,48, 0x3d38bc4,8, 0x3d38bf0,30, 0x3d38c80,4, 0x3d38cc0,25, 0x3d38d40,6, 0x3d38d60,1, 0x3d38d68,2, 0x3d38d74,3, 0x3d38e00,8, 0x3d38e24,28, 0x3d39000,4, 0x3d39080,23, 0x3d39100,14, 0x3d39140,9, 0x3d39200,10, 0x3d39230,3, 0x3d39240,5, 0x3d39260,5, 0x3d39280,9, 0x3d39400,67, 0x3d39600,10, 0x3e00000,1, 0x3e00020,3, 0x3e00030,2, 0x3e00040,3, 0x3e00050,2, 0x3e00800,53, 0x3e00900,3, 0x3e00910,13, 0x3e00a00,53, 0x3e00b00,3, 0x3e00b10,13, 0x3e00c00,5, 0x3e00c20,5, 0x3e00c40,18, 0x3e01000,6, 0x3e01020,4, 0x3e01040,16, 0x3e02000,20, 0x3e02080,15, 0x3e02100,20, 0x3e02180,15, 0x3e02200,23, 0x3e02260,7, 0x3e02400,11, 0x3e02430,3, 0x3e02440,3, 0x3e02450,3, 0x3e02460,24, 0x3e02500,11, 0x3e02530,3, 0x3e02540,3, 0x3e02550,3, 0x3e02560,24, 0x3e02600,11, 0x3e02630,3, 0x3e02640,3, 0x3e02650,3, 0x3e02660,24, 0x3e02700,11, 0x3e02730,3, 0x3e02740,3, 0x3e02750,3, 0x3e02760,24, 0x3e02800,4, 0x3e02820,16, 0x3e02880,10, 0x3e028c0,10, 0x3e02900,6, 0x3e02920,6, 0x3e02940,4, 0x3e02980,13, 0x3e029c0,13, 0x3e02a00,9, 0x3e03000,14, 0x3e03040,9, 0x3e03080,6, 0x3e030a0,1, 0x3e030a8,4, 0x3e03100,4, 0x3e03200,124, 0x3e03400,124, 0x3e03600,8, 0x3e03624,1, 0x3e03644,6, 0x3e03664,6, 0x3e03680,1, 0x3e03688,6, 0x3e036a8,22, 0x3e04000,1, 0x3e04020,3, 0x3e04030,2, 0x3e04040,3, 0x3e04050,2, 0x3e04800,53, 0x3e04900,3, 0x3e04910,13, 0x3e04a00,53, 0x3e04b00,3, 0x3e04b10,13, 0x3e04c00,5, 0x3e04c20,5, 0x3e04c40,18, 0x3e05000,6, 0x3e05020,4, 0x3e05040,16, 0x3e06000,20, 0x3e06080,15, 0x3e06100,20, 0x3e06180,15, 0x3e06200,23, 0x3e06260,7, 0x3e06400,11, 0x3e06430,3, 0x3e06440,3, 0x3e06450,3, 0x3e06460,24, 0x3e06500,11, 0x3e06530,3, 0x3e06540,3, 0x3e06550,3, 0x3e06560,24, 0x3e06600,11, 0x3e06630,3, 0x3e06640,3, 0x3e06650,3, 0x3e06660,24, 0x3e06700,11, 0x3e06730,3, 0x3e06740,3, 0x3e06750,3, 0x3e06760,24, 0x3e06800,4, 0x3e06820,16, 0x3e06880,10, 0x3e068c0,10, 0x3e06900,6, 0x3e06920,6, 0x3e06940,4, 0x3e06980,13, 0x3e069c0,13, 0x3e06a00,9, 0x3e07000,14, 0x3e07040,9, 0x3e07080,6, 0x3e070a0,1, 0x3e070a8,4, 0x3e07100,4, 0x3e07200,124, 0x3e07400,124, 0x3e07600,8, 0x3e07624,1, 0x3e07644,6, 0x3e07664,6, 0x3e07680,1, 0x3e07688,6, 0x3e076a8,22, 0x3e08000,84, 0x3e08180,20, 0x3e08200,5, 0x3e08400,11, 0x3e08440,11, 0x3e08480,19, 0x3e08500,19, 0x3e08580,24, 0x3e08600,13, 0x3e08800,84, 0x3e08980,20, 0x3e08a00,5, 0x3e08c00,11, 0x3e08c40,11, 0x3e08c80,19, 0x3e08d00,19, 0x3e08d80,24, 0x3e08e00,13, 0x3e09000,10, 0x3e09040,5, 0x3e09080,10, 0x3e090c0,5, 0x3e09100,5, 0x3e09200,11, 0x3e09230,3, 0x3e09240,5, 0x3e09260,5, 0x3e09280,32, 0x3e09400,13, 0x3e09440,13, 0x3e09480,9, 0x3e094c0,1, 0x3e094d0,5, 0x3e094f0,21, 0x3e09800,10, 0x3e09840,5, 0x3e09880,10, 0x3e098c0,5, 0x3e09900,5, 0x3e09a00,11, 0x3e09a30,3, 0x3e09a40,5, 0x3e09a60,5, 0x3e09a80,32, 0x3e09c00,13, 0x3e09c40,13, 0x3e09c80,9, 0x3e09cc0,1, 0x3e09cd0,5, 0x3e09cf0,21, 0x3e0a000,14, 0x3e0a040,9, 0x3e0a080,6, 0x3e0a0a0,1, 0x3e0a0a8,4, 0x3e0a100,7, 0x3e0a120,3, 0x3e0a130,25, 0x3e0c000,26, 0x3e0c06c,2, 0x3e0c080,3, 0x3e0c090,17, 0x3e0c100,26, 0x3e0c16c,2, 0x3e0c180,3, 0x3e0c190,17, 0x3e0c200,26, 0x3e0c26c,2, 0x3e0c280,3, 0x3e0c290,17, 0x3e0c300,26, 0x3e0c36c,2, 0x3e0c380,3, 0x3e0c390,17, 0x3e0c400,26, 0x3e0c46c,2, 0x3e0c480,3, 0x3e0c490,17, 0x3e0c500,26, 0x3e0c56c,2, 0x3e0c580,3, 0x3e0c590,17, 0x3e0c600,26, 0x3e0c66c,2, 0x3e0c680,3, 0x3e0c690,17, 0x3e0c700,26, 0x3e0c76c,2, 0x3e0c780,3, 0x3e0c790,17, 0x3e0c800,12, 0x3e0c844,1, 0x3e0c854,8, 0x3e0c880,7, 0x3e0c8a0,2, 0x3e0c8ac,2, 0x3e0c8c0,26, 0x3e0c980,4, 0x3e0c9a0,5, 0x3e0c9c0,1, 0x3e0d000,3, 0x3e0d010,3, 0x3e0d020,3, 0x3e0d030,3, 0x3e0d040,3, 0x3e0d050,3, 0x3e0d060,3, 0x3e0d070,3, 0x3e0d080,5, 0x3e0d0a0,5, 0x3e0d0c0,5, 0x3e0d0e0,5, 0x3e0d100,5, 0x3e0d120,5, 0x3e0d140,5, 0x3e0d160,5, 0x3e0d200,68, 0x3e0d400,1, 0x3e0d804,1, 0x3e0d844,54, 0x3e0da00,11, 0x3e0da40,11, 0x3e0da80,11, 0x3e0dac0,11, 0x3e0db00,11, 0x3e0db40,11, 0x3e0db80,11, 0x3e0dbc0,11, 0x3e0dc00,28, 0x3e0dc80,5, 0x3e0dca0,2, 0x3e0e000,4, 0x3e0e020,6, 0x3e0e040,6, 0x3e0e060,14, 0x3e0e100,26, 0x3e0e180,15, 0x3e0e200,14, 0x3e0e240,9, 0x3e0e280,6, 0x3e0e2a0,1, 0x3e0e2a8,4, 0x3e0e300,14, 0x3e0e340,9, 0x3e0e380,6, 0x3e0e3a0,4, 0x3e0e400,9, 0x3e20000,1, 0x3e21000,977, 0x3e22000,161, 0x3e23000,977, 0x3e24000,977, 0x3e25000,977, 0x3e26000,977, 0x3e27000,977, 0x3e28000,977, 0x3e29000,977, 0x3e2a000,977, 0x3e2b000,161, 0x3e2c000,12, 0x3e2c040,14, 0x3e2c080,20, 0x3e2c104,1, 0x3e2c10c,4, 0x3e2c200,12, 0x3e2c240,14, 0x3e2c280,20, 0x3e2c304,1, 0x3e2c30c,4, 0x3e2c400,12, 0x3e2c440,14, 0x3e2c480,20, 0x3e2c504,1, 0x3e2c50c,4, 0x3e2c600,12, 0x3e2c640,14, 0x3e2c680,20, 0x3e2c704,1, 0x3e2c70c,4, 0x3e2c800,12, 0x3e2c840,14, 0x3e2c880,20, 0x3e2c904,1, 0x3e2c90c,4, 0x3e2ca00,12, 0x3e2ca40,14, 0x3e2ca80,20, 0x3e2cb04,1, 0x3e2cb0c,4, 0x3e2cc00,12, 0x3e2cc40,14, 0x3e2cc80,20, 0x3e2cd04,1, 0x3e2cd0c,4, 0x3e2ce00,12, 0x3e2ce40,14, 0x3e2ce80,20, 0x3e2cf04,1, 0x3e2cf0c,4, 0x3e2d000,12, 0x3e2d040,14, 0x3e2d080,20, 0x3e2d104,1, 0x3e2d10c,4, 0x3e2d200,17, 0x3e2d250,2, 0x3e2d260,4, 0x3e2e000,1, 0x3e2e014,1, 0x3e2e01c,11, 0x3e2e060,9, 0x3e2e094,1, 0x3e2e09c,11, 0x3e2e0e0,15, 0x3e2e200,12, 0x3e2e240,13, 0x3e2e280,3, 0x3e2e290,1, 0x3e80000,500, 0x3e80800,2, 0x3e80820,15, 0x3e81000,500, 0x3e81800,8, 0x3e81824,6, 0x3e81840,8, 0x3e81880,7, 0x3e818a0,7, 0x3e818c0,7, 0x3e818e0,7, 0x3e81900,8, 0x3e81924,16, 0x3e81980,12, 0x3e82000,500, 0x3e82800,2, 0x3e82820,15, 0x3e83000,500, 0x3e83800,8, 0x3e83824,6, 0x3e83840,8, 0x3e83880,7, 0x3e838a0,7, 0x3e838c0,7, 0x3e838e0,7, 0x3e83900,8, 0x3e83924,16, 0x3e83980,12, 0x3e84004,5, 0x3e84200,26, 0x3e84280,4, 0x3e842c0,25, 0x3e84340,6, 0x3e84360,1, 0x3e84368,2, 0x3e84374,11, 0x3e843a4,10, 0x3e84400,1, 0x3e88000,52, 0x3e88400,82, 0x3e88560,6, 0x3e88600,41, 0x3e88700,2, 0x3e88720,19, 0x3e88800,25, 0x3e88880,1, 0x3e88900,28, 0x3e88980,1, 0x3e89000,52, 0x3e89400,82, 0x3e89560,6, 0x3e89600,41, 0x3e89700,2, 0x3e89720,19, 0x3e89800,25, 0x3e89880,1, 0x3e89900,28, 0x3e89980,1, 0x3e8a000,7, 0x3e8a080,6, 0x3e8a0a0,6, 0x3e8a0c0,1, 0x3e8a100,4, 0x3e8a120,9, 0x3e8c000,3, 0x3e8c010,6, 0x3e8c200,7, 0x3e8c220,6, 0x3e8c240,7, 0x3e8c260,6, 0x3e8c280,2, 0x3e8c28c,2, 0x3e8c2a0,2, 0x3e8c2ac,2, 0x3e8c2c0,7, 0x3e8c2e0,7, 0x3e8c300,2, 0x3e8c30c,2, 0x3e8c320,6, 0x3e8c400,3, 0x3e8c440,12, 0x3e8c800,7, 0x3e8c820,14, 0x3e8c880,16, 0x3e8c900,7, 0x3e8c920,14, 0x3e8c980,16, 0x3e8ca00,6, 0x3e8ca20,7, 0x3e8cc00,3, 0x3ea0000,3, 0x3ea0800,7, 0x3ea0820,6, 0x3ea0840,6, 0x3ea0880,1, 0x3ea0894,1, 0x3ea089c,2, 0x3ea08c0,9, 0x3ea0900,18, 0x3ea0a00,36, 0x3ea0b00,22, 0x3ea0b80,18, 0x3ea0c00,3, 0x3ea0c10,3, 0x3ea1000,3, 0x3ea1010,2, 0x3ea1080,20, 0x3ea1100,1, 0x3ea1200,26, 0x3ea1280,4, 0x3ea12c0,25, 0x3ea1340,6, 0x3ea1360,1, 0x3ea1368,2, 0x3ea1374,11, 0x3ea13a4,4, 0x3ea1400,1, 0x3eb0000,11, 0x3eb0030,19, 0x3eb0080,17, 0x3eb0100,11, 0x3eb0130,19, 0x3eb0180,17, 0x3eb0200,3, 0x3eb0214,1, 0x3eb021c,1, 0x3eb0280,3, 0x3eb0294,1, 0x3eb029c,1, 0x3eb0300,18, 0x3eb0380,18, 0x3eb0400,18, 0x3eb0480,18, 0x3eb0500,18, 0x3eb0580,18, 0x3eb0600,18, 0x3eb0680,18, 0x3eb0700,13, 0x3eb0738,6, 0x3eb0780,13, 0x3eb07b8,6, 0x3eb0800,1, 0x3eb0808,22, 0x3eb0880,1, 0x3eb0894,13, 0x3eb0900,3, 0x3eb0910,3, 0x3eb0920,3, 0x3eb0940,3, 0x3eb0954,1, 0x3eb095c,1, 0x3eb0a00,52, 0x3eb0c00,4, 0x3eb0d00,34, 0x3eb0e00,4, 0x3eb0e80,30, 0x3eb0f00,1, 0x3eb0f40,5, 0x3eb0f60,5, 0x3eb0f80,6, 0x3eb1000,14, 0x3eb1040,4, 0x3eb1060,17, 0x3eb10c0,6, 0x3eb10e0,1, 0x3eb10e8,2, 0x3eb10f4,11, 0x3eb1124,17, 0x3eb1200,3, 0x3eb1210,3, 0x3eb1220,3, 0x3eb1230,3, 0x3eb1240,3, 0x3eb1250,3, 0x3eb2000,20, 0x3eb2080,3, 0x3eb2090,1, 0x3eb2098,2, 0x3ec0000,500, 0x3ec0800,2, 0x3ec0820,15, 0x3ec1000,500, 0x3ec1800,8, 0x3ec1824,6, 0x3ec1840,8, 0x3ec1880,7, 0x3ec18a0,7, 0x3ec18c0,7, 0x3ec18e0,7, 0x3ec1900,8, 0x3ec1924,16, 0x3ec1980,12, 0x3ec2000,500, 0x3ec2800,2, 0x3ec2820,15, 0x3ec3000,500, 0x3ec3800,8, 0x3ec3824,6, 0x3ec3840,8, 0x3ec3880,7, 0x3ec38a0,7, 0x3ec38c0,7, 0x3ec38e0,7, 0x3ec3900,8, 0x3ec3924,16, 0x3ec3980,12, 0x3ec4004,5, 0x3ec4200,26, 0x3ec4280,4, 0x3ec42c0,25, 0x3ec4340,6, 0x3ec4360,1, 0x3ec4368,2, 0x3ec4374,11, 0x3ec43a4,10, 0x3ec4400,1, 0x3ec8000,52, 0x3ec8400,82, 0x3ec8560,6, 0x3ec8600,41, 0x3ec8700,2, 0x3ec8720,19, 0x3ec8800,25, 0x3ec8880,1, 0x3ec8900,28, 0x3ec8980,1, 0x3ec9000,52, 0x3ec9400,82, 0x3ec9560,6, 0x3ec9600,41, 0x3ec9700,2, 0x3ec9720,19, 0x3ec9800,25, 0x3ec9880,1, 0x3ec9900,28, 0x3ec9980,1, 0x3eca000,7, 0x3eca080,6, 0x3eca0a0,6, 0x3eca0c0,1, 0x3eca100,4, 0x3eca120,9, 0x3ecc000,3, 0x3ecc010,6, 0x3ecc200,7, 0x3ecc220,6, 0x3ecc240,7, 0x3ecc260,6, 0x3ecc280,2, 0x3ecc28c,2, 0x3ecc2a0,2, 0x3ecc2ac,2, 0x3ecc2c0,7, 0x3ecc2e0,7, 0x3ecc300,2, 0x3ecc30c,2, 0x3ecc320,6, 0x3ecc400,3, 0x3ecc440,12, 0x3ecc800,7, 0x3ecc820,14, 0x3ecc880,16, 0x3ecc900,7, 0x3ecc920,14, 0x3ecc980,16, 0x3ecca00,6, 0x3ecca20,7, 0x3eccc00,3, 0x3ee0000,3, 0x3ee0800,7, 0x3ee0820,6, 0x3ee0840,6, 0x3ee0880,1, 0x3ee0894,1, 0x3ee089c,2, 0x3ee08c0,9, 0x3ee0900,18, 0x3ee0a00,36, 0x3ee0b00,22, 0x3ee0b80,18, 0x3ee0c00,3, 0x3ee0c10,3, 0x3ee1000,3, 0x3ee1010,2, 0x3ee1080,20, 0x3ee1100,1, 0x3ee1200,26, 0x3ee1280,4, 0x3ee12c0,25, 0x3ee1340,6, 0x3ee1360,1, 0x3ee1368,2, 0x3ee1374,11, 0x3ee13a4,4, 0x3ee1400,1, 0x3ef0000,11, 0x3ef0030,19, 0x3ef0080,17, 0x3ef0100,11, 0x3ef0130,19, 0x3ef0180,17, 0x3ef0200,3, 0x3ef0214,1, 0x3ef021c,1, 0x3ef0280,3, 0x3ef0294,1, 0x3ef029c,1, 0x3ef0300,18, 0x3ef0380,18, 0x3ef0400,18, 0x3ef0480,18, 0x3ef0500,18, 0x3ef0580,18, 0x3ef0600,18, 0x3ef0680,18, 0x3ef0700,13, 0x3ef0738,6, 0x3ef0780,13, 0x3ef07b8,6, 0x3ef0800,1, 0x3ef0808,22, 0x3ef0880,1, 0x3ef0894,13, 0x3ef0900,3, 0x3ef0910,3, 0x3ef0920,3, 0x3ef0940,3, 0x3ef0954,1, 0x3ef095c,1, 0x3ef0a00,52, 0x3ef0c00,4, 0x3ef0d00,34, 0x3ef0e00,4, 0x3ef0e80,30, 0x3ef0f00,1, 0x3ef0f40,5, 0x3ef0f60,5, 0x3ef0f80,6, 0x3ef1000,14, 0x3ef1040,4, 0x3ef1060,17, 0x3ef10c0,6, 0x3ef10e0,1, 0x3ef10e8,2, 0x3ef10f4,11, 0x3ef1124,17, 0x3ef1200,3, 0x3ef1210,3, 0x3ef1220,3, 0x3ef1230,3, 0x3ef1240,3, 0x3ef1250,3, 0x3ef2000,20, 0x3ef2080,3, 0x3ef2090,1, 0x3ef2098,2, 0x3f00000,13, 0x3f00038,4, 0x3f00050,3, 0x3f00060,3, 0x3f00070,16, 0x3f000c0,5, 0x3f00400,14, 0x3f00440,2, 0x3f0044c,3, 0x3f00480,14, 0x3f004c0,2, 0x3f004cc,3, 0x3f00500,1, 0x3f00508,15, 0x3f00560,2, 0x3f0056c,2, 0x3f00600,4, 0x3f00680,27, 0x3f00800,2, 0x3f00900,32, 0x3f00984,2, 0x3f00990,4, 0x3f00a00,26, 0x3f00a80,4, 0x3f00ac0,25, 0x3f00b40,6, 0x3f00b60,1, 0x3f00b68,2, 0x3f00b74,11, 0x3f00ba4,8, 0x3f00c00,9, 0x3f00c40,11, 0x3f00c80,23, 0x3f00ce0,15, 0x3f00d20,15, 0x3f00d60,1, 0x3f01000,13, 0x3f01038,4, 0x3f01050,3, 0x3f01060,3, 0x3f01070,16, 0x3f010c0,5, 0x3f01400,14, 0x3f01440,2, 0x3f0144c,3, 0x3f01480,14, 0x3f014c0,2, 0x3f014cc,3, 0x3f01500,1, 0x3f01508,15, 0x3f01560,2, 0x3f0156c,2, 0x3f01600,4, 0x3f01680,27, 0x3f01800,2, 0x3f01900,32, 0x3f01984,2, 0x3f01990,4, 0x3f01a00,26, 0x3f01a80,4, 0x3f01ac0,25, 0x3f01b40,6, 0x3f01b60,1, 0x3f01b68,2, 0x3f01b74,11, 0x3f01ba4,8, 0x3f01c00,9, 0x3f01c40,11, 0x3f01c80,23, 0x3f01ce0,15, 0x3f01d20,15, 0x3f01d60,1, 0x3f02000,1, 0x3f02100,36, 0x3f02200,7, 0x3f10000,22, 0x3f10080,22, 0x3f10100,12, 0x3f10140,12, 0x3f10200,52, 0x3f10300,52, 0x3f10400,11, 0x3f10440,11, 0x3f10480,3, 0x3f104a0,6, 0x3f104c0,6, 0x3f104e0,3, 0x3f104f0,3, 0x3f10800,9, 0x3f10840,15, 0x3f10880,15, 0x3f108c0,15, 0x3f10900,1, 0x3f10914,13, 0x3f10980,17, 0x3f11000,17, 0x3f11080,17, 0x3f11104,5, 0x3f11120,3, 0x3f11130,11, 0x3f11200,31, 0x3f11280,31, 0x3f11300,12, 0x3f11340,12, 0x3f11380,2, 0x3f11390,2, 0x3f113a0,3, 0x3f113b0,3, 0x3f113c0,5, 0x3f113e0,5, 0x3f11400,3, 0x3f11410,3, 0x3f11420,3, 0x3f11430,3, 0x3f11440,3, 0x3f11450,3, 0x3f11460,7, 0x3f11800,26, 0x3f11880,4, 0x3f118c0,25, 0x3f11940,6, 0x3f11960,1, 0x3f11968,2, 0x3f11974,11, 0x3f119a4,12, 0x3f11a00,4, 0x3f11b00,43, 0x3f11c00,4, 0x3f11c20,7, 0x3f11c40,3, 0x3f11c50,1, 0x3f11c60,3, 0x3f11e00,32, 0x3f11e84,1, 0x3f11e90,4, 0x3f11ea4,1, 0x3f11eb4,14, 0x3f11ef0,2, 0x3f11f04,1, 0x3f11f10,8, 0x3f11f34,6, 0x3f12000,3, 0x3f12010,21, 0x3f12080,1, 0x3f12094,1, 0x3f1209c,5, 0x3f12100,15, 0x3f12140,1, 0x3f12180,6, 0x3f14000,22, 0x3f14080,22, 0x3f14100,12, 0x3f14140,12, 0x3f14200,52, 0x3f14300,52, 0x3f14400,11, 0x3f14440,11, 0x3f14480,3, 0x3f144a0,6, 0x3f144c0,6, 0x3f144e0,3, 0x3f144f0,3, 0x3f14800,9, 0x3f14840,15, 0x3f14880,15, 0x3f148c0,15, 0x3f14900,1, 0x3f14914,13, 0x3f14980,17, 0x3f15000,17, 0x3f15080,17, 0x3f15104,5, 0x3f15120,3, 0x3f15130,11, 0x3f15200,31, 0x3f15280,31, 0x3f15300,12, 0x3f15340,12, 0x3f15380,2, 0x3f15390,2, 0x3f153a0,3, 0x3f153b0,3, 0x3f153c0,5, 0x3f153e0,5, 0x3f15400,3, 0x3f15410,3, 0x3f15420,3, 0x3f15430,3, 0x3f15440,3, 0x3f15450,3, 0x3f15460,7, 0x3f15800,26, 0x3f15880,4, 0x3f158c0,25, 0x3f15940,6, 0x3f15960,1, 0x3f15968,2, 0x3f15974,11, 0x3f159a4,12, 0x3f15a00,4, 0x3f15b00,43, 0x3f15c00,4, 0x3f15c20,7, 0x3f15c40,3, 0x3f15c50,1, 0x3f15c60,3, 0x3f15e00,32, 0x3f15e84,1, 0x3f15e90,4, 0x3f15ea4,1, 0x3f15eb4,14, 0x3f15ef0,2, 0x3f15f04,1, 0x3f15f10,8, 0x3f15f34,6, 0x3f16000,3, 0x3f16010,21, 0x3f16080,1, 0x3f16094,1, 0x3f1609c,5, 0x3f16100,15, 0x3f16140,1, 0x3f16180,6, 0x3f18000,100, 0x3f18200,3, 0x3f18210,5, 0x3f20000,12, 0x3f20040,2, 0x3f20050,3, 0x3f22000,1006, 0x3f23000,31, 0x3f23084,6, 0x3f24004,1, 0x3f2400c,3, 0x3f24200,23, 0x3f24280,23, 0x3f24300,1, 0x3f24400,1, 0x3f24800,122, 0x3f24a00,122, 0x3f24c04,63, 0x3f24d04,1, 0x3f24d10,5, 0x3f24d40,6, 0x3f24d60,5, 0x3f26000,1, 0x3f26100,1, 0x3f26108,3, 0x3f26120,2, 0x3f26134,8, 0x3f26160,2, 0x3f26174,8, 0x3f261a0,4, 0x3f26200,54, 0x3f26800,5, 0x3f26820,2, 0x3f26834,1, 0x3f2683c,1, 0x3f26a00,24, 0x3f26a80,24, 0x3f26b00,1, 0x3f26c00,6, 0x3f26c24,5, 0x3f26c40,16, 0x3f27000,1, 0x3f27020,5, 0x3f27040,1, 0x3f27048,2, 0x3f27080,1, 0x3f27100,4, 0x3f27180,24, 0x3f27200,4, 0x3f27280,27, 0x3f27300,2, 0x3f2730c,3, 0x3f28004,1, 0x3f2800c,3, 0x3f28020,1, 0x3f28100,2, 0x3f28110,3, 0x3f28120,2, 0x3f28140,10, 0x3f28180,13, 0x3f28200,2, 0x3f28210,3, 0x3f28220,2, 0x3f28240,10, 0x3f28280,13, 0x3f28400,14, 0x3f28440,3, 0x3f28450,3, 0x3f28460,1, 0x3f28500,36, 0x3f28600,10, 0x3f28640,5, 0x3f28660,5, 0x3f28700,27, 0x3f28780,7, 0x3f287a0,8, 0x3f28800,27, 0x3f28880,7, 0x3f288a0,8, 0x3f28900,27, 0x3f28980,7, 0x3f289a0,8, 0x3f28a00,27, 0x3f28a80,7, 0x3f28aa0,8, 0x3f28b00,48, 0x3f28bc4,8, 0x3f28bf0,30, 0x3f28c80,4, 0x3f28cc0,25, 0x3f28d40,6, 0x3f28d60,1, 0x3f28d68,2, 0x3f28d74,3, 0x3f28e00,8, 0x3f28e24,28, 0x3f29000,4, 0x3f29080,23, 0x3f29100,14, 0x3f29140,9, 0x3f29200,10, 0x3f29230,3, 0x3f29240,5, 0x3f29260,5, 0x3f29280,9, 0x3f29400,67, 0x3f29600,10, 0x3f30000,12, 0x3f30040,2, 0x3f30050,3, 0x3f32000,1006, 0x3f33000,31, 0x3f33084,6, 0x3f34004,1, 0x3f3400c,3, 0x3f34200,23, 0x3f34280,23, 0x3f34300,1, 0x3f34400,1, 0x3f34800,122, 0x3f34a00,122, 0x3f34c04,63, 0x3f34d04,1, 0x3f34d10,5, 0x3f34d40,6, 0x3f34d60,5, 0x3f36000,1, 0x3f36100,1, 0x3f36108,3, 0x3f36120,2, 0x3f36134,8, 0x3f36160,2, 0x3f36174,8, 0x3f361a0,4, 0x3f36200,54, 0x3f36800,5, 0x3f36820,2, 0x3f36834,1, 0x3f3683c,1, 0x3f36a00,24, 0x3f36a80,24, 0x3f36b00,1, 0x3f36c00,6, 0x3f36c24,5, 0x3f36c40,16, 0x3f37000,1, 0x3f37020,5, 0x3f37040,1, 0x3f37048,2, 0x3f37080,1, 0x3f37100,4, 0x3f37180,24, 0x3f37200,4, 0x3f37280,27, 0x3f37300,2, 0x3f3730c,3, 0x3f38004,1, 0x3f3800c,3, 0x3f38020,1, 0x3f38100,2, 0x3f38110,3, 0x3f38120,2, 0x3f38140,10, 0x3f38180,13, 0x3f38200,2, 0x3f38210,3, 0x3f38220,2, 0x3f38240,10, 0x3f38280,13, 0x3f38400,14, 0x3f38440,3, 0x3f38450,3, 0x3f38460,1, 0x3f38500,36, 0x3f38600,10, 0x3f38640,5, 0x3f38660,5, 0x3f38700,27, 0x3f38780,7, 0x3f387a0,8, 0x3f38800,27, 0x3f38880,7, 0x3f388a0,8, 0x3f38900,27, 0x3f38980,7, 0x3f389a0,8, 0x3f38a00,27, 0x3f38a80,7, 0x3f38aa0,8, 0x3f38b00,48, 0x3f38bc4,8, 0x3f38bf0,30, 0x3f38c80,4, 0x3f38cc0,25, 0x3f38d40,6, 0x3f38d60,1, 0x3f38d68,2, 0x3f38d74,3, 0x3f38e00,8, 0x3f38e24,28, 0x3f39000,4, 0x3f39080,23, 0x3f39100,14, 0x3f39140,9, 0x3f39200,10, 0x3f39230,3, 0x3f39240,5, 0x3f39260,5, 0x3f39280,9, 0x3f39400,67, 0x3f39600,10, 0x4000000,1, 0x4000020,3, 0x4000030,2, 0x4000040,3, 0x4000050,2, 0x4000800,53, 0x4000900,3, 0x4000910,13, 0x4000a00,53, 0x4000b00,3, 0x4000b10,13, 0x4000c00,5, 0x4000c20,5, 0x4000c40,18, 0x4001000,6, 0x4001020,4, 0x4001040,16, 0x4002000,20, 0x4002080,15, 0x4002100,20, 0x4002180,15, 0x4002200,23, 0x4002260,7, 0x4002400,11, 0x4002430,3, 0x4002440,3, 0x4002450,3, 0x4002460,24, 0x4002500,11, 0x4002530,3, 0x4002540,3, 0x4002550,3, 0x4002560,24, 0x4002600,11, 0x4002630,3, 0x4002640,3, 0x4002650,3, 0x4002660,24, 0x4002700,11, 0x4002730,3, 0x4002740,3, 0x4002750,3, 0x4002760,24, 0x4002800,4, 0x4002820,16, 0x4002880,10, 0x40028c0,10, 0x4002900,6, 0x4002920,6, 0x4002940,4, 0x4002980,13, 0x40029c0,13, 0x4002a00,9, 0x4003000,14, 0x4003040,9, 0x4003080,6, 0x40030a0,1, 0x40030a8,4, 0x4003100,4, 0x4003200,124, 0x4003400,124, 0x4003600,8, 0x4003624,1, 0x4003644,6, 0x4003664,6, 0x4003680,1, 0x4003688,6, 0x40036a8,22, 0x4004000,1, 0x4004020,3, 0x4004030,2, 0x4004040,3, 0x4004050,2, 0x4004800,53, 0x4004900,3, 0x4004910,13, 0x4004a00,53, 0x4004b00,3, 0x4004b10,13, 0x4004c00,5, 0x4004c20,5, 0x4004c40,18, 0x4005000,6, 0x4005020,4, 0x4005040,16, 0x4006000,20, 0x4006080,15, 0x4006100,20, 0x4006180,15, 0x4006200,23, 0x4006260,7, 0x4006400,11, 0x4006430,3, 0x4006440,3, 0x4006450,3, 0x4006460,24, 0x4006500,11, 0x4006530,3, 0x4006540,3, 0x4006550,3, 0x4006560,24, 0x4006600,11, 0x4006630,3, 0x4006640,3, 0x4006650,3, 0x4006660,24, 0x4006700,11, 0x4006730,3, 0x4006740,3, 0x4006750,3, 0x4006760,24, 0x4006800,4, 0x4006820,16, 0x4006880,10, 0x40068c0,10, 0x4006900,6, 0x4006920,6, 0x4006940,4, 0x4006980,13, 0x40069c0,13, 0x4006a00,9, 0x4007000,14, 0x4007040,9, 0x4007080,6, 0x40070a0,1, 0x40070a8,4, 0x4007100,4, 0x4007200,124, 0x4007400,124, 0x4007600,8, 0x4007624,1, 0x4007644,6, 0x4007664,6, 0x4007680,1, 0x4007688,6, 0x40076a8,22, 0x4008000,84, 0x4008180,20, 0x4008200,5, 0x4008400,11, 0x4008440,11, 0x4008480,19, 0x4008500,19, 0x4008580,24, 0x4008600,13, 0x4008800,84, 0x4008980,20, 0x4008a00,5, 0x4008c00,11, 0x4008c40,11, 0x4008c80,19, 0x4008d00,19, 0x4008d80,24, 0x4008e00,13, 0x4009000,10, 0x4009040,5, 0x4009080,10, 0x40090c0,5, 0x4009100,5, 0x4009200,11, 0x4009230,3, 0x4009240,5, 0x4009260,5, 0x4009280,32, 0x4009400,13, 0x4009440,13, 0x4009480,9, 0x40094c0,1, 0x40094d0,5, 0x40094f0,21, 0x4009800,10, 0x4009840,5, 0x4009880,10, 0x40098c0,5, 0x4009900,5, 0x4009a00,11, 0x4009a30,3, 0x4009a40,5, 0x4009a60,5, 0x4009a80,32, 0x4009c00,13, 0x4009c40,13, 0x4009c80,9, 0x4009cc0,1, 0x4009cd0,5, 0x4009cf0,21, 0x400a000,14, 0x400a040,9, 0x400a080,6, 0x400a0a0,1, 0x400a0a8,4, 0x400a100,7, 0x400a120,3, 0x400a130,25, 0x400c000,26, 0x400c06c,2, 0x400c080,3, 0x400c090,17, 0x400c100,26, 0x400c16c,2, 0x400c180,3, 0x400c190,17, 0x400c200,26, 0x400c26c,2, 0x400c280,3, 0x400c290,17, 0x400c300,26, 0x400c36c,2, 0x400c380,3, 0x400c390,17, 0x400c400,26, 0x400c46c,2, 0x400c480,3, 0x400c490,17, 0x400c500,26, 0x400c56c,2, 0x400c580,3, 0x400c590,17, 0x400c600,26, 0x400c66c,2, 0x400c680,3, 0x400c690,17, 0x400c700,26, 0x400c76c,2, 0x400c780,3, 0x400c790,17, 0x400c800,12, 0x400c844,1, 0x400c854,8, 0x400c880,7, 0x400c8a0,2, 0x400c8ac,2, 0x400c8c0,26, 0x400c980,4, 0x400c9a0,5, 0x400c9c0,1, 0x400d000,3, 0x400d010,3, 0x400d020,3, 0x400d030,3, 0x400d040,3, 0x400d050,3, 0x400d060,3, 0x400d070,3, 0x400d080,5, 0x400d0a0,5, 0x400d0c0,5, 0x400d0e0,5, 0x400d100,5, 0x400d120,5, 0x400d140,5, 0x400d160,5, 0x400d200,68, 0x400d400,1, 0x400d804,1, 0x400d844,54, 0x400da00,11, 0x400da40,11, 0x400da80,11, 0x400dac0,11, 0x400db00,11, 0x400db40,11, 0x400db80,11, 0x400dbc0,11, 0x400dc00,28, 0x400dc80,5, 0x400dca0,2, 0x400e000,4, 0x400e020,6, 0x400e040,6, 0x400e060,14, 0x400e100,26, 0x400e180,15, 0x400e200,14, 0x400e240,9, 0x400e280,6, 0x400e2a0,1, 0x400e2a8,4, 0x400e300,14, 0x400e340,9, 0x400e380,6, 0x400e3a0,4, 0x400e400,9, 0x4020000,1, 0x4021000,977, 0x4022000,161, 0x4023000,977, 0x4024000,977, 0x4025000,977, 0x4026000,977, 0x4027000,977, 0x4028000,977, 0x4029000,977, 0x402a000,977, 0x402b000,161, 0x402c000,12, 0x402c040,14, 0x402c080,20, 0x402c104,1, 0x402c10c,4, 0x402c200,12, 0x402c240,14, 0x402c280,20, 0x402c304,1, 0x402c30c,4, 0x402c400,12, 0x402c440,14, 0x402c480,20, 0x402c504,1, 0x402c50c,4, 0x402c600,12, 0x402c640,14, 0x402c680,20, 0x402c704,1, 0x402c70c,4, 0x402c800,12, 0x402c840,14, 0x402c880,20, 0x402c904,1, 0x402c90c,4, 0x402ca00,12, 0x402ca40,14, 0x402ca80,20, 0x402cb04,1, 0x402cb0c,4, 0x402cc00,12, 0x402cc40,14, 0x402cc80,20, 0x402cd04,1, 0x402cd0c,4, 0x402ce00,12, 0x402ce40,14, 0x402ce80,20, 0x402cf04,1, 0x402cf0c,4, 0x402d000,12, 0x402d040,14, 0x402d080,20, 0x402d104,1, 0x402d10c,4, 0x402d200,17, 0x402d250,2, 0x402d260,4, 0x402e000,1, 0x402e014,1, 0x402e01c,11, 0x402e060,9, 0x402e094,1, 0x402e09c,11, 0x402e0e0,15, 0x402e200,12, 0x402e240,13, 0x402e280,3, 0x402e290,1, 0x4080000,500, 0x4080800,2, 0x4080820,15, 0x4081000,500, 0x4081800,8, 0x4081824,6, 0x4081840,8, 0x4081880,7, 0x40818a0,7, 0x40818c0,7, 0x40818e0,7, 0x4081900,8, 0x4081924,16, 0x4081980,12, 0x4082000,500, 0x4082800,2, 0x4082820,15, 0x4083000,500, 0x4083800,8, 0x4083824,6, 0x4083840,8, 0x4083880,7, 0x40838a0,7, 0x40838c0,7, 0x40838e0,7, 0x4083900,8, 0x4083924,16, 0x4083980,12, 0x4084004,5, 0x4084200,26, 0x4084280,4, 0x40842c0,25, 0x4084340,6, 0x4084360,1, 0x4084368,2, 0x4084374,11, 0x40843a4,10, 0x4084400,1, 0x4088000,52, 0x4088400,82, 0x4088560,6, 0x4088600,41, 0x4088700,2, 0x4088720,19, 0x4088800,25, 0x4088880,1, 0x4088900,28, 0x4088980,1, 0x4089000,52, 0x4089400,82, 0x4089560,6, 0x4089600,41, 0x4089700,2, 0x4089720,19, 0x4089800,25, 0x4089880,1, 0x4089900,28, 0x4089980,1, 0x408a000,7, 0x408a080,6, 0x408a0a0,6, 0x408a0c0,1, 0x408a100,4, 0x408a120,9, 0x408c000,3, 0x408c010,6, 0x408c200,7, 0x408c220,6, 0x408c240,7, 0x408c260,6, 0x408c280,2, 0x408c28c,2, 0x408c2a0,2, 0x408c2ac,2, 0x408c2c0,7, 0x408c2e0,7, 0x408c300,2, 0x408c30c,2, 0x408c320,6, 0x408c400,3, 0x408c440,12, 0x408c800,7, 0x408c820,14, 0x408c880,16, 0x408c900,7, 0x408c920,14, 0x408c980,16, 0x408ca00,6, 0x408ca20,7, 0x408cc00,3, 0x40a0000,3, 0x40a0800,7, 0x40a0820,6, 0x40a0840,6, 0x40a0880,1, 0x40a0894,1, 0x40a089c,2, 0x40a08c0,9, 0x40a0900,18, 0x40a0a00,36, 0x40a0b00,22, 0x40a0b80,18, 0x40a0c00,3, 0x40a0c10,3, 0x40a1000,3, 0x40a1010,2, 0x40a1080,20, 0x40a1100,1, 0x40a1200,26, 0x40a1280,4, 0x40a12c0,25, 0x40a1340,6, 0x40a1360,1, 0x40a1368,2, 0x40a1374,11, 0x40a13a4,4, 0x40a1400,1, 0x40b0000,11, 0x40b0030,19, 0x40b0080,17, 0x40b0100,11, 0x40b0130,19, 0x40b0180,17, 0x40b0200,3, 0x40b0214,1, 0x40b021c,1, 0x40b0280,3, 0x40b0294,1, 0x40b029c,1, 0x40b0300,18, 0x40b0380,18, 0x40b0400,18, 0x40b0480,18, 0x40b0500,18, 0x40b0580,18, 0x40b0600,18, 0x40b0680,18, 0x40b0700,13, 0x40b0738,6, 0x40b0780,13, 0x40b07b8,6, 0x40b0800,1, 0x40b0808,22, 0x40b0880,1, 0x40b0894,13, 0x40b0900,3, 0x40b0910,3, 0x40b0920,3, 0x40b0940,3, 0x40b0954,1, 0x40b095c,1, 0x40b0a00,52, 0x40b0c00,4, 0x40b0d00,34, 0x40b0e00,4, 0x40b0e80,30, 0x40b0f00,1, 0x40b0f40,5, 0x40b0f60,5, 0x40b0f80,6, 0x40b1000,14, 0x40b1040,4, 0x40b1060,17, 0x40b10c0,6, 0x40b10e0,1, 0x40b10e8,2, 0x40b10f4,11, 0x40b1124,17, 0x40b1200,3, 0x40b1210,3, 0x40b1220,3, 0x40b1230,3, 0x40b1240,3, 0x40b1250,3, 0x40b2000,20, 0x40b2080,3, 0x40b2090,1, 0x40b2098,2, 0x40c0000,500, 0x40c0800,2, 0x40c0820,15, 0x40c1000,500, 0x40c1800,8, 0x40c1824,6, 0x40c1840,8, 0x40c1880,7, 0x40c18a0,7, 0x40c18c0,7, 0x40c18e0,7, 0x40c1900,8, 0x40c1924,16, 0x40c1980,12, 0x40c2000,500, 0x40c2800,2, 0x40c2820,15, 0x40c3000,500, 0x40c3800,8, 0x40c3824,6, 0x40c3840,8, 0x40c3880,7, 0x40c38a0,7, 0x40c38c0,7, 0x40c38e0,7, 0x40c3900,8, 0x40c3924,16, 0x40c3980,12, 0x40c4004,5, 0x40c4200,26, 0x40c4280,4, 0x40c42c0,25, 0x40c4340,6, 0x40c4360,1, 0x40c4368,2, 0x40c4374,11, 0x40c43a4,10, 0x40c4400,1, 0x40c8000,52, 0x40c8400,82, 0x40c8560,6, 0x40c8600,41, 0x40c8700,2, 0x40c8720,19, 0x40c8800,25, 0x40c8880,1, 0x40c8900,28, 0x40c8980,1, 0x40c9000,52, 0x40c9400,82, 0x40c9560,6, 0x40c9600,41, 0x40c9700,2, 0x40c9720,19, 0x40c9800,25, 0x40c9880,1, 0x40c9900,28, 0x40c9980,1, 0x40ca000,7, 0x40ca080,6, 0x40ca0a0,6, 0x40ca0c0,1, 0x40ca100,4, 0x40ca120,9, 0x40cc000,3, 0x40cc010,6, 0x40cc200,7, 0x40cc220,6, 0x40cc240,7, 0x40cc260,6, 0x40cc280,2, 0x40cc28c,2, 0x40cc2a0,2, 0x40cc2ac,2, 0x40cc2c0,7, 0x40cc2e0,7, 0x40cc300,2, 0x40cc30c,2, 0x40cc320,6, 0x40cc400,3, 0x40cc440,12, 0x40cc800,7, 0x40cc820,14, 0x40cc880,16, 0x40cc900,7, 0x40cc920,14, 0x40cc980,16, 0x40cca00,6, 0x40cca20,7, 0x40ccc00,3, 0x40e0000,3, 0x40e0800,7, 0x40e0820,6, 0x40e0840,6, 0x40e0880,1, 0x40e0894,1, 0x40e089c,2, 0x40e08c0,9, 0x40e0900,18, 0x40e0a00,36, 0x40e0b00,22, 0x40e0b80,18, 0x40e0c00,3, 0x40e0c10,3, 0x40e1000,3, 0x40e1010,2, 0x40e1080,20, 0x40e1100,1, 0x40e1200,26, 0x40e1280,4, 0x40e12c0,25, 0x40e1340,6, 0x40e1360,1, 0x40e1368,2, 0x40e1374,11, 0x40e13a4,4, 0x40e1400,1, 0x40f0000,11, 0x40f0030,19, 0x40f0080,17, 0x40f0100,11, 0x40f0130,19, 0x40f0180,17, 0x40f0200,3, 0x40f0214,1, 0x40f021c,1, 0x40f0280,3, 0x40f0294,1, 0x40f029c,1, 0x40f0300,18, 0x40f0380,18, 0x40f0400,18, 0x40f0480,18, 0x40f0500,18, 0x40f0580,18, 0x40f0600,18, 0x40f0680,18, 0x40f0700,13, 0x40f0738,6, 0x40f0780,13, 0x40f07b8,6, 0x40f0800,1, 0x40f0808,22, 0x40f0880,1, 0x40f0894,13, 0x40f0900,3, 0x40f0910,3, 0x40f0920,3, 0x40f0940,3, 0x40f0954,1, 0x40f095c,1, 0x40f0a00,52, 0x40f0c00,4, 0x40f0d00,34, 0x40f0e00,4, 0x40f0e80,30, 0x40f0f00,1, 0x40f0f40,5, 0x40f0f60,5, 0x40f0f80,6, 0x40f1000,14, 0x40f1040,4, 0x40f1060,17, 0x40f10c0,6, 0x40f10e0,1, 0x40f10e8,2, 0x40f10f4,11, 0x40f1124,17, 0x40f1200,3, 0x40f1210,3, 0x40f1220,3, 0x40f1230,3, 0x40f1240,3, 0x40f1250,3, 0x40f2000,20, 0x40f2080,3, 0x40f2090,1, 0x40f2098,2, 0x4100000,13, 0x4100038,4, 0x4100050,3, 0x4100060,3, 0x4100070,16, 0x41000c0,5, 0x4100400,14, 0x4100440,2, 0x410044c,3, 0x4100480,14, 0x41004c0,2, 0x41004cc,3, 0x4100500,1, 0x4100508,15, 0x4100560,2, 0x410056c,2, 0x4100600,4, 0x4100680,27, 0x4100800,2, 0x4100900,32, 0x4100984,2, 0x4100990,4, 0x4100a00,26, 0x4100a80,4, 0x4100ac0,25, 0x4100b40,6, 0x4100b60,1, 0x4100b68,2, 0x4100b74,11, 0x4100ba4,8, 0x4100c00,9, 0x4100c40,11, 0x4100c80,23, 0x4100ce0,15, 0x4100d20,15, 0x4100d60,1, 0x4101000,13, 0x4101038,4, 0x4101050,3, 0x4101060,3, 0x4101070,16, 0x41010c0,5, 0x4101400,14, 0x4101440,2, 0x410144c,3, 0x4101480,14, 0x41014c0,2, 0x41014cc,3, 0x4101500,1, 0x4101508,15, 0x4101560,2, 0x410156c,2, 0x4101600,4, 0x4101680,27, 0x4101800,2, 0x4101900,32, 0x4101984,2, 0x4101990,4, 0x4101a00,26, 0x4101a80,4, 0x4101ac0,25, 0x4101b40,6, 0x4101b60,1, 0x4101b68,2, 0x4101b74,11, 0x4101ba4,8, 0x4101c00,9, 0x4101c40,11, 0x4101c80,23, 0x4101ce0,15, 0x4101d20,15, 0x4101d60,1, 0x4102000,1, 0x4102100,36, 0x4102200,7, 0x4110000,22, 0x4110080,22, 0x4110100,12, 0x4110140,12, 0x4110200,52, 0x4110300,52, 0x4110400,11, 0x4110440,11, 0x4110480,3, 0x41104a0,6, 0x41104c0,6, 0x41104e0,3, 0x41104f0,3, 0x4110800,9, 0x4110840,15, 0x4110880,15, 0x41108c0,15, 0x4110900,1, 0x4110914,13, 0x4110980,17, 0x4111000,17, 0x4111080,17, 0x4111104,5, 0x4111120,3, 0x4111130,11, 0x4111200,31, 0x4111280,31, 0x4111300,12, 0x4111340,12, 0x4111380,2, 0x4111390,2, 0x41113a0,3, 0x41113b0,3, 0x41113c0,5, 0x41113e0,5, 0x4111400,3, 0x4111410,3, 0x4111420,3, 0x4111430,3, 0x4111440,3, 0x4111450,3, 0x4111460,7, 0x4111800,26, 0x4111880,4, 0x41118c0,25, 0x4111940,6, 0x4111960,1, 0x4111968,2, 0x4111974,11, 0x41119a4,12, 0x4111a00,4, 0x4111b00,43, 0x4111c00,4, 0x4111c20,7, 0x4111c40,3, 0x4111c50,1, 0x4111c60,3, 0x4111e00,32, 0x4111e84,1, 0x4111e90,4, 0x4111ea4,1, 0x4111eb4,14, 0x4111ef0,2, 0x4111f04,1, 0x4111f10,8, 0x4111f34,6, 0x4112000,3, 0x4112010,21, 0x4112080,1, 0x4112094,1, 0x411209c,5, 0x4112100,15, 0x4112140,1, 0x4112180,6, 0x4114000,22, 0x4114080,22, 0x4114100,12, 0x4114140,12, 0x4114200,52, 0x4114300,52, 0x4114400,11, 0x4114440,11, 0x4114480,3, 0x41144a0,6, 0x41144c0,6, 0x41144e0,3, 0x41144f0,3, 0x4114800,9, 0x4114840,15, 0x4114880,15, 0x41148c0,15, 0x4114900,1, 0x4114914,13, 0x4114980,17, 0x4115000,17, 0x4115080,17, 0x4115104,5, 0x4115120,3, 0x4115130,11, 0x4115200,31, 0x4115280,31, 0x4115300,12, 0x4115340,12, 0x4115380,2, 0x4115390,2, 0x41153a0,3, 0x41153b0,3, 0x41153c0,5, 0x41153e0,5, 0x4115400,3, 0x4115410,3, 0x4115420,3, 0x4115430,3, 0x4115440,3, 0x4115450,3, 0x4115460,7, 0x4115800,26, 0x4115880,4, 0x41158c0,25, 0x4115940,6, 0x4115960,1, 0x4115968,2, 0x4115974,11, 0x41159a4,12, 0x4115a00,4, 0x4115b00,43, 0x4115c00,4, 0x4115c20,7, 0x4115c40,3, 0x4115c50,1, 0x4115c60,3, 0x4115e00,32, 0x4115e84,1, 0x4115e90,4, 0x4115ea4,1, 0x4115eb4,14, 0x4115ef0,2, 0x4115f04,1, 0x4115f10,8, 0x4115f34,6, 0x4116000,3, 0x4116010,21, 0x4116080,1, 0x4116094,1, 0x411609c,5, 0x4116100,15, 0x4116140,1, 0x4116180,6, 0x4118000,100, 0x4118200,3, 0x4118210,5, 0x4120000,12, 0x4120040,2, 0x4120050,3, 0x4122000,1006, 0x4123000,31, 0x4123084,6, 0x4124004,1, 0x412400c,3, 0x4124200,23, 0x4124280,23, 0x4124300,1, 0x4124400,1, 0x4124800,122, 0x4124a00,122, 0x4124c04,63, 0x4124d04,1, 0x4124d10,5, 0x4124d40,6, 0x4124d60,5, 0x4126000,1, 0x4126100,1, 0x4126108,3, 0x4126120,2, 0x4126134,8, 0x4126160,2, 0x4126174,8, 0x41261a0,4, 0x4126200,54, 0x4126800,5, 0x4126820,2, 0x4126834,1, 0x412683c,1, 0x4126a00,24, 0x4126a80,24, 0x4126b00,1, 0x4126c00,6, 0x4126c24,5, 0x4126c40,16, 0x4127000,1, 0x4127020,5, 0x4127040,1, 0x4127048,2, 0x4127080,1, 0x4127100,4, 0x4127180,24, 0x4127200,4, 0x4127280,27, 0x4127300,2, 0x412730c,3, 0x4128004,1, 0x412800c,3, 0x4128020,1, 0x4128100,2, 0x4128110,3, 0x4128120,2, 0x4128140,10, 0x4128180,13, 0x4128200,2, 0x4128210,3, 0x4128220,2, 0x4128240,10, 0x4128280,13, 0x4128400,14, 0x4128440,3, 0x4128450,3, 0x4128460,1, 0x4128500,36, 0x4128600,10, 0x4128640,5, 0x4128660,5, 0x4128700,27, 0x4128780,7, 0x41287a0,8, 0x4128800,27, 0x4128880,7, 0x41288a0,8, 0x4128900,27, 0x4128980,7, 0x41289a0,8, 0x4128a00,27, 0x4128a80,7, 0x4128aa0,8, 0x4128b00,48, 0x4128bc4,8, 0x4128bf0,30, 0x4128c80,4, 0x4128cc0,25, 0x4128d40,6, 0x4128d60,1, 0x4128d68,2, 0x4128d74,3, 0x4128e00,8, 0x4128e24,28, 0x4129000,4, 0x4129080,23, 0x4129100,14, 0x4129140,9, 0x4129200,10, 0x4129230,3, 0x4129240,5, 0x4129260,5, 0x4129280,9, 0x4129400,67, 0x4129600,10, 0x4130000,12, 0x4130040,2, 0x4130050,3, 0x4132000,1006, 0x4133000,31, 0x4133084,6, 0x4134004,1, 0x413400c,3, 0x4134200,23, 0x4134280,23, 0x4134300,1, 0x4134400,1, 0x4134800,122, 0x4134a00,122, 0x4134c04,63, 0x4134d04,1, 0x4134d10,5, 0x4134d40,6, 0x4134d60,5, 0x4136000,1, 0x4136100,1, 0x4136108,3, 0x4136120,2, 0x4136134,8, 0x4136160,2, 0x4136174,8, 0x41361a0,4, 0x4136200,54, 0x4136800,5, 0x4136820,2, 0x4136834,1, 0x413683c,1, 0x4136a00,24, 0x4136a80,24, 0x4136b00,1, 0x4136c00,6, 0x4136c24,5, 0x4136c40,16, 0x4137000,1, 0x4137020,5, 0x4137040,1, 0x4137048,2, 0x4137080,1, 0x4137100,4, 0x4137180,24, 0x4137200,4, 0x4137280,27, 0x4137300,2, 0x413730c,3, 0x4138004,1, 0x413800c,3, 0x4138020,1, 0x4138100,2, 0x4138110,3, 0x4138120,2, 0x4138140,10, 0x4138180,13, 0x4138200,2, 0x4138210,3, 0x4138220,2, 0x4138240,10, 0x4138280,13, 0x4138400,14, 0x4138440,3, 0x4138450,3, 0x4138460,1, 0x4138500,36, 0x4138600,10, 0x4138640,5, 0x4138660,5, 0x4138700,27, 0x4138780,7, 0x41387a0,8, 0x4138800,27, 0x4138880,7, 0x41388a0,8, 0x4138900,27, 0x4138980,7, 0x41389a0,8, 0x4138a00,27, 0x4138a80,7, 0x4138aa0,8, 0x4138b00,48, 0x4138bc4,8, 0x4138bf0,30, 0x4138c80,4, 0x4138cc0,25, 0x4138d40,6, 0x4138d60,1, 0x4138d68,2, 0x4138d74,3, 0x4138e00,8, 0x4138e24,28, 0x4139000,4, 0x4139080,23, 0x4139100,14, 0x4139140,9, 0x4139200,10, 0x4139230,3, 0x4139240,5, 0x4139260,5, 0x4139280,9, 0x4139400,67, 0x4139600,10, 0x4200000,1, 0x4200020,3, 0x4200030,2, 0x4200040,3, 0x4200050,2, 0x4200800,53, 0x4200900,3, 0x4200910,13, 0x4200a00,53, 0x4200b00,3, 0x4200b10,13, 0x4200c00,5, 0x4200c20,5, 0x4200c40,18, 0x4201000,6, 0x4201020,4, 0x4201040,16, 0x4202000,20, 0x4202080,15, 0x4202100,20, 0x4202180,15, 0x4202200,23, 0x4202260,7, 0x4202400,11, 0x4202430,3, 0x4202440,3, 0x4202450,3, 0x4202460,24, 0x4202500,11, 0x4202530,3, 0x4202540,3, 0x4202550,3, 0x4202560,24, 0x4202600,11, 0x4202630,3, 0x4202640,3, 0x4202650,3, 0x4202660,24, 0x4202700,11, 0x4202730,3, 0x4202740,3, 0x4202750,3, 0x4202760,24, 0x4202800,4, 0x4202820,16, 0x4202880,10, 0x42028c0,10, 0x4202900,6, 0x4202920,6, 0x4202940,4, 0x4202980,13, 0x42029c0,13, 0x4202a00,9, 0x4203000,14, 0x4203040,9, 0x4203080,6, 0x42030a0,1, 0x42030a8,4, 0x4203100,4, 0x4203200,124, 0x4203400,124, 0x4203600,8, 0x4203624,1, 0x4203644,6, 0x4203664,6, 0x4203680,1, 0x4203688,6, 0x42036a8,22, 0x4204000,1, 0x4204020,3, 0x4204030,2, 0x4204040,3, 0x4204050,2, 0x4204800,53, 0x4204900,3, 0x4204910,13, 0x4204a00,53, 0x4204b00,3, 0x4204b10,13, 0x4204c00,5, 0x4204c20,5, 0x4204c40,18, 0x4205000,6, 0x4205020,4, 0x4205040,16, 0x4206000,20, 0x4206080,15, 0x4206100,20, 0x4206180,15, 0x4206200,23, 0x4206260,7, 0x4206400,11, 0x4206430,3, 0x4206440,3, 0x4206450,3, 0x4206460,24, 0x4206500,11, 0x4206530,3, 0x4206540,3, 0x4206550,3, 0x4206560,24, 0x4206600,11, 0x4206630,3, 0x4206640,3, 0x4206650,3, 0x4206660,24, 0x4206700,11, 0x4206730,3, 0x4206740,3, 0x4206750,3, 0x4206760,24, 0x4206800,4, 0x4206820,16, 0x4206880,10, 0x42068c0,10, 0x4206900,6, 0x4206920,6, 0x4206940,4, 0x4206980,13, 0x42069c0,13, 0x4206a00,9, 0x4207000,14, 0x4207040,9, 0x4207080,6, 0x42070a0,1, 0x42070a8,4, 0x4207100,4, 0x4207200,124, 0x4207400,124, 0x4207600,8, 0x4207624,1, 0x4207644,6, 0x4207664,6, 0x4207680,1, 0x4207688,6, 0x42076a8,22, 0x4208000,84, 0x4208180,20, 0x4208200,5, 0x4208400,11, 0x4208440,11, 0x4208480,19, 0x4208500,19, 0x4208580,24, 0x4208600,13, 0x4208800,84, 0x4208980,20, 0x4208a00,5, 0x4208c00,11, 0x4208c40,11, 0x4208c80,19, 0x4208d00,19, 0x4208d80,24, 0x4208e00,13, 0x4209000,10, 0x4209040,5, 0x4209080,10, 0x42090c0,5, 0x4209100,5, 0x4209200,11, 0x4209230,3, 0x4209240,5, 0x4209260,5, 0x4209280,32, 0x4209400,13, 0x4209440,13, 0x4209480,9, 0x42094c0,1, 0x42094d0,5, 0x42094f0,21, 0x4209800,10, 0x4209840,5, 0x4209880,10, 0x42098c0,5, 0x4209900,5, 0x4209a00,11, 0x4209a30,3, 0x4209a40,5, 0x4209a60,5, 0x4209a80,32, 0x4209c00,13, 0x4209c40,13, 0x4209c80,9, 0x4209cc0,1, 0x4209cd0,5, 0x4209cf0,21, 0x420a000,14, 0x420a040,9, 0x420a080,6, 0x420a0a0,1, 0x420a0a8,4, 0x420a100,7, 0x420a120,3, 0x420a130,25, 0x420c000,26, 0x420c06c,2, 0x420c080,3, 0x420c090,17, 0x420c100,26, 0x420c16c,2, 0x420c180,3, 0x420c190,17, 0x420c200,26, 0x420c26c,2, 0x420c280,3, 0x420c290,17, 0x420c300,26, 0x420c36c,2, 0x420c380,3, 0x420c390,17, 0x420c400,26, 0x420c46c,2, 0x420c480,3, 0x420c490,17, 0x420c500,26, 0x420c56c,2, 0x420c580,3, 0x420c590,17, 0x420c600,26, 0x420c66c,2, 0x420c680,3, 0x420c690,17, 0x420c700,26, 0x420c76c,2, 0x420c780,3, 0x420c790,17, 0x420c800,12, 0x420c844,1, 0x420c854,8, 0x420c880,7, 0x420c8a0,2, 0x420c8ac,2, 0x420c8c0,26, 0x420c980,4, 0x420c9a0,5, 0x420c9c0,1, 0x420d000,3, 0x420d010,3, 0x420d020,3, 0x420d030,3, 0x420d040,3, 0x420d050,3, 0x420d060,3, 0x420d070,3, 0x420d080,5, 0x420d0a0,5, 0x420d0c0,5, 0x420d0e0,5, 0x420d100,5, 0x420d120,5, 0x420d140,5, 0x420d160,5, 0x420d200,68, 0x420d400,1, 0x420d804,1, 0x420d844,54, 0x420da00,11, 0x420da40,11, 0x420da80,11, 0x420dac0,11, 0x420db00,11, 0x420db40,11, 0x420db80,11, 0x420dbc0,11, 0x420dc00,28, 0x420dc80,5, 0x420dca0,2, 0x420e000,4, 0x420e020,6, 0x420e040,6, 0x420e060,14, 0x420e100,26, 0x420e180,15, 0x420e200,14, 0x420e240,9, 0x420e280,6, 0x420e2a0,1, 0x420e2a8,4, 0x420e300,14, 0x420e340,9, 0x420e380,6, 0x420e3a0,4, 0x420e400,9, 0x4220000,1, 0x4221000,977, 0x4222000,161, 0x4223000,977, 0x4224000,977, 0x4225000,977, 0x4226000,977, 0x4227000,977, 0x4228000,977, 0x4229000,977, 0x422a000,977, 0x422b000,161, 0x422c000,12, 0x422c040,14, 0x422c080,20, 0x422c104,1, 0x422c10c,4, 0x422c200,12, 0x422c240,14, 0x422c280,20, 0x422c304,1, 0x422c30c,4, 0x422c400,12, 0x422c440,14, 0x422c480,20, 0x422c504,1, 0x422c50c,4, 0x422c600,12, 0x422c640,14, 0x422c680,20, 0x422c704,1, 0x422c70c,4, 0x422c800,12, 0x422c840,14, 0x422c880,20, 0x422c904,1, 0x422c90c,4, 0x422ca00,12, 0x422ca40,14, 0x422ca80,20, 0x422cb04,1, 0x422cb0c,4, 0x422cc00,12, 0x422cc40,14, 0x422cc80,20, 0x422cd04,1, 0x422cd0c,4, 0x422ce00,12, 0x422ce40,14, 0x422ce80,20, 0x422cf04,1, 0x422cf0c,4, 0x422d000,12, 0x422d040,14, 0x422d080,20, 0x422d104,1, 0x422d10c,4, 0x422d200,17, 0x422d250,2, 0x422d260,4, 0x422e000,1, 0x422e014,1, 0x422e01c,11, 0x422e060,9, 0x422e094,1, 0x422e09c,11, 0x422e0e0,15, 0x422e200,12, 0x422e240,13, 0x422e280,3, 0x422e290,1, 0x4280000,500, 0x4280800,2, 0x4280820,15, 0x4281000,500, 0x4281800,8, 0x4281824,6, 0x4281840,8, 0x4281880,7, 0x42818a0,7, 0x42818c0,7, 0x42818e0,7, 0x4281900,8, 0x4281924,16, 0x4281980,12, 0x4282000,500, 0x4282800,2, 0x4282820,15, 0x4283000,500, 0x4283800,8, 0x4283824,6, 0x4283840,8, 0x4283880,7, 0x42838a0,7, 0x42838c0,7, 0x42838e0,7, 0x4283900,8, 0x4283924,16, 0x4283980,12, 0x4284004,5, 0x4284200,26, 0x4284280,4, 0x42842c0,25, 0x4284340,6, 0x4284360,1, 0x4284368,2, 0x4284374,11, 0x42843a4,10, 0x4284400,1, 0x4288000,52, 0x4288400,82, 0x4288560,6, 0x4288600,41, 0x4288700,2, 0x4288720,19, 0x4288800,25, 0x4288880,1, 0x4288900,28, 0x4288980,1, 0x4289000,52, 0x4289400,82, 0x4289560,6, 0x4289600,41, 0x4289700,2, 0x4289720,19, 0x4289800,25, 0x4289880,1, 0x4289900,28, 0x4289980,1, 0x428a000,7, 0x428a080,6, 0x428a0a0,6, 0x428a0c0,1, 0x428a100,4, 0x428a120,9, 0x428c000,3, 0x428c010,6, 0x428c200,7, 0x428c220,6, 0x428c240,7, 0x428c260,6, 0x428c280,2, 0x428c28c,2, 0x428c2a0,2, 0x428c2ac,2, 0x428c2c0,7, 0x428c2e0,7, 0x428c300,2, 0x428c30c,2, 0x428c320,6, 0x428c400,3, 0x428c440,12, 0x428c800,7, 0x428c820,14, 0x428c880,16, 0x428c900,7, 0x428c920,14, 0x428c980,16, 0x428ca00,6, 0x428ca20,7, 0x428cc00,3, 0x42a0000,3, 0x42a0800,7, 0x42a0820,6, 0x42a0840,6, 0x42a0880,1, 0x42a0894,1, 0x42a089c,2, 0x42a08c0,9, 0x42a0900,18, 0x42a0a00,36, 0x42a0b00,22, 0x42a0b80,18, 0x42a0c00,3, 0x42a0c10,3, 0x42a1000,3, 0x42a1010,2, 0x42a1080,20, 0x42a1100,1, 0x42a1200,26, 0x42a1280,4, 0x42a12c0,25, 0x42a1340,6, 0x42a1360,1, 0x42a1368,2, 0x42a1374,11, 0x42a13a4,4, 0x42a1400,1, 0x42b0000,11, 0x42b0030,19, 0x42b0080,17, 0x42b0100,11, 0x42b0130,19, 0x42b0180,17, 0x42b0200,3, 0x42b0214,1, 0x42b021c,1, 0x42b0280,3, 0x42b0294,1, 0x42b029c,1, 0x42b0300,18, 0x42b0380,18, 0x42b0400,18, 0x42b0480,18, 0x42b0500,18, 0x42b0580,18, 0x42b0600,18, 0x42b0680,18, 0x42b0700,13, 0x42b0738,6, 0x42b0780,13, 0x42b07b8,6, 0x42b0800,1, 0x42b0808,22, 0x42b0880,1, 0x42b0894,13, 0x42b0900,3, 0x42b0910,3, 0x42b0920,3, 0x42b0940,3, 0x42b0954,1, 0x42b095c,1, 0x42b0a00,52, 0x42b0c00,4, 0x42b0d00,34, 0x42b0e00,4, 0x42b0e80,30, 0x42b0f00,1, 0x42b0f40,5, 0x42b0f60,5, 0x42b0f80,6, 0x42b1000,14, 0x42b1040,4, 0x42b1060,17, 0x42b10c0,6, 0x42b10e0,1, 0x42b10e8,2, 0x42b10f4,11, 0x42b1124,17, 0x42b1200,3, 0x42b1210,3, 0x42b1220,3, 0x42b1230,3, 0x42b1240,3, 0x42b1250,3, 0x42b2000,20, 0x42b2080,3, 0x42b2090,1, 0x42b2098,2, 0x42c0000,500, 0x42c0800,2, 0x42c0820,15, 0x42c1000,500, 0x42c1800,8, 0x42c1824,6, 0x42c1840,8, 0x42c1880,7, 0x42c18a0,7, 0x42c18c0,7, 0x42c18e0,7, 0x42c1900,8, 0x42c1924,16, 0x42c1980,12, 0x42c2000,500, 0x42c2800,2, 0x42c2820,15, 0x42c3000,500, 0x42c3800,8, 0x42c3824,6, 0x42c3840,8, 0x42c3880,7, 0x42c38a0,7, 0x42c38c0,7, 0x42c38e0,7, 0x42c3900,8, 0x42c3924,16, 0x42c3980,12, 0x42c4004,5, 0x42c4200,26, 0x42c4280,4, 0x42c42c0,25, 0x42c4340,6, 0x42c4360,1, 0x42c4368,2, 0x42c4374,11, 0x42c43a4,10, 0x42c4400,1, 0x42c8000,52, 0x42c8400,82, 0x42c8560,6, 0x42c8600,41, 0x42c8700,2, 0x42c8720,19, 0x42c8800,25, 0x42c8880,1, 0x42c8900,28, 0x42c8980,1, 0x42c9000,52, 0x42c9400,82, 0x42c9560,6, 0x42c9600,41, 0x42c9700,2, 0x42c9720,19, 0x42c9800,25, 0x42c9880,1, 0x42c9900,28, 0x42c9980,1, 0x42ca000,7, 0x42ca080,6, 0x42ca0a0,6, 0x42ca0c0,1, 0x42ca100,4, 0x42ca120,9, 0x42cc000,3, 0x42cc010,6, 0x42cc200,7, 0x42cc220,6, 0x42cc240,7, 0x42cc260,6, 0x42cc280,2, 0x42cc28c,2, 0x42cc2a0,2, 0x42cc2ac,2, 0x42cc2c0,7, 0x42cc2e0,7, 0x42cc300,2, 0x42cc30c,2, 0x42cc320,6, 0x42cc400,3, 0x42cc440,12, 0x42cc800,7, 0x42cc820,14, 0x42cc880,16, 0x42cc900,7, 0x42cc920,14, 0x42cc980,16, 0x42cca00,6, 0x42cca20,7, 0x42ccc00,3, 0x42e0000,3, 0x42e0800,7, 0x42e0820,6, 0x42e0840,6, 0x42e0880,1, 0x42e0894,1, 0x42e089c,2, 0x42e08c0,9, 0x42e0900,18, 0x42e0a00,36, 0x42e0b00,22, 0x42e0b80,18, 0x42e0c00,3, 0x42e0c10,3, 0x42e1000,3, 0x42e1010,2, 0x42e1080,20, 0x42e1100,1, 0x42e1200,26, 0x42e1280,4, 0x42e12c0,25, 0x42e1340,6, 0x42e1360,1, 0x42e1368,2, 0x42e1374,11, 0x42e13a4,4, 0x42e1400,1, 0x42f0000,11, 0x42f0030,19, 0x42f0080,17, 0x42f0100,11, 0x42f0130,19, 0x42f0180,17, 0x42f0200,3, 0x42f0214,1, 0x42f021c,1, 0x42f0280,3, 0x42f0294,1, 0x42f029c,1, 0x42f0300,18, 0x42f0380,18, 0x42f0400,18, 0x42f0480,18, 0x42f0500,18, 0x42f0580,18, 0x42f0600,18, 0x42f0680,18, 0x42f0700,13, 0x42f0738,6, 0x42f0780,13, 0x42f07b8,6, 0x42f0800,1, 0x42f0808,22, 0x42f0880,1, 0x42f0894,13, 0x42f0900,3, 0x42f0910,3, 0x42f0920,3, 0x42f0940,3, 0x42f0954,1, 0x42f095c,1, 0x42f0a00,52, 0x42f0c00,4, 0x42f0d00,34, 0x42f0e00,4, 0x42f0e80,30, 0x42f0f00,1, 0x42f0f40,5, 0x42f0f60,5, 0x42f0f80,6, 0x42f1000,14, 0x42f1040,4, 0x42f1060,17, 0x42f10c0,6, 0x42f10e0,1, 0x42f10e8,2, 0x42f10f4,11, 0x42f1124,17, 0x42f1200,3, 0x42f1210,3, 0x42f1220,3, 0x42f1230,3, 0x42f1240,3, 0x42f1250,3, 0x42f2000,20, 0x42f2080,3, 0x42f2090,1, 0x42f2098,2, 0x4300000,13, 0x4300038,4, 0x4300050,3, 0x4300060,3, 0x4300070,16, 0x43000c0,5, 0x4300400,14, 0x4300440,2, 0x430044c,3, 0x4300480,14, 0x43004c0,2, 0x43004cc,3, 0x4300500,1, 0x4300508,15, 0x4300560,2, 0x430056c,2, 0x4300600,4, 0x4300680,27, 0x4300800,2, 0x4300900,32, 0x4300984,2, 0x4300990,4, 0x4300a00,26, 0x4300a80,4, 0x4300ac0,25, 0x4300b40,6, 0x4300b60,1, 0x4300b68,2, 0x4300b74,11, 0x4300ba4,8, 0x4300c00,9, 0x4300c40,11, 0x4300c80,23, 0x4300ce0,15, 0x4300d20,15, 0x4300d60,1, 0x4301000,13, 0x4301038,4, 0x4301050,3, 0x4301060,3, 0x4301070,16, 0x43010c0,5, 0x4301400,14, 0x4301440,2, 0x430144c,3, 0x4301480,14, 0x43014c0,2, 0x43014cc,3, 0x4301500,1, 0x4301508,15, 0x4301560,2, 0x430156c,2, 0x4301600,4, 0x4301680,27, 0x4301800,2, 0x4301900,32, 0x4301984,2, 0x4301990,4, 0x4301a00,26, 0x4301a80,4, 0x4301ac0,25, 0x4301b40,6, 0x4301b60,1, 0x4301b68,2, 0x4301b74,11, 0x4301ba4,8, 0x4301c00,9, 0x4301c40,11, 0x4301c80,23, 0x4301ce0,15, 0x4301d20,15, 0x4301d60,1, 0x4302000,1, 0x4302100,36, 0x4302200,7, 0x4310000,22, 0x4310080,22, 0x4310100,12, 0x4310140,12, 0x4310200,52, 0x4310300,52, 0x4310400,11, 0x4310440,11, 0x4310480,3, 0x43104a0,6, 0x43104c0,6, 0x43104e0,3, 0x43104f0,3, 0x4310800,9, 0x4310840,15, 0x4310880,15, 0x43108c0,15, 0x4310900,1, 0x4310914,13, 0x4310980,17, 0x4311000,17, 0x4311080,17, 0x4311104,5, 0x4311120,3, 0x4311130,11, 0x4311200,31, 0x4311280,31, 0x4311300,12, 0x4311340,12, 0x4311380,2, 0x4311390,2, 0x43113a0,3, 0x43113b0,3, 0x43113c0,5, 0x43113e0,5, 0x4311400,3, 0x4311410,3, 0x4311420,3, 0x4311430,3, 0x4311440,3, 0x4311450,3, 0x4311460,7, 0x4311800,26, 0x4311880,4, 0x43118c0,25, 0x4311940,6, 0x4311960,1, 0x4311968,2, 0x4311974,11, 0x43119a4,12, 0x4311a00,4, 0x4311b00,43, 0x4311c00,4, 0x4311c20,7, 0x4311c40,3, 0x4311c50,1, 0x4311c60,3, 0x4311e00,32, 0x4311e84,1, 0x4311e90,4, 0x4311ea4,1, 0x4311eb4,14, 0x4311ef0,2, 0x4311f04,1, 0x4311f10,8, 0x4311f34,6, 0x4312000,3, 0x4312010,21, 0x4312080,1, 0x4312094,1, 0x431209c,5, 0x4312100,15, 0x4312140,1, 0x4312180,6, 0x4314000,22, 0x4314080,22, 0x4314100,12, 0x4314140,12, 0x4314200,52, 0x4314300,52, 0x4314400,11, 0x4314440,11, 0x4314480,3, 0x43144a0,6, 0x43144c0,6, 0x43144e0,3, 0x43144f0,3, 0x4314800,9, 0x4314840,15, 0x4314880,15, 0x43148c0,15, 0x4314900,1, 0x4314914,13, 0x4314980,17, 0x4315000,17, 0x4315080,17, 0x4315104,5, 0x4315120,3, 0x4315130,11, 0x4315200,31, 0x4315280,31, 0x4315300,12, 0x4315340,12, 0x4315380,2, 0x4315390,2, 0x43153a0,3, 0x43153b0,3, 0x43153c0,5, 0x43153e0,5, 0x4315400,3, 0x4315410,3, 0x4315420,3, 0x4315430,3, 0x4315440,3, 0x4315450,3, 0x4315460,7, 0x4315800,26, 0x4315880,4, 0x43158c0,25, 0x4315940,6, 0x4315960,1, 0x4315968,2, 0x4315974,11, 0x43159a4,12, 0x4315a00,4, 0x4315b00,43, 0x4315c00,4, 0x4315c20,7, 0x4315c40,3, 0x4315c50,1, 0x4315c60,3, 0x4315e00,32, 0x4315e84,1, 0x4315e90,4, 0x4315ea4,1, 0x4315eb4,14, 0x4315ef0,2, 0x4315f04,1, 0x4315f10,8, 0x4315f34,6, 0x4316000,3, 0x4316010,21, 0x4316080,1, 0x4316094,1, 0x431609c,5, 0x4316100,15, 0x4316140,1, 0x4316180,6, 0x4318000,100, 0x4318200,3, 0x4318210,5, 0x4320000,12, 0x4320040,2, 0x4320050,3, 0x4322000,1006, 0x4323000,31, 0x4323084,6, 0x4324004,1, 0x432400c,3, 0x4324200,23, 0x4324280,23, 0x4324300,1, 0x4324400,1, 0x4324800,122, 0x4324a00,122, 0x4324c04,63, 0x4324d04,1, 0x4324d10,5, 0x4324d40,6, 0x4324d60,5, 0x4326000,1, 0x4326100,1, 0x4326108,3, 0x4326120,2, 0x4326134,8, 0x4326160,2, 0x4326174,8, 0x43261a0,4, 0x4326200,54, 0x4326800,5, 0x4326820,2, 0x4326834,1, 0x432683c,1, 0x4326a00,24, 0x4326a80,24, 0x4326b00,1, 0x4326c00,6, 0x4326c24,5, 0x4326c40,16, 0x4327000,1, 0x4327020,5, 0x4327040,1, 0x4327048,2, 0x4327080,1, 0x4327100,4, 0x4327180,24, 0x4327200,4, 0x4327280,27, 0x4327300,2, 0x432730c,3, 0x4328004,1, 0x432800c,3, 0x4328020,1, 0x4328100,2, 0x4328110,3, 0x4328120,2, 0x4328140,10, 0x4328180,13, 0x4328200,2, 0x4328210,3, 0x4328220,2, 0x4328240,10, 0x4328280,13, 0x4328400,14, 0x4328440,3, 0x4328450,3, 0x4328460,1, 0x4328500,36, 0x4328600,10, 0x4328640,5, 0x4328660,5, 0x4328700,27, 0x4328780,7, 0x43287a0,8, 0x4328800,27, 0x4328880,7, 0x43288a0,8, 0x4328900,27, 0x4328980,7, 0x43289a0,8, 0x4328a00,27, 0x4328a80,7, 0x4328aa0,8, 0x4328b00,48, 0x4328bc4,8, 0x4328bf0,30, 0x4328c80,4, 0x4328cc0,25, 0x4328d40,6, 0x4328d60,1, 0x4328d68,2, 0x4328d74,3, 0x4328e00,8, 0x4328e24,28, 0x4329000,4, 0x4329080,23, 0x4329100,14, 0x4329140,9, 0x4329200,10, 0x4329230,3, 0x4329240,5, 0x4329260,5, 0x4329280,9, 0x4329400,67, 0x4329600,10, 0x4330000,12, 0x4330040,2, 0x4330050,3, 0x4332000,1006, 0x4333000,31, 0x4333084,6, 0x4334004,1, 0x433400c,3, 0x4334200,23, 0x4334280,23, 0x4334300,1, 0x4334400,1, 0x4334800,122, 0x4334a00,122, 0x4334c04,63, 0x4334d04,1, 0x4334d10,5, 0x4334d40,6, 0x4334d60,5, 0x4336000,1, 0x4336100,1, 0x4336108,3, 0x4336120,2, 0x4336134,8, 0x4336160,2, 0x4336174,8, 0x43361a0,4, 0x4336200,54, 0x4336800,5, 0x4336820,2, 0x4336834,1, 0x433683c,1, 0x4336a00,24, 0x4336a80,24, 0x4336b00,1, 0x4336c00,6, 0x4336c24,5, 0x4336c40,16, 0x4337000,1, 0x4337020,5, 0x4337040,1, 0x4337048,2, 0x4337080,1, 0x4337100,4, 0x4337180,24, 0x4337200,4, 0x4337280,27, 0x4337300,2, 0x433730c,3, 0x4338004,1, 0x433800c,3, 0x4338020,1, 0x4338100,2, 0x4338110,3, 0x4338120,2, 0x4338140,10, 0x4338180,13, 0x4338200,2, 0x4338210,3, 0x4338220,2, 0x4338240,10, 0x4338280,13, 0x4338400,14, 0x4338440,3, 0x4338450,3, 0x4338460,1, 0x4338500,36, 0x4338600,10, 0x4338640,5, 0x4338660,5, 0x4338700,27, 0x4338780,7, 0x43387a0,8, 0x4338800,27, 0x4338880,7, 0x43388a0,8, 0x4338900,27, 0x4338980,7, 0x43389a0,8, 0x4338a00,27, 0x4338a80,7, 0x4338aa0,8, 0x4338b00,48, 0x4338bc4,8, 0x4338bf0,30, 0x4338c80,4, 0x4338cc0,25, 0x4338d40,6, 0x4338d60,1, 0x4338d68,2, 0x4338d74,3, 0x4338e00,8, 0x4338e24,28, 0x4339000,4, 0x4339080,23, 0x4339100,14, 0x4339140,9, 0x4339200,10, 0x4339230,3, 0x4339240,5, 0x4339260,5, 0x4339280,9, 0x4339400,67, 0x4339600,10, 0x4400000,1, 0x4400020,3, 0x4400030,2, 0x4400040,3, 0x4400050,2, 0x4400800,53, 0x4400900,3, 0x4400910,13, 0x4400a00,53, 0x4400b00,3, 0x4400b10,13, 0x4400c00,5, 0x4400c20,5, 0x4400c40,18, 0x4401000,6, 0x4401020,4, 0x4401040,16, 0x4402000,20, 0x4402080,15, 0x4402100,20, 0x4402180,15, 0x4402200,23, 0x4402260,7, 0x4402400,11, 0x4402430,3, 0x4402440,3, 0x4402450,3, 0x4402460,24, 0x4402500,11, 0x4402530,3, 0x4402540,3, 0x4402550,3, 0x4402560,24, 0x4402600,11, 0x4402630,3, 0x4402640,3, 0x4402650,3, 0x4402660,24, 0x4402700,11, 0x4402730,3, 0x4402740,3, 0x4402750,3, 0x4402760,24, 0x4402800,4, 0x4402820,16, 0x4402880,10, 0x44028c0,10, 0x4402900,6, 0x4402920,6, 0x4402940,4, 0x4402980,13, 0x44029c0,13, 0x4402a00,9, 0x4403000,14, 0x4403040,9, 0x4403080,6, 0x44030a0,1, 0x44030a8,4, 0x4403100,4, 0x4403200,124, 0x4403400,124, 0x4403600,8, 0x4403624,1, 0x4403644,6, 0x4403664,6, 0x4403680,1, 0x4403688,6, 0x44036a8,22, 0x4404000,1, 0x4404020,3, 0x4404030,2, 0x4404040,3, 0x4404050,2, 0x4404800,53, 0x4404900,3, 0x4404910,13, 0x4404a00,53, 0x4404b00,3, 0x4404b10,13, 0x4404c00,5, 0x4404c20,5, 0x4404c40,18, 0x4405000,6, 0x4405020,4, 0x4405040,16, 0x4406000,20, 0x4406080,15, 0x4406100,20, 0x4406180,15, 0x4406200,23, 0x4406260,7, 0x4406400,11, 0x4406430,3, 0x4406440,3, 0x4406450,3, 0x4406460,24, 0x4406500,11, 0x4406530,3, 0x4406540,3, 0x4406550,3, 0x4406560,24, 0x4406600,11, 0x4406630,3, 0x4406640,3, 0x4406650,3, 0x4406660,24, 0x4406700,11, 0x4406730,3, 0x4406740,3, 0x4406750,3, 0x4406760,24, 0x4406800,4, 0x4406820,16, 0x4406880,10, 0x44068c0,10, 0x4406900,6, 0x4406920,6, 0x4406940,4, 0x4406980,13, 0x44069c0,13, 0x4406a00,9, 0x4407000,14, 0x4407040,9, 0x4407080,6, 0x44070a0,1, 0x44070a8,4, 0x4407100,4, 0x4407200,124, 0x4407400,124, 0x4407600,8, 0x4407624,1, 0x4407644,6, 0x4407664,6, 0x4407680,1, 0x4407688,6, 0x44076a8,22, 0x4408000,84, 0x4408180,20, 0x4408200,5, 0x4408400,11, 0x4408440,11, 0x4408480,19, 0x4408500,19, 0x4408580,24, 0x4408600,13, 0x4408800,84, 0x4408980,20, 0x4408a00,5, 0x4408c00,11, 0x4408c40,11, 0x4408c80,19, 0x4408d00,19, 0x4408d80,24, 0x4408e00,13, 0x4409000,10, 0x4409040,5, 0x4409080,10, 0x44090c0,5, 0x4409100,5, 0x4409200,11, 0x4409230,3, 0x4409240,5, 0x4409260,5, 0x4409280,32, 0x4409400,13, 0x4409440,13, 0x4409480,9, 0x44094c0,1, 0x44094d0,5, 0x44094f0,21, 0x4409800,10, 0x4409840,5, 0x4409880,10, 0x44098c0,5, 0x4409900,5, 0x4409a00,11, 0x4409a30,3, 0x4409a40,5, 0x4409a60,5, 0x4409a80,32, 0x4409c00,13, 0x4409c40,13, 0x4409c80,9, 0x4409cc0,1, 0x4409cd0,5, 0x4409cf0,21, 0x440a000,14, 0x440a040,9, 0x440a080,6, 0x440a0a0,1, 0x440a0a8,4, 0x440a100,7, 0x440a120,3, 0x440a130,25, 0x440c000,26, 0x440c06c,2, 0x440c080,3, 0x440c090,17, 0x440c100,26, 0x440c16c,2, 0x440c180,3, 0x440c190,17, 0x440c200,26, 0x440c26c,2, 0x440c280,3, 0x440c290,17, 0x440c300,26, 0x440c36c,2, 0x440c380,3, 0x440c390,17, 0x440c400,26, 0x440c46c,2, 0x440c480,3, 0x440c490,17, 0x440c500,26, 0x440c56c,2, 0x440c580,3, 0x440c590,17, 0x440c600,26, 0x440c66c,2, 0x440c680,3, 0x440c690,17, 0x440c700,26, 0x440c76c,2, 0x440c780,3, 0x440c790,17, 0x440c800,12, 0x440c844,1, 0x440c854,8, 0x440c880,7, 0x440c8a0,2, 0x440c8ac,2, 0x440c8c0,26, 0x440c980,4, 0x440c9a0,5, 0x440c9c0,1, 0x440d000,3, 0x440d010,3, 0x440d020,3, 0x440d030,3, 0x440d040,3, 0x440d050,3, 0x440d060,3, 0x440d070,3, 0x440d080,5, 0x440d0a0,5, 0x440d0c0,5, 0x440d0e0,5, 0x440d100,5, 0x440d120,5, 0x440d140,5, 0x440d160,5, 0x440d200,68, 0x440d400,1, 0x440d804,1, 0x440d844,54, 0x440da00,11, 0x440da40,11, 0x440da80,11, 0x440dac0,11, 0x440db00,11, 0x440db40,11, 0x440db80,11, 0x440dbc0,11, 0x440dc00,28, 0x440dc80,5, 0x440dca0,2, 0x440e000,4, 0x440e020,6, 0x440e040,6, 0x440e060,14, 0x440e100,26, 0x440e180,15, 0x440e200,14, 0x440e240,9, 0x440e280,6, 0x440e2a0,1, 0x440e2a8,4, 0x440e300,14, 0x440e340,9, 0x440e380,6, 0x440e3a0,4, 0x440e400,9, 0x4420000,1, 0x4421000,977, 0x4422000,161, 0x4423000,977, 0x4424000,977, 0x4425000,977, 0x4426000,977, 0x4427000,977, 0x4428000,977, 0x4429000,977, 0x442a000,977, 0x442b000,161, 0x442c000,12, 0x442c040,14, 0x442c080,20, 0x442c104,1, 0x442c10c,4, 0x442c200,12, 0x442c240,14, 0x442c280,20, 0x442c304,1, 0x442c30c,4, 0x442c400,12, 0x442c440,14, 0x442c480,20, 0x442c504,1, 0x442c50c,4, 0x442c600,12, 0x442c640,14, 0x442c680,20, 0x442c704,1, 0x442c70c,4, 0x442c800,12, 0x442c840,14, 0x442c880,20, 0x442c904,1, 0x442c90c,4, 0x442ca00,12, 0x442ca40,14, 0x442ca80,20, 0x442cb04,1, 0x442cb0c,4, 0x442cc00,12, 0x442cc40,14, 0x442cc80,20, 0x442cd04,1, 0x442cd0c,4, 0x442ce00,12, 0x442ce40,14, 0x442ce80,20, 0x442cf04,1, 0x442cf0c,4, 0x442d000,12, 0x442d040,14, 0x442d080,20, 0x442d104,1, 0x442d10c,4, 0x442d200,17, 0x442d250,2, 0x442d260,4, 0x442e000,1, 0x442e014,1, 0x442e01c,11, 0x442e060,9, 0x442e094,1, 0x442e09c,11, 0x442e0e0,15, 0x442e200,12, 0x442e240,13, 0x442e280,3, 0x442e290,1, 0x4480000,500, 0x4480800,2, 0x4480820,15, 0x4481000,500, 0x4481800,8, 0x4481824,6, 0x4481840,8, 0x4481880,7, 0x44818a0,7, 0x44818c0,7, 0x44818e0,7, 0x4481900,8, 0x4481924,16, 0x4481980,12, 0x4482000,500, 0x4482800,2, 0x4482820,15, 0x4483000,500, 0x4483800,8, 0x4483824,6, 0x4483840,8, 0x4483880,7, 0x44838a0,7, 0x44838c0,7, 0x44838e0,7, 0x4483900,8, 0x4483924,16, 0x4483980,12, 0x4484004,5, 0x4484200,26, 0x4484280,4, 0x44842c0,25, 0x4484340,6, 0x4484360,1, 0x4484368,2, 0x4484374,11, 0x44843a4,10, 0x4484400,1, 0x4488000,52, 0x4488400,82, 0x4488560,6, 0x4488600,41, 0x4488700,2, 0x4488720,19, 0x4488800,25, 0x4488880,1, 0x4488900,28, 0x4488980,1, 0x4489000,52, 0x4489400,82, 0x4489560,6, 0x4489600,41, 0x4489700,2, 0x4489720,19, 0x4489800,25, 0x4489880,1, 0x4489900,28, 0x4489980,1, 0x448a000,7, 0x448a080,6, 0x448a0a0,6, 0x448a0c0,1, 0x448a100,4, 0x448a120,9, 0x448c000,3, 0x448c010,6, 0x448c200,7, 0x448c220,6, 0x448c240,7, 0x448c260,6, 0x448c280,2, 0x448c28c,2, 0x448c2a0,2, 0x448c2ac,2, 0x448c2c0,7, 0x448c2e0,7, 0x448c300,2, 0x448c30c,2, 0x448c320,6, 0x448c400,3, 0x448c440,12, 0x448c800,7, 0x448c820,14, 0x448c880,16, 0x448c900,7, 0x448c920,14, 0x448c980,16, 0x448ca00,6, 0x448ca20,7, 0x448cc00,3, 0x44a0000,3, 0x44a0800,7, 0x44a0820,6, 0x44a0840,6, 0x44a0880,1, 0x44a0894,1, 0x44a089c,2, 0x44a08c0,9, 0x44a0900,18, 0x44a0a00,36, 0x44a0b00,22, 0x44a0b80,18, 0x44a0c00,3, 0x44a0c10,3, 0x44a1000,3, 0x44a1010,2, 0x44a1080,20, 0x44a1100,1, 0x44a1200,26, 0x44a1280,4, 0x44a12c0,25, 0x44a1340,6, 0x44a1360,1, 0x44a1368,2, 0x44a1374,11, 0x44a13a4,4, 0x44a1400,1, 0x44b0000,11, 0x44b0030,19, 0x44b0080,17, 0x44b0100,11, 0x44b0130,19, 0x44b0180,17, 0x44b0200,3, 0x44b0214,1, 0x44b021c,1, 0x44b0280,3, 0x44b0294,1, 0x44b029c,1, 0x44b0300,18, 0x44b0380,18, 0x44b0400,18, 0x44b0480,18, 0x44b0500,18, 0x44b0580,18, 0x44b0600,18, 0x44b0680,18, 0x44b0700,13, 0x44b0738,6, 0x44b0780,13, 0x44b07b8,6, 0x44b0800,1, 0x44b0808,22, 0x44b0880,1, 0x44b0894,13, 0x44b0900,3, 0x44b0910,3, 0x44b0920,3, 0x44b0940,3, 0x44b0954,1, 0x44b095c,1, 0x44b0a00,52, 0x44b0c00,4, 0x44b0d00,34, 0x44b0e00,4, 0x44b0e80,30, 0x44b0f00,1, 0x44b0f40,5, 0x44b0f60,5, 0x44b0f80,6, 0x44b1000,14, 0x44b1040,4, 0x44b1060,17, 0x44b10c0,6, 0x44b10e0,1, 0x44b10e8,2, 0x44b10f4,11, 0x44b1124,17, 0x44b1200,3, 0x44b1210,3, 0x44b1220,3, 0x44b1230,3, 0x44b1240,3, 0x44b1250,3, 0x44b2000,20, 0x44b2080,3, 0x44b2090,1, 0x44b2098,2, 0x44c0000,500, 0x44c0800,2, 0x44c0820,15, 0x44c1000,500, 0x44c1800,8, 0x44c1824,6, 0x44c1840,8, 0x44c1880,7, 0x44c18a0,7, 0x44c18c0,7, 0x44c18e0,7, 0x44c1900,8, 0x44c1924,16, 0x44c1980,12, 0x44c2000,500, 0x44c2800,2, 0x44c2820,15, 0x44c3000,500, 0x44c3800,8, 0x44c3824,6, 0x44c3840,8, 0x44c3880,7, 0x44c38a0,7, 0x44c38c0,7, 0x44c38e0,7, 0x44c3900,8, 0x44c3924,16, 0x44c3980,12, 0x44c4004,5, 0x44c4200,26, 0x44c4280,4, 0x44c42c0,25, 0x44c4340,6, 0x44c4360,1, 0x44c4368,2, 0x44c4374,11, 0x44c43a4,10, 0x44c4400,1, 0x44c8000,52, 0x44c8400,82, 0x44c8560,6, 0x44c8600,41, 0x44c8700,2, 0x44c8720,19, 0x44c8800,25, 0x44c8880,1, 0x44c8900,28, 0x44c8980,1, 0x44c9000,52, 0x44c9400,82, 0x44c9560,6, 0x44c9600,41, 0x44c9700,2, 0x44c9720,19, 0x44c9800,25, 0x44c9880,1, 0x44c9900,28, 0x44c9980,1, 0x44ca000,7, 0x44ca080,6, 0x44ca0a0,6, 0x44ca0c0,1, 0x44ca100,4, 0x44ca120,9, 0x44cc000,3, 0x44cc010,6, 0x44cc200,7, 0x44cc220,6, 0x44cc240,7, 0x44cc260,6, 0x44cc280,2, 0x44cc28c,2, 0x44cc2a0,2, 0x44cc2ac,2, 0x44cc2c0,7, 0x44cc2e0,7, 0x44cc300,2, 0x44cc30c,2, 0x44cc320,6, 0x44cc400,3, 0x44cc440,12, 0x44cc800,7, 0x44cc820,14, 0x44cc880,16, 0x44cc900,7, 0x44cc920,14, 0x44cc980,16, 0x44cca00,6, 0x44cca20,7, 0x44ccc00,3, 0x44e0000,3, 0x44e0800,7, 0x44e0820,6, 0x44e0840,6, 0x44e0880,1, 0x44e0894,1, 0x44e089c,2, 0x44e08c0,9, 0x44e0900,18, 0x44e0a00,36, 0x44e0b00,22, 0x44e0b80,18, 0x44e0c00,3, 0x44e0c10,3, 0x44e1000,3, 0x44e1010,2, 0x44e1080,20, 0x44e1100,1, 0x44e1200,26, 0x44e1280,4, 0x44e12c0,25, 0x44e1340,6, 0x44e1360,1, 0x44e1368,2, 0x44e1374,11, 0x44e13a4,4, 0x44e1400,1, 0x44f0000,11, 0x44f0030,19, 0x44f0080,17, 0x44f0100,11, 0x44f0130,19, 0x44f0180,17, 0x44f0200,3, 0x44f0214,1, 0x44f021c,1, 0x44f0280,3, 0x44f0294,1, 0x44f029c,1, 0x44f0300,18, 0x44f0380,18, 0x44f0400,18, 0x44f0480,18, 0x44f0500,18, 0x44f0580,18, 0x44f0600,18, 0x44f0680,18, 0x44f0700,13, 0x44f0738,6, 0x44f0780,13, 0x44f07b8,6, 0x44f0800,1, 0x44f0808,22, 0x44f0880,1, 0x44f0894,13, 0x44f0900,3, 0x44f0910,3, 0x44f0920,3, 0x44f0940,3, 0x44f0954,1, 0x44f095c,1, 0x44f0a00,52, 0x44f0c00,4, 0x44f0d00,34, 0x44f0e00,4, 0x44f0e80,30, 0x44f0f00,1, 0x44f0f40,5, 0x44f0f60,5, 0x44f0f80,6, 0x44f1000,14, 0x44f1040,4, 0x44f1060,17, 0x44f10c0,6, 0x44f10e0,1, 0x44f10e8,2, 0x44f10f4,11, 0x44f1124,17, 0x44f1200,3, 0x44f1210,3, 0x44f1220,3, 0x44f1230,3, 0x44f1240,3, 0x44f1250,3, 0x44f2000,20, 0x44f2080,3, 0x44f2090,1, 0x44f2098,2, 0x4500000,13, 0x4500038,4, 0x4500050,3, 0x4500060,3, 0x4500070,16, 0x45000c0,5, 0x4500400,14, 0x4500440,2, 0x450044c,3, 0x4500480,14, 0x45004c0,2, 0x45004cc,3, 0x4500500,1, 0x4500508,15, 0x4500560,2, 0x450056c,2, 0x4500600,4, 0x4500680,27, 0x4500800,2, 0x4500900,32, 0x4500984,2, 0x4500990,4, 0x4500a00,26, 0x4500a80,4, 0x4500ac0,25, 0x4500b40,6, 0x4500b60,1, 0x4500b68,2, 0x4500b74,11, 0x4500ba4,8, 0x4500c00,9, 0x4500c40,11, 0x4500c80,23, 0x4500ce0,15, 0x4500d20,15, 0x4500d60,1, 0x4501000,13, 0x4501038,4, 0x4501050,3, 0x4501060,3, 0x4501070,16, 0x45010c0,5, 0x4501400,14, 0x4501440,2, 0x450144c,3, 0x4501480,14, 0x45014c0,2, 0x45014cc,3, 0x4501500,1, 0x4501508,15, 0x4501560,2, 0x450156c,2, 0x4501600,4, 0x4501680,27, 0x4501800,2, 0x4501900,32, 0x4501984,2, 0x4501990,4, 0x4501a00,26, 0x4501a80,4, 0x4501ac0,25, 0x4501b40,6, 0x4501b60,1, 0x4501b68,2, 0x4501b74,11, 0x4501ba4,8, 0x4501c00,9, 0x4501c40,11, 0x4501c80,23, 0x4501ce0,15, 0x4501d20,15, 0x4501d60,1, 0x4502000,1, 0x4502100,36, 0x4502200,7, 0x4510000,22, 0x4510080,22, 0x4510100,12, 0x4510140,12, 0x4510200,52, 0x4510300,52, 0x4510400,11, 0x4510440,11, 0x4510480,3, 0x45104a0,6, 0x45104c0,6, 0x45104e0,3, 0x45104f0,3, 0x4510800,9, 0x4510840,15, 0x4510880,15, 0x45108c0,15, 0x4510900,1, 0x4510914,13, 0x4510980,17, 0x4511000,17, 0x4511080,17, 0x4511104,5, 0x4511120,3, 0x4511130,11, 0x4511200,31, 0x4511280,31, 0x4511300,12, 0x4511340,12, 0x4511380,2, 0x4511390,2, 0x45113a0,3, 0x45113b0,3, 0x45113c0,5, 0x45113e0,5, 0x4511400,3, 0x4511410,3, 0x4511420,3, 0x4511430,3, 0x4511440,3, 0x4511450,3, 0x4511460,7, 0x4511800,26, 0x4511880,4, 0x45118c0,25, 0x4511940,6, 0x4511960,1, 0x4511968,2, 0x4511974,11, 0x45119a4,12, 0x4511a00,4, 0x4511b00,43, 0x4511c00,4, 0x4511c20,7, 0x4511c40,3, 0x4511c50,1, 0x4511c60,3, 0x4511e00,32, 0x4511e84,1, 0x4511e90,4, 0x4511ea4,1, 0x4511eb4,14, 0x4511ef0,2, 0x4511f04,1, 0x4511f10,8, 0x4511f34,6, 0x4512000,3, 0x4512010,21, 0x4512080,1, 0x4512094,1, 0x451209c,5, 0x4512100,15, 0x4512140,1, 0x4512180,6, 0x4514000,22, 0x4514080,22, 0x4514100,12, 0x4514140,12, 0x4514200,52, 0x4514300,52, 0x4514400,11, 0x4514440,11, 0x4514480,3, 0x45144a0,6, 0x45144c0,6, 0x45144e0,3, 0x45144f0,3, 0x4514800,9, 0x4514840,15, 0x4514880,15, 0x45148c0,15, 0x4514900,1, 0x4514914,13, 0x4514980,17, 0x4515000,17, 0x4515080,17, 0x4515104,5, 0x4515120,3, 0x4515130,11, 0x4515200,31, 0x4515280,31, 0x4515300,12, 0x4515340,12, 0x4515380,2, 0x4515390,2, 0x45153a0,3, 0x45153b0,3, 0x45153c0,5, 0x45153e0,5, 0x4515400,3, 0x4515410,3, 0x4515420,3, 0x4515430,3, 0x4515440,3, 0x4515450,3, 0x4515460,7, 0x4515800,26, 0x4515880,4, 0x45158c0,25, 0x4515940,6, 0x4515960,1, 0x4515968,2, 0x4515974,11, 0x45159a4,12, 0x4515a00,4, 0x4515b00,43, 0x4515c00,4, 0x4515c20,7, 0x4515c40,3, 0x4515c50,1, 0x4515c60,3, 0x4515e00,32, 0x4515e84,1, 0x4515e90,4, 0x4515ea4,1, 0x4515eb4,14, 0x4515ef0,2, 0x4515f04,1, 0x4515f10,8, 0x4515f34,6, 0x4516000,3, 0x4516010,21, 0x4516080,1, 0x4516094,1, 0x451609c,5, 0x4516100,15, 0x4516140,1, 0x4516180,6, 0x4518000,100, 0x4518200,3, 0x4518210,5, 0x4520000,12, 0x4520040,2, 0x4520050,3, 0x4522000,1006, 0x4523000,31, 0x4523084,6, 0x4524004,1, 0x452400c,3, 0x4524200,23, 0x4524280,23, 0x4524300,1, 0x4524400,1, 0x4524800,122, 0x4524a00,122, 0x4524c04,63, 0x4524d04,1, 0x4524d10,5, 0x4524d40,6, 0x4524d60,5, 0x4526000,1, 0x4526100,1, 0x4526108,3, 0x4526120,2, 0x4526134,8, 0x4526160,2, 0x4526174,8, 0x45261a0,4, 0x4526200,54, 0x4526800,5, 0x4526820,2, 0x4526834,1, 0x452683c,1, 0x4526a00,24, 0x4526a80,24, 0x4526b00,1, 0x4526c00,6, 0x4526c24,5, 0x4526c40,16, 0x4527000,1, 0x4527020,5, 0x4527040,1, 0x4527048,2, 0x4527080,1, 0x4527100,4, 0x4527180,24, 0x4527200,4, 0x4527280,27, 0x4527300,2, 0x452730c,3, 0x4528004,1, 0x452800c,3, 0x4528020,1, 0x4528100,2, 0x4528110,3, 0x4528120,2, 0x4528140,10, 0x4528180,13, 0x4528200,2, 0x4528210,3, 0x4528220,2, 0x4528240,10, 0x4528280,13, 0x4528400,14, 0x4528440,3, 0x4528450,3, 0x4528460,1, 0x4528500,36, 0x4528600,10, 0x4528640,5, 0x4528660,5, 0x4528700,27, 0x4528780,7, 0x45287a0,8, 0x4528800,27, 0x4528880,7, 0x45288a0,8, 0x4528900,27, 0x4528980,7, 0x45289a0,8, 0x4528a00,27, 0x4528a80,7, 0x4528aa0,8, 0x4528b00,48, 0x4528bc4,8, 0x4528bf0,30, 0x4528c80,4, 0x4528cc0,25, 0x4528d40,6, 0x4528d60,1, 0x4528d68,2, 0x4528d74,3, 0x4528e00,8, 0x4528e24,28, 0x4529000,4, 0x4529080,23, 0x4529100,14, 0x4529140,9, 0x4529200,10, 0x4529230,3, 0x4529240,5, 0x4529260,5, 0x4529280,9, 0x4529400,67, 0x4529600,10, 0x4530000,12, 0x4530040,2, 0x4530050,3, 0x4532000,1006, 0x4533000,31, 0x4533084,6, 0x4534004,1, 0x453400c,3, 0x4534200,23, 0x4534280,23, 0x4534300,1, 0x4534400,1, 0x4534800,122, 0x4534a00,122, 0x4534c04,63, 0x4534d04,1, 0x4534d10,5, 0x4534d40,6, 0x4534d60,5, 0x4536000,1, 0x4536100,1, 0x4536108,3, 0x4536120,2, 0x4536134,8, 0x4536160,2, 0x4536174,8, 0x45361a0,4, 0x4536200,54, 0x4536800,5, 0x4536820,2, 0x4536834,1, 0x453683c,1, 0x4536a00,24, 0x4536a80,24, 0x4536b00,1, 0x4536c00,6, 0x4536c24,5, 0x4536c40,16, 0x4537000,1, 0x4537020,5, 0x4537040,1, 0x4537048,2, 0x4537080,1, 0x4537100,4, 0x4537180,24, 0x4537200,4, 0x4537280,27, 0x4537300,2, 0x453730c,3, 0x4538004,1, 0x453800c,3, 0x4538020,1, 0x4538100,2, 0x4538110,3, 0x4538120,2, 0x4538140,10, 0x4538180,13, 0x4538200,2, 0x4538210,3, 0x4538220,2, 0x4538240,10, 0x4538280,13, 0x4538400,14, 0x4538440,3, 0x4538450,3, 0x4538460,1, 0x4538500,36, 0x4538600,10, 0x4538640,5, 0x4538660,5, 0x4538700,27, 0x4538780,7, 0x45387a0,8, 0x4538800,27, 0x4538880,7, 0x45388a0,8, 0x4538900,27, 0x4538980,7, 0x45389a0,8, 0x4538a00,27, 0x4538a80,7, 0x4538aa0,8, 0x4538b00,48, 0x4538bc4,8, 0x4538bf0,30, 0x4538c80,4, 0x4538cc0,25, 0x4538d40,6, 0x4538d60,1, 0x4538d68,2, 0x4538d74,3, 0x4538e00,8, 0x4538e24,28, 0x4539000,4, 0x4539080,23, 0x4539100,14, 0x4539140,9, 0x4539200,10, 0x4539230,3, 0x4539240,5, 0x4539260,5, 0x4539280,9, 0x4539400,67, 0x4539600,10, 0x4600000,1, 0x4600020,3, 0x4600030,2, 0x4600040,3, 0x4600050,2, 0x4600800,53, 0x4600900,3, 0x4600910,13, 0x4600a00,53, 0x4600b00,3, 0x4600b10,13, 0x4600c00,5, 0x4600c20,5, 0x4600c40,18, 0x4601000,6, 0x4601020,4, 0x4601040,16, 0x4602000,20, 0x4602080,15, 0x4602100,20, 0x4602180,15, 0x4602200,23, 0x4602260,7, 0x4602400,11, 0x4602430,3, 0x4602440,3, 0x4602450,3, 0x4602460,24, 0x4602500,11, 0x4602530,3, 0x4602540,3, 0x4602550,3, 0x4602560,24, 0x4602600,11, 0x4602630,3, 0x4602640,3, 0x4602650,3, 0x4602660,24, 0x4602700,11, 0x4602730,3, 0x4602740,3, 0x4602750,3, 0x4602760,24, 0x4602800,4, 0x4602820,16, 0x4602880,10, 0x46028c0,10, 0x4602900,6, 0x4602920,6, 0x4602940,4, 0x4602980,13, 0x46029c0,13, 0x4602a00,9, 0x4603000,14, 0x4603040,9, 0x4603080,6, 0x46030a0,1, 0x46030a8,4, 0x4603100,4, 0x4603200,124, 0x4603400,124, 0x4603600,8, 0x4603624,1, 0x4603644,6, 0x4603664,6, 0x4603680,1, 0x4603688,6, 0x46036a8,22, 0x4604000,1, 0x4604020,3, 0x4604030,2, 0x4604040,3, 0x4604050,2, 0x4604800,53, 0x4604900,3, 0x4604910,13, 0x4604a00,53, 0x4604b00,3, 0x4604b10,13, 0x4604c00,5, 0x4604c20,5, 0x4604c40,18, 0x4605000,6, 0x4605020,4, 0x4605040,16, 0x4606000,20, 0x4606080,15, 0x4606100,20, 0x4606180,15, 0x4606200,23, 0x4606260,7, 0x4606400,11, 0x4606430,3, 0x4606440,3, 0x4606450,3, 0x4606460,24, 0x4606500,11, 0x4606530,3, 0x4606540,3, 0x4606550,3, 0x4606560,24, 0x4606600,11, 0x4606630,3, 0x4606640,3, 0x4606650,3, 0x4606660,24, 0x4606700,11, 0x4606730,3, 0x4606740,3, 0x4606750,3, 0x4606760,24, 0x4606800,4, 0x4606820,16, 0x4606880,10, 0x46068c0,10, 0x4606900,6, 0x4606920,6, 0x4606940,4, 0x4606980,13, 0x46069c0,13, 0x4606a00,9, 0x4607000,14, 0x4607040,9, 0x4607080,6, 0x46070a0,1, 0x46070a8,4, 0x4607100,4, 0x4607200,124, 0x4607400,124, 0x4607600,8, 0x4607624,1, 0x4607644,6, 0x4607664,6, 0x4607680,1, 0x4607688,6, 0x46076a8,22, 0x4608000,84, 0x4608180,20, 0x4608200,5, 0x4608400,11, 0x4608440,11, 0x4608480,19, 0x4608500,19, 0x4608580,24, 0x4608600,13, 0x4608800,84, 0x4608980,20, 0x4608a00,5, 0x4608c00,11, 0x4608c40,11, 0x4608c80,19, 0x4608d00,19, 0x4608d80,24, 0x4608e00,13, 0x4609000,10, 0x4609040,5, 0x4609080,10, 0x46090c0,5, 0x4609100,5, 0x4609200,11, 0x4609230,3, 0x4609240,5, 0x4609260,5, 0x4609280,32, 0x4609400,13, 0x4609440,13, 0x4609480,9, 0x46094c0,1, 0x46094d0,5, 0x46094f0,21, 0x4609800,10, 0x4609840,5, 0x4609880,10, 0x46098c0,5, 0x4609900,5, 0x4609a00,11, 0x4609a30,3, 0x4609a40,5, 0x4609a60,5, 0x4609a80,32, 0x4609c00,13, 0x4609c40,13, 0x4609c80,9, 0x4609cc0,1, 0x4609cd0,5, 0x4609cf0,21, 0x460a000,14, 0x460a040,9, 0x460a080,6, 0x460a0a0,1, 0x460a0a8,4, 0x460a100,7, 0x460a120,3, 0x460a130,25, 0x460c000,26, 0x460c06c,2, 0x460c080,3, 0x460c090,17, 0x460c100,26, 0x460c16c,2, 0x460c180,3, 0x460c190,17, 0x460c200,26, 0x460c26c,2, 0x460c280,3, 0x460c290,17, 0x460c300,26, 0x460c36c,2, 0x460c380,3, 0x460c390,17, 0x460c400,26, 0x460c46c,2, 0x460c480,3, 0x460c490,17, 0x460c500,26, 0x460c56c,2, 0x460c580,3, 0x460c590,17, 0x460c600,26, 0x460c66c,2, 0x460c680,3, 0x460c690,17, 0x460c700,26, 0x460c76c,2, 0x460c780,3, 0x460c790,17, 0x460c800,12, 0x460c844,1, 0x460c854,8, 0x460c880,7, 0x460c8a0,2, 0x460c8ac,2, 0x460c8c0,26, 0x460c980,4, 0x460c9a0,5, 0x460c9c0,1, 0x460d000,3, 0x460d010,3, 0x460d020,3, 0x460d030,3, 0x460d040,3, 0x460d050,3, 0x460d060,3, 0x460d070,3, 0x460d080,5, 0x460d0a0,5, 0x460d0c0,5, 0x460d0e0,5, 0x460d100,5, 0x460d120,5, 0x460d140,5, 0x460d160,5, 0x460d200,68, 0x460d400,1, 0x460d804,1, 0x460d844,54, 0x460da00,11, 0x460da40,11, 0x460da80,11, 0x460dac0,11, 0x460db00,11, 0x460db40,11, 0x460db80,11, 0x460dbc0,11, 0x460dc00,28, 0x460dc80,5, 0x460dca0,2, 0x460e000,4, 0x460e020,6, 0x460e040,6, 0x460e060,14, 0x460e100,26, 0x460e180,15, 0x460e200,14, 0x460e240,9, 0x460e280,6, 0x460e2a0,1, 0x460e2a8,4, 0x460e300,14, 0x460e340,9, 0x460e380,6, 0x460e3a0,4, 0x460e400,9, 0x4620000,1, 0x4621000,977, 0x4622000,161, 0x4623000,977, 0x4624000,977, 0x4625000,977, 0x4626000,977, 0x4627000,977, 0x4628000,977, 0x4629000,977, 0x462a000,977, 0x462b000,161, 0x462c000,12, 0x462c040,14, 0x462c080,20, 0x462c104,1, 0x462c10c,4, 0x462c200,12, 0x462c240,14, 0x462c280,20, 0x462c304,1, 0x462c30c,4, 0x462c400,12, 0x462c440,14, 0x462c480,20, 0x462c504,1, 0x462c50c,4, 0x462c600,12, 0x462c640,14, 0x462c680,20, 0x462c704,1, 0x462c70c,4, 0x462c800,12, 0x462c840,14, 0x462c880,20, 0x462c904,1, 0x462c90c,4, 0x462ca00,12, 0x462ca40,14, 0x462ca80,20, 0x462cb04,1, 0x462cb0c,4, 0x462cc00,12, 0x462cc40,14, 0x462cc80,20, 0x462cd04,1, 0x462cd0c,4, 0x462ce00,12, 0x462ce40,14, 0x462ce80,20, 0x462cf04,1, 0x462cf0c,4, 0x462d000,12, 0x462d040,14, 0x462d080,20, 0x462d104,1, 0x462d10c,4, 0x462d200,17, 0x462d250,2, 0x462d260,4, 0x462e000,1, 0x462e014,1, 0x462e01c,11, 0x462e060,9, 0x462e094,1, 0x462e09c,11, 0x462e0e0,15, 0x462e200,12, 0x462e240,13, 0x462e280,3, 0x462e290,1, 0x4680000,500, 0x4680800,2, 0x4680820,15, 0x4681000,500, 0x4681800,8, 0x4681824,6, 0x4681840,8, 0x4681880,7, 0x46818a0,7, 0x46818c0,7, 0x46818e0,7, 0x4681900,8, 0x4681924,16, 0x4681980,12, 0x4682000,500, 0x4682800,2, 0x4682820,15, 0x4683000,500, 0x4683800,8, 0x4683824,6, 0x4683840,8, 0x4683880,7, 0x46838a0,7, 0x46838c0,7, 0x46838e0,7, 0x4683900,8, 0x4683924,16, 0x4683980,12, 0x4684004,5, 0x4684200,26, 0x4684280,4, 0x46842c0,25, 0x4684340,6, 0x4684360,1, 0x4684368,2, 0x4684374,11, 0x46843a4,10, 0x4684400,1, 0x4688000,52, 0x4688400,82, 0x4688560,6, 0x4688600,41, 0x4688700,2, 0x4688720,19, 0x4688800,25, 0x4688880,1, 0x4688900,28, 0x4688980,1, 0x4689000,52, 0x4689400,82, 0x4689560,6, 0x4689600,41, 0x4689700,2, 0x4689720,19, 0x4689800,25, 0x4689880,1, 0x4689900,28, 0x4689980,1, 0x468a000,7, 0x468a080,6, 0x468a0a0,6, 0x468a0c0,1, 0x468a100,4, 0x468a120,9, 0x468c000,3, 0x468c010,6, 0x468c200,7, 0x468c220,6, 0x468c240,7, 0x468c260,6, 0x468c280,2, 0x468c28c,2, 0x468c2a0,2, 0x468c2ac,2, 0x468c2c0,7, 0x468c2e0,7, 0x468c300,2, 0x468c30c,2, 0x468c320,6, 0x468c400,3, 0x468c440,12, 0x468c800,7, 0x468c820,14, 0x468c880,16, 0x468c900,7, 0x468c920,14, 0x468c980,16, 0x468ca00,6, 0x468ca20,7, 0x468cc00,3, 0x46a0000,3, 0x46a0800,7, 0x46a0820,6, 0x46a0840,6, 0x46a0880,1, 0x46a0894,1, 0x46a089c,2, 0x46a08c0,9, 0x46a0900,18, 0x46a0a00,36, 0x46a0b00,22, 0x46a0b80,18, 0x46a0c00,3, 0x46a0c10,3, 0x46a1000,3, 0x46a1010,2, 0x46a1080,20, 0x46a1100,1, 0x46a1200,26, 0x46a1280,4, 0x46a12c0,25, 0x46a1340,6, 0x46a1360,1, 0x46a1368,2, 0x46a1374,11, 0x46a13a4,4, 0x46a1400,1, 0x46b0000,11, 0x46b0030,19, 0x46b0080,17, 0x46b0100,11, 0x46b0130,19, 0x46b0180,17, 0x46b0200,3, 0x46b0214,1, 0x46b021c,1, 0x46b0280,3, 0x46b0294,1, 0x46b029c,1, 0x46b0300,18, 0x46b0380,18, 0x46b0400,18, 0x46b0480,18, 0x46b0500,18, 0x46b0580,18, 0x46b0600,18, 0x46b0680,18, 0x46b0700,13, 0x46b0738,6, 0x46b0780,13, 0x46b07b8,6, 0x46b0800,1, 0x46b0808,22, 0x46b0880,1, 0x46b0894,13, 0x46b0900,3, 0x46b0910,3, 0x46b0920,3, 0x46b0940,3, 0x46b0954,1, 0x46b095c,1, 0x46b0a00,52, 0x46b0c00,4, 0x46b0d00,34, 0x46b0e00,4, 0x46b0e80,30, 0x46b0f00,1, 0x46b0f40,5, 0x46b0f60,5, 0x46b0f80,6, 0x46b1000,14, 0x46b1040,4, 0x46b1060,17, 0x46b10c0,6, 0x46b10e0,1, 0x46b10e8,2, 0x46b10f4,11, 0x46b1124,17, 0x46b1200,3, 0x46b1210,3, 0x46b1220,3, 0x46b1230,3, 0x46b1240,3, 0x46b1250,3, 0x46b2000,20, 0x46b2080,3, 0x46b2090,1, 0x46b2098,2, 0x46c0000,500, 0x46c0800,2, 0x46c0820,15, 0x46c1000,500, 0x46c1800,8, 0x46c1824,6, 0x46c1840,8, 0x46c1880,7, 0x46c18a0,7, 0x46c18c0,7, 0x46c18e0,7, 0x46c1900,8, 0x46c1924,16, 0x46c1980,12, 0x46c2000,500, 0x46c2800,2, 0x46c2820,15, 0x46c3000,500, 0x46c3800,8, 0x46c3824,6, 0x46c3840,8, 0x46c3880,7, 0x46c38a0,7, 0x46c38c0,7, 0x46c38e0,7, 0x46c3900,8, 0x46c3924,16, 0x46c3980,12, 0x46c4004,5, 0x46c4200,26, 0x46c4280,4, 0x46c42c0,25, 0x46c4340,6, 0x46c4360,1, 0x46c4368,2, 0x46c4374,11, 0x46c43a4,10, 0x46c4400,1, 0x46c8000,52, 0x46c8400,82, 0x46c8560,6, 0x46c8600,41, 0x46c8700,2, 0x46c8720,19, 0x46c8800,25, 0x46c8880,1, 0x46c8900,28, 0x46c8980,1, 0x46c9000,52, 0x46c9400,82, 0x46c9560,6, 0x46c9600,41, 0x46c9700,2, 0x46c9720,19, 0x46c9800,25, 0x46c9880,1, 0x46c9900,28, 0x46c9980,1, 0x46ca000,7, 0x46ca080,6, 0x46ca0a0,6, 0x46ca0c0,1, 0x46ca100,4, 0x46ca120,9, 0x46cc000,3, 0x46cc010,6, 0x46cc200,7, 0x46cc220,6, 0x46cc240,7, 0x46cc260,6, 0x46cc280,2, 0x46cc28c,2, 0x46cc2a0,2, 0x46cc2ac,2, 0x46cc2c0,7, 0x46cc2e0,7, 0x46cc300,2, 0x46cc30c,2, 0x46cc320,6, 0x46cc400,3, 0x46cc440,12, 0x46cc800,7, 0x46cc820,14, 0x46cc880,16, 0x46cc900,7, 0x46cc920,14, 0x46cc980,16, 0x46cca00,6, 0x46cca20,7, 0x46ccc00,3, 0x46e0000,3, 0x46e0800,7, 0x46e0820,6, 0x46e0840,6, 0x46e0880,1, 0x46e0894,1, 0x46e089c,2, 0x46e08c0,9, 0x46e0900,18, 0x46e0a00,36, 0x46e0b00,22, 0x46e0b80,18, 0x46e0c00,3, 0x46e0c10,3, 0x46e1000,3, 0x46e1010,2, 0x46e1080,20, 0x46e1100,1, 0x46e1200,26, 0x46e1280,4, 0x46e12c0,25, 0x46e1340,6, 0x46e1360,1, 0x46e1368,2, 0x46e1374,11, 0x46e13a4,4, 0x46e1400,1, 0x46f0000,11, 0x46f0030,19, 0x46f0080,17, 0x46f0100,11, 0x46f0130,19, 0x46f0180,17, 0x46f0200,3, 0x46f0214,1, 0x46f021c,1, 0x46f0280,3, 0x46f0294,1, 0x46f029c,1, 0x46f0300,18, 0x46f0380,18, 0x46f0400,18, 0x46f0480,18, 0x46f0500,18, 0x46f0580,18, 0x46f0600,18, 0x46f0680,18, 0x46f0700,13, 0x46f0738,6, 0x46f0780,13, 0x46f07b8,6, 0x46f0800,1, 0x46f0808,22, 0x46f0880,1, 0x46f0894,13, 0x46f0900,3, 0x46f0910,3, 0x46f0920,3, 0x46f0940,3, 0x46f0954,1, 0x46f095c,1, 0x46f0a00,52, 0x46f0c00,4, 0x46f0d00,34, 0x46f0e00,4, 0x46f0e80,30, 0x46f0f00,1, 0x46f0f40,5, 0x46f0f60,5, 0x46f0f80,6, 0x46f1000,14, 0x46f1040,4, 0x46f1060,17, 0x46f10c0,6, 0x46f10e0,1, 0x46f10e8,2, 0x46f10f4,11, 0x46f1124,17, 0x46f1200,3, 0x46f1210,3, 0x46f1220,3, 0x46f1230,3, 0x46f1240,3, 0x46f1250,3, 0x46f2000,20, 0x46f2080,3, 0x46f2090,1, 0x46f2098,2, 0x4700000,13, 0x4700038,4, 0x4700050,3, 0x4700060,3, 0x4700070,16, 0x47000c0,5, 0x4700400,14, 0x4700440,2, 0x470044c,3, 0x4700480,14, 0x47004c0,2, 0x47004cc,3, 0x4700500,1, 0x4700508,15, 0x4700560,2, 0x470056c,2, 0x4700600,4, 0x4700680,27, 0x4700800,2, 0x4700900,32, 0x4700984,2, 0x4700990,4, 0x4700a00,26, 0x4700a80,4, 0x4700ac0,25, 0x4700b40,6, 0x4700b60,1, 0x4700b68,2, 0x4700b74,11, 0x4700ba4,8, 0x4700c00,9, 0x4700c40,11, 0x4700c80,23, 0x4700ce0,15, 0x4700d20,15, 0x4700d60,1, 0x4701000,13, 0x4701038,4, 0x4701050,3, 0x4701060,3, 0x4701070,16, 0x47010c0,5, 0x4701400,14, 0x4701440,2, 0x470144c,3, 0x4701480,14, 0x47014c0,2, 0x47014cc,3, 0x4701500,1, 0x4701508,15, 0x4701560,2, 0x470156c,2, 0x4701600,4, 0x4701680,27, 0x4701800,2, 0x4701900,32, 0x4701984,2, 0x4701990,4, 0x4701a00,26, 0x4701a80,4, 0x4701ac0,25, 0x4701b40,6, 0x4701b60,1, 0x4701b68,2, 0x4701b74,11, 0x4701ba4,8, 0x4701c00,9, 0x4701c40,11, 0x4701c80,23, 0x4701ce0,15, 0x4701d20,15, 0x4701d60,1, 0x4702000,1, 0x4702100,36, 0x4702200,7, 0x4710000,22, 0x4710080,22, 0x4710100,12, 0x4710140,12, 0x4710200,52, 0x4710300,52, 0x4710400,11, 0x4710440,11, 0x4710480,3, 0x47104a0,6, 0x47104c0,6, 0x47104e0,3, 0x47104f0,3, 0x4710800,9, 0x4710840,15, 0x4710880,15, 0x47108c0,15, 0x4710900,1, 0x4710914,13, 0x4710980,17, 0x4711000,17, 0x4711080,17, 0x4711104,5, 0x4711120,3, 0x4711130,11, 0x4711200,31, 0x4711280,31, 0x4711300,12, 0x4711340,12, 0x4711380,2, 0x4711390,2, 0x47113a0,3, 0x47113b0,3, 0x47113c0,5, 0x47113e0,5, 0x4711400,3, 0x4711410,3, 0x4711420,3, 0x4711430,3, 0x4711440,3, 0x4711450,3, 0x4711460,7, 0x4711800,26, 0x4711880,4, 0x47118c0,25, 0x4711940,6, 0x4711960,1, 0x4711968,2, 0x4711974,11, 0x47119a4,12, 0x4711a00,4, 0x4711b00,43, 0x4711c00,4, 0x4711c20,7, 0x4711c40,3, 0x4711c50,1, 0x4711c60,3, 0x4711e00,32, 0x4711e84,1, 0x4711e90,4, 0x4711ea4,1, 0x4711eb4,14, 0x4711ef0,2, 0x4711f04,1, 0x4711f10,8, 0x4711f34,6, 0x4712000,3, 0x4712010,21, 0x4712080,1, 0x4712094,1, 0x471209c,5, 0x4712100,15, 0x4712140,1, 0x4712180,6, 0x4714000,22, 0x4714080,22, 0x4714100,12, 0x4714140,12, 0x4714200,52, 0x4714300,52, 0x4714400,11, 0x4714440,11, 0x4714480,3, 0x47144a0,6, 0x47144c0,6, 0x47144e0,3, 0x47144f0,3, 0x4714800,9, 0x4714840,15, 0x4714880,15, 0x47148c0,15, 0x4714900,1, 0x4714914,13, 0x4714980,17, 0x4715000,17, 0x4715080,17, 0x4715104,5, 0x4715120,3, 0x4715130,11, 0x4715200,31, 0x4715280,31, 0x4715300,12, 0x4715340,12, 0x4715380,2, 0x4715390,2, 0x47153a0,3, 0x47153b0,3, 0x47153c0,5, 0x47153e0,5, 0x4715400,3, 0x4715410,3, 0x4715420,3, 0x4715430,3, 0x4715440,3, 0x4715450,3, 0x4715460,7, 0x4715800,26, 0x4715880,4, 0x47158c0,25, 0x4715940,6, 0x4715960,1, 0x4715968,2, 0x4715974,11, 0x47159a4,12, 0x4715a00,4, 0x4715b00,43, 0x4715c00,4, 0x4715c20,7, 0x4715c40,3, 0x4715c50,1, 0x4715c60,3, 0x4715e00,32, 0x4715e84,1, 0x4715e90,4, 0x4715ea4,1, 0x4715eb4,14, 0x4715ef0,2, 0x4715f04,1, 0x4715f10,8, 0x4715f34,6, 0x4716000,3, 0x4716010,21, 0x4716080,1, 0x4716094,1, 0x471609c,5, 0x4716100,15, 0x4716140,1, 0x4716180,6, 0x4718000,100, 0x4718200,3, 0x4718210,5, 0x4720000,12, 0x4720040,2, 0x4720050,3, 0x4722000,1006, 0x4723000,31, 0x4723084,6, 0x4724004,1, 0x472400c,3, 0x4724200,23, 0x4724280,23, 0x4724300,1, 0x4724400,1, 0x4724800,122, 0x4724a00,122, 0x4724c04,63, 0x4724d04,1, 0x4724d10,5, 0x4724d40,6, 0x4724d60,5, 0x4726000,1, 0x4726100,1, 0x4726108,3, 0x4726120,2, 0x4726134,8, 0x4726160,2, 0x4726174,8, 0x47261a0,4, 0x4726200,54, 0x4726800,5, 0x4726820,2, 0x4726834,1, 0x472683c,1, 0x4726a00,24, 0x4726a80,24, 0x4726b00,1, 0x4726c00,6, 0x4726c24,5, 0x4726c40,16, 0x4727000,1, 0x4727020,5, 0x4727040,1, 0x4727048,2, 0x4727080,1, 0x4727100,4, 0x4727180,24, 0x4727200,4, 0x4727280,27, 0x4727300,2, 0x472730c,3, 0x4728004,1, 0x472800c,3, 0x4728020,1, 0x4728100,2, 0x4728110,3, 0x4728120,2, 0x4728140,10, 0x4728180,13, 0x4728200,2, 0x4728210,3, 0x4728220,2, 0x4728240,10, 0x4728280,13, 0x4728400,14, 0x4728440,3, 0x4728450,3, 0x4728460,1, 0x4728500,36, 0x4728600,10, 0x4728640,5, 0x4728660,5, 0x4728700,27, 0x4728780,7, 0x47287a0,8, 0x4728800,27, 0x4728880,7, 0x47288a0,8, 0x4728900,27, 0x4728980,7, 0x47289a0,8, 0x4728a00,27, 0x4728a80,7, 0x4728aa0,8, 0x4728b00,48, 0x4728bc4,8, 0x4728bf0,30, 0x4728c80,4, 0x4728cc0,25, 0x4728d40,6, 0x4728d60,1, 0x4728d68,2, 0x4728d74,3, 0x4728e00,8, 0x4728e24,28, 0x4729000,4, 0x4729080,23, 0x4729100,14, 0x4729140,9, 0x4729200,10, 0x4729230,3, 0x4729240,5, 0x4729260,5, 0x4729280,9, 0x4729400,67, 0x4729600,10, 0x4730000,12, 0x4730040,2, 0x4730050,3, 0x4732000,1006, 0x4733000,31, 0x4733084,6, 0x4734004,1, 0x473400c,3, 0x4734200,23, 0x4734280,23, 0x4734300,1, 0x4734400,1, 0x4734800,122, 0x4734a00,122, 0x4734c04,63, 0x4734d04,1, 0x4734d10,5, 0x4734d40,6, 0x4734d60,5, 0x4736000,1, 0x4736100,1, 0x4736108,3, 0x4736120,2, 0x4736134,8, 0x4736160,2, 0x4736174,8, 0x47361a0,4, 0x4736200,54, 0x4736800,5, 0x4736820,2, 0x4736834,1, 0x473683c,1, 0x4736a00,24, 0x4736a80,24, 0x4736b00,1, 0x4736c00,6, 0x4736c24,5, 0x4736c40,16, 0x4737000,1, 0x4737020,5, 0x4737040,1, 0x4737048,2, 0x4737080,1, 0x4737100,4, 0x4737180,24, 0x4737200,4, 0x4737280,27, 0x4737300,2, 0x473730c,3, 0x4738004,1, 0x473800c,3, 0x4738020,1, 0x4738100,2, 0x4738110,3, 0x4738120,2, 0x4738140,10, 0x4738180,13, 0x4738200,2, 0x4738210,3, 0x4738220,2, 0x4738240,10, 0x4738280,13, 0x4738400,14, 0x4738440,3, 0x4738450,3, 0x4738460,1, 0x4738500,36, 0x4738600,10, 0x4738640,5, 0x4738660,5, 0x4738700,27, 0x4738780,7, 0x47387a0,8, 0x4738800,27, 0x4738880,7, 0x47388a0,8, 0x4738900,27, 0x4738980,7, 0x47389a0,8, 0x4738a00,27, 0x4738a80,7, 0x4738aa0,8, 0x4738b00,48, 0x4738bc4,8, 0x4738bf0,30, 0x4738c80,4, 0x4738cc0,25, 0x4738d40,6, 0x4738d60,1, 0x4738d68,2, 0x4738d74,3, 0x4738e00,8, 0x4738e24,28, 0x4739000,4, 0x4739080,23, 0x4739100,14, 0x4739140,9, 0x4739200,10, 0x4739230,3, 0x4739240,5, 0x4739260,5, 0x4739280,9, 0x4739400,67, 0x4739600,10, 0x4800000,1, 0x4800020,3, 0x4800030,2, 0x4800040,3, 0x4800050,2, 0x4800800,53, 0x4800900,3, 0x4800910,13, 0x4800a00,53, 0x4800b00,3, 0x4800b10,13, 0x4800c00,5, 0x4800c20,5, 0x4800c40,18, 0x4801000,6, 0x4801020,4, 0x4801040,16, 0x4802000,20, 0x4802080,15, 0x4802100,20, 0x4802180,15, 0x4802200,23, 0x4802260,7, 0x4802400,11, 0x4802430,3, 0x4802440,3, 0x4802450,3, 0x4802460,24, 0x4802500,11, 0x4802530,3, 0x4802540,3, 0x4802550,3, 0x4802560,24, 0x4802600,11, 0x4802630,3, 0x4802640,3, 0x4802650,3, 0x4802660,24, 0x4802700,11, 0x4802730,3, 0x4802740,3, 0x4802750,3, 0x4802760,24, 0x4802800,4, 0x4802820,16, 0x4802880,10, 0x48028c0,10, 0x4802900,6, 0x4802920,6, 0x4802940,4, 0x4802980,13, 0x48029c0,13, 0x4802a00,9, 0x4803000,14, 0x4803040,9, 0x4803080,6, 0x48030a0,1, 0x48030a8,4, 0x4803100,4, 0x4803200,124, 0x4803400,124, 0x4803600,8, 0x4803624,1, 0x4803644,6, 0x4803664,6, 0x4803680,1, 0x4803688,6, 0x48036a8,22, 0x4804000,1, 0x4804020,3, 0x4804030,2, 0x4804040,3, 0x4804050,2, 0x4804800,53, 0x4804900,3, 0x4804910,13, 0x4804a00,53, 0x4804b00,3, 0x4804b10,13, 0x4804c00,5, 0x4804c20,5, 0x4804c40,18, 0x4805000,6, 0x4805020,4, 0x4805040,16, 0x4806000,20, 0x4806080,15, 0x4806100,20, 0x4806180,15, 0x4806200,23, 0x4806260,7, 0x4806400,11, 0x4806430,3, 0x4806440,3, 0x4806450,3, 0x4806460,24, 0x4806500,11, 0x4806530,3, 0x4806540,3, 0x4806550,3, 0x4806560,24, 0x4806600,11, 0x4806630,3, 0x4806640,3, 0x4806650,3, 0x4806660,24, 0x4806700,11, 0x4806730,3, 0x4806740,3, 0x4806750,3, 0x4806760,24, 0x4806800,4, 0x4806820,16, 0x4806880,10, 0x48068c0,10, 0x4806900,6, 0x4806920,6, 0x4806940,4, 0x4806980,13, 0x48069c0,13, 0x4806a00,9, 0x4807000,14, 0x4807040,9, 0x4807080,6, 0x48070a0,1, 0x48070a8,4, 0x4807100,4, 0x4807200,124, 0x4807400,124, 0x4807600,8, 0x4807624,1, 0x4807644,6, 0x4807664,6, 0x4807680,1, 0x4807688,6, 0x48076a8,22, 0x4808000,84, 0x4808180,20, 0x4808200,5, 0x4808400,11, 0x4808440,11, 0x4808480,19, 0x4808500,19, 0x4808580,24, 0x4808600,13, 0x4808800,84, 0x4808980,20, 0x4808a00,5, 0x4808c00,11, 0x4808c40,11, 0x4808c80,19, 0x4808d00,19, 0x4808d80,24, 0x4808e00,13, 0x4809000,10, 0x4809040,5, 0x4809080,10, 0x48090c0,5, 0x4809100,5, 0x4809200,11, 0x4809230,3, 0x4809240,5, 0x4809260,5, 0x4809280,32, 0x4809400,13, 0x4809440,13, 0x4809480,9, 0x48094c0,1, 0x48094d0,5, 0x48094f0,21, 0x4809800,10, 0x4809840,5, 0x4809880,10, 0x48098c0,5, 0x4809900,5, 0x4809a00,11, 0x4809a30,3, 0x4809a40,5, 0x4809a60,5, 0x4809a80,32, 0x4809c00,13, 0x4809c40,13, 0x4809c80,9, 0x4809cc0,1, 0x4809cd0,5, 0x4809cf0,21, 0x480a000,14, 0x480a040,9, 0x480a080,6, 0x480a0a0,1, 0x480a0a8,4, 0x480a100,7, 0x480a120,3, 0x480a130,25, 0x480c000,26, 0x480c06c,2, 0x480c080,3, 0x480c090,17, 0x480c100,26, 0x480c16c,2, 0x480c180,3, 0x480c190,17, 0x480c200,26, 0x480c26c,2, 0x480c280,3, 0x480c290,17, 0x480c300,26, 0x480c36c,2, 0x480c380,3, 0x480c390,17, 0x480c400,26, 0x480c46c,2, 0x480c480,3, 0x480c490,17, 0x480c500,26, 0x480c56c,2, 0x480c580,3, 0x480c590,17, 0x480c600,26, 0x480c66c,2, 0x480c680,3, 0x480c690,17, 0x480c700,26, 0x480c76c,2, 0x480c780,3, 0x480c790,17, 0x480c800,12, 0x480c844,1, 0x480c854,8, 0x480c880,7, 0x480c8a0,2, 0x480c8ac,2, 0x480c8c0,26, 0x480c980,4, 0x480c9a0,5, 0x480c9c0,1, 0x480d000,3, 0x480d010,3, 0x480d020,3, 0x480d030,3, 0x480d040,3, 0x480d050,3, 0x480d060,3, 0x480d070,3, 0x480d080,5, 0x480d0a0,5, 0x480d0c0,5, 0x480d0e0,5, 0x480d100,5, 0x480d120,5, 0x480d140,5, 0x480d160,5, 0x480d200,68, 0x480d400,1, 0x480d804,1, 0x480d844,54, 0x480da00,11, 0x480da40,11, 0x480da80,11, 0x480dac0,11, 0x480db00,11, 0x480db40,11, 0x480db80,11, 0x480dbc0,11, 0x480dc00,28, 0x480dc80,5, 0x480dca0,2, 0x480e000,4, 0x480e020,6, 0x480e040,6, 0x480e060,14, 0x480e100,26, 0x480e180,15, 0x480e200,14, 0x480e240,9, 0x480e280,6, 0x480e2a0,1, 0x480e2a8,4, 0x480e300,14, 0x480e340,9, 0x480e380,6, 0x480e3a0,4, 0x480e400,9, 0x4820000,1, 0x4821000,977, 0x4822000,161, 0x4823000,977, 0x4824000,977, 0x4825000,977, 0x4826000,977, 0x4827000,977, 0x4828000,977, 0x4829000,977, 0x482a000,977, 0x482b000,161, 0x482c000,12, 0x482c040,14, 0x482c080,20, 0x482c104,1, 0x482c10c,4, 0x482c200,12, 0x482c240,14, 0x482c280,20, 0x482c304,1, 0x482c30c,4, 0x482c400,12, 0x482c440,14, 0x482c480,20, 0x482c504,1, 0x482c50c,4, 0x482c600,12, 0x482c640,14, 0x482c680,20, 0x482c704,1, 0x482c70c,4, 0x482c800,12, 0x482c840,14, 0x482c880,20, 0x482c904,1, 0x482c90c,4, 0x482ca00,12, 0x482ca40,14, 0x482ca80,20, 0x482cb04,1, 0x482cb0c,4, 0x482cc00,12, 0x482cc40,14, 0x482cc80,20, 0x482cd04,1, 0x482cd0c,4, 0x482ce00,12, 0x482ce40,14, 0x482ce80,20, 0x482cf04,1, 0x482cf0c,4, 0x482d000,12, 0x482d040,14, 0x482d080,20, 0x482d104,1, 0x482d10c,4, 0x482d200,17, 0x482d250,2, 0x482d260,4, 0x482e000,1, 0x482e014,1, 0x482e01c,11, 0x482e060,9, 0x482e094,1, 0x482e09c,11, 0x482e0e0,15, 0x482e200,12, 0x482e240,13, 0x482e280,3, 0x482e290,1, 0x4880000,500, 0x4880800,2, 0x4880820,15, 0x4881000,500, 0x4881800,8, 0x4881824,6, 0x4881840,8, 0x4881880,7, 0x48818a0,7, 0x48818c0,7, 0x48818e0,7, 0x4881900,8, 0x4881924,16, 0x4881980,12, 0x4882000,500, 0x4882800,2, 0x4882820,15, 0x4883000,500, 0x4883800,8, 0x4883824,6, 0x4883840,8, 0x4883880,7, 0x48838a0,7, 0x48838c0,7, 0x48838e0,7, 0x4883900,8, 0x4883924,16, 0x4883980,12, 0x4884004,5, 0x4884200,26, 0x4884280,4, 0x48842c0,25, 0x4884340,6, 0x4884360,1, 0x4884368,2, 0x4884374,11, 0x48843a4,10, 0x4884400,1, 0x4888000,52, 0x4888400,82, 0x4888560,6, 0x4888600,41, 0x4888700,2, 0x4888720,19, 0x4888800,25, 0x4888880,1, 0x4888900,28, 0x4888980,1, 0x4889000,52, 0x4889400,82, 0x4889560,6, 0x4889600,41, 0x4889700,2, 0x4889720,19, 0x4889800,25, 0x4889880,1, 0x4889900,28, 0x4889980,1, 0x488a000,7, 0x488a080,6, 0x488a0a0,6, 0x488a0c0,1, 0x488a100,4, 0x488a120,9, 0x488c000,3, 0x488c010,6, 0x488c200,7, 0x488c220,6, 0x488c240,7, 0x488c260,6, 0x488c280,2, 0x488c28c,2, 0x488c2a0,2, 0x488c2ac,2, 0x488c2c0,7, 0x488c2e0,7, 0x488c300,2, 0x488c30c,2, 0x488c320,6, 0x488c400,3, 0x488c440,12, 0x488c800,7, 0x488c820,14, 0x488c880,16, 0x488c900,7, 0x488c920,14, 0x488c980,16, 0x488ca00,6, 0x488ca20,7, 0x488cc00,3, 0x48a0000,3, 0x48a0800,7, 0x48a0820,6, 0x48a0840,6, 0x48a0880,1, 0x48a0894,1, 0x48a089c,2, 0x48a08c0,9, 0x48a0900,18, 0x48a0a00,36, 0x48a0b00,22, 0x48a0b80,18, 0x48a0c00,3, 0x48a0c10,3, 0x48a1000,3, 0x48a1010,2, 0x48a1080,20, 0x48a1100,1, 0x48a1200,26, 0x48a1280,4, 0x48a12c0,25, 0x48a1340,6, 0x48a1360,1, 0x48a1368,2, 0x48a1374,11, 0x48a13a4,4, 0x48a1400,1, 0x48b0000,11, 0x48b0030,19, 0x48b0080,17, 0x48b0100,11, 0x48b0130,19, 0x48b0180,17, 0x48b0200,3, 0x48b0214,1, 0x48b021c,1, 0x48b0280,3, 0x48b0294,1, 0x48b029c,1, 0x48b0300,18, 0x48b0380,18, 0x48b0400,18, 0x48b0480,18, 0x48b0500,18, 0x48b0580,18, 0x48b0600,18, 0x48b0680,18, 0x48b0700,13, 0x48b0738,6, 0x48b0780,13, 0x48b07b8,6, 0x48b0800,1, 0x48b0808,22, 0x48b0880,1, 0x48b0894,13, 0x48b0900,3, 0x48b0910,3, 0x48b0920,3, 0x48b0940,3, 0x48b0954,1, 0x48b095c,1, 0x48b0a00,52, 0x48b0c00,4, 0x48b0d00,34, 0x48b0e00,4, 0x48b0e80,30, 0x48b0f00,1, 0x48b0f40,5, 0x48b0f60,5, 0x48b0f80,6, 0x48b1000,14, 0x48b1040,4, 0x48b1060,17, 0x48b10c0,6, 0x48b10e0,1, 0x48b10e8,2, 0x48b10f4,11, 0x48b1124,17, 0x48b1200,3, 0x48b1210,3, 0x48b1220,3, 0x48b1230,3, 0x48b1240,3, 0x48b1250,3, 0x48b2000,20, 0x48b2080,3, 0x48b2090,1, 0x48b2098,2, 0x48c0000,500, 0x48c0800,2, 0x48c0820,15, 0x48c1000,500, 0x48c1800,8, 0x48c1824,6, 0x48c1840,8, 0x48c1880,7, 0x48c18a0,7, 0x48c18c0,7, 0x48c18e0,7, 0x48c1900,8, 0x48c1924,16, 0x48c1980,12, 0x48c2000,500, 0x48c2800,2, 0x48c2820,15, 0x48c3000,500, 0x48c3800,8, 0x48c3824,6, 0x48c3840,8, 0x48c3880,7, 0x48c38a0,7, 0x48c38c0,7, 0x48c38e0,7, 0x48c3900,8, 0x48c3924,16, 0x48c3980,12, 0x48c4004,5, 0x48c4200,26, 0x48c4280,4, 0x48c42c0,25, 0x48c4340,6, 0x48c4360,1, 0x48c4368,2, 0x48c4374,11, 0x48c43a4,10, 0x48c4400,1, 0x48c8000,52, 0x48c8400,82, 0x48c8560,6, 0x48c8600,41, 0x48c8700,2, 0x48c8720,19, 0x48c8800,25, 0x48c8880,1, 0x48c8900,28, 0x48c8980,1, 0x48c9000,52, 0x48c9400,82, 0x48c9560,6, 0x48c9600,41, 0x48c9700,2, 0x48c9720,19, 0x48c9800,25, 0x48c9880,1, 0x48c9900,28, 0x48c9980,1, 0x48ca000,7, 0x48ca080,6, 0x48ca0a0,6, 0x48ca0c0,1, 0x48ca100,4, 0x48ca120,9, 0x48cc000,3, 0x48cc010,6, 0x48cc200,7, 0x48cc220,6, 0x48cc240,7, 0x48cc260,6, 0x48cc280,2, 0x48cc28c,2, 0x48cc2a0,2, 0x48cc2ac,2, 0x48cc2c0,7, 0x48cc2e0,7, 0x48cc300,2, 0x48cc30c,2, 0x48cc320,6, 0x48cc400,3, 0x48cc440,12, 0x48cc800,7, 0x48cc820,14, 0x48cc880,16, 0x48cc900,7, 0x48cc920,14, 0x48cc980,16, 0x48cca00,6, 0x48cca20,7, 0x48ccc00,3, 0x48e0000,3, 0x48e0800,7, 0x48e0820,6, 0x48e0840,6, 0x48e0880,1, 0x48e0894,1, 0x48e089c,2, 0x48e08c0,9, 0x48e0900,18, 0x48e0a00,36, 0x48e0b00,22, 0x48e0b80,18, 0x48e0c00,3, 0x48e0c10,3, 0x48e1000,3, 0x48e1010,2, 0x48e1080,20, 0x48e1100,1, 0x48e1200,26, 0x48e1280,4, 0x48e12c0,25, 0x48e1340,6, 0x48e1360,1, 0x48e1368,2, 0x48e1374,11, 0x48e13a4,4, 0x48e1400,1, 0x48f0000,11, 0x48f0030,19, 0x48f0080,17, 0x48f0100,11, 0x48f0130,19, 0x48f0180,17, 0x48f0200,3, 0x48f0214,1, 0x48f021c,1, 0x48f0280,3, 0x48f0294,1, 0x48f029c,1, 0x48f0300,18, 0x48f0380,18, 0x48f0400,18, 0x48f0480,18, 0x48f0500,18, 0x48f0580,18, 0x48f0600,18, 0x48f0680,18, 0x48f0700,13, 0x48f0738,6, 0x48f0780,13, 0x48f07b8,6, 0x48f0800,1, 0x48f0808,22, 0x48f0880,1, 0x48f0894,13, 0x48f0900,3, 0x48f0910,3, 0x48f0920,3, 0x48f0940,3, 0x48f0954,1, 0x48f095c,1, 0x48f0a00,52, 0x48f0c00,4, 0x48f0d00,34, 0x48f0e00,4, 0x48f0e80,30, 0x48f0f00,1, 0x48f0f40,5, 0x48f0f60,5, 0x48f0f80,6, 0x48f1000,14, 0x48f1040,4, 0x48f1060,17, 0x48f10c0,6, 0x48f10e0,1, 0x48f10e8,2, 0x48f10f4,11, 0x48f1124,17, 0x48f1200,3, 0x48f1210,3, 0x48f1220,3, 0x48f1230,3, 0x48f1240,3, 0x48f1250,3, 0x48f2000,20, 0x48f2080,3, 0x48f2090,1, 0x48f2098,2, 0x4900000,13, 0x4900038,4, 0x4900050,3, 0x4900060,3, 0x4900070,16, 0x49000c0,5, 0x4900400,14, 0x4900440,2, 0x490044c,3, 0x4900480,14, 0x49004c0,2, 0x49004cc,3, 0x4900500,1, 0x4900508,15, 0x4900560,2, 0x490056c,2, 0x4900600,4, 0x4900680,27, 0x4900800,2, 0x4900900,32, 0x4900984,2, 0x4900990,4, 0x4900a00,26, 0x4900a80,4, 0x4900ac0,25, 0x4900b40,6, 0x4900b60,1, 0x4900b68,2, 0x4900b74,11, 0x4900ba4,8, 0x4900c00,9, 0x4900c40,11, 0x4900c80,23, 0x4900ce0,15, 0x4900d20,15, 0x4900d60,1, 0x4901000,13, 0x4901038,4, 0x4901050,3, 0x4901060,3, 0x4901070,16, 0x49010c0,5, 0x4901400,14, 0x4901440,2, 0x490144c,3, 0x4901480,14, 0x49014c0,2, 0x49014cc,3, 0x4901500,1, 0x4901508,15, 0x4901560,2, 0x490156c,2, 0x4901600,4, 0x4901680,27, 0x4901800,2, 0x4901900,32, 0x4901984,2, 0x4901990,4, 0x4901a00,26, 0x4901a80,4, 0x4901ac0,25, 0x4901b40,6, 0x4901b60,1, 0x4901b68,2, 0x4901b74,11, 0x4901ba4,8, 0x4901c00,9, 0x4901c40,11, 0x4901c80,23, 0x4901ce0,15, 0x4901d20,15, 0x4901d60,1, 0x4902000,1, 0x4902100,36, 0x4902200,7, 0x4910000,22, 0x4910080,22, 0x4910100,12, 0x4910140,12, 0x4910200,52, 0x4910300,52, 0x4910400,11, 0x4910440,11, 0x4910480,3, 0x49104a0,6, 0x49104c0,6, 0x49104e0,3, 0x49104f0,3, 0x4910800,9, 0x4910840,15, 0x4910880,15, 0x49108c0,15, 0x4910900,1, 0x4910914,13, 0x4910980,17, 0x4911000,17, 0x4911080,17, 0x4911104,5, 0x4911120,3, 0x4911130,11, 0x4911200,31, 0x4911280,31, 0x4911300,12, 0x4911340,12, 0x4911380,2, 0x4911390,2, 0x49113a0,3, 0x49113b0,3, 0x49113c0,5, 0x49113e0,5, 0x4911400,3, 0x4911410,3, 0x4911420,3, 0x4911430,3, 0x4911440,3, 0x4911450,3, 0x4911460,7, 0x4911800,26, 0x4911880,4, 0x49118c0,25, 0x4911940,6, 0x4911960,1, 0x4911968,2, 0x4911974,11, 0x49119a4,12, 0x4911a00,4, 0x4911b00,43, 0x4911c00,4, 0x4911c20,7, 0x4911c40,3, 0x4911c50,1, 0x4911c60,3, 0x4911e00,32, 0x4911e84,1, 0x4911e90,4, 0x4911ea4,1, 0x4911eb4,14, 0x4911ef0,2, 0x4911f04,1, 0x4911f10,8, 0x4911f34,6, 0x4912000,3, 0x4912010,21, 0x4912080,1, 0x4912094,1, 0x491209c,5, 0x4912100,15, 0x4912140,1, 0x4912180,6, 0x4914000,22, 0x4914080,22, 0x4914100,12, 0x4914140,12, 0x4914200,52, 0x4914300,52, 0x4914400,11, 0x4914440,11, 0x4914480,3, 0x49144a0,6, 0x49144c0,6, 0x49144e0,3, 0x49144f0,3, 0x4914800,9, 0x4914840,15, 0x4914880,15, 0x49148c0,15, 0x4914900,1, 0x4914914,13, 0x4914980,17, 0x4915000,17, 0x4915080,17, 0x4915104,5, 0x4915120,3, 0x4915130,11, 0x4915200,31, 0x4915280,31, 0x4915300,12, 0x4915340,12, 0x4915380,2, 0x4915390,2, 0x49153a0,3, 0x49153b0,3, 0x49153c0,5, 0x49153e0,5, 0x4915400,3, 0x4915410,3, 0x4915420,3, 0x4915430,3, 0x4915440,3, 0x4915450,3, 0x4915460,7, 0x4915800,26, 0x4915880,4, 0x49158c0,25, 0x4915940,6, 0x4915960,1, 0x4915968,2, 0x4915974,11, 0x49159a4,12, 0x4915a00,4, 0x4915b00,43, 0x4915c00,4, 0x4915c20,7, 0x4915c40,3, 0x4915c50,1, 0x4915c60,3, 0x4915e00,32, 0x4915e84,1, 0x4915e90,4, 0x4915ea4,1, 0x4915eb4,14, 0x4915ef0,2, 0x4915f04,1, 0x4915f10,8, 0x4915f34,6, 0x4916000,3, 0x4916010,21, 0x4916080,1, 0x4916094,1, 0x491609c,5, 0x4916100,15, 0x4916140,1, 0x4916180,6, 0x4918000,100, 0x4918200,3, 0x4918210,5, 0x4920000,12, 0x4920040,2, 0x4920050,3, 0x4922000,1006, 0x4923000,31, 0x4923084,6, 0x4924004,1, 0x492400c,3, 0x4924200,23, 0x4924280,23, 0x4924300,1, 0x4924400,1, 0x4924800,122, 0x4924a00,122, 0x4924c04,63, 0x4924d04,1, 0x4924d10,5, 0x4924d40,6, 0x4924d60,5, 0x4926000,1, 0x4926100,1, 0x4926108,3, 0x4926120,2, 0x4926134,8, 0x4926160,2, 0x4926174,8, 0x49261a0,4, 0x4926200,54, 0x4926800,5, 0x4926820,2, 0x4926834,1, 0x492683c,1, 0x4926a00,24, 0x4926a80,24, 0x4926b00,1, 0x4926c00,6, 0x4926c24,5, 0x4926c40,16, 0x4927000,1, 0x4927020,5, 0x4927040,1, 0x4927048,2, 0x4927080,1, 0x4927100,4, 0x4927180,24, 0x4927200,4, 0x4927280,27, 0x4927300,2, 0x492730c,3, 0x4928004,1, 0x492800c,3, 0x4928020,1, 0x4928100,2, 0x4928110,3, 0x4928120,2, 0x4928140,10, 0x4928180,13, 0x4928200,2, 0x4928210,3, 0x4928220,2, 0x4928240,10, 0x4928280,13, 0x4928400,14, 0x4928440,3, 0x4928450,3, 0x4928460,1, 0x4928500,36, 0x4928600,10, 0x4928640,5, 0x4928660,5, 0x4928700,27, 0x4928780,7, 0x49287a0,8, 0x4928800,27, 0x4928880,7, 0x49288a0,8, 0x4928900,27, 0x4928980,7, 0x49289a0,8, 0x4928a00,27, 0x4928a80,7, 0x4928aa0,8, 0x4928b00,48, 0x4928bc4,8, 0x4928bf0,30, 0x4928c80,4, 0x4928cc0,25, 0x4928d40,6, 0x4928d60,1, 0x4928d68,2, 0x4928d74,3, 0x4928e00,8, 0x4928e24,28, 0x4929000,4, 0x4929080,23, 0x4929100,14, 0x4929140,9, 0x4929200,10, 0x4929230,3, 0x4929240,5, 0x4929260,5, 0x4929280,9, 0x4929400,67, 0x4929600,10, 0x4930000,12, 0x4930040,2, 0x4930050,3, 0x4932000,1006, 0x4933000,31, 0x4933084,6, 0x4934004,1, 0x493400c,3, 0x4934200,23, 0x4934280,23, 0x4934300,1, 0x4934400,1, 0x4934800,122, 0x4934a00,122, 0x4934c04,63, 0x4934d04,1, 0x4934d10,5, 0x4934d40,6, 0x4934d60,5, 0x4936000,1, 0x4936100,1, 0x4936108,3, 0x4936120,2, 0x4936134,8, 0x4936160,2, 0x4936174,8, 0x49361a0,4, 0x4936200,54, 0x4936800,5, 0x4936820,2, 0x4936834,1, 0x493683c,1, 0x4936a00,24, 0x4936a80,24, 0x4936b00,1, 0x4936c00,6, 0x4936c24,5, 0x4936c40,16, 0x4937000,1, 0x4937020,5, 0x4937040,1, 0x4937048,2, 0x4937080,1, 0x4937100,4, 0x4937180,24, 0x4937200,4, 0x4937280,27, 0x4937300,2, 0x493730c,3, 0x4938004,1, 0x493800c,3, 0x4938020,1, 0x4938100,2, 0x4938110,3, 0x4938120,2, 0x4938140,10, 0x4938180,13, 0x4938200,2, 0x4938210,3, 0x4938220,2, 0x4938240,10, 0x4938280,13, 0x4938400,14, 0x4938440,3, 0x4938450,3, 0x4938460,1, 0x4938500,36, 0x4938600,10, 0x4938640,5, 0x4938660,5, 0x4938700,27, 0x4938780,7, 0x49387a0,8, 0x4938800,27, 0x4938880,7, 0x49388a0,8, 0x4938900,27, 0x4938980,7, 0x49389a0,8, 0x4938a00,27, 0x4938a80,7, 0x4938aa0,8, 0x4938b00,48, 0x4938bc4,8, 0x4938bf0,30, 0x4938c80,4, 0x4938cc0,25, 0x4938d40,6, 0x4938d60,1, 0x4938d68,2, 0x4938d74,3, 0x4938e00,8, 0x4938e24,28, 0x4939000,4, 0x4939080,23, 0x4939100,14, 0x4939140,9, 0x4939200,10, 0x4939230,3, 0x4939240,5, 0x4939260,5, 0x4939280,9, 0x4939400,67, 0x4939600,10, 0x5000000,22, 0x5000060,6, 0x5000080,6, 0x50000a0,6, 0x50000c0,6, 0x5000400,1, 0x500040c,5, 0x5000444,1, 0x5000454,5, 0x5000600,128, 0x5000804,1, 0x5000828,86, 0x5000984,1, 0x5000c00,1, 0x5000c80,1, 0x5000c90,2, 0x5000d00,20, 0x5000d80,1, 0x5000da0,3, 0x5000e00,2, 0x5000e10,4, mstflint-4.26.0/mstdump/mstdump_dbs/ConnectX3.csv0000755000175000017500000012502414522641732022245 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x001000,12, 0x001040,1, 0x010000,2, 0x010010,2, 0x0100a0,15, 0x0100ec,2, 0x0100fc,2, 0x01010c,2, 0x010150,1, 0x0101cc,1, 0x0101fc,1, 0x010208,9, 0x010300,6, 0x010320,20, 0x010374,3, 0x010400,1, 0x010410,2, 0x010440,1, 0x010450,2, 0x010500,1, 0x010510,2, 0x010520,2, 0x01052c,3, 0x01053c,3, 0x010550,1, 0x010600,16, 0x010680,1, 0x010690,2, 0x0106ac,1, 0x0106b8,1, 0x0106e0,3, 0x0106f0,3, 0x010740,4, 0x010754,8, 0x010800,2, 0x010810,2, 0x0108a0,15, 0x0108ec,2, 0x0108fc,2, 0x01090c,2, 0x010950,1, 0x0109cc,1, 0x0109fc,1, 0x010a08,9, 0x010b00,6, 0x010b20,20, 0x010b74,3, 0x010c00,1, 0x010c10,2, 0x010c40,1, 0x010c50,2, 0x010d00,1, 0x010d10,2, 0x010d20,2, 0x010d2c,3, 0x010d3c,3, 0x010d50,1, 0x010e00,16, 0x010e80,1, 0x010e90,2, 0x010eac,1, 0x010eb8,1, 0x010ee0,3, 0x010ef0,3, 0x010f40,4, 0x010f54,8, 0x011000,1, 0x011010,4, 0x011024,2, 0x011080,2, 0x011090,12, 0x011180,6, 0x011200,7, 0x011220,1, 0x011240,4, 0x011260,1, 0x011280,5, 0x011300,1, 0x011310,2, 0x011400,4, 0x011460,1, 0x0114b0,4, 0x011800,1, 0x011810,4, 0x011824,2, 0x011880,2, 0x011890,12, 0x011980,6, 0x011a00,7, 0x011a20,1, 0x011a40,4, 0x011a60,1, 0x011a80,5, 0x011b00,1, 0x011b10,2, 0x011c00,4, 0x011c60,1, 0x011cb0,4, 0x012000,1, 0x01200c,1, 0x012020,1, 0x012030,2, 0x012044,2, 0x0120a0,4, 0x0120c0,7, 0x01211c,13, 0x012164,1, 0x012170,4, 0x0121e0,6, 0x012250,1, 0x012360,4, 0x012380,3, 0x012390,5, 0x0123b0,5, 0x012440,3, 0x012450,3, 0x0124a8,2, 0x0124c0,2, 0x0124d0,2, 0x012568,2, 0x0125c0,4, 0x0125fc,10, 0x012628,6, 0x012644,1, 0x012660,2, 0x012670,2, 0x01268c,5, 0x01270c,1, 0x012728,8, 0x012750,2, 0x01275c,1, 0x0127d8,2, 0x0127e8,2, 0x012840,1, 0x012850,2, 0x0128a0,5, 0x012904,1, 0x012910,5, 0x012928,4, 0x012944,2, 0x012950,1, 0x012958,4, 0x012980,4, 0x0129a0,1, 0x0129b0,2, 0x012d48,4, 0x013000,9, 0x013040,6, 0x013060,6, 0x013080,13, 0x0130c0,13, 0x013100,37, 0x0131a0,5, 0x0131c0,5, 0x0131e0,5, 0x013200,37, 0x0132a0,5, 0x0132c0,5, 0x0132e0,5, 0x013300,9, 0x013330,2, 0x013340,1, 0x013350,2, 0x013360,1, 0x013370,2, 0x013380,2, 0x01338c,38, 0x013430,2, 0x013440,1, 0x013450,2, 0x013460,1, 0x013470,2, 0x013480,2, 0x01348c,30, 0x013510,2, 0x013520,1, 0x013530,2, 0x013544,2, 0x013580,8, 0x0135a4,6, 0x0135c0,16, 0x013604,2, 0x013628,2, 0x013634,1, 0x013644,2, 0x013668,2, 0x013674,1, 0x013684,2, 0x0136a8,2, 0x0136b4,1, 0x0136c4,2, 0x0136e8,2, 0x0136f4,1, 0x013700,21, 0x013800,1, 0x013820,2, 0x01382c,10, 0x01386c,10, 0x013898,3, 0x0138b0,2, 0x013a00,1, 0x013a20,2, 0x013a2c,10, 0x013a6c,10, 0x013a98,3, 0x013ab0,2, 0x013c00,4, 0x013c14,7, 0x013c38,4, 0x013c54,2, 0x013ca0,1, 0x013cb0,2, 0x013cc0,1, 0x013cd0,2, 0x013d00,3, 0x013d10,6, 0x013d44,7, 0x013d64,8, 0x013d90,2, 0x013da0,6, 0x013e00,1, 0x014000,3, 0x014010,15, 0x014050,16, 0x01409c,1, 0x0140b0,9, 0x0140e0,1, 0x0140f0,3, 0x014100,12, 0x014134,4, 0x014158,1, 0x014180,1, 0x014194,2, 0x0141ac,11, 0x0141ec,4, 0x014200,3, 0x014210,15, 0x014250,16, 0x01429c,1, 0x0142b0,9, 0x0142e0,1, 0x0142f0,3, 0x014300,12, 0x014334,4, 0x014358,1, 0x014380,1, 0x014394,2, 0x0143ac,11, 0x0143ec,4, 0x014400,11, 0x01444c,8, 0x014470,2, 0x01447c,33, 0x018000,2, 0x01805c,4, 0x018080,8, 0x0180a4,7, 0x0180c4,2, 0x018100,32, 0x018200,4, 0x018224,1, 0x018234,5, 0x018300,32, 0x018384,1, 0x01838c,1, 0x0183a4,3, 0x018400,5, 0x018420,5, 0x018440,5, 0x018460,5, 0x018480,5, 0x0184a0,5, 0x0184c0,5, 0x0184e0,5, 0x018500,5, 0x018520,5, 0x018540,5, 0x018560,5, 0x018580,5, 0x0185a0,5, 0x0185c0,5, 0x0185e0,5, 0x018610,4, 0x018624,4, 0x018810,3, 0x018820,11, 0x018850,3, 0x018860,7, 0x018884,11, 0x0188c8,2, 0x0188d4,2, 0x0188e0,8, 0x018a04,3, 0x018a20,3, 0x018a30,4, 0x018a44,21, 0x018b00,16, 0x018b4c,5, 0x018b68,5, 0x018c00,17, 0x018c54,28, 0x018cd4,13, 0x018d0c,2, 0x018e00,1, 0x018e10,2, 0x018e50,2, 0x018f00,4, 0x018f14,7, 0x018f38,5, 0x018f54,2, 0x018fa0,1, 0x018fb0,2, 0x018fc0,1, 0x018fd0,2, 0x018fe0,5, 0x019ff0,2052, 0x01c004,2, 0x01c010,1, 0x01c01c,2, 0x01c06c,27, 0x01c180,1, 0x01c190,2, 0x01c1a0,1, 0x01c1b0,2, 0x01c1c0,7, 0x01c1e0,7, 0x01c200,17, 0x01c254,28, 0x01c2d4,13, 0x01c30c,2, 0x01c40c,5, 0x01c428,2, 0x01c434,1, 0x01c448,2, 0x01c454,1, 0x01c464,25, 0x01c4d8,2, 0x01c4e4,7, 0x01c608,4, 0x01c624,3, 0x01c63c,1, 0x01c64c,27, 0x01c6c0,18, 0x01c70c,2, 0x01c71c,5, 0x01c738,2, 0x01c744,1, 0x01c75c,1, 0x01c7dc,1, 0x01c7e4,1, 0x01c7f8,7, 0x01c818,7, 0x01c840,19, 0x01c8a0,5, 0x01c8c0,1, 0x01c900,5, 0x01c918,7, 0x01c940,19, 0x01c9a0,5, 0x01c9c0,1, 0x01ca00,5, 0x01ca18,7, 0x01ca40,19, 0x01caa0,5, 0x01cac0,1, 0x01cb00,5, 0x01cb18,7, 0x01cb40,19, 0x01cba0,5, 0x01cbc0,1, 0x01cc00,5, 0x01cc18,7, 0x01cc40,19, 0x01cca0,5, 0x01ccc0,1, 0x01cd00,5, 0x01cd18,7, 0x01cd40,19, 0x01cda0,5, 0x01cdc0,1, 0x01ce00,5, 0x01ce18,7, 0x01ce40,19, 0x01cea0,5, 0x01cec0,1, 0x01cf00,5, 0x01cf18,7, 0x01cf40,19, 0x01cfa0,5, 0x01cfc0,1, 0x01d000,19, 0x01d054,21, 0x01d0ac,6, 0x01d0d0,2, 0x01d0e8,15, 0x01d140,1, 0x01d148,53, 0x01d220,12, 0x01d25c,6, 0x01d278,2, 0x01d284,1, 0x01d298,2, 0x01d2a8,6, 0x01d300,2, 0x01d310,20, 0x01d368,2, 0x01d37c,6, 0x01d3c0,5, 0x01d3e0,6, 0x01d400,19, 0x01d454,21, 0x01d4ac,6, 0x01d4d0,2, 0x01d4e8,15, 0x01d540,1, 0x01d548,53, 0x01d620,12, 0x01d65c,6, 0x01d678,2, 0x01d684,1, 0x01d698,2, 0x01d6a8,6, 0x01d700,2, 0x01d710,20, 0x01d768,2, 0x01d77c,6, 0x01d7c0,5, 0x01d7e0,6, 0x01d800,16, 0x01d844,1, 0x01d880,8, 0x01d8c4,1, 0x01d8cc,5, 0x01d8e4,7, 0x01d920,1, 0x01d968,3, 0x01d9e0,6, 0x01da00,2, 0x01da14,2, 0x01da20,8, 0x01da44,1, 0x01da58,2, 0x01da64,1, 0x01da78,8, 0x01db04,1, 0x01db0c,14, 0x01db50,2, 0x01db60,1, 0x01db70,2, 0x01db80,1, 0x01db90,2, 0x01dba0,3, 0x01dc00,1, 0x01dc0c,1, 0x01dd80,13, 0x01ddbc,1, 0x01dde0,9, 0x01df00,1, 0x01df08,1, 0x01df14,5, 0x01df38,1, 0x01df40,1, 0x01df54,2, 0x01dfa0,1, 0x01dfb0,2, 0x01e5c0,1, 0x01e5dc,1, 0x01e5e4,14, 0x01e620,4, 0x01e668,6, 0x01e780,160, 0x01ea04,12, 0x01ec00,8, 0x01ec24,1, 0x01ec30,1, 0x01ec44,20, 0x01ec9c,2, 0x01ecac,14, 0x01ed80,1, 0x01edc4,1, 0x01ede0,1, 0x01ede8,3, 0x01edf8,1, 0x01ee00,8, 0x01ee24,1, 0x01ee30,1, 0x01ee44,20, 0x01ee9c,2, 0x01eeac,14, 0x01ef80,1, 0x01efc4,1, 0x01efe0,1, 0x01efe8,3, 0x01eff8,1, 0x01f000,1024, 0x030000,1, 0x030010,2, 0x030020,1, 0x030030,2, 0x030040,1, 0x030050,2, 0x030100,27, 0x030180,3, 0x030200,80, 0x030400,288, 0x030900,32, 0x030a04,1, 0x030c00,128, 0x030e1c,1, 0x030e3c,1, 0x030e44,1, 0x030e5c,16, 0x030f10,28, 0x031000,14, 0x031040,14, 0x031080,14, 0x0310c0,14, 0x031100,133, 0x031318,13, 0x033000,1025, 0x034010,2, 0x034104,1, 0x034224,1, 0x034260,7, 0x034284,4, 0x034304,1, 0x034314,3, 0x034324,1, 0x034334,3, 0x034344,1, 0x034358,2, 0x034414,3, 0x034510,4, 0x034608,6, 0x034800,7, 0x034820,4, 0x034868,6, 0x034980,45, 0x034a40,13, 0x034a80,13, 0x034ac0,13, 0x034b00,13, 0x034b40,13, 0x034b80,13, 0x034bc0,13, 0x035020,1, 0x035028,1, 0x035040,2, 0x03504c,1, 0x035058,3, 0x035068,4, 0x035104,5, 0x035200,12, 0x035240,12, 0x035280,12, 0x0352c0,12, 0x035300,12, 0x035340,12, 0x035380,12, 0x0353c0,12, 0x036000,128, 0x036204,12, 0x036400,8, 0x036424,1, 0x036430,1, 0x036444,20, 0x03649c,2, 0x0364ac,14, 0x036580,1, 0x0365c4,1, 0x0365e0,1, 0x0365e8,3, 0x0365f8,1, 0x036600,4, 0x036614,6, 0x036638,3, 0x036654,2, 0x0366a0,1, 0x0366b0,2, 0x0366c0,1, 0x0366d0,2, 0x036700,1, 0x036710,2, 0x036720,1, 0x036730,2, 0x040000,19, 0x040050,3, 0x040060,2, 0x040080,1, 0x040088,3, 0x0400a4,5, 0x0400c0,4, 0x0400e0,3, 0x040100,6, 0x04011c,14, 0x04015c,1, 0x040170,4, 0x040190,3, 0x0401a4,1, 0x0401ac,5, 0x0401c4,1, 0x0401cc,6, 0x040200,3, 0x040210,3, 0x040220,3, 0x040230,3, 0x040240,3, 0x040250,3, 0x040260,3, 0x040270,3, 0x040280,3, 0x040290,3, 0x0402a0,3, 0x0402b0,3, 0x0402c0,3, 0x0402d0,3, 0x0402e0,3, 0x0402f0,3, 0x040304,1, 0x040314,8, 0x040340,11, 0x040490,1, 0x0404a8,15, 0x040510,18, 0x04055c,3, 0x04056c,3, 0x04057c,3, 0x04058c,2, 0x04059c,17, 0x040610,16, 0x0406e0,51, 0x0407d0,3, 0x0407f0,1, 0x040800,337, 0x040d50,18, 0x040d9c,4, 0x040db0,11, 0x040df0,11, 0x040e20,1, 0x040e28,11, 0x040e58,1, 0x040e60,2, 0x040e6c,1, 0x040e74,11, 0x040eb0,4, 0x040ec8,2, 0x040ed4,7, 0x040ef8,8, 0x040f20,4, 0x041000,33, 0x041100,30, 0x041180,15, 0x0411dc,1, 0x0411e4,15, 0x041224,1, 0x041230,1, 0x041244,20, 0x04129c,2, 0x0412ac,14, 0x041380,1, 0x0413c4,1, 0x0413e0,1, 0x0413e8,3, 0x0413f8,1, 0x041400,8, 0x041424,1, 0x041430,1, 0x041444,20, 0x04149c,2, 0x0414ac,14, 0x041580,1, 0x0415c4,1, 0x0415e0,1, 0x0415e8,3, 0x0415f8,1, 0x041600,4, 0x041614,7, 0x041638,4, 0x041654,2, 0x0416a0,1, 0x0416b0,2, 0x0416c0,1, 0x0416d0,2, 0x0416e0,1, 0x041a00,1, 0x041a10,2, 0x041a20,1, 0x041a30,2, 0x041c00,128, 0x041e04,12, 0x042000,5, 0x042020,5, 0x042040,5, 0x042060,5, 0x042080,5, 0x0420a0,5, 0x0420c0,5, 0x0420e0,5, 0x042100,5, 0x042120,5, 0x042140,5, 0x042160,5, 0x042180,5, 0x0421a0,5, 0x0421c0,5, 0x0421e0,5, 0x042200,5, 0x042220,5, 0x042240,5, 0x042260,5, 0x042280,5, 0x0422a0,5, 0x0422c0,5, 0x0422e0,5, 0x042300,5, 0x042320,5, 0x042340,5, 0x042360,5, 0x042380,5, 0x0423a0,5, 0x0423c0,5, 0x0423e0,5, 0x042400,5, 0x042420,5, 0x042440,5, 0x042460,5, 0x042480,5, 0x0424a0,5, 0x0424c0,5, 0x0424e0,5, 0x042500,5, 0x042520,5, 0x042540,5, 0x042560,5, 0x042580,5, 0x0425a0,5, 0x0425c0,5, 0x0425e0,5, 0x042600,5, 0x042620,5, 0x042640,5, 0x042660,5, 0x042680,5, 0x0426a0,5, 0x0426c0,5, 0x0426e0,5, 0x042700,5, 0x042720,5, 0x042740,5, 0x042760,5, 0x042780,5, 0x0427a0,5, 0x0427c0,5, 0x0427e0,5, 0x042800,5, 0x042820,5, 0x042840,5, 0x042860,5, 0x042880,5, 0x0428a0,5, 0x0428c0,5, 0x0428e0,5, 0x042900,5, 0x042920,5, 0x042940,5, 0x042960,5, 0x042980,5, 0x0429a0,5, 0x0429c0,5, 0x0429e0,5, 0x042a00,5, 0x042a20,5, 0x042a40,5, 0x042a60,5, 0x042a80,5, 0x042aa0,5, 0x042ac0,5, 0x042ae0,5, 0x042b00,5, 0x042b20,5, 0x042b40,5, 0x042b60,5, 0x042b80,5, 0x042ba0,5, 0x042bc0,5, 0x042be0,5, 0x042c00,5, 0x042c20,5, 0x042c40,5, 0x042c60,5, 0x042c80,5, 0x042ca0,5, 0x042cc0,5, 0x042ce0,5, 0x042d00,5, 0x042d20,5, 0x042d40,5, 0x042d60,5, 0x042d80,5, 0x042da0,5, 0x042dc0,5, 0x042de0,5, 0x042e00,5, 0x042e20,5, 0x042e40,5, 0x042e60,5, 0x042e80,5, 0x042ea0,5, 0x042ec0,5, 0x042ee0,5, 0x042f00,5, 0x042f20,5, 0x042f40,5, 0x042f60,5, 0x042f80,5, 0x042fa0,5, 0x042fc0,5, 0x042fe0,5, 0x043000,5, 0x043020,5, 0x043040,5, 0x043060,5, 0x043080,5, 0x0430a0,5, 0x0430c0,5, 0x0430e0,5, 0x043100,5, 0x043120,5, 0x043140,5, 0x043160,5, 0x043180,5, 0x0431a0,5, 0x0431c0,5, 0x0431e0,5, 0x043200,5, 0x043220,5, 0x043240,5, 0x043260,5, 0x043280,5, 0x0432a0,5, 0x0432c0,5, 0x0432e0,5, 0x043300,5, 0x043320,5, 0x043340,5, 0x043360,5, 0x043380,5, 0x0433a0,5, 0x0433c0,5, 0x0433e0,5, 0x043400,5, 0x043420,5, 0x043440,5, 0x043460,5, 0x043480,5, 0x0434a0,5, 0x0434c0,5, 0x0434e0,5, 0x043500,5, 0x043520,5, 0x043540,5, 0x043560,5, 0x043580,5, 0x0435a0,5, 0x0435c0,5, 0x0435e0,5, 0x043600,5, 0x043620,5, 0x043640,5, 0x043660,5, 0x043680,5, 0x0436a0,5, 0x0436c0,5, 0x0436e0,5, 0x043700,5, 0x043720,5, 0x043740,5, 0x043760,5, 0x043780,5, 0x0437a0,5, 0x0437c0,5, 0x0437e0,5, 0x043800,5, 0x043820,5, 0x043840,5, 0x043860,5, 0x043880,5, 0x0438a0,5, 0x0438c0,5, 0x0438e0,5, 0x043900,5, 0x043920,5, 0x043940,5, 0x043960,5, 0x043980,5, 0x0439a0,5, 0x0439c0,5, 0x0439e0,5, 0x043a00,5, 0x043a20,5, 0x043a40,5, 0x043a60,5, 0x043a80,5, 0x043aa0,5, 0x043ac0,5, 0x043ae0,5, 0x043b00,5, 0x043b20,5, 0x043b40,5, 0x043b60,5, 0x043b80,5, 0x043ba0,5, 0x043bc0,5, 0x043be0,5, 0x043c00,5, 0x043c20,5, 0x043c40,5, 0x043c60,5, 0x043c80,5, 0x043ca0,5, 0x043cc0,5, 0x043ce0,5, 0x043d00,5, 0x043d20,5, 0x043d40,5, 0x043d60,5, 0x043d80,5, 0x043da0,5, 0x043dc0,5, 0x043de0,5, 0x043e00,5, 0x043e20,5, 0x043e40,5, 0x043e60,5, 0x043e80,5, 0x043ea0,5, 0x043ec0,5, 0x043ee0,5, 0x043f00,5, 0x043f20,5, 0x043f40,5, 0x043f60,5, 0x043f80,5, 0x043fa0,5, 0x043fc0,5, 0x043fe0,5, 0x044004,1, 0x044200,8, 0x044230,52, 0x044320,3, 0x044fc8,112, 0x045190,88, 0x045300,39, 0x045400,13, 0x045440,9, 0x04546c,5, 0x047ff0,2, 0x048000,5, 0x048020,5, 0x048040,5, 0x048060,5, 0x048080,5, 0x0480a0,5, 0x0480c0,5, 0x0480e0,5, 0x048100,5, 0x048120,5, 0x048140,5, 0x048160,5, 0x048180,5, 0x0481a0,5, 0x0481c0,5, 0x0481e0,5, 0x048200,5, 0x048220,5, 0x048240,5, 0x048260,5, 0x048280,5, 0x0482a0,5, 0x0482c0,5, 0x0482e0,5, 0x048300,5, 0x048320,5, 0x048340,5, 0x048360,5, 0x048380,5, 0x0483a0,5, 0x0483c0,5, 0x0483e0,5, 0x048400,5, 0x048420,5, 0x048440,5, 0x048460,5, 0x048480,5, 0x0484a0,5, 0x0484c0,5, 0x0484e0,5, 0x048500,5, 0x048520,5, 0x048540,5, 0x048560,5, 0x048580,5, 0x0485a0,5, 0x0485c0,5, 0x0485e0,5, 0x048600,5, 0x048620,5, 0x048640,5, 0x048660,5, 0x048680,5, 0x0486a0,5, 0x0486c0,5, 0x0486e0,5, 0x048700,5, 0x048720,5, 0x048740,5, 0x048760,5, 0x048780,5, 0x0487a0,5, 0x0487c0,5, 0x0487e0,5, 0x048800,5, 0x048820,5, 0x048840,5, 0x048860,5, 0x048880,5, 0x0488a0,5, 0x0488c0,5, 0x0488e0,5, 0x048900,5, 0x048920,5, 0x048940,5, 0x048960,5, 0x048980,5, 0x0489a0,5, 0x0489c0,5, 0x0489e0,5, 0x048a00,5, 0x048a20,5, 0x048a40,5, 0x048a60,5, 0x048a80,5, 0x048aa0,5, 0x048ac0,5, 0x048ae0,5, 0x048b00,5, 0x048b20,5, 0x048b40,5, 0x048b60,5, 0x048b80,5, 0x048ba0,5, 0x048bc0,5, 0x048be0,5, 0x048c00,5, 0x048c20,5, 0x048c40,5, 0x048c60,5, 0x048c80,5, 0x048ca0,5, 0x048cc0,5, 0x048ce0,5, 0x048d00,5, 0x048d20,5, 0x048d40,5, 0x048d60,5, 0x048d80,5, 0x048da0,5, 0x048dc0,5, 0x048de0,5, 0x048e00,5, 0x048e20,5, 0x048e40,5, 0x048e60,5, 0x048e80,5, 0x048ea0,5, 0x048ec0,5, 0x048ee0,5, 0x048f00,5, 0x048f20,5, 0x048f40,5, 0x048f60,5, 0x048f80,5, 0x048fa0,5, 0x048fc0,5, 0x048fe0,5, 0x049000,5, 0x049020,5, 0x049040,5, 0x049060,5, 0x049080,5, 0x0490a0,5, 0x0490c0,5, 0x0490e0,5, 0x049100,5, 0x049120,5, 0x049140,5, 0x049160,5, 0x049180,5, 0x0491a0,5, 0x0491c0,5, 0x0491e0,5, 0x049200,5, 0x049220,5, 0x049240,5, 0x049260,5, 0x049280,5, 0x0492a0,5, 0x0492c0,5, 0x0492e0,5, 0x049300,5, 0x049320,5, 0x049340,5, 0x049360,5, 0x049380,5, 0x0493a0,5, 0x0493c0,5, 0x0493e0,5, 0x049400,5, 0x049420,5, 0x049440,5, 0x049460,5, 0x049480,5, 0x0494a0,5, 0x0494c0,5, 0x0494e0,5, 0x049500,5, 0x049520,5, 0x049540,5, 0x049560,5, 0x049580,5, 0x0495a0,5, 0x0495c0,5, 0x0495e0,5, 0x049600,5, 0x049620,5, 0x049640,5, 0x049660,5, 0x049680,5, 0x0496a0,5, 0x0496c0,5, 0x0496e0,5, 0x049700,5, 0x049720,5, 0x049740,5, 0x049760,5, 0x049780,5, 0x0497a0,5, 0x0497c0,5, 0x0497e0,5, 0x049800,5, 0x049820,5, 0x049840,5, 0x049860,5, 0x049880,5, 0x0498a0,5, 0x0498c0,5, 0x0498e0,5, 0x049900,5, 0x049920,5, 0x049940,5, 0x049960,5, 0x049980,5, 0x0499a0,5, 0x0499c0,5, 0x0499e0,5, 0x049a00,5, 0x049a20,5, 0x049a40,5, 0x049a60,5, 0x049a80,5, 0x049aa0,5, 0x049ac0,5, 0x049ae0,5, 0x049b00,5, 0x049b20,5, 0x049b40,5, 0x049b60,5, 0x049b80,5, 0x049ba0,5, 0x049bc0,5, 0x049be0,5, 0x049c00,5, 0x049c20,5, 0x049c40,5, 0x049c60,5, 0x049c80,5, 0x049ca0,5, 0x049cc0,5, 0x049ce0,5, 0x049d00,5, 0x049d20,5, 0x049d40,5, 0x049d60,5, 0x049d80,5, 0x049da0,5, 0x049dc0,5, 0x049de0,5, 0x049e00,5, 0x049e20,5, 0x049e40,5, 0x049e60,5, 0x049e80,5, 0x049ea0,5, 0x049ec0,5, 0x049ee0,5, 0x049f00,5, 0x049f20,5, 0x049f40,5, 0x049f60,5, 0x049f80,5, 0x049fa0,5, 0x049fc0,5, 0x049fe0,5, 0x04a000,5, 0x04a020,5, 0x04a040,5, 0x04a060,5, 0x04a080,5, 0x04a0a0,5, 0x04a0c0,5, 0x04a0e0,5, 0x04a100,5, 0x04a120,5, 0x04a140,5, 0x04a160,5, 0x04a180,5, 0x04a1a0,5, 0x04a1c0,5, 0x04a1e0,5, 0x04a200,5, 0x04a220,5, 0x04a240,5, 0x04a260,5, 0x04a280,5, 0x04a2a0,5, 0x04a2c0,5, 0x04a2e0,5, 0x04a300,5, 0x04a320,5, 0x04a340,5, 0x04a360,5, 0x04a380,5, 0x04a3a0,5, 0x04a3c0,5, 0x04a3e0,5, 0x04a400,5, 0x04a420,5, 0x04a440,5, 0x04a460,5, 0x04a480,5, 0x04a4a0,5, 0x04a4c0,5, 0x04a4e0,5, 0x04a500,5, 0x04a520,5, 0x04a540,5, 0x04a560,5, 0x04a580,5, 0x04a5a0,5, 0x04a5c0,5, 0x04a5e0,5, 0x04a600,5, 0x04a620,5, 0x04a640,5, 0x04a660,5, 0x04a680,5, 0x04a6a0,5, 0x04a6c0,5, 0x04a6e0,5, 0x04a700,5, 0x04a720,5, 0x04a740,5, 0x04a760,5, 0x04a780,5, 0x04a7a0,5, 0x04a7c0,5, 0x04a7e0,5, 0x04a800,5, 0x04a820,5, 0x04a840,5, 0x04a860,5, 0x04a880,5, 0x04a8a0,5, 0x04a8c0,5, 0x04a8e0,5, 0x04a900,5, 0x04a920,5, 0x04a940,5, 0x04a960,5, 0x04a980,5, 0x04a9a0,5, 0x04a9c0,5, 0x04a9e0,5, 0x04aa00,5, 0x04aa20,5, 0x04aa40,5, 0x04aa60,5, 0x04aa80,5, 0x04aaa0,5, 0x04aac0,5, 0x04aae0,5, 0x04ab00,5, 0x04ab20,5, 0x04ab40,5, 0x04ab60,5, 0x04ab80,5, 0x04aba0,5, 0x04abc0,5, 0x04abe0,5, 0x04ac00,5, 0x04ac20,5, 0x04ac40,5, 0x04ac60,5, 0x04ac80,5, 0x04aca0,5, 0x04acc0,5, 0x04ace0,5, 0x04ad00,5, 0x04ad20,5, 0x04ad40,5, 0x04ad60,5, 0x04ad80,5, 0x04ada0,5, 0x04adc0,5, 0x04ade0,5, 0x04ae00,5, 0x04ae20,5, 0x04ae40,5, 0x04ae60,5, 0x04ae80,5, 0x04aea0,5, 0x04aec0,5, 0x04aee0,5, 0x04af00,5, 0x04af20,5, 0x04af40,5, 0x04af60,5, 0x04af80,5, 0x04afa0,5, 0x04afc0,5, 0x04afe0,5, 0x04b000,5, 0x04b020,5, 0x04b040,5, 0x04b060,5, 0x04b080,5, 0x04b0a0,5, 0x04b0c0,5, 0x04b0e0,5, 0x04b100,5, 0x04b120,5, 0x04b140,5, 0x04b160,5, 0x04b180,5, 0x04b1a0,5, 0x04b1c0,5, 0x04b1e0,5, 0x04b200,5, 0x04b220,5, 0x04b240,5, 0x04b260,5, 0x04b280,5, 0x04b2a0,5, 0x04b2c0,5, 0x04b2e0,5, 0x04b300,5, 0x04b320,5, 0x04b340,5, 0x04b360,5, 0x04b380,5, 0x04b3a0,5, 0x04b3c0,5, 0x04b3e0,5, 0x04b400,5, 0x04b420,5, 0x04b440,5, 0x04b460,5, 0x04b480,5, 0x04b4a0,5, 0x04b4c0,5, 0x04b4e0,5, 0x04b500,5, 0x04b520,5, 0x04b540,5, 0x04b560,5, 0x04b580,5, 0x04b5a0,5, 0x04b5c0,5, 0x04b5e0,5, 0x04b600,5, 0x04b620,5, 0x04b640,5, 0x04b660,5, 0x04b680,5, 0x04b6a0,5, 0x04b6c0,5, 0x04b6e0,5, 0x04b700,5, 0x04b720,5, 0x04b740,5, 0x04b760,5, 0x04b780,5, 0x04b7a0,5, 0x04b7c0,5, 0x04b7e0,5, 0x04b800,5, 0x04b820,5, 0x04b840,5, 0x04b860,5, 0x04b880,5, 0x04b8a0,5, 0x04b8c0,5, 0x04b8e0,5, 0x04b900,5, 0x04b920,5, 0x04b940,5, 0x04b960,5, 0x04b980,5, 0x04b9a0,5, 0x04b9c0,5, 0x04b9e0,5, 0x04ba00,5, 0x04ba20,5, 0x04ba40,5, 0x04ba60,5, 0x04ba80,5, 0x04baa0,5, 0x04bac0,5, 0x04bae0,5, 0x04bb00,5, 0x04bb20,5, 0x04bb40,5, 0x04bb60,5, 0x04bb80,5, 0x04bba0,5, 0x04bbc0,5, 0x04bbe0,5, 0x04bc00,5, 0x04bc20,5, 0x04bc40,5, 0x04bc60,5, 0x04bc80,5, 0x04bca0,5, 0x04bcc0,5, 0x04bce0,5, 0x04bd00,5, 0x04bd20,5, 0x04bd40,5, 0x04bd60,5, 0x04bd80,5, 0x04bda0,5, 0x04bdc0,5, 0x04bde0,5, 0x04be00,5, 0x04be20,5, 0x04be40,5, 0x04be60,5, 0x04be80,5, 0x04bea0,5, 0x04bec0,5, 0x04bee0,5, 0x04bf00,5, 0x04bf20,5, 0x04bf40,5, 0x04bf60,5, 0x04bf80,5, 0x04bfa0,5, 0x04bfc0,5, 0x04bfe0,5, 0x04c000,5, 0x04c020,5, 0x04c040,5, 0x04c060,5, 0x04c080,5, 0x04c0a0,5, 0x04c0c0,5, 0x04c0e0,5, 0x04c100,5, 0x04c120,5, 0x04c140,5, 0x04c160,5, 0x04c180,5, 0x04c1a0,5, 0x04c1c0,5, 0x04c1e0,5, 0x04c200,5, 0x04c220,5, 0x04c240,5, 0x04c260,5, 0x04c280,5, 0x04c2a0,5, 0x04c2c0,5, 0x04c2e0,5, 0x04c300,5, 0x04c320,5, 0x04c340,5, 0x04c360,5, 0x04c380,5, 0x04c3a0,5, 0x04c3c0,5, 0x04c3e0,5, 0x04c400,5, 0x04c420,5, 0x04c440,5, 0x04c460,5, 0x04c480,5, 0x04c4a0,5, 0x04c4c0,5, 0x04c4e0,5, 0x04c500,5, 0x04c520,5, 0x04c540,5, 0x04c560,5, 0x04c580,5, 0x04c5a0,5, 0x04c5c0,5, 0x04c5e0,5, 0x04c600,5, 0x04c620,5, 0x04c640,5, 0x04c660,5, 0x04c680,5, 0x04c6a0,5, 0x04c6c0,5, 0x04c6e0,5, 0x04c700,5, 0x04c720,5, 0x04c740,5, 0x04c760,5, 0x04c780,5, 0x04c7a0,5, 0x04c7c0,5, 0x04c7e0,5, 0x04c800,5, 0x04c820,5, 0x04c840,5, 0x04c860,5, 0x04c880,5, 0x04c8a0,5, 0x04c8c0,5, 0x04c8e0,5, 0x04c900,5, 0x04c920,5, 0x04c940,5, 0x04c960,5, 0x04c980,5, 0x04c9a0,5, 0x04c9c0,5, 0x04c9e0,5, 0x04ca00,5, 0x04ca20,5, 0x04ca40,5, 0x04ca60,5, 0x04ca80,5, 0x04caa0,5, 0x04cac0,5, 0x04cae0,5, 0x04cb00,5, 0x04cb20,5, 0x04cb40,5, 0x04cb60,5, 0x04cb80,5, 0x04cba0,5, 0x04cbc0,5, 0x04cbe0,5, 0x04cc00,5, 0x04cc20,5, 0x04cc40,5, 0x04cc60,5, 0x04cc80,5, 0x04cca0,5, 0x04ccc0,5, 0x04cce0,5, 0x04cd00,5, 0x04cd20,5, 0x04cd40,5, 0x04cd60,5, 0x04cd80,5, 0x04cda0,5, 0x04cdc0,5, 0x04cde0,5, 0x04ce00,5, 0x04ce20,5, 0x04ce40,5, 0x04ce60,5, 0x04ce80,5, 0x04cea0,5, 0x04cec0,5, 0x04cee0,5, 0x04cf00,5, 0x04cf20,5, 0x04cf40,5, 0x04cf60,5, 0x04cf80,5, 0x04cfa0,5, 0x04cfc0,5, 0x04cfe0,5, 0x050004,1, 0x05000c,5, 0x05900c,10, 0x05903c,1, 0x05a000,1, 0x05a008,1, 0x05a010,1, 0x05a018,1, 0x05a020,1, 0x05a028,1, 0x05a030,1, 0x05a038,1, 0x05a040,1, 0x05a048,1, 0x05a050,1, 0x05a058,1, 0x05a060,1, 0x05a068,1, 0x05a070,1, 0x05a078,1, 0x05a080,1, 0x05a088,1, 0x05a090,1, 0x05a098,1, 0x05a0a0,1, 0x05a0a8,1, 0x05a0b0,1, 0x05a0b8,1, 0x05a0c0,1, 0x05a0c8,1, 0x05a0d0,1, 0x05a0d8,1, 0x05a0e0,1, 0x05a0e8,1, 0x05a0f0,1, 0x05a0f8,1, 0x05a100,1, 0x05a108,1, 0x05a110,1, 0x05a118,1, 0x05a120,1, 0x05a128,1, 0x05a130,1, 0x05a138,1, 0x05a140,1, 0x05a148,1, 0x05a150,1, 0x05a158,1, 0x05a160,1, 0x05a168,1, 0x05a170,1, 0x05a178,1, 0x05a180,1, 0x05a188,1, 0x05a190,1, 0x05a198,1, 0x05a1a0,1, 0x05a1a8,1, 0x05a1b0,1, 0x05a1b8,1, 0x05a1c0,1, 0x05a1c8,1, 0x05a1d0,1, 0x05a1d8,1, 0x05a1e0,1, 0x05a1e8,1, 0x05a1f0,1, 0x05a1f8,1, 0x05a200,1, 0x05a208,1, 0x05a210,1, 0x05a218,1, 0x05a220,1, 0x05a228,1, 0x05a230,1, 0x05a238,1, 0x05a240,1, 0x05a248,1, 0x05a250,1, 0x05a258,1, 0x05a260,1, 0x05a268,1, 0x05a270,1, 0x05a278,1, 0x05a280,1, 0x05a288,1, 0x05a290,1, 0x05a298,1, 0x05a2a0,1, 0x05a2a8,1, 0x05a2b0,1, 0x05a2b8,1, 0x05a2c0,1, 0x05a2c8,1, 0x05a2d0,1, 0x05a2d8,1, 0x05a2e0,1, 0x05a2e8,1, 0x05a2f0,1, 0x05a2f8,1, 0x05a300,1, 0x05a308,1, 0x05a310,1, 0x05a318,1, 0x05a320,1, 0x05a328,1, 0x05a330,1, 0x05a338,1, 0x05a340,1, 0x05a348,1, 0x05a350,1, 0x05a358,1, 0x05a360,1, 0x05a368,1, 0x05a370,1, 0x05a378,1, 0x05a380,1, 0x05a388,1, 0x05a390,1, 0x05a398,1, 0x05a3a0,1, 0x05a3a8,1, 0x05a3b0,1, 0x05a3b8,1, 0x05a3c0,1, 0x05a3c8,1, 0x05a3d0,1, 0x05a3d8,1, 0x05a3e0,1, 0x05a3e8,1, 0x05a3f0,1, 0x05a3f8,1, 0x05a400,1, 0x05a408,1, 0x05a410,1, 0x05a418,1, 0x05a420,1, 0x05a428,1, 0x05a430,1, 0x05a438,1, 0x05a440,1, 0x05a448,1, 0x05a450,1, 0x05a458,1, 0x05a460,1, 0x05a468,1, 0x05a470,1, 0x05a478,1, 0x05a480,1, 0x05a488,1, 0x05a490,1, 0x05a498,1, 0x05a4a0,1, 0x05a4a8,1, 0x05a4b0,1, 0x05a4b8,1, 0x05a4c0,1, 0x05a4c8,1, 0x05a4d0,1, 0x05a4d8,1, 0x05a4e0,1, 0x05a4e8,1, 0x05a4f0,1, 0x05a4f8,1, 0x05a500,1, 0x05a508,1, 0x05a510,1, 0x05a518,1, 0x05a520,1, 0x05a528,1, 0x05a530,1, 0x05a538,1, 0x05a540,1, 0x05a548,1, 0x05a550,1, 0x05a558,1, 0x05a560,1, 0x05a568,1, 0x05a570,1, 0x05a578,1, 0x05a580,1, 0x05a588,1, 0x05a590,1, 0x05a598,1, 0x05a5a0,1, 0x05a5a8,1, 0x05a5b0,1, 0x05a5b8,1, 0x05a5c0,1, 0x05a5c8,1, 0x05a5d0,1, 0x05a5d8,1, 0x05a5e0,1, 0x05a5e8,1, 0x05a5f0,1, 0x05a5f8,1, 0x05a600,1, 0x05a608,1, 0x05a610,1, 0x05a618,1, 0x05a620,1, 0x05a628,1, 0x05a630,1, 0x05a638,1, 0x05a640,1, 0x05a648,1, 0x05a650,1, 0x05a658,1, 0x05a660,1, 0x05a668,1, 0x05a670,1, 0x05a678,1, 0x05a680,1, 0x05a688,1, 0x05a690,1, 0x05a698,1, 0x05a6a0,1, 0x05a6a8,1, 0x05a6b0,1, 0x05a6b8,1, 0x05a6c0,1, 0x05a6c8,1, 0x05a6d0,1, 0x05a6d8,1, 0x05a6e0,1, 0x05a6e8,1, 0x05a6f0,1, 0x05a6f8,1, 0x05a700,1, 0x05a708,1, 0x05a710,1, 0x05a718,1, 0x05a720,1, 0x05a728,1, 0x05a730,1, 0x05a738,1, 0x05a740,1, 0x05a748,1, 0x05a750,1, 0x05a758,1, 0x05a760,1, 0x05a768,1, 0x05a770,1, 0x05a778,1, 0x05a780,1, 0x05a788,1, 0x05a790,1, 0x05a798,1, 0x05a7a0,1, 0x05a7a8,1, 0x05a7b0,1, 0x05a7b8,1, 0x05a7c0,1, 0x05a7c8,1, 0x05a7d0,1, 0x05a7d8,1, 0x05a7e0,1, 0x05a7e8,1, 0x05a7f0,1, 0x05a7f8,1, 0x05a800,1, 0x05a808,1, 0x05a810,1, 0x05a818,1, 0x05a820,1, 0x05a828,1, 0x05a830,1, 0x05a838,1, 0x05a840,1, 0x05a848,1, 0x05a850,1, 0x05a858,1, 0x05a860,1, 0x05a868,1, 0x05a870,1, 0x05a878,1, 0x05a880,1, 0x05a888,1, 0x05a890,1, 0x05a898,1, 0x05a8a0,1, 0x05a8a8,1, 0x05a8b0,1, 0x05a8b8,1, 0x05a8c0,1, 0x05a8c8,1, 0x05a8d0,1, 0x05a8d8,1, 0x05a8e0,1, 0x05a8e8,1, 0x05a8f0,1, 0x05a8f8,1, 0x05a900,1, 0x05a908,1, 0x05a910,1, 0x05a918,1, 0x05a920,1, 0x05a928,1, 0x05a930,1, 0x05a938,1, 0x05a940,1, 0x05a948,1, 0x05a950,1, 0x05a958,1, 0x05a960,1, 0x05a968,1, 0x05a970,1, 0x05a978,1, 0x05a980,1, 0x05a988,1, 0x05a990,1, 0x05a998,1, 0x05a9a0,1, 0x05a9a8,1, 0x05a9b0,1, 0x05a9b8,1, 0x05a9c0,1, 0x05a9c8,1, 0x05a9d0,1, 0x05a9d8,1, 0x05a9e0,1, 0x05a9e8,1, 0x05a9f0,1, 0x05a9f8,1, 0x05aa00,1, 0x05aa08,1, 0x05aa10,1, 0x05aa18,1, 0x05aa20,1, 0x05aa28,1, 0x05aa30,1, 0x05aa38,1, 0x05aa40,1, 0x05aa48,1, 0x05aa50,1, 0x05aa58,1, 0x05aa60,1, 0x05aa68,1, 0x05aa70,1, 0x05aa78,1, 0x05aa80,1, 0x05aa88,1, 0x05aa90,1, 0x05aa98,1, 0x05aaa0,1, 0x05aaa8,1, 0x05aab0,1, 0x05aab8,1, 0x05aac0,1, 0x05aac8,1, 0x05aad0,1, 0x05aad8,1, 0x05aae0,1, 0x05aae8,1, 0x05aaf0,1, 0x05aaf8,1, 0x05ab00,1, 0x05ab08,1, 0x05ab10,1, 0x05ab18,1, 0x05ab20,1, 0x05ab28,1, 0x05ab30,1, 0x05ab38,1, 0x05ab40,1, 0x05ab48,1, 0x05ab50,1, 0x05ab58,1, 0x05ab60,1, 0x05ab68,1, 0x05ab70,1, 0x05ab78,1, 0x05ab80,1, 0x05ab88,1, 0x05ab90,1, 0x05ab98,1, 0x05aba0,1, 0x05aba8,1, 0x05abb0,1, 0x05abb8,1, 0x05abc0,1, 0x05abc8,1, 0x05abd0,1, 0x05abd8,1, 0x05abe0,1, 0x05abe8,1, 0x05abf0,1, 0x05abf8,1, 0x05ac00,1, 0x05ac08,1, 0x05ac10,1, 0x05ac18,1, 0x05ac20,1, 0x05ac28,1, 0x05ac30,1, 0x05ac38,1, 0x05ac40,1, 0x05ac48,1, 0x05ac50,1, 0x05ac58,1, 0x05ac60,1, 0x05ac68,1, 0x05ac70,1, 0x05ac78,1, 0x05ac80,1, 0x05ac88,1, 0x05ac90,1, 0x05ac98,1, 0x05aca0,1, 0x05aca8,1, 0x05acb0,1, 0x05acb8,1, 0x05acc0,1, 0x05acc8,1, 0x05acd0,1, 0x05acd8,1, 0x05ace0,1, 0x05ace8,1, 0x05acf0,1, 0x05acf8,1, 0x05ad00,1, 0x05ad08,1, 0x05ad10,1, 0x05ad18,1, 0x05ad20,1, 0x05ad28,1, 0x05ad30,1, 0x05ad38,1, 0x05ad40,1, 0x05ad48,1, 0x05ad50,1, 0x05ad58,1, 0x05ad60,1, 0x05ad68,1, 0x05ad70,1, 0x05ad78,1, 0x05ad80,1, 0x05ad88,1, 0x05ad90,1, 0x05ad98,1, 0x05ada0,1, 0x05ada8,1, 0x05adb0,1, 0x05adb8,1, 0x05adc0,1, 0x05adc8,1, 0x05add0,1, 0x05add8,1, 0x05ade0,1, 0x05ade8,1, 0x05adf0,1, 0x05adf8,1, 0x05ae00,1, 0x05ae08,1, 0x05ae10,1, 0x05ae18,1, 0x05ae20,1, 0x05ae28,1, 0x05ae30,1, 0x05ae38,1, 0x05ae40,1, 0x05ae48,1, 0x05ae50,1, 0x05ae58,1, 0x05ae60,1, 0x05ae68,1, 0x05ae70,1, 0x05ae78,1, 0x05ae80,1, 0x05ae88,1, 0x05ae90,1, 0x05ae98,1, 0x05aea0,1, 0x05aea8,1, 0x05aeb0,1, 0x05aeb8,1, 0x05aec0,1, 0x05aec8,1, 0x05aed0,1, 0x05aed8,1, 0x05aee0,1, 0x05aee8,1, 0x05aef0,1, 0x05aef8,1, 0x05af00,1, 0x05af08,1, 0x05af10,1, 0x05af18,1, 0x05af20,1, 0x05af28,1, 0x05af30,1, 0x05af38,1, 0x05af40,1, 0x05af48,1, 0x05af50,1, 0x05af58,1, 0x05af60,1, 0x05af68,1, 0x05af70,1, 0x05af78,1, 0x05af80,1, 0x05af88,1, 0x05af90,1, 0x05af98,1, 0x05afa0,1, 0x05afa8,1, 0x05afb0,1, 0x05afb8,1, 0x05afc0,1, 0x05afc8,1, 0x05afd0,1, 0x05afd8,1, 0x05afe0,1, 0x05afe8,1, 0x05aff0,1, 0x05aff8,1, 0x05b000,1, 0x05b008,1, 0x05b010,1, 0x05b018,1, 0x05b020,1, 0x05b028,1, 0x05b030,1, 0x05b038,1, 0x05b040,1, 0x05b048,1, 0x05b050,1, 0x05b058,1, 0x05b060,1, 0x05b068,1, 0x05b070,1, 0x05b078,1, 0x05b080,1, 0x05b088,1, 0x05b090,1, 0x05b098,1, 0x05b0a0,1, 0x05b0a8,1, 0x05b0b0,1, 0x05b0b8,1, 0x05b0c0,1, 0x05b0c8,1, 0x05b0d0,1, 0x05b0d8,1, 0x05b0e0,1, 0x05b0e8,1, 0x05b0f0,1, 0x05b0f8,1, 0x05b100,1, 0x05b108,1, 0x05b110,1, 0x05b118,1, 0x05b120,1, 0x05b128,1, 0x05b130,1, 0x05b138,1, 0x05b140,1, 0x05b148,1, 0x05b150,1, 0x05b158,1, 0x05b160,1, 0x05b168,1, 0x05b170,1, 0x05b178,1, 0x05b180,1, 0x05b188,1, 0x05b190,1, 0x05b198,1, 0x05b1a0,1, 0x05b1a8,1, 0x05b1b0,1, 0x05b1b8,1, 0x05b1c0,1, 0x05b1c8,1, 0x05b1d0,1, 0x05b1d8,1, 0x05b1e0,1, 0x05b1e8,1, 0x05b1f0,1, 0x05b1f8,1, 0x05b200,1, 0x05b208,1, 0x05b210,1, 0x05b218,1, 0x05b220,1, 0x05b228,1, 0x05b230,1, 0x05b238,1, 0x05b240,1, 0x05b248,1, 0x05b250,1, 0x05b258,1, 0x05b260,1, 0x05b268,1, 0x05b270,1, 0x05b278,1, 0x05b280,1, 0x05b288,1, 0x05b290,1, 0x05b298,1, 0x05b2a0,1, 0x05b2a8,1, 0x05b2b0,1, 0x05b2b8,1, 0x05b2c0,1, 0x05b2c8,1, 0x05b2d0,1, 0x05b2d8,1, 0x05b2e0,1, 0x05b2e8,1, 0x05b2f0,1, 0x05b2f8,1, 0x05b300,1, 0x05b308,1, 0x05b310,1, 0x05b318,1, 0x05b320,1, 0x05b328,1, 0x05b330,1, 0x05b338,1, 0x05b340,1, 0x05b348,1, 0x05b350,1, 0x05b358,1, 0x05b360,1, 0x05b368,1, 0x05b370,1, 0x05b378,1, 0x05b380,1, 0x05b388,1, 0x05b390,1, 0x05b398,1, 0x05b3a0,1, 0x05b3a8,1, 0x05b3b0,1, 0x05b3b8,1, 0x05b3c0,1, 0x05b3c8,1, 0x05b3d0,1, 0x05b3d8,1, 0x05b3e0,1, 0x05b3e8,1, 0x05b3f0,1, 0x05b3f8,1, 0x05b400,1, 0x05b408,1, 0x05b410,1, 0x05b418,1, 0x05b420,1, 0x05b428,1, 0x05b430,1, 0x05b438,1, 0x05b440,1, 0x05b448,1, 0x05b450,1, 0x05b458,1, 0x05b460,1, 0x05b468,1, 0x05b470,1, 0x05b478,1, 0x05b480,1, 0x05b488,1, 0x05b490,1, 0x05b498,1, 0x05b4a0,1, 0x05b4a8,1, 0x05b4b0,1, 0x05b4b8,1, 0x05b4c0,1, 0x05b4c8,1, 0x05b4d0,1, 0x05b4d8,1, 0x05b4e0,1, 0x05b4e8,1, 0x05b4f0,1, 0x05b4f8,1, 0x05b500,1, 0x05b508,1, 0x05b510,1, 0x05b518,1, 0x05b520,1, 0x05b528,1, 0x05b530,1, 0x05b538,1, 0x05b540,1, 0x05b548,1, 0x05b550,1, 0x05b558,1, 0x05b560,1, 0x05b568,1, 0x05b570,1, 0x05b578,1, 0x05b580,1, 0x05b588,1, 0x05b590,1, 0x05b598,1, 0x05b5a0,1, 0x05b5a8,1, 0x05b5b0,1, 0x05b5b8,1, 0x05b5c0,1, 0x05b5c8,1, 0x05b5d0,1, 0x05b5d8,1, 0x05b5e0,1, 0x05b5e8,1, 0x05b5f0,1, 0x05b5f8,1, 0x05b600,1, 0x05b608,1, 0x05b610,1, 0x05b618,1, 0x05b620,1, 0x05b628,1, 0x05b630,1, 0x05b638,1, 0x05b640,1, 0x05b648,1, 0x05b650,1, 0x05b658,1, 0x05b660,1, 0x05b668,1, 0x05b670,1, 0x05b678,1, 0x05b680,1, 0x05b688,1, 0x05b690,1, 0x05b698,1, 0x05b6a0,1, 0x05b6a8,1, 0x05b6b0,1, 0x05b6b8,1, 0x05b6c0,1, 0x05b6c8,1, 0x05b6d0,1, 0x05b6d8,1, 0x05b6e0,1, 0x05b6e8,1, 0x05b6f0,1, 0x05b6f8,1, 0x05b700,1, 0x05b708,1, 0x05b710,1, 0x05b718,1, 0x05b720,1, 0x05b728,1, 0x05b730,1, 0x05b738,1, 0x05b740,1, 0x05b748,1, 0x05b750,1, 0x05b758,1, 0x05b760,1, 0x05b768,1, 0x05b770,1, 0x05b778,1, 0x05b780,1, 0x05b788,1, 0x05b790,1, 0x05b798,1, 0x05b7a0,1, 0x05b7a8,1, 0x05b7b0,1, 0x05b7b8,1, 0x05b7c0,1, 0x05b7c8,1, 0x05b7d0,1, 0x05b7d8,1, 0x05b7e0,1, 0x05b7e8,1, 0x05b7f0,1, 0x05b7f8,1, 0x05b800,1, 0x05b808,1, 0x05b810,1, 0x05b818,1, 0x05b820,1, 0x05b828,1, 0x05b830,1, 0x05b838,1, 0x05b840,1, 0x05b848,1, 0x05b850,1, 0x05b858,1, 0x05b860,1, 0x05b868,1, 0x05b870,1, 0x05b878,1, 0x05b880,1, 0x05b888,1, 0x05b890,1, 0x05b898,1, 0x05b8a0,1, 0x05b8a8,1, 0x05b8b0,1, 0x05b8b8,1, 0x05b8c0,1, 0x05b8c8,1, 0x05b8d0,1, 0x05b8d8,1, 0x05b8e0,1, 0x05b8e8,1, 0x05b8f0,1, 0x05b8f8,1, 0x05b900,1, 0x05b908,1, 0x05b910,1, 0x05b918,1, 0x05b920,1, 0x05b928,1, 0x05b930,1, 0x05b938,1, 0x05b940,1, 0x05b948,1, 0x05b950,1, 0x05b958,1, 0x05b960,1, 0x05b968,1, 0x05b970,1, 0x05b978,1, 0x05b980,1, 0x05b988,1, 0x05b990,1, 0x05b998,1, 0x05b9a0,1, 0x05b9a8,1, 0x05b9b0,1, 0x05b9b8,1, 0x05b9c0,1, 0x05b9c8,1, 0x05b9d0,1, 0x05b9d8,1, 0x05b9e0,1, 0x05b9e8,1, 0x05b9f0,1, 0x05b9f8,1, 0x05ba00,1, 0x05ba08,1, 0x05ba10,1, 0x05ba18,1, 0x05ba20,1, 0x05ba28,1, 0x05ba30,1, 0x05ba38,1, 0x05ba40,1, 0x05ba48,1, 0x05ba50,1, 0x05ba58,1, 0x05ba60,1, 0x05ba68,1, 0x05ba70,1, 0x05ba78,1, 0x05ba80,1, 0x05ba88,1, 0x05ba90,1, 0x05ba98,1, 0x05baa0,1, 0x05baa8,1, 0x05bab0,1, 0x05bab8,1, 0x05bac0,1, 0x05bac8,1, 0x05bad0,1, 0x05bad8,1, 0x05bae0,1, 0x05bae8,1, 0x05baf0,1, 0x05baf8,1, 0x05bb00,1, 0x05bb08,1, 0x05bb10,1, 0x05bb18,1, 0x05bb20,1, 0x05bb28,1, 0x05bb30,1, 0x05bb38,1, 0x05bb40,1, 0x05bb48,1, 0x05bb50,1, 0x05bb58,1, 0x05bb60,1, 0x05bb68,1, 0x05bb70,1, 0x05bb78,1, 0x05bb80,1, 0x05bb88,1, 0x05bb90,1, 0x05bb98,1, 0x05bba0,1, 0x05bba8,1, 0x05bbb0,1, 0x05bbb8,1, 0x05bbc0,1, 0x05bbc8,1, 0x05bbd0,1, 0x05bbd8,1, 0x05bbe0,1, 0x05bbe8,1, 0x05bbf0,1, 0x05bbf8,1, 0x05bc00,1, 0x05bc08,1, 0x05bc10,1, 0x05bc18,1, 0x05bc20,1, 0x05bc28,1, 0x05bc30,1, 0x05bc38,1, 0x05bc40,1, 0x05bc48,1, 0x05bc50,1, 0x05bc58,1, 0x05bc60,1, 0x05bc68,1, 0x05bc70,1, 0x05bc78,1, 0x05bc80,1, 0x05bc88,1, 0x05bc90,1, 0x05bc98,1, 0x05bca0,1, 0x05bca8,1, 0x05bcb0,1, 0x05bcb8,1, 0x05bcc0,1, 0x05bcc8,1, 0x05bcd0,1, 0x05bcd8,1, 0x05bce0,1, 0x05bce8,1, 0x05bcf0,1, 0x05bcf8,1, 0x05bd00,1, 0x05bd08,1, 0x05bd10,1, 0x05bd18,1, 0x05bd20,1, 0x05bd28,1, 0x05bd30,1, 0x05bd38,1, 0x05bd40,1, 0x05bd48,1, 0x05bd50,1, 0x05bd58,1, 0x05bd60,1, 0x05bd68,1, 0x05bd70,1, 0x05bd78,1, 0x05bd80,1, 0x05bd88,1, 0x05bd90,1, 0x05bd98,1, 0x05bda0,1, 0x05bda8,1, 0x05bdb0,1, 0x05bdb8,1, 0x05bdc0,1, 0x05bdc8,1, 0x05bdd0,1, 0x05bdd8,1, 0x05bde0,1, 0x05bde8,1, 0x05bdf0,1, 0x05bdf8,1, 0x05be00,1, 0x05be08,1, 0x05be10,1, 0x05be18,1, 0x05be20,1, 0x05be28,1, 0x05be30,1, 0x05be38,1, 0x05be40,1, 0x05be48,1, 0x05be50,1, 0x05be58,1, 0x05be60,1, 0x05be68,1, 0x05be70,1, 0x05be78,1, 0x05be80,1, 0x05be88,1, 0x05be90,1, 0x05be98,1, 0x05bea0,1, 0x05bea8,1, 0x05beb0,1, 0x05beb8,1, 0x05bec0,1, 0x05bec8,1, 0x05bed0,1, 0x05bed8,1, 0x05bee0,1, 0x05bee8,1, 0x05bef0,1, 0x05bef8,1, 0x05bf00,1, 0x05bf08,1, 0x05bf10,1, 0x05bf18,1, 0x05bf20,1, 0x05bf28,1, 0x05bf30,1, 0x05bf38,1, 0x05bf40,1, 0x05bf48,1, 0x05bf50,1, 0x05bf58,1, 0x05bf60,1, 0x05bf68,1, 0x05bf70,1, 0x05bf78,1, 0x05bf80,1, 0x05bf88,1, 0x05bf90,1, 0x05bf98,1, 0x05bfa0,1, 0x05bfa8,1, 0x05bfb0,1, 0x05bfb8,1, 0x05bfc0,1, 0x05bfc8,1, 0x05bfd0,1, 0x05bfd8,1, 0x05bfe0,1, 0x05bfe8,1, 0x05bff0,1, 0x05bff8,1, 0x05c000,1024, 0x060400,5, 0x060500,6, 0x060520,6, 0x060600,6, 0x060700,7, 0x060800,64, 0x060940,1, 0x060a04,7, 0x060c00,4, 0x060d00,2, 0x060e00,4, 0x060f40,16, 0x060f88,2, 0x061000,34, 0x061100,34, 0x061200,34, 0x061300,34, 0x061400,34, 0x061500,34, 0x061600,34, 0x061700,34, 0x061800,34, 0x061900,34, 0x061a00,34, 0x061b00,34, 0x061c00,34, 0x061d00,34, 0x061e00,34, 0x061f00,34, 0x062100,2, 0x063000,3072, 0x066100,3, 0x068000,4, 0x068014,7, 0x068038,4, 0x068054,2, 0x0680a0,1, 0x0680b0,2, 0x0680c0,1, 0x0680d0,2, 0x068800,7, 0x068820,4, 0x068868,6, 0x068980,33, 0x068a20,1, 0x068a30,2, 0x068a80,2, 0x069000,4128, 0x06e000,2049, 0x07000c,6, 0x070028,3, 0x070040,12, 0x07007c,13, 0x0700bc,6, 0x0700d8,5, 0x0700f0,20, 0x070144,1, 0x070180,5, 0x0701fc,1, 0x070210,12, 0x070244,7, 0x070290,12, 0x0702c4,1, 0x0702d0,4, 0x070300,69, 0x070418,2, 0x070424,1, 0x07042c,1, 0x070434,3, 0x070448,1, 0x070450,1, 0x071000,33, 0x071100,33, 0x071200,33, 0x071300,33, 0x071400,33, 0x071500,33, 0x071600,33, 0x071700,33, 0x071800,33, 0x071900,33, 0x071a00,33, 0x071b00,33, 0x072000,67, 0x072200,67, 0x072400,67, 0x072600,67, 0x072800,67, 0x072a00,67, 0x072c00,67, 0x073000,33, 0x073100,33, 0x073200,33, 0x073300,33, 0x073400,33, 0x073500,33, 0x073600,33, 0x073700,33, 0x073800,33, 0x073900,33, 0x073a00,33, 0x073b00,33, 0x074000,1536, 0x076000,12, 0x077000,384, 0x077800,256, 0x078000,17, 0x078080,17, 0x078100,17, 0x078180,17, 0x078210,5, 0x078240,1, 0x078250,1, 0x078260,1, 0x078270,1, 0x078284,2, 0x0782d4,59, 0x078400,2, 0x078420,1, 0x078600,96, 0x078a60,5, 0x078a84,16, 0x078b00,32, 0x078b84,6, 0x078c20,10, 0x078c50,2, 0x078c5c,7, 0x078c80,4, 0x078ca0,1, 0x078cc0,9, 0x078e60,1, 0x078e80,10, 0x078ec0,2, 0x078ecc,1, 0x078ee0,6, 0x078f00,7, 0x078f20,7, 0x078f44,2, 0x078f50,2, 0x078f60,3, 0x078f70,1, 0x078f78,3, 0x078fb4,6, 0x078fd0,1, 0x079000,1, 0x079008,1, 0x079010,1, 0x079018,1, 0x079020,1, 0x079028,1, 0x079030,1, 0x079038,1, 0x079040,1, 0x079048,1, 0x079050,1, 0x079058,1, 0x079060,1, 0x079068,1, 0x079070,1, 0x079078,1, 0x079080,1, 0x079088,1, 0x079090,1, 0x079098,1, 0x0790a0,1, 0x0790a8,1, 0x0790b0,1, 0x0790b8,1, 0x0790c0,1, 0x0790c8,1, 0x0790d0,1, 0x0790d8,1, 0x0790e0,1, 0x0790e8,1, 0x0790f0,1, 0x0790f8,1, 0x079100,1, 0x079108,1, 0x079110,1, 0x079118,1, 0x079120,1, 0x079128,1, 0x079130,1, 0x079138,1, 0x079140,1, 0x079148,1, 0x079150,1, 0x079158,1, 0x079160,1, 0x079168,1, 0x079170,1, 0x079178,1, 0x079180,1, 0x079188,1, 0x079190,1, 0x079198,1, 0x0791a0,1, 0x0791a8,1, 0x0791b0,1, 0x0791b8,1, 0x0791c0,1, 0x0791c8,1, 0x0791d0,1, 0x0791d8,1, 0x0791e0,1, 0x0791e8,1, 0x0791f0,1, 0x0791f8,1, 0x079200,1, 0x079208,1, 0x079210,1, 0x079218,1, 0x079220,1, 0x079228,1, 0x079230,1, 0x079238,1, 0x079240,1, 0x079248,1, 0x079250,1, 0x079258,1, 0x079260,1, 0x079268,1, 0x079270,1, 0x079278,1, 0x079280,1, 0x079288,1, 0x079290,1, 0x079298,1, 0x0792a0,1, 0x0792a8,1, 0x0792b0,1, 0x0792b8,1, 0x0792c0,1, 0x0792c8,1, 0x0792d0,1, 0x0792d8,1, 0x0792e0,1, 0x0792e8,1, 0x0792f0,1, 0x0792f8,1, 0x079300,1, 0x079308,1, 0x079310,1, 0x079318,1, 0x079320,1, 0x079328,1, 0x079330,1, 0x079338,1, 0x079340,1, 0x079348,1, 0x079350,1, 0x079358,1, 0x079360,1, 0x079368,1, 0x079370,1, 0x079378,1, 0x079380,1, 0x079388,1, 0x079390,1, 0x079398,1, 0x0793a0,1, 0x0793a8,1, 0x0793b0,1, 0x0793b8,1, 0x0793c0,1, 0x0793c8,1, 0x0793d0,1, 0x0793d8,1, 0x0793e0,1, 0x0793e8,1, 0x0793f0,1, 0x0793f8,1, 0x079400,1, 0x079408,1, 0x079410,1, 0x079418,1, 0x079420,1, 0x079428,1, 0x079430,1, 0x079438,1, 0x079440,1, 0x079448,1, 0x079450,1, 0x079458,1, 0x079460,1, 0x079468,1, 0x079470,1, 0x079478,1, 0x079480,1, 0x079488,1, 0x079490,1, 0x079498,1, 0x0794a0,1, 0x0794a8,1, 0x0794b0,1, 0x0794b8,1, 0x0794c0,1, 0x0794c8,1, 0x0794d0,1, 0x0794d8,1, 0x0794e0,1, 0x0794e8,1, 0x0794f0,1, 0x0794f8,1, 0x079500,1, 0x079508,1, 0x079510,1, 0x079518,1, 0x079520,1, 0x079528,1, 0x079530,1, 0x079538,1, 0x079540,1, 0x079548,1, 0x079550,1, 0x079558,1, 0x079560,1, 0x079568,1, 0x079570,1, 0x079578,1, 0x079580,1, 0x079588,1, 0x079590,1, 0x079598,1, 0x0795a0,1, 0x0795a8,1, 0x0795b0,1, 0x0795b8,1, 0x0795c0,1, 0x0795c8,1, 0x0795d0,1, 0x0795d8,1, 0x0795e0,1, 0x0795e8,1, 0x0795f0,1, 0x0795f8,1, 0x079600,1, 0x079608,1, 0x079610,1, 0x079618,1, 0x079620,1, 0x079628,1, 0x079630,1, 0x079638,1, 0x079640,1, 0x079648,1, 0x079650,1, 0x079658,1, 0x079660,1, 0x079668,1, 0x079670,1, 0x079678,1, 0x079680,1, 0x079688,1, 0x079690,1, 0x079698,1, 0x0796a0,1, 0x0796a8,1, 0x0796b0,1, 0x0796b8,1, 0x0796c0,1, 0x0796c8,1, 0x0796d0,1, 0x0796d8,1, 0x0796e0,1, 0x0796e8,1, 0x0796f0,1, 0x0796f8,1, 0x079700,1, 0x079708,1, 0x079710,1, 0x079718,1, 0x079720,1, 0x079728,1, 0x079730,1, 0x079738,1, 0x079740,1, 0x079748,1, 0x079750,1, 0x079758,1, 0x079760,1, 0x079768,1, 0x079770,1, 0x079778,1, 0x079780,1, 0x079788,1, 0x079790,1, 0x079798,1, 0x0797a0,1, 0x0797a8,1, 0x0797b0,1, 0x0797b8,1, 0x0797c0,1, 0x0797c8,1, 0x0797d0,1, 0x0797d8,1, 0x0797e0,1, 0x0797e8,1, 0x0797f0,1, 0x0797f8,1, 0x079800,1, 0x079808,1, 0x079810,1, 0x079818,1, 0x079820,1, 0x079828,1, 0x079830,1, 0x079838,1, 0x079840,1, 0x079848,1, 0x079850,1, 0x079858,1, 0x079860,1, 0x079868,1, 0x079870,1, 0x079878,1, 0x079880,1, 0x079888,1, 0x079890,1, 0x079898,1, 0x0798a0,1, 0x0798a8,1, 0x0798b0,1, 0x0798b8,1, 0x0798c0,1, 0x0798c8,1, 0x0798d0,1, 0x0798d8,1, 0x0798e0,1, 0x0798e8,1, 0x0798f0,1, 0x0798f8,1, 0x079900,1, 0x079908,1, 0x079910,1, 0x079918,1, 0x079920,1, 0x079928,1, 0x079930,1, 0x079938,1, 0x079940,1, 0x079948,1, 0x079950,1, 0x079958,1, 0x079960,1, 0x079968,1, 0x079970,1, 0x079978,1, 0x079980,1, 0x079988,1, 0x079990,1, 0x079998,1, 0x0799a0,1, 0x0799a8,1, 0x0799b0,1, 0x0799b8,1, 0x0799c0,1, 0x0799c8,1, 0x0799d0,1, 0x0799d8,1, 0x0799e0,1, 0x0799e8,1, 0x0799f0,1, 0x0799f8,1, 0x079a00,1, 0x079a08,1, 0x079a10,1, 0x079a18,1, 0x079a20,1, 0x079a28,1, 0x079a30,1, 0x079a38,1, 0x079a40,1, 0x079a48,1, 0x079a50,1, 0x079a58,1, 0x079a60,1, 0x079a68,1, 0x079a70,1, 0x079a78,1, 0x079a80,1, 0x079a88,1, 0x079a90,1, 0x079a98,1, 0x079aa0,1, 0x079aa8,1, 0x079ab0,1, 0x079ab8,1, 0x079ac0,1, 0x079ac8,1, 0x079ad0,1, 0x079ad8,1, 0x079ae0,1, 0x079ae8,1, 0x079af0,1, 0x079af8,1, 0x079b00,1, 0x079b08,1, 0x079b10,1, 0x079b18,1, 0x079b20,1, 0x079b28,1, 0x079b30,1, 0x079b38,1, 0x079b40,1, 0x079b48,1, 0x079b50,1, 0x079b58,1, 0x079b60,1, 0x079b68,1, 0x079b70,1, 0x079b78,1, 0x079b80,1, 0x079b88,1, 0x079b90,1, 0x079b98,1, 0x079ba0,1, 0x079ba8,1, 0x079bb0,1, 0x079bb8,1, 0x079bc0,1, 0x079bc8,1, 0x079bd0,1, 0x079bd8,1, 0x079be0,1, 0x079be8,1, 0x079bf0,1, 0x079bf8,1, 0x079c00,1, 0x079c08,1, 0x079c10,1, 0x079c18,1, 0x079c20,1, 0x079c28,1, 0x079c30,1, 0x079c38,1, 0x079c40,1, 0x079c48,1, 0x079c50,1, 0x079c58,1, 0x079c60,1, 0x079c68,1, 0x079c70,1, 0x079c78,1, 0x079c80,1, 0x079c88,1, 0x079c90,1, 0x079c98,1, 0x079ca0,1, 0x079ca8,1, 0x079cb0,1, 0x079cb8,1, 0x079cc0,1, 0x079cc8,1, 0x079cd0,1, 0x079cd8,1, 0x079ce0,1, 0x079ce8,1, 0x079cf0,1, 0x079cf8,1, 0x079d00,1, 0x079d08,1, 0x079d10,1, 0x079d18,1, 0x079d20,1, 0x079d28,1, 0x079d30,1, 0x079d38,1, 0x079d40,1, 0x079d48,1, 0x079d50,1, 0x079d58,1, 0x079d60,1, 0x079d68,1, 0x079d70,1, 0x079d78,1, 0x079d80,1, 0x079d88,1, 0x079d90,1, 0x079d98,1, 0x079da0,1, 0x079da8,1, 0x079db0,1, 0x079db8,1, 0x079dc0,1, 0x079dc8,1, 0x079dd0,1, 0x079dd8,1, 0x079de0,1, 0x079de8,1, 0x079df0,1, 0x079df8,1, 0x079e00,1, 0x079e08,1, 0x079e10,1, 0x079e18,1, 0x079e20,1, 0x079e28,1, 0x079e30,1, 0x079e38,1, 0x079e40,1, 0x079e48,1, 0x079e50,1, 0x079e58,1, 0x079e60,1, 0x079e68,1, 0x079e70,1, 0x079e78,1, 0x079e80,1, 0x079e88,1, 0x079e90,1, 0x079e98,1, 0x079ea0,1, 0x079ea8,1, 0x079eb0,1, 0x079eb8,1, 0x079ec0,1, 0x079ec8,1, 0x079ed0,1, 0x079ed8,1, 0x079ee0,1, 0x079ee8,1, 0x079ef0,1, 0x079ef8,1, 0x079f00,1, 0x079f08,1, 0x079f10,1, 0x079f18,1, 0x079f20,1, 0x079f28,1, 0x079f30,1, 0x079f38,1, 0x079f40,1, 0x079f48,1, 0x079f50,1, 0x079f58,1, 0x079f60,1, 0x079f68,1, 0x079f70,1, 0x079f78,1, 0x079f80,1, 0x079f88,1, 0x079f90,1, 0x079f98,1, 0x079fa0,1, 0x079fa8,1, 0x079fb0,1, 0x079fb8,1, 0x079fc0,1, 0x079fc8,1, 0x079fd0,1, 0x079fd8,1, 0x079fe0,1, 0x079fe8,1, 0x079ff0,1, 0x079ff8,1, 0x07bef8,2, 0x07bf04,1, 0x07bf14,22, 0x07bf80,2, 0x07bffc,1033, 0x07e000,1044, 0x07f100,8, 0x07f160,4, 0x07f200,3, 0x07f300,20, 0x07f400,4, 0x07f7f8,514, 0x080680,7, 0x081000,3, 0x081010,21, 0x081120,1, 0x081130,2, 0x081140,1, 0x081150,2, 0x081160,1, 0x081170,2, 0x081204,18, 0x081304,2, 0x08139c,25, 0x081404,23, 0x081468,6, 0x081504,2, 0x081604,14, 0x081640,2, 0x08164c,15, 0x08168c,15, 0x0816cc,15, 0x08170c,15, 0x08174c,15, 0x08178c,15, 0x0817cc,15, 0x08180c,13, 0x081904,5, 0x081a30,4, 0x081a60,18, 0x081ab0,3, 0x081ad0,4, 0x081c00,128, 0x081e04,12, 0x082000,8, 0x082024,1, 0x082030,1, 0x082044,20, 0x08209c,2, 0x0820ac,14, 0x082180,1, 0x0821c4,1, 0x0821e0,1, 0x0821e8,3, 0x0821f8,1, 0x082200,10, 0x08229c,3, 0x0822e0,7, 0x082328,2, 0x082430,20, 0x082484,3, 0x082498,2, 0x082500,16, 0x082548,2, 0x082558,2, 0x082564,2, 0x082590,11, 0x0825c4,15, 0x0827fc,14, 0x082838,66, 0x082c00,13, 0x082c38,66, 0x083000,13, 0x083038,66, 0x083800,4, 0x083814,7, 0x083838,4, 0x083854,2, 0x0838a0,1, 0x0838b0,2, 0x0838c0,1, 0x0838d0,2, 0x083910,5, 0x083928,4, 0x083948,6, 0x0f0000,3, 0x0f0014,8, 0x0f0040,6, 0x0f0068,2, 0x0f0078,3, 0x0f0090,2, 0x0f00a4,2, 0x0f00b0,1, 0x0f00b8,38, 0x0f0180,17, 0x0f01e0,4, 0x0f01f4,1, 0x0f0200,4, 0x0f0220,1, 0x0f0228,1, 0x0f0250,5, 0x0f0270,2, 0x0f0280,3, 0x0f02a4,5, 0x0f02c0,3, 0x0f02d8,5, 0x0f02f0,4, 0x0f0400,2, 0x0f0410,4, 0x0f0440,1, 0x0f0450,2, 0x0f0460,4, 0x0f0510,34, 0x0f0600,64, 0x0f0714,9, 0x0f1000,9, 0x0f107c,1, 0x0f2000,2, 0x0f2010,3, 0x0f2020,2, 0x0f2030,3, 0x0f2040,2, 0x0f2050,3, 0x0f2060,2, 0x0f2070,3, 0x0f2080,2, 0x0f2090,3, 0x0f20a0,2, 0x0f20b0,3, 0x0f20c0,2, 0x0f20d0,3, 0x0f20e0,2, 0x0f20f0,3, 0x0f2100,3, 0x0f2110,25, 0x0f2178,3, 0x0f2190,2, 0x0f21a0,1, 0x0f21b0,2, 0x0f21c0,2, 0x0f2200,3, 0x0f2210,15, 0x0f2250,16, 0x0f229c,1, 0x0f22b0,9, 0x0f22e0,1, 0x0f22f0,3, 0x0f2300,12, 0x0f2334,4, 0x0f2358,1, 0x0f2380,1, 0x0f2394,2, 0x0f23ac,11, 0x0f23ec,4, 0x0f2400,3, 0x0f2410,15, 0x0f2450,16, 0x0f249c,1, 0x0f24b0,9, 0x0f24e0,1, 0x0f24f0,3, 0x0f2500,12, 0x0f2534,4, 0x0f2558,1, 0x0f2580,1, 0x0f2594,2, 0x0f25ac,11, 0x0f25ec,4, 0x0f2600,11, 0x0f264c,8, 0x0f2670,2, 0x0f267c,17, 0x0f2700,9, 0x0f2728,1, 0x0f2804,2, 0x0f2844,2, 0x0f2868,2, 0x0f2874,1, 0x0f2884,2, 0x0f28a8,2, 0x0f28b4,1, 0x0f28c4,2, 0x0f28e8,2, 0x0f28f4,1, 0x0f2904,2, 0x0f2928,2, 0x0f2934,1, 0x0f2a40,12, 0x0f2a80,5, 0x0f2aa0,12, 0x0f2b10,3, 0x0f2b20,7, 0x0f2b40,4, 0x0f2b80,1, 0x0f2c1c,9, 0x0f2c5c,9, 0x0f2c9c,9, 0x0f2cc4,1, 0x0f2ccc,1, 0x0f2cd4,1, 0x0f2e00,1, 0x0f2e08,7, 0x0f2e28,7, 0x0f2e48,7, 0x0f2e68,7, 0x0f2e88,7, 0x0f2ea8,7, 0x0f2ec8,7, 0x0f2ee8,7, 0x0f2f08,7, 0x0f2f28,7, 0x0f2f48,7, 0x0f2f68,7, 0x0f2f88,7, 0x0f2fa8,7, 0x0f2fc8,7, 0x0f2fe8,50, 0x0f30c0,13, 0x0f30fc,2, 0x0f310c,1, 0x0f3120,2, 0x0f3130,5, 0x0f3184,11, 0x0f31c4,3, 0x0f31e0,1, 0x0f31f0,2, 0x0f3204,1, 0x0f3210,5, 0x0f3240,1, 0x0f3248,12, 0x0f3280,8, 0x0f32a4,3, 0x0f32cc,1, 0x0f32d4,1, 0x0f32e0,11, 0x0f3400,11, 0x0f3430,3, 0x0f3444,2, 0x0f3554,10, 0x0f35c0,2, 0x0f35dc,7, 0x0f3600,16, 0x0f3644,1, 0x0f365c,11, 0x0f36a0,1, 0x0f36b0,2, 0x0f36c0,1, 0x0f36d0,2, 0x0f36e0,1, 0x0f36f0,2, 0x0f3700,5, 0x0f371c,4, 0x0f3740,4, 0x0f3760,1, 0x0f3770,2, 0x0f3780,1, 0x0f3790,2, 0x0f37a0,1, 0x0f37b0,2, 0x0f37c0,1, 0x0f37d0,2, 0x0f37e0,1, 0x0f37f0,2, 0x0f3800,3, 0x0f3810,18, 0x0f3878,6, 0x0f3894,3, 0x0f38c0,7, 0x0f38e0,6, 0x0f3900,8, 0x0f3924,6, 0x0f3940,17, 0x0f3998,1, 0x0f39a0,9, 0x0f3a00,1, 0x0f3a10,2, 0x0f3a20,1, 0x0f3a30,2, 0x0f3a40,1, 0x0f3a50,2, 0x0f3a60,1, 0x0f3a70,2, 0x0f3a80,1, 0x0f3a90,2, 0x0f3aa0,1, 0x0f3ab0,2, 0x0f3ac0,1, 0x0f3ad0,2, 0x0f3ae0,1, 0x0f3af0,2, 0x0f3b00,1, 0x0f3b10,2, 0x0f3b20,1, 0x0f3b30,2, 0x0f3b40,1, 0x0f3b50,2, 0x0f3b60,1, 0x0f3b70,2, 0x0f3b80,1, 0x0f3b90,2, 0x0f3ba0,3, 0x0f3c00,12, 0x0f3c34,6, 0x0f3c60,1, 0x0f3c70,2, 0x0f3c84,3, 0x0f3d00,1, 0x0f3d08,1, 0x0f3d14,1, 0x0f3d1c,3, 0x0f3d38,1, 0x0f3d40,1, 0x0f3d54,2, 0x0f3da0,1, 0x0f3db0,2, 0x0f3e00,76, 0x0f3f40,5, 0x0f3f60,4, mstflint-4.26.0/mstdump/mstdump_dbs/CableSFP.csv0000644000175000017500000000004614522641732022011 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,32, mstflint-4.26.0/mstdump/mstdump_dbs/CableQSFPaging.csv0000644000175000017500000000017514522641732023143 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,15, 0x000048,11, 0x00007c,33, 0x000380,2, 0x000390,2, 0x0003a0,10, 0x0003d0,5, 0x0003e8,4, mstflint-4.26.0/mstdump/mstdump_dbs/Makefile.am0000644000175000017500000000273114522641732021754 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- mstregdumpdir = $(datadir)/@PACKAGE@ dist_mstregdump_DATA = $(srcdir)/*.csv mstflint-4.26.0/mstdump/mstdump_dbs/Quantum3.csv0000644000175000017500000257465614522641732022200 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,20, 0x000480,26, 0x000500,4, 0x000800,20, 0x000880,26, 0x000900,4, 0x000c00,20, 0x000c80,26, 0x000d00,4, 0x001000,20, 0x001080,26, 0x001100,4, 0x001400,20, 0x001480,26, 0x001500,4, 0x001800,20, 0x001880,26, 0x001900,4, 0x001c00,20, 0x001c80,26, 0x001d00,4, 0x002000,20, 0x002080,26, 0x002100,4, 0x002400,20, 0x002480,26, 0x002500,4, 0x002800,20, 0x002880,26, 0x002900,4, 0x002c00,20, 0x002c80,26, 0x002d00,4, 0x003000,20, 0x003080,26, 0x003100,4, 0x003400,20, 0x003480,26, 0x003500,4, 0x003800,20, 0x003880,26, 0x003900,4, 0x003c00,20, 0x003c80,26, 0x003d00,4, 0x004000,20, 0x004080,26, 0x004100,4, 0x004400,20, 0x004480,26, 0x004500,4, 0x004800,20, 0x004880,26, 0x004900,4, 0x004c00,20, 0x004c80,26, 0x004d00,4, 0x005000,20, 0x005080,26, 0x005100,4, 0x005400,20, 0x005480,26, 0x005500,4, 0x005800,20, 0x005880,26, 0x005900,4, 0x005c00,20, 0x005c80,26, 0x005d00,4, 0x006000,20, 0x006080,26, 0x006100,4, 0x006400,20, 0x006480,26, 0x006500,4, 0x006800,20, 0x006880,26, 0x006900,4, 0x006c00,20, 0x006c80,26, 0x006d00,4, 0x007000,20, 0x007080,26, 0x007100,4, 0x007400,20, 0x007480,26, 0x007500,4, 0x007800,20, 0x007880,26, 0x007900,4, 0x007c00,20, 0x007c80,26, 0x007d00,4, 0x008000,20, 0x008080,26, 0x008100,4, 0x008400,20, 0x008480,28, 0x008500,4, 0x008800,28, 0x008900,42, 0x008a00,4, 0x008c00,28, 0x008c80,36, 0x009000,20, 0x009080,24, 0x009100,4, 0x009400,20, 0x009480,24, 0x009500,4, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c00,11, 0x060c40,6, 0x060c60,7, 0x060c80,2, 0x060ca4,1, 0x060cac,12, 0x060ce0,1, 0x060d00,6, 0x060d20,41, 0x060e04,1, 0x060e40,23, 0x060ec4,1, 0x060ee0,15, 0x060f24,1, 0x060f34,6, 0x060f50,5, 0x060f80,6, 0x060fa0,6, 0x060fc0,3, 0x060fd0,11, 0x061000,18, 0x061200,31, 0x061280,5, 0x061298,5, 0x061400,70, 0x061600,7, 0x061620,2, 0x06162c,4, 0x061640,4, 0x061654,2, 0x061660,6, 0x061680,14, 0x0616c0,7, 0x0616e0,2, 0x0616ec,3, 0x061700,7, 0x061720,1, 0x064000,7, 0x064020,19, 0x064084,1, 0x06408c,19, 0x0640e0,3, 0x0640f0,3, 0x064100,3, 0x064120,7, 0x064140,17, 0x0641c4,1, 0x0641cc,18, 0x064244,1, 0x06425c,10, 0x064288,3, 0x068000,5, 0x068020,1, 0x068030,1, 0x068040,1, 0x068050,1, 0x068060,1, 0x068070,1, 0x068080,1, 0x068090,1, 0x0680a0,1, 0x0680b0,1, 0x0680c0,1, 0x0680d0,1, 0x0680e0,1, 0x0680f0,1, 0x068100,1, 0x068110,1, 0x068120,1, 0x068130,1, 0x068140,1, 0x068150,1, 0x068160,1, 0x068170,1, 0x068180,1, 0x068190,1, 0x0681a0,1, 0x0681b0,1, 0x0681c0,1, 0x0681d0,1, 0x0681e0,1, 0x0681f0,1, 0x068200,1, 0x068210,1, 0x068220,1, 0x068230,1, 0x068240,1, 0x068250,1, 0x068260,1, 0x068270,1, 0x068280,1, 0x068290,1, 0x0682a0,1, 0x0682b0,1, 0x0682c0,1, 0x0682d0,1, 0x0682e0,1, 0x0682f0,1, 0x068300,1, 0x068310,1, 0x068320,1, 0x068330,1, 0x068340,1, 0x068350,1, 0x068360,1, 0x068370,1, 0x068380,1, 0x068390,1, 0x0683a0,1, 0x0683b0,1, 0x0683c0,1, 0x0683d0,1, 0x0683e0,1, 0x0683f0,1, 0x068400,1, 0x068410,1, 0x068420,1, 0x068430,1, 0x068440,1, 0x068450,1, 0x068460,1, 0x068470,1, 0x068480,1, 0x068490,1, 0x0684a0,1, 0x0684b0,1, 0x0684c0,1, 0x0684d0,1, 0x0684e0,1, 0x0684f0,1, 0x068500,1, 0x068510,1, 0x068520,1, 0x068530,1, 0x068540,1, 0x068550,1, 0x068560,1, 0x068570,1, 0x068580,1, 0x068590,1, 0x0685a0,1, 0x0685b0,1, 0x0685c0,1, 0x0685d0,1, 0x0685e0,1, 0x0685f0,1, 0x068600,1, 0x068610,1, 0x068620,1, 0x068630,1, 0x068640,1, 0x068650,1, 0x068660,1, 0x068670,1, 0x068680,1, 0x068690,1, 0x0686a0,1, 0x0686b0,1, 0x0686c0,1, 0x0686d0,1, 0x0686e0,1, 0x0686f0,1, 0x068700,1, 0x068710,1, 0x068720,1, 0x068730,1, 0x068740,1, 0x068750,1, 0x068760,1, 0x068770,1, 0x068780,1, 0x068790,1, 0x0687a0,1, 0x0687b0,1, 0x0687c0,1, 0x0687d0,1, 0x0687e0,1, 0x0687f0,1, 0x068800,1, 0x068810,1, 0x068820,1, 0x068830,1, 0x068840,1, 0x068850,1, 0x068860,1, 0x068870,1, 0x068880,1, 0x068890,1, 0x0688a0,1, 0x0688b0,1, 0x0688c0,1, 0x0688d0,1, 0x0688e0,1, 0x0688f0,1, 0x068900,1, 0x068910,1, 0x068920,1, 0x068930,1, 0x068940,1, 0x068950,1, 0x068960,1, 0x068970,1, 0x068980,1, 0x068990,1, 0x0689a0,1, 0x0689b0,1, 0x0689c0,1, 0x0689d0,1, 0x0689e0,1, 0x0689f0,1, 0x068a00,1, 0x068a10,1, 0x068a20,1, 0x068a30,1, 0x068a40,1, 0x068a50,1, 0x068a60,1, 0x068a70,1, 0x068a80,1, 0x068a90,1, 0x068aa0,1, 0x068ab0,1, 0x068ac0,1, 0x068ad0,1, 0x068ae0,1, 0x068af0,1, 0x068b00,1, 0x068b10,1, 0x068b20,1, 0x068b30,1, 0x068b40,1, 0x068b50,1, 0x068b60,1, 0x068b70,1, 0x068b80,1, 0x068b90,1, 0x068ba0,1, 0x068bb0,1, 0x068bc0,1, 0x068bd0,1, 0x068be0,1, 0x068bf0,1, 0x068c00,1, 0x068c10,1, 0x068c20,1, 0x068c30,1, 0x068c40,1, 0x068c50,1, 0x068c60,1, 0x068c70,1, 0x068c80,1, 0x068c90,1, 0x068ca0,1, 0x068cb0,1, 0x068cc0,1, 0x068cd0,1, 0x068ce0,1, 0x068cf0,1, 0x068d00,1, 0x068d10,1, 0x068d20,1, 0x068d30,1, 0x068d40,1, 0x068d50,1, 0x068d60,1, 0x068d70,1, 0x068d80,1, 0x068d90,1, 0x068da0,1, 0x068db0,1, 0x068dc0,1, 0x068dd0,1, 0x068de0,1, 0x068df0,1, 0x068e00,1, 0x068e10,1, 0x068e20,1, 0x068e30,1, 0x068e40,1, 0x068e50,1, 0x068e60,1, 0x068e70,1, 0x068e80,1, 0x068e90,1, 0x068ea0,1, 0x068eb0,1, 0x068ec0,1, 0x068ed0,1, 0x068ee0,1, 0x068ef0,1, 0x068f00,1, 0x068f10,1, 0x068f20,1, 0x068f30,1, 0x068f40,1, 0x068f50,1, 0x068f60,1, 0x068f70,1, 0x068f80,1, 0x068f90,1, 0x068fa0,1, 0x068fb0,1, 0x068fc0,1, 0x068fd0,1, 0x068fe0,1, 0x068ff0,1, 0x069000,8, 0x06a000,5, 0x06a020,1, 0x06a030,1, 0x06a040,1, 0x06a050,1, 0x06a060,1, 0x06a070,1, 0x06a080,1, 0x06a090,1, 0x06a0a0,1, 0x06a0b0,1, 0x06a0c0,1, 0x06a0d0,1, 0x06a0e0,1, 0x06a0f0,1, 0x06a100,1, 0x06a110,1, 0x06a120,1, 0x06a130,1, 0x06a140,1, 0x06a150,1, 0x06a160,1, 0x06a170,1, 0x06a180,1, 0x06a190,1, 0x06a1a0,1, 0x06a1b0,1, 0x06a1c0,1, 0x06a1d0,1, 0x06a1e0,1, 0x06a1f0,1, 0x06a200,1, 0x06a210,1, 0x06a220,1, 0x06a230,1, 0x06a240,1, 0x06a250,1, 0x06a260,1, 0x06a270,1, 0x06a280,1, 0x06a290,1, 0x06a2a0,1, 0x06a2b0,1, 0x06a2c0,1, 0x06a2d0,1, 0x06a2e0,1, 0x06a2f0,1, 0x06a300,1, 0x06a310,1, 0x06a320,1, 0x06a330,1, 0x06a340,1, 0x06a350,1, 0x06a360,1, 0x06a370,1, 0x06a380,1, 0x06a390,1, 0x06a3a0,1, 0x06a3b0,1, 0x06a3c0,1, 0x06a3d0,1, 0x06a3e0,1, 0x06a3f0,1, 0x06a400,1, 0x06a410,1, 0x06a420,1, 0x06a430,1, 0x06a440,1, 0x06a450,1, 0x06a460,1, 0x06a470,1, 0x06a480,1, 0x06a490,1, 0x06a4a0,1, 0x06a4b0,1, 0x06a4c0,1, 0x06a4d0,1, 0x06a4e0,1, 0x06a4f0,1, 0x06a500,1, 0x06a510,1, 0x06a520,1, 0x06a530,1, 0x06a540,1, 0x06a550,1, 0x06a560,1, 0x06a570,1, 0x06a580,1, 0x06a590,1, 0x06a5a0,1, 0x06a5b0,1, 0x06a5c0,1, 0x06a5d0,1, 0x06a5e0,1, 0x06a5f0,1, 0x06a600,1, 0x06a610,1, 0x06a620,1, 0x06a630,1, 0x06a640,1, 0x06a650,1, 0x06a660,1, 0x06a670,1, 0x06a680,1, 0x06a690,1, 0x06a6a0,1, 0x06a6b0,1, 0x06a6c0,1, 0x06a6d0,1, 0x06a6e0,1, 0x06a6f0,1, 0x06a700,1, 0x06a710,1, 0x06a720,1, 0x06a730,1, 0x06a740,1, 0x06a750,1, 0x06a760,1, 0x06a770,1, 0x06a780,1, 0x06a790,1, 0x06a7a0,1, 0x06a7b0,1, 0x06a7c0,1, 0x06a7d0,1, 0x06a7e0,1, 0x06a7f0,1, 0x06a800,1, 0x06a810,1, 0x06a820,1, 0x06a830,1, 0x06a840,1, 0x06a850,1, 0x06a860,1, 0x06a870,1, 0x06a880,1, 0x06a890,1, 0x06a8a0,1, 0x06a8b0,1, 0x06a8c0,1, 0x06a8d0,1, 0x06a8e0,1, 0x06a8f0,1, 0x06a900,1, 0x06a910,1, 0x06a920,1, 0x06a930,1, 0x06a940,1, 0x06a950,1, 0x06a960,1, 0x06a970,1, 0x06a980,1, 0x06a990,1, 0x06a9a0,1, 0x06a9b0,1, 0x06a9c0,1, 0x06a9d0,1, 0x06a9e0,1, 0x06a9f0,1, 0x06aa00,1, 0x06aa10,1, 0x06aa20,1, 0x06aa30,1, 0x06aa40,1, 0x06aa50,1, 0x06aa60,1, 0x06aa70,1, 0x06aa80,1, 0x06aa90,1, 0x06aaa0,1, 0x06aab0,1, 0x06aac0,1, 0x06aad0,1, 0x06aae0,1, 0x06aaf0,1, 0x06ab00,1, 0x06ab10,1, 0x06ab20,1, 0x06ab30,1, 0x06ab40,1, 0x06ab50,1, 0x06ab60,1, 0x06ab70,1, 0x06ab80,1, 0x06ab90,1, 0x06aba0,1, 0x06abb0,1, 0x06abc0,1, 0x06abd0,1, 0x06abe0,1, 0x06abf0,1, 0x06ac00,1, 0x06ac10,1, 0x06ac20,1, 0x06ac30,1, 0x06ac40,1, 0x06ac50,1, 0x06ac60,1, 0x06ac70,1, 0x06ac80,1, 0x06ac90,1, 0x06aca0,1, 0x06acb0,1, 0x06acc0,1, 0x06acd0,1, 0x06ace0,1, 0x06acf0,1, 0x06ad00,1, 0x06ad10,1, 0x06ad20,1, 0x06ad30,1, 0x06ad40,1, 0x06ad50,1, 0x06ad60,1, 0x06ad70,1, 0x06ad80,1, 0x06ad90,1, 0x06ada0,1, 0x06adb0,1, 0x06adc0,1, 0x06add0,1, 0x06ade0,1, 0x06adf0,1, 0x06ae00,1, 0x06ae10,1, 0x06ae20,1, 0x06ae30,1, 0x06ae40,1, 0x06ae50,1, 0x06ae60,1, 0x06ae70,1, 0x06ae80,1, 0x06ae90,1, 0x06aea0,1, 0x06aeb0,1, 0x06aec0,1, 0x06aed0,1, 0x06aee0,1, 0x06aef0,1, 0x06af00,1, 0x06af10,1, 0x06af20,1, 0x06af30,1, 0x06af40,1, 0x06af50,1, 0x06af60,1, 0x06af70,1, 0x06af80,1, 0x06af90,1, 0x06afa0,1, 0x06afb0,1, 0x06afc0,1, 0x06afd0,1, 0x06afe0,1, 0x06aff0,1, 0x06b000,16, 0x06b100,8, 0x06b124,7, 0x06b144,7, 0x06b200,3, 0x06b7f8,2, 0x070000,29, 0x070080,15, 0x0700c0,23, 0x070120,2, 0x070130,8, 0x070180,8, 0x0701c0,15, 0x070200,12, 0x070240,7, 0x070400,29, 0x070480,15, 0x0704c0,23, 0x070520,2, 0x070530,8, 0x070580,8, 0x0705c0,15, 0x070600,12, 0x070640,7, 0x070800,29, 0x070880,15, 0x0708c0,23, 0x070920,2, 0x070930,8, 0x070980,8, 0x0709c0,15, 0x070a00,12, 0x070a40,7, 0x070c00,7, 0x070c20,7, 0x070c40,7, 0x070c60,7, 0x070c80,7, 0x070ca0,7, 0x070cc0,7, 0x070ce0,7, 0x070d00,4, 0x070d14,17, 0x070d5c,21, 0x070e04,5, 0x070e24,5, 0x070e44,1, 0x070e4c,3, 0x070e64,1, 0x070e6c,3, 0x070e84,1, 0x070e8c,3, 0x070ea4,1, 0x070eac,3, 0x070ec0,5, 0x070f00,1, 0x070f08,13, 0x070f40,10, 0x071000,7, 0x072000,7, 0x073000,22, 0x073080,22, 0x073100,22, 0x073180,22, 0x073200,22, 0x073280,22, 0x073300,22, 0x073380,22, 0x073400,132, 0x073640,15, 0x073680,4, 0x0736a0,6, 0x0736c0,5, 0x0736d8,2, 0x073700,15, 0x073740,6, 0x073760,6, 0x073780,3, 0x073790,2, 0x073800,153, 0x073c00,156, 0x073e84,1, 0x073e94,17, 0x073f00,15, 0x073f40,3, 0x073f60,12, 0x074000,4096, 0x078004,1, 0x07802c,21, 0x078084,1, 0x0780ac,36, 0x078140,11, 0x078180,11, 0x0781c0,11, 0x078200,11, 0x078240,11, 0x078280,3, 0x0782c0,11, 0x078300,11, 0x078340,11, 0x078380,11, 0x0783c0,11, 0x078400,11, 0x078440,5, 0x078458,9, 0x078480,6, 0x0784a0,1, 0x0784c0,11, 0x078500,11, 0x078540,4, 0x078580,6, 0x0785a0,1, 0x0785c0,11, 0x078600,11, 0x078640,1, 0x078680,6, 0x0786a0,1, 0x0786c0,11, 0x078700,11, 0x078740,32, 0x078800,13, 0x078840,15, 0x078880,7, 0x0788a0,2, 0x078900,13, 0x078940,15, 0x078980,7, 0x0789a0,2, 0x078a04,1, 0x078a0c,14, 0x078a48,8, 0x078c00,6, 0x078c20,6, 0x078c40,12, 0x078c80,8, 0x078cc0,15, 0x078d00,5, 0x078d40,6, 0x078d60,2, 0x078d80,6, 0x078da0,2, 0x078dc0,7, 0x078de0,23, 0x078e40,7, 0x078e84,1, 0x078ea0,10, 0x078f00,32, 0x079000,114, 0x0791d0,3, 0x0791e0,3, 0x0791f0,3, 0x079200,58, 0x079400,28, 0x079600,80, 0x079744,1, 0x079750,4, 0x079800,48, 0x0798c4,7, 0x079900,8, 0x079980,28, 0x079a04,12, 0x079a38,7, 0x079a80,15, 0x079b00,15, 0x079b40,7, 0x079b80,8, 0x079c00,26, 0x079c80,4, 0x079cc0,25, 0x079d40,6, 0x079d60,1, 0x079d68,2, 0x079d74,11, 0x079da4,20, 0x079e00,13, 0x079e44,9, 0x07a000,48, 0x07a0c4,6, 0x07a0e0,7, 0x07a100,1, 0x07a110,14, 0x07a150,3, 0x07a160,22, 0x07a1c0,16, 0x080000,15, 0x080040,527, 0x080880,271, 0x080cc0,2575, 0x083500,527, 0x083d40,527, 0x084580,271, 0x0849c0,271, 0x084e00,271, 0x085240,430, 0x0a0008,2, 0x0a0018,16, 0x0a005c,6, 0x0a0078,18, 0x0a00d0,8, 0x0a00f4,2, 0x0a0100,12, 0x0a0134,63, 0x0a0238,26, 0x0a02b0,15, 0x0a02f0,29, 0x0a03b0,2, 0x0a03c0,2, 0x0a03d0,2, 0x0a03f0,4, 0x0a0404,4, 0x0a041c,32, 0x0a0508,1, 0x0a0510,7, 0x0a0530,3, 0x0a0540,8, 0x0a0580,37, 0x0a0618,11, 0x0a0648,4, 0x0a065c,1, 0x0a0700,8, 0x0a0780,8, 0x0a07c0,13, 0x0a0800,5, 0x0a0900,8, 0x0a0928,6, 0x0a0948,3, 0x0a095c,4, 0x0a0970,3, 0x0a0980,8, 0x0a09b0,6, 0x0a09e0,6, 0x0a0a10,8, 0x0a0a50,1, 0x0a0a58,21, 0x0a0ab0,16, 0x0a1000,3, 0x0a1020,6, 0x0a1040,3, 0x0a1050,6, 0x0a1080,9, 0x0a10c4,2, 0x0a10d0,7, 0x0a1100,9, 0x0a1130,1, 0x0a1140,1, 0x0a1150,1, 0x0a2008,2, 0x0a2018,16, 0x0a205c,6, 0x0a2078,18, 0x0a20d0,8, 0x0a20f4,2, 0x0a2100,12, 0x0a2134,63, 0x0a2238,26, 0x0a22b0,15, 0x0a22f0,29, 0x0a23b0,2, 0x0a23c0,2, 0x0a23d0,2, 0x0a23f0,4, 0x0a2404,4, 0x0a241c,32, 0x0a2508,1, 0x0a2510,7, 0x0a2530,3, 0x0a2540,8, 0x0a2580,37, 0x0a2618,11, 0x0a2648,4, 0x0a265c,1, 0x0a2700,8, 0x0a2780,8, 0x0a27c0,13, 0x0a2800,5, 0x0a2900,8, 0x0a2928,6, 0x0a2948,3, 0x0a295c,4, 0x0a2970,3, 0x0a2980,8, 0x0a29b0,6, 0x0a29e0,6, 0x0a2a10,8, 0x0a2a50,1, 0x0a2a58,21, 0x0a2ab0,16, 0x0a3000,3, 0x0a3020,6, 0x0a3040,3, 0x0a3050,6, 0x0a3080,9, 0x0a30c4,2, 0x0a30d0,7, 0x0a3100,9, 0x0a3130,1, 0x0a3140,1, 0x0a3150,1, 0x0a4008,2, 0x0a4018,16, 0x0a405c,6, 0x0a4078,18, 0x0a40d0,8, 0x0a40f4,2, 0x0a4100,12, 0x0a4134,63, 0x0a4238,26, 0x0a42b0,15, 0x0a42f0,29, 0x0a43b0,2, 0x0a43c0,2, 0x0a43d0,2, 0x0a43f0,4, 0x0a4404,4, 0x0a441c,32, 0x0a4508,1, 0x0a4510,7, 0x0a4530,3, 0x0a4540,8, 0x0a4580,37, 0x0a4618,11, 0x0a4648,4, 0x0a465c,1, 0x0a4700,8, 0x0a4780,8, 0x0a47c0,13, 0x0a4800,5, 0x0a4900,8, 0x0a4928,6, 0x0a4948,3, 0x0a495c,4, 0x0a4970,3, 0x0a4980,8, 0x0a49b0,6, 0x0a49e0,6, 0x0a4a10,8, 0x0a4a50,1, 0x0a4a58,21, 0x0a4ab0,16, 0x0a5000,3, 0x0a5020,6, 0x0a5040,3, 0x0a5050,6, 0x0a5080,9, 0x0a50c4,2, 0x0a50d0,7, 0x0a5100,9, 0x0a5130,1, 0x0a5140,1, 0x0a5150,1, 0x0a6008,2, 0x0a6018,16, 0x0a605c,6, 0x0a6078,18, 0x0a60d0,8, 0x0a60f4,2, 0x0a6100,12, 0x0a6134,63, 0x0a6238,26, 0x0a62b0,15, 0x0a62f0,29, 0x0a63b0,2, 0x0a63c0,2, 0x0a63d0,2, 0x0a63f0,4, 0x0a6404,4, 0x0a641c,32, 0x0a6508,1, 0x0a6510,7, 0x0a6530,3, 0x0a6540,8, 0x0a6580,37, 0x0a6618,11, 0x0a6648,4, 0x0a665c,1, 0x0a6700,8, 0x0a6780,8, 0x0a67c0,13, 0x0a6800,5, 0x0a6900,8, 0x0a6928,6, 0x0a6948,3, 0x0a695c,4, 0x0a6970,3, 0x0a6980,8, 0x0a69b0,6, 0x0a69e0,6, 0x0a6a10,8, 0x0a6a50,1, 0x0a6a58,21, 0x0a6ab0,16, 0x0a7000,3, 0x0a7020,6, 0x0a7040,3, 0x0a7050,6, 0x0a7080,9, 0x0a70c4,2, 0x0a70d0,7, 0x0a7100,9, 0x0a7130,1, 0x0a7140,1, 0x0a7150,1, 0x0a8000,3, 0x0a8018,2, 0x0a8024,14, 0x0a8060,27, 0x0a80d0,3, 0x0a80e0,3, 0x0a80f0,3, 0x0a8100,14, 0x0a8140,3, 0x0a8150,1, 0x0a815c,4, 0x0a8170,1, 0x0a8180,15, 0x0a81c0,1, 0x0a81c8,5, 0x0a81e0,1, 0x0a81f0,7, 0x0a8218,2, 0x0a8224,14, 0x0a8260,27, 0x0a82d0,3, 0x0a82e0,3, 0x0a82f0,3, 0x0a8300,14, 0x0a8340,3, 0x0a8350,1, 0x0a835c,4, 0x0a8370,1, 0x0a8380,15, 0x0a83c0,1, 0x0a83c8,5, 0x0a83e0,1, 0x0a83f0,7, 0x0a8418,2, 0x0a8424,14, 0x0a8460,27, 0x0a84d0,3, 0x0a84e0,3, 0x0a84f0,3, 0x0a8500,14, 0x0a8540,3, 0x0a8550,1, 0x0a855c,4, 0x0a8570,1, 0x0a8580,15, 0x0a85c0,1, 0x0a85c8,5, 0x0a85e0,1, 0x0a85f0,7, 0x0a8618,2, 0x0a8624,14, 0x0a8660,27, 0x0a86d0,3, 0x0a86e0,3, 0x0a86f0,3, 0x0a8700,14, 0x0a8740,3, 0x0a8750,1, 0x0a875c,4, 0x0a8770,1, 0x0a8780,15, 0x0a87c0,1, 0x0a87c8,5, 0x0a87e0,1, 0x0a87f0,6, 0x0a880c,4, 0x0a8824,5, 0x0a8840,1, 0x0a8860,7, 0x0a8880,11, 0x0a88b0,3, 0x0a8900,4, 0x0a8940,13, 0x0a8980,1, 0x0a8988,5, 0x0a8a00,5, 0x0a8a18,89, 0x0a8b80,11, 0x0a8bb0,11, 0x0a8c00,12, 0x0a8c80,28, 0x0a8d00,36, 0x0a8e00,100, 0x0a9000,38, 0x0a9100,20, 0x0a9180,11, 0x0a91b0,1, 0x0a9404,1, 0x0a9440,28, 0x0a94b4,8, 0x0a94e0,7, 0x0a9500,7, 0x0a9520,7, 0x0a9540,7, 0x0a9560,7, 0x0a9580,7, 0x0a95a0,7, 0x0a95c0,7, 0x0a9600,9, 0x0a963c,2, 0x0a9650,6, 0x0a9684,10, 0x0a9804,1, 0x0a99f8,140, 0x0a9c40,8, 0x0a9c64,5, 0x0a9d00,32, 0x0a9d84,1, 0x0a9d94,6, 0x0a9e40,2, 0x0a9e4c,36, 0x0aa000,128, 0x0aa204,6, 0x0aa400,1, 0x0aa604,3, 0x0aa700,33, 0x0aa790,3, 0x0aa800,20, 0x0aa880,14, 0x0aaa00,28, 0x0aaa84,1, 0x0aaaa0,37, 0x0aac00,3, 0x0ab000,4, 0x0ab020,8, 0x0ab044,1, 0x0ab04c,1, 0x0ab200,3, 0x0ab210,3, 0x0ab220,3, 0x0ab230,3, 0x0ab240,3, 0x0ab250,3, 0x0ab260,3, 0x0ab270,3, 0x0ab280,3, 0x0ab290,3, 0x0ab2a0,3, 0x0ab2b0,3, 0x0ab2c0,3, 0x0ab2d0,3, 0x0ab2e0,3, 0x0ab2f0,3, 0x0ab300,3, 0x0ab310,3, 0x0ab320,3, 0x0ab330,3, 0x0ab340,3, 0x0ab350,3, 0x0ab360,3, 0x0ab370,3, 0x0ab380,3, 0x0ab390,3, 0x0ab3a0,3, 0x0ab3b0,3, 0x0ab3c0,3, 0x0ab3d0,3, 0x0ab3e0,3, 0x0ab3f0,3, 0x0ab400,1, 0x0ac000,11, 0x0ac030,1, 0x0ac080,2, 0x0ac0c4,2, 0x0ac0d0,1, 0x0ac0d8,1, 0x0ac0e0,1, 0x0ac0f4,3, 0x0ad000,128, 0x0ad208,256, 0x0ad610,145, 0x0ae000,24, 0x0ae078,1, 0x0ae080,1, 0x0e0000,62, 0x0e0128,8, 0x0e01a8,8, 0x0e0228,8, 0x0e02a8,8, 0x0e0328,8, 0x0e03a8,8, 0x0e0428,8, 0x0e04a8,8, 0x0e0528,8, 0x0e05a8,8, 0x0e0628,8, 0x0e06a8,8, 0x0e0728,8, 0x0e07a8,8, 0x0e0828,8, 0x0e08a8,8, 0x0e0928,8, 0x0e09a8,8, 0x0e0a28,8, 0x0e0aa8,8, 0x0e0b28,8, 0x0e0ba8,8, 0x0e0c28,8, 0x0e0ca8,8, 0x0e0d28,8, 0x0e0da8,8, 0x0e0e28,8, 0x0e0ea8,8, 0x0e0f28,8, 0x0e0fa8,8, 0x0e1028,8, 0x0e10a8,8, 0x0e1128,8, 0x0e11a8,8, 0x0e1228,8, 0x0e12a8,8, 0x0e1328,8, 0x0e13a8,8, 0x0e1428,8, 0x0e14a8,8, 0x0e1528,8, 0x0e15a8,8, 0x0e1628,8, 0x0e16a8,8, 0x0e1728,8, 0x0e17a8,8, 0x0e1828,8, 0x0e18a8,8, 0x0e1928,8, 0x0e19a8,8, 0x0e1a28,8, 0x0e1aa8,8, 0x0e1b28,8, 0x0e1ba8,8, 0x0e1c28,8, 0x0e1ca8,8, 0x0e1d28,8, 0x0e1da8,8, 0x0e1e28,8, 0x0e1ea8,8, 0x0e1f28,8, 0x0e1fa8,8, 0x0e2028,8, 0x0e20a8,8, 0x0e2128,8, 0x0e21a8,8, 0x0e2200,3, 0x0e2210,3, 0x0e2800,260, 0x0e3000,260, 0x0e3800,20, 0x0e3880,1, 0x0e3890,44, 0x0f0000,1, 0x0f000c,4, 0x0f0020,7, 0x0f0040,2, 0x0f0404,1, 0x0f0410,6, 0x0f0440,5, 0x0f0460,7, 0x0f0480,6, 0x0f04a0,6, 0x0f0520,2, 0x0f052c,2, 0x0f0540,10, 0x0f0580,2, 0x0f0600,20, 0x0f0680,1, 0x0f0800,5, 0x0f0a00,27, 0x0f0a80,2, 0x0f0c04,1, 0x0f0d88,159, 0x0f1080,18, 0x0f1100,1, 0x0f1200,2, 0x0f1210,3, 0x0f1220,3, 0x0f1230,3, 0x0f1240,3, 0x0f1250,3, 0x0f1260,3, 0x0f1270,3, 0x0f1280,3, 0x0f1290,3, 0x0f12a0,3, 0x0f12b0,3, 0x0f12c0,3, 0x0f12d0,3, 0x0f12e0,3, 0x0f12f0,3, 0x0f1300,3, 0x0f2000,128, 0x0f2400,2, 0x0f2410,3, 0x0f2420,3, 0x0f2430,3, 0x0f2440,3, 0x0f2450,3, 0x0f2460,3, 0x0f2470,3, 0x0f2480,3, 0x0f2490,3, 0x0f24a0,3, 0x0f24b0,3, 0x0f24c0,3, 0x0f24d0,3, 0x0f24e0,3, 0x0f24f0,3, 0x0f2500,3, 0x0f2600,13, 0x0f2640,2, 0x0f2800,8, 0x0f2900,2, 0x0f2910,3, 0x0f2920,3, 0x0f2930,3, 0x0f2940,3, 0x0f2950,3, 0x0f2960,3, 0x0f2970,3, 0x0f2980,3, 0x0f2a00,3, 0x0f3000,23, 0x0f3080,2, 0x0f30a0,9, 0x0f3100,2, 0x0f3110,3, 0x0f3120,3, 0x0f3130,3, 0x0f3140,3, 0x0f3150,3, 0x0f3160,3, 0x0f3170,3, 0x0f3180,3, 0x0f3200,1, 0x0f3210,2, 0x0f3224,1, 0x0f3234,3, 0x0f3244,3, 0x0f3254,1, 0x0f325c,1, 0x0f3304,1, 0x0f337c,51, 0x0f3600,5, 0x0f3640,9, 0x0f3680,9, 0x0f36c0,12, 0x0f3700,3, 0x0f3710,2, 0x0f3740,9, 0x0f3780,3, 0x0f37a0,8, 0x0f3800,6, 0x0f3820,7, 0x0f3840,6, 0x0f3860,7, 0x0f3880,3, 0x0f3890,1, 0x0f3900,2, 0x0f3c00,6, 0x0f3d00,70, 0x0f3e20,9, 0x0f4000,1, 0x0f4008,4, 0x0f4804,1, 0x0f4880,36, 0x0f4914,13, 0x0f4a04,1, 0x0f4a80,36, 0x0f4b14,1, 0x0f4c00,20, 0x0f4c80,9, 0x0f5004,1, 0x0f5080,36, 0x0f5114,13, 0x0f5204,1, 0x0f5280,36, 0x0f5314,1, 0x0f5400,20, 0x0f5480,9, 0x0f5804,1, 0x0f5880,36, 0x0f5914,13, 0x0f5a04,1, 0x0f5a80,36, 0x0f5b14,1, 0x0f5c00,20, 0x0f5c80,9, 0x0f6004,1, 0x0f6080,36, 0x0f6114,13, 0x0f6204,1, 0x0f6280,36, 0x0f6314,1, 0x0f6400,20, 0x0f6480,9, 0x0f6804,1, 0x0f6880,36, 0x0f6914,13, 0x0f6a04,1, 0x0f6a80,36, 0x0f6b14,1, 0x0f6c00,20, 0x0f6c80,9, 0x0f7004,1, 0x0f7080,36, 0x0f7114,13, 0x0f7204,1, 0x0f7280,36, 0x0f7314,1, 0x0f7400,20, 0x0f7480,9, 0x0f7804,1, 0x0f7880,36, 0x0f7914,13, 0x0f7a04,1, 0x0f7a80,36, 0x0f7b14,1, 0x0f7c00,20, 0x0f7c80,9, 0x0f8004,1, 0x0f8080,36, 0x0f8114,13, 0x0f8204,1, 0x0f8280,36, 0x0f8314,1, 0x0f8400,20, 0x0f8480,9, 0x0f8804,1, 0x0f8880,36, 0x0f8914,13, 0x0f8a04,1, 0x0f8a80,36, 0x0f8b14,1, 0x0f8c00,20, 0x0f8c80,9, 0x0f9004,1, 0x0f9080,36, 0x0f9114,13, 0x0f9204,1, 0x0f9280,36, 0x0f9314,1, 0x0f9400,20, 0x0f9480,9, 0x0f9800,20, 0x0f9884,1, 0x0f988c,1, 0x0f98c0,12, 0x0f9900,3, 0x0f9a00,20, 0x0f9a84,1, 0x0f9a8c,1, 0x0f9ac0,12, 0x0f9b00,3, 0x0f9c00,20, 0x0f9c84,1, 0x0f9c8c,1, 0x0f9cc0,12, 0x0f9d00,3, 0x0f9e00,20, 0x0f9e84,1, 0x0f9e8c,1, 0x0f9ec0,12, 0x0f9f00,3, 0x0fa000,20, 0x0fa084,1, 0x0fa08c,1, 0x0fa0c0,12, 0x0fa100,3, 0x0fa200,20, 0x0fa284,1, 0x0fa28c,1, 0x0fa2c0,12, 0x0fa300,3, 0x0fa400,20, 0x0fa484,1, 0x0fa48c,1, 0x0fa4c0,12, 0x0fa500,3, 0x0fa600,20, 0x0fa684,1, 0x0fa68c,1, 0x0fa6c0,12, 0x0fa700,3, 0x0fa800,20, 0x0fa884,1, 0x0fa88c,1, 0x0fa8c0,12, 0x0fa900,3, 0x0faa00,20, 0x0faa84,1, 0x0faa8c,1, 0x0faac0,12, 0x0fab00,3, 0x0fac00,20, 0x0fac84,1, 0x0fac8c,1, 0x0facc0,12, 0x0fad00,3, 0x0fae00,20, 0x0fae84,1, 0x0fae8c,1, 0x0faec0,12, 0x0faf00,3, 0x0fb000,20, 0x0fb084,1, 0x0fb08c,1, 0x0fb0c0,12, 0x0fb100,3, 0x0fb200,20, 0x0fb284,1, 0x0fb28c,1, 0x0fb2c0,12, 0x0fb300,3, 0x0fb400,20, 0x0fb484,1, 0x0fb48c,1, 0x0fb4c0,12, 0x0fb500,3, 0x0fb600,20, 0x0fb684,1, 0x0fb68c,1, 0x0fb6c0,12, 0x0fb700,3, 0x0fb800,20, 0x0fb884,1, 0x0fb88c,1, 0x0fb8c0,12, 0x0fb900,3, 0x0fba00,20, 0x0fba84,1, 0x0fba8c,1, 0x0fbac0,12, 0x0fbb00,3, 0x0fbc00,23, 0x0fbe00,92, 0x0fc000,20, 0x0fc080,8, 0x0fc204,1, 0x0fc234,23, 0x0fc300,3, 0x0fc344,1, 0x0fc350,13, 0x0fd000,2, 0x0fd010,3, 0x0fd020,3, 0x0fd030,3, 0x0fd040,3, 0x0fd050,3, 0x0fd060,3, 0x0fd070,3, 0x0fd080,3, 0x0fd090,3, 0x0fd0a0,3, 0x0fd0b0,3, 0x0fd0c0,3, 0x0fd0d0,3, 0x0fd0e0,3, 0x0fd0f0,3, 0x0fd100,3, 0x0fd200,10, 0x0fd404,1, 0x0fd414,3, 0x0fd800,309, 0x0fe000,3, 0x100000,172032, 0x200000,7, 0x200020,31, 0x2000a0,2, 0x2000c0,7, 0x2000e0,7, 0x200100,6, 0x200120,5, 0x200140,1, 0x200180,13, 0x2001c0,5, 0x2001e0,1, 0x200200,14, 0x200240,5, 0x200400,3, 0x200410,3, 0x200420,3, 0x200430,3, 0x200440,3, 0x200450,3, 0x200460,3, 0x200470,3, 0x200480,3, 0x200490,3, 0x2004a0,3, 0x2004b0,3, 0x2004c0,3, 0x2004d0,3, 0x2004e0,3, 0x2004f0,3, 0x200500,3, 0x200510,3, 0x200520,3, 0x200530,3, 0x200540,3, 0x200550,3, 0x200560,3, 0x200570,3, 0x200580,3, 0x200590,3, 0x2005a0,3, 0x2005b0,3, 0x2005c0,3, 0x2005d0,3, 0x2005e0,3, 0x2005f0,3, 0x200600,2, 0x20060c,12, 0x200640,20, 0x200800,20, 0x200884,1, 0x201000,26, 0x201080,26, 0x201100,26, 0x201180,26, 0x201200,14, 0x201240,3, 0x201250,4, 0x208000,72, 0x208200,18, 0x208280,18, 0x208300,18, 0x208380,18, 0x208400,45, 0x2084c0,2, 0x2084d0,9, 0x208500,19, 0x208550,1, 0x209000,21, 0x209060,29, 0x2090e0,29, 0x209160,29, 0x2091e0,37, 0x209280,5, 0x2092a0,14, 0x2092dc,1, 0x2092e4,2, 0x209300,20, 0x209380,20, 0x209400,128, 0x209800,5, 0x209820,5, 0x209840,5, 0x209860,5, 0x209880,5, 0x2098a0,5, 0x2098c0,5, 0x2098e0,5, 0x209900,5, 0x209920,5, 0x209940,5, 0x209960,5, 0x209980,5, 0x2099a0,5, 0x2099c0,5, 0x2099e0,5, 0x209a00,33, 0x209c00,8, 0x209c24,1, 0x209c2c,3, 0x209c40,6, 0x209c60,3, 0x209c70,3, 0x209c80,3, 0x209c90,3, 0x209ca0,3, 0x209cb0,3, 0x209cc0,3, 0x209cd0,3, 0x209ce0,3, 0x209cf0,3, 0x209d00,3, 0x209d10,3, 0x209d20,3, 0x209d30,3, 0x209d40,3, 0x209d50,3, 0x209d60,19, 0x209db0,3, 0x209dc0,3, 0x209dd0,3, 0x20a000,28, 0x20a080,25, 0x20a100,2, 0x20a180,8, 0x20a1a4,8, 0x20a200,8, 0x20a224,8, 0x20a280,8, 0x20a2a4,8, 0x20a300,8, 0x20a324,8, 0x20a380,4, 0x20a394,19, 0x20a400,5, 0x20a420,5, 0x20a440,5, 0x20a460,5, 0x20a480,5, 0x20a4a0,5, 0x20a4c0,5, 0x20a4e0,5, 0x20a500,5, 0x20a520,5, 0x20a540,5, 0x20a560,5, 0x20a580,5, 0x20a5a0,5, 0x20a5c0,5, 0x20a5e0,5, 0x20a600,33, 0x20a800,44, 0x20b000,20, 0x20b080,16, 0x20b100,28, 0x20b180,28, 0x20b200,16, 0x20b280,20, 0x20b300,1, 0x20b400,128, 0x20b604,9, 0x20b800,37, 0x20b898,15, 0x20ba00,12, 0x20ba44,1, 0x20ba54,8, 0x20ba80,7, 0x20baa0,2, 0x20baac,2, 0x20bac0,16, 0x20bb40,1, 0x20bc00,11, 0x20c000,26, 0x20c06c,2, 0x20c080,3, 0x20c090,17, 0x20c100,26, 0x20c16c,2, 0x20c180,3, 0x20c190,17, 0x20c200,26, 0x20c26c,2, 0x20c280,3, 0x20c290,17, 0x20c300,26, 0x20c36c,2, 0x20c380,3, 0x20c390,17, 0x20c404,1, 0x20c410,4, 0x20c440,28, 0x20c500,11, 0x20c540,11, 0x20c580,11, 0x20c5c0,11, 0x20c600,8, 0x20c640,12, 0x20c680,1, 0x20c800,18, 0x20c880,6, 0x20c8a0,8, 0x220000,1, 0x221000,977, 0x222000,161, 0x223000,977, 0x224000,977, 0x225000,977, 0x226000,977, 0x227000,161, 0x228000,12, 0x228040,14, 0x228080,20, 0x228104,1, 0x22810c,4, 0x228200,12, 0x228240,14, 0x228280,20, 0x228304,1, 0x22830c,4, 0x228400,12, 0x228440,14, 0x228480,20, 0x228504,1, 0x22850c,4, 0x228600,12, 0x228640,14, 0x228680,20, 0x228704,1, 0x22870c,4, 0x228800,12, 0x228840,14, 0x228880,20, 0x228904,1, 0x22890c,4, 0x228a00,17, 0x228a50,2, 0x228a60,3, 0x229000,1, 0x229014,1, 0x22901c,11, 0x229060,9, 0x229094,1, 0x22909c,11, 0x2290e0,15, 0x229200,22, 0x240000,2, 0x240100,1, 0x240200,57, 0x240300,2, 0x24030c,4, 0x240800,27, 0x240870,3, 0x240880,1, 0x240888,25, 0x240904,1, 0x240910,6, 0x240930,10, 0x240960,9, 0x2409a0,17, 0x240a00,5, 0x240a20,3, 0x240a30,15, 0x240c04,1, 0x240c10,12, 0x240d04,1, 0x240d50,44, 0x240e04,1, 0x240e1c,11, 0x241000,34, 0x2410c0,12, 0x242000,48, 0x242100,48, 0x242204,1, 0x24221c,11, 0x242280,3, 0x2422a0,5, 0x2422c0,9, 0x242300,3, 0x242320,6, 0x242340,11, 0x242380,5, 0x2423a0,1, 0x2423b0,30, 0x242800,43, 0x2428b0,10, 0x242900,36, 0x242a00,36, 0x242b00,36, 0x242c00,26, 0x242c80,1, 0x242ca0,8, 0x242d00,20, 0x242d80,20, 0x242e00,20, 0x242e80,20, 0x243000,3, 0x243010,3, 0x243020,3, 0x243030,3, 0x243040,3, 0x243050,3, 0x243060,3, 0x243070,3, 0x243080,4, 0x243100,28, 0x243180,28, 0x243200,28, 0x243400,4, 0x244000,2, 0x244020,9, 0x244080,2, 0x244100,2, 0x244110,1, 0x244118,1, 0x244120,1, 0x244144,8, 0x244180,8, 0x244200,1, 0x244208,7, 0x244280,20, 0x244300,36, 0x244400,28, 0x244480,4, 0x2444a0,1, 0x2444c0,1, 0x2444e0,7, 0x244500,7, 0x244520,1, 0x244540,7, 0x244560,7, 0x244580,1, 0x2445a0,7, 0x2445c0,7, 0x2445e0,1, 0x244600,7, 0x244620,7, 0x244640,3, 0x244650,7, 0x244670,22, 0x2446e0,15, 0x244720,15, 0x244780,2, 0x24478c,3, 0x244800,11, 0x244840,6, 0x24485c,2, 0x244a00,26, 0x244a80,1, 0x244aa0,6, 0x244c00,26, 0x244c80,4, 0x244cc0,25, 0x244d40,6, 0x244d60,2, 0x244d6c,3, 0x244d80,8, 0x244da4,7, 0x244e00,26, 0x244e80,1, 0x244ea0,6, 0x244f00,26, 0x244f80,2, 0x244f90,3, 0x244fa0,1, 0x245000,33, 0x246000,6, 0x246020,2, 0x248000,9, 0x248028,8, 0x248080,3, 0x2480a0,5, 0x248100,9, 0x248128,8, 0x248180,3, 0x2481a0,5, 0x248200,9, 0x248228,8, 0x248280,3, 0x2482a0,5, 0x248300,9, 0x248328,8, 0x248380,6, 0x2483a0,5, 0x248400,9, 0x248428,8, 0x248480,3, 0x2484a0,5, 0x248800,9, 0x248828,8, 0x248880,3, 0x2488a0,5, 0x248900,9, 0x248928,8, 0x248980,3, 0x2489a0,5, 0x248a00,9, 0x248a28,8, 0x248a80,3, 0x248aa0,5, 0x248b00,9, 0x248b28,8, 0x248b80,6, 0x248ba0,5, 0x248c00,9, 0x248c28,8, 0x248c80,3, 0x248ca0,5, 0x249000,9, 0x249028,8, 0x249080,6, 0x2490a0,5, 0x249100,9, 0x249128,8, 0x249180,4, 0x2491c0,13, 0x249200,6, 0x249220,5, 0x24a000,3, 0x24a010,3, 0x24a020,2, 0x24a040,3, 0x24a050,3, 0x24a060,2, 0x24a080,3, 0x24a090,3, 0x24a0a0,2, 0x24a0c0,12, 0x24b000,5, 0x24b020,5, 0x24b040,5, 0x24b060,5, 0x24b080,5, 0x24b0a0,5, 0x24b0c0,5, 0x24b0e0,5, 0x24b100,5, 0x24b120,5, 0x24b140,5, 0x24b160,5, 0x24b180,5, 0x24b1a0,5, 0x24b1c0,5, 0x24b1e0,5, 0x24b200,5, 0x24b220,5, 0x24b240,5, 0x24b260,5, 0x24b280,5, 0x24b2a0,5, 0x24b2c0,5, 0x24b2e0,5, 0x24b300,5, 0x24b320,5, 0x24b340,5, 0x24b360,5, 0x24b380,5, 0x24b3a0,5, 0x24b3c0,5, 0x24b3e0,5, 0x24b400,5, 0x24b420,5, 0x24b440,5, 0x24b460,5, 0x24b480,5, 0x24b4a0,5, 0x24b4c0,5, 0x24b4e0,5, 0x24b500,5, 0x24b520,5, 0x24b540,5, 0x24b560,5, 0x24b580,5, 0x24b5a0,5, 0x24b5c0,5, 0x24b5e0,5, 0x24b600,5, 0x24b620,5, 0x24b640,5, 0x24b660,5, 0x24b680,5, 0x24b6a0,5, 0x24b6c0,5, 0x24b6e0,5, 0x24b700,5, 0x24b720,5, 0x24b740,5, 0x24b760,5, 0x24b780,5, 0x24b7a0,5, 0x24b7c0,5, 0x24b7e0,5, 0x24b800,22, 0x24b860,10, 0x24b890,6, 0x24b8b0,3, 0x24c000,5, 0x24c020,5, 0x24c040,5, 0x24c060,5, 0x24c080,5, 0x24c0a0,5, 0x24c0c0,5, 0x24c0e0,5, 0x24c100,5, 0x24c120,5, 0x24c140,5, 0x24c160,5, 0x24c180,5, 0x24c1a0,5, 0x24c1c0,5, 0x24c1e0,5, 0x24c200,5, 0x24c220,5, 0x24c240,5, 0x24c260,5, 0x24c280,5, 0x24c2a0,5, 0x24c2c0,5, 0x24c2e0,5, 0x24c300,5, 0x24c320,5, 0x24c340,5, 0x24c360,5, 0x24c380,5, 0x24c3a0,5, 0x24c3c0,5, 0x24c3e0,5, 0x24c400,5, 0x24c420,5, 0x24c440,5, 0x24c460,5, 0x24c480,5, 0x24c4a0,5, 0x24c4c0,5, 0x24c4e0,5, 0x24c500,5, 0x24c520,5, 0x24c540,5, 0x24c560,5, 0x24c580,5, 0x24c5a0,5, 0x24c5c0,5, 0x24c5e0,5, 0x24c600,5, 0x24c620,5, 0x24c640,5, 0x24c660,5, 0x24c680,5, 0x24c6a0,5, 0x24c6c0,5, 0x24c6e0,5, 0x24c700,5, 0x24c720,5, 0x24c740,5, 0x24c760,5, 0x24c780,5, 0x24c7a0,5, 0x24c7c0,5, 0x24c7e0,5, 0x24c800,22, 0x24c860,10, 0x24d000,11, 0x24d030,7, 0x24d080,11, 0x24d0b0,7, 0x24d100,1, 0x260000,3, 0x260200,2, 0x260304,1, 0x260344,53, 0x260600,3, 0x260620,15, 0x260680,3, 0x260690,3, 0x2606a0,3, 0x2606b0,3, 0x2606c0,3, 0x2606d0,3, 0x260700,2, 0x260720,9, 0x260760,9, 0x2607a0,8, 0x260800,1, 0x260808,13, 0x260900,35, 0x260990,11, 0x2609c0,2, 0x2609e4,1, 0x2609ec,11, 0x260a24,7, 0x260c00,8, 0x260d00,47, 0x260e00,10, 0x260f00,47, 0x261000,20, 0x261080,6, 0x2610a0,2, 0x2610ac,2, 0x2610c0,1, 0x2610d0,19, 0x261120,7, 0x261140,7, 0x261160,6, 0x261180,6, 0x2611a0,9, 0x2611c8,5, 0x261200,14, 0x261280,20, 0x261300,14, 0x280000,67, 0x280144,1, 0x280154,6, 0x280204,1, 0x280270,100, 0x280404,1, 0x280430,52, 0x280604,1, 0x2806c0,80, 0x280804,1, 0x280828,54, 0x280904,1, 0x280910,60, 0x280a04,1, 0x280a20,24, 0x280a84,1, 0x280ac0,16, 0x280b04,1, 0x280b40,16, 0x280b84,1, 0x280bc0,16, 0x280c04,1, 0x280c18,10, 0x280c44,1, 0x280c58,10, 0x280c84,1, 0x280ca0,8, 0x280cc4,1, 0x280cd0,12, 0x280d04,15, 0x280d84,1, 0x280dc0,16, 0x280e04,1, 0x280e28,22, 0x280e84,1, 0x280e90,12, 0x280ec4,1, 0x280ed8,10, 0x280f04,1, 0x280f18,10, 0x280f44,1, 0x280f58,10, 0x280f84,1, 0x280f90,12, 0x281004,1, 0x281030,20, 0x281104,1, 0x28111c,49, 0x281204,1, 0x281210,12, 0x281244,1, 0x281250,8, 0x281300,5, 0x281320,5, 0x281340,1, 0x281348,2, 0x281364,1, 0x28136c,18, 0x281404,1, 0x281410,20, 0x281504,1, 0x281510,12, 0x281600,5, 0x281620,5, 0x281640,1, 0x281648,2, 0x281664,1, 0x28166c,18, 0x281704,5, 0x281780,3, 0x281790,2, 0x2817a4,1, 0x2817ac,1, 0x2817c0,10, 0x281804,5, 0x281824,3, 0x281840,5, 0x281860,1, 0x282000,7, 0x282020,7, 0x282040,1, 0x282080,7, 0x2820a0,7, 0x2820c0,1, 0x282100,70, 0x282240,3, 0x282250,3, 0x282260,3, 0x282270,2, 0x282284,1, 0x28229c,49, 0x282384,7, 0x282400,5, 0x282420,5, 0x282440,5, 0x282460,2, 0x282484,1, 0x282494,6, 0x282504,1, 0x282540,16, 0x282600,10, 0x282640,10, 0x282680,10, 0x2826c0,2, 0x282700,5, 0x282720,5, 0x282740,1, 0x282748,2, 0x282764,1, 0x28276c,26, 0x282800,4, 0x283000,6, 0x283020,6, 0x283040,6, 0x283060,6, 0x283080,6, 0x2830a0,6, 0x2830c0,6, 0x2830e0,6, 0x283100,6, 0x283120,6, 0x283140,6, 0x283160,6, 0x283180,6, 0x2831a0,6, 0x2831c0,6, 0x2831e0,6, 0x283200,2, 0x283284,1, 0x2832b0,20, 0x283400,27, 0x283480,27, 0x283500,27, 0x283580,2, 0x283600,2, 0x283800,7, 0x283904,1, 0x283940,16, 0x283a00,10, 0x283a40,10, 0x283a80,10, 0x283ac0,2, 0x283b04,1, 0x283b14,6, 0x283c00,5, 0x283c20,5, 0x283c40,1, 0x283c48,2, 0x283c64,1, 0x283c6c,26, 0x283d00,2, 0x284004,1, 0x284018,58, 0x284104,31, 0x284184,31, 0x284204,1, 0x284240,16, 0x284284,1, 0x2842c0,16, 0x284800,4, 0x284820,5, 0x284900,5, 0x284920,5, 0x284940,1, 0x284948,2, 0x284964,1, 0x28496c,26, 0x284c00,46, 0x284d00,46, 0x284e00,46, 0x284f00,2, 0x285000,1, 0x285100,50, 0x285200,40, 0x285300,30, 0x285380,19, 0x285400,18, 0x285500,33, 0x285600,33, 0x285700,18, 0x285780,18, 0x285800,30, 0x285880,30, 0x285900,19, 0x285980,19, 0x285a00,22, 0x285a80,22, 0x285b00,13, 0x285b40,13, 0x285b80,7, 0x285c04,1, 0x285c30,20, 0x285d00,4, 0x285d80,20, 0x286000,148, 0x286400,124, 0x286600,6, 0x286640,9, 0x286680,1, 0x286688,9, 0x2866c4,7, 0x2866e4,1, 0x2866f4,3, 0x286704,1, 0x286714,3, 0x286724,1, 0x286734,3, 0x286744,1, 0x286754,3, 0x286764,1, 0x286774,3, 0x286784,1, 0x286794,3, 0x2867a4,1, 0x2867b4,3, 0x2867c4,1, 0x2867d4,3, 0x2867e4,1, 0x2867f4,3, 0x286804,1, 0x286814,3, 0x286824,1, 0x286834,3, 0x286844,1, 0x286854,3, 0x286880,14, 0x2868c0,3, 0x288000,8, 0x288040,12, 0x288080,3, 0x288090,3, 0x2a0000,128, 0x2a0400,193, 0x2a0800,258, 0x2a1000,120, 0x2a11e4,4, 0x2a1200,4, 0x2a1400,4, 0x2a1420,5, 0x2a1440,4, 0x2a1460,5, 0x2a1480,4, 0x2a14a0,5, 0x2a14c0,4, 0x2a14e0,5, 0x2a1500,4, 0x2a1520,5, 0x2a1540,4, 0x2a1560,5, 0x2a1580,4, 0x2a15a0,5, 0x2a15c0,4, 0x2a15e0,5, 0x2a1600,4, 0x2a1620,5, 0x2a1640,4, 0x2a1660,5, 0x2a1680,4, 0x2a16a0,5, 0x2a16c0,4, 0x2a16e0,5, 0x2a1700,4, 0x2a1720,5, 0x2a1740,4, 0x2a1760,5, 0x2a1780,4, 0x2a17a0,5, 0x2a17c0,4, 0x2a17e0,5, 0x2a1800,4, 0x2a1820,5, 0x2a1840,4, 0x2a1860,5, 0x2a1880,4, 0x2a18a0,5, 0x2a18c0,4, 0x2a18e0,5, 0x2a1900,4, 0x2a1920,5, 0x2a1940,4, 0x2a1960,5, 0x2a1980,4, 0x2a19a0,5, 0x2a19c0,4, 0x2a19e0,5, 0x2a1a00,4, 0x2a1a20,5, 0x2a1a40,4, 0x2a1a60,5, 0x2a1a80,4, 0x2a1aa0,5, 0x2a1ac0,4, 0x2a1ae0,5, 0x2a1b00,4, 0x2a1b20,5, 0x2a1b40,4, 0x2a1b60,5, 0x2a1b80,4, 0x2a1ba0,5, 0x2a1bc0,4, 0x2a1be0,5, 0x2a1c00,4, 0x2a1c20,5, 0x2a1c40,4, 0x2a1c60,5, 0x2a1c80,4, 0x2a1ca0,5, 0x2a1cc0,4, 0x2a1ce0,5, 0x2a1d00,4, 0x2a1d20,5, 0x2a1d40,4, 0x2a1d60,5, 0x2a1d80,4, 0x2a1da0,5, 0x2a1dc0,4, 0x2a1de0,5, 0x2a1e00,4, 0x2a1e20,5, 0x2a1e40,4, 0x2a1e60,5, 0x2a1e80,4, 0x2a1ea0,5, 0x2a1ec0,4, 0x2a1ee0,5, 0x2a1f00,4, 0x2a1f20,5, 0x2a1f40,4, 0x2a1f60,5, 0x2a1f80,4, 0x2a1fa0,5, 0x2a1fc0,4, 0x2a1fe0,5, 0x2a2000,4, 0x2a2020,5, 0x2a2040,4, 0x2a2060,5, 0x2a2080,4, 0x2a20a0,5, 0x2a20c0,4, 0x2a20e0,5, 0x2a2100,4, 0x2a2120,5, 0x2a2140,4, 0x2a2160,5, 0x2a2180,4, 0x2a21a0,5, 0x2a21c0,4, 0x2a21e0,5, 0x2a2200,4, 0x2a2220,5, 0x2a2240,4, 0x2a2260,5, 0x2a2280,4, 0x2a22a0,5, 0x2a22c0,4, 0x2a22e0,5, 0x2a2300,4, 0x2a2320,5, 0x2a2340,4, 0x2a2360,5, 0x2a2380,4, 0x2a23a0,5, 0x2a23c0,4, 0x2a23e0,5, 0x2a2400,6, 0x2a4000,4, 0x2a4080,17, 0x2a4100,4, 0x2a4180,17, 0x2a4200,4, 0x2a4280,17, 0x2a4300,4, 0x2a4380,17, 0x2a4400,4, 0x2a4440,12, 0x2a4480,4, 0x2a44c0,12, 0x2a4500,4, 0x2a4540,12, 0x2a4580,4, 0x2a45c0,12, 0x2a4600,384, 0x2a4c04,6, 0x2a4c20,3, 0x2a4c30,14, 0x2a5004,1, 0x2a5040,4, 0x2a5060,6, 0x2a5080,37, 0x2a5200,20, 0x2a5280,11, 0x2a52b0,1, 0x2a52b8,4, 0x2b0004,1, 0x2b00fc,67, 0x2b0404,1, 0x2b0420,26, 0x2b0504,1, 0x2b0524,9, 0x2b0584,1, 0x2b05a4,9, 0x2b05e4,9, 0x2b0624,9, 0x2b0664,16, 0x2b06a8,2, 0x2b0704,1, 0x2b070c,15, 0x2b0804,1, 0x2b08b0,86, 0x2b0c00,7, 0x2b0c20,7, 0x2b1000,26, 0x2b1080,4, 0x2b10c0,25, 0x2b1140,6, 0x2b1160,1, 0x2b1168,2, 0x2b1174,3, 0x2b1200,8, 0x2b1224,38, 0x2b1400,7, 0x2b1420,7, 0x2b1440,1, 0x2b1480,10, 0x2b14c0,4, 0x2b14e0,7, 0x2b1500,2, 0x2b1604,1, 0x2b1628,24, 0x2b1700,11, 0x2b1730,7, 0x2b1750,7, 0x2b1770,17, 0x2b17b8,133, 0x2b2000,2, 0x2b2010,3, 0x2b2080,28, 0x2b2100,2, 0x2c0004,365, 0x2c05c0,4, 0x2c05e4,1, 0x2c05ec,3, 0x2c0600,14, 0x2c0640,10, 0x2c0670,10, 0x2c06a0,10, 0x2c06d0,10, 0x2c0700,10, 0x2c0730,10, 0x2c0760,10, 0x2c0790,10, 0x2c07c0,10, 0x2c07f0,10, 0x2c0820,10, 0x2c0850,10, 0x2c0880,10, 0x2c08b0,10, 0x2c08e0,10, 0x2c0910,36, 0x2c09c0,7, 0x2c09e0,7, 0x2c0a04,5, 0x2c0a24,10, 0x2c2000,19, 0x2c2060,19, 0x2c20c0,19, 0x2c2120,19, 0x2c2180,19, 0x2c21e0,19, 0x2c2240,19, 0x2c22a0,19, 0x2c2300,19, 0x2c2360,19, 0x2c23c0,19, 0x2c2420,19, 0x2c2480,19, 0x2c24e0,19, 0x2c2540,19, 0x2c25a0,19, 0x2c2600,19, 0x2c2660,19, 0x2c26c0,19, 0x2c2720,19, 0x2c2780,19, 0x2c27e0,19, 0x2c2840,19, 0x2c28a0,19, 0x2c2900,19, 0x2c2960,19, 0x2c29c0,19, 0x2c2a20,19, 0x2c2a80,19, 0x2c2ae0,19, 0x2c2b40,19, 0x2c2ba0,19, 0x2c2c00,19, 0x2c2c60,19, 0x2c2cc0,19, 0x2c2d20,19, 0x2c2d80,19, 0x2c2de0,19, 0x2c2e40,19, 0x2c2ea0,19, 0x2c2f00,19, 0x2c2f60,19, 0x2c2fc0,19, 0x2c3020,19, 0x2c3080,19, 0x2c30e0,19, 0x2c3140,19, 0x2c31a0,19, 0x2c3200,19, 0x2c3260,19, 0x2c32c0,19, 0x2c3320,19, 0x2c3380,19, 0x2c33e0,19, 0x2c3440,19, 0x2c34a0,19, 0x2c3500,19, 0x2c3560,19, 0x2c35c0,19, 0x2c3620,19, 0x2c3680,19, 0x2c36e0,19, 0x2c3740,19, 0x2c37a0,19, 0x2c3804,1, 0x2c3814,5, 0x2c3840,5, 0x2c3860,6, 0x2c3880,4, 0x2c3900,19, 0x2c3980,1, 0x2c3988,3, 0x2c3998,7, 0x2c4000,7, 0x2c4040,13, 0x2c4080,7, 0x2c40c0,13, 0x2c4100,7, 0x2c4120,3, 0x2c4130,3, 0x2c4140,3, 0x2c4150,3, 0x2c4160,3, 0x2c4170,3, 0x2c4180,3, 0x2c4190,3, 0x2c41a0,3, 0x2c41b0,3, 0x2c41c0,3, 0x2c41d0,3, 0x2c41e0,3, 0x2c41f0,3, 0x2c4200,3, 0x2c4210,3, 0x2c4220,3, 0x2c4230,3, 0x2c4240,3, 0x2c4250,3, 0x2c4260,3, 0x2c4270,3, 0x2c4280,3, 0x2c4290,3, 0x2c42a0,3, 0x2c42b0,3, 0x2c42c0,3, 0x2c42d0,3, 0x2c42e0,3, 0x2c42f0,3, 0x2c4300,3, 0x2c4310,3, 0x2c4320,3, 0x2c4330,3, 0x2c4340,3, 0x2c4350,3, 0x2c4360,3, 0x2c4370,3, 0x2c4380,3, 0x2c4390,3, 0x2c43a0,3, 0x2c43b0,3, 0x2c43c0,3, 0x2c43d0,3, 0x2c43e0,3, 0x2c43f0,3, 0x2c4400,3, 0x2c4410,3, 0x2c4420,3, 0x2c4430,3, 0x2c4440,3, 0x2c4450,3, 0x2c4460,3, 0x2c4470,3, 0x2c4480,3, 0x2c4490,3, 0x2c44a0,3, 0x2c44b0,3, 0x2c44c0,3, 0x2c44d0,3, 0x2c44e0,3, 0x2c44f0,3, 0x2c4500,3, 0x2c4510,144, 0x2c4780,2, 0x2c4804,1, 0x2c4824,9, 0x2c4880,38, 0x2c4920,9, 0x2c4948,15, 0x2c49a4,5, 0x2c49c4,1, 0x2c49d4,10, 0x2c4a00,2, 0x2c4b00,48, 0x2c4c00,26, 0x2c4c80,2, 0x2c4e04,1, 0x2c4ef8,66, 0x2c5004,3, 0x2c5014,1, 0x2c501c,5, 0x2c5080,1, 0x2c5094,13, 0x2c5100,3, 0x2c5180,5, 0x2c51a0,5, 0x2c51c0,1, 0x2c5200,9, 0x2c5240,11, 0x2c8004,1, 0x2c800c,31, 0x2c8104,1, 0x2c811c,9, 0x2c8204,1, 0x2c8240,18, 0x2c8304,1, 0x2c831c,12, 0x2c8350,13, 0x2c8404,1, 0x2c8418,12, 0x2c8484,1, 0x2c84a4,7, 0x2c8504,1, 0x2c8538,18, 0x2c8584,1, 0x2c8590,4, 0x2c85a4,1, 0x2c85ac,1, 0x2c85b4,1, 0x2c85bc,10, 0x2c8804,3, 0x2c8a04,1, 0x2c8af8,68, 0x2c9000,66, 0x2c9200,4, 0x2ca000,58, 0x2ca100,49, 0x2ca200,2, 0x2ca304,1, 0x2ca314,29, 0x2ca400,38, 0x2ca4a4,1, 0x2ca4ac,1, 0x2ca4b4,1, 0x2ca4bc,1, 0x2ca4c4,1, 0x2ca4cc,1, 0x2ca4d4,1, 0x2ca4dc,17, 0x2ca804,6, 0x2ca824,6, 0x2ca840,6, 0x2ca860,3, 0x2cac00,168, 0x2caea4,2, 0x2caeb0,4, 0x2cb000,7, 0x2cb020,2, 0x2cb400,26, 0x2cb480,4, 0x2cb4c0,25, 0x2cb540,6, 0x2cb560,1, 0x2cb568,2, 0x2cb574,3, 0x2cb600,8, 0x2cb624,74, 0x2cc000,932, 0x2cd000,380, 0x2cd800,4, 0x2d0004,1, 0x2d003c,49, 0x2d0104,1, 0x2d013c,51, 0x2d0400,1, 0x2d4000,4, 0x2d4800,3, 0x2d4810,256, 0x2d5000,202, 0x2d6000,7, 0x2d6024,1, 0x2d6400,137, 0x2d6800,17, 0x2d7000,5, 0x2d7040,2, 0x2d7064,1, 0x2d706c,5, 0x2d7084,13, 0x2d7400,26, 0x2d7480,4, 0x2d74c0,25, 0x2d7540,6, 0x2d7560,1, 0x2d7568,2, 0x2d7574,3, 0x2d7600,8, 0x2d7624,37, 0x2d7804,1, 0x2d7810,3, 0x2d7820,128, 0x2d8000,4, 0x2d8040,10, 0x2d8080,2, 0x2d8200,84, 0x2d8400,1, 0x2e0000,28, 0x2e0080,17, 0x2e0100,28, 0x2e0180,17, 0x2e0200,3, 0x2e0214,1, 0x2e021c,1, 0x2e0280,3, 0x2e0294,1, 0x2e029c,1, 0x2e0300,18, 0x2e0380,18, 0x2e0400,18, 0x2e0480,18, 0x2e0500,18, 0x2e0580,18, 0x2e0600,18, 0x2e0680,18, 0x2e0700,13, 0x2e0738,6, 0x2e0780,13, 0x2e07b8,6, 0x2e0800,1, 0x2e0808,22, 0x2e0880,1, 0x2e0894,13, 0x2e0900,3, 0x2e0910,3, 0x2e0920,3, 0x2e0940,1, 0x2e0954,1, 0x2e095c,1, 0x2e0a00,52, 0x2e0c00,4, 0x2e0d00,34, 0x2e0e00,4, 0x2e0e80,30, 0x2e0f00,1, 0x2e0f40,5, 0x2e0f60,5, 0x2e0f80,6, 0x2e1000,14, 0x2e1040,4, 0x2e1060,17, 0x2e10c0,6, 0x2e10e0,1, 0x2e10e8,2, 0x2e10f4,11, 0x2e1124,17, 0x2e1200,3, 0x2e1210,3, 0x2e1220,3, 0x2e1230,3, 0x2e1240,3, 0x2e2000,20, 0x2e2080,3, 0x2e2090,1, 0x2e2098,2, 0x2e4000,11, 0x2e4030,7, 0x2e4050,3, 0x2e4060,21, 0x2e4200,11, 0x2e4230,2, 0x2e4240,11, 0x2e4270,2, 0x2e4280,1, 0x2e4288,15, 0x2e42e0,2, 0x2e42ec,2, 0x2e4300,4, 0x2e4380,27, 0x2e4400,24, 0x2e4464,2, 0x2e4470,4, 0x2e4600,26, 0x2e4680,4, 0x2e46c0,25, 0x2e4740,6, 0x2e4760,1, 0x2e4768,2, 0x2e4774,11, 0x2e47a4,7, 0x2e4800,9, 0x2e4840,11, 0x2e4880,23, 0x2e48e0,15, 0x2e4920,15, 0x2e4960,1, 0x2e5000,11, 0x2e5030,7, 0x2e5050,3, 0x2e5060,21, 0x2e5200,11, 0x2e5230,2, 0x2e5240,11, 0x2e5270,2, 0x2e5280,1, 0x2e5288,15, 0x2e52e0,2, 0x2e52ec,2, 0x2e5300,4, 0x2e5380,27, 0x2e5400,24, 0x2e5464,2, 0x2e5470,4, 0x2e5600,26, 0x2e5680,4, 0x2e56c0,25, 0x2e5740,6, 0x2e5760,1, 0x2e5768,2, 0x2e5774,11, 0x2e57a4,7, 0x2e5800,9, 0x2e5840,11, 0x2e5880,23, 0x2e58e0,15, 0x2e5920,15, 0x2e5960,1, 0x2e6000,1, 0x2e6100,36, 0x2e6200,7, 0x2e8000,3, 0x2e8800,7, 0x2e8820,6, 0x2e8840,6, 0x2e8880,1, 0x2e8894,1, 0x2e889c,2, 0x2e88c0,9, 0x2e8900,18, 0x2e8a00,36, 0x2e8b00,22, 0x2e8b80,18, 0x2e8c00,3, 0x2e8c10,3, 0x2e9000,3, 0x2e9010,2, 0x2e9080,20, 0x2e9100,1, 0x2e9200,26, 0x2e9280,4, 0x2e92c0,25, 0x2e9340,6, 0x2e9360,1, 0x2e9368,2, 0x2e9374,11, 0x2e93a4,4, 0x2e9400,1, 0x300000,4, 0x300014,15, 0x300080,4, 0x300094,15, 0x300100,13, 0x300140,13, 0x300180,2, 0x300200,29, 0x300280,29, 0x300300,1, 0x300400,44, 0x300500,1, 0x300508,43, 0x300600,3, 0x300684,1, 0x3006b8,22, 0x300720,5, 0x300740,2, 0x300780,10, 0x3007c0,10, 0x300800,8, 0x301000,4, 0x301014,15, 0x301080,4, 0x301094,15, 0x301100,13, 0x301140,13, 0x301180,2, 0x301200,29, 0x301280,29, 0x301300,1, 0x301400,44, 0x301500,1, 0x301508,43, 0x301600,3, 0x301684,1, 0x3016b8,22, 0x301720,5, 0x301740,2, 0x301780,10, 0x3017c0,10, 0x301800,8, 0x302000,9, 0x302104,1, 0x302130,41, 0x302200,9, 0x302304,1, 0x302330,41, 0x303000,29, 0x303078,32, 0x303200,81, 0x303400,81, 0x303600,81, 0x303800,19, 0x304000,7, 0x304020,3, 0x304040,7, 0x304060,3, 0x304080,7, 0x3040a0,2, 0x3040c0,7, 0x3040e0,2, 0x3040f0,3, 0x304100,67, 0x308000,54, 0x308100,238, 0x3084c0,6, 0x3084e0,6, 0x308500,6, 0x308520,6, 0x308540,6, 0x308560,6, 0x308580,6, 0x3085c0,35, 0x308650,15, 0x308690,9, 0x308800,1, 0x308808,10, 0x308a00,117, 0x308c00,5, 0x308c20,5, 0x309000,1, 0x309084,15, 0x309100,2, 0x309200,26, 0x309280,4, 0x3092c0,25, 0x309340,6, 0x309360,1, 0x309368,2, 0x309374,11, 0x3093a4,11, 0x309400,24, 0x309464,1, 0x309470,7, 0x309490,3, 0x3094a0,3, 0x3094b0,3, 0x3094c0,3, 0x309500,16, 0x309544,1, 0x309550,4, 0x309580,16, 0x3095c4,1, 0x3095d0,4, 0x309600,4, 0x309640,13, 0x309680,4, 0x3096c0,13, 0x309700,4, 0x309740,11, 0x309780,4, 0x3097c0,11, 0x309800,4, 0x309820,6, 0x309840,4, 0x309860,6, 0x309880,19, 0x320000,1, 0x320800,40, 0x320900,40, 0x320a00,6, 0x320a20,22, 0x320a80,18, 0x320b00,18, 0x320b80,19, 0x320c00,10, 0x320c40,10, 0x320c80,15, 0x321000,40, 0x321100,40, 0x321200,6, 0x321220,22, 0x321280,18, 0x321300,18, 0x321380,19, 0x321400,10, 0x321440,10, 0x321480,15, 0x321800,3, 0x321814,6, 0x321830,7, 0x321850,3, 0x321860,3, 0x321870,3, 0x321880,9, 0x3218c0,8, 0x321a00,84, 0x321c00,2, 0x321c0c,2, 0x321c20,3, 0x322000,3, 0x322014,6, 0x322030,7, 0x322050,3, 0x322060,3, 0x322070,3, 0x322080,9, 0x3220c0,8, 0x322200,84, 0x322400,2, 0x32240c,2, 0x322420,3, 0x322800,18, 0x324000,9, 0x324040,9, 0x324084,1, 0x32408c,6, 0x3240a8,5, 0x3240c0,21, 0x324200,73, 0x324400,4, 0x324440,29, 0x3244c0,1, 0x324800,9, 0x324840,9, 0x324884,1, 0x32488c,6, 0x3248a8,5, 0x3248c0,21, 0x324a00,73, 0x324c00,4, 0x324c40,29, 0x324cc0,1, 0x325000,6, 0x325024,6, 0x325200,8, 0x325224,1, 0x325230,4, 0x325400,26, 0x325480,4, 0x3254c0,25, 0x325540,6, 0x325560,1, 0x325568,2, 0x325574,11, 0x3255a4,13, 0x325600,4, 0x325640,15, 0x325680,4, 0x3256c0,15, 0x325700,32, 0x325784,1, 0x325790,4, 0x325800,3, 0x325810,2, 0x325900,32, 0x325984,1, 0x325990,4, 0x325a00,3, 0x325a10,2, 0x340000,2, 0x340010,3, 0x340040,12, 0x380000,22, 0x380080,22, 0x380100,12, 0x380140,12, 0x380200,52, 0x380300,52, 0x380400,11, 0x380440,11, 0x380480,3, 0x3804a0,6, 0x3804c0,6, 0x3804e0,3, 0x3804f0,3, 0x380800,9, 0x380840,15, 0x380880,15, 0x3808c0,15, 0x380900,1, 0x380914,13, 0x380980,13, 0x381000,17, 0x381080,17, 0x381104,5, 0x381120,3, 0x381130,11, 0x381200,31, 0x381280,31, 0x381300,12, 0x381340,12, 0x381380,2, 0x381390,2, 0x3813a0,3, 0x3813b0,3, 0x3813c0,5, 0x3813e0,5, 0x381400,3, 0x381410,3, 0x381420,3, 0x381430,3, 0x381440,3, 0x381450,3, 0x381460,7, 0x381800,26, 0x381880,4, 0x3818c0,25, 0x381940,6, 0x381960,1, 0x381968,2, 0x381974,11, 0x3819a4,11, 0x381a00,4, 0x381b00,43, 0x381c00,4, 0x381c20,7, 0x381c40,3, 0x381c50,1, 0x381e00,32, 0x381e84,1, 0x381e90,4, 0x381ea4,1, 0x381eb4,14, 0x381ef0,2, 0x381f04,1, 0x381f10,8, 0x381f34,6, 0x382000,3, 0x382010,17, 0x382080,4, 0x382100,15, 0x382140,1, 0x382180,2, 0x384000,22, 0x384080,22, 0x384100,12, 0x384140,12, 0x384200,52, 0x384300,52, 0x384400,11, 0x384440,11, 0x384480,3, 0x3844a0,6, 0x3844c0,6, 0x3844e0,3, 0x3844f0,3, 0x384800,9, 0x384840,15, 0x384880,15, 0x3848c0,15, 0x384900,1, 0x384914,13, 0x384980,13, 0x385000,17, 0x385080,17, 0x385104,5, 0x385120,3, 0x385130,11, 0x385200,31, 0x385280,31, 0x385300,12, 0x385340,12, 0x385380,2, 0x385390,2, 0x3853a0,3, 0x3853b0,3, 0x3853c0,5, 0x3853e0,5, 0x385400,3, 0x385410,3, 0x385420,3, 0x385430,3, 0x385440,3, 0x385450,3, 0x385460,7, 0x385800,26, 0x385880,4, 0x3858c0,25, 0x385940,6, 0x385960,1, 0x385968,2, 0x385974,11, 0x3859a4,11, 0x385a00,4, 0x385b00,43, 0x385c00,4, 0x385c20,7, 0x385c40,3, 0x385c50,1, 0x385e00,32, 0x385e84,1, 0x385e90,4, 0x385ea4,1, 0x385eb4,14, 0x385ef0,2, 0x385f04,1, 0x385f10,8, 0x385f34,6, 0x386000,3, 0x386010,17, 0x386080,4, 0x386100,15, 0x386140,1, 0x386180,2, 0x388000,100, 0x388200,3, 0x388210,5, 0x390000,22, 0x390080,22, 0x390100,22, 0x390180,22, 0x390200,22, 0x390280,22, 0x390300,22, 0x390380,22, 0x390400,12, 0x390440,12, 0x390480,12, 0x3904c0,12, 0x390500,12, 0x390540,12, 0x390580,12, 0x3905c0,12, 0x390600,52, 0x390700,52, 0x390800,11, 0x390840,3, 0x390850,134, 0x390a74,1, 0x390a7c,1, 0x391000,5, 0x391020,6, 0x391040,6, 0x391060,6, 0x391080,1, 0x391094,13, 0x391100,13, 0x392000,17, 0x392080,17, 0x392100,17, 0x392180,17, 0x392200,17, 0x392280,17, 0x392300,17, 0x392380,17, 0x392404,5, 0x392420,3, 0x392430,10, 0x392800,31, 0x392880,31, 0x392900,31, 0x392980,31, 0x392a00,31, 0x392a80,31, 0x392b00,31, 0x392b80,31, 0x392c00,12, 0x392c40,12, 0x392c80,12, 0x392cc0,12, 0x392d00,12, 0x392d40,12, 0x392d80,12, 0x392dc0,12, 0x392e00,2, 0x392e10,3, 0x392e20,3, 0x392e40,5, 0x392e60,3, 0x392e70,3, 0x393000,17, 0x393080,17, 0x393100,17, 0x393180,17, 0x393200,17, 0x393280,17, 0x393300,17, 0x393380,17, 0x393404,5, 0x393420,3, 0x393430,10, 0x393800,31, 0x393880,31, 0x393900,31, 0x393980,31, 0x393a00,31, 0x393a80,31, 0x393b00,31, 0x393b80,31, 0x393c00,12, 0x393c40,12, 0x393c80,12, 0x393cc0,12, 0x393d00,12, 0x393d40,12, 0x393d80,12, 0x393dc0,12, 0x393e00,2, 0x393e10,3, 0x393e20,3, 0x393e40,5, 0x393e60,3, 0x393e70,3, 0x394000,17, 0x394080,17, 0x394100,17, 0x394180,17, 0x394200,17, 0x394280,17, 0x394300,17, 0x394380,17, 0x394404,5, 0x394420,3, 0x394430,10, 0x394800,31, 0x394880,31, 0x394900,31, 0x394980,31, 0x394a00,31, 0x394a80,31, 0x394b00,31, 0x394b80,31, 0x394c00,12, 0x394c40,12, 0x394c80,12, 0x394cc0,12, 0x394d00,12, 0x394d40,12, 0x394d80,12, 0x394dc0,12, 0x394e00,2, 0x394e10,3, 0x394e20,3, 0x394e40,5, 0x394e60,3, 0x394e70,3, 0x395000,17, 0x395080,17, 0x395100,17, 0x395180,17, 0x395200,17, 0x395280,17, 0x395300,17, 0x395380,17, 0x395404,5, 0x395420,3, 0x395430,10, 0x395800,31, 0x395880,31, 0x395900,31, 0x395980,31, 0x395a00,31, 0x395a80,31, 0x395b00,31, 0x395b80,31, 0x395c00,12, 0x395c40,12, 0x395c80,12, 0x395cc0,12, 0x395d00,12, 0x395d40,12, 0x395d80,12, 0x395dc0,12, 0x395e00,2, 0x395e10,3, 0x395e20,3, 0x395e40,5, 0x395e60,3, 0x395e70,3, 0x396000,26, 0x396080,4, 0x3960c0,25, 0x396140,6, 0x396160,1, 0x396168,2, 0x396174,11, 0x3961a4,6, 0x396200,4, 0x396300,43, 0x396400,4, 0x396420,6, 0x396440,3, 0x396450,1, 0x396480,3, 0x396490,7, 0x3964c0,6, 0x398000,44, 0x398100,3, 0x398110,4, 0x3a0000,138, 0x3a0230,1, 0x3a0238,3, 0x3a0248,3, 0x3a0258,3, 0x3a0268,3, 0x3a0278,3, 0x3a0288,3, 0x3a0298,3, 0x3a02a8,2, 0x3a02c0,42, 0x3a0384,1, 0x3a0390,7, 0x3a03c0,514, 0x3a0be4,1, 0x3a0bf0,6, 0x3a0c10,3, 0x3a0d00,36, 0x3a0e00,26, 0x3a0e80,4, 0x3a0ec0,25, 0x3a0f40,6, 0x3a0f60,1, 0x3a0f68,2, 0x3a0f74,11, 0x3a0fa4,4, 0x400000,1, 0x400014,6, 0x400040,1, 0x400054,6, 0x400080,1, 0x400094,6, 0x4000c0,1, 0x4000d4,6, 0x400100,1, 0x400114,6, 0x400140,1, 0x400154,6, 0x400180,1, 0x400194,6, 0x4001c0,1, 0x4001d4,6, 0x400200,1, 0x400214,6, 0x400240,1, 0x400254,6, 0x400280,1, 0x400294,6, 0x4002c0,1, 0x4002d4,6, 0x400300,1, 0x400314,6, 0x400340,1, 0x400354,6, 0x400380,1, 0x400394,6, 0x4003c0,1, 0x4003d4,6, 0x400400,1, 0x400414,6, 0x400440,1, 0x400454,6, 0x400480,1, 0x400494,6, 0x4004c0,1, 0x4004d4,6, 0x400500,1, 0x400514,6, 0x400540,1, 0x400554,6, 0x400580,1, 0x400594,6, 0x4005c0,1, 0x4005d4,6, 0x400600,1, 0x400614,6, 0x400640,1, 0x400654,6, 0x400680,1, 0x400694,6, 0x4006c0,1, 0x4006d4,6, 0x400700,1, 0x400714,6, 0x400740,1, 0x400754,6, 0x400780,1, 0x400794,6, 0x4007c0,1, 0x4007d4,6, 0x400800,1, 0x400814,6, 0x400840,1, 0x400854,6, 0x400880,1, 0x400894,6, 0x4008c0,1, 0x4008d4,6, 0x400900,1, 0x400914,6, 0x400940,1, 0x400954,6, 0x400980,1, 0x400994,6, 0x4009c0,1, 0x4009d4,6, 0x400a00,1, 0x400a14,6, 0x400a40,1, 0x400a54,6, 0x400a80,1, 0x400a94,6, 0x400ac0,1, 0x400ad4,6, 0x400b00,1, 0x400b14,6, 0x400b40,1, 0x400b54,6, 0x400b80,1, 0x400b94,6, 0x400bc0,1, 0x400bd4,6, 0x400c00,1, 0x400c14,6, 0x400c40,1, 0x400c54,6, 0x400c80,1, 0x400c94,6, 0x400cc0,1, 0x400cd4,6, 0x400d00,1, 0x400d14,6, 0x400d40,1, 0x400d54,6, 0x400d80,1, 0x400d94,6, 0x400dc0,1, 0x400dd4,6, 0x400e00,1, 0x400e14,6, 0x400e40,1, 0x400e54,6, 0x400e80,1, 0x400e94,6, 0x400ec0,1, 0x400ed4,6, 0x400f00,1, 0x400f14,6, 0x400f40,1, 0x400f54,6, 0x400f80,1, 0x400f94,6, 0x400fc0,1, 0x400fd4,6, 0x401000,1, 0x401014,6, 0x401100,5, 0x401120,2, 0x40112c,3, 0x401140,4, 0x401180,3, 0x401200,5, 0x401220,2, 0x40122c,3, 0x401240,4, 0x401280,3, 0x401300,5, 0x401320,2, 0x40132c,3, 0x401340,4, 0x401380,3, 0x401400,5, 0x401420,2, 0x40142c,3, 0x401440,4, 0x401480,3, 0x401500,5, 0x401520,2, 0x40152c,3, 0x401540,4, 0x401580,3, 0x401600,5, 0x401620,2, 0x40162c,3, 0x401640,4, 0x401680,3, 0x401700,5, 0x401720,2, 0x40172c,3, 0x401740,4, 0x401780,3, 0x401800,5, 0x401820,2, 0x40182c,3, 0x401840,4, 0x401880,3, 0x401900,5, 0x401920,2, 0x40192c,3, 0x401940,4, 0x401980,3, 0x401a00,5, 0x401a20,2, 0x401a2c,3, 0x401a40,4, 0x401a80,3, 0x401b00,5, 0x401b20,2, 0x401b2c,3, 0x401b40,4, 0x401b80,3, 0x401c00,5, 0x401c20,2, 0x401c2c,3, 0x401c40,4, 0x401c80,3, 0x401d00,5, 0x401d20,2, 0x401d2c,3, 0x401d40,4, 0x401d80,3, 0x401e00,5, 0x401e20,2, 0x401e2c,3, 0x401e40,4, 0x401e80,3, 0x401f00,5, 0x401f20,2, 0x401f2c,3, 0x401f40,4, 0x401f80,3, 0x402000,5, 0x402020,2, 0x40202c,3, 0x402040,4, 0x402080,3, 0x402100,5, 0x402120,2, 0x40212c,3, 0x402140,4, 0x402180,3, 0x402200,5, 0x402220,2, 0x40222c,3, 0x402240,4, 0x402280,3, 0x402300,5, 0x402320,2, 0x40232c,3, 0x402340,4, 0x402380,3, 0x402400,5, 0x402420,2, 0x40242c,3, 0x402440,4, 0x402480,3, 0x402500,5, 0x402520,2, 0x40252c,3, 0x402540,4, 0x402580,3, 0x402600,5, 0x402620,2, 0x40262c,3, 0x402640,4, 0x402680,3, 0x402700,5, 0x402720,2, 0x40272c,3, 0x402740,4, 0x402780,3, 0x402800,5, 0x402820,2, 0x40282c,3, 0x402840,4, 0x402880,3, 0x402900,5, 0x402920,2, 0x40292c,3, 0x402940,4, 0x402980,3, 0x402a00,5, 0x402a20,2, 0x402a2c,3, 0x402a40,4, 0x402a80,3, 0x402b00,5, 0x402b20,2, 0x402b2c,3, 0x402b40,4, 0x402b80,3, 0x402c00,5, 0x402c20,2, 0x402c2c,3, 0x402c40,4, 0x402c80,3, 0x402d00,5, 0x402d20,2, 0x402d2c,3, 0x402d40,4, 0x402d80,3, 0x402e00,5, 0x402e20,2, 0x402e2c,3, 0x402e40,4, 0x402e80,3, 0x402f00,5, 0x402f20,2, 0x402f2c,3, 0x402f40,4, 0x402f80,3, 0x403000,5, 0x403020,2, 0x40302c,3, 0x403040,4, 0x403080,3, 0x403100,5, 0x403120,2, 0x40312c,3, 0x403140,4, 0x403180,3, 0x403200,5, 0x403220,2, 0x40322c,3, 0x403240,4, 0x403280,3, 0x403300,5, 0x403320,2, 0x40332c,3, 0x403340,4, 0x403380,3, 0x403400,5, 0x403420,2, 0x40342c,3, 0x403440,4, 0x403480,3, 0x403500,5, 0x403520,2, 0x40352c,3, 0x403540,4, 0x403580,3, 0x403600,5, 0x403620,2, 0x40362c,3, 0x403640,4, 0x403680,3, 0x403700,5, 0x403720,2, 0x40372c,3, 0x403740,4, 0x403780,3, 0x403800,5, 0x403820,2, 0x40382c,3, 0x403840,4, 0x403880,3, 0x403900,5, 0x403920,2, 0x40392c,3, 0x403940,4, 0x403980,3, 0x403a00,5, 0x403a20,2, 0x403a2c,3, 0x403a40,4, 0x403a80,3, 0x403b00,5, 0x403b20,2, 0x403b2c,3, 0x403b40,4, 0x403b80,3, 0x403c00,5, 0x403c20,2, 0x403c2c,3, 0x403c40,4, 0x403c80,3, 0x403d00,5, 0x403d20,2, 0x403d2c,3, 0x403d40,4, 0x403d80,3, 0x403e00,5, 0x403e20,2, 0x403e2c,3, 0x403e40,4, 0x403e80,3, 0x403f00,5, 0x403f20,2, 0x403f2c,3, 0x403f40,4, 0x403f80,3, 0x404000,5, 0x404020,2, 0x40402c,3, 0x404040,4, 0x404080,3, 0x404100,5, 0x404120,2, 0x40412c,3, 0x404140,4, 0x404180,3, 0x404200,5, 0x404220,2, 0x40422c,3, 0x404240,4, 0x404280,3, 0x404300,5, 0x404320,2, 0x40432c,3, 0x404340,4, 0x404380,3, 0x404400,5, 0x404420,2, 0x40442c,3, 0x404440,4, 0x404480,3, 0x404500,5, 0x404520,2, 0x40452c,3, 0x404540,4, 0x404580,3, 0x404600,5, 0x404620,2, 0x40462c,3, 0x404640,4, 0x404680,3, 0x404700,5, 0x404720,2, 0x40472c,3, 0x404740,4, 0x404780,3, 0x404800,5, 0x404820,2, 0x40482c,3, 0x404840,4, 0x404880,3, 0x404900,5, 0x404920,2, 0x40492c,3, 0x404940,4, 0x404980,3, 0x404a00,5, 0x404a20,2, 0x404a2c,3, 0x404a40,4, 0x404a80,3, 0x404b00,5, 0x404b20,2, 0x404b2c,3, 0x404b40,4, 0x404b80,3, 0x404c00,5, 0x404c20,2, 0x404c2c,3, 0x404c40,4, 0x404c80,3, 0x404d00,5, 0x404d20,2, 0x404d2c,3, 0x404d40,4, 0x404d80,3, 0x404e00,5, 0x404e20,2, 0x404e2c,3, 0x404e40,4, 0x404e80,3, 0x404f00,5, 0x404f20,2, 0x404f2c,3, 0x404f40,4, 0x404f80,3, 0x405000,5, 0x405020,2, 0x40502c,3, 0x405040,4, 0x405080,3, 0x405100,5, 0x405120,2, 0x40512c,3, 0x405140,4, 0x405180,3, 0x405200,1, 0x405210,3, 0x405220,2, 0x405800,256, 0x405c04,32, 0x405c90,4, 0x406000,256, 0x406404,32, 0x406490,4, 0x406800,24, 0x406864,1, 0x406870,4, 0x406c00,26, 0x406c80,4, 0x406cc0,25, 0x406d40,6, 0x406d60,1, 0x406d68,2, 0x406d74,3, 0x406e00,8, 0x406e24,46, 0x407000,4, 0x407020,5, 0x407040,4, 0x420000,2, 0x420200,76, 0x420400,68, 0x420520,272, 0x420a00,36, 0x420b00,333, 0x422000,2, 0x422200,76, 0x422400,68, 0x422520,272, 0x422a00,36, 0x422b00,333, 0x424000,2, 0x424200,76, 0x424400,68, 0x424520,272, 0x424a00,36, 0x424b00,333, 0x426000,2, 0x426200,76, 0x426400,68, 0x426520,272, 0x426a00,36, 0x426b00,333, 0x428000,2, 0x428200,76, 0x428400,68, 0x428520,272, 0x428a00,36, 0x428b00,333, 0x42a000,2, 0x42a200,76, 0x42a400,68, 0x42a520,272, 0x42aa00,36, 0x42ab00,333, 0x42c000,2, 0x42c200,76, 0x42c400,68, 0x42c520,272, 0x42ca00,36, 0x42cb00,333, 0x42e000,2, 0x42e200,76, 0x42e400,68, 0x42e520,272, 0x42ea00,36, 0x42eb00,333, 0x430000,2, 0x430200,76, 0x430400,68, 0x430520,272, 0x430a00,36, 0x430b00,333, 0x432000,2, 0x432200,76, 0x432400,68, 0x432520,272, 0x432a00,36, 0x432b00,333, 0x434000,2, 0x434200,76, 0x434400,68, 0x434520,272, 0x434a00,36, 0x434b00,333, 0x436000,2, 0x436200,76, 0x436400,68, 0x436520,272, 0x436a00,36, 0x436b00,333, 0x440000,1, 0x441000,977, 0x442000,161, 0x443000,977, 0x444000,977, 0x445000,161, 0x446000,12, 0x446040,14, 0x446080,20, 0x446104,1, 0x44610c,4, 0x446200,12, 0x446240,14, 0x446280,20, 0x446304,1, 0x44630c,4, 0x446400,12, 0x446440,14, 0x446480,20, 0x446504,1, 0x44650c,4, 0x446600,17, 0x446650,2, 0x446660,3, 0x446800,1, 0x446814,1, 0x44681c,11, 0x446860,9, 0x446894,1, 0x44689c,11, 0x4468e0,15, 0x446a00,6, 0x446a20,14, 0x460000,3, 0x460010,3, 0x460020,1, 0x460040,3, 0x460050,2, 0x460060,3, 0x460070,2, 0x460800,53, 0x460900,3, 0x460910,16, 0x460a00,53, 0x460b00,3, 0x460b10,16, 0x460c00,5, 0x460c20,5, 0x460c40,18, 0x461000,6, 0x461020,4, 0x461040,16, 0x462000,22, 0x462080,22, 0x462100,23, 0x462160,7, 0x462200,5, 0x462220,3, 0x462230,3, 0x462240,3, 0x462260,24, 0x462300,5, 0x462320,3, 0x462330,3, 0x462340,3, 0x462360,24, 0x462400,5, 0x462420,3, 0x462430,3, 0x462440,3, 0x462460,24, 0x462500,5, 0x462520,3, 0x462530,3, 0x462540,3, 0x462560,24, 0x462800,4, 0x462820,16, 0x462880,10, 0x4628c0,10, 0x462900,6, 0x462920,6, 0x462940,4, 0x462980,13, 0x4629c0,13, 0x462a00,9, 0x463000,14, 0x463040,9, 0x463080,6, 0x4630a0,1, 0x4630a8,4, 0x463100,4, 0x463200,100, 0x463400,100, 0x463600,8, 0x463624,1, 0x463644,6, 0x463664,6, 0x463680,1, 0x463688,6, 0x4636a8,2, 0x464000,92, 0x464180,28, 0x464200,7, 0x464400,11, 0x464440,11, 0x464480,19, 0x464500,19, 0x464580,4, 0x4645a0,37, 0x464800,10, 0x464840,10, 0x464880,5, 0x464900,11, 0x464930,3, 0x464940,5, 0x464960,5, 0x464980,45, 0x464a40,13, 0x464a80,9, 0x464c00,14, 0x464c40,9, 0x464c80,6, 0x464ca0,1, 0x464ca8,4, 0x464d00,7, 0x464d20,5, 0x468000,26, 0x46806c,2, 0x468080,3, 0x468090,17, 0x468100,26, 0x46816c,2, 0x468180,3, 0x468190,17, 0x468200,26, 0x46826c,2, 0x468280,3, 0x468290,17, 0x468300,26, 0x46836c,2, 0x468380,3, 0x468390,17, 0x468400,12, 0x468444,1, 0x468454,8, 0x468480,7, 0x4684a0,2, 0x4684ac,2, 0x4684c0,20, 0x468580,4, 0x4685a0,5, 0x4685c0,1, 0x468800,3, 0x468810,3, 0x468820,3, 0x468830,3, 0x468840,5, 0x468860,5, 0x468880,5, 0x4688a0,5, 0x468900,36, 0x468a00,1, 0x468c04,1, 0x468c44,54, 0x468e00,11, 0x468e40,11, 0x468e80,11, 0x468ec0,11, 0x468f00,8, 0x468f40,12, 0x468f80,5, 0x468fa0,1, 0x469000,2, 0x469020,6, 0x469040,14, 0x469080,20, 0x469100,14, 0x469140,9, 0x469180,6, 0x4691a0,1, 0x4691a8,4, 0x469200,3, 0x46c000,10, 0x46c030,3, 0x46c040,4, 0x480000,534, 0x481000,2, 0x481020,15, 0x482000,534, 0x483000,8, 0x483024,6, 0x483040,8, 0x483080,7, 0x4830a0,7, 0x4830c0,7, 0x4830e0,7, 0x483100,8, 0x483124,6, 0x483140,12, 0x484000,534, 0x485000,2, 0x485020,15, 0x486000,534, 0x487000,8, 0x487024,6, 0x487040,8, 0x487080,7, 0x4870a0,7, 0x4870c0,7, 0x4870e0,7, 0x487100,8, 0x487124,6, 0x487140,12, 0x488004,5, 0x488200,26, 0x488280,4, 0x4882c0,25, 0x488340,6, 0x488360,1, 0x488368,2, 0x488374,11, 0x4883a4,4, 0x488400,1, 0x490000,432, 0x490800,82, 0x490960,6, 0x490a00,41, 0x490b00,2, 0x490b20,19, 0x490c00,1, 0x490c80,28, 0x490d00,1, 0x491000,432, 0x491800,82, 0x491960,6, 0x491a00,41, 0x491b00,2, 0x491b20,19, 0x491c00,1, 0x491c80,28, 0x491d00,1, 0x492000,7, 0x492040,9, 0x492080,4, 0x4920a0,5, 0x4920c0,1, 0x494000,3, 0x494010,6, 0x494200,7, 0x494220,6, 0x494240,7, 0x494260,6, 0x494280,2, 0x49428c,2, 0x4942a0,2, 0x4942ac,2, 0x4942c0,7, 0x4942e0,7, 0x494300,2, 0x49430c,2, 0x494320,6, 0x494340,7, 0x494360,6, 0x494380,6, 0x4943a0,7, 0x4943c0,6, 0x4943e0,6, 0x494400,3, 0x494440,12, 0x494800,7, 0x494820,14, 0x494880,16, 0x494900,7, 0x494920,14, 0x494980,16, 0x494a00,6, 0x494a20,7, 0x494c00,3, 0x4c0000,14, 0x4c003c,32, 0x4c0100,48, 0x4c0200,40, 0x4c0300,5, 0x4c0320,6, 0x4c0340,4, 0x4c0360,5, 0x4c0380,8, 0x4c0400,20, 0x4c0480,12, 0x4c04b8,24, 0x4c0800,14, 0x4c083c,32, 0x4c0900,48, 0x4c0a00,40, 0x4c0b00,5, 0x4c0b20,6, 0x4c0b40,4, 0x4c0b60,5, 0x4c0b80,8, 0x4c0c00,20, 0x4c0c80,12, 0x4c0cb8,24, 0x4c1000,1, 0x4c1008,20, 0x4c2000,14, 0x4c203c,32, 0x4c2100,48, 0x4c2200,40, 0x4c2300,5, 0x4c2320,6, 0x4c2340,4, 0x4c2360,5, 0x4c2380,8, 0x4c2400,20, 0x4c2480,12, 0x4c24b8,24, 0x4c2800,14, 0x4c283c,32, 0x4c2900,48, 0x4c2a00,40, 0x4c2b00,5, 0x4c2b20,6, 0x4c2b40,4, 0x4c2b60,5, 0x4c2b80,8, 0x4c2c00,20, 0x4c2c80,12, 0x4c2cb8,24, 0x4c3000,1, 0x4c3008,20, 0x4c4000,14, 0x4c403c,32, 0x4c4100,48, 0x4c4200,40, 0x4c4300,5, 0x4c4320,6, 0x4c4340,4, 0x4c4360,5, 0x4c4380,8, 0x4c4400,20, 0x4c4480,12, 0x4c44b8,24, 0x4c4800,14, 0x4c483c,32, 0x4c4900,48, 0x4c4a00,40, 0x4c4b00,5, 0x4c4b20,6, 0x4c4b40,4, 0x4c4b60,5, 0x4c4b80,8, 0x4c4c00,20, 0x4c4c80,12, 0x4c4cb8,24, 0x4c5000,1, 0x4c5008,20, 0x4c6000,14, 0x4c603c,32, 0x4c6100,48, 0x4c6200,40, 0x4c6300,5, 0x4c6320,6, 0x4c6340,4, 0x4c6360,5, 0x4c6380,8, 0x4c6400,20, 0x4c6480,12, 0x4c64b8,24, 0x4c6800,14, 0x4c683c,32, 0x4c6900,48, 0x4c6a00,40, 0x4c6b00,5, 0x4c6b20,6, 0x4c6b40,4, 0x4c6b60,5, 0x4c6b80,8, 0x4c6c00,20, 0x4c6c80,12, 0x4c6cb8,24, 0x4c7000,1, 0x4c7008,20, 0x4c8000,14, 0x4c803c,32, 0x4c8100,48, 0x4c8200,40, 0x4c8300,5, 0x4c8320,6, 0x4c8340,4, 0x4c8360,5, 0x4c8380,8, 0x4c8400,20, 0x4c8480,12, 0x4c84b8,24, 0x4c8800,14, 0x4c883c,32, 0x4c8900,48, 0x4c8a00,40, 0x4c8b00,5, 0x4c8b20,6, 0x4c8b40,4, 0x4c8b60,5, 0x4c8b80,8, 0x4c8c00,20, 0x4c8c80,12, 0x4c8cb8,24, 0x4c9000,1, 0x4c9008,20, 0x4ca000,14, 0x4ca03c,32, 0x4ca100,48, 0x4ca200,40, 0x4ca300,5, 0x4ca320,6, 0x4ca340,4, 0x4ca360,5, 0x4ca380,8, 0x4ca400,20, 0x4ca480,12, 0x4ca4b8,24, 0x4ca800,14, 0x4ca83c,32, 0x4ca900,48, 0x4caa00,40, 0x4cab00,5, 0x4cab20,6, 0x4cab40,4, 0x4cab60,5, 0x4cab80,8, 0x4cac00,20, 0x4cac80,12, 0x4cacb8,24, 0x4cb000,1, 0x4cb008,20, 0x4cc000,14, 0x4cc03c,32, 0x4cc100,48, 0x4cc200,40, 0x4cc300,5, 0x4cc320,6, 0x4cc340,4, 0x4cc360,5, 0x4cc380,8, 0x4cc400,20, 0x4cc480,12, 0x4cc4b8,24, 0x4cc800,14, 0x4cc83c,32, 0x4cc900,48, 0x4cca00,40, 0x4ccb00,5, 0x4ccb20,6, 0x4ccb40,4, 0x4ccb60,5, 0x4ccb80,8, 0x4ccc00,20, 0x4ccc80,12, 0x4cccb8,24, 0x4cd000,1, 0x4cd008,20, 0x4ce000,14, 0x4ce03c,32, 0x4ce100,48, 0x4ce200,40, 0x4ce300,5, 0x4ce320,6, 0x4ce340,4, 0x4ce360,5, 0x4ce380,8, 0x4ce400,20, 0x4ce480,12, 0x4ce4b8,24, 0x4ce800,14, 0x4ce83c,32, 0x4ce900,48, 0x4cea00,40, 0x4ceb00,5, 0x4ceb20,6, 0x4ceb40,4, 0x4ceb60,5, 0x4ceb80,8, 0x4cec00,20, 0x4cec80,12, 0x4cecb8,24, 0x4cf000,1, 0x4cf008,20, 0x4d0000,14, 0x4d003c,32, 0x4d0100,48, 0x4d0200,40, 0x4d0300,5, 0x4d0320,6, 0x4d0340,4, 0x4d0360,5, 0x4d0380,8, 0x4d0400,20, 0x4d0480,12, 0x4d04b8,24, 0x4d0800,14, 0x4d083c,32, 0x4d0900,48, 0x4d0a00,40, 0x4d0b00,5, 0x4d0b20,6, 0x4d0b40,4, 0x4d0b60,5, 0x4d0b80,8, 0x4d0c00,20, 0x4d0c80,12, 0x4d0cb8,24, 0x4d1000,1, 0x4d1008,20, 0x4d2000,14, 0x4d203c,32, 0x4d2100,48, 0x4d2200,40, 0x4d2300,5, 0x4d2320,6, 0x4d2340,4, 0x4d2360,5, 0x4d2380,8, 0x4d2400,20, 0x4d2480,12, 0x4d24b8,24, 0x4d2800,14, 0x4d283c,32, 0x4d2900,48, 0x4d2a00,40, 0x4d2b00,5, 0x4d2b20,6, 0x4d2b40,4, 0x4d2b60,5, 0x4d2b80,8, 0x4d2c00,20, 0x4d2c80,12, 0x4d2cb8,24, 0x4d3000,1, 0x4d3008,20, 0x4d4000,14, 0x4d403c,32, 0x4d4100,48, 0x4d4200,40, 0x4d4300,5, 0x4d4320,6, 0x4d4340,4, 0x4d4360,5, 0x4d4380,8, 0x4d4400,20, 0x4d4480,12, 0x4d44b8,24, 0x4d4800,14, 0x4d483c,32, 0x4d4900,48, 0x4d4a00,40, 0x4d4b00,5, 0x4d4b20,6, 0x4d4b40,4, 0x4d4b60,5, 0x4d4b80,8, 0x4d4c00,20, 0x4d4c80,12, 0x4d4cb8,24, 0x4d5000,1, 0x4d5008,20, 0x4d6000,14, 0x4d603c,32, 0x4d6100,48, 0x4d6200,40, 0x4d6300,5, 0x4d6320,6, 0x4d6340,4, 0x4d6360,5, 0x4d6380,8, 0x4d6400,20, 0x4d6480,12, 0x4d64b8,24, 0x4d6800,14, 0x4d683c,32, 0x4d6900,48, 0x4d6a00,40, 0x4d6b00,5, 0x4d6b20,6, 0x4d6b40,4, 0x4d6b60,5, 0x4d6b80,8, 0x4d6c00,20, 0x4d6c80,12, 0x4d6cb8,24, 0x4d7000,1, 0x4d7008,20, 0x4d8000,14, 0x4d803c,32, 0x4d8100,48, 0x4d8200,40, 0x4d8300,5, 0x4d8320,6, 0x4d8340,4, 0x4d8360,5, 0x4d8380,8, 0x4d8400,20, 0x4d8480,12, 0x4d84b8,24, 0x4d8800,14, 0x4d883c,32, 0x4d8900,48, 0x4d8a00,40, 0x4d8b00,5, 0x4d8b20,6, 0x4d8b40,4, 0x4d8b60,5, 0x4d8b80,8, 0x4d8c00,20, 0x4d8c80,12, 0x4d8cb8,24, 0x4d9000,1, 0x4d9008,20, 0x4da000,14, 0x4da03c,32, 0x4da100,48, 0x4da200,40, 0x4da300,5, 0x4da320,6, 0x4da340,4, 0x4da360,5, 0x4da380,8, 0x4da400,20, 0x4da480,12, 0x4da4b8,24, 0x4da800,14, 0x4da83c,32, 0x4da900,48, 0x4daa00,40, 0x4dab00,5, 0x4dab20,6, 0x4dab40,4, 0x4dab60,5, 0x4dab80,8, 0x4dac00,20, 0x4dac80,12, 0x4dacb8,24, 0x4db000,1, 0x4db008,20, 0x4dc000,14, 0x4dc03c,32, 0x4dc100,48, 0x4dc200,40, 0x4dc300,5, 0x4dc320,6, 0x4dc340,4, 0x4dc360,5, 0x4dc380,8, 0x4dc400,20, 0x4dc480,12, 0x4dc4b8,24, 0x4dc800,14, 0x4dc83c,32, 0x4dc900,48, 0x4dca00,40, 0x4dcb00,5, 0x4dcb20,6, 0x4dcb40,4, 0x4dcb60,5, 0x4dcb80,8, 0x4dcc00,20, 0x4dcc80,12, 0x4dccb8,24, 0x4dd000,1, 0x4dd008,20, 0x4de000,14, 0x4de03c,32, 0x4de100,48, 0x4de200,40, 0x4de300,5, 0x4de320,6, 0x4de340,4, 0x4de360,5, 0x4de380,8, 0x4de400,20, 0x4de480,12, 0x4de4b8,24, 0x4de800,14, 0x4de83c,32, 0x4de900,48, 0x4dea00,40, 0x4deb00,5, 0x4deb20,6, 0x4deb40,4, 0x4deb60,5, 0x4deb80,8, 0x4dec00,20, 0x4dec80,12, 0x4decb8,24, 0x4df000,1, 0x4df008,20, 0x4e0000,14, 0x4e003c,32, 0x4e0100,48, 0x4e0200,40, 0x4e0300,5, 0x4e0320,6, 0x4e0340,4, 0x4e0360,5, 0x4e0380,8, 0x4e0400,20, 0x4e0480,12, 0x4e04b8,24, 0x4e0800,14, 0x4e083c,32, 0x4e0900,48, 0x4e0a00,40, 0x4e0b00,5, 0x4e0b20,6, 0x4e0b40,4, 0x4e0b60,5, 0x4e0b80,8, 0x4e0c00,20, 0x4e0c80,12, 0x4e0cb8,24, 0x4e1000,1, 0x4e1008,20, 0x4e2000,14, 0x4e203c,32, 0x4e2100,48, 0x4e2200,40, 0x4e2300,5, 0x4e2320,6, 0x4e2340,4, 0x4e2360,5, 0x4e2380,8, 0x4e2400,20, 0x4e2480,12, 0x4e24b8,24, 0x4e2800,14, 0x4e283c,32, 0x4e2900,48, 0x4e2a00,40, 0x4e2b00,5, 0x4e2b20,6, 0x4e2b40,4, 0x4e2b60,5, 0x4e2b80,8, 0x4e2c00,20, 0x4e2c80,12, 0x4e2cb8,24, 0x4e3000,1, 0x4e3008,20, 0x4e4000,2, 0x4e4044,1, 0x4e4058,14, 0x4e4100,14, 0x4e4140,9, 0x4e4180,6, 0x4e41a0,1, 0x4e41a8,4, 0x4e41c4,12, 0x4e4200,9, 0x4e4228,2, 0x4e4280,28, 0x4e4300,10, 0x4e4330,3, 0x500000,14, 0x50003c,32, 0x500100,48, 0x500200,40, 0x500300,5, 0x500320,6, 0x500340,4, 0x500360,5, 0x500380,8, 0x500400,20, 0x500480,12, 0x5004b8,24, 0x500800,14, 0x50083c,32, 0x500900,48, 0x500a00,40, 0x500b00,5, 0x500b20,6, 0x500b40,4, 0x500b60,5, 0x500b80,8, 0x500c00,20, 0x500c80,12, 0x500cb8,24, 0x501000,1, 0x501008,20, 0x502000,14, 0x50203c,32, 0x502100,48, 0x502200,40, 0x502300,5, 0x502320,6, 0x502340,4, 0x502360,5, 0x502380,8, 0x502400,20, 0x502480,12, 0x5024b8,24, 0x502800,14, 0x50283c,32, 0x502900,48, 0x502a00,40, 0x502b00,5, 0x502b20,6, 0x502b40,4, 0x502b60,5, 0x502b80,8, 0x502c00,20, 0x502c80,12, 0x502cb8,24, 0x503000,1, 0x503008,20, 0x504000,14, 0x50403c,32, 0x504100,48, 0x504200,40, 0x504300,5, 0x504320,6, 0x504340,4, 0x504360,5, 0x504380,8, 0x504400,20, 0x504480,12, 0x5044b8,24, 0x504800,14, 0x50483c,32, 0x504900,48, 0x504a00,40, 0x504b00,5, 0x504b20,6, 0x504b40,4, 0x504b60,5, 0x504b80,8, 0x504c00,20, 0x504c80,12, 0x504cb8,24, 0x505000,1, 0x505008,20, 0x506000,14, 0x50603c,32, 0x506100,48, 0x506200,40, 0x506300,5, 0x506320,6, 0x506340,4, 0x506360,5, 0x506380,8, 0x506400,20, 0x506480,12, 0x5064b8,24, 0x506800,14, 0x50683c,32, 0x506900,48, 0x506a00,40, 0x506b00,5, 0x506b20,6, 0x506b40,4, 0x506b60,5, 0x506b80,8, 0x506c00,20, 0x506c80,12, 0x506cb8,24, 0x507000,1, 0x507008,20, 0x508000,14, 0x50803c,32, 0x508100,48, 0x508200,40, 0x508300,5, 0x508320,6, 0x508340,4, 0x508360,5, 0x508380,8, 0x508400,20, 0x508480,12, 0x5084b8,24, 0x508800,14, 0x50883c,32, 0x508900,48, 0x508a00,40, 0x508b00,5, 0x508b20,6, 0x508b40,4, 0x508b60,5, 0x508b80,8, 0x508c00,20, 0x508c80,12, 0x508cb8,24, 0x509000,1, 0x509008,20, 0x50a000,14, 0x50a03c,32, 0x50a100,48, 0x50a200,40, 0x50a300,5, 0x50a320,6, 0x50a340,4, 0x50a360,5, 0x50a380,8, 0x50a400,20, 0x50a480,12, 0x50a4b8,24, 0x50a800,14, 0x50a83c,32, 0x50a900,48, 0x50aa00,40, 0x50ab00,5, 0x50ab20,6, 0x50ab40,4, 0x50ab60,5, 0x50ab80,8, 0x50ac00,20, 0x50ac80,12, 0x50acb8,24, 0x50b000,1, 0x50b008,20, 0x50c000,14, 0x50c03c,32, 0x50c100,48, 0x50c200,40, 0x50c300,5, 0x50c320,6, 0x50c340,4, 0x50c360,5, 0x50c380,8, 0x50c400,20, 0x50c480,12, 0x50c4b8,24, 0x50c800,14, 0x50c83c,32, 0x50c900,48, 0x50ca00,40, 0x50cb00,5, 0x50cb20,6, 0x50cb40,4, 0x50cb60,5, 0x50cb80,8, 0x50cc00,20, 0x50cc80,12, 0x50ccb8,24, 0x50d000,1, 0x50d008,20, 0x50e000,14, 0x50e03c,32, 0x50e100,48, 0x50e200,40, 0x50e300,5, 0x50e320,6, 0x50e340,4, 0x50e360,5, 0x50e380,8, 0x50e400,20, 0x50e480,12, 0x50e4b8,24, 0x50e800,14, 0x50e83c,32, 0x50e900,48, 0x50ea00,40, 0x50eb00,5, 0x50eb20,6, 0x50eb40,4, 0x50eb60,5, 0x50eb80,8, 0x50ec00,20, 0x50ec80,12, 0x50ecb8,24, 0x50f000,1, 0x50f008,20, 0x510000,14, 0x51003c,32, 0x510100,48, 0x510200,40, 0x510300,5, 0x510320,6, 0x510340,4, 0x510360,5, 0x510380,8, 0x510400,20, 0x510480,12, 0x5104b8,24, 0x510800,14, 0x51083c,32, 0x510900,48, 0x510a00,40, 0x510b00,5, 0x510b20,6, 0x510b40,4, 0x510b60,5, 0x510b80,8, 0x510c00,20, 0x510c80,12, 0x510cb8,24, 0x511000,1, 0x511008,20, 0x512000,14, 0x51203c,32, 0x512100,48, 0x512200,40, 0x512300,5, 0x512320,6, 0x512340,4, 0x512360,5, 0x512380,8, 0x512400,20, 0x512480,12, 0x5124b8,24, 0x512800,14, 0x51283c,32, 0x512900,48, 0x512a00,40, 0x512b00,5, 0x512b20,6, 0x512b40,4, 0x512b60,5, 0x512b80,8, 0x512c00,20, 0x512c80,12, 0x512cb8,24, 0x513000,1, 0x513008,20, 0x514000,14, 0x51403c,32, 0x514100,48, 0x514200,40, 0x514300,5, 0x514320,6, 0x514340,4, 0x514360,5, 0x514380,8, 0x514400,20, 0x514480,12, 0x5144b8,24, 0x514800,14, 0x51483c,32, 0x514900,48, 0x514a00,40, 0x514b00,5, 0x514b20,6, 0x514b40,4, 0x514b60,5, 0x514b80,8, 0x514c00,20, 0x514c80,12, 0x514cb8,24, 0x515000,1, 0x515008,20, 0x516000,14, 0x51603c,32, 0x516100,48, 0x516200,40, 0x516300,5, 0x516320,6, 0x516340,4, 0x516360,5, 0x516380,8, 0x516400,20, 0x516480,12, 0x5164b8,24, 0x516800,14, 0x51683c,32, 0x516900,48, 0x516a00,40, 0x516b00,5, 0x516b20,6, 0x516b40,4, 0x516b60,5, 0x516b80,8, 0x516c00,20, 0x516c80,12, 0x516cb8,24, 0x517000,1, 0x517008,20, 0x518000,14, 0x51803c,32, 0x518100,48, 0x518200,40, 0x518300,5, 0x518320,6, 0x518340,4, 0x518360,5, 0x518380,8, 0x518400,20, 0x518480,12, 0x5184b8,24, 0x518800,14, 0x51883c,32, 0x518900,48, 0x518a00,40, 0x518b00,5, 0x518b20,6, 0x518b40,4, 0x518b60,5, 0x518b80,8, 0x518c00,20, 0x518c80,12, 0x518cb8,24, 0x519000,1, 0x519008,20, 0x51a000,14, 0x51a03c,32, 0x51a100,48, 0x51a200,40, 0x51a300,5, 0x51a320,6, 0x51a340,4, 0x51a360,5, 0x51a380,8, 0x51a400,20, 0x51a480,12, 0x51a4b8,24, 0x51a800,14, 0x51a83c,32, 0x51a900,48, 0x51aa00,40, 0x51ab00,5, 0x51ab20,6, 0x51ab40,4, 0x51ab60,5, 0x51ab80,8, 0x51ac00,20, 0x51ac80,12, 0x51acb8,24, 0x51b000,1, 0x51b008,20, 0x51c000,14, 0x51c03c,32, 0x51c100,48, 0x51c200,40, 0x51c300,5, 0x51c320,6, 0x51c340,4, 0x51c360,5, 0x51c380,8, 0x51c400,20, 0x51c480,12, 0x51c4b8,24, 0x51c800,14, 0x51c83c,32, 0x51c900,48, 0x51ca00,40, 0x51cb00,5, 0x51cb20,6, 0x51cb40,4, 0x51cb60,5, 0x51cb80,8, 0x51cc00,20, 0x51cc80,12, 0x51ccb8,24, 0x51d000,1, 0x51d008,20, 0x51e000,14, 0x51e03c,32, 0x51e100,48, 0x51e200,40, 0x51e300,5, 0x51e320,6, 0x51e340,4, 0x51e360,5, 0x51e380,8, 0x51e400,20, 0x51e480,12, 0x51e4b8,24, 0x51e800,14, 0x51e83c,32, 0x51e900,48, 0x51ea00,40, 0x51eb00,5, 0x51eb20,6, 0x51eb40,4, 0x51eb60,5, 0x51eb80,8, 0x51ec00,20, 0x51ec80,12, 0x51ecb8,24, 0x51f000,1, 0x51f008,20, 0x520000,14, 0x52003c,32, 0x520100,48, 0x520200,40, 0x520300,5, 0x520320,6, 0x520340,4, 0x520360,5, 0x520380,8, 0x520400,20, 0x520480,12, 0x5204b8,24, 0x520800,14, 0x52083c,32, 0x520900,48, 0x520a00,40, 0x520b00,5, 0x520b20,6, 0x520b40,4, 0x520b60,5, 0x520b80,8, 0x520c00,20, 0x520c80,12, 0x520cb8,24, 0x521000,1, 0x521008,20, 0x522000,14, 0x52203c,32, 0x522100,48, 0x522200,40, 0x522300,5, 0x522320,6, 0x522340,4, 0x522360,5, 0x522380,8, 0x522400,20, 0x522480,12, 0x5224b8,24, 0x522800,14, 0x52283c,32, 0x522900,48, 0x522a00,40, 0x522b00,5, 0x522b20,6, 0x522b40,4, 0x522b60,5, 0x522b80,8, 0x522c00,20, 0x522c80,12, 0x522cb8,24, 0x523000,1, 0x523008,20, 0x524000,2, 0x524044,1, 0x524058,14, 0x524100,14, 0x524140,9, 0x524180,6, 0x5241a0,1, 0x5241a8,4, 0x5241c4,12, 0x524200,9, 0x524228,2, 0x524280,28, 0x524300,10, 0x524330,3, 0x540000,14, 0x54003c,32, 0x540100,48, 0x540200,40, 0x540300,5, 0x540320,6, 0x540340,4, 0x540360,5, 0x540380,8, 0x540400,20, 0x540480,12, 0x5404b8,24, 0x540800,14, 0x54083c,32, 0x540900,48, 0x540a00,40, 0x540b00,5, 0x540b20,6, 0x540b40,4, 0x540b60,5, 0x540b80,8, 0x540c00,20, 0x540c80,12, 0x540cb8,24, 0x541000,1, 0x541008,20, 0x542000,14, 0x54203c,32, 0x542100,48, 0x542200,40, 0x542300,5, 0x542320,6, 0x542340,4, 0x542360,5, 0x542380,8, 0x542400,20, 0x542480,12, 0x5424b8,24, 0x542800,14, 0x54283c,32, 0x542900,48, 0x542a00,40, 0x542b00,5, 0x542b20,6, 0x542b40,4, 0x542b60,5, 0x542b80,8, 0x542c00,20, 0x542c80,12, 0x542cb8,24, 0x543000,1, 0x543008,20, 0x544000,14, 0x54403c,32, 0x544100,48, 0x544200,40, 0x544300,5, 0x544320,6, 0x544340,4, 0x544360,5, 0x544380,8, 0x544400,20, 0x544480,12, 0x5444b8,24, 0x544800,14, 0x54483c,32, 0x544900,48, 0x544a00,40, 0x544b00,5, 0x544b20,6, 0x544b40,4, 0x544b60,5, 0x544b80,8, 0x544c00,20, 0x544c80,12, 0x544cb8,24, 0x545000,1, 0x545008,20, 0x546000,14, 0x54603c,32, 0x546100,48, 0x546200,40, 0x546300,5, 0x546320,6, 0x546340,4, 0x546360,5, 0x546380,8, 0x546400,20, 0x546480,12, 0x5464b8,24, 0x546800,14, 0x54683c,32, 0x546900,48, 0x546a00,40, 0x546b00,5, 0x546b20,6, 0x546b40,4, 0x546b60,5, 0x546b80,8, 0x546c00,20, 0x546c80,12, 0x546cb8,24, 0x547000,1, 0x547008,20, 0x548000,14, 0x54803c,32, 0x548100,48, 0x548200,40, 0x548300,5, 0x548320,6, 0x548340,4, 0x548360,5, 0x548380,8, 0x548400,20, 0x548480,12, 0x5484b8,24, 0x548800,14, 0x54883c,32, 0x548900,48, 0x548a00,40, 0x548b00,5, 0x548b20,6, 0x548b40,4, 0x548b60,5, 0x548b80,8, 0x548c00,20, 0x548c80,12, 0x548cb8,24, 0x549000,1, 0x549008,20, 0x54a000,14, 0x54a03c,32, 0x54a100,48, 0x54a200,40, 0x54a300,5, 0x54a320,6, 0x54a340,4, 0x54a360,5, 0x54a380,8, 0x54a400,20, 0x54a480,12, 0x54a4b8,24, 0x54a800,14, 0x54a83c,32, 0x54a900,48, 0x54aa00,40, 0x54ab00,5, 0x54ab20,6, 0x54ab40,4, 0x54ab60,5, 0x54ab80,8, 0x54ac00,20, 0x54ac80,12, 0x54acb8,24, 0x54b000,1, 0x54b008,20, 0x54c000,14, 0x54c03c,32, 0x54c100,48, 0x54c200,40, 0x54c300,5, 0x54c320,6, 0x54c340,4, 0x54c360,5, 0x54c380,8, 0x54c400,20, 0x54c480,12, 0x54c4b8,24, 0x54c800,14, 0x54c83c,32, 0x54c900,48, 0x54ca00,40, 0x54cb00,5, 0x54cb20,6, 0x54cb40,4, 0x54cb60,5, 0x54cb80,8, 0x54cc00,20, 0x54cc80,12, 0x54ccb8,24, 0x54d000,1, 0x54d008,20, 0x54e000,14, 0x54e03c,32, 0x54e100,48, 0x54e200,40, 0x54e300,5, 0x54e320,6, 0x54e340,4, 0x54e360,5, 0x54e380,8, 0x54e400,20, 0x54e480,12, 0x54e4b8,24, 0x54e800,14, 0x54e83c,32, 0x54e900,48, 0x54ea00,40, 0x54eb00,5, 0x54eb20,6, 0x54eb40,4, 0x54eb60,5, 0x54eb80,8, 0x54ec00,20, 0x54ec80,12, 0x54ecb8,24, 0x54f000,1, 0x54f008,20, 0x550000,14, 0x55003c,32, 0x550100,48, 0x550200,40, 0x550300,5, 0x550320,6, 0x550340,4, 0x550360,5, 0x550380,8, 0x550400,20, 0x550480,12, 0x5504b8,24, 0x550800,14, 0x55083c,32, 0x550900,48, 0x550a00,40, 0x550b00,5, 0x550b20,6, 0x550b40,4, 0x550b60,5, 0x550b80,8, 0x550c00,20, 0x550c80,12, 0x550cb8,24, 0x551000,1, 0x551008,20, 0x552000,14, 0x55203c,32, 0x552100,48, 0x552200,40, 0x552300,5, 0x552320,6, 0x552340,4, 0x552360,5, 0x552380,8, 0x552400,20, 0x552480,12, 0x5524b8,24, 0x552800,14, 0x55283c,32, 0x552900,48, 0x552a00,40, 0x552b00,5, 0x552b20,6, 0x552b40,4, 0x552b60,5, 0x552b80,8, 0x552c00,20, 0x552c80,12, 0x552cb8,24, 0x553000,1, 0x553008,20, 0x554000,14, 0x55403c,32, 0x554100,48, 0x554200,40, 0x554300,5, 0x554320,6, 0x554340,4, 0x554360,5, 0x554380,8, 0x554400,20, 0x554480,12, 0x5544b8,24, 0x554800,14, 0x55483c,32, 0x554900,48, 0x554a00,40, 0x554b00,5, 0x554b20,6, 0x554b40,4, 0x554b60,5, 0x554b80,8, 0x554c00,20, 0x554c80,12, 0x554cb8,24, 0x555000,1, 0x555008,20, 0x556000,14, 0x55603c,32, 0x556100,48, 0x556200,40, 0x556300,5, 0x556320,6, 0x556340,4, 0x556360,5, 0x556380,8, 0x556400,20, 0x556480,12, 0x5564b8,24, 0x556800,14, 0x55683c,32, 0x556900,48, 0x556a00,40, 0x556b00,5, 0x556b20,6, 0x556b40,4, 0x556b60,5, 0x556b80,8, 0x556c00,20, 0x556c80,12, 0x556cb8,24, 0x557000,1, 0x557008,20, 0x558000,14, 0x55803c,32, 0x558100,48, 0x558200,40, 0x558300,5, 0x558320,6, 0x558340,4, 0x558360,5, 0x558380,8, 0x558400,20, 0x558480,12, 0x5584b8,24, 0x558800,14, 0x55883c,32, 0x558900,48, 0x558a00,40, 0x558b00,5, 0x558b20,6, 0x558b40,4, 0x558b60,5, 0x558b80,8, 0x558c00,20, 0x558c80,12, 0x558cb8,24, 0x559000,1, 0x559008,20, 0x55a000,14, 0x55a03c,32, 0x55a100,48, 0x55a200,40, 0x55a300,5, 0x55a320,6, 0x55a340,4, 0x55a360,5, 0x55a380,8, 0x55a400,20, 0x55a480,12, 0x55a4b8,24, 0x55a800,14, 0x55a83c,32, 0x55a900,48, 0x55aa00,40, 0x55ab00,5, 0x55ab20,6, 0x55ab40,4, 0x55ab60,5, 0x55ab80,8, 0x55ac00,20, 0x55ac80,12, 0x55acb8,24, 0x55b000,1, 0x55b008,20, 0x55c000,14, 0x55c03c,32, 0x55c100,48, 0x55c200,40, 0x55c300,5, 0x55c320,6, 0x55c340,4, 0x55c360,5, 0x55c380,8, 0x55c400,20, 0x55c480,12, 0x55c4b8,24, 0x55c800,14, 0x55c83c,32, 0x55c900,48, 0x55ca00,40, 0x55cb00,5, 0x55cb20,6, 0x55cb40,4, 0x55cb60,5, 0x55cb80,8, 0x55cc00,20, 0x55cc80,12, 0x55ccb8,24, 0x55d000,1, 0x55d008,20, 0x55e000,14, 0x55e03c,32, 0x55e100,48, 0x55e200,40, 0x55e300,5, 0x55e320,6, 0x55e340,4, 0x55e360,5, 0x55e380,8, 0x55e400,20, 0x55e480,12, 0x55e4b8,24, 0x55e800,14, 0x55e83c,32, 0x55e900,48, 0x55ea00,40, 0x55eb00,5, 0x55eb20,6, 0x55eb40,4, 0x55eb60,5, 0x55eb80,8, 0x55ec00,20, 0x55ec80,12, 0x55ecb8,24, 0x55f000,1, 0x55f008,20, 0x560000,14, 0x56003c,32, 0x560100,48, 0x560200,40, 0x560300,5, 0x560320,6, 0x560340,4, 0x560360,5, 0x560380,8, 0x560400,20, 0x560480,12, 0x5604b8,24, 0x560800,14, 0x56083c,32, 0x560900,48, 0x560a00,40, 0x560b00,5, 0x560b20,6, 0x560b40,4, 0x560b60,5, 0x560b80,8, 0x560c00,20, 0x560c80,12, 0x560cb8,24, 0x561000,1, 0x561008,20, 0x562000,14, 0x56203c,32, 0x562100,48, 0x562200,40, 0x562300,5, 0x562320,6, 0x562340,4, 0x562360,5, 0x562380,8, 0x562400,20, 0x562480,12, 0x5624b8,24, 0x562800,14, 0x56283c,32, 0x562900,48, 0x562a00,40, 0x562b00,5, 0x562b20,6, 0x562b40,4, 0x562b60,5, 0x562b80,8, 0x562c00,20, 0x562c80,12, 0x562cb8,24, 0x563000,1, 0x563008,20, 0x564000,2, 0x564044,1, 0x564058,14, 0x564100,14, 0x564140,9, 0x564180,6, 0x5641a0,1, 0x5641a8,4, 0x5641c4,12, 0x564200,9, 0x564228,2, 0x564280,28, 0x564300,10, 0x564330,3, 0x580000,14, 0x58003c,32, 0x580100,48, 0x580200,40, 0x580300,5, 0x580320,6, 0x580340,4, 0x580360,5, 0x580380,8, 0x580400,20, 0x580480,12, 0x5804b8,24, 0x580800,14, 0x58083c,32, 0x580900,48, 0x580a00,40, 0x580b00,5, 0x580b20,6, 0x580b40,4, 0x580b60,5, 0x580b80,8, 0x580c00,20, 0x580c80,12, 0x580cb8,24, 0x581000,1, 0x581008,20, 0x582000,14, 0x58203c,32, 0x582100,48, 0x582200,40, 0x582300,5, 0x582320,6, 0x582340,4, 0x582360,5, 0x582380,8, 0x582400,20, 0x582480,12, 0x5824b8,24, 0x582800,14, 0x58283c,32, 0x582900,48, 0x582a00,40, 0x582b00,5, 0x582b20,6, 0x582b40,4, 0x582b60,5, 0x582b80,8, 0x582c00,20, 0x582c80,12, 0x582cb8,24, 0x583000,1, 0x583008,20, 0x584000,14, 0x58403c,32, 0x584100,48, 0x584200,40, 0x584300,5, 0x584320,6, 0x584340,4, 0x584360,5, 0x584380,8, 0x584400,20, 0x584480,12, 0x5844b8,24, 0x584800,14, 0x58483c,32, 0x584900,48, 0x584a00,40, 0x584b00,5, 0x584b20,6, 0x584b40,4, 0x584b60,5, 0x584b80,8, 0x584c00,20, 0x584c80,12, 0x584cb8,24, 0x585000,1, 0x585008,20, 0x586000,14, 0x58603c,32, 0x586100,48, 0x586200,40, 0x586300,5, 0x586320,6, 0x586340,4, 0x586360,5, 0x586380,8, 0x586400,20, 0x586480,12, 0x5864b8,24, 0x586800,14, 0x58683c,32, 0x586900,48, 0x586a00,40, 0x586b00,5, 0x586b20,6, 0x586b40,4, 0x586b60,5, 0x586b80,8, 0x586c00,20, 0x586c80,12, 0x586cb8,24, 0x587000,1, 0x587008,20, 0x588000,14, 0x58803c,32, 0x588100,48, 0x588200,40, 0x588300,5, 0x588320,6, 0x588340,4, 0x588360,5, 0x588380,8, 0x588400,20, 0x588480,12, 0x5884b8,24, 0x588800,14, 0x58883c,32, 0x588900,48, 0x588a00,40, 0x588b00,5, 0x588b20,6, 0x588b40,4, 0x588b60,5, 0x588b80,8, 0x588c00,20, 0x588c80,12, 0x588cb8,24, 0x589000,1, 0x589008,20, 0x58a000,14, 0x58a03c,32, 0x58a100,48, 0x58a200,40, 0x58a300,5, 0x58a320,6, 0x58a340,4, 0x58a360,5, 0x58a380,8, 0x58a400,20, 0x58a480,12, 0x58a4b8,24, 0x58a800,14, 0x58a83c,32, 0x58a900,48, 0x58aa00,40, 0x58ab00,5, 0x58ab20,6, 0x58ab40,4, 0x58ab60,5, 0x58ab80,8, 0x58ac00,20, 0x58ac80,12, 0x58acb8,24, 0x58b000,1, 0x58b008,20, 0x58c000,14, 0x58c03c,32, 0x58c100,48, 0x58c200,40, 0x58c300,5, 0x58c320,6, 0x58c340,4, 0x58c360,5, 0x58c380,8, 0x58c400,20, 0x58c480,12, 0x58c4b8,24, 0x58c800,14, 0x58c83c,32, 0x58c900,48, 0x58ca00,40, 0x58cb00,5, 0x58cb20,6, 0x58cb40,4, 0x58cb60,5, 0x58cb80,8, 0x58cc00,20, 0x58cc80,12, 0x58ccb8,24, 0x58d000,1, 0x58d008,20, 0x58e000,14, 0x58e03c,32, 0x58e100,48, 0x58e200,40, 0x58e300,5, 0x58e320,6, 0x58e340,4, 0x58e360,5, 0x58e380,8, 0x58e400,20, 0x58e480,12, 0x58e4b8,24, 0x58e800,14, 0x58e83c,32, 0x58e900,48, 0x58ea00,40, 0x58eb00,5, 0x58eb20,6, 0x58eb40,4, 0x58eb60,5, 0x58eb80,8, 0x58ec00,20, 0x58ec80,12, 0x58ecb8,24, 0x58f000,1, 0x58f008,20, 0x590000,14, 0x59003c,32, 0x590100,48, 0x590200,40, 0x590300,5, 0x590320,6, 0x590340,4, 0x590360,5, 0x590380,8, 0x590400,20, 0x590480,12, 0x5904b8,24, 0x590800,14, 0x59083c,32, 0x590900,48, 0x590a00,40, 0x590b00,5, 0x590b20,6, 0x590b40,4, 0x590b60,5, 0x590b80,8, 0x590c00,20, 0x590c80,12, 0x590cb8,24, 0x591000,1, 0x591008,20, 0x592000,14, 0x59203c,32, 0x592100,48, 0x592200,40, 0x592300,5, 0x592320,6, 0x592340,4, 0x592360,5, 0x592380,8, 0x592400,20, 0x592480,12, 0x5924b8,24, 0x592800,14, 0x59283c,32, 0x592900,48, 0x592a00,40, 0x592b00,5, 0x592b20,6, 0x592b40,4, 0x592b60,5, 0x592b80,8, 0x592c00,20, 0x592c80,12, 0x592cb8,24, 0x593000,1, 0x593008,20, 0x594000,14, 0x59403c,32, 0x594100,48, 0x594200,40, 0x594300,5, 0x594320,6, 0x594340,4, 0x594360,5, 0x594380,8, 0x594400,20, 0x594480,12, 0x5944b8,24, 0x594800,14, 0x59483c,32, 0x594900,48, 0x594a00,40, 0x594b00,5, 0x594b20,6, 0x594b40,4, 0x594b60,5, 0x594b80,8, 0x594c00,20, 0x594c80,12, 0x594cb8,24, 0x595000,1, 0x595008,20, 0x596000,14, 0x59603c,32, 0x596100,48, 0x596200,40, 0x596300,5, 0x596320,6, 0x596340,4, 0x596360,5, 0x596380,8, 0x596400,20, 0x596480,12, 0x5964b8,24, 0x596800,14, 0x59683c,32, 0x596900,48, 0x596a00,40, 0x596b00,5, 0x596b20,6, 0x596b40,4, 0x596b60,5, 0x596b80,8, 0x596c00,20, 0x596c80,12, 0x596cb8,24, 0x597000,1, 0x597008,20, 0x598000,14, 0x59803c,32, 0x598100,48, 0x598200,40, 0x598300,5, 0x598320,6, 0x598340,4, 0x598360,5, 0x598380,8, 0x598400,20, 0x598480,12, 0x5984b8,24, 0x598800,14, 0x59883c,32, 0x598900,48, 0x598a00,40, 0x598b00,5, 0x598b20,6, 0x598b40,4, 0x598b60,5, 0x598b80,8, 0x598c00,20, 0x598c80,12, 0x598cb8,24, 0x599000,1, 0x599008,20, 0x59a000,14, 0x59a03c,32, 0x59a100,48, 0x59a200,40, 0x59a300,5, 0x59a320,6, 0x59a340,4, 0x59a360,5, 0x59a380,8, 0x59a400,20, 0x59a480,12, 0x59a4b8,24, 0x59a800,14, 0x59a83c,32, 0x59a900,48, 0x59aa00,40, 0x59ab00,5, 0x59ab20,6, 0x59ab40,4, 0x59ab60,5, 0x59ab80,8, 0x59ac00,20, 0x59ac80,12, 0x59acb8,24, 0x59b000,1, 0x59b008,20, 0x59c000,14, 0x59c03c,32, 0x59c100,48, 0x59c200,40, 0x59c300,5, 0x59c320,6, 0x59c340,4, 0x59c360,5, 0x59c380,8, 0x59c400,20, 0x59c480,12, 0x59c4b8,24, 0x59c800,14, 0x59c83c,32, 0x59c900,48, 0x59ca00,40, 0x59cb00,5, 0x59cb20,6, 0x59cb40,4, 0x59cb60,5, 0x59cb80,8, 0x59cc00,20, 0x59cc80,12, 0x59ccb8,24, 0x59d000,1, 0x59d008,20, 0x59e000,14, 0x59e03c,32, 0x59e100,48, 0x59e200,40, 0x59e300,5, 0x59e320,6, 0x59e340,4, 0x59e360,5, 0x59e380,8, 0x59e400,20, 0x59e480,12, 0x59e4b8,24, 0x59e800,14, 0x59e83c,32, 0x59e900,48, 0x59ea00,40, 0x59eb00,5, 0x59eb20,6, 0x59eb40,4, 0x59eb60,5, 0x59eb80,8, 0x59ec00,20, 0x59ec80,12, 0x59ecb8,24, 0x59f000,1, 0x59f008,20, 0x5a0000,14, 0x5a003c,32, 0x5a0100,48, 0x5a0200,40, 0x5a0300,5, 0x5a0320,6, 0x5a0340,4, 0x5a0360,5, 0x5a0380,8, 0x5a0400,20, 0x5a0480,12, 0x5a04b8,24, 0x5a0800,14, 0x5a083c,32, 0x5a0900,48, 0x5a0a00,40, 0x5a0b00,5, 0x5a0b20,6, 0x5a0b40,4, 0x5a0b60,5, 0x5a0b80,8, 0x5a0c00,20, 0x5a0c80,12, 0x5a0cb8,24, 0x5a1000,1, 0x5a1008,20, 0x5a2000,14, 0x5a203c,32, 0x5a2100,48, 0x5a2200,40, 0x5a2300,5, 0x5a2320,6, 0x5a2340,4, 0x5a2360,5, 0x5a2380,8, 0x5a2400,20, 0x5a2480,12, 0x5a24b8,24, 0x5a2800,14, 0x5a283c,32, 0x5a2900,48, 0x5a2a00,40, 0x5a2b00,5, 0x5a2b20,6, 0x5a2b40,4, 0x5a2b60,5, 0x5a2b80,8, 0x5a2c00,20, 0x5a2c80,12, 0x5a2cb8,24, 0x5a3000,1, 0x5a3008,20, 0x5a4000,2, 0x5a4044,1, 0x5a4058,14, 0x5a4100,14, 0x5a4140,9, 0x5a4180,6, 0x5a41a0,1, 0x5a41a8,4, 0x5a41c4,12, 0x5a4200,9, 0x5a4228,2, 0x5a4280,28, 0x5a4300,10, 0x5a4330,3, 0x5c0004,1, 0x5c000c,4, 0x5c0024,1, 0x5c002c,4, 0x5c0040,5, 0x5c0104,1, 0x5c0140,39, 0x5c0200,7, 0x5c0220,46, 0x5c02e4,5, 0x5c0304,5, 0x5c0324,1, 0x5c032c,3, 0x5c0344,1, 0x5c034c,3, 0x5c0384,1, 0x5c03a0,11, 0x5c03d0,3, 0x5c03e0,1, 0x5c0400,20, 0x5c0480,4, 0x5c04c0,9, 0x5c0500,4, 0x5c0520,5, 0x5c0540,3, 0x5c0550,17, 0x5c05a0,9, 0x5c0804,1, 0x5c080c,4, 0x5c0824,1, 0x5c082c,4, 0x5c0840,5, 0x5c0904,1, 0x5c0940,39, 0x5c0a00,7, 0x5c0a20,46, 0x5c0ae4,5, 0x5c0b04,5, 0x5c0b24,1, 0x5c0b2c,3, 0x5c0b44,1, 0x5c0b4c,3, 0x5c0b84,1, 0x5c0ba0,11, 0x5c0bd0,3, 0x5c0be0,1, 0x5c0c00,20, 0x5c0c80,4, 0x5c0cc0,9, 0x5c0d00,4, 0x5c0d20,5, 0x5c0d40,3, 0x5c0d50,17, 0x5c0da0,9, 0x5c1004,1, 0x5c100c,4, 0x5c1024,1, 0x5c102c,4, 0x5c1040,5, 0x5c1104,1, 0x5c1140,39, 0x5c1200,7, 0x5c1220,46, 0x5c12e4,5, 0x5c1304,5, 0x5c1324,1, 0x5c132c,3, 0x5c1344,1, 0x5c134c,3, 0x5c1384,1, 0x5c13a0,11, 0x5c13d0,3, 0x5c13e0,1, 0x5c1400,20, 0x5c1480,4, 0x5c14c0,9, 0x5c1500,4, 0x5c1520,5, 0x5c1540,3, 0x5c1550,17, 0x5c15a0,9, 0x5c1804,1, 0x5c180c,4, 0x5c1824,1, 0x5c182c,4, 0x5c1840,5, 0x5c1904,1, 0x5c1940,39, 0x5c1a00,7, 0x5c1a20,46, 0x5c1ae4,5, 0x5c1b04,5, 0x5c1b24,1, 0x5c1b2c,3, 0x5c1b44,1, 0x5c1b4c,3, 0x5c1b84,1, 0x5c1ba0,11, 0x5c1bd0,3, 0x5c1be0,1, 0x5c1c00,20, 0x5c1c80,4, 0x5c1cc0,9, 0x5c1d00,4, 0x5c1d20,5, 0x5c1d40,3, 0x5c1d50,17, 0x5c1da0,9, 0x5c2004,1, 0x5c200c,4, 0x5c2024,1, 0x5c202c,4, 0x5c2040,5, 0x5c2104,1, 0x5c2140,39, 0x5c2200,7, 0x5c2220,46, 0x5c22e4,5, 0x5c2304,5, 0x5c2324,1, 0x5c232c,3, 0x5c2344,1, 0x5c234c,3, 0x5c2384,1, 0x5c23a0,11, 0x5c23d0,3, 0x5c23e0,1, 0x5c2400,20, 0x5c2480,4, 0x5c24c0,9, 0x5c2500,4, 0x5c2520,5, 0x5c2540,3, 0x5c2550,17, 0x5c25a0,9, 0x5c2804,1, 0x5c280c,4, 0x5c2824,1, 0x5c282c,4, 0x5c2840,5, 0x5c2904,1, 0x5c2940,39, 0x5c2a00,7, 0x5c2a20,46, 0x5c2ae4,5, 0x5c2b04,5, 0x5c2b24,1, 0x5c2b2c,3, 0x5c2b44,1, 0x5c2b4c,3, 0x5c2b84,1, 0x5c2ba0,11, 0x5c2bd0,3, 0x5c2be0,1, 0x5c2c00,20, 0x5c2c80,4, 0x5c2cc0,9, 0x5c2d00,4, 0x5c2d20,5, 0x5c2d40,3, 0x5c2d50,17, 0x5c2da0,9, 0x5c3004,1, 0x5c300c,4, 0x5c3024,1, 0x5c302c,4, 0x5c3040,5, 0x5c3104,1, 0x5c3140,39, 0x5c3200,7, 0x5c3220,46, 0x5c32e4,5, 0x5c3304,5, 0x5c3324,1, 0x5c332c,3, 0x5c3344,1, 0x5c334c,3, 0x5c3384,1, 0x5c33a0,11, 0x5c33d0,3, 0x5c33e0,1, 0x5c3400,20, 0x5c3480,4, 0x5c34c0,9, 0x5c3500,4, 0x5c3520,5, 0x5c3540,3, 0x5c3550,17, 0x5c35a0,9, 0x5c3804,1, 0x5c380c,4, 0x5c3824,1, 0x5c382c,4, 0x5c3840,5, 0x5c3904,1, 0x5c3940,39, 0x5c3a00,7, 0x5c3a20,46, 0x5c3ae4,5, 0x5c3b04,5, 0x5c3b24,1, 0x5c3b2c,3, 0x5c3b44,1, 0x5c3b4c,3, 0x5c3b84,1, 0x5c3ba0,11, 0x5c3bd0,3, 0x5c3be0,1, 0x5c3c00,20, 0x5c3c80,4, 0x5c3cc0,9, 0x5c3d00,4, 0x5c3d20,5, 0x5c3d40,3, 0x5c3d50,17, 0x5c3da0,9, 0x5c4004,1, 0x5c400c,4, 0x5c4024,1, 0x5c402c,4, 0x5c4040,5, 0x5c4104,1, 0x5c4140,39, 0x5c4200,7, 0x5c4220,46, 0x5c42e4,5, 0x5c4304,5, 0x5c4324,1, 0x5c432c,3, 0x5c4344,1, 0x5c434c,3, 0x5c4384,1, 0x5c43a0,11, 0x5c43d0,3, 0x5c43e0,1, 0x5c4400,20, 0x5c4480,4, 0x5c44c0,9, 0x5c4500,4, 0x5c4520,5, 0x5c4540,3, 0x5c4550,17, 0x5c45a0,9, 0x5c4804,1, 0x5c480c,4, 0x5c4824,1, 0x5c482c,4, 0x5c4840,5, 0x5c4904,1, 0x5c4940,39, 0x5c4a00,7, 0x5c4a20,46, 0x5c4ae4,5, 0x5c4b04,5, 0x5c4b24,1, 0x5c4b2c,3, 0x5c4b44,1, 0x5c4b4c,3, 0x5c4b84,1, 0x5c4ba0,11, 0x5c4bd0,3, 0x5c4be0,1, 0x5c4c00,20, 0x5c4c80,4, 0x5c4cc0,9, 0x5c4d00,4, 0x5c4d20,5, 0x5c4d40,3, 0x5c4d50,17, 0x5c4da0,9, 0x5c5004,1, 0x5c500c,4, 0x5c5024,1, 0x5c502c,4, 0x5c5040,5, 0x5c5104,1, 0x5c5140,39, 0x5c5200,7, 0x5c5220,46, 0x5c52e4,5, 0x5c5304,5, 0x5c5324,1, 0x5c532c,3, 0x5c5344,1, 0x5c534c,3, 0x5c5384,1, 0x5c53a0,11, 0x5c53d0,3, 0x5c53e0,1, 0x5c5400,20, 0x5c5480,4, 0x5c54c0,9, 0x5c5500,4, 0x5c5520,5, 0x5c5540,3, 0x5c5550,17, 0x5c55a0,9, 0x5c5804,1, 0x5c580c,4, 0x5c5824,1, 0x5c582c,4, 0x5c5840,5, 0x5c5904,1, 0x5c5940,39, 0x5c5a00,7, 0x5c5a20,46, 0x5c5ae4,5, 0x5c5b04,5, 0x5c5b24,1, 0x5c5b2c,3, 0x5c5b44,1, 0x5c5b4c,3, 0x5c5b84,1, 0x5c5ba0,11, 0x5c5bd0,3, 0x5c5be0,1, 0x5c5c00,20, 0x5c5c80,4, 0x5c5cc0,9, 0x5c5d00,4, 0x5c5d20,5, 0x5c5d40,3, 0x5c5d50,17, 0x5c5da0,9, 0x5c6004,1, 0x5c600c,4, 0x5c6024,1, 0x5c602c,4, 0x5c6040,5, 0x5c6104,1, 0x5c6140,39, 0x5c6200,7, 0x5c6220,46, 0x5c62e4,5, 0x5c6304,5, 0x5c6324,1, 0x5c632c,3, 0x5c6344,1, 0x5c634c,3, 0x5c6384,1, 0x5c63a0,11, 0x5c63d0,3, 0x5c63e0,1, 0x5c6400,20, 0x5c6480,4, 0x5c64c0,9, 0x5c6500,4, 0x5c6520,5, 0x5c6540,3, 0x5c6550,17, 0x5c65a0,9, 0x5c6804,1, 0x5c680c,4, 0x5c6824,1, 0x5c682c,4, 0x5c6840,5, 0x5c6904,1, 0x5c6940,39, 0x5c6a00,7, 0x5c6a20,46, 0x5c6ae4,5, 0x5c6b04,5, 0x5c6b24,1, 0x5c6b2c,3, 0x5c6b44,1, 0x5c6b4c,3, 0x5c6b84,1, 0x5c6ba0,11, 0x5c6bd0,3, 0x5c6be0,1, 0x5c6c00,20, 0x5c6c80,4, 0x5c6cc0,9, 0x5c6d00,4, 0x5c6d20,5, 0x5c6d40,3, 0x5c6d50,17, 0x5c6da0,9, 0x5c7004,1, 0x5c700c,4, 0x5c7024,1, 0x5c702c,4, 0x5c7040,5, 0x5c7104,1, 0x5c7140,39, 0x5c7200,7, 0x5c7220,46, 0x5c72e4,5, 0x5c7304,5, 0x5c7324,1, 0x5c732c,3, 0x5c7344,1, 0x5c734c,3, 0x5c7384,1, 0x5c73a0,11, 0x5c73d0,3, 0x5c73e0,1, 0x5c7400,20, 0x5c7480,4, 0x5c74c0,9, 0x5c7500,4, 0x5c7520,5, 0x5c7540,3, 0x5c7550,17, 0x5c75a0,9, 0x5c7804,1, 0x5c780c,4, 0x5c7824,1, 0x5c782c,4, 0x5c7840,5, 0x5c7904,1, 0x5c7940,39, 0x5c7a00,7, 0x5c7a20,46, 0x5c7ae4,5, 0x5c7b04,5, 0x5c7b24,1, 0x5c7b2c,3, 0x5c7b44,1, 0x5c7b4c,3, 0x5c7b84,1, 0x5c7ba0,11, 0x5c7bd0,3, 0x5c7be0,1, 0x5c7c00,20, 0x5c7c80,4, 0x5c7cc0,9, 0x5c7d00,4, 0x5c7d20,5, 0x5c7d40,3, 0x5c7d50,17, 0x5c7da0,9, 0x5c8004,1, 0x5c800c,4, 0x5c8024,1, 0x5c802c,4, 0x5c8040,5, 0x5c8104,1, 0x5c8140,39, 0x5c8200,7, 0x5c8220,46, 0x5c82e4,5, 0x5c8304,5, 0x5c8324,1, 0x5c832c,3, 0x5c8344,1, 0x5c834c,3, 0x5c8384,1, 0x5c83a0,11, 0x5c83d0,3, 0x5c83e0,1, 0x5c8400,20, 0x5c8480,4, 0x5c84c0,9, 0x5c8500,4, 0x5c8520,5, 0x5c8540,3, 0x5c8550,17, 0x5c85a0,9, 0x5c9000,137, 0x5c9400,118, 0x5c95e4,5, 0x5c9604,5, 0x5c9624,1, 0x5c962c,3, 0x5c9644,1, 0x5c964c,3, 0x5c9664,1, 0x5c966c,15, 0x5c96b0,12, 0x5c9700,20, 0x5c9780,4, 0x5c97c0,9, 0x5c9800,19, 0x5ca000,20, 0x5ca080,2, 0x5ca090,3, 0x5ca200,26, 0x5ca280,4, 0x5ca2c0,25, 0x5ca340,6, 0x5ca360,1, 0x5ca368,2, 0x5ca374,11, 0x5ca3a4,10, 0x5ca400,4, 0x5d0004,1, 0x5d000c,4, 0x5d0024,1, 0x5d002c,4, 0x5d0040,5, 0x5d0104,1, 0x5d0140,39, 0x5d0200,7, 0x5d0220,46, 0x5d02e4,5, 0x5d0304,5, 0x5d0324,1, 0x5d032c,3, 0x5d0344,1, 0x5d034c,3, 0x5d0384,1, 0x5d03a0,11, 0x5d03d0,3, 0x5d03e0,1, 0x5d0400,20, 0x5d0480,4, 0x5d04c0,9, 0x5d0500,4, 0x5d0520,5, 0x5d0540,3, 0x5d0550,17, 0x5d05a0,9, 0x5d0804,1, 0x5d080c,4, 0x5d0824,1, 0x5d082c,4, 0x5d0840,5, 0x5d0904,1, 0x5d0940,39, 0x5d0a00,7, 0x5d0a20,46, 0x5d0ae4,5, 0x5d0b04,5, 0x5d0b24,1, 0x5d0b2c,3, 0x5d0b44,1, 0x5d0b4c,3, 0x5d0b84,1, 0x5d0ba0,11, 0x5d0bd0,3, 0x5d0be0,1, 0x5d0c00,20, 0x5d0c80,4, 0x5d0cc0,9, 0x5d0d00,4, 0x5d0d20,5, 0x5d0d40,3, 0x5d0d50,17, 0x5d0da0,9, 0x5d1004,1, 0x5d100c,4, 0x5d1024,1, 0x5d102c,4, 0x5d1040,5, 0x5d1104,1, 0x5d1140,39, 0x5d1200,7, 0x5d1220,46, 0x5d12e4,5, 0x5d1304,5, 0x5d1324,1, 0x5d132c,3, 0x5d1344,1, 0x5d134c,3, 0x5d1384,1, 0x5d13a0,11, 0x5d13d0,3, 0x5d13e0,1, 0x5d1400,20, 0x5d1480,4, 0x5d14c0,9, 0x5d1500,4, 0x5d1520,5, 0x5d1540,3, 0x5d1550,17, 0x5d15a0,9, 0x5d1804,1, 0x5d180c,4, 0x5d1824,1, 0x5d182c,4, 0x5d1840,5, 0x5d1904,1, 0x5d1940,39, 0x5d1a00,7, 0x5d1a20,46, 0x5d1ae4,5, 0x5d1b04,5, 0x5d1b24,1, 0x5d1b2c,3, 0x5d1b44,1, 0x5d1b4c,3, 0x5d1b84,1, 0x5d1ba0,11, 0x5d1bd0,3, 0x5d1be0,1, 0x5d1c00,20, 0x5d1c80,4, 0x5d1cc0,9, 0x5d1d00,4, 0x5d1d20,5, 0x5d1d40,3, 0x5d1d50,17, 0x5d1da0,9, 0x5d2004,1, 0x5d200c,4, 0x5d2024,1, 0x5d202c,4, 0x5d2040,5, 0x5d2104,1, 0x5d2140,39, 0x5d2200,7, 0x5d2220,46, 0x5d22e4,5, 0x5d2304,5, 0x5d2324,1, 0x5d232c,3, 0x5d2344,1, 0x5d234c,3, 0x5d2384,1, 0x5d23a0,11, 0x5d23d0,3, 0x5d23e0,1, 0x5d2400,20, 0x5d2480,4, 0x5d24c0,9, 0x5d2500,4, 0x5d2520,5, 0x5d2540,3, 0x5d2550,17, 0x5d25a0,9, 0x5d2804,1, 0x5d280c,4, 0x5d2824,1, 0x5d282c,4, 0x5d2840,5, 0x5d2904,1, 0x5d2940,39, 0x5d2a00,7, 0x5d2a20,46, 0x5d2ae4,5, 0x5d2b04,5, 0x5d2b24,1, 0x5d2b2c,3, 0x5d2b44,1, 0x5d2b4c,3, 0x5d2b84,1, 0x5d2ba0,11, 0x5d2bd0,3, 0x5d2be0,1, 0x5d2c00,20, 0x5d2c80,4, 0x5d2cc0,9, 0x5d2d00,4, 0x5d2d20,5, 0x5d2d40,3, 0x5d2d50,17, 0x5d2da0,9, 0x5d3004,1, 0x5d300c,4, 0x5d3024,1, 0x5d302c,4, 0x5d3040,5, 0x5d3104,1, 0x5d3140,39, 0x5d3200,7, 0x5d3220,46, 0x5d32e4,5, 0x5d3304,5, 0x5d3324,1, 0x5d332c,3, 0x5d3344,1, 0x5d334c,3, 0x5d3384,1, 0x5d33a0,11, 0x5d33d0,3, 0x5d33e0,1, 0x5d3400,20, 0x5d3480,4, 0x5d34c0,9, 0x5d3500,4, 0x5d3520,5, 0x5d3540,3, 0x5d3550,17, 0x5d35a0,9, 0x5d3804,1, 0x5d380c,4, 0x5d3824,1, 0x5d382c,4, 0x5d3840,5, 0x5d3904,1, 0x5d3940,39, 0x5d3a00,7, 0x5d3a20,46, 0x5d3ae4,5, 0x5d3b04,5, 0x5d3b24,1, 0x5d3b2c,3, 0x5d3b44,1, 0x5d3b4c,3, 0x5d3b84,1, 0x5d3ba0,11, 0x5d3bd0,3, 0x5d3be0,1, 0x5d3c00,20, 0x5d3c80,4, 0x5d3cc0,9, 0x5d3d00,4, 0x5d3d20,5, 0x5d3d40,3, 0x5d3d50,17, 0x5d3da0,9, 0x5d4004,1, 0x5d400c,4, 0x5d4024,1, 0x5d402c,4, 0x5d4040,5, 0x5d4104,1, 0x5d4140,39, 0x5d4200,7, 0x5d4220,46, 0x5d42e4,5, 0x5d4304,5, 0x5d4324,1, 0x5d432c,3, 0x5d4344,1, 0x5d434c,3, 0x5d4384,1, 0x5d43a0,11, 0x5d43d0,3, 0x5d43e0,1, 0x5d4400,20, 0x5d4480,4, 0x5d44c0,9, 0x5d4500,4, 0x5d4520,5, 0x5d4540,3, 0x5d4550,17, 0x5d45a0,9, 0x5d4804,1, 0x5d480c,4, 0x5d4824,1, 0x5d482c,4, 0x5d4840,5, 0x5d4904,1, 0x5d4940,39, 0x5d4a00,7, 0x5d4a20,46, 0x5d4ae4,5, 0x5d4b04,5, 0x5d4b24,1, 0x5d4b2c,3, 0x5d4b44,1, 0x5d4b4c,3, 0x5d4b84,1, 0x5d4ba0,11, 0x5d4bd0,3, 0x5d4be0,1, 0x5d4c00,20, 0x5d4c80,4, 0x5d4cc0,9, 0x5d4d00,4, 0x5d4d20,5, 0x5d4d40,3, 0x5d4d50,17, 0x5d4da0,9, 0x5d5004,1, 0x5d500c,4, 0x5d5024,1, 0x5d502c,4, 0x5d5040,5, 0x5d5104,1, 0x5d5140,39, 0x5d5200,7, 0x5d5220,46, 0x5d52e4,5, 0x5d5304,5, 0x5d5324,1, 0x5d532c,3, 0x5d5344,1, 0x5d534c,3, 0x5d5384,1, 0x5d53a0,11, 0x5d53d0,3, 0x5d53e0,1, 0x5d5400,20, 0x5d5480,4, 0x5d54c0,9, 0x5d5500,4, 0x5d5520,5, 0x5d5540,3, 0x5d5550,17, 0x5d55a0,9, 0x5d5804,1, 0x5d580c,4, 0x5d5824,1, 0x5d582c,4, 0x5d5840,5, 0x5d5904,1, 0x5d5940,39, 0x5d5a00,7, 0x5d5a20,46, 0x5d5ae4,5, 0x5d5b04,5, 0x5d5b24,1, 0x5d5b2c,3, 0x5d5b44,1, 0x5d5b4c,3, 0x5d5b84,1, 0x5d5ba0,11, 0x5d5bd0,3, 0x5d5be0,1, 0x5d5c00,20, 0x5d5c80,4, 0x5d5cc0,9, 0x5d5d00,4, 0x5d5d20,5, 0x5d5d40,3, 0x5d5d50,17, 0x5d5da0,9, 0x5d6004,1, 0x5d600c,4, 0x5d6024,1, 0x5d602c,4, 0x5d6040,5, 0x5d6104,1, 0x5d6140,39, 0x5d6200,7, 0x5d6220,46, 0x5d62e4,5, 0x5d6304,5, 0x5d6324,1, 0x5d632c,3, 0x5d6344,1, 0x5d634c,3, 0x5d6384,1, 0x5d63a0,11, 0x5d63d0,3, 0x5d63e0,1, 0x5d6400,20, 0x5d6480,4, 0x5d64c0,9, 0x5d6500,4, 0x5d6520,5, 0x5d6540,3, 0x5d6550,17, 0x5d65a0,9, 0x5d6804,1, 0x5d680c,4, 0x5d6824,1, 0x5d682c,4, 0x5d6840,5, 0x5d6904,1, 0x5d6940,39, 0x5d6a00,7, 0x5d6a20,46, 0x5d6ae4,5, 0x5d6b04,5, 0x5d6b24,1, 0x5d6b2c,3, 0x5d6b44,1, 0x5d6b4c,3, 0x5d6b84,1, 0x5d6ba0,11, 0x5d6bd0,3, 0x5d6be0,1, 0x5d6c00,20, 0x5d6c80,4, 0x5d6cc0,9, 0x5d6d00,4, 0x5d6d20,5, 0x5d6d40,3, 0x5d6d50,17, 0x5d6da0,9, 0x5d7004,1, 0x5d700c,4, 0x5d7024,1, 0x5d702c,4, 0x5d7040,5, 0x5d7104,1, 0x5d7140,39, 0x5d7200,7, 0x5d7220,46, 0x5d72e4,5, 0x5d7304,5, 0x5d7324,1, 0x5d732c,3, 0x5d7344,1, 0x5d734c,3, 0x5d7384,1, 0x5d73a0,11, 0x5d73d0,3, 0x5d73e0,1, 0x5d7400,20, 0x5d7480,4, 0x5d74c0,9, 0x5d7500,4, 0x5d7520,5, 0x5d7540,3, 0x5d7550,17, 0x5d75a0,9, 0x5d7804,1, 0x5d780c,4, 0x5d7824,1, 0x5d782c,4, 0x5d7840,5, 0x5d7904,1, 0x5d7940,39, 0x5d7a00,7, 0x5d7a20,46, 0x5d7ae4,5, 0x5d7b04,5, 0x5d7b24,1, 0x5d7b2c,3, 0x5d7b44,1, 0x5d7b4c,3, 0x5d7b84,1, 0x5d7ba0,11, 0x5d7bd0,3, 0x5d7be0,1, 0x5d7c00,20, 0x5d7c80,4, 0x5d7cc0,9, 0x5d7d00,4, 0x5d7d20,5, 0x5d7d40,3, 0x5d7d50,17, 0x5d7da0,9, 0x5d8004,1, 0x5d800c,4, 0x5d8024,1, 0x5d802c,4, 0x5d8040,5, 0x5d8104,1, 0x5d8140,39, 0x5d8200,7, 0x5d8220,46, 0x5d82e4,5, 0x5d8304,5, 0x5d8324,1, 0x5d832c,3, 0x5d8344,1, 0x5d834c,3, 0x5d8384,1, 0x5d83a0,11, 0x5d83d0,3, 0x5d83e0,1, 0x5d8400,20, 0x5d8480,4, 0x5d84c0,9, 0x5d8500,4, 0x5d8520,5, 0x5d8540,3, 0x5d8550,17, 0x5d85a0,9, 0x5d9000,137, 0x5d9400,118, 0x5d95e4,5, 0x5d9604,5, 0x5d9624,1, 0x5d962c,3, 0x5d9644,1, 0x5d964c,3, 0x5d9664,1, 0x5d966c,15, 0x5d96b0,12, 0x5d9700,20, 0x5d9780,4, 0x5d97c0,9, 0x5d9800,19, 0x5da000,20, 0x5da080,2, 0x5da090,3, 0x5da200,26, 0x5da280,4, 0x5da2c0,25, 0x5da340,6, 0x5da360,1, 0x5da368,2, 0x5da374,11, 0x5da3a4,10, 0x5da400,4, 0x5e0004,1, 0x5e000c,4, 0x5e0024,1, 0x5e002c,4, 0x5e0040,5, 0x5e0104,1, 0x5e0140,39, 0x5e0200,7, 0x5e0220,46, 0x5e02e4,5, 0x5e0304,5, 0x5e0324,1, 0x5e032c,3, 0x5e0344,1, 0x5e034c,3, 0x5e0384,1, 0x5e03a0,11, 0x5e03d0,3, 0x5e03e0,1, 0x5e0400,20, 0x5e0480,4, 0x5e04c0,9, 0x5e0500,4, 0x5e0520,5, 0x5e0540,3, 0x5e0550,17, 0x5e05a0,9, 0x5e0804,1, 0x5e080c,4, 0x5e0824,1, 0x5e082c,4, 0x5e0840,5, 0x5e0904,1, 0x5e0940,39, 0x5e0a00,7, 0x5e0a20,46, 0x5e0ae4,5, 0x5e0b04,5, 0x5e0b24,1, 0x5e0b2c,3, 0x5e0b44,1, 0x5e0b4c,3, 0x5e0b84,1, 0x5e0ba0,11, 0x5e0bd0,3, 0x5e0be0,1, 0x5e0c00,20, 0x5e0c80,4, 0x5e0cc0,9, 0x5e0d00,4, 0x5e0d20,5, 0x5e0d40,3, 0x5e0d50,17, 0x5e0da0,9, 0x5e1004,1, 0x5e100c,4, 0x5e1024,1, 0x5e102c,4, 0x5e1040,5, 0x5e1104,1, 0x5e1140,39, 0x5e1200,7, 0x5e1220,46, 0x5e12e4,5, 0x5e1304,5, 0x5e1324,1, 0x5e132c,3, 0x5e1344,1, 0x5e134c,3, 0x5e1384,1, 0x5e13a0,11, 0x5e13d0,3, 0x5e13e0,1, 0x5e1400,20, 0x5e1480,4, 0x5e14c0,9, 0x5e1500,4, 0x5e1520,5, 0x5e1540,3, 0x5e1550,17, 0x5e15a0,9, 0x5e1804,1, 0x5e180c,4, 0x5e1824,1, 0x5e182c,4, 0x5e1840,5, 0x5e1904,1, 0x5e1940,39, 0x5e1a00,7, 0x5e1a20,46, 0x5e1ae4,5, 0x5e1b04,5, 0x5e1b24,1, 0x5e1b2c,3, 0x5e1b44,1, 0x5e1b4c,3, 0x5e1b84,1, 0x5e1ba0,11, 0x5e1bd0,3, 0x5e1be0,1, 0x5e1c00,20, 0x5e1c80,4, 0x5e1cc0,9, 0x5e1d00,4, 0x5e1d20,5, 0x5e1d40,3, 0x5e1d50,17, 0x5e1da0,9, 0x5e2004,1, 0x5e200c,4, 0x5e2024,1, 0x5e202c,4, 0x5e2040,5, 0x5e2104,1, 0x5e2140,39, 0x5e2200,7, 0x5e2220,46, 0x5e22e4,5, 0x5e2304,5, 0x5e2324,1, 0x5e232c,3, 0x5e2344,1, 0x5e234c,3, 0x5e2384,1, 0x5e23a0,11, 0x5e23d0,3, 0x5e23e0,1, 0x5e2400,20, 0x5e2480,4, 0x5e24c0,9, 0x5e2500,4, 0x5e2520,5, 0x5e2540,3, 0x5e2550,17, 0x5e25a0,9, 0x5e2804,1, 0x5e280c,4, 0x5e2824,1, 0x5e282c,4, 0x5e2840,5, 0x5e2904,1, 0x5e2940,39, 0x5e2a00,7, 0x5e2a20,46, 0x5e2ae4,5, 0x5e2b04,5, 0x5e2b24,1, 0x5e2b2c,3, 0x5e2b44,1, 0x5e2b4c,3, 0x5e2b84,1, 0x5e2ba0,11, 0x5e2bd0,3, 0x5e2be0,1, 0x5e2c00,20, 0x5e2c80,4, 0x5e2cc0,9, 0x5e2d00,4, 0x5e2d20,5, 0x5e2d40,3, 0x5e2d50,17, 0x5e2da0,9, 0x5e3004,1, 0x5e300c,4, 0x5e3024,1, 0x5e302c,4, 0x5e3040,5, 0x5e3104,1, 0x5e3140,39, 0x5e3200,7, 0x5e3220,46, 0x5e32e4,5, 0x5e3304,5, 0x5e3324,1, 0x5e332c,3, 0x5e3344,1, 0x5e334c,3, 0x5e3384,1, 0x5e33a0,11, 0x5e33d0,3, 0x5e33e0,1, 0x5e3400,20, 0x5e3480,4, 0x5e34c0,9, 0x5e3500,4, 0x5e3520,5, 0x5e3540,3, 0x5e3550,17, 0x5e35a0,9, 0x5e3804,1, 0x5e380c,4, 0x5e3824,1, 0x5e382c,4, 0x5e3840,5, 0x5e3904,1, 0x5e3940,39, 0x5e3a00,7, 0x5e3a20,46, 0x5e3ae4,5, 0x5e3b04,5, 0x5e3b24,1, 0x5e3b2c,3, 0x5e3b44,1, 0x5e3b4c,3, 0x5e3b84,1, 0x5e3ba0,11, 0x5e3bd0,3, 0x5e3be0,1, 0x5e3c00,20, 0x5e3c80,4, 0x5e3cc0,9, 0x5e3d00,4, 0x5e3d20,5, 0x5e3d40,3, 0x5e3d50,17, 0x5e3da0,9, 0x5e4004,1, 0x5e400c,4, 0x5e4024,1, 0x5e402c,4, 0x5e4040,5, 0x5e4104,1, 0x5e4140,39, 0x5e4200,7, 0x5e4220,46, 0x5e42e4,5, 0x5e4304,5, 0x5e4324,1, 0x5e432c,3, 0x5e4344,1, 0x5e434c,3, 0x5e4384,1, 0x5e43a0,11, 0x5e43d0,3, 0x5e43e0,1, 0x5e4400,20, 0x5e4480,4, 0x5e44c0,9, 0x5e4500,4, 0x5e4520,5, 0x5e4540,3, 0x5e4550,17, 0x5e45a0,9, 0x5e4804,1, 0x5e480c,4, 0x5e4824,1, 0x5e482c,4, 0x5e4840,5, 0x5e4904,1, 0x5e4940,39, 0x5e4a00,7, 0x5e4a20,46, 0x5e4ae4,5, 0x5e4b04,5, 0x5e4b24,1, 0x5e4b2c,3, 0x5e4b44,1, 0x5e4b4c,3, 0x5e4b84,1, 0x5e4ba0,11, 0x5e4bd0,3, 0x5e4be0,1, 0x5e4c00,20, 0x5e4c80,4, 0x5e4cc0,9, 0x5e4d00,4, 0x5e4d20,5, 0x5e4d40,3, 0x5e4d50,17, 0x5e4da0,9, 0x5e5004,1, 0x5e500c,4, 0x5e5024,1, 0x5e502c,4, 0x5e5040,5, 0x5e5104,1, 0x5e5140,39, 0x5e5200,7, 0x5e5220,46, 0x5e52e4,5, 0x5e5304,5, 0x5e5324,1, 0x5e532c,3, 0x5e5344,1, 0x5e534c,3, 0x5e5384,1, 0x5e53a0,11, 0x5e53d0,3, 0x5e53e0,1, 0x5e5400,20, 0x5e5480,4, 0x5e54c0,9, 0x5e5500,4, 0x5e5520,5, 0x5e5540,3, 0x5e5550,17, 0x5e55a0,9, 0x5e5804,1, 0x5e580c,4, 0x5e5824,1, 0x5e582c,4, 0x5e5840,5, 0x5e5904,1, 0x5e5940,39, 0x5e5a00,7, 0x5e5a20,46, 0x5e5ae4,5, 0x5e5b04,5, 0x5e5b24,1, 0x5e5b2c,3, 0x5e5b44,1, 0x5e5b4c,3, 0x5e5b84,1, 0x5e5ba0,11, 0x5e5bd0,3, 0x5e5be0,1, 0x5e5c00,20, 0x5e5c80,4, 0x5e5cc0,9, 0x5e5d00,4, 0x5e5d20,5, 0x5e5d40,3, 0x5e5d50,17, 0x5e5da0,9, 0x5e6004,1, 0x5e600c,4, 0x5e6024,1, 0x5e602c,4, 0x5e6040,5, 0x5e6104,1, 0x5e6140,39, 0x5e6200,7, 0x5e6220,46, 0x5e62e4,5, 0x5e6304,5, 0x5e6324,1, 0x5e632c,3, 0x5e6344,1, 0x5e634c,3, 0x5e6384,1, 0x5e63a0,11, 0x5e63d0,3, 0x5e63e0,1, 0x5e6400,20, 0x5e6480,4, 0x5e64c0,9, 0x5e6500,4, 0x5e6520,5, 0x5e6540,3, 0x5e6550,17, 0x5e65a0,9, 0x5e6804,1, 0x5e680c,4, 0x5e6824,1, 0x5e682c,4, 0x5e6840,5, 0x5e6904,1, 0x5e6940,39, 0x5e6a00,7, 0x5e6a20,46, 0x5e6ae4,5, 0x5e6b04,5, 0x5e6b24,1, 0x5e6b2c,3, 0x5e6b44,1, 0x5e6b4c,3, 0x5e6b84,1, 0x5e6ba0,11, 0x5e6bd0,3, 0x5e6be0,1, 0x5e6c00,20, 0x5e6c80,4, 0x5e6cc0,9, 0x5e6d00,4, 0x5e6d20,5, 0x5e6d40,3, 0x5e6d50,17, 0x5e6da0,9, 0x5e7004,1, 0x5e700c,4, 0x5e7024,1, 0x5e702c,4, 0x5e7040,5, 0x5e7104,1, 0x5e7140,39, 0x5e7200,7, 0x5e7220,46, 0x5e72e4,5, 0x5e7304,5, 0x5e7324,1, 0x5e732c,3, 0x5e7344,1, 0x5e734c,3, 0x5e7384,1, 0x5e73a0,11, 0x5e73d0,3, 0x5e73e0,1, 0x5e7400,20, 0x5e7480,4, 0x5e74c0,9, 0x5e7500,4, 0x5e7520,5, 0x5e7540,3, 0x5e7550,17, 0x5e75a0,9, 0x5e7804,1, 0x5e780c,4, 0x5e7824,1, 0x5e782c,4, 0x5e7840,5, 0x5e7904,1, 0x5e7940,39, 0x5e7a00,7, 0x5e7a20,46, 0x5e7ae4,5, 0x5e7b04,5, 0x5e7b24,1, 0x5e7b2c,3, 0x5e7b44,1, 0x5e7b4c,3, 0x5e7b84,1, 0x5e7ba0,11, 0x5e7bd0,3, 0x5e7be0,1, 0x5e7c00,20, 0x5e7c80,4, 0x5e7cc0,9, 0x5e7d00,4, 0x5e7d20,5, 0x5e7d40,3, 0x5e7d50,17, 0x5e7da0,9, 0x5e8004,1, 0x5e800c,4, 0x5e8024,1, 0x5e802c,4, 0x5e8040,5, 0x5e8104,1, 0x5e8140,39, 0x5e8200,7, 0x5e8220,46, 0x5e82e4,5, 0x5e8304,5, 0x5e8324,1, 0x5e832c,3, 0x5e8344,1, 0x5e834c,3, 0x5e8384,1, 0x5e83a0,11, 0x5e83d0,3, 0x5e83e0,1, 0x5e8400,20, 0x5e8480,4, 0x5e84c0,9, 0x5e8500,4, 0x5e8520,5, 0x5e8540,3, 0x5e8550,17, 0x5e85a0,9, 0x5e9000,137, 0x5e9400,118, 0x5e95e4,5, 0x5e9604,5, 0x5e9624,1, 0x5e962c,3, 0x5e9644,1, 0x5e964c,3, 0x5e9664,1, 0x5e966c,15, 0x5e96b0,12, 0x5e9700,20, 0x5e9780,4, 0x5e97c0,9, 0x5e9800,19, 0x5ea000,20, 0x5ea080,2, 0x5ea090,3, 0x5ea200,26, 0x5ea280,4, 0x5ea2c0,25, 0x5ea340,6, 0x5ea360,1, 0x5ea368,2, 0x5ea374,11, 0x5ea3a4,10, 0x5ea400,4, 0x5f0004,1, 0x5f000c,4, 0x5f0024,1, 0x5f002c,4, 0x5f0040,5, 0x5f0104,1, 0x5f0140,39, 0x5f0200,7, 0x5f0220,46, 0x5f02e4,5, 0x5f0304,5, 0x5f0324,1, 0x5f032c,3, 0x5f0344,1, 0x5f034c,3, 0x5f0384,1, 0x5f03a0,11, 0x5f03d0,3, 0x5f03e0,1, 0x5f0400,20, 0x5f0480,4, 0x5f04c0,9, 0x5f0500,4, 0x5f0520,5, 0x5f0540,3, 0x5f0550,17, 0x5f05a0,9, 0x5f0804,1, 0x5f080c,4, 0x5f0824,1, 0x5f082c,4, 0x5f0840,5, 0x5f0904,1, 0x5f0940,39, 0x5f0a00,7, 0x5f0a20,46, 0x5f0ae4,5, 0x5f0b04,5, 0x5f0b24,1, 0x5f0b2c,3, 0x5f0b44,1, 0x5f0b4c,3, 0x5f0b84,1, 0x5f0ba0,11, 0x5f0bd0,3, 0x5f0be0,1, 0x5f0c00,20, 0x5f0c80,4, 0x5f0cc0,9, 0x5f0d00,4, 0x5f0d20,5, 0x5f0d40,3, 0x5f0d50,17, 0x5f0da0,9, 0x5f1004,1, 0x5f100c,4, 0x5f1024,1, 0x5f102c,4, 0x5f1040,5, 0x5f1104,1, 0x5f1140,39, 0x5f1200,7, 0x5f1220,46, 0x5f12e4,5, 0x5f1304,5, 0x5f1324,1, 0x5f132c,3, 0x5f1344,1, 0x5f134c,3, 0x5f1384,1, 0x5f13a0,11, 0x5f13d0,3, 0x5f13e0,1, 0x5f1400,20, 0x5f1480,4, 0x5f14c0,9, 0x5f1500,4, 0x5f1520,5, 0x5f1540,3, 0x5f1550,17, 0x5f15a0,9, 0x5f1804,1, 0x5f180c,4, 0x5f1824,1, 0x5f182c,4, 0x5f1840,5, 0x5f1904,1, 0x5f1940,39, 0x5f1a00,7, 0x5f1a20,46, 0x5f1ae4,5, 0x5f1b04,5, 0x5f1b24,1, 0x5f1b2c,3, 0x5f1b44,1, 0x5f1b4c,3, 0x5f1b84,1, 0x5f1ba0,11, 0x5f1bd0,3, 0x5f1be0,1, 0x5f1c00,20, 0x5f1c80,4, 0x5f1cc0,9, 0x5f1d00,4, 0x5f1d20,5, 0x5f1d40,3, 0x5f1d50,17, 0x5f1da0,9, 0x5f2004,1, 0x5f200c,4, 0x5f2024,1, 0x5f202c,4, 0x5f2040,5, 0x5f2104,1, 0x5f2140,39, 0x5f2200,7, 0x5f2220,46, 0x5f22e4,5, 0x5f2304,5, 0x5f2324,1, 0x5f232c,3, 0x5f2344,1, 0x5f234c,3, 0x5f2384,1, 0x5f23a0,11, 0x5f23d0,3, 0x5f23e0,1, 0x5f2400,20, 0x5f2480,4, 0x5f24c0,9, 0x5f2500,4, 0x5f2520,5, 0x5f2540,3, 0x5f2550,17, 0x5f25a0,9, 0x5f2804,1, 0x5f280c,4, 0x5f2824,1, 0x5f282c,4, 0x5f2840,5, 0x5f2904,1, 0x5f2940,39, 0x5f2a00,7, 0x5f2a20,46, 0x5f2ae4,5, 0x5f2b04,5, 0x5f2b24,1, 0x5f2b2c,3, 0x5f2b44,1, 0x5f2b4c,3, 0x5f2b84,1, 0x5f2ba0,11, 0x5f2bd0,3, 0x5f2be0,1, 0x5f2c00,20, 0x5f2c80,4, 0x5f2cc0,9, 0x5f2d00,4, 0x5f2d20,5, 0x5f2d40,3, 0x5f2d50,17, 0x5f2da0,9, 0x5f3004,1, 0x5f300c,4, 0x5f3024,1, 0x5f302c,4, 0x5f3040,5, 0x5f3104,1, 0x5f3140,39, 0x5f3200,7, 0x5f3220,46, 0x5f32e4,5, 0x5f3304,5, 0x5f3324,1, 0x5f332c,3, 0x5f3344,1, 0x5f334c,3, 0x5f3384,1, 0x5f33a0,11, 0x5f33d0,3, 0x5f33e0,1, 0x5f3400,20, 0x5f3480,4, 0x5f34c0,9, 0x5f3500,4, 0x5f3520,5, 0x5f3540,3, 0x5f3550,17, 0x5f35a0,9, 0x5f3804,1, 0x5f380c,4, 0x5f3824,1, 0x5f382c,4, 0x5f3840,5, 0x5f3904,1, 0x5f3940,39, 0x5f3a00,7, 0x5f3a20,46, 0x5f3ae4,5, 0x5f3b04,5, 0x5f3b24,1, 0x5f3b2c,3, 0x5f3b44,1, 0x5f3b4c,3, 0x5f3b84,1, 0x5f3ba0,11, 0x5f3bd0,3, 0x5f3be0,1, 0x5f3c00,20, 0x5f3c80,4, 0x5f3cc0,9, 0x5f3d00,4, 0x5f3d20,5, 0x5f3d40,3, 0x5f3d50,17, 0x5f3da0,9, 0x5f4004,1, 0x5f400c,4, 0x5f4024,1, 0x5f402c,4, 0x5f4040,5, 0x5f4104,1, 0x5f4140,39, 0x5f4200,7, 0x5f4220,46, 0x5f42e4,5, 0x5f4304,5, 0x5f4324,1, 0x5f432c,3, 0x5f4344,1, 0x5f434c,3, 0x5f4384,1, 0x5f43a0,11, 0x5f43d0,3, 0x5f43e0,1, 0x5f4400,20, 0x5f4480,4, 0x5f44c0,9, 0x5f4500,4, 0x5f4520,5, 0x5f4540,3, 0x5f4550,17, 0x5f45a0,9, 0x5f4804,1, 0x5f480c,4, 0x5f4824,1, 0x5f482c,4, 0x5f4840,5, 0x5f4904,1, 0x5f4940,39, 0x5f4a00,7, 0x5f4a20,46, 0x5f4ae4,5, 0x5f4b04,5, 0x5f4b24,1, 0x5f4b2c,3, 0x5f4b44,1, 0x5f4b4c,3, 0x5f4b84,1, 0x5f4ba0,11, 0x5f4bd0,3, 0x5f4be0,1, 0x5f4c00,20, 0x5f4c80,4, 0x5f4cc0,9, 0x5f4d00,4, 0x5f4d20,5, 0x5f4d40,3, 0x5f4d50,17, 0x5f4da0,9, 0x5f5004,1, 0x5f500c,4, 0x5f5024,1, 0x5f502c,4, 0x5f5040,5, 0x5f5104,1, 0x5f5140,39, 0x5f5200,7, 0x5f5220,46, 0x5f52e4,5, 0x5f5304,5, 0x5f5324,1, 0x5f532c,3, 0x5f5344,1, 0x5f534c,3, 0x5f5384,1, 0x5f53a0,11, 0x5f53d0,3, 0x5f53e0,1, 0x5f5400,20, 0x5f5480,4, 0x5f54c0,9, 0x5f5500,4, 0x5f5520,5, 0x5f5540,3, 0x5f5550,17, 0x5f55a0,9, 0x5f5804,1, 0x5f580c,4, 0x5f5824,1, 0x5f582c,4, 0x5f5840,5, 0x5f5904,1, 0x5f5940,39, 0x5f5a00,7, 0x5f5a20,46, 0x5f5ae4,5, 0x5f5b04,5, 0x5f5b24,1, 0x5f5b2c,3, 0x5f5b44,1, 0x5f5b4c,3, 0x5f5b84,1, 0x5f5ba0,11, 0x5f5bd0,3, 0x5f5be0,1, 0x5f5c00,20, 0x5f5c80,4, 0x5f5cc0,9, 0x5f5d00,4, 0x5f5d20,5, 0x5f5d40,3, 0x5f5d50,17, 0x5f5da0,9, 0x5f6004,1, 0x5f600c,4, 0x5f6024,1, 0x5f602c,4, 0x5f6040,5, 0x5f6104,1, 0x5f6140,39, 0x5f6200,7, 0x5f6220,46, 0x5f62e4,5, 0x5f6304,5, 0x5f6324,1, 0x5f632c,3, 0x5f6344,1, 0x5f634c,3, 0x5f6384,1, 0x5f63a0,11, 0x5f63d0,3, 0x5f63e0,1, 0x5f6400,20, 0x5f6480,4, 0x5f64c0,9, 0x5f6500,4, 0x5f6520,5, 0x5f6540,3, 0x5f6550,17, 0x5f65a0,9, 0x5f6804,1, 0x5f680c,4, 0x5f6824,1, 0x5f682c,4, 0x5f6840,5, 0x5f6904,1, 0x5f6940,39, 0x5f6a00,7, 0x5f6a20,46, 0x5f6ae4,5, 0x5f6b04,5, 0x5f6b24,1, 0x5f6b2c,3, 0x5f6b44,1, 0x5f6b4c,3, 0x5f6b84,1, 0x5f6ba0,11, 0x5f6bd0,3, 0x5f6be0,1, 0x5f6c00,20, 0x5f6c80,4, 0x5f6cc0,9, 0x5f6d00,4, 0x5f6d20,5, 0x5f6d40,3, 0x5f6d50,17, 0x5f6da0,9, 0x5f7004,1, 0x5f700c,4, 0x5f7024,1, 0x5f702c,4, 0x5f7040,5, 0x5f7104,1, 0x5f7140,39, 0x5f7200,7, 0x5f7220,46, 0x5f72e4,5, 0x5f7304,5, 0x5f7324,1, 0x5f732c,3, 0x5f7344,1, 0x5f734c,3, 0x5f7384,1, 0x5f73a0,11, 0x5f73d0,3, 0x5f73e0,1, 0x5f7400,20, 0x5f7480,4, 0x5f74c0,9, 0x5f7500,4, 0x5f7520,5, 0x5f7540,3, 0x5f7550,17, 0x5f75a0,9, 0x5f7804,1, 0x5f780c,4, 0x5f7824,1, 0x5f782c,4, 0x5f7840,5, 0x5f7904,1, 0x5f7940,39, 0x5f7a00,7, 0x5f7a20,46, 0x5f7ae4,5, 0x5f7b04,5, 0x5f7b24,1, 0x5f7b2c,3, 0x5f7b44,1, 0x5f7b4c,3, 0x5f7b84,1, 0x5f7ba0,11, 0x5f7bd0,3, 0x5f7be0,1, 0x5f7c00,20, 0x5f7c80,4, 0x5f7cc0,9, 0x5f7d00,4, 0x5f7d20,5, 0x5f7d40,3, 0x5f7d50,17, 0x5f7da0,9, 0x5f8004,1, 0x5f800c,4, 0x5f8024,1, 0x5f802c,4, 0x5f8040,5, 0x5f8104,1, 0x5f8140,39, 0x5f8200,7, 0x5f8220,46, 0x5f82e4,5, 0x5f8304,5, 0x5f8324,1, 0x5f832c,3, 0x5f8344,1, 0x5f834c,3, 0x5f8384,1, 0x5f83a0,11, 0x5f83d0,3, 0x5f83e0,1, 0x5f8400,20, 0x5f8480,4, 0x5f84c0,9, 0x5f8500,4, 0x5f8520,5, 0x5f8540,3, 0x5f8550,17, 0x5f85a0,9, 0x5f9000,137, 0x5f9400,118, 0x5f95e4,5, 0x5f9604,5, 0x5f9624,1, 0x5f962c,3, 0x5f9644,1, 0x5f964c,3, 0x5f9664,1, 0x5f966c,15, 0x5f96b0,12, 0x5f9700,20, 0x5f9780,4, 0x5f97c0,9, 0x5f9800,19, 0x5fa000,20, 0x5fa080,2, 0x5fa090,3, 0x5fa200,26, 0x5fa280,4, 0x5fa2c0,25, 0x5fa340,6, 0x5fa360,1, 0x5fa368,2, 0x5fa374,11, 0x5fa3a4,10, 0x5fa400,4, 0x600000,15, 0x600040,4, 0x600060,6, 0x600080,6, 0x6000a0,6, 0x6000c0,11, 0x600100,15, 0x600140,4, 0x600160,6, 0x600180,6, 0x6001a0,6, 0x6001c0,11, 0x600200,2, 0x600220,34, 0x600400,15, 0x600440,4, 0x600460,6, 0x600480,6, 0x6004a0,6, 0x6004c0,11, 0x600500,15, 0x600540,4, 0x600560,6, 0x600580,6, 0x6005a0,6, 0x6005c0,11, 0x600600,2, 0x600620,34, 0x600800,15, 0x600840,4, 0x600860,6, 0x600880,6, 0x6008a0,6, 0x6008c0,11, 0x600900,15, 0x600940,4, 0x600960,6, 0x600980,6, 0x6009a0,6, 0x6009c0,11, 0x600a00,2, 0x600a20,34, 0x600c00,15, 0x600c40,4, 0x600c60,6, 0x600c80,6, 0x600ca0,6, 0x600cc0,11, 0x600d00,15, 0x600d40,4, 0x600d60,6, 0x600d80,6, 0x600da0,6, 0x600dc0,11, 0x600e00,2, 0x600e20,34, 0x601000,15, 0x601040,4, 0x601060,6, 0x601080,6, 0x6010a0,6, 0x6010c0,11, 0x601100,15, 0x601140,4, 0x601160,6, 0x601180,6, 0x6011a0,6, 0x6011c0,11, 0x601200,2, 0x601220,34, 0x601400,15, 0x601440,4, 0x601460,6, 0x601480,6, 0x6014a0,6, 0x6014c0,11, 0x601500,15, 0x601540,4, 0x601560,6, 0x601580,6, 0x6015a0,6, 0x6015c0,11, 0x601600,2, 0x601620,34, 0x601800,15, 0x601840,4, 0x601860,6, 0x601880,6, 0x6018a0,6, 0x6018c0,11, 0x601900,15, 0x601940,4, 0x601960,6, 0x601980,6, 0x6019a0,6, 0x6019c0,11, 0x601a00,2, 0x601a20,34, 0x601c00,15, 0x601c40,4, 0x601c60,6, 0x601c80,6, 0x601ca0,6, 0x601cc0,11, 0x601d00,15, 0x601d40,4, 0x601d60,6, 0x601d80,6, 0x601da0,6, 0x601dc0,11, 0x601e00,2, 0x601e20,34, 0x602000,15, 0x602040,4, 0x602060,6, 0x602080,6, 0x6020a0,6, 0x6020c0,11, 0x602100,15, 0x602140,4, 0x602160,6, 0x602180,6, 0x6021a0,6, 0x6021c0,11, 0x602200,2, 0x602220,34, 0x602400,15, 0x602440,4, 0x602460,6, 0x602480,6, 0x6024a0,6, 0x6024c0,11, 0x602500,15, 0x602540,4, 0x602560,6, 0x602580,6, 0x6025a0,6, 0x6025c0,11, 0x602600,2, 0x602620,34, 0x602800,15, 0x602840,4, 0x602860,6, 0x602880,6, 0x6028a0,6, 0x6028c0,11, 0x602900,15, 0x602940,4, 0x602960,6, 0x602980,6, 0x6029a0,6, 0x6029c0,11, 0x602a00,2, 0x602a20,34, 0x602c00,15, 0x602c40,4, 0x602c60,6, 0x602c80,6, 0x602ca0,6, 0x602cc0,11, 0x602d00,15, 0x602d40,4, 0x602d60,6, 0x602d80,6, 0x602da0,6, 0x602dc0,11, 0x602e00,2, 0x602e20,34, 0x603000,15, 0x603040,4, 0x603060,6, 0x603080,6, 0x6030a0,6, 0x6030c0,11, 0x603100,15, 0x603140,4, 0x603160,6, 0x603180,6, 0x6031a0,6, 0x6031c0,11, 0x603200,2, 0x603220,34, 0x603400,15, 0x603440,4, 0x603460,6, 0x603480,6, 0x6034a0,6, 0x6034c0,11, 0x603500,15, 0x603540,4, 0x603560,6, 0x603580,6, 0x6035a0,6, 0x6035c0,11, 0x603600,2, 0x603620,34, 0x603800,15, 0x603840,4, 0x603860,6, 0x603880,6, 0x6038a0,6, 0x6038c0,11, 0x603900,15, 0x603940,4, 0x603960,6, 0x603980,6, 0x6039a0,6, 0x6039c0,11, 0x603a00,2, 0x603a20,34, 0x603c00,15, 0x603c40,4, 0x603c60,6, 0x603c80,6, 0x603ca0,6, 0x603cc0,11, 0x603d00,15, 0x603d40,4, 0x603d60,6, 0x603d80,6, 0x603da0,6, 0x603dc0,11, 0x603e00,2, 0x603e20,34, 0x604000,15, 0x604040,4, 0x604060,6, 0x604080,6, 0x6040a0,6, 0x6040c0,11, 0x604100,15, 0x604140,4, 0x604160,6, 0x604180,6, 0x6041a0,6, 0x6041c0,11, 0x604200,2, 0x604220,34, 0x604400,15, 0x604440,4, 0x604460,6, 0x604480,6, 0x6044a0,6, 0x6044c0,11, 0x604500,15, 0x604540,4, 0x604560,6, 0x604580,6, 0x6045a0,6, 0x6045c0,11, 0x604600,2, 0x604620,34, 0x604800,15, 0x604840,4, 0x604860,6, 0x604880,6, 0x6048a0,6, 0x6048c0,11, 0x604900,15, 0x604940,4, 0x604960,6, 0x604980,6, 0x6049a0,6, 0x6049c0,11, 0x604a00,2, 0x604a20,34, 0x604c00,15, 0x604c40,4, 0x604c60,6, 0x604c80,6, 0x604ca0,6, 0x604cc0,11, 0x604d00,15, 0x604d40,4, 0x604d60,6, 0x604d80,6, 0x604da0,6, 0x604dc0,11, 0x604e00,2, 0x604e20,34, 0x605000,15, 0x605040,4, 0x605060,6, 0x605080,6, 0x6050a0,6, 0x6050c0,11, 0x605100,15, 0x605140,4, 0x605160,6, 0x605180,6, 0x6051a0,6, 0x6051c0,11, 0x605200,2, 0x605220,34, 0x605400,15, 0x605440,4, 0x605460,6, 0x605480,6, 0x6054a0,6, 0x6054c0,11, 0x605500,15, 0x605540,4, 0x605560,6, 0x605580,6, 0x6055a0,6, 0x6055c0,11, 0x605600,2, 0x605620,34, 0x605800,15, 0x605840,4, 0x605860,6, 0x605880,6, 0x6058a0,6, 0x6058c0,11, 0x605900,15, 0x605940,4, 0x605960,6, 0x605980,6, 0x6059a0,6, 0x6059c0,11, 0x605a00,2, 0x605a20,34, 0x605c00,15, 0x605c40,4, 0x605c60,6, 0x605c80,6, 0x605ca0,6, 0x605cc0,11, 0x605d00,15, 0x605d40,4, 0x605d60,6, 0x605d80,6, 0x605da0,6, 0x605dc0,11, 0x605e00,2, 0x605e20,34, 0x606000,15, 0x606040,4, 0x606060,6, 0x606080,6, 0x6060a0,6, 0x6060c0,11, 0x606100,15, 0x606140,4, 0x606160,6, 0x606180,6, 0x6061a0,6, 0x6061c0,11, 0x606200,2, 0x606220,34, 0x606400,15, 0x606440,4, 0x606460,6, 0x606480,6, 0x6064a0,6, 0x6064c0,11, 0x606500,15, 0x606540,4, 0x606560,6, 0x606580,6, 0x6065a0,6, 0x6065c0,11, 0x606600,2, 0x606620,34, 0x606800,15, 0x606840,4, 0x606860,6, 0x606880,6, 0x6068a0,6, 0x6068c0,11, 0x606900,15, 0x606940,4, 0x606960,6, 0x606980,6, 0x6069a0,6, 0x6069c0,11, 0x606a00,2, 0x606a20,34, 0x606c00,15, 0x606c40,4, 0x606c60,6, 0x606c80,6, 0x606ca0,6, 0x606cc0,11, 0x606d00,15, 0x606d40,4, 0x606d60,6, 0x606d80,6, 0x606da0,6, 0x606dc0,11, 0x606e00,2, 0x606e20,34, 0x607000,15, 0x607040,4, 0x607060,6, 0x607080,6, 0x6070a0,6, 0x6070c0,11, 0x607100,15, 0x607140,4, 0x607160,6, 0x607180,6, 0x6071a0,6, 0x6071c0,11, 0x607200,2, 0x607220,34, 0x607400,15, 0x607440,4, 0x607460,6, 0x607480,6, 0x6074a0,6, 0x6074c0,11, 0x607500,15, 0x607540,4, 0x607560,6, 0x607580,6, 0x6075a0,6, 0x6075c0,11, 0x607600,2, 0x607620,34, 0x607800,15, 0x607840,4, 0x607860,6, 0x607880,6, 0x6078a0,6, 0x6078c0,11, 0x607900,15, 0x607940,4, 0x607960,6, 0x607980,6, 0x6079a0,6, 0x6079c0,11, 0x607a00,2, 0x607a20,34, 0x607c00,15, 0x607c40,4, 0x607c60,6, 0x607c80,6, 0x607ca0,6, 0x607cc0,11, 0x607d00,15, 0x607d40,4, 0x607d60,6, 0x607d80,6, 0x607da0,6, 0x607dc0,11, 0x607e00,2, 0x607e20,34, 0x608000,15, 0x608040,4, 0x608060,6, 0x608080,6, 0x6080a0,6, 0x6080c0,11, 0x608100,15, 0x608140,4, 0x608160,6, 0x608180,6, 0x6081a0,6, 0x6081c0,11, 0x608200,2, 0x608220,34, 0x608404,2, 0x608420,23, 0x608484,2, 0x6084a0,23, 0x608504,2, 0x608520,23, 0x608584,2, 0x6085a0,23, 0x608604,2, 0x608620,23, 0x608684,2, 0x6086a0,23, 0x608704,2, 0x608720,23, 0x608784,2, 0x6087a0,23, 0x608804,2, 0x608820,23, 0x608884,2, 0x6088a0,23, 0x608904,2, 0x608920,23, 0x608984,2, 0x6089a0,23, 0x608a04,2, 0x608a20,23, 0x608a84,2, 0x608aa0,23, 0x608b04,2, 0x608b20,23, 0x608b84,2, 0x608ba0,23, 0x608c04,2, 0x608c20,23, 0x608c84,2, 0x608ca0,23, 0x608d04,2, 0x608d20,23, 0x608d84,2, 0x608da0,23, 0x608e04,2, 0x608e20,23, 0x608e84,2, 0x608ea0,23, 0x608f04,2, 0x608f20,23, 0x608f84,2, 0x608fa0,23, 0x609004,2, 0x609020,23, 0x609084,2, 0x6090a0,23, 0x609104,2, 0x609120,23, 0x609184,2, 0x6091a0,23, 0x609204,2, 0x609220,23, 0x609284,2, 0x6092a0,23, 0x609304,2, 0x609320,23, 0x609384,2, 0x6093a0,23, 0x609404,2, 0x609420,23, 0x609484,2, 0x6094a0,23, 0x609504,2, 0x609520,23, 0x609584,2, 0x6095a0,23, 0x609604,2, 0x609620,23, 0x609684,2, 0x6096a0,23, 0x609704,2, 0x609720,23, 0x609784,2, 0x6097a0,23, 0x609804,2, 0x609820,23, 0x609884,2, 0x6098a0,23, 0x609904,2, 0x609920,23, 0x609984,2, 0x6099a0,23, 0x609a04,2, 0x609a20,23, 0x609a84,2, 0x609aa0,23, 0x609b04,2, 0x609b20,23, 0x609b84,2, 0x609ba0,23, 0x609c04,2, 0x609c20,23, 0x609c84,2, 0x609ca0,23, 0x609d04,2, 0x609d20,23, 0x609d84,2, 0x609da0,23, 0x609e04,2, 0x609e20,23, 0x609e84,2, 0x609ea0,23, 0x609f04,2, 0x609f20,23, 0x609f84,2, 0x609fa0,23, 0x60a004,2, 0x60a020,23, 0x60a084,2, 0x60a0a0,23, 0x60a104,2, 0x60a120,23, 0x60a184,2, 0x60a1a0,23, 0x60a204,2, 0x60a220,23, 0x60a284,2, 0x60a2a0,23, 0x60a304,2, 0x60a320,23, 0x60a384,2, 0x60a3a0,23, 0x60a404,2, 0x60a420,23, 0x60a484,2, 0x60a4a0,23, 0x60a504,2, 0x60a520,23, 0x60a584,2, 0x60a5a0,23, 0x60a600,24, 0x60a664,7, 0x60a800,14, 0x60a840,9, 0x60a880,6, 0x60a8a0,1, 0x60a8a8,4, 0x60a904,39, 0x60aa00,33, 0x60aa90,3, 0x60aaa0,3, 0x60ab04,32, 0x60ac04,32, 0x60ad00,6, 0x620000,8, 0x620024,1, 0x620040,4, 0x620060,5, 0x620080,10, 0x620100,8, 0x620124,1, 0x620140,4, 0x620160,5, 0x620180,10, 0x620200,8, 0x620224,1, 0x620240,4, 0x620260,5, 0x620280,10, 0x620300,8, 0x620324,1, 0x620340,4, 0x620360,5, 0x620380,10, 0x620400,8, 0x620424,1, 0x620440,4, 0x620460,5, 0x620480,10, 0x620500,8, 0x620524,1, 0x620540,4, 0x620560,5, 0x620580,10, 0x620600,8, 0x620624,1, 0x620640,4, 0x620660,5, 0x620680,10, 0x620700,8, 0x620724,1, 0x620740,4, 0x620760,5, 0x620780,10, 0x620800,8, 0x620824,1, 0x620840,4, 0x620860,5, 0x620880,10, 0x620900,8, 0x620924,1, 0x620940,4, 0x620960,5, 0x620980,10, 0x620a00,8, 0x620a24,1, 0x620a40,4, 0x620a60,5, 0x620a80,10, 0x620b00,8, 0x620b24,1, 0x620b40,4, 0x620b60,5, 0x620b80,10, 0x620c00,8, 0x620c24,1, 0x620c40,4, 0x620c60,5, 0x620c80,10, 0x620d00,8, 0x620d24,1, 0x620d40,4, 0x620d60,5, 0x620d80,10, 0x620e00,8, 0x620e24,1, 0x620e40,4, 0x620e60,5, 0x620e80,10, 0x620f00,8, 0x620f24,1, 0x620f40,4, 0x620f60,5, 0x620f80,10, 0x621000,8, 0x621024,1, 0x621040,4, 0x621060,5, 0x621080,10, 0x621100,8, 0x621124,1, 0x621140,4, 0x621160,5, 0x621180,10, 0x621200,8, 0x621224,1, 0x621240,4, 0x621260,5, 0x621280,10, 0x621300,8, 0x621324,1, 0x621340,4, 0x621360,5, 0x621380,10, 0x621400,8, 0x621424,1, 0x621440,4, 0x621460,5, 0x621480,10, 0x621500,8, 0x621524,1, 0x621540,4, 0x621560,5, 0x621580,10, 0x621600,8, 0x621624,1, 0x621640,4, 0x621660,5, 0x621680,10, 0x621700,8, 0x621724,1, 0x621740,4, 0x621760,5, 0x621780,10, 0x621800,8, 0x621824,1, 0x621840,4, 0x621860,5, 0x621880,10, 0x621900,8, 0x621924,1, 0x621940,4, 0x621960,5, 0x621980,10, 0x621a00,8, 0x621a24,1, 0x621a40,4, 0x621a60,5, 0x621a80,10, 0x621b00,8, 0x621b24,1, 0x621b40,4, 0x621b60,5, 0x621b80,10, 0x621c00,8, 0x621c24,1, 0x621c40,4, 0x621c60,5, 0x621c80,10, 0x621d00,8, 0x621d24,1, 0x621d40,4, 0x621d60,5, 0x621d80,10, 0x621e00,8, 0x621e24,1, 0x621e40,4, 0x621e60,5, 0x621e80,10, 0x621f00,8, 0x621f24,1, 0x621f40,4, 0x621f60,5, 0x621f80,10, 0x622000,8, 0x622024,1, 0x622040,4, 0x622060,5, 0x622080,10, 0x622100,8, 0x622124,1, 0x622140,4, 0x622160,5, 0x622180,10, 0x622200,6, 0x622220,3, 0x622240,6, 0x622260,3, 0x622280,6, 0x6222a0,3, 0x6222c0,6, 0x6222e0,3, 0x622300,6, 0x622320,3, 0x622340,6, 0x622360,3, 0x622380,6, 0x6223a0,3, 0x6223c0,6, 0x6223e0,3, 0x622400,6, 0x622420,3, 0x622440,6, 0x622460,3, 0x622480,6, 0x6224a0,3, 0x6224c0,6, 0x6224e0,3, 0x622500,6, 0x622520,3, 0x622540,6, 0x622560,3, 0x622580,6, 0x6225a0,3, 0x6225c0,6, 0x6225e0,3, 0x622600,6, 0x622620,3, 0x622640,6, 0x622660,3, 0x622680,6, 0x6226a0,3, 0x6226c0,6, 0x6226e0,3, 0x622700,6, 0x622720,3, 0x622740,6, 0x622760,3, 0x622780,6, 0x6227a0,3, 0x6227c0,6, 0x6227e0,3, 0x622800,6, 0x622820,3, 0x622840,6, 0x622860,3, 0x622880,6, 0x6228a0,3, 0x6228c0,6, 0x6228e0,3, 0x622900,6, 0x622920,3, 0x622940,6, 0x622960,3, 0x622980,6, 0x6229a0,3, 0x6229c0,6, 0x6229e0,3, 0x622a00,6, 0x622a20,3, 0x622a40,6, 0x622a60,3, 0x622a80,20, 0x622c00,14, 0x622c40,9, 0x622c80,6, 0x622ca0,1, 0x622ca8,4, 0x622d04,54, 0x622e00,4, 0x622f04,34, 0x623000,3, 0x623010,21, 0x623068,6, 0x624000,8, 0x624024,1, 0x624040,4, 0x624060,5, 0x624080,10, 0x624100,8, 0x624124,1, 0x624140,4, 0x624160,5, 0x624180,10, 0x624200,8, 0x624224,1, 0x624240,4, 0x624260,5, 0x624280,10, 0x624300,8, 0x624324,1, 0x624340,4, 0x624360,5, 0x624380,10, 0x624400,8, 0x624424,1, 0x624440,4, 0x624460,5, 0x624480,10, 0x624500,8, 0x624524,1, 0x624540,4, 0x624560,5, 0x624580,10, 0x624600,8, 0x624624,1, 0x624640,4, 0x624660,5, 0x624680,10, 0x624700,8, 0x624724,1, 0x624740,4, 0x624760,5, 0x624780,10, 0x624800,8, 0x624824,1, 0x624840,4, 0x624860,5, 0x624880,10, 0x624900,8, 0x624924,1, 0x624940,4, 0x624960,5, 0x624980,10, 0x624a00,8, 0x624a24,1, 0x624a40,4, 0x624a60,5, 0x624a80,10, 0x624b00,8, 0x624b24,1, 0x624b40,4, 0x624b60,5, 0x624b80,10, 0x624c00,8, 0x624c24,1, 0x624c40,4, 0x624c60,5, 0x624c80,10, 0x624d00,8, 0x624d24,1, 0x624d40,4, 0x624d60,5, 0x624d80,10, 0x624e00,8, 0x624e24,1, 0x624e40,4, 0x624e60,5, 0x624e80,10, 0x624f00,8, 0x624f24,1, 0x624f40,4, 0x624f60,5, 0x624f80,10, 0x625000,8, 0x625024,1, 0x625040,4, 0x625060,5, 0x625080,10, 0x625100,8, 0x625124,1, 0x625140,4, 0x625160,5, 0x625180,10, 0x625200,8, 0x625224,1, 0x625240,4, 0x625260,5, 0x625280,10, 0x625300,8, 0x625324,1, 0x625340,4, 0x625360,5, 0x625380,10, 0x625400,8, 0x625424,1, 0x625440,4, 0x625460,5, 0x625480,10, 0x625500,8, 0x625524,1, 0x625540,4, 0x625560,5, 0x625580,10, 0x625600,8, 0x625624,1, 0x625640,4, 0x625660,5, 0x625680,10, 0x625700,8, 0x625724,1, 0x625740,4, 0x625760,5, 0x625780,10, 0x625800,8, 0x625824,1, 0x625840,4, 0x625860,5, 0x625880,10, 0x625900,8, 0x625924,1, 0x625940,4, 0x625960,5, 0x625980,10, 0x625a00,8, 0x625a24,1, 0x625a40,4, 0x625a60,5, 0x625a80,10, 0x625b00,8, 0x625b24,1, 0x625b40,4, 0x625b60,5, 0x625b80,10, 0x625c00,8, 0x625c24,1, 0x625c40,4, 0x625c60,5, 0x625c80,10, 0x625d00,8, 0x625d24,1, 0x625d40,4, 0x625d60,5, 0x625d80,10, 0x625e00,8, 0x625e24,1, 0x625e40,4, 0x625e60,5, 0x625e80,10, 0x625f00,8, 0x625f24,1, 0x625f40,4, 0x625f60,5, 0x625f80,10, 0x626000,8, 0x626024,1, 0x626040,4, 0x626060,5, 0x626080,10, 0x626100,8, 0x626124,1, 0x626140,4, 0x626160,5, 0x626180,10, 0x626200,6, 0x626220,3, 0x626240,6, 0x626260,3, 0x626280,6, 0x6262a0,3, 0x6262c0,6, 0x6262e0,3, 0x626300,6, 0x626320,3, 0x626340,6, 0x626360,3, 0x626380,6, 0x6263a0,3, 0x6263c0,6, 0x6263e0,3, 0x626400,6, 0x626420,3, 0x626440,6, 0x626460,3, 0x626480,6, 0x6264a0,3, 0x6264c0,6, 0x6264e0,3, 0x626500,6, 0x626520,3, 0x626540,6, 0x626560,3, 0x626580,6, 0x6265a0,3, 0x6265c0,6, 0x6265e0,3, 0x626600,6, 0x626620,3, 0x626640,6, 0x626660,3, 0x626680,6, 0x6266a0,3, 0x6266c0,6, 0x6266e0,3, 0x626700,6, 0x626720,3, 0x626740,6, 0x626760,3, 0x626780,6, 0x6267a0,3, 0x6267c0,6, 0x6267e0,3, 0x626800,6, 0x626820,3, 0x626840,6, 0x626860,3, 0x626880,6, 0x6268a0,3, 0x6268c0,6, 0x6268e0,3, 0x626900,6, 0x626920,3, 0x626940,6, 0x626960,3, 0x626980,6, 0x6269a0,3, 0x6269c0,6, 0x6269e0,3, 0x626a00,6, 0x626a20,3, 0x626a40,6, 0x626a60,3, 0x626a80,20, 0x626c00,14, 0x626c40,9, 0x626c80,6, 0x626ca0,1, 0x626ca8,4, 0x626d04,54, 0x626e00,4, 0x626f04,34, 0x627000,3, 0x627010,21, 0x627068,6, 0x640000,546, 0x640c00,128, 0x640e04,16, 0x640e50,4, 0x641000,136, 0x641224,17, 0x641270,4, 0x641400,12, 0x641440,2, 0x648000,546, 0x648c00,128, 0x648e04,16, 0x648e50,4, 0x649000,136, 0x649224,17, 0x649270,4, 0x649400,12, 0x649440,2, 0x660000,4, 0x660040,12, 0x660080,3, 0x660090,3, 0x6600a0,1, 0x6600c0,5, 0x660100,4, 0x660140,12, 0x660180,3, 0x660190,3, 0x6601a0,1, 0x6601c0,5, 0x660200,4, 0x660240,12, 0x660280,3, 0x660290,3, 0x6602a0,1, 0x660300,4, 0x660340,12, 0x660380,3, 0x660390,3, 0x6603a0,1, 0x6603c0,5, 0x660400,4, 0x660440,12, 0x660480,3, 0x660490,3, 0x6604a0,1, 0x660500,4, 0x660540,12, 0x660580,3, 0x660590,3, 0x6605a0,1, 0x6605c0,5, 0x660600,4, 0x660640,12, 0x660680,3, 0x660690,3, 0x6606a0,1, 0x660700,4, 0x660740,12, 0x660780,3, 0x660790,3, 0x6607a0,1, 0x6607c0,5, 0x660800,4, 0x660840,12, 0x660880,3, 0x660890,3, 0x6608a0,1, 0x660900,4, 0x660940,12, 0x660980,3, 0x660990,3, 0x6609a0,1, 0x6609c0,5, 0x660a00,4, 0x660a40,12, 0x660a80,3, 0x660a90,3, 0x660aa0,1, 0x660b00,4, 0x660b40,12, 0x660b80,3, 0x660b90,3, 0x660ba0,1, 0x660bc0,5, 0x660c00,4, 0x660c40,12, 0x660c80,3, 0x660c90,3, 0x660ca0,1, 0x660d00,4, 0x660d40,12, 0x660d80,3, 0x660d90,3, 0x660da0,1, 0x660dc0,5, 0x660e00,4, 0x660e40,12, 0x660e80,3, 0x660e90,3, 0x660ea0,1, 0x660f00,4, 0x660f40,12, 0x660f80,3, 0x660f90,3, 0x660fa0,1, 0x660fc0,5, 0x661000,4, 0x661040,12, 0x661080,3, 0x661090,3, 0x6610a0,1, 0x661100,4, 0x661140,12, 0x661180,3, 0x661190,3, 0x6611a0,1, 0x6611c0,5, 0x661200,4, 0x661240,12, 0x661280,3, 0x661290,3, 0x6612a0,1, 0x661300,4, 0x661340,12, 0x661380,3, 0x661390,3, 0x6613a0,1, 0x6613c0,5, 0x661400,4, 0x661440,12, 0x661480,3, 0x661490,3, 0x6614a0,1, 0x661500,4, 0x661540,12, 0x661580,3, 0x661590,3, 0x6615a0,1, 0x6615c0,5, 0x661600,4, 0x661640,12, 0x661680,3, 0x661690,3, 0x6616a0,1, 0x661700,4, 0x661740,12, 0x661780,3, 0x661790,3, 0x6617a0,1, 0x6617c0,5, 0x661800,4, 0x661840,12, 0x661880,3, 0x661890,3, 0x6618a0,1, 0x661900,4, 0x661940,12, 0x661980,3, 0x661990,3, 0x6619a0,1, 0x6619c0,5, 0x661a00,4, 0x661a40,12, 0x661a80,3, 0x661a90,3, 0x661aa0,1, 0x661b00,4, 0x661b40,12, 0x661b80,3, 0x661b90,3, 0x661ba0,1, 0x661bc0,5, 0x661c00,4, 0x661c40,12, 0x661c80,3, 0x661c90,3, 0x661ca0,1, 0x661d00,4, 0x661d40,12, 0x661d80,3, 0x661d90,3, 0x661da0,1, 0x661dc0,5, 0x661e00,4, 0x661e40,12, 0x661e80,3, 0x661e90,3, 0x661ea0,1, 0x661f00,4, 0x661f40,12, 0x661f80,3, 0x661f90,3, 0x661fa0,1, 0x661fc0,5, 0x662000,4, 0x662040,12, 0x662080,3, 0x662090,3, 0x6620a0,1, 0x662100,4, 0x662140,12, 0x662180,3, 0x662190,3, 0x6621a0,1, 0x6621c0,5, 0x662200,4, 0x662240,12, 0x662280,3, 0x662290,3, 0x6622a0,1, 0x662300,4, 0x662340,12, 0x662380,3, 0x662390,3, 0x6623a0,1, 0x6623c0,5, 0x662400,4, 0x662440,12, 0x662480,3, 0x662490,3, 0x6624a0,1, 0x662500,4, 0x662540,12, 0x662580,3, 0x662590,3, 0x6625a0,1, 0x6625c0,5, 0x662600,4, 0x662640,12, 0x662680,3, 0x662690,3, 0x6626a0,1, 0x662700,4, 0x662740,12, 0x662780,3, 0x662790,3, 0x6627a0,1, 0x6627c0,5, 0x662800,4, 0x662840,12, 0x662880,3, 0x662890,3, 0x6628a0,1, 0x662900,4, 0x662940,12, 0x662980,3, 0x662990,3, 0x6629a0,1, 0x6629c0,5, 0x662a00,4, 0x662a40,12, 0x662a80,3, 0x662a90,3, 0x662aa0,1, 0x662b00,4, 0x662b40,12, 0x662b80,3, 0x662b90,3, 0x662ba0,1, 0x662bc0,5, 0x662c00,4, 0x662c40,12, 0x662c80,3, 0x662c90,3, 0x662ca0,1, 0x662d00,4, 0x662d40,12, 0x662d80,3, 0x662d90,3, 0x662da0,1, 0x662dc0,5, 0x662e00,4, 0x662e40,12, 0x662e80,3, 0x662e90,3, 0x662ea0,1, 0x662f00,4, 0x662f40,12, 0x662f80,3, 0x662f90,3, 0x662fa0,1, 0x662fc0,5, 0x663000,4, 0x663040,12, 0x663080,3, 0x663090,3, 0x6630a0,1, 0x663100,4, 0x663140,12, 0x663180,3, 0x663190,3, 0x6631a0,1, 0x6631c0,5, 0x663200,4, 0x663240,12, 0x663280,3, 0x663290,3, 0x6632a0,1, 0x663300,4, 0x663340,12, 0x663380,3, 0x663390,3, 0x6633a0,1, 0x6633c0,5, 0x663400,4, 0x663440,12, 0x663480,3, 0x663490,3, 0x6634a0,1, 0x663500,4, 0x663540,12, 0x663580,3, 0x663590,3, 0x6635a0,1, 0x6635c0,5, 0x663600,4, 0x663640,12, 0x663680,3, 0x663690,3, 0x6636a0,1, 0x663700,4, 0x663740,12, 0x663780,3, 0x663790,3, 0x6637a0,1, 0x6637c0,5, 0x663800,4, 0x663840,12, 0x663880,3, 0x663890,3, 0x6638a0,1, 0x663900,4, 0x663940,12, 0x663980,3, 0x663990,3, 0x6639a0,1, 0x6639c0,5, 0x663a00,4, 0x663a40,12, 0x663a80,3, 0x663a90,3, 0x663aa0,1, 0x663b00,4, 0x663b40,12, 0x663b80,3, 0x663b90,3, 0x663ba0,1, 0x663bc0,5, 0x663c00,4, 0x663c40,12, 0x663c80,3, 0x663c90,3, 0x663ca0,1, 0x663d00,4, 0x663d40,12, 0x663d80,3, 0x663d90,3, 0x663da0,1, 0x663dc0,5, 0x663e00,4, 0x663e40,12, 0x663e80,3, 0x663e90,3, 0x663ea0,1, 0x663f00,4, 0x663f40,12, 0x663f80,3, 0x663f90,3, 0x663fa0,1, 0x663fc0,5, 0x664000,4, 0x664040,12, 0x664080,3, 0x664090,3, 0x6640a0,1, 0x664100,4, 0x664140,12, 0x664180,3, 0x664190,3, 0x6641a0,1, 0x6641c0,5, 0x664200,1, 0x664208,13, 0x664240,1, 0x664248,13, 0x664280,1, 0x664288,13, 0x6642c0,1, 0x6642c8,13, 0x664300,1, 0x664308,13, 0x664340,1, 0x664348,13, 0x664380,1, 0x664388,13, 0x6643c0,1, 0x6643c8,13, 0x664400,1, 0x664408,13, 0x664440,1, 0x664448,13, 0x664480,1, 0x664488,13, 0x6644c0,1, 0x6644c8,13, 0x664500,1, 0x664508,13, 0x664540,1, 0x664548,13, 0x664580,1, 0x664588,13, 0x6645c0,1, 0x6645c8,13, 0x664600,1, 0x664608,13, 0x664640,1, 0x664648,13, 0x664680,1, 0x664688,13, 0x6646c0,1, 0x6646c8,13, 0x664700,1, 0x664708,13, 0x664740,1, 0x664748,13, 0x664780,1, 0x664788,13, 0x6647c0,1, 0x6647c8,13, 0x664800,1, 0x664808,13, 0x664840,1, 0x664848,13, 0x664880,1, 0x664888,13, 0x6648c0,1, 0x6648c8,13, 0x664900,1, 0x664908,13, 0x664940,1, 0x664948,13, 0x664980,1, 0x664988,13, 0x6649c0,1, 0x6649c8,13, 0x664a00,1, 0x664a08,13, 0x664a40,1, 0x664a48,13, 0x664a80,1, 0x664a88,13, 0x664ac0,1, 0x664ac8,13, 0x664b00,1, 0x664b08,13, 0x664b40,1, 0x664b48,13, 0x664b80,1, 0x664b88,13, 0x664bc0,1, 0x664bc8,13, 0x664c00,1, 0x664c08,13, 0x664c40,1, 0x664c48,13, 0x664c80,1, 0x664c88,13, 0x664cc0,1, 0x664cc8,13, 0x664d00,1, 0x664d08,13, 0x664d40,1, 0x664d48,13, 0x664d80,1, 0x664d88,13, 0x664dc0,1, 0x664dc8,13, 0x664e00,1, 0x664e08,13, 0x664e40,1, 0x664e48,13, 0x664e80,1, 0x664e88,13, 0x664ec0,1, 0x664ec8,13, 0x664f00,1, 0x664f08,13, 0x664f40,1, 0x664f48,13, 0x664f80,1, 0x664f88,13, 0x664fc0,1, 0x664fc8,13, 0x665000,1, 0x665008,13, 0x665040,1, 0x665048,13, 0x665080,1, 0x665088,13, 0x6650c0,1, 0x6650c8,13, 0x665100,1, 0x665108,13, 0x665140,1, 0x665148,13, 0x665180,1, 0x665188,13, 0x6651c0,1, 0x6651c8,13, 0x665200,1, 0x665208,13, 0x665240,1, 0x665248,13, 0x665280,7, 0x665400,26, 0x665480,4, 0x6654c0,25, 0x665540,6, 0x665560,1, 0x665568,2, 0x665574,11, 0x6655a4,17, 0x665600,1, 0x665800,256, 0x665c04,32, 0x665c90,4, 0x666000,16, 0x666044,2, 0x666050,4, 0x666080,16, 0x6660c4,2, 0x6660d0,4, 0x666800,256, 0x666c04,32, 0x666c90,4, 0x667000,256, 0x667404,32, 0x667490,4, 0x667800,44, 0x667900,12, 0x667940,3, 0x667950,5, 0x680000,142, 0x680400,76, 0x680600,134, 0x680a00,92, 0x680c00,4, 0x700000,4, 0x700014,15, 0x700080,4, 0x700094,15, 0x700100,13, 0x700140,13, 0x700180,2, 0x700200,29, 0x700280,29, 0x700300,1, 0x700400,44, 0x700500,1, 0x700508,43, 0x700600,3, 0x700684,1, 0x7006b8,22, 0x700720,5, 0x700740,2, 0x700780,10, 0x7007c0,10, 0x700800,8, 0x701000,4, 0x701014,15, 0x701080,4, 0x701094,15, 0x701100,13, 0x701140,13, 0x701180,2, 0x701200,29, 0x701280,29, 0x701300,1, 0x701400,44, 0x701500,1, 0x701508,43, 0x701600,3, 0x701684,1, 0x7016b8,22, 0x701720,5, 0x701740,2, 0x701780,10, 0x7017c0,10, 0x701800,8, 0x702000,4, 0x702014,15, 0x702080,4, 0x702094,15, 0x702100,13, 0x702140,13, 0x702180,2, 0x702200,29, 0x702280,29, 0x702300,1, 0x702400,44, 0x702500,1, 0x702508,43, 0x702600,3, 0x702684,1, 0x7026b8,22, 0x702720,5, 0x702740,2, 0x702780,10, 0x7027c0,10, 0x702800,8, 0x703000,4, 0x703014,15, 0x703080,4, 0x703094,15, 0x703100,13, 0x703140,13, 0x703180,2, 0x703200,29, 0x703280,29, 0x703300,1, 0x703400,44, 0x703500,1, 0x703508,43, 0x703600,3, 0x703684,1, 0x7036b8,22, 0x703720,5, 0x703740,2, 0x703780,10, 0x7037c0,10, 0x703800,8, 0x704000,4, 0x704014,15, 0x704080,4, 0x704094,15, 0x704100,13, 0x704140,13, 0x704180,2, 0x704200,29, 0x704280,29, 0x704300,1, 0x704400,44, 0x704500,1, 0x704508,43, 0x704600,3, 0x704684,1, 0x7046b8,22, 0x704720,5, 0x704740,2, 0x704780,10, 0x7047c0,10, 0x704800,8, 0x705000,4, 0x705014,15, 0x705080,4, 0x705094,15, 0x705100,13, 0x705140,13, 0x705180,2, 0x705200,29, 0x705280,29, 0x705300,1, 0x705400,44, 0x705500,1, 0x705508,43, 0x705600,3, 0x705684,1, 0x7056b8,22, 0x705720,5, 0x705740,2, 0x705780,10, 0x7057c0,10, 0x705800,8, 0x706000,4, 0x706014,15, 0x706080,4, 0x706094,15, 0x706100,13, 0x706140,13, 0x706180,2, 0x706200,29, 0x706280,29, 0x706300,1, 0x706400,44, 0x706500,1, 0x706508,43, 0x706600,3, 0x706684,1, 0x7066b8,22, 0x706720,5, 0x706740,2, 0x706780,10, 0x7067c0,10, 0x706800,8, 0x707000,4, 0x707014,15, 0x707080,4, 0x707094,15, 0x707100,13, 0x707140,13, 0x707180,2, 0x707200,29, 0x707280,29, 0x707300,1, 0x707400,44, 0x707500,1, 0x707508,43, 0x707600,3, 0x707684,1, 0x7076b8,22, 0x707720,5, 0x707740,2, 0x707780,10, 0x7077c0,10, 0x707800,8, 0x708000,9, 0x708104,1, 0x708130,41, 0x708200,9, 0x708304,1, 0x708330,41, 0x708400,9, 0x708504,1, 0x708530,41, 0x708600,9, 0x708704,1, 0x708730,41, 0x708800,9, 0x708904,1, 0x708930,41, 0x708a00,9, 0x708b04,1, 0x708b30,41, 0x708c00,9, 0x708d04,1, 0x708d30,41, 0x708e00,9, 0x708f04,1, 0x708f30,41, 0x709000,29, 0x709078,32, 0x709200,81, 0x709400,81, 0x709600,81, 0x709800,19, 0x70a000,7, 0x70a020,3, 0x70a040,7, 0x70a060,3, 0x70a080,7, 0x70a0a0,3, 0x70a0c0,7, 0x70a0e0,3, 0x70a100,7, 0x70a120,3, 0x70a140,7, 0x70a160,3, 0x70a180,7, 0x70a1a0,3, 0x70a1c0,7, 0x70a1e0,3, 0x710000,54, 0x710100,238, 0x7104c0,6, 0x7104e0,6, 0x710500,6, 0x710520,6, 0x710540,6, 0x710560,6, 0x710580,6, 0x7105c0,131, 0x7107d0,14, 0x710810,10, 0x710840,3, 0x710850,33, 0x711000,1, 0x711008,10, 0x711200,117, 0x711400,5, 0x711420,5, 0x711800,1, 0x711884,15, 0x711900,2, 0x711c00,26, 0x711c80,4, 0x711cc0,25, 0x711d40,6, 0x711d60,1, 0x711d68,2, 0x711d74,3, 0x711e00,8, 0x711e24,38, 0x712000,32, 0x712084,1, 0x712090,4, 0x712100,3, 0x712110,3, 0x712120,3, 0x712130,3, 0x712140,3, 0x712150,3, 0x712160,3, 0x712170,3, 0x712180,10, 0x7121b0,3, 0x7121c0,1, 0x712200,16, 0x712244,1, 0x712250,4, 0x712280,16, 0x7122c4,1, 0x7122d0,4, 0x712300,16, 0x712344,1, 0x712350,4, 0x712380,16, 0x7123c4,1, 0x7123d0,4, 0x712400,16, 0x712444,1, 0x712450,4, 0x712480,16, 0x7124c4,1, 0x7124d0,4, 0x712500,16, 0x712544,1, 0x712550,4, 0x712580,16, 0x7125c4,1, 0x7125d0,4, 0x712600,4, 0x712640,13, 0x712680,4, 0x7126c0,13, 0x712700,4, 0x712740,13, 0x712780,4, 0x7127c0,13, 0x712800,4, 0x712840,13, 0x712880,4, 0x7128c0,13, 0x712900,4, 0x712940,13, 0x712980,4, 0x7129c0,13, 0x712a00,4, 0x712a40,11, 0x712a80,4, 0x712ac0,11, 0x712b00,4, 0x712b40,11, 0x712b80,4, 0x712bc0,11, 0x712c00,4, 0x712c40,11, 0x712c80,4, 0x712cc0,11, 0x712d00,4, 0x712d40,11, 0x712d80,4, 0x712dc0,11, 0x712e00,4, 0x712e20,6, 0x712e40,4, 0x712e60,6, 0x712e80,4, 0x712ea0,6, 0x712ec0,4, 0x712ee0,6, 0x712f00,4, 0x712f20,6, 0x712f40,4, 0x712f60,6, 0x712f80,4, 0x712fa0,6, 0x712fc0,4, 0x712fe0,6, 0x713000,20, 0x720000,4, 0x720014,15, 0x720080,4, 0x720094,15, 0x720100,13, 0x720140,13, 0x720180,2, 0x720200,29, 0x720280,29, 0x720300,1, 0x720400,44, 0x720500,1, 0x720508,43, 0x720600,3, 0x720684,1, 0x7206b8,22, 0x720720,5, 0x720740,2, 0x720780,10, 0x7207c0,10, 0x720800,8, 0x721000,4, 0x721014,15, 0x721080,4, 0x721094,15, 0x721100,13, 0x721140,13, 0x721180,2, 0x721200,29, 0x721280,29, 0x721300,1, 0x721400,44, 0x721500,1, 0x721508,43, 0x721600,3, 0x721684,1, 0x7216b8,22, 0x721720,5, 0x721740,2, 0x721780,10, 0x7217c0,10, 0x721800,8, 0x722000,4, 0x722014,15, 0x722080,4, 0x722094,15, 0x722100,13, 0x722140,13, 0x722180,2, 0x722200,29, 0x722280,29, 0x722300,1, 0x722400,44, 0x722500,1, 0x722508,43, 0x722600,3, 0x722684,1, 0x7226b8,22, 0x722720,5, 0x722740,2, 0x722780,10, 0x7227c0,10, 0x722800,8, 0x723000,4, 0x723014,15, 0x723080,4, 0x723094,15, 0x723100,13, 0x723140,13, 0x723180,2, 0x723200,29, 0x723280,29, 0x723300,1, 0x723400,44, 0x723500,1, 0x723508,43, 0x723600,3, 0x723684,1, 0x7236b8,22, 0x723720,5, 0x723740,2, 0x723780,10, 0x7237c0,10, 0x723800,8, 0x724000,4, 0x724014,15, 0x724080,4, 0x724094,15, 0x724100,13, 0x724140,13, 0x724180,2, 0x724200,29, 0x724280,29, 0x724300,1, 0x724400,44, 0x724500,1, 0x724508,43, 0x724600,3, 0x724684,1, 0x7246b8,22, 0x724720,5, 0x724740,2, 0x724780,10, 0x7247c0,10, 0x724800,8, 0x725000,4, 0x725014,15, 0x725080,4, 0x725094,15, 0x725100,13, 0x725140,13, 0x725180,2, 0x725200,29, 0x725280,29, 0x725300,1, 0x725400,44, 0x725500,1, 0x725508,43, 0x725600,3, 0x725684,1, 0x7256b8,22, 0x725720,5, 0x725740,2, 0x725780,10, 0x7257c0,10, 0x725800,8, 0x726000,4, 0x726014,15, 0x726080,4, 0x726094,15, 0x726100,13, 0x726140,13, 0x726180,2, 0x726200,29, 0x726280,29, 0x726300,1, 0x726400,44, 0x726500,1, 0x726508,43, 0x726600,3, 0x726684,1, 0x7266b8,22, 0x726720,5, 0x726740,2, 0x726780,10, 0x7267c0,10, 0x726800,8, 0x727000,4, 0x727014,15, 0x727080,4, 0x727094,15, 0x727100,13, 0x727140,13, 0x727180,2, 0x727200,29, 0x727280,29, 0x727300,1, 0x727400,44, 0x727500,1, 0x727508,43, 0x727600,3, 0x727684,1, 0x7276b8,22, 0x727720,5, 0x727740,2, 0x727780,10, 0x7277c0,10, 0x727800,8, 0x728000,9, 0x728104,1, 0x728130,41, 0x728200,9, 0x728304,1, 0x728330,41, 0x728400,9, 0x728504,1, 0x728530,41, 0x728600,9, 0x728704,1, 0x728730,41, 0x728800,9, 0x728904,1, 0x728930,41, 0x728a00,9, 0x728b04,1, 0x728b30,41, 0x728c00,9, 0x728d04,1, 0x728d30,41, 0x728e00,9, 0x728f04,1, 0x728f30,41, 0x729000,29, 0x729078,32, 0x729200,81, 0x729400,81, 0x729600,81, 0x729800,19, 0x72a000,7, 0x72a020,3, 0x72a040,7, 0x72a060,3, 0x72a080,7, 0x72a0a0,3, 0x72a0c0,7, 0x72a0e0,3, 0x72a100,7, 0x72a120,3, 0x72a140,7, 0x72a160,3, 0x72a180,7, 0x72a1a0,3, 0x72a1c0,7, 0x72a1e0,3, 0x730000,54, 0x730100,238, 0x7304c0,6, 0x7304e0,6, 0x730500,6, 0x730520,6, 0x730540,6, 0x730560,6, 0x730580,6, 0x7305c0,131, 0x7307d0,14, 0x730810,10, 0x730840,3, 0x730850,33, 0x731000,1, 0x731008,10, 0x731200,117, 0x731400,5, 0x731420,5, 0x731800,1, 0x731884,15, 0x731900,2, 0x731c00,26, 0x731c80,4, 0x731cc0,25, 0x731d40,6, 0x731d60,1, 0x731d68,2, 0x731d74,3, 0x731e00,8, 0x731e24,38, 0x732000,32, 0x732084,1, 0x732090,4, 0x732100,3, 0x732110,3, 0x732120,3, 0x732130,3, 0x732140,3, 0x732150,3, 0x732160,3, 0x732170,3, 0x732180,10, 0x7321b0,3, 0x7321c0,1, 0x732200,16, 0x732244,1, 0x732250,4, 0x732280,16, 0x7322c4,1, 0x7322d0,4, 0x732300,16, 0x732344,1, 0x732350,4, 0x732380,16, 0x7323c4,1, 0x7323d0,4, 0x732400,16, 0x732444,1, 0x732450,4, 0x732480,16, 0x7324c4,1, 0x7324d0,4, 0x732500,16, 0x732544,1, 0x732550,4, 0x732580,16, 0x7325c4,1, 0x7325d0,4, 0x732600,4, 0x732640,13, 0x732680,4, 0x7326c0,13, 0x732700,4, 0x732740,13, 0x732780,4, 0x7327c0,13, 0x732800,4, 0x732840,13, 0x732880,4, 0x7328c0,13, 0x732900,4, 0x732940,13, 0x732980,4, 0x7329c0,13, 0x732a00,4, 0x732a40,11, 0x732a80,4, 0x732ac0,11, 0x732b00,4, 0x732b40,11, 0x732b80,4, 0x732bc0,11, 0x732c00,4, 0x732c40,11, 0x732c80,4, 0x732cc0,11, 0x732d00,4, 0x732d40,11, 0x732d80,4, 0x732dc0,11, 0x732e00,4, 0x732e20,6, 0x732e40,4, 0x732e60,6, 0x732e80,4, 0x732ea0,6, 0x732ec0,4, 0x732ee0,6, 0x732f00,4, 0x732f20,6, 0x732f40,4, 0x732f60,6, 0x732f80,4, 0x732fa0,6, 0x732fc0,4, 0x732fe0,6, 0x733000,20, 0x740000,4, 0x740014,15, 0x740080,4, 0x740094,15, 0x740100,13, 0x740140,13, 0x740180,2, 0x740200,29, 0x740280,29, 0x740300,1, 0x740400,44, 0x740500,1, 0x740508,43, 0x740600,3, 0x740684,1, 0x7406b8,22, 0x740720,5, 0x740740,2, 0x740780,10, 0x7407c0,10, 0x740800,8, 0x741000,4, 0x741014,15, 0x741080,4, 0x741094,15, 0x741100,13, 0x741140,13, 0x741180,2, 0x741200,29, 0x741280,29, 0x741300,1, 0x741400,44, 0x741500,1, 0x741508,43, 0x741600,3, 0x741684,1, 0x7416b8,22, 0x741720,5, 0x741740,2, 0x741780,10, 0x7417c0,10, 0x741800,8, 0x742000,4, 0x742014,15, 0x742080,4, 0x742094,15, 0x742100,13, 0x742140,13, 0x742180,2, 0x742200,29, 0x742280,29, 0x742300,1, 0x742400,44, 0x742500,1, 0x742508,43, 0x742600,3, 0x742684,1, 0x7426b8,22, 0x742720,5, 0x742740,2, 0x742780,10, 0x7427c0,10, 0x742800,8, 0x743000,4, 0x743014,15, 0x743080,4, 0x743094,15, 0x743100,13, 0x743140,13, 0x743180,2, 0x743200,29, 0x743280,29, 0x743300,1, 0x743400,44, 0x743500,1, 0x743508,43, 0x743600,3, 0x743684,1, 0x7436b8,22, 0x743720,5, 0x743740,2, 0x743780,10, 0x7437c0,10, 0x743800,8, 0x744000,4, 0x744014,15, 0x744080,4, 0x744094,15, 0x744100,13, 0x744140,13, 0x744180,2, 0x744200,29, 0x744280,29, 0x744300,1, 0x744400,44, 0x744500,1, 0x744508,43, 0x744600,3, 0x744684,1, 0x7446b8,22, 0x744720,5, 0x744740,2, 0x744780,10, 0x7447c0,10, 0x744800,8, 0x745000,4, 0x745014,15, 0x745080,4, 0x745094,15, 0x745100,13, 0x745140,13, 0x745180,2, 0x745200,29, 0x745280,29, 0x745300,1, 0x745400,44, 0x745500,1, 0x745508,43, 0x745600,3, 0x745684,1, 0x7456b8,22, 0x745720,5, 0x745740,2, 0x745780,10, 0x7457c0,10, 0x745800,8, 0x746000,4, 0x746014,15, 0x746080,4, 0x746094,15, 0x746100,13, 0x746140,13, 0x746180,2, 0x746200,29, 0x746280,29, 0x746300,1, 0x746400,44, 0x746500,1, 0x746508,43, 0x746600,3, 0x746684,1, 0x7466b8,22, 0x746720,5, 0x746740,2, 0x746780,10, 0x7467c0,10, 0x746800,8, 0x747000,4, 0x747014,15, 0x747080,4, 0x747094,15, 0x747100,13, 0x747140,13, 0x747180,2, 0x747200,29, 0x747280,29, 0x747300,1, 0x747400,44, 0x747500,1, 0x747508,43, 0x747600,3, 0x747684,1, 0x7476b8,22, 0x747720,5, 0x747740,2, 0x747780,10, 0x7477c0,10, 0x747800,8, 0x748000,9, 0x748104,1, 0x748130,41, 0x748200,9, 0x748304,1, 0x748330,41, 0x748400,9, 0x748504,1, 0x748530,41, 0x748600,9, 0x748704,1, 0x748730,41, 0x748800,9, 0x748904,1, 0x748930,41, 0x748a00,9, 0x748b04,1, 0x748b30,41, 0x748c00,9, 0x748d04,1, 0x748d30,41, 0x748e00,9, 0x748f04,1, 0x748f30,41, 0x749000,29, 0x749078,32, 0x749200,81, 0x749400,81, 0x749600,81, 0x749800,19, 0x74a000,7, 0x74a020,3, 0x74a040,7, 0x74a060,3, 0x74a080,7, 0x74a0a0,3, 0x74a0c0,7, 0x74a0e0,3, 0x74a100,7, 0x74a120,3, 0x74a140,7, 0x74a160,3, 0x74a180,7, 0x74a1a0,3, 0x74a1c0,7, 0x74a1e0,3, 0x750000,54, 0x750100,238, 0x7504c0,6, 0x7504e0,6, 0x750500,6, 0x750520,6, 0x750540,6, 0x750560,6, 0x750580,6, 0x7505c0,131, 0x7507d0,14, 0x750810,10, 0x750840,3, 0x750850,33, 0x751000,1, 0x751008,10, 0x751200,117, 0x751400,5, 0x751420,5, 0x751800,1, 0x751884,15, 0x751900,2, 0x751c00,26, 0x751c80,4, 0x751cc0,25, 0x751d40,6, 0x751d60,1, 0x751d68,2, 0x751d74,3, 0x751e00,8, 0x751e24,38, 0x752000,32, 0x752084,1, 0x752090,4, 0x752100,3, 0x752110,3, 0x752120,3, 0x752130,3, 0x752140,3, 0x752150,3, 0x752160,3, 0x752170,3, 0x752180,10, 0x7521b0,3, 0x7521c0,1, 0x752200,16, 0x752244,1, 0x752250,4, 0x752280,16, 0x7522c4,1, 0x7522d0,4, 0x752300,16, 0x752344,1, 0x752350,4, 0x752380,16, 0x7523c4,1, 0x7523d0,4, 0x752400,16, 0x752444,1, 0x752450,4, 0x752480,16, 0x7524c4,1, 0x7524d0,4, 0x752500,16, 0x752544,1, 0x752550,4, 0x752580,16, 0x7525c4,1, 0x7525d0,4, 0x752600,4, 0x752640,13, 0x752680,4, 0x7526c0,13, 0x752700,4, 0x752740,13, 0x752780,4, 0x7527c0,13, 0x752800,4, 0x752840,13, 0x752880,4, 0x7528c0,13, 0x752900,4, 0x752940,13, 0x752980,4, 0x7529c0,13, 0x752a00,4, 0x752a40,11, 0x752a80,4, 0x752ac0,11, 0x752b00,4, 0x752b40,11, 0x752b80,4, 0x752bc0,11, 0x752c00,4, 0x752c40,11, 0x752c80,4, 0x752cc0,11, 0x752d00,4, 0x752d40,11, 0x752d80,4, 0x752dc0,11, 0x752e00,4, 0x752e20,6, 0x752e40,4, 0x752e60,6, 0x752e80,4, 0x752ea0,6, 0x752ec0,4, 0x752ee0,6, 0x752f00,4, 0x752f20,6, 0x752f40,4, 0x752f60,6, 0x752f80,4, 0x752fa0,6, 0x752fc0,4, 0x752fe0,6, 0x753000,20, 0x760000,4, 0x760014,15, 0x760080,4, 0x760094,15, 0x760100,13, 0x760140,13, 0x760180,2, 0x760200,29, 0x760280,29, 0x760300,1, 0x760400,44, 0x760500,1, 0x760508,43, 0x760600,3, 0x760684,1, 0x7606b8,22, 0x760720,5, 0x760740,2, 0x760780,10, 0x7607c0,10, 0x760800,8, 0x761000,4, 0x761014,15, 0x761080,4, 0x761094,15, 0x761100,13, 0x761140,13, 0x761180,2, 0x761200,29, 0x761280,29, 0x761300,1, 0x761400,44, 0x761500,1, 0x761508,43, 0x761600,3, 0x761684,1, 0x7616b8,22, 0x761720,5, 0x761740,2, 0x761780,10, 0x7617c0,10, 0x761800,8, 0x762000,4, 0x762014,15, 0x762080,4, 0x762094,15, 0x762100,13, 0x762140,13, 0x762180,2, 0x762200,29, 0x762280,29, 0x762300,1, 0x762400,44, 0x762500,1, 0x762508,43, 0x762600,3, 0x762684,1, 0x7626b8,22, 0x762720,5, 0x762740,2, 0x762780,10, 0x7627c0,10, 0x762800,8, 0x763000,4, 0x763014,15, 0x763080,4, 0x763094,15, 0x763100,13, 0x763140,13, 0x763180,2, 0x763200,29, 0x763280,29, 0x763300,1, 0x763400,44, 0x763500,1, 0x763508,43, 0x763600,3, 0x763684,1, 0x7636b8,22, 0x763720,5, 0x763740,2, 0x763780,10, 0x7637c0,10, 0x763800,8, 0x764000,4, 0x764014,15, 0x764080,4, 0x764094,15, 0x764100,13, 0x764140,13, 0x764180,2, 0x764200,29, 0x764280,29, 0x764300,1, 0x764400,44, 0x764500,1, 0x764508,43, 0x764600,3, 0x764684,1, 0x7646b8,22, 0x764720,5, 0x764740,2, 0x764780,10, 0x7647c0,10, 0x764800,8, 0x765000,4, 0x765014,15, 0x765080,4, 0x765094,15, 0x765100,13, 0x765140,13, 0x765180,2, 0x765200,29, 0x765280,29, 0x765300,1, 0x765400,44, 0x765500,1, 0x765508,43, 0x765600,3, 0x765684,1, 0x7656b8,22, 0x765720,5, 0x765740,2, 0x765780,10, 0x7657c0,10, 0x765800,8, 0x766000,4, 0x766014,15, 0x766080,4, 0x766094,15, 0x766100,13, 0x766140,13, 0x766180,2, 0x766200,29, 0x766280,29, 0x766300,1, 0x766400,44, 0x766500,1, 0x766508,43, 0x766600,3, 0x766684,1, 0x7666b8,22, 0x766720,5, 0x766740,2, 0x766780,10, 0x7667c0,10, 0x766800,8, 0x767000,4, 0x767014,15, 0x767080,4, 0x767094,15, 0x767100,13, 0x767140,13, 0x767180,2, 0x767200,29, 0x767280,29, 0x767300,1, 0x767400,44, 0x767500,1, 0x767508,43, 0x767600,3, 0x767684,1, 0x7676b8,22, 0x767720,5, 0x767740,2, 0x767780,10, 0x7677c0,10, 0x767800,8, 0x768000,9, 0x768104,1, 0x768130,41, 0x768200,9, 0x768304,1, 0x768330,41, 0x768400,9, 0x768504,1, 0x768530,41, 0x768600,9, 0x768704,1, 0x768730,41, 0x768800,9, 0x768904,1, 0x768930,41, 0x768a00,9, 0x768b04,1, 0x768b30,41, 0x768c00,9, 0x768d04,1, 0x768d30,41, 0x768e00,9, 0x768f04,1, 0x768f30,41, 0x769000,29, 0x769078,32, 0x769200,81, 0x769400,81, 0x769600,81, 0x769800,19, 0x76a000,7, 0x76a020,3, 0x76a040,7, 0x76a060,3, 0x76a080,7, 0x76a0a0,3, 0x76a0c0,7, 0x76a0e0,3, 0x76a100,7, 0x76a120,3, 0x76a140,7, 0x76a160,3, 0x76a180,7, 0x76a1a0,3, 0x76a1c0,7, 0x76a1e0,3, 0x770000,54, 0x770100,238, 0x7704c0,6, 0x7704e0,6, 0x770500,6, 0x770520,6, 0x770540,6, 0x770560,6, 0x770580,6, 0x7705c0,131, 0x7707d0,14, 0x770810,10, 0x770840,3, 0x770850,33, 0x771000,1, 0x771008,10, 0x771200,117, 0x771400,5, 0x771420,5, 0x771800,1, 0x771884,15, 0x771900,2, 0x771c00,26, 0x771c80,4, 0x771cc0,25, 0x771d40,6, 0x771d60,1, 0x771d68,2, 0x771d74,3, 0x771e00,8, 0x771e24,38, 0x772000,32, 0x772084,1, 0x772090,4, 0x772100,3, 0x772110,3, 0x772120,3, 0x772130,3, 0x772140,3, 0x772150,3, 0x772160,3, 0x772170,3, 0x772180,10, 0x7721b0,3, 0x7721c0,1, 0x772200,16, 0x772244,1, 0x772250,4, 0x772280,16, 0x7722c4,1, 0x7722d0,4, 0x772300,16, 0x772344,1, 0x772350,4, 0x772380,16, 0x7723c4,1, 0x7723d0,4, 0x772400,16, 0x772444,1, 0x772450,4, 0x772480,16, 0x7724c4,1, 0x7724d0,4, 0x772500,16, 0x772544,1, 0x772550,4, 0x772580,16, 0x7725c4,1, 0x7725d0,4, 0x772600,4, 0x772640,13, 0x772680,4, 0x7726c0,13, 0x772700,4, 0x772740,13, 0x772780,4, 0x7727c0,13, 0x772800,4, 0x772840,13, 0x772880,4, 0x7728c0,13, 0x772900,4, 0x772940,13, 0x772980,4, 0x7729c0,13, 0x772a00,4, 0x772a40,11, 0x772a80,4, 0x772ac0,11, 0x772b00,4, 0x772b40,11, 0x772b80,4, 0x772bc0,11, 0x772c00,4, 0x772c40,11, 0x772c80,4, 0x772cc0,11, 0x772d00,4, 0x772d40,11, 0x772d80,4, 0x772dc0,11, 0x772e00,4, 0x772e20,6, 0x772e40,4, 0x772e60,6, 0x772e80,4, 0x772ea0,6, 0x772ec0,4, 0x772ee0,6, 0x772f00,4, 0x772f20,6, 0x772f40,4, 0x772f60,6, 0x772f80,4, 0x772fa0,6, 0x772fc0,4, 0x772fe0,6, 0x773000,20, 0x780000,4, 0x780014,15, 0x780080,4, 0x780094,15, 0x780100,13, 0x780140,13, 0x780180,2, 0x780200,29, 0x780280,29, 0x780300,1, 0x780400,44, 0x780500,1, 0x780508,43, 0x780600,3, 0x780684,1, 0x7806b8,22, 0x780720,5, 0x780740,2, 0x780780,10, 0x7807c0,10, 0x780800,8, 0x781000,4, 0x781014,15, 0x781080,4, 0x781094,15, 0x781100,13, 0x781140,13, 0x781180,2, 0x781200,29, 0x781280,29, 0x781300,1, 0x781400,44, 0x781500,1, 0x781508,43, 0x781600,3, 0x781684,1, 0x7816b8,22, 0x781720,5, 0x781740,2, 0x781780,10, 0x7817c0,10, 0x781800,8, 0x782000,4, 0x782014,15, 0x782080,4, 0x782094,15, 0x782100,13, 0x782140,13, 0x782180,2, 0x782200,29, 0x782280,29, 0x782300,1, 0x782400,44, 0x782500,1, 0x782508,43, 0x782600,3, 0x782684,1, 0x7826b8,22, 0x782720,5, 0x782740,2, 0x782780,10, 0x7827c0,10, 0x782800,8, 0x783000,4, 0x783014,15, 0x783080,4, 0x783094,15, 0x783100,13, 0x783140,13, 0x783180,2, 0x783200,29, 0x783280,29, 0x783300,1, 0x783400,44, 0x783500,1, 0x783508,43, 0x783600,3, 0x783684,1, 0x7836b8,22, 0x783720,5, 0x783740,2, 0x783780,10, 0x7837c0,10, 0x783800,8, 0x784000,4, 0x784014,15, 0x784080,4, 0x784094,15, 0x784100,13, 0x784140,13, 0x784180,2, 0x784200,29, 0x784280,29, 0x784300,1, 0x784400,44, 0x784500,1, 0x784508,43, 0x784600,3, 0x784684,1, 0x7846b8,22, 0x784720,5, 0x784740,2, 0x784780,10, 0x7847c0,10, 0x784800,8, 0x785000,4, 0x785014,15, 0x785080,4, 0x785094,15, 0x785100,13, 0x785140,13, 0x785180,2, 0x785200,29, 0x785280,29, 0x785300,1, 0x785400,44, 0x785500,1, 0x785508,43, 0x785600,3, 0x785684,1, 0x7856b8,22, 0x785720,5, 0x785740,2, 0x785780,10, 0x7857c0,10, 0x785800,8, 0x786000,4, 0x786014,15, 0x786080,4, 0x786094,15, 0x786100,13, 0x786140,13, 0x786180,2, 0x786200,29, 0x786280,29, 0x786300,1, 0x786400,44, 0x786500,1, 0x786508,43, 0x786600,3, 0x786684,1, 0x7866b8,22, 0x786720,5, 0x786740,2, 0x786780,10, 0x7867c0,10, 0x786800,8, 0x787000,4, 0x787014,15, 0x787080,4, 0x787094,15, 0x787100,13, 0x787140,13, 0x787180,2, 0x787200,29, 0x787280,29, 0x787300,1, 0x787400,44, 0x787500,1, 0x787508,43, 0x787600,3, 0x787684,1, 0x7876b8,22, 0x787720,5, 0x787740,2, 0x787780,10, 0x7877c0,10, 0x787800,8, 0x788000,9, 0x788104,1, 0x788130,41, 0x788200,9, 0x788304,1, 0x788330,41, 0x788400,9, 0x788504,1, 0x788530,41, 0x788600,9, 0x788704,1, 0x788730,41, 0x788800,9, 0x788904,1, 0x788930,41, 0x788a00,9, 0x788b04,1, 0x788b30,41, 0x788c00,9, 0x788d04,1, 0x788d30,41, 0x788e00,9, 0x788f04,1, 0x788f30,41, 0x789000,29, 0x789078,32, 0x789200,81, 0x789400,81, 0x789600,81, 0x789800,19, 0x78a000,7, 0x78a020,3, 0x78a040,7, 0x78a060,3, 0x78a080,7, 0x78a0a0,3, 0x78a0c0,7, 0x78a0e0,3, 0x78a100,7, 0x78a120,3, 0x78a140,7, 0x78a160,3, 0x78a180,7, 0x78a1a0,3, 0x78a1c0,7, 0x78a1e0,3, 0x790000,54, 0x790100,238, 0x7904c0,6, 0x7904e0,6, 0x790500,6, 0x790520,6, 0x790540,6, 0x790560,6, 0x790580,6, 0x7905c0,131, 0x7907d0,14, 0x790810,10, 0x790840,3, 0x790850,33, 0x791000,1, 0x791008,10, 0x791200,117, 0x791400,5, 0x791420,5, 0x791800,1, 0x791884,15, 0x791900,2, 0x791c00,26, 0x791c80,4, 0x791cc0,25, 0x791d40,6, 0x791d60,1, 0x791d68,2, 0x791d74,3, 0x791e00,8, 0x791e24,38, 0x792000,32, 0x792084,1, 0x792090,4, 0x792100,3, 0x792110,3, 0x792120,3, 0x792130,3, 0x792140,3, 0x792150,3, 0x792160,3, 0x792170,3, 0x792180,10, 0x7921b0,3, 0x7921c0,1, 0x792200,16, 0x792244,1, 0x792250,4, 0x792280,16, 0x7922c4,1, 0x7922d0,4, 0x792300,16, 0x792344,1, 0x792350,4, 0x792380,16, 0x7923c4,1, 0x7923d0,4, 0x792400,16, 0x792444,1, 0x792450,4, 0x792480,16, 0x7924c4,1, 0x7924d0,4, 0x792500,16, 0x792544,1, 0x792550,4, 0x792580,16, 0x7925c4,1, 0x7925d0,4, 0x792600,4, 0x792640,13, 0x792680,4, 0x7926c0,13, 0x792700,4, 0x792740,13, 0x792780,4, 0x7927c0,13, 0x792800,4, 0x792840,13, 0x792880,4, 0x7928c0,13, 0x792900,4, 0x792940,13, 0x792980,4, 0x7929c0,13, 0x792a00,4, 0x792a40,11, 0x792a80,4, 0x792ac0,11, 0x792b00,4, 0x792b40,11, 0x792b80,4, 0x792bc0,11, 0x792c00,4, 0x792c40,11, 0x792c80,4, 0x792cc0,11, 0x792d00,4, 0x792d40,11, 0x792d80,4, 0x792dc0,11, 0x792e00,4, 0x792e20,6, 0x792e40,4, 0x792e60,6, 0x792e80,4, 0x792ea0,6, 0x792ec0,4, 0x792ee0,6, 0x792f00,4, 0x792f20,6, 0x792f40,4, 0x792f60,6, 0x792f80,4, 0x792fa0,6, 0x792fc0,4, 0x792fe0,6, 0x793000,20, 0x7a0000,4, 0x7a0014,15, 0x7a0080,4, 0x7a0094,15, 0x7a0100,13, 0x7a0140,13, 0x7a0180,2, 0x7a0200,29, 0x7a0280,29, 0x7a0300,1, 0x7a0400,44, 0x7a0500,1, 0x7a0508,43, 0x7a0600,3, 0x7a0684,1, 0x7a06b8,22, 0x7a0720,5, 0x7a0740,2, 0x7a0780,10, 0x7a07c0,10, 0x7a0800,8, 0x7a1000,4, 0x7a1014,15, 0x7a1080,4, 0x7a1094,15, 0x7a1100,13, 0x7a1140,13, 0x7a1180,2, 0x7a1200,29, 0x7a1280,29, 0x7a1300,1, 0x7a1400,44, 0x7a1500,1, 0x7a1508,43, 0x7a1600,3, 0x7a1684,1, 0x7a16b8,22, 0x7a1720,5, 0x7a1740,2, 0x7a1780,10, 0x7a17c0,10, 0x7a1800,8, 0x7a2000,4, 0x7a2014,15, 0x7a2080,4, 0x7a2094,15, 0x7a2100,13, 0x7a2140,13, 0x7a2180,2, 0x7a2200,29, 0x7a2280,29, 0x7a2300,1, 0x7a2400,44, 0x7a2500,1, 0x7a2508,43, 0x7a2600,3, 0x7a2684,1, 0x7a26b8,22, 0x7a2720,5, 0x7a2740,2, 0x7a2780,10, 0x7a27c0,10, 0x7a2800,8, 0x7a3000,4, 0x7a3014,15, 0x7a3080,4, 0x7a3094,15, 0x7a3100,13, 0x7a3140,13, 0x7a3180,2, 0x7a3200,29, 0x7a3280,29, 0x7a3300,1, 0x7a3400,44, 0x7a3500,1, 0x7a3508,43, 0x7a3600,3, 0x7a3684,1, 0x7a36b8,22, 0x7a3720,5, 0x7a3740,2, 0x7a3780,10, 0x7a37c0,10, 0x7a3800,8, 0x7a4000,4, 0x7a4014,15, 0x7a4080,4, 0x7a4094,15, 0x7a4100,13, 0x7a4140,13, 0x7a4180,2, 0x7a4200,29, 0x7a4280,29, 0x7a4300,1, 0x7a4400,44, 0x7a4500,1, 0x7a4508,43, 0x7a4600,3, 0x7a4684,1, 0x7a46b8,22, 0x7a4720,5, 0x7a4740,2, 0x7a4780,10, 0x7a47c0,10, 0x7a4800,8, 0x7a5000,4, 0x7a5014,15, 0x7a5080,4, 0x7a5094,15, 0x7a5100,13, 0x7a5140,13, 0x7a5180,2, 0x7a5200,29, 0x7a5280,29, 0x7a5300,1, 0x7a5400,44, 0x7a5500,1, 0x7a5508,43, 0x7a5600,3, 0x7a5684,1, 0x7a56b8,22, 0x7a5720,5, 0x7a5740,2, 0x7a5780,10, 0x7a57c0,10, 0x7a5800,8, 0x7a6000,4, 0x7a6014,15, 0x7a6080,4, 0x7a6094,15, 0x7a6100,13, 0x7a6140,13, 0x7a6180,2, 0x7a6200,29, 0x7a6280,29, 0x7a6300,1, 0x7a6400,44, 0x7a6500,1, 0x7a6508,43, 0x7a6600,3, 0x7a6684,1, 0x7a66b8,22, 0x7a6720,5, 0x7a6740,2, 0x7a6780,10, 0x7a67c0,10, 0x7a6800,8, 0x7a7000,4, 0x7a7014,15, 0x7a7080,4, 0x7a7094,15, 0x7a7100,13, 0x7a7140,13, 0x7a7180,2, 0x7a7200,29, 0x7a7280,29, 0x7a7300,1, 0x7a7400,44, 0x7a7500,1, 0x7a7508,43, 0x7a7600,3, 0x7a7684,1, 0x7a76b8,22, 0x7a7720,5, 0x7a7740,2, 0x7a7780,10, 0x7a77c0,10, 0x7a7800,8, 0x7a8000,9, 0x7a8104,1, 0x7a8130,41, 0x7a8200,9, 0x7a8304,1, 0x7a8330,41, 0x7a8400,9, 0x7a8504,1, 0x7a8530,41, 0x7a8600,9, 0x7a8704,1, 0x7a8730,41, 0x7a8800,9, 0x7a8904,1, 0x7a8930,41, 0x7a8a00,9, 0x7a8b04,1, 0x7a8b30,41, 0x7a8c00,9, 0x7a8d04,1, 0x7a8d30,41, 0x7a8e00,9, 0x7a8f04,1, 0x7a8f30,41, 0x7a9000,29, 0x7a9078,32, 0x7a9200,81, 0x7a9400,81, 0x7a9600,81, 0x7a9800,19, 0x7aa000,7, 0x7aa020,3, 0x7aa040,7, 0x7aa060,3, 0x7aa080,7, 0x7aa0a0,3, 0x7aa0c0,7, 0x7aa0e0,3, 0x7aa100,7, 0x7aa120,3, 0x7aa140,7, 0x7aa160,3, 0x7aa180,7, 0x7aa1a0,3, 0x7aa1c0,7, 0x7aa1e0,3, 0x7b0000,54, 0x7b0100,238, 0x7b04c0,6, 0x7b04e0,6, 0x7b0500,6, 0x7b0520,6, 0x7b0540,6, 0x7b0560,6, 0x7b0580,6, 0x7b05c0,131, 0x7b07d0,14, 0x7b0810,10, 0x7b0840,3, 0x7b0850,33, 0x7b1000,1, 0x7b1008,10, 0x7b1200,117, 0x7b1400,5, 0x7b1420,5, 0x7b1800,1, 0x7b1884,15, 0x7b1900,2, 0x7b1c00,26, 0x7b1c80,4, 0x7b1cc0,25, 0x7b1d40,6, 0x7b1d60,1, 0x7b1d68,2, 0x7b1d74,3, 0x7b1e00,8, 0x7b1e24,38, 0x7b2000,32, 0x7b2084,1, 0x7b2090,4, 0x7b2100,3, 0x7b2110,3, 0x7b2120,3, 0x7b2130,3, 0x7b2140,3, 0x7b2150,3, 0x7b2160,3, 0x7b2170,3, 0x7b2180,10, 0x7b21b0,3, 0x7b21c0,1, 0x7b2200,16, 0x7b2244,1, 0x7b2250,4, 0x7b2280,16, 0x7b22c4,1, 0x7b22d0,4, 0x7b2300,16, 0x7b2344,1, 0x7b2350,4, 0x7b2380,16, 0x7b23c4,1, 0x7b23d0,4, 0x7b2400,16, 0x7b2444,1, 0x7b2450,4, 0x7b2480,16, 0x7b24c4,1, 0x7b24d0,4, 0x7b2500,16, 0x7b2544,1, 0x7b2550,4, 0x7b2580,16, 0x7b25c4,1, 0x7b25d0,4, 0x7b2600,4, 0x7b2640,13, 0x7b2680,4, 0x7b26c0,13, 0x7b2700,4, 0x7b2740,13, 0x7b2780,4, 0x7b27c0,13, 0x7b2800,4, 0x7b2840,13, 0x7b2880,4, 0x7b28c0,13, 0x7b2900,4, 0x7b2940,13, 0x7b2980,4, 0x7b29c0,13, 0x7b2a00,4, 0x7b2a40,11, 0x7b2a80,4, 0x7b2ac0,11, 0x7b2b00,4, 0x7b2b40,11, 0x7b2b80,4, 0x7b2bc0,11, 0x7b2c00,4, 0x7b2c40,11, 0x7b2c80,4, 0x7b2cc0,11, 0x7b2d00,4, 0x7b2d40,11, 0x7b2d80,4, 0x7b2dc0,11, 0x7b2e00,4, 0x7b2e20,6, 0x7b2e40,4, 0x7b2e60,6, 0x7b2e80,4, 0x7b2ea0,6, 0x7b2ec0,4, 0x7b2ee0,6, 0x7b2f00,4, 0x7b2f20,6, 0x7b2f40,4, 0x7b2f60,6, 0x7b2f80,4, 0x7b2fa0,6, 0x7b2fc0,4, 0x7b2fe0,6, 0x7b3000,20, 0x7c0000,4, 0x7c0014,15, 0x7c0080,4, 0x7c0094,15, 0x7c0100,13, 0x7c0140,13, 0x7c0180,2, 0x7c0200,29, 0x7c0280,29, 0x7c0300,1, 0x7c0400,44, 0x7c0500,1, 0x7c0508,43, 0x7c0600,3, 0x7c0684,1, 0x7c06b8,22, 0x7c0720,5, 0x7c0740,2, 0x7c0780,10, 0x7c07c0,10, 0x7c0800,8, 0x7c1000,4, 0x7c1014,15, 0x7c1080,4, 0x7c1094,15, 0x7c1100,13, 0x7c1140,13, 0x7c1180,2, 0x7c1200,29, 0x7c1280,29, 0x7c1300,1, 0x7c1400,44, 0x7c1500,1, 0x7c1508,43, 0x7c1600,3, 0x7c1684,1, 0x7c16b8,22, 0x7c1720,5, 0x7c1740,2, 0x7c1780,10, 0x7c17c0,10, 0x7c1800,8, 0x7c2000,4, 0x7c2014,15, 0x7c2080,4, 0x7c2094,15, 0x7c2100,13, 0x7c2140,13, 0x7c2180,2, 0x7c2200,29, 0x7c2280,29, 0x7c2300,1, 0x7c2400,44, 0x7c2500,1, 0x7c2508,43, 0x7c2600,3, 0x7c2684,1, 0x7c26b8,22, 0x7c2720,5, 0x7c2740,2, 0x7c2780,10, 0x7c27c0,10, 0x7c2800,8, 0x7c3000,4, 0x7c3014,15, 0x7c3080,4, 0x7c3094,15, 0x7c3100,13, 0x7c3140,13, 0x7c3180,2, 0x7c3200,29, 0x7c3280,29, 0x7c3300,1, 0x7c3400,44, 0x7c3500,1, 0x7c3508,43, 0x7c3600,3, 0x7c3684,1, 0x7c36b8,22, 0x7c3720,5, 0x7c3740,2, 0x7c3780,10, 0x7c37c0,10, 0x7c3800,8, 0x7c4000,4, 0x7c4014,15, 0x7c4080,4, 0x7c4094,15, 0x7c4100,13, 0x7c4140,13, 0x7c4180,2, 0x7c4200,29, 0x7c4280,29, 0x7c4300,1, 0x7c4400,44, 0x7c4500,1, 0x7c4508,43, 0x7c4600,3, 0x7c4684,1, 0x7c46b8,22, 0x7c4720,5, 0x7c4740,2, 0x7c4780,10, 0x7c47c0,10, 0x7c4800,8, 0x7c5000,4, 0x7c5014,15, 0x7c5080,4, 0x7c5094,15, 0x7c5100,13, 0x7c5140,13, 0x7c5180,2, 0x7c5200,29, 0x7c5280,29, 0x7c5300,1, 0x7c5400,44, 0x7c5500,1, 0x7c5508,43, 0x7c5600,3, 0x7c5684,1, 0x7c56b8,22, 0x7c5720,5, 0x7c5740,2, 0x7c5780,10, 0x7c57c0,10, 0x7c5800,8, 0x7c6000,4, 0x7c6014,15, 0x7c6080,4, 0x7c6094,15, 0x7c6100,13, 0x7c6140,13, 0x7c6180,2, 0x7c6200,29, 0x7c6280,29, 0x7c6300,1, 0x7c6400,44, 0x7c6500,1, 0x7c6508,43, 0x7c6600,3, 0x7c6684,1, 0x7c66b8,22, 0x7c6720,5, 0x7c6740,2, 0x7c6780,10, 0x7c67c0,10, 0x7c6800,8, 0x7c7000,4, 0x7c7014,15, 0x7c7080,4, 0x7c7094,15, 0x7c7100,13, 0x7c7140,13, 0x7c7180,2, 0x7c7200,29, 0x7c7280,29, 0x7c7300,1, 0x7c7400,44, 0x7c7500,1, 0x7c7508,43, 0x7c7600,3, 0x7c7684,1, 0x7c76b8,22, 0x7c7720,5, 0x7c7740,2, 0x7c7780,10, 0x7c77c0,10, 0x7c7800,8, 0x7c8000,9, 0x7c8104,1, 0x7c8130,41, 0x7c8200,9, 0x7c8304,1, 0x7c8330,41, 0x7c8400,9, 0x7c8504,1, 0x7c8530,41, 0x7c8600,9, 0x7c8704,1, 0x7c8730,41, 0x7c8800,9, 0x7c8904,1, 0x7c8930,41, 0x7c8a00,9, 0x7c8b04,1, 0x7c8b30,41, 0x7c8c00,9, 0x7c8d04,1, 0x7c8d30,41, 0x7c8e00,9, 0x7c8f04,1, 0x7c8f30,41, 0x7c9000,29, 0x7c9078,32, 0x7c9200,81, 0x7c9400,81, 0x7c9600,81, 0x7c9800,19, 0x7ca000,7, 0x7ca020,3, 0x7ca040,7, 0x7ca060,3, 0x7ca080,7, 0x7ca0a0,3, 0x7ca0c0,7, 0x7ca0e0,3, 0x7ca100,7, 0x7ca120,3, 0x7ca140,7, 0x7ca160,3, 0x7ca180,7, 0x7ca1a0,3, 0x7ca1c0,7, 0x7ca1e0,3, 0x7d0000,54, 0x7d0100,238, 0x7d04c0,6, 0x7d04e0,6, 0x7d0500,6, 0x7d0520,6, 0x7d0540,6, 0x7d0560,6, 0x7d0580,6, 0x7d05c0,131, 0x7d07d0,14, 0x7d0810,10, 0x7d0840,3, 0x7d0850,33, 0x7d1000,1, 0x7d1008,10, 0x7d1200,117, 0x7d1400,5, 0x7d1420,5, 0x7d1800,1, 0x7d1884,15, 0x7d1900,2, 0x7d1c00,26, 0x7d1c80,4, 0x7d1cc0,25, 0x7d1d40,6, 0x7d1d60,1, 0x7d1d68,2, 0x7d1d74,3, 0x7d1e00,8, 0x7d1e24,38, 0x7d2000,32, 0x7d2084,1, 0x7d2090,4, 0x7d2100,3, 0x7d2110,3, 0x7d2120,3, 0x7d2130,3, 0x7d2140,3, 0x7d2150,3, 0x7d2160,3, 0x7d2170,3, 0x7d2180,10, 0x7d21b0,3, 0x7d21c0,1, 0x7d2200,16, 0x7d2244,1, 0x7d2250,4, 0x7d2280,16, 0x7d22c4,1, 0x7d22d0,4, 0x7d2300,16, 0x7d2344,1, 0x7d2350,4, 0x7d2380,16, 0x7d23c4,1, 0x7d23d0,4, 0x7d2400,16, 0x7d2444,1, 0x7d2450,4, 0x7d2480,16, 0x7d24c4,1, 0x7d24d0,4, 0x7d2500,16, 0x7d2544,1, 0x7d2550,4, 0x7d2580,16, 0x7d25c4,1, 0x7d25d0,4, 0x7d2600,4, 0x7d2640,13, 0x7d2680,4, 0x7d26c0,13, 0x7d2700,4, 0x7d2740,13, 0x7d2780,4, 0x7d27c0,13, 0x7d2800,4, 0x7d2840,13, 0x7d2880,4, 0x7d28c0,13, 0x7d2900,4, 0x7d2940,13, 0x7d2980,4, 0x7d29c0,13, 0x7d2a00,4, 0x7d2a40,11, 0x7d2a80,4, 0x7d2ac0,11, 0x7d2b00,4, 0x7d2b40,11, 0x7d2b80,4, 0x7d2bc0,11, 0x7d2c00,4, 0x7d2c40,11, 0x7d2c80,4, 0x7d2cc0,11, 0x7d2d00,4, 0x7d2d40,11, 0x7d2d80,4, 0x7d2dc0,11, 0x7d2e00,4, 0x7d2e20,6, 0x7d2e40,4, 0x7d2e60,6, 0x7d2e80,4, 0x7d2ea0,6, 0x7d2ec0,4, 0x7d2ee0,6, 0x7d2f00,4, 0x7d2f20,6, 0x7d2f40,4, 0x7d2f60,6, 0x7d2f80,4, 0x7d2fa0,6, 0x7d2fc0,4, 0x7d2fe0,6, 0x7d3000,20, 0x7e0000,4, 0x7e0014,15, 0x7e0080,4, 0x7e0094,15, 0x7e0100,13, 0x7e0140,13, 0x7e0180,2, 0x7e0200,29, 0x7e0280,29, 0x7e0300,1, 0x7e0400,44, 0x7e0500,1, 0x7e0508,43, 0x7e0600,3, 0x7e0684,1, 0x7e06b8,22, 0x7e0720,5, 0x7e0740,2, 0x7e0780,10, 0x7e07c0,10, 0x7e0800,8, 0x7e1000,4, 0x7e1014,15, 0x7e1080,4, 0x7e1094,15, 0x7e1100,13, 0x7e1140,13, 0x7e1180,2, 0x7e1200,29, 0x7e1280,29, 0x7e1300,1, 0x7e1400,44, 0x7e1500,1, 0x7e1508,43, 0x7e1600,3, 0x7e1684,1, 0x7e16b8,22, 0x7e1720,5, 0x7e1740,2, 0x7e1780,10, 0x7e17c0,10, 0x7e1800,8, 0x7e2000,4, 0x7e2014,15, 0x7e2080,4, 0x7e2094,15, 0x7e2100,13, 0x7e2140,13, 0x7e2180,2, 0x7e2200,29, 0x7e2280,29, 0x7e2300,1, 0x7e2400,44, 0x7e2500,1, 0x7e2508,43, 0x7e2600,3, 0x7e2684,1, 0x7e26b8,22, 0x7e2720,5, 0x7e2740,2, 0x7e2780,10, 0x7e27c0,10, 0x7e2800,8, 0x7e3000,4, 0x7e3014,15, 0x7e3080,4, 0x7e3094,15, 0x7e3100,13, 0x7e3140,13, 0x7e3180,2, 0x7e3200,29, 0x7e3280,29, 0x7e3300,1, 0x7e3400,44, 0x7e3500,1, 0x7e3508,43, 0x7e3600,3, 0x7e3684,1, 0x7e36b8,22, 0x7e3720,5, 0x7e3740,2, 0x7e3780,10, 0x7e37c0,10, 0x7e3800,8, 0x7e4000,4, 0x7e4014,15, 0x7e4080,4, 0x7e4094,15, 0x7e4100,13, 0x7e4140,13, 0x7e4180,2, 0x7e4200,29, 0x7e4280,29, 0x7e4300,1, 0x7e4400,44, 0x7e4500,1, 0x7e4508,43, 0x7e4600,3, 0x7e4684,1, 0x7e46b8,22, 0x7e4720,5, 0x7e4740,2, 0x7e4780,10, 0x7e47c0,10, 0x7e4800,8, 0x7e5000,4, 0x7e5014,15, 0x7e5080,4, 0x7e5094,15, 0x7e5100,13, 0x7e5140,13, 0x7e5180,2, 0x7e5200,29, 0x7e5280,29, 0x7e5300,1, 0x7e5400,44, 0x7e5500,1, 0x7e5508,43, 0x7e5600,3, 0x7e5684,1, 0x7e56b8,22, 0x7e5720,5, 0x7e5740,2, 0x7e5780,10, 0x7e57c0,10, 0x7e5800,8, 0x7e6000,4, 0x7e6014,15, 0x7e6080,4, 0x7e6094,15, 0x7e6100,13, 0x7e6140,13, 0x7e6180,2, 0x7e6200,29, 0x7e6280,29, 0x7e6300,1, 0x7e6400,44, 0x7e6500,1, 0x7e6508,43, 0x7e6600,3, 0x7e6684,1, 0x7e66b8,22, 0x7e6720,5, 0x7e6740,2, 0x7e6780,10, 0x7e67c0,10, 0x7e6800,8, 0x7e7000,4, 0x7e7014,15, 0x7e7080,4, 0x7e7094,15, 0x7e7100,13, 0x7e7140,13, 0x7e7180,2, 0x7e7200,29, 0x7e7280,29, 0x7e7300,1, 0x7e7400,44, 0x7e7500,1, 0x7e7508,43, 0x7e7600,3, 0x7e7684,1, 0x7e76b8,22, 0x7e7720,5, 0x7e7740,2, 0x7e7780,10, 0x7e77c0,10, 0x7e7800,8, 0x7e8000,9, 0x7e8104,1, 0x7e8130,41, 0x7e8200,9, 0x7e8304,1, 0x7e8330,41, 0x7e8400,9, 0x7e8504,1, 0x7e8530,41, 0x7e8600,9, 0x7e8704,1, 0x7e8730,41, 0x7e8800,9, 0x7e8904,1, 0x7e8930,41, 0x7e8a00,9, 0x7e8b04,1, 0x7e8b30,41, 0x7e8c00,9, 0x7e8d04,1, 0x7e8d30,41, 0x7e8e00,9, 0x7e8f04,1, 0x7e8f30,41, 0x7e9000,29, 0x7e9078,32, 0x7e9200,81, 0x7e9400,81, 0x7e9600,81, 0x7e9800,19, 0x7ea000,7, 0x7ea020,3, 0x7ea040,7, 0x7ea060,3, 0x7ea080,7, 0x7ea0a0,3, 0x7ea0c0,7, 0x7ea0e0,3, 0x7ea100,7, 0x7ea120,3, 0x7ea140,7, 0x7ea160,3, 0x7ea180,7, 0x7ea1a0,3, 0x7ea1c0,7, 0x7ea1e0,3, 0x7f0000,54, 0x7f0100,238, 0x7f04c0,6, 0x7f04e0,6, 0x7f0500,6, 0x7f0520,6, 0x7f0540,6, 0x7f0560,6, 0x7f0580,6, 0x7f05c0,131, 0x7f07d0,14, 0x7f0810,10, 0x7f0840,3, 0x7f0850,33, 0x7f1000,1, 0x7f1008,10, 0x7f1200,117, 0x7f1400,5, 0x7f1420,5, 0x7f1800,1, 0x7f1884,15, 0x7f1900,2, 0x7f1c00,26, 0x7f1c80,4, 0x7f1cc0,25, 0x7f1d40,6, 0x7f1d60,1, 0x7f1d68,2, 0x7f1d74,3, 0x7f1e00,8, 0x7f1e24,38, 0x7f2000,32, 0x7f2084,1, 0x7f2090,4, 0x7f2100,3, 0x7f2110,3, 0x7f2120,3, 0x7f2130,3, 0x7f2140,3, 0x7f2150,3, 0x7f2160,3, 0x7f2170,3, 0x7f2180,10, 0x7f21b0,3, 0x7f21c0,1, 0x7f2200,16, 0x7f2244,1, 0x7f2250,4, 0x7f2280,16, 0x7f22c4,1, 0x7f22d0,4, 0x7f2300,16, 0x7f2344,1, 0x7f2350,4, 0x7f2380,16, 0x7f23c4,1, 0x7f23d0,4, 0x7f2400,16, 0x7f2444,1, 0x7f2450,4, 0x7f2480,16, 0x7f24c4,1, 0x7f24d0,4, 0x7f2500,16, 0x7f2544,1, 0x7f2550,4, 0x7f2580,16, 0x7f25c4,1, 0x7f25d0,4, 0x7f2600,4, 0x7f2640,13, 0x7f2680,4, 0x7f26c0,13, 0x7f2700,4, 0x7f2740,13, 0x7f2780,4, 0x7f27c0,13, 0x7f2800,4, 0x7f2840,13, 0x7f2880,4, 0x7f28c0,13, 0x7f2900,4, 0x7f2940,13, 0x7f2980,4, 0x7f29c0,13, 0x7f2a00,4, 0x7f2a40,11, 0x7f2a80,4, 0x7f2ac0,11, 0x7f2b00,4, 0x7f2b40,11, 0x7f2b80,4, 0x7f2bc0,11, 0x7f2c00,4, 0x7f2c40,11, 0x7f2c80,4, 0x7f2cc0,11, 0x7f2d00,4, 0x7f2d40,11, 0x7f2d80,4, 0x7f2dc0,11, 0x7f2e00,4, 0x7f2e20,6, 0x7f2e40,4, 0x7f2e60,6, 0x7f2e80,4, 0x7f2ea0,6, 0x7f2ec0,4, 0x7f2ee0,6, 0x7f2f00,4, 0x7f2f20,6, 0x7f2f40,4, 0x7f2f60,6, 0x7f2f80,4, 0x7f2fa0,6, 0x7f2fc0,4, 0x7f2fe0,6, 0x7f3000,20, 0x800000,1, 0x800008,32, 0x800800,38, 0x800900,38, 0x800a00,30, 0x800a80,18, 0x800b00,18, 0x800b80,19, 0x800c00,10, 0x800c40,10, 0x800c80,15, 0x801000,38, 0x801100,38, 0x801200,30, 0x801280,18, 0x801300,18, 0x801380,19, 0x801400,10, 0x801440,10, 0x801480,15, 0x801800,38, 0x801900,38, 0x801a00,30, 0x801a80,18, 0x801b00,18, 0x801b80,19, 0x801c00,10, 0x801c40,10, 0x801c80,15, 0x802000,38, 0x802100,38, 0x802200,30, 0x802280,18, 0x802300,18, 0x802380,19, 0x802400,10, 0x802440,10, 0x802480,15, 0x802800,38, 0x802900,38, 0x802a00,30, 0x802a80,18, 0x802b00,18, 0x802b80,19, 0x802c00,10, 0x802c40,10, 0x802c80,15, 0x803000,38, 0x803100,38, 0x803200,30, 0x803280,18, 0x803300,18, 0x803380,19, 0x803400,10, 0x803440,10, 0x803480,15, 0x803800,38, 0x803900,38, 0x803a00,30, 0x803a80,18, 0x803b00,18, 0x803b80,19, 0x803c00,10, 0x803c40,10, 0x803c80,15, 0x804000,38, 0x804100,38, 0x804200,30, 0x804280,18, 0x804300,18, 0x804380,19, 0x804400,10, 0x804440,10, 0x804480,15, 0x804800,3, 0x804814,6, 0x804830,7, 0x804850,3, 0x804860,3, 0x804870,3, 0x804880,9, 0x8048c0,8, 0x804a00,84, 0x804c00,2, 0x804c0c,2, 0x804c20,3, 0x805000,3, 0x805014,6, 0x805030,7, 0x805050,3, 0x805060,3, 0x805070,3, 0x805080,9, 0x8050c0,8, 0x805200,84, 0x805400,2, 0x80540c,2, 0x805420,3, 0x805800,3, 0x805814,6, 0x805830,7, 0x805850,3, 0x805860,3, 0x805870,3, 0x805880,9, 0x8058c0,8, 0x805a00,84, 0x805c00,2, 0x805c0c,2, 0x805c20,3, 0x806000,3, 0x806014,6, 0x806030,7, 0x806050,3, 0x806060,3, 0x806070,3, 0x806080,9, 0x8060c0,8, 0x806200,84, 0x806400,2, 0x80640c,2, 0x806420,3, 0x806800,3, 0x806814,6, 0x806830,7, 0x806850,3, 0x806860,3, 0x806870,3, 0x806880,9, 0x8068c0,8, 0x806a00,84, 0x806c00,2, 0x806c0c,2, 0x806c20,3, 0x807000,3, 0x807014,6, 0x807030,7, 0x807050,3, 0x807060,3, 0x807070,3, 0x807080,9, 0x8070c0,8, 0x807200,84, 0x807400,2, 0x80740c,2, 0x807420,3, 0x807800,3, 0x807814,6, 0x807830,7, 0x807850,3, 0x807860,3, 0x807870,3, 0x807880,9, 0x8078c0,8, 0x807a00,84, 0x807c00,2, 0x807c0c,2, 0x807c20,3, 0x808000,3, 0x808014,6, 0x808030,7, 0x808050,3, 0x808060,3, 0x808070,3, 0x808080,9, 0x8080c0,8, 0x808200,84, 0x808400,2, 0x80840c,2, 0x808420,3, 0x808800,40, 0x810000,9, 0x810040,9, 0x810084,1, 0x81008c,6, 0x8100a8,5, 0x8100c0,21, 0x810200,73, 0x810400,4, 0x810440,29, 0x8104c0,1, 0x810800,9, 0x810840,9, 0x810884,1, 0x81088c,6, 0x8108a8,5, 0x8108c0,21, 0x810a00,73, 0x810c00,4, 0x810c40,29, 0x810cc0,1, 0x811000,9, 0x811040,9, 0x811084,1, 0x81108c,6, 0x8110a8,5, 0x8110c0,21, 0x811200,73, 0x811400,4, 0x811440,29, 0x8114c0,1, 0x811800,9, 0x811840,9, 0x811884,1, 0x81188c,6, 0x8118a8,5, 0x8118c0,21, 0x811a00,73, 0x811c00,4, 0x811c40,29, 0x811cc0,1, 0x812000,9, 0x812040,9, 0x812084,1, 0x81208c,6, 0x8120a8,5, 0x8120c0,21, 0x812200,73, 0x812400,4, 0x812440,29, 0x8124c0,1, 0x812800,9, 0x812840,9, 0x812884,1, 0x81288c,6, 0x8128a8,5, 0x8128c0,21, 0x812a00,73, 0x812c00,4, 0x812c40,29, 0x812cc0,1, 0x813000,9, 0x813040,9, 0x813084,1, 0x81308c,6, 0x8130a8,5, 0x8130c0,21, 0x813200,73, 0x813400,4, 0x813440,29, 0x8134c0,1, 0x813800,9, 0x813840,9, 0x813884,1, 0x81388c,6, 0x8138a8,5, 0x8138c0,21, 0x813a00,73, 0x813c00,4, 0x813c40,29, 0x813cc0,1, 0x814000,6, 0x814024,6, 0x814400,16, 0x814444,1, 0x814450,4, 0x814800,26, 0x814880,4, 0x8148c0,25, 0x814940,6, 0x814960,1, 0x814968,2, 0x814974,3, 0x814a00,8, 0x814a24,50, 0x814c00,4, 0x814c40,15, 0x814c80,4, 0x814cc0,15, 0x814d00,4, 0x814d40,15, 0x814d80,4, 0x814dc0,15, 0x814e00,4, 0x814e40,15, 0x814e80,4, 0x814ec0,15, 0x814f00,4, 0x814f40,15, 0x814f80,4, 0x814fc0,15, 0x815000,32, 0x815084,1, 0x815090,4, 0x815100,3, 0x815110,2, 0x815200,32, 0x815284,1, 0x815290,4, 0x815300,3, 0x815310,2, 0x815400,32, 0x815484,1, 0x815490,4, 0x815500,3, 0x815510,2, 0x815600,32, 0x815684,1, 0x815690,4, 0x815700,3, 0x815710,2, 0x815800,32, 0x815884,1, 0x815890,4, 0x815900,3, 0x815910,2, 0x815a00,32, 0x815a84,1, 0x815a90,4, 0x815b00,3, 0x815b10,2, 0x815c00,32, 0x815c84,1, 0x815c90,4, 0x815d00,3, 0x815d10,2, 0x815e00,32, 0x815e84,1, 0x815e90,4, 0x815f00,3, 0x815f10,7, 0x820000,1, 0x820008,32, 0x820800,38, 0x820900,38, 0x820a00,30, 0x820a80,18, 0x820b00,18, 0x820b80,19, 0x820c00,10, 0x820c40,10, 0x820c80,15, 0x821000,38, 0x821100,38, 0x821200,30, 0x821280,18, 0x821300,18, 0x821380,19, 0x821400,10, 0x821440,10, 0x821480,15, 0x821800,38, 0x821900,38, 0x821a00,30, 0x821a80,18, 0x821b00,18, 0x821b80,19, 0x821c00,10, 0x821c40,10, 0x821c80,15, 0x822000,38, 0x822100,38, 0x822200,30, 0x822280,18, 0x822300,18, 0x822380,19, 0x822400,10, 0x822440,10, 0x822480,15, 0x822800,38, 0x822900,38, 0x822a00,30, 0x822a80,18, 0x822b00,18, 0x822b80,19, 0x822c00,10, 0x822c40,10, 0x822c80,15, 0x823000,38, 0x823100,38, 0x823200,30, 0x823280,18, 0x823300,18, 0x823380,19, 0x823400,10, 0x823440,10, 0x823480,15, 0x823800,38, 0x823900,38, 0x823a00,30, 0x823a80,18, 0x823b00,18, 0x823b80,19, 0x823c00,10, 0x823c40,10, 0x823c80,15, 0x824000,38, 0x824100,38, 0x824200,30, 0x824280,18, 0x824300,18, 0x824380,19, 0x824400,10, 0x824440,10, 0x824480,15, 0x824800,3, 0x824814,6, 0x824830,7, 0x824850,3, 0x824860,3, 0x824870,3, 0x824880,9, 0x8248c0,8, 0x824a00,84, 0x824c00,2, 0x824c0c,2, 0x824c20,3, 0x825000,3, 0x825014,6, 0x825030,7, 0x825050,3, 0x825060,3, 0x825070,3, 0x825080,9, 0x8250c0,8, 0x825200,84, 0x825400,2, 0x82540c,2, 0x825420,3, 0x825800,3, 0x825814,6, 0x825830,7, 0x825850,3, 0x825860,3, 0x825870,3, 0x825880,9, 0x8258c0,8, 0x825a00,84, 0x825c00,2, 0x825c0c,2, 0x825c20,3, 0x826000,3, 0x826014,6, 0x826030,7, 0x826050,3, 0x826060,3, 0x826070,3, 0x826080,9, 0x8260c0,8, 0x826200,84, 0x826400,2, 0x82640c,2, 0x826420,3, 0x826800,3, 0x826814,6, 0x826830,7, 0x826850,3, 0x826860,3, 0x826870,3, 0x826880,9, 0x8268c0,8, 0x826a00,84, 0x826c00,2, 0x826c0c,2, 0x826c20,3, 0x827000,3, 0x827014,6, 0x827030,7, 0x827050,3, 0x827060,3, 0x827070,3, 0x827080,9, 0x8270c0,8, 0x827200,84, 0x827400,2, 0x82740c,2, 0x827420,3, 0x827800,3, 0x827814,6, 0x827830,7, 0x827850,3, 0x827860,3, 0x827870,3, 0x827880,9, 0x8278c0,8, 0x827a00,84, 0x827c00,2, 0x827c0c,2, 0x827c20,3, 0x828000,3, 0x828014,6, 0x828030,7, 0x828050,3, 0x828060,3, 0x828070,3, 0x828080,9, 0x8280c0,8, 0x828200,84, 0x828400,2, 0x82840c,2, 0x828420,3, 0x828800,40, 0x830000,9, 0x830040,9, 0x830084,1, 0x83008c,6, 0x8300a8,5, 0x8300c0,21, 0x830200,73, 0x830400,4, 0x830440,29, 0x8304c0,1, 0x830800,9, 0x830840,9, 0x830884,1, 0x83088c,6, 0x8308a8,5, 0x8308c0,21, 0x830a00,73, 0x830c00,4, 0x830c40,29, 0x830cc0,1, 0x831000,9, 0x831040,9, 0x831084,1, 0x83108c,6, 0x8310a8,5, 0x8310c0,21, 0x831200,73, 0x831400,4, 0x831440,29, 0x8314c0,1, 0x831800,9, 0x831840,9, 0x831884,1, 0x83188c,6, 0x8318a8,5, 0x8318c0,21, 0x831a00,73, 0x831c00,4, 0x831c40,29, 0x831cc0,1, 0x832000,9, 0x832040,9, 0x832084,1, 0x83208c,6, 0x8320a8,5, 0x8320c0,21, 0x832200,73, 0x832400,4, 0x832440,29, 0x8324c0,1, 0x832800,9, 0x832840,9, 0x832884,1, 0x83288c,6, 0x8328a8,5, 0x8328c0,21, 0x832a00,73, 0x832c00,4, 0x832c40,29, 0x832cc0,1, 0x833000,9, 0x833040,9, 0x833084,1, 0x83308c,6, 0x8330a8,5, 0x8330c0,21, 0x833200,73, 0x833400,4, 0x833440,29, 0x8334c0,1, 0x833800,9, 0x833840,9, 0x833884,1, 0x83388c,6, 0x8338a8,5, 0x8338c0,21, 0x833a00,73, 0x833c00,4, 0x833c40,29, 0x833cc0,1, 0x834000,6, 0x834024,6, 0x834400,16, 0x834444,1, 0x834450,4, 0x834800,26, 0x834880,4, 0x8348c0,25, 0x834940,6, 0x834960,1, 0x834968,2, 0x834974,3, 0x834a00,8, 0x834a24,50, 0x834c00,4, 0x834c40,15, 0x834c80,4, 0x834cc0,15, 0x834d00,4, 0x834d40,15, 0x834d80,4, 0x834dc0,15, 0x834e00,4, 0x834e40,15, 0x834e80,4, 0x834ec0,15, 0x834f00,4, 0x834f40,15, 0x834f80,4, 0x834fc0,15, 0x835000,32, 0x835084,1, 0x835090,4, 0x835100,3, 0x835110,2, 0x835200,32, 0x835284,1, 0x835290,4, 0x835300,3, 0x835310,2, 0x835400,32, 0x835484,1, 0x835490,4, 0x835500,3, 0x835510,2, 0x835600,32, 0x835684,1, 0x835690,4, 0x835700,3, 0x835710,2, 0x835800,32, 0x835884,1, 0x835890,4, 0x835900,3, 0x835910,2, 0x835a00,32, 0x835a84,1, 0x835a90,4, 0x835b00,3, 0x835b10,2, 0x835c00,32, 0x835c84,1, 0x835c90,4, 0x835d00,3, 0x835d10,2, 0x835e00,32, 0x835e84,1, 0x835e90,4, 0x835f00,3, 0x835f10,7, 0x840000,1, 0x840008,32, 0x840800,38, 0x840900,38, 0x840a00,30, 0x840a80,18, 0x840b00,18, 0x840b80,19, 0x840c00,10, 0x840c40,10, 0x840c80,15, 0x841000,38, 0x841100,38, 0x841200,30, 0x841280,18, 0x841300,18, 0x841380,19, 0x841400,10, 0x841440,10, 0x841480,15, 0x841800,38, 0x841900,38, 0x841a00,30, 0x841a80,18, 0x841b00,18, 0x841b80,19, 0x841c00,10, 0x841c40,10, 0x841c80,15, 0x842000,38, 0x842100,38, 0x842200,30, 0x842280,18, 0x842300,18, 0x842380,19, 0x842400,10, 0x842440,10, 0x842480,15, 0x842800,38, 0x842900,38, 0x842a00,30, 0x842a80,18, 0x842b00,18, 0x842b80,19, 0x842c00,10, 0x842c40,10, 0x842c80,15, 0x843000,38, 0x843100,38, 0x843200,30, 0x843280,18, 0x843300,18, 0x843380,19, 0x843400,10, 0x843440,10, 0x843480,15, 0x843800,38, 0x843900,38, 0x843a00,30, 0x843a80,18, 0x843b00,18, 0x843b80,19, 0x843c00,10, 0x843c40,10, 0x843c80,15, 0x844000,38, 0x844100,38, 0x844200,30, 0x844280,18, 0x844300,18, 0x844380,19, 0x844400,10, 0x844440,10, 0x844480,15, 0x844800,3, 0x844814,6, 0x844830,7, 0x844850,3, 0x844860,3, 0x844870,3, 0x844880,9, 0x8448c0,8, 0x844a00,84, 0x844c00,2, 0x844c0c,2, 0x844c20,3, 0x845000,3, 0x845014,6, 0x845030,7, 0x845050,3, 0x845060,3, 0x845070,3, 0x845080,9, 0x8450c0,8, 0x845200,84, 0x845400,2, 0x84540c,2, 0x845420,3, 0x845800,3, 0x845814,6, 0x845830,7, 0x845850,3, 0x845860,3, 0x845870,3, 0x845880,9, 0x8458c0,8, 0x845a00,84, 0x845c00,2, 0x845c0c,2, 0x845c20,3, 0x846000,3, 0x846014,6, 0x846030,7, 0x846050,3, 0x846060,3, 0x846070,3, 0x846080,9, 0x8460c0,8, 0x846200,84, 0x846400,2, 0x84640c,2, 0x846420,3, 0x846800,3, 0x846814,6, 0x846830,7, 0x846850,3, 0x846860,3, 0x846870,3, 0x846880,9, 0x8468c0,8, 0x846a00,84, 0x846c00,2, 0x846c0c,2, 0x846c20,3, 0x847000,3, 0x847014,6, 0x847030,7, 0x847050,3, 0x847060,3, 0x847070,3, 0x847080,9, 0x8470c0,8, 0x847200,84, 0x847400,2, 0x84740c,2, 0x847420,3, 0x847800,3, 0x847814,6, 0x847830,7, 0x847850,3, 0x847860,3, 0x847870,3, 0x847880,9, 0x8478c0,8, 0x847a00,84, 0x847c00,2, 0x847c0c,2, 0x847c20,3, 0x848000,3, 0x848014,6, 0x848030,7, 0x848050,3, 0x848060,3, 0x848070,3, 0x848080,9, 0x8480c0,8, 0x848200,84, 0x848400,2, 0x84840c,2, 0x848420,3, 0x848800,40, 0x850000,9, 0x850040,9, 0x850084,1, 0x85008c,6, 0x8500a8,5, 0x8500c0,21, 0x850200,73, 0x850400,4, 0x850440,29, 0x8504c0,1, 0x850800,9, 0x850840,9, 0x850884,1, 0x85088c,6, 0x8508a8,5, 0x8508c0,21, 0x850a00,73, 0x850c00,4, 0x850c40,29, 0x850cc0,1, 0x851000,9, 0x851040,9, 0x851084,1, 0x85108c,6, 0x8510a8,5, 0x8510c0,21, 0x851200,73, 0x851400,4, 0x851440,29, 0x8514c0,1, 0x851800,9, 0x851840,9, 0x851884,1, 0x85188c,6, 0x8518a8,5, 0x8518c0,21, 0x851a00,73, 0x851c00,4, 0x851c40,29, 0x851cc0,1, 0x852000,9, 0x852040,9, 0x852084,1, 0x85208c,6, 0x8520a8,5, 0x8520c0,21, 0x852200,73, 0x852400,4, 0x852440,29, 0x8524c0,1, 0x852800,9, 0x852840,9, 0x852884,1, 0x85288c,6, 0x8528a8,5, 0x8528c0,21, 0x852a00,73, 0x852c00,4, 0x852c40,29, 0x852cc0,1, 0x853000,9, 0x853040,9, 0x853084,1, 0x85308c,6, 0x8530a8,5, 0x8530c0,21, 0x853200,73, 0x853400,4, 0x853440,29, 0x8534c0,1, 0x853800,9, 0x853840,9, 0x853884,1, 0x85388c,6, 0x8538a8,5, 0x8538c0,21, 0x853a00,73, 0x853c00,4, 0x853c40,29, 0x853cc0,1, 0x854000,6, 0x854024,6, 0x854400,16, 0x854444,1, 0x854450,4, 0x854800,26, 0x854880,4, 0x8548c0,25, 0x854940,6, 0x854960,1, 0x854968,2, 0x854974,3, 0x854a00,8, 0x854a24,50, 0x854c00,4, 0x854c40,15, 0x854c80,4, 0x854cc0,15, 0x854d00,4, 0x854d40,15, 0x854d80,4, 0x854dc0,15, 0x854e00,4, 0x854e40,15, 0x854e80,4, 0x854ec0,15, 0x854f00,4, 0x854f40,15, 0x854f80,4, 0x854fc0,15, 0x855000,32, 0x855084,1, 0x855090,4, 0x855100,3, 0x855110,2, 0x855200,32, 0x855284,1, 0x855290,4, 0x855300,3, 0x855310,2, 0x855400,32, 0x855484,1, 0x855490,4, 0x855500,3, 0x855510,2, 0x855600,32, 0x855684,1, 0x855690,4, 0x855700,3, 0x855710,2, 0x855800,32, 0x855884,1, 0x855890,4, 0x855900,3, 0x855910,2, 0x855a00,32, 0x855a84,1, 0x855a90,4, 0x855b00,3, 0x855b10,2, 0x855c00,32, 0x855c84,1, 0x855c90,4, 0x855d00,3, 0x855d10,2, 0x855e00,32, 0x855e84,1, 0x855e90,4, 0x855f00,3, 0x855f10,7, 0x860000,1, 0x860008,32, 0x860800,38, 0x860900,38, 0x860a00,30, 0x860a80,18, 0x860b00,18, 0x860b80,19, 0x860c00,10, 0x860c40,10, 0x860c80,15, 0x861000,38, 0x861100,38, 0x861200,30, 0x861280,18, 0x861300,18, 0x861380,19, 0x861400,10, 0x861440,10, 0x861480,15, 0x861800,38, 0x861900,38, 0x861a00,30, 0x861a80,18, 0x861b00,18, 0x861b80,19, 0x861c00,10, 0x861c40,10, 0x861c80,15, 0x862000,38, 0x862100,38, 0x862200,30, 0x862280,18, 0x862300,18, 0x862380,19, 0x862400,10, 0x862440,10, 0x862480,15, 0x862800,38, 0x862900,38, 0x862a00,30, 0x862a80,18, 0x862b00,18, 0x862b80,19, 0x862c00,10, 0x862c40,10, 0x862c80,15, 0x863000,38, 0x863100,38, 0x863200,30, 0x863280,18, 0x863300,18, 0x863380,19, 0x863400,10, 0x863440,10, 0x863480,15, 0x863800,38, 0x863900,38, 0x863a00,30, 0x863a80,18, 0x863b00,18, 0x863b80,19, 0x863c00,10, 0x863c40,10, 0x863c80,15, 0x864000,38, 0x864100,38, 0x864200,30, 0x864280,18, 0x864300,18, 0x864380,19, 0x864400,10, 0x864440,10, 0x864480,15, 0x864800,3, 0x864814,6, 0x864830,7, 0x864850,3, 0x864860,3, 0x864870,3, 0x864880,9, 0x8648c0,8, 0x864a00,84, 0x864c00,2, 0x864c0c,2, 0x864c20,3, 0x865000,3, 0x865014,6, 0x865030,7, 0x865050,3, 0x865060,3, 0x865070,3, 0x865080,9, 0x8650c0,8, 0x865200,84, 0x865400,2, 0x86540c,2, 0x865420,3, 0x865800,3, 0x865814,6, 0x865830,7, 0x865850,3, 0x865860,3, 0x865870,3, 0x865880,9, 0x8658c0,8, 0x865a00,84, 0x865c00,2, 0x865c0c,2, 0x865c20,3, 0x866000,3, 0x866014,6, 0x866030,7, 0x866050,3, 0x866060,3, 0x866070,3, 0x866080,9, 0x8660c0,8, 0x866200,84, 0x866400,2, 0x86640c,2, 0x866420,3, 0x866800,3, 0x866814,6, 0x866830,7, 0x866850,3, 0x866860,3, 0x866870,3, 0x866880,9, 0x8668c0,8, 0x866a00,84, 0x866c00,2, 0x866c0c,2, 0x866c20,3, 0x867000,3, 0x867014,6, 0x867030,7, 0x867050,3, 0x867060,3, 0x867070,3, 0x867080,9, 0x8670c0,8, 0x867200,84, 0x867400,2, 0x86740c,2, 0x867420,3, 0x867800,3, 0x867814,6, 0x867830,7, 0x867850,3, 0x867860,3, 0x867870,3, 0x867880,9, 0x8678c0,8, 0x867a00,84, 0x867c00,2, 0x867c0c,2, 0x867c20,3, 0x868000,3, 0x868014,6, 0x868030,7, 0x868050,3, 0x868060,3, 0x868070,3, 0x868080,9, 0x8680c0,8, 0x868200,84, 0x868400,2, 0x86840c,2, 0x868420,3, 0x868800,40, 0x870000,9, 0x870040,9, 0x870084,1, 0x87008c,6, 0x8700a8,5, 0x8700c0,21, 0x870200,73, 0x870400,4, 0x870440,29, 0x8704c0,1, 0x870800,9, 0x870840,9, 0x870884,1, 0x87088c,6, 0x8708a8,5, 0x8708c0,21, 0x870a00,73, 0x870c00,4, 0x870c40,29, 0x870cc0,1, 0x871000,9, 0x871040,9, 0x871084,1, 0x87108c,6, 0x8710a8,5, 0x8710c0,21, 0x871200,73, 0x871400,4, 0x871440,29, 0x8714c0,1, 0x871800,9, 0x871840,9, 0x871884,1, 0x87188c,6, 0x8718a8,5, 0x8718c0,21, 0x871a00,73, 0x871c00,4, 0x871c40,29, 0x871cc0,1, 0x872000,9, 0x872040,9, 0x872084,1, 0x87208c,6, 0x8720a8,5, 0x8720c0,21, 0x872200,73, 0x872400,4, 0x872440,29, 0x8724c0,1, 0x872800,9, 0x872840,9, 0x872884,1, 0x87288c,6, 0x8728a8,5, 0x8728c0,21, 0x872a00,73, 0x872c00,4, 0x872c40,29, 0x872cc0,1, 0x873000,9, 0x873040,9, 0x873084,1, 0x87308c,6, 0x8730a8,5, 0x8730c0,21, 0x873200,73, 0x873400,4, 0x873440,29, 0x8734c0,1, 0x873800,9, 0x873840,9, 0x873884,1, 0x87388c,6, 0x8738a8,5, 0x8738c0,21, 0x873a00,73, 0x873c00,4, 0x873c40,29, 0x873cc0,1, 0x874000,6, 0x874024,6, 0x874400,16, 0x874444,1, 0x874450,4, 0x874800,26, 0x874880,4, 0x8748c0,25, 0x874940,6, 0x874960,1, 0x874968,2, 0x874974,3, 0x874a00,8, 0x874a24,50, 0x874c00,4, 0x874c40,15, 0x874c80,4, 0x874cc0,15, 0x874d00,4, 0x874d40,15, 0x874d80,4, 0x874dc0,15, 0x874e00,4, 0x874e40,15, 0x874e80,4, 0x874ec0,15, 0x874f00,4, 0x874f40,15, 0x874f80,4, 0x874fc0,15, 0x875000,32, 0x875084,1, 0x875090,4, 0x875100,3, 0x875110,2, 0x875200,32, 0x875284,1, 0x875290,4, 0x875300,3, 0x875310,2, 0x875400,32, 0x875484,1, 0x875490,4, 0x875500,3, 0x875510,2, 0x875600,32, 0x875684,1, 0x875690,4, 0x875700,3, 0x875710,2, 0x875800,32, 0x875884,1, 0x875890,4, 0x875900,3, 0x875910,2, 0x875a00,32, 0x875a84,1, 0x875a90,4, 0x875b00,3, 0x875b10,2, 0x875c00,32, 0x875c84,1, 0x875c90,4, 0x875d00,3, 0x875d10,2, 0x875e00,32, 0x875e84,1, 0x875e90,4, 0x875f00,3, 0x875f10,7, 0x880000,1, 0x880008,32, 0x880800,38, 0x880900,38, 0x880a00,30, 0x880a80,18, 0x880b00,18, 0x880b80,19, 0x880c00,10, 0x880c40,10, 0x880c80,15, 0x881000,38, 0x881100,38, 0x881200,30, 0x881280,18, 0x881300,18, 0x881380,19, 0x881400,10, 0x881440,10, 0x881480,15, 0x881800,38, 0x881900,38, 0x881a00,30, 0x881a80,18, 0x881b00,18, 0x881b80,19, 0x881c00,10, 0x881c40,10, 0x881c80,15, 0x882000,38, 0x882100,38, 0x882200,30, 0x882280,18, 0x882300,18, 0x882380,19, 0x882400,10, 0x882440,10, 0x882480,15, 0x882800,38, 0x882900,38, 0x882a00,30, 0x882a80,18, 0x882b00,18, 0x882b80,19, 0x882c00,10, 0x882c40,10, 0x882c80,15, 0x883000,38, 0x883100,38, 0x883200,30, 0x883280,18, 0x883300,18, 0x883380,19, 0x883400,10, 0x883440,10, 0x883480,15, 0x883800,38, 0x883900,38, 0x883a00,30, 0x883a80,18, 0x883b00,18, 0x883b80,19, 0x883c00,10, 0x883c40,10, 0x883c80,15, 0x884000,38, 0x884100,38, 0x884200,30, 0x884280,18, 0x884300,18, 0x884380,19, 0x884400,10, 0x884440,10, 0x884480,15, 0x884800,3, 0x884814,6, 0x884830,7, 0x884850,3, 0x884860,3, 0x884870,3, 0x884880,9, 0x8848c0,8, 0x884a00,84, 0x884c00,2, 0x884c0c,2, 0x884c20,3, 0x885000,3, 0x885014,6, 0x885030,7, 0x885050,3, 0x885060,3, 0x885070,3, 0x885080,9, 0x8850c0,8, 0x885200,84, 0x885400,2, 0x88540c,2, 0x885420,3, 0x885800,3, 0x885814,6, 0x885830,7, 0x885850,3, 0x885860,3, 0x885870,3, 0x885880,9, 0x8858c0,8, 0x885a00,84, 0x885c00,2, 0x885c0c,2, 0x885c20,3, 0x886000,3, 0x886014,6, 0x886030,7, 0x886050,3, 0x886060,3, 0x886070,3, 0x886080,9, 0x8860c0,8, 0x886200,84, 0x886400,2, 0x88640c,2, 0x886420,3, 0x886800,3, 0x886814,6, 0x886830,7, 0x886850,3, 0x886860,3, 0x886870,3, 0x886880,9, 0x8868c0,8, 0x886a00,84, 0x886c00,2, 0x886c0c,2, 0x886c20,3, 0x887000,3, 0x887014,6, 0x887030,7, 0x887050,3, 0x887060,3, 0x887070,3, 0x887080,9, 0x8870c0,8, 0x887200,84, 0x887400,2, 0x88740c,2, 0x887420,3, 0x887800,3, 0x887814,6, 0x887830,7, 0x887850,3, 0x887860,3, 0x887870,3, 0x887880,9, 0x8878c0,8, 0x887a00,84, 0x887c00,2, 0x887c0c,2, 0x887c20,3, 0x888000,3, 0x888014,6, 0x888030,7, 0x888050,3, 0x888060,3, 0x888070,3, 0x888080,9, 0x8880c0,8, 0x888200,84, 0x888400,2, 0x88840c,2, 0x888420,3, 0x888800,40, 0x890000,9, 0x890040,9, 0x890084,1, 0x89008c,6, 0x8900a8,5, 0x8900c0,21, 0x890200,73, 0x890400,4, 0x890440,29, 0x8904c0,1, 0x890800,9, 0x890840,9, 0x890884,1, 0x89088c,6, 0x8908a8,5, 0x8908c0,21, 0x890a00,73, 0x890c00,4, 0x890c40,29, 0x890cc0,1, 0x891000,9, 0x891040,9, 0x891084,1, 0x89108c,6, 0x8910a8,5, 0x8910c0,21, 0x891200,73, 0x891400,4, 0x891440,29, 0x8914c0,1, 0x891800,9, 0x891840,9, 0x891884,1, 0x89188c,6, 0x8918a8,5, 0x8918c0,21, 0x891a00,73, 0x891c00,4, 0x891c40,29, 0x891cc0,1, 0x892000,9, 0x892040,9, 0x892084,1, 0x89208c,6, 0x8920a8,5, 0x8920c0,21, 0x892200,73, 0x892400,4, 0x892440,29, 0x8924c0,1, 0x892800,9, 0x892840,9, 0x892884,1, 0x89288c,6, 0x8928a8,5, 0x8928c0,21, 0x892a00,73, 0x892c00,4, 0x892c40,29, 0x892cc0,1, 0x893000,9, 0x893040,9, 0x893084,1, 0x89308c,6, 0x8930a8,5, 0x8930c0,21, 0x893200,73, 0x893400,4, 0x893440,29, 0x8934c0,1, 0x893800,9, 0x893840,9, 0x893884,1, 0x89388c,6, 0x8938a8,5, 0x8938c0,21, 0x893a00,73, 0x893c00,4, 0x893c40,29, 0x893cc0,1, 0x894000,6, 0x894024,6, 0x894400,16, 0x894444,1, 0x894450,4, 0x894800,26, 0x894880,4, 0x8948c0,25, 0x894940,6, 0x894960,1, 0x894968,2, 0x894974,3, 0x894a00,8, 0x894a24,50, 0x894c00,4, 0x894c40,15, 0x894c80,4, 0x894cc0,15, 0x894d00,4, 0x894d40,15, 0x894d80,4, 0x894dc0,15, 0x894e00,4, 0x894e40,15, 0x894e80,4, 0x894ec0,15, 0x894f00,4, 0x894f40,15, 0x894f80,4, 0x894fc0,15, 0x895000,32, 0x895084,1, 0x895090,4, 0x895100,3, 0x895110,2, 0x895200,32, 0x895284,1, 0x895290,4, 0x895300,3, 0x895310,2, 0x895400,32, 0x895484,1, 0x895490,4, 0x895500,3, 0x895510,2, 0x895600,32, 0x895684,1, 0x895690,4, 0x895700,3, 0x895710,2, 0x895800,32, 0x895884,1, 0x895890,4, 0x895900,3, 0x895910,2, 0x895a00,32, 0x895a84,1, 0x895a90,4, 0x895b00,3, 0x895b10,2, 0x895c00,32, 0x895c84,1, 0x895c90,4, 0x895d00,3, 0x895d10,2, 0x895e00,32, 0x895e84,1, 0x895e90,4, 0x895f00,3, 0x895f10,7, 0x8a0000,1, 0x8a0008,32, 0x8a0800,38, 0x8a0900,38, 0x8a0a00,30, 0x8a0a80,18, 0x8a0b00,18, 0x8a0b80,19, 0x8a0c00,10, 0x8a0c40,10, 0x8a0c80,15, 0x8a1000,38, 0x8a1100,38, 0x8a1200,30, 0x8a1280,18, 0x8a1300,18, 0x8a1380,19, 0x8a1400,10, 0x8a1440,10, 0x8a1480,15, 0x8a1800,38, 0x8a1900,38, 0x8a1a00,30, 0x8a1a80,18, 0x8a1b00,18, 0x8a1b80,19, 0x8a1c00,10, 0x8a1c40,10, 0x8a1c80,15, 0x8a2000,38, 0x8a2100,38, 0x8a2200,30, 0x8a2280,18, 0x8a2300,18, 0x8a2380,19, 0x8a2400,10, 0x8a2440,10, 0x8a2480,15, 0x8a2800,38, 0x8a2900,38, 0x8a2a00,30, 0x8a2a80,18, 0x8a2b00,18, 0x8a2b80,19, 0x8a2c00,10, 0x8a2c40,10, 0x8a2c80,15, 0x8a3000,38, 0x8a3100,38, 0x8a3200,30, 0x8a3280,18, 0x8a3300,18, 0x8a3380,19, 0x8a3400,10, 0x8a3440,10, 0x8a3480,15, 0x8a3800,38, 0x8a3900,38, 0x8a3a00,30, 0x8a3a80,18, 0x8a3b00,18, 0x8a3b80,19, 0x8a3c00,10, 0x8a3c40,10, 0x8a3c80,15, 0x8a4000,38, 0x8a4100,38, 0x8a4200,30, 0x8a4280,18, 0x8a4300,18, 0x8a4380,19, 0x8a4400,10, 0x8a4440,10, 0x8a4480,15, 0x8a4800,3, 0x8a4814,6, 0x8a4830,7, 0x8a4850,3, 0x8a4860,3, 0x8a4870,3, 0x8a4880,9, 0x8a48c0,8, 0x8a4a00,84, 0x8a4c00,2, 0x8a4c0c,2, 0x8a4c20,3, 0x8a5000,3, 0x8a5014,6, 0x8a5030,7, 0x8a5050,3, 0x8a5060,3, 0x8a5070,3, 0x8a5080,9, 0x8a50c0,8, 0x8a5200,84, 0x8a5400,2, 0x8a540c,2, 0x8a5420,3, 0x8a5800,3, 0x8a5814,6, 0x8a5830,7, 0x8a5850,3, 0x8a5860,3, 0x8a5870,3, 0x8a5880,9, 0x8a58c0,8, 0x8a5a00,84, 0x8a5c00,2, 0x8a5c0c,2, 0x8a5c20,3, 0x8a6000,3, 0x8a6014,6, 0x8a6030,7, 0x8a6050,3, 0x8a6060,3, 0x8a6070,3, 0x8a6080,9, 0x8a60c0,8, 0x8a6200,84, 0x8a6400,2, 0x8a640c,2, 0x8a6420,3, 0x8a6800,3, 0x8a6814,6, 0x8a6830,7, 0x8a6850,3, 0x8a6860,3, 0x8a6870,3, 0x8a6880,9, 0x8a68c0,8, 0x8a6a00,84, 0x8a6c00,2, 0x8a6c0c,2, 0x8a6c20,3, 0x8a7000,3, 0x8a7014,6, 0x8a7030,7, 0x8a7050,3, 0x8a7060,3, 0x8a7070,3, 0x8a7080,9, 0x8a70c0,8, 0x8a7200,84, 0x8a7400,2, 0x8a740c,2, 0x8a7420,3, 0x8a7800,3, 0x8a7814,6, 0x8a7830,7, 0x8a7850,3, 0x8a7860,3, 0x8a7870,3, 0x8a7880,9, 0x8a78c0,8, 0x8a7a00,84, 0x8a7c00,2, 0x8a7c0c,2, 0x8a7c20,3, 0x8a8000,3, 0x8a8014,6, 0x8a8030,7, 0x8a8050,3, 0x8a8060,3, 0x8a8070,3, 0x8a8080,9, 0x8a80c0,8, 0x8a8200,84, 0x8a8400,2, 0x8a840c,2, 0x8a8420,3, 0x8a8800,40, 0x8b0000,9, 0x8b0040,9, 0x8b0084,1, 0x8b008c,6, 0x8b00a8,5, 0x8b00c0,21, 0x8b0200,73, 0x8b0400,4, 0x8b0440,29, 0x8b04c0,1, 0x8b0800,9, 0x8b0840,9, 0x8b0884,1, 0x8b088c,6, 0x8b08a8,5, 0x8b08c0,21, 0x8b0a00,73, 0x8b0c00,4, 0x8b0c40,29, 0x8b0cc0,1, 0x8b1000,9, 0x8b1040,9, 0x8b1084,1, 0x8b108c,6, 0x8b10a8,5, 0x8b10c0,21, 0x8b1200,73, 0x8b1400,4, 0x8b1440,29, 0x8b14c0,1, 0x8b1800,9, 0x8b1840,9, 0x8b1884,1, 0x8b188c,6, 0x8b18a8,5, 0x8b18c0,21, 0x8b1a00,73, 0x8b1c00,4, 0x8b1c40,29, 0x8b1cc0,1, 0x8b2000,9, 0x8b2040,9, 0x8b2084,1, 0x8b208c,6, 0x8b20a8,5, 0x8b20c0,21, 0x8b2200,73, 0x8b2400,4, 0x8b2440,29, 0x8b24c0,1, 0x8b2800,9, 0x8b2840,9, 0x8b2884,1, 0x8b288c,6, 0x8b28a8,5, 0x8b28c0,21, 0x8b2a00,73, 0x8b2c00,4, 0x8b2c40,29, 0x8b2cc0,1, 0x8b3000,9, 0x8b3040,9, 0x8b3084,1, 0x8b308c,6, 0x8b30a8,5, 0x8b30c0,21, 0x8b3200,73, 0x8b3400,4, 0x8b3440,29, 0x8b34c0,1, 0x8b3800,9, 0x8b3840,9, 0x8b3884,1, 0x8b388c,6, 0x8b38a8,5, 0x8b38c0,21, 0x8b3a00,73, 0x8b3c00,4, 0x8b3c40,29, 0x8b3cc0,1, 0x8b4000,6, 0x8b4024,6, 0x8b4400,16, 0x8b4444,1, 0x8b4450,4, 0x8b4800,26, 0x8b4880,4, 0x8b48c0,25, 0x8b4940,6, 0x8b4960,1, 0x8b4968,2, 0x8b4974,3, 0x8b4a00,8, 0x8b4a24,50, 0x8b4c00,4, 0x8b4c40,15, 0x8b4c80,4, 0x8b4cc0,15, 0x8b4d00,4, 0x8b4d40,15, 0x8b4d80,4, 0x8b4dc0,15, 0x8b4e00,4, 0x8b4e40,15, 0x8b4e80,4, 0x8b4ec0,15, 0x8b4f00,4, 0x8b4f40,15, 0x8b4f80,4, 0x8b4fc0,15, 0x8b5000,32, 0x8b5084,1, 0x8b5090,4, 0x8b5100,3, 0x8b5110,2, 0x8b5200,32, 0x8b5284,1, 0x8b5290,4, 0x8b5300,3, 0x8b5310,2, 0x8b5400,32, 0x8b5484,1, 0x8b5490,4, 0x8b5500,3, 0x8b5510,2, 0x8b5600,32, 0x8b5684,1, 0x8b5690,4, 0x8b5700,3, 0x8b5710,2, 0x8b5800,32, 0x8b5884,1, 0x8b5890,4, 0x8b5900,3, 0x8b5910,2, 0x8b5a00,32, 0x8b5a84,1, 0x8b5a90,4, 0x8b5b00,3, 0x8b5b10,2, 0x8b5c00,32, 0x8b5c84,1, 0x8b5c90,4, 0x8b5d00,3, 0x8b5d10,2, 0x8b5e00,32, 0x8b5e84,1, 0x8b5e90,4, 0x8b5f00,3, 0x8b5f10,7, 0x8c0000,1, 0x8c0008,32, 0x8c0800,38, 0x8c0900,38, 0x8c0a00,30, 0x8c0a80,18, 0x8c0b00,18, 0x8c0b80,19, 0x8c0c00,10, 0x8c0c40,10, 0x8c0c80,15, 0x8c1000,38, 0x8c1100,38, 0x8c1200,30, 0x8c1280,18, 0x8c1300,18, 0x8c1380,19, 0x8c1400,10, 0x8c1440,10, 0x8c1480,15, 0x8c1800,38, 0x8c1900,38, 0x8c1a00,30, 0x8c1a80,18, 0x8c1b00,18, 0x8c1b80,19, 0x8c1c00,10, 0x8c1c40,10, 0x8c1c80,15, 0x8c2000,38, 0x8c2100,38, 0x8c2200,30, 0x8c2280,18, 0x8c2300,18, 0x8c2380,19, 0x8c2400,10, 0x8c2440,10, 0x8c2480,15, 0x8c2800,38, 0x8c2900,38, 0x8c2a00,30, 0x8c2a80,18, 0x8c2b00,18, 0x8c2b80,19, 0x8c2c00,10, 0x8c2c40,10, 0x8c2c80,15, 0x8c3000,38, 0x8c3100,38, 0x8c3200,30, 0x8c3280,18, 0x8c3300,18, 0x8c3380,19, 0x8c3400,10, 0x8c3440,10, 0x8c3480,15, 0x8c3800,38, 0x8c3900,38, 0x8c3a00,30, 0x8c3a80,18, 0x8c3b00,18, 0x8c3b80,19, 0x8c3c00,10, 0x8c3c40,10, 0x8c3c80,15, 0x8c4000,38, 0x8c4100,38, 0x8c4200,30, 0x8c4280,18, 0x8c4300,18, 0x8c4380,19, 0x8c4400,10, 0x8c4440,10, 0x8c4480,15, 0x8c4800,3, 0x8c4814,6, 0x8c4830,7, 0x8c4850,3, 0x8c4860,3, 0x8c4870,3, 0x8c4880,9, 0x8c48c0,8, 0x8c4a00,84, 0x8c4c00,2, 0x8c4c0c,2, 0x8c4c20,3, 0x8c5000,3, 0x8c5014,6, 0x8c5030,7, 0x8c5050,3, 0x8c5060,3, 0x8c5070,3, 0x8c5080,9, 0x8c50c0,8, 0x8c5200,84, 0x8c5400,2, 0x8c540c,2, 0x8c5420,3, 0x8c5800,3, 0x8c5814,6, 0x8c5830,7, 0x8c5850,3, 0x8c5860,3, 0x8c5870,3, 0x8c5880,9, 0x8c58c0,8, 0x8c5a00,84, 0x8c5c00,2, 0x8c5c0c,2, 0x8c5c20,3, 0x8c6000,3, 0x8c6014,6, 0x8c6030,7, 0x8c6050,3, 0x8c6060,3, 0x8c6070,3, 0x8c6080,9, 0x8c60c0,8, 0x8c6200,84, 0x8c6400,2, 0x8c640c,2, 0x8c6420,3, 0x8c6800,3, 0x8c6814,6, 0x8c6830,7, 0x8c6850,3, 0x8c6860,3, 0x8c6870,3, 0x8c6880,9, 0x8c68c0,8, 0x8c6a00,84, 0x8c6c00,2, 0x8c6c0c,2, 0x8c6c20,3, 0x8c7000,3, 0x8c7014,6, 0x8c7030,7, 0x8c7050,3, 0x8c7060,3, 0x8c7070,3, 0x8c7080,9, 0x8c70c0,8, 0x8c7200,84, 0x8c7400,2, 0x8c740c,2, 0x8c7420,3, 0x8c7800,3, 0x8c7814,6, 0x8c7830,7, 0x8c7850,3, 0x8c7860,3, 0x8c7870,3, 0x8c7880,9, 0x8c78c0,8, 0x8c7a00,84, 0x8c7c00,2, 0x8c7c0c,2, 0x8c7c20,3, 0x8c8000,3, 0x8c8014,6, 0x8c8030,7, 0x8c8050,3, 0x8c8060,3, 0x8c8070,3, 0x8c8080,9, 0x8c80c0,8, 0x8c8200,84, 0x8c8400,2, 0x8c840c,2, 0x8c8420,3, 0x8c8800,40, 0x8d0000,9, 0x8d0040,9, 0x8d0084,1, 0x8d008c,6, 0x8d00a8,5, 0x8d00c0,21, 0x8d0200,73, 0x8d0400,4, 0x8d0440,29, 0x8d04c0,1, 0x8d0800,9, 0x8d0840,9, 0x8d0884,1, 0x8d088c,6, 0x8d08a8,5, 0x8d08c0,21, 0x8d0a00,73, 0x8d0c00,4, 0x8d0c40,29, 0x8d0cc0,1, 0x8d1000,9, 0x8d1040,9, 0x8d1084,1, 0x8d108c,6, 0x8d10a8,5, 0x8d10c0,21, 0x8d1200,73, 0x8d1400,4, 0x8d1440,29, 0x8d14c0,1, 0x8d1800,9, 0x8d1840,9, 0x8d1884,1, 0x8d188c,6, 0x8d18a8,5, 0x8d18c0,21, 0x8d1a00,73, 0x8d1c00,4, 0x8d1c40,29, 0x8d1cc0,1, 0x8d2000,9, 0x8d2040,9, 0x8d2084,1, 0x8d208c,6, 0x8d20a8,5, 0x8d20c0,21, 0x8d2200,73, 0x8d2400,4, 0x8d2440,29, 0x8d24c0,1, 0x8d2800,9, 0x8d2840,9, 0x8d2884,1, 0x8d288c,6, 0x8d28a8,5, 0x8d28c0,21, 0x8d2a00,73, 0x8d2c00,4, 0x8d2c40,29, 0x8d2cc0,1, 0x8d3000,9, 0x8d3040,9, 0x8d3084,1, 0x8d308c,6, 0x8d30a8,5, 0x8d30c0,21, 0x8d3200,73, 0x8d3400,4, 0x8d3440,29, 0x8d34c0,1, 0x8d3800,9, 0x8d3840,9, 0x8d3884,1, 0x8d388c,6, 0x8d38a8,5, 0x8d38c0,21, 0x8d3a00,73, 0x8d3c00,4, 0x8d3c40,29, 0x8d3cc0,1, 0x8d4000,6, 0x8d4024,6, 0x8d4400,16, 0x8d4444,1, 0x8d4450,4, 0x8d4800,26, 0x8d4880,4, 0x8d48c0,25, 0x8d4940,6, 0x8d4960,1, 0x8d4968,2, 0x8d4974,3, 0x8d4a00,8, 0x8d4a24,50, 0x8d4c00,4, 0x8d4c40,15, 0x8d4c80,4, 0x8d4cc0,15, 0x8d4d00,4, 0x8d4d40,15, 0x8d4d80,4, 0x8d4dc0,15, 0x8d4e00,4, 0x8d4e40,15, 0x8d4e80,4, 0x8d4ec0,15, 0x8d4f00,4, 0x8d4f40,15, 0x8d4f80,4, 0x8d4fc0,15, 0x8d5000,32, 0x8d5084,1, 0x8d5090,4, 0x8d5100,3, 0x8d5110,2, 0x8d5200,32, 0x8d5284,1, 0x8d5290,4, 0x8d5300,3, 0x8d5310,2, 0x8d5400,32, 0x8d5484,1, 0x8d5490,4, 0x8d5500,3, 0x8d5510,2, 0x8d5600,32, 0x8d5684,1, 0x8d5690,4, 0x8d5700,3, 0x8d5710,2, 0x8d5800,32, 0x8d5884,1, 0x8d5890,4, 0x8d5900,3, 0x8d5910,2, 0x8d5a00,32, 0x8d5a84,1, 0x8d5a90,4, 0x8d5b00,3, 0x8d5b10,2, 0x8d5c00,32, 0x8d5c84,1, 0x8d5c90,4, 0x8d5d00,3, 0x8d5d10,2, 0x8d5e00,32, 0x8d5e84,1, 0x8d5e90,4, 0x8d5f00,3, 0x8d5f10,7, 0x8e0000,1, 0x8e0008,32, 0x8e0800,38, 0x8e0900,38, 0x8e0a00,30, 0x8e0a80,18, 0x8e0b00,18, 0x8e0b80,19, 0x8e0c00,10, 0x8e0c40,10, 0x8e0c80,15, 0x8e1000,38, 0x8e1100,38, 0x8e1200,30, 0x8e1280,18, 0x8e1300,18, 0x8e1380,19, 0x8e1400,10, 0x8e1440,10, 0x8e1480,15, 0x8e1800,38, 0x8e1900,38, 0x8e1a00,30, 0x8e1a80,18, 0x8e1b00,18, 0x8e1b80,19, 0x8e1c00,10, 0x8e1c40,10, 0x8e1c80,15, 0x8e2000,38, 0x8e2100,38, 0x8e2200,30, 0x8e2280,18, 0x8e2300,18, 0x8e2380,19, 0x8e2400,10, 0x8e2440,10, 0x8e2480,15, 0x8e2800,38, 0x8e2900,38, 0x8e2a00,30, 0x8e2a80,18, 0x8e2b00,18, 0x8e2b80,19, 0x8e2c00,10, 0x8e2c40,10, 0x8e2c80,15, 0x8e3000,38, 0x8e3100,38, 0x8e3200,30, 0x8e3280,18, 0x8e3300,18, 0x8e3380,19, 0x8e3400,10, 0x8e3440,10, 0x8e3480,15, 0x8e3800,38, 0x8e3900,38, 0x8e3a00,30, 0x8e3a80,18, 0x8e3b00,18, 0x8e3b80,19, 0x8e3c00,10, 0x8e3c40,10, 0x8e3c80,15, 0x8e4000,38, 0x8e4100,38, 0x8e4200,30, 0x8e4280,18, 0x8e4300,18, 0x8e4380,19, 0x8e4400,10, 0x8e4440,10, 0x8e4480,15, 0x8e4800,3, 0x8e4814,6, 0x8e4830,7, 0x8e4850,3, 0x8e4860,3, 0x8e4870,3, 0x8e4880,9, 0x8e48c0,8, 0x8e4a00,84, 0x8e4c00,2, 0x8e4c0c,2, 0x8e4c20,3, 0x8e5000,3, 0x8e5014,6, 0x8e5030,7, 0x8e5050,3, 0x8e5060,3, 0x8e5070,3, 0x8e5080,9, 0x8e50c0,8, 0x8e5200,84, 0x8e5400,2, 0x8e540c,2, 0x8e5420,3, 0x8e5800,3, 0x8e5814,6, 0x8e5830,7, 0x8e5850,3, 0x8e5860,3, 0x8e5870,3, 0x8e5880,9, 0x8e58c0,8, 0x8e5a00,84, 0x8e5c00,2, 0x8e5c0c,2, 0x8e5c20,3, 0x8e6000,3, 0x8e6014,6, 0x8e6030,7, 0x8e6050,3, 0x8e6060,3, 0x8e6070,3, 0x8e6080,9, 0x8e60c0,8, 0x8e6200,84, 0x8e6400,2, 0x8e640c,2, 0x8e6420,3, 0x8e6800,3, 0x8e6814,6, 0x8e6830,7, 0x8e6850,3, 0x8e6860,3, 0x8e6870,3, 0x8e6880,9, 0x8e68c0,8, 0x8e6a00,84, 0x8e6c00,2, 0x8e6c0c,2, 0x8e6c20,3, 0x8e7000,3, 0x8e7014,6, 0x8e7030,7, 0x8e7050,3, 0x8e7060,3, 0x8e7070,3, 0x8e7080,9, 0x8e70c0,8, 0x8e7200,84, 0x8e7400,2, 0x8e740c,2, 0x8e7420,3, 0x8e7800,3, 0x8e7814,6, 0x8e7830,7, 0x8e7850,3, 0x8e7860,3, 0x8e7870,3, 0x8e7880,9, 0x8e78c0,8, 0x8e7a00,84, 0x8e7c00,2, 0x8e7c0c,2, 0x8e7c20,3, 0x8e8000,3, 0x8e8014,6, 0x8e8030,7, 0x8e8050,3, 0x8e8060,3, 0x8e8070,3, 0x8e8080,9, 0x8e80c0,8, 0x8e8200,84, 0x8e8400,2, 0x8e840c,2, 0x8e8420,3, 0x8e8800,40, 0x8f0000,9, 0x8f0040,9, 0x8f0084,1, 0x8f008c,6, 0x8f00a8,5, 0x8f00c0,21, 0x8f0200,73, 0x8f0400,4, 0x8f0440,29, 0x8f04c0,1, 0x8f0800,9, 0x8f0840,9, 0x8f0884,1, 0x8f088c,6, 0x8f08a8,5, 0x8f08c0,21, 0x8f0a00,73, 0x8f0c00,4, 0x8f0c40,29, 0x8f0cc0,1, 0x8f1000,9, 0x8f1040,9, 0x8f1084,1, 0x8f108c,6, 0x8f10a8,5, 0x8f10c0,21, 0x8f1200,73, 0x8f1400,4, 0x8f1440,29, 0x8f14c0,1, 0x8f1800,9, 0x8f1840,9, 0x8f1884,1, 0x8f188c,6, 0x8f18a8,5, 0x8f18c0,21, 0x8f1a00,73, 0x8f1c00,4, 0x8f1c40,29, 0x8f1cc0,1, 0x8f2000,9, 0x8f2040,9, 0x8f2084,1, 0x8f208c,6, 0x8f20a8,5, 0x8f20c0,21, 0x8f2200,73, 0x8f2400,4, 0x8f2440,29, 0x8f24c0,1, 0x8f2800,9, 0x8f2840,9, 0x8f2884,1, 0x8f288c,6, 0x8f28a8,5, 0x8f28c0,21, 0x8f2a00,73, 0x8f2c00,4, 0x8f2c40,29, 0x8f2cc0,1, 0x8f3000,9, 0x8f3040,9, 0x8f3084,1, 0x8f308c,6, 0x8f30a8,5, 0x8f30c0,21, 0x8f3200,73, 0x8f3400,4, 0x8f3440,29, 0x8f34c0,1, 0x8f3800,9, 0x8f3840,9, 0x8f3884,1, 0x8f388c,6, 0x8f38a8,5, 0x8f38c0,21, 0x8f3a00,73, 0x8f3c00,4, 0x8f3c40,29, 0x8f3cc0,1, 0x8f4000,6, 0x8f4024,6, 0x8f4400,16, 0x8f4444,1, 0x8f4450,4, 0x8f4800,26, 0x8f4880,4, 0x8f48c0,25, 0x8f4940,6, 0x8f4960,1, 0x8f4968,2, 0x8f4974,3, 0x8f4a00,8, 0x8f4a24,50, 0x8f4c00,4, 0x8f4c40,15, 0x8f4c80,4, 0x8f4cc0,15, 0x8f4d00,4, 0x8f4d40,15, 0x8f4d80,4, 0x8f4dc0,15, 0x8f4e00,4, 0x8f4e40,15, 0x8f4e80,4, 0x8f4ec0,15, 0x8f4f00,4, 0x8f4f40,15, 0x8f4f80,4, 0x8f4fc0,15, 0x8f5000,32, 0x8f5084,1, 0x8f5090,4, 0x8f5100,3, 0x8f5110,2, 0x8f5200,32, 0x8f5284,1, 0x8f5290,4, 0x8f5300,3, 0x8f5310,2, 0x8f5400,32, 0x8f5484,1, 0x8f5490,4, 0x8f5500,3, 0x8f5510,2, 0x8f5600,32, 0x8f5684,1, 0x8f5690,4, 0x8f5700,3, 0x8f5710,2, 0x8f5800,32, 0x8f5884,1, 0x8f5890,4, 0x8f5900,3, 0x8f5910,2, 0x8f5a00,32, 0x8f5a84,1, 0x8f5a90,4, 0x8f5b00,3, 0x8f5b10,2, 0x8f5c00,32, 0x8f5c84,1, 0x8f5c90,4, 0x8f5d00,3, 0x8f5d10,2, 0x8f5e00,32, 0x8f5e84,1, 0x8f5e90,4, 0x8f5f00,3, 0x8f5f10,7, 0xa00000,1, 0xa00020,3, 0xa00030,2, 0xa00040,3, 0xa00050,2, 0xa00800,53, 0xa00900,3, 0xa00910,13, 0xa00a00,53, 0xa00b00,3, 0xa00b10,13, 0xa00c00,5, 0xa00c20,5, 0xa00c40,18, 0xa01000,6, 0xa01020,4, 0xa01040,16, 0xa02000,20, 0xa02080,15, 0xa02100,20, 0xa02180,15, 0xa02200,23, 0xa02260,7, 0xa02400,11, 0xa02430,3, 0xa02440,3, 0xa02450,3, 0xa02460,24, 0xa02500,11, 0xa02530,3, 0xa02540,3, 0xa02550,3, 0xa02560,24, 0xa02600,11, 0xa02630,3, 0xa02640,3, 0xa02650,3, 0xa02660,24, 0xa02700,11, 0xa02730,3, 0xa02740,3, 0xa02750,3, 0xa02760,24, 0xa02800,4, 0xa02820,16, 0xa02880,10, 0xa028c0,10, 0xa02900,6, 0xa02920,6, 0xa02940,4, 0xa02980,13, 0xa029c0,13, 0xa02a00,9, 0xa03000,14, 0xa03040,9, 0xa03080,6, 0xa030a0,1, 0xa030a8,4, 0xa03100,4, 0xa03200,124, 0xa03400,124, 0xa03600,8, 0xa03624,1, 0xa03644,6, 0xa03664,6, 0xa03680,1, 0xa03688,6, 0xa036a8,22, 0xa04000,1, 0xa04020,3, 0xa04030,2, 0xa04040,3, 0xa04050,2, 0xa04800,53, 0xa04900,3, 0xa04910,13, 0xa04a00,53, 0xa04b00,3, 0xa04b10,13, 0xa04c00,5, 0xa04c20,5, 0xa04c40,18, 0xa05000,6, 0xa05020,4, 0xa05040,16, 0xa06000,20, 0xa06080,15, 0xa06100,20, 0xa06180,15, 0xa06200,23, 0xa06260,7, 0xa06400,11, 0xa06430,3, 0xa06440,3, 0xa06450,3, 0xa06460,24, 0xa06500,11, 0xa06530,3, 0xa06540,3, 0xa06550,3, 0xa06560,24, 0xa06600,11, 0xa06630,3, 0xa06640,3, 0xa06650,3, 0xa06660,24, 0xa06700,11, 0xa06730,3, 0xa06740,3, 0xa06750,3, 0xa06760,24, 0xa06800,4, 0xa06820,16, 0xa06880,10, 0xa068c0,10, 0xa06900,6, 0xa06920,6, 0xa06940,4, 0xa06980,13, 0xa069c0,13, 0xa06a00,9, 0xa07000,14, 0xa07040,9, 0xa07080,6, 0xa070a0,1, 0xa070a8,4, 0xa07100,4, 0xa07200,124, 0xa07400,124, 0xa07600,8, 0xa07624,1, 0xa07644,6, 0xa07664,6, 0xa07680,1, 0xa07688,6, 0xa076a8,22, 0xa08000,84, 0xa08180,20, 0xa08200,5, 0xa08400,11, 0xa08440,11, 0xa08480,19, 0xa08500,19, 0xa08580,24, 0xa08600,13, 0xa08800,84, 0xa08980,20, 0xa08a00,5, 0xa08c00,11, 0xa08c40,11, 0xa08c80,19, 0xa08d00,19, 0xa08d80,24, 0xa08e00,13, 0xa09000,10, 0xa09040,5, 0xa09080,10, 0xa090c0,5, 0xa09100,5, 0xa09200,11, 0xa09230,3, 0xa09240,5, 0xa09260,5, 0xa09280,32, 0xa09400,13, 0xa09440,13, 0xa09480,9, 0xa094c0,1, 0xa094d0,5, 0xa094f0,21, 0xa09800,10, 0xa09840,5, 0xa09880,10, 0xa098c0,5, 0xa09900,5, 0xa09a00,11, 0xa09a30,3, 0xa09a40,5, 0xa09a60,5, 0xa09a80,32, 0xa09c00,13, 0xa09c40,13, 0xa09c80,9, 0xa09cc0,1, 0xa09cd0,5, 0xa09cf0,21, 0xa0a000,14, 0xa0a040,9, 0xa0a080,6, 0xa0a0a0,1, 0xa0a0a8,4, 0xa0a100,7, 0xa0a120,3, 0xa0a130,25, 0xa0c000,26, 0xa0c06c,2, 0xa0c080,3, 0xa0c090,17, 0xa0c100,26, 0xa0c16c,2, 0xa0c180,3, 0xa0c190,17, 0xa0c200,26, 0xa0c26c,2, 0xa0c280,3, 0xa0c290,17, 0xa0c300,26, 0xa0c36c,2, 0xa0c380,3, 0xa0c390,17, 0xa0c400,26, 0xa0c46c,2, 0xa0c480,3, 0xa0c490,17, 0xa0c500,26, 0xa0c56c,2, 0xa0c580,3, 0xa0c590,17, 0xa0c600,26, 0xa0c66c,2, 0xa0c680,3, 0xa0c690,17, 0xa0c700,26, 0xa0c76c,2, 0xa0c780,3, 0xa0c790,17, 0xa0c800,12, 0xa0c844,1, 0xa0c854,8, 0xa0c880,7, 0xa0c8a0,2, 0xa0c8ac,2, 0xa0c8c0,26, 0xa0c980,4, 0xa0c9a0,5, 0xa0c9c0,1, 0xa0d000,3, 0xa0d010,3, 0xa0d020,3, 0xa0d030,3, 0xa0d040,3, 0xa0d050,3, 0xa0d060,3, 0xa0d070,3, 0xa0d080,5, 0xa0d0a0,5, 0xa0d0c0,5, 0xa0d0e0,5, 0xa0d100,5, 0xa0d120,5, 0xa0d140,5, 0xa0d160,5, 0xa0d200,68, 0xa0d400,1, 0xa0d804,1, 0xa0d844,54, 0xa0da00,11, 0xa0da40,11, 0xa0da80,11, 0xa0dac0,11, 0xa0db00,11, 0xa0db40,11, 0xa0db80,11, 0xa0dbc0,11, 0xa0dc00,28, 0xa0dc80,5, 0xa0dca0,2, 0xa0e000,4, 0xa0e020,6, 0xa0e040,6, 0xa0e060,14, 0xa0e100,26, 0xa0e180,15, 0xa0e200,14, 0xa0e240,9, 0xa0e280,6, 0xa0e2a0,1, 0xa0e2a8,4, 0xa0e300,14, 0xa0e340,9, 0xa0e380,6, 0xa0e3a0,4, 0xa0e400,9, 0xa20000,1, 0xa21000,977, 0xa22000,161, 0xa23000,977, 0xa24000,977, 0xa25000,977, 0xa26000,977, 0xa27000,977, 0xa28000,977, 0xa29000,977, 0xa2a000,977, 0xa2b000,161, 0xa2c000,12, 0xa2c040,14, 0xa2c080,20, 0xa2c104,1, 0xa2c10c,4, 0xa2c200,12, 0xa2c240,14, 0xa2c280,20, 0xa2c304,1, 0xa2c30c,4, 0xa2c400,12, 0xa2c440,14, 0xa2c480,20, 0xa2c504,1, 0xa2c50c,4, 0xa2c600,12, 0xa2c640,14, 0xa2c680,20, 0xa2c704,1, 0xa2c70c,4, 0xa2c800,12, 0xa2c840,14, 0xa2c880,20, 0xa2c904,1, 0xa2c90c,4, 0xa2ca00,12, 0xa2ca40,14, 0xa2ca80,20, 0xa2cb04,1, 0xa2cb0c,4, 0xa2cc00,12, 0xa2cc40,14, 0xa2cc80,20, 0xa2cd04,1, 0xa2cd0c,4, 0xa2ce00,12, 0xa2ce40,14, 0xa2ce80,20, 0xa2cf04,1, 0xa2cf0c,4, 0xa2d000,12, 0xa2d040,14, 0xa2d080,20, 0xa2d104,1, 0xa2d10c,4, 0xa2d200,17, 0xa2d250,2, 0xa2d260,4, 0xa2e000,1, 0xa2e014,1, 0xa2e01c,11, 0xa2e060,9, 0xa2e094,1, 0xa2e09c,11, 0xa2e0e0,15, 0xa2e200,12, 0xa2e240,13, 0xa2e280,3, 0xa2e290,1, 0xa80000,500, 0xa80800,2, 0xa80820,15, 0xa81000,500, 0xa81800,8, 0xa81824,6, 0xa81840,8, 0xa81880,7, 0xa818a0,7, 0xa818c0,7, 0xa818e0,7, 0xa81900,8, 0xa81924,16, 0xa81980,12, 0xa82000,500, 0xa82800,2, 0xa82820,15, 0xa83000,500, 0xa83800,8, 0xa83824,6, 0xa83840,8, 0xa83880,7, 0xa838a0,7, 0xa838c0,7, 0xa838e0,7, 0xa83900,8, 0xa83924,16, 0xa83980,12, 0xa84004,5, 0xa84200,26, 0xa84280,4, 0xa842c0,25, 0xa84340,6, 0xa84360,1, 0xa84368,2, 0xa84374,11, 0xa843a4,10, 0xa84400,1, 0xa88000,52, 0xa88400,82, 0xa88560,6, 0xa88600,41, 0xa88700,2, 0xa88720,19, 0xa88800,25, 0xa88880,1, 0xa88900,28, 0xa88980,1, 0xa89000,52, 0xa89400,82, 0xa89560,6, 0xa89600,41, 0xa89700,2, 0xa89720,19, 0xa89800,25, 0xa89880,1, 0xa89900,28, 0xa89980,1, 0xa8a000,7, 0xa8a080,6, 0xa8a0a0,6, 0xa8a0c0,1, 0xa8a100,4, 0xa8a120,9, 0xa8c000,3, 0xa8c010,6, 0xa8c200,7, 0xa8c220,6, 0xa8c240,7, 0xa8c260,6, 0xa8c280,2, 0xa8c28c,2, 0xa8c2a0,2, 0xa8c2ac,2, 0xa8c2c0,7, 0xa8c2e0,7, 0xa8c300,2, 0xa8c30c,2, 0xa8c320,6, 0xa8c400,3, 0xa8c440,12, 0xa8c800,7, 0xa8c820,14, 0xa8c880,16, 0xa8c900,7, 0xa8c920,14, 0xa8c980,16, 0xa8ca00,6, 0xa8ca20,7, 0xa8cc00,3, 0xaa0000,3, 0xaa0800,7, 0xaa0820,6, 0xaa0840,6, 0xaa0880,1, 0xaa0894,1, 0xaa089c,2, 0xaa08c0,9, 0xaa0900,18, 0xaa0a00,36, 0xaa0b00,22, 0xaa0b80,18, 0xaa0c00,3, 0xaa0c10,3, 0xaa1000,3, 0xaa1010,2, 0xaa1080,20, 0xaa1100,1, 0xaa1200,26, 0xaa1280,4, 0xaa12c0,25, 0xaa1340,6, 0xaa1360,1, 0xaa1368,2, 0xaa1374,11, 0xaa13a4,4, 0xaa1400,1, 0xab0000,11, 0xab0030,19, 0xab0080,17, 0xab0100,11, 0xab0130,19, 0xab0180,17, 0xab0200,3, 0xab0214,1, 0xab021c,1, 0xab0280,3, 0xab0294,1, 0xab029c,1, 0xab0300,18, 0xab0380,18, 0xab0400,18, 0xab0480,18, 0xab0500,18, 0xab0580,18, 0xab0600,18, 0xab0680,18, 0xab0700,13, 0xab0738,6, 0xab0780,13, 0xab07b8,6, 0xab0800,1, 0xab0808,22, 0xab0880,1, 0xab0894,13, 0xab0900,3, 0xab0910,3, 0xab0920,3, 0xab0940,3, 0xab0954,1, 0xab095c,1, 0xab0a00,52, 0xab0c00,4, 0xab0d00,34, 0xab0e00,4, 0xab0e80,30, 0xab0f00,1, 0xab0f40,5, 0xab0f60,5, 0xab0f80,6, 0xab1000,14, 0xab1040,4, 0xab1060,17, 0xab10c0,6, 0xab10e0,1, 0xab10e8,2, 0xab10f4,11, 0xab1124,17, 0xab1200,3, 0xab1210,3, 0xab1220,3, 0xab1230,3, 0xab1240,3, 0xab1250,3, 0xab2000,20, 0xab2080,3, 0xab2090,1, 0xab2098,2, 0xac0000,500, 0xac0800,2, 0xac0820,15, 0xac1000,500, 0xac1800,8, 0xac1824,6, 0xac1840,8, 0xac1880,7, 0xac18a0,7, 0xac18c0,7, 0xac18e0,7, 0xac1900,8, 0xac1924,16, 0xac1980,12, 0xac2000,500, 0xac2800,2, 0xac2820,15, 0xac3000,500, 0xac3800,8, 0xac3824,6, 0xac3840,8, 0xac3880,7, 0xac38a0,7, 0xac38c0,7, 0xac38e0,7, 0xac3900,8, 0xac3924,16, 0xac3980,12, 0xac4004,5, 0xac4200,26, 0xac4280,4, 0xac42c0,25, 0xac4340,6, 0xac4360,1, 0xac4368,2, 0xac4374,11, 0xac43a4,10, 0xac4400,1, 0xac8000,52, 0xac8400,82, 0xac8560,6, 0xac8600,41, 0xac8700,2, 0xac8720,19, 0xac8800,25, 0xac8880,1, 0xac8900,28, 0xac8980,1, 0xac9000,52, 0xac9400,82, 0xac9560,6, 0xac9600,41, 0xac9700,2, 0xac9720,19, 0xac9800,25, 0xac9880,1, 0xac9900,28, 0xac9980,1, 0xaca000,7, 0xaca080,6, 0xaca0a0,6, 0xaca0c0,1, 0xaca100,4, 0xaca120,9, 0xacc000,3, 0xacc010,6, 0xacc200,7, 0xacc220,6, 0xacc240,7, 0xacc260,6, 0xacc280,2, 0xacc28c,2, 0xacc2a0,2, 0xacc2ac,2, 0xacc2c0,7, 0xacc2e0,7, 0xacc300,2, 0xacc30c,2, 0xacc320,6, 0xacc400,3, 0xacc440,12, 0xacc800,7, 0xacc820,14, 0xacc880,16, 0xacc900,7, 0xacc920,14, 0xacc980,16, 0xacca00,6, 0xacca20,7, 0xaccc00,3, 0xae0000,3, 0xae0800,7, 0xae0820,6, 0xae0840,6, 0xae0880,1, 0xae0894,1, 0xae089c,2, 0xae08c0,9, 0xae0900,18, 0xae0a00,36, 0xae0b00,22, 0xae0b80,18, 0xae0c00,3, 0xae0c10,3, 0xae1000,3, 0xae1010,2, 0xae1080,20, 0xae1100,1, 0xae1200,26, 0xae1280,4, 0xae12c0,25, 0xae1340,6, 0xae1360,1, 0xae1368,2, 0xae1374,11, 0xae13a4,4, 0xae1400,1, 0xaf0000,11, 0xaf0030,19, 0xaf0080,17, 0xaf0100,11, 0xaf0130,19, 0xaf0180,17, 0xaf0200,3, 0xaf0214,1, 0xaf021c,1, 0xaf0280,3, 0xaf0294,1, 0xaf029c,1, 0xaf0300,18, 0xaf0380,18, 0xaf0400,18, 0xaf0480,18, 0xaf0500,18, 0xaf0580,18, 0xaf0600,18, 0xaf0680,18, 0xaf0700,13, 0xaf0738,6, 0xaf0780,13, 0xaf07b8,6, 0xaf0800,1, 0xaf0808,22, 0xaf0880,1, 0xaf0894,13, 0xaf0900,3, 0xaf0910,3, 0xaf0920,3, 0xaf0940,3, 0xaf0954,1, 0xaf095c,1, 0xaf0a00,52, 0xaf0c00,4, 0xaf0d00,34, 0xaf0e00,4, 0xaf0e80,30, 0xaf0f00,1, 0xaf0f40,5, 0xaf0f60,5, 0xaf0f80,6, 0xaf1000,14, 0xaf1040,4, 0xaf1060,17, 0xaf10c0,6, 0xaf10e0,1, 0xaf10e8,2, 0xaf10f4,11, 0xaf1124,17, 0xaf1200,3, 0xaf1210,3, 0xaf1220,3, 0xaf1230,3, 0xaf1240,3, 0xaf1250,3, 0xaf2000,20, 0xaf2080,3, 0xaf2090,1, 0xaf2098,2, 0xb00000,13, 0xb00038,4, 0xb00050,3, 0xb00060,3, 0xb00070,16, 0xb000c0,5, 0xb00400,14, 0xb00440,2, 0xb0044c,3, 0xb00480,14, 0xb004c0,2, 0xb004cc,3, 0xb00500,1, 0xb00508,15, 0xb00560,2, 0xb0056c,2, 0xb00600,4, 0xb00680,27, 0xb00800,2, 0xb00900,32, 0xb00984,2, 0xb00990,4, 0xb00a00,26, 0xb00a80,4, 0xb00ac0,25, 0xb00b40,6, 0xb00b60,1, 0xb00b68,2, 0xb00b74,11, 0xb00ba4,8, 0xb00c00,9, 0xb00c40,11, 0xb00c80,23, 0xb00ce0,15, 0xb00d20,15, 0xb00d60,1, 0xb01000,13, 0xb01038,4, 0xb01050,3, 0xb01060,3, 0xb01070,16, 0xb010c0,5, 0xb01400,14, 0xb01440,2, 0xb0144c,3, 0xb01480,14, 0xb014c0,2, 0xb014cc,3, 0xb01500,1, 0xb01508,15, 0xb01560,2, 0xb0156c,2, 0xb01600,4, 0xb01680,27, 0xb01800,2, 0xb01900,32, 0xb01984,2, 0xb01990,4, 0xb01a00,26, 0xb01a80,4, 0xb01ac0,25, 0xb01b40,6, 0xb01b60,1, 0xb01b68,2, 0xb01b74,11, 0xb01ba4,8, 0xb01c00,9, 0xb01c40,11, 0xb01c80,23, 0xb01ce0,15, 0xb01d20,15, 0xb01d60,1, 0xb02000,1, 0xb02100,36, 0xb02200,7, 0xb10000,22, 0xb10080,22, 0xb10100,12, 0xb10140,12, 0xb10200,52, 0xb10300,52, 0xb10400,11, 0xb10440,11, 0xb10480,3, 0xb104a0,6, 0xb104c0,6, 0xb104e0,3, 0xb104f0,3, 0xb10800,9, 0xb10840,15, 0xb10880,15, 0xb108c0,15, 0xb10900,1, 0xb10914,13, 0xb10980,17, 0xb11000,17, 0xb11080,17, 0xb11104,5, 0xb11120,3, 0xb11130,11, 0xb11200,31, 0xb11280,31, 0xb11300,12, 0xb11340,12, 0xb11380,2, 0xb11390,2, 0xb113a0,3, 0xb113b0,3, 0xb113c0,5, 0xb113e0,5, 0xb11400,3, 0xb11410,3, 0xb11420,3, 0xb11430,3, 0xb11440,3, 0xb11450,3, 0xb11460,7, 0xb11800,26, 0xb11880,4, 0xb118c0,25, 0xb11940,6, 0xb11960,1, 0xb11968,2, 0xb11974,11, 0xb119a4,12, 0xb11a00,4, 0xb11b00,43, 0xb11c00,4, 0xb11c20,7, 0xb11c40,3, 0xb11c50,1, 0xb11c60,3, 0xb11e00,32, 0xb11e84,1, 0xb11e90,4, 0xb11ea4,1, 0xb11eb4,14, 0xb11ef0,2, 0xb11f04,1, 0xb11f10,8, 0xb11f34,6, 0xb12000,3, 0xb12010,21, 0xb12080,1, 0xb12094,1, 0xb1209c,5, 0xb12100,15, 0xb12140,1, 0xb12180,6, 0xb14000,22, 0xb14080,22, 0xb14100,12, 0xb14140,12, 0xb14200,52, 0xb14300,52, 0xb14400,11, 0xb14440,11, 0xb14480,3, 0xb144a0,6, 0xb144c0,6, 0xb144e0,3, 0xb144f0,3, 0xb14800,9, 0xb14840,15, 0xb14880,15, 0xb148c0,15, 0xb14900,1, 0xb14914,13, 0xb14980,17, 0xb15000,17, 0xb15080,17, 0xb15104,5, 0xb15120,3, 0xb15130,11, 0xb15200,31, 0xb15280,31, 0xb15300,12, 0xb15340,12, 0xb15380,2, 0xb15390,2, 0xb153a0,3, 0xb153b0,3, 0xb153c0,5, 0xb153e0,5, 0xb15400,3, 0xb15410,3, 0xb15420,3, 0xb15430,3, 0xb15440,3, 0xb15450,3, 0xb15460,7, 0xb15800,26, 0xb15880,4, 0xb158c0,25, 0xb15940,6, 0xb15960,1, 0xb15968,2, 0xb15974,11, 0xb159a4,12, 0xb15a00,4, 0xb15b00,43, 0xb15c00,4, 0xb15c20,7, 0xb15c40,3, 0xb15c50,1, 0xb15c60,3, 0xb15e00,32, 0xb15e84,1, 0xb15e90,4, 0xb15ea4,1, 0xb15eb4,14, 0xb15ef0,2, 0xb15f04,1, 0xb15f10,8, 0xb15f34,6, 0xb16000,3, 0xb16010,21, 0xb16080,1, 0xb16094,1, 0xb1609c,5, 0xb16100,15, 0xb16140,1, 0xb16180,6, 0xb18000,100, 0xb18200,3, 0xb18210,5, 0xb20000,12, 0xb20040,2, 0xb20050,3, 0xb22000,1006, 0xb23000,31, 0xb23084,6, 0xb24004,1, 0xb2400c,3, 0xb24200,23, 0xb24280,23, 0xb24300,1, 0xb24400,1, 0xb24800,122, 0xb24a00,122, 0xb24c04,63, 0xb24d04,1, 0xb24d10,5, 0xb24d40,6, 0xb24d60,5, 0xb26000,1, 0xb26100,1, 0xb26108,3, 0xb26120,2, 0xb26134,8, 0xb26160,2, 0xb26174,8, 0xb261a0,4, 0xb26200,54, 0xb26800,5, 0xb26820,2, 0xb26834,1, 0xb2683c,1, 0xb26a00,24, 0xb26a80,24, 0xb26b00,1, 0xb26c00,6, 0xb26c24,5, 0xb26c40,16, 0xb27000,1, 0xb27020,5, 0xb27040,1, 0xb27048,2, 0xb27080,1, 0xb27100,4, 0xb27180,24, 0xb27200,4, 0xb27280,27, 0xb27300,2, 0xb2730c,3, 0xb28004,1, 0xb2800c,3, 0xb28020,1, 0xb28100,2, 0xb28110,3, 0xb28120,2, 0xb28140,10, 0xb28180,13, 0xb28200,2, 0xb28210,3, 0xb28220,2, 0xb28240,10, 0xb28280,13, 0xb28400,14, 0xb28440,3, 0xb28450,3, 0xb28460,1, 0xb28500,36, 0xb28600,10, 0xb28640,5, 0xb28660,5, 0xb28700,27, 0xb28780,7, 0xb287a0,8, 0xb28800,27, 0xb28880,7, 0xb288a0,8, 0xb28900,27, 0xb28980,7, 0xb289a0,8, 0xb28a00,27, 0xb28a80,7, 0xb28aa0,8, 0xb28b00,48, 0xb28bc4,8, 0xb28bf0,30, 0xb28c80,4, 0xb28cc0,25, 0xb28d40,6, 0xb28d60,1, 0xb28d68,2, 0xb28d74,3, 0xb28e00,8, 0xb28e24,28, 0xb29000,4, 0xb29080,23, 0xb29100,14, 0xb29140,9, 0xb29200,10, 0xb29230,3, 0xb29240,5, 0xb29260,5, 0xb29280,9, 0xb29400,67, 0xb29600,10, 0xb30000,12, 0xb30040,2, 0xb30050,3, 0xb32000,1006, 0xb33000,31, 0xb33084,6, 0xb34004,1, 0xb3400c,3, 0xb34200,23, 0xb34280,23, 0xb34300,1, 0xb34400,1, 0xb34800,122, 0xb34a00,122, 0xb34c04,63, 0xb34d04,1, 0xb34d10,5, 0xb34d40,6, 0xb34d60,5, 0xb36000,1, 0xb36100,1, 0xb36108,3, 0xb36120,2, 0xb36134,8, 0xb36160,2, 0xb36174,8, 0xb361a0,4, 0xb36200,54, 0xb36800,5, 0xb36820,2, 0xb36834,1, 0xb3683c,1, 0xb36a00,24, 0xb36a80,24, 0xb36b00,1, 0xb36c00,6, 0xb36c24,5, 0xb36c40,16, 0xb37000,1, 0xb37020,5, 0xb37040,1, 0xb37048,2, 0xb37080,1, 0xb37100,4, 0xb37180,24, 0xb37200,4, 0xb37280,27, 0xb37300,2, 0xb3730c,3, 0xb38004,1, 0xb3800c,3, 0xb38020,1, 0xb38100,2, 0xb38110,3, 0xb38120,2, 0xb38140,10, 0xb38180,13, 0xb38200,2, 0xb38210,3, 0xb38220,2, 0xb38240,10, 0xb38280,13, 0xb38400,14, 0xb38440,3, 0xb38450,3, 0xb38460,1, 0xb38500,36, 0xb38600,10, 0xb38640,5, 0xb38660,5, 0xb38700,27, 0xb38780,7, 0xb387a0,8, 0xb38800,27, 0xb38880,7, 0xb388a0,8, 0xb38900,27, 0xb38980,7, 0xb389a0,8, 0xb38a00,27, 0xb38a80,7, 0xb38aa0,8, 0xb38b00,48, 0xb38bc4,8, 0xb38bf0,30, 0xb38c80,4, 0xb38cc0,25, 0xb38d40,6, 0xb38d60,1, 0xb38d68,2, 0xb38d74,3, 0xb38e00,8, 0xb38e24,28, 0xb39000,4, 0xb39080,23, 0xb39100,14, 0xb39140,9, 0xb39200,10, 0xb39230,3, 0xb39240,5, 0xb39260,5, 0xb39280,9, 0xb39400,67, 0xb39600,10, 0xc00000,1, 0xc00020,3, 0xc00030,2, 0xc00040,3, 0xc00050,2, 0xc00800,53, 0xc00900,3, 0xc00910,13, 0xc00a00,53, 0xc00b00,3, 0xc00b10,13, 0xc00c00,5, 0xc00c20,5, 0xc00c40,18, 0xc01000,6, 0xc01020,4, 0xc01040,16, 0xc02000,20, 0xc02080,15, 0xc02100,20, 0xc02180,15, 0xc02200,23, 0xc02260,7, 0xc02400,11, 0xc02430,3, 0xc02440,3, 0xc02450,3, 0xc02460,24, 0xc02500,11, 0xc02530,3, 0xc02540,3, 0xc02550,3, 0xc02560,24, 0xc02600,11, 0xc02630,3, 0xc02640,3, 0xc02650,3, 0xc02660,24, 0xc02700,11, 0xc02730,3, 0xc02740,3, 0xc02750,3, 0xc02760,24, 0xc02800,4, 0xc02820,16, 0xc02880,10, 0xc028c0,10, 0xc02900,6, 0xc02920,6, 0xc02940,4, 0xc02980,13, 0xc029c0,13, 0xc02a00,9, 0xc03000,14, 0xc03040,9, 0xc03080,6, 0xc030a0,1, 0xc030a8,4, 0xc03100,4, 0xc03200,124, 0xc03400,124, 0xc03600,8, 0xc03624,1, 0xc03644,6, 0xc03664,6, 0xc03680,1, 0xc03688,6, 0xc036a8,22, 0xc04000,1, 0xc04020,3, 0xc04030,2, 0xc04040,3, 0xc04050,2, 0xc04800,53, 0xc04900,3, 0xc04910,13, 0xc04a00,53, 0xc04b00,3, 0xc04b10,13, 0xc04c00,5, 0xc04c20,5, 0xc04c40,18, 0xc05000,6, 0xc05020,4, 0xc05040,16, 0xc06000,20, 0xc06080,15, 0xc06100,20, 0xc06180,15, 0xc06200,23, 0xc06260,7, 0xc06400,11, 0xc06430,3, 0xc06440,3, 0xc06450,3, 0xc06460,24, 0xc06500,11, 0xc06530,3, 0xc06540,3, 0xc06550,3, 0xc06560,24, 0xc06600,11, 0xc06630,3, 0xc06640,3, 0xc06650,3, 0xc06660,24, 0xc06700,11, 0xc06730,3, 0xc06740,3, 0xc06750,3, 0xc06760,24, 0xc06800,4, 0xc06820,16, 0xc06880,10, 0xc068c0,10, 0xc06900,6, 0xc06920,6, 0xc06940,4, 0xc06980,13, 0xc069c0,13, 0xc06a00,9, 0xc07000,14, 0xc07040,9, 0xc07080,6, 0xc070a0,1, 0xc070a8,4, 0xc07100,4, 0xc07200,124, 0xc07400,124, 0xc07600,8, 0xc07624,1, 0xc07644,6, 0xc07664,6, 0xc07680,1, 0xc07688,6, 0xc076a8,22, 0xc08000,84, 0xc08180,20, 0xc08200,5, 0xc08400,11, 0xc08440,11, 0xc08480,19, 0xc08500,19, 0xc08580,24, 0xc08600,13, 0xc08800,84, 0xc08980,20, 0xc08a00,5, 0xc08c00,11, 0xc08c40,11, 0xc08c80,19, 0xc08d00,19, 0xc08d80,24, 0xc08e00,13, 0xc09000,10, 0xc09040,5, 0xc09080,10, 0xc090c0,5, 0xc09100,5, 0xc09200,11, 0xc09230,3, 0xc09240,5, 0xc09260,5, 0xc09280,32, 0xc09400,13, 0xc09440,13, 0xc09480,9, 0xc094c0,1, 0xc094d0,5, 0xc094f0,21, 0xc09800,10, 0xc09840,5, 0xc09880,10, 0xc098c0,5, 0xc09900,5, 0xc09a00,11, 0xc09a30,3, 0xc09a40,5, 0xc09a60,5, 0xc09a80,32, 0xc09c00,13, 0xc09c40,13, 0xc09c80,9, 0xc09cc0,1, 0xc09cd0,5, 0xc09cf0,21, 0xc0a000,14, 0xc0a040,9, 0xc0a080,6, 0xc0a0a0,1, 0xc0a0a8,4, 0xc0a100,7, 0xc0a120,3, 0xc0a130,25, 0xc0c000,26, 0xc0c06c,2, 0xc0c080,3, 0xc0c090,17, 0xc0c100,26, 0xc0c16c,2, 0xc0c180,3, 0xc0c190,17, 0xc0c200,26, 0xc0c26c,2, 0xc0c280,3, 0xc0c290,17, 0xc0c300,26, 0xc0c36c,2, 0xc0c380,3, 0xc0c390,17, 0xc0c400,26, 0xc0c46c,2, 0xc0c480,3, 0xc0c490,17, 0xc0c500,26, 0xc0c56c,2, 0xc0c580,3, 0xc0c590,17, 0xc0c600,26, 0xc0c66c,2, 0xc0c680,3, 0xc0c690,17, 0xc0c700,26, 0xc0c76c,2, 0xc0c780,3, 0xc0c790,17, 0xc0c800,12, 0xc0c844,1, 0xc0c854,8, 0xc0c880,7, 0xc0c8a0,2, 0xc0c8ac,2, 0xc0c8c0,26, 0xc0c980,4, 0xc0c9a0,5, 0xc0c9c0,1, 0xc0d000,3, 0xc0d010,3, 0xc0d020,3, 0xc0d030,3, 0xc0d040,3, 0xc0d050,3, 0xc0d060,3, 0xc0d070,3, 0xc0d080,5, 0xc0d0a0,5, 0xc0d0c0,5, 0xc0d0e0,5, 0xc0d100,5, 0xc0d120,5, 0xc0d140,5, 0xc0d160,5, 0xc0d200,68, 0xc0d400,1, 0xc0d804,1, 0xc0d844,54, 0xc0da00,11, 0xc0da40,11, 0xc0da80,11, 0xc0dac0,11, 0xc0db00,11, 0xc0db40,11, 0xc0db80,11, 0xc0dbc0,11, 0xc0dc00,28, 0xc0dc80,5, 0xc0dca0,2, 0xc0e000,4, 0xc0e020,6, 0xc0e040,6, 0xc0e060,14, 0xc0e100,26, 0xc0e180,15, 0xc0e200,14, 0xc0e240,9, 0xc0e280,6, 0xc0e2a0,1, 0xc0e2a8,4, 0xc0e300,14, 0xc0e340,9, 0xc0e380,6, 0xc0e3a0,4, 0xc0e400,9, 0xc20000,1, 0xc21000,977, 0xc22000,161, 0xc23000,977, 0xc24000,977, 0xc25000,977, 0xc26000,977, 0xc27000,977, 0xc28000,977, 0xc29000,977, 0xc2a000,977, 0xc2b000,161, 0xc2c000,12, 0xc2c040,14, 0xc2c080,20, 0xc2c104,1, 0xc2c10c,4, 0xc2c200,12, 0xc2c240,14, 0xc2c280,20, 0xc2c304,1, 0xc2c30c,4, 0xc2c400,12, 0xc2c440,14, 0xc2c480,20, 0xc2c504,1, 0xc2c50c,4, 0xc2c600,12, 0xc2c640,14, 0xc2c680,20, 0xc2c704,1, 0xc2c70c,4, 0xc2c800,12, 0xc2c840,14, 0xc2c880,20, 0xc2c904,1, 0xc2c90c,4, 0xc2ca00,12, 0xc2ca40,14, 0xc2ca80,20, 0xc2cb04,1, 0xc2cb0c,4, 0xc2cc00,12, 0xc2cc40,14, 0xc2cc80,20, 0xc2cd04,1, 0xc2cd0c,4, 0xc2ce00,12, 0xc2ce40,14, 0xc2ce80,20, 0xc2cf04,1, 0xc2cf0c,4, 0xc2d000,12, 0xc2d040,14, 0xc2d080,20, 0xc2d104,1, 0xc2d10c,4, 0xc2d200,17, 0xc2d250,2, 0xc2d260,4, 0xc2e000,1, 0xc2e014,1, 0xc2e01c,11, 0xc2e060,9, 0xc2e094,1, 0xc2e09c,11, 0xc2e0e0,15, 0xc2e200,12, 0xc2e240,13, 0xc2e280,3, 0xc2e290,1, 0xc80000,500, 0xc80800,2, 0xc80820,15, 0xc81000,500, 0xc81800,8, 0xc81824,6, 0xc81840,8, 0xc81880,7, 0xc818a0,7, 0xc818c0,7, 0xc818e0,7, 0xc81900,8, 0xc81924,16, 0xc81980,12, 0xc82000,500, 0xc82800,2, 0xc82820,15, 0xc83000,500, 0xc83800,8, 0xc83824,6, 0xc83840,8, 0xc83880,7, 0xc838a0,7, 0xc838c0,7, 0xc838e0,7, 0xc83900,8, 0xc83924,16, 0xc83980,12, 0xc84004,5, 0xc84200,26, 0xc84280,4, 0xc842c0,25, 0xc84340,6, 0xc84360,1, 0xc84368,2, 0xc84374,11, 0xc843a4,10, 0xc84400,1, 0xc88000,52, 0xc88400,82, 0xc88560,6, 0xc88600,41, 0xc88700,2, 0xc88720,19, 0xc88800,25, 0xc88880,1, 0xc88900,28, 0xc88980,1, 0xc89000,52, 0xc89400,82, 0xc89560,6, 0xc89600,41, 0xc89700,2, 0xc89720,19, 0xc89800,25, 0xc89880,1, 0xc89900,28, 0xc89980,1, 0xc8a000,7, 0xc8a080,6, 0xc8a0a0,6, 0xc8a0c0,1, 0xc8a100,4, 0xc8a120,9, 0xc8c000,3, 0xc8c010,6, 0xc8c200,7, 0xc8c220,6, 0xc8c240,7, 0xc8c260,6, 0xc8c280,2, 0xc8c28c,2, 0xc8c2a0,2, 0xc8c2ac,2, 0xc8c2c0,7, 0xc8c2e0,7, 0xc8c300,2, 0xc8c30c,2, 0xc8c320,6, 0xc8c400,3, 0xc8c440,12, 0xc8c800,7, 0xc8c820,14, 0xc8c880,16, 0xc8c900,7, 0xc8c920,14, 0xc8c980,16, 0xc8ca00,6, 0xc8ca20,7, 0xc8cc00,3, 0xca0000,3, 0xca0800,7, 0xca0820,6, 0xca0840,6, 0xca0880,1, 0xca0894,1, 0xca089c,2, 0xca08c0,9, 0xca0900,18, 0xca0a00,36, 0xca0b00,22, 0xca0b80,18, 0xca0c00,3, 0xca0c10,3, 0xca1000,3, 0xca1010,2, 0xca1080,20, 0xca1100,1, 0xca1200,26, 0xca1280,4, 0xca12c0,25, 0xca1340,6, 0xca1360,1, 0xca1368,2, 0xca1374,11, 0xca13a4,4, 0xca1400,1, 0xcb0000,11, 0xcb0030,19, 0xcb0080,17, 0xcb0100,11, 0xcb0130,19, 0xcb0180,17, 0xcb0200,3, 0xcb0214,1, 0xcb021c,1, 0xcb0280,3, 0xcb0294,1, 0xcb029c,1, 0xcb0300,18, 0xcb0380,18, 0xcb0400,18, 0xcb0480,18, 0xcb0500,18, 0xcb0580,18, 0xcb0600,18, 0xcb0680,18, 0xcb0700,13, 0xcb0738,6, 0xcb0780,13, 0xcb07b8,6, 0xcb0800,1, 0xcb0808,22, 0xcb0880,1, 0xcb0894,13, 0xcb0900,3, 0xcb0910,3, 0xcb0920,3, 0xcb0940,3, 0xcb0954,1, 0xcb095c,1, 0xcb0a00,52, 0xcb0c00,4, 0xcb0d00,34, 0xcb0e00,4, 0xcb0e80,30, 0xcb0f00,1, 0xcb0f40,5, 0xcb0f60,5, 0xcb0f80,6, 0xcb1000,14, 0xcb1040,4, 0xcb1060,17, 0xcb10c0,6, 0xcb10e0,1, 0xcb10e8,2, 0xcb10f4,11, 0xcb1124,17, 0xcb1200,3, 0xcb1210,3, 0xcb1220,3, 0xcb1230,3, 0xcb1240,3, 0xcb1250,3, 0xcb2000,20, 0xcb2080,3, 0xcb2090,1, 0xcb2098,2, 0xcc0000,500, 0xcc0800,2, 0xcc0820,15, 0xcc1000,500, 0xcc1800,8, 0xcc1824,6, 0xcc1840,8, 0xcc1880,7, 0xcc18a0,7, 0xcc18c0,7, 0xcc18e0,7, 0xcc1900,8, 0xcc1924,16, 0xcc1980,12, 0xcc2000,500, 0xcc2800,2, 0xcc2820,15, 0xcc3000,500, 0xcc3800,8, 0xcc3824,6, 0xcc3840,8, 0xcc3880,7, 0xcc38a0,7, 0xcc38c0,7, 0xcc38e0,7, 0xcc3900,8, 0xcc3924,16, 0xcc3980,12, 0xcc4004,5, 0xcc4200,26, 0xcc4280,4, 0xcc42c0,25, 0xcc4340,6, 0xcc4360,1, 0xcc4368,2, 0xcc4374,11, 0xcc43a4,10, 0xcc4400,1, 0xcc8000,52, 0xcc8400,82, 0xcc8560,6, 0xcc8600,41, 0xcc8700,2, 0xcc8720,19, 0xcc8800,25, 0xcc8880,1, 0xcc8900,28, 0xcc8980,1, 0xcc9000,52, 0xcc9400,82, 0xcc9560,6, 0xcc9600,41, 0xcc9700,2, 0xcc9720,19, 0xcc9800,25, 0xcc9880,1, 0xcc9900,28, 0xcc9980,1, 0xcca000,7, 0xcca080,6, 0xcca0a0,6, 0xcca0c0,1, 0xcca100,4, 0xcca120,9, 0xccc000,3, 0xccc010,6, 0xccc200,7, 0xccc220,6, 0xccc240,7, 0xccc260,6, 0xccc280,2, 0xccc28c,2, 0xccc2a0,2, 0xccc2ac,2, 0xccc2c0,7, 0xccc2e0,7, 0xccc300,2, 0xccc30c,2, 0xccc320,6, 0xccc400,3, 0xccc440,12, 0xccc800,7, 0xccc820,14, 0xccc880,16, 0xccc900,7, 0xccc920,14, 0xccc980,16, 0xccca00,6, 0xccca20,7, 0xcccc00,3, 0xce0000,3, 0xce0800,7, 0xce0820,6, 0xce0840,6, 0xce0880,1, 0xce0894,1, 0xce089c,2, 0xce08c0,9, 0xce0900,18, 0xce0a00,36, 0xce0b00,22, 0xce0b80,18, 0xce0c00,3, 0xce0c10,3, 0xce1000,3, 0xce1010,2, 0xce1080,20, 0xce1100,1, 0xce1200,26, 0xce1280,4, 0xce12c0,25, 0xce1340,6, 0xce1360,1, 0xce1368,2, 0xce1374,11, 0xce13a4,4, 0xce1400,1, 0xcf0000,11, 0xcf0030,19, 0xcf0080,17, 0xcf0100,11, 0xcf0130,19, 0xcf0180,17, 0xcf0200,3, 0xcf0214,1, 0xcf021c,1, 0xcf0280,3, 0xcf0294,1, 0xcf029c,1, 0xcf0300,18, 0xcf0380,18, 0xcf0400,18, 0xcf0480,18, 0xcf0500,18, 0xcf0580,18, 0xcf0600,18, 0xcf0680,18, 0xcf0700,13, 0xcf0738,6, 0xcf0780,13, 0xcf07b8,6, 0xcf0800,1, 0xcf0808,22, 0xcf0880,1, 0xcf0894,13, 0xcf0900,3, 0xcf0910,3, 0xcf0920,3, 0xcf0940,3, 0xcf0954,1, 0xcf095c,1, 0xcf0a00,52, 0xcf0c00,4, 0xcf0d00,34, 0xcf0e00,4, 0xcf0e80,30, 0xcf0f00,1, 0xcf0f40,5, 0xcf0f60,5, 0xcf0f80,6, 0xcf1000,14, 0xcf1040,4, 0xcf1060,17, 0xcf10c0,6, 0xcf10e0,1, 0xcf10e8,2, 0xcf10f4,11, 0xcf1124,17, 0xcf1200,3, 0xcf1210,3, 0xcf1220,3, 0xcf1230,3, 0xcf1240,3, 0xcf1250,3, 0xcf2000,20, 0xcf2080,3, 0xcf2090,1, 0xcf2098,2, 0xd00000,13, 0xd00038,4, 0xd00050,3, 0xd00060,3, 0xd00070,16, 0xd000c0,5, 0xd00400,14, 0xd00440,2, 0xd0044c,3, 0xd00480,14, 0xd004c0,2, 0xd004cc,3, 0xd00500,1, 0xd00508,15, 0xd00560,2, 0xd0056c,2, 0xd00600,4, 0xd00680,27, 0xd00800,2, 0xd00900,32, 0xd00984,2, 0xd00990,4, 0xd00a00,26, 0xd00a80,4, 0xd00ac0,25, 0xd00b40,6, 0xd00b60,1, 0xd00b68,2, 0xd00b74,11, 0xd00ba4,8, 0xd00c00,9, 0xd00c40,11, 0xd00c80,23, 0xd00ce0,15, 0xd00d20,15, 0xd00d60,1, 0xd01000,13, 0xd01038,4, 0xd01050,3, 0xd01060,3, 0xd01070,16, 0xd010c0,5, 0xd01400,14, 0xd01440,2, 0xd0144c,3, 0xd01480,14, 0xd014c0,2, 0xd014cc,3, 0xd01500,1, 0xd01508,15, 0xd01560,2, 0xd0156c,2, 0xd01600,4, 0xd01680,27, 0xd01800,2, 0xd01900,32, 0xd01984,2, 0xd01990,4, 0xd01a00,26, 0xd01a80,4, 0xd01ac0,25, 0xd01b40,6, 0xd01b60,1, 0xd01b68,2, 0xd01b74,11, 0xd01ba4,8, 0xd01c00,9, 0xd01c40,11, 0xd01c80,23, 0xd01ce0,15, 0xd01d20,15, 0xd01d60,1, 0xd02000,1, 0xd02100,36, 0xd02200,7, 0xd10000,22, 0xd10080,22, 0xd10100,12, 0xd10140,12, 0xd10200,52, 0xd10300,52, 0xd10400,11, 0xd10440,11, 0xd10480,3, 0xd104a0,6, 0xd104c0,6, 0xd104e0,3, 0xd104f0,3, 0xd10800,9, 0xd10840,15, 0xd10880,15, 0xd108c0,15, 0xd10900,1, 0xd10914,13, 0xd10980,17, 0xd11000,17, 0xd11080,17, 0xd11104,5, 0xd11120,3, 0xd11130,11, 0xd11200,31, 0xd11280,31, 0xd11300,12, 0xd11340,12, 0xd11380,2, 0xd11390,2, 0xd113a0,3, 0xd113b0,3, 0xd113c0,5, 0xd113e0,5, 0xd11400,3, 0xd11410,3, 0xd11420,3, 0xd11430,3, 0xd11440,3, 0xd11450,3, 0xd11460,7, 0xd11800,26, 0xd11880,4, 0xd118c0,25, 0xd11940,6, 0xd11960,1, 0xd11968,2, 0xd11974,11, 0xd119a4,12, 0xd11a00,4, 0xd11b00,43, 0xd11c00,4, 0xd11c20,7, 0xd11c40,3, 0xd11c50,1, 0xd11c60,3, 0xd11e00,32, 0xd11e84,1, 0xd11e90,4, 0xd11ea4,1, 0xd11eb4,14, 0xd11ef0,2, 0xd11f04,1, 0xd11f10,8, 0xd11f34,6, 0xd12000,3, 0xd12010,21, 0xd12080,1, 0xd12094,1, 0xd1209c,5, 0xd12100,15, 0xd12140,1, 0xd12180,6, 0xd14000,22, 0xd14080,22, 0xd14100,12, 0xd14140,12, 0xd14200,52, 0xd14300,52, 0xd14400,11, 0xd14440,11, 0xd14480,3, 0xd144a0,6, 0xd144c0,6, 0xd144e0,3, 0xd144f0,3, 0xd14800,9, 0xd14840,15, 0xd14880,15, 0xd148c0,15, 0xd14900,1, 0xd14914,13, 0xd14980,17, 0xd15000,17, 0xd15080,17, 0xd15104,5, 0xd15120,3, 0xd15130,11, 0xd15200,31, 0xd15280,31, 0xd15300,12, 0xd15340,12, 0xd15380,2, 0xd15390,2, 0xd153a0,3, 0xd153b0,3, 0xd153c0,5, 0xd153e0,5, 0xd15400,3, 0xd15410,3, 0xd15420,3, 0xd15430,3, 0xd15440,3, 0xd15450,3, 0xd15460,7, 0xd15800,26, 0xd15880,4, 0xd158c0,25, 0xd15940,6, 0xd15960,1, 0xd15968,2, 0xd15974,11, 0xd159a4,12, 0xd15a00,4, 0xd15b00,43, 0xd15c00,4, 0xd15c20,7, 0xd15c40,3, 0xd15c50,1, 0xd15c60,3, 0xd15e00,32, 0xd15e84,1, 0xd15e90,4, 0xd15ea4,1, 0xd15eb4,14, 0xd15ef0,2, 0xd15f04,1, 0xd15f10,8, 0xd15f34,6, 0xd16000,3, 0xd16010,21, 0xd16080,1, 0xd16094,1, 0xd1609c,5, 0xd16100,15, 0xd16140,1, 0xd16180,6, 0xd18000,100, 0xd18200,3, 0xd18210,5, 0xd20000,12, 0xd20040,2, 0xd20050,3, 0xd22000,1006, 0xd23000,31, 0xd23084,6, 0xd24004,1, 0xd2400c,3, 0xd24200,23, 0xd24280,23, 0xd24300,1, 0xd24400,1, 0xd24800,122, 0xd24a00,122, 0xd24c04,63, 0xd24d04,1, 0xd24d10,5, 0xd24d40,6, 0xd24d60,5, 0xd26000,1, 0xd26100,1, 0xd26108,3, 0xd26120,2, 0xd26134,8, 0xd26160,2, 0xd26174,8, 0xd261a0,4, 0xd26200,54, 0xd26800,5, 0xd26820,2, 0xd26834,1, 0xd2683c,1, 0xd26a00,24, 0xd26a80,24, 0xd26b00,1, 0xd26c00,6, 0xd26c24,5, 0xd26c40,16, 0xd27000,1, 0xd27020,5, 0xd27040,1, 0xd27048,2, 0xd27080,1, 0xd27100,4, 0xd27180,24, 0xd27200,4, 0xd27280,27, 0xd27300,2, 0xd2730c,3, 0xd28004,1, 0xd2800c,3, 0xd28020,1, 0xd28100,2, 0xd28110,3, 0xd28120,2, 0xd28140,10, 0xd28180,13, 0xd28200,2, 0xd28210,3, 0xd28220,2, 0xd28240,10, 0xd28280,13, 0xd28400,14, 0xd28440,3, 0xd28450,3, 0xd28460,1, 0xd28500,36, 0xd28600,10, 0xd28640,5, 0xd28660,5, 0xd28700,27, 0xd28780,7, 0xd287a0,8, 0xd28800,27, 0xd28880,7, 0xd288a0,8, 0xd28900,27, 0xd28980,7, 0xd289a0,8, 0xd28a00,27, 0xd28a80,7, 0xd28aa0,8, 0xd28b00,48, 0xd28bc4,8, 0xd28bf0,30, 0xd28c80,4, 0xd28cc0,25, 0xd28d40,6, 0xd28d60,1, 0xd28d68,2, 0xd28d74,3, 0xd28e00,8, 0xd28e24,28, 0xd29000,4, 0xd29080,23, 0xd29100,14, 0xd29140,9, 0xd29200,10, 0xd29230,3, 0xd29240,5, 0xd29260,5, 0xd29280,9, 0xd29400,67, 0xd29600,10, 0xd30000,12, 0xd30040,2, 0xd30050,3, 0xd32000,1006, 0xd33000,31, 0xd33084,6, 0xd34004,1, 0xd3400c,3, 0xd34200,23, 0xd34280,23, 0xd34300,1, 0xd34400,1, 0xd34800,122, 0xd34a00,122, 0xd34c04,63, 0xd34d04,1, 0xd34d10,5, 0xd34d40,6, 0xd34d60,5, 0xd36000,1, 0xd36100,1, 0xd36108,3, 0xd36120,2, 0xd36134,8, 0xd36160,2, 0xd36174,8, 0xd361a0,4, 0xd36200,54, 0xd36800,5, 0xd36820,2, 0xd36834,1, 0xd3683c,1, 0xd36a00,24, 0xd36a80,24, 0xd36b00,1, 0xd36c00,6, 0xd36c24,5, 0xd36c40,16, 0xd37000,1, 0xd37020,5, 0xd37040,1, 0xd37048,2, 0xd37080,1, 0xd37100,4, 0xd37180,24, 0xd37200,4, 0xd37280,27, 0xd37300,2, 0xd3730c,3, 0xd38004,1, 0xd3800c,3, 0xd38020,1, 0xd38100,2, 0xd38110,3, 0xd38120,2, 0xd38140,10, 0xd38180,13, 0xd38200,2, 0xd38210,3, 0xd38220,2, 0xd38240,10, 0xd38280,13, 0xd38400,14, 0xd38440,3, 0xd38450,3, 0xd38460,1, 0xd38500,36, 0xd38600,10, 0xd38640,5, 0xd38660,5, 0xd38700,27, 0xd38780,7, 0xd387a0,8, 0xd38800,27, 0xd38880,7, 0xd388a0,8, 0xd38900,27, 0xd38980,7, 0xd389a0,8, 0xd38a00,27, 0xd38a80,7, 0xd38aa0,8, 0xd38b00,48, 0xd38bc4,8, 0xd38bf0,30, 0xd38c80,4, 0xd38cc0,25, 0xd38d40,6, 0xd38d60,1, 0xd38d68,2, 0xd38d74,3, 0xd38e00,8, 0xd38e24,28, 0xd39000,4, 0xd39080,23, 0xd39100,14, 0xd39140,9, 0xd39200,10, 0xd39230,3, 0xd39240,5, 0xd39260,5, 0xd39280,9, 0xd39400,67, 0xd39600,10, 0xe00000,1, 0xe00020,3, 0xe00030,2, 0xe00040,3, 0xe00050,2, 0xe00800,53, 0xe00900,3, 0xe00910,13, 0xe00a00,53, 0xe00b00,3, 0xe00b10,13, 0xe00c00,5, 0xe00c20,5, 0xe00c40,18, 0xe01000,6, 0xe01020,4, 0xe01040,16, 0xe02000,20, 0xe02080,15, 0xe02100,20, 0xe02180,15, 0xe02200,23, 0xe02260,7, 0xe02400,11, 0xe02430,3, 0xe02440,3, 0xe02450,3, 0xe02460,24, 0xe02500,11, 0xe02530,3, 0xe02540,3, 0xe02550,3, 0xe02560,24, 0xe02600,11, 0xe02630,3, 0xe02640,3, 0xe02650,3, 0xe02660,24, 0xe02700,11, 0xe02730,3, 0xe02740,3, 0xe02750,3, 0xe02760,24, 0xe02800,4, 0xe02820,16, 0xe02880,10, 0xe028c0,10, 0xe02900,6, 0xe02920,6, 0xe02940,4, 0xe02980,13, 0xe029c0,13, 0xe02a00,9, 0xe03000,14, 0xe03040,9, 0xe03080,6, 0xe030a0,1, 0xe030a8,4, 0xe03100,4, 0xe03200,124, 0xe03400,124, 0xe03600,8, 0xe03624,1, 0xe03644,6, 0xe03664,6, 0xe03680,1, 0xe03688,6, 0xe036a8,22, 0xe04000,1, 0xe04020,3, 0xe04030,2, 0xe04040,3, 0xe04050,2, 0xe04800,53, 0xe04900,3, 0xe04910,13, 0xe04a00,53, 0xe04b00,3, 0xe04b10,13, 0xe04c00,5, 0xe04c20,5, 0xe04c40,18, 0xe05000,6, 0xe05020,4, 0xe05040,16, 0xe06000,20, 0xe06080,15, 0xe06100,20, 0xe06180,15, 0xe06200,23, 0xe06260,7, 0xe06400,11, 0xe06430,3, 0xe06440,3, 0xe06450,3, 0xe06460,24, 0xe06500,11, 0xe06530,3, 0xe06540,3, 0xe06550,3, 0xe06560,24, 0xe06600,11, 0xe06630,3, 0xe06640,3, 0xe06650,3, 0xe06660,24, 0xe06700,11, 0xe06730,3, 0xe06740,3, 0xe06750,3, 0xe06760,24, 0xe06800,4, 0xe06820,16, 0xe06880,10, 0xe068c0,10, 0xe06900,6, 0xe06920,6, 0xe06940,4, 0xe06980,13, 0xe069c0,13, 0xe06a00,9, 0xe07000,14, 0xe07040,9, 0xe07080,6, 0xe070a0,1, 0xe070a8,4, 0xe07100,4, 0xe07200,124, 0xe07400,124, 0xe07600,8, 0xe07624,1, 0xe07644,6, 0xe07664,6, 0xe07680,1, 0xe07688,6, 0xe076a8,22, 0xe08000,84, 0xe08180,20, 0xe08200,5, 0xe08400,11, 0xe08440,11, 0xe08480,19, 0xe08500,19, 0xe08580,24, 0xe08600,13, 0xe08800,84, 0xe08980,20, 0xe08a00,5, 0xe08c00,11, 0xe08c40,11, 0xe08c80,19, 0xe08d00,19, 0xe08d80,24, 0xe08e00,13, 0xe09000,10, 0xe09040,5, 0xe09080,10, 0xe090c0,5, 0xe09100,5, 0xe09200,11, 0xe09230,3, 0xe09240,5, 0xe09260,5, 0xe09280,32, 0xe09400,13, 0xe09440,13, 0xe09480,9, 0xe094c0,1, 0xe094d0,5, 0xe094f0,21, 0xe09800,10, 0xe09840,5, 0xe09880,10, 0xe098c0,5, 0xe09900,5, 0xe09a00,11, 0xe09a30,3, 0xe09a40,5, 0xe09a60,5, 0xe09a80,32, 0xe09c00,13, 0xe09c40,13, 0xe09c80,9, 0xe09cc0,1, 0xe09cd0,5, 0xe09cf0,21, 0xe0a000,14, 0xe0a040,9, 0xe0a080,6, 0xe0a0a0,1, 0xe0a0a8,4, 0xe0a100,7, 0xe0a120,3, 0xe0a130,25, 0xe0c000,26, 0xe0c06c,2, 0xe0c080,3, 0xe0c090,17, 0xe0c100,26, 0xe0c16c,2, 0xe0c180,3, 0xe0c190,17, 0xe0c200,26, 0xe0c26c,2, 0xe0c280,3, 0xe0c290,17, 0xe0c300,26, 0xe0c36c,2, 0xe0c380,3, 0xe0c390,17, 0xe0c400,26, 0xe0c46c,2, 0xe0c480,3, 0xe0c490,17, 0xe0c500,26, 0xe0c56c,2, 0xe0c580,3, 0xe0c590,17, 0xe0c600,26, 0xe0c66c,2, 0xe0c680,3, 0xe0c690,17, 0xe0c700,26, 0xe0c76c,2, 0xe0c780,3, 0xe0c790,17, 0xe0c800,12, 0xe0c844,1, 0xe0c854,8, 0xe0c880,7, 0xe0c8a0,2, 0xe0c8ac,2, 0xe0c8c0,26, 0xe0c980,4, 0xe0c9a0,5, 0xe0c9c0,1, 0xe0d000,3, 0xe0d010,3, 0xe0d020,3, 0xe0d030,3, 0xe0d040,3, 0xe0d050,3, 0xe0d060,3, 0xe0d070,3, 0xe0d080,5, 0xe0d0a0,5, 0xe0d0c0,5, 0xe0d0e0,5, 0xe0d100,5, 0xe0d120,5, 0xe0d140,5, 0xe0d160,5, 0xe0d200,68, 0xe0d400,1, 0xe0d804,1, 0xe0d844,54, 0xe0da00,11, 0xe0da40,11, 0xe0da80,11, 0xe0dac0,11, 0xe0db00,11, 0xe0db40,11, 0xe0db80,11, 0xe0dbc0,11, 0xe0dc00,28, 0xe0dc80,5, 0xe0dca0,2, 0xe0e000,4, 0xe0e020,6, 0xe0e040,6, 0xe0e060,14, 0xe0e100,26, 0xe0e180,15, 0xe0e200,14, 0xe0e240,9, 0xe0e280,6, 0xe0e2a0,1, 0xe0e2a8,4, 0xe0e300,14, 0xe0e340,9, 0xe0e380,6, 0xe0e3a0,4, 0xe0e400,9, 0xe20000,1, 0xe21000,977, 0xe22000,161, 0xe23000,977, 0xe24000,977, 0xe25000,977, 0xe26000,977, 0xe27000,977, 0xe28000,977, 0xe29000,977, 0xe2a000,977, 0xe2b000,161, 0xe2c000,12, 0xe2c040,14, 0xe2c080,20, 0xe2c104,1, 0xe2c10c,4, 0xe2c200,12, 0xe2c240,14, 0xe2c280,20, 0xe2c304,1, 0xe2c30c,4, 0xe2c400,12, 0xe2c440,14, 0xe2c480,20, 0xe2c504,1, 0xe2c50c,4, 0xe2c600,12, 0xe2c640,14, 0xe2c680,20, 0xe2c704,1, 0xe2c70c,4, 0xe2c800,12, 0xe2c840,14, 0xe2c880,20, 0xe2c904,1, 0xe2c90c,4, 0xe2ca00,12, 0xe2ca40,14, 0xe2ca80,20, 0xe2cb04,1, 0xe2cb0c,4, 0xe2cc00,12, 0xe2cc40,14, 0xe2cc80,20, 0xe2cd04,1, 0xe2cd0c,4, 0xe2ce00,12, 0xe2ce40,14, 0xe2ce80,20, 0xe2cf04,1, 0xe2cf0c,4, 0xe2d000,12, 0xe2d040,14, 0xe2d080,20, 0xe2d104,1, 0xe2d10c,4, 0xe2d200,17, 0xe2d250,2, 0xe2d260,4, 0xe2e000,1, 0xe2e014,1, 0xe2e01c,11, 0xe2e060,9, 0xe2e094,1, 0xe2e09c,11, 0xe2e0e0,15, 0xe2e200,12, 0xe2e240,13, 0xe2e280,3, 0xe2e290,1, 0xe80000,500, 0xe80800,2, 0xe80820,15, 0xe81000,500, 0xe81800,8, 0xe81824,6, 0xe81840,8, 0xe81880,7, 0xe818a0,7, 0xe818c0,7, 0xe818e0,7, 0xe81900,8, 0xe81924,16, 0xe81980,12, 0xe82000,500, 0xe82800,2, 0xe82820,15, 0xe83000,500, 0xe83800,8, 0xe83824,6, 0xe83840,8, 0xe83880,7, 0xe838a0,7, 0xe838c0,7, 0xe838e0,7, 0xe83900,8, 0xe83924,16, 0xe83980,12, 0xe84004,5, 0xe84200,26, 0xe84280,4, 0xe842c0,25, 0xe84340,6, 0xe84360,1, 0xe84368,2, 0xe84374,11, 0xe843a4,10, 0xe84400,1, 0xe88000,52, 0xe88400,82, 0xe88560,6, 0xe88600,41, 0xe88700,2, 0xe88720,19, 0xe88800,25, 0xe88880,1, 0xe88900,28, 0xe88980,1, 0xe89000,52, 0xe89400,82, 0xe89560,6, 0xe89600,41, 0xe89700,2, 0xe89720,19, 0xe89800,25, 0xe89880,1, 0xe89900,28, 0xe89980,1, 0xe8a000,7, 0xe8a080,6, 0xe8a0a0,6, 0xe8a0c0,1, 0xe8a100,4, 0xe8a120,9, 0xe8c000,3, 0xe8c010,6, 0xe8c200,7, 0xe8c220,6, 0xe8c240,7, 0xe8c260,6, 0xe8c280,2, 0xe8c28c,2, 0xe8c2a0,2, 0xe8c2ac,2, 0xe8c2c0,7, 0xe8c2e0,7, 0xe8c300,2, 0xe8c30c,2, 0xe8c320,6, 0xe8c400,3, 0xe8c440,12, 0xe8c800,7, 0xe8c820,14, 0xe8c880,16, 0xe8c900,7, 0xe8c920,14, 0xe8c980,16, 0xe8ca00,6, 0xe8ca20,7, 0xe8cc00,3, 0xea0000,3, 0xea0800,7, 0xea0820,6, 0xea0840,6, 0xea0880,1, 0xea0894,1, 0xea089c,2, 0xea08c0,9, 0xea0900,18, 0xea0a00,36, 0xea0b00,22, 0xea0b80,18, 0xea0c00,3, 0xea0c10,3, 0xea1000,3, 0xea1010,2, 0xea1080,20, 0xea1100,1, 0xea1200,26, 0xea1280,4, 0xea12c0,25, 0xea1340,6, 0xea1360,1, 0xea1368,2, 0xea1374,11, 0xea13a4,4, 0xea1400,1, 0xeb0000,11, 0xeb0030,19, 0xeb0080,17, 0xeb0100,11, 0xeb0130,19, 0xeb0180,17, 0xeb0200,3, 0xeb0214,1, 0xeb021c,1, 0xeb0280,3, 0xeb0294,1, 0xeb029c,1, 0xeb0300,18, 0xeb0380,18, 0xeb0400,18, 0xeb0480,18, 0xeb0500,18, 0xeb0580,18, 0xeb0600,18, 0xeb0680,18, 0xeb0700,13, 0xeb0738,6, 0xeb0780,13, 0xeb07b8,6, 0xeb0800,1, 0xeb0808,22, 0xeb0880,1, 0xeb0894,13, 0xeb0900,3, 0xeb0910,3, 0xeb0920,3, 0xeb0940,3, 0xeb0954,1, 0xeb095c,1, 0xeb0a00,52, 0xeb0c00,4, 0xeb0d00,34, 0xeb0e00,4, 0xeb0e80,30, 0xeb0f00,1, 0xeb0f40,5, 0xeb0f60,5, 0xeb0f80,6, 0xeb1000,14, 0xeb1040,4, 0xeb1060,17, 0xeb10c0,6, 0xeb10e0,1, 0xeb10e8,2, 0xeb10f4,11, 0xeb1124,17, 0xeb1200,3, 0xeb1210,3, 0xeb1220,3, 0xeb1230,3, 0xeb1240,3, 0xeb1250,3, 0xeb2000,20, 0xeb2080,3, 0xeb2090,1, 0xeb2098,2, 0xec0000,500, 0xec0800,2, 0xec0820,15, 0xec1000,500, 0xec1800,8, 0xec1824,6, 0xec1840,8, 0xec1880,7, 0xec18a0,7, 0xec18c0,7, 0xec18e0,7, 0xec1900,8, 0xec1924,16, 0xec1980,12, 0xec2000,500, 0xec2800,2, 0xec2820,15, 0xec3000,500, 0xec3800,8, 0xec3824,6, 0xec3840,8, 0xec3880,7, 0xec38a0,7, 0xec38c0,7, 0xec38e0,7, 0xec3900,8, 0xec3924,16, 0xec3980,12, 0xec4004,5, 0xec4200,26, 0xec4280,4, 0xec42c0,25, 0xec4340,6, 0xec4360,1, 0xec4368,2, 0xec4374,11, 0xec43a4,10, 0xec4400,1, 0xec8000,52, 0xec8400,82, 0xec8560,6, 0xec8600,41, 0xec8700,2, 0xec8720,19, 0xec8800,25, 0xec8880,1, 0xec8900,28, 0xec8980,1, 0xec9000,52, 0xec9400,82, 0xec9560,6, 0xec9600,41, 0xec9700,2, 0xec9720,19, 0xec9800,25, 0xec9880,1, 0xec9900,28, 0xec9980,1, 0xeca000,7, 0xeca080,6, 0xeca0a0,6, 0xeca0c0,1, 0xeca100,4, 0xeca120,9, 0xecc000,3, 0xecc010,6, 0xecc200,7, 0xecc220,6, 0xecc240,7, 0xecc260,6, 0xecc280,2, 0xecc28c,2, 0xecc2a0,2, 0xecc2ac,2, 0xecc2c0,7, 0xecc2e0,7, 0xecc300,2, 0xecc30c,2, 0xecc320,6, 0xecc400,3, 0xecc440,12, 0xecc800,7, 0xecc820,14, 0xecc880,16, 0xecc900,7, 0xecc920,14, 0xecc980,16, 0xecca00,6, 0xecca20,7, 0xeccc00,3, 0xee0000,3, 0xee0800,7, 0xee0820,6, 0xee0840,6, 0xee0880,1, 0xee0894,1, 0xee089c,2, 0xee08c0,9, 0xee0900,18, 0xee0a00,36, 0xee0b00,22, 0xee0b80,18, 0xee0c00,3, 0xee0c10,3, 0xee1000,3, 0xee1010,2, 0xee1080,20, 0xee1100,1, 0xee1200,26, 0xee1280,4, 0xee12c0,25, 0xee1340,6, 0xee1360,1, 0xee1368,2, 0xee1374,11, 0xee13a4,4, 0xee1400,1, 0xef0000,11, 0xef0030,19, 0xef0080,17, 0xef0100,11, 0xef0130,19, 0xef0180,17, 0xef0200,3, 0xef0214,1, 0xef021c,1, 0xef0280,3, 0xef0294,1, 0xef029c,1, 0xef0300,18, 0xef0380,18, 0xef0400,18, 0xef0480,18, 0xef0500,18, 0xef0580,18, 0xef0600,18, 0xef0680,18, 0xef0700,13, 0xef0738,6, 0xef0780,13, 0xef07b8,6, 0xef0800,1, 0xef0808,22, 0xef0880,1, 0xef0894,13, 0xef0900,3, 0xef0910,3, 0xef0920,3, 0xef0940,3, 0xef0954,1, 0xef095c,1, 0xef0a00,52, 0xef0c00,4, 0xef0d00,34, 0xef0e00,4, 0xef0e80,30, 0xef0f00,1, 0xef0f40,5, 0xef0f60,5, 0xef0f80,6, 0xef1000,14, 0xef1040,4, 0xef1060,17, 0xef10c0,6, 0xef10e0,1, 0xef10e8,2, 0xef10f4,11, 0xef1124,17, 0xef1200,3, 0xef1210,3, 0xef1220,3, 0xef1230,3, 0xef1240,3, 0xef1250,3, 0xef2000,20, 0xef2080,3, 0xef2090,1, 0xef2098,2, 0xf00000,13, 0xf00038,4, 0xf00050,3, 0xf00060,3, 0xf00070,16, 0xf000c0,5, 0xf00400,14, 0xf00440,2, 0xf0044c,3, 0xf00480,14, 0xf004c0,2, 0xf004cc,3, 0xf00500,1, 0xf00508,15, 0xf00560,2, 0xf0056c,2, 0xf00600,4, 0xf00680,27, 0xf00800,2, 0xf00900,32, 0xf00984,2, 0xf00990,4, 0xf00a00,26, 0xf00a80,4, 0xf00ac0,25, 0xf00b40,6, 0xf00b60,1, 0xf00b68,2, 0xf00b74,11, 0xf00ba4,8, 0xf00c00,9, 0xf00c40,11, 0xf00c80,23, 0xf00ce0,15, 0xf00d20,15, 0xf00d60,1, 0xf01000,13, 0xf01038,4, 0xf01050,3, 0xf01060,3, 0xf01070,16, 0xf010c0,5, 0xf01400,14, 0xf01440,2, 0xf0144c,3, 0xf01480,14, 0xf014c0,2, 0xf014cc,3, 0xf01500,1, 0xf01508,15, 0xf01560,2, 0xf0156c,2, 0xf01600,4, 0xf01680,27, 0xf01800,2, 0xf01900,32, 0xf01984,2, 0xf01990,4, 0xf01a00,26, 0xf01a80,4, 0xf01ac0,25, 0xf01b40,6, 0xf01b60,1, 0xf01b68,2, 0xf01b74,11, 0xf01ba4,8, 0xf01c00,9, 0xf01c40,11, 0xf01c80,23, 0xf01ce0,15, 0xf01d20,15, 0xf01d60,1, 0xf02000,1, 0xf02100,36, 0xf02200,7, 0xf10000,22, 0xf10080,22, 0xf10100,12, 0xf10140,12, 0xf10200,52, 0xf10300,52, 0xf10400,11, 0xf10440,11, 0xf10480,3, 0xf104a0,6, 0xf104c0,6, 0xf104e0,3, 0xf104f0,3, 0xf10800,9, 0xf10840,15, 0xf10880,15, 0xf108c0,15, 0xf10900,1, 0xf10914,13, 0xf10980,17, 0xf11000,17, 0xf11080,17, 0xf11104,5, 0xf11120,3, 0xf11130,11, 0xf11200,31, 0xf11280,31, 0xf11300,12, 0xf11340,12, 0xf11380,2, 0xf11390,2, 0xf113a0,3, 0xf113b0,3, 0xf113c0,5, 0xf113e0,5, 0xf11400,3, 0xf11410,3, 0xf11420,3, 0xf11430,3, 0xf11440,3, 0xf11450,3, 0xf11460,7, 0xf11800,26, 0xf11880,4, 0xf118c0,25, 0xf11940,6, 0xf11960,1, 0xf11968,2, 0xf11974,11, 0xf119a4,12, 0xf11a00,4, 0xf11b00,43, 0xf11c00,4, 0xf11c20,7, 0xf11c40,3, 0xf11c50,1, 0xf11c60,3, 0xf11e00,32, 0xf11e84,1, 0xf11e90,4, 0xf11ea4,1, 0xf11eb4,14, 0xf11ef0,2, 0xf11f04,1, 0xf11f10,8, 0xf11f34,6, 0xf12000,3, 0xf12010,21, 0xf12080,1, 0xf12094,1, 0xf1209c,5, 0xf12100,15, 0xf12140,1, 0xf12180,6, 0xf14000,22, 0xf14080,22, 0xf14100,12, 0xf14140,12, 0xf14200,52, 0xf14300,52, 0xf14400,11, 0xf14440,11, 0xf14480,3, 0xf144a0,6, 0xf144c0,6, 0xf144e0,3, 0xf144f0,3, 0xf14800,9, 0xf14840,15, 0xf14880,15, 0xf148c0,15, 0xf14900,1, 0xf14914,13, 0xf14980,17, 0xf15000,17, 0xf15080,17, 0xf15104,5, 0xf15120,3, 0xf15130,11, 0xf15200,31, 0xf15280,31, 0xf15300,12, 0xf15340,12, 0xf15380,2, 0xf15390,2, 0xf153a0,3, 0xf153b0,3, 0xf153c0,5, 0xf153e0,5, 0xf15400,3, 0xf15410,3, 0xf15420,3, 0xf15430,3, 0xf15440,3, 0xf15450,3, 0xf15460,7, 0xf15800,26, 0xf15880,4, 0xf158c0,25, 0xf15940,6, 0xf15960,1, 0xf15968,2, 0xf15974,11, 0xf159a4,12, 0xf15a00,4, 0xf15b00,43, 0xf15c00,4, 0xf15c20,7, 0xf15c40,3, 0xf15c50,1, 0xf15c60,3, 0xf15e00,32, 0xf15e84,1, 0xf15e90,4, 0xf15ea4,1, 0xf15eb4,14, 0xf15ef0,2, 0xf15f04,1, 0xf15f10,8, 0xf15f34,6, 0xf16000,3, 0xf16010,21, 0xf16080,1, 0xf16094,1, 0xf1609c,5, 0xf16100,15, 0xf16140,1, 0xf16180,6, 0xf18000,100, 0xf18200,3, 0xf18210,5, 0xf20000,12, 0xf20040,2, 0xf20050,3, 0xf22000,1006, 0xf23000,31, 0xf23084,6, 0xf24004,1, 0xf2400c,3, 0xf24200,23, 0xf24280,23, 0xf24300,1, 0xf24400,1, 0xf24800,122, 0xf24a00,122, 0xf24c04,63, 0xf24d04,1, 0xf24d10,5, 0xf24d40,6, 0xf24d60,5, 0xf26000,1, 0xf26100,1, 0xf26108,3, 0xf26120,2, 0xf26134,8, 0xf26160,2, 0xf26174,8, 0xf261a0,4, 0xf26200,54, 0xf26800,5, 0xf26820,2, 0xf26834,1, 0xf2683c,1, 0xf26a00,24, 0xf26a80,24, 0xf26b00,1, 0xf26c00,6, 0xf26c24,5, 0xf26c40,16, 0xf27000,1, 0xf27020,5, 0xf27040,1, 0xf27048,2, 0xf27080,1, 0xf27100,4, 0xf27180,24, 0xf27200,4, 0xf27280,27, 0xf27300,2, 0xf2730c,3, 0xf28004,1, 0xf2800c,3, 0xf28020,1, 0xf28100,2, 0xf28110,3, 0xf28120,2, 0xf28140,10, 0xf28180,13, 0xf28200,2, 0xf28210,3, 0xf28220,2, 0xf28240,10, 0xf28280,13, 0xf28400,14, 0xf28440,3, 0xf28450,3, 0xf28460,1, 0xf28500,36, 0xf28600,10, 0xf28640,5, 0xf28660,5, 0xf28700,27, 0xf28780,7, 0xf287a0,8, 0xf28800,27, 0xf28880,7, 0xf288a0,8, 0xf28900,27, 0xf28980,7, 0xf289a0,8, 0xf28a00,27, 0xf28a80,7, 0xf28aa0,8, 0xf28b00,48, 0xf28bc4,8, 0xf28bf0,30, 0xf28c80,4, 0xf28cc0,25, 0xf28d40,6, 0xf28d60,1, 0xf28d68,2, 0xf28d74,3, 0xf28e00,8, 0xf28e24,28, 0xf29000,4, 0xf29080,23, 0xf29100,14, 0xf29140,9, 0xf29200,10, 0xf29230,3, 0xf29240,5, 0xf29260,5, 0xf29280,9, 0xf29400,67, 0xf29600,10, 0xf30000,12, 0xf30040,2, 0xf30050,3, 0xf32000,1006, 0xf33000,31, 0xf33084,6, 0xf34004,1, 0xf3400c,3, 0xf34200,23, 0xf34280,23, 0xf34300,1, 0xf34400,1, 0xf34800,122, 0xf34a00,122, 0xf34c04,63, 0xf34d04,1, 0xf34d10,5, 0xf34d40,6, 0xf34d60,5, 0xf36000,1, 0xf36100,1, 0xf36108,3, 0xf36120,2, 0xf36134,8, 0xf36160,2, 0xf36174,8, 0xf361a0,4, 0xf36200,54, 0xf36800,5, 0xf36820,2, 0xf36834,1, 0xf3683c,1, 0xf36a00,24, 0xf36a80,24, 0xf36b00,1, 0xf36c00,6, 0xf36c24,5, 0xf36c40,16, 0xf37000,1, 0xf37020,5, 0xf37040,1, 0xf37048,2, 0xf37080,1, 0xf37100,4, 0xf37180,24, 0xf37200,4, 0xf37280,27, 0xf37300,2, 0xf3730c,3, 0xf38004,1, 0xf3800c,3, 0xf38020,1, 0xf38100,2, 0xf38110,3, 0xf38120,2, 0xf38140,10, 0xf38180,13, 0xf38200,2, 0xf38210,3, 0xf38220,2, 0xf38240,10, 0xf38280,13, 0xf38400,14, 0xf38440,3, 0xf38450,3, 0xf38460,1, 0xf38500,36, 0xf38600,10, 0xf38640,5, 0xf38660,5, 0xf38700,27, 0xf38780,7, 0xf387a0,8, 0xf38800,27, 0xf38880,7, 0xf388a0,8, 0xf38900,27, 0xf38980,7, 0xf389a0,8, 0xf38a00,27, 0xf38a80,7, 0xf38aa0,8, 0xf38b00,48, 0xf38bc4,8, 0xf38bf0,30, 0xf38c80,4, 0xf38cc0,25, 0xf38d40,6, 0xf38d60,1, 0xf38d68,2, 0xf38d74,3, 0xf38e00,8, 0xf38e24,28, 0xf39000,4, 0xf39080,23, 0xf39100,14, 0xf39140,9, 0xf39200,10, 0xf39230,3, 0xf39240,5, 0xf39260,5, 0xf39280,9, 0xf39400,67, 0xf39600,10, 0x1000000,1, 0x1000020,3, 0x1000030,2, 0x1000040,3, 0x1000050,2, 0x1000800,53, 0x1000900,3, 0x1000910,13, 0x1000a00,53, 0x1000b00,3, 0x1000b10,13, 0x1000c00,5, 0x1000c20,5, 0x1000c40,18, 0x1001000,6, 0x1001020,4, 0x1001040,16, 0x1002000,20, 0x1002080,15, 0x1002100,20, 0x1002180,15, 0x1002200,23, 0x1002260,7, 0x1002400,11, 0x1002430,3, 0x1002440,3, 0x1002450,3, 0x1002460,24, 0x1002500,11, 0x1002530,3, 0x1002540,3, 0x1002550,3, 0x1002560,24, 0x1002600,11, 0x1002630,3, 0x1002640,3, 0x1002650,3, 0x1002660,24, 0x1002700,11, 0x1002730,3, 0x1002740,3, 0x1002750,3, 0x1002760,24, 0x1002800,4, 0x1002820,16, 0x1002880,10, 0x10028c0,10, 0x1002900,6, 0x1002920,6, 0x1002940,4, 0x1002980,13, 0x10029c0,13, 0x1002a00,9, 0x1003000,14, 0x1003040,9, 0x1003080,6, 0x10030a0,1, 0x10030a8,4, 0x1003100,4, 0x1003200,124, 0x1003400,124, 0x1003600,8, 0x1003624,1, 0x1003644,6, 0x1003664,6, 0x1003680,1, 0x1003688,6, 0x10036a8,22, 0x1004000,1, 0x1004020,3, 0x1004030,2, 0x1004040,3, 0x1004050,2, 0x1004800,53, 0x1004900,3, 0x1004910,13, 0x1004a00,53, 0x1004b00,3, 0x1004b10,13, 0x1004c00,5, 0x1004c20,5, 0x1004c40,18, 0x1005000,6, 0x1005020,4, 0x1005040,16, 0x1006000,20, 0x1006080,15, 0x1006100,20, 0x1006180,15, 0x1006200,23, 0x1006260,7, 0x1006400,11, 0x1006430,3, 0x1006440,3, 0x1006450,3, 0x1006460,24, 0x1006500,11, 0x1006530,3, 0x1006540,3, 0x1006550,3, 0x1006560,24, 0x1006600,11, 0x1006630,3, 0x1006640,3, 0x1006650,3, 0x1006660,24, 0x1006700,11, 0x1006730,3, 0x1006740,3, 0x1006750,3, 0x1006760,24, 0x1006800,4, 0x1006820,16, 0x1006880,10, 0x10068c0,10, 0x1006900,6, 0x1006920,6, 0x1006940,4, 0x1006980,13, 0x10069c0,13, 0x1006a00,9, 0x1007000,14, 0x1007040,9, 0x1007080,6, 0x10070a0,1, 0x10070a8,4, 0x1007100,4, 0x1007200,124, 0x1007400,124, 0x1007600,8, 0x1007624,1, 0x1007644,6, 0x1007664,6, 0x1007680,1, 0x1007688,6, 0x10076a8,22, 0x1008000,84, 0x1008180,20, 0x1008200,5, 0x1008400,11, 0x1008440,11, 0x1008480,19, 0x1008500,19, 0x1008580,24, 0x1008600,13, 0x1008800,84, 0x1008980,20, 0x1008a00,5, 0x1008c00,11, 0x1008c40,11, 0x1008c80,19, 0x1008d00,19, 0x1008d80,24, 0x1008e00,13, 0x1009000,10, 0x1009040,5, 0x1009080,10, 0x10090c0,5, 0x1009100,5, 0x1009200,11, 0x1009230,3, 0x1009240,5, 0x1009260,5, 0x1009280,32, 0x1009400,13, 0x1009440,13, 0x1009480,9, 0x10094c0,1, 0x10094d0,5, 0x10094f0,21, 0x1009800,10, 0x1009840,5, 0x1009880,10, 0x10098c0,5, 0x1009900,5, 0x1009a00,11, 0x1009a30,3, 0x1009a40,5, 0x1009a60,5, 0x1009a80,32, 0x1009c00,13, 0x1009c40,13, 0x1009c80,9, 0x1009cc0,1, 0x1009cd0,5, 0x1009cf0,21, 0x100a000,14, 0x100a040,9, 0x100a080,6, 0x100a0a0,1, 0x100a0a8,4, 0x100a100,7, 0x100a120,3, 0x100a130,25, 0x100c000,26, 0x100c06c,2, 0x100c080,3, 0x100c090,17, 0x100c100,26, 0x100c16c,2, 0x100c180,3, 0x100c190,17, 0x100c200,26, 0x100c26c,2, 0x100c280,3, 0x100c290,17, 0x100c300,26, 0x100c36c,2, 0x100c380,3, 0x100c390,17, 0x100c400,26, 0x100c46c,2, 0x100c480,3, 0x100c490,17, 0x100c500,26, 0x100c56c,2, 0x100c580,3, 0x100c590,17, 0x100c600,26, 0x100c66c,2, 0x100c680,3, 0x100c690,17, 0x100c700,26, 0x100c76c,2, 0x100c780,3, 0x100c790,17, 0x100c800,12, 0x100c844,1, 0x100c854,8, 0x100c880,7, 0x100c8a0,2, 0x100c8ac,2, 0x100c8c0,26, 0x100c980,4, 0x100c9a0,5, 0x100c9c0,1, 0x100d000,3, 0x100d010,3, 0x100d020,3, 0x100d030,3, 0x100d040,3, 0x100d050,3, 0x100d060,3, 0x100d070,3, 0x100d080,5, 0x100d0a0,5, 0x100d0c0,5, 0x100d0e0,5, 0x100d100,5, 0x100d120,5, 0x100d140,5, 0x100d160,5, 0x100d200,68, 0x100d400,1, 0x100d804,1, 0x100d844,54, 0x100da00,11, 0x100da40,11, 0x100da80,11, 0x100dac0,11, 0x100db00,11, 0x100db40,11, 0x100db80,11, 0x100dbc0,11, 0x100dc00,28, 0x100dc80,5, 0x100dca0,2, 0x100e000,4, 0x100e020,6, 0x100e040,6, 0x100e060,14, 0x100e100,26, 0x100e180,15, 0x100e200,14, 0x100e240,9, 0x100e280,6, 0x100e2a0,1, 0x100e2a8,4, 0x100e300,14, 0x100e340,9, 0x100e380,6, 0x100e3a0,4, 0x100e400,9, 0x1020000,1, 0x1021000,977, 0x1022000,161, 0x1023000,977, 0x1024000,977, 0x1025000,977, 0x1026000,977, 0x1027000,977, 0x1028000,977, 0x1029000,977, 0x102a000,977, 0x102b000,161, 0x102c000,12, 0x102c040,14, 0x102c080,20, 0x102c104,1, 0x102c10c,4, 0x102c200,12, 0x102c240,14, 0x102c280,20, 0x102c304,1, 0x102c30c,4, 0x102c400,12, 0x102c440,14, 0x102c480,20, 0x102c504,1, 0x102c50c,4, 0x102c600,12, 0x102c640,14, 0x102c680,20, 0x102c704,1, 0x102c70c,4, 0x102c800,12, 0x102c840,14, 0x102c880,20, 0x102c904,1, 0x102c90c,4, 0x102ca00,12, 0x102ca40,14, 0x102ca80,20, 0x102cb04,1, 0x102cb0c,4, 0x102cc00,12, 0x102cc40,14, 0x102cc80,20, 0x102cd04,1, 0x102cd0c,4, 0x102ce00,12, 0x102ce40,14, 0x102ce80,20, 0x102cf04,1, 0x102cf0c,4, 0x102d000,12, 0x102d040,14, 0x102d080,20, 0x102d104,1, 0x102d10c,4, 0x102d200,17, 0x102d250,2, 0x102d260,4, 0x102e000,1, 0x102e014,1, 0x102e01c,11, 0x102e060,9, 0x102e094,1, 0x102e09c,11, 0x102e0e0,15, 0x102e200,12, 0x102e240,13, 0x102e280,3, 0x102e290,1, 0x1080000,500, 0x1080800,2, 0x1080820,15, 0x1081000,500, 0x1081800,8, 0x1081824,6, 0x1081840,8, 0x1081880,7, 0x10818a0,7, 0x10818c0,7, 0x10818e0,7, 0x1081900,8, 0x1081924,16, 0x1081980,12, 0x1082000,500, 0x1082800,2, 0x1082820,15, 0x1083000,500, 0x1083800,8, 0x1083824,6, 0x1083840,8, 0x1083880,7, 0x10838a0,7, 0x10838c0,7, 0x10838e0,7, 0x1083900,8, 0x1083924,16, 0x1083980,12, 0x1084004,5, 0x1084200,26, 0x1084280,4, 0x10842c0,25, 0x1084340,6, 0x1084360,1, 0x1084368,2, 0x1084374,11, 0x10843a4,10, 0x1084400,1, 0x1088000,52, 0x1088400,82, 0x1088560,6, 0x1088600,41, 0x1088700,2, 0x1088720,19, 0x1088800,25, 0x1088880,1, 0x1088900,28, 0x1088980,1, 0x1089000,52, 0x1089400,82, 0x1089560,6, 0x1089600,41, 0x1089700,2, 0x1089720,19, 0x1089800,25, 0x1089880,1, 0x1089900,28, 0x1089980,1, 0x108a000,7, 0x108a080,6, 0x108a0a0,6, 0x108a0c0,1, 0x108a100,4, 0x108a120,9, 0x108c000,3, 0x108c010,6, 0x108c200,7, 0x108c220,6, 0x108c240,7, 0x108c260,6, 0x108c280,2, 0x108c28c,2, 0x108c2a0,2, 0x108c2ac,2, 0x108c2c0,7, 0x108c2e0,7, 0x108c300,2, 0x108c30c,2, 0x108c320,6, 0x108c400,3, 0x108c440,12, 0x108c800,7, 0x108c820,14, 0x108c880,16, 0x108c900,7, 0x108c920,14, 0x108c980,16, 0x108ca00,6, 0x108ca20,7, 0x108cc00,3, 0x10a0000,3, 0x10a0800,7, 0x10a0820,6, 0x10a0840,6, 0x10a0880,1, 0x10a0894,1, 0x10a089c,2, 0x10a08c0,9, 0x10a0900,18, 0x10a0a00,36, 0x10a0b00,22, 0x10a0b80,18, 0x10a0c00,3, 0x10a0c10,3, 0x10a1000,3, 0x10a1010,2, 0x10a1080,20, 0x10a1100,1, 0x10a1200,26, 0x10a1280,4, 0x10a12c0,25, 0x10a1340,6, 0x10a1360,1, 0x10a1368,2, 0x10a1374,11, 0x10a13a4,4, 0x10a1400,1, 0x10b0000,11, 0x10b0030,19, 0x10b0080,17, 0x10b0100,11, 0x10b0130,19, 0x10b0180,17, 0x10b0200,3, 0x10b0214,1, 0x10b021c,1, 0x10b0280,3, 0x10b0294,1, 0x10b029c,1, 0x10b0300,18, 0x10b0380,18, 0x10b0400,18, 0x10b0480,18, 0x10b0500,18, 0x10b0580,18, 0x10b0600,18, 0x10b0680,18, 0x10b0700,13, 0x10b0738,6, 0x10b0780,13, 0x10b07b8,6, 0x10b0800,1, 0x10b0808,22, 0x10b0880,1, 0x10b0894,13, 0x10b0900,3, 0x10b0910,3, 0x10b0920,3, 0x10b0940,3, 0x10b0954,1, 0x10b095c,1, 0x10b0a00,52, 0x10b0c00,4, 0x10b0d00,34, 0x10b0e00,4, 0x10b0e80,30, 0x10b0f00,1, 0x10b0f40,5, 0x10b0f60,5, 0x10b0f80,6, 0x10b1000,14, 0x10b1040,4, 0x10b1060,17, 0x10b10c0,6, 0x10b10e0,1, 0x10b10e8,2, 0x10b10f4,11, 0x10b1124,17, 0x10b1200,3, 0x10b1210,3, 0x10b1220,3, 0x10b1230,3, 0x10b1240,3, 0x10b1250,3, 0x10b2000,20, 0x10b2080,3, 0x10b2090,1, 0x10b2098,2, 0x10c0000,500, 0x10c0800,2, 0x10c0820,15, 0x10c1000,500, 0x10c1800,8, 0x10c1824,6, 0x10c1840,8, 0x10c1880,7, 0x10c18a0,7, 0x10c18c0,7, 0x10c18e0,7, 0x10c1900,8, 0x10c1924,16, 0x10c1980,12, 0x10c2000,500, 0x10c2800,2, 0x10c2820,15, 0x10c3000,500, 0x10c3800,8, 0x10c3824,6, 0x10c3840,8, 0x10c3880,7, 0x10c38a0,7, 0x10c38c0,7, 0x10c38e0,7, 0x10c3900,8, 0x10c3924,16, 0x10c3980,12, 0x10c4004,5, 0x10c4200,26, 0x10c4280,4, 0x10c42c0,25, 0x10c4340,6, 0x10c4360,1, 0x10c4368,2, 0x10c4374,11, 0x10c43a4,10, 0x10c4400,1, 0x10c8000,52, 0x10c8400,82, 0x10c8560,6, 0x10c8600,41, 0x10c8700,2, 0x10c8720,19, 0x10c8800,25, 0x10c8880,1, 0x10c8900,28, 0x10c8980,1, 0x10c9000,52, 0x10c9400,82, 0x10c9560,6, 0x10c9600,41, 0x10c9700,2, 0x10c9720,19, 0x10c9800,25, 0x10c9880,1, 0x10c9900,28, 0x10c9980,1, 0x10ca000,7, 0x10ca080,6, 0x10ca0a0,6, 0x10ca0c0,1, 0x10ca100,4, 0x10ca120,9, 0x10cc000,3, 0x10cc010,6, 0x10cc200,7, 0x10cc220,6, 0x10cc240,7, 0x10cc260,6, 0x10cc280,2, 0x10cc28c,2, 0x10cc2a0,2, 0x10cc2ac,2, 0x10cc2c0,7, 0x10cc2e0,7, 0x10cc300,2, 0x10cc30c,2, 0x10cc320,6, 0x10cc400,3, 0x10cc440,12, 0x10cc800,7, 0x10cc820,14, 0x10cc880,16, 0x10cc900,7, 0x10cc920,14, 0x10cc980,16, 0x10cca00,6, 0x10cca20,7, 0x10ccc00,3, 0x10e0000,3, 0x10e0800,7, 0x10e0820,6, 0x10e0840,6, 0x10e0880,1, 0x10e0894,1, 0x10e089c,2, 0x10e08c0,9, 0x10e0900,18, 0x10e0a00,36, 0x10e0b00,22, 0x10e0b80,18, 0x10e0c00,3, 0x10e0c10,3, 0x10e1000,3, 0x10e1010,2, 0x10e1080,20, 0x10e1100,1, 0x10e1200,26, 0x10e1280,4, 0x10e12c0,25, 0x10e1340,6, 0x10e1360,1, 0x10e1368,2, 0x10e1374,11, 0x10e13a4,4, 0x10e1400,1, 0x10f0000,11, 0x10f0030,19, 0x10f0080,17, 0x10f0100,11, 0x10f0130,19, 0x10f0180,17, 0x10f0200,3, 0x10f0214,1, 0x10f021c,1, 0x10f0280,3, 0x10f0294,1, 0x10f029c,1, 0x10f0300,18, 0x10f0380,18, 0x10f0400,18, 0x10f0480,18, 0x10f0500,18, 0x10f0580,18, 0x10f0600,18, 0x10f0680,18, 0x10f0700,13, 0x10f0738,6, 0x10f0780,13, 0x10f07b8,6, 0x10f0800,1, 0x10f0808,22, 0x10f0880,1, 0x10f0894,13, 0x10f0900,3, 0x10f0910,3, 0x10f0920,3, 0x10f0940,3, 0x10f0954,1, 0x10f095c,1, 0x10f0a00,52, 0x10f0c00,4, 0x10f0d00,34, 0x10f0e00,4, 0x10f0e80,30, 0x10f0f00,1, 0x10f0f40,5, 0x10f0f60,5, 0x10f0f80,6, 0x10f1000,14, 0x10f1040,4, 0x10f1060,17, 0x10f10c0,6, 0x10f10e0,1, 0x10f10e8,2, 0x10f10f4,11, 0x10f1124,17, 0x10f1200,3, 0x10f1210,3, 0x10f1220,3, 0x10f1230,3, 0x10f1240,3, 0x10f1250,3, 0x10f2000,20, 0x10f2080,3, 0x10f2090,1, 0x10f2098,2, 0x1100000,13, 0x1100038,4, 0x1100050,3, 0x1100060,3, 0x1100070,16, 0x11000c0,5, 0x1100400,14, 0x1100440,2, 0x110044c,3, 0x1100480,14, 0x11004c0,2, 0x11004cc,3, 0x1100500,1, 0x1100508,15, 0x1100560,2, 0x110056c,2, 0x1100600,4, 0x1100680,27, 0x1100800,2, 0x1100900,32, 0x1100984,2, 0x1100990,4, 0x1100a00,26, 0x1100a80,4, 0x1100ac0,25, 0x1100b40,6, 0x1100b60,1, 0x1100b68,2, 0x1100b74,11, 0x1100ba4,8, 0x1100c00,9, 0x1100c40,11, 0x1100c80,23, 0x1100ce0,15, 0x1100d20,15, 0x1100d60,1, 0x1101000,13, 0x1101038,4, 0x1101050,3, 0x1101060,3, 0x1101070,16, 0x11010c0,5, 0x1101400,14, 0x1101440,2, 0x110144c,3, 0x1101480,14, 0x11014c0,2, 0x11014cc,3, 0x1101500,1, 0x1101508,15, 0x1101560,2, 0x110156c,2, 0x1101600,4, 0x1101680,27, 0x1101800,2, 0x1101900,32, 0x1101984,2, 0x1101990,4, 0x1101a00,26, 0x1101a80,4, 0x1101ac0,25, 0x1101b40,6, 0x1101b60,1, 0x1101b68,2, 0x1101b74,11, 0x1101ba4,8, 0x1101c00,9, 0x1101c40,11, 0x1101c80,23, 0x1101ce0,15, 0x1101d20,15, 0x1101d60,1, 0x1102000,1, 0x1102100,36, 0x1102200,7, 0x1110000,22, 0x1110080,22, 0x1110100,12, 0x1110140,12, 0x1110200,52, 0x1110300,52, 0x1110400,11, 0x1110440,11, 0x1110480,3, 0x11104a0,6, 0x11104c0,6, 0x11104e0,3, 0x11104f0,3, 0x1110800,9, 0x1110840,15, 0x1110880,15, 0x11108c0,15, 0x1110900,1, 0x1110914,13, 0x1110980,17, 0x1111000,17, 0x1111080,17, 0x1111104,5, 0x1111120,3, 0x1111130,11, 0x1111200,31, 0x1111280,31, 0x1111300,12, 0x1111340,12, 0x1111380,2, 0x1111390,2, 0x11113a0,3, 0x11113b0,3, 0x11113c0,5, 0x11113e0,5, 0x1111400,3, 0x1111410,3, 0x1111420,3, 0x1111430,3, 0x1111440,3, 0x1111450,3, 0x1111460,7, 0x1111800,26, 0x1111880,4, 0x11118c0,25, 0x1111940,6, 0x1111960,1, 0x1111968,2, 0x1111974,11, 0x11119a4,12, 0x1111a00,4, 0x1111b00,43, 0x1111c00,4, 0x1111c20,7, 0x1111c40,3, 0x1111c50,1, 0x1111c60,3, 0x1111e00,32, 0x1111e84,1, 0x1111e90,4, 0x1111ea4,1, 0x1111eb4,14, 0x1111ef0,2, 0x1111f04,1, 0x1111f10,8, 0x1111f34,6, 0x1112000,3, 0x1112010,21, 0x1112080,1, 0x1112094,1, 0x111209c,5, 0x1112100,15, 0x1112140,1, 0x1112180,6, 0x1114000,22, 0x1114080,22, 0x1114100,12, 0x1114140,12, 0x1114200,52, 0x1114300,52, 0x1114400,11, 0x1114440,11, 0x1114480,3, 0x11144a0,6, 0x11144c0,6, 0x11144e0,3, 0x11144f0,3, 0x1114800,9, 0x1114840,15, 0x1114880,15, 0x11148c0,15, 0x1114900,1, 0x1114914,13, 0x1114980,17, 0x1115000,17, 0x1115080,17, 0x1115104,5, 0x1115120,3, 0x1115130,11, 0x1115200,31, 0x1115280,31, 0x1115300,12, 0x1115340,12, 0x1115380,2, 0x1115390,2, 0x11153a0,3, 0x11153b0,3, 0x11153c0,5, 0x11153e0,5, 0x1115400,3, 0x1115410,3, 0x1115420,3, 0x1115430,3, 0x1115440,3, 0x1115450,3, 0x1115460,7, 0x1115800,26, 0x1115880,4, 0x11158c0,25, 0x1115940,6, 0x1115960,1, 0x1115968,2, 0x1115974,11, 0x11159a4,12, 0x1115a00,4, 0x1115b00,43, 0x1115c00,4, 0x1115c20,7, 0x1115c40,3, 0x1115c50,1, 0x1115c60,3, 0x1115e00,32, 0x1115e84,1, 0x1115e90,4, 0x1115ea4,1, 0x1115eb4,14, 0x1115ef0,2, 0x1115f04,1, 0x1115f10,8, 0x1115f34,6, 0x1116000,3, 0x1116010,21, 0x1116080,1, 0x1116094,1, 0x111609c,5, 0x1116100,15, 0x1116140,1, 0x1116180,6, 0x1118000,100, 0x1118200,3, 0x1118210,5, 0x1120000,12, 0x1120040,2, 0x1120050,3, 0x1122000,1006, 0x1123000,31, 0x1123084,6, 0x1124004,1, 0x112400c,3, 0x1124200,23, 0x1124280,23, 0x1124300,1, 0x1124400,1, 0x1124800,122, 0x1124a00,122, 0x1124c04,63, 0x1124d04,1, 0x1124d10,5, 0x1124d40,6, 0x1124d60,5, 0x1126000,1, 0x1126100,1, 0x1126108,3, 0x1126120,2, 0x1126134,8, 0x1126160,2, 0x1126174,8, 0x11261a0,4, 0x1126200,54, 0x1126800,5, 0x1126820,2, 0x1126834,1, 0x112683c,1, 0x1126a00,24, 0x1126a80,24, 0x1126b00,1, 0x1126c00,6, 0x1126c24,5, 0x1126c40,16, 0x1127000,1, 0x1127020,5, 0x1127040,1, 0x1127048,2, 0x1127080,1, 0x1127100,4, 0x1127180,24, 0x1127200,4, 0x1127280,27, 0x1127300,2, 0x112730c,3, 0x1128004,1, 0x112800c,3, 0x1128020,1, 0x1128100,2, 0x1128110,3, 0x1128120,2, 0x1128140,10, 0x1128180,13, 0x1128200,2, 0x1128210,3, 0x1128220,2, 0x1128240,10, 0x1128280,13, 0x1128400,14, 0x1128440,3, 0x1128450,3, 0x1128460,1, 0x1128500,36, 0x1128600,10, 0x1128640,5, 0x1128660,5, 0x1128700,27, 0x1128780,7, 0x11287a0,8, 0x1128800,27, 0x1128880,7, 0x11288a0,8, 0x1128900,27, 0x1128980,7, 0x11289a0,8, 0x1128a00,27, 0x1128a80,7, 0x1128aa0,8, 0x1128b00,48, 0x1128bc4,8, 0x1128bf0,30, 0x1128c80,4, 0x1128cc0,25, 0x1128d40,6, 0x1128d60,1, 0x1128d68,2, 0x1128d74,3, 0x1128e00,8, 0x1128e24,28, 0x1129000,4, 0x1129080,23, 0x1129100,14, 0x1129140,9, 0x1129200,10, 0x1129230,3, 0x1129240,5, 0x1129260,5, 0x1129280,9, 0x1129400,67, 0x1129600,10, 0x1130000,12, 0x1130040,2, 0x1130050,3, 0x1132000,1006, 0x1133000,31, 0x1133084,6, 0x1134004,1, 0x113400c,3, 0x1134200,23, 0x1134280,23, 0x1134300,1, 0x1134400,1, 0x1134800,122, 0x1134a00,122, 0x1134c04,63, 0x1134d04,1, 0x1134d10,5, 0x1134d40,6, 0x1134d60,5, 0x1136000,1, 0x1136100,1, 0x1136108,3, 0x1136120,2, 0x1136134,8, 0x1136160,2, 0x1136174,8, 0x11361a0,4, 0x1136200,54, 0x1136800,5, 0x1136820,2, 0x1136834,1, 0x113683c,1, 0x1136a00,24, 0x1136a80,24, 0x1136b00,1, 0x1136c00,6, 0x1136c24,5, 0x1136c40,16, 0x1137000,1, 0x1137020,5, 0x1137040,1, 0x1137048,2, 0x1137080,1, 0x1137100,4, 0x1137180,24, 0x1137200,4, 0x1137280,27, 0x1137300,2, 0x113730c,3, 0x1138004,1, 0x113800c,3, 0x1138020,1, 0x1138100,2, 0x1138110,3, 0x1138120,2, 0x1138140,10, 0x1138180,13, 0x1138200,2, 0x1138210,3, 0x1138220,2, 0x1138240,10, 0x1138280,13, 0x1138400,14, 0x1138440,3, 0x1138450,3, 0x1138460,1, 0x1138500,36, 0x1138600,10, 0x1138640,5, 0x1138660,5, 0x1138700,27, 0x1138780,7, 0x11387a0,8, 0x1138800,27, 0x1138880,7, 0x11388a0,8, 0x1138900,27, 0x1138980,7, 0x11389a0,8, 0x1138a00,27, 0x1138a80,7, 0x1138aa0,8, 0x1138b00,48, 0x1138bc4,8, 0x1138bf0,30, 0x1138c80,4, 0x1138cc0,25, 0x1138d40,6, 0x1138d60,1, 0x1138d68,2, 0x1138d74,3, 0x1138e00,8, 0x1138e24,28, 0x1139000,4, 0x1139080,23, 0x1139100,14, 0x1139140,9, 0x1139200,10, 0x1139230,3, 0x1139240,5, 0x1139260,5, 0x1139280,9, 0x1139400,67, 0x1139600,10, 0x1200000,1, 0x1200020,3, 0x1200030,2, 0x1200040,3, 0x1200050,2, 0x1200800,53, 0x1200900,3, 0x1200910,13, 0x1200a00,53, 0x1200b00,3, 0x1200b10,13, 0x1200c00,5, 0x1200c20,5, 0x1200c40,18, 0x1201000,6, 0x1201020,4, 0x1201040,16, 0x1202000,20, 0x1202080,15, 0x1202100,20, 0x1202180,15, 0x1202200,23, 0x1202260,7, 0x1202400,11, 0x1202430,3, 0x1202440,3, 0x1202450,3, 0x1202460,24, 0x1202500,11, 0x1202530,3, 0x1202540,3, 0x1202550,3, 0x1202560,24, 0x1202600,11, 0x1202630,3, 0x1202640,3, 0x1202650,3, 0x1202660,24, 0x1202700,11, 0x1202730,3, 0x1202740,3, 0x1202750,3, 0x1202760,24, 0x1202800,4, 0x1202820,16, 0x1202880,10, 0x12028c0,10, 0x1202900,6, 0x1202920,6, 0x1202940,4, 0x1202980,13, 0x12029c0,13, 0x1202a00,9, 0x1203000,14, 0x1203040,9, 0x1203080,6, 0x12030a0,1, 0x12030a8,4, 0x1203100,4, 0x1203200,124, 0x1203400,124, 0x1203600,8, 0x1203624,1, 0x1203644,6, 0x1203664,6, 0x1203680,1, 0x1203688,6, 0x12036a8,22, 0x1204000,1, 0x1204020,3, 0x1204030,2, 0x1204040,3, 0x1204050,2, 0x1204800,53, 0x1204900,3, 0x1204910,13, 0x1204a00,53, 0x1204b00,3, 0x1204b10,13, 0x1204c00,5, 0x1204c20,5, 0x1204c40,18, 0x1205000,6, 0x1205020,4, 0x1205040,16, 0x1206000,20, 0x1206080,15, 0x1206100,20, 0x1206180,15, 0x1206200,23, 0x1206260,7, 0x1206400,11, 0x1206430,3, 0x1206440,3, 0x1206450,3, 0x1206460,24, 0x1206500,11, 0x1206530,3, 0x1206540,3, 0x1206550,3, 0x1206560,24, 0x1206600,11, 0x1206630,3, 0x1206640,3, 0x1206650,3, 0x1206660,24, 0x1206700,11, 0x1206730,3, 0x1206740,3, 0x1206750,3, 0x1206760,24, 0x1206800,4, 0x1206820,16, 0x1206880,10, 0x12068c0,10, 0x1206900,6, 0x1206920,6, 0x1206940,4, 0x1206980,13, 0x12069c0,13, 0x1206a00,9, 0x1207000,14, 0x1207040,9, 0x1207080,6, 0x12070a0,1, 0x12070a8,4, 0x1207100,4, 0x1207200,124, 0x1207400,124, 0x1207600,8, 0x1207624,1, 0x1207644,6, 0x1207664,6, 0x1207680,1, 0x1207688,6, 0x12076a8,22, 0x1208000,84, 0x1208180,20, 0x1208200,5, 0x1208400,11, 0x1208440,11, 0x1208480,19, 0x1208500,19, 0x1208580,24, 0x1208600,13, 0x1208800,84, 0x1208980,20, 0x1208a00,5, 0x1208c00,11, 0x1208c40,11, 0x1208c80,19, 0x1208d00,19, 0x1208d80,24, 0x1208e00,13, 0x1209000,10, 0x1209040,5, 0x1209080,10, 0x12090c0,5, 0x1209100,5, 0x1209200,11, 0x1209230,3, 0x1209240,5, 0x1209260,5, 0x1209280,32, 0x1209400,13, 0x1209440,13, 0x1209480,9, 0x12094c0,1, 0x12094d0,5, 0x12094f0,21, 0x1209800,10, 0x1209840,5, 0x1209880,10, 0x12098c0,5, 0x1209900,5, 0x1209a00,11, 0x1209a30,3, 0x1209a40,5, 0x1209a60,5, 0x1209a80,32, 0x1209c00,13, 0x1209c40,13, 0x1209c80,9, 0x1209cc0,1, 0x1209cd0,5, 0x1209cf0,21, 0x120a000,14, 0x120a040,9, 0x120a080,6, 0x120a0a0,1, 0x120a0a8,4, 0x120a100,7, 0x120a120,3, 0x120a130,25, 0x120c000,26, 0x120c06c,2, 0x120c080,3, 0x120c090,17, 0x120c100,26, 0x120c16c,2, 0x120c180,3, 0x120c190,17, 0x120c200,26, 0x120c26c,2, 0x120c280,3, 0x120c290,17, 0x120c300,26, 0x120c36c,2, 0x120c380,3, 0x120c390,17, 0x120c400,26, 0x120c46c,2, 0x120c480,3, 0x120c490,17, 0x120c500,26, 0x120c56c,2, 0x120c580,3, 0x120c590,17, 0x120c600,26, 0x120c66c,2, 0x120c680,3, 0x120c690,17, 0x120c700,26, 0x120c76c,2, 0x120c780,3, 0x120c790,17, 0x120c800,12, 0x120c844,1, 0x120c854,8, 0x120c880,7, 0x120c8a0,2, 0x120c8ac,2, 0x120c8c0,26, 0x120c980,4, 0x120c9a0,5, 0x120c9c0,1, 0x120d000,3, 0x120d010,3, 0x120d020,3, 0x120d030,3, 0x120d040,3, 0x120d050,3, 0x120d060,3, 0x120d070,3, 0x120d080,5, 0x120d0a0,5, 0x120d0c0,5, 0x120d0e0,5, 0x120d100,5, 0x120d120,5, 0x120d140,5, 0x120d160,5, 0x120d200,68, 0x120d400,1, 0x120d804,1, 0x120d844,54, 0x120da00,11, 0x120da40,11, 0x120da80,11, 0x120dac0,11, 0x120db00,11, 0x120db40,11, 0x120db80,11, 0x120dbc0,11, 0x120dc00,28, 0x120dc80,5, 0x120dca0,2, 0x120e000,4, 0x120e020,6, 0x120e040,6, 0x120e060,14, 0x120e100,26, 0x120e180,15, 0x120e200,14, 0x120e240,9, 0x120e280,6, 0x120e2a0,1, 0x120e2a8,4, 0x120e300,14, 0x120e340,9, 0x120e380,6, 0x120e3a0,4, 0x120e400,9, 0x1220000,1, 0x1221000,977, 0x1222000,161, 0x1223000,977, 0x1224000,977, 0x1225000,977, 0x1226000,977, 0x1227000,977, 0x1228000,977, 0x1229000,977, 0x122a000,977, 0x122b000,161, 0x122c000,12, 0x122c040,14, 0x122c080,20, 0x122c104,1, 0x122c10c,4, 0x122c200,12, 0x122c240,14, 0x122c280,20, 0x122c304,1, 0x122c30c,4, 0x122c400,12, 0x122c440,14, 0x122c480,20, 0x122c504,1, 0x122c50c,4, 0x122c600,12, 0x122c640,14, 0x122c680,20, 0x122c704,1, 0x122c70c,4, 0x122c800,12, 0x122c840,14, 0x122c880,20, 0x122c904,1, 0x122c90c,4, 0x122ca00,12, 0x122ca40,14, 0x122ca80,20, 0x122cb04,1, 0x122cb0c,4, 0x122cc00,12, 0x122cc40,14, 0x122cc80,20, 0x122cd04,1, 0x122cd0c,4, 0x122ce00,12, 0x122ce40,14, 0x122ce80,20, 0x122cf04,1, 0x122cf0c,4, 0x122d000,12, 0x122d040,14, 0x122d080,20, 0x122d104,1, 0x122d10c,4, 0x122d200,17, 0x122d250,2, 0x122d260,4, 0x122e000,1, 0x122e014,1, 0x122e01c,11, 0x122e060,9, 0x122e094,1, 0x122e09c,11, 0x122e0e0,15, 0x122e200,12, 0x122e240,13, 0x122e280,3, 0x122e290,1, 0x1280000,500, 0x1280800,2, 0x1280820,15, 0x1281000,500, 0x1281800,8, 0x1281824,6, 0x1281840,8, 0x1281880,7, 0x12818a0,7, 0x12818c0,7, 0x12818e0,7, 0x1281900,8, 0x1281924,16, 0x1281980,12, 0x1282000,500, 0x1282800,2, 0x1282820,15, 0x1283000,500, 0x1283800,8, 0x1283824,6, 0x1283840,8, 0x1283880,7, 0x12838a0,7, 0x12838c0,7, 0x12838e0,7, 0x1283900,8, 0x1283924,16, 0x1283980,12, 0x1284004,5, 0x1284200,26, 0x1284280,4, 0x12842c0,25, 0x1284340,6, 0x1284360,1, 0x1284368,2, 0x1284374,11, 0x12843a4,10, 0x1284400,1, 0x1288000,52, 0x1288400,82, 0x1288560,6, 0x1288600,41, 0x1288700,2, 0x1288720,19, 0x1288800,25, 0x1288880,1, 0x1288900,28, 0x1288980,1, 0x1289000,52, 0x1289400,82, 0x1289560,6, 0x1289600,41, 0x1289700,2, 0x1289720,19, 0x1289800,25, 0x1289880,1, 0x1289900,28, 0x1289980,1, 0x128a000,7, 0x128a080,6, 0x128a0a0,6, 0x128a0c0,1, 0x128a100,4, 0x128a120,9, 0x128c000,3, 0x128c010,6, 0x128c200,7, 0x128c220,6, 0x128c240,7, 0x128c260,6, 0x128c280,2, 0x128c28c,2, 0x128c2a0,2, 0x128c2ac,2, 0x128c2c0,7, 0x128c2e0,7, 0x128c300,2, 0x128c30c,2, 0x128c320,6, 0x128c400,3, 0x128c440,12, 0x128c800,7, 0x128c820,14, 0x128c880,16, 0x128c900,7, 0x128c920,14, 0x128c980,16, 0x128ca00,6, 0x128ca20,7, 0x128cc00,3, 0x12a0000,3, 0x12a0800,7, 0x12a0820,6, 0x12a0840,6, 0x12a0880,1, 0x12a0894,1, 0x12a089c,2, 0x12a08c0,9, 0x12a0900,18, 0x12a0a00,36, 0x12a0b00,22, 0x12a0b80,18, 0x12a0c00,3, 0x12a0c10,3, 0x12a1000,3, 0x12a1010,2, 0x12a1080,20, 0x12a1100,1, 0x12a1200,26, 0x12a1280,4, 0x12a12c0,25, 0x12a1340,6, 0x12a1360,1, 0x12a1368,2, 0x12a1374,11, 0x12a13a4,4, 0x12a1400,1, 0x12b0000,11, 0x12b0030,19, 0x12b0080,17, 0x12b0100,11, 0x12b0130,19, 0x12b0180,17, 0x12b0200,3, 0x12b0214,1, 0x12b021c,1, 0x12b0280,3, 0x12b0294,1, 0x12b029c,1, 0x12b0300,18, 0x12b0380,18, 0x12b0400,18, 0x12b0480,18, 0x12b0500,18, 0x12b0580,18, 0x12b0600,18, 0x12b0680,18, 0x12b0700,13, 0x12b0738,6, 0x12b0780,13, 0x12b07b8,6, 0x12b0800,1, 0x12b0808,22, 0x12b0880,1, 0x12b0894,13, 0x12b0900,3, 0x12b0910,3, 0x12b0920,3, 0x12b0940,3, 0x12b0954,1, 0x12b095c,1, 0x12b0a00,52, 0x12b0c00,4, 0x12b0d00,34, 0x12b0e00,4, 0x12b0e80,30, 0x12b0f00,1, 0x12b0f40,5, 0x12b0f60,5, 0x12b0f80,6, 0x12b1000,14, 0x12b1040,4, 0x12b1060,17, 0x12b10c0,6, 0x12b10e0,1, 0x12b10e8,2, 0x12b10f4,11, 0x12b1124,17, 0x12b1200,3, 0x12b1210,3, 0x12b1220,3, 0x12b1230,3, 0x12b1240,3, 0x12b1250,3, 0x12b2000,20, 0x12b2080,3, 0x12b2090,1, 0x12b2098,2, 0x12c0000,500, 0x12c0800,2, 0x12c0820,15, 0x12c1000,500, 0x12c1800,8, 0x12c1824,6, 0x12c1840,8, 0x12c1880,7, 0x12c18a0,7, 0x12c18c0,7, 0x12c18e0,7, 0x12c1900,8, 0x12c1924,16, 0x12c1980,12, 0x12c2000,500, 0x12c2800,2, 0x12c2820,15, 0x12c3000,500, 0x12c3800,8, 0x12c3824,6, 0x12c3840,8, 0x12c3880,7, 0x12c38a0,7, 0x12c38c0,7, 0x12c38e0,7, 0x12c3900,8, 0x12c3924,16, 0x12c3980,12, 0x12c4004,5, 0x12c4200,26, 0x12c4280,4, 0x12c42c0,25, 0x12c4340,6, 0x12c4360,1, 0x12c4368,2, 0x12c4374,11, 0x12c43a4,10, 0x12c4400,1, 0x12c8000,52, 0x12c8400,82, 0x12c8560,6, 0x12c8600,41, 0x12c8700,2, 0x12c8720,19, 0x12c8800,25, 0x12c8880,1, 0x12c8900,28, 0x12c8980,1, 0x12c9000,52, 0x12c9400,82, 0x12c9560,6, 0x12c9600,41, 0x12c9700,2, 0x12c9720,19, 0x12c9800,25, 0x12c9880,1, 0x12c9900,28, 0x12c9980,1, 0x12ca000,7, 0x12ca080,6, 0x12ca0a0,6, 0x12ca0c0,1, 0x12ca100,4, 0x12ca120,9, 0x12cc000,3, 0x12cc010,6, 0x12cc200,7, 0x12cc220,6, 0x12cc240,7, 0x12cc260,6, 0x12cc280,2, 0x12cc28c,2, 0x12cc2a0,2, 0x12cc2ac,2, 0x12cc2c0,7, 0x12cc2e0,7, 0x12cc300,2, 0x12cc30c,2, 0x12cc320,6, 0x12cc400,3, 0x12cc440,12, 0x12cc800,7, 0x12cc820,14, 0x12cc880,16, 0x12cc900,7, 0x12cc920,14, 0x12cc980,16, 0x12cca00,6, 0x12cca20,7, 0x12ccc00,3, 0x12e0000,3, 0x12e0800,7, 0x12e0820,6, 0x12e0840,6, 0x12e0880,1, 0x12e0894,1, 0x12e089c,2, 0x12e08c0,9, 0x12e0900,18, 0x12e0a00,36, 0x12e0b00,22, 0x12e0b80,18, 0x12e0c00,3, 0x12e0c10,3, 0x12e1000,3, 0x12e1010,2, 0x12e1080,20, 0x12e1100,1, 0x12e1200,26, 0x12e1280,4, 0x12e12c0,25, 0x12e1340,6, 0x12e1360,1, 0x12e1368,2, 0x12e1374,11, 0x12e13a4,4, 0x12e1400,1, 0x12f0000,11, 0x12f0030,19, 0x12f0080,17, 0x12f0100,11, 0x12f0130,19, 0x12f0180,17, 0x12f0200,3, 0x12f0214,1, 0x12f021c,1, 0x12f0280,3, 0x12f0294,1, 0x12f029c,1, 0x12f0300,18, 0x12f0380,18, 0x12f0400,18, 0x12f0480,18, 0x12f0500,18, 0x12f0580,18, 0x12f0600,18, 0x12f0680,18, 0x12f0700,13, 0x12f0738,6, 0x12f0780,13, 0x12f07b8,6, 0x12f0800,1, 0x12f0808,22, 0x12f0880,1, 0x12f0894,13, 0x12f0900,3, 0x12f0910,3, 0x12f0920,3, 0x12f0940,3, 0x12f0954,1, 0x12f095c,1, 0x12f0a00,52, 0x12f0c00,4, 0x12f0d00,34, 0x12f0e00,4, 0x12f0e80,30, 0x12f0f00,1, 0x12f0f40,5, 0x12f0f60,5, 0x12f0f80,6, 0x12f1000,14, 0x12f1040,4, 0x12f1060,17, 0x12f10c0,6, 0x12f10e0,1, 0x12f10e8,2, 0x12f10f4,11, 0x12f1124,17, 0x12f1200,3, 0x12f1210,3, 0x12f1220,3, 0x12f1230,3, 0x12f1240,3, 0x12f1250,3, 0x12f2000,20, 0x12f2080,3, 0x12f2090,1, 0x12f2098,2, 0x1300000,13, 0x1300038,4, 0x1300050,3, 0x1300060,3, 0x1300070,16, 0x13000c0,5, 0x1300400,14, 0x1300440,2, 0x130044c,3, 0x1300480,14, 0x13004c0,2, 0x13004cc,3, 0x1300500,1, 0x1300508,15, 0x1300560,2, 0x130056c,2, 0x1300600,4, 0x1300680,27, 0x1300800,2, 0x1300900,32, 0x1300984,2, 0x1300990,4, 0x1300a00,26, 0x1300a80,4, 0x1300ac0,25, 0x1300b40,6, 0x1300b60,1, 0x1300b68,2, 0x1300b74,11, 0x1300ba4,8, 0x1300c00,9, 0x1300c40,11, 0x1300c80,23, 0x1300ce0,15, 0x1300d20,15, 0x1300d60,1, 0x1301000,13, 0x1301038,4, 0x1301050,3, 0x1301060,3, 0x1301070,16, 0x13010c0,5, 0x1301400,14, 0x1301440,2, 0x130144c,3, 0x1301480,14, 0x13014c0,2, 0x13014cc,3, 0x1301500,1, 0x1301508,15, 0x1301560,2, 0x130156c,2, 0x1301600,4, 0x1301680,27, 0x1301800,2, 0x1301900,32, 0x1301984,2, 0x1301990,4, 0x1301a00,26, 0x1301a80,4, 0x1301ac0,25, 0x1301b40,6, 0x1301b60,1, 0x1301b68,2, 0x1301b74,11, 0x1301ba4,8, 0x1301c00,9, 0x1301c40,11, 0x1301c80,23, 0x1301ce0,15, 0x1301d20,15, 0x1301d60,1, 0x1302000,1, 0x1302100,36, 0x1302200,7, 0x1310000,22, 0x1310080,22, 0x1310100,12, 0x1310140,12, 0x1310200,52, 0x1310300,52, 0x1310400,11, 0x1310440,11, 0x1310480,3, 0x13104a0,6, 0x13104c0,6, 0x13104e0,3, 0x13104f0,3, 0x1310800,9, 0x1310840,15, 0x1310880,15, 0x13108c0,15, 0x1310900,1, 0x1310914,13, 0x1310980,17, 0x1311000,17, 0x1311080,17, 0x1311104,5, 0x1311120,3, 0x1311130,11, 0x1311200,31, 0x1311280,31, 0x1311300,12, 0x1311340,12, 0x1311380,2, 0x1311390,2, 0x13113a0,3, 0x13113b0,3, 0x13113c0,5, 0x13113e0,5, 0x1311400,3, 0x1311410,3, 0x1311420,3, 0x1311430,3, 0x1311440,3, 0x1311450,3, 0x1311460,7, 0x1311800,26, 0x1311880,4, 0x13118c0,25, 0x1311940,6, 0x1311960,1, 0x1311968,2, 0x1311974,11, 0x13119a4,12, 0x1311a00,4, 0x1311b00,43, 0x1311c00,4, 0x1311c20,7, 0x1311c40,3, 0x1311c50,1, 0x1311c60,3, 0x1311e00,32, 0x1311e84,1, 0x1311e90,4, 0x1311ea4,1, 0x1311eb4,14, 0x1311ef0,2, 0x1311f04,1, 0x1311f10,8, 0x1311f34,6, 0x1312000,3, 0x1312010,21, 0x1312080,1, 0x1312094,1, 0x131209c,5, 0x1312100,15, 0x1312140,1, 0x1312180,6, 0x1314000,22, 0x1314080,22, 0x1314100,12, 0x1314140,12, 0x1314200,52, 0x1314300,52, 0x1314400,11, 0x1314440,11, 0x1314480,3, 0x13144a0,6, 0x13144c0,6, 0x13144e0,3, 0x13144f0,3, 0x1314800,9, 0x1314840,15, 0x1314880,15, 0x13148c0,15, 0x1314900,1, 0x1314914,13, 0x1314980,17, 0x1315000,17, 0x1315080,17, 0x1315104,5, 0x1315120,3, 0x1315130,11, 0x1315200,31, 0x1315280,31, 0x1315300,12, 0x1315340,12, 0x1315380,2, 0x1315390,2, 0x13153a0,3, 0x13153b0,3, 0x13153c0,5, 0x13153e0,5, 0x1315400,3, 0x1315410,3, 0x1315420,3, 0x1315430,3, 0x1315440,3, 0x1315450,3, 0x1315460,7, 0x1315800,26, 0x1315880,4, 0x13158c0,25, 0x1315940,6, 0x1315960,1, 0x1315968,2, 0x1315974,11, 0x13159a4,12, 0x1315a00,4, 0x1315b00,43, 0x1315c00,4, 0x1315c20,7, 0x1315c40,3, 0x1315c50,1, 0x1315c60,3, 0x1315e00,32, 0x1315e84,1, 0x1315e90,4, 0x1315ea4,1, 0x1315eb4,14, 0x1315ef0,2, 0x1315f04,1, 0x1315f10,8, 0x1315f34,6, 0x1316000,3, 0x1316010,21, 0x1316080,1, 0x1316094,1, 0x131609c,5, 0x1316100,15, 0x1316140,1, 0x1316180,6, 0x1318000,100, 0x1318200,3, 0x1318210,5, 0x1320000,12, 0x1320040,2, 0x1320050,3, 0x1322000,1006, 0x1323000,31, 0x1323084,6, 0x1324004,1, 0x132400c,3, 0x1324200,23, 0x1324280,23, 0x1324300,1, 0x1324400,1, 0x1324800,122, 0x1324a00,122, 0x1324c04,63, 0x1324d04,1, 0x1324d10,5, 0x1324d40,6, 0x1324d60,5, 0x1326000,1, 0x1326100,1, 0x1326108,3, 0x1326120,2, 0x1326134,8, 0x1326160,2, 0x1326174,8, 0x13261a0,4, 0x1326200,54, 0x1326800,5, 0x1326820,2, 0x1326834,1, 0x132683c,1, 0x1326a00,24, 0x1326a80,24, 0x1326b00,1, 0x1326c00,6, 0x1326c24,5, 0x1326c40,16, 0x1327000,1, 0x1327020,5, 0x1327040,1, 0x1327048,2, 0x1327080,1, 0x1327100,4, 0x1327180,24, 0x1327200,4, 0x1327280,27, 0x1327300,2, 0x132730c,3, 0x1328004,1, 0x132800c,3, 0x1328020,1, 0x1328100,2, 0x1328110,3, 0x1328120,2, 0x1328140,10, 0x1328180,13, 0x1328200,2, 0x1328210,3, 0x1328220,2, 0x1328240,10, 0x1328280,13, 0x1328400,14, 0x1328440,3, 0x1328450,3, 0x1328460,1, 0x1328500,36, 0x1328600,10, 0x1328640,5, 0x1328660,5, 0x1328700,27, 0x1328780,7, 0x13287a0,8, 0x1328800,27, 0x1328880,7, 0x13288a0,8, 0x1328900,27, 0x1328980,7, 0x13289a0,8, 0x1328a00,27, 0x1328a80,7, 0x1328aa0,8, 0x1328b00,48, 0x1328bc4,8, 0x1328bf0,30, 0x1328c80,4, 0x1328cc0,25, 0x1328d40,6, 0x1328d60,1, 0x1328d68,2, 0x1328d74,3, 0x1328e00,8, 0x1328e24,28, 0x1329000,4, 0x1329080,23, 0x1329100,14, 0x1329140,9, 0x1329200,10, 0x1329230,3, 0x1329240,5, 0x1329260,5, 0x1329280,9, 0x1329400,67, 0x1329600,10, 0x1330000,12, 0x1330040,2, 0x1330050,3, 0x1332000,1006, 0x1333000,31, 0x1333084,6, 0x1334004,1, 0x133400c,3, 0x1334200,23, 0x1334280,23, 0x1334300,1, 0x1334400,1, 0x1334800,122, 0x1334a00,122, 0x1334c04,63, 0x1334d04,1, 0x1334d10,5, 0x1334d40,6, 0x1334d60,5, 0x1336000,1, 0x1336100,1, 0x1336108,3, 0x1336120,2, 0x1336134,8, 0x1336160,2, 0x1336174,8, 0x13361a0,4, 0x1336200,54, 0x1336800,5, 0x1336820,2, 0x1336834,1, 0x133683c,1, 0x1336a00,24, 0x1336a80,24, 0x1336b00,1, 0x1336c00,6, 0x1336c24,5, 0x1336c40,16, 0x1337000,1, 0x1337020,5, 0x1337040,1, 0x1337048,2, 0x1337080,1, 0x1337100,4, 0x1337180,24, 0x1337200,4, 0x1337280,27, 0x1337300,2, 0x133730c,3, 0x1338004,1, 0x133800c,3, 0x1338020,1, 0x1338100,2, 0x1338110,3, 0x1338120,2, 0x1338140,10, 0x1338180,13, 0x1338200,2, 0x1338210,3, 0x1338220,2, 0x1338240,10, 0x1338280,13, 0x1338400,14, 0x1338440,3, 0x1338450,3, 0x1338460,1, 0x1338500,36, 0x1338600,10, 0x1338640,5, 0x1338660,5, 0x1338700,27, 0x1338780,7, 0x13387a0,8, 0x1338800,27, 0x1338880,7, 0x13388a0,8, 0x1338900,27, 0x1338980,7, 0x13389a0,8, 0x1338a00,27, 0x1338a80,7, 0x1338aa0,8, 0x1338b00,48, 0x1338bc4,8, 0x1338bf0,30, 0x1338c80,4, 0x1338cc0,25, 0x1338d40,6, 0x1338d60,1, 0x1338d68,2, 0x1338d74,3, 0x1338e00,8, 0x1338e24,28, 0x1339000,4, 0x1339080,23, 0x1339100,14, 0x1339140,9, 0x1339200,10, 0x1339230,3, 0x1339240,5, 0x1339260,5, 0x1339280,9, 0x1339400,67, 0x1339600,10, 0x1400000,1, 0x1400020,3, 0x1400030,2, 0x1400040,3, 0x1400050,2, 0x1400800,53, 0x1400900,3, 0x1400910,13, 0x1400a00,53, 0x1400b00,3, 0x1400b10,13, 0x1400c00,5, 0x1400c20,5, 0x1400c40,18, 0x1401000,6, 0x1401020,4, 0x1401040,16, 0x1402000,20, 0x1402080,15, 0x1402100,20, 0x1402180,15, 0x1402200,23, 0x1402260,7, 0x1402400,11, 0x1402430,3, 0x1402440,3, 0x1402450,3, 0x1402460,24, 0x1402500,11, 0x1402530,3, 0x1402540,3, 0x1402550,3, 0x1402560,24, 0x1402600,11, 0x1402630,3, 0x1402640,3, 0x1402650,3, 0x1402660,24, 0x1402700,11, 0x1402730,3, 0x1402740,3, 0x1402750,3, 0x1402760,24, 0x1402800,4, 0x1402820,16, 0x1402880,10, 0x14028c0,10, 0x1402900,6, 0x1402920,6, 0x1402940,4, 0x1402980,13, 0x14029c0,13, 0x1402a00,9, 0x1403000,14, 0x1403040,9, 0x1403080,6, 0x14030a0,1, 0x14030a8,4, 0x1403100,4, 0x1403200,124, 0x1403400,124, 0x1403600,8, 0x1403624,1, 0x1403644,6, 0x1403664,6, 0x1403680,1, 0x1403688,6, 0x14036a8,22, 0x1404000,1, 0x1404020,3, 0x1404030,2, 0x1404040,3, 0x1404050,2, 0x1404800,53, 0x1404900,3, 0x1404910,13, 0x1404a00,53, 0x1404b00,3, 0x1404b10,13, 0x1404c00,5, 0x1404c20,5, 0x1404c40,18, 0x1405000,6, 0x1405020,4, 0x1405040,16, 0x1406000,20, 0x1406080,15, 0x1406100,20, 0x1406180,15, 0x1406200,23, 0x1406260,7, 0x1406400,11, 0x1406430,3, 0x1406440,3, 0x1406450,3, 0x1406460,24, 0x1406500,11, 0x1406530,3, 0x1406540,3, 0x1406550,3, 0x1406560,24, 0x1406600,11, 0x1406630,3, 0x1406640,3, 0x1406650,3, 0x1406660,24, 0x1406700,11, 0x1406730,3, 0x1406740,3, 0x1406750,3, 0x1406760,24, 0x1406800,4, 0x1406820,16, 0x1406880,10, 0x14068c0,10, 0x1406900,6, 0x1406920,6, 0x1406940,4, 0x1406980,13, 0x14069c0,13, 0x1406a00,9, 0x1407000,14, 0x1407040,9, 0x1407080,6, 0x14070a0,1, 0x14070a8,4, 0x1407100,4, 0x1407200,124, 0x1407400,124, 0x1407600,8, 0x1407624,1, 0x1407644,6, 0x1407664,6, 0x1407680,1, 0x1407688,6, 0x14076a8,22, 0x1408000,84, 0x1408180,20, 0x1408200,5, 0x1408400,11, 0x1408440,11, 0x1408480,19, 0x1408500,19, 0x1408580,24, 0x1408600,13, 0x1408800,84, 0x1408980,20, 0x1408a00,5, 0x1408c00,11, 0x1408c40,11, 0x1408c80,19, 0x1408d00,19, 0x1408d80,24, 0x1408e00,13, 0x1409000,10, 0x1409040,5, 0x1409080,10, 0x14090c0,5, 0x1409100,5, 0x1409200,11, 0x1409230,3, 0x1409240,5, 0x1409260,5, 0x1409280,32, 0x1409400,13, 0x1409440,13, 0x1409480,9, 0x14094c0,1, 0x14094d0,5, 0x14094f0,21, 0x1409800,10, 0x1409840,5, 0x1409880,10, 0x14098c0,5, 0x1409900,5, 0x1409a00,11, 0x1409a30,3, 0x1409a40,5, 0x1409a60,5, 0x1409a80,32, 0x1409c00,13, 0x1409c40,13, 0x1409c80,9, 0x1409cc0,1, 0x1409cd0,5, 0x1409cf0,21, 0x140a000,14, 0x140a040,9, 0x140a080,6, 0x140a0a0,1, 0x140a0a8,4, 0x140a100,7, 0x140a120,3, 0x140a130,25, 0x140c000,26, 0x140c06c,2, 0x140c080,3, 0x140c090,17, 0x140c100,26, 0x140c16c,2, 0x140c180,3, 0x140c190,17, 0x140c200,26, 0x140c26c,2, 0x140c280,3, 0x140c290,17, 0x140c300,26, 0x140c36c,2, 0x140c380,3, 0x140c390,17, 0x140c400,26, 0x140c46c,2, 0x140c480,3, 0x140c490,17, 0x140c500,26, 0x140c56c,2, 0x140c580,3, 0x140c590,17, 0x140c600,26, 0x140c66c,2, 0x140c680,3, 0x140c690,17, 0x140c700,26, 0x140c76c,2, 0x140c780,3, 0x140c790,17, 0x140c800,12, 0x140c844,1, 0x140c854,8, 0x140c880,7, 0x140c8a0,2, 0x140c8ac,2, 0x140c8c0,26, 0x140c980,4, 0x140c9a0,5, 0x140c9c0,1, 0x140d000,3, 0x140d010,3, 0x140d020,3, 0x140d030,3, 0x140d040,3, 0x140d050,3, 0x140d060,3, 0x140d070,3, 0x140d080,5, 0x140d0a0,5, 0x140d0c0,5, 0x140d0e0,5, 0x140d100,5, 0x140d120,5, 0x140d140,5, 0x140d160,5, 0x140d200,68, 0x140d400,1, 0x140d804,1, 0x140d844,54, 0x140da00,11, 0x140da40,11, 0x140da80,11, 0x140dac0,11, 0x140db00,11, 0x140db40,11, 0x140db80,11, 0x140dbc0,11, 0x140dc00,28, 0x140dc80,5, 0x140dca0,2, 0x140e000,4, 0x140e020,6, 0x140e040,6, 0x140e060,14, 0x140e100,26, 0x140e180,15, 0x140e200,14, 0x140e240,9, 0x140e280,6, 0x140e2a0,1, 0x140e2a8,4, 0x140e300,14, 0x140e340,9, 0x140e380,6, 0x140e3a0,4, 0x140e400,9, 0x1420000,1, 0x1421000,977, 0x1422000,161, 0x1423000,977, 0x1424000,977, 0x1425000,977, 0x1426000,977, 0x1427000,977, 0x1428000,977, 0x1429000,977, 0x142a000,977, 0x142b000,161, 0x142c000,12, 0x142c040,14, 0x142c080,20, 0x142c104,1, 0x142c10c,4, 0x142c200,12, 0x142c240,14, 0x142c280,20, 0x142c304,1, 0x142c30c,4, 0x142c400,12, 0x142c440,14, 0x142c480,20, 0x142c504,1, 0x142c50c,4, 0x142c600,12, 0x142c640,14, 0x142c680,20, 0x142c704,1, 0x142c70c,4, 0x142c800,12, 0x142c840,14, 0x142c880,20, 0x142c904,1, 0x142c90c,4, 0x142ca00,12, 0x142ca40,14, 0x142ca80,20, 0x142cb04,1, 0x142cb0c,4, 0x142cc00,12, 0x142cc40,14, 0x142cc80,20, 0x142cd04,1, 0x142cd0c,4, 0x142ce00,12, 0x142ce40,14, 0x142ce80,20, 0x142cf04,1, 0x142cf0c,4, 0x142d000,12, 0x142d040,14, 0x142d080,20, 0x142d104,1, 0x142d10c,4, 0x142d200,17, 0x142d250,2, 0x142d260,4, 0x142e000,1, 0x142e014,1, 0x142e01c,11, 0x142e060,9, 0x142e094,1, 0x142e09c,11, 0x142e0e0,15, 0x142e200,12, 0x142e240,13, 0x142e280,3, 0x142e290,1, 0x1480000,500, 0x1480800,2, 0x1480820,15, 0x1481000,500, 0x1481800,8, 0x1481824,6, 0x1481840,8, 0x1481880,7, 0x14818a0,7, 0x14818c0,7, 0x14818e0,7, 0x1481900,8, 0x1481924,16, 0x1481980,12, 0x1482000,500, 0x1482800,2, 0x1482820,15, 0x1483000,500, 0x1483800,8, 0x1483824,6, 0x1483840,8, 0x1483880,7, 0x14838a0,7, 0x14838c0,7, 0x14838e0,7, 0x1483900,8, 0x1483924,16, 0x1483980,12, 0x1484004,5, 0x1484200,26, 0x1484280,4, 0x14842c0,25, 0x1484340,6, 0x1484360,1, 0x1484368,2, 0x1484374,11, 0x14843a4,10, 0x1484400,1, 0x1488000,52, 0x1488400,82, 0x1488560,6, 0x1488600,41, 0x1488700,2, 0x1488720,19, 0x1488800,25, 0x1488880,1, 0x1488900,28, 0x1488980,1, 0x1489000,52, 0x1489400,82, 0x1489560,6, 0x1489600,41, 0x1489700,2, 0x1489720,19, 0x1489800,25, 0x1489880,1, 0x1489900,28, 0x1489980,1, 0x148a000,7, 0x148a080,6, 0x148a0a0,6, 0x148a0c0,1, 0x148a100,4, 0x148a120,9, 0x148c000,3, 0x148c010,6, 0x148c200,7, 0x148c220,6, 0x148c240,7, 0x148c260,6, 0x148c280,2, 0x148c28c,2, 0x148c2a0,2, 0x148c2ac,2, 0x148c2c0,7, 0x148c2e0,7, 0x148c300,2, 0x148c30c,2, 0x148c320,6, 0x148c400,3, 0x148c440,12, 0x148c800,7, 0x148c820,14, 0x148c880,16, 0x148c900,7, 0x148c920,14, 0x148c980,16, 0x148ca00,6, 0x148ca20,7, 0x148cc00,3, 0x14a0000,3, 0x14a0800,7, 0x14a0820,6, 0x14a0840,6, 0x14a0880,1, 0x14a0894,1, 0x14a089c,2, 0x14a08c0,9, 0x14a0900,18, 0x14a0a00,36, 0x14a0b00,22, 0x14a0b80,18, 0x14a0c00,3, 0x14a0c10,3, 0x14a1000,3, 0x14a1010,2, 0x14a1080,20, 0x14a1100,1, 0x14a1200,26, 0x14a1280,4, 0x14a12c0,25, 0x14a1340,6, 0x14a1360,1, 0x14a1368,2, 0x14a1374,11, 0x14a13a4,4, 0x14a1400,1, 0x14b0000,11, 0x14b0030,19, 0x14b0080,17, 0x14b0100,11, 0x14b0130,19, 0x14b0180,17, 0x14b0200,3, 0x14b0214,1, 0x14b021c,1, 0x14b0280,3, 0x14b0294,1, 0x14b029c,1, 0x14b0300,18, 0x14b0380,18, 0x14b0400,18, 0x14b0480,18, 0x14b0500,18, 0x14b0580,18, 0x14b0600,18, 0x14b0680,18, 0x14b0700,13, 0x14b0738,6, 0x14b0780,13, 0x14b07b8,6, 0x14b0800,1, 0x14b0808,22, 0x14b0880,1, 0x14b0894,13, 0x14b0900,3, 0x14b0910,3, 0x14b0920,3, 0x14b0940,3, 0x14b0954,1, 0x14b095c,1, 0x14b0a00,52, 0x14b0c00,4, 0x14b0d00,34, 0x14b0e00,4, 0x14b0e80,30, 0x14b0f00,1, 0x14b0f40,5, 0x14b0f60,5, 0x14b0f80,6, 0x14b1000,14, 0x14b1040,4, 0x14b1060,17, 0x14b10c0,6, 0x14b10e0,1, 0x14b10e8,2, 0x14b10f4,11, 0x14b1124,17, 0x14b1200,3, 0x14b1210,3, 0x14b1220,3, 0x14b1230,3, 0x14b1240,3, 0x14b1250,3, 0x14b2000,20, 0x14b2080,3, 0x14b2090,1, 0x14b2098,2, 0x14c0000,500, 0x14c0800,2, 0x14c0820,15, 0x14c1000,500, 0x14c1800,8, 0x14c1824,6, 0x14c1840,8, 0x14c1880,7, 0x14c18a0,7, 0x14c18c0,7, 0x14c18e0,7, 0x14c1900,8, 0x14c1924,16, 0x14c1980,12, 0x14c2000,500, 0x14c2800,2, 0x14c2820,15, 0x14c3000,500, 0x14c3800,8, 0x14c3824,6, 0x14c3840,8, 0x14c3880,7, 0x14c38a0,7, 0x14c38c0,7, 0x14c38e0,7, 0x14c3900,8, 0x14c3924,16, 0x14c3980,12, 0x14c4004,5, 0x14c4200,26, 0x14c4280,4, 0x14c42c0,25, 0x14c4340,6, 0x14c4360,1, 0x14c4368,2, 0x14c4374,11, 0x14c43a4,10, 0x14c4400,1, 0x14c8000,52, 0x14c8400,82, 0x14c8560,6, 0x14c8600,41, 0x14c8700,2, 0x14c8720,19, 0x14c8800,25, 0x14c8880,1, 0x14c8900,28, 0x14c8980,1, 0x14c9000,52, 0x14c9400,82, 0x14c9560,6, 0x14c9600,41, 0x14c9700,2, 0x14c9720,19, 0x14c9800,25, 0x14c9880,1, 0x14c9900,28, 0x14c9980,1, 0x14ca000,7, 0x14ca080,6, 0x14ca0a0,6, 0x14ca0c0,1, 0x14ca100,4, 0x14ca120,9, 0x14cc000,3, 0x14cc010,6, 0x14cc200,7, 0x14cc220,6, 0x14cc240,7, 0x14cc260,6, 0x14cc280,2, 0x14cc28c,2, 0x14cc2a0,2, 0x14cc2ac,2, 0x14cc2c0,7, 0x14cc2e0,7, 0x14cc300,2, 0x14cc30c,2, 0x14cc320,6, 0x14cc400,3, 0x14cc440,12, 0x14cc800,7, 0x14cc820,14, 0x14cc880,16, 0x14cc900,7, 0x14cc920,14, 0x14cc980,16, 0x14cca00,6, 0x14cca20,7, 0x14ccc00,3, 0x14e0000,3, 0x14e0800,7, 0x14e0820,6, 0x14e0840,6, 0x14e0880,1, 0x14e0894,1, 0x14e089c,2, 0x14e08c0,9, 0x14e0900,18, 0x14e0a00,36, 0x14e0b00,22, 0x14e0b80,18, 0x14e0c00,3, 0x14e0c10,3, 0x14e1000,3, 0x14e1010,2, 0x14e1080,20, 0x14e1100,1, 0x14e1200,26, 0x14e1280,4, 0x14e12c0,25, 0x14e1340,6, 0x14e1360,1, 0x14e1368,2, 0x14e1374,11, 0x14e13a4,4, 0x14e1400,1, 0x14f0000,11, 0x14f0030,19, 0x14f0080,17, 0x14f0100,11, 0x14f0130,19, 0x14f0180,17, 0x14f0200,3, 0x14f0214,1, 0x14f021c,1, 0x14f0280,3, 0x14f0294,1, 0x14f029c,1, 0x14f0300,18, 0x14f0380,18, 0x14f0400,18, 0x14f0480,18, 0x14f0500,18, 0x14f0580,18, 0x14f0600,18, 0x14f0680,18, 0x14f0700,13, 0x14f0738,6, 0x14f0780,13, 0x14f07b8,6, 0x14f0800,1, 0x14f0808,22, 0x14f0880,1, 0x14f0894,13, 0x14f0900,3, 0x14f0910,3, 0x14f0920,3, 0x14f0940,3, 0x14f0954,1, 0x14f095c,1, 0x14f0a00,52, 0x14f0c00,4, 0x14f0d00,34, 0x14f0e00,4, 0x14f0e80,30, 0x14f0f00,1, 0x14f0f40,5, 0x14f0f60,5, 0x14f0f80,6, 0x14f1000,14, 0x14f1040,4, 0x14f1060,17, 0x14f10c0,6, 0x14f10e0,1, 0x14f10e8,2, 0x14f10f4,11, 0x14f1124,17, 0x14f1200,3, 0x14f1210,3, 0x14f1220,3, 0x14f1230,3, 0x14f1240,3, 0x14f1250,3, 0x14f2000,20, 0x14f2080,3, 0x14f2090,1, 0x14f2098,2, 0x1500000,13, 0x1500038,4, 0x1500050,3, 0x1500060,3, 0x1500070,16, 0x15000c0,5, 0x1500400,14, 0x1500440,2, 0x150044c,3, 0x1500480,14, 0x15004c0,2, 0x15004cc,3, 0x1500500,1, 0x1500508,15, 0x1500560,2, 0x150056c,2, 0x1500600,4, 0x1500680,27, 0x1500800,2, 0x1500900,32, 0x1500984,2, 0x1500990,4, 0x1500a00,26, 0x1500a80,4, 0x1500ac0,25, 0x1500b40,6, 0x1500b60,1, 0x1500b68,2, 0x1500b74,11, 0x1500ba4,8, 0x1500c00,9, 0x1500c40,11, 0x1500c80,23, 0x1500ce0,15, 0x1500d20,15, 0x1500d60,1, 0x1501000,13, 0x1501038,4, 0x1501050,3, 0x1501060,3, 0x1501070,16, 0x15010c0,5, 0x1501400,14, 0x1501440,2, 0x150144c,3, 0x1501480,14, 0x15014c0,2, 0x15014cc,3, 0x1501500,1, 0x1501508,15, 0x1501560,2, 0x150156c,2, 0x1501600,4, 0x1501680,27, 0x1501800,2, 0x1501900,32, 0x1501984,2, 0x1501990,4, 0x1501a00,26, 0x1501a80,4, 0x1501ac0,25, 0x1501b40,6, 0x1501b60,1, 0x1501b68,2, 0x1501b74,11, 0x1501ba4,8, 0x1501c00,9, 0x1501c40,11, 0x1501c80,23, 0x1501ce0,15, 0x1501d20,15, 0x1501d60,1, 0x1502000,1, 0x1502100,36, 0x1502200,7, 0x1510000,22, 0x1510080,22, 0x1510100,12, 0x1510140,12, 0x1510200,52, 0x1510300,52, 0x1510400,11, 0x1510440,11, 0x1510480,3, 0x15104a0,6, 0x15104c0,6, 0x15104e0,3, 0x15104f0,3, 0x1510800,9, 0x1510840,15, 0x1510880,15, 0x15108c0,15, 0x1510900,1, 0x1510914,13, 0x1510980,17, 0x1511000,17, 0x1511080,17, 0x1511104,5, 0x1511120,3, 0x1511130,11, 0x1511200,31, 0x1511280,31, 0x1511300,12, 0x1511340,12, 0x1511380,2, 0x1511390,2, 0x15113a0,3, 0x15113b0,3, 0x15113c0,5, 0x15113e0,5, 0x1511400,3, 0x1511410,3, 0x1511420,3, 0x1511430,3, 0x1511440,3, 0x1511450,3, 0x1511460,7, 0x1511800,26, 0x1511880,4, 0x15118c0,25, 0x1511940,6, 0x1511960,1, 0x1511968,2, 0x1511974,11, 0x15119a4,12, 0x1511a00,4, 0x1511b00,43, 0x1511c00,4, 0x1511c20,7, 0x1511c40,3, 0x1511c50,1, 0x1511c60,3, 0x1511e00,32, 0x1511e84,1, 0x1511e90,4, 0x1511ea4,1, 0x1511eb4,14, 0x1511ef0,2, 0x1511f04,1, 0x1511f10,8, 0x1511f34,6, 0x1512000,3, 0x1512010,21, 0x1512080,1, 0x1512094,1, 0x151209c,5, 0x1512100,15, 0x1512140,1, 0x1512180,6, 0x1514000,22, 0x1514080,22, 0x1514100,12, 0x1514140,12, 0x1514200,52, 0x1514300,52, 0x1514400,11, 0x1514440,11, 0x1514480,3, 0x15144a0,6, 0x15144c0,6, 0x15144e0,3, 0x15144f0,3, 0x1514800,9, 0x1514840,15, 0x1514880,15, 0x15148c0,15, 0x1514900,1, 0x1514914,13, 0x1514980,17, 0x1515000,17, 0x1515080,17, 0x1515104,5, 0x1515120,3, 0x1515130,11, 0x1515200,31, 0x1515280,31, 0x1515300,12, 0x1515340,12, 0x1515380,2, 0x1515390,2, 0x15153a0,3, 0x15153b0,3, 0x15153c0,5, 0x15153e0,5, 0x1515400,3, 0x1515410,3, 0x1515420,3, 0x1515430,3, 0x1515440,3, 0x1515450,3, 0x1515460,7, 0x1515800,26, 0x1515880,4, 0x15158c0,25, 0x1515940,6, 0x1515960,1, 0x1515968,2, 0x1515974,11, 0x15159a4,12, 0x1515a00,4, 0x1515b00,43, 0x1515c00,4, 0x1515c20,7, 0x1515c40,3, 0x1515c50,1, 0x1515c60,3, 0x1515e00,32, 0x1515e84,1, 0x1515e90,4, 0x1515ea4,1, 0x1515eb4,14, 0x1515ef0,2, 0x1515f04,1, 0x1515f10,8, 0x1515f34,6, 0x1516000,3, 0x1516010,21, 0x1516080,1, 0x1516094,1, 0x151609c,5, 0x1516100,15, 0x1516140,1, 0x1516180,6, 0x1518000,100, 0x1518200,3, 0x1518210,5, 0x1520000,12, 0x1520040,2, 0x1520050,3, 0x1522000,1006, 0x1523000,31, 0x1523084,6, 0x1524004,1, 0x152400c,3, 0x1524200,23, 0x1524280,23, 0x1524300,1, 0x1524400,1, 0x1524800,122, 0x1524a00,122, 0x1524c04,63, 0x1524d04,1, 0x1524d10,5, 0x1524d40,6, 0x1524d60,5, 0x1526000,1, 0x1526100,1, 0x1526108,3, 0x1526120,2, 0x1526134,8, 0x1526160,2, 0x1526174,8, 0x15261a0,4, 0x1526200,54, 0x1526800,5, 0x1526820,2, 0x1526834,1, 0x152683c,1, 0x1526a00,24, 0x1526a80,24, 0x1526b00,1, 0x1526c00,6, 0x1526c24,5, 0x1526c40,16, 0x1527000,1, 0x1527020,5, 0x1527040,1, 0x1527048,2, 0x1527080,1, 0x1527100,4, 0x1527180,24, 0x1527200,4, 0x1527280,27, 0x1527300,2, 0x152730c,3, 0x1528004,1, 0x152800c,3, 0x1528020,1, 0x1528100,2, 0x1528110,3, 0x1528120,2, 0x1528140,10, 0x1528180,13, 0x1528200,2, 0x1528210,3, 0x1528220,2, 0x1528240,10, 0x1528280,13, 0x1528400,14, 0x1528440,3, 0x1528450,3, 0x1528460,1, 0x1528500,36, 0x1528600,10, 0x1528640,5, 0x1528660,5, 0x1528700,27, 0x1528780,7, 0x15287a0,8, 0x1528800,27, 0x1528880,7, 0x15288a0,8, 0x1528900,27, 0x1528980,7, 0x15289a0,8, 0x1528a00,27, 0x1528a80,7, 0x1528aa0,8, 0x1528b00,48, 0x1528bc4,8, 0x1528bf0,30, 0x1528c80,4, 0x1528cc0,25, 0x1528d40,6, 0x1528d60,1, 0x1528d68,2, 0x1528d74,3, 0x1528e00,8, 0x1528e24,28, 0x1529000,4, 0x1529080,23, 0x1529100,14, 0x1529140,9, 0x1529200,10, 0x1529230,3, 0x1529240,5, 0x1529260,5, 0x1529280,9, 0x1529400,67, 0x1529600,10, 0x1530000,12, 0x1530040,2, 0x1530050,3, 0x1532000,1006, 0x1533000,31, 0x1533084,6, 0x1534004,1, 0x153400c,3, 0x1534200,23, 0x1534280,23, 0x1534300,1, 0x1534400,1, 0x1534800,122, 0x1534a00,122, 0x1534c04,63, 0x1534d04,1, 0x1534d10,5, 0x1534d40,6, 0x1534d60,5, 0x1536000,1, 0x1536100,1, 0x1536108,3, 0x1536120,2, 0x1536134,8, 0x1536160,2, 0x1536174,8, 0x15361a0,4, 0x1536200,54, 0x1536800,5, 0x1536820,2, 0x1536834,1, 0x153683c,1, 0x1536a00,24, 0x1536a80,24, 0x1536b00,1, 0x1536c00,6, 0x1536c24,5, 0x1536c40,16, 0x1537000,1, 0x1537020,5, 0x1537040,1, 0x1537048,2, 0x1537080,1, 0x1537100,4, 0x1537180,24, 0x1537200,4, 0x1537280,27, 0x1537300,2, 0x153730c,3, 0x1538004,1, 0x153800c,3, 0x1538020,1, 0x1538100,2, 0x1538110,3, 0x1538120,2, 0x1538140,10, 0x1538180,13, 0x1538200,2, 0x1538210,3, 0x1538220,2, 0x1538240,10, 0x1538280,13, 0x1538400,14, 0x1538440,3, 0x1538450,3, 0x1538460,1, 0x1538500,36, 0x1538600,10, 0x1538640,5, 0x1538660,5, 0x1538700,27, 0x1538780,7, 0x15387a0,8, 0x1538800,27, 0x1538880,7, 0x15388a0,8, 0x1538900,27, 0x1538980,7, 0x15389a0,8, 0x1538a00,27, 0x1538a80,7, 0x1538aa0,8, 0x1538b00,48, 0x1538bc4,8, 0x1538bf0,30, 0x1538c80,4, 0x1538cc0,25, 0x1538d40,6, 0x1538d60,1, 0x1538d68,2, 0x1538d74,3, 0x1538e00,8, 0x1538e24,28, 0x1539000,4, 0x1539080,23, 0x1539100,14, 0x1539140,9, 0x1539200,10, 0x1539230,3, 0x1539240,5, 0x1539260,5, 0x1539280,9, 0x1539400,67, 0x1539600,10, 0x1600000,1, 0x1600020,3, 0x1600030,2, 0x1600040,3, 0x1600050,2, 0x1600800,53, 0x1600900,3, 0x1600910,13, 0x1600a00,53, 0x1600b00,3, 0x1600b10,13, 0x1600c00,5, 0x1600c20,5, 0x1600c40,18, 0x1601000,6, 0x1601020,4, 0x1601040,16, 0x1602000,20, 0x1602080,15, 0x1602100,20, 0x1602180,15, 0x1602200,23, 0x1602260,7, 0x1602400,11, 0x1602430,3, 0x1602440,3, 0x1602450,3, 0x1602460,24, 0x1602500,11, 0x1602530,3, 0x1602540,3, 0x1602550,3, 0x1602560,24, 0x1602600,11, 0x1602630,3, 0x1602640,3, 0x1602650,3, 0x1602660,24, 0x1602700,11, 0x1602730,3, 0x1602740,3, 0x1602750,3, 0x1602760,24, 0x1602800,4, 0x1602820,16, 0x1602880,10, 0x16028c0,10, 0x1602900,6, 0x1602920,6, 0x1602940,4, 0x1602980,13, 0x16029c0,13, 0x1602a00,9, 0x1603000,14, 0x1603040,9, 0x1603080,6, 0x16030a0,1, 0x16030a8,4, 0x1603100,4, 0x1603200,124, 0x1603400,124, 0x1603600,8, 0x1603624,1, 0x1603644,6, 0x1603664,6, 0x1603680,1, 0x1603688,6, 0x16036a8,22, 0x1604000,1, 0x1604020,3, 0x1604030,2, 0x1604040,3, 0x1604050,2, 0x1604800,53, 0x1604900,3, 0x1604910,13, 0x1604a00,53, 0x1604b00,3, 0x1604b10,13, 0x1604c00,5, 0x1604c20,5, 0x1604c40,18, 0x1605000,6, 0x1605020,4, 0x1605040,16, 0x1606000,20, 0x1606080,15, 0x1606100,20, 0x1606180,15, 0x1606200,23, 0x1606260,7, 0x1606400,11, 0x1606430,3, 0x1606440,3, 0x1606450,3, 0x1606460,24, 0x1606500,11, 0x1606530,3, 0x1606540,3, 0x1606550,3, 0x1606560,24, 0x1606600,11, 0x1606630,3, 0x1606640,3, 0x1606650,3, 0x1606660,24, 0x1606700,11, 0x1606730,3, 0x1606740,3, 0x1606750,3, 0x1606760,24, 0x1606800,4, 0x1606820,16, 0x1606880,10, 0x16068c0,10, 0x1606900,6, 0x1606920,6, 0x1606940,4, 0x1606980,13, 0x16069c0,13, 0x1606a00,9, 0x1607000,14, 0x1607040,9, 0x1607080,6, 0x16070a0,1, 0x16070a8,4, 0x1607100,4, 0x1607200,124, 0x1607400,124, 0x1607600,8, 0x1607624,1, 0x1607644,6, 0x1607664,6, 0x1607680,1, 0x1607688,6, 0x16076a8,22, 0x1608000,84, 0x1608180,20, 0x1608200,5, 0x1608400,11, 0x1608440,11, 0x1608480,19, 0x1608500,19, 0x1608580,24, 0x1608600,13, 0x1608800,84, 0x1608980,20, 0x1608a00,5, 0x1608c00,11, 0x1608c40,11, 0x1608c80,19, 0x1608d00,19, 0x1608d80,24, 0x1608e00,13, 0x1609000,10, 0x1609040,5, 0x1609080,10, 0x16090c0,5, 0x1609100,5, 0x1609200,11, 0x1609230,3, 0x1609240,5, 0x1609260,5, 0x1609280,32, 0x1609400,13, 0x1609440,13, 0x1609480,9, 0x16094c0,1, 0x16094d0,5, 0x16094f0,21, 0x1609800,10, 0x1609840,5, 0x1609880,10, 0x16098c0,5, 0x1609900,5, 0x1609a00,11, 0x1609a30,3, 0x1609a40,5, 0x1609a60,5, 0x1609a80,32, 0x1609c00,13, 0x1609c40,13, 0x1609c80,9, 0x1609cc0,1, 0x1609cd0,5, 0x1609cf0,21, 0x160a000,14, 0x160a040,9, 0x160a080,6, 0x160a0a0,1, 0x160a0a8,4, 0x160a100,7, 0x160a120,3, 0x160a130,25, 0x160c000,26, 0x160c06c,2, 0x160c080,3, 0x160c090,17, 0x160c100,26, 0x160c16c,2, 0x160c180,3, 0x160c190,17, 0x160c200,26, 0x160c26c,2, 0x160c280,3, 0x160c290,17, 0x160c300,26, 0x160c36c,2, 0x160c380,3, 0x160c390,17, 0x160c400,26, 0x160c46c,2, 0x160c480,3, 0x160c490,17, 0x160c500,26, 0x160c56c,2, 0x160c580,3, 0x160c590,17, 0x160c600,26, 0x160c66c,2, 0x160c680,3, 0x160c690,17, 0x160c700,26, 0x160c76c,2, 0x160c780,3, 0x160c790,17, 0x160c800,12, 0x160c844,1, 0x160c854,8, 0x160c880,7, 0x160c8a0,2, 0x160c8ac,2, 0x160c8c0,26, 0x160c980,4, 0x160c9a0,5, 0x160c9c0,1, 0x160d000,3, 0x160d010,3, 0x160d020,3, 0x160d030,3, 0x160d040,3, 0x160d050,3, 0x160d060,3, 0x160d070,3, 0x160d080,5, 0x160d0a0,5, 0x160d0c0,5, 0x160d0e0,5, 0x160d100,5, 0x160d120,5, 0x160d140,5, 0x160d160,5, 0x160d200,68, 0x160d400,1, 0x160d804,1, 0x160d844,54, 0x160da00,11, 0x160da40,11, 0x160da80,11, 0x160dac0,11, 0x160db00,11, 0x160db40,11, 0x160db80,11, 0x160dbc0,11, 0x160dc00,28, 0x160dc80,5, 0x160dca0,2, 0x160e000,4, 0x160e020,6, 0x160e040,6, 0x160e060,14, 0x160e100,26, 0x160e180,15, 0x160e200,14, 0x160e240,9, 0x160e280,6, 0x160e2a0,1, 0x160e2a8,4, 0x160e300,14, 0x160e340,9, 0x160e380,6, 0x160e3a0,4, 0x160e400,9, 0x1620000,1, 0x1621000,977, 0x1622000,161, 0x1623000,977, 0x1624000,977, 0x1625000,977, 0x1626000,977, 0x1627000,977, 0x1628000,977, 0x1629000,977, 0x162a000,977, 0x162b000,161, 0x162c000,12, 0x162c040,14, 0x162c080,20, 0x162c104,1, 0x162c10c,4, 0x162c200,12, 0x162c240,14, 0x162c280,20, 0x162c304,1, 0x162c30c,4, 0x162c400,12, 0x162c440,14, 0x162c480,20, 0x162c504,1, 0x162c50c,4, 0x162c600,12, 0x162c640,14, 0x162c680,20, 0x162c704,1, 0x162c70c,4, 0x162c800,12, 0x162c840,14, 0x162c880,20, 0x162c904,1, 0x162c90c,4, 0x162ca00,12, 0x162ca40,14, 0x162ca80,20, 0x162cb04,1, 0x162cb0c,4, 0x162cc00,12, 0x162cc40,14, 0x162cc80,20, 0x162cd04,1, 0x162cd0c,4, 0x162ce00,12, 0x162ce40,14, 0x162ce80,20, 0x162cf04,1, 0x162cf0c,4, 0x162d000,12, 0x162d040,14, 0x162d080,20, 0x162d104,1, 0x162d10c,4, 0x162d200,17, 0x162d250,2, 0x162d260,4, 0x162e000,1, 0x162e014,1, 0x162e01c,11, 0x162e060,9, 0x162e094,1, 0x162e09c,11, 0x162e0e0,15, 0x162e200,12, 0x162e240,13, 0x162e280,3, 0x162e290,1, 0x1680000,500, 0x1680800,2, 0x1680820,15, 0x1681000,500, 0x1681800,8, 0x1681824,6, 0x1681840,8, 0x1681880,7, 0x16818a0,7, 0x16818c0,7, 0x16818e0,7, 0x1681900,8, 0x1681924,16, 0x1681980,12, 0x1682000,500, 0x1682800,2, 0x1682820,15, 0x1683000,500, 0x1683800,8, 0x1683824,6, 0x1683840,8, 0x1683880,7, 0x16838a0,7, 0x16838c0,7, 0x16838e0,7, 0x1683900,8, 0x1683924,16, 0x1683980,12, 0x1684004,5, 0x1684200,26, 0x1684280,4, 0x16842c0,25, 0x1684340,6, 0x1684360,1, 0x1684368,2, 0x1684374,11, 0x16843a4,10, 0x1684400,1, 0x1688000,52, 0x1688400,82, 0x1688560,6, 0x1688600,41, 0x1688700,2, 0x1688720,19, 0x1688800,25, 0x1688880,1, 0x1688900,28, 0x1688980,1, 0x1689000,52, 0x1689400,82, 0x1689560,6, 0x1689600,41, 0x1689700,2, 0x1689720,19, 0x1689800,25, 0x1689880,1, 0x1689900,28, 0x1689980,1, 0x168a000,7, 0x168a080,6, 0x168a0a0,6, 0x168a0c0,1, 0x168a100,4, 0x168a120,9, 0x168c000,3, 0x168c010,6, 0x168c200,7, 0x168c220,6, 0x168c240,7, 0x168c260,6, 0x168c280,2, 0x168c28c,2, 0x168c2a0,2, 0x168c2ac,2, 0x168c2c0,7, 0x168c2e0,7, 0x168c300,2, 0x168c30c,2, 0x168c320,6, 0x168c400,3, 0x168c440,12, 0x168c800,7, 0x168c820,14, 0x168c880,16, 0x168c900,7, 0x168c920,14, 0x168c980,16, 0x168ca00,6, 0x168ca20,7, 0x168cc00,3, 0x16a0000,3, 0x16a0800,7, 0x16a0820,6, 0x16a0840,6, 0x16a0880,1, 0x16a0894,1, 0x16a089c,2, 0x16a08c0,9, 0x16a0900,18, 0x16a0a00,36, 0x16a0b00,22, 0x16a0b80,18, 0x16a0c00,3, 0x16a0c10,3, 0x16a1000,3, 0x16a1010,2, 0x16a1080,20, 0x16a1100,1, 0x16a1200,26, 0x16a1280,4, 0x16a12c0,25, 0x16a1340,6, 0x16a1360,1, 0x16a1368,2, 0x16a1374,11, 0x16a13a4,4, 0x16a1400,1, 0x16b0000,11, 0x16b0030,19, 0x16b0080,17, 0x16b0100,11, 0x16b0130,19, 0x16b0180,17, 0x16b0200,3, 0x16b0214,1, 0x16b021c,1, 0x16b0280,3, 0x16b0294,1, 0x16b029c,1, 0x16b0300,18, 0x16b0380,18, 0x16b0400,18, 0x16b0480,18, 0x16b0500,18, 0x16b0580,18, 0x16b0600,18, 0x16b0680,18, 0x16b0700,13, 0x16b0738,6, 0x16b0780,13, 0x16b07b8,6, 0x16b0800,1, 0x16b0808,22, 0x16b0880,1, 0x16b0894,13, 0x16b0900,3, 0x16b0910,3, 0x16b0920,3, 0x16b0940,3, 0x16b0954,1, 0x16b095c,1, 0x16b0a00,52, 0x16b0c00,4, 0x16b0d00,34, 0x16b0e00,4, 0x16b0e80,30, 0x16b0f00,1, 0x16b0f40,5, 0x16b0f60,5, 0x16b0f80,6, 0x16b1000,14, 0x16b1040,4, 0x16b1060,17, 0x16b10c0,6, 0x16b10e0,1, 0x16b10e8,2, 0x16b10f4,11, 0x16b1124,17, 0x16b1200,3, 0x16b1210,3, 0x16b1220,3, 0x16b1230,3, 0x16b1240,3, 0x16b1250,3, 0x16b2000,20, 0x16b2080,3, 0x16b2090,1, 0x16b2098,2, 0x16c0000,500, 0x16c0800,2, 0x16c0820,15, 0x16c1000,500, 0x16c1800,8, 0x16c1824,6, 0x16c1840,8, 0x16c1880,7, 0x16c18a0,7, 0x16c18c0,7, 0x16c18e0,7, 0x16c1900,8, 0x16c1924,16, 0x16c1980,12, 0x16c2000,500, 0x16c2800,2, 0x16c2820,15, 0x16c3000,500, 0x16c3800,8, 0x16c3824,6, 0x16c3840,8, 0x16c3880,7, 0x16c38a0,7, 0x16c38c0,7, 0x16c38e0,7, 0x16c3900,8, 0x16c3924,16, 0x16c3980,12, 0x16c4004,5, 0x16c4200,26, 0x16c4280,4, 0x16c42c0,25, 0x16c4340,6, 0x16c4360,1, 0x16c4368,2, 0x16c4374,11, 0x16c43a4,10, 0x16c4400,1, 0x16c8000,52, 0x16c8400,82, 0x16c8560,6, 0x16c8600,41, 0x16c8700,2, 0x16c8720,19, 0x16c8800,25, 0x16c8880,1, 0x16c8900,28, 0x16c8980,1, 0x16c9000,52, 0x16c9400,82, 0x16c9560,6, 0x16c9600,41, 0x16c9700,2, 0x16c9720,19, 0x16c9800,25, 0x16c9880,1, 0x16c9900,28, 0x16c9980,1, 0x16ca000,7, 0x16ca080,6, 0x16ca0a0,6, 0x16ca0c0,1, 0x16ca100,4, 0x16ca120,9, 0x16cc000,3, 0x16cc010,6, 0x16cc200,7, 0x16cc220,6, 0x16cc240,7, 0x16cc260,6, 0x16cc280,2, 0x16cc28c,2, 0x16cc2a0,2, 0x16cc2ac,2, 0x16cc2c0,7, 0x16cc2e0,7, 0x16cc300,2, 0x16cc30c,2, 0x16cc320,6, 0x16cc400,3, 0x16cc440,12, 0x16cc800,7, 0x16cc820,14, 0x16cc880,16, 0x16cc900,7, 0x16cc920,14, 0x16cc980,16, 0x16cca00,6, 0x16cca20,7, 0x16ccc00,3, 0x16e0000,3, 0x16e0800,7, 0x16e0820,6, 0x16e0840,6, 0x16e0880,1, 0x16e0894,1, 0x16e089c,2, 0x16e08c0,9, 0x16e0900,18, 0x16e0a00,36, 0x16e0b00,22, 0x16e0b80,18, 0x16e0c00,3, 0x16e0c10,3, 0x16e1000,3, 0x16e1010,2, 0x16e1080,20, 0x16e1100,1, 0x16e1200,26, 0x16e1280,4, 0x16e12c0,25, 0x16e1340,6, 0x16e1360,1, 0x16e1368,2, 0x16e1374,11, 0x16e13a4,4, 0x16e1400,1, 0x16f0000,11, 0x16f0030,19, 0x16f0080,17, 0x16f0100,11, 0x16f0130,19, 0x16f0180,17, 0x16f0200,3, 0x16f0214,1, 0x16f021c,1, 0x16f0280,3, 0x16f0294,1, 0x16f029c,1, 0x16f0300,18, 0x16f0380,18, 0x16f0400,18, 0x16f0480,18, 0x16f0500,18, 0x16f0580,18, 0x16f0600,18, 0x16f0680,18, 0x16f0700,13, 0x16f0738,6, 0x16f0780,13, 0x16f07b8,6, 0x16f0800,1, 0x16f0808,22, 0x16f0880,1, 0x16f0894,13, 0x16f0900,3, 0x16f0910,3, 0x16f0920,3, 0x16f0940,3, 0x16f0954,1, 0x16f095c,1, 0x16f0a00,52, 0x16f0c00,4, 0x16f0d00,34, 0x16f0e00,4, 0x16f0e80,30, 0x16f0f00,1, 0x16f0f40,5, 0x16f0f60,5, 0x16f0f80,6, 0x16f1000,14, 0x16f1040,4, 0x16f1060,17, 0x16f10c0,6, 0x16f10e0,1, 0x16f10e8,2, 0x16f10f4,11, 0x16f1124,17, 0x16f1200,3, 0x16f1210,3, 0x16f1220,3, 0x16f1230,3, 0x16f1240,3, 0x16f1250,3, 0x16f2000,20, 0x16f2080,3, 0x16f2090,1, 0x16f2098,2, 0x1700000,13, 0x1700038,4, 0x1700050,3, 0x1700060,3, 0x1700070,16, 0x17000c0,5, 0x1700400,14, 0x1700440,2, 0x170044c,3, 0x1700480,14, 0x17004c0,2, 0x17004cc,3, 0x1700500,1, 0x1700508,15, 0x1700560,2, 0x170056c,2, 0x1700600,4, 0x1700680,27, 0x1700800,2, 0x1700900,32, 0x1700984,2, 0x1700990,4, 0x1700a00,26, 0x1700a80,4, 0x1700ac0,25, 0x1700b40,6, 0x1700b60,1, 0x1700b68,2, 0x1700b74,11, 0x1700ba4,8, 0x1700c00,9, 0x1700c40,11, 0x1700c80,23, 0x1700ce0,15, 0x1700d20,15, 0x1700d60,1, 0x1701000,13, 0x1701038,4, 0x1701050,3, 0x1701060,3, 0x1701070,16, 0x17010c0,5, 0x1701400,14, 0x1701440,2, 0x170144c,3, 0x1701480,14, 0x17014c0,2, 0x17014cc,3, 0x1701500,1, 0x1701508,15, 0x1701560,2, 0x170156c,2, 0x1701600,4, 0x1701680,27, 0x1701800,2, 0x1701900,32, 0x1701984,2, 0x1701990,4, 0x1701a00,26, 0x1701a80,4, 0x1701ac0,25, 0x1701b40,6, 0x1701b60,1, 0x1701b68,2, 0x1701b74,11, 0x1701ba4,8, 0x1701c00,9, 0x1701c40,11, 0x1701c80,23, 0x1701ce0,15, 0x1701d20,15, 0x1701d60,1, 0x1702000,1, 0x1702100,36, 0x1702200,7, 0x1710000,22, 0x1710080,22, 0x1710100,12, 0x1710140,12, 0x1710200,52, 0x1710300,52, 0x1710400,11, 0x1710440,11, 0x1710480,3, 0x17104a0,6, 0x17104c0,6, 0x17104e0,3, 0x17104f0,3, 0x1710800,9, 0x1710840,15, 0x1710880,15, 0x17108c0,15, 0x1710900,1, 0x1710914,13, 0x1710980,17, 0x1711000,17, 0x1711080,17, 0x1711104,5, 0x1711120,3, 0x1711130,11, 0x1711200,31, 0x1711280,31, 0x1711300,12, 0x1711340,12, 0x1711380,2, 0x1711390,2, 0x17113a0,3, 0x17113b0,3, 0x17113c0,5, 0x17113e0,5, 0x1711400,3, 0x1711410,3, 0x1711420,3, 0x1711430,3, 0x1711440,3, 0x1711450,3, 0x1711460,7, 0x1711800,26, 0x1711880,4, 0x17118c0,25, 0x1711940,6, 0x1711960,1, 0x1711968,2, 0x1711974,11, 0x17119a4,12, 0x1711a00,4, 0x1711b00,43, 0x1711c00,4, 0x1711c20,7, 0x1711c40,3, 0x1711c50,1, 0x1711c60,3, 0x1711e00,32, 0x1711e84,1, 0x1711e90,4, 0x1711ea4,1, 0x1711eb4,14, 0x1711ef0,2, 0x1711f04,1, 0x1711f10,8, 0x1711f34,6, 0x1712000,3, 0x1712010,21, 0x1712080,1, 0x1712094,1, 0x171209c,5, 0x1712100,15, 0x1712140,1, 0x1712180,6, 0x1714000,22, 0x1714080,22, 0x1714100,12, 0x1714140,12, 0x1714200,52, 0x1714300,52, 0x1714400,11, 0x1714440,11, 0x1714480,3, 0x17144a0,6, 0x17144c0,6, 0x17144e0,3, 0x17144f0,3, 0x1714800,9, 0x1714840,15, 0x1714880,15, 0x17148c0,15, 0x1714900,1, 0x1714914,13, 0x1714980,17, 0x1715000,17, 0x1715080,17, 0x1715104,5, 0x1715120,3, 0x1715130,11, 0x1715200,31, 0x1715280,31, 0x1715300,12, 0x1715340,12, 0x1715380,2, 0x1715390,2, 0x17153a0,3, 0x17153b0,3, 0x17153c0,5, 0x17153e0,5, 0x1715400,3, 0x1715410,3, 0x1715420,3, 0x1715430,3, 0x1715440,3, 0x1715450,3, 0x1715460,7, 0x1715800,26, 0x1715880,4, 0x17158c0,25, 0x1715940,6, 0x1715960,1, 0x1715968,2, 0x1715974,11, 0x17159a4,12, 0x1715a00,4, 0x1715b00,43, 0x1715c00,4, 0x1715c20,7, 0x1715c40,3, 0x1715c50,1, 0x1715c60,3, 0x1715e00,32, 0x1715e84,1, 0x1715e90,4, 0x1715ea4,1, 0x1715eb4,14, 0x1715ef0,2, 0x1715f04,1, 0x1715f10,8, 0x1715f34,6, 0x1716000,3, 0x1716010,21, 0x1716080,1, 0x1716094,1, 0x171609c,5, 0x1716100,15, 0x1716140,1, 0x1716180,6, 0x1718000,100, 0x1718200,3, 0x1718210,5, 0x1720000,12, 0x1720040,2, 0x1720050,3, 0x1722000,1006, 0x1723000,31, 0x1723084,6, 0x1724004,1, 0x172400c,3, 0x1724200,23, 0x1724280,23, 0x1724300,1, 0x1724400,1, 0x1724800,122, 0x1724a00,122, 0x1724c04,63, 0x1724d04,1, 0x1724d10,5, 0x1724d40,6, 0x1724d60,5, 0x1726000,1, 0x1726100,1, 0x1726108,3, 0x1726120,2, 0x1726134,8, 0x1726160,2, 0x1726174,8, 0x17261a0,4, 0x1726200,54, 0x1726800,5, 0x1726820,2, 0x1726834,1, 0x172683c,1, 0x1726a00,24, 0x1726a80,24, 0x1726b00,1, 0x1726c00,6, 0x1726c24,5, 0x1726c40,16, 0x1727000,1, 0x1727020,5, 0x1727040,1, 0x1727048,2, 0x1727080,1, 0x1727100,4, 0x1727180,24, 0x1727200,4, 0x1727280,27, 0x1727300,2, 0x172730c,3, 0x1728004,1, 0x172800c,3, 0x1728020,1, 0x1728100,2, 0x1728110,3, 0x1728120,2, 0x1728140,10, 0x1728180,13, 0x1728200,2, 0x1728210,3, 0x1728220,2, 0x1728240,10, 0x1728280,13, 0x1728400,14, 0x1728440,3, 0x1728450,3, 0x1728460,1, 0x1728500,36, 0x1728600,10, 0x1728640,5, 0x1728660,5, 0x1728700,27, 0x1728780,7, 0x17287a0,8, 0x1728800,27, 0x1728880,7, 0x17288a0,8, 0x1728900,27, 0x1728980,7, 0x17289a0,8, 0x1728a00,27, 0x1728a80,7, 0x1728aa0,8, 0x1728b00,48, 0x1728bc4,8, 0x1728bf0,30, 0x1728c80,4, 0x1728cc0,25, 0x1728d40,6, 0x1728d60,1, 0x1728d68,2, 0x1728d74,3, 0x1728e00,8, 0x1728e24,28, 0x1729000,4, 0x1729080,23, 0x1729100,14, 0x1729140,9, 0x1729200,10, 0x1729230,3, 0x1729240,5, 0x1729260,5, 0x1729280,9, 0x1729400,67, 0x1729600,10, 0x1730000,12, 0x1730040,2, 0x1730050,3, 0x1732000,1006, 0x1733000,31, 0x1733084,6, 0x1734004,1, 0x173400c,3, 0x1734200,23, 0x1734280,23, 0x1734300,1, 0x1734400,1, 0x1734800,122, 0x1734a00,122, 0x1734c04,63, 0x1734d04,1, 0x1734d10,5, 0x1734d40,6, 0x1734d60,5, 0x1736000,1, 0x1736100,1, 0x1736108,3, 0x1736120,2, 0x1736134,8, 0x1736160,2, 0x1736174,8, 0x17361a0,4, 0x1736200,54, 0x1736800,5, 0x1736820,2, 0x1736834,1, 0x173683c,1, 0x1736a00,24, 0x1736a80,24, 0x1736b00,1, 0x1736c00,6, 0x1736c24,5, 0x1736c40,16, 0x1737000,1, 0x1737020,5, 0x1737040,1, 0x1737048,2, 0x1737080,1, 0x1737100,4, 0x1737180,24, 0x1737200,4, 0x1737280,27, 0x1737300,2, 0x173730c,3, 0x1738004,1, 0x173800c,3, 0x1738020,1, 0x1738100,2, 0x1738110,3, 0x1738120,2, 0x1738140,10, 0x1738180,13, 0x1738200,2, 0x1738210,3, 0x1738220,2, 0x1738240,10, 0x1738280,13, 0x1738400,14, 0x1738440,3, 0x1738450,3, 0x1738460,1, 0x1738500,36, 0x1738600,10, 0x1738640,5, 0x1738660,5, 0x1738700,27, 0x1738780,7, 0x17387a0,8, 0x1738800,27, 0x1738880,7, 0x17388a0,8, 0x1738900,27, 0x1738980,7, 0x17389a0,8, 0x1738a00,27, 0x1738a80,7, 0x1738aa0,8, 0x1738b00,48, 0x1738bc4,8, 0x1738bf0,30, 0x1738c80,4, 0x1738cc0,25, 0x1738d40,6, 0x1738d60,1, 0x1738d68,2, 0x1738d74,3, 0x1738e00,8, 0x1738e24,28, 0x1739000,4, 0x1739080,23, 0x1739100,14, 0x1739140,9, 0x1739200,10, 0x1739230,3, 0x1739240,5, 0x1739260,5, 0x1739280,9, 0x1739400,67, 0x1739600,10, 0x1800000,1, 0x1800020,3, 0x1800030,2, 0x1800040,3, 0x1800050,2, 0x1800800,53, 0x1800900,3, 0x1800910,13, 0x1800a00,53, 0x1800b00,3, 0x1800b10,13, 0x1800c00,5, 0x1800c20,5, 0x1800c40,18, 0x1801000,6, 0x1801020,4, 0x1801040,16, 0x1802000,20, 0x1802080,15, 0x1802100,20, 0x1802180,15, 0x1802200,23, 0x1802260,7, 0x1802400,11, 0x1802430,3, 0x1802440,3, 0x1802450,3, 0x1802460,24, 0x1802500,11, 0x1802530,3, 0x1802540,3, 0x1802550,3, 0x1802560,24, 0x1802600,11, 0x1802630,3, 0x1802640,3, 0x1802650,3, 0x1802660,24, 0x1802700,11, 0x1802730,3, 0x1802740,3, 0x1802750,3, 0x1802760,24, 0x1802800,4, 0x1802820,16, 0x1802880,10, 0x18028c0,10, 0x1802900,6, 0x1802920,6, 0x1802940,4, 0x1802980,13, 0x18029c0,13, 0x1802a00,9, 0x1803000,14, 0x1803040,9, 0x1803080,6, 0x18030a0,1, 0x18030a8,4, 0x1803100,4, 0x1803200,124, 0x1803400,124, 0x1803600,8, 0x1803624,1, 0x1803644,6, 0x1803664,6, 0x1803680,1, 0x1803688,6, 0x18036a8,22, 0x1804000,1, 0x1804020,3, 0x1804030,2, 0x1804040,3, 0x1804050,2, 0x1804800,53, 0x1804900,3, 0x1804910,13, 0x1804a00,53, 0x1804b00,3, 0x1804b10,13, 0x1804c00,5, 0x1804c20,5, 0x1804c40,18, 0x1805000,6, 0x1805020,4, 0x1805040,16, 0x1806000,20, 0x1806080,15, 0x1806100,20, 0x1806180,15, 0x1806200,23, 0x1806260,7, 0x1806400,11, 0x1806430,3, 0x1806440,3, 0x1806450,3, 0x1806460,24, 0x1806500,11, 0x1806530,3, 0x1806540,3, 0x1806550,3, 0x1806560,24, 0x1806600,11, 0x1806630,3, 0x1806640,3, 0x1806650,3, 0x1806660,24, 0x1806700,11, 0x1806730,3, 0x1806740,3, 0x1806750,3, 0x1806760,24, 0x1806800,4, 0x1806820,16, 0x1806880,10, 0x18068c0,10, 0x1806900,6, 0x1806920,6, 0x1806940,4, 0x1806980,13, 0x18069c0,13, 0x1806a00,9, 0x1807000,14, 0x1807040,9, 0x1807080,6, 0x18070a0,1, 0x18070a8,4, 0x1807100,4, 0x1807200,124, 0x1807400,124, 0x1807600,8, 0x1807624,1, 0x1807644,6, 0x1807664,6, 0x1807680,1, 0x1807688,6, 0x18076a8,22, 0x1808000,84, 0x1808180,20, 0x1808200,5, 0x1808400,11, 0x1808440,11, 0x1808480,19, 0x1808500,19, 0x1808580,24, 0x1808600,13, 0x1808800,84, 0x1808980,20, 0x1808a00,5, 0x1808c00,11, 0x1808c40,11, 0x1808c80,19, 0x1808d00,19, 0x1808d80,24, 0x1808e00,13, 0x1809000,10, 0x1809040,5, 0x1809080,10, 0x18090c0,5, 0x1809100,5, 0x1809200,11, 0x1809230,3, 0x1809240,5, 0x1809260,5, 0x1809280,32, 0x1809400,13, 0x1809440,13, 0x1809480,9, 0x18094c0,1, 0x18094d0,5, 0x18094f0,21, 0x1809800,10, 0x1809840,5, 0x1809880,10, 0x18098c0,5, 0x1809900,5, 0x1809a00,11, 0x1809a30,3, 0x1809a40,5, 0x1809a60,5, 0x1809a80,32, 0x1809c00,13, 0x1809c40,13, 0x1809c80,9, 0x1809cc0,1, 0x1809cd0,5, 0x1809cf0,21, 0x180a000,14, 0x180a040,9, 0x180a080,6, 0x180a0a0,1, 0x180a0a8,4, 0x180a100,7, 0x180a120,3, 0x180a130,25, 0x180c000,26, 0x180c06c,2, 0x180c080,3, 0x180c090,17, 0x180c100,26, 0x180c16c,2, 0x180c180,3, 0x180c190,17, 0x180c200,26, 0x180c26c,2, 0x180c280,3, 0x180c290,17, 0x180c300,26, 0x180c36c,2, 0x180c380,3, 0x180c390,17, 0x180c400,26, 0x180c46c,2, 0x180c480,3, 0x180c490,17, 0x180c500,26, 0x180c56c,2, 0x180c580,3, 0x180c590,17, 0x180c600,26, 0x180c66c,2, 0x180c680,3, 0x180c690,17, 0x180c700,26, 0x180c76c,2, 0x180c780,3, 0x180c790,17, 0x180c800,12, 0x180c844,1, 0x180c854,8, 0x180c880,7, 0x180c8a0,2, 0x180c8ac,2, 0x180c8c0,26, 0x180c980,4, 0x180c9a0,5, 0x180c9c0,1, 0x180d000,3, 0x180d010,3, 0x180d020,3, 0x180d030,3, 0x180d040,3, 0x180d050,3, 0x180d060,3, 0x180d070,3, 0x180d080,5, 0x180d0a0,5, 0x180d0c0,5, 0x180d0e0,5, 0x180d100,5, 0x180d120,5, 0x180d140,5, 0x180d160,5, 0x180d200,68, 0x180d400,1, 0x180d804,1, 0x180d844,54, 0x180da00,11, 0x180da40,11, 0x180da80,11, 0x180dac0,11, 0x180db00,11, 0x180db40,11, 0x180db80,11, 0x180dbc0,11, 0x180dc00,28, 0x180dc80,5, 0x180dca0,2, 0x180e000,4, 0x180e020,6, 0x180e040,6, 0x180e060,14, 0x180e100,26, 0x180e180,15, 0x180e200,14, 0x180e240,9, 0x180e280,6, 0x180e2a0,1, 0x180e2a8,4, 0x180e300,14, 0x180e340,9, 0x180e380,6, 0x180e3a0,4, 0x180e400,9, 0x1820000,1, 0x1821000,977, 0x1822000,161, 0x1823000,977, 0x1824000,977, 0x1825000,977, 0x1826000,977, 0x1827000,977, 0x1828000,977, 0x1829000,977, 0x182a000,977, 0x182b000,161, 0x182c000,12, 0x182c040,14, 0x182c080,20, 0x182c104,1, 0x182c10c,4, 0x182c200,12, 0x182c240,14, 0x182c280,20, 0x182c304,1, 0x182c30c,4, 0x182c400,12, 0x182c440,14, 0x182c480,20, 0x182c504,1, 0x182c50c,4, 0x182c600,12, 0x182c640,14, 0x182c680,20, 0x182c704,1, 0x182c70c,4, 0x182c800,12, 0x182c840,14, 0x182c880,20, 0x182c904,1, 0x182c90c,4, 0x182ca00,12, 0x182ca40,14, 0x182ca80,20, 0x182cb04,1, 0x182cb0c,4, 0x182cc00,12, 0x182cc40,14, 0x182cc80,20, 0x182cd04,1, 0x182cd0c,4, 0x182ce00,12, 0x182ce40,14, 0x182ce80,20, 0x182cf04,1, 0x182cf0c,4, 0x182d000,12, 0x182d040,14, 0x182d080,20, 0x182d104,1, 0x182d10c,4, 0x182d200,17, 0x182d250,2, 0x182d260,4, 0x182e000,1, 0x182e014,1, 0x182e01c,11, 0x182e060,9, 0x182e094,1, 0x182e09c,11, 0x182e0e0,15, 0x182e200,12, 0x182e240,13, 0x182e280,3, 0x182e290,1, 0x1880000,500, 0x1880800,2, 0x1880820,15, 0x1881000,500, 0x1881800,8, 0x1881824,6, 0x1881840,8, 0x1881880,7, 0x18818a0,7, 0x18818c0,7, 0x18818e0,7, 0x1881900,8, 0x1881924,16, 0x1881980,12, 0x1882000,500, 0x1882800,2, 0x1882820,15, 0x1883000,500, 0x1883800,8, 0x1883824,6, 0x1883840,8, 0x1883880,7, 0x18838a0,7, 0x18838c0,7, 0x18838e0,7, 0x1883900,8, 0x1883924,16, 0x1883980,12, 0x1884004,5, 0x1884200,26, 0x1884280,4, 0x18842c0,25, 0x1884340,6, 0x1884360,1, 0x1884368,2, 0x1884374,11, 0x18843a4,10, 0x1884400,1, 0x1888000,52, 0x1888400,82, 0x1888560,6, 0x1888600,41, 0x1888700,2, 0x1888720,19, 0x1888800,25, 0x1888880,1, 0x1888900,28, 0x1888980,1, 0x1889000,52, 0x1889400,82, 0x1889560,6, 0x1889600,41, 0x1889700,2, 0x1889720,19, 0x1889800,25, 0x1889880,1, 0x1889900,28, 0x1889980,1, 0x188a000,7, 0x188a080,6, 0x188a0a0,6, 0x188a0c0,1, 0x188a100,4, 0x188a120,9, 0x188c000,3, 0x188c010,6, 0x188c200,7, 0x188c220,6, 0x188c240,7, 0x188c260,6, 0x188c280,2, 0x188c28c,2, 0x188c2a0,2, 0x188c2ac,2, 0x188c2c0,7, 0x188c2e0,7, 0x188c300,2, 0x188c30c,2, 0x188c320,6, 0x188c400,3, 0x188c440,12, 0x188c800,7, 0x188c820,14, 0x188c880,16, 0x188c900,7, 0x188c920,14, 0x188c980,16, 0x188ca00,6, 0x188ca20,7, 0x188cc00,3, 0x18a0000,3, 0x18a0800,7, 0x18a0820,6, 0x18a0840,6, 0x18a0880,1, 0x18a0894,1, 0x18a089c,2, 0x18a08c0,9, 0x18a0900,18, 0x18a0a00,36, 0x18a0b00,22, 0x18a0b80,18, 0x18a0c00,3, 0x18a0c10,3, 0x18a1000,3, 0x18a1010,2, 0x18a1080,20, 0x18a1100,1, 0x18a1200,26, 0x18a1280,4, 0x18a12c0,25, 0x18a1340,6, 0x18a1360,1, 0x18a1368,2, 0x18a1374,11, 0x18a13a4,4, 0x18a1400,1, 0x18b0000,11, 0x18b0030,19, 0x18b0080,17, 0x18b0100,11, 0x18b0130,19, 0x18b0180,17, 0x18b0200,3, 0x18b0214,1, 0x18b021c,1, 0x18b0280,3, 0x18b0294,1, 0x18b029c,1, 0x18b0300,18, 0x18b0380,18, 0x18b0400,18, 0x18b0480,18, 0x18b0500,18, 0x18b0580,18, 0x18b0600,18, 0x18b0680,18, 0x18b0700,13, 0x18b0738,6, 0x18b0780,13, 0x18b07b8,6, 0x18b0800,1, 0x18b0808,22, 0x18b0880,1, 0x18b0894,13, 0x18b0900,3, 0x18b0910,3, 0x18b0920,3, 0x18b0940,3, 0x18b0954,1, 0x18b095c,1, 0x18b0a00,52, 0x18b0c00,4, 0x18b0d00,34, 0x18b0e00,4, 0x18b0e80,30, 0x18b0f00,1, 0x18b0f40,5, 0x18b0f60,5, 0x18b0f80,6, 0x18b1000,14, 0x18b1040,4, 0x18b1060,17, 0x18b10c0,6, 0x18b10e0,1, 0x18b10e8,2, 0x18b10f4,11, 0x18b1124,17, 0x18b1200,3, 0x18b1210,3, 0x18b1220,3, 0x18b1230,3, 0x18b1240,3, 0x18b1250,3, 0x18b2000,20, 0x18b2080,3, 0x18b2090,1, 0x18b2098,2, 0x18c0000,500, 0x18c0800,2, 0x18c0820,15, 0x18c1000,500, 0x18c1800,8, 0x18c1824,6, 0x18c1840,8, 0x18c1880,7, 0x18c18a0,7, 0x18c18c0,7, 0x18c18e0,7, 0x18c1900,8, 0x18c1924,16, 0x18c1980,12, 0x18c2000,500, 0x18c2800,2, 0x18c2820,15, 0x18c3000,500, 0x18c3800,8, 0x18c3824,6, 0x18c3840,8, 0x18c3880,7, 0x18c38a0,7, 0x18c38c0,7, 0x18c38e0,7, 0x18c3900,8, 0x18c3924,16, 0x18c3980,12, 0x18c4004,5, 0x18c4200,26, 0x18c4280,4, 0x18c42c0,25, 0x18c4340,6, 0x18c4360,1, 0x18c4368,2, 0x18c4374,11, 0x18c43a4,10, 0x18c4400,1, 0x18c8000,52, 0x18c8400,82, 0x18c8560,6, 0x18c8600,41, 0x18c8700,2, 0x18c8720,19, 0x18c8800,25, 0x18c8880,1, 0x18c8900,28, 0x18c8980,1, 0x18c9000,52, 0x18c9400,82, 0x18c9560,6, 0x18c9600,41, 0x18c9700,2, 0x18c9720,19, 0x18c9800,25, 0x18c9880,1, 0x18c9900,28, 0x18c9980,1, 0x18ca000,7, 0x18ca080,6, 0x18ca0a0,6, 0x18ca0c0,1, 0x18ca100,4, 0x18ca120,9, 0x18cc000,3, 0x18cc010,6, 0x18cc200,7, 0x18cc220,6, 0x18cc240,7, 0x18cc260,6, 0x18cc280,2, 0x18cc28c,2, 0x18cc2a0,2, 0x18cc2ac,2, 0x18cc2c0,7, 0x18cc2e0,7, 0x18cc300,2, 0x18cc30c,2, 0x18cc320,6, 0x18cc400,3, 0x18cc440,12, 0x18cc800,7, 0x18cc820,14, 0x18cc880,16, 0x18cc900,7, 0x18cc920,14, 0x18cc980,16, 0x18cca00,6, 0x18cca20,7, 0x18ccc00,3, 0x18e0000,3, 0x18e0800,7, 0x18e0820,6, 0x18e0840,6, 0x18e0880,1, 0x18e0894,1, 0x18e089c,2, 0x18e08c0,9, 0x18e0900,18, 0x18e0a00,36, 0x18e0b00,22, 0x18e0b80,18, 0x18e0c00,3, 0x18e0c10,3, 0x18e1000,3, 0x18e1010,2, 0x18e1080,20, 0x18e1100,1, 0x18e1200,26, 0x18e1280,4, 0x18e12c0,25, 0x18e1340,6, 0x18e1360,1, 0x18e1368,2, 0x18e1374,11, 0x18e13a4,4, 0x18e1400,1, 0x18f0000,11, 0x18f0030,19, 0x18f0080,17, 0x18f0100,11, 0x18f0130,19, 0x18f0180,17, 0x18f0200,3, 0x18f0214,1, 0x18f021c,1, 0x18f0280,3, 0x18f0294,1, 0x18f029c,1, 0x18f0300,18, 0x18f0380,18, 0x18f0400,18, 0x18f0480,18, 0x18f0500,18, 0x18f0580,18, 0x18f0600,18, 0x18f0680,18, 0x18f0700,13, 0x18f0738,6, 0x18f0780,13, 0x18f07b8,6, 0x18f0800,1, 0x18f0808,22, 0x18f0880,1, 0x18f0894,13, 0x18f0900,3, 0x18f0910,3, 0x18f0920,3, 0x18f0940,3, 0x18f0954,1, 0x18f095c,1, 0x18f0a00,52, 0x18f0c00,4, 0x18f0d00,34, 0x18f0e00,4, 0x18f0e80,30, 0x18f0f00,1, 0x18f0f40,5, 0x18f0f60,5, 0x18f0f80,6, 0x18f1000,14, 0x18f1040,4, 0x18f1060,17, 0x18f10c0,6, 0x18f10e0,1, 0x18f10e8,2, 0x18f10f4,11, 0x18f1124,17, 0x18f1200,3, 0x18f1210,3, 0x18f1220,3, 0x18f1230,3, 0x18f1240,3, 0x18f1250,3, 0x18f2000,20, 0x18f2080,3, 0x18f2090,1, 0x18f2098,2, 0x1900000,13, 0x1900038,4, 0x1900050,3, 0x1900060,3, 0x1900070,16, 0x19000c0,5, 0x1900400,14, 0x1900440,2, 0x190044c,3, 0x1900480,14, 0x19004c0,2, 0x19004cc,3, 0x1900500,1, 0x1900508,15, 0x1900560,2, 0x190056c,2, 0x1900600,4, 0x1900680,27, 0x1900800,2, 0x1900900,32, 0x1900984,2, 0x1900990,4, 0x1900a00,26, 0x1900a80,4, 0x1900ac0,25, 0x1900b40,6, 0x1900b60,1, 0x1900b68,2, 0x1900b74,11, 0x1900ba4,8, 0x1900c00,9, 0x1900c40,11, 0x1900c80,23, 0x1900ce0,15, 0x1900d20,15, 0x1900d60,1, 0x1901000,13, 0x1901038,4, 0x1901050,3, 0x1901060,3, 0x1901070,16, 0x19010c0,5, 0x1901400,14, 0x1901440,2, 0x190144c,3, 0x1901480,14, 0x19014c0,2, 0x19014cc,3, 0x1901500,1, 0x1901508,15, 0x1901560,2, 0x190156c,2, 0x1901600,4, 0x1901680,27, 0x1901800,2, 0x1901900,32, 0x1901984,2, 0x1901990,4, 0x1901a00,26, 0x1901a80,4, 0x1901ac0,25, 0x1901b40,6, 0x1901b60,1, 0x1901b68,2, 0x1901b74,11, 0x1901ba4,8, 0x1901c00,9, 0x1901c40,11, 0x1901c80,23, 0x1901ce0,15, 0x1901d20,15, 0x1901d60,1, 0x1902000,1, 0x1902100,36, 0x1902200,7, 0x1910000,22, 0x1910080,22, 0x1910100,12, 0x1910140,12, 0x1910200,52, 0x1910300,52, 0x1910400,11, 0x1910440,11, 0x1910480,3, 0x19104a0,6, 0x19104c0,6, 0x19104e0,3, 0x19104f0,3, 0x1910800,9, 0x1910840,15, 0x1910880,15, 0x19108c0,15, 0x1910900,1, 0x1910914,13, 0x1910980,17, 0x1911000,17, 0x1911080,17, 0x1911104,5, 0x1911120,3, 0x1911130,11, 0x1911200,31, 0x1911280,31, 0x1911300,12, 0x1911340,12, 0x1911380,2, 0x1911390,2, 0x19113a0,3, 0x19113b0,3, 0x19113c0,5, 0x19113e0,5, 0x1911400,3, 0x1911410,3, 0x1911420,3, 0x1911430,3, 0x1911440,3, 0x1911450,3, 0x1911460,7, 0x1911800,26, 0x1911880,4, 0x19118c0,25, 0x1911940,6, 0x1911960,1, 0x1911968,2, 0x1911974,11, 0x19119a4,12, 0x1911a00,4, 0x1911b00,43, 0x1911c00,4, 0x1911c20,7, 0x1911c40,3, 0x1911c50,1, 0x1911c60,3, 0x1911e00,32, 0x1911e84,1, 0x1911e90,4, 0x1911ea4,1, 0x1911eb4,14, 0x1911ef0,2, 0x1911f04,1, 0x1911f10,8, 0x1911f34,6, 0x1912000,3, 0x1912010,21, 0x1912080,1, 0x1912094,1, 0x191209c,5, 0x1912100,15, 0x1912140,1, 0x1912180,6, 0x1914000,22, 0x1914080,22, 0x1914100,12, 0x1914140,12, 0x1914200,52, 0x1914300,52, 0x1914400,11, 0x1914440,11, 0x1914480,3, 0x19144a0,6, 0x19144c0,6, 0x19144e0,3, 0x19144f0,3, 0x1914800,9, 0x1914840,15, 0x1914880,15, 0x19148c0,15, 0x1914900,1, 0x1914914,13, 0x1914980,17, 0x1915000,17, 0x1915080,17, 0x1915104,5, 0x1915120,3, 0x1915130,11, 0x1915200,31, 0x1915280,31, 0x1915300,12, 0x1915340,12, 0x1915380,2, 0x1915390,2, 0x19153a0,3, 0x19153b0,3, 0x19153c0,5, 0x19153e0,5, 0x1915400,3, 0x1915410,3, 0x1915420,3, 0x1915430,3, 0x1915440,3, 0x1915450,3, 0x1915460,7, 0x1915800,26, 0x1915880,4, 0x19158c0,25, 0x1915940,6, 0x1915960,1, 0x1915968,2, 0x1915974,11, 0x19159a4,12, 0x1915a00,4, 0x1915b00,43, 0x1915c00,4, 0x1915c20,7, 0x1915c40,3, 0x1915c50,1, 0x1915c60,3, 0x1915e00,32, 0x1915e84,1, 0x1915e90,4, 0x1915ea4,1, 0x1915eb4,14, 0x1915ef0,2, 0x1915f04,1, 0x1915f10,8, 0x1915f34,6, 0x1916000,3, 0x1916010,21, 0x1916080,1, 0x1916094,1, 0x191609c,5, 0x1916100,15, 0x1916140,1, 0x1916180,6, 0x1918000,100, 0x1918200,3, 0x1918210,5, 0x1920000,12, 0x1920040,2, 0x1920050,3, 0x1922000,1006, 0x1923000,31, 0x1923084,6, 0x1924004,1, 0x192400c,3, 0x1924200,23, 0x1924280,23, 0x1924300,1, 0x1924400,1, 0x1924800,122, 0x1924a00,122, 0x1924c04,63, 0x1924d04,1, 0x1924d10,5, 0x1924d40,6, 0x1924d60,5, 0x1926000,1, 0x1926100,1, 0x1926108,3, 0x1926120,2, 0x1926134,8, 0x1926160,2, 0x1926174,8, 0x19261a0,4, 0x1926200,54, 0x1926800,5, 0x1926820,2, 0x1926834,1, 0x192683c,1, 0x1926a00,24, 0x1926a80,24, 0x1926b00,1, 0x1926c00,6, 0x1926c24,5, 0x1926c40,16, 0x1927000,1, 0x1927020,5, 0x1927040,1, 0x1927048,2, 0x1927080,1, 0x1927100,4, 0x1927180,24, 0x1927200,4, 0x1927280,27, 0x1927300,2, 0x192730c,3, 0x1928004,1, 0x192800c,3, 0x1928020,1, 0x1928100,2, 0x1928110,3, 0x1928120,2, 0x1928140,10, 0x1928180,13, 0x1928200,2, 0x1928210,3, 0x1928220,2, 0x1928240,10, 0x1928280,13, 0x1928400,14, 0x1928440,3, 0x1928450,3, 0x1928460,1, 0x1928500,36, 0x1928600,10, 0x1928640,5, 0x1928660,5, 0x1928700,27, 0x1928780,7, 0x19287a0,8, 0x1928800,27, 0x1928880,7, 0x19288a0,8, 0x1928900,27, 0x1928980,7, 0x19289a0,8, 0x1928a00,27, 0x1928a80,7, 0x1928aa0,8, 0x1928b00,48, 0x1928bc4,8, 0x1928bf0,30, 0x1928c80,4, 0x1928cc0,25, 0x1928d40,6, 0x1928d60,1, 0x1928d68,2, 0x1928d74,3, 0x1928e00,8, 0x1928e24,28, 0x1929000,4, 0x1929080,23, 0x1929100,14, 0x1929140,9, 0x1929200,10, 0x1929230,3, 0x1929240,5, 0x1929260,5, 0x1929280,9, 0x1929400,67, 0x1929600,10, 0x1930000,12, 0x1930040,2, 0x1930050,3, 0x1932000,1006, 0x1933000,31, 0x1933084,6, 0x1934004,1, 0x193400c,3, 0x1934200,23, 0x1934280,23, 0x1934300,1, 0x1934400,1, 0x1934800,122, 0x1934a00,122, 0x1934c04,63, 0x1934d04,1, 0x1934d10,5, 0x1934d40,6, 0x1934d60,5, 0x1936000,1, 0x1936100,1, 0x1936108,3, 0x1936120,2, 0x1936134,8, 0x1936160,2, 0x1936174,8, 0x19361a0,4, 0x1936200,54, 0x1936800,5, 0x1936820,2, 0x1936834,1, 0x193683c,1, 0x1936a00,24, 0x1936a80,24, 0x1936b00,1, 0x1936c00,6, 0x1936c24,5, 0x1936c40,16, 0x1937000,1, 0x1937020,5, 0x1937040,1, 0x1937048,2, 0x1937080,1, 0x1937100,4, 0x1937180,24, 0x1937200,4, 0x1937280,27, 0x1937300,2, 0x193730c,3, 0x1938004,1, 0x193800c,3, 0x1938020,1, 0x1938100,2, 0x1938110,3, 0x1938120,2, 0x1938140,10, 0x1938180,13, 0x1938200,2, 0x1938210,3, 0x1938220,2, 0x1938240,10, 0x1938280,13, 0x1938400,14, 0x1938440,3, 0x1938450,3, 0x1938460,1, 0x1938500,36, 0x1938600,10, 0x1938640,5, 0x1938660,5, 0x1938700,27, 0x1938780,7, 0x19387a0,8, 0x1938800,27, 0x1938880,7, 0x19388a0,8, 0x1938900,27, 0x1938980,7, 0x19389a0,8, 0x1938a00,27, 0x1938a80,7, 0x1938aa0,8, 0x1938b00,48, 0x1938bc4,8, 0x1938bf0,30, 0x1938c80,4, 0x1938cc0,25, 0x1938d40,6, 0x1938d60,1, 0x1938d68,2, 0x1938d74,3, 0x1938e00,8, 0x1938e24,28, 0x1939000,4, 0x1939080,23, 0x1939100,14, 0x1939140,9, 0x1939200,10, 0x1939230,3, 0x1939240,5, 0x1939260,5, 0x1939280,9, 0x1939400,67, 0x1939600,10, 0x1a00000,1, 0x1a00020,3, 0x1a00030,2, 0x1a00040,3, 0x1a00050,2, 0x1a00800,53, 0x1a00900,3, 0x1a00910,13, 0x1a00a00,53, 0x1a00b00,3, 0x1a00b10,13, 0x1a00c00,5, 0x1a00c20,5, 0x1a00c40,18, 0x1a01000,6, 0x1a01020,4, 0x1a01040,16, 0x1a02000,20, 0x1a02080,15, 0x1a02100,20, 0x1a02180,15, 0x1a02200,23, 0x1a02260,7, 0x1a02400,11, 0x1a02430,3, 0x1a02440,3, 0x1a02450,3, 0x1a02460,24, 0x1a02500,11, 0x1a02530,3, 0x1a02540,3, 0x1a02550,3, 0x1a02560,24, 0x1a02600,11, 0x1a02630,3, 0x1a02640,3, 0x1a02650,3, 0x1a02660,24, 0x1a02700,11, 0x1a02730,3, 0x1a02740,3, 0x1a02750,3, 0x1a02760,24, 0x1a02800,4, 0x1a02820,16, 0x1a02880,10, 0x1a028c0,10, 0x1a02900,6, 0x1a02920,6, 0x1a02940,4, 0x1a02980,13, 0x1a029c0,13, 0x1a02a00,9, 0x1a03000,14, 0x1a03040,9, 0x1a03080,6, 0x1a030a0,1, 0x1a030a8,4, 0x1a03100,4, 0x1a03200,124, 0x1a03400,124, 0x1a03600,8, 0x1a03624,1, 0x1a03644,6, 0x1a03664,6, 0x1a03680,1, 0x1a03688,6, 0x1a036a8,22, 0x1a04000,1, 0x1a04020,3, 0x1a04030,2, 0x1a04040,3, 0x1a04050,2, 0x1a04800,53, 0x1a04900,3, 0x1a04910,13, 0x1a04a00,53, 0x1a04b00,3, 0x1a04b10,13, 0x1a04c00,5, 0x1a04c20,5, 0x1a04c40,18, 0x1a05000,6, 0x1a05020,4, 0x1a05040,16, 0x1a06000,20, 0x1a06080,15, 0x1a06100,20, 0x1a06180,15, 0x1a06200,23, 0x1a06260,7, 0x1a06400,11, 0x1a06430,3, 0x1a06440,3, 0x1a06450,3, 0x1a06460,24, 0x1a06500,11, 0x1a06530,3, 0x1a06540,3, 0x1a06550,3, 0x1a06560,24, 0x1a06600,11, 0x1a06630,3, 0x1a06640,3, 0x1a06650,3, 0x1a06660,24, 0x1a06700,11, 0x1a06730,3, 0x1a06740,3, 0x1a06750,3, 0x1a06760,24, 0x1a06800,4, 0x1a06820,16, 0x1a06880,10, 0x1a068c0,10, 0x1a06900,6, 0x1a06920,6, 0x1a06940,4, 0x1a06980,13, 0x1a069c0,13, 0x1a06a00,9, 0x1a07000,14, 0x1a07040,9, 0x1a07080,6, 0x1a070a0,1, 0x1a070a8,4, 0x1a07100,4, 0x1a07200,124, 0x1a07400,124, 0x1a07600,8, 0x1a07624,1, 0x1a07644,6, 0x1a07664,6, 0x1a07680,1, 0x1a07688,6, 0x1a076a8,22, 0x1a08000,84, 0x1a08180,20, 0x1a08200,5, 0x1a08400,11, 0x1a08440,11, 0x1a08480,19, 0x1a08500,19, 0x1a08580,24, 0x1a08600,13, 0x1a08800,84, 0x1a08980,20, 0x1a08a00,5, 0x1a08c00,11, 0x1a08c40,11, 0x1a08c80,19, 0x1a08d00,19, 0x1a08d80,24, 0x1a08e00,13, 0x1a09000,10, 0x1a09040,5, 0x1a09080,10, 0x1a090c0,5, 0x1a09100,5, 0x1a09200,11, 0x1a09230,3, 0x1a09240,5, 0x1a09260,5, 0x1a09280,32, 0x1a09400,13, 0x1a09440,13, 0x1a09480,9, 0x1a094c0,1, 0x1a094d0,5, 0x1a094f0,21, 0x1a09800,10, 0x1a09840,5, 0x1a09880,10, 0x1a098c0,5, 0x1a09900,5, 0x1a09a00,11, 0x1a09a30,3, 0x1a09a40,5, 0x1a09a60,5, 0x1a09a80,32, 0x1a09c00,13, 0x1a09c40,13, 0x1a09c80,9, 0x1a09cc0,1, 0x1a09cd0,5, 0x1a09cf0,21, 0x1a0a000,14, 0x1a0a040,9, 0x1a0a080,6, 0x1a0a0a0,1, 0x1a0a0a8,4, 0x1a0a100,7, 0x1a0a120,3, 0x1a0a130,25, 0x1a0c000,26, 0x1a0c06c,2, 0x1a0c080,3, 0x1a0c090,17, 0x1a0c100,26, 0x1a0c16c,2, 0x1a0c180,3, 0x1a0c190,17, 0x1a0c200,26, 0x1a0c26c,2, 0x1a0c280,3, 0x1a0c290,17, 0x1a0c300,26, 0x1a0c36c,2, 0x1a0c380,3, 0x1a0c390,17, 0x1a0c400,26, 0x1a0c46c,2, 0x1a0c480,3, 0x1a0c490,17, 0x1a0c500,26, 0x1a0c56c,2, 0x1a0c580,3, 0x1a0c590,17, 0x1a0c600,26, 0x1a0c66c,2, 0x1a0c680,3, 0x1a0c690,17, 0x1a0c700,26, 0x1a0c76c,2, 0x1a0c780,3, 0x1a0c790,17, 0x1a0c800,12, 0x1a0c844,1, 0x1a0c854,8, 0x1a0c880,7, 0x1a0c8a0,2, 0x1a0c8ac,2, 0x1a0c8c0,26, 0x1a0c980,4, 0x1a0c9a0,5, 0x1a0c9c0,1, 0x1a0d000,3, 0x1a0d010,3, 0x1a0d020,3, 0x1a0d030,3, 0x1a0d040,3, 0x1a0d050,3, 0x1a0d060,3, 0x1a0d070,3, 0x1a0d080,5, 0x1a0d0a0,5, 0x1a0d0c0,5, 0x1a0d0e0,5, 0x1a0d100,5, 0x1a0d120,5, 0x1a0d140,5, 0x1a0d160,5, 0x1a0d200,68, 0x1a0d400,1, 0x1a0d804,1, 0x1a0d844,54, 0x1a0da00,11, 0x1a0da40,11, 0x1a0da80,11, 0x1a0dac0,11, 0x1a0db00,11, 0x1a0db40,11, 0x1a0db80,11, 0x1a0dbc0,11, 0x1a0dc00,28, 0x1a0dc80,5, 0x1a0dca0,2, 0x1a0e000,4, 0x1a0e020,6, 0x1a0e040,6, 0x1a0e060,14, 0x1a0e100,26, 0x1a0e180,15, 0x1a0e200,14, 0x1a0e240,9, 0x1a0e280,6, 0x1a0e2a0,1, 0x1a0e2a8,4, 0x1a0e300,14, 0x1a0e340,9, 0x1a0e380,6, 0x1a0e3a0,4, 0x1a0e400,9, 0x1a20000,1, 0x1a21000,977, 0x1a22000,161, 0x1a23000,977, 0x1a24000,977, 0x1a25000,977, 0x1a26000,977, 0x1a27000,977, 0x1a28000,977, 0x1a29000,977, 0x1a2a000,977, 0x1a2b000,161, 0x1a2c000,12, 0x1a2c040,14, 0x1a2c080,20, 0x1a2c104,1, 0x1a2c10c,4, 0x1a2c200,12, 0x1a2c240,14, 0x1a2c280,20, 0x1a2c304,1, 0x1a2c30c,4, 0x1a2c400,12, 0x1a2c440,14, 0x1a2c480,20, 0x1a2c504,1, 0x1a2c50c,4, 0x1a2c600,12, 0x1a2c640,14, 0x1a2c680,20, 0x1a2c704,1, 0x1a2c70c,4, 0x1a2c800,12, 0x1a2c840,14, 0x1a2c880,20, 0x1a2c904,1, 0x1a2c90c,4, 0x1a2ca00,12, 0x1a2ca40,14, 0x1a2ca80,20, 0x1a2cb04,1, 0x1a2cb0c,4, 0x1a2cc00,12, 0x1a2cc40,14, 0x1a2cc80,20, 0x1a2cd04,1, 0x1a2cd0c,4, 0x1a2ce00,12, 0x1a2ce40,14, 0x1a2ce80,20, 0x1a2cf04,1, 0x1a2cf0c,4, 0x1a2d000,12, 0x1a2d040,14, 0x1a2d080,20, 0x1a2d104,1, 0x1a2d10c,4, 0x1a2d200,17, 0x1a2d250,2, 0x1a2d260,4, 0x1a2e000,1, 0x1a2e014,1, 0x1a2e01c,11, 0x1a2e060,9, 0x1a2e094,1, 0x1a2e09c,11, 0x1a2e0e0,15, 0x1a2e200,12, 0x1a2e240,13, 0x1a2e280,3, 0x1a2e290,1, 0x1a80000,500, 0x1a80800,2, 0x1a80820,15, 0x1a81000,500, 0x1a81800,8, 0x1a81824,6, 0x1a81840,8, 0x1a81880,7, 0x1a818a0,7, 0x1a818c0,7, 0x1a818e0,7, 0x1a81900,8, 0x1a81924,16, 0x1a81980,12, 0x1a82000,500, 0x1a82800,2, 0x1a82820,15, 0x1a83000,500, 0x1a83800,8, 0x1a83824,6, 0x1a83840,8, 0x1a83880,7, 0x1a838a0,7, 0x1a838c0,7, 0x1a838e0,7, 0x1a83900,8, 0x1a83924,16, 0x1a83980,12, 0x1a84004,5, 0x1a84200,26, 0x1a84280,4, 0x1a842c0,25, 0x1a84340,6, 0x1a84360,1, 0x1a84368,2, 0x1a84374,11, 0x1a843a4,10, 0x1a84400,1, 0x1a88000,52, 0x1a88400,82, 0x1a88560,6, 0x1a88600,41, 0x1a88700,2, 0x1a88720,19, 0x1a88800,25, 0x1a88880,1, 0x1a88900,28, 0x1a88980,1, 0x1a89000,52, 0x1a89400,82, 0x1a89560,6, 0x1a89600,41, 0x1a89700,2, 0x1a89720,19, 0x1a89800,25, 0x1a89880,1, 0x1a89900,28, 0x1a89980,1, 0x1a8a000,7, 0x1a8a080,6, 0x1a8a0a0,6, 0x1a8a0c0,1, 0x1a8a100,4, 0x1a8a120,9, 0x1a8c000,3, 0x1a8c010,6, 0x1a8c200,7, 0x1a8c220,6, 0x1a8c240,7, 0x1a8c260,6, 0x1a8c280,2, 0x1a8c28c,2, 0x1a8c2a0,2, 0x1a8c2ac,2, 0x1a8c2c0,7, 0x1a8c2e0,7, 0x1a8c300,2, 0x1a8c30c,2, 0x1a8c320,6, 0x1a8c400,3, 0x1a8c440,12, 0x1a8c800,7, 0x1a8c820,14, 0x1a8c880,16, 0x1a8c900,7, 0x1a8c920,14, 0x1a8c980,16, 0x1a8ca00,6, 0x1a8ca20,7, 0x1a8cc00,3, 0x1aa0000,3, 0x1aa0800,7, 0x1aa0820,6, 0x1aa0840,6, 0x1aa0880,1, 0x1aa0894,1, 0x1aa089c,2, 0x1aa08c0,9, 0x1aa0900,18, 0x1aa0a00,36, 0x1aa0b00,22, 0x1aa0b80,18, 0x1aa0c00,3, 0x1aa0c10,3, 0x1aa1000,3, 0x1aa1010,2, 0x1aa1080,20, 0x1aa1100,1, 0x1aa1200,26, 0x1aa1280,4, 0x1aa12c0,25, 0x1aa1340,6, 0x1aa1360,1, 0x1aa1368,2, 0x1aa1374,11, 0x1aa13a4,4, 0x1aa1400,1, 0x1ab0000,11, 0x1ab0030,19, 0x1ab0080,17, 0x1ab0100,11, 0x1ab0130,19, 0x1ab0180,17, 0x1ab0200,3, 0x1ab0214,1, 0x1ab021c,1, 0x1ab0280,3, 0x1ab0294,1, 0x1ab029c,1, 0x1ab0300,18, 0x1ab0380,18, 0x1ab0400,18, 0x1ab0480,18, 0x1ab0500,18, 0x1ab0580,18, 0x1ab0600,18, 0x1ab0680,18, 0x1ab0700,13, 0x1ab0738,6, 0x1ab0780,13, 0x1ab07b8,6, 0x1ab0800,1, 0x1ab0808,22, 0x1ab0880,1, 0x1ab0894,13, 0x1ab0900,3, 0x1ab0910,3, 0x1ab0920,3, 0x1ab0940,3, 0x1ab0954,1, 0x1ab095c,1, 0x1ab0a00,52, 0x1ab0c00,4, 0x1ab0d00,34, 0x1ab0e00,4, 0x1ab0e80,30, 0x1ab0f00,1, 0x1ab0f40,5, 0x1ab0f60,5, 0x1ab0f80,6, 0x1ab1000,14, 0x1ab1040,4, 0x1ab1060,17, 0x1ab10c0,6, 0x1ab10e0,1, 0x1ab10e8,2, 0x1ab10f4,11, 0x1ab1124,17, 0x1ab1200,3, 0x1ab1210,3, 0x1ab1220,3, 0x1ab1230,3, 0x1ab1240,3, 0x1ab1250,3, 0x1ab2000,20, 0x1ab2080,3, 0x1ab2090,1, 0x1ab2098,2, 0x1ac0000,500, 0x1ac0800,2, 0x1ac0820,15, 0x1ac1000,500, 0x1ac1800,8, 0x1ac1824,6, 0x1ac1840,8, 0x1ac1880,7, 0x1ac18a0,7, 0x1ac18c0,7, 0x1ac18e0,7, 0x1ac1900,8, 0x1ac1924,16, 0x1ac1980,12, 0x1ac2000,500, 0x1ac2800,2, 0x1ac2820,15, 0x1ac3000,500, 0x1ac3800,8, 0x1ac3824,6, 0x1ac3840,8, 0x1ac3880,7, 0x1ac38a0,7, 0x1ac38c0,7, 0x1ac38e0,7, 0x1ac3900,8, 0x1ac3924,16, 0x1ac3980,12, 0x1ac4004,5, 0x1ac4200,26, 0x1ac4280,4, 0x1ac42c0,25, 0x1ac4340,6, 0x1ac4360,1, 0x1ac4368,2, 0x1ac4374,11, 0x1ac43a4,10, 0x1ac4400,1, 0x1ac8000,52, 0x1ac8400,82, 0x1ac8560,6, 0x1ac8600,41, 0x1ac8700,2, 0x1ac8720,19, 0x1ac8800,25, 0x1ac8880,1, 0x1ac8900,28, 0x1ac8980,1, 0x1ac9000,52, 0x1ac9400,82, 0x1ac9560,6, 0x1ac9600,41, 0x1ac9700,2, 0x1ac9720,19, 0x1ac9800,25, 0x1ac9880,1, 0x1ac9900,28, 0x1ac9980,1, 0x1aca000,7, 0x1aca080,6, 0x1aca0a0,6, 0x1aca0c0,1, 0x1aca100,4, 0x1aca120,9, 0x1acc000,3, 0x1acc010,6, 0x1acc200,7, 0x1acc220,6, 0x1acc240,7, 0x1acc260,6, 0x1acc280,2, 0x1acc28c,2, 0x1acc2a0,2, 0x1acc2ac,2, 0x1acc2c0,7, 0x1acc2e0,7, 0x1acc300,2, 0x1acc30c,2, 0x1acc320,6, 0x1acc400,3, 0x1acc440,12, 0x1acc800,7, 0x1acc820,14, 0x1acc880,16, 0x1acc900,7, 0x1acc920,14, 0x1acc980,16, 0x1acca00,6, 0x1acca20,7, 0x1accc00,3, 0x1ae0000,3, 0x1ae0800,7, 0x1ae0820,6, 0x1ae0840,6, 0x1ae0880,1, 0x1ae0894,1, 0x1ae089c,2, 0x1ae08c0,9, 0x1ae0900,18, 0x1ae0a00,36, 0x1ae0b00,22, 0x1ae0b80,18, 0x1ae0c00,3, 0x1ae0c10,3, 0x1ae1000,3, 0x1ae1010,2, 0x1ae1080,20, 0x1ae1100,1, 0x1ae1200,26, 0x1ae1280,4, 0x1ae12c0,25, 0x1ae1340,6, 0x1ae1360,1, 0x1ae1368,2, 0x1ae1374,11, 0x1ae13a4,4, 0x1ae1400,1, 0x1af0000,11, 0x1af0030,19, 0x1af0080,17, 0x1af0100,11, 0x1af0130,19, 0x1af0180,17, 0x1af0200,3, 0x1af0214,1, 0x1af021c,1, 0x1af0280,3, 0x1af0294,1, 0x1af029c,1, 0x1af0300,18, 0x1af0380,18, 0x1af0400,18, 0x1af0480,18, 0x1af0500,18, 0x1af0580,18, 0x1af0600,18, 0x1af0680,18, 0x1af0700,13, 0x1af0738,6, 0x1af0780,13, 0x1af07b8,6, 0x1af0800,1, 0x1af0808,22, 0x1af0880,1, 0x1af0894,13, 0x1af0900,3, 0x1af0910,3, 0x1af0920,3, 0x1af0940,3, 0x1af0954,1, 0x1af095c,1, 0x1af0a00,52, 0x1af0c00,4, 0x1af0d00,34, 0x1af0e00,4, 0x1af0e80,30, 0x1af0f00,1, 0x1af0f40,5, 0x1af0f60,5, 0x1af0f80,6, 0x1af1000,14, 0x1af1040,4, 0x1af1060,17, 0x1af10c0,6, 0x1af10e0,1, 0x1af10e8,2, 0x1af10f4,11, 0x1af1124,17, 0x1af1200,3, 0x1af1210,3, 0x1af1220,3, 0x1af1230,3, 0x1af1240,3, 0x1af1250,3, 0x1af2000,20, 0x1af2080,3, 0x1af2090,1, 0x1af2098,2, 0x1b00000,13, 0x1b00038,4, 0x1b00050,3, 0x1b00060,3, 0x1b00070,16, 0x1b000c0,5, 0x1b00400,14, 0x1b00440,2, 0x1b0044c,3, 0x1b00480,14, 0x1b004c0,2, 0x1b004cc,3, 0x1b00500,1, 0x1b00508,15, 0x1b00560,2, 0x1b0056c,2, 0x1b00600,4, 0x1b00680,27, 0x1b00800,2, 0x1b00900,32, 0x1b00984,2, 0x1b00990,4, 0x1b00a00,26, 0x1b00a80,4, 0x1b00ac0,25, 0x1b00b40,6, 0x1b00b60,1, 0x1b00b68,2, 0x1b00b74,11, 0x1b00ba4,8, 0x1b00c00,9, 0x1b00c40,11, 0x1b00c80,23, 0x1b00ce0,15, 0x1b00d20,15, 0x1b00d60,1, 0x1b01000,13, 0x1b01038,4, 0x1b01050,3, 0x1b01060,3, 0x1b01070,16, 0x1b010c0,5, 0x1b01400,14, 0x1b01440,2, 0x1b0144c,3, 0x1b01480,14, 0x1b014c0,2, 0x1b014cc,3, 0x1b01500,1, 0x1b01508,15, 0x1b01560,2, 0x1b0156c,2, 0x1b01600,4, 0x1b01680,27, 0x1b01800,2, 0x1b01900,32, 0x1b01984,2, 0x1b01990,4, 0x1b01a00,26, 0x1b01a80,4, 0x1b01ac0,25, 0x1b01b40,6, 0x1b01b60,1, 0x1b01b68,2, 0x1b01b74,11, 0x1b01ba4,8, 0x1b01c00,9, 0x1b01c40,11, 0x1b01c80,23, 0x1b01ce0,15, 0x1b01d20,15, 0x1b01d60,1, 0x1b02000,1, 0x1b02100,36, 0x1b02200,7, 0x1b10000,22, 0x1b10080,22, 0x1b10100,12, 0x1b10140,12, 0x1b10200,52, 0x1b10300,52, 0x1b10400,11, 0x1b10440,11, 0x1b10480,3, 0x1b104a0,6, 0x1b104c0,6, 0x1b104e0,3, 0x1b104f0,3, 0x1b10800,9, 0x1b10840,15, 0x1b10880,15, 0x1b108c0,15, 0x1b10900,1, 0x1b10914,13, 0x1b10980,17, 0x1b11000,17, 0x1b11080,17, 0x1b11104,5, 0x1b11120,3, 0x1b11130,11, 0x1b11200,31, 0x1b11280,31, 0x1b11300,12, 0x1b11340,12, 0x1b11380,2, 0x1b11390,2, 0x1b113a0,3, 0x1b113b0,3, 0x1b113c0,5, 0x1b113e0,5, 0x1b11400,3, 0x1b11410,3, 0x1b11420,3, 0x1b11430,3, 0x1b11440,3, 0x1b11450,3, 0x1b11460,7, 0x1b11800,26, 0x1b11880,4, 0x1b118c0,25, 0x1b11940,6, 0x1b11960,1, 0x1b11968,2, 0x1b11974,11, 0x1b119a4,12, 0x1b11a00,4, 0x1b11b00,43, 0x1b11c00,4, 0x1b11c20,7, 0x1b11c40,3, 0x1b11c50,1, 0x1b11c60,3, 0x1b11e00,32, 0x1b11e84,1, 0x1b11e90,4, 0x1b11ea4,1, 0x1b11eb4,14, 0x1b11ef0,2, 0x1b11f04,1, 0x1b11f10,8, 0x1b11f34,6, 0x1b12000,3, 0x1b12010,21, 0x1b12080,1, 0x1b12094,1, 0x1b1209c,5, 0x1b12100,15, 0x1b12140,1, 0x1b12180,6, 0x1b14000,22, 0x1b14080,22, 0x1b14100,12, 0x1b14140,12, 0x1b14200,52, 0x1b14300,52, 0x1b14400,11, 0x1b14440,11, 0x1b14480,3, 0x1b144a0,6, 0x1b144c0,6, 0x1b144e0,3, 0x1b144f0,3, 0x1b14800,9, 0x1b14840,15, 0x1b14880,15, 0x1b148c0,15, 0x1b14900,1, 0x1b14914,13, 0x1b14980,17, 0x1b15000,17, 0x1b15080,17, 0x1b15104,5, 0x1b15120,3, 0x1b15130,11, 0x1b15200,31, 0x1b15280,31, 0x1b15300,12, 0x1b15340,12, 0x1b15380,2, 0x1b15390,2, 0x1b153a0,3, 0x1b153b0,3, 0x1b153c0,5, 0x1b153e0,5, 0x1b15400,3, 0x1b15410,3, 0x1b15420,3, 0x1b15430,3, 0x1b15440,3, 0x1b15450,3, 0x1b15460,7, 0x1b15800,26, 0x1b15880,4, 0x1b158c0,25, 0x1b15940,6, 0x1b15960,1, 0x1b15968,2, 0x1b15974,11, 0x1b159a4,12, 0x1b15a00,4, 0x1b15b00,43, 0x1b15c00,4, 0x1b15c20,7, 0x1b15c40,3, 0x1b15c50,1, 0x1b15c60,3, 0x1b15e00,32, 0x1b15e84,1, 0x1b15e90,4, 0x1b15ea4,1, 0x1b15eb4,14, 0x1b15ef0,2, 0x1b15f04,1, 0x1b15f10,8, 0x1b15f34,6, 0x1b16000,3, 0x1b16010,21, 0x1b16080,1, 0x1b16094,1, 0x1b1609c,5, 0x1b16100,15, 0x1b16140,1, 0x1b16180,6, 0x1b18000,100, 0x1b18200,3, 0x1b18210,5, 0x1b20000,12, 0x1b20040,2, 0x1b20050,3, 0x1b22000,1006, 0x1b23000,31, 0x1b23084,6, 0x1b24004,1, 0x1b2400c,3, 0x1b24200,23, 0x1b24280,23, 0x1b24300,1, 0x1b24400,1, 0x1b24800,122, 0x1b24a00,122, 0x1b24c04,63, 0x1b24d04,1, 0x1b24d10,5, 0x1b24d40,6, 0x1b24d60,5, 0x1b26000,1, 0x1b26100,1, 0x1b26108,3, 0x1b26120,2, 0x1b26134,8, 0x1b26160,2, 0x1b26174,8, 0x1b261a0,4, 0x1b26200,54, 0x1b26800,5, 0x1b26820,2, 0x1b26834,1, 0x1b2683c,1, 0x1b26a00,24, 0x1b26a80,24, 0x1b26b00,1, 0x1b26c00,6, 0x1b26c24,5, 0x1b26c40,16, 0x1b27000,1, 0x1b27020,5, 0x1b27040,1, 0x1b27048,2, 0x1b27080,1, 0x1b27100,4, 0x1b27180,24, 0x1b27200,4, 0x1b27280,27, 0x1b27300,2, 0x1b2730c,3, 0x1b28004,1, 0x1b2800c,3, 0x1b28020,1, 0x1b28100,2, 0x1b28110,3, 0x1b28120,2, 0x1b28140,10, 0x1b28180,13, 0x1b28200,2, 0x1b28210,3, 0x1b28220,2, 0x1b28240,10, 0x1b28280,13, 0x1b28400,14, 0x1b28440,3, 0x1b28450,3, 0x1b28460,1, 0x1b28500,36, 0x1b28600,10, 0x1b28640,5, 0x1b28660,5, 0x1b28700,27, 0x1b28780,7, 0x1b287a0,8, 0x1b28800,27, 0x1b28880,7, 0x1b288a0,8, 0x1b28900,27, 0x1b28980,7, 0x1b289a0,8, 0x1b28a00,27, 0x1b28a80,7, 0x1b28aa0,8, 0x1b28b00,48, 0x1b28bc4,8, 0x1b28bf0,30, 0x1b28c80,4, 0x1b28cc0,25, 0x1b28d40,6, 0x1b28d60,1, 0x1b28d68,2, 0x1b28d74,3, 0x1b28e00,8, 0x1b28e24,28, 0x1b29000,4, 0x1b29080,23, 0x1b29100,14, 0x1b29140,9, 0x1b29200,10, 0x1b29230,3, 0x1b29240,5, 0x1b29260,5, 0x1b29280,9, 0x1b29400,67, 0x1b29600,10, 0x1b30000,12, 0x1b30040,2, 0x1b30050,3, 0x1b32000,1006, 0x1b33000,31, 0x1b33084,6, 0x1b34004,1, 0x1b3400c,3, 0x1b34200,23, 0x1b34280,23, 0x1b34300,1, 0x1b34400,1, 0x1b34800,122, 0x1b34a00,122, 0x1b34c04,63, 0x1b34d04,1, 0x1b34d10,5, 0x1b34d40,6, 0x1b34d60,5, 0x1b36000,1, 0x1b36100,1, 0x1b36108,3, 0x1b36120,2, 0x1b36134,8, 0x1b36160,2, 0x1b36174,8, 0x1b361a0,4, 0x1b36200,54, 0x1b36800,5, 0x1b36820,2, 0x1b36834,1, 0x1b3683c,1, 0x1b36a00,24, 0x1b36a80,24, 0x1b36b00,1, 0x1b36c00,6, 0x1b36c24,5, 0x1b36c40,16, 0x1b37000,1, 0x1b37020,5, 0x1b37040,1, 0x1b37048,2, 0x1b37080,1, 0x1b37100,4, 0x1b37180,24, 0x1b37200,4, 0x1b37280,27, 0x1b37300,2, 0x1b3730c,3, 0x1b38004,1, 0x1b3800c,3, 0x1b38020,1, 0x1b38100,2, 0x1b38110,3, 0x1b38120,2, 0x1b38140,10, 0x1b38180,13, 0x1b38200,2, 0x1b38210,3, 0x1b38220,2, 0x1b38240,10, 0x1b38280,13, 0x1b38400,14, 0x1b38440,3, 0x1b38450,3, 0x1b38460,1, 0x1b38500,36, 0x1b38600,10, 0x1b38640,5, 0x1b38660,5, 0x1b38700,27, 0x1b38780,7, 0x1b387a0,8, 0x1b38800,27, 0x1b38880,7, 0x1b388a0,8, 0x1b38900,27, 0x1b38980,7, 0x1b389a0,8, 0x1b38a00,27, 0x1b38a80,7, 0x1b38aa0,8, 0x1b38b00,48, 0x1b38bc4,8, 0x1b38bf0,30, 0x1b38c80,4, 0x1b38cc0,25, 0x1b38d40,6, 0x1b38d60,1, 0x1b38d68,2, 0x1b38d74,3, 0x1b38e00,8, 0x1b38e24,28, 0x1b39000,4, 0x1b39080,23, 0x1b39100,14, 0x1b39140,9, 0x1b39200,10, 0x1b39230,3, 0x1b39240,5, 0x1b39260,5, 0x1b39280,9, 0x1b39400,67, 0x1b39600,10, 0x1c00000,1, 0x1c00020,3, 0x1c00030,2, 0x1c00040,3, 0x1c00050,2, 0x1c00800,53, 0x1c00900,3, 0x1c00910,13, 0x1c00a00,53, 0x1c00b00,3, 0x1c00b10,13, 0x1c00c00,5, 0x1c00c20,5, 0x1c00c40,18, 0x1c01000,6, 0x1c01020,4, 0x1c01040,16, 0x1c02000,20, 0x1c02080,15, 0x1c02100,20, 0x1c02180,15, 0x1c02200,23, 0x1c02260,7, 0x1c02400,11, 0x1c02430,3, 0x1c02440,3, 0x1c02450,3, 0x1c02460,24, 0x1c02500,11, 0x1c02530,3, 0x1c02540,3, 0x1c02550,3, 0x1c02560,24, 0x1c02600,11, 0x1c02630,3, 0x1c02640,3, 0x1c02650,3, 0x1c02660,24, 0x1c02700,11, 0x1c02730,3, 0x1c02740,3, 0x1c02750,3, 0x1c02760,24, 0x1c02800,4, 0x1c02820,16, 0x1c02880,10, 0x1c028c0,10, 0x1c02900,6, 0x1c02920,6, 0x1c02940,4, 0x1c02980,13, 0x1c029c0,13, 0x1c02a00,9, 0x1c03000,14, 0x1c03040,9, 0x1c03080,6, 0x1c030a0,1, 0x1c030a8,4, 0x1c03100,4, 0x1c03200,124, 0x1c03400,124, 0x1c03600,8, 0x1c03624,1, 0x1c03644,6, 0x1c03664,6, 0x1c03680,1, 0x1c03688,6, 0x1c036a8,22, 0x1c04000,1, 0x1c04020,3, 0x1c04030,2, 0x1c04040,3, 0x1c04050,2, 0x1c04800,53, 0x1c04900,3, 0x1c04910,13, 0x1c04a00,53, 0x1c04b00,3, 0x1c04b10,13, 0x1c04c00,5, 0x1c04c20,5, 0x1c04c40,18, 0x1c05000,6, 0x1c05020,4, 0x1c05040,16, 0x1c06000,20, 0x1c06080,15, 0x1c06100,20, 0x1c06180,15, 0x1c06200,23, 0x1c06260,7, 0x1c06400,11, 0x1c06430,3, 0x1c06440,3, 0x1c06450,3, 0x1c06460,24, 0x1c06500,11, 0x1c06530,3, 0x1c06540,3, 0x1c06550,3, 0x1c06560,24, 0x1c06600,11, 0x1c06630,3, 0x1c06640,3, 0x1c06650,3, 0x1c06660,24, 0x1c06700,11, 0x1c06730,3, 0x1c06740,3, 0x1c06750,3, 0x1c06760,24, 0x1c06800,4, 0x1c06820,16, 0x1c06880,10, 0x1c068c0,10, 0x1c06900,6, 0x1c06920,6, 0x1c06940,4, 0x1c06980,13, 0x1c069c0,13, 0x1c06a00,9, 0x1c07000,14, 0x1c07040,9, 0x1c07080,6, 0x1c070a0,1, 0x1c070a8,4, 0x1c07100,4, 0x1c07200,124, 0x1c07400,124, 0x1c07600,8, 0x1c07624,1, 0x1c07644,6, 0x1c07664,6, 0x1c07680,1, 0x1c07688,6, 0x1c076a8,22, 0x1c08000,84, 0x1c08180,20, 0x1c08200,5, 0x1c08400,11, 0x1c08440,11, 0x1c08480,19, 0x1c08500,19, 0x1c08580,24, 0x1c08600,13, 0x1c08800,84, 0x1c08980,20, 0x1c08a00,5, 0x1c08c00,11, 0x1c08c40,11, 0x1c08c80,19, 0x1c08d00,19, 0x1c08d80,24, 0x1c08e00,13, 0x1c09000,10, 0x1c09040,5, 0x1c09080,10, 0x1c090c0,5, 0x1c09100,5, 0x1c09200,11, 0x1c09230,3, 0x1c09240,5, 0x1c09260,5, 0x1c09280,32, 0x1c09400,13, 0x1c09440,13, 0x1c09480,9, 0x1c094c0,1, 0x1c094d0,5, 0x1c094f0,21, 0x1c09800,10, 0x1c09840,5, 0x1c09880,10, 0x1c098c0,5, 0x1c09900,5, 0x1c09a00,11, 0x1c09a30,3, 0x1c09a40,5, 0x1c09a60,5, 0x1c09a80,32, 0x1c09c00,13, 0x1c09c40,13, 0x1c09c80,9, 0x1c09cc0,1, 0x1c09cd0,5, 0x1c09cf0,21, 0x1c0a000,14, 0x1c0a040,9, 0x1c0a080,6, 0x1c0a0a0,1, 0x1c0a0a8,4, 0x1c0a100,7, 0x1c0a120,3, 0x1c0a130,25, 0x1c0c000,26, 0x1c0c06c,2, 0x1c0c080,3, 0x1c0c090,17, 0x1c0c100,26, 0x1c0c16c,2, 0x1c0c180,3, 0x1c0c190,17, 0x1c0c200,26, 0x1c0c26c,2, 0x1c0c280,3, 0x1c0c290,17, 0x1c0c300,26, 0x1c0c36c,2, 0x1c0c380,3, 0x1c0c390,17, 0x1c0c400,26, 0x1c0c46c,2, 0x1c0c480,3, 0x1c0c490,17, 0x1c0c500,26, 0x1c0c56c,2, 0x1c0c580,3, 0x1c0c590,17, 0x1c0c600,26, 0x1c0c66c,2, 0x1c0c680,3, 0x1c0c690,17, 0x1c0c700,26, 0x1c0c76c,2, 0x1c0c780,3, 0x1c0c790,17, 0x1c0c800,12, 0x1c0c844,1, 0x1c0c854,8, 0x1c0c880,7, 0x1c0c8a0,2, 0x1c0c8ac,2, 0x1c0c8c0,26, 0x1c0c980,4, 0x1c0c9a0,5, 0x1c0c9c0,1, 0x1c0d000,3, 0x1c0d010,3, 0x1c0d020,3, 0x1c0d030,3, 0x1c0d040,3, 0x1c0d050,3, 0x1c0d060,3, 0x1c0d070,3, 0x1c0d080,5, 0x1c0d0a0,5, 0x1c0d0c0,5, 0x1c0d0e0,5, 0x1c0d100,5, 0x1c0d120,5, 0x1c0d140,5, 0x1c0d160,5, 0x1c0d200,68, 0x1c0d400,1, 0x1c0d804,1, 0x1c0d844,54, 0x1c0da00,11, 0x1c0da40,11, 0x1c0da80,11, 0x1c0dac0,11, 0x1c0db00,11, 0x1c0db40,11, 0x1c0db80,11, 0x1c0dbc0,11, 0x1c0dc00,28, 0x1c0dc80,5, 0x1c0dca0,2, 0x1c0e000,4, 0x1c0e020,6, 0x1c0e040,6, 0x1c0e060,14, 0x1c0e100,26, 0x1c0e180,15, 0x1c0e200,14, 0x1c0e240,9, 0x1c0e280,6, 0x1c0e2a0,1, 0x1c0e2a8,4, 0x1c0e300,14, 0x1c0e340,9, 0x1c0e380,6, 0x1c0e3a0,4, 0x1c0e400,9, 0x1c20000,1, 0x1c21000,977, 0x1c22000,161, 0x1c23000,977, 0x1c24000,977, 0x1c25000,977, 0x1c26000,977, 0x1c27000,977, 0x1c28000,977, 0x1c29000,977, 0x1c2a000,977, 0x1c2b000,161, 0x1c2c000,12, 0x1c2c040,14, 0x1c2c080,20, 0x1c2c104,1, 0x1c2c10c,4, 0x1c2c200,12, 0x1c2c240,14, 0x1c2c280,20, 0x1c2c304,1, 0x1c2c30c,4, 0x1c2c400,12, 0x1c2c440,14, 0x1c2c480,20, 0x1c2c504,1, 0x1c2c50c,4, 0x1c2c600,12, 0x1c2c640,14, 0x1c2c680,20, 0x1c2c704,1, 0x1c2c70c,4, 0x1c2c800,12, 0x1c2c840,14, 0x1c2c880,20, 0x1c2c904,1, 0x1c2c90c,4, 0x1c2ca00,12, 0x1c2ca40,14, 0x1c2ca80,20, 0x1c2cb04,1, 0x1c2cb0c,4, 0x1c2cc00,12, 0x1c2cc40,14, 0x1c2cc80,20, 0x1c2cd04,1, 0x1c2cd0c,4, 0x1c2ce00,12, 0x1c2ce40,14, 0x1c2ce80,20, 0x1c2cf04,1, 0x1c2cf0c,4, 0x1c2d000,12, 0x1c2d040,14, 0x1c2d080,20, 0x1c2d104,1, 0x1c2d10c,4, 0x1c2d200,17, 0x1c2d250,2, 0x1c2d260,4, 0x1c2e000,1, 0x1c2e014,1, 0x1c2e01c,11, 0x1c2e060,9, 0x1c2e094,1, 0x1c2e09c,11, 0x1c2e0e0,15, 0x1c2e200,12, 0x1c2e240,13, 0x1c2e280,3, 0x1c2e290,1, 0x1c80000,500, 0x1c80800,2, 0x1c80820,15, 0x1c81000,500, 0x1c81800,8, 0x1c81824,6, 0x1c81840,8, 0x1c81880,7, 0x1c818a0,7, 0x1c818c0,7, 0x1c818e0,7, 0x1c81900,8, 0x1c81924,16, 0x1c81980,12, 0x1c82000,500, 0x1c82800,2, 0x1c82820,15, 0x1c83000,500, 0x1c83800,8, 0x1c83824,6, 0x1c83840,8, 0x1c83880,7, 0x1c838a0,7, 0x1c838c0,7, 0x1c838e0,7, 0x1c83900,8, 0x1c83924,16, 0x1c83980,12, 0x1c84004,5, 0x1c84200,26, 0x1c84280,4, 0x1c842c0,25, 0x1c84340,6, 0x1c84360,1, 0x1c84368,2, 0x1c84374,11, 0x1c843a4,10, 0x1c84400,1, 0x1c88000,52, 0x1c88400,82, 0x1c88560,6, 0x1c88600,41, 0x1c88700,2, 0x1c88720,19, 0x1c88800,25, 0x1c88880,1, 0x1c88900,28, 0x1c88980,1, 0x1c89000,52, 0x1c89400,82, 0x1c89560,6, 0x1c89600,41, 0x1c89700,2, 0x1c89720,19, 0x1c89800,25, 0x1c89880,1, 0x1c89900,28, 0x1c89980,1, 0x1c8a000,7, 0x1c8a080,6, 0x1c8a0a0,6, 0x1c8a0c0,1, 0x1c8a100,4, 0x1c8a120,9, 0x1c8c000,3, 0x1c8c010,6, 0x1c8c200,7, 0x1c8c220,6, 0x1c8c240,7, 0x1c8c260,6, 0x1c8c280,2, 0x1c8c28c,2, 0x1c8c2a0,2, 0x1c8c2ac,2, 0x1c8c2c0,7, 0x1c8c2e0,7, 0x1c8c300,2, 0x1c8c30c,2, 0x1c8c320,6, 0x1c8c400,3, 0x1c8c440,12, 0x1c8c800,7, 0x1c8c820,14, 0x1c8c880,16, 0x1c8c900,7, 0x1c8c920,14, 0x1c8c980,16, 0x1c8ca00,6, 0x1c8ca20,7, 0x1c8cc00,3, 0x1ca0000,3, 0x1ca0800,7, 0x1ca0820,6, 0x1ca0840,6, 0x1ca0880,1, 0x1ca0894,1, 0x1ca089c,2, 0x1ca08c0,9, 0x1ca0900,18, 0x1ca0a00,36, 0x1ca0b00,22, 0x1ca0b80,18, 0x1ca0c00,3, 0x1ca0c10,3, 0x1ca1000,3, 0x1ca1010,2, 0x1ca1080,20, 0x1ca1100,1, 0x1ca1200,26, 0x1ca1280,4, 0x1ca12c0,25, 0x1ca1340,6, 0x1ca1360,1, 0x1ca1368,2, 0x1ca1374,11, 0x1ca13a4,4, 0x1ca1400,1, 0x1cb0000,11, 0x1cb0030,19, 0x1cb0080,17, 0x1cb0100,11, 0x1cb0130,19, 0x1cb0180,17, 0x1cb0200,3, 0x1cb0214,1, 0x1cb021c,1, 0x1cb0280,3, 0x1cb0294,1, 0x1cb029c,1, 0x1cb0300,18, 0x1cb0380,18, 0x1cb0400,18, 0x1cb0480,18, 0x1cb0500,18, 0x1cb0580,18, 0x1cb0600,18, 0x1cb0680,18, 0x1cb0700,13, 0x1cb0738,6, 0x1cb0780,13, 0x1cb07b8,6, 0x1cb0800,1, 0x1cb0808,22, 0x1cb0880,1, 0x1cb0894,13, 0x1cb0900,3, 0x1cb0910,3, 0x1cb0920,3, 0x1cb0940,3, 0x1cb0954,1, 0x1cb095c,1, 0x1cb0a00,52, 0x1cb0c00,4, 0x1cb0d00,34, 0x1cb0e00,4, 0x1cb0e80,30, 0x1cb0f00,1, 0x1cb0f40,5, 0x1cb0f60,5, 0x1cb0f80,6, 0x1cb1000,14, 0x1cb1040,4, 0x1cb1060,17, 0x1cb10c0,6, 0x1cb10e0,1, 0x1cb10e8,2, 0x1cb10f4,11, 0x1cb1124,17, 0x1cb1200,3, 0x1cb1210,3, 0x1cb1220,3, 0x1cb1230,3, 0x1cb1240,3, 0x1cb1250,3, 0x1cb2000,20, 0x1cb2080,3, 0x1cb2090,1, 0x1cb2098,2, 0x1cc0000,500, 0x1cc0800,2, 0x1cc0820,15, 0x1cc1000,500, 0x1cc1800,8, 0x1cc1824,6, 0x1cc1840,8, 0x1cc1880,7, 0x1cc18a0,7, 0x1cc18c0,7, 0x1cc18e0,7, 0x1cc1900,8, 0x1cc1924,16, 0x1cc1980,12, 0x1cc2000,500, 0x1cc2800,2, 0x1cc2820,15, 0x1cc3000,500, 0x1cc3800,8, 0x1cc3824,6, 0x1cc3840,8, 0x1cc3880,7, 0x1cc38a0,7, 0x1cc38c0,7, 0x1cc38e0,7, 0x1cc3900,8, 0x1cc3924,16, 0x1cc3980,12, 0x1cc4004,5, 0x1cc4200,26, 0x1cc4280,4, 0x1cc42c0,25, 0x1cc4340,6, 0x1cc4360,1, 0x1cc4368,2, 0x1cc4374,11, 0x1cc43a4,10, 0x1cc4400,1, 0x1cc8000,52, 0x1cc8400,82, 0x1cc8560,6, 0x1cc8600,41, 0x1cc8700,2, 0x1cc8720,19, 0x1cc8800,25, 0x1cc8880,1, 0x1cc8900,28, 0x1cc8980,1, 0x1cc9000,52, 0x1cc9400,82, 0x1cc9560,6, 0x1cc9600,41, 0x1cc9700,2, 0x1cc9720,19, 0x1cc9800,25, 0x1cc9880,1, 0x1cc9900,28, 0x1cc9980,1, 0x1cca000,7, 0x1cca080,6, 0x1cca0a0,6, 0x1cca0c0,1, 0x1cca100,4, 0x1cca120,9, 0x1ccc000,3, 0x1ccc010,6, 0x1ccc200,7, 0x1ccc220,6, 0x1ccc240,7, 0x1ccc260,6, 0x1ccc280,2, 0x1ccc28c,2, 0x1ccc2a0,2, 0x1ccc2ac,2, 0x1ccc2c0,7, 0x1ccc2e0,7, 0x1ccc300,2, 0x1ccc30c,2, 0x1ccc320,6, 0x1ccc400,3, 0x1ccc440,12, 0x1ccc800,7, 0x1ccc820,14, 0x1ccc880,16, 0x1ccc900,7, 0x1ccc920,14, 0x1ccc980,16, 0x1ccca00,6, 0x1ccca20,7, 0x1cccc00,3, 0x1ce0000,3, 0x1ce0800,7, 0x1ce0820,6, 0x1ce0840,6, 0x1ce0880,1, 0x1ce0894,1, 0x1ce089c,2, 0x1ce08c0,9, 0x1ce0900,18, 0x1ce0a00,36, 0x1ce0b00,22, 0x1ce0b80,18, 0x1ce0c00,3, 0x1ce0c10,3, 0x1ce1000,3, 0x1ce1010,2, 0x1ce1080,20, 0x1ce1100,1, 0x1ce1200,26, 0x1ce1280,4, 0x1ce12c0,25, 0x1ce1340,6, 0x1ce1360,1, 0x1ce1368,2, 0x1ce1374,11, 0x1ce13a4,4, 0x1ce1400,1, 0x1cf0000,11, 0x1cf0030,19, 0x1cf0080,17, 0x1cf0100,11, 0x1cf0130,19, 0x1cf0180,17, 0x1cf0200,3, 0x1cf0214,1, 0x1cf021c,1, 0x1cf0280,3, 0x1cf0294,1, 0x1cf029c,1, 0x1cf0300,18, 0x1cf0380,18, 0x1cf0400,18, 0x1cf0480,18, 0x1cf0500,18, 0x1cf0580,18, 0x1cf0600,18, 0x1cf0680,18, 0x1cf0700,13, 0x1cf0738,6, 0x1cf0780,13, 0x1cf07b8,6, 0x1cf0800,1, 0x1cf0808,22, 0x1cf0880,1, 0x1cf0894,13, 0x1cf0900,3, 0x1cf0910,3, 0x1cf0920,3, 0x1cf0940,3, 0x1cf0954,1, 0x1cf095c,1, 0x1cf0a00,52, 0x1cf0c00,4, 0x1cf0d00,34, 0x1cf0e00,4, 0x1cf0e80,30, 0x1cf0f00,1, 0x1cf0f40,5, 0x1cf0f60,5, 0x1cf0f80,6, 0x1cf1000,14, 0x1cf1040,4, 0x1cf1060,17, 0x1cf10c0,6, 0x1cf10e0,1, 0x1cf10e8,2, 0x1cf10f4,11, 0x1cf1124,17, 0x1cf1200,3, 0x1cf1210,3, 0x1cf1220,3, 0x1cf1230,3, 0x1cf1240,3, 0x1cf1250,3, 0x1cf2000,20, 0x1cf2080,3, 0x1cf2090,1, 0x1cf2098,2, 0x1d00000,13, 0x1d00038,4, 0x1d00050,3, 0x1d00060,3, 0x1d00070,16, 0x1d000c0,5, 0x1d00400,14, 0x1d00440,2, 0x1d0044c,3, 0x1d00480,14, 0x1d004c0,2, 0x1d004cc,3, 0x1d00500,1, 0x1d00508,15, 0x1d00560,2, 0x1d0056c,2, 0x1d00600,4, 0x1d00680,27, 0x1d00800,2, 0x1d00900,32, 0x1d00984,2, 0x1d00990,4, 0x1d00a00,26, 0x1d00a80,4, 0x1d00ac0,25, 0x1d00b40,6, 0x1d00b60,1, 0x1d00b68,2, 0x1d00b74,11, 0x1d00ba4,8, 0x1d00c00,9, 0x1d00c40,11, 0x1d00c80,23, 0x1d00ce0,15, 0x1d00d20,15, 0x1d00d60,1, 0x1d01000,13, 0x1d01038,4, 0x1d01050,3, 0x1d01060,3, 0x1d01070,16, 0x1d010c0,5, 0x1d01400,14, 0x1d01440,2, 0x1d0144c,3, 0x1d01480,14, 0x1d014c0,2, 0x1d014cc,3, 0x1d01500,1, 0x1d01508,15, 0x1d01560,2, 0x1d0156c,2, 0x1d01600,4, 0x1d01680,27, 0x1d01800,2, 0x1d01900,32, 0x1d01984,2, 0x1d01990,4, 0x1d01a00,26, 0x1d01a80,4, 0x1d01ac0,25, 0x1d01b40,6, 0x1d01b60,1, 0x1d01b68,2, 0x1d01b74,11, 0x1d01ba4,8, 0x1d01c00,9, 0x1d01c40,11, 0x1d01c80,23, 0x1d01ce0,15, 0x1d01d20,15, 0x1d01d60,1, 0x1d02000,1, 0x1d02100,36, 0x1d02200,7, 0x1d10000,22, 0x1d10080,22, 0x1d10100,12, 0x1d10140,12, 0x1d10200,52, 0x1d10300,52, 0x1d10400,11, 0x1d10440,11, 0x1d10480,3, 0x1d104a0,6, 0x1d104c0,6, 0x1d104e0,3, 0x1d104f0,3, 0x1d10800,9, 0x1d10840,15, 0x1d10880,15, 0x1d108c0,15, 0x1d10900,1, 0x1d10914,13, 0x1d10980,17, 0x1d11000,17, 0x1d11080,17, 0x1d11104,5, 0x1d11120,3, 0x1d11130,11, 0x1d11200,31, 0x1d11280,31, 0x1d11300,12, 0x1d11340,12, 0x1d11380,2, 0x1d11390,2, 0x1d113a0,3, 0x1d113b0,3, 0x1d113c0,5, 0x1d113e0,5, 0x1d11400,3, 0x1d11410,3, 0x1d11420,3, 0x1d11430,3, 0x1d11440,3, 0x1d11450,3, 0x1d11460,7, 0x1d11800,26, 0x1d11880,4, 0x1d118c0,25, 0x1d11940,6, 0x1d11960,1, 0x1d11968,2, 0x1d11974,11, 0x1d119a4,12, 0x1d11a00,4, 0x1d11b00,43, 0x1d11c00,4, 0x1d11c20,7, 0x1d11c40,3, 0x1d11c50,1, 0x1d11c60,3, 0x1d11e00,32, 0x1d11e84,1, 0x1d11e90,4, 0x1d11ea4,1, 0x1d11eb4,14, 0x1d11ef0,2, 0x1d11f04,1, 0x1d11f10,8, 0x1d11f34,6, 0x1d12000,3, 0x1d12010,21, 0x1d12080,1, 0x1d12094,1, 0x1d1209c,5, 0x1d12100,15, 0x1d12140,1, 0x1d12180,6, 0x1d14000,22, 0x1d14080,22, 0x1d14100,12, 0x1d14140,12, 0x1d14200,52, 0x1d14300,52, 0x1d14400,11, 0x1d14440,11, 0x1d14480,3, 0x1d144a0,6, 0x1d144c0,6, 0x1d144e0,3, 0x1d144f0,3, 0x1d14800,9, 0x1d14840,15, 0x1d14880,15, 0x1d148c0,15, 0x1d14900,1, 0x1d14914,13, 0x1d14980,17, 0x1d15000,17, 0x1d15080,17, 0x1d15104,5, 0x1d15120,3, 0x1d15130,11, 0x1d15200,31, 0x1d15280,31, 0x1d15300,12, 0x1d15340,12, 0x1d15380,2, 0x1d15390,2, 0x1d153a0,3, 0x1d153b0,3, 0x1d153c0,5, 0x1d153e0,5, 0x1d15400,3, 0x1d15410,3, 0x1d15420,3, 0x1d15430,3, 0x1d15440,3, 0x1d15450,3, 0x1d15460,7, 0x1d15800,26, 0x1d15880,4, 0x1d158c0,25, 0x1d15940,6, 0x1d15960,1, 0x1d15968,2, 0x1d15974,11, 0x1d159a4,12, 0x1d15a00,4, 0x1d15b00,43, 0x1d15c00,4, 0x1d15c20,7, 0x1d15c40,3, 0x1d15c50,1, 0x1d15c60,3, 0x1d15e00,32, 0x1d15e84,1, 0x1d15e90,4, 0x1d15ea4,1, 0x1d15eb4,14, 0x1d15ef0,2, 0x1d15f04,1, 0x1d15f10,8, 0x1d15f34,6, 0x1d16000,3, 0x1d16010,21, 0x1d16080,1, 0x1d16094,1, 0x1d1609c,5, 0x1d16100,15, 0x1d16140,1, 0x1d16180,6, 0x1d18000,100, 0x1d18200,3, 0x1d18210,5, 0x1d20000,12, 0x1d20040,2, 0x1d20050,3, 0x1d22000,1006, 0x1d23000,31, 0x1d23084,6, 0x1d24004,1, 0x1d2400c,3, 0x1d24200,23, 0x1d24280,23, 0x1d24300,1, 0x1d24400,1, 0x1d24800,122, 0x1d24a00,122, 0x1d24c04,63, 0x1d24d04,1, 0x1d24d10,5, 0x1d24d40,6, 0x1d24d60,5, 0x1d26000,1, 0x1d26100,1, 0x1d26108,3, 0x1d26120,2, 0x1d26134,8, 0x1d26160,2, 0x1d26174,8, 0x1d261a0,4, 0x1d26200,54, 0x1d26800,5, 0x1d26820,2, 0x1d26834,1, 0x1d2683c,1, 0x1d26a00,24, 0x1d26a80,24, 0x1d26b00,1, 0x1d26c00,6, 0x1d26c24,5, 0x1d26c40,16, 0x1d27000,1, 0x1d27020,5, 0x1d27040,1, 0x1d27048,2, 0x1d27080,1, 0x1d27100,4, 0x1d27180,24, 0x1d27200,4, 0x1d27280,27, 0x1d27300,2, 0x1d2730c,3, 0x1d28004,1, 0x1d2800c,3, 0x1d28020,1, 0x1d28100,2, 0x1d28110,3, 0x1d28120,2, 0x1d28140,10, 0x1d28180,13, 0x1d28200,2, 0x1d28210,3, 0x1d28220,2, 0x1d28240,10, 0x1d28280,13, 0x1d28400,14, 0x1d28440,3, 0x1d28450,3, 0x1d28460,1, 0x1d28500,36, 0x1d28600,10, 0x1d28640,5, 0x1d28660,5, 0x1d28700,27, 0x1d28780,7, 0x1d287a0,8, 0x1d28800,27, 0x1d28880,7, 0x1d288a0,8, 0x1d28900,27, 0x1d28980,7, 0x1d289a0,8, 0x1d28a00,27, 0x1d28a80,7, 0x1d28aa0,8, 0x1d28b00,48, 0x1d28bc4,8, 0x1d28bf0,30, 0x1d28c80,4, 0x1d28cc0,25, 0x1d28d40,6, 0x1d28d60,1, 0x1d28d68,2, 0x1d28d74,3, 0x1d28e00,8, 0x1d28e24,28, 0x1d29000,4, 0x1d29080,23, 0x1d29100,14, 0x1d29140,9, 0x1d29200,10, 0x1d29230,3, 0x1d29240,5, 0x1d29260,5, 0x1d29280,9, 0x1d29400,67, 0x1d29600,10, 0x1d30000,12, 0x1d30040,2, 0x1d30050,3, 0x1d32000,1006, 0x1d33000,31, 0x1d33084,6, 0x1d34004,1, 0x1d3400c,3, 0x1d34200,23, 0x1d34280,23, 0x1d34300,1, 0x1d34400,1, 0x1d34800,122, 0x1d34a00,122, 0x1d34c04,63, 0x1d34d04,1, 0x1d34d10,5, 0x1d34d40,6, 0x1d34d60,5, 0x1d36000,1, 0x1d36100,1, 0x1d36108,3, 0x1d36120,2, 0x1d36134,8, 0x1d36160,2, 0x1d36174,8, 0x1d361a0,4, 0x1d36200,54, 0x1d36800,5, 0x1d36820,2, 0x1d36834,1, 0x1d3683c,1, 0x1d36a00,24, 0x1d36a80,24, 0x1d36b00,1, 0x1d36c00,6, 0x1d36c24,5, 0x1d36c40,16, 0x1d37000,1, 0x1d37020,5, 0x1d37040,1, 0x1d37048,2, 0x1d37080,1, 0x1d37100,4, 0x1d37180,24, 0x1d37200,4, 0x1d37280,27, 0x1d37300,2, 0x1d3730c,3, 0x1d38004,1, 0x1d3800c,3, 0x1d38020,1, 0x1d38100,2, 0x1d38110,3, 0x1d38120,2, 0x1d38140,10, 0x1d38180,13, 0x1d38200,2, 0x1d38210,3, 0x1d38220,2, 0x1d38240,10, 0x1d38280,13, 0x1d38400,14, 0x1d38440,3, 0x1d38450,3, 0x1d38460,1, 0x1d38500,36, 0x1d38600,10, 0x1d38640,5, 0x1d38660,5, 0x1d38700,27, 0x1d38780,7, 0x1d387a0,8, 0x1d38800,27, 0x1d38880,7, 0x1d388a0,8, 0x1d38900,27, 0x1d38980,7, 0x1d389a0,8, 0x1d38a00,27, 0x1d38a80,7, 0x1d38aa0,8, 0x1d38b00,48, 0x1d38bc4,8, 0x1d38bf0,30, 0x1d38c80,4, 0x1d38cc0,25, 0x1d38d40,6, 0x1d38d60,1, 0x1d38d68,2, 0x1d38d74,3, 0x1d38e00,8, 0x1d38e24,28, 0x1d39000,4, 0x1d39080,23, 0x1d39100,14, 0x1d39140,9, 0x1d39200,10, 0x1d39230,3, 0x1d39240,5, 0x1d39260,5, 0x1d39280,9, 0x1d39400,67, 0x1d39600,10, 0x1e00000,1, 0x1e00020,3, 0x1e00030,2, 0x1e00040,3, 0x1e00050,2, 0x1e00800,53, 0x1e00900,3, 0x1e00910,13, 0x1e00a00,53, 0x1e00b00,3, 0x1e00b10,13, 0x1e00c00,5, 0x1e00c20,5, 0x1e00c40,18, 0x1e01000,6, 0x1e01020,4, 0x1e01040,16, 0x1e02000,20, 0x1e02080,15, 0x1e02100,20, 0x1e02180,15, 0x1e02200,23, 0x1e02260,7, 0x1e02400,11, 0x1e02430,3, 0x1e02440,3, 0x1e02450,3, 0x1e02460,24, 0x1e02500,11, 0x1e02530,3, 0x1e02540,3, 0x1e02550,3, 0x1e02560,24, 0x1e02600,11, 0x1e02630,3, 0x1e02640,3, 0x1e02650,3, 0x1e02660,24, 0x1e02700,11, 0x1e02730,3, 0x1e02740,3, 0x1e02750,3, 0x1e02760,24, 0x1e02800,4, 0x1e02820,16, 0x1e02880,10, 0x1e028c0,10, 0x1e02900,6, 0x1e02920,6, 0x1e02940,4, 0x1e02980,13, 0x1e029c0,13, 0x1e02a00,9, 0x1e03000,14, 0x1e03040,9, 0x1e03080,6, 0x1e030a0,1, 0x1e030a8,4, 0x1e03100,4, 0x1e03200,124, 0x1e03400,124, 0x1e03600,8, 0x1e03624,1, 0x1e03644,6, 0x1e03664,6, 0x1e03680,1, 0x1e03688,6, 0x1e036a8,22, 0x1e04000,1, 0x1e04020,3, 0x1e04030,2, 0x1e04040,3, 0x1e04050,2, 0x1e04800,53, 0x1e04900,3, 0x1e04910,13, 0x1e04a00,53, 0x1e04b00,3, 0x1e04b10,13, 0x1e04c00,5, 0x1e04c20,5, 0x1e04c40,18, 0x1e05000,6, 0x1e05020,4, 0x1e05040,16, 0x1e06000,20, 0x1e06080,15, 0x1e06100,20, 0x1e06180,15, 0x1e06200,23, 0x1e06260,7, 0x1e06400,11, 0x1e06430,3, 0x1e06440,3, 0x1e06450,3, 0x1e06460,24, 0x1e06500,11, 0x1e06530,3, 0x1e06540,3, 0x1e06550,3, 0x1e06560,24, 0x1e06600,11, 0x1e06630,3, 0x1e06640,3, 0x1e06650,3, 0x1e06660,24, 0x1e06700,11, 0x1e06730,3, 0x1e06740,3, 0x1e06750,3, 0x1e06760,24, 0x1e06800,4, 0x1e06820,16, 0x1e06880,10, 0x1e068c0,10, 0x1e06900,6, 0x1e06920,6, 0x1e06940,4, 0x1e06980,13, 0x1e069c0,13, 0x1e06a00,9, 0x1e07000,14, 0x1e07040,9, 0x1e07080,6, 0x1e070a0,1, 0x1e070a8,4, 0x1e07100,4, 0x1e07200,124, 0x1e07400,124, 0x1e07600,8, 0x1e07624,1, 0x1e07644,6, 0x1e07664,6, 0x1e07680,1, 0x1e07688,6, 0x1e076a8,22, 0x1e08000,84, 0x1e08180,20, 0x1e08200,5, 0x1e08400,11, 0x1e08440,11, 0x1e08480,19, 0x1e08500,19, 0x1e08580,24, 0x1e08600,13, 0x1e08800,84, 0x1e08980,20, 0x1e08a00,5, 0x1e08c00,11, 0x1e08c40,11, 0x1e08c80,19, 0x1e08d00,19, 0x1e08d80,24, 0x1e08e00,13, 0x1e09000,10, 0x1e09040,5, 0x1e09080,10, 0x1e090c0,5, 0x1e09100,5, 0x1e09200,11, 0x1e09230,3, 0x1e09240,5, 0x1e09260,5, 0x1e09280,32, 0x1e09400,13, 0x1e09440,13, 0x1e09480,9, 0x1e094c0,1, 0x1e094d0,5, 0x1e094f0,21, 0x1e09800,10, 0x1e09840,5, 0x1e09880,10, 0x1e098c0,5, 0x1e09900,5, 0x1e09a00,11, 0x1e09a30,3, 0x1e09a40,5, 0x1e09a60,5, 0x1e09a80,32, 0x1e09c00,13, 0x1e09c40,13, 0x1e09c80,9, 0x1e09cc0,1, 0x1e09cd0,5, 0x1e09cf0,21, 0x1e0a000,14, 0x1e0a040,9, 0x1e0a080,6, 0x1e0a0a0,1, 0x1e0a0a8,4, 0x1e0a100,7, 0x1e0a120,3, 0x1e0a130,25, 0x1e0c000,26, 0x1e0c06c,2, 0x1e0c080,3, 0x1e0c090,17, 0x1e0c100,26, 0x1e0c16c,2, 0x1e0c180,3, 0x1e0c190,17, 0x1e0c200,26, 0x1e0c26c,2, 0x1e0c280,3, 0x1e0c290,17, 0x1e0c300,26, 0x1e0c36c,2, 0x1e0c380,3, 0x1e0c390,17, 0x1e0c400,26, 0x1e0c46c,2, 0x1e0c480,3, 0x1e0c490,17, 0x1e0c500,26, 0x1e0c56c,2, 0x1e0c580,3, 0x1e0c590,17, 0x1e0c600,26, 0x1e0c66c,2, 0x1e0c680,3, 0x1e0c690,17, 0x1e0c700,26, 0x1e0c76c,2, 0x1e0c780,3, 0x1e0c790,17, 0x1e0c800,12, 0x1e0c844,1, 0x1e0c854,8, 0x1e0c880,7, 0x1e0c8a0,2, 0x1e0c8ac,2, 0x1e0c8c0,26, 0x1e0c980,4, 0x1e0c9a0,5, 0x1e0c9c0,1, 0x1e0d000,3, 0x1e0d010,3, 0x1e0d020,3, 0x1e0d030,3, 0x1e0d040,3, 0x1e0d050,3, 0x1e0d060,3, 0x1e0d070,3, 0x1e0d080,5, 0x1e0d0a0,5, 0x1e0d0c0,5, 0x1e0d0e0,5, 0x1e0d100,5, 0x1e0d120,5, 0x1e0d140,5, 0x1e0d160,5, 0x1e0d200,68, 0x1e0d400,1, 0x1e0d804,1, 0x1e0d844,54, 0x1e0da00,11, 0x1e0da40,11, 0x1e0da80,11, 0x1e0dac0,11, 0x1e0db00,11, 0x1e0db40,11, 0x1e0db80,11, 0x1e0dbc0,11, 0x1e0dc00,28, 0x1e0dc80,5, 0x1e0dca0,2, 0x1e0e000,4, 0x1e0e020,6, 0x1e0e040,6, 0x1e0e060,14, 0x1e0e100,26, 0x1e0e180,15, 0x1e0e200,14, 0x1e0e240,9, 0x1e0e280,6, 0x1e0e2a0,1, 0x1e0e2a8,4, 0x1e0e300,14, 0x1e0e340,9, 0x1e0e380,6, 0x1e0e3a0,4, 0x1e0e400,9, 0x1e20000,1, 0x1e21000,977, 0x1e22000,161, 0x1e23000,977, 0x1e24000,977, 0x1e25000,977, 0x1e26000,977, 0x1e27000,977, 0x1e28000,977, 0x1e29000,977, 0x1e2a000,977, 0x1e2b000,161, 0x1e2c000,12, 0x1e2c040,14, 0x1e2c080,20, 0x1e2c104,1, 0x1e2c10c,4, 0x1e2c200,12, 0x1e2c240,14, 0x1e2c280,20, 0x1e2c304,1, 0x1e2c30c,4, 0x1e2c400,12, 0x1e2c440,14, 0x1e2c480,20, 0x1e2c504,1, 0x1e2c50c,4, 0x1e2c600,12, 0x1e2c640,14, 0x1e2c680,20, 0x1e2c704,1, 0x1e2c70c,4, 0x1e2c800,12, 0x1e2c840,14, 0x1e2c880,20, 0x1e2c904,1, 0x1e2c90c,4, 0x1e2ca00,12, 0x1e2ca40,14, 0x1e2ca80,20, 0x1e2cb04,1, 0x1e2cb0c,4, 0x1e2cc00,12, 0x1e2cc40,14, 0x1e2cc80,20, 0x1e2cd04,1, 0x1e2cd0c,4, 0x1e2ce00,12, 0x1e2ce40,14, 0x1e2ce80,20, 0x1e2cf04,1, 0x1e2cf0c,4, 0x1e2d000,12, 0x1e2d040,14, 0x1e2d080,20, 0x1e2d104,1, 0x1e2d10c,4, 0x1e2d200,17, 0x1e2d250,2, 0x1e2d260,4, 0x1e2e000,1, 0x1e2e014,1, 0x1e2e01c,11, 0x1e2e060,9, 0x1e2e094,1, 0x1e2e09c,11, 0x1e2e0e0,15, 0x1e2e200,12, 0x1e2e240,13, 0x1e2e280,3, 0x1e2e290,1, 0x1e80000,500, 0x1e80800,2, 0x1e80820,15, 0x1e81000,500, 0x1e81800,8, 0x1e81824,6, 0x1e81840,8, 0x1e81880,7, 0x1e818a0,7, 0x1e818c0,7, 0x1e818e0,7, 0x1e81900,8, 0x1e81924,16, 0x1e81980,12, 0x1e82000,500, 0x1e82800,2, 0x1e82820,15, 0x1e83000,500, 0x1e83800,8, 0x1e83824,6, 0x1e83840,8, 0x1e83880,7, 0x1e838a0,7, 0x1e838c0,7, 0x1e838e0,7, 0x1e83900,8, 0x1e83924,16, 0x1e83980,12, 0x1e84004,5, 0x1e84200,26, 0x1e84280,4, 0x1e842c0,25, 0x1e84340,6, 0x1e84360,1, 0x1e84368,2, 0x1e84374,11, 0x1e843a4,10, 0x1e84400,1, 0x1e88000,52, 0x1e88400,82, 0x1e88560,6, 0x1e88600,41, 0x1e88700,2, 0x1e88720,19, 0x1e88800,25, 0x1e88880,1, 0x1e88900,28, 0x1e88980,1, 0x1e89000,52, 0x1e89400,82, 0x1e89560,6, 0x1e89600,41, 0x1e89700,2, 0x1e89720,19, 0x1e89800,25, 0x1e89880,1, 0x1e89900,28, 0x1e89980,1, 0x1e8a000,7, 0x1e8a080,6, 0x1e8a0a0,6, 0x1e8a0c0,1, 0x1e8a100,4, 0x1e8a120,9, 0x1e8c000,3, 0x1e8c010,6, 0x1e8c200,7, 0x1e8c220,6, 0x1e8c240,7, 0x1e8c260,6, 0x1e8c280,2, 0x1e8c28c,2, 0x1e8c2a0,2, 0x1e8c2ac,2, 0x1e8c2c0,7, 0x1e8c2e0,7, 0x1e8c300,2, 0x1e8c30c,2, 0x1e8c320,6, 0x1e8c400,3, 0x1e8c440,12, 0x1e8c800,7, 0x1e8c820,14, 0x1e8c880,16, 0x1e8c900,7, 0x1e8c920,14, 0x1e8c980,16, 0x1e8ca00,6, 0x1e8ca20,7, 0x1e8cc00,3, 0x1ea0000,3, 0x1ea0800,7, 0x1ea0820,6, 0x1ea0840,6, 0x1ea0880,1, 0x1ea0894,1, 0x1ea089c,2, 0x1ea08c0,9, 0x1ea0900,18, 0x1ea0a00,36, 0x1ea0b00,22, 0x1ea0b80,18, 0x1ea0c00,3, 0x1ea0c10,3, 0x1ea1000,3, 0x1ea1010,2, 0x1ea1080,20, 0x1ea1100,1, 0x1ea1200,26, 0x1ea1280,4, 0x1ea12c0,25, 0x1ea1340,6, 0x1ea1360,1, 0x1ea1368,2, 0x1ea1374,11, 0x1ea13a4,4, 0x1ea1400,1, 0x1eb0000,11, 0x1eb0030,19, 0x1eb0080,17, 0x1eb0100,11, 0x1eb0130,19, 0x1eb0180,17, 0x1eb0200,3, 0x1eb0214,1, 0x1eb021c,1, 0x1eb0280,3, 0x1eb0294,1, 0x1eb029c,1, 0x1eb0300,18, 0x1eb0380,18, 0x1eb0400,18, 0x1eb0480,18, 0x1eb0500,18, 0x1eb0580,18, 0x1eb0600,18, 0x1eb0680,18, 0x1eb0700,13, 0x1eb0738,6, 0x1eb0780,13, 0x1eb07b8,6, 0x1eb0800,1, 0x1eb0808,22, 0x1eb0880,1, 0x1eb0894,13, 0x1eb0900,3, 0x1eb0910,3, 0x1eb0920,3, 0x1eb0940,3, 0x1eb0954,1, 0x1eb095c,1, 0x1eb0a00,52, 0x1eb0c00,4, 0x1eb0d00,34, 0x1eb0e00,4, 0x1eb0e80,30, 0x1eb0f00,1, 0x1eb0f40,5, 0x1eb0f60,5, 0x1eb0f80,6, 0x1eb1000,14, 0x1eb1040,4, 0x1eb1060,17, 0x1eb10c0,6, 0x1eb10e0,1, 0x1eb10e8,2, 0x1eb10f4,11, 0x1eb1124,17, 0x1eb1200,3, 0x1eb1210,3, 0x1eb1220,3, 0x1eb1230,3, 0x1eb1240,3, 0x1eb1250,3, 0x1eb2000,20, 0x1eb2080,3, 0x1eb2090,1, 0x1eb2098,2, 0x1ec0000,500, 0x1ec0800,2, 0x1ec0820,15, 0x1ec1000,500, 0x1ec1800,8, 0x1ec1824,6, 0x1ec1840,8, 0x1ec1880,7, 0x1ec18a0,7, 0x1ec18c0,7, 0x1ec18e0,7, 0x1ec1900,8, 0x1ec1924,16, 0x1ec1980,12, 0x1ec2000,500, 0x1ec2800,2, 0x1ec2820,15, 0x1ec3000,500, 0x1ec3800,8, 0x1ec3824,6, 0x1ec3840,8, 0x1ec3880,7, 0x1ec38a0,7, 0x1ec38c0,7, 0x1ec38e0,7, 0x1ec3900,8, 0x1ec3924,16, 0x1ec3980,12, 0x1ec4004,5, 0x1ec4200,26, 0x1ec4280,4, 0x1ec42c0,25, 0x1ec4340,6, 0x1ec4360,1, 0x1ec4368,2, 0x1ec4374,11, 0x1ec43a4,10, 0x1ec4400,1, 0x1ec8000,52, 0x1ec8400,82, 0x1ec8560,6, 0x1ec8600,41, 0x1ec8700,2, 0x1ec8720,19, 0x1ec8800,25, 0x1ec8880,1, 0x1ec8900,28, 0x1ec8980,1, 0x1ec9000,52, 0x1ec9400,82, 0x1ec9560,6, 0x1ec9600,41, 0x1ec9700,2, 0x1ec9720,19, 0x1ec9800,25, 0x1ec9880,1, 0x1ec9900,28, 0x1ec9980,1, 0x1eca000,7, 0x1eca080,6, 0x1eca0a0,6, 0x1eca0c0,1, 0x1eca100,4, 0x1eca120,9, 0x1ecc000,3, 0x1ecc010,6, 0x1ecc200,7, 0x1ecc220,6, 0x1ecc240,7, 0x1ecc260,6, 0x1ecc280,2, 0x1ecc28c,2, 0x1ecc2a0,2, 0x1ecc2ac,2, 0x1ecc2c0,7, 0x1ecc2e0,7, 0x1ecc300,2, 0x1ecc30c,2, 0x1ecc320,6, 0x1ecc400,3, 0x1ecc440,12, 0x1ecc800,7, 0x1ecc820,14, 0x1ecc880,16, 0x1ecc900,7, 0x1ecc920,14, 0x1ecc980,16, 0x1ecca00,6, 0x1ecca20,7, 0x1eccc00,3, 0x1ee0000,3, 0x1ee0800,7, 0x1ee0820,6, 0x1ee0840,6, 0x1ee0880,1, 0x1ee0894,1, 0x1ee089c,2, 0x1ee08c0,9, 0x1ee0900,18, 0x1ee0a00,36, 0x1ee0b00,22, 0x1ee0b80,18, 0x1ee0c00,3, 0x1ee0c10,3, 0x1ee1000,3, 0x1ee1010,2, 0x1ee1080,20, 0x1ee1100,1, 0x1ee1200,26, 0x1ee1280,4, 0x1ee12c0,25, 0x1ee1340,6, 0x1ee1360,1, 0x1ee1368,2, 0x1ee1374,11, 0x1ee13a4,4, 0x1ee1400,1, 0x1ef0000,11, 0x1ef0030,19, 0x1ef0080,17, 0x1ef0100,11, 0x1ef0130,19, 0x1ef0180,17, 0x1ef0200,3, 0x1ef0214,1, 0x1ef021c,1, 0x1ef0280,3, 0x1ef0294,1, 0x1ef029c,1, 0x1ef0300,18, 0x1ef0380,18, 0x1ef0400,18, 0x1ef0480,18, 0x1ef0500,18, 0x1ef0580,18, 0x1ef0600,18, 0x1ef0680,18, 0x1ef0700,13, 0x1ef0738,6, 0x1ef0780,13, 0x1ef07b8,6, 0x1ef0800,1, 0x1ef0808,22, 0x1ef0880,1, 0x1ef0894,13, 0x1ef0900,3, 0x1ef0910,3, 0x1ef0920,3, 0x1ef0940,3, 0x1ef0954,1, 0x1ef095c,1, 0x1ef0a00,52, 0x1ef0c00,4, 0x1ef0d00,34, 0x1ef0e00,4, 0x1ef0e80,30, 0x1ef0f00,1, 0x1ef0f40,5, 0x1ef0f60,5, 0x1ef0f80,6, 0x1ef1000,14, 0x1ef1040,4, 0x1ef1060,17, 0x1ef10c0,6, 0x1ef10e0,1, 0x1ef10e8,2, 0x1ef10f4,11, 0x1ef1124,17, 0x1ef1200,3, 0x1ef1210,3, 0x1ef1220,3, 0x1ef1230,3, 0x1ef1240,3, 0x1ef1250,3, 0x1ef2000,20, 0x1ef2080,3, 0x1ef2090,1, 0x1ef2098,2, 0x1f00000,13, 0x1f00038,4, 0x1f00050,3, 0x1f00060,3, 0x1f00070,16, 0x1f000c0,5, 0x1f00400,14, 0x1f00440,2, 0x1f0044c,3, 0x1f00480,14, 0x1f004c0,2, 0x1f004cc,3, 0x1f00500,1, 0x1f00508,15, 0x1f00560,2, 0x1f0056c,2, 0x1f00600,4, 0x1f00680,27, 0x1f00800,2, 0x1f00900,32, 0x1f00984,2, 0x1f00990,4, 0x1f00a00,26, 0x1f00a80,4, 0x1f00ac0,25, 0x1f00b40,6, 0x1f00b60,1, 0x1f00b68,2, 0x1f00b74,11, 0x1f00ba4,8, 0x1f00c00,9, 0x1f00c40,11, 0x1f00c80,23, 0x1f00ce0,15, 0x1f00d20,15, 0x1f00d60,1, 0x1f01000,13, 0x1f01038,4, 0x1f01050,3, 0x1f01060,3, 0x1f01070,16, 0x1f010c0,5, 0x1f01400,14, 0x1f01440,2, 0x1f0144c,3, 0x1f01480,14, 0x1f014c0,2, 0x1f014cc,3, 0x1f01500,1, 0x1f01508,15, 0x1f01560,2, 0x1f0156c,2, 0x1f01600,4, 0x1f01680,27, 0x1f01800,2, 0x1f01900,32, 0x1f01984,2, 0x1f01990,4, 0x1f01a00,26, 0x1f01a80,4, 0x1f01ac0,25, 0x1f01b40,6, 0x1f01b60,1, 0x1f01b68,2, 0x1f01b74,11, 0x1f01ba4,8, 0x1f01c00,9, 0x1f01c40,11, 0x1f01c80,23, 0x1f01ce0,15, 0x1f01d20,15, 0x1f01d60,1, 0x1f02000,1, 0x1f02100,36, 0x1f02200,7, 0x1f10000,22, 0x1f10080,22, 0x1f10100,12, 0x1f10140,12, 0x1f10200,52, 0x1f10300,52, 0x1f10400,11, 0x1f10440,11, 0x1f10480,3, 0x1f104a0,6, 0x1f104c0,6, 0x1f104e0,3, 0x1f104f0,3, 0x1f10800,9, 0x1f10840,15, 0x1f10880,15, 0x1f108c0,15, 0x1f10900,1, 0x1f10914,13, 0x1f10980,17, 0x1f11000,17, 0x1f11080,17, 0x1f11104,5, 0x1f11120,3, 0x1f11130,11, 0x1f11200,31, 0x1f11280,31, 0x1f11300,12, 0x1f11340,12, 0x1f11380,2, 0x1f11390,2, 0x1f113a0,3, 0x1f113b0,3, 0x1f113c0,5, 0x1f113e0,5, 0x1f11400,3, 0x1f11410,3, 0x1f11420,3, 0x1f11430,3, 0x1f11440,3, 0x1f11450,3, 0x1f11460,7, 0x1f11800,26, 0x1f11880,4, 0x1f118c0,25, 0x1f11940,6, 0x1f11960,1, 0x1f11968,2, 0x1f11974,11, 0x1f119a4,12, 0x1f11a00,4, 0x1f11b00,43, 0x1f11c00,4, 0x1f11c20,7, 0x1f11c40,3, 0x1f11c50,1, 0x1f11c60,3, 0x1f11e00,32, 0x1f11e84,1, 0x1f11e90,4, 0x1f11ea4,1, 0x1f11eb4,14, 0x1f11ef0,2, 0x1f11f04,1, 0x1f11f10,8, 0x1f11f34,6, 0x1f12000,3, 0x1f12010,21, 0x1f12080,1, 0x1f12094,1, 0x1f1209c,5, 0x1f12100,15, 0x1f12140,1, 0x1f12180,6, 0x1f14000,22, 0x1f14080,22, 0x1f14100,12, 0x1f14140,12, 0x1f14200,52, 0x1f14300,52, 0x1f14400,11, 0x1f14440,11, 0x1f14480,3, 0x1f144a0,6, 0x1f144c0,6, 0x1f144e0,3, 0x1f144f0,3, 0x1f14800,9, 0x1f14840,15, 0x1f14880,15, 0x1f148c0,15, 0x1f14900,1, 0x1f14914,13, 0x1f14980,17, 0x1f15000,17, 0x1f15080,17, 0x1f15104,5, 0x1f15120,3, 0x1f15130,11, 0x1f15200,31, 0x1f15280,31, 0x1f15300,12, 0x1f15340,12, 0x1f15380,2, 0x1f15390,2, 0x1f153a0,3, 0x1f153b0,3, 0x1f153c0,5, 0x1f153e0,5, 0x1f15400,3, 0x1f15410,3, 0x1f15420,3, 0x1f15430,3, 0x1f15440,3, 0x1f15450,3, 0x1f15460,7, 0x1f15800,26, 0x1f15880,4, 0x1f158c0,25, 0x1f15940,6, 0x1f15960,1, 0x1f15968,2, 0x1f15974,11, 0x1f159a4,12, 0x1f15a00,4, 0x1f15b00,43, 0x1f15c00,4, 0x1f15c20,7, 0x1f15c40,3, 0x1f15c50,1, 0x1f15c60,3, 0x1f15e00,32, 0x1f15e84,1, 0x1f15e90,4, 0x1f15ea4,1, 0x1f15eb4,14, 0x1f15ef0,2, 0x1f15f04,1, 0x1f15f10,8, 0x1f15f34,6, 0x1f16000,3, 0x1f16010,21, 0x1f16080,1, 0x1f16094,1, 0x1f1609c,5, 0x1f16100,15, 0x1f16140,1, 0x1f16180,6, 0x1f18000,100, 0x1f18200,3, 0x1f18210,5, 0x1f20000,12, 0x1f20040,2, 0x1f20050,3, 0x1f22000,1006, 0x1f23000,31, 0x1f23084,6, 0x1f24004,1, 0x1f2400c,3, 0x1f24200,23, 0x1f24280,23, 0x1f24300,1, 0x1f24400,1, 0x1f24800,122, 0x1f24a00,122, 0x1f24c04,63, 0x1f24d04,1, 0x1f24d10,5, 0x1f24d40,6, 0x1f24d60,5, 0x1f26000,1, 0x1f26100,1, 0x1f26108,3, 0x1f26120,2, 0x1f26134,8, 0x1f26160,2, 0x1f26174,8, 0x1f261a0,4, 0x1f26200,54, 0x1f26800,5, 0x1f26820,2, 0x1f26834,1, 0x1f2683c,1, 0x1f26a00,24, 0x1f26a80,24, 0x1f26b00,1, 0x1f26c00,6, 0x1f26c24,5, 0x1f26c40,16, 0x1f27000,1, 0x1f27020,5, 0x1f27040,1, 0x1f27048,2, 0x1f27080,1, 0x1f27100,4, 0x1f27180,24, 0x1f27200,4, 0x1f27280,27, 0x1f27300,2, 0x1f2730c,3, 0x1f28004,1, 0x1f2800c,3, 0x1f28020,1, 0x1f28100,2, 0x1f28110,3, 0x1f28120,2, 0x1f28140,10, 0x1f28180,13, 0x1f28200,2, 0x1f28210,3, 0x1f28220,2, 0x1f28240,10, 0x1f28280,13, 0x1f28400,14, 0x1f28440,3, 0x1f28450,3, 0x1f28460,1, 0x1f28500,36, 0x1f28600,10, 0x1f28640,5, 0x1f28660,5, 0x1f28700,27, 0x1f28780,7, 0x1f287a0,8, 0x1f28800,27, 0x1f28880,7, 0x1f288a0,8, 0x1f28900,27, 0x1f28980,7, 0x1f289a0,8, 0x1f28a00,27, 0x1f28a80,7, 0x1f28aa0,8, 0x1f28b00,48, 0x1f28bc4,8, 0x1f28bf0,30, 0x1f28c80,4, 0x1f28cc0,25, 0x1f28d40,6, 0x1f28d60,1, 0x1f28d68,2, 0x1f28d74,3, 0x1f28e00,8, 0x1f28e24,28, 0x1f29000,4, 0x1f29080,23, 0x1f29100,14, 0x1f29140,9, 0x1f29200,10, 0x1f29230,3, 0x1f29240,5, 0x1f29260,5, 0x1f29280,9, 0x1f29400,67, 0x1f29600,10, 0x1f30000,12, 0x1f30040,2, 0x1f30050,3, 0x1f32000,1006, 0x1f33000,31, 0x1f33084,6, 0x1f34004,1, 0x1f3400c,3, 0x1f34200,23, 0x1f34280,23, 0x1f34300,1, 0x1f34400,1, 0x1f34800,122, 0x1f34a00,122, 0x1f34c04,63, 0x1f34d04,1, 0x1f34d10,5, 0x1f34d40,6, 0x1f34d60,5, 0x1f36000,1, 0x1f36100,1, 0x1f36108,3, 0x1f36120,2, 0x1f36134,8, 0x1f36160,2, 0x1f36174,8, 0x1f361a0,4, 0x1f36200,54, 0x1f36800,5, 0x1f36820,2, 0x1f36834,1, 0x1f3683c,1, 0x1f36a00,24, 0x1f36a80,24, 0x1f36b00,1, 0x1f36c00,6, 0x1f36c24,5, 0x1f36c40,16, 0x1f37000,1, 0x1f37020,5, 0x1f37040,1, 0x1f37048,2, 0x1f37080,1, 0x1f37100,4, 0x1f37180,24, 0x1f37200,4, 0x1f37280,27, 0x1f37300,2, 0x1f3730c,3, 0x1f38004,1, 0x1f3800c,3, 0x1f38020,1, 0x1f38100,2, 0x1f38110,3, 0x1f38120,2, 0x1f38140,10, 0x1f38180,13, 0x1f38200,2, 0x1f38210,3, 0x1f38220,2, 0x1f38240,10, 0x1f38280,13, 0x1f38400,14, 0x1f38440,3, 0x1f38450,3, 0x1f38460,1, 0x1f38500,36, 0x1f38600,10, 0x1f38640,5, 0x1f38660,5, 0x1f38700,27, 0x1f38780,7, 0x1f387a0,8, 0x1f38800,27, 0x1f38880,7, 0x1f388a0,8, 0x1f38900,27, 0x1f38980,7, 0x1f389a0,8, 0x1f38a00,27, 0x1f38a80,7, 0x1f38aa0,8, 0x1f38b00,48, 0x1f38bc4,8, 0x1f38bf0,30, 0x1f38c80,4, 0x1f38cc0,25, 0x1f38d40,6, 0x1f38d60,1, 0x1f38d68,2, 0x1f38d74,3, 0x1f38e00,8, 0x1f38e24,28, 0x1f39000,4, 0x1f39080,23, 0x1f39100,14, 0x1f39140,9, 0x1f39200,10, 0x1f39230,3, 0x1f39240,5, 0x1f39260,5, 0x1f39280,9, 0x1f39400,67, 0x1f39600,10, 0x2000000,1, 0x2000020,3, 0x2000030,2, 0x2000040,3, 0x2000050,2, 0x2000800,53, 0x2000900,3, 0x2000910,13, 0x2000a00,53, 0x2000b00,3, 0x2000b10,13, 0x2000c00,5, 0x2000c20,5, 0x2000c40,18, 0x2001000,6, 0x2001020,4, 0x2001040,16, 0x2002000,20, 0x2002080,15, 0x2002100,20, 0x2002180,15, 0x2002200,23, 0x2002260,7, 0x2002400,11, 0x2002430,3, 0x2002440,3, 0x2002450,3, 0x2002460,24, 0x2002500,11, 0x2002530,3, 0x2002540,3, 0x2002550,3, 0x2002560,24, 0x2002600,11, 0x2002630,3, 0x2002640,3, 0x2002650,3, 0x2002660,24, 0x2002700,11, 0x2002730,3, 0x2002740,3, 0x2002750,3, 0x2002760,24, 0x2002800,4, 0x2002820,16, 0x2002880,10, 0x20028c0,10, 0x2002900,6, 0x2002920,6, 0x2002940,4, 0x2002980,13, 0x20029c0,13, 0x2002a00,9, 0x2003000,14, 0x2003040,9, 0x2003080,6, 0x20030a0,1, 0x20030a8,4, 0x2003100,4, 0x2003200,124, 0x2003400,124, 0x2003600,8, 0x2003624,1, 0x2003644,6, 0x2003664,6, 0x2003680,1, 0x2003688,6, 0x20036a8,22, 0x2004000,1, 0x2004020,3, 0x2004030,2, 0x2004040,3, 0x2004050,2, 0x2004800,53, 0x2004900,3, 0x2004910,13, 0x2004a00,53, 0x2004b00,3, 0x2004b10,13, 0x2004c00,5, 0x2004c20,5, 0x2004c40,18, 0x2005000,6, 0x2005020,4, 0x2005040,16, 0x2006000,20, 0x2006080,15, 0x2006100,20, 0x2006180,15, 0x2006200,23, 0x2006260,7, 0x2006400,11, 0x2006430,3, 0x2006440,3, 0x2006450,3, 0x2006460,24, 0x2006500,11, 0x2006530,3, 0x2006540,3, 0x2006550,3, 0x2006560,24, 0x2006600,11, 0x2006630,3, 0x2006640,3, 0x2006650,3, 0x2006660,24, 0x2006700,11, 0x2006730,3, 0x2006740,3, 0x2006750,3, 0x2006760,24, 0x2006800,4, 0x2006820,16, 0x2006880,10, 0x20068c0,10, 0x2006900,6, 0x2006920,6, 0x2006940,4, 0x2006980,13, 0x20069c0,13, 0x2006a00,9, 0x2007000,14, 0x2007040,9, 0x2007080,6, 0x20070a0,1, 0x20070a8,4, 0x2007100,4, 0x2007200,124, 0x2007400,124, 0x2007600,8, 0x2007624,1, 0x2007644,6, 0x2007664,6, 0x2007680,1, 0x2007688,6, 0x20076a8,22, 0x2008000,84, 0x2008180,20, 0x2008200,5, 0x2008400,11, 0x2008440,11, 0x2008480,19, 0x2008500,19, 0x2008580,24, 0x2008600,13, 0x2008800,84, 0x2008980,20, 0x2008a00,5, 0x2008c00,11, 0x2008c40,11, 0x2008c80,19, 0x2008d00,19, 0x2008d80,24, 0x2008e00,13, 0x2009000,10, 0x2009040,5, 0x2009080,10, 0x20090c0,5, 0x2009100,5, 0x2009200,11, 0x2009230,3, 0x2009240,5, 0x2009260,5, 0x2009280,32, 0x2009400,13, 0x2009440,13, 0x2009480,9, 0x20094c0,1, 0x20094d0,5, 0x20094f0,21, 0x2009800,10, 0x2009840,5, 0x2009880,10, 0x20098c0,5, 0x2009900,5, 0x2009a00,11, 0x2009a30,3, 0x2009a40,5, 0x2009a60,5, 0x2009a80,32, 0x2009c00,13, 0x2009c40,13, 0x2009c80,9, 0x2009cc0,1, 0x2009cd0,5, 0x2009cf0,21, 0x200a000,14, 0x200a040,9, 0x200a080,6, 0x200a0a0,1, 0x200a0a8,4, 0x200a100,7, 0x200a120,3, 0x200a130,25, 0x200c000,26, 0x200c06c,2, 0x200c080,3, 0x200c090,17, 0x200c100,26, 0x200c16c,2, 0x200c180,3, 0x200c190,17, 0x200c200,26, 0x200c26c,2, 0x200c280,3, 0x200c290,17, 0x200c300,26, 0x200c36c,2, 0x200c380,3, 0x200c390,17, 0x200c400,26, 0x200c46c,2, 0x200c480,3, 0x200c490,17, 0x200c500,26, 0x200c56c,2, 0x200c580,3, 0x200c590,17, 0x200c600,26, 0x200c66c,2, 0x200c680,3, 0x200c690,17, 0x200c700,26, 0x200c76c,2, 0x200c780,3, 0x200c790,17, 0x200c800,12, 0x200c844,1, 0x200c854,8, 0x200c880,7, 0x200c8a0,2, 0x200c8ac,2, 0x200c8c0,26, 0x200c980,4, 0x200c9a0,5, 0x200c9c0,1, 0x200d000,3, 0x200d010,3, 0x200d020,3, 0x200d030,3, 0x200d040,3, 0x200d050,3, 0x200d060,3, 0x200d070,3, 0x200d080,5, 0x200d0a0,5, 0x200d0c0,5, 0x200d0e0,5, 0x200d100,5, 0x200d120,5, 0x200d140,5, 0x200d160,5, 0x200d200,68, 0x200d400,1, 0x200d804,1, 0x200d844,54, 0x200da00,11, 0x200da40,11, 0x200da80,11, 0x200dac0,11, 0x200db00,11, 0x200db40,11, 0x200db80,11, 0x200dbc0,11, 0x200dc00,28, 0x200dc80,5, 0x200dca0,2, 0x200e000,4, 0x200e020,6, 0x200e040,6, 0x200e060,14, 0x200e100,26, 0x200e180,15, 0x200e200,14, 0x200e240,9, 0x200e280,6, 0x200e2a0,1, 0x200e2a8,4, 0x200e300,14, 0x200e340,9, 0x200e380,6, 0x200e3a0,4, 0x200e400,9, 0x2020000,1, 0x2021000,977, 0x2022000,161, 0x2023000,977, 0x2024000,977, 0x2025000,977, 0x2026000,977, 0x2027000,977, 0x2028000,977, 0x2029000,977, 0x202a000,977, 0x202b000,161, 0x202c000,12, 0x202c040,14, 0x202c080,20, 0x202c104,1, 0x202c10c,4, 0x202c200,12, 0x202c240,14, 0x202c280,20, 0x202c304,1, 0x202c30c,4, 0x202c400,12, 0x202c440,14, 0x202c480,20, 0x202c504,1, 0x202c50c,4, 0x202c600,12, 0x202c640,14, 0x202c680,20, 0x202c704,1, 0x202c70c,4, 0x202c800,12, 0x202c840,14, 0x202c880,20, 0x202c904,1, 0x202c90c,4, 0x202ca00,12, 0x202ca40,14, 0x202ca80,20, 0x202cb04,1, 0x202cb0c,4, 0x202cc00,12, 0x202cc40,14, 0x202cc80,20, 0x202cd04,1, 0x202cd0c,4, 0x202ce00,12, 0x202ce40,14, 0x202ce80,20, 0x202cf04,1, 0x202cf0c,4, 0x202d000,12, 0x202d040,14, 0x202d080,20, 0x202d104,1, 0x202d10c,4, 0x202d200,17, 0x202d250,2, 0x202d260,4, 0x202e000,1, 0x202e014,1, 0x202e01c,11, 0x202e060,9, 0x202e094,1, 0x202e09c,11, 0x202e0e0,15, 0x202e200,12, 0x202e240,13, 0x202e280,3, 0x202e290,1, 0x2080000,500, 0x2080800,2, 0x2080820,15, 0x2081000,500, 0x2081800,8, 0x2081824,6, 0x2081840,8, 0x2081880,7, 0x20818a0,7, 0x20818c0,7, 0x20818e0,7, 0x2081900,8, 0x2081924,16, 0x2081980,12, 0x2082000,500, 0x2082800,2, 0x2082820,15, 0x2083000,500, 0x2083800,8, 0x2083824,6, 0x2083840,8, 0x2083880,7, 0x20838a0,7, 0x20838c0,7, 0x20838e0,7, 0x2083900,8, 0x2083924,16, 0x2083980,12, 0x2084004,5, 0x2084200,26, 0x2084280,4, 0x20842c0,25, 0x2084340,6, 0x2084360,1, 0x2084368,2, 0x2084374,11, 0x20843a4,10, 0x2084400,1, 0x2088000,52, 0x2088400,82, 0x2088560,6, 0x2088600,41, 0x2088700,2, 0x2088720,19, 0x2088800,25, 0x2088880,1, 0x2088900,28, 0x2088980,1, 0x2089000,52, 0x2089400,82, 0x2089560,6, 0x2089600,41, 0x2089700,2, 0x2089720,19, 0x2089800,25, 0x2089880,1, 0x2089900,28, 0x2089980,1, 0x208a000,7, 0x208a080,6, 0x208a0a0,6, 0x208a0c0,1, 0x208a100,4, 0x208a120,9, 0x208c000,3, 0x208c010,6, 0x208c200,7, 0x208c220,6, 0x208c240,7, 0x208c260,6, 0x208c280,2, 0x208c28c,2, 0x208c2a0,2, 0x208c2ac,2, 0x208c2c0,7, 0x208c2e0,7, 0x208c300,2, 0x208c30c,2, 0x208c320,6, 0x208c400,3, 0x208c440,12, 0x208c800,7, 0x208c820,14, 0x208c880,16, 0x208c900,7, 0x208c920,14, 0x208c980,16, 0x208ca00,6, 0x208ca20,7, 0x208cc00,3, 0x20a0000,3, 0x20a0800,7, 0x20a0820,6, 0x20a0840,6, 0x20a0880,1, 0x20a0894,1, 0x20a089c,2, 0x20a08c0,9, 0x20a0900,18, 0x20a0a00,36, 0x20a0b00,22, 0x20a0b80,18, 0x20a0c00,3, 0x20a0c10,3, 0x20a1000,3, 0x20a1010,2, 0x20a1080,20, 0x20a1100,1, 0x20a1200,26, 0x20a1280,4, 0x20a12c0,25, 0x20a1340,6, 0x20a1360,1, 0x20a1368,2, 0x20a1374,11, 0x20a13a4,4, 0x20a1400,1, 0x20b0000,11, 0x20b0030,19, 0x20b0080,17, 0x20b0100,11, 0x20b0130,19, 0x20b0180,17, 0x20b0200,3, 0x20b0214,1, 0x20b021c,1, 0x20b0280,3, 0x20b0294,1, 0x20b029c,1, 0x20b0300,18, 0x20b0380,18, 0x20b0400,18, 0x20b0480,18, 0x20b0500,18, 0x20b0580,18, 0x20b0600,18, 0x20b0680,18, 0x20b0700,13, 0x20b0738,6, 0x20b0780,13, 0x20b07b8,6, 0x20b0800,1, 0x20b0808,22, 0x20b0880,1, 0x20b0894,13, 0x20b0900,3, 0x20b0910,3, 0x20b0920,3, 0x20b0940,3, 0x20b0954,1, 0x20b095c,1, 0x20b0a00,52, 0x20b0c00,4, 0x20b0d00,34, 0x20b0e00,4, 0x20b0e80,30, 0x20b0f00,1, 0x20b0f40,5, 0x20b0f60,5, 0x20b0f80,6, 0x20b1000,14, 0x20b1040,4, 0x20b1060,17, 0x20b10c0,6, 0x20b10e0,1, 0x20b10e8,2, 0x20b10f4,11, 0x20b1124,17, 0x20b1200,3, 0x20b1210,3, 0x20b1220,3, 0x20b1230,3, 0x20b1240,3, 0x20b1250,3, 0x20b2000,20, 0x20b2080,3, 0x20b2090,1, 0x20b2098,2, 0x20c0000,500, 0x20c0800,2, 0x20c0820,15, 0x20c1000,500, 0x20c1800,8, 0x20c1824,6, 0x20c1840,8, 0x20c1880,7, 0x20c18a0,7, 0x20c18c0,7, 0x20c18e0,7, 0x20c1900,8, 0x20c1924,16, 0x20c1980,12, 0x20c2000,500, 0x20c2800,2, 0x20c2820,15, 0x20c3000,500, 0x20c3800,8, 0x20c3824,6, 0x20c3840,8, 0x20c3880,7, 0x20c38a0,7, 0x20c38c0,7, 0x20c38e0,7, 0x20c3900,8, 0x20c3924,16, 0x20c3980,12, 0x20c4004,5, 0x20c4200,26, 0x20c4280,4, 0x20c42c0,25, 0x20c4340,6, 0x20c4360,1, 0x20c4368,2, 0x20c4374,11, 0x20c43a4,10, 0x20c4400,1, 0x20c8000,52, 0x20c8400,82, 0x20c8560,6, 0x20c8600,41, 0x20c8700,2, 0x20c8720,19, 0x20c8800,25, 0x20c8880,1, 0x20c8900,28, 0x20c8980,1, 0x20c9000,52, 0x20c9400,82, 0x20c9560,6, 0x20c9600,41, 0x20c9700,2, 0x20c9720,19, 0x20c9800,25, 0x20c9880,1, 0x20c9900,28, 0x20c9980,1, 0x20ca000,7, 0x20ca080,6, 0x20ca0a0,6, 0x20ca0c0,1, 0x20ca100,4, 0x20ca120,9, 0x20cc000,3, 0x20cc010,6, 0x20cc200,7, 0x20cc220,6, 0x20cc240,7, 0x20cc260,6, 0x20cc280,2, 0x20cc28c,2, 0x20cc2a0,2, 0x20cc2ac,2, 0x20cc2c0,7, 0x20cc2e0,7, 0x20cc300,2, 0x20cc30c,2, 0x20cc320,6, 0x20cc400,3, 0x20cc440,12, 0x20cc800,7, 0x20cc820,14, 0x20cc880,16, 0x20cc900,7, 0x20cc920,14, 0x20cc980,16, 0x20cca00,6, 0x20cca20,7, 0x20ccc00,3, 0x20e0000,3, 0x20e0800,7, 0x20e0820,6, 0x20e0840,6, 0x20e0880,1, 0x20e0894,1, 0x20e089c,2, 0x20e08c0,9, 0x20e0900,18, 0x20e0a00,36, 0x20e0b00,22, 0x20e0b80,18, 0x20e0c00,3, 0x20e0c10,3, 0x20e1000,3, 0x20e1010,2, 0x20e1080,20, 0x20e1100,1, 0x20e1200,26, 0x20e1280,4, 0x20e12c0,25, 0x20e1340,6, 0x20e1360,1, 0x20e1368,2, 0x20e1374,11, 0x20e13a4,4, 0x20e1400,1, 0x20f0000,11, 0x20f0030,19, 0x20f0080,17, 0x20f0100,11, 0x20f0130,19, 0x20f0180,17, 0x20f0200,3, 0x20f0214,1, 0x20f021c,1, 0x20f0280,3, 0x20f0294,1, 0x20f029c,1, 0x20f0300,18, 0x20f0380,18, 0x20f0400,18, 0x20f0480,18, 0x20f0500,18, 0x20f0580,18, 0x20f0600,18, 0x20f0680,18, 0x20f0700,13, 0x20f0738,6, 0x20f0780,13, 0x20f07b8,6, 0x20f0800,1, 0x20f0808,22, 0x20f0880,1, 0x20f0894,13, 0x20f0900,3, 0x20f0910,3, 0x20f0920,3, 0x20f0940,3, 0x20f0954,1, 0x20f095c,1, 0x20f0a00,52, 0x20f0c00,4, 0x20f0d00,34, 0x20f0e00,4, 0x20f0e80,30, 0x20f0f00,1, 0x20f0f40,5, 0x20f0f60,5, 0x20f0f80,6, 0x20f1000,14, 0x20f1040,4, 0x20f1060,17, 0x20f10c0,6, 0x20f10e0,1, 0x20f10e8,2, 0x20f10f4,11, 0x20f1124,17, 0x20f1200,3, 0x20f1210,3, 0x20f1220,3, 0x20f1230,3, 0x20f1240,3, 0x20f1250,3, 0x20f2000,20, 0x20f2080,3, 0x20f2090,1, 0x20f2098,2, 0x2100000,13, 0x2100038,4, 0x2100050,3, 0x2100060,3, 0x2100070,16, 0x21000c0,5, 0x2100400,14, 0x2100440,2, 0x210044c,3, 0x2100480,14, 0x21004c0,2, 0x21004cc,3, 0x2100500,1, 0x2100508,15, 0x2100560,2, 0x210056c,2, 0x2100600,4, 0x2100680,27, 0x2100800,2, 0x2100900,32, 0x2100984,2, 0x2100990,4, 0x2100a00,26, 0x2100a80,4, 0x2100ac0,25, 0x2100b40,6, 0x2100b60,1, 0x2100b68,2, 0x2100b74,11, 0x2100ba4,8, 0x2100c00,9, 0x2100c40,11, 0x2100c80,23, 0x2100ce0,15, 0x2100d20,15, 0x2100d60,1, 0x2101000,13, 0x2101038,4, 0x2101050,3, 0x2101060,3, 0x2101070,16, 0x21010c0,5, 0x2101400,14, 0x2101440,2, 0x210144c,3, 0x2101480,14, 0x21014c0,2, 0x21014cc,3, 0x2101500,1, 0x2101508,15, 0x2101560,2, 0x210156c,2, 0x2101600,4, 0x2101680,27, 0x2101800,2, 0x2101900,32, 0x2101984,2, 0x2101990,4, 0x2101a00,26, 0x2101a80,4, 0x2101ac0,25, 0x2101b40,6, 0x2101b60,1, 0x2101b68,2, 0x2101b74,11, 0x2101ba4,8, 0x2101c00,9, 0x2101c40,11, 0x2101c80,23, 0x2101ce0,15, 0x2101d20,15, 0x2101d60,1, 0x2102000,1, 0x2102100,36, 0x2102200,7, 0x2110000,22, 0x2110080,22, 0x2110100,12, 0x2110140,12, 0x2110200,52, 0x2110300,52, 0x2110400,11, 0x2110440,11, 0x2110480,3, 0x21104a0,6, 0x21104c0,6, 0x21104e0,3, 0x21104f0,3, 0x2110800,9, 0x2110840,15, 0x2110880,15, 0x21108c0,15, 0x2110900,1, 0x2110914,13, 0x2110980,17, 0x2111000,17, 0x2111080,17, 0x2111104,5, 0x2111120,3, 0x2111130,11, 0x2111200,31, 0x2111280,31, 0x2111300,12, 0x2111340,12, 0x2111380,2, 0x2111390,2, 0x21113a0,3, 0x21113b0,3, 0x21113c0,5, 0x21113e0,5, 0x2111400,3, 0x2111410,3, 0x2111420,3, 0x2111430,3, 0x2111440,3, 0x2111450,3, 0x2111460,7, 0x2111800,26, 0x2111880,4, 0x21118c0,25, 0x2111940,6, 0x2111960,1, 0x2111968,2, 0x2111974,11, 0x21119a4,12, 0x2111a00,4, 0x2111b00,43, 0x2111c00,4, 0x2111c20,7, 0x2111c40,3, 0x2111c50,1, 0x2111c60,3, 0x2111e00,32, 0x2111e84,1, 0x2111e90,4, 0x2111ea4,1, 0x2111eb4,14, 0x2111ef0,2, 0x2111f04,1, 0x2111f10,8, 0x2111f34,6, 0x2112000,3, 0x2112010,21, 0x2112080,1, 0x2112094,1, 0x211209c,5, 0x2112100,15, 0x2112140,1, 0x2112180,6, 0x2114000,22, 0x2114080,22, 0x2114100,12, 0x2114140,12, 0x2114200,52, 0x2114300,52, 0x2114400,11, 0x2114440,11, 0x2114480,3, 0x21144a0,6, 0x21144c0,6, 0x21144e0,3, 0x21144f0,3, 0x2114800,9, 0x2114840,15, 0x2114880,15, 0x21148c0,15, 0x2114900,1, 0x2114914,13, 0x2114980,17, 0x2115000,17, 0x2115080,17, 0x2115104,5, 0x2115120,3, 0x2115130,11, 0x2115200,31, 0x2115280,31, 0x2115300,12, 0x2115340,12, 0x2115380,2, 0x2115390,2, 0x21153a0,3, 0x21153b0,3, 0x21153c0,5, 0x21153e0,5, 0x2115400,3, 0x2115410,3, 0x2115420,3, 0x2115430,3, 0x2115440,3, 0x2115450,3, 0x2115460,7, 0x2115800,26, 0x2115880,4, 0x21158c0,25, 0x2115940,6, 0x2115960,1, 0x2115968,2, 0x2115974,11, 0x21159a4,12, 0x2115a00,4, 0x2115b00,43, 0x2115c00,4, 0x2115c20,7, 0x2115c40,3, 0x2115c50,1, 0x2115c60,3, 0x2115e00,32, 0x2115e84,1, 0x2115e90,4, 0x2115ea4,1, 0x2115eb4,14, 0x2115ef0,2, 0x2115f04,1, 0x2115f10,8, 0x2115f34,6, 0x2116000,3, 0x2116010,21, 0x2116080,1, 0x2116094,1, 0x211609c,5, 0x2116100,15, 0x2116140,1, 0x2116180,6, 0x2118000,100, 0x2118200,3, 0x2118210,5, 0x2120000,12, 0x2120040,2, 0x2120050,3, 0x2122000,1006, 0x2123000,31, 0x2123084,6, 0x2124004,1, 0x212400c,3, 0x2124200,23, 0x2124280,23, 0x2124300,1, 0x2124400,1, 0x2124800,122, 0x2124a00,122, 0x2124c04,63, 0x2124d04,1, 0x2124d10,5, 0x2124d40,6, 0x2124d60,5, 0x2126000,1, 0x2126100,1, 0x2126108,3, 0x2126120,2, 0x2126134,8, 0x2126160,2, 0x2126174,8, 0x21261a0,4, 0x2126200,54, 0x2126800,5, 0x2126820,2, 0x2126834,1, 0x212683c,1, 0x2126a00,24, 0x2126a80,24, 0x2126b00,1, 0x2126c00,6, 0x2126c24,5, 0x2126c40,16, 0x2127000,1, 0x2127020,5, 0x2127040,1, 0x2127048,2, 0x2127080,1, 0x2127100,4, 0x2127180,24, 0x2127200,4, 0x2127280,27, 0x2127300,2, 0x212730c,3, 0x2128004,1, 0x212800c,3, 0x2128020,1, 0x2128100,2, 0x2128110,3, 0x2128120,2, 0x2128140,10, 0x2128180,13, 0x2128200,2, 0x2128210,3, 0x2128220,2, 0x2128240,10, 0x2128280,13, 0x2128400,14, 0x2128440,3, 0x2128450,3, 0x2128460,1, 0x2128500,36, 0x2128600,10, 0x2128640,5, 0x2128660,5, 0x2128700,27, 0x2128780,7, 0x21287a0,8, 0x2128800,27, 0x2128880,7, 0x21288a0,8, 0x2128900,27, 0x2128980,7, 0x21289a0,8, 0x2128a00,27, 0x2128a80,7, 0x2128aa0,8, 0x2128b00,48, 0x2128bc4,8, 0x2128bf0,30, 0x2128c80,4, 0x2128cc0,25, 0x2128d40,6, 0x2128d60,1, 0x2128d68,2, 0x2128d74,3, 0x2128e00,8, 0x2128e24,28, 0x2129000,4, 0x2129080,23, 0x2129100,14, 0x2129140,9, 0x2129200,10, 0x2129230,3, 0x2129240,5, 0x2129260,5, 0x2129280,9, 0x2129400,67, 0x2129600,10, 0x2130000,12, 0x2130040,2, 0x2130050,3, 0x2132000,1006, 0x2133000,31, 0x2133084,6, 0x2134004,1, 0x213400c,3, 0x2134200,23, 0x2134280,23, 0x2134300,1, 0x2134400,1, 0x2134800,122, 0x2134a00,122, 0x2134c04,63, 0x2134d04,1, 0x2134d10,5, 0x2134d40,6, 0x2134d60,5, 0x2136000,1, 0x2136100,1, 0x2136108,3, 0x2136120,2, 0x2136134,8, 0x2136160,2, 0x2136174,8, 0x21361a0,4, 0x2136200,54, 0x2136800,5, 0x2136820,2, 0x2136834,1, 0x213683c,1, 0x2136a00,24, 0x2136a80,24, 0x2136b00,1, 0x2136c00,6, 0x2136c24,5, 0x2136c40,16, 0x2137000,1, 0x2137020,5, 0x2137040,1, 0x2137048,2, 0x2137080,1, 0x2137100,4, 0x2137180,24, 0x2137200,4, 0x2137280,27, 0x2137300,2, 0x213730c,3, 0x2138004,1, 0x213800c,3, 0x2138020,1, 0x2138100,2, 0x2138110,3, 0x2138120,2, 0x2138140,10, 0x2138180,13, 0x2138200,2, 0x2138210,3, 0x2138220,2, 0x2138240,10, 0x2138280,13, 0x2138400,14, 0x2138440,3, 0x2138450,3, 0x2138460,1, 0x2138500,36, 0x2138600,10, 0x2138640,5, 0x2138660,5, 0x2138700,27, 0x2138780,7, 0x21387a0,8, 0x2138800,27, 0x2138880,7, 0x21388a0,8, 0x2138900,27, 0x2138980,7, 0x21389a0,8, 0x2138a00,27, 0x2138a80,7, 0x2138aa0,8, 0x2138b00,48, 0x2138bc4,8, 0x2138bf0,30, 0x2138c80,4, 0x2138cc0,25, 0x2138d40,6, 0x2138d60,1, 0x2138d68,2, 0x2138d74,3, 0x2138e00,8, 0x2138e24,28, 0x2139000,4, 0x2139080,23, 0x2139100,14, 0x2139140,9, 0x2139200,10, 0x2139230,3, 0x2139240,5, 0x2139260,5, 0x2139280,9, 0x2139400,67, 0x2139600,10, 0x2200000,1, 0x2200020,3, 0x2200030,2, 0x2200040,3, 0x2200050,2, 0x2200800,53, 0x2200900,3, 0x2200910,13, 0x2200a00,53, 0x2200b00,3, 0x2200b10,13, 0x2200c00,5, 0x2200c20,5, 0x2200c40,18, 0x2201000,6, 0x2201020,4, 0x2201040,16, 0x2202000,20, 0x2202080,15, 0x2202100,20, 0x2202180,15, 0x2202200,23, 0x2202260,7, 0x2202400,11, 0x2202430,3, 0x2202440,3, 0x2202450,3, 0x2202460,24, 0x2202500,11, 0x2202530,3, 0x2202540,3, 0x2202550,3, 0x2202560,24, 0x2202600,11, 0x2202630,3, 0x2202640,3, 0x2202650,3, 0x2202660,24, 0x2202700,11, 0x2202730,3, 0x2202740,3, 0x2202750,3, 0x2202760,24, 0x2202800,4, 0x2202820,16, 0x2202880,10, 0x22028c0,10, 0x2202900,6, 0x2202920,6, 0x2202940,4, 0x2202980,13, 0x22029c0,13, 0x2202a00,9, 0x2203000,14, 0x2203040,9, 0x2203080,6, 0x22030a0,1, 0x22030a8,4, 0x2203100,4, 0x2203200,124, 0x2203400,124, 0x2203600,8, 0x2203624,1, 0x2203644,6, 0x2203664,6, 0x2203680,1, 0x2203688,6, 0x22036a8,22, 0x2204000,1, 0x2204020,3, 0x2204030,2, 0x2204040,3, 0x2204050,2, 0x2204800,53, 0x2204900,3, 0x2204910,13, 0x2204a00,53, 0x2204b00,3, 0x2204b10,13, 0x2204c00,5, 0x2204c20,5, 0x2204c40,18, 0x2205000,6, 0x2205020,4, 0x2205040,16, 0x2206000,20, 0x2206080,15, 0x2206100,20, 0x2206180,15, 0x2206200,23, 0x2206260,7, 0x2206400,11, 0x2206430,3, 0x2206440,3, 0x2206450,3, 0x2206460,24, 0x2206500,11, 0x2206530,3, 0x2206540,3, 0x2206550,3, 0x2206560,24, 0x2206600,11, 0x2206630,3, 0x2206640,3, 0x2206650,3, 0x2206660,24, 0x2206700,11, 0x2206730,3, 0x2206740,3, 0x2206750,3, 0x2206760,24, 0x2206800,4, 0x2206820,16, 0x2206880,10, 0x22068c0,10, 0x2206900,6, 0x2206920,6, 0x2206940,4, 0x2206980,13, 0x22069c0,13, 0x2206a00,9, 0x2207000,14, 0x2207040,9, 0x2207080,6, 0x22070a0,1, 0x22070a8,4, 0x2207100,4, 0x2207200,124, 0x2207400,124, 0x2207600,8, 0x2207624,1, 0x2207644,6, 0x2207664,6, 0x2207680,1, 0x2207688,6, 0x22076a8,22, 0x2208000,84, 0x2208180,20, 0x2208200,5, 0x2208400,11, 0x2208440,11, 0x2208480,19, 0x2208500,19, 0x2208580,24, 0x2208600,13, 0x2208800,84, 0x2208980,20, 0x2208a00,5, 0x2208c00,11, 0x2208c40,11, 0x2208c80,19, 0x2208d00,19, 0x2208d80,24, 0x2208e00,13, 0x2209000,10, 0x2209040,5, 0x2209080,10, 0x22090c0,5, 0x2209100,5, 0x2209200,11, 0x2209230,3, 0x2209240,5, 0x2209260,5, 0x2209280,32, 0x2209400,13, 0x2209440,13, 0x2209480,9, 0x22094c0,1, 0x22094d0,5, 0x22094f0,21, 0x2209800,10, 0x2209840,5, 0x2209880,10, 0x22098c0,5, 0x2209900,5, 0x2209a00,11, 0x2209a30,3, 0x2209a40,5, 0x2209a60,5, 0x2209a80,32, 0x2209c00,13, 0x2209c40,13, 0x2209c80,9, 0x2209cc0,1, 0x2209cd0,5, 0x2209cf0,21, 0x220a000,14, 0x220a040,9, 0x220a080,6, 0x220a0a0,1, 0x220a0a8,4, 0x220a100,7, 0x220a120,3, 0x220a130,25, 0x220c000,26, 0x220c06c,2, 0x220c080,3, 0x220c090,17, 0x220c100,26, 0x220c16c,2, 0x220c180,3, 0x220c190,17, 0x220c200,26, 0x220c26c,2, 0x220c280,3, 0x220c290,17, 0x220c300,26, 0x220c36c,2, 0x220c380,3, 0x220c390,17, 0x220c400,26, 0x220c46c,2, 0x220c480,3, 0x220c490,17, 0x220c500,26, 0x220c56c,2, 0x220c580,3, 0x220c590,17, 0x220c600,26, 0x220c66c,2, 0x220c680,3, 0x220c690,17, 0x220c700,26, 0x220c76c,2, 0x220c780,3, 0x220c790,17, 0x220c800,12, 0x220c844,1, 0x220c854,8, 0x220c880,7, 0x220c8a0,2, 0x220c8ac,2, 0x220c8c0,26, 0x220c980,4, 0x220c9a0,5, 0x220c9c0,1, 0x220d000,3, 0x220d010,3, 0x220d020,3, 0x220d030,3, 0x220d040,3, 0x220d050,3, 0x220d060,3, 0x220d070,3, 0x220d080,5, 0x220d0a0,5, 0x220d0c0,5, 0x220d0e0,5, 0x220d100,5, 0x220d120,5, 0x220d140,5, 0x220d160,5, 0x220d200,68, 0x220d400,1, 0x220d804,1, 0x220d844,54, 0x220da00,11, 0x220da40,11, 0x220da80,11, 0x220dac0,11, 0x220db00,11, 0x220db40,11, 0x220db80,11, 0x220dbc0,11, 0x220dc00,28, 0x220dc80,5, 0x220dca0,2, 0x220e000,4, 0x220e020,6, 0x220e040,6, 0x220e060,14, 0x220e100,26, 0x220e180,15, 0x220e200,14, 0x220e240,9, 0x220e280,6, 0x220e2a0,1, 0x220e2a8,4, 0x220e300,14, 0x220e340,9, 0x220e380,6, 0x220e3a0,4, 0x220e400,9, 0x2220000,1, 0x2221000,977, 0x2222000,161, 0x2223000,977, 0x2224000,977, 0x2225000,977, 0x2226000,977, 0x2227000,977, 0x2228000,977, 0x2229000,977, 0x222a000,977, 0x222b000,161, 0x222c000,12, 0x222c040,14, 0x222c080,20, 0x222c104,1, 0x222c10c,4, 0x222c200,12, 0x222c240,14, 0x222c280,20, 0x222c304,1, 0x222c30c,4, 0x222c400,12, 0x222c440,14, 0x222c480,20, 0x222c504,1, 0x222c50c,4, 0x222c600,12, 0x222c640,14, 0x222c680,20, 0x222c704,1, 0x222c70c,4, 0x222c800,12, 0x222c840,14, 0x222c880,20, 0x222c904,1, 0x222c90c,4, 0x222ca00,12, 0x222ca40,14, 0x222ca80,20, 0x222cb04,1, 0x222cb0c,4, 0x222cc00,12, 0x222cc40,14, 0x222cc80,20, 0x222cd04,1, 0x222cd0c,4, 0x222ce00,12, 0x222ce40,14, 0x222ce80,20, 0x222cf04,1, 0x222cf0c,4, 0x222d000,12, 0x222d040,14, 0x222d080,20, 0x222d104,1, 0x222d10c,4, 0x222d200,17, 0x222d250,2, 0x222d260,4, 0x222e000,1, 0x222e014,1, 0x222e01c,11, 0x222e060,9, 0x222e094,1, 0x222e09c,11, 0x222e0e0,15, 0x222e200,12, 0x222e240,13, 0x222e280,3, 0x222e290,1, 0x2280000,500, 0x2280800,2, 0x2280820,15, 0x2281000,500, 0x2281800,8, 0x2281824,6, 0x2281840,8, 0x2281880,7, 0x22818a0,7, 0x22818c0,7, 0x22818e0,7, 0x2281900,8, 0x2281924,16, 0x2281980,12, 0x2282000,500, 0x2282800,2, 0x2282820,15, 0x2283000,500, 0x2283800,8, 0x2283824,6, 0x2283840,8, 0x2283880,7, 0x22838a0,7, 0x22838c0,7, 0x22838e0,7, 0x2283900,8, 0x2283924,16, 0x2283980,12, 0x2284004,5, 0x2284200,26, 0x2284280,4, 0x22842c0,25, 0x2284340,6, 0x2284360,1, 0x2284368,2, 0x2284374,11, 0x22843a4,10, 0x2284400,1, 0x2288000,52, 0x2288400,82, 0x2288560,6, 0x2288600,41, 0x2288700,2, 0x2288720,19, 0x2288800,25, 0x2288880,1, 0x2288900,28, 0x2288980,1, 0x2289000,52, 0x2289400,82, 0x2289560,6, 0x2289600,41, 0x2289700,2, 0x2289720,19, 0x2289800,25, 0x2289880,1, 0x2289900,28, 0x2289980,1, 0x228a000,7, 0x228a080,6, 0x228a0a0,6, 0x228a0c0,1, 0x228a100,4, 0x228a120,9, 0x228c000,3, 0x228c010,6, 0x228c200,7, 0x228c220,6, 0x228c240,7, 0x228c260,6, 0x228c280,2, 0x228c28c,2, 0x228c2a0,2, 0x228c2ac,2, 0x228c2c0,7, 0x228c2e0,7, 0x228c300,2, 0x228c30c,2, 0x228c320,6, 0x228c400,3, 0x228c440,12, 0x228c800,7, 0x228c820,14, 0x228c880,16, 0x228c900,7, 0x228c920,14, 0x228c980,16, 0x228ca00,6, 0x228ca20,7, 0x228cc00,3, 0x22a0000,3, 0x22a0800,7, 0x22a0820,6, 0x22a0840,6, 0x22a0880,1, 0x22a0894,1, 0x22a089c,2, 0x22a08c0,9, 0x22a0900,18, 0x22a0a00,36, 0x22a0b00,22, 0x22a0b80,18, 0x22a0c00,3, 0x22a0c10,3, 0x22a1000,3, 0x22a1010,2, 0x22a1080,20, 0x22a1100,1, 0x22a1200,26, 0x22a1280,4, 0x22a12c0,25, 0x22a1340,6, 0x22a1360,1, 0x22a1368,2, 0x22a1374,11, 0x22a13a4,4, 0x22a1400,1, 0x22b0000,11, 0x22b0030,19, 0x22b0080,17, 0x22b0100,11, 0x22b0130,19, 0x22b0180,17, 0x22b0200,3, 0x22b0214,1, 0x22b021c,1, 0x22b0280,3, 0x22b0294,1, 0x22b029c,1, 0x22b0300,18, 0x22b0380,18, 0x22b0400,18, 0x22b0480,18, 0x22b0500,18, 0x22b0580,18, 0x22b0600,18, 0x22b0680,18, 0x22b0700,13, 0x22b0738,6, 0x22b0780,13, 0x22b07b8,6, 0x22b0800,1, 0x22b0808,22, 0x22b0880,1, 0x22b0894,13, 0x22b0900,3, 0x22b0910,3, 0x22b0920,3, 0x22b0940,3, 0x22b0954,1, 0x22b095c,1, 0x22b0a00,52, 0x22b0c00,4, 0x22b0d00,34, 0x22b0e00,4, 0x22b0e80,30, 0x22b0f00,1, 0x22b0f40,5, 0x22b0f60,5, 0x22b0f80,6, 0x22b1000,14, 0x22b1040,4, 0x22b1060,17, 0x22b10c0,6, 0x22b10e0,1, 0x22b10e8,2, 0x22b10f4,11, 0x22b1124,17, 0x22b1200,3, 0x22b1210,3, 0x22b1220,3, 0x22b1230,3, 0x22b1240,3, 0x22b1250,3, 0x22b2000,20, 0x22b2080,3, 0x22b2090,1, 0x22b2098,2, 0x22c0000,500, 0x22c0800,2, 0x22c0820,15, 0x22c1000,500, 0x22c1800,8, 0x22c1824,6, 0x22c1840,8, 0x22c1880,7, 0x22c18a0,7, 0x22c18c0,7, 0x22c18e0,7, 0x22c1900,8, 0x22c1924,16, 0x22c1980,12, 0x22c2000,500, 0x22c2800,2, 0x22c2820,15, 0x22c3000,500, 0x22c3800,8, 0x22c3824,6, 0x22c3840,8, 0x22c3880,7, 0x22c38a0,7, 0x22c38c0,7, 0x22c38e0,7, 0x22c3900,8, 0x22c3924,16, 0x22c3980,12, 0x22c4004,5, 0x22c4200,26, 0x22c4280,4, 0x22c42c0,25, 0x22c4340,6, 0x22c4360,1, 0x22c4368,2, 0x22c4374,11, 0x22c43a4,10, 0x22c4400,1, 0x22c8000,52, 0x22c8400,82, 0x22c8560,6, 0x22c8600,41, 0x22c8700,2, 0x22c8720,19, 0x22c8800,25, 0x22c8880,1, 0x22c8900,28, 0x22c8980,1, 0x22c9000,52, 0x22c9400,82, 0x22c9560,6, 0x22c9600,41, 0x22c9700,2, 0x22c9720,19, 0x22c9800,25, 0x22c9880,1, 0x22c9900,28, 0x22c9980,1, 0x22ca000,7, 0x22ca080,6, 0x22ca0a0,6, 0x22ca0c0,1, 0x22ca100,4, 0x22ca120,9, 0x22cc000,3, 0x22cc010,6, 0x22cc200,7, 0x22cc220,6, 0x22cc240,7, 0x22cc260,6, 0x22cc280,2, 0x22cc28c,2, 0x22cc2a0,2, 0x22cc2ac,2, 0x22cc2c0,7, 0x22cc2e0,7, 0x22cc300,2, 0x22cc30c,2, 0x22cc320,6, 0x22cc400,3, 0x22cc440,12, 0x22cc800,7, 0x22cc820,14, 0x22cc880,16, 0x22cc900,7, 0x22cc920,14, 0x22cc980,16, 0x22cca00,6, 0x22cca20,7, 0x22ccc00,3, 0x22e0000,3, 0x22e0800,7, 0x22e0820,6, 0x22e0840,6, 0x22e0880,1, 0x22e0894,1, 0x22e089c,2, 0x22e08c0,9, 0x22e0900,18, 0x22e0a00,36, 0x22e0b00,22, 0x22e0b80,18, 0x22e0c00,3, 0x22e0c10,3, 0x22e1000,3, 0x22e1010,2, 0x22e1080,20, 0x22e1100,1, 0x22e1200,26, 0x22e1280,4, 0x22e12c0,25, 0x22e1340,6, 0x22e1360,1, 0x22e1368,2, 0x22e1374,11, 0x22e13a4,4, 0x22e1400,1, 0x22f0000,11, 0x22f0030,19, 0x22f0080,17, 0x22f0100,11, 0x22f0130,19, 0x22f0180,17, 0x22f0200,3, 0x22f0214,1, 0x22f021c,1, 0x22f0280,3, 0x22f0294,1, 0x22f029c,1, 0x22f0300,18, 0x22f0380,18, 0x22f0400,18, 0x22f0480,18, 0x22f0500,18, 0x22f0580,18, 0x22f0600,18, 0x22f0680,18, 0x22f0700,13, 0x22f0738,6, 0x22f0780,13, 0x22f07b8,6, 0x22f0800,1, 0x22f0808,22, 0x22f0880,1, 0x22f0894,13, 0x22f0900,3, 0x22f0910,3, 0x22f0920,3, 0x22f0940,3, 0x22f0954,1, 0x22f095c,1, 0x22f0a00,52, 0x22f0c00,4, 0x22f0d00,34, 0x22f0e00,4, 0x22f0e80,30, 0x22f0f00,1, 0x22f0f40,5, 0x22f0f60,5, 0x22f0f80,6, 0x22f1000,14, 0x22f1040,4, 0x22f1060,17, 0x22f10c0,6, 0x22f10e0,1, 0x22f10e8,2, 0x22f10f4,11, 0x22f1124,17, 0x22f1200,3, 0x22f1210,3, 0x22f1220,3, 0x22f1230,3, 0x22f1240,3, 0x22f1250,3, 0x22f2000,20, 0x22f2080,3, 0x22f2090,1, 0x22f2098,2, 0x2300000,13, 0x2300038,4, 0x2300050,3, 0x2300060,3, 0x2300070,16, 0x23000c0,5, 0x2300400,14, 0x2300440,2, 0x230044c,3, 0x2300480,14, 0x23004c0,2, 0x23004cc,3, 0x2300500,1, 0x2300508,15, 0x2300560,2, 0x230056c,2, 0x2300600,4, 0x2300680,27, 0x2300800,2, 0x2300900,32, 0x2300984,2, 0x2300990,4, 0x2300a00,26, 0x2300a80,4, 0x2300ac0,25, 0x2300b40,6, 0x2300b60,1, 0x2300b68,2, 0x2300b74,11, 0x2300ba4,8, 0x2300c00,9, 0x2300c40,11, 0x2300c80,23, 0x2300ce0,15, 0x2300d20,15, 0x2300d60,1, 0x2301000,13, 0x2301038,4, 0x2301050,3, 0x2301060,3, 0x2301070,16, 0x23010c0,5, 0x2301400,14, 0x2301440,2, 0x230144c,3, 0x2301480,14, 0x23014c0,2, 0x23014cc,3, 0x2301500,1, 0x2301508,15, 0x2301560,2, 0x230156c,2, 0x2301600,4, 0x2301680,27, 0x2301800,2, 0x2301900,32, 0x2301984,2, 0x2301990,4, 0x2301a00,26, 0x2301a80,4, 0x2301ac0,25, 0x2301b40,6, 0x2301b60,1, 0x2301b68,2, 0x2301b74,11, 0x2301ba4,8, 0x2301c00,9, 0x2301c40,11, 0x2301c80,23, 0x2301ce0,15, 0x2301d20,15, 0x2301d60,1, 0x2302000,1, 0x2302100,36, 0x2302200,7, 0x2310000,22, 0x2310080,22, 0x2310100,12, 0x2310140,12, 0x2310200,52, 0x2310300,52, 0x2310400,11, 0x2310440,11, 0x2310480,3, 0x23104a0,6, 0x23104c0,6, 0x23104e0,3, 0x23104f0,3, 0x2310800,9, 0x2310840,15, 0x2310880,15, 0x23108c0,15, 0x2310900,1, 0x2310914,13, 0x2310980,17, 0x2311000,17, 0x2311080,17, 0x2311104,5, 0x2311120,3, 0x2311130,11, 0x2311200,31, 0x2311280,31, 0x2311300,12, 0x2311340,12, 0x2311380,2, 0x2311390,2, 0x23113a0,3, 0x23113b0,3, 0x23113c0,5, 0x23113e0,5, 0x2311400,3, 0x2311410,3, 0x2311420,3, 0x2311430,3, 0x2311440,3, 0x2311450,3, 0x2311460,7, 0x2311800,26, 0x2311880,4, 0x23118c0,25, 0x2311940,6, 0x2311960,1, 0x2311968,2, 0x2311974,11, 0x23119a4,12, 0x2311a00,4, 0x2311b00,43, 0x2311c00,4, 0x2311c20,7, 0x2311c40,3, 0x2311c50,1, 0x2311c60,3, 0x2311e00,32, 0x2311e84,1, 0x2311e90,4, 0x2311ea4,1, 0x2311eb4,14, 0x2311ef0,2, 0x2311f04,1, 0x2311f10,8, 0x2311f34,6, 0x2312000,3, 0x2312010,21, 0x2312080,1, 0x2312094,1, 0x231209c,5, 0x2312100,15, 0x2312140,1, 0x2312180,6, 0x2314000,22, 0x2314080,22, 0x2314100,12, 0x2314140,12, 0x2314200,52, 0x2314300,52, 0x2314400,11, 0x2314440,11, 0x2314480,3, 0x23144a0,6, 0x23144c0,6, 0x23144e0,3, 0x23144f0,3, 0x2314800,9, 0x2314840,15, 0x2314880,15, 0x23148c0,15, 0x2314900,1, 0x2314914,13, 0x2314980,17, 0x2315000,17, 0x2315080,17, 0x2315104,5, 0x2315120,3, 0x2315130,11, 0x2315200,31, 0x2315280,31, 0x2315300,12, 0x2315340,12, 0x2315380,2, 0x2315390,2, 0x23153a0,3, 0x23153b0,3, 0x23153c0,5, 0x23153e0,5, 0x2315400,3, 0x2315410,3, 0x2315420,3, 0x2315430,3, 0x2315440,3, 0x2315450,3, 0x2315460,7, 0x2315800,26, 0x2315880,4, 0x23158c0,25, 0x2315940,6, 0x2315960,1, 0x2315968,2, 0x2315974,11, 0x23159a4,12, 0x2315a00,4, 0x2315b00,43, 0x2315c00,4, 0x2315c20,7, 0x2315c40,3, 0x2315c50,1, 0x2315c60,3, 0x2315e00,32, 0x2315e84,1, 0x2315e90,4, 0x2315ea4,1, 0x2315eb4,14, 0x2315ef0,2, 0x2315f04,1, 0x2315f10,8, 0x2315f34,6, 0x2316000,3, 0x2316010,21, 0x2316080,1, 0x2316094,1, 0x231609c,5, 0x2316100,15, 0x2316140,1, 0x2316180,6, 0x2318000,100, 0x2318200,3, 0x2318210,5, 0x2320000,12, 0x2320040,2, 0x2320050,3, 0x2322000,1006, 0x2323000,31, 0x2323084,6, 0x2324004,1, 0x232400c,3, 0x2324200,23, 0x2324280,23, 0x2324300,1, 0x2324400,1, 0x2324800,122, 0x2324a00,122, 0x2324c04,63, 0x2324d04,1, 0x2324d10,5, 0x2324d40,6, 0x2324d60,5, 0x2326000,1, 0x2326100,1, 0x2326108,3, 0x2326120,2, 0x2326134,8, 0x2326160,2, 0x2326174,8, 0x23261a0,4, 0x2326200,54, 0x2326800,5, 0x2326820,2, 0x2326834,1, 0x232683c,1, 0x2326a00,24, 0x2326a80,24, 0x2326b00,1, 0x2326c00,6, 0x2326c24,5, 0x2326c40,16, 0x2327000,1, 0x2327020,5, 0x2327040,1, 0x2327048,2, 0x2327080,1, 0x2327100,4, 0x2327180,24, 0x2327200,4, 0x2327280,27, 0x2327300,2, 0x232730c,3, 0x2328004,1, 0x232800c,3, 0x2328020,1, 0x2328100,2, 0x2328110,3, 0x2328120,2, 0x2328140,10, 0x2328180,13, 0x2328200,2, 0x2328210,3, 0x2328220,2, 0x2328240,10, 0x2328280,13, 0x2328400,14, 0x2328440,3, 0x2328450,3, 0x2328460,1, 0x2328500,36, 0x2328600,10, 0x2328640,5, 0x2328660,5, 0x2328700,27, 0x2328780,7, 0x23287a0,8, 0x2328800,27, 0x2328880,7, 0x23288a0,8, 0x2328900,27, 0x2328980,7, 0x23289a0,8, 0x2328a00,27, 0x2328a80,7, 0x2328aa0,8, 0x2328b00,48, 0x2328bc4,8, 0x2328bf0,30, 0x2328c80,4, 0x2328cc0,25, 0x2328d40,6, 0x2328d60,1, 0x2328d68,2, 0x2328d74,3, 0x2328e00,8, 0x2328e24,28, 0x2329000,4, 0x2329080,23, 0x2329100,14, 0x2329140,9, 0x2329200,10, 0x2329230,3, 0x2329240,5, 0x2329260,5, 0x2329280,9, 0x2329400,67, 0x2329600,10, 0x2330000,12, 0x2330040,2, 0x2330050,3, 0x2332000,1006, 0x2333000,31, 0x2333084,6, 0x2334004,1, 0x233400c,3, 0x2334200,23, 0x2334280,23, 0x2334300,1, 0x2334400,1, 0x2334800,122, 0x2334a00,122, 0x2334c04,63, 0x2334d04,1, 0x2334d10,5, 0x2334d40,6, 0x2334d60,5, 0x2336000,1, 0x2336100,1, 0x2336108,3, 0x2336120,2, 0x2336134,8, 0x2336160,2, 0x2336174,8, 0x23361a0,4, 0x2336200,54, 0x2336800,5, 0x2336820,2, 0x2336834,1, 0x233683c,1, 0x2336a00,24, 0x2336a80,24, 0x2336b00,1, 0x2336c00,6, 0x2336c24,5, 0x2336c40,16, 0x2337000,1, 0x2337020,5, 0x2337040,1, 0x2337048,2, 0x2337080,1, 0x2337100,4, 0x2337180,24, 0x2337200,4, 0x2337280,27, 0x2337300,2, 0x233730c,3, 0x2338004,1, 0x233800c,3, 0x2338020,1, 0x2338100,2, 0x2338110,3, 0x2338120,2, 0x2338140,10, 0x2338180,13, 0x2338200,2, 0x2338210,3, 0x2338220,2, 0x2338240,10, 0x2338280,13, 0x2338400,14, 0x2338440,3, 0x2338450,3, 0x2338460,1, 0x2338500,36, 0x2338600,10, 0x2338640,5, 0x2338660,5, 0x2338700,27, 0x2338780,7, 0x23387a0,8, 0x2338800,27, 0x2338880,7, 0x23388a0,8, 0x2338900,27, 0x2338980,7, 0x23389a0,8, 0x2338a00,27, 0x2338a80,7, 0x2338aa0,8, 0x2338b00,48, 0x2338bc4,8, 0x2338bf0,30, 0x2338c80,4, 0x2338cc0,25, 0x2338d40,6, 0x2338d60,1, 0x2338d68,2, 0x2338d74,3, 0x2338e00,8, 0x2338e24,28, 0x2339000,4, 0x2339080,23, 0x2339100,14, 0x2339140,9, 0x2339200,10, 0x2339230,3, 0x2339240,5, 0x2339260,5, 0x2339280,9, 0x2339400,67, 0x2339600,10, 0x2400000,1, 0x2400020,3, 0x2400030,2, 0x2400040,3, 0x2400050,2, 0x2400800,53, 0x2400900,3, 0x2400910,13, 0x2400a00,53, 0x2400b00,3, 0x2400b10,13, 0x2400c00,5, 0x2400c20,5, 0x2400c40,18, 0x2401000,6, 0x2401020,4, 0x2401040,16, 0x2402000,20, 0x2402080,15, 0x2402100,20, 0x2402180,15, 0x2402200,23, 0x2402260,7, 0x2402400,11, 0x2402430,3, 0x2402440,3, 0x2402450,3, 0x2402460,24, 0x2402500,11, 0x2402530,3, 0x2402540,3, 0x2402550,3, 0x2402560,24, 0x2402600,11, 0x2402630,3, 0x2402640,3, 0x2402650,3, 0x2402660,24, 0x2402700,11, 0x2402730,3, 0x2402740,3, 0x2402750,3, 0x2402760,24, 0x2402800,4, 0x2402820,16, 0x2402880,10, 0x24028c0,10, 0x2402900,6, 0x2402920,6, 0x2402940,4, 0x2402980,13, 0x24029c0,13, 0x2402a00,9, 0x2403000,14, 0x2403040,9, 0x2403080,6, 0x24030a0,1, 0x24030a8,4, 0x2403100,4, 0x2403200,124, 0x2403400,124, 0x2403600,8, 0x2403624,1, 0x2403644,6, 0x2403664,6, 0x2403680,1, 0x2403688,6, 0x24036a8,22, 0x2404000,1, 0x2404020,3, 0x2404030,2, 0x2404040,3, 0x2404050,2, 0x2404800,53, 0x2404900,3, 0x2404910,13, 0x2404a00,53, 0x2404b00,3, 0x2404b10,13, 0x2404c00,5, 0x2404c20,5, 0x2404c40,18, 0x2405000,6, 0x2405020,4, 0x2405040,16, 0x2406000,20, 0x2406080,15, 0x2406100,20, 0x2406180,15, 0x2406200,23, 0x2406260,7, 0x2406400,11, 0x2406430,3, 0x2406440,3, 0x2406450,3, 0x2406460,24, 0x2406500,11, 0x2406530,3, 0x2406540,3, 0x2406550,3, 0x2406560,24, 0x2406600,11, 0x2406630,3, 0x2406640,3, 0x2406650,3, 0x2406660,24, 0x2406700,11, 0x2406730,3, 0x2406740,3, 0x2406750,3, 0x2406760,24, 0x2406800,4, 0x2406820,16, 0x2406880,10, 0x24068c0,10, 0x2406900,6, 0x2406920,6, 0x2406940,4, 0x2406980,13, 0x24069c0,13, 0x2406a00,9, 0x2407000,14, 0x2407040,9, 0x2407080,6, 0x24070a0,1, 0x24070a8,4, 0x2407100,4, 0x2407200,124, 0x2407400,124, 0x2407600,8, 0x2407624,1, 0x2407644,6, 0x2407664,6, 0x2407680,1, 0x2407688,6, 0x24076a8,22, 0x2408000,84, 0x2408180,20, 0x2408200,5, 0x2408400,11, 0x2408440,11, 0x2408480,19, 0x2408500,19, 0x2408580,24, 0x2408600,13, 0x2408800,84, 0x2408980,20, 0x2408a00,5, 0x2408c00,11, 0x2408c40,11, 0x2408c80,19, 0x2408d00,19, 0x2408d80,24, 0x2408e00,13, 0x2409000,10, 0x2409040,5, 0x2409080,10, 0x24090c0,5, 0x2409100,5, 0x2409200,11, 0x2409230,3, 0x2409240,5, 0x2409260,5, 0x2409280,32, 0x2409400,13, 0x2409440,13, 0x2409480,9, 0x24094c0,1, 0x24094d0,5, 0x24094f0,21, 0x2409800,10, 0x2409840,5, 0x2409880,10, 0x24098c0,5, 0x2409900,5, 0x2409a00,11, 0x2409a30,3, 0x2409a40,5, 0x2409a60,5, 0x2409a80,32, 0x2409c00,13, 0x2409c40,13, 0x2409c80,9, 0x2409cc0,1, 0x2409cd0,5, 0x2409cf0,21, 0x240a000,14, 0x240a040,9, 0x240a080,6, 0x240a0a0,1, 0x240a0a8,4, 0x240a100,7, 0x240a120,3, 0x240a130,25, 0x240c000,26, 0x240c06c,2, 0x240c080,3, 0x240c090,17, 0x240c100,26, 0x240c16c,2, 0x240c180,3, 0x240c190,17, 0x240c200,26, 0x240c26c,2, 0x240c280,3, 0x240c290,17, 0x240c300,26, 0x240c36c,2, 0x240c380,3, 0x240c390,17, 0x240c400,26, 0x240c46c,2, 0x240c480,3, 0x240c490,17, 0x240c500,26, 0x240c56c,2, 0x240c580,3, 0x240c590,17, 0x240c600,26, 0x240c66c,2, 0x240c680,3, 0x240c690,17, 0x240c700,26, 0x240c76c,2, 0x240c780,3, 0x240c790,17, 0x240c800,12, 0x240c844,1, 0x240c854,8, 0x240c880,7, 0x240c8a0,2, 0x240c8ac,2, 0x240c8c0,26, 0x240c980,4, 0x240c9a0,5, 0x240c9c0,1, 0x240d000,3, 0x240d010,3, 0x240d020,3, 0x240d030,3, 0x240d040,3, 0x240d050,3, 0x240d060,3, 0x240d070,3, 0x240d080,5, 0x240d0a0,5, 0x240d0c0,5, 0x240d0e0,5, 0x240d100,5, 0x240d120,5, 0x240d140,5, 0x240d160,5, 0x240d200,68, 0x240d400,1, 0x240d804,1, 0x240d844,54, 0x240da00,11, 0x240da40,11, 0x240da80,11, 0x240dac0,11, 0x240db00,11, 0x240db40,11, 0x240db80,11, 0x240dbc0,11, 0x240dc00,28, 0x240dc80,5, 0x240dca0,2, 0x240e000,4, 0x240e020,6, 0x240e040,6, 0x240e060,14, 0x240e100,26, 0x240e180,15, 0x240e200,14, 0x240e240,9, 0x240e280,6, 0x240e2a0,1, 0x240e2a8,4, 0x240e300,14, 0x240e340,9, 0x240e380,6, 0x240e3a0,4, 0x240e400,9, 0x2420000,1, 0x2421000,977, 0x2422000,161, 0x2423000,977, 0x2424000,977, 0x2425000,977, 0x2426000,977, 0x2427000,977, 0x2428000,977, 0x2429000,977, 0x242a000,977, 0x242b000,161, 0x242c000,12, 0x242c040,14, 0x242c080,20, 0x242c104,1, 0x242c10c,4, 0x242c200,12, 0x242c240,14, 0x242c280,20, 0x242c304,1, 0x242c30c,4, 0x242c400,12, 0x242c440,14, 0x242c480,20, 0x242c504,1, 0x242c50c,4, 0x242c600,12, 0x242c640,14, 0x242c680,20, 0x242c704,1, 0x242c70c,4, 0x242c800,12, 0x242c840,14, 0x242c880,20, 0x242c904,1, 0x242c90c,4, 0x242ca00,12, 0x242ca40,14, 0x242ca80,20, 0x242cb04,1, 0x242cb0c,4, 0x242cc00,12, 0x242cc40,14, 0x242cc80,20, 0x242cd04,1, 0x242cd0c,4, 0x242ce00,12, 0x242ce40,14, 0x242ce80,20, 0x242cf04,1, 0x242cf0c,4, 0x242d000,12, 0x242d040,14, 0x242d080,20, 0x242d104,1, 0x242d10c,4, 0x242d200,17, 0x242d250,2, 0x242d260,4, 0x242e000,1, 0x242e014,1, 0x242e01c,11, 0x242e060,9, 0x242e094,1, 0x242e09c,11, 0x242e0e0,15, 0x242e200,12, 0x242e240,13, 0x242e280,3, 0x242e290,1, 0x2480000,500, 0x2480800,2, 0x2480820,15, 0x2481000,500, 0x2481800,8, 0x2481824,6, 0x2481840,8, 0x2481880,7, 0x24818a0,7, 0x24818c0,7, 0x24818e0,7, 0x2481900,8, 0x2481924,16, 0x2481980,12, 0x2482000,500, 0x2482800,2, 0x2482820,15, 0x2483000,500, 0x2483800,8, 0x2483824,6, 0x2483840,8, 0x2483880,7, 0x24838a0,7, 0x24838c0,7, 0x24838e0,7, 0x2483900,8, 0x2483924,16, 0x2483980,12, 0x2484004,5, 0x2484200,26, 0x2484280,4, 0x24842c0,25, 0x2484340,6, 0x2484360,1, 0x2484368,2, 0x2484374,11, 0x24843a4,10, 0x2484400,1, 0x2488000,52, 0x2488400,82, 0x2488560,6, 0x2488600,41, 0x2488700,2, 0x2488720,19, 0x2488800,25, 0x2488880,1, 0x2488900,28, 0x2488980,1, 0x2489000,52, 0x2489400,82, 0x2489560,6, 0x2489600,41, 0x2489700,2, 0x2489720,19, 0x2489800,25, 0x2489880,1, 0x2489900,28, 0x2489980,1, 0x248a000,7, 0x248a080,6, 0x248a0a0,6, 0x248a0c0,1, 0x248a100,4, 0x248a120,9, 0x248c000,3, 0x248c010,6, 0x248c200,7, 0x248c220,6, 0x248c240,7, 0x248c260,6, 0x248c280,2, 0x248c28c,2, 0x248c2a0,2, 0x248c2ac,2, 0x248c2c0,7, 0x248c2e0,7, 0x248c300,2, 0x248c30c,2, 0x248c320,6, 0x248c400,3, 0x248c440,12, 0x248c800,7, 0x248c820,14, 0x248c880,16, 0x248c900,7, 0x248c920,14, 0x248c980,16, 0x248ca00,6, 0x248ca20,7, 0x248cc00,3, 0x24a0000,3, 0x24a0800,7, 0x24a0820,6, 0x24a0840,6, 0x24a0880,1, 0x24a0894,1, 0x24a089c,2, 0x24a08c0,9, 0x24a0900,18, 0x24a0a00,36, 0x24a0b00,22, 0x24a0b80,18, 0x24a0c00,3, 0x24a0c10,3, 0x24a1000,3, 0x24a1010,2, 0x24a1080,20, 0x24a1100,1, 0x24a1200,26, 0x24a1280,4, 0x24a12c0,25, 0x24a1340,6, 0x24a1360,1, 0x24a1368,2, 0x24a1374,11, 0x24a13a4,4, 0x24a1400,1, 0x24b0000,11, 0x24b0030,19, 0x24b0080,17, 0x24b0100,11, 0x24b0130,19, 0x24b0180,17, 0x24b0200,3, 0x24b0214,1, 0x24b021c,1, 0x24b0280,3, 0x24b0294,1, 0x24b029c,1, 0x24b0300,18, 0x24b0380,18, 0x24b0400,18, 0x24b0480,18, 0x24b0500,18, 0x24b0580,18, 0x24b0600,18, 0x24b0680,18, 0x24b0700,13, 0x24b0738,6, 0x24b0780,13, 0x24b07b8,6, 0x24b0800,1, 0x24b0808,22, 0x24b0880,1, 0x24b0894,13, 0x24b0900,3, 0x24b0910,3, 0x24b0920,3, 0x24b0940,3, 0x24b0954,1, 0x24b095c,1, 0x24b0a00,52, 0x24b0c00,4, 0x24b0d00,34, 0x24b0e00,4, 0x24b0e80,30, 0x24b0f00,1, 0x24b0f40,5, 0x24b0f60,5, 0x24b0f80,6, 0x24b1000,14, 0x24b1040,4, 0x24b1060,17, 0x24b10c0,6, 0x24b10e0,1, 0x24b10e8,2, 0x24b10f4,11, 0x24b1124,17, 0x24b1200,3, 0x24b1210,3, 0x24b1220,3, 0x24b1230,3, 0x24b1240,3, 0x24b1250,3, 0x24b2000,20, 0x24b2080,3, 0x24b2090,1, 0x24b2098,2, 0x24c0000,500, 0x24c0800,2, 0x24c0820,15, 0x24c1000,500, 0x24c1800,8, 0x24c1824,6, 0x24c1840,8, 0x24c1880,7, 0x24c18a0,7, 0x24c18c0,7, 0x24c18e0,7, 0x24c1900,8, 0x24c1924,16, 0x24c1980,12, 0x24c2000,500, 0x24c2800,2, 0x24c2820,15, 0x24c3000,500, 0x24c3800,8, 0x24c3824,6, 0x24c3840,8, 0x24c3880,7, 0x24c38a0,7, 0x24c38c0,7, 0x24c38e0,7, 0x24c3900,8, 0x24c3924,16, 0x24c3980,12, 0x24c4004,5, 0x24c4200,26, 0x24c4280,4, 0x24c42c0,25, 0x24c4340,6, 0x24c4360,1, 0x24c4368,2, 0x24c4374,11, 0x24c43a4,10, 0x24c4400,1, 0x24c8000,52, 0x24c8400,82, 0x24c8560,6, 0x24c8600,41, 0x24c8700,2, 0x24c8720,19, 0x24c8800,25, 0x24c8880,1, 0x24c8900,28, 0x24c8980,1, 0x24c9000,52, 0x24c9400,82, 0x24c9560,6, 0x24c9600,41, 0x24c9700,2, 0x24c9720,19, 0x24c9800,25, 0x24c9880,1, 0x24c9900,28, 0x24c9980,1, 0x24ca000,7, 0x24ca080,6, 0x24ca0a0,6, 0x24ca0c0,1, 0x24ca100,4, 0x24ca120,9, 0x24cc000,3, 0x24cc010,6, 0x24cc200,7, 0x24cc220,6, 0x24cc240,7, 0x24cc260,6, 0x24cc280,2, 0x24cc28c,2, 0x24cc2a0,2, 0x24cc2ac,2, 0x24cc2c0,7, 0x24cc2e0,7, 0x24cc300,2, 0x24cc30c,2, 0x24cc320,6, 0x24cc400,3, 0x24cc440,12, 0x24cc800,7, 0x24cc820,14, 0x24cc880,16, 0x24cc900,7, 0x24cc920,14, 0x24cc980,16, 0x24cca00,6, 0x24cca20,7, 0x24ccc00,3, 0x24e0000,3, 0x24e0800,7, 0x24e0820,6, 0x24e0840,6, 0x24e0880,1, 0x24e0894,1, 0x24e089c,2, 0x24e08c0,9, 0x24e0900,18, 0x24e0a00,36, 0x24e0b00,22, 0x24e0b80,18, 0x24e0c00,3, 0x24e0c10,3, 0x24e1000,3, 0x24e1010,2, 0x24e1080,20, 0x24e1100,1, 0x24e1200,26, 0x24e1280,4, 0x24e12c0,25, 0x24e1340,6, 0x24e1360,1, 0x24e1368,2, 0x24e1374,11, 0x24e13a4,4, 0x24e1400,1, 0x24f0000,11, 0x24f0030,19, 0x24f0080,17, 0x24f0100,11, 0x24f0130,19, 0x24f0180,17, 0x24f0200,3, 0x24f0214,1, 0x24f021c,1, 0x24f0280,3, 0x24f0294,1, 0x24f029c,1, 0x24f0300,18, 0x24f0380,18, 0x24f0400,18, 0x24f0480,18, 0x24f0500,18, 0x24f0580,18, 0x24f0600,18, 0x24f0680,18, 0x24f0700,13, 0x24f0738,6, 0x24f0780,13, 0x24f07b8,6, 0x24f0800,1, 0x24f0808,22, 0x24f0880,1, 0x24f0894,13, 0x24f0900,3, 0x24f0910,3, 0x24f0920,3, 0x24f0940,3, 0x24f0954,1, 0x24f095c,1, 0x24f0a00,52, 0x24f0c00,4, 0x24f0d00,34, 0x24f0e00,4, 0x24f0e80,30, 0x24f0f00,1, 0x24f0f40,5, 0x24f0f60,5, 0x24f0f80,6, 0x24f1000,14, 0x24f1040,4, 0x24f1060,17, 0x24f10c0,6, 0x24f10e0,1, 0x24f10e8,2, 0x24f10f4,11, 0x24f1124,17, 0x24f1200,3, 0x24f1210,3, 0x24f1220,3, 0x24f1230,3, 0x24f1240,3, 0x24f1250,3, 0x24f2000,20, 0x24f2080,3, 0x24f2090,1, 0x24f2098,2, 0x2500000,13, 0x2500038,4, 0x2500050,3, 0x2500060,3, 0x2500070,16, 0x25000c0,5, 0x2500400,14, 0x2500440,2, 0x250044c,3, 0x2500480,14, 0x25004c0,2, 0x25004cc,3, 0x2500500,1, 0x2500508,15, 0x2500560,2, 0x250056c,2, 0x2500600,4, 0x2500680,27, 0x2500800,2, 0x2500900,32, 0x2500984,2, 0x2500990,4, 0x2500a00,26, 0x2500a80,4, 0x2500ac0,25, 0x2500b40,6, 0x2500b60,1, 0x2500b68,2, 0x2500b74,11, 0x2500ba4,8, 0x2500c00,9, 0x2500c40,11, 0x2500c80,23, 0x2500ce0,15, 0x2500d20,15, 0x2500d60,1, 0x2501000,13, 0x2501038,4, 0x2501050,3, 0x2501060,3, 0x2501070,16, 0x25010c0,5, 0x2501400,14, 0x2501440,2, 0x250144c,3, 0x2501480,14, 0x25014c0,2, 0x25014cc,3, 0x2501500,1, 0x2501508,15, 0x2501560,2, 0x250156c,2, 0x2501600,4, 0x2501680,27, 0x2501800,2, 0x2501900,32, 0x2501984,2, 0x2501990,4, 0x2501a00,26, 0x2501a80,4, 0x2501ac0,25, 0x2501b40,6, 0x2501b60,1, 0x2501b68,2, 0x2501b74,11, 0x2501ba4,8, 0x2501c00,9, 0x2501c40,11, 0x2501c80,23, 0x2501ce0,15, 0x2501d20,15, 0x2501d60,1, 0x2502000,1, 0x2502100,36, 0x2502200,7, 0x2510000,22, 0x2510080,22, 0x2510100,12, 0x2510140,12, 0x2510200,52, 0x2510300,52, 0x2510400,11, 0x2510440,11, 0x2510480,3, 0x25104a0,6, 0x25104c0,6, 0x25104e0,3, 0x25104f0,3, 0x2510800,9, 0x2510840,15, 0x2510880,15, 0x25108c0,15, 0x2510900,1, 0x2510914,13, 0x2510980,17, 0x2511000,17, 0x2511080,17, 0x2511104,5, 0x2511120,3, 0x2511130,11, 0x2511200,31, 0x2511280,31, 0x2511300,12, 0x2511340,12, 0x2511380,2, 0x2511390,2, 0x25113a0,3, 0x25113b0,3, 0x25113c0,5, 0x25113e0,5, 0x2511400,3, 0x2511410,3, 0x2511420,3, 0x2511430,3, 0x2511440,3, 0x2511450,3, 0x2511460,7, 0x2511800,26, 0x2511880,4, 0x25118c0,25, 0x2511940,6, 0x2511960,1, 0x2511968,2, 0x2511974,11, 0x25119a4,12, 0x2511a00,4, 0x2511b00,43, 0x2511c00,4, 0x2511c20,7, 0x2511c40,3, 0x2511c50,1, 0x2511c60,3, 0x2511e00,32, 0x2511e84,1, 0x2511e90,4, 0x2511ea4,1, 0x2511eb4,14, 0x2511ef0,2, 0x2511f04,1, 0x2511f10,8, 0x2511f34,6, 0x2512000,3, 0x2512010,21, 0x2512080,1, 0x2512094,1, 0x251209c,5, 0x2512100,15, 0x2512140,1, 0x2512180,6, 0x2514000,22, 0x2514080,22, 0x2514100,12, 0x2514140,12, 0x2514200,52, 0x2514300,52, 0x2514400,11, 0x2514440,11, 0x2514480,3, 0x25144a0,6, 0x25144c0,6, 0x25144e0,3, 0x25144f0,3, 0x2514800,9, 0x2514840,15, 0x2514880,15, 0x25148c0,15, 0x2514900,1, 0x2514914,13, 0x2514980,17, 0x2515000,17, 0x2515080,17, 0x2515104,5, 0x2515120,3, 0x2515130,11, 0x2515200,31, 0x2515280,31, 0x2515300,12, 0x2515340,12, 0x2515380,2, 0x2515390,2, 0x25153a0,3, 0x25153b0,3, 0x25153c0,5, 0x25153e0,5, 0x2515400,3, 0x2515410,3, 0x2515420,3, 0x2515430,3, 0x2515440,3, 0x2515450,3, 0x2515460,7, 0x2515800,26, 0x2515880,4, 0x25158c0,25, 0x2515940,6, 0x2515960,1, 0x2515968,2, 0x2515974,11, 0x25159a4,12, 0x2515a00,4, 0x2515b00,43, 0x2515c00,4, 0x2515c20,7, 0x2515c40,3, 0x2515c50,1, 0x2515c60,3, 0x2515e00,32, 0x2515e84,1, 0x2515e90,4, 0x2515ea4,1, 0x2515eb4,14, 0x2515ef0,2, 0x2515f04,1, 0x2515f10,8, 0x2515f34,6, 0x2516000,3, 0x2516010,21, 0x2516080,1, 0x2516094,1, 0x251609c,5, 0x2516100,15, 0x2516140,1, 0x2516180,6, 0x2518000,100, 0x2518200,3, 0x2518210,5, 0x2520000,12, 0x2520040,2, 0x2520050,3, 0x2522000,1006, 0x2523000,31, 0x2523084,6, 0x2524004,1, 0x252400c,3, 0x2524200,23, 0x2524280,23, 0x2524300,1, 0x2524400,1, 0x2524800,122, 0x2524a00,122, 0x2524c04,63, 0x2524d04,1, 0x2524d10,5, 0x2524d40,6, 0x2524d60,5, 0x2526000,1, 0x2526100,1, 0x2526108,3, 0x2526120,2, 0x2526134,8, 0x2526160,2, 0x2526174,8, 0x25261a0,4, 0x2526200,54, 0x2526800,5, 0x2526820,2, 0x2526834,1, 0x252683c,1, 0x2526a00,24, 0x2526a80,24, 0x2526b00,1, 0x2526c00,6, 0x2526c24,5, 0x2526c40,16, 0x2527000,1, 0x2527020,5, 0x2527040,1, 0x2527048,2, 0x2527080,1, 0x2527100,4, 0x2527180,24, 0x2527200,4, 0x2527280,27, 0x2527300,2, 0x252730c,3, 0x2528004,1, 0x252800c,3, 0x2528020,1, 0x2528100,2, 0x2528110,3, 0x2528120,2, 0x2528140,10, 0x2528180,13, 0x2528200,2, 0x2528210,3, 0x2528220,2, 0x2528240,10, 0x2528280,13, 0x2528400,14, 0x2528440,3, 0x2528450,3, 0x2528460,1, 0x2528500,36, 0x2528600,10, 0x2528640,5, 0x2528660,5, 0x2528700,27, 0x2528780,7, 0x25287a0,8, 0x2528800,27, 0x2528880,7, 0x25288a0,8, 0x2528900,27, 0x2528980,7, 0x25289a0,8, 0x2528a00,27, 0x2528a80,7, 0x2528aa0,8, 0x2528b00,48, 0x2528bc4,8, 0x2528bf0,30, 0x2528c80,4, 0x2528cc0,25, 0x2528d40,6, 0x2528d60,1, 0x2528d68,2, 0x2528d74,3, 0x2528e00,8, 0x2528e24,28, 0x2529000,4, 0x2529080,23, 0x2529100,14, 0x2529140,9, 0x2529200,10, 0x2529230,3, 0x2529240,5, 0x2529260,5, 0x2529280,9, 0x2529400,67, 0x2529600,10, 0x2530000,12, 0x2530040,2, 0x2530050,3, 0x2532000,1006, 0x2533000,31, 0x2533084,6, 0x2534004,1, 0x253400c,3, 0x2534200,23, 0x2534280,23, 0x2534300,1, 0x2534400,1, 0x2534800,122, 0x2534a00,122, 0x2534c04,63, 0x2534d04,1, 0x2534d10,5, 0x2534d40,6, 0x2534d60,5, 0x2536000,1, 0x2536100,1, 0x2536108,3, 0x2536120,2, 0x2536134,8, 0x2536160,2, 0x2536174,8, 0x25361a0,4, 0x2536200,54, 0x2536800,5, 0x2536820,2, 0x2536834,1, 0x253683c,1, 0x2536a00,24, 0x2536a80,24, 0x2536b00,1, 0x2536c00,6, 0x2536c24,5, 0x2536c40,16, 0x2537000,1, 0x2537020,5, 0x2537040,1, 0x2537048,2, 0x2537080,1, 0x2537100,4, 0x2537180,24, 0x2537200,4, 0x2537280,27, 0x2537300,2, 0x253730c,3, 0x2538004,1, 0x253800c,3, 0x2538020,1, 0x2538100,2, 0x2538110,3, 0x2538120,2, 0x2538140,10, 0x2538180,13, 0x2538200,2, 0x2538210,3, 0x2538220,2, 0x2538240,10, 0x2538280,13, 0x2538400,14, 0x2538440,3, 0x2538450,3, 0x2538460,1, 0x2538500,36, 0x2538600,10, 0x2538640,5, 0x2538660,5, 0x2538700,27, 0x2538780,7, 0x25387a0,8, 0x2538800,27, 0x2538880,7, 0x25388a0,8, 0x2538900,27, 0x2538980,7, 0x25389a0,8, 0x2538a00,27, 0x2538a80,7, 0x2538aa0,8, 0x2538b00,48, 0x2538bc4,8, 0x2538bf0,30, 0x2538c80,4, 0x2538cc0,25, 0x2538d40,6, 0x2538d60,1, 0x2538d68,2, 0x2538d74,3, 0x2538e00,8, 0x2538e24,28, 0x2539000,4, 0x2539080,23, 0x2539100,14, 0x2539140,9, 0x2539200,10, 0x2539230,3, 0x2539240,5, 0x2539260,5, 0x2539280,9, 0x2539400,67, 0x2539600,10, 0x2600000,1, 0x2600020,3, 0x2600030,2, 0x2600040,3, 0x2600050,2, 0x2600800,53, 0x2600900,3, 0x2600910,13, 0x2600a00,53, 0x2600b00,3, 0x2600b10,13, 0x2600c00,5, 0x2600c20,5, 0x2600c40,18, 0x2601000,6, 0x2601020,4, 0x2601040,16, 0x2602000,20, 0x2602080,15, 0x2602100,20, 0x2602180,15, 0x2602200,23, 0x2602260,7, 0x2602400,11, 0x2602430,3, 0x2602440,3, 0x2602450,3, 0x2602460,24, 0x2602500,11, 0x2602530,3, 0x2602540,3, 0x2602550,3, 0x2602560,24, 0x2602600,11, 0x2602630,3, 0x2602640,3, 0x2602650,3, 0x2602660,24, 0x2602700,11, 0x2602730,3, 0x2602740,3, 0x2602750,3, 0x2602760,24, 0x2602800,4, 0x2602820,16, 0x2602880,10, 0x26028c0,10, 0x2602900,6, 0x2602920,6, 0x2602940,4, 0x2602980,13, 0x26029c0,13, 0x2602a00,9, 0x2603000,14, 0x2603040,9, 0x2603080,6, 0x26030a0,1, 0x26030a8,4, 0x2603100,4, 0x2603200,124, 0x2603400,124, 0x2603600,8, 0x2603624,1, 0x2603644,6, 0x2603664,6, 0x2603680,1, 0x2603688,6, 0x26036a8,22, 0x2604000,1, 0x2604020,3, 0x2604030,2, 0x2604040,3, 0x2604050,2, 0x2604800,53, 0x2604900,3, 0x2604910,13, 0x2604a00,53, 0x2604b00,3, 0x2604b10,13, 0x2604c00,5, 0x2604c20,5, 0x2604c40,18, 0x2605000,6, 0x2605020,4, 0x2605040,16, 0x2606000,20, 0x2606080,15, 0x2606100,20, 0x2606180,15, 0x2606200,23, 0x2606260,7, 0x2606400,11, 0x2606430,3, 0x2606440,3, 0x2606450,3, 0x2606460,24, 0x2606500,11, 0x2606530,3, 0x2606540,3, 0x2606550,3, 0x2606560,24, 0x2606600,11, 0x2606630,3, 0x2606640,3, 0x2606650,3, 0x2606660,24, 0x2606700,11, 0x2606730,3, 0x2606740,3, 0x2606750,3, 0x2606760,24, 0x2606800,4, 0x2606820,16, 0x2606880,10, 0x26068c0,10, 0x2606900,6, 0x2606920,6, 0x2606940,4, 0x2606980,13, 0x26069c0,13, 0x2606a00,9, 0x2607000,14, 0x2607040,9, 0x2607080,6, 0x26070a0,1, 0x26070a8,4, 0x2607100,4, 0x2607200,124, 0x2607400,124, 0x2607600,8, 0x2607624,1, 0x2607644,6, 0x2607664,6, 0x2607680,1, 0x2607688,6, 0x26076a8,22, 0x2608000,84, 0x2608180,20, 0x2608200,5, 0x2608400,11, 0x2608440,11, 0x2608480,19, 0x2608500,19, 0x2608580,24, 0x2608600,13, 0x2608800,84, 0x2608980,20, 0x2608a00,5, 0x2608c00,11, 0x2608c40,11, 0x2608c80,19, 0x2608d00,19, 0x2608d80,24, 0x2608e00,13, 0x2609000,10, 0x2609040,5, 0x2609080,10, 0x26090c0,5, 0x2609100,5, 0x2609200,11, 0x2609230,3, 0x2609240,5, 0x2609260,5, 0x2609280,32, 0x2609400,13, 0x2609440,13, 0x2609480,9, 0x26094c0,1, 0x26094d0,5, 0x26094f0,21, 0x2609800,10, 0x2609840,5, 0x2609880,10, 0x26098c0,5, 0x2609900,5, 0x2609a00,11, 0x2609a30,3, 0x2609a40,5, 0x2609a60,5, 0x2609a80,32, 0x2609c00,13, 0x2609c40,13, 0x2609c80,9, 0x2609cc0,1, 0x2609cd0,5, 0x2609cf0,21, 0x260a000,14, 0x260a040,9, 0x260a080,6, 0x260a0a0,1, 0x260a0a8,4, 0x260a100,7, 0x260a120,3, 0x260a130,25, 0x260c000,26, 0x260c06c,2, 0x260c080,3, 0x260c090,17, 0x260c100,26, 0x260c16c,2, 0x260c180,3, 0x260c190,17, 0x260c200,26, 0x260c26c,2, 0x260c280,3, 0x260c290,17, 0x260c300,26, 0x260c36c,2, 0x260c380,3, 0x260c390,17, 0x260c400,26, 0x260c46c,2, 0x260c480,3, 0x260c490,17, 0x260c500,26, 0x260c56c,2, 0x260c580,3, 0x260c590,17, 0x260c600,26, 0x260c66c,2, 0x260c680,3, 0x260c690,17, 0x260c700,26, 0x260c76c,2, 0x260c780,3, 0x260c790,17, 0x260c800,12, 0x260c844,1, 0x260c854,8, 0x260c880,7, 0x260c8a0,2, 0x260c8ac,2, 0x260c8c0,26, 0x260c980,4, 0x260c9a0,5, 0x260c9c0,1, 0x260d000,3, 0x260d010,3, 0x260d020,3, 0x260d030,3, 0x260d040,3, 0x260d050,3, 0x260d060,3, 0x260d070,3, 0x260d080,5, 0x260d0a0,5, 0x260d0c0,5, 0x260d0e0,5, 0x260d100,5, 0x260d120,5, 0x260d140,5, 0x260d160,5, 0x260d200,68, 0x260d400,1, 0x260d804,1, 0x260d844,54, 0x260da00,11, 0x260da40,11, 0x260da80,11, 0x260dac0,11, 0x260db00,11, 0x260db40,11, 0x260db80,11, 0x260dbc0,11, 0x260dc00,28, 0x260dc80,5, 0x260dca0,2, 0x260e000,4, 0x260e020,6, 0x260e040,6, 0x260e060,14, 0x260e100,26, 0x260e180,15, 0x260e200,14, 0x260e240,9, 0x260e280,6, 0x260e2a0,1, 0x260e2a8,4, 0x260e300,14, 0x260e340,9, 0x260e380,6, 0x260e3a0,4, 0x260e400,9, 0x2620000,1, 0x2621000,977, 0x2622000,161, 0x2623000,977, 0x2624000,977, 0x2625000,977, 0x2626000,977, 0x2627000,977, 0x2628000,977, 0x2629000,977, 0x262a000,977, 0x262b000,161, 0x262c000,12, 0x262c040,14, 0x262c080,20, 0x262c104,1, 0x262c10c,4, 0x262c200,12, 0x262c240,14, 0x262c280,20, 0x262c304,1, 0x262c30c,4, 0x262c400,12, 0x262c440,14, 0x262c480,20, 0x262c504,1, 0x262c50c,4, 0x262c600,12, 0x262c640,14, 0x262c680,20, 0x262c704,1, 0x262c70c,4, 0x262c800,12, 0x262c840,14, 0x262c880,20, 0x262c904,1, 0x262c90c,4, 0x262ca00,12, 0x262ca40,14, 0x262ca80,20, 0x262cb04,1, 0x262cb0c,4, 0x262cc00,12, 0x262cc40,14, 0x262cc80,20, 0x262cd04,1, 0x262cd0c,4, 0x262ce00,12, 0x262ce40,14, 0x262ce80,20, 0x262cf04,1, 0x262cf0c,4, 0x262d000,12, 0x262d040,14, 0x262d080,20, 0x262d104,1, 0x262d10c,4, 0x262d200,17, 0x262d250,2, 0x262d260,4, 0x262e000,1, 0x262e014,1, 0x262e01c,11, 0x262e060,9, 0x262e094,1, 0x262e09c,11, 0x262e0e0,15, 0x262e200,12, 0x262e240,13, 0x262e280,3, 0x262e290,1, 0x2680000,500, 0x2680800,2, 0x2680820,15, 0x2681000,500, 0x2681800,8, 0x2681824,6, 0x2681840,8, 0x2681880,7, 0x26818a0,7, 0x26818c0,7, 0x26818e0,7, 0x2681900,8, 0x2681924,16, 0x2681980,12, 0x2682000,500, 0x2682800,2, 0x2682820,15, 0x2683000,500, 0x2683800,8, 0x2683824,6, 0x2683840,8, 0x2683880,7, 0x26838a0,7, 0x26838c0,7, 0x26838e0,7, 0x2683900,8, 0x2683924,16, 0x2683980,12, 0x2684004,5, 0x2684200,26, 0x2684280,4, 0x26842c0,25, 0x2684340,6, 0x2684360,1, 0x2684368,2, 0x2684374,11, 0x26843a4,10, 0x2684400,1, 0x2688000,52, 0x2688400,82, 0x2688560,6, 0x2688600,41, 0x2688700,2, 0x2688720,19, 0x2688800,25, 0x2688880,1, 0x2688900,28, 0x2688980,1, 0x2689000,52, 0x2689400,82, 0x2689560,6, 0x2689600,41, 0x2689700,2, 0x2689720,19, 0x2689800,25, 0x2689880,1, 0x2689900,28, 0x2689980,1, 0x268a000,7, 0x268a080,6, 0x268a0a0,6, 0x268a0c0,1, 0x268a100,4, 0x268a120,9, 0x268c000,3, 0x268c010,6, 0x268c200,7, 0x268c220,6, 0x268c240,7, 0x268c260,6, 0x268c280,2, 0x268c28c,2, 0x268c2a0,2, 0x268c2ac,2, 0x268c2c0,7, 0x268c2e0,7, 0x268c300,2, 0x268c30c,2, 0x268c320,6, 0x268c400,3, 0x268c440,12, 0x268c800,7, 0x268c820,14, 0x268c880,16, 0x268c900,7, 0x268c920,14, 0x268c980,16, 0x268ca00,6, 0x268ca20,7, 0x268cc00,3, 0x26a0000,3, 0x26a0800,7, 0x26a0820,6, 0x26a0840,6, 0x26a0880,1, 0x26a0894,1, 0x26a089c,2, 0x26a08c0,9, 0x26a0900,18, 0x26a0a00,36, 0x26a0b00,22, 0x26a0b80,18, 0x26a0c00,3, 0x26a0c10,3, 0x26a1000,3, 0x26a1010,2, 0x26a1080,20, 0x26a1100,1, 0x26a1200,26, 0x26a1280,4, 0x26a12c0,25, 0x26a1340,6, 0x26a1360,1, 0x26a1368,2, 0x26a1374,11, 0x26a13a4,4, 0x26a1400,1, 0x26b0000,11, 0x26b0030,19, 0x26b0080,17, 0x26b0100,11, 0x26b0130,19, 0x26b0180,17, 0x26b0200,3, 0x26b0214,1, 0x26b021c,1, 0x26b0280,3, 0x26b0294,1, 0x26b029c,1, 0x26b0300,18, 0x26b0380,18, 0x26b0400,18, 0x26b0480,18, 0x26b0500,18, 0x26b0580,18, 0x26b0600,18, 0x26b0680,18, 0x26b0700,13, 0x26b0738,6, 0x26b0780,13, 0x26b07b8,6, 0x26b0800,1, 0x26b0808,22, 0x26b0880,1, 0x26b0894,13, 0x26b0900,3, 0x26b0910,3, 0x26b0920,3, 0x26b0940,3, 0x26b0954,1, 0x26b095c,1, 0x26b0a00,52, 0x26b0c00,4, 0x26b0d00,34, 0x26b0e00,4, 0x26b0e80,30, 0x26b0f00,1, 0x26b0f40,5, 0x26b0f60,5, 0x26b0f80,6, 0x26b1000,14, 0x26b1040,4, 0x26b1060,17, 0x26b10c0,6, 0x26b10e0,1, 0x26b10e8,2, 0x26b10f4,11, 0x26b1124,17, 0x26b1200,3, 0x26b1210,3, 0x26b1220,3, 0x26b1230,3, 0x26b1240,3, 0x26b1250,3, 0x26b2000,20, 0x26b2080,3, 0x26b2090,1, 0x26b2098,2, 0x26c0000,500, 0x26c0800,2, 0x26c0820,15, 0x26c1000,500, 0x26c1800,8, 0x26c1824,6, 0x26c1840,8, 0x26c1880,7, 0x26c18a0,7, 0x26c18c0,7, 0x26c18e0,7, 0x26c1900,8, 0x26c1924,16, 0x26c1980,12, 0x26c2000,500, 0x26c2800,2, 0x26c2820,15, 0x26c3000,500, 0x26c3800,8, 0x26c3824,6, 0x26c3840,8, 0x26c3880,7, 0x26c38a0,7, 0x26c38c0,7, 0x26c38e0,7, 0x26c3900,8, 0x26c3924,16, 0x26c3980,12, 0x26c4004,5, 0x26c4200,26, 0x26c4280,4, 0x26c42c0,25, 0x26c4340,6, 0x26c4360,1, 0x26c4368,2, 0x26c4374,11, 0x26c43a4,10, 0x26c4400,1, 0x26c8000,52, 0x26c8400,82, 0x26c8560,6, 0x26c8600,41, 0x26c8700,2, 0x26c8720,19, 0x26c8800,25, 0x26c8880,1, 0x26c8900,28, 0x26c8980,1, 0x26c9000,52, 0x26c9400,82, 0x26c9560,6, 0x26c9600,41, 0x26c9700,2, 0x26c9720,19, 0x26c9800,25, 0x26c9880,1, 0x26c9900,28, 0x26c9980,1, 0x26ca000,7, 0x26ca080,6, 0x26ca0a0,6, 0x26ca0c0,1, 0x26ca100,4, 0x26ca120,9, 0x26cc000,3, 0x26cc010,6, 0x26cc200,7, 0x26cc220,6, 0x26cc240,7, 0x26cc260,6, 0x26cc280,2, 0x26cc28c,2, 0x26cc2a0,2, 0x26cc2ac,2, 0x26cc2c0,7, 0x26cc2e0,7, 0x26cc300,2, 0x26cc30c,2, 0x26cc320,6, 0x26cc400,3, 0x26cc440,12, 0x26cc800,7, 0x26cc820,14, 0x26cc880,16, 0x26cc900,7, 0x26cc920,14, 0x26cc980,16, 0x26cca00,6, 0x26cca20,7, 0x26ccc00,3, 0x26e0000,3, 0x26e0800,7, 0x26e0820,6, 0x26e0840,6, 0x26e0880,1, 0x26e0894,1, 0x26e089c,2, 0x26e08c0,9, 0x26e0900,18, 0x26e0a00,36, 0x26e0b00,22, 0x26e0b80,18, 0x26e0c00,3, 0x26e0c10,3, 0x26e1000,3, 0x26e1010,2, 0x26e1080,20, 0x26e1100,1, 0x26e1200,26, 0x26e1280,4, 0x26e12c0,25, 0x26e1340,6, 0x26e1360,1, 0x26e1368,2, 0x26e1374,11, 0x26e13a4,4, 0x26e1400,1, 0x26f0000,11, 0x26f0030,19, 0x26f0080,17, 0x26f0100,11, 0x26f0130,19, 0x26f0180,17, 0x26f0200,3, 0x26f0214,1, 0x26f021c,1, 0x26f0280,3, 0x26f0294,1, 0x26f029c,1, 0x26f0300,18, 0x26f0380,18, 0x26f0400,18, 0x26f0480,18, 0x26f0500,18, 0x26f0580,18, 0x26f0600,18, 0x26f0680,18, 0x26f0700,13, 0x26f0738,6, 0x26f0780,13, 0x26f07b8,6, 0x26f0800,1, 0x26f0808,22, 0x26f0880,1, 0x26f0894,13, 0x26f0900,3, 0x26f0910,3, 0x26f0920,3, 0x26f0940,3, 0x26f0954,1, 0x26f095c,1, 0x26f0a00,52, 0x26f0c00,4, 0x26f0d00,34, 0x26f0e00,4, 0x26f0e80,30, 0x26f0f00,1, 0x26f0f40,5, 0x26f0f60,5, 0x26f0f80,6, 0x26f1000,14, 0x26f1040,4, 0x26f1060,17, 0x26f10c0,6, 0x26f10e0,1, 0x26f10e8,2, 0x26f10f4,11, 0x26f1124,17, 0x26f1200,3, 0x26f1210,3, 0x26f1220,3, 0x26f1230,3, 0x26f1240,3, 0x26f1250,3, 0x26f2000,20, 0x26f2080,3, 0x26f2090,1, 0x26f2098,2, 0x2700000,13, 0x2700038,4, 0x2700050,3, 0x2700060,3, 0x2700070,16, 0x27000c0,5, 0x2700400,14, 0x2700440,2, 0x270044c,3, 0x2700480,14, 0x27004c0,2, 0x27004cc,3, 0x2700500,1, 0x2700508,15, 0x2700560,2, 0x270056c,2, 0x2700600,4, 0x2700680,27, 0x2700800,2, 0x2700900,32, 0x2700984,2, 0x2700990,4, 0x2700a00,26, 0x2700a80,4, 0x2700ac0,25, 0x2700b40,6, 0x2700b60,1, 0x2700b68,2, 0x2700b74,11, 0x2700ba4,8, 0x2700c00,9, 0x2700c40,11, 0x2700c80,23, 0x2700ce0,15, 0x2700d20,15, 0x2700d60,1, 0x2701000,13, 0x2701038,4, 0x2701050,3, 0x2701060,3, 0x2701070,16, 0x27010c0,5, 0x2701400,14, 0x2701440,2, 0x270144c,3, 0x2701480,14, 0x27014c0,2, 0x27014cc,3, 0x2701500,1, 0x2701508,15, 0x2701560,2, 0x270156c,2, 0x2701600,4, 0x2701680,27, 0x2701800,2, 0x2701900,32, 0x2701984,2, 0x2701990,4, 0x2701a00,26, 0x2701a80,4, 0x2701ac0,25, 0x2701b40,6, 0x2701b60,1, 0x2701b68,2, 0x2701b74,11, 0x2701ba4,8, 0x2701c00,9, 0x2701c40,11, 0x2701c80,23, 0x2701ce0,15, 0x2701d20,15, 0x2701d60,1, 0x2702000,1, 0x2702100,36, 0x2702200,7, 0x2710000,22, 0x2710080,22, 0x2710100,12, 0x2710140,12, 0x2710200,52, 0x2710300,52, 0x2710400,11, 0x2710440,11, 0x2710480,3, 0x27104a0,6, 0x27104c0,6, 0x27104e0,3, 0x27104f0,3, 0x2710800,9, 0x2710840,15, 0x2710880,15, 0x27108c0,15, 0x2710900,1, 0x2710914,13, 0x2710980,17, 0x2711000,17, 0x2711080,17, 0x2711104,5, 0x2711120,3, 0x2711130,11, 0x2711200,31, 0x2711280,31, 0x2711300,12, 0x2711340,12, 0x2711380,2, 0x2711390,2, 0x27113a0,3, 0x27113b0,3, 0x27113c0,5, 0x27113e0,5, 0x2711400,3, 0x2711410,3, 0x2711420,3, 0x2711430,3, 0x2711440,3, 0x2711450,3, 0x2711460,7, 0x2711800,26, 0x2711880,4, 0x27118c0,25, 0x2711940,6, 0x2711960,1, 0x2711968,2, 0x2711974,11, 0x27119a4,12, 0x2711a00,4, 0x2711b00,43, 0x2711c00,4, 0x2711c20,7, 0x2711c40,3, 0x2711c50,1, 0x2711c60,3, 0x2711e00,32, 0x2711e84,1, 0x2711e90,4, 0x2711ea4,1, 0x2711eb4,14, 0x2711ef0,2, 0x2711f04,1, 0x2711f10,8, 0x2711f34,6, 0x2712000,3, 0x2712010,21, 0x2712080,1, 0x2712094,1, 0x271209c,5, 0x2712100,15, 0x2712140,1, 0x2712180,6, 0x2714000,22, 0x2714080,22, 0x2714100,12, 0x2714140,12, 0x2714200,52, 0x2714300,52, 0x2714400,11, 0x2714440,11, 0x2714480,3, 0x27144a0,6, 0x27144c0,6, 0x27144e0,3, 0x27144f0,3, 0x2714800,9, 0x2714840,15, 0x2714880,15, 0x27148c0,15, 0x2714900,1, 0x2714914,13, 0x2714980,17, 0x2715000,17, 0x2715080,17, 0x2715104,5, 0x2715120,3, 0x2715130,11, 0x2715200,31, 0x2715280,31, 0x2715300,12, 0x2715340,12, 0x2715380,2, 0x2715390,2, 0x27153a0,3, 0x27153b0,3, 0x27153c0,5, 0x27153e0,5, 0x2715400,3, 0x2715410,3, 0x2715420,3, 0x2715430,3, 0x2715440,3, 0x2715450,3, 0x2715460,7, 0x2715800,26, 0x2715880,4, 0x27158c0,25, 0x2715940,6, 0x2715960,1, 0x2715968,2, 0x2715974,11, 0x27159a4,12, 0x2715a00,4, 0x2715b00,43, 0x2715c00,4, 0x2715c20,7, 0x2715c40,3, 0x2715c50,1, 0x2715c60,3, 0x2715e00,32, 0x2715e84,1, 0x2715e90,4, 0x2715ea4,1, 0x2715eb4,14, 0x2715ef0,2, 0x2715f04,1, 0x2715f10,8, 0x2715f34,6, 0x2716000,3, 0x2716010,21, 0x2716080,1, 0x2716094,1, 0x271609c,5, 0x2716100,15, 0x2716140,1, 0x2716180,6, 0x2718000,100, 0x2718200,3, 0x2718210,5, 0x2720000,12, 0x2720040,2, 0x2720050,3, 0x2722000,1006, 0x2723000,31, 0x2723084,6, 0x2724004,1, 0x272400c,3, 0x2724200,23, 0x2724280,23, 0x2724300,1, 0x2724400,1, 0x2724800,122, 0x2724a00,122, 0x2724c04,63, 0x2724d04,1, 0x2724d10,5, 0x2724d40,6, 0x2724d60,5, 0x2726000,1, 0x2726100,1, 0x2726108,3, 0x2726120,2, 0x2726134,8, 0x2726160,2, 0x2726174,8, 0x27261a0,4, 0x2726200,54, 0x2726800,5, 0x2726820,2, 0x2726834,1, 0x272683c,1, 0x2726a00,24, 0x2726a80,24, 0x2726b00,1, 0x2726c00,6, 0x2726c24,5, 0x2726c40,16, 0x2727000,1, 0x2727020,5, 0x2727040,1, 0x2727048,2, 0x2727080,1, 0x2727100,4, 0x2727180,24, 0x2727200,4, 0x2727280,27, 0x2727300,2, 0x272730c,3, 0x2728004,1, 0x272800c,3, 0x2728020,1, 0x2728100,2, 0x2728110,3, 0x2728120,2, 0x2728140,10, 0x2728180,13, 0x2728200,2, 0x2728210,3, 0x2728220,2, 0x2728240,10, 0x2728280,13, 0x2728400,14, 0x2728440,3, 0x2728450,3, 0x2728460,1, 0x2728500,36, 0x2728600,10, 0x2728640,5, 0x2728660,5, 0x2728700,27, 0x2728780,7, 0x27287a0,8, 0x2728800,27, 0x2728880,7, 0x27288a0,8, 0x2728900,27, 0x2728980,7, 0x27289a0,8, 0x2728a00,27, 0x2728a80,7, 0x2728aa0,8, 0x2728b00,48, 0x2728bc4,8, 0x2728bf0,30, 0x2728c80,4, 0x2728cc0,25, 0x2728d40,6, 0x2728d60,1, 0x2728d68,2, 0x2728d74,3, 0x2728e00,8, 0x2728e24,28, 0x2729000,4, 0x2729080,23, 0x2729100,14, 0x2729140,9, 0x2729200,10, 0x2729230,3, 0x2729240,5, 0x2729260,5, 0x2729280,9, 0x2729400,67, 0x2729600,10, 0x2730000,12, 0x2730040,2, 0x2730050,3, 0x2732000,1006, 0x2733000,31, 0x2733084,6, 0x2734004,1, 0x273400c,3, 0x2734200,23, 0x2734280,23, 0x2734300,1, 0x2734400,1, 0x2734800,122, 0x2734a00,122, 0x2734c04,63, 0x2734d04,1, 0x2734d10,5, 0x2734d40,6, 0x2734d60,5, 0x2736000,1, 0x2736100,1, 0x2736108,3, 0x2736120,2, 0x2736134,8, 0x2736160,2, 0x2736174,8, 0x27361a0,4, 0x2736200,54, 0x2736800,5, 0x2736820,2, 0x2736834,1, 0x273683c,1, 0x2736a00,24, 0x2736a80,24, 0x2736b00,1, 0x2736c00,6, 0x2736c24,5, 0x2736c40,16, 0x2737000,1, 0x2737020,5, 0x2737040,1, 0x2737048,2, 0x2737080,1, 0x2737100,4, 0x2737180,24, 0x2737200,4, 0x2737280,27, 0x2737300,2, 0x273730c,3, 0x2738004,1, 0x273800c,3, 0x2738020,1, 0x2738100,2, 0x2738110,3, 0x2738120,2, 0x2738140,10, 0x2738180,13, 0x2738200,2, 0x2738210,3, 0x2738220,2, 0x2738240,10, 0x2738280,13, 0x2738400,14, 0x2738440,3, 0x2738450,3, 0x2738460,1, 0x2738500,36, 0x2738600,10, 0x2738640,5, 0x2738660,5, 0x2738700,27, 0x2738780,7, 0x27387a0,8, 0x2738800,27, 0x2738880,7, 0x27388a0,8, 0x2738900,27, 0x2738980,7, 0x27389a0,8, 0x2738a00,27, 0x2738a80,7, 0x2738aa0,8, 0x2738b00,48, 0x2738bc4,8, 0x2738bf0,30, 0x2738c80,4, 0x2738cc0,25, 0x2738d40,6, 0x2738d60,1, 0x2738d68,2, 0x2738d74,3, 0x2738e00,8, 0x2738e24,28, 0x2739000,4, 0x2739080,23, 0x2739100,14, 0x2739140,9, 0x2739200,10, 0x2739230,3, 0x2739240,5, 0x2739260,5, 0x2739280,9, 0x2739400,67, 0x2739600,10, 0x2800000,1, 0x2800020,3, 0x2800030,2, 0x2800040,3, 0x2800050,2, 0x2800800,53, 0x2800900,3, 0x2800910,13, 0x2800a00,53, 0x2800b00,3, 0x2800b10,13, 0x2800c00,5, 0x2800c20,5, 0x2800c40,18, 0x2801000,6, 0x2801020,4, 0x2801040,16, 0x2802000,20, 0x2802080,15, 0x2802100,20, 0x2802180,15, 0x2802200,23, 0x2802260,7, 0x2802400,11, 0x2802430,3, 0x2802440,3, 0x2802450,3, 0x2802460,24, 0x2802500,11, 0x2802530,3, 0x2802540,3, 0x2802550,3, 0x2802560,24, 0x2802600,11, 0x2802630,3, 0x2802640,3, 0x2802650,3, 0x2802660,24, 0x2802700,11, 0x2802730,3, 0x2802740,3, 0x2802750,3, 0x2802760,24, 0x2802800,4, 0x2802820,16, 0x2802880,10, 0x28028c0,10, 0x2802900,6, 0x2802920,6, 0x2802940,4, 0x2802980,13, 0x28029c0,13, 0x2802a00,9, 0x2803000,14, 0x2803040,9, 0x2803080,6, 0x28030a0,1, 0x28030a8,4, 0x2803100,4, 0x2803200,124, 0x2803400,124, 0x2803600,8, 0x2803624,1, 0x2803644,6, 0x2803664,6, 0x2803680,1, 0x2803688,6, 0x28036a8,22, 0x2804000,1, 0x2804020,3, 0x2804030,2, 0x2804040,3, 0x2804050,2, 0x2804800,53, 0x2804900,3, 0x2804910,13, 0x2804a00,53, 0x2804b00,3, 0x2804b10,13, 0x2804c00,5, 0x2804c20,5, 0x2804c40,18, 0x2805000,6, 0x2805020,4, 0x2805040,16, 0x2806000,20, 0x2806080,15, 0x2806100,20, 0x2806180,15, 0x2806200,23, 0x2806260,7, 0x2806400,11, 0x2806430,3, 0x2806440,3, 0x2806450,3, 0x2806460,24, 0x2806500,11, 0x2806530,3, 0x2806540,3, 0x2806550,3, 0x2806560,24, 0x2806600,11, 0x2806630,3, 0x2806640,3, 0x2806650,3, 0x2806660,24, 0x2806700,11, 0x2806730,3, 0x2806740,3, 0x2806750,3, 0x2806760,24, 0x2806800,4, 0x2806820,16, 0x2806880,10, 0x28068c0,10, 0x2806900,6, 0x2806920,6, 0x2806940,4, 0x2806980,13, 0x28069c0,13, 0x2806a00,9, 0x2807000,14, 0x2807040,9, 0x2807080,6, 0x28070a0,1, 0x28070a8,4, 0x2807100,4, 0x2807200,124, 0x2807400,124, 0x2807600,8, 0x2807624,1, 0x2807644,6, 0x2807664,6, 0x2807680,1, 0x2807688,6, 0x28076a8,22, 0x2808000,84, 0x2808180,20, 0x2808200,5, 0x2808400,11, 0x2808440,11, 0x2808480,19, 0x2808500,19, 0x2808580,24, 0x2808600,13, 0x2808800,84, 0x2808980,20, 0x2808a00,5, 0x2808c00,11, 0x2808c40,11, 0x2808c80,19, 0x2808d00,19, 0x2808d80,24, 0x2808e00,13, 0x2809000,10, 0x2809040,5, 0x2809080,10, 0x28090c0,5, 0x2809100,5, 0x2809200,11, 0x2809230,3, 0x2809240,5, 0x2809260,5, 0x2809280,32, 0x2809400,13, 0x2809440,13, 0x2809480,9, 0x28094c0,1, 0x28094d0,5, 0x28094f0,21, 0x2809800,10, 0x2809840,5, 0x2809880,10, 0x28098c0,5, 0x2809900,5, 0x2809a00,11, 0x2809a30,3, 0x2809a40,5, 0x2809a60,5, 0x2809a80,32, 0x2809c00,13, 0x2809c40,13, 0x2809c80,9, 0x2809cc0,1, 0x2809cd0,5, 0x2809cf0,21, 0x280a000,14, 0x280a040,9, 0x280a080,6, 0x280a0a0,1, 0x280a0a8,4, 0x280a100,7, 0x280a120,3, 0x280a130,25, 0x280c000,26, 0x280c06c,2, 0x280c080,3, 0x280c090,17, 0x280c100,26, 0x280c16c,2, 0x280c180,3, 0x280c190,17, 0x280c200,26, 0x280c26c,2, 0x280c280,3, 0x280c290,17, 0x280c300,26, 0x280c36c,2, 0x280c380,3, 0x280c390,17, 0x280c400,26, 0x280c46c,2, 0x280c480,3, 0x280c490,17, 0x280c500,26, 0x280c56c,2, 0x280c580,3, 0x280c590,17, 0x280c600,26, 0x280c66c,2, 0x280c680,3, 0x280c690,17, 0x280c700,26, 0x280c76c,2, 0x280c780,3, 0x280c790,17, 0x280c800,12, 0x280c844,1, 0x280c854,8, 0x280c880,7, 0x280c8a0,2, 0x280c8ac,2, 0x280c8c0,26, 0x280c980,4, 0x280c9a0,5, 0x280c9c0,1, 0x280d000,3, 0x280d010,3, 0x280d020,3, 0x280d030,3, 0x280d040,3, 0x280d050,3, 0x280d060,3, 0x280d070,3, 0x280d080,5, 0x280d0a0,5, 0x280d0c0,5, 0x280d0e0,5, 0x280d100,5, 0x280d120,5, 0x280d140,5, 0x280d160,5, 0x280d200,68, 0x280d400,1, 0x280d804,1, 0x280d844,54, 0x280da00,11, 0x280da40,11, 0x280da80,11, 0x280dac0,11, 0x280db00,11, 0x280db40,11, 0x280db80,11, 0x280dbc0,11, 0x280dc00,28, 0x280dc80,5, 0x280dca0,2, 0x280e000,4, 0x280e020,6, 0x280e040,6, 0x280e060,14, 0x280e100,26, 0x280e180,15, 0x280e200,14, 0x280e240,9, 0x280e280,6, 0x280e2a0,1, 0x280e2a8,4, 0x280e300,14, 0x280e340,9, 0x280e380,6, 0x280e3a0,4, 0x280e400,9, 0x2820000,1, 0x2821000,977, 0x2822000,161, 0x2823000,977, 0x2824000,977, 0x2825000,977, 0x2826000,977, 0x2827000,977, 0x2828000,977, 0x2829000,977, 0x282a000,977, 0x282b000,161, 0x282c000,12, 0x282c040,14, 0x282c080,20, 0x282c104,1, 0x282c10c,4, 0x282c200,12, 0x282c240,14, 0x282c280,20, 0x282c304,1, 0x282c30c,4, 0x282c400,12, 0x282c440,14, 0x282c480,20, 0x282c504,1, 0x282c50c,4, 0x282c600,12, 0x282c640,14, 0x282c680,20, 0x282c704,1, 0x282c70c,4, 0x282c800,12, 0x282c840,14, 0x282c880,20, 0x282c904,1, 0x282c90c,4, 0x282ca00,12, 0x282ca40,14, 0x282ca80,20, 0x282cb04,1, 0x282cb0c,4, 0x282cc00,12, 0x282cc40,14, 0x282cc80,20, 0x282cd04,1, 0x282cd0c,4, 0x282ce00,12, 0x282ce40,14, 0x282ce80,20, 0x282cf04,1, 0x282cf0c,4, 0x282d000,12, 0x282d040,14, 0x282d080,20, 0x282d104,1, 0x282d10c,4, 0x282d200,17, 0x282d250,2, 0x282d260,4, 0x282e000,1, 0x282e014,1, 0x282e01c,11, 0x282e060,9, 0x282e094,1, 0x282e09c,11, 0x282e0e0,15, 0x282e200,12, 0x282e240,13, 0x282e280,3, 0x282e290,1, 0x2880000,500, 0x2880800,2, 0x2880820,15, 0x2881000,500, 0x2881800,8, 0x2881824,6, 0x2881840,8, 0x2881880,7, 0x28818a0,7, 0x28818c0,7, 0x28818e0,7, 0x2881900,8, 0x2881924,16, 0x2881980,12, 0x2882000,500, 0x2882800,2, 0x2882820,15, 0x2883000,500, 0x2883800,8, 0x2883824,6, 0x2883840,8, 0x2883880,7, 0x28838a0,7, 0x28838c0,7, 0x28838e0,7, 0x2883900,8, 0x2883924,16, 0x2883980,12, 0x2884004,5, 0x2884200,26, 0x2884280,4, 0x28842c0,25, 0x2884340,6, 0x2884360,1, 0x2884368,2, 0x2884374,11, 0x28843a4,10, 0x2884400,1, 0x2888000,52, 0x2888400,82, 0x2888560,6, 0x2888600,41, 0x2888700,2, 0x2888720,19, 0x2888800,25, 0x2888880,1, 0x2888900,28, 0x2888980,1, 0x2889000,52, 0x2889400,82, 0x2889560,6, 0x2889600,41, 0x2889700,2, 0x2889720,19, 0x2889800,25, 0x2889880,1, 0x2889900,28, 0x2889980,1, 0x288a000,7, 0x288a080,6, 0x288a0a0,6, 0x288a0c0,1, 0x288a100,4, 0x288a120,9, 0x288c000,3, 0x288c010,6, 0x288c200,7, 0x288c220,6, 0x288c240,7, 0x288c260,6, 0x288c280,2, 0x288c28c,2, 0x288c2a0,2, 0x288c2ac,2, 0x288c2c0,7, 0x288c2e0,7, 0x288c300,2, 0x288c30c,2, 0x288c320,6, 0x288c400,3, 0x288c440,12, 0x288c800,7, 0x288c820,14, 0x288c880,16, 0x288c900,7, 0x288c920,14, 0x288c980,16, 0x288ca00,6, 0x288ca20,7, 0x288cc00,3, 0x28a0000,3, 0x28a0800,7, 0x28a0820,6, 0x28a0840,6, 0x28a0880,1, 0x28a0894,1, 0x28a089c,2, 0x28a08c0,9, 0x28a0900,18, 0x28a0a00,36, 0x28a0b00,22, 0x28a0b80,18, 0x28a0c00,3, 0x28a0c10,3, 0x28a1000,3, 0x28a1010,2, 0x28a1080,20, 0x28a1100,1, 0x28a1200,26, 0x28a1280,4, 0x28a12c0,25, 0x28a1340,6, 0x28a1360,1, 0x28a1368,2, 0x28a1374,11, 0x28a13a4,4, 0x28a1400,1, 0x28b0000,11, 0x28b0030,19, 0x28b0080,17, 0x28b0100,11, 0x28b0130,19, 0x28b0180,17, 0x28b0200,3, 0x28b0214,1, 0x28b021c,1, 0x28b0280,3, 0x28b0294,1, 0x28b029c,1, 0x28b0300,18, 0x28b0380,18, 0x28b0400,18, 0x28b0480,18, 0x28b0500,18, 0x28b0580,18, 0x28b0600,18, 0x28b0680,18, 0x28b0700,13, 0x28b0738,6, 0x28b0780,13, 0x28b07b8,6, 0x28b0800,1, 0x28b0808,22, 0x28b0880,1, 0x28b0894,13, 0x28b0900,3, 0x28b0910,3, 0x28b0920,3, 0x28b0940,3, 0x28b0954,1, 0x28b095c,1, 0x28b0a00,52, 0x28b0c00,4, 0x28b0d00,34, 0x28b0e00,4, 0x28b0e80,30, 0x28b0f00,1, 0x28b0f40,5, 0x28b0f60,5, 0x28b0f80,6, 0x28b1000,14, 0x28b1040,4, 0x28b1060,17, 0x28b10c0,6, 0x28b10e0,1, 0x28b10e8,2, 0x28b10f4,11, 0x28b1124,17, 0x28b1200,3, 0x28b1210,3, 0x28b1220,3, 0x28b1230,3, 0x28b1240,3, 0x28b1250,3, 0x28b2000,20, 0x28b2080,3, 0x28b2090,1, 0x28b2098,2, 0x28c0000,500, 0x28c0800,2, 0x28c0820,15, 0x28c1000,500, 0x28c1800,8, 0x28c1824,6, 0x28c1840,8, 0x28c1880,7, 0x28c18a0,7, 0x28c18c0,7, 0x28c18e0,7, 0x28c1900,8, 0x28c1924,16, 0x28c1980,12, 0x28c2000,500, 0x28c2800,2, 0x28c2820,15, 0x28c3000,500, 0x28c3800,8, 0x28c3824,6, 0x28c3840,8, 0x28c3880,7, 0x28c38a0,7, 0x28c38c0,7, 0x28c38e0,7, 0x28c3900,8, 0x28c3924,16, 0x28c3980,12, 0x28c4004,5, 0x28c4200,26, 0x28c4280,4, 0x28c42c0,25, 0x28c4340,6, 0x28c4360,1, 0x28c4368,2, 0x28c4374,11, 0x28c43a4,10, 0x28c4400,1, 0x28c8000,52, 0x28c8400,82, 0x28c8560,6, 0x28c8600,41, 0x28c8700,2, 0x28c8720,19, 0x28c8800,25, 0x28c8880,1, 0x28c8900,28, 0x28c8980,1, 0x28c9000,52, 0x28c9400,82, 0x28c9560,6, 0x28c9600,41, 0x28c9700,2, 0x28c9720,19, 0x28c9800,25, 0x28c9880,1, 0x28c9900,28, 0x28c9980,1, 0x28ca000,7, 0x28ca080,6, 0x28ca0a0,6, 0x28ca0c0,1, 0x28ca100,4, 0x28ca120,9, 0x28cc000,3, 0x28cc010,6, 0x28cc200,7, 0x28cc220,6, 0x28cc240,7, 0x28cc260,6, 0x28cc280,2, 0x28cc28c,2, 0x28cc2a0,2, 0x28cc2ac,2, 0x28cc2c0,7, 0x28cc2e0,7, 0x28cc300,2, 0x28cc30c,2, 0x28cc320,6, 0x28cc400,3, 0x28cc440,12, 0x28cc800,7, 0x28cc820,14, 0x28cc880,16, 0x28cc900,7, 0x28cc920,14, 0x28cc980,16, 0x28cca00,6, 0x28cca20,7, 0x28ccc00,3, 0x28e0000,3, 0x28e0800,7, 0x28e0820,6, 0x28e0840,6, 0x28e0880,1, 0x28e0894,1, 0x28e089c,2, 0x28e08c0,9, 0x28e0900,18, 0x28e0a00,36, 0x28e0b00,22, 0x28e0b80,18, 0x28e0c00,3, 0x28e0c10,3, 0x28e1000,3, 0x28e1010,2, 0x28e1080,20, 0x28e1100,1, 0x28e1200,26, 0x28e1280,4, 0x28e12c0,25, 0x28e1340,6, 0x28e1360,1, 0x28e1368,2, 0x28e1374,11, 0x28e13a4,4, 0x28e1400,1, 0x28f0000,11, 0x28f0030,19, 0x28f0080,17, 0x28f0100,11, 0x28f0130,19, 0x28f0180,17, 0x28f0200,3, 0x28f0214,1, 0x28f021c,1, 0x28f0280,3, 0x28f0294,1, 0x28f029c,1, 0x28f0300,18, 0x28f0380,18, 0x28f0400,18, 0x28f0480,18, 0x28f0500,18, 0x28f0580,18, 0x28f0600,18, 0x28f0680,18, 0x28f0700,13, 0x28f0738,6, 0x28f0780,13, 0x28f07b8,6, 0x28f0800,1, 0x28f0808,22, 0x28f0880,1, 0x28f0894,13, 0x28f0900,3, 0x28f0910,3, 0x28f0920,3, 0x28f0940,3, 0x28f0954,1, 0x28f095c,1, 0x28f0a00,52, 0x28f0c00,4, 0x28f0d00,34, 0x28f0e00,4, 0x28f0e80,30, 0x28f0f00,1, 0x28f0f40,5, 0x28f0f60,5, 0x28f0f80,6, 0x28f1000,14, 0x28f1040,4, 0x28f1060,17, 0x28f10c0,6, 0x28f10e0,1, 0x28f10e8,2, 0x28f10f4,11, 0x28f1124,17, 0x28f1200,3, 0x28f1210,3, 0x28f1220,3, 0x28f1230,3, 0x28f1240,3, 0x28f1250,3, 0x28f2000,20, 0x28f2080,3, 0x28f2090,1, 0x28f2098,2, 0x2900000,13, 0x2900038,4, 0x2900050,3, 0x2900060,3, 0x2900070,16, 0x29000c0,5, 0x2900400,14, 0x2900440,2, 0x290044c,3, 0x2900480,14, 0x29004c0,2, 0x29004cc,3, 0x2900500,1, 0x2900508,15, 0x2900560,2, 0x290056c,2, 0x2900600,4, 0x2900680,27, 0x2900800,2, 0x2900900,32, 0x2900984,2, 0x2900990,4, 0x2900a00,26, 0x2900a80,4, 0x2900ac0,25, 0x2900b40,6, 0x2900b60,1, 0x2900b68,2, 0x2900b74,11, 0x2900ba4,8, 0x2900c00,9, 0x2900c40,11, 0x2900c80,23, 0x2900ce0,15, 0x2900d20,15, 0x2900d60,1, 0x2901000,13, 0x2901038,4, 0x2901050,3, 0x2901060,3, 0x2901070,16, 0x29010c0,5, 0x2901400,14, 0x2901440,2, 0x290144c,3, 0x2901480,14, 0x29014c0,2, 0x29014cc,3, 0x2901500,1, 0x2901508,15, 0x2901560,2, 0x290156c,2, 0x2901600,4, 0x2901680,27, 0x2901800,2, 0x2901900,32, 0x2901984,2, 0x2901990,4, 0x2901a00,26, 0x2901a80,4, 0x2901ac0,25, 0x2901b40,6, 0x2901b60,1, 0x2901b68,2, 0x2901b74,11, 0x2901ba4,8, 0x2901c00,9, 0x2901c40,11, 0x2901c80,23, 0x2901ce0,15, 0x2901d20,15, 0x2901d60,1, 0x2902000,1, 0x2902100,36, 0x2902200,7, 0x2910000,22, 0x2910080,22, 0x2910100,12, 0x2910140,12, 0x2910200,52, 0x2910300,52, 0x2910400,11, 0x2910440,11, 0x2910480,3, 0x29104a0,6, 0x29104c0,6, 0x29104e0,3, 0x29104f0,3, 0x2910800,9, 0x2910840,15, 0x2910880,15, 0x29108c0,15, 0x2910900,1, 0x2910914,13, 0x2910980,17, 0x2911000,17, 0x2911080,17, 0x2911104,5, 0x2911120,3, 0x2911130,11, 0x2911200,31, 0x2911280,31, 0x2911300,12, 0x2911340,12, 0x2911380,2, 0x2911390,2, 0x29113a0,3, 0x29113b0,3, 0x29113c0,5, 0x29113e0,5, 0x2911400,3, 0x2911410,3, 0x2911420,3, 0x2911430,3, 0x2911440,3, 0x2911450,3, 0x2911460,7, 0x2911800,26, 0x2911880,4, 0x29118c0,25, 0x2911940,6, 0x2911960,1, 0x2911968,2, 0x2911974,11, 0x29119a4,12, 0x2911a00,4, 0x2911b00,43, 0x2911c00,4, 0x2911c20,7, 0x2911c40,3, 0x2911c50,1, 0x2911c60,3, 0x2911e00,32, 0x2911e84,1, 0x2911e90,4, 0x2911ea4,1, 0x2911eb4,14, 0x2911ef0,2, 0x2911f04,1, 0x2911f10,8, 0x2911f34,6, 0x2912000,3, 0x2912010,21, 0x2912080,1, 0x2912094,1, 0x291209c,5, 0x2912100,15, 0x2912140,1, 0x2912180,6, 0x2914000,22, 0x2914080,22, 0x2914100,12, 0x2914140,12, 0x2914200,52, 0x2914300,52, 0x2914400,11, 0x2914440,11, 0x2914480,3, 0x29144a0,6, 0x29144c0,6, 0x29144e0,3, 0x29144f0,3, 0x2914800,9, 0x2914840,15, 0x2914880,15, 0x29148c0,15, 0x2914900,1, 0x2914914,13, 0x2914980,17, 0x2915000,17, 0x2915080,17, 0x2915104,5, 0x2915120,3, 0x2915130,11, 0x2915200,31, 0x2915280,31, 0x2915300,12, 0x2915340,12, 0x2915380,2, 0x2915390,2, 0x29153a0,3, 0x29153b0,3, 0x29153c0,5, 0x29153e0,5, 0x2915400,3, 0x2915410,3, 0x2915420,3, 0x2915430,3, 0x2915440,3, 0x2915450,3, 0x2915460,7, 0x2915800,26, 0x2915880,4, 0x29158c0,25, 0x2915940,6, 0x2915960,1, 0x2915968,2, 0x2915974,11, 0x29159a4,12, 0x2915a00,4, 0x2915b00,43, 0x2915c00,4, 0x2915c20,7, 0x2915c40,3, 0x2915c50,1, 0x2915c60,3, 0x2915e00,32, 0x2915e84,1, 0x2915e90,4, 0x2915ea4,1, 0x2915eb4,14, 0x2915ef0,2, 0x2915f04,1, 0x2915f10,8, 0x2915f34,6, 0x2916000,3, 0x2916010,21, 0x2916080,1, 0x2916094,1, 0x291609c,5, 0x2916100,15, 0x2916140,1, 0x2916180,6, 0x2918000,100, 0x2918200,3, 0x2918210,5, 0x2920000,12, 0x2920040,2, 0x2920050,3, 0x2922000,1006, 0x2923000,31, 0x2923084,6, 0x2924004,1, 0x292400c,3, 0x2924200,23, 0x2924280,23, 0x2924300,1, 0x2924400,1, 0x2924800,122, 0x2924a00,122, 0x2924c04,63, 0x2924d04,1, 0x2924d10,5, 0x2924d40,6, 0x2924d60,5, 0x2926000,1, 0x2926100,1, 0x2926108,3, 0x2926120,2, 0x2926134,8, 0x2926160,2, 0x2926174,8, 0x29261a0,4, 0x2926200,54, 0x2926800,5, 0x2926820,2, 0x2926834,1, 0x292683c,1, 0x2926a00,24, 0x2926a80,24, 0x2926b00,1, 0x2926c00,6, 0x2926c24,5, 0x2926c40,16, 0x2927000,1, 0x2927020,5, 0x2927040,1, 0x2927048,2, 0x2927080,1, 0x2927100,4, 0x2927180,24, 0x2927200,4, 0x2927280,27, 0x2927300,2, 0x292730c,3, 0x2928004,1, 0x292800c,3, 0x2928020,1, 0x2928100,2, 0x2928110,3, 0x2928120,2, 0x2928140,10, 0x2928180,13, 0x2928200,2, 0x2928210,3, 0x2928220,2, 0x2928240,10, 0x2928280,13, 0x2928400,14, 0x2928440,3, 0x2928450,3, 0x2928460,1, 0x2928500,36, 0x2928600,10, 0x2928640,5, 0x2928660,5, 0x2928700,27, 0x2928780,7, 0x29287a0,8, 0x2928800,27, 0x2928880,7, 0x29288a0,8, 0x2928900,27, 0x2928980,7, 0x29289a0,8, 0x2928a00,27, 0x2928a80,7, 0x2928aa0,8, 0x2928b00,48, 0x2928bc4,8, 0x2928bf0,30, 0x2928c80,4, 0x2928cc0,25, 0x2928d40,6, 0x2928d60,1, 0x2928d68,2, 0x2928d74,3, 0x2928e00,8, 0x2928e24,28, 0x2929000,4, 0x2929080,23, 0x2929100,14, 0x2929140,9, 0x2929200,10, 0x2929230,3, 0x2929240,5, 0x2929260,5, 0x2929280,9, 0x2929400,67, 0x2929600,10, 0x2930000,12, 0x2930040,2, 0x2930050,3, 0x2932000,1006, 0x2933000,31, 0x2933084,6, 0x2934004,1, 0x293400c,3, 0x2934200,23, 0x2934280,23, 0x2934300,1, 0x2934400,1, 0x2934800,122, 0x2934a00,122, 0x2934c04,63, 0x2934d04,1, 0x2934d10,5, 0x2934d40,6, 0x2934d60,5, 0x2936000,1, 0x2936100,1, 0x2936108,3, 0x2936120,2, 0x2936134,8, 0x2936160,2, 0x2936174,8, 0x29361a0,4, 0x2936200,54, 0x2936800,5, 0x2936820,2, 0x2936834,1, 0x293683c,1, 0x2936a00,24, 0x2936a80,24, 0x2936b00,1, 0x2936c00,6, 0x2936c24,5, 0x2936c40,16, 0x2937000,1, 0x2937020,5, 0x2937040,1, 0x2937048,2, 0x2937080,1, 0x2937100,4, 0x2937180,24, 0x2937200,4, 0x2937280,27, 0x2937300,2, 0x293730c,3, 0x2938004,1, 0x293800c,3, 0x2938020,1, 0x2938100,2, 0x2938110,3, 0x2938120,2, 0x2938140,10, 0x2938180,13, 0x2938200,2, 0x2938210,3, 0x2938220,2, 0x2938240,10, 0x2938280,13, 0x2938400,14, 0x2938440,3, 0x2938450,3, 0x2938460,1, 0x2938500,36, 0x2938600,10, 0x2938640,5, 0x2938660,5, 0x2938700,27, 0x2938780,7, 0x29387a0,8, 0x2938800,27, 0x2938880,7, 0x29388a0,8, 0x2938900,27, 0x2938980,7, 0x29389a0,8, 0x2938a00,27, 0x2938a80,7, 0x2938aa0,8, 0x2938b00,48, 0x2938bc4,8, 0x2938bf0,30, 0x2938c80,4, 0x2938cc0,25, 0x2938d40,6, 0x2938d60,1, 0x2938d68,2, 0x2938d74,3, 0x2938e00,8, 0x2938e24,28, 0x2939000,4, 0x2939080,23, 0x2939100,14, 0x2939140,9, 0x2939200,10, 0x2939230,3, 0x2939240,5, 0x2939260,5, 0x2939280,9, 0x2939400,67, 0x2939600,10, 0x2a00000,1, 0x2a00020,3, 0x2a00030,2, 0x2a00040,3, 0x2a00050,2, 0x2a00800,53, 0x2a00900,3, 0x2a00910,13, 0x2a00a00,53, 0x2a00b00,3, 0x2a00b10,13, 0x2a00c00,5, 0x2a00c20,5, 0x2a00c40,18, 0x2a01000,6, 0x2a01020,4, 0x2a01040,16, 0x2a02000,20, 0x2a02080,15, 0x2a02100,20, 0x2a02180,15, 0x2a02200,23, 0x2a02260,7, 0x2a02400,11, 0x2a02430,3, 0x2a02440,3, 0x2a02450,3, 0x2a02460,24, 0x2a02500,11, 0x2a02530,3, 0x2a02540,3, 0x2a02550,3, 0x2a02560,24, 0x2a02600,11, 0x2a02630,3, 0x2a02640,3, 0x2a02650,3, 0x2a02660,24, 0x2a02700,11, 0x2a02730,3, 0x2a02740,3, 0x2a02750,3, 0x2a02760,24, 0x2a02800,4, 0x2a02820,16, 0x2a02880,10, 0x2a028c0,10, 0x2a02900,6, 0x2a02920,6, 0x2a02940,4, 0x2a02980,13, 0x2a029c0,13, 0x2a02a00,9, 0x2a03000,14, 0x2a03040,9, 0x2a03080,6, 0x2a030a0,1, 0x2a030a8,4, 0x2a03100,4, 0x2a03200,124, 0x2a03400,124, 0x2a03600,8, 0x2a03624,1, 0x2a03644,6, 0x2a03664,6, 0x2a03680,1, 0x2a03688,6, 0x2a036a8,22, 0x2a04000,1, 0x2a04020,3, 0x2a04030,2, 0x2a04040,3, 0x2a04050,2, 0x2a04800,53, 0x2a04900,3, 0x2a04910,13, 0x2a04a00,53, 0x2a04b00,3, 0x2a04b10,13, 0x2a04c00,5, 0x2a04c20,5, 0x2a04c40,18, 0x2a05000,6, 0x2a05020,4, 0x2a05040,16, 0x2a06000,20, 0x2a06080,15, 0x2a06100,20, 0x2a06180,15, 0x2a06200,23, 0x2a06260,7, 0x2a06400,11, 0x2a06430,3, 0x2a06440,3, 0x2a06450,3, 0x2a06460,24, 0x2a06500,11, 0x2a06530,3, 0x2a06540,3, 0x2a06550,3, 0x2a06560,24, 0x2a06600,11, 0x2a06630,3, 0x2a06640,3, 0x2a06650,3, 0x2a06660,24, 0x2a06700,11, 0x2a06730,3, 0x2a06740,3, 0x2a06750,3, 0x2a06760,24, 0x2a06800,4, 0x2a06820,16, 0x2a06880,10, 0x2a068c0,10, 0x2a06900,6, 0x2a06920,6, 0x2a06940,4, 0x2a06980,13, 0x2a069c0,13, 0x2a06a00,9, 0x2a07000,14, 0x2a07040,9, 0x2a07080,6, 0x2a070a0,1, 0x2a070a8,4, 0x2a07100,4, 0x2a07200,124, 0x2a07400,124, 0x2a07600,8, 0x2a07624,1, 0x2a07644,6, 0x2a07664,6, 0x2a07680,1, 0x2a07688,6, 0x2a076a8,22, 0x2a08000,84, 0x2a08180,20, 0x2a08200,5, 0x2a08400,11, 0x2a08440,11, 0x2a08480,19, 0x2a08500,19, 0x2a08580,24, 0x2a08600,13, 0x2a08800,84, 0x2a08980,20, 0x2a08a00,5, 0x2a08c00,11, 0x2a08c40,11, 0x2a08c80,19, 0x2a08d00,19, 0x2a08d80,24, 0x2a08e00,13, 0x2a09000,10, 0x2a09040,5, 0x2a09080,10, 0x2a090c0,5, 0x2a09100,5, 0x2a09200,11, 0x2a09230,3, 0x2a09240,5, 0x2a09260,5, 0x2a09280,32, 0x2a09400,13, 0x2a09440,13, 0x2a09480,9, 0x2a094c0,1, 0x2a094d0,5, 0x2a094f0,21, 0x2a09800,10, 0x2a09840,5, 0x2a09880,10, 0x2a098c0,5, 0x2a09900,5, 0x2a09a00,11, 0x2a09a30,3, 0x2a09a40,5, 0x2a09a60,5, 0x2a09a80,32, 0x2a09c00,13, 0x2a09c40,13, 0x2a09c80,9, 0x2a09cc0,1, 0x2a09cd0,5, 0x2a09cf0,21, 0x2a0a000,14, 0x2a0a040,9, 0x2a0a080,6, 0x2a0a0a0,1, 0x2a0a0a8,4, 0x2a0a100,7, 0x2a0a120,3, 0x2a0a130,25, 0x2a0c000,26, 0x2a0c06c,2, 0x2a0c080,3, 0x2a0c090,17, 0x2a0c100,26, 0x2a0c16c,2, 0x2a0c180,3, 0x2a0c190,17, 0x2a0c200,26, 0x2a0c26c,2, 0x2a0c280,3, 0x2a0c290,17, 0x2a0c300,26, 0x2a0c36c,2, 0x2a0c380,3, 0x2a0c390,17, 0x2a0c400,26, 0x2a0c46c,2, 0x2a0c480,3, 0x2a0c490,17, 0x2a0c500,26, 0x2a0c56c,2, 0x2a0c580,3, 0x2a0c590,17, 0x2a0c600,26, 0x2a0c66c,2, 0x2a0c680,3, 0x2a0c690,17, 0x2a0c700,26, 0x2a0c76c,2, 0x2a0c780,3, 0x2a0c790,17, 0x2a0c800,12, 0x2a0c844,1, 0x2a0c854,8, 0x2a0c880,7, 0x2a0c8a0,2, 0x2a0c8ac,2, 0x2a0c8c0,26, 0x2a0c980,4, 0x2a0c9a0,5, 0x2a0c9c0,1, 0x2a0d000,3, 0x2a0d010,3, 0x2a0d020,3, 0x2a0d030,3, 0x2a0d040,3, 0x2a0d050,3, 0x2a0d060,3, 0x2a0d070,3, 0x2a0d080,5, 0x2a0d0a0,5, 0x2a0d0c0,5, 0x2a0d0e0,5, 0x2a0d100,5, 0x2a0d120,5, 0x2a0d140,5, 0x2a0d160,5, 0x2a0d200,68, 0x2a0d400,1, 0x2a0d804,1, 0x2a0d844,54, 0x2a0da00,11, 0x2a0da40,11, 0x2a0da80,11, 0x2a0dac0,11, 0x2a0db00,11, 0x2a0db40,11, 0x2a0db80,11, 0x2a0dbc0,11, 0x2a0dc00,28, 0x2a0dc80,5, 0x2a0dca0,2, 0x2a0e000,4, 0x2a0e020,6, 0x2a0e040,6, 0x2a0e060,14, 0x2a0e100,26, 0x2a0e180,15, 0x2a0e200,14, 0x2a0e240,9, 0x2a0e280,6, 0x2a0e2a0,1, 0x2a0e2a8,4, 0x2a0e300,14, 0x2a0e340,9, 0x2a0e380,6, 0x2a0e3a0,4, 0x2a0e400,9, 0x2a20000,1, 0x2a21000,977, 0x2a22000,161, 0x2a23000,977, 0x2a24000,977, 0x2a25000,977, 0x2a26000,977, 0x2a27000,977, 0x2a28000,977, 0x2a29000,977, 0x2a2a000,977, 0x2a2b000,161, 0x2a2c000,12, 0x2a2c040,14, 0x2a2c080,20, 0x2a2c104,1, 0x2a2c10c,4, 0x2a2c200,12, 0x2a2c240,14, 0x2a2c280,20, 0x2a2c304,1, 0x2a2c30c,4, 0x2a2c400,12, 0x2a2c440,14, 0x2a2c480,20, 0x2a2c504,1, 0x2a2c50c,4, 0x2a2c600,12, 0x2a2c640,14, 0x2a2c680,20, 0x2a2c704,1, 0x2a2c70c,4, 0x2a2c800,12, 0x2a2c840,14, 0x2a2c880,20, 0x2a2c904,1, 0x2a2c90c,4, 0x2a2ca00,12, 0x2a2ca40,14, 0x2a2ca80,20, 0x2a2cb04,1, 0x2a2cb0c,4, 0x2a2cc00,12, 0x2a2cc40,14, 0x2a2cc80,20, 0x2a2cd04,1, 0x2a2cd0c,4, 0x2a2ce00,12, 0x2a2ce40,14, 0x2a2ce80,20, 0x2a2cf04,1, 0x2a2cf0c,4, 0x2a2d000,12, 0x2a2d040,14, 0x2a2d080,20, 0x2a2d104,1, 0x2a2d10c,4, 0x2a2d200,17, 0x2a2d250,2, 0x2a2d260,4, 0x2a2e000,1, 0x2a2e014,1, 0x2a2e01c,11, 0x2a2e060,9, 0x2a2e094,1, 0x2a2e09c,11, 0x2a2e0e0,15, 0x2a2e200,12, 0x2a2e240,13, 0x2a2e280,3, 0x2a2e290,1, 0x2a80000,500, 0x2a80800,2, 0x2a80820,15, 0x2a81000,500, 0x2a81800,8, 0x2a81824,6, 0x2a81840,8, 0x2a81880,7, 0x2a818a0,7, 0x2a818c0,7, 0x2a818e0,7, 0x2a81900,8, 0x2a81924,16, 0x2a81980,12, 0x2a82000,500, 0x2a82800,2, 0x2a82820,15, 0x2a83000,500, 0x2a83800,8, 0x2a83824,6, 0x2a83840,8, 0x2a83880,7, 0x2a838a0,7, 0x2a838c0,7, 0x2a838e0,7, 0x2a83900,8, 0x2a83924,16, 0x2a83980,12, 0x2a84004,5, 0x2a84200,26, 0x2a84280,4, 0x2a842c0,25, 0x2a84340,6, 0x2a84360,1, 0x2a84368,2, 0x2a84374,11, 0x2a843a4,10, 0x2a84400,1, 0x2a88000,52, 0x2a88400,82, 0x2a88560,6, 0x2a88600,41, 0x2a88700,2, 0x2a88720,19, 0x2a88800,25, 0x2a88880,1, 0x2a88900,28, 0x2a88980,1, 0x2a89000,52, 0x2a89400,82, 0x2a89560,6, 0x2a89600,41, 0x2a89700,2, 0x2a89720,19, 0x2a89800,25, 0x2a89880,1, 0x2a89900,28, 0x2a89980,1, 0x2a8a000,7, 0x2a8a080,6, 0x2a8a0a0,6, 0x2a8a0c0,1, 0x2a8a100,4, 0x2a8a120,9, 0x2a8c000,3, 0x2a8c010,6, 0x2a8c200,7, 0x2a8c220,6, 0x2a8c240,7, 0x2a8c260,6, 0x2a8c280,2, 0x2a8c28c,2, 0x2a8c2a0,2, 0x2a8c2ac,2, 0x2a8c2c0,7, 0x2a8c2e0,7, 0x2a8c300,2, 0x2a8c30c,2, 0x2a8c320,6, 0x2a8c400,3, 0x2a8c440,12, 0x2a8c800,7, 0x2a8c820,14, 0x2a8c880,16, 0x2a8c900,7, 0x2a8c920,14, 0x2a8c980,16, 0x2a8ca00,6, 0x2a8ca20,7, 0x2a8cc00,3, 0x2aa0000,3, 0x2aa0800,7, 0x2aa0820,6, 0x2aa0840,6, 0x2aa0880,1, 0x2aa0894,1, 0x2aa089c,2, 0x2aa08c0,9, 0x2aa0900,18, 0x2aa0a00,36, 0x2aa0b00,22, 0x2aa0b80,18, 0x2aa0c00,3, 0x2aa0c10,3, 0x2aa1000,3, 0x2aa1010,2, 0x2aa1080,20, 0x2aa1100,1, 0x2aa1200,26, 0x2aa1280,4, 0x2aa12c0,25, 0x2aa1340,6, 0x2aa1360,1, 0x2aa1368,2, 0x2aa1374,11, 0x2aa13a4,4, 0x2aa1400,1, 0x2ab0000,11, 0x2ab0030,19, 0x2ab0080,17, 0x2ab0100,11, 0x2ab0130,19, 0x2ab0180,17, 0x2ab0200,3, 0x2ab0214,1, 0x2ab021c,1, 0x2ab0280,3, 0x2ab0294,1, 0x2ab029c,1, 0x2ab0300,18, 0x2ab0380,18, 0x2ab0400,18, 0x2ab0480,18, 0x2ab0500,18, 0x2ab0580,18, 0x2ab0600,18, 0x2ab0680,18, 0x2ab0700,13, 0x2ab0738,6, 0x2ab0780,13, 0x2ab07b8,6, 0x2ab0800,1, 0x2ab0808,22, 0x2ab0880,1, 0x2ab0894,13, 0x2ab0900,3, 0x2ab0910,3, 0x2ab0920,3, 0x2ab0940,3, 0x2ab0954,1, 0x2ab095c,1, 0x2ab0a00,52, 0x2ab0c00,4, 0x2ab0d00,34, 0x2ab0e00,4, 0x2ab0e80,30, 0x2ab0f00,1, 0x2ab0f40,5, 0x2ab0f60,5, 0x2ab0f80,6, 0x2ab1000,14, 0x2ab1040,4, 0x2ab1060,17, 0x2ab10c0,6, 0x2ab10e0,1, 0x2ab10e8,2, 0x2ab10f4,11, 0x2ab1124,17, 0x2ab1200,3, 0x2ab1210,3, 0x2ab1220,3, 0x2ab1230,3, 0x2ab1240,3, 0x2ab1250,3, 0x2ab2000,20, 0x2ab2080,3, 0x2ab2090,1, 0x2ab2098,2, 0x2ac0000,500, 0x2ac0800,2, 0x2ac0820,15, 0x2ac1000,500, 0x2ac1800,8, 0x2ac1824,6, 0x2ac1840,8, 0x2ac1880,7, 0x2ac18a0,7, 0x2ac18c0,7, 0x2ac18e0,7, 0x2ac1900,8, 0x2ac1924,16, 0x2ac1980,12, 0x2ac2000,500, 0x2ac2800,2, 0x2ac2820,15, 0x2ac3000,500, 0x2ac3800,8, 0x2ac3824,6, 0x2ac3840,8, 0x2ac3880,7, 0x2ac38a0,7, 0x2ac38c0,7, 0x2ac38e0,7, 0x2ac3900,8, 0x2ac3924,16, 0x2ac3980,12, 0x2ac4004,5, 0x2ac4200,26, 0x2ac4280,4, 0x2ac42c0,25, 0x2ac4340,6, 0x2ac4360,1, 0x2ac4368,2, 0x2ac4374,11, 0x2ac43a4,10, 0x2ac4400,1, 0x2ac8000,52, 0x2ac8400,82, 0x2ac8560,6, 0x2ac8600,41, 0x2ac8700,2, 0x2ac8720,19, 0x2ac8800,25, 0x2ac8880,1, 0x2ac8900,28, 0x2ac8980,1, 0x2ac9000,52, 0x2ac9400,82, 0x2ac9560,6, 0x2ac9600,41, 0x2ac9700,2, 0x2ac9720,19, 0x2ac9800,25, 0x2ac9880,1, 0x2ac9900,28, 0x2ac9980,1, 0x2aca000,7, 0x2aca080,6, 0x2aca0a0,6, 0x2aca0c0,1, 0x2aca100,4, 0x2aca120,9, 0x2acc000,3, 0x2acc010,6, 0x2acc200,7, 0x2acc220,6, 0x2acc240,7, 0x2acc260,6, 0x2acc280,2, 0x2acc28c,2, 0x2acc2a0,2, 0x2acc2ac,2, 0x2acc2c0,7, 0x2acc2e0,7, 0x2acc300,2, 0x2acc30c,2, 0x2acc320,6, 0x2acc400,3, 0x2acc440,12, 0x2acc800,7, 0x2acc820,14, 0x2acc880,16, 0x2acc900,7, 0x2acc920,14, 0x2acc980,16, 0x2acca00,6, 0x2acca20,7, 0x2accc00,3, 0x2ae0000,3, 0x2ae0800,7, 0x2ae0820,6, 0x2ae0840,6, 0x2ae0880,1, 0x2ae0894,1, 0x2ae089c,2, 0x2ae08c0,9, 0x2ae0900,18, 0x2ae0a00,36, 0x2ae0b00,22, 0x2ae0b80,18, 0x2ae0c00,3, 0x2ae0c10,3, 0x2ae1000,3, 0x2ae1010,2, 0x2ae1080,20, 0x2ae1100,1, 0x2ae1200,26, 0x2ae1280,4, 0x2ae12c0,25, 0x2ae1340,6, 0x2ae1360,1, 0x2ae1368,2, 0x2ae1374,11, 0x2ae13a4,4, 0x2ae1400,1, 0x2af0000,11, 0x2af0030,19, 0x2af0080,17, 0x2af0100,11, 0x2af0130,19, 0x2af0180,17, 0x2af0200,3, 0x2af0214,1, 0x2af021c,1, 0x2af0280,3, 0x2af0294,1, 0x2af029c,1, 0x2af0300,18, 0x2af0380,18, 0x2af0400,18, 0x2af0480,18, 0x2af0500,18, 0x2af0580,18, 0x2af0600,18, 0x2af0680,18, 0x2af0700,13, 0x2af0738,6, 0x2af0780,13, 0x2af07b8,6, 0x2af0800,1, 0x2af0808,22, 0x2af0880,1, 0x2af0894,13, 0x2af0900,3, 0x2af0910,3, 0x2af0920,3, 0x2af0940,3, 0x2af0954,1, 0x2af095c,1, 0x2af0a00,52, 0x2af0c00,4, 0x2af0d00,34, 0x2af0e00,4, 0x2af0e80,30, 0x2af0f00,1, 0x2af0f40,5, 0x2af0f60,5, 0x2af0f80,6, 0x2af1000,14, 0x2af1040,4, 0x2af1060,17, 0x2af10c0,6, 0x2af10e0,1, 0x2af10e8,2, 0x2af10f4,11, 0x2af1124,17, 0x2af1200,3, 0x2af1210,3, 0x2af1220,3, 0x2af1230,3, 0x2af1240,3, 0x2af1250,3, 0x2af2000,20, 0x2af2080,3, 0x2af2090,1, 0x2af2098,2, 0x2b00000,13, 0x2b00038,4, 0x2b00050,3, 0x2b00060,3, 0x2b00070,16, 0x2b000c0,5, 0x2b00400,14, 0x2b00440,2, 0x2b0044c,3, 0x2b00480,14, 0x2b004c0,2, 0x2b004cc,3, 0x2b00500,1, 0x2b00508,15, 0x2b00560,2, 0x2b0056c,2, 0x2b00600,4, 0x2b00680,27, 0x2b00800,2, 0x2b00900,32, 0x2b00984,2, 0x2b00990,4, 0x2b00a00,26, 0x2b00a80,4, 0x2b00ac0,25, 0x2b00b40,6, 0x2b00b60,1, 0x2b00b68,2, 0x2b00b74,11, 0x2b00ba4,8, 0x2b00c00,9, 0x2b00c40,11, 0x2b00c80,23, 0x2b00ce0,15, 0x2b00d20,15, 0x2b00d60,1, 0x2b01000,13, 0x2b01038,4, 0x2b01050,3, 0x2b01060,3, 0x2b01070,16, 0x2b010c0,5, 0x2b01400,14, 0x2b01440,2, 0x2b0144c,3, 0x2b01480,14, 0x2b014c0,2, 0x2b014cc,3, 0x2b01500,1, 0x2b01508,15, 0x2b01560,2, 0x2b0156c,2, 0x2b01600,4, 0x2b01680,27, 0x2b01800,2, 0x2b01900,32, 0x2b01984,2, 0x2b01990,4, 0x2b01a00,26, 0x2b01a80,4, 0x2b01ac0,25, 0x2b01b40,6, 0x2b01b60,1, 0x2b01b68,2, 0x2b01b74,11, 0x2b01ba4,8, 0x2b01c00,9, 0x2b01c40,11, 0x2b01c80,23, 0x2b01ce0,15, 0x2b01d20,15, 0x2b01d60,1, 0x2b02000,1, 0x2b02100,36, 0x2b02200,7, 0x2b10000,22, 0x2b10080,22, 0x2b10100,12, 0x2b10140,12, 0x2b10200,52, 0x2b10300,52, 0x2b10400,11, 0x2b10440,11, 0x2b10480,3, 0x2b104a0,6, 0x2b104c0,6, 0x2b104e0,3, 0x2b104f0,3, 0x2b10800,9, 0x2b10840,15, 0x2b10880,15, 0x2b108c0,15, 0x2b10900,1, 0x2b10914,13, 0x2b10980,17, 0x2b11000,17, 0x2b11080,17, 0x2b11104,5, 0x2b11120,3, 0x2b11130,11, 0x2b11200,31, 0x2b11280,31, 0x2b11300,12, 0x2b11340,12, 0x2b11380,2, 0x2b11390,2, 0x2b113a0,3, 0x2b113b0,3, 0x2b113c0,5, 0x2b113e0,5, 0x2b11400,3, 0x2b11410,3, 0x2b11420,3, 0x2b11430,3, 0x2b11440,3, 0x2b11450,3, 0x2b11460,7, 0x2b11800,26, 0x2b11880,4, 0x2b118c0,25, 0x2b11940,6, 0x2b11960,1, 0x2b11968,2, 0x2b11974,11, 0x2b119a4,12, 0x2b11a00,4, 0x2b11b00,43, 0x2b11c00,4, 0x2b11c20,7, 0x2b11c40,3, 0x2b11c50,1, 0x2b11c60,3, 0x2b11e00,32, 0x2b11e84,1, 0x2b11e90,4, 0x2b11ea4,1, 0x2b11eb4,14, 0x2b11ef0,2, 0x2b11f04,1, 0x2b11f10,8, 0x2b11f34,6, 0x2b12000,3, 0x2b12010,21, 0x2b12080,1, 0x2b12094,1, 0x2b1209c,5, 0x2b12100,15, 0x2b12140,1, 0x2b12180,6, 0x2b14000,22, 0x2b14080,22, 0x2b14100,12, 0x2b14140,12, 0x2b14200,52, 0x2b14300,52, 0x2b14400,11, 0x2b14440,11, 0x2b14480,3, 0x2b144a0,6, 0x2b144c0,6, 0x2b144e0,3, 0x2b144f0,3, 0x2b14800,9, 0x2b14840,15, 0x2b14880,15, 0x2b148c0,15, 0x2b14900,1, 0x2b14914,13, 0x2b14980,17, 0x2b15000,17, 0x2b15080,17, 0x2b15104,5, 0x2b15120,3, 0x2b15130,11, 0x2b15200,31, 0x2b15280,31, 0x2b15300,12, 0x2b15340,12, 0x2b15380,2, 0x2b15390,2, 0x2b153a0,3, 0x2b153b0,3, 0x2b153c0,5, 0x2b153e0,5, 0x2b15400,3, 0x2b15410,3, 0x2b15420,3, 0x2b15430,3, 0x2b15440,3, 0x2b15450,3, 0x2b15460,7, 0x2b15800,26, 0x2b15880,4, 0x2b158c0,25, 0x2b15940,6, 0x2b15960,1, 0x2b15968,2, 0x2b15974,11, 0x2b159a4,12, 0x2b15a00,4, 0x2b15b00,43, 0x2b15c00,4, 0x2b15c20,7, 0x2b15c40,3, 0x2b15c50,1, 0x2b15c60,3, 0x2b15e00,32, 0x2b15e84,1, 0x2b15e90,4, 0x2b15ea4,1, 0x2b15eb4,14, 0x2b15ef0,2, 0x2b15f04,1, 0x2b15f10,8, 0x2b15f34,6, 0x2b16000,3, 0x2b16010,21, 0x2b16080,1, 0x2b16094,1, 0x2b1609c,5, 0x2b16100,15, 0x2b16140,1, 0x2b16180,6, 0x2b18000,100, 0x2b18200,3, 0x2b18210,5, 0x2b20000,12, 0x2b20040,2, 0x2b20050,3, 0x2b22000,1006, 0x2b23000,31, 0x2b23084,6, 0x2b24004,1, 0x2b2400c,3, 0x2b24200,23, 0x2b24280,23, 0x2b24300,1, 0x2b24400,1, 0x2b24800,122, 0x2b24a00,122, 0x2b24c04,63, 0x2b24d04,1, 0x2b24d10,5, 0x2b24d40,6, 0x2b24d60,5, 0x2b26000,1, 0x2b26100,1, 0x2b26108,3, 0x2b26120,2, 0x2b26134,8, 0x2b26160,2, 0x2b26174,8, 0x2b261a0,4, 0x2b26200,54, 0x2b26800,5, 0x2b26820,2, 0x2b26834,1, 0x2b2683c,1, 0x2b26a00,24, 0x2b26a80,24, 0x2b26b00,1, 0x2b26c00,6, 0x2b26c24,5, 0x2b26c40,16, 0x2b27000,1, 0x2b27020,5, 0x2b27040,1, 0x2b27048,2, 0x2b27080,1, 0x2b27100,4, 0x2b27180,24, 0x2b27200,4, 0x2b27280,27, 0x2b27300,2, 0x2b2730c,3, 0x2b28004,1, 0x2b2800c,3, 0x2b28020,1, 0x2b28100,2, 0x2b28110,3, 0x2b28120,2, 0x2b28140,10, 0x2b28180,13, 0x2b28200,2, 0x2b28210,3, 0x2b28220,2, 0x2b28240,10, 0x2b28280,13, 0x2b28400,14, 0x2b28440,3, 0x2b28450,3, 0x2b28460,1, 0x2b28500,36, 0x2b28600,10, 0x2b28640,5, 0x2b28660,5, 0x2b28700,27, 0x2b28780,7, 0x2b287a0,8, 0x2b28800,27, 0x2b28880,7, 0x2b288a0,8, 0x2b28900,27, 0x2b28980,7, 0x2b289a0,8, 0x2b28a00,27, 0x2b28a80,7, 0x2b28aa0,8, 0x2b28b00,48, 0x2b28bc4,8, 0x2b28bf0,30, 0x2b28c80,4, 0x2b28cc0,25, 0x2b28d40,6, 0x2b28d60,1, 0x2b28d68,2, 0x2b28d74,3, 0x2b28e00,8, 0x2b28e24,28, 0x2b29000,4, 0x2b29080,23, 0x2b29100,14, 0x2b29140,9, 0x2b29200,10, 0x2b29230,3, 0x2b29240,5, 0x2b29260,5, 0x2b29280,9, 0x2b29400,67, 0x2b29600,10, 0x2b30000,12, 0x2b30040,2, 0x2b30050,3, 0x2b32000,1006, 0x2b33000,31, 0x2b33084,6, 0x2b34004,1, 0x2b3400c,3, 0x2b34200,23, 0x2b34280,23, 0x2b34300,1, 0x2b34400,1, 0x2b34800,122, 0x2b34a00,122, 0x2b34c04,63, 0x2b34d04,1, 0x2b34d10,5, 0x2b34d40,6, 0x2b34d60,5, 0x2b36000,1, 0x2b36100,1, 0x2b36108,3, 0x2b36120,2, 0x2b36134,8, 0x2b36160,2, 0x2b36174,8, 0x2b361a0,4, 0x2b36200,54, 0x2b36800,5, 0x2b36820,2, 0x2b36834,1, 0x2b3683c,1, 0x2b36a00,24, 0x2b36a80,24, 0x2b36b00,1, 0x2b36c00,6, 0x2b36c24,5, 0x2b36c40,16, 0x2b37000,1, 0x2b37020,5, 0x2b37040,1, 0x2b37048,2, 0x2b37080,1, 0x2b37100,4, 0x2b37180,24, 0x2b37200,4, 0x2b37280,27, 0x2b37300,2, 0x2b3730c,3, 0x2b38004,1, 0x2b3800c,3, 0x2b38020,1, 0x2b38100,2, 0x2b38110,3, 0x2b38120,2, 0x2b38140,10, 0x2b38180,13, 0x2b38200,2, 0x2b38210,3, 0x2b38220,2, 0x2b38240,10, 0x2b38280,13, 0x2b38400,14, 0x2b38440,3, 0x2b38450,3, 0x2b38460,1, 0x2b38500,36, 0x2b38600,10, 0x2b38640,5, 0x2b38660,5, 0x2b38700,27, 0x2b38780,7, 0x2b387a0,8, 0x2b38800,27, 0x2b38880,7, 0x2b388a0,8, 0x2b38900,27, 0x2b38980,7, 0x2b389a0,8, 0x2b38a00,27, 0x2b38a80,7, 0x2b38aa0,8, 0x2b38b00,48, 0x2b38bc4,8, 0x2b38bf0,30, 0x2b38c80,4, 0x2b38cc0,25, 0x2b38d40,6, 0x2b38d60,1, 0x2b38d68,2, 0x2b38d74,3, 0x2b38e00,8, 0x2b38e24,28, 0x2b39000,4, 0x2b39080,23, 0x2b39100,14, 0x2b39140,9, 0x2b39200,10, 0x2b39230,3, 0x2b39240,5, 0x2b39260,5, 0x2b39280,9, 0x2b39400,67, 0x2b39600,10, 0x2c00000,1, 0x2c00020,3, 0x2c00030,2, 0x2c00040,3, 0x2c00050,2, 0x2c00800,53, 0x2c00900,3, 0x2c00910,13, 0x2c00a00,53, 0x2c00b00,3, 0x2c00b10,13, 0x2c00c00,5, 0x2c00c20,5, 0x2c00c40,18, 0x2c01000,6, 0x2c01020,4, 0x2c01040,16, 0x2c02000,20, 0x2c02080,15, 0x2c02100,20, 0x2c02180,15, 0x2c02200,23, 0x2c02260,7, 0x2c02400,11, 0x2c02430,3, 0x2c02440,3, 0x2c02450,3, 0x2c02460,24, 0x2c02500,11, 0x2c02530,3, 0x2c02540,3, 0x2c02550,3, 0x2c02560,24, 0x2c02600,11, 0x2c02630,3, 0x2c02640,3, 0x2c02650,3, 0x2c02660,24, 0x2c02700,11, 0x2c02730,3, 0x2c02740,3, 0x2c02750,3, 0x2c02760,24, 0x2c02800,4, 0x2c02820,16, 0x2c02880,10, 0x2c028c0,10, 0x2c02900,6, 0x2c02920,6, 0x2c02940,4, 0x2c02980,13, 0x2c029c0,13, 0x2c02a00,9, 0x2c03000,14, 0x2c03040,9, 0x2c03080,6, 0x2c030a0,1, 0x2c030a8,4, 0x2c03100,4, 0x2c03200,124, 0x2c03400,124, 0x2c03600,8, 0x2c03624,1, 0x2c03644,6, 0x2c03664,6, 0x2c03680,1, 0x2c03688,6, 0x2c036a8,22, 0x2c04000,1, 0x2c04020,3, 0x2c04030,2, 0x2c04040,3, 0x2c04050,2, 0x2c04800,53, 0x2c04900,3, 0x2c04910,13, 0x2c04a00,53, 0x2c04b00,3, 0x2c04b10,13, 0x2c04c00,5, 0x2c04c20,5, 0x2c04c40,18, 0x2c05000,6, 0x2c05020,4, 0x2c05040,16, 0x2c06000,20, 0x2c06080,15, 0x2c06100,20, 0x2c06180,15, 0x2c06200,23, 0x2c06260,7, 0x2c06400,11, 0x2c06430,3, 0x2c06440,3, 0x2c06450,3, 0x2c06460,24, 0x2c06500,11, 0x2c06530,3, 0x2c06540,3, 0x2c06550,3, 0x2c06560,24, 0x2c06600,11, 0x2c06630,3, 0x2c06640,3, 0x2c06650,3, 0x2c06660,24, 0x2c06700,11, 0x2c06730,3, 0x2c06740,3, 0x2c06750,3, 0x2c06760,24, 0x2c06800,4, 0x2c06820,16, 0x2c06880,10, 0x2c068c0,10, 0x2c06900,6, 0x2c06920,6, 0x2c06940,4, 0x2c06980,13, 0x2c069c0,13, 0x2c06a00,9, 0x2c07000,14, 0x2c07040,9, 0x2c07080,6, 0x2c070a0,1, 0x2c070a8,4, 0x2c07100,4, 0x2c07200,124, 0x2c07400,124, 0x2c07600,8, 0x2c07624,1, 0x2c07644,6, 0x2c07664,6, 0x2c07680,1, 0x2c07688,6, 0x2c076a8,22, 0x2c08000,84, 0x2c08180,20, 0x2c08200,5, 0x2c08400,11, 0x2c08440,11, 0x2c08480,19, 0x2c08500,19, 0x2c08580,24, 0x2c08600,13, 0x2c08800,84, 0x2c08980,20, 0x2c08a00,5, 0x2c08c00,11, 0x2c08c40,11, 0x2c08c80,19, 0x2c08d00,19, 0x2c08d80,24, 0x2c08e00,13, 0x2c09000,10, 0x2c09040,5, 0x2c09080,10, 0x2c090c0,5, 0x2c09100,5, 0x2c09200,11, 0x2c09230,3, 0x2c09240,5, 0x2c09260,5, 0x2c09280,32, 0x2c09400,13, 0x2c09440,13, 0x2c09480,9, 0x2c094c0,1, 0x2c094d0,5, 0x2c094f0,21, 0x2c09800,10, 0x2c09840,5, 0x2c09880,10, 0x2c098c0,5, 0x2c09900,5, 0x2c09a00,11, 0x2c09a30,3, 0x2c09a40,5, 0x2c09a60,5, 0x2c09a80,32, 0x2c09c00,13, 0x2c09c40,13, 0x2c09c80,9, 0x2c09cc0,1, 0x2c09cd0,5, 0x2c09cf0,21, 0x2c0a000,14, 0x2c0a040,9, 0x2c0a080,6, 0x2c0a0a0,1, 0x2c0a0a8,4, 0x2c0a100,7, 0x2c0a120,3, 0x2c0a130,25, 0x2c0c000,26, 0x2c0c06c,2, 0x2c0c080,3, 0x2c0c090,17, 0x2c0c100,26, 0x2c0c16c,2, 0x2c0c180,3, 0x2c0c190,17, 0x2c0c200,26, 0x2c0c26c,2, 0x2c0c280,3, 0x2c0c290,17, 0x2c0c300,26, 0x2c0c36c,2, 0x2c0c380,3, 0x2c0c390,17, 0x2c0c400,26, 0x2c0c46c,2, 0x2c0c480,3, 0x2c0c490,17, 0x2c0c500,26, 0x2c0c56c,2, 0x2c0c580,3, 0x2c0c590,17, 0x2c0c600,26, 0x2c0c66c,2, 0x2c0c680,3, 0x2c0c690,17, 0x2c0c700,26, 0x2c0c76c,2, 0x2c0c780,3, 0x2c0c790,17, 0x2c0c800,12, 0x2c0c844,1, 0x2c0c854,8, 0x2c0c880,7, 0x2c0c8a0,2, 0x2c0c8ac,2, 0x2c0c8c0,26, 0x2c0c980,4, 0x2c0c9a0,5, 0x2c0c9c0,1, 0x2c0d000,3, 0x2c0d010,3, 0x2c0d020,3, 0x2c0d030,3, 0x2c0d040,3, 0x2c0d050,3, 0x2c0d060,3, 0x2c0d070,3, 0x2c0d080,5, 0x2c0d0a0,5, 0x2c0d0c0,5, 0x2c0d0e0,5, 0x2c0d100,5, 0x2c0d120,5, 0x2c0d140,5, 0x2c0d160,5, 0x2c0d200,68, 0x2c0d400,1, 0x2c0d804,1, 0x2c0d844,54, 0x2c0da00,11, 0x2c0da40,11, 0x2c0da80,11, 0x2c0dac0,11, 0x2c0db00,11, 0x2c0db40,11, 0x2c0db80,11, 0x2c0dbc0,11, 0x2c0dc00,28, 0x2c0dc80,5, 0x2c0dca0,2, 0x2c0e000,4, 0x2c0e020,6, 0x2c0e040,6, 0x2c0e060,14, 0x2c0e100,26, 0x2c0e180,15, 0x2c0e200,14, 0x2c0e240,9, 0x2c0e280,6, 0x2c0e2a0,1, 0x2c0e2a8,4, 0x2c0e300,14, 0x2c0e340,9, 0x2c0e380,6, 0x2c0e3a0,4, 0x2c0e400,9, 0x2c20000,1, 0x2c21000,977, 0x2c22000,161, 0x2c23000,977, 0x2c24000,977, 0x2c25000,977, 0x2c26000,977, 0x2c27000,977, 0x2c28000,977, 0x2c29000,977, 0x2c2a000,977, 0x2c2b000,161, 0x2c2c000,12, 0x2c2c040,14, 0x2c2c080,20, 0x2c2c104,1, 0x2c2c10c,4, 0x2c2c200,12, 0x2c2c240,14, 0x2c2c280,20, 0x2c2c304,1, 0x2c2c30c,4, 0x2c2c400,12, 0x2c2c440,14, 0x2c2c480,20, 0x2c2c504,1, 0x2c2c50c,4, 0x2c2c600,12, 0x2c2c640,14, 0x2c2c680,20, 0x2c2c704,1, 0x2c2c70c,4, 0x2c2c800,12, 0x2c2c840,14, 0x2c2c880,20, 0x2c2c904,1, 0x2c2c90c,4, 0x2c2ca00,12, 0x2c2ca40,14, 0x2c2ca80,20, 0x2c2cb04,1, 0x2c2cb0c,4, 0x2c2cc00,12, 0x2c2cc40,14, 0x2c2cc80,20, 0x2c2cd04,1, 0x2c2cd0c,4, 0x2c2ce00,12, 0x2c2ce40,14, 0x2c2ce80,20, 0x2c2cf04,1, 0x2c2cf0c,4, 0x2c2d000,12, 0x2c2d040,14, 0x2c2d080,20, 0x2c2d104,1, 0x2c2d10c,4, 0x2c2d200,17, 0x2c2d250,2, 0x2c2d260,4, 0x2c2e000,1, 0x2c2e014,1, 0x2c2e01c,11, 0x2c2e060,9, 0x2c2e094,1, 0x2c2e09c,11, 0x2c2e0e0,15, 0x2c2e200,12, 0x2c2e240,13, 0x2c2e280,3, 0x2c2e290,1, 0x2c80000,500, 0x2c80800,2, 0x2c80820,15, 0x2c81000,500, 0x2c81800,8, 0x2c81824,6, 0x2c81840,8, 0x2c81880,7, 0x2c818a0,7, 0x2c818c0,7, 0x2c818e0,7, 0x2c81900,8, 0x2c81924,16, 0x2c81980,12, 0x2c82000,500, 0x2c82800,2, 0x2c82820,15, 0x2c83000,500, 0x2c83800,8, 0x2c83824,6, 0x2c83840,8, 0x2c83880,7, 0x2c838a0,7, 0x2c838c0,7, 0x2c838e0,7, 0x2c83900,8, 0x2c83924,16, 0x2c83980,12, 0x2c84004,5, 0x2c84200,26, 0x2c84280,4, 0x2c842c0,25, 0x2c84340,6, 0x2c84360,1, 0x2c84368,2, 0x2c84374,11, 0x2c843a4,10, 0x2c84400,1, 0x2c88000,52, 0x2c88400,82, 0x2c88560,6, 0x2c88600,41, 0x2c88700,2, 0x2c88720,19, 0x2c88800,25, 0x2c88880,1, 0x2c88900,28, 0x2c88980,1, 0x2c89000,52, 0x2c89400,82, 0x2c89560,6, 0x2c89600,41, 0x2c89700,2, 0x2c89720,19, 0x2c89800,25, 0x2c89880,1, 0x2c89900,28, 0x2c89980,1, 0x2c8a000,7, 0x2c8a080,6, 0x2c8a0a0,6, 0x2c8a0c0,1, 0x2c8a100,4, 0x2c8a120,9, 0x2c8c000,3, 0x2c8c010,6, 0x2c8c200,7, 0x2c8c220,6, 0x2c8c240,7, 0x2c8c260,6, 0x2c8c280,2, 0x2c8c28c,2, 0x2c8c2a0,2, 0x2c8c2ac,2, 0x2c8c2c0,7, 0x2c8c2e0,7, 0x2c8c300,2, 0x2c8c30c,2, 0x2c8c320,6, 0x2c8c400,3, 0x2c8c440,12, 0x2c8c800,7, 0x2c8c820,14, 0x2c8c880,16, 0x2c8c900,7, 0x2c8c920,14, 0x2c8c980,16, 0x2c8ca00,6, 0x2c8ca20,7, 0x2c8cc00,3, 0x2ca0000,3, 0x2ca0800,7, 0x2ca0820,6, 0x2ca0840,6, 0x2ca0880,1, 0x2ca0894,1, 0x2ca089c,2, 0x2ca08c0,9, 0x2ca0900,18, 0x2ca0a00,36, 0x2ca0b00,22, 0x2ca0b80,18, 0x2ca0c00,3, 0x2ca0c10,3, 0x2ca1000,3, 0x2ca1010,2, 0x2ca1080,20, 0x2ca1100,1, 0x2ca1200,26, 0x2ca1280,4, 0x2ca12c0,25, 0x2ca1340,6, 0x2ca1360,1, 0x2ca1368,2, 0x2ca1374,11, 0x2ca13a4,4, 0x2ca1400,1, 0x2cb0000,11, 0x2cb0030,19, 0x2cb0080,17, 0x2cb0100,11, 0x2cb0130,19, 0x2cb0180,17, 0x2cb0200,3, 0x2cb0214,1, 0x2cb021c,1, 0x2cb0280,3, 0x2cb0294,1, 0x2cb029c,1, 0x2cb0300,18, 0x2cb0380,18, 0x2cb0400,18, 0x2cb0480,18, 0x2cb0500,18, 0x2cb0580,18, 0x2cb0600,18, 0x2cb0680,18, 0x2cb0700,13, 0x2cb0738,6, 0x2cb0780,13, 0x2cb07b8,6, 0x2cb0800,1, 0x2cb0808,22, 0x2cb0880,1, 0x2cb0894,13, 0x2cb0900,3, 0x2cb0910,3, 0x2cb0920,3, 0x2cb0940,3, 0x2cb0954,1, 0x2cb095c,1, 0x2cb0a00,52, 0x2cb0c00,4, 0x2cb0d00,34, 0x2cb0e00,4, 0x2cb0e80,30, 0x2cb0f00,1, 0x2cb0f40,5, 0x2cb0f60,5, 0x2cb0f80,6, 0x2cb1000,14, 0x2cb1040,4, 0x2cb1060,17, 0x2cb10c0,6, 0x2cb10e0,1, 0x2cb10e8,2, 0x2cb10f4,11, 0x2cb1124,17, 0x2cb1200,3, 0x2cb1210,3, 0x2cb1220,3, 0x2cb1230,3, 0x2cb1240,3, 0x2cb1250,3, 0x2cb2000,20, 0x2cb2080,3, 0x2cb2090,1, 0x2cb2098,2, 0x2cc0000,500, 0x2cc0800,2, 0x2cc0820,15, 0x2cc1000,500, 0x2cc1800,8, 0x2cc1824,6, 0x2cc1840,8, 0x2cc1880,7, 0x2cc18a0,7, 0x2cc18c0,7, 0x2cc18e0,7, 0x2cc1900,8, 0x2cc1924,16, 0x2cc1980,12, 0x2cc2000,500, 0x2cc2800,2, 0x2cc2820,15, 0x2cc3000,500, 0x2cc3800,8, 0x2cc3824,6, 0x2cc3840,8, 0x2cc3880,7, 0x2cc38a0,7, 0x2cc38c0,7, 0x2cc38e0,7, 0x2cc3900,8, 0x2cc3924,16, 0x2cc3980,12, 0x2cc4004,5, 0x2cc4200,26, 0x2cc4280,4, 0x2cc42c0,25, 0x2cc4340,6, 0x2cc4360,1, 0x2cc4368,2, 0x2cc4374,11, 0x2cc43a4,10, 0x2cc4400,1, 0x2cc8000,52, 0x2cc8400,82, 0x2cc8560,6, 0x2cc8600,41, 0x2cc8700,2, 0x2cc8720,19, 0x2cc8800,25, 0x2cc8880,1, 0x2cc8900,28, 0x2cc8980,1, 0x2cc9000,52, 0x2cc9400,82, 0x2cc9560,6, 0x2cc9600,41, 0x2cc9700,2, 0x2cc9720,19, 0x2cc9800,25, 0x2cc9880,1, 0x2cc9900,28, 0x2cc9980,1, 0x2cca000,7, 0x2cca080,6, 0x2cca0a0,6, 0x2cca0c0,1, 0x2cca100,4, 0x2cca120,9, 0x2ccc000,3, 0x2ccc010,6, 0x2ccc200,7, 0x2ccc220,6, 0x2ccc240,7, 0x2ccc260,6, 0x2ccc280,2, 0x2ccc28c,2, 0x2ccc2a0,2, 0x2ccc2ac,2, 0x2ccc2c0,7, 0x2ccc2e0,7, 0x2ccc300,2, 0x2ccc30c,2, 0x2ccc320,6, 0x2ccc400,3, 0x2ccc440,12, 0x2ccc800,7, 0x2ccc820,14, 0x2ccc880,16, 0x2ccc900,7, 0x2ccc920,14, 0x2ccc980,16, 0x2ccca00,6, 0x2ccca20,7, 0x2cccc00,3, 0x2ce0000,3, 0x2ce0800,7, 0x2ce0820,6, 0x2ce0840,6, 0x2ce0880,1, 0x2ce0894,1, 0x2ce089c,2, 0x2ce08c0,9, 0x2ce0900,18, 0x2ce0a00,36, 0x2ce0b00,22, 0x2ce0b80,18, 0x2ce0c00,3, 0x2ce0c10,3, 0x2ce1000,3, 0x2ce1010,2, 0x2ce1080,20, 0x2ce1100,1, 0x2ce1200,26, 0x2ce1280,4, 0x2ce12c0,25, 0x2ce1340,6, 0x2ce1360,1, 0x2ce1368,2, 0x2ce1374,11, 0x2ce13a4,4, 0x2ce1400,1, 0x2cf0000,11, 0x2cf0030,19, 0x2cf0080,17, 0x2cf0100,11, 0x2cf0130,19, 0x2cf0180,17, 0x2cf0200,3, 0x2cf0214,1, 0x2cf021c,1, 0x2cf0280,3, 0x2cf0294,1, 0x2cf029c,1, 0x2cf0300,18, 0x2cf0380,18, 0x2cf0400,18, 0x2cf0480,18, 0x2cf0500,18, 0x2cf0580,18, 0x2cf0600,18, 0x2cf0680,18, 0x2cf0700,13, 0x2cf0738,6, 0x2cf0780,13, 0x2cf07b8,6, 0x2cf0800,1, 0x2cf0808,22, 0x2cf0880,1, 0x2cf0894,13, 0x2cf0900,3, 0x2cf0910,3, 0x2cf0920,3, 0x2cf0940,3, 0x2cf0954,1, 0x2cf095c,1, 0x2cf0a00,52, 0x2cf0c00,4, 0x2cf0d00,34, 0x2cf0e00,4, 0x2cf0e80,30, 0x2cf0f00,1, 0x2cf0f40,5, 0x2cf0f60,5, 0x2cf0f80,6, 0x2cf1000,14, 0x2cf1040,4, 0x2cf1060,17, 0x2cf10c0,6, 0x2cf10e0,1, 0x2cf10e8,2, 0x2cf10f4,11, 0x2cf1124,17, 0x2cf1200,3, 0x2cf1210,3, 0x2cf1220,3, 0x2cf1230,3, 0x2cf1240,3, 0x2cf1250,3, 0x2cf2000,20, 0x2cf2080,3, 0x2cf2090,1, 0x2cf2098,2, 0x2d00000,13, 0x2d00038,4, 0x2d00050,3, 0x2d00060,3, 0x2d00070,16, 0x2d000c0,5, 0x2d00400,14, 0x2d00440,2, 0x2d0044c,3, 0x2d00480,14, 0x2d004c0,2, 0x2d004cc,3, 0x2d00500,1, 0x2d00508,15, 0x2d00560,2, 0x2d0056c,2, 0x2d00600,4, 0x2d00680,27, 0x2d00800,2, 0x2d00900,32, 0x2d00984,2, 0x2d00990,4, 0x2d00a00,26, 0x2d00a80,4, 0x2d00ac0,25, 0x2d00b40,6, 0x2d00b60,1, 0x2d00b68,2, 0x2d00b74,11, 0x2d00ba4,8, 0x2d00c00,9, 0x2d00c40,11, 0x2d00c80,23, 0x2d00ce0,15, 0x2d00d20,15, 0x2d00d60,1, 0x2d01000,13, 0x2d01038,4, 0x2d01050,3, 0x2d01060,3, 0x2d01070,16, 0x2d010c0,5, 0x2d01400,14, 0x2d01440,2, 0x2d0144c,3, 0x2d01480,14, 0x2d014c0,2, 0x2d014cc,3, 0x2d01500,1, 0x2d01508,15, 0x2d01560,2, 0x2d0156c,2, 0x2d01600,4, 0x2d01680,27, 0x2d01800,2, 0x2d01900,32, 0x2d01984,2, 0x2d01990,4, 0x2d01a00,26, 0x2d01a80,4, 0x2d01ac0,25, 0x2d01b40,6, 0x2d01b60,1, 0x2d01b68,2, 0x2d01b74,11, 0x2d01ba4,8, 0x2d01c00,9, 0x2d01c40,11, 0x2d01c80,23, 0x2d01ce0,15, 0x2d01d20,15, 0x2d01d60,1, 0x2d02000,1, 0x2d02100,36, 0x2d02200,7, 0x2d10000,22, 0x2d10080,22, 0x2d10100,12, 0x2d10140,12, 0x2d10200,52, 0x2d10300,52, 0x2d10400,11, 0x2d10440,11, 0x2d10480,3, 0x2d104a0,6, 0x2d104c0,6, 0x2d104e0,3, 0x2d104f0,3, 0x2d10800,9, 0x2d10840,15, 0x2d10880,15, 0x2d108c0,15, 0x2d10900,1, 0x2d10914,13, 0x2d10980,17, 0x2d11000,17, 0x2d11080,17, 0x2d11104,5, 0x2d11120,3, 0x2d11130,11, 0x2d11200,31, 0x2d11280,31, 0x2d11300,12, 0x2d11340,12, 0x2d11380,2, 0x2d11390,2, 0x2d113a0,3, 0x2d113b0,3, 0x2d113c0,5, 0x2d113e0,5, 0x2d11400,3, 0x2d11410,3, 0x2d11420,3, 0x2d11430,3, 0x2d11440,3, 0x2d11450,3, 0x2d11460,7, 0x2d11800,26, 0x2d11880,4, 0x2d118c0,25, 0x2d11940,6, 0x2d11960,1, 0x2d11968,2, 0x2d11974,11, 0x2d119a4,12, 0x2d11a00,4, 0x2d11b00,43, 0x2d11c00,4, 0x2d11c20,7, 0x2d11c40,3, 0x2d11c50,1, 0x2d11c60,3, 0x2d11e00,32, 0x2d11e84,1, 0x2d11e90,4, 0x2d11ea4,1, 0x2d11eb4,14, 0x2d11ef0,2, 0x2d11f04,1, 0x2d11f10,8, 0x2d11f34,6, 0x2d12000,3, 0x2d12010,21, 0x2d12080,1, 0x2d12094,1, 0x2d1209c,5, 0x2d12100,15, 0x2d12140,1, 0x2d12180,6, 0x2d14000,22, 0x2d14080,22, 0x2d14100,12, 0x2d14140,12, 0x2d14200,52, 0x2d14300,52, 0x2d14400,11, 0x2d14440,11, 0x2d14480,3, 0x2d144a0,6, 0x2d144c0,6, 0x2d144e0,3, 0x2d144f0,3, 0x2d14800,9, 0x2d14840,15, 0x2d14880,15, 0x2d148c0,15, 0x2d14900,1, 0x2d14914,13, 0x2d14980,17, 0x2d15000,17, 0x2d15080,17, 0x2d15104,5, 0x2d15120,3, 0x2d15130,11, 0x2d15200,31, 0x2d15280,31, 0x2d15300,12, 0x2d15340,12, 0x2d15380,2, 0x2d15390,2, 0x2d153a0,3, 0x2d153b0,3, 0x2d153c0,5, 0x2d153e0,5, 0x2d15400,3, 0x2d15410,3, 0x2d15420,3, 0x2d15430,3, 0x2d15440,3, 0x2d15450,3, 0x2d15460,7, 0x2d15800,26, 0x2d15880,4, 0x2d158c0,25, 0x2d15940,6, 0x2d15960,1, 0x2d15968,2, 0x2d15974,11, 0x2d159a4,12, 0x2d15a00,4, 0x2d15b00,43, 0x2d15c00,4, 0x2d15c20,7, 0x2d15c40,3, 0x2d15c50,1, 0x2d15c60,3, 0x2d15e00,32, 0x2d15e84,1, 0x2d15e90,4, 0x2d15ea4,1, 0x2d15eb4,14, 0x2d15ef0,2, 0x2d15f04,1, 0x2d15f10,8, 0x2d15f34,6, 0x2d16000,3, 0x2d16010,21, 0x2d16080,1, 0x2d16094,1, 0x2d1609c,5, 0x2d16100,15, 0x2d16140,1, 0x2d16180,6, 0x2d18000,100, 0x2d18200,3, 0x2d18210,5, 0x2d20000,12, 0x2d20040,2, 0x2d20050,3, 0x2d22000,1006, 0x2d23000,31, 0x2d23084,6, 0x2d24004,1, 0x2d2400c,3, 0x2d24200,23, 0x2d24280,23, 0x2d24300,1, 0x2d24400,1, 0x2d24800,122, 0x2d24a00,122, 0x2d24c04,63, 0x2d24d04,1, 0x2d24d10,5, 0x2d24d40,6, 0x2d24d60,5, 0x2d26000,1, 0x2d26100,1, 0x2d26108,3, 0x2d26120,2, 0x2d26134,8, 0x2d26160,2, 0x2d26174,8, 0x2d261a0,4, 0x2d26200,54, 0x2d26800,5, 0x2d26820,2, 0x2d26834,1, 0x2d2683c,1, 0x2d26a00,24, 0x2d26a80,24, 0x2d26b00,1, 0x2d26c00,6, 0x2d26c24,5, 0x2d26c40,16, 0x2d27000,1, 0x2d27020,5, 0x2d27040,1, 0x2d27048,2, 0x2d27080,1, 0x2d27100,4, 0x2d27180,24, 0x2d27200,4, 0x2d27280,27, 0x2d27300,2, 0x2d2730c,3, 0x2d28004,1, 0x2d2800c,3, 0x2d28020,1, 0x2d28100,2, 0x2d28110,3, 0x2d28120,2, 0x2d28140,10, 0x2d28180,13, 0x2d28200,2, 0x2d28210,3, 0x2d28220,2, 0x2d28240,10, 0x2d28280,13, 0x2d28400,14, 0x2d28440,3, 0x2d28450,3, 0x2d28460,1, 0x2d28500,36, 0x2d28600,10, 0x2d28640,5, 0x2d28660,5, 0x2d28700,27, 0x2d28780,7, 0x2d287a0,8, 0x2d28800,27, 0x2d28880,7, 0x2d288a0,8, 0x2d28900,27, 0x2d28980,7, 0x2d289a0,8, 0x2d28a00,27, 0x2d28a80,7, 0x2d28aa0,8, 0x2d28b00,48, 0x2d28bc4,8, 0x2d28bf0,30, 0x2d28c80,4, 0x2d28cc0,25, 0x2d28d40,6, 0x2d28d60,1, 0x2d28d68,2, 0x2d28d74,3, 0x2d28e00,8, 0x2d28e24,28, 0x2d29000,4, 0x2d29080,23, 0x2d29100,14, 0x2d29140,9, 0x2d29200,10, 0x2d29230,3, 0x2d29240,5, 0x2d29260,5, 0x2d29280,9, 0x2d29400,67, 0x2d29600,10, 0x2d30000,12, 0x2d30040,2, 0x2d30050,3, 0x2d32000,1006, 0x2d33000,31, 0x2d33084,6, 0x2d34004,1, 0x2d3400c,3, 0x2d34200,23, 0x2d34280,23, 0x2d34300,1, 0x2d34400,1, 0x2d34800,122, 0x2d34a00,122, 0x2d34c04,63, 0x2d34d04,1, 0x2d34d10,5, 0x2d34d40,6, 0x2d34d60,5, 0x2d36000,1, 0x2d36100,1, 0x2d36108,3, 0x2d36120,2, 0x2d36134,8, 0x2d36160,2, 0x2d36174,8, 0x2d361a0,4, 0x2d36200,54, 0x2d36800,5, 0x2d36820,2, 0x2d36834,1, 0x2d3683c,1, 0x2d36a00,24, 0x2d36a80,24, 0x2d36b00,1, 0x2d36c00,6, 0x2d36c24,5, 0x2d36c40,16, 0x2d37000,1, 0x2d37020,5, 0x2d37040,1, 0x2d37048,2, 0x2d37080,1, 0x2d37100,4, 0x2d37180,24, 0x2d37200,4, 0x2d37280,27, 0x2d37300,2, 0x2d3730c,3, 0x2d38004,1, 0x2d3800c,3, 0x2d38020,1, 0x2d38100,2, 0x2d38110,3, 0x2d38120,2, 0x2d38140,10, 0x2d38180,13, 0x2d38200,2, 0x2d38210,3, 0x2d38220,2, 0x2d38240,10, 0x2d38280,13, 0x2d38400,14, 0x2d38440,3, 0x2d38450,3, 0x2d38460,1, 0x2d38500,36, 0x2d38600,10, 0x2d38640,5, 0x2d38660,5, 0x2d38700,27, 0x2d38780,7, 0x2d387a0,8, 0x2d38800,27, 0x2d38880,7, 0x2d388a0,8, 0x2d38900,27, 0x2d38980,7, 0x2d389a0,8, 0x2d38a00,27, 0x2d38a80,7, 0x2d38aa0,8, 0x2d38b00,48, 0x2d38bc4,8, 0x2d38bf0,30, 0x2d38c80,4, 0x2d38cc0,25, 0x2d38d40,6, 0x2d38d60,1, 0x2d38d68,2, 0x2d38d74,3, 0x2d38e00,8, 0x2d38e24,28, 0x2d39000,4, 0x2d39080,23, 0x2d39100,14, 0x2d39140,9, 0x2d39200,10, 0x2d39230,3, 0x2d39240,5, 0x2d39260,5, 0x2d39280,9, 0x2d39400,67, 0x2d39600,10, 0x2e00000,1, 0x2e00020,3, 0x2e00030,2, 0x2e00040,3, 0x2e00050,2, 0x2e00800,53, 0x2e00900,3, 0x2e00910,13, 0x2e00a00,53, 0x2e00b00,3, 0x2e00b10,13, 0x2e00c00,5, 0x2e00c20,5, 0x2e00c40,18, 0x2e01000,6, 0x2e01020,4, 0x2e01040,16, 0x2e02000,20, 0x2e02080,15, 0x2e02100,20, 0x2e02180,15, 0x2e02200,23, 0x2e02260,7, 0x2e02400,11, 0x2e02430,3, 0x2e02440,3, 0x2e02450,3, 0x2e02460,24, 0x2e02500,11, 0x2e02530,3, 0x2e02540,3, 0x2e02550,3, 0x2e02560,24, 0x2e02600,11, 0x2e02630,3, 0x2e02640,3, 0x2e02650,3, 0x2e02660,24, 0x2e02700,11, 0x2e02730,3, 0x2e02740,3, 0x2e02750,3, 0x2e02760,24, 0x2e02800,4, 0x2e02820,16, 0x2e02880,10, 0x2e028c0,10, 0x2e02900,6, 0x2e02920,6, 0x2e02940,4, 0x2e02980,13, 0x2e029c0,13, 0x2e02a00,9, 0x2e03000,14, 0x2e03040,9, 0x2e03080,6, 0x2e030a0,1, 0x2e030a8,4, 0x2e03100,4, 0x2e03200,124, 0x2e03400,124, 0x2e03600,8, 0x2e03624,1, 0x2e03644,6, 0x2e03664,6, 0x2e03680,1, 0x2e03688,6, 0x2e036a8,22, 0x2e04000,1, 0x2e04020,3, 0x2e04030,2, 0x2e04040,3, 0x2e04050,2, 0x2e04800,53, 0x2e04900,3, 0x2e04910,13, 0x2e04a00,53, 0x2e04b00,3, 0x2e04b10,13, 0x2e04c00,5, 0x2e04c20,5, 0x2e04c40,18, 0x2e05000,6, 0x2e05020,4, 0x2e05040,16, 0x2e06000,20, 0x2e06080,15, 0x2e06100,20, 0x2e06180,15, 0x2e06200,23, 0x2e06260,7, 0x2e06400,11, 0x2e06430,3, 0x2e06440,3, 0x2e06450,3, 0x2e06460,24, 0x2e06500,11, 0x2e06530,3, 0x2e06540,3, 0x2e06550,3, 0x2e06560,24, 0x2e06600,11, 0x2e06630,3, 0x2e06640,3, 0x2e06650,3, 0x2e06660,24, 0x2e06700,11, 0x2e06730,3, 0x2e06740,3, 0x2e06750,3, 0x2e06760,24, 0x2e06800,4, 0x2e06820,16, 0x2e06880,10, 0x2e068c0,10, 0x2e06900,6, 0x2e06920,6, 0x2e06940,4, 0x2e06980,13, 0x2e069c0,13, 0x2e06a00,9, 0x2e07000,14, 0x2e07040,9, 0x2e07080,6, 0x2e070a0,1, 0x2e070a8,4, 0x2e07100,4, 0x2e07200,124, 0x2e07400,124, 0x2e07600,8, 0x2e07624,1, 0x2e07644,6, 0x2e07664,6, 0x2e07680,1, 0x2e07688,6, 0x2e076a8,22, 0x2e08000,84, 0x2e08180,20, 0x2e08200,5, 0x2e08400,11, 0x2e08440,11, 0x2e08480,19, 0x2e08500,19, 0x2e08580,24, 0x2e08600,13, 0x2e08800,84, 0x2e08980,20, 0x2e08a00,5, 0x2e08c00,11, 0x2e08c40,11, 0x2e08c80,19, 0x2e08d00,19, 0x2e08d80,24, 0x2e08e00,13, 0x2e09000,10, 0x2e09040,5, 0x2e09080,10, 0x2e090c0,5, 0x2e09100,5, 0x2e09200,11, 0x2e09230,3, 0x2e09240,5, 0x2e09260,5, 0x2e09280,32, 0x2e09400,13, 0x2e09440,13, 0x2e09480,9, 0x2e094c0,1, 0x2e094d0,5, 0x2e094f0,21, 0x2e09800,10, 0x2e09840,5, 0x2e09880,10, 0x2e098c0,5, 0x2e09900,5, 0x2e09a00,11, 0x2e09a30,3, 0x2e09a40,5, 0x2e09a60,5, 0x2e09a80,32, 0x2e09c00,13, 0x2e09c40,13, 0x2e09c80,9, 0x2e09cc0,1, 0x2e09cd0,5, 0x2e09cf0,21, 0x2e0a000,14, 0x2e0a040,9, 0x2e0a080,6, 0x2e0a0a0,1, 0x2e0a0a8,4, 0x2e0a100,7, 0x2e0a120,3, 0x2e0a130,25, 0x2e0c000,26, 0x2e0c06c,2, 0x2e0c080,3, 0x2e0c090,17, 0x2e0c100,26, 0x2e0c16c,2, 0x2e0c180,3, 0x2e0c190,17, 0x2e0c200,26, 0x2e0c26c,2, 0x2e0c280,3, 0x2e0c290,17, 0x2e0c300,26, 0x2e0c36c,2, 0x2e0c380,3, 0x2e0c390,17, 0x2e0c400,26, 0x2e0c46c,2, 0x2e0c480,3, 0x2e0c490,17, 0x2e0c500,26, 0x2e0c56c,2, 0x2e0c580,3, 0x2e0c590,17, 0x2e0c600,26, 0x2e0c66c,2, 0x2e0c680,3, 0x2e0c690,17, 0x2e0c700,26, 0x2e0c76c,2, 0x2e0c780,3, 0x2e0c790,17, 0x2e0c800,12, 0x2e0c844,1, 0x2e0c854,8, 0x2e0c880,7, 0x2e0c8a0,2, 0x2e0c8ac,2, 0x2e0c8c0,26, 0x2e0c980,4, 0x2e0c9a0,5, 0x2e0c9c0,1, 0x2e0d000,3, 0x2e0d010,3, 0x2e0d020,3, 0x2e0d030,3, 0x2e0d040,3, 0x2e0d050,3, 0x2e0d060,3, 0x2e0d070,3, 0x2e0d080,5, 0x2e0d0a0,5, 0x2e0d0c0,5, 0x2e0d0e0,5, 0x2e0d100,5, 0x2e0d120,5, 0x2e0d140,5, 0x2e0d160,5, 0x2e0d200,68, 0x2e0d400,1, 0x2e0d804,1, 0x2e0d844,54, 0x2e0da00,11, 0x2e0da40,11, 0x2e0da80,11, 0x2e0dac0,11, 0x2e0db00,11, 0x2e0db40,11, 0x2e0db80,11, 0x2e0dbc0,11, 0x2e0dc00,28, 0x2e0dc80,5, 0x2e0dca0,2, 0x2e0e000,4, 0x2e0e020,6, 0x2e0e040,6, 0x2e0e060,14, 0x2e0e100,26, 0x2e0e180,15, 0x2e0e200,14, 0x2e0e240,9, 0x2e0e280,6, 0x2e0e2a0,1, 0x2e0e2a8,4, 0x2e0e300,14, 0x2e0e340,9, 0x2e0e380,6, 0x2e0e3a0,4, 0x2e0e400,9, 0x2e20000,1, 0x2e21000,977, 0x2e22000,161, 0x2e23000,977, 0x2e24000,977, 0x2e25000,977, 0x2e26000,977, 0x2e27000,977, 0x2e28000,977, 0x2e29000,977, 0x2e2a000,977, 0x2e2b000,161, 0x2e2c000,12, 0x2e2c040,14, 0x2e2c080,20, 0x2e2c104,1, 0x2e2c10c,4, 0x2e2c200,12, 0x2e2c240,14, 0x2e2c280,20, 0x2e2c304,1, 0x2e2c30c,4, 0x2e2c400,12, 0x2e2c440,14, 0x2e2c480,20, 0x2e2c504,1, 0x2e2c50c,4, 0x2e2c600,12, 0x2e2c640,14, 0x2e2c680,20, 0x2e2c704,1, 0x2e2c70c,4, 0x2e2c800,12, 0x2e2c840,14, 0x2e2c880,20, 0x2e2c904,1, 0x2e2c90c,4, 0x2e2ca00,12, 0x2e2ca40,14, 0x2e2ca80,20, 0x2e2cb04,1, 0x2e2cb0c,4, 0x2e2cc00,12, 0x2e2cc40,14, 0x2e2cc80,20, 0x2e2cd04,1, 0x2e2cd0c,4, 0x2e2ce00,12, 0x2e2ce40,14, 0x2e2ce80,20, 0x2e2cf04,1, 0x2e2cf0c,4, 0x2e2d000,12, 0x2e2d040,14, 0x2e2d080,20, 0x2e2d104,1, 0x2e2d10c,4, 0x2e2d200,17, 0x2e2d250,2, 0x2e2d260,4, 0x2e2e000,1, 0x2e2e014,1, 0x2e2e01c,11, 0x2e2e060,9, 0x2e2e094,1, 0x2e2e09c,11, 0x2e2e0e0,15, 0x2e2e200,12, 0x2e2e240,13, 0x2e2e280,3, 0x2e2e290,1, 0x2e80000,500, 0x2e80800,2, 0x2e80820,15, 0x2e81000,500, 0x2e81800,8, 0x2e81824,6, 0x2e81840,8, 0x2e81880,7, 0x2e818a0,7, 0x2e818c0,7, 0x2e818e0,7, 0x2e81900,8, 0x2e81924,16, 0x2e81980,12, 0x2e82000,500, 0x2e82800,2, 0x2e82820,15, 0x2e83000,500, 0x2e83800,8, 0x2e83824,6, 0x2e83840,8, 0x2e83880,7, 0x2e838a0,7, 0x2e838c0,7, 0x2e838e0,7, 0x2e83900,8, 0x2e83924,16, 0x2e83980,12, 0x2e84004,5, 0x2e84200,26, 0x2e84280,4, 0x2e842c0,25, 0x2e84340,6, 0x2e84360,1, 0x2e84368,2, 0x2e84374,11, 0x2e843a4,10, 0x2e84400,1, 0x2e88000,52, 0x2e88400,82, 0x2e88560,6, 0x2e88600,41, 0x2e88700,2, 0x2e88720,19, 0x2e88800,25, 0x2e88880,1, 0x2e88900,28, 0x2e88980,1, 0x2e89000,52, 0x2e89400,82, 0x2e89560,6, 0x2e89600,41, 0x2e89700,2, 0x2e89720,19, 0x2e89800,25, 0x2e89880,1, 0x2e89900,28, 0x2e89980,1, 0x2e8a000,7, 0x2e8a080,6, 0x2e8a0a0,6, 0x2e8a0c0,1, 0x2e8a100,4, 0x2e8a120,9, 0x2e8c000,3, 0x2e8c010,6, 0x2e8c200,7, 0x2e8c220,6, 0x2e8c240,7, 0x2e8c260,6, 0x2e8c280,2, 0x2e8c28c,2, 0x2e8c2a0,2, 0x2e8c2ac,2, 0x2e8c2c0,7, 0x2e8c2e0,7, 0x2e8c300,2, 0x2e8c30c,2, 0x2e8c320,6, 0x2e8c400,3, 0x2e8c440,12, 0x2e8c800,7, 0x2e8c820,14, 0x2e8c880,16, 0x2e8c900,7, 0x2e8c920,14, 0x2e8c980,16, 0x2e8ca00,6, 0x2e8ca20,7, 0x2e8cc00,3, 0x2ea0000,3, 0x2ea0800,7, 0x2ea0820,6, 0x2ea0840,6, 0x2ea0880,1, 0x2ea0894,1, 0x2ea089c,2, 0x2ea08c0,9, 0x2ea0900,18, 0x2ea0a00,36, 0x2ea0b00,22, 0x2ea0b80,18, 0x2ea0c00,3, 0x2ea0c10,3, 0x2ea1000,3, 0x2ea1010,2, 0x2ea1080,20, 0x2ea1100,1, 0x2ea1200,26, 0x2ea1280,4, 0x2ea12c0,25, 0x2ea1340,6, 0x2ea1360,1, 0x2ea1368,2, 0x2ea1374,11, 0x2ea13a4,4, 0x2ea1400,1, 0x2eb0000,11, 0x2eb0030,19, 0x2eb0080,17, 0x2eb0100,11, 0x2eb0130,19, 0x2eb0180,17, 0x2eb0200,3, 0x2eb0214,1, 0x2eb021c,1, 0x2eb0280,3, 0x2eb0294,1, 0x2eb029c,1, 0x2eb0300,18, 0x2eb0380,18, 0x2eb0400,18, 0x2eb0480,18, 0x2eb0500,18, 0x2eb0580,18, 0x2eb0600,18, 0x2eb0680,18, 0x2eb0700,13, 0x2eb0738,6, 0x2eb0780,13, 0x2eb07b8,6, 0x2eb0800,1, 0x2eb0808,22, 0x2eb0880,1, 0x2eb0894,13, 0x2eb0900,3, 0x2eb0910,3, 0x2eb0920,3, 0x2eb0940,3, 0x2eb0954,1, 0x2eb095c,1, 0x2eb0a00,52, 0x2eb0c00,4, 0x2eb0d00,34, 0x2eb0e00,4, 0x2eb0e80,30, 0x2eb0f00,1, 0x2eb0f40,5, 0x2eb0f60,5, 0x2eb0f80,6, 0x2eb1000,14, 0x2eb1040,4, 0x2eb1060,17, 0x2eb10c0,6, 0x2eb10e0,1, 0x2eb10e8,2, 0x2eb10f4,11, 0x2eb1124,17, 0x2eb1200,3, 0x2eb1210,3, 0x2eb1220,3, 0x2eb1230,3, 0x2eb1240,3, 0x2eb1250,3, 0x2eb2000,20, 0x2eb2080,3, 0x2eb2090,1, 0x2eb2098,2, 0x2ec0000,500, 0x2ec0800,2, 0x2ec0820,15, 0x2ec1000,500, 0x2ec1800,8, 0x2ec1824,6, 0x2ec1840,8, 0x2ec1880,7, 0x2ec18a0,7, 0x2ec18c0,7, 0x2ec18e0,7, 0x2ec1900,8, 0x2ec1924,16, 0x2ec1980,12, 0x2ec2000,500, 0x2ec2800,2, 0x2ec2820,15, 0x2ec3000,500, 0x2ec3800,8, 0x2ec3824,6, 0x2ec3840,8, 0x2ec3880,7, 0x2ec38a0,7, 0x2ec38c0,7, 0x2ec38e0,7, 0x2ec3900,8, 0x2ec3924,16, 0x2ec3980,12, 0x2ec4004,5, 0x2ec4200,26, 0x2ec4280,4, 0x2ec42c0,25, 0x2ec4340,6, 0x2ec4360,1, 0x2ec4368,2, 0x2ec4374,11, 0x2ec43a4,10, 0x2ec4400,1, 0x2ec8000,52, 0x2ec8400,82, 0x2ec8560,6, 0x2ec8600,41, 0x2ec8700,2, 0x2ec8720,19, 0x2ec8800,25, 0x2ec8880,1, 0x2ec8900,28, 0x2ec8980,1, 0x2ec9000,52, 0x2ec9400,82, 0x2ec9560,6, 0x2ec9600,41, 0x2ec9700,2, 0x2ec9720,19, 0x2ec9800,25, 0x2ec9880,1, 0x2ec9900,28, 0x2ec9980,1, 0x2eca000,7, 0x2eca080,6, 0x2eca0a0,6, 0x2eca0c0,1, 0x2eca100,4, 0x2eca120,9, 0x2ecc000,3, 0x2ecc010,6, 0x2ecc200,7, 0x2ecc220,6, 0x2ecc240,7, 0x2ecc260,6, 0x2ecc280,2, 0x2ecc28c,2, 0x2ecc2a0,2, 0x2ecc2ac,2, 0x2ecc2c0,7, 0x2ecc2e0,7, 0x2ecc300,2, 0x2ecc30c,2, 0x2ecc320,6, 0x2ecc400,3, 0x2ecc440,12, 0x2ecc800,7, 0x2ecc820,14, 0x2ecc880,16, 0x2ecc900,7, 0x2ecc920,14, 0x2ecc980,16, 0x2ecca00,6, 0x2ecca20,7, 0x2eccc00,3, 0x2ee0000,3, 0x2ee0800,7, 0x2ee0820,6, 0x2ee0840,6, 0x2ee0880,1, 0x2ee0894,1, 0x2ee089c,2, 0x2ee08c0,9, 0x2ee0900,18, 0x2ee0a00,36, 0x2ee0b00,22, 0x2ee0b80,18, 0x2ee0c00,3, 0x2ee0c10,3, 0x2ee1000,3, 0x2ee1010,2, 0x2ee1080,20, 0x2ee1100,1, 0x2ee1200,26, 0x2ee1280,4, 0x2ee12c0,25, 0x2ee1340,6, 0x2ee1360,1, 0x2ee1368,2, 0x2ee1374,11, 0x2ee13a4,4, 0x2ee1400,1, 0x2ef0000,11, 0x2ef0030,19, 0x2ef0080,17, 0x2ef0100,11, 0x2ef0130,19, 0x2ef0180,17, 0x2ef0200,3, 0x2ef0214,1, 0x2ef021c,1, 0x2ef0280,3, 0x2ef0294,1, 0x2ef029c,1, 0x2ef0300,18, 0x2ef0380,18, 0x2ef0400,18, 0x2ef0480,18, 0x2ef0500,18, 0x2ef0580,18, 0x2ef0600,18, 0x2ef0680,18, 0x2ef0700,13, 0x2ef0738,6, 0x2ef0780,13, 0x2ef07b8,6, 0x2ef0800,1, 0x2ef0808,22, 0x2ef0880,1, 0x2ef0894,13, 0x2ef0900,3, 0x2ef0910,3, 0x2ef0920,3, 0x2ef0940,3, 0x2ef0954,1, 0x2ef095c,1, 0x2ef0a00,52, 0x2ef0c00,4, 0x2ef0d00,34, 0x2ef0e00,4, 0x2ef0e80,30, 0x2ef0f00,1, 0x2ef0f40,5, 0x2ef0f60,5, 0x2ef0f80,6, 0x2ef1000,14, 0x2ef1040,4, 0x2ef1060,17, 0x2ef10c0,6, 0x2ef10e0,1, 0x2ef10e8,2, 0x2ef10f4,11, 0x2ef1124,17, 0x2ef1200,3, 0x2ef1210,3, 0x2ef1220,3, 0x2ef1230,3, 0x2ef1240,3, 0x2ef1250,3, 0x2ef2000,20, 0x2ef2080,3, 0x2ef2090,1, 0x2ef2098,2, 0x2f00000,13, 0x2f00038,4, 0x2f00050,3, 0x2f00060,3, 0x2f00070,16, 0x2f000c0,5, 0x2f00400,14, 0x2f00440,2, 0x2f0044c,3, 0x2f00480,14, 0x2f004c0,2, 0x2f004cc,3, 0x2f00500,1, 0x2f00508,15, 0x2f00560,2, 0x2f0056c,2, 0x2f00600,4, 0x2f00680,27, 0x2f00800,2, 0x2f00900,32, 0x2f00984,2, 0x2f00990,4, 0x2f00a00,26, 0x2f00a80,4, 0x2f00ac0,25, 0x2f00b40,6, 0x2f00b60,1, 0x2f00b68,2, 0x2f00b74,11, 0x2f00ba4,8, 0x2f00c00,9, 0x2f00c40,11, 0x2f00c80,23, 0x2f00ce0,15, 0x2f00d20,15, 0x2f00d60,1, 0x2f01000,13, 0x2f01038,4, 0x2f01050,3, 0x2f01060,3, 0x2f01070,16, 0x2f010c0,5, 0x2f01400,14, 0x2f01440,2, 0x2f0144c,3, 0x2f01480,14, 0x2f014c0,2, 0x2f014cc,3, 0x2f01500,1, 0x2f01508,15, 0x2f01560,2, 0x2f0156c,2, 0x2f01600,4, 0x2f01680,27, 0x2f01800,2, 0x2f01900,32, 0x2f01984,2, 0x2f01990,4, 0x2f01a00,26, 0x2f01a80,4, 0x2f01ac0,25, 0x2f01b40,6, 0x2f01b60,1, 0x2f01b68,2, 0x2f01b74,11, 0x2f01ba4,8, 0x2f01c00,9, 0x2f01c40,11, 0x2f01c80,23, 0x2f01ce0,15, 0x2f01d20,15, 0x2f01d60,1, 0x2f02000,1, 0x2f02100,36, 0x2f02200,7, 0x2f10000,22, 0x2f10080,22, 0x2f10100,12, 0x2f10140,12, 0x2f10200,52, 0x2f10300,52, 0x2f10400,11, 0x2f10440,11, 0x2f10480,3, 0x2f104a0,6, 0x2f104c0,6, 0x2f104e0,3, 0x2f104f0,3, 0x2f10800,9, 0x2f10840,15, 0x2f10880,15, 0x2f108c0,15, 0x2f10900,1, 0x2f10914,13, 0x2f10980,17, 0x2f11000,17, 0x2f11080,17, 0x2f11104,5, 0x2f11120,3, 0x2f11130,11, 0x2f11200,31, 0x2f11280,31, 0x2f11300,12, 0x2f11340,12, 0x2f11380,2, 0x2f11390,2, 0x2f113a0,3, 0x2f113b0,3, 0x2f113c0,5, 0x2f113e0,5, 0x2f11400,3, 0x2f11410,3, 0x2f11420,3, 0x2f11430,3, 0x2f11440,3, 0x2f11450,3, 0x2f11460,7, 0x2f11800,26, 0x2f11880,4, 0x2f118c0,25, 0x2f11940,6, 0x2f11960,1, 0x2f11968,2, 0x2f11974,11, 0x2f119a4,12, 0x2f11a00,4, 0x2f11b00,43, 0x2f11c00,4, 0x2f11c20,7, 0x2f11c40,3, 0x2f11c50,1, 0x2f11c60,3, 0x2f11e00,32, 0x2f11e84,1, 0x2f11e90,4, 0x2f11ea4,1, 0x2f11eb4,14, 0x2f11ef0,2, 0x2f11f04,1, 0x2f11f10,8, 0x2f11f34,6, 0x2f12000,3, 0x2f12010,21, 0x2f12080,1, 0x2f12094,1, 0x2f1209c,5, 0x2f12100,15, 0x2f12140,1, 0x2f12180,6, 0x2f14000,22, 0x2f14080,22, 0x2f14100,12, 0x2f14140,12, 0x2f14200,52, 0x2f14300,52, 0x2f14400,11, 0x2f14440,11, 0x2f14480,3, 0x2f144a0,6, 0x2f144c0,6, 0x2f144e0,3, 0x2f144f0,3, 0x2f14800,9, 0x2f14840,15, 0x2f14880,15, 0x2f148c0,15, 0x2f14900,1, 0x2f14914,13, 0x2f14980,17, 0x2f15000,17, 0x2f15080,17, 0x2f15104,5, 0x2f15120,3, 0x2f15130,11, 0x2f15200,31, 0x2f15280,31, 0x2f15300,12, 0x2f15340,12, 0x2f15380,2, 0x2f15390,2, 0x2f153a0,3, 0x2f153b0,3, 0x2f153c0,5, 0x2f153e0,5, 0x2f15400,3, 0x2f15410,3, 0x2f15420,3, 0x2f15430,3, 0x2f15440,3, 0x2f15450,3, 0x2f15460,7, 0x2f15800,26, 0x2f15880,4, 0x2f158c0,25, 0x2f15940,6, 0x2f15960,1, 0x2f15968,2, 0x2f15974,11, 0x2f159a4,12, 0x2f15a00,4, 0x2f15b00,43, 0x2f15c00,4, 0x2f15c20,7, 0x2f15c40,3, 0x2f15c50,1, 0x2f15c60,3, 0x2f15e00,32, 0x2f15e84,1, 0x2f15e90,4, 0x2f15ea4,1, 0x2f15eb4,14, 0x2f15ef0,2, 0x2f15f04,1, 0x2f15f10,8, 0x2f15f34,6, 0x2f16000,3, 0x2f16010,21, 0x2f16080,1, 0x2f16094,1, 0x2f1609c,5, 0x2f16100,15, 0x2f16140,1, 0x2f16180,6, 0x2f18000,100, 0x2f18200,3, 0x2f18210,5, 0x2f20000,12, 0x2f20040,2, 0x2f20050,3, 0x2f22000,1006, 0x2f23000,31, 0x2f23084,6, 0x2f24004,1, 0x2f2400c,3, 0x2f24200,23, 0x2f24280,23, 0x2f24300,1, 0x2f24400,1, 0x2f24800,122, 0x2f24a00,122, 0x2f24c04,63, 0x2f24d04,1, 0x2f24d10,5, 0x2f24d40,6, 0x2f24d60,5, 0x2f26000,1, 0x2f26100,1, 0x2f26108,3, 0x2f26120,2, 0x2f26134,8, 0x2f26160,2, 0x2f26174,8, 0x2f261a0,4, 0x2f26200,54, 0x2f26800,5, 0x2f26820,2, 0x2f26834,1, 0x2f2683c,1, 0x2f26a00,24, 0x2f26a80,24, 0x2f26b00,1, 0x2f26c00,6, 0x2f26c24,5, 0x2f26c40,16, 0x2f27000,1, 0x2f27020,5, 0x2f27040,1, 0x2f27048,2, 0x2f27080,1, 0x2f27100,4, 0x2f27180,24, 0x2f27200,4, 0x2f27280,27, 0x2f27300,2, 0x2f2730c,3, 0x2f28004,1, 0x2f2800c,3, 0x2f28020,1, 0x2f28100,2, 0x2f28110,3, 0x2f28120,2, 0x2f28140,10, 0x2f28180,13, 0x2f28200,2, 0x2f28210,3, 0x2f28220,2, 0x2f28240,10, 0x2f28280,13, 0x2f28400,14, 0x2f28440,3, 0x2f28450,3, 0x2f28460,1, 0x2f28500,36, 0x2f28600,10, 0x2f28640,5, 0x2f28660,5, 0x2f28700,27, 0x2f28780,7, 0x2f287a0,8, 0x2f28800,27, 0x2f28880,7, 0x2f288a0,8, 0x2f28900,27, 0x2f28980,7, 0x2f289a0,8, 0x2f28a00,27, 0x2f28a80,7, 0x2f28aa0,8, 0x2f28b00,48, 0x2f28bc4,8, 0x2f28bf0,30, 0x2f28c80,4, 0x2f28cc0,25, 0x2f28d40,6, 0x2f28d60,1, 0x2f28d68,2, 0x2f28d74,3, 0x2f28e00,8, 0x2f28e24,28, 0x2f29000,4, 0x2f29080,23, 0x2f29100,14, 0x2f29140,9, 0x2f29200,10, 0x2f29230,3, 0x2f29240,5, 0x2f29260,5, 0x2f29280,9, 0x2f29400,67, 0x2f29600,10, 0x2f30000,12, 0x2f30040,2, 0x2f30050,3, 0x2f32000,1006, 0x2f33000,31, 0x2f33084,6, 0x2f34004,1, 0x2f3400c,3, 0x2f34200,23, 0x2f34280,23, 0x2f34300,1, 0x2f34400,1, 0x2f34800,122, 0x2f34a00,122, 0x2f34c04,63, 0x2f34d04,1, 0x2f34d10,5, 0x2f34d40,6, 0x2f34d60,5, 0x2f36000,1, 0x2f36100,1, 0x2f36108,3, 0x2f36120,2, 0x2f36134,8, 0x2f36160,2, 0x2f36174,8, 0x2f361a0,4, 0x2f36200,54, 0x2f36800,5, 0x2f36820,2, 0x2f36834,1, 0x2f3683c,1, 0x2f36a00,24, 0x2f36a80,24, 0x2f36b00,1, 0x2f36c00,6, 0x2f36c24,5, 0x2f36c40,16, 0x2f37000,1, 0x2f37020,5, 0x2f37040,1, 0x2f37048,2, 0x2f37080,1, 0x2f37100,4, 0x2f37180,24, 0x2f37200,4, 0x2f37280,27, 0x2f37300,2, 0x2f3730c,3, 0x2f38004,1, 0x2f3800c,3, 0x2f38020,1, 0x2f38100,2, 0x2f38110,3, 0x2f38120,2, 0x2f38140,10, 0x2f38180,13, 0x2f38200,2, 0x2f38210,3, 0x2f38220,2, 0x2f38240,10, 0x2f38280,13, 0x2f38400,14, 0x2f38440,3, 0x2f38450,3, 0x2f38460,1, 0x2f38500,36, 0x2f38600,10, 0x2f38640,5, 0x2f38660,5, 0x2f38700,27, 0x2f38780,7, 0x2f387a0,8, 0x2f38800,27, 0x2f38880,7, 0x2f388a0,8, 0x2f38900,27, 0x2f38980,7, 0x2f389a0,8, 0x2f38a00,27, 0x2f38a80,7, 0x2f38aa0,8, 0x2f38b00,48, 0x2f38bc4,8, 0x2f38bf0,30, 0x2f38c80,4, 0x2f38cc0,25, 0x2f38d40,6, 0x2f38d60,1, 0x2f38d68,2, 0x2f38d74,3, 0x2f38e00,8, 0x2f38e24,28, 0x2f39000,4, 0x2f39080,23, 0x2f39100,14, 0x2f39140,9, 0x2f39200,10, 0x2f39230,3, 0x2f39240,5, 0x2f39260,5, 0x2f39280,9, 0x2f39400,67, 0x2f39600,10, 0x3000000,1, 0x3000020,3, 0x3000030,2, 0x3000040,3, 0x3000050,2, 0x3000800,53, 0x3000900,3, 0x3000910,13, 0x3000a00,53, 0x3000b00,3, 0x3000b10,13, 0x3000c00,5, 0x3000c20,5, 0x3000c40,18, 0x3001000,6, 0x3001020,4, 0x3001040,16, 0x3002000,20, 0x3002080,15, 0x3002100,20, 0x3002180,15, 0x3002200,23, 0x3002260,7, 0x3002400,11, 0x3002430,3, 0x3002440,3, 0x3002450,3, 0x3002460,24, 0x3002500,11, 0x3002530,3, 0x3002540,3, 0x3002550,3, 0x3002560,24, 0x3002600,11, 0x3002630,3, 0x3002640,3, 0x3002650,3, 0x3002660,24, 0x3002700,11, 0x3002730,3, 0x3002740,3, 0x3002750,3, 0x3002760,24, 0x3002800,4, 0x3002820,16, 0x3002880,10, 0x30028c0,10, 0x3002900,6, 0x3002920,6, 0x3002940,4, 0x3002980,13, 0x30029c0,13, 0x3002a00,9, 0x3003000,14, 0x3003040,9, 0x3003080,6, 0x30030a0,1, 0x30030a8,4, 0x3003100,4, 0x3003200,124, 0x3003400,124, 0x3003600,8, 0x3003624,1, 0x3003644,6, 0x3003664,6, 0x3003680,1, 0x3003688,6, 0x30036a8,22, 0x3004000,1, 0x3004020,3, 0x3004030,2, 0x3004040,3, 0x3004050,2, 0x3004800,53, 0x3004900,3, 0x3004910,13, 0x3004a00,53, 0x3004b00,3, 0x3004b10,13, 0x3004c00,5, 0x3004c20,5, 0x3004c40,18, 0x3005000,6, 0x3005020,4, 0x3005040,16, 0x3006000,20, 0x3006080,15, 0x3006100,20, 0x3006180,15, 0x3006200,23, 0x3006260,7, 0x3006400,11, 0x3006430,3, 0x3006440,3, 0x3006450,3, 0x3006460,24, 0x3006500,11, 0x3006530,3, 0x3006540,3, 0x3006550,3, 0x3006560,24, 0x3006600,11, 0x3006630,3, 0x3006640,3, 0x3006650,3, 0x3006660,24, 0x3006700,11, 0x3006730,3, 0x3006740,3, 0x3006750,3, 0x3006760,24, 0x3006800,4, 0x3006820,16, 0x3006880,10, 0x30068c0,10, 0x3006900,6, 0x3006920,6, 0x3006940,4, 0x3006980,13, 0x30069c0,13, 0x3006a00,9, 0x3007000,14, 0x3007040,9, 0x3007080,6, 0x30070a0,1, 0x30070a8,4, 0x3007100,4, 0x3007200,124, 0x3007400,124, 0x3007600,8, 0x3007624,1, 0x3007644,6, 0x3007664,6, 0x3007680,1, 0x3007688,6, 0x30076a8,22, 0x3008000,84, 0x3008180,20, 0x3008200,5, 0x3008400,11, 0x3008440,11, 0x3008480,19, 0x3008500,19, 0x3008580,24, 0x3008600,13, 0x3008800,84, 0x3008980,20, 0x3008a00,5, 0x3008c00,11, 0x3008c40,11, 0x3008c80,19, 0x3008d00,19, 0x3008d80,24, 0x3008e00,13, 0x3009000,10, 0x3009040,5, 0x3009080,10, 0x30090c0,5, 0x3009100,5, 0x3009200,11, 0x3009230,3, 0x3009240,5, 0x3009260,5, 0x3009280,32, 0x3009400,13, 0x3009440,13, 0x3009480,9, 0x30094c0,1, 0x30094d0,5, 0x30094f0,21, 0x3009800,10, 0x3009840,5, 0x3009880,10, 0x30098c0,5, 0x3009900,5, 0x3009a00,11, 0x3009a30,3, 0x3009a40,5, 0x3009a60,5, 0x3009a80,32, 0x3009c00,13, 0x3009c40,13, 0x3009c80,9, 0x3009cc0,1, 0x3009cd0,5, 0x3009cf0,21, 0x300a000,14, 0x300a040,9, 0x300a080,6, 0x300a0a0,1, 0x300a0a8,4, 0x300a100,7, 0x300a120,3, 0x300a130,25, 0x300c000,26, 0x300c06c,2, 0x300c080,3, 0x300c090,17, 0x300c100,26, 0x300c16c,2, 0x300c180,3, 0x300c190,17, 0x300c200,26, 0x300c26c,2, 0x300c280,3, 0x300c290,17, 0x300c300,26, 0x300c36c,2, 0x300c380,3, 0x300c390,17, 0x300c400,26, 0x300c46c,2, 0x300c480,3, 0x300c490,17, 0x300c500,26, 0x300c56c,2, 0x300c580,3, 0x300c590,17, 0x300c600,26, 0x300c66c,2, 0x300c680,3, 0x300c690,17, 0x300c700,26, 0x300c76c,2, 0x300c780,3, 0x300c790,17, 0x300c800,12, 0x300c844,1, 0x300c854,8, 0x300c880,7, 0x300c8a0,2, 0x300c8ac,2, 0x300c8c0,26, 0x300c980,4, 0x300c9a0,5, 0x300c9c0,1, 0x300d000,3, 0x300d010,3, 0x300d020,3, 0x300d030,3, 0x300d040,3, 0x300d050,3, 0x300d060,3, 0x300d070,3, 0x300d080,5, 0x300d0a0,5, 0x300d0c0,5, 0x300d0e0,5, 0x300d100,5, 0x300d120,5, 0x300d140,5, 0x300d160,5, 0x300d200,68, 0x300d400,1, 0x300d804,1, 0x300d844,54, 0x300da00,11, 0x300da40,11, 0x300da80,11, 0x300dac0,11, 0x300db00,11, 0x300db40,11, 0x300db80,11, 0x300dbc0,11, 0x300dc00,28, 0x300dc80,5, 0x300dca0,2, 0x300e000,4, 0x300e020,6, 0x300e040,6, 0x300e060,14, 0x300e100,26, 0x300e180,15, 0x300e200,14, 0x300e240,9, 0x300e280,6, 0x300e2a0,1, 0x300e2a8,4, 0x300e300,14, 0x300e340,9, 0x300e380,6, 0x300e3a0,4, 0x300e400,9, 0x3020000,1, 0x3021000,977, 0x3022000,161, 0x3023000,977, 0x3024000,977, 0x3025000,977, 0x3026000,977, 0x3027000,977, 0x3028000,977, 0x3029000,977, 0x302a000,977, 0x302b000,161, 0x302c000,12, 0x302c040,14, 0x302c080,20, 0x302c104,1, 0x302c10c,4, 0x302c200,12, 0x302c240,14, 0x302c280,20, 0x302c304,1, 0x302c30c,4, 0x302c400,12, 0x302c440,14, 0x302c480,20, 0x302c504,1, 0x302c50c,4, 0x302c600,12, 0x302c640,14, 0x302c680,20, 0x302c704,1, 0x302c70c,4, 0x302c800,12, 0x302c840,14, 0x302c880,20, 0x302c904,1, 0x302c90c,4, 0x302ca00,12, 0x302ca40,14, 0x302ca80,20, 0x302cb04,1, 0x302cb0c,4, 0x302cc00,12, 0x302cc40,14, 0x302cc80,20, 0x302cd04,1, 0x302cd0c,4, 0x302ce00,12, 0x302ce40,14, 0x302ce80,20, 0x302cf04,1, 0x302cf0c,4, 0x302d000,12, 0x302d040,14, 0x302d080,20, 0x302d104,1, 0x302d10c,4, 0x302d200,17, 0x302d250,2, 0x302d260,4, 0x302e000,1, 0x302e014,1, 0x302e01c,11, 0x302e060,9, 0x302e094,1, 0x302e09c,11, 0x302e0e0,15, 0x302e200,12, 0x302e240,13, 0x302e280,3, 0x302e290,1, 0x3080000,500, 0x3080800,2, 0x3080820,15, 0x3081000,500, 0x3081800,8, 0x3081824,6, 0x3081840,8, 0x3081880,7, 0x30818a0,7, 0x30818c0,7, 0x30818e0,7, 0x3081900,8, 0x3081924,16, 0x3081980,12, 0x3082000,500, 0x3082800,2, 0x3082820,15, 0x3083000,500, 0x3083800,8, 0x3083824,6, 0x3083840,8, 0x3083880,7, 0x30838a0,7, 0x30838c0,7, 0x30838e0,7, 0x3083900,8, 0x3083924,16, 0x3083980,12, 0x3084004,5, 0x3084200,26, 0x3084280,4, 0x30842c0,25, 0x3084340,6, 0x3084360,1, 0x3084368,2, 0x3084374,11, 0x30843a4,10, 0x3084400,1, 0x3088000,52, 0x3088400,82, 0x3088560,6, 0x3088600,41, 0x3088700,2, 0x3088720,19, 0x3088800,25, 0x3088880,1, 0x3088900,28, 0x3088980,1, 0x3089000,52, 0x3089400,82, 0x3089560,6, 0x3089600,41, 0x3089700,2, 0x3089720,19, 0x3089800,25, 0x3089880,1, 0x3089900,28, 0x3089980,1, 0x308a000,7, 0x308a080,6, 0x308a0a0,6, 0x308a0c0,1, 0x308a100,4, 0x308a120,9, 0x308c000,3, 0x308c010,6, 0x308c200,7, 0x308c220,6, 0x308c240,7, 0x308c260,6, 0x308c280,2, 0x308c28c,2, 0x308c2a0,2, 0x308c2ac,2, 0x308c2c0,7, 0x308c2e0,7, 0x308c300,2, 0x308c30c,2, 0x308c320,6, 0x308c400,3, 0x308c440,12, 0x308c800,7, 0x308c820,14, 0x308c880,16, 0x308c900,7, 0x308c920,14, 0x308c980,16, 0x308ca00,6, 0x308ca20,7, 0x308cc00,3, 0x30a0000,3, 0x30a0800,7, 0x30a0820,6, 0x30a0840,6, 0x30a0880,1, 0x30a0894,1, 0x30a089c,2, 0x30a08c0,9, 0x30a0900,18, 0x30a0a00,36, 0x30a0b00,22, 0x30a0b80,18, 0x30a0c00,3, 0x30a0c10,3, 0x30a1000,3, 0x30a1010,2, 0x30a1080,20, 0x30a1100,1, 0x30a1200,26, 0x30a1280,4, 0x30a12c0,25, 0x30a1340,6, 0x30a1360,1, 0x30a1368,2, 0x30a1374,11, 0x30a13a4,4, 0x30a1400,1, 0x30b0000,11, 0x30b0030,19, 0x30b0080,17, 0x30b0100,11, 0x30b0130,19, 0x30b0180,17, 0x30b0200,3, 0x30b0214,1, 0x30b021c,1, 0x30b0280,3, 0x30b0294,1, 0x30b029c,1, 0x30b0300,18, 0x30b0380,18, 0x30b0400,18, 0x30b0480,18, 0x30b0500,18, 0x30b0580,18, 0x30b0600,18, 0x30b0680,18, 0x30b0700,13, 0x30b0738,6, 0x30b0780,13, 0x30b07b8,6, 0x30b0800,1, 0x30b0808,22, 0x30b0880,1, 0x30b0894,13, 0x30b0900,3, 0x30b0910,3, 0x30b0920,3, 0x30b0940,3, 0x30b0954,1, 0x30b095c,1, 0x30b0a00,52, 0x30b0c00,4, 0x30b0d00,34, 0x30b0e00,4, 0x30b0e80,30, 0x30b0f00,1, 0x30b0f40,5, 0x30b0f60,5, 0x30b0f80,6, 0x30b1000,14, 0x30b1040,4, 0x30b1060,17, 0x30b10c0,6, 0x30b10e0,1, 0x30b10e8,2, 0x30b10f4,11, 0x30b1124,17, 0x30b1200,3, 0x30b1210,3, 0x30b1220,3, 0x30b1230,3, 0x30b1240,3, 0x30b1250,3, 0x30b2000,20, 0x30b2080,3, 0x30b2090,1, 0x30b2098,2, 0x30c0000,500, 0x30c0800,2, 0x30c0820,15, 0x30c1000,500, 0x30c1800,8, 0x30c1824,6, 0x30c1840,8, 0x30c1880,7, 0x30c18a0,7, 0x30c18c0,7, 0x30c18e0,7, 0x30c1900,8, 0x30c1924,16, 0x30c1980,12, 0x30c2000,500, 0x30c2800,2, 0x30c2820,15, 0x30c3000,500, 0x30c3800,8, 0x30c3824,6, 0x30c3840,8, 0x30c3880,7, 0x30c38a0,7, 0x30c38c0,7, 0x30c38e0,7, 0x30c3900,8, 0x30c3924,16, 0x30c3980,12, 0x30c4004,5, 0x30c4200,26, 0x30c4280,4, 0x30c42c0,25, 0x30c4340,6, 0x30c4360,1, 0x30c4368,2, 0x30c4374,11, 0x30c43a4,10, 0x30c4400,1, 0x30c8000,52, 0x30c8400,82, 0x30c8560,6, 0x30c8600,41, 0x30c8700,2, 0x30c8720,19, 0x30c8800,25, 0x30c8880,1, 0x30c8900,28, 0x30c8980,1, 0x30c9000,52, 0x30c9400,82, 0x30c9560,6, 0x30c9600,41, 0x30c9700,2, 0x30c9720,19, 0x30c9800,25, 0x30c9880,1, 0x30c9900,28, 0x30c9980,1, 0x30ca000,7, 0x30ca080,6, 0x30ca0a0,6, 0x30ca0c0,1, 0x30ca100,4, 0x30ca120,9, 0x30cc000,3, 0x30cc010,6, 0x30cc200,7, 0x30cc220,6, 0x30cc240,7, 0x30cc260,6, 0x30cc280,2, 0x30cc28c,2, 0x30cc2a0,2, 0x30cc2ac,2, 0x30cc2c0,7, 0x30cc2e0,7, 0x30cc300,2, 0x30cc30c,2, 0x30cc320,6, 0x30cc400,3, 0x30cc440,12, 0x30cc800,7, 0x30cc820,14, 0x30cc880,16, 0x30cc900,7, 0x30cc920,14, 0x30cc980,16, 0x30cca00,6, 0x30cca20,7, 0x30ccc00,3, 0x30e0000,3, 0x30e0800,7, 0x30e0820,6, 0x30e0840,6, 0x30e0880,1, 0x30e0894,1, 0x30e089c,2, 0x30e08c0,9, 0x30e0900,18, 0x30e0a00,36, 0x30e0b00,22, 0x30e0b80,18, 0x30e0c00,3, 0x30e0c10,3, 0x30e1000,3, 0x30e1010,2, 0x30e1080,20, 0x30e1100,1, 0x30e1200,26, 0x30e1280,4, 0x30e12c0,25, 0x30e1340,6, 0x30e1360,1, 0x30e1368,2, 0x30e1374,11, 0x30e13a4,4, 0x30e1400,1, 0x30f0000,11, 0x30f0030,19, 0x30f0080,17, 0x30f0100,11, 0x30f0130,19, 0x30f0180,17, 0x30f0200,3, 0x30f0214,1, 0x30f021c,1, 0x30f0280,3, 0x30f0294,1, 0x30f029c,1, 0x30f0300,18, 0x30f0380,18, 0x30f0400,18, 0x30f0480,18, 0x30f0500,18, 0x30f0580,18, 0x30f0600,18, 0x30f0680,18, 0x30f0700,13, 0x30f0738,6, 0x30f0780,13, 0x30f07b8,6, 0x30f0800,1, 0x30f0808,22, 0x30f0880,1, 0x30f0894,13, 0x30f0900,3, 0x30f0910,3, 0x30f0920,3, 0x30f0940,3, 0x30f0954,1, 0x30f095c,1, 0x30f0a00,52, 0x30f0c00,4, 0x30f0d00,34, 0x30f0e00,4, 0x30f0e80,30, 0x30f0f00,1, 0x30f0f40,5, 0x30f0f60,5, 0x30f0f80,6, 0x30f1000,14, 0x30f1040,4, 0x30f1060,17, 0x30f10c0,6, 0x30f10e0,1, 0x30f10e8,2, 0x30f10f4,11, 0x30f1124,17, 0x30f1200,3, 0x30f1210,3, 0x30f1220,3, 0x30f1230,3, 0x30f1240,3, 0x30f1250,3, 0x30f2000,20, 0x30f2080,3, 0x30f2090,1, 0x30f2098,2, 0x3100000,13, 0x3100038,4, 0x3100050,3, 0x3100060,3, 0x3100070,16, 0x31000c0,5, 0x3100400,14, 0x3100440,2, 0x310044c,3, 0x3100480,14, 0x31004c0,2, 0x31004cc,3, 0x3100500,1, 0x3100508,15, 0x3100560,2, 0x310056c,2, 0x3100600,4, 0x3100680,27, 0x3100800,2, 0x3100900,32, 0x3100984,2, 0x3100990,4, 0x3100a00,26, 0x3100a80,4, 0x3100ac0,25, 0x3100b40,6, 0x3100b60,1, 0x3100b68,2, 0x3100b74,11, 0x3100ba4,8, 0x3100c00,9, 0x3100c40,11, 0x3100c80,23, 0x3100ce0,15, 0x3100d20,15, 0x3100d60,1, 0x3101000,13, 0x3101038,4, 0x3101050,3, 0x3101060,3, 0x3101070,16, 0x31010c0,5, 0x3101400,14, 0x3101440,2, 0x310144c,3, 0x3101480,14, 0x31014c0,2, 0x31014cc,3, 0x3101500,1, 0x3101508,15, 0x3101560,2, 0x310156c,2, 0x3101600,4, 0x3101680,27, 0x3101800,2, 0x3101900,32, 0x3101984,2, 0x3101990,4, 0x3101a00,26, 0x3101a80,4, 0x3101ac0,25, 0x3101b40,6, 0x3101b60,1, 0x3101b68,2, 0x3101b74,11, 0x3101ba4,8, 0x3101c00,9, 0x3101c40,11, 0x3101c80,23, 0x3101ce0,15, 0x3101d20,15, 0x3101d60,1, 0x3102000,1, 0x3102100,36, 0x3102200,7, 0x3110000,22, 0x3110080,22, 0x3110100,12, 0x3110140,12, 0x3110200,52, 0x3110300,52, 0x3110400,11, 0x3110440,11, 0x3110480,3, 0x31104a0,6, 0x31104c0,6, 0x31104e0,3, 0x31104f0,3, 0x3110800,9, 0x3110840,15, 0x3110880,15, 0x31108c0,15, 0x3110900,1, 0x3110914,13, 0x3110980,17, 0x3111000,17, 0x3111080,17, 0x3111104,5, 0x3111120,3, 0x3111130,11, 0x3111200,31, 0x3111280,31, 0x3111300,12, 0x3111340,12, 0x3111380,2, 0x3111390,2, 0x31113a0,3, 0x31113b0,3, 0x31113c0,5, 0x31113e0,5, 0x3111400,3, 0x3111410,3, 0x3111420,3, 0x3111430,3, 0x3111440,3, 0x3111450,3, 0x3111460,7, 0x3111800,26, 0x3111880,4, 0x31118c0,25, 0x3111940,6, 0x3111960,1, 0x3111968,2, 0x3111974,11, 0x31119a4,12, 0x3111a00,4, 0x3111b00,43, 0x3111c00,4, 0x3111c20,7, 0x3111c40,3, 0x3111c50,1, 0x3111c60,3, 0x3111e00,32, 0x3111e84,1, 0x3111e90,4, 0x3111ea4,1, 0x3111eb4,14, 0x3111ef0,2, 0x3111f04,1, 0x3111f10,8, 0x3111f34,6, 0x3112000,3, 0x3112010,21, 0x3112080,1, 0x3112094,1, 0x311209c,5, 0x3112100,15, 0x3112140,1, 0x3112180,6, 0x3114000,22, 0x3114080,22, 0x3114100,12, 0x3114140,12, 0x3114200,52, 0x3114300,52, 0x3114400,11, 0x3114440,11, 0x3114480,3, 0x31144a0,6, 0x31144c0,6, 0x31144e0,3, 0x31144f0,3, 0x3114800,9, 0x3114840,15, 0x3114880,15, 0x31148c0,15, 0x3114900,1, 0x3114914,13, 0x3114980,17, 0x3115000,17, 0x3115080,17, 0x3115104,5, 0x3115120,3, 0x3115130,11, 0x3115200,31, 0x3115280,31, 0x3115300,12, 0x3115340,12, 0x3115380,2, 0x3115390,2, 0x31153a0,3, 0x31153b0,3, 0x31153c0,5, 0x31153e0,5, 0x3115400,3, 0x3115410,3, 0x3115420,3, 0x3115430,3, 0x3115440,3, 0x3115450,3, 0x3115460,7, 0x3115800,26, 0x3115880,4, 0x31158c0,25, 0x3115940,6, 0x3115960,1, 0x3115968,2, 0x3115974,11, 0x31159a4,12, 0x3115a00,4, 0x3115b00,43, 0x3115c00,4, 0x3115c20,7, 0x3115c40,3, 0x3115c50,1, 0x3115c60,3, 0x3115e00,32, 0x3115e84,1, 0x3115e90,4, 0x3115ea4,1, 0x3115eb4,14, 0x3115ef0,2, 0x3115f04,1, 0x3115f10,8, 0x3115f34,6, 0x3116000,3, 0x3116010,21, 0x3116080,1, 0x3116094,1, 0x311609c,5, 0x3116100,15, 0x3116140,1, 0x3116180,6, 0x3118000,100, 0x3118200,3, 0x3118210,5, 0x3120000,12, 0x3120040,2, 0x3120050,3, 0x3122000,1006, 0x3123000,31, 0x3123084,6, 0x3124004,1, 0x312400c,3, 0x3124200,23, 0x3124280,23, 0x3124300,1, 0x3124400,1, 0x3124800,122, 0x3124a00,122, 0x3124c04,63, 0x3124d04,1, 0x3124d10,5, 0x3124d40,6, 0x3124d60,5, 0x3126000,1, 0x3126100,1, 0x3126108,3, 0x3126120,2, 0x3126134,8, 0x3126160,2, 0x3126174,8, 0x31261a0,4, 0x3126200,54, 0x3126800,5, 0x3126820,2, 0x3126834,1, 0x312683c,1, 0x3126a00,24, 0x3126a80,24, 0x3126b00,1, 0x3126c00,6, 0x3126c24,5, 0x3126c40,16, 0x3127000,1, 0x3127020,5, 0x3127040,1, 0x3127048,2, 0x3127080,1, 0x3127100,4, 0x3127180,24, 0x3127200,4, 0x3127280,27, 0x3127300,2, 0x312730c,3, 0x3128004,1, 0x312800c,3, 0x3128020,1, 0x3128100,2, 0x3128110,3, 0x3128120,2, 0x3128140,10, 0x3128180,13, 0x3128200,2, 0x3128210,3, 0x3128220,2, 0x3128240,10, 0x3128280,13, 0x3128400,14, 0x3128440,3, 0x3128450,3, 0x3128460,1, 0x3128500,36, 0x3128600,10, 0x3128640,5, 0x3128660,5, 0x3128700,27, 0x3128780,7, 0x31287a0,8, 0x3128800,27, 0x3128880,7, 0x31288a0,8, 0x3128900,27, 0x3128980,7, 0x31289a0,8, 0x3128a00,27, 0x3128a80,7, 0x3128aa0,8, 0x3128b00,48, 0x3128bc4,8, 0x3128bf0,30, 0x3128c80,4, 0x3128cc0,25, 0x3128d40,6, 0x3128d60,1, 0x3128d68,2, 0x3128d74,3, 0x3128e00,8, 0x3128e24,28, 0x3129000,4, 0x3129080,23, 0x3129100,14, 0x3129140,9, 0x3129200,10, 0x3129230,3, 0x3129240,5, 0x3129260,5, 0x3129280,9, 0x3129400,67, 0x3129600,10, 0x3130000,12, 0x3130040,2, 0x3130050,3, 0x3132000,1006, 0x3133000,31, 0x3133084,6, 0x3134004,1, 0x313400c,3, 0x3134200,23, 0x3134280,23, 0x3134300,1, 0x3134400,1, 0x3134800,122, 0x3134a00,122, 0x3134c04,63, 0x3134d04,1, 0x3134d10,5, 0x3134d40,6, 0x3134d60,5, 0x3136000,1, 0x3136100,1, 0x3136108,3, 0x3136120,2, 0x3136134,8, 0x3136160,2, 0x3136174,8, 0x31361a0,4, 0x3136200,54, 0x3136800,5, 0x3136820,2, 0x3136834,1, 0x313683c,1, 0x3136a00,24, 0x3136a80,24, 0x3136b00,1, 0x3136c00,6, 0x3136c24,5, 0x3136c40,16, 0x3137000,1, 0x3137020,5, 0x3137040,1, 0x3137048,2, 0x3137080,1, 0x3137100,4, 0x3137180,24, 0x3137200,4, 0x3137280,27, 0x3137300,2, 0x313730c,3, 0x3138004,1, 0x313800c,3, 0x3138020,1, 0x3138100,2, 0x3138110,3, 0x3138120,2, 0x3138140,10, 0x3138180,13, 0x3138200,2, 0x3138210,3, 0x3138220,2, 0x3138240,10, 0x3138280,13, 0x3138400,14, 0x3138440,3, 0x3138450,3, 0x3138460,1, 0x3138500,36, 0x3138600,10, 0x3138640,5, 0x3138660,5, 0x3138700,27, 0x3138780,7, 0x31387a0,8, 0x3138800,27, 0x3138880,7, 0x31388a0,8, 0x3138900,27, 0x3138980,7, 0x31389a0,8, 0x3138a00,27, 0x3138a80,7, 0x3138aa0,8, 0x3138b00,48, 0x3138bc4,8, 0x3138bf0,30, 0x3138c80,4, 0x3138cc0,25, 0x3138d40,6, 0x3138d60,1, 0x3138d68,2, 0x3138d74,3, 0x3138e00,8, 0x3138e24,28, 0x3139000,4, 0x3139080,23, 0x3139100,14, 0x3139140,9, 0x3139200,10, 0x3139230,3, 0x3139240,5, 0x3139260,5, 0x3139280,9, 0x3139400,67, 0x3139600,10, 0x3200000,1, 0x3200020,3, 0x3200030,2, 0x3200040,3, 0x3200050,2, 0x3200800,53, 0x3200900,3, 0x3200910,13, 0x3200a00,53, 0x3200b00,3, 0x3200b10,13, 0x3200c00,5, 0x3200c20,5, 0x3200c40,18, 0x3201000,6, 0x3201020,4, 0x3201040,16, 0x3202000,20, 0x3202080,15, 0x3202100,20, 0x3202180,15, 0x3202200,23, 0x3202260,7, 0x3202400,11, 0x3202430,3, 0x3202440,3, 0x3202450,3, 0x3202460,24, 0x3202500,11, 0x3202530,3, 0x3202540,3, 0x3202550,3, 0x3202560,24, 0x3202600,11, 0x3202630,3, 0x3202640,3, 0x3202650,3, 0x3202660,24, 0x3202700,11, 0x3202730,3, 0x3202740,3, 0x3202750,3, 0x3202760,24, 0x3202800,4, 0x3202820,16, 0x3202880,10, 0x32028c0,10, 0x3202900,6, 0x3202920,6, 0x3202940,4, 0x3202980,13, 0x32029c0,13, 0x3202a00,9, 0x3203000,14, 0x3203040,9, 0x3203080,6, 0x32030a0,1, 0x32030a8,4, 0x3203100,4, 0x3203200,124, 0x3203400,124, 0x3203600,8, 0x3203624,1, 0x3203644,6, 0x3203664,6, 0x3203680,1, 0x3203688,6, 0x32036a8,22, 0x3204000,1, 0x3204020,3, 0x3204030,2, 0x3204040,3, 0x3204050,2, 0x3204800,53, 0x3204900,3, 0x3204910,13, 0x3204a00,53, 0x3204b00,3, 0x3204b10,13, 0x3204c00,5, 0x3204c20,5, 0x3204c40,18, 0x3205000,6, 0x3205020,4, 0x3205040,16, 0x3206000,20, 0x3206080,15, 0x3206100,20, 0x3206180,15, 0x3206200,23, 0x3206260,7, 0x3206400,11, 0x3206430,3, 0x3206440,3, 0x3206450,3, 0x3206460,24, 0x3206500,11, 0x3206530,3, 0x3206540,3, 0x3206550,3, 0x3206560,24, 0x3206600,11, 0x3206630,3, 0x3206640,3, 0x3206650,3, 0x3206660,24, 0x3206700,11, 0x3206730,3, 0x3206740,3, 0x3206750,3, 0x3206760,24, 0x3206800,4, 0x3206820,16, 0x3206880,10, 0x32068c0,10, 0x3206900,6, 0x3206920,6, 0x3206940,4, 0x3206980,13, 0x32069c0,13, 0x3206a00,9, 0x3207000,14, 0x3207040,9, 0x3207080,6, 0x32070a0,1, 0x32070a8,4, 0x3207100,4, 0x3207200,124, 0x3207400,124, 0x3207600,8, 0x3207624,1, 0x3207644,6, 0x3207664,6, 0x3207680,1, 0x3207688,6, 0x32076a8,22, 0x3208000,84, 0x3208180,20, 0x3208200,5, 0x3208400,11, 0x3208440,11, 0x3208480,19, 0x3208500,19, 0x3208580,24, 0x3208600,13, 0x3208800,84, 0x3208980,20, 0x3208a00,5, 0x3208c00,11, 0x3208c40,11, 0x3208c80,19, 0x3208d00,19, 0x3208d80,24, 0x3208e00,13, 0x3209000,10, 0x3209040,5, 0x3209080,10, 0x32090c0,5, 0x3209100,5, 0x3209200,11, 0x3209230,3, 0x3209240,5, 0x3209260,5, 0x3209280,32, 0x3209400,13, 0x3209440,13, 0x3209480,9, 0x32094c0,1, 0x32094d0,5, 0x32094f0,21, 0x3209800,10, 0x3209840,5, 0x3209880,10, 0x32098c0,5, 0x3209900,5, 0x3209a00,11, 0x3209a30,3, 0x3209a40,5, 0x3209a60,5, 0x3209a80,32, 0x3209c00,13, 0x3209c40,13, 0x3209c80,9, 0x3209cc0,1, 0x3209cd0,5, 0x3209cf0,21, 0x320a000,14, 0x320a040,9, 0x320a080,6, 0x320a0a0,1, 0x320a0a8,4, 0x320a100,7, 0x320a120,3, 0x320a130,25, 0x320c000,26, 0x320c06c,2, 0x320c080,3, 0x320c090,17, 0x320c100,26, 0x320c16c,2, 0x320c180,3, 0x320c190,17, 0x320c200,26, 0x320c26c,2, 0x320c280,3, 0x320c290,17, 0x320c300,26, 0x320c36c,2, 0x320c380,3, 0x320c390,17, 0x320c400,26, 0x320c46c,2, 0x320c480,3, 0x320c490,17, 0x320c500,26, 0x320c56c,2, 0x320c580,3, 0x320c590,17, 0x320c600,26, 0x320c66c,2, 0x320c680,3, 0x320c690,17, 0x320c700,26, 0x320c76c,2, 0x320c780,3, 0x320c790,17, 0x320c800,12, 0x320c844,1, 0x320c854,8, 0x320c880,7, 0x320c8a0,2, 0x320c8ac,2, 0x320c8c0,26, 0x320c980,4, 0x320c9a0,5, 0x320c9c0,1, 0x320d000,3, 0x320d010,3, 0x320d020,3, 0x320d030,3, 0x320d040,3, 0x320d050,3, 0x320d060,3, 0x320d070,3, 0x320d080,5, 0x320d0a0,5, 0x320d0c0,5, 0x320d0e0,5, 0x320d100,5, 0x320d120,5, 0x320d140,5, 0x320d160,5, 0x320d200,68, 0x320d400,1, 0x320d804,1, 0x320d844,54, 0x320da00,11, 0x320da40,11, 0x320da80,11, 0x320dac0,11, 0x320db00,11, 0x320db40,11, 0x320db80,11, 0x320dbc0,11, 0x320dc00,28, 0x320dc80,5, 0x320dca0,2, 0x320e000,4, 0x320e020,6, 0x320e040,6, 0x320e060,14, 0x320e100,26, 0x320e180,15, 0x320e200,14, 0x320e240,9, 0x320e280,6, 0x320e2a0,1, 0x320e2a8,4, 0x320e300,14, 0x320e340,9, 0x320e380,6, 0x320e3a0,4, 0x320e400,9, 0x3220000,1, 0x3221000,977, 0x3222000,161, 0x3223000,977, 0x3224000,977, 0x3225000,977, 0x3226000,977, 0x3227000,977, 0x3228000,977, 0x3229000,977, 0x322a000,977, 0x322b000,161, 0x322c000,12, 0x322c040,14, 0x322c080,20, 0x322c104,1, 0x322c10c,4, 0x322c200,12, 0x322c240,14, 0x322c280,20, 0x322c304,1, 0x322c30c,4, 0x322c400,12, 0x322c440,14, 0x322c480,20, 0x322c504,1, 0x322c50c,4, 0x322c600,12, 0x322c640,14, 0x322c680,20, 0x322c704,1, 0x322c70c,4, 0x322c800,12, 0x322c840,14, 0x322c880,20, 0x322c904,1, 0x322c90c,4, 0x322ca00,12, 0x322ca40,14, 0x322ca80,20, 0x322cb04,1, 0x322cb0c,4, 0x322cc00,12, 0x322cc40,14, 0x322cc80,20, 0x322cd04,1, 0x322cd0c,4, 0x322ce00,12, 0x322ce40,14, 0x322ce80,20, 0x322cf04,1, 0x322cf0c,4, 0x322d000,12, 0x322d040,14, 0x322d080,20, 0x322d104,1, 0x322d10c,4, 0x322d200,17, 0x322d250,2, 0x322d260,4, 0x322e000,1, 0x322e014,1, 0x322e01c,11, 0x322e060,9, 0x322e094,1, 0x322e09c,11, 0x322e0e0,15, 0x322e200,12, 0x322e240,13, 0x322e280,3, 0x322e290,1, 0x3280000,500, 0x3280800,2, 0x3280820,15, 0x3281000,500, 0x3281800,8, 0x3281824,6, 0x3281840,8, 0x3281880,7, 0x32818a0,7, 0x32818c0,7, 0x32818e0,7, 0x3281900,8, 0x3281924,16, 0x3281980,12, 0x3282000,500, 0x3282800,2, 0x3282820,15, 0x3283000,500, 0x3283800,8, 0x3283824,6, 0x3283840,8, 0x3283880,7, 0x32838a0,7, 0x32838c0,7, 0x32838e0,7, 0x3283900,8, 0x3283924,16, 0x3283980,12, 0x3284004,5, 0x3284200,26, 0x3284280,4, 0x32842c0,25, 0x3284340,6, 0x3284360,1, 0x3284368,2, 0x3284374,11, 0x32843a4,10, 0x3284400,1, 0x3288000,52, 0x3288400,82, 0x3288560,6, 0x3288600,41, 0x3288700,2, 0x3288720,19, 0x3288800,25, 0x3288880,1, 0x3288900,28, 0x3288980,1, 0x3289000,52, 0x3289400,82, 0x3289560,6, 0x3289600,41, 0x3289700,2, 0x3289720,19, 0x3289800,25, 0x3289880,1, 0x3289900,28, 0x3289980,1, 0x328a000,7, 0x328a080,6, 0x328a0a0,6, 0x328a0c0,1, 0x328a100,4, 0x328a120,9, 0x328c000,3, 0x328c010,6, 0x328c200,7, 0x328c220,6, 0x328c240,7, 0x328c260,6, 0x328c280,2, 0x328c28c,2, 0x328c2a0,2, 0x328c2ac,2, 0x328c2c0,7, 0x328c2e0,7, 0x328c300,2, 0x328c30c,2, 0x328c320,6, 0x328c400,3, 0x328c440,12, 0x328c800,7, 0x328c820,14, 0x328c880,16, 0x328c900,7, 0x328c920,14, 0x328c980,16, 0x328ca00,6, 0x328ca20,7, 0x328cc00,3, 0x32a0000,3, 0x32a0800,7, 0x32a0820,6, 0x32a0840,6, 0x32a0880,1, 0x32a0894,1, 0x32a089c,2, 0x32a08c0,9, 0x32a0900,18, 0x32a0a00,36, 0x32a0b00,22, 0x32a0b80,18, 0x32a0c00,3, 0x32a0c10,3, 0x32a1000,3, 0x32a1010,2, 0x32a1080,20, 0x32a1100,1, 0x32a1200,26, 0x32a1280,4, 0x32a12c0,25, 0x32a1340,6, 0x32a1360,1, 0x32a1368,2, 0x32a1374,11, 0x32a13a4,4, 0x32a1400,1, 0x32b0000,11, 0x32b0030,19, 0x32b0080,17, 0x32b0100,11, 0x32b0130,19, 0x32b0180,17, 0x32b0200,3, 0x32b0214,1, 0x32b021c,1, 0x32b0280,3, 0x32b0294,1, 0x32b029c,1, 0x32b0300,18, 0x32b0380,18, 0x32b0400,18, 0x32b0480,18, 0x32b0500,18, 0x32b0580,18, 0x32b0600,18, 0x32b0680,18, 0x32b0700,13, 0x32b0738,6, 0x32b0780,13, 0x32b07b8,6, 0x32b0800,1, 0x32b0808,22, 0x32b0880,1, 0x32b0894,13, 0x32b0900,3, 0x32b0910,3, 0x32b0920,3, 0x32b0940,3, 0x32b0954,1, 0x32b095c,1, 0x32b0a00,52, 0x32b0c00,4, 0x32b0d00,34, 0x32b0e00,4, 0x32b0e80,30, 0x32b0f00,1, 0x32b0f40,5, 0x32b0f60,5, 0x32b0f80,6, 0x32b1000,14, 0x32b1040,4, 0x32b1060,17, 0x32b10c0,6, 0x32b10e0,1, 0x32b10e8,2, 0x32b10f4,11, 0x32b1124,17, 0x32b1200,3, 0x32b1210,3, 0x32b1220,3, 0x32b1230,3, 0x32b1240,3, 0x32b1250,3, 0x32b2000,20, 0x32b2080,3, 0x32b2090,1, 0x32b2098,2, 0x32c0000,500, 0x32c0800,2, 0x32c0820,15, 0x32c1000,500, 0x32c1800,8, 0x32c1824,6, 0x32c1840,8, 0x32c1880,7, 0x32c18a0,7, 0x32c18c0,7, 0x32c18e0,7, 0x32c1900,8, 0x32c1924,16, 0x32c1980,12, 0x32c2000,500, 0x32c2800,2, 0x32c2820,15, 0x32c3000,500, 0x32c3800,8, 0x32c3824,6, 0x32c3840,8, 0x32c3880,7, 0x32c38a0,7, 0x32c38c0,7, 0x32c38e0,7, 0x32c3900,8, 0x32c3924,16, 0x32c3980,12, 0x32c4004,5, 0x32c4200,26, 0x32c4280,4, 0x32c42c0,25, 0x32c4340,6, 0x32c4360,1, 0x32c4368,2, 0x32c4374,11, 0x32c43a4,10, 0x32c4400,1, 0x32c8000,52, 0x32c8400,82, 0x32c8560,6, 0x32c8600,41, 0x32c8700,2, 0x32c8720,19, 0x32c8800,25, 0x32c8880,1, 0x32c8900,28, 0x32c8980,1, 0x32c9000,52, 0x32c9400,82, 0x32c9560,6, 0x32c9600,41, 0x32c9700,2, 0x32c9720,19, 0x32c9800,25, 0x32c9880,1, 0x32c9900,28, 0x32c9980,1, 0x32ca000,7, 0x32ca080,6, 0x32ca0a0,6, 0x32ca0c0,1, 0x32ca100,4, 0x32ca120,9, 0x32cc000,3, 0x32cc010,6, 0x32cc200,7, 0x32cc220,6, 0x32cc240,7, 0x32cc260,6, 0x32cc280,2, 0x32cc28c,2, 0x32cc2a0,2, 0x32cc2ac,2, 0x32cc2c0,7, 0x32cc2e0,7, 0x32cc300,2, 0x32cc30c,2, 0x32cc320,6, 0x32cc400,3, 0x32cc440,12, 0x32cc800,7, 0x32cc820,14, 0x32cc880,16, 0x32cc900,7, 0x32cc920,14, 0x32cc980,16, 0x32cca00,6, 0x32cca20,7, 0x32ccc00,3, 0x32e0000,3, 0x32e0800,7, 0x32e0820,6, 0x32e0840,6, 0x32e0880,1, 0x32e0894,1, 0x32e089c,2, 0x32e08c0,9, 0x32e0900,18, 0x32e0a00,36, 0x32e0b00,22, 0x32e0b80,18, 0x32e0c00,3, 0x32e0c10,3, 0x32e1000,3, 0x32e1010,2, 0x32e1080,20, 0x32e1100,1, 0x32e1200,26, 0x32e1280,4, 0x32e12c0,25, 0x32e1340,6, 0x32e1360,1, 0x32e1368,2, 0x32e1374,11, 0x32e13a4,4, 0x32e1400,1, 0x32f0000,11, 0x32f0030,19, 0x32f0080,17, 0x32f0100,11, 0x32f0130,19, 0x32f0180,17, 0x32f0200,3, 0x32f0214,1, 0x32f021c,1, 0x32f0280,3, 0x32f0294,1, 0x32f029c,1, 0x32f0300,18, 0x32f0380,18, 0x32f0400,18, 0x32f0480,18, 0x32f0500,18, 0x32f0580,18, 0x32f0600,18, 0x32f0680,18, 0x32f0700,13, 0x32f0738,6, 0x32f0780,13, 0x32f07b8,6, 0x32f0800,1, 0x32f0808,22, 0x32f0880,1, 0x32f0894,13, 0x32f0900,3, 0x32f0910,3, 0x32f0920,3, 0x32f0940,3, 0x32f0954,1, 0x32f095c,1, 0x32f0a00,52, 0x32f0c00,4, 0x32f0d00,34, 0x32f0e00,4, 0x32f0e80,30, 0x32f0f00,1, 0x32f0f40,5, 0x32f0f60,5, 0x32f0f80,6, 0x32f1000,14, 0x32f1040,4, 0x32f1060,17, 0x32f10c0,6, 0x32f10e0,1, 0x32f10e8,2, 0x32f10f4,11, 0x32f1124,17, 0x32f1200,3, 0x32f1210,3, 0x32f1220,3, 0x32f1230,3, 0x32f1240,3, 0x32f1250,3, 0x32f2000,20, 0x32f2080,3, 0x32f2090,1, 0x32f2098,2, 0x3300000,13, 0x3300038,4, 0x3300050,3, 0x3300060,3, 0x3300070,16, 0x33000c0,5, 0x3300400,14, 0x3300440,2, 0x330044c,3, 0x3300480,14, 0x33004c0,2, 0x33004cc,3, 0x3300500,1, 0x3300508,15, 0x3300560,2, 0x330056c,2, 0x3300600,4, 0x3300680,27, 0x3300800,2, 0x3300900,32, 0x3300984,2, 0x3300990,4, 0x3300a00,26, 0x3300a80,4, 0x3300ac0,25, 0x3300b40,6, 0x3300b60,1, 0x3300b68,2, 0x3300b74,11, 0x3300ba4,8, 0x3300c00,9, 0x3300c40,11, 0x3300c80,23, 0x3300ce0,15, 0x3300d20,15, 0x3300d60,1, 0x3301000,13, 0x3301038,4, 0x3301050,3, 0x3301060,3, 0x3301070,16, 0x33010c0,5, 0x3301400,14, 0x3301440,2, 0x330144c,3, 0x3301480,14, 0x33014c0,2, 0x33014cc,3, 0x3301500,1, 0x3301508,15, 0x3301560,2, 0x330156c,2, 0x3301600,4, 0x3301680,27, 0x3301800,2, 0x3301900,32, 0x3301984,2, 0x3301990,4, 0x3301a00,26, 0x3301a80,4, 0x3301ac0,25, 0x3301b40,6, 0x3301b60,1, 0x3301b68,2, 0x3301b74,11, 0x3301ba4,8, 0x3301c00,9, 0x3301c40,11, 0x3301c80,23, 0x3301ce0,15, 0x3301d20,15, 0x3301d60,1, 0x3302000,1, 0x3302100,36, 0x3302200,7, 0x3310000,22, 0x3310080,22, 0x3310100,12, 0x3310140,12, 0x3310200,52, 0x3310300,52, 0x3310400,11, 0x3310440,11, 0x3310480,3, 0x33104a0,6, 0x33104c0,6, 0x33104e0,3, 0x33104f0,3, 0x3310800,9, 0x3310840,15, 0x3310880,15, 0x33108c0,15, 0x3310900,1, 0x3310914,13, 0x3310980,17, 0x3311000,17, 0x3311080,17, 0x3311104,5, 0x3311120,3, 0x3311130,11, 0x3311200,31, 0x3311280,31, 0x3311300,12, 0x3311340,12, 0x3311380,2, 0x3311390,2, 0x33113a0,3, 0x33113b0,3, 0x33113c0,5, 0x33113e0,5, 0x3311400,3, 0x3311410,3, 0x3311420,3, 0x3311430,3, 0x3311440,3, 0x3311450,3, 0x3311460,7, 0x3311800,26, 0x3311880,4, 0x33118c0,25, 0x3311940,6, 0x3311960,1, 0x3311968,2, 0x3311974,11, 0x33119a4,12, 0x3311a00,4, 0x3311b00,43, 0x3311c00,4, 0x3311c20,7, 0x3311c40,3, 0x3311c50,1, 0x3311c60,3, 0x3311e00,32, 0x3311e84,1, 0x3311e90,4, 0x3311ea4,1, 0x3311eb4,14, 0x3311ef0,2, 0x3311f04,1, 0x3311f10,8, 0x3311f34,6, 0x3312000,3, 0x3312010,21, 0x3312080,1, 0x3312094,1, 0x331209c,5, 0x3312100,15, 0x3312140,1, 0x3312180,6, 0x3314000,22, 0x3314080,22, 0x3314100,12, 0x3314140,12, 0x3314200,52, 0x3314300,52, 0x3314400,11, 0x3314440,11, 0x3314480,3, 0x33144a0,6, 0x33144c0,6, 0x33144e0,3, 0x33144f0,3, 0x3314800,9, 0x3314840,15, 0x3314880,15, 0x33148c0,15, 0x3314900,1, 0x3314914,13, 0x3314980,17, 0x3315000,17, 0x3315080,17, 0x3315104,5, 0x3315120,3, 0x3315130,11, 0x3315200,31, 0x3315280,31, 0x3315300,12, 0x3315340,12, 0x3315380,2, 0x3315390,2, 0x33153a0,3, 0x33153b0,3, 0x33153c0,5, 0x33153e0,5, 0x3315400,3, 0x3315410,3, 0x3315420,3, 0x3315430,3, 0x3315440,3, 0x3315450,3, 0x3315460,7, 0x3315800,26, 0x3315880,4, 0x33158c0,25, 0x3315940,6, 0x3315960,1, 0x3315968,2, 0x3315974,11, 0x33159a4,12, 0x3315a00,4, 0x3315b00,43, 0x3315c00,4, 0x3315c20,7, 0x3315c40,3, 0x3315c50,1, 0x3315c60,3, 0x3315e00,32, 0x3315e84,1, 0x3315e90,4, 0x3315ea4,1, 0x3315eb4,14, 0x3315ef0,2, 0x3315f04,1, 0x3315f10,8, 0x3315f34,6, 0x3316000,3, 0x3316010,21, 0x3316080,1, 0x3316094,1, 0x331609c,5, 0x3316100,15, 0x3316140,1, 0x3316180,6, 0x3318000,100, 0x3318200,3, 0x3318210,5, 0x3320000,12, 0x3320040,2, 0x3320050,3, 0x3322000,1006, 0x3323000,31, 0x3323084,6, 0x3324004,1, 0x332400c,3, 0x3324200,23, 0x3324280,23, 0x3324300,1, 0x3324400,1, 0x3324800,122, 0x3324a00,122, 0x3324c04,63, 0x3324d04,1, 0x3324d10,5, 0x3324d40,6, 0x3324d60,5, 0x3326000,1, 0x3326100,1, 0x3326108,3, 0x3326120,2, 0x3326134,8, 0x3326160,2, 0x3326174,8, 0x33261a0,4, 0x3326200,54, 0x3326800,5, 0x3326820,2, 0x3326834,1, 0x332683c,1, 0x3326a00,24, 0x3326a80,24, 0x3326b00,1, 0x3326c00,6, 0x3326c24,5, 0x3326c40,16, 0x3327000,1, 0x3327020,5, 0x3327040,1, 0x3327048,2, 0x3327080,1, 0x3327100,4, 0x3327180,24, 0x3327200,4, 0x3327280,27, 0x3327300,2, 0x332730c,3, 0x3328004,1, 0x332800c,3, 0x3328020,1, 0x3328100,2, 0x3328110,3, 0x3328120,2, 0x3328140,10, 0x3328180,13, 0x3328200,2, 0x3328210,3, 0x3328220,2, 0x3328240,10, 0x3328280,13, 0x3328400,14, 0x3328440,3, 0x3328450,3, 0x3328460,1, 0x3328500,36, 0x3328600,10, 0x3328640,5, 0x3328660,5, 0x3328700,27, 0x3328780,7, 0x33287a0,8, 0x3328800,27, 0x3328880,7, 0x33288a0,8, 0x3328900,27, 0x3328980,7, 0x33289a0,8, 0x3328a00,27, 0x3328a80,7, 0x3328aa0,8, 0x3328b00,48, 0x3328bc4,8, 0x3328bf0,30, 0x3328c80,4, 0x3328cc0,25, 0x3328d40,6, 0x3328d60,1, 0x3328d68,2, 0x3328d74,3, 0x3328e00,8, 0x3328e24,28, 0x3329000,4, 0x3329080,23, 0x3329100,14, 0x3329140,9, 0x3329200,10, 0x3329230,3, 0x3329240,5, 0x3329260,5, 0x3329280,9, 0x3329400,67, 0x3329600,10, 0x3330000,12, 0x3330040,2, 0x3330050,3, 0x3332000,1006, 0x3333000,31, 0x3333084,6, 0x3334004,1, 0x333400c,3, 0x3334200,23, 0x3334280,23, 0x3334300,1, 0x3334400,1, 0x3334800,122, 0x3334a00,122, 0x3334c04,63, 0x3334d04,1, 0x3334d10,5, 0x3334d40,6, 0x3334d60,5, 0x3336000,1, 0x3336100,1, 0x3336108,3, 0x3336120,2, 0x3336134,8, 0x3336160,2, 0x3336174,8, 0x33361a0,4, 0x3336200,54, 0x3336800,5, 0x3336820,2, 0x3336834,1, 0x333683c,1, 0x3336a00,24, 0x3336a80,24, 0x3336b00,1, 0x3336c00,6, 0x3336c24,5, 0x3336c40,16, 0x3337000,1, 0x3337020,5, 0x3337040,1, 0x3337048,2, 0x3337080,1, 0x3337100,4, 0x3337180,24, 0x3337200,4, 0x3337280,27, 0x3337300,2, 0x333730c,3, 0x3338004,1, 0x333800c,3, 0x3338020,1, 0x3338100,2, 0x3338110,3, 0x3338120,2, 0x3338140,10, 0x3338180,13, 0x3338200,2, 0x3338210,3, 0x3338220,2, 0x3338240,10, 0x3338280,13, 0x3338400,14, 0x3338440,3, 0x3338450,3, 0x3338460,1, 0x3338500,36, 0x3338600,10, 0x3338640,5, 0x3338660,5, 0x3338700,27, 0x3338780,7, 0x33387a0,8, 0x3338800,27, 0x3338880,7, 0x33388a0,8, 0x3338900,27, 0x3338980,7, 0x33389a0,8, 0x3338a00,27, 0x3338a80,7, 0x3338aa0,8, 0x3338b00,48, 0x3338bc4,8, 0x3338bf0,30, 0x3338c80,4, 0x3338cc0,25, 0x3338d40,6, 0x3338d60,1, 0x3338d68,2, 0x3338d74,3, 0x3338e00,8, 0x3338e24,28, 0x3339000,4, 0x3339080,23, 0x3339100,14, 0x3339140,9, 0x3339200,10, 0x3339230,3, 0x3339240,5, 0x3339260,5, 0x3339280,9, 0x3339400,67, 0x3339600,10, 0x3400000,1, 0x3400020,3, 0x3400030,2, 0x3400040,3, 0x3400050,2, 0x3400800,53, 0x3400900,3, 0x3400910,13, 0x3400a00,53, 0x3400b00,3, 0x3400b10,13, 0x3400c00,5, 0x3400c20,5, 0x3400c40,18, 0x3401000,6, 0x3401020,4, 0x3401040,16, 0x3402000,20, 0x3402080,15, 0x3402100,20, 0x3402180,15, 0x3402200,23, 0x3402260,7, 0x3402400,11, 0x3402430,3, 0x3402440,3, 0x3402450,3, 0x3402460,24, 0x3402500,11, 0x3402530,3, 0x3402540,3, 0x3402550,3, 0x3402560,24, 0x3402600,11, 0x3402630,3, 0x3402640,3, 0x3402650,3, 0x3402660,24, 0x3402700,11, 0x3402730,3, 0x3402740,3, 0x3402750,3, 0x3402760,24, 0x3402800,4, 0x3402820,16, 0x3402880,10, 0x34028c0,10, 0x3402900,6, 0x3402920,6, 0x3402940,4, 0x3402980,13, 0x34029c0,13, 0x3402a00,9, 0x3403000,14, 0x3403040,9, 0x3403080,6, 0x34030a0,1, 0x34030a8,4, 0x3403100,4, 0x3403200,124, 0x3403400,124, 0x3403600,8, 0x3403624,1, 0x3403644,6, 0x3403664,6, 0x3403680,1, 0x3403688,6, 0x34036a8,22, 0x3404000,1, 0x3404020,3, 0x3404030,2, 0x3404040,3, 0x3404050,2, 0x3404800,53, 0x3404900,3, 0x3404910,13, 0x3404a00,53, 0x3404b00,3, 0x3404b10,13, 0x3404c00,5, 0x3404c20,5, 0x3404c40,18, 0x3405000,6, 0x3405020,4, 0x3405040,16, 0x3406000,20, 0x3406080,15, 0x3406100,20, 0x3406180,15, 0x3406200,23, 0x3406260,7, 0x3406400,11, 0x3406430,3, 0x3406440,3, 0x3406450,3, 0x3406460,24, 0x3406500,11, 0x3406530,3, 0x3406540,3, 0x3406550,3, 0x3406560,24, 0x3406600,11, 0x3406630,3, 0x3406640,3, 0x3406650,3, 0x3406660,24, 0x3406700,11, 0x3406730,3, 0x3406740,3, 0x3406750,3, 0x3406760,24, 0x3406800,4, 0x3406820,16, 0x3406880,10, 0x34068c0,10, 0x3406900,6, 0x3406920,6, 0x3406940,4, 0x3406980,13, 0x34069c0,13, 0x3406a00,9, 0x3407000,14, 0x3407040,9, 0x3407080,6, 0x34070a0,1, 0x34070a8,4, 0x3407100,4, 0x3407200,124, 0x3407400,124, 0x3407600,8, 0x3407624,1, 0x3407644,6, 0x3407664,6, 0x3407680,1, 0x3407688,6, 0x34076a8,22, 0x3408000,84, 0x3408180,20, 0x3408200,5, 0x3408400,11, 0x3408440,11, 0x3408480,19, 0x3408500,19, 0x3408580,24, 0x3408600,13, 0x3408800,84, 0x3408980,20, 0x3408a00,5, 0x3408c00,11, 0x3408c40,11, 0x3408c80,19, 0x3408d00,19, 0x3408d80,24, 0x3408e00,13, 0x3409000,10, 0x3409040,5, 0x3409080,10, 0x34090c0,5, 0x3409100,5, 0x3409200,11, 0x3409230,3, 0x3409240,5, 0x3409260,5, 0x3409280,32, 0x3409400,13, 0x3409440,13, 0x3409480,9, 0x34094c0,1, 0x34094d0,5, 0x34094f0,21, 0x3409800,10, 0x3409840,5, 0x3409880,10, 0x34098c0,5, 0x3409900,5, 0x3409a00,11, 0x3409a30,3, 0x3409a40,5, 0x3409a60,5, 0x3409a80,32, 0x3409c00,13, 0x3409c40,13, 0x3409c80,9, 0x3409cc0,1, 0x3409cd0,5, 0x3409cf0,21, 0x340a000,14, 0x340a040,9, 0x340a080,6, 0x340a0a0,1, 0x340a0a8,4, 0x340a100,7, 0x340a120,3, 0x340a130,25, 0x340c000,26, 0x340c06c,2, 0x340c080,3, 0x340c090,17, 0x340c100,26, 0x340c16c,2, 0x340c180,3, 0x340c190,17, 0x340c200,26, 0x340c26c,2, 0x340c280,3, 0x340c290,17, 0x340c300,26, 0x340c36c,2, 0x340c380,3, 0x340c390,17, 0x340c400,26, 0x340c46c,2, 0x340c480,3, 0x340c490,17, 0x340c500,26, 0x340c56c,2, 0x340c580,3, 0x340c590,17, 0x340c600,26, 0x340c66c,2, 0x340c680,3, 0x340c690,17, 0x340c700,26, 0x340c76c,2, 0x340c780,3, 0x340c790,17, 0x340c800,12, 0x340c844,1, 0x340c854,8, 0x340c880,7, 0x340c8a0,2, 0x340c8ac,2, 0x340c8c0,26, 0x340c980,4, 0x340c9a0,5, 0x340c9c0,1, 0x340d000,3, 0x340d010,3, 0x340d020,3, 0x340d030,3, 0x340d040,3, 0x340d050,3, 0x340d060,3, 0x340d070,3, 0x340d080,5, 0x340d0a0,5, 0x340d0c0,5, 0x340d0e0,5, 0x340d100,5, 0x340d120,5, 0x340d140,5, 0x340d160,5, 0x340d200,68, 0x340d400,1, 0x340d804,1, 0x340d844,54, 0x340da00,11, 0x340da40,11, 0x340da80,11, 0x340dac0,11, 0x340db00,11, 0x340db40,11, 0x340db80,11, 0x340dbc0,11, 0x340dc00,28, 0x340dc80,5, 0x340dca0,2, 0x340e000,4, 0x340e020,6, 0x340e040,6, 0x340e060,14, 0x340e100,26, 0x340e180,15, 0x340e200,14, 0x340e240,9, 0x340e280,6, 0x340e2a0,1, 0x340e2a8,4, 0x340e300,14, 0x340e340,9, 0x340e380,6, 0x340e3a0,4, 0x340e400,9, 0x3420000,1, 0x3421000,977, 0x3422000,161, 0x3423000,977, 0x3424000,977, 0x3425000,977, 0x3426000,977, 0x3427000,977, 0x3428000,977, 0x3429000,977, 0x342a000,977, 0x342b000,161, 0x342c000,12, 0x342c040,14, 0x342c080,20, 0x342c104,1, 0x342c10c,4, 0x342c200,12, 0x342c240,14, 0x342c280,20, 0x342c304,1, 0x342c30c,4, 0x342c400,12, 0x342c440,14, 0x342c480,20, 0x342c504,1, 0x342c50c,4, 0x342c600,12, 0x342c640,14, 0x342c680,20, 0x342c704,1, 0x342c70c,4, 0x342c800,12, 0x342c840,14, 0x342c880,20, 0x342c904,1, 0x342c90c,4, 0x342ca00,12, 0x342ca40,14, 0x342ca80,20, 0x342cb04,1, 0x342cb0c,4, 0x342cc00,12, 0x342cc40,14, 0x342cc80,20, 0x342cd04,1, 0x342cd0c,4, 0x342ce00,12, 0x342ce40,14, 0x342ce80,20, 0x342cf04,1, 0x342cf0c,4, 0x342d000,12, 0x342d040,14, 0x342d080,20, 0x342d104,1, 0x342d10c,4, 0x342d200,17, 0x342d250,2, 0x342d260,4, 0x342e000,1, 0x342e014,1, 0x342e01c,11, 0x342e060,9, 0x342e094,1, 0x342e09c,11, 0x342e0e0,15, 0x342e200,12, 0x342e240,13, 0x342e280,3, 0x342e290,1, 0x3480000,500, 0x3480800,2, 0x3480820,15, 0x3481000,500, 0x3481800,8, 0x3481824,6, 0x3481840,8, 0x3481880,7, 0x34818a0,7, 0x34818c0,7, 0x34818e0,7, 0x3481900,8, 0x3481924,16, 0x3481980,12, 0x3482000,500, 0x3482800,2, 0x3482820,15, 0x3483000,500, 0x3483800,8, 0x3483824,6, 0x3483840,8, 0x3483880,7, 0x34838a0,7, 0x34838c0,7, 0x34838e0,7, 0x3483900,8, 0x3483924,16, 0x3483980,12, 0x3484004,5, 0x3484200,26, 0x3484280,4, 0x34842c0,25, 0x3484340,6, 0x3484360,1, 0x3484368,2, 0x3484374,11, 0x34843a4,10, 0x3484400,1, 0x3488000,52, 0x3488400,82, 0x3488560,6, 0x3488600,41, 0x3488700,2, 0x3488720,19, 0x3488800,25, 0x3488880,1, 0x3488900,28, 0x3488980,1, 0x3489000,52, 0x3489400,82, 0x3489560,6, 0x3489600,41, 0x3489700,2, 0x3489720,19, 0x3489800,25, 0x3489880,1, 0x3489900,28, 0x3489980,1, 0x348a000,7, 0x348a080,6, 0x348a0a0,6, 0x348a0c0,1, 0x348a100,4, 0x348a120,9, 0x348c000,3, 0x348c010,6, 0x348c200,7, 0x348c220,6, 0x348c240,7, 0x348c260,6, 0x348c280,2, 0x348c28c,2, 0x348c2a0,2, 0x348c2ac,2, 0x348c2c0,7, 0x348c2e0,7, 0x348c300,2, 0x348c30c,2, 0x348c320,6, 0x348c400,3, 0x348c440,12, 0x348c800,7, 0x348c820,14, 0x348c880,16, 0x348c900,7, 0x348c920,14, 0x348c980,16, 0x348ca00,6, 0x348ca20,7, 0x348cc00,3, 0x34a0000,3, 0x34a0800,7, 0x34a0820,6, 0x34a0840,6, 0x34a0880,1, 0x34a0894,1, 0x34a089c,2, 0x34a08c0,9, 0x34a0900,18, 0x34a0a00,36, 0x34a0b00,22, 0x34a0b80,18, 0x34a0c00,3, 0x34a0c10,3, 0x34a1000,3, 0x34a1010,2, 0x34a1080,20, 0x34a1100,1, 0x34a1200,26, 0x34a1280,4, 0x34a12c0,25, 0x34a1340,6, 0x34a1360,1, 0x34a1368,2, 0x34a1374,11, 0x34a13a4,4, 0x34a1400,1, 0x34b0000,11, 0x34b0030,19, 0x34b0080,17, 0x34b0100,11, 0x34b0130,19, 0x34b0180,17, 0x34b0200,3, 0x34b0214,1, 0x34b021c,1, 0x34b0280,3, 0x34b0294,1, 0x34b029c,1, 0x34b0300,18, 0x34b0380,18, 0x34b0400,18, 0x34b0480,18, 0x34b0500,18, 0x34b0580,18, 0x34b0600,18, 0x34b0680,18, 0x34b0700,13, 0x34b0738,6, 0x34b0780,13, 0x34b07b8,6, 0x34b0800,1, 0x34b0808,22, 0x34b0880,1, 0x34b0894,13, 0x34b0900,3, 0x34b0910,3, 0x34b0920,3, 0x34b0940,3, 0x34b0954,1, 0x34b095c,1, 0x34b0a00,52, 0x34b0c00,4, 0x34b0d00,34, 0x34b0e00,4, 0x34b0e80,30, 0x34b0f00,1, 0x34b0f40,5, 0x34b0f60,5, 0x34b0f80,6, 0x34b1000,14, 0x34b1040,4, 0x34b1060,17, 0x34b10c0,6, 0x34b10e0,1, 0x34b10e8,2, 0x34b10f4,11, 0x34b1124,17, 0x34b1200,3, 0x34b1210,3, 0x34b1220,3, 0x34b1230,3, 0x34b1240,3, 0x34b1250,3, 0x34b2000,20, 0x34b2080,3, 0x34b2090,1, 0x34b2098,2, 0x34c0000,500, 0x34c0800,2, 0x34c0820,15, 0x34c1000,500, 0x34c1800,8, 0x34c1824,6, 0x34c1840,8, 0x34c1880,7, 0x34c18a0,7, 0x34c18c0,7, 0x34c18e0,7, 0x34c1900,8, 0x34c1924,16, 0x34c1980,12, 0x34c2000,500, 0x34c2800,2, 0x34c2820,15, 0x34c3000,500, 0x34c3800,8, 0x34c3824,6, 0x34c3840,8, 0x34c3880,7, 0x34c38a0,7, 0x34c38c0,7, 0x34c38e0,7, 0x34c3900,8, 0x34c3924,16, 0x34c3980,12, 0x34c4004,5, 0x34c4200,26, 0x34c4280,4, 0x34c42c0,25, 0x34c4340,6, 0x34c4360,1, 0x34c4368,2, 0x34c4374,11, 0x34c43a4,10, 0x34c4400,1, 0x34c8000,52, 0x34c8400,82, 0x34c8560,6, 0x34c8600,41, 0x34c8700,2, 0x34c8720,19, 0x34c8800,25, 0x34c8880,1, 0x34c8900,28, 0x34c8980,1, 0x34c9000,52, 0x34c9400,82, 0x34c9560,6, 0x34c9600,41, 0x34c9700,2, 0x34c9720,19, 0x34c9800,25, 0x34c9880,1, 0x34c9900,28, 0x34c9980,1, 0x34ca000,7, 0x34ca080,6, 0x34ca0a0,6, 0x34ca0c0,1, 0x34ca100,4, 0x34ca120,9, 0x34cc000,3, 0x34cc010,6, 0x34cc200,7, 0x34cc220,6, 0x34cc240,7, 0x34cc260,6, 0x34cc280,2, 0x34cc28c,2, 0x34cc2a0,2, 0x34cc2ac,2, 0x34cc2c0,7, 0x34cc2e0,7, 0x34cc300,2, 0x34cc30c,2, 0x34cc320,6, 0x34cc400,3, 0x34cc440,12, 0x34cc800,7, 0x34cc820,14, 0x34cc880,16, 0x34cc900,7, 0x34cc920,14, 0x34cc980,16, 0x34cca00,6, 0x34cca20,7, 0x34ccc00,3, 0x34e0000,3, 0x34e0800,7, 0x34e0820,6, 0x34e0840,6, 0x34e0880,1, 0x34e0894,1, 0x34e089c,2, 0x34e08c0,9, 0x34e0900,18, 0x34e0a00,36, 0x34e0b00,22, 0x34e0b80,18, 0x34e0c00,3, 0x34e0c10,3, 0x34e1000,3, 0x34e1010,2, 0x34e1080,20, 0x34e1100,1, 0x34e1200,26, 0x34e1280,4, 0x34e12c0,25, 0x34e1340,6, 0x34e1360,1, 0x34e1368,2, 0x34e1374,11, 0x34e13a4,4, 0x34e1400,1, 0x34f0000,11, 0x34f0030,19, 0x34f0080,17, 0x34f0100,11, 0x34f0130,19, 0x34f0180,17, 0x34f0200,3, 0x34f0214,1, 0x34f021c,1, 0x34f0280,3, 0x34f0294,1, 0x34f029c,1, 0x34f0300,18, 0x34f0380,18, 0x34f0400,18, 0x34f0480,18, 0x34f0500,18, 0x34f0580,18, 0x34f0600,18, 0x34f0680,18, 0x34f0700,13, 0x34f0738,6, 0x34f0780,13, 0x34f07b8,6, 0x34f0800,1, 0x34f0808,22, 0x34f0880,1, 0x34f0894,13, 0x34f0900,3, 0x34f0910,3, 0x34f0920,3, 0x34f0940,3, 0x34f0954,1, 0x34f095c,1, 0x34f0a00,52, 0x34f0c00,4, 0x34f0d00,34, 0x34f0e00,4, 0x34f0e80,30, 0x34f0f00,1, 0x34f0f40,5, 0x34f0f60,5, 0x34f0f80,6, 0x34f1000,14, 0x34f1040,4, 0x34f1060,17, 0x34f10c0,6, 0x34f10e0,1, 0x34f10e8,2, 0x34f10f4,11, 0x34f1124,17, 0x34f1200,3, 0x34f1210,3, 0x34f1220,3, 0x34f1230,3, 0x34f1240,3, 0x34f1250,3, 0x34f2000,20, 0x34f2080,3, 0x34f2090,1, 0x34f2098,2, 0x3500000,13, 0x3500038,4, 0x3500050,3, 0x3500060,3, 0x3500070,16, 0x35000c0,5, 0x3500400,14, 0x3500440,2, 0x350044c,3, 0x3500480,14, 0x35004c0,2, 0x35004cc,3, 0x3500500,1, 0x3500508,15, 0x3500560,2, 0x350056c,2, 0x3500600,4, 0x3500680,27, 0x3500800,2, 0x3500900,32, 0x3500984,2, 0x3500990,4, 0x3500a00,26, 0x3500a80,4, 0x3500ac0,25, 0x3500b40,6, 0x3500b60,1, 0x3500b68,2, 0x3500b74,11, 0x3500ba4,8, 0x3500c00,9, 0x3500c40,11, 0x3500c80,23, 0x3500ce0,15, 0x3500d20,15, 0x3500d60,1, 0x3501000,13, 0x3501038,4, 0x3501050,3, 0x3501060,3, 0x3501070,16, 0x35010c0,5, 0x3501400,14, 0x3501440,2, 0x350144c,3, 0x3501480,14, 0x35014c0,2, 0x35014cc,3, 0x3501500,1, 0x3501508,15, 0x3501560,2, 0x350156c,2, 0x3501600,4, 0x3501680,27, 0x3501800,2, 0x3501900,32, 0x3501984,2, 0x3501990,4, 0x3501a00,26, 0x3501a80,4, 0x3501ac0,25, 0x3501b40,6, 0x3501b60,1, 0x3501b68,2, 0x3501b74,11, 0x3501ba4,8, 0x3501c00,9, 0x3501c40,11, 0x3501c80,23, 0x3501ce0,15, 0x3501d20,15, 0x3501d60,1, 0x3502000,1, 0x3502100,36, 0x3502200,7, 0x3510000,22, 0x3510080,22, 0x3510100,12, 0x3510140,12, 0x3510200,52, 0x3510300,52, 0x3510400,11, 0x3510440,11, 0x3510480,3, 0x35104a0,6, 0x35104c0,6, 0x35104e0,3, 0x35104f0,3, 0x3510800,9, 0x3510840,15, 0x3510880,15, 0x35108c0,15, 0x3510900,1, 0x3510914,13, 0x3510980,17, 0x3511000,17, 0x3511080,17, 0x3511104,5, 0x3511120,3, 0x3511130,11, 0x3511200,31, 0x3511280,31, 0x3511300,12, 0x3511340,12, 0x3511380,2, 0x3511390,2, 0x35113a0,3, 0x35113b0,3, 0x35113c0,5, 0x35113e0,5, 0x3511400,3, 0x3511410,3, 0x3511420,3, 0x3511430,3, 0x3511440,3, 0x3511450,3, 0x3511460,7, 0x3511800,26, 0x3511880,4, 0x35118c0,25, 0x3511940,6, 0x3511960,1, 0x3511968,2, 0x3511974,11, 0x35119a4,12, 0x3511a00,4, 0x3511b00,43, 0x3511c00,4, 0x3511c20,7, 0x3511c40,3, 0x3511c50,1, 0x3511c60,3, 0x3511e00,32, 0x3511e84,1, 0x3511e90,4, 0x3511ea4,1, 0x3511eb4,14, 0x3511ef0,2, 0x3511f04,1, 0x3511f10,8, 0x3511f34,6, 0x3512000,3, 0x3512010,21, 0x3512080,1, 0x3512094,1, 0x351209c,5, 0x3512100,15, 0x3512140,1, 0x3512180,6, 0x3514000,22, 0x3514080,22, 0x3514100,12, 0x3514140,12, 0x3514200,52, 0x3514300,52, 0x3514400,11, 0x3514440,11, 0x3514480,3, 0x35144a0,6, 0x35144c0,6, 0x35144e0,3, 0x35144f0,3, 0x3514800,9, 0x3514840,15, 0x3514880,15, 0x35148c0,15, 0x3514900,1, 0x3514914,13, 0x3514980,17, 0x3515000,17, 0x3515080,17, 0x3515104,5, 0x3515120,3, 0x3515130,11, 0x3515200,31, 0x3515280,31, 0x3515300,12, 0x3515340,12, 0x3515380,2, 0x3515390,2, 0x35153a0,3, 0x35153b0,3, 0x35153c0,5, 0x35153e0,5, 0x3515400,3, 0x3515410,3, 0x3515420,3, 0x3515430,3, 0x3515440,3, 0x3515450,3, 0x3515460,7, 0x3515800,26, 0x3515880,4, 0x35158c0,25, 0x3515940,6, 0x3515960,1, 0x3515968,2, 0x3515974,11, 0x35159a4,12, 0x3515a00,4, 0x3515b00,43, 0x3515c00,4, 0x3515c20,7, 0x3515c40,3, 0x3515c50,1, 0x3515c60,3, 0x3515e00,32, 0x3515e84,1, 0x3515e90,4, 0x3515ea4,1, 0x3515eb4,14, 0x3515ef0,2, 0x3515f04,1, 0x3515f10,8, 0x3515f34,6, 0x3516000,3, 0x3516010,21, 0x3516080,1, 0x3516094,1, 0x351609c,5, 0x3516100,15, 0x3516140,1, 0x3516180,6, 0x3518000,100, 0x3518200,3, 0x3518210,5, 0x3520000,12, 0x3520040,2, 0x3520050,3, 0x3522000,1006, 0x3523000,31, 0x3523084,6, 0x3524004,1, 0x352400c,3, 0x3524200,23, 0x3524280,23, 0x3524300,1, 0x3524400,1, 0x3524800,122, 0x3524a00,122, 0x3524c04,63, 0x3524d04,1, 0x3524d10,5, 0x3524d40,6, 0x3524d60,5, 0x3526000,1, 0x3526100,1, 0x3526108,3, 0x3526120,2, 0x3526134,8, 0x3526160,2, 0x3526174,8, 0x35261a0,4, 0x3526200,54, 0x3526800,5, 0x3526820,2, 0x3526834,1, 0x352683c,1, 0x3526a00,24, 0x3526a80,24, 0x3526b00,1, 0x3526c00,6, 0x3526c24,5, 0x3526c40,16, 0x3527000,1, 0x3527020,5, 0x3527040,1, 0x3527048,2, 0x3527080,1, 0x3527100,4, 0x3527180,24, 0x3527200,4, 0x3527280,27, 0x3527300,2, 0x352730c,3, 0x3528004,1, 0x352800c,3, 0x3528020,1, 0x3528100,2, 0x3528110,3, 0x3528120,2, 0x3528140,10, 0x3528180,13, 0x3528200,2, 0x3528210,3, 0x3528220,2, 0x3528240,10, 0x3528280,13, 0x3528400,14, 0x3528440,3, 0x3528450,3, 0x3528460,1, 0x3528500,36, 0x3528600,10, 0x3528640,5, 0x3528660,5, 0x3528700,27, 0x3528780,7, 0x35287a0,8, 0x3528800,27, 0x3528880,7, 0x35288a0,8, 0x3528900,27, 0x3528980,7, 0x35289a0,8, 0x3528a00,27, 0x3528a80,7, 0x3528aa0,8, 0x3528b00,48, 0x3528bc4,8, 0x3528bf0,30, 0x3528c80,4, 0x3528cc0,25, 0x3528d40,6, 0x3528d60,1, 0x3528d68,2, 0x3528d74,3, 0x3528e00,8, 0x3528e24,28, 0x3529000,4, 0x3529080,23, 0x3529100,14, 0x3529140,9, 0x3529200,10, 0x3529230,3, 0x3529240,5, 0x3529260,5, 0x3529280,9, 0x3529400,67, 0x3529600,10, 0x3530000,12, 0x3530040,2, 0x3530050,3, 0x3532000,1006, 0x3533000,31, 0x3533084,6, 0x3534004,1, 0x353400c,3, 0x3534200,23, 0x3534280,23, 0x3534300,1, 0x3534400,1, 0x3534800,122, 0x3534a00,122, 0x3534c04,63, 0x3534d04,1, 0x3534d10,5, 0x3534d40,6, 0x3534d60,5, 0x3536000,1, 0x3536100,1, 0x3536108,3, 0x3536120,2, 0x3536134,8, 0x3536160,2, 0x3536174,8, 0x35361a0,4, 0x3536200,54, 0x3536800,5, 0x3536820,2, 0x3536834,1, 0x353683c,1, 0x3536a00,24, 0x3536a80,24, 0x3536b00,1, 0x3536c00,6, 0x3536c24,5, 0x3536c40,16, 0x3537000,1, 0x3537020,5, 0x3537040,1, 0x3537048,2, 0x3537080,1, 0x3537100,4, 0x3537180,24, 0x3537200,4, 0x3537280,27, 0x3537300,2, 0x353730c,3, 0x3538004,1, 0x353800c,3, 0x3538020,1, 0x3538100,2, 0x3538110,3, 0x3538120,2, 0x3538140,10, 0x3538180,13, 0x3538200,2, 0x3538210,3, 0x3538220,2, 0x3538240,10, 0x3538280,13, 0x3538400,14, 0x3538440,3, 0x3538450,3, 0x3538460,1, 0x3538500,36, 0x3538600,10, 0x3538640,5, 0x3538660,5, 0x3538700,27, 0x3538780,7, 0x35387a0,8, 0x3538800,27, 0x3538880,7, 0x35388a0,8, 0x3538900,27, 0x3538980,7, 0x35389a0,8, 0x3538a00,27, 0x3538a80,7, 0x3538aa0,8, 0x3538b00,48, 0x3538bc4,8, 0x3538bf0,30, 0x3538c80,4, 0x3538cc0,25, 0x3538d40,6, 0x3538d60,1, 0x3538d68,2, 0x3538d74,3, 0x3538e00,8, 0x3538e24,28, 0x3539000,4, 0x3539080,23, 0x3539100,14, 0x3539140,9, 0x3539200,10, 0x3539230,3, 0x3539240,5, 0x3539260,5, 0x3539280,9, 0x3539400,67, 0x3539600,10, 0x3600000,1, 0x3600020,3, 0x3600030,2, 0x3600040,3, 0x3600050,2, 0x3600800,53, 0x3600900,3, 0x3600910,13, 0x3600a00,53, 0x3600b00,3, 0x3600b10,13, 0x3600c00,5, 0x3600c20,5, 0x3600c40,18, 0x3601000,6, 0x3601020,4, 0x3601040,16, 0x3602000,20, 0x3602080,15, 0x3602100,20, 0x3602180,15, 0x3602200,23, 0x3602260,7, 0x3602400,11, 0x3602430,3, 0x3602440,3, 0x3602450,3, 0x3602460,24, 0x3602500,11, 0x3602530,3, 0x3602540,3, 0x3602550,3, 0x3602560,24, 0x3602600,11, 0x3602630,3, 0x3602640,3, 0x3602650,3, 0x3602660,24, 0x3602700,11, 0x3602730,3, 0x3602740,3, 0x3602750,3, 0x3602760,24, 0x3602800,4, 0x3602820,16, 0x3602880,10, 0x36028c0,10, 0x3602900,6, 0x3602920,6, 0x3602940,4, 0x3602980,13, 0x36029c0,13, 0x3602a00,9, 0x3603000,14, 0x3603040,9, 0x3603080,6, 0x36030a0,1, 0x36030a8,4, 0x3603100,4, 0x3603200,124, 0x3603400,124, 0x3603600,8, 0x3603624,1, 0x3603644,6, 0x3603664,6, 0x3603680,1, 0x3603688,6, 0x36036a8,22, 0x3604000,1, 0x3604020,3, 0x3604030,2, 0x3604040,3, 0x3604050,2, 0x3604800,53, 0x3604900,3, 0x3604910,13, 0x3604a00,53, 0x3604b00,3, 0x3604b10,13, 0x3604c00,5, 0x3604c20,5, 0x3604c40,18, 0x3605000,6, 0x3605020,4, 0x3605040,16, 0x3606000,20, 0x3606080,15, 0x3606100,20, 0x3606180,15, 0x3606200,23, 0x3606260,7, 0x3606400,11, 0x3606430,3, 0x3606440,3, 0x3606450,3, 0x3606460,24, 0x3606500,11, 0x3606530,3, 0x3606540,3, 0x3606550,3, 0x3606560,24, 0x3606600,11, 0x3606630,3, 0x3606640,3, 0x3606650,3, 0x3606660,24, 0x3606700,11, 0x3606730,3, 0x3606740,3, 0x3606750,3, 0x3606760,24, 0x3606800,4, 0x3606820,16, 0x3606880,10, 0x36068c0,10, 0x3606900,6, 0x3606920,6, 0x3606940,4, 0x3606980,13, 0x36069c0,13, 0x3606a00,9, 0x3607000,14, 0x3607040,9, 0x3607080,6, 0x36070a0,1, 0x36070a8,4, 0x3607100,4, 0x3607200,124, 0x3607400,124, 0x3607600,8, 0x3607624,1, 0x3607644,6, 0x3607664,6, 0x3607680,1, 0x3607688,6, 0x36076a8,22, 0x3608000,84, 0x3608180,20, 0x3608200,5, 0x3608400,11, 0x3608440,11, 0x3608480,19, 0x3608500,19, 0x3608580,24, 0x3608600,13, 0x3608800,84, 0x3608980,20, 0x3608a00,5, 0x3608c00,11, 0x3608c40,11, 0x3608c80,19, 0x3608d00,19, 0x3608d80,24, 0x3608e00,13, 0x3609000,10, 0x3609040,5, 0x3609080,10, 0x36090c0,5, 0x3609100,5, 0x3609200,11, 0x3609230,3, 0x3609240,5, 0x3609260,5, 0x3609280,32, 0x3609400,13, 0x3609440,13, 0x3609480,9, 0x36094c0,1, 0x36094d0,5, 0x36094f0,21, 0x3609800,10, 0x3609840,5, 0x3609880,10, 0x36098c0,5, 0x3609900,5, 0x3609a00,11, 0x3609a30,3, 0x3609a40,5, 0x3609a60,5, 0x3609a80,32, 0x3609c00,13, 0x3609c40,13, 0x3609c80,9, 0x3609cc0,1, 0x3609cd0,5, 0x3609cf0,21, 0x360a000,14, 0x360a040,9, 0x360a080,6, 0x360a0a0,1, 0x360a0a8,4, 0x360a100,7, 0x360a120,3, 0x360a130,25, 0x360c000,26, 0x360c06c,2, 0x360c080,3, 0x360c090,17, 0x360c100,26, 0x360c16c,2, 0x360c180,3, 0x360c190,17, 0x360c200,26, 0x360c26c,2, 0x360c280,3, 0x360c290,17, 0x360c300,26, 0x360c36c,2, 0x360c380,3, 0x360c390,17, 0x360c400,26, 0x360c46c,2, 0x360c480,3, 0x360c490,17, 0x360c500,26, 0x360c56c,2, 0x360c580,3, 0x360c590,17, 0x360c600,26, 0x360c66c,2, 0x360c680,3, 0x360c690,17, 0x360c700,26, 0x360c76c,2, 0x360c780,3, 0x360c790,17, 0x360c800,12, 0x360c844,1, 0x360c854,8, 0x360c880,7, 0x360c8a0,2, 0x360c8ac,2, 0x360c8c0,26, 0x360c980,4, 0x360c9a0,5, 0x360c9c0,1, 0x360d000,3, 0x360d010,3, 0x360d020,3, 0x360d030,3, 0x360d040,3, 0x360d050,3, 0x360d060,3, 0x360d070,3, 0x360d080,5, 0x360d0a0,5, 0x360d0c0,5, 0x360d0e0,5, 0x360d100,5, 0x360d120,5, 0x360d140,5, 0x360d160,5, 0x360d200,68, 0x360d400,1, 0x360d804,1, 0x360d844,54, 0x360da00,11, 0x360da40,11, 0x360da80,11, 0x360dac0,11, 0x360db00,11, 0x360db40,11, 0x360db80,11, 0x360dbc0,11, 0x360dc00,28, 0x360dc80,5, 0x360dca0,2, 0x360e000,4, 0x360e020,6, 0x360e040,6, 0x360e060,14, 0x360e100,26, 0x360e180,15, 0x360e200,14, 0x360e240,9, 0x360e280,6, 0x360e2a0,1, 0x360e2a8,4, 0x360e300,14, 0x360e340,9, 0x360e380,6, 0x360e3a0,4, 0x360e400,9, 0x3620000,1, 0x3621000,977, 0x3622000,161, 0x3623000,977, 0x3624000,977, 0x3625000,977, 0x3626000,977, 0x3627000,977, 0x3628000,977, 0x3629000,977, 0x362a000,977, 0x362b000,161, 0x362c000,12, 0x362c040,14, 0x362c080,20, 0x362c104,1, 0x362c10c,4, 0x362c200,12, 0x362c240,14, 0x362c280,20, 0x362c304,1, 0x362c30c,4, 0x362c400,12, 0x362c440,14, 0x362c480,20, 0x362c504,1, 0x362c50c,4, 0x362c600,12, 0x362c640,14, 0x362c680,20, 0x362c704,1, 0x362c70c,4, 0x362c800,12, 0x362c840,14, 0x362c880,20, 0x362c904,1, 0x362c90c,4, 0x362ca00,12, 0x362ca40,14, 0x362ca80,20, 0x362cb04,1, 0x362cb0c,4, 0x362cc00,12, 0x362cc40,14, 0x362cc80,20, 0x362cd04,1, 0x362cd0c,4, 0x362ce00,12, 0x362ce40,14, 0x362ce80,20, 0x362cf04,1, 0x362cf0c,4, 0x362d000,12, 0x362d040,14, 0x362d080,20, 0x362d104,1, 0x362d10c,4, 0x362d200,17, 0x362d250,2, 0x362d260,4, 0x362e000,1, 0x362e014,1, 0x362e01c,11, 0x362e060,9, 0x362e094,1, 0x362e09c,11, 0x362e0e0,15, 0x362e200,12, 0x362e240,13, 0x362e280,3, 0x362e290,1, 0x3680000,500, 0x3680800,2, 0x3680820,15, 0x3681000,500, 0x3681800,8, 0x3681824,6, 0x3681840,8, 0x3681880,7, 0x36818a0,7, 0x36818c0,7, 0x36818e0,7, 0x3681900,8, 0x3681924,16, 0x3681980,12, 0x3682000,500, 0x3682800,2, 0x3682820,15, 0x3683000,500, 0x3683800,8, 0x3683824,6, 0x3683840,8, 0x3683880,7, 0x36838a0,7, 0x36838c0,7, 0x36838e0,7, 0x3683900,8, 0x3683924,16, 0x3683980,12, 0x3684004,5, 0x3684200,26, 0x3684280,4, 0x36842c0,25, 0x3684340,6, 0x3684360,1, 0x3684368,2, 0x3684374,11, 0x36843a4,10, 0x3684400,1, 0x3688000,52, 0x3688400,82, 0x3688560,6, 0x3688600,41, 0x3688700,2, 0x3688720,19, 0x3688800,25, 0x3688880,1, 0x3688900,28, 0x3688980,1, 0x3689000,52, 0x3689400,82, 0x3689560,6, 0x3689600,41, 0x3689700,2, 0x3689720,19, 0x3689800,25, 0x3689880,1, 0x3689900,28, 0x3689980,1, 0x368a000,7, 0x368a080,6, 0x368a0a0,6, 0x368a0c0,1, 0x368a100,4, 0x368a120,9, 0x368c000,3, 0x368c010,6, 0x368c200,7, 0x368c220,6, 0x368c240,7, 0x368c260,6, 0x368c280,2, 0x368c28c,2, 0x368c2a0,2, 0x368c2ac,2, 0x368c2c0,7, 0x368c2e0,7, 0x368c300,2, 0x368c30c,2, 0x368c320,6, 0x368c400,3, 0x368c440,12, 0x368c800,7, 0x368c820,14, 0x368c880,16, 0x368c900,7, 0x368c920,14, 0x368c980,16, 0x368ca00,6, 0x368ca20,7, 0x368cc00,3, 0x36a0000,3, 0x36a0800,7, 0x36a0820,6, 0x36a0840,6, 0x36a0880,1, 0x36a0894,1, 0x36a089c,2, 0x36a08c0,9, 0x36a0900,18, 0x36a0a00,36, 0x36a0b00,22, 0x36a0b80,18, 0x36a0c00,3, 0x36a0c10,3, 0x36a1000,3, 0x36a1010,2, 0x36a1080,20, 0x36a1100,1, 0x36a1200,26, 0x36a1280,4, 0x36a12c0,25, 0x36a1340,6, 0x36a1360,1, 0x36a1368,2, 0x36a1374,11, 0x36a13a4,4, 0x36a1400,1, 0x36b0000,11, 0x36b0030,19, 0x36b0080,17, 0x36b0100,11, 0x36b0130,19, 0x36b0180,17, 0x36b0200,3, 0x36b0214,1, 0x36b021c,1, 0x36b0280,3, 0x36b0294,1, 0x36b029c,1, 0x36b0300,18, 0x36b0380,18, 0x36b0400,18, 0x36b0480,18, 0x36b0500,18, 0x36b0580,18, 0x36b0600,18, 0x36b0680,18, 0x36b0700,13, 0x36b0738,6, 0x36b0780,13, 0x36b07b8,6, 0x36b0800,1, 0x36b0808,22, 0x36b0880,1, 0x36b0894,13, 0x36b0900,3, 0x36b0910,3, 0x36b0920,3, 0x36b0940,3, 0x36b0954,1, 0x36b095c,1, 0x36b0a00,52, 0x36b0c00,4, 0x36b0d00,34, 0x36b0e00,4, 0x36b0e80,30, 0x36b0f00,1, 0x36b0f40,5, 0x36b0f60,5, 0x36b0f80,6, 0x36b1000,14, 0x36b1040,4, 0x36b1060,17, 0x36b10c0,6, 0x36b10e0,1, 0x36b10e8,2, 0x36b10f4,11, 0x36b1124,17, 0x36b1200,3, 0x36b1210,3, 0x36b1220,3, 0x36b1230,3, 0x36b1240,3, 0x36b1250,3, 0x36b2000,20, 0x36b2080,3, 0x36b2090,1, 0x36b2098,2, 0x36c0000,500, 0x36c0800,2, 0x36c0820,15, 0x36c1000,500, 0x36c1800,8, 0x36c1824,6, 0x36c1840,8, 0x36c1880,7, 0x36c18a0,7, 0x36c18c0,7, 0x36c18e0,7, 0x36c1900,8, 0x36c1924,16, 0x36c1980,12, 0x36c2000,500, 0x36c2800,2, 0x36c2820,15, 0x36c3000,500, 0x36c3800,8, 0x36c3824,6, 0x36c3840,8, 0x36c3880,7, 0x36c38a0,7, 0x36c38c0,7, 0x36c38e0,7, 0x36c3900,8, 0x36c3924,16, 0x36c3980,12, 0x36c4004,5, 0x36c4200,26, 0x36c4280,4, 0x36c42c0,25, 0x36c4340,6, 0x36c4360,1, 0x36c4368,2, 0x36c4374,11, 0x36c43a4,10, 0x36c4400,1, 0x36c8000,52, 0x36c8400,82, 0x36c8560,6, 0x36c8600,41, 0x36c8700,2, 0x36c8720,19, 0x36c8800,25, 0x36c8880,1, 0x36c8900,28, 0x36c8980,1, 0x36c9000,52, 0x36c9400,82, 0x36c9560,6, 0x36c9600,41, 0x36c9700,2, 0x36c9720,19, 0x36c9800,25, 0x36c9880,1, 0x36c9900,28, 0x36c9980,1, 0x36ca000,7, 0x36ca080,6, 0x36ca0a0,6, 0x36ca0c0,1, 0x36ca100,4, 0x36ca120,9, 0x36cc000,3, 0x36cc010,6, 0x36cc200,7, 0x36cc220,6, 0x36cc240,7, 0x36cc260,6, 0x36cc280,2, 0x36cc28c,2, 0x36cc2a0,2, 0x36cc2ac,2, 0x36cc2c0,7, 0x36cc2e0,7, 0x36cc300,2, 0x36cc30c,2, 0x36cc320,6, 0x36cc400,3, 0x36cc440,12, 0x36cc800,7, 0x36cc820,14, 0x36cc880,16, 0x36cc900,7, 0x36cc920,14, 0x36cc980,16, 0x36cca00,6, 0x36cca20,7, 0x36ccc00,3, 0x36e0000,3, 0x36e0800,7, 0x36e0820,6, 0x36e0840,6, 0x36e0880,1, 0x36e0894,1, 0x36e089c,2, 0x36e08c0,9, 0x36e0900,18, 0x36e0a00,36, 0x36e0b00,22, 0x36e0b80,18, 0x36e0c00,3, 0x36e0c10,3, 0x36e1000,3, 0x36e1010,2, 0x36e1080,20, 0x36e1100,1, 0x36e1200,26, 0x36e1280,4, 0x36e12c0,25, 0x36e1340,6, 0x36e1360,1, 0x36e1368,2, 0x36e1374,11, 0x36e13a4,4, 0x36e1400,1, 0x36f0000,11, 0x36f0030,19, 0x36f0080,17, 0x36f0100,11, 0x36f0130,19, 0x36f0180,17, 0x36f0200,3, 0x36f0214,1, 0x36f021c,1, 0x36f0280,3, 0x36f0294,1, 0x36f029c,1, 0x36f0300,18, 0x36f0380,18, 0x36f0400,18, 0x36f0480,18, 0x36f0500,18, 0x36f0580,18, 0x36f0600,18, 0x36f0680,18, 0x36f0700,13, 0x36f0738,6, 0x36f0780,13, 0x36f07b8,6, 0x36f0800,1, 0x36f0808,22, 0x36f0880,1, 0x36f0894,13, 0x36f0900,3, 0x36f0910,3, 0x36f0920,3, 0x36f0940,3, 0x36f0954,1, 0x36f095c,1, 0x36f0a00,52, 0x36f0c00,4, 0x36f0d00,34, 0x36f0e00,4, 0x36f0e80,30, 0x36f0f00,1, 0x36f0f40,5, 0x36f0f60,5, 0x36f0f80,6, 0x36f1000,14, 0x36f1040,4, 0x36f1060,17, 0x36f10c0,6, 0x36f10e0,1, 0x36f10e8,2, 0x36f10f4,11, 0x36f1124,17, 0x36f1200,3, 0x36f1210,3, 0x36f1220,3, 0x36f1230,3, 0x36f1240,3, 0x36f1250,3, 0x36f2000,20, 0x36f2080,3, 0x36f2090,1, 0x36f2098,2, 0x3700000,13, 0x3700038,4, 0x3700050,3, 0x3700060,3, 0x3700070,16, 0x37000c0,5, 0x3700400,14, 0x3700440,2, 0x370044c,3, 0x3700480,14, 0x37004c0,2, 0x37004cc,3, 0x3700500,1, 0x3700508,15, 0x3700560,2, 0x370056c,2, 0x3700600,4, 0x3700680,27, 0x3700800,2, 0x3700900,32, 0x3700984,2, 0x3700990,4, 0x3700a00,26, 0x3700a80,4, 0x3700ac0,25, 0x3700b40,6, 0x3700b60,1, 0x3700b68,2, 0x3700b74,11, 0x3700ba4,8, 0x3700c00,9, 0x3700c40,11, 0x3700c80,23, 0x3700ce0,15, 0x3700d20,15, 0x3700d60,1, 0x3701000,13, 0x3701038,4, 0x3701050,3, 0x3701060,3, 0x3701070,16, 0x37010c0,5, 0x3701400,14, 0x3701440,2, 0x370144c,3, 0x3701480,14, 0x37014c0,2, 0x37014cc,3, 0x3701500,1, 0x3701508,15, 0x3701560,2, 0x370156c,2, 0x3701600,4, 0x3701680,27, 0x3701800,2, 0x3701900,32, 0x3701984,2, 0x3701990,4, 0x3701a00,26, 0x3701a80,4, 0x3701ac0,25, 0x3701b40,6, 0x3701b60,1, 0x3701b68,2, 0x3701b74,11, 0x3701ba4,8, 0x3701c00,9, 0x3701c40,11, 0x3701c80,23, 0x3701ce0,15, 0x3701d20,15, 0x3701d60,1, 0x3702000,1, 0x3702100,36, 0x3702200,7, 0x3710000,22, 0x3710080,22, 0x3710100,12, 0x3710140,12, 0x3710200,52, 0x3710300,52, 0x3710400,11, 0x3710440,11, 0x3710480,3, 0x37104a0,6, 0x37104c0,6, 0x37104e0,3, 0x37104f0,3, 0x3710800,9, 0x3710840,15, 0x3710880,15, 0x37108c0,15, 0x3710900,1, 0x3710914,13, 0x3710980,17, 0x3711000,17, 0x3711080,17, 0x3711104,5, 0x3711120,3, 0x3711130,11, 0x3711200,31, 0x3711280,31, 0x3711300,12, 0x3711340,12, 0x3711380,2, 0x3711390,2, 0x37113a0,3, 0x37113b0,3, 0x37113c0,5, 0x37113e0,5, 0x3711400,3, 0x3711410,3, 0x3711420,3, 0x3711430,3, 0x3711440,3, 0x3711450,3, 0x3711460,7, 0x3711800,26, 0x3711880,4, 0x37118c0,25, 0x3711940,6, 0x3711960,1, 0x3711968,2, 0x3711974,11, 0x37119a4,12, 0x3711a00,4, 0x3711b00,43, 0x3711c00,4, 0x3711c20,7, 0x3711c40,3, 0x3711c50,1, 0x3711c60,3, 0x3711e00,32, 0x3711e84,1, 0x3711e90,4, 0x3711ea4,1, 0x3711eb4,14, 0x3711ef0,2, 0x3711f04,1, 0x3711f10,8, 0x3711f34,6, 0x3712000,3, 0x3712010,21, 0x3712080,1, 0x3712094,1, 0x371209c,5, 0x3712100,15, 0x3712140,1, 0x3712180,6, 0x3714000,22, 0x3714080,22, 0x3714100,12, 0x3714140,12, 0x3714200,52, 0x3714300,52, 0x3714400,11, 0x3714440,11, 0x3714480,3, 0x37144a0,6, 0x37144c0,6, 0x37144e0,3, 0x37144f0,3, 0x3714800,9, 0x3714840,15, 0x3714880,15, 0x37148c0,15, 0x3714900,1, 0x3714914,13, 0x3714980,17, 0x3715000,17, 0x3715080,17, 0x3715104,5, 0x3715120,3, 0x3715130,11, 0x3715200,31, 0x3715280,31, 0x3715300,12, 0x3715340,12, 0x3715380,2, 0x3715390,2, 0x37153a0,3, 0x37153b0,3, 0x37153c0,5, 0x37153e0,5, 0x3715400,3, 0x3715410,3, 0x3715420,3, 0x3715430,3, 0x3715440,3, 0x3715450,3, 0x3715460,7, 0x3715800,26, 0x3715880,4, 0x37158c0,25, 0x3715940,6, 0x3715960,1, 0x3715968,2, 0x3715974,11, 0x37159a4,12, 0x3715a00,4, 0x3715b00,43, 0x3715c00,4, 0x3715c20,7, 0x3715c40,3, 0x3715c50,1, 0x3715c60,3, 0x3715e00,32, 0x3715e84,1, 0x3715e90,4, 0x3715ea4,1, 0x3715eb4,14, 0x3715ef0,2, 0x3715f04,1, 0x3715f10,8, 0x3715f34,6, 0x3716000,3, 0x3716010,21, 0x3716080,1, 0x3716094,1, 0x371609c,5, 0x3716100,15, 0x3716140,1, 0x3716180,6, 0x3718000,100, 0x3718200,3, 0x3718210,5, 0x3720000,12, 0x3720040,2, 0x3720050,3, 0x3722000,1006, 0x3723000,31, 0x3723084,6, 0x3724004,1, 0x372400c,3, 0x3724200,23, 0x3724280,23, 0x3724300,1, 0x3724400,1, 0x3724800,122, 0x3724a00,122, 0x3724c04,63, 0x3724d04,1, 0x3724d10,5, 0x3724d40,6, 0x3724d60,5, 0x3726000,1, 0x3726100,1, 0x3726108,3, 0x3726120,2, 0x3726134,8, 0x3726160,2, 0x3726174,8, 0x37261a0,4, 0x3726200,54, 0x3726800,5, 0x3726820,2, 0x3726834,1, 0x372683c,1, 0x3726a00,24, 0x3726a80,24, 0x3726b00,1, 0x3726c00,6, 0x3726c24,5, 0x3726c40,16, 0x3727000,1, 0x3727020,5, 0x3727040,1, 0x3727048,2, 0x3727080,1, 0x3727100,4, 0x3727180,24, 0x3727200,4, 0x3727280,27, 0x3727300,2, 0x372730c,3, 0x3728004,1, 0x372800c,3, 0x3728020,1, 0x3728100,2, 0x3728110,3, 0x3728120,2, 0x3728140,10, 0x3728180,13, 0x3728200,2, 0x3728210,3, 0x3728220,2, 0x3728240,10, 0x3728280,13, 0x3728400,14, 0x3728440,3, 0x3728450,3, 0x3728460,1, 0x3728500,36, 0x3728600,10, 0x3728640,5, 0x3728660,5, 0x3728700,27, 0x3728780,7, 0x37287a0,8, 0x3728800,27, 0x3728880,7, 0x37288a0,8, 0x3728900,27, 0x3728980,7, 0x37289a0,8, 0x3728a00,27, 0x3728a80,7, 0x3728aa0,8, 0x3728b00,48, 0x3728bc4,8, 0x3728bf0,30, 0x3728c80,4, 0x3728cc0,25, 0x3728d40,6, 0x3728d60,1, 0x3728d68,2, 0x3728d74,3, 0x3728e00,8, 0x3728e24,28, 0x3729000,4, 0x3729080,23, 0x3729100,14, 0x3729140,9, 0x3729200,10, 0x3729230,3, 0x3729240,5, 0x3729260,5, 0x3729280,9, 0x3729400,67, 0x3729600,10, 0x3730000,12, 0x3730040,2, 0x3730050,3, 0x3732000,1006, 0x3733000,31, 0x3733084,6, 0x3734004,1, 0x373400c,3, 0x3734200,23, 0x3734280,23, 0x3734300,1, 0x3734400,1, 0x3734800,122, 0x3734a00,122, 0x3734c04,63, 0x3734d04,1, 0x3734d10,5, 0x3734d40,6, 0x3734d60,5, 0x3736000,1, 0x3736100,1, 0x3736108,3, 0x3736120,2, 0x3736134,8, 0x3736160,2, 0x3736174,8, 0x37361a0,4, 0x3736200,54, 0x3736800,5, 0x3736820,2, 0x3736834,1, 0x373683c,1, 0x3736a00,24, 0x3736a80,24, 0x3736b00,1, 0x3736c00,6, 0x3736c24,5, 0x3736c40,16, 0x3737000,1, 0x3737020,5, 0x3737040,1, 0x3737048,2, 0x3737080,1, 0x3737100,4, 0x3737180,24, 0x3737200,4, 0x3737280,27, 0x3737300,2, 0x373730c,3, 0x3738004,1, 0x373800c,3, 0x3738020,1, 0x3738100,2, 0x3738110,3, 0x3738120,2, 0x3738140,10, 0x3738180,13, 0x3738200,2, 0x3738210,3, 0x3738220,2, 0x3738240,10, 0x3738280,13, 0x3738400,14, 0x3738440,3, 0x3738450,3, 0x3738460,1, 0x3738500,36, 0x3738600,10, 0x3738640,5, 0x3738660,5, 0x3738700,27, 0x3738780,7, 0x37387a0,8, 0x3738800,27, 0x3738880,7, 0x37388a0,8, 0x3738900,27, 0x3738980,7, 0x37389a0,8, 0x3738a00,27, 0x3738a80,7, 0x3738aa0,8, 0x3738b00,48, 0x3738bc4,8, 0x3738bf0,30, 0x3738c80,4, 0x3738cc0,25, 0x3738d40,6, 0x3738d60,1, 0x3738d68,2, 0x3738d74,3, 0x3738e00,8, 0x3738e24,28, 0x3739000,4, 0x3739080,23, 0x3739100,14, 0x3739140,9, 0x3739200,10, 0x3739230,3, 0x3739240,5, 0x3739260,5, 0x3739280,9, 0x3739400,67, 0x3739600,10, 0x3800000,1, 0x3800020,3, 0x3800030,2, 0x3800040,3, 0x3800050,2, 0x3800800,53, 0x3800900,3, 0x3800910,13, 0x3800a00,53, 0x3800b00,3, 0x3800b10,13, 0x3800c00,5, 0x3800c20,5, 0x3800c40,18, 0x3801000,6, 0x3801020,4, 0x3801040,16, 0x3802000,20, 0x3802080,15, 0x3802100,20, 0x3802180,15, 0x3802200,23, 0x3802260,7, 0x3802400,11, 0x3802430,3, 0x3802440,3, 0x3802450,3, 0x3802460,24, 0x3802500,11, 0x3802530,3, 0x3802540,3, 0x3802550,3, 0x3802560,24, 0x3802600,11, 0x3802630,3, 0x3802640,3, 0x3802650,3, 0x3802660,24, 0x3802700,11, 0x3802730,3, 0x3802740,3, 0x3802750,3, 0x3802760,24, 0x3802800,4, 0x3802820,16, 0x3802880,10, 0x38028c0,10, 0x3802900,6, 0x3802920,6, 0x3802940,4, 0x3802980,13, 0x38029c0,13, 0x3802a00,9, 0x3803000,14, 0x3803040,9, 0x3803080,6, 0x38030a0,1, 0x38030a8,4, 0x3803100,4, 0x3803200,124, 0x3803400,124, 0x3803600,8, 0x3803624,1, 0x3803644,6, 0x3803664,6, 0x3803680,1, 0x3803688,6, 0x38036a8,22, 0x3804000,1, 0x3804020,3, 0x3804030,2, 0x3804040,3, 0x3804050,2, 0x3804800,53, 0x3804900,3, 0x3804910,13, 0x3804a00,53, 0x3804b00,3, 0x3804b10,13, 0x3804c00,5, 0x3804c20,5, 0x3804c40,18, 0x3805000,6, 0x3805020,4, 0x3805040,16, 0x3806000,20, 0x3806080,15, 0x3806100,20, 0x3806180,15, 0x3806200,23, 0x3806260,7, 0x3806400,11, 0x3806430,3, 0x3806440,3, 0x3806450,3, 0x3806460,24, 0x3806500,11, 0x3806530,3, 0x3806540,3, 0x3806550,3, 0x3806560,24, 0x3806600,11, 0x3806630,3, 0x3806640,3, 0x3806650,3, 0x3806660,24, 0x3806700,11, 0x3806730,3, 0x3806740,3, 0x3806750,3, 0x3806760,24, 0x3806800,4, 0x3806820,16, 0x3806880,10, 0x38068c0,10, 0x3806900,6, 0x3806920,6, 0x3806940,4, 0x3806980,13, 0x38069c0,13, 0x3806a00,9, 0x3807000,14, 0x3807040,9, 0x3807080,6, 0x38070a0,1, 0x38070a8,4, 0x3807100,4, 0x3807200,124, 0x3807400,124, 0x3807600,8, 0x3807624,1, 0x3807644,6, 0x3807664,6, 0x3807680,1, 0x3807688,6, 0x38076a8,22, 0x3808000,84, 0x3808180,20, 0x3808200,5, 0x3808400,11, 0x3808440,11, 0x3808480,19, 0x3808500,19, 0x3808580,24, 0x3808600,13, 0x3808800,84, 0x3808980,20, 0x3808a00,5, 0x3808c00,11, 0x3808c40,11, 0x3808c80,19, 0x3808d00,19, 0x3808d80,24, 0x3808e00,13, 0x3809000,10, 0x3809040,5, 0x3809080,10, 0x38090c0,5, 0x3809100,5, 0x3809200,11, 0x3809230,3, 0x3809240,5, 0x3809260,5, 0x3809280,32, 0x3809400,13, 0x3809440,13, 0x3809480,9, 0x38094c0,1, 0x38094d0,5, 0x38094f0,21, 0x3809800,10, 0x3809840,5, 0x3809880,10, 0x38098c0,5, 0x3809900,5, 0x3809a00,11, 0x3809a30,3, 0x3809a40,5, 0x3809a60,5, 0x3809a80,32, 0x3809c00,13, 0x3809c40,13, 0x3809c80,9, 0x3809cc0,1, 0x3809cd0,5, 0x3809cf0,21, 0x380a000,14, 0x380a040,9, 0x380a080,6, 0x380a0a0,1, 0x380a0a8,4, 0x380a100,7, 0x380a120,3, 0x380a130,25, 0x380c000,26, 0x380c06c,2, 0x380c080,3, 0x380c090,17, 0x380c100,26, 0x380c16c,2, 0x380c180,3, 0x380c190,17, 0x380c200,26, 0x380c26c,2, 0x380c280,3, 0x380c290,17, 0x380c300,26, 0x380c36c,2, 0x380c380,3, 0x380c390,17, 0x380c400,26, 0x380c46c,2, 0x380c480,3, 0x380c490,17, 0x380c500,26, 0x380c56c,2, 0x380c580,3, 0x380c590,17, 0x380c600,26, 0x380c66c,2, 0x380c680,3, 0x380c690,17, 0x380c700,26, 0x380c76c,2, 0x380c780,3, 0x380c790,17, 0x380c800,12, 0x380c844,1, 0x380c854,8, 0x380c880,7, 0x380c8a0,2, 0x380c8ac,2, 0x380c8c0,26, 0x380c980,4, 0x380c9a0,5, 0x380c9c0,1, 0x380d000,3, 0x380d010,3, 0x380d020,3, 0x380d030,3, 0x380d040,3, 0x380d050,3, 0x380d060,3, 0x380d070,3, 0x380d080,5, 0x380d0a0,5, 0x380d0c0,5, 0x380d0e0,5, 0x380d100,5, 0x380d120,5, 0x380d140,5, 0x380d160,5, 0x380d200,68, 0x380d400,1, 0x380d804,1, 0x380d844,54, 0x380da00,11, 0x380da40,11, 0x380da80,11, 0x380dac0,11, 0x380db00,11, 0x380db40,11, 0x380db80,11, 0x380dbc0,11, 0x380dc00,28, 0x380dc80,5, 0x380dca0,2, 0x380e000,4, 0x380e020,6, 0x380e040,6, 0x380e060,14, 0x380e100,26, 0x380e180,15, 0x380e200,14, 0x380e240,9, 0x380e280,6, 0x380e2a0,1, 0x380e2a8,4, 0x380e300,14, 0x380e340,9, 0x380e380,6, 0x380e3a0,4, 0x380e400,9, 0x3820000,1, 0x3821000,977, 0x3822000,161, 0x3823000,977, 0x3824000,977, 0x3825000,977, 0x3826000,977, 0x3827000,977, 0x3828000,977, 0x3829000,977, 0x382a000,977, 0x382b000,161, 0x382c000,12, 0x382c040,14, 0x382c080,20, 0x382c104,1, 0x382c10c,4, 0x382c200,12, 0x382c240,14, 0x382c280,20, 0x382c304,1, 0x382c30c,4, 0x382c400,12, 0x382c440,14, 0x382c480,20, 0x382c504,1, 0x382c50c,4, 0x382c600,12, 0x382c640,14, 0x382c680,20, 0x382c704,1, 0x382c70c,4, 0x382c800,12, 0x382c840,14, 0x382c880,20, 0x382c904,1, 0x382c90c,4, 0x382ca00,12, 0x382ca40,14, 0x382ca80,20, 0x382cb04,1, 0x382cb0c,4, 0x382cc00,12, 0x382cc40,14, 0x382cc80,20, 0x382cd04,1, 0x382cd0c,4, 0x382ce00,12, 0x382ce40,14, 0x382ce80,20, 0x382cf04,1, 0x382cf0c,4, 0x382d000,12, 0x382d040,14, 0x382d080,20, 0x382d104,1, 0x382d10c,4, 0x382d200,17, 0x382d250,2, 0x382d260,4, 0x382e000,1, 0x382e014,1, 0x382e01c,11, 0x382e060,9, 0x382e094,1, 0x382e09c,11, 0x382e0e0,15, 0x382e200,12, 0x382e240,13, 0x382e280,3, 0x382e290,1, 0x3880000,500, 0x3880800,2, 0x3880820,15, 0x3881000,500, 0x3881800,8, 0x3881824,6, 0x3881840,8, 0x3881880,7, 0x38818a0,7, 0x38818c0,7, 0x38818e0,7, 0x3881900,8, 0x3881924,16, 0x3881980,12, 0x3882000,500, 0x3882800,2, 0x3882820,15, 0x3883000,500, 0x3883800,8, 0x3883824,6, 0x3883840,8, 0x3883880,7, 0x38838a0,7, 0x38838c0,7, 0x38838e0,7, 0x3883900,8, 0x3883924,16, 0x3883980,12, 0x3884004,5, 0x3884200,26, 0x3884280,4, 0x38842c0,25, 0x3884340,6, 0x3884360,1, 0x3884368,2, 0x3884374,11, 0x38843a4,10, 0x3884400,1, 0x3888000,52, 0x3888400,82, 0x3888560,6, 0x3888600,41, 0x3888700,2, 0x3888720,19, 0x3888800,25, 0x3888880,1, 0x3888900,28, 0x3888980,1, 0x3889000,52, 0x3889400,82, 0x3889560,6, 0x3889600,41, 0x3889700,2, 0x3889720,19, 0x3889800,25, 0x3889880,1, 0x3889900,28, 0x3889980,1, 0x388a000,7, 0x388a080,6, 0x388a0a0,6, 0x388a0c0,1, 0x388a100,4, 0x388a120,9, 0x388c000,3, 0x388c010,6, 0x388c200,7, 0x388c220,6, 0x388c240,7, 0x388c260,6, 0x388c280,2, 0x388c28c,2, 0x388c2a0,2, 0x388c2ac,2, 0x388c2c0,7, 0x388c2e0,7, 0x388c300,2, 0x388c30c,2, 0x388c320,6, 0x388c400,3, 0x388c440,12, 0x388c800,7, 0x388c820,14, 0x388c880,16, 0x388c900,7, 0x388c920,14, 0x388c980,16, 0x388ca00,6, 0x388ca20,7, 0x388cc00,3, 0x38a0000,3, 0x38a0800,7, 0x38a0820,6, 0x38a0840,6, 0x38a0880,1, 0x38a0894,1, 0x38a089c,2, 0x38a08c0,9, 0x38a0900,18, 0x38a0a00,36, 0x38a0b00,22, 0x38a0b80,18, 0x38a0c00,3, 0x38a0c10,3, 0x38a1000,3, 0x38a1010,2, 0x38a1080,20, 0x38a1100,1, 0x38a1200,26, 0x38a1280,4, 0x38a12c0,25, 0x38a1340,6, 0x38a1360,1, 0x38a1368,2, 0x38a1374,11, 0x38a13a4,4, 0x38a1400,1, 0x38b0000,11, 0x38b0030,19, 0x38b0080,17, 0x38b0100,11, 0x38b0130,19, 0x38b0180,17, 0x38b0200,3, 0x38b0214,1, 0x38b021c,1, 0x38b0280,3, 0x38b0294,1, 0x38b029c,1, 0x38b0300,18, 0x38b0380,18, 0x38b0400,18, 0x38b0480,18, 0x38b0500,18, 0x38b0580,18, 0x38b0600,18, 0x38b0680,18, 0x38b0700,13, 0x38b0738,6, 0x38b0780,13, 0x38b07b8,6, 0x38b0800,1, 0x38b0808,22, 0x38b0880,1, 0x38b0894,13, 0x38b0900,3, 0x38b0910,3, 0x38b0920,3, 0x38b0940,3, 0x38b0954,1, 0x38b095c,1, 0x38b0a00,52, 0x38b0c00,4, 0x38b0d00,34, 0x38b0e00,4, 0x38b0e80,30, 0x38b0f00,1, 0x38b0f40,5, 0x38b0f60,5, 0x38b0f80,6, 0x38b1000,14, 0x38b1040,4, 0x38b1060,17, 0x38b10c0,6, 0x38b10e0,1, 0x38b10e8,2, 0x38b10f4,11, 0x38b1124,17, 0x38b1200,3, 0x38b1210,3, 0x38b1220,3, 0x38b1230,3, 0x38b1240,3, 0x38b1250,3, 0x38b2000,20, 0x38b2080,3, 0x38b2090,1, 0x38b2098,2, 0x38c0000,500, 0x38c0800,2, 0x38c0820,15, 0x38c1000,500, 0x38c1800,8, 0x38c1824,6, 0x38c1840,8, 0x38c1880,7, 0x38c18a0,7, 0x38c18c0,7, 0x38c18e0,7, 0x38c1900,8, 0x38c1924,16, 0x38c1980,12, 0x38c2000,500, 0x38c2800,2, 0x38c2820,15, 0x38c3000,500, 0x38c3800,8, 0x38c3824,6, 0x38c3840,8, 0x38c3880,7, 0x38c38a0,7, 0x38c38c0,7, 0x38c38e0,7, 0x38c3900,8, 0x38c3924,16, 0x38c3980,12, 0x38c4004,5, 0x38c4200,26, 0x38c4280,4, 0x38c42c0,25, 0x38c4340,6, 0x38c4360,1, 0x38c4368,2, 0x38c4374,11, 0x38c43a4,10, 0x38c4400,1, 0x38c8000,52, 0x38c8400,82, 0x38c8560,6, 0x38c8600,41, 0x38c8700,2, 0x38c8720,19, 0x38c8800,25, 0x38c8880,1, 0x38c8900,28, 0x38c8980,1, 0x38c9000,52, 0x38c9400,82, 0x38c9560,6, 0x38c9600,41, 0x38c9700,2, 0x38c9720,19, 0x38c9800,25, 0x38c9880,1, 0x38c9900,28, 0x38c9980,1, 0x38ca000,7, 0x38ca080,6, 0x38ca0a0,6, 0x38ca0c0,1, 0x38ca100,4, 0x38ca120,9, 0x38cc000,3, 0x38cc010,6, 0x38cc200,7, 0x38cc220,6, 0x38cc240,7, 0x38cc260,6, 0x38cc280,2, 0x38cc28c,2, 0x38cc2a0,2, 0x38cc2ac,2, 0x38cc2c0,7, 0x38cc2e0,7, 0x38cc300,2, 0x38cc30c,2, 0x38cc320,6, 0x38cc400,3, 0x38cc440,12, 0x38cc800,7, 0x38cc820,14, 0x38cc880,16, 0x38cc900,7, 0x38cc920,14, 0x38cc980,16, 0x38cca00,6, 0x38cca20,7, 0x38ccc00,3, 0x38e0000,3, 0x38e0800,7, 0x38e0820,6, 0x38e0840,6, 0x38e0880,1, 0x38e0894,1, 0x38e089c,2, 0x38e08c0,9, 0x38e0900,18, 0x38e0a00,36, 0x38e0b00,22, 0x38e0b80,18, 0x38e0c00,3, 0x38e0c10,3, 0x38e1000,3, 0x38e1010,2, 0x38e1080,20, 0x38e1100,1, 0x38e1200,26, 0x38e1280,4, 0x38e12c0,25, 0x38e1340,6, 0x38e1360,1, 0x38e1368,2, 0x38e1374,11, 0x38e13a4,4, 0x38e1400,1, 0x38f0000,11, 0x38f0030,19, 0x38f0080,17, 0x38f0100,11, 0x38f0130,19, 0x38f0180,17, 0x38f0200,3, 0x38f0214,1, 0x38f021c,1, 0x38f0280,3, 0x38f0294,1, 0x38f029c,1, 0x38f0300,18, 0x38f0380,18, 0x38f0400,18, 0x38f0480,18, 0x38f0500,18, 0x38f0580,18, 0x38f0600,18, 0x38f0680,18, 0x38f0700,13, 0x38f0738,6, 0x38f0780,13, 0x38f07b8,6, 0x38f0800,1, 0x38f0808,22, 0x38f0880,1, 0x38f0894,13, 0x38f0900,3, 0x38f0910,3, 0x38f0920,3, 0x38f0940,3, 0x38f0954,1, 0x38f095c,1, 0x38f0a00,52, 0x38f0c00,4, 0x38f0d00,34, 0x38f0e00,4, 0x38f0e80,30, 0x38f0f00,1, 0x38f0f40,5, 0x38f0f60,5, 0x38f0f80,6, 0x38f1000,14, 0x38f1040,4, 0x38f1060,17, 0x38f10c0,6, 0x38f10e0,1, 0x38f10e8,2, 0x38f10f4,11, 0x38f1124,17, 0x38f1200,3, 0x38f1210,3, 0x38f1220,3, 0x38f1230,3, 0x38f1240,3, 0x38f1250,3, 0x38f2000,20, 0x38f2080,3, 0x38f2090,1, 0x38f2098,2, 0x3900000,13, 0x3900038,4, 0x3900050,3, 0x3900060,3, 0x3900070,16, 0x39000c0,5, 0x3900400,14, 0x3900440,2, 0x390044c,3, 0x3900480,14, 0x39004c0,2, 0x39004cc,3, 0x3900500,1, 0x3900508,15, 0x3900560,2, 0x390056c,2, 0x3900600,4, 0x3900680,27, 0x3900800,2, 0x3900900,32, 0x3900984,2, 0x3900990,4, 0x3900a00,26, 0x3900a80,4, 0x3900ac0,25, 0x3900b40,6, 0x3900b60,1, 0x3900b68,2, 0x3900b74,11, 0x3900ba4,8, 0x3900c00,9, 0x3900c40,11, 0x3900c80,23, 0x3900ce0,15, 0x3900d20,15, 0x3900d60,1, 0x3901000,13, 0x3901038,4, 0x3901050,3, 0x3901060,3, 0x3901070,16, 0x39010c0,5, 0x3901400,14, 0x3901440,2, 0x390144c,3, 0x3901480,14, 0x39014c0,2, 0x39014cc,3, 0x3901500,1, 0x3901508,15, 0x3901560,2, 0x390156c,2, 0x3901600,4, 0x3901680,27, 0x3901800,2, 0x3901900,32, 0x3901984,2, 0x3901990,4, 0x3901a00,26, 0x3901a80,4, 0x3901ac0,25, 0x3901b40,6, 0x3901b60,1, 0x3901b68,2, 0x3901b74,11, 0x3901ba4,8, 0x3901c00,9, 0x3901c40,11, 0x3901c80,23, 0x3901ce0,15, 0x3901d20,15, 0x3901d60,1, 0x3902000,1, 0x3902100,36, 0x3902200,7, 0x3910000,22, 0x3910080,22, 0x3910100,12, 0x3910140,12, 0x3910200,52, 0x3910300,52, 0x3910400,11, 0x3910440,11, 0x3910480,3, 0x39104a0,6, 0x39104c0,6, 0x39104e0,3, 0x39104f0,3, 0x3910800,9, 0x3910840,15, 0x3910880,15, 0x39108c0,15, 0x3910900,1, 0x3910914,13, 0x3910980,17, 0x3911000,17, 0x3911080,17, 0x3911104,5, 0x3911120,3, 0x3911130,11, 0x3911200,31, 0x3911280,31, 0x3911300,12, 0x3911340,12, 0x3911380,2, 0x3911390,2, 0x39113a0,3, 0x39113b0,3, 0x39113c0,5, 0x39113e0,5, 0x3911400,3, 0x3911410,3, 0x3911420,3, 0x3911430,3, 0x3911440,3, 0x3911450,3, 0x3911460,7, 0x3911800,26, 0x3911880,4, 0x39118c0,25, 0x3911940,6, 0x3911960,1, 0x3911968,2, 0x3911974,11, 0x39119a4,12, 0x3911a00,4, 0x3911b00,43, 0x3911c00,4, 0x3911c20,7, 0x3911c40,3, 0x3911c50,1, 0x3911c60,3, 0x3911e00,32, 0x3911e84,1, 0x3911e90,4, 0x3911ea4,1, 0x3911eb4,14, 0x3911ef0,2, 0x3911f04,1, 0x3911f10,8, 0x3911f34,6, 0x3912000,3, 0x3912010,21, 0x3912080,1, 0x3912094,1, 0x391209c,5, 0x3912100,15, 0x3912140,1, 0x3912180,6, 0x3914000,22, 0x3914080,22, 0x3914100,12, 0x3914140,12, 0x3914200,52, 0x3914300,52, 0x3914400,11, 0x3914440,11, 0x3914480,3, 0x39144a0,6, 0x39144c0,6, 0x39144e0,3, 0x39144f0,3, 0x3914800,9, 0x3914840,15, 0x3914880,15, 0x39148c0,15, 0x3914900,1, 0x3914914,13, 0x3914980,17, 0x3915000,17, 0x3915080,17, 0x3915104,5, 0x3915120,3, 0x3915130,11, 0x3915200,31, 0x3915280,31, 0x3915300,12, 0x3915340,12, 0x3915380,2, 0x3915390,2, 0x39153a0,3, 0x39153b0,3, 0x39153c0,5, 0x39153e0,5, 0x3915400,3, 0x3915410,3, 0x3915420,3, 0x3915430,3, 0x3915440,3, 0x3915450,3, 0x3915460,7, 0x3915800,26, 0x3915880,4, 0x39158c0,25, 0x3915940,6, 0x3915960,1, 0x3915968,2, 0x3915974,11, 0x39159a4,12, 0x3915a00,4, 0x3915b00,43, 0x3915c00,4, 0x3915c20,7, 0x3915c40,3, 0x3915c50,1, 0x3915c60,3, 0x3915e00,32, 0x3915e84,1, 0x3915e90,4, 0x3915ea4,1, 0x3915eb4,14, 0x3915ef0,2, 0x3915f04,1, 0x3915f10,8, 0x3915f34,6, 0x3916000,3, 0x3916010,21, 0x3916080,1, 0x3916094,1, 0x391609c,5, 0x3916100,15, 0x3916140,1, 0x3916180,6, 0x3918000,100, 0x3918200,3, 0x3918210,5, 0x3920000,12, 0x3920040,2, 0x3920050,3, 0x3922000,1006, 0x3923000,31, 0x3923084,6, 0x3924004,1, 0x392400c,3, 0x3924200,23, 0x3924280,23, 0x3924300,1, 0x3924400,1, 0x3924800,122, 0x3924a00,122, 0x3924c04,63, 0x3924d04,1, 0x3924d10,5, 0x3924d40,6, 0x3924d60,5, 0x3926000,1, 0x3926100,1, 0x3926108,3, 0x3926120,2, 0x3926134,8, 0x3926160,2, 0x3926174,8, 0x39261a0,4, 0x3926200,54, 0x3926800,5, 0x3926820,2, 0x3926834,1, 0x392683c,1, 0x3926a00,24, 0x3926a80,24, 0x3926b00,1, 0x3926c00,6, 0x3926c24,5, 0x3926c40,16, 0x3927000,1, 0x3927020,5, 0x3927040,1, 0x3927048,2, 0x3927080,1, 0x3927100,4, 0x3927180,24, 0x3927200,4, 0x3927280,27, 0x3927300,2, 0x392730c,3, 0x3928004,1, 0x392800c,3, 0x3928020,1, 0x3928100,2, 0x3928110,3, 0x3928120,2, 0x3928140,10, 0x3928180,13, 0x3928200,2, 0x3928210,3, 0x3928220,2, 0x3928240,10, 0x3928280,13, 0x3928400,14, 0x3928440,3, 0x3928450,3, 0x3928460,1, 0x3928500,36, 0x3928600,10, 0x3928640,5, 0x3928660,5, 0x3928700,27, 0x3928780,7, 0x39287a0,8, 0x3928800,27, 0x3928880,7, 0x39288a0,8, 0x3928900,27, 0x3928980,7, 0x39289a0,8, 0x3928a00,27, 0x3928a80,7, 0x3928aa0,8, 0x3928b00,48, 0x3928bc4,8, 0x3928bf0,30, 0x3928c80,4, 0x3928cc0,25, 0x3928d40,6, 0x3928d60,1, 0x3928d68,2, 0x3928d74,3, 0x3928e00,8, 0x3928e24,28, 0x3929000,4, 0x3929080,23, 0x3929100,14, 0x3929140,9, 0x3929200,10, 0x3929230,3, 0x3929240,5, 0x3929260,5, 0x3929280,9, 0x3929400,67, 0x3929600,10, 0x3930000,12, 0x3930040,2, 0x3930050,3, 0x3932000,1006, 0x3933000,31, 0x3933084,6, 0x3934004,1, 0x393400c,3, 0x3934200,23, 0x3934280,23, 0x3934300,1, 0x3934400,1, 0x3934800,122, 0x3934a00,122, 0x3934c04,63, 0x3934d04,1, 0x3934d10,5, 0x3934d40,6, 0x3934d60,5, 0x3936000,1, 0x3936100,1, 0x3936108,3, 0x3936120,2, 0x3936134,8, 0x3936160,2, 0x3936174,8, 0x39361a0,4, 0x3936200,54, 0x3936800,5, 0x3936820,2, 0x3936834,1, 0x393683c,1, 0x3936a00,24, 0x3936a80,24, 0x3936b00,1, 0x3936c00,6, 0x3936c24,5, 0x3936c40,16, 0x3937000,1, 0x3937020,5, 0x3937040,1, 0x3937048,2, 0x3937080,1, 0x3937100,4, 0x3937180,24, 0x3937200,4, 0x3937280,27, 0x3937300,2, 0x393730c,3, 0x3938004,1, 0x393800c,3, 0x3938020,1, 0x3938100,2, 0x3938110,3, 0x3938120,2, 0x3938140,10, 0x3938180,13, 0x3938200,2, 0x3938210,3, 0x3938220,2, 0x3938240,10, 0x3938280,13, 0x3938400,14, 0x3938440,3, 0x3938450,3, 0x3938460,1, 0x3938500,36, 0x3938600,10, 0x3938640,5, 0x3938660,5, 0x3938700,27, 0x3938780,7, 0x39387a0,8, 0x3938800,27, 0x3938880,7, 0x39388a0,8, 0x3938900,27, 0x3938980,7, 0x39389a0,8, 0x3938a00,27, 0x3938a80,7, 0x3938aa0,8, 0x3938b00,48, 0x3938bc4,8, 0x3938bf0,30, 0x3938c80,4, 0x3938cc0,25, 0x3938d40,6, 0x3938d60,1, 0x3938d68,2, 0x3938d74,3, 0x3938e00,8, 0x3938e24,28, 0x3939000,4, 0x3939080,23, 0x3939100,14, 0x3939140,9, 0x3939200,10, 0x3939230,3, 0x3939240,5, 0x3939260,5, 0x3939280,9, 0x3939400,67, 0x3939600,10, 0x3a00000,1, 0x3a00020,3, 0x3a00030,2, 0x3a00040,3, 0x3a00050,2, 0x3a00800,53, 0x3a00900,3, 0x3a00910,13, 0x3a00a00,53, 0x3a00b00,3, 0x3a00b10,13, 0x3a00c00,5, 0x3a00c20,5, 0x3a00c40,18, 0x3a01000,6, 0x3a01020,4, 0x3a01040,16, 0x3a02000,20, 0x3a02080,15, 0x3a02100,20, 0x3a02180,15, 0x3a02200,23, 0x3a02260,7, 0x3a02400,11, 0x3a02430,3, 0x3a02440,3, 0x3a02450,3, 0x3a02460,24, 0x3a02500,11, 0x3a02530,3, 0x3a02540,3, 0x3a02550,3, 0x3a02560,24, 0x3a02600,11, 0x3a02630,3, 0x3a02640,3, 0x3a02650,3, 0x3a02660,24, 0x3a02700,11, 0x3a02730,3, 0x3a02740,3, 0x3a02750,3, 0x3a02760,24, 0x3a02800,4, 0x3a02820,16, 0x3a02880,10, 0x3a028c0,10, 0x3a02900,6, 0x3a02920,6, 0x3a02940,4, 0x3a02980,13, 0x3a029c0,13, 0x3a02a00,9, 0x3a03000,14, 0x3a03040,9, 0x3a03080,6, 0x3a030a0,1, 0x3a030a8,4, 0x3a03100,4, 0x3a03200,124, 0x3a03400,124, 0x3a03600,8, 0x3a03624,1, 0x3a03644,6, 0x3a03664,6, 0x3a03680,1, 0x3a03688,6, 0x3a036a8,22, 0x3a04000,1, 0x3a04020,3, 0x3a04030,2, 0x3a04040,3, 0x3a04050,2, 0x3a04800,53, 0x3a04900,3, 0x3a04910,13, 0x3a04a00,53, 0x3a04b00,3, 0x3a04b10,13, 0x3a04c00,5, 0x3a04c20,5, 0x3a04c40,18, 0x3a05000,6, 0x3a05020,4, 0x3a05040,16, 0x3a06000,20, 0x3a06080,15, 0x3a06100,20, 0x3a06180,15, 0x3a06200,23, 0x3a06260,7, 0x3a06400,11, 0x3a06430,3, 0x3a06440,3, 0x3a06450,3, 0x3a06460,24, 0x3a06500,11, 0x3a06530,3, 0x3a06540,3, 0x3a06550,3, 0x3a06560,24, 0x3a06600,11, 0x3a06630,3, 0x3a06640,3, 0x3a06650,3, 0x3a06660,24, 0x3a06700,11, 0x3a06730,3, 0x3a06740,3, 0x3a06750,3, 0x3a06760,24, 0x3a06800,4, 0x3a06820,16, 0x3a06880,10, 0x3a068c0,10, 0x3a06900,6, 0x3a06920,6, 0x3a06940,4, 0x3a06980,13, 0x3a069c0,13, 0x3a06a00,9, 0x3a07000,14, 0x3a07040,9, 0x3a07080,6, 0x3a070a0,1, 0x3a070a8,4, 0x3a07100,4, 0x3a07200,124, 0x3a07400,124, 0x3a07600,8, 0x3a07624,1, 0x3a07644,6, 0x3a07664,6, 0x3a07680,1, 0x3a07688,6, 0x3a076a8,22, 0x3a08000,84, 0x3a08180,20, 0x3a08200,5, 0x3a08400,11, 0x3a08440,11, 0x3a08480,19, 0x3a08500,19, 0x3a08580,24, 0x3a08600,13, 0x3a08800,84, 0x3a08980,20, 0x3a08a00,5, 0x3a08c00,11, 0x3a08c40,11, 0x3a08c80,19, 0x3a08d00,19, 0x3a08d80,24, 0x3a08e00,13, 0x3a09000,10, 0x3a09040,5, 0x3a09080,10, 0x3a090c0,5, 0x3a09100,5, 0x3a09200,11, 0x3a09230,3, 0x3a09240,5, 0x3a09260,5, 0x3a09280,32, 0x3a09400,13, 0x3a09440,13, 0x3a09480,9, 0x3a094c0,1, 0x3a094d0,5, 0x3a094f0,21, 0x3a09800,10, 0x3a09840,5, 0x3a09880,10, 0x3a098c0,5, 0x3a09900,5, 0x3a09a00,11, 0x3a09a30,3, 0x3a09a40,5, 0x3a09a60,5, 0x3a09a80,32, 0x3a09c00,13, 0x3a09c40,13, 0x3a09c80,9, 0x3a09cc0,1, 0x3a09cd0,5, 0x3a09cf0,21, 0x3a0a000,14, 0x3a0a040,9, 0x3a0a080,6, 0x3a0a0a0,1, 0x3a0a0a8,4, 0x3a0a100,7, 0x3a0a120,3, 0x3a0a130,25, 0x3a0c000,26, 0x3a0c06c,2, 0x3a0c080,3, 0x3a0c090,17, 0x3a0c100,26, 0x3a0c16c,2, 0x3a0c180,3, 0x3a0c190,17, 0x3a0c200,26, 0x3a0c26c,2, 0x3a0c280,3, 0x3a0c290,17, 0x3a0c300,26, 0x3a0c36c,2, 0x3a0c380,3, 0x3a0c390,17, 0x3a0c400,26, 0x3a0c46c,2, 0x3a0c480,3, 0x3a0c490,17, 0x3a0c500,26, 0x3a0c56c,2, 0x3a0c580,3, 0x3a0c590,17, 0x3a0c600,26, 0x3a0c66c,2, 0x3a0c680,3, 0x3a0c690,17, 0x3a0c700,26, 0x3a0c76c,2, 0x3a0c780,3, 0x3a0c790,17, 0x3a0c800,12, 0x3a0c844,1, 0x3a0c854,8, 0x3a0c880,7, 0x3a0c8a0,2, 0x3a0c8ac,2, 0x3a0c8c0,26, 0x3a0c980,4, 0x3a0c9a0,5, 0x3a0c9c0,1, 0x3a0d000,3, 0x3a0d010,3, 0x3a0d020,3, 0x3a0d030,3, 0x3a0d040,3, 0x3a0d050,3, 0x3a0d060,3, 0x3a0d070,3, 0x3a0d080,5, 0x3a0d0a0,5, 0x3a0d0c0,5, 0x3a0d0e0,5, 0x3a0d100,5, 0x3a0d120,5, 0x3a0d140,5, 0x3a0d160,5, 0x3a0d200,68, 0x3a0d400,1, 0x3a0d804,1, 0x3a0d844,54, 0x3a0da00,11, 0x3a0da40,11, 0x3a0da80,11, 0x3a0dac0,11, 0x3a0db00,11, 0x3a0db40,11, 0x3a0db80,11, 0x3a0dbc0,11, 0x3a0dc00,28, 0x3a0dc80,5, 0x3a0dca0,2, 0x3a0e000,4, 0x3a0e020,6, 0x3a0e040,6, 0x3a0e060,14, 0x3a0e100,26, 0x3a0e180,15, 0x3a0e200,14, 0x3a0e240,9, 0x3a0e280,6, 0x3a0e2a0,1, 0x3a0e2a8,4, 0x3a0e300,14, 0x3a0e340,9, 0x3a0e380,6, 0x3a0e3a0,4, 0x3a0e400,9, 0x3a20000,1, 0x3a21000,977, 0x3a22000,161, 0x3a23000,977, 0x3a24000,977, 0x3a25000,977, 0x3a26000,977, 0x3a27000,977, 0x3a28000,977, 0x3a29000,977, 0x3a2a000,977, 0x3a2b000,161, 0x3a2c000,12, 0x3a2c040,14, 0x3a2c080,20, 0x3a2c104,1, 0x3a2c10c,4, 0x3a2c200,12, 0x3a2c240,14, 0x3a2c280,20, 0x3a2c304,1, 0x3a2c30c,4, 0x3a2c400,12, 0x3a2c440,14, 0x3a2c480,20, 0x3a2c504,1, 0x3a2c50c,4, 0x3a2c600,12, 0x3a2c640,14, 0x3a2c680,20, 0x3a2c704,1, 0x3a2c70c,4, 0x3a2c800,12, 0x3a2c840,14, 0x3a2c880,20, 0x3a2c904,1, 0x3a2c90c,4, 0x3a2ca00,12, 0x3a2ca40,14, 0x3a2ca80,20, 0x3a2cb04,1, 0x3a2cb0c,4, 0x3a2cc00,12, 0x3a2cc40,14, 0x3a2cc80,20, 0x3a2cd04,1, 0x3a2cd0c,4, 0x3a2ce00,12, 0x3a2ce40,14, 0x3a2ce80,20, 0x3a2cf04,1, 0x3a2cf0c,4, 0x3a2d000,12, 0x3a2d040,14, 0x3a2d080,20, 0x3a2d104,1, 0x3a2d10c,4, 0x3a2d200,17, 0x3a2d250,2, 0x3a2d260,4, 0x3a2e000,1, 0x3a2e014,1, 0x3a2e01c,11, 0x3a2e060,9, 0x3a2e094,1, 0x3a2e09c,11, 0x3a2e0e0,15, 0x3a2e200,12, 0x3a2e240,13, 0x3a2e280,3, 0x3a2e290,1, 0x3a80000,500, 0x3a80800,2, 0x3a80820,15, 0x3a81000,500, 0x3a81800,8, 0x3a81824,6, 0x3a81840,8, 0x3a81880,7, 0x3a818a0,7, 0x3a818c0,7, 0x3a818e0,7, 0x3a81900,8, 0x3a81924,16, 0x3a81980,12, 0x3a82000,500, 0x3a82800,2, 0x3a82820,15, 0x3a83000,500, 0x3a83800,8, 0x3a83824,6, 0x3a83840,8, 0x3a83880,7, 0x3a838a0,7, 0x3a838c0,7, 0x3a838e0,7, 0x3a83900,8, 0x3a83924,16, 0x3a83980,12, 0x3a84004,5, 0x3a84200,26, 0x3a84280,4, 0x3a842c0,25, 0x3a84340,6, 0x3a84360,1, 0x3a84368,2, 0x3a84374,11, 0x3a843a4,10, 0x3a84400,1, 0x3a88000,52, 0x3a88400,82, 0x3a88560,6, 0x3a88600,41, 0x3a88700,2, 0x3a88720,19, 0x3a88800,25, 0x3a88880,1, 0x3a88900,28, 0x3a88980,1, 0x3a89000,52, 0x3a89400,82, 0x3a89560,6, 0x3a89600,41, 0x3a89700,2, 0x3a89720,19, 0x3a89800,25, 0x3a89880,1, 0x3a89900,28, 0x3a89980,1, 0x3a8a000,7, 0x3a8a080,6, 0x3a8a0a0,6, 0x3a8a0c0,1, 0x3a8a100,4, 0x3a8a120,9, 0x3a8c000,3, 0x3a8c010,6, 0x3a8c200,7, 0x3a8c220,6, 0x3a8c240,7, 0x3a8c260,6, 0x3a8c280,2, 0x3a8c28c,2, 0x3a8c2a0,2, 0x3a8c2ac,2, 0x3a8c2c0,7, 0x3a8c2e0,7, 0x3a8c300,2, 0x3a8c30c,2, 0x3a8c320,6, 0x3a8c400,3, 0x3a8c440,12, 0x3a8c800,7, 0x3a8c820,14, 0x3a8c880,16, 0x3a8c900,7, 0x3a8c920,14, 0x3a8c980,16, 0x3a8ca00,6, 0x3a8ca20,7, 0x3a8cc00,3, 0x3aa0000,3, 0x3aa0800,7, 0x3aa0820,6, 0x3aa0840,6, 0x3aa0880,1, 0x3aa0894,1, 0x3aa089c,2, 0x3aa08c0,9, 0x3aa0900,18, 0x3aa0a00,36, 0x3aa0b00,22, 0x3aa0b80,18, 0x3aa0c00,3, 0x3aa0c10,3, 0x3aa1000,3, 0x3aa1010,2, 0x3aa1080,20, 0x3aa1100,1, 0x3aa1200,26, 0x3aa1280,4, 0x3aa12c0,25, 0x3aa1340,6, 0x3aa1360,1, 0x3aa1368,2, 0x3aa1374,11, 0x3aa13a4,4, 0x3aa1400,1, 0x3ab0000,11, 0x3ab0030,19, 0x3ab0080,17, 0x3ab0100,11, 0x3ab0130,19, 0x3ab0180,17, 0x3ab0200,3, 0x3ab0214,1, 0x3ab021c,1, 0x3ab0280,3, 0x3ab0294,1, 0x3ab029c,1, 0x3ab0300,18, 0x3ab0380,18, 0x3ab0400,18, 0x3ab0480,18, 0x3ab0500,18, 0x3ab0580,18, 0x3ab0600,18, 0x3ab0680,18, 0x3ab0700,13, 0x3ab0738,6, 0x3ab0780,13, 0x3ab07b8,6, 0x3ab0800,1, 0x3ab0808,22, 0x3ab0880,1, 0x3ab0894,13, 0x3ab0900,3, 0x3ab0910,3, 0x3ab0920,3, 0x3ab0940,3, 0x3ab0954,1, 0x3ab095c,1, 0x3ab0a00,52, 0x3ab0c00,4, 0x3ab0d00,34, 0x3ab0e00,4, 0x3ab0e80,30, 0x3ab0f00,1, 0x3ab0f40,5, 0x3ab0f60,5, 0x3ab0f80,6, 0x3ab1000,14, 0x3ab1040,4, 0x3ab1060,17, 0x3ab10c0,6, 0x3ab10e0,1, 0x3ab10e8,2, 0x3ab10f4,11, 0x3ab1124,17, 0x3ab1200,3, 0x3ab1210,3, 0x3ab1220,3, 0x3ab1230,3, 0x3ab1240,3, 0x3ab1250,3, 0x3ab2000,20, 0x3ab2080,3, 0x3ab2090,1, 0x3ab2098,2, 0x3ac0000,500, 0x3ac0800,2, 0x3ac0820,15, 0x3ac1000,500, 0x3ac1800,8, 0x3ac1824,6, 0x3ac1840,8, 0x3ac1880,7, 0x3ac18a0,7, 0x3ac18c0,7, 0x3ac18e0,7, 0x3ac1900,8, 0x3ac1924,16, 0x3ac1980,12, 0x3ac2000,500, 0x3ac2800,2, 0x3ac2820,15, 0x3ac3000,500, 0x3ac3800,8, 0x3ac3824,6, 0x3ac3840,8, 0x3ac3880,7, 0x3ac38a0,7, 0x3ac38c0,7, 0x3ac38e0,7, 0x3ac3900,8, 0x3ac3924,16, 0x3ac3980,12, 0x3ac4004,5, 0x3ac4200,26, 0x3ac4280,4, 0x3ac42c0,25, 0x3ac4340,6, 0x3ac4360,1, 0x3ac4368,2, 0x3ac4374,11, 0x3ac43a4,10, 0x3ac4400,1, 0x3ac8000,52, 0x3ac8400,82, 0x3ac8560,6, 0x3ac8600,41, 0x3ac8700,2, 0x3ac8720,19, 0x3ac8800,25, 0x3ac8880,1, 0x3ac8900,28, 0x3ac8980,1, 0x3ac9000,52, 0x3ac9400,82, 0x3ac9560,6, 0x3ac9600,41, 0x3ac9700,2, 0x3ac9720,19, 0x3ac9800,25, 0x3ac9880,1, 0x3ac9900,28, 0x3ac9980,1, 0x3aca000,7, 0x3aca080,6, 0x3aca0a0,6, 0x3aca0c0,1, 0x3aca100,4, 0x3aca120,9, 0x3acc000,3, 0x3acc010,6, 0x3acc200,7, 0x3acc220,6, 0x3acc240,7, 0x3acc260,6, 0x3acc280,2, 0x3acc28c,2, 0x3acc2a0,2, 0x3acc2ac,2, 0x3acc2c0,7, 0x3acc2e0,7, 0x3acc300,2, 0x3acc30c,2, 0x3acc320,6, 0x3acc400,3, 0x3acc440,12, 0x3acc800,7, 0x3acc820,14, 0x3acc880,16, 0x3acc900,7, 0x3acc920,14, 0x3acc980,16, 0x3acca00,6, 0x3acca20,7, 0x3accc00,3, 0x3ae0000,3, 0x3ae0800,7, 0x3ae0820,6, 0x3ae0840,6, 0x3ae0880,1, 0x3ae0894,1, 0x3ae089c,2, 0x3ae08c0,9, 0x3ae0900,18, 0x3ae0a00,36, 0x3ae0b00,22, 0x3ae0b80,18, 0x3ae0c00,3, 0x3ae0c10,3, 0x3ae1000,3, 0x3ae1010,2, 0x3ae1080,20, 0x3ae1100,1, 0x3ae1200,26, 0x3ae1280,4, 0x3ae12c0,25, 0x3ae1340,6, 0x3ae1360,1, 0x3ae1368,2, 0x3ae1374,11, 0x3ae13a4,4, 0x3ae1400,1, 0x3af0000,11, 0x3af0030,19, 0x3af0080,17, 0x3af0100,11, 0x3af0130,19, 0x3af0180,17, 0x3af0200,3, 0x3af0214,1, 0x3af021c,1, 0x3af0280,3, 0x3af0294,1, 0x3af029c,1, 0x3af0300,18, 0x3af0380,18, 0x3af0400,18, 0x3af0480,18, 0x3af0500,18, 0x3af0580,18, 0x3af0600,18, 0x3af0680,18, 0x3af0700,13, 0x3af0738,6, 0x3af0780,13, 0x3af07b8,6, 0x3af0800,1, 0x3af0808,22, 0x3af0880,1, 0x3af0894,13, 0x3af0900,3, 0x3af0910,3, 0x3af0920,3, 0x3af0940,3, 0x3af0954,1, 0x3af095c,1, 0x3af0a00,52, 0x3af0c00,4, 0x3af0d00,34, 0x3af0e00,4, 0x3af0e80,30, 0x3af0f00,1, 0x3af0f40,5, 0x3af0f60,5, 0x3af0f80,6, 0x3af1000,14, 0x3af1040,4, 0x3af1060,17, 0x3af10c0,6, 0x3af10e0,1, 0x3af10e8,2, 0x3af10f4,11, 0x3af1124,17, 0x3af1200,3, 0x3af1210,3, 0x3af1220,3, 0x3af1230,3, 0x3af1240,3, 0x3af1250,3, 0x3af2000,20, 0x3af2080,3, 0x3af2090,1, 0x3af2098,2, 0x3b00000,13, 0x3b00038,4, 0x3b00050,3, 0x3b00060,3, 0x3b00070,16, 0x3b000c0,5, 0x3b00400,14, 0x3b00440,2, 0x3b0044c,3, 0x3b00480,14, 0x3b004c0,2, 0x3b004cc,3, 0x3b00500,1, 0x3b00508,15, 0x3b00560,2, 0x3b0056c,2, 0x3b00600,4, 0x3b00680,27, 0x3b00800,2, 0x3b00900,32, 0x3b00984,2, 0x3b00990,4, 0x3b00a00,26, 0x3b00a80,4, 0x3b00ac0,25, 0x3b00b40,6, 0x3b00b60,1, 0x3b00b68,2, 0x3b00b74,11, 0x3b00ba4,8, 0x3b00c00,9, 0x3b00c40,11, 0x3b00c80,23, 0x3b00ce0,15, 0x3b00d20,15, 0x3b00d60,1, 0x3b01000,13, 0x3b01038,4, 0x3b01050,3, 0x3b01060,3, 0x3b01070,16, 0x3b010c0,5, 0x3b01400,14, 0x3b01440,2, 0x3b0144c,3, 0x3b01480,14, 0x3b014c0,2, 0x3b014cc,3, 0x3b01500,1, 0x3b01508,15, 0x3b01560,2, 0x3b0156c,2, 0x3b01600,4, 0x3b01680,27, 0x3b01800,2, 0x3b01900,32, 0x3b01984,2, 0x3b01990,4, 0x3b01a00,26, 0x3b01a80,4, 0x3b01ac0,25, 0x3b01b40,6, 0x3b01b60,1, 0x3b01b68,2, 0x3b01b74,11, 0x3b01ba4,8, 0x3b01c00,9, 0x3b01c40,11, 0x3b01c80,23, 0x3b01ce0,15, 0x3b01d20,15, 0x3b01d60,1, 0x3b02000,1, 0x3b02100,36, 0x3b02200,7, 0x3b10000,22, 0x3b10080,22, 0x3b10100,12, 0x3b10140,12, 0x3b10200,52, 0x3b10300,52, 0x3b10400,11, 0x3b10440,11, 0x3b10480,3, 0x3b104a0,6, 0x3b104c0,6, 0x3b104e0,3, 0x3b104f0,3, 0x3b10800,9, 0x3b10840,15, 0x3b10880,15, 0x3b108c0,15, 0x3b10900,1, 0x3b10914,13, 0x3b10980,17, 0x3b11000,17, 0x3b11080,17, 0x3b11104,5, 0x3b11120,3, 0x3b11130,11, 0x3b11200,31, 0x3b11280,31, 0x3b11300,12, 0x3b11340,12, 0x3b11380,2, 0x3b11390,2, 0x3b113a0,3, 0x3b113b0,3, 0x3b113c0,5, 0x3b113e0,5, 0x3b11400,3, 0x3b11410,3, 0x3b11420,3, 0x3b11430,3, 0x3b11440,3, 0x3b11450,3, 0x3b11460,7, 0x3b11800,26, 0x3b11880,4, 0x3b118c0,25, 0x3b11940,6, 0x3b11960,1, 0x3b11968,2, 0x3b11974,11, 0x3b119a4,12, 0x3b11a00,4, 0x3b11b00,43, 0x3b11c00,4, 0x3b11c20,7, 0x3b11c40,3, 0x3b11c50,1, 0x3b11c60,3, 0x3b11e00,32, 0x3b11e84,1, 0x3b11e90,4, 0x3b11ea4,1, 0x3b11eb4,14, 0x3b11ef0,2, 0x3b11f04,1, 0x3b11f10,8, 0x3b11f34,6, 0x3b12000,3, 0x3b12010,21, 0x3b12080,1, 0x3b12094,1, 0x3b1209c,5, 0x3b12100,15, 0x3b12140,1, 0x3b12180,6, 0x3b14000,22, 0x3b14080,22, 0x3b14100,12, 0x3b14140,12, 0x3b14200,52, 0x3b14300,52, 0x3b14400,11, 0x3b14440,11, 0x3b14480,3, 0x3b144a0,6, 0x3b144c0,6, 0x3b144e0,3, 0x3b144f0,3, 0x3b14800,9, 0x3b14840,15, 0x3b14880,15, 0x3b148c0,15, 0x3b14900,1, 0x3b14914,13, 0x3b14980,17, 0x3b15000,17, 0x3b15080,17, 0x3b15104,5, 0x3b15120,3, 0x3b15130,11, 0x3b15200,31, 0x3b15280,31, 0x3b15300,12, 0x3b15340,12, 0x3b15380,2, 0x3b15390,2, 0x3b153a0,3, 0x3b153b0,3, 0x3b153c0,5, 0x3b153e0,5, 0x3b15400,3, 0x3b15410,3, 0x3b15420,3, 0x3b15430,3, 0x3b15440,3, 0x3b15450,3, 0x3b15460,7, 0x3b15800,26, 0x3b15880,4, 0x3b158c0,25, 0x3b15940,6, 0x3b15960,1, 0x3b15968,2, 0x3b15974,11, 0x3b159a4,12, 0x3b15a00,4, 0x3b15b00,43, 0x3b15c00,4, 0x3b15c20,7, 0x3b15c40,3, 0x3b15c50,1, 0x3b15c60,3, 0x3b15e00,32, 0x3b15e84,1, 0x3b15e90,4, 0x3b15ea4,1, 0x3b15eb4,14, 0x3b15ef0,2, 0x3b15f04,1, 0x3b15f10,8, 0x3b15f34,6, 0x3b16000,3, 0x3b16010,21, 0x3b16080,1, 0x3b16094,1, 0x3b1609c,5, 0x3b16100,15, 0x3b16140,1, 0x3b16180,6, 0x3b18000,100, 0x3b18200,3, 0x3b18210,5, 0x3b20000,12, 0x3b20040,2, 0x3b20050,3, 0x3b22000,1006, 0x3b23000,31, 0x3b23084,6, 0x3b24004,1, 0x3b2400c,3, 0x3b24200,23, 0x3b24280,23, 0x3b24300,1, 0x3b24400,1, 0x3b24800,122, 0x3b24a00,122, 0x3b24c04,63, 0x3b24d04,1, 0x3b24d10,5, 0x3b24d40,6, 0x3b24d60,5, 0x3b26000,1, 0x3b26100,1, 0x3b26108,3, 0x3b26120,2, 0x3b26134,8, 0x3b26160,2, 0x3b26174,8, 0x3b261a0,4, 0x3b26200,54, 0x3b26800,5, 0x3b26820,2, 0x3b26834,1, 0x3b2683c,1, 0x3b26a00,24, 0x3b26a80,24, 0x3b26b00,1, 0x3b26c00,6, 0x3b26c24,5, 0x3b26c40,16, 0x3b27000,1, 0x3b27020,5, 0x3b27040,1, 0x3b27048,2, 0x3b27080,1, 0x3b27100,4, 0x3b27180,24, 0x3b27200,4, 0x3b27280,27, 0x3b27300,2, 0x3b2730c,3, 0x3b28004,1, 0x3b2800c,3, 0x3b28020,1, 0x3b28100,2, 0x3b28110,3, 0x3b28120,2, 0x3b28140,10, 0x3b28180,13, 0x3b28200,2, 0x3b28210,3, 0x3b28220,2, 0x3b28240,10, 0x3b28280,13, 0x3b28400,14, 0x3b28440,3, 0x3b28450,3, 0x3b28460,1, 0x3b28500,36, 0x3b28600,10, 0x3b28640,5, 0x3b28660,5, 0x3b28700,27, 0x3b28780,7, 0x3b287a0,8, 0x3b28800,27, 0x3b28880,7, 0x3b288a0,8, 0x3b28900,27, 0x3b28980,7, 0x3b289a0,8, 0x3b28a00,27, 0x3b28a80,7, 0x3b28aa0,8, 0x3b28b00,48, 0x3b28bc4,8, 0x3b28bf0,30, 0x3b28c80,4, 0x3b28cc0,25, 0x3b28d40,6, 0x3b28d60,1, 0x3b28d68,2, 0x3b28d74,3, 0x3b28e00,8, 0x3b28e24,28, 0x3b29000,4, 0x3b29080,23, 0x3b29100,14, 0x3b29140,9, 0x3b29200,10, 0x3b29230,3, 0x3b29240,5, 0x3b29260,5, 0x3b29280,9, 0x3b29400,67, 0x3b29600,10, 0x3b30000,12, 0x3b30040,2, 0x3b30050,3, 0x3b32000,1006, 0x3b33000,31, 0x3b33084,6, 0x3b34004,1, 0x3b3400c,3, 0x3b34200,23, 0x3b34280,23, 0x3b34300,1, 0x3b34400,1, 0x3b34800,122, 0x3b34a00,122, 0x3b34c04,63, 0x3b34d04,1, 0x3b34d10,5, 0x3b34d40,6, 0x3b34d60,5, 0x3b36000,1, 0x3b36100,1, 0x3b36108,3, 0x3b36120,2, 0x3b36134,8, 0x3b36160,2, 0x3b36174,8, 0x3b361a0,4, 0x3b36200,54, 0x3b36800,5, 0x3b36820,2, 0x3b36834,1, 0x3b3683c,1, 0x3b36a00,24, 0x3b36a80,24, 0x3b36b00,1, 0x3b36c00,6, 0x3b36c24,5, 0x3b36c40,16, 0x3b37000,1, 0x3b37020,5, 0x3b37040,1, 0x3b37048,2, 0x3b37080,1, 0x3b37100,4, 0x3b37180,24, 0x3b37200,4, 0x3b37280,27, 0x3b37300,2, 0x3b3730c,3, 0x3b38004,1, 0x3b3800c,3, 0x3b38020,1, 0x3b38100,2, 0x3b38110,3, 0x3b38120,2, 0x3b38140,10, 0x3b38180,13, 0x3b38200,2, 0x3b38210,3, 0x3b38220,2, 0x3b38240,10, 0x3b38280,13, 0x3b38400,14, 0x3b38440,3, 0x3b38450,3, 0x3b38460,1, 0x3b38500,36, 0x3b38600,10, 0x3b38640,5, 0x3b38660,5, 0x3b38700,27, 0x3b38780,7, 0x3b387a0,8, 0x3b38800,27, 0x3b38880,7, 0x3b388a0,8, 0x3b38900,27, 0x3b38980,7, 0x3b389a0,8, 0x3b38a00,27, 0x3b38a80,7, 0x3b38aa0,8, 0x3b38b00,48, 0x3b38bc4,8, 0x3b38bf0,30, 0x3b38c80,4, 0x3b38cc0,25, 0x3b38d40,6, 0x3b38d60,1, 0x3b38d68,2, 0x3b38d74,3, 0x3b38e00,8, 0x3b38e24,28, 0x3b39000,4, 0x3b39080,23, 0x3b39100,14, 0x3b39140,9, 0x3b39200,10, 0x3b39230,3, 0x3b39240,5, 0x3b39260,5, 0x3b39280,9, 0x3b39400,67, 0x3b39600,10, 0x3c00000,1, 0x3c00020,3, 0x3c00030,2, 0x3c00040,3, 0x3c00050,2, 0x3c00800,53, 0x3c00900,3, 0x3c00910,13, 0x3c00a00,53, 0x3c00b00,3, 0x3c00b10,13, 0x3c00c00,5, 0x3c00c20,5, 0x3c00c40,18, 0x3c01000,6, 0x3c01020,4, 0x3c01040,16, 0x3c02000,20, 0x3c02080,15, 0x3c02100,20, 0x3c02180,15, 0x3c02200,23, 0x3c02260,7, 0x3c02400,11, 0x3c02430,3, 0x3c02440,3, 0x3c02450,3, 0x3c02460,24, 0x3c02500,11, 0x3c02530,3, 0x3c02540,3, 0x3c02550,3, 0x3c02560,24, 0x3c02600,11, 0x3c02630,3, 0x3c02640,3, 0x3c02650,3, 0x3c02660,24, 0x3c02700,11, 0x3c02730,3, 0x3c02740,3, 0x3c02750,3, 0x3c02760,24, 0x3c02800,4, 0x3c02820,16, 0x3c02880,10, 0x3c028c0,10, 0x3c02900,6, 0x3c02920,6, 0x3c02940,4, 0x3c02980,13, 0x3c029c0,13, 0x3c02a00,9, 0x3c03000,14, 0x3c03040,9, 0x3c03080,6, 0x3c030a0,1, 0x3c030a8,4, 0x3c03100,4, 0x3c03200,124, 0x3c03400,124, 0x3c03600,8, 0x3c03624,1, 0x3c03644,6, 0x3c03664,6, 0x3c03680,1, 0x3c03688,6, 0x3c036a8,22, 0x3c04000,1, 0x3c04020,3, 0x3c04030,2, 0x3c04040,3, 0x3c04050,2, 0x3c04800,53, 0x3c04900,3, 0x3c04910,13, 0x3c04a00,53, 0x3c04b00,3, 0x3c04b10,13, 0x3c04c00,5, 0x3c04c20,5, 0x3c04c40,18, 0x3c05000,6, 0x3c05020,4, 0x3c05040,16, 0x3c06000,20, 0x3c06080,15, 0x3c06100,20, 0x3c06180,15, 0x3c06200,23, 0x3c06260,7, 0x3c06400,11, 0x3c06430,3, 0x3c06440,3, 0x3c06450,3, 0x3c06460,24, 0x3c06500,11, 0x3c06530,3, 0x3c06540,3, 0x3c06550,3, 0x3c06560,24, 0x3c06600,11, 0x3c06630,3, 0x3c06640,3, 0x3c06650,3, 0x3c06660,24, 0x3c06700,11, 0x3c06730,3, 0x3c06740,3, 0x3c06750,3, 0x3c06760,24, 0x3c06800,4, 0x3c06820,16, 0x3c06880,10, 0x3c068c0,10, 0x3c06900,6, 0x3c06920,6, 0x3c06940,4, 0x3c06980,13, 0x3c069c0,13, 0x3c06a00,9, 0x3c07000,14, 0x3c07040,9, 0x3c07080,6, 0x3c070a0,1, 0x3c070a8,4, 0x3c07100,4, 0x3c07200,124, 0x3c07400,124, 0x3c07600,8, 0x3c07624,1, 0x3c07644,6, 0x3c07664,6, 0x3c07680,1, 0x3c07688,6, 0x3c076a8,22, 0x3c08000,84, 0x3c08180,20, 0x3c08200,5, 0x3c08400,11, 0x3c08440,11, 0x3c08480,19, 0x3c08500,19, 0x3c08580,24, 0x3c08600,13, 0x3c08800,84, 0x3c08980,20, 0x3c08a00,5, 0x3c08c00,11, 0x3c08c40,11, 0x3c08c80,19, 0x3c08d00,19, 0x3c08d80,24, 0x3c08e00,13, 0x3c09000,10, 0x3c09040,5, 0x3c09080,10, 0x3c090c0,5, 0x3c09100,5, 0x3c09200,11, 0x3c09230,3, 0x3c09240,5, 0x3c09260,5, 0x3c09280,32, 0x3c09400,13, 0x3c09440,13, 0x3c09480,9, 0x3c094c0,1, 0x3c094d0,5, 0x3c094f0,21, 0x3c09800,10, 0x3c09840,5, 0x3c09880,10, 0x3c098c0,5, 0x3c09900,5, 0x3c09a00,11, 0x3c09a30,3, 0x3c09a40,5, 0x3c09a60,5, 0x3c09a80,32, 0x3c09c00,13, 0x3c09c40,13, 0x3c09c80,9, 0x3c09cc0,1, 0x3c09cd0,5, 0x3c09cf0,21, 0x3c0a000,14, 0x3c0a040,9, 0x3c0a080,6, 0x3c0a0a0,1, 0x3c0a0a8,4, 0x3c0a100,7, 0x3c0a120,3, 0x3c0a130,25, 0x3c0c000,26, 0x3c0c06c,2, 0x3c0c080,3, 0x3c0c090,17, 0x3c0c100,26, 0x3c0c16c,2, 0x3c0c180,3, 0x3c0c190,17, 0x3c0c200,26, 0x3c0c26c,2, 0x3c0c280,3, 0x3c0c290,17, 0x3c0c300,26, 0x3c0c36c,2, 0x3c0c380,3, 0x3c0c390,17, 0x3c0c400,26, 0x3c0c46c,2, 0x3c0c480,3, 0x3c0c490,17, 0x3c0c500,26, 0x3c0c56c,2, 0x3c0c580,3, 0x3c0c590,17, 0x3c0c600,26, 0x3c0c66c,2, 0x3c0c680,3, 0x3c0c690,17, 0x3c0c700,26, 0x3c0c76c,2, 0x3c0c780,3, 0x3c0c790,17, 0x3c0c800,12, 0x3c0c844,1, 0x3c0c854,8, 0x3c0c880,7, 0x3c0c8a0,2, 0x3c0c8ac,2, 0x3c0c8c0,26, 0x3c0c980,4, 0x3c0c9a0,5, 0x3c0c9c0,1, 0x3c0d000,3, 0x3c0d010,3, 0x3c0d020,3, 0x3c0d030,3, 0x3c0d040,3, 0x3c0d050,3, 0x3c0d060,3, 0x3c0d070,3, 0x3c0d080,5, 0x3c0d0a0,5, 0x3c0d0c0,5, 0x3c0d0e0,5, 0x3c0d100,5, 0x3c0d120,5, 0x3c0d140,5, 0x3c0d160,5, 0x3c0d200,68, 0x3c0d400,1, 0x3c0d804,1, 0x3c0d844,54, 0x3c0da00,11, 0x3c0da40,11, 0x3c0da80,11, 0x3c0dac0,11, 0x3c0db00,11, 0x3c0db40,11, 0x3c0db80,11, 0x3c0dbc0,11, 0x3c0dc00,28, 0x3c0dc80,5, 0x3c0dca0,2, 0x3c0e000,4, 0x3c0e020,6, 0x3c0e040,6, 0x3c0e060,14, 0x3c0e100,26, 0x3c0e180,15, 0x3c0e200,14, 0x3c0e240,9, 0x3c0e280,6, 0x3c0e2a0,1, 0x3c0e2a8,4, 0x3c0e300,14, 0x3c0e340,9, 0x3c0e380,6, 0x3c0e3a0,4, 0x3c0e400,9, 0x3c20000,1, 0x3c21000,977, 0x3c22000,161, 0x3c23000,977, 0x3c24000,977, 0x3c25000,977, 0x3c26000,977, 0x3c27000,977, 0x3c28000,977, 0x3c29000,977, 0x3c2a000,977, 0x3c2b000,161, 0x3c2c000,12, 0x3c2c040,14, 0x3c2c080,20, 0x3c2c104,1, 0x3c2c10c,4, 0x3c2c200,12, 0x3c2c240,14, 0x3c2c280,20, 0x3c2c304,1, 0x3c2c30c,4, 0x3c2c400,12, 0x3c2c440,14, 0x3c2c480,20, 0x3c2c504,1, 0x3c2c50c,4, 0x3c2c600,12, 0x3c2c640,14, 0x3c2c680,20, 0x3c2c704,1, 0x3c2c70c,4, 0x3c2c800,12, 0x3c2c840,14, 0x3c2c880,20, 0x3c2c904,1, 0x3c2c90c,4, 0x3c2ca00,12, 0x3c2ca40,14, 0x3c2ca80,20, 0x3c2cb04,1, 0x3c2cb0c,4, 0x3c2cc00,12, 0x3c2cc40,14, 0x3c2cc80,20, 0x3c2cd04,1, 0x3c2cd0c,4, 0x3c2ce00,12, 0x3c2ce40,14, 0x3c2ce80,20, 0x3c2cf04,1, 0x3c2cf0c,4, 0x3c2d000,12, 0x3c2d040,14, 0x3c2d080,20, 0x3c2d104,1, 0x3c2d10c,4, 0x3c2d200,17, 0x3c2d250,2, 0x3c2d260,4, 0x3c2e000,1, 0x3c2e014,1, 0x3c2e01c,11, 0x3c2e060,9, 0x3c2e094,1, 0x3c2e09c,11, 0x3c2e0e0,15, 0x3c2e200,12, 0x3c2e240,13, 0x3c2e280,3, 0x3c2e290,1, 0x3c80000,500, 0x3c80800,2, 0x3c80820,15, 0x3c81000,500, 0x3c81800,8, 0x3c81824,6, 0x3c81840,8, 0x3c81880,7, 0x3c818a0,7, 0x3c818c0,7, 0x3c818e0,7, 0x3c81900,8, 0x3c81924,16, 0x3c81980,12, 0x3c82000,500, 0x3c82800,2, 0x3c82820,15, 0x3c83000,500, 0x3c83800,8, 0x3c83824,6, 0x3c83840,8, 0x3c83880,7, 0x3c838a0,7, 0x3c838c0,7, 0x3c838e0,7, 0x3c83900,8, 0x3c83924,16, 0x3c83980,12, 0x3c84004,5, 0x3c84200,26, 0x3c84280,4, 0x3c842c0,25, 0x3c84340,6, 0x3c84360,1, 0x3c84368,2, 0x3c84374,11, 0x3c843a4,10, 0x3c84400,1, 0x3c88000,52, 0x3c88400,82, 0x3c88560,6, 0x3c88600,41, 0x3c88700,2, 0x3c88720,19, 0x3c88800,25, 0x3c88880,1, 0x3c88900,28, 0x3c88980,1, 0x3c89000,52, 0x3c89400,82, 0x3c89560,6, 0x3c89600,41, 0x3c89700,2, 0x3c89720,19, 0x3c89800,25, 0x3c89880,1, 0x3c89900,28, 0x3c89980,1, 0x3c8a000,7, 0x3c8a080,6, 0x3c8a0a0,6, 0x3c8a0c0,1, 0x3c8a100,4, 0x3c8a120,9, 0x3c8c000,3, 0x3c8c010,6, 0x3c8c200,7, 0x3c8c220,6, 0x3c8c240,7, 0x3c8c260,6, 0x3c8c280,2, 0x3c8c28c,2, 0x3c8c2a0,2, 0x3c8c2ac,2, 0x3c8c2c0,7, 0x3c8c2e0,7, 0x3c8c300,2, 0x3c8c30c,2, 0x3c8c320,6, 0x3c8c400,3, 0x3c8c440,12, 0x3c8c800,7, 0x3c8c820,14, 0x3c8c880,16, 0x3c8c900,7, 0x3c8c920,14, 0x3c8c980,16, 0x3c8ca00,6, 0x3c8ca20,7, 0x3c8cc00,3, 0x3ca0000,3, 0x3ca0800,7, 0x3ca0820,6, 0x3ca0840,6, 0x3ca0880,1, 0x3ca0894,1, 0x3ca089c,2, 0x3ca08c0,9, 0x3ca0900,18, 0x3ca0a00,36, 0x3ca0b00,22, 0x3ca0b80,18, 0x3ca0c00,3, 0x3ca0c10,3, 0x3ca1000,3, 0x3ca1010,2, 0x3ca1080,20, 0x3ca1100,1, 0x3ca1200,26, 0x3ca1280,4, 0x3ca12c0,25, 0x3ca1340,6, 0x3ca1360,1, 0x3ca1368,2, 0x3ca1374,11, 0x3ca13a4,4, 0x3ca1400,1, 0x3cb0000,11, 0x3cb0030,19, 0x3cb0080,17, 0x3cb0100,11, 0x3cb0130,19, 0x3cb0180,17, 0x3cb0200,3, 0x3cb0214,1, 0x3cb021c,1, 0x3cb0280,3, 0x3cb0294,1, 0x3cb029c,1, 0x3cb0300,18, 0x3cb0380,18, 0x3cb0400,18, 0x3cb0480,18, 0x3cb0500,18, 0x3cb0580,18, 0x3cb0600,18, 0x3cb0680,18, 0x3cb0700,13, 0x3cb0738,6, 0x3cb0780,13, 0x3cb07b8,6, 0x3cb0800,1, 0x3cb0808,22, 0x3cb0880,1, 0x3cb0894,13, 0x3cb0900,3, 0x3cb0910,3, 0x3cb0920,3, 0x3cb0940,3, 0x3cb0954,1, 0x3cb095c,1, 0x3cb0a00,52, 0x3cb0c00,4, 0x3cb0d00,34, 0x3cb0e00,4, 0x3cb0e80,30, 0x3cb0f00,1, 0x3cb0f40,5, 0x3cb0f60,5, 0x3cb0f80,6, 0x3cb1000,14, 0x3cb1040,4, 0x3cb1060,17, 0x3cb10c0,6, 0x3cb10e0,1, 0x3cb10e8,2, 0x3cb10f4,11, 0x3cb1124,17, 0x3cb1200,3, 0x3cb1210,3, 0x3cb1220,3, 0x3cb1230,3, 0x3cb1240,3, 0x3cb1250,3, 0x3cb2000,20, 0x3cb2080,3, 0x3cb2090,1, 0x3cb2098,2, 0x3cc0000,500, 0x3cc0800,2, 0x3cc0820,15, 0x3cc1000,500, 0x3cc1800,8, 0x3cc1824,6, 0x3cc1840,8, 0x3cc1880,7, 0x3cc18a0,7, 0x3cc18c0,7, 0x3cc18e0,7, 0x3cc1900,8, 0x3cc1924,16, 0x3cc1980,12, 0x3cc2000,500, 0x3cc2800,2, 0x3cc2820,15, 0x3cc3000,500, 0x3cc3800,8, 0x3cc3824,6, 0x3cc3840,8, 0x3cc3880,7, 0x3cc38a0,7, 0x3cc38c0,7, 0x3cc38e0,7, 0x3cc3900,8, 0x3cc3924,16, 0x3cc3980,12, 0x3cc4004,5, 0x3cc4200,26, 0x3cc4280,4, 0x3cc42c0,25, 0x3cc4340,6, 0x3cc4360,1, 0x3cc4368,2, 0x3cc4374,11, 0x3cc43a4,10, 0x3cc4400,1, 0x3cc8000,52, 0x3cc8400,82, 0x3cc8560,6, 0x3cc8600,41, 0x3cc8700,2, 0x3cc8720,19, 0x3cc8800,25, 0x3cc8880,1, 0x3cc8900,28, 0x3cc8980,1, 0x3cc9000,52, 0x3cc9400,82, 0x3cc9560,6, 0x3cc9600,41, 0x3cc9700,2, 0x3cc9720,19, 0x3cc9800,25, 0x3cc9880,1, 0x3cc9900,28, 0x3cc9980,1, 0x3cca000,7, 0x3cca080,6, 0x3cca0a0,6, 0x3cca0c0,1, 0x3cca100,4, 0x3cca120,9, 0x3ccc000,3, 0x3ccc010,6, 0x3ccc200,7, 0x3ccc220,6, 0x3ccc240,7, 0x3ccc260,6, 0x3ccc280,2, 0x3ccc28c,2, 0x3ccc2a0,2, 0x3ccc2ac,2, 0x3ccc2c0,7, 0x3ccc2e0,7, 0x3ccc300,2, 0x3ccc30c,2, 0x3ccc320,6, 0x3ccc400,3, 0x3ccc440,12, 0x3ccc800,7, 0x3ccc820,14, 0x3ccc880,16, 0x3ccc900,7, 0x3ccc920,14, 0x3ccc980,16, 0x3ccca00,6, 0x3ccca20,7, 0x3cccc00,3, 0x3ce0000,3, 0x3ce0800,7, 0x3ce0820,6, 0x3ce0840,6, 0x3ce0880,1, 0x3ce0894,1, 0x3ce089c,2, 0x3ce08c0,9, 0x3ce0900,18, 0x3ce0a00,36, 0x3ce0b00,22, 0x3ce0b80,18, 0x3ce0c00,3, 0x3ce0c10,3, 0x3ce1000,3, 0x3ce1010,2, 0x3ce1080,20, 0x3ce1100,1, 0x3ce1200,26, 0x3ce1280,4, 0x3ce12c0,25, 0x3ce1340,6, 0x3ce1360,1, 0x3ce1368,2, 0x3ce1374,11, 0x3ce13a4,4, 0x3ce1400,1, 0x3cf0000,11, 0x3cf0030,19, 0x3cf0080,17, 0x3cf0100,11, 0x3cf0130,19, 0x3cf0180,17, 0x3cf0200,3, 0x3cf0214,1, 0x3cf021c,1, 0x3cf0280,3, 0x3cf0294,1, 0x3cf029c,1, 0x3cf0300,18, 0x3cf0380,18, 0x3cf0400,18, 0x3cf0480,18, 0x3cf0500,18, 0x3cf0580,18, 0x3cf0600,18, 0x3cf0680,18, 0x3cf0700,13, 0x3cf0738,6, 0x3cf0780,13, 0x3cf07b8,6, 0x3cf0800,1, 0x3cf0808,22, 0x3cf0880,1, 0x3cf0894,13, 0x3cf0900,3, 0x3cf0910,3, 0x3cf0920,3, 0x3cf0940,3, 0x3cf0954,1, 0x3cf095c,1, 0x3cf0a00,52, 0x3cf0c00,4, 0x3cf0d00,34, 0x3cf0e00,4, 0x3cf0e80,30, 0x3cf0f00,1, 0x3cf0f40,5, 0x3cf0f60,5, 0x3cf0f80,6, 0x3cf1000,14, 0x3cf1040,4, 0x3cf1060,17, 0x3cf10c0,6, 0x3cf10e0,1, 0x3cf10e8,2, 0x3cf10f4,11, 0x3cf1124,17, 0x3cf1200,3, 0x3cf1210,3, 0x3cf1220,3, 0x3cf1230,3, 0x3cf1240,3, 0x3cf1250,3, 0x3cf2000,20, 0x3cf2080,3, 0x3cf2090,1, 0x3cf2098,2, 0x3d00000,13, 0x3d00038,4, 0x3d00050,3, 0x3d00060,3, 0x3d00070,16, 0x3d000c0,5, 0x3d00400,14, 0x3d00440,2, 0x3d0044c,3, 0x3d00480,14, 0x3d004c0,2, 0x3d004cc,3, 0x3d00500,1, 0x3d00508,15, 0x3d00560,2, 0x3d0056c,2, 0x3d00600,4, 0x3d00680,27, 0x3d00800,2, 0x3d00900,32, 0x3d00984,2, 0x3d00990,4, 0x3d00a00,26, 0x3d00a80,4, 0x3d00ac0,25, 0x3d00b40,6, 0x3d00b60,1, 0x3d00b68,2, 0x3d00b74,11, 0x3d00ba4,8, 0x3d00c00,9, 0x3d00c40,11, 0x3d00c80,23, 0x3d00ce0,15, 0x3d00d20,15, 0x3d00d60,1, 0x3d01000,13, 0x3d01038,4, 0x3d01050,3, 0x3d01060,3, 0x3d01070,16, 0x3d010c0,5, 0x3d01400,14, 0x3d01440,2, 0x3d0144c,3, 0x3d01480,14, 0x3d014c0,2, 0x3d014cc,3, 0x3d01500,1, 0x3d01508,15, 0x3d01560,2, 0x3d0156c,2, 0x3d01600,4, 0x3d01680,27, 0x3d01800,2, 0x3d01900,32, 0x3d01984,2, 0x3d01990,4, 0x3d01a00,26, 0x3d01a80,4, 0x3d01ac0,25, 0x3d01b40,6, 0x3d01b60,1, 0x3d01b68,2, 0x3d01b74,11, 0x3d01ba4,8, 0x3d01c00,9, 0x3d01c40,11, 0x3d01c80,23, 0x3d01ce0,15, 0x3d01d20,15, 0x3d01d60,1, 0x3d02000,1, 0x3d02100,36, 0x3d02200,7, 0x3d10000,22, 0x3d10080,22, 0x3d10100,12, 0x3d10140,12, 0x3d10200,52, 0x3d10300,52, 0x3d10400,11, 0x3d10440,11, 0x3d10480,3, 0x3d104a0,6, 0x3d104c0,6, 0x3d104e0,3, 0x3d104f0,3, 0x3d10800,9, 0x3d10840,15, 0x3d10880,15, 0x3d108c0,15, 0x3d10900,1, 0x3d10914,13, 0x3d10980,17, 0x3d11000,17, 0x3d11080,17, 0x3d11104,5, 0x3d11120,3, 0x3d11130,11, 0x3d11200,31, 0x3d11280,31, 0x3d11300,12, 0x3d11340,12, 0x3d11380,2, 0x3d11390,2, 0x3d113a0,3, 0x3d113b0,3, 0x3d113c0,5, 0x3d113e0,5, 0x3d11400,3, 0x3d11410,3, 0x3d11420,3, 0x3d11430,3, 0x3d11440,3, 0x3d11450,3, 0x3d11460,7, 0x3d11800,26, 0x3d11880,4, 0x3d118c0,25, 0x3d11940,6, 0x3d11960,1, 0x3d11968,2, 0x3d11974,11, 0x3d119a4,12, 0x3d11a00,4, 0x3d11b00,43, 0x3d11c00,4, 0x3d11c20,7, 0x3d11c40,3, 0x3d11c50,1, 0x3d11c60,3, 0x3d11e00,32, 0x3d11e84,1, 0x3d11e90,4, 0x3d11ea4,1, 0x3d11eb4,14, 0x3d11ef0,2, 0x3d11f04,1, 0x3d11f10,8, 0x3d11f34,6, 0x3d12000,3, 0x3d12010,21, 0x3d12080,1, 0x3d12094,1, 0x3d1209c,5, 0x3d12100,15, 0x3d12140,1, 0x3d12180,6, 0x3d14000,22, 0x3d14080,22, 0x3d14100,12, 0x3d14140,12, 0x3d14200,52, 0x3d14300,52, 0x3d14400,11, 0x3d14440,11, 0x3d14480,3, 0x3d144a0,6, 0x3d144c0,6, 0x3d144e0,3, 0x3d144f0,3, 0x3d14800,9, 0x3d14840,15, 0x3d14880,15, 0x3d148c0,15, 0x3d14900,1, 0x3d14914,13, 0x3d14980,17, 0x3d15000,17, 0x3d15080,17, 0x3d15104,5, 0x3d15120,3, 0x3d15130,11, 0x3d15200,31, 0x3d15280,31, 0x3d15300,12, 0x3d15340,12, 0x3d15380,2, 0x3d15390,2, 0x3d153a0,3, 0x3d153b0,3, 0x3d153c0,5, 0x3d153e0,5, 0x3d15400,3, 0x3d15410,3, 0x3d15420,3, 0x3d15430,3, 0x3d15440,3, 0x3d15450,3, 0x3d15460,7, 0x3d15800,26, 0x3d15880,4, 0x3d158c0,25, 0x3d15940,6, 0x3d15960,1, 0x3d15968,2, 0x3d15974,11, 0x3d159a4,12, 0x3d15a00,4, 0x3d15b00,43, 0x3d15c00,4, 0x3d15c20,7, 0x3d15c40,3, 0x3d15c50,1, 0x3d15c60,3, 0x3d15e00,32, 0x3d15e84,1, 0x3d15e90,4, 0x3d15ea4,1, 0x3d15eb4,14, 0x3d15ef0,2, 0x3d15f04,1, 0x3d15f10,8, 0x3d15f34,6, 0x3d16000,3, 0x3d16010,21, 0x3d16080,1, 0x3d16094,1, 0x3d1609c,5, 0x3d16100,15, 0x3d16140,1, 0x3d16180,6, 0x3d18000,100, 0x3d18200,3, 0x3d18210,5, 0x3d20000,12, 0x3d20040,2, 0x3d20050,3, 0x3d22000,1006, 0x3d23000,31, 0x3d23084,6, 0x3d24004,1, 0x3d2400c,3, 0x3d24200,23, 0x3d24280,23, 0x3d24300,1, 0x3d24400,1, 0x3d24800,122, 0x3d24a00,122, 0x3d24c04,63, 0x3d24d04,1, 0x3d24d10,5, 0x3d24d40,6, 0x3d24d60,5, 0x3d26000,1, 0x3d26100,1, 0x3d26108,3, 0x3d26120,2, 0x3d26134,8, 0x3d26160,2, 0x3d26174,8, 0x3d261a0,4, 0x3d26200,54, 0x3d26800,5, 0x3d26820,2, 0x3d26834,1, 0x3d2683c,1, 0x3d26a00,24, 0x3d26a80,24, 0x3d26b00,1, 0x3d26c00,6, 0x3d26c24,5, 0x3d26c40,16, 0x3d27000,1, 0x3d27020,5, 0x3d27040,1, 0x3d27048,2, 0x3d27080,1, 0x3d27100,4, 0x3d27180,24, 0x3d27200,4, 0x3d27280,27, 0x3d27300,2, 0x3d2730c,3, 0x3d28004,1, 0x3d2800c,3, 0x3d28020,1, 0x3d28100,2, 0x3d28110,3, 0x3d28120,2, 0x3d28140,10, 0x3d28180,13, 0x3d28200,2, 0x3d28210,3, 0x3d28220,2, 0x3d28240,10, 0x3d28280,13, 0x3d28400,14, 0x3d28440,3, 0x3d28450,3, 0x3d28460,1, 0x3d28500,36, 0x3d28600,10, 0x3d28640,5, 0x3d28660,5, 0x3d28700,27, 0x3d28780,7, 0x3d287a0,8, 0x3d28800,27, 0x3d28880,7, 0x3d288a0,8, 0x3d28900,27, 0x3d28980,7, 0x3d289a0,8, 0x3d28a00,27, 0x3d28a80,7, 0x3d28aa0,8, 0x3d28b00,48, 0x3d28bc4,8, 0x3d28bf0,30, 0x3d28c80,4, 0x3d28cc0,25, 0x3d28d40,6, 0x3d28d60,1, 0x3d28d68,2, 0x3d28d74,3, 0x3d28e00,8, 0x3d28e24,28, 0x3d29000,4, 0x3d29080,23, 0x3d29100,14, 0x3d29140,9, 0x3d29200,10, 0x3d29230,3, 0x3d29240,5, 0x3d29260,5, 0x3d29280,9, 0x3d29400,67, 0x3d29600,10, 0x3d30000,12, 0x3d30040,2, 0x3d30050,3, 0x3d32000,1006, 0x3d33000,31, 0x3d33084,6, 0x3d34004,1, 0x3d3400c,3, 0x3d34200,23, 0x3d34280,23, 0x3d34300,1, 0x3d34400,1, 0x3d34800,122, 0x3d34a00,122, 0x3d34c04,63, 0x3d34d04,1, 0x3d34d10,5, 0x3d34d40,6, 0x3d34d60,5, 0x3d36000,1, 0x3d36100,1, 0x3d36108,3, 0x3d36120,2, 0x3d36134,8, 0x3d36160,2, 0x3d36174,8, 0x3d361a0,4, 0x3d36200,54, 0x3d36800,5, 0x3d36820,2, 0x3d36834,1, 0x3d3683c,1, 0x3d36a00,24, 0x3d36a80,24, 0x3d36b00,1, 0x3d36c00,6, 0x3d36c24,5, 0x3d36c40,16, 0x3d37000,1, 0x3d37020,5, 0x3d37040,1, 0x3d37048,2, 0x3d37080,1, 0x3d37100,4, 0x3d37180,24, 0x3d37200,4, 0x3d37280,27, 0x3d37300,2, 0x3d3730c,3, 0x3d38004,1, 0x3d3800c,3, 0x3d38020,1, 0x3d38100,2, 0x3d38110,3, 0x3d38120,2, 0x3d38140,10, 0x3d38180,13, 0x3d38200,2, 0x3d38210,3, 0x3d38220,2, 0x3d38240,10, 0x3d38280,13, 0x3d38400,14, 0x3d38440,3, 0x3d38450,3, 0x3d38460,1, 0x3d38500,36, 0x3d38600,10, 0x3d38640,5, 0x3d38660,5, 0x3d38700,27, 0x3d38780,7, 0x3d387a0,8, 0x3d38800,27, 0x3d38880,7, 0x3d388a0,8, 0x3d38900,27, 0x3d38980,7, 0x3d389a0,8, 0x3d38a00,27, 0x3d38a80,7, 0x3d38aa0,8, 0x3d38b00,48, 0x3d38bc4,8, 0x3d38bf0,30, 0x3d38c80,4, 0x3d38cc0,25, 0x3d38d40,6, 0x3d38d60,1, 0x3d38d68,2, 0x3d38d74,3, 0x3d38e00,8, 0x3d38e24,28, 0x3d39000,4, 0x3d39080,23, 0x3d39100,14, 0x3d39140,9, 0x3d39200,10, 0x3d39230,3, 0x3d39240,5, 0x3d39260,5, 0x3d39280,9, 0x3d39400,67, 0x3d39600,10, 0x3e00000,1, 0x3e00020,3, 0x3e00030,2, 0x3e00040,3, 0x3e00050,2, 0x3e00800,53, 0x3e00900,3, 0x3e00910,13, 0x3e00a00,53, 0x3e00b00,3, 0x3e00b10,13, 0x3e00c00,5, 0x3e00c20,5, 0x3e00c40,18, 0x3e01000,6, 0x3e01020,4, 0x3e01040,16, 0x3e02000,20, 0x3e02080,15, 0x3e02100,20, 0x3e02180,15, 0x3e02200,23, 0x3e02260,7, 0x3e02400,11, 0x3e02430,3, 0x3e02440,3, 0x3e02450,3, 0x3e02460,24, 0x3e02500,11, 0x3e02530,3, 0x3e02540,3, 0x3e02550,3, 0x3e02560,24, 0x3e02600,11, 0x3e02630,3, 0x3e02640,3, 0x3e02650,3, 0x3e02660,24, 0x3e02700,11, 0x3e02730,3, 0x3e02740,3, 0x3e02750,3, 0x3e02760,24, 0x3e02800,4, 0x3e02820,16, 0x3e02880,10, 0x3e028c0,10, 0x3e02900,6, 0x3e02920,6, 0x3e02940,4, 0x3e02980,13, 0x3e029c0,13, 0x3e02a00,9, 0x3e03000,14, 0x3e03040,9, 0x3e03080,6, 0x3e030a0,1, 0x3e030a8,4, 0x3e03100,4, 0x3e03200,124, 0x3e03400,124, 0x3e03600,8, 0x3e03624,1, 0x3e03644,6, 0x3e03664,6, 0x3e03680,1, 0x3e03688,6, 0x3e036a8,22, 0x3e04000,1, 0x3e04020,3, 0x3e04030,2, 0x3e04040,3, 0x3e04050,2, 0x3e04800,53, 0x3e04900,3, 0x3e04910,13, 0x3e04a00,53, 0x3e04b00,3, 0x3e04b10,13, 0x3e04c00,5, 0x3e04c20,5, 0x3e04c40,18, 0x3e05000,6, 0x3e05020,4, 0x3e05040,16, 0x3e06000,20, 0x3e06080,15, 0x3e06100,20, 0x3e06180,15, 0x3e06200,23, 0x3e06260,7, 0x3e06400,11, 0x3e06430,3, 0x3e06440,3, 0x3e06450,3, 0x3e06460,24, 0x3e06500,11, 0x3e06530,3, 0x3e06540,3, 0x3e06550,3, 0x3e06560,24, 0x3e06600,11, 0x3e06630,3, 0x3e06640,3, 0x3e06650,3, 0x3e06660,24, 0x3e06700,11, 0x3e06730,3, 0x3e06740,3, 0x3e06750,3, 0x3e06760,24, 0x3e06800,4, 0x3e06820,16, 0x3e06880,10, 0x3e068c0,10, 0x3e06900,6, 0x3e06920,6, 0x3e06940,4, 0x3e06980,13, 0x3e069c0,13, 0x3e06a00,9, 0x3e07000,14, 0x3e07040,9, 0x3e07080,6, 0x3e070a0,1, 0x3e070a8,4, 0x3e07100,4, 0x3e07200,124, 0x3e07400,124, 0x3e07600,8, 0x3e07624,1, 0x3e07644,6, 0x3e07664,6, 0x3e07680,1, 0x3e07688,6, 0x3e076a8,22, 0x3e08000,84, 0x3e08180,20, 0x3e08200,5, 0x3e08400,11, 0x3e08440,11, 0x3e08480,19, 0x3e08500,19, 0x3e08580,24, 0x3e08600,13, 0x3e08800,84, 0x3e08980,20, 0x3e08a00,5, 0x3e08c00,11, 0x3e08c40,11, 0x3e08c80,19, 0x3e08d00,19, 0x3e08d80,24, 0x3e08e00,13, 0x3e09000,10, 0x3e09040,5, 0x3e09080,10, 0x3e090c0,5, 0x3e09100,5, 0x3e09200,11, 0x3e09230,3, 0x3e09240,5, 0x3e09260,5, 0x3e09280,32, 0x3e09400,13, 0x3e09440,13, 0x3e09480,9, 0x3e094c0,1, 0x3e094d0,5, 0x3e094f0,21, 0x3e09800,10, 0x3e09840,5, 0x3e09880,10, 0x3e098c0,5, 0x3e09900,5, 0x3e09a00,11, 0x3e09a30,3, 0x3e09a40,5, 0x3e09a60,5, 0x3e09a80,32, 0x3e09c00,13, 0x3e09c40,13, 0x3e09c80,9, 0x3e09cc0,1, 0x3e09cd0,5, 0x3e09cf0,21, 0x3e0a000,14, 0x3e0a040,9, 0x3e0a080,6, 0x3e0a0a0,1, 0x3e0a0a8,4, 0x3e0a100,7, 0x3e0a120,3, 0x3e0a130,25, 0x3e0c000,26, 0x3e0c06c,2, 0x3e0c080,3, 0x3e0c090,17, 0x3e0c100,26, 0x3e0c16c,2, 0x3e0c180,3, 0x3e0c190,17, 0x3e0c200,26, 0x3e0c26c,2, 0x3e0c280,3, 0x3e0c290,17, 0x3e0c300,26, 0x3e0c36c,2, 0x3e0c380,3, 0x3e0c390,17, 0x3e0c400,26, 0x3e0c46c,2, 0x3e0c480,3, 0x3e0c490,17, 0x3e0c500,26, 0x3e0c56c,2, 0x3e0c580,3, 0x3e0c590,17, 0x3e0c600,26, 0x3e0c66c,2, 0x3e0c680,3, 0x3e0c690,17, 0x3e0c700,26, 0x3e0c76c,2, 0x3e0c780,3, 0x3e0c790,17, 0x3e0c800,12, 0x3e0c844,1, 0x3e0c854,8, 0x3e0c880,7, 0x3e0c8a0,2, 0x3e0c8ac,2, 0x3e0c8c0,26, 0x3e0c980,4, 0x3e0c9a0,5, 0x3e0c9c0,1, 0x3e0d000,3, 0x3e0d010,3, 0x3e0d020,3, 0x3e0d030,3, 0x3e0d040,3, 0x3e0d050,3, 0x3e0d060,3, 0x3e0d070,3, 0x3e0d080,5, 0x3e0d0a0,5, 0x3e0d0c0,5, 0x3e0d0e0,5, 0x3e0d100,5, 0x3e0d120,5, 0x3e0d140,5, 0x3e0d160,5, 0x3e0d200,68, 0x3e0d400,1, 0x3e0d804,1, 0x3e0d844,54, 0x3e0da00,11, 0x3e0da40,11, 0x3e0da80,11, 0x3e0dac0,11, 0x3e0db00,11, 0x3e0db40,11, 0x3e0db80,11, 0x3e0dbc0,11, 0x3e0dc00,28, 0x3e0dc80,5, 0x3e0dca0,2, 0x3e0e000,4, 0x3e0e020,6, 0x3e0e040,6, 0x3e0e060,14, 0x3e0e100,26, 0x3e0e180,15, 0x3e0e200,14, 0x3e0e240,9, 0x3e0e280,6, 0x3e0e2a0,1, 0x3e0e2a8,4, 0x3e0e300,14, 0x3e0e340,9, 0x3e0e380,6, 0x3e0e3a0,4, 0x3e0e400,9, 0x3e20000,1, 0x3e21000,977, 0x3e22000,161, 0x3e23000,977, 0x3e24000,977, 0x3e25000,977, 0x3e26000,977, 0x3e27000,977, 0x3e28000,977, 0x3e29000,977, 0x3e2a000,977, 0x3e2b000,161, 0x3e2c000,12, 0x3e2c040,14, 0x3e2c080,20, 0x3e2c104,1, 0x3e2c10c,4, 0x3e2c200,12, 0x3e2c240,14, 0x3e2c280,20, 0x3e2c304,1, 0x3e2c30c,4, 0x3e2c400,12, 0x3e2c440,14, 0x3e2c480,20, 0x3e2c504,1, 0x3e2c50c,4, 0x3e2c600,12, 0x3e2c640,14, 0x3e2c680,20, 0x3e2c704,1, 0x3e2c70c,4, 0x3e2c800,12, 0x3e2c840,14, 0x3e2c880,20, 0x3e2c904,1, 0x3e2c90c,4, 0x3e2ca00,12, 0x3e2ca40,14, 0x3e2ca80,20, 0x3e2cb04,1, 0x3e2cb0c,4, 0x3e2cc00,12, 0x3e2cc40,14, 0x3e2cc80,20, 0x3e2cd04,1, 0x3e2cd0c,4, 0x3e2ce00,12, 0x3e2ce40,14, 0x3e2ce80,20, 0x3e2cf04,1, 0x3e2cf0c,4, 0x3e2d000,12, 0x3e2d040,14, 0x3e2d080,20, 0x3e2d104,1, 0x3e2d10c,4, 0x3e2d200,17, 0x3e2d250,2, 0x3e2d260,4, 0x3e2e000,1, 0x3e2e014,1, 0x3e2e01c,11, 0x3e2e060,9, 0x3e2e094,1, 0x3e2e09c,11, 0x3e2e0e0,15, 0x3e2e200,12, 0x3e2e240,13, 0x3e2e280,3, 0x3e2e290,1, 0x3e80000,500, 0x3e80800,2, 0x3e80820,15, 0x3e81000,500, 0x3e81800,8, 0x3e81824,6, 0x3e81840,8, 0x3e81880,7, 0x3e818a0,7, 0x3e818c0,7, 0x3e818e0,7, 0x3e81900,8, 0x3e81924,16, 0x3e81980,12, 0x3e82000,500, 0x3e82800,2, 0x3e82820,15, 0x3e83000,500, 0x3e83800,8, 0x3e83824,6, 0x3e83840,8, 0x3e83880,7, 0x3e838a0,7, 0x3e838c0,7, 0x3e838e0,7, 0x3e83900,8, 0x3e83924,16, 0x3e83980,12, 0x3e84004,5, 0x3e84200,26, 0x3e84280,4, 0x3e842c0,25, 0x3e84340,6, 0x3e84360,1, 0x3e84368,2, 0x3e84374,11, 0x3e843a4,10, 0x3e84400,1, 0x3e88000,52, 0x3e88400,82, 0x3e88560,6, 0x3e88600,41, 0x3e88700,2, 0x3e88720,19, 0x3e88800,25, 0x3e88880,1, 0x3e88900,28, 0x3e88980,1, 0x3e89000,52, 0x3e89400,82, 0x3e89560,6, 0x3e89600,41, 0x3e89700,2, 0x3e89720,19, 0x3e89800,25, 0x3e89880,1, 0x3e89900,28, 0x3e89980,1, 0x3e8a000,7, 0x3e8a080,6, 0x3e8a0a0,6, 0x3e8a0c0,1, 0x3e8a100,4, 0x3e8a120,9, 0x3e8c000,3, 0x3e8c010,6, 0x3e8c200,7, 0x3e8c220,6, 0x3e8c240,7, 0x3e8c260,6, 0x3e8c280,2, 0x3e8c28c,2, 0x3e8c2a0,2, 0x3e8c2ac,2, 0x3e8c2c0,7, 0x3e8c2e0,7, 0x3e8c300,2, 0x3e8c30c,2, 0x3e8c320,6, 0x3e8c400,3, 0x3e8c440,12, 0x3e8c800,7, 0x3e8c820,14, 0x3e8c880,16, 0x3e8c900,7, 0x3e8c920,14, 0x3e8c980,16, 0x3e8ca00,6, 0x3e8ca20,7, 0x3e8cc00,3, 0x3ea0000,3, 0x3ea0800,7, 0x3ea0820,6, 0x3ea0840,6, 0x3ea0880,1, 0x3ea0894,1, 0x3ea089c,2, 0x3ea08c0,9, 0x3ea0900,18, 0x3ea0a00,36, 0x3ea0b00,22, 0x3ea0b80,18, 0x3ea0c00,3, 0x3ea0c10,3, 0x3ea1000,3, 0x3ea1010,2, 0x3ea1080,20, 0x3ea1100,1, 0x3ea1200,26, 0x3ea1280,4, 0x3ea12c0,25, 0x3ea1340,6, 0x3ea1360,1, 0x3ea1368,2, 0x3ea1374,11, 0x3ea13a4,4, 0x3ea1400,1, 0x3eb0000,11, 0x3eb0030,19, 0x3eb0080,17, 0x3eb0100,11, 0x3eb0130,19, 0x3eb0180,17, 0x3eb0200,3, 0x3eb0214,1, 0x3eb021c,1, 0x3eb0280,3, 0x3eb0294,1, 0x3eb029c,1, 0x3eb0300,18, 0x3eb0380,18, 0x3eb0400,18, 0x3eb0480,18, 0x3eb0500,18, 0x3eb0580,18, 0x3eb0600,18, 0x3eb0680,18, 0x3eb0700,13, 0x3eb0738,6, 0x3eb0780,13, 0x3eb07b8,6, 0x3eb0800,1, 0x3eb0808,22, 0x3eb0880,1, 0x3eb0894,13, 0x3eb0900,3, 0x3eb0910,3, 0x3eb0920,3, 0x3eb0940,3, 0x3eb0954,1, 0x3eb095c,1, 0x3eb0a00,52, 0x3eb0c00,4, 0x3eb0d00,34, 0x3eb0e00,4, 0x3eb0e80,30, 0x3eb0f00,1, 0x3eb0f40,5, 0x3eb0f60,5, 0x3eb0f80,6, 0x3eb1000,14, 0x3eb1040,4, 0x3eb1060,17, 0x3eb10c0,6, 0x3eb10e0,1, 0x3eb10e8,2, 0x3eb10f4,11, 0x3eb1124,17, 0x3eb1200,3, 0x3eb1210,3, 0x3eb1220,3, 0x3eb1230,3, 0x3eb1240,3, 0x3eb1250,3, 0x3eb2000,20, 0x3eb2080,3, 0x3eb2090,1, 0x3eb2098,2, 0x3ec0000,500, 0x3ec0800,2, 0x3ec0820,15, 0x3ec1000,500, 0x3ec1800,8, 0x3ec1824,6, 0x3ec1840,8, 0x3ec1880,7, 0x3ec18a0,7, 0x3ec18c0,7, 0x3ec18e0,7, 0x3ec1900,8, 0x3ec1924,16, 0x3ec1980,12, 0x3ec2000,500, 0x3ec2800,2, 0x3ec2820,15, 0x3ec3000,500, 0x3ec3800,8, 0x3ec3824,6, 0x3ec3840,8, 0x3ec3880,7, 0x3ec38a0,7, 0x3ec38c0,7, 0x3ec38e0,7, 0x3ec3900,8, 0x3ec3924,16, 0x3ec3980,12, 0x3ec4004,5, 0x3ec4200,26, 0x3ec4280,4, 0x3ec42c0,25, 0x3ec4340,6, 0x3ec4360,1, 0x3ec4368,2, 0x3ec4374,11, 0x3ec43a4,10, 0x3ec4400,1, 0x3ec8000,52, 0x3ec8400,82, 0x3ec8560,6, 0x3ec8600,41, 0x3ec8700,2, 0x3ec8720,19, 0x3ec8800,25, 0x3ec8880,1, 0x3ec8900,28, 0x3ec8980,1, 0x3ec9000,52, 0x3ec9400,82, 0x3ec9560,6, 0x3ec9600,41, 0x3ec9700,2, 0x3ec9720,19, 0x3ec9800,25, 0x3ec9880,1, 0x3ec9900,28, 0x3ec9980,1, 0x3eca000,7, 0x3eca080,6, 0x3eca0a0,6, 0x3eca0c0,1, 0x3eca100,4, 0x3eca120,9, 0x3ecc000,3, 0x3ecc010,6, 0x3ecc200,7, 0x3ecc220,6, 0x3ecc240,7, 0x3ecc260,6, 0x3ecc280,2, 0x3ecc28c,2, 0x3ecc2a0,2, 0x3ecc2ac,2, 0x3ecc2c0,7, 0x3ecc2e0,7, 0x3ecc300,2, 0x3ecc30c,2, 0x3ecc320,6, 0x3ecc400,3, 0x3ecc440,12, 0x3ecc800,7, 0x3ecc820,14, 0x3ecc880,16, 0x3ecc900,7, 0x3ecc920,14, 0x3ecc980,16, 0x3ecca00,6, 0x3ecca20,7, 0x3eccc00,3, 0x3ee0000,3, 0x3ee0800,7, 0x3ee0820,6, 0x3ee0840,6, 0x3ee0880,1, 0x3ee0894,1, 0x3ee089c,2, 0x3ee08c0,9, 0x3ee0900,18, 0x3ee0a00,36, 0x3ee0b00,22, 0x3ee0b80,18, 0x3ee0c00,3, 0x3ee0c10,3, 0x3ee1000,3, 0x3ee1010,2, 0x3ee1080,20, 0x3ee1100,1, 0x3ee1200,26, 0x3ee1280,4, 0x3ee12c0,25, 0x3ee1340,6, 0x3ee1360,1, 0x3ee1368,2, 0x3ee1374,11, 0x3ee13a4,4, 0x3ee1400,1, 0x3ef0000,11, 0x3ef0030,19, 0x3ef0080,17, 0x3ef0100,11, 0x3ef0130,19, 0x3ef0180,17, 0x3ef0200,3, 0x3ef0214,1, 0x3ef021c,1, 0x3ef0280,3, 0x3ef0294,1, 0x3ef029c,1, 0x3ef0300,18, 0x3ef0380,18, 0x3ef0400,18, 0x3ef0480,18, 0x3ef0500,18, 0x3ef0580,18, 0x3ef0600,18, 0x3ef0680,18, 0x3ef0700,13, 0x3ef0738,6, 0x3ef0780,13, 0x3ef07b8,6, 0x3ef0800,1, 0x3ef0808,22, 0x3ef0880,1, 0x3ef0894,13, 0x3ef0900,3, 0x3ef0910,3, 0x3ef0920,3, 0x3ef0940,3, 0x3ef0954,1, 0x3ef095c,1, 0x3ef0a00,52, 0x3ef0c00,4, 0x3ef0d00,34, 0x3ef0e00,4, 0x3ef0e80,30, 0x3ef0f00,1, 0x3ef0f40,5, 0x3ef0f60,5, 0x3ef0f80,6, 0x3ef1000,14, 0x3ef1040,4, 0x3ef1060,17, 0x3ef10c0,6, 0x3ef10e0,1, 0x3ef10e8,2, 0x3ef10f4,11, 0x3ef1124,17, 0x3ef1200,3, 0x3ef1210,3, 0x3ef1220,3, 0x3ef1230,3, 0x3ef1240,3, 0x3ef1250,3, 0x3ef2000,20, 0x3ef2080,3, 0x3ef2090,1, 0x3ef2098,2, 0x3f00000,13, 0x3f00038,4, 0x3f00050,3, 0x3f00060,3, 0x3f00070,16, 0x3f000c0,5, 0x3f00400,14, 0x3f00440,2, 0x3f0044c,3, 0x3f00480,14, 0x3f004c0,2, 0x3f004cc,3, 0x3f00500,1, 0x3f00508,15, 0x3f00560,2, 0x3f0056c,2, 0x3f00600,4, 0x3f00680,27, 0x3f00800,2, 0x3f00900,32, 0x3f00984,2, 0x3f00990,4, 0x3f00a00,26, 0x3f00a80,4, 0x3f00ac0,25, 0x3f00b40,6, 0x3f00b60,1, 0x3f00b68,2, 0x3f00b74,11, 0x3f00ba4,8, 0x3f00c00,9, 0x3f00c40,11, 0x3f00c80,23, 0x3f00ce0,15, 0x3f00d20,15, 0x3f00d60,1, 0x3f01000,13, 0x3f01038,4, 0x3f01050,3, 0x3f01060,3, 0x3f01070,16, 0x3f010c0,5, 0x3f01400,14, 0x3f01440,2, 0x3f0144c,3, 0x3f01480,14, 0x3f014c0,2, 0x3f014cc,3, 0x3f01500,1, 0x3f01508,15, 0x3f01560,2, 0x3f0156c,2, 0x3f01600,4, 0x3f01680,27, 0x3f01800,2, 0x3f01900,32, 0x3f01984,2, 0x3f01990,4, 0x3f01a00,26, 0x3f01a80,4, 0x3f01ac0,25, 0x3f01b40,6, 0x3f01b60,1, 0x3f01b68,2, 0x3f01b74,11, 0x3f01ba4,8, 0x3f01c00,9, 0x3f01c40,11, 0x3f01c80,23, 0x3f01ce0,15, 0x3f01d20,15, 0x3f01d60,1, 0x3f02000,1, 0x3f02100,36, 0x3f02200,7, 0x3f10000,22, 0x3f10080,22, 0x3f10100,12, 0x3f10140,12, 0x3f10200,52, 0x3f10300,52, 0x3f10400,11, 0x3f10440,11, 0x3f10480,3, 0x3f104a0,6, 0x3f104c0,6, 0x3f104e0,3, 0x3f104f0,3, 0x3f10800,9, 0x3f10840,15, 0x3f10880,15, 0x3f108c0,15, 0x3f10900,1, 0x3f10914,13, 0x3f10980,17, 0x3f11000,17, 0x3f11080,17, 0x3f11104,5, 0x3f11120,3, 0x3f11130,11, 0x3f11200,31, 0x3f11280,31, 0x3f11300,12, 0x3f11340,12, 0x3f11380,2, 0x3f11390,2, 0x3f113a0,3, 0x3f113b0,3, 0x3f113c0,5, 0x3f113e0,5, 0x3f11400,3, 0x3f11410,3, 0x3f11420,3, 0x3f11430,3, 0x3f11440,3, 0x3f11450,3, 0x3f11460,7, 0x3f11800,26, 0x3f11880,4, 0x3f118c0,25, 0x3f11940,6, 0x3f11960,1, 0x3f11968,2, 0x3f11974,11, 0x3f119a4,12, 0x3f11a00,4, 0x3f11b00,43, 0x3f11c00,4, 0x3f11c20,7, 0x3f11c40,3, 0x3f11c50,1, 0x3f11c60,3, 0x3f11e00,32, 0x3f11e84,1, 0x3f11e90,4, 0x3f11ea4,1, 0x3f11eb4,14, 0x3f11ef0,2, 0x3f11f04,1, 0x3f11f10,8, 0x3f11f34,6, 0x3f12000,3, 0x3f12010,21, 0x3f12080,1, 0x3f12094,1, 0x3f1209c,5, 0x3f12100,15, 0x3f12140,1, 0x3f12180,6, 0x3f14000,22, 0x3f14080,22, 0x3f14100,12, 0x3f14140,12, 0x3f14200,52, 0x3f14300,52, 0x3f14400,11, 0x3f14440,11, 0x3f14480,3, 0x3f144a0,6, 0x3f144c0,6, 0x3f144e0,3, 0x3f144f0,3, 0x3f14800,9, 0x3f14840,15, 0x3f14880,15, 0x3f148c0,15, 0x3f14900,1, 0x3f14914,13, 0x3f14980,17, 0x3f15000,17, 0x3f15080,17, 0x3f15104,5, 0x3f15120,3, 0x3f15130,11, 0x3f15200,31, 0x3f15280,31, 0x3f15300,12, 0x3f15340,12, 0x3f15380,2, 0x3f15390,2, 0x3f153a0,3, 0x3f153b0,3, 0x3f153c0,5, 0x3f153e0,5, 0x3f15400,3, 0x3f15410,3, 0x3f15420,3, 0x3f15430,3, 0x3f15440,3, 0x3f15450,3, 0x3f15460,7, 0x3f15800,26, 0x3f15880,4, 0x3f158c0,25, 0x3f15940,6, 0x3f15960,1, 0x3f15968,2, 0x3f15974,11, 0x3f159a4,12, 0x3f15a00,4, 0x3f15b00,43, 0x3f15c00,4, 0x3f15c20,7, 0x3f15c40,3, 0x3f15c50,1, 0x3f15c60,3, 0x3f15e00,32, 0x3f15e84,1, 0x3f15e90,4, 0x3f15ea4,1, 0x3f15eb4,14, 0x3f15ef0,2, 0x3f15f04,1, 0x3f15f10,8, 0x3f15f34,6, 0x3f16000,3, 0x3f16010,21, 0x3f16080,1, 0x3f16094,1, 0x3f1609c,5, 0x3f16100,15, 0x3f16140,1, 0x3f16180,6, 0x3f18000,100, 0x3f18200,3, 0x3f18210,5, 0x3f20000,12, 0x3f20040,2, 0x3f20050,3, 0x3f22000,1006, 0x3f23000,31, 0x3f23084,6, 0x3f24004,1, 0x3f2400c,3, 0x3f24200,23, 0x3f24280,23, 0x3f24300,1, 0x3f24400,1, 0x3f24800,122, 0x3f24a00,122, 0x3f24c04,63, 0x3f24d04,1, 0x3f24d10,5, 0x3f24d40,6, 0x3f24d60,5, 0x3f26000,1, 0x3f26100,1, 0x3f26108,3, 0x3f26120,2, 0x3f26134,8, 0x3f26160,2, 0x3f26174,8, 0x3f261a0,4, 0x3f26200,54, 0x3f26800,5, 0x3f26820,2, 0x3f26834,1, 0x3f2683c,1, 0x3f26a00,24, 0x3f26a80,24, 0x3f26b00,1, 0x3f26c00,6, 0x3f26c24,5, 0x3f26c40,16, 0x3f27000,1, 0x3f27020,5, 0x3f27040,1, 0x3f27048,2, 0x3f27080,1, 0x3f27100,4, 0x3f27180,24, 0x3f27200,4, 0x3f27280,27, 0x3f27300,2, 0x3f2730c,3, 0x3f28004,1, 0x3f2800c,3, 0x3f28020,1, 0x3f28100,2, 0x3f28110,3, 0x3f28120,2, 0x3f28140,10, 0x3f28180,13, 0x3f28200,2, 0x3f28210,3, 0x3f28220,2, 0x3f28240,10, 0x3f28280,13, 0x3f28400,14, 0x3f28440,3, 0x3f28450,3, 0x3f28460,1, 0x3f28500,36, 0x3f28600,10, 0x3f28640,5, 0x3f28660,5, 0x3f28700,27, 0x3f28780,7, 0x3f287a0,8, 0x3f28800,27, 0x3f28880,7, 0x3f288a0,8, 0x3f28900,27, 0x3f28980,7, 0x3f289a0,8, 0x3f28a00,27, 0x3f28a80,7, 0x3f28aa0,8, 0x3f28b00,48, 0x3f28bc4,8, 0x3f28bf0,30, 0x3f28c80,4, 0x3f28cc0,25, 0x3f28d40,6, 0x3f28d60,1, 0x3f28d68,2, 0x3f28d74,3, 0x3f28e00,8, 0x3f28e24,28, 0x3f29000,4, 0x3f29080,23, 0x3f29100,14, 0x3f29140,9, 0x3f29200,10, 0x3f29230,3, 0x3f29240,5, 0x3f29260,5, 0x3f29280,9, 0x3f29400,67, 0x3f29600,10, 0x3f30000,12, 0x3f30040,2, 0x3f30050,3, 0x3f32000,1006, 0x3f33000,31, 0x3f33084,6, 0x3f34004,1, 0x3f3400c,3, 0x3f34200,23, 0x3f34280,23, 0x3f34300,1, 0x3f34400,1, 0x3f34800,122, 0x3f34a00,122, 0x3f34c04,63, 0x3f34d04,1, 0x3f34d10,5, 0x3f34d40,6, 0x3f34d60,5, 0x3f36000,1, 0x3f36100,1, 0x3f36108,3, 0x3f36120,2, 0x3f36134,8, 0x3f36160,2, 0x3f36174,8, 0x3f361a0,4, 0x3f36200,54, 0x3f36800,5, 0x3f36820,2, 0x3f36834,1, 0x3f3683c,1, 0x3f36a00,24, 0x3f36a80,24, 0x3f36b00,1, 0x3f36c00,6, 0x3f36c24,5, 0x3f36c40,16, 0x3f37000,1, 0x3f37020,5, 0x3f37040,1, 0x3f37048,2, 0x3f37080,1, 0x3f37100,4, 0x3f37180,24, 0x3f37200,4, 0x3f37280,27, 0x3f37300,2, 0x3f3730c,3, 0x3f38004,1, 0x3f3800c,3, 0x3f38020,1, 0x3f38100,2, 0x3f38110,3, 0x3f38120,2, 0x3f38140,10, 0x3f38180,13, 0x3f38200,2, 0x3f38210,3, 0x3f38220,2, 0x3f38240,10, 0x3f38280,13, 0x3f38400,14, 0x3f38440,3, 0x3f38450,3, 0x3f38460,1, 0x3f38500,36, 0x3f38600,10, 0x3f38640,5, 0x3f38660,5, 0x3f38700,27, 0x3f38780,7, 0x3f387a0,8, 0x3f38800,27, 0x3f38880,7, 0x3f388a0,8, 0x3f38900,27, 0x3f38980,7, 0x3f389a0,8, 0x3f38a00,27, 0x3f38a80,7, 0x3f38aa0,8, 0x3f38b00,48, 0x3f38bc4,8, 0x3f38bf0,30, 0x3f38c80,4, 0x3f38cc0,25, 0x3f38d40,6, 0x3f38d60,1, 0x3f38d68,2, 0x3f38d74,3, 0x3f38e00,8, 0x3f38e24,28, 0x3f39000,4, 0x3f39080,23, 0x3f39100,14, 0x3f39140,9, 0x3f39200,10, 0x3f39230,3, 0x3f39240,5, 0x3f39260,5, 0x3f39280,9, 0x3f39400,67, 0x3f39600,10, 0x4000000,1, 0x4000020,3, 0x4000030,2, 0x4000040,3, 0x4000050,2, 0x4000800,53, 0x4000900,3, 0x4000910,13, 0x4000a00,53, 0x4000b00,3, 0x4000b10,13, 0x4000c00,5, 0x4000c20,5, 0x4000c40,18, 0x4001000,6, 0x4001020,4, 0x4001040,16, 0x4002000,20, 0x4002080,15, 0x4002100,20, 0x4002180,15, 0x4002200,23, 0x4002260,7, 0x4002400,11, 0x4002430,3, 0x4002440,3, 0x4002450,3, 0x4002460,24, 0x4002500,11, 0x4002530,3, 0x4002540,3, 0x4002550,3, 0x4002560,24, 0x4002600,11, 0x4002630,3, 0x4002640,3, 0x4002650,3, 0x4002660,24, 0x4002700,11, 0x4002730,3, 0x4002740,3, 0x4002750,3, 0x4002760,24, 0x4002800,4, 0x4002820,16, 0x4002880,10, 0x40028c0,10, 0x4002900,6, 0x4002920,6, 0x4002940,4, 0x4002980,13, 0x40029c0,13, 0x4002a00,9, 0x4003000,14, 0x4003040,9, 0x4003080,6, 0x40030a0,1, 0x40030a8,4, 0x4003100,4, 0x4003200,124, 0x4003400,124, 0x4003600,8, 0x4003624,1, 0x4003644,6, 0x4003664,6, 0x4003680,1, 0x4003688,6, 0x40036a8,22, 0x4004000,1, 0x4004020,3, 0x4004030,2, 0x4004040,3, 0x4004050,2, 0x4004800,53, 0x4004900,3, 0x4004910,13, 0x4004a00,53, 0x4004b00,3, 0x4004b10,13, 0x4004c00,5, 0x4004c20,5, 0x4004c40,18, 0x4005000,6, 0x4005020,4, 0x4005040,16, 0x4006000,20, 0x4006080,15, 0x4006100,20, 0x4006180,15, 0x4006200,23, 0x4006260,7, 0x4006400,11, 0x4006430,3, 0x4006440,3, 0x4006450,3, 0x4006460,24, 0x4006500,11, 0x4006530,3, 0x4006540,3, 0x4006550,3, 0x4006560,24, 0x4006600,11, 0x4006630,3, 0x4006640,3, 0x4006650,3, 0x4006660,24, 0x4006700,11, 0x4006730,3, 0x4006740,3, 0x4006750,3, 0x4006760,24, 0x4006800,4, 0x4006820,16, 0x4006880,10, 0x40068c0,10, 0x4006900,6, 0x4006920,6, 0x4006940,4, 0x4006980,13, 0x40069c0,13, 0x4006a00,9, 0x4007000,14, 0x4007040,9, 0x4007080,6, 0x40070a0,1, 0x40070a8,4, 0x4007100,4, 0x4007200,124, 0x4007400,124, 0x4007600,8, 0x4007624,1, 0x4007644,6, 0x4007664,6, 0x4007680,1, 0x4007688,6, 0x40076a8,22, 0x4008000,84, 0x4008180,20, 0x4008200,5, 0x4008400,11, 0x4008440,11, 0x4008480,19, 0x4008500,19, 0x4008580,24, 0x4008600,13, 0x4008800,84, 0x4008980,20, 0x4008a00,5, 0x4008c00,11, 0x4008c40,11, 0x4008c80,19, 0x4008d00,19, 0x4008d80,24, 0x4008e00,13, 0x4009000,10, 0x4009040,5, 0x4009080,10, 0x40090c0,5, 0x4009100,5, 0x4009200,11, 0x4009230,3, 0x4009240,5, 0x4009260,5, 0x4009280,32, 0x4009400,13, 0x4009440,13, 0x4009480,9, 0x40094c0,1, 0x40094d0,5, 0x40094f0,21, 0x4009800,10, 0x4009840,5, 0x4009880,10, 0x40098c0,5, 0x4009900,5, 0x4009a00,11, 0x4009a30,3, 0x4009a40,5, 0x4009a60,5, 0x4009a80,32, 0x4009c00,13, 0x4009c40,13, 0x4009c80,9, 0x4009cc0,1, 0x4009cd0,5, 0x4009cf0,21, 0x400a000,14, 0x400a040,9, 0x400a080,6, 0x400a0a0,1, 0x400a0a8,4, 0x400a100,7, 0x400a120,3, 0x400a130,25, 0x400c000,26, 0x400c06c,2, 0x400c080,3, 0x400c090,17, 0x400c100,26, 0x400c16c,2, 0x400c180,3, 0x400c190,17, 0x400c200,26, 0x400c26c,2, 0x400c280,3, 0x400c290,17, 0x400c300,26, 0x400c36c,2, 0x400c380,3, 0x400c390,17, 0x400c400,26, 0x400c46c,2, 0x400c480,3, 0x400c490,17, 0x400c500,26, 0x400c56c,2, 0x400c580,3, 0x400c590,17, 0x400c600,26, 0x400c66c,2, 0x400c680,3, 0x400c690,17, 0x400c700,26, 0x400c76c,2, 0x400c780,3, 0x400c790,17, 0x400c800,12, 0x400c844,1, 0x400c854,8, 0x400c880,7, 0x400c8a0,2, 0x400c8ac,2, 0x400c8c0,26, 0x400c980,4, 0x400c9a0,5, 0x400c9c0,1, 0x400d000,3, 0x400d010,3, 0x400d020,3, 0x400d030,3, 0x400d040,3, 0x400d050,3, 0x400d060,3, 0x400d070,3, 0x400d080,5, 0x400d0a0,5, 0x400d0c0,5, 0x400d0e0,5, 0x400d100,5, 0x400d120,5, 0x400d140,5, 0x400d160,5, 0x400d200,68, 0x400d400,1, 0x400d804,1, 0x400d844,54, 0x400da00,11, 0x400da40,11, 0x400da80,11, 0x400dac0,11, 0x400db00,11, 0x400db40,11, 0x400db80,11, 0x400dbc0,11, 0x400dc00,28, 0x400dc80,5, 0x400dca0,2, 0x400e000,4, 0x400e020,6, 0x400e040,6, 0x400e060,14, 0x400e100,26, 0x400e180,15, 0x400e200,14, 0x400e240,9, 0x400e280,6, 0x400e2a0,1, 0x400e2a8,4, 0x400e300,14, 0x400e340,9, 0x400e380,6, 0x400e3a0,4, 0x400e400,9, 0x4020000,1, 0x4021000,977, 0x4022000,161, 0x4023000,977, 0x4024000,977, 0x4025000,977, 0x4026000,977, 0x4027000,977, 0x4028000,977, 0x4029000,977, 0x402a000,977, 0x402b000,161, 0x402c000,12, 0x402c040,14, 0x402c080,20, 0x402c104,1, 0x402c10c,4, 0x402c200,12, 0x402c240,14, 0x402c280,20, 0x402c304,1, 0x402c30c,4, 0x402c400,12, 0x402c440,14, 0x402c480,20, 0x402c504,1, 0x402c50c,4, 0x402c600,12, 0x402c640,14, 0x402c680,20, 0x402c704,1, 0x402c70c,4, 0x402c800,12, 0x402c840,14, 0x402c880,20, 0x402c904,1, 0x402c90c,4, 0x402ca00,12, 0x402ca40,14, 0x402ca80,20, 0x402cb04,1, 0x402cb0c,4, 0x402cc00,12, 0x402cc40,14, 0x402cc80,20, 0x402cd04,1, 0x402cd0c,4, 0x402ce00,12, 0x402ce40,14, 0x402ce80,20, 0x402cf04,1, 0x402cf0c,4, 0x402d000,12, 0x402d040,14, 0x402d080,20, 0x402d104,1, 0x402d10c,4, 0x402d200,17, 0x402d250,2, 0x402d260,4, 0x402e000,1, 0x402e014,1, 0x402e01c,11, 0x402e060,9, 0x402e094,1, 0x402e09c,11, 0x402e0e0,15, 0x402e200,12, 0x402e240,13, 0x402e280,3, 0x402e290,1, 0x4080000,500, 0x4080800,2, 0x4080820,15, 0x4081000,500, 0x4081800,8, 0x4081824,6, 0x4081840,8, 0x4081880,7, 0x40818a0,7, 0x40818c0,7, 0x40818e0,7, 0x4081900,8, 0x4081924,16, 0x4081980,12, 0x4082000,500, 0x4082800,2, 0x4082820,15, 0x4083000,500, 0x4083800,8, 0x4083824,6, 0x4083840,8, 0x4083880,7, 0x40838a0,7, 0x40838c0,7, 0x40838e0,7, 0x4083900,8, 0x4083924,16, 0x4083980,12, 0x4084004,5, 0x4084200,26, 0x4084280,4, 0x40842c0,25, 0x4084340,6, 0x4084360,1, 0x4084368,2, 0x4084374,11, 0x40843a4,10, 0x4084400,1, 0x4088000,52, 0x4088400,82, 0x4088560,6, 0x4088600,41, 0x4088700,2, 0x4088720,19, 0x4088800,25, 0x4088880,1, 0x4088900,28, 0x4088980,1, 0x4089000,52, 0x4089400,82, 0x4089560,6, 0x4089600,41, 0x4089700,2, 0x4089720,19, 0x4089800,25, 0x4089880,1, 0x4089900,28, 0x4089980,1, 0x408a000,7, 0x408a080,6, 0x408a0a0,6, 0x408a0c0,1, 0x408a100,4, 0x408a120,9, 0x408c000,3, 0x408c010,6, 0x408c200,7, 0x408c220,6, 0x408c240,7, 0x408c260,6, 0x408c280,2, 0x408c28c,2, 0x408c2a0,2, 0x408c2ac,2, 0x408c2c0,7, 0x408c2e0,7, 0x408c300,2, 0x408c30c,2, 0x408c320,6, 0x408c400,3, 0x408c440,12, 0x408c800,7, 0x408c820,14, 0x408c880,16, 0x408c900,7, 0x408c920,14, 0x408c980,16, 0x408ca00,6, 0x408ca20,7, 0x408cc00,3, 0x40a0000,3, 0x40a0800,7, 0x40a0820,6, 0x40a0840,6, 0x40a0880,1, 0x40a0894,1, 0x40a089c,2, 0x40a08c0,9, 0x40a0900,18, 0x40a0a00,36, 0x40a0b00,22, 0x40a0b80,18, 0x40a0c00,3, 0x40a0c10,3, 0x40a1000,3, 0x40a1010,2, 0x40a1080,20, 0x40a1100,1, 0x40a1200,26, 0x40a1280,4, 0x40a12c0,25, 0x40a1340,6, 0x40a1360,1, 0x40a1368,2, 0x40a1374,11, 0x40a13a4,4, 0x40a1400,1, 0x40b0000,11, 0x40b0030,19, 0x40b0080,17, 0x40b0100,11, 0x40b0130,19, 0x40b0180,17, 0x40b0200,3, 0x40b0214,1, 0x40b021c,1, 0x40b0280,3, 0x40b0294,1, 0x40b029c,1, 0x40b0300,18, 0x40b0380,18, 0x40b0400,18, 0x40b0480,18, 0x40b0500,18, 0x40b0580,18, 0x40b0600,18, 0x40b0680,18, 0x40b0700,13, 0x40b0738,6, 0x40b0780,13, 0x40b07b8,6, 0x40b0800,1, 0x40b0808,22, 0x40b0880,1, 0x40b0894,13, 0x40b0900,3, 0x40b0910,3, 0x40b0920,3, 0x40b0940,3, 0x40b0954,1, 0x40b095c,1, 0x40b0a00,52, 0x40b0c00,4, 0x40b0d00,34, 0x40b0e00,4, 0x40b0e80,30, 0x40b0f00,1, 0x40b0f40,5, 0x40b0f60,5, 0x40b0f80,6, 0x40b1000,14, 0x40b1040,4, 0x40b1060,17, 0x40b10c0,6, 0x40b10e0,1, 0x40b10e8,2, 0x40b10f4,11, 0x40b1124,17, 0x40b1200,3, 0x40b1210,3, 0x40b1220,3, 0x40b1230,3, 0x40b1240,3, 0x40b1250,3, 0x40b2000,20, 0x40b2080,3, 0x40b2090,1, 0x40b2098,2, 0x40c0000,500, 0x40c0800,2, 0x40c0820,15, 0x40c1000,500, 0x40c1800,8, 0x40c1824,6, 0x40c1840,8, 0x40c1880,7, 0x40c18a0,7, 0x40c18c0,7, 0x40c18e0,7, 0x40c1900,8, 0x40c1924,16, 0x40c1980,12, 0x40c2000,500, 0x40c2800,2, 0x40c2820,15, 0x40c3000,500, 0x40c3800,8, 0x40c3824,6, 0x40c3840,8, 0x40c3880,7, 0x40c38a0,7, 0x40c38c0,7, 0x40c38e0,7, 0x40c3900,8, 0x40c3924,16, 0x40c3980,12, 0x40c4004,5, 0x40c4200,26, 0x40c4280,4, 0x40c42c0,25, 0x40c4340,6, 0x40c4360,1, 0x40c4368,2, 0x40c4374,11, 0x40c43a4,10, 0x40c4400,1, 0x40c8000,52, 0x40c8400,82, 0x40c8560,6, 0x40c8600,41, 0x40c8700,2, 0x40c8720,19, 0x40c8800,25, 0x40c8880,1, 0x40c8900,28, 0x40c8980,1, 0x40c9000,52, 0x40c9400,82, 0x40c9560,6, 0x40c9600,41, 0x40c9700,2, 0x40c9720,19, 0x40c9800,25, 0x40c9880,1, 0x40c9900,28, 0x40c9980,1, 0x40ca000,7, 0x40ca080,6, 0x40ca0a0,6, 0x40ca0c0,1, 0x40ca100,4, 0x40ca120,9, 0x40cc000,3, 0x40cc010,6, 0x40cc200,7, 0x40cc220,6, 0x40cc240,7, 0x40cc260,6, 0x40cc280,2, 0x40cc28c,2, 0x40cc2a0,2, 0x40cc2ac,2, 0x40cc2c0,7, 0x40cc2e0,7, 0x40cc300,2, 0x40cc30c,2, 0x40cc320,6, 0x40cc400,3, 0x40cc440,12, 0x40cc800,7, 0x40cc820,14, 0x40cc880,16, 0x40cc900,7, 0x40cc920,14, 0x40cc980,16, 0x40cca00,6, 0x40cca20,7, 0x40ccc00,3, 0x40e0000,3, 0x40e0800,7, 0x40e0820,6, 0x40e0840,6, 0x40e0880,1, 0x40e0894,1, 0x40e089c,2, 0x40e08c0,9, 0x40e0900,18, 0x40e0a00,36, 0x40e0b00,22, 0x40e0b80,18, 0x40e0c00,3, 0x40e0c10,3, 0x40e1000,3, 0x40e1010,2, 0x40e1080,20, 0x40e1100,1, 0x40e1200,26, 0x40e1280,4, 0x40e12c0,25, 0x40e1340,6, 0x40e1360,1, 0x40e1368,2, 0x40e1374,11, 0x40e13a4,4, 0x40e1400,1, 0x40f0000,11, 0x40f0030,19, 0x40f0080,17, 0x40f0100,11, 0x40f0130,19, 0x40f0180,17, 0x40f0200,3, 0x40f0214,1, 0x40f021c,1, 0x40f0280,3, 0x40f0294,1, 0x40f029c,1, 0x40f0300,18, 0x40f0380,18, 0x40f0400,18, 0x40f0480,18, 0x40f0500,18, 0x40f0580,18, 0x40f0600,18, 0x40f0680,18, 0x40f0700,13, 0x40f0738,6, 0x40f0780,13, 0x40f07b8,6, 0x40f0800,1, 0x40f0808,22, 0x40f0880,1, 0x40f0894,13, 0x40f0900,3, 0x40f0910,3, 0x40f0920,3, 0x40f0940,3, 0x40f0954,1, 0x40f095c,1, 0x40f0a00,52, 0x40f0c00,4, 0x40f0d00,34, 0x40f0e00,4, 0x40f0e80,30, 0x40f0f00,1, 0x40f0f40,5, 0x40f0f60,5, 0x40f0f80,6, 0x40f1000,14, 0x40f1040,4, 0x40f1060,17, 0x40f10c0,6, 0x40f10e0,1, 0x40f10e8,2, 0x40f10f4,11, 0x40f1124,17, 0x40f1200,3, 0x40f1210,3, 0x40f1220,3, 0x40f1230,3, 0x40f1240,3, 0x40f1250,3, 0x40f2000,20, 0x40f2080,3, 0x40f2090,1, 0x40f2098,2, 0x4100000,13, 0x4100038,4, 0x4100050,3, 0x4100060,3, 0x4100070,16, 0x41000c0,5, 0x4100400,14, 0x4100440,2, 0x410044c,3, 0x4100480,14, 0x41004c0,2, 0x41004cc,3, 0x4100500,1, 0x4100508,15, 0x4100560,2, 0x410056c,2, 0x4100600,4, 0x4100680,27, 0x4100800,2, 0x4100900,32, 0x4100984,2, 0x4100990,4, 0x4100a00,26, 0x4100a80,4, 0x4100ac0,25, 0x4100b40,6, 0x4100b60,1, 0x4100b68,2, 0x4100b74,11, 0x4100ba4,8, 0x4100c00,9, 0x4100c40,11, 0x4100c80,23, 0x4100ce0,15, 0x4100d20,15, 0x4100d60,1, 0x4101000,13, 0x4101038,4, 0x4101050,3, 0x4101060,3, 0x4101070,16, 0x41010c0,5, 0x4101400,14, 0x4101440,2, 0x410144c,3, 0x4101480,14, 0x41014c0,2, 0x41014cc,3, 0x4101500,1, 0x4101508,15, 0x4101560,2, 0x410156c,2, 0x4101600,4, 0x4101680,27, 0x4101800,2, 0x4101900,32, 0x4101984,2, 0x4101990,4, 0x4101a00,26, 0x4101a80,4, 0x4101ac0,25, 0x4101b40,6, 0x4101b60,1, 0x4101b68,2, 0x4101b74,11, 0x4101ba4,8, 0x4101c00,9, 0x4101c40,11, 0x4101c80,23, 0x4101ce0,15, 0x4101d20,15, 0x4101d60,1, 0x4102000,1, 0x4102100,36, 0x4102200,7, 0x4110000,22, 0x4110080,22, 0x4110100,12, 0x4110140,12, 0x4110200,52, 0x4110300,52, 0x4110400,11, 0x4110440,11, 0x4110480,3, 0x41104a0,6, 0x41104c0,6, 0x41104e0,3, 0x41104f0,3, 0x4110800,9, 0x4110840,15, 0x4110880,15, 0x41108c0,15, 0x4110900,1, 0x4110914,13, 0x4110980,17, 0x4111000,17, 0x4111080,17, 0x4111104,5, 0x4111120,3, 0x4111130,11, 0x4111200,31, 0x4111280,31, 0x4111300,12, 0x4111340,12, 0x4111380,2, 0x4111390,2, 0x41113a0,3, 0x41113b0,3, 0x41113c0,5, 0x41113e0,5, 0x4111400,3, 0x4111410,3, 0x4111420,3, 0x4111430,3, 0x4111440,3, 0x4111450,3, 0x4111460,7, 0x4111800,26, 0x4111880,4, 0x41118c0,25, 0x4111940,6, 0x4111960,1, 0x4111968,2, 0x4111974,11, 0x41119a4,12, 0x4111a00,4, 0x4111b00,43, 0x4111c00,4, 0x4111c20,7, 0x4111c40,3, 0x4111c50,1, 0x4111c60,3, 0x4111e00,32, 0x4111e84,1, 0x4111e90,4, 0x4111ea4,1, 0x4111eb4,14, 0x4111ef0,2, 0x4111f04,1, 0x4111f10,8, 0x4111f34,6, 0x4112000,3, 0x4112010,21, 0x4112080,1, 0x4112094,1, 0x411209c,5, 0x4112100,15, 0x4112140,1, 0x4112180,6, 0x4114000,22, 0x4114080,22, 0x4114100,12, 0x4114140,12, 0x4114200,52, 0x4114300,52, 0x4114400,11, 0x4114440,11, 0x4114480,3, 0x41144a0,6, 0x41144c0,6, 0x41144e0,3, 0x41144f0,3, 0x4114800,9, 0x4114840,15, 0x4114880,15, 0x41148c0,15, 0x4114900,1, 0x4114914,13, 0x4114980,17, 0x4115000,17, 0x4115080,17, 0x4115104,5, 0x4115120,3, 0x4115130,11, 0x4115200,31, 0x4115280,31, 0x4115300,12, 0x4115340,12, 0x4115380,2, 0x4115390,2, 0x41153a0,3, 0x41153b0,3, 0x41153c0,5, 0x41153e0,5, 0x4115400,3, 0x4115410,3, 0x4115420,3, 0x4115430,3, 0x4115440,3, 0x4115450,3, 0x4115460,7, 0x4115800,26, 0x4115880,4, 0x41158c0,25, 0x4115940,6, 0x4115960,1, 0x4115968,2, 0x4115974,11, 0x41159a4,12, 0x4115a00,4, 0x4115b00,43, 0x4115c00,4, 0x4115c20,7, 0x4115c40,3, 0x4115c50,1, 0x4115c60,3, 0x4115e00,32, 0x4115e84,1, 0x4115e90,4, 0x4115ea4,1, 0x4115eb4,14, 0x4115ef0,2, 0x4115f04,1, 0x4115f10,8, 0x4115f34,6, 0x4116000,3, 0x4116010,21, 0x4116080,1, 0x4116094,1, 0x411609c,5, 0x4116100,15, 0x4116140,1, 0x4116180,6, 0x4118000,100, 0x4118200,3, 0x4118210,5, 0x4120000,12, 0x4120040,2, 0x4120050,3, 0x4122000,1006, 0x4123000,31, 0x4123084,6, 0x4124004,1, 0x412400c,3, 0x4124200,23, 0x4124280,23, 0x4124300,1, 0x4124400,1, 0x4124800,122, 0x4124a00,122, 0x4124c04,63, 0x4124d04,1, 0x4124d10,5, 0x4124d40,6, 0x4124d60,5, 0x4126000,1, 0x4126100,1, 0x4126108,3, 0x4126120,2, 0x4126134,8, 0x4126160,2, 0x4126174,8, 0x41261a0,4, 0x4126200,54, 0x4126800,5, 0x4126820,2, 0x4126834,1, 0x412683c,1, 0x4126a00,24, 0x4126a80,24, 0x4126b00,1, 0x4126c00,6, 0x4126c24,5, 0x4126c40,16, 0x4127000,1, 0x4127020,5, 0x4127040,1, 0x4127048,2, 0x4127080,1, 0x4127100,4, 0x4127180,24, 0x4127200,4, 0x4127280,27, 0x4127300,2, 0x412730c,3, 0x4128004,1, 0x412800c,3, 0x4128020,1, 0x4128100,2, 0x4128110,3, 0x4128120,2, 0x4128140,10, 0x4128180,13, 0x4128200,2, 0x4128210,3, 0x4128220,2, 0x4128240,10, 0x4128280,13, 0x4128400,14, 0x4128440,3, 0x4128450,3, 0x4128460,1, 0x4128500,36, 0x4128600,10, 0x4128640,5, 0x4128660,5, 0x4128700,27, 0x4128780,7, 0x41287a0,8, 0x4128800,27, 0x4128880,7, 0x41288a0,8, 0x4128900,27, 0x4128980,7, 0x41289a0,8, 0x4128a00,27, 0x4128a80,7, 0x4128aa0,8, 0x4128b00,48, 0x4128bc4,8, 0x4128bf0,30, 0x4128c80,4, 0x4128cc0,25, 0x4128d40,6, 0x4128d60,1, 0x4128d68,2, 0x4128d74,3, 0x4128e00,8, 0x4128e24,28, 0x4129000,4, 0x4129080,23, 0x4129100,14, 0x4129140,9, 0x4129200,10, 0x4129230,3, 0x4129240,5, 0x4129260,5, 0x4129280,9, 0x4129400,67, 0x4129600,10, 0x4130000,12, 0x4130040,2, 0x4130050,3, 0x4132000,1006, 0x4133000,31, 0x4133084,6, 0x4134004,1, 0x413400c,3, 0x4134200,23, 0x4134280,23, 0x4134300,1, 0x4134400,1, 0x4134800,122, 0x4134a00,122, 0x4134c04,63, 0x4134d04,1, 0x4134d10,5, 0x4134d40,6, 0x4134d60,5, 0x4136000,1, 0x4136100,1, 0x4136108,3, 0x4136120,2, 0x4136134,8, 0x4136160,2, 0x4136174,8, 0x41361a0,4, 0x4136200,54, 0x4136800,5, 0x4136820,2, 0x4136834,1, 0x413683c,1, 0x4136a00,24, 0x4136a80,24, 0x4136b00,1, 0x4136c00,6, 0x4136c24,5, 0x4136c40,16, 0x4137000,1, 0x4137020,5, 0x4137040,1, 0x4137048,2, 0x4137080,1, 0x4137100,4, 0x4137180,24, 0x4137200,4, 0x4137280,27, 0x4137300,2, 0x413730c,3, 0x4138004,1, 0x413800c,3, 0x4138020,1, 0x4138100,2, 0x4138110,3, 0x4138120,2, 0x4138140,10, 0x4138180,13, 0x4138200,2, 0x4138210,3, 0x4138220,2, 0x4138240,10, 0x4138280,13, 0x4138400,14, 0x4138440,3, 0x4138450,3, 0x4138460,1, 0x4138500,36, 0x4138600,10, 0x4138640,5, 0x4138660,5, 0x4138700,27, 0x4138780,7, 0x41387a0,8, 0x4138800,27, 0x4138880,7, 0x41388a0,8, 0x4138900,27, 0x4138980,7, 0x41389a0,8, 0x4138a00,27, 0x4138a80,7, 0x4138aa0,8, 0x4138b00,48, 0x4138bc4,8, 0x4138bf0,30, 0x4138c80,4, 0x4138cc0,25, 0x4138d40,6, 0x4138d60,1, 0x4138d68,2, 0x4138d74,3, 0x4138e00,8, 0x4138e24,28, 0x4139000,4, 0x4139080,23, 0x4139100,14, 0x4139140,9, 0x4139200,10, 0x4139230,3, 0x4139240,5, 0x4139260,5, 0x4139280,9, 0x4139400,67, 0x4139600,10, 0x4200000,1, 0x4200020,3, 0x4200030,2, 0x4200040,3, 0x4200050,2, 0x4200800,53, 0x4200900,3, 0x4200910,13, 0x4200a00,53, 0x4200b00,3, 0x4200b10,13, 0x4200c00,5, 0x4200c20,5, 0x4200c40,18, 0x4201000,6, 0x4201020,4, 0x4201040,16, 0x4202000,20, 0x4202080,15, 0x4202100,20, 0x4202180,15, 0x4202200,23, 0x4202260,7, 0x4202400,11, 0x4202430,3, 0x4202440,3, 0x4202450,3, 0x4202460,24, 0x4202500,11, 0x4202530,3, 0x4202540,3, 0x4202550,3, 0x4202560,24, 0x4202600,11, 0x4202630,3, 0x4202640,3, 0x4202650,3, 0x4202660,24, 0x4202700,11, 0x4202730,3, 0x4202740,3, 0x4202750,3, 0x4202760,24, 0x4202800,4, 0x4202820,16, 0x4202880,10, 0x42028c0,10, 0x4202900,6, 0x4202920,6, 0x4202940,4, 0x4202980,13, 0x42029c0,13, 0x4202a00,9, 0x4203000,14, 0x4203040,9, 0x4203080,6, 0x42030a0,1, 0x42030a8,4, 0x4203100,4, 0x4203200,124, 0x4203400,124, 0x4203600,8, 0x4203624,1, 0x4203644,6, 0x4203664,6, 0x4203680,1, 0x4203688,6, 0x42036a8,22, 0x4204000,1, 0x4204020,3, 0x4204030,2, 0x4204040,3, 0x4204050,2, 0x4204800,53, 0x4204900,3, 0x4204910,13, 0x4204a00,53, 0x4204b00,3, 0x4204b10,13, 0x4204c00,5, 0x4204c20,5, 0x4204c40,18, 0x4205000,6, 0x4205020,4, 0x4205040,16, 0x4206000,20, 0x4206080,15, 0x4206100,20, 0x4206180,15, 0x4206200,23, 0x4206260,7, 0x4206400,11, 0x4206430,3, 0x4206440,3, 0x4206450,3, 0x4206460,24, 0x4206500,11, 0x4206530,3, 0x4206540,3, 0x4206550,3, 0x4206560,24, 0x4206600,11, 0x4206630,3, 0x4206640,3, 0x4206650,3, 0x4206660,24, 0x4206700,11, 0x4206730,3, 0x4206740,3, 0x4206750,3, 0x4206760,24, 0x4206800,4, 0x4206820,16, 0x4206880,10, 0x42068c0,10, 0x4206900,6, 0x4206920,6, 0x4206940,4, 0x4206980,13, 0x42069c0,13, 0x4206a00,9, 0x4207000,14, 0x4207040,9, 0x4207080,6, 0x42070a0,1, 0x42070a8,4, 0x4207100,4, 0x4207200,124, 0x4207400,124, 0x4207600,8, 0x4207624,1, 0x4207644,6, 0x4207664,6, 0x4207680,1, 0x4207688,6, 0x42076a8,22, 0x4208000,84, 0x4208180,20, 0x4208200,5, 0x4208400,11, 0x4208440,11, 0x4208480,19, 0x4208500,19, 0x4208580,24, 0x4208600,13, 0x4208800,84, 0x4208980,20, 0x4208a00,5, 0x4208c00,11, 0x4208c40,11, 0x4208c80,19, 0x4208d00,19, 0x4208d80,24, 0x4208e00,13, 0x4209000,10, 0x4209040,5, 0x4209080,10, 0x42090c0,5, 0x4209100,5, 0x4209200,11, 0x4209230,3, 0x4209240,5, 0x4209260,5, 0x4209280,32, 0x4209400,13, 0x4209440,13, 0x4209480,9, 0x42094c0,1, 0x42094d0,5, 0x42094f0,21, 0x4209800,10, 0x4209840,5, 0x4209880,10, 0x42098c0,5, 0x4209900,5, 0x4209a00,11, 0x4209a30,3, 0x4209a40,5, 0x4209a60,5, 0x4209a80,32, 0x4209c00,13, 0x4209c40,13, 0x4209c80,9, 0x4209cc0,1, 0x4209cd0,5, 0x4209cf0,21, 0x420a000,14, 0x420a040,9, 0x420a080,6, 0x420a0a0,1, 0x420a0a8,4, 0x420a100,7, 0x420a120,3, 0x420a130,25, 0x420c000,26, 0x420c06c,2, 0x420c080,3, 0x420c090,17, 0x420c100,26, 0x420c16c,2, 0x420c180,3, 0x420c190,17, 0x420c200,26, 0x420c26c,2, 0x420c280,3, 0x420c290,17, 0x420c300,26, 0x420c36c,2, 0x420c380,3, 0x420c390,17, 0x420c400,26, 0x420c46c,2, 0x420c480,3, 0x420c490,17, 0x420c500,26, 0x420c56c,2, 0x420c580,3, 0x420c590,17, 0x420c600,26, 0x420c66c,2, 0x420c680,3, 0x420c690,17, 0x420c700,26, 0x420c76c,2, 0x420c780,3, 0x420c790,17, 0x420c800,12, 0x420c844,1, 0x420c854,8, 0x420c880,7, 0x420c8a0,2, 0x420c8ac,2, 0x420c8c0,26, 0x420c980,4, 0x420c9a0,5, 0x420c9c0,1, 0x420d000,3, 0x420d010,3, 0x420d020,3, 0x420d030,3, 0x420d040,3, 0x420d050,3, 0x420d060,3, 0x420d070,3, 0x420d080,5, 0x420d0a0,5, 0x420d0c0,5, 0x420d0e0,5, 0x420d100,5, 0x420d120,5, 0x420d140,5, 0x420d160,5, 0x420d200,68, 0x420d400,1, 0x420d804,1, 0x420d844,54, 0x420da00,11, 0x420da40,11, 0x420da80,11, 0x420dac0,11, 0x420db00,11, 0x420db40,11, 0x420db80,11, 0x420dbc0,11, 0x420dc00,28, 0x420dc80,5, 0x420dca0,2, 0x420e000,4, 0x420e020,6, 0x420e040,6, 0x420e060,14, 0x420e100,26, 0x420e180,15, 0x420e200,14, 0x420e240,9, 0x420e280,6, 0x420e2a0,1, 0x420e2a8,4, 0x420e300,14, 0x420e340,9, 0x420e380,6, 0x420e3a0,4, 0x420e400,9, 0x4220000,1, 0x4221000,977, 0x4222000,161, 0x4223000,977, 0x4224000,977, 0x4225000,977, 0x4226000,977, 0x4227000,977, 0x4228000,977, 0x4229000,977, 0x422a000,977, 0x422b000,161, 0x422c000,12, 0x422c040,14, 0x422c080,20, 0x422c104,1, 0x422c10c,4, 0x422c200,12, 0x422c240,14, 0x422c280,20, 0x422c304,1, 0x422c30c,4, 0x422c400,12, 0x422c440,14, 0x422c480,20, 0x422c504,1, 0x422c50c,4, 0x422c600,12, 0x422c640,14, 0x422c680,20, 0x422c704,1, 0x422c70c,4, 0x422c800,12, 0x422c840,14, 0x422c880,20, 0x422c904,1, 0x422c90c,4, 0x422ca00,12, 0x422ca40,14, 0x422ca80,20, 0x422cb04,1, 0x422cb0c,4, 0x422cc00,12, 0x422cc40,14, 0x422cc80,20, 0x422cd04,1, 0x422cd0c,4, 0x422ce00,12, 0x422ce40,14, 0x422ce80,20, 0x422cf04,1, 0x422cf0c,4, 0x422d000,12, 0x422d040,14, 0x422d080,20, 0x422d104,1, 0x422d10c,4, 0x422d200,17, 0x422d250,2, 0x422d260,4, 0x422e000,1, 0x422e014,1, 0x422e01c,11, 0x422e060,9, 0x422e094,1, 0x422e09c,11, 0x422e0e0,15, 0x422e200,12, 0x422e240,13, 0x422e280,3, 0x422e290,1, 0x4280000,500, 0x4280800,2, 0x4280820,15, 0x4281000,500, 0x4281800,8, 0x4281824,6, 0x4281840,8, 0x4281880,7, 0x42818a0,7, 0x42818c0,7, 0x42818e0,7, 0x4281900,8, 0x4281924,16, 0x4281980,12, 0x4282000,500, 0x4282800,2, 0x4282820,15, 0x4283000,500, 0x4283800,8, 0x4283824,6, 0x4283840,8, 0x4283880,7, 0x42838a0,7, 0x42838c0,7, 0x42838e0,7, 0x4283900,8, 0x4283924,16, 0x4283980,12, 0x4284004,5, 0x4284200,26, 0x4284280,4, 0x42842c0,25, 0x4284340,6, 0x4284360,1, 0x4284368,2, 0x4284374,11, 0x42843a4,10, 0x4284400,1, 0x4288000,52, 0x4288400,82, 0x4288560,6, 0x4288600,41, 0x4288700,2, 0x4288720,19, 0x4288800,25, 0x4288880,1, 0x4288900,28, 0x4288980,1, 0x4289000,52, 0x4289400,82, 0x4289560,6, 0x4289600,41, 0x4289700,2, 0x4289720,19, 0x4289800,25, 0x4289880,1, 0x4289900,28, 0x4289980,1, 0x428a000,7, 0x428a080,6, 0x428a0a0,6, 0x428a0c0,1, 0x428a100,4, 0x428a120,9, 0x428c000,3, 0x428c010,6, 0x428c200,7, 0x428c220,6, 0x428c240,7, 0x428c260,6, 0x428c280,2, 0x428c28c,2, 0x428c2a0,2, 0x428c2ac,2, 0x428c2c0,7, 0x428c2e0,7, 0x428c300,2, 0x428c30c,2, 0x428c320,6, 0x428c400,3, 0x428c440,12, 0x428c800,7, 0x428c820,14, 0x428c880,16, 0x428c900,7, 0x428c920,14, 0x428c980,16, 0x428ca00,6, 0x428ca20,7, 0x428cc00,3, 0x42a0000,3, 0x42a0800,7, 0x42a0820,6, 0x42a0840,6, 0x42a0880,1, 0x42a0894,1, 0x42a089c,2, 0x42a08c0,9, 0x42a0900,18, 0x42a0a00,36, 0x42a0b00,22, 0x42a0b80,18, 0x42a0c00,3, 0x42a0c10,3, 0x42a1000,3, 0x42a1010,2, 0x42a1080,20, 0x42a1100,1, 0x42a1200,26, 0x42a1280,4, 0x42a12c0,25, 0x42a1340,6, 0x42a1360,1, 0x42a1368,2, 0x42a1374,11, 0x42a13a4,4, 0x42a1400,1, 0x42b0000,11, 0x42b0030,19, 0x42b0080,17, 0x42b0100,11, 0x42b0130,19, 0x42b0180,17, 0x42b0200,3, 0x42b0214,1, 0x42b021c,1, 0x42b0280,3, 0x42b0294,1, 0x42b029c,1, 0x42b0300,18, 0x42b0380,18, 0x42b0400,18, 0x42b0480,18, 0x42b0500,18, 0x42b0580,18, 0x42b0600,18, 0x42b0680,18, 0x42b0700,13, 0x42b0738,6, 0x42b0780,13, 0x42b07b8,6, 0x42b0800,1, 0x42b0808,22, 0x42b0880,1, 0x42b0894,13, 0x42b0900,3, 0x42b0910,3, 0x42b0920,3, 0x42b0940,3, 0x42b0954,1, 0x42b095c,1, 0x42b0a00,52, 0x42b0c00,4, 0x42b0d00,34, 0x42b0e00,4, 0x42b0e80,30, 0x42b0f00,1, 0x42b0f40,5, 0x42b0f60,5, 0x42b0f80,6, 0x42b1000,14, 0x42b1040,4, 0x42b1060,17, 0x42b10c0,6, 0x42b10e0,1, 0x42b10e8,2, 0x42b10f4,11, 0x42b1124,17, 0x42b1200,3, 0x42b1210,3, 0x42b1220,3, 0x42b1230,3, 0x42b1240,3, 0x42b1250,3, 0x42b2000,20, 0x42b2080,3, 0x42b2090,1, 0x42b2098,2, 0x42c0000,500, 0x42c0800,2, 0x42c0820,15, 0x42c1000,500, 0x42c1800,8, 0x42c1824,6, 0x42c1840,8, 0x42c1880,7, 0x42c18a0,7, 0x42c18c0,7, 0x42c18e0,7, 0x42c1900,8, 0x42c1924,16, 0x42c1980,12, 0x42c2000,500, 0x42c2800,2, 0x42c2820,15, 0x42c3000,500, 0x42c3800,8, 0x42c3824,6, 0x42c3840,8, 0x42c3880,7, 0x42c38a0,7, 0x42c38c0,7, 0x42c38e0,7, 0x42c3900,8, 0x42c3924,16, 0x42c3980,12, 0x42c4004,5, 0x42c4200,26, 0x42c4280,4, 0x42c42c0,25, 0x42c4340,6, 0x42c4360,1, 0x42c4368,2, 0x42c4374,11, 0x42c43a4,10, 0x42c4400,1, 0x42c8000,52, 0x42c8400,82, 0x42c8560,6, 0x42c8600,41, 0x42c8700,2, 0x42c8720,19, 0x42c8800,25, 0x42c8880,1, 0x42c8900,28, 0x42c8980,1, 0x42c9000,52, 0x42c9400,82, 0x42c9560,6, 0x42c9600,41, 0x42c9700,2, 0x42c9720,19, 0x42c9800,25, 0x42c9880,1, 0x42c9900,28, 0x42c9980,1, 0x42ca000,7, 0x42ca080,6, 0x42ca0a0,6, 0x42ca0c0,1, 0x42ca100,4, 0x42ca120,9, 0x42cc000,3, 0x42cc010,6, 0x42cc200,7, 0x42cc220,6, 0x42cc240,7, 0x42cc260,6, 0x42cc280,2, 0x42cc28c,2, 0x42cc2a0,2, 0x42cc2ac,2, 0x42cc2c0,7, 0x42cc2e0,7, 0x42cc300,2, 0x42cc30c,2, 0x42cc320,6, 0x42cc400,3, 0x42cc440,12, 0x42cc800,7, 0x42cc820,14, 0x42cc880,16, 0x42cc900,7, 0x42cc920,14, 0x42cc980,16, 0x42cca00,6, 0x42cca20,7, 0x42ccc00,3, 0x42e0000,3, 0x42e0800,7, 0x42e0820,6, 0x42e0840,6, 0x42e0880,1, 0x42e0894,1, 0x42e089c,2, 0x42e08c0,9, 0x42e0900,18, 0x42e0a00,36, 0x42e0b00,22, 0x42e0b80,18, 0x42e0c00,3, 0x42e0c10,3, 0x42e1000,3, 0x42e1010,2, 0x42e1080,20, 0x42e1100,1, 0x42e1200,26, 0x42e1280,4, 0x42e12c0,25, 0x42e1340,6, 0x42e1360,1, 0x42e1368,2, 0x42e1374,11, 0x42e13a4,4, 0x42e1400,1, 0x42f0000,11, 0x42f0030,19, 0x42f0080,17, 0x42f0100,11, 0x42f0130,19, 0x42f0180,17, 0x42f0200,3, 0x42f0214,1, 0x42f021c,1, 0x42f0280,3, 0x42f0294,1, 0x42f029c,1, 0x42f0300,18, 0x42f0380,18, 0x42f0400,18, 0x42f0480,18, 0x42f0500,18, 0x42f0580,18, 0x42f0600,18, 0x42f0680,18, 0x42f0700,13, 0x42f0738,6, 0x42f0780,13, 0x42f07b8,6, 0x42f0800,1, 0x42f0808,22, 0x42f0880,1, 0x42f0894,13, 0x42f0900,3, 0x42f0910,3, 0x42f0920,3, 0x42f0940,3, 0x42f0954,1, 0x42f095c,1, 0x42f0a00,52, 0x42f0c00,4, 0x42f0d00,34, 0x42f0e00,4, 0x42f0e80,30, 0x42f0f00,1, 0x42f0f40,5, 0x42f0f60,5, 0x42f0f80,6, 0x42f1000,14, 0x42f1040,4, 0x42f1060,17, 0x42f10c0,6, 0x42f10e0,1, 0x42f10e8,2, 0x42f10f4,11, 0x42f1124,17, 0x42f1200,3, 0x42f1210,3, 0x42f1220,3, 0x42f1230,3, 0x42f1240,3, 0x42f1250,3, 0x42f2000,20, 0x42f2080,3, 0x42f2090,1, 0x42f2098,2, 0x4300000,13, 0x4300038,4, 0x4300050,3, 0x4300060,3, 0x4300070,16, 0x43000c0,5, 0x4300400,14, 0x4300440,2, 0x430044c,3, 0x4300480,14, 0x43004c0,2, 0x43004cc,3, 0x4300500,1, 0x4300508,15, 0x4300560,2, 0x430056c,2, 0x4300600,4, 0x4300680,27, 0x4300800,2, 0x4300900,32, 0x4300984,2, 0x4300990,4, 0x4300a00,26, 0x4300a80,4, 0x4300ac0,25, 0x4300b40,6, 0x4300b60,1, 0x4300b68,2, 0x4300b74,11, 0x4300ba4,8, 0x4300c00,9, 0x4300c40,11, 0x4300c80,23, 0x4300ce0,15, 0x4300d20,15, 0x4300d60,1, 0x4301000,13, 0x4301038,4, 0x4301050,3, 0x4301060,3, 0x4301070,16, 0x43010c0,5, 0x4301400,14, 0x4301440,2, 0x430144c,3, 0x4301480,14, 0x43014c0,2, 0x43014cc,3, 0x4301500,1, 0x4301508,15, 0x4301560,2, 0x430156c,2, 0x4301600,4, 0x4301680,27, 0x4301800,2, 0x4301900,32, 0x4301984,2, 0x4301990,4, 0x4301a00,26, 0x4301a80,4, 0x4301ac0,25, 0x4301b40,6, 0x4301b60,1, 0x4301b68,2, 0x4301b74,11, 0x4301ba4,8, 0x4301c00,9, 0x4301c40,11, 0x4301c80,23, 0x4301ce0,15, 0x4301d20,15, 0x4301d60,1, 0x4302000,1, 0x4302100,36, 0x4302200,7, 0x4310000,22, 0x4310080,22, 0x4310100,12, 0x4310140,12, 0x4310200,52, 0x4310300,52, 0x4310400,11, 0x4310440,11, 0x4310480,3, 0x43104a0,6, 0x43104c0,6, 0x43104e0,3, 0x43104f0,3, 0x4310800,9, 0x4310840,15, 0x4310880,15, 0x43108c0,15, 0x4310900,1, 0x4310914,13, 0x4310980,17, 0x4311000,17, 0x4311080,17, 0x4311104,5, 0x4311120,3, 0x4311130,11, 0x4311200,31, 0x4311280,31, 0x4311300,12, 0x4311340,12, 0x4311380,2, 0x4311390,2, 0x43113a0,3, 0x43113b0,3, 0x43113c0,5, 0x43113e0,5, 0x4311400,3, 0x4311410,3, 0x4311420,3, 0x4311430,3, 0x4311440,3, 0x4311450,3, 0x4311460,7, 0x4311800,26, 0x4311880,4, 0x43118c0,25, 0x4311940,6, 0x4311960,1, 0x4311968,2, 0x4311974,11, 0x43119a4,12, 0x4311a00,4, 0x4311b00,43, 0x4311c00,4, 0x4311c20,7, 0x4311c40,3, 0x4311c50,1, 0x4311c60,3, 0x4311e00,32, 0x4311e84,1, 0x4311e90,4, 0x4311ea4,1, 0x4311eb4,14, 0x4311ef0,2, 0x4311f04,1, 0x4311f10,8, 0x4311f34,6, 0x4312000,3, 0x4312010,21, 0x4312080,1, 0x4312094,1, 0x431209c,5, 0x4312100,15, 0x4312140,1, 0x4312180,6, 0x4314000,22, 0x4314080,22, 0x4314100,12, 0x4314140,12, 0x4314200,52, 0x4314300,52, 0x4314400,11, 0x4314440,11, 0x4314480,3, 0x43144a0,6, 0x43144c0,6, 0x43144e0,3, 0x43144f0,3, 0x4314800,9, 0x4314840,15, 0x4314880,15, 0x43148c0,15, 0x4314900,1, 0x4314914,13, 0x4314980,17, 0x4315000,17, 0x4315080,17, 0x4315104,5, 0x4315120,3, 0x4315130,11, 0x4315200,31, 0x4315280,31, 0x4315300,12, 0x4315340,12, 0x4315380,2, 0x4315390,2, 0x43153a0,3, 0x43153b0,3, 0x43153c0,5, 0x43153e0,5, 0x4315400,3, 0x4315410,3, 0x4315420,3, 0x4315430,3, 0x4315440,3, 0x4315450,3, 0x4315460,7, 0x4315800,26, 0x4315880,4, 0x43158c0,25, 0x4315940,6, 0x4315960,1, 0x4315968,2, 0x4315974,11, 0x43159a4,12, 0x4315a00,4, 0x4315b00,43, 0x4315c00,4, 0x4315c20,7, 0x4315c40,3, 0x4315c50,1, 0x4315c60,3, 0x4315e00,32, 0x4315e84,1, 0x4315e90,4, 0x4315ea4,1, 0x4315eb4,14, 0x4315ef0,2, 0x4315f04,1, 0x4315f10,8, 0x4315f34,6, 0x4316000,3, 0x4316010,21, 0x4316080,1, 0x4316094,1, 0x431609c,5, 0x4316100,15, 0x4316140,1, 0x4316180,6, 0x4318000,100, 0x4318200,3, 0x4318210,5, 0x4320000,12, 0x4320040,2, 0x4320050,3, 0x4322000,1006, 0x4323000,31, 0x4323084,6, 0x4324004,1, 0x432400c,3, 0x4324200,23, 0x4324280,23, 0x4324300,1, 0x4324400,1, 0x4324800,122, 0x4324a00,122, 0x4324c04,63, 0x4324d04,1, 0x4324d10,5, 0x4324d40,6, 0x4324d60,5, 0x4326000,1, 0x4326100,1, 0x4326108,3, 0x4326120,2, 0x4326134,8, 0x4326160,2, 0x4326174,8, 0x43261a0,4, 0x4326200,54, 0x4326800,5, 0x4326820,2, 0x4326834,1, 0x432683c,1, 0x4326a00,24, 0x4326a80,24, 0x4326b00,1, 0x4326c00,6, 0x4326c24,5, 0x4326c40,16, 0x4327000,1, 0x4327020,5, 0x4327040,1, 0x4327048,2, 0x4327080,1, 0x4327100,4, 0x4327180,24, 0x4327200,4, 0x4327280,27, 0x4327300,2, 0x432730c,3, 0x4328004,1, 0x432800c,3, 0x4328020,1, 0x4328100,2, 0x4328110,3, 0x4328120,2, 0x4328140,10, 0x4328180,13, 0x4328200,2, 0x4328210,3, 0x4328220,2, 0x4328240,10, 0x4328280,13, 0x4328400,14, 0x4328440,3, 0x4328450,3, 0x4328460,1, 0x4328500,36, 0x4328600,10, 0x4328640,5, 0x4328660,5, 0x4328700,27, 0x4328780,7, 0x43287a0,8, 0x4328800,27, 0x4328880,7, 0x43288a0,8, 0x4328900,27, 0x4328980,7, 0x43289a0,8, 0x4328a00,27, 0x4328a80,7, 0x4328aa0,8, 0x4328b00,48, 0x4328bc4,8, 0x4328bf0,30, 0x4328c80,4, 0x4328cc0,25, 0x4328d40,6, 0x4328d60,1, 0x4328d68,2, 0x4328d74,3, 0x4328e00,8, 0x4328e24,28, 0x4329000,4, 0x4329080,23, 0x4329100,14, 0x4329140,9, 0x4329200,10, 0x4329230,3, 0x4329240,5, 0x4329260,5, 0x4329280,9, 0x4329400,67, 0x4329600,10, 0x4330000,12, 0x4330040,2, 0x4330050,3, 0x4332000,1006, 0x4333000,31, 0x4333084,6, 0x4334004,1, 0x433400c,3, 0x4334200,23, 0x4334280,23, 0x4334300,1, 0x4334400,1, 0x4334800,122, 0x4334a00,122, 0x4334c04,63, 0x4334d04,1, 0x4334d10,5, 0x4334d40,6, 0x4334d60,5, 0x4336000,1, 0x4336100,1, 0x4336108,3, 0x4336120,2, 0x4336134,8, 0x4336160,2, 0x4336174,8, 0x43361a0,4, 0x4336200,54, 0x4336800,5, 0x4336820,2, 0x4336834,1, 0x433683c,1, 0x4336a00,24, 0x4336a80,24, 0x4336b00,1, 0x4336c00,6, 0x4336c24,5, 0x4336c40,16, 0x4337000,1, 0x4337020,5, 0x4337040,1, 0x4337048,2, 0x4337080,1, 0x4337100,4, 0x4337180,24, 0x4337200,4, 0x4337280,27, 0x4337300,2, 0x433730c,3, 0x4338004,1, 0x433800c,3, 0x4338020,1, 0x4338100,2, 0x4338110,3, 0x4338120,2, 0x4338140,10, 0x4338180,13, 0x4338200,2, 0x4338210,3, 0x4338220,2, 0x4338240,10, 0x4338280,13, 0x4338400,14, 0x4338440,3, 0x4338450,3, 0x4338460,1, 0x4338500,36, 0x4338600,10, 0x4338640,5, 0x4338660,5, 0x4338700,27, 0x4338780,7, 0x43387a0,8, 0x4338800,27, 0x4338880,7, 0x43388a0,8, 0x4338900,27, 0x4338980,7, 0x43389a0,8, 0x4338a00,27, 0x4338a80,7, 0x4338aa0,8, 0x4338b00,48, 0x4338bc4,8, 0x4338bf0,30, 0x4338c80,4, 0x4338cc0,25, 0x4338d40,6, 0x4338d60,1, 0x4338d68,2, 0x4338d74,3, 0x4338e00,8, 0x4338e24,28, 0x4339000,4, 0x4339080,23, 0x4339100,14, 0x4339140,9, 0x4339200,10, 0x4339230,3, 0x4339240,5, 0x4339260,5, 0x4339280,9, 0x4339400,67, 0x4339600,10, 0x4400000,1, 0x4400020,3, 0x4400030,2, 0x4400040,3, 0x4400050,2, 0x4400800,53, 0x4400900,3, 0x4400910,13, 0x4400a00,53, 0x4400b00,3, 0x4400b10,13, 0x4400c00,5, 0x4400c20,5, 0x4400c40,18, 0x4401000,6, 0x4401020,4, 0x4401040,16, 0x4402000,20, 0x4402080,15, 0x4402100,20, 0x4402180,15, 0x4402200,23, 0x4402260,7, 0x4402400,11, 0x4402430,3, 0x4402440,3, 0x4402450,3, 0x4402460,24, 0x4402500,11, 0x4402530,3, 0x4402540,3, 0x4402550,3, 0x4402560,24, 0x4402600,11, 0x4402630,3, 0x4402640,3, 0x4402650,3, 0x4402660,24, 0x4402700,11, 0x4402730,3, 0x4402740,3, 0x4402750,3, 0x4402760,24, 0x4402800,4, 0x4402820,16, 0x4402880,10, 0x44028c0,10, 0x4402900,6, 0x4402920,6, 0x4402940,4, 0x4402980,13, 0x44029c0,13, 0x4402a00,9, 0x4403000,14, 0x4403040,9, 0x4403080,6, 0x44030a0,1, 0x44030a8,4, 0x4403100,4, 0x4403200,124, 0x4403400,124, 0x4403600,8, 0x4403624,1, 0x4403644,6, 0x4403664,6, 0x4403680,1, 0x4403688,6, 0x44036a8,22, 0x4404000,1, 0x4404020,3, 0x4404030,2, 0x4404040,3, 0x4404050,2, 0x4404800,53, 0x4404900,3, 0x4404910,13, 0x4404a00,53, 0x4404b00,3, 0x4404b10,13, 0x4404c00,5, 0x4404c20,5, 0x4404c40,18, 0x4405000,6, 0x4405020,4, 0x4405040,16, 0x4406000,20, 0x4406080,15, 0x4406100,20, 0x4406180,15, 0x4406200,23, 0x4406260,7, 0x4406400,11, 0x4406430,3, 0x4406440,3, 0x4406450,3, 0x4406460,24, 0x4406500,11, 0x4406530,3, 0x4406540,3, 0x4406550,3, 0x4406560,24, 0x4406600,11, 0x4406630,3, 0x4406640,3, 0x4406650,3, 0x4406660,24, 0x4406700,11, 0x4406730,3, 0x4406740,3, 0x4406750,3, 0x4406760,24, 0x4406800,4, 0x4406820,16, 0x4406880,10, 0x44068c0,10, 0x4406900,6, 0x4406920,6, 0x4406940,4, 0x4406980,13, 0x44069c0,13, 0x4406a00,9, 0x4407000,14, 0x4407040,9, 0x4407080,6, 0x44070a0,1, 0x44070a8,4, 0x4407100,4, 0x4407200,124, 0x4407400,124, 0x4407600,8, 0x4407624,1, 0x4407644,6, 0x4407664,6, 0x4407680,1, 0x4407688,6, 0x44076a8,22, 0x4408000,84, 0x4408180,20, 0x4408200,5, 0x4408400,11, 0x4408440,11, 0x4408480,19, 0x4408500,19, 0x4408580,24, 0x4408600,13, 0x4408800,84, 0x4408980,20, 0x4408a00,5, 0x4408c00,11, 0x4408c40,11, 0x4408c80,19, 0x4408d00,19, 0x4408d80,24, 0x4408e00,13, 0x4409000,10, 0x4409040,5, 0x4409080,10, 0x44090c0,5, 0x4409100,5, 0x4409200,11, 0x4409230,3, 0x4409240,5, 0x4409260,5, 0x4409280,32, 0x4409400,13, 0x4409440,13, 0x4409480,9, 0x44094c0,1, 0x44094d0,5, 0x44094f0,21, 0x4409800,10, 0x4409840,5, 0x4409880,10, 0x44098c0,5, 0x4409900,5, 0x4409a00,11, 0x4409a30,3, 0x4409a40,5, 0x4409a60,5, 0x4409a80,32, 0x4409c00,13, 0x4409c40,13, 0x4409c80,9, 0x4409cc0,1, 0x4409cd0,5, 0x4409cf0,21, 0x440a000,14, 0x440a040,9, 0x440a080,6, 0x440a0a0,1, 0x440a0a8,4, 0x440a100,7, 0x440a120,3, 0x440a130,25, 0x440c000,26, 0x440c06c,2, 0x440c080,3, 0x440c090,17, 0x440c100,26, 0x440c16c,2, 0x440c180,3, 0x440c190,17, 0x440c200,26, 0x440c26c,2, 0x440c280,3, 0x440c290,17, 0x440c300,26, 0x440c36c,2, 0x440c380,3, 0x440c390,17, 0x440c400,26, 0x440c46c,2, 0x440c480,3, 0x440c490,17, 0x440c500,26, 0x440c56c,2, 0x440c580,3, 0x440c590,17, 0x440c600,26, 0x440c66c,2, 0x440c680,3, 0x440c690,17, 0x440c700,26, 0x440c76c,2, 0x440c780,3, 0x440c790,17, 0x440c800,12, 0x440c844,1, 0x440c854,8, 0x440c880,7, 0x440c8a0,2, 0x440c8ac,2, 0x440c8c0,26, 0x440c980,4, 0x440c9a0,5, 0x440c9c0,1, 0x440d000,3, 0x440d010,3, 0x440d020,3, 0x440d030,3, 0x440d040,3, 0x440d050,3, 0x440d060,3, 0x440d070,3, 0x440d080,5, 0x440d0a0,5, 0x440d0c0,5, 0x440d0e0,5, 0x440d100,5, 0x440d120,5, 0x440d140,5, 0x440d160,5, 0x440d200,68, 0x440d400,1, 0x440d804,1, 0x440d844,54, 0x440da00,11, 0x440da40,11, 0x440da80,11, 0x440dac0,11, 0x440db00,11, 0x440db40,11, 0x440db80,11, 0x440dbc0,11, 0x440dc00,28, 0x440dc80,5, 0x440dca0,2, 0x440e000,4, 0x440e020,6, 0x440e040,6, 0x440e060,14, 0x440e100,26, 0x440e180,15, 0x440e200,14, 0x440e240,9, 0x440e280,6, 0x440e2a0,1, 0x440e2a8,4, 0x440e300,14, 0x440e340,9, 0x440e380,6, 0x440e3a0,4, 0x440e400,9, 0x4420000,1, 0x4421000,977, 0x4422000,161, 0x4423000,977, 0x4424000,977, 0x4425000,977, 0x4426000,977, 0x4427000,977, 0x4428000,977, 0x4429000,977, 0x442a000,977, 0x442b000,161, 0x442c000,12, 0x442c040,14, 0x442c080,20, 0x442c104,1, 0x442c10c,4, 0x442c200,12, 0x442c240,14, 0x442c280,20, 0x442c304,1, 0x442c30c,4, 0x442c400,12, 0x442c440,14, 0x442c480,20, 0x442c504,1, 0x442c50c,4, 0x442c600,12, 0x442c640,14, 0x442c680,20, 0x442c704,1, 0x442c70c,4, 0x442c800,12, 0x442c840,14, 0x442c880,20, 0x442c904,1, 0x442c90c,4, 0x442ca00,12, 0x442ca40,14, 0x442ca80,20, 0x442cb04,1, 0x442cb0c,4, 0x442cc00,12, 0x442cc40,14, 0x442cc80,20, 0x442cd04,1, 0x442cd0c,4, 0x442ce00,12, 0x442ce40,14, 0x442ce80,20, 0x442cf04,1, 0x442cf0c,4, 0x442d000,12, 0x442d040,14, 0x442d080,20, 0x442d104,1, 0x442d10c,4, 0x442d200,17, 0x442d250,2, 0x442d260,4, 0x442e000,1, 0x442e014,1, 0x442e01c,11, 0x442e060,9, 0x442e094,1, 0x442e09c,11, 0x442e0e0,15, 0x442e200,12, 0x442e240,13, 0x442e280,3, 0x442e290,1, 0x4480000,500, 0x4480800,2, 0x4480820,15, 0x4481000,500, 0x4481800,8, 0x4481824,6, 0x4481840,8, 0x4481880,7, 0x44818a0,7, 0x44818c0,7, 0x44818e0,7, 0x4481900,8, 0x4481924,16, 0x4481980,12, 0x4482000,500, 0x4482800,2, 0x4482820,15, 0x4483000,500, 0x4483800,8, 0x4483824,6, 0x4483840,8, 0x4483880,7, 0x44838a0,7, 0x44838c0,7, 0x44838e0,7, 0x4483900,8, 0x4483924,16, 0x4483980,12, 0x4484004,5, 0x4484200,26, 0x4484280,4, 0x44842c0,25, 0x4484340,6, 0x4484360,1, 0x4484368,2, 0x4484374,11, 0x44843a4,10, 0x4484400,1, 0x4488000,52, 0x4488400,82, 0x4488560,6, 0x4488600,41, 0x4488700,2, 0x4488720,19, 0x4488800,25, 0x4488880,1, 0x4488900,28, 0x4488980,1, 0x4489000,52, 0x4489400,82, 0x4489560,6, 0x4489600,41, 0x4489700,2, 0x4489720,19, 0x4489800,25, 0x4489880,1, 0x4489900,28, 0x4489980,1, 0x448a000,7, 0x448a080,6, 0x448a0a0,6, 0x448a0c0,1, 0x448a100,4, 0x448a120,9, 0x448c000,3, 0x448c010,6, 0x448c200,7, 0x448c220,6, 0x448c240,7, 0x448c260,6, 0x448c280,2, 0x448c28c,2, 0x448c2a0,2, 0x448c2ac,2, 0x448c2c0,7, 0x448c2e0,7, 0x448c300,2, 0x448c30c,2, 0x448c320,6, 0x448c400,3, 0x448c440,12, 0x448c800,7, 0x448c820,14, 0x448c880,16, 0x448c900,7, 0x448c920,14, 0x448c980,16, 0x448ca00,6, 0x448ca20,7, 0x448cc00,3, 0x44a0000,3, 0x44a0800,7, 0x44a0820,6, 0x44a0840,6, 0x44a0880,1, 0x44a0894,1, 0x44a089c,2, 0x44a08c0,9, 0x44a0900,18, 0x44a0a00,36, 0x44a0b00,22, 0x44a0b80,18, 0x44a0c00,3, 0x44a0c10,3, 0x44a1000,3, 0x44a1010,2, 0x44a1080,20, 0x44a1100,1, 0x44a1200,26, 0x44a1280,4, 0x44a12c0,25, 0x44a1340,6, 0x44a1360,1, 0x44a1368,2, 0x44a1374,11, 0x44a13a4,4, 0x44a1400,1, 0x44b0000,11, 0x44b0030,19, 0x44b0080,17, 0x44b0100,11, 0x44b0130,19, 0x44b0180,17, 0x44b0200,3, 0x44b0214,1, 0x44b021c,1, 0x44b0280,3, 0x44b0294,1, 0x44b029c,1, 0x44b0300,18, 0x44b0380,18, 0x44b0400,18, 0x44b0480,18, 0x44b0500,18, 0x44b0580,18, 0x44b0600,18, 0x44b0680,18, 0x44b0700,13, 0x44b0738,6, 0x44b0780,13, 0x44b07b8,6, 0x44b0800,1, 0x44b0808,22, 0x44b0880,1, 0x44b0894,13, 0x44b0900,3, 0x44b0910,3, 0x44b0920,3, 0x44b0940,3, 0x44b0954,1, 0x44b095c,1, 0x44b0a00,52, 0x44b0c00,4, 0x44b0d00,34, 0x44b0e00,4, 0x44b0e80,30, 0x44b0f00,1, 0x44b0f40,5, 0x44b0f60,5, 0x44b0f80,6, 0x44b1000,14, 0x44b1040,4, 0x44b1060,17, 0x44b10c0,6, 0x44b10e0,1, 0x44b10e8,2, 0x44b10f4,11, 0x44b1124,17, 0x44b1200,3, 0x44b1210,3, 0x44b1220,3, 0x44b1230,3, 0x44b1240,3, 0x44b1250,3, 0x44b2000,20, 0x44b2080,3, 0x44b2090,1, 0x44b2098,2, 0x44c0000,500, 0x44c0800,2, 0x44c0820,15, 0x44c1000,500, 0x44c1800,8, 0x44c1824,6, 0x44c1840,8, 0x44c1880,7, 0x44c18a0,7, 0x44c18c0,7, 0x44c18e0,7, 0x44c1900,8, 0x44c1924,16, 0x44c1980,12, 0x44c2000,500, 0x44c2800,2, 0x44c2820,15, 0x44c3000,500, 0x44c3800,8, 0x44c3824,6, 0x44c3840,8, 0x44c3880,7, 0x44c38a0,7, 0x44c38c0,7, 0x44c38e0,7, 0x44c3900,8, 0x44c3924,16, 0x44c3980,12, 0x44c4004,5, 0x44c4200,26, 0x44c4280,4, 0x44c42c0,25, 0x44c4340,6, 0x44c4360,1, 0x44c4368,2, 0x44c4374,11, 0x44c43a4,10, 0x44c4400,1, 0x44c8000,52, 0x44c8400,82, 0x44c8560,6, 0x44c8600,41, 0x44c8700,2, 0x44c8720,19, 0x44c8800,25, 0x44c8880,1, 0x44c8900,28, 0x44c8980,1, 0x44c9000,52, 0x44c9400,82, 0x44c9560,6, 0x44c9600,41, 0x44c9700,2, 0x44c9720,19, 0x44c9800,25, 0x44c9880,1, 0x44c9900,28, 0x44c9980,1, 0x44ca000,7, 0x44ca080,6, 0x44ca0a0,6, 0x44ca0c0,1, 0x44ca100,4, 0x44ca120,9, 0x44cc000,3, 0x44cc010,6, 0x44cc200,7, 0x44cc220,6, 0x44cc240,7, 0x44cc260,6, 0x44cc280,2, 0x44cc28c,2, 0x44cc2a0,2, 0x44cc2ac,2, 0x44cc2c0,7, 0x44cc2e0,7, 0x44cc300,2, 0x44cc30c,2, 0x44cc320,6, 0x44cc400,3, 0x44cc440,12, 0x44cc800,7, 0x44cc820,14, 0x44cc880,16, 0x44cc900,7, 0x44cc920,14, 0x44cc980,16, 0x44cca00,6, 0x44cca20,7, 0x44ccc00,3, 0x44e0000,3, 0x44e0800,7, 0x44e0820,6, 0x44e0840,6, 0x44e0880,1, 0x44e0894,1, 0x44e089c,2, 0x44e08c0,9, 0x44e0900,18, 0x44e0a00,36, 0x44e0b00,22, 0x44e0b80,18, 0x44e0c00,3, 0x44e0c10,3, 0x44e1000,3, 0x44e1010,2, 0x44e1080,20, 0x44e1100,1, 0x44e1200,26, 0x44e1280,4, 0x44e12c0,25, 0x44e1340,6, 0x44e1360,1, 0x44e1368,2, 0x44e1374,11, 0x44e13a4,4, 0x44e1400,1, 0x44f0000,11, 0x44f0030,19, 0x44f0080,17, 0x44f0100,11, 0x44f0130,19, 0x44f0180,17, 0x44f0200,3, 0x44f0214,1, 0x44f021c,1, 0x44f0280,3, 0x44f0294,1, 0x44f029c,1, 0x44f0300,18, 0x44f0380,18, 0x44f0400,18, 0x44f0480,18, 0x44f0500,18, 0x44f0580,18, 0x44f0600,18, 0x44f0680,18, 0x44f0700,13, 0x44f0738,6, 0x44f0780,13, 0x44f07b8,6, 0x44f0800,1, 0x44f0808,22, 0x44f0880,1, 0x44f0894,13, 0x44f0900,3, 0x44f0910,3, 0x44f0920,3, 0x44f0940,3, 0x44f0954,1, 0x44f095c,1, 0x44f0a00,52, 0x44f0c00,4, 0x44f0d00,34, 0x44f0e00,4, 0x44f0e80,30, 0x44f0f00,1, 0x44f0f40,5, 0x44f0f60,5, 0x44f0f80,6, 0x44f1000,14, 0x44f1040,4, 0x44f1060,17, 0x44f10c0,6, 0x44f10e0,1, 0x44f10e8,2, 0x44f10f4,11, 0x44f1124,17, 0x44f1200,3, 0x44f1210,3, 0x44f1220,3, 0x44f1230,3, 0x44f1240,3, 0x44f1250,3, 0x44f2000,20, 0x44f2080,3, 0x44f2090,1, 0x44f2098,2, 0x4500000,13, 0x4500038,4, 0x4500050,3, 0x4500060,3, 0x4500070,16, 0x45000c0,5, 0x4500400,14, 0x4500440,2, 0x450044c,3, 0x4500480,14, 0x45004c0,2, 0x45004cc,3, 0x4500500,1, 0x4500508,15, 0x4500560,2, 0x450056c,2, 0x4500600,4, 0x4500680,27, 0x4500800,2, 0x4500900,32, 0x4500984,2, 0x4500990,4, 0x4500a00,26, 0x4500a80,4, 0x4500ac0,25, 0x4500b40,6, 0x4500b60,1, 0x4500b68,2, 0x4500b74,11, 0x4500ba4,8, 0x4500c00,9, 0x4500c40,11, 0x4500c80,23, 0x4500ce0,15, 0x4500d20,15, 0x4500d60,1, 0x4501000,13, 0x4501038,4, 0x4501050,3, 0x4501060,3, 0x4501070,16, 0x45010c0,5, 0x4501400,14, 0x4501440,2, 0x450144c,3, 0x4501480,14, 0x45014c0,2, 0x45014cc,3, 0x4501500,1, 0x4501508,15, 0x4501560,2, 0x450156c,2, 0x4501600,4, 0x4501680,27, 0x4501800,2, 0x4501900,32, 0x4501984,2, 0x4501990,4, 0x4501a00,26, 0x4501a80,4, 0x4501ac0,25, 0x4501b40,6, 0x4501b60,1, 0x4501b68,2, 0x4501b74,11, 0x4501ba4,8, 0x4501c00,9, 0x4501c40,11, 0x4501c80,23, 0x4501ce0,15, 0x4501d20,15, 0x4501d60,1, 0x4502000,1, 0x4502100,36, 0x4502200,7, 0x4510000,22, 0x4510080,22, 0x4510100,12, 0x4510140,12, 0x4510200,52, 0x4510300,52, 0x4510400,11, 0x4510440,11, 0x4510480,3, 0x45104a0,6, 0x45104c0,6, 0x45104e0,3, 0x45104f0,3, 0x4510800,9, 0x4510840,15, 0x4510880,15, 0x45108c0,15, 0x4510900,1, 0x4510914,13, 0x4510980,17, 0x4511000,17, 0x4511080,17, 0x4511104,5, 0x4511120,3, 0x4511130,11, 0x4511200,31, 0x4511280,31, 0x4511300,12, 0x4511340,12, 0x4511380,2, 0x4511390,2, 0x45113a0,3, 0x45113b0,3, 0x45113c0,5, 0x45113e0,5, 0x4511400,3, 0x4511410,3, 0x4511420,3, 0x4511430,3, 0x4511440,3, 0x4511450,3, 0x4511460,7, 0x4511800,26, 0x4511880,4, 0x45118c0,25, 0x4511940,6, 0x4511960,1, 0x4511968,2, 0x4511974,11, 0x45119a4,12, 0x4511a00,4, 0x4511b00,43, 0x4511c00,4, 0x4511c20,7, 0x4511c40,3, 0x4511c50,1, 0x4511c60,3, 0x4511e00,32, 0x4511e84,1, 0x4511e90,4, 0x4511ea4,1, 0x4511eb4,14, 0x4511ef0,2, 0x4511f04,1, 0x4511f10,8, 0x4511f34,6, 0x4512000,3, 0x4512010,21, 0x4512080,1, 0x4512094,1, 0x451209c,5, 0x4512100,15, 0x4512140,1, 0x4512180,6, 0x4514000,22, 0x4514080,22, 0x4514100,12, 0x4514140,12, 0x4514200,52, 0x4514300,52, 0x4514400,11, 0x4514440,11, 0x4514480,3, 0x45144a0,6, 0x45144c0,6, 0x45144e0,3, 0x45144f0,3, 0x4514800,9, 0x4514840,15, 0x4514880,15, 0x45148c0,15, 0x4514900,1, 0x4514914,13, 0x4514980,17, 0x4515000,17, 0x4515080,17, 0x4515104,5, 0x4515120,3, 0x4515130,11, 0x4515200,31, 0x4515280,31, 0x4515300,12, 0x4515340,12, 0x4515380,2, 0x4515390,2, 0x45153a0,3, 0x45153b0,3, 0x45153c0,5, 0x45153e0,5, 0x4515400,3, 0x4515410,3, 0x4515420,3, 0x4515430,3, 0x4515440,3, 0x4515450,3, 0x4515460,7, 0x4515800,26, 0x4515880,4, 0x45158c0,25, 0x4515940,6, 0x4515960,1, 0x4515968,2, 0x4515974,11, 0x45159a4,12, 0x4515a00,4, 0x4515b00,43, 0x4515c00,4, 0x4515c20,7, 0x4515c40,3, 0x4515c50,1, 0x4515c60,3, 0x4515e00,32, 0x4515e84,1, 0x4515e90,4, 0x4515ea4,1, 0x4515eb4,14, 0x4515ef0,2, 0x4515f04,1, 0x4515f10,8, 0x4515f34,6, 0x4516000,3, 0x4516010,21, 0x4516080,1, 0x4516094,1, 0x451609c,5, 0x4516100,15, 0x4516140,1, 0x4516180,6, 0x4518000,100, 0x4518200,3, 0x4518210,5, 0x4520000,12, 0x4520040,2, 0x4520050,3, 0x4522000,1006, 0x4523000,31, 0x4523084,6, 0x4524004,1, 0x452400c,3, 0x4524200,23, 0x4524280,23, 0x4524300,1, 0x4524400,1, 0x4524800,122, 0x4524a00,122, 0x4524c04,63, 0x4524d04,1, 0x4524d10,5, 0x4524d40,6, 0x4524d60,5, 0x4526000,1, 0x4526100,1, 0x4526108,3, 0x4526120,2, 0x4526134,8, 0x4526160,2, 0x4526174,8, 0x45261a0,4, 0x4526200,54, 0x4526800,5, 0x4526820,2, 0x4526834,1, 0x452683c,1, 0x4526a00,24, 0x4526a80,24, 0x4526b00,1, 0x4526c00,6, 0x4526c24,5, 0x4526c40,16, 0x4527000,1, 0x4527020,5, 0x4527040,1, 0x4527048,2, 0x4527080,1, 0x4527100,4, 0x4527180,24, 0x4527200,4, 0x4527280,27, 0x4527300,2, 0x452730c,3, 0x4528004,1, 0x452800c,3, 0x4528020,1, 0x4528100,2, 0x4528110,3, 0x4528120,2, 0x4528140,10, 0x4528180,13, 0x4528200,2, 0x4528210,3, 0x4528220,2, 0x4528240,10, 0x4528280,13, 0x4528400,14, 0x4528440,3, 0x4528450,3, 0x4528460,1, 0x4528500,36, 0x4528600,10, 0x4528640,5, 0x4528660,5, 0x4528700,27, 0x4528780,7, 0x45287a0,8, 0x4528800,27, 0x4528880,7, 0x45288a0,8, 0x4528900,27, 0x4528980,7, 0x45289a0,8, 0x4528a00,27, 0x4528a80,7, 0x4528aa0,8, 0x4528b00,48, 0x4528bc4,8, 0x4528bf0,30, 0x4528c80,4, 0x4528cc0,25, 0x4528d40,6, 0x4528d60,1, 0x4528d68,2, 0x4528d74,3, 0x4528e00,8, 0x4528e24,28, 0x4529000,4, 0x4529080,23, 0x4529100,14, 0x4529140,9, 0x4529200,10, 0x4529230,3, 0x4529240,5, 0x4529260,5, 0x4529280,9, 0x4529400,67, 0x4529600,10, 0x4530000,12, 0x4530040,2, 0x4530050,3, 0x4532000,1006, 0x4533000,31, 0x4533084,6, 0x4534004,1, 0x453400c,3, 0x4534200,23, 0x4534280,23, 0x4534300,1, 0x4534400,1, 0x4534800,122, 0x4534a00,122, 0x4534c04,63, 0x4534d04,1, 0x4534d10,5, 0x4534d40,6, 0x4534d60,5, 0x4536000,1, 0x4536100,1, 0x4536108,3, 0x4536120,2, 0x4536134,8, 0x4536160,2, 0x4536174,8, 0x45361a0,4, 0x4536200,54, 0x4536800,5, 0x4536820,2, 0x4536834,1, 0x453683c,1, 0x4536a00,24, 0x4536a80,24, 0x4536b00,1, 0x4536c00,6, 0x4536c24,5, 0x4536c40,16, 0x4537000,1, 0x4537020,5, 0x4537040,1, 0x4537048,2, 0x4537080,1, 0x4537100,4, 0x4537180,24, 0x4537200,4, 0x4537280,27, 0x4537300,2, 0x453730c,3, 0x4538004,1, 0x453800c,3, 0x4538020,1, 0x4538100,2, 0x4538110,3, 0x4538120,2, 0x4538140,10, 0x4538180,13, 0x4538200,2, 0x4538210,3, 0x4538220,2, 0x4538240,10, 0x4538280,13, 0x4538400,14, 0x4538440,3, 0x4538450,3, 0x4538460,1, 0x4538500,36, 0x4538600,10, 0x4538640,5, 0x4538660,5, 0x4538700,27, 0x4538780,7, 0x45387a0,8, 0x4538800,27, 0x4538880,7, 0x45388a0,8, 0x4538900,27, 0x4538980,7, 0x45389a0,8, 0x4538a00,27, 0x4538a80,7, 0x4538aa0,8, 0x4538b00,48, 0x4538bc4,8, 0x4538bf0,30, 0x4538c80,4, 0x4538cc0,25, 0x4538d40,6, 0x4538d60,1, 0x4538d68,2, 0x4538d74,3, 0x4538e00,8, 0x4538e24,28, 0x4539000,4, 0x4539080,23, 0x4539100,14, 0x4539140,9, 0x4539200,10, 0x4539230,3, 0x4539240,5, 0x4539260,5, 0x4539280,9, 0x4539400,67, 0x4539600,10, 0x4600000,1, 0x4600020,3, 0x4600030,2, 0x4600040,3, 0x4600050,2, 0x4600800,53, 0x4600900,3, 0x4600910,13, 0x4600a00,53, 0x4600b00,3, 0x4600b10,13, 0x4600c00,5, 0x4600c20,5, 0x4600c40,18, 0x4601000,6, 0x4601020,4, 0x4601040,16, 0x4602000,20, 0x4602080,15, 0x4602100,20, 0x4602180,15, 0x4602200,23, 0x4602260,7, 0x4602400,11, 0x4602430,3, 0x4602440,3, 0x4602450,3, 0x4602460,24, 0x4602500,11, 0x4602530,3, 0x4602540,3, 0x4602550,3, 0x4602560,24, 0x4602600,11, 0x4602630,3, 0x4602640,3, 0x4602650,3, 0x4602660,24, 0x4602700,11, 0x4602730,3, 0x4602740,3, 0x4602750,3, 0x4602760,24, 0x4602800,4, 0x4602820,16, 0x4602880,10, 0x46028c0,10, 0x4602900,6, 0x4602920,6, 0x4602940,4, 0x4602980,13, 0x46029c0,13, 0x4602a00,9, 0x4603000,14, 0x4603040,9, 0x4603080,6, 0x46030a0,1, 0x46030a8,4, 0x4603100,4, 0x4603200,124, 0x4603400,124, 0x4603600,8, 0x4603624,1, 0x4603644,6, 0x4603664,6, 0x4603680,1, 0x4603688,6, 0x46036a8,22, 0x4604000,1, 0x4604020,3, 0x4604030,2, 0x4604040,3, 0x4604050,2, 0x4604800,53, 0x4604900,3, 0x4604910,13, 0x4604a00,53, 0x4604b00,3, 0x4604b10,13, 0x4604c00,5, 0x4604c20,5, 0x4604c40,18, 0x4605000,6, 0x4605020,4, 0x4605040,16, 0x4606000,20, 0x4606080,15, 0x4606100,20, 0x4606180,15, 0x4606200,23, 0x4606260,7, 0x4606400,11, 0x4606430,3, 0x4606440,3, 0x4606450,3, 0x4606460,24, 0x4606500,11, 0x4606530,3, 0x4606540,3, 0x4606550,3, 0x4606560,24, 0x4606600,11, 0x4606630,3, 0x4606640,3, 0x4606650,3, 0x4606660,24, 0x4606700,11, 0x4606730,3, 0x4606740,3, 0x4606750,3, 0x4606760,24, 0x4606800,4, 0x4606820,16, 0x4606880,10, 0x46068c0,10, 0x4606900,6, 0x4606920,6, 0x4606940,4, 0x4606980,13, 0x46069c0,13, 0x4606a00,9, 0x4607000,14, 0x4607040,9, 0x4607080,6, 0x46070a0,1, 0x46070a8,4, 0x4607100,4, 0x4607200,124, 0x4607400,124, 0x4607600,8, 0x4607624,1, 0x4607644,6, 0x4607664,6, 0x4607680,1, 0x4607688,6, 0x46076a8,22, 0x4608000,84, 0x4608180,20, 0x4608200,5, 0x4608400,11, 0x4608440,11, 0x4608480,19, 0x4608500,19, 0x4608580,24, 0x4608600,13, 0x4608800,84, 0x4608980,20, 0x4608a00,5, 0x4608c00,11, 0x4608c40,11, 0x4608c80,19, 0x4608d00,19, 0x4608d80,24, 0x4608e00,13, 0x4609000,10, 0x4609040,5, 0x4609080,10, 0x46090c0,5, 0x4609100,5, 0x4609200,11, 0x4609230,3, 0x4609240,5, 0x4609260,5, 0x4609280,32, 0x4609400,13, 0x4609440,13, 0x4609480,9, 0x46094c0,1, 0x46094d0,5, 0x46094f0,21, 0x4609800,10, 0x4609840,5, 0x4609880,10, 0x46098c0,5, 0x4609900,5, 0x4609a00,11, 0x4609a30,3, 0x4609a40,5, 0x4609a60,5, 0x4609a80,32, 0x4609c00,13, 0x4609c40,13, 0x4609c80,9, 0x4609cc0,1, 0x4609cd0,5, 0x4609cf0,21, 0x460a000,14, 0x460a040,9, 0x460a080,6, 0x460a0a0,1, 0x460a0a8,4, 0x460a100,7, 0x460a120,3, 0x460a130,25, 0x460c000,26, 0x460c06c,2, 0x460c080,3, 0x460c090,17, 0x460c100,26, 0x460c16c,2, 0x460c180,3, 0x460c190,17, 0x460c200,26, 0x460c26c,2, 0x460c280,3, 0x460c290,17, 0x460c300,26, 0x460c36c,2, 0x460c380,3, 0x460c390,17, 0x460c400,26, 0x460c46c,2, 0x460c480,3, 0x460c490,17, 0x460c500,26, 0x460c56c,2, 0x460c580,3, 0x460c590,17, 0x460c600,26, 0x460c66c,2, 0x460c680,3, 0x460c690,17, 0x460c700,26, 0x460c76c,2, 0x460c780,3, 0x460c790,17, 0x460c800,12, 0x460c844,1, 0x460c854,8, 0x460c880,7, 0x460c8a0,2, 0x460c8ac,2, 0x460c8c0,26, 0x460c980,4, 0x460c9a0,5, 0x460c9c0,1, 0x460d000,3, 0x460d010,3, 0x460d020,3, 0x460d030,3, 0x460d040,3, 0x460d050,3, 0x460d060,3, 0x460d070,3, 0x460d080,5, 0x460d0a0,5, 0x460d0c0,5, 0x460d0e0,5, 0x460d100,5, 0x460d120,5, 0x460d140,5, 0x460d160,5, 0x460d200,68, 0x460d400,1, 0x460d804,1, 0x460d844,54, 0x460da00,11, 0x460da40,11, 0x460da80,11, 0x460dac0,11, 0x460db00,11, 0x460db40,11, 0x460db80,11, 0x460dbc0,11, 0x460dc00,28, 0x460dc80,5, 0x460dca0,2, 0x460e000,4, 0x460e020,6, 0x460e040,6, 0x460e060,14, 0x460e100,26, 0x460e180,15, 0x460e200,14, 0x460e240,9, 0x460e280,6, 0x460e2a0,1, 0x460e2a8,4, 0x460e300,14, 0x460e340,9, 0x460e380,6, 0x460e3a0,4, 0x460e400,9, 0x4620000,1, 0x4621000,977, 0x4622000,161, 0x4623000,977, 0x4624000,977, 0x4625000,977, 0x4626000,977, 0x4627000,977, 0x4628000,977, 0x4629000,977, 0x462a000,977, 0x462b000,161, 0x462c000,12, 0x462c040,14, 0x462c080,20, 0x462c104,1, 0x462c10c,4, 0x462c200,12, 0x462c240,14, 0x462c280,20, 0x462c304,1, 0x462c30c,4, 0x462c400,12, 0x462c440,14, 0x462c480,20, 0x462c504,1, 0x462c50c,4, 0x462c600,12, 0x462c640,14, 0x462c680,20, 0x462c704,1, 0x462c70c,4, 0x462c800,12, 0x462c840,14, 0x462c880,20, 0x462c904,1, 0x462c90c,4, 0x462ca00,12, 0x462ca40,14, 0x462ca80,20, 0x462cb04,1, 0x462cb0c,4, 0x462cc00,12, 0x462cc40,14, 0x462cc80,20, 0x462cd04,1, 0x462cd0c,4, 0x462ce00,12, 0x462ce40,14, 0x462ce80,20, 0x462cf04,1, 0x462cf0c,4, 0x462d000,12, 0x462d040,14, 0x462d080,20, 0x462d104,1, 0x462d10c,4, 0x462d200,17, 0x462d250,2, 0x462d260,4, 0x462e000,1, 0x462e014,1, 0x462e01c,11, 0x462e060,9, 0x462e094,1, 0x462e09c,11, 0x462e0e0,15, 0x462e200,12, 0x462e240,13, 0x462e280,3, 0x462e290,1, 0x4680000,500, 0x4680800,2, 0x4680820,15, 0x4681000,500, 0x4681800,8, 0x4681824,6, 0x4681840,8, 0x4681880,7, 0x46818a0,7, 0x46818c0,7, 0x46818e0,7, 0x4681900,8, 0x4681924,16, 0x4681980,12, 0x4682000,500, 0x4682800,2, 0x4682820,15, 0x4683000,500, 0x4683800,8, 0x4683824,6, 0x4683840,8, 0x4683880,7, 0x46838a0,7, 0x46838c0,7, 0x46838e0,7, 0x4683900,8, 0x4683924,16, 0x4683980,12, 0x4684004,5, 0x4684200,26, 0x4684280,4, 0x46842c0,25, 0x4684340,6, 0x4684360,1, 0x4684368,2, 0x4684374,11, 0x46843a4,10, 0x4684400,1, 0x4688000,52, 0x4688400,82, 0x4688560,6, 0x4688600,41, 0x4688700,2, 0x4688720,19, 0x4688800,25, 0x4688880,1, 0x4688900,28, 0x4688980,1, 0x4689000,52, 0x4689400,82, 0x4689560,6, 0x4689600,41, 0x4689700,2, 0x4689720,19, 0x4689800,25, 0x4689880,1, 0x4689900,28, 0x4689980,1, 0x468a000,7, 0x468a080,6, 0x468a0a0,6, 0x468a0c0,1, 0x468a100,4, 0x468a120,9, 0x468c000,3, 0x468c010,6, 0x468c200,7, 0x468c220,6, 0x468c240,7, 0x468c260,6, 0x468c280,2, 0x468c28c,2, 0x468c2a0,2, 0x468c2ac,2, 0x468c2c0,7, 0x468c2e0,7, 0x468c300,2, 0x468c30c,2, 0x468c320,6, 0x468c400,3, 0x468c440,12, 0x468c800,7, 0x468c820,14, 0x468c880,16, 0x468c900,7, 0x468c920,14, 0x468c980,16, 0x468ca00,6, 0x468ca20,7, 0x468cc00,3, 0x46a0000,3, 0x46a0800,7, 0x46a0820,6, 0x46a0840,6, 0x46a0880,1, 0x46a0894,1, 0x46a089c,2, 0x46a08c0,9, 0x46a0900,18, 0x46a0a00,36, 0x46a0b00,22, 0x46a0b80,18, 0x46a0c00,3, 0x46a0c10,3, 0x46a1000,3, 0x46a1010,2, 0x46a1080,20, 0x46a1100,1, 0x46a1200,26, 0x46a1280,4, 0x46a12c0,25, 0x46a1340,6, 0x46a1360,1, 0x46a1368,2, 0x46a1374,11, 0x46a13a4,4, 0x46a1400,1, 0x46b0000,11, 0x46b0030,19, 0x46b0080,17, 0x46b0100,11, 0x46b0130,19, 0x46b0180,17, 0x46b0200,3, 0x46b0214,1, 0x46b021c,1, 0x46b0280,3, 0x46b0294,1, 0x46b029c,1, 0x46b0300,18, 0x46b0380,18, 0x46b0400,18, 0x46b0480,18, 0x46b0500,18, 0x46b0580,18, 0x46b0600,18, 0x46b0680,18, 0x46b0700,13, 0x46b0738,6, 0x46b0780,13, 0x46b07b8,6, 0x46b0800,1, 0x46b0808,22, 0x46b0880,1, 0x46b0894,13, 0x46b0900,3, 0x46b0910,3, 0x46b0920,3, 0x46b0940,3, 0x46b0954,1, 0x46b095c,1, 0x46b0a00,52, 0x46b0c00,4, 0x46b0d00,34, 0x46b0e00,4, 0x46b0e80,30, 0x46b0f00,1, 0x46b0f40,5, 0x46b0f60,5, 0x46b0f80,6, 0x46b1000,14, 0x46b1040,4, 0x46b1060,17, 0x46b10c0,6, 0x46b10e0,1, 0x46b10e8,2, 0x46b10f4,11, 0x46b1124,17, 0x46b1200,3, 0x46b1210,3, 0x46b1220,3, 0x46b1230,3, 0x46b1240,3, 0x46b1250,3, 0x46b2000,20, 0x46b2080,3, 0x46b2090,1, 0x46b2098,2, 0x46c0000,500, 0x46c0800,2, 0x46c0820,15, 0x46c1000,500, 0x46c1800,8, 0x46c1824,6, 0x46c1840,8, 0x46c1880,7, 0x46c18a0,7, 0x46c18c0,7, 0x46c18e0,7, 0x46c1900,8, 0x46c1924,16, 0x46c1980,12, 0x46c2000,500, 0x46c2800,2, 0x46c2820,15, 0x46c3000,500, 0x46c3800,8, 0x46c3824,6, 0x46c3840,8, 0x46c3880,7, 0x46c38a0,7, 0x46c38c0,7, 0x46c38e0,7, 0x46c3900,8, 0x46c3924,16, 0x46c3980,12, 0x46c4004,5, 0x46c4200,26, 0x46c4280,4, 0x46c42c0,25, 0x46c4340,6, 0x46c4360,1, 0x46c4368,2, 0x46c4374,11, 0x46c43a4,10, 0x46c4400,1, 0x46c8000,52, 0x46c8400,82, 0x46c8560,6, 0x46c8600,41, 0x46c8700,2, 0x46c8720,19, 0x46c8800,25, 0x46c8880,1, 0x46c8900,28, 0x46c8980,1, 0x46c9000,52, 0x46c9400,82, 0x46c9560,6, 0x46c9600,41, 0x46c9700,2, 0x46c9720,19, 0x46c9800,25, 0x46c9880,1, 0x46c9900,28, 0x46c9980,1, 0x46ca000,7, 0x46ca080,6, 0x46ca0a0,6, 0x46ca0c0,1, 0x46ca100,4, 0x46ca120,9, 0x46cc000,3, 0x46cc010,6, 0x46cc200,7, 0x46cc220,6, 0x46cc240,7, 0x46cc260,6, 0x46cc280,2, 0x46cc28c,2, 0x46cc2a0,2, 0x46cc2ac,2, 0x46cc2c0,7, 0x46cc2e0,7, 0x46cc300,2, 0x46cc30c,2, 0x46cc320,6, 0x46cc400,3, 0x46cc440,12, 0x46cc800,7, 0x46cc820,14, 0x46cc880,16, 0x46cc900,7, 0x46cc920,14, 0x46cc980,16, 0x46cca00,6, 0x46cca20,7, 0x46ccc00,3, 0x46e0000,3, 0x46e0800,7, 0x46e0820,6, 0x46e0840,6, 0x46e0880,1, 0x46e0894,1, 0x46e089c,2, 0x46e08c0,9, 0x46e0900,18, 0x46e0a00,36, 0x46e0b00,22, 0x46e0b80,18, 0x46e0c00,3, 0x46e0c10,3, 0x46e1000,3, 0x46e1010,2, 0x46e1080,20, 0x46e1100,1, 0x46e1200,26, 0x46e1280,4, 0x46e12c0,25, 0x46e1340,6, 0x46e1360,1, 0x46e1368,2, 0x46e1374,11, 0x46e13a4,4, 0x46e1400,1, 0x46f0000,11, 0x46f0030,19, 0x46f0080,17, 0x46f0100,11, 0x46f0130,19, 0x46f0180,17, 0x46f0200,3, 0x46f0214,1, 0x46f021c,1, 0x46f0280,3, 0x46f0294,1, 0x46f029c,1, 0x46f0300,18, 0x46f0380,18, 0x46f0400,18, 0x46f0480,18, 0x46f0500,18, 0x46f0580,18, 0x46f0600,18, 0x46f0680,18, 0x46f0700,13, 0x46f0738,6, 0x46f0780,13, 0x46f07b8,6, 0x46f0800,1, 0x46f0808,22, 0x46f0880,1, 0x46f0894,13, 0x46f0900,3, 0x46f0910,3, 0x46f0920,3, 0x46f0940,3, 0x46f0954,1, 0x46f095c,1, 0x46f0a00,52, 0x46f0c00,4, 0x46f0d00,34, 0x46f0e00,4, 0x46f0e80,30, 0x46f0f00,1, 0x46f0f40,5, 0x46f0f60,5, 0x46f0f80,6, 0x46f1000,14, 0x46f1040,4, 0x46f1060,17, 0x46f10c0,6, 0x46f10e0,1, 0x46f10e8,2, 0x46f10f4,11, 0x46f1124,17, 0x46f1200,3, 0x46f1210,3, 0x46f1220,3, 0x46f1230,3, 0x46f1240,3, 0x46f1250,3, 0x46f2000,20, 0x46f2080,3, 0x46f2090,1, 0x46f2098,2, 0x4700000,13, 0x4700038,4, 0x4700050,3, 0x4700060,3, 0x4700070,16, 0x47000c0,5, 0x4700400,14, 0x4700440,2, 0x470044c,3, 0x4700480,14, 0x47004c0,2, 0x47004cc,3, 0x4700500,1, 0x4700508,15, 0x4700560,2, 0x470056c,2, 0x4700600,4, 0x4700680,27, 0x4700800,2, 0x4700900,32, 0x4700984,2, 0x4700990,4, 0x4700a00,26, 0x4700a80,4, 0x4700ac0,25, 0x4700b40,6, 0x4700b60,1, 0x4700b68,2, 0x4700b74,11, 0x4700ba4,8, 0x4700c00,9, 0x4700c40,11, 0x4700c80,23, 0x4700ce0,15, 0x4700d20,15, 0x4700d60,1, 0x4701000,13, 0x4701038,4, 0x4701050,3, 0x4701060,3, 0x4701070,16, 0x47010c0,5, 0x4701400,14, 0x4701440,2, 0x470144c,3, 0x4701480,14, 0x47014c0,2, 0x47014cc,3, 0x4701500,1, 0x4701508,15, 0x4701560,2, 0x470156c,2, 0x4701600,4, 0x4701680,27, 0x4701800,2, 0x4701900,32, 0x4701984,2, 0x4701990,4, 0x4701a00,26, 0x4701a80,4, 0x4701ac0,25, 0x4701b40,6, 0x4701b60,1, 0x4701b68,2, 0x4701b74,11, 0x4701ba4,8, 0x4701c00,9, 0x4701c40,11, 0x4701c80,23, 0x4701ce0,15, 0x4701d20,15, 0x4701d60,1, 0x4702000,1, 0x4702100,36, 0x4702200,7, 0x4710000,22, 0x4710080,22, 0x4710100,12, 0x4710140,12, 0x4710200,52, 0x4710300,52, 0x4710400,11, 0x4710440,11, 0x4710480,3, 0x47104a0,6, 0x47104c0,6, 0x47104e0,3, 0x47104f0,3, 0x4710800,9, 0x4710840,15, 0x4710880,15, 0x47108c0,15, 0x4710900,1, 0x4710914,13, 0x4710980,17, 0x4711000,17, 0x4711080,17, 0x4711104,5, 0x4711120,3, 0x4711130,11, 0x4711200,31, 0x4711280,31, 0x4711300,12, 0x4711340,12, 0x4711380,2, 0x4711390,2, 0x47113a0,3, 0x47113b0,3, 0x47113c0,5, 0x47113e0,5, 0x4711400,3, 0x4711410,3, 0x4711420,3, 0x4711430,3, 0x4711440,3, 0x4711450,3, 0x4711460,7, 0x4711800,26, 0x4711880,4, 0x47118c0,25, 0x4711940,6, 0x4711960,1, 0x4711968,2, 0x4711974,11, 0x47119a4,12, 0x4711a00,4, 0x4711b00,43, 0x4711c00,4, 0x4711c20,7, 0x4711c40,3, 0x4711c50,1, 0x4711c60,3, 0x4711e00,32, 0x4711e84,1, 0x4711e90,4, 0x4711ea4,1, 0x4711eb4,14, 0x4711ef0,2, 0x4711f04,1, 0x4711f10,8, 0x4711f34,6, 0x4712000,3, 0x4712010,21, 0x4712080,1, 0x4712094,1, 0x471209c,5, 0x4712100,15, 0x4712140,1, 0x4712180,6, 0x4714000,22, 0x4714080,22, 0x4714100,12, 0x4714140,12, 0x4714200,52, 0x4714300,52, 0x4714400,11, 0x4714440,11, 0x4714480,3, 0x47144a0,6, 0x47144c0,6, 0x47144e0,3, 0x47144f0,3, 0x4714800,9, 0x4714840,15, 0x4714880,15, 0x47148c0,15, 0x4714900,1, 0x4714914,13, 0x4714980,17, 0x4715000,17, 0x4715080,17, 0x4715104,5, 0x4715120,3, 0x4715130,11, 0x4715200,31, 0x4715280,31, 0x4715300,12, 0x4715340,12, 0x4715380,2, 0x4715390,2, 0x47153a0,3, 0x47153b0,3, 0x47153c0,5, 0x47153e0,5, 0x4715400,3, 0x4715410,3, 0x4715420,3, 0x4715430,3, 0x4715440,3, 0x4715450,3, 0x4715460,7, 0x4715800,26, 0x4715880,4, 0x47158c0,25, 0x4715940,6, 0x4715960,1, 0x4715968,2, 0x4715974,11, 0x47159a4,12, 0x4715a00,4, 0x4715b00,43, 0x4715c00,4, 0x4715c20,7, 0x4715c40,3, 0x4715c50,1, 0x4715c60,3, 0x4715e00,32, 0x4715e84,1, 0x4715e90,4, 0x4715ea4,1, 0x4715eb4,14, 0x4715ef0,2, 0x4715f04,1, 0x4715f10,8, 0x4715f34,6, 0x4716000,3, 0x4716010,21, 0x4716080,1, 0x4716094,1, 0x471609c,5, 0x4716100,15, 0x4716140,1, 0x4716180,6, 0x4718000,100, 0x4718200,3, 0x4718210,5, 0x4720000,12, 0x4720040,2, 0x4720050,3, 0x4722000,1006, 0x4723000,31, 0x4723084,6, 0x4724004,1, 0x472400c,3, 0x4724200,23, 0x4724280,23, 0x4724300,1, 0x4724400,1, 0x4724800,122, 0x4724a00,122, 0x4724c04,63, 0x4724d04,1, 0x4724d10,5, 0x4724d40,6, 0x4724d60,5, 0x4726000,1, 0x4726100,1, 0x4726108,3, 0x4726120,2, 0x4726134,8, 0x4726160,2, 0x4726174,8, 0x47261a0,4, 0x4726200,54, 0x4726800,5, 0x4726820,2, 0x4726834,1, 0x472683c,1, 0x4726a00,24, 0x4726a80,24, 0x4726b00,1, 0x4726c00,6, 0x4726c24,5, 0x4726c40,16, 0x4727000,1, 0x4727020,5, 0x4727040,1, 0x4727048,2, 0x4727080,1, 0x4727100,4, 0x4727180,24, 0x4727200,4, 0x4727280,27, 0x4727300,2, 0x472730c,3, 0x4728004,1, 0x472800c,3, 0x4728020,1, 0x4728100,2, 0x4728110,3, 0x4728120,2, 0x4728140,10, 0x4728180,13, 0x4728200,2, 0x4728210,3, 0x4728220,2, 0x4728240,10, 0x4728280,13, 0x4728400,14, 0x4728440,3, 0x4728450,3, 0x4728460,1, 0x4728500,36, 0x4728600,10, 0x4728640,5, 0x4728660,5, 0x4728700,27, 0x4728780,7, 0x47287a0,8, 0x4728800,27, 0x4728880,7, 0x47288a0,8, 0x4728900,27, 0x4728980,7, 0x47289a0,8, 0x4728a00,27, 0x4728a80,7, 0x4728aa0,8, 0x4728b00,48, 0x4728bc4,8, 0x4728bf0,30, 0x4728c80,4, 0x4728cc0,25, 0x4728d40,6, 0x4728d60,1, 0x4728d68,2, 0x4728d74,3, 0x4728e00,8, 0x4728e24,28, 0x4729000,4, 0x4729080,23, 0x4729100,14, 0x4729140,9, 0x4729200,10, 0x4729230,3, 0x4729240,5, 0x4729260,5, 0x4729280,9, 0x4729400,67, 0x4729600,10, 0x4730000,12, 0x4730040,2, 0x4730050,3, 0x4732000,1006, 0x4733000,31, 0x4733084,6, 0x4734004,1, 0x473400c,3, 0x4734200,23, 0x4734280,23, 0x4734300,1, 0x4734400,1, 0x4734800,122, 0x4734a00,122, 0x4734c04,63, 0x4734d04,1, 0x4734d10,5, 0x4734d40,6, 0x4734d60,5, 0x4736000,1, 0x4736100,1, 0x4736108,3, 0x4736120,2, 0x4736134,8, 0x4736160,2, 0x4736174,8, 0x47361a0,4, 0x4736200,54, 0x4736800,5, 0x4736820,2, 0x4736834,1, 0x473683c,1, 0x4736a00,24, 0x4736a80,24, 0x4736b00,1, 0x4736c00,6, 0x4736c24,5, 0x4736c40,16, 0x4737000,1, 0x4737020,5, 0x4737040,1, 0x4737048,2, 0x4737080,1, 0x4737100,4, 0x4737180,24, 0x4737200,4, 0x4737280,27, 0x4737300,2, 0x473730c,3, 0x4738004,1, 0x473800c,3, 0x4738020,1, 0x4738100,2, 0x4738110,3, 0x4738120,2, 0x4738140,10, 0x4738180,13, 0x4738200,2, 0x4738210,3, 0x4738220,2, 0x4738240,10, 0x4738280,13, 0x4738400,14, 0x4738440,3, 0x4738450,3, 0x4738460,1, 0x4738500,36, 0x4738600,10, 0x4738640,5, 0x4738660,5, 0x4738700,27, 0x4738780,7, 0x47387a0,8, 0x4738800,27, 0x4738880,7, 0x47388a0,8, 0x4738900,27, 0x4738980,7, 0x47389a0,8, 0x4738a00,27, 0x4738a80,7, 0x4738aa0,8, 0x4738b00,48, 0x4738bc4,8, 0x4738bf0,30, 0x4738c80,4, 0x4738cc0,25, 0x4738d40,6, 0x4738d60,1, 0x4738d68,2, 0x4738d74,3, 0x4738e00,8, 0x4738e24,28, 0x4739000,4, 0x4739080,23, 0x4739100,14, 0x4739140,9, 0x4739200,10, 0x4739230,3, 0x4739240,5, 0x4739260,5, 0x4739280,9, 0x4739400,67, 0x4739600,10, 0x4800000,1, 0x4800020,3, 0x4800030,2, 0x4800040,3, 0x4800050,2, 0x4800800,53, 0x4800900,3, 0x4800910,13, 0x4800a00,53, 0x4800b00,3, 0x4800b10,13, 0x4800c00,5, 0x4800c20,5, 0x4800c40,18, 0x4801000,6, 0x4801020,4, 0x4801040,16, 0x4802000,20, 0x4802080,15, 0x4802100,20, 0x4802180,15, 0x4802200,23, 0x4802260,7, 0x4802400,11, 0x4802430,3, 0x4802440,3, 0x4802450,3, 0x4802460,24, 0x4802500,11, 0x4802530,3, 0x4802540,3, 0x4802550,3, 0x4802560,24, 0x4802600,11, 0x4802630,3, 0x4802640,3, 0x4802650,3, 0x4802660,24, 0x4802700,11, 0x4802730,3, 0x4802740,3, 0x4802750,3, 0x4802760,24, 0x4802800,4, 0x4802820,16, 0x4802880,10, 0x48028c0,10, 0x4802900,6, 0x4802920,6, 0x4802940,4, 0x4802980,13, 0x48029c0,13, 0x4802a00,9, 0x4803000,14, 0x4803040,9, 0x4803080,6, 0x48030a0,1, 0x48030a8,4, 0x4803100,4, 0x4803200,124, 0x4803400,124, 0x4803600,8, 0x4803624,1, 0x4803644,6, 0x4803664,6, 0x4803680,1, 0x4803688,6, 0x48036a8,22, 0x4804000,1, 0x4804020,3, 0x4804030,2, 0x4804040,3, 0x4804050,2, 0x4804800,53, 0x4804900,3, 0x4804910,13, 0x4804a00,53, 0x4804b00,3, 0x4804b10,13, 0x4804c00,5, 0x4804c20,5, 0x4804c40,18, 0x4805000,6, 0x4805020,4, 0x4805040,16, 0x4806000,20, 0x4806080,15, 0x4806100,20, 0x4806180,15, 0x4806200,23, 0x4806260,7, 0x4806400,11, 0x4806430,3, 0x4806440,3, 0x4806450,3, 0x4806460,24, 0x4806500,11, 0x4806530,3, 0x4806540,3, 0x4806550,3, 0x4806560,24, 0x4806600,11, 0x4806630,3, 0x4806640,3, 0x4806650,3, 0x4806660,24, 0x4806700,11, 0x4806730,3, 0x4806740,3, 0x4806750,3, 0x4806760,24, 0x4806800,4, 0x4806820,16, 0x4806880,10, 0x48068c0,10, 0x4806900,6, 0x4806920,6, 0x4806940,4, 0x4806980,13, 0x48069c0,13, 0x4806a00,9, 0x4807000,14, 0x4807040,9, 0x4807080,6, 0x48070a0,1, 0x48070a8,4, 0x4807100,4, 0x4807200,124, 0x4807400,124, 0x4807600,8, 0x4807624,1, 0x4807644,6, 0x4807664,6, 0x4807680,1, 0x4807688,6, 0x48076a8,22, 0x4808000,84, 0x4808180,20, 0x4808200,5, 0x4808400,11, 0x4808440,11, 0x4808480,19, 0x4808500,19, 0x4808580,24, 0x4808600,13, 0x4808800,84, 0x4808980,20, 0x4808a00,5, 0x4808c00,11, 0x4808c40,11, 0x4808c80,19, 0x4808d00,19, 0x4808d80,24, 0x4808e00,13, 0x4809000,10, 0x4809040,5, 0x4809080,10, 0x48090c0,5, 0x4809100,5, 0x4809200,11, 0x4809230,3, 0x4809240,5, 0x4809260,5, 0x4809280,32, 0x4809400,13, 0x4809440,13, 0x4809480,9, 0x48094c0,1, 0x48094d0,5, 0x48094f0,21, 0x4809800,10, 0x4809840,5, 0x4809880,10, 0x48098c0,5, 0x4809900,5, 0x4809a00,11, 0x4809a30,3, 0x4809a40,5, 0x4809a60,5, 0x4809a80,32, 0x4809c00,13, 0x4809c40,13, 0x4809c80,9, 0x4809cc0,1, 0x4809cd0,5, 0x4809cf0,21, 0x480a000,14, 0x480a040,9, 0x480a080,6, 0x480a0a0,1, 0x480a0a8,4, 0x480a100,7, 0x480a120,3, 0x480a130,25, 0x480c000,26, 0x480c06c,2, 0x480c080,3, 0x480c090,17, 0x480c100,26, 0x480c16c,2, 0x480c180,3, 0x480c190,17, 0x480c200,26, 0x480c26c,2, 0x480c280,3, 0x480c290,17, 0x480c300,26, 0x480c36c,2, 0x480c380,3, 0x480c390,17, 0x480c400,26, 0x480c46c,2, 0x480c480,3, 0x480c490,17, 0x480c500,26, 0x480c56c,2, 0x480c580,3, 0x480c590,17, 0x480c600,26, 0x480c66c,2, 0x480c680,3, 0x480c690,17, 0x480c700,26, 0x480c76c,2, 0x480c780,3, 0x480c790,17, 0x480c800,12, 0x480c844,1, 0x480c854,8, 0x480c880,7, 0x480c8a0,2, 0x480c8ac,2, 0x480c8c0,26, 0x480c980,4, 0x480c9a0,5, 0x480c9c0,1, 0x480d000,3, 0x480d010,3, 0x480d020,3, 0x480d030,3, 0x480d040,3, 0x480d050,3, 0x480d060,3, 0x480d070,3, 0x480d080,5, 0x480d0a0,5, 0x480d0c0,5, 0x480d0e0,5, 0x480d100,5, 0x480d120,5, 0x480d140,5, 0x480d160,5, 0x480d200,68, 0x480d400,1, 0x480d804,1, 0x480d844,54, 0x480da00,11, 0x480da40,11, 0x480da80,11, 0x480dac0,11, 0x480db00,11, 0x480db40,11, 0x480db80,11, 0x480dbc0,11, 0x480dc00,28, 0x480dc80,5, 0x480dca0,2, 0x480e000,4, 0x480e020,6, 0x480e040,6, 0x480e060,14, 0x480e100,26, 0x480e180,15, 0x480e200,14, 0x480e240,9, 0x480e280,6, 0x480e2a0,1, 0x480e2a8,4, 0x480e300,14, 0x480e340,9, 0x480e380,6, 0x480e3a0,4, 0x480e400,9, 0x4820000,1, 0x4821000,977, 0x4822000,161, 0x4823000,977, 0x4824000,977, 0x4825000,977, 0x4826000,977, 0x4827000,977, 0x4828000,977, 0x4829000,977, 0x482a000,977, 0x482b000,161, 0x482c000,12, 0x482c040,14, 0x482c080,20, 0x482c104,1, 0x482c10c,4, 0x482c200,12, 0x482c240,14, 0x482c280,20, 0x482c304,1, 0x482c30c,4, 0x482c400,12, 0x482c440,14, 0x482c480,20, 0x482c504,1, 0x482c50c,4, 0x482c600,12, 0x482c640,14, 0x482c680,20, 0x482c704,1, 0x482c70c,4, 0x482c800,12, 0x482c840,14, 0x482c880,20, 0x482c904,1, 0x482c90c,4, 0x482ca00,12, 0x482ca40,14, 0x482ca80,20, 0x482cb04,1, 0x482cb0c,4, 0x482cc00,12, 0x482cc40,14, 0x482cc80,20, 0x482cd04,1, 0x482cd0c,4, 0x482ce00,12, 0x482ce40,14, 0x482ce80,20, 0x482cf04,1, 0x482cf0c,4, 0x482d000,12, 0x482d040,14, 0x482d080,20, 0x482d104,1, 0x482d10c,4, 0x482d200,17, 0x482d250,2, 0x482d260,4, 0x482e000,1, 0x482e014,1, 0x482e01c,11, 0x482e060,9, 0x482e094,1, 0x482e09c,11, 0x482e0e0,15, 0x482e200,12, 0x482e240,13, 0x482e280,3, 0x482e290,1, 0x4880000,500, 0x4880800,2, 0x4880820,15, 0x4881000,500, 0x4881800,8, 0x4881824,6, 0x4881840,8, 0x4881880,7, 0x48818a0,7, 0x48818c0,7, 0x48818e0,7, 0x4881900,8, 0x4881924,16, 0x4881980,12, 0x4882000,500, 0x4882800,2, 0x4882820,15, 0x4883000,500, 0x4883800,8, 0x4883824,6, 0x4883840,8, 0x4883880,7, 0x48838a0,7, 0x48838c0,7, 0x48838e0,7, 0x4883900,8, 0x4883924,16, 0x4883980,12, 0x4884004,5, 0x4884200,26, 0x4884280,4, 0x48842c0,25, 0x4884340,6, 0x4884360,1, 0x4884368,2, 0x4884374,11, 0x48843a4,10, 0x4884400,1, 0x4888000,52, 0x4888400,82, 0x4888560,6, 0x4888600,41, 0x4888700,2, 0x4888720,19, 0x4888800,25, 0x4888880,1, 0x4888900,28, 0x4888980,1, 0x4889000,52, 0x4889400,82, 0x4889560,6, 0x4889600,41, 0x4889700,2, 0x4889720,19, 0x4889800,25, 0x4889880,1, 0x4889900,28, 0x4889980,1, 0x488a000,7, 0x488a080,6, 0x488a0a0,6, 0x488a0c0,1, 0x488a100,4, 0x488a120,9, 0x488c000,3, 0x488c010,6, 0x488c200,7, 0x488c220,6, 0x488c240,7, 0x488c260,6, 0x488c280,2, 0x488c28c,2, 0x488c2a0,2, 0x488c2ac,2, 0x488c2c0,7, 0x488c2e0,7, 0x488c300,2, 0x488c30c,2, 0x488c320,6, 0x488c400,3, 0x488c440,12, 0x488c800,7, 0x488c820,14, 0x488c880,16, 0x488c900,7, 0x488c920,14, 0x488c980,16, 0x488ca00,6, 0x488ca20,7, 0x488cc00,3, 0x48a0000,3, 0x48a0800,7, 0x48a0820,6, 0x48a0840,6, 0x48a0880,1, 0x48a0894,1, 0x48a089c,2, 0x48a08c0,9, 0x48a0900,18, 0x48a0a00,36, 0x48a0b00,22, 0x48a0b80,18, 0x48a0c00,3, 0x48a0c10,3, 0x48a1000,3, 0x48a1010,2, 0x48a1080,20, 0x48a1100,1, 0x48a1200,26, 0x48a1280,4, 0x48a12c0,25, 0x48a1340,6, 0x48a1360,1, 0x48a1368,2, 0x48a1374,11, 0x48a13a4,4, 0x48a1400,1, 0x48b0000,11, 0x48b0030,19, 0x48b0080,17, 0x48b0100,11, 0x48b0130,19, 0x48b0180,17, 0x48b0200,3, 0x48b0214,1, 0x48b021c,1, 0x48b0280,3, 0x48b0294,1, 0x48b029c,1, 0x48b0300,18, 0x48b0380,18, 0x48b0400,18, 0x48b0480,18, 0x48b0500,18, 0x48b0580,18, 0x48b0600,18, 0x48b0680,18, 0x48b0700,13, 0x48b0738,6, 0x48b0780,13, 0x48b07b8,6, 0x48b0800,1, 0x48b0808,22, 0x48b0880,1, 0x48b0894,13, 0x48b0900,3, 0x48b0910,3, 0x48b0920,3, 0x48b0940,3, 0x48b0954,1, 0x48b095c,1, 0x48b0a00,52, 0x48b0c00,4, 0x48b0d00,34, 0x48b0e00,4, 0x48b0e80,30, 0x48b0f00,1, 0x48b0f40,5, 0x48b0f60,5, 0x48b0f80,6, 0x48b1000,14, 0x48b1040,4, 0x48b1060,17, 0x48b10c0,6, 0x48b10e0,1, 0x48b10e8,2, 0x48b10f4,11, 0x48b1124,17, 0x48b1200,3, 0x48b1210,3, 0x48b1220,3, 0x48b1230,3, 0x48b1240,3, 0x48b1250,3, 0x48b2000,20, 0x48b2080,3, 0x48b2090,1, 0x48b2098,2, 0x48c0000,500, 0x48c0800,2, 0x48c0820,15, 0x48c1000,500, 0x48c1800,8, 0x48c1824,6, 0x48c1840,8, 0x48c1880,7, 0x48c18a0,7, 0x48c18c0,7, 0x48c18e0,7, 0x48c1900,8, 0x48c1924,16, 0x48c1980,12, 0x48c2000,500, 0x48c2800,2, 0x48c2820,15, 0x48c3000,500, 0x48c3800,8, 0x48c3824,6, 0x48c3840,8, 0x48c3880,7, 0x48c38a0,7, 0x48c38c0,7, 0x48c38e0,7, 0x48c3900,8, 0x48c3924,16, 0x48c3980,12, 0x48c4004,5, 0x48c4200,26, 0x48c4280,4, 0x48c42c0,25, 0x48c4340,6, 0x48c4360,1, 0x48c4368,2, 0x48c4374,11, 0x48c43a4,10, 0x48c4400,1, 0x48c8000,52, 0x48c8400,82, 0x48c8560,6, 0x48c8600,41, 0x48c8700,2, 0x48c8720,19, 0x48c8800,25, 0x48c8880,1, 0x48c8900,28, 0x48c8980,1, 0x48c9000,52, 0x48c9400,82, 0x48c9560,6, 0x48c9600,41, 0x48c9700,2, 0x48c9720,19, 0x48c9800,25, 0x48c9880,1, 0x48c9900,28, 0x48c9980,1, 0x48ca000,7, 0x48ca080,6, 0x48ca0a0,6, 0x48ca0c0,1, 0x48ca100,4, 0x48ca120,9, 0x48cc000,3, 0x48cc010,6, 0x48cc200,7, 0x48cc220,6, 0x48cc240,7, 0x48cc260,6, 0x48cc280,2, 0x48cc28c,2, 0x48cc2a0,2, 0x48cc2ac,2, 0x48cc2c0,7, 0x48cc2e0,7, 0x48cc300,2, 0x48cc30c,2, 0x48cc320,6, 0x48cc400,3, 0x48cc440,12, 0x48cc800,7, 0x48cc820,14, 0x48cc880,16, 0x48cc900,7, 0x48cc920,14, 0x48cc980,16, 0x48cca00,6, 0x48cca20,7, 0x48ccc00,3, 0x48e0000,3, 0x48e0800,7, 0x48e0820,6, 0x48e0840,6, 0x48e0880,1, 0x48e0894,1, 0x48e089c,2, 0x48e08c0,9, 0x48e0900,18, 0x48e0a00,36, 0x48e0b00,22, 0x48e0b80,18, 0x48e0c00,3, 0x48e0c10,3, 0x48e1000,3, 0x48e1010,2, 0x48e1080,20, 0x48e1100,1, 0x48e1200,26, 0x48e1280,4, 0x48e12c0,25, 0x48e1340,6, 0x48e1360,1, 0x48e1368,2, 0x48e1374,11, 0x48e13a4,4, 0x48e1400,1, 0x48f0000,11, 0x48f0030,19, 0x48f0080,17, 0x48f0100,11, 0x48f0130,19, 0x48f0180,17, 0x48f0200,3, 0x48f0214,1, 0x48f021c,1, 0x48f0280,3, 0x48f0294,1, 0x48f029c,1, 0x48f0300,18, 0x48f0380,18, 0x48f0400,18, 0x48f0480,18, 0x48f0500,18, 0x48f0580,18, 0x48f0600,18, 0x48f0680,18, 0x48f0700,13, 0x48f0738,6, 0x48f0780,13, 0x48f07b8,6, 0x48f0800,1, 0x48f0808,22, 0x48f0880,1, 0x48f0894,13, 0x48f0900,3, 0x48f0910,3, 0x48f0920,3, 0x48f0940,3, 0x48f0954,1, 0x48f095c,1, 0x48f0a00,52, 0x48f0c00,4, 0x48f0d00,34, 0x48f0e00,4, 0x48f0e80,30, 0x48f0f00,1, 0x48f0f40,5, 0x48f0f60,5, 0x48f0f80,6, 0x48f1000,14, 0x48f1040,4, 0x48f1060,17, 0x48f10c0,6, 0x48f10e0,1, 0x48f10e8,2, 0x48f10f4,11, 0x48f1124,17, 0x48f1200,3, 0x48f1210,3, 0x48f1220,3, 0x48f1230,3, 0x48f1240,3, 0x48f1250,3, 0x48f2000,20, 0x48f2080,3, 0x48f2090,1, 0x48f2098,2, 0x4900000,13, 0x4900038,4, 0x4900050,3, 0x4900060,3, 0x4900070,16, 0x49000c0,5, 0x4900400,14, 0x4900440,2, 0x490044c,3, 0x4900480,14, 0x49004c0,2, 0x49004cc,3, 0x4900500,1, 0x4900508,15, 0x4900560,2, 0x490056c,2, 0x4900600,4, 0x4900680,27, 0x4900800,2, 0x4900900,32, 0x4900984,2, 0x4900990,4, 0x4900a00,26, 0x4900a80,4, 0x4900ac0,25, 0x4900b40,6, 0x4900b60,1, 0x4900b68,2, 0x4900b74,11, 0x4900ba4,8, 0x4900c00,9, 0x4900c40,11, 0x4900c80,23, 0x4900ce0,15, 0x4900d20,15, 0x4900d60,1, 0x4901000,13, 0x4901038,4, 0x4901050,3, 0x4901060,3, 0x4901070,16, 0x49010c0,5, 0x4901400,14, 0x4901440,2, 0x490144c,3, 0x4901480,14, 0x49014c0,2, 0x49014cc,3, 0x4901500,1, 0x4901508,15, 0x4901560,2, 0x490156c,2, 0x4901600,4, 0x4901680,27, 0x4901800,2, 0x4901900,32, 0x4901984,2, 0x4901990,4, 0x4901a00,26, 0x4901a80,4, 0x4901ac0,25, 0x4901b40,6, 0x4901b60,1, 0x4901b68,2, 0x4901b74,11, 0x4901ba4,8, 0x4901c00,9, 0x4901c40,11, 0x4901c80,23, 0x4901ce0,15, 0x4901d20,15, 0x4901d60,1, 0x4902000,1, 0x4902100,36, 0x4902200,7, 0x4910000,22, 0x4910080,22, 0x4910100,12, 0x4910140,12, 0x4910200,52, 0x4910300,52, 0x4910400,11, 0x4910440,11, 0x4910480,3, 0x49104a0,6, 0x49104c0,6, 0x49104e0,3, 0x49104f0,3, 0x4910800,9, 0x4910840,15, 0x4910880,15, 0x49108c0,15, 0x4910900,1, 0x4910914,13, 0x4910980,17, 0x4911000,17, 0x4911080,17, 0x4911104,5, 0x4911120,3, 0x4911130,11, 0x4911200,31, 0x4911280,31, 0x4911300,12, 0x4911340,12, 0x4911380,2, 0x4911390,2, 0x49113a0,3, 0x49113b0,3, 0x49113c0,5, 0x49113e0,5, 0x4911400,3, 0x4911410,3, 0x4911420,3, 0x4911430,3, 0x4911440,3, 0x4911450,3, 0x4911460,7, 0x4911800,26, 0x4911880,4, 0x49118c0,25, 0x4911940,6, 0x4911960,1, 0x4911968,2, 0x4911974,11, 0x49119a4,12, 0x4911a00,4, 0x4911b00,43, 0x4911c00,4, 0x4911c20,7, 0x4911c40,3, 0x4911c50,1, 0x4911c60,3, 0x4911e00,32, 0x4911e84,1, 0x4911e90,4, 0x4911ea4,1, 0x4911eb4,14, 0x4911ef0,2, 0x4911f04,1, 0x4911f10,8, 0x4911f34,6, 0x4912000,3, 0x4912010,21, 0x4912080,1, 0x4912094,1, 0x491209c,5, 0x4912100,15, 0x4912140,1, 0x4912180,6, 0x4914000,22, 0x4914080,22, 0x4914100,12, 0x4914140,12, 0x4914200,52, 0x4914300,52, 0x4914400,11, 0x4914440,11, 0x4914480,3, 0x49144a0,6, 0x49144c0,6, 0x49144e0,3, 0x49144f0,3, 0x4914800,9, 0x4914840,15, 0x4914880,15, 0x49148c0,15, 0x4914900,1, 0x4914914,13, 0x4914980,17, 0x4915000,17, 0x4915080,17, 0x4915104,5, 0x4915120,3, 0x4915130,11, 0x4915200,31, 0x4915280,31, 0x4915300,12, 0x4915340,12, 0x4915380,2, 0x4915390,2, 0x49153a0,3, 0x49153b0,3, 0x49153c0,5, 0x49153e0,5, 0x4915400,3, 0x4915410,3, 0x4915420,3, 0x4915430,3, 0x4915440,3, 0x4915450,3, 0x4915460,7, 0x4915800,26, 0x4915880,4, 0x49158c0,25, 0x4915940,6, 0x4915960,1, 0x4915968,2, 0x4915974,11, 0x49159a4,12, 0x4915a00,4, 0x4915b00,43, 0x4915c00,4, 0x4915c20,7, 0x4915c40,3, 0x4915c50,1, 0x4915c60,3, 0x4915e00,32, 0x4915e84,1, 0x4915e90,4, 0x4915ea4,1, 0x4915eb4,14, 0x4915ef0,2, 0x4915f04,1, 0x4915f10,8, 0x4915f34,6, 0x4916000,3, 0x4916010,21, 0x4916080,1, 0x4916094,1, 0x491609c,5, 0x4916100,15, 0x4916140,1, 0x4916180,6, 0x4918000,100, 0x4918200,3, 0x4918210,5, 0x4920000,12, 0x4920040,2, 0x4920050,3, 0x4922000,1006, 0x4923000,31, 0x4923084,6, 0x4924004,1, 0x492400c,3, 0x4924200,23, 0x4924280,23, 0x4924300,1, 0x4924400,1, 0x4924800,122, 0x4924a00,122, 0x4924c04,63, 0x4924d04,1, 0x4924d10,5, 0x4924d40,6, 0x4924d60,5, 0x4926000,1, 0x4926100,1, 0x4926108,3, 0x4926120,2, 0x4926134,8, 0x4926160,2, 0x4926174,8, 0x49261a0,4, 0x4926200,54, 0x4926800,5, 0x4926820,2, 0x4926834,1, 0x492683c,1, 0x4926a00,24, 0x4926a80,24, 0x4926b00,1, 0x4926c00,6, 0x4926c24,5, 0x4926c40,16, 0x4927000,1, 0x4927020,5, 0x4927040,1, 0x4927048,2, 0x4927080,1, 0x4927100,4, 0x4927180,24, 0x4927200,4, 0x4927280,27, 0x4927300,2, 0x492730c,3, 0x4928004,1, 0x492800c,3, 0x4928020,1, 0x4928100,2, 0x4928110,3, 0x4928120,2, 0x4928140,10, 0x4928180,13, 0x4928200,2, 0x4928210,3, 0x4928220,2, 0x4928240,10, 0x4928280,13, 0x4928400,14, 0x4928440,3, 0x4928450,3, 0x4928460,1, 0x4928500,36, 0x4928600,10, 0x4928640,5, 0x4928660,5, 0x4928700,27, 0x4928780,7, 0x49287a0,8, 0x4928800,27, 0x4928880,7, 0x49288a0,8, 0x4928900,27, 0x4928980,7, 0x49289a0,8, 0x4928a00,27, 0x4928a80,7, 0x4928aa0,8, 0x4928b00,48, 0x4928bc4,8, 0x4928bf0,30, 0x4928c80,4, 0x4928cc0,25, 0x4928d40,6, 0x4928d60,1, 0x4928d68,2, 0x4928d74,3, 0x4928e00,8, 0x4928e24,28, 0x4929000,4, 0x4929080,23, 0x4929100,14, 0x4929140,9, 0x4929200,10, 0x4929230,3, 0x4929240,5, 0x4929260,5, 0x4929280,9, 0x4929400,67, 0x4929600,10, 0x4930000,12, 0x4930040,2, 0x4930050,3, 0x4932000,1006, 0x4933000,31, 0x4933084,6, 0x4934004,1, 0x493400c,3, 0x4934200,23, 0x4934280,23, 0x4934300,1, 0x4934400,1, 0x4934800,122, 0x4934a00,122, 0x4934c04,63, 0x4934d04,1, 0x4934d10,5, 0x4934d40,6, 0x4934d60,5, 0x4936000,1, 0x4936100,1, 0x4936108,3, 0x4936120,2, 0x4936134,8, 0x4936160,2, 0x4936174,8, 0x49361a0,4, 0x4936200,54, 0x4936800,5, 0x4936820,2, 0x4936834,1, 0x493683c,1, 0x4936a00,24, 0x4936a80,24, 0x4936b00,1, 0x4936c00,6, 0x4936c24,5, 0x4936c40,16, 0x4937000,1, 0x4937020,5, 0x4937040,1, 0x4937048,2, 0x4937080,1, 0x4937100,4, 0x4937180,24, 0x4937200,4, 0x4937280,27, 0x4937300,2, 0x493730c,3, 0x4938004,1, 0x493800c,3, 0x4938020,1, 0x4938100,2, 0x4938110,3, 0x4938120,2, 0x4938140,10, 0x4938180,13, 0x4938200,2, 0x4938210,3, 0x4938220,2, 0x4938240,10, 0x4938280,13, 0x4938400,14, 0x4938440,3, 0x4938450,3, 0x4938460,1, 0x4938500,36, 0x4938600,10, 0x4938640,5, 0x4938660,5, 0x4938700,27, 0x4938780,7, 0x49387a0,8, 0x4938800,27, 0x4938880,7, 0x49388a0,8, 0x4938900,27, 0x4938980,7, 0x49389a0,8, 0x4938a00,27, 0x4938a80,7, 0x4938aa0,8, 0x4938b00,48, 0x4938bc4,8, 0x4938bf0,30, 0x4938c80,4, 0x4938cc0,25, 0x4938d40,6, 0x4938d60,1, 0x4938d68,2, 0x4938d74,3, 0x4938e00,8, 0x4938e24,28, 0x4939000,4, 0x4939080,23, 0x4939100,14, 0x4939140,9, 0x4939200,10, 0x4939230,3, 0x4939240,5, 0x4939260,5, 0x4939280,9, 0x4939400,67, 0x4939600,10, 0x5000000,22, 0x5000060,6, 0x5000080,6, 0x50000a0,6, 0x50000c0,6, 0x5000400,1, 0x500040c,5, 0x5000444,1, 0x5000454,5, 0x5000600,128, 0x5000804,1, 0x5000828,86, 0x5000984,1, 0x5000c00,1, 0x5000c80,1, 0x5000c90,2, 0x5000d00,20, 0x5000d80,1, 0x5000da0,3, 0x5000e00,2, 0x5000e10,4, 0x5800000,20, 0x5800800,10, 0x5800880,3, 0x5800900,2, 0x5800910,4, 0x5800980,1, 0x5801000,20, 0x5801800,10, 0x5801880,3, 0x5801900,2, 0x5801910,4, 0x5801980,1, 0x5802000,36, 0x5802800,10, 0x5802880,3, 0x5802900,2, 0x5802910,4, 0x5802980,1, 0x5803000,36, 0x5803800,10, 0x5803880,3, 0x5803900,2, 0x5803910,4, 0x5803980,1, 0x5804000,36, 0x5804800,10, 0x5804880,3, 0x5804900,2, 0x5804910,4, 0x5804980,1, 0x5805000,36, 0x5805800,10, 0x5805880,3, 0x5805900,2, 0x5805910,4, 0x5805980,1, 0x5806000,36, 0x5806800,10, 0x5806880,3, 0x5806900,2, 0x5806910,4, 0x5806980,1, 0x5807000,36, 0x5807800,10, 0x5807880,3, 0x5807900,2, 0x5807910,4, 0x5807980,1, 0x5808000,36, 0x5808800,10, 0x5808880,3, 0x5808900,2, 0x5808910,4, 0x5808980,1, 0x5809000,36, 0x5809800,10, 0x5809880,3, 0x5809900,2, 0x5809910,4, 0x5809980,1, 0x580a000,36, 0x580a800,10, 0x580a880,3, 0x580a900,2, 0x580a910,4, 0x580a980,1, 0x580b000,36, 0x580b800,10, 0x580b880,3, 0x580b900,2, 0x580b910,4, 0x580b980,1, 0x580c000,36, 0x580c800,10, 0x580c880,3, 0x580c900,2, 0x580c910,4, 0x580c980,1, 0x580d000,36, 0x580d800,10, 0x580d880,3, 0x580d900,2, 0x580d910,4, 0x580d980,1, 0x580e000,36, 0x580e800,10, 0x580e880,3, 0x580e900,2, 0x580e910,4, 0x580e980,1, 0x580f000,36, 0x580f800,10, 0x580f880,3, 0x580f900,2, 0x580f910,4, 0x580f980,1, 0x5810000,36, 0x5810800,10, 0x5810880,3, 0x5810900,2, 0x5810910,4, 0x5810980,1, 0x5811000,36, 0x5811800,10, 0x5811880,3, 0x5811900,2, 0x5811910,4, 0x5811980,1, 0x5812000,36, 0x5812800,10, 0x5812880,3, 0x5812900,2, 0x5812910,4, 0x5812980,1, 0x5813000,36, 0x5813800,10, 0x5813880,3, 0x5813900,2, 0x5813910,4, 0x5813980,1, 0x5814000,36, 0x5814800,10, 0x5814880,3, 0x5814900,2, 0x5814910,4, 0x5814980,1, 0x5815000,36, 0x5815800,10, 0x5815880,3, 0x5815900,2, 0x5815910,4, 0x5815980,1, 0x5816000,36, 0x5816800,10, 0x5816880,3, 0x5816900,2, 0x5816910,4, 0x5816980,1, 0x5817000,36, 0x5817800,10, 0x5817880,3, 0x5817900,2, 0x5817910,4, 0x5817980,1, 0x5818000,36, 0x5818800,10, 0x5818880,3, 0x5818900,2, 0x5818910,4, 0x5818980,1, 0x5819000,36, 0x5819800,10, 0x5819880,3, 0x5819900,2, 0x5819910,4, 0x5819980,1, 0x581a000,36, 0x581a800,10, 0x581a880,3, 0x581a900,2, 0x581a910,4, 0x581a980,1, 0x581b000,36, 0x581b800,10, 0x581b880,3, 0x581b900,2, 0x581b910,4, 0x581b980,1, 0x581c000,36, 0x581c800,10, 0x581c880,3, 0x581c900,2, 0x581c910,4, 0x581c980,1, 0x581d000,36, 0x581d800,10, 0x581d880,3, 0x581d900,2, 0x581d910,4, 0x581d980,1, 0x581e000,36, 0x581e800,10, 0x581e880,3, 0x581e900,2, 0x581e910,4, 0x581e980,1, 0x581f000,36, 0x581f800,10, 0x581f880,3, 0x581f900,2, 0x581f910,4, 0x581f980,1, 0x5820000,36, 0x5820800,10, 0x5820880,3, 0x5820900,2, 0x5820910,4, 0x5820980,1, 0x5821000,36, 0x5821800,10, 0x5821880,3, 0x5821900,2, 0x5821910,4, 0x5821980,1, 0x5822000,36, 0x5822800,10, 0x5822880,3, 0x5822900,2, 0x5822910,4, 0x5822980,1, 0x5823000,36, 0x5823800,10, 0x5823880,3, 0x5823900,2, 0x5823910,4, 0x5823980,1, 0x5824000,36, 0x5824800,10, 0x5824880,3, 0x5824900,2, 0x5824910,4, 0x5824980,1, 0x5825000,36, 0x5825800,10, 0x5825880,3, 0x5825900,2, 0x5825910,4, 0x5825980,1, 0x5826000,36, 0x5826800,10, 0x5826880,3, 0x5826900,2, 0x5826910,4, 0x5826980,1, 0x5827000,36, 0x5827800,10, 0x5827880,3, 0x5827900,2, 0x5827910,4, 0x5827980,1, 0x5828000,36, 0x5828800,10, 0x5828880,3, 0x5828900,2, 0x5828910,4, 0x5828980,1, 0x5829000,36, 0x5829800,10, 0x5829880,3, 0x5829900,2, 0x5829910,4, 0x5829980,1, 0x582a000,36, 0x582a800,10, 0x582a880,3, 0x582a900,2, 0x582a910,4, 0x582a980,1, 0x582b000,36, 0x582b800,10, 0x582b880,3, 0x582b900,2, 0x582b910,4, 0x582b980,1, 0x582c000,36, 0x582c800,10, 0x582c880,3, 0x582c900,2, 0x582c910,4, 0x582c980,1, 0x582d000,36, 0x582d800,10, 0x582d880,3, 0x582d900,2, 0x582d910,4, 0x582d980,1, 0x582e000,36, 0x582e800,10, 0x582e880,3, 0x582e900,2, 0x582e910,4, 0x582e980,1, 0x582f000,36, 0x582f800,10, 0x582f880,3, 0x582f900,2, 0x582f910,4, 0x582f980,1, 0x5830000,36, 0x5830800,10, 0x5830880,3, 0x5830900,2, 0x5830910,4, 0x5830980,1, 0x5831000,36, 0x5831800,10, 0x5831880,3, 0x5831900,2, 0x5831910,4, 0x5831980,1, 0x5832000,36, 0x5832800,10, 0x5832880,3, 0x5832900,2, 0x5832910,4, 0x5832980,1, 0x5833000,36, 0x5833800,10, 0x5833880,3, 0x5833900,2, 0x5833910,4, 0x5833980,1, 0x5834000,36, 0x5834800,10, 0x5834880,3, 0x5834900,2, 0x5834910,4, 0x5834980,1, 0x5835000,36, 0x5835800,10, 0x5835880,3, 0x5835900,2, 0x5835910,4, 0x5835980,1, 0x5836000,36, 0x5836800,10, 0x5836880,3, 0x5836900,2, 0x5836910,4, 0x5836980,1, 0x5837000,36, 0x5837800,10, 0x5837880,3, 0x5837900,2, 0x5837910,4, 0x5837980,1, 0x5838000,36, 0x5838800,10, 0x5838880,3, 0x5838900,2, 0x5838910,4, 0x5838980,1, 0x5839000,36, 0x5839800,10, 0x5839880,3, 0x5839900,2, 0x5839910,4, 0x5839980,1, 0x583a000,36, 0x583a800,10, 0x583a880,3, 0x583a900,2, 0x583a910,4, 0x583a980,1, 0x583b000,36, 0x583b800,10, 0x583b880,3, 0x583b900,2, 0x583b910,4, 0x583b980,1, 0x583c000,36, 0x583c800,10, 0x583c880,3, 0x583c900,2, 0x583c910,4, 0x583c980,1, 0x583d000,36, 0x583d800,10, 0x583d880,3, 0x583d900,2, 0x583d910,4, 0x583d980,1, 0x583e000,36, 0x583e800,10, 0x583e880,3, 0x583e900,2, 0x583e910,4, 0x583e980,1, 0x583f000,36, 0x583f800,10, 0x583f880,3, 0x583f900,2, 0x583f910,4, 0x583f980,1, 0x5840000,36, 0x5840800,10, 0x5840880,3, 0x5840900,2, 0x5840910,4, 0x5840980,1, 0x5841000,36, 0x5841800,10, 0x5841880,3, 0x5841900,2, 0x5841910,4, 0x5841980,1, 0x5842000,36, 0x5842800,10, 0x5842880,3, 0x5842900,2, 0x5842910,4, 0x5842980,1, 0x5843000,36, 0x5843800,10, 0x5843880,3, 0x5843900,2, 0x5843910,4, 0x5843980,1, 0x5844000,36, 0x5844800,10, 0x5844880,3, 0x5844900,2, 0x5844910,4, 0x5844980,1, 0x5845000,36, 0x5845800,10, 0x5845880,3, 0x5845900,2, 0x5845910,4, 0x5845980,1, 0x5846000,20, 0x5846800,10, 0x5846880,2, 0x5846890,4, 0x5846900,1, 0x5847000,20, 0x5847800,10, 0x5847880,2, 0x5847890,4, 0x5847900,1, 0x5848000,20, 0x5848800,10, 0x5848880,2, 0x5848890,4, 0x5848900,1, 0x5849000,20, 0x5849800,10, 0x5849880,2, 0x5849890,4, 0x5849900,1, 0x584a000,20, 0x584a800,10, 0x584a880,2, 0x584a890,4, 0x584a900,1, 0x584b000,20, 0x584b800,10, 0x584b880,2, 0x584b890,4, 0x584b900,1, 0x584c000,20, 0x584c800,10, 0x584c880,2, 0x584c890,4, 0x584c900,1, 0x584d000,20, 0x584d800,10, 0x584d880,2, 0x584d890,4, 0x584d900,1, 0x584e000,20, 0x584e800,10, 0x584e880,2, 0x584e890,4, 0x584e900,1, 0x584f000,20, 0x584f800,10, 0x584f880,2, 0x584f890,4, 0x584f900,1, 0x5850000,20, 0x5850800,10, 0x5850880,2, 0x5850890,4, 0x5850900,1, 0x5851000,20, 0x5851800,10, 0x5851880,2, 0x5851890,4, 0x5851900,1, 0x5852000,20, 0x5852800,10, 0x5852880,2, 0x5852890,4, 0x5852900,1, 0x5853000,20, 0x5853800,10, 0x5853880,2, 0x5853890,4, 0x5853900,1, 0x5854000,20, 0x5854800,10, 0x5854880,2, 0x5854890,4, 0x5854900,1, 0x5855000,20, 0x5855800,10, 0x5855880,2, 0x5855890,4, 0x5855900,1, 0x5856000,20, 0x5856800,10, 0x5856880,2, 0x5856890,4, 0x5856900,1, 0x5857000,20, 0x5857800,10, 0x5857880,2, 0x5857890,4, 0x5857900,1, 0x5858000,20, 0x5858800,10, 0x5858880,2, 0x5858890,4, 0x5858900,1, 0x5859000,20, 0x5859800,10, 0x5859880,2, 0x5859890,4, 0x5859900,1, 0x585a000,20, 0x585a800,10, 0x585a880,2, 0x585a890,4, 0x585a900,1, 0x585b000,20, 0x585b800,10, 0x585b880,2, 0x585b890,4, 0x585b900,1, 0x585c000,20, 0x585c800,10, 0x585c880,2, 0x585c890,4, 0x585c900,1, 0x585d000,20, 0x585d800,10, 0x585d880,2, 0x585d890,4, 0x585d900,1, 0x585e000,20, 0x585e800,10, 0x585e880,2, 0x585e890,4, 0x585e900,1, 0x585f000,20, 0x585f800,10, 0x585f880,2, 0x585f890,4, 0x585f900,1, 0x5860000,20, 0x5860800,10, 0x5860880,2, 0x5860890,4, 0x5860900,1, 0x5861000,20, 0x5861800,10, 0x5861880,2, 0x5861890,4, 0x5861900,1, 0x5862000,20, 0x5862800,10, 0x5862880,2, 0x5862890,4, 0x5862900,1, 0x5863000,20, 0x5863800,10, 0x5863880,2, 0x5863890,4, 0x5863900,1, 0x5864000,20, 0x5864800,10, 0x5864880,2, 0x5864890,4, 0x5864900,1, 0x5865000,20, 0x5865800,10, 0x5865880,2, 0x5865890,4, 0x5865900,1, 0x5866000,20, 0x5866800,10, 0x5866880,2, 0x5866890,4, 0x5866900,1, 0x5867000,20, 0x5867800,10, 0x5867880,2, 0x5867890,4, 0x5867900,1, 0x5868000,20, 0x5868800,10, 0x5868880,3, 0x5868900,2, 0x5868910,4, 0x5868980,1, 0x5869000,20, 0x5869800,10, 0x5869880,3, 0x5869900,2, 0x5869910,4, 0x5869980,1, 0x586a000,20, 0x586a800,10, 0x586a880,3, 0x586a900,2, 0x586a910,4, 0x586a980,1, 0x586b000,20, 0x586b800,10, 0x586b880,3, 0x586b900,2, 0x586b910,4, 0x586b980,1, 0x586c000,20, 0x586c800,10, 0x586c880,3, 0x586c900,2, 0x586c910,4, 0x586c980,1, 0x586d000,20, 0x586d800,10, 0x586d880,3, 0x586d900,2, 0x586d910,4, 0x586d980,1, 0x586e000,20, 0x586e800,10, 0x586e880,3, 0x586e900,2, 0x586e910,4, 0x586e980,1, 0x586f000,20, 0x586f800,10, 0x586f880,3, 0x586f900,2, 0x586f910,4, 0x586f980,1, 0x5870000,20, 0x5870800,10, 0x5870880,3, 0x5870900,2, 0x5870910,4, 0x5870980,1, 0x5871000,20, 0x5871800,10, 0x5871880,3, 0x5871900,2, 0x5871910,4, 0x5871980,1, 0x5872000,20, 0x5872800,10, 0x5872880,3, 0x5872900,2, 0x5872910,4, 0x5872980,1, 0x5873000,20, 0x5873800,10, 0x5873880,3, 0x5873900,2, 0x5873910,4, 0x5873980,1, 0x5874000,20, 0x5874800,10, 0x5874880,3, 0x5874900,2, 0x5874910,4, 0x5874980,1, 0x5875000,20, 0x5875800,10, 0x5875880,3, 0x5875900,2, 0x5875910,4, 0x5875980,1, 0x5876000,20, 0x5876800,10, 0x5876880,3, 0x5876900,2, 0x5876910,4, 0x5876980,1, 0x5877000,20, 0x5877800,10, 0x5877880,3, 0x5877900,2, 0x5877910,4, 0x5877980,1, 0x5878000,20, 0x5878800,10, 0x5878880,3, 0x5878900,2, 0x5878910,4, 0x5878980,1, 0x5879000,20, 0x5879800,10, 0x5879880,3, 0x5879900,2, 0x5879910,4, 0x5879980,1, 0x587a000,20, 0x587a800,10, 0x587a880,3, 0x587a900,2, 0x587a910,4, 0x587a980,1, 0x587b000,20, 0x587b800,10, 0x587b880,3, 0x587b900,2, 0x587b910,4, 0x587b980,1, 0x587c000,20, 0x587c800,10, 0x587c880,3, 0x587c900,2, 0x587c910,4, 0x587c980,1, 0x587d000,20, 0x587d800,10, 0x587d880,3, 0x587d900,2, 0x587d910,4, 0x587d980,1, 0x587e000,20, 0x587e800,10, 0x587e880,3, 0x587e900,2, 0x587e910,4, 0x587e980,1, 0x587f000,20, 0x587f800,10, 0x587f880,3, 0x587f900,2, 0x587f910,4, 0x587f980,1, 0x5880000,20, 0x5880800,10, 0x5880880,3, 0x5880900,2, 0x5880910,4, 0x5880980,1, 0x5881000,20, 0x5881800,10, 0x5881880,3, 0x5881900,2, 0x5881910,4, 0x5881980,1, 0x5882000,20, 0x5882800,10, 0x5882880,3, 0x5882900,2, 0x5882910,4, 0x5882980,1, 0x5883000,20, 0x5883800,10, 0x5883880,3, 0x5883900,2, 0x5883910,4, 0x5883980,1, 0x5884000,20, 0x5884800,10, 0x5884880,3, 0x5884900,2, 0x5884910,4, 0x5884980,1, 0x5885000,20, 0x5885800,10, 0x5885880,3, 0x5885900,2, 0x5885910,4, 0x5885980,1, 0x5886000,20, 0x5886800,10, 0x5886880,3, 0x5886900,2, 0x5886910,4, 0x5886980,1, 0x5887000,20, 0x5887800,10, 0x5887880,3, 0x5887900,2, 0x5887910,4, 0x5887980,1, 0x5888000,20, 0x5888800,10, 0x5888880,3, 0x5888900,2, 0x5888910,4, 0x5888980,1, 0x5889000,20, 0x5889800,10, 0x5889880,3, 0x5889900,2, 0x5889910,4, 0x5889980,1, 0x588a000,20, 0x588a800,10, 0x588a880,3, 0x588a900,2, 0x588a910,4, 0x588a980,1, 0x588b000,20, 0x588b800,1, 0x588c000,20, 0x588c800,1, 0x588d000,20, 0x588d800,10, 0x588d880,3, 0x588d900,2, 0x588d910,4, 0x588d980,1, 0x588e000,20, 0x588e800,1, 0x588f000,20, 0x588f800,1, 0x5890000,20, 0x5890800,10, 0x5890880,3, 0x5890900,2, 0x5890910,4, 0x5890980,1, 0x5891000,20, 0x5891800,1, 0x5892000,20, 0x5892800,1, 0x5893000,20, 0x5893800,10, 0x5893880,3, 0x5893900,2, 0x5893910,4, 0x5893980,1, 0x5894000,20, 0x5894800,1, 0x5895000,20, 0x5895800,1, 0x5896000,20, 0x5896800,10, 0x5896880,3, 0x5896900,2, 0x5896910,4, 0x5896980,1, 0x5897000,20, 0x5897800,1, 0x5898000,20, 0x5898800,1, 0x5899000,20, 0x5899800,10, 0x5899880,3, 0x5899900,2, 0x5899910,4, 0x5899980,1, 0x589a000,20, 0x589a800,1, 0x589b000,20, 0x589b800,1, 0x589c000,20, 0x589c800,10, 0x589c880,3, 0x589c900,2, 0x589c910,4, 0x589c980,1, 0x589d000,20, 0x589d800,1, 0x589e000,20, 0x589e800,1, 0x589f000,20, 0x589f800,10, 0x589f880,3, 0x589f900,2, 0x589f910,4, 0x589f980,1, 0x58a0000,20, 0x58a0800,1, 0x58a1000,20, 0x58a1800,1, 0x58a2000,20, 0x58a2800,10, 0x58a2880,3, 0x58a2900,2, 0x58a2910,4, 0x58a2980,1, 0x58a3000,20, 0x58a3800,1, 0x58a4000,20, 0x58a4800,1, 0x58a5000,20, 0x58a5800,10, 0x58a5880,3, 0x58a5900,2, 0x58a5910,4, 0x58a5980,1, 0x58a6000,20, 0x58a6800,1, 0x58a7000,20, 0x58a7800,1, 0x58a8000,20, 0x58a8800,10, 0x58a8880,3, 0x58a8900,2, 0x58a8910,4, 0x58a8980,1, 0x58a9000,20, 0x58a9800,1, 0x58aa000,20, 0x58aa800,1, 0x58ab000,20, 0x58ab800,10, 0x58ab880,3, 0x58ab900,2, 0x58ab910,4, 0x58ab980,1, 0x58ac000,20, 0x58ac800,1, 0x58ad000,20, 0x58ad800,1, 0x58ae000,20, 0x58ae800,10, 0x58ae880,3, 0x58ae900,2, 0x58ae910,4, 0x58ae980,1, 0x58af000,20, 0x58af800,1, 0x58b0000,20, 0x58b0800,1, 0x58b1000,20, 0x58b1800,10, 0x58b1880,3, 0x58b1900,2, 0x58b1910,4, 0x58b1980,1, 0x58b2000,20, 0x58b2800,1, 0x58b3000,20, 0x58b3800,1, 0x58b4000,20, 0x58b4800,10, 0x58b4880,3, 0x58b4900,2, 0x58b4910,4, 0x58b4980,1, 0x58b5000,20, 0x58b5800,1, 0x58b6000,20, 0x58b6800,1, 0x58b7000,20, 0x58b7800,10, 0x58b7880,3, 0x58b7900,2, 0x58b7910,4, 0x58b7980,1, 0x58b8000,20, 0x58b8800,1, 0x58b9000,20, 0x58b9800,1, 0x58ba000,20, 0x58ba800,10, 0x58ba880,3, 0x58ba900,2, 0x58ba910,4, 0x58ba980,1, 0x58bb000,20, 0x58bb800,1, 0x58bc000,20, 0x58bc800,1, 0x58bd000,20, 0x58bd800,10, 0x58bd880,3, 0x58bd900,2, 0x58bd910,4, 0x58bd980,1, 0x58be000,20, 0x58be800,1, 0x58bf000,20, 0x58bf800,1, 0x58c0000,20, 0x58c0800,10, 0x58c0880,3, 0x58c0900,2, 0x58c0910,4, 0x58c0980,1, 0x58c1000,20, 0x58c1800,1, 0x58c2000,20, 0x58c2800,1, 0x58c3000,20, 0x58c3800,10, 0x58c3880,3, 0x58c3900,2, 0x58c3910,4, 0x58c3980,1, 0x58c4000,20, 0x58c4800,1, 0x58c5000,20, 0x58c5800,1, 0x58c6000,20, 0x58c6800,10, 0x58c6880,3, 0x58c6900,2, 0x58c6910,4, 0x58c6980,1, 0x58c7000,20, 0x58c7800,1, 0x58c8000,20, 0x58c8800,1, 0x58c9000,20, 0x58c9800,10, 0x58c9880,3, 0x58c9900,2, 0x58c9910,4, 0x58c9980,1, 0x58ca000,20, 0x58ca800,1, 0x58cb000,20, 0x58cb800,1, 0x58cc000,20, 0x58cc800,10, 0x58cc880,3, 0x58cc900,2, 0x58cc910,4, 0x58cc980,1, 0x58cd000,20, 0x58cd800,1, 0x58ce000,20, 0x58ce800,1, 0x58cf000,20, 0x58cf800,10, 0x58cf880,3, 0x58cf900,2, 0x58cf910,4, 0x58cf980,1, 0x58d0000,20, 0x58d0800,1, 0x58d1000,20, 0x58d1800,1, 0x58d2000,20, 0x58d2800,10, 0x58d2880,3, 0x58d2900,2, 0x58d2910,4, 0x58d2980,1, 0x58d3000,20, 0x58d3800,1, 0x58d4000,20, 0x58d4800,1, 0x58d5000,20, 0x58d5800,10, 0x58d5880,3, 0x58d5900,2, 0x58d5910,4, 0x58d5980,1, 0x58d6000,20, 0x58d6800,1, 0x58d7000,20, 0x58d7800,1, 0x58d8000,20, 0x58d8800,10, 0x58d8880,3, 0x58d8900,2, 0x58d8910,4, 0x58d8980,1, 0x58d9000,20, 0x58d9800,1, 0x58da000,20, 0x58da800,1, 0x58db000,20, 0x58db800,10, 0x58db880,3, 0x58db900,2, 0x58db910,4, 0x58db980,1, 0x58dc000,20, 0x58dc800,1, 0x58dd000,20, 0x58dd800,1, 0x58de000,20, 0x58de800,10, 0x58de880,3, 0x58de900,2, 0x58de910,4, 0x58de980,1, 0x58df000,20, 0x58df800,1, 0x58e0000,20, 0x58e0800,1, 0x58e1000,20, 0x58e1800,10, 0x58e1880,3, 0x58e1900,2, 0x58e1910,4, 0x58e1980,1, 0x58e2000,20, 0x58e2800,1, 0x58e3000,20, 0x58e3800,1, 0x58e4000,20, 0x58e4800,10, 0x58e4880,3, 0x58e4900,2, 0x58e4910,4, 0x58e4980,1, 0x58e5000,20, 0x58e5800,1, 0x58e6000,20, 0x58e6800,1, 0x58e7000,20, 0x58e7800,10, 0x58e7880,3, 0x58e7900,2, 0x58e7910,4, 0x58e7980,1, 0x58e8000,20, 0x58e8800,1, 0x58e9000,20, 0x58e9800,1, 0x58ea000,20, 0x58ea800,10, 0x58ea880,3, 0x58ea900,2, 0x58ea910,4, 0x58ea980,1, 0x58eb000,20, 0x58eb800,1, 0x58ec000,20, 0x58ec800,1, 0x58ed000,20, 0x58ed800,10, 0x58ed880,3, 0x58ed900,2, 0x58ed910,4, 0x58ed980,1, 0x58ee000,20, 0x58ee800,1, 0x58ef000,20, 0x58ef800,1, 0x58f0000,20, 0x58f0800,10, 0x58f0880,3, 0x58f0900,2, 0x58f0910,4, 0x58f0980,1, 0x58f1000,20, 0x58f1800,1, 0x58f2000,20, 0x58f2800,1, 0x58f3000,20, 0x58f3800,10, 0x58f3880,3, 0x58f3900,2, 0x58f3910,4, 0x58f3980,1, 0x58f4000,20, 0x58f4800,1, 0x58f5000,20, 0x58f5800,1, 0x58f6000,20, 0x58f6800,10, 0x58f6880,3, 0x58f6900,2, 0x58f6910,4, 0x58f6980,1, 0x58f7000,20, 0x58f7800,1, 0x58f8000,20, 0x58f8800,1, 0x58f9000,20, 0x58f9800,10, 0x58f9880,3, 0x58f9900,2, 0x58f9910,4, 0x58f9980,1, 0x58fa000,20, 0x58fa800,1, 0x58fb000,20, 0x58fb800,1, 0x58fc000,20, 0x58fc800,10, 0x58fc880,3, 0x58fc900,2, 0x58fc910,4, 0x58fc980,1, 0x58fd000,20, 0x58fd800,1, 0x58fe000,20, 0x58fe800,1, 0x58ff000,20, 0x58ff800,10, 0x58ff880,3, 0x58ff900,2, 0x58ff910,4, 0x58ff980,1, 0x5900000,20, 0x5900800,1, 0x5901000,20, 0x5901800,1, 0x5902000,20, 0x5902800,10, 0x5902880,3, 0x5902900,2, 0x5902910,4, 0x5902980,1, 0x5903000,20, 0x5903800,1, 0x5904000,20, 0x5904800,1, 0x5905000,20, 0x5905800,10, 0x5905880,3, 0x5905900,2, 0x5905910,4, 0x5905980,1, 0x5906000,20, 0x5906800,1, 0x5907000,20, 0x5907800,1, 0x5908000,20, 0x5908800,10, 0x5908880,3, 0x5908900,2, 0x5908910,4, 0x5908980,1, 0x5909000,20, 0x5909800,1, 0x590a000,20, 0x590a800,1, 0x590b000,20, 0x590b800,10, 0x590b880,3, 0x590b900,2, 0x590b910,4, 0x590b980,1, 0x590c000,20, 0x590c800,1, 0x590d000,20, 0x590d800,1, 0x590e000,20, 0x590e800,10, 0x590e880,3, 0x590e900,2, 0x590e910,4, 0x590e980,1, 0x590f000,20, 0x590f800,1, 0x5910000,20, 0x5910800,1, 0x5911000,20, 0x5911800,10, 0x5911880,3, 0x5911900,2, 0x5911910,4, 0x5911980,1, 0x5912000,20, 0x5912800,1, 0x5913000,20, 0x5913800,1, 0x5914000,20, 0x5914800,10, 0x5914880,3, 0x5914900,2, 0x5914910,4, 0x5914980,1, 0x5915000,20, 0x5915800,1, 0x5916000,20, 0x5916800,1, 0x5917000,20, 0x5917800,10, 0x5917880,3, 0x5917900,2, 0x5917910,4, 0x5917980,1, 0x5918000,20, 0x5918800,1, 0x5919000,20, 0x5919800,1, 0x591a000,20, 0x591a800,10, 0x591a880,3, 0x591a900,2, 0x591a910,4, 0x591a980,1, 0x591b000,20, 0x591b800,1, 0x591c000,20, 0x591c800,1, 0x591d000,20, 0x591d800,10, 0x591d880,3, 0x591d900,2, 0x591d910,4, 0x591d980,1, 0x591e000,20, 0x591e800,1, 0x591f000,20, 0x591f800,1, 0x5920000,20, 0x5920800,10, 0x5920880,3, 0x5920900,2, 0x5920910,4, 0x5920980,1, 0x5921000,20, 0x5921800,1, 0x5922000,20, 0x5922800,1, 0x5923000,20, 0x5923800,10, 0x5923880,3, 0x5923900,2, 0x5923910,4, 0x5923980,1, 0x5924000,20, 0x5924800,1, 0x5925000,20, 0x5925800,1, 0x5926000,20, 0x5926800,10, 0x5926880,3, 0x5926900,2, 0x5926910,4, 0x5926980,1, 0x5927000,20, 0x5927800,1, 0x5928000,20, 0x5928800,1, 0x5929000,20, 0x5929800,10, 0x5929880,3, 0x5929900,2, 0x5929910,4, 0x5929980,1, 0x592a000,20, 0x592a800,1, 0x592b000,20, 0x592b800,1, 0x592c000,20, 0x592c800,10, 0x592c880,3, 0x592c900,2, 0x592c910,4, 0x592c980,1, 0x592d000,20, 0x592d800,1, 0x592e000,20, 0x592e800,1, 0x592f000,20, 0x592f800,10, 0x592f880,3, 0x592f900,2, 0x592f910,4, 0x592f980,1, 0x5930000,20, 0x5930800,1, 0x5931000,20, 0x5931800,1, 0x5932000,20, 0x5932800,10, 0x5932880,3, 0x5932900,2, 0x5932910,4, 0x5932980,1, 0x5933000,20, 0x5933800,1, 0x5934000,20, 0x5934800,1, 0x5935000,20, 0x5935800,10, 0x5935880,3, 0x5935900,2, 0x5935910,4, 0x5935980,1, 0x5936000,20, 0x5936800,1, 0x5937000,20, 0x5937800,1, 0x5938000,20, 0x5938800,10, 0x5938880,3, 0x5938900,2, 0x5938910,4, 0x5938980,1, 0x5939000,20, 0x5939800,1, 0x593a000,20, 0x593a800,1, 0x593b000,20, 0x593b800,10, 0x593b880,3, 0x593b900,2, 0x593b910,4, 0x593b980,1, 0x593c000,20, 0x593c800,1, 0x593d000,20, 0x593d800,1, 0x593e000,20, 0x593e800,10, 0x593e880,3, 0x593e900,2, 0x593e910,4, 0x593e980,1, 0x593f000,20, 0x593f800,1, 0x5940000,20, 0x5940800,1, 0x5941000,20, 0x5941800,10, 0x5941880,3, 0x5941900,2, 0x5941910,4, 0x5941980,1, 0x5942000,20, 0x5942800,1, 0x5943000,20, 0x5943800,1, 0x5944000,20, 0x5944800,10, 0x5944880,3, 0x5944900,2, 0x5944910,4, 0x5944980,1, 0x5945000,20, 0x5945800,1, 0x5946000,20, 0x5946800,1, 0x5947000,20, 0x5947800,10, 0x5947880,3, 0x5947900,2, 0x5947910,4, 0x5947980,1, 0x5948000,20, 0x5948800,1, 0x5949000,20, 0x5949800,1, 0x594a000,20, 0x594a800,10, 0x594a880,3, 0x594a900,2, 0x594a910,4, 0x594a980,1, 0x594b000,20, 0x594b800,1, 0x594c000,20, 0x594c800,1, 0x594d000,20, 0x594d800,10, 0x594d880,3, 0x594d900,2, 0x594d910,4, 0x594d980,1, 0x594e000,20, 0x594e800,1, 0x594f000,20, 0x594f800,1, 0x5950000,20, 0x5950800,10, 0x5950880,3, 0x5950900,2, 0x5950910,4, 0x5950980,1, 0x5951000,20, 0x5951800,1, 0x5952000,20, 0x5952800,1, 0x5953000,20, 0x5953800,10, 0x5953880,3, 0x5953900,2, 0x5953910,4, 0x5953980,1, 0x5954000,20, 0x5954800,1, 0x5955000,20, 0x5955800,1, 0x5956000,68, 0x5956800,10, 0x5956880,1, 0x5957000,20, 0x5957800,1, 0x5958000,1, 0x5959000,68, 0x5959800,10, 0x5959880,1, 0x595a000,20, 0x595a800,1, 0x595b000,1, 0x595c000,68, 0x595c800,10, 0x595c880,1, 0x595d000,20, 0x595d800,1, 0x595e000,1, 0x595f000,68, 0x595f800,10, 0x595f880,1, 0x5960000,20, 0x5960800,1, 0x5961000,1, 0x5962000,68, 0x5962800,10, 0x5962880,1, 0x5963000,20, 0x5963800,1, 0x5964000,1, 0x5965000,68, 0x5965800,10, 0x5965880,1, 0x5966000,20, 0x5966800,1, 0x5967000,1, 0x5968000,68, 0x5968800,10, 0x5968880,1, 0x5969000,20, 0x5969800,1, 0x596a000,1, 0x596b000,68, 0x596b800,10, 0x596b880,1, 0x596c000,20, 0x596c800,1, 0x596d000,1, 0x596e000,68, 0x596e800,10, 0x596e880,1, 0x596f000,20, 0x596f800,1, 0x5970000,1, 0x5971000,68, 0x5971800,10, 0x5971880,1, 0x5972000,20, 0x5972800,1, 0x5973000,1, 0x5974000,68, 0x5974800,10, 0x5974880,1, 0x5975000,20, 0x5975800,1, 0x5976000,1, 0x5977000,68, 0x5977800,10, 0x5977880,1, 0x5978000,20, 0x5978800,1, 0x5979000,1, 0x597a000,68, 0x597a800,10, 0x597a880,1, 0x597b000,20, 0x597b800,1, 0x597c000,1, 0x597d000,68, 0x597d800,10, 0x597d880,1, 0x597e000,20, 0x597e800,1, 0x597f000,1, 0x5980000,68, 0x5980800,10, 0x5980880,1, 0x5981000,20, 0x5981800,1, 0x5982000,1, 0x5983000,68, 0x5983800,10, 0x5983880,1, 0x5984000,20, 0x5984800,1, 0x5985000,1, 0x5986000,68, 0x5986800,10, 0x5986880,1, 0x5987000,20, 0x5987800,1, 0x5988000,1, 0x5989000,68, 0x5989800,10, 0x5989880,1, 0x598a000,20, 0x598a800,1, 0x598b000,1, 0x598c000,68, 0x598c800,10, 0x598c880,1, 0x598d000,20, 0x598d800,1, 0x598e000,1, 0x598f000,68, 0x598f800,10, 0x598f880,1, 0x5990000,20, 0x5990800,1, 0x5991000,1, 0x5992000,68, 0x5992800,10, 0x5992880,1, 0x5993000,20, 0x5993800,1, 0x5994000,1, 0x5995000,68, 0x5995800,10, 0x5995880,1, 0x5996000,20, 0x5996800,1, 0x5997000,1, 0x5998000,68, 0x5998800,10, 0x5998880,1, 0x5999000,20, 0x5999800,1, 0x599a000,1, 0x599b000,68, 0x599b800,10, 0x599b880,1, 0x599c000,20, 0x599c800,1, 0x599d000,1, 0x599e000,68, 0x599e800,10, 0x599e880,1, 0x599f000,20, 0x599f800,1, 0x59a0000,1, 0x59a1000,68, 0x59a1800,10, 0x59a1880,1, 0x59a2000,20, 0x59a2800,1, 0x59a3000,1, 0x59a4000,68, 0x59a4800,10, 0x59a4880,1, 0x59a5000,20, 0x59a5800,1, 0x59a6000,1, 0x59a7000,68, 0x59a7800,10, 0x59a7880,1, 0x59a8000,20, 0x59a8800,1, 0x59a9000,1, 0x59aa000,68, 0x59aa800,10, 0x59aa880,1, 0x59ab000,20, 0x59ab800,1, 0x59ac000,1, 0x59ad000,68, 0x59ad800,10, 0x59ad880,1, 0x59ae000,20, 0x59ae800,1, 0x59af000,1, 0x59b0000,68, 0x59b0800,10, 0x59b0880,1, 0x59b1000,20, 0x59b1800,1, 0x59b2000,1, 0x59b3000,68, 0x59b3800,10, 0x59b3880,1, 0x59b4000,20, 0x59b4800,1, 0x59b5000,1, 0x59b6000,68, 0x59b6800,10, 0x59b6880,1, 0x59b7000,20, 0x59b7800,1, 0x59b8000,1, 0x59b9000,68, 0x59b9800,10, 0x59b9880,1, 0x59ba000,20, 0x59ba800,1, 0x59bb000,1, 0x59bc000,20, 0x59bc800,10, 0x59bc880,3, 0x59bc900,2, 0x59bc910,4, 0x59bc980,1, 0x59bd000,20, 0x59bd800,10, 0x59bd880,3, 0x59bd900,2, 0x59bd910,4, 0x59bd980,1, 0x59be000,20, 0x59be800,10, 0x59be880,3, 0x59be900,2, 0x59be910,4, 0x59be980,1, 0x59bf000,20, 0x59bf800,10, 0x59bf880,3, 0x59bf900,2, 0x59bf910,4, 0x59bf980,1, 0x59c0000,20, 0x59c0800,10, 0x59c0880,3, 0x59c0900,2, 0x59c0910,4, 0x59c0980,1, 0x59c1000,20, 0x59c1800,10, 0x59c1880,3, 0x59c1900,2, 0x59c1910,4, 0x59c1980,1, 0x59c2000,20, 0x59c2800,10, 0x59c2880,3, 0x59c2900,2, 0x59c2910,4, 0x59c2980,1, 0x59c3000,20, 0x59c3800,10, 0x59c3880,3, 0x59c3900,2, 0x59c3910,4, 0x59c3980,1, 0x59c4000,20, 0x59c4800,10, 0x59c4880,3, 0x59c4900,2, 0x59c4910,4, 0x59c4980,1, 0x59c5000,20, 0x59c5800,10, 0x59c5880,3, 0x59c5900,2, 0x59c5910,4, 0x59c5980,1, 0x59c6000,20, 0x59c6800,10, 0x59c6880,3, 0x59c6900,2, 0x59c6910,4, 0x59c6980,1, 0x59c7000,20, 0x59c7800,10, 0x59c7880,3, 0x59c7900,2, 0x59c7910,4, 0x59c7980,1, 0x59c8000,20, 0x59c8800,10, 0x59c8880,3, 0x59c8900,2, 0x59c8910,4, 0x59c8980,1, 0x59c9000,20, 0x59c9800,10, 0x59c9880,3, 0x59c9900,2, 0x59c9910,4, 0x59c9980,1, 0x59ca000,20, 0x59ca800,10, 0x59ca880,3, 0x59ca900,2, 0x59ca910,4, 0x59ca980,1, 0x59cb000,20, 0x59cb800,10, 0x59cb880,3, 0x59cb900,2, 0x59cb910,4, 0x59cb980,1, 0x59cc000,20, 0x59cc800,10, 0x59cc880,3, 0x59cc900,2, 0x59cc910,4, 0x59cc980,1, 0x59cd000,20, 0x59cd800,10, 0x59cd880,3, 0x59cd900,2, 0x59cd910,4, 0x59cd980,1, 0x59ce000,20, 0x59ce800,10, 0x59ce880,3, 0x59ce900,2, 0x59ce910,4, 0x59ce980,1, 0x59cf000,20, 0x59cf800,10, 0x59cf880,3, 0x59cf900,2, 0x59cf910,4, 0x59cf980,1, 0x59d0000,20, 0x59d0800,10, 0x59d0880,3, 0x59d0900,2, 0x59d0910,4, 0x59d0980,1, 0x59d1000,20, 0x59d1800,10, 0x59d1880,3, 0x59d1900,2, 0x59d1910,4, 0x59d1980,1, 0x59d2000,20, 0x59d2800,10, 0x59d2880,3, 0x59d2900,2, 0x59d2910,4, 0x59d2980,1, 0x59d3000,20, 0x59d3800,10, 0x59d3880,3, 0x59d3900,2, 0x59d3910,4, 0x59d3980,1, 0x59d4000,20, 0x59d4800,10, 0x59d4880,3, 0x59d4900,2, 0x59d4910,4, 0x59d4980,1, 0x59d5000,20, 0x59d5800,10, 0x59d5880,3, 0x59d5900,2, 0x59d5910,4, 0x59d5980,1, 0x59d6000,20, 0x59d6800,10, 0x59d6880,3, 0x59d6900,2, 0x59d6910,4, 0x59d6980,1, 0x59d7000,20, 0x59d7800,10, 0x59d7880,3, 0x59d7900,2, 0x59d7910,4, 0x59d7980,1, 0x59d8000,20, 0x59d8800,10, 0x59d8880,3, 0x59d8900,2, 0x59d8910,4, 0x59d8980,1, 0x59d9000,20, 0x59d9800,10, 0x59d9880,3, 0x59d9900,2, 0x59d9910,4, 0x59d9980,1, 0x59da000,20, 0x59da800,10, 0x59da880,3, 0x59da900,2, 0x59da910,4, 0x59da980,1, 0x59db000,20, 0x59db800,10, 0x59db880,3, 0x59db900,2, 0x59db910,4, 0x59db980,1, 0x59dc000,20, 0x59dc800,10, 0x59dc880,3, 0x59dc900,2, 0x59dc910,4, 0x59dc980,1, 0x59dd000,20, 0x59dd800,10, 0x59dd880,3, 0x59dd900,2, 0x59dd910,4, 0x59dd980,1, 0x59de000,20, 0x59de800,10, 0x59de880,3, 0x59de900,2, 0x59de910,4, 0x59de980,1, 0x59df000,20, 0x59df800,10, 0x59df880,3, 0x59df900,2, 0x59df910,4, 0x59df980,1, 0x59e0000,20, 0x59e0800,10, 0x59e0880,3, 0x59e0900,2, 0x59e0910,4, 0x59e0980,1, 0x59e1000,20, 0x59e1800,10, 0x59e1880,3, 0x59e1900,2, 0x59e1910,4, 0x59e1980,1, 0x59e2000,20, 0x59e2800,10, 0x59e2880,3, 0x59e2900,2, 0x59e2910,4, 0x59e2980,1, 0x59e3000,20, 0x59e3800,10, 0x59e3880,3, 0x59e3900,2, 0x59e3910,4, 0x59e3980,1, 0x59e4000,20, 0x59e4800,10, 0x59e4880,3, 0x59e4900,2, 0x59e4910,4, 0x59e4980,1, 0x59e5000,20, 0x59e5800,10, 0x59e5880,3, 0x59e5900,2, 0x59e5910,4, 0x59e5980,1, 0x59e6000,20, 0x59e6800,10, 0x59e6880,3, 0x59e6900,2, 0x59e6910,4, 0x59e6980,1, 0x59e7000,20, 0x59e7800,10, 0x59e7880,3, 0x59e7900,2, 0x59e7910,4, 0x59e7980,1, 0x59e8000,20, 0x59e8800,10, 0x59e8880,3, 0x59e8900,2, 0x59e8910,4, 0x59e8980,1, 0x59e9000,20, 0x59e9800,10, 0x59e9880,3, 0x59e9900,2, 0x59e9910,4, 0x59e9980,1, 0x59ea000,20, 0x59ea800,10, 0x59ea880,3, 0x59ea900,2, 0x59ea910,4, 0x59ea980,1, 0x59eb000,20, 0x59eb800,10, 0x59eb880,3, 0x59eb900,2, 0x59eb910,4, 0x59eb980,1, 0x59ec000,20, 0x59ec800,10, 0x59ec880,3, 0x59ec900,2, 0x59ec910,4, 0x59ec980,1, 0x59ed000,20, 0x59ed800,10, 0x59ed880,3, 0x59ed900,2, 0x59ed910,4, 0x59ed980,1, 0x59ee000,20, 0x59ee800,10, 0x59ee880,3, 0x59ee900,2, 0x59ee910,4, 0x59ee980,1, 0x59ef000,20, 0x59ef800,10, 0x59ef880,3, 0x59ef900,2, 0x59ef910,4, 0x59ef980,1, 0x59f0000,20, 0x59f0800,10, 0x59f0880,3, 0x59f0900,2, 0x59f0910,4, 0x59f0980,1, 0x59f1000,20, 0x59f1800,10, 0x59f1880,3, 0x59f1900,2, 0x59f1910,4, 0x59f1980,1, 0x59f2000,20, 0x59f2800,10, 0x59f2880,3, 0x59f2900,2, 0x59f2910,4, 0x59f2980,1, 0x59f3000,20, 0x59f3800,10, 0x59f3880,3, 0x59f3900,2, 0x59f3910,4, 0x59f3980,1, 0x59f4000,20, 0x59f4800,10, 0x59f4880,3, 0x59f4900,2, 0x59f4910,4, 0x59f4980,1, 0x59f5000,20, 0x59f5800,10, 0x59f5880,3, 0x59f5900,2, 0x59f5910,4, 0x59f5980,1, 0x59f6000,20, 0x59f6800,10, 0x59f6880,3, 0x59f6900,2, 0x59f6910,4, 0x59f6980,1, 0x59f7000,20, 0x59f7800,10, 0x59f7880,3, 0x59f7900,2, 0x59f7910,4, 0x59f7980,1, 0x59f8000,20, 0x59f8800,10, 0x59f8880,3, 0x59f8900,2, 0x59f8910,4, 0x59f8980,1, 0x59f9000,20, 0x59f9800,10, 0x59f9880,3, 0x59f9900,2, 0x59f9910,4, 0x59f9980,1, 0x59fa000,20, 0x59fa800,10, 0x59fa880,3, 0x59fa900,2, 0x59fa910,4, 0x59fa980,1, 0x59fb000,20, 0x59fb800,10, 0x59fb880,3, 0x59fb900,2, 0x59fb910,4, 0x59fb980,1, 0x59fc000,20, 0x59fc800,10, 0x59fc880,3, 0x59fc900,2, 0x59fc910,4, 0x59fc980,1, 0x59fd000,20, 0x59fd800,10, 0x59fd880,3, 0x59fd900,2, 0x59fd910,4, 0x59fd980,1, 0x59fe000,20, 0x59fe800,10, 0x59fe880,3, 0x59fe900,2, 0x59fe910,4, 0x59fe980,1, 0x59ff000,20, 0x59ff800,10, 0x59ff880,3, 0x59ff900,2, 0x59ff910,4, 0x59ff980,1, 0x5a00000,68, 0x5a00800,10, 0x5a00880,3, 0x5a00900,2, 0x5a00910,4, 0x5a00980,1, 0x5a01000,68, 0x5a01800,10, 0x5a01880,3, 0x5a01900,2, 0x5a01910,4, 0x5a01980,1, 0x5a02000,10, 0x5a02080,3, 0x5a02100,2, 0x5a02110,4, 0x5a02180,1, 0x5a03000,10, 0x5a03080,1, 0x5a04000,1, 0x5a05000,68, 0x5a05800,10, 0x5a05880,3, 0x5a05900,2, 0x5a05910,4, 0x5a05980,1, 0x5a06000,68, 0x5a06800,10, 0x5a06880,3, 0x5a06900,2, 0x5a06910,4, 0x5a06980,1, 0x5a07000,68, 0x5a07800,10, 0x5a07880,3, 0x5a07900,2, 0x5a07910,4, 0x5a07980,1, 0x5a08000,68, 0x5a08800,10, 0x5a08880,3, 0x5a08900,2, 0x5a08910,4, 0x5a08980,1, 0x5a09000,20, 0x5a09800,10, 0x5a09880,3, 0x5a09900,2, 0x5a09910,4, 0x5a09980,1, 0x5a0a000,20, 0x5a0a800,10, 0x5a0a880,3, 0x5a0a900,2, 0x5a0a910,4, 0x5a0a980,1, 0x5a0b000,20, 0x5a0b800,10, 0x5a0b880,3, 0x5a0b900,2, 0x5a0b910,4, 0x5a0b980,1, 0x5a0c000,20, 0x5a0c800,10, 0x5a0c880,3, 0x5a0c900,2, 0x5a0c910,4, 0x5a0c980,1, 0x5a0d000,20, 0x5a0d800,10, 0x5a0d880,3, 0x5a0d900,2, 0x5a0d910,4, 0x5a0d980,1, 0x5a0e000,20, 0x5a0e800,10, 0x5a0e880,3, 0x5a0e900,2, 0x5a0e910,4, 0x5a0e980,1, 0x5a0f000,20, 0x5a0f800,10, 0x5a0f880,3, 0x5a0f900,2, 0x5a0f910,4, 0x5a0f980,1, 0x5a10000,20, 0x5a10800,10, 0x5a10880,3, 0x5a10900,2, 0x5a10910,4, 0x5a10980,1, 0x5a11000,20, 0x5a11800,10, 0x5a11880,3, 0x5a11900,2, 0x5a11910,4, 0x5a11980,1, 0x5a12000,20, 0x5a12800,10, 0x5a12880,3, 0x5a12900,2, 0x5a12910,4, 0x5a12980,1, 0x5a13000,20, 0x5a13800,10, 0x5a13880,3, 0x5a13900,2, 0x5a13910,4, 0x5a13980,1, 0x5a14000,20, 0x5a14800,10, 0x5a14880,3, 0x5a14900,2, 0x5a14910,4, 0x5a14980,1, 0x5a15000,36, 0x5a15800,10, 0x5a15880,3, 0x5a158a0,1, 0x5a15900,2, 0x5a15910,4, 0x5a15980,1, 0x5a16000,36, 0x5a16800,10, 0x5a16880,3, 0x5a168a0,1, 0x5a16900,2, 0x5a16910,4, 0x5a16980,1, 0x5a17000,36, 0x5a17800,10, 0x5a17880,3, 0x5a178a0,1, 0x5a17900,2, 0x5a17910,4, 0x5a17980,1, 0x5a18000,36, 0x5a18800,10, 0x5a18880,3, 0x5a188a0,1, 0x5a18900,2, 0x5a18910,4, 0x5a18980,1, 0x5a19000,36, 0x5a19800,10, 0x5a19880,3, 0x5a198a0,1, 0x5a19900,2, 0x5a19910,4, 0x5a19980,1, 0x5a1a000,36, 0x5a1a800,10, 0x5a1a880,3, 0x5a1a8a0,1, 0x5a1a900,2, 0x5a1a910,4, 0x5a1a980,1, 0x5a1b000,36, 0x5a1b800,10, 0x5a1b880,3, 0x5a1b8a0,1, 0x5a1b900,2, 0x5a1b910,4, 0x5a1b980,1, 0x5a1c000,36, 0x5a1c800,10, 0x5a1c880,3, 0x5a1c8a0,1, 0x5a1c900,2, 0x5a1c910,4, 0x5a1c980,1, 0x5a1d000,20, 0x5a1d800,10, 0x5a1d880,1, 0x5a1e000,52, 0x5a1e800,10, 0x5a1e880,10, 0x5a1e8ac,1, 0x5a1e8c0,10, 0x5a1e8ec,1, 0x5a1e900,10, 0x5a1e92c,1, 0x5a1e940,10, 0x5a1e96c,1, 0x5a1e980,10, 0x5a1e9ac,1, 0x5a1e9c0,10, 0x5a1e9ec,1, 0x5a1ea00,10, 0x5a1ea2c,1, 0x5a1ea40,10, 0x5a1ea6c,1, 0x5a1ea80,10, 0x5a1eaac,1, 0x5a1eac0,10, 0x5a1eaec,1, 0x5a1eb00,10, 0x5a1eb2c,1, 0x5a1eb40,10, 0x5a1eb6c,1, 0x5a1eb80,10, 0x5a1ebac,1, 0x5a1ebc0,10, 0x5a1ebec,1, 0x5a1ec00,10, 0x5a1ec2c,1, 0x5a1ec40,10, 0x5a1ec6c,1, 0x5a1ec80,10, 0x5a1ecac,1, 0x5a1ecc0,10, 0x5a1ecec,1, 0x5a1ed00,10, 0x5a1ed2c,1, 0x5a1ed40,10, 0x5a1ed6c,1, 0x5a1ed80,1, 0x5a20000,20, 0x5a20800,10, 0x5a20880,3, 0x5a20900,2, 0x5a20910,4, 0x5a20980,1, 0x5a21000,36, 0x5a21800,10, 0x5a21880,1, 0x5a22000,1, 0x5a23000,1, 0x5a24000,68, 0x5a24800,10, 0x5a24880,3, 0x5a24900,2, 0x5a24910,4, 0x5a24980,1, 0x5a25000,20, 0x5a25800,1, 0x5a26000,20, 0x5a26800,1, 0x5a27000,52, 0x5a27800,10, 0x5a27880,3, 0x5a27900,2, 0x5a27910,4, 0x5a27980,1, 0x5a28000,1, 0x5a29000,36, 0x5a29800,10, 0x5a29880,3, 0x5a29900,2, 0x5a29910,4, 0x5a29980,1, 0x5a2a000,20, 0x5a2a800,10, 0x5a2a880,3, 0x5a2a900,2, 0x5a2a910,4, 0x5a2a980,1, 0x5a2b000,20, 0x5a2b800,1, 0x5a2c000,20, 0x5a2c800,1, 0x5a2d000,20, 0x5a2d800,1, 0x5a2e000,20, 0x5a2e800,10, 0x5a2e880,3, 0x5a2e900,2, 0x5a2e910,4, 0x5a2e980,1, 0x5a2f000,20, 0x5a2f800,1, 0x5a30000,1, 0x5a31000,1, 0x5a32000,36, 0x5a32800,10, 0x5a32880,3, 0x5a32900,2, 0x5a32910,4, 0x5a32984,5, 0x5a329c0,17, 0x5a33000,20, 0x5a33800,1, 0x5a34000,20, 0x5a34800,1, 0x5a35000,20, 0x5a35800,1, 0x5a36000,20, 0x5a36800,1, 0x5a37000,10, 0x5a37080,3, 0x5a37100,2, 0x5a37110,4, 0x5a37180,1, 0x5a38000,10, 0x5a38080,3, 0x5a38100,2, 0x5a38110,4, 0x5a38180,1, 0x5a39000,10, 0x5a39080,1, 0x5a3a000,10, 0x5a3a080,3, 0x5a3a100,2, 0x5a3a110,4, 0x5a3a180,1, 0x5a3b000,10, 0x5a3b080,3, 0x5a3b100,2, 0x5a3b110,4, 0x5a3b180,1, 0x5a3c000,10, 0x5a3c080,3, 0x5a3c100,2, 0x5a3c110,4, 0x5a3c180,1, 0x5a3d000,10, 0x5a3d080,3, 0x5a3d100,2, 0x5a3d110,4, 0x5a3d180,1, 0x5a3e000,10, 0x5a3e080,3, 0x5a3e100,2, 0x5a3e110,4, 0x5a3e180,1, 0x5a3f000,10, 0x5a3f080,3, 0x5a3f100,2, 0x5a3f110,4, 0x5a3f180,1, 0x5a40000,10, 0x5a40080,3, 0x5a40100,2, 0x5a40110,4, 0x5a40180,1, 0x5a41000,10, 0x5a41080,3, 0x5a41100,2, 0x5a41110,4, 0x5a41180,1, 0x5a42000,10, 0x5a42080,3, 0x5a42100,2, 0x5a42110,4, 0x5a42180,1, 0x5a43000,10, 0x5a43080,3, 0x5a43100,2, 0x5a43110,4, 0x5a43180,1, 0x5a44000,10, 0x5a44080,3, 0x5a44100,2, 0x5a44110,4, 0x5a44180,1, 0x5a45000,10, 0x5a45080,3, 0x5a45100,2, 0x5a45110,4, 0x5a45180,1, 0x5a48000,10, 0x5a48080,3, 0x5a48100,2, 0x5a48110,4, 0x5a48400,1, 0x5a48410,3, 0x5a48420,3, 0x5a48430,3, 0x5a48440,3, 0x5a48450,3, 0x5a48460,3, 0x5a48470,24, 0x5a48500,10, 0x5a48540,10, 0x5a48580,10, 0x5a485c0,10, 0x5a48600,10, 0x5a48640,10, 0x5a48680,6, 0x5a486a0,3, 0x5a486b0,3, 0x5a486c0,4, 0x5a48800,1, 0x5a4c000,10, 0x5a4c080,3, 0x5a4c100,2, 0x5a4c110,4, 0x5a4d000,1, 0x5a4d010,3, 0x5a4d020,3, 0x5a4d030,3, 0x5a4d040,3, 0x5a4d050,3, 0x5a4d060,3, 0x5a4d070,3, 0x5a4d080,3, 0x5a4d090,3, 0x5a4d0a0,3, 0x5a4d0b0,3, 0x5a4d0c0,3, 0x5a4d0d0,3, 0x5a4d0e0,3, 0x5a4d0f0,3, 0x5a4d100,3, 0x5a4d110,64, 0x5a4d240,10, 0x5a4d280,10, 0x5a4d2c0,10, 0x5a4d300,10, 0x5a4d340,10, 0x5a4d380,10, 0x5a4d3c0,10, 0x5a4d400,10, 0x5a4d440,10, 0x5a4d480,10, 0x5a4d4c0,10, 0x5a4d500,10, 0x5a4d540,10, 0x5a4d580,10, 0x5a4d5c0,10, 0x5a4d600,10, 0x5a4d640,19, 0x5a4d690,3, 0x5a4d6a0,4, 0x5a4e000,1, 0x5a50000,10, 0x5a50080,3, 0x5a50100,2, 0x5a50110,4, 0x5a51000,1, 0x5a51010,3, 0x5a51020,3, 0x5a51030,3, 0x5a51040,3, 0x5a51050,3, 0x5a51060,3, 0x5a51070,3, 0x5a51080,3, 0x5a51090,3, 0x5a510a0,3, 0x5a510b0,3, 0x5a510c0,3, 0x5a510d0,3, 0x5a510e0,3, 0x5a510f0,3, 0x5a51100,3, 0x5a51110,64, 0x5a51240,10, 0x5a51280,10, 0x5a512c0,10, 0x5a51300,10, 0x5a51340,10, 0x5a51380,10, 0x5a513c0,10, 0x5a51400,10, 0x5a51440,10, 0x5a51480,10, 0x5a514c0,10, 0x5a51500,10, 0x5a51540,10, 0x5a51580,10, 0x5a515c0,10, 0x5a51600,10, 0x5a51640,19, 0x5a51690,3, 0x5a516a0,4, 0x5a52000,1, 0x5a54000,10, 0x5a54080,3, 0x5a54100,2, 0x5a54110,4, 0x5a55000,1, 0x5a55010,3, 0x5a55020,3, 0x5a55030,3, 0x5a55040,3, 0x5a55050,3, 0x5a55060,3, 0x5a55070,3, 0x5a55080,3, 0x5a55090,3, 0x5a550a0,3, 0x5a550b0,3, 0x5a550c0,3, 0x5a550d0,3, 0x5a550e0,3, 0x5a550f0,3, 0x5a55100,3, 0x5a55110,64, 0x5a55240,10, 0x5a55280,10, 0x5a552c0,10, 0x5a55300,10, 0x5a55340,10, 0x5a55380,10, 0x5a553c0,10, 0x5a55400,10, 0x5a55440,10, 0x5a55480,10, 0x5a554c0,10, 0x5a55500,10, 0x5a55540,10, 0x5a55580,10, 0x5a555c0,10, 0x5a55600,10, 0x5a55640,19, 0x5a55690,3, 0x5a556a0,4, 0x5a56000,1, 0x5a58000,10, 0x5a58080,3, 0x5a58100,2, 0x5a58110,4, 0x5a59000,1, 0x5a59010,3, 0x5a59020,3, 0x5a59030,3, 0x5a59040,3, 0x5a59050,3, 0x5a59060,3, 0x5a59070,3, 0x5a59080,3, 0x5a59090,3, 0x5a590a0,3, 0x5a590b0,3, 0x5a590c0,3, 0x5a590d0,3, 0x5a590e0,3, 0x5a590f0,3, 0x5a59100,3, 0x5a59110,64, 0x5a59240,10, 0x5a59280,10, 0x5a592c0,10, 0x5a59300,10, 0x5a59340,10, 0x5a59380,10, 0x5a593c0,10, 0x5a59400,10, 0x5a59440,10, 0x5a59480,10, 0x5a594c0,10, 0x5a59500,10, 0x5a59540,10, 0x5a59580,10, 0x5a595c0,10, 0x5a59600,10, 0x5a59640,19, 0x5a59690,3, 0x5a596a0,4, 0x5a5a000,1, 0x5a5c000,10, 0x5a5c080,3, 0x5a5c100,2, 0x5a5c110,4, 0x5a5d000,1, 0x5a5d010,3, 0x5a5d020,3, 0x5a5d030,3, 0x5a5d040,3, 0x5a5d050,3, 0x5a5d060,3, 0x5a5d070,3, 0x5a5d080,3, 0x5a5d090,3, 0x5a5d0a0,3, 0x5a5d0b0,3, 0x5a5d0c0,3, 0x5a5d0d0,3, 0x5a5d0e0,3, 0x5a5d0f0,3, 0x5a5d100,3, 0x5a5d110,64, 0x5a5d240,10, 0x5a5d280,10, 0x5a5d2c0,10, 0x5a5d300,10, 0x5a5d340,10, 0x5a5d380,10, 0x5a5d3c0,10, 0x5a5d400,10, 0x5a5d440,10, 0x5a5d480,10, 0x5a5d4c0,10, 0x5a5d500,10, 0x5a5d540,10, 0x5a5d580,10, 0x5a5d5c0,10, 0x5a5d600,10, 0x5a5d640,19, 0x5a5d690,3, 0x5a5d6a0,4, 0x5a5e000,1, 0x5a60000,10, 0x5a60080,3, 0x5a60100,2, 0x5a60110,4, 0x5a61000,1, 0x5a61010,3, 0x5a61020,3, 0x5a61030,3, 0x5a61040,3, 0x5a61050,3, 0x5a61060,3, 0x5a61070,3, 0x5a61080,3, 0x5a61090,3, 0x5a610a0,3, 0x5a610b0,3, 0x5a610c0,3, 0x5a610d0,3, 0x5a610e0,3, 0x5a610f0,3, 0x5a61100,3, 0x5a61110,64, 0x5a61240,10, 0x5a61280,10, 0x5a612c0,10, 0x5a61300,10, 0x5a61340,10, 0x5a61380,10, 0x5a613c0,10, 0x5a61400,10, 0x5a61440,10, 0x5a61480,10, 0x5a614c0,10, 0x5a61500,10, 0x5a61540,10, 0x5a61580,10, 0x5a615c0,10, 0x5a61600,10, 0x5a61640,19, 0x5a61690,3, 0x5a616a0,4, 0x5a62000,1, 0x5a64000,10, 0x5a64080,3, 0x5a64100,2, 0x5a64110,4, 0x5a65000,1, 0x5a65010,3, 0x5a65020,3, 0x5a65030,3, 0x5a65040,3, 0x5a65050,3, 0x5a65060,3, 0x5a65070,3, 0x5a65080,3, 0x5a65090,3, 0x5a650a0,3, 0x5a650b0,3, 0x5a650c0,3, 0x5a650d0,3, 0x5a650e0,3, 0x5a650f0,3, 0x5a65100,3, 0x5a65110,64, 0x5a65240,10, 0x5a65280,10, 0x5a652c0,10, 0x5a65300,10, 0x5a65340,10, 0x5a65380,10, 0x5a653c0,10, 0x5a65400,10, 0x5a65440,10, 0x5a65480,10, 0x5a654c0,10, 0x5a65500,10, 0x5a65540,10, 0x5a65580,10, 0x5a655c0,10, 0x5a65600,10, 0x5a65640,19, 0x5a65690,3, 0x5a656a0,4, 0x5a66000,1, 0x5a68000,10, 0x5a68080,3, 0x5a68100,2, 0x5a68110,4, 0x5a69000,1, 0x5a69010,3, 0x5a69020,3, 0x5a69030,3, 0x5a69040,3, 0x5a69050,3, 0x5a69060,3, 0x5a69070,3, 0x5a69080,3, 0x5a69090,3, 0x5a690a0,3, 0x5a690b0,3, 0x5a690c0,3, 0x5a690d0,3, 0x5a690e0,3, 0x5a690f0,3, 0x5a69100,3, 0x5a69110,64, 0x5a69240,10, 0x5a69280,10, 0x5a692c0,10, 0x5a69300,10, 0x5a69340,10, 0x5a69380,10, 0x5a693c0,10, 0x5a69400,10, 0x5a69440,10, 0x5a69480,10, 0x5a694c0,10, 0x5a69500,10, 0x5a69540,10, 0x5a69580,10, 0x5a695c0,10, 0x5a69600,10, 0x5a69640,19, 0x5a69690,3, 0x5a696a0,4, 0x5a6a000,1, 0x5a6c000,10, 0x5a6c080,3, 0x5a6c100,2, 0x5a6c110,4, 0x5a6d000,1, 0x5a6d010,3, 0x5a6d020,3, 0x5a6d030,3, 0x5a6d040,3, 0x5a6d050,3, 0x5a6d060,3, 0x5a6d070,3, 0x5a6d080,3, 0x5a6d090,3, 0x5a6d0a0,3, 0x5a6d0b0,3, 0x5a6d0c0,3, 0x5a6d0d0,3, 0x5a6d0e0,3, 0x5a6d0f0,3, 0x5a6d100,3, 0x5a6d110,64, 0x5a6d240,10, 0x5a6d280,10, 0x5a6d2c0,10, 0x5a6d300,10, 0x5a6d340,10, 0x5a6d380,10, 0x5a6d3c0,10, 0x5a6d400,10, 0x5a6d440,10, 0x5a6d480,10, 0x5a6d4c0,10, 0x5a6d500,10, 0x5a6d540,10, 0x5a6d580,10, 0x5a6d5c0,10, 0x5a6d600,10, 0x5a6d640,19, 0x5a6d690,3, 0x5a6d6a0,4, 0x5a6e000,1, 0x5a70000,10, 0x5a70080,3, 0x5a70100,2, 0x5a70110,4, 0x5a71000,1, 0x5a71010,3, 0x5a71020,3, 0x5a71030,3, 0x5a71040,3, 0x5a71050,3, 0x5a71060,3, 0x5a71070,3, 0x5a71080,3, 0x5a71090,3, 0x5a710a0,3, 0x5a710b0,3, 0x5a710c0,3, 0x5a710d0,3, 0x5a710e0,3, 0x5a710f0,3, 0x5a71100,3, 0x5a71110,64, 0x5a71240,10, 0x5a71280,10, 0x5a712c0,10, 0x5a71300,10, 0x5a71340,10, 0x5a71380,10, 0x5a713c0,10, 0x5a71400,10, 0x5a71440,10, 0x5a71480,10, 0x5a714c0,10, 0x5a71500,10, 0x5a71540,10, 0x5a71580,10, 0x5a715c0,10, 0x5a71600,10, 0x5a71640,19, 0x5a71690,3, 0x5a716a0,4, 0x5a72000,1, 0x5a74000,10, 0x5a74080,3, 0x5a74100,2, 0x5a74110,4, 0x5a75000,1, 0x5a75010,3, 0x5a75020,3, 0x5a75030,3, 0x5a75040,3, 0x5a75050,3, 0x5a75060,3, 0x5a75070,3, 0x5a75080,3, 0x5a75090,3, 0x5a750a0,3, 0x5a750b0,3, 0x5a750c0,3, 0x5a750d0,3, 0x5a750e0,3, 0x5a750f0,3, 0x5a75100,3, 0x5a75110,64, 0x5a75240,10, 0x5a75280,10, 0x5a752c0,10, 0x5a75300,10, 0x5a75340,10, 0x5a75380,10, 0x5a753c0,10, 0x5a75400,10, 0x5a75440,10, 0x5a75480,10, 0x5a754c0,10, 0x5a75500,10, 0x5a75540,10, 0x5a75580,10, 0x5a755c0,10, 0x5a75600,10, 0x5a75640,19, 0x5a75690,3, 0x5a756a0,4, 0x5a76000,1, 0x5a78000,10, 0x5a78080,3, 0x5a78100,2, 0x5a78110,4, 0x5a79000,1, 0x5a79010,3, 0x5a79020,3, 0x5a79030,3, 0x5a79040,3, 0x5a79050,3, 0x5a79060,3, 0x5a79070,3, 0x5a79080,3, 0x5a79090,3, 0x5a790a0,3, 0x5a790b0,3, 0x5a790c0,3, 0x5a790d0,3, 0x5a790e0,3, 0x5a790f0,3, 0x5a79100,3, 0x5a79110,64, 0x5a79240,10, 0x5a79280,10, 0x5a792c0,10, 0x5a79300,10, 0x5a79340,10, 0x5a79380,10, 0x5a793c0,10, 0x5a79400,10, 0x5a79440,10, 0x5a79480,10, 0x5a794c0,10, 0x5a79500,10, 0x5a79540,10, 0x5a79580,10, 0x5a795c0,10, 0x5a79600,10, 0x5a79640,19, 0x5a79690,3, 0x5a796a0,4, 0x5a7a000,1, 0x5a7c000,10, 0x5a7c080,3, 0x5a7c100,2, 0x5a7c110,4, 0x5a7d000,1, 0x5a7d010,3, 0x5a7d020,3, 0x5a7d030,3, 0x5a7d040,3, 0x5a7d050,3, 0x5a7d060,3, 0x5a7d070,3, 0x5a7d080,3, 0x5a7d090,3, 0x5a7d0a0,3, 0x5a7d0b0,3, 0x5a7d0c0,3, 0x5a7d0d0,3, 0x5a7d0e0,3, 0x5a7d0f0,3, 0x5a7d100,3, 0x5a7d110,64, 0x5a7d240,10, 0x5a7d280,10, 0x5a7d2c0,10, 0x5a7d300,10, 0x5a7d340,10, 0x5a7d380,10, 0x5a7d3c0,10, 0x5a7d400,10, 0x5a7d440,10, 0x5a7d480,10, 0x5a7d4c0,10, 0x5a7d500,10, 0x5a7d540,10, 0x5a7d580,10, 0x5a7d5c0,10, 0x5a7d600,10, 0x5a7d640,19, 0x5a7d690,3, 0x5a7d6a0,4, 0x5a7e000,1, 0x5a80000,10, 0x5a80080,3, 0x5a80100,2, 0x5a80110,4, 0x5a81000,1, 0x5a81010,3, 0x5a81020,3, 0x5a81030,3, 0x5a81040,3, 0x5a81050,3, 0x5a81060,3, 0x5a81070,3, 0x5a81080,3, 0x5a81090,3, 0x5a810a0,3, 0x5a810b0,3, 0x5a810c0,3, 0x5a810d0,3, 0x5a810e0,3, 0x5a810f0,3, 0x5a81100,3, 0x5a81110,64, 0x5a81240,10, 0x5a81280,10, 0x5a812c0,10, 0x5a81300,10, 0x5a81340,10, 0x5a81380,10, 0x5a813c0,10, 0x5a81400,10, 0x5a81440,10, 0x5a81480,10, 0x5a814c0,10, 0x5a81500,10, 0x5a81540,10, 0x5a81580,10, 0x5a815c0,10, 0x5a81600,10, 0x5a81640,19, 0x5a81690,3, 0x5a816a0,4, 0x5a82000,1, 0x5a84000,10, 0x5a84080,3, 0x5a84100,2, 0x5a84110,4, 0x5a85000,1, 0x5a85010,3, 0x5a85020,3, 0x5a85030,3, 0x5a85040,3, 0x5a85050,3, 0x5a85060,3, 0x5a85070,3, 0x5a85080,3, 0x5a85090,3, 0x5a850a0,3, 0x5a850b0,3, 0x5a850c0,3, 0x5a850d0,3, 0x5a850e0,3, 0x5a850f0,3, 0x5a85100,3, 0x5a85110,64, 0x5a85240,10, 0x5a85280,10, 0x5a852c0,10, 0x5a85300,10, 0x5a85340,10, 0x5a85380,10, 0x5a853c0,10, 0x5a85400,10, 0x5a85440,10, 0x5a85480,10, 0x5a854c0,10, 0x5a85500,10, 0x5a85540,10, 0x5a85580,10, 0x5a855c0,10, 0x5a85600,10, 0x5a85640,19, 0x5a85690,3, 0x5a856a0,4, 0x5a86000,1, 0x5a88000,10, 0x5a88080,3, 0x5a88100,2, 0x5a88110,4, 0x5a89000,1, 0x5a89010,3, 0x5a89020,3, 0x5a89030,3, 0x5a89040,3, 0x5a89050,3, 0x5a89060,3, 0x5a89070,3, 0x5a89080,3, 0x5a89090,3, 0x5a890a0,3, 0x5a890b0,3, 0x5a890c0,3, 0x5a890d0,3, 0x5a890e0,3, 0x5a890f0,3, 0x5a89100,3, 0x5a89110,64, 0x5a89240,10, 0x5a89280,10, 0x5a892c0,10, 0x5a89300,10, 0x5a89340,10, 0x5a89380,10, 0x5a893c0,10, 0x5a89400,10, 0x5a89440,10, 0x5a89480,10, 0x5a894c0,10, 0x5a89500,10, 0x5a89540,10, 0x5a89580,10, 0x5a895c0,10, 0x5a89600,10, 0x5a89640,19, 0x5a89690,3, 0x5a896a0,4, 0x5a8a000,1, 0x5a8c000,10, 0x5a8d000,10, 0x5a8e000,10, mstflint-4.26.0/mstdump/mstdump_dbs/BlueField.csv0000644000175000017500000025752414522641732022304 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,16418, 0x010100,10, 0x010140,17, 0x011000,35, 0x011100,40, 0x011200,2, 0x011400,3, 0x011414,2, 0x011420,1, 0x011444,5, 0x011480,2, 0x011490,3, 0x011590,1, 0x011600,2, 0x011800,16, 0x011848,6, 0x012000,4, 0x012014,1, 0x012020,4, 0x012034,1, 0x012040,4, 0x012054,1, 0x012060,4, 0x012074,1, 0x012080,4, 0x012094,1, 0x0120a0,4, 0x0120b4,1, 0x0120c0,4, 0x0120d4,1, 0x0120e0,4, 0x0120f4,1, 0x012100,4, 0x012114,1, 0x012120,4, 0x012134,1, 0x012140,4, 0x012154,1, 0x012160,4, 0x012174,1, 0x012180,4, 0x012194,1, 0x0121a0,4, 0x0121b4,1, 0x0121c0,4, 0x0121d4,1, 0x0121e0,4, 0x0121f4,1, 0x012200,4, 0x012214,1, 0x012220,4, 0x012234,1, 0x012240,54, 0x012400,4, 0x012414,1, 0x012420,4, 0x012434,1, 0x012440,4, 0x012454,1, 0x012460,4, 0x012474,1, 0x012480,4, 0x012494,1, 0x0124a0,4, 0x0124b4,1, 0x0124c0,4, 0x0124d4,1, 0x0124e0,4, 0x0124f4,1, 0x012500,4, 0x012514,1, 0x012520,4, 0x012534,1, 0x012540,4, 0x012554,1, 0x012560,4, 0x012574,1, 0x012580,4, 0x012594,1, 0x0125a0,4, 0x0125b4,1, 0x0125c0,4, 0x0125d4,1, 0x0125e0,4, 0x0125f4,1, 0x012600,4, 0x012614,1, 0x012620,4, 0x012634,1, 0x012640,54, 0x012800,4, 0x012814,1, 0x012820,4, 0x012834,1, 0x012840,4, 0x012854,1, 0x012860,4, 0x012874,1, 0x012880,4, 0x012894,1, 0x0128a0,4, 0x0128b4,1, 0x0128c0,4, 0x0128d4,1, 0x0128e0,4, 0x0128f4,1, 0x012900,4, 0x012914,1, 0x012920,4, 0x012934,1, 0x012940,4, 0x012954,1, 0x012960,4, 0x012974,1, 0x012980,4, 0x012994,1, 0x0129a0,4, 0x0129b4,1, 0x0129c0,4, 0x0129d4,1, 0x0129e0,4, 0x0129f4,1, 0x012a00,4, 0x012a14,1, 0x012a20,4, 0x012a34,1, 0x012a40,54, 0x012c00,4, 0x012c14,1, 0x012c20,4, 0x012c34,1, 0x012c40,4, 0x012c54,1, 0x012c60,4, 0x012c74,1, 0x012c80,4, 0x012c94,1, 0x012ca0,4, 0x012cb4,1, 0x012cc0,4, 0x012cd4,1, 0x012ce0,4, 0x012cf4,1, 0x012d00,4, 0x012d14,1, 0x012d20,4, 0x012d34,1, 0x012d40,4, 0x012d54,1, 0x012d60,4, 0x012d74,1, 0x012d80,4, 0x012d94,1, 0x012da0,4, 0x012db4,1, 0x012dc0,4, 0x012dd4,1, 0x012de0,4, 0x012df4,1, 0x012e00,4, 0x012e14,1, 0x012e20,4, 0x012e34,1, 0x012e40,54, 0x013000,144, 0x013400,144, 0x013800,1, 0x013810,1, 0x013820,1, 0x013830,1, 0x013840,1, 0x013850,1, 0x013860,1, 0x013870,1, 0x013880,1, 0x013890,1, 0x0138a0,1, 0x0138b0,1, 0x0138c0,1, 0x0138d0,1, 0x0138e0,1, 0x0138f0,1, 0x013900,1, 0x013910,1, 0x013a00,4, 0x013a14,1, 0x013a20,4, 0x013a34,1, 0x013a40,7, 0x013a80,4, 0x013a94,1, 0x013aa0,4, 0x013ab4,1, 0x013ac0,7, 0x013b00,4, 0x013b14,1, 0x013b20,4, 0x013b34,1, 0x013b40,7, 0x013b80,4, 0x013b94,1, 0x013ba0,4, 0x013bb4,1, 0x013bc0,7, 0x013c00,11, 0x013c30,11, 0x013c60,31, 0x013ce0,3, 0x013cf0,1, 0x013d04,1, 0x013d14,5, 0x014000,129, 0x014208,4, 0x014224,4, 0x014240,9, 0x014270,1, 0x014280,5, 0x014298,5, 0x015000,33, 0x015090,1, 0x0150a0,1, 0x0150b4,4, 0x0150d0,3, 0x0150e0,5, 0x015100,1, 0x015110,15, 0x015400,7, 0x015420,7, 0x015440,7, 0x015460,7, 0x015480,7, 0x0154a0,7, 0x0154c0,7, 0x0154e0,7, 0x015500,7, 0x015520,7, 0x015540,7, 0x015560,7, 0x015580,7, 0x0155a0,7, 0x0155c0,7, 0x0155e0,7, 0x015600,7, 0x015620,7, 0x015640,7, 0x015660,7, 0x015680,7, 0x0156a0,7, 0x0156c0,7, 0x0156e0,7, 0x015700,7, 0x015720,7, 0x015740,7, 0x015760,7, 0x015780,7, 0x0157a0,7, 0x0157c0,7, 0x0157e0,7, 0x016000,1, 0x016008,4, 0x016024,4, 0x016044,1, 0x016054,7, 0x016080,2, 0x016090,1, 0x0160a0,1, 0x0160b0,2, 0x016100,1, 0x016108,4, 0x016124,4, 0x016144,1, 0x016154,5, 0x016180,2, 0x016190,1, 0x0161a0,1, 0x0161b0,2, 0x016200,29, 0x017000,72, 0x017180,1, 0x017190,1, 0x0171a0,1, 0x0171b0,1, 0x0171c0,1, 0x0171d0,1, 0x0171e0,1, 0x0171f0,1, 0x017200,23, 0x018000,1, 0x018008,4, 0x018024,4, 0x018044,1, 0x018054,9, 0x018090,2, 0x0180a0,1, 0x0180b0,1, 0x0180c0,2, 0x018100,33, 0x018188,13, 0x0181c0,4, 0x0181e0,5, 0x019000,3, 0x019010,3, 0x019020,3, 0x019030,3, 0x019040,3, 0x019050,3, 0x019060,3, 0x019070,3, 0x019080,3, 0x019090,3, 0x0190a0,3, 0x0190b0,3, 0x0190c0,3, 0x0190d0,3, 0x0190e0,3, 0x0190f0,3, 0x019100,3, 0x019110,3, 0x019120,3, 0x019130,3, 0x019140,3, 0x019150,3, 0x019160,3, 0x019170,3, 0x019180,3, 0x019190,3, 0x0191a0,3, 0x0191b0,3, 0x0191c0,3, 0x0191d0,3, 0x0191e0,3, 0x0191f0,3, 0x019200,1, 0x019208,1, 0x019210,1, 0x019218,1, 0x019220,1, 0x019228,1, 0x019230,1, 0x019238,1, 0x019240,1, 0x019248,1, 0x019250,1, 0x019258,1, 0x019260,1, 0x019268,1, 0x019270,1, 0x019278,1, 0x019280,1, 0x019288,1, 0x019290,1, 0x019298,1, 0x0192a0,1, 0x0192a8,1, 0x0192b0,1, 0x0192b8,1, 0x0192c0,1, 0x0192c8,1, 0x0192d0,1, 0x0192d8,1, 0x0192e0,1, 0x0192e8,1, 0x0192f0,1, 0x0192f8,1, 0x019300,65, 0x019408,4, 0x019424,4, 0x019440,6, 0x019460,1, 0x019470,14, 0x01a004,2, 0x01a034,19, 0x01a084,1, 0x01a08c,4, 0x01a0c0,1, 0x01a0d0,8, 0x01a100,32, 0x01a184,2, 0x01a198,2, 0x01a1a4,2, 0x01a1b8,2, 0x01a1c8,3, 0x01a1e8,5, 0x01a200,4, 0x01a404,1, 0x01a40c,4, 0x01a444,1, 0x01a450,4, 0x01a464,1, 0x01a474,3, 0x01a484,1, 0x01a48c,1, 0x01a494,9, 0x01a500,8, 0x01a608,3, 0x01a618,4, 0x01a63c,2, 0x01a650,4, 0x01a680,4, 0x01a6a0,20, 0x01a704,2, 0x01a730,20, 0x01a784,2, 0x01a790,2, 0x01a7a0,6, 0x01a7c0,2, 0x01a800,3, 0x01a810,3, 0x01a820,3, 0x01a830,3, 0x01a840,3, 0x01a850,3, 0x01a860,3, 0x01a870,3, 0x01a880,9, 0x01a900,3, 0x01a910,3, 0x01a920,3, 0x01a930,3, 0x01a940,3, 0x01a950,3, 0x01a960,3, 0x01a970,3, 0x01a980,2, 0x01aa04,1, 0x01aa3c,19, 0x01ac00,1, 0x01ac28,1, 0x01ac50,1, 0x01ac78,1, 0x01aca0,13, 0x01ada8,2, 0x01add8,4, 0x01ae00,19, 0x01ae50,6, 0x01b000,13, 0x01b040,6, 0x01b060,1, 0x01b080,3, 0x01b090,6, 0x01b100,9, 0x01b128,1, 0x01b130,1, 0x01b140,2, 0x01b150,3, 0x01b160,4, 0x01b400,14, 0x01b440,14, 0x01b480,14, 0x01b4c0,14, 0x01b500,14, 0x01b540,14, 0x01b580,14, 0x01b5c0,14, 0x01b600,14, 0x01b640,14, 0x01b680,14, 0x01b6c0,14, 0x01b800,6, 0x020004,1, 0x02000c,4, 0x020080,3, 0x020094,3, 0x020800,224, 0x020c00,16, 0x021004,1, 0x02100c,4, 0x021400,5, 0x021418,5, 0x021480,1, 0x021704,2, 0x02173c,17, 0x0217fc,2, 0x021844,1, 0x021884,5, 0x0218c0,16, 0x022280,14, 0x022408,6, 0x022424,1, 0x022444,1, 0x022454,5, 0x022504,1, 0x02250c,4, 0x022624,1, 0x02262c,3, 0x02263c,1, 0x022804,1, 0x02280c,4, 0x022904,4, 0x022924,4, 0x022a04,5, 0x022a80,36, 0x024000,32, 0x024084,7, 0x0240c0,16, 0x024108,3, 0x024120,11, 0x024200,5, 0x024220,1, 0x024230,8, 0x024258,1, 0x024260,1, 0x024270,9, 0x0242a0,1, 0x0242b0,4, 0x0242c8,2, 0x024300,7, 0x024320,4, 0x024398,9, 0x0243c0,16, 0x024424,4, 0x024464,20, 0x0244b8,2, 0x0244c4,1, 0x0244cc,3, 0x0244e0,2, 0x0244f0,3, 0x024500,3, 0x024510,3, 0x024520,3, 0x024530,3, 0x024540,3, 0x024550,3, 0x024560,3, 0x024600,3, 0x024884,11, 0x0248b4,3, 0x0248c4,1, 0x0248cc,1, 0x0248d4,1, 0x0248dc,1, 0x0248f0,2, 0x024908,6, 0x024928,6, 0x024968,6, 0x024984,3, 0x024994,1, 0x02499c,6, 0x0249b8,16, 0x024a08,6, 0x024a28,6, 0x024a68,6, 0x024a84,1, 0x024a8c,1, 0x024a94,1, 0x024a9c,3, 0x024ab4,3, 0x024ac8,2, 0x024b00,8, 0x024b60,4, 0x024b78,2, 0x024b84,1, 0x024b8c,1, 0x024c00,2, 0x024c24,3, 0x024c34,3, 0x025004,5, 0x0257f0,42, 0x0258d8,2, 0x025904,1, 0x02590c,1, 0x026000,131, 0x026400,2, 0x0267fc,9, 0x026824,6, 0x026840,2, 0x026864,1, 0x02686c,1, 0x026874,3, 0x026884,1, 0x0268a4,7, 0x0268c4,2, 0x0268d4,3, 0x0268e4,1, 0x0268f0,4, 0x026904,1, 0x02690c,4, 0x026940,1, 0x026980,33, 0x026a0c,7, 0x026a30,1, 0x026a44,4, 0x026a60,1, 0x026a70,1, 0x026b00,10, 0x026b44,2, 0x026b68,6, 0x026b84,2, 0x026ba8,14, 0x026c00,10, 0x026c60,8, 0x026c84,1, 0x026c8c,4, 0x026cc4,1, 0x026ccc,4, 0x026d04,1, 0x026d58,42, 0x026e04,1, 0x026e0c,3, 0x028000,1, 0x02aa04,1, 0x02aa0c,4, 0x02ab00,40, 0x02aba4,1, 0x02abac,1, 0x02abb4,1, 0x02abbc,1, 0x02abc4,1, 0x02abcc,1, 0x02abe0,3, 0x02abf8,4, 0x02ac10,3, 0x02ac44,3, 0x02ad00,1, 0x02ad08,1, 0x02ad10,1, 0x02ad18,1, 0x02ad20,1, 0x02ad28,1, 0x02ad30,1, 0x02ad38,1, 0x02ad40,1, 0x02ad48,1, 0x02ad50,1, 0x02ad58,1, 0x02ad60,1, 0x02ad68,1, 0x02ad70,1, 0x02ad78,1, 0x02ad80,1, 0x02ad88,1, 0x02ad90,1, 0x02ad98,1, 0x02ada0,1, 0x02ada8,1, 0x02adb0,1, 0x02adb8,1, 0x02adc0,1, 0x02adc8,1, 0x02add0,1, 0x02add8,1, 0x02ade0,1, 0x02ade8,1, 0x02adf0,1, 0x02adf8,1, 0x02ae00,6, 0x02ae40,6, 0x02ae80,8, 0x02c000,6, 0x02c024,2, 0x02c030,4, 0x02c100,6, 0x02c204,1, 0x02c214,3, 0x02c224,1, 0x02c22c,4, 0x02c244,3, 0x02c254,1, 0x02c264,5, 0x02c280,4, 0x02c400,1, 0x02c428,1, 0x02c450,1, 0x02c478,1, 0x02c4a0,16, 0x02c5a8,2, 0x02c5d8,4, 0x02c600,19, 0x02c650,6, 0x02c800,235, 0x02cbb0,6, 0x02cc40,8, 0x02ccf8,11, 0x02cd40,18, 0x030004,2, 0x030034,19, 0x030084,2, 0x0300bc,17, 0x030104,2, 0x030138,27, 0x030310,3, 0x030340,2, 0x03034c,2, 0x030358,3, 0x030384,1, 0x0303c0,16, 0x030404,1, 0x03040c,4, 0x030444,1, 0x03044c,4, 0x030484,1, 0x03048c,4, 0x0304c0,4, 0x030500,1, 0x030508,4, 0x030520,3, 0x030540,1, 0x030548,4, 0x030560,3, 0x030580,3, 0x031480,19, 0x031500,12, 0x031600,16, 0x031704,5, 0x031800,24, 0x031c00,6, 0x031c1c,1, 0x031c40,10, 0x031c80,6, 0x031c9c,1, 0x031cc0,10, 0x031d00,6, 0x031d1c,1, 0x031d40,10, 0x031d80,6, 0x031d9c,1, 0x031dc0,10, 0x031e00,6, 0x031e1c,1, 0x031e40,10, 0x031e80,6, 0x031e9c,1, 0x031ec0,10, 0x031f00,6, 0x031f1c,1, 0x031f40,10, 0x031f80,6, 0x031f9c,1, 0x031fc0,10, 0x032000,11, 0x032100,11, 0x032200,18, 0x032280,6, 0x032304,1, 0x03230c,3, 0x03231c,1, 0x032400,6, 0x032420,1, 0x032444,2, 0x032454,3, 0x032464,2, 0x032474,11, 0x032610,1, 0x032618,1, 0x032640,6, 0x034000,24, 0x034080,10, 0x0340ac,2, 0x0340f0,18, 0x034200,35, 0x034400,24, 0x034480,10, 0x0344ac,2, 0x0344f0,18, 0x034600,35, 0x034c00,7, 0x034c20,4, 0x034c40,9, 0x034c80,9, 0x034cc0,3, 0x034cd0,3, 0x034e04,3, 0x034e44,5, 0x034e80,6, 0x034ea0,4, 0x035000,2, 0x035010,3, 0x035044,3, 0x035100,66, 0x035210,3, 0x035244,3, 0x035300,64, 0x035404,1, 0x03540c,8, 0x035600,2, 0x035610,3, 0x035644,3, 0x035700,64, 0x035804,5, 0x035900,2, 0x037000,1, 0x037080,9, 0x0370ac,4, 0x037100,1, 0x037108,2, 0x037400,1, 0x037480,9, 0x0374ac,4, 0x037500,1, 0x037508,2, 0x037800,4, 0x037824,1, 0x038000,6, 0x038020,5, 0x038104,4, 0x038120,3, 0x038130,1, 0x038180,14, 0x0381c0,4, 0x038400,3, 0x038428,3, 0x038450,3, 0x038478,3, 0x0384a0,37, 0x0385a8,2, 0x0385d8,4, 0x038600,51, 0x0386d0,6, 0x038800,31, 0x03893c,26, 0x0389c0,19, 0x038a24,4, 0x038a84,14, 0x038c00,75, 0x038d30,6, 0x038e00,12, 0x039040,9, 0x039070,1, 0x039100,1, 0x039110,5, 0x039130,5, 0x039150,1, 0x039224,6, 0x039240,16, 0x039284,1, 0x0392c0,22, 0x039320,6, 0x039344,1, 0x03934c,4, 0x039384,1, 0x03938c,4, 0x0393c4,1, 0x0393cc,4, 0x039400,8, 0x039600,7, 0x039620,1, 0x039640,13, 0x039704,1, 0x03970c,13, 0x03a000,35, 0x03a090,3, 0x03a100,35, 0x03a190,3, 0x03a200,35, 0x03a290,3, 0x03a300,35, 0x03a390,3, 0x03a400,35, 0x03a490,3, 0x03a500,1, 0x03a800,4, 0x03a884,1, 0x03a8c0,16, 0x03a980,1, 0x03a9e4,2, 0x03a9f0,4, 0x03aa04,2, 0x03aa10,4, 0x03aa24,2, 0x03aa30,4, 0x03aa44,2, 0x03aa50,4, 0x03aa64,2, 0x03aa70,5, 0x03aa88,1, 0x03ac00,2, 0x03ac0c,3, 0x03ac24,2, 0x03ac44,3, 0x03ad00,11, 0x03ad40,11, 0x03ad84,1, 0x03adc0,26, 0x03ae30,2, 0x03ae44,3, 0x03ae54,1, 0x03ae5c,2, 0x03ae80,2, 0x03ae94,2, 0x03aea4,1, 0x03aeac,3, 0x03aec0,3, 0x03aee0,17, 0x03af40,30, 0x03afc0,14, 0x03b000,2, 0x03b00c,3, 0x03b01c,3, 0x03b02c,3, 0x03b03c,3, 0x03b04c,3, 0x03b05c,3, 0x03b06c,3, 0x03b07c,3, 0x03b08c,3, 0x03b09c,3, 0x03b104,1, 0x03b140,38, 0x03b204,1, 0x03b214,5, 0x03b234,1, 0x03b23c,3, 0x03b2c0,4, 0x03b400,35, 0x03b490,6, 0x03b500,13, 0x03c000,3, 0x03c010,3, 0x03c020,3, 0x03c040,9, 0x03c068,6, 0x03c090,2, 0x03c0a0,3, 0x03c0c0,12, 0x03c0f4,1, 0x03c100,2, 0x03c110,3, 0x03c120,1, 0x03c130,11, 0x03c160,2, 0x03c180,4, 0x03c194,3, 0x03c1a4,2, 0x03c1b0,4, 0x03c2e0,5, 0x03c2f8,2, 0x03c30c,13, 0x03c34c,77, 0x03c48c,18, 0x03c500,32, 0x03c800,16, 0x03c84c,18, 0x03c8e0,2, 0x03c8ec,3, 0x03c900,1, 0x03c910,5, 0x03c930,5, 0x03c950,5, 0x03c970,5, 0x03c9a4,3, 0x03ca78,34, 0x03cb3c,18, 0x03cb94,3, 0x03cba4,3, 0x03cbf0,1, 0x03cbf8,10, 0x03cc30,1, 0x03cc44,4, 0x03cc60,1, 0x03cc80,1, 0x03cc90,1, 0x03d004,6, 0x03e004,1, 0x03e00c,4, 0x03e404,1, 0x03e40c,4, 0x03e604,1, 0x03e60c,4, 0x03e800,2, 0x03f034,19, 0x03f084,2, 0x03f0c0,16, 0x03f200,1, 0x03f210,1, 0x03f280,9, 0x03f2c0,30, 0x03f340,14, 0x03f380,14, 0x040000,6, 0x040020,1, 0x040040,13, 0x040104,1, 0x040130,20, 0x040204,1, 0x04020c,1, 0x040214,1, 0x040224,1, 0x04022c,1, 0x040234,1, 0x040244,1, 0x04024c,3, 0x040304,1, 0x040340,16, 0x040390,1, 0x0403a0,1, 0x0403b0,1, 0x0403c0,1, 0x0403d0,6, 0x040400,8, 0x040440,24, 0x040500,5, 0x040600,5, 0x040800,4, 0x040818,6, 0x040928,9, 0x040954,4, 0x040970,1, 0x040980,3, 0x040990,12, 0x0409c4,13, 0x040a04,1, 0x040a0c,4, 0x040a40,1, 0x040a50,5, 0x040a70,1, 0x040a80,1, 0x040a90,4, 0x040c04,1, 0x040c0c,4, 0x040c40,1, 0x040c60,8, 0x040d40,1, 0x040d80,7, 0x040e04,1, 0x040e0c,4, 0x040e40,1, 0x040e60,8, 0x040f40,1, 0x040f80,7, 0x041008,6, 0x041028,10, 0x041080,26, 0x041100,8, 0x041180,13, 0x0411c0,11, 0x041400,6, 0x04141c,1, 0x041440,10, 0x041480,6, 0x04149c,1, 0x0414c0,10, 0x041500,6, 0x04151c,1, 0x041540,10, 0x041580,6, 0x04159c,1, 0x0415c0,10, 0x041600,6, 0x04161c,1, 0x041640,10, 0x041680,6, 0x04169c,1, 0x0416c0,10, 0x041700,6, 0x04171c,1, 0x041740,10, 0x041780,6, 0x04179c,1, 0x0417c0,10, 0x041804,1, 0x04180c,5, 0x042000,3, 0x042024,4, 0x042084,14, 0x042500,51, 0x0425d0,6, 0x042800,1, 0x042828,1, 0x042850,1, 0x042878,1, 0x0428a0,9, 0x0429a8,2, 0x0429d8,4, 0x042a00,19, 0x042a50,6, 0x043000,9, 0x043040,18, 0x043100,5, 0x043118,6, 0x043134,3, 0x050000,1, 0x050008,4, 0x050024,4, 0x050084,8, 0x0500a8,2, 0x0500c4,5, 0x050104,1, 0x050178,34, 0x050204,1, 0x05020c,1, 0x050214,1, 0x050224,1, 0x05022c,1, 0x050234,1, 0x05023c,1, 0x050244,1, 0x05024c,1, 0x050254,1, 0x050264,1, 0x05026c,1, 0x050274,1, 0x050284,1, 0x050290,4, 0x0502a4,1, 0x0502b4,3, 0x0502c4,1, 0x0502cc,1, 0x0502e4,1, 0x0502ec,1, 0x0502f4,1, 0x0502fc,1, 0x050304,1, 0x05030c,1, 0x050314,1, 0x05031c,1, 0x050324,1, 0x05032c,1, 0x050334,1, 0x05033c,1, 0x050344,3, 0x050354,3, 0x050364,6, 0x050380,32, 0x050404,1, 0x050438,18, 0x050500,3, 0x050524,4, 0x050584,2, 0x050598,2, 0x0505a4,1, 0x0505b0,4, 0x0505c4,1, 0x0505cc,1, 0x0505d4,1, 0x0505e0,1, 0x0505f0,17, 0x050700,2, 0x050800,1, 0x050820,9, 0x050850,5, 0x050870,5, 0x0508a0,8, 0x050900,1, 0x050920,9, 0x050950,4, 0x05096c,37, 0x050a04,4, 0x050a40,1, 0x050a50,3, 0x050a60,25, 0x050ad4,1, 0x050ae0,1, 0x050ae8,6, 0x050b04,1, 0x050b0c,1, 0x050b14,1, 0x050b20,2, 0x050b30,5, 0x050b50,4, 0x050b64,1, 0x050b70,11, 0x050ba4,4, 0x050bc0,5, 0x050be0,1, 0x050bf0,1, 0x050c00,1, 0x050c14,4, 0x050c30,1, 0x050c40,1, 0x050c50,1, 0x050c64,1, 0x050c6c,2, 0x050c90,1, 0x050ca0,1, 0x050cb0,1, 0x050cc0,1, 0x050cd0,1, 0x050ce0,1, 0x050cf0,1, 0x050d00,1, 0x050d10,1, 0x050d20,1, 0x050d30,1, 0x050d40,1, 0x050d50,1, 0x050d60,1, 0x050d70,1, 0x050d80,1, 0x050d90,1, 0x050db0,1, 0x050dc0,1, 0x050de0,1, 0x050df0,1, 0x050e00,1, 0x050e10,1, 0x050e20,1, 0x050e30,1, 0x050e40,1, 0x050e50,1, 0x050e60,1, 0x050e70,1, 0x050e80,1, 0x050e90,1, 0x050ea4,5, 0x050ec0,1, 0x050ed0,1, 0x050f00,65, 0x051010,7, 0x051030,2, 0x051040,1, 0x051060,10, 0x051180,4, 0x0511a0,10, 0x051200,7, 0x051220,4, 0x051234,1, 0x05123c,4, 0x051250,2, 0x051260,1, 0x051270,1, 0x051280,2, 0x051300,1, 0x051320,8, 0x051348,3, 0x051400,9, 0x051440,3, 0x051460,1, 0x051480,3, 0x051504,5, 0x051580,32, 0x052000,210, 0x052400,2, 0x053000,50, 0x053400,59, 0x0534f0,6, 0x053604,7, 0x053624,7, 0x053664,7, 0x053704,1, 0x053740,18, 0x0537a0,10, 0x0537e0,29, 0x053860,11, 0x0538a4,7, 0x054000,3, 0x054024,4, 0x054084,3, 0x0540c0,6, 0x0540e0,1, 0x055400,107, 0x0555b0,6, 0x058004,5, 0x058300,9, 0x058400,1, 0x058408,5, 0x058420,6, 0x058444,2, 0x058460,14, 0x0587f0,1, 0x058800,1, 0x058810,1, 0x058820,1, 0x058830,1, 0x058840,1, 0x058850,1, 0x058860,1, 0x058870,1, 0x058880,1, 0x058890,1, 0x058904,3, 0x058978,66, 0x058a84,1, 0x058a8c,1, 0x058a94,1, 0x058aa4,1, 0x058aac,1, 0x058ab4,1, 0x058ac0,2, 0x058acc,2, 0x058c00,3, 0x058c24,4, 0x058d04,1, 0x058d0c,11, 0x058d40,2, 0x058f04,5, 0x058f40,16, 0x058fe8,6, 0x059004,5, 0x059080,39, 0x059120,1, 0x059130,1, 0x059140,1, 0x059150,1, 0x059160,1, 0x059170,1, 0x059180,1, 0x059190,1, 0x0591b0,2, 0x059800,1, 0x059810,1, 0x059820,1, 0x059830,1, 0x059840,1, 0x059850,1, 0x059860,1, 0x059870,1, 0x059880,1, 0x059890,1, 0x0598a0,1, 0x0598b0,1, 0x0598c0,1, 0x0598d0,1, 0x0598e0,1, 0x0598f0,1, 0x059900,1, 0x059910,1, 0x059920,1, 0x059930,1, 0x059940,1, 0x059998,2, 0x059a08,6, 0x059b00,16, 0x059b44,3, 0x059b54,1, 0x059b5c,2, 0x059c00,2, 0x059c28,2, 0x059c50,2, 0x059c78,2, 0x059ca0,20, 0x059da8,2, 0x059dd8,4, 0x059e00,35, 0x059e90,6, 0x05a000,7, 0x05a04c,3, 0x05a070,4, 0x05a088,3, 0x05a0a0,1, 0x05a0b0,1, 0x05a0c0,1, 0x05a0e0,4, 0x05a200,9, 0x05a240,16, 0x060020,8, 0x060120,4, 0x060160,2, 0x060174,1, 0x06017c,3, 0x060190,8, 0x0601b8,3, 0x060240,16, 0x060300,1, 0x060310,4, 0x060328,1, 0x060330,1, 0x060344,8, 0x060380,5, 0x0603b4,3, 0x060800,4, 0x060820,4, 0x060838,3, 0x060860,8, 0x060900,1, 0x060914,1, 0x06091c,2, 0x060930,1, 0x060a00,32, 0x060a84,1, 0x060a8c,1, 0x060a94,1, 0x060a9c,5, 0x060ac4,1, 0x060ae4,7, 0x060b04,1, 0x060b14,18, 0x060bf0,12, 0x060c24,1, 0x060c2c,1, 0x060c34,1, 0x062008,5, 0x062024,3, 0x062034,1, 0x06203c,1, 0x062044,1, 0x06204c,1, 0x062054,1, 0x06205c,3, 0x06206c,1, 0x062080,2, 0x062094,1, 0x06209c,2, 0x0620b0,1, 0x0620c0,1, 0x0620d0,1, 0x0620e0,1, 0x0620f4,4, 0x0621c0,2, 0x0621e4,3, 0x0621f4,7, 0x062404,5, 0x062800,12, 0x062834,1, 0x06283c,5, 0x062854,8, 0x062900,4, 0x062914,1, 0x06291c,1, 0x062924,1, 0x06292c,1, 0x062934,1, 0x06293c,2, 0x062950,3, 0x063000,1, 0x063010,4, 0x063024,1, 0x06302c,1, 0x063034,1, 0x063044,1, 0x06304c,1, 0x063054,1, 0x06305c,2, 0x063070,1, 0x063080,1, 0x063090,1, 0x0630a4,4, 0x0630c4,1, 0x0630cc,1, 0x0630d4,3, 0x0630e4,1, 0x0630ec,1, 0x0630f4,1, 0x063100,2, 0x063144,1, 0x06314c,1, 0x063154,1, 0x063164,1, 0x06316c,1, 0x063174,1, 0x063180,19, 0x063208,1, 0x063210,1, 0x063218,1, 0x063224,7, 0x063248,8, 0x063270,4, 0x063300,8, 0x064004,1, 0x06400c,4, 0x064200,3, 0x064300,1, 0x064308,6, 0x064324,2, 0x064338,2, 0x064380,3, 0x064394,1, 0x06439c,2, 0x064400,2, 0x064420,3, 0x064430,1, 0x064440,1, 0x064484,2, 0x0644b8,18, 0x064504,1, 0x06450c,1, 0x064514,1, 0x064804,1, 0x064884,2, 0x0648c8,14, 0x065018,4, 0x065078,11, 0x0650c0,16, 0x065114,1, 0x065200,43, 0x0652b0,6, 0x065300,1, 0x065f00,2, 0x066000,2, 0x066028,2, 0x066050,2, 0x066078,2, 0x0660a0,25, 0x0661a8,2, 0x0661d8,4, 0x066200,35, 0x066290,6, 0x066400,6, 0x070004,5, 0x070400,7, 0x070420,10, 0x070450,7, 0x070500,5, 0x070524,1, 0x07052c,1, 0x070534,1, 0x070540,4, 0x070600,142, 0x070884,2, 0x0708a8,22, 0x070904,1, 0x070940,16, 0x071000,1, 0x071094,1, 0x071104,2, 0x071140,16, 0x071204,1, 0x07120c,4, 0x071404,1, 0x07140c,1, 0x071414,1, 0x07141c,1, 0x071424,1, 0x07142c,1, 0x071434,1, 0x07143c,1, 0x071800,2, 0x071904,1, 0x071940,16, 0x071a04,1, 0x071a40,16, 0x071b04,1, 0x071b40,16, 0x072000,4, 0x072804,1, 0x07280c,4, 0x072880,1, 0x072888,4, 0x073000,1, 0x073020,1, 0x073040,1, 0x073060,1, 0x073080,1, 0x0730a0,1, 0x0730c0,1, 0x0730e0,1, 0x073100,1, 0x073120,1, 0x073140,1, 0x073160,1, 0x073180,1, 0x0731a0,1, 0x0731c0,1, 0x0731e0,1, 0x073200,1, 0x073220,1, 0x073240,1, 0x073260,1, 0x073280,1, 0x0732a0,1, 0x0732c0,1, 0x0732e0,1, 0x073300,1, 0x073320,1, 0x073340,1, 0x073360,1, 0x073380,1, 0x0733a0,1, 0x0733c0,1, 0x0733e0,1, 0x073800,16, 0x074830,4, 0x074884,1, 0x074890,4, 0x074900,19, 0x074950,6, 0x074980,9, 0x0749c0,20, 0x075000,5, 0x075020,3, 0x075030,9, 0x075100,4, 0x075200,4, 0x076000,1, 0x076028,1, 0x076050,1, 0x076078,1, 0x0760a0,12, 0x0761a8,2, 0x0761d8,4, 0x076200,19, 0x076250,6, 0x078000,20, 0x078054,9, 0x07807c,3, 0x07808c,7, 0x078100,5, 0x078118,4, 0x078130,2, 0x078204,2, 0x078244,15, 0x078284,2, 0x0782c4,17, 0x07830c,4, 0x078320,2, 0x078340,2, 0x078360,2, 0x078380,2, 0x0783a0,2, 0x0783d4,1, 0x0783dc,1, 0x078404,1, 0x07840c,4, 0x078804,18, 0x078850,4, 0x078884,1, 0x07889c,1, 0x0788a4,23, 0x079000,9, 0x079040,16, 0x079700,14, 0x079740,14, 0x079780,14, 0x0797c0,14, 0x079804,2, 0x079828,6, 0x079844,2, 0x079868,6, 0x079884,2, 0x0798a8,7, 0x0798d0,7, 0x079904,1, 0x07990c,1, 0x079914,1, 0x079a04,2, 0x079a40,16, 0x079a84,2, 0x079a90,2, 0x079a9c,13, 0x079b04,2, 0x079b3c,17, 0x079c04,2, 0x079c40,16, 0x079c84,2, 0x079c98,2, 0x079cc4,13, 0x079cfc,7, 0x079d24,1, 0x079d2c,1, 0x079d80,2, 0x079d8c,1, 0x079fa0,3, 0x079fb0,1, 0x07a000,3, 0x07a010,3, 0x07a020,3, 0x07a040,9, 0x07a068,6, 0x07a090,2, 0x07a0a0,3, 0x07a0c0,12, 0x07a0f4,1, 0x07a100,2, 0x07a110,3, 0x07a120,1, 0x07a130,11, 0x07a160,2, 0x07a180,4, 0x07a194,3, 0x07a1a4,2, 0x07a1b0,4, 0x07a2e0,5, 0x07a2f8,2, 0x07a30c,13, 0x07a34c,77, 0x07a48c,18, 0x07a500,32, 0x07a800,16, 0x07a84c,18, 0x07a8e0,2, 0x07a8ec,3, 0x07a900,1, 0x07a910,5, 0x07a930,5, 0x07a950,5, 0x07a970,5, 0x07a9a4,3, 0x07aa78,34, 0x07ab3c,18, 0x07ab94,3, 0x07aba4,3, 0x07abf0,1, 0x07abf8,10, 0x07ac30,1, 0x07ac44,4, 0x07ac60,1, 0x07ac80,1, 0x07ac90,1, 0x07b004,6, 0x080000,29, 0x080340,14, 0x08037c,3, 0x08038c,1, 0x0803c0,2, 0x0803e4,3, 0x0803f4,3, 0x080404,5, 0x080804,2, 0x080874,35, 0x081000,129, 0x081210,4, 0x081228,3, 0x081240,2, 0x081264,2, 0x081270,4, 0x081284,2, 0x081298,2, 0x0812a4,1, 0x0812b4,21, 0x08130c,9, 0x081344,1, 0x08134c,1, 0x081354,1, 0x081364,2, 0x081370,4, 0x081384,2, 0x081390,4, 0x0813a4,2, 0x0813b0,4, 0x0813c4,2, 0x0813d8,2, 0x081404,2, 0x081478,34, 0x081504,2, 0x081518,15, 0x081558,3, 0x08156c,1, 0x081580,5, 0x081598,2, 0x0815a4,6, 0x0815c0,5, 0x0815e0,5, 0x081600,5, 0x081620,5, 0x081640,5, 0x081660,5, 0x081680,5, 0x0816a0,5, 0x0816c0,5, 0x082000,29, 0x082340,14, 0x08237c,3, 0x08238c,1, 0x0823c0,2, 0x0823e4,3, 0x0823f4,3, 0x082404,4, 0x082804,2, 0x082874,35, 0x082904,2, 0x082974,35, 0x083000,129, 0x083210,7, 0x083244,2, 0x083250,8, 0x083274,3, 0x083284,1, 0x08328c,1, 0x083294,1, 0x0832a4,1, 0x0832b4,19, 0x083304,2, 0x083310,4, 0x083324,2, 0x083330,14, 0x083384,2, 0x08339c,9, 0x084000,29, 0x084340,14, 0x08437c,3, 0x08438c,1, 0x0843c0,2, 0x0843e4,3, 0x0843f4,3, 0x084404,4, 0x084804,2, 0x084874,35, 0x084904,2, 0x084974,35, 0x085000,32, 0x085200,1, 0x085210,8, 0x085240,12, 0x085280,3, 0x0852a4,1, 0x0852b4,3, 0x085304,1, 0x08530c,1, 0x085314,1, 0x085324,2, 0x085334,3, 0x085344,2, 0x085358,2, 0x085364,2, 0x085378,2, 0x085384,2, 0x085398,2, 0x0853c0,23, 0x086000,2, 0x086020,2, 0x086040,4, 0x086054,1, 0x086400,11, 0x086800,67, 0x086910,6, 0x086a00,9, 0x086a40,20, 0x087000,26, 0x087100,1, 0x087108,1, 0x087110,1, 0x087118,1, 0x087120,1, 0x087128,1, 0x087130,1, 0x087138,1, 0x087140,1, 0x087148,1, 0x087150,1, 0x087158,1, 0x087160,1, 0x087168,1, 0x087170,1, 0x087178,1, 0x087180,10, 0x0871b0,9, 0x087200,1, 0x087208,1, 0x087210,2, 0x090000,17, 0x090060,2, 0x09006c,1, 0x090104,1, 0x090140,25, 0x0901a8,2, 0x0901c0,9, 0x0901e8,2, 0x090204,1, 0x090220,24, 0x090300,6, 0x090320,10, 0x090350,3, 0x090360,3, 0x090370,1, 0x090400,6, 0x090420,10, 0x090450,3, 0x090460,3, 0x090470,1, 0x090500,14, 0x090540,14, 0x090580,2, 0x0905a4,2, 0x0905b8,4, 0x0905d0,4, 0x091004,3, 0x091800,8, 0x091824,2, 0x091830,10, 0x091860,6, 0x092000,32, 0x093000,1, 0x093020,1, 0x093040,1, 0x093060,1, 0x093080,1, 0x0930a0,1, 0x0930c0,1, 0x0930e0,1, 0x093100,1, 0x0931a0,1, 0x0931c0,1, 0x093200,4, 0x093404,1, 0x093440,16, 0x093504,1, 0x09353c,28, 0x0935b0,2, 0x0935c0,3, 0x093600,4, 0x094000,9, 0x094040,19, 0x094090,6, 0x0940c0,1, 0x0940c8,4, 0x094800,1, 0x094828,1, 0x094850,1, 0x094878,1, 0x0948a0,8, 0x0949a8,2, 0x0949d8,4, 0x094a00,19, 0x094a50,6, 0x096000,1, 0x096010,4, 0x096028,3, 0x096104,1, 0x09610c,7, 0x096204,1, 0x09620c,4, 0x096488,1, 0x096498,4, 0x0964b0,4, 0x096504,1, 0x09650c,4, 0x096584,4, 0x096600,16, 0x096644,2, 0x096658,10, 0x096684,2, 0x0966bc,51, 0x096800,11, 0x096884,3, 0x0968a0,12, 0x097100,14, 0x097140,1, 0x0a1000,70, 0x0a1120,32, 0x0a1200,13, 0x0a1244,4, 0x0a1260,9, 0x0a1288,8, 0x0a12b0,1, 0x0a12bc,1, 0x0a12c4,1, 0x0a12cc,7, 0x0a1310,3, 0x0a1324,6, 0x0a135c,8, 0x0a1380,3, 0x0a1390,3, 0x0a13a0,3, 0x0a13b4,1, 0x0a13bc,2, 0x0a13e0,8, 0x0a1404,1, 0x0a140c,3, 0x0a1420,2, 0x0a1430,18, 0x0a147c,17, 0x0a2004,1, 0x0a200c,4, 0x0a2400,2, 0x0a240c,4, 0x0a2420,3, 0x0a2440,1, 0x0a2450,4, 0x0a2468,3, 0x0a2480,1, 0x0a24a0,10, 0x0a24d0,4, 0x0a24e4,5, 0x0a2500,12, 0x0a2804,1, 0x0a280c,4, 0x0a2c00,2, 0x0a2c0c,2, 0x0a2c40,1, 0x0a2c50,4, 0x0a2c68,3, 0x0a2c88,2, 0x0a2cf0,1, 0x0a3004,1, 0x0a300c,4, 0x0a3040,2, 0x0a3064,3, 0x0a3074,3, 0x0a3200,9, 0x0a3230,2, 0x0a323c,2, 0x0a3248,4, 0x0a3260,1, 0x0a3270,6, 0x0a3300,1, 0x0a3310,6, 0x0a3804,1, 0x0a3818,12, 0x0a3884,1, 0x0a3898,12, 0x0a3900,3, 0x0a3910,6, 0x0a392c,2, 0x0a3984,1, 0x0a3998,12, 0x0a3a04,1, 0x0a3a0c,34, 0x0a3b00,48, 0x0a4000,48, 0x0a4100,3, 0x0a4110,6, 0x0a412c,4, 0x0a4140,1, 0x0a4304,1, 0x0a4318,10, 0x0a4804,1, 0x0a480c,4, 0x0a4840,2, 0x0a4864,3, 0x0a4874,3, 0x0a4c04,2, 0x0a4c10,2, 0x0a4c1c,9, 0x0a4c50,8, 0x0a4c78,19, 0x0a4d04,2, 0x0a4d40,21, 0x0a4da4,1, 0x0a4dac,1, 0x0a4db4,1, 0x0a4dc0,1, 0x0a5000,20, 0x0a6000,2, 0x0a6028,2, 0x0a6050,2, 0x0a6078,2, 0x0a60a0,36, 0x0a61a8,2, 0x0a61d8,4, 0x0a6200,35, 0x0a6290,6, 0x0a6400,67, 0x0a6510,6, 0x0a6600,9, 0x0a6640,18, 0x0a66c0,7, 0x0a8000,10, 0x0a802c,15, 0x0a806c,5, 0x0a8408,5, 0x0a8424,3, 0x0a8434,6, 0x0a8450,2, 0x0a845c,5, 0x0a84c4,1, 0x0a84cc,4, 0x0a8604,1, 0x0a860c,4, 0x0a8700,17, 0x0a8750,4, 0x0a8800,4, 0x0a8880,1, 0x0a88a0,1, 0x0a88c0,1, 0x0a8900,1, 0x0a8960,1, 0x0a8980,4, 0x0a8994,1, 0x0a899c,1, 0x0a89a4,3, 0x0a89c0,1, 0x0a8a00,4, 0x0a8aa4,1, 0x0a8aac,1, 0x0a8ab4,1, 0x0a8ad4,10, 0x0a8b00,2, 0x0a8b80,4, 0x0a8c04,6, 0x0a9000,3, 0x0a9010,21, 0x0a9080,4, 0x0a9100,10, 0x0a91f4,3, 0x0a920c,35, 0x0a92a4,7, 0x0a930c,39, 0x0a940c,35, 0x0a949c,9, 0x0a9500,2, 0x0a950c,3, 0x0a951c,3, 0x0a954c,13, 0x0a9804,1, 0x0a980c,4, 0x0a9c00,2, 0x0a9c0c,3, 0x0a9c1c,2, 0x0a9c28,1, 0x0a9c44,1, 0x0a9c60,17, 0x0a9d00,1, 0x0a9d20,8, 0x0a9d48,3, 0x0a9d80,1, 0x0a9dc4,3, 0x0a9dd4,3, 0x0a9de4,3, 0x0a9df4,4, 0x0a9e20,8, 0x0a9e48,3, 0x0a9e84,1, 0x0a9e98,1, 0x0a9ea0,8, 0x0a9f80,9, 0x0a9fc0,32, 0x0aa204,1, 0x0aa20c,4, 0x0aa400,14, 0x0aa440,14, 0x0aa480,14, 0x0aa4c0,14, 0x0aa500,10, 0x0ac000,3, 0x0ac010,2, 0x0b0000,27, 0x0b0080,22, 0x0b0100,2, 0x0b0110,2, 0x0b0120,2, 0x0b0160,2, 0x0b016c,1, 0x0b0180,3, 0x0b0190,3, 0x0b01a0,3, 0x0b01e0,2, 0x0b01ec,1, 0x0b0200,8, 0x0b0260,2, 0x0b026c,1, 0x0b0280,2, 0x0b0290,2, 0x0b02e0,2, 0x0b02ec,1, 0x0b0300,3, 0x0b0310,3, 0x0b0360,2, 0x0b036c,1, 0x0b0380,2, 0x0b0390,2, 0x0b03a0,2, 0x0b03e0,2, 0x0b03ec,1, 0x0b0400,3, 0x0b0410,3, 0x0b0460,2, 0x0b046c,1, 0x0b0480,3, 0x0b0490,3, 0x0b04e0,2, 0x0b04ec,1, 0x0b0500,3, 0x0b0510,7, 0x0b0530,4, 0x0b0560,2, 0x0b056c,1, 0x0b0580,3, 0x0b0590,3, 0x0b05e0,2, 0x0b05ec,1, 0x0b0600,3, 0x0b0610,3, 0x0b0660,2, 0x0b066c,1, 0x0b0680,2, 0x0b0690,2, 0x0b06e0,2, 0x0b06ec,1, 0x0b0700,3, 0x0b0710,3, 0x0b0760,2, 0x0b076c,1, 0x0b0780,3, 0x0b0790,3, 0x0b07e0,2, 0x0b07ec,1, 0x0b0800,8, 0x0b0860,2, 0x0b086c,1, 0x0b0880,3, 0x0b0890,3, 0x0b08e0,2, 0x0b08ec,1, 0x0b0900,3, 0x0b0910,3, 0x0b0960,2, 0x0b096c,1, 0x0b0980,3, 0x0b0990,3, 0x0b09e0,2, 0x0b09ec,1, 0x0b1000,9, 0x0b1040,16, 0x0b2000,9, 0x0b2040,48, 0x0b2104,7, 0x0b2200,9, 0x0b2240,48, 0x0b2304,7, 0x0b2400,9, 0x0b2440,48, 0x0b2504,7, 0x0b2600,9, 0x0b2640,48, 0x0b2704,7, 0x0b2800,9, 0x0b2840,48, 0x0b2904,7, 0x0b2a00,9, 0x0b2a40,48, 0x0b2b04,7, 0x0b2c00,9, 0x0b2c40,48, 0x0b2d04,7, 0x0b2e00,9, 0x0b2e40,48, 0x0b2f04,7, 0x0b3000,88, 0x0b3180,34, 0x0b4000,196, 0x0b4340,13, 0x0b4378,26, 0x0b4400,9, 0x0b4480,32, 0x0b4804,1, 0x0b480c,4, 0x0b4844,1, 0x0b484c,4, 0x0b4884,1, 0x0b488c,4, 0x0b48c4,3, 0x0b4900,73, 0x0b4a40,28, 0x0b4ac4,5, 0x0b4b00,1, 0x0b4b20,16, 0x0b4b80,1, 0x0b4ba0,9, 0x0b4bd0,1, 0x0b4c00,2, 0x0b5000,7, 0x0b5040,12, 0x0b5100,9, 0x0b5140,16, 0x0b5800,2, 0x0b5828,2, 0x0b5850,2, 0x0b5878,2, 0x0b58a0,7, 0x0b59a8,2, 0x0b59d8,4, 0x0b5a00,35, 0x0b5a90,6, 0x0b5c00,83, 0x0b5d50,6, 0x0b5e00,9, 0x0b5f00,4, 0x0d0000,2, 0x0d000c,1, 0x0d0020,20, 0x0d0080,1, 0x0d00a0,16, 0x0d0100,2, 0x0d010c,1, 0x0d0120,20, 0x0d0180,1, 0x0d01a0,16, 0x0d0200,2, 0x0d020c,1, 0x0d0220,20, 0x0d0280,1, 0x0d02a0,16, 0x0d0300,2, 0x0d030c,1, 0x0d0320,20, 0x0d0380,1, 0x0d03a0,16, 0x0d0400,3, 0x0d0410,15, 0x0d0450,6, 0x0d0484,13, 0x0d0504,25, 0x0d0580,20, 0x0d0600,6, 0x0d0640,3, 0x0d0680,8, 0x0d0700,2, 0x0d070c,4, 0x0d0800,8, 0x0d0840,3, 0x0d0850,7, 0x0d0880,5, 0x0d08a0,3, 0x0d08c0,7, 0x0d08e0,11, 0x0d0910,6, 0x0d0a00,1, 0x0d0a08,13, 0x0d0a40,11, 0x0d0c00,24, 0x0d0c64,6, 0x0d0c80,4, 0x0d0d00,12, 0x0d0d40,15, 0x0d0d90,2, 0x0d0d9c,1, 0x0d0dc0,12, 0x0d0e00,1, 0x0d0e20,1, 0x0d0e28,12, 0x0d0e5c,1, 0x0d0e80,8, 0x0d0f00,8, 0x0d0f24,5, 0x0d1000,19, 0x0d1080,3, 0x0d1090,11, 0x0d1180,4, 0x0d11a0,16, 0x0d2000,2, 0x0d200c,1, 0x0d2020,20, 0x0d2080,1, 0x0d20a0,16, 0x0d2100,2, 0x0d210c,1, 0x0d2120,20, 0x0d2180,1, 0x0d21a0,16, 0x0d2200,2, 0x0d220c,1, 0x0d2220,20, 0x0d2280,1, 0x0d22a0,16, 0x0d2300,2, 0x0d230c,1, 0x0d2320,20, 0x0d2380,1, 0x0d23a0,16, 0x0d2400,3, 0x0d2410,15, 0x0d2450,6, 0x0d2484,13, 0x0d2504,25, 0x0d2580,20, 0x0d2600,6, 0x0d2640,3, 0x0d2680,8, 0x0d2700,2, 0x0d270c,4, 0x0d2800,8, 0x0d2840,3, 0x0d2850,7, 0x0d2880,5, 0x0d28a0,3, 0x0d28c0,7, 0x0d28e0,11, 0x0d2910,6, 0x0d2a00,1, 0x0d2a08,13, 0x0d2a40,11, 0x0d2c00,24, 0x0d2c64,6, 0x0d2c80,4, 0x0d2d00,12, 0x0d2d40,15, 0x0d2d90,2, 0x0d2d9c,1, 0x0d2dc0,12, 0x0d2e00,1, 0x0d2e20,1, 0x0d2e28,12, 0x0d2e5c,1, 0x0d2e80,8, 0x0d2f00,8, 0x0d2f24,5, 0x0d3000,19, 0x0d3080,3, 0x0d3090,11, 0x0d3180,4, 0x0d31a0,16, 0x0d4000,29, 0x0d4078,4, 0x0d4090,2, 0x0d40a0,7, 0x0d40c0,11, 0x0d4100,14, 0x0d4140,14, 0x0d4180,61, 0x0d4278,4, 0x0d4290,2, 0x0d42a0,7, 0x0d42c0,11, 0x0d4300,14, 0x0d4340,14, 0x0d4380,61, 0x0d4478,4, 0x0d4490,2, 0x0d44a0,7, 0x0d44c0,11, 0x0d4500,14, 0x0d4540,14, 0x0d4580,61, 0x0d4678,4, 0x0d4690,2, 0x0d46a0,7, 0x0d46c0,11, 0x0d4700,14, 0x0d4740,14, 0x0d4780,69, 0x0d4a00,8, 0x0d4a24,15, 0x0d4a64,30, 0x0d4b00,4, 0x0d4b20,2, 0x0d4c00,6, 0x0d4c40,14, 0x0d4c80,9, 0x0d4d00,9, 0x0d4d2c,1, 0x0d4d40,3, 0x0d4d60,1, 0x0d4d80,3, 0x0d4e00,2, 0x0d4e0c,1, 0x0d4e14,5, 0x0d4e2c,1, 0x0d4e34,5, 0x0d4e4c,1, 0x0d4e54,5, 0x0d4e6c,1, 0x0d4e74,5, 0x0d4e8c,1, 0x0d4e94,5, 0x0d4eac,1, 0x0d4eb4,3, 0x0d5000,29, 0x0d5078,4, 0x0d5090,2, 0x0d50a0,7, 0x0d50c0,11, 0x0d5100,14, 0x0d5140,14, 0x0d5180,61, 0x0d5278,4, 0x0d5290,2, 0x0d52a0,7, 0x0d52c0,11, 0x0d5300,14, 0x0d5340,14, 0x0d5380,61, 0x0d5478,4, 0x0d5490,2, 0x0d54a0,7, 0x0d54c0,11, 0x0d5500,14, 0x0d5540,14, 0x0d5580,61, 0x0d5678,4, 0x0d5690,2, 0x0d56a0,7, 0x0d56c0,11, 0x0d5700,14, 0x0d5740,14, 0x0d5780,69, 0x0d5a00,8, 0x0d5a24,15, 0x0d5a64,30, 0x0d5b00,4, 0x0d5b20,2, 0x0d5c00,6, 0x0d5c40,14, 0x0d5c80,9, 0x0d5d00,9, 0x0d5d2c,1, 0x0d5d40,3, 0x0d5d60,1, 0x0d5d80,3, 0x0d5e00,2, 0x0d5e0c,1, 0x0d5e14,5, 0x0d5e2c,1, 0x0d5e34,5, 0x0d5e4c,1, 0x0d5e54,5, 0x0d5e6c,1, 0x0d5e74,5, 0x0d5e8c,1, 0x0d5e94,5, 0x0d5eac,1, 0x0d5eb4,3, 0x0d6000,15, 0x0d6040,6, 0x0d6060,6, 0x0d6080,11, 0x0d6100,9, 0x0d6204,8, 0x0d6240,13, 0x0d6280,16, 0x0d6400,8, 0x0d6424,15, 0x0d6464,15, 0x0d64a4,15, 0x0d64e4,30, 0x0d6580,10, 0x0d65ac,1, 0x0d65b4,5, 0x0d65cc,1, 0x0d65d4,5, 0x0d65ec,1, 0x0d65f4,13, 0x0d6680,4, 0x0d6694,2, 0x0d66a0,5, 0x0d66c0,5, 0x0d66e0,4, 0x0d6800,19, 0x0d6850,31, 0x0d68d0,31, 0x0d6950,31, 0x0d69d0,31, 0x0d6a50,31, 0x0d6ad0,31, 0x0d6b50,31, 0x0d6bd0,31, 0x0d6c50,12, 0x0d6c84,1, 0x0d6c94,23, 0x0d7000,1, 0x0d7028,1, 0x0d7050,1, 0x0d7078,1, 0x0d70a0,5, 0x0d71a8,2, 0x0d71d8,4, 0x0d7200,19, 0x0d7250,6, 0x0d7400,1, 0x0d7408,3, 0x0d7428,1, 0x0d7434,1, 0x0d7440,2, 0x0d7500,8, 0x0d7580,7, 0x0d7600,3, 0x0d7618,1, 0x0d7620,4, 0x0d8000,11, 0x0d8030,10, 0x0d8060,17, 0x0d80c0,49, 0x0d8188,4, 0x0d8400,2, 0x0d8428,2, 0x0d8450,2, 0x0d8478,2, 0x0d84a0,17, 0x0d85a8,2, 0x0d85d8,4, 0x0d8600,35, 0x0d8690,6, 0x0d8800,2, 0x0d9000,37, 0x0d9100,26, 0x0d916c,7, 0x0d91a0,1, 0x0d91c0,9, 0x0d91e8,1, 0x0d9200,16, 0x0d9248,4, 0x0d9280,6, 0x0d929c,1, 0x0d92a4,2, 0x0d92b8,9, 0x0d92e0,4, 0x0d9304,4, 0x0d9328,3, 0x0d9340,8, 0x0d9400,7, 0x0d9424,3, 0x0d9438,17, 0x0d9480,3, 0x0d9490,24, 0x0d9500,20, 0x0d9700,7, 0x0d9744,9, 0x0d976c,2, 0x0d9780,10, 0x0d9800,37, 0x0d9900,26, 0x0d996c,7, 0x0d99a0,1, 0x0d99c0,9, 0x0d99e8,1, 0x0d9a00,16, 0x0d9a48,4, 0x0d9a80,6, 0x0d9a9c,1, 0x0d9aa4,2, 0x0d9ab8,9, 0x0d9ae0,4, 0x0d9b04,4, 0x0d9b28,3, 0x0d9b40,8, 0x0d9c00,7, 0x0d9c24,3, 0x0d9c38,17, 0x0d9c80,3, 0x0d9c90,24, 0x0d9d00,20, 0x0d9f00,7, 0x0d9f44,9, 0x0d9f6c,2, 0x0d9f80,10, 0x0da000,562, 0x0db000,562, 0x0dc000,4, 0x0dc018,18, 0x0dc100,4, 0x0dc118,18, 0x0dc200,12, 0x0dc300,6, 0x0dc320,5, 0x0dc340,6, 0x0dc360,5, 0x0dc380,6, 0x0dc400,9, 0x0dc440,32, 0x0dc4c4,1, 0x0dc4cc,1, 0x0dc4d4,1, 0x0dc50c,7, 0x0dc544,2, 0x0dc55c,9, 0x0dc584,2, 0x0dc5a4,7, 0x0dc5c4,2, 0x0dc5d8,2, 0x0dc5e4,2, 0x0dc5f8,2, 0x0dc604,2, 0x0dc614,11, 0x0dc644,5, 0x0dc660,2, 0x0dcf00,14, 0x0dcfbc,9, 0x0dd000,2, 0x0dd00c,3, 0x0dd024,2, 0x0dd044,3, 0x0dd104,1, 0x0dd10c,1, 0x0dd200,8, 0x0dd244,2, 0x0dd268,16, 0x0dd2d0,2, 0x0dd404,1, 0x0dd438,42, 0x0dd508,1, 0x0dd518,1, 0x0dd528,1, 0x0dd538,1, 0x0dd548,1, 0x0dd558,1, 0x0dd568,1, 0x0dd578,1, 0x0dd588,1, 0x0dd598,1, 0x0dd5a8,1, 0x0dd5b8,1, 0x0dd604,2, 0x0dd638,18, 0x0dd688,1, 0x0dd704,2, 0x0dd740,18, 0x0dd804,1, 0x0dd82c,21, 0x0dd900,3, 0x0dd910,3, 0x0dd920,3, 0x0dd930,3, 0x0dda00,23, 0x0dda60,32, 0x0ddb00,6, 0x0ddc00,3, 0x0ddcc0,13, 0x0ddd00,14, 0x0ddd40,14, 0x0ddd80,14, 0x0dde00,5, 0x0dde1c,1, 0x0dde50,8, 0x0dde80,9, 0x0ddec0,51, 0x0ddf90,6, 0x0de000,135, 0x0de300,2, 0x0de30c,3, 0x0de320,2, 0x0de32c,3, 0x0de340,2, 0x0de34c,3, 0x0de360,2, 0x0de36c,3, 0x0de380,2, 0x0de38c,3, 0x0de3a0,2, 0x0de3ac,3, 0x0de3c0,2, 0x0de3cc,3, 0x0de3e0,2, 0x0de3ec,3, 0x0de400,2, 0x0de40c,3, 0x0de420,2, 0x0de42c,3, 0x0de440,2, 0x0de44c,3, 0x0de460,2, 0x0de46c,3, 0x0de480,2, 0x0de48c,3, 0x0de4a0,2, 0x0de4ac,3, 0x0de4c0,2, 0x0de4cc,3, 0x0de4e0,2, 0x0de4ec,3, 0x0de500,135, 0x0de800,2, 0x0de80c,3, 0x0de820,2, 0x0de82c,3, 0x0de840,2, 0x0de84c,3, 0x0de860,2, 0x0de86c,3, 0x0de880,2, 0x0de88c,3, 0x0de8a0,2, 0x0de8ac,3, 0x0de8c0,2, 0x0de8cc,3, 0x0de8e0,2, 0x0de8ec,3, 0x0de900,2, 0x0de90c,3, 0x0de920,2, 0x0de92c,3, 0x0de940,2, 0x0de94c,3, 0x0de960,2, 0x0de96c,3, 0x0de980,2, 0x0de98c,3, 0x0de9a0,2, 0x0de9ac,3, 0x0de9c0,2, 0x0de9cc,3, 0x0de9e0,2, 0x0de9ec,3, 0x0dea00,135, 0x0ded00,2, 0x0ded0c,3, 0x0ded20,2, 0x0ded2c,3, 0x0ded40,2, 0x0ded4c,3, 0x0ded60,2, 0x0ded6c,3, 0x0ded80,2, 0x0ded8c,3, 0x0deda0,2, 0x0dedac,3, 0x0dedc0,2, 0x0dedcc,3, 0x0dede0,2, 0x0dedec,3, 0x0dee00,2, 0x0dee0c,3, 0x0dee20,2, 0x0dee2c,3, 0x0dee40,2, 0x0dee4c,3, 0x0dee60,2, 0x0dee6c,3, 0x0dee80,2, 0x0dee8c,3, 0x0deea0,2, 0x0deeac,3, 0x0deec0,2, 0x0deecc,3, 0x0deee0,2, 0x0deeec,3, 0x0def00,135, 0x0df200,2, 0x0df20c,3, 0x0df220,2, 0x0df22c,3, 0x0df240,2, 0x0df24c,3, 0x0df260,2, 0x0df26c,3, 0x0df280,2, 0x0df28c,3, 0x0df2a0,2, 0x0df2ac,3, 0x0df2c0,2, 0x0df2cc,3, 0x0df2e0,2, 0x0df2ec,3, 0x0df300,2, 0x0df30c,3, 0x0df320,2, 0x0df32c,3, 0x0df340,2, 0x0df34c,3, 0x0df360,2, 0x0df36c,3, 0x0df380,2, 0x0df38c,3, 0x0df3a0,2, 0x0df3ac,3, 0x0df3c0,2, 0x0df3cc,3, 0x0df3e0,2, 0x0df3ec,3, 0x0df400,135, 0x0df700,2, 0x0df70c,3, 0x0df720,2, 0x0df72c,3, 0x0df740,2, 0x0df74c,3, 0x0df760,2, 0x0df76c,3, 0x0df780,2, 0x0df78c,3, 0x0df7a0,2, 0x0df7ac,3, 0x0df7c0,2, 0x0df7cc,3, 0x0df7e0,2, 0x0df7ec,3, 0x0df800,2, 0x0df80c,3, 0x0df820,2, 0x0df82c,3, 0x0df840,2, 0x0df84c,3, 0x0df860,2, 0x0df86c,3, 0x0df880,2, 0x0df88c,3, 0x0df8a0,2, 0x0df8ac,3, 0x0df8c0,2, 0x0df8cc,3, 0x0df8e0,2, 0x0df8ec,3, 0x0df900,2, 0x0e0000,3, 0x0e0010,4, 0x0e0024,7, 0x0e0060,27, 0x0e00d0,3, 0x0e00e0,3, 0x0e00f0,3, 0x0e0100,4, 0x0e0114,3, 0x0e0140,3, 0x0e0150,1, 0x0e015c,3, 0x0e0180,4, 0x0e019c,18, 0x0e01e8,5, 0x0e0200,3, 0x0e0210,3, 0x0e0220,3, 0x0e0230,3, 0x0e0400,3, 0x0e0410,4, 0x0e0424,7, 0x0e0460,27, 0x0e04d0,3, 0x0e04e0,3, 0x0e04f0,3, 0x0e0500,4, 0x0e0514,3, 0x0e0540,3, 0x0e0550,1, 0x0e055c,3, 0x0e0580,4, 0x0e059c,18, 0x0e05e8,5, 0x0e0600,3, 0x0e0610,3, 0x0e0620,3, 0x0e0630,3, 0x0e0800,3, 0x0e0810,4, 0x0e0824,7, 0x0e0860,27, 0x0e08d0,3, 0x0e08e0,3, 0x0e08f0,3, 0x0e0900,4, 0x0e0914,3, 0x0e0940,3, 0x0e0950,1, 0x0e095c,3, 0x0e0980,4, 0x0e099c,18, 0x0e09e8,5, 0x0e0a00,3, 0x0e0a10,3, 0x0e0a20,3, 0x0e0a30,3, 0x0e0c00,3, 0x0e0c10,4, 0x0e0c24,7, 0x0e0c60,27, 0x0e0cd0,3, 0x0e0ce0,3, 0x0e0cf0,3, 0x0e0d00,4, 0x0e0d14,3, 0x0e0d40,3, 0x0e0d50,1, 0x0e0d5c,3, 0x0e0d80,4, 0x0e0d9c,18, 0x0e0de8,5, 0x0e0e00,3, 0x0e0e10,3, 0x0e0e20,3, 0x0e0e30,3, 0x0e1000,3, 0x0e1010,4, 0x0e1024,7, 0x0e1060,27, 0x0e10d0,3, 0x0e10e0,3, 0x0e10f0,3, 0x0e1100,4, 0x0e1114,3, 0x0e1140,3, 0x0e1150,1, 0x0e115c,3, 0x0e1180,4, 0x0e119c,18, 0x0e11e8,5, 0x0e1200,3, 0x0e1210,3, 0x0e1220,3, 0x0e1230,3, 0x0e1400,3, 0x0e1410,4, 0x0e1424,7, 0x0e1460,27, 0x0e14d0,3, 0x0e14e0,3, 0x0e14f0,3, 0x0e1500,4, 0x0e1514,3, 0x0e1540,3, 0x0e1550,1, 0x0e155c,3, 0x0e1580,4, 0x0e159c,18, 0x0e15e8,5, 0x0e1600,3, 0x0e1610,3, 0x0e1620,3, 0x0e1630,3, 0x0e1800,3, 0x0e1810,4, 0x0e1824,7, 0x0e1860,27, 0x0e18d0,3, 0x0e18e0,3, 0x0e18f0,3, 0x0e1900,4, 0x0e1914,3, 0x0e1940,3, 0x0e1950,1, 0x0e195c,3, 0x0e1980,4, 0x0e199c,18, 0x0e19e8,5, 0x0e1a00,3, 0x0e1a10,3, 0x0e1a20,3, 0x0e1a30,3, 0x0e1c00,3, 0x0e1c10,4, 0x0e1c24,7, 0x0e1c60,27, 0x0e1cd0,3, 0x0e1ce0,3, 0x0e1cf0,3, 0x0e1d00,4, 0x0e1d14,3, 0x0e1d40,3, 0x0e1d50,1, 0x0e1d5c,3, 0x0e1d80,4, 0x0e1d9c,18, 0x0e1de8,5, 0x0e1e00,3, 0x0e1e10,3, 0x0e1e20,3, 0x0e1e30,3, 0x0e2000,3, 0x0e2010,4, 0x0e2024,7, 0x0e2060,27, 0x0e20d0,3, 0x0e20e0,3, 0x0e20f0,3, 0x0e2100,4, 0x0e2114,3, 0x0e2140,3, 0x0e2150,1, 0x0e215c,3, 0x0e2180,4, 0x0e219c,18, 0x0e21e8,5, 0x0e2200,3, 0x0e2210,3, 0x0e2220,3, 0x0e2230,3, 0x0e2400,3, 0x0e2410,4, 0x0e2424,7, 0x0e2460,27, 0x0e24d0,3, 0x0e24e0,3, 0x0e24f0,3, 0x0e2500,4, 0x0e2514,3, 0x0e2540,3, 0x0e2550,1, 0x0e255c,3, 0x0e2580,4, 0x0e259c,18, 0x0e25e8,5, 0x0e2600,3, 0x0e2610,3, 0x0e2620,3, 0x0e2630,3, 0x0e2800,3, 0x0e2810,4, 0x0e2824,7, 0x0e2860,27, 0x0e28d0,3, 0x0e28e0,3, 0x0e28f0,3, 0x0e2900,4, 0x0e2914,3, 0x0e2940,3, 0x0e2950,1, 0x0e295c,3, 0x0e2980,4, 0x0e299c,18, 0x0e29e8,5, 0x0e2a00,3, 0x0e2a10,3, 0x0e2a20,3, 0x0e2a30,3, 0x0e3008,16, 0x0e3070,1, 0x0e3080,2, 0x0e308c,1, 0x0e3404,1, 0x0e3440,22, 0x0e349c,1, 0x0e34a4,7, 0x0e34f0,85, 0x0e3650,5, 0x0e3800,2, 0x0e380c,3, 0x0e381c,3, 0x0e382c,3, 0x0e383c,3, 0x0e384c,3, 0x0e385c,3, 0x0e386c,3, 0x0e387c,5, 0x0e38a4,1, 0x0e38ac,12, 0x0e3a00,6, 0x0e3a20,2, 0x0e3a30,1, 0x0e3a40,8, 0x0e3a64,5, 0x0e3c00,2, 0x0e3c28,2, 0x0e3c50,2, 0x0e3c78,2, 0x0e3ca0,10, 0x0e3da8,2, 0x0e3dd8,4, 0x0e3e00,35, 0x0e3e90,6, 0x0e4010,12, 0x0e4044,3, 0x0e4084,2, 0x0e40bc,84, 0x0e4240,18, 0x0e45f0,4, 0x0e4604,1, 0x0e4640,16, 0x0e46f0,4, 0x0e4704,1, 0x0e4740,16, 0x0e4900,3, 0x0e4910,5, 0x0e4980,16, 0x0e4a04,3, 0x0e4b00,33, 0x0e4b90,3, 0x0e4e00,2, 0x0e5000,8, 0x0e5050,8, 0x0e6000,13, 0x0e6200,14, 0x0e6240,1, 0x0e6248,1, 0x0e6258,10, 0x0e6284,3, 0x0e6300,10, 0x0e6340,1, 0x0e6400,25, 0x0e6478,16, 0x0e64c0,24, 0x0e6540,8, 0x0e6800,32, 0x0e6884,1, 0x0e68a0,10, 0x0e6900,72, 0x0e6a24,2, 0x0e6a34,3, 0x0e6a44,1, 0x0e6a54,17, 0x0e6a9c,11, 0x0e6ad0,8, 0x0e6b00,1, 0x0e6b80,64, 0x0e6c84,1, 0x0e6cc0,27, 0x0e6d30,2, 0x0e6d3c,37, 0x0e6e04,1, 0x0e6e40,16, 0x0e6f00,1, 0x0e6f80,32, 0x0e7450,3, 0x0e7464,3, 0x0e74d0,4, 0x0e7500,1, 0x0e7510,12, 0x0e7580,3, 0x0e7590,6, 0x0e75c0,3, 0x0e75d0,6, 0x0e7600,19, 0x0e7650,6, 0x0e76c0,14, 0x0e7800,99, 0x0e7a00,14, 0x0e7a40,14, 0x0e7a80,21, 0x0e7b00,1, 0x0e7b80,12, 0x0e7bc8,105, 0x0e7d70,6, 0x0e7e00,50, 0x0e7f00,9, 0x0e7f30,4, 0x0e7f48,1, 0x0e7f50,4, 0x0e8000,10, 0x0e8080,14, 0x0e8200,10, 0x0e8280,19, 0x0e82d0,6, 0x0e8300,8, 0x0e8380,4, 0x0e8400,10, 0x0e8480,19, 0x0e84d0,6, 0x0e8500,8, 0x0e8580,4, 0x0f0000,3, 0x0f0010,13, 0x0f006c,17, 0x0f00c0,1, 0x0f00c8,10, 0x0f0100,1, 0x0f0180,96, 0x0f0404,29, 0x0f0480,6, 0x0f04b8,24, 0x0f0520,1, 0x0f0528,2, 0x0f0540,2, 0x0f0580,8, 0x0f0af0,3, 0x0f0b00,1, 0x0f0b0c,2, 0x0f0b18,1, 0x0f0b30,4, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba8,2, 0x0f0bc0,2, 0x0f0bd0,10, 0x0f0c00,128, 0x0f0e04,1, 0x0f0e14,9, 0x0f0e3c,1, 0x0f1000,16, 0x0f1060,2, 0x0f1100,10, 0x0f1140,1, 0x0f1160,2, 0x0f116c,1, 0x0f1174,13, 0x0f11c0,1, 0x0f11e0,2, 0x0f11ec,1, 0x0f11f4,13, 0x0f1240,1, 0x0f1260,2, 0x0f126c,1, 0x0f1274,13, 0x0f12c0,1, 0x0f12e0,2, 0x0f12ec,1, 0x0f12f4,4, 0x0f1380,163, 0x0f1610,6, 0x0f1800,3, 0x0f1810,6, 0x0f1880,20, 0x0f2000,5, 0x0f201c,12, 0x0f2080,14, 0x0f2100,5, 0x0f211c,12, 0x0f2180,14, 0x0f2200,5, 0x0f221c,12, 0x0f2280,14, 0x0f2300,5, 0x0f231c,12, 0x0f2380,14, 0x0f2400,5, 0x0f241c,12, 0x0f2480,14, 0x0f2500,5, 0x0f251c,12, 0x0f2580,14, 0x0f2600,5, 0x0f261c,12, 0x0f2680,14, 0x0f2700,5, 0x0f271c,12, 0x0f2780,14, 0x0f2800,5, 0x0f281c,12, 0x0f2880,14, 0x0f2900,5, 0x0f291c,12, 0x0f2980,14, 0x0f2a00,5, 0x0f2a1c,12, 0x0f2a80,14, 0x0f2b00,5, 0x0f2b1c,12, 0x0f2b80,14, 0x0f2c00,5, 0x0f2c1c,12, 0x0f2c80,14, 0x0f2d00,5, 0x0f2d1c,12, 0x0f2d80,14, 0x0f2e00,5, 0x0f2e1c,12, 0x0f2e80,14, 0x0f2f00,5, 0x0f2f1c,12, 0x0f2f80,14, 0x0f3000,5, 0x0f301c,12, 0x0f3080,14, 0x0f3100,5, 0x0f311c,12, 0x0f3180,14, 0x0f3200,5, 0x0f321c,12, 0x0f3280,14, 0x0f3300,5, 0x0f331c,12, 0x0f3380,14, 0x0f3400,5, 0x0f341c,2, 0x0f3444,2, 0x0f3480,14, 0x0f4000,7, 0x0f4020,4, 0x0f4204,1, 0x0f4280,35, 0x0f4310,4, 0x0f4404,1, 0x0f4480,34, 0x0f4510,10, 0x0f453c,3, 0x0f4800,7, 0x0f4820,4, 0x0f4a04,1, 0x0f4a80,35, 0x0f4b10,4, 0x0f4c04,1, 0x0f4c80,34, 0x0f4d10,10, 0x0f4d3c,3, 0x0f5000,7, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x101100,18, 0x101200,18, 0x10124c,5, 0x101264,25, 0x1012cc,5, 0x1012e4,25, 0x10134c,5, 0x101364,25, 0x1013cc,5, 0x1013e4,25, 0x10144c,5, 0x101464,25, 0x1014cc,5, 0x1014e4,25, 0x10154c,5, 0x101564,25, 0x1015cc,5, 0x1015e4,25, 0x10164c,5, 0x101664,25, 0x1016cc,5, 0x1016e4,25, 0x10174c,5, 0x101764,25, 0x1017cc,5, 0x1017e4,25, 0x10184c,5, 0x101864,25, 0x1018cc,5, 0x1018e4,25, 0x10194c,5, 0x101964,25, 0x1019cc,5, 0x1019e4,8, 0x101a08,2, 0x101a14,3, 0x101a24,5, 0x101b00,1, 0x101b08,1, 0x101b10,1, 0x102008,1, 0x102014,1, 0x10201c,1, 0x104000,7, 0x104020,3, 0x104030,4, 0x104044,6, 0x104080,7, 0x1040a0,3, 0x1040b0,4, 0x1040c4,6, 0x104100,7, 0x104120,3, 0x104130,4, 0x104144,6, 0x104180,7, 0x1041a0,3, 0x1041b0,4, 0x1041c4,6, 0x104200,7, 0x104220,3, 0x104230,4, 0x104244,6, 0x104280,7, 0x1042a0,3, 0x1042b0,4, 0x1042c4,6, 0x104300,7, 0x104320,3, 0x104330,4, 0x104344,6, 0x104380,7, 0x1043a0,3, 0x1043b0,4, 0x1043c4,6, 0x104400,7, 0x104420,3, 0x104430,4, 0x104444,6, 0x104480,7, 0x1044a0,3, 0x1044b0,4, 0x1044c4,6, 0x104500,7, 0x104520,3, 0x104530,4, 0x104544,6, 0x104580,7, 0x1045a0,3, 0x1045b0,4, 0x1045c4,6, 0x104600,7, 0x104620,3, 0x104630,4, 0x104644,6, 0x104680,7, 0x1046a0,3, 0x1046b0,4, 0x1046c4,6, 0x104700,7, 0x104720,3, 0x104730,4, 0x104744,6, 0x104780,7, 0x1047a0,3, 0x1047b0,4, 0x1047c4,6, 0x104800,7, 0x104820,3, 0x104830,4, 0x104880,17, 0x104c00,5, 0x104c20,4, 0x104c40,5, 0x104c60,4, 0x104c80,5, 0x104ca0,4, 0x104cc0,5, 0x104ce0,4, 0x104d00,5, 0x104d20,4, 0x104d40,5, 0x104d60,4, 0x104d80,5, 0x104da0,4, 0x104dc0,5, 0x104de0,4, 0x104e00,5, 0x104e20,4, 0x104e60,1, 0x105484,6, 0x1054b8,5, 0x1054d0,3, 0x1054e0,3, 0x1054f0,3, 0x105500,33, 0x1055c8,9, 0x1055f0,2, 0x105600,32, 0x105700,2, 0x105800,64, 0x105a00,3, 0x105c04,1, 0x105c1c,9, 0x105d04,1, 0x105d7c,33, 0x105e04,1, 0x105e18,12, 0x106000,49, 0x1067f4,19, 0x106844,1, 0x106850,6, 0x106880,16, 0x1068c4,1, 0x1068d0,6, 0x106900,16, 0x106944,1, 0x106950,6, 0x106980,16, 0x1069c4,1, 0x1069d0,6, 0x106a00,16, 0x106a44,1, 0x106a50,6, 0x106a80,16, 0x106ac4,1, 0x106ad0,6, 0x106b00,16, 0x106b44,1, 0x106b50,6, 0x106b80,16, 0x106bc4,1, 0x106bd0,6, 0x106c00,16, 0x106c44,1, 0x106c50,6, 0x106c80,16, 0x106cc4,1, 0x106cd0,6, 0x106d00,16, 0x106d44,1, 0x106d50,6, 0x106d80,16, 0x106dc4,1, 0x106dd0,6, 0x106e00,16, 0x106e44,1, 0x106e50,6, 0x106e80,16, 0x106ec4,1, 0x106ed0,6, 0x106f00,16, 0x106f44,1, 0x106f50,6, 0x106f80,16, 0x106fc4,1, 0x106fd0,6, 0x108000,45, 0x108100,45, 0x108204,4, 0x108220,4, 0x108240,9, 0x108280,1, 0x1082e0,6, 0x108300,50, 0x1083d8,2, 0x1083e4,10, 0x108410,6, 0x108500,2, 0x10850c,3, 0x10851c,2, 0x109000,3, 0x109010,3, 0x109020,3, 0x109030,3, 0x109040,3, 0x109050,3, 0x109080,4, 0x10909c,6, 0x1090c0,16, 0x109800,27, 0x109880,27, 0x109900,27, 0x109980,27, 0x109a00,27, 0x109a80,27, 0x109b00,27, 0x109b80,27, 0x109c00,27, 0x109c80,27, 0x109d00,27, 0x109d80,27, 0x109e00,27, 0x109e80,27, 0x109f00,27, 0x109f80,27, 0x10a000,13, 0x10a11c,1, 0x10a140,17, 0x10a400,1, 0x10a420,7, 0x10a440,1, 0x10a460,7, 0x10a480,1, 0x10a4a0,7, 0x10a4c0,1, 0x10a4e0,7, 0x10a500,1, 0x10a520,7, 0x10a540,1, 0x10a560,7, 0x10a580,1, 0x10a5a0,7, 0x10a5c0,1, 0x10a5e0,7, 0x10a600,1, 0x10a620,7, 0x10a640,1, 0x10a660,7, 0x10a680,1, 0x10a6a0,7, 0x10a6c0,1, 0x10a6e0,7, 0x10a700,1, 0x10a720,7, 0x10a740,1, 0x10a760,7, 0x10a780,1, 0x10a7a0,7, 0x10a7c0,1, 0x10a7e0,7, 0x10a800,19, 0x10a880,19, 0x10a900,19, 0x10a980,19, 0x10aa00,19, 0x10aa80,19, 0x10ab00,19, 0x10ab80,19, 0x10ac00,19, 0x10ac80,19, 0x10ad00,19, 0x10ad80,19, 0x10ae00,19, 0x10ae80,19, 0x10af00,19, 0x10af80,19, 0x10b000,13, 0x10b800,19, 0x10b880,19, 0x10b900,19, 0x10b980,19, 0x10ba00,19, 0x10ba80,19, 0x10bb00,19, 0x10bb80,19, 0x10bc00,19, 0x10bc80,19, 0x10bd00,19, 0x10bd80,19, 0x10be00,19, 0x10be80,19, 0x10bf00,19, 0x10bf80,19, 0x10c000,1, 0x10c008,1, 0x10c010,1, 0x10c018,1, 0x10c020,1, 0x10c028,1, 0x10c030,1, 0x10c038,1, 0x10c040,1, 0x10c100,32, 0x10c200,6, 0x10c21c,2, 0x10c228,5, 0x10c258,2, 0x10c264,7, 0x10c408,1, 0x10c410,4, 0x10c800,14, 0x10c840,14, 0x10c880,14, 0x10c8c0,14, 0x10c900,14, 0x10c940,14, 0x10c980,14, 0x10c9c0,14, 0x10ca00,14, 0x10ca40,14, 0x10ca80,14, 0x10cac0,14, 0x10cb00,14, 0x10cb40,14, 0x10cb80,14, 0x10cbc0,14, 0x10cc00,14, 0x10cc40,14, 0x10cc80,14, 0x10ccc0,14, 0x10cd00,14, 0x10cd40,14, 0x10cd80,14, 0x10cdc0,14, 0x10ce00,14, 0x10ce40,14, 0x10ce80,14, 0x10cec0,14, 0x10cf00,14, 0x10cf40,14, 0x10cf80,14, 0x10cfc0,14, 0x10d000,14, 0x10d040,14, 0x10d080,14, 0x10d200,51, 0x10d2d0,6, 0x10d400,19, 0x10d480,3, 0x10d490,6, 0x10d500,5, 0x10d524,5, 0x10d544,5, 0x10d564,5, 0x10d704,7, 0x10d724,7, 0x10d744,7, 0x10d764,7, 0x10d784,7, 0x10d7a4,7, 0x10d7c4,7, 0x10d7e4,7, 0x10d804,7, 0x10d824,7, 0x10d844,7, 0x10d864,7, 0x10d884,7, 0x10d8a4,7, 0x10d8c4,7, 0x10d8e4,7, 0x10d904,7, 0x10d924,7, 0x10d944,7, 0x10d964,7, 0x10d984,7, 0x10d9a4,7, 0x10d9c4,7, 0x10d9e4,7, 0x10da04,7, 0x10da24,7, 0x10da44,7, 0x10da64,7, 0x10da84,7, 0x10daa4,7, 0x10dac4,7, 0x10dae4,7, 0x10dbf8,6, 0x10dc80,2, 0x10dc90,2, 0x10dca0,6, 0x10dd38,32, 0x10f100,14, 0x10f140,2, 0x10f14c,1, 0x10f180,9, 0x10f1c0,25, 0x10f240,25, 0x10f2c0,25, 0x10f340,25, 0x10f3c0,25, 0x10f440,25, 0x10f4c0,25, 0x10f540,25, 0x10f5c0,25, 0x10f640,25, 0x10f6c0,25, 0x10f740,25, 0x10f7c0,25, 0x10f840,25, 0x10f8c0,25, 0x10f940,25, 0x10f9c0,25, 0x10fa40,25, 0x10fac0,20, 0x10fb20,1, 0x10fc00,1, 0x10fc28,1, 0x10fc50,1, 0x10fc78,1, 0x10fca0,10, 0x10fda8,2, 0x10fdd8,4, 0x10fe00,19, 0x10fe50,6, 0x110000,2, 0x110200,32, 0x110400,72, 0x110600,72, 0x111000,6, 0x111020,6, 0x111040,6, 0x111060,6, 0x111080,1, 0x112000,7, 0x112020,7, 0x112040,7, 0x112060,7, 0x112080,7, 0x1120a0,7, 0x1120c0,7, 0x1120e0,7, 0x112100,7, 0x112120,7, 0x112140,7, 0x112160,7, 0x112180,7, 0x1121a0,7, 0x1121c0,7, 0x1121e0,7, 0x112200,2, 0x113000,11, 0x113030,1, 0x113038,2, 0x113050,9, 0x113100,11, 0x113130,1, 0x113138,4, 0x11315c,6, 0x113180,11, 0x1131b0,1, 0x1131b8,4, 0x1131dc,6, 0x113200,11, 0x113230,1, 0x113238,4, 0x11325c,6, 0x113280,11, 0x1132b0,1, 0x1132b8,4, 0x1132dc,6, 0x113300,11, 0x113330,1, 0x113338,7, 0x11335c,6, 0x113380,11, 0x1133b0,1, 0x1133b8,7, 0x1133dc,6, 0x113400,11, 0x113430,1, 0x113438,7, 0x11345c,6, 0x113480,11, 0x1134b0,1, 0x1134b8,7, 0x1134dc,6, 0x113500,11, 0x113530,1, 0x113538,7, 0x11355c,6, 0x113580,11, 0x1135b0,1, 0x1135b8,7, 0x1135dc,6, 0x113600,11, 0x113630,1, 0x113638,7, 0x11365c,6, 0x113680,11, 0x1136b0,1, 0x1136b8,7, 0x1136dc,6, 0x113700,11, 0x113730,1, 0x113738,7, 0x11375c,6, 0x113780,11, 0x1137b0,1, 0x1137b8,7, 0x1137dc,6, 0x113800,11, 0x113830,1, 0x113838,7, 0x11385c,6, 0x113880,11, 0x1138b0,1, 0x1138b8,7, 0x1138dc,6, 0x113900,11, 0x113930,1, 0x113938,7, 0x11395c,6, 0x113980,11, 0x1139b0,1, 0x1139b8,7, 0x1139dc,6, 0x113a00,11, 0x113a30,1, 0x113a38,7, 0x113a5c,6, 0x113a80,11, 0x113ab0,1, 0x113ab8,7, 0x113adc,6, 0x113b00,11, 0x113b30,1, 0x113b38,7, 0x113b5c,6, 0x113b80,11, 0x113bb0,1, 0x113bb8,7, 0x113bdc,6, 0x113f00,11, 0x113f30,1, 0x113f38,2, 0x113f5c,1, 0x113f80,12, 0x113fc0,3, 0x113fd0,9, 0x115000,5, 0x115020,5, 0x115040,5, 0x115060,5, 0x115080,5, 0x1150a0,5, 0x1150c0,5, 0x1150e0,5, 0x115100,5, 0x115120,5, 0x115140,5, 0x115160,5, 0x115180,5, 0x1151a0,5, 0x1151c0,5, 0x1151e0,5, 0x115200,5, 0x115220,5, 0x115240,5, 0x115260,5, 0x115280,5, 0x1152a0,5, 0x1152c0,5, 0x1152e0,5, 0x115300,5, 0x115320,5, 0x115340,5, 0x115360,5, 0x115380,5, 0x1153a0,5, 0x1153c0,5, 0x1153e0,5, 0x115400,5, 0x115420,5, 0x115440,5, 0x115460,5, 0x115480,5, 0x1154a0,5, 0x1154c0,5, 0x1154e0,5, 0x115500,5, 0x115520,5, 0x115540,5, 0x115560,5, 0x115580,5, 0x1155a0,5, 0x1155c0,5, 0x1155e0,5, 0x115600,5, 0x115620,5, 0x115640,5, 0x115660,5, 0x115680,5, 0x1156a0,5, 0x1156c0,5, 0x1156e0,5, 0x115700,5, 0x115720,5, 0x115740,5, 0x115760,5, 0x115780,5, 0x1157a0,5, 0x1157c0,5, 0x1157e0,5, 0x115800,12, 0x115840,1, 0x115850,12, 0x115884,1, 0x1158c0,16, 0x116000,5, 0x116020,5, 0x116040,5, 0x116060,5, 0x116080,5, 0x1160a0,5, 0x1160c0,5, 0x1160e0,5, 0x116100,5, 0x116120,5, 0x116140,5, 0x116160,5, 0x116180,5, 0x1161a0,5, 0x1161c0,5, 0x1161e0,5, 0x116200,5, 0x116220,5, 0x116240,5, 0x116260,5, 0x116280,5, 0x1162a0,5, 0x1162c0,5, 0x1162e0,5, 0x116300,5, 0x116320,5, 0x116340,5, 0x116360,5, 0x116380,5, 0x1163a0,5, 0x1163c0,5, 0x1163e0,5, 0x116400,5, 0x116420,5, 0x116440,5, 0x116460,5, 0x116480,5, 0x1164a0,5, 0x1164c0,5, 0x1164e0,5, 0x116500,5, 0x116520,5, 0x116540,5, 0x116560,5, 0x116580,5, 0x1165a0,5, 0x1165c0,5, 0x1165e0,5, 0x116600,5, 0x116620,5, 0x116640,5, 0x116660,5, 0x116680,5, 0x1166a0,5, 0x1166c0,5, 0x1166e0,5, 0x116700,5, 0x116720,5, 0x116740,5, 0x116760,5, 0x116780,5, 0x1167a0,5, 0x1167c0,5, 0x1167e0,5, 0x116800,12, 0x116840,1, 0x116850,12, 0x116884,1, 0x1168c0,8, 0x11f800,1, 0x120014,9, 0x120040,7, 0x120064,12, 0x1200a0,1, 0x120100,12, 0x120180,14, 0x1201c0,14, 0x120214,9, 0x120240,7, 0x120264,12, 0x1202a0,1, 0x120300,12, 0x120380,14, 0x1203c0,14, 0x120414,9, 0x120440,7, 0x120464,12, 0x1204a0,1, 0x120500,12, 0x120580,14, 0x1205c0,14, 0x120614,9, 0x120640,7, 0x120664,12, 0x1206a0,1, 0x120700,12, 0x120780,14, 0x1207c0,14, 0x120814,9, 0x120840,7, 0x120864,12, 0x1208a0,1, 0x120900,12, 0x120980,14, 0x1209c0,14, 0x120a14,9, 0x120a40,7, 0x120a64,12, 0x120aa0,1, 0x120b00,12, 0x120b80,14, 0x120bc0,14, 0x120c14,9, 0x120c40,7, 0x120c64,12, 0x120ca0,1, 0x120d00,12, 0x120d80,14, 0x120dc0,14, 0x120e14,9, 0x120e40,7, 0x120e64,12, 0x120ea0,1, 0x120f00,12, 0x120f80,14, 0x120fc0,14, 0x121014,9, 0x121040,7, 0x121064,12, 0x1210a0,1, 0x121100,12, 0x121180,14, 0x1211c0,14, 0x121214,9, 0x121240,7, 0x121264,12, 0x1212a0,1, 0x121300,12, 0x121380,14, 0x1213c0,14, 0x121414,9, 0x121440,7, 0x121464,12, 0x1214a0,1, 0x121500,12, 0x121580,14, 0x1215c0,14, 0x121614,9, 0x121640,7, 0x121664,12, 0x1216a0,1, 0x121700,12, 0x121780,14, 0x1217c0,14, 0x121814,9, 0x121840,7, 0x121864,12, 0x1218a0,1, 0x121900,12, 0x121980,14, 0x1219c0,14, 0x121a14,9, 0x121a40,7, 0x121a64,12, 0x121aa0,1, 0x121b00,12, 0x121b80,14, 0x121bc0,14, 0x121c14,9, 0x121c40,7, 0x121c64,12, 0x121ca0,1, 0x121d00,12, 0x121d80,14, 0x121dc0,14, 0x121e14,9, 0x121e40,7, 0x121e64,12, 0x121ea0,1, 0x121f00,12, 0x121f80,14, 0x121fc0,14, 0x122000,48, 0x123000,2, 0x123010,2, 0x123020,2, 0x123040,3, 0x123050,6, 0x123ffc,1, 0x126000,1, 0x126028,1, 0x126050,1, 0x126078,1, 0x1260a0,5, 0x1261a8,2, 0x1261d8,4, 0x126200,19, 0x126250,6, 0x126400,9, 0x126440,25, 0x1264c0,25, 0x126540,25, 0x1265c0,25, 0x126640,25, 0x1266c0,25, 0x126740,25, 0x1267c0,16, 0x126a00,14, 0x126c20,3, 0x126c30,1, 0x126c3c,5, 0x126c60,2, 0x130000,29, 0x130078,4, 0x130090,2, 0x1300a0,7, 0x1300c0,11, 0x130100,14, 0x130140,14, 0x130180,61, 0x130278,4, 0x130290,2, 0x1302a0,7, 0x1302c0,11, 0x130300,14, 0x130340,14, 0x130380,61, 0x130478,4, 0x130490,2, 0x1304a0,7, 0x1304c0,11, 0x130500,14, 0x130540,14, 0x130580,61, 0x130678,4, 0x130690,2, 0x1306a0,7, 0x1306c0,11, 0x130700,14, 0x130740,14, 0x130780,69, 0x130c00,6, 0x130c40,14, 0x130c80,9, 0x130d00,9, 0x130d2c,1, 0x130d40,3, 0x130d60,1, 0x130d80,3, 0x130e00,2, 0x130e0c,1, 0x130e14,5, 0x130e2c,1, 0x130e34,5, 0x130e4c,1, 0x130e54,5, 0x130e6c,1, 0x130e74,5, 0x130e8c,1, 0x130e94,5, 0x130eac,1, 0x130eb4,3, 0x131000,29, 0x131078,4, 0x131090,2, 0x1310a0,7, 0x1310c0,11, 0x131100,14, 0x131140,14, 0x131180,61, 0x131278,4, 0x131290,2, 0x1312a0,7, 0x1312c0,11, 0x131300,14, 0x131340,14, 0x131380,61, 0x131478,4, 0x131490,2, 0x1314a0,7, 0x1314c0,11, 0x131500,14, 0x131540,14, 0x131580,61, 0x131678,4, 0x131690,2, 0x1316a0,7, 0x1316c0,11, 0x131700,14, 0x131740,14, 0x131780,69, 0x131c00,6, 0x131c40,14, 0x131c80,9, 0x131d00,9, 0x131d2c,1, 0x131d40,3, 0x131d60,1, 0x131d80,3, 0x131e00,2, 0x131e0c,1, 0x131e14,5, 0x131e2c,1, 0x131e34,5, 0x131e4c,1, 0x131e54,5, 0x131e6c,1, 0x131e74,5, 0x131e8c,1, 0x131e94,5, 0x131eac,1, 0x131eb4,3, 0x132000,29, 0x132078,4, 0x132090,2, 0x1320a0,7, 0x1320c0,11, 0x132100,14, 0x132140,14, 0x132180,61, 0x132278,4, 0x132290,2, 0x1322a0,7, 0x1322c0,11, 0x132300,14, 0x132340,14, 0x132380,61, 0x132478,4, 0x132490,2, 0x1324a0,7, 0x1324c0,11, 0x132500,14, 0x132540,14, 0x132580,61, 0x132678,4, 0x132690,2, 0x1326a0,7, 0x1326c0,11, 0x132700,14, 0x132740,14, 0x132780,69, 0x132c00,6, 0x132c40,14, 0x132c80,9, 0x132d00,9, 0x132d2c,1, 0x132d40,3, 0x132d60,1, 0x132d80,3, 0x132e00,2, 0x132e0c,1, 0x132e14,5, 0x132e2c,1, 0x132e34,5, 0x132e4c,1, 0x132e54,5, 0x132e6c,1, 0x132e74,5, 0x132e8c,1, 0x132e94,5, 0x132eac,1, 0x132eb4,3, 0x133000,29, 0x133078,4, 0x133090,2, 0x1330a0,7, 0x1330c0,11, 0x133100,14, 0x133140,14, 0x133180,61, 0x133278,4, 0x133290,2, 0x1332a0,7, 0x1332c0,11, 0x133300,14, 0x133340,14, 0x133380,61, 0x133478,4, 0x133490,2, 0x1334a0,7, 0x1334c0,11, 0x133500,14, 0x133540,14, 0x133580,61, 0x133678,4, 0x133690,2, 0x1336a0,7, 0x1336c0,11, 0x133700,14, 0x133740,14, 0x133780,69, 0x133c00,6, 0x133c40,14, 0x133c80,9, 0x133d00,9, 0x133d2c,1, 0x133d40,3, 0x133d60,1, 0x133d80,3, 0x133e00,2, 0x133e0c,1, 0x133e14,5, 0x133e2c,1, 0x133e34,5, 0x133e4c,1, 0x133e54,5, 0x133e6c,1, 0x133e74,5, 0x133e8c,1, 0x133e94,5, 0x133eac,1, 0x133eb4,3, 0x134000,19, 0x134050,31, 0x1340d0,31, 0x134150,31, 0x1341d0,31, 0x134250,31, 0x1342d0,31, 0x134350,31, 0x1343d0,31, 0x134450,31, 0x1344d0,31, 0x134550,31, 0x1345d0,31, 0x134650,31, 0x1346d0,31, 0x134750,31, 0x1347d0,31, 0x134850,12, 0x134884,1, 0x134894,23, 0x134900,7, 0x135000,72, 0x135200,72, 0x135400,72, 0x135600,72, 0x135800,72, 0x135a00,72, 0x135c00,72, 0x135e00,72, 0x136000,72, 0x136200,72, 0x136400,72, 0x136600,72, 0x136800,72, 0x136a00,72, 0x136c00,72, 0x136e00,72, 0x137000,17, 0x137048,9, 0x137070,3, 0x137090,13, 0x1370d0,1, 0x1370e0,5, 0x137100,17, 0x137148,9, 0x137170,3, 0x137190,13, 0x1371d0,1, 0x1371e0,5, 0x137200,17, 0x137248,9, 0x137270,3, 0x137290,13, 0x1372d0,1, 0x1372e0,5, 0x137300,17, 0x137348,9, 0x137370,3, 0x137390,13, 0x1373d0,1, 0x1373e0,5, 0x137400,17, 0x137448,9, 0x137470,3, 0x137490,13, 0x1374d0,1, 0x1374e0,5, 0x137500,17, 0x137548,9, 0x137570,3, 0x137590,13, 0x1375d0,1, 0x1375e0,5, 0x137600,17, 0x137648,9, 0x137670,3, 0x137690,13, 0x1376d0,1, 0x1376e0,5, 0x137700,17, 0x137748,9, 0x137770,3, 0x137790,13, 0x1377d0,1, 0x1377e0,5, 0x137800,17, 0x137848,9, 0x137870,3, 0x137890,13, 0x1378d0,1, 0x1378e0,5, 0x137900,17, 0x137948,9, 0x137970,3, 0x137990,13, 0x1379d0,1, 0x1379e0,5, 0x137a00,17, 0x137a48,9, 0x137a70,3, 0x137a90,13, 0x137ad0,1, 0x137ae0,5, 0x137b00,17, 0x137b48,9, 0x137b70,3, 0x137b90,13, 0x137bd0,1, 0x137be0,5, 0x137c00,17, 0x137c48,9, 0x137c70,3, 0x137c90,13, 0x137cd0,1, 0x137ce0,5, 0x137d00,17, 0x137d48,9, 0x137d70,3, 0x137d90,13, 0x137dd0,1, 0x137de0,5, 0x137e00,17, 0x137e48,9, 0x137e70,3, 0x137e90,13, 0x137ed0,1, 0x137ee0,5, 0x137f00,17, 0x137f48,9, 0x137f70,3, 0x137f90,13, 0x137fd0,1, 0x137fe0,5, 0x138000,7, 0x138020,10, 0x138050,2, 0x138080,7, 0x1380a0,10, 0x1380d0,2, 0x138100,7, 0x138120,10, 0x138150,2, 0x138180,7, 0x1381a0,10, 0x1381d0,2, 0x138200,7, 0x138220,10, 0x138250,2, 0x138280,7, 0x1382a0,10, 0x1382d0,2, 0x138300,7, 0x138320,10, 0x138350,2, 0x138380,7, 0x1383a0,10, 0x1383d0,2, 0x138400,7, 0x138420,10, 0x138450,2, 0x138480,7, 0x1384a0,10, 0x1384d0,2, 0x138500,7, 0x138520,10, 0x138550,2, 0x138580,7, 0x1385a0,10, 0x1385d0,2, 0x138600,7, 0x138620,10, 0x138650,2, 0x138680,7, 0x1386a0,10, 0x1386d0,2, 0x138700,7, 0x138720,10, 0x138750,2, 0x138780,7, 0x1387a0,10, 0x1387d0,2, 0x138800,18, 0x138880,18, 0x138900,18, 0x138980,18, 0x138a00,18, 0x138a80,18, 0x138b00,18, 0x138b80,18, 0x138c00,18, 0x138c80,18, 0x138d00,18, 0x138d80,18, 0x138e00,18, 0x138e80,18, 0x138f00,18, 0x138f80,18, 0x139000,12, 0x139034,1, 0x13903c,4, 0x139050,2, 0x1390a0,2, 0x1390ac,1, 0x1390b4,6, 0x139100,22, 0x139180,8, 0x1391a4,5, 0x1391c0,14, 0x139200,14, 0x139240,14, 0x139280,14, 0x1392c0,14, 0x139300,14, 0x139340,14, 0x139400,14, 0x139440,14, 0x139480,14, 0x1394c0,14, 0x139500,14, 0x139540,14, 0x139580,14, 0x1395c0,14, 0x139600,14, 0x139640,14, 0x139680,14, 0x1396c0,14, 0x139800,2, 0x13a040,88, 0x13a200,3, 0x13a210,2, 0x13a21c,16, 0x13a280,3, 0x13a290,2, 0x13a29c,16, 0x13a300,3, 0x13a310,2, 0x13a31c,16, 0x13a380,3, 0x13a390,2, 0x13a39c,16, 0x13a400,3, 0x13a410,2, 0x13a41c,16, 0x13a480,3, 0x13a490,2, 0x13a49c,16, 0x13a500,3, 0x13a510,2, 0x13a51c,16, 0x13a580,3, 0x13a590,2, 0x13a59c,16, 0x13a600,3, 0x13a610,2, 0x13a61c,16, 0x13a680,3, 0x13a690,2, 0x13a69c,16, 0x13a700,3, 0x13a710,2, 0x13a71c,16, 0x13a780,3, 0x13a790,2, 0x13a79c,16, 0x13a800,3, 0x13a810,2, 0x13a81c,16, 0x13a880,3, 0x13a890,2, 0x13a89c,16, 0x13a900,3, 0x13a910,2, 0x13a91c,16, 0x13a980,3, 0x13a990,2, 0x13a99c,16, 0x13aa00,21, 0x13ab80,7, 0x13ac00,16, 0x13ad00,20, 0x13ad60,2, 0x13b000,14, 0x13b040,14, 0x13b080,14, 0x13b0c0,14, 0x13b100,14, 0x13b140,14, 0x13b180,14, 0x13b1c0,14, 0x13b200,14, 0x13b240,14, 0x13b280,14, 0x13b2c0,14, 0x13b300,1, 0x13b400,14, 0x13b440,14, 0x13b480,14, 0x13b4c0,14, 0x13b500,14, 0x13b540,14, 0x13b580,14, 0x13b5c0,14, 0x13b600,14, 0x13b640,14, 0x13b680,14, 0x13b6c0,14, 0x13b700,1, 0x13b800,14, 0x13b840,14, 0x13b880,14, 0x13b8c0,14, 0x13b900,14, 0x13b940,14, 0x13b980,14, 0x13b9c0,14, 0x13ba00,14, 0x13ba40,14, 0x13ba80,14, 0x13bac0,14, 0x13bb00,1, 0x13bc00,14, 0x13bc40,14, 0x13bc80,14, 0x13bcc0,14, 0x13bd00,14, 0x13bd40,14, 0x13bd80,14, 0x13bdc0,14, 0x13be00,14, 0x13be40,14, 0x13be80,14, 0x13bec0,14, 0x13bf00,1, 0x13c000,14, 0x13c040,14, 0x13c080,14, 0x13c0c0,14, 0x13c100,14, 0x13c140,14, 0x13c180,14, 0x13c1c0,14, 0x13c200,14, 0x13c240,14, 0x13c280,14, 0x13c2c0,14, 0x13c300,1, 0x13c400,14, 0x13c440,14, 0x13c480,14, 0x13c4c0,14, 0x13c500,14, 0x13c540,14, 0x13c580,14, 0x13c5c0,14, 0x13c600,14, 0x13c640,14, 0x13c680,14, 0x13c6c0,14, 0x13c700,1, 0x13c800,14, 0x13c840,14, 0x13c880,14, 0x13c8c0,14, 0x13c900,14, 0x13c940,14, 0x13c980,14, 0x13c9c0,14, 0x13ca00,14, 0x13ca40,14, 0x13ca80,14, 0x13cac0,14, 0x13cb00,1, 0x13cc00,14, 0x13cc40,14, 0x13cc80,14, 0x13ccc0,14, 0x13cd00,14, 0x13cd40,14, 0x13cd80,14, 0x13cdc0,14, 0x13ce00,14, 0x13ce40,14, 0x13ce80,14, 0x13cec0,14, 0x13cf00,1, 0x13d000,14, 0x13d040,14, 0x13d080,14, 0x13d0c0,14, 0x13d100,14, 0x13d140,14, 0x13d180,14, 0x13d1c0,14, 0x13d200,14, 0x13d240,14, 0x13d280,14, 0x13d2c0,14, 0x13d300,1, 0x13d400,14, 0x13d440,14, 0x13d480,14, 0x13d4c0,14, 0x13d500,14, 0x13d540,14, 0x13d580,14, 0x13d5c0,14, 0x13d600,14, 0x13d640,14, 0x13d680,14, 0x13d6c0,14, 0x13d700,1, 0x13d800,14, 0x13d840,14, 0x13d880,14, 0x13d8c0,14, 0x13d900,14, 0x13d940,14, 0x13d980,14, 0x13d9c0,14, 0x13da00,14, 0x13da40,14, 0x13da80,14, 0x13dac0,14, 0x13db00,1, 0x13dc00,14, 0x13dc40,14, 0x13dc80,14, 0x13dcc0,14, 0x13dd00,14, 0x13dd40,14, 0x13dd80,14, 0x13ddc0,14, 0x13de00,14, 0x13de40,14, 0x13de80,14, 0x13dec0,14, 0x13df00,1, 0x13e000,14, 0x13e040,14, 0x13e080,14, 0x13e0c0,14, 0x13e100,14, 0x13e140,14, 0x13e180,14, 0x13e1c0,14, 0x13e200,14, 0x13e240,14, 0x13e280,14, 0x13e2c0,14, 0x13e300,1, 0x13e400,14, 0x13e440,14, 0x13e480,14, 0x13e4c0,14, 0x13e500,14, 0x13e540,14, 0x13e580,14, 0x13e5c0,14, 0x13e600,14, 0x13e640,14, 0x13e680,14, 0x13e6c0,14, 0x13e700,1, 0x13e800,14, 0x13e840,14, 0x13e880,14, 0x13e8c0,14, 0x13e900,14, 0x13e940,14, 0x13e980,14, 0x13e9c0,14, 0x13ea00,14, 0x13ea40,14, 0x13ea80,14, 0x13eac0,14, 0x13eb00,1, 0x13ec00,14, 0x13ec40,14, 0x13ec80,14, 0x13ecc0,14, 0x13ed00,14, 0x13ed40,14, 0x13ed80,14, 0x13edc0,14, 0x13ee00,14, 0x13ee40,14, 0x13ee80,14, 0x13eec0,14, 0x13ef00,1, 0x13f800,8, 0x13f824,15, 0x13f864,15, 0x13f8a4,15, 0x13f8e4,30, 0x13f980,10, 0x13f9ac,1, 0x13f9b4,5, 0x13f9cc,1, 0x13f9d4,5, 0x13f9ec,1, 0x13f9f4,13, 0x13fa80,4, 0x13fa94,2, 0x13faa0,5, 0x13fac0,5, 0x13fae0,4, 0x13fc04,8, 0x13fc40,13, 0x13fc80,16, 0x13fd00,14, 0x13fd40,3, 0x13fd50,3, 0x13fd60,3, 0x13fd70,11, 0x13fdc0,35, 0x13fe50,1, 0x13fe58,1, 0x13fe60,1, 0x13fe68,1, 0x13fe70,1, 0x13fe78,1, 0x13fe80,1, 0x13fe88,5, 0x13ff00,17, 0x13ff80,2, 0x13ff8c,5, 0x13ffc0,14, 0x141100,18, 0x141200,18, 0x14124c,5, 0x141264,25, 0x1412cc,5, 0x1412e4,25, 0x14134c,5, 0x141364,25, 0x1413cc,5, 0x1413e4,25, 0x14144c,5, 0x141464,25, 0x1414cc,5, 0x1414e4,25, 0x14154c,5, 0x141564,25, 0x1415cc,5, 0x1415e4,25, 0x14164c,5, 0x141664,25, 0x1416cc,5, 0x1416e4,25, 0x14174c,5, 0x141764,25, 0x1417cc,5, 0x1417e4,25, 0x14184c,5, 0x141864,25, 0x1418cc,5, 0x1418e4,25, 0x14194c,5, 0x141964,25, 0x1419cc,5, 0x1419e4,8, 0x141a08,2, 0x141a14,3, 0x141a24,5, 0x141b00,1, 0x141b08,1, 0x141b10,1, 0x142008,1, 0x142014,1, 0x14201c,1, 0x144000,7, 0x144020,3, 0x144030,4, 0x144044,6, 0x144080,7, 0x1440a0,3, 0x1440b0,4, 0x1440c4,6, 0x144100,7, 0x144120,3, 0x144130,4, 0x144144,6, 0x144180,7, 0x1441a0,3, 0x1441b0,4, 0x1441c4,6, 0x144200,7, 0x144220,3, 0x144230,4, 0x144244,6, 0x144280,7, 0x1442a0,3, 0x1442b0,4, 0x1442c4,6, 0x144300,7, 0x144320,3, 0x144330,4, 0x144344,6, 0x144380,7, 0x1443a0,3, 0x1443b0,4, 0x1443c4,6, 0x144400,7, 0x144420,3, 0x144430,4, 0x144444,6, 0x144480,7, 0x1444a0,3, 0x1444b0,4, 0x1444c4,6, 0x144500,7, 0x144520,3, 0x144530,4, 0x144544,6, 0x144580,7, 0x1445a0,3, 0x1445b0,4, 0x1445c4,6, 0x144600,7, 0x144620,3, 0x144630,4, 0x144644,6, 0x144680,7, 0x1446a0,3, 0x1446b0,4, 0x1446c4,6, 0x144700,7, 0x144720,3, 0x144730,4, 0x144744,6, 0x144780,7, 0x1447a0,3, 0x1447b0,4, 0x1447c4,6, 0x144800,7, 0x144820,3, 0x144830,4, 0x144880,17, 0x144c00,5, 0x144c20,4, 0x144c40,5, 0x144c60,4, 0x144c80,5, 0x144ca0,4, 0x144cc0,5, 0x144ce0,4, 0x144d00,5, 0x144d20,4, 0x144d40,5, 0x144d60,4, 0x144d80,5, 0x144da0,4, 0x144dc0,5, 0x144de0,4, 0x144e00,5, 0x144e20,4, 0x144e60,1, 0x145484,6, 0x1454b8,5, 0x1454d0,3, 0x1454e0,3, 0x1454f0,3, 0x145500,33, 0x1455c8,9, 0x1455f0,2, 0x145600,32, 0x145700,2, 0x145800,64, 0x145a00,3, 0x145c04,1, 0x145c1c,9, 0x145d04,1, 0x145d7c,33, 0x145e04,1, 0x145e18,12, 0x146000,49, 0x1467f4,19, 0x146844,1, 0x146850,6, 0x146880,16, 0x1468c4,1, 0x1468d0,6, 0x146900,16, 0x146944,1, 0x146950,6, 0x146980,16, 0x1469c4,1, 0x1469d0,6, 0x146a00,16, 0x146a44,1, 0x146a50,6, 0x146a80,16, 0x146ac4,1, 0x146ad0,6, 0x146b00,16, 0x146b44,1, 0x146b50,6, 0x146b80,16, 0x146bc4,1, 0x146bd0,6, 0x146c00,16, 0x146c44,1, 0x146c50,6, 0x146c80,16, 0x146cc4,1, 0x146cd0,6, 0x146d00,16, 0x146d44,1, 0x146d50,6, 0x146d80,16, 0x146dc4,1, 0x146dd0,6, 0x146e00,16, 0x146e44,1, 0x146e50,6, 0x146e80,16, 0x146ec4,1, 0x146ed0,6, 0x146f00,16, 0x146f44,1, 0x146f50,6, 0x146f80,16, 0x146fc4,1, 0x146fd0,6, 0x148000,45, 0x148100,45, 0x148204,4, 0x148220,4, 0x148240,9, 0x148280,1, 0x1482e0,6, 0x148300,50, 0x1483d8,2, 0x1483e4,10, 0x148410,6, 0x148500,2, 0x14850c,3, 0x14851c,2, 0x149000,3, 0x149010,3, 0x149020,3, 0x149030,3, 0x149040,3, 0x149050,3, 0x149080,4, 0x14909c,6, 0x1490c0,16, 0x149800,27, 0x149880,27, 0x149900,27, 0x149980,27, 0x149a00,27, 0x149a80,27, 0x149b00,27, 0x149b80,27, 0x149c00,27, 0x149c80,27, 0x149d00,27, 0x149d80,27, 0x149e00,27, 0x149e80,27, 0x149f00,27, 0x149f80,27, 0x14a000,13, 0x14a11c,1, 0x14a140,17, 0x14a400,1, 0x14a420,7, 0x14a440,1, 0x14a460,7, 0x14a480,1, 0x14a4a0,7, 0x14a4c0,1, 0x14a4e0,7, 0x14a500,1, 0x14a520,7, 0x14a540,1, 0x14a560,7, 0x14a580,1, 0x14a5a0,7, 0x14a5c0,1, 0x14a5e0,7, 0x14a600,1, 0x14a620,7, 0x14a640,1, 0x14a660,7, 0x14a680,1, 0x14a6a0,7, 0x14a6c0,1, 0x14a6e0,7, 0x14a700,1, 0x14a720,7, 0x14a740,1, 0x14a760,7, 0x14a780,1, 0x14a7a0,7, 0x14a7c0,1, 0x14a7e0,7, 0x14a800,19, 0x14a880,19, 0x14a900,19, 0x14a980,19, 0x14aa00,19, 0x14aa80,19, 0x14ab00,19, 0x14ab80,19, 0x14ac00,19, 0x14ac80,19, 0x14ad00,19, 0x14ad80,19, 0x14ae00,19, 0x14ae80,19, 0x14af00,19, 0x14af80,19, 0x14b000,13, 0x14b800,19, 0x14b880,19, 0x14b900,19, 0x14b980,19, 0x14ba00,19, 0x14ba80,19, 0x14bb00,19, 0x14bb80,19, 0x14bc00,19, 0x14bc80,19, 0x14bd00,19, 0x14bd80,19, 0x14be00,19, 0x14be80,19, 0x14bf00,19, 0x14bf80,19, 0x14c000,1, 0x14c008,1, 0x14c010,1, 0x14c018,1, 0x14c020,1, 0x14c028,1, 0x14c030,1, 0x14c038,1, 0x14c040,1, 0x14c100,32, 0x14c200,6, 0x14c21c,2, 0x14c228,5, 0x14c258,2, 0x14c264,7, 0x14c408,1, 0x14c410,4, 0x14c800,14, 0x14c840,14, 0x14c880,14, 0x14c8c0,14, 0x14c900,14, 0x14c940,14, 0x14c980,14, 0x14c9c0,14, 0x14ca00,14, 0x14ca40,14, 0x14ca80,14, 0x14cac0,14, 0x14cb00,14, 0x14cb40,14, 0x14cb80,14, 0x14cbc0,14, 0x14cc00,14, 0x14cc40,14, 0x14cc80,14, 0x14ccc0,14, 0x14cd00,14, 0x14cd40,14, 0x14cd80,14, 0x14cdc0,14, 0x14ce00,14, 0x14ce40,14, 0x14ce80,14, 0x14cec0,14, 0x14cf00,14, 0x14cf40,14, 0x14cf80,14, 0x14cfc0,14, 0x14d000,14, 0x14d040,14, 0x14d080,14, 0x14d200,51, 0x14d2d0,6, 0x14d400,19, 0x14d480,3, 0x14d490,6, 0x14d500,5, 0x14d524,5, 0x14d544,5, 0x14d564,5, 0x14d704,7, 0x14d724,7, 0x14d744,7, 0x14d764,7, 0x14d784,7, 0x14d7a4,7, 0x14d7c4,7, 0x14d7e4,7, 0x14d804,7, 0x14d824,7, 0x14d844,7, 0x14d864,7, 0x14d884,7, 0x14d8a4,7, 0x14d8c4,7, 0x14d8e4,7, 0x14d904,7, 0x14d924,7, 0x14d944,7, 0x14d964,7, 0x14d984,7, 0x14d9a4,7, 0x14d9c4,7, 0x14d9e4,7, 0x14da04,7, 0x14da24,7, 0x14da44,7, 0x14da64,7, 0x14da84,7, 0x14daa4,7, 0x14dac4,7, 0x14dae4,7, 0x14dbf8,6, 0x14dc80,2, 0x14dc90,2, 0x14dca0,6, 0x14dd38,32, 0x14f100,14, 0x14f140,2, 0x14f14c,1, 0x14f180,9, 0x14f1c0,25, 0x14f240,25, 0x14f2c0,25, 0x14f340,25, 0x14f3c0,25, 0x14f440,25, 0x14f4c0,25, 0x14f540,25, 0x14f5c0,25, 0x14f640,25, 0x14f6c0,25, 0x14f740,25, 0x14f7c0,25, 0x14f840,25, 0x14f8c0,25, 0x14f940,25, 0x14f9c0,25, 0x14fa40,25, 0x14fac0,20, 0x14fb20,1, 0x14fc00,1, 0x14fc28,1, 0x14fc50,1, 0x14fc78,1, 0x14fca0,10, 0x14fda8,2, 0x14fdd8,4, 0x14fe00,19, 0x14fe50,6, 0x150000,2, 0x150200,32, 0x150400,72, 0x150600,72, 0x151000,6, 0x151020,6, 0x151040,6, 0x151060,6, 0x151080,1, 0x152000,7, 0x152020,7, 0x152040,7, 0x152060,7, 0x152080,7, 0x1520a0,7, 0x1520c0,7, 0x1520e0,7, 0x152100,7, 0x152120,7, 0x152140,7, 0x152160,7, 0x152180,7, 0x1521a0,7, 0x1521c0,7, 0x1521e0,7, 0x152200,2, 0x153000,11, 0x153030,1, 0x153038,2, 0x153050,9, 0x153100,11, 0x153130,1, 0x153138,4, 0x15315c,6, 0x153180,11, 0x1531b0,1, 0x1531b8,4, 0x1531dc,6, 0x153200,11, 0x153230,1, 0x153238,4, 0x15325c,6, 0x153280,11, 0x1532b0,1, 0x1532b8,4, 0x1532dc,6, 0x153300,11, 0x153330,1, 0x153338,7, 0x15335c,6, 0x153380,11, 0x1533b0,1, 0x1533b8,7, 0x1533dc,6, 0x153400,11, 0x153430,1, 0x153438,7, 0x15345c,6, 0x153480,11, 0x1534b0,1, 0x1534b8,7, 0x1534dc,6, 0x153500,11, 0x153530,1, 0x153538,7, 0x15355c,6, 0x153580,11, 0x1535b0,1, 0x1535b8,7, 0x1535dc,6, 0x153600,11, 0x153630,1, 0x153638,7, 0x15365c,6, 0x153680,11, 0x1536b0,1, 0x1536b8,7, 0x1536dc,6, 0x153700,11, 0x153730,1, 0x153738,7, 0x15375c,6, 0x153780,11, 0x1537b0,1, 0x1537b8,7, 0x1537dc,6, 0x153800,11, 0x153830,1, 0x153838,7, 0x15385c,6, 0x153880,11, 0x1538b0,1, 0x1538b8,7, 0x1538dc,6, 0x153900,11, 0x153930,1, 0x153938,7, 0x15395c,6, 0x153980,11, 0x1539b0,1, 0x1539b8,7, 0x1539dc,6, 0x153a00,11, 0x153a30,1, 0x153a38,7, 0x153a5c,6, 0x153a80,11, 0x153ab0,1, 0x153ab8,7, 0x153adc,6, 0x153b00,11, 0x153b30,1, 0x153b38,7, 0x153b5c,6, 0x153b80,11, 0x153bb0,1, 0x153bb8,7, 0x153bdc,6, 0x153f00,11, 0x153f30,1, 0x153f38,2, 0x153f5c,1, 0x153f80,12, 0x153fc0,3, 0x153fd0,9, 0x155000,5, 0x155020,5, 0x155040,5, 0x155060,5, 0x155080,5, 0x1550a0,5, 0x1550c0,5, 0x1550e0,5, 0x155100,5, 0x155120,5, 0x155140,5, 0x155160,5, 0x155180,5, 0x1551a0,5, 0x1551c0,5, 0x1551e0,5, 0x155200,5, 0x155220,5, 0x155240,5, 0x155260,5, 0x155280,5, 0x1552a0,5, 0x1552c0,5, 0x1552e0,5, 0x155300,5, 0x155320,5, 0x155340,5, 0x155360,5, 0x155380,5, 0x1553a0,5, 0x1553c0,5, 0x1553e0,5, 0x155400,5, 0x155420,5, 0x155440,5, 0x155460,5, 0x155480,5, 0x1554a0,5, 0x1554c0,5, 0x1554e0,5, 0x155500,5, 0x155520,5, 0x155540,5, 0x155560,5, 0x155580,5, 0x1555a0,5, 0x1555c0,5, 0x1555e0,5, 0x155600,5, 0x155620,5, 0x155640,5, 0x155660,5, 0x155680,5, 0x1556a0,5, 0x1556c0,5, 0x1556e0,5, 0x155700,5, 0x155720,5, 0x155740,5, 0x155760,5, 0x155780,5, 0x1557a0,5, 0x1557c0,5, 0x1557e0,5, 0x155800,12, 0x155840,1, 0x155850,12, 0x155884,1, 0x1558c0,16, 0x156000,5, 0x156020,5, 0x156040,5, 0x156060,5, 0x156080,5, 0x1560a0,5, 0x1560c0,5, 0x1560e0,5, 0x156100,5, 0x156120,5, 0x156140,5, 0x156160,5, 0x156180,5, 0x1561a0,5, 0x1561c0,5, 0x1561e0,5, 0x156200,5, 0x156220,5, 0x156240,5, 0x156260,5, 0x156280,5, 0x1562a0,5, 0x1562c0,5, 0x1562e0,5, 0x156300,5, 0x156320,5, 0x156340,5, 0x156360,5, 0x156380,5, 0x1563a0,5, 0x1563c0,5, 0x1563e0,5, 0x156400,5, 0x156420,5, 0x156440,5, 0x156460,5, 0x156480,5, 0x1564a0,5, 0x1564c0,5, 0x1564e0,5, 0x156500,5, 0x156520,5, 0x156540,5, 0x156560,5, 0x156580,5, 0x1565a0,5, 0x1565c0,5, 0x1565e0,5, 0x156600,5, 0x156620,5, 0x156640,5, 0x156660,5, 0x156680,5, 0x1566a0,5, 0x1566c0,5, 0x1566e0,5, 0x156700,5, 0x156720,5, 0x156740,5, 0x156760,5, 0x156780,5, 0x1567a0,5, 0x1567c0,5, 0x1567e0,5, 0x156800,12, 0x156840,1, 0x156850,12, 0x156884,1, 0x1568c0,8, 0x15f800,1, 0x160014,9, 0x160040,7, 0x160064,12, 0x1600a0,1, 0x160100,12, 0x160180,14, 0x1601c0,14, 0x160214,9, 0x160240,7, 0x160264,12, 0x1602a0,1, 0x160300,12, 0x160380,14, 0x1603c0,14, 0x160414,9, 0x160440,7, 0x160464,12, 0x1604a0,1, 0x160500,12, 0x160580,14, 0x1605c0,14, 0x160614,9, 0x160640,7, 0x160664,12, 0x1606a0,1, 0x160700,12, 0x160780,14, 0x1607c0,14, 0x160814,9, 0x160840,7, 0x160864,12, 0x1608a0,1, 0x160900,12, 0x160980,14, 0x1609c0,14, 0x160a14,9, 0x160a40,7, 0x160a64,12, 0x160aa0,1, 0x160b00,12, 0x160b80,14, 0x160bc0,14, 0x160c14,9, 0x160c40,7, 0x160c64,12, 0x160ca0,1, 0x160d00,12, 0x160d80,14, 0x160dc0,14, 0x160e14,9, 0x160e40,7, 0x160e64,12, 0x160ea0,1, 0x160f00,12, 0x160f80,14, 0x160fc0,14, 0x161014,9, 0x161040,7, 0x161064,12, 0x1610a0,1, 0x161100,12, 0x161180,14, 0x1611c0,14, 0x161214,9, 0x161240,7, 0x161264,12, 0x1612a0,1, 0x161300,12, 0x161380,14, 0x1613c0,14, 0x161414,9, 0x161440,7, 0x161464,12, 0x1614a0,1, 0x161500,12, 0x161580,14, 0x1615c0,14, 0x161614,9, 0x161640,7, 0x161664,12, 0x1616a0,1, 0x161700,12, 0x161780,14, 0x1617c0,14, 0x161814,9, 0x161840,7, 0x161864,12, 0x1618a0,1, 0x161900,12, 0x161980,14, 0x1619c0,14, 0x161a14,9, 0x161a40,7, 0x161a64,12, 0x161aa0,1, 0x161b00,12, 0x161b80,14, 0x161bc0,14, 0x161c14,9, 0x161c40,7, 0x161c64,12, 0x161ca0,1, 0x161d00,12, 0x161d80,14, 0x161dc0,14, 0x161e14,9, 0x161e40,7, 0x161e64,12, 0x161ea0,1, 0x161f00,12, 0x161f80,14, 0x161fc0,14, 0x162000,48, 0x163000,2, 0x163010,2, 0x163020,2, 0x163040,3, 0x163050,6, 0x163ffc,1, 0x166000,1, 0x166028,1, 0x166050,1, 0x166078,1, 0x1660a0,5, 0x1661a8,2, 0x1661d8,4, 0x166200,19, 0x166250,6, 0x166400,9, 0x166440,25, 0x1664c0,25, 0x166540,25, 0x1665c0,25, 0x166640,25, 0x1666c0,25, 0x166740,25, 0x1667c0,16, 0x166a00,14, 0x166c20,3, 0x166c30,1, 0x166c3c,5, 0x166c60,2, 0x170000,29, 0x170078,4, 0x170090,2, 0x1700a0,7, 0x1700c0,11, 0x170100,14, 0x170140,14, 0x170180,61, 0x170278,4, 0x170290,2, 0x1702a0,7, 0x1702c0,11, 0x170300,14, 0x170340,14, 0x170380,61, 0x170478,4, 0x170490,2, 0x1704a0,7, 0x1704c0,11, 0x170500,14, 0x170540,14, 0x170580,61, 0x170678,4, 0x170690,2, 0x1706a0,7, 0x1706c0,11, 0x170700,14, 0x170740,14, 0x170780,69, 0x170c00,6, 0x170c40,14, 0x170c80,9, 0x170d00,9, 0x170d2c,1, 0x170d40,3, 0x170d60,1, 0x170d80,3, 0x170e00,2, 0x170e0c,1, 0x170e14,5, 0x170e2c,1, 0x170e34,5, 0x170e4c,1, 0x170e54,5, 0x170e6c,1, 0x170e74,5, 0x170e8c,1, 0x170e94,5, 0x170eac,1, 0x170eb4,3, 0x171000,29, 0x171078,4, 0x171090,2, 0x1710a0,7, 0x1710c0,11, 0x171100,14, 0x171140,14, 0x171180,61, 0x171278,4, 0x171290,2, 0x1712a0,7, 0x1712c0,11, 0x171300,14, 0x171340,14, 0x171380,61, 0x171478,4, 0x171490,2, 0x1714a0,7, 0x1714c0,11, 0x171500,14, 0x171540,14, 0x171580,61, 0x171678,4, 0x171690,2, 0x1716a0,7, 0x1716c0,11, 0x171700,14, 0x171740,14, 0x171780,69, 0x171c00,6, 0x171c40,14, 0x171c80,9, 0x171d00,9, 0x171d2c,1, 0x171d40,3, 0x171d60,1, 0x171d80,3, 0x171e00,2, 0x171e0c,1, 0x171e14,5, 0x171e2c,1, 0x171e34,5, 0x171e4c,1, 0x171e54,5, 0x171e6c,1, 0x171e74,5, 0x171e8c,1, 0x171e94,5, 0x171eac,1, 0x171eb4,3, 0x172000,29, 0x172078,4, 0x172090,2, 0x1720a0,7, 0x1720c0,11, 0x172100,14, 0x172140,14, 0x172180,61, 0x172278,4, 0x172290,2, 0x1722a0,7, 0x1722c0,11, 0x172300,14, 0x172340,14, 0x172380,61, 0x172478,4, 0x172490,2, 0x1724a0,7, 0x1724c0,11, 0x172500,14, 0x172540,14, 0x172580,61, 0x172678,4, 0x172690,2, 0x1726a0,7, 0x1726c0,11, 0x172700,14, 0x172740,14, 0x172780,69, 0x172c00,6, 0x172c40,14, 0x172c80,9, 0x172d00,9, 0x172d2c,1, 0x172d40,3, 0x172d60,1, 0x172d80,3, 0x172e00,2, 0x172e0c,1, 0x172e14,5, 0x172e2c,1, 0x172e34,5, 0x172e4c,1, 0x172e54,5, 0x172e6c,1, 0x172e74,5, 0x172e8c,1, 0x172e94,5, 0x172eac,1, 0x172eb4,3, 0x173000,29, 0x173078,4, 0x173090,2, 0x1730a0,7, 0x1730c0,11, 0x173100,14, 0x173140,14, 0x173180,61, 0x173278,4, 0x173290,2, 0x1732a0,7, 0x1732c0,11, 0x173300,14, 0x173340,14, 0x173380,61, 0x173478,4, 0x173490,2, 0x1734a0,7, 0x1734c0,11, 0x173500,14, 0x173540,14, 0x173580,61, 0x173678,4, 0x173690,2, 0x1736a0,7, 0x1736c0,11, 0x173700,14, 0x173740,14, 0x173780,69, 0x173c00,6, 0x173c40,14, 0x173c80,9, 0x173d00,9, 0x173d2c,1, 0x173d40,3, 0x173d60,1, 0x173d80,3, 0x173e00,2, 0x173e0c,1, 0x173e14,5, 0x173e2c,1, 0x173e34,5, 0x173e4c,1, 0x173e54,5, 0x173e6c,1, 0x173e74,5, 0x173e8c,1, 0x173e94,5, 0x173eac,1, 0x173eb4,3, 0x174000,19, 0x174050,31, 0x1740d0,31, 0x174150,31, 0x1741d0,31, 0x174250,31, 0x1742d0,31, 0x174350,31, 0x1743d0,31, 0x174450,31, 0x1744d0,31, 0x174550,31, 0x1745d0,31, 0x174650,31, 0x1746d0,31, 0x174750,31, 0x1747d0,31, 0x174850,12, 0x174884,1, 0x174894,23, 0x174900,7, 0x175000,72, 0x175200,72, 0x175400,72, 0x175600,72, 0x175800,72, 0x175a00,72, 0x175c00,72, 0x175e00,72, 0x176000,72, 0x176200,72, 0x176400,72, 0x176600,72, 0x176800,72, 0x176a00,72, 0x176c00,72, 0x176e00,72, 0x177000,17, 0x177048,9, 0x177070,3, 0x177090,13, 0x1770d0,1, 0x1770e0,5, 0x177100,17, 0x177148,9, 0x177170,3, 0x177190,13, 0x1771d0,1, 0x1771e0,5, 0x177200,17, 0x177248,9, 0x177270,3, 0x177290,13, 0x1772d0,1, 0x1772e0,5, 0x177300,17, 0x177348,9, 0x177370,3, 0x177390,13, 0x1773d0,1, 0x1773e0,5, 0x177400,17, 0x177448,9, 0x177470,3, 0x177490,13, 0x1774d0,1, 0x1774e0,5, 0x177500,17, 0x177548,9, 0x177570,3, 0x177590,13, 0x1775d0,1, 0x1775e0,5, 0x177600,17, 0x177648,9, 0x177670,3, 0x177690,13, 0x1776d0,1, 0x1776e0,5, 0x177700,17, 0x177748,9, 0x177770,3, 0x177790,13, 0x1777d0,1, 0x1777e0,5, 0x177800,17, 0x177848,9, 0x177870,3, 0x177890,13, 0x1778d0,1, 0x1778e0,5, 0x177900,17, 0x177948,9, 0x177970,3, 0x177990,13, 0x1779d0,1, 0x1779e0,5, 0x177a00,17, 0x177a48,9, 0x177a70,3, 0x177a90,13, 0x177ad0,1, 0x177ae0,5, 0x177b00,17, 0x177b48,9, 0x177b70,3, 0x177b90,13, 0x177bd0,1, 0x177be0,5, 0x177c00,17, 0x177c48,9, 0x177c70,3, 0x177c90,13, 0x177cd0,1, 0x177ce0,5, 0x177d00,17, 0x177d48,9, 0x177d70,3, 0x177d90,13, 0x177dd0,1, 0x177de0,5, 0x177e00,17, 0x177e48,9, 0x177e70,3, 0x177e90,13, 0x177ed0,1, 0x177ee0,5, 0x177f00,17, 0x177f48,9, 0x177f70,3, 0x177f90,13, 0x177fd0,1, 0x177fe0,5, 0x178000,7, 0x178020,10, 0x178050,2, 0x178080,7, 0x1780a0,10, 0x1780d0,2, 0x178100,7, 0x178120,10, 0x178150,2, 0x178180,7, 0x1781a0,10, 0x1781d0,2, 0x178200,7, 0x178220,10, 0x178250,2, 0x178280,7, 0x1782a0,10, 0x1782d0,2, 0x178300,7, 0x178320,10, 0x178350,2, 0x178380,7, 0x1783a0,10, 0x1783d0,2, 0x178400,7, 0x178420,10, 0x178450,2, 0x178480,7, 0x1784a0,10, 0x1784d0,2, 0x178500,7, 0x178520,10, 0x178550,2, 0x178580,7, 0x1785a0,10, 0x1785d0,2, 0x178600,7, 0x178620,10, 0x178650,2, 0x178680,7, 0x1786a0,10, 0x1786d0,2, 0x178700,7, 0x178720,10, 0x178750,2, 0x178780,7, 0x1787a0,10, 0x1787d0,2, 0x178800,18, 0x178880,18, 0x178900,18, 0x178980,18, 0x178a00,18, 0x178a80,18, 0x178b00,18, 0x178b80,18, 0x178c00,18, 0x178c80,18, 0x178d00,18, 0x178d80,18, 0x178e00,18, 0x178e80,18, 0x178f00,18, 0x178f80,18, 0x179000,12, 0x179034,1, 0x17903c,4, 0x179050,2, 0x1790a0,2, 0x1790ac,1, 0x1790b4,6, 0x179100,22, 0x179180,8, 0x1791a4,5, 0x1791c0,14, 0x179200,14, 0x179240,14, 0x179280,14, 0x1792c0,14, 0x179300,14, 0x179340,14, 0x179400,14, 0x179440,14, 0x179480,14, 0x1794c0,14, 0x179500,14, 0x179540,14, 0x179580,14, 0x1795c0,14, 0x179600,14, 0x179640,14, 0x179680,14, 0x1796c0,14, 0x179800,2, 0x17a040,88, 0x17a200,3, 0x17a210,2, 0x17a21c,16, 0x17a280,3, 0x17a290,2, 0x17a29c,16, 0x17a300,3, 0x17a310,2, 0x17a31c,16, 0x17a380,3, 0x17a390,2, 0x17a39c,16, 0x17a400,3, 0x17a410,2, 0x17a41c,16, 0x17a480,3, 0x17a490,2, 0x17a49c,16, 0x17a500,3, 0x17a510,2, 0x17a51c,16, 0x17a580,3, 0x17a590,2, 0x17a59c,16, 0x17a600,3, 0x17a610,2, 0x17a61c,16, 0x17a680,3, 0x17a690,2, 0x17a69c,16, 0x17a700,3, 0x17a710,2, 0x17a71c,16, 0x17a780,3, 0x17a790,2, 0x17a79c,16, 0x17a800,3, 0x17a810,2, 0x17a81c,16, 0x17a880,3, 0x17a890,2, 0x17a89c,16, 0x17a900,3, 0x17a910,2, 0x17a91c,16, 0x17a980,3, 0x17a990,2, 0x17a99c,16, 0x17aa00,21, 0x17ab80,7, 0x17ac00,16, 0x17ad00,20, 0x17ad60,2, 0x17b000,14, 0x17b040,14, 0x17b080,14, 0x17b0c0,14, 0x17b100,14, 0x17b140,14, 0x17b180,14, 0x17b1c0,14, 0x17b200,14, 0x17b240,14, 0x17b280,14, 0x17b2c0,14, 0x17b300,1, 0x17b400,14, 0x17b440,14, 0x17b480,14, 0x17b4c0,14, 0x17b500,14, 0x17b540,14, 0x17b580,14, 0x17b5c0,14, 0x17b600,14, 0x17b640,14, 0x17b680,14, 0x17b6c0,14, 0x17b700,1, 0x17b800,14, 0x17b840,14, 0x17b880,14, 0x17b8c0,14, 0x17b900,14, 0x17b940,14, 0x17b980,14, 0x17b9c0,14, 0x17ba00,14, 0x17ba40,14, 0x17ba80,14, 0x17bac0,14, 0x17bb00,1, 0x17bc00,14, 0x17bc40,14, 0x17bc80,14, 0x17bcc0,14, 0x17bd00,14, 0x17bd40,14, 0x17bd80,14, 0x17bdc0,14, 0x17be00,14, 0x17be40,14, 0x17be80,14, 0x17bec0,14, 0x17bf00,1, 0x17c000,14, 0x17c040,14, 0x17c080,14, 0x17c0c0,14, 0x17c100,14, 0x17c140,14, 0x17c180,14, 0x17c1c0,14, 0x17c200,14, 0x17c240,14, 0x17c280,14, 0x17c2c0,14, 0x17c300,1, 0x17c400,14, 0x17c440,14, 0x17c480,14, 0x17c4c0,14, 0x17c500,14, 0x17c540,14, 0x17c580,14, 0x17c5c0,14, 0x17c600,14, 0x17c640,14, 0x17c680,14, 0x17c6c0,14, 0x17c700,1, 0x17c800,14, 0x17c840,14, 0x17c880,14, 0x17c8c0,14, 0x17c900,14, 0x17c940,14, 0x17c980,14, 0x17c9c0,14, 0x17ca00,14, 0x17ca40,14, 0x17ca80,14, 0x17cac0,14, 0x17cb00,1, 0x17cc00,14, 0x17cc40,14, 0x17cc80,14, 0x17ccc0,14, 0x17cd00,14, 0x17cd40,14, 0x17cd80,14, 0x17cdc0,14, 0x17ce00,14, 0x17ce40,14, 0x17ce80,14, 0x17cec0,14, 0x17cf00,1, 0x17d000,14, 0x17d040,14, 0x17d080,14, 0x17d0c0,14, 0x17d100,14, 0x17d140,14, 0x17d180,14, 0x17d1c0,14, 0x17d200,14, 0x17d240,14, 0x17d280,14, 0x17d2c0,14, 0x17d300,1, 0x17d400,14, 0x17d440,14, 0x17d480,14, 0x17d4c0,14, 0x17d500,14, 0x17d540,14, 0x17d580,14, 0x17d5c0,14, 0x17d600,14, 0x17d640,14, 0x17d680,14, 0x17d6c0,14, 0x17d700,1, 0x17d800,14, 0x17d840,14, 0x17d880,14, 0x17d8c0,14, 0x17d900,14, 0x17d940,14, 0x17d980,14, 0x17d9c0,14, 0x17da00,14, 0x17da40,14, 0x17da80,14, 0x17dac0,14, 0x17db00,1, 0x17dc00,14, 0x17dc40,14, 0x17dc80,14, 0x17dcc0,14, 0x17dd00,14, 0x17dd40,14, 0x17dd80,14, 0x17ddc0,14, 0x17de00,14, 0x17de40,14, 0x17de80,14, 0x17dec0,14, 0x17df00,1, 0x17e000,14, 0x17e040,14, 0x17e080,14, 0x17e0c0,14, 0x17e100,14, 0x17e140,14, 0x17e180,14, 0x17e1c0,14, 0x17e200,14, 0x17e240,14, 0x17e280,14, 0x17e2c0,14, 0x17e300,1, 0x17e400,14, 0x17e440,14, 0x17e480,14, 0x17e4c0,14, 0x17e500,14, 0x17e540,14, 0x17e580,14, 0x17e5c0,14, 0x17e600,14, 0x17e640,14, 0x17e680,14, 0x17e6c0,14, 0x17e700,1, 0x17e800,14, 0x17e840,14, 0x17e880,14, 0x17e8c0,14, 0x17e900,14, 0x17e940,14, 0x17e980,14, 0x17e9c0,14, 0x17ea00,14, 0x17ea40,14, 0x17ea80,14, 0x17eac0,14, 0x17eb00,1, 0x17ec00,14, 0x17ec40,14, 0x17ec80,14, 0x17ecc0,14, 0x17ed00,14, 0x17ed40,14, 0x17ed80,14, 0x17edc0,14, 0x17ee00,14, 0x17ee40,14, 0x17ee80,14, 0x17eec0,14, 0x17ef00,1, 0x17fc04,8, 0x17fc40,13, 0x17fc80,16, 0x17fd00,14, 0x17fd40,3, 0x17fd50,3, 0x17fd60,3, 0x17fd70,11, 0x17fdc0,35, 0x17fe50,1, 0x17fe58,1, 0x17fe60,1, 0x17fe68,1, 0x17fe70,1, 0x17fe78,1, 0x17fe80,1, 0x17fe88,5, 0x17ff00,17, 0x17ff80,2, 0x17ff8c,5, 0x17ffc0,14, 0x180000,3, 0x180018,1, 0x180020,3, 0x180038,1, 0x180040,3, 0x180058,1, 0x180060,3, 0x180078,1, 0x180080,3, 0x180098,1, 0x1800a0,3, 0x1800b8,1, 0x1800c0,3, 0x1800d8,1, 0x1800e0,3, 0x1800f8,1, 0x180100,3, 0x180118,1, 0x180120,3, 0x180138,1, 0x180140,3, 0x180158,1, 0x180160,3, 0x180178,1, 0x180180,3, 0x180198,1, 0x1801a0,3, 0x1801b8,1, 0x1801c0,3, 0x1801d8,1, 0x1801e0,3, 0x1801f8,1, 0x180200,3, 0x180218,1, 0x180d00,3, 0x180d10,2, 0x181100,17, 0x181148,2, 0x181154,3, 0x181168,3, 0x181200,2, 0x181400,1, 0x181408,3, 0x181500,1, 0x181508,1, 0x181510,1, 0x181520,1, 0x181528,1, 0x181530,1, 0x181540,1, 0x181548,1, 0x181550,1, 0x182008,1, 0x182014,2, 0x182304,1, 0x182324,25, 0x182400,68, 0x182520,6, 0x182540,1, 0x182600,1, 0x182608,5, 0x182680,6, 0x1826a8,2, 0x182700,4, 0x18275c,1, 0x182768,1, 0x182770,4, 0x182790,1, 0x18279c,1, 0x182800,3, 0x182810,3, 0x182820,3, 0x182830,3, 0x182840,3, 0x182850,3, 0x182860,3, 0x182870,3, 0x182880,3, 0x182890,3, 0x1828a0,3, 0x1828b0,3, 0x1828c0,3, 0x1828d0,3, 0x1828e0,3, 0x1828f0,3, 0x182900,3, 0x182910,10, 0x182940,7, 0x182960,1, 0x182970,9, 0x182a00,1, 0x182a40,9, 0x182a80,9, 0x182ac0,1, 0x182b00,9, 0x182b40,9, 0x182b84,1, 0x182b9c,9, 0x182be0,5, 0x182c00,20, 0x182cd8,5, 0x182cf0,37, 0x182e00,1, 0x183fe0,3, 0x184004,1, 0x184024,9, 0x184080,1, 0x184104,1, 0x184124,9, 0x184180,1, 0x184204,1, 0x184224,9, 0x184280,1, 0x184304,1, 0x184324,9, 0x184380,1, 0x184404,1, 0x184424,9, 0x184480,1, 0x184504,1, 0x184524,9, 0x184580,1, 0x184604,1, 0x184624,9, 0x184680,1, 0x184704,1, 0x184724,9, 0x184780,1, 0x184804,1, 0x184824,9, 0x184880,1, 0x184904,1, 0x184924,9, 0x184980,1, 0x184a04,1, 0x184a24,9, 0x184a80,1, 0x184b04,1, 0x184b24,9, 0x184b80,1, 0x184c04,1, 0x184c24,9, 0x184c80,1, 0x184d04,1, 0x184d24,9, 0x184d80,1, 0x184e04,1, 0x184e24,9, 0x184e80,1, 0x184f04,1, 0x184f24,9, 0x184f80,1, 0x185004,1, 0x185024,9, 0x185080,1, 0x185104,2, 0x185114,4, 0x18515c,10, 0x185188,2, 0x1851c0,9, 0x185240,9, 0x185280,1, 0x1852c0,9, 0x185300,1, 0x185340,9, 0x185380,1, 0x1853c8,1, 0x1853d8,1, 0x1853e8,1, 0x1853f0,2, 0x1853fc,5, 0x185a00,4, 0x185a20,2, 0x185a2c,3, 0x185a44,5, 0x185b04,1, 0x185b70,40, 0x185c20,2, 0x185c2c,3, 0x185c44,5, 0x185d04,1, 0x185d70,40, 0x185e20,2, 0x185e2c,3, 0x185e44,5, 0x185f04,1, 0x185f70,40, 0x186020,2, 0x18602c,3, 0x186044,5, 0x186104,1, 0x186170,40, 0x186220,2, 0x18622c,3, 0x186244,5, 0x186304,1, 0x186370,36, 0x18700c,7, 0x187124,3, 0x188000,17, 0x188084,8, 0x188100,17, 0x188180,2, 0x188200,1, 0x18820c,7, 0x188230,3, 0x188280,16, 0x188300,3, 0x188310,9, 0x188700,3, 0x188718,7, 0x188740,6, 0x188800,3, 0x188818,7, 0x188840,6, 0x188900,3, 0x188918,7, 0x188940,6, 0x188a00,3, 0x188a18,7, 0x188a40,6, 0x188b00,3, 0x188b18,7, 0x188b40,6, 0x188c00,3, 0x188c18,7, 0x188c40,6, 0x188d00,3, 0x188d18,7, 0x188d40,6, 0x188e00,3, 0x188e18,7, 0x188e40,6, 0x188f00,3, 0x188f18,7, 0x188f40,6, 0x189000,3, 0x189018,7, 0x189040,6, 0x189100,3, 0x189118,7, 0x189140,6, 0x189200,3, 0x189218,7, 0x189240,6, 0x189300,3, 0x189318,7, 0x189340,6, 0x189400,3, 0x189418,7, 0x189440,6, 0x189500,3, 0x189518,7, 0x189540,6, 0x189600,3, 0x189618,7, 0x189640,6, 0x189700,3, 0x189718,7, 0x189740,6, 0x18c5fc,1, 0x18c604,1, 0x18c6ec,72, 0x18c884,1, 0x18c8ac,21, 0x18c904,1, 0x18c924,7, 0x18c950,2, 0x18ca00,19, 0x18ca50,6, 0x18ca80,19, 0x18cad0,6, 0x18cb00,19, 0x18cb50,6, 0x18cb80,19, 0x18cbd0,6, 0x18cc00,19, 0x18cc50,6, 0x18cc80,19, 0x18ccd0,6, 0x18cd00,19, 0x18cd50,6, 0x18cd80,19, 0x18cdd0,6, 0x18ce00,19, 0x18ce50,6, 0x18ce80,19, 0x18ced0,6, 0x18cf00,19, 0x18cf50,6, 0x18cf80,19, 0x18cfd0,6, 0x18d000,19, 0x18d050,6, 0x18d080,19, 0x18d0d0,6, 0x18d100,19, 0x18d150,6, 0x18d180,19, 0x18d1d0,6, 0x18d200,19, 0x18d250,6, 0x18db00,3, 0x18db10,6, 0x18db40,14, 0x18db80,19, 0x18dbd0,6, 0x18dc00,14, 0x18dc40,14, 0x18dc80,14, 0x18dcc0,14, 0x18dd00,14, 0x18dd40,14, 0x18dd80,14, 0x18de00,27, 0x18df00,3, 0x18df10,6, 0x18dff8,1, 0x18e010,32, 0x18e0b0,10, 0x18f700,9, 0x18f740,25, 0x18f7c0,25, 0x18f840,25, 0x18f8c0,25, 0x18f940,25, 0x18f9c0,25, 0x18fa40,25, 0x18fac0,20, 0x18fc00,1, 0x18fc28,1, 0x18fc50,1, 0x18fc78,1, 0x18fca0,8, 0x18fda8,2, 0x18fdd8,4, 0x18fe00,19, 0x18fe50,6, 0x190004,3, 0x190014,3, 0x190024,3, 0x190034,3, 0x190044,3, 0x190054,3, 0x190064,3, 0x190074,3, 0x190084,3, 0x190094,3, 0x1900a4,3, 0x1900b4,3, 0x1900c4,3, 0x1900d4,3, 0x1900e4,3, 0x1900f4,3, 0x190104,3, 0x190114,3, 0x190124,3, 0x190134,3, 0x190144,3, 0x190154,3, 0x190164,3, 0x190174,3, 0x190184,3, 0x190194,3, 0x1901a4,3, 0x1901b4,3, 0x1901c4,3, 0x1901d4,3, 0x1901e4,3, 0x1901f4,3, 0x190204,3, 0x190214,3, 0x190224,3, 0x190234,3, 0x190244,3, 0x190254,3, 0x190264,3, 0x190274,3, 0x190ffc,4, 0x191200,32, 0x191400,72, 0x191600,72, 0x192000,3, 0x192020,3, 0x192204,13, 0x1922e0,33, 0x192400,3, 0x192410,9, 0x194000,9, 0x194080,5, 0x19409c,5, 0x1940c0,17, 0x194400,19, 0x194480,19, 0x194500,19, 0x195000,8, 0x19502c,4, 0x195800,19, 0x195880,19, 0x195900,19, 0x196000,4, 0x196018,2, 0x196100,7, 0x196800,24, 0x197000,276, 0x197804,9, 0x19785c,7, 0x197884,1, 0x197b08,1, 0x197b18,1, 0x197b28,1, 0x197b30,2, 0x197b3c,1, 0x197b80,15, 0x197c00,9, 0x197c40,4, 0x198000,3, 0x198024,5, 0x198044,5, 0x198064,5, 0x198084,7, 0x1980a4,7, 0x199000,160, 0x199700,2, 0x199710,2, 0x199ffc,13, 0x19a040,1, 0x19f800,1, 0x1a0000,1, 0x1a0008,1, 0x1a0100,1, 0x1a0108,1, 0x1a0110,1, 0x1a0118,1, 0x1a0120,1, 0x1a0128,1, 0x1a0130,1, 0x1a0138,1, 0x1a0140,1, 0x1a0148,1, 0x1a0150,1, 0x1a0158,1, 0x1a0160,1, 0x1a0168,1, 0x1a0170,1, 0x1a0178,1, 0x1a0180,1, 0x1a0188,1, 0x1a0190,1, 0x1a0198,1, 0x1a01a0,1, 0x1a01a8,1, 0x1a01b0,1, 0x1a01b8,1, 0x1a01c0,1, 0x1a01c8,1, 0x1a01d0,1, 0x1a01d8,1, 0x1a01e0,1, 0x1a01e8,1, 0x1a01f0,1, 0x1a01f8,1, 0x1a0200,1, 0x1a0208,1, 0x1a0210,1, 0x1a0218,1, 0x1a0220,1, 0x1a0228,1, 0x1a0230,1, 0x1a0238,1, 0x1a0240,1, 0x1a0248,1, 0x1a0250,1, 0x1a0258,1, 0x1a0260,1, 0x1a0268,1, 0x1a0270,1, 0x1a0278,1, 0x1a0280,1, 0x1a0288,1, 0x1a0290,1, 0x1a0298,1, 0x1a02a0,1, 0x1a02a8,1, 0x1a02b0,1, 0x1a02b8,1, 0x1a02c0,1, 0x1a02c8,1, 0x1a02d0,1, 0x1a02d8,1, 0x1a02e0,1, 0x1a02e8,1, 0x1a02f0,1, 0x1a02f8,1, 0x1a0300,1, 0x1a0308,1, 0x1a0310,1, 0x1a0318,1, 0x1a0320,1, 0x1a0328,1, 0x1a0330,1, 0x1a0338,1, 0x1a0340,1, 0x1a0348,1, 0x1a0350,1, 0x1a0358,1, 0x1a0360,1, 0x1a0368,1, 0x1a0370,1, 0x1a0378,1, 0x1a0380,1, 0x1a0388,1, 0x1a0390,1, 0x1a0398,1, 0x1a03a0,1, 0x1a03a8,1, 0x1a03b0,1, 0x1a03b8,1, 0x1a03c0,1, 0x1a03c8,1, 0x1a0400,1, 0x1c0000,2, 0x1c0010,1, 0x1c0018,10, 0x1c0048,4, 0x1c0068,2, 0x1c0100,1, 0x1c0180,42, 0x1c022c,48, 0x1c02f4,9, 0x1c0320,1, 0x1c0328,2, 0x1c0340,3, 0x1c0350,4, 0x1c0380,18, 0x1c03fc,1, 0x1c0408,2, 0x1c0418,2, 0x1c0428,2, 0x1c0438,2, 0x1c0448,2, 0x1c0458,2, 0x1c0468,2, 0x1c0478,18, 0x1c04c4,3, 0x1c0590,6, 0x1c05c0,32, 0x1c0680,16, 0x1c0700,9, 0x1c0af0,3, 0x1c0b00,1, 0x1c0b0c,9, 0x1c0b44,1, 0x1c0b54,5, 0x1c0ba8,2, 0x1c1000,16, 0x1c1060,2, 0x1c1100,1, 0x1c1180,99, 0x1c1310,6, 0x1c1400,3, 0x1c1410,6, 0x1c1480,10, 0x1c14c8,2, 0x1c1500,1, 0x1c1580,8, 0x1c1600,1, 0x1c1640,16, 0x1c2000,5, 0x1c201c,12, 0x1c2080,14, 0x1c2100,5, 0x1c211c,12, 0x1c2180,14, 0x1c2200,5, 0x1c221c,2, 0x1c2244,2, 0x1c2280,14, 0x1c4000,7, 0x1c4020,4, 0x1c4204,1, 0x1c4280,35, 0x1c4310,4, 0x1c4404,1, 0x1c4480,34, 0x1c4510,10, 0x1c453c,3, 0x1c4800,7, 0x1c4820,4, 0x1c4a04,1, 0x1c4a80,35, 0x1c4b10,4, 0x1c4c04,1, 0x1c4c80,34, 0x1c4d10,10, 0x1c4d3c,3, 0x1c5000,7, 0x1c5020,4, 0x1c5204,1, 0x1c5280,35, 0x1c5310,4, 0x1c5404,1, 0x1c5480,34, 0x1c5510,10, 0x1c553c,3, 0x1c6000,384, 0x1c6804,1, 0x1c6814,7, 0x1c6848,2, 0x1c6880,32, 0x1e0000,5, 0x1e0100,19, 0x1e0200,19, 0x1e0800,5, 0x1e0900,19, 0x1e0a00,19, 0x1e1000,5, 0x1e1100,19, 0x1e1200,19, 0x1e1300,19, 0x1e1800,5, 0x1e1900,19, 0x1e1a00,19, 0x1e1b00,19, 0x1e2000,5, 0x1e2100,19, 0x1e2200,19, 0x1e2800,5, 0x1e2900,19, 0x1e2a00,19, 0x1e3000,5, 0x1e3100,19, 0x1e3200,19, 0x1e3300,19, 0x1e3800,5, 0x1e3900,19, 0x1e3a00,19, 0x1e3b00,19, 0x1e4000,5, 0x1e4100,19, 0x1e4200,19, 0x1e4800,5, 0x1e4900,19, 0x1e4a00,19, 0x1e5000,5, 0x1e5100,19, 0x1e5200,19, 0x1e5300,19, 0x1e5800,5, 0x1e5900,19, 0x1e5a00,19, 0x1e5b00,19, 0x1e6000,5, 0x1e6100,19, 0x1e6200,19, 0x1e6800,5, 0x1e6900,19, 0x1e6a00,19, 0x1e7000,5, 0x1e7100,19, 0x1e7200,19, 0x1e7300,19, 0x1e7800,5, 0x1e7900,19, 0x1e7a00,19, 0x1e7b00,19, 0x1e8000,5, 0x1e8100,19, 0x1e8200,19, 0x1e8800,5, 0x1e8900,19, 0x1e8a00,19, 0x1e9000,5, 0x1e9100,19, 0x1e9200,19, 0x1e9300,19, 0x1e9800,5, 0x1e9900,19, 0x1e9a00,19, 0x1e9b00,19, 0x1ea000,5, 0x1ea100,19, 0x1ea200,19, 0x1ea800,5, 0x1ea900,19, 0x1eaa00,19, 0x1eb000,5, 0x1eb100,19, 0x1eb200,19, 0x1eb300,19, 0x1eb800,5, 0x1eb900,19, 0x1eba00,19, 0x1ebb00,19, 0x1ec000,5, 0x1ec100,19, 0x1ec200,19, 0x1ec800,5, 0x1ec900,19, 0x1eca00,19, 0x1ed000,5, 0x1ed100,19, 0x1ed200,19, 0x1ed300,19, 0x1ed800,5, 0x1ed900,19, 0x1eda00,19, 0x1edb00,19, 0x1ee000,5, 0x1ee100,19, 0x1ee200,19, 0x1ee800,5, 0x1ee900,19, 0x1eea00,19, 0x1ef000,5, 0x1ef100,19, 0x1ef200,19, 0x1ef300,19, 0x1ef800,5, 0x1ef900,19, 0x1efa00,19, 0x1efb00,19, 0x1f0000,5, 0x1f0100,19, 0x1f0200,19, 0x1f0300,19, 0x1f0400,19, 0x1f0800,2, 0x1f0900,35, 0x1f1000,2, 0x1f1100,35, 0x1f1800,2, 0x1f1900,35, 0x1f2000,2, 0x1f2100,35, 0x1f2800,5, 0x1f2900,19, 0x1f2a00,19, 0x1f3000,5, 0x1f3100,19, 0x1f3200,19, 0x1f3300,19, 0x1f3400,19, 0x1f3800,2, 0x1f3900,35, 0x1f4000,2, 0x1f4100,35, 0x1f4800,2, 0x1f4900,35, 0x1f5000,2, 0x1f5100,35, 0x1f5800,5, 0x1f5900,19, 0x1f5a00,19, 0x1f6000,5, 0x1f6100,19, 0x1f6200,35, 0x1f6300,19, 0x1f6400,19, 0x1f6800,5, 0x1f6900,19, 0x1f6a00,35, 0x1f6b00,19, 0x1f6c00,19, 0x1f7000,5, 0x1f7100,19, 0x1f7200,35, 0x1f7300,19, 0x1f7400,19, 0x1f7800,5, 0x1f7900,19, 0x1f7a00,19, 0x1f8000,5, 0x1f8100,19, 0x1f8200,19, 0x1f8800,5, 0x1f8900,19, 0x1f8a00,19, 0x1f8b00,19, 0x1f9000,5, 0x1f9100,19, 0x1f9200,19, 0x1f9800,5, 0x1f9900,19, 0x1f9a00,19, 0x1fa000,5, 0x1fa100,19, 0x1fa200,19, 0x1fa300,19, 0x1fa800,5, 0x1fa900,19, 0x1faa00,19, 0x1fab00,19, 0x1fb000,5, 0x1fb100,19, 0x1fb200,19, 0x1fb300,19, 0x1fb800,5, 0x1fb900,19, 0x1fba00,19, 0x1fbb00,35, 0x1fc000,10, 0x1fc080,10, 0x1fc100,10, 0x1fc180,10, 0x1fc200,10, 0x1fc280,10, 0x1fc300,10, 0x1fc380,10, 0x1fc400,10, 0x1fc480,10, 0x1fc500,10, 0x1fc580,10, 0x1fc600,10, 0x1fc680,10, 0x1fc700,10, 0x1fc780,10, 0x1fc800,10, 0x1fc880,10, 0x1fc900,3, 0x1fc910,3, 0x1fc920,3, 0x1fc930,3, 0x1fc940,3, 0x1fc950,3, 0x1fc960,3, 0x1fc970,3, 0x1fc980,3, 0x1fc990,3, 0x1fc9d0,3, 0x1fc9e0,3, mstflint-4.26.0/mstdump/mstdump_dbs/Spectrum3.csv0000755000175000017500000353402014522641732022331 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000400,19, 0x000500,22, 0x000600,4, 0x0007e0,1, 0x000800,19, 0x000900,22, 0x000a00,4, 0x000be0,1, 0x000c00,19, 0x000d00,22, 0x000e00,4, 0x000fe0,1, 0x001000,19, 0x001100,22, 0x001200,4, 0x0013e0,1, 0x001400,19, 0x001500,22, 0x001600,4, 0x0017e0,1, 0x001800,19, 0x001900,22, 0x001a00,4, 0x001be0,1, 0x001c00,19, 0x001d00,22, 0x001e00,4, 0x001fe0,1, 0x002000,19, 0x002100,22, 0x002200,4, 0x0023e0,1, 0x002400,19, 0x002500,22, 0x002600,4, 0x0027e0,1, 0x002800,19, 0x002900,22, 0x002a00,4, 0x002be0,1, 0x002c00,19, 0x002d00,22, 0x002e00,4, 0x002fe0,1, 0x003000,19, 0x003100,22, 0x003200,4, 0x0033e0,1, 0x003400,19, 0x003500,22, 0x003600,4, 0x0037e0,1, 0x003800,19, 0x003900,22, 0x003a00,4, 0x003be0,1, 0x003c00,19, 0x003d00,22, 0x003e00,4, 0x003fe0,1, 0x004000,19, 0x004100,22, 0x004200,4, 0x0043e0,1, 0x004400,19, 0x004500,22, 0x004600,4, 0x0047e0,1, 0x004800,19, 0x004900,22, 0x004a00,4, 0x004be0,1, 0x004c00,19, 0x004d00,22, 0x004e00,4, 0x004fe0,1, 0x005000,19, 0x005100,22, 0x005200,4, 0x0053e0,1, 0x005400,19, 0x005500,22, 0x005600,4, 0x0057e0,1, 0x005800,19, 0x005900,22, 0x005a00,4, 0x005be0,1, 0x005c00,19, 0x005d00,22, 0x005e00,4, 0x005fe0,1, 0x006000,19, 0x006100,22, 0x006200,4, 0x0063e0,1, 0x006400,19, 0x006500,22, 0x006600,4, 0x0067e0,1, 0x006800,19, 0x006900,22, 0x006a00,4, 0x006be0,1, 0x006c00,19, 0x006d00,22, 0x006e00,4, 0x006fe0,1, 0x007000,19, 0x007100,22, 0x007200,4, 0x0073e0,1, 0x007400,19, 0x007500,22, 0x007600,4, 0x0077e0,1, 0x007800,19, 0x007900,22, 0x007a00,4, 0x007be0,1, 0x007c00,19, 0x007d00,22, 0x007e00,4, 0x007fe0,1, 0x008000,19, 0x008100,22, 0x008200,4, 0x0083e0,1, 0x008400,27, 0x008500,34, 0x008600,4, 0x0087e0,1, 0x008800,19, 0x008900,14, 0x008a00,4, 0x008be0,1, 0x008c00,27, 0x008d00,34, 0x008e00,4, 0x008fe0,1, 0x009000,19, 0x009100,16, 0x009200,4, 0x0093e0,1, 0x010800,3, 0x010814,10, 0x010840,11, 0x010870,35, 0x010900,8, 0x010924,5, 0x010980,2, 0x01098c,2, 0x0109a0,2, 0x0109c0,1, 0x010a00,12, 0x010a34,22, 0x010ac0,7, 0x010b00,8, 0x010b24,5, 0x010b80,2, 0x010b8c,2, 0x010ba0,2, 0x010bc0,1, 0x010c00,12, 0x010c40,12, 0x010c80,12, 0x010cc0,12, 0x010d00,12, 0x010d40,12, 0x010d80,12, 0x010dc0,12, 0x010e00,1, 0x010e08,13, 0x010e40,12, 0x010e80,3, 0x010f00,7, 0x010f44,8, 0x010f80,6, 0x010fa0,2, 0x011000,9, 0x011040,9, 0x011080,9, 0x0110c0,9, 0x011104,1, 0x011110,5, 0x011128,2, 0x011134,1, 0x01113c,5, 0x011168,1, 0x011170,2, 0x011200,8, 0x011240,4, 0x011260,8, 0x011300,8, 0x011330,2, 0x011340,7, 0x011380,3, 0x011390,3, 0x0113a0,3, 0x0113b0,3, 0x0113c0,5, 0x011400,69, 0x011600,4, 0x011640,13, 0x011680,7, 0x0116a0,5, 0x0116c0,1, 0x012000,25, 0x012080,1, 0x012088,8, 0x0120c0,6, 0x0120e0,1, 0x0120e8,2, 0x012104,5, 0x012200,11, 0x012240,1, 0x012248,1, 0x012400,4, 0x013000,35, 0x013a00,10, 0x013a80,3, 0x013b00,6, 0x014000,8, 0x014024,2, 0x014040,2, 0x014060,6, 0x014080,1, 0x0140f0,12, 0x014124,2, 0x014140,2, 0x014160,6, 0x014180,1, 0x0141f0,12, 0x014224,2, 0x014240,2, 0x014260,6, 0x014280,1, 0x0142f0,12, 0x014324,2, 0x014340,2, 0x014360,6, 0x014380,1, 0x0143f0,4, 0x014410,4, 0x0145f8,2, 0x015004,1, 0x015040,16, 0x015204,3, 0x015224,1, 0x01522c,1, 0x015400,3, 0x015420,8, 0x015500,40, 0x0155a4,2, 0x0155b0,3, 0x015600,37, 0x015700,17, 0x015748,2, 0x015780,16, 0x015800,25, 0x015880,1, 0x015888,8, 0x0158c0,6, 0x0158e0,1, 0x0158e8,2, 0x015904,14, 0x015a00,4, 0x015b00,60, 0x015c00,4, 0x015c40,12, 0x015c80,5, 0x015ca0,1, 0x015cb0,1, 0x016000,3, 0x016010,3, 0x016020,3, 0x016030,3, 0x016040,3, 0x016050,3, 0x016060,3, 0x016070,3, 0x016080,8, 0x016100,1, 0x016184,12, 0x0162c0,1, 0x0162c8,10, 0x018000,1, 0x018008,3, 0x018018,3, 0x018030,7, 0x018070,2, 0x018200,3, 0x018210,3, 0x018220,3, 0x018230,3, 0x018240,2, 0x018260,2, 0x01826c,1, 0x018280,28, 0x0182f4,8, 0x018320,27, 0x0183dc,43, 0x018490,3, 0x0184a0,2, 0x0184b0,3, 0x0184c0,2, 0x0184d0,3, 0x0184e0,2, 0x0184f0,3, 0x018500,2, 0x018510,3, 0x018520,2, 0x018530,3, 0x018540,2, 0x018550,3, 0x018560,2, 0x018570,3, 0x018580,64, 0x018780,18, 0x0187d0,4, 0x018800,13, 0x018880,1, 0x018888,8, 0x0188c0,6, 0x0188e0,1, 0x0188e8,2, 0x018904,44, 0x018a00,4, 0x018a14,1, 0x018a1c,1, 0x018a24,1, 0x018a2c,1, 0x018a34,1, 0x018a3c,7, 0x018a60,6, 0x018a80,36, 0x018b40,15, 0x018b80,4, 0x018bc0,11, 0x018c00,9, 0x018c40,9, 0x018c80,9, 0x018cc0,9, 0x018d00,16, 0x018d54,1, 0x018d5c,1, 0x018d64,1, 0x018d6c,1, 0x018d80,26, 0x018e00,26, 0x018e80,26, 0x018f00,26, 0x01a000,1, 0x01a00c,4, 0x01a020,4, 0x01a038,3, 0x01a0a8,38, 0x01a180,64, 0x01a2c0,8, 0x01a2f8,317, 0x01a804,1, 0x01a810,6, 0x01a884,1, 0x01a894,5, 0x01a904,1, 0x01a92c,21, 0x01aa04,1, 0x01aa0c,1, 0x01aa14,1, 0x01aa1c,1, 0x01aa24,1, 0x01aa2c,1, 0x01aa34,1, 0x01aa3c,13, 0x01aa78,8, 0x01ab04,5, 0x01ab44,1, 0x01ab4c,1, 0x01ab54,1, 0x01ab60,3, 0x01ab70,5, 0x01ab88,3, 0x01ab98,1, 0x01abc0,4, 0x01b000,34, 0x01b100,13, 0x01b140,15, 0x01b180,40, 0x01b240,11, 0x01b280,11, 0x01b300,10, 0x01b380,4, 0x01b3c0,3, 0x01b3d0,6, 0x01b400,28, 0x01b480,26, 0x01b500,20, 0x01b580,18, 0x01c000,19, 0x01ca00,10, 0x01ca80,3, 0x020000,3, 0x020010,1, 0x020030,13, 0x02006c,4, 0x020100,40, 0x0201fc,4, 0x020210,1, 0x020230,13, 0x02026c,4, 0x020300,40, 0x0203fc,1, 0x020800,2, 0x020810,2, 0x0210e0,1, 0x022000,6, 0x02201c,12, 0x022080,1, 0x022088,1, 0x022090,2, 0x022100,1, 0x02210c,2, 0x02211c,2, 0x02212c,2, 0x02213c,1, 0x022180,2, 0x02218c,1, 0x022200,27, 0x022300,7, 0x022320,2, 0x02232c,1, 0x022380,10, 0x0223c0,1, 0x022800,109, 0x0229c0,5, 0x022a00,109, 0x022bc0,5, 0x022c00,109, 0x022dc0,5, 0x023000,3, 0x023014,16, 0x023074,1, 0x023080,3, 0x023094,16, 0x0230f4,1, 0x023100,3, 0x023114,16, 0x023174,1, 0x023180,3, 0x023194,16, 0x0231f4,1, 0x023400,10, 0x023440,10, 0x023480,10, 0x0234c0,10, 0x023500,1, 0x023600,1, 0x023680,16, 0x023700,6, 0x023720,6, 0x023740,6, 0x023760,6, 0x023780,6, 0x0237a0,6, 0x0237c0,6, 0x0237e0,6, 0x024000,60, 0x024100,60, 0x024200,32, 0x024800,4, 0x024900,53, 0x024a00,4, 0x024a20,2, 0x025000,25, 0x025080,1, 0x025088,8, 0x0250c0,6, 0x0250e0,1, 0x0250e8,2, 0x025104,5, 0x025200,11, 0x025240,1, 0x025248,1, 0x025400,4, 0x028000,19, 0x029000,8, 0x029080,11, 0x029400,96, 0x029584,1, 0x029590,11, 0x0295c8,2, 0x0295e0,9, 0x029608,1, 0x029610,3, 0x029620,2, 0x029634,1, 0x02963c,6, 0x029660,6, 0x029680,5, 0x0296a0,4, 0x0296bc,2, 0x0296e8,5, 0x029700,5, 0x029720,5, 0x029740,5, 0x029760,4, 0x0297a0,2, 0x0297b0,2, 0x0297c0,2, 0x02a000,3, 0x02a010,5, 0x02a200,35, 0x02a300,3, 0x02a310,2, 0x02a328,13, 0x02a360,2, 0x02a800,4, 0x02ab00,4, 0x02ab80,18, 0x02ac80,12, 0x02acc0,4, 0x02ae00,25, 0x02ae80,1, 0x02ae88,8, 0x02aec0,6, 0x02aee0,1, 0x02aee8,2, 0x02af04,17, 0x030000,35, 0x031000,2, 0x03100c,4, 0x031028,3, 0x031038,4, 0x031050,2, 0x031080,4, 0x031098,7, 0x031120,4, 0x031200,4, 0x031214,7, 0x031234,3, 0x031280,8, 0x0312c0,5, 0x031300,2, 0x03130c,3, 0x031400,24, 0x031464,2, 0x031470,3, 0x031500,25, 0x0315c0,8, 0x0315e8,5, 0x031600,5, 0x031618,1, 0x031620,1, 0x031628,1, 0x031630,2, 0x031640,2, 0x031650,2, 0x031690,4, 0x031740,2, 0x031760,6, 0x031780,6, 0x0317a0,6, 0x0317c0,6, 0x0317e0,1, 0x031800,19, 0x031880,2, 0x0318b0,2, 0x0318c0,2, 0x050000,12, 0x050040,524, 0x050880,268, 0x050cc0,2572, 0x053500,524, 0x053d40,524, 0x054580,270, 0x0549c0,12, 0x054a00,270, 0x054e40,12, 0x054e80,3084, 0x057ec0,3340, 0x05b300,302, 0x060000,32, 0x060200,64, 0x060400,96, 0x060600,2, 0x060800,96, 0x060a00,2, 0x060c20,11, 0x060f80,6, 0x060fa0,7, 0x060fd8,2, 0x060fe4,1, 0x060ff0,10, 0x061020,16, 0x061084,1, 0x0610c0,20, 0x061204,1, 0x061220,11, 0x061250,3, 0x061260,5, 0x061280,6, 0x0612a0,6, 0x061300,3, 0x061310,2, 0x061320,2, 0x061330,1, 0x061340,3, 0x061350,18, 0x062000,28, 0x062080,5, 0x0620a0,5, 0x062100,22, 0x062200,3, 0x062210,3, 0x062220,2, 0x06222c,2, 0x062238,1, 0x062260,1, 0x062280,4, 0x0622b8,9, 0x062300,6, 0x062320,7, 0x062340,6, 0x062360,7, 0x062380,2, 0x06238c,3, 0x0623a0,7, 0x0623c0,1, 0x063600,6, 0x063620,15, 0x063660,5, 0x063684,1, 0x063698,15, 0x063700,1, 0x0637c0,3, 0x0637d0,3, 0x0637e0,3, 0x063800,6, 0x063820,12, 0x063860,5, 0x063884,1, 0x063898,15, 0x063904,1, 0x06391c,10, 0x063950,2, 0x0639fc,1, 0x064000,5, 0x064020,1, 0x064030,1, 0x064040,1, 0x064050,1, 0x064060,1, 0x064070,1, 0x064080,1, 0x064090,1, 0x0640a0,1, 0x0640b0,1, 0x0640c0,1, 0x0640d0,1, 0x0640e0,1, 0x0640f0,1, 0x064100,1, 0x064110,1, 0x064120,1, 0x064130,1, 0x064140,1, 0x064150,1, 0x064160,1, 0x064170,1, 0x064180,1, 0x064190,1, 0x0641a0,1, 0x0641b0,1, 0x0641c0,1, 0x0641d0,1, 0x0641e0,1, 0x0641f0,1, 0x064200,1, 0x064210,1, 0x064220,1, 0x064230,1, 0x064240,1, 0x064250,1, 0x064260,1, 0x064270,1, 0x064280,1, 0x064290,1, 0x0642a0,1, 0x0642b0,1, 0x0642c0,1, 0x0642d0,1, 0x0642e0,1, 0x0642f0,1, 0x064300,1, 0x064310,1, 0x064320,1, 0x064330,1, 0x064340,1, 0x064350,1, 0x064360,1, 0x064370,1, 0x064380,1, 0x064390,1, 0x0643a0,1, 0x0643b0,1, 0x0643c0,1, 0x0643d0,1, 0x0643e0,1, 0x0643f0,1, 0x064400,1, 0x064410,1, 0x064420,1, 0x064430,1, 0x064440,1, 0x064450,1, 0x064460,1, 0x064470,1, 0x064480,1, 0x064490,1, 0x0644a0,1, 0x0644b0,1, 0x0644c0,1, 0x0644d0,1, 0x0644e0,1, 0x0644f0,1, 0x064500,1, 0x064510,1, 0x064520,1, 0x064530,1, 0x064540,1, 0x064550,1, 0x064560,1, 0x064570,1, 0x064580,1, 0x064590,1, 0x0645a0,1, 0x0645b0,1, 0x0645c0,1, 0x0645d0,1, 0x0645e0,1, 0x0645f0,1, 0x064600,1, 0x064610,1, 0x064620,1, 0x064630,1, 0x064640,1, 0x064650,1, 0x064660,1, 0x064670,1, 0x064680,1, 0x064690,1, 0x0646a0,1, 0x0646b0,1, 0x0646c0,1, 0x0646d0,1, 0x0646e0,1, 0x0646f0,1, 0x064700,1, 0x064710,1, 0x064720,1, 0x064730,1, 0x064740,1, 0x064750,1, 0x064760,1, 0x064770,1, 0x064780,1, 0x064790,1, 0x0647a0,1, 0x0647b0,1, 0x0647c0,1, 0x0647d0,1, 0x0647e0,1, 0x0647f0,1, 0x064800,1, 0x064810,1, 0x064820,1, 0x064830,1, 0x064840,1, 0x064850,1, 0x064860,1, 0x064870,1, 0x064880,1, 0x064890,1, 0x0648a0,1, 0x0648b0,1, 0x0648c0,1, 0x0648d0,1, 0x0648e0,1, 0x0648f0,1, 0x064900,1, 0x064910,1, 0x064920,1, 0x064930,1, 0x064940,1, 0x064950,1, 0x064960,1, 0x064970,1, 0x064980,1, 0x064990,1, 0x0649a0,1, 0x0649b0,1, 0x0649c0,1, 0x0649d0,1, 0x0649e0,1, 0x0649f0,1, 0x064a00,1, 0x064a10,1, 0x064a20,1, 0x064a30,1, 0x064a40,1, 0x064a50,1, 0x064a60,1, 0x064a70,1, 0x064a80,1, 0x064a90,1, 0x064aa0,1, 0x064ab0,1, 0x064ac0,1, 0x064ad0,1, 0x064ae0,1, 0x064af0,1, 0x064b00,1, 0x064b10,1, 0x064b20,1, 0x064b30,1, 0x064b40,1, 0x064b50,1, 0x064b60,1, 0x064b70,1, 0x064b80,1, 0x064b90,1, 0x064ba0,1, 0x064bb0,1, 0x064bc0,1, 0x064bd0,1, 0x064be0,1, 0x064bf0,1, 0x064c00,1, 0x064c10,1, 0x064c20,1, 0x064c30,1, 0x064c40,1, 0x064c50,1, 0x064c60,1, 0x064c70,1, 0x064c80,1, 0x064c90,1, 0x064ca0,1, 0x064cb0,1, 0x064cc0,1, 0x064cd0,1, 0x064ce0,1, 0x064cf0,1, 0x064d00,1, 0x064d10,1, 0x064d20,1, 0x064d30,1, 0x064d40,1, 0x064d50,1, 0x064d60,1, 0x064d70,1, 0x064d80,1, 0x064d90,1, 0x064da0,1, 0x064db0,1, 0x064dc0,1, 0x064dd0,1, 0x064de0,1, 0x064df0,1, 0x064e00,1, 0x064e10,1, 0x064e20,1, 0x064e30,1, 0x064e40,1, 0x064e50,1, 0x064e60,1, 0x064e70,1, 0x064e80,1, 0x064e90,1, 0x064ea0,1, 0x064eb0,1, 0x064ec0,1, 0x064ed0,1, 0x064ee0,1, 0x064ef0,1, 0x064f00,1, 0x064f10,1, 0x064f20,1, 0x064f30,1, 0x064f40,1, 0x064f50,1, 0x064f60,1, 0x064f70,1, 0x064f80,1, 0x064f90,1, 0x064fa0,1, 0x064fb0,1, 0x064fc0,1, 0x064fd0,1, 0x064fe0,1, 0x064ff0,1, 0x065000,8, 0x066000,5, 0x066020,1, 0x066030,1, 0x066040,1, 0x066050,1, 0x066060,1, 0x066070,1, 0x066080,1, 0x066090,1, 0x0660a0,1, 0x0660b0,1, 0x0660c0,1, 0x0660d0,1, 0x0660e0,1, 0x0660f0,1, 0x066100,1, 0x066110,1, 0x066120,1, 0x066130,1, 0x066140,1, 0x066150,1, 0x066160,1, 0x066170,1, 0x066180,1, 0x066190,1, 0x0661a0,1, 0x0661b0,1, 0x0661c0,1, 0x0661d0,1, 0x0661e0,1, 0x0661f0,1, 0x066200,1, 0x066210,1, 0x066220,1, 0x066230,1, 0x066240,1, 0x066250,1, 0x066260,1, 0x066270,1, 0x066280,1, 0x066290,1, 0x0662a0,1, 0x0662b0,1, 0x0662c0,1, 0x0662d0,1, 0x0662e0,1, 0x0662f0,1, 0x066300,1, 0x066310,1, 0x066320,1, 0x066330,1, 0x066340,1, 0x066350,1, 0x066360,1, 0x066370,1, 0x066380,1, 0x066390,1, 0x0663a0,1, 0x0663b0,1, 0x0663c0,1, 0x0663d0,1, 0x0663e0,1, 0x0663f0,1, 0x066400,1, 0x066410,1, 0x066420,1, 0x066430,1, 0x066440,1, 0x066450,1, 0x066460,1, 0x066470,1, 0x066480,1, 0x066490,1, 0x0664a0,1, 0x0664b0,1, 0x0664c0,1, 0x0664d0,1, 0x0664e0,1, 0x0664f0,1, 0x066500,1, 0x066510,1, 0x066520,1, 0x066530,1, 0x066540,1, 0x066550,1, 0x066560,1, 0x066570,1, 0x066580,1, 0x066590,1, 0x0665a0,1, 0x0665b0,1, 0x0665c0,1, 0x0665d0,1, 0x0665e0,1, 0x0665f0,1, 0x066600,1, 0x066610,1, 0x066620,1, 0x066630,1, 0x066640,1, 0x066650,1, 0x066660,1, 0x066670,1, 0x066680,1, 0x066690,1, 0x0666a0,1, 0x0666b0,1, 0x0666c0,1, 0x0666d0,1, 0x0666e0,1, 0x0666f0,1, 0x066700,1, 0x066710,1, 0x066720,1, 0x066730,1, 0x066740,1, 0x066750,1, 0x066760,1, 0x066770,1, 0x066780,1, 0x066790,1, 0x0667a0,1, 0x0667b0,1, 0x0667c0,1, 0x0667d0,1, 0x0667e0,1, 0x0667f0,1, 0x066800,1, 0x066810,1, 0x066820,1, 0x066830,1, 0x066840,1, 0x066850,1, 0x066860,1, 0x066870,1, 0x066880,1, 0x066890,1, 0x0668a0,1, 0x0668b0,1, 0x0668c0,1, 0x0668d0,1, 0x0668e0,1, 0x0668f0,1, 0x066900,1, 0x066910,1, 0x066920,1, 0x066930,1, 0x066940,1, 0x066950,1, 0x066960,1, 0x066970,1, 0x066980,1, 0x066990,1, 0x0669a0,1, 0x0669b0,1, 0x0669c0,1, 0x0669d0,1, 0x0669e0,1, 0x0669f0,1, 0x066a00,1, 0x066a10,1, 0x066a20,1, 0x066a30,1, 0x066a40,1, 0x066a50,1, 0x066a60,1, 0x066a70,1, 0x066a80,1, 0x066a90,1, 0x066aa0,1, 0x066ab0,1, 0x066ac0,1, 0x066ad0,1, 0x066ae0,1, 0x066af0,1, 0x066b00,1, 0x066b10,1, 0x066b20,1, 0x066b30,1, 0x066b40,1, 0x066b50,1, 0x066b60,1, 0x066b70,1, 0x066b80,1, 0x066b90,1, 0x066ba0,1, 0x066bb0,1, 0x066bc0,1, 0x066bd0,1, 0x066be0,1, 0x066bf0,1, 0x066c00,1, 0x066c10,1, 0x066c20,1, 0x066c30,1, 0x066c40,1, 0x066c50,1, 0x066c60,1, 0x066c70,1, 0x066c80,1, 0x066c90,1, 0x066ca0,1, 0x066cb0,1, 0x066cc0,1, 0x066cd0,1, 0x066ce0,1, 0x066cf0,1, 0x066d00,1, 0x066d10,1, 0x066d20,1, 0x066d30,1, 0x066d40,1, 0x066d50,1, 0x066d60,1, 0x066d70,1, 0x066d80,1, 0x066d90,1, 0x066da0,1, 0x066db0,1, 0x066dc0,1, 0x066dd0,1, 0x066de0,1, 0x066df0,1, 0x066e00,1, 0x066e10,1, 0x066e20,1, 0x066e30,1, 0x066e40,1, 0x066e50,1, 0x066e60,1, 0x066e70,1, 0x066e80,1, 0x066e90,1, 0x066ea0,1, 0x066eb0,1, 0x066ec0,1, 0x066ed0,1, 0x066ee0,1, 0x066ef0,1, 0x066f00,1, 0x066f10,1, 0x066f20,1, 0x066f30,1, 0x066f40,1, 0x066f50,1, 0x066f60,1, 0x066f70,1, 0x066f80,1, 0x066f90,1, 0x066fa0,1, 0x066fb0,1, 0x066fc0,1, 0x066fd0,1, 0x066fe0,1, 0x066ff0,1, 0x067000,16, 0x067100,8, 0x067124,7, 0x067144,7, 0x067200,3, 0x0677f8,2, 0x068000,7, 0x068020,29, 0x068098,13, 0x0680d0,6, 0x0680f0,2, 0x068100,3, 0x068118,1, 0x068120,2, 0x068130,2, 0x068140,2, 0x068150,24, 0x0681c0,7, 0x068200,7, 0x068220,29, 0x068298,13, 0x0682d0,6, 0x0682f0,2, 0x068300,3, 0x068318,1, 0x068320,2, 0x068330,2, 0x068340,2, 0x068350,24, 0x0683c0,7, 0x068400,7, 0x068420,29, 0x068498,13, 0x0684d0,6, 0x0684f0,2, 0x068500,3, 0x068518,1, 0x068520,2, 0x068530,2, 0x068540,2, 0x068550,24, 0x0685c0,7, 0x068900,4, 0x068920,1, 0x068940,4, 0x068960,1, 0x068980,4, 0x0689a0,1, 0x0689c0,4, 0x0689e0,1, 0x068a00,4, 0x068a20,1, 0x068a40,4, 0x068a60,1, 0x068a80,4, 0x068aa0,1, 0x068ac0,4, 0x068ae0,1, 0x068b20,13, 0x068b60,13, 0x068ba0,2, 0x068c40,1, 0x068c64,1, 0x068c6c,3, 0x068c84,1, 0x068c8c,3, 0x068ca4,1, 0x068cac,3, 0x068cc4,1, 0x068ccc,3, 0x068ce0,1, 0x068d00,13, 0x068d40,13, 0x068d80,12, 0x069000,19, 0x069050,7, 0x0690a0,2, 0x0690c0,5, 0x0690d8,13, 0x069140,13, 0x069180,13, 0x0691b8,14, 0x069200,5, 0x069220,5, 0x069240,3, 0x069260,1, 0x069280,22, 0x069300,22, 0x069380,22, 0x069400,22, 0x069480,22, 0x069500,22, 0x069580,22, 0x069600,22, 0x069680,11, 0x069800,130, 0x069b20,2, 0x069c00,16, 0x069d00,27, 0x069d84,1, 0x069d94,10, 0x06a000,12, 0x06a038,14, 0x06a080,6, 0x06a0a0,2, 0x06a100,12, 0x06a138,14, 0x06a180,6, 0x06a1a0,2, 0x06a200,27, 0x06a284,1, 0x06a290,13, 0x06a2d0,4, 0x06a300,7, 0x06a400,10, 0x06a480,10, 0x06a500,15, 0x06a540,12, 0x06a580,4, 0x06a594,2, 0x06a5a0,6, 0x06a600,11, 0x06a630,8, 0x06a800,72, 0x06a924,1, 0x06a930,3, 0x06aa00,56, 0x06aae4,6, 0x06ac00,8, 0x06b000,35, 0x06ba00,10, 0x06ba80,3, 0x06bb00,6, 0x070b00,14, 0x070b40,14, 0x070b84,1, 0x070c00,1, 0x070c40,2, 0x070c50,8, 0x071000,7, 0x072000,7, 0x073000,114, 0x0731d0,3, 0x0731e0,3, 0x0731f0,3, 0x073200,2, 0x073210,1, 0x073218,5, 0x073230,1, 0x073240,7, 0x073260,40, 0x073338,15, 0x073380,2, 0x074000,4, 0x074044,7, 0x074080,9, 0x074100,48, 0x076000,2048, 0x078004,1, 0x078020,17, 0x078070,9, 0x0780a0,7, 0x0780c0,12, 0x078100,12, 0x078140,7, 0x078180,8, 0x07fa00,6, 0x07fa80,3, 0x07fa90,10, 0x07fac0,4, 0x080000,3, 0x080010,1, 0x080020,9, 0x080048,1, 0x080050,1, 0x080058,6, 0x080080,4, 0x080100,6, 0x080140,8, 0x080180,2, 0x0801a0,3, 0x0801c0,4, 0x0801e0,1, 0x080200,2, 0x080240,4, 0x080260,5, 0x080278,1, 0x080280,6, 0x0802a0,3, 0x0802b0,2, 0x080300,2, 0x080400,3, 0x080410,1, 0x080420,9, 0x080448,1, 0x080450,1, 0x080458,6, 0x080480,4, 0x080500,6, 0x080540,8, 0x080580,2, 0x0805a0,3, 0x0805c0,4, 0x0805e0,1, 0x080600,2, 0x080640,4, 0x080660,5, 0x080678,1, 0x080680,6, 0x0806a0,3, 0x0806b0,2, 0x080700,2, 0x080800,5, 0x080900,4, 0x080a00,5, 0x080b00,3, 0x080c00,5, 0x080d00,4, 0x080e00,5, 0x080f00,3, 0x081000,7, 0x081020,4, 0x081204,1, 0x081280,35, 0x081310,4, 0x081404,1, 0x081480,34, 0x081510,10, 0x08153c,3, 0x081800,7, 0x081820,4, 0x081a04,1, 0x081a80,35, 0x081b10,4, 0x081c04,1, 0x081c80,34, 0x081d10,10, 0x081d3c,3, 0x082000,99, 0x082200,10, 0x082280,3, 0x0822e0,1, 0x082300,25, 0x082380,1, 0x0823c0,2, 0x082400,5, 0x08241c,13, 0x082460,3, 0x082480,8, 0x082500,5, 0x08251c,13, 0x082560,3, 0x082580,8, 0x082600,8, 0x084000,3, 0x084010,1, 0x084020,9, 0x084048,1, 0x084050,1, 0x084058,6, 0x084080,4, 0x084100,6, 0x084140,8, 0x084180,2, 0x0841a0,3, 0x0841c0,4, 0x0841e0,1, 0x084200,2, 0x084240,4, 0x084260,5, 0x084278,1, 0x084280,6, 0x0842a0,3, 0x0842b0,2, 0x084300,2, 0x084400,3, 0x084410,1, 0x084420,9, 0x084448,1, 0x084450,1, 0x084458,6, 0x084480,4, 0x084500,6, 0x084540,8, 0x084580,2, 0x0845a0,3, 0x0845c0,4, 0x0845e0,1, 0x084600,2, 0x084640,4, 0x084660,5, 0x084678,1, 0x084680,6, 0x0846a0,3, 0x0846b0,2, 0x084700,2, 0x084800,5, 0x084900,4, 0x084a00,5, 0x084b00,3, 0x084c00,5, 0x084d00,4, 0x084e00,5, 0x084f00,3, 0x085000,7, 0x085020,4, 0x085204,1, 0x085280,35, 0x085310,4, 0x085404,1, 0x085480,34, 0x085510,10, 0x08553c,3, 0x085800,7, 0x085820,4, 0x085a04,1, 0x085a80,35, 0x085b10,4, 0x085c04,1, 0x085c80,34, 0x085d10,10, 0x085d3c,3, 0x086000,99, 0x086200,10, 0x086280,3, 0x0862e0,1, 0x086300,25, 0x086380,1, 0x0863c0,2, 0x086400,5, 0x08641c,13, 0x086460,3, 0x086480,8, 0x086500,5, 0x08651c,13, 0x086560,3, 0x086580,8, 0x086600,8, 0x088000,3, 0x088010,1, 0x088020,9, 0x088048,1, 0x088050,1, 0x088058,6, 0x088080,4, 0x088100,6, 0x088140,8, 0x088180,2, 0x0881a0,3, 0x0881c0,4, 0x0881e0,1, 0x088200,2, 0x088240,4, 0x088260,5, 0x088278,1, 0x088280,6, 0x0882a0,3, 0x0882b0,2, 0x088300,2, 0x088400,3, 0x088410,1, 0x088420,9, 0x088448,1, 0x088450,1, 0x088458,6, 0x088480,4, 0x088500,6, 0x088540,8, 0x088580,2, 0x0885a0,3, 0x0885c0,4, 0x0885e0,1, 0x088600,2, 0x088640,4, 0x088660,5, 0x088678,1, 0x088680,6, 0x0886a0,3, 0x0886b0,2, 0x088700,2, 0x088800,5, 0x088900,4, 0x088a00,5, 0x088b00,3, 0x088c00,5, 0x088d00,4, 0x088e00,5, 0x088f00,3, 0x089000,7, 0x089020,4, 0x089204,1, 0x089280,35, 0x089310,4, 0x089404,1, 0x089480,34, 0x089510,10, 0x08953c,3, 0x089800,7, 0x089820,4, 0x089a04,1, 0x089a80,35, 0x089b10,4, 0x089c04,1, 0x089c80,34, 0x089d10,10, 0x089d3c,3, 0x08a000,99, 0x08a200,10, 0x08a280,3, 0x08a2e0,1, 0x08a300,25, 0x08a380,1, 0x08a3c0,2, 0x08a400,5, 0x08a41c,13, 0x08a460,3, 0x08a480,8, 0x08a500,5, 0x08a51c,13, 0x08a560,3, 0x08a580,8, 0x08a600,8, 0x08c000,3, 0x08c010,1, 0x08c020,9, 0x08c048,1, 0x08c050,1, 0x08c058,6, 0x08c080,4, 0x08c100,6, 0x08c140,8, 0x08c180,2, 0x08c1a0,3, 0x08c1c0,4, 0x08c1e0,1, 0x08c200,2, 0x08c240,4, 0x08c260,5, 0x08c278,1, 0x08c280,6, 0x08c2a0,3, 0x08c2b0,2, 0x08c300,2, 0x08c400,3, 0x08c410,1, 0x08c420,9, 0x08c448,1, 0x08c450,1, 0x08c458,6, 0x08c480,4, 0x08c500,6, 0x08c540,8, 0x08c580,2, 0x08c5a0,3, 0x08c5c0,4, 0x08c5e0,1, 0x08c600,2, 0x08c640,4, 0x08c660,5, 0x08c678,1, 0x08c680,6, 0x08c6a0,3, 0x08c6b0,2, 0x08c700,2, 0x08c800,5, 0x08c900,4, 0x08ca00,5, 0x08cb00,3, 0x08cc00,5, 0x08cd00,4, 0x08ce00,5, 0x08cf00,3, 0x08d000,7, 0x08d020,4, 0x08d204,1, 0x08d280,35, 0x08d310,4, 0x08d404,1, 0x08d480,34, 0x08d510,10, 0x08d53c,3, 0x08d800,7, 0x08d820,4, 0x08da04,1, 0x08da80,35, 0x08db10,4, 0x08dc04,1, 0x08dc80,34, 0x08dd10,10, 0x08dd3c,3, 0x08e000,99, 0x08e200,10, 0x08e280,3, 0x08e2e0,1, 0x08e300,25, 0x08e380,1, 0x08e3c0,2, 0x08e400,5, 0x08e41c,13, 0x08e460,3, 0x08e480,8, 0x08e500,5, 0x08e51c,13, 0x08e560,3, 0x08e580,8, 0x08e600,8, 0x0a0000,3, 0x0a0018,2, 0x0a0024,14, 0x0a0060,27, 0x0a00d0,3, 0x0a00e0,3, 0x0a00f0,3, 0x0a0100,4, 0x0a0120,6, 0x0a0140,3, 0x0a0150,1, 0x0a015c,4, 0x0a0170,1, 0x0a0180,15, 0x0a01c0,1, 0x0a01c8,5, 0x0a01e0,1, 0x0a01f0,3, 0x0a0200,3, 0x0a0218,2, 0x0a0224,14, 0x0a0260,27, 0x0a02d0,3, 0x0a02e0,3, 0x0a02f0,3, 0x0a0300,4, 0x0a0320,6, 0x0a0340,3, 0x0a0350,1, 0x0a035c,4, 0x0a0370,1, 0x0a0380,15, 0x0a03c0,1, 0x0a03c8,5, 0x0a03e0,1, 0x0a03f0,3, 0x0a0400,3, 0x0a0418,2, 0x0a0424,14, 0x0a0460,27, 0x0a04d0,3, 0x0a04e0,3, 0x0a04f0,3, 0x0a0500,4, 0x0a0520,6, 0x0a0540,3, 0x0a0550,1, 0x0a055c,4, 0x0a0570,1, 0x0a0580,15, 0x0a05c0,1, 0x0a05c8,5, 0x0a05e0,1, 0x0a05f0,3, 0x0a0600,3, 0x0a0618,2, 0x0a0624,14, 0x0a0660,27, 0x0a06d0,3, 0x0a06e0,3, 0x0a06f0,3, 0x0a0700,4, 0x0a0720,6, 0x0a0740,3, 0x0a0750,1, 0x0a075c,4, 0x0a0770,1, 0x0a0780,15, 0x0a07c0,1, 0x0a07c8,5, 0x0a07e0,1, 0x0a07f0,3, 0x0a0800,3, 0x0a0818,2, 0x0a0824,14, 0x0a0860,27, 0x0a08d0,3, 0x0a08e0,3, 0x0a08f0,3, 0x0a0900,4, 0x0a0920,6, 0x0a0940,3, 0x0a0950,1, 0x0a095c,4, 0x0a0970,1, 0x0a0980,15, 0x0a09c0,1, 0x0a09c8,5, 0x0a09e0,1, 0x0a09f0,3, 0x0a0a00,3, 0x0a0a18,2, 0x0a0a24,14, 0x0a0a60,27, 0x0a0ad0,3, 0x0a0ae0,3, 0x0a0af0,3, 0x0a0b00,4, 0x0a0b20,6, 0x0a0b40,3, 0x0a0b50,1, 0x0a0b5c,4, 0x0a0b70,1, 0x0a0b80,15, 0x0a0bc0,1, 0x0a0bc8,5, 0x0a0be0,1, 0x0a0bf0,3, 0x0a0c00,3, 0x0a0c18,2, 0x0a0c24,14, 0x0a0c60,27, 0x0a0cd0,3, 0x0a0ce0,3, 0x0a0cf0,3, 0x0a0d00,4, 0x0a0d20,6, 0x0a0d40,3, 0x0a0d50,1, 0x0a0d5c,4, 0x0a0d70,1, 0x0a0d80,15, 0x0a0dc0,1, 0x0a0dc8,5, 0x0a0de0,1, 0x0a0df0,3, 0x0a0e00,3, 0x0a0e18,2, 0x0a0e24,14, 0x0a0e60,27, 0x0a0ed0,3, 0x0a0ee0,3, 0x0a0ef0,3, 0x0a0f00,4, 0x0a0f20,6, 0x0a0f40,3, 0x0a0f50,1, 0x0a0f5c,4, 0x0a0f70,1, 0x0a0f80,15, 0x0a0fc0,1, 0x0a0fc8,5, 0x0a0fe0,1, 0x0a0ff0,3, 0x0a1000,3, 0x0a1018,2, 0x0a1024,14, 0x0a1060,27, 0x0a10d0,3, 0x0a10e0,3, 0x0a10f0,3, 0x0a1100,4, 0x0a1120,6, 0x0a1140,3, 0x0a1150,1, 0x0a115c,4, 0x0a1170,1, 0x0a1180,15, 0x0a11c0,1, 0x0a11c8,5, 0x0a11e0,1, 0x0a11f0,3, 0x0a1200,3, 0x0a1218,2, 0x0a1224,14, 0x0a1260,27, 0x0a12d0,3, 0x0a12e0,3, 0x0a12f0,3, 0x0a1300,4, 0x0a1320,6, 0x0a1340,3, 0x0a1350,1, 0x0a135c,4, 0x0a1370,1, 0x0a1380,15, 0x0a13c0,1, 0x0a13c8,5, 0x0a13e0,1, 0x0a13f0,3, 0x0a1844,1, 0x0a1858,5, 0x0a1904,3, 0x0a1950,3, 0x0a1988,2, 0x0a19a0,7, 0x0a19c0,7, 0x0a19e0,4, 0x0a2000,71, 0x0a2120,7, 0x0a2144,53, 0x0a221c,9, 0x0a2400,4, 0x0a2480,17, 0x0a2600,3, 0x0a2610,3, 0x0a2620,3, 0x0a2680,27, 0x0a2700,35, 0x0a2800,99, 0x0a2a00,49, 0x0a2b00,17, 0x0a2b80,1, 0x0a3010,4, 0x0a3040,1, 0x0a3070,1, 0x0a3080,2, 0x0a308c,1, 0x0a3098,2, 0x0a3404,1, 0x0a3440,20, 0x0a3494,1, 0x0a349c,7, 0x0a34d0,9, 0x0a34fc,8, 0x0a3520,7, 0x0a3540,7, 0x0a3560,7, 0x0a3580,7, 0x0a35a0,7, 0x0a35c0,7, 0x0a35e0,7, 0x0a3600,9, 0x0a363c,2, 0x0a3650,6, 0x0a3684,10, 0x0a3804,1, 0x0a387c,107, 0x0a3a30,1, 0x0a3a40,8, 0x0a3a64,5, 0x0a3b00,32, 0x0a3b84,5, 0x0a3c00,128, 0x0a3e08,2, 0x0a3e18,3, 0x0a4040,16, 0x0a4084,1, 0x0a408c,2, 0x0a4a04,3, 0x0a4b00,33, 0x0a4b90,3, 0x0a5000,8, 0x0a5050,4, 0x0a5070,36, 0x0a5104,1, 0x0a510c,3, 0x0a6000,13, 0x0a6200,17, 0x0a6248,1, 0x0a6258,1, 0x0a6260,8, 0x0a6284,1, 0x0a62a0,32, 0x0a6348,5, 0x0a67f0,3, 0x0a6a10,12, 0x0a7000,35, 0x0a7a00,10, 0x0a7a80,3, 0x0a7b00,6, 0x0a8000,11, 0x0a8030,1, 0x0a8080,2, 0x0a80c4,2, 0x0a80d0,1, 0x0a80d8,1, 0x0a80e0,1, 0x0a80f4,3, 0x0a9000,128, 0x0a9208,256, 0x0a9610,128, 0x0a9818,1, 0x0a9fc0,40, 0x0aa100,2, 0x0b0000,1, 0x0b0008,2, 0x0b0058,3, 0x0b0120,2, 0x0b0130,2, 0x0b0140,1, 0x0b0184,11, 0x0b01c4,3, 0x0b01dc,3, 0x0b0280,13, 0x0b0400,16, 0x0b0444,7, 0x0b0500,4, 0x0b0604,1, 0x0b06f0,68, 0x0b0804,1, 0x0b0824,7, 0x0b0844,1, 0x0b084c,27, 0x0b08d4,2, 0x0b0c00,1, 0x0b0c08,3, 0x0b0c80,20, 0x0b0d00,3, 0x0b0d20,8, 0x0b0d80,4, 0x0b0da0,6, 0x0b0dbc,9, 0x0b0e00,21, 0x0b0e80,19, 0x0b1000,35, 0x0b1090,2, 0x0b10f0,1, 0x0b10f8,1, 0x0b1100,1, 0x0b1108,5, 0x0b1138,2, 0x0b1144,1, 0x0b1160,13, 0x0b11a0,4, 0x0b1200,2, 0x0b1214,11, 0x0b1244,7, 0x0b12b8,2, 0x0b12c4,7, 0x0b1310,1, 0x0b1340,4, 0x0b1380,7, 0x0b1400,14, 0x0b1440,10, 0x0b147c,1, 0x0b1700,2, 0x0b1720,8, 0x0b1800,3, 0x0b1810,3, 0x0b1820,3, 0x0b1830,3, 0x0b1840,3, 0x0b1850,3, 0x0b1860,3, 0x0b1870,3, 0x0b1880,3, 0x0b1890,3, 0x0b18a0,3, 0x0b18b0,3, 0x0b18c0,3, 0x0b18d0,3, 0x0b18e0,3, 0x0b18f0,3, 0x0b1900,68, 0x0b1a20,3, 0x0b1a30,3, 0x0b1a40,3, 0x0b1a50,3, 0x0b1a60,3, 0x0b1c00,36, 0x0b1d00,3, 0x0b1d40,2, 0x0b1d4c,1, 0x0b1d84,1, 0x0b1d90,4, 0x0b1e00,35, 0x0b1f00,11, 0x0b1f60,2, 0x0b1f70,17, 0x0b1fc0,2, 0x0b2000,19, 0x0b3000,7, 0x0b3020,2, 0x0b302c,3, 0x0b3040,6, 0x0b3060,6, 0x0b3080,6, 0x0b30a0,7, 0x0b30c0,7, 0x0b30e0,6, 0x0b3100,6, 0x0b3120,6, 0x0b3140,6, 0x0b3160,6, 0x0b3180,6, 0x0b31a0,6, 0x0b31c0,6, 0x0b31e0,6, 0x0b3200,7, 0x0b3220,7, 0x0b3240,4, 0x0b3260,5, 0x0b3800,4, 0x0c0000,19, 0x0c0a00,10, 0x0c0a80,3, 0x0c0ac0,1, 0x0c1800,19, 0x0c1880,3, 0x0c1900,13, 0x0c1940,3, 0x0c1950,2, 0x0c1960,2, 0x0c2000,6, 0x0c201c,9, 0x0c2080,11, 0x0c2100,11, 0x0c2204,1, 0x0c2224,21, 0x0c2280,16, 0x0c2300,11, 0x0c2800,21, 0x0c2860,5, 0x0c2880,6, 0x0c28a0,5, 0x0c28c0,6, 0x0c2900,21, 0x0c2960,5, 0x0c2980,6, 0x0c29a0,5, 0x0c29c0,6, 0x0c2a00,21, 0x0c2a60,5, 0x0c2a80,6, 0x0c2aa0,5, 0x0c2ac0,6, 0x0c2b00,21, 0x0c2b60,5, 0x0c2b80,6, 0x0c2ba0,5, 0x0c2bc0,6, 0x0c2c00,9, 0x0c2c48,7, 0x0c2c68,2, 0x0c2c74,9, 0x0c2c9c,2, 0x0c2d00,14, 0x0c2d40,14, 0x0c2d80,28, 0x0c2e00,19, 0x0c2e50,3, 0x0c2e60,25, 0x0c2ec8,1, 0x0c2ed0,2, 0x0c2ee0,7, 0x0c2f00,1, 0x0c2f08,2, 0x0c2ffc,20, 0x0c3050,25, 0x0c3100,19, 0x0c3150,25, 0x0c3200,19, 0x0c3250,25, 0x0c3300,19, 0x0c3350,25, 0x0c3400,19, 0x0c3450,25, 0x0c3504,1, 0x0c3514,10, 0x0c3540,1, 0x0c3548,4, 0x0c3560,5, 0x0c3580,1, 0x0c35a0,6, 0x0c35c0,2, 0x0c35cc,2, 0x0c4000,13, 0x0c4040,2, 0x0c4054,4, 0x0c4080,27, 0x0c4100,12, 0x0c4140,14, 0x0c4180,28, 0x0c4200,6, 0x0c4240,6, 0x0c425c,3, 0x0c4280,5, 0x0c42a0,8, 0x0c4400,14, 0x0c4440,14, 0x0c4480,14, 0x0c44c0,14, 0x0c4540,3, 0x0c4600,7, 0x0c4620,14, 0x0c4680,5, 0x0c46a0,7, 0x0c4800,13, 0x0c4840,2, 0x0c4854,4, 0x0c4880,27, 0x0c4900,12, 0x0c4940,14, 0x0c4980,28, 0x0c4a00,6, 0x0c4a40,6, 0x0c4a5c,3, 0x0c4a80,5, 0x0c4aa0,8, 0x0c4c00,14, 0x0c4c40,14, 0x0c4c80,14, 0x0c4cc0,14, 0x0c4d40,3, 0x0c4e00,7, 0x0c4e20,14, 0x0c4e80,5, 0x0c4ea0,7, 0x0c5000,13, 0x0c5040,2, 0x0c5054,4, 0x0c5080,27, 0x0c5100,12, 0x0c5140,14, 0x0c5180,28, 0x0c5200,6, 0x0c5240,6, 0x0c525c,3, 0x0c5280,5, 0x0c52a0,8, 0x0c5400,14, 0x0c5440,14, 0x0c5480,14, 0x0c54c0,14, 0x0c5540,3, 0x0c5600,7, 0x0c5620,14, 0x0c5680,5, 0x0c56a0,7, 0x0c5800,13, 0x0c5840,2, 0x0c5854,4, 0x0c5880,27, 0x0c5900,12, 0x0c5940,14, 0x0c5980,28, 0x0c5a00,6, 0x0c5a40,6, 0x0c5a5c,3, 0x0c5a80,5, 0x0c5aa0,8, 0x0c5c00,14, 0x0c5c40,14, 0x0c5c80,14, 0x0c5cc0,14, 0x0c5d40,3, 0x0c5e00,7, 0x0c5e20,14, 0x0c5e80,5, 0x0c5ea0,7, 0x0c6000,8, 0x0c6040,8, 0x0c6080,1, 0x0c6098,6, 0x0c6100,10, 0x0c6140,3, 0x0c6150,2, 0x0c6180,2, 0x0c6200,6, 0x0c6220,18, 0x0c6280,4, 0x0c6300,8, 0x0c6400,2, 0x0c6480,2, 0x0c6800,72, 0x0c69f0,64, 0x0c6bf0,4, 0x0c7000,40, 0x0c7100,64, 0x0c7800,144, 0x0c7be0,128, 0x0c7fe0,33, 0x0c8068,4, 0x0c807c,4, 0x0c80a0,3, 0x0c80b0,2, 0x0c80c0,6, 0x0c80e0,2, 0x0c80ec,2, 0x0c8100,2, 0x0c810c,2, 0x0c8180,16, 0x0ca000,3, 0x0ca010,21, 0x0ca068,14, 0x0ca0a4,2, 0x0ca0b0,2, 0x0ca0c0,14, 0x0ca160,1, 0x0ca184,1, 0x0ca194,4, 0x0ca1c0,1, 0x0ca1c8,7, 0x0ca1e8,3, 0x0ca1f8,21, 0x0ca280,19, 0x0ca300,80, 0x0ca6fc,1, 0x0ca800,72, 0x0cb000,4, 0x0cb044,1, 0x0cb04c,1, 0x0cb100,11, 0x0cb200,2, 0x0cb210,3, 0x0cb220,2, 0x0cb230,3, 0x0cb240,2, 0x0cb250,3, 0x0cb260,2, 0x0cb270,3, 0x0cb280,5, 0x0cb400,5, 0x0cb59c,1, 0x0cb5ac,9, 0x0cb604,1, 0x0cb610,6, 0x0cb640,13, 0x0e0000,5, 0x0e001c,13, 0x0e0060,3, 0x0e0080,8, 0x0e0100,5, 0x0e011c,13, 0x0e0160,3, 0x0e0180,8, 0x0e0200,5, 0x0e021c,13, 0x0e0260,3, 0x0e0280,8, 0x0e0300,5, 0x0e031c,13, 0x0e0360,3, 0x0e0380,8, 0x0e0400,5, 0x0e041c,13, 0x0e0460,3, 0x0e0480,8, 0x0e0500,5, 0x0e051c,13, 0x0e0560,3, 0x0e0580,8, 0x0e0600,5, 0x0e061c,13, 0x0e0660,3, 0x0e0680,8, 0x0e0700,5, 0x0e071c,13, 0x0e0760,3, 0x0e0780,8, 0x0e0800,5, 0x0e081c,13, 0x0e0860,3, 0x0e0880,8, 0x0e0900,5, 0x0e091c,13, 0x0e0960,3, 0x0e0980,8, 0x0e0a00,5, 0x0e0a1c,13, 0x0e0a60,3, 0x0e0a80,8, 0x0e0b00,5, 0x0e0b1c,13, 0x0e0b60,3, 0x0e0b80,8, 0x0e0c00,5, 0x0e0c1c,13, 0x0e0c60,3, 0x0e0c80,8, 0x0e0d00,5, 0x0e0d1c,13, 0x0e0d60,3, 0x0e0d80,8, 0x0e0e00,5, 0x0e0e1c,13, 0x0e0e60,3, 0x0e0e80,8, 0x0e0f00,5, 0x0e0f1c,13, 0x0e0f60,3, 0x0e0f80,8, 0x0e1000,5, 0x0e101c,13, 0x0e1060,3, 0x0e1080,8, 0x0e1100,5, 0x0e111c,13, 0x0e1160,3, 0x0e1180,8, 0x0e1200,5, 0x0e121c,13, 0x0e1260,3, 0x0e1280,8, 0x0e1300,5, 0x0e131c,13, 0x0e1360,3, 0x0e1380,8, 0x0e1400,5, 0x0e141c,13, 0x0e1460,3, 0x0e1480,8, 0x0e1500,5, 0x0e151c,13, 0x0e1560,3, 0x0e1580,8, 0x0e1600,5, 0x0e161c,13, 0x0e1660,3, 0x0e1680,8, 0x0e1700,5, 0x0e171c,13, 0x0e1760,3, 0x0e1780,8, 0x0e1800,5, 0x0e181c,13, 0x0e1860,3, 0x0e1880,8, 0x0e1900,5, 0x0e191c,13, 0x0e1960,3, 0x0e1980,8, 0x0e1a00,5, 0x0e1a1c,13, 0x0e1a60,3, 0x0e1a80,8, 0x0e1b00,5, 0x0e1b1c,13, 0x0e1b60,3, 0x0e1b80,8, 0x0e1c00,5, 0x0e1c1c,13, 0x0e1c60,3, 0x0e1c80,8, 0x0e1d00,5, 0x0e1d1c,13, 0x0e1d60,3, 0x0e1d80,8, 0x0e1e00,5, 0x0e1e1c,13, 0x0e1e60,3, 0x0e1e80,8, 0x0e1f00,5, 0x0e1f1c,13, 0x0e1f60,3, 0x0e1f80,8, 0x0e2000,5, 0x0e201c,13, 0x0e2060,3, 0x0e2080,8, 0x0e2100,5, 0x0e211c,13, 0x0e2160,3, 0x0e2180,8, 0x0e2200,5, 0x0e221c,13, 0x0e2260,3, 0x0e2280,8, 0x0e2300,5, 0x0e231c,13, 0x0e2360,3, 0x0e2380,8, 0x0e2400,5, 0x0e241c,13, 0x0e2460,3, 0x0e2480,8, 0x0e2500,5, 0x0e251c,13, 0x0e2560,3, 0x0e2580,8, 0x0e2600,5, 0x0e261c,13, 0x0e2660,3, 0x0e2680,8, 0x0e2700,5, 0x0e271c,13, 0x0e2760,3, 0x0e2780,8, 0x0e2800,5, 0x0e281c,13, 0x0e2860,3, 0x0e2880,8, 0x0e2900,5, 0x0e291c,13, 0x0e2960,3, 0x0e2980,8, 0x0e2a00,5, 0x0e2a1c,13, 0x0e2a60,3, 0x0e2a80,8, 0x0e2b00,5, 0x0e2b1c,13, 0x0e2b60,3, 0x0e2b80,8, 0x0e2c00,5, 0x0e2c1c,13, 0x0e2c60,3, 0x0e2c80,8, 0x0e2d00,5, 0x0e2d1c,13, 0x0e2d60,3, 0x0e2d80,8, 0x0e2e00,5, 0x0e2e1c,13, 0x0e2e60,3, 0x0e2e80,8, 0x0e2f00,5, 0x0e2f1c,13, 0x0e2f60,3, 0x0e2f80,8, 0x0e3000,5, 0x0e301c,13, 0x0e3060,3, 0x0e3080,8, 0x0e3100,5, 0x0e311c,13, 0x0e3160,3, 0x0e3180,8, 0x0e3200,5, 0x0e321c,13, 0x0e3260,3, 0x0e3280,8, 0x0e3300,5, 0x0e331c,13, 0x0e3360,3, 0x0e3380,8, 0x0e3400,5, 0x0e341c,13, 0x0e3460,3, 0x0e3480,8, 0x0e3500,5, 0x0e351c,13, 0x0e3560,3, 0x0e3580,8, 0x0e3600,5, 0x0e361c,13, 0x0e3660,3, 0x0e3680,8, 0x0e3700,5, 0x0e371c,13, 0x0e3760,3, 0x0e3780,8, 0x0e3800,5, 0x0e381c,13, 0x0e3860,3, 0x0e3880,8, 0x0e3900,5, 0x0e391c,13, 0x0e3960,3, 0x0e3980,8, 0x0e3a00,5, 0x0e3a1c,13, 0x0e3a60,3, 0x0e3a80,8, 0x0e3b00,5, 0x0e3b1c,13, 0x0e3b60,3, 0x0e3b80,8, 0x0e3c00,5, 0x0e3c1c,13, 0x0e3c60,3, 0x0e3c80,8, 0x0e3d00,5, 0x0e3d1c,13, 0x0e3d60,3, 0x0e3d80,8, 0x0e3e00,5, 0x0e3e1c,13, 0x0e3e60,3, 0x0e3e80,8, 0x0e3f00,5, 0x0e3f1c,13, 0x0e3f60,3, 0x0e3f80,8, 0x0e4000,5, 0x0e401c,13, 0x0e4060,3, 0x0e4080,8, 0x0e4100,5, 0x0e411c,13, 0x0e4160,3, 0x0e4180,8, 0x0e4200,5, 0x0e421c,13, 0x0e4260,3, 0x0e4280,8, 0x0e4300,5, 0x0e431c,13, 0x0e4360,3, 0x0e4380,8, 0x0e4400,5, 0x0e441c,13, 0x0e4460,3, 0x0e4480,8, 0x0e4500,5, 0x0e451c,13, 0x0e4560,3, 0x0e4580,8, 0x0e4600,5, 0x0e461c,13, 0x0e4660,3, 0x0e4680,8, 0x0e4700,5, 0x0e471c,13, 0x0e4760,3, 0x0e4780,8, 0x0e4800,5, 0x0e481c,13, 0x0e4860,3, 0x0e4880,8, 0x0e4900,5, 0x0e491c,13, 0x0e4960,3, 0x0e4980,8, 0x0e4a00,5, 0x0e4a1c,13, 0x0e4a60,3, 0x0e4a80,8, 0x0e4b00,5, 0x0e4b1c,13, 0x0e4b60,3, 0x0e4b80,8, 0x0e4c00,5, 0x0e4c1c,13, 0x0e4c60,3, 0x0e4c80,8, 0x0e4d00,5, 0x0e4d1c,13, 0x0e4d60,3, 0x0e4d80,8, 0x0e4e00,5, 0x0e4e1c,13, 0x0e4e60,3, 0x0e4e80,8, 0x0e4f00,5, 0x0e4f1c,13, 0x0e4f60,3, 0x0e4f80,8, 0x0e5000,5, 0x0e501c,13, 0x0e5060,3, 0x0e5080,8, 0x0e5100,5, 0x0e511c,13, 0x0e5160,3, 0x0e5180,8, 0x0e5200,5, 0x0e521c,13, 0x0e5260,3, 0x0e5280,8, 0x0e5300,5, 0x0e531c,13, 0x0e5360,3, 0x0e5380,8, 0x0e5400,5, 0x0e541c,13, 0x0e5460,3, 0x0e5480,8, 0x0e5500,5, 0x0e551c,13, 0x0e5560,3, 0x0e5580,8, 0x0e5600,5, 0x0e561c,13, 0x0e5660,3, 0x0e5680,8, 0x0e5700,5, 0x0e571c,13, 0x0e5760,3, 0x0e5780,8, 0x0e5800,5, 0x0e581c,13, 0x0e5860,3, 0x0e5880,8, 0x0e5900,5, 0x0e591c,13, 0x0e5960,3, 0x0e5980,8, 0x0e5a00,5, 0x0e5a1c,13, 0x0e5a60,3, 0x0e5a80,8, 0x0e5b00,5, 0x0e5b1c,13, 0x0e5b60,3, 0x0e5b80,8, 0x0e5c00,5, 0x0e5c1c,13, 0x0e5c60,3, 0x0e5c80,8, 0x0e5d00,5, 0x0e5d1c,13, 0x0e5d60,3, 0x0e5d80,8, 0x0e5e00,5, 0x0e5e1c,13, 0x0e5e60,3, 0x0e5e80,8, 0x0e5f00,5, 0x0e5f1c,13, 0x0e5f60,3, 0x0e5f80,8, 0x0e6000,5, 0x0e601c,13, 0x0e6060,3, 0x0e6080,8, 0x0e6100,5, 0x0e611c,13, 0x0e6160,3, 0x0e6180,8, 0x0e6200,5, 0x0e621c,13, 0x0e6260,3, 0x0e6280,8, 0x0e6300,5, 0x0e631c,13, 0x0e6360,3, 0x0e6380,8, 0x0e6400,5, 0x0e641c,13, 0x0e6460,3, 0x0e6480,8, 0x0e6500,5, 0x0e651c,13, 0x0e6560,3, 0x0e6580,8, 0x0e6600,5, 0x0e661c,13, 0x0e6660,3, 0x0e6680,8, 0x0e6700,5, 0x0e671c,13, 0x0e6760,3, 0x0e6780,8, 0x0e6800,5, 0x0e681c,13, 0x0e6860,3, 0x0e6880,8, 0x0e6900,5, 0x0e691c,13, 0x0e6960,3, 0x0e6980,8, 0x0e6a00,5, 0x0e6a1c,13, 0x0e6a60,3, 0x0e6a80,8, 0x0e6b00,5, 0x0e6b1c,13, 0x0e6b60,3, 0x0e6b80,8, 0x0e6c00,5, 0x0e6c1c,13, 0x0e6c60,3, 0x0e6c80,8, 0x0e6d00,5, 0x0e6d1c,13, 0x0e6d60,3, 0x0e6d80,8, 0x0e6e00,5, 0x0e6e1c,13, 0x0e6e60,3, 0x0e6e80,8, 0x0e6f00,5, 0x0e6f1c,13, 0x0e6f60,3, 0x0e6f80,8, 0x0e7000,5, 0x0e701c,13, 0x0e7060,3, 0x0e7080,8, 0x0e7100,5, 0x0e711c,13, 0x0e7160,3, 0x0e7180,8, 0x0e7200,5, 0x0e721c,13, 0x0e7260,3, 0x0e7280,8, 0x0e7300,5, 0x0e731c,13, 0x0e7360,3, 0x0e7380,8, 0x0e7400,5, 0x0e741c,13, 0x0e7460,3, 0x0e7480,8, 0x0e7500,5, 0x0e751c,13, 0x0e7560,3, 0x0e7580,8, 0x0e7600,5, 0x0e761c,13, 0x0e7660,3, 0x0e7680,8, 0x0e7700,5, 0x0e771c,13, 0x0e7760,3, 0x0e7780,8, 0x0e7800,5, 0x0e781c,13, 0x0e7860,3, 0x0e7880,8, 0x0e7900,5, 0x0e791c,13, 0x0e7960,3, 0x0e7980,8, 0x0e7a00,5, 0x0e7a1c,13, 0x0e7a60,3, 0x0e7a80,8, 0x0e7b00,5, 0x0e7b1c,13, 0x0e7b60,3, 0x0e7b80,8, 0x0e7c00,5, 0x0e7c1c,13, 0x0e7c60,3, 0x0e7c80,8, 0x0e7d00,5, 0x0e7d1c,13, 0x0e7d60,3, 0x0e7d80,8, 0x0e7e00,5, 0x0e7e1c,13, 0x0e7e60,3, 0x0e7e80,8, 0x0e7f00,5, 0x0e7f1c,13, 0x0e7f60,3, 0x0e7f80,8, 0x0e8000,5, 0x0e801c,13, 0x0e8060,3, 0x0e8080,8, 0x0e8100,5, 0x0e811c,13, 0x0e8160,3, 0x0e8180,8, 0x0f0000,4, 0x0f0014,2, 0x0f0020,8, 0x0f0044,16, 0x0f0088,20, 0x0f00dc,1, 0x0f0180,6, 0x0f0404,1, 0x0f0410,6, 0x0f0430,2, 0x0f0440,3, 0x0f0450,5, 0x0f0590,4, 0x0f05c0,10, 0x0f0a04,1, 0x0f0a0c,3, 0x0f0a20,1, 0x0f0b80,3, 0x0f0b90,2, 0x0f0ba0,5, 0x0f0bc0,9, 0x0f0c00,5, 0x0f0c20,3, 0x0f0c30,5, 0x0f0c50,62, 0x0f0d50,109, 0x0f0f40,3, 0x0f0f50,4, 0x0f0f70,3, 0x0f0f80,5, 0x0f0fa0,16, 0x0f0ffc,4, 0x0f1010,2, 0x0f1020,2, 0x0f1030,3, 0x0f1040,10, 0x0f1070,3, 0x0f1100,2, 0x0f1140,18, 0x0f11c0,30, 0x0f1240,14, 0x0f1280,28, 0x0f1300,36, 0x0f13a0,6, 0x0f1400,83, 0x0f1800,83, 0x0f1c00,19, 0x0f1c80,27, 0x0f1d00,3, 0x0f1d10,3, 0x0f1d20,3, 0x0f1d30,3, 0x0f1d40,3, 0x0f1d50,3, 0x0f1e00,3, 0x0f1e10,2, 0x0f1e20,6, 0x0f1e40,6, 0x0f1e60,6, 0x0f1e80,6, 0x0f1ea0,6, 0x0f1ec0,2, 0x0f1ecc,2, 0x0f1ee0,2, 0x0f1eec,2, 0x0f1f80,3, 0x0f1f90,60, 0x0f2100,32, 0x0f2200,32, 0x0f2300,32, 0x0f2400,32, 0x0f2500,32, 0x0f2600,32, 0x0f2700,32, 0x0f2800,32, 0x0f2900,32, 0x0f2a00,32, 0x0f2b00,32, 0x0f2c00,32, 0x0f2d00,32, 0x0f2e00,32, 0x0f2f00,32, 0x0f3000,32, 0x0f30c0,3, 0x0f4000,2, 0x0f4040,16, 0x0f4100,36, 0x0f4400,13, 0x0f4500,128, 0x0f4800,5, 0x0f4824,1, 0x0f4834,3, 0x0f4c04,1, 0x0f4c64,238, 0x0f5020,4, 0x0f5204,1, 0x0f5280,35, 0x0f5310,4, 0x0f5404,1, 0x0f5480,34, 0x0f5510,10, 0x0f553c,3, 0x0f5800,7, 0x0f5820,4, 0x0f5a04,1, 0x0f5a80,35, 0x0f5b10,4, 0x0f5c04,1, 0x0f5c80,34, 0x0f5d10,10, 0x0f5d3c,3, 0x0f6000,7, 0x0f6020,4, 0x0f6204,1, 0x0f6280,35, 0x0f6310,4, 0x0f6404,1, 0x0f6480,34, 0x0f6510,10, 0x0f653c,3, 0x0f6800,7, 0x0f6820,4, 0x0f6a04,1, 0x0f6a80,35, 0x0f6b10,4, 0x0f6c04,1, 0x0f6c80,34, 0x0f6d10,10, 0x0f6d3c,3, 0x0f7000,7, 0x0f7020,4, 0x0f7204,1, 0x0f7280,35, 0x0f7310,4, 0x0f7404,1, 0x0f7480,34, 0x0f7510,10, 0x0f753c,3, 0x0f7800,7, 0x0f7820,4, 0x0f7a04,1, 0x0f7a80,35, 0x0f7b10,4, 0x0f7c04,1, 0x0f7c80,34, 0x0f7d10,10, 0x0f7d3c,3, 0x0f8000,7, 0x0f8020,4, 0x0f8204,1, 0x0f8280,35, 0x0f8310,4, 0x0f8404,1, 0x0f8480,34, 0x0f8510,10, 0x0f853c,3, 0x0f8800,7, 0x0f8820,4, 0x0f8a04,1, 0x0f8a80,35, 0x0f8b10,4, 0x0f8c04,1, 0x0f8c80,34, 0x0f8d10,10, 0x0f8d3c,3, 0x0f9000,7, 0x0f9020,4, 0x0f9204,1, 0x0f9280,35, 0x0f9310,4, 0x0f9404,1, 0x0f9480,34, 0x0f9510,10, 0x0f953c,3, 0x0f9800,7, 0x0f9820,4, 0x0f9a04,1, 0x0f9a80,35, 0x0f9b10,4, 0x0f9c04,1, 0x0f9c80,34, 0x0f9d10,10, 0x0f9d3c,3, 0x100000,127040, 0x18000c,4, 0x180024,2, 0x180030,2, 0x180084,1, 0x180090,4, 0x180100,3, 0x180200,16, 0x180244,16, 0x180288,16, 0x1802d0,1, 0x180304,1, 0x180320,24, 0x180400,620, 0x181000,43, 0x181100,4, 0x181120,7, 0x181140,19, 0x18119c,5, 0x1811c0,7, 0x181c00,2, 0x182004,1, 0x1820b0,84, 0x182204,1, 0x182240,48, 0x182304,1, 0x182320,56, 0x182404,1, 0x182440,48, 0x182504,1, 0x182538,50, 0x182604,1, 0x182618,26, 0x182684,1, 0x1826c0,16, 0x182704,1, 0x182730,20, 0x182804,1, 0x182830,20, 0x182884,1, 0x182890,12, 0x1828c4,15, 0x182904,1, 0x182910,12, 0x182944,1, 0x182958,10, 0x182984,1, 0x182998,10, 0x1829c4,1, 0x1829e0,8, 0x182a04,1, 0x182a10,12, 0x182a44,1, 0x182a50,12, 0x182a84,1, 0x182a90,12, 0x182ac4,1, 0x182ae0,8, 0x182b04,1, 0x182b10,12, 0x182b44,1, 0x182b58,10, 0x182b84,1, 0x182b98,10, 0x182bc4,1, 0x182be0,8, 0x182c04,1, 0x182c10,12, 0x182c84,1, 0x182cc0,16, 0x182d04,1, 0x182d20,24, 0x182d84,1, 0x182d90,12, 0x182dc4,1, 0x182de0,8, 0x183004,1, 0x183020,47, 0x183104,1, 0x183110,4, 0x183124,1, 0x183130,8, 0x183154,1, 0x18315c,4, 0x183170,6, 0x183204,1, 0x183210,4, 0x183224,1, 0x18322c,1, 0x183234,5, 0x183250,3, 0x183284,1, 0x18328c,1, 0x183294,7, 0x1832b4,3, 0x183400,3, 0x183418,3, 0x183430,1, 0x183440,3, 0x183458,3, 0x183470,1, 0x183480,1, 0x183504,1, 0x18351c,48, 0x183604,1, 0x183640,16, 0x183684,1, 0x18368c,5, 0x183700,1, 0x183710,5, 0x183804,1, 0x183840,16, 0x183884,1, 0x18388c,3, 0x183900,6, 0x183920,19, 0x183a04,1, 0x183a0c,8, 0x183a44,1, 0x183a4c,8, 0x183a80,2, 0x183a8c,8, 0x184000,42, 0x184100,28, 0x184180,25, 0x184200,18, 0x184280,17, 0x184300,13, 0x184400,29, 0x184480,29, 0x184500,17, 0x184580,17, 0x184600,25, 0x184680,25, 0x184700,18, 0x184780,18, 0x184800,22, 0x184880,22, 0x184900,13, 0x184940,13, 0x184980,15, 0x184a04,1, 0x184a34,19, 0x184b00,4, 0x184b80,19, 0x185000,195, 0x185400,3, 0x185414,1, 0x18541c,2, 0x185428,3, 0x185440,5, 0x185460,4, 0x185504,1, 0x185510,7, 0x185544,6, 0x185564,6, 0x185584,6, 0x1855a4,6, 0x1855c4,6, 0x185604,1, 0x185614,6, 0x185644,6, 0x185664,6, 0x185684,6, 0x1856a4,6, 0x1856c4,6, 0x1856e4,6, 0x185840,13, 0x185940,3, 0x187000,5, 0x187020,5, 0x187040,5, 0x187060,5, 0x187080,5, 0x1870a0,5, 0x1870c0,5, 0x1870e0,5, 0x187104,1, 0x187120,11, 0x187150,11, 0x187180,27, 0x187200,13, 0x187240,6, 0x188000,33, 0x188100,15, 0x188140,15, 0x188184,1, 0x188194,6, 0x1881b0,9, 0x1881e0,1, 0x188200,33, 0x188300,15, 0x188340,15, 0x188384,1, 0x188394,6, 0x1883b0,9, 0x1883e0,1, 0x188400,33, 0x188500,15, 0x188540,15, 0x188584,1, 0x188594,6, 0x1885b0,9, 0x1885e0,1, 0x188600,33, 0x188700,15, 0x188740,15, 0x188784,1, 0x188794,6, 0x1887b0,9, 0x1887e0,1, 0x188800,33, 0x188900,15, 0x188940,15, 0x188984,1, 0x188994,6, 0x1889b0,9, 0x1889e0,1, 0x188a00,33, 0x188b00,15, 0x188b40,15, 0x188b84,1, 0x188b94,6, 0x188bb0,9, 0x188be0,1, 0x188c00,33, 0x188d00,15, 0x188d40,15, 0x188d84,1, 0x188d94,6, 0x188db0,9, 0x188de0,1, 0x188e00,33, 0x188f00,15, 0x188f40,15, 0x188f84,1, 0x188f94,6, 0x188fb0,9, 0x188fe0,1, 0x189008,5, 0x189020,4, 0x189100,7, 0x189120,7, 0x189200,43, 0x189300,13, 0x189404,1, 0x189500,64, 0x18a000,8, 0x18a080,11, 0x18a0c0,2, 0x18a0d0,2, 0x18f000,51, 0x18fa00,10, 0x18fa80,3, 0x190000,19, 0x191000,8, 0x191080,11, 0x191400,96, 0x191584,1, 0x191590,11, 0x1915c8,2, 0x1915e0,9, 0x191608,1, 0x191610,3, 0x191620,2, 0x191634,1, 0x19163c,6, 0x191660,6, 0x191680,5, 0x1916a0,4, 0x1916bc,2, 0x1916e8,5, 0x191700,5, 0x191720,5, 0x191740,5, 0x191760,4, 0x1917a0,2, 0x1917b0,2, 0x1917c0,2, 0x192000,2, 0x192010,12, 0x192044,1, 0x192080,5, 0x1920a0,1, 0x1920a8,1, 0x1920b0,2, 0x1920c0,4, 0x192100,6, 0x192120,1, 0x192128,1, 0x192130,2, 0x192140,4, 0x192180,3, 0x192190,3, 0x1921a0,5, 0x1921c0,2, 0x192400,35, 0x192500,3, 0x192510,2, 0x192528,13, 0x192560,2, 0x192800,4, 0x192820,2, 0x192900,4, 0x192980,31, 0x192a00,4, 0x192a80,31, 0x192b00,4, 0x192b80,18, 0x192c00,44, 0x192cc0,4, 0x192e00,25, 0x192e80,1, 0x192e88,8, 0x192ec0,6, 0x192ee0,1, 0x192ee8,2, 0x192f04,17, 0x194000,19, 0x195000,8, 0x195080,11, 0x195400,96, 0x195584,1, 0x195590,11, 0x1955c8,2, 0x1955e0,9, 0x195608,1, 0x195610,3, 0x195620,2, 0x195634,1, 0x19563c,6, 0x195660,6, 0x195680,5, 0x1956a0,4, 0x1956bc,2, 0x1956e8,5, 0x195700,5, 0x195720,5, 0x195740,5, 0x195760,4, 0x1957a0,2, 0x1957b0,2, 0x1957c0,2, 0x196000,2, 0x196010,12, 0x196044,1, 0x196080,5, 0x1960a0,1, 0x1960a8,1, 0x1960b0,2, 0x1960c0,4, 0x196100,6, 0x196120,1, 0x196128,1, 0x196130,2, 0x196140,4, 0x196180,3, 0x196190,3, 0x1961a0,5, 0x1961c0,2, 0x196400,35, 0x196500,3, 0x196510,2, 0x196528,13, 0x196560,2, 0x196800,4, 0x196820,2, 0x196900,4, 0x196980,31, 0x196a00,4, 0x196a80,31, 0x196b00,4, 0x196b80,18, 0x196c00,44, 0x196cc0,4, 0x196e00,25, 0x196e80,1, 0x196e88,8, 0x196ec0,6, 0x196ee0,1, 0x196ee8,2, 0x196f04,17, 0x198000,19, 0x199000,8, 0x199080,11, 0x199400,96, 0x199584,1, 0x199590,11, 0x1995c8,2, 0x1995e0,9, 0x199608,1, 0x199610,3, 0x199620,2, 0x199634,1, 0x19963c,6, 0x199660,6, 0x199680,5, 0x1996a0,4, 0x1996bc,2, 0x1996e8,5, 0x199700,5, 0x199720,5, 0x199740,5, 0x199760,4, 0x1997a0,2, 0x1997b0,2, 0x1997c0,2, 0x19a000,2, 0x19a010,12, 0x19a044,1, 0x19a080,5, 0x19a0a0,1, 0x19a0a8,1, 0x19a0b0,2, 0x19a0c0,4, 0x19a100,6, 0x19a120,1, 0x19a128,1, 0x19a130,2, 0x19a140,4, 0x19a180,3, 0x19a190,3, 0x19a1a0,5, 0x19a1c0,2, 0x19a400,35, 0x19a500,3, 0x19a510,2, 0x19a528,13, 0x19a560,2, 0x19a800,4, 0x19a820,2, 0x19a900,4, 0x19a980,31, 0x19aa00,4, 0x19aa80,31, 0x19ab00,4, 0x19ab80,18, 0x19ac00,44, 0x19acc0,4, 0x19ae00,25, 0x19ae80,1, 0x19ae88,8, 0x19aec0,6, 0x19aee0,1, 0x19aee8,2, 0x19af04,17, 0x19c000,19, 0x19d000,8, 0x19d080,11, 0x19d400,96, 0x19d584,1, 0x19d590,11, 0x19d5c8,2, 0x19d5e0,9, 0x19d608,1, 0x19d610,3, 0x19d620,2, 0x19d634,1, 0x19d63c,6, 0x19d660,6, 0x19d680,5, 0x19d6a0,4, 0x19d6bc,2, 0x19d6e8,5, 0x19d700,5, 0x19d720,5, 0x19d740,5, 0x19d760,4, 0x19d7a0,2, 0x19d7b0,2, 0x19d7c0,2, 0x19e000,2, 0x19e010,12, 0x19e044,1, 0x19e080,5, 0x19e0a0,1, 0x19e0a8,1, 0x19e0b0,2, 0x19e0c0,4, 0x19e100,6, 0x19e120,1, 0x19e128,1, 0x19e130,2, 0x19e140,4, 0x19e180,3, 0x19e190,3, 0x19e1a0,5, 0x19e1c0,2, 0x19e400,35, 0x19e500,3, 0x19e510,2, 0x19e528,13, 0x19e560,2, 0x19e800,4, 0x19e820,2, 0x19e900,4, 0x19e980,31, 0x19ea00,4, 0x19ea80,31, 0x19eb00,4, 0x19eb80,18, 0x19ec00,44, 0x19ecc0,4, 0x19ee00,25, 0x19ee80,1, 0x19ee88,8, 0x19eec0,6, 0x19eee0,1, 0x19eee8,2, 0x19ef04,17, 0x1a0000,19, 0x1a1000,8, 0x1a1080,11, 0x1a1400,96, 0x1a1584,1, 0x1a1590,11, 0x1a15c8,2, 0x1a15e0,9, 0x1a1608,1, 0x1a1610,3, 0x1a1620,2, 0x1a1634,1, 0x1a163c,6, 0x1a1660,6, 0x1a1680,5, 0x1a16a0,4, 0x1a16bc,2, 0x1a16e8,5, 0x1a1700,5, 0x1a1720,5, 0x1a1740,5, 0x1a1760,4, 0x1a17a0,2, 0x1a17b0,2, 0x1a17c0,2, 0x1a2000,2, 0x1a2010,12, 0x1a2044,1, 0x1a2080,5, 0x1a20a0,1, 0x1a20a8,1, 0x1a20b0,2, 0x1a20c0,4, 0x1a2100,6, 0x1a2120,1, 0x1a2128,1, 0x1a2130,2, 0x1a2140,4, 0x1a2180,3, 0x1a2190,3, 0x1a21a0,5, 0x1a21c0,2, 0x1a2400,35, 0x1a2500,3, 0x1a2510,2, 0x1a2528,13, 0x1a2560,2, 0x1a2800,4, 0x1a2820,2, 0x1a2900,4, 0x1a2980,31, 0x1a2a00,4, 0x1a2a80,31, 0x1a2b00,4, 0x1a2b80,18, 0x1a2c00,44, 0x1a2cc0,4, 0x1a2e00,25, 0x1a2e80,1, 0x1a2e88,8, 0x1a2ec0,6, 0x1a2ee0,1, 0x1a2ee8,2, 0x1a2f04,17, 0x1a4000,19, 0x1a5000,8, 0x1a5080,11, 0x1a5400,96, 0x1a5584,1, 0x1a5590,11, 0x1a55c8,2, 0x1a55e0,9, 0x1a5608,1, 0x1a5610,3, 0x1a5620,2, 0x1a5634,1, 0x1a563c,6, 0x1a5660,6, 0x1a5680,5, 0x1a56a0,4, 0x1a56bc,2, 0x1a56e8,5, 0x1a5700,5, 0x1a5720,5, 0x1a5740,5, 0x1a5760,4, 0x1a57a0,2, 0x1a57b0,2, 0x1a57c0,2, 0x1a6000,2, 0x1a6010,12, 0x1a6044,1, 0x1a6080,5, 0x1a60a0,1, 0x1a60a8,1, 0x1a60b0,2, 0x1a60c0,4, 0x1a6100,6, 0x1a6120,1, 0x1a6128,1, 0x1a6130,2, 0x1a6140,4, 0x1a6180,3, 0x1a6190,3, 0x1a61a0,5, 0x1a61c0,2, 0x1a6400,35, 0x1a6500,3, 0x1a6510,2, 0x1a6528,13, 0x1a6560,2, 0x1a6800,4, 0x1a6820,2, 0x1a6900,4, 0x1a6980,31, 0x1a6a00,4, 0x1a6a80,31, 0x1a6b00,4, 0x1a6b80,18, 0x1a6c00,44, 0x1a6cc0,4, 0x1a6e00,25, 0x1a6e80,1, 0x1a6e88,8, 0x1a6ec0,6, 0x1a6ee0,1, 0x1a6ee8,2, 0x1a6f04,17, 0x1a8000,19, 0x1a9000,8, 0x1a9080,11, 0x1a9400,96, 0x1a9584,1, 0x1a9590,11, 0x1a95c8,2, 0x1a95e0,9, 0x1a9608,1, 0x1a9610,3, 0x1a9620,2, 0x1a9634,1, 0x1a963c,6, 0x1a9660,6, 0x1a9680,5, 0x1a96a0,4, 0x1a96bc,2, 0x1a96e8,5, 0x1a9700,5, 0x1a9720,5, 0x1a9740,5, 0x1a9760,4, 0x1a97a0,2, 0x1a97b0,2, 0x1a97c0,2, 0x1aa000,2, 0x1aa010,12, 0x1aa044,1, 0x1aa080,5, 0x1aa0a0,1, 0x1aa0a8,1, 0x1aa0b0,2, 0x1aa0c0,4, 0x1aa100,6, 0x1aa120,1, 0x1aa128,1, 0x1aa130,2, 0x1aa140,4, 0x1aa180,3, 0x1aa190,3, 0x1aa1a0,5, 0x1aa1c0,2, 0x1aa400,35, 0x1aa500,3, 0x1aa510,2, 0x1aa528,13, 0x1aa560,2, 0x1aa800,4, 0x1aa820,2, 0x1aa900,4, 0x1aa980,31, 0x1aaa00,4, 0x1aaa80,31, 0x1aab00,4, 0x1aab80,18, 0x1aac00,44, 0x1aacc0,4, 0x1aae00,25, 0x1aae80,1, 0x1aae88,8, 0x1aaec0,6, 0x1aaee0,1, 0x1aaee8,2, 0x1aaf04,17, 0x1ac000,19, 0x1ad000,8, 0x1ad080,11, 0x1ad400,96, 0x1ad584,1, 0x1ad590,11, 0x1ad5c8,2, 0x1ad5e0,9, 0x1ad608,1, 0x1ad610,3, 0x1ad620,2, 0x1ad634,1, 0x1ad63c,6, 0x1ad660,6, 0x1ad680,5, 0x1ad6a0,4, 0x1ad6bc,2, 0x1ad6e8,5, 0x1ad700,5, 0x1ad720,5, 0x1ad740,5, 0x1ad760,4, 0x1ad7a0,2, 0x1ad7b0,2, 0x1ad7c0,2, 0x1ae000,2, 0x1ae010,12, 0x1ae044,1, 0x1ae080,5, 0x1ae0a0,1, 0x1ae0a8,1, 0x1ae0b0,2, 0x1ae0c0,4, 0x1ae100,6, 0x1ae120,1, 0x1ae128,1, 0x1ae130,2, 0x1ae140,4, 0x1ae180,3, 0x1ae190,3, 0x1ae1a0,5, 0x1ae1c0,2, 0x1ae400,35, 0x1ae500,3, 0x1ae510,2, 0x1ae528,13, 0x1ae560,2, 0x1ae800,4, 0x1ae820,2, 0x1ae900,4, 0x1ae980,31, 0x1aea00,4, 0x1aea80,31, 0x1aeb00,4, 0x1aeb80,18, 0x1aec00,44, 0x1aecc0,4, 0x1aee00,25, 0x1aee80,1, 0x1aee88,8, 0x1aeec0,6, 0x1aeee0,1, 0x1aeee8,2, 0x1aef04,17, 0x1b0000,19, 0x1b1000,8, 0x1b1080,11, 0x1b1400,96, 0x1b1584,1, 0x1b1590,11, 0x1b15c8,2, 0x1b15e0,9, 0x1b1608,1, 0x1b1610,3, 0x1b1620,2, 0x1b1634,1, 0x1b163c,6, 0x1b1660,6, 0x1b1680,5, 0x1b16a0,4, 0x1b16bc,2, 0x1b16e8,5, 0x1b1700,5, 0x1b1720,5, 0x1b1740,5, 0x1b1760,4, 0x1b17a0,2, 0x1b17b0,2, 0x1b17c0,2, 0x1b2000,2, 0x1b2010,12, 0x1b2044,1, 0x1b2080,5, 0x1b20a0,1, 0x1b20a8,1, 0x1b20b0,2, 0x1b20c0,4, 0x1b2100,6, 0x1b2120,1, 0x1b2128,1, 0x1b2130,2, 0x1b2140,4, 0x1b2180,3, 0x1b2190,3, 0x1b21a0,5, 0x1b21c0,2, 0x1b2400,35, 0x1b2500,3, 0x1b2510,2, 0x1b2528,13, 0x1b2560,2, 0x1b2800,4, 0x1b2820,2, 0x1b2900,4, 0x1b2980,31, 0x1b2a00,4, 0x1b2a80,31, 0x1b2b00,4, 0x1b2b80,18, 0x1b2c00,44, 0x1b2cc0,4, 0x1b2e00,25, 0x1b2e80,1, 0x1b2e88,8, 0x1b2ec0,6, 0x1b2ee0,1, 0x1b2ee8,2, 0x1b2f04,17, 0x1b4000,19, 0x1b5000,8, 0x1b5080,11, 0x1b5400,96, 0x1b5584,1, 0x1b5590,11, 0x1b55c8,2, 0x1b55e0,9, 0x1b5608,1, 0x1b5610,3, 0x1b5620,2, 0x1b5634,1, 0x1b563c,6, 0x1b5660,6, 0x1b5680,5, 0x1b56a0,4, 0x1b56bc,2, 0x1b56e8,5, 0x1b5700,5, 0x1b5720,5, 0x1b5740,5, 0x1b5760,4, 0x1b57a0,2, 0x1b57b0,2, 0x1b57c0,2, 0x1b6000,2, 0x1b6010,12, 0x1b6044,1, 0x1b6080,5, 0x1b60a0,1, 0x1b60a8,1, 0x1b60b0,2, 0x1b60c0,4, 0x1b6100,6, 0x1b6120,1, 0x1b6128,1, 0x1b6130,2, 0x1b6140,4, 0x1b6180,3, 0x1b6190,3, 0x1b61a0,5, 0x1b61c0,2, 0x1b6400,35, 0x1b6500,3, 0x1b6510,2, 0x1b6528,13, 0x1b6560,2, 0x1b6800,4, 0x1b6820,2, 0x1b6900,4, 0x1b6980,31, 0x1b6a00,4, 0x1b6a80,31, 0x1b6b00,4, 0x1b6b80,18, 0x1b6c00,44, 0x1b6cc0,4, 0x1b6e00,25, 0x1b6e80,1, 0x1b6e88,8, 0x1b6ec0,6, 0x1b6ee0,1, 0x1b6ee8,2, 0x1b6f04,17, 0x1b8000,19, 0x1b9000,8, 0x1b9080,11, 0x1b9400,96, 0x1b9584,1, 0x1b9590,11, 0x1b95c8,2, 0x1b95e0,9, 0x1b9608,1, 0x1b9610,3, 0x1b9620,2, 0x1b9634,1, 0x1b963c,6, 0x1b9660,6, 0x1b9680,5, 0x1b96a0,4, 0x1b96bc,2, 0x1b96e8,5, 0x1b9700,5, 0x1b9720,5, 0x1b9740,5, 0x1b9760,4, 0x1b97a0,2, 0x1b97b0,2, 0x1b97c0,2, 0x1ba000,2, 0x1ba010,12, 0x1ba044,1, 0x1ba080,5, 0x1ba0a0,1, 0x1ba0a8,1, 0x1ba0b0,2, 0x1ba0c0,4, 0x1ba100,6, 0x1ba120,1, 0x1ba128,1, 0x1ba130,2, 0x1ba140,4, 0x1ba180,3, 0x1ba190,3, 0x1ba1a0,5, 0x1ba1c0,2, 0x1ba400,35, 0x1ba500,3, 0x1ba510,2, 0x1ba528,13, 0x1ba560,2, 0x1ba800,4, 0x1ba820,2, 0x1ba900,4, 0x1ba980,31, 0x1baa00,4, 0x1baa80,31, 0x1bab00,4, 0x1bab80,18, 0x1bac00,44, 0x1bacc0,4, 0x1bae00,25, 0x1bae80,1, 0x1bae88,8, 0x1baec0,6, 0x1baee0,1, 0x1baee8,2, 0x1baf04,17, 0x1bc000,19, 0x1bd000,8, 0x1bd080,11, 0x1bd400,96, 0x1bd584,1, 0x1bd590,11, 0x1bd5c8,2, 0x1bd5e0,9, 0x1bd608,1, 0x1bd610,3, 0x1bd620,2, 0x1bd634,1, 0x1bd63c,6, 0x1bd660,6, 0x1bd680,5, 0x1bd6a0,4, 0x1bd6bc,2, 0x1bd6e8,5, 0x1bd700,5, 0x1bd720,5, 0x1bd740,5, 0x1bd760,4, 0x1bd7a0,2, 0x1bd7b0,2, 0x1bd7c0,2, 0x1be000,2, 0x1be010,12, 0x1be044,1, 0x1be080,5, 0x1be0a0,1, 0x1be0a8,1, 0x1be0b0,2, 0x1be0c0,4, 0x1be100,6, 0x1be120,1, 0x1be128,1, 0x1be130,2, 0x1be140,4, 0x1be180,3, 0x1be190,3, 0x1be1a0,5, 0x1be1c0,2, 0x1be400,35, 0x1be500,3, 0x1be510,2, 0x1be528,13, 0x1be560,2, 0x1be800,4, 0x1be820,2, 0x1be900,4, 0x1be980,31, 0x1bea00,4, 0x1bea80,31, 0x1beb00,4, 0x1beb80,18, 0x1bec00,44, 0x1becc0,4, 0x1bee00,25, 0x1bee80,1, 0x1bee88,8, 0x1beec0,6, 0x1beee0,1, 0x1beee8,2, 0x1bef04,17, 0x1c0000,19, 0x1c1000,8, 0x1c1080,11, 0x1c1400,96, 0x1c1584,1, 0x1c1590,11, 0x1c15c8,2, 0x1c15e0,9, 0x1c1608,1, 0x1c1610,3, 0x1c1620,2, 0x1c1634,1, 0x1c163c,6, 0x1c1660,6, 0x1c1680,5, 0x1c16a0,4, 0x1c16bc,2, 0x1c16e8,5, 0x1c1700,5, 0x1c1720,5, 0x1c1740,5, 0x1c1760,4, 0x1c17a0,2, 0x1c17b0,2, 0x1c17c0,2, 0x1c2000,2, 0x1c2010,12, 0x1c2044,1, 0x1c2080,5, 0x1c20a0,1, 0x1c20a8,1, 0x1c20b0,2, 0x1c20c0,4, 0x1c2100,6, 0x1c2120,1, 0x1c2128,1, 0x1c2130,2, 0x1c2140,4, 0x1c2180,3, 0x1c2190,3, 0x1c21a0,5, 0x1c21c0,2, 0x1c2400,35, 0x1c2500,3, 0x1c2510,2, 0x1c2528,13, 0x1c2560,2, 0x1c2800,4, 0x1c2820,2, 0x1c2900,4, 0x1c2980,31, 0x1c2a00,4, 0x1c2a80,31, 0x1c2b00,4, 0x1c2b80,18, 0x1c2c00,44, 0x1c2cc0,4, 0x1c2e00,25, 0x1c2e80,1, 0x1c2e88,8, 0x1c2ec0,6, 0x1c2ee0,1, 0x1c2ee8,2, 0x1c2f04,17, 0x1c4000,19, 0x1c5000,8, 0x1c5080,11, 0x1c5400,96, 0x1c5584,1, 0x1c5590,11, 0x1c55c8,2, 0x1c55e0,9, 0x1c5608,1, 0x1c5610,3, 0x1c5620,2, 0x1c5634,1, 0x1c563c,6, 0x1c5660,6, 0x1c5680,5, 0x1c56a0,4, 0x1c56bc,2, 0x1c56e8,5, 0x1c5700,5, 0x1c5720,5, 0x1c5740,5, 0x1c5760,4, 0x1c57a0,2, 0x1c57b0,2, 0x1c57c0,2, 0x1c6000,2, 0x1c6010,12, 0x1c6044,1, 0x1c6080,5, 0x1c60a0,1, 0x1c60a8,1, 0x1c60b0,2, 0x1c60c0,4, 0x1c6100,6, 0x1c6120,1, 0x1c6128,1, 0x1c6130,2, 0x1c6140,4, 0x1c6180,3, 0x1c6190,3, 0x1c61a0,5, 0x1c61c0,2, 0x1c6400,35, 0x1c6500,3, 0x1c6510,2, 0x1c6528,13, 0x1c6560,2, 0x1c6800,4, 0x1c6820,2, 0x1c6900,4, 0x1c6980,31, 0x1c6a00,4, 0x1c6a80,31, 0x1c6b00,4, 0x1c6b80,18, 0x1c6c00,44, 0x1c6cc0,4, 0x1c6e00,25, 0x1c6e80,1, 0x1c6e88,8, 0x1c6ec0,6, 0x1c6ee0,1, 0x1c6ee8,2, 0x1c6f04,17, 0x1c8000,19, 0x1c9000,8, 0x1c9080,11, 0x1c9400,96, 0x1c9584,1, 0x1c9590,11, 0x1c95c8,2, 0x1c95e0,9, 0x1c9608,1, 0x1c9610,3, 0x1c9620,2, 0x1c9634,1, 0x1c963c,6, 0x1c9660,6, 0x1c9680,5, 0x1c96a0,4, 0x1c96bc,2, 0x1c96e8,5, 0x1c9700,5, 0x1c9720,5, 0x1c9740,5, 0x1c9760,4, 0x1c97a0,2, 0x1c97b0,2, 0x1c97c0,2, 0x1ca000,2, 0x1ca010,12, 0x1ca044,1, 0x1ca080,5, 0x1ca0a0,1, 0x1ca0a8,1, 0x1ca0b0,2, 0x1ca0c0,4, 0x1ca100,6, 0x1ca120,1, 0x1ca128,1, 0x1ca130,2, 0x1ca140,4, 0x1ca180,3, 0x1ca190,3, 0x1ca1a0,5, 0x1ca1c0,2, 0x1ca400,35, 0x1ca500,3, 0x1ca510,2, 0x1ca528,13, 0x1ca560,2, 0x1ca800,4, 0x1ca820,2, 0x1ca900,4, 0x1ca980,31, 0x1caa00,4, 0x1caa80,31, 0x1cab00,4, 0x1cab80,18, 0x1cac00,44, 0x1cacc0,4, 0x1cae00,25, 0x1cae80,1, 0x1cae88,8, 0x1caec0,6, 0x1caee0,1, 0x1caee8,2, 0x1caf04,17, 0x1cc000,19, 0x1cd000,8, 0x1cd080,11, 0x1cd400,96, 0x1cd584,1, 0x1cd590,11, 0x1cd5c8,2, 0x1cd5e0,9, 0x1cd608,1, 0x1cd610,3, 0x1cd620,2, 0x1cd634,1, 0x1cd63c,6, 0x1cd660,6, 0x1cd680,5, 0x1cd6a0,4, 0x1cd6bc,2, 0x1cd6e8,5, 0x1cd700,5, 0x1cd720,5, 0x1cd740,5, 0x1cd760,4, 0x1cd7a0,2, 0x1cd7b0,2, 0x1cd7c0,2, 0x1ce000,2, 0x1ce010,12, 0x1ce044,1, 0x1ce080,5, 0x1ce0a0,1, 0x1ce0a8,1, 0x1ce0b0,2, 0x1ce0c0,4, 0x1ce100,6, 0x1ce120,1, 0x1ce128,1, 0x1ce130,2, 0x1ce140,4, 0x1ce180,3, 0x1ce190,3, 0x1ce1a0,5, 0x1ce1c0,2, 0x1ce400,35, 0x1ce500,3, 0x1ce510,2, 0x1ce528,13, 0x1ce560,2, 0x1ce800,4, 0x1ce820,2, 0x1ce900,4, 0x1ce980,31, 0x1cea00,4, 0x1cea80,31, 0x1ceb00,4, 0x1ceb80,18, 0x1cec00,44, 0x1cecc0,4, 0x1cee00,25, 0x1cee80,1, 0x1cee88,8, 0x1ceec0,6, 0x1ceee0,1, 0x1ceee8,2, 0x1cef04,17, 0x1d0000,19, 0x1d1000,8, 0x1d1080,11, 0x1d1400,96, 0x1d1584,1, 0x1d1590,11, 0x1d15c8,2, 0x1d15e0,9, 0x1d1608,1, 0x1d1610,3, 0x1d1620,2, 0x1d1634,1, 0x1d163c,6, 0x1d1660,6, 0x1d1680,5, 0x1d16a0,4, 0x1d16bc,2, 0x1d16e8,5, 0x1d1700,5, 0x1d1720,5, 0x1d1740,5, 0x1d1760,4, 0x1d17a0,2, 0x1d17b0,2, 0x1d17c0,2, 0x1d2000,2, 0x1d2010,12, 0x1d2044,1, 0x1d2080,5, 0x1d20a0,1, 0x1d20a8,1, 0x1d20b0,2, 0x1d20c0,4, 0x1d2100,6, 0x1d2120,1, 0x1d2128,1, 0x1d2130,2, 0x1d2140,4, 0x1d2180,3, 0x1d2190,3, 0x1d21a0,5, 0x1d21c0,2, 0x1d2400,35, 0x1d2500,3, 0x1d2510,2, 0x1d2528,13, 0x1d2560,2, 0x1d2800,4, 0x1d2820,2, 0x1d2900,4, 0x1d2980,31, 0x1d2a00,4, 0x1d2a80,31, 0x1d2b00,4, 0x1d2b80,18, 0x1d2c00,44, 0x1d2cc0,4, 0x1d2e00,25, 0x1d2e80,1, 0x1d2e88,8, 0x1d2ec0,6, 0x1d2ee0,1, 0x1d2ee8,2, 0x1d2f04,17, 0x1d4000,19, 0x1d5000,8, 0x1d5080,11, 0x1d5400,96, 0x1d5584,1, 0x1d5590,11, 0x1d55c8,2, 0x1d55e0,9, 0x1d5608,1, 0x1d5610,3, 0x1d5620,2, 0x1d5634,1, 0x1d563c,6, 0x1d5660,6, 0x1d5680,5, 0x1d56a0,4, 0x1d56bc,2, 0x1d56e8,5, 0x1d5700,5, 0x1d5720,5, 0x1d5740,5, 0x1d5760,4, 0x1d57a0,2, 0x1d57b0,2, 0x1d57c0,2, 0x1d6000,2, 0x1d6010,12, 0x1d6044,1, 0x1d6080,5, 0x1d60a0,1, 0x1d60a8,1, 0x1d60b0,2, 0x1d60c0,4, 0x1d6100,6, 0x1d6120,1, 0x1d6128,1, 0x1d6130,2, 0x1d6140,4, 0x1d6180,3, 0x1d6190,3, 0x1d61a0,5, 0x1d61c0,2, 0x1d6400,35, 0x1d6500,3, 0x1d6510,2, 0x1d6528,13, 0x1d6560,2, 0x1d6800,4, 0x1d6820,2, 0x1d6900,4, 0x1d6980,31, 0x1d6a00,4, 0x1d6a80,31, 0x1d6b00,4, 0x1d6b80,18, 0x1d6c00,44, 0x1d6cc0,4, 0x1d6e00,25, 0x1d6e80,1, 0x1d6e88,8, 0x1d6ec0,6, 0x1d6ee0,1, 0x1d6ee8,2, 0x1d6f04,17, 0x1d8000,19, 0x1d9000,8, 0x1d9080,11, 0x1d9400,96, 0x1d9584,1, 0x1d9590,11, 0x1d95c8,2, 0x1d95e0,9, 0x1d9608,1, 0x1d9610,3, 0x1d9620,2, 0x1d9634,1, 0x1d963c,6, 0x1d9660,6, 0x1d9680,5, 0x1d96a0,4, 0x1d96bc,2, 0x1d96e8,5, 0x1d9700,5, 0x1d9720,5, 0x1d9740,5, 0x1d9760,4, 0x1d97a0,2, 0x1d97b0,2, 0x1d97c0,2, 0x1da000,2, 0x1da010,12, 0x1da044,1, 0x1da080,5, 0x1da0a0,1, 0x1da0a8,1, 0x1da0b0,2, 0x1da0c0,4, 0x1da100,6, 0x1da120,1, 0x1da128,1, 0x1da130,2, 0x1da140,4, 0x1da180,3, 0x1da190,3, 0x1da1a0,5, 0x1da1c0,2, 0x1da400,35, 0x1da500,3, 0x1da510,2, 0x1da528,13, 0x1da560,2, 0x1da800,4, 0x1da820,2, 0x1da900,4, 0x1da980,31, 0x1daa00,4, 0x1daa80,31, 0x1dab00,4, 0x1dab80,18, 0x1dac00,44, 0x1dacc0,4, 0x1dae00,25, 0x1dae80,1, 0x1dae88,8, 0x1daec0,6, 0x1daee0,1, 0x1daee8,2, 0x1daf04,17, 0x1dc000,19, 0x1dd000,8, 0x1dd080,11, 0x1dd400,96, 0x1dd584,1, 0x1dd590,11, 0x1dd5c8,2, 0x1dd5e0,9, 0x1dd608,1, 0x1dd610,3, 0x1dd620,2, 0x1dd634,1, 0x1dd63c,6, 0x1dd660,6, 0x1dd680,5, 0x1dd6a0,4, 0x1dd6bc,2, 0x1dd6e8,5, 0x1dd700,5, 0x1dd720,5, 0x1dd740,5, 0x1dd760,4, 0x1dd7a0,2, 0x1dd7b0,2, 0x1dd7c0,2, 0x1de000,2, 0x1de010,12, 0x1de044,1, 0x1de080,5, 0x1de0a0,1, 0x1de0a8,1, 0x1de0b0,2, 0x1de0c0,4, 0x1de100,6, 0x1de120,1, 0x1de128,1, 0x1de130,2, 0x1de140,4, 0x1de180,3, 0x1de190,3, 0x1de1a0,5, 0x1de1c0,2, 0x1de400,35, 0x1de500,3, 0x1de510,2, 0x1de528,13, 0x1de560,2, 0x1de800,4, 0x1de820,2, 0x1de900,4, 0x1de980,31, 0x1dea00,4, 0x1dea80,31, 0x1deb00,4, 0x1deb80,18, 0x1dec00,44, 0x1decc0,4, 0x1dee00,25, 0x1dee80,1, 0x1dee88,8, 0x1deec0,6, 0x1deee0,1, 0x1deee8,2, 0x1def04,17, 0x1e0000,19, 0x1e1000,8, 0x1e1080,11, 0x1e1400,96, 0x1e1584,1, 0x1e1590,11, 0x1e15c8,2, 0x1e15e0,9, 0x1e1608,1, 0x1e1610,3, 0x1e1620,2, 0x1e1634,1, 0x1e163c,6, 0x1e1660,6, 0x1e1680,5, 0x1e16a0,4, 0x1e16bc,2, 0x1e16e8,5, 0x1e1700,5, 0x1e1720,5, 0x1e1740,5, 0x1e1760,4, 0x1e17a0,2, 0x1e17b0,2, 0x1e17c0,2, 0x1e2000,2, 0x1e2010,12, 0x1e2044,1, 0x1e2080,5, 0x1e20a0,1, 0x1e20a8,1, 0x1e20b0,2, 0x1e20c0,4, 0x1e2100,6, 0x1e2120,1, 0x1e2128,1, 0x1e2130,2, 0x1e2140,4, 0x1e2180,3, 0x1e2190,3, 0x1e21a0,5, 0x1e21c0,2, 0x1e2400,35, 0x1e2500,3, 0x1e2510,2, 0x1e2528,13, 0x1e2560,2, 0x1e2800,4, 0x1e2820,2, 0x1e2900,4, 0x1e2980,31, 0x1e2a00,4, 0x1e2a80,31, 0x1e2b00,4, 0x1e2b80,18, 0x1e2c00,44, 0x1e2cc0,4, 0x1e2e00,25, 0x1e2e80,1, 0x1e2e88,8, 0x1e2ec0,6, 0x1e2ee0,1, 0x1e2ee8,2, 0x1e2f04,17, 0x1e4000,19, 0x1e5000,8, 0x1e5080,11, 0x1e5400,96, 0x1e5584,1, 0x1e5590,11, 0x1e55c8,2, 0x1e55e0,9, 0x1e5608,1, 0x1e5610,3, 0x1e5620,2, 0x1e5634,1, 0x1e563c,6, 0x1e5660,6, 0x1e5680,5, 0x1e56a0,4, 0x1e56bc,2, 0x1e56e8,5, 0x1e5700,5, 0x1e5720,5, 0x1e5740,5, 0x1e5760,4, 0x1e57a0,2, 0x1e57b0,2, 0x1e57c0,2, 0x1e6000,2, 0x1e6010,12, 0x1e6044,1, 0x1e6080,5, 0x1e60a0,1, 0x1e60a8,1, 0x1e60b0,2, 0x1e60c0,4, 0x1e6100,6, 0x1e6120,1, 0x1e6128,1, 0x1e6130,2, 0x1e6140,4, 0x1e6180,3, 0x1e6190,3, 0x1e61a0,5, 0x1e61c0,2, 0x1e6400,35, 0x1e6500,3, 0x1e6510,2, 0x1e6528,13, 0x1e6560,2, 0x1e6800,4, 0x1e6820,2, 0x1e6900,4, 0x1e6980,31, 0x1e6a00,4, 0x1e6a80,31, 0x1e6b00,4, 0x1e6b80,18, 0x1e6c00,44, 0x1e6cc0,4, 0x1e6e00,25, 0x1e6e80,1, 0x1e6e88,8, 0x1e6ec0,6, 0x1e6ee0,1, 0x1e6ee8,2, 0x1e6f04,17, 0x1e8000,19, 0x1e9000,8, 0x1e9080,11, 0x1e9400,96, 0x1e9584,1, 0x1e9590,11, 0x1e95c8,2, 0x1e95e0,9, 0x1e9608,1, 0x1e9610,3, 0x1e9620,2, 0x1e9634,1, 0x1e963c,6, 0x1e9660,6, 0x1e9680,5, 0x1e96a0,4, 0x1e96bc,2, 0x1e96e8,5, 0x1e9700,5, 0x1e9720,5, 0x1e9740,5, 0x1e9760,4, 0x1e97a0,2, 0x1e97b0,2, 0x1e97c0,2, 0x1ea000,2, 0x1ea010,12, 0x1ea044,1, 0x1ea080,5, 0x1ea0a0,1, 0x1ea0a8,1, 0x1ea0b0,2, 0x1ea0c0,4, 0x1ea100,6, 0x1ea120,1, 0x1ea128,1, 0x1ea130,2, 0x1ea140,4, 0x1ea180,3, 0x1ea190,3, 0x1ea1a0,5, 0x1ea1c0,2, 0x1ea400,35, 0x1ea500,3, 0x1ea510,2, 0x1ea528,13, 0x1ea560,2, 0x1ea800,4, 0x1ea820,2, 0x1ea900,4, 0x1ea980,31, 0x1eaa00,4, 0x1eaa80,31, 0x1eab00,4, 0x1eab80,18, 0x1eac00,44, 0x1eacc0,4, 0x1eae00,25, 0x1eae80,1, 0x1eae88,8, 0x1eaec0,6, 0x1eaee0,1, 0x1eaee8,2, 0x1eaf04,17, 0x1ec000,19, 0x1ed000,8, 0x1ed080,11, 0x1ed400,96, 0x1ed584,1, 0x1ed590,11, 0x1ed5c8,2, 0x1ed5e0,9, 0x1ed608,1, 0x1ed610,3, 0x1ed620,2, 0x1ed634,1, 0x1ed63c,6, 0x1ed660,6, 0x1ed680,5, 0x1ed6a0,4, 0x1ed6bc,2, 0x1ed6e8,5, 0x1ed700,5, 0x1ed720,5, 0x1ed740,5, 0x1ed760,4, 0x1ed7a0,2, 0x1ed7b0,2, 0x1ed7c0,2, 0x1ee000,2, 0x1ee010,12, 0x1ee044,1, 0x1ee080,5, 0x1ee0a0,1, 0x1ee0a8,1, 0x1ee0b0,2, 0x1ee0c0,4, 0x1ee100,6, 0x1ee120,1, 0x1ee128,1, 0x1ee130,2, 0x1ee140,4, 0x1ee180,3, 0x1ee190,3, 0x1ee1a0,5, 0x1ee1c0,2, 0x1ee400,35, 0x1ee500,3, 0x1ee510,2, 0x1ee528,13, 0x1ee560,2, 0x1ee800,4, 0x1ee820,2, 0x1ee900,4, 0x1ee980,31, 0x1eea00,4, 0x1eea80,31, 0x1eeb00,4, 0x1eeb80,18, 0x1eec00,44, 0x1eecc0,4, 0x1eee00,25, 0x1eee80,1, 0x1eee88,8, 0x1eeec0,6, 0x1eeee0,1, 0x1eeee8,2, 0x1eef04,17, 0x1f0000,19, 0x1f1000,8, 0x1f1080,11, 0x1f1400,96, 0x1f1584,1, 0x1f1590,11, 0x1f15c8,2, 0x1f15e0,9, 0x1f1608,1, 0x1f1610,3, 0x1f1620,2, 0x1f1634,1, 0x1f163c,6, 0x1f1660,6, 0x1f1680,5, 0x1f16a0,4, 0x1f16bc,2, 0x1f16e8,5, 0x1f1700,5, 0x1f1720,5, 0x1f1740,5, 0x1f1760,4, 0x1f17a0,2, 0x1f17b0,2, 0x1f17c0,2, 0x1f2000,2, 0x1f2010,12, 0x1f2044,1, 0x1f2080,5, 0x1f20a0,1, 0x1f20a8,1, 0x1f20b0,2, 0x1f20c0,4, 0x1f2100,6, 0x1f2120,1, 0x1f2128,1, 0x1f2130,2, 0x1f2140,4, 0x1f2180,3, 0x1f2190,3, 0x1f21a0,5, 0x1f21c0,2, 0x1f2400,35, 0x1f2500,3, 0x1f2510,2, 0x1f2528,13, 0x1f2560,2, 0x1f2800,4, 0x1f2820,2, 0x1f2900,4, 0x1f2980,31, 0x1f2a00,4, 0x1f2a80,31, 0x1f2b00,4, 0x1f2b80,18, 0x1f2c00,44, 0x1f2cc0,4, 0x1f2e00,25, 0x1f2e80,1, 0x1f2e88,8, 0x1f2ec0,6, 0x1f2ee0,1, 0x1f2ee8,2, 0x1f2f04,17, 0x1f4000,19, 0x1f5000,8, 0x1f5080,11, 0x1f5400,96, 0x1f5584,1, 0x1f5590,11, 0x1f55c8,2, 0x1f55e0,9, 0x1f5608,1, 0x1f5610,3, 0x1f5620,2, 0x1f5634,1, 0x1f563c,6, 0x1f5660,6, 0x1f5680,5, 0x1f56a0,4, 0x1f56bc,2, 0x1f56e8,5, 0x1f5700,5, 0x1f5720,5, 0x1f5740,5, 0x1f5760,4, 0x1f57a0,2, 0x1f57b0,2, 0x1f57c0,2, 0x1f6000,2, 0x1f6010,12, 0x1f6044,1, 0x1f6080,5, 0x1f60a0,1, 0x1f60a8,1, 0x1f60b0,2, 0x1f60c0,4, 0x1f6100,6, 0x1f6120,1, 0x1f6128,1, 0x1f6130,2, 0x1f6140,4, 0x1f6180,3, 0x1f6190,3, 0x1f61a0,5, 0x1f61c0,2, 0x1f6400,35, 0x1f6500,3, 0x1f6510,2, 0x1f6528,13, 0x1f6560,2, 0x1f6800,4, 0x1f6820,2, 0x1f6900,4, 0x1f6980,31, 0x1f6a00,4, 0x1f6a80,31, 0x1f6b00,4, 0x1f6b80,18, 0x1f6c00,44, 0x1f6cc0,4, 0x1f6e00,25, 0x1f6e80,1, 0x1f6e88,8, 0x1f6ec0,6, 0x1f6ee0,1, 0x1f6ee8,2, 0x1f6f04,17, 0x1f8000,19, 0x1f9000,8, 0x1f9080,11, 0x1f9400,96, 0x1f9584,1, 0x1f9590,11, 0x1f95c8,2, 0x1f95e0,9, 0x1f9608,1, 0x1f9610,3, 0x1f9620,2, 0x1f9634,1, 0x1f963c,6, 0x1f9660,6, 0x1f9680,5, 0x1f96a0,4, 0x1f96bc,2, 0x1f96e8,5, 0x1f9700,5, 0x1f9720,5, 0x1f9740,5, 0x1f9760,4, 0x1f97a0,2, 0x1f97b0,2, 0x1f97c0,2, 0x1fa000,2, 0x1fa010,12, 0x1fa044,1, 0x1fa080,5, 0x1fa0a0,1, 0x1fa0a8,1, 0x1fa0b0,2, 0x1fa0c0,4, 0x1fa100,6, 0x1fa120,1, 0x1fa128,1, 0x1fa130,2, 0x1fa140,4, 0x1fa180,3, 0x1fa190,3, 0x1fa1a0,5, 0x1fa1c0,2, 0x1fa400,35, 0x1fa500,3, 0x1fa510,2, 0x1fa528,13, 0x1fa560,2, 0x1fa800,4, 0x1fa820,2, 0x1fa900,4, 0x1fa980,31, 0x1faa00,4, 0x1faa80,31, 0x1fab00,4, 0x1fab80,18, 0x1fac00,44, 0x1facc0,4, 0x1fae00,25, 0x1fae80,1, 0x1fae88,8, 0x1faec0,6, 0x1faee0,1, 0x1faee8,2, 0x1faf04,17, 0x1fc000,19, 0x1fd000,8, 0x1fd080,11, 0x1fd400,96, 0x1fd584,1, 0x1fd590,11, 0x1fd5c8,2, 0x1fd5e0,9, 0x1fd608,1, 0x1fd610,3, 0x1fd620,2, 0x1fd634,1, 0x1fd63c,6, 0x1fd660,6, 0x1fd680,5, 0x1fd6a0,4, 0x1fd6bc,2, 0x1fd6e8,5, 0x1fd700,5, 0x1fd720,5, 0x1fd740,5, 0x1fd760,4, 0x1fd7a0,2, 0x1fd7b0,2, 0x1fd7c0,2, 0x1fe000,2, 0x1fe010,12, 0x1fe044,1, 0x1fe080,5, 0x1fe0a0,1, 0x1fe0a8,1, 0x1fe0b0,2, 0x1fe0c0,4, 0x1fe100,6, 0x1fe120,1, 0x1fe128,1, 0x1fe130,2, 0x1fe140,4, 0x1fe180,3, 0x1fe190,3, 0x1fe1a0,5, 0x1fe1c0,2, 0x1fe400,35, 0x1fe500,3, 0x1fe510,2, 0x1fe528,13, 0x1fe560,2, 0x1fe800,4, 0x1fe820,2, 0x1fe900,4, 0x1fe980,31, 0x1fea00,4, 0x1fea80,31, 0x1feb00,4, 0x1feb80,18, 0x1fec00,44, 0x1fecc0,4, 0x1fee00,25, 0x1fee80,1, 0x1fee88,8, 0x1feec0,6, 0x1feee0,1, 0x1feee8,2, 0x1fef04,17, 0x200000,19, 0x201000,8, 0x201080,11, 0x201400,96, 0x201584,1, 0x201590,11, 0x2015c8,2, 0x2015e0,9, 0x201608,1, 0x201610,3, 0x201620,2, 0x201634,1, 0x20163c,6, 0x201660,6, 0x201680,5, 0x2016a0,4, 0x2016bc,2, 0x2016e8,5, 0x201700,5, 0x201720,5, 0x201740,5, 0x201760,4, 0x2017a0,2, 0x2017b0,2, 0x2017c0,2, 0x202000,2, 0x202010,12, 0x202044,1, 0x202080,5, 0x2020a0,1, 0x2020a8,1, 0x2020b0,2, 0x2020c0,4, 0x202100,6, 0x202120,1, 0x202128,1, 0x202130,2, 0x202140,4, 0x202180,3, 0x202190,3, 0x2021a0,5, 0x2021c0,2, 0x202400,35, 0x202500,3, 0x202510,2, 0x202528,13, 0x202560,2, 0x202800,4, 0x202820,2, 0x202900,4, 0x202980,31, 0x202a00,4, 0x202a80,31, 0x202b00,4, 0x202b80,18, 0x202c00,44, 0x202cc0,4, 0x202e00,25, 0x202e80,1, 0x202e88,8, 0x202ec0,6, 0x202ee0,1, 0x202ee8,2, 0x202f04,17, 0x204000,19, 0x205000,8, 0x205080,11, 0x205400,96, 0x205584,1, 0x205590,11, 0x2055c8,2, 0x2055e0,9, 0x205608,1, 0x205610,3, 0x205620,2, 0x205634,1, 0x20563c,6, 0x205660,6, 0x205680,5, 0x2056a0,4, 0x2056bc,2, 0x2056e8,5, 0x205700,5, 0x205720,5, 0x205740,5, 0x205760,4, 0x2057a0,2, 0x2057b0,2, 0x2057c0,2, 0x206000,2, 0x206010,12, 0x206044,1, 0x206080,5, 0x2060a0,1, 0x2060a8,1, 0x2060b0,2, 0x2060c0,4, 0x206100,6, 0x206120,1, 0x206128,1, 0x206130,2, 0x206140,4, 0x206180,3, 0x206190,3, 0x2061a0,5, 0x2061c0,2, 0x206400,35, 0x206500,3, 0x206510,2, 0x206528,13, 0x206560,2, 0x206800,4, 0x206820,2, 0x206900,4, 0x206980,31, 0x206a00,4, 0x206a80,31, 0x206b00,4, 0x206b80,18, 0x206c00,44, 0x206cc0,4, 0x206e00,25, 0x206e80,1, 0x206e88,8, 0x206ec0,6, 0x206ee0,1, 0x206ee8,2, 0x206f04,17, 0x208000,19, 0x209000,8, 0x209080,11, 0x209400,96, 0x209584,1, 0x209590,11, 0x2095c8,2, 0x2095e0,9, 0x209608,1, 0x209610,3, 0x209620,2, 0x209634,1, 0x20963c,6, 0x209660,6, 0x209680,5, 0x2096a0,4, 0x2096bc,2, 0x2096e8,5, 0x209700,5, 0x209720,5, 0x209740,5, 0x209760,4, 0x2097a0,2, 0x2097b0,2, 0x2097c0,2, 0x20a000,2, 0x20a010,12, 0x20a044,1, 0x20a080,5, 0x20a0a0,1, 0x20a0a8,1, 0x20a0b0,2, 0x20a0c0,4, 0x20a100,6, 0x20a120,1, 0x20a128,1, 0x20a130,2, 0x20a140,4, 0x20a180,3, 0x20a190,3, 0x20a1a0,5, 0x20a1c0,2, 0x20a400,35, 0x20a500,3, 0x20a510,2, 0x20a528,13, 0x20a560,2, 0x20a800,4, 0x20a820,2, 0x20a900,4, 0x20a980,31, 0x20aa00,4, 0x20aa80,31, 0x20ab00,4, 0x20ab80,18, 0x20ac00,44, 0x20acc0,4, 0x20ae00,25, 0x20ae80,1, 0x20ae88,8, 0x20aec0,6, 0x20aee0,1, 0x20aee8,2, 0x20af04,17, 0x20c000,19, 0x20d000,8, 0x20d080,11, 0x20d400,96, 0x20d584,1, 0x20d590,11, 0x20d5c8,2, 0x20d5e0,9, 0x20d608,1, 0x20d610,3, 0x20d620,2, 0x20d634,1, 0x20d63c,6, 0x20d660,6, 0x20d680,5, 0x20d6a0,4, 0x20d6bc,2, 0x20d6e8,5, 0x20d700,5, 0x20d720,5, 0x20d740,5, 0x20d760,4, 0x20d7a0,2, 0x20d7b0,2, 0x20d7c0,2, 0x20e000,2, 0x20e010,12, 0x20e044,1, 0x20e080,5, 0x20e0a0,1, 0x20e0a8,1, 0x20e0b0,2, 0x20e0c0,4, 0x20e100,6, 0x20e120,1, 0x20e128,1, 0x20e130,2, 0x20e140,4, 0x20e180,3, 0x20e190,3, 0x20e1a0,5, 0x20e1c0,2, 0x20e400,35, 0x20e500,3, 0x20e510,2, 0x20e528,13, 0x20e560,2, 0x20e800,4, 0x20e820,2, 0x20e900,4, 0x20e980,31, 0x20ea00,4, 0x20ea80,31, 0x20eb00,4, 0x20eb80,18, 0x20ec00,44, 0x20ecc0,4, 0x20ee00,25, 0x20ee80,1, 0x20ee88,8, 0x20eec0,6, 0x20eee0,1, 0x20eee8,2, 0x20ef04,17, 0x210000,35, 0x210100,35, 0x210200,3, 0x210a00,10, 0x210a80,3, 0x210b00,6, 0x211004,1, 0x211024,7, 0x211044,1, 0x211064,7, 0x211084,1, 0x2110a4,7, 0x2110c4,1, 0x2110e4,7, 0x211104,1, 0x211124,7, 0x211144,1, 0x211164,7, 0x211184,1, 0x2111a4,7, 0x2111c4,1, 0x2111e4,7, 0x211204,3, 0x211214,3, 0x211224,3, 0x211234,3, 0x211244,3, 0x211254,3, 0x211264,3, 0x211274,22, 0x211400,18, 0x21144c,1, 0x211480,18, 0x2114cc,1, 0x211500,18, 0x21154c,1, 0x211580,18, 0x2115cc,1, 0x211600,18, 0x21164c,1, 0x211680,18, 0x2116cc,1, 0x211700,18, 0x21174c,1, 0x211780,18, 0x2117cc,1, 0x212004,1, 0x212018,3, 0x212034,6, 0x212050,3, 0x212060,2, 0x212070,1, 0x212080,12, 0x2120c0,12, 0x212100,12, 0x212140,12, 0x212180,12, 0x2121c4,5, 0x2121dc,2, 0x2121e8,1, 0x2121fc,1, 0x212204,1, 0x212218,3, 0x212234,6, 0x212250,3, 0x212260,2, 0x212270,1, 0x212280,12, 0x2122c0,12, 0x212300,12, 0x212340,12, 0x212380,12, 0x2123c4,5, 0x2123dc,2, 0x2123e8,1, 0x2123fc,1, 0x212404,1, 0x212418,3, 0x212434,6, 0x212450,3, 0x212460,2, 0x212470,1, 0x212480,12, 0x2124c0,12, 0x212500,12, 0x212540,12, 0x212580,12, 0x2125c4,5, 0x2125dc,2, 0x2125e8,1, 0x2125fc,1, 0x212604,1, 0x212618,3, 0x212634,6, 0x212650,3, 0x212660,2, 0x212670,1, 0x212680,12, 0x2126c0,12, 0x212700,12, 0x212740,12, 0x212780,12, 0x2127c4,5, 0x2127dc,2, 0x2127e8,1, 0x2127fc,1, 0x212804,1, 0x212818,3, 0x212834,6, 0x212850,3, 0x212860,2, 0x212870,1, 0x212880,12, 0x2128c0,12, 0x212900,12, 0x212940,12, 0x212980,12, 0x2129c4,5, 0x2129dc,2, 0x2129e8,1, 0x2129fc,1, 0x212a04,1, 0x212a18,3, 0x212a34,6, 0x212a50,3, 0x212a60,2, 0x212a70,1, 0x212a80,12, 0x212ac0,12, 0x212b00,12, 0x212b40,12, 0x212b80,12, 0x212bc4,5, 0x212bdc,2, 0x212be8,1, 0x212bfc,1, 0x212c04,1, 0x212c18,3, 0x212c34,6, 0x212c50,3, 0x212c60,2, 0x212c70,1, 0x212c80,12, 0x212cc0,12, 0x212d00,12, 0x212d40,12, 0x212d80,12, 0x212dc4,5, 0x212ddc,2, 0x212de8,1, 0x212dfc,1, 0x212e04,1, 0x212e18,3, 0x212e34,6, 0x212e50,3, 0x212e60,2, 0x212e70,1, 0x212e80,12, 0x212ec0,12, 0x212f00,12, 0x212f40,12, 0x212f80,12, 0x212fc4,5, 0x212fdc,2, 0x212fe8,1, 0x212ffc,26, 0x213080,1, 0x213088,8, 0x2130c0,6, 0x2130e0,1, 0x2130e8,2, 0x213104,36, 0x213200,25, 0x213280,1, 0x213288,8, 0x2132c0,6, 0x2132e0,1, 0x2132e8,2, 0x213304,36, 0x213400,25, 0x213480,1, 0x213488,8, 0x2134c0,6, 0x2134e0,1, 0x2134e8,2, 0x213504,36, 0x213600,25, 0x213680,1, 0x213688,8, 0x2136c0,6, 0x2136e0,1, 0x2136e8,2, 0x213704,36, 0x213800,25, 0x213880,1, 0x213888,8, 0x2138c0,6, 0x2138e0,1, 0x2138e8,2, 0x213904,36, 0x213a00,25, 0x213a80,1, 0x213a88,8, 0x213ac0,6, 0x213ae0,1, 0x213ae8,2, 0x213b04,36, 0x213c00,25, 0x213c80,1, 0x213c88,8, 0x213cc0,6, 0x213ce0,1, 0x213ce8,2, 0x213d04,36, 0x213e00,25, 0x213e80,1, 0x213e88,8, 0x213ec0,6, 0x213ee0,1, 0x213ee8,2, 0x213f04,36, 0x214000,2, 0x21400c,4, 0x214020,1, 0x2141c0,6, 0x2141e8,2, 0x218000,4, 0x218200,102, 0x218400,35, 0x218500,27, 0x218600,11, 0x218640,37, 0x2186e0,7, 0x218700,34, 0x21878c,20, 0x2187e0,3, 0x2187f0,14, 0x218840,1, 0x218850,9, 0x21887c,4, 0x218890,12, 0x2188d0,4, 0x218900,29, 0x219000,4, 0x219200,102, 0x219400,35, 0x219500,27, 0x219600,11, 0x219640,37, 0x2196e0,7, 0x219700,34, 0x21978c,20, 0x2197e0,3, 0x2197f0,14, 0x219840,1, 0x219850,9, 0x21987c,4, 0x219890,12, 0x2198d0,4, 0x219900,29, 0x21a000,4, 0x21a200,102, 0x21a400,35, 0x21a500,27, 0x21a600,11, 0x21a640,37, 0x21a6e0,7, 0x21a700,34, 0x21a78c,20, 0x21a7e0,3, 0x21a7f0,14, 0x21a840,1, 0x21a850,9, 0x21a87c,4, 0x21a890,12, 0x21a8d0,4, 0x21a900,29, 0x21b000,4, 0x21b200,102, 0x21b400,35, 0x21b500,27, 0x21b600,11, 0x21b640,37, 0x21b6e0,7, 0x21b700,34, 0x21b78c,20, 0x21b7e0,3, 0x21b7f0,14, 0x21b840,1, 0x21b850,9, 0x21b87c,4, 0x21b890,12, 0x21b8d0,4, 0x21b900,29, 0x21c000,4, 0x21c200,102, 0x21c400,35, 0x21c500,27, 0x21c600,11, 0x21c640,37, 0x21c6e0,7, 0x21c700,34, 0x21c78c,20, 0x21c7e0,3, 0x21c7f0,14, 0x21c840,1, 0x21c850,9, 0x21c87c,4, 0x21c890,12, 0x21c8d0,4, 0x21c900,29, 0x21d000,4, 0x21d200,102, 0x21d400,35, 0x21d500,27, 0x21d600,11, 0x21d640,37, 0x21d6e0,7, 0x21d700,34, 0x21d78c,20, 0x21d7e0,3, 0x21d7f0,14, 0x21d840,1, 0x21d850,9, 0x21d87c,4, 0x21d890,12, 0x21d8d0,4, 0x21d900,29, 0x21e000,4, 0x21e200,102, 0x21e400,35, 0x21e500,27, 0x21e600,11, 0x21e640,37, 0x21e6e0,7, 0x21e700,34, 0x21e78c,20, 0x21e7e0,3, 0x21e7f0,14, 0x21e840,1, 0x21e850,9, 0x21e87c,4, 0x21e890,12, 0x21e8d0,4, 0x21e900,29, 0x21f000,4, 0x21f200,102, 0x21f400,35, 0x21f500,27, 0x21f600,11, 0x21f640,37, 0x21f6e0,7, 0x21f700,34, 0x21f78c,20, 0x21f7e0,3, 0x21f7f0,14, 0x21f840,1, 0x21f850,9, 0x21f87c,4, 0x21f890,12, 0x21f8d0,4, 0x21f900,29, 0x220000,35, 0x220100,35, 0x220200,3, 0x220a00,10, 0x220a80,3, 0x220b00,6, 0x221004,1, 0x221024,7, 0x221044,1, 0x221064,7, 0x221084,1, 0x2210a4,7, 0x2210c4,1, 0x2210e4,7, 0x221104,1, 0x221124,7, 0x221144,1, 0x221164,7, 0x221184,1, 0x2211a4,7, 0x2211c4,1, 0x2211e4,7, 0x221204,3, 0x221214,3, 0x221224,3, 0x221234,3, 0x221244,3, 0x221254,3, 0x221264,3, 0x221274,22, 0x221400,18, 0x22144c,1, 0x221480,18, 0x2214cc,1, 0x221500,18, 0x22154c,1, 0x221580,18, 0x2215cc,1, 0x221600,18, 0x22164c,1, 0x221680,18, 0x2216cc,1, 0x221700,18, 0x22174c,1, 0x221780,18, 0x2217cc,1, 0x222004,1, 0x222018,3, 0x222034,6, 0x222050,3, 0x222060,2, 0x222070,1, 0x222080,12, 0x2220c0,12, 0x222100,12, 0x222140,12, 0x222180,12, 0x2221c4,5, 0x2221dc,2, 0x2221e8,1, 0x2221fc,1, 0x222204,1, 0x222218,3, 0x222234,6, 0x222250,3, 0x222260,2, 0x222270,1, 0x222280,12, 0x2222c0,12, 0x222300,12, 0x222340,12, 0x222380,12, 0x2223c4,5, 0x2223dc,2, 0x2223e8,1, 0x2223fc,1, 0x222404,1, 0x222418,3, 0x222434,6, 0x222450,3, 0x222460,2, 0x222470,1, 0x222480,12, 0x2224c0,12, 0x222500,12, 0x222540,12, 0x222580,12, 0x2225c4,5, 0x2225dc,2, 0x2225e8,1, 0x2225fc,1, 0x222604,1, 0x222618,3, 0x222634,6, 0x222650,3, 0x222660,2, 0x222670,1, 0x222680,12, 0x2226c0,12, 0x222700,12, 0x222740,12, 0x222780,12, 0x2227c4,5, 0x2227dc,2, 0x2227e8,1, 0x2227fc,1, 0x222804,1, 0x222818,3, 0x222834,6, 0x222850,3, 0x222860,2, 0x222870,1, 0x222880,12, 0x2228c0,12, 0x222900,12, 0x222940,12, 0x222980,12, 0x2229c4,5, 0x2229dc,2, 0x2229e8,1, 0x2229fc,1, 0x222a04,1, 0x222a18,3, 0x222a34,6, 0x222a50,3, 0x222a60,2, 0x222a70,1, 0x222a80,12, 0x222ac0,12, 0x222b00,12, 0x222b40,12, 0x222b80,12, 0x222bc4,5, 0x222bdc,2, 0x222be8,1, 0x222bfc,1, 0x222c04,1, 0x222c18,3, 0x222c34,6, 0x222c50,3, 0x222c60,2, 0x222c70,1, 0x222c80,12, 0x222cc0,12, 0x222d00,12, 0x222d40,12, 0x222d80,12, 0x222dc4,5, 0x222ddc,2, 0x222de8,1, 0x222dfc,1, 0x222e04,1, 0x222e18,3, 0x222e34,6, 0x222e50,3, 0x222e60,2, 0x222e70,1, 0x222e80,12, 0x222ec0,12, 0x222f00,12, 0x222f40,12, 0x222f80,12, 0x222fc4,5, 0x222fdc,2, 0x222fe8,1, 0x222ffc,26, 0x223080,1, 0x223088,8, 0x2230c0,6, 0x2230e0,1, 0x2230e8,2, 0x223104,36, 0x223200,25, 0x223280,1, 0x223288,8, 0x2232c0,6, 0x2232e0,1, 0x2232e8,2, 0x223304,36, 0x223400,25, 0x223480,1, 0x223488,8, 0x2234c0,6, 0x2234e0,1, 0x2234e8,2, 0x223504,36, 0x223600,25, 0x223680,1, 0x223688,8, 0x2236c0,6, 0x2236e0,1, 0x2236e8,2, 0x223704,36, 0x223800,25, 0x223880,1, 0x223888,8, 0x2238c0,6, 0x2238e0,1, 0x2238e8,2, 0x223904,36, 0x223a00,25, 0x223a80,1, 0x223a88,8, 0x223ac0,6, 0x223ae0,1, 0x223ae8,2, 0x223b04,36, 0x223c00,25, 0x223c80,1, 0x223c88,8, 0x223cc0,6, 0x223ce0,1, 0x223ce8,2, 0x223d04,36, 0x223e00,25, 0x223e80,1, 0x223e88,8, 0x223ec0,6, 0x223ee0,1, 0x223ee8,2, 0x223f04,36, 0x224000,2, 0x22400c,4, 0x224020,1, 0x2241c0,6, 0x2241e8,2, 0x228000,4, 0x228200,102, 0x228400,35, 0x228500,27, 0x228600,11, 0x228640,37, 0x2286e0,7, 0x228700,34, 0x22878c,20, 0x2287e0,3, 0x2287f0,14, 0x228840,1, 0x228850,9, 0x22887c,4, 0x228890,12, 0x2288d0,4, 0x228900,29, 0x229000,4, 0x229200,102, 0x229400,35, 0x229500,27, 0x229600,11, 0x229640,37, 0x2296e0,7, 0x229700,34, 0x22978c,20, 0x2297e0,3, 0x2297f0,14, 0x229840,1, 0x229850,9, 0x22987c,4, 0x229890,12, 0x2298d0,4, 0x229900,29, 0x22a000,4, 0x22a200,102, 0x22a400,35, 0x22a500,27, 0x22a600,11, 0x22a640,37, 0x22a6e0,7, 0x22a700,34, 0x22a78c,20, 0x22a7e0,3, 0x22a7f0,14, 0x22a840,1, 0x22a850,9, 0x22a87c,4, 0x22a890,12, 0x22a8d0,4, 0x22a900,29, 0x22b000,4, 0x22b200,102, 0x22b400,35, 0x22b500,27, 0x22b600,11, 0x22b640,37, 0x22b6e0,7, 0x22b700,34, 0x22b78c,20, 0x22b7e0,3, 0x22b7f0,14, 0x22b840,1, 0x22b850,9, 0x22b87c,4, 0x22b890,12, 0x22b8d0,4, 0x22b900,29, 0x22c000,4, 0x22c200,102, 0x22c400,35, 0x22c500,27, 0x22c600,11, 0x22c640,37, 0x22c6e0,7, 0x22c700,34, 0x22c78c,20, 0x22c7e0,3, 0x22c7f0,14, 0x22c840,1, 0x22c850,9, 0x22c87c,4, 0x22c890,12, 0x22c8d0,4, 0x22c900,29, 0x22d000,4, 0x22d200,102, 0x22d400,35, 0x22d500,27, 0x22d600,11, 0x22d640,37, 0x22d6e0,7, 0x22d700,34, 0x22d78c,20, 0x22d7e0,3, 0x22d7f0,14, 0x22d840,1, 0x22d850,9, 0x22d87c,4, 0x22d890,12, 0x22d8d0,4, 0x22d900,29, 0x22e000,4, 0x22e200,102, 0x22e400,35, 0x22e500,27, 0x22e600,11, 0x22e640,37, 0x22e6e0,7, 0x22e700,34, 0x22e78c,20, 0x22e7e0,3, 0x22e7f0,14, 0x22e840,1, 0x22e850,9, 0x22e87c,4, 0x22e890,12, 0x22e8d0,4, 0x22e900,29, 0x22f000,4, 0x22f200,102, 0x22f400,35, 0x22f500,27, 0x22f600,11, 0x22f640,37, 0x22f6e0,7, 0x22f700,34, 0x22f78c,20, 0x22f7e0,3, 0x22f7f0,14, 0x22f840,1, 0x22f850,9, 0x22f87c,4, 0x22f890,12, 0x22f8d0,4, 0x22f900,29, 0x230000,19, 0x230a00,10, 0x230a80,3, 0x231800,32, 0x2318b0,10, 0x2318dc,3, 0x231a00,32, 0x231ab0,10, 0x231adc,3, 0x231c00,21, 0x231c58,52, 0x231dc0,1, 0x231dd0,6, 0x231e00,24, 0x231e80,2, 0x231e90,1, 0x231e98,6, 0x231eb4,3, 0x231ec4,1, 0x231ed0,5, 0x231ee8,1, 0x231f00,16, 0x231f44,1, 0x231f50,3, 0x232000,5, 0x232020,3, 0x232080,8, 0x2320c0,14, 0x232100,3, 0x232110,14, 0x232150,14, 0x232200,5, 0x232220,3, 0x232280,8, 0x2322c0,14, 0x232300,3, 0x232310,14, 0x232350,14, 0x232400,5, 0x232420,3, 0x232480,8, 0x2324c0,14, 0x232500,3, 0x232510,14, 0x232550,14, 0x232600,5, 0x232620,3, 0x232680,8, 0x2326c0,14, 0x232700,3, 0x232710,14, 0x232750,14, 0x232800,5, 0x232820,3, 0x232880,8, 0x2328c0,14, 0x232900,3, 0x232910,14, 0x232950,14, 0x232a00,5, 0x232a20,3, 0x232a80,8, 0x232ac0,14, 0x232b00,3, 0x232b10,14, 0x232b50,14, 0x232c00,5, 0x232c20,3, 0x232c80,8, 0x232cc0,14, 0x232d00,3, 0x232d10,14, 0x232d50,14, 0x232e00,5, 0x232e20,3, 0x232e80,8, 0x232ec0,14, 0x232f00,3, 0x232f10,14, 0x232f50,14, 0x233000,5, 0x233020,3, 0x233080,8, 0x2330c0,14, 0x233100,3, 0x233110,14, 0x233150,14, 0x233200,5, 0x233220,3, 0x233280,8, 0x2332c0,14, 0x233300,3, 0x233310,14, 0x233350,14, 0x233400,5, 0x233420,3, 0x233480,8, 0x2334c0,14, 0x233500,3, 0x233510,14, 0x233550,14, 0x233600,5, 0x233620,3, 0x233680,8, 0x2336c0,14, 0x233700,3, 0x233710,14, 0x233750,14, 0x233800,5, 0x233820,3, 0x233880,8, 0x2338c0,14, 0x233900,3, 0x233910,14, 0x233950,14, 0x233a00,5, 0x233a20,3, 0x233a80,8, 0x233ac0,14, 0x233b00,3, 0x233b10,14, 0x233b50,14, 0x233c00,5, 0x233c20,3, 0x233c80,8, 0x233cc0,14, 0x233d00,3, 0x233d10,14, 0x233d50,14, 0x233e00,5, 0x233e20,3, 0x233e80,8, 0x233ec0,14, 0x233f00,3, 0x233f10,14, 0x233f50,14, 0x234000,25, 0x234080,1, 0x234088,8, 0x2340c0,6, 0x2340e0,1, 0x2340e8,2, 0x234104,27, 0x234200,25, 0x234280,1, 0x234288,8, 0x2342c0,6, 0x2342e0,1, 0x2342e8,2, 0x234304,27, 0x234400,25, 0x234480,1, 0x234488,8, 0x2344c0,6, 0x2344e0,1, 0x2344e8,2, 0x234504,27, 0x234600,25, 0x234680,1, 0x234688,8, 0x2346c0,6, 0x2346e0,1, 0x2346e8,2, 0x234704,27, 0x234800,25, 0x234880,1, 0x234888,8, 0x2348c0,6, 0x2348e0,1, 0x2348e8,2, 0x234904,27, 0x234a00,25, 0x234a80,1, 0x234a88,8, 0x234ac0,6, 0x234ae0,1, 0x234ae8,2, 0x234b04,27, 0x234c00,25, 0x234c80,1, 0x234c88,8, 0x234cc0,6, 0x234ce0,1, 0x234ce8,2, 0x234d04,27, 0x234e00,25, 0x234e80,1, 0x234e88,8, 0x234ec0,6, 0x234ee0,1, 0x234ee8,2, 0x234f04,27, 0x235000,25, 0x235080,1, 0x235088,8, 0x2350c0,6, 0x2350e0,1, 0x2350e8,2, 0x235104,27, 0x235200,25, 0x235280,1, 0x235288,8, 0x2352c0,6, 0x2352e0,1, 0x2352e8,2, 0x235304,27, 0x235400,25, 0x235480,1, 0x235488,8, 0x2354c0,6, 0x2354e0,1, 0x2354e8,2, 0x235504,27, 0x235600,25, 0x235680,1, 0x235688,8, 0x2356c0,6, 0x2356e0,1, 0x2356e8,2, 0x235704,27, 0x235800,25, 0x235880,1, 0x235888,8, 0x2358c0,6, 0x2358e0,1, 0x2358e8,2, 0x235904,27, 0x235a00,25, 0x235a80,1, 0x235a88,8, 0x235ac0,6, 0x235ae0,1, 0x235ae8,2, 0x235b04,27, 0x235c00,25, 0x235c80,1, 0x235c88,8, 0x235cc0,6, 0x235ce0,1, 0x235ce8,2, 0x235d04,27, 0x235e00,25, 0x235e80,1, 0x235e88,8, 0x235ec0,6, 0x235ee0,1, 0x235ee8,2, 0x235f04,27, 0x238004,1, 0x23800c,7, 0x238044,1, 0x23804c,7, 0x238084,1, 0x23808c,7, 0x2380c4,1, 0x2380cc,7, 0x238104,1, 0x23810c,3, 0x238124,1, 0x23812c,3, 0x238144,1, 0x23814c,3, 0x238164,1, 0x23816c,3, 0x238184,1, 0x23818c,7, 0x2381d4,1, 0x2381dc,3, 0x238200,25, 0x238280,14, 0x2382c0,5, 0x238304,1, 0x23830c,7, 0x238344,1, 0x23834c,7, 0x238384,1, 0x23838c,7, 0x2383c4,1, 0x2383cc,7, 0x238404,1, 0x23840c,3, 0x238424,1, 0x23842c,3, 0x238444,1, 0x23844c,3, 0x238464,1, 0x23846c,3, 0x238484,1, 0x23848c,7, 0x2384d4,1, 0x2384dc,3, 0x238500,25, 0x238580,14, 0x2385c0,5, 0x238604,1, 0x23860c,7, 0x238644,1, 0x23864c,7, 0x238684,1, 0x23868c,7, 0x2386c4,1, 0x2386cc,7, 0x238704,1, 0x23870c,3, 0x238724,1, 0x23872c,3, 0x238744,1, 0x23874c,3, 0x238764,1, 0x23876c,3, 0x238784,1, 0x23878c,7, 0x2387d4,1, 0x2387dc,3, 0x238800,25, 0x238880,14, 0x2388c0,5, 0x238904,1, 0x23890c,7, 0x238944,1, 0x23894c,7, 0x238984,1, 0x23898c,7, 0x2389c4,1, 0x2389cc,7, 0x238a04,1, 0x238a0c,3, 0x238a24,1, 0x238a2c,3, 0x238a44,1, 0x238a4c,3, 0x238a64,1, 0x238a6c,3, 0x238a84,1, 0x238a8c,7, 0x238ad4,1, 0x238adc,3, 0x238b00,25, 0x238b80,14, 0x238bc0,5, 0x238c04,1, 0x238c0c,7, 0x238c44,1, 0x238c4c,7, 0x238c84,1, 0x238c8c,7, 0x238cc4,1, 0x238ccc,7, 0x238d04,1, 0x238d0c,3, 0x238d24,1, 0x238d2c,3, 0x238d44,1, 0x238d4c,3, 0x238d64,1, 0x238d6c,3, 0x238d84,1, 0x238d8c,7, 0x238dd4,1, 0x238ddc,3, 0x238e00,25, 0x238e80,14, 0x238ec0,5, 0x238f04,1, 0x238f0c,7, 0x238f44,1, 0x238f4c,7, 0x238f84,1, 0x238f8c,7, 0x238fc4,1, 0x238fcc,7, 0x239004,1, 0x23900c,3, 0x239024,1, 0x23902c,3, 0x239044,1, 0x23904c,3, 0x239064,1, 0x23906c,3, 0x239084,1, 0x23908c,7, 0x2390d4,1, 0x2390dc,3, 0x239100,25, 0x239180,14, 0x2391c0,5, 0x239204,1, 0x23920c,7, 0x239244,1, 0x23924c,7, 0x239284,1, 0x23928c,7, 0x2392c4,1, 0x2392cc,7, 0x239304,1, 0x23930c,3, 0x239324,1, 0x23932c,3, 0x239344,1, 0x23934c,3, 0x239364,1, 0x23936c,3, 0x239384,1, 0x23938c,7, 0x2393d4,1, 0x2393dc,3, 0x239400,25, 0x239480,14, 0x2394c0,5, 0x239504,1, 0x23950c,7, 0x239544,1, 0x23954c,7, 0x239584,1, 0x23958c,7, 0x2395c4,1, 0x2395cc,7, 0x239604,1, 0x23960c,3, 0x239624,1, 0x23962c,3, 0x239644,1, 0x23964c,3, 0x239664,1, 0x23966c,3, 0x239684,1, 0x23968c,7, 0x2396d4,1, 0x2396dc,3, 0x239700,25, 0x239780,14, 0x2397c0,5, 0x239804,1, 0x239838,18, 0x239900,3, 0x239940,1, 0x23a000,4, 0x23a080,27, 0x23a104,1, 0x23a110,12, 0x23a144,1, 0x23a15c,13, 0x23a194,6, 0x23a1b0,3, 0x23a200,4, 0x23a280,27, 0x23a304,1, 0x23a310,12, 0x23a344,1, 0x23a35c,13, 0x23a394,6, 0x23a3b0,3, 0x23a400,4, 0x23a480,27, 0x23a504,1, 0x23a510,12, 0x23a544,1, 0x23a55c,13, 0x23a594,6, 0x23a5b0,3, 0x23a600,4, 0x23a680,27, 0x23a704,1, 0x23a710,12, 0x23a744,1, 0x23a75c,13, 0x23a794,6, 0x23a7b0,3, 0x23a800,4, 0x23a880,27, 0x23a904,1, 0x23a910,12, 0x23a944,1, 0x23a95c,13, 0x23a994,6, 0x23a9b0,3, 0x23aa00,4, 0x23aa80,27, 0x23ab04,1, 0x23ab10,12, 0x23ab44,1, 0x23ab5c,13, 0x23ab94,6, 0x23abb0,3, 0x23ac00,4, 0x23ac80,27, 0x23ad04,1, 0x23ad10,12, 0x23ad44,1, 0x23ad5c,13, 0x23ad94,6, 0x23adb0,3, 0x23ae00,4, 0x23ae80,27, 0x23af04,1, 0x23af10,12, 0x23af44,1, 0x23af5c,13, 0x23af94,6, 0x23afb0,3, 0x23b000,4, 0x23b040,12, 0x23b080,5, 0x23b100,4, 0x23b140,12, 0x23b180,5, 0x23b200,4, 0x23b240,12, 0x23b280,5, 0x23b300,4, 0x23b340,12, 0x23b380,5, 0x23b400,4, 0x23b440,12, 0x23b480,5, 0x23b500,4, 0x23b540,12, 0x23b580,5, 0x23b600,4, 0x23b640,12, 0x23b680,5, 0x23b700,4, 0x23b740,12, 0x23b780,5, 0x23b800,4, 0x23b840,12, 0x23b880,5, 0x23b900,4, 0x23b940,12, 0x23b980,5, 0x23ba00,4, 0x23ba40,12, 0x23ba80,5, 0x23bb00,4, 0x23bb40,12, 0x23bb80,5, 0x23bc00,4, 0x23bc40,12, 0x23bc80,5, 0x23bd00,4, 0x23bd40,12, 0x23bd80,5, 0x23be00,4, 0x23be40,12, 0x23be80,5, 0x23bf00,4, 0x23bf40,12, 0x23bf80,5, 0x23c000,4, 0x23c040,12, 0x23c080,5, 0x23c100,4, 0x23c140,12, 0x23c180,5, 0x23c200,4, 0x23c240,12, 0x23c280,5, 0x23c300,4, 0x23c340,12, 0x23c380,5, 0x23c400,4, 0x23c440,12, 0x23c480,5, 0x23c500,4, 0x23c540,12, 0x23c580,5, 0x23c600,4, 0x23c640,12, 0x23c680,5, 0x23c700,4, 0x23c740,12, 0x23c780,5, 0x23c800,4, 0x23c840,12, 0x23c880,5, 0x23c900,4, 0x23c940,12, 0x23c980,5, 0x23ca00,14, 0x23ca40,2, 0x23ca4c,1, 0x23d000,276, 0x23d800,21, 0x23d900,11, 0x23d930,12, 0x23d968,3, 0x23d980,11, 0x23d9b0,12, 0x23d9e8,3, 0x23da00,33, 0x23daa0,12, 0x23db00,9, 0x23db40,16, 0x23dc00,13, 0x23dc40,13, 0x23dc80,13, 0x23dcc0,13, 0x23dd00,13, 0x23dd40,13, 0x23dd80,13, 0x23ddc0,13, 0x23de00,13, 0x23de40,13, 0x23de80,13, 0x23dec0,13, 0x23df00,13, 0x23df40,13, 0x23df80,13, 0x23dfc0,13, 0x23e004,6, 0x23e024,6, 0x23e044,6, 0x23e064,6, 0x23e084,6, 0x23e0a4,6, 0x23e0c4,6, 0x23e0e4,6, 0x23e104,6, 0x23e204,6, 0x23e224,6, 0x23e244,6, 0x23e264,6, 0x23e284,6, 0x23e2a4,6, 0x23e2c4,6, 0x23e2e4,6, 0x23e304,6, 0x23e400,24, 0x23e600,19, 0x23e680,19, 0x23e700,19, 0x23e780,19, 0x23e800,19, 0x23e880,19, 0x23e900,19, 0x23e980,19, 0x23ea00,66, 0x23eb80,58, 0x23ec70,26, 0x23ed40,5, 0x23ed60,15, 0x23eda0,3, 0x23ee00,29, 0x23ee80,2, 0x23ee90,7, 0x23eebc,7, 0x23eee8,2, 0x23ef00,43, 0x23f000,83, 0x23fa00,10, 0x23fa80,3, 0x240000,6, 0x240200,91, 0x240800,13, 0x240880,1, 0x240888,8, 0x2408c0,6, 0x2408e0,1, 0x2408e8,2, 0x240904,8, 0x240a00,4, 0x240a40,13, 0x240a80,4, 0x240ac0,13, 0x240b00,4, 0x240b40,13, 0x240b80,4, 0x240bc0,13, 0x240c00,16, 0x240d00,1, 0x240d08,4, 0x240d20,1, 0x240d80,4, 0x241000,1, 0x241080,22, 0x241100,22, 0x241200,1, 0x241280,22, 0x241300,22, 0x241400,1, 0x241480,22, 0x241500,22, 0x241600,5, 0x241618,1, 0x241640,12, 0x241680,3, 0x241800,1, 0x241880,22, 0x241900,22, 0x241a00,1, 0x241a80,22, 0x241b00,22, 0x241c00,1, 0x241c80,22, 0x241d00,22, 0x241e00,5, 0x241e18,1, 0x241e40,12, 0x241e80,3, 0x242000,3, 0x242040,12, 0x242080,1, 0x242090,2, 0x2420a0,1, 0x2420c0,1, 0x242204,8, 0x242240,10, 0x242280,1, 0x242804,1, 0x242818,10, 0x242844,1, 0x242854,5, 0x243000,200, 0x243400,1, 0x243800,13, 0x243880,1, 0x243888,8, 0x2438c0,6, 0x2438e0,1, 0x2438e8,2, 0x243904,2, 0x244000,3, 0x244040,12, 0x244080,1, 0x244090,2, 0x2440a0,1, 0x2440c0,1, 0x244204,8, 0x244240,10, 0x244280,1, 0x244804,1, 0x244818,10, 0x244844,1, 0x244854,5, 0x245000,200, 0x245400,1, 0x245800,13, 0x245880,1, 0x245888,8, 0x2458c0,6, 0x2458e0,1, 0x2458e8,2, 0x245904,2, 0x246000,19, 0x247004,1, 0x247080,32, 0x247104,1, 0x247180,32, 0x247204,1, 0x247280,32, 0x247304,1, 0x247380,34, 0x247504,1, 0x247580,33, 0x248004,1, 0x248020,1, 0x248040,2, 0x248050,2, 0x248100,1, 0x248110,2, 0x248124,1, 0x24812c,10, 0x248158,4, 0x248170,5, 0x248190,2, 0x2481a4,1, 0x2481ac,10, 0x2481d8,4, 0x2481f0,5, 0x248210,2, 0x248224,1, 0x24822c,10, 0x248258,4, 0x248270,5, 0x248290,2, 0x2482a4,1, 0x2482ac,10, 0x2482d8,4, 0x2482f0,5, 0x248310,2, 0x248340,5, 0x248358,4, 0x248370,4, 0x248a80,2, 0x248a8c,2, 0x248b00,7, 0x248b20,7, 0x248b40,7, 0x248b60,7, 0x248b80,7, 0x248ba0,7, 0x248bc0,7, 0x248be0,7, 0x248c00,7, 0x248c20,7, 0x248c40,7, 0x248c60,7, 0x248c80,7, 0x248ca0,7, 0x248cc0,7, 0x248ce0,7, 0x248d00,7, 0x248d20,7, 0x249000,8, 0x249040,2, 0x249070,2, 0x249200,10, 0x249304,1, 0x249354,68, 0x249480,1, 0x249488,8, 0x2494c0,6, 0x2494e0,1, 0x2494e8,2, 0x249504,43, 0x249800,120, 0x2499e4,5, 0x249a00,3, 0x24a000,19, 0x24a800,14, 0x24a840,14, 0x24a880,28, 0x24aa00,10, 0x24aa80,3, 0x24aac0,1, 0x24ab00,6, 0x24c000,9, 0x24c028,1, 0x24c040,9, 0x24c068,1, 0x24c080,9, 0x24c0a8,1, 0x24c0c0,9, 0x24c0e8,1, 0x24c100,9, 0x24c128,1, 0x24c140,9, 0x24c168,1, 0x24c180,9, 0x24c1a8,1, 0x24c1c0,9, 0x24c1e8,1, 0x24c200,9, 0x24c228,1, 0x24c240,9, 0x24c268,1, 0x24c280,9, 0x24c2a8,1, 0x24c2c0,9, 0x24c2e8,1, 0x24c300,9, 0x24c328,1, 0x24c340,9, 0x24c368,1, 0x24c380,9, 0x24c3a8,1, 0x24c3c0,9, 0x24c3e8,1, 0x24c400,9, 0x24c428,1, 0x24c440,9, 0x24c468,1, 0x24c480,9, 0x24c4a8,1, 0x24c4c0,9, 0x24c4e8,1, 0x24c500,9, 0x24c528,1, 0x24c540,9, 0x24c568,1, 0x24c580,9, 0x24c5a8,1, 0x24c5c0,9, 0x24c5e8,1, 0x24c600,9, 0x24c628,1, 0x24c640,9, 0x24c668,1, 0x24c680,9, 0x24c6a8,1, 0x24c6c0,9, 0x24c6e8,1, 0x24c700,9, 0x24c728,1, 0x24c740,9, 0x24c768,1, 0x24c780,9, 0x24c7a8,1, 0x24c7c0,9, 0x24c7e8,1, 0x24c800,9, 0x24c828,1, 0x24c840,9, 0x24c868,1, 0x24c880,9, 0x24c8a8,1, 0x24c8c0,9, 0x24c8e8,1, 0x24c940,9, 0x24c968,1, 0x24ca00,43, 0x24cb00,72, 0x24cd00,2, 0x24cd80,1, 0x24cd90,2, 0x24cda0,2, 0x24ce00,13, 0x24ce80,1, 0x24ce88,8, 0x24cec0,6, 0x24cee0,1, 0x24cee8,2, 0x24cf04,1, 0x24d000,51, 0x260000,10, 0x260080,3, 0x260100,6, 0x261000,7, 0x261200,1, 0x261400,3, 0x261410,3, 0x261420,3, 0x261430,3, 0x261440,3, 0x261450,3, 0x261460,3, 0x261470,3, 0x261600,11, 0x261800,136, 0x262000,10, 0x262080,3, 0x262100,6, 0x263000,7, 0x263200,1, 0x263400,3, 0x263410,3, 0x263420,3, 0x263430,3, 0x263440,3, 0x263450,3, 0x263460,3, 0x263470,3, 0x263600,11, 0x263800,136, 0x264000,10, 0x264080,3, 0x264100,6, 0x265000,7, 0x265200,1, 0x265400,3, 0x265410,3, 0x265420,3, 0x265430,3, 0x265440,3, 0x265450,3, 0x265460,3, 0x265470,3, 0x265600,11, 0x265800,136, 0x266000,10, 0x266080,3, 0x266100,6, 0x267000,7, 0x267200,1, 0x267400,3, 0x267410,3, 0x267420,3, 0x267430,3, 0x267440,3, 0x267450,3, 0x267460,3, 0x267470,3, 0x267600,11, 0x267800,136, 0x268000,10, 0x268080,3, 0x268100,6, 0x269000,1, 0x269200,2, 0x2692c0,1, 0x269400,19, 0x26a000,10, 0x26a080,3, 0x26a100,6, 0x26b000,1, 0x26b200,2, 0x26b2c0,1, 0x26b400,19, 0x280000,2, 0x280010,41, 0x2800b8,3, 0x280100,9, 0x280128,1, 0x280140,9, 0x280168,1, 0x280180,6, 0x2801a0,6, 0x2801c0,6, 0x2801e0,4, 0x280400,9, 0x280428,1, 0x280440,2, 0x28044c,3, 0x280464,1, 0x280474,22, 0x280504,1, 0x28052c,53, 0x280604,1, 0x280670,36, 0x280708,3, 0x280800,3, 0x280814,10, 0x280840,11, 0x280870,35, 0x280900,8, 0x280924,5, 0x280980,2, 0x28098c,2, 0x2809a0,2, 0x2809c0,1, 0x280a00,12, 0x280a34,22, 0x280ac0,7, 0x280b00,8, 0x280b24,5, 0x280b80,2, 0x280b8c,2, 0x280ba0,2, 0x280bc0,1, 0x280c00,12, 0x280c40,12, 0x280c80,12, 0x280cc0,12, 0x280d00,12, 0x280d40,12, 0x280d80,12, 0x280dc0,12, 0x280e00,1, 0x280e08,13, 0x280e40,12, 0x280e80,3, 0x280f00,7, 0x280f44,8, 0x280f80,6, 0x280fa0,2, 0x281000,9, 0x281040,9, 0x281080,9, 0x2810c0,9, 0x281104,1, 0x281110,5, 0x281128,2, 0x281134,1, 0x28113c,5, 0x281168,1, 0x281170,2, 0x281200,8, 0x281240,4, 0x281260,8, 0x281300,8, 0x281330,2, 0x281340,7, 0x281380,3, 0x281390,3, 0x2813a0,3, 0x2813b0,3, 0x2813c0,5, 0x281400,69, 0x281600,4, 0x281640,13, 0x281680,7, 0x2816a0,5, 0x2816c0,1, 0x282000,25, 0x282080,1, 0x282088,8, 0x2820c0,6, 0x2820e0,1, 0x2820e8,2, 0x282104,5, 0x282200,11, 0x282240,1, 0x282248,1, 0x282400,4, 0x283000,35, 0x283a00,10, 0x283a80,3, 0x284000,8, 0x284024,2, 0x284040,2, 0x284060,6, 0x284080,1, 0x2840f0,12, 0x284124,2, 0x284140,2, 0x284160,6, 0x284180,1, 0x2841f0,12, 0x284224,2, 0x284240,2, 0x284260,6, 0x284280,1, 0x2842f0,12, 0x284324,2, 0x284340,2, 0x284360,6, 0x284380,1, 0x2843f0,4, 0x284410,4, 0x2845f8,2, 0x285004,1, 0x285040,16, 0x285204,3, 0x285224,1, 0x28522c,1, 0x285400,48, 0x2854c4,2, 0x2854d0,3, 0x285600,37, 0x285700,17, 0x285748,2, 0x285780,16, 0x285800,25, 0x285880,1, 0x285888,8, 0x2858c0,6, 0x2858e0,1, 0x2858e8,2, 0x285904,14, 0x285a00,4, 0x285b00,60, 0x285c00,4, 0x285c40,12, 0x285c80,5, 0x285ca0,1, 0x285cb0,1, 0x286000,3, 0x286010,3, 0x286020,3, 0x286030,3, 0x286040,3, 0x286050,3, 0x286060,3, 0x286070,3, 0x286080,8, 0x2860e0,1, 0x286100,1, 0x286140,3, 0x286160,8, 0x286184,11, 0x2861c0,1, 0x2862c0,1, 0x2862c8,14, 0x288000,1, 0x288008,3, 0x288018,3, 0x288030,7, 0x288070,2, 0x288080,1, 0x288088,3, 0x288098,3, 0x2880b0,7, 0x2880f0,2, 0x288100,1, 0x288108,3, 0x288118,3, 0x288130,7, 0x288170,2, 0x288180,1, 0x288188,3, 0x288198,3, 0x2881b0,7, 0x2881f0,2, 0x288200,3, 0x288210,3, 0x288220,3, 0x288230,3, 0x288240,10, 0x28826c,1, 0x288280,28, 0x2882f4,8, 0x288320,27, 0x2883dc,43, 0x288490,3, 0x2884a0,2, 0x2884b0,3, 0x2884c0,2, 0x2884d0,3, 0x2884e0,2, 0x2884f0,3, 0x288500,2, 0x288510,3, 0x288520,2, 0x288530,3, 0x288540,2, 0x288550,3, 0x288560,2, 0x288570,3, 0x288580,64, 0x288780,18, 0x2887d0,4, 0x288800,13, 0x288880,1, 0x288888,8, 0x2888c0,6, 0x2888e0,1, 0x2888e8,2, 0x288904,44, 0x288a00,4, 0x288a14,1, 0x288a1c,1, 0x288a24,1, 0x288a2c,1, 0x288a34,1, 0x288a3c,7, 0x288a60,6, 0x288a80,36, 0x288b40,15, 0x288b80,4, 0x288bc0,11, 0x288c00,9, 0x288c40,9, 0x288c80,9, 0x288cc0,9, 0x288d00,16, 0x288d54,1, 0x288d5c,1, 0x288d64,1, 0x288d6c,1, 0x288d80,26, 0x288e00,26, 0x288e80,26, 0x288f00,26, 0x28a000,1, 0x28a00c,4, 0x28a020,4, 0x28a038,3, 0x28a0a8,38, 0x28a180,64, 0x28a2c0,8, 0x28a2f8,317, 0x28a804,1, 0x28a810,6, 0x28a884,1, 0x28a894,5, 0x28a904,1, 0x28a92c,21, 0x28aa04,1, 0x28aa0c,1, 0x28aa14,1, 0x28aa1c,1, 0x28aa24,1, 0x28aa2c,1, 0x28aa34,1, 0x28aa3c,13, 0x28aa78,8, 0x28ab04,5, 0x28ab44,1, 0x28ab4c,1, 0x28ab54,1, 0x28ab60,3, 0x28ab70,5, 0x28ab88,3, 0x28ab98,1, 0x28abc0,4, 0x28b000,34, 0x28b100,13, 0x28b140,15, 0x28b180,40, 0x28b240,11, 0x28b280,11, 0x28b300,10, 0x28b380,4, 0x28b3c0,3, 0x28b3d0,6, 0x28b400,28, 0x28b480,26, 0x28b500,20, 0x28b580,18, 0x28c000,19, 0x28ca00,10, 0x28ca80,3, 0x28cb00,6, 0x290000,3, 0x290010,1, 0x290030,13, 0x29006c,4, 0x290100,40, 0x2901fc,4, 0x290210,1, 0x290230,13, 0x29026c,4, 0x290300,40, 0x2903fc,4, 0x290410,1, 0x290430,13, 0x29046c,4, 0x290500,40, 0x2905fc,4, 0x290610,1, 0x290630,13, 0x29066c,4, 0x290700,40, 0x2907fc,9, 0x291000,19, 0x291a00,10, 0x291a80,3, 0x292000,6, 0x29201c,12, 0x292080,1, 0x292088,1, 0x292090,2, 0x2920a0,2, 0x292100,1, 0x29210c,2, 0x29211c,2, 0x29212c,2, 0x29213c,1, 0x292180,2, 0x29218c,1, 0x292200,27, 0x292300,7, 0x292320,2, 0x29232c,1, 0x292380,10, 0x2923c0,1, 0x292800,109, 0x2929c0,5, 0x292a00,109, 0x292bc0,5, 0x292c00,109, 0x292dc0,5, 0x293000,3, 0x293014,16, 0x293074,1, 0x293080,3, 0x293094,16, 0x2930f4,1, 0x293100,3, 0x293114,16, 0x293174,1, 0x293180,3, 0x293194,16, 0x2931f4,1, 0x293400,10, 0x293440,10, 0x293480,10, 0x2934c0,10, 0x293500,1, 0x293600,1, 0x293680,16, 0x293700,6, 0x293720,6, 0x293740,6, 0x293760,6, 0x293780,6, 0x2937a0,6, 0x2937c0,6, 0x2937e0,6, 0x294000,60, 0x294100,60, 0x294200,32, 0x294800,4, 0x294900,53, 0x294a00,4, 0x294a20,2, 0x295000,25, 0x295080,1, 0x295088,8, 0x2950c0,6, 0x2950e0,1, 0x2950e8,2, 0x295104,5, 0x295200,11, 0x295240,1, 0x295248,1, 0x295400,4, 0x298000,2, 0x298010,41, 0x2980b8,3, 0x298100,9, 0x298128,1, 0x298140,9, 0x298168,1, 0x298180,6, 0x2981a0,6, 0x2981c0,6, 0x2981e0,4, 0x298400,9, 0x298428,1, 0x298440,2, 0x29844c,3, 0x298464,1, 0x298474,22, 0x298504,1, 0x29852c,53, 0x298604,1, 0x298670,36, 0x298708,3, 0x298800,3, 0x298814,10, 0x298840,11, 0x298870,35, 0x298900,8, 0x298924,5, 0x298980,2, 0x29898c,2, 0x2989a0,2, 0x2989c0,1, 0x298a00,12, 0x298a34,22, 0x298ac0,7, 0x298b00,8, 0x298b24,5, 0x298b80,2, 0x298b8c,2, 0x298ba0,2, 0x298bc0,1, 0x298c00,12, 0x298c40,12, 0x298c80,12, 0x298cc0,12, 0x298d00,12, 0x298d40,12, 0x298d80,12, 0x298dc0,12, 0x298e00,1, 0x298e08,13, 0x298e40,12, 0x298e80,3, 0x298f00,7, 0x298f44,8, 0x298f80,6, 0x298fa0,2, 0x299000,9, 0x299040,9, 0x299080,9, 0x2990c0,9, 0x299104,1, 0x299110,5, 0x299128,2, 0x299134,1, 0x29913c,5, 0x299168,1, 0x299170,2, 0x299200,8, 0x299240,4, 0x299260,8, 0x299300,8, 0x299330,2, 0x299340,7, 0x299380,3, 0x299390,3, 0x2993a0,3, 0x2993b0,3, 0x2993c0,5, 0x299400,69, 0x299600,4, 0x299640,13, 0x299680,7, 0x2996a0,5, 0x2996c0,1, 0x29a000,25, 0x29a080,1, 0x29a088,8, 0x29a0c0,6, 0x29a0e0,1, 0x29a0e8,2, 0x29a104,5, 0x29a200,11, 0x29a240,1, 0x29a248,1, 0x29a400,4, 0x29b000,35, 0x29ba00,10, 0x29ba80,3, 0x29c000,8, 0x29c024,2, 0x29c040,2, 0x29c060,6, 0x29c080,1, 0x29c0f0,12, 0x29c124,2, 0x29c140,2, 0x29c160,6, 0x29c180,1, 0x29c1f0,12, 0x29c224,2, 0x29c240,2, 0x29c260,6, 0x29c280,1, 0x29c2f0,12, 0x29c324,2, 0x29c340,2, 0x29c360,6, 0x29c380,1, 0x29c3f0,4, 0x29c410,4, 0x29c5f8,2, 0x29d004,1, 0x29d040,16, 0x29d204,3, 0x29d224,1, 0x29d22c,1, 0x29d400,48, 0x29d4c4,2, 0x29d4d0,3, 0x29d600,37, 0x29d700,17, 0x29d748,2, 0x29d780,16, 0x29d800,25, 0x29d880,1, 0x29d888,8, 0x29d8c0,6, 0x29d8e0,1, 0x29d8e8,2, 0x29d904,14, 0x29da00,4, 0x29db00,60, 0x29dc00,4, 0x29dc40,12, 0x29dc80,5, 0x29dca0,1, 0x29dcb0,1, 0x29e000,3, 0x29e010,3, 0x29e020,3, 0x29e030,3, 0x29e040,3, 0x29e050,3, 0x29e060,3, 0x29e070,3, 0x29e080,8, 0x29e0e0,1, 0x29e100,1, 0x29e140,3, 0x29e160,8, 0x29e184,11, 0x29e1c0,1, 0x29e2c0,1, 0x29e2c8,14, 0x2a0000,1, 0x2a0008,3, 0x2a0018,3, 0x2a0030,7, 0x2a0070,2, 0x2a0080,1, 0x2a0088,3, 0x2a0098,3, 0x2a00b0,7, 0x2a00f0,2, 0x2a0100,1, 0x2a0108,3, 0x2a0118,3, 0x2a0130,7, 0x2a0170,2, 0x2a0180,1, 0x2a0188,3, 0x2a0198,3, 0x2a01b0,7, 0x2a01f0,2, 0x2a0200,3, 0x2a0210,3, 0x2a0220,3, 0x2a0230,3, 0x2a0240,10, 0x2a026c,1, 0x2a0280,28, 0x2a02f4,8, 0x2a0320,27, 0x2a03dc,43, 0x2a0490,3, 0x2a04a0,2, 0x2a04b0,3, 0x2a04c0,2, 0x2a04d0,3, 0x2a04e0,2, 0x2a04f0,3, 0x2a0500,2, 0x2a0510,3, 0x2a0520,2, 0x2a0530,3, 0x2a0540,2, 0x2a0550,3, 0x2a0560,2, 0x2a0570,3, 0x2a0580,64, 0x2a0780,18, 0x2a07d0,4, 0x2a0800,13, 0x2a0880,1, 0x2a0888,8, 0x2a08c0,6, 0x2a08e0,1, 0x2a08e8,2, 0x2a0904,44, 0x2a0a00,4, 0x2a0a14,1, 0x2a0a1c,1, 0x2a0a24,1, 0x2a0a2c,1, 0x2a0a34,1, 0x2a0a3c,7, 0x2a0a60,6, 0x2a0a80,36, 0x2a0b40,15, 0x2a0b80,4, 0x2a0bc0,11, 0x2a0c00,9, 0x2a0c40,9, 0x2a0c80,9, 0x2a0cc0,9, 0x2a0d00,16, 0x2a0d54,1, 0x2a0d5c,1, 0x2a0d64,1, 0x2a0d6c,1, 0x2a0d80,26, 0x2a0e00,26, 0x2a0e80,26, 0x2a0f00,26, 0x2a2000,1, 0x2a200c,4, 0x2a2020,4, 0x2a2038,3, 0x2a20a8,38, 0x2a2180,64, 0x2a22c0,8, 0x2a22f8,317, 0x2a2804,1, 0x2a2810,6, 0x2a2884,1, 0x2a2894,5, 0x2a2904,1, 0x2a292c,21, 0x2a2a04,1, 0x2a2a0c,1, 0x2a2a14,1, 0x2a2a1c,1, 0x2a2a24,1, 0x2a2a2c,1, 0x2a2a34,1, 0x2a2a3c,13, 0x2a2a78,8, 0x2a2b04,5, 0x2a2b44,1, 0x2a2b4c,1, 0x2a2b54,1, 0x2a2b60,3, 0x2a2b70,5, 0x2a2b88,3, 0x2a2b98,1, 0x2a2bc0,4, 0x2a3000,34, 0x2a3100,13, 0x2a3140,15, 0x2a3180,40, 0x2a3240,11, 0x2a3280,11, 0x2a3300,10, 0x2a3380,4, 0x2a33c0,3, 0x2a33d0,6, 0x2a3400,28, 0x2a3480,26, 0x2a3500,20, 0x2a3580,18, 0x2a4000,19, 0x2a4a00,10, 0x2a4a80,3, 0x2a4b00,6, 0x2a8000,3, 0x2a8010,1, 0x2a8030,13, 0x2a806c,4, 0x2a8100,40, 0x2a81fc,4, 0x2a8210,1, 0x2a8230,13, 0x2a826c,4, 0x2a8300,40, 0x2a83fc,4, 0x2a8410,1, 0x2a8430,13, 0x2a846c,4, 0x2a8500,40, 0x2a85fc,4, 0x2a8610,1, 0x2a8630,13, 0x2a866c,4, 0x2a8700,40, 0x2a87fc,9, 0x2a9000,19, 0x2a9a00,10, 0x2a9a80,3, 0x2aa000,6, 0x2aa01c,12, 0x2aa080,1, 0x2aa088,1, 0x2aa090,2, 0x2aa0a0,2, 0x2aa100,1, 0x2aa10c,2, 0x2aa11c,2, 0x2aa12c,2, 0x2aa13c,1, 0x2aa180,2, 0x2aa18c,1, 0x2aa200,27, 0x2aa300,7, 0x2aa320,2, 0x2aa32c,1, 0x2aa380,10, 0x2aa3c0,1, 0x2aa800,109, 0x2aa9c0,5, 0x2aaa00,109, 0x2aabc0,5, 0x2aac00,109, 0x2aadc0,5, 0x2ab000,3, 0x2ab014,16, 0x2ab074,1, 0x2ab080,3, 0x2ab094,16, 0x2ab0f4,1, 0x2ab100,3, 0x2ab114,16, 0x2ab174,1, 0x2ab180,3, 0x2ab194,16, 0x2ab1f4,1, 0x2ab400,10, 0x2ab440,10, 0x2ab480,10, 0x2ab4c0,10, 0x2ab500,1, 0x2ab600,1, 0x2ab680,16, 0x2ab700,6, 0x2ab720,6, 0x2ab740,6, 0x2ab760,6, 0x2ab780,6, 0x2ab7a0,6, 0x2ab7c0,6, 0x2ab7e0,6, 0x2ac000,60, 0x2ac100,60, 0x2ac200,32, 0x2ac800,4, 0x2ac900,53, 0x2aca00,4, 0x2aca20,2, 0x2ad000,25, 0x2ad080,1, 0x2ad088,8, 0x2ad0c0,6, 0x2ad0e0,1, 0x2ad0e8,2, 0x2ad104,5, 0x2ad200,11, 0x2ad240,1, 0x2ad248,1, 0x2ad400,4, 0x2b0000,2, 0x2b0010,41, 0x2b00b8,3, 0x2b0100,9, 0x2b0128,1, 0x2b0140,9, 0x2b0168,1, 0x2b0180,6, 0x2b01a0,6, 0x2b01c0,6, 0x2b01e0,4, 0x2b0400,9, 0x2b0428,1, 0x2b0440,2, 0x2b044c,3, 0x2b0464,1, 0x2b0474,22, 0x2b0504,1, 0x2b052c,53, 0x2b0604,1, 0x2b0670,36, 0x2b0708,3, 0x2b0800,3, 0x2b0814,10, 0x2b0840,11, 0x2b0870,35, 0x2b0900,8, 0x2b0924,5, 0x2b0980,2, 0x2b098c,2, 0x2b09a0,2, 0x2b09c0,1, 0x2b0a00,12, 0x2b0a34,22, 0x2b0ac0,7, 0x2b0b00,8, 0x2b0b24,5, 0x2b0b80,2, 0x2b0b8c,2, 0x2b0ba0,2, 0x2b0bc0,1, 0x2b0c00,12, 0x2b0c40,12, 0x2b0c80,12, 0x2b0cc0,12, 0x2b0d00,12, 0x2b0d40,12, 0x2b0d80,12, 0x2b0dc0,12, 0x2b0e00,1, 0x2b0e08,13, 0x2b0e40,12, 0x2b0e80,3, 0x2b0f00,7, 0x2b0f44,8, 0x2b0f80,6, 0x2b0fa0,2, 0x2b1000,9, 0x2b1040,9, 0x2b1080,9, 0x2b10c0,9, 0x2b1104,1, 0x2b1110,5, 0x2b1128,2, 0x2b1134,1, 0x2b113c,5, 0x2b1168,1, 0x2b1170,2, 0x2b1200,8, 0x2b1240,4, 0x2b1260,8, 0x2b1300,8, 0x2b1330,2, 0x2b1340,7, 0x2b1380,3, 0x2b1390,3, 0x2b13a0,3, 0x2b13b0,3, 0x2b13c0,5, 0x2b1400,69, 0x2b1600,4, 0x2b1640,13, 0x2b1680,7, 0x2b16a0,5, 0x2b16c0,1, 0x2b2000,25, 0x2b2080,1, 0x2b2088,8, 0x2b20c0,6, 0x2b20e0,1, 0x2b20e8,2, 0x2b2104,5, 0x2b2200,11, 0x2b2240,1, 0x2b2248,1, 0x2b2400,4, 0x2b3000,35, 0x2b3a00,10, 0x2b3a80,3, 0x2b4000,8, 0x2b4024,2, 0x2b4040,2, 0x2b4060,6, 0x2b4080,1, 0x2b40f0,12, 0x2b4124,2, 0x2b4140,2, 0x2b4160,6, 0x2b4180,1, 0x2b41f0,12, 0x2b4224,2, 0x2b4240,2, 0x2b4260,6, 0x2b4280,1, 0x2b42f0,12, 0x2b4324,2, 0x2b4340,2, 0x2b4360,6, 0x2b4380,1, 0x2b43f0,4, 0x2b4410,4, 0x2b45f8,2, 0x2b5004,1, 0x2b5040,16, 0x2b5204,3, 0x2b5224,1, 0x2b522c,1, 0x2b5400,48, 0x2b54c4,2, 0x2b54d0,3, 0x2b5600,37, 0x2b5700,17, 0x2b5748,2, 0x2b5780,16, 0x2b5800,25, 0x2b5880,1, 0x2b5888,8, 0x2b58c0,6, 0x2b58e0,1, 0x2b58e8,2, 0x2b5904,14, 0x2b5a00,4, 0x2b5b00,60, 0x2b5c00,4, 0x2b5c40,12, 0x2b5c80,5, 0x2b5ca0,1, 0x2b5cb0,1, 0x2b6000,3, 0x2b6010,3, 0x2b6020,3, 0x2b6030,3, 0x2b6040,3, 0x2b6050,3, 0x2b6060,3, 0x2b6070,3, 0x2b6080,8, 0x2b60e0,1, 0x2b6100,1, 0x2b6140,3, 0x2b6160,8, 0x2b6184,11, 0x2b61c0,1, 0x2b62c0,1, 0x2b62c8,14, 0x2b8000,1, 0x2b8008,3, 0x2b8018,3, 0x2b8030,7, 0x2b8070,2, 0x2b8080,1, 0x2b8088,3, 0x2b8098,3, 0x2b80b0,7, 0x2b80f0,2, 0x2b8100,1, 0x2b8108,3, 0x2b8118,3, 0x2b8130,7, 0x2b8170,2, 0x2b8180,1, 0x2b8188,3, 0x2b8198,3, 0x2b81b0,7, 0x2b81f0,2, 0x2b8200,3, 0x2b8210,3, 0x2b8220,3, 0x2b8230,3, 0x2b8240,10, 0x2b826c,1, 0x2b8280,28, 0x2b82f4,8, 0x2b8320,27, 0x2b83dc,43, 0x2b8490,3, 0x2b84a0,2, 0x2b84b0,3, 0x2b84c0,2, 0x2b84d0,3, 0x2b84e0,2, 0x2b84f0,3, 0x2b8500,2, 0x2b8510,3, 0x2b8520,2, 0x2b8530,3, 0x2b8540,2, 0x2b8550,3, 0x2b8560,2, 0x2b8570,3, 0x2b8580,64, 0x2b8780,18, 0x2b87d0,4, 0x2b8800,13, 0x2b8880,1, 0x2b8888,8, 0x2b88c0,6, 0x2b88e0,1, 0x2b88e8,2, 0x2b8904,44, 0x2b8a00,4, 0x2b8a14,1, 0x2b8a1c,1, 0x2b8a24,1, 0x2b8a2c,1, 0x2b8a34,1, 0x2b8a3c,7, 0x2b8a60,6, 0x2b8a80,36, 0x2b8b40,15, 0x2b8b80,4, 0x2b8bc0,11, 0x2b8c00,9, 0x2b8c40,9, 0x2b8c80,9, 0x2b8cc0,9, 0x2b8d00,16, 0x2b8d54,1, 0x2b8d5c,1, 0x2b8d64,1, 0x2b8d6c,1, 0x2b8d80,26, 0x2b8e00,26, 0x2b8e80,26, 0x2b8f00,26, 0x2ba000,1, 0x2ba00c,4, 0x2ba020,4, 0x2ba038,3, 0x2ba0a8,38, 0x2ba180,64, 0x2ba2c0,8, 0x2ba2f8,317, 0x2ba804,1, 0x2ba810,6, 0x2ba884,1, 0x2ba894,5, 0x2ba904,1, 0x2ba92c,21, 0x2baa04,1, 0x2baa0c,1, 0x2baa14,1, 0x2baa1c,1, 0x2baa24,1, 0x2baa2c,1, 0x2baa34,1, 0x2baa3c,13, 0x2baa78,8, 0x2bab04,5, 0x2bab44,1, 0x2bab4c,1, 0x2bab54,1, 0x2bab60,3, 0x2bab70,5, 0x2bab88,3, 0x2bab98,1, 0x2babc0,4, 0x2bb000,34, 0x2bb100,13, 0x2bb140,15, 0x2bb180,40, 0x2bb240,11, 0x2bb280,11, 0x2bb300,10, 0x2bb380,4, 0x2bb3c0,3, 0x2bb3d0,6, 0x2bb400,28, 0x2bb480,26, 0x2bb500,20, 0x2bb580,18, 0x2bc000,19, 0x2bca00,10, 0x2bca80,3, 0x2bcb00,6, 0x2c0000,3, 0x2c0010,1, 0x2c0030,13, 0x2c006c,4, 0x2c0100,40, 0x2c01fc,4, 0x2c0210,1, 0x2c0230,13, 0x2c026c,4, 0x2c0300,40, 0x2c03fc,4, 0x2c0410,1, 0x2c0430,13, 0x2c046c,4, 0x2c0500,40, 0x2c05fc,4, 0x2c0610,1, 0x2c0630,13, 0x2c066c,4, 0x2c0700,40, 0x2c07fc,9, 0x2c1000,19, 0x2c1a00,10, 0x2c1a80,3, 0x2c2000,6, 0x2c201c,12, 0x2c2080,1, 0x2c2088,1, 0x2c2090,2, 0x2c20a0,2, 0x2c2100,1, 0x2c210c,2, 0x2c211c,2, 0x2c212c,2, 0x2c213c,1, 0x2c2180,2, 0x2c218c,1, 0x2c2200,27, 0x2c2300,7, 0x2c2320,2, 0x2c232c,1, 0x2c2380,10, 0x2c23c0,1, 0x2c2800,109, 0x2c29c0,5, 0x2c2a00,109, 0x2c2bc0,5, 0x2c2c00,109, 0x2c2dc0,5, 0x2c3000,3, 0x2c3014,16, 0x2c3074,1, 0x2c3080,3, 0x2c3094,16, 0x2c30f4,1, 0x2c3100,3, 0x2c3114,16, 0x2c3174,1, 0x2c3180,3, 0x2c3194,16, 0x2c31f4,1, 0x2c3400,10, 0x2c3440,10, 0x2c3480,10, 0x2c34c0,10, 0x2c3500,1, 0x2c3600,1, 0x2c3680,16, 0x2c3700,6, 0x2c3720,6, 0x2c3740,6, 0x2c3760,6, 0x2c3780,6, 0x2c37a0,6, 0x2c37c0,6, 0x2c37e0,6, 0x2c4000,60, 0x2c4100,60, 0x2c4200,32, 0x2c4800,4, 0x2c4900,53, 0x2c4a00,4, 0x2c4a20,2, 0x2c5000,25, 0x2c5080,1, 0x2c5088,8, 0x2c50c0,6, 0x2c50e0,1, 0x2c50e8,2, 0x2c5104,5, 0x2c5200,11, 0x2c5240,1, 0x2c5248,1, 0x2c5400,4, 0x2c8000,2, 0x2c8010,41, 0x2c80b8,3, 0x2c8100,9, 0x2c8128,1, 0x2c8140,9, 0x2c8168,1, 0x2c8180,6, 0x2c81a0,6, 0x2c81c0,6, 0x2c81e0,4, 0x2c8400,9, 0x2c8428,1, 0x2c8440,2, 0x2c844c,3, 0x2c8464,1, 0x2c8474,22, 0x2c8504,1, 0x2c852c,53, 0x2c8604,1, 0x2c8670,36, 0x2c8708,3, 0x2c8800,3, 0x2c8814,10, 0x2c8840,11, 0x2c8870,35, 0x2c8900,8, 0x2c8924,5, 0x2c8980,2, 0x2c898c,2, 0x2c89a0,2, 0x2c89c0,1, 0x2c8a00,12, 0x2c8a34,22, 0x2c8ac0,7, 0x2c8b00,8, 0x2c8b24,5, 0x2c8b80,2, 0x2c8b8c,2, 0x2c8ba0,2, 0x2c8bc0,1, 0x2c8c00,12, 0x2c8c40,12, 0x2c8c80,12, 0x2c8cc0,12, 0x2c8d00,12, 0x2c8d40,12, 0x2c8d80,12, 0x2c8dc0,12, 0x2c8e00,1, 0x2c8e08,13, 0x2c8e40,12, 0x2c8e80,3, 0x2c8f00,7, 0x2c8f44,8, 0x2c8f80,6, 0x2c8fa0,2, 0x2c9000,9, 0x2c9040,9, 0x2c9080,9, 0x2c90c0,9, 0x2c9104,1, 0x2c9110,5, 0x2c9128,2, 0x2c9134,1, 0x2c913c,5, 0x2c9168,1, 0x2c9170,2, 0x2c9200,8, 0x2c9240,4, 0x2c9260,8, 0x2c9300,8, 0x2c9330,2, 0x2c9340,7, 0x2c9380,3, 0x2c9390,3, 0x2c93a0,3, 0x2c93b0,3, 0x2c93c0,5, 0x2c9400,69, 0x2c9600,4, 0x2c9640,13, 0x2c9680,7, 0x2c96a0,5, 0x2c96c0,1, 0x2ca000,25, 0x2ca080,1, 0x2ca088,8, 0x2ca0c0,6, 0x2ca0e0,1, 0x2ca0e8,2, 0x2ca104,5, 0x2ca200,11, 0x2ca240,1, 0x2ca248,1, 0x2ca400,4, 0x2cb000,35, 0x2cba00,10, 0x2cba80,3, 0x2cc000,8, 0x2cc024,2, 0x2cc040,2, 0x2cc060,6, 0x2cc080,1, 0x2cc0f0,12, 0x2cc124,2, 0x2cc140,2, 0x2cc160,6, 0x2cc180,1, 0x2cc1f0,12, 0x2cc224,2, 0x2cc240,2, 0x2cc260,6, 0x2cc280,1, 0x2cc2f0,12, 0x2cc324,2, 0x2cc340,2, 0x2cc360,6, 0x2cc380,1, 0x2cc3f0,4, 0x2cc410,4, 0x2cc5f8,2, 0x2cd004,1, 0x2cd040,16, 0x2cd204,3, 0x2cd224,1, 0x2cd22c,1, 0x2cd400,48, 0x2cd4c4,2, 0x2cd4d0,3, 0x2cd600,37, 0x2cd700,17, 0x2cd748,2, 0x2cd780,16, 0x2cd800,25, 0x2cd880,1, 0x2cd888,8, 0x2cd8c0,6, 0x2cd8e0,1, 0x2cd8e8,2, 0x2cd904,14, 0x2cda00,4, 0x2cdb00,60, 0x2cdc00,4, 0x2cdc40,12, 0x2cdc80,5, 0x2cdca0,1, 0x2cdcb0,1, 0x2ce000,3, 0x2ce010,3, 0x2ce020,3, 0x2ce030,3, 0x2ce040,3, 0x2ce050,3, 0x2ce060,3, 0x2ce070,3, 0x2ce080,8, 0x2ce0e0,1, 0x2ce100,1, 0x2ce140,3, 0x2ce160,8, 0x2ce184,11, 0x2ce1c0,1, 0x2ce2c0,1, 0x2ce2c8,14, 0x2d0000,1, 0x2d0008,3, 0x2d0018,3, 0x2d0030,7, 0x2d0070,2, 0x2d0080,1, 0x2d0088,3, 0x2d0098,3, 0x2d00b0,7, 0x2d00f0,2, 0x2d0100,1, 0x2d0108,3, 0x2d0118,3, 0x2d0130,7, 0x2d0170,2, 0x2d0180,1, 0x2d0188,3, 0x2d0198,3, 0x2d01b0,7, 0x2d01f0,2, 0x2d0200,3, 0x2d0210,3, 0x2d0220,3, 0x2d0230,3, 0x2d0240,10, 0x2d026c,1, 0x2d0280,28, 0x2d02f4,8, 0x2d0320,27, 0x2d03dc,43, 0x2d0490,3, 0x2d04a0,2, 0x2d04b0,3, 0x2d04c0,2, 0x2d04d0,3, 0x2d04e0,2, 0x2d04f0,3, 0x2d0500,2, 0x2d0510,3, 0x2d0520,2, 0x2d0530,3, 0x2d0540,2, 0x2d0550,3, 0x2d0560,2, 0x2d0570,3, 0x2d0580,64, 0x2d0780,18, 0x2d07d0,4, 0x2d0800,13, 0x2d0880,1, 0x2d0888,8, 0x2d08c0,6, 0x2d08e0,1, 0x2d08e8,2, 0x2d0904,44, 0x2d0a00,4, 0x2d0a14,1, 0x2d0a1c,1, 0x2d0a24,1, 0x2d0a2c,1, 0x2d0a34,1, 0x2d0a3c,7, 0x2d0a60,6, 0x2d0a80,36, 0x2d0b40,15, 0x2d0b80,4, 0x2d0bc0,11, 0x2d0c00,9, 0x2d0c40,9, 0x2d0c80,9, 0x2d0cc0,9, 0x2d0d00,16, 0x2d0d54,1, 0x2d0d5c,1, 0x2d0d64,1, 0x2d0d6c,1, 0x2d0d80,26, 0x2d0e00,26, 0x2d0e80,26, 0x2d0f00,26, 0x2d2000,1, 0x2d200c,4, 0x2d2020,4, 0x2d2038,3, 0x2d20a8,38, 0x2d2180,64, 0x2d22c0,8, 0x2d22f8,317, 0x2d2804,1, 0x2d2810,6, 0x2d2884,1, 0x2d2894,5, 0x2d2904,1, 0x2d292c,21, 0x2d2a04,1, 0x2d2a0c,1, 0x2d2a14,1, 0x2d2a1c,1, 0x2d2a24,1, 0x2d2a2c,1, 0x2d2a34,1, 0x2d2a3c,13, 0x2d2a78,8, 0x2d2b04,5, 0x2d2b44,1, 0x2d2b4c,1, 0x2d2b54,1, 0x2d2b60,3, 0x2d2b70,5, 0x2d2b88,3, 0x2d2b98,1, 0x2d2bc0,4, 0x2d3000,34, 0x2d3100,13, 0x2d3140,15, 0x2d3180,40, 0x2d3240,11, 0x2d3280,11, 0x2d3300,10, 0x2d3380,4, 0x2d33c0,3, 0x2d33d0,6, 0x2d3400,28, 0x2d3480,26, 0x2d3500,20, 0x2d3580,18, 0x2d4000,19, 0x2d4a00,10, 0x2d4a80,3, 0x2d4b00,6, 0x2d8000,3, 0x2d8010,1, 0x2d8030,13, 0x2d806c,4, 0x2d8100,40, 0x2d81fc,4, 0x2d8210,1, 0x2d8230,13, 0x2d826c,4, 0x2d8300,40, 0x2d83fc,4, 0x2d8410,1, 0x2d8430,13, 0x2d846c,4, 0x2d8500,40, 0x2d85fc,4, 0x2d8610,1, 0x2d8630,13, 0x2d866c,4, 0x2d8700,40, 0x2d87fc,9, 0x2d9000,19, 0x2d9a00,10, 0x2d9a80,3, 0x2da000,6, 0x2da01c,12, 0x2da080,1, 0x2da088,1, 0x2da090,2, 0x2da0a0,2, 0x2da100,1, 0x2da10c,2, 0x2da11c,2, 0x2da12c,2, 0x2da13c,1, 0x2da180,2, 0x2da18c,1, 0x2da200,27, 0x2da300,7, 0x2da320,2, 0x2da32c,1, 0x2da380,10, 0x2da3c0,1, 0x2da800,109, 0x2da9c0,5, 0x2daa00,109, 0x2dabc0,5, 0x2dac00,109, 0x2dadc0,5, 0x2db000,3, 0x2db014,16, 0x2db074,1, 0x2db080,3, 0x2db094,16, 0x2db0f4,1, 0x2db100,3, 0x2db114,16, 0x2db174,1, 0x2db180,3, 0x2db194,16, 0x2db1f4,1, 0x2db400,10, 0x2db440,10, 0x2db480,10, 0x2db4c0,10, 0x2db500,1, 0x2db600,1, 0x2db680,16, 0x2db700,6, 0x2db720,6, 0x2db740,6, 0x2db760,6, 0x2db780,6, 0x2db7a0,6, 0x2db7c0,6, 0x2db7e0,6, 0x2dc000,60, 0x2dc100,60, 0x2dc200,32, 0x2dc800,4, 0x2dc900,53, 0x2dca00,4, 0x2dca20,2, 0x2dd000,25, 0x2dd080,1, 0x2dd088,8, 0x2dd0c0,6, 0x2dd0e0,1, 0x2dd0e8,2, 0x2dd104,5, 0x2dd200,11, 0x2dd240,1, 0x2dd248,1, 0x2dd400,4, 0x2e0000,2, 0x2e0010,41, 0x2e00b8,3, 0x2e0100,9, 0x2e0128,1, 0x2e0140,9, 0x2e0168,1, 0x2e0180,6, 0x2e01a0,6, 0x2e01c0,6, 0x2e01e0,4, 0x2e0400,9, 0x2e0428,1, 0x2e0440,2, 0x2e044c,3, 0x2e0464,1, 0x2e0474,22, 0x2e0504,1, 0x2e052c,53, 0x2e0604,1, 0x2e0670,36, 0x2e0708,3, 0x2e0800,3, 0x2e0814,10, 0x2e0840,11, 0x2e0870,35, 0x2e0900,8, 0x2e0924,5, 0x2e0980,2, 0x2e098c,2, 0x2e09a0,2, 0x2e09c0,1, 0x2e0a00,12, 0x2e0a34,22, 0x2e0ac0,7, 0x2e0b00,8, 0x2e0b24,5, 0x2e0b80,2, 0x2e0b8c,2, 0x2e0ba0,2, 0x2e0bc0,1, 0x2e0c00,12, 0x2e0c40,12, 0x2e0c80,12, 0x2e0cc0,12, 0x2e0d00,12, 0x2e0d40,12, 0x2e0d80,12, 0x2e0dc0,12, 0x2e0e00,1, 0x2e0e08,13, 0x2e0e40,12, 0x2e0e80,3, 0x2e0f00,7, 0x2e0f44,8, 0x2e0f80,6, 0x2e0fa0,2, 0x2e1000,9, 0x2e1040,9, 0x2e1080,9, 0x2e10c0,9, 0x2e1104,1, 0x2e1110,5, 0x2e1128,2, 0x2e1134,1, 0x2e113c,5, 0x2e1168,1, 0x2e1170,2, 0x2e1200,8, 0x2e1240,4, 0x2e1260,8, 0x2e1300,8, 0x2e1330,2, 0x2e1340,7, 0x2e1380,3, 0x2e1390,3, 0x2e13a0,3, 0x2e13b0,3, 0x2e13c0,5, 0x2e1400,69, 0x2e1600,4, 0x2e1640,13, 0x2e1680,7, 0x2e16a0,5, 0x2e16c0,1, 0x2e2000,25, 0x2e2080,1, 0x2e2088,8, 0x2e20c0,6, 0x2e20e0,1, 0x2e20e8,2, 0x2e2104,5, 0x2e2200,11, 0x2e2240,1, 0x2e2248,1, 0x2e2400,4, 0x2e3000,35, 0x2e3a00,10, 0x2e3a80,3, 0x2e4000,8, 0x2e4024,2, 0x2e4040,2, 0x2e4060,6, 0x2e4080,1, 0x2e40f0,12, 0x2e4124,2, 0x2e4140,2, 0x2e4160,6, 0x2e4180,1, 0x2e41f0,12, 0x2e4224,2, 0x2e4240,2, 0x2e4260,6, 0x2e4280,1, 0x2e42f0,12, 0x2e4324,2, 0x2e4340,2, 0x2e4360,6, 0x2e4380,1, 0x2e43f0,4, 0x2e4410,4, 0x2e45f8,2, 0x2e5004,1, 0x2e5040,16, 0x2e5204,3, 0x2e5224,1, 0x2e522c,1, 0x2e5400,48, 0x2e54c4,2, 0x2e54d0,3, 0x2e5600,37, 0x2e5700,17, 0x2e5748,2, 0x2e5780,16, 0x2e5800,25, 0x2e5880,1, 0x2e5888,8, 0x2e58c0,6, 0x2e58e0,1, 0x2e58e8,2, 0x2e5904,14, 0x2e5a00,4, 0x2e5b00,60, 0x2e5c00,4, 0x2e5c40,12, 0x2e5c80,5, 0x2e5ca0,1, 0x2e5cb0,1, 0x2e6000,3, 0x2e6010,3, 0x2e6020,3, 0x2e6030,3, 0x2e6040,3, 0x2e6050,3, 0x2e6060,3, 0x2e6070,3, 0x2e6080,8, 0x2e60e0,1, 0x2e6100,1, 0x2e6140,3, 0x2e6160,8, 0x2e6184,11, 0x2e61c0,1, 0x2e62c0,1, 0x2e62c8,14, 0x2e8000,1, 0x2e8008,3, 0x2e8018,3, 0x2e8030,7, 0x2e8070,2, 0x2e8080,1, 0x2e8088,3, 0x2e8098,3, 0x2e80b0,7, 0x2e80f0,2, 0x2e8100,1, 0x2e8108,3, 0x2e8118,3, 0x2e8130,7, 0x2e8170,2, 0x2e8180,1, 0x2e8188,3, 0x2e8198,3, 0x2e81b0,7, 0x2e81f0,2, 0x2e8200,3, 0x2e8210,3, 0x2e8220,3, 0x2e8230,3, 0x2e8240,10, 0x2e826c,1, 0x2e8280,28, 0x2e82f4,8, 0x2e8320,27, 0x2e83dc,43, 0x2e8490,3, 0x2e84a0,2, 0x2e84b0,3, 0x2e84c0,2, 0x2e84d0,3, 0x2e84e0,2, 0x2e84f0,3, 0x2e8500,2, 0x2e8510,3, 0x2e8520,2, 0x2e8530,3, 0x2e8540,2, 0x2e8550,3, 0x2e8560,2, 0x2e8570,3, 0x2e8580,64, 0x2e8780,18, 0x2e87d0,4, 0x2e8800,13, 0x2e8880,1, 0x2e8888,8, 0x2e88c0,6, 0x2e88e0,1, 0x2e88e8,2, 0x2e8904,44, 0x2e8a00,4, 0x2e8a14,1, 0x2e8a1c,1, 0x2e8a24,1, 0x2e8a2c,1, 0x2e8a34,1, 0x2e8a3c,7, 0x2e8a60,6, 0x2e8a80,36, 0x2e8b40,15, 0x2e8b80,4, 0x2e8bc0,11, 0x2e8c00,9, 0x2e8c40,9, 0x2e8c80,9, 0x2e8cc0,9, 0x2e8d00,16, 0x2e8d54,1, 0x2e8d5c,1, 0x2e8d64,1, 0x2e8d6c,1, 0x2e8d80,26, 0x2e8e00,26, 0x2e8e80,26, 0x2e8f00,26, 0x2ea000,1, 0x2ea00c,4, 0x2ea020,4, 0x2ea038,3, 0x2ea0a8,38, 0x2ea180,64, 0x2ea2c0,8, 0x2ea2f8,317, 0x2ea804,1, 0x2ea810,6, 0x2ea884,1, 0x2ea894,5, 0x2ea904,1, 0x2ea92c,21, 0x2eaa04,1, 0x2eaa0c,1, 0x2eaa14,1, 0x2eaa1c,1, 0x2eaa24,1, 0x2eaa2c,1, 0x2eaa34,1, 0x2eaa3c,13, 0x2eaa78,8, 0x2eab04,5, 0x2eab44,1, 0x2eab4c,1, 0x2eab54,1, 0x2eab60,3, 0x2eab70,5, 0x2eab88,3, 0x2eab98,1, 0x2eabc0,4, 0x2eb000,34, 0x2eb100,13, 0x2eb140,15, 0x2eb180,40, 0x2eb240,11, 0x2eb280,11, 0x2eb300,10, 0x2eb380,4, 0x2eb3c0,3, 0x2eb3d0,6, 0x2eb400,28, 0x2eb480,26, 0x2eb500,20, 0x2eb580,18, 0x2ec000,19, 0x2eca00,10, 0x2eca80,3, 0x2ecb00,6, 0x2f0000,3, 0x2f0010,1, 0x2f0030,13, 0x2f006c,4, 0x2f0100,40, 0x2f01fc,4, 0x2f0210,1, 0x2f0230,13, 0x2f026c,4, 0x2f0300,40, 0x2f03fc,4, 0x2f0410,1, 0x2f0430,13, 0x2f046c,4, 0x2f0500,40, 0x2f05fc,4, 0x2f0610,1, 0x2f0630,13, 0x2f066c,4, 0x2f0700,40, 0x2f07fc,9, 0x2f1000,19, 0x2f1a00,10, 0x2f1a80,3, 0x2f2000,6, 0x2f201c,12, 0x2f2080,1, 0x2f2088,1, 0x2f2090,2, 0x2f20a0,2, 0x2f2100,1, 0x2f210c,2, 0x2f211c,2, 0x2f212c,2, 0x2f213c,1, 0x2f2180,2, 0x2f218c,1, 0x2f2200,27, 0x2f2300,7, 0x2f2320,2, 0x2f232c,1, 0x2f2380,10, 0x2f23c0,1, 0x2f2800,109, 0x2f29c0,5, 0x2f2a00,109, 0x2f2bc0,5, 0x2f2c00,109, 0x2f2dc0,5, 0x2f3000,3, 0x2f3014,16, 0x2f3074,1, 0x2f3080,3, 0x2f3094,16, 0x2f30f4,1, 0x2f3100,3, 0x2f3114,16, 0x2f3174,1, 0x2f3180,3, 0x2f3194,16, 0x2f31f4,1, 0x2f3400,10, 0x2f3440,10, 0x2f3480,10, 0x2f34c0,10, 0x2f3500,1, 0x2f3600,1, 0x2f3680,16, 0x2f3700,6, 0x2f3720,6, 0x2f3740,6, 0x2f3760,6, 0x2f3780,6, 0x2f37a0,6, 0x2f37c0,6, 0x2f37e0,6, 0x2f4000,60, 0x2f4100,60, 0x2f4200,32, 0x2f4800,4, 0x2f4900,53, 0x2f4a00,4, 0x2f4a20,2, 0x2f5000,25, 0x2f5080,1, 0x2f5088,8, 0x2f50c0,6, 0x2f50e0,1, 0x2f50e8,2, 0x2f5104,5, 0x2f5200,11, 0x2f5240,1, 0x2f5248,1, 0x2f5400,4, 0x2f8000,2, 0x2f8010,41, 0x2f80b8,3, 0x2f8100,9, 0x2f8128,1, 0x2f8140,9, 0x2f8168,1, 0x2f8180,6, 0x2f81a0,6, 0x2f81c0,6, 0x2f81e0,4, 0x2f8400,9, 0x2f8428,1, 0x2f8440,2, 0x2f844c,3, 0x2f8464,1, 0x2f8474,22, 0x2f8504,1, 0x2f852c,53, 0x2f8604,1, 0x2f8670,36, 0x2f8708,3, 0x2f8800,3, 0x2f8814,10, 0x2f8840,11, 0x2f8870,35, 0x2f8900,8, 0x2f8924,5, 0x2f8980,2, 0x2f898c,2, 0x2f89a0,2, 0x2f89c0,1, 0x2f8a00,12, 0x2f8a34,22, 0x2f8ac0,7, 0x2f8b00,8, 0x2f8b24,5, 0x2f8b80,2, 0x2f8b8c,2, 0x2f8ba0,2, 0x2f8bc0,1, 0x2f8c00,12, 0x2f8c40,12, 0x2f8c80,12, 0x2f8cc0,12, 0x2f8d00,12, 0x2f8d40,12, 0x2f8d80,12, 0x2f8dc0,12, 0x2f8e00,1, 0x2f8e08,13, 0x2f8e40,12, 0x2f8e80,3, 0x2f8f00,7, 0x2f8f44,8, 0x2f8f80,6, 0x2f8fa0,2, 0x2f9000,9, 0x2f9040,9, 0x2f9080,9, 0x2f90c0,9, 0x2f9104,1, 0x2f9110,5, 0x2f9128,2, 0x2f9134,1, 0x2f913c,5, 0x2f9168,1, 0x2f9170,2, 0x2f9200,8, 0x2f9240,4, 0x2f9260,8, 0x2f9300,8, 0x2f9330,2, 0x2f9340,7, 0x2f9380,3, 0x2f9390,3, 0x2f93a0,3, 0x2f93b0,3, 0x2f93c0,5, 0x2f9400,69, 0x2f9600,4, 0x2f9640,13, 0x2f9680,7, 0x2f96a0,5, 0x2f96c0,1, 0x2fa000,25, 0x2fa080,1, 0x2fa088,8, 0x2fa0c0,6, 0x2fa0e0,1, 0x2fa0e8,2, 0x2fa104,5, 0x2fa200,11, 0x2fa240,1, 0x2fa248,1, 0x2fa400,4, 0x2fb000,35, 0x2fba00,10, 0x2fba80,3, 0x2fc000,8, 0x2fc024,2, 0x2fc040,2, 0x2fc060,6, 0x2fc080,1, 0x2fc0f0,12, 0x2fc124,2, 0x2fc140,2, 0x2fc160,6, 0x2fc180,1, 0x2fc1f0,12, 0x2fc224,2, 0x2fc240,2, 0x2fc260,6, 0x2fc280,1, 0x2fc2f0,12, 0x2fc324,2, 0x2fc340,2, 0x2fc360,6, 0x2fc380,1, 0x2fc3f0,4, 0x2fc410,4, 0x2fc5f8,2, 0x2fd004,1, 0x2fd040,16, 0x2fd204,3, 0x2fd224,1, 0x2fd22c,1, 0x2fd400,48, 0x2fd4c4,2, 0x2fd4d0,3, 0x2fd600,37, 0x2fd700,17, 0x2fd748,2, 0x2fd780,16, 0x2fd800,25, 0x2fd880,1, 0x2fd888,8, 0x2fd8c0,6, 0x2fd8e0,1, 0x2fd8e8,2, 0x2fd904,14, 0x2fda00,4, 0x2fdb00,60, 0x2fdc00,4, 0x2fdc40,12, 0x2fdc80,5, 0x2fdca0,1, 0x2fdcb0,1, 0x2fe000,3, 0x2fe010,3, 0x2fe020,3, 0x2fe030,3, 0x2fe040,3, 0x2fe050,3, 0x2fe060,3, 0x2fe070,3, 0x2fe080,8, 0x2fe0e0,1, 0x2fe100,1, 0x2fe140,3, 0x2fe160,8, 0x2fe184,11, 0x2fe1c0,1, 0x2fe2c0,1, 0x2fe2c8,14, 0x300000,1, 0x300008,3, 0x300018,3, 0x300030,7, 0x300070,2, 0x300080,1, 0x300088,3, 0x300098,3, 0x3000b0,7, 0x3000f0,2, 0x300100,1, 0x300108,3, 0x300118,3, 0x300130,7, 0x300170,2, 0x300180,1, 0x300188,3, 0x300198,3, 0x3001b0,7, 0x3001f0,2, 0x300200,3, 0x300210,3, 0x300220,3, 0x300230,3, 0x300240,10, 0x30026c,1, 0x300280,28, 0x3002f4,8, 0x300320,27, 0x3003dc,43, 0x300490,3, 0x3004a0,2, 0x3004b0,3, 0x3004c0,2, 0x3004d0,3, 0x3004e0,2, 0x3004f0,3, 0x300500,2, 0x300510,3, 0x300520,2, 0x300530,3, 0x300540,2, 0x300550,3, 0x300560,2, 0x300570,3, 0x300580,64, 0x300780,18, 0x3007d0,4, 0x300800,13, 0x300880,1, 0x300888,8, 0x3008c0,6, 0x3008e0,1, 0x3008e8,2, 0x300904,44, 0x300a00,4, 0x300a14,1, 0x300a1c,1, 0x300a24,1, 0x300a2c,1, 0x300a34,1, 0x300a3c,7, 0x300a60,6, 0x300a80,36, 0x300b40,15, 0x300b80,4, 0x300bc0,11, 0x300c00,9, 0x300c40,9, 0x300c80,9, 0x300cc0,9, 0x300d00,16, 0x300d54,1, 0x300d5c,1, 0x300d64,1, 0x300d6c,1, 0x300d80,26, 0x300e00,26, 0x300e80,26, 0x300f00,26, 0x302000,1, 0x30200c,4, 0x302020,4, 0x302038,3, 0x3020a8,38, 0x302180,64, 0x3022c0,8, 0x3022f8,317, 0x302804,1, 0x302810,6, 0x302884,1, 0x302894,5, 0x302904,1, 0x30292c,21, 0x302a04,1, 0x302a0c,1, 0x302a14,1, 0x302a1c,1, 0x302a24,1, 0x302a2c,1, 0x302a34,1, 0x302a3c,13, 0x302a78,8, 0x302b04,5, 0x302b44,1, 0x302b4c,1, 0x302b54,1, 0x302b60,3, 0x302b70,5, 0x302b88,3, 0x302b98,1, 0x302bc0,4, 0x303000,34, 0x303100,13, 0x303140,15, 0x303180,40, 0x303240,11, 0x303280,11, 0x303300,10, 0x303380,4, 0x3033c0,3, 0x3033d0,6, 0x303400,28, 0x303480,26, 0x303500,20, 0x303580,18, 0x304000,19, 0x304a00,10, 0x304a80,3, 0x304b00,6, 0x308000,3, 0x308010,1, 0x308030,13, 0x30806c,4, 0x308100,40, 0x3081fc,4, 0x308210,1, 0x308230,13, 0x30826c,4, 0x308300,40, 0x3083fc,4, 0x308410,1, 0x308430,13, 0x30846c,4, 0x308500,40, 0x3085fc,4, 0x308610,1, 0x308630,13, 0x30866c,4, 0x308700,40, 0x3087fc,9, 0x309000,19, 0x309a00,10, 0x309a80,3, 0x30a000,6, 0x30a01c,12, 0x30a080,1, 0x30a088,1, 0x30a090,2, 0x30a0a0,2, 0x30a100,1, 0x30a10c,2, 0x30a11c,2, 0x30a12c,2, 0x30a13c,1, 0x30a180,2, 0x30a18c,1, 0x30a200,27, 0x30a300,7, 0x30a320,2, 0x30a32c,1, 0x30a380,10, 0x30a3c0,1, 0x30a800,109, 0x30a9c0,5, 0x30aa00,109, 0x30abc0,5, 0x30ac00,109, 0x30adc0,5, 0x30b000,3, 0x30b014,16, 0x30b074,1, 0x30b080,3, 0x30b094,16, 0x30b0f4,1, 0x30b100,3, 0x30b114,16, 0x30b174,1, 0x30b180,3, 0x30b194,16, 0x30b1f4,1, 0x30b400,10, 0x30b440,10, 0x30b480,10, 0x30b4c0,10, 0x30b500,1, 0x30b600,1, 0x30b680,16, 0x30b700,6, 0x30b720,6, 0x30b740,6, 0x30b760,6, 0x30b780,6, 0x30b7a0,6, 0x30b7c0,6, 0x30b7e0,6, 0x30c000,60, 0x30c100,60, 0x30c200,32, 0x30c800,4, 0x30c900,53, 0x30ca00,4, 0x30ca20,2, 0x30d000,25, 0x30d080,1, 0x30d088,8, 0x30d0c0,6, 0x30d0e0,1, 0x30d0e8,2, 0x30d104,5, 0x30d200,11, 0x30d240,1, 0x30d248,1, 0x30d400,4, 0x310000,2, 0x310010,41, 0x3100b8,3, 0x310100,9, 0x310128,1, 0x310140,9, 0x310168,1, 0x310180,6, 0x3101a0,6, 0x3101c0,6, 0x3101e0,4, 0x310400,9, 0x310428,1, 0x310440,2, 0x31044c,3, 0x310464,1, 0x310474,22, 0x310504,1, 0x31052c,53, 0x310604,1, 0x310670,36, 0x310708,3, 0x310800,3, 0x310814,10, 0x310840,11, 0x310870,35, 0x310900,8, 0x310924,5, 0x310980,2, 0x31098c,2, 0x3109a0,2, 0x3109c0,1, 0x310a00,12, 0x310a34,22, 0x310ac0,7, 0x310b00,8, 0x310b24,5, 0x310b80,2, 0x310b8c,2, 0x310ba0,2, 0x310bc0,1, 0x310c00,12, 0x310c40,12, 0x310c80,12, 0x310cc0,12, 0x310d00,12, 0x310d40,12, 0x310d80,12, 0x310dc0,12, 0x310e00,1, 0x310e08,13, 0x310e40,12, 0x310e80,3, 0x310f00,7, 0x310f44,8, 0x310f80,6, 0x310fa0,2, 0x311000,9, 0x311040,9, 0x311080,9, 0x3110c0,9, 0x311104,1, 0x311110,5, 0x311128,2, 0x311134,1, 0x31113c,5, 0x311168,1, 0x311170,2, 0x311200,8, 0x311240,4, 0x311260,8, 0x311300,8, 0x311330,2, 0x311340,7, 0x311380,3, 0x311390,3, 0x3113a0,3, 0x3113b0,3, 0x3113c0,5, 0x311400,69, 0x311600,4, 0x311640,13, 0x311680,7, 0x3116a0,5, 0x3116c0,1, 0x312000,25, 0x312080,1, 0x312088,8, 0x3120c0,6, 0x3120e0,1, 0x3120e8,2, 0x312104,5, 0x312200,11, 0x312240,1, 0x312248,1, 0x312400,4, 0x313000,35, 0x313a00,10, 0x313a80,3, 0x314000,8, 0x314024,2, 0x314040,2, 0x314060,6, 0x314080,1, 0x3140f0,12, 0x314124,2, 0x314140,2, 0x314160,6, 0x314180,1, 0x3141f0,12, 0x314224,2, 0x314240,2, 0x314260,6, 0x314280,1, 0x3142f0,12, 0x314324,2, 0x314340,2, 0x314360,6, 0x314380,1, 0x3143f0,4, 0x314410,4, 0x3145f8,2, 0x315004,1, 0x315040,16, 0x315204,3, 0x315224,1, 0x31522c,1, 0x315400,48, 0x3154c4,2, 0x3154d0,3, 0x315600,37, 0x315700,17, 0x315748,2, 0x315780,16, 0x315800,25, 0x315880,1, 0x315888,8, 0x3158c0,6, 0x3158e0,1, 0x3158e8,2, 0x315904,14, 0x315a00,4, 0x315b00,60, 0x315c00,4, 0x315c40,12, 0x315c80,5, 0x315ca0,1, 0x315cb0,1, 0x316000,3, 0x316010,3, 0x316020,3, 0x316030,3, 0x316040,3, 0x316050,3, 0x316060,3, 0x316070,3, 0x316080,8, 0x3160e0,1, 0x316100,1, 0x316140,3, 0x316160,8, 0x316184,11, 0x3161c0,1, 0x3162c0,1, 0x3162c8,14, 0x318000,1, 0x318008,3, 0x318018,3, 0x318030,7, 0x318070,2, 0x318080,1, 0x318088,3, 0x318098,3, 0x3180b0,7, 0x3180f0,2, 0x318100,1, 0x318108,3, 0x318118,3, 0x318130,7, 0x318170,2, 0x318180,1, 0x318188,3, 0x318198,3, 0x3181b0,7, 0x3181f0,2, 0x318200,3, 0x318210,3, 0x318220,3, 0x318230,3, 0x318240,10, 0x31826c,1, 0x318280,28, 0x3182f4,8, 0x318320,27, 0x3183dc,43, 0x318490,3, 0x3184a0,2, 0x3184b0,3, 0x3184c0,2, 0x3184d0,3, 0x3184e0,2, 0x3184f0,3, 0x318500,2, 0x318510,3, 0x318520,2, 0x318530,3, 0x318540,2, 0x318550,3, 0x318560,2, 0x318570,3, 0x318580,64, 0x318780,18, 0x3187d0,4, 0x318800,13, 0x318880,1, 0x318888,8, 0x3188c0,6, 0x3188e0,1, 0x3188e8,2, 0x318904,44, 0x318a00,4, 0x318a14,1, 0x318a1c,1, 0x318a24,1, 0x318a2c,1, 0x318a34,1, 0x318a3c,7, 0x318a60,6, 0x318a80,36, 0x318b40,15, 0x318b80,4, 0x318bc0,11, 0x318c00,9, 0x318c40,9, 0x318c80,9, 0x318cc0,9, 0x318d00,16, 0x318d54,1, 0x318d5c,1, 0x318d64,1, 0x318d6c,1, 0x318d80,26, 0x318e00,26, 0x318e80,26, 0x318f00,26, 0x31a000,1, 0x31a00c,4, 0x31a020,4, 0x31a038,3, 0x31a0a8,38, 0x31a180,64, 0x31a2c0,8, 0x31a2f8,317, 0x31a804,1, 0x31a810,6, 0x31a884,1, 0x31a894,5, 0x31a904,1, 0x31a92c,21, 0x31aa04,1, 0x31aa0c,1, 0x31aa14,1, 0x31aa1c,1, 0x31aa24,1, 0x31aa2c,1, 0x31aa34,1, 0x31aa3c,13, 0x31aa78,8, 0x31ab04,5, 0x31ab44,1, 0x31ab4c,1, 0x31ab54,1, 0x31ab60,3, 0x31ab70,5, 0x31ab88,3, 0x31ab98,1, 0x31abc0,4, 0x31b000,34, 0x31b100,13, 0x31b140,15, 0x31b180,40, 0x31b240,11, 0x31b280,11, 0x31b300,10, 0x31b380,4, 0x31b3c0,3, 0x31b3d0,6, 0x31b400,28, 0x31b480,26, 0x31b500,20, 0x31b580,18, 0x31c000,19, 0x31ca00,10, 0x31ca80,3, 0x31cb00,6, 0x320000,3, 0x320010,1, 0x320030,13, 0x32006c,4, 0x320100,40, 0x3201fc,4, 0x320210,1, 0x320230,13, 0x32026c,4, 0x320300,40, 0x3203fc,4, 0x320410,1, 0x320430,13, 0x32046c,4, 0x320500,40, 0x3205fc,4, 0x320610,1, 0x320630,13, 0x32066c,4, 0x320700,40, 0x3207fc,9, 0x321000,19, 0x321a00,10, 0x321a80,3, 0x322000,6, 0x32201c,12, 0x322080,1, 0x322088,1, 0x322090,2, 0x3220a0,2, 0x322100,1, 0x32210c,2, 0x32211c,2, 0x32212c,2, 0x32213c,1, 0x322180,2, 0x32218c,1, 0x322200,27, 0x322300,7, 0x322320,2, 0x32232c,1, 0x322380,10, 0x3223c0,1, 0x322800,109, 0x3229c0,5, 0x322a00,109, 0x322bc0,5, 0x322c00,109, 0x322dc0,5, 0x323000,3, 0x323014,16, 0x323074,1, 0x323080,3, 0x323094,16, 0x3230f4,1, 0x323100,3, 0x323114,16, 0x323174,1, 0x323180,3, 0x323194,16, 0x3231f4,1, 0x323400,10, 0x323440,10, 0x323480,10, 0x3234c0,10, 0x323500,1, 0x323600,1, 0x323680,16, 0x323700,6, 0x323720,6, 0x323740,6, 0x323760,6, 0x323780,6, 0x3237a0,6, 0x3237c0,6, 0x3237e0,6, 0x324000,60, 0x324100,60, 0x324200,32, 0x324800,4, 0x324900,53, 0x324a00,4, 0x324a20,2, 0x325000,25, 0x325080,1, 0x325088,8, 0x3250c0,6, 0x3250e0,1, 0x3250e8,2, 0x325104,5, 0x325200,11, 0x325240,1, 0x325248,1, 0x325400,4, 0x328000,2, 0x328010,41, 0x3280b8,3, 0x328100,9, 0x328128,1, 0x328140,9, 0x328168,1, 0x328180,6, 0x3281a0,6, 0x3281c0,6, 0x3281e0,4, 0x328400,9, 0x328428,1, 0x328440,2, 0x32844c,3, 0x328464,1, 0x328474,22, 0x328504,1, 0x32852c,53, 0x328604,1, 0x328670,36, 0x328708,3, 0x328800,3, 0x328814,10, 0x328840,11, 0x328870,35, 0x328900,8, 0x328924,5, 0x328980,2, 0x32898c,2, 0x3289a0,2, 0x3289c0,1, 0x328a00,12, 0x328a34,22, 0x328ac0,7, 0x328b00,8, 0x328b24,5, 0x328b80,2, 0x328b8c,2, 0x328ba0,2, 0x328bc0,1, 0x328c00,12, 0x328c40,12, 0x328c80,12, 0x328cc0,12, 0x328d00,12, 0x328d40,12, 0x328d80,12, 0x328dc0,12, 0x328e00,1, 0x328e08,13, 0x328e40,12, 0x328e80,3, 0x328f00,7, 0x328f44,8, 0x328f80,6, 0x328fa0,2, 0x329000,9, 0x329040,9, 0x329080,9, 0x3290c0,9, 0x329104,1, 0x329110,5, 0x329128,2, 0x329134,1, 0x32913c,5, 0x329168,1, 0x329170,2, 0x329200,8, 0x329240,4, 0x329260,8, 0x329300,8, 0x329330,2, 0x329340,7, 0x329380,3, 0x329390,3, 0x3293a0,3, 0x3293b0,3, 0x3293c0,5, 0x329400,69, 0x329600,4, 0x329640,13, 0x329680,7, 0x3296a0,5, 0x3296c0,1, 0x32a000,25, 0x32a080,1, 0x32a088,8, 0x32a0c0,6, 0x32a0e0,1, 0x32a0e8,2, 0x32a104,5, 0x32a200,11, 0x32a240,1, 0x32a248,1, 0x32a400,4, 0x32b000,35, 0x32ba00,10, 0x32ba80,3, 0x32c000,8, 0x32c024,2, 0x32c040,2, 0x32c060,6, 0x32c080,1, 0x32c0f0,12, 0x32c124,2, 0x32c140,2, 0x32c160,6, 0x32c180,1, 0x32c1f0,12, 0x32c224,2, 0x32c240,2, 0x32c260,6, 0x32c280,1, 0x32c2f0,12, 0x32c324,2, 0x32c340,2, 0x32c360,6, 0x32c380,1, 0x32c3f0,4, 0x32c410,4, 0x32c5f8,2, 0x32d004,1, 0x32d040,16, 0x32d204,3, 0x32d224,1, 0x32d22c,1, 0x32d400,48, 0x32d4c4,2, 0x32d4d0,3, 0x32d600,37, 0x32d700,17, 0x32d748,2, 0x32d780,16, 0x32d800,25, 0x32d880,1, 0x32d888,8, 0x32d8c0,6, 0x32d8e0,1, 0x32d8e8,2, 0x32d904,14, 0x32da00,4, 0x32db00,60, 0x32dc00,4, 0x32dc40,12, 0x32dc80,5, 0x32dca0,1, 0x32dcb0,1, 0x32e000,3, 0x32e010,3, 0x32e020,3, 0x32e030,3, 0x32e040,3, 0x32e050,3, 0x32e060,3, 0x32e070,3, 0x32e080,8, 0x32e0e0,1, 0x32e100,1, 0x32e140,3, 0x32e160,8, 0x32e184,11, 0x32e1c0,1, 0x32e2c0,1, 0x32e2c8,14, 0x330000,1, 0x330008,3, 0x330018,3, 0x330030,7, 0x330070,2, 0x330080,1, 0x330088,3, 0x330098,3, 0x3300b0,7, 0x3300f0,2, 0x330100,1, 0x330108,3, 0x330118,3, 0x330130,7, 0x330170,2, 0x330180,1, 0x330188,3, 0x330198,3, 0x3301b0,7, 0x3301f0,2, 0x330200,3, 0x330210,3, 0x330220,3, 0x330230,3, 0x330240,10, 0x33026c,1, 0x330280,28, 0x3302f4,8, 0x330320,27, 0x3303dc,43, 0x330490,3, 0x3304a0,2, 0x3304b0,3, 0x3304c0,2, 0x3304d0,3, 0x3304e0,2, 0x3304f0,3, 0x330500,2, 0x330510,3, 0x330520,2, 0x330530,3, 0x330540,2, 0x330550,3, 0x330560,2, 0x330570,3, 0x330580,64, 0x330780,18, 0x3307d0,4, 0x330800,13, 0x330880,1, 0x330888,8, 0x3308c0,6, 0x3308e0,1, 0x3308e8,2, 0x330904,44, 0x330a00,4, 0x330a14,1, 0x330a1c,1, 0x330a24,1, 0x330a2c,1, 0x330a34,1, 0x330a3c,7, 0x330a60,6, 0x330a80,36, 0x330b40,15, 0x330b80,4, 0x330bc0,11, 0x330c00,9, 0x330c40,9, 0x330c80,9, 0x330cc0,9, 0x330d00,16, 0x330d54,1, 0x330d5c,1, 0x330d64,1, 0x330d6c,1, 0x330d80,26, 0x330e00,26, 0x330e80,26, 0x330f00,26, 0x332000,1, 0x33200c,4, 0x332020,4, 0x332038,3, 0x3320a8,38, 0x332180,64, 0x3322c0,8, 0x3322f8,317, 0x332804,1, 0x332810,6, 0x332884,1, 0x332894,5, 0x332904,1, 0x33292c,21, 0x332a04,1, 0x332a0c,1, 0x332a14,1, 0x332a1c,1, 0x332a24,1, 0x332a2c,1, 0x332a34,1, 0x332a3c,13, 0x332a78,8, 0x332b04,5, 0x332b44,1, 0x332b4c,1, 0x332b54,1, 0x332b60,3, 0x332b70,5, 0x332b88,3, 0x332b98,1, 0x332bc0,4, 0x333000,34, 0x333100,13, 0x333140,15, 0x333180,40, 0x333240,11, 0x333280,11, 0x333300,10, 0x333380,4, 0x3333c0,3, 0x3333d0,6, 0x333400,28, 0x333480,26, 0x333500,20, 0x333580,18, 0x334000,19, 0x334a00,10, 0x334a80,3, 0x334b00,6, 0x338000,3, 0x338010,1, 0x338030,13, 0x33806c,4, 0x338100,40, 0x3381fc,4, 0x338210,1, 0x338230,13, 0x33826c,4, 0x338300,40, 0x3383fc,4, 0x338410,1, 0x338430,13, 0x33846c,4, 0x338500,40, 0x3385fc,4, 0x338610,1, 0x338630,13, 0x33866c,4, 0x338700,40, 0x3387fc,9, 0x339000,19, 0x339a00,10, 0x339a80,3, 0x33a000,6, 0x33a01c,12, 0x33a080,1, 0x33a088,1, 0x33a090,2, 0x33a0a0,2, 0x33a100,1, 0x33a10c,2, 0x33a11c,2, 0x33a12c,2, 0x33a13c,1, 0x33a180,2, 0x33a18c,1, 0x33a200,27, 0x33a300,7, 0x33a320,2, 0x33a32c,1, 0x33a380,10, 0x33a3c0,1, 0x33a800,109, 0x33a9c0,5, 0x33aa00,109, 0x33abc0,5, 0x33ac00,109, 0x33adc0,5, 0x33b000,3, 0x33b014,16, 0x33b074,1, 0x33b080,3, 0x33b094,16, 0x33b0f4,1, 0x33b100,3, 0x33b114,16, 0x33b174,1, 0x33b180,3, 0x33b194,16, 0x33b1f4,1, 0x33b400,10, 0x33b440,10, 0x33b480,10, 0x33b4c0,10, 0x33b500,1, 0x33b600,1, 0x33b680,16, 0x33b700,6, 0x33b720,6, 0x33b740,6, 0x33b760,6, 0x33b780,6, 0x33b7a0,6, 0x33b7c0,6, 0x33b7e0,6, 0x33c000,60, 0x33c100,60, 0x33c200,32, 0x33c800,4, 0x33c900,53, 0x33ca00,4, 0x33ca20,2, 0x33d000,25, 0x33d080,1, 0x33d088,8, 0x33d0c0,6, 0x33d0e0,1, 0x33d0e8,2, 0x33d104,5, 0x33d200,11, 0x33d240,1, 0x33d248,1, 0x33d400,4, 0x340000,2, 0x340010,41, 0x3400b8,3, 0x340100,9, 0x340128,1, 0x340140,9, 0x340168,1, 0x340180,6, 0x3401a0,6, 0x3401c0,6, 0x3401e0,4, 0x340400,9, 0x340428,1, 0x340440,2, 0x34044c,3, 0x340464,1, 0x340474,22, 0x340504,1, 0x34052c,53, 0x340604,1, 0x340670,36, 0x340708,3, 0x340800,3, 0x340814,10, 0x340840,11, 0x340870,35, 0x340900,8, 0x340924,5, 0x340980,2, 0x34098c,2, 0x3409a0,2, 0x3409c0,1, 0x340a00,12, 0x340a34,22, 0x340ac0,7, 0x340b00,8, 0x340b24,5, 0x340b80,2, 0x340b8c,2, 0x340ba0,2, 0x340bc0,1, 0x340c00,12, 0x340c40,12, 0x340c80,12, 0x340cc0,12, 0x340d00,12, 0x340d40,12, 0x340d80,12, 0x340dc0,12, 0x340e00,1, 0x340e08,13, 0x340e40,12, 0x340e80,3, 0x340f00,7, 0x340f44,8, 0x340f80,6, 0x340fa0,2, 0x341000,9, 0x341040,9, 0x341080,9, 0x3410c0,9, 0x341104,1, 0x341110,5, 0x341128,2, 0x341134,1, 0x34113c,5, 0x341168,1, 0x341170,2, 0x341200,8, 0x341240,4, 0x341260,8, 0x341300,8, 0x341330,2, 0x341340,7, 0x341380,3, 0x341390,3, 0x3413a0,3, 0x3413b0,3, 0x3413c0,5, 0x341400,69, 0x341600,4, 0x341640,13, 0x341680,7, 0x3416a0,5, 0x3416c0,1, 0x342000,25, 0x342080,1, 0x342088,8, 0x3420c0,6, 0x3420e0,1, 0x3420e8,2, 0x342104,5, 0x342200,11, 0x342240,1, 0x342248,1, 0x342400,4, 0x343000,35, 0x343a00,10, 0x343a80,3, 0x344000,8, 0x344024,2, 0x344040,2, 0x344060,6, 0x344080,1, 0x3440f0,12, 0x344124,2, 0x344140,2, 0x344160,6, 0x344180,1, 0x3441f0,12, 0x344224,2, 0x344240,2, 0x344260,6, 0x344280,1, 0x3442f0,12, 0x344324,2, 0x344340,2, 0x344360,6, 0x344380,1, 0x3443f0,4, 0x344410,4, 0x3445f8,2, 0x345004,1, 0x345040,16, 0x345204,3, 0x345224,1, 0x34522c,1, 0x345400,48, 0x3454c4,2, 0x3454d0,3, 0x345600,37, 0x345700,17, 0x345748,2, 0x345780,16, 0x345800,25, 0x345880,1, 0x345888,8, 0x3458c0,6, 0x3458e0,1, 0x3458e8,2, 0x345904,14, 0x345a00,4, 0x345b00,60, 0x345c00,4, 0x345c40,12, 0x345c80,5, 0x345ca0,1, 0x345cb0,1, 0x346000,3, 0x346010,3, 0x346020,3, 0x346030,3, 0x346040,3, 0x346050,3, 0x346060,3, 0x346070,3, 0x346080,8, 0x3460e0,1, 0x346100,1, 0x346140,3, 0x346160,8, 0x346184,11, 0x3461c0,1, 0x3462c0,1, 0x3462c8,14, 0x348000,1, 0x348008,3, 0x348018,3, 0x348030,7, 0x348070,2, 0x348080,1, 0x348088,3, 0x348098,3, 0x3480b0,7, 0x3480f0,2, 0x348100,1, 0x348108,3, 0x348118,3, 0x348130,7, 0x348170,2, 0x348180,1, 0x348188,3, 0x348198,3, 0x3481b0,7, 0x3481f0,2, 0x348200,3, 0x348210,3, 0x348220,3, 0x348230,3, 0x348240,10, 0x34826c,1, 0x348280,28, 0x3482f4,8, 0x348320,27, 0x3483dc,43, 0x348490,3, 0x3484a0,2, 0x3484b0,3, 0x3484c0,2, 0x3484d0,3, 0x3484e0,2, 0x3484f0,3, 0x348500,2, 0x348510,3, 0x348520,2, 0x348530,3, 0x348540,2, 0x348550,3, 0x348560,2, 0x348570,3, 0x348580,64, 0x348780,18, 0x3487d0,4, 0x348800,13, 0x348880,1, 0x348888,8, 0x3488c0,6, 0x3488e0,1, 0x3488e8,2, 0x348904,44, 0x348a00,4, 0x348a14,1, 0x348a1c,1, 0x348a24,1, 0x348a2c,1, 0x348a34,1, 0x348a3c,7, 0x348a60,6, 0x348a80,36, 0x348b40,15, 0x348b80,4, 0x348bc0,11, 0x348c00,9, 0x348c40,9, 0x348c80,9, 0x348cc0,9, 0x348d00,16, 0x348d54,1, 0x348d5c,1, 0x348d64,1, 0x348d6c,1, 0x348d80,26, 0x348e00,26, 0x348e80,26, 0x348f00,26, 0x34a000,1, 0x34a00c,4, 0x34a020,4, 0x34a038,3, 0x34a0a8,38, 0x34a180,64, 0x34a2c0,8, 0x34a2f8,317, 0x34a804,1, 0x34a810,6, 0x34a884,1, 0x34a894,5, 0x34a904,1, 0x34a92c,21, 0x34aa04,1, 0x34aa0c,1, 0x34aa14,1, 0x34aa1c,1, 0x34aa24,1, 0x34aa2c,1, 0x34aa34,1, 0x34aa3c,13, 0x34aa78,8, 0x34ab04,5, 0x34ab44,1, 0x34ab4c,1, 0x34ab54,1, 0x34ab60,3, 0x34ab70,5, 0x34ab88,3, 0x34ab98,1, 0x34abc0,4, 0x34b000,34, 0x34b100,13, 0x34b140,15, 0x34b180,40, 0x34b240,11, 0x34b280,11, 0x34b300,10, 0x34b380,4, 0x34b3c0,3, 0x34b3d0,6, 0x34b400,28, 0x34b480,26, 0x34b500,20, 0x34b580,18, 0x34c000,19, 0x34ca00,10, 0x34ca80,3, 0x34cb00,6, 0x350000,3, 0x350010,1, 0x350030,13, 0x35006c,4, 0x350100,40, 0x3501fc,4, 0x350210,1, 0x350230,13, 0x35026c,4, 0x350300,40, 0x3503fc,4, 0x350410,1, 0x350430,13, 0x35046c,4, 0x350500,40, 0x3505fc,4, 0x350610,1, 0x350630,13, 0x35066c,4, 0x350700,40, 0x3507fc,9, 0x351000,19, 0x351a00,10, 0x351a80,3, 0x352000,6, 0x35201c,12, 0x352080,1, 0x352088,1, 0x352090,2, 0x3520a0,2, 0x352100,1, 0x35210c,2, 0x35211c,2, 0x35212c,2, 0x35213c,1, 0x352180,2, 0x35218c,1, 0x352200,27, 0x352300,7, 0x352320,2, 0x35232c,1, 0x352380,10, 0x3523c0,1, 0x352800,109, 0x3529c0,5, 0x352a00,109, 0x352bc0,5, 0x352c00,109, 0x352dc0,5, 0x353000,3, 0x353014,16, 0x353074,1, 0x353080,3, 0x353094,16, 0x3530f4,1, 0x353100,3, 0x353114,16, 0x353174,1, 0x353180,3, 0x353194,16, 0x3531f4,1, 0x353400,10, 0x353440,10, 0x353480,10, 0x3534c0,10, 0x353500,1, 0x353600,1, 0x353680,16, 0x353700,6, 0x353720,6, 0x353740,6, 0x353760,6, 0x353780,6, 0x3537a0,6, 0x3537c0,6, 0x3537e0,6, 0x354000,60, 0x354100,60, 0x354200,32, 0x354800,4, 0x354900,53, 0x354a00,4, 0x354a20,2, 0x355000,25, 0x355080,1, 0x355088,8, 0x3550c0,6, 0x3550e0,1, 0x3550e8,2, 0x355104,5, 0x355200,11, 0x355240,1, 0x355248,1, 0x355400,4, 0x358000,2, 0x358010,41, 0x3580b8,3, 0x358100,9, 0x358128,1, 0x358140,9, 0x358168,1, 0x358180,6, 0x3581a0,6, 0x3581c0,6, 0x3581e0,4, 0x358400,9, 0x358428,1, 0x358440,2, 0x35844c,3, 0x358464,1, 0x358474,22, 0x358504,1, 0x35852c,53, 0x358604,1, 0x358670,36, 0x358708,3, 0x358800,3, 0x358814,10, 0x358840,11, 0x358870,35, 0x358900,8, 0x358924,5, 0x358980,2, 0x35898c,2, 0x3589a0,2, 0x3589c0,1, 0x358a00,12, 0x358a34,22, 0x358ac0,7, 0x358b00,8, 0x358b24,5, 0x358b80,2, 0x358b8c,2, 0x358ba0,2, 0x358bc0,1, 0x358c00,12, 0x358c40,12, 0x358c80,12, 0x358cc0,12, 0x358d00,12, 0x358d40,12, 0x358d80,12, 0x358dc0,12, 0x358e00,1, 0x358e08,13, 0x358e40,12, 0x358e80,3, 0x358f00,7, 0x358f44,8, 0x358f80,6, 0x358fa0,2, 0x359000,9, 0x359040,9, 0x359080,9, 0x3590c0,9, 0x359104,1, 0x359110,5, 0x359128,2, 0x359134,1, 0x35913c,5, 0x359168,1, 0x359170,2, 0x359200,8, 0x359240,4, 0x359260,8, 0x359300,8, 0x359330,2, 0x359340,7, 0x359380,3, 0x359390,3, 0x3593a0,3, 0x3593b0,3, 0x3593c0,5, 0x359400,69, 0x359600,4, 0x359640,13, 0x359680,7, 0x3596a0,5, 0x3596c0,1, 0x35a000,25, 0x35a080,1, 0x35a088,8, 0x35a0c0,6, 0x35a0e0,1, 0x35a0e8,2, 0x35a104,5, 0x35a200,11, 0x35a240,1, 0x35a248,1, 0x35a400,4, 0x35b000,35, 0x35ba00,10, 0x35ba80,3, 0x35c000,8, 0x35c024,2, 0x35c040,2, 0x35c060,6, 0x35c080,1, 0x35c0f0,12, 0x35c124,2, 0x35c140,2, 0x35c160,6, 0x35c180,1, 0x35c1f0,12, 0x35c224,2, 0x35c240,2, 0x35c260,6, 0x35c280,1, 0x35c2f0,12, 0x35c324,2, 0x35c340,2, 0x35c360,6, 0x35c380,1, 0x35c3f0,4, 0x35c410,4, 0x35c5f8,2, 0x35d004,1, 0x35d040,16, 0x35d204,3, 0x35d224,1, 0x35d22c,1, 0x35d400,48, 0x35d4c4,2, 0x35d4d0,3, 0x35d600,37, 0x35d700,17, 0x35d748,2, 0x35d780,16, 0x35d800,25, 0x35d880,1, 0x35d888,8, 0x35d8c0,6, 0x35d8e0,1, 0x35d8e8,2, 0x35d904,14, 0x35da00,4, 0x35db00,60, 0x35dc00,4, 0x35dc40,12, 0x35dc80,5, 0x35dca0,1, 0x35dcb0,1, 0x35e000,3, 0x35e010,3, 0x35e020,3, 0x35e030,3, 0x35e040,3, 0x35e050,3, 0x35e060,3, 0x35e070,3, 0x35e080,8, 0x35e0e0,1, 0x35e100,1, 0x35e140,3, 0x35e160,8, 0x35e184,11, 0x35e1c0,1, 0x35e2c0,1, 0x35e2c8,14, 0x360000,1, 0x360008,3, 0x360018,3, 0x360030,7, 0x360070,2, 0x360080,1, 0x360088,3, 0x360098,3, 0x3600b0,7, 0x3600f0,2, 0x360100,1, 0x360108,3, 0x360118,3, 0x360130,7, 0x360170,2, 0x360180,1, 0x360188,3, 0x360198,3, 0x3601b0,7, 0x3601f0,2, 0x360200,3, 0x360210,3, 0x360220,3, 0x360230,3, 0x360240,10, 0x36026c,1, 0x360280,28, 0x3602f4,8, 0x360320,27, 0x3603dc,43, 0x360490,3, 0x3604a0,2, 0x3604b0,3, 0x3604c0,2, 0x3604d0,3, 0x3604e0,2, 0x3604f0,3, 0x360500,2, 0x360510,3, 0x360520,2, 0x360530,3, 0x360540,2, 0x360550,3, 0x360560,2, 0x360570,3, 0x360580,64, 0x360780,18, 0x3607d0,4, 0x360800,13, 0x360880,1, 0x360888,8, 0x3608c0,6, 0x3608e0,1, 0x3608e8,2, 0x360904,44, 0x360a00,4, 0x360a14,1, 0x360a1c,1, 0x360a24,1, 0x360a2c,1, 0x360a34,1, 0x360a3c,7, 0x360a60,6, 0x360a80,36, 0x360b40,15, 0x360b80,4, 0x360bc0,11, 0x360c00,9, 0x360c40,9, 0x360c80,9, 0x360cc0,9, 0x360d00,16, 0x360d54,1, 0x360d5c,1, 0x360d64,1, 0x360d6c,1, 0x360d80,26, 0x360e00,26, 0x360e80,26, 0x360f00,26, 0x362000,1, 0x36200c,4, 0x362020,4, 0x362038,3, 0x3620a8,38, 0x362180,64, 0x3622c0,8, 0x3622f8,317, 0x362804,1, 0x362810,6, 0x362884,1, 0x362894,5, 0x362904,1, 0x36292c,21, 0x362a04,1, 0x362a0c,1, 0x362a14,1, 0x362a1c,1, 0x362a24,1, 0x362a2c,1, 0x362a34,1, 0x362a3c,13, 0x362a78,8, 0x362b04,5, 0x362b44,1, 0x362b4c,1, 0x362b54,1, 0x362b60,3, 0x362b70,5, 0x362b88,3, 0x362b98,1, 0x362bc0,4, 0x363000,34, 0x363100,13, 0x363140,15, 0x363180,40, 0x363240,11, 0x363280,11, 0x363300,10, 0x363380,4, 0x3633c0,3, 0x3633d0,6, 0x363400,28, 0x363480,26, 0x363500,20, 0x363580,18, 0x364000,19, 0x364a00,10, 0x364a80,3, 0x364b00,6, 0x368000,3, 0x368010,1, 0x368030,13, 0x36806c,4, 0x368100,40, 0x3681fc,4, 0x368210,1, 0x368230,13, 0x36826c,4, 0x368300,40, 0x3683fc,4, 0x368410,1, 0x368430,13, 0x36846c,4, 0x368500,40, 0x3685fc,4, 0x368610,1, 0x368630,13, 0x36866c,4, 0x368700,40, 0x3687fc,9, 0x369000,19, 0x369a00,10, 0x369a80,3, 0x36a000,6, 0x36a01c,12, 0x36a080,1, 0x36a088,1, 0x36a090,2, 0x36a0a0,2, 0x36a100,1, 0x36a10c,2, 0x36a11c,2, 0x36a12c,2, 0x36a13c,1, 0x36a180,2, 0x36a18c,1, 0x36a200,27, 0x36a300,7, 0x36a320,2, 0x36a32c,1, 0x36a380,10, 0x36a3c0,1, 0x36a800,109, 0x36a9c0,5, 0x36aa00,109, 0x36abc0,5, 0x36ac00,109, 0x36adc0,5, 0x36b000,3, 0x36b014,16, 0x36b074,1, 0x36b080,3, 0x36b094,16, 0x36b0f4,1, 0x36b100,3, 0x36b114,16, 0x36b174,1, 0x36b180,3, 0x36b194,16, 0x36b1f4,1, 0x36b400,10, 0x36b440,10, 0x36b480,10, 0x36b4c0,10, 0x36b500,1, 0x36b600,1, 0x36b680,16, 0x36b700,6, 0x36b720,6, 0x36b740,6, 0x36b760,6, 0x36b780,6, 0x36b7a0,6, 0x36b7c0,6, 0x36b7e0,6, 0x36c000,60, 0x36c100,60, 0x36c200,32, 0x36c800,4, 0x36c900,53, 0x36ca00,4, 0x36ca20,2, 0x36d000,25, 0x36d080,1, 0x36d088,8, 0x36d0c0,6, 0x36d0e0,1, 0x36d0e8,2, 0x36d104,5, 0x36d200,11, 0x36d240,1, 0x36d248,1, 0x36d400,4, 0x370000,2, 0x370010,41, 0x3700b8,3, 0x370100,9, 0x370128,1, 0x370140,9, 0x370168,1, 0x370180,6, 0x3701a0,6, 0x3701c0,6, 0x3701e0,4, 0x370400,9, 0x370428,1, 0x370440,2, 0x37044c,3, 0x370464,1, 0x370474,22, 0x370504,1, 0x37052c,53, 0x370604,1, 0x370670,36, 0x370708,3, 0x370800,3, 0x370814,10, 0x370840,11, 0x370870,35, 0x370900,8, 0x370924,5, 0x370980,2, 0x37098c,2, 0x3709a0,2, 0x3709c0,1, 0x370a00,12, 0x370a34,22, 0x370ac0,7, 0x370b00,8, 0x370b24,5, 0x370b80,2, 0x370b8c,2, 0x370ba0,2, 0x370bc0,1, 0x370c00,12, 0x370c40,12, 0x370c80,12, 0x370cc0,12, 0x370d00,12, 0x370d40,12, 0x370d80,12, 0x370dc0,12, 0x370e00,1, 0x370e08,13, 0x370e40,12, 0x370e80,3, 0x370f00,7, 0x370f44,8, 0x370f80,6, 0x370fa0,2, 0x371000,9, 0x371040,9, 0x371080,9, 0x3710c0,9, 0x371104,1, 0x371110,5, 0x371128,2, 0x371134,1, 0x37113c,5, 0x371168,1, 0x371170,2, 0x371200,8, 0x371240,4, 0x371260,8, 0x371300,8, 0x371330,2, 0x371340,7, 0x371380,3, 0x371390,3, 0x3713a0,3, 0x3713b0,3, 0x3713c0,5, 0x371400,69, 0x371600,4, 0x371640,13, 0x371680,7, 0x3716a0,5, 0x3716c0,1, 0x372000,25, 0x372080,1, 0x372088,8, 0x3720c0,6, 0x3720e0,1, 0x3720e8,2, 0x372104,5, 0x372200,11, 0x372240,1, 0x372248,1, 0x372400,4, 0x373000,35, 0x373a00,10, 0x373a80,3, 0x374000,8, 0x374024,2, 0x374040,2, 0x374060,6, 0x374080,1, 0x3740f0,12, 0x374124,2, 0x374140,2, 0x374160,6, 0x374180,1, 0x3741f0,12, 0x374224,2, 0x374240,2, 0x374260,6, 0x374280,1, 0x3742f0,12, 0x374324,2, 0x374340,2, 0x374360,6, 0x374380,1, 0x3743f0,4, 0x374410,4, 0x3745f8,2, 0x375004,1, 0x375040,16, 0x375204,3, 0x375224,1, 0x37522c,1, 0x375400,48, 0x3754c4,2, 0x3754d0,3, 0x375600,37, 0x375700,17, 0x375748,2, 0x375780,16, 0x375800,25, 0x375880,1, 0x375888,8, 0x3758c0,6, 0x3758e0,1, 0x3758e8,2, 0x375904,14, 0x375a00,4, 0x375b00,60, 0x375c00,4, 0x375c40,12, 0x375c80,5, 0x375ca0,1, 0x375cb0,1, 0x376000,3, 0x376010,3, 0x376020,3, 0x376030,3, 0x376040,3, 0x376050,3, 0x376060,3, 0x376070,3, 0x376080,8, 0x3760e0,1, 0x376100,1, 0x376140,3, 0x376160,8, 0x376184,11, 0x3761c0,1, 0x3762c0,1, 0x3762c8,14, 0x378000,1, 0x378008,3, 0x378018,3, 0x378030,7, 0x378070,2, 0x378080,1, 0x378088,3, 0x378098,3, 0x3780b0,7, 0x3780f0,2, 0x378100,1, 0x378108,3, 0x378118,3, 0x378130,7, 0x378170,2, 0x378180,1, 0x378188,3, 0x378198,3, 0x3781b0,7, 0x3781f0,2, 0x378200,3, 0x378210,3, 0x378220,3, 0x378230,3, 0x378240,10, 0x37826c,1, 0x378280,28, 0x3782f4,8, 0x378320,27, 0x3783dc,43, 0x378490,3, 0x3784a0,2, 0x3784b0,3, 0x3784c0,2, 0x3784d0,3, 0x3784e0,2, 0x3784f0,3, 0x378500,2, 0x378510,3, 0x378520,2, 0x378530,3, 0x378540,2, 0x378550,3, 0x378560,2, 0x378570,3, 0x378580,64, 0x378780,18, 0x3787d0,4, 0x378800,13, 0x378880,1, 0x378888,8, 0x3788c0,6, 0x3788e0,1, 0x3788e8,2, 0x378904,44, 0x378a00,4, 0x378a14,1, 0x378a1c,1, 0x378a24,1, 0x378a2c,1, 0x378a34,1, 0x378a3c,7, 0x378a60,6, 0x378a80,36, 0x378b40,15, 0x378b80,4, 0x378bc0,11, 0x378c00,9, 0x378c40,9, 0x378c80,9, 0x378cc0,9, 0x378d00,16, 0x378d54,1, 0x378d5c,1, 0x378d64,1, 0x378d6c,1, 0x378d80,26, 0x378e00,26, 0x378e80,26, 0x378f00,26, 0x37a000,1, 0x37a00c,4, 0x37a020,4, 0x37a038,3, 0x37a0a8,38, 0x37a180,64, 0x37a2c0,8, 0x37a2f8,317, 0x37a804,1, 0x37a810,6, 0x37a884,1, 0x37a894,5, 0x37a904,1, 0x37a92c,21, 0x37aa04,1, 0x37aa0c,1, 0x37aa14,1, 0x37aa1c,1, 0x37aa24,1, 0x37aa2c,1, 0x37aa34,1, 0x37aa3c,13, 0x37aa78,8, 0x37ab04,5, 0x37ab44,1, 0x37ab4c,1, 0x37ab54,1, 0x37ab60,3, 0x37ab70,5, 0x37ab88,3, 0x37ab98,1, 0x37abc0,4, 0x37b000,34, 0x37b100,13, 0x37b140,15, 0x37b180,40, 0x37b240,11, 0x37b280,11, 0x37b300,10, 0x37b380,4, 0x37b3c0,3, 0x37b3d0,6, 0x37b400,28, 0x37b480,26, 0x37b500,20, 0x37b580,18, 0x37c000,19, 0x37ca00,10, 0x37ca80,3, 0x37cb00,6, 0x380000,3, 0x380010,1, 0x380030,13, 0x38006c,4, 0x380100,40, 0x3801fc,4, 0x380210,1, 0x380230,13, 0x38026c,4, 0x380300,40, 0x3803fc,4, 0x380410,1, 0x380430,13, 0x38046c,4, 0x380500,40, 0x3805fc,4, 0x380610,1, 0x380630,13, 0x38066c,4, 0x380700,40, 0x3807fc,9, 0x381000,19, 0x381a00,10, 0x381a80,3, 0x382000,6, 0x38201c,12, 0x382080,1, 0x382088,1, 0x382090,2, 0x3820a0,2, 0x382100,1, 0x38210c,2, 0x38211c,2, 0x38212c,2, 0x38213c,1, 0x382180,2, 0x38218c,1, 0x382200,27, 0x382300,7, 0x382320,2, 0x38232c,1, 0x382380,10, 0x3823c0,1, 0x382800,109, 0x3829c0,5, 0x382a00,109, 0x382bc0,5, 0x382c00,109, 0x382dc0,5, 0x383000,3, 0x383014,16, 0x383074,1, 0x383080,3, 0x383094,16, 0x3830f4,1, 0x383100,3, 0x383114,16, 0x383174,1, 0x383180,3, 0x383194,16, 0x3831f4,1, 0x383400,10, 0x383440,10, 0x383480,10, 0x3834c0,10, 0x383500,1, 0x383600,1, 0x383680,16, 0x383700,6, 0x383720,6, 0x383740,6, 0x383760,6, 0x383780,6, 0x3837a0,6, 0x3837c0,6, 0x3837e0,6, 0x384000,60, 0x384100,60, 0x384200,32, 0x384800,4, 0x384900,53, 0x384a00,4, 0x384a20,2, 0x385000,25, 0x385080,1, 0x385088,8, 0x3850c0,6, 0x3850e0,1, 0x3850e8,2, 0x385104,5, 0x385200,11, 0x385240,1, 0x385248,1, 0x385400,4, 0x388000,2, 0x388010,41, 0x3880b8,3, 0x388100,9, 0x388128,1, 0x388140,9, 0x388168,1, 0x388180,6, 0x3881a0,6, 0x3881c0,6, 0x3881e0,4, 0x388400,9, 0x388428,1, 0x388440,2, 0x38844c,3, 0x388464,1, 0x388474,22, 0x388504,1, 0x38852c,53, 0x388604,1, 0x388670,36, 0x388708,3, 0x388800,3, 0x388814,10, 0x388840,11, 0x388870,35, 0x388900,8, 0x388924,5, 0x388980,2, 0x38898c,2, 0x3889a0,2, 0x3889c0,1, 0x388a00,12, 0x388a34,22, 0x388ac0,7, 0x388b00,8, 0x388b24,5, 0x388b80,2, 0x388b8c,2, 0x388ba0,2, 0x388bc0,1, 0x388c00,12, 0x388c40,12, 0x388c80,12, 0x388cc0,12, 0x388d00,12, 0x388d40,12, 0x388d80,12, 0x388dc0,12, 0x388e00,1, 0x388e08,13, 0x388e40,12, 0x388e80,3, 0x388f00,7, 0x388f44,8, 0x388f80,6, 0x388fa0,2, 0x389000,9, 0x389040,9, 0x389080,9, 0x3890c0,9, 0x389104,1, 0x389110,5, 0x389128,2, 0x389134,1, 0x38913c,5, 0x389168,1, 0x389170,2, 0x389200,8, 0x389240,4, 0x389260,8, 0x389300,8, 0x389330,2, 0x389340,7, 0x389380,3, 0x389390,3, 0x3893a0,3, 0x3893b0,3, 0x3893c0,5, 0x389400,69, 0x389600,4, 0x389640,13, 0x389680,7, 0x3896a0,5, 0x3896c0,1, 0x38a000,25, 0x38a080,1, 0x38a088,8, 0x38a0c0,6, 0x38a0e0,1, 0x38a0e8,2, 0x38a104,5, 0x38a200,11, 0x38a240,1, 0x38a248,1, 0x38a400,4, 0x38b000,35, 0x38ba00,10, 0x38ba80,3, 0x38c000,8, 0x38c024,2, 0x38c040,2, 0x38c060,6, 0x38c080,1, 0x38c0f0,12, 0x38c124,2, 0x38c140,2, 0x38c160,6, 0x38c180,1, 0x38c1f0,12, 0x38c224,2, 0x38c240,2, 0x38c260,6, 0x38c280,1, 0x38c2f0,12, 0x38c324,2, 0x38c340,2, 0x38c360,6, 0x38c380,1, 0x38c3f0,4, 0x38c410,4, 0x38c5f8,2, 0x38d004,1, 0x38d040,16, 0x38d204,3, 0x38d224,1, 0x38d22c,1, 0x38d400,48, 0x38d4c4,2, 0x38d4d0,3, 0x38d600,37, 0x38d700,17, 0x38d748,2, 0x38d780,16, 0x38d800,25, 0x38d880,1, 0x38d888,8, 0x38d8c0,6, 0x38d8e0,1, 0x38d8e8,2, 0x38d904,14, 0x38da00,4, 0x38db00,60, 0x38dc00,4, 0x38dc40,12, 0x38dc80,5, 0x38dca0,1, 0x38dcb0,1, 0x38e000,3, 0x38e010,3, 0x38e020,3, 0x38e030,3, 0x38e040,3, 0x38e050,3, 0x38e060,3, 0x38e070,3, 0x38e080,8, 0x38e0e0,1, 0x38e100,1, 0x38e140,3, 0x38e160,8, 0x38e184,11, 0x38e1c0,1, 0x38e2c0,1, 0x38e2c8,14, 0x390000,1, 0x390008,3, 0x390018,3, 0x390030,7, 0x390070,2, 0x390080,1, 0x390088,3, 0x390098,3, 0x3900b0,7, 0x3900f0,2, 0x390100,1, 0x390108,3, 0x390118,3, 0x390130,7, 0x390170,2, 0x390180,1, 0x390188,3, 0x390198,3, 0x3901b0,7, 0x3901f0,2, 0x390200,3, 0x390210,3, 0x390220,3, 0x390230,3, 0x390240,10, 0x39026c,1, 0x390280,28, 0x3902f4,8, 0x390320,27, 0x3903dc,43, 0x390490,3, 0x3904a0,2, 0x3904b0,3, 0x3904c0,2, 0x3904d0,3, 0x3904e0,2, 0x3904f0,3, 0x390500,2, 0x390510,3, 0x390520,2, 0x390530,3, 0x390540,2, 0x390550,3, 0x390560,2, 0x390570,3, 0x390580,64, 0x390780,18, 0x3907d0,4, 0x390800,13, 0x390880,1, 0x390888,8, 0x3908c0,6, 0x3908e0,1, 0x3908e8,2, 0x390904,44, 0x390a00,4, 0x390a14,1, 0x390a1c,1, 0x390a24,1, 0x390a2c,1, 0x390a34,1, 0x390a3c,7, 0x390a60,6, 0x390a80,36, 0x390b40,15, 0x390b80,4, 0x390bc0,11, 0x390c00,9, 0x390c40,9, 0x390c80,9, 0x390cc0,9, 0x390d00,16, 0x390d54,1, 0x390d5c,1, 0x390d64,1, 0x390d6c,1, 0x390d80,26, 0x390e00,26, 0x390e80,26, 0x390f00,26, 0x392000,1, 0x39200c,4, 0x392020,4, 0x392038,3, 0x3920a8,38, 0x392180,64, 0x3922c0,8, 0x3922f8,317, 0x392804,1, 0x392810,6, 0x392884,1, 0x392894,5, 0x392904,1, 0x39292c,21, 0x392a04,1, 0x392a0c,1, 0x392a14,1, 0x392a1c,1, 0x392a24,1, 0x392a2c,1, 0x392a34,1, 0x392a3c,13, 0x392a78,8, 0x392b04,5, 0x392b44,1, 0x392b4c,1, 0x392b54,1, 0x392b60,3, 0x392b70,5, 0x392b88,3, 0x392b98,1, 0x392bc0,4, 0x393000,34, 0x393100,13, 0x393140,15, 0x393180,40, 0x393240,11, 0x393280,11, 0x393300,10, 0x393380,4, 0x3933c0,3, 0x3933d0,6, 0x393400,28, 0x393480,26, 0x393500,20, 0x393580,18, 0x394000,19, 0x394a00,10, 0x394a80,3, 0x394b00,6, 0x398000,3, 0x398010,1, 0x398030,13, 0x39806c,4, 0x398100,40, 0x3981fc,4, 0x398210,1, 0x398230,13, 0x39826c,4, 0x398300,40, 0x3983fc,4, 0x398410,1, 0x398430,13, 0x39846c,4, 0x398500,40, 0x3985fc,4, 0x398610,1, 0x398630,13, 0x39866c,4, 0x398700,40, 0x3987fc,9, 0x399000,19, 0x399a00,10, 0x399a80,3, 0x39a000,6, 0x39a01c,12, 0x39a080,1, 0x39a088,1, 0x39a090,2, 0x39a0a0,2, 0x39a100,1, 0x39a10c,2, 0x39a11c,2, 0x39a12c,2, 0x39a13c,1, 0x39a180,2, 0x39a18c,1, 0x39a200,27, 0x39a300,7, 0x39a320,2, 0x39a32c,1, 0x39a380,10, 0x39a3c0,1, 0x39a800,109, 0x39a9c0,5, 0x39aa00,109, 0x39abc0,5, 0x39ac00,109, 0x39adc0,5, 0x39b000,3, 0x39b014,16, 0x39b074,1, 0x39b080,3, 0x39b094,16, 0x39b0f4,1, 0x39b100,3, 0x39b114,16, 0x39b174,1, 0x39b180,3, 0x39b194,16, 0x39b1f4,1, 0x39b400,10, 0x39b440,10, 0x39b480,10, 0x39b4c0,10, 0x39b500,1, 0x39b600,1, 0x39b680,16, 0x39b700,6, 0x39b720,6, 0x39b740,6, 0x39b760,6, 0x39b780,6, 0x39b7a0,6, 0x39b7c0,6, 0x39b7e0,6, 0x39c000,60, 0x39c100,60, 0x39c200,32, 0x39c800,4, 0x39c900,53, 0x39ca00,4, 0x39ca20,2, 0x39d000,25, 0x39d080,1, 0x39d088,8, 0x39d0c0,6, 0x39d0e0,1, 0x39d0e8,2, 0x39d104,5, 0x39d200,11, 0x39d240,1, 0x39d248,1, 0x39d400,4, 0x3a0000,2, 0x3a0010,41, 0x3a00b8,3, 0x3a0100,9, 0x3a0128,1, 0x3a0140,9, 0x3a0168,1, 0x3a0180,6, 0x3a01a0,6, 0x3a01c0,6, 0x3a01e0,4, 0x3a0400,9, 0x3a0428,1, 0x3a0440,2, 0x3a044c,3, 0x3a0464,1, 0x3a0474,22, 0x3a0504,1, 0x3a052c,53, 0x3a0604,1, 0x3a0670,36, 0x3a0708,3, 0x3a0800,3, 0x3a0814,10, 0x3a0840,11, 0x3a0870,35, 0x3a0900,8, 0x3a0924,5, 0x3a0980,2, 0x3a098c,2, 0x3a09a0,2, 0x3a09c0,1, 0x3a0a00,12, 0x3a0a34,22, 0x3a0ac0,7, 0x3a0b00,8, 0x3a0b24,5, 0x3a0b80,2, 0x3a0b8c,2, 0x3a0ba0,2, 0x3a0bc0,1, 0x3a0c00,12, 0x3a0c40,12, 0x3a0c80,12, 0x3a0cc0,12, 0x3a0d00,12, 0x3a0d40,12, 0x3a0d80,12, 0x3a0dc0,12, 0x3a0e00,1, 0x3a0e08,13, 0x3a0e40,12, 0x3a0e80,3, 0x3a0f00,7, 0x3a0f44,8, 0x3a0f80,6, 0x3a0fa0,2, 0x3a1000,9, 0x3a1040,9, 0x3a1080,9, 0x3a10c0,9, 0x3a1104,1, 0x3a1110,5, 0x3a1128,2, 0x3a1134,1, 0x3a113c,5, 0x3a1168,1, 0x3a1170,2, 0x3a1200,8, 0x3a1240,4, 0x3a1260,8, 0x3a1300,8, 0x3a1330,2, 0x3a1340,7, 0x3a1380,3, 0x3a1390,3, 0x3a13a0,3, 0x3a13b0,3, 0x3a13c0,5, 0x3a1400,69, 0x3a1600,4, 0x3a1640,13, 0x3a1680,7, 0x3a16a0,5, 0x3a16c0,1, 0x3a2000,25, 0x3a2080,1, 0x3a2088,8, 0x3a20c0,6, 0x3a20e0,1, 0x3a20e8,2, 0x3a2104,5, 0x3a2200,11, 0x3a2240,1, 0x3a2248,1, 0x3a2400,4, 0x3a3000,35, 0x3a3a00,10, 0x3a3a80,3, 0x3a4000,8, 0x3a4024,2, 0x3a4040,2, 0x3a4060,6, 0x3a4080,1, 0x3a40f0,12, 0x3a4124,2, 0x3a4140,2, 0x3a4160,6, 0x3a4180,1, 0x3a41f0,12, 0x3a4224,2, 0x3a4240,2, 0x3a4260,6, 0x3a4280,1, 0x3a42f0,12, 0x3a4324,2, 0x3a4340,2, 0x3a4360,6, 0x3a4380,1, 0x3a43f0,4, 0x3a4410,4, 0x3a45f8,2, 0x3a5004,1, 0x3a5040,16, 0x3a5204,3, 0x3a5224,1, 0x3a522c,1, 0x3a5400,48, 0x3a54c4,2, 0x3a54d0,3, 0x3a5600,37, 0x3a5700,17, 0x3a5748,2, 0x3a5780,16, 0x3a5800,25, 0x3a5880,1, 0x3a5888,8, 0x3a58c0,6, 0x3a58e0,1, 0x3a58e8,2, 0x3a5904,14, 0x3a5a00,4, 0x3a5b00,60, 0x3a5c00,4, 0x3a5c40,12, 0x3a5c80,5, 0x3a5ca0,1, 0x3a5cb0,1, 0x3a6000,3, 0x3a6010,3, 0x3a6020,3, 0x3a6030,3, 0x3a6040,3, 0x3a6050,3, 0x3a6060,3, 0x3a6070,3, 0x3a6080,8, 0x3a60e0,1, 0x3a6100,1, 0x3a6140,3, 0x3a6160,8, 0x3a6184,11, 0x3a61c0,1, 0x3a62c0,1, 0x3a62c8,14, 0x3a8000,1, 0x3a8008,3, 0x3a8018,3, 0x3a8030,7, 0x3a8070,2, 0x3a8080,1, 0x3a8088,3, 0x3a8098,3, 0x3a80b0,7, 0x3a80f0,2, 0x3a8100,1, 0x3a8108,3, 0x3a8118,3, 0x3a8130,7, 0x3a8170,2, 0x3a8180,1, 0x3a8188,3, 0x3a8198,3, 0x3a81b0,7, 0x3a81f0,2, 0x3a8200,3, 0x3a8210,3, 0x3a8220,3, 0x3a8230,3, 0x3a8240,10, 0x3a826c,1, 0x3a8280,28, 0x3a82f4,8, 0x3a8320,27, 0x3a83dc,43, 0x3a8490,3, 0x3a84a0,2, 0x3a84b0,3, 0x3a84c0,2, 0x3a84d0,3, 0x3a84e0,2, 0x3a84f0,3, 0x3a8500,2, 0x3a8510,3, 0x3a8520,2, 0x3a8530,3, 0x3a8540,2, 0x3a8550,3, 0x3a8560,2, 0x3a8570,3, 0x3a8580,64, 0x3a8780,18, 0x3a87d0,4, 0x3a8800,13, 0x3a8880,1, 0x3a8888,8, 0x3a88c0,6, 0x3a88e0,1, 0x3a88e8,2, 0x3a8904,44, 0x3a8a00,4, 0x3a8a14,1, 0x3a8a1c,1, 0x3a8a24,1, 0x3a8a2c,1, 0x3a8a34,1, 0x3a8a3c,7, 0x3a8a60,6, 0x3a8a80,36, 0x3a8b40,15, 0x3a8b80,4, 0x3a8bc0,11, 0x3a8c00,9, 0x3a8c40,9, 0x3a8c80,9, 0x3a8cc0,9, 0x3a8d00,16, 0x3a8d54,1, 0x3a8d5c,1, 0x3a8d64,1, 0x3a8d6c,1, 0x3a8d80,26, 0x3a8e00,26, 0x3a8e80,26, 0x3a8f00,26, 0x3aa000,1, 0x3aa00c,4, 0x3aa020,4, 0x3aa038,3, 0x3aa0a8,38, 0x3aa180,64, 0x3aa2c0,8, 0x3aa2f8,317, 0x3aa804,1, 0x3aa810,6, 0x3aa884,1, 0x3aa894,5, 0x3aa904,1, 0x3aa92c,21, 0x3aaa04,1, 0x3aaa0c,1, 0x3aaa14,1, 0x3aaa1c,1, 0x3aaa24,1, 0x3aaa2c,1, 0x3aaa34,1, 0x3aaa3c,13, 0x3aaa78,8, 0x3aab04,5, 0x3aab44,1, 0x3aab4c,1, 0x3aab54,1, 0x3aab60,3, 0x3aab70,5, 0x3aab88,3, 0x3aab98,1, 0x3aabc0,4, 0x3ab000,34, 0x3ab100,13, 0x3ab140,15, 0x3ab180,40, 0x3ab240,11, 0x3ab280,11, 0x3ab300,10, 0x3ab380,4, 0x3ab3c0,3, 0x3ab3d0,6, 0x3ab400,28, 0x3ab480,26, 0x3ab500,20, 0x3ab580,18, 0x3ac000,19, 0x3aca00,10, 0x3aca80,3, 0x3acb00,6, 0x3b0000,3, 0x3b0010,1, 0x3b0030,13, 0x3b006c,4, 0x3b0100,40, 0x3b01fc,4, 0x3b0210,1, 0x3b0230,13, 0x3b026c,4, 0x3b0300,40, 0x3b03fc,4, 0x3b0410,1, 0x3b0430,13, 0x3b046c,4, 0x3b0500,40, 0x3b05fc,4, 0x3b0610,1, 0x3b0630,13, 0x3b066c,4, 0x3b0700,40, 0x3b07fc,9, 0x3b1000,19, 0x3b1a00,10, 0x3b1a80,3, 0x3b2000,6, 0x3b201c,12, 0x3b2080,1, 0x3b2088,1, 0x3b2090,2, 0x3b20a0,2, 0x3b2100,1, 0x3b210c,2, 0x3b211c,2, 0x3b212c,2, 0x3b213c,1, 0x3b2180,2, 0x3b218c,1, 0x3b2200,27, 0x3b2300,7, 0x3b2320,2, 0x3b232c,1, 0x3b2380,10, 0x3b23c0,1, 0x3b2800,109, 0x3b29c0,5, 0x3b2a00,109, 0x3b2bc0,5, 0x3b2c00,109, 0x3b2dc0,5, 0x3b3000,3, 0x3b3014,16, 0x3b3074,1, 0x3b3080,3, 0x3b3094,16, 0x3b30f4,1, 0x3b3100,3, 0x3b3114,16, 0x3b3174,1, 0x3b3180,3, 0x3b3194,16, 0x3b31f4,1, 0x3b3400,10, 0x3b3440,10, 0x3b3480,10, 0x3b34c0,10, 0x3b3500,1, 0x3b3600,1, 0x3b3680,16, 0x3b3700,6, 0x3b3720,6, 0x3b3740,6, 0x3b3760,6, 0x3b3780,6, 0x3b37a0,6, 0x3b37c0,6, 0x3b37e0,6, 0x3b4000,60, 0x3b4100,60, 0x3b4200,32, 0x3b4800,4, 0x3b4900,53, 0x3b4a00,4, 0x3b4a20,2, 0x3b5000,25, 0x3b5080,1, 0x3b5088,8, 0x3b50c0,6, 0x3b50e0,1, 0x3b50e8,2, 0x3b5104,5, 0x3b5200,11, 0x3b5240,1, 0x3b5248,1, 0x3b5400,4, 0x3b8000,2, 0x3b8010,41, 0x3b80b8,3, 0x3b8100,9, 0x3b8128,1, 0x3b8140,9, 0x3b8168,1, 0x3b8180,6, 0x3b81a0,6, 0x3b81c0,6, 0x3b81e0,4, 0x3b8400,9, 0x3b8428,1, 0x3b8440,2, 0x3b844c,3, 0x3b8464,1, 0x3b8474,22, 0x3b8504,1, 0x3b852c,53, 0x3b8604,1, 0x3b8670,36, 0x3b8708,3, 0x3b8800,3, 0x3b8814,10, 0x3b8840,11, 0x3b8870,35, 0x3b8900,8, 0x3b8924,5, 0x3b8980,2, 0x3b898c,2, 0x3b89a0,2, 0x3b89c0,1, 0x3b8a00,12, 0x3b8a34,22, 0x3b8ac0,7, 0x3b8b00,8, 0x3b8b24,5, 0x3b8b80,2, 0x3b8b8c,2, 0x3b8ba0,2, 0x3b8bc0,1, 0x3b8c00,12, 0x3b8c40,12, 0x3b8c80,12, 0x3b8cc0,12, 0x3b8d00,12, 0x3b8d40,12, 0x3b8d80,12, 0x3b8dc0,12, 0x3b8e00,1, 0x3b8e08,13, 0x3b8e40,12, 0x3b8e80,3, 0x3b8f00,7, 0x3b8f44,8, 0x3b8f80,6, 0x3b8fa0,2, 0x3b9000,9, 0x3b9040,9, 0x3b9080,9, 0x3b90c0,9, 0x3b9104,1, 0x3b9110,5, 0x3b9128,2, 0x3b9134,1, 0x3b913c,5, 0x3b9168,1, 0x3b9170,2, 0x3b9200,8, 0x3b9240,4, 0x3b9260,8, 0x3b9300,8, 0x3b9330,2, 0x3b9340,7, 0x3b9380,3, 0x3b9390,3, 0x3b93a0,3, 0x3b93b0,3, 0x3b93c0,5, 0x3b9400,69, 0x3b9600,4, 0x3b9640,13, 0x3b9680,7, 0x3b96a0,5, 0x3b96c0,1, 0x3ba000,25, 0x3ba080,1, 0x3ba088,8, 0x3ba0c0,6, 0x3ba0e0,1, 0x3ba0e8,2, 0x3ba104,5, 0x3ba200,11, 0x3ba240,1, 0x3ba248,1, 0x3ba400,4, 0x3bb000,35, 0x3bba00,10, 0x3bba80,3, 0x3bc000,8, 0x3bc024,2, 0x3bc040,2, 0x3bc060,6, 0x3bc080,1, 0x3bc0f0,12, 0x3bc124,2, 0x3bc140,2, 0x3bc160,6, 0x3bc180,1, 0x3bc1f0,12, 0x3bc224,2, 0x3bc240,2, 0x3bc260,6, 0x3bc280,1, 0x3bc2f0,12, 0x3bc324,2, 0x3bc340,2, 0x3bc360,6, 0x3bc380,1, 0x3bc3f0,4, 0x3bc410,4, 0x3bc5f8,2, 0x3bd004,1, 0x3bd040,16, 0x3bd204,3, 0x3bd224,1, 0x3bd22c,1, 0x3bd400,48, 0x3bd4c4,2, 0x3bd4d0,3, 0x3bd600,37, 0x3bd700,17, 0x3bd748,2, 0x3bd780,16, 0x3bd800,25, 0x3bd880,1, 0x3bd888,8, 0x3bd8c0,6, 0x3bd8e0,1, 0x3bd8e8,2, 0x3bd904,14, 0x3bda00,4, 0x3bdb00,60, 0x3bdc00,4, 0x3bdc40,12, 0x3bdc80,5, 0x3bdca0,1, 0x3bdcb0,1, 0x3be000,3, 0x3be010,3, 0x3be020,3, 0x3be030,3, 0x3be040,3, 0x3be050,3, 0x3be060,3, 0x3be070,3, 0x3be080,8, 0x3be0e0,1, 0x3be100,1, 0x3be140,3, 0x3be160,8, 0x3be184,11, 0x3be1c0,1, 0x3be2c0,1, 0x3be2c8,14, 0x3c0000,1, 0x3c0008,3, 0x3c0018,3, 0x3c0030,7, 0x3c0070,2, 0x3c0080,1, 0x3c0088,3, 0x3c0098,3, 0x3c00b0,7, 0x3c00f0,2, 0x3c0100,1, 0x3c0108,3, 0x3c0118,3, 0x3c0130,7, 0x3c0170,2, 0x3c0180,1, 0x3c0188,3, 0x3c0198,3, 0x3c01b0,7, 0x3c01f0,2, 0x3c0200,3, 0x3c0210,3, 0x3c0220,3, 0x3c0230,3, 0x3c0240,10, 0x3c026c,1, 0x3c0280,28, 0x3c02f4,8, 0x3c0320,27, 0x3c03dc,43, 0x3c0490,3, 0x3c04a0,2, 0x3c04b0,3, 0x3c04c0,2, 0x3c04d0,3, 0x3c04e0,2, 0x3c04f0,3, 0x3c0500,2, 0x3c0510,3, 0x3c0520,2, 0x3c0530,3, 0x3c0540,2, 0x3c0550,3, 0x3c0560,2, 0x3c0570,3, 0x3c0580,64, 0x3c0780,18, 0x3c07d0,4, 0x3c0800,13, 0x3c0880,1, 0x3c0888,8, 0x3c08c0,6, 0x3c08e0,1, 0x3c08e8,2, 0x3c0904,44, 0x3c0a00,4, 0x3c0a14,1, 0x3c0a1c,1, 0x3c0a24,1, 0x3c0a2c,1, 0x3c0a34,1, 0x3c0a3c,7, 0x3c0a60,6, 0x3c0a80,36, 0x3c0b40,15, 0x3c0b80,4, 0x3c0bc0,11, 0x3c0c00,9, 0x3c0c40,9, 0x3c0c80,9, 0x3c0cc0,9, 0x3c0d00,16, 0x3c0d54,1, 0x3c0d5c,1, 0x3c0d64,1, 0x3c0d6c,1, 0x3c0d80,26, 0x3c0e00,26, 0x3c0e80,26, 0x3c0f00,26, 0x3c2000,1, 0x3c200c,4, 0x3c2020,4, 0x3c2038,3, 0x3c20a8,38, 0x3c2180,64, 0x3c22c0,8, 0x3c22f8,317, 0x3c2804,1, 0x3c2810,6, 0x3c2884,1, 0x3c2894,5, 0x3c2904,1, 0x3c292c,21, 0x3c2a04,1, 0x3c2a0c,1, 0x3c2a14,1, 0x3c2a1c,1, 0x3c2a24,1, 0x3c2a2c,1, 0x3c2a34,1, 0x3c2a3c,13, 0x3c2a78,8, 0x3c2b04,5, 0x3c2b44,1, 0x3c2b4c,1, 0x3c2b54,1, 0x3c2b60,3, 0x3c2b70,5, 0x3c2b88,3, 0x3c2b98,1, 0x3c2bc0,4, 0x3c3000,34, 0x3c3100,13, 0x3c3140,15, 0x3c3180,40, 0x3c3240,11, 0x3c3280,11, 0x3c3300,10, 0x3c3380,4, 0x3c33c0,3, 0x3c33d0,6, 0x3c3400,28, 0x3c3480,26, 0x3c3500,20, 0x3c3580,18, 0x3c4000,19, 0x3c4a00,10, 0x3c4a80,3, 0x3c4b00,6, 0x3c8000,3, 0x3c8010,1, 0x3c8030,13, 0x3c806c,4, 0x3c8100,40, 0x3c81fc,4, 0x3c8210,1, 0x3c8230,13, 0x3c826c,4, 0x3c8300,40, 0x3c83fc,4, 0x3c8410,1, 0x3c8430,13, 0x3c846c,4, 0x3c8500,40, 0x3c85fc,4, 0x3c8610,1, 0x3c8630,13, 0x3c866c,4, 0x3c8700,40, 0x3c87fc,9, 0x3c9000,19, 0x3c9a00,10, 0x3c9a80,3, 0x3ca000,6, 0x3ca01c,12, 0x3ca080,1, 0x3ca088,1, 0x3ca090,2, 0x3ca0a0,2, 0x3ca100,1, 0x3ca10c,2, 0x3ca11c,2, 0x3ca12c,2, 0x3ca13c,1, 0x3ca180,2, 0x3ca18c,1, 0x3ca200,27, 0x3ca300,7, 0x3ca320,2, 0x3ca32c,1, 0x3ca380,10, 0x3ca3c0,1, 0x3ca800,109, 0x3ca9c0,5, 0x3caa00,109, 0x3cabc0,5, 0x3cac00,109, 0x3cadc0,5, 0x3cb000,3, 0x3cb014,16, 0x3cb074,1, 0x3cb080,3, 0x3cb094,16, 0x3cb0f4,1, 0x3cb100,3, 0x3cb114,16, 0x3cb174,1, 0x3cb180,3, 0x3cb194,16, 0x3cb1f4,1, 0x3cb400,10, 0x3cb440,10, 0x3cb480,10, 0x3cb4c0,10, 0x3cb500,1, 0x3cb600,1, 0x3cb680,16, 0x3cb700,6, 0x3cb720,6, 0x3cb740,6, 0x3cb760,6, 0x3cb780,6, 0x3cb7a0,6, 0x3cb7c0,6, 0x3cb7e0,6, 0x3cc000,60, 0x3cc100,60, 0x3cc200,32, 0x3cc800,4, 0x3cc900,53, 0x3cca00,4, 0x3cca20,2, 0x3cd000,25, 0x3cd080,1, 0x3cd088,8, 0x3cd0c0,6, 0x3cd0e0,1, 0x3cd0e8,2, 0x3cd104,5, 0x3cd200,11, 0x3cd240,1, 0x3cd248,1, 0x3cd400,4, 0x3d0000,2, 0x3d0010,41, 0x3d00b8,3, 0x3d0100,9, 0x3d0128,1, 0x3d0140,9, 0x3d0168,1, 0x3d0180,6, 0x3d01a0,6, 0x3d01c0,6, 0x3d01e0,4, 0x3d0400,9, 0x3d0428,1, 0x3d0440,2, 0x3d044c,3, 0x3d0464,1, 0x3d0474,22, 0x3d0504,1, 0x3d052c,53, 0x3d0604,1, 0x3d0670,36, 0x3d0708,3, 0x3d0800,3, 0x3d0814,10, 0x3d0840,11, 0x3d0870,35, 0x3d0900,8, 0x3d0924,5, 0x3d0980,2, 0x3d098c,2, 0x3d09a0,2, 0x3d09c0,1, 0x3d0a00,12, 0x3d0a34,22, 0x3d0ac0,7, 0x3d0b00,8, 0x3d0b24,5, 0x3d0b80,2, 0x3d0b8c,2, 0x3d0ba0,2, 0x3d0bc0,1, 0x3d0c00,12, 0x3d0c40,12, 0x3d0c80,12, 0x3d0cc0,12, 0x3d0d00,12, 0x3d0d40,12, 0x3d0d80,12, 0x3d0dc0,12, 0x3d0e00,1, 0x3d0e08,13, 0x3d0e40,12, 0x3d0e80,3, 0x3d0f00,7, 0x3d0f44,8, 0x3d0f80,6, 0x3d0fa0,2, 0x3d1000,9, 0x3d1040,9, 0x3d1080,9, 0x3d10c0,9, 0x3d1104,1, 0x3d1110,5, 0x3d1128,2, 0x3d1134,1, 0x3d113c,5, 0x3d1168,1, 0x3d1170,2, 0x3d1200,8, 0x3d1240,4, 0x3d1260,8, 0x3d1300,8, 0x3d1330,2, 0x3d1340,7, 0x3d1380,3, 0x3d1390,3, 0x3d13a0,3, 0x3d13b0,3, 0x3d13c0,5, 0x3d1400,69, 0x3d1600,4, 0x3d1640,13, 0x3d1680,7, 0x3d16a0,5, 0x3d16c0,1, 0x3d2000,25, 0x3d2080,1, 0x3d2088,8, 0x3d20c0,6, 0x3d20e0,1, 0x3d20e8,2, 0x3d2104,5, 0x3d2200,11, 0x3d2240,1, 0x3d2248,1, 0x3d2400,4, 0x3d3000,35, 0x3d3a00,10, 0x3d3a80,3, 0x3d4000,8, 0x3d4024,2, 0x3d4040,2, 0x3d4060,6, 0x3d4080,1, 0x3d40f0,12, 0x3d4124,2, 0x3d4140,2, 0x3d4160,6, 0x3d4180,1, 0x3d41f0,12, 0x3d4224,2, 0x3d4240,2, 0x3d4260,6, 0x3d4280,1, 0x3d42f0,12, 0x3d4324,2, 0x3d4340,2, 0x3d4360,6, 0x3d4380,1, 0x3d43f0,4, 0x3d4410,4, 0x3d45f8,2, 0x3d5004,1, 0x3d5040,16, 0x3d5204,3, 0x3d5224,1, 0x3d522c,1, 0x3d5400,48, 0x3d54c4,2, 0x3d54d0,3, 0x3d5600,37, 0x3d5700,17, 0x3d5748,2, 0x3d5780,16, 0x3d5800,25, 0x3d5880,1, 0x3d5888,8, 0x3d58c0,6, 0x3d58e0,1, 0x3d58e8,2, 0x3d5904,14, 0x3d5a00,4, 0x3d5b00,60, 0x3d5c00,4, 0x3d5c40,12, 0x3d5c80,5, 0x3d5ca0,1, 0x3d5cb0,1, 0x3d6000,3, 0x3d6010,3, 0x3d6020,3, 0x3d6030,3, 0x3d6040,3, 0x3d6050,3, 0x3d6060,3, 0x3d6070,3, 0x3d6080,8, 0x3d60e0,1, 0x3d6100,1, 0x3d6140,3, 0x3d6160,8, 0x3d6184,11, 0x3d61c0,1, 0x3d62c0,1, 0x3d62c8,14, 0x3d8000,1, 0x3d8008,3, 0x3d8018,3, 0x3d8030,7, 0x3d8070,2, 0x3d8080,1, 0x3d8088,3, 0x3d8098,3, 0x3d80b0,7, 0x3d80f0,2, 0x3d8100,1, 0x3d8108,3, 0x3d8118,3, 0x3d8130,7, 0x3d8170,2, 0x3d8180,1, 0x3d8188,3, 0x3d8198,3, 0x3d81b0,7, 0x3d81f0,2, 0x3d8200,3, 0x3d8210,3, 0x3d8220,3, 0x3d8230,3, 0x3d8240,10, 0x3d826c,1, 0x3d8280,28, 0x3d82f4,8, 0x3d8320,27, 0x3d83dc,43, 0x3d8490,3, 0x3d84a0,2, 0x3d84b0,3, 0x3d84c0,2, 0x3d84d0,3, 0x3d84e0,2, 0x3d84f0,3, 0x3d8500,2, 0x3d8510,3, 0x3d8520,2, 0x3d8530,3, 0x3d8540,2, 0x3d8550,3, 0x3d8560,2, 0x3d8570,3, 0x3d8580,64, 0x3d8780,18, 0x3d87d0,4, 0x3d8800,13, 0x3d8880,1, 0x3d8888,8, 0x3d88c0,6, 0x3d88e0,1, 0x3d88e8,2, 0x3d8904,44, 0x3d8a00,4, 0x3d8a14,1, 0x3d8a1c,1, 0x3d8a24,1, 0x3d8a2c,1, 0x3d8a34,1, 0x3d8a3c,7, 0x3d8a60,6, 0x3d8a80,36, 0x3d8b40,15, 0x3d8b80,4, 0x3d8bc0,11, 0x3d8c00,9, 0x3d8c40,9, 0x3d8c80,9, 0x3d8cc0,9, 0x3d8d00,16, 0x3d8d54,1, 0x3d8d5c,1, 0x3d8d64,1, 0x3d8d6c,1, 0x3d8d80,26, 0x3d8e00,26, 0x3d8e80,26, 0x3d8f00,26, 0x3da000,1, 0x3da00c,4, 0x3da020,4, 0x3da038,3, 0x3da0a8,38, 0x3da180,64, 0x3da2c0,8, 0x3da2f8,317, 0x3da804,1, 0x3da810,6, 0x3da884,1, 0x3da894,5, 0x3da904,1, 0x3da92c,21, 0x3daa04,1, 0x3daa0c,1, 0x3daa14,1, 0x3daa1c,1, 0x3daa24,1, 0x3daa2c,1, 0x3daa34,1, 0x3daa3c,13, 0x3daa78,8, 0x3dab04,5, 0x3dab44,1, 0x3dab4c,1, 0x3dab54,1, 0x3dab60,3, 0x3dab70,5, 0x3dab88,3, 0x3dab98,1, 0x3dabc0,4, 0x3db000,34, 0x3db100,13, 0x3db140,15, 0x3db180,40, 0x3db240,11, 0x3db280,11, 0x3db300,10, 0x3db380,4, 0x3db3c0,3, 0x3db3d0,6, 0x3db400,28, 0x3db480,26, 0x3db500,20, 0x3db580,18, 0x3dc000,19, 0x3dca00,10, 0x3dca80,3, 0x3dcb00,6, 0x3e0000,3, 0x3e0010,1, 0x3e0030,13, 0x3e006c,4, 0x3e0100,40, 0x3e01fc,4, 0x3e0210,1, 0x3e0230,13, 0x3e026c,4, 0x3e0300,40, 0x3e03fc,4, 0x3e0410,1, 0x3e0430,13, 0x3e046c,4, 0x3e0500,40, 0x3e05fc,4, 0x3e0610,1, 0x3e0630,13, 0x3e066c,4, 0x3e0700,40, 0x3e07fc,9, 0x3e1000,19, 0x3e1a00,10, 0x3e1a80,3, 0x3e2000,6, 0x3e201c,12, 0x3e2080,1, 0x3e2088,1, 0x3e2090,2, 0x3e20a0,2, 0x3e2100,1, 0x3e210c,2, 0x3e211c,2, 0x3e212c,2, 0x3e213c,1, 0x3e2180,2, 0x3e218c,1, 0x3e2200,27, 0x3e2300,7, 0x3e2320,2, 0x3e232c,1, 0x3e2380,10, 0x3e23c0,1, 0x3e2800,109, 0x3e29c0,5, 0x3e2a00,109, 0x3e2bc0,5, 0x3e2c00,109, 0x3e2dc0,5, 0x3e3000,3, 0x3e3014,16, 0x3e3074,1, 0x3e3080,3, 0x3e3094,16, 0x3e30f4,1, 0x3e3100,3, 0x3e3114,16, 0x3e3174,1, 0x3e3180,3, 0x3e3194,16, 0x3e31f4,1, 0x3e3400,10, 0x3e3440,10, 0x3e3480,10, 0x3e34c0,10, 0x3e3500,1, 0x3e3600,1, 0x3e3680,16, 0x3e3700,6, 0x3e3720,6, 0x3e3740,6, 0x3e3760,6, 0x3e3780,6, 0x3e37a0,6, 0x3e37c0,6, 0x3e37e0,6, 0x3e4000,60, 0x3e4100,60, 0x3e4200,32, 0x3e4800,4, 0x3e4900,53, 0x3e4a00,4, 0x3e4a20,2, 0x3e5000,25, 0x3e5080,1, 0x3e5088,8, 0x3e50c0,6, 0x3e50e0,1, 0x3e50e8,2, 0x3e5104,5, 0x3e5200,11, 0x3e5240,1, 0x3e5248,1, 0x3e5400,4, 0x3e8000,2, 0x3e8010,41, 0x3e80b8,3, 0x3e8100,9, 0x3e8128,1, 0x3e8140,9, 0x3e8168,1, 0x3e8180,6, 0x3e81a0,6, 0x3e81c0,6, 0x3e81e0,4, 0x3e8400,9, 0x3e8428,1, 0x3e8440,2, 0x3e844c,3, 0x3e8464,1, 0x3e8474,22, 0x3e8504,1, 0x3e852c,53, 0x3e8604,1, 0x3e8670,36, 0x3e8708,3, 0x3e8800,3, 0x3e8814,10, 0x3e8840,11, 0x3e8870,35, 0x3e8900,8, 0x3e8924,5, 0x3e8980,2, 0x3e898c,2, 0x3e89a0,2, 0x3e89c0,1, 0x3e8a00,12, 0x3e8a34,22, 0x3e8ac0,7, 0x3e8b00,8, 0x3e8b24,5, 0x3e8b80,2, 0x3e8b8c,2, 0x3e8ba0,2, 0x3e8bc0,1, 0x3e8c00,12, 0x3e8c40,12, 0x3e8c80,12, 0x3e8cc0,12, 0x3e8d00,12, 0x3e8d40,12, 0x3e8d80,12, 0x3e8dc0,12, 0x3e8e00,1, 0x3e8e08,13, 0x3e8e40,12, 0x3e8e80,3, 0x3e8f00,7, 0x3e8f44,8, 0x3e8f80,6, 0x3e8fa0,2, 0x3e9000,9, 0x3e9040,9, 0x3e9080,9, 0x3e90c0,9, 0x3e9104,1, 0x3e9110,5, 0x3e9128,2, 0x3e9134,1, 0x3e913c,5, 0x3e9168,1, 0x3e9170,2, 0x3e9200,8, 0x3e9240,4, 0x3e9260,8, 0x3e9300,8, 0x3e9330,2, 0x3e9340,7, 0x3e9380,3, 0x3e9390,3, 0x3e93a0,3, 0x3e93b0,3, 0x3e93c0,5, 0x3e9400,69, 0x3e9600,4, 0x3e9640,13, 0x3e9680,7, 0x3e96a0,5, 0x3e96c0,1, 0x3ea000,25, 0x3ea080,1, 0x3ea088,8, 0x3ea0c0,6, 0x3ea0e0,1, 0x3ea0e8,2, 0x3ea104,5, 0x3ea200,11, 0x3ea240,1, 0x3ea248,1, 0x3ea400,4, 0x3eb000,35, 0x3eba00,10, 0x3eba80,3, 0x3ec000,8, 0x3ec024,2, 0x3ec040,2, 0x3ec060,6, 0x3ec080,1, 0x3ec0f0,12, 0x3ec124,2, 0x3ec140,2, 0x3ec160,6, 0x3ec180,1, 0x3ec1f0,12, 0x3ec224,2, 0x3ec240,2, 0x3ec260,6, 0x3ec280,1, 0x3ec2f0,12, 0x3ec324,2, 0x3ec340,2, 0x3ec360,6, 0x3ec380,1, 0x3ec3f0,4, 0x3ec410,4, 0x3ec5f8,2, 0x3ed004,1, 0x3ed040,16, 0x3ed204,3, 0x3ed224,1, 0x3ed22c,1, 0x3ed400,48, 0x3ed4c4,2, 0x3ed4d0,3, 0x3ed600,37, 0x3ed700,17, 0x3ed748,2, 0x3ed780,16, 0x3ed800,25, 0x3ed880,1, 0x3ed888,8, 0x3ed8c0,6, 0x3ed8e0,1, 0x3ed8e8,2, 0x3ed904,14, 0x3eda00,4, 0x3edb00,60, 0x3edc00,4, 0x3edc40,12, 0x3edc80,5, 0x3edca0,1, 0x3edcb0,1, 0x3ee000,3, 0x3ee010,3, 0x3ee020,3, 0x3ee030,3, 0x3ee040,3, 0x3ee050,3, 0x3ee060,3, 0x3ee070,3, 0x3ee080,8, 0x3ee0e0,1, 0x3ee100,1, 0x3ee140,3, 0x3ee160,8, 0x3ee184,11, 0x3ee1c0,1, 0x3ee2c0,1, 0x3ee2c8,14, 0x3f0000,1, 0x3f0008,3, 0x3f0018,3, 0x3f0030,7, 0x3f0070,2, 0x3f0080,1, 0x3f0088,3, 0x3f0098,3, 0x3f00b0,7, 0x3f00f0,2, 0x3f0100,1, 0x3f0108,3, 0x3f0118,3, 0x3f0130,7, 0x3f0170,2, 0x3f0180,1, 0x3f0188,3, 0x3f0198,3, 0x3f01b0,7, 0x3f01f0,2, 0x3f0200,3, 0x3f0210,3, 0x3f0220,3, 0x3f0230,3, 0x3f0240,10, 0x3f026c,1, 0x3f0280,28, 0x3f02f4,8, 0x3f0320,27, 0x3f03dc,43, 0x3f0490,3, 0x3f04a0,2, 0x3f04b0,3, 0x3f04c0,2, 0x3f04d0,3, 0x3f04e0,2, 0x3f04f0,3, 0x3f0500,2, 0x3f0510,3, 0x3f0520,2, 0x3f0530,3, 0x3f0540,2, 0x3f0550,3, 0x3f0560,2, 0x3f0570,3, 0x3f0580,64, 0x3f0780,18, 0x3f07d0,4, 0x3f0800,13, 0x3f0880,1, 0x3f0888,8, 0x3f08c0,6, 0x3f08e0,1, 0x3f08e8,2, 0x3f0904,44, 0x3f0a00,4, 0x3f0a14,1, 0x3f0a1c,1, 0x3f0a24,1, 0x3f0a2c,1, 0x3f0a34,1, 0x3f0a3c,7, 0x3f0a60,6, 0x3f0a80,36, 0x3f0b40,15, 0x3f0b80,4, 0x3f0bc0,11, 0x3f0c00,9, 0x3f0c40,9, 0x3f0c80,9, 0x3f0cc0,9, 0x3f0d00,16, 0x3f0d54,1, 0x3f0d5c,1, 0x3f0d64,1, 0x3f0d6c,1, 0x3f0d80,26, 0x3f0e00,26, 0x3f0e80,26, 0x3f0f00,26, 0x3f2000,1, 0x3f200c,4, 0x3f2020,4, 0x3f2038,3, 0x3f20a8,38, 0x3f2180,64, 0x3f22c0,8, 0x3f22f8,317, 0x3f2804,1, 0x3f2810,6, 0x3f2884,1, 0x3f2894,5, 0x3f2904,1, 0x3f292c,21, 0x3f2a04,1, 0x3f2a0c,1, 0x3f2a14,1, 0x3f2a1c,1, 0x3f2a24,1, 0x3f2a2c,1, 0x3f2a34,1, 0x3f2a3c,13, 0x3f2a78,8, 0x3f2b04,5, 0x3f2b44,1, 0x3f2b4c,1, 0x3f2b54,1, 0x3f2b60,3, 0x3f2b70,5, 0x3f2b88,3, 0x3f2b98,1, 0x3f2bc0,4, 0x3f3000,34, 0x3f3100,13, 0x3f3140,15, 0x3f3180,40, 0x3f3240,11, 0x3f3280,11, 0x3f3300,10, 0x3f3380,4, 0x3f33c0,3, 0x3f33d0,6, 0x3f3400,28, 0x3f3480,26, 0x3f3500,20, 0x3f3580,18, 0x3f4000,19, 0x3f4a00,10, 0x3f4a80,3, 0x3f4b00,6, 0x3f8000,3, 0x3f8010,1, 0x3f8030,13, 0x3f806c,4, 0x3f8100,40, 0x3f81fc,4, 0x3f8210,1, 0x3f8230,13, 0x3f826c,4, 0x3f8300,40, 0x3f83fc,4, 0x3f8410,1, 0x3f8430,13, 0x3f846c,4, 0x3f8500,40, 0x3f85fc,4, 0x3f8610,1, 0x3f8630,13, 0x3f866c,4, 0x3f8700,40, 0x3f87fc,9, 0x3f9000,19, 0x3f9a00,10, 0x3f9a80,3, 0x3fa000,6, 0x3fa01c,12, 0x3fa080,1, 0x3fa088,1, 0x3fa090,2, 0x3fa0a0,2, 0x3fa100,1, 0x3fa10c,2, 0x3fa11c,2, 0x3fa12c,2, 0x3fa13c,1, 0x3fa180,2, 0x3fa18c,1, 0x3fa200,27, 0x3fa300,7, 0x3fa320,2, 0x3fa32c,1, 0x3fa380,10, 0x3fa3c0,1, 0x3fa800,109, 0x3fa9c0,5, 0x3faa00,109, 0x3fabc0,5, 0x3fac00,109, 0x3fadc0,5, 0x3fb000,3, 0x3fb014,16, 0x3fb074,1, 0x3fb080,3, 0x3fb094,16, 0x3fb0f4,1, 0x3fb100,3, 0x3fb114,16, 0x3fb174,1, 0x3fb180,3, 0x3fb194,16, 0x3fb1f4,1, 0x3fb400,10, 0x3fb440,10, 0x3fb480,10, 0x3fb4c0,10, 0x3fb500,1, 0x3fb600,1, 0x3fb680,16, 0x3fb700,6, 0x3fb720,6, 0x3fb740,6, 0x3fb760,6, 0x3fb780,6, 0x3fb7a0,6, 0x3fb7c0,6, 0x3fb7e0,6, 0x3fc000,60, 0x3fc100,60, 0x3fc200,32, 0x3fc800,4, 0x3fc900,53, 0x3fca00,4, 0x3fca20,2, 0x3fd000,25, 0x3fd080,1, 0x3fd088,8, 0x3fd0c0,6, 0x3fd0e0,1, 0x3fd0e8,2, 0x3fd104,5, 0x3fd200,11, 0x3fd240,1, 0x3fd248,1, 0x3fd400,4, 0x400000,2, 0x400010,41, 0x4000b8,3, 0x400100,9, 0x400128,1, 0x400140,9, 0x400168,1, 0x400180,6, 0x4001a0,6, 0x4001c0,6, 0x4001e0,4, 0x400400,9, 0x400428,1, 0x400440,2, 0x40044c,3, 0x400464,1, 0x400474,22, 0x400504,1, 0x40052c,53, 0x400604,1, 0x400670,36, 0x400708,3, 0x400800,3, 0x400814,10, 0x400840,11, 0x400870,35, 0x400900,8, 0x400924,5, 0x400980,2, 0x40098c,2, 0x4009a0,2, 0x4009c0,1, 0x400a00,12, 0x400a34,22, 0x400ac0,7, 0x400b00,8, 0x400b24,5, 0x400b80,2, 0x400b8c,2, 0x400ba0,2, 0x400bc0,1, 0x400c00,12, 0x400c40,12, 0x400c80,12, 0x400cc0,12, 0x400d00,12, 0x400d40,12, 0x400d80,12, 0x400dc0,12, 0x400e00,1, 0x400e08,13, 0x400e40,12, 0x400e80,3, 0x400f00,7, 0x400f44,8, 0x400f80,6, 0x400fa0,2, 0x401000,9, 0x401040,9, 0x401080,9, 0x4010c0,9, 0x401104,1, 0x401110,5, 0x401128,2, 0x401134,1, 0x40113c,5, 0x401168,1, 0x401170,2, 0x401200,8, 0x401240,4, 0x401260,8, 0x401300,8, 0x401330,2, 0x401340,7, 0x401380,3, 0x401390,3, 0x4013a0,3, 0x4013b0,3, 0x4013c0,5, 0x401400,69, 0x401600,4, 0x401640,13, 0x401680,7, 0x4016a0,5, 0x4016c0,1, 0x402000,25, 0x402080,1, 0x402088,8, 0x4020c0,6, 0x4020e0,1, 0x4020e8,2, 0x402104,5, 0x402200,11, 0x402240,1, 0x402248,1, 0x402400,4, 0x403000,35, 0x403a00,10, 0x403a80,3, 0x404000,8, 0x404024,2, 0x404040,2, 0x404060,6, 0x404080,1, 0x4040f0,12, 0x404124,2, 0x404140,2, 0x404160,6, 0x404180,1, 0x4041f0,12, 0x404224,2, 0x404240,2, 0x404260,6, 0x404280,1, 0x4042f0,12, 0x404324,2, 0x404340,2, 0x404360,6, 0x404380,1, 0x4043f0,4, 0x404410,4, 0x4045f8,2, 0x405004,1, 0x405040,16, 0x405204,3, 0x405224,1, 0x40522c,1, 0x405400,48, 0x4054c4,2, 0x4054d0,3, 0x405600,37, 0x405700,17, 0x405748,2, 0x405780,16, 0x405800,25, 0x405880,1, 0x405888,8, 0x4058c0,6, 0x4058e0,1, 0x4058e8,2, 0x405904,14, 0x405a00,4, 0x405b00,60, 0x405c00,4, 0x405c40,12, 0x405c80,5, 0x405ca0,1, 0x405cb0,1, 0x406000,3, 0x406010,3, 0x406020,3, 0x406030,3, 0x406040,3, 0x406050,3, 0x406060,3, 0x406070,3, 0x406080,8, 0x4060e0,1, 0x406100,1, 0x406140,3, 0x406160,8, 0x406184,11, 0x4061c0,1, 0x4062c0,1, 0x4062c8,14, 0x408000,1, 0x408008,3, 0x408018,3, 0x408030,7, 0x408070,2, 0x408080,1, 0x408088,3, 0x408098,3, 0x4080b0,7, 0x4080f0,2, 0x408100,1, 0x408108,3, 0x408118,3, 0x408130,7, 0x408170,2, 0x408180,1, 0x408188,3, 0x408198,3, 0x4081b0,7, 0x4081f0,2, 0x408200,3, 0x408210,3, 0x408220,3, 0x408230,3, 0x408240,10, 0x40826c,1, 0x408280,28, 0x4082f4,8, 0x408320,27, 0x4083dc,43, 0x408490,3, 0x4084a0,2, 0x4084b0,3, 0x4084c0,2, 0x4084d0,3, 0x4084e0,2, 0x4084f0,3, 0x408500,2, 0x408510,3, 0x408520,2, 0x408530,3, 0x408540,2, 0x408550,3, 0x408560,2, 0x408570,3, 0x408580,64, 0x408780,18, 0x4087d0,4, 0x408800,13, 0x408880,1, 0x408888,8, 0x4088c0,6, 0x4088e0,1, 0x4088e8,2, 0x408904,44, 0x408a00,4, 0x408a14,1, 0x408a1c,1, 0x408a24,1, 0x408a2c,1, 0x408a34,1, 0x408a3c,7, 0x408a60,6, 0x408a80,36, 0x408b40,15, 0x408b80,4, 0x408bc0,11, 0x408c00,9, 0x408c40,9, 0x408c80,9, 0x408cc0,9, 0x408d00,16, 0x408d54,1, 0x408d5c,1, 0x408d64,1, 0x408d6c,1, 0x408d80,26, 0x408e00,26, 0x408e80,26, 0x408f00,26, 0x40a000,1, 0x40a00c,4, 0x40a020,4, 0x40a038,3, 0x40a0a8,38, 0x40a180,64, 0x40a2c0,8, 0x40a2f8,317, 0x40a804,1, 0x40a810,6, 0x40a884,1, 0x40a894,5, 0x40a904,1, 0x40a92c,21, 0x40aa04,1, 0x40aa0c,1, 0x40aa14,1, 0x40aa1c,1, 0x40aa24,1, 0x40aa2c,1, 0x40aa34,1, 0x40aa3c,13, 0x40aa78,8, 0x40ab04,5, 0x40ab44,1, 0x40ab4c,1, 0x40ab54,1, 0x40ab60,3, 0x40ab70,5, 0x40ab88,3, 0x40ab98,1, 0x40abc0,4, 0x40b000,34, 0x40b100,13, 0x40b140,15, 0x40b180,40, 0x40b240,11, 0x40b280,11, 0x40b300,10, 0x40b380,4, 0x40b3c0,3, 0x40b3d0,6, 0x40b400,28, 0x40b480,26, 0x40b500,20, 0x40b580,18, 0x40c000,19, 0x40ca00,10, 0x40ca80,3, 0x40cb00,6, 0x410000,3, 0x410010,1, 0x410030,13, 0x41006c,4, 0x410100,40, 0x4101fc,4, 0x410210,1, 0x410230,13, 0x41026c,4, 0x410300,40, 0x4103fc,4, 0x410410,1, 0x410430,13, 0x41046c,4, 0x410500,40, 0x4105fc,4, 0x410610,1, 0x410630,13, 0x41066c,4, 0x410700,40, 0x4107fc,9, 0x411000,19, 0x411a00,10, 0x411a80,3, 0x412000,6, 0x41201c,12, 0x412080,1, 0x412088,1, 0x412090,2, 0x4120a0,2, 0x412100,1, 0x41210c,2, 0x41211c,2, 0x41212c,2, 0x41213c,1, 0x412180,2, 0x41218c,1, 0x412200,27, 0x412300,7, 0x412320,2, 0x41232c,1, 0x412380,10, 0x4123c0,1, 0x412800,109, 0x4129c0,5, 0x412a00,109, 0x412bc0,5, 0x412c00,109, 0x412dc0,5, 0x413000,3, 0x413014,16, 0x413074,1, 0x413080,3, 0x413094,16, 0x4130f4,1, 0x413100,3, 0x413114,16, 0x413174,1, 0x413180,3, 0x413194,16, 0x4131f4,1, 0x413400,10, 0x413440,10, 0x413480,10, 0x4134c0,10, 0x413500,1, 0x413600,1, 0x413680,16, 0x413700,6, 0x413720,6, 0x413740,6, 0x413760,6, 0x413780,6, 0x4137a0,6, 0x4137c0,6, 0x4137e0,6, 0x414000,60, 0x414100,60, 0x414200,32, 0x414800,4, 0x414900,53, 0x414a00,4, 0x414a20,2, 0x415000,25, 0x415080,1, 0x415088,8, 0x4150c0,6, 0x4150e0,1, 0x4150e8,2, 0x415104,5, 0x415200,11, 0x415240,1, 0x415248,1, 0x415400,4, 0x418000,2, 0x418010,41, 0x4180b8,3, 0x418100,9, 0x418128,1, 0x418140,9, 0x418168,1, 0x418180,6, 0x4181a0,6, 0x4181c0,6, 0x4181e0,4, 0x418400,9, 0x418428,1, 0x418440,2, 0x41844c,3, 0x418464,1, 0x418474,22, 0x418504,1, 0x41852c,53, 0x418604,1, 0x418670,36, 0x418708,3, 0x418800,3, 0x418814,10, 0x418840,11, 0x418870,35, 0x418900,8, 0x418924,5, 0x418980,2, 0x41898c,2, 0x4189a0,2, 0x4189c0,1, 0x418a00,12, 0x418a34,22, 0x418ac0,7, 0x418b00,8, 0x418b24,5, 0x418b80,2, 0x418b8c,2, 0x418ba0,2, 0x418bc0,1, 0x418c00,12, 0x418c40,12, 0x418c80,12, 0x418cc0,12, 0x418d00,12, 0x418d40,12, 0x418d80,12, 0x418dc0,12, 0x418e00,1, 0x418e08,13, 0x418e40,12, 0x418e80,3, 0x418f00,7, 0x418f44,8, 0x418f80,6, 0x418fa0,2, 0x419000,9, 0x419040,9, 0x419080,9, 0x4190c0,9, 0x419104,1, 0x419110,5, 0x419128,2, 0x419134,1, 0x41913c,5, 0x419168,1, 0x419170,2, 0x419200,8, 0x419240,4, 0x419260,8, 0x419300,8, 0x419330,2, 0x419340,7, 0x419380,3, 0x419390,3, 0x4193a0,3, 0x4193b0,3, 0x4193c0,5, 0x419400,69, 0x419600,4, 0x419640,13, 0x419680,7, 0x4196a0,5, 0x4196c0,1, 0x41a000,25, 0x41a080,1, 0x41a088,8, 0x41a0c0,6, 0x41a0e0,1, 0x41a0e8,2, 0x41a104,5, 0x41a200,11, 0x41a240,1, 0x41a248,1, 0x41a400,4, 0x41b000,35, 0x41ba00,10, 0x41ba80,3, 0x41c000,8, 0x41c024,2, 0x41c040,2, 0x41c060,6, 0x41c080,1, 0x41c0f0,12, 0x41c124,2, 0x41c140,2, 0x41c160,6, 0x41c180,1, 0x41c1f0,12, 0x41c224,2, 0x41c240,2, 0x41c260,6, 0x41c280,1, 0x41c2f0,12, 0x41c324,2, 0x41c340,2, 0x41c360,6, 0x41c380,1, 0x41c3f0,4, 0x41c410,4, 0x41c5f8,2, 0x41d004,1, 0x41d040,16, 0x41d204,3, 0x41d224,1, 0x41d22c,1, 0x41d400,48, 0x41d4c4,2, 0x41d4d0,3, 0x41d600,37, 0x41d700,17, 0x41d748,2, 0x41d780,16, 0x41d800,25, 0x41d880,1, 0x41d888,8, 0x41d8c0,6, 0x41d8e0,1, 0x41d8e8,2, 0x41d904,14, 0x41da00,4, 0x41db00,60, 0x41dc00,4, 0x41dc40,12, 0x41dc80,5, 0x41dca0,1, 0x41dcb0,1, 0x41e000,3, 0x41e010,3, 0x41e020,3, 0x41e030,3, 0x41e040,3, 0x41e050,3, 0x41e060,3, 0x41e070,3, 0x41e080,8, 0x41e0e0,1, 0x41e100,1, 0x41e140,3, 0x41e160,8, 0x41e184,11, 0x41e1c0,1, 0x41e2c0,1, 0x41e2c8,14, 0x420000,1, 0x420008,3, 0x420018,3, 0x420030,7, 0x420070,2, 0x420080,1, 0x420088,3, 0x420098,3, 0x4200b0,7, 0x4200f0,2, 0x420100,1, 0x420108,3, 0x420118,3, 0x420130,7, 0x420170,2, 0x420180,1, 0x420188,3, 0x420198,3, 0x4201b0,7, 0x4201f0,2, 0x420200,3, 0x420210,3, 0x420220,3, 0x420230,3, 0x420240,10, 0x42026c,1, 0x420280,28, 0x4202f4,8, 0x420320,27, 0x4203dc,43, 0x420490,3, 0x4204a0,2, 0x4204b0,3, 0x4204c0,2, 0x4204d0,3, 0x4204e0,2, 0x4204f0,3, 0x420500,2, 0x420510,3, 0x420520,2, 0x420530,3, 0x420540,2, 0x420550,3, 0x420560,2, 0x420570,3, 0x420580,64, 0x420780,18, 0x4207d0,4, 0x420800,13, 0x420880,1, 0x420888,8, 0x4208c0,6, 0x4208e0,1, 0x4208e8,2, 0x420904,44, 0x420a00,4, 0x420a14,1, 0x420a1c,1, 0x420a24,1, 0x420a2c,1, 0x420a34,1, 0x420a3c,7, 0x420a60,6, 0x420a80,36, 0x420b40,15, 0x420b80,4, 0x420bc0,11, 0x420c00,9, 0x420c40,9, 0x420c80,9, 0x420cc0,9, 0x420d00,16, 0x420d54,1, 0x420d5c,1, 0x420d64,1, 0x420d6c,1, 0x420d80,26, 0x420e00,26, 0x420e80,26, 0x420f00,26, 0x422000,1, 0x42200c,4, 0x422020,4, 0x422038,3, 0x4220a8,38, 0x422180,64, 0x4222c0,8, 0x4222f8,317, 0x422804,1, 0x422810,6, 0x422884,1, 0x422894,5, 0x422904,1, 0x42292c,21, 0x422a04,1, 0x422a0c,1, 0x422a14,1, 0x422a1c,1, 0x422a24,1, 0x422a2c,1, 0x422a34,1, 0x422a3c,13, 0x422a78,8, 0x422b04,5, 0x422b44,1, 0x422b4c,1, 0x422b54,1, 0x422b60,3, 0x422b70,5, 0x422b88,3, 0x422b98,1, 0x422bc0,4, 0x423000,34, 0x423100,13, 0x423140,15, 0x423180,40, 0x423240,11, 0x423280,11, 0x423300,10, 0x423380,4, 0x4233c0,3, 0x4233d0,6, 0x423400,28, 0x423480,26, 0x423500,20, 0x423580,18, 0x424000,19, 0x424a00,10, 0x424a80,3, 0x424b00,6, 0x428000,3, 0x428010,1, 0x428030,13, 0x42806c,4, 0x428100,40, 0x4281fc,4, 0x428210,1, 0x428230,13, 0x42826c,4, 0x428300,40, 0x4283fc,4, 0x428410,1, 0x428430,13, 0x42846c,4, 0x428500,40, 0x4285fc,4, 0x428610,1, 0x428630,13, 0x42866c,4, 0x428700,40, 0x4287fc,9, 0x429000,19, 0x429a00,10, 0x429a80,3, 0x42a000,6, 0x42a01c,12, 0x42a080,1, 0x42a088,1, 0x42a090,2, 0x42a0a0,2, 0x42a100,1, 0x42a10c,2, 0x42a11c,2, 0x42a12c,2, 0x42a13c,1, 0x42a180,2, 0x42a18c,1, 0x42a200,27, 0x42a300,7, 0x42a320,2, 0x42a32c,1, 0x42a380,10, 0x42a3c0,1, 0x42a800,109, 0x42a9c0,5, 0x42aa00,109, 0x42abc0,5, 0x42ac00,109, 0x42adc0,5, 0x42b000,3, 0x42b014,16, 0x42b074,1, 0x42b080,3, 0x42b094,16, 0x42b0f4,1, 0x42b100,3, 0x42b114,16, 0x42b174,1, 0x42b180,3, 0x42b194,16, 0x42b1f4,1, 0x42b400,10, 0x42b440,10, 0x42b480,10, 0x42b4c0,10, 0x42b500,1, 0x42b600,1, 0x42b680,16, 0x42b700,6, 0x42b720,6, 0x42b740,6, 0x42b760,6, 0x42b780,6, 0x42b7a0,6, 0x42b7c0,6, 0x42b7e0,6, 0x42c000,60, 0x42c100,60, 0x42c200,32, 0x42c800,4, 0x42c900,53, 0x42ca00,4, 0x42ca20,2, 0x42d000,25, 0x42d080,1, 0x42d088,8, 0x42d0c0,6, 0x42d0e0,1, 0x42d0e8,2, 0x42d104,5, 0x42d200,11, 0x42d240,1, 0x42d248,1, 0x42d400,4, 0x430000,2, 0x430010,41, 0x4300b8,3, 0x430100,9, 0x430128,1, 0x430140,9, 0x430168,1, 0x430180,6, 0x4301a0,6, 0x4301c0,6, 0x4301e0,4, 0x430400,9, 0x430428,1, 0x430440,2, 0x43044c,3, 0x430464,1, 0x430474,22, 0x430504,1, 0x43052c,53, 0x430604,1, 0x430670,36, 0x430708,3, 0x430800,3, 0x430814,10, 0x430840,11, 0x430870,35, 0x430900,8, 0x430924,5, 0x430980,2, 0x43098c,2, 0x4309a0,2, 0x4309c0,1, 0x430a00,12, 0x430a34,22, 0x430ac0,7, 0x430b00,8, 0x430b24,5, 0x430b80,2, 0x430b8c,2, 0x430ba0,2, 0x430bc0,1, 0x430c00,12, 0x430c40,12, 0x430c80,12, 0x430cc0,12, 0x430d00,12, 0x430d40,12, 0x430d80,12, 0x430dc0,12, 0x430e00,1, 0x430e08,13, 0x430e40,12, 0x430e80,3, 0x430f00,7, 0x430f44,8, 0x430f80,6, 0x430fa0,2, 0x431000,9, 0x431040,9, 0x431080,9, 0x4310c0,9, 0x431104,1, 0x431110,5, 0x431128,2, 0x431134,1, 0x43113c,5, 0x431168,1, 0x431170,2, 0x431200,8, 0x431240,4, 0x431260,8, 0x431300,8, 0x431330,2, 0x431340,7, 0x431380,3, 0x431390,3, 0x4313a0,3, 0x4313b0,3, 0x4313c0,5, 0x431400,69, 0x431600,4, 0x431640,13, 0x431680,7, 0x4316a0,5, 0x4316c0,1, 0x432000,25, 0x432080,1, 0x432088,8, 0x4320c0,6, 0x4320e0,1, 0x4320e8,2, 0x432104,5, 0x432200,11, 0x432240,1, 0x432248,1, 0x432400,4, 0x433000,35, 0x433a00,10, 0x433a80,3, 0x434000,8, 0x434024,2, 0x434040,2, 0x434060,6, 0x434080,1, 0x4340f0,12, 0x434124,2, 0x434140,2, 0x434160,6, 0x434180,1, 0x4341f0,12, 0x434224,2, 0x434240,2, 0x434260,6, 0x434280,1, 0x4342f0,12, 0x434324,2, 0x434340,2, 0x434360,6, 0x434380,1, 0x4343f0,4, 0x434410,4, 0x4345f8,2, 0x435004,1, 0x435040,16, 0x435204,3, 0x435224,1, 0x43522c,1, 0x435400,48, 0x4354c4,2, 0x4354d0,3, 0x435600,37, 0x435700,17, 0x435748,2, 0x435780,16, 0x435800,25, 0x435880,1, 0x435888,8, 0x4358c0,6, 0x4358e0,1, 0x4358e8,2, 0x435904,14, 0x435a00,4, 0x435b00,60, 0x435c00,4, 0x435c40,12, 0x435c80,5, 0x435ca0,1, 0x435cb0,1, 0x436000,3, 0x436010,3, 0x436020,3, 0x436030,3, 0x436040,3, 0x436050,3, 0x436060,3, 0x436070,3, 0x436080,8, 0x4360e0,1, 0x436100,1, 0x436140,3, 0x436160,8, 0x436184,11, 0x4361c0,1, 0x4362c0,1, 0x4362c8,14, 0x438000,1, 0x438008,3, 0x438018,3, 0x438030,7, 0x438070,2, 0x438080,1, 0x438088,3, 0x438098,3, 0x4380b0,7, 0x4380f0,2, 0x438100,1, 0x438108,3, 0x438118,3, 0x438130,7, 0x438170,2, 0x438180,1, 0x438188,3, 0x438198,3, 0x4381b0,7, 0x4381f0,2, 0x438200,3, 0x438210,3, 0x438220,3, 0x438230,3, 0x438240,10, 0x43826c,1, 0x438280,28, 0x4382f4,8, 0x438320,27, 0x4383dc,43, 0x438490,3, 0x4384a0,2, 0x4384b0,3, 0x4384c0,2, 0x4384d0,3, 0x4384e0,2, 0x4384f0,3, 0x438500,2, 0x438510,3, 0x438520,2, 0x438530,3, 0x438540,2, 0x438550,3, 0x438560,2, 0x438570,3, 0x438580,64, 0x438780,18, 0x4387d0,4, 0x438800,13, 0x438880,1, 0x438888,8, 0x4388c0,6, 0x4388e0,1, 0x4388e8,2, 0x438904,44, 0x438a00,4, 0x438a14,1, 0x438a1c,1, 0x438a24,1, 0x438a2c,1, 0x438a34,1, 0x438a3c,7, 0x438a60,6, 0x438a80,36, 0x438b40,15, 0x438b80,4, 0x438bc0,11, 0x438c00,9, 0x438c40,9, 0x438c80,9, 0x438cc0,9, 0x438d00,16, 0x438d54,1, 0x438d5c,1, 0x438d64,1, 0x438d6c,1, 0x438d80,26, 0x438e00,26, 0x438e80,26, 0x438f00,26, 0x43a000,1, 0x43a00c,4, 0x43a020,4, 0x43a038,3, 0x43a0a8,38, 0x43a180,64, 0x43a2c0,8, 0x43a2f8,317, 0x43a804,1, 0x43a810,6, 0x43a884,1, 0x43a894,5, 0x43a904,1, 0x43a92c,21, 0x43aa04,1, 0x43aa0c,1, 0x43aa14,1, 0x43aa1c,1, 0x43aa24,1, 0x43aa2c,1, 0x43aa34,1, 0x43aa3c,13, 0x43aa78,8, 0x43ab04,5, 0x43ab44,1, 0x43ab4c,1, 0x43ab54,1, 0x43ab60,3, 0x43ab70,5, 0x43ab88,3, 0x43ab98,1, 0x43abc0,4, 0x43b000,34, 0x43b100,13, 0x43b140,15, 0x43b180,40, 0x43b240,11, 0x43b280,11, 0x43b300,10, 0x43b380,4, 0x43b3c0,3, 0x43b3d0,6, 0x43b400,28, 0x43b480,26, 0x43b500,20, 0x43b580,18, 0x43c000,19, 0x43ca00,10, 0x43ca80,3, 0x43cb00,6, 0x440000,3, 0x440010,1, 0x440030,13, 0x44006c,4, 0x440100,40, 0x4401fc,4, 0x440210,1, 0x440230,13, 0x44026c,4, 0x440300,40, 0x4403fc,4, 0x440410,1, 0x440430,13, 0x44046c,4, 0x440500,40, 0x4405fc,4, 0x440610,1, 0x440630,13, 0x44066c,4, 0x440700,40, 0x4407fc,9, 0x441000,19, 0x441a00,10, 0x441a80,3, 0x442000,6, 0x44201c,12, 0x442080,1, 0x442088,1, 0x442090,2, 0x4420a0,2, 0x442100,1, 0x44210c,2, 0x44211c,2, 0x44212c,2, 0x44213c,1, 0x442180,2, 0x44218c,1, 0x442200,27, 0x442300,7, 0x442320,2, 0x44232c,1, 0x442380,10, 0x4423c0,1, 0x442800,109, 0x4429c0,5, 0x442a00,109, 0x442bc0,5, 0x442c00,109, 0x442dc0,5, 0x443000,3, 0x443014,16, 0x443074,1, 0x443080,3, 0x443094,16, 0x4430f4,1, 0x443100,3, 0x443114,16, 0x443174,1, 0x443180,3, 0x443194,16, 0x4431f4,1, 0x443400,10, 0x443440,10, 0x443480,10, 0x4434c0,10, 0x443500,1, 0x443600,1, 0x443680,16, 0x443700,6, 0x443720,6, 0x443740,6, 0x443760,6, 0x443780,6, 0x4437a0,6, 0x4437c0,6, 0x4437e0,6, 0x444000,60, 0x444100,60, 0x444200,32, 0x444800,4, 0x444900,53, 0x444a00,4, 0x444a20,2, 0x445000,25, 0x445080,1, 0x445088,8, 0x4450c0,6, 0x4450e0,1, 0x4450e8,2, 0x445104,5, 0x445200,11, 0x445240,1, 0x445248,1, 0x445400,4, 0x448000,2, 0x448010,41, 0x4480b8,3, 0x448100,9, 0x448128,1, 0x448140,9, 0x448168,1, 0x448180,6, 0x4481a0,6, 0x4481c0,6, 0x4481e0,4, 0x448400,9, 0x448428,1, 0x448440,2, 0x44844c,3, 0x448464,1, 0x448474,22, 0x448504,1, 0x44852c,53, 0x448604,1, 0x448670,36, 0x448708,3, 0x448800,3, 0x448814,10, 0x448840,11, 0x448870,35, 0x448900,8, 0x448924,5, 0x448980,2, 0x44898c,2, 0x4489a0,2, 0x4489c0,1, 0x448a00,12, 0x448a34,22, 0x448ac0,7, 0x448b00,8, 0x448b24,5, 0x448b80,2, 0x448b8c,2, 0x448ba0,2, 0x448bc0,1, 0x448c00,12, 0x448c40,12, 0x448c80,12, 0x448cc0,12, 0x448d00,12, 0x448d40,12, 0x448d80,12, 0x448dc0,12, 0x448e00,1, 0x448e08,13, 0x448e40,12, 0x448e80,3, 0x448f00,7, 0x448f44,8, 0x448f80,6, 0x448fa0,2, 0x449000,9, 0x449040,9, 0x449080,9, 0x4490c0,9, 0x449104,1, 0x449110,5, 0x449128,2, 0x449134,1, 0x44913c,5, 0x449168,1, 0x449170,2, 0x449200,8, 0x449240,4, 0x449260,8, 0x449300,8, 0x449330,2, 0x449340,7, 0x449380,3, 0x449390,3, 0x4493a0,3, 0x4493b0,3, 0x4493c0,5, 0x449400,69, 0x449600,4, 0x449640,13, 0x449680,7, 0x4496a0,5, 0x4496c0,1, 0x44a000,25, 0x44a080,1, 0x44a088,8, 0x44a0c0,6, 0x44a0e0,1, 0x44a0e8,2, 0x44a104,5, 0x44a200,11, 0x44a240,1, 0x44a248,1, 0x44a400,4, 0x44b000,35, 0x44ba00,10, 0x44ba80,3, 0x44c000,8, 0x44c024,2, 0x44c040,2, 0x44c060,6, 0x44c080,1, 0x44c0f0,12, 0x44c124,2, 0x44c140,2, 0x44c160,6, 0x44c180,1, 0x44c1f0,12, 0x44c224,2, 0x44c240,2, 0x44c260,6, 0x44c280,1, 0x44c2f0,12, 0x44c324,2, 0x44c340,2, 0x44c360,6, 0x44c380,1, 0x44c3f0,4, 0x44c410,4, 0x44c5f8,2, 0x44d004,1, 0x44d040,16, 0x44d204,3, 0x44d224,1, 0x44d22c,1, 0x44d400,48, 0x44d4c4,2, 0x44d4d0,3, 0x44d600,37, 0x44d700,17, 0x44d748,2, 0x44d780,16, 0x44d800,25, 0x44d880,1, 0x44d888,8, 0x44d8c0,6, 0x44d8e0,1, 0x44d8e8,2, 0x44d904,14, 0x44da00,4, 0x44db00,60, 0x44dc00,4, 0x44dc40,12, 0x44dc80,5, 0x44dca0,1, 0x44dcb0,1, 0x44e000,3, 0x44e010,3, 0x44e020,3, 0x44e030,3, 0x44e040,3, 0x44e050,3, 0x44e060,3, 0x44e070,3, 0x44e080,8, 0x44e0e0,1, 0x44e100,1, 0x44e140,3, 0x44e160,8, 0x44e184,11, 0x44e1c0,1, 0x44e2c0,1, 0x44e2c8,14, 0x450000,1, 0x450008,3, 0x450018,3, 0x450030,7, 0x450070,2, 0x450080,1, 0x450088,3, 0x450098,3, 0x4500b0,7, 0x4500f0,2, 0x450100,1, 0x450108,3, 0x450118,3, 0x450130,7, 0x450170,2, 0x450180,1, 0x450188,3, 0x450198,3, 0x4501b0,7, 0x4501f0,2, 0x450200,3, 0x450210,3, 0x450220,3, 0x450230,3, 0x450240,10, 0x45026c,1, 0x450280,28, 0x4502f4,8, 0x450320,27, 0x4503dc,43, 0x450490,3, 0x4504a0,2, 0x4504b0,3, 0x4504c0,2, 0x4504d0,3, 0x4504e0,2, 0x4504f0,3, 0x450500,2, 0x450510,3, 0x450520,2, 0x450530,3, 0x450540,2, 0x450550,3, 0x450560,2, 0x450570,3, 0x450580,64, 0x450780,18, 0x4507d0,4, 0x450800,13, 0x450880,1, 0x450888,8, 0x4508c0,6, 0x4508e0,1, 0x4508e8,2, 0x450904,44, 0x450a00,4, 0x450a14,1, 0x450a1c,1, 0x450a24,1, 0x450a2c,1, 0x450a34,1, 0x450a3c,7, 0x450a60,6, 0x450a80,36, 0x450b40,15, 0x450b80,4, 0x450bc0,11, 0x450c00,9, 0x450c40,9, 0x450c80,9, 0x450cc0,9, 0x450d00,16, 0x450d54,1, 0x450d5c,1, 0x450d64,1, 0x450d6c,1, 0x450d80,26, 0x450e00,26, 0x450e80,26, 0x450f00,26, 0x452000,1, 0x45200c,4, 0x452020,4, 0x452038,3, 0x4520a8,38, 0x452180,64, 0x4522c0,8, 0x4522f8,317, 0x452804,1, 0x452810,6, 0x452884,1, 0x452894,5, 0x452904,1, 0x45292c,21, 0x452a04,1, 0x452a0c,1, 0x452a14,1, 0x452a1c,1, 0x452a24,1, 0x452a2c,1, 0x452a34,1, 0x452a3c,13, 0x452a78,8, 0x452b04,5, 0x452b44,1, 0x452b4c,1, 0x452b54,1, 0x452b60,3, 0x452b70,5, 0x452b88,3, 0x452b98,1, 0x452bc0,4, 0x453000,34, 0x453100,13, 0x453140,15, 0x453180,40, 0x453240,11, 0x453280,11, 0x453300,10, 0x453380,4, 0x4533c0,3, 0x4533d0,6, 0x453400,28, 0x453480,26, 0x453500,20, 0x453580,18, 0x454000,19, 0x454a00,10, 0x454a80,3, 0x454b00,6, 0x458000,3, 0x458010,1, 0x458030,13, 0x45806c,4, 0x458100,40, 0x4581fc,4, 0x458210,1, 0x458230,13, 0x45826c,4, 0x458300,40, 0x4583fc,4, 0x458410,1, 0x458430,13, 0x45846c,4, 0x458500,40, 0x4585fc,4, 0x458610,1, 0x458630,13, 0x45866c,4, 0x458700,40, 0x4587fc,9, 0x459000,19, 0x459a00,10, 0x459a80,3, 0x45a000,6, 0x45a01c,12, 0x45a080,1, 0x45a088,1, 0x45a090,2, 0x45a0a0,2, 0x45a100,1, 0x45a10c,2, 0x45a11c,2, 0x45a12c,2, 0x45a13c,1, 0x45a180,2, 0x45a18c,1, 0x45a200,27, 0x45a300,7, 0x45a320,2, 0x45a32c,1, 0x45a380,10, 0x45a3c0,1, 0x45a800,109, 0x45a9c0,5, 0x45aa00,109, 0x45abc0,5, 0x45ac00,109, 0x45adc0,5, 0x45b000,3, 0x45b014,16, 0x45b074,1, 0x45b080,3, 0x45b094,16, 0x45b0f4,1, 0x45b100,3, 0x45b114,16, 0x45b174,1, 0x45b180,3, 0x45b194,16, 0x45b1f4,1, 0x45b400,10, 0x45b440,10, 0x45b480,10, 0x45b4c0,10, 0x45b500,1, 0x45b600,1, 0x45b680,16, 0x45b700,6, 0x45b720,6, 0x45b740,6, 0x45b760,6, 0x45b780,6, 0x45b7a0,6, 0x45b7c0,6, 0x45b7e0,6, 0x45c000,60, 0x45c100,60, 0x45c200,32, 0x45c800,4, 0x45c900,53, 0x45ca00,4, 0x45ca20,2, 0x45d000,25, 0x45d080,1, 0x45d088,8, 0x45d0c0,6, 0x45d0e0,1, 0x45d0e8,2, 0x45d104,5, 0x45d200,11, 0x45d240,1, 0x45d248,1, 0x45d400,4, 0x460000,2, 0x460010,41, 0x4600b8,3, 0x460100,9, 0x460128,1, 0x460140,9, 0x460168,1, 0x460180,6, 0x4601a0,6, 0x4601c0,6, 0x4601e0,4, 0x460400,9, 0x460428,1, 0x460440,2, 0x46044c,3, 0x460464,1, 0x460474,22, 0x460504,1, 0x46052c,53, 0x460604,1, 0x460670,36, 0x460708,3, 0x460800,3, 0x460814,10, 0x460840,11, 0x460870,35, 0x460900,8, 0x460924,5, 0x460980,2, 0x46098c,2, 0x4609a0,2, 0x4609c0,1, 0x460a00,12, 0x460a34,22, 0x460ac0,7, 0x460b00,8, 0x460b24,5, 0x460b80,2, 0x460b8c,2, 0x460ba0,2, 0x460bc0,1, 0x460c00,12, 0x460c40,12, 0x460c80,12, 0x460cc0,12, 0x460d00,12, 0x460d40,12, 0x460d80,12, 0x460dc0,12, 0x460e00,1, 0x460e08,13, 0x460e40,12, 0x460e80,3, 0x460f00,7, 0x460f44,8, 0x460f80,6, 0x460fa0,2, 0x461000,9, 0x461040,9, 0x461080,9, 0x4610c0,9, 0x461104,1, 0x461110,5, 0x461128,2, 0x461134,1, 0x46113c,5, 0x461168,1, 0x461170,2, 0x461200,8, 0x461240,4, 0x461260,8, 0x461300,8, 0x461330,2, 0x461340,7, 0x461380,3, 0x461390,3, 0x4613a0,3, 0x4613b0,3, 0x4613c0,5, 0x461400,69, 0x461600,4, 0x461640,13, 0x461680,7, 0x4616a0,5, 0x4616c0,1, 0x462000,25, 0x462080,1, 0x462088,8, 0x4620c0,6, 0x4620e0,1, 0x4620e8,2, 0x462104,5, 0x462200,11, 0x462240,1, 0x462248,1, 0x462400,4, 0x463000,35, 0x463a00,10, 0x463a80,3, 0x464000,8, 0x464024,2, 0x464040,2, 0x464060,6, 0x464080,1, 0x4640f0,12, 0x464124,2, 0x464140,2, 0x464160,6, 0x464180,1, 0x4641f0,12, 0x464224,2, 0x464240,2, 0x464260,6, 0x464280,1, 0x4642f0,12, 0x464324,2, 0x464340,2, 0x464360,6, 0x464380,1, 0x4643f0,4, 0x464410,4, 0x4645f8,2, 0x465004,1, 0x465040,16, 0x465204,3, 0x465224,1, 0x46522c,1, 0x465400,48, 0x4654c4,2, 0x4654d0,3, 0x465600,37, 0x465700,17, 0x465748,2, 0x465780,16, 0x465800,25, 0x465880,1, 0x465888,8, 0x4658c0,6, 0x4658e0,1, 0x4658e8,2, 0x465904,14, 0x465a00,4, 0x465b00,60, 0x465c00,4, 0x465c40,12, 0x465c80,5, 0x465ca0,1, 0x465cb0,1, 0x466000,3, 0x466010,3, 0x466020,3, 0x466030,3, 0x466040,3, 0x466050,3, 0x466060,3, 0x466070,3, 0x466080,8, 0x4660e0,1, 0x466100,1, 0x466140,3, 0x466160,8, 0x466184,11, 0x4661c0,1, 0x4662c0,1, 0x4662c8,14, 0x468000,1, 0x468008,3, 0x468018,3, 0x468030,7, 0x468070,2, 0x468080,1, 0x468088,3, 0x468098,3, 0x4680b0,7, 0x4680f0,2, 0x468100,1, 0x468108,3, 0x468118,3, 0x468130,7, 0x468170,2, 0x468180,1, 0x468188,3, 0x468198,3, 0x4681b0,7, 0x4681f0,2, 0x468200,3, 0x468210,3, 0x468220,3, 0x468230,3, 0x468240,10, 0x46826c,1, 0x468280,28, 0x4682f4,8, 0x468320,27, 0x4683dc,43, 0x468490,3, 0x4684a0,2, 0x4684b0,3, 0x4684c0,2, 0x4684d0,3, 0x4684e0,2, 0x4684f0,3, 0x468500,2, 0x468510,3, 0x468520,2, 0x468530,3, 0x468540,2, 0x468550,3, 0x468560,2, 0x468570,3, 0x468580,64, 0x468780,18, 0x4687d0,4, 0x468800,13, 0x468880,1, 0x468888,8, 0x4688c0,6, 0x4688e0,1, 0x4688e8,2, 0x468904,44, 0x468a00,4, 0x468a14,1, 0x468a1c,1, 0x468a24,1, 0x468a2c,1, 0x468a34,1, 0x468a3c,7, 0x468a60,6, 0x468a80,36, 0x468b40,15, 0x468b80,4, 0x468bc0,11, 0x468c00,9, 0x468c40,9, 0x468c80,9, 0x468cc0,9, 0x468d00,16, 0x468d54,1, 0x468d5c,1, 0x468d64,1, 0x468d6c,1, 0x468d80,26, 0x468e00,26, 0x468e80,26, 0x468f00,26, 0x46a000,1, 0x46a00c,4, 0x46a020,4, 0x46a038,3, 0x46a0a8,38, 0x46a180,64, 0x46a2c0,8, 0x46a2f8,317, 0x46a804,1, 0x46a810,6, 0x46a884,1, 0x46a894,5, 0x46a904,1, 0x46a92c,21, 0x46aa04,1, 0x46aa0c,1, 0x46aa14,1, 0x46aa1c,1, 0x46aa24,1, 0x46aa2c,1, 0x46aa34,1, 0x46aa3c,13, 0x46aa78,8, 0x46ab04,5, 0x46ab44,1, 0x46ab4c,1, 0x46ab54,1, 0x46ab60,3, 0x46ab70,5, 0x46ab88,3, 0x46ab98,1, 0x46abc0,4, 0x46b000,34, 0x46b100,13, 0x46b140,15, 0x46b180,40, 0x46b240,11, 0x46b280,11, 0x46b300,10, 0x46b380,4, 0x46b3c0,3, 0x46b3d0,6, 0x46b400,28, 0x46b480,26, 0x46b500,20, 0x46b580,18, 0x46c000,19, 0x46ca00,10, 0x46ca80,3, 0x46cb00,6, 0x470000,3, 0x470010,1, 0x470030,13, 0x47006c,4, 0x470100,40, 0x4701fc,4, 0x470210,1, 0x470230,13, 0x47026c,4, 0x470300,40, 0x4703fc,4, 0x470410,1, 0x470430,13, 0x47046c,4, 0x470500,40, 0x4705fc,4, 0x470610,1, 0x470630,13, 0x47066c,4, 0x470700,40, 0x4707fc,9, 0x471000,19, 0x471a00,10, 0x471a80,3, 0x472000,6, 0x47201c,12, 0x472080,1, 0x472088,1, 0x472090,2, 0x4720a0,2, 0x472100,1, 0x47210c,2, 0x47211c,2, 0x47212c,2, 0x47213c,1, 0x472180,2, 0x47218c,1, 0x472200,27, 0x472300,7, 0x472320,2, 0x47232c,1, 0x472380,10, 0x4723c0,1, 0x472800,109, 0x4729c0,5, 0x472a00,109, 0x472bc0,5, 0x472c00,109, 0x472dc0,5, 0x473000,3, 0x473014,16, 0x473074,1, 0x473080,3, 0x473094,16, 0x4730f4,1, 0x473100,3, 0x473114,16, 0x473174,1, 0x473180,3, 0x473194,16, 0x4731f4,1, 0x473400,10, 0x473440,10, 0x473480,10, 0x4734c0,10, 0x473500,1, 0x473600,1, 0x473680,16, 0x473700,6, 0x473720,6, 0x473740,6, 0x473760,6, 0x473780,6, 0x4737a0,6, 0x4737c0,6, 0x4737e0,6, 0x474000,60, 0x474100,60, 0x474200,32, 0x474800,4, 0x474900,53, 0x474a00,4, 0x474a20,2, 0x475000,25, 0x475080,1, 0x475088,8, 0x4750c0,6, 0x4750e0,1, 0x4750e8,2, 0x475104,5, 0x475200,11, 0x475240,1, 0x475248,1, 0x475400,4, 0x478000,2, 0x478010,41, 0x4780b8,3, 0x478100,9, 0x478128,1, 0x478140,9, 0x478168,1, 0x478180,6, 0x4781a0,6, 0x4781c0,6, 0x4781e0,4, 0x478400,9, 0x478428,1, 0x478440,2, 0x47844c,3, 0x478464,1, 0x478474,22, 0x478504,1, 0x47852c,53, 0x478604,1, 0x478670,36, 0x478708,3, 0x478800,3, 0x478814,10, 0x478840,11, 0x478870,35, 0x478900,8, 0x478924,5, 0x478980,2, 0x47898c,2, 0x4789a0,2, 0x4789c0,1, 0x478a00,12, 0x478a34,22, 0x478ac0,7, 0x478b00,8, 0x478b24,5, 0x478b80,2, 0x478b8c,2, 0x478ba0,2, 0x478bc0,1, 0x478c00,12, 0x478c40,12, 0x478c80,12, 0x478cc0,12, 0x478d00,12, 0x478d40,12, 0x478d80,12, 0x478dc0,12, 0x478e00,1, 0x478e08,13, 0x478e40,12, 0x478e80,3, 0x478f00,7, 0x478f44,8, 0x478f80,6, 0x478fa0,2, 0x479000,9, 0x479040,9, 0x479080,9, 0x4790c0,9, 0x479104,1, 0x479110,5, 0x479128,2, 0x479134,1, 0x47913c,5, 0x479168,1, 0x479170,2, 0x479200,8, 0x479240,4, 0x479260,8, 0x479300,8, 0x479330,2, 0x479340,7, 0x479380,3, 0x479390,3, 0x4793a0,3, 0x4793b0,3, 0x4793c0,5, 0x479400,69, 0x479600,4, 0x479640,13, 0x479680,7, 0x4796a0,5, 0x4796c0,1, 0x47a000,25, 0x47a080,1, 0x47a088,8, 0x47a0c0,6, 0x47a0e0,1, 0x47a0e8,2, 0x47a104,5, 0x47a200,11, 0x47a240,1, 0x47a248,1, 0x47a400,4, 0x47b000,35, 0x47ba00,10, 0x47ba80,3, 0x47c000,8, 0x47c024,2, 0x47c040,2, 0x47c060,6, 0x47c080,1, 0x47c0f0,12, 0x47c124,2, 0x47c140,2, 0x47c160,6, 0x47c180,1, 0x47c1f0,12, 0x47c224,2, 0x47c240,2, 0x47c260,6, 0x47c280,1, 0x47c2f0,12, 0x47c324,2, 0x47c340,2, 0x47c360,6, 0x47c380,1, 0x47c3f0,4, 0x47c410,4, 0x47c5f8,2, 0x47d004,1, 0x47d040,16, 0x47d204,3, 0x47d224,1, 0x47d22c,1, 0x47d400,48, 0x47d4c4,2, 0x47d4d0,3, 0x47d600,37, 0x47d700,17, 0x47d748,2, 0x47d780,16, 0x47d800,25, 0x47d880,1, 0x47d888,8, 0x47d8c0,6, 0x47d8e0,1, 0x47d8e8,2, 0x47d904,14, 0x47da00,4, 0x47db00,60, 0x47dc00,4, 0x47dc40,12, 0x47dc80,5, 0x47dca0,1, 0x47dcb0,1, 0x47e000,3, 0x47e010,3, 0x47e020,3, 0x47e030,3, 0x47e040,3, 0x47e050,3, 0x47e060,3, 0x47e070,3, 0x47e080,8, 0x47e0e0,1, 0x47e100,1, 0x47e140,3, 0x47e160,8, 0x47e184,11, 0x47e1c0,1, 0x47e2c0,1, 0x47e2c8,14, 0x480000,1, 0x480008,3, 0x480018,3, 0x480030,7, 0x480070,2, 0x480080,1, 0x480088,3, 0x480098,3, 0x4800b0,7, 0x4800f0,2, 0x480100,1, 0x480108,3, 0x480118,3, 0x480130,7, 0x480170,2, 0x480180,1, 0x480188,3, 0x480198,3, 0x4801b0,7, 0x4801f0,2, 0x480200,3, 0x480210,3, 0x480220,3, 0x480230,3, 0x480240,10, 0x48026c,1, 0x480280,28, 0x4802f4,8, 0x480320,27, 0x4803dc,43, 0x480490,3, 0x4804a0,2, 0x4804b0,3, 0x4804c0,2, 0x4804d0,3, 0x4804e0,2, 0x4804f0,3, 0x480500,2, 0x480510,3, 0x480520,2, 0x480530,3, 0x480540,2, 0x480550,3, 0x480560,2, 0x480570,3, 0x480580,64, 0x480780,18, 0x4807d0,4, 0x480800,13, 0x480880,1, 0x480888,8, 0x4808c0,6, 0x4808e0,1, 0x4808e8,2, 0x480904,44, 0x480a00,4, 0x480a14,1, 0x480a1c,1, 0x480a24,1, 0x480a2c,1, 0x480a34,1, 0x480a3c,7, 0x480a60,6, 0x480a80,36, 0x480b40,15, 0x480b80,4, 0x480bc0,11, 0x480c00,9, 0x480c40,9, 0x480c80,9, 0x480cc0,9, 0x480d00,16, 0x480d54,1, 0x480d5c,1, 0x480d64,1, 0x480d6c,1, 0x480d80,26, 0x480e00,26, 0x480e80,26, 0x480f00,26, 0x482000,1, 0x48200c,4, 0x482020,4, 0x482038,3, 0x4820a8,38, 0x482180,64, 0x4822c0,8, 0x4822f8,317, 0x482804,1, 0x482810,6, 0x482884,1, 0x482894,5, 0x482904,1, 0x48292c,21, 0x482a04,1, 0x482a0c,1, 0x482a14,1, 0x482a1c,1, 0x482a24,1, 0x482a2c,1, 0x482a34,1, 0x482a3c,13, 0x482a78,8, 0x482b04,5, 0x482b44,1, 0x482b4c,1, 0x482b54,1, 0x482b60,3, 0x482b70,5, 0x482b88,3, 0x482b98,1, 0x482bc0,4, 0x483000,34, 0x483100,13, 0x483140,15, 0x483180,40, 0x483240,11, 0x483280,11, 0x483300,10, 0x483380,4, 0x4833c0,3, 0x4833d0,6, 0x483400,28, 0x483480,26, 0x483500,20, 0x483580,18, 0x484000,19, 0x484a00,10, 0x484a80,3, 0x484b00,6, 0x488000,3, 0x488010,1, 0x488030,13, 0x48806c,4, 0x488100,40, 0x4881fc,4, 0x488210,1, 0x488230,13, 0x48826c,4, 0x488300,40, 0x4883fc,4, 0x488410,1, 0x488430,13, 0x48846c,4, 0x488500,40, 0x4885fc,4, 0x488610,1, 0x488630,13, 0x48866c,4, 0x488700,40, 0x4887fc,9, 0x489000,19, 0x489a00,10, 0x489a80,3, 0x48a000,6, 0x48a01c,12, 0x48a080,1, 0x48a088,1, 0x48a090,2, 0x48a0a0,2, 0x48a100,1, 0x48a10c,2, 0x48a11c,2, 0x48a12c,2, 0x48a13c,1, 0x48a180,2, 0x48a18c,1, 0x48a200,27, 0x48a300,7, 0x48a320,2, 0x48a32c,1, 0x48a380,10, 0x48a3c0,1, 0x48a800,109, 0x48a9c0,5, 0x48aa00,109, 0x48abc0,5, 0x48ac00,109, 0x48adc0,5, 0x48b000,3, 0x48b014,16, 0x48b074,1, 0x48b080,3, 0x48b094,16, 0x48b0f4,1, 0x48b100,3, 0x48b114,16, 0x48b174,1, 0x48b180,3, 0x48b194,16, 0x48b1f4,1, 0x48b400,10, 0x48b440,10, 0x48b480,10, 0x48b4c0,10, 0x48b500,1, 0x48b600,1, 0x48b680,16, 0x48b700,6, 0x48b720,6, 0x48b740,6, 0x48b760,6, 0x48b780,6, 0x48b7a0,6, 0x48b7c0,6, 0x48b7e0,6, 0x48c000,60, 0x48c100,60, 0x48c200,32, 0x48c800,4, 0x48c900,53, 0x48ca00,4, 0x48ca20,2, 0x48d000,25, 0x48d080,1, 0x48d088,8, 0x48d0c0,6, 0x48d0e0,1, 0x48d0e8,2, 0x48d104,5, 0x48d200,11, 0x48d240,1, 0x48d248,1, 0x48d400,4, 0x490000,2, 0x490010,41, 0x4900b8,3, 0x490100,9, 0x490128,1, 0x490140,9, 0x490168,1, 0x490180,6, 0x4901a0,6, 0x4901c0,6, 0x4901e0,4, 0x490400,9, 0x490428,1, 0x490440,2, 0x49044c,3, 0x490464,1, 0x490474,22, 0x490504,1, 0x49052c,53, 0x490604,1, 0x490670,36, 0x490708,3, 0x490800,3, 0x490814,10, 0x490840,11, 0x490870,35, 0x490900,8, 0x490924,5, 0x490980,2, 0x49098c,2, 0x4909a0,2, 0x4909c0,1, 0x490a00,12, 0x490a34,22, 0x490ac0,7, 0x490b00,8, 0x490b24,5, 0x490b80,2, 0x490b8c,2, 0x490ba0,2, 0x490bc0,1, 0x490c00,12, 0x490c40,12, 0x490c80,12, 0x490cc0,12, 0x490d00,12, 0x490d40,12, 0x490d80,12, 0x490dc0,12, 0x490e00,1, 0x490e08,13, 0x490e40,12, 0x490e80,3, 0x490f00,7, 0x490f44,8, 0x490f80,6, 0x490fa0,2, 0x491000,9, 0x491040,9, 0x491080,9, 0x4910c0,9, 0x491104,1, 0x491110,5, 0x491128,2, 0x491134,1, 0x49113c,5, 0x491168,1, 0x491170,2, 0x491200,8, 0x491240,4, 0x491260,8, 0x491300,8, 0x491330,2, 0x491340,7, 0x491380,3, 0x491390,3, 0x4913a0,3, 0x4913b0,3, 0x4913c0,5, 0x491400,69, 0x491600,4, 0x491640,13, 0x491680,7, 0x4916a0,5, 0x4916c0,1, 0x492000,25, 0x492080,1, 0x492088,8, 0x4920c0,6, 0x4920e0,1, 0x4920e8,2, 0x492104,5, 0x492200,11, 0x492240,1, 0x492248,1, 0x492400,4, 0x493000,35, 0x493a00,10, 0x493a80,3, 0x494000,8, 0x494024,2, 0x494040,2, 0x494060,6, 0x494080,1, 0x4940f0,12, 0x494124,2, 0x494140,2, 0x494160,6, 0x494180,1, 0x4941f0,12, 0x494224,2, 0x494240,2, 0x494260,6, 0x494280,1, 0x4942f0,12, 0x494324,2, 0x494340,2, 0x494360,6, 0x494380,1, 0x4943f0,4, 0x494410,4, 0x4945f8,2, 0x495004,1, 0x495040,16, 0x495204,3, 0x495224,1, 0x49522c,1, 0x495400,48, 0x4954c4,2, 0x4954d0,3, 0x495600,37, 0x495700,17, 0x495748,2, 0x495780,16, 0x495800,25, 0x495880,1, 0x495888,8, 0x4958c0,6, 0x4958e0,1, 0x4958e8,2, 0x495904,14, 0x495a00,4, 0x495b00,60, 0x495c00,4, 0x495c40,12, 0x495c80,5, 0x495ca0,1, 0x495cb0,1, 0x496000,3, 0x496010,3, 0x496020,3, 0x496030,3, 0x496040,3, 0x496050,3, 0x496060,3, 0x496070,3, 0x496080,8, 0x4960e0,1, 0x496100,1, 0x496140,3, 0x496160,8, 0x496184,11, 0x4961c0,1, 0x4962c0,1, 0x4962c8,14, 0x498000,1, 0x498008,3, 0x498018,3, 0x498030,7, 0x498070,2, 0x498080,1, 0x498088,3, 0x498098,3, 0x4980b0,7, 0x4980f0,2, 0x498100,1, 0x498108,3, 0x498118,3, 0x498130,7, 0x498170,2, 0x498180,1, 0x498188,3, 0x498198,3, 0x4981b0,7, 0x4981f0,2, 0x498200,3, 0x498210,3, 0x498220,3, 0x498230,3, 0x498240,10, 0x49826c,1, 0x498280,28, 0x4982f4,8, 0x498320,27, 0x4983dc,43, 0x498490,3, 0x4984a0,2, 0x4984b0,3, 0x4984c0,2, 0x4984d0,3, 0x4984e0,2, 0x4984f0,3, 0x498500,2, 0x498510,3, 0x498520,2, 0x498530,3, 0x498540,2, 0x498550,3, 0x498560,2, 0x498570,3, 0x498580,64, 0x498780,18, 0x4987d0,4, 0x498800,13, 0x498880,1, 0x498888,8, 0x4988c0,6, 0x4988e0,1, 0x4988e8,2, 0x498904,44, 0x498a00,4, 0x498a14,1, 0x498a1c,1, 0x498a24,1, 0x498a2c,1, 0x498a34,1, 0x498a3c,7, 0x498a60,6, 0x498a80,36, 0x498b40,15, 0x498b80,4, 0x498bc0,11, 0x498c00,9, 0x498c40,9, 0x498c80,9, 0x498cc0,9, 0x498d00,16, 0x498d54,1, 0x498d5c,1, 0x498d64,1, 0x498d6c,1, 0x498d80,26, 0x498e00,26, 0x498e80,26, 0x498f00,26, 0x49a000,1, 0x49a00c,4, 0x49a020,4, 0x49a038,3, 0x49a0a8,38, 0x49a180,64, 0x49a2c0,8, 0x49a2f8,317, 0x49a804,1, 0x49a810,6, 0x49a884,1, 0x49a894,5, 0x49a904,1, 0x49a92c,21, 0x49aa04,1, 0x49aa0c,1, 0x49aa14,1, 0x49aa1c,1, 0x49aa24,1, 0x49aa2c,1, 0x49aa34,1, 0x49aa3c,13, 0x49aa78,8, 0x49ab04,5, 0x49ab44,1, 0x49ab4c,1, 0x49ab54,1, 0x49ab60,3, 0x49ab70,5, 0x49ab88,3, 0x49ab98,1, 0x49abc0,4, 0x49b000,34, 0x49b100,13, 0x49b140,15, 0x49b180,40, 0x49b240,11, 0x49b280,11, 0x49b300,10, 0x49b380,4, 0x49b3c0,3, 0x49b3d0,6, 0x49b400,28, 0x49b480,26, 0x49b500,20, 0x49b580,18, 0x49c000,19, 0x49ca00,10, 0x49ca80,3, 0x49cb00,6, 0x4a0000,3, 0x4a0010,1, 0x4a0030,13, 0x4a006c,4, 0x4a0100,40, 0x4a01fc,4, 0x4a0210,1, 0x4a0230,13, 0x4a026c,4, 0x4a0300,40, 0x4a03fc,4, 0x4a0410,1, 0x4a0430,13, 0x4a046c,4, 0x4a0500,40, 0x4a05fc,4, 0x4a0610,1, 0x4a0630,13, 0x4a066c,4, 0x4a0700,40, 0x4a07fc,9, 0x4a1000,19, 0x4a1a00,10, 0x4a1a80,3, 0x4a2000,6, 0x4a201c,12, 0x4a2080,1, 0x4a2088,1, 0x4a2090,2, 0x4a20a0,2, 0x4a2100,1, 0x4a210c,2, 0x4a211c,2, 0x4a212c,2, 0x4a213c,1, 0x4a2180,2, 0x4a218c,1, 0x4a2200,27, 0x4a2300,7, 0x4a2320,2, 0x4a232c,1, 0x4a2380,10, 0x4a23c0,1, 0x4a2800,109, 0x4a29c0,5, 0x4a2a00,109, 0x4a2bc0,5, 0x4a2c00,109, 0x4a2dc0,5, 0x4a3000,3, 0x4a3014,16, 0x4a3074,1, 0x4a3080,3, 0x4a3094,16, 0x4a30f4,1, 0x4a3100,3, 0x4a3114,16, 0x4a3174,1, 0x4a3180,3, 0x4a3194,16, 0x4a31f4,1, 0x4a3400,10, 0x4a3440,10, 0x4a3480,10, 0x4a34c0,10, 0x4a3500,1, 0x4a3600,1, 0x4a3680,16, 0x4a3700,6, 0x4a3720,6, 0x4a3740,6, 0x4a3760,6, 0x4a3780,6, 0x4a37a0,6, 0x4a37c0,6, 0x4a37e0,6, 0x4a4000,60, 0x4a4100,60, 0x4a4200,32, 0x4a4800,4, 0x4a4900,53, 0x4a4a00,4, 0x4a4a20,2, 0x4a5000,25, 0x4a5080,1, 0x4a5088,8, 0x4a50c0,6, 0x4a50e0,1, 0x4a50e8,2, 0x4a5104,5, 0x4a5200,11, 0x4a5240,1, 0x4a5248,1, 0x4a5400,4, 0x4a8000,2, 0x4a8010,41, 0x4a80b8,3, 0x4a8100,9, 0x4a8128,1, 0x4a8140,9, 0x4a8168,1, 0x4a8180,6, 0x4a81a0,6, 0x4a81c0,6, 0x4a81e0,4, 0x4a8400,9, 0x4a8428,1, 0x4a8440,2, 0x4a844c,3, 0x4a8464,1, 0x4a8474,22, 0x4a8504,1, 0x4a852c,53, 0x4a8604,1, 0x4a8670,36, 0x4a8708,3, 0x4a8800,3, 0x4a8814,10, 0x4a8840,11, 0x4a8870,35, 0x4a8900,8, 0x4a8924,5, 0x4a8980,2, 0x4a898c,2, 0x4a89a0,2, 0x4a89c0,1, 0x4a8a00,12, 0x4a8a34,22, 0x4a8ac0,7, 0x4a8b00,8, 0x4a8b24,5, 0x4a8b80,2, 0x4a8b8c,2, 0x4a8ba0,2, 0x4a8bc0,1, 0x4a8c00,12, 0x4a8c40,12, 0x4a8c80,12, 0x4a8cc0,12, 0x4a8d00,12, 0x4a8d40,12, 0x4a8d80,12, 0x4a8dc0,12, 0x4a8e00,1, 0x4a8e08,13, 0x4a8e40,12, 0x4a8e80,3, 0x4a8f00,7, 0x4a8f44,8, 0x4a8f80,6, 0x4a8fa0,2, 0x4a9000,9, 0x4a9040,9, 0x4a9080,9, 0x4a90c0,9, 0x4a9104,1, 0x4a9110,5, 0x4a9128,2, 0x4a9134,1, 0x4a913c,5, 0x4a9168,1, 0x4a9170,2, 0x4a9200,8, 0x4a9240,4, 0x4a9260,8, 0x4a9300,8, 0x4a9330,2, 0x4a9340,7, 0x4a9380,3, 0x4a9390,3, 0x4a93a0,3, 0x4a93b0,3, 0x4a93c0,5, 0x4a9400,69, 0x4a9600,4, 0x4a9640,13, 0x4a9680,7, 0x4a96a0,5, 0x4a96c0,1, 0x4aa000,25, 0x4aa080,1, 0x4aa088,8, 0x4aa0c0,6, 0x4aa0e0,1, 0x4aa0e8,2, 0x4aa104,5, 0x4aa200,11, 0x4aa240,1, 0x4aa248,1, 0x4aa400,4, 0x4ab000,35, 0x4aba00,10, 0x4aba80,3, 0x4ac000,8, 0x4ac024,2, 0x4ac040,2, 0x4ac060,6, 0x4ac080,1, 0x4ac0f0,12, 0x4ac124,2, 0x4ac140,2, 0x4ac160,6, 0x4ac180,1, 0x4ac1f0,12, 0x4ac224,2, 0x4ac240,2, 0x4ac260,6, 0x4ac280,1, 0x4ac2f0,12, 0x4ac324,2, 0x4ac340,2, 0x4ac360,6, 0x4ac380,1, 0x4ac3f0,4, 0x4ac410,4, 0x4ac5f8,2, 0x4ad004,1, 0x4ad040,16, 0x4ad204,3, 0x4ad224,1, 0x4ad22c,1, 0x4ad400,48, 0x4ad4c4,2, 0x4ad4d0,3, 0x4ad600,37, 0x4ad700,17, 0x4ad748,2, 0x4ad780,16, 0x4ad800,25, 0x4ad880,1, 0x4ad888,8, 0x4ad8c0,6, 0x4ad8e0,1, 0x4ad8e8,2, 0x4ad904,14, 0x4ada00,4, 0x4adb00,60, 0x4adc00,4, 0x4adc40,12, 0x4adc80,5, 0x4adca0,1, 0x4adcb0,1, 0x4ae000,3, 0x4ae010,3, 0x4ae020,3, 0x4ae030,3, 0x4ae040,3, 0x4ae050,3, 0x4ae060,3, 0x4ae070,3, 0x4ae080,8, 0x4ae0e0,1, 0x4ae100,1, 0x4ae140,3, 0x4ae160,8, 0x4ae184,11, 0x4ae1c0,1, 0x4ae2c0,1, 0x4ae2c8,14, 0x4b0000,1, 0x4b0008,3, 0x4b0018,3, 0x4b0030,7, 0x4b0070,2, 0x4b0080,1, 0x4b0088,3, 0x4b0098,3, 0x4b00b0,7, 0x4b00f0,2, 0x4b0100,1, 0x4b0108,3, 0x4b0118,3, 0x4b0130,7, 0x4b0170,2, 0x4b0180,1, 0x4b0188,3, 0x4b0198,3, 0x4b01b0,7, 0x4b01f0,2, 0x4b0200,3, 0x4b0210,3, 0x4b0220,3, 0x4b0230,3, 0x4b0240,10, 0x4b026c,1, 0x4b0280,28, 0x4b02f4,8, 0x4b0320,27, 0x4b03dc,43, 0x4b0490,3, 0x4b04a0,2, 0x4b04b0,3, 0x4b04c0,2, 0x4b04d0,3, 0x4b04e0,2, 0x4b04f0,3, 0x4b0500,2, 0x4b0510,3, 0x4b0520,2, 0x4b0530,3, 0x4b0540,2, 0x4b0550,3, 0x4b0560,2, 0x4b0570,3, 0x4b0580,64, 0x4b0780,18, 0x4b07d0,4, 0x4b0800,13, 0x4b0880,1, 0x4b0888,8, 0x4b08c0,6, 0x4b08e0,1, 0x4b08e8,2, 0x4b0904,44, 0x4b0a00,4, 0x4b0a14,1, 0x4b0a1c,1, 0x4b0a24,1, 0x4b0a2c,1, 0x4b0a34,1, 0x4b0a3c,7, 0x4b0a60,6, 0x4b0a80,36, 0x4b0b40,15, 0x4b0b80,4, 0x4b0bc0,11, 0x4b0c00,9, 0x4b0c40,9, 0x4b0c80,9, 0x4b0cc0,9, 0x4b0d00,16, 0x4b0d54,1, 0x4b0d5c,1, 0x4b0d64,1, 0x4b0d6c,1, 0x4b0d80,26, 0x4b0e00,26, 0x4b0e80,26, 0x4b0f00,26, 0x4b2000,1, 0x4b200c,4, 0x4b2020,4, 0x4b2038,3, 0x4b20a8,38, 0x4b2180,64, 0x4b22c0,8, 0x4b22f8,317, 0x4b2804,1, 0x4b2810,6, 0x4b2884,1, 0x4b2894,5, 0x4b2904,1, 0x4b292c,21, 0x4b2a04,1, 0x4b2a0c,1, 0x4b2a14,1, 0x4b2a1c,1, 0x4b2a24,1, 0x4b2a2c,1, 0x4b2a34,1, 0x4b2a3c,13, 0x4b2a78,8, 0x4b2b04,5, 0x4b2b44,1, 0x4b2b4c,1, 0x4b2b54,1, 0x4b2b60,3, 0x4b2b70,5, 0x4b2b88,3, 0x4b2b98,1, 0x4b2bc0,4, 0x4b3000,34, 0x4b3100,13, 0x4b3140,15, 0x4b3180,40, 0x4b3240,11, 0x4b3280,11, 0x4b3300,10, 0x4b3380,4, 0x4b33c0,3, 0x4b33d0,6, 0x4b3400,28, 0x4b3480,26, 0x4b3500,20, 0x4b3580,18, 0x4b4000,19, 0x4b4a00,10, 0x4b4a80,3, 0x4b4b00,6, 0x4b8000,3, 0x4b8010,1, 0x4b8030,13, 0x4b806c,4, 0x4b8100,40, 0x4b81fc,4, 0x4b8210,1, 0x4b8230,13, 0x4b826c,4, 0x4b8300,40, 0x4b83fc,4, 0x4b8410,1, 0x4b8430,13, 0x4b846c,4, 0x4b8500,40, 0x4b85fc,4, 0x4b8610,1, 0x4b8630,13, 0x4b866c,4, 0x4b8700,40, 0x4b87fc,9, 0x4b9000,19, 0x4b9a00,10, 0x4b9a80,3, 0x4ba000,6, 0x4ba01c,12, 0x4ba080,1, 0x4ba088,1, 0x4ba090,2, 0x4ba0a0,2, 0x4ba100,1, 0x4ba10c,2, 0x4ba11c,2, 0x4ba12c,2, 0x4ba13c,1, 0x4ba180,2, 0x4ba18c,1, 0x4ba200,27, 0x4ba300,7, 0x4ba320,2, 0x4ba32c,1, 0x4ba380,10, 0x4ba3c0,1, 0x4ba800,109, 0x4ba9c0,5, 0x4baa00,109, 0x4babc0,5, 0x4bac00,109, 0x4badc0,5, 0x4bb000,3, 0x4bb014,16, 0x4bb074,1, 0x4bb080,3, 0x4bb094,16, 0x4bb0f4,1, 0x4bb100,3, 0x4bb114,16, 0x4bb174,1, 0x4bb180,3, 0x4bb194,16, 0x4bb1f4,1, 0x4bb400,10, 0x4bb440,10, 0x4bb480,10, 0x4bb4c0,10, 0x4bb500,1, 0x4bb600,1, 0x4bb680,16, 0x4bb700,6, 0x4bb720,6, 0x4bb740,6, 0x4bb760,6, 0x4bb780,6, 0x4bb7a0,6, 0x4bb7c0,6, 0x4bb7e0,6, 0x4bc000,60, 0x4bc100,60, 0x4bc200,32, 0x4bc800,4, 0x4bc900,53, 0x4bca00,4, 0x4bca20,2, 0x4bd000,25, 0x4bd080,1, 0x4bd088,8, 0x4bd0c0,6, 0x4bd0e0,1, 0x4bd0e8,2, 0x4bd104,5, 0x4bd200,11, 0x4bd240,1, 0x4bd248,1, 0x4bd400,4, 0x4c0000,2, 0x4c0010,41, 0x4c00b8,3, 0x4c0100,9, 0x4c0128,1, 0x4c0140,9, 0x4c0168,1, 0x4c0180,6, 0x4c01a0,6, 0x4c01c0,6, 0x4c01e0,4, 0x4c0400,9, 0x4c0428,1, 0x4c0440,2, 0x4c044c,3, 0x4c0464,1, 0x4c0474,22, 0x4c0504,1, 0x4c052c,53, 0x4c0604,1, 0x4c0670,36, 0x4c0708,3, 0x4c0800,3, 0x4c0814,10, 0x4c0840,11, 0x4c0870,35, 0x4c0900,8, 0x4c0924,5, 0x4c0980,2, 0x4c098c,2, 0x4c09a0,2, 0x4c09c0,1, 0x4c0a00,12, 0x4c0a34,22, 0x4c0ac0,7, 0x4c0b00,8, 0x4c0b24,5, 0x4c0b80,2, 0x4c0b8c,2, 0x4c0ba0,2, 0x4c0bc0,1, 0x4c0c00,12, 0x4c0c40,12, 0x4c0c80,12, 0x4c0cc0,12, 0x4c0d00,12, 0x4c0d40,12, 0x4c0d80,12, 0x4c0dc0,12, 0x4c0e00,1, 0x4c0e08,13, 0x4c0e40,12, 0x4c0e80,3, 0x4c0f00,7, 0x4c0f44,8, 0x4c0f80,6, 0x4c0fa0,2, 0x4c1000,9, 0x4c1040,9, 0x4c1080,9, 0x4c10c0,9, 0x4c1104,1, 0x4c1110,5, 0x4c1128,2, 0x4c1134,1, 0x4c113c,5, 0x4c1168,1, 0x4c1170,2, 0x4c1200,8, 0x4c1240,4, 0x4c1260,8, 0x4c1300,8, 0x4c1330,2, 0x4c1340,7, 0x4c1380,3, 0x4c1390,3, 0x4c13a0,3, 0x4c13b0,3, 0x4c13c0,5, 0x4c1400,69, 0x4c1600,4, 0x4c1640,13, 0x4c1680,7, 0x4c16a0,5, 0x4c16c0,1, 0x4c2000,25, 0x4c2080,1, 0x4c2088,8, 0x4c20c0,6, 0x4c20e0,1, 0x4c20e8,2, 0x4c2104,5, 0x4c2200,11, 0x4c2240,1, 0x4c2248,1, 0x4c2400,4, 0x4c3000,35, 0x4c3a00,10, 0x4c3a80,3, 0x4c4000,8, 0x4c4024,2, 0x4c4040,2, 0x4c4060,6, 0x4c4080,1, 0x4c40f0,12, 0x4c4124,2, 0x4c4140,2, 0x4c4160,6, 0x4c4180,1, 0x4c41f0,12, 0x4c4224,2, 0x4c4240,2, 0x4c4260,6, 0x4c4280,1, 0x4c42f0,12, 0x4c4324,2, 0x4c4340,2, 0x4c4360,6, 0x4c4380,1, 0x4c43f0,4, 0x4c4410,4, 0x4c45f8,2, 0x4c5004,1, 0x4c5040,16, 0x4c5204,3, 0x4c5224,1, 0x4c522c,1, 0x4c5400,48, 0x4c54c4,2, 0x4c54d0,3, 0x4c5600,37, 0x4c5700,17, 0x4c5748,2, 0x4c5780,16, 0x4c5800,25, 0x4c5880,1, 0x4c5888,8, 0x4c58c0,6, 0x4c58e0,1, 0x4c58e8,2, 0x4c5904,14, 0x4c5a00,4, 0x4c5b00,60, 0x4c5c00,4, 0x4c5c40,12, 0x4c5c80,5, 0x4c5ca0,1, 0x4c5cb0,1, 0x4c6000,3, 0x4c6010,3, 0x4c6020,3, 0x4c6030,3, 0x4c6040,3, 0x4c6050,3, 0x4c6060,3, 0x4c6070,3, 0x4c6080,8, 0x4c60e0,1, 0x4c6100,1, 0x4c6140,3, 0x4c6160,8, 0x4c6184,11, 0x4c61c0,1, 0x4c62c0,1, 0x4c62c8,14, 0x4c8000,1, 0x4c8008,3, 0x4c8018,3, 0x4c8030,7, 0x4c8070,2, 0x4c8080,1, 0x4c8088,3, 0x4c8098,3, 0x4c80b0,7, 0x4c80f0,2, 0x4c8100,1, 0x4c8108,3, 0x4c8118,3, 0x4c8130,7, 0x4c8170,2, 0x4c8180,1, 0x4c8188,3, 0x4c8198,3, 0x4c81b0,7, 0x4c81f0,2, 0x4c8200,3, 0x4c8210,3, 0x4c8220,3, 0x4c8230,3, 0x4c8240,10, 0x4c826c,1, 0x4c8280,28, 0x4c82f4,8, 0x4c8320,27, 0x4c83dc,43, 0x4c8490,3, 0x4c84a0,2, 0x4c84b0,3, 0x4c84c0,2, 0x4c84d0,3, 0x4c84e0,2, 0x4c84f0,3, 0x4c8500,2, 0x4c8510,3, 0x4c8520,2, 0x4c8530,3, 0x4c8540,2, 0x4c8550,3, 0x4c8560,2, 0x4c8570,3, 0x4c8580,64, 0x4c8780,18, 0x4c87d0,4, 0x4c8800,13, 0x4c8880,1, 0x4c8888,8, 0x4c88c0,6, 0x4c88e0,1, 0x4c88e8,2, 0x4c8904,44, 0x4c8a00,4, 0x4c8a14,1, 0x4c8a1c,1, 0x4c8a24,1, 0x4c8a2c,1, 0x4c8a34,1, 0x4c8a3c,7, 0x4c8a60,6, 0x4c8a80,36, 0x4c8b40,15, 0x4c8b80,4, 0x4c8bc0,11, 0x4c8c00,9, 0x4c8c40,9, 0x4c8c80,9, 0x4c8cc0,9, 0x4c8d00,16, 0x4c8d54,1, 0x4c8d5c,1, 0x4c8d64,1, 0x4c8d6c,1, 0x4c8d80,26, 0x4c8e00,26, 0x4c8e80,26, 0x4c8f00,26, 0x4ca000,1, 0x4ca00c,4, 0x4ca020,4, 0x4ca038,3, 0x4ca0a8,38, 0x4ca180,64, 0x4ca2c0,8, 0x4ca2f8,317, 0x4ca804,1, 0x4ca810,6, 0x4ca884,1, 0x4ca894,5, 0x4ca904,1, 0x4ca92c,21, 0x4caa04,1, 0x4caa0c,1, 0x4caa14,1, 0x4caa1c,1, 0x4caa24,1, 0x4caa2c,1, 0x4caa34,1, 0x4caa3c,13, 0x4caa78,8, 0x4cab04,5, 0x4cab44,1, 0x4cab4c,1, 0x4cab54,1, 0x4cab60,3, 0x4cab70,5, 0x4cab88,3, 0x4cab98,1, 0x4cabc0,4, 0x4cb000,34, 0x4cb100,13, 0x4cb140,15, 0x4cb180,40, 0x4cb240,11, 0x4cb280,11, 0x4cb300,10, 0x4cb380,4, 0x4cb3c0,3, 0x4cb3d0,6, 0x4cb400,28, 0x4cb480,26, 0x4cb500,20, 0x4cb580,18, 0x4cc000,19, 0x4cca00,10, 0x4cca80,3, 0x4ccb00,6, 0x4d0000,3, 0x4d0010,1, 0x4d0030,13, 0x4d006c,4, 0x4d0100,40, 0x4d01fc,4, 0x4d0210,1, 0x4d0230,13, 0x4d026c,4, 0x4d0300,40, 0x4d03fc,4, 0x4d0410,1, 0x4d0430,13, 0x4d046c,4, 0x4d0500,40, 0x4d05fc,4, 0x4d0610,1, 0x4d0630,13, 0x4d066c,4, 0x4d0700,40, 0x4d07fc,9, 0x4d1000,19, 0x4d1a00,10, 0x4d1a80,3, 0x4d2000,6, 0x4d201c,12, 0x4d2080,1, 0x4d2088,1, 0x4d2090,2, 0x4d20a0,2, 0x4d2100,1, 0x4d210c,2, 0x4d211c,2, 0x4d212c,2, 0x4d213c,1, 0x4d2180,2, 0x4d218c,1, 0x4d2200,27, 0x4d2300,7, 0x4d2320,2, 0x4d232c,1, 0x4d2380,10, 0x4d23c0,1, 0x4d2800,109, 0x4d29c0,5, 0x4d2a00,109, 0x4d2bc0,5, 0x4d2c00,109, 0x4d2dc0,5, 0x4d3000,3, 0x4d3014,16, 0x4d3074,1, 0x4d3080,3, 0x4d3094,16, 0x4d30f4,1, 0x4d3100,3, 0x4d3114,16, 0x4d3174,1, 0x4d3180,3, 0x4d3194,16, 0x4d31f4,1, 0x4d3400,10, 0x4d3440,10, 0x4d3480,10, 0x4d34c0,10, 0x4d3500,1, 0x4d3600,1, 0x4d3680,16, 0x4d3700,6, 0x4d3720,6, 0x4d3740,6, 0x4d3760,6, 0x4d3780,6, 0x4d37a0,6, 0x4d37c0,6, 0x4d37e0,6, 0x4d4000,60, 0x4d4100,60, 0x4d4200,32, 0x4d4800,4, 0x4d4900,53, 0x4d4a00,4, 0x4d4a20,2, 0x4d5000,25, 0x4d5080,1, 0x4d5088,8, 0x4d50c0,6, 0x4d50e0,1, 0x4d50e8,2, 0x4d5104,5, 0x4d5200,11, 0x4d5240,1, 0x4d5248,1, 0x4d5400,4, 0x4d8000,2, 0x4d8010,41, 0x4d80b8,3, 0x4d8100,9, 0x4d8128,1, 0x4d8140,9, 0x4d8168,1, 0x4d8180,6, 0x4d81a0,6, 0x4d81c0,6, 0x4d81e0,4, 0x4d8400,9, 0x4d8428,1, 0x4d8440,2, 0x4d844c,3, 0x4d8464,1, 0x4d8474,22, 0x4d8504,1, 0x4d852c,53, 0x4d8604,1, 0x4d8670,36, 0x4d8708,3, 0x4d8800,3, 0x4d8814,10, 0x4d8840,11, 0x4d8870,35, 0x4d8900,8, 0x4d8924,5, 0x4d8980,2, 0x4d898c,2, 0x4d89a0,2, 0x4d89c0,1, 0x4d8a00,12, 0x4d8a34,22, 0x4d8ac0,7, 0x4d8b00,8, 0x4d8b24,5, 0x4d8b80,2, 0x4d8b8c,2, 0x4d8ba0,2, 0x4d8bc0,1, 0x4d8c00,12, 0x4d8c40,12, 0x4d8c80,12, 0x4d8cc0,12, 0x4d8d00,12, 0x4d8d40,12, 0x4d8d80,12, 0x4d8dc0,12, 0x4d8e00,1, 0x4d8e08,13, 0x4d8e40,12, 0x4d8e80,3, 0x4d8f00,7, 0x4d8f44,8, 0x4d8f80,6, 0x4d8fa0,2, 0x4d9000,9, 0x4d9040,9, 0x4d9080,9, 0x4d90c0,9, 0x4d9104,1, 0x4d9110,5, 0x4d9128,2, 0x4d9134,1, 0x4d913c,5, 0x4d9168,1, 0x4d9170,2, 0x4d9200,8, 0x4d9240,4, 0x4d9260,8, 0x4d9300,8, 0x4d9330,2, 0x4d9340,7, 0x4d9380,3, 0x4d9390,3, 0x4d93a0,3, 0x4d93b0,3, 0x4d93c0,5, 0x4d9400,69, 0x4d9600,4, 0x4d9640,13, 0x4d9680,7, 0x4d96a0,5, 0x4d96c0,1, 0x4da000,25, 0x4da080,1, 0x4da088,8, 0x4da0c0,6, 0x4da0e0,1, 0x4da0e8,2, 0x4da104,5, 0x4da200,11, 0x4da240,1, 0x4da248,1, 0x4da400,4, 0x4db000,35, 0x4dba00,10, 0x4dba80,3, 0x4dc000,8, 0x4dc024,2, 0x4dc040,2, 0x4dc060,6, 0x4dc080,1, 0x4dc0f0,12, 0x4dc124,2, 0x4dc140,2, 0x4dc160,6, 0x4dc180,1, 0x4dc1f0,12, 0x4dc224,2, 0x4dc240,2, 0x4dc260,6, 0x4dc280,1, 0x4dc2f0,12, 0x4dc324,2, 0x4dc340,2, 0x4dc360,6, 0x4dc380,1, 0x4dc3f0,4, 0x4dc410,4, 0x4dc5f8,2, 0x4dd004,1, 0x4dd040,16, 0x4dd204,3, 0x4dd224,1, 0x4dd22c,1, 0x4dd400,48, 0x4dd4c4,2, 0x4dd4d0,3, 0x4dd600,37, 0x4dd700,17, 0x4dd748,2, 0x4dd780,16, 0x4dd800,25, 0x4dd880,1, 0x4dd888,8, 0x4dd8c0,6, 0x4dd8e0,1, 0x4dd8e8,2, 0x4dd904,14, 0x4dda00,4, 0x4ddb00,60, 0x4ddc00,4, 0x4ddc40,12, 0x4ddc80,5, 0x4ddca0,1, 0x4ddcb0,1, 0x4de000,3, 0x4de010,3, 0x4de020,3, 0x4de030,3, 0x4de040,3, 0x4de050,3, 0x4de060,3, 0x4de070,3, 0x4de080,8, 0x4de0e0,1, 0x4de100,1, 0x4de140,3, 0x4de160,8, 0x4de184,11, 0x4de1c0,1, 0x4de2c0,1, 0x4de2c8,14, 0x4e0000,1, 0x4e0008,3, 0x4e0018,3, 0x4e0030,7, 0x4e0070,2, 0x4e0080,1, 0x4e0088,3, 0x4e0098,3, 0x4e00b0,7, 0x4e00f0,2, 0x4e0100,1, 0x4e0108,3, 0x4e0118,3, 0x4e0130,7, 0x4e0170,2, 0x4e0180,1, 0x4e0188,3, 0x4e0198,3, 0x4e01b0,7, 0x4e01f0,2, 0x4e0200,3, 0x4e0210,3, 0x4e0220,3, 0x4e0230,3, 0x4e0240,10, 0x4e026c,1, 0x4e0280,28, 0x4e02f4,8, 0x4e0320,27, 0x4e03dc,43, 0x4e0490,3, 0x4e04a0,2, 0x4e04b0,3, 0x4e04c0,2, 0x4e04d0,3, 0x4e04e0,2, 0x4e04f0,3, 0x4e0500,2, 0x4e0510,3, 0x4e0520,2, 0x4e0530,3, 0x4e0540,2, 0x4e0550,3, 0x4e0560,2, 0x4e0570,3, 0x4e0580,64, 0x4e0780,18, 0x4e07d0,4, 0x4e0800,13, 0x4e0880,1, 0x4e0888,8, 0x4e08c0,6, 0x4e08e0,1, 0x4e08e8,2, 0x4e0904,44, 0x4e0a00,4, 0x4e0a14,1, 0x4e0a1c,1, 0x4e0a24,1, 0x4e0a2c,1, 0x4e0a34,1, 0x4e0a3c,7, 0x4e0a60,6, 0x4e0a80,36, 0x4e0b40,15, 0x4e0b80,4, 0x4e0bc0,11, 0x4e0c00,9, 0x4e0c40,9, 0x4e0c80,9, 0x4e0cc0,9, 0x4e0d00,16, 0x4e0d54,1, 0x4e0d5c,1, 0x4e0d64,1, 0x4e0d6c,1, 0x4e0d80,26, 0x4e0e00,26, 0x4e0e80,26, 0x4e0f00,26, 0x4e2000,1, 0x4e200c,4, 0x4e2020,4, 0x4e2038,3, 0x4e20a8,38, 0x4e2180,64, 0x4e22c0,8, 0x4e22f8,317, 0x4e2804,1, 0x4e2810,6, 0x4e2884,1, 0x4e2894,5, 0x4e2904,1, 0x4e292c,21, 0x4e2a04,1, 0x4e2a0c,1, 0x4e2a14,1, 0x4e2a1c,1, 0x4e2a24,1, 0x4e2a2c,1, 0x4e2a34,1, 0x4e2a3c,13, 0x4e2a78,8, 0x4e2b04,5, 0x4e2b44,1, 0x4e2b4c,1, 0x4e2b54,1, 0x4e2b60,3, 0x4e2b70,5, 0x4e2b88,3, 0x4e2b98,1, 0x4e2bc0,4, 0x4e3000,34, 0x4e3100,13, 0x4e3140,15, 0x4e3180,40, 0x4e3240,11, 0x4e3280,11, 0x4e3300,10, 0x4e3380,4, 0x4e33c0,3, 0x4e33d0,6, 0x4e3400,28, 0x4e3480,26, 0x4e3500,20, 0x4e3580,18, 0x4e4000,19, 0x4e4a00,10, 0x4e4a80,3, 0x4e4b00,6, 0x4e8000,3, 0x4e8010,1, 0x4e8030,13, 0x4e806c,4, 0x4e8100,40, 0x4e81fc,4, 0x4e8210,1, 0x4e8230,13, 0x4e826c,4, 0x4e8300,40, 0x4e83fc,4, 0x4e8410,1, 0x4e8430,13, 0x4e846c,4, 0x4e8500,40, 0x4e85fc,4, 0x4e8610,1, 0x4e8630,13, 0x4e866c,4, 0x4e8700,40, 0x4e87fc,9, 0x4e9000,19, 0x4e9a00,10, 0x4e9a80,3, 0x4ea000,6, 0x4ea01c,12, 0x4ea080,1, 0x4ea088,1, 0x4ea090,2, 0x4ea0a0,2, 0x4ea100,1, 0x4ea10c,2, 0x4ea11c,2, 0x4ea12c,2, 0x4ea13c,1, 0x4ea180,2, 0x4ea18c,1, 0x4ea200,27, 0x4ea300,7, 0x4ea320,2, 0x4ea32c,1, 0x4ea380,10, 0x4ea3c0,1, 0x4ea800,109, 0x4ea9c0,5, 0x4eaa00,109, 0x4eabc0,5, 0x4eac00,109, 0x4eadc0,5, 0x4eb000,3, 0x4eb014,16, 0x4eb074,1, 0x4eb080,3, 0x4eb094,16, 0x4eb0f4,1, 0x4eb100,3, 0x4eb114,16, 0x4eb174,1, 0x4eb180,3, 0x4eb194,16, 0x4eb1f4,1, 0x4eb400,10, 0x4eb440,10, 0x4eb480,10, 0x4eb4c0,10, 0x4eb500,1, 0x4eb600,1, 0x4eb680,16, 0x4eb700,6, 0x4eb720,6, 0x4eb740,6, 0x4eb760,6, 0x4eb780,6, 0x4eb7a0,6, 0x4eb7c0,6, 0x4eb7e0,6, 0x4ec000,60, 0x4ec100,60, 0x4ec200,32, 0x4ec800,4, 0x4ec900,53, 0x4eca00,4, 0x4eca20,2, 0x4ed000,25, 0x4ed080,1, 0x4ed088,8, 0x4ed0c0,6, 0x4ed0e0,1, 0x4ed0e8,2, 0x4ed104,5, 0x4ed200,11, 0x4ed240,1, 0x4ed248,1, 0x4ed400,4, 0x4f0000,2, 0x4f0010,41, 0x4f00b8,3, 0x4f0100,9, 0x4f0128,1, 0x4f0140,9, 0x4f0168,1, 0x4f0180,6, 0x4f01a0,6, 0x4f01c0,6, 0x4f01e0,4, 0x4f0400,9, 0x4f0428,1, 0x4f0440,2, 0x4f044c,3, 0x4f0464,1, 0x4f0474,22, 0x4f0504,1, 0x4f052c,53, 0x4f0604,1, 0x4f0670,36, 0x4f0708,3, 0x4f0800,3, 0x4f0814,10, 0x4f0840,11, 0x4f0870,35, 0x4f0900,8, 0x4f0924,5, 0x4f0980,2, 0x4f098c,2, 0x4f09a0,2, 0x4f09c0,1, 0x4f0a00,12, 0x4f0a34,22, 0x4f0ac0,7, 0x4f0b00,8, 0x4f0b24,5, 0x4f0b80,2, 0x4f0b8c,2, 0x4f0ba0,2, 0x4f0bc0,1, 0x4f0c00,12, 0x4f0c40,12, 0x4f0c80,12, 0x4f0cc0,12, 0x4f0d00,12, 0x4f0d40,12, 0x4f0d80,12, 0x4f0dc0,12, 0x4f0e00,1, 0x4f0e08,13, 0x4f0e40,12, 0x4f0e80,3, 0x4f0f00,7, 0x4f0f44,8, 0x4f0f80,6, 0x4f0fa0,2, 0x4f1000,9, 0x4f1040,9, 0x4f1080,9, 0x4f10c0,9, 0x4f1104,1, 0x4f1110,5, 0x4f1128,2, 0x4f1134,1, 0x4f113c,5, 0x4f1168,1, 0x4f1170,2, 0x4f1200,8, 0x4f1240,4, 0x4f1260,8, 0x4f1300,8, 0x4f1330,2, 0x4f1340,7, 0x4f1380,3, 0x4f1390,3, 0x4f13a0,3, 0x4f13b0,3, 0x4f13c0,5, 0x4f1400,69, 0x4f1600,4, 0x4f1640,13, 0x4f1680,7, 0x4f16a0,5, 0x4f16c0,1, 0x4f2000,25, 0x4f2080,1, 0x4f2088,8, 0x4f20c0,6, 0x4f20e0,1, 0x4f20e8,2, 0x4f2104,5, 0x4f2200,11, 0x4f2240,1, 0x4f2248,1, 0x4f2400,4, 0x4f3000,35, 0x4f3a00,10, 0x4f3a80,3, 0x4f4000,8, 0x4f4024,2, 0x4f4040,2, 0x4f4060,6, 0x4f4080,1, 0x4f40f0,12, 0x4f4124,2, 0x4f4140,2, 0x4f4160,6, 0x4f4180,1, 0x4f41f0,12, 0x4f4224,2, 0x4f4240,2, 0x4f4260,6, 0x4f4280,1, 0x4f42f0,12, 0x4f4324,2, 0x4f4340,2, 0x4f4360,6, 0x4f4380,1, 0x4f43f0,4, 0x4f4410,4, 0x4f45f8,2, 0x4f5004,1, 0x4f5040,16, 0x4f5204,3, 0x4f5224,1, 0x4f522c,1, 0x4f5400,48, 0x4f54c4,2, 0x4f54d0,3, 0x4f5600,37, 0x4f5700,17, 0x4f5748,2, 0x4f5780,16, 0x4f5800,25, 0x4f5880,1, 0x4f5888,8, 0x4f58c0,6, 0x4f58e0,1, 0x4f58e8,2, 0x4f5904,14, 0x4f5a00,4, 0x4f5b00,60, 0x4f5c00,4, 0x4f5c40,12, 0x4f5c80,5, 0x4f5ca0,1, 0x4f5cb0,1, 0x4f6000,3, 0x4f6010,3, 0x4f6020,3, 0x4f6030,3, 0x4f6040,3, 0x4f6050,3, 0x4f6060,3, 0x4f6070,3, 0x4f6080,8, 0x4f60e0,1, 0x4f6100,1, 0x4f6140,3, 0x4f6160,8, 0x4f6184,11, 0x4f61c0,1, 0x4f62c0,1, 0x4f62c8,14, 0x4f8000,1, 0x4f8008,3, 0x4f8018,3, 0x4f8030,7, 0x4f8070,2, 0x4f8080,1, 0x4f8088,3, 0x4f8098,3, 0x4f80b0,7, 0x4f80f0,2, 0x4f8100,1, 0x4f8108,3, 0x4f8118,3, 0x4f8130,7, 0x4f8170,2, 0x4f8180,1, 0x4f8188,3, 0x4f8198,3, 0x4f81b0,7, 0x4f81f0,2, 0x4f8200,3, 0x4f8210,3, 0x4f8220,3, 0x4f8230,3, 0x4f8240,10, 0x4f826c,1, 0x4f8280,28, 0x4f82f4,8, 0x4f8320,27, 0x4f83dc,43, 0x4f8490,3, 0x4f84a0,2, 0x4f84b0,3, 0x4f84c0,2, 0x4f84d0,3, 0x4f84e0,2, 0x4f84f0,3, 0x4f8500,2, 0x4f8510,3, 0x4f8520,2, 0x4f8530,3, 0x4f8540,2, 0x4f8550,3, 0x4f8560,2, 0x4f8570,3, 0x4f8580,64, 0x4f8780,18, 0x4f87d0,4, 0x4f8800,13, 0x4f8880,1, 0x4f8888,8, 0x4f88c0,6, 0x4f88e0,1, 0x4f88e8,2, 0x4f8904,44, 0x4f8a00,4, 0x4f8a14,1, 0x4f8a1c,1, 0x4f8a24,1, 0x4f8a2c,1, 0x4f8a34,1, 0x4f8a3c,7, 0x4f8a60,6, 0x4f8a80,36, 0x4f8b40,15, 0x4f8b80,4, 0x4f8bc0,11, 0x4f8c00,9, 0x4f8c40,9, 0x4f8c80,9, 0x4f8cc0,9, 0x4f8d00,16, 0x4f8d54,1, 0x4f8d5c,1, 0x4f8d64,1, 0x4f8d6c,1, 0x4f8d80,26, 0x4f8e00,26, 0x4f8e80,26, 0x4f8f00,26, 0x4fa000,1, 0x4fa00c,4, 0x4fa020,4, 0x4fa038,3, 0x4fa0a8,38, 0x4fa180,64, 0x4fa2c0,8, 0x4fa2f8,317, 0x4fa804,1, 0x4fa810,6, 0x4fa884,1, 0x4fa894,5, 0x4fa904,1, 0x4fa92c,21, 0x4faa04,1, 0x4faa0c,1, 0x4faa14,1, 0x4faa1c,1, 0x4faa24,1, 0x4faa2c,1, 0x4faa34,1, 0x4faa3c,13, 0x4faa78,8, 0x4fab04,5, 0x4fab44,1, 0x4fab4c,1, 0x4fab54,1, 0x4fab60,3, 0x4fab70,5, 0x4fab88,3, 0x4fab98,1, 0x4fabc0,4, 0x4fb000,34, 0x4fb100,13, 0x4fb140,15, 0x4fb180,40, 0x4fb240,11, 0x4fb280,11, 0x4fb300,10, 0x4fb380,4, 0x4fb3c0,3, 0x4fb3d0,6, 0x4fb400,28, 0x4fb480,26, 0x4fb500,20, 0x4fb580,18, 0x4fc000,19, 0x4fca00,10, 0x4fca80,3, 0x4fcb00,6, 0x500000,3, 0x500010,1, 0x500030,13, 0x50006c,4, 0x500100,40, 0x5001fc,4, 0x500210,1, 0x500230,13, 0x50026c,4, 0x500300,40, 0x5003fc,4, 0x500410,1, 0x500430,13, 0x50046c,4, 0x500500,40, 0x5005fc,4, 0x500610,1, 0x500630,13, 0x50066c,4, 0x500700,40, 0x5007fc,9, 0x501000,19, 0x501a00,10, 0x501a80,3, 0x502000,6, 0x50201c,12, 0x502080,1, 0x502088,1, 0x502090,2, 0x5020a0,2, 0x502100,1, 0x50210c,2, 0x50211c,2, 0x50212c,2, 0x50213c,1, 0x502180,2, 0x50218c,1, 0x502200,27, 0x502300,7, 0x502320,2, 0x50232c,1, 0x502380,10, 0x5023c0,1, 0x502800,109, 0x5029c0,5, 0x502a00,109, 0x502bc0,5, 0x502c00,109, 0x502dc0,5, 0x503000,3, 0x503014,16, 0x503074,1, 0x503080,3, 0x503094,16, 0x5030f4,1, 0x503100,3, 0x503114,16, 0x503174,1, 0x503180,3, 0x503194,16, 0x5031f4,1, 0x503400,10, 0x503440,10, 0x503480,10, 0x5034c0,10, 0x503500,1, 0x503600,1, 0x503680,16, 0x503700,6, 0x503720,6, 0x503740,6, 0x503760,6, 0x503780,6, 0x5037a0,6, 0x5037c0,6, 0x5037e0,6, 0x504000,60, 0x504100,60, 0x504200,32, 0x504800,4, 0x504900,53, 0x504a00,4, 0x504a20,2, 0x505000,25, 0x505080,1, 0x505088,8, 0x5050c0,6, 0x5050e0,1, 0x5050e8,2, 0x505104,5, 0x505200,11, 0x505240,1, 0x505248,1, 0x505400,4, 0x508000,2, 0x508010,41, 0x5080b8,3, 0x508100,9, 0x508128,1, 0x508140,9, 0x508168,1, 0x508180,6, 0x5081a0,6, 0x5081c0,6, 0x5081e0,4, 0x508400,9, 0x508428,1, 0x508440,2, 0x50844c,3, 0x508464,1, 0x508474,22, 0x508504,1, 0x50852c,53, 0x508604,1, 0x508670,36, 0x508708,3, 0x508800,3, 0x508814,10, 0x508840,11, 0x508870,35, 0x508900,8, 0x508924,5, 0x508980,2, 0x50898c,2, 0x5089a0,2, 0x5089c0,1, 0x508a00,12, 0x508a34,22, 0x508ac0,7, 0x508b00,8, 0x508b24,5, 0x508b80,2, 0x508b8c,2, 0x508ba0,2, 0x508bc0,1, 0x508c00,12, 0x508c40,12, 0x508c80,12, 0x508cc0,12, 0x508d00,12, 0x508d40,12, 0x508d80,12, 0x508dc0,12, 0x508e00,1, 0x508e08,13, 0x508e40,12, 0x508e80,3, 0x508f00,7, 0x508f44,8, 0x508f80,6, 0x508fa0,2, 0x509000,9, 0x509040,9, 0x509080,9, 0x5090c0,9, 0x509104,1, 0x509110,5, 0x509128,2, 0x509134,1, 0x50913c,5, 0x509168,1, 0x509170,2, 0x509200,8, 0x509240,4, 0x509260,8, 0x509300,8, 0x509330,2, 0x509340,7, 0x509380,3, 0x509390,3, 0x5093a0,3, 0x5093b0,3, 0x5093c0,5, 0x509400,69, 0x509600,4, 0x509640,13, 0x509680,7, 0x5096a0,5, 0x5096c0,1, 0x50a000,25, 0x50a080,1, 0x50a088,8, 0x50a0c0,6, 0x50a0e0,1, 0x50a0e8,2, 0x50a104,5, 0x50a200,11, 0x50a240,1, 0x50a248,1, 0x50a400,4, 0x50b000,35, 0x50ba00,10, 0x50ba80,3, 0x50c000,8, 0x50c024,2, 0x50c040,2, 0x50c060,6, 0x50c080,1, 0x50c0f0,12, 0x50c124,2, 0x50c140,2, 0x50c160,6, 0x50c180,1, 0x50c1f0,12, 0x50c224,2, 0x50c240,2, 0x50c260,6, 0x50c280,1, 0x50c2f0,12, 0x50c324,2, 0x50c340,2, 0x50c360,6, 0x50c380,1, 0x50c3f0,4, 0x50c410,4, 0x50c5f8,2, 0x50d004,1, 0x50d040,16, 0x50d204,3, 0x50d224,1, 0x50d22c,1, 0x50d400,48, 0x50d4c4,2, 0x50d4d0,3, 0x50d600,37, 0x50d700,17, 0x50d748,2, 0x50d780,16, 0x50d800,25, 0x50d880,1, 0x50d888,8, 0x50d8c0,6, 0x50d8e0,1, 0x50d8e8,2, 0x50d904,14, 0x50da00,4, 0x50db00,60, 0x50dc00,4, 0x50dc40,12, 0x50dc80,5, 0x50dca0,1, 0x50dcb0,1, 0x50e000,3, 0x50e010,3, 0x50e020,3, 0x50e030,3, 0x50e040,3, 0x50e050,3, 0x50e060,3, 0x50e070,3, 0x50e080,8, 0x50e0e0,1, 0x50e100,1, 0x50e140,3, 0x50e160,8, 0x50e184,11, 0x50e1c0,1, 0x50e2c0,1, 0x50e2c8,14, 0x510000,1, 0x510008,3, 0x510018,3, 0x510030,7, 0x510070,2, 0x510080,1, 0x510088,3, 0x510098,3, 0x5100b0,7, 0x5100f0,2, 0x510100,1, 0x510108,3, 0x510118,3, 0x510130,7, 0x510170,2, 0x510180,1, 0x510188,3, 0x510198,3, 0x5101b0,7, 0x5101f0,2, 0x510200,3, 0x510210,3, 0x510220,3, 0x510230,3, 0x510240,10, 0x51026c,1, 0x510280,28, 0x5102f4,8, 0x510320,27, 0x5103dc,43, 0x510490,3, 0x5104a0,2, 0x5104b0,3, 0x5104c0,2, 0x5104d0,3, 0x5104e0,2, 0x5104f0,3, 0x510500,2, 0x510510,3, 0x510520,2, 0x510530,3, 0x510540,2, 0x510550,3, 0x510560,2, 0x510570,3, 0x510580,64, 0x510780,18, 0x5107d0,4, 0x510800,13, 0x510880,1, 0x510888,8, 0x5108c0,6, 0x5108e0,1, 0x5108e8,2, 0x510904,44, 0x510a00,4, 0x510a14,1, 0x510a1c,1, 0x510a24,1, 0x510a2c,1, 0x510a34,1, 0x510a3c,7, 0x510a60,6, 0x510a80,36, 0x510b40,15, 0x510b80,4, 0x510bc0,11, 0x510c00,9, 0x510c40,9, 0x510c80,9, 0x510cc0,9, 0x510d00,16, 0x510d54,1, 0x510d5c,1, 0x510d64,1, 0x510d6c,1, 0x510d80,26, 0x510e00,26, 0x510e80,26, 0x510f00,26, 0x512000,1, 0x51200c,4, 0x512020,4, 0x512038,3, 0x5120a8,38, 0x512180,64, 0x5122c0,8, 0x5122f8,317, 0x512804,1, 0x512810,6, 0x512884,1, 0x512894,5, 0x512904,1, 0x51292c,21, 0x512a04,1, 0x512a0c,1, 0x512a14,1, 0x512a1c,1, 0x512a24,1, 0x512a2c,1, 0x512a34,1, 0x512a3c,13, 0x512a78,8, 0x512b04,5, 0x512b44,1, 0x512b4c,1, 0x512b54,1, 0x512b60,3, 0x512b70,5, 0x512b88,3, 0x512b98,1, 0x512bc0,4, 0x513000,34, 0x513100,13, 0x513140,15, 0x513180,40, 0x513240,11, 0x513280,11, 0x513300,10, 0x513380,4, 0x5133c0,3, 0x5133d0,6, 0x513400,28, 0x513480,26, 0x513500,20, 0x513580,18, 0x514000,19, 0x514a00,10, 0x514a80,3, 0x514b00,6, 0x518000,3, 0x518010,1, 0x518030,13, 0x51806c,4, 0x518100,40, 0x5181fc,4, 0x518210,1, 0x518230,13, 0x51826c,4, 0x518300,40, 0x5183fc,4, 0x518410,1, 0x518430,13, 0x51846c,4, 0x518500,40, 0x5185fc,4, 0x518610,1, 0x518630,13, 0x51866c,4, 0x518700,40, 0x5187fc,9, 0x519000,19, 0x519a00,10, 0x519a80,3, 0x51a000,6, 0x51a01c,12, 0x51a080,1, 0x51a088,1, 0x51a090,2, 0x51a0a0,2, 0x51a100,1, 0x51a10c,2, 0x51a11c,2, 0x51a12c,2, 0x51a13c,1, 0x51a180,2, 0x51a18c,1, 0x51a200,27, 0x51a300,7, 0x51a320,2, 0x51a32c,1, 0x51a380,10, 0x51a3c0,1, 0x51a800,109, 0x51a9c0,5, 0x51aa00,109, 0x51abc0,5, 0x51ac00,109, 0x51adc0,5, 0x51b000,3, 0x51b014,16, 0x51b074,1, 0x51b080,3, 0x51b094,16, 0x51b0f4,1, 0x51b100,3, 0x51b114,16, 0x51b174,1, 0x51b180,3, 0x51b194,16, 0x51b1f4,1, 0x51b400,10, 0x51b440,10, 0x51b480,10, 0x51b4c0,10, 0x51b500,1, 0x51b600,1, 0x51b680,16, 0x51b700,6, 0x51b720,6, 0x51b740,6, 0x51b760,6, 0x51b780,6, 0x51b7a0,6, 0x51b7c0,6, 0x51b7e0,6, 0x51c000,60, 0x51c100,60, 0x51c200,32, 0x51c800,4, 0x51c900,53, 0x51ca00,4, 0x51ca20,2, 0x51d000,25, 0x51d080,1, 0x51d088,8, 0x51d0c0,6, 0x51d0e0,1, 0x51d0e8,2, 0x51d104,5, 0x51d200,11, 0x51d240,1, 0x51d248,1, 0x51d400,4, 0x520000,2, 0x520010,41, 0x5200b8,3, 0x520100,9, 0x520128,1, 0x520140,9, 0x520168,1, 0x520180,6, 0x5201a0,6, 0x5201c0,6, 0x5201e0,4, 0x520400,9, 0x520428,1, 0x520440,2, 0x52044c,3, 0x520464,1, 0x520474,22, 0x520504,1, 0x52052c,53, 0x520604,1, 0x520670,36, 0x520708,3, 0x520800,3, 0x520814,10, 0x520840,11, 0x520870,35, 0x520900,8, 0x520924,5, 0x520980,2, 0x52098c,2, 0x5209a0,2, 0x5209c0,1, 0x520a00,12, 0x520a34,22, 0x520ac0,7, 0x520b00,8, 0x520b24,5, 0x520b80,2, 0x520b8c,2, 0x520ba0,2, 0x520bc0,1, 0x520c00,12, 0x520c40,12, 0x520c80,12, 0x520cc0,12, 0x520d00,12, 0x520d40,12, 0x520d80,12, 0x520dc0,12, 0x520e00,1, 0x520e08,13, 0x520e40,12, 0x520e80,3, 0x520f00,7, 0x520f44,8, 0x520f80,6, 0x520fa0,2, 0x521000,9, 0x521040,9, 0x521080,9, 0x5210c0,9, 0x521104,1, 0x521110,5, 0x521128,2, 0x521134,1, 0x52113c,5, 0x521168,1, 0x521170,2, 0x521200,8, 0x521240,4, 0x521260,8, 0x521300,8, 0x521330,2, 0x521340,7, 0x521380,3, 0x521390,3, 0x5213a0,3, 0x5213b0,3, 0x5213c0,5, 0x521400,69, 0x521600,4, 0x521640,13, 0x521680,7, 0x5216a0,5, 0x5216c0,1, 0x522000,25, 0x522080,1, 0x522088,8, 0x5220c0,6, 0x5220e0,1, 0x5220e8,2, 0x522104,5, 0x522200,11, 0x522240,1, 0x522248,1, 0x522400,4, 0x523000,35, 0x523a00,10, 0x523a80,3, 0x524000,8, 0x524024,2, 0x524040,2, 0x524060,6, 0x524080,1, 0x5240f0,12, 0x524124,2, 0x524140,2, 0x524160,6, 0x524180,1, 0x5241f0,12, 0x524224,2, 0x524240,2, 0x524260,6, 0x524280,1, 0x5242f0,12, 0x524324,2, 0x524340,2, 0x524360,6, 0x524380,1, 0x5243f0,4, 0x524410,4, 0x5245f8,2, 0x525004,1, 0x525040,16, 0x525204,3, 0x525224,1, 0x52522c,1, 0x525400,48, 0x5254c4,2, 0x5254d0,3, 0x525600,37, 0x525700,17, 0x525748,2, 0x525780,16, 0x525800,25, 0x525880,1, 0x525888,8, 0x5258c0,6, 0x5258e0,1, 0x5258e8,2, 0x525904,14, 0x525a00,4, 0x525b00,60, 0x525c00,4, 0x525c40,12, 0x525c80,5, 0x525ca0,1, 0x525cb0,1, 0x526000,3, 0x526010,3, 0x526020,3, 0x526030,3, 0x526040,3, 0x526050,3, 0x526060,3, 0x526070,3, 0x526080,8, 0x5260e0,1, 0x526100,1, 0x526140,3, 0x526160,8, 0x526184,11, 0x5261c0,1, 0x5262c0,1, 0x5262c8,14, 0x528000,1, 0x528008,3, 0x528018,3, 0x528030,7, 0x528070,2, 0x528080,1, 0x528088,3, 0x528098,3, 0x5280b0,7, 0x5280f0,2, 0x528100,1, 0x528108,3, 0x528118,3, 0x528130,7, 0x528170,2, 0x528180,1, 0x528188,3, 0x528198,3, 0x5281b0,7, 0x5281f0,2, 0x528200,3, 0x528210,3, 0x528220,3, 0x528230,3, 0x528240,10, 0x52826c,1, 0x528280,28, 0x5282f4,8, 0x528320,27, 0x5283dc,43, 0x528490,3, 0x5284a0,2, 0x5284b0,3, 0x5284c0,2, 0x5284d0,3, 0x5284e0,2, 0x5284f0,3, 0x528500,2, 0x528510,3, 0x528520,2, 0x528530,3, 0x528540,2, 0x528550,3, 0x528560,2, 0x528570,3, 0x528580,64, 0x528780,18, 0x5287d0,4, 0x528800,13, 0x528880,1, 0x528888,8, 0x5288c0,6, 0x5288e0,1, 0x5288e8,2, 0x528904,44, 0x528a00,4, 0x528a14,1, 0x528a1c,1, 0x528a24,1, 0x528a2c,1, 0x528a34,1, 0x528a3c,7, 0x528a60,6, 0x528a80,36, 0x528b40,15, 0x528b80,4, 0x528bc0,11, 0x528c00,9, 0x528c40,9, 0x528c80,9, 0x528cc0,9, 0x528d00,16, 0x528d54,1, 0x528d5c,1, 0x528d64,1, 0x528d6c,1, 0x528d80,26, 0x528e00,26, 0x528e80,26, 0x528f00,26, 0x52a000,1, 0x52a00c,4, 0x52a020,4, 0x52a038,3, 0x52a0a8,38, 0x52a180,64, 0x52a2c0,8, 0x52a2f8,317, 0x52a804,1, 0x52a810,6, 0x52a884,1, 0x52a894,5, 0x52a904,1, 0x52a92c,21, 0x52aa04,1, 0x52aa0c,1, 0x52aa14,1, 0x52aa1c,1, 0x52aa24,1, 0x52aa2c,1, 0x52aa34,1, 0x52aa3c,13, 0x52aa78,8, 0x52ab04,5, 0x52ab44,1, 0x52ab4c,1, 0x52ab54,1, 0x52ab60,3, 0x52ab70,5, 0x52ab88,3, 0x52ab98,1, 0x52abc0,4, 0x52b000,34, 0x52b100,13, 0x52b140,15, 0x52b180,40, 0x52b240,11, 0x52b280,11, 0x52b300,10, 0x52b380,4, 0x52b3c0,3, 0x52b3d0,6, 0x52b400,28, 0x52b480,26, 0x52b500,20, 0x52b580,18, 0x52c000,19, 0x52ca00,10, 0x52ca80,3, 0x52cb00,6, 0x530000,3, 0x530010,1, 0x530030,13, 0x53006c,4, 0x530100,40, 0x5301fc,4, 0x530210,1, 0x530230,13, 0x53026c,4, 0x530300,40, 0x5303fc,4, 0x530410,1, 0x530430,13, 0x53046c,4, 0x530500,40, 0x5305fc,4, 0x530610,1, 0x530630,13, 0x53066c,4, 0x530700,40, 0x5307fc,9, 0x531000,19, 0x531a00,10, 0x531a80,3, 0x532000,6, 0x53201c,12, 0x532080,1, 0x532088,1, 0x532090,2, 0x5320a0,2, 0x532100,1, 0x53210c,2, 0x53211c,2, 0x53212c,2, 0x53213c,1, 0x532180,2, 0x53218c,1, 0x532200,27, 0x532300,7, 0x532320,2, 0x53232c,1, 0x532380,10, 0x5323c0,1, 0x532800,109, 0x5329c0,5, 0x532a00,109, 0x532bc0,5, 0x532c00,109, 0x532dc0,5, 0x533000,3, 0x533014,16, 0x533074,1, 0x533080,3, 0x533094,16, 0x5330f4,1, 0x533100,3, 0x533114,16, 0x533174,1, 0x533180,3, 0x533194,16, 0x5331f4,1, 0x533400,10, 0x533440,10, 0x533480,10, 0x5334c0,10, 0x533500,1, 0x533600,1, 0x533680,16, 0x533700,6, 0x533720,6, 0x533740,6, 0x533760,6, 0x533780,6, 0x5337a0,6, 0x5337c0,6, 0x5337e0,6, 0x534000,60, 0x534100,60, 0x534200,32, 0x534800,4, 0x534900,53, 0x534a00,4, 0x534a20,2, 0x535000,25, 0x535080,1, 0x535088,8, 0x5350c0,6, 0x5350e0,1, 0x5350e8,2, 0x535104,5, 0x535200,11, 0x535240,1, 0x535248,1, 0x535400,4, 0x538000,2, 0x538010,41, 0x5380b8,3, 0x538100,9, 0x538128,1, 0x538140,9, 0x538168,1, 0x538180,6, 0x5381a0,6, 0x5381c0,6, 0x5381e0,4, 0x538400,9, 0x538428,1, 0x538440,2, 0x53844c,3, 0x538464,1, 0x538474,22, 0x538504,1, 0x53852c,53, 0x538604,1, 0x538670,36, 0x538708,3, 0x538800,3, 0x538814,10, 0x538840,11, 0x538870,35, 0x538900,8, 0x538924,5, 0x538980,2, 0x53898c,2, 0x5389a0,2, 0x5389c0,1, 0x538a00,12, 0x538a34,22, 0x538ac0,7, 0x538b00,8, 0x538b24,5, 0x538b80,2, 0x538b8c,2, 0x538ba0,2, 0x538bc0,1, 0x538c00,12, 0x538c40,12, 0x538c80,12, 0x538cc0,12, 0x538d00,12, 0x538d40,12, 0x538d80,12, 0x538dc0,12, 0x538e00,1, 0x538e08,13, 0x538e40,12, 0x538e80,3, 0x538f00,7, 0x538f44,8, 0x538f80,6, 0x538fa0,2, 0x539000,9, 0x539040,9, 0x539080,9, 0x5390c0,9, 0x539104,1, 0x539110,5, 0x539128,2, 0x539134,1, 0x53913c,5, 0x539168,1, 0x539170,2, 0x539200,8, 0x539240,4, 0x539260,8, 0x539300,8, 0x539330,2, 0x539340,7, 0x539380,3, 0x539390,3, 0x5393a0,3, 0x5393b0,3, 0x5393c0,5, 0x539400,69, 0x539600,4, 0x539640,13, 0x539680,7, 0x5396a0,5, 0x5396c0,1, 0x53a000,25, 0x53a080,1, 0x53a088,8, 0x53a0c0,6, 0x53a0e0,1, 0x53a0e8,2, 0x53a104,5, 0x53a200,11, 0x53a240,1, 0x53a248,1, 0x53a400,4, 0x53b000,35, 0x53ba00,10, 0x53ba80,3, 0x53c000,8, 0x53c024,2, 0x53c040,2, 0x53c060,6, 0x53c080,1, 0x53c0f0,12, 0x53c124,2, 0x53c140,2, 0x53c160,6, 0x53c180,1, 0x53c1f0,12, 0x53c224,2, 0x53c240,2, 0x53c260,6, 0x53c280,1, 0x53c2f0,12, 0x53c324,2, 0x53c340,2, 0x53c360,6, 0x53c380,1, 0x53c3f0,4, 0x53c410,4, 0x53c5f8,2, 0x53d004,1, 0x53d040,16, 0x53d204,3, 0x53d224,1, 0x53d22c,1, 0x53d400,48, 0x53d4c4,2, 0x53d4d0,3, 0x53d600,37, 0x53d700,17, 0x53d748,2, 0x53d780,16, 0x53d800,25, 0x53d880,1, 0x53d888,8, 0x53d8c0,6, 0x53d8e0,1, 0x53d8e8,2, 0x53d904,14, 0x53da00,4, 0x53db00,60, 0x53dc00,4, 0x53dc40,12, 0x53dc80,5, 0x53dca0,1, 0x53dcb0,1, 0x53e000,3, 0x53e010,3, 0x53e020,3, 0x53e030,3, 0x53e040,3, 0x53e050,3, 0x53e060,3, 0x53e070,3, 0x53e080,8, 0x53e0e0,1, 0x53e100,1, 0x53e140,3, 0x53e160,8, 0x53e184,11, 0x53e1c0,1, 0x53e2c0,1, 0x53e2c8,14, 0x540000,1, 0x540008,3, 0x540018,3, 0x540030,7, 0x540070,2, 0x540080,1, 0x540088,3, 0x540098,3, 0x5400b0,7, 0x5400f0,2, 0x540100,1, 0x540108,3, 0x540118,3, 0x540130,7, 0x540170,2, 0x540180,1, 0x540188,3, 0x540198,3, 0x5401b0,7, 0x5401f0,2, 0x540200,3, 0x540210,3, 0x540220,3, 0x540230,3, 0x540240,10, 0x54026c,1, 0x540280,28, 0x5402f4,8, 0x540320,27, 0x5403dc,43, 0x540490,3, 0x5404a0,2, 0x5404b0,3, 0x5404c0,2, 0x5404d0,3, 0x5404e0,2, 0x5404f0,3, 0x540500,2, 0x540510,3, 0x540520,2, 0x540530,3, 0x540540,2, 0x540550,3, 0x540560,2, 0x540570,3, 0x540580,64, 0x540780,18, 0x5407d0,4, 0x540800,13, 0x540880,1, 0x540888,8, 0x5408c0,6, 0x5408e0,1, 0x5408e8,2, 0x540904,44, 0x540a00,4, 0x540a14,1, 0x540a1c,1, 0x540a24,1, 0x540a2c,1, 0x540a34,1, 0x540a3c,7, 0x540a60,6, 0x540a80,36, 0x540b40,15, 0x540b80,4, 0x540bc0,11, 0x540c00,9, 0x540c40,9, 0x540c80,9, 0x540cc0,9, 0x540d00,16, 0x540d54,1, 0x540d5c,1, 0x540d64,1, 0x540d6c,1, 0x540d80,26, 0x540e00,26, 0x540e80,26, 0x540f00,26, 0x542000,1, 0x54200c,4, 0x542020,4, 0x542038,3, 0x5420a8,38, 0x542180,64, 0x5422c0,8, 0x5422f8,317, 0x542804,1, 0x542810,6, 0x542884,1, 0x542894,5, 0x542904,1, 0x54292c,21, 0x542a04,1, 0x542a0c,1, 0x542a14,1, 0x542a1c,1, 0x542a24,1, 0x542a2c,1, 0x542a34,1, 0x542a3c,13, 0x542a78,8, 0x542b04,5, 0x542b44,1, 0x542b4c,1, 0x542b54,1, 0x542b60,3, 0x542b70,5, 0x542b88,3, 0x542b98,1, 0x542bc0,4, 0x543000,34, 0x543100,13, 0x543140,15, 0x543180,40, 0x543240,11, 0x543280,11, 0x543300,10, 0x543380,4, 0x5433c0,3, 0x5433d0,6, 0x543400,28, 0x543480,26, 0x543500,20, 0x543580,18, 0x544000,19, 0x544a00,10, 0x544a80,3, 0x544b00,6, 0x548000,3, 0x548010,1, 0x548030,13, 0x54806c,4, 0x548100,40, 0x5481fc,4, 0x548210,1, 0x548230,13, 0x54826c,4, 0x548300,40, 0x5483fc,4, 0x548410,1, 0x548430,13, 0x54846c,4, 0x548500,40, 0x5485fc,4, 0x548610,1, 0x548630,13, 0x54866c,4, 0x548700,40, 0x5487fc,9, 0x549000,19, 0x549a00,10, 0x549a80,3, 0x54a000,6, 0x54a01c,12, 0x54a080,1, 0x54a088,1, 0x54a090,2, 0x54a0a0,2, 0x54a100,1, 0x54a10c,2, 0x54a11c,2, 0x54a12c,2, 0x54a13c,1, 0x54a180,2, 0x54a18c,1, 0x54a200,27, 0x54a300,7, 0x54a320,2, 0x54a32c,1, 0x54a380,10, 0x54a3c0,1, 0x54a800,109, 0x54a9c0,5, 0x54aa00,109, 0x54abc0,5, 0x54ac00,109, 0x54adc0,5, 0x54b000,3, 0x54b014,16, 0x54b074,1, 0x54b080,3, 0x54b094,16, 0x54b0f4,1, 0x54b100,3, 0x54b114,16, 0x54b174,1, 0x54b180,3, 0x54b194,16, 0x54b1f4,1, 0x54b400,10, 0x54b440,10, 0x54b480,10, 0x54b4c0,10, 0x54b500,1, 0x54b600,1, 0x54b680,16, 0x54b700,6, 0x54b720,6, 0x54b740,6, 0x54b760,6, 0x54b780,6, 0x54b7a0,6, 0x54b7c0,6, 0x54b7e0,6, 0x54c000,60, 0x54c100,60, 0x54c200,32, 0x54c800,4, 0x54c900,53, 0x54ca00,4, 0x54ca20,2, 0x54d000,25, 0x54d080,1, 0x54d088,8, 0x54d0c0,6, 0x54d0e0,1, 0x54d0e8,2, 0x54d104,5, 0x54d200,11, 0x54d240,1, 0x54d248,1, 0x54d400,4, 0x550000,2, 0x550010,41, 0x5500b8,3, 0x550100,9, 0x550128,1, 0x550140,9, 0x550168,1, 0x550180,6, 0x5501a0,6, 0x5501c0,6, 0x5501e0,4, 0x550400,9, 0x550428,1, 0x550440,2, 0x55044c,3, 0x550464,1, 0x550474,22, 0x550504,1, 0x55052c,53, 0x550604,1, 0x550670,36, 0x550708,3, 0x550800,3, 0x550814,10, 0x550840,11, 0x550870,35, 0x550900,8, 0x550924,5, 0x550980,2, 0x55098c,2, 0x5509a0,2, 0x5509c0,1, 0x550a00,12, 0x550a34,22, 0x550ac0,7, 0x550b00,8, 0x550b24,5, 0x550b80,2, 0x550b8c,2, 0x550ba0,2, 0x550bc0,1, 0x550c00,12, 0x550c40,12, 0x550c80,12, 0x550cc0,12, 0x550d00,12, 0x550d40,12, 0x550d80,12, 0x550dc0,12, 0x550e00,1, 0x550e08,13, 0x550e40,12, 0x550e80,3, 0x550f00,7, 0x550f44,8, 0x550f80,6, 0x550fa0,2, 0x551000,9, 0x551040,9, 0x551080,9, 0x5510c0,9, 0x551104,1, 0x551110,5, 0x551128,2, 0x551134,1, 0x55113c,5, 0x551168,1, 0x551170,2, 0x551200,8, 0x551240,4, 0x551260,8, 0x551300,8, 0x551330,2, 0x551340,7, 0x551380,3, 0x551390,3, 0x5513a0,3, 0x5513b0,3, 0x5513c0,5, 0x551400,69, 0x551600,4, 0x551640,13, 0x551680,7, 0x5516a0,5, 0x5516c0,1, 0x552000,25, 0x552080,1, 0x552088,8, 0x5520c0,6, 0x5520e0,1, 0x5520e8,2, 0x552104,5, 0x552200,11, 0x552240,1, 0x552248,1, 0x552400,4, 0x553000,35, 0x553a00,10, 0x553a80,3, 0x554000,8, 0x554024,2, 0x554040,2, 0x554060,6, 0x554080,1, 0x5540f0,12, 0x554124,2, 0x554140,2, 0x554160,6, 0x554180,1, 0x5541f0,12, 0x554224,2, 0x554240,2, 0x554260,6, 0x554280,1, 0x5542f0,12, 0x554324,2, 0x554340,2, 0x554360,6, 0x554380,1, 0x5543f0,4, 0x554410,4, 0x5545f8,2, 0x555004,1, 0x555040,16, 0x555204,3, 0x555224,1, 0x55522c,1, 0x555400,48, 0x5554c4,2, 0x5554d0,3, 0x555600,37, 0x555700,17, 0x555748,2, 0x555780,16, 0x555800,25, 0x555880,1, 0x555888,8, 0x5558c0,6, 0x5558e0,1, 0x5558e8,2, 0x555904,14, 0x555a00,4, 0x555b00,60, 0x555c00,4, 0x555c40,12, 0x555c80,5, 0x555ca0,1, 0x555cb0,1, 0x556000,3, 0x556010,3, 0x556020,3, 0x556030,3, 0x556040,3, 0x556050,3, 0x556060,3, 0x556070,3, 0x556080,8, 0x5560e0,1, 0x556100,1, 0x556140,3, 0x556160,8, 0x556184,11, 0x5561c0,1, 0x5562c0,1, 0x5562c8,14, 0x558000,1, 0x558008,3, 0x558018,3, 0x558030,7, 0x558070,2, 0x558080,1, 0x558088,3, 0x558098,3, 0x5580b0,7, 0x5580f0,2, 0x558100,1, 0x558108,3, 0x558118,3, 0x558130,7, 0x558170,2, 0x558180,1, 0x558188,3, 0x558198,3, 0x5581b0,7, 0x5581f0,2, 0x558200,3, 0x558210,3, 0x558220,3, 0x558230,3, 0x558240,10, 0x55826c,1, 0x558280,28, 0x5582f4,8, 0x558320,27, 0x5583dc,43, 0x558490,3, 0x5584a0,2, 0x5584b0,3, 0x5584c0,2, 0x5584d0,3, 0x5584e0,2, 0x5584f0,3, 0x558500,2, 0x558510,3, 0x558520,2, 0x558530,3, 0x558540,2, 0x558550,3, 0x558560,2, 0x558570,3, 0x558580,64, 0x558780,18, 0x5587d0,4, 0x558800,13, 0x558880,1, 0x558888,8, 0x5588c0,6, 0x5588e0,1, 0x5588e8,2, 0x558904,44, 0x558a00,4, 0x558a14,1, 0x558a1c,1, 0x558a24,1, 0x558a2c,1, 0x558a34,1, 0x558a3c,7, 0x558a60,6, 0x558a80,36, 0x558b40,15, 0x558b80,4, 0x558bc0,11, 0x558c00,9, 0x558c40,9, 0x558c80,9, 0x558cc0,9, 0x558d00,16, 0x558d54,1, 0x558d5c,1, 0x558d64,1, 0x558d6c,1, 0x558d80,26, 0x558e00,26, 0x558e80,26, 0x558f00,26, 0x55a000,1, 0x55a00c,4, 0x55a020,4, 0x55a038,3, 0x55a0a8,38, 0x55a180,64, 0x55a2c0,8, 0x55a2f8,317, 0x55a804,1, 0x55a810,6, 0x55a884,1, 0x55a894,5, 0x55a904,1, 0x55a92c,21, 0x55aa04,1, 0x55aa0c,1, 0x55aa14,1, 0x55aa1c,1, 0x55aa24,1, 0x55aa2c,1, 0x55aa34,1, 0x55aa3c,13, 0x55aa78,8, 0x55ab04,5, 0x55ab44,1, 0x55ab4c,1, 0x55ab54,1, 0x55ab60,3, 0x55ab70,5, 0x55ab88,3, 0x55ab98,1, 0x55abc0,4, 0x55b000,34, 0x55b100,13, 0x55b140,15, 0x55b180,40, 0x55b240,11, 0x55b280,11, 0x55b300,10, 0x55b380,4, 0x55b3c0,3, 0x55b3d0,6, 0x55b400,28, 0x55b480,26, 0x55b500,20, 0x55b580,18, 0x55c000,19, 0x55ca00,10, 0x55ca80,3, 0x55cb00,6, 0x560000,3, 0x560010,1, 0x560030,13, 0x56006c,4, 0x560100,40, 0x5601fc,4, 0x560210,1, 0x560230,13, 0x56026c,4, 0x560300,40, 0x5603fc,4, 0x560410,1, 0x560430,13, 0x56046c,4, 0x560500,40, 0x5605fc,4, 0x560610,1, 0x560630,13, 0x56066c,4, 0x560700,40, 0x5607fc,9, 0x561000,19, 0x561a00,10, 0x561a80,3, 0x562000,6, 0x56201c,12, 0x562080,1, 0x562088,1, 0x562090,2, 0x5620a0,2, 0x562100,1, 0x56210c,2, 0x56211c,2, 0x56212c,2, 0x56213c,1, 0x562180,2, 0x56218c,1, 0x562200,27, 0x562300,7, 0x562320,2, 0x56232c,1, 0x562380,10, 0x5623c0,1, 0x562800,109, 0x5629c0,5, 0x562a00,109, 0x562bc0,5, 0x562c00,109, 0x562dc0,5, 0x563000,3, 0x563014,16, 0x563074,1, 0x563080,3, 0x563094,16, 0x5630f4,1, 0x563100,3, 0x563114,16, 0x563174,1, 0x563180,3, 0x563194,16, 0x5631f4,1, 0x563400,10, 0x563440,10, 0x563480,10, 0x5634c0,10, 0x563500,1, 0x563600,1, 0x563680,16, 0x563700,6, 0x563720,6, 0x563740,6, 0x563760,6, 0x563780,6, 0x5637a0,6, 0x5637c0,6, 0x5637e0,6, 0x564000,60, 0x564100,60, 0x564200,32, 0x564800,4, 0x564900,53, 0x564a00,4, 0x564a20,2, 0x565000,25, 0x565080,1, 0x565088,8, 0x5650c0,6, 0x5650e0,1, 0x5650e8,2, 0x565104,5, 0x565200,11, 0x565240,1, 0x565248,1, 0x565400,4, 0x568000,2, 0x568010,41, 0x5680b8,3, 0x568100,9, 0x568128,1, 0x568140,9, 0x568168,1, 0x568180,6, 0x5681a0,6, 0x5681c0,6, 0x5681e0,4, 0x568400,9, 0x568428,1, 0x568440,2, 0x56844c,3, 0x568464,1, 0x568474,22, 0x568504,1, 0x56852c,53, 0x568604,1, 0x568670,36, 0x568708,3, 0x568800,3, 0x568814,10, 0x568840,11, 0x568870,35, 0x568900,8, 0x568924,5, 0x568980,2, 0x56898c,2, 0x5689a0,2, 0x5689c0,1, 0x568a00,12, 0x568a34,22, 0x568ac0,7, 0x568b00,8, 0x568b24,5, 0x568b80,2, 0x568b8c,2, 0x568ba0,2, 0x568bc0,1, 0x568c00,12, 0x568c40,12, 0x568c80,12, 0x568cc0,12, 0x568d00,12, 0x568d40,12, 0x568d80,12, 0x568dc0,12, 0x568e00,1, 0x568e08,13, 0x568e40,12, 0x568e80,3, 0x568f00,7, 0x568f44,8, 0x568f80,6, 0x568fa0,2, 0x569000,9, 0x569040,9, 0x569080,9, 0x5690c0,9, 0x569104,1, 0x569110,5, 0x569128,2, 0x569134,1, 0x56913c,5, 0x569168,1, 0x569170,2, 0x569200,8, 0x569240,4, 0x569260,8, 0x569300,8, 0x569330,2, 0x569340,7, 0x569380,3, 0x569390,3, 0x5693a0,3, 0x5693b0,3, 0x5693c0,5, 0x569400,69, 0x569600,4, 0x569640,13, 0x569680,7, 0x5696a0,5, 0x5696c0,1, 0x56a000,25, 0x56a080,1, 0x56a088,8, 0x56a0c0,6, 0x56a0e0,1, 0x56a0e8,2, 0x56a104,5, 0x56a200,11, 0x56a240,1, 0x56a248,1, 0x56a400,4, 0x56b000,35, 0x56ba00,10, 0x56ba80,3, 0x56c000,8, 0x56c024,2, 0x56c040,2, 0x56c060,6, 0x56c080,1, 0x56c0f0,12, 0x56c124,2, 0x56c140,2, 0x56c160,6, 0x56c180,1, 0x56c1f0,12, 0x56c224,2, 0x56c240,2, 0x56c260,6, 0x56c280,1, 0x56c2f0,12, 0x56c324,2, 0x56c340,2, 0x56c360,6, 0x56c380,1, 0x56c3f0,4, 0x56c410,4, 0x56c5f8,2, 0x56d004,1, 0x56d040,16, 0x56d204,3, 0x56d224,1, 0x56d22c,1, 0x56d400,48, 0x56d4c4,2, 0x56d4d0,3, 0x56d600,37, 0x56d700,17, 0x56d748,2, 0x56d780,16, 0x56d800,25, 0x56d880,1, 0x56d888,8, 0x56d8c0,6, 0x56d8e0,1, 0x56d8e8,2, 0x56d904,14, 0x56da00,4, 0x56db00,60, 0x56dc00,4, 0x56dc40,12, 0x56dc80,5, 0x56dca0,1, 0x56dcb0,1, 0x56e000,3, 0x56e010,3, 0x56e020,3, 0x56e030,3, 0x56e040,3, 0x56e050,3, 0x56e060,3, 0x56e070,3, 0x56e080,8, 0x56e0e0,1, 0x56e100,1, 0x56e140,3, 0x56e160,8, 0x56e184,11, 0x56e1c0,1, 0x56e2c0,1, 0x56e2c8,14, 0x570000,1, 0x570008,3, 0x570018,3, 0x570030,7, 0x570070,2, 0x570080,1, 0x570088,3, 0x570098,3, 0x5700b0,7, 0x5700f0,2, 0x570100,1, 0x570108,3, 0x570118,3, 0x570130,7, 0x570170,2, 0x570180,1, 0x570188,3, 0x570198,3, 0x5701b0,7, 0x5701f0,2, 0x570200,3, 0x570210,3, 0x570220,3, 0x570230,3, 0x570240,10, 0x57026c,1, 0x570280,28, 0x5702f4,8, 0x570320,27, 0x5703dc,43, 0x570490,3, 0x5704a0,2, 0x5704b0,3, 0x5704c0,2, 0x5704d0,3, 0x5704e0,2, 0x5704f0,3, 0x570500,2, 0x570510,3, 0x570520,2, 0x570530,3, 0x570540,2, 0x570550,3, 0x570560,2, 0x570570,3, 0x570580,64, 0x570780,18, 0x5707d0,4, 0x570800,13, 0x570880,1, 0x570888,8, 0x5708c0,6, 0x5708e0,1, 0x5708e8,2, 0x570904,44, 0x570a00,4, 0x570a14,1, 0x570a1c,1, 0x570a24,1, 0x570a2c,1, 0x570a34,1, 0x570a3c,7, 0x570a60,6, 0x570a80,36, 0x570b40,15, 0x570b80,4, 0x570bc0,11, 0x570c00,9, 0x570c40,9, 0x570c80,9, 0x570cc0,9, 0x570d00,16, 0x570d54,1, 0x570d5c,1, 0x570d64,1, 0x570d6c,1, 0x570d80,26, 0x570e00,26, 0x570e80,26, 0x570f00,26, 0x572000,1, 0x57200c,4, 0x572020,4, 0x572038,3, 0x5720a8,38, 0x572180,64, 0x5722c0,8, 0x5722f8,317, 0x572804,1, 0x572810,6, 0x572884,1, 0x572894,5, 0x572904,1, 0x57292c,21, 0x572a04,1, 0x572a0c,1, 0x572a14,1, 0x572a1c,1, 0x572a24,1, 0x572a2c,1, 0x572a34,1, 0x572a3c,13, 0x572a78,8, 0x572b04,5, 0x572b44,1, 0x572b4c,1, 0x572b54,1, 0x572b60,3, 0x572b70,5, 0x572b88,3, 0x572b98,1, 0x572bc0,4, 0x573000,34, 0x573100,13, 0x573140,15, 0x573180,40, 0x573240,11, 0x573280,11, 0x573300,10, 0x573380,4, 0x5733c0,3, 0x5733d0,6, 0x573400,28, 0x573480,26, 0x573500,20, 0x573580,18, 0x574000,19, 0x574a00,10, 0x574a80,3, 0x574b00,6, 0x578000,3, 0x578010,1, 0x578030,13, 0x57806c,4, 0x578100,40, 0x5781fc,4, 0x578210,1, 0x578230,13, 0x57826c,4, 0x578300,40, 0x5783fc,4, 0x578410,1, 0x578430,13, 0x57846c,4, 0x578500,40, 0x5785fc,4, 0x578610,1, 0x578630,13, 0x57866c,4, 0x578700,40, 0x5787fc,9, 0x579000,19, 0x579a00,10, 0x579a80,3, 0x57a000,6, 0x57a01c,12, 0x57a080,1, 0x57a088,1, 0x57a090,2, 0x57a0a0,2, 0x57a100,1, 0x57a10c,2, 0x57a11c,2, 0x57a12c,2, 0x57a13c,1, 0x57a180,2, 0x57a18c,1, 0x57a200,27, 0x57a300,7, 0x57a320,2, 0x57a32c,1, 0x57a380,10, 0x57a3c0,1, 0x57a800,109, 0x57a9c0,5, 0x57aa00,109, 0x57abc0,5, 0x57ac00,109, 0x57adc0,5, 0x57b000,3, 0x57b014,16, 0x57b074,1, 0x57b080,3, 0x57b094,16, 0x57b0f4,1, 0x57b100,3, 0x57b114,16, 0x57b174,1, 0x57b180,3, 0x57b194,16, 0x57b1f4,1, 0x57b400,10, 0x57b440,10, 0x57b480,10, 0x57b4c0,10, 0x57b500,1, 0x57b600,1, 0x57b680,16, 0x57b700,6, 0x57b720,6, 0x57b740,6, 0x57b760,6, 0x57b780,6, 0x57b7a0,6, 0x57b7c0,6, 0x57b7e0,6, 0x57c000,60, 0x57c100,60, 0x57c200,32, 0x57c800,4, 0x57c900,53, 0x57ca00,4, 0x57ca20,2, 0x57d000,25, 0x57d080,1, 0x57d088,8, 0x57d0c0,6, 0x57d0e0,1, 0x57d0e8,2, 0x57d104,5, 0x57d200,11, 0x57d240,1, 0x57d248,1, 0x57d400,4, 0x600000,11, 0x600040,9, 0x600080,32, 0x600108,2, 0x600200,16, 0x600280,18, 0x6002cc,2, 0x600300,19, 0x600380,5, 0x6003a0,6, 0x6003c0,7, 0x6003e0,2, 0x6003f0,23, 0x600480,3, 0x6004d0,6, 0x6004f8,1, 0x600500,12, 0x600538,13, 0x600570,1, 0x600600,1, 0x600800,11, 0x600840,9, 0x600880,32, 0x600908,2, 0x600a00,16, 0x600a80,18, 0x600acc,2, 0x600b00,19, 0x600b80,5, 0x600ba0,6, 0x600bc0,7, 0x600be0,2, 0x600bf0,23, 0x600c80,3, 0x600cd0,6, 0x600cf8,1, 0x600d00,12, 0x600d38,13, 0x600d70,1, 0x600e00,1, 0x601000,11, 0x601040,9, 0x601080,32, 0x601108,2, 0x601200,16, 0x601280,18, 0x6012cc,2, 0x601300,19, 0x601380,5, 0x6013a0,6, 0x6013c0,7, 0x6013e0,2, 0x6013f0,23, 0x601480,3, 0x6014d0,6, 0x6014f8,1, 0x601500,12, 0x601538,13, 0x601570,1, 0x601600,1, 0x601800,11, 0x601840,9, 0x601880,32, 0x601908,2, 0x601a00,16, 0x601a80,18, 0x601acc,2, 0x601b00,19, 0x601b80,5, 0x601ba0,6, 0x601bc0,7, 0x601be0,2, 0x601bf0,23, 0x601c80,3, 0x601cd0,6, 0x601cf8,1, 0x601d00,12, 0x601d38,13, 0x601d70,1, 0x601e00,1, 0x602000,11, 0x602040,9, 0x602080,32, 0x602108,2, 0x602200,16, 0x602280,18, 0x6022cc,2, 0x602300,19, 0x602380,5, 0x6023a0,6, 0x6023c0,7, 0x6023e0,2, 0x6023f0,23, 0x602480,3, 0x6024d0,6, 0x6024f8,1, 0x602500,12, 0x602538,13, 0x602570,1, 0x602600,1, 0x602800,11, 0x602840,9, 0x602880,32, 0x602908,2, 0x602a00,16, 0x602a80,18, 0x602acc,2, 0x602b00,19, 0x602b80,5, 0x602ba0,6, 0x602bc0,7, 0x602be0,2, 0x602bf0,23, 0x602c80,3, 0x602cd0,6, 0x602cf8,1, 0x602d00,12, 0x602d38,13, 0x602d70,1, 0x602e00,1, 0x603000,11, 0x603040,9, 0x603080,32, 0x603108,2, 0x603200,16, 0x603280,18, 0x6032cc,2, 0x603300,19, 0x603380,5, 0x6033a0,6, 0x6033c0,7, 0x6033e0,2, 0x6033f0,23, 0x603480,3, 0x6034d0,6, 0x6034f8,1, 0x603500,12, 0x603538,13, 0x603570,1, 0x603600,1, 0x603800,11, 0x603840,9, 0x603880,32, 0x603908,2, 0x603a00,16, 0x603a80,18, 0x603acc,2, 0x603b00,19, 0x603b80,5, 0x603ba0,6, 0x603bc0,7, 0x603be0,2, 0x603bf0,23, 0x603c80,3, 0x603cd0,6, 0x603cf8,1, 0x603d00,12, 0x603d38,13, 0x603d70,1, 0x603e00,1, 0x604000,11, 0x604040,9, 0x604080,32, 0x604108,2, 0x604200,16, 0x604280,18, 0x6042cc,2, 0x604300,19, 0x604380,5, 0x6043a0,6, 0x6043c0,7, 0x6043e0,2, 0x6043f0,23, 0x604480,3, 0x6044d0,6, 0x6044f8,1, 0x604500,12, 0x604538,13, 0x604570,1, 0x604600,1, 0x604800,11, 0x604840,9, 0x604880,32, 0x604908,2, 0x604a00,16, 0x604a80,18, 0x604acc,2, 0x604b00,19, 0x604b80,5, 0x604ba0,6, 0x604bc0,7, 0x604be0,2, 0x604bf0,23, 0x604c80,3, 0x604cd0,6, 0x604cf8,1, 0x604d00,12, 0x604d38,13, 0x604d70,1, 0x604e00,1, 0x605000,11, 0x605040,9, 0x605080,32, 0x605108,2, 0x605200,16, 0x605280,18, 0x6052cc,2, 0x605300,19, 0x605380,5, 0x6053a0,6, 0x6053c0,7, 0x6053e0,2, 0x6053f0,23, 0x605480,3, 0x6054d0,6, 0x6054f8,1, 0x605500,12, 0x605538,13, 0x605570,1, 0x605600,1, 0x605800,11, 0x605840,9, 0x605880,32, 0x605908,2, 0x605a00,16, 0x605a80,18, 0x605acc,2, 0x605b00,19, 0x605b80,5, 0x605ba0,6, 0x605bc0,7, 0x605be0,2, 0x605bf0,23, 0x605c80,3, 0x605cd0,6, 0x605cf8,1, 0x605d00,12, 0x605d38,13, 0x605d70,1, 0x605e00,1, 0x606000,11, 0x606040,9, 0x606080,32, 0x606108,2, 0x606200,16, 0x606280,18, 0x6062cc,2, 0x606300,19, 0x606380,5, 0x6063a0,6, 0x6063c0,7, 0x6063e0,2, 0x6063f0,23, 0x606480,3, 0x6064d0,6, 0x6064f8,1, 0x606500,12, 0x606538,13, 0x606570,1, 0x606600,1, 0x606800,11, 0x606840,9, 0x606880,32, 0x606908,2, 0x606a00,16, 0x606a80,18, 0x606acc,2, 0x606b00,19, 0x606b80,5, 0x606ba0,6, 0x606bc0,7, 0x606be0,2, 0x606bf0,23, 0x606c80,3, 0x606cd0,6, 0x606cf8,1, 0x606d00,12, 0x606d38,13, 0x606d70,1, 0x606e00,1, 0x607000,11, 0x607040,9, 0x607080,32, 0x607108,2, 0x607200,16, 0x607280,18, 0x6072cc,2, 0x607300,19, 0x607380,5, 0x6073a0,6, 0x6073c0,7, 0x6073e0,2, 0x6073f0,23, 0x607480,3, 0x6074d0,6, 0x6074f8,1, 0x607500,12, 0x607538,13, 0x607570,1, 0x607600,1, 0x607800,11, 0x607840,9, 0x607880,32, 0x607908,2, 0x607a00,16, 0x607a80,18, 0x607acc,2, 0x607b00,19, 0x607b80,5, 0x607ba0,6, 0x607bc0,7, 0x607be0,2, 0x607bf0,23, 0x607c80,3, 0x607cd0,6, 0x607cf8,1, 0x607d00,12, 0x607d38,13, 0x607d70,1, 0x607e00,1, 0x608000,11, 0x608040,9, 0x608080,32, 0x608108,2, 0x608200,16, 0x608280,18, 0x6082cc,2, 0x608300,19, 0x608380,5, 0x6083a0,6, 0x6083c0,7, 0x6083e0,2, 0x6083f0,23, 0x608480,3, 0x6084d0,6, 0x6084f8,1, 0x608500,12, 0x608538,13, 0x608570,1, 0x608600,1, 0x608800,11, 0x608840,9, 0x608880,32, 0x608908,2, 0x608a00,16, 0x608a80,18, 0x608acc,2, 0x608b00,19, 0x608b80,5, 0x608ba0,6, 0x608bc0,7, 0x608be0,2, 0x608bf0,23, 0x608c80,3, 0x608cd0,6, 0x608cf8,1, 0x608d00,12, 0x608d38,13, 0x608d70,1, 0x608e00,1, 0x609000,11, 0x609040,9, 0x609080,32, 0x609108,2, 0x609200,16, 0x609280,18, 0x6092cc,2, 0x609300,19, 0x609380,5, 0x6093a0,6, 0x6093c0,7, 0x6093e0,2, 0x6093f0,23, 0x609480,3, 0x6094d0,6, 0x6094f8,1, 0x609500,12, 0x609538,13, 0x609570,1, 0x609600,1, 0x609800,11, 0x609840,9, 0x609880,32, 0x609908,2, 0x609a00,16, 0x609a80,18, 0x609acc,2, 0x609b00,19, 0x609b80,5, 0x609ba0,6, 0x609bc0,7, 0x609be0,2, 0x609bf0,23, 0x609c80,3, 0x609cd0,6, 0x609cf8,1, 0x609d00,12, 0x609d38,13, 0x609d70,1, 0x609e00,1, 0x60a000,11, 0x60a040,9, 0x60a080,32, 0x60a108,2, 0x60a200,16, 0x60a280,18, 0x60a2cc,2, 0x60a300,19, 0x60a380,5, 0x60a3a0,6, 0x60a3c0,7, 0x60a3e0,2, 0x60a3f0,23, 0x60a480,3, 0x60a4d0,6, 0x60a4f8,1, 0x60a500,12, 0x60a538,13, 0x60a570,1, 0x60a600,1, 0x60a800,11, 0x60a840,9, 0x60a880,32, 0x60a908,2, 0x60aa00,16, 0x60aa80,18, 0x60aacc,2, 0x60ab00,19, 0x60ab80,5, 0x60aba0,6, 0x60abc0,7, 0x60abe0,2, 0x60abf0,23, 0x60ac80,3, 0x60acd0,6, 0x60acf8,1, 0x60ad00,12, 0x60ad38,13, 0x60ad70,1, 0x60ae00,1, 0x60b000,11, 0x60b040,9, 0x60b080,32, 0x60b108,2, 0x60b200,16, 0x60b280,18, 0x60b2cc,2, 0x60b300,19, 0x60b380,5, 0x60b3a0,6, 0x60b3c0,7, 0x60b3e0,2, 0x60b3f0,23, 0x60b480,3, 0x60b4d0,6, 0x60b4f8,1, 0x60b500,12, 0x60b538,13, 0x60b570,1, 0x60b600,1, 0x60b800,11, 0x60b840,9, 0x60b880,32, 0x60b908,2, 0x60ba00,16, 0x60ba80,18, 0x60bacc,2, 0x60bb00,19, 0x60bb80,5, 0x60bba0,6, 0x60bbc0,7, 0x60bbe0,2, 0x60bbf0,23, 0x60bc80,3, 0x60bcd0,6, 0x60bcf8,1, 0x60bd00,12, 0x60bd38,13, 0x60bd70,1, 0x60be00,1, 0x60c000,11, 0x60c040,9, 0x60c080,32, 0x60c108,2, 0x60c200,16, 0x60c280,18, 0x60c2cc,2, 0x60c300,19, 0x60c380,5, 0x60c3a0,6, 0x60c3c0,7, 0x60c3e0,2, 0x60c3f0,23, 0x60c480,3, 0x60c4d0,6, 0x60c4f8,1, 0x60c500,12, 0x60c538,13, 0x60c570,1, 0x60c600,1, 0x60c800,11, 0x60c840,9, 0x60c880,32, 0x60c908,2, 0x60ca00,16, 0x60ca80,18, 0x60cacc,2, 0x60cb00,19, 0x60cb80,5, 0x60cba0,6, 0x60cbc0,7, 0x60cbe0,2, 0x60cbf0,23, 0x60cc80,3, 0x60ccd0,6, 0x60ccf8,1, 0x60cd00,12, 0x60cd38,13, 0x60cd70,1, 0x60ce00,1, 0x60d000,11, 0x60d040,9, 0x60d080,32, 0x60d108,2, 0x60d200,16, 0x60d280,18, 0x60d2cc,2, 0x60d300,19, 0x60d380,5, 0x60d3a0,6, 0x60d3c0,7, 0x60d3e0,2, 0x60d3f0,23, 0x60d480,3, 0x60d4d0,6, 0x60d4f8,1, 0x60d500,12, 0x60d538,13, 0x60d570,1, 0x60d600,1, 0x60d800,11, 0x60d840,9, 0x60d880,32, 0x60d908,2, 0x60da00,16, 0x60da80,18, 0x60dacc,2, 0x60db00,19, 0x60db80,5, 0x60dba0,6, 0x60dbc0,7, 0x60dbe0,2, 0x60dbf0,23, 0x60dc80,3, 0x60dcd0,6, 0x60dcf8,1, 0x60dd00,12, 0x60dd38,13, 0x60dd70,1, 0x60de00,1, 0x60e000,11, 0x60e040,9, 0x60e080,32, 0x60e108,2, 0x60e200,16, 0x60e280,18, 0x60e2cc,2, 0x60e300,19, 0x60e380,5, 0x60e3a0,6, 0x60e3c0,7, 0x60e3e0,2, 0x60e3f0,23, 0x60e480,3, 0x60e4d0,6, 0x60e4f8,1, 0x60e500,12, 0x60e538,13, 0x60e570,1, 0x60e600,1, 0x60e800,11, 0x60e840,9, 0x60e880,32, 0x60e908,2, 0x60ea00,16, 0x60ea80,18, 0x60eacc,2, 0x60eb00,19, 0x60eb80,5, 0x60eba0,6, 0x60ebc0,7, 0x60ebe0,2, 0x60ebf0,23, 0x60ec80,3, 0x60ecd0,6, 0x60ecf8,1, 0x60ed00,12, 0x60ed38,13, 0x60ed70,1, 0x60ee00,1, 0x60f000,11, 0x60f040,9, 0x60f080,32, 0x60f108,2, 0x60f200,16, 0x60f280,18, 0x60f2cc,2, 0x60f300,19, 0x60f380,5, 0x60f3a0,6, 0x60f3c0,7, 0x60f3e0,2, 0x60f3f0,23, 0x60f480,3, 0x60f4d0,6, 0x60f4f8,1, 0x60f500,12, 0x60f538,13, 0x60f570,1, 0x60f600,1, 0x60f800,11, 0x60f840,9, 0x60f880,32, 0x60f908,2, 0x60fa00,16, 0x60fa80,18, 0x60facc,2, 0x60fb00,19, 0x60fb80,5, 0x60fba0,6, 0x60fbc0,7, 0x60fbe0,2, 0x60fbf0,23, 0x60fc80,3, 0x60fcd0,6, 0x60fcf8,1, 0x60fd00,12, 0x60fd38,13, 0x60fd70,1, 0x60fe00,1, 0x610000,11, 0x610040,9, 0x610080,32, 0x610108,2, 0x610200,16, 0x610280,18, 0x6102cc,2, 0x610300,19, 0x610380,5, 0x6103a0,6, 0x6103c0,7, 0x6103e0,2, 0x6103f0,23, 0x610480,3, 0x6104d0,6, 0x6104f8,1, 0x610500,12, 0x610538,13, 0x610570,1, 0x610600,1, 0x610800,11, 0x610840,9, 0x610880,32, 0x610908,2, 0x610a00,16, 0x610a80,18, 0x610acc,2, 0x610b00,19, 0x610b80,5, 0x610ba0,6, 0x610bc0,7, 0x610be0,2, 0x610bf0,23, 0x610c80,3, 0x610cd0,6, 0x610cf8,1, 0x610d00,12, 0x610d38,13, 0x610d70,1, 0x610e00,1, 0x611000,11, 0x611040,9, 0x611080,32, 0x611108,2, 0x611200,16, 0x611280,18, 0x6112cc,2, 0x611300,19, 0x611380,5, 0x6113a0,6, 0x6113c0,7, 0x6113e0,2, 0x6113f0,23, 0x611480,3, 0x6114d0,6, 0x6114f8,1, 0x611500,12, 0x611538,13, 0x611570,1, 0x611600,1, 0x611800,11, 0x611840,9, 0x611880,32, 0x611908,2, 0x611a00,16, 0x611a80,18, 0x611acc,2, 0x611b00,19, 0x611b80,5, 0x611ba0,6, 0x611bc0,7, 0x611be0,2, 0x611bf0,23, 0x611c80,3, 0x611cd0,6, 0x611cf8,1, 0x611d00,12, 0x611d38,13, 0x611d70,1, 0x611e00,1, 0x612000,2, 0x612084,1, 0x61209c,9, 0x6120c4,5, 0x613000,13, 0x613040,11, 0x613070,2, 0x613080,27, 0x613100,3, 0x613110,3, 0x613120,3, 0x613130,3, 0x613140,4, 0x614000,19, 0x614a00,10, 0x614a80,3, 0x620000,11, 0x620040,9, 0x620080,32, 0x620108,2, 0x620200,16, 0x620280,18, 0x6202cc,2, 0x620300,19, 0x620380,5, 0x6203a0,6, 0x6203c0,7, 0x6203e0,2, 0x6203f0,23, 0x620480,3, 0x6204d0,6, 0x6204f8,1, 0x620500,12, 0x620538,13, 0x620570,1, 0x620600,1, 0x620800,11, 0x620840,9, 0x620880,32, 0x620908,2, 0x620a00,16, 0x620a80,18, 0x620acc,2, 0x620b00,19, 0x620b80,5, 0x620ba0,6, 0x620bc0,7, 0x620be0,2, 0x620bf0,23, 0x620c80,3, 0x620cd0,6, 0x620cf8,1, 0x620d00,12, 0x620d38,13, 0x620d70,1, 0x620e00,1, 0x621000,11, 0x621040,9, 0x621080,32, 0x621108,2, 0x621200,16, 0x621280,18, 0x6212cc,2, 0x621300,19, 0x621380,5, 0x6213a0,6, 0x6213c0,7, 0x6213e0,2, 0x6213f0,23, 0x621480,3, 0x6214d0,6, 0x6214f8,1, 0x621500,12, 0x621538,13, 0x621570,1, 0x621600,1, 0x621800,11, 0x621840,9, 0x621880,32, 0x621908,2, 0x621a00,16, 0x621a80,18, 0x621acc,2, 0x621b00,19, 0x621b80,5, 0x621ba0,6, 0x621bc0,7, 0x621be0,2, 0x621bf0,23, 0x621c80,3, 0x621cd0,6, 0x621cf8,1, 0x621d00,12, 0x621d38,13, 0x621d70,1, 0x621e00,1, 0x622000,11, 0x622040,9, 0x622080,32, 0x622108,2, 0x622200,16, 0x622280,18, 0x6222cc,2, 0x622300,19, 0x622380,5, 0x6223a0,6, 0x6223c0,7, 0x6223e0,2, 0x6223f0,23, 0x622480,3, 0x6224d0,6, 0x6224f8,1, 0x622500,12, 0x622538,13, 0x622570,1, 0x622600,1, 0x622800,11, 0x622840,9, 0x622880,32, 0x622908,2, 0x622a00,16, 0x622a80,18, 0x622acc,2, 0x622b00,19, 0x622b80,5, 0x622ba0,6, 0x622bc0,7, 0x622be0,2, 0x622bf0,23, 0x622c80,3, 0x622cd0,6, 0x622cf8,1, 0x622d00,12, 0x622d38,13, 0x622d70,1, 0x622e00,1, 0x623000,11, 0x623040,9, 0x623080,32, 0x623108,2, 0x623200,16, 0x623280,18, 0x6232cc,2, 0x623300,19, 0x623380,5, 0x6233a0,6, 0x6233c0,7, 0x6233e0,2, 0x6233f0,23, 0x623480,3, 0x6234d0,6, 0x6234f8,1, 0x623500,12, 0x623538,13, 0x623570,1, 0x623600,1, 0x623800,11, 0x623840,9, 0x623880,32, 0x623908,2, 0x623a00,16, 0x623a80,18, 0x623acc,2, 0x623b00,19, 0x623b80,5, 0x623ba0,6, 0x623bc0,7, 0x623be0,2, 0x623bf0,23, 0x623c80,3, 0x623cd0,6, 0x623cf8,1, 0x623d00,12, 0x623d38,13, 0x623d70,1, 0x623e00,1, 0x624000,11, 0x624040,9, 0x624080,32, 0x624108,2, 0x624200,16, 0x624280,18, 0x6242cc,2, 0x624300,19, 0x624380,5, 0x6243a0,6, 0x6243c0,7, 0x6243e0,2, 0x6243f0,23, 0x624480,3, 0x6244d0,6, 0x6244f8,1, 0x624500,12, 0x624538,13, 0x624570,1, 0x624600,1, 0x624800,11, 0x624840,9, 0x624880,32, 0x624908,2, 0x624a00,16, 0x624a80,18, 0x624acc,2, 0x624b00,19, 0x624b80,5, 0x624ba0,6, 0x624bc0,7, 0x624be0,2, 0x624bf0,23, 0x624c80,3, 0x624cd0,6, 0x624cf8,1, 0x624d00,12, 0x624d38,13, 0x624d70,1, 0x624e00,1, 0x625000,11, 0x625040,9, 0x625080,32, 0x625108,2, 0x625200,16, 0x625280,18, 0x6252cc,2, 0x625300,19, 0x625380,5, 0x6253a0,6, 0x6253c0,7, 0x6253e0,2, 0x6253f0,23, 0x625480,3, 0x6254d0,6, 0x6254f8,1, 0x625500,12, 0x625538,13, 0x625570,1, 0x625600,1, 0x625800,11, 0x625840,9, 0x625880,32, 0x625908,2, 0x625a00,16, 0x625a80,18, 0x625acc,2, 0x625b00,19, 0x625b80,5, 0x625ba0,6, 0x625bc0,7, 0x625be0,2, 0x625bf0,23, 0x625c80,3, 0x625cd0,6, 0x625cf8,1, 0x625d00,12, 0x625d38,13, 0x625d70,1, 0x625e00,1, 0x626000,11, 0x626040,9, 0x626080,32, 0x626108,2, 0x626200,16, 0x626280,18, 0x6262cc,2, 0x626300,19, 0x626380,5, 0x6263a0,6, 0x6263c0,7, 0x6263e0,2, 0x6263f0,23, 0x626480,3, 0x6264d0,6, 0x6264f8,1, 0x626500,12, 0x626538,13, 0x626570,1, 0x626600,1, 0x626800,11, 0x626840,9, 0x626880,32, 0x626908,2, 0x626a00,16, 0x626a80,18, 0x626acc,2, 0x626b00,19, 0x626b80,5, 0x626ba0,6, 0x626bc0,7, 0x626be0,2, 0x626bf0,23, 0x626c80,3, 0x626cd0,6, 0x626cf8,1, 0x626d00,12, 0x626d38,13, 0x626d70,1, 0x626e00,1, 0x627000,11, 0x627040,9, 0x627080,32, 0x627108,2, 0x627200,16, 0x627280,18, 0x6272cc,2, 0x627300,19, 0x627380,5, 0x6273a0,6, 0x6273c0,7, 0x6273e0,2, 0x6273f0,23, 0x627480,3, 0x6274d0,6, 0x6274f8,1, 0x627500,12, 0x627538,13, 0x627570,1, 0x627600,1, 0x627800,11, 0x627840,9, 0x627880,32, 0x627908,2, 0x627a00,16, 0x627a80,18, 0x627acc,2, 0x627b00,19, 0x627b80,5, 0x627ba0,6, 0x627bc0,7, 0x627be0,2, 0x627bf0,23, 0x627c80,3, 0x627cd0,6, 0x627cf8,1, 0x627d00,12, 0x627d38,13, 0x627d70,1, 0x627e00,1, 0x628000,11, 0x628040,9, 0x628080,32, 0x628108,2, 0x628200,16, 0x628280,18, 0x6282cc,2, 0x628300,19, 0x628380,5, 0x6283a0,6, 0x6283c0,7, 0x6283e0,2, 0x6283f0,23, 0x628480,3, 0x6284d0,6, 0x6284f8,1, 0x628500,12, 0x628538,13, 0x628570,1, 0x628600,1, 0x628800,11, 0x628840,9, 0x628880,32, 0x628908,2, 0x628a00,16, 0x628a80,18, 0x628acc,2, 0x628b00,19, 0x628b80,5, 0x628ba0,6, 0x628bc0,7, 0x628be0,2, 0x628bf0,23, 0x628c80,3, 0x628cd0,6, 0x628cf8,1, 0x628d00,12, 0x628d38,13, 0x628d70,1, 0x628e00,1, 0x629000,11, 0x629040,9, 0x629080,32, 0x629108,2, 0x629200,16, 0x629280,18, 0x6292cc,2, 0x629300,19, 0x629380,5, 0x6293a0,6, 0x6293c0,7, 0x6293e0,2, 0x6293f0,23, 0x629480,3, 0x6294d0,6, 0x6294f8,1, 0x629500,12, 0x629538,13, 0x629570,1, 0x629600,1, 0x629800,11, 0x629840,9, 0x629880,32, 0x629908,2, 0x629a00,16, 0x629a80,18, 0x629acc,2, 0x629b00,19, 0x629b80,5, 0x629ba0,6, 0x629bc0,7, 0x629be0,2, 0x629bf0,23, 0x629c80,3, 0x629cd0,6, 0x629cf8,1, 0x629d00,12, 0x629d38,13, 0x629d70,1, 0x629e00,1, 0x62a000,11, 0x62a040,9, 0x62a080,32, 0x62a108,2, 0x62a200,16, 0x62a280,18, 0x62a2cc,2, 0x62a300,19, 0x62a380,5, 0x62a3a0,6, 0x62a3c0,7, 0x62a3e0,2, 0x62a3f0,23, 0x62a480,3, 0x62a4d0,6, 0x62a4f8,1, 0x62a500,12, 0x62a538,13, 0x62a570,1, 0x62a600,1, 0x62a800,11, 0x62a840,9, 0x62a880,32, 0x62a908,2, 0x62aa00,16, 0x62aa80,18, 0x62aacc,2, 0x62ab00,19, 0x62ab80,5, 0x62aba0,6, 0x62abc0,7, 0x62abe0,2, 0x62abf0,23, 0x62ac80,3, 0x62acd0,6, 0x62acf8,1, 0x62ad00,12, 0x62ad38,13, 0x62ad70,1, 0x62ae00,1, 0x62b000,11, 0x62b040,9, 0x62b080,32, 0x62b108,2, 0x62b200,16, 0x62b280,18, 0x62b2cc,2, 0x62b300,19, 0x62b380,5, 0x62b3a0,6, 0x62b3c0,7, 0x62b3e0,2, 0x62b3f0,23, 0x62b480,3, 0x62b4d0,6, 0x62b4f8,1, 0x62b500,12, 0x62b538,13, 0x62b570,1, 0x62b600,1, 0x62b800,11, 0x62b840,9, 0x62b880,32, 0x62b908,2, 0x62ba00,16, 0x62ba80,18, 0x62bacc,2, 0x62bb00,19, 0x62bb80,5, 0x62bba0,6, 0x62bbc0,7, 0x62bbe0,2, 0x62bbf0,23, 0x62bc80,3, 0x62bcd0,6, 0x62bcf8,1, 0x62bd00,12, 0x62bd38,13, 0x62bd70,1, 0x62be00,1, 0x62c000,11, 0x62c040,9, 0x62c080,32, 0x62c108,2, 0x62c200,16, 0x62c280,18, 0x62c2cc,2, 0x62c300,19, 0x62c380,5, 0x62c3a0,6, 0x62c3c0,7, 0x62c3e0,2, 0x62c3f0,23, 0x62c480,3, 0x62c4d0,6, 0x62c4f8,1, 0x62c500,12, 0x62c538,13, 0x62c570,1, 0x62c600,1, 0x62c800,11, 0x62c840,9, 0x62c880,32, 0x62c908,2, 0x62ca00,16, 0x62ca80,18, 0x62cacc,2, 0x62cb00,19, 0x62cb80,5, 0x62cba0,6, 0x62cbc0,7, 0x62cbe0,2, 0x62cbf0,23, 0x62cc80,3, 0x62ccd0,6, 0x62ccf8,1, 0x62cd00,12, 0x62cd38,13, 0x62cd70,1, 0x62ce00,1, 0x62d000,11, 0x62d040,9, 0x62d080,32, 0x62d108,2, 0x62d200,16, 0x62d280,18, 0x62d2cc,2, 0x62d300,19, 0x62d380,5, 0x62d3a0,6, 0x62d3c0,7, 0x62d3e0,2, 0x62d3f0,23, 0x62d480,3, 0x62d4d0,6, 0x62d4f8,1, 0x62d500,12, 0x62d538,13, 0x62d570,1, 0x62d600,1, 0x62d800,11, 0x62d840,9, 0x62d880,32, 0x62d908,2, 0x62da00,16, 0x62da80,18, 0x62dacc,2, 0x62db00,19, 0x62db80,5, 0x62dba0,6, 0x62dbc0,7, 0x62dbe0,2, 0x62dbf0,23, 0x62dc80,3, 0x62dcd0,6, 0x62dcf8,1, 0x62dd00,12, 0x62dd38,13, 0x62dd70,1, 0x62de00,1, 0x62e000,11, 0x62e040,9, 0x62e080,32, 0x62e108,2, 0x62e200,16, 0x62e280,18, 0x62e2cc,2, 0x62e300,19, 0x62e380,5, 0x62e3a0,6, 0x62e3c0,7, 0x62e3e0,2, 0x62e3f0,23, 0x62e480,3, 0x62e4d0,6, 0x62e4f8,1, 0x62e500,12, 0x62e538,13, 0x62e570,1, 0x62e600,1, 0x62e800,11, 0x62e840,9, 0x62e880,32, 0x62e908,2, 0x62ea00,16, 0x62ea80,18, 0x62eacc,2, 0x62eb00,19, 0x62eb80,5, 0x62eba0,6, 0x62ebc0,7, 0x62ebe0,2, 0x62ebf0,23, 0x62ec80,3, 0x62ecd0,6, 0x62ecf8,1, 0x62ed00,12, 0x62ed38,13, 0x62ed70,1, 0x62ee00,1, 0x62f000,11, 0x62f040,9, 0x62f080,32, 0x62f108,2, 0x62f200,16, 0x62f280,18, 0x62f2cc,2, 0x62f300,19, 0x62f380,5, 0x62f3a0,6, 0x62f3c0,7, 0x62f3e0,2, 0x62f3f0,23, 0x62f480,3, 0x62f4d0,6, 0x62f4f8,1, 0x62f500,12, 0x62f538,13, 0x62f570,1, 0x62f600,1, 0x62f800,11, 0x62f840,9, 0x62f880,32, 0x62f908,2, 0x62fa00,16, 0x62fa80,18, 0x62facc,2, 0x62fb00,19, 0x62fb80,5, 0x62fba0,6, 0x62fbc0,7, 0x62fbe0,2, 0x62fbf0,23, 0x62fc80,3, 0x62fcd0,6, 0x62fcf8,1, 0x62fd00,12, 0x62fd38,13, 0x62fd70,1, 0x62fe00,1, 0x630000,11, 0x630040,9, 0x630080,32, 0x630108,2, 0x630200,16, 0x630280,18, 0x6302cc,2, 0x630300,19, 0x630380,5, 0x6303a0,6, 0x6303c0,7, 0x6303e0,2, 0x6303f0,23, 0x630480,3, 0x6304d0,6, 0x6304f8,1, 0x630500,12, 0x630538,13, 0x630570,1, 0x630600,1, 0x630800,11, 0x630840,9, 0x630880,32, 0x630908,2, 0x630a00,16, 0x630a80,18, 0x630acc,2, 0x630b00,19, 0x630b80,5, 0x630ba0,6, 0x630bc0,7, 0x630be0,2, 0x630bf0,23, 0x630c80,3, 0x630cd0,6, 0x630cf8,1, 0x630d00,12, 0x630d38,13, 0x630d70,1, 0x630e00,1, 0x631000,11, 0x631040,9, 0x631080,32, 0x631108,2, 0x631200,16, 0x631280,18, 0x6312cc,2, 0x631300,19, 0x631380,5, 0x6313a0,6, 0x6313c0,7, 0x6313e0,2, 0x6313f0,23, 0x631480,3, 0x6314d0,6, 0x6314f8,1, 0x631500,12, 0x631538,13, 0x631570,1, 0x631600,1, 0x631800,11, 0x631840,9, 0x631880,32, 0x631908,2, 0x631a00,16, 0x631a80,18, 0x631acc,2, 0x631b00,19, 0x631b80,5, 0x631ba0,6, 0x631bc0,7, 0x631be0,2, 0x631bf0,23, 0x631c80,3, 0x631cd0,6, 0x631cf8,1, 0x631d00,12, 0x631d38,13, 0x631d70,1, 0x631e00,1, 0x632000,2, 0x632084,1, 0x63209c,9, 0x6320c4,5, 0x633000,13, 0x633040,11, 0x633070,2, 0x633080,27, 0x633100,3, 0x633110,3, 0x633120,3, 0x633130,3, 0x633140,4, 0x634000,19, 0x634a00,10, 0x634a80,3, 0x640000,11, 0x640040,9, 0x640080,32, 0x640108,2, 0x640200,16, 0x640280,18, 0x6402cc,2, 0x640300,19, 0x640380,5, 0x6403a0,6, 0x6403c0,7, 0x6403e0,2, 0x6403f0,23, 0x640480,3, 0x6404d0,6, 0x6404f8,1, 0x640500,12, 0x640538,13, 0x640570,1, 0x640600,1, 0x640800,11, 0x640840,9, 0x640880,32, 0x640908,2, 0x640a00,16, 0x640a80,18, 0x640acc,2, 0x640b00,19, 0x640b80,5, 0x640ba0,6, 0x640bc0,7, 0x640be0,2, 0x640bf0,23, 0x640c80,3, 0x640cd0,6, 0x640cf8,1, 0x640d00,12, 0x640d38,13, 0x640d70,1, 0x640e00,1, 0x641000,11, 0x641040,9, 0x641080,32, 0x641108,2, 0x641200,16, 0x641280,18, 0x6412cc,2, 0x641300,19, 0x641380,5, 0x6413a0,6, 0x6413c0,7, 0x6413e0,2, 0x6413f0,23, 0x641480,3, 0x6414d0,6, 0x6414f8,1, 0x641500,12, 0x641538,13, 0x641570,1, 0x641600,1, 0x641800,11, 0x641840,9, 0x641880,32, 0x641908,2, 0x641a00,16, 0x641a80,18, 0x641acc,2, 0x641b00,19, 0x641b80,5, 0x641ba0,6, 0x641bc0,7, 0x641be0,2, 0x641bf0,23, 0x641c80,3, 0x641cd0,6, 0x641cf8,1, 0x641d00,12, 0x641d38,13, 0x641d70,1, 0x641e00,1, 0x642000,11, 0x642040,9, 0x642080,32, 0x642108,2, 0x642200,16, 0x642280,18, 0x6422cc,2, 0x642300,19, 0x642380,5, 0x6423a0,6, 0x6423c0,7, 0x6423e0,2, 0x6423f0,23, 0x642480,3, 0x6424d0,6, 0x6424f8,1, 0x642500,12, 0x642538,13, 0x642570,1, 0x642600,1, 0x642800,11, 0x642840,9, 0x642880,32, 0x642908,2, 0x642a00,16, 0x642a80,18, 0x642acc,2, 0x642b00,19, 0x642b80,5, 0x642ba0,6, 0x642bc0,7, 0x642be0,2, 0x642bf0,23, 0x642c80,3, 0x642cd0,6, 0x642cf8,1, 0x642d00,12, 0x642d38,13, 0x642d70,1, 0x642e00,1, 0x643000,11, 0x643040,9, 0x643080,32, 0x643108,2, 0x643200,16, 0x643280,18, 0x6432cc,2, 0x643300,19, 0x643380,5, 0x6433a0,6, 0x6433c0,7, 0x6433e0,2, 0x6433f0,23, 0x643480,3, 0x6434d0,6, 0x6434f8,1, 0x643500,12, 0x643538,13, 0x643570,1, 0x643600,1, 0x643800,11, 0x643840,9, 0x643880,32, 0x643908,2, 0x643a00,16, 0x643a80,18, 0x643acc,2, 0x643b00,19, 0x643b80,5, 0x643ba0,6, 0x643bc0,7, 0x643be0,2, 0x643bf0,23, 0x643c80,3, 0x643cd0,6, 0x643cf8,1, 0x643d00,12, 0x643d38,13, 0x643d70,1, 0x643e00,1, 0x644000,11, 0x644040,9, 0x644080,32, 0x644108,2, 0x644200,16, 0x644280,18, 0x6442cc,2, 0x644300,19, 0x644380,5, 0x6443a0,6, 0x6443c0,7, 0x6443e0,2, 0x6443f0,23, 0x644480,3, 0x6444d0,6, 0x6444f8,1, 0x644500,12, 0x644538,13, 0x644570,1, 0x644600,1, 0x644800,11, 0x644840,9, 0x644880,32, 0x644908,2, 0x644a00,16, 0x644a80,18, 0x644acc,2, 0x644b00,19, 0x644b80,5, 0x644ba0,6, 0x644bc0,7, 0x644be0,2, 0x644bf0,23, 0x644c80,3, 0x644cd0,6, 0x644cf8,1, 0x644d00,12, 0x644d38,13, 0x644d70,1, 0x644e00,1, 0x645000,11, 0x645040,9, 0x645080,32, 0x645108,2, 0x645200,16, 0x645280,18, 0x6452cc,2, 0x645300,19, 0x645380,5, 0x6453a0,6, 0x6453c0,7, 0x6453e0,2, 0x6453f0,23, 0x645480,3, 0x6454d0,6, 0x6454f8,1, 0x645500,12, 0x645538,13, 0x645570,1, 0x645600,1, 0x645800,11, 0x645840,9, 0x645880,32, 0x645908,2, 0x645a00,16, 0x645a80,18, 0x645acc,2, 0x645b00,19, 0x645b80,5, 0x645ba0,6, 0x645bc0,7, 0x645be0,2, 0x645bf0,23, 0x645c80,3, 0x645cd0,6, 0x645cf8,1, 0x645d00,12, 0x645d38,13, 0x645d70,1, 0x645e00,1, 0x646000,11, 0x646040,9, 0x646080,32, 0x646108,2, 0x646200,16, 0x646280,18, 0x6462cc,2, 0x646300,19, 0x646380,5, 0x6463a0,6, 0x6463c0,7, 0x6463e0,2, 0x6463f0,23, 0x646480,3, 0x6464d0,6, 0x6464f8,1, 0x646500,12, 0x646538,13, 0x646570,1, 0x646600,1, 0x646800,11, 0x646840,9, 0x646880,32, 0x646908,2, 0x646a00,16, 0x646a80,18, 0x646acc,2, 0x646b00,19, 0x646b80,5, 0x646ba0,6, 0x646bc0,7, 0x646be0,2, 0x646bf0,23, 0x646c80,3, 0x646cd0,6, 0x646cf8,1, 0x646d00,12, 0x646d38,13, 0x646d70,1, 0x646e00,1, 0x647000,11, 0x647040,9, 0x647080,32, 0x647108,2, 0x647200,16, 0x647280,18, 0x6472cc,2, 0x647300,19, 0x647380,5, 0x6473a0,6, 0x6473c0,7, 0x6473e0,2, 0x6473f0,23, 0x647480,3, 0x6474d0,6, 0x6474f8,1, 0x647500,12, 0x647538,13, 0x647570,1, 0x647600,1, 0x647800,11, 0x647840,9, 0x647880,32, 0x647908,2, 0x647a00,16, 0x647a80,18, 0x647acc,2, 0x647b00,19, 0x647b80,5, 0x647ba0,6, 0x647bc0,7, 0x647be0,2, 0x647bf0,23, 0x647c80,3, 0x647cd0,6, 0x647cf8,1, 0x647d00,12, 0x647d38,13, 0x647d70,1, 0x647e00,1, 0x648000,11, 0x648040,9, 0x648080,32, 0x648108,2, 0x648200,16, 0x648280,18, 0x6482cc,2, 0x648300,19, 0x648380,5, 0x6483a0,6, 0x6483c0,7, 0x6483e0,2, 0x6483f0,23, 0x648480,3, 0x6484d0,6, 0x6484f8,1, 0x648500,12, 0x648538,13, 0x648570,1, 0x648600,1, 0x648800,11, 0x648840,9, 0x648880,32, 0x648908,2, 0x648a00,16, 0x648a80,18, 0x648acc,2, 0x648b00,19, 0x648b80,5, 0x648ba0,6, 0x648bc0,7, 0x648be0,2, 0x648bf0,23, 0x648c80,3, 0x648cd0,6, 0x648cf8,1, 0x648d00,12, 0x648d38,13, 0x648d70,1, 0x648e00,1, 0x649000,11, 0x649040,9, 0x649080,32, 0x649108,2, 0x649200,16, 0x649280,18, 0x6492cc,2, 0x649300,19, 0x649380,5, 0x6493a0,6, 0x6493c0,7, 0x6493e0,2, 0x6493f0,23, 0x649480,3, 0x6494d0,6, 0x6494f8,1, 0x649500,12, 0x649538,13, 0x649570,1, 0x649600,1, 0x649800,11, 0x649840,9, 0x649880,32, 0x649908,2, 0x649a00,16, 0x649a80,18, 0x649acc,2, 0x649b00,19, 0x649b80,5, 0x649ba0,6, 0x649bc0,7, 0x649be0,2, 0x649bf0,23, 0x649c80,3, 0x649cd0,6, 0x649cf8,1, 0x649d00,12, 0x649d38,13, 0x649d70,1, 0x649e00,1, 0x64a000,11, 0x64a040,9, 0x64a080,32, 0x64a108,2, 0x64a200,16, 0x64a280,18, 0x64a2cc,2, 0x64a300,19, 0x64a380,5, 0x64a3a0,6, 0x64a3c0,7, 0x64a3e0,2, 0x64a3f0,23, 0x64a480,3, 0x64a4d0,6, 0x64a4f8,1, 0x64a500,12, 0x64a538,13, 0x64a570,1, 0x64a600,1, 0x64a800,11, 0x64a840,9, 0x64a880,32, 0x64a908,2, 0x64aa00,16, 0x64aa80,18, 0x64aacc,2, 0x64ab00,19, 0x64ab80,5, 0x64aba0,6, 0x64abc0,7, 0x64abe0,2, 0x64abf0,23, 0x64ac80,3, 0x64acd0,6, 0x64acf8,1, 0x64ad00,12, 0x64ad38,13, 0x64ad70,1, 0x64ae00,1, 0x64b000,11, 0x64b040,9, 0x64b080,32, 0x64b108,2, 0x64b200,16, 0x64b280,18, 0x64b2cc,2, 0x64b300,19, 0x64b380,5, 0x64b3a0,6, 0x64b3c0,7, 0x64b3e0,2, 0x64b3f0,23, 0x64b480,3, 0x64b4d0,6, 0x64b4f8,1, 0x64b500,12, 0x64b538,13, 0x64b570,1, 0x64b600,1, 0x64b800,11, 0x64b840,9, 0x64b880,32, 0x64b908,2, 0x64ba00,16, 0x64ba80,18, 0x64bacc,2, 0x64bb00,19, 0x64bb80,5, 0x64bba0,6, 0x64bbc0,7, 0x64bbe0,2, 0x64bbf0,23, 0x64bc80,3, 0x64bcd0,6, 0x64bcf8,1, 0x64bd00,12, 0x64bd38,13, 0x64bd70,1, 0x64be00,1, 0x64c000,11, 0x64c040,9, 0x64c080,32, 0x64c108,2, 0x64c200,16, 0x64c280,18, 0x64c2cc,2, 0x64c300,19, 0x64c380,5, 0x64c3a0,6, 0x64c3c0,7, 0x64c3e0,2, 0x64c3f0,23, 0x64c480,3, 0x64c4d0,6, 0x64c4f8,1, 0x64c500,12, 0x64c538,13, 0x64c570,1, 0x64c600,1, 0x64c800,11, 0x64c840,9, 0x64c880,32, 0x64c908,2, 0x64ca00,16, 0x64ca80,18, 0x64cacc,2, 0x64cb00,19, 0x64cb80,5, 0x64cba0,6, 0x64cbc0,7, 0x64cbe0,2, 0x64cbf0,23, 0x64cc80,3, 0x64ccd0,6, 0x64ccf8,1, 0x64cd00,12, 0x64cd38,13, 0x64cd70,1, 0x64ce00,1, 0x64d000,11, 0x64d040,9, 0x64d080,32, 0x64d108,2, 0x64d200,16, 0x64d280,18, 0x64d2cc,2, 0x64d300,19, 0x64d380,5, 0x64d3a0,6, 0x64d3c0,7, 0x64d3e0,2, 0x64d3f0,23, 0x64d480,3, 0x64d4d0,6, 0x64d4f8,1, 0x64d500,12, 0x64d538,13, 0x64d570,1, 0x64d600,1, 0x64d800,11, 0x64d840,9, 0x64d880,32, 0x64d908,2, 0x64da00,16, 0x64da80,18, 0x64dacc,2, 0x64db00,19, 0x64db80,5, 0x64dba0,6, 0x64dbc0,7, 0x64dbe0,2, 0x64dbf0,23, 0x64dc80,3, 0x64dcd0,6, 0x64dcf8,1, 0x64dd00,12, 0x64dd38,13, 0x64dd70,1, 0x64de00,1, 0x64e000,11, 0x64e040,9, 0x64e080,32, 0x64e108,2, 0x64e200,16, 0x64e280,18, 0x64e2cc,2, 0x64e300,19, 0x64e380,5, 0x64e3a0,6, 0x64e3c0,7, 0x64e3e0,2, 0x64e3f0,23, 0x64e480,3, 0x64e4d0,6, 0x64e4f8,1, 0x64e500,12, 0x64e538,13, 0x64e570,1, 0x64e600,1, 0x64e800,11, 0x64e840,9, 0x64e880,32, 0x64e908,2, 0x64ea00,16, 0x64ea80,18, 0x64eacc,2, 0x64eb00,19, 0x64eb80,5, 0x64eba0,6, 0x64ebc0,7, 0x64ebe0,2, 0x64ebf0,23, 0x64ec80,3, 0x64ecd0,6, 0x64ecf8,1, 0x64ed00,12, 0x64ed38,13, 0x64ed70,1, 0x64ee00,1, 0x64f000,11, 0x64f040,9, 0x64f080,32, 0x64f108,2, 0x64f200,16, 0x64f280,18, 0x64f2cc,2, 0x64f300,19, 0x64f380,5, 0x64f3a0,6, 0x64f3c0,7, 0x64f3e0,2, 0x64f3f0,23, 0x64f480,3, 0x64f4d0,6, 0x64f4f8,1, 0x64f500,12, 0x64f538,13, 0x64f570,1, 0x64f600,1, 0x64f800,11, 0x64f840,9, 0x64f880,32, 0x64f908,2, 0x64fa00,16, 0x64fa80,18, 0x64facc,2, 0x64fb00,19, 0x64fb80,5, 0x64fba0,6, 0x64fbc0,7, 0x64fbe0,2, 0x64fbf0,23, 0x64fc80,3, 0x64fcd0,6, 0x64fcf8,1, 0x64fd00,12, 0x64fd38,13, 0x64fd70,1, 0x64fe00,1, 0x650000,11, 0x650040,9, 0x650080,32, 0x650108,2, 0x650200,16, 0x650280,18, 0x6502cc,2, 0x650300,19, 0x650380,5, 0x6503a0,6, 0x6503c0,7, 0x6503e0,2, 0x6503f0,23, 0x650480,3, 0x6504d0,6, 0x6504f8,1, 0x650500,12, 0x650538,13, 0x650570,1, 0x650600,1, 0x650800,11, 0x650840,9, 0x650880,32, 0x650908,2, 0x650a00,16, 0x650a80,18, 0x650acc,2, 0x650b00,19, 0x650b80,5, 0x650ba0,6, 0x650bc0,7, 0x650be0,2, 0x650bf0,23, 0x650c80,3, 0x650cd0,6, 0x650cf8,1, 0x650d00,12, 0x650d38,13, 0x650d70,1, 0x650e00,1, 0x651000,11, 0x651040,9, 0x651080,32, 0x651108,2, 0x651200,16, 0x651280,18, 0x6512cc,2, 0x651300,19, 0x651380,5, 0x6513a0,6, 0x6513c0,7, 0x6513e0,2, 0x6513f0,23, 0x651480,3, 0x6514d0,6, 0x6514f8,1, 0x651500,12, 0x651538,13, 0x651570,1, 0x651600,1, 0x651800,11, 0x651840,9, 0x651880,32, 0x651908,2, 0x651a00,16, 0x651a80,18, 0x651acc,2, 0x651b00,19, 0x651b80,5, 0x651ba0,6, 0x651bc0,7, 0x651be0,2, 0x651bf0,23, 0x651c80,3, 0x651cd0,6, 0x651cf8,1, 0x651d00,12, 0x651d38,13, 0x651d70,1, 0x651e00,1, 0x652000,2, 0x652084,1, 0x65209c,9, 0x6520c4,5, 0x653000,13, 0x653040,11, 0x653070,2, 0x653080,27, 0x653100,3, 0x653110,3, 0x653120,3, 0x653130,3, 0x653140,4, 0x654000,19, 0x654a00,10, 0x654a80,3, 0x660000,11, 0x660040,9, 0x660080,32, 0x660108,2, 0x660200,16, 0x660280,18, 0x6602cc,2, 0x660300,19, 0x660380,5, 0x6603a0,6, 0x6603c0,7, 0x6603e0,2, 0x6603f0,23, 0x660480,3, 0x6604d0,6, 0x6604f8,1, 0x660500,12, 0x660538,13, 0x660570,1, 0x660600,1, 0x660800,11, 0x660840,9, 0x660880,32, 0x660908,2, 0x660a00,16, 0x660a80,18, 0x660acc,2, 0x660b00,19, 0x660b80,5, 0x660ba0,6, 0x660bc0,7, 0x660be0,2, 0x660bf0,23, 0x660c80,3, 0x660cd0,6, 0x660cf8,1, 0x660d00,12, 0x660d38,13, 0x660d70,1, 0x660e00,1, 0x661000,11, 0x661040,9, 0x661080,32, 0x661108,2, 0x661200,16, 0x661280,18, 0x6612cc,2, 0x661300,19, 0x661380,5, 0x6613a0,6, 0x6613c0,7, 0x6613e0,2, 0x6613f0,23, 0x661480,3, 0x6614d0,6, 0x6614f8,1, 0x661500,12, 0x661538,13, 0x661570,1, 0x661600,1, 0x661800,11, 0x661840,9, 0x661880,32, 0x661908,2, 0x661a00,16, 0x661a80,18, 0x661acc,2, 0x661b00,19, 0x661b80,5, 0x661ba0,6, 0x661bc0,7, 0x661be0,2, 0x661bf0,23, 0x661c80,3, 0x661cd0,6, 0x661cf8,1, 0x661d00,12, 0x661d38,13, 0x661d70,1, 0x661e00,1, 0x662000,11, 0x662040,9, 0x662080,32, 0x662108,2, 0x662200,16, 0x662280,18, 0x6622cc,2, 0x662300,19, 0x662380,5, 0x6623a0,6, 0x6623c0,7, 0x6623e0,2, 0x6623f0,23, 0x662480,3, 0x6624d0,6, 0x6624f8,1, 0x662500,12, 0x662538,13, 0x662570,1, 0x662600,1, 0x662800,11, 0x662840,9, 0x662880,32, 0x662908,2, 0x662a00,16, 0x662a80,18, 0x662acc,2, 0x662b00,19, 0x662b80,5, 0x662ba0,6, 0x662bc0,7, 0x662be0,2, 0x662bf0,23, 0x662c80,3, 0x662cd0,6, 0x662cf8,1, 0x662d00,12, 0x662d38,13, 0x662d70,1, 0x662e00,1, 0x663000,11, 0x663040,9, 0x663080,32, 0x663108,2, 0x663200,16, 0x663280,18, 0x6632cc,2, 0x663300,19, 0x663380,5, 0x6633a0,6, 0x6633c0,7, 0x6633e0,2, 0x6633f0,23, 0x663480,3, 0x6634d0,6, 0x6634f8,1, 0x663500,12, 0x663538,13, 0x663570,1, 0x663600,1, 0x663800,11, 0x663840,9, 0x663880,32, 0x663908,2, 0x663a00,16, 0x663a80,18, 0x663acc,2, 0x663b00,19, 0x663b80,5, 0x663ba0,6, 0x663bc0,7, 0x663be0,2, 0x663bf0,23, 0x663c80,3, 0x663cd0,6, 0x663cf8,1, 0x663d00,12, 0x663d38,13, 0x663d70,1, 0x663e00,1, 0x664000,11, 0x664040,9, 0x664080,32, 0x664108,2, 0x664200,16, 0x664280,18, 0x6642cc,2, 0x664300,19, 0x664380,5, 0x6643a0,6, 0x6643c0,7, 0x6643e0,2, 0x6643f0,23, 0x664480,3, 0x6644d0,6, 0x6644f8,1, 0x664500,12, 0x664538,13, 0x664570,1, 0x664600,1, 0x664800,11, 0x664840,9, 0x664880,32, 0x664908,2, 0x664a00,16, 0x664a80,18, 0x664acc,2, 0x664b00,19, 0x664b80,5, 0x664ba0,6, 0x664bc0,7, 0x664be0,2, 0x664bf0,23, 0x664c80,3, 0x664cd0,6, 0x664cf8,1, 0x664d00,12, 0x664d38,13, 0x664d70,1, 0x664e00,1, 0x665000,11, 0x665040,9, 0x665080,32, 0x665108,2, 0x665200,16, 0x665280,18, 0x6652cc,2, 0x665300,19, 0x665380,5, 0x6653a0,6, 0x6653c0,7, 0x6653e0,2, 0x6653f0,23, 0x665480,3, 0x6654d0,6, 0x6654f8,1, 0x665500,12, 0x665538,13, 0x665570,1, 0x665600,1, 0x665800,11, 0x665840,9, 0x665880,32, 0x665908,2, 0x665a00,16, 0x665a80,18, 0x665acc,2, 0x665b00,19, 0x665b80,5, 0x665ba0,6, 0x665bc0,7, 0x665be0,2, 0x665bf0,23, 0x665c80,3, 0x665cd0,6, 0x665cf8,1, 0x665d00,12, 0x665d38,13, 0x665d70,1, 0x665e00,1, 0x666000,11, 0x666040,9, 0x666080,32, 0x666108,2, 0x666200,16, 0x666280,18, 0x6662cc,2, 0x666300,19, 0x666380,5, 0x6663a0,6, 0x6663c0,7, 0x6663e0,2, 0x6663f0,23, 0x666480,3, 0x6664d0,6, 0x6664f8,1, 0x666500,12, 0x666538,13, 0x666570,1, 0x666600,1, 0x666800,11, 0x666840,9, 0x666880,32, 0x666908,2, 0x666a00,16, 0x666a80,18, 0x666acc,2, 0x666b00,19, 0x666b80,5, 0x666ba0,6, 0x666bc0,7, 0x666be0,2, 0x666bf0,23, 0x666c80,3, 0x666cd0,6, 0x666cf8,1, 0x666d00,12, 0x666d38,13, 0x666d70,1, 0x666e00,1, 0x667000,11, 0x667040,9, 0x667080,32, 0x667108,2, 0x667200,16, 0x667280,18, 0x6672cc,2, 0x667300,19, 0x667380,5, 0x6673a0,6, 0x6673c0,7, 0x6673e0,2, 0x6673f0,23, 0x667480,3, 0x6674d0,6, 0x6674f8,1, 0x667500,12, 0x667538,13, 0x667570,1, 0x667600,1, 0x667800,11, 0x667840,9, 0x667880,32, 0x667908,2, 0x667a00,16, 0x667a80,18, 0x667acc,2, 0x667b00,19, 0x667b80,5, 0x667ba0,6, 0x667bc0,7, 0x667be0,2, 0x667bf0,23, 0x667c80,3, 0x667cd0,6, 0x667cf8,1, 0x667d00,12, 0x667d38,13, 0x667d70,1, 0x667e00,1, 0x668000,11, 0x668040,9, 0x668080,32, 0x668108,2, 0x668200,16, 0x668280,18, 0x6682cc,2, 0x668300,19, 0x668380,5, 0x6683a0,6, 0x6683c0,7, 0x6683e0,2, 0x6683f0,23, 0x668480,3, 0x6684d0,6, 0x6684f8,1, 0x668500,12, 0x668538,13, 0x668570,1, 0x668600,1, 0x668800,11, 0x668840,9, 0x668880,32, 0x668908,2, 0x668a00,16, 0x668a80,18, 0x668acc,2, 0x668b00,19, 0x668b80,5, 0x668ba0,6, 0x668bc0,7, 0x668be0,2, 0x668bf0,23, 0x668c80,3, 0x668cd0,6, 0x668cf8,1, 0x668d00,12, 0x668d38,13, 0x668d70,1, 0x668e00,1, 0x669000,11, 0x669040,9, 0x669080,32, 0x669108,2, 0x669200,16, 0x669280,18, 0x6692cc,2, 0x669300,19, 0x669380,5, 0x6693a0,6, 0x6693c0,7, 0x6693e0,2, 0x6693f0,23, 0x669480,3, 0x6694d0,6, 0x6694f8,1, 0x669500,12, 0x669538,13, 0x669570,1, 0x669600,1, 0x669800,11, 0x669840,9, 0x669880,32, 0x669908,2, 0x669a00,16, 0x669a80,18, 0x669acc,2, 0x669b00,19, 0x669b80,5, 0x669ba0,6, 0x669bc0,7, 0x669be0,2, 0x669bf0,23, 0x669c80,3, 0x669cd0,6, 0x669cf8,1, 0x669d00,12, 0x669d38,13, 0x669d70,1, 0x669e00,1, 0x66a000,11, 0x66a040,9, 0x66a080,32, 0x66a108,2, 0x66a200,16, 0x66a280,18, 0x66a2cc,2, 0x66a300,19, 0x66a380,5, 0x66a3a0,6, 0x66a3c0,7, 0x66a3e0,2, 0x66a3f0,23, 0x66a480,3, 0x66a4d0,6, 0x66a4f8,1, 0x66a500,12, 0x66a538,13, 0x66a570,1, 0x66a600,1, 0x66a800,11, 0x66a840,9, 0x66a880,32, 0x66a908,2, 0x66aa00,16, 0x66aa80,18, 0x66aacc,2, 0x66ab00,19, 0x66ab80,5, 0x66aba0,6, 0x66abc0,7, 0x66abe0,2, 0x66abf0,23, 0x66ac80,3, 0x66acd0,6, 0x66acf8,1, 0x66ad00,12, 0x66ad38,13, 0x66ad70,1, 0x66ae00,1, 0x66b000,11, 0x66b040,9, 0x66b080,32, 0x66b108,2, 0x66b200,16, 0x66b280,18, 0x66b2cc,2, 0x66b300,19, 0x66b380,5, 0x66b3a0,6, 0x66b3c0,7, 0x66b3e0,2, 0x66b3f0,23, 0x66b480,3, 0x66b4d0,6, 0x66b4f8,1, 0x66b500,12, 0x66b538,13, 0x66b570,1, 0x66b600,1, 0x66b800,11, 0x66b840,9, 0x66b880,32, 0x66b908,2, 0x66ba00,16, 0x66ba80,18, 0x66bacc,2, 0x66bb00,19, 0x66bb80,5, 0x66bba0,6, 0x66bbc0,7, 0x66bbe0,2, 0x66bbf0,23, 0x66bc80,3, 0x66bcd0,6, 0x66bcf8,1, 0x66bd00,12, 0x66bd38,13, 0x66bd70,1, 0x66be00,1, 0x66c000,11, 0x66c040,9, 0x66c080,32, 0x66c108,2, 0x66c200,16, 0x66c280,18, 0x66c2cc,2, 0x66c300,19, 0x66c380,5, 0x66c3a0,6, 0x66c3c0,7, 0x66c3e0,2, 0x66c3f0,23, 0x66c480,3, 0x66c4d0,6, 0x66c4f8,1, 0x66c500,12, 0x66c538,13, 0x66c570,1, 0x66c600,1, 0x66c800,11, 0x66c840,9, 0x66c880,32, 0x66c908,2, 0x66ca00,16, 0x66ca80,18, 0x66cacc,2, 0x66cb00,19, 0x66cb80,5, 0x66cba0,6, 0x66cbc0,7, 0x66cbe0,2, 0x66cbf0,23, 0x66cc80,3, 0x66ccd0,6, 0x66ccf8,1, 0x66cd00,12, 0x66cd38,13, 0x66cd70,1, 0x66ce00,1, 0x66d000,11, 0x66d040,9, 0x66d080,32, 0x66d108,2, 0x66d200,16, 0x66d280,18, 0x66d2cc,2, 0x66d300,19, 0x66d380,5, 0x66d3a0,6, 0x66d3c0,7, 0x66d3e0,2, 0x66d3f0,23, 0x66d480,3, 0x66d4d0,6, 0x66d4f8,1, 0x66d500,12, 0x66d538,13, 0x66d570,1, 0x66d600,1, 0x66d800,11, 0x66d840,9, 0x66d880,32, 0x66d908,2, 0x66da00,16, 0x66da80,18, 0x66dacc,2, 0x66db00,19, 0x66db80,5, 0x66dba0,6, 0x66dbc0,7, 0x66dbe0,2, 0x66dbf0,23, 0x66dc80,3, 0x66dcd0,6, 0x66dcf8,1, 0x66dd00,12, 0x66dd38,13, 0x66dd70,1, 0x66de00,1, 0x66e000,11, 0x66e040,9, 0x66e080,32, 0x66e108,2, 0x66e200,16, 0x66e280,18, 0x66e2cc,2, 0x66e300,19, 0x66e380,5, 0x66e3a0,6, 0x66e3c0,7, 0x66e3e0,2, 0x66e3f0,23, 0x66e480,3, 0x66e4d0,6, 0x66e4f8,1, 0x66e500,12, 0x66e538,13, 0x66e570,1, 0x66e600,1, 0x66e800,11, 0x66e840,9, 0x66e880,32, 0x66e908,2, 0x66ea00,16, 0x66ea80,18, 0x66eacc,2, 0x66eb00,19, 0x66eb80,5, 0x66eba0,6, 0x66ebc0,7, 0x66ebe0,2, 0x66ebf0,23, 0x66ec80,3, 0x66ecd0,6, 0x66ecf8,1, 0x66ed00,12, 0x66ed38,13, 0x66ed70,1, 0x66ee00,1, 0x66f000,11, 0x66f040,9, 0x66f080,32, 0x66f108,2, 0x66f200,16, 0x66f280,18, 0x66f2cc,2, 0x66f300,19, 0x66f380,5, 0x66f3a0,6, 0x66f3c0,7, 0x66f3e0,2, 0x66f3f0,23, 0x66f480,3, 0x66f4d0,6, 0x66f4f8,1, 0x66f500,12, 0x66f538,13, 0x66f570,1, 0x66f600,1, 0x66f800,11, 0x66f840,9, 0x66f880,32, 0x66f908,2, 0x66fa00,16, 0x66fa80,18, 0x66facc,2, 0x66fb00,19, 0x66fb80,5, 0x66fba0,6, 0x66fbc0,7, 0x66fbe0,2, 0x66fbf0,23, 0x66fc80,3, 0x66fcd0,6, 0x66fcf8,1, 0x66fd00,12, 0x66fd38,13, 0x66fd70,1, 0x66fe00,1, 0x670000,11, 0x670040,9, 0x670080,32, 0x670108,2, 0x670200,16, 0x670280,18, 0x6702cc,2, 0x670300,19, 0x670380,5, 0x6703a0,6, 0x6703c0,7, 0x6703e0,2, 0x6703f0,23, 0x670480,3, 0x6704d0,6, 0x6704f8,1, 0x670500,12, 0x670538,13, 0x670570,1, 0x670600,1, 0x670800,11, 0x670840,9, 0x670880,32, 0x670908,2, 0x670a00,16, 0x670a80,18, 0x670acc,2, 0x670b00,19, 0x670b80,5, 0x670ba0,6, 0x670bc0,7, 0x670be0,2, 0x670bf0,23, 0x670c80,3, 0x670cd0,6, 0x670cf8,1, 0x670d00,12, 0x670d38,13, 0x670d70,1, 0x670e00,1, 0x671000,11, 0x671040,9, 0x671080,32, 0x671108,2, 0x671200,16, 0x671280,18, 0x6712cc,2, 0x671300,19, 0x671380,5, 0x6713a0,6, 0x6713c0,7, 0x6713e0,2, 0x6713f0,23, 0x671480,3, 0x6714d0,6, 0x6714f8,1, 0x671500,12, 0x671538,13, 0x671570,1, 0x671600,1, 0x671800,11, 0x671840,9, 0x671880,32, 0x671908,2, 0x671a00,16, 0x671a80,18, 0x671acc,2, 0x671b00,19, 0x671b80,5, 0x671ba0,6, 0x671bc0,7, 0x671be0,2, 0x671bf0,23, 0x671c80,3, 0x671cd0,6, 0x671cf8,1, 0x671d00,12, 0x671d38,13, 0x671d70,1, 0x671e00,1, 0x672000,2, 0x672084,1, 0x67209c,9, 0x6720c4,5, 0x673000,13, 0x673040,11, 0x673070,2, 0x673080,27, 0x673100,3, 0x673110,3, 0x673120,3, 0x673130,3, 0x673140,4, 0x674000,19, 0x674a00,10, 0x674a80,3, 0x700000,40, 0x7000a4,2, 0x7000b0,16, 0x700120,4, 0x700160,138, 0x7003a0,90, 0x700564,5, 0x700584,5, 0x7005a4,1, 0x7005ac,3, 0x7005c4,1, 0x7005cc,3, 0x700604,1, 0x700620,8, 0x700644,14, 0x700680,1, 0x700700,27, 0x700780,4, 0x7007c0,12, 0x700800,10, 0x700900,5, 0x700918,5, 0x700930,5, 0x700948,5, 0x700998,1, 0x7009d0,3, 0x700a04,1, 0x700a40,16, 0x700a84,1, 0x700a90,4, 0x700b00,8, 0x700b40,2, 0x700c04,1, 0x700c0c,3, 0x700c24,1, 0x700c2c,3, 0x700c44,1, 0x700c4c,3, 0x700c80,8, 0x700d00,1, 0x701000,40, 0x7010a4,2, 0x7010b0,16, 0x701120,4, 0x701160,138, 0x7013a0,90, 0x701564,5, 0x701584,5, 0x7015a4,1, 0x7015ac,3, 0x7015c4,1, 0x7015cc,3, 0x701604,1, 0x701620,8, 0x701644,14, 0x701680,1, 0x701700,27, 0x701780,4, 0x7017c0,12, 0x701800,10, 0x701900,5, 0x701918,5, 0x701930,5, 0x701948,5, 0x701998,1, 0x7019d0,3, 0x701a04,1, 0x701a40,16, 0x701a84,1, 0x701a90,4, 0x701b00,8, 0x701b40,2, 0x701c04,1, 0x701c0c,3, 0x701c24,1, 0x701c2c,3, 0x701c44,1, 0x701c4c,3, 0x701c80,8, 0x701d00,1, 0x702000,40, 0x7020a4,2, 0x7020b0,16, 0x702120,4, 0x702160,138, 0x7023a0,90, 0x702564,5, 0x702584,5, 0x7025a4,1, 0x7025ac,3, 0x7025c4,1, 0x7025cc,3, 0x702604,1, 0x702620,8, 0x702644,14, 0x702680,1, 0x702700,27, 0x702780,4, 0x7027c0,12, 0x702800,10, 0x702900,5, 0x702918,5, 0x702930,5, 0x702948,5, 0x702998,1, 0x7029d0,3, 0x702a04,1, 0x702a40,16, 0x702a84,1, 0x702a90,4, 0x702b00,8, 0x702b40,2, 0x702c04,1, 0x702c0c,3, 0x702c24,1, 0x702c2c,3, 0x702c44,1, 0x702c4c,3, 0x702c80,8, 0x702d00,1, 0x703000,40, 0x7030a4,2, 0x7030b0,16, 0x703120,4, 0x703160,138, 0x7033a0,90, 0x703564,5, 0x703584,5, 0x7035a4,1, 0x7035ac,3, 0x7035c4,1, 0x7035cc,3, 0x703604,1, 0x703620,8, 0x703644,14, 0x703680,1, 0x703700,27, 0x703780,4, 0x7037c0,12, 0x703800,10, 0x703900,5, 0x703918,5, 0x703930,5, 0x703948,5, 0x703998,1, 0x7039d0,3, 0x703a04,1, 0x703a40,16, 0x703a84,1, 0x703a90,4, 0x703b00,8, 0x703b40,2, 0x703c04,1, 0x703c0c,3, 0x703c24,1, 0x703c2c,3, 0x703c44,1, 0x703c4c,3, 0x703c80,8, 0x703d00,1, 0x704000,40, 0x7040a4,2, 0x7040b0,16, 0x704120,4, 0x704160,138, 0x7043a0,90, 0x704564,5, 0x704584,5, 0x7045a4,1, 0x7045ac,3, 0x7045c4,1, 0x7045cc,3, 0x704604,1, 0x704620,8, 0x704644,14, 0x704680,1, 0x704700,27, 0x704780,4, 0x7047c0,12, 0x704800,10, 0x704900,5, 0x704918,5, 0x704930,5, 0x704948,5, 0x704998,1, 0x7049d0,3, 0x704a04,1, 0x704a40,16, 0x704a84,1, 0x704a90,4, 0x704b00,8, 0x704b40,2, 0x704c04,1, 0x704c0c,3, 0x704c24,1, 0x704c2c,3, 0x704c44,1, 0x704c4c,3, 0x704c80,8, 0x704d00,1, 0x705000,40, 0x7050a4,2, 0x7050b0,16, 0x705120,4, 0x705160,138, 0x7053a0,90, 0x705564,5, 0x705584,5, 0x7055a4,1, 0x7055ac,3, 0x7055c4,1, 0x7055cc,3, 0x705604,1, 0x705620,8, 0x705644,14, 0x705680,1, 0x705700,27, 0x705780,4, 0x7057c0,12, 0x705800,10, 0x705900,5, 0x705918,5, 0x705930,5, 0x705948,5, 0x705998,1, 0x7059d0,3, 0x705a04,1, 0x705a40,16, 0x705a84,1, 0x705a90,4, 0x705b00,8, 0x705b40,2, 0x705c04,1, 0x705c0c,3, 0x705c24,1, 0x705c2c,3, 0x705c44,1, 0x705c4c,3, 0x705c80,8, 0x705d00,1, 0x706000,40, 0x7060a4,2, 0x7060b0,16, 0x706120,4, 0x706160,138, 0x7063a0,90, 0x706564,5, 0x706584,5, 0x7065a4,1, 0x7065ac,3, 0x7065c4,1, 0x7065cc,3, 0x706604,1, 0x706620,8, 0x706644,14, 0x706680,1, 0x706700,27, 0x706780,4, 0x7067c0,12, 0x706800,10, 0x706900,5, 0x706918,5, 0x706930,5, 0x706948,5, 0x706998,1, 0x7069d0,3, 0x706a04,1, 0x706a40,16, 0x706a84,1, 0x706a90,4, 0x706b00,8, 0x706b40,2, 0x706c04,1, 0x706c0c,3, 0x706c24,1, 0x706c2c,3, 0x706c44,1, 0x706c4c,3, 0x706c80,8, 0x706d00,1, 0x707000,40, 0x7070a4,2, 0x7070b0,16, 0x707120,4, 0x707160,138, 0x7073a0,90, 0x707564,5, 0x707584,5, 0x7075a4,1, 0x7075ac,3, 0x7075c4,1, 0x7075cc,3, 0x707604,1, 0x707620,8, 0x707644,14, 0x707680,1, 0x707700,27, 0x707780,4, 0x7077c0,12, 0x707800,10, 0x707900,5, 0x707918,5, 0x707930,5, 0x707948,5, 0x707998,1, 0x7079d0,3, 0x707a04,1, 0x707a40,16, 0x707a84,1, 0x707a90,4, 0x707b00,8, 0x707b40,2, 0x707c04,1, 0x707c0c,3, 0x707c24,1, 0x707c2c,3, 0x707c44,1, 0x707c4c,3, 0x707c80,8, 0x707d00,1, 0x708000,1, 0x708008,2, 0x708020,37, 0x7080b8,64, 0x708200,2, 0x708210,66, 0x708420,2, 0x708440,46, 0x708504,5, 0x708524,5, 0x708544,1, 0x70854c,3, 0x708564,1, 0x70856c,3, 0x708590,21, 0x7085f0,1, 0x7085f8,29, 0x708680,4, 0x7086c0,12, 0x708720,7, 0x708740,2, 0x708800,2, 0x708860,6, 0x7088fc,1, 0x709000,19, 0x709080,6, 0x709a00,25, 0x709a80,1, 0x70a000,51, 0x70aa00,10, 0x70aa80,3, 0x70ab00,6, 0x70fffc,41, 0x7100a4,2, 0x7100b0,16, 0x710120,4, 0x710160,138, 0x7103a0,90, 0x710564,5, 0x710584,5, 0x7105a4,1, 0x7105ac,3, 0x7105c4,1, 0x7105cc,3, 0x710604,1, 0x710620,8, 0x710644,14, 0x710680,1, 0x710700,27, 0x710780,4, 0x7107c0,12, 0x710800,10, 0x710900,5, 0x710918,5, 0x710930,5, 0x710948,5, 0x710998,1, 0x7109d0,3, 0x710a04,1, 0x710a40,16, 0x710a84,1, 0x710a90,4, 0x710b00,8, 0x710b40,2, 0x710c04,1, 0x710c0c,3, 0x710c24,1, 0x710c2c,3, 0x710c44,1, 0x710c4c,3, 0x710c80,8, 0x710d00,1, 0x711000,40, 0x7110a4,2, 0x7110b0,16, 0x711120,4, 0x711160,138, 0x7113a0,90, 0x711564,5, 0x711584,5, 0x7115a4,1, 0x7115ac,3, 0x7115c4,1, 0x7115cc,3, 0x711604,1, 0x711620,8, 0x711644,14, 0x711680,1, 0x711700,27, 0x711780,4, 0x7117c0,12, 0x711800,10, 0x711900,5, 0x711918,5, 0x711930,5, 0x711948,5, 0x711998,1, 0x7119d0,3, 0x711a04,1, 0x711a40,16, 0x711a84,1, 0x711a90,4, 0x711b00,8, 0x711b40,2, 0x711c04,1, 0x711c0c,3, 0x711c24,1, 0x711c2c,3, 0x711c44,1, 0x711c4c,3, 0x711c80,8, 0x711d00,1, 0x712000,40, 0x7120a4,2, 0x7120b0,16, 0x712120,4, 0x712160,138, 0x7123a0,90, 0x712564,5, 0x712584,5, 0x7125a4,1, 0x7125ac,3, 0x7125c4,1, 0x7125cc,3, 0x712604,1, 0x712620,8, 0x712644,14, 0x712680,1, 0x712700,27, 0x712780,4, 0x7127c0,12, 0x712800,10, 0x712900,5, 0x712918,5, 0x712930,5, 0x712948,5, 0x712998,1, 0x7129d0,3, 0x712a04,1, 0x712a40,16, 0x712a84,1, 0x712a90,4, 0x712b00,8, 0x712b40,2, 0x712c04,1, 0x712c0c,3, 0x712c24,1, 0x712c2c,3, 0x712c44,1, 0x712c4c,3, 0x712c80,8, 0x712d00,1, 0x713000,40, 0x7130a4,2, 0x7130b0,16, 0x713120,4, 0x713160,138, 0x7133a0,90, 0x713564,5, 0x713584,5, 0x7135a4,1, 0x7135ac,3, 0x7135c4,1, 0x7135cc,3, 0x713604,1, 0x713620,8, 0x713644,14, 0x713680,1, 0x713700,27, 0x713780,4, 0x7137c0,12, 0x713800,10, 0x713900,5, 0x713918,5, 0x713930,5, 0x713948,5, 0x713998,1, 0x7139d0,3, 0x713a04,1, 0x713a40,16, 0x713a84,1, 0x713a90,4, 0x713b00,8, 0x713b40,2, 0x713c04,1, 0x713c0c,3, 0x713c24,1, 0x713c2c,3, 0x713c44,1, 0x713c4c,3, 0x713c80,8, 0x713d00,1, 0x714000,40, 0x7140a4,2, 0x7140b0,16, 0x714120,4, 0x714160,138, 0x7143a0,90, 0x714564,5, 0x714584,5, 0x7145a4,1, 0x7145ac,3, 0x7145c4,1, 0x7145cc,3, 0x714604,1, 0x714620,8, 0x714644,14, 0x714680,1, 0x714700,27, 0x714780,4, 0x7147c0,12, 0x714800,10, 0x714900,5, 0x714918,5, 0x714930,5, 0x714948,5, 0x714998,1, 0x7149d0,3, 0x714a04,1, 0x714a40,16, 0x714a84,1, 0x714a90,4, 0x714b00,8, 0x714b40,2, 0x714c04,1, 0x714c0c,3, 0x714c24,1, 0x714c2c,3, 0x714c44,1, 0x714c4c,3, 0x714c80,8, 0x714d00,1, 0x715000,40, 0x7150a4,2, 0x7150b0,16, 0x715120,4, 0x715160,138, 0x7153a0,90, 0x715564,5, 0x715584,5, 0x7155a4,1, 0x7155ac,3, 0x7155c4,1, 0x7155cc,3, 0x715604,1, 0x715620,8, 0x715644,14, 0x715680,1, 0x715700,27, 0x715780,4, 0x7157c0,12, 0x715800,10, 0x715900,5, 0x715918,5, 0x715930,5, 0x715948,5, 0x715998,1, 0x7159d0,3, 0x715a04,1, 0x715a40,16, 0x715a84,1, 0x715a90,4, 0x715b00,8, 0x715b40,2, 0x715c04,1, 0x715c0c,3, 0x715c24,1, 0x715c2c,3, 0x715c44,1, 0x715c4c,3, 0x715c80,8, 0x715d00,1, 0x716000,40, 0x7160a4,2, 0x7160b0,16, 0x716120,4, 0x716160,138, 0x7163a0,90, 0x716564,5, 0x716584,5, 0x7165a4,1, 0x7165ac,3, 0x7165c4,1, 0x7165cc,3, 0x716604,1, 0x716620,8, 0x716644,14, 0x716680,1, 0x716700,27, 0x716780,4, 0x7167c0,12, 0x716800,10, 0x716900,5, 0x716918,5, 0x716930,5, 0x716948,5, 0x716998,1, 0x7169d0,3, 0x716a04,1, 0x716a40,16, 0x716a84,1, 0x716a90,4, 0x716b00,8, 0x716b40,2, 0x716c04,1, 0x716c0c,3, 0x716c24,1, 0x716c2c,3, 0x716c44,1, 0x716c4c,3, 0x716c80,8, 0x716d00,1, 0x717000,40, 0x7170a4,2, 0x7170b0,16, 0x717120,4, 0x717160,138, 0x7173a0,90, 0x717564,5, 0x717584,5, 0x7175a4,1, 0x7175ac,3, 0x7175c4,1, 0x7175cc,3, 0x717604,1, 0x717620,8, 0x717644,14, 0x717680,1, 0x717700,27, 0x717780,4, 0x7177c0,12, 0x717800,10, 0x717900,5, 0x717918,5, 0x717930,5, 0x717948,5, 0x717998,1, 0x7179d0,3, 0x717a04,1, 0x717a40,16, 0x717a84,1, 0x717a90,4, 0x717b00,8, 0x717b40,2, 0x717c04,1, 0x717c0c,3, 0x717c24,1, 0x717c2c,3, 0x717c44,1, 0x717c4c,3, 0x717c80,8, 0x717d00,1, 0x718000,1, 0x718008,2, 0x718020,37, 0x7180b8,64, 0x718200,2, 0x718210,66, 0x718420,2, 0x718440,46, 0x718504,5, 0x718524,5, 0x718544,1, 0x71854c,3, 0x718564,1, 0x71856c,3, 0x718590,21, 0x7185f0,1, 0x7185f8,29, 0x718680,4, 0x7186c0,12, 0x718720,7, 0x718740,2, 0x718800,2, 0x718860,6, 0x7188fc,1, 0x719000,19, 0x719080,6, 0x719a00,25, 0x719a80,1, 0x71a000,51, 0x71aa00,10, 0x71aa80,3, 0x71ab00,6, 0x71fffc,41, 0x7200a4,2, 0x7200b0,16, 0x720120,4, 0x720160,138, 0x7203a0,90, 0x720564,5, 0x720584,5, 0x7205a4,1, 0x7205ac,3, 0x7205c4,1, 0x7205cc,3, 0x720604,1, 0x720620,8, 0x720644,14, 0x720680,1, 0x720700,27, 0x720780,4, 0x7207c0,12, 0x720800,10, 0x720900,5, 0x720918,5, 0x720930,5, 0x720948,5, 0x720998,1, 0x7209d0,3, 0x720a04,1, 0x720a40,16, 0x720a84,1, 0x720a90,4, 0x720b00,8, 0x720b40,2, 0x720c04,1, 0x720c0c,3, 0x720c24,1, 0x720c2c,3, 0x720c44,1, 0x720c4c,3, 0x720c80,8, 0x720d00,1, 0x721000,40, 0x7210a4,2, 0x7210b0,16, 0x721120,4, 0x721160,138, 0x7213a0,90, 0x721564,5, 0x721584,5, 0x7215a4,1, 0x7215ac,3, 0x7215c4,1, 0x7215cc,3, 0x721604,1, 0x721620,8, 0x721644,14, 0x721680,1, 0x721700,27, 0x721780,4, 0x7217c0,12, 0x721800,10, 0x721900,5, 0x721918,5, 0x721930,5, 0x721948,5, 0x721998,1, 0x7219d0,3, 0x721a04,1, 0x721a40,16, 0x721a84,1, 0x721a90,4, 0x721b00,8, 0x721b40,2, 0x721c04,1, 0x721c0c,3, 0x721c24,1, 0x721c2c,3, 0x721c44,1, 0x721c4c,3, 0x721c80,8, 0x721d00,1, 0x722000,40, 0x7220a4,2, 0x7220b0,16, 0x722120,4, 0x722160,138, 0x7223a0,90, 0x722564,5, 0x722584,5, 0x7225a4,1, 0x7225ac,3, 0x7225c4,1, 0x7225cc,3, 0x722604,1, 0x722620,8, 0x722644,14, 0x722680,1, 0x722700,27, 0x722780,4, 0x7227c0,12, 0x722800,10, 0x722900,5, 0x722918,5, 0x722930,5, 0x722948,5, 0x722998,1, 0x7229d0,3, 0x722a04,1, 0x722a40,16, 0x722a84,1, 0x722a90,4, 0x722b00,8, 0x722b40,2, 0x722c04,1, 0x722c0c,3, 0x722c24,1, 0x722c2c,3, 0x722c44,1, 0x722c4c,3, 0x722c80,8, 0x722d00,1, 0x723000,40, 0x7230a4,2, 0x7230b0,16, 0x723120,4, 0x723160,138, 0x7233a0,90, 0x723564,5, 0x723584,5, 0x7235a4,1, 0x7235ac,3, 0x7235c4,1, 0x7235cc,3, 0x723604,1, 0x723620,8, 0x723644,14, 0x723680,1, 0x723700,27, 0x723780,4, 0x7237c0,12, 0x723800,10, 0x723900,5, 0x723918,5, 0x723930,5, 0x723948,5, 0x723998,1, 0x7239d0,3, 0x723a04,1, 0x723a40,16, 0x723a84,1, 0x723a90,4, 0x723b00,8, 0x723b40,2, 0x723c04,1, 0x723c0c,3, 0x723c24,1, 0x723c2c,3, 0x723c44,1, 0x723c4c,3, 0x723c80,8, 0x723d00,1, 0x724000,40, 0x7240a4,2, 0x7240b0,16, 0x724120,4, 0x724160,138, 0x7243a0,90, 0x724564,5, 0x724584,5, 0x7245a4,1, 0x7245ac,3, 0x7245c4,1, 0x7245cc,3, 0x724604,1, 0x724620,8, 0x724644,14, 0x724680,1, 0x724700,27, 0x724780,4, 0x7247c0,12, 0x724800,10, 0x724900,5, 0x724918,5, 0x724930,5, 0x724948,5, 0x724998,1, 0x7249d0,3, 0x724a04,1, 0x724a40,16, 0x724a84,1, 0x724a90,4, 0x724b00,8, 0x724b40,2, 0x724c04,1, 0x724c0c,3, 0x724c24,1, 0x724c2c,3, 0x724c44,1, 0x724c4c,3, 0x724c80,8, 0x724d00,1, 0x725000,40, 0x7250a4,2, 0x7250b0,16, 0x725120,4, 0x725160,138, 0x7253a0,90, 0x725564,5, 0x725584,5, 0x7255a4,1, 0x7255ac,3, 0x7255c4,1, 0x7255cc,3, 0x725604,1, 0x725620,8, 0x725644,14, 0x725680,1, 0x725700,27, 0x725780,4, 0x7257c0,12, 0x725800,10, 0x725900,5, 0x725918,5, 0x725930,5, 0x725948,5, 0x725998,1, 0x7259d0,3, 0x725a04,1, 0x725a40,16, 0x725a84,1, 0x725a90,4, 0x725b00,8, 0x725b40,2, 0x725c04,1, 0x725c0c,3, 0x725c24,1, 0x725c2c,3, 0x725c44,1, 0x725c4c,3, 0x725c80,8, 0x725d00,1, 0x726000,40, 0x7260a4,2, 0x7260b0,16, 0x726120,4, 0x726160,138, 0x7263a0,90, 0x726564,5, 0x726584,5, 0x7265a4,1, 0x7265ac,3, 0x7265c4,1, 0x7265cc,3, 0x726604,1, 0x726620,8, 0x726644,14, 0x726680,1, 0x726700,27, 0x726780,4, 0x7267c0,12, 0x726800,10, 0x726900,5, 0x726918,5, 0x726930,5, 0x726948,5, 0x726998,1, 0x7269d0,3, 0x726a04,1, 0x726a40,16, 0x726a84,1, 0x726a90,4, 0x726b00,8, 0x726b40,2, 0x726c04,1, 0x726c0c,3, 0x726c24,1, 0x726c2c,3, 0x726c44,1, 0x726c4c,3, 0x726c80,8, 0x726d00,1, 0x727000,40, 0x7270a4,2, 0x7270b0,16, 0x727120,4, 0x727160,138, 0x7273a0,90, 0x727564,5, 0x727584,5, 0x7275a4,1, 0x7275ac,3, 0x7275c4,1, 0x7275cc,3, 0x727604,1, 0x727620,8, 0x727644,14, 0x727680,1, 0x727700,27, 0x727780,4, 0x7277c0,12, 0x727800,10, 0x727900,5, 0x727918,5, 0x727930,5, 0x727948,5, 0x727998,1, 0x7279d0,3, 0x727a04,1, 0x727a40,16, 0x727a84,1, 0x727a90,4, 0x727b00,8, 0x727b40,2, 0x727c04,1, 0x727c0c,3, 0x727c24,1, 0x727c2c,3, 0x727c44,1, 0x727c4c,3, 0x727c80,8, 0x727d00,1, 0x728000,1, 0x728008,2, 0x728020,37, 0x7280b8,64, 0x728200,2, 0x728210,66, 0x728420,2, 0x728440,46, 0x728504,5, 0x728524,5, 0x728544,1, 0x72854c,3, 0x728564,1, 0x72856c,3, 0x728590,21, 0x7285f0,1, 0x7285f8,29, 0x728680,4, 0x7286c0,12, 0x728720,7, 0x728740,2, 0x728800,2, 0x728860,6, 0x7288fc,1, 0x729000,19, 0x729080,6, 0x729a00,25, 0x729a80,1, 0x72a000,51, 0x72aa00,10, 0x72aa80,3, 0x72ab00,6, 0x72fffc,41, 0x7300a4,2, 0x7300b0,16, 0x730120,4, 0x730160,138, 0x7303a0,90, 0x730564,5, 0x730584,5, 0x7305a4,1, 0x7305ac,3, 0x7305c4,1, 0x7305cc,3, 0x730604,1, 0x730620,8, 0x730644,14, 0x730680,1, 0x730700,27, 0x730780,4, 0x7307c0,12, 0x730800,10, 0x730900,5, 0x730918,5, 0x730930,5, 0x730948,5, 0x730998,1, 0x7309d0,3, 0x730a04,1, 0x730a40,16, 0x730a84,1, 0x730a90,4, 0x730b00,8, 0x730b40,2, 0x730c04,1, 0x730c0c,3, 0x730c24,1, 0x730c2c,3, 0x730c44,1, 0x730c4c,3, 0x730c80,8, 0x730d00,1, 0x731000,40, 0x7310a4,2, 0x7310b0,16, 0x731120,4, 0x731160,138, 0x7313a0,90, 0x731564,5, 0x731584,5, 0x7315a4,1, 0x7315ac,3, 0x7315c4,1, 0x7315cc,3, 0x731604,1, 0x731620,8, 0x731644,14, 0x731680,1, 0x731700,27, 0x731780,4, 0x7317c0,12, 0x731800,10, 0x731900,5, 0x731918,5, 0x731930,5, 0x731948,5, 0x731998,1, 0x7319d0,3, 0x731a04,1, 0x731a40,16, 0x731a84,1, 0x731a90,4, 0x731b00,8, 0x731b40,2, 0x731c04,1, 0x731c0c,3, 0x731c24,1, 0x731c2c,3, 0x731c44,1, 0x731c4c,3, 0x731c80,8, 0x731d00,1, 0x732000,40, 0x7320a4,2, 0x7320b0,16, 0x732120,4, 0x732160,138, 0x7323a0,90, 0x732564,5, 0x732584,5, 0x7325a4,1, 0x7325ac,3, 0x7325c4,1, 0x7325cc,3, 0x732604,1, 0x732620,8, 0x732644,14, 0x732680,1, 0x732700,27, 0x732780,4, 0x7327c0,12, 0x732800,10, 0x732900,5, 0x732918,5, 0x732930,5, 0x732948,5, 0x732998,1, 0x7329d0,3, 0x732a04,1, 0x732a40,16, 0x732a84,1, 0x732a90,4, 0x732b00,8, 0x732b40,2, 0x732c04,1, 0x732c0c,3, 0x732c24,1, 0x732c2c,3, 0x732c44,1, 0x732c4c,3, 0x732c80,8, 0x732d00,1, 0x733000,40, 0x7330a4,2, 0x7330b0,16, 0x733120,4, 0x733160,138, 0x7333a0,90, 0x733564,5, 0x733584,5, 0x7335a4,1, 0x7335ac,3, 0x7335c4,1, 0x7335cc,3, 0x733604,1, 0x733620,8, 0x733644,14, 0x733680,1, 0x733700,27, 0x733780,4, 0x7337c0,12, 0x733800,10, 0x733900,5, 0x733918,5, 0x733930,5, 0x733948,5, 0x733998,1, 0x7339d0,3, 0x733a04,1, 0x733a40,16, 0x733a84,1, 0x733a90,4, 0x733b00,8, 0x733b40,2, 0x733c04,1, 0x733c0c,3, 0x733c24,1, 0x733c2c,3, 0x733c44,1, 0x733c4c,3, 0x733c80,8, 0x733d00,1, 0x734000,40, 0x7340a4,2, 0x7340b0,16, 0x734120,4, 0x734160,138, 0x7343a0,90, 0x734564,5, 0x734584,5, 0x7345a4,1, 0x7345ac,3, 0x7345c4,1, 0x7345cc,3, 0x734604,1, 0x734620,8, 0x734644,14, 0x734680,1, 0x734700,27, 0x734780,4, 0x7347c0,12, 0x734800,10, 0x734900,5, 0x734918,5, 0x734930,5, 0x734948,5, 0x734998,1, 0x7349d0,3, 0x734a04,1, 0x734a40,16, 0x734a84,1, 0x734a90,4, 0x734b00,8, 0x734b40,2, 0x734c04,1, 0x734c0c,3, 0x734c24,1, 0x734c2c,3, 0x734c44,1, 0x734c4c,3, 0x734c80,8, 0x734d00,1, 0x735000,40, 0x7350a4,2, 0x7350b0,16, 0x735120,4, 0x735160,138, 0x7353a0,90, 0x735564,5, 0x735584,5, 0x7355a4,1, 0x7355ac,3, 0x7355c4,1, 0x7355cc,3, 0x735604,1, 0x735620,8, 0x735644,14, 0x735680,1, 0x735700,27, 0x735780,4, 0x7357c0,12, 0x735800,10, 0x735900,5, 0x735918,5, 0x735930,5, 0x735948,5, 0x735998,1, 0x7359d0,3, 0x735a04,1, 0x735a40,16, 0x735a84,1, 0x735a90,4, 0x735b00,8, 0x735b40,2, 0x735c04,1, 0x735c0c,3, 0x735c24,1, 0x735c2c,3, 0x735c44,1, 0x735c4c,3, 0x735c80,8, 0x735d00,1, 0x736000,40, 0x7360a4,2, 0x7360b0,16, 0x736120,4, 0x736160,138, 0x7363a0,90, 0x736564,5, 0x736584,5, 0x7365a4,1, 0x7365ac,3, 0x7365c4,1, 0x7365cc,3, 0x736604,1, 0x736620,8, 0x736644,14, 0x736680,1, 0x736700,27, 0x736780,4, 0x7367c0,12, 0x736800,10, 0x736900,5, 0x736918,5, 0x736930,5, 0x736948,5, 0x736998,1, 0x7369d0,3, 0x736a04,1, 0x736a40,16, 0x736a84,1, 0x736a90,4, 0x736b00,8, 0x736b40,2, 0x736c04,1, 0x736c0c,3, 0x736c24,1, 0x736c2c,3, 0x736c44,1, 0x736c4c,3, 0x736c80,8, 0x736d00,1, 0x737000,40, 0x7370a4,2, 0x7370b0,16, 0x737120,4, 0x737160,138, 0x7373a0,90, 0x737564,5, 0x737584,5, 0x7375a4,1, 0x7375ac,3, 0x7375c4,1, 0x7375cc,3, 0x737604,1, 0x737620,8, 0x737644,14, 0x737680,1, 0x737700,27, 0x737780,4, 0x7377c0,12, 0x737800,10, 0x737900,5, 0x737918,5, 0x737930,5, 0x737948,5, 0x737998,1, 0x7379d0,3, 0x737a04,1, 0x737a40,16, 0x737a84,1, 0x737a90,4, 0x737b00,8, 0x737b40,2, 0x737c04,1, 0x737c0c,3, 0x737c24,1, 0x737c2c,3, 0x737c44,1, 0x737c4c,3, 0x737c80,8, 0x737d00,1, 0x738000,1, 0x738008,2, 0x738020,37, 0x7380b8,64, 0x738200,2, 0x738210,66, 0x738420,2, 0x738440,46, 0x738504,5, 0x738524,5, 0x738544,1, 0x73854c,3, 0x738564,1, 0x73856c,3, 0x738590,21, 0x7385f0,1, 0x7385f8,29, 0x738680,4, 0x7386c0,12, 0x738720,7, 0x738740,2, 0x738800,2, 0x738860,6, 0x7388fc,1, 0x739000,19, 0x739080,6, 0x739a00,25, 0x739a80,1, 0x73a000,51, 0x73aa00,10, 0x73aa80,3, 0x73ab00,6, 0x73fffc,52, 0x740a00,10, 0x740a80,3, 0x740b00,6, 0x741000,8, 0x741028,5, 0x741040,3, 0x741080,8, 0x7410a8,5, 0x7410c0,3, 0x741100,8, 0x741128,5, 0x741140,3, 0x741180,8, 0x7411a8,5, 0x7411c0,3, 0x741200,8, 0x741228,5, 0x741240,3, 0x741280,8, 0x7412a8,5, 0x7412c0,3, 0x741300,8, 0x741328,5, 0x741340,3, 0x741380,8, 0x7413a8,5, 0x7413c0,3, 0x741400,8, 0x741428,5, 0x741440,3, 0x741480,8, 0x7414a8,5, 0x7414c0,3, 0x741500,8, 0x741528,5, 0x741540,3, 0x741580,8, 0x7415a8,5, 0x7415c0,3, 0x741600,8, 0x741628,5, 0x741640,3, 0x741680,8, 0x7416a8,5, 0x7416c0,3, 0x741700,8, 0x741728,5, 0x741740,3, 0x741780,8, 0x7417a8,5, 0x7417c0,3, 0x741800,8, 0x741828,5, 0x741840,3, 0x741880,33, 0x741908,2, 0x742400,64, 0x742504,8, 0x742530,3, 0x742800,72, 0x742924,9, 0x742950,3, 0x742d00,11, 0x743010,2, 0x744000,51, 0x744a00,10, 0x744a80,3, 0x744b00,6, 0x745000,8, 0x745028,5, 0x745040,3, 0x745080,8, 0x7450a8,5, 0x7450c0,3, 0x745100,8, 0x745128,5, 0x745140,3, 0x745180,8, 0x7451a8,5, 0x7451c0,3, 0x745200,8, 0x745228,5, 0x745240,3, 0x745280,8, 0x7452a8,5, 0x7452c0,3, 0x745300,8, 0x745328,5, 0x745340,3, 0x745380,8, 0x7453a8,5, 0x7453c0,3, 0x745400,8, 0x745428,5, 0x745440,3, 0x745480,8, 0x7454a8,5, 0x7454c0,3, 0x745500,8, 0x745528,5, 0x745540,3, 0x745580,8, 0x7455a8,5, 0x7455c0,3, 0x745600,8, 0x745628,5, 0x745640,3, 0x745680,8, 0x7456a8,5, 0x7456c0,3, 0x745700,8, 0x745728,5, 0x745740,3, 0x745780,8, 0x7457a8,5, 0x7457c0,3, 0x745800,8, 0x745828,5, 0x745840,3, 0x745880,33, 0x745908,2, 0x746400,64, 0x746504,8, 0x746530,3, 0x746800,72, 0x746924,9, 0x746950,3, 0x746d00,11, 0x747010,2, 0x748000,10, 0x748080,3, 0x7480e0,1, 0x749000,4, 0x749040,13, 0x749080,4, 0x7490c0,13, 0x749100,7, 0x749124,1, 0x749200,4, 0x749240,13, 0x749280,4, 0x7492c0,13, 0x749300,7, 0x749324,1, 0x749400,4, 0x749440,13, 0x749480,4, 0x7494c0,13, 0x749500,7, 0x749524,1, 0x749600,4, 0x749640,13, 0x749680,4, 0x7496c0,13, 0x749700,7, 0x749724,1, 0x749800,4, 0x749840,13, 0x749880,4, 0x7498c0,13, 0x749900,7, 0x749924,1, 0x749a00,4, 0x749a40,13, 0x749a80,4, 0x749ac0,13, 0x749b00,7, 0x749b24,1, 0x749c00,4, 0x749c40,13, 0x749c80,4, 0x749cc0,13, 0x749d00,7, 0x749d24,1, 0x749e00,4, 0x749e40,13, 0x749e80,4, 0x749ec0,13, 0x749f00,7, 0x749f24,1, 0x74a000,4, 0x74a040,13, 0x74a080,4, 0x74a0c0,13, 0x74a100,7, 0x74a124,1, 0x74a200,4, 0x74a240,13, 0x74a280,4, 0x74a2c0,13, 0x74a300,7, 0x74a324,1, 0x74a400,4, 0x74a440,13, 0x74a480,4, 0x74a4c0,13, 0x74a500,7, 0x74a524,1, 0x74a600,4, 0x74a640,13, 0x74a680,4, 0x74a6c0,13, 0x74a700,7, 0x74a724,1, 0x74a800,4, 0x74a840,13, 0x74a880,4, 0x74a8c0,13, 0x74a900,7, 0x74a924,1, 0x74aa00,4, 0x74aa40,13, 0x74aa80,4, 0x74aac0,13, 0x74ab00,7, 0x74ab24,1, 0x74ac00,4, 0x74ac40,13, 0x74ac80,4, 0x74acc0,13, 0x74ad00,7, 0x74ad24,1, 0x74ae00,4, 0x74ae40,13, 0x74ae80,4, 0x74aec0,13, 0x74af00,7, 0x74af24,1, 0x74b000,4, 0x74b040,13, 0x74b080,4, 0x74b0c0,13, 0x74b100,7, 0x74b124,1, 0x74b200,532, 0x74bb00,1, 0x74bb10,2, 0x74bb40,13, 0x74bb80,2, 0x74bc00,136, 0x74be24,17, 0x74be70,3, 0x74c000,128, 0x74c204,16, 0x74c250,3, 0x74c400,136, 0x74c624,17, 0x74c670,3, 0x74c800,19, 0x74c900,51, 0x74ca08,2, 0x74ca14,3, 0x74caa0,2, 0x750000,10, 0x750080,3, 0x7500e0,1, 0x751000,21, 0x751068,1, 0x751078,2, 0x751100,17, 0x751180,1, 0x751190,1, 0x760000,2, 0x76000c,3, 0x76001c,3, 0x76002c,3, 0x76003c,3, 0x76004c,3, 0x76005c,3, 0x76006c,3, 0x76007c,3, 0x76008c,3, 0x76009c,3, 0x7600ac,3, 0x7600bc,3, 0x7600cc,3, 0x7600dc,3, 0x7600ec,3, 0x7600fc,3, 0x76010c,3, 0x76011c,3, 0x76012c,3, 0x76013c,3, 0x76014c,3, 0x76015c,3, 0x76016c,3, 0x76017c,3, 0x76018c,3, 0x76019c,3, 0x7601ac,3, 0x7601bc,3, 0x7601cc,3, 0x7601dc,3, 0x7601ec,3, 0x7601fc,3, 0x76020c,3, 0x76021c,3, 0x76022c,3, 0x76023c,3, 0x76024c,3, 0x76025c,3, 0x76026c,3, 0x76027c,3, 0x76028c,3, 0x76029c,3, 0x7602ac,3, 0x7602bc,3, 0x7602cc,3, 0x7602dc,3, 0x7602ec,3, 0x7602fc,3, 0x76030c,3, 0x76031c,3, 0x76032c,3, 0x76033c,3, 0x76034c,3, 0x76035c,3, 0x76036c,3, 0x76037c,3, 0x76038c,3, 0x76039c,3, 0x7603ac,3, 0x7603bc,3, 0x7603cc,3, 0x7603dc,3, 0x7603ec,3, 0x7603fc,145, 0x7606a8,1, 0x760800,256, 0x760d00,3, 0x761000,120, 0x7611e4,4, 0x761200,3, 0x761400,512, 0x761e00,4, 0x761ef4,3, 0x762000,4, 0x762040,12, 0x762080,4, 0x7620c0,12, 0x762100,4, 0x762140,12, 0x762180,4, 0x7621c0,12, 0x762200,4, 0x762220,5, 0x762280,4, 0x7622a0,5, 0x762300,4, 0x762320,5, 0x762380,4, 0x7623a0,5, 0x762400,289, 0x762a04,6, 0x762a20,5, 0x762a74,2, 0x762a84,13, 0x763004,1, 0x763020,6, 0x763080,2, 0x763100,1, 0x763108,3, 0x763118,6, 0x763134,1, 0x76313c,4, 0x763150,5, 0x763180,6, 0x7631f4,3, 0x763a00,19, 0x763a80,7, 0x763aa0,3, 0x763ab0,2, 0x763be0,1, 0x763e00,2, 0x780000,7, 0x780020,7, 0x780040,7, 0x780074,6, 0x7800a4,6, 0x7800d4,9, 0x780200,7, 0x780220,7, 0x780240,7, 0x780274,6, 0x7802a4,6, 0x7802d4,9, 0x780400,13, 0x780444,8, 0x780474,8, 0x7804a4,8, 0x7804d4,2, 0x780800,7, 0x780820,7, 0x780840,7, 0x780874,6, 0x7808a4,6, 0x7808d4,9, 0x780a00,7, 0x780a20,7, 0x780a40,7, 0x780a74,6, 0x780aa4,6, 0x780ad4,9, 0x780c00,13, 0x780c44,8, 0x780c74,8, 0x780ca4,8, 0x780cd4,2, 0x781000,7, 0x781020,7, 0x781040,7, 0x781074,6, 0x7810a4,6, 0x7810d4,9, 0x781200,7, 0x781220,7, 0x781240,7, 0x781274,6, 0x7812a4,6, 0x7812d4,9, 0x781400,13, 0x781444,8, 0x781474,8, 0x7814a4,8, 0x7814d4,2, 0x781800,7, 0x781820,7, 0x781840,7, 0x781874,6, 0x7818a4,6, 0x7818d4,9, 0x781a00,7, 0x781a20,7, 0x781a40,7, 0x781a74,6, 0x781aa4,6, 0x781ad4,9, 0x781c00,13, 0x781c44,8, 0x781c74,8, 0x781ca4,8, 0x781cd4,2, 0x782000,7, 0x782020,7, 0x782040,7, 0x782074,6, 0x7820a4,6, 0x7820d4,9, 0x782200,7, 0x782220,7, 0x782240,7, 0x782274,6, 0x7822a4,6, 0x7822d4,9, 0x782400,13, 0x782444,8, 0x782474,8, 0x7824a4,8, 0x7824d4,2, 0x782800,7, 0x782820,7, 0x782840,7, 0x782874,6, 0x7828a4,6, 0x7828d4,9, 0x782a00,7, 0x782a20,7, 0x782a40,7, 0x782a74,6, 0x782aa4,6, 0x782ad4,9, 0x782c00,13, 0x782c44,8, 0x782c74,8, 0x782ca4,8, 0x782cd4,2, 0x783000,7, 0x783020,7, 0x783040,7, 0x783074,6, 0x7830a4,6, 0x7830d4,9, 0x783200,7, 0x783220,7, 0x783240,7, 0x783274,6, 0x7832a4,6, 0x7832d4,9, 0x783400,13, 0x783444,8, 0x783474,8, 0x7834a4,8, 0x7834d4,2, 0x783800,7, 0x783820,7, 0x783840,7, 0x783874,6, 0x7838a4,6, 0x7838d4,9, 0x783a00,7, 0x783a20,7, 0x783a40,7, 0x783a74,6, 0x783aa4,6, 0x783ad4,9, 0x783c00,13, 0x783c44,8, 0x783c74,8, 0x783ca4,8, 0x783cd4,2, 0x784000,7, 0x784020,7, 0x784040,7, 0x784074,6, 0x7840a4,6, 0x7840d4,9, 0x784200,7, 0x784220,7, 0x784240,7, 0x784274,6, 0x7842a4,6, 0x7842d4,9, 0x784400,13, 0x784444,8, 0x784474,8, 0x7844a4,8, 0x7844d4,2, 0x784800,7, 0x784820,7, 0x784840,7, 0x784874,6, 0x7848a4,6, 0x7848d4,9, 0x784a00,7, 0x784a20,7, 0x784a40,7, 0x784a74,6, 0x784aa4,6, 0x784ad4,9, 0x784c00,13, 0x784c44,8, 0x784c74,8, 0x784ca4,8, 0x784cd4,2, 0x785000,7, 0x785020,7, 0x785040,7, 0x785074,6, 0x7850a4,6, 0x7850d4,9, 0x785200,7, 0x785220,7, 0x785240,7, 0x785274,6, 0x7852a4,6, 0x7852d4,9, 0x785400,13, 0x785444,8, 0x785474,8, 0x7854a4,8, 0x7854d4,2, 0x785800,7, 0x785820,7, 0x785840,7, 0x785874,6, 0x7858a4,6, 0x7858d4,9, 0x785a00,7, 0x785a20,7, 0x785a40,7, 0x785a74,6, 0x785aa4,6, 0x785ad4,9, 0x785c00,13, 0x785c44,8, 0x785c74,8, 0x785ca4,8, 0x785cd4,2, 0x786000,7, 0x786020,7, 0x786040,7, 0x786074,6, 0x7860a4,6, 0x7860d4,9, 0x786200,7, 0x786220,7, 0x786240,7, 0x786274,6, 0x7862a4,6, 0x7862d4,9, 0x786400,13, 0x786444,8, 0x786474,8, 0x7864a4,8, 0x7864d4,2, 0x786800,7, 0x786820,7, 0x786840,7, 0x786874,6, 0x7868a4,6, 0x7868d4,9, 0x786a00,7, 0x786a20,7, 0x786a40,7, 0x786a74,6, 0x786aa4,6, 0x786ad4,9, 0x786c00,13, 0x786c44,8, 0x786c74,8, 0x786ca4,8, 0x786cd4,2, 0x787000,7, 0x787020,7, 0x787040,7, 0x787074,6, 0x7870a4,6, 0x7870d4,9, 0x787200,7, 0x787220,7, 0x787240,7, 0x787274,6, 0x7872a4,6, 0x7872d4,9, 0x787400,13, 0x787444,8, 0x787474,8, 0x7874a4,8, 0x7874d4,2, 0x787800,7, 0x787820,7, 0x787840,7, 0x787874,6, 0x7878a4,6, 0x7878d4,9, 0x787a00,7, 0x787a20,7, 0x787a40,7, 0x787a74,6, 0x787aa4,6, 0x787ad4,9, 0x787c00,13, 0x787c44,8, 0x787c74,8, 0x787ca4,8, 0x787cd4,2, 0x788000,7, 0x788020,7, 0x788040,7, 0x788074,6, 0x7880a4,6, 0x7880d4,9, 0x788200,7, 0x788220,7, 0x788240,7, 0x788274,6, 0x7882a4,6, 0x7882d4,9, 0x788400,13, 0x788444,8, 0x788474,8, 0x7884a4,8, 0x7884d4,2, 0x788800,7, 0x788820,7, 0x788840,7, 0x788874,6, 0x7888a4,6, 0x7888d4,9, 0x788a00,7, 0x788a20,7, 0x788a40,7, 0x788a74,6, 0x788aa4,6, 0x788ad4,9, 0x788c00,13, 0x788c44,8, 0x788c74,8, 0x788ca4,8, 0x788cd4,2, 0x789000,7, 0x789020,7, 0x789040,7, 0x789074,6, 0x7890a4,6, 0x7890d4,9, 0x789200,7, 0x789220,7, 0x789240,7, 0x789274,6, 0x7892a4,6, 0x7892d4,9, 0x789400,13, 0x789444,8, 0x789474,8, 0x7894a4,8, 0x7894d4,2, 0x789800,7, 0x789820,7, 0x789840,7, 0x789874,6, 0x7898a4,6, 0x7898d4,9, 0x789a00,7, 0x789a20,7, 0x789a40,7, 0x789a74,6, 0x789aa4,6, 0x789ad4,9, 0x789c00,13, 0x789c44,8, 0x789c74,8, 0x789ca4,8, 0x789cd4,2, 0x78a000,7, 0x78a020,7, 0x78a040,7, 0x78a074,6, 0x78a0a4,6, 0x78a0d4,9, 0x78a200,7, 0x78a220,7, 0x78a240,7, 0x78a274,6, 0x78a2a4,6, 0x78a2d4,9, 0x78a400,13, 0x78a444,8, 0x78a474,8, 0x78a4a4,8, 0x78a4d4,2, 0x78a800,7, 0x78a820,7, 0x78a840,7, 0x78a874,6, 0x78a8a4,6, 0x78a8d4,9, 0x78aa00,7, 0x78aa20,7, 0x78aa40,7, 0x78aa74,6, 0x78aaa4,6, 0x78aad4,9, 0x78ac00,13, 0x78ac44,8, 0x78ac74,8, 0x78aca4,8, 0x78acd4,2, 0x78b000,7, 0x78b020,7, 0x78b040,7, 0x78b074,6, 0x78b0a4,6, 0x78b0d4,9, 0x78b200,7, 0x78b220,7, 0x78b240,7, 0x78b274,6, 0x78b2a4,6, 0x78b2d4,9, 0x78b400,13, 0x78b444,8, 0x78b474,8, 0x78b4a4,8, 0x78b4d4,2, 0x78b800,7, 0x78b820,7, 0x78b840,7, 0x78b874,6, 0x78b8a4,6, 0x78b8d4,9, 0x78ba00,7, 0x78ba20,7, 0x78ba40,7, 0x78ba74,6, 0x78baa4,6, 0x78bad4,9, 0x78bc00,13, 0x78bc44,8, 0x78bc74,8, 0x78bca4,8, 0x78bcd4,2, 0x78c000,7, 0x78c020,7, 0x78c040,7, 0x78c074,6, 0x78c0a4,6, 0x78c0d4,9, 0x78c200,7, 0x78c220,7, 0x78c240,7, 0x78c274,6, 0x78c2a4,6, 0x78c2d4,9, 0x78c400,13, 0x78c444,8, 0x78c474,8, 0x78c4a4,8, 0x78c4d4,2, 0x78c800,7, 0x78c820,7, 0x78c840,7, 0x78c874,6, 0x78c8a4,6, 0x78c8d4,9, 0x78ca00,7, 0x78ca20,7, 0x78ca40,7, 0x78ca74,6, 0x78caa4,6, 0x78cad4,9, 0x78cc00,13, 0x78cc44,8, 0x78cc74,8, 0x78cca4,8, 0x78ccd4,2, 0x78d000,7, 0x78d020,7, 0x78d040,7, 0x78d074,6, 0x78d0a4,6, 0x78d0d4,9, 0x78d200,7, 0x78d220,7, 0x78d240,7, 0x78d274,6, 0x78d2a4,6, 0x78d2d4,9, 0x78d400,13, 0x78d444,8, 0x78d474,8, 0x78d4a4,8, 0x78d4d4,2, 0x78d800,7, 0x78d820,7, 0x78d840,7, 0x78d874,6, 0x78d8a4,6, 0x78d8d4,9, 0x78da00,7, 0x78da20,7, 0x78da40,7, 0x78da74,6, 0x78daa4,6, 0x78dad4,9, 0x78dc00,13, 0x78dc44,8, 0x78dc74,8, 0x78dca4,8, 0x78dcd4,2, 0x78e000,7, 0x78e020,7, 0x78e040,7, 0x78e074,6, 0x78e0a4,6, 0x78e0d4,9, 0x78e200,7, 0x78e220,7, 0x78e240,7, 0x78e274,6, 0x78e2a4,6, 0x78e2d4,9, 0x78e400,13, 0x78e444,8, 0x78e474,8, 0x78e4a4,8, 0x78e4d4,2, 0x78e800,7, 0x78e820,7, 0x78e840,7, 0x78e874,6, 0x78e8a4,6, 0x78e8d4,9, 0x78ea00,7, 0x78ea20,7, 0x78ea40,7, 0x78ea74,6, 0x78eaa4,6, 0x78ead4,9, 0x78ec00,13, 0x78ec44,8, 0x78ec74,8, 0x78eca4,8, 0x78ecd4,2, 0x78f000,7, 0x78f020,7, 0x78f040,7, 0x78f074,6, 0x78f0a4,6, 0x78f0d4,9, 0x78f200,7, 0x78f220,7, 0x78f240,7, 0x78f274,6, 0x78f2a4,6, 0x78f2d4,9, 0x78f400,13, 0x78f444,8, 0x78f474,8, 0x78f4a4,8, 0x78f4d4,2, 0x78f800,7, 0x78f820,7, 0x78f840,7, 0x78f874,6, 0x78f8a4,6, 0x78f8d4,9, 0x78fa00,7, 0x78fa20,7, 0x78fa40,7, 0x78fa74,6, 0x78faa4,6, 0x78fad4,9, 0x78fc00,13, 0x78fc44,8, 0x78fc74,8, 0x78fca4,8, 0x78fcd4,2, 0x790000,8, 0x790030,8, 0x790060,2, 0x790200,7, 0x790220,7, 0x790240,7, 0x790274,6, 0x7902a4,6, 0x7902d4,9, 0x790400,8, 0x790424,1, 0x790440,1, 0x790460,11, 0x790494,3, 0x7904a8,4, 0x7904d0,4, 0x7904f8,10, 0x790524,1, 0x790540,1, 0x790560,11, 0x790594,3, 0x7905a8,4, 0x7905d0,4, 0x7905f8,10, 0x790624,1, 0x790640,1, 0x790660,11, 0x790694,3, 0x7906a8,4, 0x7906d0,4, 0x7906f8,10, 0x790724,1, 0x790740,1, 0x790760,11, 0x790794,3, 0x7907a8,4, 0x7907d0,4, 0x7907f8,10, 0x790824,1, 0x790840,1, 0x790860,11, 0x790894,3, 0x7908a8,4, 0x7908d0,4, 0x7908f8,10, 0x790924,1, 0x790940,1, 0x790960,11, 0x790994,3, 0x7909a8,4, 0x7909d0,4, 0x7909f8,10, 0x790a24,1, 0x790a40,1, 0x790a60,11, 0x790a94,3, 0x790aa8,4, 0x790ad0,4, 0x790af8,10, 0x790b24,1, 0x790b40,1, 0x790b60,11, 0x790b94,3, 0x790ba8,4, 0x790bd0,4, 0x790bf8,10, 0x790c24,1, 0x790c40,1, 0x790c60,11, 0x790c94,3, 0x790ca8,4, 0x790cd0,4, 0x790cf8,10, 0x790d24,1, 0x790d40,1, 0x790d60,11, 0x790d94,3, 0x790da8,4, 0x790dd0,4, 0x790df8,10, 0x790e24,1, 0x790e40,1, 0x790e60,11, 0x790e94,3, 0x790ea8,4, 0x790ed0,4, 0x790ef8,10, 0x790f24,1, 0x790f40,1, 0x790f60,11, 0x790f94,3, 0x790fa8,4, 0x790fd0,4, 0x790ff8,10, 0x791024,1, 0x791040,1, 0x791060,11, 0x791094,3, 0x7910a8,4, 0x7910d0,4, 0x7910f8,10, 0x791124,1, 0x791140,1, 0x791160,11, 0x791194,3, 0x7911a8,4, 0x7911d0,4, 0x7911f8,10, 0x791224,1, 0x791240,1, 0x791260,11, 0x791294,3, 0x7912a8,4, 0x7912d0,4, 0x7912f8,10, 0x791324,1, 0x791340,1, 0x791360,11, 0x791394,3, 0x7913a8,4, 0x7913d0,4, 0x7913f8,10, 0x791424,1, 0x791440,1, 0x791460,11, 0x791494,3, 0x7914a8,4, 0x7914d0,4, 0x7914f8,10, 0x791524,1, 0x791540,1, 0x791560,11, 0x791594,3, 0x7915a8,4, 0x7915d0,4, 0x7915f8,10, 0x791624,1, 0x791640,1, 0x791660,11, 0x791694,3, 0x7916a8,4, 0x7916d0,4, 0x7916f8,10, 0x791724,1, 0x791740,1, 0x791760,11, 0x791794,3, 0x7917a8,4, 0x7917d0,4, 0x7917f8,10, 0x791824,1, 0x791840,1, 0x791860,11, 0x791894,3, 0x7918a8,4, 0x7918d0,4, 0x7918f8,10, 0x791924,1, 0x791940,1, 0x791960,11, 0x791994,3, 0x7919a8,4, 0x7919d0,4, 0x7919f8,10, 0x791a24,1, 0x791a40,1, 0x791a60,11, 0x791a94,3, 0x791aa8,4, 0x791ad0,4, 0x791af8,10, 0x791b24,1, 0x791b40,1, 0x791b60,11, 0x791b94,3, 0x791ba8,4, 0x791bd0,4, 0x791bf8,10, 0x791c24,1, 0x791c40,1, 0x791c60,11, 0x791c94,3, 0x791ca8,4, 0x791cd0,4, 0x791cf8,10, 0x791d24,1, 0x791d40,1, 0x791d60,11, 0x791d94,3, 0x791da8,4, 0x791dd0,4, 0x791df8,10, 0x791e24,1, 0x791e40,1, 0x791e60,11, 0x791e94,3, 0x791ea8,4, 0x791ed0,4, 0x791ef8,10, 0x791f24,1, 0x791f40,1, 0x791f60,11, 0x791f94,3, 0x791fa8,4, 0x791fd0,4, 0x791ff8,10, 0x792024,1, 0x792040,1, 0x792060,11, 0x792094,3, 0x7920a8,4, 0x7920d0,4, 0x7920f8,10, 0x792124,1, 0x792140,1, 0x792160,11, 0x792194,3, 0x7921a8,4, 0x7921d0,4, 0x7921f8,10, 0x792224,1, 0x792240,1, 0x792260,11, 0x792294,3, 0x7922a8,4, 0x7922d0,4, 0x7922f8,10, 0x792324,1, 0x792340,1, 0x792360,11, 0x792394,3, 0x7923a8,4, 0x7923d0,4, 0x7923f8,10, 0x792424,1, 0x792440,1, 0x792460,11, 0x792494,3, 0x7924a8,4, 0x7924d0,4, 0x7924f8,10, 0x792524,1, 0x792540,1, 0x792560,11, 0x792594,3, 0x7925a8,4, 0x7925d0,4, 0x7925f8,10, 0x792624,1, 0x792640,1, 0x792660,11, 0x792694,3, 0x7926a8,4, 0x7926d0,4, 0x7926f8,10, 0x792724,1, 0x792740,1, 0x792760,11, 0x792794,3, 0x7927a8,4, 0x7927d0,4, 0x7927f8,10, 0x792824,1, 0x792840,1, 0x792860,11, 0x792894,3, 0x7928a8,4, 0x7928d0,4, 0x7928f8,10, 0x792924,1, 0x792940,1, 0x792960,11, 0x792994,3, 0x7929a8,4, 0x7929d0,4, 0x7929f8,10, 0x792a24,1, 0x792a40,1, 0x792a60,11, 0x792a94,3, 0x792aa8,4, 0x792ad0,4, 0x792af8,10, 0x792b24,1, 0x792b40,1, 0x792b60,11, 0x792b94,3, 0x792ba8,4, 0x792bd0,4, 0x792bf8,10, 0x792c24,1, 0x792c40,1, 0x792c60,11, 0x792c94,3, 0x792ca8,4, 0x792cd0,4, 0x792cf8,10, 0x792d24,1, 0x792d40,1, 0x792d60,11, 0x792d94,3, 0x792da8,4, 0x792dd0,4, 0x792df8,10, 0x792e24,1, 0x792e40,1, 0x792e60,11, 0x792e94,3, 0x792ea8,4, 0x792ed0,4, 0x792ef8,10, 0x792f24,1, 0x792f40,1, 0x792f60,11, 0x792f94,3, 0x792fa8,4, 0x792fd0,4, 0x792ff8,10, 0x793024,1, 0x793040,1, 0x793060,11, 0x793094,3, 0x7930a8,4, 0x7930d0,4, 0x7930f8,10, 0x793124,1, 0x793140,1, 0x793160,11, 0x793194,3, 0x7931a8,4, 0x7931d0,4, 0x7931f8,10, 0x793224,1, 0x793240,1, 0x793260,11, 0x793294,3, 0x7932a8,4, 0x7932d0,4, 0x7932f8,10, 0x793324,1, 0x793340,1, 0x793360,11, 0x793394,3, 0x7933a8,4, 0x7933d0,4, 0x7933f8,10, 0x793424,1, 0x793440,1, 0x793460,11, 0x793494,3, 0x7934a8,4, 0x7934d0,4, 0x7934f8,10, 0x793524,1, 0x793540,1, 0x793560,11, 0x793594,3, 0x7935a8,4, 0x7935d0,4, 0x7935f8,10, 0x793624,1, 0x793640,1, 0x793660,11, 0x793694,3, 0x7936a8,4, 0x7936d0,4, 0x7936f8,10, 0x793724,1, 0x793740,1, 0x793760,11, 0x793794,3, 0x7937a8,4, 0x7937d0,4, 0x7937f8,10, 0x793824,1, 0x793840,1, 0x793860,11, 0x793894,3, 0x7938a8,4, 0x7938d0,4, 0x7938f8,10, 0x793924,1, 0x793940,1, 0x793960,11, 0x793994,3, 0x7939a8,4, 0x7939d0,4, 0x7939f8,10, 0x793a24,1, 0x793a40,1, 0x793a60,11, 0x793a94,3, 0x793aa8,4, 0x793ad0,4, 0x793af8,10, 0x793b24,1, 0x793b40,1, 0x793b60,11, 0x793b94,3, 0x793ba8,4, 0x793bd0,4, 0x793bf8,10, 0x793c24,1, 0x793c40,1, 0x793c60,11, 0x793c94,3, 0x793ca8,4, 0x793cd0,4, 0x793cf8,10, 0x793d24,1, 0x793d40,1, 0x793d60,11, 0x793d94,3, 0x793da8,4, 0x793dd0,4, 0x793df8,10, 0x793e24,1, 0x793e40,1, 0x793e60,11, 0x793e94,3, 0x793ea8,4, 0x793ed0,4, 0x793ef8,10, 0x793f24,1, 0x793f40,1, 0x793f60,11, 0x793f94,3, 0x793fa8,4, 0x793fd0,4, 0x793ff8,10, 0x794024,1, 0x794040,1, 0x794060,11, 0x794094,3, 0x7940a8,4, 0x7940d0,4, 0x7940f8,10, 0x794124,1, 0x794140,1, 0x794160,11, 0x794194,3, 0x7941a8,4, 0x7941d0,4, 0x7941f8,10, 0x794224,1, 0x794240,1, 0x794260,11, 0x794294,3, 0x7942a8,4, 0x7942d0,4, 0x7942f8,10, 0x794324,1, 0x794340,1, 0x794360,11, 0x794394,3, 0x7943a8,4, 0x7943d0,4, 0x7943f8,10, 0x794424,1, 0x794440,1, 0x794460,11, 0x794494,3, 0x7944a8,4, 0x7944d0,4, 0x7944f8,10, 0x794524,1, 0x794540,1, 0x794560,11, 0x794594,3, 0x7945a8,4, 0x7945d0,4, 0x7945f8,26, 0x794664,2, 0x794670,3, 0x794680,13, 0x7946c0,3, 0x7946d0,3, 0x7946e0,5, 0x794800,256, 0x794c04,32, 0x794c90,3, 0x795000,256, 0x795404,32, 0x795490,3, 0x795800,1, 0x795808,1, 0x795810,1, 0x795818,1, 0x795820,1, 0x795828,1, 0x795830,1, 0x795838,1, 0x795840,1, 0x795848,1, 0x795850,1, 0x795858,1, 0x795860,1, 0x795868,1, 0x795870,1, 0x795878,1, 0x795880,1, 0x795888,1, 0x795890,1, 0x795898,1, 0x7958a0,1, 0x7958a8,1, 0x7958b0,1, 0x7958b8,1, 0x7958c0,1, 0x7958c8,1, 0x7958d0,1, 0x7958d8,1, 0x7958e0,1, 0x7958e8,1, 0x7958f0,1, 0x7958f8,1, 0x795900,1, 0x795908,1, 0x795910,1, 0x795918,1, 0x795920,1, 0x795928,1, 0x795930,1, 0x795938,1, 0x795940,1, 0x795948,1, 0x795950,1, 0x795958,1, 0x795960,1, 0x795968,1, 0x795970,1, 0x795978,1, 0x795980,1, 0x795988,1, 0x795990,1, 0x795998,1, 0x7959a0,1, 0x7959a8,1, 0x7959b0,1, 0x7959b8,1, 0x7959c0,1, 0x7959c8,1, 0x7959d0,1, 0x7959d8,1, 0x7959e0,1, 0x7959e8,1, 0x7959f0,1, 0x7959f8,1, 0x796920,1, 0x796928,1, 0x796930,1, 0x796938,6, 0x797000,10, 0x797080,3, 0x797100,6, 0x797800,4, 0x7a0000,8, 0x7a0024,1, 0x7a0040,13, 0x7a0080,5, 0x7a00a0,3, 0x7a0100,8, 0x7a0124,1, 0x7a0140,13, 0x7a0180,5, 0x7a01a0,3, 0x7a0200,8, 0x7a0224,1, 0x7a0240,13, 0x7a0280,5, 0x7a02a0,3, 0x7a0300,8, 0x7a0324,1, 0x7a0340,13, 0x7a0380,5, 0x7a03a0,3, 0x7a0400,8, 0x7a0424,1, 0x7a0440,13, 0x7a0480,5, 0x7a04a0,3, 0x7a0500,8, 0x7a0524,1, 0x7a0540,13, 0x7a0580,5, 0x7a05a0,3, 0x7a0600,8, 0x7a0624,1, 0x7a0640,13, 0x7a0680,5, 0x7a06a0,3, 0x7a0700,8, 0x7a0724,1, 0x7a0740,13, 0x7a0780,5, 0x7a07a0,3, 0x7a0800,8, 0x7a0824,1, 0x7a0840,13, 0x7a0880,5, 0x7a08a0,3, 0x7a0900,8, 0x7a0924,1, 0x7a0940,13, 0x7a0980,5, 0x7a09a0,3, 0x7a0a00,8, 0x7a0a24,1, 0x7a0a40,13, 0x7a0a80,5, 0x7a0aa0,3, 0x7a0b00,8, 0x7a0b24,1, 0x7a0b40,13, 0x7a0b80,5, 0x7a0ba0,3, 0x7a0c00,8, 0x7a0c24,1, 0x7a0c40,13, 0x7a0c80,5, 0x7a0ca0,3, 0x7a0d00,8, 0x7a0d24,1, 0x7a0d40,13, 0x7a0d80,5, 0x7a0da0,3, 0x7a0e00,8, 0x7a0e24,1, 0x7a0e40,13, 0x7a0e80,5, 0x7a0ea0,3, 0x7a0f00,8, 0x7a0f24,1, 0x7a0f40,13, 0x7a0f80,5, 0x7a0fa0,3, 0x7a1000,8, 0x7a1024,1, 0x7a1040,13, 0x7a1080,5, 0x7a10a0,3, 0x7a1100,8, 0x7a1124,1, 0x7a1140,13, 0x7a1180,5, 0x7a11a0,3, 0x7a1200,8, 0x7a1224,1, 0x7a1240,13, 0x7a1280,5, 0x7a12a0,3, 0x7a1300,8, 0x7a1324,1, 0x7a1340,13, 0x7a1380,5, 0x7a13a0,3, 0x7a1400,8, 0x7a1424,1, 0x7a1440,13, 0x7a1480,5, 0x7a14a0,3, 0x7a1500,8, 0x7a1524,1, 0x7a1540,13, 0x7a1580,5, 0x7a15a0,3, 0x7a1600,8, 0x7a1624,1, 0x7a1640,13, 0x7a1680,5, 0x7a16a0,3, 0x7a1700,8, 0x7a1724,1, 0x7a1740,13, 0x7a1780,5, 0x7a17a0,3, 0x7a1800,8, 0x7a1824,1, 0x7a1840,13, 0x7a1880,5, 0x7a18a0,3, 0x7a1900,8, 0x7a1924,1, 0x7a1940,13, 0x7a1980,5, 0x7a19a0,3, 0x7a1a00,8, 0x7a1a24,1, 0x7a1a40,13, 0x7a1a80,5, 0x7a1aa0,3, 0x7a1b00,8, 0x7a1b24,1, 0x7a1b40,13, 0x7a1b80,5, 0x7a1ba0,3, 0x7a1c00,8, 0x7a1c24,1, 0x7a1c40,13, 0x7a1c80,5, 0x7a1ca0,3, 0x7a1d00,8, 0x7a1d24,1, 0x7a1d40,13, 0x7a1d80,5, 0x7a1da0,3, 0x7a1e00,8, 0x7a1e24,1, 0x7a1e40,13, 0x7a1e80,5, 0x7a1ea0,3, 0x7a1f00,8, 0x7a1f24,1, 0x7a1f40,13, 0x7a1f80,5, 0x7a1fa0,3, 0x7a2000,8, 0x7a2024,1, 0x7a2040,13, 0x7a2080,5, 0x7a20a0,3, 0x7a2100,2, 0x7a210c,3, 0x7a2120,4, 0x7a2180,2, 0x7a218c,3, 0x7a21a0,4, 0x7a2200,2, 0x7a220c,3, 0x7a2220,4, 0x7a2280,2, 0x7a228c,3, 0x7a22a0,4, 0x7a2300,2, 0x7a230c,3, 0x7a2320,4, 0x7a2380,2, 0x7a238c,3, 0x7a23a0,4, 0x7a2400,2, 0x7a240c,3, 0x7a2420,4, 0x7a2480,2, 0x7a248c,3, 0x7a24a0,4, 0x7a2500,2, 0x7a250c,3, 0x7a2520,4, 0x7a2580,2, 0x7a258c,3, 0x7a25a0,4, 0x7a2600,2, 0x7a260c,3, 0x7a2620,4, 0x7a2680,2, 0x7a268c,3, 0x7a26a0,4, 0x7a2700,2, 0x7a270c,3, 0x7a2720,4, 0x7a2780,2, 0x7a278c,3, 0x7a27a0,4, 0x7a2800,2, 0x7a280c,3, 0x7a2820,4, 0x7a2880,2, 0x7a288c,3, 0x7a28a0,4, 0x7a2900,2, 0x7a290c,3, 0x7a2920,4, 0x7a2980,2, 0x7a298c,3, 0x7a29a0,4, 0x7a2a00,2, 0x7a2a0c,3, 0x7a2a20,4, 0x7a2a80,2, 0x7a2a8c,3, 0x7a2aa0,4, 0x7a2b00,2, 0x7a2b0c,3, 0x7a2b20,4, 0x7a2b80,2, 0x7a2b8c,3, 0x7a2ba0,4, 0x7a2c00,2, 0x7a2c0c,3, 0x7a2c20,4, 0x7a2c80,2, 0x7a2c8c,3, 0x7a2ca0,4, 0x7a2d00,2, 0x7a2d0c,3, 0x7a2d20,4, 0x7a2d80,2, 0x7a2d8c,3, 0x7a2da0,4, 0x7a2e00,2, 0x7a2e0c,3, 0x7a2e20,4, 0x7a2e80,2, 0x7a2e8c,3, 0x7a2ea0,4, 0x7a2f00,2, 0x7a2f0c,3, 0x7a2f20,4, 0x7a2f80,2, 0x7a2f8c,3, 0x7a2fa0,4, 0x7a3000,2, 0x7a300c,3, 0x7a3020,4, 0x7a3080,2, 0x7a308c,3, 0x7a30a0,4, 0x7a3100,2, 0x7a310c,3, 0x7a3120,4, 0x7a3180,19, 0x7a3200,13, 0x7a3240,3, 0x7a3304,33, 0x7a3400,19, 0x7a3450,1, 0x7a3458,1, 0x7a3460,1, 0x7a3468,1, 0x7a3470,1, 0x7a3478,1, 0x7a3480,1, 0x7a3488,1, 0x7a3490,1, 0x7a3498,1, 0x7a34a0,1, 0x7a34a8,1, 0x7a34b0,1, 0x7a34b8,1, 0x7a34c0,1, 0x7a34c8,1, 0x7a34d0,1, 0x7a34d8,1, 0x7a34e0,1, 0x7a34e8,1, 0x7a34f0,1, 0x7a34f8,1, 0x7a3500,1, 0x7a3508,1, 0x7a3510,1, 0x7a3518,1, 0x7a3520,1, 0x7a3528,1, 0x7a3530,1, 0x7a3538,1, 0x7a3540,1, 0x7a3548,1, 0x7a3550,1, 0x7a3558,1, 0x7a3560,6, 0x7a3600,10, 0x7a3680,3, 0x7a36e0,1, 0x7b0000,8, 0x7b0024,1, 0x7b0040,13, 0x7b0080,5, 0x7b00a0,3, 0x7b0100,8, 0x7b0124,1, 0x7b0140,13, 0x7b0180,5, 0x7b01a0,3, 0x7b0200,8, 0x7b0224,1, 0x7b0240,13, 0x7b0280,5, 0x7b02a0,3, 0x7b0300,8, 0x7b0324,1, 0x7b0340,13, 0x7b0380,5, 0x7b03a0,3, 0x7b0400,8, 0x7b0424,1, 0x7b0440,13, 0x7b0480,5, 0x7b04a0,3, 0x7b0500,8, 0x7b0524,1, 0x7b0540,13, 0x7b0580,5, 0x7b05a0,3, 0x7b0600,8, 0x7b0624,1, 0x7b0640,13, 0x7b0680,5, 0x7b06a0,3, 0x7b0700,8, 0x7b0724,1, 0x7b0740,13, 0x7b0780,5, 0x7b07a0,3, 0x7b0800,8, 0x7b0824,1, 0x7b0840,13, 0x7b0880,5, 0x7b08a0,3, 0x7b0900,8, 0x7b0924,1, 0x7b0940,13, 0x7b0980,5, 0x7b09a0,3, 0x7b0a00,8, 0x7b0a24,1, 0x7b0a40,13, 0x7b0a80,5, 0x7b0aa0,3, 0x7b0b00,8, 0x7b0b24,1, 0x7b0b40,13, 0x7b0b80,5, 0x7b0ba0,3, 0x7b0c00,8, 0x7b0c24,1, 0x7b0c40,13, 0x7b0c80,5, 0x7b0ca0,3, 0x7b0d00,8, 0x7b0d24,1, 0x7b0d40,13, 0x7b0d80,5, 0x7b0da0,3, 0x7b0e00,8, 0x7b0e24,1, 0x7b0e40,13, 0x7b0e80,5, 0x7b0ea0,3, 0x7b0f00,8, 0x7b0f24,1, 0x7b0f40,13, 0x7b0f80,5, 0x7b0fa0,3, 0x7b1000,8, 0x7b1024,1, 0x7b1040,13, 0x7b1080,5, 0x7b10a0,3, 0x7b1100,8, 0x7b1124,1, 0x7b1140,13, 0x7b1180,5, 0x7b11a0,3, 0x7b1200,8, 0x7b1224,1, 0x7b1240,13, 0x7b1280,5, 0x7b12a0,3, 0x7b1300,8, 0x7b1324,1, 0x7b1340,13, 0x7b1380,5, 0x7b13a0,3, 0x7b1400,8, 0x7b1424,1, 0x7b1440,13, 0x7b1480,5, 0x7b14a0,3, 0x7b1500,8, 0x7b1524,1, 0x7b1540,13, 0x7b1580,5, 0x7b15a0,3, 0x7b1600,8, 0x7b1624,1, 0x7b1640,13, 0x7b1680,5, 0x7b16a0,3, 0x7b1700,8, 0x7b1724,1, 0x7b1740,13, 0x7b1780,5, 0x7b17a0,3, 0x7b1800,8, 0x7b1824,1, 0x7b1840,13, 0x7b1880,5, 0x7b18a0,3, 0x7b1900,8, 0x7b1924,1, 0x7b1940,13, 0x7b1980,5, 0x7b19a0,3, 0x7b1a00,8, 0x7b1a24,1, 0x7b1a40,13, 0x7b1a80,5, 0x7b1aa0,3, 0x7b1b00,8, 0x7b1b24,1, 0x7b1b40,13, 0x7b1b80,5, 0x7b1ba0,3, 0x7b1c00,8, 0x7b1c24,1, 0x7b1c40,13, 0x7b1c80,5, 0x7b1ca0,3, 0x7b1d00,8, 0x7b1d24,1, 0x7b1d40,13, 0x7b1d80,5, 0x7b1da0,3, 0x7b1e00,8, 0x7b1e24,1, 0x7b1e40,13, 0x7b1e80,5, 0x7b1ea0,3, 0x7b1f00,8, 0x7b1f24,1, 0x7b1f40,13, 0x7b1f80,5, 0x7b1fa0,3, 0x7b2000,8, 0x7b2024,1, 0x7b2040,13, 0x7b2080,5, 0x7b20a0,3, 0x7b2100,2, 0x7b210c,3, 0x7b2120,4, 0x7b2180,2, 0x7b218c,3, 0x7b21a0,4, 0x7b2200,2, 0x7b220c,3, 0x7b2220,4, 0x7b2280,2, 0x7b228c,3, 0x7b22a0,4, 0x7b2300,2, 0x7b230c,3, 0x7b2320,4, 0x7b2380,2, 0x7b238c,3, 0x7b23a0,4, 0x7b2400,2, 0x7b240c,3, 0x7b2420,4, 0x7b2480,2, 0x7b248c,3, 0x7b24a0,4, 0x7b2500,2, 0x7b250c,3, 0x7b2520,4, 0x7b2580,2, 0x7b258c,3, 0x7b25a0,4, 0x7b2600,2, 0x7b260c,3, 0x7b2620,4, 0x7b2680,2, 0x7b268c,3, 0x7b26a0,4, 0x7b2700,2, 0x7b270c,3, 0x7b2720,4, 0x7b2780,2, 0x7b278c,3, 0x7b27a0,4, 0x7b2800,2, 0x7b280c,3, 0x7b2820,4, 0x7b2880,2, 0x7b288c,3, 0x7b28a0,4, 0x7b2900,2, 0x7b290c,3, 0x7b2920,4, 0x7b2980,2, 0x7b298c,3, 0x7b29a0,4, 0x7b2a00,2, 0x7b2a0c,3, 0x7b2a20,4, 0x7b2a80,2, 0x7b2a8c,3, 0x7b2aa0,4, 0x7b2b00,2, 0x7b2b0c,3, 0x7b2b20,4, 0x7b2b80,2, 0x7b2b8c,3, 0x7b2ba0,4, 0x7b2c00,2, 0x7b2c0c,3, 0x7b2c20,4, 0x7b2c80,2, 0x7b2c8c,3, 0x7b2ca0,4, 0x7b2d00,2, 0x7b2d0c,3, 0x7b2d20,4, 0x7b2d80,2, 0x7b2d8c,3, 0x7b2da0,4, 0x7b2e00,2, 0x7b2e0c,3, 0x7b2e20,4, 0x7b2e80,2, 0x7b2e8c,3, 0x7b2ea0,4, 0x7b2f00,2, 0x7b2f0c,3, 0x7b2f20,4, 0x7b2f80,2, 0x7b2f8c,3, 0x7b2fa0,4, 0x7b3000,2, 0x7b300c,3, 0x7b3020,4, 0x7b3080,2, 0x7b308c,3, 0x7b30a0,4, 0x7b3100,2, 0x7b310c,3, 0x7b3120,4, 0x7b3180,19, 0x7b3200,13, 0x7b3240,3, 0x7b3304,33, 0x7b3400,19, 0x7b3450,1, 0x7b3458,1, 0x7b3460,1, 0x7b3468,1, 0x7b3470,1, 0x7b3478,1, 0x7b3480,1, 0x7b3488,1, 0x7b3490,1, 0x7b3498,1, 0x7b34a0,1, 0x7b34a8,1, 0x7b34b0,1, 0x7b34b8,1, 0x7b34c0,1, 0x7b34c8,1, 0x7b34d0,1, 0x7b34d8,1, 0x7b34e0,1, 0x7b34e8,1, 0x7b34f0,1, 0x7b34f8,1, 0x7b3500,1, 0x7b3508,1, 0x7b3510,1, 0x7b3518,1, 0x7b3520,1, 0x7b3528,1, 0x7b3530,1, 0x7b3538,1, 0x7b3540,1, 0x7b3548,1, 0x7b3550,1, 0x7b3558,1, 0x7b3560,6, 0x7b3600,10, 0x7b3680,3, 0x7b36e0,1, 0x800000,1, 0x80000c,5, 0x800044,1, 0x800054,5, 0x800200,128, 0x800404,1, 0x800428,54, 0x800600,32, 0x800704,1, 0x800800,1, 0x800900,1, 0x800910,2, 0x800920,3, 0x800980,10, 0x800a00,19, 0x800b00,1, 0xc00000,11, 0xc00040,16, 0xc00084,5, 0xc00200,7, 0xc00220,6, 0xc00240,7, 0xc00260,6, 0xc00280,6, 0xc002a0,2, 0xc002ac,2, 0xc002c0,7, 0xc002e0,7, 0xc00300,2, 0xc0030c,2, 0xc00320,6, 0xc00400,2, 0xc01000,19, 0xc02104,23, 0xc02180,7, 0xc021a0,6, 0xc021c0,7, 0xc021e0,6, 0xc02200,4, 0xc02220,4, 0xc02240,11, 0xc02270,32, 0xc02300,24, 0xc02380,20, 0xc02400,61, 0xc02500,25, 0xc02568,4, 0xc02580,2, 0xc025a0,1, 0xc025c0,11, 0xc02600,9, 0xc02640,3, 0xc02650,3, 0xc02664,3, 0xc02680,22, 0xc02800,11, 0xc03000,536, 0xc04104,23, 0xc04180,7, 0xc041a0,6, 0xc041c0,7, 0xc041e0,6, 0xc04200,4, 0xc04220,4, 0xc04240,11, 0xc04270,32, 0xc04300,24, 0xc04380,20, 0xc04400,61, 0xc04500,25, 0xc04568,4, 0xc04580,2, 0xc045a0,1, 0xc045c0,11, 0xc04600,9, 0xc04640,3, 0xc04650,3, 0xc04664,3, 0xc04680,22, 0xc04800,11, 0xc05000,536, 0xc0a000,7, 0xc0a048,8, 0xc0a080,8, 0xc0a100,7, 0xc0a148,8, 0xc0a180,8, 0xc10000,11, 0xc10040,16, 0xc10084,5, 0xc10200,7, 0xc10220,6, 0xc10240,7, 0xc10260,6, 0xc10280,6, 0xc102a0,2, 0xc102ac,2, 0xc102c0,7, 0xc102e0,7, 0xc10300,2, 0xc1030c,2, 0xc10320,6, 0xc10400,2, 0xc11000,19, 0xc12104,23, 0xc12180,7, 0xc121a0,6, 0xc121c0,7, 0xc121e0,6, 0xc12200,4, 0xc12220,4, 0xc12240,11, 0xc12270,32, 0xc12300,24, 0xc12380,20, 0xc12400,61, 0xc12500,25, 0xc12568,4, 0xc12580,2, 0xc125a0,1, 0xc125c0,11, 0xc12600,9, 0xc12640,3, 0xc12650,3, 0xc12664,3, 0xc12680,22, 0xc12800,11, 0xc13000,536, 0xc14104,23, 0xc14180,7, 0xc141a0,6, 0xc141c0,7, 0xc141e0,6, 0xc14200,4, 0xc14220,4, 0xc14240,11, 0xc14270,32, 0xc14300,24, 0xc14380,20, 0xc14400,61, 0xc14500,25, 0xc14568,4, 0xc14580,2, 0xc145a0,1, 0xc145c0,11, 0xc14600,9, 0xc14640,3, 0xc14650,3, 0xc14664,3, 0xc14680,22, 0xc14800,11, 0xc15000,536, 0xc1a000,7, 0xc1a048,8, 0xc1a080,8, 0xc1a100,7, 0xc1a148,8, 0xc1a180,8, 0xc20400,4, 0xc20440,4, 0xc205c0,1, 0xc20600,8, 0xc20800,18, 0xc20880,13, 0xc208f0,3, 0xc20900,18, 0xc20980,13, 0xc209f0,3, 0xc20e00,4, 0xc20e20,4, 0xc20e80,16, 0xc20f00,1, 0xc20f20,1, 0xc21020,2, 0xc21208,6, 0xc21228,10, 0xc21288,6, 0xc212a8,10, 0xc21600,32, 0xc218c0,8, 0xc21900,24, 0xc219b0,4, 0xc21aa0,2, 0xc21ac0,4, 0xc22200,19, 0xc22280,19, 0xc22400,14, 0xc2243c,9, 0xc22464,14, 0xc224a0,2, 0xc224ac,2, 0xc22500,14, 0xc2253c,9, 0xc22564,14, 0xc225a0,2, 0xc225ac,2, 0xc22800,19, 0xc22880,19, 0xc22a10,2, 0xc22a1c,1, 0xc22a50,2, 0xc22a5c,1, 0xc22c00,7, 0xc22c20,1, 0xc22c54,18, 0xc22ca0,1, 0xc22cd4,11, 0xc22e00,1, 0xc22e08,6, 0xc23180,3, 0xc24400,4, 0xc24440,4, 0xc245c0,1, 0xc24600,8, 0xc24800,18, 0xc24880,13, 0xc248f0,3, 0xc24900,18, 0xc24980,13, 0xc249f0,3, 0xc24e00,4, 0xc24e20,4, 0xc24e80,16, 0xc24f00,1, 0xc24f20,1, 0xc25020,2, 0xc25208,6, 0xc25228,10, 0xc25288,6, 0xc252a8,10, 0xc25600,32, 0xc258c0,8, 0xc25900,24, 0xc259b0,4, 0xc25aa0,2, 0xc25ac0,4, 0xc26200,19, 0xc26280,19, 0xc26400,14, 0xc2643c,9, 0xc26464,14, 0xc264a0,2, 0xc264ac,2, 0xc26500,14, 0xc2653c,9, 0xc26564,14, 0xc265a0,2, 0xc265ac,2, 0xc26800,19, 0xc26880,19, 0xc26a10,2, 0xc26a1c,1, 0xc26a50,2, 0xc26a5c,1, 0xc26c00,7, 0xc26c20,1, 0xc26c54,18, 0xc26ca0,1, 0xc26cd4,11, 0xc26e00,1, 0xc26e08,6, 0xc27180,3, 0xc29000,13, 0xc2e000,19, 0xc2ea00,10, 0xc2ea80,3, 0xc2f000,1, 0xc2f008,5, 0xc2f038,1, 0xc2f044,1, 0xc2f050,2, 0xc2f060,8, 0xc2f140,19, 0xc2f190,4, 0xc30000,2, 0xc3000c,2, 0xc30040,7, 0xc30100,3, 0xc30110,3, 0xc30120,5, 0xc30200,6, 0xc30240,5, 0xc30400,2, 0xc3040c,2, 0xc30440,7, 0xc30500,3, 0xc30510,3, 0xc30520,5, 0xc30600,6, 0xc30640,5, 0xc30800,2, 0xc3080c,2, 0xc30840,7, 0xc30900,3, 0xc30910,3, 0xc30920,5, 0xc30a00,6, 0xc30a40,5, 0xc30c00,2, 0xc30c0c,2, 0xc30c40,7, 0xc30d00,3, 0xc30d10,3, 0xc30d20,5, 0xc30e00,6, 0xc30e40,5, 0xc31000,2, 0xc3100c,2, 0xc31040,7, 0xc31100,3, 0xc31110,3, 0xc31120,5, 0xc31200,6, 0xc31240,5, 0xc31400,2, 0xc3140c,2, 0xc31440,7, 0xc31500,3, 0xc31510,3, 0xc31520,5, 0xc31600,6, 0xc31640,5, 0xc31800,2, 0xc3180c,2, 0xc31840,7, 0xc31900,3, 0xc31910,3, 0xc31920,5, 0xc31a00,6, 0xc31a40,5, 0xc31c00,2, 0xc31c0c,2, 0xc31c40,7, 0xc31d00,3, 0xc31d10,3, 0xc31d20,5, 0xc31e00,6, 0xc31e40,5, 0xc32000,5, 0xc32040,9, 0xc32100,3, 0xc32200,1, 0xc32210,1, 0xc32220,1, 0xc32230,1, 0xc32240,1, 0xc32300,3, 0xc32314,1, 0xc32320,4, 0xc32400,5, 0xc32440,5, 0xc33000,80, 0xc33200,1, 0xc38000,7, 0xc38030,2, 0xc38040,7, 0xc38070,2, 0xc38100,2, 0xc38120,2, 0xc38140,2, 0xc38160,2, 0xc38180,9, 0xc38200,7, 0xc38230,2, 0xc38240,7, 0xc38270,2, 0xc38300,2, 0xc38320,2, 0xc38340,2, 0xc38360,2, 0xc38380,9, 0xc38400,11, 0xc38500,11, 0xc39000,3, 0xc39010,2, 0xc3901c,5, 0xc39040,8, 0xc39080,3, 0xc39090,2, 0xc3909c,5, 0xc390c0,8, 0xc39100,3, 0xc39110,2, 0xc3911c,5, 0xc39140,8, 0xc39180,3, 0xc39190,2, 0xc3919c,5, 0xc391c0,8, 0xc39200,7, 0xc39220,12, 0xc39280,7, 0xc392a0,12, 0xc39300,3, 0xc39310,1, 0xc39400,3, 0xc39410,2, 0xc3941c,5, 0xc39440,8, 0xc39480,3, 0xc39490,2, 0xc3949c,5, 0xc394c0,8, 0xc39500,3, 0xc39510,2, 0xc3951c,5, 0xc39540,8, 0xc39580,3, 0xc39590,2, 0xc3959c,5, 0xc395c0,8, 0xc39600,7, 0xc39620,12, 0xc39680,7, 0xc396a0,12, 0xc39700,3, 0xc39710,1, 0xc39804,1, 0xc39824,21, 0xc39880,16, 0xc39900,5, 0xc39920,11, 0xc39950,9, 0xc39980,22, 0xc39a00,22, 0xc39a80,22, 0xc39b00,22, 0xc39b80,22, 0xc39c00,22, 0xc39c80,22, 0xc39d00,22, 0xc39d80,3, 0xc40000,5, 0xc40018,5, 0xc40030,3, 0xc40044,3, 0xc40100,58, 0xc401f0,3, 0xc40280,3, 0xc40400,5, 0xc40418,5, 0xc40430,3, 0xc40444,3, 0xc40500,58, 0xc405f0,3, 0xc40680,3, 0xc41018,2, 0xc41100,2, 0xc41110,10, 0xc41140,2, 0xc41150,10, 0xc41208,1, 0xc41220,12, 0xc41280,1, 0xc41288,2, 0xc41400,4, 0xc42000,5, 0xc42018,5, 0xc42030,3, 0xc42044,3, 0xc42100,58, 0xc421f0,3, 0xc42280,3, 0xc42400,5, 0xc42418,5, 0xc42430,3, 0xc42444,3, 0xc42500,58, 0xc425f0,3, 0xc42680,3, 0xc43018,2, 0xc43100,2, 0xc43110,10, 0xc43140,2, 0xc43150,10, 0xc43208,1, 0xc43220,12, 0xc43280,1, 0xc43288,2, 0xc43400,4, 0xc44000,2, 0xc4400c,1, 0xc44030,3, 0xc44040,2, 0xc4404c,1, 0xc44070,3, 0xc44100,2, 0xc4410c,1, 0xc44130,3, 0xc44140,2, 0xc4414c,1, 0xc44170,3, 0xc44200,15, 0xc44280,15, 0xc44300,15, 0xc44380,15, 0xc44400,15, 0xc44480,15, 0xc44500,15, 0xc44580,15, 0xc44604,10, 0xc44700,2, 0xc4470c,7, 0xc44740,1, 0xc44770,1, 0xc447c0,2, 0xc447d0,4, 0xc45000,3, 0xc45010,1, 0xc4501c,3, 0xc45104,1, 0xc45110,4, 0xc45124,1, 0xc45130,4, 0xc45144,1, 0xc45150,4, 0xc45164,1, 0xc45170,5, 0xc45190,4, 0xc45a00,4, 0xc45c00,129, 0xc46000,37, 0xc46098,1, 0xc46100,37, 0xc46198,1, 0xc46200,37, 0xc46298,1, 0xc46300,37, 0xc46398,1, 0xc46400,37, 0xc46498,1, 0xc46500,37, 0xc46598,1, 0xc46600,37, 0xc46698,1, 0xc46700,37, 0xc46798,1, 0xc4c000,91, 0xc4c400,4, 0xc4c440,15, 0xc4c480,4, 0xc4c4c0,15, 0xc4c500,4, 0xc4c540,15, 0xc4c580,4, 0xc4c5c0,15, 0xc4c600,4, 0xc4c640,10, 0xc4c680,4, 0xc4c6c0,10, 0xc4c800,4, 0xc4c840,33, 0xc4ca00,13, 0xc4ca80,1, 0xc4ca88,8, 0xc4cac0,6, 0xc4cae0,1, 0xc4cae8,2, 0xc4cb04,14, 0xc4cc00,4, 0xc4ccc8,1, 0xc4cfcc,3, 0xc4cfe0,99, 0xc4d400,4, 0xc4d440,15, 0xc4d480,4, 0xc4d4c0,15, 0xc4d500,4, 0xc4d540,15, 0xc4d580,4, 0xc4d5c0,15, 0xc4d600,4, 0xc4d640,10, 0xc4d680,4, 0xc4d6c0,10, 0xc4d800,4, 0xc4d840,33, 0xc4da00,13, 0xc4da80,1, 0xc4da88,8, 0xc4dac0,6, 0xc4dae0,1, 0xc4dae8,2, 0xc4db04,14, 0xc4dc00,4, 0xc4dcc8,1, 0xc4dfcc,3, 0xc4dfe0,27, 0xc4f000,19, 0xc4fa00,10, 0xc4fa80,3, 0xc4fb00,6, 0xc50000,51, 0xc50a00,10, 0xc50a80,3, 0xc51000,2, 0xc5100c,4, 0xc51028,3, 0xc51038,4, 0xc51050,2, 0xc51080,4, 0xc51098,7, 0xc51120,4, 0xc51200,4, 0xc51214,7, 0xc51234,3, 0xc51280,8, 0xc512c0,5, 0xc51300,2, 0xc5130c,3, 0xc51400,24, 0xc51464,2, 0xc51470,3, 0xc51500,25, 0xc515c0,8, 0xc515e8,5, 0xc51600,5, 0xc51618,1, 0xc51620,1, 0xc51628,1, 0xc51630,2, 0xc51640,2, 0xc51650,2, 0xc51690,4, 0xc51740,2, 0xc51760,6, 0xc51780,6, 0xc517a0,6, 0xc517c0,6, 0xc517e0,1, 0xc51800,2, 0xc5180c,4, 0xc51828,3, 0xc51838,4, 0xc51850,2, 0xc51880,4, 0xc51898,7, 0xc51920,4, 0xc51a00,4, 0xc51a14,7, 0xc51a34,3, 0xc51a80,8, 0xc51ac0,5, 0xc51b00,2, 0xc51b0c,3, 0xc51c00,24, 0xc51c64,2, 0xc51c70,3, 0xc51d00,25, 0xc51dc0,8, 0xc51de8,5, 0xc51e00,5, 0xc51e18,1, 0xc51e20,1, 0xc51e28,1, 0xc51e30,2, 0xc51e40,2, 0xc51e50,2, 0xc51e90,4, 0xc51f40,2, 0xc51f60,6, 0xc51f80,6, 0xc51fa0,6, 0xc51fc0,6, 0xc51fe0,1, 0xc52000,19, 0xc52080,2, 0xc520b0,2, 0xc520c0,2, 0xc60000,11, 0xc60040,16, 0xc60084,5, 0xc60200,7, 0xc60220,6, 0xc60240,7, 0xc60260,6, 0xc60280,6, 0xc602a0,2, 0xc602ac,2, 0xc602c0,7, 0xc602e0,7, 0xc60300,2, 0xc6030c,2, 0xc60320,6, 0xc60400,2, 0xc61000,19, 0xc62104,23, 0xc62180,7, 0xc621a0,6, 0xc621c0,7, 0xc621e0,6, 0xc62200,4, 0xc62220,4, 0xc62240,11, 0xc62270,32, 0xc62300,24, 0xc62380,20, 0xc62400,61, 0xc62500,25, 0xc62568,4, 0xc62580,2, 0xc625a0,1, 0xc625c0,11, 0xc62600,9, 0xc62640,3, 0xc62650,3, 0xc62664,3, 0xc62680,22, 0xc62800,11, 0xc63000,536, 0xc64104,23, 0xc64180,7, 0xc641a0,6, 0xc641c0,7, 0xc641e0,6, 0xc64200,4, 0xc64220,4, 0xc64240,11, 0xc64270,32, 0xc64300,24, 0xc64380,20, 0xc64400,61, 0xc64500,25, 0xc64568,4, 0xc64580,2, 0xc645a0,1, 0xc645c0,11, 0xc64600,9, 0xc64640,3, 0xc64650,3, 0xc64664,3, 0xc64680,22, 0xc64800,11, 0xc65000,536, 0xc6a000,7, 0xc6a048,8, 0xc6a080,8, 0xc6a100,7, 0xc6a148,8, 0xc6a180,8, 0xc70000,11, 0xc70040,16, 0xc70084,5, 0xc70200,7, 0xc70220,6, 0xc70240,7, 0xc70260,6, 0xc70280,6, 0xc702a0,2, 0xc702ac,2, 0xc702c0,7, 0xc702e0,7, 0xc70300,2, 0xc7030c,2, 0xc70320,6, 0xc70400,2, 0xc71000,19, 0xc72104,23, 0xc72180,7, 0xc721a0,6, 0xc721c0,7, 0xc721e0,6, 0xc72200,4, 0xc72220,4, 0xc72240,11, 0xc72270,32, 0xc72300,24, 0xc72380,20, 0xc72400,61, 0xc72500,25, 0xc72568,4, 0xc72580,2, 0xc725a0,1, 0xc725c0,11, 0xc72600,9, 0xc72640,3, 0xc72650,3, 0xc72664,3, 0xc72680,22, 0xc72800,11, 0xc73000,536, 0xc74104,23, 0xc74180,7, 0xc741a0,6, 0xc741c0,7, 0xc741e0,6, 0xc74200,4, 0xc74220,4, 0xc74240,11, 0xc74270,32, 0xc74300,24, 0xc74380,20, 0xc74400,61, 0xc74500,25, 0xc74568,4, 0xc74580,2, 0xc745a0,1, 0xc745c0,11, 0xc74600,9, 0xc74640,3, 0xc74650,3, 0xc74664,3, 0xc74680,22, 0xc74800,11, 0xc75000,536, 0xc7a000,7, 0xc7a048,8, 0xc7a080,8, 0xc7a100,7, 0xc7a148,8, 0xc7a180,8, 0xc80400,4, 0xc80440,4, 0xc805c0,1, 0xc80600,8, 0xc80800,18, 0xc80880,13, 0xc808f0,3, 0xc80900,18, 0xc80980,13, 0xc809f0,3, 0xc80e00,4, 0xc80e20,4, 0xc80e80,16, 0xc80f00,1, 0xc80f20,1, 0xc81020,2, 0xc81208,6, 0xc81228,10, 0xc81288,6, 0xc812a8,10, 0xc81600,32, 0xc818c0,8, 0xc81900,24, 0xc819b0,4, 0xc81aa0,2, 0xc81ac0,4, 0xc82200,19, 0xc82280,19, 0xc82400,14, 0xc8243c,9, 0xc82464,14, 0xc824a0,2, 0xc824ac,2, 0xc82500,14, 0xc8253c,9, 0xc82564,14, 0xc825a0,2, 0xc825ac,2, 0xc82800,19, 0xc82880,19, 0xc82a10,2, 0xc82a1c,1, 0xc82a50,2, 0xc82a5c,1, 0xc82c00,7, 0xc82c20,1, 0xc82c54,18, 0xc82ca0,1, 0xc82cd4,11, 0xc82e00,1, 0xc82e08,6, 0xc83180,3, 0xc84400,4, 0xc84440,4, 0xc845c0,1, 0xc84600,8, 0xc84800,18, 0xc84880,13, 0xc848f0,3, 0xc84900,18, 0xc84980,13, 0xc849f0,3, 0xc84e00,4, 0xc84e20,4, 0xc84e80,16, 0xc84f00,1, 0xc84f20,1, 0xc85020,2, 0xc85208,6, 0xc85228,10, 0xc85288,6, 0xc852a8,10, 0xc85600,32, 0xc858c0,8, 0xc85900,24, 0xc859b0,4, 0xc85aa0,2, 0xc85ac0,4, 0xc86200,19, 0xc86280,19, 0xc86400,14, 0xc8643c,9, 0xc86464,14, 0xc864a0,2, 0xc864ac,2, 0xc86500,14, 0xc8653c,9, 0xc86564,14, 0xc865a0,2, 0xc865ac,2, 0xc86800,19, 0xc86880,19, 0xc86a10,2, 0xc86a1c,1, 0xc86a50,2, 0xc86a5c,1, 0xc86c00,7, 0xc86c20,1, 0xc86c54,18, 0xc86ca0,1, 0xc86cd4,11, 0xc86e00,1, 0xc86e08,6, 0xc87180,3, 0xc89000,13, 0xc8e000,19, 0xc8ea00,10, 0xc8ea80,3, 0xc8f000,1, 0xc8f008,5, 0xc8f038,1, 0xc8f044,1, 0xc8f050,2, 0xc8f060,8, 0xc8f140,19, 0xc8f190,4, 0xc90000,2, 0xc9000c,2, 0xc90040,7, 0xc90100,3, 0xc90110,3, 0xc90120,5, 0xc90200,6, 0xc90240,5, 0xc90400,2, 0xc9040c,2, 0xc90440,7, 0xc90500,3, 0xc90510,3, 0xc90520,5, 0xc90600,6, 0xc90640,5, 0xc90800,2, 0xc9080c,2, 0xc90840,7, 0xc90900,3, 0xc90910,3, 0xc90920,5, 0xc90a00,6, 0xc90a40,5, 0xc90c00,2, 0xc90c0c,2, 0xc90c40,7, 0xc90d00,3, 0xc90d10,3, 0xc90d20,5, 0xc90e00,6, 0xc90e40,5, 0xc91000,2, 0xc9100c,2, 0xc91040,7, 0xc91100,3, 0xc91110,3, 0xc91120,5, 0xc91200,6, 0xc91240,5, 0xc91400,2, 0xc9140c,2, 0xc91440,7, 0xc91500,3, 0xc91510,3, 0xc91520,5, 0xc91600,6, 0xc91640,5, 0xc91800,2, 0xc9180c,2, 0xc91840,7, 0xc91900,3, 0xc91910,3, 0xc91920,5, 0xc91a00,6, 0xc91a40,5, 0xc91c00,2, 0xc91c0c,2, 0xc91c40,7, 0xc91d00,3, 0xc91d10,3, 0xc91d20,5, 0xc91e00,6, 0xc91e40,5, 0xc92000,5, 0xc92040,9, 0xc92100,3, 0xc92200,1, 0xc92210,1, 0xc92220,1, 0xc92230,1, 0xc92240,1, 0xc92300,3, 0xc92314,1, 0xc92320,4, 0xc92400,5, 0xc92440,5, 0xc93000,80, 0xc93200,1, 0xc98000,7, 0xc98030,2, 0xc98040,7, 0xc98070,2, 0xc98100,2, 0xc98120,2, 0xc98140,2, 0xc98160,2, 0xc98180,9, 0xc98200,7, 0xc98230,2, 0xc98240,7, 0xc98270,2, 0xc98300,2, 0xc98320,2, 0xc98340,2, 0xc98360,2, 0xc98380,9, 0xc98400,11, 0xc98500,11, 0xc99000,3, 0xc99010,2, 0xc9901c,5, 0xc99040,8, 0xc99080,3, 0xc99090,2, 0xc9909c,5, 0xc990c0,8, 0xc99100,3, 0xc99110,2, 0xc9911c,5, 0xc99140,8, 0xc99180,3, 0xc99190,2, 0xc9919c,5, 0xc991c0,8, 0xc99200,7, 0xc99220,12, 0xc99280,7, 0xc992a0,12, 0xc99300,3, 0xc99310,1, 0xc99400,3, 0xc99410,2, 0xc9941c,5, 0xc99440,8, 0xc99480,3, 0xc99490,2, 0xc9949c,5, 0xc994c0,8, 0xc99500,3, 0xc99510,2, 0xc9951c,5, 0xc99540,8, 0xc99580,3, 0xc99590,2, 0xc9959c,5, 0xc995c0,8, 0xc99600,7, 0xc99620,12, 0xc99680,7, 0xc996a0,12, 0xc99700,3, 0xc99710,1, 0xc99804,1, 0xc99824,21, 0xc99880,16, 0xc99900,5, 0xc99920,11, 0xc99950,9, 0xc99980,22, 0xc99a00,22, 0xc99a80,22, 0xc99b00,22, 0xc99b80,22, 0xc99c00,22, 0xc99c80,22, 0xc99d00,22, 0xc99d80,3, 0xca0000,5, 0xca0018,5, 0xca0030,3, 0xca0044,3, 0xca0100,58, 0xca01f0,3, 0xca0280,3, 0xca0400,5, 0xca0418,5, 0xca0430,3, 0xca0444,3, 0xca0500,58, 0xca05f0,3, 0xca0680,3, 0xca1018,2, 0xca1100,2, 0xca1110,10, 0xca1140,2, 0xca1150,10, 0xca1208,1, 0xca1220,12, 0xca1280,1, 0xca1288,2, 0xca1400,4, 0xca2000,5, 0xca2018,5, 0xca2030,3, 0xca2044,3, 0xca2100,58, 0xca21f0,3, 0xca2280,3, 0xca2400,5, 0xca2418,5, 0xca2430,3, 0xca2444,3, 0xca2500,58, 0xca25f0,3, 0xca2680,3, 0xca3018,2, 0xca3100,2, 0xca3110,10, 0xca3140,2, 0xca3150,10, 0xca3208,1, 0xca3220,12, 0xca3280,1, 0xca3288,2, 0xca3400,4, 0xca4000,2, 0xca400c,1, 0xca4030,3, 0xca4040,2, 0xca404c,1, 0xca4070,3, 0xca4100,2, 0xca410c,1, 0xca4130,3, 0xca4140,2, 0xca414c,1, 0xca4170,3, 0xca4200,15, 0xca4280,15, 0xca4300,15, 0xca4380,15, 0xca4400,15, 0xca4480,15, 0xca4500,15, 0xca4580,15, 0xca4604,10, 0xca4700,2, 0xca470c,7, 0xca4740,1, 0xca4770,1, 0xca47c0,2, 0xca47d0,4, 0xca5000,3, 0xca5010,1, 0xca501c,3, 0xca5104,1, 0xca5110,4, 0xca5124,1, 0xca5130,4, 0xca5144,1, 0xca5150,4, 0xca5164,1, 0xca5170,5, 0xca5190,4, 0xca5a00,4, 0xca5c00,129, 0xca6000,37, 0xca6098,1, 0xca6100,37, 0xca6198,1, 0xca6200,37, 0xca6298,1, 0xca6300,37, 0xca6398,1, 0xca6400,37, 0xca6498,1, 0xca6500,37, 0xca6598,1, 0xca6600,37, 0xca6698,1, 0xca6700,37, 0xca6798,1, 0xcac000,91, 0xcac400,4, 0xcac440,15, 0xcac480,4, 0xcac4c0,15, 0xcac500,4, 0xcac540,15, 0xcac580,4, 0xcac5c0,15, 0xcac600,4, 0xcac640,10, 0xcac680,4, 0xcac6c0,10, 0xcac800,4, 0xcac840,33, 0xcaca00,13, 0xcaca80,1, 0xcaca88,8, 0xcacac0,6, 0xcacae0,1, 0xcacae8,2, 0xcacb04,14, 0xcacc00,4, 0xcaccc8,1, 0xcacfcc,3, 0xcacfe0,99, 0xcad400,4, 0xcad440,15, 0xcad480,4, 0xcad4c0,15, 0xcad500,4, 0xcad540,15, 0xcad580,4, 0xcad5c0,15, 0xcad600,4, 0xcad640,10, 0xcad680,4, 0xcad6c0,10, 0xcad800,4, 0xcad840,33, 0xcada00,13, 0xcada80,1, 0xcada88,8, 0xcadac0,6, 0xcadae0,1, 0xcadae8,2, 0xcadb04,14, 0xcadc00,4, 0xcadcc8,1, 0xcadfcc,3, 0xcadfe0,27, 0xcaf000,19, 0xcafa00,10, 0xcafa80,3, 0xcafb00,6, 0xcb0000,51, 0xcb0a00,10, 0xcb0a80,3, 0xcb1000,2, 0xcb100c,4, 0xcb1028,3, 0xcb1038,4, 0xcb1050,2, 0xcb1080,4, 0xcb1098,7, 0xcb1120,4, 0xcb1200,4, 0xcb1214,7, 0xcb1234,3, 0xcb1280,8, 0xcb12c0,5, 0xcb1300,2, 0xcb130c,3, 0xcb1400,24, 0xcb1464,2, 0xcb1470,3, 0xcb1500,25, 0xcb15c0,8, 0xcb15e8,5, 0xcb1600,5, 0xcb1618,1, 0xcb1620,1, 0xcb1628,1, 0xcb1630,2, 0xcb1640,2, 0xcb1650,2, 0xcb1690,4, 0xcb1740,2, 0xcb1760,6, 0xcb1780,6, 0xcb17a0,6, 0xcb17c0,6, 0xcb17e0,1, 0xcb1800,2, 0xcb180c,4, 0xcb1828,3, 0xcb1838,4, 0xcb1850,2, 0xcb1880,4, 0xcb1898,7, 0xcb1920,4, 0xcb1a00,4, 0xcb1a14,7, 0xcb1a34,3, 0xcb1a80,8, 0xcb1ac0,5, 0xcb1b00,2, 0xcb1b0c,3, 0xcb1c00,24, 0xcb1c64,2, 0xcb1c70,3, 0xcb1d00,25, 0xcb1dc0,8, 0xcb1de8,5, 0xcb1e00,5, 0xcb1e18,1, 0xcb1e20,1, 0xcb1e28,1, 0xcb1e30,2, 0xcb1e40,2, 0xcb1e50,2, 0xcb1e90,4, 0xcb1f40,2, 0xcb1f60,6, 0xcb1f80,6, 0xcb1fa0,6, 0xcb1fc0,6, 0xcb1fe0,1, 0xcb2000,19, 0xcb2080,2, 0xcb20b0,2, 0xcb20c0,2, 0xcc0000,11, 0xcc0040,16, 0xcc0084,5, 0xcc0200,7, 0xcc0220,6, 0xcc0240,7, 0xcc0260,6, 0xcc0280,6, 0xcc02a0,2, 0xcc02ac,2, 0xcc02c0,7, 0xcc02e0,7, 0xcc0300,2, 0xcc030c,2, 0xcc0320,6, 0xcc0400,2, 0xcc1000,19, 0xcc2104,23, 0xcc2180,7, 0xcc21a0,6, 0xcc21c0,7, 0xcc21e0,6, 0xcc2200,4, 0xcc2220,4, 0xcc2240,11, 0xcc2270,32, 0xcc2300,24, 0xcc2380,20, 0xcc2400,61, 0xcc2500,25, 0xcc2568,4, 0xcc2580,2, 0xcc25a0,1, 0xcc25c0,11, 0xcc2600,9, 0xcc2640,3, 0xcc2650,3, 0xcc2664,3, 0xcc2680,22, 0xcc2800,11, 0xcc3000,536, 0xcc4104,23, 0xcc4180,7, 0xcc41a0,6, 0xcc41c0,7, 0xcc41e0,6, 0xcc4200,4, 0xcc4220,4, 0xcc4240,11, 0xcc4270,32, 0xcc4300,24, 0xcc4380,20, 0xcc4400,61, 0xcc4500,25, 0xcc4568,4, 0xcc4580,2, 0xcc45a0,1, 0xcc45c0,11, 0xcc4600,9, 0xcc4640,3, 0xcc4650,3, 0xcc4664,3, 0xcc4680,22, 0xcc4800,11, 0xcc5000,536, 0xcca000,7, 0xcca048,8, 0xcca080,8, 0xcca100,7, 0xcca148,8, 0xcca180,8, 0xcd0000,11, 0xcd0040,16, 0xcd0084,5, 0xcd0200,7, 0xcd0220,6, 0xcd0240,7, 0xcd0260,6, 0xcd0280,6, 0xcd02a0,2, 0xcd02ac,2, 0xcd02c0,7, 0xcd02e0,7, 0xcd0300,2, 0xcd030c,2, 0xcd0320,6, 0xcd0400,2, 0xcd1000,19, 0xcd2104,23, 0xcd2180,7, 0xcd21a0,6, 0xcd21c0,7, 0xcd21e0,6, 0xcd2200,4, 0xcd2220,4, 0xcd2240,11, 0xcd2270,32, 0xcd2300,24, 0xcd2380,20, 0xcd2400,61, 0xcd2500,25, 0xcd2568,4, 0xcd2580,2, 0xcd25a0,1, 0xcd25c0,11, 0xcd2600,9, 0xcd2640,3, 0xcd2650,3, 0xcd2664,3, 0xcd2680,22, 0xcd2800,11, 0xcd3000,536, 0xcd4104,23, 0xcd4180,7, 0xcd41a0,6, 0xcd41c0,7, 0xcd41e0,6, 0xcd4200,4, 0xcd4220,4, 0xcd4240,11, 0xcd4270,32, 0xcd4300,24, 0xcd4380,20, 0xcd4400,61, 0xcd4500,25, 0xcd4568,4, 0xcd4580,2, 0xcd45a0,1, 0xcd45c0,11, 0xcd4600,9, 0xcd4640,3, 0xcd4650,3, 0xcd4664,3, 0xcd4680,22, 0xcd4800,11, 0xcd5000,536, 0xcda000,7, 0xcda048,8, 0xcda080,8, 0xcda100,7, 0xcda148,8, 0xcda180,8, 0xce0400,4, 0xce0440,4, 0xce05c0,1, 0xce0600,8, 0xce0800,18, 0xce0880,13, 0xce08f0,3, 0xce0900,18, 0xce0980,13, 0xce09f0,3, 0xce0e00,4, 0xce0e20,4, 0xce0e80,16, 0xce0f00,1, 0xce0f20,1, 0xce1020,2, 0xce1208,6, 0xce1228,10, 0xce1288,6, 0xce12a8,10, 0xce1600,32, 0xce18c0,8, 0xce1900,24, 0xce19b0,4, 0xce1aa0,2, 0xce1ac0,4, 0xce2200,19, 0xce2280,19, 0xce2400,14, 0xce243c,9, 0xce2464,14, 0xce24a0,2, 0xce24ac,2, 0xce2500,14, 0xce253c,9, 0xce2564,14, 0xce25a0,2, 0xce25ac,2, 0xce2800,19, 0xce2880,19, 0xce2a10,2, 0xce2a1c,1, 0xce2a50,2, 0xce2a5c,1, 0xce2c00,7, 0xce2c20,1, 0xce2c54,18, 0xce2ca0,1, 0xce2cd4,11, 0xce2e00,1, 0xce2e08,6, 0xce3180,3, 0xce4400,4, 0xce4440,4, 0xce45c0,1, 0xce4600,8, 0xce4800,18, 0xce4880,13, 0xce48f0,3, 0xce4900,18, 0xce4980,13, 0xce49f0,3, 0xce4e00,4, 0xce4e20,4, 0xce4e80,16, 0xce4f00,1, 0xce4f20,1, 0xce5020,2, 0xce5208,6, 0xce5228,10, 0xce5288,6, 0xce52a8,10, 0xce5600,32, 0xce58c0,8, 0xce5900,24, 0xce59b0,4, 0xce5aa0,2, 0xce5ac0,4, 0xce6200,19, 0xce6280,19, 0xce6400,14, 0xce643c,9, 0xce6464,14, 0xce64a0,2, 0xce64ac,2, 0xce6500,14, 0xce653c,9, 0xce6564,14, 0xce65a0,2, 0xce65ac,2, 0xce6800,19, 0xce6880,19, 0xce6a10,2, 0xce6a1c,1, 0xce6a50,2, 0xce6a5c,1, 0xce6c00,7, 0xce6c20,1, 0xce6c54,18, 0xce6ca0,1, 0xce6cd4,11, 0xce6e00,1, 0xce6e08,6, 0xce7180,3, 0xce9000,13, 0xcee000,19, 0xceea00,10, 0xceea80,3, 0xcef000,1, 0xcef008,5, 0xcef038,1, 0xcef044,1, 0xcef050,2, 0xcef060,8, 0xcef140,19, 0xcef190,4, 0xcf0000,2, 0xcf000c,2, 0xcf0040,7, 0xcf0100,3, 0xcf0110,3, 0xcf0120,5, 0xcf0200,6, 0xcf0240,5, 0xcf0400,2, 0xcf040c,2, 0xcf0440,7, 0xcf0500,3, 0xcf0510,3, 0xcf0520,5, 0xcf0600,6, 0xcf0640,5, 0xcf0800,2, 0xcf080c,2, 0xcf0840,7, 0xcf0900,3, 0xcf0910,3, 0xcf0920,5, 0xcf0a00,6, 0xcf0a40,5, 0xcf0c00,2, 0xcf0c0c,2, 0xcf0c40,7, 0xcf0d00,3, 0xcf0d10,3, 0xcf0d20,5, 0xcf0e00,6, 0xcf0e40,5, 0xcf1000,2, 0xcf100c,2, 0xcf1040,7, 0xcf1100,3, 0xcf1110,3, 0xcf1120,5, 0xcf1200,6, 0xcf1240,5, 0xcf1400,2, 0xcf140c,2, 0xcf1440,7, 0xcf1500,3, 0xcf1510,3, 0xcf1520,5, 0xcf1600,6, 0xcf1640,5, 0xcf1800,2, 0xcf180c,2, 0xcf1840,7, 0xcf1900,3, 0xcf1910,3, 0xcf1920,5, 0xcf1a00,6, 0xcf1a40,5, 0xcf1c00,2, 0xcf1c0c,2, 0xcf1c40,7, 0xcf1d00,3, 0xcf1d10,3, 0xcf1d20,5, 0xcf1e00,6, 0xcf1e40,5, 0xcf2000,5, 0xcf2040,9, 0xcf2100,3, 0xcf2200,1, 0xcf2210,1, 0xcf2220,1, 0xcf2230,1, 0xcf2240,1, 0xcf2300,3, 0xcf2314,1, 0xcf2320,4, 0xcf2400,5, 0xcf2440,5, 0xcf3000,80, 0xcf3200,1, 0xcf8000,7, 0xcf8030,2, 0xcf8040,7, 0xcf8070,2, 0xcf8100,2, 0xcf8120,2, 0xcf8140,2, 0xcf8160,2, 0xcf8180,9, 0xcf8200,7, 0xcf8230,2, 0xcf8240,7, 0xcf8270,2, 0xcf8300,2, 0xcf8320,2, 0xcf8340,2, 0xcf8360,2, 0xcf8380,9, 0xcf8400,11, 0xcf8500,11, 0xcf9000,3, 0xcf9010,2, 0xcf901c,5, 0xcf9040,8, 0xcf9080,3, 0xcf9090,2, 0xcf909c,5, 0xcf90c0,8, 0xcf9100,3, 0xcf9110,2, 0xcf911c,5, 0xcf9140,8, 0xcf9180,3, 0xcf9190,2, 0xcf919c,5, 0xcf91c0,8, 0xcf9200,7, 0xcf9220,12, 0xcf9280,7, 0xcf92a0,12, 0xcf9300,3, 0xcf9310,1, 0xcf9400,3, 0xcf9410,2, 0xcf941c,5, 0xcf9440,8, 0xcf9480,3, 0xcf9490,2, 0xcf949c,5, 0xcf94c0,8, 0xcf9500,3, 0xcf9510,2, 0xcf951c,5, 0xcf9540,8, 0xcf9580,3, 0xcf9590,2, 0xcf959c,5, 0xcf95c0,8, 0xcf9600,7, 0xcf9620,12, 0xcf9680,7, 0xcf96a0,12, 0xcf9700,3, 0xcf9710,1, 0xcf9804,1, 0xcf9824,21, 0xcf9880,16, 0xcf9900,5, 0xcf9920,11, 0xcf9950,9, 0xcf9980,22, 0xcf9a00,22, 0xcf9a80,22, 0xcf9b00,22, 0xcf9b80,22, 0xcf9c00,22, 0xcf9c80,22, 0xcf9d00,22, 0xcf9d80,3, 0xd00000,5, 0xd00018,5, 0xd00030,3, 0xd00044,3, 0xd00100,58, 0xd001f0,3, 0xd00280,3, 0xd00400,5, 0xd00418,5, 0xd00430,3, 0xd00444,3, 0xd00500,58, 0xd005f0,3, 0xd00680,3, 0xd01018,2, 0xd01100,2, 0xd01110,10, 0xd01140,2, 0xd01150,10, 0xd01208,1, 0xd01220,12, 0xd01280,1, 0xd01288,2, 0xd01400,4, 0xd02000,5, 0xd02018,5, 0xd02030,3, 0xd02044,3, 0xd02100,58, 0xd021f0,3, 0xd02280,3, 0xd02400,5, 0xd02418,5, 0xd02430,3, 0xd02444,3, 0xd02500,58, 0xd025f0,3, 0xd02680,3, 0xd03018,2, 0xd03100,2, 0xd03110,10, 0xd03140,2, 0xd03150,10, 0xd03208,1, 0xd03220,12, 0xd03280,1, 0xd03288,2, 0xd03400,4, 0xd04000,2, 0xd0400c,1, 0xd04030,3, 0xd04040,2, 0xd0404c,1, 0xd04070,3, 0xd04100,2, 0xd0410c,1, 0xd04130,3, 0xd04140,2, 0xd0414c,1, 0xd04170,3, 0xd04200,15, 0xd04280,15, 0xd04300,15, 0xd04380,15, 0xd04400,15, 0xd04480,15, 0xd04500,15, 0xd04580,15, 0xd04604,10, 0xd04700,2, 0xd0470c,7, 0xd04740,1, 0xd04770,1, 0xd047c0,2, 0xd047d0,4, 0xd05000,3, 0xd05010,1, 0xd0501c,3, 0xd05104,1, 0xd05110,4, 0xd05124,1, 0xd05130,4, 0xd05144,1, 0xd05150,4, 0xd05164,1, 0xd05170,5, 0xd05190,4, 0xd05a00,4, 0xd05c00,129, 0xd06000,37, 0xd06098,1, 0xd06100,37, 0xd06198,1, 0xd06200,37, 0xd06298,1, 0xd06300,37, 0xd06398,1, 0xd06400,37, 0xd06498,1, 0xd06500,37, 0xd06598,1, 0xd06600,37, 0xd06698,1, 0xd06700,37, 0xd06798,1, 0xd0c000,91, 0xd0c400,4, 0xd0c440,15, 0xd0c480,4, 0xd0c4c0,15, 0xd0c500,4, 0xd0c540,15, 0xd0c580,4, 0xd0c5c0,15, 0xd0c600,4, 0xd0c640,10, 0xd0c680,4, 0xd0c6c0,10, 0xd0c800,4, 0xd0c840,33, 0xd0ca00,13, 0xd0ca80,1, 0xd0ca88,8, 0xd0cac0,6, 0xd0cae0,1, 0xd0cae8,2, 0xd0cb04,14, 0xd0cc00,4, 0xd0ccc8,1, 0xd0cfcc,3, 0xd0cfe0,99, 0xd0d400,4, 0xd0d440,15, 0xd0d480,4, 0xd0d4c0,15, 0xd0d500,4, 0xd0d540,15, 0xd0d580,4, 0xd0d5c0,15, 0xd0d600,4, 0xd0d640,10, 0xd0d680,4, 0xd0d6c0,10, 0xd0d800,4, 0xd0d840,33, 0xd0da00,13, 0xd0da80,1, 0xd0da88,8, 0xd0dac0,6, 0xd0dae0,1, 0xd0dae8,2, 0xd0db04,14, 0xd0dc00,4, 0xd0dcc8,1, 0xd0dfcc,3, 0xd0dfe0,27, 0xd0f000,19, 0xd0fa00,10, 0xd0fa80,3, 0xd0fb00,6, 0xd10000,51, 0xd10a00,10, 0xd10a80,3, 0xd11000,2, 0xd1100c,4, 0xd11028,3, 0xd11038,4, 0xd11050,2, 0xd11080,4, 0xd11098,7, 0xd11120,4, 0xd11200,4, 0xd11214,7, 0xd11234,3, 0xd11280,8, 0xd112c0,5, 0xd11300,2, 0xd1130c,3, 0xd11400,24, 0xd11464,2, 0xd11470,3, 0xd11500,25, 0xd115c0,8, 0xd115e8,5, 0xd11600,5, 0xd11618,1, 0xd11620,1, 0xd11628,1, 0xd11630,2, 0xd11640,2, 0xd11650,2, 0xd11690,4, 0xd11740,2, 0xd11760,6, 0xd11780,6, 0xd117a0,6, 0xd117c0,6, 0xd117e0,1, 0xd11800,2, 0xd1180c,4, 0xd11828,3, 0xd11838,4, 0xd11850,2, 0xd11880,4, 0xd11898,7, 0xd11920,4, 0xd11a00,4, 0xd11a14,7, 0xd11a34,3, 0xd11a80,8, 0xd11ac0,5, 0xd11b00,2, 0xd11b0c,3, 0xd11c00,24, 0xd11c64,2, 0xd11c70,3, 0xd11d00,25, 0xd11dc0,8, 0xd11de8,5, 0xd11e00,5, 0xd11e18,1, 0xd11e20,1, 0xd11e28,1, 0xd11e30,2, 0xd11e40,2, 0xd11e50,2, 0xd11e90,4, 0xd11f40,2, 0xd11f60,6, 0xd11f80,6, 0xd11fa0,6, 0xd11fc0,6, 0xd11fe0,1, 0xd12000,19, 0xd12080,2, 0xd120b0,2, 0xd120c0,2, 0xd20000,11, 0xd20040,16, 0xd20084,5, 0xd20200,7, 0xd20220,6, 0xd20240,7, 0xd20260,6, 0xd20280,6, 0xd202a0,2, 0xd202ac,2, 0xd202c0,7, 0xd202e0,7, 0xd20300,2, 0xd2030c,2, 0xd20320,6, 0xd20400,2, 0xd21000,19, 0xd22104,23, 0xd22180,7, 0xd221a0,6, 0xd221c0,7, 0xd221e0,6, 0xd22200,4, 0xd22220,4, 0xd22240,11, 0xd22270,32, 0xd22300,24, 0xd22380,20, 0xd22400,61, 0xd22500,25, 0xd22568,4, 0xd22580,2, 0xd225a0,1, 0xd225c0,11, 0xd22600,9, 0xd22640,3, 0xd22650,3, 0xd22664,3, 0xd22680,22, 0xd22800,11, 0xd23000,536, 0xd24104,23, 0xd24180,7, 0xd241a0,6, 0xd241c0,7, 0xd241e0,6, 0xd24200,4, 0xd24220,4, 0xd24240,11, 0xd24270,32, 0xd24300,24, 0xd24380,20, 0xd24400,61, 0xd24500,25, 0xd24568,4, 0xd24580,2, 0xd245a0,1, 0xd245c0,11, 0xd24600,9, 0xd24640,3, 0xd24650,3, 0xd24664,3, 0xd24680,22, 0xd24800,11, 0xd25000,536, 0xd2a000,7, 0xd2a048,8, 0xd2a080,8, 0xd2a100,7, 0xd2a148,8, 0xd2a180,8, 0xd30000,11, 0xd30040,16, 0xd30084,5, 0xd30200,7, 0xd30220,6, 0xd30240,7, 0xd30260,6, 0xd30280,6, 0xd302a0,2, 0xd302ac,2, 0xd302c0,7, 0xd302e0,7, 0xd30300,2, 0xd3030c,2, 0xd30320,6, 0xd30400,2, 0xd31000,19, 0xd32104,23, 0xd32180,7, 0xd321a0,6, 0xd321c0,7, 0xd321e0,6, 0xd32200,4, 0xd32220,4, 0xd32240,11, 0xd32270,32, 0xd32300,24, 0xd32380,20, 0xd32400,61, 0xd32500,25, 0xd32568,4, 0xd32580,2, 0xd325a0,1, 0xd325c0,11, 0xd32600,9, 0xd32640,3, 0xd32650,3, 0xd32664,3, 0xd32680,22, 0xd32800,11, 0xd33000,536, 0xd34104,23, 0xd34180,7, 0xd341a0,6, 0xd341c0,7, 0xd341e0,6, 0xd34200,4, 0xd34220,4, 0xd34240,11, 0xd34270,32, 0xd34300,24, 0xd34380,20, 0xd34400,61, 0xd34500,25, 0xd34568,4, 0xd34580,2, 0xd345a0,1, 0xd345c0,11, 0xd34600,9, 0xd34640,3, 0xd34650,3, 0xd34664,3, 0xd34680,22, 0xd34800,11, 0xd35000,536, 0xd3a000,7, 0xd3a048,8, 0xd3a080,8, 0xd3a100,7, 0xd3a148,8, 0xd3a180,8, 0xd40400,4, 0xd40440,4, 0xd405c0,1, 0xd40600,8, 0xd40800,18, 0xd40880,13, 0xd408f0,3, 0xd40900,18, 0xd40980,13, 0xd409f0,3, 0xd40e00,4, 0xd40e20,4, 0xd40e80,16, 0xd40f00,1, 0xd40f20,1, 0xd41020,2, 0xd41208,6, 0xd41228,10, 0xd41288,6, 0xd412a8,10, 0xd41600,32, 0xd418c0,8, 0xd41900,24, 0xd419b0,4, 0xd41aa0,2, 0xd41ac0,4, 0xd42200,19, 0xd42280,19, 0xd42400,14, 0xd4243c,9, 0xd42464,14, 0xd424a0,2, 0xd424ac,2, 0xd42500,14, 0xd4253c,9, 0xd42564,14, 0xd425a0,2, 0xd425ac,2, 0xd42800,19, 0xd42880,19, 0xd42a10,2, 0xd42a1c,1, 0xd42a50,2, 0xd42a5c,1, 0xd42c00,7, 0xd42c20,1, 0xd42c54,18, 0xd42ca0,1, 0xd42cd4,11, 0xd42e00,1, 0xd42e08,6, 0xd43180,3, 0xd44400,4, 0xd44440,4, 0xd445c0,1, 0xd44600,8, 0xd44800,18, 0xd44880,13, 0xd448f0,3, 0xd44900,18, 0xd44980,13, 0xd449f0,3, 0xd44e00,4, 0xd44e20,4, 0xd44e80,16, 0xd44f00,1, 0xd44f20,1, 0xd45020,2, 0xd45208,6, 0xd45228,10, 0xd45288,6, 0xd452a8,10, 0xd45600,32, 0xd458c0,8, 0xd45900,24, 0xd459b0,4, 0xd45aa0,2, 0xd45ac0,4, 0xd46200,19, 0xd46280,19, 0xd46400,14, 0xd4643c,9, 0xd46464,14, 0xd464a0,2, 0xd464ac,2, 0xd46500,14, 0xd4653c,9, 0xd46564,14, 0xd465a0,2, 0xd465ac,2, 0xd46800,19, 0xd46880,19, 0xd46a10,2, 0xd46a1c,1, 0xd46a50,2, 0xd46a5c,1, 0xd46c00,7, 0xd46c20,1, 0xd46c54,18, 0xd46ca0,1, 0xd46cd4,11, 0xd46e00,1, 0xd46e08,6, 0xd47180,3, 0xd49000,13, 0xd4e000,19, 0xd4ea00,10, 0xd4ea80,3, 0xd4f000,1, 0xd4f008,5, 0xd4f038,1, 0xd4f044,1, 0xd4f050,2, 0xd4f060,8, 0xd4f140,19, 0xd4f190,4, 0xd50000,2, 0xd5000c,2, 0xd50040,7, 0xd50100,3, 0xd50110,3, 0xd50120,5, 0xd50200,6, 0xd50240,5, 0xd50400,2, 0xd5040c,2, 0xd50440,7, 0xd50500,3, 0xd50510,3, 0xd50520,5, 0xd50600,6, 0xd50640,5, 0xd50800,2, 0xd5080c,2, 0xd50840,7, 0xd50900,3, 0xd50910,3, 0xd50920,5, 0xd50a00,6, 0xd50a40,5, 0xd50c00,2, 0xd50c0c,2, 0xd50c40,7, 0xd50d00,3, 0xd50d10,3, 0xd50d20,5, 0xd50e00,6, 0xd50e40,5, 0xd51000,2, 0xd5100c,2, 0xd51040,7, 0xd51100,3, 0xd51110,3, 0xd51120,5, 0xd51200,6, 0xd51240,5, 0xd51400,2, 0xd5140c,2, 0xd51440,7, 0xd51500,3, 0xd51510,3, 0xd51520,5, 0xd51600,6, 0xd51640,5, 0xd51800,2, 0xd5180c,2, 0xd51840,7, 0xd51900,3, 0xd51910,3, 0xd51920,5, 0xd51a00,6, 0xd51a40,5, 0xd51c00,2, 0xd51c0c,2, 0xd51c40,7, 0xd51d00,3, 0xd51d10,3, 0xd51d20,5, 0xd51e00,6, 0xd51e40,5, 0xd52000,5, 0xd52040,9, 0xd52100,3, 0xd52200,1, 0xd52210,1, 0xd52220,1, 0xd52230,1, 0xd52240,1, 0xd52300,3, 0xd52314,1, 0xd52320,4, 0xd52400,5, 0xd52440,5, 0xd53000,80, 0xd53200,1, 0xd58000,7, 0xd58030,2, 0xd58040,7, 0xd58070,2, 0xd58100,2, 0xd58120,2, 0xd58140,2, 0xd58160,2, 0xd58180,9, 0xd58200,7, 0xd58230,2, 0xd58240,7, 0xd58270,2, 0xd58300,2, 0xd58320,2, 0xd58340,2, 0xd58360,2, 0xd58380,9, 0xd58400,11, 0xd58500,11, 0xd59000,3, 0xd59010,2, 0xd5901c,5, 0xd59040,8, 0xd59080,3, 0xd59090,2, 0xd5909c,5, 0xd590c0,8, 0xd59100,3, 0xd59110,2, 0xd5911c,5, 0xd59140,8, 0xd59180,3, 0xd59190,2, 0xd5919c,5, 0xd591c0,8, 0xd59200,7, 0xd59220,12, 0xd59280,7, 0xd592a0,12, 0xd59300,3, 0xd59310,1, 0xd59400,3, 0xd59410,2, 0xd5941c,5, 0xd59440,8, 0xd59480,3, 0xd59490,2, 0xd5949c,5, 0xd594c0,8, 0xd59500,3, 0xd59510,2, 0xd5951c,5, 0xd59540,8, 0xd59580,3, 0xd59590,2, 0xd5959c,5, 0xd595c0,8, 0xd59600,7, 0xd59620,12, 0xd59680,7, 0xd596a0,12, 0xd59700,3, 0xd59710,1, 0xd59804,1, 0xd59824,21, 0xd59880,16, 0xd59900,5, 0xd59920,11, 0xd59950,9, 0xd59980,22, 0xd59a00,22, 0xd59a80,22, 0xd59b00,22, 0xd59b80,22, 0xd59c00,22, 0xd59c80,22, 0xd59d00,22, 0xd59d80,3, 0xd60000,5, 0xd60018,5, 0xd60030,3, 0xd60044,3, 0xd60100,58, 0xd601f0,3, 0xd60280,3, 0xd60400,5, 0xd60418,5, 0xd60430,3, 0xd60444,3, 0xd60500,58, 0xd605f0,3, 0xd60680,3, 0xd61018,2, 0xd61100,2, 0xd61110,10, 0xd61140,2, 0xd61150,10, 0xd61208,1, 0xd61220,12, 0xd61280,1, 0xd61288,2, 0xd61400,4, 0xd62000,5, 0xd62018,5, 0xd62030,3, 0xd62044,3, 0xd62100,58, 0xd621f0,3, 0xd62280,3, 0xd62400,5, 0xd62418,5, 0xd62430,3, 0xd62444,3, 0xd62500,58, 0xd625f0,3, 0xd62680,3, 0xd63018,2, 0xd63100,2, 0xd63110,10, 0xd63140,2, 0xd63150,10, 0xd63208,1, 0xd63220,12, 0xd63280,1, 0xd63288,2, 0xd63400,4, 0xd64000,2, 0xd6400c,1, 0xd64030,3, 0xd64040,2, 0xd6404c,1, 0xd64070,3, 0xd64100,2, 0xd6410c,1, 0xd64130,3, 0xd64140,2, 0xd6414c,1, 0xd64170,3, 0xd64200,15, 0xd64280,15, 0xd64300,15, 0xd64380,15, 0xd64400,15, 0xd64480,15, 0xd64500,15, 0xd64580,15, 0xd64604,10, 0xd64700,2, 0xd6470c,7, 0xd64740,1, 0xd64770,1, 0xd647c0,2, 0xd647d0,4, 0xd65000,3, 0xd65010,1, 0xd6501c,3, 0xd65104,1, 0xd65110,4, 0xd65124,1, 0xd65130,4, 0xd65144,1, 0xd65150,4, 0xd65164,1, 0xd65170,5, 0xd65190,4, 0xd65a00,4, 0xd65c00,129, 0xd66000,37, 0xd66098,1, 0xd66100,37, 0xd66198,1, 0xd66200,37, 0xd66298,1, 0xd66300,37, 0xd66398,1, 0xd66400,37, 0xd66498,1, 0xd66500,37, 0xd66598,1, 0xd66600,37, 0xd66698,1, 0xd66700,37, 0xd66798,1, 0xd6c000,91, 0xd6c400,4, 0xd6c440,15, 0xd6c480,4, 0xd6c4c0,15, 0xd6c500,4, 0xd6c540,15, 0xd6c580,4, 0xd6c5c0,15, 0xd6c600,4, 0xd6c640,10, 0xd6c680,4, 0xd6c6c0,10, 0xd6c800,4, 0xd6c840,33, 0xd6ca00,13, 0xd6ca80,1, 0xd6ca88,8, 0xd6cac0,6, 0xd6cae0,1, 0xd6cae8,2, 0xd6cb04,14, 0xd6cc00,4, 0xd6ccc8,1, 0xd6cfcc,3, 0xd6cfe0,99, 0xd6d400,4, 0xd6d440,15, 0xd6d480,4, 0xd6d4c0,15, 0xd6d500,4, 0xd6d540,15, 0xd6d580,4, 0xd6d5c0,15, 0xd6d600,4, 0xd6d640,10, 0xd6d680,4, 0xd6d6c0,10, 0xd6d800,4, 0xd6d840,33, 0xd6da00,13, 0xd6da80,1, 0xd6da88,8, 0xd6dac0,6, 0xd6dae0,1, 0xd6dae8,2, 0xd6db04,14, 0xd6dc00,4, 0xd6dcc8,1, 0xd6dfcc,3, 0xd6dfe0,27, 0xd6f000,19, 0xd6fa00,10, 0xd6fa80,3, 0xd6fb00,6, 0xd70000,51, 0xd70a00,10, 0xd70a80,3, 0xd71000,2, 0xd7100c,4, 0xd71028,3, 0xd71038,4, 0xd71050,2, 0xd71080,4, 0xd71098,7, 0xd71120,4, 0xd71200,4, 0xd71214,7, 0xd71234,3, 0xd71280,8, 0xd712c0,5, 0xd71300,2, 0xd7130c,3, 0xd71400,24, 0xd71464,2, 0xd71470,3, 0xd71500,25, 0xd715c0,8, 0xd715e8,5, 0xd71600,5, 0xd71618,1, 0xd71620,1, 0xd71628,1, 0xd71630,2, 0xd71640,2, 0xd71650,2, 0xd71690,4, 0xd71740,2, 0xd71760,6, 0xd71780,6, 0xd717a0,6, 0xd717c0,6, 0xd717e0,1, 0xd71800,2, 0xd7180c,4, 0xd71828,3, 0xd71838,4, 0xd71850,2, 0xd71880,4, 0xd71898,7, 0xd71920,4, 0xd71a00,4, 0xd71a14,7, 0xd71a34,3, 0xd71a80,8, 0xd71ac0,5, 0xd71b00,2, 0xd71b0c,3, 0xd71c00,24, 0xd71c64,2, 0xd71c70,3, 0xd71d00,25, 0xd71dc0,8, 0xd71de8,5, 0xd71e00,5, 0xd71e18,1, 0xd71e20,1, 0xd71e28,1, 0xd71e30,2, 0xd71e40,2, 0xd71e50,2, 0xd71e90,4, 0xd71f40,2, 0xd71f60,6, 0xd71f80,6, 0xd71fa0,6, 0xd71fc0,6, 0xd71fe0,1, 0xd72000,19, 0xd72080,2, 0xd720b0,2, 0xd720c0,2, 0xd80000,11, 0xd80040,16, 0xd80084,5, 0xd80200,7, 0xd80220,6, 0xd80240,7, 0xd80260,6, 0xd80280,6, 0xd802a0,2, 0xd802ac,2, 0xd802c0,7, 0xd802e0,7, 0xd80300,2, 0xd8030c,2, 0xd80320,6, 0xd80400,2, 0xd81000,19, 0xd82104,23, 0xd82180,7, 0xd821a0,6, 0xd821c0,7, 0xd821e0,6, 0xd82200,4, 0xd82220,4, 0xd82240,11, 0xd82270,32, 0xd82300,24, 0xd82380,20, 0xd82400,61, 0xd82500,25, 0xd82568,4, 0xd82580,2, 0xd825a0,1, 0xd825c0,11, 0xd82600,9, 0xd82640,3, 0xd82650,3, 0xd82664,3, 0xd82680,22, 0xd82800,11, 0xd83000,536, 0xd84104,23, 0xd84180,7, 0xd841a0,6, 0xd841c0,7, 0xd841e0,6, 0xd84200,4, 0xd84220,4, 0xd84240,11, 0xd84270,32, 0xd84300,24, 0xd84380,20, 0xd84400,61, 0xd84500,25, 0xd84568,4, 0xd84580,2, 0xd845a0,1, 0xd845c0,11, 0xd84600,9, 0xd84640,3, 0xd84650,3, 0xd84664,3, 0xd84680,22, 0xd84800,11, 0xd85000,536, 0xd8a000,7, 0xd8a048,8, 0xd8a080,8, 0xd8a100,7, 0xd8a148,8, 0xd8a180,8, 0xd90000,11, 0xd90040,16, 0xd90084,5, 0xd90200,7, 0xd90220,6, 0xd90240,7, 0xd90260,6, 0xd90280,6, 0xd902a0,2, 0xd902ac,2, 0xd902c0,7, 0xd902e0,7, 0xd90300,2, 0xd9030c,2, 0xd90320,6, 0xd90400,2, 0xd91000,19, 0xd92104,23, 0xd92180,7, 0xd921a0,6, 0xd921c0,7, 0xd921e0,6, 0xd92200,4, 0xd92220,4, 0xd92240,11, 0xd92270,32, 0xd92300,24, 0xd92380,20, 0xd92400,61, 0xd92500,25, 0xd92568,4, 0xd92580,2, 0xd925a0,1, 0xd925c0,11, 0xd92600,9, 0xd92640,3, 0xd92650,3, 0xd92664,3, 0xd92680,22, 0xd92800,11, 0xd93000,536, 0xd94104,23, 0xd94180,7, 0xd941a0,6, 0xd941c0,7, 0xd941e0,6, 0xd94200,4, 0xd94220,4, 0xd94240,11, 0xd94270,32, 0xd94300,24, 0xd94380,20, 0xd94400,61, 0xd94500,25, 0xd94568,4, 0xd94580,2, 0xd945a0,1, 0xd945c0,11, 0xd94600,9, 0xd94640,3, 0xd94650,3, 0xd94664,3, 0xd94680,22, 0xd94800,11, 0xd95000,536, 0xd9a000,7, 0xd9a048,8, 0xd9a080,8, 0xd9a100,7, 0xd9a148,8, 0xd9a180,8, 0xda0400,4, 0xda0440,4, 0xda05c0,1, 0xda0600,8, 0xda0800,18, 0xda0880,13, 0xda08f0,3, 0xda0900,18, 0xda0980,13, 0xda09f0,3, 0xda0e00,4, 0xda0e20,4, 0xda0e80,16, 0xda0f00,1, 0xda0f20,1, 0xda1020,2, 0xda1208,6, 0xda1228,10, 0xda1288,6, 0xda12a8,10, 0xda1600,32, 0xda18c0,8, 0xda1900,24, 0xda19b0,4, 0xda1aa0,2, 0xda1ac0,4, 0xda2200,19, 0xda2280,19, 0xda2400,14, 0xda243c,9, 0xda2464,14, 0xda24a0,2, 0xda24ac,2, 0xda2500,14, 0xda253c,9, 0xda2564,14, 0xda25a0,2, 0xda25ac,2, 0xda2800,19, 0xda2880,19, 0xda2a10,2, 0xda2a1c,1, 0xda2a50,2, 0xda2a5c,1, 0xda2c00,7, 0xda2c20,1, 0xda2c54,18, 0xda2ca0,1, 0xda2cd4,11, 0xda2e00,1, 0xda2e08,6, 0xda3180,3, 0xda4400,4, 0xda4440,4, 0xda45c0,1, 0xda4600,8, 0xda4800,18, 0xda4880,13, 0xda48f0,3, 0xda4900,18, 0xda4980,13, 0xda49f0,3, 0xda4e00,4, 0xda4e20,4, 0xda4e80,16, 0xda4f00,1, 0xda4f20,1, 0xda5020,2, 0xda5208,6, 0xda5228,10, 0xda5288,6, 0xda52a8,10, 0xda5600,32, 0xda58c0,8, 0xda5900,24, 0xda59b0,4, 0xda5aa0,2, 0xda5ac0,4, 0xda6200,19, 0xda6280,19, 0xda6400,14, 0xda643c,9, 0xda6464,14, 0xda64a0,2, 0xda64ac,2, 0xda6500,14, 0xda653c,9, 0xda6564,14, 0xda65a0,2, 0xda65ac,2, 0xda6800,19, 0xda6880,19, 0xda6a10,2, 0xda6a1c,1, 0xda6a50,2, 0xda6a5c,1, 0xda6c00,7, 0xda6c20,1, 0xda6c54,18, 0xda6ca0,1, 0xda6cd4,11, 0xda6e00,1, 0xda6e08,6, 0xda7180,3, 0xda9000,13, 0xdae000,19, 0xdaea00,10, 0xdaea80,3, 0xdaf000,1, 0xdaf008,5, 0xdaf038,1, 0xdaf044,1, 0xdaf050,2, 0xdaf060,8, 0xdaf140,19, 0xdaf190,4, 0xdb0000,2, 0xdb000c,2, 0xdb0040,7, 0xdb0100,3, 0xdb0110,3, 0xdb0120,5, 0xdb0200,6, 0xdb0240,5, 0xdb0400,2, 0xdb040c,2, 0xdb0440,7, 0xdb0500,3, 0xdb0510,3, 0xdb0520,5, 0xdb0600,6, 0xdb0640,5, 0xdb0800,2, 0xdb080c,2, 0xdb0840,7, 0xdb0900,3, 0xdb0910,3, 0xdb0920,5, 0xdb0a00,6, 0xdb0a40,5, 0xdb0c00,2, 0xdb0c0c,2, 0xdb0c40,7, 0xdb0d00,3, 0xdb0d10,3, 0xdb0d20,5, 0xdb0e00,6, 0xdb0e40,5, 0xdb1000,2, 0xdb100c,2, 0xdb1040,7, 0xdb1100,3, 0xdb1110,3, 0xdb1120,5, 0xdb1200,6, 0xdb1240,5, 0xdb1400,2, 0xdb140c,2, 0xdb1440,7, 0xdb1500,3, 0xdb1510,3, 0xdb1520,5, 0xdb1600,6, 0xdb1640,5, 0xdb1800,2, 0xdb180c,2, 0xdb1840,7, 0xdb1900,3, 0xdb1910,3, 0xdb1920,5, 0xdb1a00,6, 0xdb1a40,5, 0xdb1c00,2, 0xdb1c0c,2, 0xdb1c40,7, 0xdb1d00,3, 0xdb1d10,3, 0xdb1d20,5, 0xdb1e00,6, 0xdb1e40,5, 0xdb2000,5, 0xdb2040,9, 0xdb2100,3, 0xdb2200,1, 0xdb2210,1, 0xdb2220,1, 0xdb2230,1, 0xdb2240,1, 0xdb2300,3, 0xdb2314,1, 0xdb2320,4, 0xdb2400,5, 0xdb2440,5, 0xdb3000,80, 0xdb3200,1, 0xdb8000,7, 0xdb8030,2, 0xdb8040,7, 0xdb8070,2, 0xdb8100,2, 0xdb8120,2, 0xdb8140,2, 0xdb8160,2, 0xdb8180,9, 0xdb8200,7, 0xdb8230,2, 0xdb8240,7, 0xdb8270,2, 0xdb8300,2, 0xdb8320,2, 0xdb8340,2, 0xdb8360,2, 0xdb8380,9, 0xdb8400,11, 0xdb8500,11, 0xdb9000,3, 0xdb9010,2, 0xdb901c,5, 0xdb9040,8, 0xdb9080,3, 0xdb9090,2, 0xdb909c,5, 0xdb90c0,8, 0xdb9100,3, 0xdb9110,2, 0xdb911c,5, 0xdb9140,8, 0xdb9180,3, 0xdb9190,2, 0xdb919c,5, 0xdb91c0,8, 0xdb9200,7, 0xdb9220,12, 0xdb9280,7, 0xdb92a0,12, 0xdb9300,3, 0xdb9310,1, 0xdb9400,3, 0xdb9410,2, 0xdb941c,5, 0xdb9440,8, 0xdb9480,3, 0xdb9490,2, 0xdb949c,5, 0xdb94c0,8, 0xdb9500,3, 0xdb9510,2, 0xdb951c,5, 0xdb9540,8, 0xdb9580,3, 0xdb9590,2, 0xdb959c,5, 0xdb95c0,8, 0xdb9600,7, 0xdb9620,12, 0xdb9680,7, 0xdb96a0,12, 0xdb9700,3, 0xdb9710,1, 0xdb9804,1, 0xdb9824,21, 0xdb9880,16, 0xdb9900,5, 0xdb9920,11, 0xdb9950,9, 0xdb9980,22, 0xdb9a00,22, 0xdb9a80,22, 0xdb9b00,22, 0xdb9b80,22, 0xdb9c00,22, 0xdb9c80,22, 0xdb9d00,22, 0xdb9d80,3, 0xdc0000,5, 0xdc0018,5, 0xdc0030,3, 0xdc0044,3, 0xdc0100,58, 0xdc01f0,3, 0xdc0280,3, 0xdc0400,5, 0xdc0418,5, 0xdc0430,3, 0xdc0444,3, 0xdc0500,58, 0xdc05f0,3, 0xdc0680,3, 0xdc1018,2, 0xdc1100,2, 0xdc1110,10, 0xdc1140,2, 0xdc1150,10, 0xdc1208,1, 0xdc1220,12, 0xdc1280,1, 0xdc1288,2, 0xdc1400,4, 0xdc2000,5, 0xdc2018,5, 0xdc2030,3, 0xdc2044,3, 0xdc2100,58, 0xdc21f0,3, 0xdc2280,3, 0xdc2400,5, 0xdc2418,5, 0xdc2430,3, 0xdc2444,3, 0xdc2500,58, 0xdc25f0,3, 0xdc2680,3, 0xdc3018,2, 0xdc3100,2, 0xdc3110,10, 0xdc3140,2, 0xdc3150,10, 0xdc3208,1, 0xdc3220,12, 0xdc3280,1, 0xdc3288,2, 0xdc3400,4, 0xdc4000,2, 0xdc400c,1, 0xdc4030,3, 0xdc4040,2, 0xdc404c,1, 0xdc4070,3, 0xdc4100,2, 0xdc410c,1, 0xdc4130,3, 0xdc4140,2, 0xdc414c,1, 0xdc4170,3, 0xdc4200,15, 0xdc4280,15, 0xdc4300,15, 0xdc4380,15, 0xdc4400,15, 0xdc4480,15, 0xdc4500,15, 0xdc4580,15, 0xdc4604,10, 0xdc4700,2, 0xdc470c,7, 0xdc4740,1, 0xdc4770,1, 0xdc47c0,2, 0xdc47d0,4, 0xdc5000,3, 0xdc5010,1, 0xdc501c,3, 0xdc5104,1, 0xdc5110,4, 0xdc5124,1, 0xdc5130,4, 0xdc5144,1, 0xdc5150,4, 0xdc5164,1, 0xdc5170,5, 0xdc5190,4, 0xdc5a00,4, 0xdc5c00,129, 0xdc6000,37, 0xdc6098,1, 0xdc6100,37, 0xdc6198,1, 0xdc6200,37, 0xdc6298,1, 0xdc6300,37, 0xdc6398,1, 0xdc6400,37, 0xdc6498,1, 0xdc6500,37, 0xdc6598,1, 0xdc6600,37, 0xdc6698,1, 0xdc6700,37, 0xdc6798,1, 0xdcc000,91, 0xdcc400,4, 0xdcc440,15, 0xdcc480,4, 0xdcc4c0,15, 0xdcc500,4, 0xdcc540,15, 0xdcc580,4, 0xdcc5c0,15, 0xdcc600,4, 0xdcc640,10, 0xdcc680,4, 0xdcc6c0,10, 0xdcc800,4, 0xdcc840,33, 0xdcca00,13, 0xdcca80,1, 0xdcca88,8, 0xdccac0,6, 0xdccae0,1, 0xdccae8,2, 0xdccb04,14, 0xdccc00,4, 0xdcccc8,1, 0xdccfcc,3, 0xdccfe0,99, 0xdcd400,4, 0xdcd440,15, 0xdcd480,4, 0xdcd4c0,15, 0xdcd500,4, 0xdcd540,15, 0xdcd580,4, 0xdcd5c0,15, 0xdcd600,4, 0xdcd640,10, 0xdcd680,4, 0xdcd6c0,10, 0xdcd800,4, 0xdcd840,33, 0xdcda00,13, 0xdcda80,1, 0xdcda88,8, 0xdcdac0,6, 0xdcdae0,1, 0xdcdae8,2, 0xdcdb04,14, 0xdcdc00,4, 0xdcdcc8,1, 0xdcdfcc,3, 0xdcdfe0,27, 0xdcf000,19, 0xdcfa00,10, 0xdcfa80,3, 0xdcfb00,6, 0xdd0000,51, 0xdd0a00,10, 0xdd0a80,3, 0xdd1000,2, 0xdd100c,4, 0xdd1028,3, 0xdd1038,4, 0xdd1050,2, 0xdd1080,4, 0xdd1098,7, 0xdd1120,4, 0xdd1200,4, 0xdd1214,7, 0xdd1234,3, 0xdd1280,8, 0xdd12c0,5, 0xdd1300,2, 0xdd130c,3, 0xdd1400,24, 0xdd1464,2, 0xdd1470,3, 0xdd1500,25, 0xdd15c0,8, 0xdd15e8,5, 0xdd1600,5, 0xdd1618,1, 0xdd1620,1, 0xdd1628,1, 0xdd1630,2, 0xdd1640,2, 0xdd1650,2, 0xdd1690,4, 0xdd1740,2, 0xdd1760,6, 0xdd1780,6, 0xdd17a0,6, 0xdd17c0,6, 0xdd17e0,1, 0xdd1800,2, 0xdd180c,4, 0xdd1828,3, 0xdd1838,4, 0xdd1850,2, 0xdd1880,4, 0xdd1898,7, 0xdd1920,4, 0xdd1a00,4, 0xdd1a14,7, 0xdd1a34,3, 0xdd1a80,8, 0xdd1ac0,5, 0xdd1b00,2, 0xdd1b0c,3, 0xdd1c00,24, 0xdd1c64,2, 0xdd1c70,3, 0xdd1d00,25, 0xdd1dc0,8, 0xdd1de8,5, 0xdd1e00,5, 0xdd1e18,1, 0xdd1e20,1, 0xdd1e28,1, 0xdd1e30,2, 0xdd1e40,2, 0xdd1e50,2, 0xdd1e90,4, 0xdd1f40,2, 0xdd1f60,6, 0xdd1f80,6, 0xdd1fa0,6, 0xdd1fc0,6, 0xdd1fe0,1, 0xdd2000,19, 0xdd2080,2, 0xdd20b0,2, 0xdd20c0,2, 0xde0000,11, 0xde0040,16, 0xde0084,5, 0xde0200,7, 0xde0220,6, 0xde0240,7, 0xde0260,6, 0xde0280,6, 0xde02a0,2, 0xde02ac,2, 0xde02c0,7, 0xde02e0,7, 0xde0300,2, 0xde030c,2, 0xde0320,6, 0xde0400,2, 0xde1000,19, 0xde2104,23, 0xde2180,7, 0xde21a0,6, 0xde21c0,7, 0xde21e0,6, 0xde2200,4, 0xde2220,4, 0xde2240,11, 0xde2270,32, 0xde2300,24, 0xde2380,20, 0xde2400,61, 0xde2500,25, 0xde2568,4, 0xde2580,2, 0xde25a0,1, 0xde25c0,11, 0xde2600,9, 0xde2640,3, 0xde2650,3, 0xde2664,3, 0xde2680,22, 0xde2800,11, 0xde3000,536, 0xde4104,23, 0xde4180,7, 0xde41a0,6, 0xde41c0,7, 0xde41e0,6, 0xde4200,4, 0xde4220,4, 0xde4240,11, 0xde4270,32, 0xde4300,24, 0xde4380,20, 0xde4400,61, 0xde4500,25, 0xde4568,4, 0xde4580,2, 0xde45a0,1, 0xde45c0,11, 0xde4600,9, 0xde4640,3, 0xde4650,3, 0xde4664,3, 0xde4680,22, 0xde4800,11, 0xde5000,536, 0xdea000,7, 0xdea048,8, 0xdea080,8, 0xdea100,7, 0xdea148,8, 0xdea180,8, 0xdf0000,11, 0xdf0040,16, 0xdf0084,5, 0xdf0200,7, 0xdf0220,6, 0xdf0240,7, 0xdf0260,6, 0xdf0280,6, 0xdf02a0,2, 0xdf02ac,2, 0xdf02c0,7, 0xdf02e0,7, 0xdf0300,2, 0xdf030c,2, 0xdf0320,6, 0xdf0400,2, 0xdf1000,19, 0xdf2104,23, 0xdf2180,7, 0xdf21a0,6, 0xdf21c0,7, 0xdf21e0,6, 0xdf2200,4, 0xdf2220,4, 0xdf2240,11, 0xdf2270,32, 0xdf2300,24, 0xdf2380,20, 0xdf2400,61, 0xdf2500,25, 0xdf2568,4, 0xdf2580,2, 0xdf25a0,1, 0xdf25c0,11, 0xdf2600,9, 0xdf2640,3, 0xdf2650,3, 0xdf2664,3, 0xdf2680,22, 0xdf2800,11, 0xdf3000,536, 0xdf4104,23, 0xdf4180,7, 0xdf41a0,6, 0xdf41c0,7, 0xdf41e0,6, 0xdf4200,4, 0xdf4220,4, 0xdf4240,11, 0xdf4270,32, 0xdf4300,24, 0xdf4380,20, 0xdf4400,61, 0xdf4500,25, 0xdf4568,4, 0xdf4580,2, 0xdf45a0,1, 0xdf45c0,11, 0xdf4600,9, 0xdf4640,3, 0xdf4650,3, 0xdf4664,3, 0xdf4680,22, 0xdf4800,11, 0xdf5000,536, 0xdfa000,7, 0xdfa048,8, 0xdfa080,8, 0xdfa100,7, 0xdfa148,8, 0xdfa180,8, 0xe00400,4, 0xe00440,4, 0xe005c0,1, 0xe00600,8, 0xe00800,18, 0xe00880,13, 0xe008f0,3, 0xe00900,18, 0xe00980,13, 0xe009f0,3, 0xe00e00,4, 0xe00e20,4, 0xe00e80,16, 0xe00f00,1, 0xe00f20,1, 0xe01020,2, 0xe01208,6, 0xe01228,10, 0xe01288,6, 0xe012a8,10, 0xe01600,32, 0xe018c0,8, 0xe01900,24, 0xe019b0,4, 0xe01aa0,2, 0xe01ac0,4, 0xe02200,19, 0xe02280,19, 0xe02400,14, 0xe0243c,9, 0xe02464,14, 0xe024a0,2, 0xe024ac,2, 0xe02500,14, 0xe0253c,9, 0xe02564,14, 0xe025a0,2, 0xe025ac,2, 0xe02800,19, 0xe02880,19, 0xe02a10,2, 0xe02a1c,1, 0xe02a50,2, 0xe02a5c,1, 0xe02c00,7, 0xe02c20,1, 0xe02c54,18, 0xe02ca0,1, 0xe02cd4,11, 0xe02e00,1, 0xe02e08,6, 0xe03180,3, 0xe04400,4, 0xe04440,4, 0xe045c0,1, 0xe04600,8, 0xe04800,18, 0xe04880,13, 0xe048f0,3, 0xe04900,18, 0xe04980,13, 0xe049f0,3, 0xe04e00,4, 0xe04e20,4, 0xe04e80,16, 0xe04f00,1, 0xe04f20,1, 0xe05020,2, 0xe05208,6, 0xe05228,10, 0xe05288,6, 0xe052a8,10, 0xe05600,32, 0xe058c0,8, 0xe05900,24, 0xe059b0,4, 0xe05aa0,2, 0xe05ac0,4, 0xe06200,19, 0xe06280,19, 0xe06400,14, 0xe0643c,9, 0xe06464,14, 0xe064a0,2, 0xe064ac,2, 0xe06500,14, 0xe0653c,9, 0xe06564,14, 0xe065a0,2, 0xe065ac,2, 0xe06800,19, 0xe06880,19, 0xe06a10,2, 0xe06a1c,1, 0xe06a50,2, 0xe06a5c,1, 0xe06c00,7, 0xe06c20,1, 0xe06c54,18, 0xe06ca0,1, 0xe06cd4,11, 0xe06e00,1, 0xe06e08,6, 0xe07180,3, 0xe09000,13, 0xe0e000,19, 0xe0ea00,10, 0xe0ea80,3, 0xe0f000,1, 0xe0f008,5, 0xe0f038,1, 0xe0f044,1, 0xe0f050,2, 0xe0f060,8, 0xe0f140,19, 0xe0f190,4, 0xe10000,2, 0xe1000c,2, 0xe10040,7, 0xe10100,3, 0xe10110,3, 0xe10120,5, 0xe10200,6, 0xe10240,5, 0xe10400,2, 0xe1040c,2, 0xe10440,7, 0xe10500,3, 0xe10510,3, 0xe10520,5, 0xe10600,6, 0xe10640,5, 0xe10800,2, 0xe1080c,2, 0xe10840,7, 0xe10900,3, 0xe10910,3, 0xe10920,5, 0xe10a00,6, 0xe10a40,5, 0xe10c00,2, 0xe10c0c,2, 0xe10c40,7, 0xe10d00,3, 0xe10d10,3, 0xe10d20,5, 0xe10e00,6, 0xe10e40,5, 0xe11000,2, 0xe1100c,2, 0xe11040,7, 0xe11100,3, 0xe11110,3, 0xe11120,5, 0xe11200,6, 0xe11240,5, 0xe11400,2, 0xe1140c,2, 0xe11440,7, 0xe11500,3, 0xe11510,3, 0xe11520,5, 0xe11600,6, 0xe11640,5, 0xe11800,2, 0xe1180c,2, 0xe11840,7, 0xe11900,3, 0xe11910,3, 0xe11920,5, 0xe11a00,6, 0xe11a40,5, 0xe11c00,2, 0xe11c0c,2, 0xe11c40,7, 0xe11d00,3, 0xe11d10,3, 0xe11d20,5, 0xe11e00,6, 0xe11e40,5, 0xe12000,5, 0xe12040,9, 0xe12100,3, 0xe12200,1, 0xe12210,1, 0xe12220,1, 0xe12230,1, 0xe12240,1, 0xe12300,3, 0xe12314,1, 0xe12320,4, 0xe12400,5, 0xe12440,5, 0xe13000,80, 0xe13200,1, 0xe18000,7, 0xe18030,2, 0xe18040,7, 0xe18070,2, 0xe18100,2, 0xe18120,2, 0xe18140,2, 0xe18160,2, 0xe18180,9, 0xe18200,7, 0xe18230,2, 0xe18240,7, 0xe18270,2, 0xe18300,2, 0xe18320,2, 0xe18340,2, 0xe18360,2, 0xe18380,9, 0xe18400,11, 0xe18500,11, 0xe19000,3, 0xe19010,2, 0xe1901c,5, 0xe19040,8, 0xe19080,3, 0xe19090,2, 0xe1909c,5, 0xe190c0,8, 0xe19100,3, 0xe19110,2, 0xe1911c,5, 0xe19140,8, 0xe19180,3, 0xe19190,2, 0xe1919c,5, 0xe191c0,8, 0xe19200,7, 0xe19220,12, 0xe19280,7, 0xe192a0,12, 0xe19300,3, 0xe19310,1, 0xe19400,3, 0xe19410,2, 0xe1941c,5, 0xe19440,8, 0xe19480,3, 0xe19490,2, 0xe1949c,5, 0xe194c0,8, 0xe19500,3, 0xe19510,2, 0xe1951c,5, 0xe19540,8, 0xe19580,3, 0xe19590,2, 0xe1959c,5, 0xe195c0,8, 0xe19600,7, 0xe19620,12, 0xe19680,7, 0xe196a0,12, 0xe19700,3, 0xe19710,1, 0xe19804,1, 0xe19824,21, 0xe19880,16, 0xe19900,5, 0xe19920,11, 0xe19950,9, 0xe19980,22, 0xe19a00,22, 0xe19a80,22, 0xe19b00,22, 0xe19b80,22, 0xe19c00,22, 0xe19c80,22, 0xe19d00,22, 0xe19d80,3, 0xe20000,5, 0xe20018,5, 0xe20030,3, 0xe20044,3, 0xe20100,58, 0xe201f0,3, 0xe20280,3, 0xe20400,5, 0xe20418,5, 0xe20430,3, 0xe20444,3, 0xe20500,58, 0xe205f0,3, 0xe20680,3, 0xe21018,2, 0xe21100,2, 0xe21110,10, 0xe21140,2, 0xe21150,10, 0xe21208,1, 0xe21220,12, 0xe21280,1, 0xe21288,2, 0xe21400,4, 0xe22000,5, 0xe22018,5, 0xe22030,3, 0xe22044,3, 0xe22100,58, 0xe221f0,3, 0xe22280,3, 0xe22400,5, 0xe22418,5, 0xe22430,3, 0xe22444,3, 0xe22500,58, 0xe225f0,3, 0xe22680,3, 0xe23018,2, 0xe23100,2, 0xe23110,10, 0xe23140,2, 0xe23150,10, 0xe23208,1, 0xe23220,12, 0xe23280,1, 0xe23288,2, 0xe23400,4, 0xe24000,2, 0xe2400c,1, 0xe24030,3, 0xe24040,2, 0xe2404c,1, 0xe24070,3, 0xe24100,2, 0xe2410c,1, 0xe24130,3, 0xe24140,2, 0xe2414c,1, 0xe24170,3, 0xe24200,15, 0xe24280,15, 0xe24300,15, 0xe24380,15, 0xe24400,15, 0xe24480,15, 0xe24500,15, 0xe24580,15, 0xe24604,10, 0xe24700,2, 0xe2470c,7, 0xe24740,1, 0xe24770,1, 0xe247c0,2, 0xe247d0,4, 0xe25000,3, 0xe25010,1, 0xe2501c,3, 0xe25104,1, 0xe25110,4, 0xe25124,1, 0xe25130,4, 0xe25144,1, 0xe25150,4, 0xe25164,1, 0xe25170,5, 0xe25190,4, 0xe25a00,4, 0xe25c00,129, 0xe26000,37, 0xe26098,1, 0xe26100,37, 0xe26198,1, 0xe26200,37, 0xe26298,1, 0xe26300,37, 0xe26398,1, 0xe26400,37, 0xe26498,1, 0xe26500,37, 0xe26598,1, 0xe26600,37, 0xe26698,1, 0xe26700,37, 0xe26798,1, 0xe2c000,91, 0xe2c400,4, 0xe2c440,15, 0xe2c480,4, 0xe2c4c0,15, 0xe2c500,4, 0xe2c540,15, 0xe2c580,4, 0xe2c5c0,15, 0xe2c600,4, 0xe2c640,10, 0xe2c680,4, 0xe2c6c0,10, 0xe2c800,4, 0xe2c840,33, 0xe2ca00,13, 0xe2ca80,1, 0xe2ca88,8, 0xe2cac0,6, 0xe2cae0,1, 0xe2cae8,2, 0xe2cb04,14, 0xe2cc00,4, 0xe2ccc8,1, 0xe2cfcc,3, 0xe2cfe0,99, 0xe2d400,4, 0xe2d440,15, 0xe2d480,4, 0xe2d4c0,15, 0xe2d500,4, 0xe2d540,15, 0xe2d580,4, 0xe2d5c0,15, 0xe2d600,4, 0xe2d640,10, 0xe2d680,4, 0xe2d6c0,10, 0xe2d800,4, 0xe2d840,33, 0xe2da00,13, 0xe2da80,1, 0xe2da88,8, 0xe2dac0,6, 0xe2dae0,1, 0xe2dae8,2, 0xe2db04,14, 0xe2dc00,4, 0xe2dcc8,1, 0xe2dfcc,3, 0xe2dfe0,27, 0xe2f000,19, 0xe2fa00,10, 0xe2fa80,3, 0xe2fb00,6, 0xe30000,51, 0xe30a00,10, 0xe30a80,3, 0xe31000,2, 0xe3100c,4, 0xe31028,3, 0xe31038,4, 0xe31050,2, 0xe31080,4, 0xe31098,7, 0xe31120,4, 0xe31200,4, 0xe31214,7, 0xe31234,3, 0xe31280,8, 0xe312c0,5, 0xe31300,2, 0xe3130c,3, 0xe31400,24, 0xe31464,2, 0xe31470,3, 0xe31500,25, 0xe315c0,8, 0xe315e8,5, 0xe31600,5, 0xe31618,1, 0xe31620,1, 0xe31628,1, 0xe31630,2, 0xe31640,2, 0xe31650,2, 0xe31690,4, 0xe31740,2, 0xe31760,6, 0xe31780,6, 0xe317a0,6, 0xe317c0,6, 0xe317e0,1, 0xe31800,2, 0xe3180c,4, 0xe31828,3, 0xe31838,4, 0xe31850,2, 0xe31880,4, 0xe31898,7, 0xe31920,4, 0xe31a00,4, 0xe31a14,7, 0xe31a34,3, 0xe31a80,8, 0xe31ac0,5, 0xe31b00,2, 0xe31b0c,3, 0xe31c00,24, 0xe31c64,2, 0xe31c70,3, 0xe31d00,25, 0xe31dc0,8, 0xe31de8,5, 0xe31e00,5, 0xe31e18,1, 0xe31e20,1, 0xe31e28,1, 0xe31e30,2, 0xe31e40,2, 0xe31e50,2, 0xe31e90,4, 0xe31f40,2, 0xe31f60,6, 0xe31f80,6, 0xe31fa0,6, 0xe31fc0,6, 0xe31fe0,1, 0xe32000,19, 0xe32080,2, 0xe320b0,2, 0xe320c0,2, 0xe40000,11, 0xe40040,16, 0xe40084,5, 0xe40200,7, 0xe40220,6, 0xe40240,7, 0xe40260,6, 0xe40280,6, 0xe402a0,2, 0xe402ac,2, 0xe402c0,7, 0xe402e0,7, 0xe40300,2, 0xe4030c,2, 0xe40320,6, 0xe40400,2, 0xe41000,19, 0xe42104,23, 0xe42180,7, 0xe421a0,6, 0xe421c0,7, 0xe421e0,6, 0xe42200,4, 0xe42220,4, 0xe42240,11, 0xe42270,32, 0xe42300,24, 0xe42380,20, 0xe42400,61, 0xe42500,25, 0xe42568,4, 0xe42580,2, 0xe425a0,1, 0xe425c0,11, 0xe42600,9, 0xe42640,3, 0xe42650,3, 0xe42664,3, 0xe42680,22, 0xe42800,11, 0xe43000,536, 0xe44104,23, 0xe44180,7, 0xe441a0,6, 0xe441c0,7, 0xe441e0,6, 0xe44200,4, 0xe44220,4, 0xe44240,11, 0xe44270,32, 0xe44300,24, 0xe44380,20, 0xe44400,61, 0xe44500,25, 0xe44568,4, 0xe44580,2, 0xe445a0,1, 0xe445c0,11, 0xe44600,9, 0xe44640,3, 0xe44650,3, 0xe44664,3, 0xe44680,22, 0xe44800,11, 0xe45000,536, 0xe4a000,7, 0xe4a048,8, 0xe4a080,8, 0xe4a100,7, 0xe4a148,8, 0xe4a180,8, 0xe50000,11, 0xe50040,16, 0xe50084,5, 0xe50200,7, 0xe50220,6, 0xe50240,7, 0xe50260,6, 0xe50280,6, 0xe502a0,2, 0xe502ac,2, 0xe502c0,7, 0xe502e0,7, 0xe50300,2, 0xe5030c,2, 0xe50320,6, 0xe50400,2, 0xe51000,19, 0xe52104,23, 0xe52180,7, 0xe521a0,6, 0xe521c0,7, 0xe521e0,6, 0xe52200,4, 0xe52220,4, 0xe52240,11, 0xe52270,32, 0xe52300,24, 0xe52380,20, 0xe52400,61, 0xe52500,25, 0xe52568,4, 0xe52580,2, 0xe525a0,1, 0xe525c0,11, 0xe52600,9, 0xe52640,3, 0xe52650,3, 0xe52664,3, 0xe52680,22, 0xe52800,11, 0xe53000,536, 0xe54104,23, 0xe54180,7, 0xe541a0,6, 0xe541c0,7, 0xe541e0,6, 0xe54200,4, 0xe54220,4, 0xe54240,11, 0xe54270,32, 0xe54300,24, 0xe54380,20, 0xe54400,61, 0xe54500,25, 0xe54568,4, 0xe54580,2, 0xe545a0,1, 0xe545c0,11, 0xe54600,9, 0xe54640,3, 0xe54650,3, 0xe54664,3, 0xe54680,22, 0xe54800,11, 0xe55000,536, 0xe5a000,7, 0xe5a048,8, 0xe5a080,8, 0xe5a100,7, 0xe5a148,8, 0xe5a180,8, 0xe60400,4, 0xe60440,4, 0xe605c0,1, 0xe60600,8, 0xe60800,18, 0xe60880,13, 0xe608f0,3, 0xe60900,18, 0xe60980,13, 0xe609f0,3, 0xe60e00,4, 0xe60e20,4, 0xe60e80,16, 0xe60f00,1, 0xe60f20,1, 0xe61020,2, 0xe61208,6, 0xe61228,10, 0xe61288,6, 0xe612a8,10, 0xe61600,32, 0xe618c0,8, 0xe61900,24, 0xe619b0,4, 0xe61aa0,2, 0xe61ac0,4, 0xe62200,19, 0xe62280,19, 0xe62400,14, 0xe6243c,9, 0xe62464,14, 0xe624a0,2, 0xe624ac,2, 0xe62500,14, 0xe6253c,9, 0xe62564,14, 0xe625a0,2, 0xe625ac,2, 0xe62800,19, 0xe62880,19, 0xe62a10,2, 0xe62a1c,1, 0xe62a50,2, 0xe62a5c,1, 0xe62c00,7, 0xe62c20,1, 0xe62c54,18, 0xe62ca0,1, 0xe62cd4,11, 0xe62e00,1, 0xe62e08,6, 0xe63180,3, 0xe64400,4, 0xe64440,4, 0xe645c0,1, 0xe64600,8, 0xe64800,18, 0xe64880,13, 0xe648f0,3, 0xe64900,18, 0xe64980,13, 0xe649f0,3, 0xe64e00,4, 0xe64e20,4, 0xe64e80,16, 0xe64f00,1, 0xe64f20,1, 0xe65020,2, 0xe65208,6, 0xe65228,10, 0xe65288,6, 0xe652a8,10, 0xe65600,32, 0xe658c0,8, 0xe65900,24, 0xe659b0,4, 0xe65aa0,2, 0xe65ac0,4, 0xe66200,19, 0xe66280,19, 0xe66400,14, 0xe6643c,9, 0xe66464,14, 0xe664a0,2, 0xe664ac,2, 0xe66500,14, 0xe6653c,9, 0xe66564,14, 0xe665a0,2, 0xe665ac,2, 0xe66800,19, 0xe66880,19, 0xe66a10,2, 0xe66a1c,1, 0xe66a50,2, 0xe66a5c,1, 0xe66c00,7, 0xe66c20,1, 0xe66c54,18, 0xe66ca0,1, 0xe66cd4,11, 0xe66e00,1, 0xe66e08,6, 0xe67180,3, 0xe69000,13, 0xe6e000,19, 0xe6ea00,10, 0xe6ea80,3, 0xe6f000,1, 0xe6f008,5, 0xe6f038,1, 0xe6f044,1, 0xe6f050,2, 0xe6f060,8, 0xe6f140,19, 0xe6f190,4, 0xe70000,2, 0xe7000c,2, 0xe70040,7, 0xe70100,3, 0xe70110,3, 0xe70120,5, 0xe70200,6, 0xe70240,5, 0xe70400,2, 0xe7040c,2, 0xe70440,7, 0xe70500,3, 0xe70510,3, 0xe70520,5, 0xe70600,6, 0xe70640,5, 0xe70800,2, 0xe7080c,2, 0xe70840,7, 0xe70900,3, 0xe70910,3, 0xe70920,5, 0xe70a00,6, 0xe70a40,5, 0xe70c00,2, 0xe70c0c,2, 0xe70c40,7, 0xe70d00,3, 0xe70d10,3, 0xe70d20,5, 0xe70e00,6, 0xe70e40,5, 0xe71000,2, 0xe7100c,2, 0xe71040,7, 0xe71100,3, 0xe71110,3, 0xe71120,5, 0xe71200,6, 0xe71240,5, 0xe71400,2, 0xe7140c,2, 0xe71440,7, 0xe71500,3, 0xe71510,3, 0xe71520,5, 0xe71600,6, 0xe71640,5, 0xe71800,2, 0xe7180c,2, 0xe71840,7, 0xe71900,3, 0xe71910,3, 0xe71920,5, 0xe71a00,6, 0xe71a40,5, 0xe71c00,2, 0xe71c0c,2, 0xe71c40,7, 0xe71d00,3, 0xe71d10,3, 0xe71d20,5, 0xe71e00,6, 0xe71e40,5, 0xe72000,5, 0xe72040,9, 0xe72100,3, 0xe72200,1, 0xe72210,1, 0xe72220,1, 0xe72230,1, 0xe72240,1, 0xe72300,3, 0xe72314,1, 0xe72320,4, 0xe72400,5, 0xe72440,5, 0xe73000,80, 0xe73200,1, 0xe78000,7, 0xe78030,2, 0xe78040,7, 0xe78070,2, 0xe78100,2, 0xe78120,2, 0xe78140,2, 0xe78160,2, 0xe78180,9, 0xe78200,7, 0xe78230,2, 0xe78240,7, 0xe78270,2, 0xe78300,2, 0xe78320,2, 0xe78340,2, 0xe78360,2, 0xe78380,9, 0xe78400,11, 0xe78500,11, 0xe79000,3, 0xe79010,2, 0xe7901c,5, 0xe79040,8, 0xe79080,3, 0xe79090,2, 0xe7909c,5, 0xe790c0,8, 0xe79100,3, 0xe79110,2, 0xe7911c,5, 0xe79140,8, 0xe79180,3, 0xe79190,2, 0xe7919c,5, 0xe791c0,8, 0xe79200,7, 0xe79220,12, 0xe79280,7, 0xe792a0,12, 0xe79300,3, 0xe79310,1, 0xe79400,3, 0xe79410,2, 0xe7941c,5, 0xe79440,8, 0xe79480,3, 0xe79490,2, 0xe7949c,5, 0xe794c0,8, 0xe79500,3, 0xe79510,2, 0xe7951c,5, 0xe79540,8, 0xe79580,3, 0xe79590,2, 0xe7959c,5, 0xe795c0,8, 0xe79600,7, 0xe79620,12, 0xe79680,7, 0xe796a0,12, 0xe79700,3, 0xe79710,1, 0xe79804,1, 0xe79824,21, 0xe79880,16, 0xe79900,5, 0xe79920,11, 0xe79950,9, 0xe79980,22, 0xe79a00,22, 0xe79a80,22, 0xe79b00,22, 0xe79b80,22, 0xe79c00,22, 0xe79c80,22, 0xe79d00,22, 0xe79d80,3, 0xe80000,5, 0xe80018,5, 0xe80030,3, 0xe80044,3, 0xe80100,58, 0xe801f0,3, 0xe80280,3, 0xe80400,5, 0xe80418,5, 0xe80430,3, 0xe80444,3, 0xe80500,58, 0xe805f0,3, 0xe80680,3, 0xe81018,2, 0xe81100,2, 0xe81110,10, 0xe81140,2, 0xe81150,10, 0xe81208,1, 0xe81220,12, 0xe81280,1, 0xe81288,2, 0xe81400,4, 0xe82000,5, 0xe82018,5, 0xe82030,3, 0xe82044,3, 0xe82100,58, 0xe821f0,3, 0xe82280,3, 0xe82400,5, 0xe82418,5, 0xe82430,3, 0xe82444,3, 0xe82500,58, 0xe825f0,3, 0xe82680,3, 0xe83018,2, 0xe83100,2, 0xe83110,10, 0xe83140,2, 0xe83150,10, 0xe83208,1, 0xe83220,12, 0xe83280,1, 0xe83288,2, 0xe83400,4, 0xe84000,2, 0xe8400c,1, 0xe84030,3, 0xe84040,2, 0xe8404c,1, 0xe84070,3, 0xe84100,2, 0xe8410c,1, 0xe84130,3, 0xe84140,2, 0xe8414c,1, 0xe84170,3, 0xe84200,15, 0xe84280,15, 0xe84300,15, 0xe84380,15, 0xe84400,15, 0xe84480,15, 0xe84500,15, 0xe84580,15, 0xe84604,10, 0xe84700,2, 0xe8470c,7, 0xe84740,1, 0xe84770,1, 0xe847c0,2, 0xe847d0,4, 0xe85000,3, 0xe85010,1, 0xe8501c,3, 0xe85104,1, 0xe85110,4, 0xe85124,1, 0xe85130,4, 0xe85144,1, 0xe85150,4, 0xe85164,1, 0xe85170,5, 0xe85190,4, 0xe85a00,4, 0xe85c00,129, 0xe86000,37, 0xe86098,1, 0xe86100,37, 0xe86198,1, 0xe86200,37, 0xe86298,1, 0xe86300,37, 0xe86398,1, 0xe86400,37, 0xe86498,1, 0xe86500,37, 0xe86598,1, 0xe86600,37, 0xe86698,1, 0xe86700,37, 0xe86798,1, 0xe8c000,91, 0xe8c400,4, 0xe8c440,15, 0xe8c480,4, 0xe8c4c0,15, 0xe8c500,4, 0xe8c540,15, 0xe8c580,4, 0xe8c5c0,15, 0xe8c600,4, 0xe8c640,10, 0xe8c680,4, 0xe8c6c0,10, 0xe8c800,4, 0xe8c840,33, 0xe8ca00,13, 0xe8ca80,1, 0xe8ca88,8, 0xe8cac0,6, 0xe8cae0,1, 0xe8cae8,2, 0xe8cb04,14, 0xe8cc00,4, 0xe8ccc8,1, 0xe8cfcc,3, 0xe8cfe0,99, 0xe8d400,4, 0xe8d440,15, 0xe8d480,4, 0xe8d4c0,15, 0xe8d500,4, 0xe8d540,15, 0xe8d580,4, 0xe8d5c0,15, 0xe8d600,4, 0xe8d640,10, 0xe8d680,4, 0xe8d6c0,10, 0xe8d800,4, 0xe8d840,33, 0xe8da00,13, 0xe8da80,1, 0xe8da88,8, 0xe8dac0,6, 0xe8dae0,1, 0xe8dae8,2, 0xe8db04,14, 0xe8dc00,4, 0xe8dcc8,1, 0xe8dfcc,3, 0xe8dfe0,27, 0xe8f000,19, 0xe8fa00,10, 0xe8fa80,3, 0xe8fb00,6, 0xe90000,51, 0xe90a00,10, 0xe90a80,3, 0xe91000,2, 0xe9100c,4, 0xe91028,3, 0xe91038,4, 0xe91050,2, 0xe91080,4, 0xe91098,7, 0xe91120,4, 0xe91200,4, 0xe91214,7, 0xe91234,3, 0xe91280,8, 0xe912c0,5, 0xe91300,2, 0xe9130c,3, 0xe91400,24, 0xe91464,2, 0xe91470,3, 0xe91500,25, 0xe915c0,8, 0xe915e8,5, 0xe91600,5, 0xe91618,1, 0xe91620,1, 0xe91628,1, 0xe91630,2, 0xe91640,2, 0xe91650,2, 0xe91690,4, 0xe91740,2, 0xe91760,6, 0xe91780,6, 0xe917a0,6, 0xe917c0,6, 0xe917e0,1, 0xe91800,2, 0xe9180c,4, 0xe91828,3, 0xe91838,4, 0xe91850,2, 0xe91880,4, 0xe91898,7, 0xe91920,4, 0xe91a00,4, 0xe91a14,7, 0xe91a34,3, 0xe91a80,8, 0xe91ac0,5, 0xe91b00,2, 0xe91b0c,3, 0xe91c00,24, 0xe91c64,2, 0xe91c70,3, 0xe91d00,25, 0xe91dc0,8, 0xe91de8,5, 0xe91e00,5, 0xe91e18,1, 0xe91e20,1, 0xe91e28,1, 0xe91e30,2, 0xe91e40,2, 0xe91e50,2, 0xe91e90,4, 0xe91f40,2, 0xe91f60,6, 0xe91f80,6, 0xe91fa0,6, 0xe91fc0,6, 0xe91fe0,1, 0xe92000,19, 0xe92080,2, 0xe920b0,2, 0xe920c0,2, 0xea0000,11, 0xea0040,16, 0xea0084,5, 0xea0200,7, 0xea0220,6, 0xea0240,7, 0xea0260,6, 0xea0280,6, 0xea02a0,2, 0xea02ac,2, 0xea02c0,7, 0xea02e0,7, 0xea0300,2, 0xea030c,2, 0xea0320,6, 0xea0400,2, 0xea1000,19, 0xea2104,23, 0xea2180,7, 0xea21a0,6, 0xea21c0,7, 0xea21e0,6, 0xea2200,4, 0xea2220,4, 0xea2240,11, 0xea2270,32, 0xea2300,24, 0xea2380,20, 0xea2400,61, 0xea2500,25, 0xea2568,4, 0xea2580,2, 0xea25a0,1, 0xea25c0,11, 0xea2600,9, 0xea2640,3, 0xea2650,3, 0xea2664,3, 0xea2680,22, 0xea2800,11, 0xea3000,536, 0xea4104,23, 0xea4180,7, 0xea41a0,6, 0xea41c0,7, 0xea41e0,6, 0xea4200,4, 0xea4220,4, 0xea4240,11, 0xea4270,32, 0xea4300,24, 0xea4380,20, 0xea4400,61, 0xea4500,25, 0xea4568,4, 0xea4580,2, 0xea45a0,1, 0xea45c0,11, 0xea4600,9, 0xea4640,3, 0xea4650,3, 0xea4664,3, 0xea4680,22, 0xea4800,11, 0xea5000,536, 0xeaa000,7, 0xeaa048,8, 0xeaa080,8, 0xeaa100,7, 0xeaa148,8, 0xeaa180,8, 0xeb0000,11, 0xeb0040,16, 0xeb0084,5, 0xeb0200,7, 0xeb0220,6, 0xeb0240,7, 0xeb0260,6, 0xeb0280,6, 0xeb02a0,2, 0xeb02ac,2, 0xeb02c0,7, 0xeb02e0,7, 0xeb0300,2, 0xeb030c,2, 0xeb0320,6, 0xeb0400,2, 0xeb1000,19, 0xeb2104,23, 0xeb2180,7, 0xeb21a0,6, 0xeb21c0,7, 0xeb21e0,6, 0xeb2200,4, 0xeb2220,4, 0xeb2240,11, 0xeb2270,32, 0xeb2300,24, 0xeb2380,20, 0xeb2400,61, 0xeb2500,25, 0xeb2568,4, 0xeb2580,2, 0xeb25a0,1, 0xeb25c0,11, 0xeb2600,9, 0xeb2640,3, 0xeb2650,3, 0xeb2664,3, 0xeb2680,22, 0xeb2800,11, 0xeb3000,536, 0xeb4104,23, 0xeb4180,7, 0xeb41a0,6, 0xeb41c0,7, 0xeb41e0,6, 0xeb4200,4, 0xeb4220,4, 0xeb4240,11, 0xeb4270,32, 0xeb4300,24, 0xeb4380,20, 0xeb4400,61, 0xeb4500,25, 0xeb4568,4, 0xeb4580,2, 0xeb45a0,1, 0xeb45c0,11, 0xeb4600,9, 0xeb4640,3, 0xeb4650,3, 0xeb4664,3, 0xeb4680,22, 0xeb4800,11, 0xeb5000,536, 0xeba000,7, 0xeba048,8, 0xeba080,8, 0xeba100,7, 0xeba148,8, 0xeba180,8, 0xec0400,4, 0xec0440,4, 0xec05c0,1, 0xec0600,8, 0xec0800,18, 0xec0880,13, 0xec08f0,3, 0xec0900,18, 0xec0980,13, 0xec09f0,3, 0xec0e00,4, 0xec0e20,4, 0xec0e80,16, 0xec0f00,1, 0xec0f20,1, 0xec1020,2, 0xec1208,6, 0xec1228,10, 0xec1288,6, 0xec12a8,10, 0xec1600,32, 0xec18c0,8, 0xec1900,24, 0xec19b0,4, 0xec1aa0,2, 0xec1ac0,4, 0xec2200,19, 0xec2280,19, 0xec2400,14, 0xec243c,9, 0xec2464,14, 0xec24a0,2, 0xec24ac,2, 0xec2500,14, 0xec253c,9, 0xec2564,14, 0xec25a0,2, 0xec25ac,2, 0xec2800,19, 0xec2880,19, 0xec2a10,2, 0xec2a1c,1, 0xec2a50,2, 0xec2a5c,1, 0xec2c00,7, 0xec2c20,1, 0xec2c54,18, 0xec2ca0,1, 0xec2cd4,11, 0xec2e00,1, 0xec2e08,6, 0xec3180,3, 0xec4400,4, 0xec4440,4, 0xec45c0,1, 0xec4600,8, 0xec4800,18, 0xec4880,13, 0xec48f0,3, 0xec4900,18, 0xec4980,13, 0xec49f0,3, 0xec4e00,4, 0xec4e20,4, 0xec4e80,16, 0xec4f00,1, 0xec4f20,1, 0xec5020,2, 0xec5208,6, 0xec5228,10, 0xec5288,6, 0xec52a8,10, 0xec5600,32, 0xec58c0,8, 0xec5900,24, 0xec59b0,4, 0xec5aa0,2, 0xec5ac0,4, 0xec6200,19, 0xec6280,19, 0xec6400,14, 0xec643c,9, 0xec6464,14, 0xec64a0,2, 0xec64ac,2, 0xec6500,14, 0xec653c,9, 0xec6564,14, 0xec65a0,2, 0xec65ac,2, 0xec6800,19, 0xec6880,19, 0xec6a10,2, 0xec6a1c,1, 0xec6a50,2, 0xec6a5c,1, 0xec6c00,7, 0xec6c20,1, 0xec6c54,18, 0xec6ca0,1, 0xec6cd4,11, 0xec6e00,1, 0xec6e08,6, 0xec7180,3, 0xec9000,13, 0xece000,19, 0xecea00,10, 0xecea80,3, 0xecf000,1, 0xecf008,5, 0xecf038,1, 0xecf044,1, 0xecf050,2, 0xecf060,8, 0xecf140,19, 0xecf190,4, 0xed0000,2, 0xed000c,2, 0xed0040,7, 0xed0100,3, 0xed0110,3, 0xed0120,5, 0xed0200,6, 0xed0240,5, 0xed0400,2, 0xed040c,2, 0xed0440,7, 0xed0500,3, 0xed0510,3, 0xed0520,5, 0xed0600,6, 0xed0640,5, 0xed0800,2, 0xed080c,2, 0xed0840,7, 0xed0900,3, 0xed0910,3, 0xed0920,5, 0xed0a00,6, 0xed0a40,5, 0xed0c00,2, 0xed0c0c,2, 0xed0c40,7, 0xed0d00,3, 0xed0d10,3, 0xed0d20,5, 0xed0e00,6, 0xed0e40,5, 0xed1000,2, 0xed100c,2, 0xed1040,7, 0xed1100,3, 0xed1110,3, 0xed1120,5, 0xed1200,6, 0xed1240,5, 0xed1400,2, 0xed140c,2, 0xed1440,7, 0xed1500,3, 0xed1510,3, 0xed1520,5, 0xed1600,6, 0xed1640,5, 0xed1800,2, 0xed180c,2, 0xed1840,7, 0xed1900,3, 0xed1910,3, 0xed1920,5, 0xed1a00,6, 0xed1a40,5, 0xed1c00,2, 0xed1c0c,2, 0xed1c40,7, 0xed1d00,3, 0xed1d10,3, 0xed1d20,5, 0xed1e00,6, 0xed1e40,5, 0xed2000,5, 0xed2040,9, 0xed2100,3, 0xed2200,1, 0xed2210,1, 0xed2220,1, 0xed2230,1, 0xed2240,1, 0xed2300,3, 0xed2314,1, 0xed2320,4, 0xed2400,5, 0xed2440,5, 0xed3000,80, 0xed3200,1, 0xed8000,7, 0xed8030,2, 0xed8040,7, 0xed8070,2, 0xed8100,2, 0xed8120,2, 0xed8140,2, 0xed8160,2, 0xed8180,9, 0xed8200,7, 0xed8230,2, 0xed8240,7, 0xed8270,2, 0xed8300,2, 0xed8320,2, 0xed8340,2, 0xed8360,2, 0xed8380,9, 0xed8400,11, 0xed8500,11, 0xed9000,3, 0xed9010,2, 0xed901c,5, 0xed9040,8, 0xed9080,3, 0xed9090,2, 0xed909c,5, 0xed90c0,8, 0xed9100,3, 0xed9110,2, 0xed911c,5, 0xed9140,8, 0xed9180,3, 0xed9190,2, 0xed919c,5, 0xed91c0,8, 0xed9200,7, 0xed9220,12, 0xed9280,7, 0xed92a0,12, 0xed9300,3, 0xed9310,1, 0xed9400,3, 0xed9410,2, 0xed941c,5, 0xed9440,8, 0xed9480,3, 0xed9490,2, 0xed949c,5, 0xed94c0,8, 0xed9500,3, 0xed9510,2, 0xed951c,5, 0xed9540,8, 0xed9580,3, 0xed9590,2, 0xed959c,5, 0xed95c0,8, 0xed9600,7, 0xed9620,12, 0xed9680,7, 0xed96a0,12, 0xed9700,3, 0xed9710,1, 0xed9804,1, 0xed9824,21, 0xed9880,16, 0xed9900,5, 0xed9920,11, 0xed9950,9, 0xed9980,22, 0xed9a00,22, 0xed9a80,22, 0xed9b00,22, 0xed9b80,22, 0xed9c00,22, 0xed9c80,22, 0xed9d00,22, 0xed9d80,3, 0xee0000,5, 0xee0018,5, 0xee0030,3, 0xee0044,3, 0xee0100,58, 0xee01f0,3, 0xee0280,3, 0xee0400,5, 0xee0418,5, 0xee0430,3, 0xee0444,3, 0xee0500,58, 0xee05f0,3, 0xee0680,3, 0xee1018,2, 0xee1100,2, 0xee1110,10, 0xee1140,2, 0xee1150,10, 0xee1208,1, 0xee1220,12, 0xee1280,1, 0xee1288,2, 0xee1400,4, 0xee2000,5, 0xee2018,5, 0xee2030,3, 0xee2044,3, 0xee2100,58, 0xee21f0,3, 0xee2280,3, 0xee2400,5, 0xee2418,5, 0xee2430,3, 0xee2444,3, 0xee2500,58, 0xee25f0,3, 0xee2680,3, 0xee3018,2, 0xee3100,2, 0xee3110,10, 0xee3140,2, 0xee3150,10, 0xee3208,1, 0xee3220,12, 0xee3280,1, 0xee3288,2, 0xee3400,4, 0xee4000,2, 0xee400c,1, 0xee4030,3, 0xee4040,2, 0xee404c,1, 0xee4070,3, 0xee4100,2, 0xee410c,1, 0xee4130,3, 0xee4140,2, 0xee414c,1, 0xee4170,3, 0xee4200,15, 0xee4280,15, 0xee4300,15, 0xee4380,15, 0xee4400,15, 0xee4480,15, 0xee4500,15, 0xee4580,15, 0xee4604,10, 0xee4700,2, 0xee470c,7, 0xee4740,1, 0xee4770,1, 0xee47c0,2, 0xee47d0,4, 0xee5000,3, 0xee5010,1, 0xee501c,3, 0xee5104,1, 0xee5110,4, 0xee5124,1, 0xee5130,4, 0xee5144,1, 0xee5150,4, 0xee5164,1, 0xee5170,5, 0xee5190,4, 0xee5a00,4, 0xee5c00,129, 0xee6000,37, 0xee6098,1, 0xee6100,37, 0xee6198,1, 0xee6200,37, 0xee6298,1, 0xee6300,37, 0xee6398,1, 0xee6400,37, 0xee6498,1, 0xee6500,37, 0xee6598,1, 0xee6600,37, 0xee6698,1, 0xee6700,37, 0xee6798,1, 0xeec000,91, 0xeec400,4, 0xeec440,15, 0xeec480,4, 0xeec4c0,15, 0xeec500,4, 0xeec540,15, 0xeec580,4, 0xeec5c0,15, 0xeec600,4, 0xeec640,10, 0xeec680,4, 0xeec6c0,10, 0xeec800,4, 0xeec840,33, 0xeeca00,13, 0xeeca80,1, 0xeeca88,8, 0xeecac0,6, 0xeecae0,1, 0xeecae8,2, 0xeecb04,14, 0xeecc00,4, 0xeeccc8,1, 0xeecfcc,3, 0xeecfe0,99, 0xeed400,4, 0xeed440,15, 0xeed480,4, 0xeed4c0,15, 0xeed500,4, 0xeed540,15, 0xeed580,4, 0xeed5c0,15, 0xeed600,4, 0xeed640,10, 0xeed680,4, 0xeed6c0,10, 0xeed800,4, 0xeed840,33, 0xeeda00,13, 0xeeda80,1, 0xeeda88,8, 0xeedac0,6, 0xeedae0,1, 0xeedae8,2, 0xeedb04,14, 0xeedc00,4, 0xeedcc8,1, 0xeedfcc,3, 0xeedfe0,27, 0xeef000,19, 0xeefa00,10, 0xeefa80,3, 0xeefb00,6, 0xef0000,51, 0xef0a00,10, 0xef0a80,3, 0xef1000,2, 0xef100c,4, 0xef1028,3, 0xef1038,4, 0xef1050,2, 0xef1080,4, 0xef1098,7, 0xef1120,4, 0xef1200,4, 0xef1214,7, 0xef1234,3, 0xef1280,8, 0xef12c0,5, 0xef1300,2, 0xef130c,3, 0xef1400,24, 0xef1464,2, 0xef1470,3, 0xef1500,25, 0xef15c0,8, 0xef15e8,5, 0xef1600,5, 0xef1618,1, 0xef1620,1, 0xef1628,1, 0xef1630,2, 0xef1640,2, 0xef1650,2, 0xef1690,4, 0xef1740,2, 0xef1760,6, 0xef1780,6, 0xef17a0,6, 0xef17c0,6, 0xef17e0,1, 0xef1800,2, 0xef180c,4, 0xef1828,3, 0xef1838,4, 0xef1850,2, 0xef1880,4, 0xef1898,7, 0xef1920,4, 0xef1a00,4, 0xef1a14,7, 0xef1a34,3, 0xef1a80,8, 0xef1ac0,5, 0xef1b00,2, 0xef1b0c,3, 0xef1c00,24, 0xef1c64,2, 0xef1c70,3, 0xef1d00,25, 0xef1dc0,8, 0xef1de8,5, 0xef1e00,5, 0xef1e18,1, 0xef1e20,1, 0xef1e28,1, 0xef1e30,2, 0xef1e40,2, 0xef1e50,2, 0xef1e90,4, 0xef1f40,2, 0xef1f60,6, 0xef1f80,6, 0xef1fa0,6, 0xef1fc0,6, 0xef1fe0,1, 0xef2000,19, 0xef2080,2, 0xef20b0,2, 0xef20c0,2, 0xf00000,11, 0xf00040,16, 0xf00084,5, 0xf00200,7, 0xf00220,6, 0xf00240,7, 0xf00260,6, 0xf00280,6, 0xf002a0,2, 0xf002ac,2, 0xf002c0,7, 0xf002e0,7, 0xf00300,2, 0xf0030c,2, 0xf00320,6, 0xf00400,2, 0xf01000,19, 0xf02104,23, 0xf02180,7, 0xf021a0,6, 0xf021c0,7, 0xf021e0,6, 0xf02200,4, 0xf02220,4, 0xf02240,11, 0xf02270,32, 0xf02300,24, 0xf02380,20, 0xf02400,61, 0xf02500,25, 0xf02568,4, 0xf02580,2, 0xf025a0,1, 0xf025c0,11, 0xf02600,9, 0xf02640,3, 0xf02650,3, 0xf02664,3, 0xf02680,22, 0xf02800,11, 0xf03000,536, 0xf04104,23, 0xf04180,7, 0xf041a0,6, 0xf041c0,7, 0xf041e0,6, 0xf04200,4, 0xf04220,4, 0xf04240,11, 0xf04270,32, 0xf04300,24, 0xf04380,20, 0xf04400,61, 0xf04500,25, 0xf04568,4, 0xf04580,2, 0xf045a0,1, 0xf045c0,11, 0xf04600,9, 0xf04640,3, 0xf04650,3, 0xf04664,3, 0xf04680,22, 0xf04800,11, 0xf05000,536, 0xf0a000,7, 0xf0a048,8, 0xf0a080,8, 0xf0a100,7, 0xf0a148,8, 0xf0a180,8, 0xf10000,11, 0xf10040,16, 0xf10084,5, 0xf10200,7, 0xf10220,6, 0xf10240,7, 0xf10260,6, 0xf10280,6, 0xf102a0,2, 0xf102ac,2, 0xf102c0,7, 0xf102e0,7, 0xf10300,2, 0xf1030c,2, 0xf10320,6, 0xf10400,2, 0xf11000,19, 0xf12104,23, 0xf12180,7, 0xf121a0,6, 0xf121c0,7, 0xf121e0,6, 0xf12200,4, 0xf12220,4, 0xf12240,11, 0xf12270,32, 0xf12300,24, 0xf12380,20, 0xf12400,61, 0xf12500,25, 0xf12568,4, 0xf12580,2, 0xf125a0,1, 0xf125c0,11, 0xf12600,9, 0xf12640,3, 0xf12650,3, 0xf12664,3, 0xf12680,22, 0xf12800,11, 0xf13000,536, 0xf14104,23, 0xf14180,7, 0xf141a0,6, 0xf141c0,7, 0xf141e0,6, 0xf14200,4, 0xf14220,4, 0xf14240,11, 0xf14270,32, 0xf14300,24, 0xf14380,20, 0xf14400,61, 0xf14500,25, 0xf14568,4, 0xf14580,2, 0xf145a0,1, 0xf145c0,11, 0xf14600,9, 0xf14640,3, 0xf14650,3, 0xf14664,3, 0xf14680,22, 0xf14800,11, 0xf15000,536, 0xf1a000,7, 0xf1a048,8, 0xf1a080,8, 0xf1a100,7, 0xf1a148,8, 0xf1a180,8, 0xf20400,4, 0xf20440,4, 0xf205c0,1, 0xf20600,8, 0xf20800,18, 0xf20880,13, 0xf208f0,3, 0xf20900,18, 0xf20980,13, 0xf209f0,3, 0xf20e00,4, 0xf20e20,4, 0xf20e80,16, 0xf20f00,1, 0xf20f20,1, 0xf21020,2, 0xf21208,6, 0xf21228,10, 0xf21288,6, 0xf212a8,10, 0xf21600,32, 0xf218c0,8, 0xf21900,24, 0xf219b0,4, 0xf21aa0,2, 0xf21ac0,4, 0xf22200,19, 0xf22280,19, 0xf22400,14, 0xf2243c,9, 0xf22464,14, 0xf224a0,2, 0xf224ac,2, 0xf22500,14, 0xf2253c,9, 0xf22564,14, 0xf225a0,2, 0xf225ac,2, 0xf22800,19, 0xf22880,19, 0xf22a10,2, 0xf22a1c,1, 0xf22a50,2, 0xf22a5c,1, 0xf22c00,7, 0xf22c20,1, 0xf22c54,18, 0xf22ca0,1, 0xf22cd4,11, 0xf22e00,1, 0xf22e08,6, 0xf23180,3, 0xf24400,4, 0xf24440,4, 0xf245c0,1, 0xf24600,8, 0xf24800,18, 0xf24880,13, 0xf248f0,3, 0xf24900,18, 0xf24980,13, 0xf249f0,3, 0xf24e00,4, 0xf24e20,4, 0xf24e80,16, 0xf24f00,1, 0xf24f20,1, 0xf25020,2, 0xf25208,6, 0xf25228,10, 0xf25288,6, 0xf252a8,10, 0xf25600,32, 0xf258c0,8, 0xf25900,24, 0xf259b0,4, 0xf25aa0,2, 0xf25ac0,4, 0xf26200,19, 0xf26280,19, 0xf26400,14, 0xf2643c,9, 0xf26464,14, 0xf264a0,2, 0xf264ac,2, 0xf26500,14, 0xf2653c,9, 0xf26564,14, 0xf265a0,2, 0xf265ac,2, 0xf26800,19, 0xf26880,19, 0xf26a10,2, 0xf26a1c,1, 0xf26a50,2, 0xf26a5c,1, 0xf26c00,7, 0xf26c20,1, 0xf26c54,18, 0xf26ca0,1, 0xf26cd4,11, 0xf26e00,1, 0xf26e08,6, 0xf27180,3, 0xf29000,13, 0xf2e000,19, 0xf2ea00,10, 0xf2ea80,3, 0xf2f000,1, 0xf2f008,5, 0xf2f038,1, 0xf2f044,1, 0xf2f050,2, 0xf2f060,8, 0xf2f140,19, 0xf2f190,4, 0xf30000,2, 0xf3000c,2, 0xf30040,7, 0xf30100,3, 0xf30110,3, 0xf30120,5, 0xf30200,6, 0xf30240,5, 0xf30400,2, 0xf3040c,2, 0xf30440,7, 0xf30500,3, 0xf30510,3, 0xf30520,5, 0xf30600,6, 0xf30640,5, 0xf30800,2, 0xf3080c,2, 0xf30840,7, 0xf30900,3, 0xf30910,3, 0xf30920,5, 0xf30a00,6, 0xf30a40,5, 0xf30c00,2, 0xf30c0c,2, 0xf30c40,7, 0xf30d00,3, 0xf30d10,3, 0xf30d20,5, 0xf30e00,6, 0xf30e40,5, 0xf31000,2, 0xf3100c,2, 0xf31040,7, 0xf31100,3, 0xf31110,3, 0xf31120,5, 0xf31200,6, 0xf31240,5, 0xf31400,2, 0xf3140c,2, 0xf31440,7, 0xf31500,3, 0xf31510,3, 0xf31520,5, 0xf31600,6, 0xf31640,5, 0xf31800,2, 0xf3180c,2, 0xf31840,7, 0xf31900,3, 0xf31910,3, 0xf31920,5, 0xf31a00,6, 0xf31a40,5, 0xf31c00,2, 0xf31c0c,2, 0xf31c40,7, 0xf31d00,3, 0xf31d10,3, 0xf31d20,5, 0xf31e00,6, 0xf31e40,5, 0xf32000,5, 0xf32040,9, 0xf32100,3, 0xf32200,1, 0xf32210,1, 0xf32220,1, 0xf32230,1, 0xf32240,1, 0xf32300,3, 0xf32314,1, 0xf32320,4, 0xf32400,5, 0xf32440,5, 0xf33000,80, 0xf33200,1, 0xf38000,7, 0xf38030,2, 0xf38040,7, 0xf38070,2, 0xf38100,2, 0xf38120,2, 0xf38140,2, 0xf38160,2, 0xf38180,9, 0xf38200,7, 0xf38230,2, 0xf38240,7, 0xf38270,2, 0xf38300,2, 0xf38320,2, 0xf38340,2, 0xf38360,2, 0xf38380,9, 0xf38400,11, 0xf38500,11, 0xf39000,3, 0xf39010,2, 0xf3901c,5, 0xf39040,8, 0xf39080,3, 0xf39090,2, 0xf3909c,5, 0xf390c0,8, 0xf39100,3, 0xf39110,2, 0xf3911c,5, 0xf39140,8, 0xf39180,3, 0xf39190,2, 0xf3919c,5, 0xf391c0,8, 0xf39200,7, 0xf39220,12, 0xf39280,7, 0xf392a0,12, 0xf39300,3, 0xf39310,1, 0xf39400,3, 0xf39410,2, 0xf3941c,5, 0xf39440,8, 0xf39480,3, 0xf39490,2, 0xf3949c,5, 0xf394c0,8, 0xf39500,3, 0xf39510,2, 0xf3951c,5, 0xf39540,8, 0xf39580,3, 0xf39590,2, 0xf3959c,5, 0xf395c0,8, 0xf39600,7, 0xf39620,12, 0xf39680,7, 0xf396a0,12, 0xf39700,3, 0xf39710,1, 0xf39804,1, 0xf39824,21, 0xf39880,16, 0xf39900,5, 0xf39920,11, 0xf39950,9, 0xf39980,22, 0xf39a00,22, 0xf39a80,22, 0xf39b00,22, 0xf39b80,22, 0xf39c00,22, 0xf39c80,22, 0xf39d00,22, 0xf39d80,3, 0xf40000,5, 0xf40018,5, 0xf40030,3, 0xf40044,3, 0xf40100,58, 0xf401f0,3, 0xf40280,3, 0xf40400,5, 0xf40418,5, 0xf40430,3, 0xf40444,3, 0xf40500,58, 0xf405f0,3, 0xf40680,3, 0xf41018,2, 0xf41100,2, 0xf41110,10, 0xf41140,2, 0xf41150,10, 0xf41208,1, 0xf41220,12, 0xf41280,1, 0xf41288,2, 0xf41400,4, 0xf42000,5, 0xf42018,5, 0xf42030,3, 0xf42044,3, 0xf42100,58, 0xf421f0,3, 0xf42280,3, 0xf42400,5, 0xf42418,5, 0xf42430,3, 0xf42444,3, 0xf42500,58, 0xf425f0,3, 0xf42680,3, 0xf43018,2, 0xf43100,2, 0xf43110,10, 0xf43140,2, 0xf43150,10, 0xf43208,1, 0xf43220,12, 0xf43280,1, 0xf43288,2, 0xf43400,4, 0xf44000,2, 0xf4400c,1, 0xf44030,3, 0xf44040,2, 0xf4404c,1, 0xf44070,3, 0xf44100,2, 0xf4410c,1, 0xf44130,3, 0xf44140,2, 0xf4414c,1, 0xf44170,3, 0xf44200,15, 0xf44280,15, 0xf44300,15, 0xf44380,15, 0xf44400,15, 0xf44480,15, 0xf44500,15, 0xf44580,15, 0xf44604,10, 0xf44700,2, 0xf4470c,7, 0xf44740,1, 0xf44770,1, 0xf447c0,2, 0xf447d0,4, 0xf45000,3, 0xf45010,1, 0xf4501c,3, 0xf45104,1, 0xf45110,4, 0xf45124,1, 0xf45130,4, 0xf45144,1, 0xf45150,4, 0xf45164,1, 0xf45170,5, 0xf45190,4, 0xf45a00,4, 0xf45c00,129, 0xf46000,37, 0xf46098,1, 0xf46100,37, 0xf46198,1, 0xf46200,37, 0xf46298,1, 0xf46300,37, 0xf46398,1, 0xf46400,37, 0xf46498,1, 0xf46500,37, 0xf46598,1, 0xf46600,37, 0xf46698,1, 0xf46700,37, 0xf46798,1, 0xf4c000,91, 0xf4c400,4, 0xf4c440,15, 0xf4c480,4, 0xf4c4c0,15, 0xf4c500,4, 0xf4c540,15, 0xf4c580,4, 0xf4c5c0,15, 0xf4c600,4, 0xf4c640,10, 0xf4c680,4, 0xf4c6c0,10, 0xf4c800,4, 0xf4c840,33, 0xf4ca00,13, 0xf4ca80,1, 0xf4ca88,8, 0xf4cac0,6, 0xf4cae0,1, 0xf4cae8,2, 0xf4cb04,14, 0xf4cc00,4, 0xf4ccc8,1, 0xf4cfcc,3, 0xf4cfe0,99, 0xf4d400,4, 0xf4d440,15, 0xf4d480,4, 0xf4d4c0,15, 0xf4d500,4, 0xf4d540,15, 0xf4d580,4, 0xf4d5c0,15, 0xf4d600,4, 0xf4d640,10, 0xf4d680,4, 0xf4d6c0,10, 0xf4d800,4, 0xf4d840,33, 0xf4da00,13, 0xf4da80,1, 0xf4da88,8, 0xf4dac0,6, 0xf4dae0,1, 0xf4dae8,2, 0xf4db04,14, 0xf4dc00,4, 0xf4dcc8,1, 0xf4dfcc,3, 0xf4dfe0,27, 0xf4f000,19, 0xf4fa00,10, 0xf4fa80,3, 0xf4fb00,6, 0xf50000,51, 0xf50a00,10, 0xf50a80,3, 0xf51000,2, 0xf5100c,4, 0xf51028,3, 0xf51038,4, 0xf51050,2, 0xf51080,4, 0xf51098,7, 0xf51120,4, 0xf51200,4, 0xf51214,7, 0xf51234,3, 0xf51280,8, 0xf512c0,5, 0xf51300,2, 0xf5130c,3, 0xf51400,24, 0xf51464,2, 0xf51470,3, 0xf51500,25, 0xf515c0,8, 0xf515e8,5, 0xf51600,5, 0xf51618,1, 0xf51620,1, 0xf51628,1, 0xf51630,2, 0xf51640,2, 0xf51650,2, 0xf51690,4, 0xf51740,2, 0xf51760,6, 0xf51780,6, 0xf517a0,6, 0xf517c0,6, 0xf517e0,1, 0xf51800,2, 0xf5180c,4, 0xf51828,3, 0xf51838,4, 0xf51850,2, 0xf51880,4, 0xf51898,7, 0xf51920,4, 0xf51a00,4, 0xf51a14,7, 0xf51a34,3, 0xf51a80,8, 0xf51ac0,5, 0xf51b00,2, 0xf51b0c,3, 0xf51c00,24, 0xf51c64,2, 0xf51c70,3, 0xf51d00,25, 0xf51dc0,8, 0xf51de8,5, 0xf51e00,5, 0xf51e18,1, 0xf51e20,1, 0xf51e28,1, 0xf51e30,2, 0xf51e40,2, 0xf51e50,2, 0xf51e90,4, 0xf51f40,2, 0xf51f60,6, 0xf51f80,6, 0xf51fa0,6, 0xf51fc0,6, 0xf51fe0,1, 0xf52000,19, 0xf52080,2, 0xf520b0,2, 0xf520c0,2, 0xf60000,11, 0xf60040,16, 0xf60084,5, 0xf60200,7, 0xf60220,6, 0xf60240,7, 0xf60260,6, 0xf60280,6, 0xf602a0,2, 0xf602ac,2, 0xf602c0,7, 0xf602e0,7, 0xf60300,2, 0xf6030c,2, 0xf60320,6, 0xf60400,2, 0xf61000,19, 0xf62104,23, 0xf62180,7, 0xf621a0,6, 0xf621c0,7, 0xf621e0,6, 0xf62200,4, 0xf62220,4, 0xf62240,11, 0xf62270,32, 0xf62300,24, 0xf62380,20, 0xf62400,61, 0xf62500,25, 0xf62568,4, 0xf62580,2, 0xf625a0,1, 0xf625c0,11, 0xf62600,9, 0xf62640,3, 0xf62650,3, 0xf62664,3, 0xf62680,22, 0xf62800,11, 0xf63000,536, 0xf64104,23, 0xf64180,7, 0xf641a0,6, 0xf641c0,7, 0xf641e0,6, 0xf64200,4, 0xf64220,4, 0xf64240,11, 0xf64270,32, 0xf64300,24, 0xf64380,20, 0xf64400,61, 0xf64500,25, 0xf64568,4, 0xf64580,2, 0xf645a0,1, 0xf645c0,11, 0xf64600,9, 0xf64640,3, 0xf64650,3, 0xf64664,3, 0xf64680,22, 0xf64800,11, 0xf65000,536, 0xf6a000,7, 0xf6a048,8, 0xf6a080,8, 0xf6a100,7, 0xf6a148,8, 0xf6a180,8, 0xf70000,11, 0xf70040,16, 0xf70084,5, 0xf70200,7, 0xf70220,6, 0xf70240,7, 0xf70260,6, 0xf70280,6, 0xf702a0,2, 0xf702ac,2, 0xf702c0,7, 0xf702e0,7, 0xf70300,2, 0xf7030c,2, 0xf70320,6, 0xf70400,2, 0xf71000,19, 0xf72104,23, 0xf72180,7, 0xf721a0,6, 0xf721c0,7, 0xf721e0,6, 0xf72200,4, 0xf72220,4, 0xf72240,11, 0xf72270,32, 0xf72300,24, 0xf72380,20, 0xf72400,61, 0xf72500,25, 0xf72568,4, 0xf72580,2, 0xf725a0,1, 0xf725c0,11, 0xf72600,9, 0xf72640,3, 0xf72650,3, 0xf72664,3, 0xf72680,22, 0xf72800,11, 0xf73000,536, 0xf74104,23, 0xf74180,7, 0xf741a0,6, 0xf741c0,7, 0xf741e0,6, 0xf74200,4, 0xf74220,4, 0xf74240,11, 0xf74270,32, 0xf74300,24, 0xf74380,20, 0xf74400,61, 0xf74500,25, 0xf74568,4, 0xf74580,2, 0xf745a0,1, 0xf745c0,11, 0xf74600,9, 0xf74640,3, 0xf74650,3, 0xf74664,3, 0xf74680,22, 0xf74800,11, 0xf75000,536, 0xf7a000,7, 0xf7a048,8, 0xf7a080,8, 0xf7a100,7, 0xf7a148,8, 0xf7a180,8, 0xf80400,4, 0xf80440,4, 0xf805c0,1, 0xf80600,8, 0xf80800,18, 0xf80880,13, 0xf808f0,3, 0xf80900,18, 0xf80980,13, 0xf809f0,3, 0xf80e00,4, 0xf80e20,4, 0xf80e80,16, 0xf80f00,1, 0xf80f20,1, 0xf81020,2, 0xf81208,6, 0xf81228,10, 0xf81288,6, 0xf812a8,10, 0xf81600,32, 0xf818c0,8, 0xf81900,24, 0xf819b0,4, 0xf81aa0,2, 0xf81ac0,4, 0xf82200,19, 0xf82280,19, 0xf82400,14, 0xf8243c,9, 0xf82464,14, 0xf824a0,2, 0xf824ac,2, 0xf82500,14, 0xf8253c,9, 0xf82564,14, 0xf825a0,2, 0xf825ac,2, 0xf82800,19, 0xf82880,19, 0xf82a10,2, 0xf82a1c,1, 0xf82a50,2, 0xf82a5c,1, 0xf82c00,7, 0xf82c20,1, 0xf82c54,18, 0xf82ca0,1, 0xf82cd4,11, 0xf82e00,1, 0xf82e08,6, 0xf83180,3, 0xf84400,4, 0xf84440,4, 0xf845c0,1, 0xf84600,8, 0xf84800,18, 0xf84880,13, 0xf848f0,3, 0xf84900,18, 0xf84980,13, 0xf849f0,3, 0xf84e00,4, 0xf84e20,4, 0xf84e80,16, 0xf84f00,1, 0xf84f20,1, 0xf85020,2, 0xf85208,6, 0xf85228,10, 0xf85288,6, 0xf852a8,10, 0xf85600,32, 0xf858c0,8, 0xf85900,24, 0xf859b0,4, 0xf85aa0,2, 0xf85ac0,4, 0xf86200,19, 0xf86280,19, 0xf86400,14, 0xf8643c,9, 0xf86464,14, 0xf864a0,2, 0xf864ac,2, 0xf86500,14, 0xf8653c,9, 0xf86564,14, 0xf865a0,2, 0xf865ac,2, 0xf86800,19, 0xf86880,19, 0xf86a10,2, 0xf86a1c,1, 0xf86a50,2, 0xf86a5c,1, 0xf86c00,7, 0xf86c20,1, 0xf86c54,18, 0xf86ca0,1, 0xf86cd4,11, 0xf86e00,1, 0xf86e08,6, 0xf87180,3, 0xf89000,13, 0xf8e000,19, 0xf8ea00,10, 0xf8ea80,3, 0xf8f000,1, 0xf8f008,5, 0xf8f038,1, 0xf8f044,1, 0xf8f050,2, 0xf8f060,8, 0xf8f140,19, 0xf8f190,4, 0xf90000,2, 0xf9000c,2, 0xf90040,7, 0xf90100,3, 0xf90110,3, 0xf90120,5, 0xf90200,6, 0xf90240,5, 0xf90400,2, 0xf9040c,2, 0xf90440,7, 0xf90500,3, 0xf90510,3, 0xf90520,5, 0xf90600,6, 0xf90640,5, 0xf90800,2, 0xf9080c,2, 0xf90840,7, 0xf90900,3, 0xf90910,3, 0xf90920,5, 0xf90a00,6, 0xf90a40,5, 0xf90c00,2, 0xf90c0c,2, 0xf90c40,7, 0xf90d00,3, 0xf90d10,3, 0xf90d20,5, 0xf90e00,6, 0xf90e40,5, 0xf91000,2, 0xf9100c,2, 0xf91040,7, 0xf91100,3, 0xf91110,3, 0xf91120,5, 0xf91200,6, 0xf91240,5, 0xf91400,2, 0xf9140c,2, 0xf91440,7, 0xf91500,3, 0xf91510,3, 0xf91520,5, 0xf91600,6, 0xf91640,5, 0xf91800,2, 0xf9180c,2, 0xf91840,7, 0xf91900,3, 0xf91910,3, 0xf91920,5, 0xf91a00,6, 0xf91a40,5, 0xf91c00,2, 0xf91c0c,2, 0xf91c40,7, 0xf91d00,3, 0xf91d10,3, 0xf91d20,5, 0xf91e00,6, 0xf91e40,5, 0xf92000,5, 0xf92040,9, 0xf92100,3, 0xf92200,1, 0xf92210,1, 0xf92220,1, 0xf92230,1, 0xf92240,1, 0xf92300,3, 0xf92314,1, 0xf92320,4, 0xf92400,5, 0xf92440,5, 0xf93000,80, 0xf93200,1, 0xf98000,7, 0xf98030,2, 0xf98040,7, 0xf98070,2, 0xf98100,2, 0xf98120,2, 0xf98140,2, 0xf98160,2, 0xf98180,9, 0xf98200,7, 0xf98230,2, 0xf98240,7, 0xf98270,2, 0xf98300,2, 0xf98320,2, 0xf98340,2, 0xf98360,2, 0xf98380,9, 0xf98400,11, 0xf98500,11, 0xf99000,3, 0xf99010,2, 0xf9901c,5, 0xf99040,8, 0xf99080,3, 0xf99090,2, 0xf9909c,5, 0xf990c0,8, 0xf99100,3, 0xf99110,2, 0xf9911c,5, 0xf99140,8, 0xf99180,3, 0xf99190,2, 0xf9919c,5, 0xf991c0,8, 0xf99200,7, 0xf99220,12, 0xf99280,7, 0xf992a0,12, 0xf99300,3, 0xf99310,1, 0xf99400,3, 0xf99410,2, 0xf9941c,5, 0xf99440,8, 0xf99480,3, 0xf99490,2, 0xf9949c,5, 0xf994c0,8, 0xf99500,3, 0xf99510,2, 0xf9951c,5, 0xf99540,8, 0xf99580,3, 0xf99590,2, 0xf9959c,5, 0xf995c0,8, 0xf99600,7, 0xf99620,12, 0xf99680,7, 0xf996a0,12, 0xf99700,3, 0xf99710,1, 0xf99804,1, 0xf99824,21, 0xf99880,16, 0xf99900,5, 0xf99920,11, 0xf99950,9, 0xf99980,22, 0xf99a00,22, 0xf99a80,22, 0xf99b00,22, 0xf99b80,22, 0xf99c00,22, 0xf99c80,22, 0xf99d00,22, 0xf99d80,3, 0xfa0000,5, 0xfa0018,5, 0xfa0030,3, 0xfa0044,3, 0xfa0100,58, 0xfa01f0,3, 0xfa0280,3, 0xfa0400,5, 0xfa0418,5, 0xfa0430,3, 0xfa0444,3, 0xfa0500,58, 0xfa05f0,3, 0xfa0680,3, 0xfa1018,2, 0xfa1100,2, 0xfa1110,10, 0xfa1140,2, 0xfa1150,10, 0xfa1208,1, 0xfa1220,12, 0xfa1280,1, 0xfa1288,2, 0xfa1400,4, 0xfa2000,5, 0xfa2018,5, 0xfa2030,3, 0xfa2044,3, 0xfa2100,58, 0xfa21f0,3, 0xfa2280,3, 0xfa2400,5, 0xfa2418,5, 0xfa2430,3, 0xfa2444,3, 0xfa2500,58, 0xfa25f0,3, 0xfa2680,3, 0xfa3018,2, 0xfa3100,2, 0xfa3110,10, 0xfa3140,2, 0xfa3150,10, 0xfa3208,1, 0xfa3220,12, 0xfa3280,1, 0xfa3288,2, 0xfa3400,4, 0xfa4000,2, 0xfa400c,1, 0xfa4030,3, 0xfa4040,2, 0xfa404c,1, 0xfa4070,3, 0xfa4100,2, 0xfa410c,1, 0xfa4130,3, 0xfa4140,2, 0xfa414c,1, 0xfa4170,3, 0xfa4200,15, 0xfa4280,15, 0xfa4300,15, 0xfa4380,15, 0xfa4400,15, 0xfa4480,15, 0xfa4500,15, 0xfa4580,15, 0xfa4604,10, 0xfa4700,2, 0xfa470c,7, 0xfa4740,1, 0xfa4770,1, 0xfa47c0,2, 0xfa47d0,4, 0xfa5000,3, 0xfa5010,1, 0xfa501c,3, 0xfa5104,1, 0xfa5110,4, 0xfa5124,1, 0xfa5130,4, 0xfa5144,1, 0xfa5150,4, 0xfa5164,1, 0xfa5170,5, 0xfa5190,4, 0xfa5a00,4, 0xfa5c00,129, 0xfa6000,37, 0xfa6098,1, 0xfa6100,37, 0xfa6198,1, 0xfa6200,37, 0xfa6298,1, 0xfa6300,37, 0xfa6398,1, 0xfa6400,37, 0xfa6498,1, 0xfa6500,37, 0xfa6598,1, 0xfa6600,37, 0xfa6698,1, 0xfa6700,37, 0xfa6798,1, 0xfac000,91, 0xfac400,4, 0xfac440,15, 0xfac480,4, 0xfac4c0,15, 0xfac500,4, 0xfac540,15, 0xfac580,4, 0xfac5c0,15, 0xfac600,4, 0xfac640,10, 0xfac680,4, 0xfac6c0,10, 0xfac800,4, 0xfac840,33, 0xfaca00,13, 0xfaca80,1, 0xfaca88,8, 0xfacac0,6, 0xfacae0,1, 0xfacae8,2, 0xfacb04,14, 0xfacc00,4, 0xfaccc8,1, 0xfacfcc,3, 0xfacfe0,99, 0xfad400,4, 0xfad440,15, 0xfad480,4, 0xfad4c0,15, 0xfad500,4, 0xfad540,15, 0xfad580,4, 0xfad5c0,15, 0xfad600,4, 0xfad640,10, 0xfad680,4, 0xfad6c0,10, 0xfad800,4, 0xfad840,33, 0xfada00,13, 0xfada80,1, 0xfada88,8, 0xfadac0,6, 0xfadae0,1, 0xfadae8,2, 0xfadb04,14, 0xfadc00,4, 0xfadcc8,1, 0xfadfcc,3, 0xfadfe0,27, 0xfaf000,19, 0xfafa00,10, 0xfafa80,3, 0xfafb00,6, 0xfb0000,51, 0xfb0a00,10, 0xfb0a80,3, 0xfb1000,2, 0xfb100c,4, 0xfb1028,3, 0xfb1038,4, 0xfb1050,2, 0xfb1080,4, 0xfb1098,7, 0xfb1120,4, 0xfb1200,4, 0xfb1214,7, 0xfb1234,3, 0xfb1280,8, 0xfb12c0,5, 0xfb1300,2, 0xfb130c,3, 0xfb1400,24, 0xfb1464,2, 0xfb1470,3, 0xfb1500,25, 0xfb15c0,8, 0xfb15e8,5, 0xfb1600,5, 0xfb1618,1, 0xfb1620,1, 0xfb1628,1, 0xfb1630,2, 0xfb1640,2, 0xfb1650,2, 0xfb1690,4, 0xfb1740,2, 0xfb1760,6, 0xfb1780,6, 0xfb17a0,6, 0xfb17c0,6, 0xfb17e0,1, 0xfb1800,2, 0xfb180c,4, 0xfb1828,3, 0xfb1838,4, 0xfb1850,2, 0xfb1880,4, 0xfb1898,7, 0xfb1920,4, 0xfb1a00,4, 0xfb1a14,7, 0xfb1a34,3, 0xfb1a80,8, 0xfb1ac0,5, 0xfb1b00,2, 0xfb1b0c,3, 0xfb1c00,24, 0xfb1c64,2, 0xfb1c70,3, 0xfb1d00,25, 0xfb1dc0,8, 0xfb1de8,5, 0xfb1e00,5, 0xfb1e18,1, 0xfb1e20,1, 0xfb1e28,1, 0xfb1e30,2, 0xfb1e40,2, 0xfb1e50,2, 0xfb1e90,4, 0xfb1f40,2, 0xfb1f60,6, 0xfb1f80,6, 0xfb1fa0,6, 0xfb1fc0,6, 0xfb1fe0,1, 0xfb2000,19, 0xfb2080,2, 0xfb20b0,2, 0xfb20c0,2, 0xfc0000,11, 0xfc0040,16, 0xfc0084,5, 0xfc0200,7, 0xfc0220,6, 0xfc0240,7, 0xfc0260,6, 0xfc0280,6, 0xfc02a0,2, 0xfc02ac,2, 0xfc02c0,7, 0xfc02e0,7, 0xfc0300,2, 0xfc030c,2, 0xfc0320,6, 0xfc0400,2, 0xfc1000,19, 0xfc2104,23, 0xfc2180,7, 0xfc21a0,6, 0xfc21c0,7, 0xfc21e0,6, 0xfc2200,4, 0xfc2220,4, 0xfc2240,11, 0xfc2270,32, 0xfc2300,24, 0xfc2380,20, 0xfc2400,61, 0xfc2500,25, 0xfc2568,4, 0xfc2580,2, 0xfc25a0,1, 0xfc25c0,11, 0xfc2600,9, 0xfc2640,3, 0xfc2650,3, 0xfc2664,3, 0xfc2680,22, 0xfc2800,11, 0xfc3000,536, 0xfc4104,23, 0xfc4180,7, 0xfc41a0,6, 0xfc41c0,7, 0xfc41e0,6, 0xfc4200,4, 0xfc4220,4, 0xfc4240,11, 0xfc4270,32, 0xfc4300,24, 0xfc4380,20, 0xfc4400,61, 0xfc4500,25, 0xfc4568,4, 0xfc4580,2, 0xfc45a0,1, 0xfc45c0,11, 0xfc4600,9, 0xfc4640,3, 0xfc4650,3, 0xfc4664,3, 0xfc4680,22, 0xfc4800,11, 0xfc5000,536, 0xfca000,7, 0xfca048,8, 0xfca080,8, 0xfca100,7, 0xfca148,8, 0xfca180,8, 0xfd0000,11, 0xfd0040,16, 0xfd0084,5, 0xfd0200,7, 0xfd0220,6, 0xfd0240,7, 0xfd0260,6, 0xfd0280,6, 0xfd02a0,2, 0xfd02ac,2, 0xfd02c0,7, 0xfd02e0,7, 0xfd0300,2, 0xfd030c,2, 0xfd0320,6, 0xfd0400,2, 0xfd1000,19, 0xfd2104,23, 0xfd2180,7, 0xfd21a0,6, 0xfd21c0,7, 0xfd21e0,6, 0xfd2200,4, 0xfd2220,4, 0xfd2240,11, 0xfd2270,32, 0xfd2300,24, 0xfd2380,20, 0xfd2400,61, 0xfd2500,25, 0xfd2568,4, 0xfd2580,2, 0xfd25a0,1, 0xfd25c0,11, 0xfd2600,9, 0xfd2640,3, 0xfd2650,3, 0xfd2664,3, 0xfd2680,22, 0xfd2800,11, 0xfd3000,536, 0xfd4104,23, 0xfd4180,7, 0xfd41a0,6, 0xfd41c0,7, 0xfd41e0,6, 0xfd4200,4, 0xfd4220,4, 0xfd4240,11, 0xfd4270,32, 0xfd4300,24, 0xfd4380,20, 0xfd4400,61, 0xfd4500,25, 0xfd4568,4, 0xfd4580,2, 0xfd45a0,1, 0xfd45c0,11, 0xfd4600,9, 0xfd4640,3, 0xfd4650,3, 0xfd4664,3, 0xfd4680,22, 0xfd4800,11, 0xfd5000,536, 0xfda000,7, 0xfda048,8, 0xfda080,8, 0xfda100,7, 0xfda148,8, 0xfda180,8, 0xfe0400,4, 0xfe0440,4, 0xfe05c0,1, 0xfe0600,8, 0xfe0800,18, 0xfe0880,13, 0xfe08f0,3, 0xfe0900,18, 0xfe0980,13, 0xfe09f0,3, 0xfe0e00,4, 0xfe0e20,4, 0xfe0e80,16, 0xfe0f00,1, 0xfe0f20,1, 0xfe1020,2, 0xfe1208,6, 0xfe1228,10, 0xfe1288,6, 0xfe12a8,10, 0xfe1600,32, 0xfe18c0,8, 0xfe1900,24, 0xfe19b0,4, 0xfe1aa0,2, 0xfe1ac0,4, 0xfe2200,19, 0xfe2280,19, 0xfe2400,14, 0xfe243c,9, 0xfe2464,14, 0xfe24a0,2, 0xfe24ac,2, 0xfe2500,14, 0xfe253c,9, 0xfe2564,14, 0xfe25a0,2, 0xfe25ac,2, 0xfe2800,19, 0xfe2880,19, 0xfe2a10,2, 0xfe2a1c,1, 0xfe2a50,2, 0xfe2a5c,1, 0xfe2c00,7, 0xfe2c20,1, 0xfe2c54,18, 0xfe2ca0,1, 0xfe2cd4,11, 0xfe2e00,1, 0xfe2e08,6, 0xfe3180,3, 0xfe4400,4, 0xfe4440,4, 0xfe45c0,1, 0xfe4600,8, 0xfe4800,18, 0xfe4880,13, 0xfe48f0,3, 0xfe4900,18, 0xfe4980,13, 0xfe49f0,3, 0xfe4e00,4, 0xfe4e20,4, 0xfe4e80,16, 0xfe4f00,1, 0xfe4f20,1, 0xfe5020,2, 0xfe5208,6, 0xfe5228,10, 0xfe5288,6, 0xfe52a8,10, 0xfe5600,32, 0xfe58c0,8, 0xfe5900,24, 0xfe59b0,4, 0xfe5aa0,2, 0xfe5ac0,4, 0xfe6200,19, 0xfe6280,19, 0xfe6400,14, 0xfe643c,9, 0xfe6464,14, 0xfe64a0,2, 0xfe64ac,2, 0xfe6500,14, 0xfe653c,9, 0xfe6564,14, 0xfe65a0,2, 0xfe65ac,2, 0xfe6800,19, 0xfe6880,19, 0xfe6a10,2, 0xfe6a1c,1, 0xfe6a50,2, 0xfe6a5c,1, 0xfe6c00,7, 0xfe6c20,1, 0xfe6c54,18, 0xfe6ca0,1, 0xfe6cd4,11, 0xfe6e00,1, 0xfe6e08,6, 0xfe7180,3, 0xfe9000,13, 0xfee000,19, 0xfeea00,10, 0xfeea80,3, 0xfef000,1, 0xfef008,5, 0xfef038,1, 0xfef044,1, 0xfef050,2, 0xfef060,8, 0xfef140,19, 0xfef190,4, 0xff0000,2, 0xff000c,2, 0xff0040,7, 0xff0100,3, 0xff0110,3, 0xff0120,5, 0xff0200,6, 0xff0240,5, 0xff0400,2, 0xff040c,2, 0xff0440,7, 0xff0500,3, 0xff0510,3, 0xff0520,5, 0xff0600,6, 0xff0640,5, 0xff0800,2, 0xff080c,2, 0xff0840,7, 0xff0900,3, 0xff0910,3, 0xff0920,5, 0xff0a00,6, 0xff0a40,5, 0xff0c00,2, 0xff0c0c,2, 0xff0c40,7, 0xff0d00,3, 0xff0d10,3, 0xff0d20,5, 0xff0e00,6, 0xff0e40,5, 0xff1000,2, 0xff100c,2, 0xff1040,7, 0xff1100,3, 0xff1110,3, 0xff1120,5, 0xff1200,6, 0xff1240,5, 0xff1400,2, 0xff140c,2, 0xff1440,7, 0xff1500,3, 0xff1510,3, 0xff1520,5, 0xff1600,6, 0xff1640,5, 0xff1800,2, 0xff180c,2, 0xff1840,7, 0xff1900,3, 0xff1910,3, 0xff1920,5, 0xff1a00,6, 0xff1a40,5, 0xff1c00,2, 0xff1c0c,2, 0xff1c40,7, 0xff1d00,3, 0xff1d10,3, 0xff1d20,5, 0xff1e00,6, 0xff1e40,5, 0xff2000,5, 0xff2040,9, 0xff2100,3, 0xff2200,1, 0xff2210,1, 0xff2220,1, 0xff2230,1, 0xff2240,1, 0xff2300,3, 0xff2314,1, 0xff2320,4, 0xff2400,5, 0xff2440,5, 0xff3000,80, 0xff3200,1, 0xff8000,7, 0xff8030,2, 0xff8040,7, 0xff8070,2, 0xff8100,2, 0xff8120,2, 0xff8140,2, 0xff8160,2, 0xff8180,9, 0xff8200,7, 0xff8230,2, 0xff8240,7, 0xff8270,2, 0xff8300,2, 0xff8320,2, 0xff8340,2, 0xff8360,2, 0xff8380,9, 0xff8400,11, 0xff8500,11, 0xff9000,3, 0xff9010,2, 0xff901c,5, 0xff9040,8, 0xff9080,3, 0xff9090,2, 0xff909c,5, 0xff90c0,8, 0xff9100,3, 0xff9110,2, 0xff911c,5, 0xff9140,8, 0xff9180,3, 0xff9190,2, 0xff919c,5, 0xff91c0,8, 0xff9200,7, 0xff9220,12, 0xff9280,7, 0xff92a0,12, 0xff9300,3, 0xff9310,1, 0xff9400,3, 0xff9410,2, 0xff941c,5, 0xff9440,8, 0xff9480,3, 0xff9490,2, 0xff949c,5, 0xff94c0,8, 0xff9500,3, 0xff9510,2, 0xff951c,5, 0xff9540,8, 0xff9580,3, 0xff9590,2, 0xff959c,5, 0xff95c0,8, 0xff9600,7, 0xff9620,12, 0xff9680,7, 0xff96a0,12, 0xff9700,3, 0xff9710,1, 0xff9804,1, 0xff9824,21, 0xff9880,16, 0xff9900,5, 0xff9920,11, 0xff9950,9, 0xff9980,22, 0xff9a00,22, 0xff9a80,22, 0xff9b00,22, 0xff9b80,22, 0xff9c00,22, 0xff9c80,22, 0xff9d00,22, 0xff9d80,3, 0x1000000,5, 0x1000018,5, 0x1000030,3, 0x1000044,3, 0x1000100,58, 0x10001f0,3, 0x1000280,3, 0x1000400,5, 0x1000418,5, 0x1000430,3, 0x1000444,3, 0x1000500,58, 0x10005f0,3, 0x1000680,3, 0x1001018,2, 0x1001100,2, 0x1001110,10, 0x1001140,2, 0x1001150,10, 0x1001208,1, 0x1001220,12, 0x1001280,1, 0x1001288,2, 0x1001400,4, 0x1002000,5, 0x1002018,5, 0x1002030,3, 0x1002044,3, 0x1002100,58, 0x10021f0,3, 0x1002280,3, 0x1002400,5, 0x1002418,5, 0x1002430,3, 0x1002444,3, 0x1002500,58, 0x10025f0,3, 0x1002680,3, 0x1003018,2, 0x1003100,2, 0x1003110,10, 0x1003140,2, 0x1003150,10, 0x1003208,1, 0x1003220,12, 0x1003280,1, 0x1003288,2, 0x1003400,4, 0x1004000,2, 0x100400c,1, 0x1004030,3, 0x1004040,2, 0x100404c,1, 0x1004070,3, 0x1004100,2, 0x100410c,1, 0x1004130,3, 0x1004140,2, 0x100414c,1, 0x1004170,3, 0x1004200,15, 0x1004280,15, 0x1004300,15, 0x1004380,15, 0x1004400,15, 0x1004480,15, 0x1004500,15, 0x1004580,15, 0x1004604,10, 0x1004700,2, 0x100470c,7, 0x1004740,1, 0x1004770,1, 0x10047c0,2, 0x10047d0,4, 0x1005000,3, 0x1005010,1, 0x100501c,3, 0x1005104,1, 0x1005110,4, 0x1005124,1, 0x1005130,4, 0x1005144,1, 0x1005150,4, 0x1005164,1, 0x1005170,5, 0x1005190,4, 0x1005a00,4, 0x1005c00,129, 0x1006000,37, 0x1006098,1, 0x1006100,37, 0x1006198,1, 0x1006200,37, 0x1006298,1, 0x1006300,37, 0x1006398,1, 0x1006400,37, 0x1006498,1, 0x1006500,37, 0x1006598,1, 0x1006600,37, 0x1006698,1, 0x1006700,37, 0x1006798,1, 0x100c000,91, 0x100c400,4, 0x100c440,15, 0x100c480,4, 0x100c4c0,15, 0x100c500,4, 0x100c540,15, 0x100c580,4, 0x100c5c0,15, 0x100c600,4, 0x100c640,10, 0x100c680,4, 0x100c6c0,10, 0x100c800,4, 0x100c840,33, 0x100ca00,13, 0x100ca80,1, 0x100ca88,8, 0x100cac0,6, 0x100cae0,1, 0x100cae8,2, 0x100cb04,14, 0x100cc00,4, 0x100ccc8,1, 0x100cfcc,3, 0x100cfe0,99, 0x100d400,4, 0x100d440,15, 0x100d480,4, 0x100d4c0,15, 0x100d500,4, 0x100d540,15, 0x100d580,4, 0x100d5c0,15, 0x100d600,4, 0x100d640,10, 0x100d680,4, 0x100d6c0,10, 0x100d800,4, 0x100d840,33, 0x100da00,13, 0x100da80,1, 0x100da88,8, 0x100dac0,6, 0x100dae0,1, 0x100dae8,2, 0x100db04,14, 0x100dc00,4, 0x100dcc8,1, 0x100dfcc,3, 0x100dfe0,27, 0x100f000,19, 0x100fa00,10, 0x100fa80,3, 0x100fb00,6, 0x1010000,51, 0x1010a00,10, 0x1010a80,3, 0x1011000,2, 0x101100c,4, 0x1011028,3, 0x1011038,4, 0x1011050,2, 0x1011080,4, 0x1011098,7, 0x1011120,4, 0x1011200,4, 0x1011214,7, 0x1011234,3, 0x1011280,8, 0x10112c0,5, 0x1011300,2, 0x101130c,3, 0x1011400,24, 0x1011464,2, 0x1011470,3, 0x1011500,25, 0x10115c0,8, 0x10115e8,5, 0x1011600,5, 0x1011618,1, 0x1011620,1, 0x1011628,1, 0x1011630,2, 0x1011640,2, 0x1011650,2, 0x1011690,4, 0x1011740,2, 0x1011760,6, 0x1011780,6, 0x10117a0,6, 0x10117c0,6, 0x10117e0,1, 0x1011800,2, 0x101180c,4, 0x1011828,3, 0x1011838,4, 0x1011850,2, 0x1011880,4, 0x1011898,7, 0x1011920,4, 0x1011a00,4, 0x1011a14,7, 0x1011a34,3, 0x1011a80,8, 0x1011ac0,5, 0x1011b00,2, 0x1011b0c,3, 0x1011c00,24, 0x1011c64,2, 0x1011c70,3, 0x1011d00,25, 0x1011dc0,8, 0x1011de8,5, 0x1011e00,5, 0x1011e18,1, 0x1011e20,1, 0x1011e28,1, 0x1011e30,2, 0x1011e40,2, 0x1011e50,2, 0x1011e90,4, 0x1011f40,2, 0x1011f60,6, 0x1011f80,6, 0x1011fa0,6, 0x1011fc0,6, 0x1011fe0,1, 0x1012000,19, 0x1012080,2, 0x10120b0,2, 0x10120c0,2, 0x1020000,11, 0x1020040,16, 0x1020084,5, 0x1020200,7, 0x1020220,6, 0x1020240,7, 0x1020260,6, 0x1020280,6, 0x10202a0,2, 0x10202ac,2, 0x10202c0,7, 0x10202e0,7, 0x1020300,2, 0x102030c,2, 0x1020320,6, 0x1020400,2, 0x1021000,19, 0x1022104,23, 0x1022180,7, 0x10221a0,6, 0x10221c0,7, 0x10221e0,6, 0x1022200,4, 0x1022220,4, 0x1022240,11, 0x1022270,32, 0x1022300,24, 0x1022380,20, 0x1022400,61, 0x1022500,25, 0x1022568,4, 0x1022580,2, 0x10225a0,1, 0x10225c0,11, 0x1022600,9, 0x1022640,3, 0x1022650,3, 0x1022664,3, 0x1022680,22, 0x1022800,11, 0x1023000,536, 0x1024104,23, 0x1024180,7, 0x10241a0,6, 0x10241c0,7, 0x10241e0,6, 0x1024200,4, 0x1024220,4, 0x1024240,11, 0x1024270,32, 0x1024300,24, 0x1024380,20, 0x1024400,61, 0x1024500,25, 0x1024568,4, 0x1024580,2, 0x10245a0,1, 0x10245c0,11, 0x1024600,9, 0x1024640,3, 0x1024650,3, 0x1024664,3, 0x1024680,22, 0x1024800,11, 0x1025000,536, 0x102a000,7, 0x102a048,8, 0x102a080,8, 0x102a100,7, 0x102a148,8, 0x102a180,8, 0x1030000,11, 0x1030040,16, 0x1030084,5, 0x1030200,7, 0x1030220,6, 0x1030240,7, 0x1030260,6, 0x1030280,6, 0x10302a0,2, 0x10302ac,2, 0x10302c0,7, 0x10302e0,7, 0x1030300,2, 0x103030c,2, 0x1030320,6, 0x1030400,2, 0x1031000,19, 0x1032104,23, 0x1032180,7, 0x10321a0,6, 0x10321c0,7, 0x10321e0,6, 0x1032200,4, 0x1032220,4, 0x1032240,11, 0x1032270,32, 0x1032300,24, 0x1032380,20, 0x1032400,61, 0x1032500,25, 0x1032568,4, 0x1032580,2, 0x10325a0,1, 0x10325c0,11, 0x1032600,9, 0x1032640,3, 0x1032650,3, 0x1032664,3, 0x1032680,22, 0x1032800,11, 0x1033000,536, 0x1034104,23, 0x1034180,7, 0x10341a0,6, 0x10341c0,7, 0x10341e0,6, 0x1034200,4, 0x1034220,4, 0x1034240,11, 0x1034270,32, 0x1034300,24, 0x1034380,20, 0x1034400,61, 0x1034500,25, 0x1034568,4, 0x1034580,2, 0x10345a0,1, 0x10345c0,11, 0x1034600,9, 0x1034640,3, 0x1034650,3, 0x1034664,3, 0x1034680,22, 0x1034800,11, 0x1035000,536, 0x103a000,7, 0x103a048,8, 0x103a080,8, 0x103a100,7, 0x103a148,8, 0x103a180,8, 0x1040400,4, 0x1040440,4, 0x10405c0,1, 0x1040600,8, 0x1040800,18, 0x1040880,13, 0x10408f0,3, 0x1040900,18, 0x1040980,13, 0x10409f0,3, 0x1040e00,4, 0x1040e20,4, 0x1040e80,16, 0x1040f00,1, 0x1040f20,1, 0x1041020,2, 0x1041208,6, 0x1041228,10, 0x1041288,6, 0x10412a8,10, 0x1041600,32, 0x10418c0,8, 0x1041900,24, 0x10419b0,4, 0x1041aa0,2, 0x1041ac0,4, 0x1042200,19, 0x1042280,19, 0x1042400,14, 0x104243c,9, 0x1042464,14, 0x10424a0,2, 0x10424ac,2, 0x1042500,14, 0x104253c,9, 0x1042564,14, 0x10425a0,2, 0x10425ac,2, 0x1042800,19, 0x1042880,19, 0x1042a10,2, 0x1042a1c,1, 0x1042a50,2, 0x1042a5c,1, 0x1042c00,7, 0x1042c20,1, 0x1042c54,18, 0x1042ca0,1, 0x1042cd4,11, 0x1042e00,1, 0x1042e08,6, 0x1043180,3, 0x1044400,4, 0x1044440,4, 0x10445c0,1, 0x1044600,8, 0x1044800,18, 0x1044880,13, 0x10448f0,3, 0x1044900,18, 0x1044980,13, 0x10449f0,3, 0x1044e00,4, 0x1044e20,4, 0x1044e80,16, 0x1044f00,1, 0x1044f20,1, 0x1045020,2, 0x1045208,6, 0x1045228,10, 0x1045288,6, 0x10452a8,10, 0x1045600,32, 0x10458c0,8, 0x1045900,24, 0x10459b0,4, 0x1045aa0,2, 0x1045ac0,4, 0x1046200,19, 0x1046280,19, 0x1046400,14, 0x104643c,9, 0x1046464,14, 0x10464a0,2, 0x10464ac,2, 0x1046500,14, 0x104653c,9, 0x1046564,14, 0x10465a0,2, 0x10465ac,2, 0x1046800,19, 0x1046880,19, 0x1046a10,2, 0x1046a1c,1, 0x1046a50,2, 0x1046a5c,1, 0x1046c00,7, 0x1046c20,1, 0x1046c54,18, 0x1046ca0,1, 0x1046cd4,11, 0x1046e00,1, 0x1046e08,6, 0x1047180,3, 0x1049000,13, 0x104e000,19, 0x104ea00,10, 0x104ea80,3, 0x104f000,1, 0x104f008,5, 0x104f038,1, 0x104f044,1, 0x104f050,2, 0x104f060,8, 0x104f140,19, 0x104f190,4, 0x1050000,2, 0x105000c,2, 0x1050040,7, 0x1050100,3, 0x1050110,3, 0x1050120,5, 0x1050200,6, 0x1050240,5, 0x1050400,2, 0x105040c,2, 0x1050440,7, 0x1050500,3, 0x1050510,3, 0x1050520,5, 0x1050600,6, 0x1050640,5, 0x1050800,2, 0x105080c,2, 0x1050840,7, 0x1050900,3, 0x1050910,3, 0x1050920,5, 0x1050a00,6, 0x1050a40,5, 0x1050c00,2, 0x1050c0c,2, 0x1050c40,7, 0x1050d00,3, 0x1050d10,3, 0x1050d20,5, 0x1050e00,6, 0x1050e40,5, 0x1051000,2, 0x105100c,2, 0x1051040,7, 0x1051100,3, 0x1051110,3, 0x1051120,5, 0x1051200,6, 0x1051240,5, 0x1051400,2, 0x105140c,2, 0x1051440,7, 0x1051500,3, 0x1051510,3, 0x1051520,5, 0x1051600,6, 0x1051640,5, 0x1051800,2, 0x105180c,2, 0x1051840,7, 0x1051900,3, 0x1051910,3, 0x1051920,5, 0x1051a00,6, 0x1051a40,5, 0x1051c00,2, 0x1051c0c,2, 0x1051c40,7, 0x1051d00,3, 0x1051d10,3, 0x1051d20,5, 0x1051e00,6, 0x1051e40,5, 0x1052000,5, 0x1052040,9, 0x1052100,3, 0x1052200,1, 0x1052210,1, 0x1052220,1, 0x1052230,1, 0x1052240,1, 0x1052300,3, 0x1052314,1, 0x1052320,4, 0x1052400,5, 0x1052440,5, 0x1053000,80, 0x1053200,1, 0x1058000,7, 0x1058030,2, 0x1058040,7, 0x1058070,2, 0x1058100,2, 0x1058120,2, 0x1058140,2, 0x1058160,2, 0x1058180,9, 0x1058200,7, 0x1058230,2, 0x1058240,7, 0x1058270,2, 0x1058300,2, 0x1058320,2, 0x1058340,2, 0x1058360,2, 0x1058380,9, 0x1058400,11, 0x1058500,11, 0x1059000,3, 0x1059010,2, 0x105901c,5, 0x1059040,8, 0x1059080,3, 0x1059090,2, 0x105909c,5, 0x10590c0,8, 0x1059100,3, 0x1059110,2, 0x105911c,5, 0x1059140,8, 0x1059180,3, 0x1059190,2, 0x105919c,5, 0x10591c0,8, 0x1059200,7, 0x1059220,12, 0x1059280,7, 0x10592a0,12, 0x1059300,3, 0x1059310,1, 0x1059400,3, 0x1059410,2, 0x105941c,5, 0x1059440,8, 0x1059480,3, 0x1059490,2, 0x105949c,5, 0x10594c0,8, 0x1059500,3, 0x1059510,2, 0x105951c,5, 0x1059540,8, 0x1059580,3, 0x1059590,2, 0x105959c,5, 0x10595c0,8, 0x1059600,7, 0x1059620,12, 0x1059680,7, 0x10596a0,12, 0x1059700,3, 0x1059710,1, 0x1059804,1, 0x1059824,21, 0x1059880,16, 0x1059900,5, 0x1059920,11, 0x1059950,9, 0x1059980,22, 0x1059a00,22, 0x1059a80,22, 0x1059b00,22, 0x1059b80,22, 0x1059c00,22, 0x1059c80,22, 0x1059d00,22, 0x1059d80,3, 0x1060000,5, 0x1060018,5, 0x1060030,3, 0x1060044,3, 0x1060100,58, 0x10601f0,3, 0x1060280,3, 0x1060400,5, 0x1060418,5, 0x1060430,3, 0x1060444,3, 0x1060500,58, 0x10605f0,3, 0x1060680,3, 0x1061018,2, 0x1061100,2, 0x1061110,10, 0x1061140,2, 0x1061150,10, 0x1061208,1, 0x1061220,12, 0x1061280,1, 0x1061288,2, 0x1061400,4, 0x1062000,5, 0x1062018,5, 0x1062030,3, 0x1062044,3, 0x1062100,58, 0x10621f0,3, 0x1062280,3, 0x1062400,5, 0x1062418,5, 0x1062430,3, 0x1062444,3, 0x1062500,58, 0x10625f0,3, 0x1062680,3, 0x1063018,2, 0x1063100,2, 0x1063110,10, 0x1063140,2, 0x1063150,10, 0x1063208,1, 0x1063220,12, 0x1063280,1, 0x1063288,2, 0x1063400,4, 0x1064000,2, 0x106400c,1, 0x1064030,3, 0x1064040,2, 0x106404c,1, 0x1064070,3, 0x1064100,2, 0x106410c,1, 0x1064130,3, 0x1064140,2, 0x106414c,1, 0x1064170,3, 0x1064200,15, 0x1064280,15, 0x1064300,15, 0x1064380,15, 0x1064400,15, 0x1064480,15, 0x1064500,15, 0x1064580,15, 0x1064604,10, 0x1064700,2, 0x106470c,7, 0x1064740,1, 0x1064770,1, 0x10647c0,2, 0x10647d0,4, 0x1065000,3, 0x1065010,1, 0x106501c,3, 0x1065104,1, 0x1065110,4, 0x1065124,1, 0x1065130,4, 0x1065144,1, 0x1065150,4, 0x1065164,1, 0x1065170,5, 0x1065190,4, 0x1065a00,4, 0x1065c00,129, 0x1066000,37, 0x1066098,1, 0x1066100,37, 0x1066198,1, 0x1066200,37, 0x1066298,1, 0x1066300,37, 0x1066398,1, 0x1066400,37, 0x1066498,1, 0x1066500,37, 0x1066598,1, 0x1066600,37, 0x1066698,1, 0x1066700,37, 0x1066798,1, 0x106c000,91, 0x106c400,4, 0x106c440,15, 0x106c480,4, 0x106c4c0,15, 0x106c500,4, 0x106c540,15, 0x106c580,4, 0x106c5c0,15, 0x106c600,4, 0x106c640,10, 0x106c680,4, 0x106c6c0,10, 0x106c800,4, 0x106c840,33, 0x106ca00,13, 0x106ca80,1, 0x106ca88,8, 0x106cac0,6, 0x106cae0,1, 0x106cae8,2, 0x106cb04,14, 0x106cc00,4, 0x106ccc8,1, 0x106cfcc,3, 0x106cfe0,99, 0x106d400,4, 0x106d440,15, 0x106d480,4, 0x106d4c0,15, 0x106d500,4, 0x106d540,15, 0x106d580,4, 0x106d5c0,15, 0x106d600,4, 0x106d640,10, 0x106d680,4, 0x106d6c0,10, 0x106d800,4, 0x106d840,33, 0x106da00,13, 0x106da80,1, 0x106da88,8, 0x106dac0,6, 0x106dae0,1, 0x106dae8,2, 0x106db04,14, 0x106dc00,4, 0x106dcc8,1, 0x106dfcc,3, 0x106dfe0,27, 0x106f000,19, 0x106fa00,10, 0x106fa80,3, 0x106fb00,6, 0x1070000,51, 0x1070a00,10, 0x1070a80,3, 0x1071000,2, 0x107100c,4, 0x1071028,3, 0x1071038,4, 0x1071050,2, 0x1071080,4, 0x1071098,7, 0x1071120,4, 0x1071200,4, 0x1071214,7, 0x1071234,3, 0x1071280,8, 0x10712c0,5, 0x1071300,2, 0x107130c,3, 0x1071400,24, 0x1071464,2, 0x1071470,3, 0x1071500,25, 0x10715c0,8, 0x10715e8,5, 0x1071600,5, 0x1071618,1, 0x1071620,1, 0x1071628,1, 0x1071630,2, 0x1071640,2, 0x1071650,2, 0x1071690,4, 0x1071740,2, 0x1071760,6, 0x1071780,6, 0x10717a0,6, 0x10717c0,6, 0x10717e0,1, 0x1071800,2, 0x107180c,4, 0x1071828,3, 0x1071838,4, 0x1071850,2, 0x1071880,4, 0x1071898,7, 0x1071920,4, 0x1071a00,4, 0x1071a14,7, 0x1071a34,3, 0x1071a80,8, 0x1071ac0,5, 0x1071b00,2, 0x1071b0c,3, 0x1071c00,24, 0x1071c64,2, 0x1071c70,3, 0x1071d00,25, 0x1071dc0,8, 0x1071de8,5, 0x1071e00,5, 0x1071e18,1, 0x1071e20,1, 0x1071e28,1, 0x1071e30,2, 0x1071e40,2, 0x1071e50,2, 0x1071e90,4, 0x1071f40,2, 0x1071f60,6, 0x1071f80,6, 0x1071fa0,6, 0x1071fc0,6, 0x1071fe0,1, 0x1072000,19, 0x1072080,2, 0x10720b0,2, 0x10720c0,2, 0x1080000,11, 0x1080040,16, 0x1080084,5, 0x1080200,7, 0x1080220,6, 0x1080240,7, 0x1080260,6, 0x1080280,6, 0x10802a0,2, 0x10802ac,2, 0x10802c0,7, 0x10802e0,7, 0x1080300,2, 0x108030c,2, 0x1080320,6, 0x1080400,2, 0x1081000,19, 0x1082104,23, 0x1082180,7, 0x10821a0,6, 0x10821c0,7, 0x10821e0,6, 0x1082200,4, 0x1082220,4, 0x1082240,11, 0x1082270,32, 0x1082300,24, 0x1082380,20, 0x1082400,61, 0x1082500,25, 0x1082568,4, 0x1082580,2, 0x10825a0,1, 0x10825c0,11, 0x1082600,9, 0x1082640,3, 0x1082650,3, 0x1082664,3, 0x1082680,22, 0x1082800,11, 0x1083000,536, 0x1084104,23, 0x1084180,7, 0x10841a0,6, 0x10841c0,7, 0x10841e0,6, 0x1084200,4, 0x1084220,4, 0x1084240,11, 0x1084270,32, 0x1084300,24, 0x1084380,20, 0x1084400,61, 0x1084500,25, 0x1084568,4, 0x1084580,2, 0x10845a0,1, 0x10845c0,11, 0x1084600,9, 0x1084640,3, 0x1084650,3, 0x1084664,3, 0x1084680,22, 0x1084800,11, 0x1085000,536, 0x108a000,7, 0x108a048,8, 0x108a080,8, 0x108a100,7, 0x108a148,8, 0x108a180,8, 0x1090000,11, 0x1090040,16, 0x1090084,5, 0x1090200,7, 0x1090220,6, 0x1090240,7, 0x1090260,6, 0x1090280,6, 0x10902a0,2, 0x10902ac,2, 0x10902c0,7, 0x10902e0,7, 0x1090300,2, 0x109030c,2, 0x1090320,6, 0x1090400,2, 0x1091000,19, 0x1092104,23, 0x1092180,7, 0x10921a0,6, 0x10921c0,7, 0x10921e0,6, 0x1092200,4, 0x1092220,4, 0x1092240,11, 0x1092270,32, 0x1092300,24, 0x1092380,20, 0x1092400,61, 0x1092500,25, 0x1092568,4, 0x1092580,2, 0x10925a0,1, 0x10925c0,11, 0x1092600,9, 0x1092640,3, 0x1092650,3, 0x1092664,3, 0x1092680,22, 0x1092800,11, 0x1093000,536, 0x1094104,23, 0x1094180,7, 0x10941a0,6, 0x10941c0,7, 0x10941e0,6, 0x1094200,4, 0x1094220,4, 0x1094240,11, 0x1094270,32, 0x1094300,24, 0x1094380,20, 0x1094400,61, 0x1094500,25, 0x1094568,4, 0x1094580,2, 0x10945a0,1, 0x10945c0,11, 0x1094600,9, 0x1094640,3, 0x1094650,3, 0x1094664,3, 0x1094680,22, 0x1094800,11, 0x1095000,536, 0x109a000,7, 0x109a048,8, 0x109a080,8, 0x109a100,7, 0x109a148,8, 0x109a180,8, 0x10a0400,4, 0x10a0440,4, 0x10a05c0,1, 0x10a0600,8, 0x10a0800,18, 0x10a0880,13, 0x10a08f0,3, 0x10a0900,18, 0x10a0980,13, 0x10a09f0,3, 0x10a0e00,4, 0x10a0e20,4, 0x10a0e80,16, 0x10a0f00,1, 0x10a0f20,1, 0x10a1020,2, 0x10a1208,6, 0x10a1228,10, 0x10a1288,6, 0x10a12a8,10, 0x10a1600,32, 0x10a18c0,8, 0x10a1900,24, 0x10a19b0,4, 0x10a1aa0,2, 0x10a1ac0,4, 0x10a2200,19, 0x10a2280,19, 0x10a2400,14, 0x10a243c,9, 0x10a2464,14, 0x10a24a0,2, 0x10a24ac,2, 0x10a2500,14, 0x10a253c,9, 0x10a2564,14, 0x10a25a0,2, 0x10a25ac,2, 0x10a2800,19, 0x10a2880,19, 0x10a2a10,2, 0x10a2a1c,1, 0x10a2a50,2, 0x10a2a5c,1, 0x10a2c00,7, 0x10a2c20,1, 0x10a2c54,18, 0x10a2ca0,1, 0x10a2cd4,11, 0x10a2e00,1, 0x10a2e08,6, 0x10a3180,3, 0x10a4400,4, 0x10a4440,4, 0x10a45c0,1, 0x10a4600,8, 0x10a4800,18, 0x10a4880,13, 0x10a48f0,3, 0x10a4900,18, 0x10a4980,13, 0x10a49f0,3, 0x10a4e00,4, 0x10a4e20,4, 0x10a4e80,16, 0x10a4f00,1, 0x10a4f20,1, 0x10a5020,2, 0x10a5208,6, 0x10a5228,10, 0x10a5288,6, 0x10a52a8,10, 0x10a5600,32, 0x10a58c0,8, 0x10a5900,24, 0x10a59b0,4, 0x10a5aa0,2, 0x10a5ac0,4, 0x10a6200,19, 0x10a6280,19, 0x10a6400,14, 0x10a643c,9, 0x10a6464,14, 0x10a64a0,2, 0x10a64ac,2, 0x10a6500,14, 0x10a653c,9, 0x10a6564,14, 0x10a65a0,2, 0x10a65ac,2, 0x10a6800,19, 0x10a6880,19, 0x10a6a10,2, 0x10a6a1c,1, 0x10a6a50,2, 0x10a6a5c,1, 0x10a6c00,7, 0x10a6c20,1, 0x10a6c54,18, 0x10a6ca0,1, 0x10a6cd4,11, 0x10a6e00,1, 0x10a6e08,6, 0x10a7180,3, 0x10a9000,13, 0x10ae000,19, 0x10aea00,10, 0x10aea80,3, 0x10af000,1, 0x10af008,5, 0x10af038,1, 0x10af044,1, 0x10af050,2, 0x10af060,8, 0x10af140,19, 0x10af190,4, 0x10b0000,2, 0x10b000c,2, 0x10b0040,7, 0x10b0100,3, 0x10b0110,3, 0x10b0120,5, 0x10b0200,6, 0x10b0240,5, 0x10b0400,2, 0x10b040c,2, 0x10b0440,7, 0x10b0500,3, 0x10b0510,3, 0x10b0520,5, 0x10b0600,6, 0x10b0640,5, 0x10b0800,2, 0x10b080c,2, 0x10b0840,7, 0x10b0900,3, 0x10b0910,3, 0x10b0920,5, 0x10b0a00,6, 0x10b0a40,5, 0x10b0c00,2, 0x10b0c0c,2, 0x10b0c40,7, 0x10b0d00,3, 0x10b0d10,3, 0x10b0d20,5, 0x10b0e00,6, 0x10b0e40,5, 0x10b1000,2, 0x10b100c,2, 0x10b1040,7, 0x10b1100,3, 0x10b1110,3, 0x10b1120,5, 0x10b1200,6, 0x10b1240,5, 0x10b1400,2, 0x10b140c,2, 0x10b1440,7, 0x10b1500,3, 0x10b1510,3, 0x10b1520,5, 0x10b1600,6, 0x10b1640,5, 0x10b1800,2, 0x10b180c,2, 0x10b1840,7, 0x10b1900,3, 0x10b1910,3, 0x10b1920,5, 0x10b1a00,6, 0x10b1a40,5, 0x10b1c00,2, 0x10b1c0c,2, 0x10b1c40,7, 0x10b1d00,3, 0x10b1d10,3, 0x10b1d20,5, 0x10b1e00,6, 0x10b1e40,5, 0x10b2000,5, 0x10b2040,9, 0x10b2100,3, 0x10b2200,1, 0x10b2210,1, 0x10b2220,1, 0x10b2230,1, 0x10b2240,1, 0x10b2300,3, 0x10b2314,1, 0x10b2320,4, 0x10b2400,5, 0x10b2440,5, 0x10b3000,80, 0x10b3200,1, 0x10b8000,7, 0x10b8030,2, 0x10b8040,7, 0x10b8070,2, 0x10b8100,2, 0x10b8120,2, 0x10b8140,2, 0x10b8160,2, 0x10b8180,9, 0x10b8200,7, 0x10b8230,2, 0x10b8240,7, 0x10b8270,2, 0x10b8300,2, 0x10b8320,2, 0x10b8340,2, 0x10b8360,2, 0x10b8380,9, 0x10b8400,11, 0x10b8500,11, 0x10b9000,3, 0x10b9010,2, 0x10b901c,5, 0x10b9040,8, 0x10b9080,3, 0x10b9090,2, 0x10b909c,5, 0x10b90c0,8, 0x10b9100,3, 0x10b9110,2, 0x10b911c,5, 0x10b9140,8, 0x10b9180,3, 0x10b9190,2, 0x10b919c,5, 0x10b91c0,8, 0x10b9200,7, 0x10b9220,12, 0x10b9280,7, 0x10b92a0,12, 0x10b9300,3, 0x10b9310,1, 0x10b9400,3, 0x10b9410,2, 0x10b941c,5, 0x10b9440,8, 0x10b9480,3, 0x10b9490,2, 0x10b949c,5, 0x10b94c0,8, 0x10b9500,3, 0x10b9510,2, 0x10b951c,5, 0x10b9540,8, 0x10b9580,3, 0x10b9590,2, 0x10b959c,5, 0x10b95c0,8, 0x10b9600,7, 0x10b9620,12, 0x10b9680,7, 0x10b96a0,12, 0x10b9700,3, 0x10b9710,1, 0x10b9804,1, 0x10b9824,21, 0x10b9880,16, 0x10b9900,5, 0x10b9920,11, 0x10b9950,9, 0x10b9980,22, 0x10b9a00,22, 0x10b9a80,22, 0x10b9b00,22, 0x10b9b80,22, 0x10b9c00,22, 0x10b9c80,22, 0x10b9d00,22, 0x10b9d80,3, 0x10c0000,5, 0x10c0018,5, 0x10c0030,3, 0x10c0044,3, 0x10c0100,58, 0x10c01f0,3, 0x10c0280,3, 0x10c0400,5, 0x10c0418,5, 0x10c0430,3, 0x10c0444,3, 0x10c0500,58, 0x10c05f0,3, 0x10c0680,3, 0x10c1018,2, 0x10c1100,2, 0x10c1110,10, 0x10c1140,2, 0x10c1150,10, 0x10c1208,1, 0x10c1220,12, 0x10c1280,1, 0x10c1288,2, 0x10c1400,4, 0x10c2000,5, 0x10c2018,5, 0x10c2030,3, 0x10c2044,3, 0x10c2100,58, 0x10c21f0,3, 0x10c2280,3, 0x10c2400,5, 0x10c2418,5, 0x10c2430,3, 0x10c2444,3, 0x10c2500,58, 0x10c25f0,3, 0x10c2680,3, 0x10c3018,2, 0x10c3100,2, 0x10c3110,10, 0x10c3140,2, 0x10c3150,10, 0x10c3208,1, 0x10c3220,12, 0x10c3280,1, 0x10c3288,2, 0x10c3400,4, 0x10c4000,2, 0x10c400c,1, 0x10c4030,3, 0x10c4040,2, 0x10c404c,1, 0x10c4070,3, 0x10c4100,2, 0x10c410c,1, 0x10c4130,3, 0x10c4140,2, 0x10c414c,1, 0x10c4170,3, 0x10c4200,15, 0x10c4280,15, 0x10c4300,15, 0x10c4380,15, 0x10c4400,15, 0x10c4480,15, 0x10c4500,15, 0x10c4580,15, 0x10c4604,10, 0x10c4700,2, 0x10c470c,7, 0x10c4740,1, 0x10c4770,1, 0x10c47c0,2, 0x10c47d0,4, 0x10c5000,3, 0x10c5010,1, 0x10c501c,3, 0x10c5104,1, 0x10c5110,4, 0x10c5124,1, 0x10c5130,4, 0x10c5144,1, 0x10c5150,4, 0x10c5164,1, 0x10c5170,5, 0x10c5190,4, 0x10c5a00,4, 0x10c5c00,129, 0x10c6000,37, 0x10c6098,1, 0x10c6100,37, 0x10c6198,1, 0x10c6200,37, 0x10c6298,1, 0x10c6300,37, 0x10c6398,1, 0x10c6400,37, 0x10c6498,1, 0x10c6500,37, 0x10c6598,1, 0x10c6600,37, 0x10c6698,1, 0x10c6700,37, 0x10c6798,1, 0x10cc000,91, 0x10cc400,4, 0x10cc440,15, 0x10cc480,4, 0x10cc4c0,15, 0x10cc500,4, 0x10cc540,15, 0x10cc580,4, 0x10cc5c0,15, 0x10cc600,4, 0x10cc640,10, 0x10cc680,4, 0x10cc6c0,10, 0x10cc800,4, 0x10cc840,33, 0x10cca00,13, 0x10cca80,1, 0x10cca88,8, 0x10ccac0,6, 0x10ccae0,1, 0x10ccae8,2, 0x10ccb04,14, 0x10ccc00,4, 0x10cccc8,1, 0x10ccfcc,3, 0x10ccfe0,99, 0x10cd400,4, 0x10cd440,15, 0x10cd480,4, 0x10cd4c0,15, 0x10cd500,4, 0x10cd540,15, 0x10cd580,4, 0x10cd5c0,15, 0x10cd600,4, 0x10cd640,10, 0x10cd680,4, 0x10cd6c0,10, 0x10cd800,4, 0x10cd840,33, 0x10cda00,13, 0x10cda80,1, 0x10cda88,8, 0x10cdac0,6, 0x10cdae0,1, 0x10cdae8,2, 0x10cdb04,14, 0x10cdc00,4, 0x10cdcc8,1, 0x10cdfcc,3, 0x10cdfe0,27, 0x10cf000,19, 0x10cfa00,10, 0x10cfa80,3, 0x10cfb00,6, 0x10d0000,51, 0x10d0a00,10, 0x10d0a80,3, 0x10d1000,2, 0x10d100c,4, 0x10d1028,3, 0x10d1038,4, 0x10d1050,2, 0x10d1080,4, 0x10d1098,7, 0x10d1120,4, 0x10d1200,4, 0x10d1214,7, 0x10d1234,3, 0x10d1280,8, 0x10d12c0,5, 0x10d1300,2, 0x10d130c,3, 0x10d1400,24, 0x10d1464,2, 0x10d1470,3, 0x10d1500,25, 0x10d15c0,8, 0x10d15e8,5, 0x10d1600,5, 0x10d1618,1, 0x10d1620,1, 0x10d1628,1, 0x10d1630,2, 0x10d1640,2, 0x10d1650,2, 0x10d1690,4, 0x10d1740,2, 0x10d1760,6, 0x10d1780,6, 0x10d17a0,6, 0x10d17c0,6, 0x10d17e0,1, 0x10d1800,2, 0x10d180c,4, 0x10d1828,3, 0x10d1838,4, 0x10d1850,2, 0x10d1880,4, 0x10d1898,7, 0x10d1920,4, 0x10d1a00,4, 0x10d1a14,7, 0x10d1a34,3, 0x10d1a80,8, 0x10d1ac0,5, 0x10d1b00,2, 0x10d1b0c,3, 0x10d1c00,24, 0x10d1c64,2, 0x10d1c70,3, 0x10d1d00,25, 0x10d1dc0,8, 0x10d1de8,5, 0x10d1e00,5, 0x10d1e18,1, 0x10d1e20,1, 0x10d1e28,1, 0x10d1e30,2, 0x10d1e40,2, 0x10d1e50,2, 0x10d1e90,4, 0x10d1f40,2, 0x10d1f60,6, 0x10d1f80,6, 0x10d1fa0,6, 0x10d1fc0,6, 0x10d1fe0,1, 0x10d2000,19, 0x10d2080,2, 0x10d20b0,2, 0x10d20c0,2, 0x10e0000,11, 0x10e0040,16, 0x10e0084,5, 0x10e0200,7, 0x10e0220,6, 0x10e0240,7, 0x10e0260,6, 0x10e0280,6, 0x10e02a0,2, 0x10e02ac,2, 0x10e02c0,7, 0x10e02e0,7, 0x10e0300,2, 0x10e030c,2, 0x10e0320,6, 0x10e0400,2, 0x10e1000,19, 0x10e2104,23, 0x10e2180,7, 0x10e21a0,6, 0x10e21c0,7, 0x10e21e0,6, 0x10e2200,4, 0x10e2220,4, 0x10e2240,11, 0x10e2270,32, 0x10e2300,24, 0x10e2380,20, 0x10e2400,61, 0x10e2500,25, 0x10e2568,4, 0x10e2580,2, 0x10e25a0,1, 0x10e25c0,11, 0x10e2600,9, 0x10e2640,3, 0x10e2650,3, 0x10e2664,3, 0x10e2680,22, 0x10e2800,11, 0x10e3000,536, 0x10e4104,23, 0x10e4180,7, 0x10e41a0,6, 0x10e41c0,7, 0x10e41e0,6, 0x10e4200,4, 0x10e4220,4, 0x10e4240,11, 0x10e4270,32, 0x10e4300,24, 0x10e4380,20, 0x10e4400,61, 0x10e4500,25, 0x10e4568,4, 0x10e4580,2, 0x10e45a0,1, 0x10e45c0,11, 0x10e4600,9, 0x10e4640,3, 0x10e4650,3, 0x10e4664,3, 0x10e4680,22, 0x10e4800,11, 0x10e5000,536, 0x10ea000,7, 0x10ea048,8, 0x10ea080,8, 0x10ea100,7, 0x10ea148,8, 0x10ea180,8, 0x10f0000,11, 0x10f0040,16, 0x10f0084,5, 0x10f0200,7, 0x10f0220,6, 0x10f0240,7, 0x10f0260,6, 0x10f0280,6, 0x10f02a0,2, 0x10f02ac,2, 0x10f02c0,7, 0x10f02e0,7, 0x10f0300,2, 0x10f030c,2, 0x10f0320,6, 0x10f0400,2, 0x10f1000,19, 0x10f2104,23, 0x10f2180,7, 0x10f21a0,6, 0x10f21c0,7, 0x10f21e0,6, 0x10f2200,4, 0x10f2220,4, 0x10f2240,11, 0x10f2270,32, 0x10f2300,24, 0x10f2380,20, 0x10f2400,61, 0x10f2500,25, 0x10f2568,4, 0x10f2580,2, 0x10f25a0,1, 0x10f25c0,11, 0x10f2600,9, 0x10f2640,3, 0x10f2650,3, 0x10f2664,3, 0x10f2680,22, 0x10f2800,11, 0x10f3000,536, 0x10f4104,23, 0x10f4180,7, 0x10f41a0,6, 0x10f41c0,7, 0x10f41e0,6, 0x10f4200,4, 0x10f4220,4, 0x10f4240,11, 0x10f4270,32, 0x10f4300,24, 0x10f4380,20, 0x10f4400,61, 0x10f4500,25, 0x10f4568,4, 0x10f4580,2, 0x10f45a0,1, 0x10f45c0,11, 0x10f4600,9, 0x10f4640,3, 0x10f4650,3, 0x10f4664,3, 0x10f4680,22, 0x10f4800,11, 0x10f5000,536, 0x10fa000,7, 0x10fa048,8, 0x10fa080,8, 0x10fa100,7, 0x10fa148,8, 0x10fa180,8, 0x1100400,4, 0x1100440,4, 0x11005c0,1, 0x1100600,8, 0x1100800,18, 0x1100880,13, 0x11008f0,3, 0x1100900,18, 0x1100980,13, 0x11009f0,3, 0x1100e00,4, 0x1100e20,4, 0x1100e80,16, 0x1100f00,1, 0x1100f20,1, 0x1101020,2, 0x1101208,6, 0x1101228,10, 0x1101288,6, 0x11012a8,10, 0x1101600,32, 0x11018c0,8, 0x1101900,24, 0x11019b0,4, 0x1101aa0,2, 0x1101ac0,4, 0x1102200,19, 0x1102280,19, 0x1102400,14, 0x110243c,9, 0x1102464,14, 0x11024a0,2, 0x11024ac,2, 0x1102500,14, 0x110253c,9, 0x1102564,14, 0x11025a0,2, 0x11025ac,2, 0x1102800,19, 0x1102880,19, 0x1102a10,2, 0x1102a1c,1, 0x1102a50,2, 0x1102a5c,1, 0x1102c00,7, 0x1102c20,1, 0x1102c54,18, 0x1102ca0,1, 0x1102cd4,11, 0x1102e00,1, 0x1102e08,6, 0x1103180,3, 0x1104400,4, 0x1104440,4, 0x11045c0,1, 0x1104600,8, 0x1104800,18, 0x1104880,13, 0x11048f0,3, 0x1104900,18, 0x1104980,13, 0x11049f0,3, 0x1104e00,4, 0x1104e20,4, 0x1104e80,16, 0x1104f00,1, 0x1104f20,1, 0x1105020,2, 0x1105208,6, 0x1105228,10, 0x1105288,6, 0x11052a8,10, 0x1105600,32, 0x11058c0,8, 0x1105900,24, 0x11059b0,4, 0x1105aa0,2, 0x1105ac0,4, 0x1106200,19, 0x1106280,19, 0x1106400,14, 0x110643c,9, 0x1106464,14, 0x11064a0,2, 0x11064ac,2, 0x1106500,14, 0x110653c,9, 0x1106564,14, 0x11065a0,2, 0x11065ac,2, 0x1106800,19, 0x1106880,19, 0x1106a10,2, 0x1106a1c,1, 0x1106a50,2, 0x1106a5c,1, 0x1106c00,7, 0x1106c20,1, 0x1106c54,18, 0x1106ca0,1, 0x1106cd4,11, 0x1106e00,1, 0x1106e08,6, 0x1107180,3, 0x1109000,13, 0x110e000,19, 0x110ea00,10, 0x110ea80,3, 0x110f000,1, 0x110f008,5, 0x110f038,1, 0x110f044,1, 0x110f050,2, 0x110f060,8, 0x110f140,19, 0x110f190,4, 0x1110000,2, 0x111000c,2, 0x1110040,7, 0x1110100,3, 0x1110110,3, 0x1110120,5, 0x1110200,6, 0x1110240,5, 0x1110400,2, 0x111040c,2, 0x1110440,7, 0x1110500,3, 0x1110510,3, 0x1110520,5, 0x1110600,6, 0x1110640,5, 0x1110800,2, 0x111080c,2, 0x1110840,7, 0x1110900,3, 0x1110910,3, 0x1110920,5, 0x1110a00,6, 0x1110a40,5, 0x1110c00,2, 0x1110c0c,2, 0x1110c40,7, 0x1110d00,3, 0x1110d10,3, 0x1110d20,5, 0x1110e00,6, 0x1110e40,5, 0x1111000,2, 0x111100c,2, 0x1111040,7, 0x1111100,3, 0x1111110,3, 0x1111120,5, 0x1111200,6, 0x1111240,5, 0x1111400,2, 0x111140c,2, 0x1111440,7, 0x1111500,3, 0x1111510,3, 0x1111520,5, 0x1111600,6, 0x1111640,5, 0x1111800,2, 0x111180c,2, 0x1111840,7, 0x1111900,3, 0x1111910,3, 0x1111920,5, 0x1111a00,6, 0x1111a40,5, 0x1111c00,2, 0x1111c0c,2, 0x1111c40,7, 0x1111d00,3, 0x1111d10,3, 0x1111d20,5, 0x1111e00,6, 0x1111e40,5, 0x1112000,5, 0x1112040,9, 0x1112100,3, 0x1112200,1, 0x1112210,1, 0x1112220,1, 0x1112230,1, 0x1112240,1, 0x1112300,3, 0x1112314,1, 0x1112320,4, 0x1112400,5, 0x1112440,5, 0x1113000,80, 0x1113200,1, 0x1118000,7, 0x1118030,2, 0x1118040,7, 0x1118070,2, 0x1118100,2, 0x1118120,2, 0x1118140,2, 0x1118160,2, 0x1118180,9, 0x1118200,7, 0x1118230,2, 0x1118240,7, 0x1118270,2, 0x1118300,2, 0x1118320,2, 0x1118340,2, 0x1118360,2, 0x1118380,9, 0x1118400,11, 0x1118500,11, 0x1119000,3, 0x1119010,2, 0x111901c,5, 0x1119040,8, 0x1119080,3, 0x1119090,2, 0x111909c,5, 0x11190c0,8, 0x1119100,3, 0x1119110,2, 0x111911c,5, 0x1119140,8, 0x1119180,3, 0x1119190,2, 0x111919c,5, 0x11191c0,8, 0x1119200,7, 0x1119220,12, 0x1119280,7, 0x11192a0,12, 0x1119300,3, 0x1119310,1, 0x1119400,3, 0x1119410,2, 0x111941c,5, 0x1119440,8, 0x1119480,3, 0x1119490,2, 0x111949c,5, 0x11194c0,8, 0x1119500,3, 0x1119510,2, 0x111951c,5, 0x1119540,8, 0x1119580,3, 0x1119590,2, 0x111959c,5, 0x11195c0,8, 0x1119600,7, 0x1119620,12, 0x1119680,7, 0x11196a0,12, 0x1119700,3, 0x1119710,1, 0x1119804,1, 0x1119824,21, 0x1119880,16, 0x1119900,5, 0x1119920,11, 0x1119950,9, 0x1119980,22, 0x1119a00,22, 0x1119a80,22, 0x1119b00,22, 0x1119b80,22, 0x1119c00,22, 0x1119c80,22, 0x1119d00,22, 0x1119d80,3, 0x1120000,5, 0x1120018,5, 0x1120030,3, 0x1120044,3, 0x1120100,58, 0x11201f0,3, 0x1120280,3, 0x1120400,5, 0x1120418,5, 0x1120430,3, 0x1120444,3, 0x1120500,58, 0x11205f0,3, 0x1120680,3, 0x1121018,2, 0x1121100,2, 0x1121110,10, 0x1121140,2, 0x1121150,10, 0x1121208,1, 0x1121220,12, 0x1121280,1, 0x1121288,2, 0x1121400,4, 0x1122000,5, 0x1122018,5, 0x1122030,3, 0x1122044,3, 0x1122100,58, 0x11221f0,3, 0x1122280,3, 0x1122400,5, 0x1122418,5, 0x1122430,3, 0x1122444,3, 0x1122500,58, 0x11225f0,3, 0x1122680,3, 0x1123018,2, 0x1123100,2, 0x1123110,10, 0x1123140,2, 0x1123150,10, 0x1123208,1, 0x1123220,12, 0x1123280,1, 0x1123288,2, 0x1123400,4, 0x1124000,2, 0x112400c,1, 0x1124030,3, 0x1124040,2, 0x112404c,1, 0x1124070,3, 0x1124100,2, 0x112410c,1, 0x1124130,3, 0x1124140,2, 0x112414c,1, 0x1124170,3, 0x1124200,15, 0x1124280,15, 0x1124300,15, 0x1124380,15, 0x1124400,15, 0x1124480,15, 0x1124500,15, 0x1124580,15, 0x1124604,10, 0x1124700,2, 0x112470c,7, 0x1124740,1, 0x1124770,1, 0x11247c0,2, 0x11247d0,4, 0x1125000,3, 0x1125010,1, 0x112501c,3, 0x1125104,1, 0x1125110,4, 0x1125124,1, 0x1125130,4, 0x1125144,1, 0x1125150,4, 0x1125164,1, 0x1125170,5, 0x1125190,4, 0x1125a00,4, 0x1125c00,129, 0x1126000,37, 0x1126098,1, 0x1126100,37, 0x1126198,1, 0x1126200,37, 0x1126298,1, 0x1126300,37, 0x1126398,1, 0x1126400,37, 0x1126498,1, 0x1126500,37, 0x1126598,1, 0x1126600,37, 0x1126698,1, 0x1126700,37, 0x1126798,1, 0x112c000,91, 0x112c400,4, 0x112c440,15, 0x112c480,4, 0x112c4c0,15, 0x112c500,4, 0x112c540,15, 0x112c580,4, 0x112c5c0,15, 0x112c600,4, 0x112c640,10, 0x112c680,4, 0x112c6c0,10, 0x112c800,4, 0x112c840,33, 0x112ca00,13, 0x112ca80,1, 0x112ca88,8, 0x112cac0,6, 0x112cae0,1, 0x112cae8,2, 0x112cb04,14, 0x112cc00,4, 0x112ccc8,1, 0x112cfcc,3, 0x112cfe0,99, 0x112d400,4, 0x112d440,15, 0x112d480,4, 0x112d4c0,15, 0x112d500,4, 0x112d540,15, 0x112d580,4, 0x112d5c0,15, 0x112d600,4, 0x112d640,10, 0x112d680,4, 0x112d6c0,10, 0x112d800,4, 0x112d840,33, 0x112da00,13, 0x112da80,1, 0x112da88,8, 0x112dac0,6, 0x112dae0,1, 0x112dae8,2, 0x112db04,14, 0x112dc00,4, 0x112dcc8,1, 0x112dfcc,3, 0x112dfe0,27, 0x112f000,19, 0x112fa00,10, 0x112fa80,3, 0x112fb00,6, 0x1130000,51, 0x1130a00,10, 0x1130a80,3, 0x1131000,2, 0x113100c,4, 0x1131028,3, 0x1131038,4, 0x1131050,2, 0x1131080,4, 0x1131098,7, 0x1131120,4, 0x1131200,4, 0x1131214,7, 0x1131234,3, 0x1131280,8, 0x11312c0,5, 0x1131300,2, 0x113130c,3, 0x1131400,24, 0x1131464,2, 0x1131470,3, 0x1131500,25, 0x11315c0,8, 0x11315e8,5, 0x1131600,5, 0x1131618,1, 0x1131620,1, 0x1131628,1, 0x1131630,2, 0x1131640,2, 0x1131650,2, 0x1131690,4, 0x1131740,2, 0x1131760,6, 0x1131780,6, 0x11317a0,6, 0x11317c0,6, 0x11317e0,1, 0x1131800,2, 0x113180c,4, 0x1131828,3, 0x1131838,4, 0x1131850,2, 0x1131880,4, 0x1131898,7, 0x1131920,4, 0x1131a00,4, 0x1131a14,7, 0x1131a34,3, 0x1131a80,8, 0x1131ac0,5, 0x1131b00,2, 0x1131b0c,3, 0x1131c00,24, 0x1131c64,2, 0x1131c70,3, 0x1131d00,25, 0x1131dc0,8, 0x1131de8,5, 0x1131e00,5, 0x1131e18,1, 0x1131e20,1, 0x1131e28,1, 0x1131e30,2, 0x1131e40,2, 0x1131e50,2, 0x1131e90,4, 0x1131f40,2, 0x1131f60,6, 0x1131f80,6, 0x1131fa0,6, 0x1131fc0,6, 0x1131fe0,1, 0x1132000,19, 0x1132080,2, 0x11320b0,2, 0x11320c0,2, 0x1140000,11, 0x1140040,16, 0x1140084,5, 0x1140200,7, 0x1140220,6, 0x1140240,7, 0x1140260,6, 0x1140280,6, 0x11402a0,2, 0x11402ac,2, 0x11402c0,7, 0x11402e0,7, 0x1140300,2, 0x114030c,2, 0x1140320,6, 0x1140400,2, 0x1141000,19, 0x1142104,23, 0x1142180,7, 0x11421a0,6, 0x11421c0,7, 0x11421e0,6, 0x1142200,4, 0x1142220,4, 0x1142240,11, 0x1142270,32, 0x1142300,24, 0x1142380,20, 0x1142400,61, 0x1142500,25, 0x1142568,4, 0x1142580,2, 0x11425a0,1, 0x11425c0,11, 0x1142600,9, 0x1142640,3, 0x1142650,3, 0x1142664,3, 0x1142680,22, 0x1142800,11, 0x1143000,536, 0x1144104,23, 0x1144180,7, 0x11441a0,6, 0x11441c0,7, 0x11441e0,6, 0x1144200,4, 0x1144220,4, 0x1144240,11, 0x1144270,32, 0x1144300,24, 0x1144380,20, 0x1144400,61, 0x1144500,25, 0x1144568,4, 0x1144580,2, 0x11445a0,1, 0x11445c0,11, 0x1144600,9, 0x1144640,3, 0x1144650,3, 0x1144664,3, 0x1144680,22, 0x1144800,11, 0x1145000,536, 0x114a000,7, 0x114a048,8, 0x114a080,8, 0x114a100,7, 0x114a148,8, 0x114a180,8, 0x1150000,11, 0x1150040,16, 0x1150084,5, 0x1150200,7, 0x1150220,6, 0x1150240,7, 0x1150260,6, 0x1150280,6, 0x11502a0,2, 0x11502ac,2, 0x11502c0,7, 0x11502e0,7, 0x1150300,2, 0x115030c,2, 0x1150320,6, 0x1150400,2, 0x1151000,19, 0x1152104,23, 0x1152180,7, 0x11521a0,6, 0x11521c0,7, 0x11521e0,6, 0x1152200,4, 0x1152220,4, 0x1152240,11, 0x1152270,32, 0x1152300,24, 0x1152380,20, 0x1152400,61, 0x1152500,25, 0x1152568,4, 0x1152580,2, 0x11525a0,1, 0x11525c0,11, 0x1152600,9, 0x1152640,3, 0x1152650,3, 0x1152664,3, 0x1152680,22, 0x1152800,11, 0x1153000,536, 0x1154104,23, 0x1154180,7, 0x11541a0,6, 0x11541c0,7, 0x11541e0,6, 0x1154200,4, 0x1154220,4, 0x1154240,11, 0x1154270,32, 0x1154300,24, 0x1154380,20, 0x1154400,61, 0x1154500,25, 0x1154568,4, 0x1154580,2, 0x11545a0,1, 0x11545c0,11, 0x1154600,9, 0x1154640,3, 0x1154650,3, 0x1154664,3, 0x1154680,22, 0x1154800,11, 0x1155000,536, 0x115a000,7, 0x115a048,8, 0x115a080,8, 0x115a100,7, 0x115a148,8, 0x115a180,8, 0x1160400,4, 0x1160440,4, 0x11605c0,1, 0x1160600,8, 0x1160800,18, 0x1160880,13, 0x11608f0,3, 0x1160900,18, 0x1160980,13, 0x11609f0,3, 0x1160e00,4, 0x1160e20,4, 0x1160e80,16, 0x1160f00,1, 0x1160f20,1, 0x1161020,2, 0x1161208,6, 0x1161228,10, 0x1161288,6, 0x11612a8,10, 0x1161600,32, 0x11618c0,8, 0x1161900,24, 0x11619b0,4, 0x1161aa0,2, 0x1161ac0,4, 0x1162200,19, 0x1162280,19, 0x1162400,14, 0x116243c,9, 0x1162464,14, 0x11624a0,2, 0x11624ac,2, 0x1162500,14, 0x116253c,9, 0x1162564,14, 0x11625a0,2, 0x11625ac,2, 0x1162800,19, 0x1162880,19, 0x1162a10,2, 0x1162a1c,1, 0x1162a50,2, 0x1162a5c,1, 0x1162c00,7, 0x1162c20,1, 0x1162c54,18, 0x1162ca0,1, 0x1162cd4,11, 0x1162e00,1, 0x1162e08,6, 0x1163180,3, 0x1164400,4, 0x1164440,4, 0x11645c0,1, 0x1164600,8, 0x1164800,18, 0x1164880,13, 0x11648f0,3, 0x1164900,18, 0x1164980,13, 0x11649f0,3, 0x1164e00,4, 0x1164e20,4, 0x1164e80,16, 0x1164f00,1, 0x1164f20,1, 0x1165020,2, 0x1165208,6, 0x1165228,10, 0x1165288,6, 0x11652a8,10, 0x1165600,32, 0x11658c0,8, 0x1165900,24, 0x11659b0,4, 0x1165aa0,2, 0x1165ac0,4, 0x1166200,19, 0x1166280,19, 0x1166400,14, 0x116643c,9, 0x1166464,14, 0x11664a0,2, 0x11664ac,2, 0x1166500,14, 0x116653c,9, 0x1166564,14, 0x11665a0,2, 0x11665ac,2, 0x1166800,19, 0x1166880,19, 0x1166a10,2, 0x1166a1c,1, 0x1166a50,2, 0x1166a5c,1, 0x1166c00,7, 0x1166c20,1, 0x1166c54,18, 0x1166ca0,1, 0x1166cd4,11, 0x1166e00,1, 0x1166e08,6, 0x1167180,3, 0x1169000,13, 0x116e000,19, 0x116ea00,10, 0x116ea80,3, 0x116f000,1, 0x116f008,5, 0x116f038,1, 0x116f044,1, 0x116f050,2, 0x116f060,8, 0x116f140,19, 0x116f190,4, 0x1170000,2, 0x117000c,2, 0x1170040,7, 0x1170100,3, 0x1170110,3, 0x1170120,5, 0x1170200,6, 0x1170240,5, 0x1170400,2, 0x117040c,2, 0x1170440,7, 0x1170500,3, 0x1170510,3, 0x1170520,5, 0x1170600,6, 0x1170640,5, 0x1170800,2, 0x117080c,2, 0x1170840,7, 0x1170900,3, 0x1170910,3, 0x1170920,5, 0x1170a00,6, 0x1170a40,5, 0x1170c00,2, 0x1170c0c,2, 0x1170c40,7, 0x1170d00,3, 0x1170d10,3, 0x1170d20,5, 0x1170e00,6, 0x1170e40,5, 0x1171000,2, 0x117100c,2, 0x1171040,7, 0x1171100,3, 0x1171110,3, 0x1171120,5, 0x1171200,6, 0x1171240,5, 0x1171400,2, 0x117140c,2, 0x1171440,7, 0x1171500,3, 0x1171510,3, 0x1171520,5, 0x1171600,6, 0x1171640,5, 0x1171800,2, 0x117180c,2, 0x1171840,7, 0x1171900,3, 0x1171910,3, 0x1171920,5, 0x1171a00,6, 0x1171a40,5, 0x1171c00,2, 0x1171c0c,2, 0x1171c40,7, 0x1171d00,3, 0x1171d10,3, 0x1171d20,5, 0x1171e00,6, 0x1171e40,5, 0x1172000,5, 0x1172040,9, 0x1172100,3, 0x1172200,1, 0x1172210,1, 0x1172220,1, 0x1172230,1, 0x1172240,1, 0x1172300,3, 0x1172314,1, 0x1172320,4, 0x1172400,5, 0x1172440,5, 0x1173000,80, 0x1173200,1, 0x1178000,7, 0x1178030,2, 0x1178040,7, 0x1178070,2, 0x1178100,2, 0x1178120,2, 0x1178140,2, 0x1178160,2, 0x1178180,9, 0x1178200,7, 0x1178230,2, 0x1178240,7, 0x1178270,2, 0x1178300,2, 0x1178320,2, 0x1178340,2, 0x1178360,2, 0x1178380,9, 0x1178400,11, 0x1178500,11, 0x1179000,3, 0x1179010,2, 0x117901c,5, 0x1179040,8, 0x1179080,3, 0x1179090,2, 0x117909c,5, 0x11790c0,8, 0x1179100,3, 0x1179110,2, 0x117911c,5, 0x1179140,8, 0x1179180,3, 0x1179190,2, 0x117919c,5, 0x11791c0,8, 0x1179200,7, 0x1179220,12, 0x1179280,7, 0x11792a0,12, 0x1179300,3, 0x1179310,1, 0x1179400,3, 0x1179410,2, 0x117941c,5, 0x1179440,8, 0x1179480,3, 0x1179490,2, 0x117949c,5, 0x11794c0,8, 0x1179500,3, 0x1179510,2, 0x117951c,5, 0x1179540,8, 0x1179580,3, 0x1179590,2, 0x117959c,5, 0x11795c0,8, 0x1179600,7, 0x1179620,12, 0x1179680,7, 0x11796a0,12, 0x1179700,3, 0x1179710,1, 0x1179804,1, 0x1179824,21, 0x1179880,16, 0x1179900,5, 0x1179920,11, 0x1179950,9, 0x1179980,22, 0x1179a00,22, 0x1179a80,22, 0x1179b00,22, 0x1179b80,22, 0x1179c00,22, 0x1179c80,22, 0x1179d00,22, 0x1179d80,3, 0x1180000,5, 0x1180018,5, 0x1180030,3, 0x1180044,3, 0x1180100,58, 0x11801f0,3, 0x1180280,3, 0x1180400,5, 0x1180418,5, 0x1180430,3, 0x1180444,3, 0x1180500,58, 0x11805f0,3, 0x1180680,3, 0x1181018,2, 0x1181100,2, 0x1181110,10, 0x1181140,2, 0x1181150,10, 0x1181208,1, 0x1181220,12, 0x1181280,1, 0x1181288,2, 0x1181400,4, 0x1182000,5, 0x1182018,5, 0x1182030,3, 0x1182044,3, 0x1182100,58, 0x11821f0,3, 0x1182280,3, 0x1182400,5, 0x1182418,5, 0x1182430,3, 0x1182444,3, 0x1182500,58, 0x11825f0,3, 0x1182680,3, 0x1183018,2, 0x1183100,2, 0x1183110,10, 0x1183140,2, 0x1183150,10, 0x1183208,1, 0x1183220,12, 0x1183280,1, 0x1183288,2, 0x1183400,4, 0x1184000,2, 0x118400c,1, 0x1184030,3, 0x1184040,2, 0x118404c,1, 0x1184070,3, 0x1184100,2, 0x118410c,1, 0x1184130,3, 0x1184140,2, 0x118414c,1, 0x1184170,3, 0x1184200,15, 0x1184280,15, 0x1184300,15, 0x1184380,15, 0x1184400,15, 0x1184480,15, 0x1184500,15, 0x1184580,15, 0x1184604,10, 0x1184700,2, 0x118470c,7, 0x1184740,1, 0x1184770,1, 0x11847c0,2, 0x11847d0,4, 0x1185000,3, 0x1185010,1, 0x118501c,3, 0x1185104,1, 0x1185110,4, 0x1185124,1, 0x1185130,4, 0x1185144,1, 0x1185150,4, 0x1185164,1, 0x1185170,5, 0x1185190,4, 0x1185a00,4, 0x1185c00,129, 0x1186000,37, 0x1186098,1, 0x1186100,37, 0x1186198,1, 0x1186200,37, 0x1186298,1, 0x1186300,37, 0x1186398,1, 0x1186400,37, 0x1186498,1, 0x1186500,37, 0x1186598,1, 0x1186600,37, 0x1186698,1, 0x1186700,37, 0x1186798,1, 0x118c000,91, 0x118c400,4, 0x118c440,15, 0x118c480,4, 0x118c4c0,15, 0x118c500,4, 0x118c540,15, 0x118c580,4, 0x118c5c0,15, 0x118c600,4, 0x118c640,10, 0x118c680,4, 0x118c6c0,10, 0x118c800,4, 0x118c840,33, 0x118ca00,13, 0x118ca80,1, 0x118ca88,8, 0x118cac0,6, 0x118cae0,1, 0x118cae8,2, 0x118cb04,14, 0x118cc00,4, 0x118ccc8,1, 0x118cfcc,3, 0x118cfe0,99, 0x118d400,4, 0x118d440,15, 0x118d480,4, 0x118d4c0,15, 0x118d500,4, 0x118d540,15, 0x118d580,4, 0x118d5c0,15, 0x118d600,4, 0x118d640,10, 0x118d680,4, 0x118d6c0,10, 0x118d800,4, 0x118d840,33, 0x118da00,13, 0x118da80,1, 0x118da88,8, 0x118dac0,6, 0x118dae0,1, 0x118dae8,2, 0x118db04,14, 0x118dc00,4, 0x118dcc8,1, 0x118dfcc,3, 0x118dfe0,27, 0x118f000,19, 0x118fa00,10, 0x118fa80,3, 0x118fb00,6, 0x1190000,51, 0x1190a00,10, 0x1190a80,3, 0x1191000,2, 0x119100c,4, 0x1191028,3, 0x1191038,4, 0x1191050,2, 0x1191080,4, 0x1191098,7, 0x1191120,4, 0x1191200,4, 0x1191214,7, 0x1191234,3, 0x1191280,8, 0x11912c0,5, 0x1191300,2, 0x119130c,3, 0x1191400,24, 0x1191464,2, 0x1191470,3, 0x1191500,25, 0x11915c0,8, 0x11915e8,5, 0x1191600,5, 0x1191618,1, 0x1191620,1, 0x1191628,1, 0x1191630,2, 0x1191640,2, 0x1191650,2, 0x1191690,4, 0x1191740,2, 0x1191760,6, 0x1191780,6, 0x11917a0,6, 0x11917c0,6, 0x11917e0,1, 0x1191800,2, 0x119180c,4, 0x1191828,3, 0x1191838,4, 0x1191850,2, 0x1191880,4, 0x1191898,7, 0x1191920,4, 0x1191a00,4, 0x1191a14,7, 0x1191a34,3, 0x1191a80,8, 0x1191ac0,5, 0x1191b00,2, 0x1191b0c,3, 0x1191c00,24, 0x1191c64,2, 0x1191c70,3, 0x1191d00,25, 0x1191dc0,8, 0x1191de8,5, 0x1191e00,5, 0x1191e18,1, 0x1191e20,1, 0x1191e28,1, 0x1191e30,2, 0x1191e40,2, 0x1191e50,2, 0x1191e90,4, 0x1191f40,2, 0x1191f60,6, 0x1191f80,6, 0x1191fa0,6, 0x1191fc0,6, 0x1191fe0,1, 0x1192000,19, 0x1192080,2, 0x11920b0,2, 0x11920c0,2, 0x11a0000,11, 0x11a0040,16, 0x11a0084,5, 0x11a0200,7, 0x11a0220,6, 0x11a0240,7, 0x11a0260,6, 0x11a0280,6, 0x11a02a0,2, 0x11a02ac,2, 0x11a02c0,7, 0x11a02e0,7, 0x11a0300,2, 0x11a030c,2, 0x11a0320,6, 0x11a0400,2, 0x11a1000,19, 0x11a2104,23, 0x11a2180,7, 0x11a21a0,6, 0x11a21c0,7, 0x11a21e0,6, 0x11a2200,4, 0x11a2220,4, 0x11a2240,11, 0x11a2270,32, 0x11a2300,24, 0x11a2380,20, 0x11a2400,61, 0x11a2500,25, 0x11a2568,4, 0x11a2580,2, 0x11a25a0,1, 0x11a25c0,11, 0x11a2600,9, 0x11a2640,3, 0x11a2650,3, 0x11a2664,3, 0x11a2680,22, 0x11a2800,11, 0x11a3000,536, 0x11a4104,23, 0x11a4180,7, 0x11a41a0,6, 0x11a41c0,7, 0x11a41e0,6, 0x11a4200,4, 0x11a4220,4, 0x11a4240,11, 0x11a4270,32, 0x11a4300,24, 0x11a4380,20, 0x11a4400,61, 0x11a4500,25, 0x11a4568,4, 0x11a4580,2, 0x11a45a0,1, 0x11a45c0,11, 0x11a4600,9, 0x11a4640,3, 0x11a4650,3, 0x11a4664,3, 0x11a4680,22, 0x11a4800,11, 0x11a5000,536, 0x11aa000,7, 0x11aa048,8, 0x11aa080,8, 0x11aa100,7, 0x11aa148,8, 0x11aa180,8, 0x11b0000,11, 0x11b0040,16, 0x11b0084,5, 0x11b0200,7, 0x11b0220,6, 0x11b0240,7, 0x11b0260,6, 0x11b0280,6, 0x11b02a0,2, 0x11b02ac,2, 0x11b02c0,7, 0x11b02e0,7, 0x11b0300,2, 0x11b030c,2, 0x11b0320,6, 0x11b0400,2, 0x11b1000,19, 0x11b2104,23, 0x11b2180,7, 0x11b21a0,6, 0x11b21c0,7, 0x11b21e0,6, 0x11b2200,4, 0x11b2220,4, 0x11b2240,11, 0x11b2270,32, 0x11b2300,24, 0x11b2380,20, 0x11b2400,61, 0x11b2500,25, 0x11b2568,4, 0x11b2580,2, 0x11b25a0,1, 0x11b25c0,11, 0x11b2600,9, 0x11b2640,3, 0x11b2650,3, 0x11b2664,3, 0x11b2680,22, 0x11b2800,11, 0x11b3000,536, 0x11b4104,23, 0x11b4180,7, 0x11b41a0,6, 0x11b41c0,7, 0x11b41e0,6, 0x11b4200,4, 0x11b4220,4, 0x11b4240,11, 0x11b4270,32, 0x11b4300,24, 0x11b4380,20, 0x11b4400,61, 0x11b4500,25, 0x11b4568,4, 0x11b4580,2, 0x11b45a0,1, 0x11b45c0,11, 0x11b4600,9, 0x11b4640,3, 0x11b4650,3, 0x11b4664,3, 0x11b4680,22, 0x11b4800,11, 0x11b5000,536, 0x11ba000,7, 0x11ba048,8, 0x11ba080,8, 0x11ba100,7, 0x11ba148,8, 0x11ba180,8, 0x11c0400,4, 0x11c0440,4, 0x11c05c0,1, 0x11c0600,8, 0x11c0800,18, 0x11c0880,13, 0x11c08f0,3, 0x11c0900,18, 0x11c0980,13, 0x11c09f0,3, 0x11c0e00,4, 0x11c0e20,4, 0x11c0e80,16, 0x11c0f00,1, 0x11c0f20,1, 0x11c1020,2, 0x11c1208,6, 0x11c1228,10, 0x11c1288,6, 0x11c12a8,10, 0x11c1600,32, 0x11c18c0,8, 0x11c1900,24, 0x11c19b0,4, 0x11c1aa0,2, 0x11c1ac0,4, 0x11c2200,19, 0x11c2280,19, 0x11c2400,14, 0x11c243c,9, 0x11c2464,14, 0x11c24a0,2, 0x11c24ac,2, 0x11c2500,14, 0x11c253c,9, 0x11c2564,14, 0x11c25a0,2, 0x11c25ac,2, 0x11c2800,19, 0x11c2880,19, 0x11c2a10,2, 0x11c2a1c,1, 0x11c2a50,2, 0x11c2a5c,1, 0x11c2c00,7, 0x11c2c20,1, 0x11c2c54,18, 0x11c2ca0,1, 0x11c2cd4,11, 0x11c2e00,1, 0x11c2e08,6, 0x11c3180,3, 0x11c4400,4, 0x11c4440,4, 0x11c45c0,1, 0x11c4600,8, 0x11c4800,18, 0x11c4880,13, 0x11c48f0,3, 0x11c4900,18, 0x11c4980,13, 0x11c49f0,3, 0x11c4e00,4, 0x11c4e20,4, 0x11c4e80,16, 0x11c4f00,1, 0x11c4f20,1, 0x11c5020,2, 0x11c5208,6, 0x11c5228,10, 0x11c5288,6, 0x11c52a8,10, 0x11c5600,32, 0x11c58c0,8, 0x11c5900,24, 0x11c59b0,4, 0x11c5aa0,2, 0x11c5ac0,4, 0x11c6200,19, 0x11c6280,19, 0x11c6400,14, 0x11c643c,9, 0x11c6464,14, 0x11c64a0,2, 0x11c64ac,2, 0x11c6500,14, 0x11c653c,9, 0x11c6564,14, 0x11c65a0,2, 0x11c65ac,2, 0x11c6800,19, 0x11c6880,19, 0x11c6a10,2, 0x11c6a1c,1, 0x11c6a50,2, 0x11c6a5c,1, 0x11c6c00,7, 0x11c6c20,1, 0x11c6c54,18, 0x11c6ca0,1, 0x11c6cd4,11, 0x11c6e00,1, 0x11c6e08,6, 0x11c7180,3, 0x11c9000,13, 0x11ce000,19, 0x11cea00,10, 0x11cea80,3, 0x11cf000,1, 0x11cf008,5, 0x11cf038,1, 0x11cf044,1, 0x11cf050,2, 0x11cf060,8, 0x11cf140,19, 0x11cf190,4, 0x11d0000,2, 0x11d000c,2, 0x11d0040,7, 0x11d0100,3, 0x11d0110,3, 0x11d0120,5, 0x11d0200,6, 0x11d0240,5, 0x11d0400,2, 0x11d040c,2, 0x11d0440,7, 0x11d0500,3, 0x11d0510,3, 0x11d0520,5, 0x11d0600,6, 0x11d0640,5, 0x11d0800,2, 0x11d080c,2, 0x11d0840,7, 0x11d0900,3, 0x11d0910,3, 0x11d0920,5, 0x11d0a00,6, 0x11d0a40,5, 0x11d0c00,2, 0x11d0c0c,2, 0x11d0c40,7, 0x11d0d00,3, 0x11d0d10,3, 0x11d0d20,5, 0x11d0e00,6, 0x11d0e40,5, 0x11d1000,2, 0x11d100c,2, 0x11d1040,7, 0x11d1100,3, 0x11d1110,3, 0x11d1120,5, 0x11d1200,6, 0x11d1240,5, 0x11d1400,2, 0x11d140c,2, 0x11d1440,7, 0x11d1500,3, 0x11d1510,3, 0x11d1520,5, 0x11d1600,6, 0x11d1640,5, 0x11d1800,2, 0x11d180c,2, 0x11d1840,7, 0x11d1900,3, 0x11d1910,3, 0x11d1920,5, 0x11d1a00,6, 0x11d1a40,5, 0x11d1c00,2, 0x11d1c0c,2, 0x11d1c40,7, 0x11d1d00,3, 0x11d1d10,3, 0x11d1d20,5, 0x11d1e00,6, 0x11d1e40,5, 0x11d2000,5, 0x11d2040,9, 0x11d2100,3, 0x11d2200,1, 0x11d2210,1, 0x11d2220,1, 0x11d2230,1, 0x11d2240,1, 0x11d2300,3, 0x11d2314,1, 0x11d2320,4, 0x11d2400,5, 0x11d2440,5, 0x11d3000,80, 0x11d3200,1, 0x11d8000,7, 0x11d8030,2, 0x11d8040,7, 0x11d8070,2, 0x11d8100,2, 0x11d8120,2, 0x11d8140,2, 0x11d8160,2, 0x11d8180,9, 0x11d8200,7, 0x11d8230,2, 0x11d8240,7, 0x11d8270,2, 0x11d8300,2, 0x11d8320,2, 0x11d8340,2, 0x11d8360,2, 0x11d8380,9, 0x11d8400,11, 0x11d8500,11, 0x11d9000,3, 0x11d9010,2, 0x11d901c,5, 0x11d9040,8, 0x11d9080,3, 0x11d9090,2, 0x11d909c,5, 0x11d90c0,8, 0x11d9100,3, 0x11d9110,2, 0x11d911c,5, 0x11d9140,8, 0x11d9180,3, 0x11d9190,2, 0x11d919c,5, 0x11d91c0,8, 0x11d9200,7, 0x11d9220,12, 0x11d9280,7, 0x11d92a0,12, 0x11d9300,3, 0x11d9310,1, 0x11d9400,3, 0x11d9410,2, 0x11d941c,5, 0x11d9440,8, 0x11d9480,3, 0x11d9490,2, 0x11d949c,5, 0x11d94c0,8, 0x11d9500,3, 0x11d9510,2, 0x11d951c,5, 0x11d9540,8, 0x11d9580,3, 0x11d9590,2, 0x11d959c,5, 0x11d95c0,8, 0x11d9600,7, 0x11d9620,12, 0x11d9680,7, 0x11d96a0,12, 0x11d9700,3, 0x11d9710,1, 0x11d9804,1, 0x11d9824,21, 0x11d9880,16, 0x11d9900,5, 0x11d9920,11, 0x11d9950,9, 0x11d9980,22, 0x11d9a00,22, 0x11d9a80,22, 0x11d9b00,22, 0x11d9b80,22, 0x11d9c00,22, 0x11d9c80,22, 0x11d9d00,22, 0x11d9d80,3, 0x11e0000,5, 0x11e0018,5, 0x11e0030,3, 0x11e0044,3, 0x11e0100,58, 0x11e01f0,3, 0x11e0280,3, 0x11e0400,5, 0x11e0418,5, 0x11e0430,3, 0x11e0444,3, 0x11e0500,58, 0x11e05f0,3, 0x11e0680,3, 0x11e1018,2, 0x11e1100,2, 0x11e1110,10, 0x11e1140,2, 0x11e1150,10, 0x11e1208,1, 0x11e1220,12, 0x11e1280,1, 0x11e1288,2, 0x11e1400,4, 0x11e2000,5, 0x11e2018,5, 0x11e2030,3, 0x11e2044,3, 0x11e2100,58, 0x11e21f0,3, 0x11e2280,3, 0x11e2400,5, 0x11e2418,5, 0x11e2430,3, 0x11e2444,3, 0x11e2500,58, 0x11e25f0,3, 0x11e2680,3, 0x11e3018,2, 0x11e3100,2, 0x11e3110,10, 0x11e3140,2, 0x11e3150,10, 0x11e3208,1, 0x11e3220,12, 0x11e3280,1, 0x11e3288,2, 0x11e3400,4, 0x11e4000,2, 0x11e400c,1, 0x11e4030,3, 0x11e4040,2, 0x11e404c,1, 0x11e4070,3, 0x11e4100,2, 0x11e410c,1, 0x11e4130,3, 0x11e4140,2, 0x11e414c,1, 0x11e4170,3, 0x11e4200,15, 0x11e4280,15, 0x11e4300,15, 0x11e4380,15, 0x11e4400,15, 0x11e4480,15, 0x11e4500,15, 0x11e4580,15, 0x11e4604,10, 0x11e4700,2, 0x11e470c,7, 0x11e4740,1, 0x11e4770,1, 0x11e47c0,2, 0x11e47d0,4, 0x11e5000,3, 0x11e5010,1, 0x11e501c,3, 0x11e5104,1, 0x11e5110,4, 0x11e5124,1, 0x11e5130,4, 0x11e5144,1, 0x11e5150,4, 0x11e5164,1, 0x11e5170,5, 0x11e5190,4, 0x11e5a00,4, 0x11e5c00,129, 0x11e6000,37, 0x11e6098,1, 0x11e6100,37, 0x11e6198,1, 0x11e6200,37, 0x11e6298,1, 0x11e6300,37, 0x11e6398,1, 0x11e6400,37, 0x11e6498,1, 0x11e6500,37, 0x11e6598,1, 0x11e6600,37, 0x11e6698,1, 0x11e6700,37, 0x11e6798,1, 0x11ec000,91, 0x11ec400,4, 0x11ec440,15, 0x11ec480,4, 0x11ec4c0,15, 0x11ec500,4, 0x11ec540,15, 0x11ec580,4, 0x11ec5c0,15, 0x11ec600,4, 0x11ec640,10, 0x11ec680,4, 0x11ec6c0,10, 0x11ec800,4, 0x11ec840,33, 0x11eca00,13, 0x11eca80,1, 0x11eca88,8, 0x11ecac0,6, 0x11ecae0,1, 0x11ecae8,2, 0x11ecb04,14, 0x11ecc00,4, 0x11eccc8,1, 0x11ecfcc,3, 0x11ecfe0,99, 0x11ed400,4, 0x11ed440,15, 0x11ed480,4, 0x11ed4c0,15, 0x11ed500,4, 0x11ed540,15, 0x11ed580,4, 0x11ed5c0,15, 0x11ed600,4, 0x11ed640,10, 0x11ed680,4, 0x11ed6c0,10, 0x11ed800,4, 0x11ed840,33, 0x11eda00,13, 0x11eda80,1, 0x11eda88,8, 0x11edac0,6, 0x11edae0,1, 0x11edae8,2, 0x11edb04,14, 0x11edc00,4, 0x11edcc8,1, 0x11edfcc,3, 0x11edfe0,27, 0x11ef000,19, 0x11efa00,10, 0x11efa80,3, 0x11efb00,6, 0x11f0000,51, 0x11f0a00,10, 0x11f0a80,3, 0x11f1000,2, 0x11f100c,4, 0x11f1028,3, 0x11f1038,4, 0x11f1050,2, 0x11f1080,4, 0x11f1098,7, 0x11f1120,4, 0x11f1200,4, 0x11f1214,7, 0x11f1234,3, 0x11f1280,8, 0x11f12c0,5, 0x11f1300,2, 0x11f130c,3, 0x11f1400,24, 0x11f1464,2, 0x11f1470,3, 0x11f1500,25, 0x11f15c0,8, 0x11f15e8,5, 0x11f1600,5, 0x11f1618,1, 0x11f1620,1, 0x11f1628,1, 0x11f1630,2, 0x11f1640,2, 0x11f1650,2, 0x11f1690,4, 0x11f1740,2, 0x11f1760,6, 0x11f1780,6, 0x11f17a0,6, 0x11f17c0,6, 0x11f17e0,1, 0x11f1800,2, 0x11f180c,4, 0x11f1828,3, 0x11f1838,4, 0x11f1850,2, 0x11f1880,4, 0x11f1898,7, 0x11f1920,4, 0x11f1a00,4, 0x11f1a14,7, 0x11f1a34,3, 0x11f1a80,8, 0x11f1ac0,5, 0x11f1b00,2, 0x11f1b0c,3, 0x11f1c00,24, 0x11f1c64,2, 0x11f1c70,3, 0x11f1d00,25, 0x11f1dc0,8, 0x11f1de8,5, 0x11f1e00,5, 0x11f1e18,1, 0x11f1e20,1, 0x11f1e28,1, 0x11f1e30,2, 0x11f1e40,2, 0x11f1e50,2, 0x11f1e90,4, 0x11f1f40,2, 0x11f1f60,6, 0x11f1f80,6, 0x11f1fa0,6, 0x11f1fc0,6, 0x11f1fe0,1, 0x11f2000,19, 0x11f2080,2, 0x11f20b0,2, 0x11f20c0,2, 0x1200000,11, 0x1200040,16, 0x1200084,5, 0x1200200,7, 0x1200220,6, 0x1200240,7, 0x1200260,6, 0x1200280,6, 0x12002a0,2, 0x12002ac,2, 0x12002c0,7, 0x12002e0,7, 0x1200300,2, 0x120030c,2, 0x1200320,6, 0x1200400,2, 0x1201000,19, 0x1202104,23, 0x1202180,7, 0x12021a0,6, 0x12021c0,7, 0x12021e0,6, 0x1202200,4, 0x1202220,4, 0x1202240,11, 0x1202270,32, 0x1202300,24, 0x1202380,20, 0x1202400,61, 0x1202500,25, 0x1202568,4, 0x1202580,2, 0x12025a0,1, 0x12025c0,11, 0x1202600,9, 0x1202640,3, 0x1202650,3, 0x1202664,3, 0x1202680,22, 0x1202800,11, 0x1203000,536, 0x1204104,23, 0x1204180,7, 0x12041a0,6, 0x12041c0,7, 0x12041e0,6, 0x1204200,4, 0x1204220,4, 0x1204240,11, 0x1204270,32, 0x1204300,24, 0x1204380,20, 0x1204400,61, 0x1204500,25, 0x1204568,4, 0x1204580,2, 0x12045a0,1, 0x12045c0,11, 0x1204600,9, 0x1204640,3, 0x1204650,3, 0x1204664,3, 0x1204680,22, 0x1204800,11, 0x1205000,536, 0x120a000,7, 0x120a048,8, 0x120a080,8, 0x120a100,7, 0x120a148,8, 0x120a180,8, 0x1210000,11, 0x1210040,16, 0x1210084,5, 0x1210200,7, 0x1210220,6, 0x1210240,7, 0x1210260,6, 0x1210280,6, 0x12102a0,2, 0x12102ac,2, 0x12102c0,7, 0x12102e0,7, 0x1210300,2, 0x121030c,2, 0x1210320,6, 0x1210400,2, 0x1211000,19, 0x1212104,23, 0x1212180,7, 0x12121a0,6, 0x12121c0,7, 0x12121e0,6, 0x1212200,4, 0x1212220,4, 0x1212240,11, 0x1212270,32, 0x1212300,24, 0x1212380,20, 0x1212400,61, 0x1212500,25, 0x1212568,4, 0x1212580,2, 0x12125a0,1, 0x12125c0,11, 0x1212600,9, 0x1212640,3, 0x1212650,3, 0x1212664,3, 0x1212680,22, 0x1212800,11, 0x1213000,536, 0x1214104,23, 0x1214180,7, 0x12141a0,6, 0x12141c0,7, 0x12141e0,6, 0x1214200,4, 0x1214220,4, 0x1214240,11, 0x1214270,32, 0x1214300,24, 0x1214380,20, 0x1214400,61, 0x1214500,25, 0x1214568,4, 0x1214580,2, 0x12145a0,1, 0x12145c0,11, 0x1214600,9, 0x1214640,3, 0x1214650,3, 0x1214664,3, 0x1214680,22, 0x1214800,11, 0x1215000,536, 0x121a000,7, 0x121a048,8, 0x121a080,8, 0x121a100,7, 0x121a148,8, 0x121a180,8, 0x1220400,4, 0x1220440,4, 0x12205c0,1, 0x1220600,8, 0x1220800,18, 0x1220880,13, 0x12208f0,3, 0x1220900,18, 0x1220980,13, 0x12209f0,3, 0x1220e00,4, 0x1220e20,4, 0x1220e80,16, 0x1220f00,1, 0x1220f20,1, 0x1221020,2, 0x1221208,6, 0x1221228,10, 0x1221288,6, 0x12212a8,10, 0x1221600,32, 0x12218c0,8, 0x1221900,24, 0x12219b0,4, 0x1221aa0,2, 0x1221ac0,4, 0x1222200,19, 0x1222280,19, 0x1222400,14, 0x122243c,9, 0x1222464,14, 0x12224a0,2, 0x12224ac,2, 0x1222500,14, 0x122253c,9, 0x1222564,14, 0x12225a0,2, 0x12225ac,2, 0x1222800,19, 0x1222880,19, 0x1222a10,2, 0x1222a1c,1, 0x1222a50,2, 0x1222a5c,1, 0x1222c00,7, 0x1222c20,1, 0x1222c54,18, 0x1222ca0,1, 0x1222cd4,11, 0x1222e00,1, 0x1222e08,6, 0x1223180,3, 0x1224400,4, 0x1224440,4, 0x12245c0,1, 0x1224600,8, 0x1224800,18, 0x1224880,13, 0x12248f0,3, 0x1224900,18, 0x1224980,13, 0x12249f0,3, 0x1224e00,4, 0x1224e20,4, 0x1224e80,16, 0x1224f00,1, 0x1224f20,1, 0x1225020,2, 0x1225208,6, 0x1225228,10, 0x1225288,6, 0x12252a8,10, 0x1225600,32, 0x12258c0,8, 0x1225900,24, 0x12259b0,4, 0x1225aa0,2, 0x1225ac0,4, 0x1226200,19, 0x1226280,19, 0x1226400,14, 0x122643c,9, 0x1226464,14, 0x12264a0,2, 0x12264ac,2, 0x1226500,14, 0x122653c,9, 0x1226564,14, 0x12265a0,2, 0x12265ac,2, 0x1226800,19, 0x1226880,19, 0x1226a10,2, 0x1226a1c,1, 0x1226a50,2, 0x1226a5c,1, 0x1226c00,7, 0x1226c20,1, 0x1226c54,18, 0x1226ca0,1, 0x1226cd4,11, 0x1226e00,1, 0x1226e08,6, 0x1227180,3, 0x1229000,13, 0x122e000,19, 0x122ea00,10, 0x122ea80,3, 0x122f000,1, 0x122f008,5, 0x122f038,1, 0x122f044,1, 0x122f050,2, 0x122f060,8, 0x122f140,19, 0x122f190,4, 0x1230000,2, 0x123000c,2, 0x1230040,7, 0x1230100,3, 0x1230110,3, 0x1230120,5, 0x1230200,6, 0x1230240,5, 0x1230400,2, 0x123040c,2, 0x1230440,7, 0x1230500,3, 0x1230510,3, 0x1230520,5, 0x1230600,6, 0x1230640,5, 0x1230800,2, 0x123080c,2, 0x1230840,7, 0x1230900,3, 0x1230910,3, 0x1230920,5, 0x1230a00,6, 0x1230a40,5, 0x1230c00,2, 0x1230c0c,2, 0x1230c40,7, 0x1230d00,3, 0x1230d10,3, 0x1230d20,5, 0x1230e00,6, 0x1230e40,5, 0x1231000,2, 0x123100c,2, 0x1231040,7, 0x1231100,3, 0x1231110,3, 0x1231120,5, 0x1231200,6, 0x1231240,5, 0x1231400,2, 0x123140c,2, 0x1231440,7, 0x1231500,3, 0x1231510,3, 0x1231520,5, 0x1231600,6, 0x1231640,5, 0x1231800,2, 0x123180c,2, 0x1231840,7, 0x1231900,3, 0x1231910,3, 0x1231920,5, 0x1231a00,6, 0x1231a40,5, 0x1231c00,2, 0x1231c0c,2, 0x1231c40,7, 0x1231d00,3, 0x1231d10,3, 0x1231d20,5, 0x1231e00,6, 0x1231e40,5, 0x1232000,5, 0x1232040,9, 0x1232100,3, 0x1232200,1, 0x1232210,1, 0x1232220,1, 0x1232230,1, 0x1232240,1, 0x1232300,3, 0x1232314,1, 0x1232320,4, 0x1232400,5, 0x1232440,5, 0x1233000,80, 0x1233200,1, 0x1238000,7, 0x1238030,2, 0x1238040,7, 0x1238070,2, 0x1238100,2, 0x1238120,2, 0x1238140,2, 0x1238160,2, 0x1238180,9, 0x1238200,7, 0x1238230,2, 0x1238240,7, 0x1238270,2, 0x1238300,2, 0x1238320,2, 0x1238340,2, 0x1238360,2, 0x1238380,9, 0x1238400,11, 0x1238500,11, 0x1239000,3, 0x1239010,2, 0x123901c,5, 0x1239040,8, 0x1239080,3, 0x1239090,2, 0x123909c,5, 0x12390c0,8, 0x1239100,3, 0x1239110,2, 0x123911c,5, 0x1239140,8, 0x1239180,3, 0x1239190,2, 0x123919c,5, 0x12391c0,8, 0x1239200,7, 0x1239220,12, 0x1239280,7, 0x12392a0,12, 0x1239300,3, 0x1239310,1, 0x1239400,3, 0x1239410,2, 0x123941c,5, 0x1239440,8, 0x1239480,3, 0x1239490,2, 0x123949c,5, 0x12394c0,8, 0x1239500,3, 0x1239510,2, 0x123951c,5, 0x1239540,8, 0x1239580,3, 0x1239590,2, 0x123959c,5, 0x12395c0,8, 0x1239600,7, 0x1239620,12, 0x1239680,7, 0x12396a0,12, 0x1239700,3, 0x1239710,1, 0x1239804,1, 0x1239824,21, 0x1239880,16, 0x1239900,5, 0x1239920,11, 0x1239950,9, 0x1239980,22, 0x1239a00,22, 0x1239a80,22, 0x1239b00,22, 0x1239b80,22, 0x1239c00,22, 0x1239c80,22, 0x1239d00,22, 0x1239d80,3, 0x1240000,5, 0x1240018,5, 0x1240030,3, 0x1240044,3, 0x1240100,58, 0x12401f0,3, 0x1240280,3, 0x1240400,5, 0x1240418,5, 0x1240430,3, 0x1240444,3, 0x1240500,58, 0x12405f0,3, 0x1240680,3, 0x1241018,2, 0x1241100,2, 0x1241110,10, 0x1241140,2, 0x1241150,10, 0x1241208,1, 0x1241220,12, 0x1241280,1, 0x1241288,2, 0x1241400,4, 0x1242000,5, 0x1242018,5, 0x1242030,3, 0x1242044,3, 0x1242100,58, 0x12421f0,3, 0x1242280,3, 0x1242400,5, 0x1242418,5, 0x1242430,3, 0x1242444,3, 0x1242500,58, 0x12425f0,3, 0x1242680,3, 0x1243018,2, 0x1243100,2, 0x1243110,10, 0x1243140,2, 0x1243150,10, 0x1243208,1, 0x1243220,12, 0x1243280,1, 0x1243288,2, 0x1243400,4, 0x1244000,2, 0x124400c,1, 0x1244030,3, 0x1244040,2, 0x124404c,1, 0x1244070,3, 0x1244100,2, 0x124410c,1, 0x1244130,3, 0x1244140,2, 0x124414c,1, 0x1244170,3, 0x1244200,15, 0x1244280,15, 0x1244300,15, 0x1244380,15, 0x1244400,15, 0x1244480,15, 0x1244500,15, 0x1244580,15, 0x1244604,10, 0x1244700,2, 0x124470c,7, 0x1244740,1, 0x1244770,1, 0x12447c0,2, 0x12447d0,4, 0x1245000,3, 0x1245010,1, 0x124501c,3, 0x1245104,1, 0x1245110,4, 0x1245124,1, 0x1245130,4, 0x1245144,1, 0x1245150,4, 0x1245164,1, 0x1245170,5, 0x1245190,4, 0x1245a00,4, 0x1245c00,129, 0x1246000,37, 0x1246098,1, 0x1246100,37, 0x1246198,1, 0x1246200,37, 0x1246298,1, 0x1246300,37, 0x1246398,1, 0x1246400,37, 0x1246498,1, 0x1246500,37, 0x1246598,1, 0x1246600,37, 0x1246698,1, 0x1246700,37, 0x1246798,1, 0x124c000,91, 0x124c400,4, 0x124c440,15, 0x124c480,4, 0x124c4c0,15, 0x124c500,4, 0x124c540,15, 0x124c580,4, 0x124c5c0,15, 0x124c600,4, 0x124c640,10, 0x124c680,4, 0x124c6c0,10, 0x124c800,4, 0x124c840,33, 0x124ca00,13, 0x124ca80,1, 0x124ca88,8, 0x124cac0,6, 0x124cae0,1, 0x124cae8,2, 0x124cb04,14, 0x124cc00,4, 0x124ccc8,1, 0x124cfcc,3, 0x124cfe0,99, 0x124d400,4, 0x124d440,15, 0x124d480,4, 0x124d4c0,15, 0x124d500,4, 0x124d540,15, 0x124d580,4, 0x124d5c0,15, 0x124d600,4, 0x124d640,10, 0x124d680,4, 0x124d6c0,10, 0x124d800,4, 0x124d840,33, 0x124da00,13, 0x124da80,1, 0x124da88,8, 0x124dac0,6, 0x124dae0,1, 0x124dae8,2, 0x124db04,14, 0x124dc00,4, 0x124dcc8,1, 0x124dfcc,3, 0x124dfe0,27, 0x124f000,19, 0x124fa00,10, 0x124fa80,3, 0x124fb00,6, 0x1250000,51, 0x1250a00,10, 0x1250a80,3, 0x1251000,2, 0x125100c,4, 0x1251028,3, 0x1251038,4, 0x1251050,2, 0x1251080,4, 0x1251098,7, 0x1251120,4, 0x1251200,4, 0x1251214,7, 0x1251234,3, 0x1251280,8, 0x12512c0,5, 0x1251300,2, 0x125130c,3, 0x1251400,24, 0x1251464,2, 0x1251470,3, 0x1251500,25, 0x12515c0,8, 0x12515e8,5, 0x1251600,5, 0x1251618,1, 0x1251620,1, 0x1251628,1, 0x1251630,2, 0x1251640,2, 0x1251650,2, 0x1251690,4, 0x1251740,2, 0x1251760,6, 0x1251780,6, 0x12517a0,6, 0x12517c0,6, 0x12517e0,1, 0x1251800,2, 0x125180c,4, 0x1251828,3, 0x1251838,4, 0x1251850,2, 0x1251880,4, 0x1251898,7, 0x1251920,4, 0x1251a00,4, 0x1251a14,7, 0x1251a34,3, 0x1251a80,8, 0x1251ac0,5, 0x1251b00,2, 0x1251b0c,3, 0x1251c00,24, 0x1251c64,2, 0x1251c70,3, 0x1251d00,25, 0x1251dc0,8, 0x1251de8,5, 0x1251e00,5, 0x1251e18,1, 0x1251e20,1, 0x1251e28,1, 0x1251e30,2, 0x1251e40,2, 0x1251e50,2, 0x1251e90,4, 0x1251f40,2, 0x1251f60,6, 0x1251f80,6, 0x1251fa0,6, 0x1251fc0,6, 0x1251fe0,1, 0x1252000,19, 0x1252080,2, 0x12520b0,2, 0x12520c0,2, 0x1260000,11, 0x1260040,16, 0x1260084,5, 0x1260200,7, 0x1260220,6, 0x1260240,7, 0x1260260,6, 0x1260280,6, 0x12602a0,2, 0x12602ac,2, 0x12602c0,7, 0x12602e0,7, 0x1260300,2, 0x126030c,2, 0x1260320,6, 0x1260400,2, 0x1261000,19, 0x1262104,23, 0x1262180,7, 0x12621a0,6, 0x12621c0,7, 0x12621e0,6, 0x1262200,4, 0x1262220,4, 0x1262240,11, 0x1262270,32, 0x1262300,24, 0x1262380,20, 0x1262400,61, 0x1262500,25, 0x1262568,4, 0x1262580,2, 0x12625a0,1, 0x12625c0,11, 0x1262600,9, 0x1262640,3, 0x1262650,3, 0x1262664,3, 0x1262680,22, 0x1262800,11, 0x1263000,536, 0x1264104,23, 0x1264180,7, 0x12641a0,6, 0x12641c0,7, 0x12641e0,6, 0x1264200,4, 0x1264220,4, 0x1264240,11, 0x1264270,32, 0x1264300,24, 0x1264380,20, 0x1264400,61, 0x1264500,25, 0x1264568,4, 0x1264580,2, 0x12645a0,1, 0x12645c0,11, 0x1264600,9, 0x1264640,3, 0x1264650,3, 0x1264664,3, 0x1264680,22, 0x1264800,11, 0x1265000,536, 0x126a000,7, 0x126a048,8, 0x126a080,8, 0x126a100,7, 0x126a148,8, 0x126a180,8, 0x1270000,11, 0x1270040,16, 0x1270084,5, 0x1270200,7, 0x1270220,6, 0x1270240,7, 0x1270260,6, 0x1270280,6, 0x12702a0,2, 0x12702ac,2, 0x12702c0,7, 0x12702e0,7, 0x1270300,2, 0x127030c,2, 0x1270320,6, 0x1270400,2, 0x1271000,19, 0x1272104,23, 0x1272180,7, 0x12721a0,6, 0x12721c0,7, 0x12721e0,6, 0x1272200,4, 0x1272220,4, 0x1272240,11, 0x1272270,32, 0x1272300,24, 0x1272380,20, 0x1272400,61, 0x1272500,25, 0x1272568,4, 0x1272580,2, 0x12725a0,1, 0x12725c0,11, 0x1272600,9, 0x1272640,3, 0x1272650,3, 0x1272664,3, 0x1272680,22, 0x1272800,11, 0x1273000,536, 0x1274104,23, 0x1274180,7, 0x12741a0,6, 0x12741c0,7, 0x12741e0,6, 0x1274200,4, 0x1274220,4, 0x1274240,11, 0x1274270,32, 0x1274300,24, 0x1274380,20, 0x1274400,61, 0x1274500,25, 0x1274568,4, 0x1274580,2, 0x12745a0,1, 0x12745c0,11, 0x1274600,9, 0x1274640,3, 0x1274650,3, 0x1274664,3, 0x1274680,22, 0x1274800,11, 0x1275000,536, 0x127a000,7, 0x127a048,8, 0x127a080,8, 0x127a100,7, 0x127a148,8, 0x127a180,8, 0x1280400,4, 0x1280440,4, 0x12805c0,1, 0x1280600,8, 0x1280800,18, 0x1280880,13, 0x12808f0,3, 0x1280900,18, 0x1280980,13, 0x12809f0,3, 0x1280e00,4, 0x1280e20,4, 0x1280e80,16, 0x1280f00,1, 0x1280f20,1, 0x1281020,2, 0x1281208,6, 0x1281228,10, 0x1281288,6, 0x12812a8,10, 0x1281600,32, 0x12818c0,8, 0x1281900,24, 0x12819b0,4, 0x1281aa0,2, 0x1281ac0,4, 0x1282200,19, 0x1282280,19, 0x1282400,14, 0x128243c,9, 0x1282464,14, 0x12824a0,2, 0x12824ac,2, 0x1282500,14, 0x128253c,9, 0x1282564,14, 0x12825a0,2, 0x12825ac,2, 0x1282800,19, 0x1282880,19, 0x1282a10,2, 0x1282a1c,1, 0x1282a50,2, 0x1282a5c,1, 0x1282c00,7, 0x1282c20,1, 0x1282c54,18, 0x1282ca0,1, 0x1282cd4,11, 0x1282e00,1, 0x1282e08,6, 0x1283180,3, 0x1284400,4, 0x1284440,4, 0x12845c0,1, 0x1284600,8, 0x1284800,18, 0x1284880,13, 0x12848f0,3, 0x1284900,18, 0x1284980,13, 0x12849f0,3, 0x1284e00,4, 0x1284e20,4, 0x1284e80,16, 0x1284f00,1, 0x1284f20,1, 0x1285020,2, 0x1285208,6, 0x1285228,10, 0x1285288,6, 0x12852a8,10, 0x1285600,32, 0x12858c0,8, 0x1285900,24, 0x12859b0,4, 0x1285aa0,2, 0x1285ac0,4, 0x1286200,19, 0x1286280,19, 0x1286400,14, 0x128643c,9, 0x1286464,14, 0x12864a0,2, 0x12864ac,2, 0x1286500,14, 0x128653c,9, 0x1286564,14, 0x12865a0,2, 0x12865ac,2, 0x1286800,19, 0x1286880,19, 0x1286a10,2, 0x1286a1c,1, 0x1286a50,2, 0x1286a5c,1, 0x1286c00,7, 0x1286c20,1, 0x1286c54,18, 0x1286ca0,1, 0x1286cd4,11, 0x1286e00,1, 0x1286e08,6, 0x1287180,3, 0x1289000,13, 0x128e000,19, 0x128ea00,10, 0x128ea80,3, 0x128f000,1, 0x128f008,5, 0x128f038,1, 0x128f044,1, 0x128f050,2, 0x128f060,8, 0x128f140,19, 0x128f190,4, 0x1290000,2, 0x129000c,2, 0x1290040,7, 0x1290100,3, 0x1290110,3, 0x1290120,5, 0x1290200,6, 0x1290240,5, 0x1290400,2, 0x129040c,2, 0x1290440,7, 0x1290500,3, 0x1290510,3, 0x1290520,5, 0x1290600,6, 0x1290640,5, 0x1290800,2, 0x129080c,2, 0x1290840,7, 0x1290900,3, 0x1290910,3, 0x1290920,5, 0x1290a00,6, 0x1290a40,5, 0x1290c00,2, 0x1290c0c,2, 0x1290c40,7, 0x1290d00,3, 0x1290d10,3, 0x1290d20,5, 0x1290e00,6, 0x1290e40,5, 0x1291000,2, 0x129100c,2, 0x1291040,7, 0x1291100,3, 0x1291110,3, 0x1291120,5, 0x1291200,6, 0x1291240,5, 0x1291400,2, 0x129140c,2, 0x1291440,7, 0x1291500,3, 0x1291510,3, 0x1291520,5, 0x1291600,6, 0x1291640,5, 0x1291800,2, 0x129180c,2, 0x1291840,7, 0x1291900,3, 0x1291910,3, 0x1291920,5, 0x1291a00,6, 0x1291a40,5, 0x1291c00,2, 0x1291c0c,2, 0x1291c40,7, 0x1291d00,3, 0x1291d10,3, 0x1291d20,5, 0x1291e00,6, 0x1291e40,5, 0x1292000,5, 0x1292040,9, 0x1292100,3, 0x1292200,1, 0x1292210,1, 0x1292220,1, 0x1292230,1, 0x1292240,1, 0x1292300,3, 0x1292314,1, 0x1292320,4, 0x1292400,5, 0x1292440,5, 0x1293000,80, 0x1293200,1, 0x1298000,7, 0x1298030,2, 0x1298040,7, 0x1298070,2, 0x1298100,2, 0x1298120,2, 0x1298140,2, 0x1298160,2, 0x1298180,9, 0x1298200,7, 0x1298230,2, 0x1298240,7, 0x1298270,2, 0x1298300,2, 0x1298320,2, 0x1298340,2, 0x1298360,2, 0x1298380,9, 0x1298400,11, 0x1298500,11, 0x1299000,3, 0x1299010,2, 0x129901c,5, 0x1299040,8, 0x1299080,3, 0x1299090,2, 0x129909c,5, 0x12990c0,8, 0x1299100,3, 0x1299110,2, 0x129911c,5, 0x1299140,8, 0x1299180,3, 0x1299190,2, 0x129919c,5, 0x12991c0,8, 0x1299200,7, 0x1299220,12, 0x1299280,7, 0x12992a0,12, 0x1299300,3, 0x1299310,1, 0x1299400,3, 0x1299410,2, 0x129941c,5, 0x1299440,8, 0x1299480,3, 0x1299490,2, 0x129949c,5, 0x12994c0,8, 0x1299500,3, 0x1299510,2, 0x129951c,5, 0x1299540,8, 0x1299580,3, 0x1299590,2, 0x129959c,5, 0x12995c0,8, 0x1299600,7, 0x1299620,12, 0x1299680,7, 0x12996a0,12, 0x1299700,3, 0x1299710,1, 0x1299804,1, 0x1299824,21, 0x1299880,16, 0x1299900,5, 0x1299920,11, 0x1299950,9, 0x1299980,22, 0x1299a00,22, 0x1299a80,22, 0x1299b00,22, 0x1299b80,22, 0x1299c00,22, 0x1299c80,22, 0x1299d00,22, 0x1299d80,3, 0x12a0000,5, 0x12a0018,5, 0x12a0030,3, 0x12a0044,3, 0x12a0100,58, 0x12a01f0,3, 0x12a0280,3, 0x12a0400,5, 0x12a0418,5, 0x12a0430,3, 0x12a0444,3, 0x12a0500,58, 0x12a05f0,3, 0x12a0680,3, 0x12a1018,2, 0x12a1100,2, 0x12a1110,10, 0x12a1140,2, 0x12a1150,10, 0x12a1208,1, 0x12a1220,12, 0x12a1280,1, 0x12a1288,2, 0x12a1400,4, 0x12a2000,5, 0x12a2018,5, 0x12a2030,3, 0x12a2044,3, 0x12a2100,58, 0x12a21f0,3, 0x12a2280,3, 0x12a2400,5, 0x12a2418,5, 0x12a2430,3, 0x12a2444,3, 0x12a2500,58, 0x12a25f0,3, 0x12a2680,3, 0x12a3018,2, 0x12a3100,2, 0x12a3110,10, 0x12a3140,2, 0x12a3150,10, 0x12a3208,1, 0x12a3220,12, 0x12a3280,1, 0x12a3288,2, 0x12a3400,4, 0x12a4000,2, 0x12a400c,1, 0x12a4030,3, 0x12a4040,2, 0x12a404c,1, 0x12a4070,3, 0x12a4100,2, 0x12a410c,1, 0x12a4130,3, 0x12a4140,2, 0x12a414c,1, 0x12a4170,3, 0x12a4200,15, 0x12a4280,15, 0x12a4300,15, 0x12a4380,15, 0x12a4400,15, 0x12a4480,15, 0x12a4500,15, 0x12a4580,15, 0x12a4604,10, 0x12a4700,2, 0x12a470c,7, 0x12a4740,1, 0x12a4770,1, 0x12a47c0,2, 0x12a47d0,4, 0x12a5000,3, 0x12a5010,1, 0x12a501c,3, 0x12a5104,1, 0x12a5110,4, 0x12a5124,1, 0x12a5130,4, 0x12a5144,1, 0x12a5150,4, 0x12a5164,1, 0x12a5170,5, 0x12a5190,4, 0x12a5a00,4, 0x12a5c00,129, 0x12a6000,37, 0x12a6098,1, 0x12a6100,37, 0x12a6198,1, 0x12a6200,37, 0x12a6298,1, 0x12a6300,37, 0x12a6398,1, 0x12a6400,37, 0x12a6498,1, 0x12a6500,37, 0x12a6598,1, 0x12a6600,37, 0x12a6698,1, 0x12a6700,37, 0x12a6798,1, 0x12ac000,91, 0x12ac400,4, 0x12ac440,15, 0x12ac480,4, 0x12ac4c0,15, 0x12ac500,4, 0x12ac540,15, 0x12ac580,4, 0x12ac5c0,15, 0x12ac600,4, 0x12ac640,10, 0x12ac680,4, 0x12ac6c0,10, 0x12ac800,4, 0x12ac840,33, 0x12aca00,13, 0x12aca80,1, 0x12aca88,8, 0x12acac0,6, 0x12acae0,1, 0x12acae8,2, 0x12acb04,14, 0x12acc00,4, 0x12accc8,1, 0x12acfcc,3, 0x12acfe0,99, 0x12ad400,4, 0x12ad440,15, 0x12ad480,4, 0x12ad4c0,15, 0x12ad500,4, 0x12ad540,15, 0x12ad580,4, 0x12ad5c0,15, 0x12ad600,4, 0x12ad640,10, 0x12ad680,4, 0x12ad6c0,10, 0x12ad800,4, 0x12ad840,33, 0x12ada00,13, 0x12ada80,1, 0x12ada88,8, 0x12adac0,6, 0x12adae0,1, 0x12adae8,2, 0x12adb04,14, 0x12adc00,4, 0x12adcc8,1, 0x12adfcc,3, 0x12adfe0,27, 0x12af000,19, 0x12afa00,10, 0x12afa80,3, 0x12afb00,6, 0x12b0000,51, 0x12b0a00,10, 0x12b0a80,3, 0x12b1000,2, 0x12b100c,4, 0x12b1028,3, 0x12b1038,4, 0x12b1050,2, 0x12b1080,4, 0x12b1098,7, 0x12b1120,4, 0x12b1200,4, 0x12b1214,7, 0x12b1234,3, 0x12b1280,8, 0x12b12c0,5, 0x12b1300,2, 0x12b130c,3, 0x12b1400,24, 0x12b1464,2, 0x12b1470,3, 0x12b1500,25, 0x12b15c0,8, 0x12b15e8,5, 0x12b1600,5, 0x12b1618,1, 0x12b1620,1, 0x12b1628,1, 0x12b1630,2, 0x12b1640,2, 0x12b1650,2, 0x12b1690,4, 0x12b1740,2, 0x12b1760,6, 0x12b1780,6, 0x12b17a0,6, 0x12b17c0,6, 0x12b17e0,1, 0x12b1800,2, 0x12b180c,4, 0x12b1828,3, 0x12b1838,4, 0x12b1850,2, 0x12b1880,4, 0x12b1898,7, 0x12b1920,4, 0x12b1a00,4, 0x12b1a14,7, 0x12b1a34,3, 0x12b1a80,8, 0x12b1ac0,5, 0x12b1b00,2, 0x12b1b0c,3, 0x12b1c00,24, 0x12b1c64,2, 0x12b1c70,3, 0x12b1d00,25, 0x12b1dc0,8, 0x12b1de8,5, 0x12b1e00,5, 0x12b1e18,1, 0x12b1e20,1, 0x12b1e28,1, 0x12b1e30,2, 0x12b1e40,2, 0x12b1e50,2, 0x12b1e90,4, 0x12b1f40,2, 0x12b1f60,6, 0x12b1f80,6, 0x12b1fa0,6, 0x12b1fc0,6, 0x12b1fe0,1, 0x12b2000,19, 0x12b2080,2, 0x12b20b0,2, 0x12b20c0,2, 0x12c0000,11, 0x12c0040,16, 0x12c0084,5, 0x12c0200,7, 0x12c0220,6, 0x12c0240,7, 0x12c0260,6, 0x12c0280,6, 0x12c02a0,2, 0x12c02ac,2, 0x12c02c0,7, 0x12c02e0,7, 0x12c0300,2, 0x12c030c,2, 0x12c0320,6, 0x12c0400,2, 0x12c1000,19, 0x12c2104,23, 0x12c2180,7, 0x12c21a0,6, 0x12c21c0,7, 0x12c21e0,6, 0x12c2200,4, 0x12c2220,4, 0x12c2240,11, 0x12c2270,32, 0x12c2300,24, 0x12c2380,20, 0x12c2400,61, 0x12c2500,25, 0x12c2568,4, 0x12c2580,2, 0x12c25a0,1, 0x12c25c0,11, 0x12c2600,9, 0x12c2640,3, 0x12c2650,3, 0x12c2664,3, 0x12c2680,22, 0x12c2800,11, 0x12c3000,536, 0x12c4104,23, 0x12c4180,7, 0x12c41a0,6, 0x12c41c0,7, 0x12c41e0,6, 0x12c4200,4, 0x12c4220,4, 0x12c4240,11, 0x12c4270,32, 0x12c4300,24, 0x12c4380,20, 0x12c4400,61, 0x12c4500,25, 0x12c4568,4, 0x12c4580,2, 0x12c45a0,1, 0x12c45c0,11, 0x12c4600,9, 0x12c4640,3, 0x12c4650,3, 0x12c4664,3, 0x12c4680,22, 0x12c4800,11, 0x12c5000,536, 0x12ca000,7, 0x12ca048,8, 0x12ca080,8, 0x12ca100,7, 0x12ca148,8, 0x12ca180,8, 0x12d0000,11, 0x12d0040,16, 0x12d0084,5, 0x12d0200,7, 0x12d0220,6, 0x12d0240,7, 0x12d0260,6, 0x12d0280,6, 0x12d02a0,2, 0x12d02ac,2, 0x12d02c0,7, 0x12d02e0,7, 0x12d0300,2, 0x12d030c,2, 0x12d0320,6, 0x12d0400,2, 0x12d1000,19, 0x12d2104,23, 0x12d2180,7, 0x12d21a0,6, 0x12d21c0,7, 0x12d21e0,6, 0x12d2200,4, 0x12d2220,4, 0x12d2240,11, 0x12d2270,32, 0x12d2300,24, 0x12d2380,20, 0x12d2400,61, 0x12d2500,25, 0x12d2568,4, 0x12d2580,2, 0x12d25a0,1, 0x12d25c0,11, 0x12d2600,9, 0x12d2640,3, 0x12d2650,3, 0x12d2664,3, 0x12d2680,22, 0x12d2800,11, 0x12d3000,536, 0x12d4104,23, 0x12d4180,7, 0x12d41a0,6, 0x12d41c0,7, 0x12d41e0,6, 0x12d4200,4, 0x12d4220,4, 0x12d4240,11, 0x12d4270,32, 0x12d4300,24, 0x12d4380,20, 0x12d4400,61, 0x12d4500,25, 0x12d4568,4, 0x12d4580,2, 0x12d45a0,1, 0x12d45c0,11, 0x12d4600,9, 0x12d4640,3, 0x12d4650,3, 0x12d4664,3, 0x12d4680,22, 0x12d4800,11, 0x12d5000,536, 0x12da000,7, 0x12da048,8, 0x12da080,8, 0x12da100,7, 0x12da148,8, 0x12da180,8, 0x12e0400,4, 0x12e0440,4, 0x12e05c0,1, 0x12e0600,8, 0x12e0800,18, 0x12e0880,13, 0x12e08f0,3, 0x12e0900,18, 0x12e0980,13, 0x12e09f0,3, 0x12e0e00,4, 0x12e0e20,4, 0x12e0e80,16, 0x12e0f00,1, 0x12e0f20,1, 0x12e1020,2, 0x12e1208,6, 0x12e1228,10, 0x12e1288,6, 0x12e12a8,10, 0x12e1600,32, 0x12e18c0,8, 0x12e1900,24, 0x12e19b0,4, 0x12e1aa0,2, 0x12e1ac0,4, 0x12e2200,19, 0x12e2280,19, 0x12e2400,14, 0x12e243c,9, 0x12e2464,14, 0x12e24a0,2, 0x12e24ac,2, 0x12e2500,14, 0x12e253c,9, 0x12e2564,14, 0x12e25a0,2, 0x12e25ac,2, 0x12e2800,19, 0x12e2880,19, 0x12e2a10,2, 0x12e2a1c,1, 0x12e2a50,2, 0x12e2a5c,1, 0x12e2c00,7, 0x12e2c20,1, 0x12e2c54,18, 0x12e2ca0,1, 0x12e2cd4,11, 0x12e2e00,1, 0x12e2e08,6, 0x12e3180,3, 0x12e4400,4, 0x12e4440,4, 0x12e45c0,1, 0x12e4600,8, 0x12e4800,18, 0x12e4880,13, 0x12e48f0,3, 0x12e4900,18, 0x12e4980,13, 0x12e49f0,3, 0x12e4e00,4, 0x12e4e20,4, 0x12e4e80,16, 0x12e4f00,1, 0x12e4f20,1, 0x12e5020,2, 0x12e5208,6, 0x12e5228,10, 0x12e5288,6, 0x12e52a8,10, 0x12e5600,32, 0x12e58c0,8, 0x12e5900,24, 0x12e59b0,4, 0x12e5aa0,2, 0x12e5ac0,4, 0x12e6200,19, 0x12e6280,19, 0x12e6400,14, 0x12e643c,9, 0x12e6464,14, 0x12e64a0,2, 0x12e64ac,2, 0x12e6500,14, 0x12e653c,9, 0x12e6564,14, 0x12e65a0,2, 0x12e65ac,2, 0x12e6800,19, 0x12e6880,19, 0x12e6a10,2, 0x12e6a1c,1, 0x12e6a50,2, 0x12e6a5c,1, 0x12e6c00,7, 0x12e6c20,1, 0x12e6c54,18, 0x12e6ca0,1, 0x12e6cd4,11, 0x12e6e00,1, 0x12e6e08,6, 0x12e7180,3, 0x12e9000,13, 0x12ee000,19, 0x12eea00,10, 0x12eea80,3, 0x12ef000,1, 0x12ef008,5, 0x12ef038,1, 0x12ef044,1, 0x12ef050,2, 0x12ef060,8, 0x12ef140,19, 0x12ef190,4, 0x12f0000,2, 0x12f000c,2, 0x12f0040,7, 0x12f0100,3, 0x12f0110,3, 0x12f0120,5, 0x12f0200,6, 0x12f0240,5, 0x12f0400,2, 0x12f040c,2, 0x12f0440,7, 0x12f0500,3, 0x12f0510,3, 0x12f0520,5, 0x12f0600,6, 0x12f0640,5, 0x12f0800,2, 0x12f080c,2, 0x12f0840,7, 0x12f0900,3, 0x12f0910,3, 0x12f0920,5, 0x12f0a00,6, 0x12f0a40,5, 0x12f0c00,2, 0x12f0c0c,2, 0x12f0c40,7, 0x12f0d00,3, 0x12f0d10,3, 0x12f0d20,5, 0x12f0e00,6, 0x12f0e40,5, 0x12f1000,2, 0x12f100c,2, 0x12f1040,7, 0x12f1100,3, 0x12f1110,3, 0x12f1120,5, 0x12f1200,6, 0x12f1240,5, 0x12f1400,2, 0x12f140c,2, 0x12f1440,7, 0x12f1500,3, 0x12f1510,3, 0x12f1520,5, 0x12f1600,6, 0x12f1640,5, 0x12f1800,2, 0x12f180c,2, 0x12f1840,7, 0x12f1900,3, 0x12f1910,3, 0x12f1920,5, 0x12f1a00,6, 0x12f1a40,5, 0x12f1c00,2, 0x12f1c0c,2, 0x12f1c40,7, 0x12f1d00,3, 0x12f1d10,3, 0x12f1d20,5, 0x12f1e00,6, 0x12f1e40,5, 0x12f2000,5, 0x12f2040,9, 0x12f2100,3, 0x12f2200,1, 0x12f2210,1, 0x12f2220,1, 0x12f2230,1, 0x12f2240,1, 0x12f2300,3, 0x12f2314,1, 0x12f2320,4, 0x12f2400,5, 0x12f2440,5, 0x12f3000,80, 0x12f3200,1, 0x12f8000,7, 0x12f8030,2, 0x12f8040,7, 0x12f8070,2, 0x12f8100,2, 0x12f8120,2, 0x12f8140,2, 0x12f8160,2, 0x12f8180,9, 0x12f8200,7, 0x12f8230,2, 0x12f8240,7, 0x12f8270,2, 0x12f8300,2, 0x12f8320,2, 0x12f8340,2, 0x12f8360,2, 0x12f8380,9, 0x12f8400,11, 0x12f8500,11, 0x12f9000,3, 0x12f9010,2, 0x12f901c,5, 0x12f9040,8, 0x12f9080,3, 0x12f9090,2, 0x12f909c,5, 0x12f90c0,8, 0x12f9100,3, 0x12f9110,2, 0x12f911c,5, 0x12f9140,8, 0x12f9180,3, 0x12f9190,2, 0x12f919c,5, 0x12f91c0,8, 0x12f9200,7, 0x12f9220,12, 0x12f9280,7, 0x12f92a0,12, 0x12f9300,3, 0x12f9310,1, 0x12f9400,3, 0x12f9410,2, 0x12f941c,5, 0x12f9440,8, 0x12f9480,3, 0x12f9490,2, 0x12f949c,5, 0x12f94c0,8, 0x12f9500,3, 0x12f9510,2, 0x12f951c,5, 0x12f9540,8, 0x12f9580,3, 0x12f9590,2, 0x12f959c,5, 0x12f95c0,8, 0x12f9600,7, 0x12f9620,12, 0x12f9680,7, 0x12f96a0,12, 0x12f9700,3, 0x12f9710,1, 0x12f9804,1, 0x12f9824,21, 0x12f9880,16, 0x12f9900,5, 0x12f9920,11, 0x12f9950,9, 0x12f9980,22, 0x12f9a00,22, 0x12f9a80,22, 0x12f9b00,22, 0x12f9b80,22, 0x12f9c00,22, 0x12f9c80,22, 0x12f9d00,22, 0x12f9d80,3, 0x1300000,5, 0x1300018,5, 0x1300030,3, 0x1300044,3, 0x1300100,58, 0x13001f0,3, 0x1300280,3, 0x1300400,5, 0x1300418,5, 0x1300430,3, 0x1300444,3, 0x1300500,58, 0x13005f0,3, 0x1300680,3, 0x1301018,2, 0x1301100,2, 0x1301110,10, 0x1301140,2, 0x1301150,10, 0x1301208,1, 0x1301220,12, 0x1301280,1, 0x1301288,2, 0x1301400,4, 0x1302000,5, 0x1302018,5, 0x1302030,3, 0x1302044,3, 0x1302100,58, 0x13021f0,3, 0x1302280,3, 0x1302400,5, 0x1302418,5, 0x1302430,3, 0x1302444,3, 0x1302500,58, 0x13025f0,3, 0x1302680,3, 0x1303018,2, 0x1303100,2, 0x1303110,10, 0x1303140,2, 0x1303150,10, 0x1303208,1, 0x1303220,12, 0x1303280,1, 0x1303288,2, 0x1303400,4, 0x1304000,2, 0x130400c,1, 0x1304030,3, 0x1304040,2, 0x130404c,1, 0x1304070,3, 0x1304100,2, 0x130410c,1, 0x1304130,3, 0x1304140,2, 0x130414c,1, 0x1304170,3, 0x1304200,15, 0x1304280,15, 0x1304300,15, 0x1304380,15, 0x1304400,15, 0x1304480,15, 0x1304500,15, 0x1304580,15, 0x1304604,10, 0x1304700,2, 0x130470c,7, 0x1304740,1, 0x1304770,1, 0x13047c0,2, 0x13047d0,4, 0x1305000,3, 0x1305010,1, 0x130501c,3, 0x1305104,1, 0x1305110,4, 0x1305124,1, 0x1305130,4, 0x1305144,1, 0x1305150,4, 0x1305164,1, 0x1305170,5, 0x1305190,4, 0x1305a00,4, 0x1305c00,129, 0x1306000,37, 0x1306098,1, 0x1306100,37, 0x1306198,1, 0x1306200,37, 0x1306298,1, 0x1306300,37, 0x1306398,1, 0x1306400,37, 0x1306498,1, 0x1306500,37, 0x1306598,1, 0x1306600,37, 0x1306698,1, 0x1306700,37, 0x1306798,1, 0x130c000,91, 0x130c400,4, 0x130c440,15, 0x130c480,4, 0x130c4c0,15, 0x130c500,4, 0x130c540,15, 0x130c580,4, 0x130c5c0,15, 0x130c600,4, 0x130c640,10, 0x130c680,4, 0x130c6c0,10, 0x130c800,4, 0x130c840,33, 0x130ca00,13, 0x130ca80,1, 0x130ca88,8, 0x130cac0,6, 0x130cae0,1, 0x130cae8,2, 0x130cb04,14, 0x130cc00,4, 0x130ccc8,1, 0x130cfcc,3, 0x130cfe0,99, 0x130d400,4, 0x130d440,15, 0x130d480,4, 0x130d4c0,15, 0x130d500,4, 0x130d540,15, 0x130d580,4, 0x130d5c0,15, 0x130d600,4, 0x130d640,10, 0x130d680,4, 0x130d6c0,10, 0x130d800,4, 0x130d840,33, 0x130da00,13, 0x130da80,1, 0x130da88,8, 0x130dac0,6, 0x130dae0,1, 0x130dae8,2, 0x130db04,14, 0x130dc00,4, 0x130dcc8,1, 0x130dfcc,3, 0x130dfe0,27, 0x130f000,19, 0x130fa00,10, 0x130fa80,3, 0x130fb00,6, 0x1310000,51, 0x1310a00,10, 0x1310a80,3, 0x1311000,2, 0x131100c,4, 0x1311028,3, 0x1311038,4, 0x1311050,2, 0x1311080,4, 0x1311098,7, 0x1311120,4, 0x1311200,4, 0x1311214,7, 0x1311234,3, 0x1311280,8, 0x13112c0,5, 0x1311300,2, 0x131130c,3, 0x1311400,24, 0x1311464,2, 0x1311470,3, 0x1311500,25, 0x13115c0,8, 0x13115e8,5, 0x1311600,5, 0x1311618,1, 0x1311620,1, 0x1311628,1, 0x1311630,2, 0x1311640,2, 0x1311650,2, 0x1311690,4, 0x1311740,2, 0x1311760,6, 0x1311780,6, 0x13117a0,6, 0x13117c0,6, 0x13117e0,1, 0x1311800,2, 0x131180c,4, 0x1311828,3, 0x1311838,4, 0x1311850,2, 0x1311880,4, 0x1311898,7, 0x1311920,4, 0x1311a00,4, 0x1311a14,7, 0x1311a34,3, 0x1311a80,8, 0x1311ac0,5, 0x1311b00,2, 0x1311b0c,3, 0x1311c00,24, 0x1311c64,2, 0x1311c70,3, 0x1311d00,25, 0x1311dc0,8, 0x1311de8,5, 0x1311e00,5, 0x1311e18,1, 0x1311e20,1, 0x1311e28,1, 0x1311e30,2, 0x1311e40,2, 0x1311e50,2, 0x1311e90,4, 0x1311f40,2, 0x1311f60,6, 0x1311f80,6, 0x1311fa0,6, 0x1311fc0,6, 0x1311fe0,1, 0x1312000,19, 0x1312080,2, 0x13120b0,2, 0x13120c0,2, 0x1320000,11, 0x1320040,16, 0x1320084,5, 0x1320200,7, 0x1320220,6, 0x1320240,7, 0x1320260,6, 0x1320280,6, 0x13202a0,2, 0x13202ac,2, 0x13202c0,7, 0x13202e0,7, 0x1320300,2, 0x132030c,2, 0x1320320,6, 0x1320400,2, 0x1321000,19, 0x1322104,23, 0x1322180,7, 0x13221a0,6, 0x13221c0,7, 0x13221e0,6, 0x1322200,4, 0x1322220,4, 0x1322240,11, 0x1322270,32, 0x1322300,24, 0x1322380,20, 0x1322400,61, 0x1322500,25, 0x1322568,4, 0x1322580,2, 0x13225a0,1, 0x13225c0,11, 0x1322600,9, 0x1322640,3, 0x1322650,3, 0x1322664,3, 0x1322680,22, 0x1322800,11, 0x1323000,536, 0x1324104,23, 0x1324180,7, 0x13241a0,6, 0x13241c0,7, 0x13241e0,6, 0x1324200,4, 0x1324220,4, 0x1324240,11, 0x1324270,32, 0x1324300,24, 0x1324380,20, 0x1324400,61, 0x1324500,25, 0x1324568,4, 0x1324580,2, 0x13245a0,1, 0x13245c0,11, 0x1324600,9, 0x1324640,3, 0x1324650,3, 0x1324664,3, 0x1324680,22, 0x1324800,11, 0x1325000,536, 0x132a000,7, 0x132a048,8, 0x132a080,8, 0x132a100,7, 0x132a148,8, 0x132a180,8, 0x1330000,11, 0x1330040,16, 0x1330084,5, 0x1330200,7, 0x1330220,6, 0x1330240,7, 0x1330260,6, 0x1330280,6, 0x13302a0,2, 0x13302ac,2, 0x13302c0,7, 0x13302e0,7, 0x1330300,2, 0x133030c,2, 0x1330320,6, 0x1330400,2, 0x1331000,19, 0x1332104,23, 0x1332180,7, 0x13321a0,6, 0x13321c0,7, 0x13321e0,6, 0x1332200,4, 0x1332220,4, 0x1332240,11, 0x1332270,32, 0x1332300,24, 0x1332380,20, 0x1332400,61, 0x1332500,25, 0x1332568,4, 0x1332580,2, 0x13325a0,1, 0x13325c0,11, 0x1332600,9, 0x1332640,3, 0x1332650,3, 0x1332664,3, 0x1332680,22, 0x1332800,11, 0x1333000,536, 0x1334104,23, 0x1334180,7, 0x13341a0,6, 0x13341c0,7, 0x13341e0,6, 0x1334200,4, 0x1334220,4, 0x1334240,11, 0x1334270,32, 0x1334300,24, 0x1334380,20, 0x1334400,61, 0x1334500,25, 0x1334568,4, 0x1334580,2, 0x13345a0,1, 0x13345c0,11, 0x1334600,9, 0x1334640,3, 0x1334650,3, 0x1334664,3, 0x1334680,22, 0x1334800,11, 0x1335000,536, 0x133a000,7, 0x133a048,8, 0x133a080,8, 0x133a100,7, 0x133a148,8, 0x133a180,8, 0x1340400,4, 0x1340440,4, 0x13405c0,1, 0x1340600,8, 0x1340800,18, 0x1340880,13, 0x13408f0,3, 0x1340900,18, 0x1340980,13, 0x13409f0,3, 0x1340e00,4, 0x1340e20,4, 0x1340e80,16, 0x1340f00,1, 0x1340f20,1, 0x1341020,2, 0x1341208,6, 0x1341228,10, 0x1341288,6, 0x13412a8,10, 0x1341600,32, 0x13418c0,8, 0x1341900,24, 0x13419b0,4, 0x1341aa0,2, 0x1341ac0,4, 0x1342200,19, 0x1342280,19, 0x1342400,14, 0x134243c,9, 0x1342464,14, 0x13424a0,2, 0x13424ac,2, 0x1342500,14, 0x134253c,9, 0x1342564,14, 0x13425a0,2, 0x13425ac,2, 0x1342800,19, 0x1342880,19, 0x1342a10,2, 0x1342a1c,1, 0x1342a50,2, 0x1342a5c,1, 0x1342c00,7, 0x1342c20,1, 0x1342c54,18, 0x1342ca0,1, 0x1342cd4,11, 0x1342e00,1, 0x1342e08,6, 0x1343180,3, 0x1344400,4, 0x1344440,4, 0x13445c0,1, 0x1344600,8, 0x1344800,18, 0x1344880,13, 0x13448f0,3, 0x1344900,18, 0x1344980,13, 0x13449f0,3, 0x1344e00,4, 0x1344e20,4, 0x1344e80,16, 0x1344f00,1, 0x1344f20,1, 0x1345020,2, 0x1345208,6, 0x1345228,10, 0x1345288,6, 0x13452a8,10, 0x1345600,32, 0x13458c0,8, 0x1345900,24, 0x13459b0,4, 0x1345aa0,2, 0x1345ac0,4, 0x1346200,19, 0x1346280,19, 0x1346400,14, 0x134643c,9, 0x1346464,14, 0x13464a0,2, 0x13464ac,2, 0x1346500,14, 0x134653c,9, 0x1346564,14, 0x13465a0,2, 0x13465ac,2, 0x1346800,19, 0x1346880,19, 0x1346a10,2, 0x1346a1c,1, 0x1346a50,2, 0x1346a5c,1, 0x1346c00,7, 0x1346c20,1, 0x1346c54,18, 0x1346ca0,1, 0x1346cd4,11, 0x1346e00,1, 0x1346e08,6, 0x1347180,3, 0x1349000,13, 0x134e000,19, 0x134ea00,10, 0x134ea80,3, 0x134f000,1, 0x134f008,5, 0x134f038,1, 0x134f044,1, 0x134f050,2, 0x134f060,8, 0x134f140,19, 0x134f190,4, 0x1350000,2, 0x135000c,2, 0x1350040,7, 0x1350100,3, 0x1350110,3, 0x1350120,5, 0x1350200,6, 0x1350240,5, 0x1350400,2, 0x135040c,2, 0x1350440,7, 0x1350500,3, 0x1350510,3, 0x1350520,5, 0x1350600,6, 0x1350640,5, 0x1350800,2, 0x135080c,2, 0x1350840,7, 0x1350900,3, 0x1350910,3, 0x1350920,5, 0x1350a00,6, 0x1350a40,5, 0x1350c00,2, 0x1350c0c,2, 0x1350c40,7, 0x1350d00,3, 0x1350d10,3, 0x1350d20,5, 0x1350e00,6, 0x1350e40,5, 0x1351000,2, 0x135100c,2, 0x1351040,7, 0x1351100,3, 0x1351110,3, 0x1351120,5, 0x1351200,6, 0x1351240,5, 0x1351400,2, 0x135140c,2, 0x1351440,7, 0x1351500,3, 0x1351510,3, 0x1351520,5, 0x1351600,6, 0x1351640,5, 0x1351800,2, 0x135180c,2, 0x1351840,7, 0x1351900,3, 0x1351910,3, 0x1351920,5, 0x1351a00,6, 0x1351a40,5, 0x1351c00,2, 0x1351c0c,2, 0x1351c40,7, 0x1351d00,3, 0x1351d10,3, 0x1351d20,5, 0x1351e00,6, 0x1351e40,5, 0x1352000,5, 0x1352040,9, 0x1352100,3, 0x1352200,1, 0x1352210,1, 0x1352220,1, 0x1352230,1, 0x1352240,1, 0x1352300,3, 0x1352314,1, 0x1352320,4, 0x1352400,5, 0x1352440,5, 0x1353000,80, 0x1353200,1, 0x1358000,7, 0x1358030,2, 0x1358040,7, 0x1358070,2, 0x1358100,2, 0x1358120,2, 0x1358140,2, 0x1358160,2, 0x1358180,9, 0x1358200,7, 0x1358230,2, 0x1358240,7, 0x1358270,2, 0x1358300,2, 0x1358320,2, 0x1358340,2, 0x1358360,2, 0x1358380,9, 0x1358400,11, 0x1358500,11, 0x1359000,3, 0x1359010,2, 0x135901c,5, 0x1359040,8, 0x1359080,3, 0x1359090,2, 0x135909c,5, 0x13590c0,8, 0x1359100,3, 0x1359110,2, 0x135911c,5, 0x1359140,8, 0x1359180,3, 0x1359190,2, 0x135919c,5, 0x13591c0,8, 0x1359200,7, 0x1359220,12, 0x1359280,7, 0x13592a0,12, 0x1359300,3, 0x1359310,1, 0x1359400,3, 0x1359410,2, 0x135941c,5, 0x1359440,8, 0x1359480,3, 0x1359490,2, 0x135949c,5, 0x13594c0,8, 0x1359500,3, 0x1359510,2, 0x135951c,5, 0x1359540,8, 0x1359580,3, 0x1359590,2, 0x135959c,5, 0x13595c0,8, 0x1359600,7, 0x1359620,12, 0x1359680,7, 0x13596a0,12, 0x1359700,3, 0x1359710,1, 0x1359804,1, 0x1359824,21, 0x1359880,16, 0x1359900,5, 0x1359920,11, 0x1359950,9, 0x1359980,22, 0x1359a00,22, 0x1359a80,22, 0x1359b00,22, 0x1359b80,22, 0x1359c00,22, 0x1359c80,22, 0x1359d00,22, 0x1359d80,3, 0x1360000,5, 0x1360018,5, 0x1360030,3, 0x1360044,3, 0x1360100,58, 0x13601f0,3, 0x1360280,3, 0x1360400,5, 0x1360418,5, 0x1360430,3, 0x1360444,3, 0x1360500,58, 0x13605f0,3, 0x1360680,3, 0x1361018,2, 0x1361100,2, 0x1361110,10, 0x1361140,2, 0x1361150,10, 0x1361208,1, 0x1361220,12, 0x1361280,1, 0x1361288,2, 0x1361400,4, 0x1362000,5, 0x1362018,5, 0x1362030,3, 0x1362044,3, 0x1362100,58, 0x13621f0,3, 0x1362280,3, 0x1362400,5, 0x1362418,5, 0x1362430,3, 0x1362444,3, 0x1362500,58, 0x13625f0,3, 0x1362680,3, 0x1363018,2, 0x1363100,2, 0x1363110,10, 0x1363140,2, 0x1363150,10, 0x1363208,1, 0x1363220,12, 0x1363280,1, 0x1363288,2, 0x1363400,4, 0x1364000,2, 0x136400c,1, 0x1364030,3, 0x1364040,2, 0x136404c,1, 0x1364070,3, 0x1364100,2, 0x136410c,1, 0x1364130,3, 0x1364140,2, 0x136414c,1, 0x1364170,3, 0x1364200,15, 0x1364280,15, 0x1364300,15, 0x1364380,15, 0x1364400,15, 0x1364480,15, 0x1364500,15, 0x1364580,15, 0x1364604,10, 0x1364700,2, 0x136470c,7, 0x1364740,1, 0x1364770,1, 0x13647c0,2, 0x13647d0,4, 0x1365000,3, 0x1365010,1, 0x136501c,3, 0x1365104,1, 0x1365110,4, 0x1365124,1, 0x1365130,4, 0x1365144,1, 0x1365150,4, 0x1365164,1, 0x1365170,5, 0x1365190,4, 0x1365a00,4, 0x1365c00,129, 0x1366000,37, 0x1366098,1, 0x1366100,37, 0x1366198,1, 0x1366200,37, 0x1366298,1, 0x1366300,37, 0x1366398,1, 0x1366400,37, 0x1366498,1, 0x1366500,37, 0x1366598,1, 0x1366600,37, 0x1366698,1, 0x1366700,37, 0x1366798,1, 0x136c000,91, 0x136c400,4, 0x136c440,15, 0x136c480,4, 0x136c4c0,15, 0x136c500,4, 0x136c540,15, 0x136c580,4, 0x136c5c0,15, 0x136c600,4, 0x136c640,10, 0x136c680,4, 0x136c6c0,10, 0x136c800,4, 0x136c840,33, 0x136ca00,13, 0x136ca80,1, 0x136ca88,8, 0x136cac0,6, 0x136cae0,1, 0x136cae8,2, 0x136cb04,14, 0x136cc00,4, 0x136ccc8,1, 0x136cfcc,3, 0x136cfe0,99, 0x136d400,4, 0x136d440,15, 0x136d480,4, 0x136d4c0,15, 0x136d500,4, 0x136d540,15, 0x136d580,4, 0x136d5c0,15, 0x136d600,4, 0x136d640,10, 0x136d680,4, 0x136d6c0,10, 0x136d800,4, 0x136d840,33, 0x136da00,13, 0x136da80,1, 0x136da88,8, 0x136dac0,6, 0x136dae0,1, 0x136dae8,2, 0x136db04,14, 0x136dc00,4, 0x136dcc8,1, 0x136dfcc,3, 0x136dfe0,27, 0x136f000,19, 0x136fa00,10, 0x136fa80,3, 0x136fb00,6, 0x1370000,51, 0x1370a00,10, 0x1370a80,3, 0x1371000,2, 0x137100c,4, 0x1371028,3, 0x1371038,4, 0x1371050,2, 0x1371080,4, 0x1371098,7, 0x1371120,4, 0x1371200,4, 0x1371214,7, 0x1371234,3, 0x1371280,8, 0x13712c0,5, 0x1371300,2, 0x137130c,3, 0x1371400,24, 0x1371464,2, 0x1371470,3, 0x1371500,25, 0x13715c0,8, 0x13715e8,5, 0x1371600,5, 0x1371618,1, 0x1371620,1, 0x1371628,1, 0x1371630,2, 0x1371640,2, 0x1371650,2, 0x1371690,4, 0x1371740,2, 0x1371760,6, 0x1371780,6, 0x13717a0,6, 0x13717c0,6, 0x13717e0,1, 0x1371800,2, 0x137180c,4, 0x1371828,3, 0x1371838,4, 0x1371850,2, 0x1371880,4, 0x1371898,7, 0x1371920,4, 0x1371a00,4, 0x1371a14,7, 0x1371a34,3, 0x1371a80,8, 0x1371ac0,5, 0x1371b00,2, 0x1371b0c,3, 0x1371c00,24, 0x1371c64,2, 0x1371c70,3, 0x1371d00,25, 0x1371dc0,8, 0x1371de8,5, 0x1371e00,5, 0x1371e18,1, 0x1371e20,1, 0x1371e28,1, 0x1371e30,2, 0x1371e40,2, 0x1371e50,2, 0x1371e90,4, 0x1371f40,2, 0x1371f60,6, 0x1371f80,6, 0x1371fa0,6, 0x1371fc0,6, 0x1371fe0,1, 0x1372000,19, 0x1372080,2, 0x13720b0,2, 0x13720c0,2, 0x1380000,11, 0x1380040,16, 0x1380084,5, 0x1380200,7, 0x1380220,6, 0x1380240,7, 0x1380260,6, 0x1380280,6, 0x13802a0,2, 0x13802ac,2, 0x13802c0,7, 0x13802e0,7, 0x1380300,2, 0x138030c,2, 0x1380320,6, 0x1380400,2, 0x1381000,19, 0x1382104,23, 0x1382180,7, 0x13821a0,6, 0x13821c0,7, 0x13821e0,6, 0x1382200,4, 0x1382220,4, 0x1382240,11, 0x1382270,32, 0x1382300,24, 0x1382380,20, 0x1382400,61, 0x1382500,25, 0x1382568,4, 0x1382580,2, 0x13825a0,1, 0x13825c0,11, 0x1382600,9, 0x1382640,3, 0x1382650,3, 0x1382664,3, 0x1382680,22, 0x1382800,11, 0x1383000,536, 0x1384104,23, 0x1384180,7, 0x13841a0,6, 0x13841c0,7, 0x13841e0,6, 0x1384200,4, 0x1384220,4, 0x1384240,11, 0x1384270,32, 0x1384300,24, 0x1384380,20, 0x1384400,61, 0x1384500,25, 0x1384568,4, 0x1384580,2, 0x13845a0,1, 0x13845c0,11, 0x1384600,9, 0x1384640,3, 0x1384650,3, 0x1384664,3, 0x1384680,22, 0x1384800,11, 0x1385000,536, 0x138a000,7, 0x138a048,8, 0x138a080,8, 0x138a100,7, 0x138a148,8, 0x138a180,8, 0x1390000,11, 0x1390040,16, 0x1390084,5, 0x1390200,7, 0x1390220,6, 0x1390240,7, 0x1390260,6, 0x1390280,6, 0x13902a0,2, 0x13902ac,2, 0x13902c0,7, 0x13902e0,7, 0x1390300,2, 0x139030c,2, 0x1390320,6, 0x1390400,2, 0x1391000,19, 0x1392104,23, 0x1392180,7, 0x13921a0,6, 0x13921c0,7, 0x13921e0,6, 0x1392200,4, 0x1392220,4, 0x1392240,11, 0x1392270,32, 0x1392300,24, 0x1392380,20, 0x1392400,61, 0x1392500,25, 0x1392568,4, 0x1392580,2, 0x13925a0,1, 0x13925c0,11, 0x1392600,9, 0x1392640,3, 0x1392650,3, 0x1392664,3, 0x1392680,22, 0x1392800,11, 0x1393000,536, 0x1394104,23, 0x1394180,7, 0x13941a0,6, 0x13941c0,7, 0x13941e0,6, 0x1394200,4, 0x1394220,4, 0x1394240,11, 0x1394270,32, 0x1394300,24, 0x1394380,20, 0x1394400,61, 0x1394500,25, 0x1394568,4, 0x1394580,2, 0x13945a0,1, 0x13945c0,11, 0x1394600,9, 0x1394640,3, 0x1394650,3, 0x1394664,3, 0x1394680,22, 0x1394800,11, 0x1395000,536, 0x139a000,7, 0x139a048,8, 0x139a080,8, 0x139a100,7, 0x139a148,8, 0x139a180,8, 0x13a0400,4, 0x13a0440,4, 0x13a05c0,1, 0x13a0600,8, 0x13a0800,18, 0x13a0880,13, 0x13a08f0,3, 0x13a0900,18, 0x13a0980,13, 0x13a09f0,3, 0x13a0e00,4, 0x13a0e20,4, 0x13a0e80,16, 0x13a0f00,1, 0x13a0f20,1, 0x13a1020,2, 0x13a1208,6, 0x13a1228,10, 0x13a1288,6, 0x13a12a8,10, 0x13a1600,32, 0x13a18c0,8, 0x13a1900,24, 0x13a19b0,4, 0x13a1aa0,2, 0x13a1ac0,4, 0x13a2200,19, 0x13a2280,19, 0x13a2400,14, 0x13a243c,9, 0x13a2464,14, 0x13a24a0,2, 0x13a24ac,2, 0x13a2500,14, 0x13a253c,9, 0x13a2564,14, 0x13a25a0,2, 0x13a25ac,2, 0x13a2800,19, 0x13a2880,19, 0x13a2a10,2, 0x13a2a1c,1, 0x13a2a50,2, 0x13a2a5c,1, 0x13a2c00,7, 0x13a2c20,1, 0x13a2c54,18, 0x13a2ca0,1, 0x13a2cd4,11, 0x13a2e00,1, 0x13a2e08,6, 0x13a3180,3, 0x13a4400,4, 0x13a4440,4, 0x13a45c0,1, 0x13a4600,8, 0x13a4800,18, 0x13a4880,13, 0x13a48f0,3, 0x13a4900,18, 0x13a4980,13, 0x13a49f0,3, 0x13a4e00,4, 0x13a4e20,4, 0x13a4e80,16, 0x13a4f00,1, 0x13a4f20,1, 0x13a5020,2, 0x13a5208,6, 0x13a5228,10, 0x13a5288,6, 0x13a52a8,10, 0x13a5600,32, 0x13a58c0,8, 0x13a5900,24, 0x13a59b0,4, 0x13a5aa0,2, 0x13a5ac0,4, 0x13a6200,19, 0x13a6280,19, 0x13a6400,14, 0x13a643c,9, 0x13a6464,14, 0x13a64a0,2, 0x13a64ac,2, 0x13a6500,14, 0x13a653c,9, 0x13a6564,14, 0x13a65a0,2, 0x13a65ac,2, 0x13a6800,19, 0x13a6880,19, 0x13a6a10,2, 0x13a6a1c,1, 0x13a6a50,2, 0x13a6a5c,1, 0x13a6c00,7, 0x13a6c20,1, 0x13a6c54,18, 0x13a6ca0,1, 0x13a6cd4,11, 0x13a6e00,1, 0x13a6e08,6, 0x13a7180,3, 0x13a9000,13, 0x13ae000,19, 0x13aea00,10, 0x13aea80,3, 0x13af000,1, 0x13af008,5, 0x13af038,1, 0x13af044,1, 0x13af050,2, 0x13af060,8, 0x13af140,19, 0x13af190,4, 0x13b0000,2, 0x13b000c,2, 0x13b0040,7, 0x13b0100,3, 0x13b0110,3, 0x13b0120,5, 0x13b0200,6, 0x13b0240,5, 0x13b0400,2, 0x13b040c,2, 0x13b0440,7, 0x13b0500,3, 0x13b0510,3, 0x13b0520,5, 0x13b0600,6, 0x13b0640,5, 0x13b0800,2, 0x13b080c,2, 0x13b0840,7, 0x13b0900,3, 0x13b0910,3, 0x13b0920,5, 0x13b0a00,6, 0x13b0a40,5, 0x13b0c00,2, 0x13b0c0c,2, 0x13b0c40,7, 0x13b0d00,3, 0x13b0d10,3, 0x13b0d20,5, 0x13b0e00,6, 0x13b0e40,5, 0x13b1000,2, 0x13b100c,2, 0x13b1040,7, 0x13b1100,3, 0x13b1110,3, 0x13b1120,5, 0x13b1200,6, 0x13b1240,5, 0x13b1400,2, 0x13b140c,2, 0x13b1440,7, 0x13b1500,3, 0x13b1510,3, 0x13b1520,5, 0x13b1600,6, 0x13b1640,5, 0x13b1800,2, 0x13b180c,2, 0x13b1840,7, 0x13b1900,3, 0x13b1910,3, 0x13b1920,5, 0x13b1a00,6, 0x13b1a40,5, 0x13b1c00,2, 0x13b1c0c,2, 0x13b1c40,7, 0x13b1d00,3, 0x13b1d10,3, 0x13b1d20,5, 0x13b1e00,6, 0x13b1e40,5, 0x13b2000,5, 0x13b2040,9, 0x13b2100,3, 0x13b2200,1, 0x13b2210,1, 0x13b2220,1, 0x13b2230,1, 0x13b2240,1, 0x13b2300,3, 0x13b2314,1, 0x13b2320,4, 0x13b2400,5, 0x13b2440,5, 0x13b3000,80, 0x13b3200,1, 0x13b8000,7, 0x13b8030,2, 0x13b8040,7, 0x13b8070,2, 0x13b8100,2, 0x13b8120,2, 0x13b8140,2, 0x13b8160,2, 0x13b8180,9, 0x13b8200,7, 0x13b8230,2, 0x13b8240,7, 0x13b8270,2, 0x13b8300,2, 0x13b8320,2, 0x13b8340,2, 0x13b8360,2, 0x13b8380,9, 0x13b8400,11, 0x13b8500,11, 0x13b9000,3, 0x13b9010,2, 0x13b901c,5, 0x13b9040,8, 0x13b9080,3, 0x13b9090,2, 0x13b909c,5, 0x13b90c0,8, 0x13b9100,3, 0x13b9110,2, 0x13b911c,5, 0x13b9140,8, 0x13b9180,3, 0x13b9190,2, 0x13b919c,5, 0x13b91c0,8, 0x13b9200,7, 0x13b9220,12, 0x13b9280,7, 0x13b92a0,12, 0x13b9300,3, 0x13b9310,1, 0x13b9400,3, 0x13b9410,2, 0x13b941c,5, 0x13b9440,8, 0x13b9480,3, 0x13b9490,2, 0x13b949c,5, 0x13b94c0,8, 0x13b9500,3, 0x13b9510,2, 0x13b951c,5, 0x13b9540,8, 0x13b9580,3, 0x13b9590,2, 0x13b959c,5, 0x13b95c0,8, 0x13b9600,7, 0x13b9620,12, 0x13b9680,7, 0x13b96a0,12, 0x13b9700,3, 0x13b9710,1, 0x13b9804,1, 0x13b9824,21, 0x13b9880,16, 0x13b9900,5, 0x13b9920,11, 0x13b9950,9, 0x13b9980,22, 0x13b9a00,22, 0x13b9a80,22, 0x13b9b00,22, 0x13b9b80,22, 0x13b9c00,22, 0x13b9c80,22, 0x13b9d00,22, 0x13b9d80,3, 0x13c0000,5, 0x13c0018,5, 0x13c0030,3, 0x13c0044,3, 0x13c0100,58, 0x13c01f0,3, 0x13c0280,3, 0x13c0400,5, 0x13c0418,5, 0x13c0430,3, 0x13c0444,3, 0x13c0500,58, 0x13c05f0,3, 0x13c0680,3, 0x13c1018,2, 0x13c1100,2, 0x13c1110,10, 0x13c1140,2, 0x13c1150,10, 0x13c1208,1, 0x13c1220,12, 0x13c1280,1, 0x13c1288,2, 0x13c1400,4, 0x13c2000,5, 0x13c2018,5, 0x13c2030,3, 0x13c2044,3, 0x13c2100,58, 0x13c21f0,3, 0x13c2280,3, 0x13c2400,5, 0x13c2418,5, 0x13c2430,3, 0x13c2444,3, 0x13c2500,58, 0x13c25f0,3, 0x13c2680,3, 0x13c3018,2, 0x13c3100,2, 0x13c3110,10, 0x13c3140,2, 0x13c3150,10, 0x13c3208,1, 0x13c3220,12, 0x13c3280,1, 0x13c3288,2, 0x13c3400,4, 0x13c4000,2, 0x13c400c,1, 0x13c4030,3, 0x13c4040,2, 0x13c404c,1, 0x13c4070,3, 0x13c4100,2, 0x13c410c,1, 0x13c4130,3, 0x13c4140,2, 0x13c414c,1, 0x13c4170,3, 0x13c4200,15, 0x13c4280,15, 0x13c4300,15, 0x13c4380,15, 0x13c4400,15, 0x13c4480,15, 0x13c4500,15, 0x13c4580,15, 0x13c4604,10, 0x13c4700,2, 0x13c470c,7, 0x13c4740,1, 0x13c4770,1, 0x13c47c0,2, 0x13c47d0,4, 0x13c5000,3, 0x13c5010,1, 0x13c501c,3, 0x13c5104,1, 0x13c5110,4, 0x13c5124,1, 0x13c5130,4, 0x13c5144,1, 0x13c5150,4, 0x13c5164,1, 0x13c5170,5, 0x13c5190,4, 0x13c5a00,4, 0x13c5c00,129, 0x13c6000,37, 0x13c6098,1, 0x13c6100,37, 0x13c6198,1, 0x13c6200,37, 0x13c6298,1, 0x13c6300,37, 0x13c6398,1, 0x13c6400,37, 0x13c6498,1, 0x13c6500,37, 0x13c6598,1, 0x13c6600,37, 0x13c6698,1, 0x13c6700,37, 0x13c6798,1, 0x13cc000,91, 0x13cc400,4, 0x13cc440,15, 0x13cc480,4, 0x13cc4c0,15, 0x13cc500,4, 0x13cc540,15, 0x13cc580,4, 0x13cc5c0,15, 0x13cc600,4, 0x13cc640,10, 0x13cc680,4, 0x13cc6c0,10, 0x13cc800,4, 0x13cc840,33, 0x13cca00,13, 0x13cca80,1, 0x13cca88,8, 0x13ccac0,6, 0x13ccae0,1, 0x13ccae8,2, 0x13ccb04,14, 0x13ccc00,4, 0x13cccc8,1, 0x13ccfcc,3, 0x13ccfe0,99, 0x13cd400,4, 0x13cd440,15, 0x13cd480,4, 0x13cd4c0,15, 0x13cd500,4, 0x13cd540,15, 0x13cd580,4, 0x13cd5c0,15, 0x13cd600,4, 0x13cd640,10, 0x13cd680,4, 0x13cd6c0,10, 0x13cd800,4, 0x13cd840,33, 0x13cda00,13, 0x13cda80,1, 0x13cda88,8, 0x13cdac0,6, 0x13cdae0,1, 0x13cdae8,2, 0x13cdb04,14, 0x13cdc00,4, 0x13cdcc8,1, 0x13cdfcc,3, 0x13cdfe0,27, 0x13cf000,19, 0x13cfa00,10, 0x13cfa80,3, 0x13cfb00,6, 0x13d0000,51, 0x13d0a00,10, 0x13d0a80,3, 0x13d1000,2, 0x13d100c,4, 0x13d1028,3, 0x13d1038,4, 0x13d1050,2, 0x13d1080,4, 0x13d1098,7, 0x13d1120,4, 0x13d1200,4, 0x13d1214,7, 0x13d1234,3, 0x13d1280,8, 0x13d12c0,5, 0x13d1300,2, 0x13d130c,3, 0x13d1400,24, 0x13d1464,2, 0x13d1470,3, 0x13d1500,25, 0x13d15c0,8, 0x13d15e8,5, 0x13d1600,5, 0x13d1618,1, 0x13d1620,1, 0x13d1628,1, 0x13d1630,2, 0x13d1640,2, 0x13d1650,2, 0x13d1690,4, 0x13d1740,2, 0x13d1760,6, 0x13d1780,6, 0x13d17a0,6, 0x13d17c0,6, 0x13d17e0,1, 0x13d1800,2, 0x13d180c,4, 0x13d1828,3, 0x13d1838,4, 0x13d1850,2, 0x13d1880,4, 0x13d1898,7, 0x13d1920,4, 0x13d1a00,4, 0x13d1a14,7, 0x13d1a34,3, 0x13d1a80,8, 0x13d1ac0,5, 0x13d1b00,2, 0x13d1b0c,3, 0x13d1c00,24, 0x13d1c64,2, 0x13d1c70,3, 0x13d1d00,25, 0x13d1dc0,8, 0x13d1de8,5, 0x13d1e00,5, 0x13d1e18,1, 0x13d1e20,1, 0x13d1e28,1, 0x13d1e30,2, 0x13d1e40,2, 0x13d1e50,2, 0x13d1e90,4, 0x13d1f40,2, 0x13d1f60,6, 0x13d1f80,6, 0x13d1fa0,6, 0x13d1fc0,6, 0x13d1fe0,1, 0x13d2000,19, 0x13d2080,2, 0x13d20b0,2, 0x13d20c0,2, 0x13e0000,11, 0x13e0040,16, 0x13e0084,5, 0x13e0200,7, 0x13e0220,6, 0x13e0240,7, 0x13e0260,6, 0x13e0280,6, 0x13e02a0,2, 0x13e02ac,2, 0x13e02c0,7, 0x13e02e0,7, 0x13e0300,2, 0x13e030c,2, 0x13e0320,6, 0x13e0400,2, 0x13e1000,19, 0x13e2104,23, 0x13e2180,7, 0x13e21a0,6, 0x13e21c0,7, 0x13e21e0,6, 0x13e2200,4, 0x13e2220,4, 0x13e2240,11, 0x13e2270,32, 0x13e2300,24, 0x13e2380,20, 0x13e2400,61, 0x13e2500,25, 0x13e2568,4, 0x13e2580,2, 0x13e25a0,1, 0x13e25c0,11, 0x13e2600,9, 0x13e2640,3, 0x13e2650,3, 0x13e2664,3, 0x13e2680,22, 0x13e2800,11, 0x13e3000,536, 0x13e4104,23, 0x13e4180,7, 0x13e41a0,6, 0x13e41c0,7, 0x13e41e0,6, 0x13e4200,4, 0x13e4220,4, 0x13e4240,11, 0x13e4270,32, 0x13e4300,24, 0x13e4380,20, 0x13e4400,61, 0x13e4500,25, 0x13e4568,4, 0x13e4580,2, 0x13e45a0,1, 0x13e45c0,11, 0x13e4600,9, 0x13e4640,3, 0x13e4650,3, 0x13e4664,3, 0x13e4680,22, 0x13e4800,11, 0x13e5000,536, 0x13ea000,7, 0x13ea048,8, 0x13ea080,8, 0x13ea100,7, 0x13ea148,8, 0x13ea180,8, 0x13f0000,11, 0x13f0040,16, 0x13f0084,5, 0x13f0200,7, 0x13f0220,6, 0x13f0240,7, 0x13f0260,6, 0x13f0280,6, 0x13f02a0,2, 0x13f02ac,2, 0x13f02c0,7, 0x13f02e0,7, 0x13f0300,2, 0x13f030c,2, 0x13f0320,6, 0x13f0400,2, 0x13f1000,19, 0x13f2104,23, 0x13f2180,7, 0x13f21a0,6, 0x13f21c0,7, 0x13f21e0,6, 0x13f2200,4, 0x13f2220,4, 0x13f2240,11, 0x13f2270,32, 0x13f2300,24, 0x13f2380,20, 0x13f2400,61, 0x13f2500,25, 0x13f2568,4, 0x13f2580,2, 0x13f25a0,1, 0x13f25c0,11, 0x13f2600,9, 0x13f2640,3, 0x13f2650,3, 0x13f2664,3, 0x13f2680,22, 0x13f2800,11, 0x13f3000,536, 0x13f4104,23, 0x13f4180,7, 0x13f41a0,6, 0x13f41c0,7, 0x13f41e0,6, 0x13f4200,4, 0x13f4220,4, 0x13f4240,11, 0x13f4270,32, 0x13f4300,24, 0x13f4380,20, 0x13f4400,61, 0x13f4500,25, 0x13f4568,4, 0x13f4580,2, 0x13f45a0,1, 0x13f45c0,11, 0x13f4600,9, 0x13f4640,3, 0x13f4650,3, 0x13f4664,3, 0x13f4680,22, 0x13f4800,11, 0x13f5000,536, 0x13fa000,7, 0x13fa048,8, 0x13fa080,8, 0x13fa100,7, 0x13fa148,8, 0x13fa180,8, 0x1400400,4, 0x1400440,4, 0x14005c0,1, 0x1400600,8, 0x1400800,18, 0x1400880,13, 0x14008f0,3, 0x1400900,18, 0x1400980,13, 0x14009f0,3, 0x1400e00,4, 0x1400e20,4, 0x1400e80,16, 0x1400f00,1, 0x1400f20,1, 0x1401020,2, 0x1401208,6, 0x1401228,10, 0x1401288,6, 0x14012a8,10, 0x1401600,32, 0x14018c0,8, 0x1401900,24, 0x14019b0,4, 0x1401aa0,2, 0x1401ac0,4, 0x1402200,19, 0x1402280,19, 0x1402400,14, 0x140243c,9, 0x1402464,14, 0x14024a0,2, 0x14024ac,2, 0x1402500,14, 0x140253c,9, 0x1402564,14, 0x14025a0,2, 0x14025ac,2, 0x1402800,19, 0x1402880,19, 0x1402a10,2, 0x1402a1c,1, 0x1402a50,2, 0x1402a5c,1, 0x1402c00,7, 0x1402c20,1, 0x1402c54,18, 0x1402ca0,1, 0x1402cd4,11, 0x1402e00,1, 0x1402e08,6, 0x1403180,3, 0x1404400,4, 0x1404440,4, 0x14045c0,1, 0x1404600,8, 0x1404800,18, 0x1404880,13, 0x14048f0,3, 0x1404900,18, 0x1404980,13, 0x14049f0,3, 0x1404e00,4, 0x1404e20,4, 0x1404e80,16, 0x1404f00,1, 0x1404f20,1, 0x1405020,2, 0x1405208,6, 0x1405228,10, 0x1405288,6, 0x14052a8,10, 0x1405600,32, 0x14058c0,8, 0x1405900,24, 0x14059b0,4, 0x1405aa0,2, 0x1405ac0,4, 0x1406200,19, 0x1406280,19, 0x1406400,14, 0x140643c,9, 0x1406464,14, 0x14064a0,2, 0x14064ac,2, 0x1406500,14, 0x140653c,9, 0x1406564,14, 0x14065a0,2, 0x14065ac,2, 0x1406800,19, 0x1406880,19, 0x1406a10,2, 0x1406a1c,1, 0x1406a50,2, 0x1406a5c,1, 0x1406c00,7, 0x1406c20,1, 0x1406c54,18, 0x1406ca0,1, 0x1406cd4,11, 0x1406e00,1, 0x1406e08,6, 0x1407180,3, 0x1409000,13, 0x140e000,19, 0x140ea00,10, 0x140ea80,3, 0x140f000,1, 0x140f008,5, 0x140f038,1, 0x140f044,1, 0x140f050,2, 0x140f060,8, 0x140f140,19, 0x140f190,4, 0x1410000,2, 0x141000c,2, 0x1410040,7, 0x1410100,3, 0x1410110,3, 0x1410120,5, 0x1410200,6, 0x1410240,5, 0x1410400,2, 0x141040c,2, 0x1410440,7, 0x1410500,3, 0x1410510,3, 0x1410520,5, 0x1410600,6, 0x1410640,5, 0x1410800,2, 0x141080c,2, 0x1410840,7, 0x1410900,3, 0x1410910,3, 0x1410920,5, 0x1410a00,6, 0x1410a40,5, 0x1410c00,2, 0x1410c0c,2, 0x1410c40,7, 0x1410d00,3, 0x1410d10,3, 0x1410d20,5, 0x1410e00,6, 0x1410e40,5, 0x1411000,2, 0x141100c,2, 0x1411040,7, 0x1411100,3, 0x1411110,3, 0x1411120,5, 0x1411200,6, 0x1411240,5, 0x1411400,2, 0x141140c,2, 0x1411440,7, 0x1411500,3, 0x1411510,3, 0x1411520,5, 0x1411600,6, 0x1411640,5, 0x1411800,2, 0x141180c,2, 0x1411840,7, 0x1411900,3, 0x1411910,3, 0x1411920,5, 0x1411a00,6, 0x1411a40,5, 0x1411c00,2, 0x1411c0c,2, 0x1411c40,7, 0x1411d00,3, 0x1411d10,3, 0x1411d20,5, 0x1411e00,6, 0x1411e40,5, 0x1412000,5, 0x1412040,9, 0x1412100,3, 0x1412200,1, 0x1412210,1, 0x1412220,1, 0x1412230,1, 0x1412240,1, 0x1412300,3, 0x1412314,1, 0x1412320,4, 0x1412400,5, 0x1412440,5, 0x1413000,80, 0x1413200,1, 0x1418000,7, 0x1418030,2, 0x1418040,7, 0x1418070,2, 0x1418100,2, 0x1418120,2, 0x1418140,2, 0x1418160,2, 0x1418180,9, 0x1418200,7, 0x1418230,2, 0x1418240,7, 0x1418270,2, 0x1418300,2, 0x1418320,2, 0x1418340,2, 0x1418360,2, 0x1418380,9, 0x1418400,11, 0x1418500,11, 0x1419000,3, 0x1419010,2, 0x141901c,5, 0x1419040,8, 0x1419080,3, 0x1419090,2, 0x141909c,5, 0x14190c0,8, 0x1419100,3, 0x1419110,2, 0x141911c,5, 0x1419140,8, 0x1419180,3, 0x1419190,2, 0x141919c,5, 0x14191c0,8, 0x1419200,7, 0x1419220,12, 0x1419280,7, 0x14192a0,12, 0x1419300,3, 0x1419310,1, 0x1419400,3, 0x1419410,2, 0x141941c,5, 0x1419440,8, 0x1419480,3, 0x1419490,2, 0x141949c,5, 0x14194c0,8, 0x1419500,3, 0x1419510,2, 0x141951c,5, 0x1419540,8, 0x1419580,3, 0x1419590,2, 0x141959c,5, 0x14195c0,8, 0x1419600,7, 0x1419620,12, 0x1419680,7, 0x14196a0,12, 0x1419700,3, 0x1419710,1, 0x1419804,1, 0x1419824,21, 0x1419880,16, 0x1419900,5, 0x1419920,11, 0x1419950,9, 0x1419980,22, 0x1419a00,22, 0x1419a80,22, 0x1419b00,22, 0x1419b80,22, 0x1419c00,22, 0x1419c80,22, 0x1419d00,22, 0x1419d80,3, 0x1420000,5, 0x1420018,5, 0x1420030,3, 0x1420044,3, 0x1420100,58, 0x14201f0,3, 0x1420280,3, 0x1420400,5, 0x1420418,5, 0x1420430,3, 0x1420444,3, 0x1420500,58, 0x14205f0,3, 0x1420680,3, 0x1421018,2, 0x1421100,2, 0x1421110,10, 0x1421140,2, 0x1421150,10, 0x1421208,1, 0x1421220,12, 0x1421280,1, 0x1421288,2, 0x1421400,4, 0x1422000,5, 0x1422018,5, 0x1422030,3, 0x1422044,3, 0x1422100,58, 0x14221f0,3, 0x1422280,3, 0x1422400,5, 0x1422418,5, 0x1422430,3, 0x1422444,3, 0x1422500,58, 0x14225f0,3, 0x1422680,3, 0x1423018,2, 0x1423100,2, 0x1423110,10, 0x1423140,2, 0x1423150,10, 0x1423208,1, 0x1423220,12, 0x1423280,1, 0x1423288,2, 0x1423400,4, 0x1424000,2, 0x142400c,1, 0x1424030,3, 0x1424040,2, 0x142404c,1, 0x1424070,3, 0x1424100,2, 0x142410c,1, 0x1424130,3, 0x1424140,2, 0x142414c,1, 0x1424170,3, 0x1424200,15, 0x1424280,15, 0x1424300,15, 0x1424380,15, 0x1424400,15, 0x1424480,15, 0x1424500,15, 0x1424580,15, 0x1424604,10, 0x1424700,2, 0x142470c,7, 0x1424740,1, 0x1424770,1, 0x14247c0,2, 0x14247d0,4, 0x1425000,3, 0x1425010,1, 0x142501c,3, 0x1425104,1, 0x1425110,4, 0x1425124,1, 0x1425130,4, 0x1425144,1, 0x1425150,4, 0x1425164,1, 0x1425170,5, 0x1425190,4, 0x1425a00,4, 0x1425c00,129, 0x1426000,37, 0x1426098,1, 0x1426100,37, 0x1426198,1, 0x1426200,37, 0x1426298,1, 0x1426300,37, 0x1426398,1, 0x1426400,37, 0x1426498,1, 0x1426500,37, 0x1426598,1, 0x1426600,37, 0x1426698,1, 0x1426700,37, 0x1426798,1, 0x142c000,91, 0x142c400,4, 0x142c440,15, 0x142c480,4, 0x142c4c0,15, 0x142c500,4, 0x142c540,15, 0x142c580,4, 0x142c5c0,15, 0x142c600,4, 0x142c640,10, 0x142c680,4, 0x142c6c0,10, 0x142c800,4, 0x142c840,33, 0x142ca00,13, 0x142ca80,1, 0x142ca88,8, 0x142cac0,6, 0x142cae0,1, 0x142cae8,2, 0x142cb04,14, 0x142cc00,4, 0x142ccc8,1, 0x142cfcc,3, 0x142cfe0,99, 0x142d400,4, 0x142d440,15, 0x142d480,4, 0x142d4c0,15, 0x142d500,4, 0x142d540,15, 0x142d580,4, 0x142d5c0,15, 0x142d600,4, 0x142d640,10, 0x142d680,4, 0x142d6c0,10, 0x142d800,4, 0x142d840,33, 0x142da00,13, 0x142da80,1, 0x142da88,8, 0x142dac0,6, 0x142dae0,1, 0x142dae8,2, 0x142db04,14, 0x142dc00,4, 0x142dcc8,1, 0x142dfcc,3, 0x142dfe0,27, 0x142f000,19, 0x142fa00,10, 0x142fa80,3, 0x142fb00,6, 0x1430000,51, 0x1430a00,10, 0x1430a80,3, 0x1431000,2, 0x143100c,4, 0x1431028,3, 0x1431038,4, 0x1431050,2, 0x1431080,4, 0x1431098,7, 0x1431120,4, 0x1431200,4, 0x1431214,7, 0x1431234,3, 0x1431280,8, 0x14312c0,5, 0x1431300,2, 0x143130c,3, 0x1431400,24, 0x1431464,2, 0x1431470,3, 0x1431500,25, 0x14315c0,8, 0x14315e8,5, 0x1431600,5, 0x1431618,1, 0x1431620,1, 0x1431628,1, 0x1431630,2, 0x1431640,2, 0x1431650,2, 0x1431690,4, 0x1431740,2, 0x1431760,6, 0x1431780,6, 0x14317a0,6, 0x14317c0,6, 0x14317e0,1, 0x1431800,2, 0x143180c,4, 0x1431828,3, 0x1431838,4, 0x1431850,2, 0x1431880,4, 0x1431898,7, 0x1431920,4, 0x1431a00,4, 0x1431a14,7, 0x1431a34,3, 0x1431a80,8, 0x1431ac0,5, 0x1431b00,2, 0x1431b0c,3, 0x1431c00,24, 0x1431c64,2, 0x1431c70,3, 0x1431d00,25, 0x1431dc0,8, 0x1431de8,5, 0x1431e00,5, 0x1431e18,1, 0x1431e20,1, 0x1431e28,1, 0x1431e30,2, 0x1431e40,2, 0x1431e50,2, 0x1431e90,4, 0x1431f40,2, 0x1431f60,6, 0x1431f80,6, 0x1431fa0,6, 0x1431fc0,6, 0x1431fe0,1, 0x1432000,19, 0x1432080,2, 0x14320b0,2, 0x14320c0,2, 0x1440000,11, 0x1440040,16, 0x1440084,5, 0x1440200,7, 0x1440220,6, 0x1440240,7, 0x1440260,6, 0x1440280,6, 0x14402a0,2, 0x14402ac,2, 0x14402c0,7, 0x14402e0,7, 0x1440300,2, 0x144030c,2, 0x1440320,6, 0x1440400,2, 0x1441000,19, 0x1442104,23, 0x1442180,7, 0x14421a0,6, 0x14421c0,7, 0x14421e0,6, 0x1442200,4, 0x1442220,4, 0x1442240,11, 0x1442270,32, 0x1442300,24, 0x1442380,20, 0x1442400,61, 0x1442500,25, 0x1442568,4, 0x1442580,2, 0x14425a0,1, 0x14425c0,11, 0x1442600,9, 0x1442640,3, 0x1442650,3, 0x1442664,3, 0x1442680,22, 0x1442800,11, 0x1443000,536, 0x1444104,23, 0x1444180,7, 0x14441a0,6, 0x14441c0,7, 0x14441e0,6, 0x1444200,4, 0x1444220,4, 0x1444240,11, 0x1444270,32, 0x1444300,24, 0x1444380,20, 0x1444400,61, 0x1444500,25, 0x1444568,4, 0x1444580,2, 0x14445a0,1, 0x14445c0,11, 0x1444600,9, 0x1444640,3, 0x1444650,3, 0x1444664,3, 0x1444680,22, 0x1444800,11, 0x1445000,536, 0x144a000,7, 0x144a048,8, 0x144a080,8, 0x144a100,7, 0x144a148,8, 0x144a180,8, 0x1450000,11, 0x1450040,16, 0x1450084,5, 0x1450200,7, 0x1450220,6, 0x1450240,7, 0x1450260,6, 0x1450280,6, 0x14502a0,2, 0x14502ac,2, 0x14502c0,7, 0x14502e0,7, 0x1450300,2, 0x145030c,2, 0x1450320,6, 0x1450400,2, 0x1451000,19, 0x1452104,23, 0x1452180,7, 0x14521a0,6, 0x14521c0,7, 0x14521e0,6, 0x1452200,4, 0x1452220,4, 0x1452240,11, 0x1452270,32, 0x1452300,24, 0x1452380,20, 0x1452400,61, 0x1452500,25, 0x1452568,4, 0x1452580,2, 0x14525a0,1, 0x14525c0,11, 0x1452600,9, 0x1452640,3, 0x1452650,3, 0x1452664,3, 0x1452680,22, 0x1452800,11, 0x1453000,536, 0x1454104,23, 0x1454180,7, 0x14541a0,6, 0x14541c0,7, 0x14541e0,6, 0x1454200,4, 0x1454220,4, 0x1454240,11, 0x1454270,32, 0x1454300,24, 0x1454380,20, 0x1454400,61, 0x1454500,25, 0x1454568,4, 0x1454580,2, 0x14545a0,1, 0x14545c0,11, 0x1454600,9, 0x1454640,3, 0x1454650,3, 0x1454664,3, 0x1454680,22, 0x1454800,11, 0x1455000,536, 0x145a000,7, 0x145a048,8, 0x145a080,8, 0x145a100,7, 0x145a148,8, 0x145a180,8, 0x1460400,4, 0x1460440,4, 0x14605c0,1, 0x1460600,8, 0x1460800,18, 0x1460880,13, 0x14608f0,3, 0x1460900,18, 0x1460980,13, 0x14609f0,3, 0x1460e00,4, 0x1460e20,4, 0x1460e80,16, 0x1460f00,1, 0x1460f20,1, 0x1461020,2, 0x1461208,6, 0x1461228,10, 0x1461288,6, 0x14612a8,10, 0x1461600,32, 0x14618c0,8, 0x1461900,24, 0x14619b0,4, 0x1461aa0,2, 0x1461ac0,4, 0x1462200,19, 0x1462280,19, 0x1462400,14, 0x146243c,9, 0x1462464,14, 0x14624a0,2, 0x14624ac,2, 0x1462500,14, 0x146253c,9, 0x1462564,14, 0x14625a0,2, 0x14625ac,2, 0x1462800,19, 0x1462880,19, 0x1462a10,2, 0x1462a1c,1, 0x1462a50,2, 0x1462a5c,1, 0x1462c00,7, 0x1462c20,1, 0x1462c54,18, 0x1462ca0,1, 0x1462cd4,11, 0x1462e00,1, 0x1462e08,6, 0x1463180,3, 0x1464400,4, 0x1464440,4, 0x14645c0,1, 0x1464600,8, 0x1464800,18, 0x1464880,13, 0x14648f0,3, 0x1464900,18, 0x1464980,13, 0x14649f0,3, 0x1464e00,4, 0x1464e20,4, 0x1464e80,16, 0x1464f00,1, 0x1464f20,1, 0x1465020,2, 0x1465208,6, 0x1465228,10, 0x1465288,6, 0x14652a8,10, 0x1465600,32, 0x14658c0,8, 0x1465900,24, 0x14659b0,4, 0x1465aa0,2, 0x1465ac0,4, 0x1466200,19, 0x1466280,19, 0x1466400,14, 0x146643c,9, 0x1466464,14, 0x14664a0,2, 0x14664ac,2, 0x1466500,14, 0x146653c,9, 0x1466564,14, 0x14665a0,2, 0x14665ac,2, 0x1466800,19, 0x1466880,19, 0x1466a10,2, 0x1466a1c,1, 0x1466a50,2, 0x1466a5c,1, 0x1466c00,7, 0x1466c20,1, 0x1466c54,18, 0x1466ca0,1, 0x1466cd4,11, 0x1466e00,1, 0x1466e08,6, 0x1467180,3, 0x1469000,13, 0x146e000,19, 0x146ea00,10, 0x146ea80,3, 0x146f000,1, 0x146f008,5, 0x146f038,1, 0x146f044,1, 0x146f050,2, 0x146f060,8, 0x146f140,19, 0x146f190,4, 0x1470000,2, 0x147000c,2, 0x1470040,7, 0x1470100,3, 0x1470110,3, 0x1470120,5, 0x1470200,6, 0x1470240,5, 0x1470400,2, 0x147040c,2, 0x1470440,7, 0x1470500,3, 0x1470510,3, 0x1470520,5, 0x1470600,6, 0x1470640,5, 0x1470800,2, 0x147080c,2, 0x1470840,7, 0x1470900,3, 0x1470910,3, 0x1470920,5, 0x1470a00,6, 0x1470a40,5, 0x1470c00,2, 0x1470c0c,2, 0x1470c40,7, 0x1470d00,3, 0x1470d10,3, 0x1470d20,5, 0x1470e00,6, 0x1470e40,5, 0x1471000,2, 0x147100c,2, 0x1471040,7, 0x1471100,3, 0x1471110,3, 0x1471120,5, 0x1471200,6, 0x1471240,5, 0x1471400,2, 0x147140c,2, 0x1471440,7, 0x1471500,3, 0x1471510,3, 0x1471520,5, 0x1471600,6, 0x1471640,5, 0x1471800,2, 0x147180c,2, 0x1471840,7, 0x1471900,3, 0x1471910,3, 0x1471920,5, 0x1471a00,6, 0x1471a40,5, 0x1471c00,2, 0x1471c0c,2, 0x1471c40,7, 0x1471d00,3, 0x1471d10,3, 0x1471d20,5, 0x1471e00,6, 0x1471e40,5, 0x1472000,5, 0x1472040,9, 0x1472100,3, 0x1472200,1, 0x1472210,1, 0x1472220,1, 0x1472230,1, 0x1472240,1, 0x1472300,3, 0x1472314,1, 0x1472320,4, 0x1472400,5, 0x1472440,5, 0x1473000,80, 0x1473200,1, 0x1478000,7, 0x1478030,2, 0x1478040,7, 0x1478070,2, 0x1478100,2, 0x1478120,2, 0x1478140,2, 0x1478160,2, 0x1478180,9, 0x1478200,7, 0x1478230,2, 0x1478240,7, 0x1478270,2, 0x1478300,2, 0x1478320,2, 0x1478340,2, 0x1478360,2, 0x1478380,9, 0x1478400,11, 0x1478500,11, 0x1479000,3, 0x1479010,2, 0x147901c,5, 0x1479040,8, 0x1479080,3, 0x1479090,2, 0x147909c,5, 0x14790c0,8, 0x1479100,3, 0x1479110,2, 0x147911c,5, 0x1479140,8, 0x1479180,3, 0x1479190,2, 0x147919c,5, 0x14791c0,8, 0x1479200,7, 0x1479220,12, 0x1479280,7, 0x14792a0,12, 0x1479300,3, 0x1479310,1, 0x1479400,3, 0x1479410,2, 0x147941c,5, 0x1479440,8, 0x1479480,3, 0x1479490,2, 0x147949c,5, 0x14794c0,8, 0x1479500,3, 0x1479510,2, 0x147951c,5, 0x1479540,8, 0x1479580,3, 0x1479590,2, 0x147959c,5, 0x14795c0,8, 0x1479600,7, 0x1479620,12, 0x1479680,7, 0x14796a0,12, 0x1479700,3, 0x1479710,1, 0x1479804,1, 0x1479824,21, 0x1479880,16, 0x1479900,5, 0x1479920,11, 0x1479950,9, 0x1479980,22, 0x1479a00,22, 0x1479a80,22, 0x1479b00,22, 0x1479b80,22, 0x1479c00,22, 0x1479c80,22, 0x1479d00,22, 0x1479d80,3, 0x1480000,5, 0x1480018,5, 0x1480030,3, 0x1480044,3, 0x1480100,58, 0x14801f0,3, 0x1480280,3, 0x1480400,5, 0x1480418,5, 0x1480430,3, 0x1480444,3, 0x1480500,58, 0x14805f0,3, 0x1480680,3, 0x1481018,2, 0x1481100,2, 0x1481110,10, 0x1481140,2, 0x1481150,10, 0x1481208,1, 0x1481220,12, 0x1481280,1, 0x1481288,2, 0x1481400,4, 0x1482000,5, 0x1482018,5, 0x1482030,3, 0x1482044,3, 0x1482100,58, 0x14821f0,3, 0x1482280,3, 0x1482400,5, 0x1482418,5, 0x1482430,3, 0x1482444,3, 0x1482500,58, 0x14825f0,3, 0x1482680,3, 0x1483018,2, 0x1483100,2, 0x1483110,10, 0x1483140,2, 0x1483150,10, 0x1483208,1, 0x1483220,12, 0x1483280,1, 0x1483288,2, 0x1483400,4, 0x1484000,2, 0x148400c,1, 0x1484030,3, 0x1484040,2, 0x148404c,1, 0x1484070,3, 0x1484100,2, 0x148410c,1, 0x1484130,3, 0x1484140,2, 0x148414c,1, 0x1484170,3, 0x1484200,15, 0x1484280,15, 0x1484300,15, 0x1484380,15, 0x1484400,15, 0x1484480,15, 0x1484500,15, 0x1484580,15, 0x1484604,10, 0x1484700,2, 0x148470c,7, 0x1484740,1, 0x1484770,1, 0x14847c0,2, 0x14847d0,4, 0x1485000,3, 0x1485010,1, 0x148501c,3, 0x1485104,1, 0x1485110,4, 0x1485124,1, 0x1485130,4, 0x1485144,1, 0x1485150,4, 0x1485164,1, 0x1485170,5, 0x1485190,4, 0x1485a00,4, 0x1485c00,129, 0x1486000,37, 0x1486098,1, 0x1486100,37, 0x1486198,1, 0x1486200,37, 0x1486298,1, 0x1486300,37, 0x1486398,1, 0x1486400,37, 0x1486498,1, 0x1486500,37, 0x1486598,1, 0x1486600,37, 0x1486698,1, 0x1486700,37, 0x1486798,1, 0x148c000,91, 0x148c400,4, 0x148c440,15, 0x148c480,4, 0x148c4c0,15, 0x148c500,4, 0x148c540,15, 0x148c580,4, 0x148c5c0,15, 0x148c600,4, 0x148c640,10, 0x148c680,4, 0x148c6c0,10, 0x148c800,4, 0x148c840,33, 0x148ca00,13, 0x148ca80,1, 0x148ca88,8, 0x148cac0,6, 0x148cae0,1, 0x148cae8,2, 0x148cb04,14, 0x148cc00,4, 0x148ccc8,1, 0x148cfcc,3, 0x148cfe0,99, 0x148d400,4, 0x148d440,15, 0x148d480,4, 0x148d4c0,15, 0x148d500,4, 0x148d540,15, 0x148d580,4, 0x148d5c0,15, 0x148d600,4, 0x148d640,10, 0x148d680,4, 0x148d6c0,10, 0x148d800,4, 0x148d840,33, 0x148da00,13, 0x148da80,1, 0x148da88,8, 0x148dac0,6, 0x148dae0,1, 0x148dae8,2, 0x148db04,14, 0x148dc00,4, 0x148dcc8,1, 0x148dfcc,3, 0x148dfe0,27, 0x148f000,19, 0x148fa00,10, 0x148fa80,3, 0x148fb00,6, 0x1490000,51, 0x1490a00,10, 0x1490a80,3, 0x1491000,2, 0x149100c,4, 0x1491028,3, 0x1491038,4, 0x1491050,2, 0x1491080,4, 0x1491098,7, 0x1491120,4, 0x1491200,4, 0x1491214,7, 0x1491234,3, 0x1491280,8, 0x14912c0,5, 0x1491300,2, 0x149130c,3, 0x1491400,24, 0x1491464,2, 0x1491470,3, 0x1491500,25, 0x14915c0,8, 0x14915e8,5, 0x1491600,5, 0x1491618,1, 0x1491620,1, 0x1491628,1, 0x1491630,2, 0x1491640,2, 0x1491650,2, 0x1491690,4, 0x1491740,2, 0x1491760,6, 0x1491780,6, 0x14917a0,6, 0x14917c0,6, 0x14917e0,1, 0x1491800,2, 0x149180c,4, 0x1491828,3, 0x1491838,4, 0x1491850,2, 0x1491880,4, 0x1491898,7, 0x1491920,4, 0x1491a00,4, 0x1491a14,7, 0x1491a34,3, 0x1491a80,8, 0x1491ac0,5, 0x1491b00,2, 0x1491b0c,3, 0x1491c00,24, 0x1491c64,2, 0x1491c70,3, 0x1491d00,25, 0x1491dc0,8, 0x1491de8,5, 0x1491e00,5, 0x1491e18,1, 0x1491e20,1, 0x1491e28,1, 0x1491e30,2, 0x1491e40,2, 0x1491e50,2, 0x1491e90,4, 0x1491f40,2, 0x1491f60,6, 0x1491f80,6, 0x1491fa0,6, 0x1491fc0,6, 0x1491fe0,1, 0x1492000,19, 0x1492080,2, 0x14920b0,2, 0x14920c0,2, 0x14a0000,11, 0x14a0040,16, 0x14a0084,5, 0x14a0200,7, 0x14a0220,6, 0x14a0240,7, 0x14a0260,6, 0x14a0280,6, 0x14a02a0,2, 0x14a02ac,2, 0x14a02c0,7, 0x14a02e0,7, 0x14a0300,2, 0x14a030c,2, 0x14a0320,6, 0x14a0400,2, 0x14a1000,19, 0x14a2104,23, 0x14a2180,7, 0x14a21a0,6, 0x14a21c0,7, 0x14a21e0,6, 0x14a2200,4, 0x14a2220,4, 0x14a2240,11, 0x14a2270,32, 0x14a2300,24, 0x14a2380,20, 0x14a2400,61, 0x14a2500,25, 0x14a2568,4, 0x14a2580,2, 0x14a25a0,1, 0x14a25c0,11, 0x14a2600,9, 0x14a2640,3, 0x14a2650,3, 0x14a2664,3, 0x14a2680,22, 0x14a2800,11, 0x14a3000,536, 0x14a4104,23, 0x14a4180,7, 0x14a41a0,6, 0x14a41c0,7, 0x14a41e0,6, 0x14a4200,4, 0x14a4220,4, 0x14a4240,11, 0x14a4270,32, 0x14a4300,24, 0x14a4380,20, 0x14a4400,61, 0x14a4500,25, 0x14a4568,4, 0x14a4580,2, 0x14a45a0,1, 0x14a45c0,11, 0x14a4600,9, 0x14a4640,3, 0x14a4650,3, 0x14a4664,3, 0x14a4680,22, 0x14a4800,11, 0x14a5000,536, 0x14aa000,7, 0x14aa048,8, 0x14aa080,8, 0x14aa100,7, 0x14aa148,8, 0x14aa180,8, 0x14b0000,11, 0x14b0040,16, 0x14b0084,5, 0x14b0200,7, 0x14b0220,6, 0x14b0240,7, 0x14b0260,6, 0x14b0280,6, 0x14b02a0,2, 0x14b02ac,2, 0x14b02c0,7, 0x14b02e0,7, 0x14b0300,2, 0x14b030c,2, 0x14b0320,6, 0x14b0400,2, 0x14b1000,19, 0x14b2104,23, 0x14b2180,7, 0x14b21a0,6, 0x14b21c0,7, 0x14b21e0,6, 0x14b2200,4, 0x14b2220,4, 0x14b2240,11, 0x14b2270,32, 0x14b2300,24, 0x14b2380,20, 0x14b2400,61, 0x14b2500,25, 0x14b2568,4, 0x14b2580,2, 0x14b25a0,1, 0x14b25c0,11, 0x14b2600,9, 0x14b2640,3, 0x14b2650,3, 0x14b2664,3, 0x14b2680,22, 0x14b2800,11, 0x14b3000,536, 0x14b4104,23, 0x14b4180,7, 0x14b41a0,6, 0x14b41c0,7, 0x14b41e0,6, 0x14b4200,4, 0x14b4220,4, 0x14b4240,11, 0x14b4270,32, 0x14b4300,24, 0x14b4380,20, 0x14b4400,61, 0x14b4500,25, 0x14b4568,4, 0x14b4580,2, 0x14b45a0,1, 0x14b45c0,11, 0x14b4600,9, 0x14b4640,3, 0x14b4650,3, 0x14b4664,3, 0x14b4680,22, 0x14b4800,11, 0x14b5000,536, 0x14ba000,7, 0x14ba048,8, 0x14ba080,8, 0x14ba100,7, 0x14ba148,8, 0x14ba180,8, 0x14c0400,4, 0x14c0440,4, 0x14c05c0,1, 0x14c0600,8, 0x14c0800,18, 0x14c0880,13, 0x14c08f0,3, 0x14c0900,18, 0x14c0980,13, 0x14c09f0,3, 0x14c0e00,4, 0x14c0e20,4, 0x14c0e80,16, 0x14c0f00,1, 0x14c0f20,1, 0x14c1020,2, 0x14c1208,6, 0x14c1228,10, 0x14c1288,6, 0x14c12a8,10, 0x14c1600,32, 0x14c18c0,8, 0x14c1900,24, 0x14c19b0,4, 0x14c1aa0,2, 0x14c1ac0,4, 0x14c2200,19, 0x14c2280,19, 0x14c2400,14, 0x14c243c,9, 0x14c2464,14, 0x14c24a0,2, 0x14c24ac,2, 0x14c2500,14, 0x14c253c,9, 0x14c2564,14, 0x14c25a0,2, 0x14c25ac,2, 0x14c2800,19, 0x14c2880,19, 0x14c2a10,2, 0x14c2a1c,1, 0x14c2a50,2, 0x14c2a5c,1, 0x14c2c00,7, 0x14c2c20,1, 0x14c2c54,18, 0x14c2ca0,1, 0x14c2cd4,11, 0x14c2e00,1, 0x14c2e08,6, 0x14c3180,3, 0x14c4400,4, 0x14c4440,4, 0x14c45c0,1, 0x14c4600,8, 0x14c4800,18, 0x14c4880,13, 0x14c48f0,3, 0x14c4900,18, 0x14c4980,13, 0x14c49f0,3, 0x14c4e00,4, 0x14c4e20,4, 0x14c4e80,16, 0x14c4f00,1, 0x14c4f20,1, 0x14c5020,2, 0x14c5208,6, 0x14c5228,10, 0x14c5288,6, 0x14c52a8,10, 0x14c5600,32, 0x14c58c0,8, 0x14c5900,24, 0x14c59b0,4, 0x14c5aa0,2, 0x14c5ac0,4, 0x14c6200,19, 0x14c6280,19, 0x14c6400,14, 0x14c643c,9, 0x14c6464,14, 0x14c64a0,2, 0x14c64ac,2, 0x14c6500,14, 0x14c653c,9, 0x14c6564,14, 0x14c65a0,2, 0x14c65ac,2, 0x14c6800,19, 0x14c6880,19, 0x14c6a10,2, 0x14c6a1c,1, 0x14c6a50,2, 0x14c6a5c,1, 0x14c6c00,7, 0x14c6c20,1, 0x14c6c54,18, 0x14c6ca0,1, 0x14c6cd4,11, 0x14c6e00,1, 0x14c6e08,6, 0x14c7180,3, 0x14c9000,13, 0x14ce000,19, 0x14cea00,10, 0x14cea80,3, 0x14cf000,1, 0x14cf008,5, 0x14cf038,1, 0x14cf044,1, 0x14cf050,2, 0x14cf060,8, 0x14cf140,19, 0x14cf190,4, 0x14d0000,2, 0x14d000c,2, 0x14d0040,7, 0x14d0100,3, 0x14d0110,3, 0x14d0120,5, 0x14d0200,6, 0x14d0240,5, 0x14d0400,2, 0x14d040c,2, 0x14d0440,7, 0x14d0500,3, 0x14d0510,3, 0x14d0520,5, 0x14d0600,6, 0x14d0640,5, 0x14d0800,2, 0x14d080c,2, 0x14d0840,7, 0x14d0900,3, 0x14d0910,3, 0x14d0920,5, 0x14d0a00,6, 0x14d0a40,5, 0x14d0c00,2, 0x14d0c0c,2, 0x14d0c40,7, 0x14d0d00,3, 0x14d0d10,3, 0x14d0d20,5, 0x14d0e00,6, 0x14d0e40,5, 0x14d1000,2, 0x14d100c,2, 0x14d1040,7, 0x14d1100,3, 0x14d1110,3, 0x14d1120,5, 0x14d1200,6, 0x14d1240,5, 0x14d1400,2, 0x14d140c,2, 0x14d1440,7, 0x14d1500,3, 0x14d1510,3, 0x14d1520,5, 0x14d1600,6, 0x14d1640,5, 0x14d1800,2, 0x14d180c,2, 0x14d1840,7, 0x14d1900,3, 0x14d1910,3, 0x14d1920,5, 0x14d1a00,6, 0x14d1a40,5, 0x14d1c00,2, 0x14d1c0c,2, 0x14d1c40,7, 0x14d1d00,3, 0x14d1d10,3, 0x14d1d20,5, 0x14d1e00,6, 0x14d1e40,5, 0x14d2000,5, 0x14d2040,9, 0x14d2100,3, 0x14d2200,1, 0x14d2210,1, 0x14d2220,1, 0x14d2230,1, 0x14d2240,1, 0x14d2300,3, 0x14d2314,1, 0x14d2320,4, 0x14d2400,5, 0x14d2440,5, 0x14d3000,80, 0x14d3200,1, 0x14d8000,7, 0x14d8030,2, 0x14d8040,7, 0x14d8070,2, 0x14d8100,2, 0x14d8120,2, 0x14d8140,2, 0x14d8160,2, 0x14d8180,9, 0x14d8200,7, 0x14d8230,2, 0x14d8240,7, 0x14d8270,2, 0x14d8300,2, 0x14d8320,2, 0x14d8340,2, 0x14d8360,2, 0x14d8380,9, 0x14d8400,11, 0x14d8500,11, 0x14d9000,3, 0x14d9010,2, 0x14d901c,5, 0x14d9040,8, 0x14d9080,3, 0x14d9090,2, 0x14d909c,5, 0x14d90c0,8, 0x14d9100,3, 0x14d9110,2, 0x14d911c,5, 0x14d9140,8, 0x14d9180,3, 0x14d9190,2, 0x14d919c,5, 0x14d91c0,8, 0x14d9200,7, 0x14d9220,12, 0x14d9280,7, 0x14d92a0,12, 0x14d9300,3, 0x14d9310,1, 0x14d9400,3, 0x14d9410,2, 0x14d941c,5, 0x14d9440,8, 0x14d9480,3, 0x14d9490,2, 0x14d949c,5, 0x14d94c0,8, 0x14d9500,3, 0x14d9510,2, 0x14d951c,5, 0x14d9540,8, 0x14d9580,3, 0x14d9590,2, 0x14d959c,5, 0x14d95c0,8, 0x14d9600,7, 0x14d9620,12, 0x14d9680,7, 0x14d96a0,12, 0x14d9700,3, 0x14d9710,1, 0x14d9804,1, 0x14d9824,21, 0x14d9880,16, 0x14d9900,5, 0x14d9920,11, 0x14d9950,9, 0x14d9980,22, 0x14d9a00,22, 0x14d9a80,22, 0x14d9b00,22, 0x14d9b80,22, 0x14d9c00,22, 0x14d9c80,22, 0x14d9d00,22, 0x14d9d80,3, 0x14e0000,5, 0x14e0018,5, 0x14e0030,3, 0x14e0044,3, 0x14e0100,58, 0x14e01f0,3, 0x14e0280,3, 0x14e0400,5, 0x14e0418,5, 0x14e0430,3, 0x14e0444,3, 0x14e0500,58, 0x14e05f0,3, 0x14e0680,3, 0x14e1018,2, 0x14e1100,2, 0x14e1110,10, 0x14e1140,2, 0x14e1150,10, 0x14e1208,1, 0x14e1220,12, 0x14e1280,1, 0x14e1288,2, 0x14e1400,4, 0x14e2000,5, 0x14e2018,5, 0x14e2030,3, 0x14e2044,3, 0x14e2100,58, 0x14e21f0,3, 0x14e2280,3, 0x14e2400,5, 0x14e2418,5, 0x14e2430,3, 0x14e2444,3, 0x14e2500,58, 0x14e25f0,3, 0x14e2680,3, 0x14e3018,2, 0x14e3100,2, 0x14e3110,10, 0x14e3140,2, 0x14e3150,10, 0x14e3208,1, 0x14e3220,12, 0x14e3280,1, 0x14e3288,2, 0x14e3400,4, 0x14e4000,2, 0x14e400c,1, 0x14e4030,3, 0x14e4040,2, 0x14e404c,1, 0x14e4070,3, 0x14e4100,2, 0x14e410c,1, 0x14e4130,3, 0x14e4140,2, 0x14e414c,1, 0x14e4170,3, 0x14e4200,15, 0x14e4280,15, 0x14e4300,15, 0x14e4380,15, 0x14e4400,15, 0x14e4480,15, 0x14e4500,15, 0x14e4580,15, 0x14e4604,10, 0x14e4700,2, 0x14e470c,7, 0x14e4740,1, 0x14e4770,1, 0x14e47c0,2, 0x14e47d0,4, 0x14e5000,3, 0x14e5010,1, 0x14e501c,3, 0x14e5104,1, 0x14e5110,4, 0x14e5124,1, 0x14e5130,4, 0x14e5144,1, 0x14e5150,4, 0x14e5164,1, 0x14e5170,5, 0x14e5190,4, 0x14e5a00,4, 0x14e5c00,129, 0x14e6000,37, 0x14e6098,1, 0x14e6100,37, 0x14e6198,1, 0x14e6200,37, 0x14e6298,1, 0x14e6300,37, 0x14e6398,1, 0x14e6400,37, 0x14e6498,1, 0x14e6500,37, 0x14e6598,1, 0x14e6600,37, 0x14e6698,1, 0x14e6700,37, 0x14e6798,1, 0x14ec000,91, 0x14ec400,4, 0x14ec440,15, 0x14ec480,4, 0x14ec4c0,15, 0x14ec500,4, 0x14ec540,15, 0x14ec580,4, 0x14ec5c0,15, 0x14ec600,4, 0x14ec640,10, 0x14ec680,4, 0x14ec6c0,10, 0x14ec800,4, 0x14ec840,33, 0x14eca00,13, 0x14eca80,1, 0x14eca88,8, 0x14ecac0,6, 0x14ecae0,1, 0x14ecae8,2, 0x14ecb04,14, 0x14ecc00,4, 0x14eccc8,1, 0x14ecfcc,3, 0x14ecfe0,99, 0x14ed400,4, 0x14ed440,15, 0x14ed480,4, 0x14ed4c0,15, 0x14ed500,4, 0x14ed540,15, 0x14ed580,4, 0x14ed5c0,15, 0x14ed600,4, 0x14ed640,10, 0x14ed680,4, 0x14ed6c0,10, 0x14ed800,4, 0x14ed840,33, 0x14eda00,13, 0x14eda80,1, 0x14eda88,8, 0x14edac0,6, 0x14edae0,1, 0x14edae8,2, 0x14edb04,14, 0x14edc00,4, 0x14edcc8,1, 0x14edfcc,3, 0x14edfe0,27, 0x14ef000,19, 0x14efa00,10, 0x14efa80,3, 0x14efb00,6, 0x14f0000,51, 0x14f0a00,10, 0x14f0a80,3, 0x14f1000,2, 0x14f100c,4, 0x14f1028,3, 0x14f1038,4, 0x14f1050,2, 0x14f1080,4, 0x14f1098,7, 0x14f1120,4, 0x14f1200,4, 0x14f1214,7, 0x14f1234,3, 0x14f1280,8, 0x14f12c0,5, 0x14f1300,2, 0x14f130c,3, 0x14f1400,24, 0x14f1464,2, 0x14f1470,3, 0x14f1500,25, 0x14f15c0,8, 0x14f15e8,5, 0x14f1600,5, 0x14f1618,1, 0x14f1620,1, 0x14f1628,1, 0x14f1630,2, 0x14f1640,2, 0x14f1650,2, 0x14f1690,4, 0x14f1740,2, 0x14f1760,6, 0x14f1780,6, 0x14f17a0,6, 0x14f17c0,6, 0x14f17e0,1, 0x14f1800,2, 0x14f180c,4, 0x14f1828,3, 0x14f1838,4, 0x14f1850,2, 0x14f1880,4, 0x14f1898,7, 0x14f1920,4, 0x14f1a00,4, 0x14f1a14,7, 0x14f1a34,3, 0x14f1a80,8, 0x14f1ac0,5, 0x14f1b00,2, 0x14f1b0c,3, 0x14f1c00,24, 0x14f1c64,2, 0x14f1c70,3, 0x14f1d00,25, 0x14f1dc0,8, 0x14f1de8,5, 0x14f1e00,5, 0x14f1e18,1, 0x14f1e20,1, 0x14f1e28,1, 0x14f1e30,2, 0x14f1e40,2, 0x14f1e50,2, 0x14f1e90,4, 0x14f1f40,2, 0x14f1f60,6, 0x14f1f80,6, 0x14f1fa0,6, 0x14f1fc0,6, 0x14f1fe0,1, 0x14f2000,19, 0x14f2080,2, 0x14f20b0,2, 0x14f20c0,2, 0x1500000,11, 0x1500040,16, 0x1500084,5, 0x1500200,7, 0x1500220,6, 0x1500240,7, 0x1500260,6, 0x1500280,6, 0x15002a0,2, 0x15002ac,2, 0x15002c0,7, 0x15002e0,7, 0x1500300,2, 0x150030c,2, 0x1500320,6, 0x1500400,2, 0x1501000,19, 0x1502104,23, 0x1502180,7, 0x15021a0,6, 0x15021c0,7, 0x15021e0,6, 0x1502200,4, 0x1502220,4, 0x1502240,11, 0x1502270,32, 0x1502300,24, 0x1502380,20, 0x1502400,61, 0x1502500,25, 0x1502568,4, 0x1502580,2, 0x15025a0,1, 0x15025c0,11, 0x1502600,9, 0x1502640,3, 0x1502650,3, 0x1502664,3, 0x1502680,22, 0x1502800,11, 0x1503000,536, 0x1504104,23, 0x1504180,7, 0x15041a0,6, 0x15041c0,7, 0x15041e0,6, 0x1504200,4, 0x1504220,4, 0x1504240,11, 0x1504270,32, 0x1504300,24, 0x1504380,20, 0x1504400,61, 0x1504500,25, 0x1504568,4, 0x1504580,2, 0x15045a0,1, 0x15045c0,11, 0x1504600,9, 0x1504640,3, 0x1504650,3, 0x1504664,3, 0x1504680,22, 0x1504800,11, 0x1505000,536, 0x150a000,7, 0x150a048,8, 0x150a080,8, 0x150a100,7, 0x150a148,8, 0x150a180,8, 0x1510000,11, 0x1510040,16, 0x1510084,5, 0x1510200,7, 0x1510220,6, 0x1510240,7, 0x1510260,6, 0x1510280,6, 0x15102a0,2, 0x15102ac,2, 0x15102c0,7, 0x15102e0,7, 0x1510300,2, 0x151030c,2, 0x1510320,6, 0x1510400,2, 0x1511000,19, 0x1512104,23, 0x1512180,7, 0x15121a0,6, 0x15121c0,7, 0x15121e0,6, 0x1512200,4, 0x1512220,4, 0x1512240,11, 0x1512270,32, 0x1512300,24, 0x1512380,20, 0x1512400,61, 0x1512500,25, 0x1512568,4, 0x1512580,2, 0x15125a0,1, 0x15125c0,11, 0x1512600,9, 0x1512640,3, 0x1512650,3, 0x1512664,3, 0x1512680,22, 0x1512800,11, 0x1513000,536, 0x1514104,23, 0x1514180,7, 0x15141a0,6, 0x15141c0,7, 0x15141e0,6, 0x1514200,4, 0x1514220,4, 0x1514240,11, 0x1514270,32, 0x1514300,24, 0x1514380,20, 0x1514400,61, 0x1514500,25, 0x1514568,4, 0x1514580,2, 0x15145a0,1, 0x15145c0,11, 0x1514600,9, 0x1514640,3, 0x1514650,3, 0x1514664,3, 0x1514680,22, 0x1514800,11, 0x1515000,536, 0x151a000,7, 0x151a048,8, 0x151a080,8, 0x151a100,7, 0x151a148,8, 0x151a180,8, 0x1520400,4, 0x1520440,4, 0x15205c0,1, 0x1520600,8, 0x1520800,18, 0x1520880,13, 0x15208f0,3, 0x1520900,18, 0x1520980,13, 0x15209f0,3, 0x1520e00,4, 0x1520e20,4, 0x1520e80,16, 0x1520f00,1, 0x1520f20,1, 0x1521020,2, 0x1521208,6, 0x1521228,10, 0x1521288,6, 0x15212a8,10, 0x1521600,32, 0x15218c0,8, 0x1521900,24, 0x15219b0,4, 0x1521aa0,2, 0x1521ac0,4, 0x1522200,19, 0x1522280,19, 0x1522400,14, 0x152243c,9, 0x1522464,14, 0x15224a0,2, 0x15224ac,2, 0x1522500,14, 0x152253c,9, 0x1522564,14, 0x15225a0,2, 0x15225ac,2, 0x1522800,19, 0x1522880,19, 0x1522a10,2, 0x1522a1c,1, 0x1522a50,2, 0x1522a5c,1, 0x1522c00,7, 0x1522c20,1, 0x1522c54,18, 0x1522ca0,1, 0x1522cd4,11, 0x1522e00,1, 0x1522e08,6, 0x1523180,3, 0x1524400,4, 0x1524440,4, 0x15245c0,1, 0x1524600,8, 0x1524800,18, 0x1524880,13, 0x15248f0,3, 0x1524900,18, 0x1524980,13, 0x15249f0,3, 0x1524e00,4, 0x1524e20,4, 0x1524e80,16, 0x1524f00,1, 0x1524f20,1, 0x1525020,2, 0x1525208,6, 0x1525228,10, 0x1525288,6, 0x15252a8,10, 0x1525600,32, 0x15258c0,8, 0x1525900,24, 0x15259b0,4, 0x1525aa0,2, 0x1525ac0,4, 0x1526200,19, 0x1526280,19, 0x1526400,14, 0x152643c,9, 0x1526464,14, 0x15264a0,2, 0x15264ac,2, 0x1526500,14, 0x152653c,9, 0x1526564,14, 0x15265a0,2, 0x15265ac,2, 0x1526800,19, 0x1526880,19, 0x1526a10,2, 0x1526a1c,1, 0x1526a50,2, 0x1526a5c,1, 0x1526c00,7, 0x1526c20,1, 0x1526c54,18, 0x1526ca0,1, 0x1526cd4,11, 0x1526e00,1, 0x1526e08,6, 0x1527180,3, 0x1529000,13, 0x152e000,19, 0x152ea00,10, 0x152ea80,3, 0x152f000,1, 0x152f008,5, 0x152f038,1, 0x152f044,1, 0x152f050,2, 0x152f060,8, 0x152f140,19, 0x152f190,4, 0x1530000,2, 0x153000c,2, 0x1530040,7, 0x1530100,3, 0x1530110,3, 0x1530120,5, 0x1530200,6, 0x1530240,5, 0x1530400,2, 0x153040c,2, 0x1530440,7, 0x1530500,3, 0x1530510,3, 0x1530520,5, 0x1530600,6, 0x1530640,5, 0x1530800,2, 0x153080c,2, 0x1530840,7, 0x1530900,3, 0x1530910,3, 0x1530920,5, 0x1530a00,6, 0x1530a40,5, 0x1530c00,2, 0x1530c0c,2, 0x1530c40,7, 0x1530d00,3, 0x1530d10,3, 0x1530d20,5, 0x1530e00,6, 0x1530e40,5, 0x1531000,2, 0x153100c,2, 0x1531040,7, 0x1531100,3, 0x1531110,3, 0x1531120,5, 0x1531200,6, 0x1531240,5, 0x1531400,2, 0x153140c,2, 0x1531440,7, 0x1531500,3, 0x1531510,3, 0x1531520,5, 0x1531600,6, 0x1531640,5, 0x1531800,2, 0x153180c,2, 0x1531840,7, 0x1531900,3, 0x1531910,3, 0x1531920,5, 0x1531a00,6, 0x1531a40,5, 0x1531c00,2, 0x1531c0c,2, 0x1531c40,7, 0x1531d00,3, 0x1531d10,3, 0x1531d20,5, 0x1531e00,6, 0x1531e40,5, 0x1532000,5, 0x1532040,9, 0x1532100,3, 0x1532200,1, 0x1532210,1, 0x1532220,1, 0x1532230,1, 0x1532240,1, 0x1532300,3, 0x1532314,1, 0x1532320,4, 0x1532400,5, 0x1532440,5, 0x1533000,80, 0x1533200,1, 0x1538000,7, 0x1538030,2, 0x1538040,7, 0x1538070,2, 0x1538100,2, 0x1538120,2, 0x1538140,2, 0x1538160,2, 0x1538180,9, 0x1538200,7, 0x1538230,2, 0x1538240,7, 0x1538270,2, 0x1538300,2, 0x1538320,2, 0x1538340,2, 0x1538360,2, 0x1538380,9, 0x1538400,11, 0x1538500,11, 0x1539000,3, 0x1539010,2, 0x153901c,5, 0x1539040,8, 0x1539080,3, 0x1539090,2, 0x153909c,5, 0x15390c0,8, 0x1539100,3, 0x1539110,2, 0x153911c,5, 0x1539140,8, 0x1539180,3, 0x1539190,2, 0x153919c,5, 0x15391c0,8, 0x1539200,7, 0x1539220,12, 0x1539280,7, 0x15392a0,12, 0x1539300,3, 0x1539310,1, 0x1539400,3, 0x1539410,2, 0x153941c,5, 0x1539440,8, 0x1539480,3, 0x1539490,2, 0x153949c,5, 0x15394c0,8, 0x1539500,3, 0x1539510,2, 0x153951c,5, 0x1539540,8, 0x1539580,3, 0x1539590,2, 0x153959c,5, 0x15395c0,8, 0x1539600,7, 0x1539620,12, 0x1539680,7, 0x15396a0,12, 0x1539700,3, 0x1539710,1, 0x1539804,1, 0x1539824,21, 0x1539880,16, 0x1539900,5, 0x1539920,11, 0x1539950,9, 0x1539980,22, 0x1539a00,22, 0x1539a80,22, 0x1539b00,22, 0x1539b80,22, 0x1539c00,22, 0x1539c80,22, 0x1539d00,22, 0x1539d80,3, 0x1540000,5, 0x1540018,5, 0x1540030,3, 0x1540044,3, 0x1540100,58, 0x15401f0,3, 0x1540280,3, 0x1540400,5, 0x1540418,5, 0x1540430,3, 0x1540444,3, 0x1540500,58, 0x15405f0,3, 0x1540680,3, 0x1541018,2, 0x1541100,2, 0x1541110,10, 0x1541140,2, 0x1541150,10, 0x1541208,1, 0x1541220,12, 0x1541280,1, 0x1541288,2, 0x1541400,4, 0x1542000,5, 0x1542018,5, 0x1542030,3, 0x1542044,3, 0x1542100,58, 0x15421f0,3, 0x1542280,3, 0x1542400,5, 0x1542418,5, 0x1542430,3, 0x1542444,3, 0x1542500,58, 0x15425f0,3, 0x1542680,3, 0x1543018,2, 0x1543100,2, 0x1543110,10, 0x1543140,2, 0x1543150,10, 0x1543208,1, 0x1543220,12, 0x1543280,1, 0x1543288,2, 0x1543400,4, 0x1544000,2, 0x154400c,1, 0x1544030,3, 0x1544040,2, 0x154404c,1, 0x1544070,3, 0x1544100,2, 0x154410c,1, 0x1544130,3, 0x1544140,2, 0x154414c,1, 0x1544170,3, 0x1544200,15, 0x1544280,15, 0x1544300,15, 0x1544380,15, 0x1544400,15, 0x1544480,15, 0x1544500,15, 0x1544580,15, 0x1544604,10, 0x1544700,2, 0x154470c,7, 0x1544740,1, 0x1544770,1, 0x15447c0,2, 0x15447d0,4, 0x1545000,3, 0x1545010,1, 0x154501c,3, 0x1545104,1, 0x1545110,4, 0x1545124,1, 0x1545130,4, 0x1545144,1, 0x1545150,4, 0x1545164,1, 0x1545170,5, 0x1545190,4, 0x1545a00,4, 0x1545c00,129, 0x1546000,37, 0x1546098,1, 0x1546100,37, 0x1546198,1, 0x1546200,37, 0x1546298,1, 0x1546300,37, 0x1546398,1, 0x1546400,37, 0x1546498,1, 0x1546500,37, 0x1546598,1, 0x1546600,37, 0x1546698,1, 0x1546700,37, 0x1546798,1, 0x154c000,91, 0x154c400,4, 0x154c440,15, 0x154c480,4, 0x154c4c0,15, 0x154c500,4, 0x154c540,15, 0x154c580,4, 0x154c5c0,15, 0x154c600,4, 0x154c640,10, 0x154c680,4, 0x154c6c0,10, 0x154c800,4, 0x154c840,33, 0x154ca00,13, 0x154ca80,1, 0x154ca88,8, 0x154cac0,6, 0x154cae0,1, 0x154cae8,2, 0x154cb04,14, 0x154cc00,4, 0x154ccc8,1, 0x154cfcc,3, 0x154cfe0,99, 0x154d400,4, 0x154d440,15, 0x154d480,4, 0x154d4c0,15, 0x154d500,4, 0x154d540,15, 0x154d580,4, 0x154d5c0,15, 0x154d600,4, 0x154d640,10, 0x154d680,4, 0x154d6c0,10, 0x154d800,4, 0x154d840,33, 0x154da00,13, 0x154da80,1, 0x154da88,8, 0x154dac0,6, 0x154dae0,1, 0x154dae8,2, 0x154db04,14, 0x154dc00,4, 0x154dcc8,1, 0x154dfcc,3, 0x154dfe0,27, 0x154f000,19, 0x154fa00,10, 0x154fa80,3, 0x154fb00,6, 0x1550000,51, 0x1550a00,10, 0x1550a80,3, 0x1551000,2, 0x155100c,4, 0x1551028,3, 0x1551038,4, 0x1551050,2, 0x1551080,4, 0x1551098,7, 0x1551120,4, 0x1551200,4, 0x1551214,7, 0x1551234,3, 0x1551280,8, 0x15512c0,5, 0x1551300,2, 0x155130c,3, 0x1551400,24, 0x1551464,2, 0x1551470,3, 0x1551500,25, 0x15515c0,8, 0x15515e8,5, 0x1551600,5, 0x1551618,1, 0x1551620,1, 0x1551628,1, 0x1551630,2, 0x1551640,2, 0x1551650,2, 0x1551690,4, 0x1551740,2, 0x1551760,6, 0x1551780,6, 0x15517a0,6, 0x15517c0,6, 0x15517e0,1, 0x1551800,2, 0x155180c,4, 0x1551828,3, 0x1551838,4, 0x1551850,2, 0x1551880,4, 0x1551898,7, 0x1551920,4, 0x1551a00,4, 0x1551a14,7, 0x1551a34,3, 0x1551a80,8, 0x1551ac0,5, 0x1551b00,2, 0x1551b0c,3, 0x1551c00,24, 0x1551c64,2, 0x1551c70,3, 0x1551d00,25, 0x1551dc0,8, 0x1551de8,5, 0x1551e00,5, 0x1551e18,1, 0x1551e20,1, 0x1551e28,1, 0x1551e30,2, 0x1551e40,2, 0x1551e50,2, 0x1551e90,4, 0x1551f40,2, 0x1551f60,6, 0x1551f80,6, 0x1551fa0,6, 0x1551fc0,6, 0x1551fe0,1, 0x1552000,19, 0x1552080,2, 0x15520b0,2, 0x15520c0,2, 0x1560000,11, 0x1560040,16, 0x1560084,5, 0x1560200,7, 0x1560220,6, 0x1560240,7, 0x1560260,6, 0x1560280,6, 0x15602a0,2, 0x15602ac,2, 0x15602c0,7, 0x15602e0,7, 0x1560300,2, 0x156030c,2, 0x1560320,6, 0x1560400,2, 0x1561000,19, 0x1562104,23, 0x1562180,7, 0x15621a0,6, 0x15621c0,7, 0x15621e0,6, 0x1562200,4, 0x1562220,4, 0x1562240,11, 0x1562270,32, 0x1562300,24, 0x1562380,20, 0x1562400,61, 0x1562500,25, 0x1562568,4, 0x1562580,2, 0x15625a0,1, 0x15625c0,11, 0x1562600,9, 0x1562640,3, 0x1562650,3, 0x1562664,3, 0x1562680,22, 0x1562800,11, 0x1563000,536, 0x1564104,23, 0x1564180,7, 0x15641a0,6, 0x15641c0,7, 0x15641e0,6, 0x1564200,4, 0x1564220,4, 0x1564240,11, 0x1564270,32, 0x1564300,24, 0x1564380,20, 0x1564400,61, 0x1564500,25, 0x1564568,4, 0x1564580,2, 0x15645a0,1, 0x15645c0,11, 0x1564600,9, 0x1564640,3, 0x1564650,3, 0x1564664,3, 0x1564680,22, 0x1564800,11, 0x1565000,536, 0x156a000,7, 0x156a048,8, 0x156a080,8, 0x156a100,7, 0x156a148,8, 0x156a180,8, 0x1570000,11, 0x1570040,16, 0x1570084,5, 0x1570200,7, 0x1570220,6, 0x1570240,7, 0x1570260,6, 0x1570280,6, 0x15702a0,2, 0x15702ac,2, 0x15702c0,7, 0x15702e0,7, 0x1570300,2, 0x157030c,2, 0x1570320,6, 0x1570400,2, 0x1571000,19, 0x1572104,23, 0x1572180,7, 0x15721a0,6, 0x15721c0,7, 0x15721e0,6, 0x1572200,4, 0x1572220,4, 0x1572240,11, 0x1572270,32, 0x1572300,24, 0x1572380,20, 0x1572400,61, 0x1572500,25, 0x1572568,4, 0x1572580,2, 0x15725a0,1, 0x15725c0,11, 0x1572600,9, 0x1572640,3, 0x1572650,3, 0x1572664,3, 0x1572680,22, 0x1572800,11, 0x1573000,536, 0x1574104,23, 0x1574180,7, 0x15741a0,6, 0x15741c0,7, 0x15741e0,6, 0x1574200,4, 0x1574220,4, 0x1574240,11, 0x1574270,32, 0x1574300,24, 0x1574380,20, 0x1574400,61, 0x1574500,25, 0x1574568,4, 0x1574580,2, 0x15745a0,1, 0x15745c0,11, 0x1574600,9, 0x1574640,3, 0x1574650,3, 0x1574664,3, 0x1574680,22, 0x1574800,11, 0x1575000,536, 0x157a000,7, 0x157a048,8, 0x157a080,8, 0x157a100,7, 0x157a148,8, 0x157a180,8, 0x1580400,4, 0x1580440,4, 0x15805c0,1, 0x1580600,8, 0x1580800,18, 0x1580880,13, 0x15808f0,3, 0x1580900,18, 0x1580980,13, 0x15809f0,3, 0x1580e00,4, 0x1580e20,4, 0x1580e80,16, 0x1580f00,1, 0x1580f20,1, 0x1581020,2, 0x1581208,6, 0x1581228,10, 0x1581288,6, 0x15812a8,10, 0x1581600,32, 0x15818c0,8, 0x1581900,24, 0x15819b0,4, 0x1581aa0,2, 0x1581ac0,4, 0x1582200,19, 0x1582280,19, 0x1582400,14, 0x158243c,9, 0x1582464,14, 0x15824a0,2, 0x15824ac,2, 0x1582500,14, 0x158253c,9, 0x1582564,14, 0x15825a0,2, 0x15825ac,2, 0x1582800,19, 0x1582880,19, 0x1582a10,2, 0x1582a1c,1, 0x1582a50,2, 0x1582a5c,1, 0x1582c00,7, 0x1582c20,1, 0x1582c54,18, 0x1582ca0,1, 0x1582cd4,11, 0x1582e00,1, 0x1582e08,6, 0x1583180,3, 0x1584400,4, 0x1584440,4, 0x15845c0,1, 0x1584600,8, 0x1584800,18, 0x1584880,13, 0x15848f0,3, 0x1584900,18, 0x1584980,13, 0x15849f0,3, 0x1584e00,4, 0x1584e20,4, 0x1584e80,16, 0x1584f00,1, 0x1584f20,1, 0x1585020,2, 0x1585208,6, 0x1585228,10, 0x1585288,6, 0x15852a8,10, 0x1585600,32, 0x15858c0,8, 0x1585900,24, 0x15859b0,4, 0x1585aa0,2, 0x1585ac0,4, 0x1586200,19, 0x1586280,19, 0x1586400,14, 0x158643c,9, 0x1586464,14, 0x15864a0,2, 0x15864ac,2, 0x1586500,14, 0x158653c,9, 0x1586564,14, 0x15865a0,2, 0x15865ac,2, 0x1586800,19, 0x1586880,19, 0x1586a10,2, 0x1586a1c,1, 0x1586a50,2, 0x1586a5c,1, 0x1586c00,7, 0x1586c20,1, 0x1586c54,18, 0x1586ca0,1, 0x1586cd4,11, 0x1586e00,1, 0x1586e08,6, 0x1587180,3, 0x1589000,13, 0x158e000,19, 0x158ea00,10, 0x158ea80,3, 0x158f000,1, 0x158f008,5, 0x158f038,1, 0x158f044,1, 0x158f050,2, 0x158f060,8, 0x158f140,19, 0x158f190,4, 0x1590000,2, 0x159000c,2, 0x1590040,7, 0x1590100,3, 0x1590110,3, 0x1590120,5, 0x1590200,6, 0x1590240,5, 0x1590400,2, 0x159040c,2, 0x1590440,7, 0x1590500,3, 0x1590510,3, 0x1590520,5, 0x1590600,6, 0x1590640,5, 0x1590800,2, 0x159080c,2, 0x1590840,7, 0x1590900,3, 0x1590910,3, 0x1590920,5, 0x1590a00,6, 0x1590a40,5, 0x1590c00,2, 0x1590c0c,2, 0x1590c40,7, 0x1590d00,3, 0x1590d10,3, 0x1590d20,5, 0x1590e00,6, 0x1590e40,5, 0x1591000,2, 0x159100c,2, 0x1591040,7, 0x1591100,3, 0x1591110,3, 0x1591120,5, 0x1591200,6, 0x1591240,5, 0x1591400,2, 0x159140c,2, 0x1591440,7, 0x1591500,3, 0x1591510,3, 0x1591520,5, 0x1591600,6, 0x1591640,5, 0x1591800,2, 0x159180c,2, 0x1591840,7, 0x1591900,3, 0x1591910,3, 0x1591920,5, 0x1591a00,6, 0x1591a40,5, 0x1591c00,2, 0x1591c0c,2, 0x1591c40,7, 0x1591d00,3, 0x1591d10,3, 0x1591d20,5, 0x1591e00,6, 0x1591e40,5, 0x1592000,5, 0x1592040,9, 0x1592100,3, 0x1592200,1, 0x1592210,1, 0x1592220,1, 0x1592230,1, 0x1592240,1, 0x1592300,3, 0x1592314,1, 0x1592320,4, 0x1592400,5, 0x1592440,5, 0x1593000,80, 0x1593200,1, 0x1598000,7, 0x1598030,2, 0x1598040,7, 0x1598070,2, 0x1598100,2, 0x1598120,2, 0x1598140,2, 0x1598160,2, 0x1598180,9, 0x1598200,7, 0x1598230,2, 0x1598240,7, 0x1598270,2, 0x1598300,2, 0x1598320,2, 0x1598340,2, 0x1598360,2, 0x1598380,9, 0x1598400,11, 0x1598500,11, 0x1599000,3, 0x1599010,2, 0x159901c,5, 0x1599040,8, 0x1599080,3, 0x1599090,2, 0x159909c,5, 0x15990c0,8, 0x1599100,3, 0x1599110,2, 0x159911c,5, 0x1599140,8, 0x1599180,3, 0x1599190,2, 0x159919c,5, 0x15991c0,8, 0x1599200,7, 0x1599220,12, 0x1599280,7, 0x15992a0,12, 0x1599300,3, 0x1599310,1, 0x1599400,3, 0x1599410,2, 0x159941c,5, 0x1599440,8, 0x1599480,3, 0x1599490,2, 0x159949c,5, 0x15994c0,8, 0x1599500,3, 0x1599510,2, 0x159951c,5, 0x1599540,8, 0x1599580,3, 0x1599590,2, 0x159959c,5, 0x15995c0,8, 0x1599600,7, 0x1599620,12, 0x1599680,7, 0x15996a0,12, 0x1599700,3, 0x1599710,1, 0x1599804,1, 0x1599824,21, 0x1599880,16, 0x1599900,5, 0x1599920,11, 0x1599950,9, 0x1599980,22, 0x1599a00,22, 0x1599a80,22, 0x1599b00,22, 0x1599b80,22, 0x1599c00,22, 0x1599c80,22, 0x1599d00,22, 0x1599d80,3, 0x15a0000,5, 0x15a0018,5, 0x15a0030,3, 0x15a0044,3, 0x15a0100,58, 0x15a01f0,3, 0x15a0280,3, 0x15a0400,5, 0x15a0418,5, 0x15a0430,3, 0x15a0444,3, 0x15a0500,58, 0x15a05f0,3, 0x15a0680,3, 0x15a1018,2, 0x15a1100,2, 0x15a1110,10, 0x15a1140,2, 0x15a1150,10, 0x15a1208,1, 0x15a1220,12, 0x15a1280,1, 0x15a1288,2, 0x15a1400,4, 0x15a2000,5, 0x15a2018,5, 0x15a2030,3, 0x15a2044,3, 0x15a2100,58, 0x15a21f0,3, 0x15a2280,3, 0x15a2400,5, 0x15a2418,5, 0x15a2430,3, 0x15a2444,3, 0x15a2500,58, 0x15a25f0,3, 0x15a2680,3, 0x15a3018,2, 0x15a3100,2, 0x15a3110,10, 0x15a3140,2, 0x15a3150,10, 0x15a3208,1, 0x15a3220,12, 0x15a3280,1, 0x15a3288,2, 0x15a3400,4, 0x15a4000,2, 0x15a400c,1, 0x15a4030,3, 0x15a4040,2, 0x15a404c,1, 0x15a4070,3, 0x15a4100,2, 0x15a410c,1, 0x15a4130,3, 0x15a4140,2, 0x15a414c,1, 0x15a4170,3, 0x15a4200,15, 0x15a4280,15, 0x15a4300,15, 0x15a4380,15, 0x15a4400,15, 0x15a4480,15, 0x15a4500,15, 0x15a4580,15, 0x15a4604,10, 0x15a4700,2, 0x15a470c,7, 0x15a4740,1, 0x15a4770,1, 0x15a47c0,2, 0x15a47d0,4, 0x15a5000,3, 0x15a5010,1, 0x15a501c,3, 0x15a5104,1, 0x15a5110,4, 0x15a5124,1, 0x15a5130,4, 0x15a5144,1, 0x15a5150,4, 0x15a5164,1, 0x15a5170,5, 0x15a5190,4, 0x15a5a00,4, 0x15a5c00,129, 0x15a6000,37, 0x15a6098,1, 0x15a6100,37, 0x15a6198,1, 0x15a6200,37, 0x15a6298,1, 0x15a6300,37, 0x15a6398,1, 0x15a6400,37, 0x15a6498,1, 0x15a6500,37, 0x15a6598,1, 0x15a6600,37, 0x15a6698,1, 0x15a6700,37, 0x15a6798,1, 0x15ac000,91, 0x15ac400,4, 0x15ac440,15, 0x15ac480,4, 0x15ac4c0,15, 0x15ac500,4, 0x15ac540,15, 0x15ac580,4, 0x15ac5c0,15, 0x15ac600,4, 0x15ac640,10, 0x15ac680,4, 0x15ac6c0,10, 0x15ac800,4, 0x15ac840,33, 0x15aca00,13, 0x15aca80,1, 0x15aca88,8, 0x15acac0,6, 0x15acae0,1, 0x15acae8,2, 0x15acb04,14, 0x15acc00,4, 0x15accc8,1, 0x15acfcc,3, 0x15acfe0,99, 0x15ad400,4, 0x15ad440,15, 0x15ad480,4, 0x15ad4c0,15, 0x15ad500,4, 0x15ad540,15, 0x15ad580,4, 0x15ad5c0,15, 0x15ad600,4, 0x15ad640,10, 0x15ad680,4, 0x15ad6c0,10, 0x15ad800,4, 0x15ad840,33, 0x15ada00,13, 0x15ada80,1, 0x15ada88,8, 0x15adac0,6, 0x15adae0,1, 0x15adae8,2, 0x15adb04,14, 0x15adc00,4, 0x15adcc8,1, 0x15adfcc,3, 0x15adfe0,27, 0x15af000,19, 0x15afa00,10, 0x15afa80,3, 0x15afb00,6, 0x15b0000,51, 0x15b0a00,10, 0x15b0a80,3, 0x15b1000,2, 0x15b100c,4, 0x15b1028,3, 0x15b1038,4, 0x15b1050,2, 0x15b1080,4, 0x15b1098,7, 0x15b1120,4, 0x15b1200,4, 0x15b1214,7, 0x15b1234,3, 0x15b1280,8, 0x15b12c0,5, 0x15b1300,2, 0x15b130c,3, 0x15b1400,24, 0x15b1464,2, 0x15b1470,3, 0x15b1500,25, 0x15b15c0,8, 0x15b15e8,5, 0x15b1600,5, 0x15b1618,1, 0x15b1620,1, 0x15b1628,1, 0x15b1630,2, 0x15b1640,2, 0x15b1650,2, 0x15b1690,4, 0x15b1740,2, 0x15b1760,6, 0x15b1780,6, 0x15b17a0,6, 0x15b17c0,6, 0x15b17e0,1, 0x15b1800,2, 0x15b180c,4, 0x15b1828,3, 0x15b1838,4, 0x15b1850,2, 0x15b1880,4, 0x15b1898,7, 0x15b1920,4, 0x15b1a00,4, 0x15b1a14,7, 0x15b1a34,3, 0x15b1a80,8, 0x15b1ac0,5, 0x15b1b00,2, 0x15b1b0c,3, 0x15b1c00,24, 0x15b1c64,2, 0x15b1c70,3, 0x15b1d00,25, 0x15b1dc0,8, 0x15b1de8,5, 0x15b1e00,5, 0x15b1e18,1, 0x15b1e20,1, 0x15b1e28,1, 0x15b1e30,2, 0x15b1e40,2, 0x15b1e50,2, 0x15b1e90,4, 0x15b1f40,2, 0x15b1f60,6, 0x15b1f80,6, 0x15b1fa0,6, 0x15b1fc0,6, 0x15b1fe0,1, 0x15b2000,19, 0x15b2080,2, 0x15b20b0,2, 0x15b20c0,2, 0x15c0000,11, 0x15c0040,16, 0x15c0084,5, 0x15c0200,7, 0x15c0220,6, 0x15c0240,7, 0x15c0260,6, 0x15c0280,6, 0x15c02a0,2, 0x15c02ac,2, 0x15c02c0,7, 0x15c02e0,7, 0x15c0300,2, 0x15c030c,2, 0x15c0320,6, 0x15c0400,2, 0x15c1000,19, 0x15c2104,23, 0x15c2180,7, 0x15c21a0,6, 0x15c21c0,7, 0x15c21e0,6, 0x15c2200,4, 0x15c2220,4, 0x15c2240,11, 0x15c2270,32, 0x15c2300,24, 0x15c2380,20, 0x15c2400,61, 0x15c2500,25, 0x15c2568,4, 0x15c2580,2, 0x15c25a0,1, 0x15c25c0,11, 0x15c2600,9, 0x15c2640,3, 0x15c2650,3, 0x15c2664,3, 0x15c2680,22, 0x15c2800,11, 0x15c3000,536, 0x15c4104,23, 0x15c4180,7, 0x15c41a0,6, 0x15c41c0,7, 0x15c41e0,6, 0x15c4200,4, 0x15c4220,4, 0x15c4240,11, 0x15c4270,32, 0x15c4300,24, 0x15c4380,20, 0x15c4400,61, 0x15c4500,25, 0x15c4568,4, 0x15c4580,2, 0x15c45a0,1, 0x15c45c0,11, 0x15c4600,9, 0x15c4640,3, 0x15c4650,3, 0x15c4664,3, 0x15c4680,22, 0x15c4800,11, 0x15c5000,536, 0x15ca000,7, 0x15ca048,8, 0x15ca080,8, 0x15ca100,7, 0x15ca148,8, 0x15ca180,8, 0x15d0000,11, 0x15d0040,16, 0x15d0084,5, 0x15d0200,7, 0x15d0220,6, 0x15d0240,7, 0x15d0260,6, 0x15d0280,6, 0x15d02a0,2, 0x15d02ac,2, 0x15d02c0,7, 0x15d02e0,7, 0x15d0300,2, 0x15d030c,2, 0x15d0320,6, 0x15d0400,2, 0x15d1000,19, 0x15d2104,23, 0x15d2180,7, 0x15d21a0,6, 0x15d21c0,7, 0x15d21e0,6, 0x15d2200,4, 0x15d2220,4, 0x15d2240,11, 0x15d2270,32, 0x15d2300,24, 0x15d2380,20, 0x15d2400,61, 0x15d2500,25, 0x15d2568,4, 0x15d2580,2, 0x15d25a0,1, 0x15d25c0,11, 0x15d2600,9, 0x15d2640,3, 0x15d2650,3, 0x15d2664,3, 0x15d2680,22, 0x15d2800,11, 0x15d3000,536, 0x15d4104,23, 0x15d4180,7, 0x15d41a0,6, 0x15d41c0,7, 0x15d41e0,6, 0x15d4200,4, 0x15d4220,4, 0x15d4240,11, 0x15d4270,32, 0x15d4300,24, 0x15d4380,20, 0x15d4400,61, 0x15d4500,25, 0x15d4568,4, 0x15d4580,2, 0x15d45a0,1, 0x15d45c0,11, 0x15d4600,9, 0x15d4640,3, 0x15d4650,3, 0x15d4664,3, 0x15d4680,22, 0x15d4800,11, 0x15d5000,536, 0x15da000,7, 0x15da048,8, 0x15da080,8, 0x15da100,7, 0x15da148,8, 0x15da180,8, 0x15e0400,4, 0x15e0440,4, 0x15e05c0,1, 0x15e0600,8, 0x15e0800,18, 0x15e0880,13, 0x15e08f0,3, 0x15e0900,18, 0x15e0980,13, 0x15e09f0,3, 0x15e0e00,4, 0x15e0e20,4, 0x15e0e80,16, 0x15e0f00,1, 0x15e0f20,1, 0x15e1020,2, 0x15e1208,6, 0x15e1228,10, 0x15e1288,6, 0x15e12a8,10, 0x15e1600,32, 0x15e18c0,8, 0x15e1900,24, 0x15e19b0,4, 0x15e1aa0,2, 0x15e1ac0,4, 0x15e2200,19, 0x15e2280,19, 0x15e2400,14, 0x15e243c,9, 0x15e2464,14, 0x15e24a0,2, 0x15e24ac,2, 0x15e2500,14, 0x15e253c,9, 0x15e2564,14, 0x15e25a0,2, 0x15e25ac,2, 0x15e2800,19, 0x15e2880,19, 0x15e2a10,2, 0x15e2a1c,1, 0x15e2a50,2, 0x15e2a5c,1, 0x15e2c00,7, 0x15e2c20,1, 0x15e2c54,18, 0x15e2ca0,1, 0x15e2cd4,11, 0x15e2e00,1, 0x15e2e08,6, 0x15e3180,3, 0x15e4400,4, 0x15e4440,4, 0x15e45c0,1, 0x15e4600,8, 0x15e4800,18, 0x15e4880,13, 0x15e48f0,3, 0x15e4900,18, 0x15e4980,13, 0x15e49f0,3, 0x15e4e00,4, 0x15e4e20,4, 0x15e4e80,16, 0x15e4f00,1, 0x15e4f20,1, 0x15e5020,2, 0x15e5208,6, 0x15e5228,10, 0x15e5288,6, 0x15e52a8,10, 0x15e5600,32, 0x15e58c0,8, 0x15e5900,24, 0x15e59b0,4, 0x15e5aa0,2, 0x15e5ac0,4, 0x15e6200,19, 0x15e6280,19, 0x15e6400,14, 0x15e643c,9, 0x15e6464,14, 0x15e64a0,2, 0x15e64ac,2, 0x15e6500,14, 0x15e653c,9, 0x15e6564,14, 0x15e65a0,2, 0x15e65ac,2, 0x15e6800,19, 0x15e6880,19, 0x15e6a10,2, 0x15e6a1c,1, 0x15e6a50,2, 0x15e6a5c,1, 0x15e6c00,7, 0x15e6c20,1, 0x15e6c54,18, 0x15e6ca0,1, 0x15e6cd4,11, 0x15e6e00,1, 0x15e6e08,6, 0x15e7180,3, 0x15e9000,13, 0x15ee000,19, 0x15eea00,10, 0x15eea80,3, 0x15ef000,1, 0x15ef008,5, 0x15ef038,1, 0x15ef044,1, 0x15ef050,2, 0x15ef060,8, 0x15ef140,19, 0x15ef190,4, 0x15f0000,2, 0x15f000c,2, 0x15f0040,7, 0x15f0100,3, 0x15f0110,3, 0x15f0120,5, 0x15f0200,6, 0x15f0240,5, 0x15f0400,2, 0x15f040c,2, 0x15f0440,7, 0x15f0500,3, 0x15f0510,3, 0x15f0520,5, 0x15f0600,6, 0x15f0640,5, 0x15f0800,2, 0x15f080c,2, 0x15f0840,7, 0x15f0900,3, 0x15f0910,3, 0x15f0920,5, 0x15f0a00,6, 0x15f0a40,5, 0x15f0c00,2, 0x15f0c0c,2, 0x15f0c40,7, 0x15f0d00,3, 0x15f0d10,3, 0x15f0d20,5, 0x15f0e00,6, 0x15f0e40,5, 0x15f1000,2, 0x15f100c,2, 0x15f1040,7, 0x15f1100,3, 0x15f1110,3, 0x15f1120,5, 0x15f1200,6, 0x15f1240,5, 0x15f1400,2, 0x15f140c,2, 0x15f1440,7, 0x15f1500,3, 0x15f1510,3, 0x15f1520,5, 0x15f1600,6, 0x15f1640,5, 0x15f1800,2, 0x15f180c,2, 0x15f1840,7, 0x15f1900,3, 0x15f1910,3, 0x15f1920,5, 0x15f1a00,6, 0x15f1a40,5, 0x15f1c00,2, 0x15f1c0c,2, 0x15f1c40,7, 0x15f1d00,3, 0x15f1d10,3, 0x15f1d20,5, 0x15f1e00,6, 0x15f1e40,5, 0x15f2000,5, 0x15f2040,9, 0x15f2100,3, 0x15f2200,1, 0x15f2210,1, 0x15f2220,1, 0x15f2230,1, 0x15f2240,1, 0x15f2300,3, 0x15f2314,1, 0x15f2320,4, 0x15f2400,5, 0x15f2440,5, 0x15f3000,80, 0x15f3200,1, 0x15f8000,7, 0x15f8030,2, 0x15f8040,7, 0x15f8070,2, 0x15f8100,2, 0x15f8120,2, 0x15f8140,2, 0x15f8160,2, 0x15f8180,9, 0x15f8200,7, 0x15f8230,2, 0x15f8240,7, 0x15f8270,2, 0x15f8300,2, 0x15f8320,2, 0x15f8340,2, 0x15f8360,2, 0x15f8380,9, 0x15f8400,11, 0x15f8500,11, 0x15f9000,3, 0x15f9010,2, 0x15f901c,5, 0x15f9040,8, 0x15f9080,3, 0x15f9090,2, 0x15f909c,5, 0x15f90c0,8, 0x15f9100,3, 0x15f9110,2, 0x15f911c,5, 0x15f9140,8, 0x15f9180,3, 0x15f9190,2, 0x15f919c,5, 0x15f91c0,8, 0x15f9200,7, 0x15f9220,12, 0x15f9280,7, 0x15f92a0,12, 0x15f9300,3, 0x15f9310,1, 0x15f9400,3, 0x15f9410,2, 0x15f941c,5, 0x15f9440,8, 0x15f9480,3, 0x15f9490,2, 0x15f949c,5, 0x15f94c0,8, 0x15f9500,3, 0x15f9510,2, 0x15f951c,5, 0x15f9540,8, 0x15f9580,3, 0x15f9590,2, 0x15f959c,5, 0x15f95c0,8, 0x15f9600,7, 0x15f9620,12, 0x15f9680,7, 0x15f96a0,12, 0x15f9700,3, 0x15f9710,1, 0x15f9804,1, 0x15f9824,21, 0x15f9880,16, 0x15f9900,5, 0x15f9920,11, 0x15f9950,9, 0x15f9980,22, 0x15f9a00,22, 0x15f9a80,22, 0x15f9b00,22, 0x15f9b80,22, 0x15f9c00,22, 0x15f9c80,22, 0x15f9d00,22, 0x15f9d80,3, 0x1600000,5, 0x1600018,5, 0x1600030,3, 0x1600044,3, 0x1600100,58, 0x16001f0,3, 0x1600280,3, 0x1600400,5, 0x1600418,5, 0x1600430,3, 0x1600444,3, 0x1600500,58, 0x16005f0,3, 0x1600680,3, 0x1601018,2, 0x1601100,2, 0x1601110,10, 0x1601140,2, 0x1601150,10, 0x1601208,1, 0x1601220,12, 0x1601280,1, 0x1601288,2, 0x1601400,4, 0x1602000,5, 0x1602018,5, 0x1602030,3, 0x1602044,3, 0x1602100,58, 0x16021f0,3, 0x1602280,3, 0x1602400,5, 0x1602418,5, 0x1602430,3, 0x1602444,3, 0x1602500,58, 0x16025f0,3, 0x1602680,3, 0x1603018,2, 0x1603100,2, 0x1603110,10, 0x1603140,2, 0x1603150,10, 0x1603208,1, 0x1603220,12, 0x1603280,1, 0x1603288,2, 0x1603400,4, 0x1604000,2, 0x160400c,1, 0x1604030,3, 0x1604040,2, 0x160404c,1, 0x1604070,3, 0x1604100,2, 0x160410c,1, 0x1604130,3, 0x1604140,2, 0x160414c,1, 0x1604170,3, 0x1604200,15, 0x1604280,15, 0x1604300,15, 0x1604380,15, 0x1604400,15, 0x1604480,15, 0x1604500,15, 0x1604580,15, 0x1604604,10, 0x1604700,2, 0x160470c,7, 0x1604740,1, 0x1604770,1, 0x16047c0,2, 0x16047d0,4, 0x1605000,3, 0x1605010,1, 0x160501c,3, 0x1605104,1, 0x1605110,4, 0x1605124,1, 0x1605130,4, 0x1605144,1, 0x1605150,4, 0x1605164,1, 0x1605170,5, 0x1605190,4, 0x1605a00,4, 0x1605c00,129, 0x1606000,37, 0x1606098,1, 0x1606100,37, 0x1606198,1, 0x1606200,37, 0x1606298,1, 0x1606300,37, 0x1606398,1, 0x1606400,37, 0x1606498,1, 0x1606500,37, 0x1606598,1, 0x1606600,37, 0x1606698,1, 0x1606700,37, 0x1606798,1, 0x160c000,91, 0x160c400,4, 0x160c440,15, 0x160c480,4, 0x160c4c0,15, 0x160c500,4, 0x160c540,15, 0x160c580,4, 0x160c5c0,15, 0x160c600,4, 0x160c640,10, 0x160c680,4, 0x160c6c0,10, 0x160c800,4, 0x160c840,33, 0x160ca00,13, 0x160ca80,1, 0x160ca88,8, 0x160cac0,6, 0x160cae0,1, 0x160cae8,2, 0x160cb04,14, 0x160cc00,4, 0x160ccc8,1, 0x160cfcc,3, 0x160cfe0,99, 0x160d400,4, 0x160d440,15, 0x160d480,4, 0x160d4c0,15, 0x160d500,4, 0x160d540,15, 0x160d580,4, 0x160d5c0,15, 0x160d600,4, 0x160d640,10, 0x160d680,4, 0x160d6c0,10, 0x160d800,4, 0x160d840,33, 0x160da00,13, 0x160da80,1, 0x160da88,8, 0x160dac0,6, 0x160dae0,1, 0x160dae8,2, 0x160db04,14, 0x160dc00,4, 0x160dcc8,1, 0x160dfcc,3, 0x160dfe0,27, 0x160f000,19, 0x160fa00,10, 0x160fa80,3, 0x160fb00,6, 0x1610000,51, 0x1610a00,10, 0x1610a80,3, 0x1611000,2, 0x161100c,4, 0x1611028,3, 0x1611038,4, 0x1611050,2, 0x1611080,4, 0x1611098,7, 0x1611120,4, 0x1611200,4, 0x1611214,7, 0x1611234,3, 0x1611280,8, 0x16112c0,5, 0x1611300,2, 0x161130c,3, 0x1611400,24, 0x1611464,2, 0x1611470,3, 0x1611500,25, 0x16115c0,8, 0x16115e8,5, 0x1611600,5, 0x1611618,1, 0x1611620,1, 0x1611628,1, 0x1611630,2, 0x1611640,2, 0x1611650,2, 0x1611690,4, 0x1611740,2, 0x1611760,6, 0x1611780,6, 0x16117a0,6, 0x16117c0,6, 0x16117e0,1, 0x1611800,2, 0x161180c,4, 0x1611828,3, 0x1611838,4, 0x1611850,2, 0x1611880,4, 0x1611898,7, 0x1611920,4, 0x1611a00,4, 0x1611a14,7, 0x1611a34,3, 0x1611a80,8, 0x1611ac0,5, 0x1611b00,2, 0x1611b0c,3, 0x1611c00,24, 0x1611c64,2, 0x1611c70,3, 0x1611d00,25, 0x1611dc0,8, 0x1611de8,5, 0x1611e00,5, 0x1611e18,1, 0x1611e20,1, 0x1611e28,1, 0x1611e30,2, 0x1611e40,2, 0x1611e50,2, 0x1611e90,4, 0x1611f40,2, 0x1611f60,6, 0x1611f80,6, 0x1611fa0,6, 0x1611fc0,6, 0x1611fe0,1, 0x1612000,19, 0x1612080,2, 0x16120b0,2, 0x16120c0,2, 0x1620000,11, 0x1620040,16, 0x1620084,5, 0x1620200,7, 0x1620220,6, 0x1620240,7, 0x1620260,6, 0x1620280,6, 0x16202a0,2, 0x16202ac,2, 0x16202c0,7, 0x16202e0,7, 0x1620300,2, 0x162030c,2, 0x1620320,6, 0x1620400,2, 0x1621000,19, 0x1622104,23, 0x1622180,7, 0x16221a0,6, 0x16221c0,7, 0x16221e0,6, 0x1622200,4, 0x1622220,4, 0x1622240,11, 0x1622270,32, 0x1622300,24, 0x1622380,20, 0x1622400,61, 0x1622500,25, 0x1622568,4, 0x1622580,2, 0x16225a0,1, 0x16225c0,11, 0x1622600,9, 0x1622640,3, 0x1622650,3, 0x1622664,3, 0x1622680,22, 0x1622800,11, 0x1623000,536, 0x1624104,23, 0x1624180,7, 0x16241a0,6, 0x16241c0,7, 0x16241e0,6, 0x1624200,4, 0x1624220,4, 0x1624240,11, 0x1624270,32, 0x1624300,24, 0x1624380,20, 0x1624400,61, 0x1624500,25, 0x1624568,4, 0x1624580,2, 0x16245a0,1, 0x16245c0,11, 0x1624600,9, 0x1624640,3, 0x1624650,3, 0x1624664,3, 0x1624680,22, 0x1624800,11, 0x1625000,536, 0x162a000,7, 0x162a048,8, 0x162a080,8, 0x162a100,7, 0x162a148,8, 0x162a180,8, 0x1630000,11, 0x1630040,16, 0x1630084,5, 0x1630200,7, 0x1630220,6, 0x1630240,7, 0x1630260,6, 0x1630280,6, 0x16302a0,2, 0x16302ac,2, 0x16302c0,7, 0x16302e0,7, 0x1630300,2, 0x163030c,2, 0x1630320,6, 0x1630400,2, 0x1631000,19, 0x1632104,23, 0x1632180,7, 0x16321a0,6, 0x16321c0,7, 0x16321e0,6, 0x1632200,4, 0x1632220,4, 0x1632240,11, 0x1632270,32, 0x1632300,24, 0x1632380,20, 0x1632400,61, 0x1632500,25, 0x1632568,4, 0x1632580,2, 0x16325a0,1, 0x16325c0,11, 0x1632600,9, 0x1632640,3, 0x1632650,3, 0x1632664,3, 0x1632680,22, 0x1632800,11, 0x1633000,536, 0x1634104,23, 0x1634180,7, 0x16341a0,6, 0x16341c0,7, 0x16341e0,6, 0x1634200,4, 0x1634220,4, 0x1634240,11, 0x1634270,32, 0x1634300,24, 0x1634380,20, 0x1634400,61, 0x1634500,25, 0x1634568,4, 0x1634580,2, 0x16345a0,1, 0x16345c0,11, 0x1634600,9, 0x1634640,3, 0x1634650,3, 0x1634664,3, 0x1634680,22, 0x1634800,11, 0x1635000,536, 0x163a000,7, 0x163a048,8, 0x163a080,8, 0x163a100,7, 0x163a148,8, 0x163a180,8, 0x1640400,4, 0x1640440,4, 0x16405c0,1, 0x1640600,8, 0x1640800,18, 0x1640880,13, 0x16408f0,3, 0x1640900,18, 0x1640980,13, 0x16409f0,3, 0x1640e00,4, 0x1640e20,4, 0x1640e80,16, 0x1640f00,1, 0x1640f20,1, 0x1641020,2, 0x1641208,6, 0x1641228,10, 0x1641288,6, 0x16412a8,10, 0x1641600,32, 0x16418c0,8, 0x1641900,24, 0x16419b0,4, 0x1641aa0,2, 0x1641ac0,4, 0x1642200,19, 0x1642280,19, 0x1642400,14, 0x164243c,9, 0x1642464,14, 0x16424a0,2, 0x16424ac,2, 0x1642500,14, 0x164253c,9, 0x1642564,14, 0x16425a0,2, 0x16425ac,2, 0x1642800,19, 0x1642880,19, 0x1642a10,2, 0x1642a1c,1, 0x1642a50,2, 0x1642a5c,1, 0x1642c00,7, 0x1642c20,1, 0x1642c54,18, 0x1642ca0,1, 0x1642cd4,11, 0x1642e00,1, 0x1642e08,6, 0x1643180,3, 0x1644400,4, 0x1644440,4, 0x16445c0,1, 0x1644600,8, 0x1644800,18, 0x1644880,13, 0x16448f0,3, 0x1644900,18, 0x1644980,13, 0x16449f0,3, 0x1644e00,4, 0x1644e20,4, 0x1644e80,16, 0x1644f00,1, 0x1644f20,1, 0x1645020,2, 0x1645208,6, 0x1645228,10, 0x1645288,6, 0x16452a8,10, 0x1645600,32, 0x16458c0,8, 0x1645900,24, 0x16459b0,4, 0x1645aa0,2, 0x1645ac0,4, 0x1646200,19, 0x1646280,19, 0x1646400,14, 0x164643c,9, 0x1646464,14, 0x16464a0,2, 0x16464ac,2, 0x1646500,14, 0x164653c,9, 0x1646564,14, 0x16465a0,2, 0x16465ac,2, 0x1646800,19, 0x1646880,19, 0x1646a10,2, 0x1646a1c,1, 0x1646a50,2, 0x1646a5c,1, 0x1646c00,7, 0x1646c20,1, 0x1646c54,18, 0x1646ca0,1, 0x1646cd4,11, 0x1646e00,1, 0x1646e08,6, 0x1647180,3, 0x1649000,13, 0x164e000,19, 0x164ea00,10, 0x164ea80,3, 0x164f000,1, 0x164f008,5, 0x164f038,1, 0x164f044,1, 0x164f050,2, 0x164f060,8, 0x164f140,19, 0x164f190,4, 0x1650000,2, 0x165000c,2, 0x1650040,7, 0x1650100,3, 0x1650110,3, 0x1650120,5, 0x1650200,6, 0x1650240,5, 0x1650400,2, 0x165040c,2, 0x1650440,7, 0x1650500,3, 0x1650510,3, 0x1650520,5, 0x1650600,6, 0x1650640,5, 0x1650800,2, 0x165080c,2, 0x1650840,7, 0x1650900,3, 0x1650910,3, 0x1650920,5, 0x1650a00,6, 0x1650a40,5, 0x1650c00,2, 0x1650c0c,2, 0x1650c40,7, 0x1650d00,3, 0x1650d10,3, 0x1650d20,5, 0x1650e00,6, 0x1650e40,5, 0x1651000,2, 0x165100c,2, 0x1651040,7, 0x1651100,3, 0x1651110,3, 0x1651120,5, 0x1651200,6, 0x1651240,5, 0x1651400,2, 0x165140c,2, 0x1651440,7, 0x1651500,3, 0x1651510,3, 0x1651520,5, 0x1651600,6, 0x1651640,5, 0x1651800,2, 0x165180c,2, 0x1651840,7, 0x1651900,3, 0x1651910,3, 0x1651920,5, 0x1651a00,6, 0x1651a40,5, 0x1651c00,2, 0x1651c0c,2, 0x1651c40,7, 0x1651d00,3, 0x1651d10,3, 0x1651d20,5, 0x1651e00,6, 0x1651e40,5, 0x1652000,5, 0x1652040,9, 0x1652100,3, 0x1652200,1, 0x1652210,1, 0x1652220,1, 0x1652230,1, 0x1652240,1, 0x1652300,3, 0x1652314,1, 0x1652320,4, 0x1652400,5, 0x1652440,5, 0x1653000,80, 0x1653200,1, 0x1658000,7, 0x1658030,2, 0x1658040,7, 0x1658070,2, 0x1658100,2, 0x1658120,2, 0x1658140,2, 0x1658160,2, 0x1658180,9, 0x1658200,7, 0x1658230,2, 0x1658240,7, 0x1658270,2, 0x1658300,2, 0x1658320,2, 0x1658340,2, 0x1658360,2, 0x1658380,9, 0x1658400,11, 0x1658500,11, 0x1659000,3, 0x1659010,2, 0x165901c,5, 0x1659040,8, 0x1659080,3, 0x1659090,2, 0x165909c,5, 0x16590c0,8, 0x1659100,3, 0x1659110,2, 0x165911c,5, 0x1659140,8, 0x1659180,3, 0x1659190,2, 0x165919c,5, 0x16591c0,8, 0x1659200,7, 0x1659220,12, 0x1659280,7, 0x16592a0,12, 0x1659300,3, 0x1659310,1, 0x1659400,3, 0x1659410,2, 0x165941c,5, 0x1659440,8, 0x1659480,3, 0x1659490,2, 0x165949c,5, 0x16594c0,8, 0x1659500,3, 0x1659510,2, 0x165951c,5, 0x1659540,8, 0x1659580,3, 0x1659590,2, 0x165959c,5, 0x16595c0,8, 0x1659600,7, 0x1659620,12, 0x1659680,7, 0x16596a0,12, 0x1659700,3, 0x1659710,1, 0x1659804,1, 0x1659824,21, 0x1659880,16, 0x1659900,5, 0x1659920,11, 0x1659950,9, 0x1659980,22, 0x1659a00,22, 0x1659a80,22, 0x1659b00,22, 0x1659b80,22, 0x1659c00,22, 0x1659c80,22, 0x1659d00,22, 0x1659d80,3, 0x1660000,5, 0x1660018,5, 0x1660030,3, 0x1660044,3, 0x1660100,58, 0x16601f0,3, 0x1660280,3, 0x1660400,5, 0x1660418,5, 0x1660430,3, 0x1660444,3, 0x1660500,58, 0x16605f0,3, 0x1660680,3, 0x1661018,2, 0x1661100,2, 0x1661110,10, 0x1661140,2, 0x1661150,10, 0x1661208,1, 0x1661220,12, 0x1661280,1, 0x1661288,2, 0x1661400,4, 0x1662000,5, 0x1662018,5, 0x1662030,3, 0x1662044,3, 0x1662100,58, 0x16621f0,3, 0x1662280,3, 0x1662400,5, 0x1662418,5, 0x1662430,3, 0x1662444,3, 0x1662500,58, 0x16625f0,3, 0x1662680,3, 0x1663018,2, 0x1663100,2, 0x1663110,10, 0x1663140,2, 0x1663150,10, 0x1663208,1, 0x1663220,12, 0x1663280,1, 0x1663288,2, 0x1663400,4, 0x1664000,2, 0x166400c,1, 0x1664030,3, 0x1664040,2, 0x166404c,1, 0x1664070,3, 0x1664100,2, 0x166410c,1, 0x1664130,3, 0x1664140,2, 0x166414c,1, 0x1664170,3, 0x1664200,15, 0x1664280,15, 0x1664300,15, 0x1664380,15, 0x1664400,15, 0x1664480,15, 0x1664500,15, 0x1664580,15, 0x1664604,10, 0x1664700,2, 0x166470c,7, 0x1664740,1, 0x1664770,1, 0x16647c0,2, 0x16647d0,4, 0x1665000,3, 0x1665010,1, 0x166501c,3, 0x1665104,1, 0x1665110,4, 0x1665124,1, 0x1665130,4, 0x1665144,1, 0x1665150,4, 0x1665164,1, 0x1665170,5, 0x1665190,4, 0x1665a00,4, 0x1665c00,129, 0x1666000,37, 0x1666098,1, 0x1666100,37, 0x1666198,1, 0x1666200,37, 0x1666298,1, 0x1666300,37, 0x1666398,1, 0x1666400,37, 0x1666498,1, 0x1666500,37, 0x1666598,1, 0x1666600,37, 0x1666698,1, 0x1666700,37, 0x1666798,1, 0x166c000,91, 0x166c400,4, 0x166c440,15, 0x166c480,4, 0x166c4c0,15, 0x166c500,4, 0x166c540,15, 0x166c580,4, 0x166c5c0,15, 0x166c600,4, 0x166c640,10, 0x166c680,4, 0x166c6c0,10, 0x166c800,4, 0x166c840,33, 0x166ca00,13, 0x166ca80,1, 0x166ca88,8, 0x166cac0,6, 0x166cae0,1, 0x166cae8,2, 0x166cb04,14, 0x166cc00,4, 0x166ccc8,1, 0x166cfcc,3, 0x166cfe0,99, 0x166d400,4, 0x166d440,15, 0x166d480,4, 0x166d4c0,15, 0x166d500,4, 0x166d540,15, 0x166d580,4, 0x166d5c0,15, 0x166d600,4, 0x166d640,10, 0x166d680,4, 0x166d6c0,10, 0x166d800,4, 0x166d840,33, 0x166da00,13, 0x166da80,1, 0x166da88,8, 0x166dac0,6, 0x166dae0,1, 0x166dae8,2, 0x166db04,14, 0x166dc00,4, 0x166dcc8,1, 0x166dfcc,3, 0x166dfe0,27, 0x166f000,19, 0x166fa00,10, 0x166fa80,3, 0x166fb00,6, 0x1670000,51, 0x1670a00,10, 0x1670a80,3, 0x1671000,2, 0x167100c,4, 0x1671028,3, 0x1671038,4, 0x1671050,2, 0x1671080,4, 0x1671098,7, 0x1671120,4, 0x1671200,4, 0x1671214,7, 0x1671234,3, 0x1671280,8, 0x16712c0,5, 0x1671300,2, 0x167130c,3, 0x1671400,24, 0x1671464,2, 0x1671470,3, 0x1671500,25, 0x16715c0,8, 0x16715e8,5, 0x1671600,5, 0x1671618,1, 0x1671620,1, 0x1671628,1, 0x1671630,2, 0x1671640,2, 0x1671650,2, 0x1671690,4, 0x1671740,2, 0x1671760,6, 0x1671780,6, 0x16717a0,6, 0x16717c0,6, 0x16717e0,1, 0x1671800,2, 0x167180c,4, 0x1671828,3, 0x1671838,4, 0x1671850,2, 0x1671880,4, 0x1671898,7, 0x1671920,4, 0x1671a00,4, 0x1671a14,7, 0x1671a34,3, 0x1671a80,8, 0x1671ac0,5, 0x1671b00,2, 0x1671b0c,3, 0x1671c00,24, 0x1671c64,2, 0x1671c70,3, 0x1671d00,25, 0x1671dc0,8, 0x1671de8,5, 0x1671e00,5, 0x1671e18,1, 0x1671e20,1, 0x1671e28,1, 0x1671e30,2, 0x1671e40,2, 0x1671e50,2, 0x1671e90,4, 0x1671f40,2, 0x1671f60,6, 0x1671f80,6, 0x1671fa0,6, 0x1671fc0,6, 0x1671fe0,1, 0x1672000,19, 0x1672080,2, 0x16720b0,2, 0x16720c0,2, 0x1680000,11, 0x1680040,16, 0x1680084,5, 0x1680200,7, 0x1680220,6, 0x1680240,7, 0x1680260,6, 0x1680280,6, 0x16802a0,2, 0x16802ac,2, 0x16802c0,7, 0x16802e0,7, 0x1680300,2, 0x168030c,2, 0x1680320,6, 0x1680400,2, 0x1681000,19, 0x1682104,23, 0x1682180,7, 0x16821a0,6, 0x16821c0,7, 0x16821e0,6, 0x1682200,4, 0x1682220,4, 0x1682240,11, 0x1682270,32, 0x1682300,24, 0x1682380,20, 0x1682400,61, 0x1682500,25, 0x1682568,4, 0x1682580,2, 0x16825a0,1, 0x16825c0,11, 0x1682600,9, 0x1682640,3, 0x1682650,3, 0x1682664,3, 0x1682680,22, 0x1682800,11, 0x1683000,536, 0x1684104,23, 0x1684180,7, 0x16841a0,6, 0x16841c0,7, 0x16841e0,6, 0x1684200,4, 0x1684220,4, 0x1684240,11, 0x1684270,32, 0x1684300,24, 0x1684380,20, 0x1684400,61, 0x1684500,25, 0x1684568,4, 0x1684580,2, 0x16845a0,1, 0x16845c0,11, 0x1684600,9, 0x1684640,3, 0x1684650,3, 0x1684664,3, 0x1684680,22, 0x1684800,11, 0x1685000,536, 0x168a000,7, 0x168a048,8, 0x168a080,8, 0x168a100,7, 0x168a148,8, 0x168a180,8, 0x1690000,11, 0x1690040,16, 0x1690084,5, 0x1690200,7, 0x1690220,6, 0x1690240,7, 0x1690260,6, 0x1690280,6, 0x16902a0,2, 0x16902ac,2, 0x16902c0,7, 0x16902e0,7, 0x1690300,2, 0x169030c,2, 0x1690320,6, 0x1690400,2, 0x1691000,19, 0x1692104,23, 0x1692180,7, 0x16921a0,6, 0x16921c0,7, 0x16921e0,6, 0x1692200,4, 0x1692220,4, 0x1692240,11, 0x1692270,32, 0x1692300,24, 0x1692380,20, 0x1692400,61, 0x1692500,25, 0x1692568,4, 0x1692580,2, 0x16925a0,1, 0x16925c0,11, 0x1692600,9, 0x1692640,3, 0x1692650,3, 0x1692664,3, 0x1692680,22, 0x1692800,11, 0x1693000,536, 0x1694104,23, 0x1694180,7, 0x16941a0,6, 0x16941c0,7, 0x16941e0,6, 0x1694200,4, 0x1694220,4, 0x1694240,11, 0x1694270,32, 0x1694300,24, 0x1694380,20, 0x1694400,61, 0x1694500,25, 0x1694568,4, 0x1694580,2, 0x16945a0,1, 0x16945c0,11, 0x1694600,9, 0x1694640,3, 0x1694650,3, 0x1694664,3, 0x1694680,22, 0x1694800,11, 0x1695000,536, 0x169a000,7, 0x169a048,8, 0x169a080,8, 0x169a100,7, 0x169a148,8, 0x169a180,8, 0x16a0400,4, 0x16a0440,4, 0x16a05c0,1, 0x16a0600,8, 0x16a0800,18, 0x16a0880,13, 0x16a08f0,3, 0x16a0900,18, 0x16a0980,13, 0x16a09f0,3, 0x16a0e00,4, 0x16a0e20,4, 0x16a0e80,16, 0x16a0f00,1, 0x16a0f20,1, 0x16a1020,2, 0x16a1208,6, 0x16a1228,10, 0x16a1288,6, 0x16a12a8,10, 0x16a1600,32, 0x16a18c0,8, 0x16a1900,24, 0x16a19b0,4, 0x16a1aa0,2, 0x16a1ac0,4, 0x16a2200,19, 0x16a2280,19, 0x16a2400,14, 0x16a243c,9, 0x16a2464,14, 0x16a24a0,2, 0x16a24ac,2, 0x16a2500,14, 0x16a253c,9, 0x16a2564,14, 0x16a25a0,2, 0x16a25ac,2, 0x16a2800,19, 0x16a2880,19, 0x16a2a10,2, 0x16a2a1c,1, 0x16a2a50,2, 0x16a2a5c,1, 0x16a2c00,7, 0x16a2c20,1, 0x16a2c54,18, 0x16a2ca0,1, 0x16a2cd4,11, 0x16a2e00,1, 0x16a2e08,6, 0x16a3180,3, 0x16a4400,4, 0x16a4440,4, 0x16a45c0,1, 0x16a4600,8, 0x16a4800,18, 0x16a4880,13, 0x16a48f0,3, 0x16a4900,18, 0x16a4980,13, 0x16a49f0,3, 0x16a4e00,4, 0x16a4e20,4, 0x16a4e80,16, 0x16a4f00,1, 0x16a4f20,1, 0x16a5020,2, 0x16a5208,6, 0x16a5228,10, 0x16a5288,6, 0x16a52a8,10, 0x16a5600,32, 0x16a58c0,8, 0x16a5900,24, 0x16a59b0,4, 0x16a5aa0,2, 0x16a5ac0,4, 0x16a6200,19, 0x16a6280,19, 0x16a6400,14, 0x16a643c,9, 0x16a6464,14, 0x16a64a0,2, 0x16a64ac,2, 0x16a6500,14, 0x16a653c,9, 0x16a6564,14, 0x16a65a0,2, 0x16a65ac,2, 0x16a6800,19, 0x16a6880,19, 0x16a6a10,2, 0x16a6a1c,1, 0x16a6a50,2, 0x16a6a5c,1, 0x16a6c00,7, 0x16a6c20,1, 0x16a6c54,18, 0x16a6ca0,1, 0x16a6cd4,11, 0x16a6e00,1, 0x16a6e08,6, 0x16a7180,3, 0x16a9000,13, 0x16ae000,19, 0x16aea00,10, 0x16aea80,3, 0x16af000,1, 0x16af008,5, 0x16af038,1, 0x16af044,1, 0x16af050,2, 0x16af060,8, 0x16af140,19, 0x16af190,4, 0x16b0000,2, 0x16b000c,2, 0x16b0040,7, 0x16b0100,3, 0x16b0110,3, 0x16b0120,5, 0x16b0200,6, 0x16b0240,5, 0x16b0400,2, 0x16b040c,2, 0x16b0440,7, 0x16b0500,3, 0x16b0510,3, 0x16b0520,5, 0x16b0600,6, 0x16b0640,5, 0x16b0800,2, 0x16b080c,2, 0x16b0840,7, 0x16b0900,3, 0x16b0910,3, 0x16b0920,5, 0x16b0a00,6, 0x16b0a40,5, 0x16b0c00,2, 0x16b0c0c,2, 0x16b0c40,7, 0x16b0d00,3, 0x16b0d10,3, 0x16b0d20,5, 0x16b0e00,6, 0x16b0e40,5, 0x16b1000,2, 0x16b100c,2, 0x16b1040,7, 0x16b1100,3, 0x16b1110,3, 0x16b1120,5, 0x16b1200,6, 0x16b1240,5, 0x16b1400,2, 0x16b140c,2, 0x16b1440,7, 0x16b1500,3, 0x16b1510,3, 0x16b1520,5, 0x16b1600,6, 0x16b1640,5, 0x16b1800,2, 0x16b180c,2, 0x16b1840,7, 0x16b1900,3, 0x16b1910,3, 0x16b1920,5, 0x16b1a00,6, 0x16b1a40,5, 0x16b1c00,2, 0x16b1c0c,2, 0x16b1c40,7, 0x16b1d00,3, 0x16b1d10,3, 0x16b1d20,5, 0x16b1e00,6, 0x16b1e40,5, 0x16b2000,5, 0x16b2040,9, 0x16b2100,3, 0x16b2200,1, 0x16b2210,1, 0x16b2220,1, 0x16b2230,1, 0x16b2240,1, 0x16b2300,3, 0x16b2314,1, 0x16b2320,4, 0x16b2400,5, 0x16b2440,5, 0x16b3000,80, 0x16b3200,1, 0x16b8000,7, 0x16b8030,2, 0x16b8040,7, 0x16b8070,2, 0x16b8100,2, 0x16b8120,2, 0x16b8140,2, 0x16b8160,2, 0x16b8180,9, 0x16b8200,7, 0x16b8230,2, 0x16b8240,7, 0x16b8270,2, 0x16b8300,2, 0x16b8320,2, 0x16b8340,2, 0x16b8360,2, 0x16b8380,9, 0x16b8400,11, 0x16b8500,11, 0x16b9000,3, 0x16b9010,2, 0x16b901c,5, 0x16b9040,8, 0x16b9080,3, 0x16b9090,2, 0x16b909c,5, 0x16b90c0,8, 0x16b9100,3, 0x16b9110,2, 0x16b911c,5, 0x16b9140,8, 0x16b9180,3, 0x16b9190,2, 0x16b919c,5, 0x16b91c0,8, 0x16b9200,7, 0x16b9220,12, 0x16b9280,7, 0x16b92a0,12, 0x16b9300,3, 0x16b9310,1, 0x16b9400,3, 0x16b9410,2, 0x16b941c,5, 0x16b9440,8, 0x16b9480,3, 0x16b9490,2, 0x16b949c,5, 0x16b94c0,8, 0x16b9500,3, 0x16b9510,2, 0x16b951c,5, 0x16b9540,8, 0x16b9580,3, 0x16b9590,2, 0x16b959c,5, 0x16b95c0,8, 0x16b9600,7, 0x16b9620,12, 0x16b9680,7, 0x16b96a0,12, 0x16b9700,3, 0x16b9710,1, 0x16b9804,1, 0x16b9824,21, 0x16b9880,16, 0x16b9900,5, 0x16b9920,11, 0x16b9950,9, 0x16b9980,22, 0x16b9a00,22, 0x16b9a80,22, 0x16b9b00,22, 0x16b9b80,22, 0x16b9c00,22, 0x16b9c80,22, 0x16b9d00,22, 0x16b9d80,3, 0x16c0000,5, 0x16c0018,5, 0x16c0030,3, 0x16c0044,3, 0x16c0100,58, 0x16c01f0,3, 0x16c0280,3, 0x16c0400,5, 0x16c0418,5, 0x16c0430,3, 0x16c0444,3, 0x16c0500,58, 0x16c05f0,3, 0x16c0680,3, 0x16c1018,2, 0x16c1100,2, 0x16c1110,10, 0x16c1140,2, 0x16c1150,10, 0x16c1208,1, 0x16c1220,12, 0x16c1280,1, 0x16c1288,2, 0x16c1400,4, 0x16c2000,5, 0x16c2018,5, 0x16c2030,3, 0x16c2044,3, 0x16c2100,58, 0x16c21f0,3, 0x16c2280,3, 0x16c2400,5, 0x16c2418,5, 0x16c2430,3, 0x16c2444,3, 0x16c2500,58, 0x16c25f0,3, 0x16c2680,3, 0x16c3018,2, 0x16c3100,2, 0x16c3110,10, 0x16c3140,2, 0x16c3150,10, 0x16c3208,1, 0x16c3220,12, 0x16c3280,1, 0x16c3288,2, 0x16c3400,4, 0x16c4000,2, 0x16c400c,1, 0x16c4030,3, 0x16c4040,2, 0x16c404c,1, 0x16c4070,3, 0x16c4100,2, 0x16c410c,1, 0x16c4130,3, 0x16c4140,2, 0x16c414c,1, 0x16c4170,3, 0x16c4200,15, 0x16c4280,15, 0x16c4300,15, 0x16c4380,15, 0x16c4400,15, 0x16c4480,15, 0x16c4500,15, 0x16c4580,15, 0x16c4604,10, 0x16c4700,2, 0x16c470c,7, 0x16c4740,1, 0x16c4770,1, 0x16c47c0,2, 0x16c47d0,4, 0x16c5000,3, 0x16c5010,1, 0x16c501c,3, 0x16c5104,1, 0x16c5110,4, 0x16c5124,1, 0x16c5130,4, 0x16c5144,1, 0x16c5150,4, 0x16c5164,1, 0x16c5170,5, 0x16c5190,4, 0x16c5a00,4, 0x16c5c00,129, 0x16c6000,37, 0x16c6098,1, 0x16c6100,37, 0x16c6198,1, 0x16c6200,37, 0x16c6298,1, 0x16c6300,37, 0x16c6398,1, 0x16c6400,37, 0x16c6498,1, 0x16c6500,37, 0x16c6598,1, 0x16c6600,37, 0x16c6698,1, 0x16c6700,37, 0x16c6798,1, 0x16cc000,91, 0x16cc400,4, 0x16cc440,15, 0x16cc480,4, 0x16cc4c0,15, 0x16cc500,4, 0x16cc540,15, 0x16cc580,4, 0x16cc5c0,15, 0x16cc600,4, 0x16cc640,10, 0x16cc680,4, 0x16cc6c0,10, 0x16cc800,4, 0x16cc840,33, 0x16cca00,13, 0x16cca80,1, 0x16cca88,8, 0x16ccac0,6, 0x16ccae0,1, 0x16ccae8,2, 0x16ccb04,14, 0x16ccc00,4, 0x16cccc8,1, 0x16ccfcc,3, 0x16ccfe0,99, 0x16cd400,4, 0x16cd440,15, 0x16cd480,4, 0x16cd4c0,15, 0x16cd500,4, 0x16cd540,15, 0x16cd580,4, 0x16cd5c0,15, 0x16cd600,4, 0x16cd640,10, 0x16cd680,4, 0x16cd6c0,10, 0x16cd800,4, 0x16cd840,33, 0x16cda00,13, 0x16cda80,1, 0x16cda88,8, 0x16cdac0,6, 0x16cdae0,1, 0x16cdae8,2, 0x16cdb04,14, 0x16cdc00,4, 0x16cdcc8,1, 0x16cdfcc,3, 0x16cdfe0,27, 0x16cf000,19, 0x16cfa00,10, 0x16cfa80,3, 0x16cfb00,6, 0x16d0000,51, 0x16d0a00,10, 0x16d0a80,3, 0x16d1000,2, 0x16d100c,4, 0x16d1028,3, 0x16d1038,4, 0x16d1050,2, 0x16d1080,4, 0x16d1098,7, 0x16d1120,4, 0x16d1200,4, 0x16d1214,7, 0x16d1234,3, 0x16d1280,8, 0x16d12c0,5, 0x16d1300,2, 0x16d130c,3, 0x16d1400,24, 0x16d1464,2, 0x16d1470,3, 0x16d1500,25, 0x16d15c0,8, 0x16d15e8,5, 0x16d1600,5, 0x16d1618,1, 0x16d1620,1, 0x16d1628,1, 0x16d1630,2, 0x16d1640,2, 0x16d1650,2, 0x16d1690,4, 0x16d1740,2, 0x16d1760,6, 0x16d1780,6, 0x16d17a0,6, 0x16d17c0,6, 0x16d17e0,1, 0x16d1800,2, 0x16d180c,4, 0x16d1828,3, 0x16d1838,4, 0x16d1850,2, 0x16d1880,4, 0x16d1898,7, 0x16d1920,4, 0x16d1a00,4, 0x16d1a14,7, 0x16d1a34,3, 0x16d1a80,8, 0x16d1ac0,5, 0x16d1b00,2, 0x16d1b0c,3, 0x16d1c00,24, 0x16d1c64,2, 0x16d1c70,3, 0x16d1d00,25, 0x16d1dc0,8, 0x16d1de8,5, 0x16d1e00,5, 0x16d1e18,1, 0x16d1e20,1, 0x16d1e28,1, 0x16d1e30,2, 0x16d1e40,2, 0x16d1e50,2, 0x16d1e90,4, 0x16d1f40,2, 0x16d1f60,6, 0x16d1f80,6, 0x16d1fa0,6, 0x16d1fc0,6, 0x16d1fe0,1, 0x16d2000,19, 0x16d2080,2, 0x16d20b0,2, 0x16d20c0,2, 0x16e0000,11, 0x16e0040,16, 0x16e0084,5, 0x16e0200,7, 0x16e0220,6, 0x16e0240,7, 0x16e0260,6, 0x16e0280,6, 0x16e02a0,2, 0x16e02ac,2, 0x16e02c0,7, 0x16e02e0,7, 0x16e0300,2, 0x16e030c,2, 0x16e0320,6, 0x16e0400,2, 0x16e1000,19, 0x16e2104,23, 0x16e2180,7, 0x16e21a0,6, 0x16e21c0,7, 0x16e21e0,6, 0x16e2200,4, 0x16e2220,4, 0x16e2240,11, 0x16e2270,32, 0x16e2300,24, 0x16e2380,20, 0x16e2400,61, 0x16e2500,25, 0x16e2568,4, 0x16e2580,2, 0x16e25a0,1, 0x16e25c0,11, 0x16e2600,9, 0x16e2640,3, 0x16e2650,3, 0x16e2664,3, 0x16e2680,22, 0x16e2800,11, 0x16e3000,536, 0x16e4104,23, 0x16e4180,7, 0x16e41a0,6, 0x16e41c0,7, 0x16e41e0,6, 0x16e4200,4, 0x16e4220,4, 0x16e4240,11, 0x16e4270,32, 0x16e4300,24, 0x16e4380,20, 0x16e4400,61, 0x16e4500,25, 0x16e4568,4, 0x16e4580,2, 0x16e45a0,1, 0x16e45c0,11, 0x16e4600,9, 0x16e4640,3, 0x16e4650,3, 0x16e4664,3, 0x16e4680,22, 0x16e4800,11, 0x16e5000,536, 0x16ea000,7, 0x16ea048,8, 0x16ea080,8, 0x16ea100,7, 0x16ea148,8, 0x16ea180,8, 0x16f0000,11, 0x16f0040,16, 0x16f0084,5, 0x16f0200,7, 0x16f0220,6, 0x16f0240,7, 0x16f0260,6, 0x16f0280,6, 0x16f02a0,2, 0x16f02ac,2, 0x16f02c0,7, 0x16f02e0,7, 0x16f0300,2, 0x16f030c,2, 0x16f0320,6, 0x16f0400,2, 0x16f1000,19, 0x16f2104,23, 0x16f2180,7, 0x16f21a0,6, 0x16f21c0,7, 0x16f21e0,6, 0x16f2200,4, 0x16f2220,4, 0x16f2240,11, 0x16f2270,32, 0x16f2300,24, 0x16f2380,20, 0x16f2400,61, 0x16f2500,25, 0x16f2568,4, 0x16f2580,2, 0x16f25a0,1, 0x16f25c0,11, 0x16f2600,9, 0x16f2640,3, 0x16f2650,3, 0x16f2664,3, 0x16f2680,22, 0x16f2800,11, 0x16f3000,536, 0x16f4104,23, 0x16f4180,7, 0x16f41a0,6, 0x16f41c0,7, 0x16f41e0,6, 0x16f4200,4, 0x16f4220,4, 0x16f4240,11, 0x16f4270,32, 0x16f4300,24, 0x16f4380,20, 0x16f4400,61, 0x16f4500,25, 0x16f4568,4, 0x16f4580,2, 0x16f45a0,1, 0x16f45c0,11, 0x16f4600,9, 0x16f4640,3, 0x16f4650,3, 0x16f4664,3, 0x16f4680,22, 0x16f4800,11, 0x16f5000,536, 0x16fa000,7, 0x16fa048,8, 0x16fa080,8, 0x16fa100,7, 0x16fa148,8, 0x16fa180,8, 0x1700400,4, 0x1700440,4, 0x17005c0,1, 0x1700600,8, 0x1700800,18, 0x1700880,13, 0x17008f0,3, 0x1700900,18, 0x1700980,13, 0x17009f0,3, 0x1700e00,4, 0x1700e20,4, 0x1700e80,16, 0x1700f00,1, 0x1700f20,1, 0x1701020,2, 0x1701208,6, 0x1701228,10, 0x1701288,6, 0x17012a8,10, 0x1701600,32, 0x17018c0,8, 0x1701900,24, 0x17019b0,4, 0x1701aa0,2, 0x1701ac0,4, 0x1702200,19, 0x1702280,19, 0x1702400,14, 0x170243c,9, 0x1702464,14, 0x17024a0,2, 0x17024ac,2, 0x1702500,14, 0x170253c,9, 0x1702564,14, 0x17025a0,2, 0x17025ac,2, 0x1702800,19, 0x1702880,19, 0x1702a10,2, 0x1702a1c,1, 0x1702a50,2, 0x1702a5c,1, 0x1702c00,7, 0x1702c20,1, 0x1702c54,18, 0x1702ca0,1, 0x1702cd4,11, 0x1702e00,1, 0x1702e08,6, 0x1703180,3, 0x1704400,4, 0x1704440,4, 0x17045c0,1, 0x1704600,8, 0x1704800,18, 0x1704880,13, 0x17048f0,3, 0x1704900,18, 0x1704980,13, 0x17049f0,3, 0x1704e00,4, 0x1704e20,4, 0x1704e80,16, 0x1704f00,1, 0x1704f20,1, 0x1705020,2, 0x1705208,6, 0x1705228,10, 0x1705288,6, 0x17052a8,10, 0x1705600,32, 0x17058c0,8, 0x1705900,24, 0x17059b0,4, 0x1705aa0,2, 0x1705ac0,4, 0x1706200,19, 0x1706280,19, 0x1706400,14, 0x170643c,9, 0x1706464,14, 0x17064a0,2, 0x17064ac,2, 0x1706500,14, 0x170653c,9, 0x1706564,14, 0x17065a0,2, 0x17065ac,2, 0x1706800,19, 0x1706880,19, 0x1706a10,2, 0x1706a1c,1, 0x1706a50,2, 0x1706a5c,1, 0x1706c00,7, 0x1706c20,1, 0x1706c54,18, 0x1706ca0,1, 0x1706cd4,11, 0x1706e00,1, 0x1706e08,6, 0x1707180,3, 0x1709000,13, 0x170e000,19, 0x170ea00,10, 0x170ea80,3, 0x170f000,1, 0x170f008,5, 0x170f038,1, 0x170f044,1, 0x170f050,2, 0x170f060,8, 0x170f140,19, 0x170f190,4, 0x1710000,2, 0x171000c,2, 0x1710040,7, 0x1710100,3, 0x1710110,3, 0x1710120,5, 0x1710200,6, 0x1710240,5, 0x1710400,2, 0x171040c,2, 0x1710440,7, 0x1710500,3, 0x1710510,3, 0x1710520,5, 0x1710600,6, 0x1710640,5, 0x1710800,2, 0x171080c,2, 0x1710840,7, 0x1710900,3, 0x1710910,3, 0x1710920,5, 0x1710a00,6, 0x1710a40,5, 0x1710c00,2, 0x1710c0c,2, 0x1710c40,7, 0x1710d00,3, 0x1710d10,3, 0x1710d20,5, 0x1710e00,6, 0x1710e40,5, 0x1711000,2, 0x171100c,2, 0x1711040,7, 0x1711100,3, 0x1711110,3, 0x1711120,5, 0x1711200,6, 0x1711240,5, 0x1711400,2, 0x171140c,2, 0x1711440,7, 0x1711500,3, 0x1711510,3, 0x1711520,5, 0x1711600,6, 0x1711640,5, 0x1711800,2, 0x171180c,2, 0x1711840,7, 0x1711900,3, 0x1711910,3, 0x1711920,5, 0x1711a00,6, 0x1711a40,5, 0x1711c00,2, 0x1711c0c,2, 0x1711c40,7, 0x1711d00,3, 0x1711d10,3, 0x1711d20,5, 0x1711e00,6, 0x1711e40,5, 0x1712000,5, 0x1712040,9, 0x1712100,3, 0x1712200,1, 0x1712210,1, 0x1712220,1, 0x1712230,1, 0x1712240,1, 0x1712300,3, 0x1712314,1, 0x1712320,4, 0x1712400,5, 0x1712440,5, 0x1713000,80, 0x1713200,1, 0x1718000,7, 0x1718030,2, 0x1718040,7, 0x1718070,2, 0x1718100,2, 0x1718120,2, 0x1718140,2, 0x1718160,2, 0x1718180,9, 0x1718200,7, 0x1718230,2, 0x1718240,7, 0x1718270,2, 0x1718300,2, 0x1718320,2, 0x1718340,2, 0x1718360,2, 0x1718380,9, 0x1718400,11, 0x1718500,11, 0x1719000,3, 0x1719010,2, 0x171901c,5, 0x1719040,8, 0x1719080,3, 0x1719090,2, 0x171909c,5, 0x17190c0,8, 0x1719100,3, 0x1719110,2, 0x171911c,5, 0x1719140,8, 0x1719180,3, 0x1719190,2, 0x171919c,5, 0x17191c0,8, 0x1719200,7, 0x1719220,12, 0x1719280,7, 0x17192a0,12, 0x1719300,3, 0x1719310,1, 0x1719400,3, 0x1719410,2, 0x171941c,5, 0x1719440,8, 0x1719480,3, 0x1719490,2, 0x171949c,5, 0x17194c0,8, 0x1719500,3, 0x1719510,2, 0x171951c,5, 0x1719540,8, 0x1719580,3, 0x1719590,2, 0x171959c,5, 0x17195c0,8, 0x1719600,7, 0x1719620,12, 0x1719680,7, 0x17196a0,12, 0x1719700,3, 0x1719710,1, 0x1719804,1, 0x1719824,21, 0x1719880,16, 0x1719900,5, 0x1719920,11, 0x1719950,9, 0x1719980,22, 0x1719a00,22, 0x1719a80,22, 0x1719b00,22, 0x1719b80,22, 0x1719c00,22, 0x1719c80,22, 0x1719d00,22, 0x1719d80,3, 0x1720000,5, 0x1720018,5, 0x1720030,3, 0x1720044,3, 0x1720100,58, 0x17201f0,3, 0x1720280,3, 0x1720400,5, 0x1720418,5, 0x1720430,3, 0x1720444,3, 0x1720500,58, 0x17205f0,3, 0x1720680,3, 0x1721018,2, 0x1721100,2, 0x1721110,10, 0x1721140,2, 0x1721150,10, 0x1721208,1, 0x1721220,12, 0x1721280,1, 0x1721288,2, 0x1721400,4, 0x1722000,5, 0x1722018,5, 0x1722030,3, 0x1722044,3, 0x1722100,58, 0x17221f0,3, 0x1722280,3, 0x1722400,5, 0x1722418,5, 0x1722430,3, 0x1722444,3, 0x1722500,58, 0x17225f0,3, 0x1722680,3, 0x1723018,2, 0x1723100,2, 0x1723110,10, 0x1723140,2, 0x1723150,10, 0x1723208,1, 0x1723220,12, 0x1723280,1, 0x1723288,2, 0x1723400,4, 0x1724000,2, 0x172400c,1, 0x1724030,3, 0x1724040,2, 0x172404c,1, 0x1724070,3, 0x1724100,2, 0x172410c,1, 0x1724130,3, 0x1724140,2, 0x172414c,1, 0x1724170,3, 0x1724200,15, 0x1724280,15, 0x1724300,15, 0x1724380,15, 0x1724400,15, 0x1724480,15, 0x1724500,15, 0x1724580,15, 0x1724604,10, 0x1724700,2, 0x172470c,7, 0x1724740,1, 0x1724770,1, 0x17247c0,2, 0x17247d0,4, 0x1725000,3, 0x1725010,1, 0x172501c,3, 0x1725104,1, 0x1725110,4, 0x1725124,1, 0x1725130,4, 0x1725144,1, 0x1725150,4, 0x1725164,1, 0x1725170,5, 0x1725190,4, 0x1725a00,4, 0x1725c00,129, 0x1726000,37, 0x1726098,1, 0x1726100,37, 0x1726198,1, 0x1726200,37, 0x1726298,1, 0x1726300,37, 0x1726398,1, 0x1726400,37, 0x1726498,1, 0x1726500,37, 0x1726598,1, 0x1726600,37, 0x1726698,1, 0x1726700,37, 0x1726798,1, 0x172c000,91, 0x172c400,4, 0x172c440,15, 0x172c480,4, 0x172c4c0,15, 0x172c500,4, 0x172c540,15, 0x172c580,4, 0x172c5c0,15, 0x172c600,4, 0x172c640,10, 0x172c680,4, 0x172c6c0,10, 0x172c800,4, 0x172c840,33, 0x172ca00,13, 0x172ca80,1, 0x172ca88,8, 0x172cac0,6, 0x172cae0,1, 0x172cae8,2, 0x172cb04,14, 0x172cc00,4, 0x172ccc8,1, 0x172cfcc,3, 0x172cfe0,99, 0x172d400,4, 0x172d440,15, 0x172d480,4, 0x172d4c0,15, 0x172d500,4, 0x172d540,15, 0x172d580,4, 0x172d5c0,15, 0x172d600,4, 0x172d640,10, 0x172d680,4, 0x172d6c0,10, 0x172d800,4, 0x172d840,33, 0x172da00,13, 0x172da80,1, 0x172da88,8, 0x172dac0,6, 0x172dae0,1, 0x172dae8,2, 0x172db04,14, 0x172dc00,4, 0x172dcc8,1, 0x172dfcc,3, 0x172dfe0,27, 0x172f000,19, 0x172fa00,10, 0x172fa80,3, 0x172fb00,6, 0x1730000,51, 0x1730a00,10, 0x1730a80,3, 0x1731000,2, 0x173100c,4, 0x1731028,3, 0x1731038,4, 0x1731050,2, 0x1731080,4, 0x1731098,7, 0x1731120,4, 0x1731200,4, 0x1731214,7, 0x1731234,3, 0x1731280,8, 0x17312c0,5, 0x1731300,2, 0x173130c,3, 0x1731400,24, 0x1731464,2, 0x1731470,3, 0x1731500,25, 0x17315c0,8, 0x17315e8,5, 0x1731600,5, 0x1731618,1, 0x1731620,1, 0x1731628,1, 0x1731630,2, 0x1731640,2, 0x1731650,2, 0x1731690,4, 0x1731740,2, 0x1731760,6, 0x1731780,6, 0x17317a0,6, 0x17317c0,6, 0x17317e0,1, 0x1731800,2, 0x173180c,4, 0x1731828,3, 0x1731838,4, 0x1731850,2, 0x1731880,4, 0x1731898,7, 0x1731920,4, 0x1731a00,4, 0x1731a14,7, 0x1731a34,3, 0x1731a80,8, 0x1731ac0,5, 0x1731b00,2, 0x1731b0c,3, 0x1731c00,24, 0x1731c64,2, 0x1731c70,3, 0x1731d00,25, 0x1731dc0,8, 0x1731de8,5, 0x1731e00,5, 0x1731e18,1, 0x1731e20,1, 0x1731e28,1, 0x1731e30,2, 0x1731e40,2, 0x1731e50,2, 0x1731e90,4, 0x1731f40,2, 0x1731f60,6, 0x1731f80,6, 0x1731fa0,6, 0x1731fc0,6, 0x1731fe0,1, 0x1732000,19, 0x1732080,2, 0x17320b0,2, 0x17320c0,2, 0x1740000,11, 0x1740040,16, 0x1740084,5, 0x1740200,7, 0x1740220,6, 0x1740240,7, 0x1740260,6, 0x1740280,6, 0x17402a0,2, 0x17402ac,2, 0x17402c0,7, 0x17402e0,7, 0x1740300,2, 0x174030c,2, 0x1740320,6, 0x1740400,2, 0x1741000,19, 0x1742104,23, 0x1742180,7, 0x17421a0,6, 0x17421c0,7, 0x17421e0,6, 0x1742200,4, 0x1742220,4, 0x1742240,11, 0x1742270,32, 0x1742300,24, 0x1742380,20, 0x1742400,61, 0x1742500,25, 0x1742568,4, 0x1742580,2, 0x17425a0,1, 0x17425c0,11, 0x1742600,9, 0x1742640,3, 0x1742650,3, 0x1742664,3, 0x1742680,22, 0x1742800,11, 0x1743000,536, 0x1744104,23, 0x1744180,7, 0x17441a0,6, 0x17441c0,7, 0x17441e0,6, 0x1744200,4, 0x1744220,4, 0x1744240,11, 0x1744270,32, 0x1744300,24, 0x1744380,20, 0x1744400,61, 0x1744500,25, 0x1744568,4, 0x1744580,2, 0x17445a0,1, 0x17445c0,11, 0x1744600,9, 0x1744640,3, 0x1744650,3, 0x1744664,3, 0x1744680,22, 0x1744800,11, 0x1745000,536, 0x174a000,7, 0x174a048,8, 0x174a080,8, 0x174a100,7, 0x174a148,8, 0x174a180,8, 0x1750000,11, 0x1750040,16, 0x1750084,5, 0x1750200,7, 0x1750220,6, 0x1750240,7, 0x1750260,6, 0x1750280,6, 0x17502a0,2, 0x17502ac,2, 0x17502c0,7, 0x17502e0,7, 0x1750300,2, 0x175030c,2, 0x1750320,6, 0x1750400,2, 0x1751000,19, 0x1752104,23, 0x1752180,7, 0x17521a0,6, 0x17521c0,7, 0x17521e0,6, 0x1752200,4, 0x1752220,4, 0x1752240,11, 0x1752270,32, 0x1752300,24, 0x1752380,20, 0x1752400,61, 0x1752500,25, 0x1752568,4, 0x1752580,2, 0x17525a0,1, 0x17525c0,11, 0x1752600,9, 0x1752640,3, 0x1752650,3, 0x1752664,3, 0x1752680,22, 0x1752800,11, 0x1753000,536, 0x1754104,23, 0x1754180,7, 0x17541a0,6, 0x17541c0,7, 0x17541e0,6, 0x1754200,4, 0x1754220,4, 0x1754240,11, 0x1754270,32, 0x1754300,24, 0x1754380,20, 0x1754400,61, 0x1754500,25, 0x1754568,4, 0x1754580,2, 0x17545a0,1, 0x17545c0,11, 0x1754600,9, 0x1754640,3, 0x1754650,3, 0x1754664,3, 0x1754680,22, 0x1754800,11, 0x1755000,536, 0x175a000,7, 0x175a048,8, 0x175a080,8, 0x175a100,7, 0x175a148,8, 0x175a180,8, 0x1760400,4, 0x1760440,4, 0x17605c0,1, 0x1760600,8, 0x1760800,18, 0x1760880,13, 0x17608f0,3, 0x1760900,18, 0x1760980,13, 0x17609f0,3, 0x1760e00,4, 0x1760e20,4, 0x1760e80,16, 0x1760f00,1, 0x1760f20,1, 0x1761020,2, 0x1761208,6, 0x1761228,10, 0x1761288,6, 0x17612a8,10, 0x1761600,32, 0x17618c0,8, 0x1761900,24, 0x17619b0,4, 0x1761aa0,2, 0x1761ac0,4, 0x1762200,19, 0x1762280,19, 0x1762400,14, 0x176243c,9, 0x1762464,14, 0x17624a0,2, 0x17624ac,2, 0x1762500,14, 0x176253c,9, 0x1762564,14, 0x17625a0,2, 0x17625ac,2, 0x1762800,19, 0x1762880,19, 0x1762a10,2, 0x1762a1c,1, 0x1762a50,2, 0x1762a5c,1, 0x1762c00,7, 0x1762c20,1, 0x1762c54,18, 0x1762ca0,1, 0x1762cd4,11, 0x1762e00,1, 0x1762e08,6, 0x1763180,3, 0x1764400,4, 0x1764440,4, 0x17645c0,1, 0x1764600,8, 0x1764800,18, 0x1764880,13, 0x17648f0,3, 0x1764900,18, 0x1764980,13, 0x17649f0,3, 0x1764e00,4, 0x1764e20,4, 0x1764e80,16, 0x1764f00,1, 0x1764f20,1, 0x1765020,2, 0x1765208,6, 0x1765228,10, 0x1765288,6, 0x17652a8,10, 0x1765600,32, 0x17658c0,8, 0x1765900,24, 0x17659b0,4, 0x1765aa0,2, 0x1765ac0,4, 0x1766200,19, 0x1766280,19, 0x1766400,14, 0x176643c,9, 0x1766464,14, 0x17664a0,2, 0x17664ac,2, 0x1766500,14, 0x176653c,9, 0x1766564,14, 0x17665a0,2, 0x17665ac,2, 0x1766800,19, 0x1766880,19, 0x1766a10,2, 0x1766a1c,1, 0x1766a50,2, 0x1766a5c,1, 0x1766c00,7, 0x1766c20,1, 0x1766c54,18, 0x1766ca0,1, 0x1766cd4,11, 0x1766e00,1, 0x1766e08,6, 0x1767180,3, 0x1769000,13, 0x176e000,19, 0x176ea00,10, 0x176ea80,3, 0x176f000,1, 0x176f008,5, 0x176f038,1, 0x176f044,1, 0x176f050,2, 0x176f060,8, 0x176f140,19, 0x176f190,4, 0x1770000,2, 0x177000c,2, 0x1770040,7, 0x1770100,3, 0x1770110,3, 0x1770120,5, 0x1770200,6, 0x1770240,5, 0x1770400,2, 0x177040c,2, 0x1770440,7, 0x1770500,3, 0x1770510,3, 0x1770520,5, 0x1770600,6, 0x1770640,5, 0x1770800,2, 0x177080c,2, 0x1770840,7, 0x1770900,3, 0x1770910,3, 0x1770920,5, 0x1770a00,6, 0x1770a40,5, 0x1770c00,2, 0x1770c0c,2, 0x1770c40,7, 0x1770d00,3, 0x1770d10,3, 0x1770d20,5, 0x1770e00,6, 0x1770e40,5, 0x1771000,2, 0x177100c,2, 0x1771040,7, 0x1771100,3, 0x1771110,3, 0x1771120,5, 0x1771200,6, 0x1771240,5, 0x1771400,2, 0x177140c,2, 0x1771440,7, 0x1771500,3, 0x1771510,3, 0x1771520,5, 0x1771600,6, 0x1771640,5, 0x1771800,2, 0x177180c,2, 0x1771840,7, 0x1771900,3, 0x1771910,3, 0x1771920,5, 0x1771a00,6, 0x1771a40,5, 0x1771c00,2, 0x1771c0c,2, 0x1771c40,7, 0x1771d00,3, 0x1771d10,3, 0x1771d20,5, 0x1771e00,6, 0x1771e40,5, 0x1772000,5, 0x1772040,9, 0x1772100,3, 0x1772200,1, 0x1772210,1, 0x1772220,1, 0x1772230,1, 0x1772240,1, 0x1772300,3, 0x1772314,1, 0x1772320,4, 0x1772400,5, 0x1772440,5, 0x1773000,80, 0x1773200,1, 0x1778000,7, 0x1778030,2, 0x1778040,7, 0x1778070,2, 0x1778100,2, 0x1778120,2, 0x1778140,2, 0x1778160,2, 0x1778180,9, 0x1778200,7, 0x1778230,2, 0x1778240,7, 0x1778270,2, 0x1778300,2, 0x1778320,2, 0x1778340,2, 0x1778360,2, 0x1778380,9, 0x1778400,11, 0x1778500,11, 0x1779000,3, 0x1779010,2, 0x177901c,5, 0x1779040,8, 0x1779080,3, 0x1779090,2, 0x177909c,5, 0x17790c0,8, 0x1779100,3, 0x1779110,2, 0x177911c,5, 0x1779140,8, 0x1779180,3, 0x1779190,2, 0x177919c,5, 0x17791c0,8, 0x1779200,7, 0x1779220,12, 0x1779280,7, 0x17792a0,12, 0x1779300,3, 0x1779310,1, 0x1779400,3, 0x1779410,2, 0x177941c,5, 0x1779440,8, 0x1779480,3, 0x1779490,2, 0x177949c,5, 0x17794c0,8, 0x1779500,3, 0x1779510,2, 0x177951c,5, 0x1779540,8, 0x1779580,3, 0x1779590,2, 0x177959c,5, 0x17795c0,8, 0x1779600,7, 0x1779620,12, 0x1779680,7, 0x17796a0,12, 0x1779700,3, 0x1779710,1, 0x1779804,1, 0x1779824,21, 0x1779880,16, 0x1779900,5, 0x1779920,11, 0x1779950,9, 0x1779980,22, 0x1779a00,22, 0x1779a80,22, 0x1779b00,22, 0x1779b80,22, 0x1779c00,22, 0x1779c80,22, 0x1779d00,22, 0x1779d80,3, 0x1780000,5, 0x1780018,5, 0x1780030,3, 0x1780044,3, 0x1780100,58, 0x17801f0,3, 0x1780280,3, 0x1780400,5, 0x1780418,5, 0x1780430,3, 0x1780444,3, 0x1780500,58, 0x17805f0,3, 0x1780680,3, 0x1781018,2, 0x1781100,2, 0x1781110,10, 0x1781140,2, 0x1781150,10, 0x1781208,1, 0x1781220,12, 0x1781280,1, 0x1781288,2, 0x1781400,4, 0x1782000,5, 0x1782018,5, 0x1782030,3, 0x1782044,3, 0x1782100,58, 0x17821f0,3, 0x1782280,3, 0x1782400,5, 0x1782418,5, 0x1782430,3, 0x1782444,3, 0x1782500,58, 0x17825f0,3, 0x1782680,3, 0x1783018,2, 0x1783100,2, 0x1783110,10, 0x1783140,2, 0x1783150,10, 0x1783208,1, 0x1783220,12, 0x1783280,1, 0x1783288,2, 0x1783400,4, 0x1784000,2, 0x178400c,1, 0x1784030,3, 0x1784040,2, 0x178404c,1, 0x1784070,3, 0x1784100,2, 0x178410c,1, 0x1784130,3, 0x1784140,2, 0x178414c,1, 0x1784170,3, 0x1784200,15, 0x1784280,15, 0x1784300,15, 0x1784380,15, 0x1784400,15, 0x1784480,15, 0x1784500,15, 0x1784580,15, 0x1784604,10, 0x1784700,2, 0x178470c,7, 0x1784740,1, 0x1784770,1, 0x17847c0,2, 0x17847d0,4, 0x1785000,3, 0x1785010,1, 0x178501c,3, 0x1785104,1, 0x1785110,4, 0x1785124,1, 0x1785130,4, 0x1785144,1, 0x1785150,4, 0x1785164,1, 0x1785170,5, 0x1785190,4, 0x1785a00,4, 0x1785c00,129, 0x1786000,37, 0x1786098,1, 0x1786100,37, 0x1786198,1, 0x1786200,37, 0x1786298,1, 0x1786300,37, 0x1786398,1, 0x1786400,37, 0x1786498,1, 0x1786500,37, 0x1786598,1, 0x1786600,37, 0x1786698,1, 0x1786700,37, 0x1786798,1, 0x178c000,91, 0x178c400,4, 0x178c440,15, 0x178c480,4, 0x178c4c0,15, 0x178c500,4, 0x178c540,15, 0x178c580,4, 0x178c5c0,15, 0x178c600,4, 0x178c640,10, 0x178c680,4, 0x178c6c0,10, 0x178c800,4, 0x178c840,33, 0x178ca00,13, 0x178ca80,1, 0x178ca88,8, 0x178cac0,6, 0x178cae0,1, 0x178cae8,2, 0x178cb04,14, 0x178cc00,4, 0x178ccc8,1, 0x178cfcc,3, 0x178cfe0,99, 0x178d400,4, 0x178d440,15, 0x178d480,4, 0x178d4c0,15, 0x178d500,4, 0x178d540,15, 0x178d580,4, 0x178d5c0,15, 0x178d600,4, 0x178d640,10, 0x178d680,4, 0x178d6c0,10, 0x178d800,4, 0x178d840,33, 0x178da00,13, 0x178da80,1, 0x178da88,8, 0x178dac0,6, 0x178dae0,1, 0x178dae8,2, 0x178db04,14, 0x178dc00,4, 0x178dcc8,1, 0x178dfcc,3, 0x178dfe0,27, 0x178f000,19, 0x178fa00,10, 0x178fa80,3, 0x178fb00,6, 0x1790000,51, 0x1790a00,10, 0x1790a80,3, 0x1791000,2, 0x179100c,4, 0x1791028,3, 0x1791038,4, 0x1791050,2, 0x1791080,4, 0x1791098,7, 0x1791120,4, 0x1791200,4, 0x1791214,7, 0x1791234,3, 0x1791280,8, 0x17912c0,5, 0x1791300,2, 0x179130c,3, 0x1791400,24, 0x1791464,2, 0x1791470,3, 0x1791500,25, 0x17915c0,8, 0x17915e8,5, 0x1791600,5, 0x1791618,1, 0x1791620,1, 0x1791628,1, 0x1791630,2, 0x1791640,2, 0x1791650,2, 0x1791690,4, 0x1791740,2, 0x1791760,6, 0x1791780,6, 0x17917a0,6, 0x17917c0,6, 0x17917e0,1, 0x1791800,2, 0x179180c,4, 0x1791828,3, 0x1791838,4, 0x1791850,2, 0x1791880,4, 0x1791898,7, 0x1791920,4, 0x1791a00,4, 0x1791a14,7, 0x1791a34,3, 0x1791a80,8, 0x1791ac0,5, 0x1791b00,2, 0x1791b0c,3, 0x1791c00,24, 0x1791c64,2, 0x1791c70,3, 0x1791d00,25, 0x1791dc0,8, 0x1791de8,5, 0x1791e00,5, 0x1791e18,1, 0x1791e20,1, 0x1791e28,1, 0x1791e30,2, 0x1791e40,2, 0x1791e50,2, 0x1791e90,4, 0x1791f40,2, 0x1791f60,6, 0x1791f80,6, 0x1791fa0,6, 0x1791fc0,6, 0x1791fe0,1, 0x1792000,19, 0x1792080,2, 0x17920b0,2, 0x17920c0,2, 0x17a0000,11, 0x17a0040,16, 0x17a0084,5, 0x17a0200,7, 0x17a0220,6, 0x17a0240,7, 0x17a0260,6, 0x17a0280,6, 0x17a02a0,2, 0x17a02ac,2, 0x17a02c0,7, 0x17a02e0,7, 0x17a0300,2, 0x17a030c,2, 0x17a0320,6, 0x17a0400,2, 0x17a1000,19, 0x17a2104,23, 0x17a2180,7, 0x17a21a0,6, 0x17a21c0,7, 0x17a21e0,6, 0x17a2200,4, 0x17a2220,4, 0x17a2240,11, 0x17a2270,32, 0x17a2300,24, 0x17a2380,20, 0x17a2400,61, 0x17a2500,25, 0x17a2568,4, 0x17a2580,2, 0x17a25a0,1, 0x17a25c0,11, 0x17a2600,9, 0x17a2640,3, 0x17a2650,3, 0x17a2664,3, 0x17a2680,22, 0x17a2800,11, 0x17a3000,536, 0x17a4104,23, 0x17a4180,7, 0x17a41a0,6, 0x17a41c0,7, 0x17a41e0,6, 0x17a4200,4, 0x17a4220,4, 0x17a4240,11, 0x17a4270,32, 0x17a4300,24, 0x17a4380,20, 0x17a4400,61, 0x17a4500,25, 0x17a4568,4, 0x17a4580,2, 0x17a45a0,1, 0x17a45c0,11, 0x17a4600,9, 0x17a4640,3, 0x17a4650,3, 0x17a4664,3, 0x17a4680,22, 0x17a4800,11, 0x17a5000,536, 0x17aa000,7, 0x17aa048,8, 0x17aa080,8, 0x17aa100,7, 0x17aa148,8, 0x17aa180,8, 0x17b0000,11, 0x17b0040,16, 0x17b0084,5, 0x17b0200,7, 0x17b0220,6, 0x17b0240,7, 0x17b0260,6, 0x17b0280,6, 0x17b02a0,2, 0x17b02ac,2, 0x17b02c0,7, 0x17b02e0,7, 0x17b0300,2, 0x17b030c,2, 0x17b0320,6, 0x17b0400,2, 0x17b1000,19, 0x17b2104,23, 0x17b2180,7, 0x17b21a0,6, 0x17b21c0,7, 0x17b21e0,6, 0x17b2200,4, 0x17b2220,4, 0x17b2240,11, 0x17b2270,32, 0x17b2300,24, 0x17b2380,20, 0x17b2400,61, 0x17b2500,25, 0x17b2568,4, 0x17b2580,2, 0x17b25a0,1, 0x17b25c0,11, 0x17b2600,9, 0x17b2640,3, 0x17b2650,3, 0x17b2664,3, 0x17b2680,22, 0x17b2800,11, 0x17b3000,536, 0x17b4104,23, 0x17b4180,7, 0x17b41a0,6, 0x17b41c0,7, 0x17b41e0,6, 0x17b4200,4, 0x17b4220,4, 0x17b4240,11, 0x17b4270,32, 0x17b4300,24, 0x17b4380,20, 0x17b4400,61, 0x17b4500,25, 0x17b4568,4, 0x17b4580,2, 0x17b45a0,1, 0x17b45c0,11, 0x17b4600,9, 0x17b4640,3, 0x17b4650,3, 0x17b4664,3, 0x17b4680,22, 0x17b4800,11, 0x17b5000,536, 0x17ba000,7, 0x17ba048,8, 0x17ba080,8, 0x17ba100,7, 0x17ba148,8, 0x17ba180,8, 0x17c0400,4, 0x17c0440,4, 0x17c05c0,1, 0x17c0600,8, 0x17c0800,18, 0x17c0880,13, 0x17c08f0,3, 0x17c0900,18, 0x17c0980,13, 0x17c09f0,3, 0x17c0e00,4, 0x17c0e20,4, 0x17c0e80,16, 0x17c0f00,1, 0x17c0f20,1, 0x17c1020,2, 0x17c1208,6, 0x17c1228,10, 0x17c1288,6, 0x17c12a8,10, 0x17c1600,32, 0x17c18c0,8, 0x17c1900,24, 0x17c19b0,4, 0x17c1aa0,2, 0x17c1ac0,4, 0x17c2200,19, 0x17c2280,19, 0x17c2400,14, 0x17c243c,9, 0x17c2464,14, 0x17c24a0,2, 0x17c24ac,2, 0x17c2500,14, 0x17c253c,9, 0x17c2564,14, 0x17c25a0,2, 0x17c25ac,2, 0x17c2800,19, 0x17c2880,19, 0x17c2a10,2, 0x17c2a1c,1, 0x17c2a50,2, 0x17c2a5c,1, 0x17c2c00,7, 0x17c2c20,1, 0x17c2c54,18, 0x17c2ca0,1, 0x17c2cd4,11, 0x17c2e00,1, 0x17c2e08,6, 0x17c3180,3, 0x17c4400,4, 0x17c4440,4, 0x17c45c0,1, 0x17c4600,8, 0x17c4800,18, 0x17c4880,13, 0x17c48f0,3, 0x17c4900,18, 0x17c4980,13, 0x17c49f0,3, 0x17c4e00,4, 0x17c4e20,4, 0x17c4e80,16, 0x17c4f00,1, 0x17c4f20,1, 0x17c5020,2, 0x17c5208,6, 0x17c5228,10, 0x17c5288,6, 0x17c52a8,10, 0x17c5600,32, 0x17c58c0,8, 0x17c5900,24, 0x17c59b0,4, 0x17c5aa0,2, 0x17c5ac0,4, 0x17c6200,19, 0x17c6280,19, 0x17c6400,14, 0x17c643c,9, 0x17c6464,14, 0x17c64a0,2, 0x17c64ac,2, 0x17c6500,14, 0x17c653c,9, 0x17c6564,14, 0x17c65a0,2, 0x17c65ac,2, 0x17c6800,19, 0x17c6880,19, 0x17c6a10,2, 0x17c6a1c,1, 0x17c6a50,2, 0x17c6a5c,1, 0x17c6c00,7, 0x17c6c20,1, 0x17c6c54,18, 0x17c6ca0,1, 0x17c6cd4,11, 0x17c6e00,1, 0x17c6e08,6, 0x17c7180,3, 0x17c9000,13, 0x17ce000,19, 0x17cea00,10, 0x17cea80,3, 0x17cf000,1, 0x17cf008,5, 0x17cf038,1, 0x17cf044,1, 0x17cf050,2, 0x17cf060,8, 0x17cf140,19, 0x17cf190,4, 0x17d0000,2, 0x17d000c,2, 0x17d0040,7, 0x17d0100,3, 0x17d0110,3, 0x17d0120,5, 0x17d0200,6, 0x17d0240,5, 0x17d0400,2, 0x17d040c,2, 0x17d0440,7, 0x17d0500,3, 0x17d0510,3, 0x17d0520,5, 0x17d0600,6, 0x17d0640,5, 0x17d0800,2, 0x17d080c,2, 0x17d0840,7, 0x17d0900,3, 0x17d0910,3, 0x17d0920,5, 0x17d0a00,6, 0x17d0a40,5, 0x17d0c00,2, 0x17d0c0c,2, 0x17d0c40,7, 0x17d0d00,3, 0x17d0d10,3, 0x17d0d20,5, 0x17d0e00,6, 0x17d0e40,5, 0x17d1000,2, 0x17d100c,2, 0x17d1040,7, 0x17d1100,3, 0x17d1110,3, 0x17d1120,5, 0x17d1200,6, 0x17d1240,5, 0x17d1400,2, 0x17d140c,2, 0x17d1440,7, 0x17d1500,3, 0x17d1510,3, 0x17d1520,5, 0x17d1600,6, 0x17d1640,5, 0x17d1800,2, 0x17d180c,2, 0x17d1840,7, 0x17d1900,3, 0x17d1910,3, 0x17d1920,5, 0x17d1a00,6, 0x17d1a40,5, 0x17d1c00,2, 0x17d1c0c,2, 0x17d1c40,7, 0x17d1d00,3, 0x17d1d10,3, 0x17d1d20,5, 0x17d1e00,6, 0x17d1e40,5, 0x17d2000,5, 0x17d2040,9, 0x17d2100,3, 0x17d2200,1, 0x17d2210,1, 0x17d2220,1, 0x17d2230,1, 0x17d2240,1, 0x17d2300,3, 0x17d2314,1, 0x17d2320,4, 0x17d2400,5, 0x17d2440,5, 0x17d3000,80, 0x17d3200,1, 0x17d8000,7, 0x17d8030,2, 0x17d8040,7, 0x17d8070,2, 0x17d8100,2, 0x17d8120,2, 0x17d8140,2, 0x17d8160,2, 0x17d8180,9, 0x17d8200,7, 0x17d8230,2, 0x17d8240,7, 0x17d8270,2, 0x17d8300,2, 0x17d8320,2, 0x17d8340,2, 0x17d8360,2, 0x17d8380,9, 0x17d8400,11, 0x17d8500,11, 0x17d9000,3, 0x17d9010,2, 0x17d901c,5, 0x17d9040,8, 0x17d9080,3, 0x17d9090,2, 0x17d909c,5, 0x17d90c0,8, 0x17d9100,3, 0x17d9110,2, 0x17d911c,5, 0x17d9140,8, 0x17d9180,3, 0x17d9190,2, 0x17d919c,5, 0x17d91c0,8, 0x17d9200,7, 0x17d9220,12, 0x17d9280,7, 0x17d92a0,12, 0x17d9300,3, 0x17d9310,1, 0x17d9400,3, 0x17d9410,2, 0x17d941c,5, 0x17d9440,8, 0x17d9480,3, 0x17d9490,2, 0x17d949c,5, 0x17d94c0,8, 0x17d9500,3, 0x17d9510,2, 0x17d951c,5, 0x17d9540,8, 0x17d9580,3, 0x17d9590,2, 0x17d959c,5, 0x17d95c0,8, 0x17d9600,7, 0x17d9620,12, 0x17d9680,7, 0x17d96a0,12, 0x17d9700,3, 0x17d9710,1, 0x17d9804,1, 0x17d9824,21, 0x17d9880,16, 0x17d9900,5, 0x17d9920,11, 0x17d9950,9, 0x17d9980,22, 0x17d9a00,22, 0x17d9a80,22, 0x17d9b00,22, 0x17d9b80,22, 0x17d9c00,22, 0x17d9c80,22, 0x17d9d00,22, 0x17d9d80,3, 0x17e0000,5, 0x17e0018,5, 0x17e0030,3, 0x17e0044,3, 0x17e0100,58, 0x17e01f0,3, 0x17e0280,3, 0x17e0400,5, 0x17e0418,5, 0x17e0430,3, 0x17e0444,3, 0x17e0500,58, 0x17e05f0,3, 0x17e0680,3, 0x17e1018,2, 0x17e1100,2, 0x17e1110,10, 0x17e1140,2, 0x17e1150,10, 0x17e1208,1, 0x17e1220,12, 0x17e1280,1, 0x17e1288,2, 0x17e1400,4, 0x17e2000,5, 0x17e2018,5, 0x17e2030,3, 0x17e2044,3, 0x17e2100,58, 0x17e21f0,3, 0x17e2280,3, 0x17e2400,5, 0x17e2418,5, 0x17e2430,3, 0x17e2444,3, 0x17e2500,58, 0x17e25f0,3, 0x17e2680,3, 0x17e3018,2, 0x17e3100,2, 0x17e3110,10, 0x17e3140,2, 0x17e3150,10, 0x17e3208,1, 0x17e3220,12, 0x17e3280,1, 0x17e3288,2, 0x17e3400,4, 0x17e4000,2, 0x17e400c,1, 0x17e4030,3, 0x17e4040,2, 0x17e404c,1, 0x17e4070,3, 0x17e4100,2, 0x17e410c,1, 0x17e4130,3, 0x17e4140,2, 0x17e414c,1, 0x17e4170,3, 0x17e4200,15, 0x17e4280,15, 0x17e4300,15, 0x17e4380,15, 0x17e4400,15, 0x17e4480,15, 0x17e4500,15, 0x17e4580,15, 0x17e4604,10, 0x17e4700,2, 0x17e470c,7, 0x17e4740,1, 0x17e4770,1, 0x17e47c0,2, 0x17e47d0,4, 0x17e5000,3, 0x17e5010,1, 0x17e501c,3, 0x17e5104,1, 0x17e5110,4, 0x17e5124,1, 0x17e5130,4, 0x17e5144,1, 0x17e5150,4, 0x17e5164,1, 0x17e5170,5, 0x17e5190,4, 0x17e5a00,4, 0x17e5c00,129, 0x17e6000,37, 0x17e6098,1, 0x17e6100,37, 0x17e6198,1, 0x17e6200,37, 0x17e6298,1, 0x17e6300,37, 0x17e6398,1, 0x17e6400,37, 0x17e6498,1, 0x17e6500,37, 0x17e6598,1, 0x17e6600,37, 0x17e6698,1, 0x17e6700,37, 0x17e6798,1, 0x17ec000,91, 0x17ec400,4, 0x17ec440,15, 0x17ec480,4, 0x17ec4c0,15, 0x17ec500,4, 0x17ec540,15, 0x17ec580,4, 0x17ec5c0,15, 0x17ec600,4, 0x17ec640,10, 0x17ec680,4, 0x17ec6c0,10, 0x17ec800,4, 0x17ec840,33, 0x17eca00,13, 0x17eca80,1, 0x17eca88,8, 0x17ecac0,6, 0x17ecae0,1, 0x17ecae8,2, 0x17ecb04,14, 0x17ecc00,4, 0x17eccc8,1, 0x17ecfcc,3, 0x17ecfe0,99, 0x17ed400,4, 0x17ed440,15, 0x17ed480,4, 0x17ed4c0,15, 0x17ed500,4, 0x17ed540,15, 0x17ed580,4, 0x17ed5c0,15, 0x17ed600,4, 0x17ed640,10, 0x17ed680,4, 0x17ed6c0,10, 0x17ed800,4, 0x17ed840,33, 0x17eda00,13, 0x17eda80,1, 0x17eda88,8, 0x17edac0,6, 0x17edae0,1, 0x17edae8,2, 0x17edb04,14, 0x17edc00,4, 0x17edcc8,1, 0x17edfcc,3, 0x17edfe0,27, 0x17ef000,19, 0x17efa00,10, 0x17efa80,3, 0x17efb00,6, 0x17f0000,51, 0x17f0a00,10, 0x17f0a80,3, 0x17f1000,2, 0x17f100c,4, 0x17f1028,3, 0x17f1038,4, 0x17f1050,2, 0x17f1080,4, 0x17f1098,7, 0x17f1120,4, 0x17f1200,4, 0x17f1214,7, 0x17f1234,3, 0x17f1280,8, 0x17f12c0,5, 0x17f1300,2, 0x17f130c,3, 0x17f1400,24, 0x17f1464,2, 0x17f1470,3, 0x17f1500,25, 0x17f15c0,8, 0x17f15e8,5, 0x17f1600,5, 0x17f1618,1, 0x17f1620,1, 0x17f1628,1, 0x17f1630,2, 0x17f1640,2, 0x17f1650,2, 0x17f1690,4, 0x17f1740,2, 0x17f1760,6, 0x17f1780,6, 0x17f17a0,6, 0x17f17c0,6, 0x17f17e0,1, 0x17f1800,2, 0x17f180c,4, 0x17f1828,3, 0x17f1838,4, 0x17f1850,2, 0x17f1880,4, 0x17f1898,7, 0x17f1920,4, 0x17f1a00,4, 0x17f1a14,7, 0x17f1a34,3, 0x17f1a80,8, 0x17f1ac0,5, 0x17f1b00,2, 0x17f1b0c,3, 0x17f1c00,24, 0x17f1c64,2, 0x17f1c70,3, 0x17f1d00,25, 0x17f1dc0,8, 0x17f1de8,5, 0x17f1e00,5, 0x17f1e18,1, 0x17f1e20,1, 0x17f1e28,1, 0x17f1e30,2, 0x17f1e40,2, 0x17f1e50,2, 0x17f1e90,4, 0x17f1f40,2, 0x17f1f60,6, 0x17f1f80,6, 0x17f1fa0,6, 0x17f1fc0,6, 0x17f1fe0,1, 0x17f2000,19, 0x17f2080,2, 0x17f20b0,2, 0x17f20c0,2, 0x2000004,5, 0x2000020,3, 0x2000030,3, 0x2000040,13, 0x2000078,4, 0x200009c,25, 0x2000104,5, 0x2000120,3, 0x2000130,3, 0x2000140,13, 0x2000178,4, 0x200019c,25, 0x2000204,5, 0x2000220,3, 0x2000230,3, 0x2000240,13, 0x2000278,4, 0x200029c,25, 0x2000304,5, 0x2000320,3, 0x2000330,3, 0x2000340,13, 0x2000378,4, 0x200039c,25, 0x2000600,4, 0x2000c00,24, 0x2000c80,24, 0x2000d00,24, 0x2000d80,24, 0x2000e00,4, 0x2000e20,4, 0x2000e40,4, 0x2000e60,4, 0x2000e80,39, 0x2000f20,7, 0x2000f40,7, 0x2000f60,7, 0x2001000,12, 0x2001200,1, 0x2001218,2, 0x200122c,1, 0x2001280,1, 0x2001298,2, 0x20012ac,1, 0x2001300,1, 0x2001318,2, 0x200132c,1, 0x2001380,1, 0x2001398,2, 0x20013ac,1, 0x2001400,4, 0x2001420,2, 0x200142c,1, 0x2001480,4, 0x20014a0,2, 0x20014ac,1, 0x2001500,4, 0x2001520,2, 0x200152c,1, 0x2001580,4, 0x20015a0,2, 0x20015ac,1, 0x2001600,4, 0x2001640,4, 0x2001680,4, 0x20016c0,4, 0x2001700,7, 0x2001720,7, 0x2001740,7, 0x2001760,7, 0x2001780,4, 0x200179c,11, 0x20017d0,2, 0x20017e0,2, 0x20017f0,2, 0x2001900,44, 0x2002000,7, 0x2002020,4, 0x2002040,4, 0x2002060,7, 0x2002080,7, 0x20020a0,4, 0x20020c0,4, 0x20020e0,7, 0x2002100,7, 0x2002120,4, 0x2002140,4, 0x2002160,7, 0x2002180,7, 0x20021a0,4, 0x20021c0,4, 0x20021e0,7, 0x2002200,32, 0x2002b00,1, 0x2002b20,1, 0x2002b28,4, 0x2002b40,1, 0x2002b60,1, 0x2002b68,4, 0x2002b80,1, 0x2002ba0,1, 0x2002ba8,4, 0x2002bc0,1, 0x2002be0,1, 0x2002be8,4, 0x2002c00,7, 0x2002c20,1, 0x2002c54,18, 0x2002ca0,1, 0x2002cd4,18, 0x2002d20,1, 0x2002d54,18, 0x2002da0,1, 0x2002dd4,12, 0x2002e08,6, 0x2003100,7, 0x2003120,7, 0x2003140,7, 0x2003160,7, 0x2003180,3, 0x2004004,5, 0x2004020,3, 0x2004030,3, 0x2004040,13, 0x2004078,4, 0x200409c,25, 0x2004104,5, 0x2004120,3, 0x2004130,3, 0x2004140,13, 0x2004178,4, 0x200419c,25, 0x2004204,5, 0x2004220,3, 0x2004230,3, 0x2004240,13, 0x2004278,4, 0x200429c,25, 0x2004304,5, 0x2004320,3, 0x2004330,3, 0x2004340,13, 0x2004378,4, 0x200439c,25, 0x2004600,4, 0x2004c00,24, 0x2004c80,24, 0x2004d00,24, 0x2004d80,24, 0x2004e00,4, 0x2004e20,4, 0x2004e40,4, 0x2004e60,4, 0x2004e80,39, 0x2004f20,7, 0x2004f40,7, 0x2004f60,7, 0x2005000,12, 0x2005200,1, 0x2005218,2, 0x200522c,1, 0x2005280,1, 0x2005298,2, 0x20052ac,1, 0x2005300,1, 0x2005318,2, 0x200532c,1, 0x2005380,1, 0x2005398,2, 0x20053ac,1, 0x2005400,4, 0x2005420,2, 0x200542c,1, 0x2005480,4, 0x20054a0,2, 0x20054ac,1, 0x2005500,4, 0x2005520,2, 0x200552c,1, 0x2005580,4, 0x20055a0,2, 0x20055ac,1, 0x2005600,4, 0x2005640,4, 0x2005680,4, 0x20056c0,4, 0x2005700,7, 0x2005720,7, 0x2005740,7, 0x2005760,7, 0x2005780,4, 0x200579c,11, 0x20057d0,2, 0x20057e0,2, 0x20057f0,2, 0x2005900,44, 0x2006000,7, 0x2006020,4, 0x2006040,4, 0x2006060,7, 0x2006080,7, 0x20060a0,4, 0x20060c0,4, 0x20060e0,7, 0x2006100,7, 0x2006120,4, 0x2006140,4, 0x2006160,7, 0x2006180,7, 0x20061a0,4, 0x20061c0,4, 0x20061e0,7, 0x2006200,32, 0x2006b00,1, 0x2006b20,1, 0x2006b28,4, 0x2006b40,1, 0x2006b60,1, 0x2006b68,4, 0x2006b80,1, 0x2006ba0,1, 0x2006ba8,4, 0x2006bc0,1, 0x2006be0,1, 0x2006be8,4, 0x2006c00,7, 0x2006c20,1, 0x2006c54,18, 0x2006ca0,1, 0x2006cd4,18, 0x2006d20,1, 0x2006d54,18, 0x2006da0,1, 0x2006dd4,12, 0x2006e08,6, 0x2007100,7, 0x2007120,7, 0x2007140,7, 0x2007160,7, 0x2007180,3, 0x2008000,10, 0x2008080,3, 0x20080c0,1, 0x2008100,21, 0x2008180,13, 0x20081c4,7, 0x20081e4,7, 0x2008204,7, 0x2008224,8, 0x2009000,7, 0x2009030,2, 0x2009040,7, 0x2009070,2, 0x2009100,2, 0x2009120,2, 0x2009140,2, 0x2009160,2, 0x2009180,9, 0x2009200,7, 0x2009230,2, 0x2009240,7, 0x2009270,2, 0x2009300,2, 0x2009320,2, 0x2009340,2, 0x2009360,2, 0x2009380,9, 0x2009400,11, 0x2009500,11, 0x200a000,3, 0x200a010,2, 0x200a01c,5, 0x200a040,8, 0x200a080,3, 0x200a090,2, 0x200a09c,5, 0x200a0c0,8, 0x200a100,3, 0x200a110,2, 0x200a11c,5, 0x200a140,8, 0x200a180,3, 0x200a190,2, 0x200a19c,5, 0x200a1c0,8, 0x200a200,7, 0x200a220,12, 0x200a280,7, 0x200a2a0,12, 0x200a300,3, 0x200a310,1, 0x200a400,3, 0x200a410,2, 0x200a41c,5, 0x200a440,8, 0x200a480,3, 0x200a490,2, 0x200a49c,5, 0x200a4c0,8, 0x200a500,3, 0x200a510,2, 0x200a51c,5, 0x200a540,8, 0x200a580,3, 0x200a590,2, 0x200a59c,5, 0x200a5c0,8, 0x200a600,7, 0x200a620,12, 0x200a680,7, 0x200a6a0,12, 0x200a700,3, 0x200a710,1, 0x200a804,1, 0x200a824,21, 0x200a880,16, 0x200a900,5, 0x200a920,11, 0x200a950,9, 0x200a980,22, 0x200aa00,22, 0x200aa80,22, 0x200ab00,22, 0x200ab80,22, 0x200ac00,22, 0x200ac80,22, 0x200ad00,22, 0x200ad80,3, 0x200c000,16, 0x200c080,11, 0x200c100,11, 0x200c204,1, 0x200c224,21, 0x200c280,16, 0x200c300,11, 0x200c340,11, 0x200c800,21, 0x200c860,5, 0x200c880,6, 0x200c8a0,5, 0x200c8c0,6, 0x200c900,21, 0x200c960,5, 0x200c980,6, 0x200c9a0,5, 0x200c9c0,6, 0x200ca00,21, 0x200ca60,5, 0x200ca80,6, 0x200caa0,5, 0x200cac0,6, 0x200cb00,21, 0x200cb60,5, 0x200cb80,6, 0x200cba0,5, 0x200cbc0,6, 0x200cc00,9, 0x200cc48,7, 0x200cc68,2, 0x200cc74,9, 0x200cc9c,2, 0x200cd00,14, 0x200cd40,14, 0x200cd80,28, 0x200ce00,19, 0x200ce50,3, 0x200ce60,25, 0x200cec8,1, 0x200ced0,2, 0x200cee0,7, 0x200cf00,1, 0x200cf08,2, 0x200cffc,20, 0x200d050,25, 0x200d100,19, 0x200d150,25, 0x200d200,19, 0x200d250,25, 0x200d300,19, 0x200d350,25, 0x200d400,19, 0x200d450,25, 0x200d500,19, 0x200d550,25, 0x200d600,19, 0x200d650,25, 0x200d700,19, 0x200d750,25, 0x200d800,19, 0x200d850,25, 0x200d904,1, 0x200d914,10, 0x200d948,11, 0x200d980,2, 0x200d9a0,6, 0x200d9c0,2, 0x200d9cc,2, 0x200e000,35, 0x200ea00,10, 0x200ea80,3, 0x200eb00,6, 0x200f000,1, 0x200f008,5, 0x200f038,1, 0x200f044,1, 0x200f050,2, 0x200f100,13, 0x200f140,11, 0x200f170,12, 0x200f1a4,1, 0x200f200,104, 0x200f400,104, 0x200f600,104, 0x200f800,104, 0x2010000,13, 0x2010040,2, 0x2010054,4, 0x2010080,27, 0x2010100,12, 0x2010140,14, 0x2010180,28, 0x2010200,6, 0x2010240,6, 0x201025c,3, 0x2010280,5, 0x20102a0,8, 0x2010400,14, 0x2010440,14, 0x2010480,14, 0x20104c0,14, 0x2010540,3, 0x2010600,7, 0x2010620,14, 0x2010680,5, 0x20106a0,7, 0x2010800,13, 0x2010840,2, 0x2010854,4, 0x2010880,27, 0x2010900,12, 0x2010940,14, 0x2010980,28, 0x2010a00,6, 0x2010a40,6, 0x2010a5c,3, 0x2010a80,5, 0x2010aa0,8, 0x2010c00,14, 0x2010c40,14, 0x2010c80,14, 0x2010cc0,14, 0x2010d40,3, 0x2010e00,7, 0x2010e20,14, 0x2010e80,5, 0x2010ea0,7, 0x2011000,13, 0x2011040,2, 0x2011054,4, 0x2011080,27, 0x2011100,12, 0x2011140,14, 0x2011180,28, 0x2011200,6, 0x2011240,6, 0x201125c,3, 0x2011280,5, 0x20112a0,8, 0x2011400,14, 0x2011440,14, 0x2011480,14, 0x20114c0,14, 0x2011540,3, 0x2011600,7, 0x2011620,14, 0x2011680,5, 0x20116a0,7, 0x2011800,13, 0x2011840,2, 0x2011854,4, 0x2011880,27, 0x2011900,12, 0x2011940,14, 0x2011980,28, 0x2011a00,6, 0x2011a40,6, 0x2011a5c,3, 0x2011a80,5, 0x2011aa0,8, 0x2011c00,14, 0x2011c40,14, 0x2011c80,14, 0x2011cc0,14, 0x2011d40,3, 0x2011e00,7, 0x2011e20,14, 0x2011e80,5, 0x2011ea0,7, 0x2012000,8, 0x2012040,8, 0x2012080,1, 0x2012098,6, 0x2012100,10, 0x2012140,3, 0x2012150,2, 0x2012180,2, 0x2012200,6, 0x2012220,18, 0x2012280,4, 0x2012300,8, 0x2012400,2, 0x2012480,2, 0x2012800,28, 0x20129f0,4, 0x2013000,40, 0x2013100,64, 0x2013800,56, 0x2013be0,8, 0x2014000,13, 0x2014040,2, 0x2014054,4, 0x2014080,27, 0x2014100,12, 0x2014140,14, 0x2014180,28, 0x2014200,6, 0x2014240,6, 0x201425c,3, 0x2014280,5, 0x20142a0,8, 0x2014400,14, 0x2014440,14, 0x2014480,14, 0x20144c0,14, 0x2014540,3, 0x2014600,7, 0x2014620,14, 0x2014680,5, 0x20146a0,7, 0x2014800,13, 0x2014840,2, 0x2014854,4, 0x2014880,27, 0x2014900,12, 0x2014940,14, 0x2014980,28, 0x2014a00,6, 0x2014a40,6, 0x2014a5c,3, 0x2014a80,5, 0x2014aa0,8, 0x2014c00,14, 0x2014c40,14, 0x2014c80,14, 0x2014cc0,14, 0x2014d40,3, 0x2014e00,7, 0x2014e20,14, 0x2014e80,5, 0x2014ea0,7, 0x2015000,13, 0x2015040,2, 0x2015054,4, 0x2015080,27, 0x2015100,12, 0x2015140,14, 0x2015180,28, 0x2015200,6, 0x2015240,6, 0x201525c,3, 0x2015280,5, 0x20152a0,8, 0x2015400,14, 0x2015440,14, 0x2015480,14, 0x20154c0,14, 0x2015540,3, 0x2015600,7, 0x2015620,14, 0x2015680,5, 0x20156a0,7, 0x2015800,13, 0x2015840,2, 0x2015854,4, 0x2015880,27, 0x2015900,12, 0x2015940,14, 0x2015980,28, 0x2015a00,6, 0x2015a40,6, 0x2015a5c,3, 0x2015a80,5, 0x2015aa0,8, 0x2015c00,14, 0x2015c40,14, 0x2015c80,14, 0x2015cc0,14, 0x2015d40,3, 0x2015e00,7, 0x2015e20,14, 0x2015e80,5, 0x2015ea0,7, 0x2016000,8, 0x2016040,8, 0x2016080,1, 0x2016098,6, 0x2016100,10, 0x2016140,3, 0x2016150,2, 0x2016180,2, 0x2016200,6, 0x2016220,18, 0x2016280,4, 0x2016300,8, 0x2016400,2, 0x2016480,2, 0x2016800,28, 0x20169f0,4, 0x2017000,40, 0x2017100,64, 0x2017800,56, 0x2017be0,8, 0x2018000,2, 0x201800c,2, 0x2018040,7, 0x2018100,3, 0x2018110,3, 0x2018120,5, 0x2018200,6, 0x2018240,5, 0x2018400,2, 0x201840c,2, 0x2018440,7, 0x2018500,3, 0x2018510,3, 0x2018520,5, 0x2018600,6, 0x2018640,5, 0x2018800,2, 0x201880c,2, 0x2018840,7, 0x2018900,3, 0x2018910,3, 0x2018920,5, 0x2018a00,6, 0x2018a40,5, 0x2018c00,2, 0x2018c0c,2, 0x2018c40,7, 0x2018d00,3, 0x2018d10,3, 0x2018d20,5, 0x2018e00,6, 0x2018e40,5, 0x2019000,2, 0x201900c,2, 0x2019040,7, 0x2019100,3, 0x2019110,3, 0x2019120,5, 0x2019200,6, 0x2019240,5, 0x2019400,2, 0x201940c,2, 0x2019440,7, 0x2019500,3, 0x2019510,3, 0x2019520,5, 0x2019600,6, 0x2019640,5, 0x2019800,2, 0x201980c,2, 0x2019840,7, 0x2019900,3, 0x2019910,3, 0x2019920,5, 0x2019a00,6, 0x2019a40,5, 0x2019c00,2, 0x2019c0c,2, 0x2019c40,7, 0x2019d00,3, 0x2019d10,3, 0x2019d20,5, 0x2019e00,6, 0x2019e40,5, 0x201a000,5, 0x201a040,9, 0x201a100,3, 0x201a200,1, 0x201a210,1, 0x201a220,1, 0x201a230,1, 0x201a240,1, 0x201a300,3, 0x201a314,1, 0x201a320,4, 0x201a400,5, 0x201a440,5, 0x201b000,80, 0x201b200,1, 0x2020004,5, 0x2020020,3, 0x2020030,3, 0x2020040,13, 0x2020078,4, 0x202009c,25, 0x2020104,5, 0x2020120,3, 0x2020130,3, 0x2020140,13, 0x2020178,4, 0x202019c,25, 0x2020204,5, 0x2020220,3, 0x2020230,3, 0x2020240,13, 0x2020278,4, 0x202029c,25, 0x2020304,5, 0x2020320,3, 0x2020330,3, 0x2020340,13, 0x2020378,4, 0x202039c,25, 0x2020600,4, 0x2020c00,24, 0x2020c80,24, 0x2020d00,24, 0x2020d80,24, 0x2020e00,4, 0x2020e20,4, 0x2020e40,4, 0x2020e60,4, 0x2020e80,39, 0x2020f20,7, 0x2020f40,7, 0x2020f60,7, 0x2021000,12, 0x2021200,1, 0x2021218,2, 0x202122c,1, 0x2021280,1, 0x2021298,2, 0x20212ac,1, 0x2021300,1, 0x2021318,2, 0x202132c,1, 0x2021380,1, 0x2021398,2, 0x20213ac,1, 0x2021400,4, 0x2021420,2, 0x202142c,1, 0x2021480,4, 0x20214a0,2, 0x20214ac,1, 0x2021500,4, 0x2021520,2, 0x202152c,1, 0x2021580,4, 0x20215a0,2, 0x20215ac,1, 0x2021600,4, 0x2021640,4, 0x2021680,4, 0x20216c0,4, 0x2021700,7, 0x2021720,7, 0x2021740,7, 0x2021760,7, 0x2021780,4, 0x202179c,11, 0x20217d0,2, 0x20217e0,2, 0x20217f0,2, 0x2021900,44, 0x2022000,7, 0x2022020,4, 0x2022040,4, 0x2022060,7, 0x2022080,7, 0x20220a0,4, 0x20220c0,4, 0x20220e0,7, 0x2022100,7, 0x2022120,4, 0x2022140,4, 0x2022160,7, 0x2022180,7, 0x20221a0,4, 0x20221c0,4, 0x20221e0,7, 0x2022200,32, 0x2022b00,1, 0x2022b20,1, 0x2022b28,4, 0x2022b40,1, 0x2022b60,1, 0x2022b68,4, 0x2022b80,1, 0x2022ba0,1, 0x2022ba8,4, 0x2022bc0,1, 0x2022be0,1, 0x2022be8,4, 0x2022c00,7, 0x2022c20,1, 0x2022c54,18, 0x2022ca0,1, 0x2022cd4,18, 0x2022d20,1, 0x2022d54,18, 0x2022da0,1, 0x2022dd4,12, 0x2022e08,6, 0x2023100,7, 0x2023120,7, 0x2023140,7, 0x2023160,7, 0x2023180,3, 0x2024004,5, 0x2024020,3, 0x2024030,3, 0x2024040,13, 0x2024078,4, 0x202409c,25, 0x2024104,5, 0x2024120,3, 0x2024130,3, 0x2024140,13, 0x2024178,4, 0x202419c,25, 0x2024204,5, 0x2024220,3, 0x2024230,3, 0x2024240,13, 0x2024278,4, 0x202429c,25, 0x2024304,5, 0x2024320,3, 0x2024330,3, 0x2024340,13, 0x2024378,4, 0x202439c,25, 0x2024600,4, 0x2024c00,24, 0x2024c80,24, 0x2024d00,24, 0x2024d80,24, 0x2024e00,4, 0x2024e20,4, 0x2024e40,4, 0x2024e60,4, 0x2024e80,39, 0x2024f20,7, 0x2024f40,7, 0x2024f60,7, 0x2025000,12, 0x2025200,1, 0x2025218,2, 0x202522c,1, 0x2025280,1, 0x2025298,2, 0x20252ac,1, 0x2025300,1, 0x2025318,2, 0x202532c,1, 0x2025380,1, 0x2025398,2, 0x20253ac,1, 0x2025400,4, 0x2025420,2, 0x202542c,1, 0x2025480,4, 0x20254a0,2, 0x20254ac,1, 0x2025500,4, 0x2025520,2, 0x202552c,1, 0x2025580,4, 0x20255a0,2, 0x20255ac,1, 0x2025600,4, 0x2025640,4, 0x2025680,4, 0x20256c0,4, 0x2025700,7, 0x2025720,7, 0x2025740,7, 0x2025760,7, 0x2025780,4, 0x202579c,11, 0x20257d0,2, 0x20257e0,2, 0x20257f0,2, 0x2025900,44, 0x2026000,7, 0x2026020,4, 0x2026040,4, 0x2026060,7, 0x2026080,7, 0x20260a0,4, 0x20260c0,4, 0x20260e0,7, 0x2026100,7, 0x2026120,4, 0x2026140,4, 0x2026160,7, 0x2026180,7, 0x20261a0,4, 0x20261c0,4, 0x20261e0,7, 0x2026200,32, 0x2026b00,1, 0x2026b20,1, 0x2026b28,4, 0x2026b40,1, 0x2026b60,1, 0x2026b68,4, 0x2026b80,1, 0x2026ba0,1, 0x2026ba8,4, 0x2026bc0,1, 0x2026be0,1, 0x2026be8,4, 0x2026c00,7, 0x2026c20,1, 0x2026c54,18, 0x2026ca0,1, 0x2026cd4,18, 0x2026d20,1, 0x2026d54,18, 0x2026da0,1, 0x2026dd4,12, 0x2026e08,6, 0x2027100,7, 0x2027120,7, 0x2027140,7, 0x2027160,7, 0x2027180,3, 0x2028000,10, 0x2028080,3, 0x20280c0,1, 0x2028100,21, 0x2028180,13, 0x20281c4,7, 0x20281e4,7, 0x2028204,7, 0x2028224,8, 0x2029000,7, 0x2029030,2, 0x2029040,7, 0x2029070,2, 0x2029100,2, 0x2029120,2, 0x2029140,2, 0x2029160,2, 0x2029180,9, 0x2029200,7, 0x2029230,2, 0x2029240,7, 0x2029270,2, 0x2029300,2, 0x2029320,2, 0x2029340,2, 0x2029360,2, 0x2029380,9, 0x2029400,11, 0x2029500,11, 0x202a000,3, 0x202a010,2, 0x202a01c,5, 0x202a040,8, 0x202a080,3, 0x202a090,2, 0x202a09c,5, 0x202a0c0,8, 0x202a100,3, 0x202a110,2, 0x202a11c,5, 0x202a140,8, 0x202a180,3, 0x202a190,2, 0x202a19c,5, 0x202a1c0,8, 0x202a200,7, 0x202a220,12, 0x202a280,7, 0x202a2a0,12, 0x202a300,3, 0x202a310,1, 0x202a400,3, 0x202a410,2, 0x202a41c,5, 0x202a440,8, 0x202a480,3, 0x202a490,2, 0x202a49c,5, 0x202a4c0,8, 0x202a500,3, 0x202a510,2, 0x202a51c,5, 0x202a540,8, 0x202a580,3, 0x202a590,2, 0x202a59c,5, 0x202a5c0,8, 0x202a600,7, 0x202a620,12, 0x202a680,7, 0x202a6a0,12, 0x202a700,3, 0x202a710,1, 0x202a804,1, 0x202a824,21, 0x202a880,16, 0x202a900,5, 0x202a920,11, 0x202a950,9, 0x202a980,22, 0x202aa00,22, 0x202aa80,22, 0x202ab00,22, 0x202ab80,22, 0x202ac00,22, 0x202ac80,22, 0x202ad00,22, 0x202ad80,3, 0x202c000,16, 0x202c080,11, 0x202c100,11, 0x202c204,1, 0x202c224,21, 0x202c280,16, 0x202c300,11, 0x202c340,11, 0x202c800,21, 0x202c860,5, 0x202c880,6, 0x202c8a0,5, 0x202c8c0,6, 0x202c900,21, 0x202c960,5, 0x202c980,6, 0x202c9a0,5, 0x202c9c0,6, 0x202ca00,21, 0x202ca60,5, 0x202ca80,6, 0x202caa0,5, 0x202cac0,6, 0x202cb00,21, 0x202cb60,5, 0x202cb80,6, 0x202cba0,5, 0x202cbc0,6, 0x202cc00,9, 0x202cc48,7, 0x202cc68,2, 0x202cc74,9, 0x202cc9c,2, 0x202cd00,14, 0x202cd40,14, 0x202cd80,28, 0x202ce00,19, 0x202ce50,3, 0x202ce60,25, 0x202cec8,1, 0x202ced0,2, 0x202cee0,7, 0x202cf00,1, 0x202cf08,2, 0x202cffc,20, 0x202d050,25, 0x202d100,19, 0x202d150,25, 0x202d200,19, 0x202d250,25, 0x202d300,19, 0x202d350,25, 0x202d400,19, 0x202d450,25, 0x202d500,19, 0x202d550,25, 0x202d600,19, 0x202d650,25, 0x202d700,19, 0x202d750,25, 0x202d800,19, 0x202d850,25, 0x202d904,1, 0x202d914,10, 0x202d948,11, 0x202d980,2, 0x202d9a0,6, 0x202d9c0,2, 0x202d9cc,2, 0x202e000,35, 0x202ea00,10, 0x202ea80,3, 0x202eb00,6, 0x202f000,1, 0x202f008,5, 0x202f038,1, 0x202f044,1, 0x202f050,2, 0x202f100,13, 0x202f140,11, 0x202f170,12, 0x202f1a4,1, 0x202f200,104, 0x202f400,104, 0x202f600,104, 0x202f800,104, 0x2030000,13, 0x2030040,2, 0x2030054,4, 0x2030080,27, 0x2030100,12, 0x2030140,14, 0x2030180,28, 0x2030200,6, 0x2030240,6, 0x203025c,3, 0x2030280,5, 0x20302a0,8, 0x2030400,14, 0x2030440,14, 0x2030480,14, 0x20304c0,14, 0x2030540,3, 0x2030600,7, 0x2030620,14, 0x2030680,5, 0x20306a0,7, 0x2030800,13, 0x2030840,2, 0x2030854,4, 0x2030880,27, 0x2030900,12, 0x2030940,14, 0x2030980,28, 0x2030a00,6, 0x2030a40,6, 0x2030a5c,3, 0x2030a80,5, 0x2030aa0,8, 0x2030c00,14, 0x2030c40,14, 0x2030c80,14, 0x2030cc0,14, 0x2030d40,3, 0x2030e00,7, 0x2030e20,14, 0x2030e80,5, 0x2030ea0,7, 0x2031000,13, 0x2031040,2, 0x2031054,4, 0x2031080,27, 0x2031100,12, 0x2031140,14, 0x2031180,28, 0x2031200,6, 0x2031240,6, 0x203125c,3, 0x2031280,5, 0x20312a0,8, 0x2031400,14, 0x2031440,14, 0x2031480,14, 0x20314c0,14, 0x2031540,3, 0x2031600,7, 0x2031620,14, 0x2031680,5, 0x20316a0,7, 0x2031800,13, 0x2031840,2, 0x2031854,4, 0x2031880,27, 0x2031900,12, 0x2031940,14, 0x2031980,28, 0x2031a00,6, 0x2031a40,6, 0x2031a5c,3, 0x2031a80,5, 0x2031aa0,8, 0x2031c00,14, 0x2031c40,14, 0x2031c80,14, 0x2031cc0,14, 0x2031d40,3, 0x2031e00,7, 0x2031e20,14, 0x2031e80,5, 0x2031ea0,7, 0x2032000,8, 0x2032040,8, 0x2032080,1, 0x2032098,6, 0x2032100,10, 0x2032140,3, 0x2032150,2, 0x2032180,2, 0x2032200,6, 0x2032220,18, 0x2032280,4, 0x2032300,8, 0x2032400,2, 0x2032480,2, 0x2032800,28, 0x20329f0,4, 0x2033000,40, 0x2033100,64, 0x2033800,56, 0x2033be0,8, 0x2034000,13, 0x2034040,2, 0x2034054,4, 0x2034080,27, 0x2034100,12, 0x2034140,14, 0x2034180,28, 0x2034200,6, 0x2034240,6, 0x203425c,3, 0x2034280,5, 0x20342a0,8, 0x2034400,14, 0x2034440,14, 0x2034480,14, 0x20344c0,14, 0x2034540,3, 0x2034600,7, 0x2034620,14, 0x2034680,5, 0x20346a0,7, 0x2034800,13, 0x2034840,2, 0x2034854,4, 0x2034880,27, 0x2034900,12, 0x2034940,14, 0x2034980,28, 0x2034a00,6, 0x2034a40,6, 0x2034a5c,3, 0x2034a80,5, 0x2034aa0,8, 0x2034c00,14, 0x2034c40,14, 0x2034c80,14, 0x2034cc0,14, 0x2034d40,3, 0x2034e00,7, 0x2034e20,14, 0x2034e80,5, 0x2034ea0,7, 0x2035000,13, 0x2035040,2, 0x2035054,4, 0x2035080,27, 0x2035100,12, 0x2035140,14, 0x2035180,28, 0x2035200,6, 0x2035240,6, 0x203525c,3, 0x2035280,5, 0x20352a0,8, 0x2035400,14, 0x2035440,14, 0x2035480,14, 0x20354c0,14, 0x2035540,3, 0x2035600,7, 0x2035620,14, 0x2035680,5, 0x20356a0,7, 0x2035800,13, 0x2035840,2, 0x2035854,4, 0x2035880,27, 0x2035900,12, 0x2035940,14, 0x2035980,28, 0x2035a00,6, 0x2035a40,6, 0x2035a5c,3, 0x2035a80,5, 0x2035aa0,8, 0x2035c00,14, 0x2035c40,14, 0x2035c80,14, 0x2035cc0,14, 0x2035d40,3, 0x2035e00,7, 0x2035e20,14, 0x2035e80,5, 0x2035ea0,7, 0x2036000,8, 0x2036040,8, 0x2036080,1, 0x2036098,6, 0x2036100,10, 0x2036140,3, 0x2036150,2, 0x2036180,2, 0x2036200,6, 0x2036220,18, 0x2036280,4, 0x2036300,8, 0x2036400,2, 0x2036480,2, 0x2036800,28, 0x20369f0,4, 0x2037000,40, 0x2037100,64, 0x2037800,56, 0x2037be0,8, 0x2038000,2, 0x203800c,2, 0x2038040,7, 0x2038100,3, 0x2038110,3, 0x2038120,5, 0x2038200,6, 0x2038240,5, 0x2038400,2, 0x203840c,2, 0x2038440,7, 0x2038500,3, 0x2038510,3, 0x2038520,5, 0x2038600,6, 0x2038640,5, 0x2038800,2, 0x203880c,2, 0x2038840,7, 0x2038900,3, 0x2038910,3, 0x2038920,5, 0x2038a00,6, 0x2038a40,5, 0x2038c00,2, 0x2038c0c,2, 0x2038c40,7, 0x2038d00,3, 0x2038d10,3, 0x2038d20,5, 0x2038e00,6, 0x2038e40,5, 0x2039000,2, 0x203900c,2, 0x2039040,7, 0x2039100,3, 0x2039110,3, 0x2039120,5, 0x2039200,6, 0x2039240,5, 0x2039400,2, 0x203940c,2, 0x2039440,7, 0x2039500,3, 0x2039510,3, 0x2039520,5, 0x2039600,6, 0x2039640,5, 0x2039800,2, 0x203980c,2, 0x2039840,7, 0x2039900,3, 0x2039910,3, 0x2039920,5, 0x2039a00,6, 0x2039a40,5, 0x2039c00,2, 0x2039c0c,2, 0x2039c40,7, 0x2039d00,3, 0x2039d10,3, 0x2039d20,5, 0x2039e00,6, 0x2039e40,5, 0x203a000,5, 0x203a040,9, 0x203a100,3, 0x203a200,1, 0x203a210,1, 0x203a220,1, 0x203a230,1, 0x203a240,1, 0x203a300,3, 0x203a314,1, 0x203a320,4, 0x203a400,5, 0x203a440,5, 0x203b000,80, 0x203b200,1, 0x2040004,5, 0x2040020,3, 0x2040030,3, 0x2040040,13, 0x2040078,4, 0x204009c,25, 0x2040104,5, 0x2040120,3, 0x2040130,3, 0x2040140,13, 0x2040178,4, 0x204019c,25, 0x2040204,5, 0x2040220,3, 0x2040230,3, 0x2040240,13, 0x2040278,4, 0x204029c,25, 0x2040304,5, 0x2040320,3, 0x2040330,3, 0x2040340,13, 0x2040378,4, 0x204039c,25, 0x2040600,4, 0x2040c00,24, 0x2040c80,24, 0x2040d00,24, 0x2040d80,24, 0x2040e00,4, 0x2040e20,4, 0x2040e40,4, 0x2040e60,4, 0x2040e80,39, 0x2040f20,7, 0x2040f40,7, 0x2040f60,7, 0x2041000,12, 0x2041200,1, 0x2041218,2, 0x204122c,1, 0x2041280,1, 0x2041298,2, 0x20412ac,1, 0x2041300,1, 0x2041318,2, 0x204132c,1, 0x2041380,1, 0x2041398,2, 0x20413ac,1, 0x2041400,4, 0x2041420,2, 0x204142c,1, 0x2041480,4, 0x20414a0,2, 0x20414ac,1, 0x2041500,4, 0x2041520,2, 0x204152c,1, 0x2041580,4, 0x20415a0,2, 0x20415ac,1, 0x2041600,4, 0x2041640,4, 0x2041680,4, 0x20416c0,4, 0x2041700,7, 0x2041720,7, 0x2041740,7, 0x2041760,7, 0x2041780,4, 0x204179c,11, 0x20417d0,2, 0x20417e0,2, 0x20417f0,2, 0x2041900,44, 0x2042000,7, 0x2042020,4, 0x2042040,4, 0x2042060,7, 0x2042080,7, 0x20420a0,4, 0x20420c0,4, 0x20420e0,7, 0x2042100,7, 0x2042120,4, 0x2042140,4, 0x2042160,7, 0x2042180,7, 0x20421a0,4, 0x20421c0,4, 0x20421e0,7, 0x2042200,32, 0x2042b00,1, 0x2042b20,1, 0x2042b28,4, 0x2042b40,1, 0x2042b60,1, 0x2042b68,4, 0x2042b80,1, 0x2042ba0,1, 0x2042ba8,4, 0x2042bc0,1, 0x2042be0,1, 0x2042be8,4, 0x2042c00,7, 0x2042c20,1, 0x2042c54,18, 0x2042ca0,1, 0x2042cd4,18, 0x2042d20,1, 0x2042d54,18, 0x2042da0,1, 0x2042dd4,12, 0x2042e08,6, 0x2043100,7, 0x2043120,7, 0x2043140,7, 0x2043160,7, 0x2043180,3, 0x2044004,5, 0x2044020,3, 0x2044030,3, 0x2044040,13, 0x2044078,4, 0x204409c,25, 0x2044104,5, 0x2044120,3, 0x2044130,3, 0x2044140,13, 0x2044178,4, 0x204419c,25, 0x2044204,5, 0x2044220,3, 0x2044230,3, 0x2044240,13, 0x2044278,4, 0x204429c,25, 0x2044304,5, 0x2044320,3, 0x2044330,3, 0x2044340,13, 0x2044378,4, 0x204439c,25, 0x2044600,4, 0x2044c00,24, 0x2044c80,24, 0x2044d00,24, 0x2044d80,24, 0x2044e00,4, 0x2044e20,4, 0x2044e40,4, 0x2044e60,4, 0x2044e80,39, 0x2044f20,7, 0x2044f40,7, 0x2044f60,7, 0x2045000,12, 0x2045200,1, 0x2045218,2, 0x204522c,1, 0x2045280,1, 0x2045298,2, 0x20452ac,1, 0x2045300,1, 0x2045318,2, 0x204532c,1, 0x2045380,1, 0x2045398,2, 0x20453ac,1, 0x2045400,4, 0x2045420,2, 0x204542c,1, 0x2045480,4, 0x20454a0,2, 0x20454ac,1, 0x2045500,4, 0x2045520,2, 0x204552c,1, 0x2045580,4, 0x20455a0,2, 0x20455ac,1, 0x2045600,4, 0x2045640,4, 0x2045680,4, 0x20456c0,4, 0x2045700,7, 0x2045720,7, 0x2045740,7, 0x2045760,7, 0x2045780,4, 0x204579c,11, 0x20457d0,2, 0x20457e0,2, 0x20457f0,2, 0x2045900,44, 0x2046000,7, 0x2046020,4, 0x2046040,4, 0x2046060,7, 0x2046080,7, 0x20460a0,4, 0x20460c0,4, 0x20460e0,7, 0x2046100,7, 0x2046120,4, 0x2046140,4, 0x2046160,7, 0x2046180,7, 0x20461a0,4, 0x20461c0,4, 0x20461e0,7, 0x2046200,32, 0x2046b00,1, 0x2046b20,1, 0x2046b28,4, 0x2046b40,1, 0x2046b60,1, 0x2046b68,4, 0x2046b80,1, 0x2046ba0,1, 0x2046ba8,4, 0x2046bc0,1, 0x2046be0,1, 0x2046be8,4, 0x2046c00,7, 0x2046c20,1, 0x2046c54,18, 0x2046ca0,1, 0x2046cd4,18, 0x2046d20,1, 0x2046d54,18, 0x2046da0,1, 0x2046dd4,12, 0x2046e08,6, 0x2047100,7, 0x2047120,7, 0x2047140,7, 0x2047160,7, 0x2047180,3, 0x2048000,10, 0x2048080,3, 0x20480c0,1, 0x2048100,21, 0x2048180,13, 0x20481c4,7, 0x20481e4,7, 0x2048204,7, 0x2048224,8, 0x2049000,7, 0x2049030,2, 0x2049040,7, 0x2049070,2, 0x2049100,2, 0x2049120,2, 0x2049140,2, 0x2049160,2, 0x2049180,9, 0x2049200,7, 0x2049230,2, 0x2049240,7, 0x2049270,2, 0x2049300,2, 0x2049320,2, 0x2049340,2, 0x2049360,2, 0x2049380,9, 0x2049400,11, 0x2049500,11, 0x204a000,3, 0x204a010,2, 0x204a01c,5, 0x204a040,8, 0x204a080,3, 0x204a090,2, 0x204a09c,5, 0x204a0c0,8, 0x204a100,3, 0x204a110,2, 0x204a11c,5, 0x204a140,8, 0x204a180,3, 0x204a190,2, 0x204a19c,5, 0x204a1c0,8, 0x204a200,7, 0x204a220,12, 0x204a280,7, 0x204a2a0,12, 0x204a300,3, 0x204a310,1, 0x204a400,3, 0x204a410,2, 0x204a41c,5, 0x204a440,8, 0x204a480,3, 0x204a490,2, 0x204a49c,5, 0x204a4c0,8, 0x204a500,3, 0x204a510,2, 0x204a51c,5, 0x204a540,8, 0x204a580,3, 0x204a590,2, 0x204a59c,5, 0x204a5c0,8, 0x204a600,7, 0x204a620,12, 0x204a680,7, 0x204a6a0,12, 0x204a700,3, 0x204a710,1, 0x204a804,1, 0x204a824,21, 0x204a880,16, 0x204a900,5, 0x204a920,11, 0x204a950,9, 0x204a980,22, 0x204aa00,22, 0x204aa80,22, 0x204ab00,22, 0x204ab80,22, 0x204ac00,22, 0x204ac80,22, 0x204ad00,22, 0x204ad80,3, 0x204c000,16, 0x204c080,11, 0x204c100,11, 0x204c204,1, 0x204c224,21, 0x204c280,16, 0x204c300,11, 0x204c340,11, 0x204c800,21, 0x204c860,5, 0x204c880,6, 0x204c8a0,5, 0x204c8c0,6, 0x204c900,21, 0x204c960,5, 0x204c980,6, 0x204c9a0,5, 0x204c9c0,6, 0x204ca00,21, 0x204ca60,5, 0x204ca80,6, 0x204caa0,5, 0x204cac0,6, 0x204cb00,21, 0x204cb60,5, 0x204cb80,6, 0x204cba0,5, 0x204cbc0,6, 0x204cc00,9, 0x204cc48,7, 0x204cc68,2, 0x204cc74,9, 0x204cc9c,2, 0x204cd00,14, 0x204cd40,14, 0x204cd80,28, 0x204ce00,19, 0x204ce50,3, 0x204ce60,25, 0x204cec8,1, 0x204ced0,2, 0x204cee0,7, 0x204cf00,1, 0x204cf08,2, 0x204cffc,20, 0x204d050,25, 0x204d100,19, 0x204d150,25, 0x204d200,19, 0x204d250,25, 0x204d300,19, 0x204d350,25, 0x204d400,19, 0x204d450,25, 0x204d500,19, 0x204d550,25, 0x204d600,19, 0x204d650,25, 0x204d700,19, 0x204d750,25, 0x204d800,19, 0x204d850,25, 0x204d904,1, 0x204d914,10, 0x204d948,11, 0x204d980,2, 0x204d9a0,6, 0x204d9c0,2, 0x204d9cc,2, 0x204e000,35, 0x204ea00,10, 0x204ea80,3, 0x204eb00,6, 0x204f000,1, 0x204f008,5, 0x204f038,1, 0x204f044,1, 0x204f050,2, 0x204f100,13, 0x204f140,11, 0x204f170,12, 0x204f1a4,1, 0x204f200,104, 0x204f400,104, 0x204f600,104, 0x204f800,104, 0x2050000,13, 0x2050040,2, 0x2050054,4, 0x2050080,27, 0x2050100,12, 0x2050140,14, 0x2050180,28, 0x2050200,6, 0x2050240,6, 0x205025c,3, 0x2050280,5, 0x20502a0,8, 0x2050400,14, 0x2050440,14, 0x2050480,14, 0x20504c0,14, 0x2050540,3, 0x2050600,7, 0x2050620,14, 0x2050680,5, 0x20506a0,7, 0x2050800,13, 0x2050840,2, 0x2050854,4, 0x2050880,27, 0x2050900,12, 0x2050940,14, 0x2050980,28, 0x2050a00,6, 0x2050a40,6, 0x2050a5c,3, 0x2050a80,5, 0x2050aa0,8, 0x2050c00,14, 0x2050c40,14, 0x2050c80,14, 0x2050cc0,14, 0x2050d40,3, 0x2050e00,7, 0x2050e20,14, 0x2050e80,5, 0x2050ea0,7, 0x2051000,13, 0x2051040,2, 0x2051054,4, 0x2051080,27, 0x2051100,12, 0x2051140,14, 0x2051180,28, 0x2051200,6, 0x2051240,6, 0x205125c,3, 0x2051280,5, 0x20512a0,8, 0x2051400,14, 0x2051440,14, 0x2051480,14, 0x20514c0,14, 0x2051540,3, 0x2051600,7, 0x2051620,14, 0x2051680,5, 0x20516a0,7, 0x2051800,13, 0x2051840,2, 0x2051854,4, 0x2051880,27, 0x2051900,12, 0x2051940,14, 0x2051980,28, 0x2051a00,6, 0x2051a40,6, 0x2051a5c,3, 0x2051a80,5, 0x2051aa0,8, 0x2051c00,14, 0x2051c40,14, 0x2051c80,14, 0x2051cc0,14, 0x2051d40,3, 0x2051e00,7, 0x2051e20,14, 0x2051e80,5, 0x2051ea0,7, 0x2052000,8, 0x2052040,8, 0x2052080,1, 0x2052098,6, 0x2052100,10, 0x2052140,3, 0x2052150,2, 0x2052180,2, 0x2052200,6, 0x2052220,18, 0x2052280,4, 0x2052300,8, 0x2052400,2, 0x2052480,2, 0x2052800,28, 0x20529f0,4, 0x2053000,40, 0x2053100,64, 0x2053800,56, 0x2053be0,8, 0x2054000,13, 0x2054040,2, 0x2054054,4, 0x2054080,27, 0x2054100,12, 0x2054140,14, 0x2054180,28, 0x2054200,6, 0x2054240,6, 0x205425c,3, 0x2054280,5, 0x20542a0,8, 0x2054400,14, 0x2054440,14, 0x2054480,14, 0x20544c0,14, 0x2054540,3, 0x2054600,7, 0x2054620,14, 0x2054680,5, 0x20546a0,7, 0x2054800,13, 0x2054840,2, 0x2054854,4, 0x2054880,27, 0x2054900,12, 0x2054940,14, 0x2054980,28, 0x2054a00,6, 0x2054a40,6, 0x2054a5c,3, 0x2054a80,5, 0x2054aa0,8, 0x2054c00,14, 0x2054c40,14, 0x2054c80,14, 0x2054cc0,14, 0x2054d40,3, 0x2054e00,7, 0x2054e20,14, 0x2054e80,5, 0x2054ea0,7, 0x2055000,13, 0x2055040,2, 0x2055054,4, 0x2055080,27, 0x2055100,12, 0x2055140,14, 0x2055180,28, 0x2055200,6, 0x2055240,6, 0x205525c,3, 0x2055280,5, 0x20552a0,8, 0x2055400,14, 0x2055440,14, 0x2055480,14, 0x20554c0,14, 0x2055540,3, 0x2055600,7, 0x2055620,14, 0x2055680,5, 0x20556a0,7, 0x2055800,13, 0x2055840,2, 0x2055854,4, 0x2055880,27, 0x2055900,12, 0x2055940,14, 0x2055980,28, 0x2055a00,6, 0x2055a40,6, 0x2055a5c,3, 0x2055a80,5, 0x2055aa0,8, 0x2055c00,14, 0x2055c40,14, 0x2055c80,14, 0x2055cc0,14, 0x2055d40,3, 0x2055e00,7, 0x2055e20,14, 0x2055e80,5, 0x2055ea0,7, 0x2056000,8, 0x2056040,8, 0x2056080,1, 0x2056098,6, 0x2056100,10, 0x2056140,3, 0x2056150,2, 0x2056180,2, 0x2056200,6, 0x2056220,18, 0x2056280,4, 0x2056300,8, 0x2056400,2, 0x2056480,2, 0x2056800,28, 0x20569f0,4, 0x2057000,40, 0x2057100,64, 0x2057800,56, 0x2057be0,8, 0x2058000,2, 0x205800c,2, 0x2058040,7, 0x2058100,3, 0x2058110,3, 0x2058120,5, 0x2058200,6, 0x2058240,5, 0x2058400,2, 0x205840c,2, 0x2058440,7, 0x2058500,3, 0x2058510,3, 0x2058520,5, 0x2058600,6, 0x2058640,5, 0x2058800,2, 0x205880c,2, 0x2058840,7, 0x2058900,3, 0x2058910,3, 0x2058920,5, 0x2058a00,6, 0x2058a40,5, 0x2058c00,2, 0x2058c0c,2, 0x2058c40,7, 0x2058d00,3, 0x2058d10,3, 0x2058d20,5, 0x2058e00,6, 0x2058e40,5, 0x2059000,2, 0x205900c,2, 0x2059040,7, 0x2059100,3, 0x2059110,3, 0x2059120,5, 0x2059200,6, 0x2059240,5, 0x2059400,2, 0x205940c,2, 0x2059440,7, 0x2059500,3, 0x2059510,3, 0x2059520,5, 0x2059600,6, 0x2059640,5, 0x2059800,2, 0x205980c,2, 0x2059840,7, 0x2059900,3, 0x2059910,3, 0x2059920,5, 0x2059a00,6, 0x2059a40,5, 0x2059c00,2, 0x2059c0c,2, 0x2059c40,7, 0x2059d00,3, 0x2059d10,3, 0x2059d20,5, 0x2059e00,6, 0x2059e40,5, 0x205a000,5, 0x205a040,9, 0x205a100,3, 0x205a200,1, 0x205a210,1, 0x205a220,1, 0x205a230,1, 0x205a240,1, 0x205a300,3, 0x205a314,1, 0x205a320,4, 0x205a400,5, 0x205a440,5, 0x205b000,80, 0x205b200,1, 0x2060004,5, 0x2060020,3, 0x2060030,3, 0x2060040,13, 0x2060078,4, 0x206009c,25, 0x2060104,5, 0x2060120,3, 0x2060130,3, 0x2060140,13, 0x2060178,4, 0x206019c,25, 0x2060204,5, 0x2060220,3, 0x2060230,3, 0x2060240,13, 0x2060278,4, 0x206029c,25, 0x2060304,5, 0x2060320,3, 0x2060330,3, 0x2060340,13, 0x2060378,4, 0x206039c,25, 0x2060600,4, 0x2060c00,24, 0x2060c80,24, 0x2060d00,24, 0x2060d80,24, 0x2060e00,4, 0x2060e20,4, 0x2060e40,4, 0x2060e60,4, 0x2060e80,39, 0x2060f20,7, 0x2060f40,7, 0x2060f60,7, 0x2061000,12, 0x2061200,1, 0x2061218,2, 0x206122c,1, 0x2061280,1, 0x2061298,2, 0x20612ac,1, 0x2061300,1, 0x2061318,2, 0x206132c,1, 0x2061380,1, 0x2061398,2, 0x20613ac,1, 0x2061400,4, 0x2061420,2, 0x206142c,1, 0x2061480,4, 0x20614a0,2, 0x20614ac,1, 0x2061500,4, 0x2061520,2, 0x206152c,1, 0x2061580,4, 0x20615a0,2, 0x20615ac,1, 0x2061600,4, 0x2061640,4, 0x2061680,4, 0x20616c0,4, 0x2061700,7, 0x2061720,7, 0x2061740,7, 0x2061760,7, 0x2061780,4, 0x206179c,11, 0x20617d0,2, 0x20617e0,2, 0x20617f0,2, 0x2061900,44, 0x2062000,7, 0x2062020,4, 0x2062040,4, 0x2062060,7, 0x2062080,7, 0x20620a0,4, 0x20620c0,4, 0x20620e0,7, 0x2062100,7, 0x2062120,4, 0x2062140,4, 0x2062160,7, 0x2062180,7, 0x20621a0,4, 0x20621c0,4, 0x20621e0,7, 0x2062200,32, 0x2062b00,1, 0x2062b20,1, 0x2062b28,4, 0x2062b40,1, 0x2062b60,1, 0x2062b68,4, 0x2062b80,1, 0x2062ba0,1, 0x2062ba8,4, 0x2062bc0,1, 0x2062be0,1, 0x2062be8,4, 0x2062c00,7, 0x2062c20,1, 0x2062c54,18, 0x2062ca0,1, 0x2062cd4,18, 0x2062d20,1, 0x2062d54,18, 0x2062da0,1, 0x2062dd4,12, 0x2062e08,6, 0x2063100,7, 0x2063120,7, 0x2063140,7, 0x2063160,7, 0x2063180,3, 0x2064004,5, 0x2064020,3, 0x2064030,3, 0x2064040,13, 0x2064078,4, 0x206409c,25, 0x2064104,5, 0x2064120,3, 0x2064130,3, 0x2064140,13, 0x2064178,4, 0x206419c,25, 0x2064204,5, 0x2064220,3, 0x2064230,3, 0x2064240,13, 0x2064278,4, 0x206429c,25, 0x2064304,5, 0x2064320,3, 0x2064330,3, 0x2064340,13, 0x2064378,4, 0x206439c,25, 0x2064600,4, 0x2064c00,24, 0x2064c80,24, 0x2064d00,24, 0x2064d80,24, 0x2064e00,4, 0x2064e20,4, 0x2064e40,4, 0x2064e60,4, 0x2064e80,39, 0x2064f20,7, 0x2064f40,7, 0x2064f60,7, 0x2065000,12, 0x2065200,1, 0x2065218,2, 0x206522c,1, 0x2065280,1, 0x2065298,2, 0x20652ac,1, 0x2065300,1, 0x2065318,2, 0x206532c,1, 0x2065380,1, 0x2065398,2, 0x20653ac,1, 0x2065400,4, 0x2065420,2, 0x206542c,1, 0x2065480,4, 0x20654a0,2, 0x20654ac,1, 0x2065500,4, 0x2065520,2, 0x206552c,1, 0x2065580,4, 0x20655a0,2, 0x20655ac,1, 0x2065600,4, 0x2065640,4, 0x2065680,4, 0x20656c0,4, 0x2065700,7, 0x2065720,7, 0x2065740,7, 0x2065760,7, 0x2065780,4, 0x206579c,11, 0x20657d0,2, 0x20657e0,2, 0x20657f0,2, 0x2065900,44, 0x2066000,7, 0x2066020,4, 0x2066040,4, 0x2066060,7, 0x2066080,7, 0x20660a0,4, 0x20660c0,4, 0x20660e0,7, 0x2066100,7, 0x2066120,4, 0x2066140,4, 0x2066160,7, 0x2066180,7, 0x20661a0,4, 0x20661c0,4, 0x20661e0,7, 0x2066200,32, 0x2066b00,1, 0x2066b20,1, 0x2066b28,4, 0x2066b40,1, 0x2066b60,1, 0x2066b68,4, 0x2066b80,1, 0x2066ba0,1, 0x2066ba8,4, 0x2066bc0,1, 0x2066be0,1, 0x2066be8,4, 0x2066c00,7, 0x2066c20,1, 0x2066c54,18, 0x2066ca0,1, 0x2066cd4,18, 0x2066d20,1, 0x2066d54,18, 0x2066da0,1, 0x2066dd4,12, 0x2066e08,6, 0x2067100,7, 0x2067120,7, 0x2067140,7, 0x2067160,7, 0x2067180,3, 0x2068000,10, 0x2068080,3, 0x20680c0,1, 0x2068100,21, 0x2068180,13, 0x20681c4,7, 0x20681e4,7, 0x2068204,7, 0x2068224,8, 0x2069000,7, 0x2069030,2, 0x2069040,7, 0x2069070,2, 0x2069100,2, 0x2069120,2, 0x2069140,2, 0x2069160,2, 0x2069180,9, 0x2069200,7, 0x2069230,2, 0x2069240,7, 0x2069270,2, 0x2069300,2, 0x2069320,2, 0x2069340,2, 0x2069360,2, 0x2069380,9, 0x2069400,11, 0x2069500,11, 0x206a000,3, 0x206a010,2, 0x206a01c,5, 0x206a040,8, 0x206a080,3, 0x206a090,2, 0x206a09c,5, 0x206a0c0,8, 0x206a100,3, 0x206a110,2, 0x206a11c,5, 0x206a140,8, 0x206a180,3, 0x206a190,2, 0x206a19c,5, 0x206a1c0,8, 0x206a200,7, 0x206a220,12, 0x206a280,7, 0x206a2a0,12, 0x206a300,3, 0x206a310,1, 0x206a400,3, 0x206a410,2, 0x206a41c,5, 0x206a440,8, 0x206a480,3, 0x206a490,2, 0x206a49c,5, 0x206a4c0,8, 0x206a500,3, 0x206a510,2, 0x206a51c,5, 0x206a540,8, 0x206a580,3, 0x206a590,2, 0x206a59c,5, 0x206a5c0,8, 0x206a600,7, 0x206a620,12, 0x206a680,7, 0x206a6a0,12, 0x206a700,3, 0x206a710,1, 0x206a804,1, 0x206a824,21, 0x206a880,16, 0x206a900,5, 0x206a920,11, 0x206a950,9, 0x206a980,22, 0x206aa00,22, 0x206aa80,22, 0x206ab00,22, 0x206ab80,22, 0x206ac00,22, 0x206ac80,22, 0x206ad00,22, 0x206ad80,3, 0x206c000,16, 0x206c080,11, 0x206c100,11, 0x206c204,1, 0x206c224,21, 0x206c280,16, 0x206c300,11, 0x206c340,11, 0x206c800,21, 0x206c860,5, 0x206c880,6, 0x206c8a0,5, 0x206c8c0,6, 0x206c900,21, 0x206c960,5, 0x206c980,6, 0x206c9a0,5, 0x206c9c0,6, 0x206ca00,21, 0x206ca60,5, 0x206ca80,6, 0x206caa0,5, 0x206cac0,6, 0x206cb00,21, 0x206cb60,5, 0x206cb80,6, 0x206cba0,5, 0x206cbc0,6, 0x206cc00,9, 0x206cc48,7, 0x206cc68,2, 0x206cc74,9, 0x206cc9c,2, 0x206cd00,14, 0x206cd40,14, 0x206cd80,28, 0x206ce00,19, 0x206ce50,3, 0x206ce60,25, 0x206cec8,1, 0x206ced0,2, 0x206cee0,7, 0x206cf00,1, 0x206cf08,2, 0x206cffc,20, 0x206d050,25, 0x206d100,19, 0x206d150,25, 0x206d200,19, 0x206d250,25, 0x206d300,19, 0x206d350,25, 0x206d400,19, 0x206d450,25, 0x206d500,19, 0x206d550,25, 0x206d600,19, 0x206d650,25, 0x206d700,19, 0x206d750,25, 0x206d800,19, 0x206d850,25, 0x206d904,1, 0x206d914,10, 0x206d948,11, 0x206d980,2, 0x206d9a0,6, 0x206d9c0,2, 0x206d9cc,2, 0x206e000,35, 0x206ea00,10, 0x206ea80,3, 0x206eb00,6, 0x206f000,1, 0x206f008,5, 0x206f038,1, 0x206f044,1, 0x206f050,2, 0x206f100,13, 0x206f140,11, 0x206f170,12, 0x206f1a4,1, 0x206f200,104, 0x206f400,104, 0x206f600,104, 0x206f800,104, 0x2070000,13, 0x2070040,2, 0x2070054,4, 0x2070080,27, 0x2070100,12, 0x2070140,14, 0x2070180,28, 0x2070200,6, 0x2070240,6, 0x207025c,3, 0x2070280,5, 0x20702a0,8, 0x2070400,14, 0x2070440,14, 0x2070480,14, 0x20704c0,14, 0x2070540,3, 0x2070600,7, 0x2070620,14, 0x2070680,5, 0x20706a0,7, 0x2070800,13, 0x2070840,2, 0x2070854,4, 0x2070880,27, 0x2070900,12, 0x2070940,14, 0x2070980,28, 0x2070a00,6, 0x2070a40,6, 0x2070a5c,3, 0x2070a80,5, 0x2070aa0,8, 0x2070c00,14, 0x2070c40,14, 0x2070c80,14, 0x2070cc0,14, 0x2070d40,3, 0x2070e00,7, 0x2070e20,14, 0x2070e80,5, 0x2070ea0,7, 0x2071000,13, 0x2071040,2, 0x2071054,4, 0x2071080,27, 0x2071100,12, 0x2071140,14, 0x2071180,28, 0x2071200,6, 0x2071240,6, 0x207125c,3, 0x2071280,5, 0x20712a0,8, 0x2071400,14, 0x2071440,14, 0x2071480,14, 0x20714c0,14, 0x2071540,3, 0x2071600,7, 0x2071620,14, 0x2071680,5, 0x20716a0,7, 0x2071800,13, 0x2071840,2, 0x2071854,4, 0x2071880,27, 0x2071900,12, 0x2071940,14, 0x2071980,28, 0x2071a00,6, 0x2071a40,6, 0x2071a5c,3, 0x2071a80,5, 0x2071aa0,8, 0x2071c00,14, 0x2071c40,14, 0x2071c80,14, 0x2071cc0,14, 0x2071d40,3, 0x2071e00,7, 0x2071e20,14, 0x2071e80,5, 0x2071ea0,7, 0x2072000,8, 0x2072040,8, 0x2072080,1, 0x2072098,6, 0x2072100,10, 0x2072140,3, 0x2072150,2, 0x2072180,2, 0x2072200,6, 0x2072220,18, 0x2072280,4, 0x2072300,8, 0x2072400,2, 0x2072480,2, 0x2072800,28, 0x20729f0,4, 0x2073000,40, 0x2073100,64, 0x2073800,56, 0x2073be0,8, 0x2074000,13, 0x2074040,2, 0x2074054,4, 0x2074080,27, 0x2074100,12, 0x2074140,14, 0x2074180,28, 0x2074200,6, 0x2074240,6, 0x207425c,3, 0x2074280,5, 0x20742a0,8, 0x2074400,14, 0x2074440,14, 0x2074480,14, 0x20744c0,14, 0x2074540,3, 0x2074600,7, 0x2074620,14, 0x2074680,5, 0x20746a0,7, 0x2074800,13, 0x2074840,2, 0x2074854,4, 0x2074880,27, 0x2074900,12, 0x2074940,14, 0x2074980,28, 0x2074a00,6, 0x2074a40,6, 0x2074a5c,3, 0x2074a80,5, 0x2074aa0,8, 0x2074c00,14, 0x2074c40,14, 0x2074c80,14, 0x2074cc0,14, 0x2074d40,3, 0x2074e00,7, 0x2074e20,14, 0x2074e80,5, 0x2074ea0,7, 0x2075000,13, 0x2075040,2, 0x2075054,4, 0x2075080,27, 0x2075100,12, 0x2075140,14, 0x2075180,28, 0x2075200,6, 0x2075240,6, 0x207525c,3, 0x2075280,5, 0x20752a0,8, 0x2075400,14, 0x2075440,14, 0x2075480,14, 0x20754c0,14, 0x2075540,3, 0x2075600,7, 0x2075620,14, 0x2075680,5, 0x20756a0,7, 0x2075800,13, 0x2075840,2, 0x2075854,4, 0x2075880,27, 0x2075900,12, 0x2075940,14, 0x2075980,28, 0x2075a00,6, 0x2075a40,6, 0x2075a5c,3, 0x2075a80,5, 0x2075aa0,8, 0x2075c00,14, 0x2075c40,14, 0x2075c80,14, 0x2075cc0,14, 0x2075d40,3, 0x2075e00,7, 0x2075e20,14, 0x2075e80,5, 0x2075ea0,7, 0x2076000,8, 0x2076040,8, 0x2076080,1, 0x2076098,6, 0x2076100,10, 0x2076140,3, 0x2076150,2, 0x2076180,2, 0x2076200,6, 0x2076220,18, 0x2076280,4, 0x2076300,8, 0x2076400,2, 0x2076480,2, 0x2076800,28, 0x20769f0,4, 0x2077000,40, 0x2077100,64, 0x2077800,56, 0x2077be0,8, 0x2078000,2, 0x207800c,2, 0x2078040,7, 0x2078100,3, 0x2078110,3, 0x2078120,5, 0x2078200,6, 0x2078240,5, 0x2078400,2, 0x207840c,2, 0x2078440,7, 0x2078500,3, 0x2078510,3, 0x2078520,5, 0x2078600,6, 0x2078640,5, 0x2078800,2, 0x207880c,2, 0x2078840,7, 0x2078900,3, 0x2078910,3, 0x2078920,5, 0x2078a00,6, 0x2078a40,5, 0x2078c00,2, 0x2078c0c,2, 0x2078c40,7, 0x2078d00,3, 0x2078d10,3, 0x2078d20,5, 0x2078e00,6, 0x2078e40,5, 0x2079000,2, 0x207900c,2, 0x2079040,7, 0x2079100,3, 0x2079110,3, 0x2079120,5, 0x2079200,6, 0x2079240,5, 0x2079400,2, 0x207940c,2, 0x2079440,7, 0x2079500,3, 0x2079510,3, 0x2079520,5, 0x2079600,6, 0x2079640,5, 0x2079800,2, 0x207980c,2, 0x2079840,7, 0x2079900,3, 0x2079910,3, 0x2079920,5, 0x2079a00,6, 0x2079a40,5, 0x2079c00,2, 0x2079c0c,2, 0x2079c40,7, 0x2079d00,3, 0x2079d10,3, 0x2079d20,5, 0x2079e00,6, 0x2079e40,5, 0x207a000,5, 0x207a040,9, 0x207a100,3, 0x207a200,1, 0x207a210,1, 0x207a220,1, 0x207a230,1, 0x207a240,1, 0x207a300,3, 0x207a314,1, 0x207a320,4, 0x207a400,5, 0x207a440,5, 0x207b000,80, 0x207b200,1, 0x2080000,3, 0x2080010,7, 0x2080030,10, 0x2080080,2, 0x2080100,6, 0x2080140,2, 0x2080180,2, 0x20801a0,1, 0x2080400,2, 0x2080440,4, 0x2080460,5, 0x2080478,1, 0x2080480,6, 0x20804a0,3, 0x20804b0,2, 0x2080500,5, 0x2080600,1, 0x2080800,5, 0x2080900,5, 0x2080a00,5, 0x2080b00,3, 0x2080c00,35, 0x2080d00,25, 0x2080d80,1, 0x2080dc0,3, 0x2080e00,2, 0x2080e20,2, 0x2090000,3, 0x209001c,4, 0x2090080,3, 0x2090090,2, 0x20900d4,4, 0x20900ec,27, 0x209015c,27, 0x20901cc,19, 0x2090224,120, 0x2090408,24, 0x209046c,84, 0x20905f8,4, 0x2090610,27, 0x2090680,27, 0x20906f0,19, 0x2090748,120, 0x209092c,24, 0x2090990,84, 0x2090b1c,4, 0x2090b34,27, 0x2090ba4,27, 0x2090c14,19, 0x2090c6c,120, 0x2090e50,24, 0x2090eb4,84, 0x2091040,4, 0x2091058,27, 0x20910c8,27, 0x2091138,19, 0x2091190,120, 0x2091374,24, 0x20913d8,84, 0x2091564,4, 0x209157c,27, 0x20915ec,27, 0x209165c,19, 0x20916b4,120, 0x2091898,24, 0x20918fc,84, 0x2091a88,4, 0x2091aa0,27, 0x2091b10,27, 0x2091b80,19, 0x2091bd8,120, 0x2091dbc,24, 0x2091e20,84, 0x2091fac,4, 0x2091fc4,27, 0x2092034,27, 0x20920a4,19, 0x20920fc,120, 0x20922e0,24, 0x2092344,84, 0x20924d0,4, 0x20924e8,27, 0x2092558,27, 0x20925c8,19, 0x2092620,120, 0x2092804,24, 0x2092868,84, 0x20929f4,4, 0x2092a0c,27, 0x2092a7c,27, 0x2092aec,19, 0x2092b44,120, 0x2092d28,24, 0x2092d8c,84, 0x2092f18,4, 0x2092f30,27, 0x2092fa0,27, 0x2093010,19, 0x2093068,120, 0x209324c,24, 0x20932b0,84, 0x209343c,4, 0x2093454,27, 0x20934c4,27, 0x2093534,19, 0x209358c,120, 0x2093770,24, 0x20937d4,84, 0x2093960,4, 0x2093978,27, 0x20939e8,27, 0x2093a58,19, 0x2093ab0,120, 0x2093c94,24, 0x2093cf8,84, 0x2093e84,4, 0x2093e9c,27, 0x2093f0c,27, 0x2093f7c,19, 0x2093fd4,120, 0x20941b8,24, 0x209421c,84, 0x20943a8,4, 0x20943c0,27, 0x2094430,27, 0x20944a0,19, 0x20944f8,120, 0x20946dc,24, 0x2094740,84, 0x20948cc,4, 0x20948e4,27, 0x2094954,27, 0x20949c4,19, 0x2094a1c,120, 0x2094c00,24, 0x2094c64,84, 0x2094df0,4, 0x2094e08,27, 0x2094e78,27, 0x2094ee8,19, 0x2094f40,120, 0x2095124,24, 0x2095188,84, 0x2095314,4, 0x209532c,27, 0x209539c,27, 0x209540c,19, 0x2095464,120, 0x2095648,24, 0x20956ac,84, 0x2095838,14, 0x2095940,13, 0x2095a44,13, 0x2095b48,16, 0x2095b90,42, 0x2095c40,2, 0x2095c90,54, 0x2095d70,58, 0x2095e60,58, 0x2095f50,58, 0x2096040,58, 0x2096130,58, 0x2096220,58, 0x2096310,58, 0x2096400,58, 0x20964f0,58, 0x20965e0,58, 0x20966d0,58, 0x20967c0,58, 0x20968b0,58, 0x20969a0,58, 0x2096a90,58, 0x2096b80,58, 0x2096c70,58, 0x2096d60,58, 0x2096e50,58, 0x2096f40,58, 0x2097030,58, 0x2097120,58, 0x2097210,58, 0x2097300,58, 0x20973f0,58, 0x20974e0,58, 0x20975d0,58, 0x20976c0,58, 0x20977b0,58, 0x20978a0,58, 0x2097990,58, 0x2097a80,101, 0x2097c90,49, 0x2097db0,18, 0x2097e00,11, 0x2097e30,4, 0x2097e54,45, 0x2097f58,9, 0x2097f88,3, 0x2097fa0,2, 0x2097fd8,14, 0x2098014,12, 0x2098158,3, 0x2098168,2, 0x2098174,68, 0x2098288,2, 0x2098294,68, 0x20983a8,1, 0x20983b0,2, 0x20983bc,68, 0x20984d0,2, 0x20984dc,68, 0x20985f0,1, 0x20985f8,4, 0x2098610,3, 0x2098624,12, 0x2098688,8, 0x20986dc,1, 0x20986e8,4, 0x2098700,3, 0x2098714,12, 0x2098778,8, 0x20987cc,1, 0x20987d8,4, 0x20987f0,3, 0x2098804,12, 0x2098868,8, 0x20988bc,1, 0x20988c8,4, 0x20988e0,3, 0x20988f4,12, 0x2098958,8, 0x20989ac,1, 0x20989b8,4, 0x20989d0,3, 0x20989e4,12, 0x2098a48,8, 0x2098a9c,1, 0x2098aa8,4, 0x2098ac0,3, 0x2098ad4,12, 0x2098b38,8, 0x2098b8c,1, 0x2098b98,4, 0x2098bb0,3, 0x2098bc4,12, 0x2098c28,8, 0x2098c7c,1, 0x2098c88,4, 0x2098ca0,3, 0x2098cb4,12, 0x2098d18,8, 0x2098d6c,1, 0x2098d78,4, 0x2098d90,3, 0x2098da4,12, 0x2098e08,8, 0x2098e5c,1, 0x2098e68,4, 0x2098e80,3, 0x2098e94,12, 0x2098ef8,8, 0x2098f4c,1, 0x2098f58,4, 0x2098f70,3, 0x2098f84,12, 0x2098fe8,8, 0x209903c,1, 0x2099048,4, 0x2099060,3, 0x2099074,12, 0x20990d8,8, 0x209912c,1, 0x2099138,4, 0x2099150,3, 0x2099164,12, 0x20991c8,8, 0x209921c,1, 0x2099228,4, 0x2099240,3, 0x2099254,12, 0x20992b8,8, 0x209930c,1, 0x2099318,4, 0x2099330,3, 0x2099344,12, 0x20993a8,8, 0x20993fc,1, 0x2099408,4, 0x2099420,3, 0x2099434,12, 0x2099498,8, 0x20994ec,1, 0x20994f8,4, 0x2099510,3, 0x2099524,12, 0x2099588,8, 0x20995dc,1, 0x20995e8,64, 0x2099748,5, 0x2099990,28, 0x2099a04,1, 0x2099a98,1, 0x2099be8,5, 0x2099c04,3, 0x2099c18,13, 0x2099c50,2, 0x209a000,15, 0x209a044,81, 0x209a18c,84, 0x209a2e0,84, 0x209a434,84, 0x209a588,84, 0x209a6dc,84, 0x209a830,84, 0x209a984,84, 0x209aad8,84, 0x209ac2c,84, 0x209ad80,84, 0x209aed4,84, 0x209b028,84, 0x209b17c,84, 0x209b2d0,84, 0x209b424,84, 0x209b578,84, 0x209b6cc,5, 0x209b760,4, 0x209b8e0,2414, 0x209dea4,80, 0x209e048,4, 0x209ebe0,1, 0x209ebf0,97, 0x209ed94,7, 0x209ee7c,1, 0x209eeac,9, 0x209eed4,5, 0x209eeec,11, 0x209ef2c,17, 0x209ef74,29, 0x209f034,3, 0x209f044,1, 0x209f054,17, 0x209fbe0,3, 0x209fbf0,2, 0x20a0000,3, 0x20a0018,2, 0x20a0024,14, 0x20a0060,27, 0x20a00d0,3, 0x20a00e0,3, 0x20a00f0,3, 0x20a0100,4, 0x20a0120,6, 0x20a0140,3, 0x20a0150,1, 0x20a015c,4, 0x20a0170,1, 0x20a0180,15, 0x20a01c0,1, 0x20a01c8,5, 0x20a01e0,1, 0x20a01f0,3, 0x20a0200,3, 0x20a0218,2, 0x20a0224,14, 0x20a0260,27, 0x20a02d0,3, 0x20a02e0,3, 0x20a02f0,3, 0x20a0300,4, 0x20a0320,6, 0x20a0340,3, 0x20a0350,1, 0x20a035c,4, 0x20a0370,1, 0x20a0380,15, 0x20a03c0,1, 0x20a03c8,5, 0x20a03e0,1, 0x20a03f0,3, 0x20a0400,3, 0x20a0418,2, 0x20a0424,14, 0x20a0460,27, 0x20a04d0,3, 0x20a04e0,3, 0x20a04f0,3, 0x20a0500,4, 0x20a0520,6, 0x20a0540,3, 0x20a0550,1, 0x20a055c,4, 0x20a0570,1, 0x20a0580,15, 0x20a05c0,1, 0x20a05c8,5, 0x20a05e0,1, 0x20a05f0,3, 0x20a0600,3, 0x20a0618,2, 0x20a0624,14, 0x20a0660,27, 0x20a06d0,3, 0x20a06e0,3, 0x20a06f0,3, 0x20a0700,4, 0x20a0720,6, 0x20a0740,3, 0x20a0750,1, 0x20a075c,4, 0x20a0770,1, 0x20a0780,15, 0x20a07c0,1, 0x20a07c8,5, 0x20a07e0,1, 0x20a07f0,3, 0x20a0800,3, 0x20a0818,2, 0x20a0824,14, 0x20a0860,27, 0x20a08d0,3, 0x20a08e0,3, 0x20a08f0,3, 0x20a0900,4, 0x20a0920,6, 0x20a0940,3, 0x20a0950,1, 0x20a095c,4, 0x20a0970,1, 0x20a0980,15, 0x20a09c0,1, 0x20a09c8,5, 0x20a09e0,1, 0x20a09f0,3, 0x20a1844,1, 0x20a1858,5, 0x20a1904,3, 0x20a1950,3, 0x20a1988,2, 0x20a19a0,7, 0x20a19c0,7, 0x20a19e0,4, 0x20a2000,24, 0x20a20f0,3, 0x20a2100,7, 0x20a2120,7, 0x20a2144,7, 0x20a2400,4, 0x20a2420,5, 0x20a25e0,3, 0x20a25f4,1, 0x20a25fc,4, 0x20a2620,3, 0x20a2680,8, 0x20a2700,19, 0x20a2800,99, 0x20a2a00,18, 0x20a2a80,8, 0x20a2b00,1, 0x20a3070,1, 0x20a3080,2, 0x20a308c,1, 0x20a3098,2, 0x20a3404,1, 0x20a3440,20, 0x20a3494,1, 0x20a349c,7, 0x20a34d0,4, 0x20a34e8,2, 0x20a34fc,8, 0x20a3520,7, 0x20a3540,7, 0x20a3560,7, 0x20a3580,7, 0x20a35a0,7, 0x20a35c0,7, 0x20a35e0,7, 0x20a3600,9, 0x20a363c,2, 0x20a3650,6, 0x20a3684,10, 0x20a3a00,10, 0x20a3a30,1, 0x20a3a40,8, 0x20a3a64,5, 0x20a4a04,3, 0x20a4b00,33, 0x20a4b90,3, 0x20a5000,8, 0x20a5040,8, 0x20a5104,1, 0x20a510c,3, 0x20a5124,1, 0x20a512c,3, 0x20a6000,13, 0x20a6200,14, 0x20a6240,1, 0x20a6248,1, 0x20a6258,1, 0x20a6260,8, 0x20a6284,1, 0x20a62a0,8, 0x20a6348,5, 0x20a67f0,1, 0x20a67f8,1, 0x20a6a10,12, 0x20a7000,19, 0x20a7a00,10, 0x20a7a80,3, 0x20a7b00,6, 0x20c0000,1, 0x20c000c,5, 0x20c0044,1, 0x20c0054,5, 0x20c0200,128, 0x20c0404,1, 0x20c0428,54, 0x20c0600,32, 0x20c0704,1, 0x20c0800,1, 0x20c0900,1, 0x20c0910,2, 0x20c0920,3, 0x20c0980,10, 0x20c0a00,19, 0x20c0b00,1, 0x20e0000,2, 0x20e000c,2, 0x20e0018,2, 0x20e0024,2, 0x20e0030,2, 0x20e003c,2, 0x20e0048,2, 0x20e0054,2, 0x20e0060,1, 0x20e0070,2, 0x20e007c,2, 0x20e0088,2, 0x20e0094,2, 0x20e00a0,2, 0x20e00ac,2, 0x20e00b8,2, 0x20e00c4,2, 0x20e00d0,1, 0x20e00e0,2, 0x20e00ec,2, 0x20e00f8,2, 0x20e0104,2, 0x20e0110,2, 0x20e011c,2, 0x20e0128,2, 0x20e0134,2, 0x20e0140,1, 0x20e0150,2, 0x20e015c,2, 0x20e0168,2, 0x20e0174,2, 0x20e0180,2, 0x20e018c,2, 0x20e0198,2, 0x20e01a4,2, 0x20e01b0,1, 0x20e01c0,57, 0x20e02b0,67, 0x20e03c0,16, 0x20e0410,23, 0x20e0470,16, 0x20e04c0,23, 0x20e0520,16, 0x20e0570,23, 0x20e05d0,16, 0x20e0620,23, 0x20e0680,16, 0x20e06d0,23, 0x20e0730,16, 0x20e0780,23, 0x20e07e0,16, 0x20e0830,23, 0x20e0890,16, 0x20e08e0,23, 0x20e0940,16, 0x20e0990,23, 0x20e09f0,16, 0x20e0a40,23, 0x20e0aa0,16, 0x20e0af0,23, 0x20e0b50,16, 0x20e0ba0,23, 0x20e0c00,16, 0x20e0c50,23, 0x20e0cb0,16, 0x20e0d00,23, 0x20e0d60,16, 0x20e0db0,23, 0x20e0e10,16, 0x20e0e60,23, 0x20e0ec0,16, 0x20e0f10,23, 0x20e0f70,16, 0x20e0fc0,23, 0x20e1020,16, 0x20e1070,23, 0x20e10d0,16, 0x20e1120,23, 0x20e1180,16, 0x20e11d0,23, 0x20e1230,16, 0x20e1280,23, 0x20e12e0,16, 0x20e1330,23, 0x20e1390,16, 0x20e13e0,23, 0x20e1440,16, 0x20e1490,23, 0x20e14f0,16, 0x20e1540,23, 0x20e15a0,16, 0x20e15f0,23, 0x20e1650,16, 0x20e16a0,23, 0x20e1700,16, 0x20e1750,23, 0x20e17b0,16, 0x20e1800,23, 0x20e1860,16, 0x20e18b0,23, 0x20e1910,16, 0x20e1960,2, 0x20f0000,4, 0x20f0014,2, 0x20f0020,8, 0x20f0044,2, 0x20f0050,13, 0x20f0088,20, 0x20f00dc,1, 0x20f0180,6, 0x20f0590,3, 0x20f05c0,2, 0x20f0a04,1, 0x20f0a0c,3, 0x20f0a20,1, 0x20f0ba0,4, 0x20f0c00,4, 0x20f0c20,3, 0x20f0c30,5, 0x20f0c50,52, 0x20f0d50,57, 0x20f0ec0,3, 0x20f0ffc,3, 0x20f1020,3, 0x20f1030,3, 0x20f1060,2, 0x20f1100,2, 0x20f1140,18, 0x20f11c0,30, 0x20f1240,14, 0x20f1280,28, 0x20f1300,2, 0x20f13a0,6, 0x20f1400,19, 0x20f1800,19, 0x20f1c00,19, 0x20f1c80,8, 0x20f1d00,3, 0x20f1d50,3, 0x20f1e00,3, 0x20f1e10,2, 0x20f1e20,6, 0x20f1e40,6, 0x20f1e60,6, 0x20f1e80,6, 0x20f1ea0,6, 0x20f1ec0,2, 0x20f1ecc,2, 0x20f1ee0,2, 0x20f1eec,2, 0x20f1f80,3, 0x20f1f90,60, 0x20f2100,32, 0x20f2200,32, 0x20f2300,32, 0x20f2400,32, 0x20f2500,32, 0x20f2600,32, 0x20f2700,32, 0x20f2800,32, 0x20f2900,32, 0x20f2a00,32, 0x20f2b00,32, 0x20f2c00,32, 0x20f2d00,32, 0x20f2e00,32, 0x20f2f00,32, 0x20f3000,32, 0x20f30c0,3, 0x20f4000,2, 0x20f4040,16, 0x20f4100,36, 0x20f4800,5, 0x20f4824,1, 0x20f482c,1, 0x20f4c04,1, 0x20f4cd8,74, 0x20f5000,7, 0x20f5020,4, 0x20f5204,1, 0x20f5280,35, 0x20f5310,4, 0x20f5404,1, 0x20f5480,34, 0x20f5510,10, 0x20f553c,3, 0x20f5800,7, 0x20f5820,4, 0x20f5a04,1, 0x20f5a80,35, 0x20f5b10,4, 0x20f5c04,1, 0x20f5c80,34, 0x20f5d10,10, 0x20f5d3c,3, 0x20fa000,5, 0x20fa01c,13, 0x20fa060,3, 0x20fa080,8, 0x20fa100,5, 0x20fa11c,13, 0x20fa160,3, 0x20fa180,8, 0x2200004,5, 0x2200020,3, 0x2200030,3, 0x2200040,13, 0x2200078,4, 0x220009c,25, 0x2200104,5, 0x2200120,3, 0x2200130,3, 0x2200140,13, 0x2200178,4, 0x220019c,25, 0x2200204,5, 0x2200220,3, 0x2200230,3, 0x2200240,13, 0x2200278,4, 0x220029c,25, 0x2200304,5, 0x2200320,3, 0x2200330,3, 0x2200340,13, 0x2200378,4, 0x220039c,25, 0x2200600,4, 0x2200c00,24, 0x2200c80,24, 0x2200d00,24, 0x2200d80,24, 0x2200e00,4, 0x2200e20,4, 0x2200e40,4, 0x2200e60,4, 0x2200e80,39, 0x2200f20,7, 0x2200f40,7, 0x2200f60,7, 0x2201000,12, 0x2201200,1, 0x2201218,2, 0x220122c,1, 0x2201280,1, 0x2201298,2, 0x22012ac,1, 0x2201300,1, 0x2201318,2, 0x220132c,1, 0x2201380,1, 0x2201398,2, 0x22013ac,1, 0x2201400,4, 0x2201420,2, 0x220142c,1, 0x2201480,4, 0x22014a0,2, 0x22014ac,1, 0x2201500,4, 0x2201520,2, 0x220152c,1, 0x2201580,4, 0x22015a0,2, 0x22015ac,1, 0x2201600,4, 0x2201640,4, 0x2201680,4, 0x22016c0,4, 0x2201700,7, 0x2201720,7, 0x2201740,7, 0x2201760,7, 0x2201780,4, 0x220179c,11, 0x22017d0,2, 0x22017e0,2, 0x22017f0,2, 0x2201900,44, 0x2202000,7, 0x2202020,4, 0x2202040,4, 0x2202060,7, 0x2202080,7, 0x22020a0,4, 0x22020c0,4, 0x22020e0,7, 0x2202100,7, 0x2202120,4, 0x2202140,4, 0x2202160,7, 0x2202180,7, 0x22021a0,4, 0x22021c0,4, 0x22021e0,7, 0x2202200,32, 0x2202b00,1, 0x2202b20,1, 0x2202b28,4, 0x2202b40,1, 0x2202b60,1, 0x2202b68,4, 0x2202b80,1, 0x2202ba0,1, 0x2202ba8,4, 0x2202bc0,1, 0x2202be0,1, 0x2202be8,4, 0x2202c00,7, 0x2202c20,1, 0x2202c54,18, 0x2202ca0,1, 0x2202cd4,18, 0x2202d20,1, 0x2202d54,18, 0x2202da0,1, 0x2202dd4,12, 0x2202e08,6, 0x2203100,7, 0x2203120,7, 0x2203140,7, 0x2203160,7, 0x2203180,3, 0x2204004,5, 0x2204020,3, 0x2204030,3, 0x2204040,13, 0x2204078,4, 0x220409c,25, 0x2204104,5, 0x2204120,3, 0x2204130,3, 0x2204140,13, 0x2204178,4, 0x220419c,25, 0x2204204,5, 0x2204220,3, 0x2204230,3, 0x2204240,13, 0x2204278,4, 0x220429c,25, 0x2204304,5, 0x2204320,3, 0x2204330,3, 0x2204340,13, 0x2204378,4, 0x220439c,25, 0x2204600,4, 0x2204c00,24, 0x2204c80,24, 0x2204d00,24, 0x2204d80,24, 0x2204e00,4, 0x2204e20,4, 0x2204e40,4, 0x2204e60,4, 0x2204e80,39, 0x2204f20,7, 0x2204f40,7, 0x2204f60,7, 0x2205000,12, 0x2205200,1, 0x2205218,2, 0x220522c,1, 0x2205280,1, 0x2205298,2, 0x22052ac,1, 0x2205300,1, 0x2205318,2, 0x220532c,1, 0x2205380,1, 0x2205398,2, 0x22053ac,1, 0x2205400,4, 0x2205420,2, 0x220542c,1, 0x2205480,4, 0x22054a0,2, 0x22054ac,1, 0x2205500,4, 0x2205520,2, 0x220552c,1, 0x2205580,4, 0x22055a0,2, 0x22055ac,1, 0x2205600,4, 0x2205640,4, 0x2205680,4, 0x22056c0,4, 0x2205700,7, 0x2205720,7, 0x2205740,7, 0x2205760,7, 0x2205780,4, 0x220579c,11, 0x22057d0,2, 0x22057e0,2, 0x22057f0,2, 0x2205900,44, 0x2206000,7, 0x2206020,4, 0x2206040,4, 0x2206060,7, 0x2206080,7, 0x22060a0,4, 0x22060c0,4, 0x22060e0,7, 0x2206100,7, 0x2206120,4, 0x2206140,4, 0x2206160,7, 0x2206180,7, 0x22061a0,4, 0x22061c0,4, 0x22061e0,7, 0x2206200,32, 0x2206b00,1, 0x2206b20,1, 0x2206b28,4, 0x2206b40,1, 0x2206b60,1, 0x2206b68,4, 0x2206b80,1, 0x2206ba0,1, 0x2206ba8,4, 0x2206bc0,1, 0x2206be0,1, 0x2206be8,4, 0x2206c00,7, 0x2206c20,1, 0x2206c54,18, 0x2206ca0,1, 0x2206cd4,18, 0x2206d20,1, 0x2206d54,18, 0x2206da0,1, 0x2206dd4,12, 0x2206e08,6, 0x2207100,7, 0x2207120,7, 0x2207140,7, 0x2207160,7, 0x2207180,3, 0x2208000,10, 0x2208080,3, 0x22080c0,1, 0x2208100,21, 0x2208180,13, 0x22081c4,7, 0x22081e4,7, 0x2208204,7, 0x2208224,8, 0x2209000,7, 0x2209030,2, 0x2209040,7, 0x2209070,2, 0x2209100,2, 0x2209120,2, 0x2209140,2, 0x2209160,2, 0x2209180,9, 0x2209200,7, 0x2209230,2, 0x2209240,7, 0x2209270,2, 0x2209300,2, 0x2209320,2, 0x2209340,2, 0x2209360,2, 0x2209380,9, 0x2209400,11, 0x2209500,11, 0x220a000,3, 0x220a010,2, 0x220a01c,5, 0x220a040,8, 0x220a080,3, 0x220a090,2, 0x220a09c,5, 0x220a0c0,8, 0x220a100,3, 0x220a110,2, 0x220a11c,5, 0x220a140,8, 0x220a180,3, 0x220a190,2, 0x220a19c,5, 0x220a1c0,8, 0x220a200,7, 0x220a220,12, 0x220a280,7, 0x220a2a0,12, 0x220a300,3, 0x220a310,1, 0x220a400,3, 0x220a410,2, 0x220a41c,5, 0x220a440,8, 0x220a480,3, 0x220a490,2, 0x220a49c,5, 0x220a4c0,8, 0x220a500,3, 0x220a510,2, 0x220a51c,5, 0x220a540,8, 0x220a580,3, 0x220a590,2, 0x220a59c,5, 0x220a5c0,8, 0x220a600,7, 0x220a620,12, 0x220a680,7, 0x220a6a0,12, 0x220a700,3, 0x220a710,1, 0x220a804,1, 0x220a824,21, 0x220a880,16, 0x220a900,5, 0x220a920,11, 0x220a950,9, 0x220a980,22, 0x220aa00,22, 0x220aa80,22, 0x220ab00,22, 0x220ab80,22, 0x220ac00,22, 0x220ac80,22, 0x220ad00,22, 0x220ad80,3, 0x220c000,16, 0x220c080,11, 0x220c100,11, 0x220c204,1, 0x220c224,21, 0x220c280,16, 0x220c300,11, 0x220c340,11, 0x220c800,21, 0x220c860,5, 0x220c880,6, 0x220c8a0,5, 0x220c8c0,6, 0x220c900,21, 0x220c960,5, 0x220c980,6, 0x220c9a0,5, 0x220c9c0,6, 0x220ca00,21, 0x220ca60,5, 0x220ca80,6, 0x220caa0,5, 0x220cac0,6, 0x220cb00,21, 0x220cb60,5, 0x220cb80,6, 0x220cba0,5, 0x220cbc0,6, 0x220cc00,9, 0x220cc48,7, 0x220cc68,2, 0x220cc74,9, 0x220cc9c,2, 0x220cd00,14, 0x220cd40,14, 0x220cd80,28, 0x220ce00,19, 0x220ce50,3, 0x220ce60,25, 0x220cec8,1, 0x220ced0,2, 0x220cee0,7, 0x220cf00,1, 0x220cf08,2, 0x220cffc,20, 0x220d050,25, 0x220d100,19, 0x220d150,25, 0x220d200,19, 0x220d250,25, 0x220d300,19, 0x220d350,25, 0x220d400,19, 0x220d450,25, 0x220d500,19, 0x220d550,25, 0x220d600,19, 0x220d650,25, 0x220d700,19, 0x220d750,25, 0x220d800,19, 0x220d850,25, 0x220d904,1, 0x220d914,10, 0x220d948,11, 0x220d980,2, 0x220d9a0,6, 0x220d9c0,2, 0x220d9cc,2, 0x220e000,35, 0x220ea00,10, 0x220ea80,3, 0x220eb00,6, 0x220f000,1, 0x220f008,5, 0x220f038,1, 0x220f044,1, 0x220f050,2, 0x220f100,13, 0x220f140,11, 0x220f170,12, 0x220f1a4,1, 0x220f200,104, 0x220f400,104, 0x220f600,104, 0x220f800,104, 0x2210000,13, 0x2210040,2, 0x2210054,4, 0x2210080,27, 0x2210100,12, 0x2210140,14, 0x2210180,28, 0x2210200,6, 0x2210240,6, 0x221025c,3, 0x2210280,5, 0x22102a0,8, 0x2210400,14, 0x2210440,14, 0x2210480,14, 0x22104c0,14, 0x2210540,3, 0x2210600,7, 0x2210620,14, 0x2210680,5, 0x22106a0,7, 0x2210800,13, 0x2210840,2, 0x2210854,4, 0x2210880,27, 0x2210900,12, 0x2210940,14, 0x2210980,28, 0x2210a00,6, 0x2210a40,6, 0x2210a5c,3, 0x2210a80,5, 0x2210aa0,8, 0x2210c00,14, 0x2210c40,14, 0x2210c80,14, 0x2210cc0,14, 0x2210d40,3, 0x2210e00,7, 0x2210e20,14, 0x2210e80,5, 0x2210ea0,7, 0x2211000,13, 0x2211040,2, 0x2211054,4, 0x2211080,27, 0x2211100,12, 0x2211140,14, 0x2211180,28, 0x2211200,6, 0x2211240,6, 0x221125c,3, 0x2211280,5, 0x22112a0,8, 0x2211400,14, 0x2211440,14, 0x2211480,14, 0x22114c0,14, 0x2211540,3, 0x2211600,7, 0x2211620,14, 0x2211680,5, 0x22116a0,7, 0x2211800,13, 0x2211840,2, 0x2211854,4, 0x2211880,27, 0x2211900,12, 0x2211940,14, 0x2211980,28, 0x2211a00,6, 0x2211a40,6, 0x2211a5c,3, 0x2211a80,5, 0x2211aa0,8, 0x2211c00,14, 0x2211c40,14, 0x2211c80,14, 0x2211cc0,14, 0x2211d40,3, 0x2211e00,7, 0x2211e20,14, 0x2211e80,5, 0x2211ea0,7, 0x2212000,8, 0x2212040,8, 0x2212080,1, 0x2212098,6, 0x2212100,10, 0x2212140,3, 0x2212150,2, 0x2212180,2, 0x2212200,6, 0x2212220,18, 0x2212280,4, 0x2212300,8, 0x2212400,2, 0x2212480,2, 0x2212800,28, 0x22129f0,4, 0x2213000,40, 0x2213100,64, 0x2213800,56, 0x2213be0,8, 0x2214000,13, 0x2214040,2, 0x2214054,4, 0x2214080,27, 0x2214100,12, 0x2214140,14, 0x2214180,28, 0x2214200,6, 0x2214240,6, 0x221425c,3, 0x2214280,5, 0x22142a0,8, 0x2214400,14, 0x2214440,14, 0x2214480,14, 0x22144c0,14, 0x2214540,3, 0x2214600,7, 0x2214620,14, 0x2214680,5, 0x22146a0,7, 0x2214800,13, 0x2214840,2, 0x2214854,4, 0x2214880,27, 0x2214900,12, 0x2214940,14, 0x2214980,28, 0x2214a00,6, 0x2214a40,6, 0x2214a5c,3, 0x2214a80,5, 0x2214aa0,8, 0x2214c00,14, 0x2214c40,14, 0x2214c80,14, 0x2214cc0,14, 0x2214d40,3, 0x2214e00,7, 0x2214e20,14, 0x2214e80,5, 0x2214ea0,7, 0x2215000,13, 0x2215040,2, 0x2215054,4, 0x2215080,27, 0x2215100,12, 0x2215140,14, 0x2215180,28, 0x2215200,6, 0x2215240,6, 0x221525c,3, 0x2215280,5, 0x22152a0,8, 0x2215400,14, 0x2215440,14, 0x2215480,14, 0x22154c0,14, 0x2215540,3, 0x2215600,7, 0x2215620,14, 0x2215680,5, 0x22156a0,7, 0x2215800,13, 0x2215840,2, 0x2215854,4, 0x2215880,27, 0x2215900,12, 0x2215940,14, 0x2215980,28, 0x2215a00,6, 0x2215a40,6, 0x2215a5c,3, 0x2215a80,5, 0x2215aa0,8, 0x2215c00,14, 0x2215c40,14, 0x2215c80,14, 0x2215cc0,14, 0x2215d40,3, 0x2215e00,7, 0x2215e20,14, 0x2215e80,5, 0x2215ea0,7, 0x2216000,8, 0x2216040,8, 0x2216080,1, 0x2216098,6, 0x2216100,10, 0x2216140,3, 0x2216150,2, 0x2216180,2, 0x2216200,6, 0x2216220,18, 0x2216280,4, 0x2216300,8, 0x2216400,2, 0x2216480,2, 0x2216800,28, 0x22169f0,4, 0x2217000,40, 0x2217100,64, 0x2217800,56, 0x2217be0,8, 0x2218000,2, 0x221800c,2, 0x2218040,7, 0x2218100,3, 0x2218110,3, 0x2218120,5, 0x2218200,6, 0x2218240,5, 0x2218400,2, 0x221840c,2, 0x2218440,7, 0x2218500,3, 0x2218510,3, 0x2218520,5, 0x2218600,6, 0x2218640,5, 0x2218800,2, 0x221880c,2, 0x2218840,7, 0x2218900,3, 0x2218910,3, 0x2218920,5, 0x2218a00,6, 0x2218a40,5, 0x2218c00,2, 0x2218c0c,2, 0x2218c40,7, 0x2218d00,3, 0x2218d10,3, 0x2218d20,5, 0x2218e00,6, 0x2218e40,5, 0x2219000,2, 0x221900c,2, 0x2219040,7, 0x2219100,3, 0x2219110,3, 0x2219120,5, 0x2219200,6, 0x2219240,5, 0x2219400,2, 0x221940c,2, 0x2219440,7, 0x2219500,3, 0x2219510,3, 0x2219520,5, 0x2219600,6, 0x2219640,5, 0x2219800,2, 0x221980c,2, 0x2219840,7, 0x2219900,3, 0x2219910,3, 0x2219920,5, 0x2219a00,6, 0x2219a40,5, 0x2219c00,2, 0x2219c0c,2, 0x2219c40,7, 0x2219d00,3, 0x2219d10,3, 0x2219d20,5, 0x2219e00,6, 0x2219e40,5, 0x221a000,5, 0x221a040,9, 0x221a100,3, 0x221a200,1, 0x221a210,1, 0x221a220,1, 0x221a230,1, 0x221a240,1, 0x221a300,3, 0x221a314,1, 0x221a320,4, 0x221a400,5, 0x221a440,5, 0x221b000,80, 0x221b200,1, 0x2220004,5, 0x2220020,3, 0x2220030,3, 0x2220040,13, 0x2220078,4, 0x222009c,25, 0x2220104,5, 0x2220120,3, 0x2220130,3, 0x2220140,13, 0x2220178,4, 0x222019c,25, 0x2220204,5, 0x2220220,3, 0x2220230,3, 0x2220240,13, 0x2220278,4, 0x222029c,25, 0x2220304,5, 0x2220320,3, 0x2220330,3, 0x2220340,13, 0x2220378,4, 0x222039c,25, 0x2220600,4, 0x2220c00,24, 0x2220c80,24, 0x2220d00,24, 0x2220d80,24, 0x2220e00,4, 0x2220e20,4, 0x2220e40,4, 0x2220e60,4, 0x2220e80,39, 0x2220f20,7, 0x2220f40,7, 0x2220f60,7, 0x2221000,12, 0x2221200,1, 0x2221218,2, 0x222122c,1, 0x2221280,1, 0x2221298,2, 0x22212ac,1, 0x2221300,1, 0x2221318,2, 0x222132c,1, 0x2221380,1, 0x2221398,2, 0x22213ac,1, 0x2221400,4, 0x2221420,2, 0x222142c,1, 0x2221480,4, 0x22214a0,2, 0x22214ac,1, 0x2221500,4, 0x2221520,2, 0x222152c,1, 0x2221580,4, 0x22215a0,2, 0x22215ac,1, 0x2221600,4, 0x2221640,4, 0x2221680,4, 0x22216c0,4, 0x2221700,7, 0x2221720,7, 0x2221740,7, 0x2221760,7, 0x2221780,4, 0x222179c,11, 0x22217d0,2, 0x22217e0,2, 0x22217f0,2, 0x2221900,44, 0x2222000,7, 0x2222020,4, 0x2222040,4, 0x2222060,7, 0x2222080,7, 0x22220a0,4, 0x22220c0,4, 0x22220e0,7, 0x2222100,7, 0x2222120,4, 0x2222140,4, 0x2222160,7, 0x2222180,7, 0x22221a0,4, 0x22221c0,4, 0x22221e0,7, 0x2222200,32, 0x2222b00,1, 0x2222b20,1, 0x2222b28,4, 0x2222b40,1, 0x2222b60,1, 0x2222b68,4, 0x2222b80,1, 0x2222ba0,1, 0x2222ba8,4, 0x2222bc0,1, 0x2222be0,1, 0x2222be8,4, 0x2222c00,7, 0x2222c20,1, 0x2222c54,18, 0x2222ca0,1, 0x2222cd4,18, 0x2222d20,1, 0x2222d54,18, 0x2222da0,1, 0x2222dd4,12, 0x2222e08,6, 0x2223100,7, 0x2223120,7, 0x2223140,7, 0x2223160,7, 0x2223180,3, 0x2224004,5, 0x2224020,3, 0x2224030,3, 0x2224040,13, 0x2224078,4, 0x222409c,25, 0x2224104,5, 0x2224120,3, 0x2224130,3, 0x2224140,13, 0x2224178,4, 0x222419c,25, 0x2224204,5, 0x2224220,3, 0x2224230,3, 0x2224240,13, 0x2224278,4, 0x222429c,25, 0x2224304,5, 0x2224320,3, 0x2224330,3, 0x2224340,13, 0x2224378,4, 0x222439c,25, 0x2224600,4, 0x2224c00,24, 0x2224c80,24, 0x2224d00,24, 0x2224d80,24, 0x2224e00,4, 0x2224e20,4, 0x2224e40,4, 0x2224e60,4, 0x2224e80,39, 0x2224f20,7, 0x2224f40,7, 0x2224f60,7, 0x2225000,12, 0x2225200,1, 0x2225218,2, 0x222522c,1, 0x2225280,1, 0x2225298,2, 0x22252ac,1, 0x2225300,1, 0x2225318,2, 0x222532c,1, 0x2225380,1, 0x2225398,2, 0x22253ac,1, 0x2225400,4, 0x2225420,2, 0x222542c,1, 0x2225480,4, 0x22254a0,2, 0x22254ac,1, 0x2225500,4, 0x2225520,2, 0x222552c,1, 0x2225580,4, 0x22255a0,2, 0x22255ac,1, 0x2225600,4, 0x2225640,4, 0x2225680,4, 0x22256c0,4, 0x2225700,7, 0x2225720,7, 0x2225740,7, 0x2225760,7, 0x2225780,4, 0x222579c,11, 0x22257d0,2, 0x22257e0,2, 0x22257f0,2, 0x2225900,44, 0x2226000,7, 0x2226020,4, 0x2226040,4, 0x2226060,7, 0x2226080,7, 0x22260a0,4, 0x22260c0,4, 0x22260e0,7, 0x2226100,7, 0x2226120,4, 0x2226140,4, 0x2226160,7, 0x2226180,7, 0x22261a0,4, 0x22261c0,4, 0x22261e0,7, 0x2226200,32, 0x2226b00,1, 0x2226b20,1, 0x2226b28,4, 0x2226b40,1, 0x2226b60,1, 0x2226b68,4, 0x2226b80,1, 0x2226ba0,1, 0x2226ba8,4, 0x2226bc0,1, 0x2226be0,1, 0x2226be8,4, 0x2226c00,7, 0x2226c20,1, 0x2226c54,18, 0x2226ca0,1, 0x2226cd4,18, 0x2226d20,1, 0x2226d54,18, 0x2226da0,1, 0x2226dd4,12, 0x2226e08,6, 0x2227100,7, 0x2227120,7, 0x2227140,7, 0x2227160,7, 0x2227180,3, 0x2228000,10, 0x2228080,3, 0x22280c0,1, 0x2228100,21, 0x2228180,13, 0x22281c4,7, 0x22281e4,7, 0x2228204,7, 0x2228224,8, 0x2229000,7, 0x2229030,2, 0x2229040,7, 0x2229070,2, 0x2229100,2, 0x2229120,2, 0x2229140,2, 0x2229160,2, 0x2229180,9, 0x2229200,7, 0x2229230,2, 0x2229240,7, 0x2229270,2, 0x2229300,2, 0x2229320,2, 0x2229340,2, 0x2229360,2, 0x2229380,9, 0x2229400,11, 0x2229500,11, 0x222a000,3, 0x222a010,2, 0x222a01c,5, 0x222a040,8, 0x222a080,3, 0x222a090,2, 0x222a09c,5, 0x222a0c0,8, 0x222a100,3, 0x222a110,2, 0x222a11c,5, 0x222a140,8, 0x222a180,3, 0x222a190,2, 0x222a19c,5, 0x222a1c0,8, 0x222a200,7, 0x222a220,12, 0x222a280,7, 0x222a2a0,12, 0x222a300,3, 0x222a310,1, 0x222a400,3, 0x222a410,2, 0x222a41c,5, 0x222a440,8, 0x222a480,3, 0x222a490,2, 0x222a49c,5, 0x222a4c0,8, 0x222a500,3, 0x222a510,2, 0x222a51c,5, 0x222a540,8, 0x222a580,3, 0x222a590,2, 0x222a59c,5, 0x222a5c0,8, 0x222a600,7, 0x222a620,12, 0x222a680,7, 0x222a6a0,12, 0x222a700,3, 0x222a710,1, 0x222a804,1, 0x222a824,21, 0x222a880,16, 0x222a900,5, 0x222a920,11, 0x222a950,9, 0x222a980,22, 0x222aa00,22, 0x222aa80,22, 0x222ab00,22, 0x222ab80,22, 0x222ac00,22, 0x222ac80,22, 0x222ad00,22, 0x222ad80,3, 0x222c000,16, 0x222c080,11, 0x222c100,11, 0x222c204,1, 0x222c224,21, 0x222c280,16, 0x222c300,11, 0x222c340,11, 0x222c800,21, 0x222c860,5, 0x222c880,6, 0x222c8a0,5, 0x222c8c0,6, 0x222c900,21, 0x222c960,5, 0x222c980,6, 0x222c9a0,5, 0x222c9c0,6, 0x222ca00,21, 0x222ca60,5, 0x222ca80,6, 0x222caa0,5, 0x222cac0,6, 0x222cb00,21, 0x222cb60,5, 0x222cb80,6, 0x222cba0,5, 0x222cbc0,6, 0x222cc00,9, 0x222cc48,7, 0x222cc68,2, 0x222cc74,9, 0x222cc9c,2, 0x222cd00,14, 0x222cd40,14, 0x222cd80,28, 0x222ce00,19, 0x222ce50,3, 0x222ce60,25, 0x222cec8,1, 0x222ced0,2, 0x222cee0,7, 0x222cf00,1, 0x222cf08,2, 0x222cffc,20, 0x222d050,25, 0x222d100,19, 0x222d150,25, 0x222d200,19, 0x222d250,25, 0x222d300,19, 0x222d350,25, 0x222d400,19, 0x222d450,25, 0x222d500,19, 0x222d550,25, 0x222d600,19, 0x222d650,25, 0x222d700,19, 0x222d750,25, 0x222d800,19, 0x222d850,25, 0x222d904,1, 0x222d914,10, 0x222d948,11, 0x222d980,2, 0x222d9a0,6, 0x222d9c0,2, 0x222d9cc,2, 0x222e000,35, 0x222ea00,10, 0x222ea80,3, 0x222eb00,6, 0x222f000,1, 0x222f008,5, 0x222f038,1, 0x222f044,1, 0x222f050,2, 0x222f100,13, 0x222f140,11, 0x222f170,12, 0x222f1a4,1, 0x222f200,104, 0x222f400,104, 0x222f600,104, 0x222f800,104, 0x2230000,13, 0x2230040,2, 0x2230054,4, 0x2230080,27, 0x2230100,12, 0x2230140,14, 0x2230180,28, 0x2230200,6, 0x2230240,6, 0x223025c,3, 0x2230280,5, 0x22302a0,8, 0x2230400,14, 0x2230440,14, 0x2230480,14, 0x22304c0,14, 0x2230540,3, 0x2230600,7, 0x2230620,14, 0x2230680,5, 0x22306a0,7, 0x2230800,13, 0x2230840,2, 0x2230854,4, 0x2230880,27, 0x2230900,12, 0x2230940,14, 0x2230980,28, 0x2230a00,6, 0x2230a40,6, 0x2230a5c,3, 0x2230a80,5, 0x2230aa0,8, 0x2230c00,14, 0x2230c40,14, 0x2230c80,14, 0x2230cc0,14, 0x2230d40,3, 0x2230e00,7, 0x2230e20,14, 0x2230e80,5, 0x2230ea0,7, 0x2231000,13, 0x2231040,2, 0x2231054,4, 0x2231080,27, 0x2231100,12, 0x2231140,14, 0x2231180,28, 0x2231200,6, 0x2231240,6, 0x223125c,3, 0x2231280,5, 0x22312a0,8, 0x2231400,14, 0x2231440,14, 0x2231480,14, 0x22314c0,14, 0x2231540,3, 0x2231600,7, 0x2231620,14, 0x2231680,5, 0x22316a0,7, 0x2231800,13, 0x2231840,2, 0x2231854,4, 0x2231880,27, 0x2231900,12, 0x2231940,14, 0x2231980,28, 0x2231a00,6, 0x2231a40,6, 0x2231a5c,3, 0x2231a80,5, 0x2231aa0,8, 0x2231c00,14, 0x2231c40,14, 0x2231c80,14, 0x2231cc0,14, 0x2231d40,3, 0x2231e00,7, 0x2231e20,14, 0x2231e80,5, 0x2231ea0,7, 0x2232000,8, 0x2232040,8, 0x2232080,1, 0x2232098,6, 0x2232100,10, 0x2232140,3, 0x2232150,2, 0x2232180,2, 0x2232200,6, 0x2232220,18, 0x2232280,4, 0x2232300,8, 0x2232400,2, 0x2232480,2, 0x2232800,28, 0x22329f0,4, 0x2233000,40, 0x2233100,64, 0x2233800,56, 0x2233be0,8, 0x2234000,13, 0x2234040,2, 0x2234054,4, 0x2234080,27, 0x2234100,12, 0x2234140,14, 0x2234180,28, 0x2234200,6, 0x2234240,6, 0x223425c,3, 0x2234280,5, 0x22342a0,8, 0x2234400,14, 0x2234440,14, 0x2234480,14, 0x22344c0,14, 0x2234540,3, 0x2234600,7, 0x2234620,14, 0x2234680,5, 0x22346a0,7, 0x2234800,13, 0x2234840,2, 0x2234854,4, 0x2234880,27, 0x2234900,12, 0x2234940,14, 0x2234980,28, 0x2234a00,6, 0x2234a40,6, 0x2234a5c,3, 0x2234a80,5, 0x2234aa0,8, 0x2234c00,14, 0x2234c40,14, 0x2234c80,14, 0x2234cc0,14, 0x2234d40,3, 0x2234e00,7, 0x2234e20,14, 0x2234e80,5, 0x2234ea0,7, 0x2235000,13, 0x2235040,2, 0x2235054,4, 0x2235080,27, 0x2235100,12, 0x2235140,14, 0x2235180,28, 0x2235200,6, 0x2235240,6, 0x223525c,3, 0x2235280,5, 0x22352a0,8, 0x2235400,14, 0x2235440,14, 0x2235480,14, 0x22354c0,14, 0x2235540,3, 0x2235600,7, 0x2235620,14, 0x2235680,5, 0x22356a0,7, 0x2235800,13, 0x2235840,2, 0x2235854,4, 0x2235880,27, 0x2235900,12, 0x2235940,14, 0x2235980,28, 0x2235a00,6, 0x2235a40,6, 0x2235a5c,3, 0x2235a80,5, 0x2235aa0,8, 0x2235c00,14, 0x2235c40,14, 0x2235c80,14, 0x2235cc0,14, 0x2235d40,3, 0x2235e00,7, 0x2235e20,14, 0x2235e80,5, 0x2235ea0,7, 0x2236000,8, 0x2236040,8, 0x2236080,1, 0x2236098,6, 0x2236100,10, 0x2236140,3, 0x2236150,2, 0x2236180,2, 0x2236200,6, 0x2236220,18, 0x2236280,4, 0x2236300,8, 0x2236400,2, 0x2236480,2, 0x2236800,28, 0x22369f0,4, 0x2237000,40, 0x2237100,64, 0x2237800,56, 0x2237be0,8, 0x2238000,2, 0x223800c,2, 0x2238040,7, 0x2238100,3, 0x2238110,3, 0x2238120,5, 0x2238200,6, 0x2238240,5, 0x2238400,2, 0x223840c,2, 0x2238440,7, 0x2238500,3, 0x2238510,3, 0x2238520,5, 0x2238600,6, 0x2238640,5, 0x2238800,2, 0x223880c,2, 0x2238840,7, 0x2238900,3, 0x2238910,3, 0x2238920,5, 0x2238a00,6, 0x2238a40,5, 0x2238c00,2, 0x2238c0c,2, 0x2238c40,7, 0x2238d00,3, 0x2238d10,3, 0x2238d20,5, 0x2238e00,6, 0x2238e40,5, 0x2239000,2, 0x223900c,2, 0x2239040,7, 0x2239100,3, 0x2239110,3, 0x2239120,5, 0x2239200,6, 0x2239240,5, 0x2239400,2, 0x223940c,2, 0x2239440,7, 0x2239500,3, 0x2239510,3, 0x2239520,5, 0x2239600,6, 0x2239640,5, 0x2239800,2, 0x223980c,2, 0x2239840,7, 0x2239900,3, 0x2239910,3, 0x2239920,5, 0x2239a00,6, 0x2239a40,5, 0x2239c00,2, 0x2239c0c,2, 0x2239c40,7, 0x2239d00,3, 0x2239d10,3, 0x2239d20,5, 0x2239e00,6, 0x2239e40,5, 0x223a000,5, 0x223a040,9, 0x223a100,3, 0x223a200,1, 0x223a210,1, 0x223a220,1, 0x223a230,1, 0x223a240,1, 0x223a300,3, 0x223a314,1, 0x223a320,4, 0x223a400,5, 0x223a440,5, 0x223b000,80, 0x223b200,1, 0x2240004,5, 0x2240020,3, 0x2240030,3, 0x2240040,13, 0x2240078,4, 0x224009c,25, 0x2240104,5, 0x2240120,3, 0x2240130,3, 0x2240140,13, 0x2240178,4, 0x224019c,25, 0x2240204,5, 0x2240220,3, 0x2240230,3, 0x2240240,13, 0x2240278,4, 0x224029c,25, 0x2240304,5, 0x2240320,3, 0x2240330,3, 0x2240340,13, 0x2240378,4, 0x224039c,25, 0x2240600,4, 0x2240c00,24, 0x2240c80,24, 0x2240d00,24, 0x2240d80,24, 0x2240e00,4, 0x2240e20,4, 0x2240e40,4, 0x2240e60,4, 0x2240e80,39, 0x2240f20,7, 0x2240f40,7, 0x2240f60,7, 0x2241000,12, 0x2241200,1, 0x2241218,2, 0x224122c,1, 0x2241280,1, 0x2241298,2, 0x22412ac,1, 0x2241300,1, 0x2241318,2, 0x224132c,1, 0x2241380,1, 0x2241398,2, 0x22413ac,1, 0x2241400,4, 0x2241420,2, 0x224142c,1, 0x2241480,4, 0x22414a0,2, 0x22414ac,1, 0x2241500,4, 0x2241520,2, 0x224152c,1, 0x2241580,4, 0x22415a0,2, 0x22415ac,1, 0x2241600,4, 0x2241640,4, 0x2241680,4, 0x22416c0,4, 0x2241700,7, 0x2241720,7, 0x2241740,7, 0x2241760,7, 0x2241780,4, 0x224179c,11, 0x22417d0,2, 0x22417e0,2, 0x22417f0,2, 0x2241900,44, 0x2242000,7, 0x2242020,4, 0x2242040,4, 0x2242060,7, 0x2242080,7, 0x22420a0,4, 0x22420c0,4, 0x22420e0,7, 0x2242100,7, 0x2242120,4, 0x2242140,4, 0x2242160,7, 0x2242180,7, 0x22421a0,4, 0x22421c0,4, 0x22421e0,7, 0x2242200,32, 0x2242b00,1, 0x2242b20,1, 0x2242b28,4, 0x2242b40,1, 0x2242b60,1, 0x2242b68,4, 0x2242b80,1, 0x2242ba0,1, 0x2242ba8,4, 0x2242bc0,1, 0x2242be0,1, 0x2242be8,4, 0x2242c00,7, 0x2242c20,1, 0x2242c54,18, 0x2242ca0,1, 0x2242cd4,18, 0x2242d20,1, 0x2242d54,18, 0x2242da0,1, 0x2242dd4,12, 0x2242e08,6, 0x2243100,7, 0x2243120,7, 0x2243140,7, 0x2243160,7, 0x2243180,3, 0x2244004,5, 0x2244020,3, 0x2244030,3, 0x2244040,13, 0x2244078,4, 0x224409c,25, 0x2244104,5, 0x2244120,3, 0x2244130,3, 0x2244140,13, 0x2244178,4, 0x224419c,25, 0x2244204,5, 0x2244220,3, 0x2244230,3, 0x2244240,13, 0x2244278,4, 0x224429c,25, 0x2244304,5, 0x2244320,3, 0x2244330,3, 0x2244340,13, 0x2244378,4, 0x224439c,25, 0x2244600,4, 0x2244c00,24, 0x2244c80,24, 0x2244d00,24, 0x2244d80,24, 0x2244e00,4, 0x2244e20,4, 0x2244e40,4, 0x2244e60,4, 0x2244e80,39, 0x2244f20,7, 0x2244f40,7, 0x2244f60,7, 0x2245000,12, 0x2245200,1, 0x2245218,2, 0x224522c,1, 0x2245280,1, 0x2245298,2, 0x22452ac,1, 0x2245300,1, 0x2245318,2, 0x224532c,1, 0x2245380,1, 0x2245398,2, 0x22453ac,1, 0x2245400,4, 0x2245420,2, 0x224542c,1, 0x2245480,4, 0x22454a0,2, 0x22454ac,1, 0x2245500,4, 0x2245520,2, 0x224552c,1, 0x2245580,4, 0x22455a0,2, 0x22455ac,1, 0x2245600,4, 0x2245640,4, 0x2245680,4, 0x22456c0,4, 0x2245700,7, 0x2245720,7, 0x2245740,7, 0x2245760,7, 0x2245780,4, 0x224579c,11, 0x22457d0,2, 0x22457e0,2, 0x22457f0,2, 0x2245900,44, 0x2246000,7, 0x2246020,4, 0x2246040,4, 0x2246060,7, 0x2246080,7, 0x22460a0,4, 0x22460c0,4, 0x22460e0,7, 0x2246100,7, 0x2246120,4, 0x2246140,4, 0x2246160,7, 0x2246180,7, 0x22461a0,4, 0x22461c0,4, 0x22461e0,7, 0x2246200,32, 0x2246b00,1, 0x2246b20,1, 0x2246b28,4, 0x2246b40,1, 0x2246b60,1, 0x2246b68,4, 0x2246b80,1, 0x2246ba0,1, 0x2246ba8,4, 0x2246bc0,1, 0x2246be0,1, 0x2246be8,4, 0x2246c00,7, 0x2246c20,1, 0x2246c54,18, 0x2246ca0,1, 0x2246cd4,18, 0x2246d20,1, 0x2246d54,18, 0x2246da0,1, 0x2246dd4,12, 0x2246e08,6, 0x2247100,7, 0x2247120,7, 0x2247140,7, 0x2247160,7, 0x2247180,3, 0x2248000,10, 0x2248080,3, 0x22480c0,1, 0x2248100,21, 0x2248180,13, 0x22481c4,7, 0x22481e4,7, 0x2248204,7, 0x2248224,8, 0x2249000,7, 0x2249030,2, 0x2249040,7, 0x2249070,2, 0x2249100,2, 0x2249120,2, 0x2249140,2, 0x2249160,2, 0x2249180,9, 0x2249200,7, 0x2249230,2, 0x2249240,7, 0x2249270,2, 0x2249300,2, 0x2249320,2, 0x2249340,2, 0x2249360,2, 0x2249380,9, 0x2249400,11, 0x2249500,11, 0x224a000,3, 0x224a010,2, 0x224a01c,5, 0x224a040,8, 0x224a080,3, 0x224a090,2, 0x224a09c,5, 0x224a0c0,8, 0x224a100,3, 0x224a110,2, 0x224a11c,5, 0x224a140,8, 0x224a180,3, 0x224a190,2, 0x224a19c,5, 0x224a1c0,8, 0x224a200,7, 0x224a220,12, 0x224a280,7, 0x224a2a0,12, 0x224a300,3, 0x224a310,1, 0x224a400,3, 0x224a410,2, 0x224a41c,5, 0x224a440,8, 0x224a480,3, 0x224a490,2, 0x224a49c,5, 0x224a4c0,8, 0x224a500,3, 0x224a510,2, 0x224a51c,5, 0x224a540,8, 0x224a580,3, 0x224a590,2, 0x224a59c,5, 0x224a5c0,8, 0x224a600,7, 0x224a620,12, 0x224a680,7, 0x224a6a0,12, 0x224a700,3, 0x224a710,1, 0x224a804,1, 0x224a824,21, 0x224a880,16, 0x224a900,5, 0x224a920,11, 0x224a950,9, 0x224a980,22, 0x224aa00,22, 0x224aa80,22, 0x224ab00,22, 0x224ab80,22, 0x224ac00,22, 0x224ac80,22, 0x224ad00,22, 0x224ad80,3, 0x224c000,16, 0x224c080,11, 0x224c100,11, 0x224c204,1, 0x224c224,21, 0x224c280,16, 0x224c300,11, 0x224c340,11, 0x224c800,21, 0x224c860,5, 0x224c880,6, 0x224c8a0,5, 0x224c8c0,6, 0x224c900,21, 0x224c960,5, 0x224c980,6, 0x224c9a0,5, 0x224c9c0,6, 0x224ca00,21, 0x224ca60,5, 0x224ca80,6, 0x224caa0,5, 0x224cac0,6, 0x224cb00,21, 0x224cb60,5, 0x224cb80,6, 0x224cba0,5, 0x224cbc0,6, 0x224cc00,9, 0x224cc48,7, 0x224cc68,2, 0x224cc74,9, 0x224cc9c,2, 0x224cd00,14, 0x224cd40,14, 0x224cd80,28, 0x224ce00,19, 0x224ce50,3, 0x224ce60,25, 0x224cec8,1, 0x224ced0,2, 0x224cee0,7, 0x224cf00,1, 0x224cf08,2, 0x224cffc,20, 0x224d050,25, 0x224d100,19, 0x224d150,25, 0x224d200,19, 0x224d250,25, 0x224d300,19, 0x224d350,25, 0x224d400,19, 0x224d450,25, 0x224d500,19, 0x224d550,25, 0x224d600,19, 0x224d650,25, 0x224d700,19, 0x224d750,25, 0x224d800,19, 0x224d850,25, 0x224d904,1, 0x224d914,10, 0x224d948,11, 0x224d980,2, 0x224d9a0,6, 0x224d9c0,2, 0x224d9cc,2, 0x224e000,35, 0x224ea00,10, 0x224ea80,3, 0x224eb00,6, 0x224f000,1, 0x224f008,5, 0x224f038,1, 0x224f044,1, 0x224f050,2, 0x224f100,13, 0x224f140,11, 0x224f170,12, 0x224f1a4,1, 0x224f200,104, 0x224f400,104, 0x224f600,104, 0x224f800,104, 0x2250000,13, 0x2250040,2, 0x2250054,4, 0x2250080,27, 0x2250100,12, 0x2250140,14, 0x2250180,28, 0x2250200,6, 0x2250240,6, 0x225025c,3, 0x2250280,5, 0x22502a0,8, 0x2250400,14, 0x2250440,14, 0x2250480,14, 0x22504c0,14, 0x2250540,3, 0x2250600,7, 0x2250620,14, 0x2250680,5, 0x22506a0,7, 0x2250800,13, 0x2250840,2, 0x2250854,4, 0x2250880,27, 0x2250900,12, 0x2250940,14, 0x2250980,28, 0x2250a00,6, 0x2250a40,6, 0x2250a5c,3, 0x2250a80,5, 0x2250aa0,8, 0x2250c00,14, 0x2250c40,14, 0x2250c80,14, 0x2250cc0,14, 0x2250d40,3, 0x2250e00,7, 0x2250e20,14, 0x2250e80,5, 0x2250ea0,7, 0x2251000,13, 0x2251040,2, 0x2251054,4, 0x2251080,27, 0x2251100,12, 0x2251140,14, 0x2251180,28, 0x2251200,6, 0x2251240,6, 0x225125c,3, 0x2251280,5, 0x22512a0,8, 0x2251400,14, 0x2251440,14, 0x2251480,14, 0x22514c0,14, 0x2251540,3, 0x2251600,7, 0x2251620,14, 0x2251680,5, 0x22516a0,7, 0x2251800,13, 0x2251840,2, 0x2251854,4, 0x2251880,27, 0x2251900,12, 0x2251940,14, 0x2251980,28, 0x2251a00,6, 0x2251a40,6, 0x2251a5c,3, 0x2251a80,5, 0x2251aa0,8, 0x2251c00,14, 0x2251c40,14, 0x2251c80,14, 0x2251cc0,14, 0x2251d40,3, 0x2251e00,7, 0x2251e20,14, 0x2251e80,5, 0x2251ea0,7, 0x2252000,8, 0x2252040,8, 0x2252080,1, 0x2252098,6, 0x2252100,10, 0x2252140,3, 0x2252150,2, 0x2252180,2, 0x2252200,6, 0x2252220,18, 0x2252280,4, 0x2252300,8, 0x2252400,2, 0x2252480,2, 0x2252800,28, 0x22529f0,4, 0x2253000,40, 0x2253100,64, 0x2253800,56, 0x2253be0,8, 0x2254000,13, 0x2254040,2, 0x2254054,4, 0x2254080,27, 0x2254100,12, 0x2254140,14, 0x2254180,28, 0x2254200,6, 0x2254240,6, 0x225425c,3, 0x2254280,5, 0x22542a0,8, 0x2254400,14, 0x2254440,14, 0x2254480,14, 0x22544c0,14, 0x2254540,3, 0x2254600,7, 0x2254620,14, 0x2254680,5, 0x22546a0,7, 0x2254800,13, 0x2254840,2, 0x2254854,4, 0x2254880,27, 0x2254900,12, 0x2254940,14, 0x2254980,28, 0x2254a00,6, 0x2254a40,6, 0x2254a5c,3, 0x2254a80,5, 0x2254aa0,8, 0x2254c00,14, 0x2254c40,14, 0x2254c80,14, 0x2254cc0,14, 0x2254d40,3, 0x2254e00,7, 0x2254e20,14, 0x2254e80,5, 0x2254ea0,7, 0x2255000,13, 0x2255040,2, 0x2255054,4, 0x2255080,27, 0x2255100,12, 0x2255140,14, 0x2255180,28, 0x2255200,6, 0x2255240,6, 0x225525c,3, 0x2255280,5, 0x22552a0,8, 0x2255400,14, 0x2255440,14, 0x2255480,14, 0x22554c0,14, 0x2255540,3, 0x2255600,7, 0x2255620,14, 0x2255680,5, 0x22556a0,7, 0x2255800,13, 0x2255840,2, 0x2255854,4, 0x2255880,27, 0x2255900,12, 0x2255940,14, 0x2255980,28, 0x2255a00,6, 0x2255a40,6, 0x2255a5c,3, 0x2255a80,5, 0x2255aa0,8, 0x2255c00,14, 0x2255c40,14, 0x2255c80,14, 0x2255cc0,14, 0x2255d40,3, 0x2255e00,7, 0x2255e20,14, 0x2255e80,5, 0x2255ea0,7, 0x2256000,8, 0x2256040,8, 0x2256080,1, 0x2256098,6, 0x2256100,10, 0x2256140,3, 0x2256150,2, 0x2256180,2, 0x2256200,6, 0x2256220,18, 0x2256280,4, 0x2256300,8, 0x2256400,2, 0x2256480,2, 0x2256800,28, 0x22569f0,4, 0x2257000,40, 0x2257100,64, 0x2257800,56, 0x2257be0,8, 0x2258000,2, 0x225800c,2, 0x2258040,7, 0x2258100,3, 0x2258110,3, 0x2258120,5, 0x2258200,6, 0x2258240,5, 0x2258400,2, 0x225840c,2, 0x2258440,7, 0x2258500,3, 0x2258510,3, 0x2258520,5, 0x2258600,6, 0x2258640,5, 0x2258800,2, 0x225880c,2, 0x2258840,7, 0x2258900,3, 0x2258910,3, 0x2258920,5, 0x2258a00,6, 0x2258a40,5, 0x2258c00,2, 0x2258c0c,2, 0x2258c40,7, 0x2258d00,3, 0x2258d10,3, 0x2258d20,5, 0x2258e00,6, 0x2258e40,5, 0x2259000,2, 0x225900c,2, 0x2259040,7, 0x2259100,3, 0x2259110,3, 0x2259120,5, 0x2259200,6, 0x2259240,5, 0x2259400,2, 0x225940c,2, 0x2259440,7, 0x2259500,3, 0x2259510,3, 0x2259520,5, 0x2259600,6, 0x2259640,5, 0x2259800,2, 0x225980c,2, 0x2259840,7, 0x2259900,3, 0x2259910,3, 0x2259920,5, 0x2259a00,6, 0x2259a40,5, 0x2259c00,2, 0x2259c0c,2, 0x2259c40,7, 0x2259d00,3, 0x2259d10,3, 0x2259d20,5, 0x2259e00,6, 0x2259e40,5, 0x225a000,5, 0x225a040,9, 0x225a100,3, 0x225a200,1, 0x225a210,1, 0x225a220,1, 0x225a230,1, 0x225a240,1, 0x225a300,3, 0x225a314,1, 0x225a320,4, 0x225a400,5, 0x225a440,5, 0x225b000,80, 0x225b200,1, 0x2260004,5, 0x2260020,3, 0x2260030,3, 0x2260040,13, 0x2260078,4, 0x226009c,25, 0x2260104,5, 0x2260120,3, 0x2260130,3, 0x2260140,13, 0x2260178,4, 0x226019c,25, 0x2260204,5, 0x2260220,3, 0x2260230,3, 0x2260240,13, 0x2260278,4, 0x226029c,25, 0x2260304,5, 0x2260320,3, 0x2260330,3, 0x2260340,13, 0x2260378,4, 0x226039c,25, 0x2260600,4, 0x2260c00,24, 0x2260c80,24, 0x2260d00,24, 0x2260d80,24, 0x2260e00,4, 0x2260e20,4, 0x2260e40,4, 0x2260e60,4, 0x2260e80,39, 0x2260f20,7, 0x2260f40,7, 0x2260f60,7, 0x2261000,12, 0x2261200,1, 0x2261218,2, 0x226122c,1, 0x2261280,1, 0x2261298,2, 0x22612ac,1, 0x2261300,1, 0x2261318,2, 0x226132c,1, 0x2261380,1, 0x2261398,2, 0x22613ac,1, 0x2261400,4, 0x2261420,2, 0x226142c,1, 0x2261480,4, 0x22614a0,2, 0x22614ac,1, 0x2261500,4, 0x2261520,2, 0x226152c,1, 0x2261580,4, 0x22615a0,2, 0x22615ac,1, 0x2261600,4, 0x2261640,4, 0x2261680,4, 0x22616c0,4, 0x2261700,7, 0x2261720,7, 0x2261740,7, 0x2261760,7, 0x2261780,4, 0x226179c,11, 0x22617d0,2, 0x22617e0,2, 0x22617f0,2, 0x2261900,44, 0x2262000,7, 0x2262020,4, 0x2262040,4, 0x2262060,7, 0x2262080,7, 0x22620a0,4, 0x22620c0,4, 0x22620e0,7, 0x2262100,7, 0x2262120,4, 0x2262140,4, 0x2262160,7, 0x2262180,7, 0x22621a0,4, 0x22621c0,4, 0x22621e0,7, 0x2262200,32, 0x2262b00,1, 0x2262b20,1, 0x2262b28,4, 0x2262b40,1, 0x2262b60,1, 0x2262b68,4, 0x2262b80,1, 0x2262ba0,1, 0x2262ba8,4, 0x2262bc0,1, 0x2262be0,1, 0x2262be8,4, 0x2262c00,7, 0x2262c20,1, 0x2262c54,18, 0x2262ca0,1, 0x2262cd4,18, 0x2262d20,1, 0x2262d54,18, 0x2262da0,1, 0x2262dd4,12, 0x2262e08,6, 0x2263100,7, 0x2263120,7, 0x2263140,7, 0x2263160,7, 0x2263180,3, 0x2264004,5, 0x2264020,3, 0x2264030,3, 0x2264040,13, 0x2264078,4, 0x226409c,25, 0x2264104,5, 0x2264120,3, 0x2264130,3, 0x2264140,13, 0x2264178,4, 0x226419c,25, 0x2264204,5, 0x2264220,3, 0x2264230,3, 0x2264240,13, 0x2264278,4, 0x226429c,25, 0x2264304,5, 0x2264320,3, 0x2264330,3, 0x2264340,13, 0x2264378,4, 0x226439c,25, 0x2264600,4, 0x2264c00,24, 0x2264c80,24, 0x2264d00,24, 0x2264d80,24, 0x2264e00,4, 0x2264e20,4, 0x2264e40,4, 0x2264e60,4, 0x2264e80,39, 0x2264f20,7, 0x2264f40,7, 0x2264f60,7, 0x2265000,12, 0x2265200,1, 0x2265218,2, 0x226522c,1, 0x2265280,1, 0x2265298,2, 0x22652ac,1, 0x2265300,1, 0x2265318,2, 0x226532c,1, 0x2265380,1, 0x2265398,2, 0x22653ac,1, 0x2265400,4, 0x2265420,2, 0x226542c,1, 0x2265480,4, 0x22654a0,2, 0x22654ac,1, 0x2265500,4, 0x2265520,2, 0x226552c,1, 0x2265580,4, 0x22655a0,2, 0x22655ac,1, 0x2265600,4, 0x2265640,4, 0x2265680,4, 0x22656c0,4, 0x2265700,7, 0x2265720,7, 0x2265740,7, 0x2265760,7, 0x2265780,4, 0x226579c,11, 0x22657d0,2, 0x22657e0,2, 0x22657f0,2, 0x2265900,44, 0x2266000,7, 0x2266020,4, 0x2266040,4, 0x2266060,7, 0x2266080,7, 0x22660a0,4, 0x22660c0,4, 0x22660e0,7, 0x2266100,7, 0x2266120,4, 0x2266140,4, 0x2266160,7, 0x2266180,7, 0x22661a0,4, 0x22661c0,4, 0x22661e0,7, 0x2266200,32, 0x2266b00,1, 0x2266b20,1, 0x2266b28,4, 0x2266b40,1, 0x2266b60,1, 0x2266b68,4, 0x2266b80,1, 0x2266ba0,1, 0x2266ba8,4, 0x2266bc0,1, 0x2266be0,1, 0x2266be8,4, 0x2266c00,7, 0x2266c20,1, 0x2266c54,18, 0x2266ca0,1, 0x2266cd4,18, 0x2266d20,1, 0x2266d54,18, 0x2266da0,1, 0x2266dd4,12, 0x2266e08,6, 0x2267100,7, 0x2267120,7, 0x2267140,7, 0x2267160,7, 0x2267180,3, 0x2268000,10, 0x2268080,3, 0x22680c0,1, 0x2268100,21, 0x2268180,13, 0x22681c4,7, 0x22681e4,7, 0x2268204,7, 0x2268224,8, 0x2269000,7, 0x2269030,2, 0x2269040,7, 0x2269070,2, 0x2269100,2, 0x2269120,2, 0x2269140,2, 0x2269160,2, 0x2269180,9, 0x2269200,7, 0x2269230,2, 0x2269240,7, 0x2269270,2, 0x2269300,2, 0x2269320,2, 0x2269340,2, 0x2269360,2, 0x2269380,9, 0x2269400,11, 0x2269500,11, 0x226a000,3, 0x226a010,2, 0x226a01c,5, 0x226a040,8, 0x226a080,3, 0x226a090,2, 0x226a09c,5, 0x226a0c0,8, 0x226a100,3, 0x226a110,2, 0x226a11c,5, 0x226a140,8, 0x226a180,3, 0x226a190,2, 0x226a19c,5, 0x226a1c0,8, 0x226a200,7, 0x226a220,12, 0x226a280,7, 0x226a2a0,12, 0x226a300,3, 0x226a310,1, 0x226a400,3, 0x226a410,2, 0x226a41c,5, 0x226a440,8, 0x226a480,3, 0x226a490,2, 0x226a49c,5, 0x226a4c0,8, 0x226a500,3, 0x226a510,2, 0x226a51c,5, 0x226a540,8, 0x226a580,3, 0x226a590,2, 0x226a59c,5, 0x226a5c0,8, 0x226a600,7, 0x226a620,12, 0x226a680,7, 0x226a6a0,12, 0x226a700,3, 0x226a710,1, 0x226a804,1, 0x226a824,21, 0x226a880,16, 0x226a900,5, 0x226a920,11, 0x226a950,9, 0x226a980,22, 0x226aa00,22, 0x226aa80,22, 0x226ab00,22, 0x226ab80,22, 0x226ac00,22, 0x226ac80,22, 0x226ad00,22, 0x226ad80,3, 0x226c000,16, 0x226c080,11, 0x226c100,11, 0x226c204,1, 0x226c224,21, 0x226c280,16, 0x226c300,11, 0x226c340,11, 0x226c800,21, 0x226c860,5, 0x226c880,6, 0x226c8a0,5, 0x226c8c0,6, 0x226c900,21, 0x226c960,5, 0x226c980,6, 0x226c9a0,5, 0x226c9c0,6, 0x226ca00,21, 0x226ca60,5, 0x226ca80,6, 0x226caa0,5, 0x226cac0,6, 0x226cb00,21, 0x226cb60,5, 0x226cb80,6, 0x226cba0,5, 0x226cbc0,6, 0x226cc00,9, 0x226cc48,7, 0x226cc68,2, 0x226cc74,9, 0x226cc9c,2, 0x226cd00,14, 0x226cd40,14, 0x226cd80,28, 0x226ce00,19, 0x226ce50,3, 0x226ce60,25, 0x226cec8,1, 0x226ced0,2, 0x226cee0,7, 0x226cf00,1, 0x226cf08,2, 0x226cffc,20, 0x226d050,25, 0x226d100,19, 0x226d150,25, 0x226d200,19, 0x226d250,25, 0x226d300,19, 0x226d350,25, 0x226d400,19, 0x226d450,25, 0x226d500,19, 0x226d550,25, 0x226d600,19, 0x226d650,25, 0x226d700,19, 0x226d750,25, 0x226d800,19, 0x226d850,25, 0x226d904,1, 0x226d914,10, 0x226d948,11, 0x226d980,2, 0x226d9a0,6, 0x226d9c0,2, 0x226d9cc,2, 0x226e000,35, 0x226ea00,10, 0x226ea80,3, 0x226eb00,6, 0x226f000,1, 0x226f008,5, 0x226f038,1, 0x226f044,1, 0x226f050,2, 0x226f100,13, 0x226f140,11, 0x226f170,12, 0x226f1a4,1, 0x226f200,104, 0x226f400,104, 0x226f600,104, 0x226f800,104, 0x2270000,13, 0x2270040,2, 0x2270054,4, 0x2270080,27, 0x2270100,12, 0x2270140,14, 0x2270180,28, 0x2270200,6, 0x2270240,6, 0x227025c,3, 0x2270280,5, 0x22702a0,8, 0x2270400,14, 0x2270440,14, 0x2270480,14, 0x22704c0,14, 0x2270540,3, 0x2270600,7, 0x2270620,14, 0x2270680,5, 0x22706a0,7, 0x2270800,13, 0x2270840,2, 0x2270854,4, 0x2270880,27, 0x2270900,12, 0x2270940,14, 0x2270980,28, 0x2270a00,6, 0x2270a40,6, 0x2270a5c,3, 0x2270a80,5, 0x2270aa0,8, 0x2270c00,14, 0x2270c40,14, 0x2270c80,14, 0x2270cc0,14, 0x2270d40,3, 0x2270e00,7, 0x2270e20,14, 0x2270e80,5, 0x2270ea0,7, 0x2271000,13, 0x2271040,2, 0x2271054,4, 0x2271080,27, 0x2271100,12, 0x2271140,14, 0x2271180,28, 0x2271200,6, 0x2271240,6, 0x227125c,3, 0x2271280,5, 0x22712a0,8, 0x2271400,14, 0x2271440,14, 0x2271480,14, 0x22714c0,14, 0x2271540,3, 0x2271600,7, 0x2271620,14, 0x2271680,5, 0x22716a0,7, 0x2271800,13, 0x2271840,2, 0x2271854,4, 0x2271880,27, 0x2271900,12, 0x2271940,14, 0x2271980,28, 0x2271a00,6, 0x2271a40,6, 0x2271a5c,3, 0x2271a80,5, 0x2271aa0,8, 0x2271c00,14, 0x2271c40,14, 0x2271c80,14, 0x2271cc0,14, 0x2271d40,3, 0x2271e00,7, 0x2271e20,14, 0x2271e80,5, 0x2271ea0,7, 0x2272000,8, 0x2272040,8, 0x2272080,1, 0x2272098,6, 0x2272100,10, 0x2272140,3, 0x2272150,2, 0x2272180,2, 0x2272200,6, 0x2272220,18, 0x2272280,4, 0x2272300,8, 0x2272400,2, 0x2272480,2, 0x2272800,28, 0x22729f0,4, 0x2273000,40, 0x2273100,64, 0x2273800,56, 0x2273be0,8, 0x2274000,13, 0x2274040,2, 0x2274054,4, 0x2274080,27, 0x2274100,12, 0x2274140,14, 0x2274180,28, 0x2274200,6, 0x2274240,6, 0x227425c,3, 0x2274280,5, 0x22742a0,8, 0x2274400,14, 0x2274440,14, 0x2274480,14, 0x22744c0,14, 0x2274540,3, 0x2274600,7, 0x2274620,14, 0x2274680,5, 0x22746a0,7, 0x2274800,13, 0x2274840,2, 0x2274854,4, 0x2274880,27, 0x2274900,12, 0x2274940,14, 0x2274980,28, 0x2274a00,6, 0x2274a40,6, 0x2274a5c,3, 0x2274a80,5, 0x2274aa0,8, 0x2274c00,14, 0x2274c40,14, 0x2274c80,14, 0x2274cc0,14, 0x2274d40,3, 0x2274e00,7, 0x2274e20,14, 0x2274e80,5, 0x2274ea0,7, 0x2275000,13, 0x2275040,2, 0x2275054,4, 0x2275080,27, 0x2275100,12, 0x2275140,14, 0x2275180,28, 0x2275200,6, 0x2275240,6, 0x227525c,3, 0x2275280,5, 0x22752a0,8, 0x2275400,14, 0x2275440,14, 0x2275480,14, 0x22754c0,14, 0x2275540,3, 0x2275600,7, 0x2275620,14, 0x2275680,5, 0x22756a0,7, 0x2275800,13, 0x2275840,2, 0x2275854,4, 0x2275880,27, 0x2275900,12, 0x2275940,14, 0x2275980,28, 0x2275a00,6, 0x2275a40,6, 0x2275a5c,3, 0x2275a80,5, 0x2275aa0,8, 0x2275c00,14, 0x2275c40,14, 0x2275c80,14, 0x2275cc0,14, 0x2275d40,3, 0x2275e00,7, 0x2275e20,14, 0x2275e80,5, 0x2275ea0,7, 0x2276000,8, 0x2276040,8, 0x2276080,1, 0x2276098,6, 0x2276100,10, 0x2276140,3, 0x2276150,2, 0x2276180,2, 0x2276200,6, 0x2276220,18, 0x2276280,4, 0x2276300,8, 0x2276400,2, 0x2276480,2, 0x2276800,28, 0x22769f0,4, 0x2277000,40, 0x2277100,64, 0x2277800,56, 0x2277be0,8, 0x2278000,2, 0x227800c,2, 0x2278040,7, 0x2278100,3, 0x2278110,3, 0x2278120,5, 0x2278200,6, 0x2278240,5, 0x2278400,2, 0x227840c,2, 0x2278440,7, 0x2278500,3, 0x2278510,3, 0x2278520,5, 0x2278600,6, 0x2278640,5, 0x2278800,2, 0x227880c,2, 0x2278840,7, 0x2278900,3, 0x2278910,3, 0x2278920,5, 0x2278a00,6, 0x2278a40,5, 0x2278c00,2, 0x2278c0c,2, 0x2278c40,7, 0x2278d00,3, 0x2278d10,3, 0x2278d20,5, 0x2278e00,6, 0x2278e40,5, 0x2279000,2, 0x227900c,2, 0x2279040,7, 0x2279100,3, 0x2279110,3, 0x2279120,5, 0x2279200,6, 0x2279240,5, 0x2279400,2, 0x227940c,2, 0x2279440,7, 0x2279500,3, 0x2279510,3, 0x2279520,5, 0x2279600,6, 0x2279640,5, 0x2279800,2, 0x227980c,2, 0x2279840,7, 0x2279900,3, 0x2279910,3, 0x2279920,5, 0x2279a00,6, 0x2279a40,5, 0x2279c00,2, 0x2279c0c,2, 0x2279c40,7, 0x2279d00,3, 0x2279d10,3, 0x2279d20,5, 0x2279e00,6, 0x2279e40,5, 0x227a000,5, 0x227a040,9, 0x227a100,3, 0x227a200,1, 0x227a210,1, 0x227a220,1, 0x227a230,1, 0x227a240,1, 0x227a300,3, 0x227a314,1, 0x227a320,4, 0x227a400,5, 0x227a440,5, 0x227b000,80, 0x227b200,1, 0x2280000,3, 0x2280010,7, 0x2280030,10, 0x2280080,2, 0x2280100,6, 0x2280140,2, 0x2280180,2, 0x22801a0,1, 0x2280400,2, 0x2280440,4, 0x2280460,5, 0x2280478,1, 0x2280480,6, 0x22804a0,3, 0x22804b0,2, 0x2280500,5, 0x2280600,1, 0x2280800,5, 0x2280900,5, 0x2280a00,5, 0x2280b00,3, 0x2280c00,35, 0x2280d00,25, 0x2280d80,1, 0x2280dc0,3, 0x2280e00,2, 0x2280e20,2, 0x2290000,3, 0x229001c,4, 0x2290080,3, 0x2290090,2, 0x22900d4,4, 0x22900ec,27, 0x229015c,27, 0x22901cc,19, 0x2290224,120, 0x2290408,24, 0x229046c,84, 0x22905f8,4, 0x2290610,27, 0x2290680,27, 0x22906f0,19, 0x2290748,120, 0x229092c,24, 0x2290990,84, 0x2290b1c,4, 0x2290b34,27, 0x2290ba4,27, 0x2290c14,19, 0x2290c6c,120, 0x2290e50,24, 0x2290eb4,84, 0x2291040,4, 0x2291058,27, 0x22910c8,27, 0x2291138,19, 0x2291190,120, 0x2291374,24, 0x22913d8,84, 0x2291564,4, 0x229157c,27, 0x22915ec,27, 0x229165c,19, 0x22916b4,120, 0x2291898,24, 0x22918fc,84, 0x2291a88,4, 0x2291aa0,27, 0x2291b10,27, 0x2291b80,19, 0x2291bd8,120, 0x2291dbc,24, 0x2291e20,84, 0x2291fac,4, 0x2291fc4,27, 0x2292034,27, 0x22920a4,19, 0x22920fc,120, 0x22922e0,24, 0x2292344,84, 0x22924d0,4, 0x22924e8,27, 0x2292558,27, 0x22925c8,19, 0x2292620,120, 0x2292804,24, 0x2292868,84, 0x22929f4,4, 0x2292a0c,27, 0x2292a7c,27, 0x2292aec,19, 0x2292b44,120, 0x2292d28,24, 0x2292d8c,84, 0x2292f18,4, 0x2292f30,27, 0x2292fa0,27, 0x2293010,19, 0x2293068,120, 0x229324c,24, 0x22932b0,84, 0x229343c,4, 0x2293454,27, 0x22934c4,27, 0x2293534,19, 0x229358c,120, 0x2293770,24, 0x22937d4,84, 0x2293960,4, 0x2293978,27, 0x22939e8,27, 0x2293a58,19, 0x2293ab0,120, 0x2293c94,24, 0x2293cf8,84, 0x2293e84,4, 0x2293e9c,27, 0x2293f0c,27, 0x2293f7c,19, 0x2293fd4,120, 0x22941b8,24, 0x229421c,84, 0x22943a8,4, 0x22943c0,27, 0x2294430,27, 0x22944a0,19, 0x22944f8,120, 0x22946dc,24, 0x2294740,84, 0x22948cc,4, 0x22948e4,27, 0x2294954,27, 0x22949c4,19, 0x2294a1c,120, 0x2294c00,24, 0x2294c64,84, 0x2294df0,4, 0x2294e08,27, 0x2294e78,27, 0x2294ee8,19, 0x2294f40,120, 0x2295124,24, 0x2295188,84, 0x2295314,4, 0x229532c,27, 0x229539c,27, 0x229540c,19, 0x2295464,120, 0x2295648,24, 0x22956ac,84, 0x2295838,14, 0x2295940,13, 0x2295a44,13, 0x2295b48,16, 0x2295b90,42, 0x2295c40,2, 0x2295c90,54, 0x2295d70,58, 0x2295e60,58, 0x2295f50,58, 0x2296040,58, 0x2296130,58, 0x2296220,58, 0x2296310,58, 0x2296400,58, 0x22964f0,58, 0x22965e0,58, 0x22966d0,58, 0x22967c0,58, 0x22968b0,58, 0x22969a0,58, 0x2296a90,58, 0x2296b80,58, 0x2296c70,58, 0x2296d60,58, 0x2296e50,58, 0x2296f40,58, 0x2297030,58, 0x2297120,58, 0x2297210,58, 0x2297300,58, 0x22973f0,58, 0x22974e0,58, 0x22975d0,58, 0x22976c0,58, 0x22977b0,58, 0x22978a0,58, 0x2297990,58, 0x2297a80,101, 0x2297c90,49, 0x2297db0,18, 0x2297e00,11, 0x2297e30,4, 0x2297e54,45, 0x2297f58,9, 0x2297f88,3, 0x2297fa0,2, 0x2297fd8,14, 0x2298014,12, 0x2298158,3, 0x2298168,2, 0x2298174,68, 0x2298288,2, 0x2298294,68, 0x22983a8,1, 0x22983b0,2, 0x22983bc,68, 0x22984d0,2, 0x22984dc,68, 0x22985f0,1, 0x22985f8,4, 0x2298610,3, 0x2298624,12, 0x2298688,8, 0x22986dc,1, 0x22986e8,4, 0x2298700,3, 0x2298714,12, 0x2298778,8, 0x22987cc,1, 0x22987d8,4, 0x22987f0,3, 0x2298804,12, 0x2298868,8, 0x22988bc,1, 0x22988c8,4, 0x22988e0,3, 0x22988f4,12, 0x2298958,8, 0x22989ac,1, 0x22989b8,4, 0x22989d0,3, 0x22989e4,12, 0x2298a48,8, 0x2298a9c,1, 0x2298aa8,4, 0x2298ac0,3, 0x2298ad4,12, 0x2298b38,8, 0x2298b8c,1, 0x2298b98,4, 0x2298bb0,3, 0x2298bc4,12, 0x2298c28,8, 0x2298c7c,1, 0x2298c88,4, 0x2298ca0,3, 0x2298cb4,12, 0x2298d18,8, 0x2298d6c,1, 0x2298d78,4, 0x2298d90,3, 0x2298da4,12, 0x2298e08,8, 0x2298e5c,1, 0x2298e68,4, 0x2298e80,3, 0x2298e94,12, 0x2298ef8,8, 0x2298f4c,1, 0x2298f58,4, 0x2298f70,3, 0x2298f84,12, 0x2298fe8,8, 0x229903c,1, 0x2299048,4, 0x2299060,3, 0x2299074,12, 0x22990d8,8, 0x229912c,1, 0x2299138,4, 0x2299150,3, 0x2299164,12, 0x22991c8,8, 0x229921c,1, 0x2299228,4, 0x2299240,3, 0x2299254,12, 0x22992b8,8, 0x229930c,1, 0x2299318,4, 0x2299330,3, 0x2299344,12, 0x22993a8,8, 0x22993fc,1, 0x2299408,4, 0x2299420,3, 0x2299434,12, 0x2299498,8, 0x22994ec,1, 0x22994f8,4, 0x2299510,3, 0x2299524,12, 0x2299588,8, 0x22995dc,1, 0x22995e8,64, 0x2299748,5, 0x2299990,28, 0x2299a04,1, 0x2299a98,1, 0x2299be8,5, 0x2299c04,3, 0x2299c18,13, 0x2299c50,2, 0x229a000,15, 0x229a044,81, 0x229a18c,84, 0x229a2e0,84, 0x229a434,84, 0x229a588,84, 0x229a6dc,84, 0x229a830,84, 0x229a984,84, 0x229aad8,84, 0x229ac2c,84, 0x229ad80,84, 0x229aed4,84, 0x229b028,84, 0x229b17c,84, 0x229b2d0,84, 0x229b424,84, 0x229b578,84, 0x229b6cc,5, 0x229b760,4, 0x229b8e0,2414, 0x229dea4,80, 0x229e048,4, 0x229ebe0,1, 0x229ebf0,97, 0x229ed94,7, 0x229ee7c,1, 0x229eeac,9, 0x229eed4,5, 0x229eeec,11, 0x229ef2c,17, 0x229ef74,29, 0x229f034,3, 0x229f044,1, 0x229f054,17, 0x229fbe0,3, 0x229fbf0,2, 0x22a0000,3, 0x22a0018,2, 0x22a0024,14, 0x22a0060,27, 0x22a00d0,3, 0x22a00e0,3, 0x22a00f0,3, 0x22a0100,4, 0x22a0120,6, 0x22a0140,3, 0x22a0150,1, 0x22a015c,4, 0x22a0170,1, 0x22a0180,15, 0x22a01c0,1, 0x22a01c8,5, 0x22a01e0,1, 0x22a01f0,3, 0x22a0200,3, 0x22a0218,2, 0x22a0224,14, 0x22a0260,27, 0x22a02d0,3, 0x22a02e0,3, 0x22a02f0,3, 0x22a0300,4, 0x22a0320,6, 0x22a0340,3, 0x22a0350,1, 0x22a035c,4, 0x22a0370,1, 0x22a0380,15, 0x22a03c0,1, 0x22a03c8,5, 0x22a03e0,1, 0x22a03f0,3, 0x22a0400,3, 0x22a0418,2, 0x22a0424,14, 0x22a0460,27, 0x22a04d0,3, 0x22a04e0,3, 0x22a04f0,3, 0x22a0500,4, 0x22a0520,6, 0x22a0540,3, 0x22a0550,1, 0x22a055c,4, 0x22a0570,1, 0x22a0580,15, 0x22a05c0,1, 0x22a05c8,5, 0x22a05e0,1, 0x22a05f0,3, 0x22a0600,3, 0x22a0618,2, 0x22a0624,14, 0x22a0660,27, 0x22a06d0,3, 0x22a06e0,3, 0x22a06f0,3, 0x22a0700,4, 0x22a0720,6, 0x22a0740,3, 0x22a0750,1, 0x22a075c,4, 0x22a0770,1, 0x22a0780,15, 0x22a07c0,1, 0x22a07c8,5, 0x22a07e0,1, 0x22a07f0,3, 0x22a0800,3, 0x22a0818,2, 0x22a0824,14, 0x22a0860,27, 0x22a08d0,3, 0x22a08e0,3, 0x22a08f0,3, 0x22a0900,4, 0x22a0920,6, 0x22a0940,3, 0x22a0950,1, 0x22a095c,4, 0x22a0970,1, 0x22a0980,15, 0x22a09c0,1, 0x22a09c8,5, 0x22a09e0,1, 0x22a09f0,3, 0x22a1844,1, 0x22a1858,5, 0x22a1904,3, 0x22a1950,3, 0x22a1988,2, 0x22a19a0,7, 0x22a19c0,7, 0x22a19e0,4, 0x22a2000,24, 0x22a20f0,3, 0x22a2100,7, 0x22a2120,7, 0x22a2144,7, 0x22a2400,4, 0x22a2420,5, 0x22a25e0,3, 0x22a25f4,1, 0x22a25fc,4, 0x22a2620,3, 0x22a2680,8, 0x22a2700,19, 0x22a2800,99, 0x22a2a00,18, 0x22a2a80,8, 0x22a2b00,1, 0x22a3070,1, 0x22a3080,2, 0x22a308c,1, 0x22a3098,2, 0x22a3404,1, 0x22a3440,20, 0x22a3494,1, 0x22a349c,7, 0x22a34d0,4, 0x22a34e8,2, 0x22a34fc,8, 0x22a3520,7, 0x22a3540,7, 0x22a3560,7, 0x22a3580,7, 0x22a35a0,7, 0x22a35c0,7, 0x22a35e0,7, 0x22a3600,9, 0x22a363c,2, 0x22a3650,6, 0x22a3684,10, 0x22a3a00,10, 0x22a3a30,1, 0x22a3a40,8, 0x22a3a64,5, 0x22a4a04,3, 0x22a4b00,33, 0x22a4b90,3, 0x22a5000,8, 0x22a5040,8, 0x22a5104,1, 0x22a510c,3, 0x22a5124,1, 0x22a512c,3, 0x22a6000,13, 0x22a6200,14, 0x22a6240,1, 0x22a6248,1, 0x22a6258,1, 0x22a6260,8, 0x22a6284,1, 0x22a62a0,8, 0x22a6348,5, 0x22a67f0,1, 0x22a67f8,1, 0x22a6a10,12, 0x22a7000,19, 0x22a7a00,10, 0x22a7a80,3, 0x22a7b00,6, 0x22c0000,1, 0x22c000c,5, 0x22c0044,1, 0x22c0054,5, 0x22c0200,128, 0x22c0404,1, 0x22c0428,54, 0x22c0600,32, 0x22c0704,1, 0x22c0800,1, 0x22c0900,1, 0x22c0910,2, 0x22c0920,3, 0x22c0980,10, 0x22c0a00,19, 0x22c0b00,1, 0x22e0000,2, 0x22e000c,2, 0x22e0018,2, 0x22e0024,2, 0x22e0030,2, 0x22e003c,2, 0x22e0048,2, 0x22e0054,2, 0x22e0060,1, 0x22e0070,2, 0x22e007c,2, 0x22e0088,2, 0x22e0094,2, 0x22e00a0,2, 0x22e00ac,2, 0x22e00b8,2, 0x22e00c4,2, 0x22e00d0,1, 0x22e00e0,2, 0x22e00ec,2, 0x22e00f8,2, 0x22e0104,2, 0x22e0110,2, 0x22e011c,2, 0x22e0128,2, 0x22e0134,2, 0x22e0140,1, 0x22e0150,2, 0x22e015c,2, 0x22e0168,2, 0x22e0174,2, 0x22e0180,2, 0x22e018c,2, 0x22e0198,2, 0x22e01a4,2, 0x22e01b0,1, 0x22e01c0,57, 0x22e02b0,67, 0x22e03c0,16, 0x22e0410,23, 0x22e0470,16, 0x22e04c0,23, 0x22e0520,16, 0x22e0570,23, 0x22e05d0,16, 0x22e0620,23, 0x22e0680,16, 0x22e06d0,23, 0x22e0730,16, 0x22e0780,23, 0x22e07e0,16, 0x22e0830,23, 0x22e0890,16, 0x22e08e0,23, 0x22e0940,16, 0x22e0990,23, 0x22e09f0,16, 0x22e0a40,23, 0x22e0aa0,16, 0x22e0af0,23, 0x22e0b50,16, 0x22e0ba0,23, 0x22e0c00,16, 0x22e0c50,23, 0x22e0cb0,16, 0x22e0d00,23, 0x22e0d60,16, 0x22e0db0,23, 0x22e0e10,16, 0x22e0e60,23, 0x22e0ec0,16, 0x22e0f10,23, 0x22e0f70,16, 0x22e0fc0,23, 0x22e1020,16, 0x22e1070,23, 0x22e10d0,16, 0x22e1120,23, 0x22e1180,16, 0x22e11d0,23, 0x22e1230,16, 0x22e1280,23, 0x22e12e0,16, 0x22e1330,23, 0x22e1390,16, 0x22e13e0,23, 0x22e1440,16, 0x22e1490,23, 0x22e14f0,16, 0x22e1540,23, 0x22e15a0,16, 0x22e15f0,23, 0x22e1650,16, 0x22e16a0,23, 0x22e1700,16, 0x22e1750,23, 0x22e17b0,16, 0x22e1800,23, 0x22e1860,16, 0x22e18b0,23, 0x22e1910,16, 0x22e1960,2, 0x22f0000,4, 0x22f0014,2, 0x22f0020,8, 0x22f0044,2, 0x22f0050,13, 0x22f0088,20, 0x22f00dc,1, 0x22f0180,6, 0x22f0590,3, 0x22f05c0,2, 0x22f0a04,1, 0x22f0a0c,3, 0x22f0a20,1, 0x22f0ba0,4, 0x22f0c00,4, 0x22f0c20,3, 0x22f0c30,5, 0x22f0c50,52, 0x22f0d50,57, 0x22f0ec0,3, 0x22f0ffc,3, 0x22f1020,3, 0x22f1030,3, 0x22f1060,2, 0x22f1100,2, 0x22f1140,18, 0x22f11c0,30, 0x22f1240,14, 0x22f1280,28, 0x22f1300,2, 0x22f13a0,6, 0x22f1400,19, 0x22f1800,19, 0x22f1c00,19, 0x22f1c80,8, 0x22f1d00,3, 0x22f1d50,3, 0x22f1e00,3, 0x22f1e10,2, 0x22f1e20,6, 0x22f1e40,6, 0x22f1e60,6, 0x22f1e80,6, 0x22f1ea0,6, 0x22f1ec0,2, 0x22f1ecc,2, 0x22f1ee0,2, 0x22f1eec,2, 0x22f1f80,3, 0x22f1f90,60, 0x22f2100,32, 0x22f2200,32, 0x22f2300,32, 0x22f2400,32, 0x22f2500,32, 0x22f2600,32, 0x22f2700,32, 0x22f2800,32, 0x22f2900,32, 0x22f2a00,32, 0x22f2b00,32, 0x22f2c00,32, 0x22f2d00,32, 0x22f2e00,32, 0x22f2f00,32, 0x22f3000,32, 0x22f30c0,3, 0x22f4000,2, 0x22f4040,16, 0x22f4100,36, 0x22f4800,5, 0x22f4824,1, 0x22f482c,1, 0x22f4c04,1, 0x22f4cd8,74, 0x22f5000,7, 0x22f5020,4, 0x22f5204,1, 0x22f5280,35, 0x22f5310,4, 0x22f5404,1, 0x22f5480,34, 0x22f5510,10, 0x22f553c,3, 0x22f5800,7, 0x22f5820,4, 0x22f5a04,1, 0x22f5a80,35, 0x22f5b10,4, 0x22f5c04,1, 0x22f5c80,34, 0x22f5d10,10, 0x22f5d3c,3, 0x22fa000,5, 0x22fa01c,13, 0x22fa060,3, 0x22fa080,8, 0x22fa100,5, 0x22fa11c,13, 0x22fa160,3, 0x22fa180,8, 0x2400004,5, 0x2400020,3, 0x2400030,3, 0x2400040,13, 0x2400078,4, 0x240009c,25, 0x2400104,5, 0x2400120,3, 0x2400130,3, 0x2400140,13, 0x2400178,4, 0x240019c,25, 0x2400204,5, 0x2400220,3, 0x2400230,3, 0x2400240,13, 0x2400278,4, 0x240029c,25, 0x2400304,5, 0x2400320,3, 0x2400330,3, 0x2400340,13, 0x2400378,4, 0x240039c,25, 0x2400600,4, 0x2400c00,24, 0x2400c80,24, 0x2400d00,24, 0x2400d80,24, 0x2400e00,4, 0x2400e20,4, 0x2400e40,4, 0x2400e60,4, 0x2400e80,39, 0x2400f20,7, 0x2400f40,7, 0x2400f60,7, 0x2401000,12, 0x2401200,1, 0x2401218,2, 0x240122c,1, 0x2401280,1, 0x2401298,2, 0x24012ac,1, 0x2401300,1, 0x2401318,2, 0x240132c,1, 0x2401380,1, 0x2401398,2, 0x24013ac,1, 0x2401400,4, 0x2401420,2, 0x240142c,1, 0x2401480,4, 0x24014a0,2, 0x24014ac,1, 0x2401500,4, 0x2401520,2, 0x240152c,1, 0x2401580,4, 0x24015a0,2, 0x24015ac,1, 0x2401600,4, 0x2401640,4, 0x2401680,4, 0x24016c0,4, 0x2401700,7, 0x2401720,7, 0x2401740,7, 0x2401760,7, 0x2401780,4, 0x240179c,11, 0x24017d0,2, 0x24017e0,2, 0x24017f0,2, 0x2401900,44, 0x2402000,7, 0x2402020,4, 0x2402040,4, 0x2402060,7, 0x2402080,7, 0x24020a0,4, 0x24020c0,4, 0x24020e0,7, 0x2402100,7, 0x2402120,4, 0x2402140,4, 0x2402160,7, 0x2402180,7, 0x24021a0,4, 0x24021c0,4, 0x24021e0,7, 0x2402200,32, 0x2402b00,1, 0x2402b20,1, 0x2402b28,4, 0x2402b40,1, 0x2402b60,1, 0x2402b68,4, 0x2402b80,1, 0x2402ba0,1, 0x2402ba8,4, 0x2402bc0,1, 0x2402be0,1, 0x2402be8,4, 0x2402c00,7, 0x2402c20,1, 0x2402c54,18, 0x2402ca0,1, 0x2402cd4,18, 0x2402d20,1, 0x2402d54,18, 0x2402da0,1, 0x2402dd4,12, 0x2402e08,6, 0x2403100,7, 0x2403120,7, 0x2403140,7, 0x2403160,7, 0x2403180,3, 0x2404004,5, 0x2404020,3, 0x2404030,3, 0x2404040,13, 0x2404078,4, 0x240409c,25, 0x2404104,5, 0x2404120,3, 0x2404130,3, 0x2404140,13, 0x2404178,4, 0x240419c,25, 0x2404204,5, 0x2404220,3, 0x2404230,3, 0x2404240,13, 0x2404278,4, 0x240429c,25, 0x2404304,5, 0x2404320,3, 0x2404330,3, 0x2404340,13, 0x2404378,4, 0x240439c,25, 0x2404600,4, 0x2404c00,24, 0x2404c80,24, 0x2404d00,24, 0x2404d80,24, 0x2404e00,4, 0x2404e20,4, 0x2404e40,4, 0x2404e60,4, 0x2404e80,39, 0x2404f20,7, 0x2404f40,7, 0x2404f60,7, 0x2405000,12, 0x2405200,1, 0x2405218,2, 0x240522c,1, 0x2405280,1, 0x2405298,2, 0x24052ac,1, 0x2405300,1, 0x2405318,2, 0x240532c,1, 0x2405380,1, 0x2405398,2, 0x24053ac,1, 0x2405400,4, 0x2405420,2, 0x240542c,1, 0x2405480,4, 0x24054a0,2, 0x24054ac,1, 0x2405500,4, 0x2405520,2, 0x240552c,1, 0x2405580,4, 0x24055a0,2, 0x24055ac,1, 0x2405600,4, 0x2405640,4, 0x2405680,4, 0x24056c0,4, 0x2405700,7, 0x2405720,7, 0x2405740,7, 0x2405760,7, 0x2405780,4, 0x240579c,11, 0x24057d0,2, 0x24057e0,2, 0x24057f0,2, 0x2405900,44, 0x2406000,7, 0x2406020,4, 0x2406040,4, 0x2406060,7, 0x2406080,7, 0x24060a0,4, 0x24060c0,4, 0x24060e0,7, 0x2406100,7, 0x2406120,4, 0x2406140,4, 0x2406160,7, 0x2406180,7, 0x24061a0,4, 0x24061c0,4, 0x24061e0,7, 0x2406200,32, 0x2406b00,1, 0x2406b20,1, 0x2406b28,4, 0x2406b40,1, 0x2406b60,1, 0x2406b68,4, 0x2406b80,1, 0x2406ba0,1, 0x2406ba8,4, 0x2406bc0,1, 0x2406be0,1, 0x2406be8,4, 0x2406c00,7, 0x2406c20,1, 0x2406c54,18, 0x2406ca0,1, 0x2406cd4,18, 0x2406d20,1, 0x2406d54,18, 0x2406da0,1, 0x2406dd4,12, 0x2406e08,6, 0x2407100,7, 0x2407120,7, 0x2407140,7, 0x2407160,7, 0x2407180,3, 0x2408000,10, 0x2408080,3, 0x24080c0,1, 0x2408100,21, 0x2408180,13, 0x24081c4,7, 0x24081e4,7, 0x2408204,7, 0x2408224,8, 0x2409000,7, 0x2409030,2, 0x2409040,7, 0x2409070,2, 0x2409100,2, 0x2409120,2, 0x2409140,2, 0x2409160,2, 0x2409180,9, 0x2409200,7, 0x2409230,2, 0x2409240,7, 0x2409270,2, 0x2409300,2, 0x2409320,2, 0x2409340,2, 0x2409360,2, 0x2409380,9, 0x2409400,11, 0x2409500,11, 0x240a000,3, 0x240a010,2, 0x240a01c,5, 0x240a040,8, 0x240a080,3, 0x240a090,2, 0x240a09c,5, 0x240a0c0,8, 0x240a100,3, 0x240a110,2, 0x240a11c,5, 0x240a140,8, 0x240a180,3, 0x240a190,2, 0x240a19c,5, 0x240a1c0,8, 0x240a200,7, 0x240a220,12, 0x240a280,7, 0x240a2a0,12, 0x240a300,3, 0x240a310,1, 0x240a400,3, 0x240a410,2, 0x240a41c,5, 0x240a440,8, 0x240a480,3, 0x240a490,2, 0x240a49c,5, 0x240a4c0,8, 0x240a500,3, 0x240a510,2, 0x240a51c,5, 0x240a540,8, 0x240a580,3, 0x240a590,2, 0x240a59c,5, 0x240a5c0,8, 0x240a600,7, 0x240a620,12, 0x240a680,7, 0x240a6a0,12, 0x240a700,3, 0x240a710,1, 0x240a804,1, 0x240a824,21, 0x240a880,16, 0x240a900,5, 0x240a920,11, 0x240a950,9, 0x240a980,22, 0x240aa00,22, 0x240aa80,22, 0x240ab00,22, 0x240ab80,22, 0x240ac00,22, 0x240ac80,22, 0x240ad00,22, 0x240ad80,3, 0x240c000,16, 0x240c080,11, 0x240c100,11, 0x240c204,1, 0x240c224,21, 0x240c280,16, 0x240c300,11, 0x240c340,11, 0x240c800,21, 0x240c860,5, 0x240c880,6, 0x240c8a0,5, 0x240c8c0,6, 0x240c900,21, 0x240c960,5, 0x240c980,6, 0x240c9a0,5, 0x240c9c0,6, 0x240ca00,21, 0x240ca60,5, 0x240ca80,6, 0x240caa0,5, 0x240cac0,6, 0x240cb00,21, 0x240cb60,5, 0x240cb80,6, 0x240cba0,5, 0x240cbc0,6, 0x240cc00,9, 0x240cc48,7, 0x240cc68,2, 0x240cc74,9, 0x240cc9c,2, 0x240cd00,14, 0x240cd40,14, 0x240cd80,28, 0x240ce00,19, 0x240ce50,3, 0x240ce60,25, 0x240cec8,1, 0x240ced0,2, 0x240cee0,7, 0x240cf00,1, 0x240cf08,2, 0x240cffc,20, 0x240d050,25, 0x240d100,19, 0x240d150,25, 0x240d200,19, 0x240d250,25, 0x240d300,19, 0x240d350,25, 0x240d400,19, 0x240d450,25, 0x240d500,19, 0x240d550,25, 0x240d600,19, 0x240d650,25, 0x240d700,19, 0x240d750,25, 0x240d800,19, 0x240d850,25, 0x240d904,1, 0x240d914,10, 0x240d948,11, 0x240d980,2, 0x240d9a0,6, 0x240d9c0,2, 0x240d9cc,2, 0x240e000,35, 0x240ea00,10, 0x240ea80,3, 0x240eb00,6, 0x240f000,1, 0x240f008,5, 0x240f038,1, 0x240f044,1, 0x240f050,2, 0x240f100,13, 0x240f140,11, 0x240f170,12, 0x240f1a4,1, 0x240f200,104, 0x240f400,104, 0x240f600,104, 0x240f800,104, 0x2410000,13, 0x2410040,2, 0x2410054,4, 0x2410080,27, 0x2410100,12, 0x2410140,14, 0x2410180,28, 0x2410200,6, 0x2410240,6, 0x241025c,3, 0x2410280,5, 0x24102a0,8, 0x2410400,14, 0x2410440,14, 0x2410480,14, 0x24104c0,14, 0x2410540,3, 0x2410600,7, 0x2410620,14, 0x2410680,5, 0x24106a0,7, 0x2410800,13, 0x2410840,2, 0x2410854,4, 0x2410880,27, 0x2410900,12, 0x2410940,14, 0x2410980,28, 0x2410a00,6, 0x2410a40,6, 0x2410a5c,3, 0x2410a80,5, 0x2410aa0,8, 0x2410c00,14, 0x2410c40,14, 0x2410c80,14, 0x2410cc0,14, 0x2410d40,3, 0x2410e00,7, 0x2410e20,14, 0x2410e80,5, 0x2410ea0,7, 0x2411000,13, 0x2411040,2, 0x2411054,4, 0x2411080,27, 0x2411100,12, 0x2411140,14, 0x2411180,28, 0x2411200,6, 0x2411240,6, 0x241125c,3, 0x2411280,5, 0x24112a0,8, 0x2411400,14, 0x2411440,14, 0x2411480,14, 0x24114c0,14, 0x2411540,3, 0x2411600,7, 0x2411620,14, 0x2411680,5, 0x24116a0,7, 0x2411800,13, 0x2411840,2, 0x2411854,4, 0x2411880,27, 0x2411900,12, 0x2411940,14, 0x2411980,28, 0x2411a00,6, 0x2411a40,6, 0x2411a5c,3, 0x2411a80,5, 0x2411aa0,8, 0x2411c00,14, 0x2411c40,14, 0x2411c80,14, 0x2411cc0,14, 0x2411d40,3, 0x2411e00,7, 0x2411e20,14, 0x2411e80,5, 0x2411ea0,7, 0x2412000,8, 0x2412040,8, 0x2412080,1, 0x2412098,6, 0x2412100,10, 0x2412140,3, 0x2412150,2, 0x2412180,2, 0x2412200,6, 0x2412220,18, 0x2412280,4, 0x2412300,8, 0x2412400,2, 0x2412480,2, 0x2412800,28, 0x24129f0,4, 0x2413000,40, 0x2413100,64, 0x2413800,56, 0x2413be0,8, 0x2414000,13, 0x2414040,2, 0x2414054,4, 0x2414080,27, 0x2414100,12, 0x2414140,14, 0x2414180,28, 0x2414200,6, 0x2414240,6, 0x241425c,3, 0x2414280,5, 0x24142a0,8, 0x2414400,14, 0x2414440,14, 0x2414480,14, 0x24144c0,14, 0x2414540,3, 0x2414600,7, 0x2414620,14, 0x2414680,5, 0x24146a0,7, 0x2414800,13, 0x2414840,2, 0x2414854,4, 0x2414880,27, 0x2414900,12, 0x2414940,14, 0x2414980,28, 0x2414a00,6, 0x2414a40,6, 0x2414a5c,3, 0x2414a80,5, 0x2414aa0,8, 0x2414c00,14, 0x2414c40,14, 0x2414c80,14, 0x2414cc0,14, 0x2414d40,3, 0x2414e00,7, 0x2414e20,14, 0x2414e80,5, 0x2414ea0,7, 0x2415000,13, 0x2415040,2, 0x2415054,4, 0x2415080,27, 0x2415100,12, 0x2415140,14, 0x2415180,28, 0x2415200,6, 0x2415240,6, 0x241525c,3, 0x2415280,5, 0x24152a0,8, 0x2415400,14, 0x2415440,14, 0x2415480,14, 0x24154c0,14, 0x2415540,3, 0x2415600,7, 0x2415620,14, 0x2415680,5, 0x24156a0,7, 0x2415800,13, 0x2415840,2, 0x2415854,4, 0x2415880,27, 0x2415900,12, 0x2415940,14, 0x2415980,28, 0x2415a00,6, 0x2415a40,6, 0x2415a5c,3, 0x2415a80,5, 0x2415aa0,8, 0x2415c00,14, 0x2415c40,14, 0x2415c80,14, 0x2415cc0,14, 0x2415d40,3, 0x2415e00,7, 0x2415e20,14, 0x2415e80,5, 0x2415ea0,7, 0x2416000,8, 0x2416040,8, 0x2416080,1, 0x2416098,6, 0x2416100,10, 0x2416140,3, 0x2416150,2, 0x2416180,2, 0x2416200,6, 0x2416220,18, 0x2416280,4, 0x2416300,8, 0x2416400,2, 0x2416480,2, 0x2416800,28, 0x24169f0,4, 0x2417000,40, 0x2417100,64, 0x2417800,56, 0x2417be0,8, 0x2418000,2, 0x241800c,2, 0x2418040,7, 0x2418100,3, 0x2418110,3, 0x2418120,5, 0x2418200,6, 0x2418240,5, 0x2418400,2, 0x241840c,2, 0x2418440,7, 0x2418500,3, 0x2418510,3, 0x2418520,5, 0x2418600,6, 0x2418640,5, 0x2418800,2, 0x241880c,2, 0x2418840,7, 0x2418900,3, 0x2418910,3, 0x2418920,5, 0x2418a00,6, 0x2418a40,5, 0x2418c00,2, 0x2418c0c,2, 0x2418c40,7, 0x2418d00,3, 0x2418d10,3, 0x2418d20,5, 0x2418e00,6, 0x2418e40,5, 0x2419000,2, 0x241900c,2, 0x2419040,7, 0x2419100,3, 0x2419110,3, 0x2419120,5, 0x2419200,6, 0x2419240,5, 0x2419400,2, 0x241940c,2, 0x2419440,7, 0x2419500,3, 0x2419510,3, 0x2419520,5, 0x2419600,6, 0x2419640,5, 0x2419800,2, 0x241980c,2, 0x2419840,7, 0x2419900,3, 0x2419910,3, 0x2419920,5, 0x2419a00,6, 0x2419a40,5, 0x2419c00,2, 0x2419c0c,2, 0x2419c40,7, 0x2419d00,3, 0x2419d10,3, 0x2419d20,5, 0x2419e00,6, 0x2419e40,5, 0x241a000,5, 0x241a040,9, 0x241a100,3, 0x241a200,1, 0x241a210,1, 0x241a220,1, 0x241a230,1, 0x241a240,1, 0x241a300,3, 0x241a314,1, 0x241a320,4, 0x241a400,5, 0x241a440,5, 0x241b000,80, 0x241b200,1, 0x2420004,5, 0x2420020,3, 0x2420030,3, 0x2420040,13, 0x2420078,4, 0x242009c,25, 0x2420104,5, 0x2420120,3, 0x2420130,3, 0x2420140,13, 0x2420178,4, 0x242019c,25, 0x2420204,5, 0x2420220,3, 0x2420230,3, 0x2420240,13, 0x2420278,4, 0x242029c,25, 0x2420304,5, 0x2420320,3, 0x2420330,3, 0x2420340,13, 0x2420378,4, 0x242039c,25, 0x2420600,4, 0x2420c00,24, 0x2420c80,24, 0x2420d00,24, 0x2420d80,24, 0x2420e00,4, 0x2420e20,4, 0x2420e40,4, 0x2420e60,4, 0x2420e80,39, 0x2420f20,7, 0x2420f40,7, 0x2420f60,7, 0x2421000,12, 0x2421200,1, 0x2421218,2, 0x242122c,1, 0x2421280,1, 0x2421298,2, 0x24212ac,1, 0x2421300,1, 0x2421318,2, 0x242132c,1, 0x2421380,1, 0x2421398,2, 0x24213ac,1, 0x2421400,4, 0x2421420,2, 0x242142c,1, 0x2421480,4, 0x24214a0,2, 0x24214ac,1, 0x2421500,4, 0x2421520,2, 0x242152c,1, 0x2421580,4, 0x24215a0,2, 0x24215ac,1, 0x2421600,4, 0x2421640,4, 0x2421680,4, 0x24216c0,4, 0x2421700,7, 0x2421720,7, 0x2421740,7, 0x2421760,7, 0x2421780,4, 0x242179c,11, 0x24217d0,2, 0x24217e0,2, 0x24217f0,2, 0x2421900,44, 0x2422000,7, 0x2422020,4, 0x2422040,4, 0x2422060,7, 0x2422080,7, 0x24220a0,4, 0x24220c0,4, 0x24220e0,7, 0x2422100,7, 0x2422120,4, 0x2422140,4, 0x2422160,7, 0x2422180,7, 0x24221a0,4, 0x24221c0,4, 0x24221e0,7, 0x2422200,32, 0x2422b00,1, 0x2422b20,1, 0x2422b28,4, 0x2422b40,1, 0x2422b60,1, 0x2422b68,4, 0x2422b80,1, 0x2422ba0,1, 0x2422ba8,4, 0x2422bc0,1, 0x2422be0,1, 0x2422be8,4, 0x2422c00,7, 0x2422c20,1, 0x2422c54,18, 0x2422ca0,1, 0x2422cd4,18, 0x2422d20,1, 0x2422d54,18, 0x2422da0,1, 0x2422dd4,12, 0x2422e08,6, 0x2423100,7, 0x2423120,7, 0x2423140,7, 0x2423160,7, 0x2423180,3, 0x2424004,5, 0x2424020,3, 0x2424030,3, 0x2424040,13, 0x2424078,4, 0x242409c,25, 0x2424104,5, 0x2424120,3, 0x2424130,3, 0x2424140,13, 0x2424178,4, 0x242419c,25, 0x2424204,5, 0x2424220,3, 0x2424230,3, 0x2424240,13, 0x2424278,4, 0x242429c,25, 0x2424304,5, 0x2424320,3, 0x2424330,3, 0x2424340,13, 0x2424378,4, 0x242439c,25, 0x2424600,4, 0x2424c00,24, 0x2424c80,24, 0x2424d00,24, 0x2424d80,24, 0x2424e00,4, 0x2424e20,4, 0x2424e40,4, 0x2424e60,4, 0x2424e80,39, 0x2424f20,7, 0x2424f40,7, 0x2424f60,7, 0x2425000,12, 0x2425200,1, 0x2425218,2, 0x242522c,1, 0x2425280,1, 0x2425298,2, 0x24252ac,1, 0x2425300,1, 0x2425318,2, 0x242532c,1, 0x2425380,1, 0x2425398,2, 0x24253ac,1, 0x2425400,4, 0x2425420,2, 0x242542c,1, 0x2425480,4, 0x24254a0,2, 0x24254ac,1, 0x2425500,4, 0x2425520,2, 0x242552c,1, 0x2425580,4, 0x24255a0,2, 0x24255ac,1, 0x2425600,4, 0x2425640,4, 0x2425680,4, 0x24256c0,4, 0x2425700,7, 0x2425720,7, 0x2425740,7, 0x2425760,7, 0x2425780,4, 0x242579c,11, 0x24257d0,2, 0x24257e0,2, 0x24257f0,2, 0x2425900,44, 0x2426000,7, 0x2426020,4, 0x2426040,4, 0x2426060,7, 0x2426080,7, 0x24260a0,4, 0x24260c0,4, 0x24260e0,7, 0x2426100,7, 0x2426120,4, 0x2426140,4, 0x2426160,7, 0x2426180,7, 0x24261a0,4, 0x24261c0,4, 0x24261e0,7, 0x2426200,32, 0x2426b00,1, 0x2426b20,1, 0x2426b28,4, 0x2426b40,1, 0x2426b60,1, 0x2426b68,4, 0x2426b80,1, 0x2426ba0,1, 0x2426ba8,4, 0x2426bc0,1, 0x2426be0,1, 0x2426be8,4, 0x2426c00,7, 0x2426c20,1, 0x2426c54,18, 0x2426ca0,1, 0x2426cd4,18, 0x2426d20,1, 0x2426d54,18, 0x2426da0,1, 0x2426dd4,12, 0x2426e08,6, 0x2427100,7, 0x2427120,7, 0x2427140,7, 0x2427160,7, 0x2427180,3, 0x2428000,10, 0x2428080,3, 0x24280c0,1, 0x2428100,21, 0x2428180,13, 0x24281c4,7, 0x24281e4,7, 0x2428204,7, 0x2428224,8, 0x2429000,7, 0x2429030,2, 0x2429040,7, 0x2429070,2, 0x2429100,2, 0x2429120,2, 0x2429140,2, 0x2429160,2, 0x2429180,9, 0x2429200,7, 0x2429230,2, 0x2429240,7, 0x2429270,2, 0x2429300,2, 0x2429320,2, 0x2429340,2, 0x2429360,2, 0x2429380,9, 0x2429400,11, 0x2429500,11, 0x242a000,3, 0x242a010,2, 0x242a01c,5, 0x242a040,8, 0x242a080,3, 0x242a090,2, 0x242a09c,5, 0x242a0c0,8, 0x242a100,3, 0x242a110,2, 0x242a11c,5, 0x242a140,8, 0x242a180,3, 0x242a190,2, 0x242a19c,5, 0x242a1c0,8, 0x242a200,7, 0x242a220,12, 0x242a280,7, 0x242a2a0,12, 0x242a300,3, 0x242a310,1, 0x242a400,3, 0x242a410,2, 0x242a41c,5, 0x242a440,8, 0x242a480,3, 0x242a490,2, 0x242a49c,5, 0x242a4c0,8, 0x242a500,3, 0x242a510,2, 0x242a51c,5, 0x242a540,8, 0x242a580,3, 0x242a590,2, 0x242a59c,5, 0x242a5c0,8, 0x242a600,7, 0x242a620,12, 0x242a680,7, 0x242a6a0,12, 0x242a700,3, 0x242a710,1, 0x242a804,1, 0x242a824,21, 0x242a880,16, 0x242a900,5, 0x242a920,11, 0x242a950,9, 0x242a980,22, 0x242aa00,22, 0x242aa80,22, 0x242ab00,22, 0x242ab80,22, 0x242ac00,22, 0x242ac80,22, 0x242ad00,22, 0x242ad80,3, 0x242c000,16, 0x242c080,11, 0x242c100,11, 0x242c204,1, 0x242c224,21, 0x242c280,16, 0x242c300,11, 0x242c340,11, 0x242c800,21, 0x242c860,5, 0x242c880,6, 0x242c8a0,5, 0x242c8c0,6, 0x242c900,21, 0x242c960,5, 0x242c980,6, 0x242c9a0,5, 0x242c9c0,6, 0x242ca00,21, 0x242ca60,5, 0x242ca80,6, 0x242caa0,5, 0x242cac0,6, 0x242cb00,21, 0x242cb60,5, 0x242cb80,6, 0x242cba0,5, 0x242cbc0,6, 0x242cc00,9, 0x242cc48,7, 0x242cc68,2, 0x242cc74,9, 0x242cc9c,2, 0x242cd00,14, 0x242cd40,14, 0x242cd80,28, 0x242ce00,19, 0x242ce50,3, 0x242ce60,25, 0x242cec8,1, 0x242ced0,2, 0x242cee0,7, 0x242cf00,1, 0x242cf08,2, 0x242cffc,20, 0x242d050,25, 0x242d100,19, 0x242d150,25, 0x242d200,19, 0x242d250,25, 0x242d300,19, 0x242d350,25, 0x242d400,19, 0x242d450,25, 0x242d500,19, 0x242d550,25, 0x242d600,19, 0x242d650,25, 0x242d700,19, 0x242d750,25, 0x242d800,19, 0x242d850,25, 0x242d904,1, 0x242d914,10, 0x242d948,11, 0x242d980,2, 0x242d9a0,6, 0x242d9c0,2, 0x242d9cc,2, 0x242e000,35, 0x242ea00,10, 0x242ea80,3, 0x242eb00,6, 0x242f000,1, 0x242f008,5, 0x242f038,1, 0x242f044,1, 0x242f050,2, 0x242f100,13, 0x242f140,11, 0x242f170,12, 0x242f1a4,1, 0x242f200,104, 0x242f400,104, 0x242f600,104, 0x242f800,104, 0x2430000,13, 0x2430040,2, 0x2430054,4, 0x2430080,27, 0x2430100,12, 0x2430140,14, 0x2430180,28, 0x2430200,6, 0x2430240,6, 0x243025c,3, 0x2430280,5, 0x24302a0,8, 0x2430400,14, 0x2430440,14, 0x2430480,14, 0x24304c0,14, 0x2430540,3, 0x2430600,7, 0x2430620,14, 0x2430680,5, 0x24306a0,7, 0x2430800,13, 0x2430840,2, 0x2430854,4, 0x2430880,27, 0x2430900,12, 0x2430940,14, 0x2430980,28, 0x2430a00,6, 0x2430a40,6, 0x2430a5c,3, 0x2430a80,5, 0x2430aa0,8, 0x2430c00,14, 0x2430c40,14, 0x2430c80,14, 0x2430cc0,14, 0x2430d40,3, 0x2430e00,7, 0x2430e20,14, 0x2430e80,5, 0x2430ea0,7, 0x2431000,13, 0x2431040,2, 0x2431054,4, 0x2431080,27, 0x2431100,12, 0x2431140,14, 0x2431180,28, 0x2431200,6, 0x2431240,6, 0x243125c,3, 0x2431280,5, 0x24312a0,8, 0x2431400,14, 0x2431440,14, 0x2431480,14, 0x24314c0,14, 0x2431540,3, 0x2431600,7, 0x2431620,14, 0x2431680,5, 0x24316a0,7, 0x2431800,13, 0x2431840,2, 0x2431854,4, 0x2431880,27, 0x2431900,12, 0x2431940,14, 0x2431980,28, 0x2431a00,6, 0x2431a40,6, 0x2431a5c,3, 0x2431a80,5, 0x2431aa0,8, 0x2431c00,14, 0x2431c40,14, 0x2431c80,14, 0x2431cc0,14, 0x2431d40,3, 0x2431e00,7, 0x2431e20,14, 0x2431e80,5, 0x2431ea0,7, 0x2432000,8, 0x2432040,8, 0x2432080,1, 0x2432098,6, 0x2432100,10, 0x2432140,3, 0x2432150,2, 0x2432180,2, 0x2432200,6, 0x2432220,18, 0x2432280,4, 0x2432300,8, 0x2432400,2, 0x2432480,2, 0x2432800,28, 0x24329f0,4, 0x2433000,40, 0x2433100,64, 0x2433800,56, 0x2433be0,8, 0x2434000,13, 0x2434040,2, 0x2434054,4, 0x2434080,27, 0x2434100,12, 0x2434140,14, 0x2434180,28, 0x2434200,6, 0x2434240,6, 0x243425c,3, 0x2434280,5, 0x24342a0,8, 0x2434400,14, 0x2434440,14, 0x2434480,14, 0x24344c0,14, 0x2434540,3, 0x2434600,7, 0x2434620,14, 0x2434680,5, 0x24346a0,7, 0x2434800,13, 0x2434840,2, 0x2434854,4, 0x2434880,27, 0x2434900,12, 0x2434940,14, 0x2434980,28, 0x2434a00,6, 0x2434a40,6, 0x2434a5c,3, 0x2434a80,5, 0x2434aa0,8, 0x2434c00,14, 0x2434c40,14, 0x2434c80,14, 0x2434cc0,14, 0x2434d40,3, 0x2434e00,7, 0x2434e20,14, 0x2434e80,5, 0x2434ea0,7, 0x2435000,13, 0x2435040,2, 0x2435054,4, 0x2435080,27, 0x2435100,12, 0x2435140,14, 0x2435180,28, 0x2435200,6, 0x2435240,6, 0x243525c,3, 0x2435280,5, 0x24352a0,8, 0x2435400,14, 0x2435440,14, 0x2435480,14, 0x24354c0,14, 0x2435540,3, 0x2435600,7, 0x2435620,14, 0x2435680,5, 0x24356a0,7, 0x2435800,13, 0x2435840,2, 0x2435854,4, 0x2435880,27, 0x2435900,12, 0x2435940,14, 0x2435980,28, 0x2435a00,6, 0x2435a40,6, 0x2435a5c,3, 0x2435a80,5, 0x2435aa0,8, 0x2435c00,14, 0x2435c40,14, 0x2435c80,14, 0x2435cc0,14, 0x2435d40,3, 0x2435e00,7, 0x2435e20,14, 0x2435e80,5, 0x2435ea0,7, 0x2436000,8, 0x2436040,8, 0x2436080,1, 0x2436098,6, 0x2436100,10, 0x2436140,3, 0x2436150,2, 0x2436180,2, 0x2436200,6, 0x2436220,18, 0x2436280,4, 0x2436300,8, 0x2436400,2, 0x2436480,2, 0x2436800,28, 0x24369f0,4, 0x2437000,40, 0x2437100,64, 0x2437800,56, 0x2437be0,8, 0x2438000,2, 0x243800c,2, 0x2438040,7, 0x2438100,3, 0x2438110,3, 0x2438120,5, 0x2438200,6, 0x2438240,5, 0x2438400,2, 0x243840c,2, 0x2438440,7, 0x2438500,3, 0x2438510,3, 0x2438520,5, 0x2438600,6, 0x2438640,5, 0x2438800,2, 0x243880c,2, 0x2438840,7, 0x2438900,3, 0x2438910,3, 0x2438920,5, 0x2438a00,6, 0x2438a40,5, 0x2438c00,2, 0x2438c0c,2, 0x2438c40,7, 0x2438d00,3, 0x2438d10,3, 0x2438d20,5, 0x2438e00,6, 0x2438e40,5, 0x2439000,2, 0x243900c,2, 0x2439040,7, 0x2439100,3, 0x2439110,3, 0x2439120,5, 0x2439200,6, 0x2439240,5, 0x2439400,2, 0x243940c,2, 0x2439440,7, 0x2439500,3, 0x2439510,3, 0x2439520,5, 0x2439600,6, 0x2439640,5, 0x2439800,2, 0x243980c,2, 0x2439840,7, 0x2439900,3, 0x2439910,3, 0x2439920,5, 0x2439a00,6, 0x2439a40,5, 0x2439c00,2, 0x2439c0c,2, 0x2439c40,7, 0x2439d00,3, 0x2439d10,3, 0x2439d20,5, 0x2439e00,6, 0x2439e40,5, 0x243a000,5, 0x243a040,9, 0x243a100,3, 0x243a200,1, 0x243a210,1, 0x243a220,1, 0x243a230,1, 0x243a240,1, 0x243a300,3, 0x243a314,1, 0x243a320,4, 0x243a400,5, 0x243a440,5, 0x243b000,80, 0x243b200,1, 0x2440004,5, 0x2440020,3, 0x2440030,3, 0x2440040,13, 0x2440078,4, 0x244009c,25, 0x2440104,5, 0x2440120,3, 0x2440130,3, 0x2440140,13, 0x2440178,4, 0x244019c,25, 0x2440204,5, 0x2440220,3, 0x2440230,3, 0x2440240,13, 0x2440278,4, 0x244029c,25, 0x2440304,5, 0x2440320,3, 0x2440330,3, 0x2440340,13, 0x2440378,4, 0x244039c,25, 0x2440600,4, 0x2440c00,24, 0x2440c80,24, 0x2440d00,24, 0x2440d80,24, 0x2440e00,4, 0x2440e20,4, 0x2440e40,4, 0x2440e60,4, 0x2440e80,39, 0x2440f20,7, 0x2440f40,7, 0x2440f60,7, 0x2441000,12, 0x2441200,1, 0x2441218,2, 0x244122c,1, 0x2441280,1, 0x2441298,2, 0x24412ac,1, 0x2441300,1, 0x2441318,2, 0x244132c,1, 0x2441380,1, 0x2441398,2, 0x24413ac,1, 0x2441400,4, 0x2441420,2, 0x244142c,1, 0x2441480,4, 0x24414a0,2, 0x24414ac,1, 0x2441500,4, 0x2441520,2, 0x244152c,1, 0x2441580,4, 0x24415a0,2, 0x24415ac,1, 0x2441600,4, 0x2441640,4, 0x2441680,4, 0x24416c0,4, 0x2441700,7, 0x2441720,7, 0x2441740,7, 0x2441760,7, 0x2441780,4, 0x244179c,11, 0x24417d0,2, 0x24417e0,2, 0x24417f0,2, 0x2441900,44, 0x2442000,7, 0x2442020,4, 0x2442040,4, 0x2442060,7, 0x2442080,7, 0x24420a0,4, 0x24420c0,4, 0x24420e0,7, 0x2442100,7, 0x2442120,4, 0x2442140,4, 0x2442160,7, 0x2442180,7, 0x24421a0,4, 0x24421c0,4, 0x24421e0,7, 0x2442200,32, 0x2442b00,1, 0x2442b20,1, 0x2442b28,4, 0x2442b40,1, 0x2442b60,1, 0x2442b68,4, 0x2442b80,1, 0x2442ba0,1, 0x2442ba8,4, 0x2442bc0,1, 0x2442be0,1, 0x2442be8,4, 0x2442c00,7, 0x2442c20,1, 0x2442c54,18, 0x2442ca0,1, 0x2442cd4,18, 0x2442d20,1, 0x2442d54,18, 0x2442da0,1, 0x2442dd4,12, 0x2442e08,6, 0x2443100,7, 0x2443120,7, 0x2443140,7, 0x2443160,7, 0x2443180,3, 0x2444004,5, 0x2444020,3, 0x2444030,3, 0x2444040,13, 0x2444078,4, 0x244409c,25, 0x2444104,5, 0x2444120,3, 0x2444130,3, 0x2444140,13, 0x2444178,4, 0x244419c,25, 0x2444204,5, 0x2444220,3, 0x2444230,3, 0x2444240,13, 0x2444278,4, 0x244429c,25, 0x2444304,5, 0x2444320,3, 0x2444330,3, 0x2444340,13, 0x2444378,4, 0x244439c,25, 0x2444600,4, 0x2444c00,24, 0x2444c80,24, 0x2444d00,24, 0x2444d80,24, 0x2444e00,4, 0x2444e20,4, 0x2444e40,4, 0x2444e60,4, 0x2444e80,39, 0x2444f20,7, 0x2444f40,7, 0x2444f60,7, 0x2445000,12, 0x2445200,1, 0x2445218,2, 0x244522c,1, 0x2445280,1, 0x2445298,2, 0x24452ac,1, 0x2445300,1, 0x2445318,2, 0x244532c,1, 0x2445380,1, 0x2445398,2, 0x24453ac,1, 0x2445400,4, 0x2445420,2, 0x244542c,1, 0x2445480,4, 0x24454a0,2, 0x24454ac,1, 0x2445500,4, 0x2445520,2, 0x244552c,1, 0x2445580,4, 0x24455a0,2, 0x24455ac,1, 0x2445600,4, 0x2445640,4, 0x2445680,4, 0x24456c0,4, 0x2445700,7, 0x2445720,7, 0x2445740,7, 0x2445760,7, 0x2445780,4, 0x244579c,11, 0x24457d0,2, 0x24457e0,2, 0x24457f0,2, 0x2445900,44, 0x2446000,7, 0x2446020,4, 0x2446040,4, 0x2446060,7, 0x2446080,7, 0x24460a0,4, 0x24460c0,4, 0x24460e0,7, 0x2446100,7, 0x2446120,4, 0x2446140,4, 0x2446160,7, 0x2446180,7, 0x24461a0,4, 0x24461c0,4, 0x24461e0,7, 0x2446200,32, 0x2446b00,1, 0x2446b20,1, 0x2446b28,4, 0x2446b40,1, 0x2446b60,1, 0x2446b68,4, 0x2446b80,1, 0x2446ba0,1, 0x2446ba8,4, 0x2446bc0,1, 0x2446be0,1, 0x2446be8,4, 0x2446c00,7, 0x2446c20,1, 0x2446c54,18, 0x2446ca0,1, 0x2446cd4,18, 0x2446d20,1, 0x2446d54,18, 0x2446da0,1, 0x2446dd4,12, 0x2446e08,6, 0x2447100,7, 0x2447120,7, 0x2447140,7, 0x2447160,7, 0x2447180,3, 0x2448000,10, 0x2448080,3, 0x24480c0,1, 0x2448100,21, 0x2448180,13, 0x24481c4,7, 0x24481e4,7, 0x2448204,7, 0x2448224,8, 0x2449000,7, 0x2449030,2, 0x2449040,7, 0x2449070,2, 0x2449100,2, 0x2449120,2, 0x2449140,2, 0x2449160,2, 0x2449180,9, 0x2449200,7, 0x2449230,2, 0x2449240,7, 0x2449270,2, 0x2449300,2, 0x2449320,2, 0x2449340,2, 0x2449360,2, 0x2449380,9, 0x2449400,11, 0x2449500,11, 0x244a000,3, 0x244a010,2, 0x244a01c,5, 0x244a040,8, 0x244a080,3, 0x244a090,2, 0x244a09c,5, 0x244a0c0,8, 0x244a100,3, 0x244a110,2, 0x244a11c,5, 0x244a140,8, 0x244a180,3, 0x244a190,2, 0x244a19c,5, 0x244a1c0,8, 0x244a200,7, 0x244a220,12, 0x244a280,7, 0x244a2a0,12, 0x244a300,3, 0x244a310,1, 0x244a400,3, 0x244a410,2, 0x244a41c,5, 0x244a440,8, 0x244a480,3, 0x244a490,2, 0x244a49c,5, 0x244a4c0,8, 0x244a500,3, 0x244a510,2, 0x244a51c,5, 0x244a540,8, 0x244a580,3, 0x244a590,2, 0x244a59c,5, 0x244a5c0,8, 0x244a600,7, 0x244a620,12, 0x244a680,7, 0x244a6a0,12, 0x244a700,3, 0x244a710,1, 0x244a804,1, 0x244a824,21, 0x244a880,16, 0x244a900,5, 0x244a920,11, 0x244a950,9, 0x244a980,22, 0x244aa00,22, 0x244aa80,22, 0x244ab00,22, 0x244ab80,22, 0x244ac00,22, 0x244ac80,22, 0x244ad00,22, 0x244ad80,3, 0x244c000,16, 0x244c080,11, 0x244c100,11, 0x244c204,1, 0x244c224,21, 0x244c280,16, 0x244c300,11, 0x244c340,11, 0x244c800,21, 0x244c860,5, 0x244c880,6, 0x244c8a0,5, 0x244c8c0,6, 0x244c900,21, 0x244c960,5, 0x244c980,6, 0x244c9a0,5, 0x244c9c0,6, 0x244ca00,21, 0x244ca60,5, 0x244ca80,6, 0x244caa0,5, 0x244cac0,6, 0x244cb00,21, 0x244cb60,5, 0x244cb80,6, 0x244cba0,5, 0x244cbc0,6, 0x244cc00,9, 0x244cc48,7, 0x244cc68,2, 0x244cc74,9, 0x244cc9c,2, 0x244cd00,14, 0x244cd40,14, 0x244cd80,28, 0x244ce00,19, 0x244ce50,3, 0x244ce60,25, 0x244cec8,1, 0x244ced0,2, 0x244cee0,7, 0x244cf00,1, 0x244cf08,2, 0x244cffc,20, 0x244d050,25, 0x244d100,19, 0x244d150,25, 0x244d200,19, 0x244d250,25, 0x244d300,19, 0x244d350,25, 0x244d400,19, 0x244d450,25, 0x244d500,19, 0x244d550,25, 0x244d600,19, 0x244d650,25, 0x244d700,19, 0x244d750,25, 0x244d800,19, 0x244d850,25, 0x244d904,1, 0x244d914,10, 0x244d948,11, 0x244d980,2, 0x244d9a0,6, 0x244d9c0,2, 0x244d9cc,2, 0x244e000,35, 0x244ea00,10, 0x244ea80,3, 0x244eb00,6, 0x244f000,1, 0x244f008,5, 0x244f038,1, 0x244f044,1, 0x244f050,2, 0x244f100,13, 0x244f140,11, 0x244f170,12, 0x244f1a4,1, 0x244f200,104, 0x244f400,104, 0x244f600,104, 0x244f800,104, 0x2450000,13, 0x2450040,2, 0x2450054,4, 0x2450080,27, 0x2450100,12, 0x2450140,14, 0x2450180,28, 0x2450200,6, 0x2450240,6, 0x245025c,3, 0x2450280,5, 0x24502a0,8, 0x2450400,14, 0x2450440,14, 0x2450480,14, 0x24504c0,14, 0x2450540,3, 0x2450600,7, 0x2450620,14, 0x2450680,5, 0x24506a0,7, 0x2450800,13, 0x2450840,2, 0x2450854,4, 0x2450880,27, 0x2450900,12, 0x2450940,14, 0x2450980,28, 0x2450a00,6, 0x2450a40,6, 0x2450a5c,3, 0x2450a80,5, 0x2450aa0,8, 0x2450c00,14, 0x2450c40,14, 0x2450c80,14, 0x2450cc0,14, 0x2450d40,3, 0x2450e00,7, 0x2450e20,14, 0x2450e80,5, 0x2450ea0,7, 0x2451000,13, 0x2451040,2, 0x2451054,4, 0x2451080,27, 0x2451100,12, 0x2451140,14, 0x2451180,28, 0x2451200,6, 0x2451240,6, 0x245125c,3, 0x2451280,5, 0x24512a0,8, 0x2451400,14, 0x2451440,14, 0x2451480,14, 0x24514c0,14, 0x2451540,3, 0x2451600,7, 0x2451620,14, 0x2451680,5, 0x24516a0,7, 0x2451800,13, 0x2451840,2, 0x2451854,4, 0x2451880,27, 0x2451900,12, 0x2451940,14, 0x2451980,28, 0x2451a00,6, 0x2451a40,6, 0x2451a5c,3, 0x2451a80,5, 0x2451aa0,8, 0x2451c00,14, 0x2451c40,14, 0x2451c80,14, 0x2451cc0,14, 0x2451d40,3, 0x2451e00,7, 0x2451e20,14, 0x2451e80,5, 0x2451ea0,7, 0x2452000,8, 0x2452040,8, 0x2452080,1, 0x2452098,6, 0x2452100,10, 0x2452140,3, 0x2452150,2, 0x2452180,2, 0x2452200,6, 0x2452220,18, 0x2452280,4, 0x2452300,8, 0x2452400,2, 0x2452480,2, 0x2452800,28, 0x24529f0,4, 0x2453000,40, 0x2453100,64, 0x2453800,56, 0x2453be0,8, 0x2454000,13, 0x2454040,2, 0x2454054,4, 0x2454080,27, 0x2454100,12, 0x2454140,14, 0x2454180,28, 0x2454200,6, 0x2454240,6, 0x245425c,3, 0x2454280,5, 0x24542a0,8, 0x2454400,14, 0x2454440,14, 0x2454480,14, 0x24544c0,14, 0x2454540,3, 0x2454600,7, 0x2454620,14, 0x2454680,5, 0x24546a0,7, 0x2454800,13, 0x2454840,2, 0x2454854,4, 0x2454880,27, 0x2454900,12, 0x2454940,14, 0x2454980,28, 0x2454a00,6, 0x2454a40,6, 0x2454a5c,3, 0x2454a80,5, 0x2454aa0,8, 0x2454c00,14, 0x2454c40,14, 0x2454c80,14, 0x2454cc0,14, 0x2454d40,3, 0x2454e00,7, 0x2454e20,14, 0x2454e80,5, 0x2454ea0,7, 0x2455000,13, 0x2455040,2, 0x2455054,4, 0x2455080,27, 0x2455100,12, 0x2455140,14, 0x2455180,28, 0x2455200,6, 0x2455240,6, 0x245525c,3, 0x2455280,5, 0x24552a0,8, 0x2455400,14, 0x2455440,14, 0x2455480,14, 0x24554c0,14, 0x2455540,3, 0x2455600,7, 0x2455620,14, 0x2455680,5, 0x24556a0,7, 0x2455800,13, 0x2455840,2, 0x2455854,4, 0x2455880,27, 0x2455900,12, 0x2455940,14, 0x2455980,28, 0x2455a00,6, 0x2455a40,6, 0x2455a5c,3, 0x2455a80,5, 0x2455aa0,8, 0x2455c00,14, 0x2455c40,14, 0x2455c80,14, 0x2455cc0,14, 0x2455d40,3, 0x2455e00,7, 0x2455e20,14, 0x2455e80,5, 0x2455ea0,7, 0x2456000,8, 0x2456040,8, 0x2456080,1, 0x2456098,6, 0x2456100,10, 0x2456140,3, 0x2456150,2, 0x2456180,2, 0x2456200,6, 0x2456220,18, 0x2456280,4, 0x2456300,8, 0x2456400,2, 0x2456480,2, 0x2456800,28, 0x24569f0,4, 0x2457000,40, 0x2457100,64, 0x2457800,56, 0x2457be0,8, 0x2458000,2, 0x245800c,2, 0x2458040,7, 0x2458100,3, 0x2458110,3, 0x2458120,5, 0x2458200,6, 0x2458240,5, 0x2458400,2, 0x245840c,2, 0x2458440,7, 0x2458500,3, 0x2458510,3, 0x2458520,5, 0x2458600,6, 0x2458640,5, 0x2458800,2, 0x245880c,2, 0x2458840,7, 0x2458900,3, 0x2458910,3, 0x2458920,5, 0x2458a00,6, 0x2458a40,5, 0x2458c00,2, 0x2458c0c,2, 0x2458c40,7, 0x2458d00,3, 0x2458d10,3, 0x2458d20,5, 0x2458e00,6, 0x2458e40,5, 0x2459000,2, 0x245900c,2, 0x2459040,7, 0x2459100,3, 0x2459110,3, 0x2459120,5, 0x2459200,6, 0x2459240,5, 0x2459400,2, 0x245940c,2, 0x2459440,7, 0x2459500,3, 0x2459510,3, 0x2459520,5, 0x2459600,6, 0x2459640,5, 0x2459800,2, 0x245980c,2, 0x2459840,7, 0x2459900,3, 0x2459910,3, 0x2459920,5, 0x2459a00,6, 0x2459a40,5, 0x2459c00,2, 0x2459c0c,2, 0x2459c40,7, 0x2459d00,3, 0x2459d10,3, 0x2459d20,5, 0x2459e00,6, 0x2459e40,5, 0x245a000,5, 0x245a040,9, 0x245a100,3, 0x245a200,1, 0x245a210,1, 0x245a220,1, 0x245a230,1, 0x245a240,1, 0x245a300,3, 0x245a314,1, 0x245a320,4, 0x245a400,5, 0x245a440,5, 0x245b000,80, 0x245b200,1, 0x2460004,5, 0x2460020,3, 0x2460030,3, 0x2460040,13, 0x2460078,4, 0x246009c,25, 0x2460104,5, 0x2460120,3, 0x2460130,3, 0x2460140,13, 0x2460178,4, 0x246019c,25, 0x2460204,5, 0x2460220,3, 0x2460230,3, 0x2460240,13, 0x2460278,4, 0x246029c,25, 0x2460304,5, 0x2460320,3, 0x2460330,3, 0x2460340,13, 0x2460378,4, 0x246039c,25, 0x2460600,4, 0x2460c00,24, 0x2460c80,24, 0x2460d00,24, 0x2460d80,24, 0x2460e00,4, 0x2460e20,4, 0x2460e40,4, 0x2460e60,4, 0x2460e80,39, 0x2460f20,7, 0x2460f40,7, 0x2460f60,7, 0x2461000,12, 0x2461200,1, 0x2461218,2, 0x246122c,1, 0x2461280,1, 0x2461298,2, 0x24612ac,1, 0x2461300,1, 0x2461318,2, 0x246132c,1, 0x2461380,1, 0x2461398,2, 0x24613ac,1, 0x2461400,4, 0x2461420,2, 0x246142c,1, 0x2461480,4, 0x24614a0,2, 0x24614ac,1, 0x2461500,4, 0x2461520,2, 0x246152c,1, 0x2461580,4, 0x24615a0,2, 0x24615ac,1, 0x2461600,4, 0x2461640,4, 0x2461680,4, 0x24616c0,4, 0x2461700,7, 0x2461720,7, 0x2461740,7, 0x2461760,7, 0x2461780,4, 0x246179c,11, 0x24617d0,2, 0x24617e0,2, 0x24617f0,2, 0x2461900,44, 0x2462000,7, 0x2462020,4, 0x2462040,4, 0x2462060,7, 0x2462080,7, 0x24620a0,4, 0x24620c0,4, 0x24620e0,7, 0x2462100,7, 0x2462120,4, 0x2462140,4, 0x2462160,7, 0x2462180,7, 0x24621a0,4, 0x24621c0,4, 0x24621e0,7, 0x2462200,32, 0x2462b00,1, 0x2462b20,1, 0x2462b28,4, 0x2462b40,1, 0x2462b60,1, 0x2462b68,4, 0x2462b80,1, 0x2462ba0,1, 0x2462ba8,4, 0x2462bc0,1, 0x2462be0,1, 0x2462be8,4, 0x2462c00,7, 0x2462c20,1, 0x2462c54,18, 0x2462ca0,1, 0x2462cd4,18, 0x2462d20,1, 0x2462d54,18, 0x2462da0,1, 0x2462dd4,12, 0x2462e08,6, 0x2463100,7, 0x2463120,7, 0x2463140,7, 0x2463160,7, 0x2463180,3, 0x2464004,5, 0x2464020,3, 0x2464030,3, 0x2464040,13, 0x2464078,4, 0x246409c,25, 0x2464104,5, 0x2464120,3, 0x2464130,3, 0x2464140,13, 0x2464178,4, 0x246419c,25, 0x2464204,5, 0x2464220,3, 0x2464230,3, 0x2464240,13, 0x2464278,4, 0x246429c,25, 0x2464304,5, 0x2464320,3, 0x2464330,3, 0x2464340,13, 0x2464378,4, 0x246439c,25, 0x2464600,4, 0x2464c00,24, 0x2464c80,24, 0x2464d00,24, 0x2464d80,24, 0x2464e00,4, 0x2464e20,4, 0x2464e40,4, 0x2464e60,4, 0x2464e80,39, 0x2464f20,7, 0x2464f40,7, 0x2464f60,7, 0x2465000,12, 0x2465200,1, 0x2465218,2, 0x246522c,1, 0x2465280,1, 0x2465298,2, 0x24652ac,1, 0x2465300,1, 0x2465318,2, 0x246532c,1, 0x2465380,1, 0x2465398,2, 0x24653ac,1, 0x2465400,4, 0x2465420,2, 0x246542c,1, 0x2465480,4, 0x24654a0,2, 0x24654ac,1, 0x2465500,4, 0x2465520,2, 0x246552c,1, 0x2465580,4, 0x24655a0,2, 0x24655ac,1, 0x2465600,4, 0x2465640,4, 0x2465680,4, 0x24656c0,4, 0x2465700,7, 0x2465720,7, 0x2465740,7, 0x2465760,7, 0x2465780,4, 0x246579c,11, 0x24657d0,2, 0x24657e0,2, 0x24657f0,2, 0x2465900,44, 0x2466000,7, 0x2466020,4, 0x2466040,4, 0x2466060,7, 0x2466080,7, 0x24660a0,4, 0x24660c0,4, 0x24660e0,7, 0x2466100,7, 0x2466120,4, 0x2466140,4, 0x2466160,7, 0x2466180,7, 0x24661a0,4, 0x24661c0,4, 0x24661e0,7, 0x2466200,32, 0x2466b00,1, 0x2466b20,1, 0x2466b28,4, 0x2466b40,1, 0x2466b60,1, 0x2466b68,4, 0x2466b80,1, 0x2466ba0,1, 0x2466ba8,4, 0x2466bc0,1, 0x2466be0,1, 0x2466be8,4, 0x2466c00,7, 0x2466c20,1, 0x2466c54,18, 0x2466ca0,1, 0x2466cd4,18, 0x2466d20,1, 0x2466d54,18, 0x2466da0,1, 0x2466dd4,12, 0x2466e08,6, 0x2467100,7, 0x2467120,7, 0x2467140,7, 0x2467160,7, 0x2467180,3, 0x2468000,10, 0x2468080,3, 0x24680c0,1, 0x2468100,21, 0x2468180,13, 0x24681c4,7, 0x24681e4,7, 0x2468204,7, 0x2468224,8, 0x2469000,7, 0x2469030,2, 0x2469040,7, 0x2469070,2, 0x2469100,2, 0x2469120,2, 0x2469140,2, 0x2469160,2, 0x2469180,9, 0x2469200,7, 0x2469230,2, 0x2469240,7, 0x2469270,2, 0x2469300,2, 0x2469320,2, 0x2469340,2, 0x2469360,2, 0x2469380,9, 0x2469400,11, 0x2469500,11, 0x246a000,3, 0x246a010,2, 0x246a01c,5, 0x246a040,8, 0x246a080,3, 0x246a090,2, 0x246a09c,5, 0x246a0c0,8, 0x246a100,3, 0x246a110,2, 0x246a11c,5, 0x246a140,8, 0x246a180,3, 0x246a190,2, 0x246a19c,5, 0x246a1c0,8, 0x246a200,7, 0x246a220,12, 0x246a280,7, 0x246a2a0,12, 0x246a300,3, 0x246a310,1, 0x246a400,3, 0x246a410,2, 0x246a41c,5, 0x246a440,8, 0x246a480,3, 0x246a490,2, 0x246a49c,5, 0x246a4c0,8, 0x246a500,3, 0x246a510,2, 0x246a51c,5, 0x246a540,8, 0x246a580,3, 0x246a590,2, 0x246a59c,5, 0x246a5c0,8, 0x246a600,7, 0x246a620,12, 0x246a680,7, 0x246a6a0,12, 0x246a700,3, 0x246a710,1, 0x246a804,1, 0x246a824,21, 0x246a880,16, 0x246a900,5, 0x246a920,11, 0x246a950,9, 0x246a980,22, 0x246aa00,22, 0x246aa80,22, 0x246ab00,22, 0x246ab80,22, 0x246ac00,22, 0x246ac80,22, 0x246ad00,22, 0x246ad80,3, 0x246c000,16, 0x246c080,11, 0x246c100,11, 0x246c204,1, 0x246c224,21, 0x246c280,16, 0x246c300,11, 0x246c340,11, 0x246c800,21, 0x246c860,5, 0x246c880,6, 0x246c8a0,5, 0x246c8c0,6, 0x246c900,21, 0x246c960,5, 0x246c980,6, 0x246c9a0,5, 0x246c9c0,6, 0x246ca00,21, 0x246ca60,5, 0x246ca80,6, 0x246caa0,5, 0x246cac0,6, 0x246cb00,21, 0x246cb60,5, 0x246cb80,6, 0x246cba0,5, 0x246cbc0,6, 0x246cc00,9, 0x246cc48,7, 0x246cc68,2, 0x246cc74,9, 0x246cc9c,2, 0x246cd00,14, 0x246cd40,14, 0x246cd80,28, 0x246ce00,19, 0x246ce50,3, 0x246ce60,25, 0x246cec8,1, 0x246ced0,2, 0x246cee0,7, 0x246cf00,1, 0x246cf08,2, 0x246cffc,20, 0x246d050,25, 0x246d100,19, 0x246d150,25, 0x246d200,19, 0x246d250,25, 0x246d300,19, 0x246d350,25, 0x246d400,19, 0x246d450,25, 0x246d500,19, 0x246d550,25, 0x246d600,19, 0x246d650,25, 0x246d700,19, 0x246d750,25, 0x246d800,19, 0x246d850,25, 0x246d904,1, 0x246d914,10, 0x246d948,11, 0x246d980,2, 0x246d9a0,6, 0x246d9c0,2, 0x246d9cc,2, 0x246e000,35, 0x246ea00,10, 0x246ea80,3, 0x246eb00,6, 0x246f000,1, 0x246f008,5, 0x246f038,1, 0x246f044,1, 0x246f050,2, 0x246f100,13, 0x246f140,11, 0x246f170,12, 0x246f1a4,1, 0x246f200,104, 0x246f400,104, 0x246f600,104, 0x246f800,104, 0x2470000,13, 0x2470040,2, 0x2470054,4, 0x2470080,27, 0x2470100,12, 0x2470140,14, 0x2470180,28, 0x2470200,6, 0x2470240,6, 0x247025c,3, 0x2470280,5, 0x24702a0,8, 0x2470400,14, 0x2470440,14, 0x2470480,14, 0x24704c0,14, 0x2470540,3, 0x2470600,7, 0x2470620,14, 0x2470680,5, 0x24706a0,7, 0x2470800,13, 0x2470840,2, 0x2470854,4, 0x2470880,27, 0x2470900,12, 0x2470940,14, 0x2470980,28, 0x2470a00,6, 0x2470a40,6, 0x2470a5c,3, 0x2470a80,5, 0x2470aa0,8, 0x2470c00,14, 0x2470c40,14, 0x2470c80,14, 0x2470cc0,14, 0x2470d40,3, 0x2470e00,7, 0x2470e20,14, 0x2470e80,5, 0x2470ea0,7, 0x2471000,13, 0x2471040,2, 0x2471054,4, 0x2471080,27, 0x2471100,12, 0x2471140,14, 0x2471180,28, 0x2471200,6, 0x2471240,6, 0x247125c,3, 0x2471280,5, 0x24712a0,8, 0x2471400,14, 0x2471440,14, 0x2471480,14, 0x24714c0,14, 0x2471540,3, 0x2471600,7, 0x2471620,14, 0x2471680,5, 0x24716a0,7, 0x2471800,13, 0x2471840,2, 0x2471854,4, 0x2471880,27, 0x2471900,12, 0x2471940,14, 0x2471980,28, 0x2471a00,6, 0x2471a40,6, 0x2471a5c,3, 0x2471a80,5, 0x2471aa0,8, 0x2471c00,14, 0x2471c40,14, 0x2471c80,14, 0x2471cc0,14, 0x2471d40,3, 0x2471e00,7, 0x2471e20,14, 0x2471e80,5, 0x2471ea0,7, 0x2472000,8, 0x2472040,8, 0x2472080,1, 0x2472098,6, 0x2472100,10, 0x2472140,3, 0x2472150,2, 0x2472180,2, 0x2472200,6, 0x2472220,18, 0x2472280,4, 0x2472300,8, 0x2472400,2, 0x2472480,2, 0x2472800,28, 0x24729f0,4, 0x2473000,40, 0x2473100,64, 0x2473800,56, 0x2473be0,8, 0x2474000,13, 0x2474040,2, 0x2474054,4, 0x2474080,27, 0x2474100,12, 0x2474140,14, 0x2474180,28, 0x2474200,6, 0x2474240,6, 0x247425c,3, 0x2474280,5, 0x24742a0,8, 0x2474400,14, 0x2474440,14, 0x2474480,14, 0x24744c0,14, 0x2474540,3, 0x2474600,7, 0x2474620,14, 0x2474680,5, 0x24746a0,7, 0x2474800,13, 0x2474840,2, 0x2474854,4, 0x2474880,27, 0x2474900,12, 0x2474940,14, 0x2474980,28, 0x2474a00,6, 0x2474a40,6, 0x2474a5c,3, 0x2474a80,5, 0x2474aa0,8, 0x2474c00,14, 0x2474c40,14, 0x2474c80,14, 0x2474cc0,14, 0x2474d40,3, 0x2474e00,7, 0x2474e20,14, 0x2474e80,5, 0x2474ea0,7, 0x2475000,13, 0x2475040,2, 0x2475054,4, 0x2475080,27, 0x2475100,12, 0x2475140,14, 0x2475180,28, 0x2475200,6, 0x2475240,6, 0x247525c,3, 0x2475280,5, 0x24752a0,8, 0x2475400,14, 0x2475440,14, 0x2475480,14, 0x24754c0,14, 0x2475540,3, 0x2475600,7, 0x2475620,14, 0x2475680,5, 0x24756a0,7, 0x2475800,13, 0x2475840,2, 0x2475854,4, 0x2475880,27, 0x2475900,12, 0x2475940,14, 0x2475980,28, 0x2475a00,6, 0x2475a40,6, 0x2475a5c,3, 0x2475a80,5, 0x2475aa0,8, 0x2475c00,14, 0x2475c40,14, 0x2475c80,14, 0x2475cc0,14, 0x2475d40,3, 0x2475e00,7, 0x2475e20,14, 0x2475e80,5, 0x2475ea0,7, 0x2476000,8, 0x2476040,8, 0x2476080,1, 0x2476098,6, 0x2476100,10, 0x2476140,3, 0x2476150,2, 0x2476180,2, 0x2476200,6, 0x2476220,18, 0x2476280,4, 0x2476300,8, 0x2476400,2, 0x2476480,2, 0x2476800,28, 0x24769f0,4, 0x2477000,40, 0x2477100,64, 0x2477800,56, 0x2477be0,8, 0x2478000,2, 0x247800c,2, 0x2478040,7, 0x2478100,3, 0x2478110,3, 0x2478120,5, 0x2478200,6, 0x2478240,5, 0x2478400,2, 0x247840c,2, 0x2478440,7, 0x2478500,3, 0x2478510,3, 0x2478520,5, 0x2478600,6, 0x2478640,5, 0x2478800,2, 0x247880c,2, 0x2478840,7, 0x2478900,3, 0x2478910,3, 0x2478920,5, 0x2478a00,6, 0x2478a40,5, 0x2478c00,2, 0x2478c0c,2, 0x2478c40,7, 0x2478d00,3, 0x2478d10,3, 0x2478d20,5, 0x2478e00,6, 0x2478e40,5, 0x2479000,2, 0x247900c,2, 0x2479040,7, 0x2479100,3, 0x2479110,3, 0x2479120,5, 0x2479200,6, 0x2479240,5, 0x2479400,2, 0x247940c,2, 0x2479440,7, 0x2479500,3, 0x2479510,3, 0x2479520,5, 0x2479600,6, 0x2479640,5, 0x2479800,2, 0x247980c,2, 0x2479840,7, 0x2479900,3, 0x2479910,3, 0x2479920,5, 0x2479a00,6, 0x2479a40,5, 0x2479c00,2, 0x2479c0c,2, 0x2479c40,7, 0x2479d00,3, 0x2479d10,3, 0x2479d20,5, 0x2479e00,6, 0x2479e40,5, 0x247a000,5, 0x247a040,9, 0x247a100,3, 0x247a200,1, 0x247a210,1, 0x247a220,1, 0x247a230,1, 0x247a240,1, 0x247a300,3, 0x247a314,1, 0x247a320,4, 0x247a400,5, 0x247a440,5, 0x247b000,80, 0x247b200,1, 0x2480000,3, 0x2480010,7, 0x2480030,10, 0x2480080,2, 0x2480100,6, 0x2480140,2, 0x2480180,2, 0x24801a0,1, 0x2480400,2, 0x2480440,4, 0x2480460,5, 0x2480478,1, 0x2480480,6, 0x24804a0,3, 0x24804b0,2, 0x2480500,5, 0x2480600,1, 0x2480800,5, 0x2480900,5, 0x2480a00,5, 0x2480b00,3, 0x2480c00,35, 0x2480d00,25, 0x2480d80,1, 0x2480dc0,3, 0x2480e00,2, 0x2480e20,2, 0x2490000,3, 0x249001c,4, 0x2490080,3, 0x2490090,2, 0x24900d4,4, 0x24900ec,27, 0x249015c,27, 0x24901cc,19, 0x2490224,120, 0x2490408,24, 0x249046c,84, 0x24905f8,4, 0x2490610,27, 0x2490680,27, 0x24906f0,19, 0x2490748,120, 0x249092c,24, 0x2490990,84, 0x2490b1c,4, 0x2490b34,27, 0x2490ba4,27, 0x2490c14,19, 0x2490c6c,120, 0x2490e50,24, 0x2490eb4,84, 0x2491040,4, 0x2491058,27, 0x24910c8,27, 0x2491138,19, 0x2491190,120, 0x2491374,24, 0x24913d8,84, 0x2491564,4, 0x249157c,27, 0x24915ec,27, 0x249165c,19, 0x24916b4,120, 0x2491898,24, 0x24918fc,84, 0x2491a88,4, 0x2491aa0,27, 0x2491b10,27, 0x2491b80,19, 0x2491bd8,120, 0x2491dbc,24, 0x2491e20,84, 0x2491fac,4, 0x2491fc4,27, 0x2492034,27, 0x24920a4,19, 0x24920fc,120, 0x24922e0,24, 0x2492344,84, 0x24924d0,4, 0x24924e8,27, 0x2492558,27, 0x24925c8,19, 0x2492620,120, 0x2492804,24, 0x2492868,84, 0x24929f4,4, 0x2492a0c,27, 0x2492a7c,27, 0x2492aec,19, 0x2492b44,120, 0x2492d28,24, 0x2492d8c,84, 0x2492f18,4, 0x2492f30,27, 0x2492fa0,27, 0x2493010,19, 0x2493068,120, 0x249324c,24, 0x24932b0,84, 0x249343c,4, 0x2493454,27, 0x24934c4,27, 0x2493534,19, 0x249358c,120, 0x2493770,24, 0x24937d4,84, 0x2493960,4, 0x2493978,27, 0x24939e8,27, 0x2493a58,19, 0x2493ab0,120, 0x2493c94,24, 0x2493cf8,84, 0x2493e84,4, 0x2493e9c,27, 0x2493f0c,27, 0x2493f7c,19, 0x2493fd4,120, 0x24941b8,24, 0x249421c,84, 0x24943a8,4, 0x24943c0,27, 0x2494430,27, 0x24944a0,19, 0x24944f8,120, 0x24946dc,24, 0x2494740,84, 0x24948cc,4, 0x24948e4,27, 0x2494954,27, 0x24949c4,19, 0x2494a1c,120, 0x2494c00,24, 0x2494c64,84, 0x2494df0,4, 0x2494e08,27, 0x2494e78,27, 0x2494ee8,19, 0x2494f40,120, 0x2495124,24, 0x2495188,84, 0x2495314,4, 0x249532c,27, 0x249539c,27, 0x249540c,19, 0x2495464,120, 0x2495648,24, 0x24956ac,84, 0x2495838,14, 0x2495940,13, 0x2495a44,13, 0x2495b48,16, 0x2495b90,42, 0x2495c40,2, 0x2495c90,54, 0x2495d70,58, 0x2495e60,58, 0x2495f50,58, 0x2496040,58, 0x2496130,58, 0x2496220,58, 0x2496310,58, 0x2496400,58, 0x24964f0,58, 0x24965e0,58, 0x24966d0,58, 0x24967c0,58, 0x24968b0,58, 0x24969a0,58, 0x2496a90,58, 0x2496b80,58, 0x2496c70,58, 0x2496d60,58, 0x2496e50,58, 0x2496f40,58, 0x2497030,58, 0x2497120,58, 0x2497210,58, 0x2497300,58, 0x24973f0,58, 0x24974e0,58, 0x24975d0,58, 0x24976c0,58, 0x24977b0,58, 0x24978a0,58, 0x2497990,58, 0x2497a80,101, 0x2497c90,49, 0x2497db0,18, 0x2497e00,11, 0x2497e30,4, 0x2497e54,45, 0x2497f58,9, 0x2497f88,3, 0x2497fa0,2, 0x2497fd8,14, 0x2498014,12, 0x2498158,3, 0x2498168,2, 0x2498174,68, 0x2498288,2, 0x2498294,68, 0x24983a8,1, 0x24983b0,2, 0x24983bc,68, 0x24984d0,2, 0x24984dc,68, 0x24985f0,1, 0x24985f8,4, 0x2498610,3, 0x2498624,12, 0x2498688,8, 0x24986dc,1, 0x24986e8,4, 0x2498700,3, 0x2498714,12, 0x2498778,8, 0x24987cc,1, 0x24987d8,4, 0x24987f0,3, 0x2498804,12, 0x2498868,8, 0x24988bc,1, 0x24988c8,4, 0x24988e0,3, 0x24988f4,12, 0x2498958,8, 0x24989ac,1, 0x24989b8,4, 0x24989d0,3, 0x24989e4,12, 0x2498a48,8, 0x2498a9c,1, 0x2498aa8,4, 0x2498ac0,3, 0x2498ad4,12, 0x2498b38,8, 0x2498b8c,1, 0x2498b98,4, 0x2498bb0,3, 0x2498bc4,12, 0x2498c28,8, 0x2498c7c,1, 0x2498c88,4, 0x2498ca0,3, 0x2498cb4,12, 0x2498d18,8, 0x2498d6c,1, 0x2498d78,4, 0x2498d90,3, 0x2498da4,12, 0x2498e08,8, 0x2498e5c,1, 0x2498e68,4, 0x2498e80,3, 0x2498e94,12, 0x2498ef8,8, 0x2498f4c,1, 0x2498f58,4, 0x2498f70,3, 0x2498f84,12, 0x2498fe8,8, 0x249903c,1, 0x2499048,4, 0x2499060,3, 0x2499074,12, 0x24990d8,8, 0x249912c,1, 0x2499138,4, 0x2499150,3, 0x2499164,12, 0x24991c8,8, 0x249921c,1, 0x2499228,4, 0x2499240,3, 0x2499254,12, 0x24992b8,8, 0x249930c,1, 0x2499318,4, 0x2499330,3, 0x2499344,12, 0x24993a8,8, 0x24993fc,1, 0x2499408,4, 0x2499420,3, 0x2499434,12, 0x2499498,8, 0x24994ec,1, 0x24994f8,4, 0x2499510,3, 0x2499524,12, 0x2499588,8, 0x24995dc,1, 0x24995e8,64, 0x2499748,5, 0x2499990,28, 0x2499a04,1, 0x2499a98,1, 0x2499be8,5, 0x2499c04,3, 0x2499c18,13, 0x2499c50,2, 0x249a000,15, 0x249a044,81, 0x249a18c,84, 0x249a2e0,84, 0x249a434,84, 0x249a588,84, 0x249a6dc,84, 0x249a830,84, 0x249a984,84, 0x249aad8,84, 0x249ac2c,84, 0x249ad80,84, 0x249aed4,84, 0x249b028,84, 0x249b17c,84, 0x249b2d0,84, 0x249b424,84, 0x249b578,84, 0x249b6cc,5, 0x249b760,4, 0x249b8e0,2414, 0x249dea4,80, 0x249e048,4, 0x249ebe0,1, 0x249ebf0,97, 0x249ed94,7, 0x249ee7c,1, 0x249eeac,9, 0x249eed4,5, 0x249eeec,11, 0x249ef2c,17, 0x249ef74,29, 0x249f034,3, 0x249f044,1, 0x249f054,17, 0x249fbe0,3, 0x249fbf0,2, 0x24a0000,3, 0x24a0018,2, 0x24a0024,14, 0x24a0060,27, 0x24a00d0,3, 0x24a00e0,3, 0x24a00f0,3, 0x24a0100,4, 0x24a0120,6, 0x24a0140,3, 0x24a0150,1, 0x24a015c,4, 0x24a0170,1, 0x24a0180,15, 0x24a01c0,1, 0x24a01c8,5, 0x24a01e0,1, 0x24a01f0,3, 0x24a0200,3, 0x24a0218,2, 0x24a0224,14, 0x24a0260,27, 0x24a02d0,3, 0x24a02e0,3, 0x24a02f0,3, 0x24a0300,4, 0x24a0320,6, 0x24a0340,3, 0x24a0350,1, 0x24a035c,4, 0x24a0370,1, 0x24a0380,15, 0x24a03c0,1, 0x24a03c8,5, 0x24a03e0,1, 0x24a03f0,3, 0x24a0400,3, 0x24a0418,2, 0x24a0424,14, 0x24a0460,27, 0x24a04d0,3, 0x24a04e0,3, 0x24a04f0,3, 0x24a0500,4, 0x24a0520,6, 0x24a0540,3, 0x24a0550,1, 0x24a055c,4, 0x24a0570,1, 0x24a0580,15, 0x24a05c0,1, 0x24a05c8,5, 0x24a05e0,1, 0x24a05f0,3, 0x24a0600,3, 0x24a0618,2, 0x24a0624,14, 0x24a0660,27, 0x24a06d0,3, 0x24a06e0,3, 0x24a06f0,3, 0x24a0700,4, 0x24a0720,6, 0x24a0740,3, 0x24a0750,1, 0x24a075c,4, 0x24a0770,1, 0x24a0780,15, 0x24a07c0,1, 0x24a07c8,5, 0x24a07e0,1, 0x24a07f0,3, 0x24a0800,3, 0x24a0818,2, 0x24a0824,14, 0x24a0860,27, 0x24a08d0,3, 0x24a08e0,3, 0x24a08f0,3, 0x24a0900,4, 0x24a0920,6, 0x24a0940,3, 0x24a0950,1, 0x24a095c,4, 0x24a0970,1, 0x24a0980,15, 0x24a09c0,1, 0x24a09c8,5, 0x24a09e0,1, 0x24a09f0,3, 0x24a1844,1, 0x24a1858,5, 0x24a1904,3, 0x24a1950,3, 0x24a1988,2, 0x24a19a0,7, 0x24a19c0,7, 0x24a19e0,4, 0x24a2000,24, 0x24a20f0,3, 0x24a2100,7, 0x24a2120,7, 0x24a2144,7, 0x24a2400,4, 0x24a2420,5, 0x24a25e0,3, 0x24a25f4,1, 0x24a25fc,4, 0x24a2620,3, 0x24a2680,8, 0x24a2700,19, 0x24a2800,99, 0x24a2a00,18, 0x24a2a80,8, 0x24a2b00,1, 0x24a3070,1, 0x24a3080,2, 0x24a308c,1, 0x24a3098,2, 0x24a3404,1, 0x24a3440,20, 0x24a3494,1, 0x24a349c,7, 0x24a34d0,4, 0x24a34e8,2, 0x24a34fc,8, 0x24a3520,7, 0x24a3540,7, 0x24a3560,7, 0x24a3580,7, 0x24a35a0,7, 0x24a35c0,7, 0x24a35e0,7, 0x24a3600,9, 0x24a363c,2, 0x24a3650,6, 0x24a3684,10, 0x24a3a00,10, 0x24a3a30,1, 0x24a3a40,8, 0x24a3a64,5, 0x24a4a04,3, 0x24a4b00,33, 0x24a4b90,3, 0x24a5000,8, 0x24a5040,8, 0x24a5104,1, 0x24a510c,3, 0x24a5124,1, 0x24a512c,3, 0x24a6000,13, 0x24a6200,14, 0x24a6240,1, 0x24a6248,1, 0x24a6258,1, 0x24a6260,8, 0x24a6284,1, 0x24a62a0,8, 0x24a6348,5, 0x24a67f0,1, 0x24a67f8,1, 0x24a6a10,12, 0x24a7000,19, 0x24a7a00,10, 0x24a7a80,3, 0x24a7b00,6, 0x24c0000,1, 0x24c000c,5, 0x24c0044,1, 0x24c0054,5, 0x24c0200,128, 0x24c0404,1, 0x24c0428,54, 0x24c0600,32, 0x24c0704,1, 0x24c0800,1, 0x24c0900,1, 0x24c0910,2, 0x24c0920,3, 0x24c0980,10, 0x24c0a00,19, 0x24c0b00,1, 0x24e0000,2, 0x24e000c,2, 0x24e0018,2, 0x24e0024,2, 0x24e0030,2, 0x24e003c,2, 0x24e0048,2, 0x24e0054,2, 0x24e0060,1, 0x24e0070,2, 0x24e007c,2, 0x24e0088,2, 0x24e0094,2, 0x24e00a0,2, 0x24e00ac,2, 0x24e00b8,2, 0x24e00c4,2, 0x24e00d0,1, 0x24e00e0,2, 0x24e00ec,2, 0x24e00f8,2, 0x24e0104,2, 0x24e0110,2, 0x24e011c,2, 0x24e0128,2, 0x24e0134,2, 0x24e0140,1, 0x24e0150,2, 0x24e015c,2, 0x24e0168,2, 0x24e0174,2, 0x24e0180,2, 0x24e018c,2, 0x24e0198,2, 0x24e01a4,2, 0x24e01b0,1, 0x24e01c0,57, 0x24e02b0,67, 0x24e03c0,16, 0x24e0410,23, 0x24e0470,16, 0x24e04c0,23, 0x24e0520,16, 0x24e0570,23, 0x24e05d0,16, 0x24e0620,23, 0x24e0680,16, 0x24e06d0,23, 0x24e0730,16, 0x24e0780,23, 0x24e07e0,16, 0x24e0830,23, 0x24e0890,16, 0x24e08e0,23, 0x24e0940,16, 0x24e0990,23, 0x24e09f0,16, 0x24e0a40,23, 0x24e0aa0,16, 0x24e0af0,23, 0x24e0b50,16, 0x24e0ba0,23, 0x24e0c00,16, 0x24e0c50,23, 0x24e0cb0,16, 0x24e0d00,23, 0x24e0d60,16, 0x24e0db0,23, 0x24e0e10,16, 0x24e0e60,23, 0x24e0ec0,16, 0x24e0f10,23, 0x24e0f70,16, 0x24e0fc0,23, 0x24e1020,16, 0x24e1070,23, 0x24e10d0,16, 0x24e1120,23, 0x24e1180,16, 0x24e11d0,23, 0x24e1230,16, 0x24e1280,23, 0x24e12e0,16, 0x24e1330,23, 0x24e1390,16, 0x24e13e0,23, 0x24e1440,16, 0x24e1490,23, 0x24e14f0,16, 0x24e1540,23, 0x24e15a0,16, 0x24e15f0,23, 0x24e1650,16, 0x24e16a0,23, 0x24e1700,16, 0x24e1750,23, 0x24e17b0,16, 0x24e1800,23, 0x24e1860,16, 0x24e18b0,23, 0x24e1910,16, 0x24e1960,2, 0x24f0000,4, 0x24f0014,2, 0x24f0020,8, 0x24f0044,2, 0x24f0050,13, 0x24f0088,20, 0x24f00dc,1, 0x24f0180,6, 0x24f0590,3, 0x24f05c0,2, 0x24f0a04,1, 0x24f0a0c,3, 0x24f0a20,1, 0x24f0ba0,4, 0x24f0c00,4, 0x24f0c20,3, 0x24f0c30,5, 0x24f0c50,52, 0x24f0d50,57, 0x24f0ec0,3, 0x24f0ffc,3, 0x24f1020,3, 0x24f1030,3, 0x24f1060,2, 0x24f1100,2, 0x24f1140,18, 0x24f11c0,30, 0x24f1240,14, 0x24f1280,28, 0x24f1300,2, 0x24f13a0,6, 0x24f1400,19, 0x24f1800,19, 0x24f1c00,19, 0x24f1c80,8, 0x24f1d00,3, 0x24f1d50,3, 0x24f1e00,3, 0x24f1e10,2, 0x24f1e20,6, 0x24f1e40,6, 0x24f1e60,6, 0x24f1e80,6, 0x24f1ea0,6, 0x24f1ec0,2, 0x24f1ecc,2, 0x24f1ee0,2, 0x24f1eec,2, 0x24f1f80,3, 0x24f1f90,60, 0x24f2100,32, 0x24f2200,32, 0x24f2300,32, 0x24f2400,32, 0x24f2500,32, 0x24f2600,32, 0x24f2700,32, 0x24f2800,32, 0x24f2900,32, 0x24f2a00,32, 0x24f2b00,32, 0x24f2c00,32, 0x24f2d00,32, 0x24f2e00,32, 0x24f2f00,32, 0x24f3000,32, 0x24f30c0,3, 0x24f4000,2, 0x24f4040,16, 0x24f4100,36, 0x24f4800,5, 0x24f4824,1, 0x24f482c,1, 0x24f4c04,1, 0x24f4cd8,74, 0x24f5000,7, 0x24f5020,4, 0x24f5204,1, 0x24f5280,35, 0x24f5310,4, 0x24f5404,1, 0x24f5480,34, 0x24f5510,10, 0x24f553c,3, 0x24f5800,7, 0x24f5820,4, 0x24f5a04,1, 0x24f5a80,35, 0x24f5b10,4, 0x24f5c04,1, 0x24f5c80,34, 0x24f5d10,10, 0x24f5d3c,3, 0x24fa000,5, 0x24fa01c,13, 0x24fa060,3, 0x24fa080,8, 0x24fa100,5, 0x24fa11c,13, 0x24fa160,3, 0x24fa180,8, 0x2600004,5, 0x2600020,3, 0x2600030,3, 0x2600040,13, 0x2600078,4, 0x260009c,25, 0x2600104,5, 0x2600120,3, 0x2600130,3, 0x2600140,13, 0x2600178,4, 0x260019c,25, 0x2600204,5, 0x2600220,3, 0x2600230,3, 0x2600240,13, 0x2600278,4, 0x260029c,25, 0x2600304,5, 0x2600320,3, 0x2600330,3, 0x2600340,13, 0x2600378,4, 0x260039c,25, 0x2600600,4, 0x2600c00,24, 0x2600c80,24, 0x2600d00,24, 0x2600d80,24, 0x2600e00,4, 0x2600e20,4, 0x2600e40,4, 0x2600e60,4, 0x2600e80,39, 0x2600f20,7, 0x2600f40,7, 0x2600f60,7, 0x2601000,12, 0x2601200,1, 0x2601218,2, 0x260122c,1, 0x2601280,1, 0x2601298,2, 0x26012ac,1, 0x2601300,1, 0x2601318,2, 0x260132c,1, 0x2601380,1, 0x2601398,2, 0x26013ac,1, 0x2601400,4, 0x2601420,2, 0x260142c,1, 0x2601480,4, 0x26014a0,2, 0x26014ac,1, 0x2601500,4, 0x2601520,2, 0x260152c,1, 0x2601580,4, 0x26015a0,2, 0x26015ac,1, 0x2601600,4, 0x2601640,4, 0x2601680,4, 0x26016c0,4, 0x2601700,7, 0x2601720,7, 0x2601740,7, 0x2601760,7, 0x2601780,4, 0x260179c,11, 0x26017d0,2, 0x26017e0,2, 0x26017f0,2, 0x2601900,44, 0x2602000,7, 0x2602020,4, 0x2602040,4, 0x2602060,7, 0x2602080,7, 0x26020a0,4, 0x26020c0,4, 0x26020e0,7, 0x2602100,7, 0x2602120,4, 0x2602140,4, 0x2602160,7, 0x2602180,7, 0x26021a0,4, 0x26021c0,4, 0x26021e0,7, 0x2602200,32, 0x2602b00,1, 0x2602b20,1, 0x2602b28,4, 0x2602b40,1, 0x2602b60,1, 0x2602b68,4, 0x2602b80,1, 0x2602ba0,1, 0x2602ba8,4, 0x2602bc0,1, 0x2602be0,1, 0x2602be8,4, 0x2602c00,7, 0x2602c20,1, 0x2602c54,18, 0x2602ca0,1, 0x2602cd4,18, 0x2602d20,1, 0x2602d54,18, 0x2602da0,1, 0x2602dd4,12, 0x2602e08,6, 0x2603100,7, 0x2603120,7, 0x2603140,7, 0x2603160,7, 0x2603180,3, 0x2604004,5, 0x2604020,3, 0x2604030,3, 0x2604040,13, 0x2604078,4, 0x260409c,25, 0x2604104,5, 0x2604120,3, 0x2604130,3, 0x2604140,13, 0x2604178,4, 0x260419c,25, 0x2604204,5, 0x2604220,3, 0x2604230,3, 0x2604240,13, 0x2604278,4, 0x260429c,25, 0x2604304,5, 0x2604320,3, 0x2604330,3, 0x2604340,13, 0x2604378,4, 0x260439c,25, 0x2604600,4, 0x2604c00,24, 0x2604c80,24, 0x2604d00,24, 0x2604d80,24, 0x2604e00,4, 0x2604e20,4, 0x2604e40,4, 0x2604e60,4, 0x2604e80,39, 0x2604f20,7, 0x2604f40,7, 0x2604f60,7, 0x2605000,12, 0x2605200,1, 0x2605218,2, 0x260522c,1, 0x2605280,1, 0x2605298,2, 0x26052ac,1, 0x2605300,1, 0x2605318,2, 0x260532c,1, 0x2605380,1, 0x2605398,2, 0x26053ac,1, 0x2605400,4, 0x2605420,2, 0x260542c,1, 0x2605480,4, 0x26054a0,2, 0x26054ac,1, 0x2605500,4, 0x2605520,2, 0x260552c,1, 0x2605580,4, 0x26055a0,2, 0x26055ac,1, 0x2605600,4, 0x2605640,4, 0x2605680,4, 0x26056c0,4, 0x2605700,7, 0x2605720,7, 0x2605740,7, 0x2605760,7, 0x2605780,4, 0x260579c,11, 0x26057d0,2, 0x26057e0,2, 0x26057f0,2, 0x2605900,44, 0x2606000,7, 0x2606020,4, 0x2606040,4, 0x2606060,7, 0x2606080,7, 0x26060a0,4, 0x26060c0,4, 0x26060e0,7, 0x2606100,7, 0x2606120,4, 0x2606140,4, 0x2606160,7, 0x2606180,7, 0x26061a0,4, 0x26061c0,4, 0x26061e0,7, 0x2606200,32, 0x2606b00,1, 0x2606b20,1, 0x2606b28,4, 0x2606b40,1, 0x2606b60,1, 0x2606b68,4, 0x2606b80,1, 0x2606ba0,1, 0x2606ba8,4, 0x2606bc0,1, 0x2606be0,1, 0x2606be8,4, 0x2606c00,7, 0x2606c20,1, 0x2606c54,18, 0x2606ca0,1, 0x2606cd4,18, 0x2606d20,1, 0x2606d54,18, 0x2606da0,1, 0x2606dd4,12, 0x2606e08,6, 0x2607100,7, 0x2607120,7, 0x2607140,7, 0x2607160,7, 0x2607180,3, 0x2608000,10, 0x2608080,3, 0x26080c0,1, 0x2608100,21, 0x2608180,13, 0x26081c4,7, 0x26081e4,7, 0x2608204,7, 0x2608224,8, 0x2609000,7, 0x2609030,2, 0x2609040,7, 0x2609070,2, 0x2609100,2, 0x2609120,2, 0x2609140,2, 0x2609160,2, 0x2609180,9, 0x2609200,7, 0x2609230,2, 0x2609240,7, 0x2609270,2, 0x2609300,2, 0x2609320,2, 0x2609340,2, 0x2609360,2, 0x2609380,9, 0x2609400,11, 0x2609500,11, 0x260a000,3, 0x260a010,2, 0x260a01c,5, 0x260a040,8, 0x260a080,3, 0x260a090,2, 0x260a09c,5, 0x260a0c0,8, 0x260a100,3, 0x260a110,2, 0x260a11c,5, 0x260a140,8, 0x260a180,3, 0x260a190,2, 0x260a19c,5, 0x260a1c0,8, 0x260a200,7, 0x260a220,12, 0x260a280,7, 0x260a2a0,12, 0x260a300,3, 0x260a310,1, 0x260a400,3, 0x260a410,2, 0x260a41c,5, 0x260a440,8, 0x260a480,3, 0x260a490,2, 0x260a49c,5, 0x260a4c0,8, 0x260a500,3, 0x260a510,2, 0x260a51c,5, 0x260a540,8, 0x260a580,3, 0x260a590,2, 0x260a59c,5, 0x260a5c0,8, 0x260a600,7, 0x260a620,12, 0x260a680,7, 0x260a6a0,12, 0x260a700,3, 0x260a710,1, 0x260a804,1, 0x260a824,21, 0x260a880,16, 0x260a900,5, 0x260a920,11, 0x260a950,9, 0x260a980,22, 0x260aa00,22, 0x260aa80,22, 0x260ab00,22, 0x260ab80,22, 0x260ac00,22, 0x260ac80,22, 0x260ad00,22, 0x260ad80,3, 0x260c000,16, 0x260c080,11, 0x260c100,11, 0x260c204,1, 0x260c224,21, 0x260c280,16, 0x260c300,11, 0x260c340,11, 0x260c800,21, 0x260c860,5, 0x260c880,6, 0x260c8a0,5, 0x260c8c0,6, 0x260c900,21, 0x260c960,5, 0x260c980,6, 0x260c9a0,5, 0x260c9c0,6, 0x260ca00,21, 0x260ca60,5, 0x260ca80,6, 0x260caa0,5, 0x260cac0,6, 0x260cb00,21, 0x260cb60,5, 0x260cb80,6, 0x260cba0,5, 0x260cbc0,6, 0x260cc00,9, 0x260cc48,7, 0x260cc68,2, 0x260cc74,9, 0x260cc9c,2, 0x260cd00,14, 0x260cd40,14, 0x260cd80,28, 0x260ce00,19, 0x260ce50,3, 0x260ce60,25, 0x260cec8,1, 0x260ced0,2, 0x260cee0,7, 0x260cf00,1, 0x260cf08,2, 0x260cffc,20, 0x260d050,25, 0x260d100,19, 0x260d150,25, 0x260d200,19, 0x260d250,25, 0x260d300,19, 0x260d350,25, 0x260d400,19, 0x260d450,25, 0x260d500,19, 0x260d550,25, 0x260d600,19, 0x260d650,25, 0x260d700,19, 0x260d750,25, 0x260d800,19, 0x260d850,25, 0x260d904,1, 0x260d914,10, 0x260d948,11, 0x260d980,2, 0x260d9a0,6, 0x260d9c0,2, 0x260d9cc,2, 0x260e000,35, 0x260ea00,10, 0x260ea80,3, 0x260eb00,6, 0x260f000,1, 0x260f008,5, 0x260f038,1, 0x260f044,1, 0x260f050,2, 0x260f100,13, 0x260f140,11, 0x260f170,12, 0x260f1a4,1, 0x260f200,104, 0x260f400,104, 0x260f600,104, 0x260f800,104, 0x2610000,13, 0x2610040,2, 0x2610054,4, 0x2610080,27, 0x2610100,12, 0x2610140,14, 0x2610180,28, 0x2610200,6, 0x2610240,6, 0x261025c,3, 0x2610280,5, 0x26102a0,8, 0x2610400,14, 0x2610440,14, 0x2610480,14, 0x26104c0,14, 0x2610540,3, 0x2610600,7, 0x2610620,14, 0x2610680,5, 0x26106a0,7, 0x2610800,13, 0x2610840,2, 0x2610854,4, 0x2610880,27, 0x2610900,12, 0x2610940,14, 0x2610980,28, 0x2610a00,6, 0x2610a40,6, 0x2610a5c,3, 0x2610a80,5, 0x2610aa0,8, 0x2610c00,14, 0x2610c40,14, 0x2610c80,14, 0x2610cc0,14, 0x2610d40,3, 0x2610e00,7, 0x2610e20,14, 0x2610e80,5, 0x2610ea0,7, 0x2611000,13, 0x2611040,2, 0x2611054,4, 0x2611080,27, 0x2611100,12, 0x2611140,14, 0x2611180,28, 0x2611200,6, 0x2611240,6, 0x261125c,3, 0x2611280,5, 0x26112a0,8, 0x2611400,14, 0x2611440,14, 0x2611480,14, 0x26114c0,14, 0x2611540,3, 0x2611600,7, 0x2611620,14, 0x2611680,5, 0x26116a0,7, 0x2611800,13, 0x2611840,2, 0x2611854,4, 0x2611880,27, 0x2611900,12, 0x2611940,14, 0x2611980,28, 0x2611a00,6, 0x2611a40,6, 0x2611a5c,3, 0x2611a80,5, 0x2611aa0,8, 0x2611c00,14, 0x2611c40,14, 0x2611c80,14, 0x2611cc0,14, 0x2611d40,3, 0x2611e00,7, 0x2611e20,14, 0x2611e80,5, 0x2611ea0,7, 0x2612000,8, 0x2612040,8, 0x2612080,1, 0x2612098,6, 0x2612100,10, 0x2612140,3, 0x2612150,2, 0x2612180,2, 0x2612200,6, 0x2612220,18, 0x2612280,4, 0x2612300,8, 0x2612400,2, 0x2612480,2, 0x2612800,28, 0x26129f0,4, 0x2613000,40, 0x2613100,64, 0x2613800,56, 0x2613be0,8, 0x2614000,13, 0x2614040,2, 0x2614054,4, 0x2614080,27, 0x2614100,12, 0x2614140,14, 0x2614180,28, 0x2614200,6, 0x2614240,6, 0x261425c,3, 0x2614280,5, 0x26142a0,8, 0x2614400,14, 0x2614440,14, 0x2614480,14, 0x26144c0,14, 0x2614540,3, 0x2614600,7, 0x2614620,14, 0x2614680,5, 0x26146a0,7, 0x2614800,13, 0x2614840,2, 0x2614854,4, 0x2614880,27, 0x2614900,12, 0x2614940,14, 0x2614980,28, 0x2614a00,6, 0x2614a40,6, 0x2614a5c,3, 0x2614a80,5, 0x2614aa0,8, 0x2614c00,14, 0x2614c40,14, 0x2614c80,14, 0x2614cc0,14, 0x2614d40,3, 0x2614e00,7, 0x2614e20,14, 0x2614e80,5, 0x2614ea0,7, 0x2615000,13, 0x2615040,2, 0x2615054,4, 0x2615080,27, 0x2615100,12, 0x2615140,14, 0x2615180,28, 0x2615200,6, 0x2615240,6, 0x261525c,3, 0x2615280,5, 0x26152a0,8, 0x2615400,14, 0x2615440,14, 0x2615480,14, 0x26154c0,14, 0x2615540,3, 0x2615600,7, 0x2615620,14, 0x2615680,5, 0x26156a0,7, 0x2615800,13, 0x2615840,2, 0x2615854,4, 0x2615880,27, 0x2615900,12, 0x2615940,14, 0x2615980,28, 0x2615a00,6, 0x2615a40,6, 0x2615a5c,3, 0x2615a80,5, 0x2615aa0,8, 0x2615c00,14, 0x2615c40,14, 0x2615c80,14, 0x2615cc0,14, 0x2615d40,3, 0x2615e00,7, 0x2615e20,14, 0x2615e80,5, 0x2615ea0,7, 0x2616000,8, 0x2616040,8, 0x2616080,1, 0x2616098,6, 0x2616100,10, 0x2616140,3, 0x2616150,2, 0x2616180,2, 0x2616200,6, 0x2616220,18, 0x2616280,4, 0x2616300,8, 0x2616400,2, 0x2616480,2, 0x2616800,28, 0x26169f0,4, 0x2617000,40, 0x2617100,64, 0x2617800,56, 0x2617be0,8, 0x2618000,2, 0x261800c,2, 0x2618040,7, 0x2618100,3, 0x2618110,3, 0x2618120,5, 0x2618200,6, 0x2618240,5, 0x2618400,2, 0x261840c,2, 0x2618440,7, 0x2618500,3, 0x2618510,3, 0x2618520,5, 0x2618600,6, 0x2618640,5, 0x2618800,2, 0x261880c,2, 0x2618840,7, 0x2618900,3, 0x2618910,3, 0x2618920,5, 0x2618a00,6, 0x2618a40,5, 0x2618c00,2, 0x2618c0c,2, 0x2618c40,7, 0x2618d00,3, 0x2618d10,3, 0x2618d20,5, 0x2618e00,6, 0x2618e40,5, 0x2619000,2, 0x261900c,2, 0x2619040,7, 0x2619100,3, 0x2619110,3, 0x2619120,5, 0x2619200,6, 0x2619240,5, 0x2619400,2, 0x261940c,2, 0x2619440,7, 0x2619500,3, 0x2619510,3, 0x2619520,5, 0x2619600,6, 0x2619640,5, 0x2619800,2, 0x261980c,2, 0x2619840,7, 0x2619900,3, 0x2619910,3, 0x2619920,5, 0x2619a00,6, 0x2619a40,5, 0x2619c00,2, 0x2619c0c,2, 0x2619c40,7, 0x2619d00,3, 0x2619d10,3, 0x2619d20,5, 0x2619e00,6, 0x2619e40,5, 0x261a000,5, 0x261a040,9, 0x261a100,3, 0x261a200,1, 0x261a210,1, 0x261a220,1, 0x261a230,1, 0x261a240,1, 0x261a300,3, 0x261a314,1, 0x261a320,4, 0x261a400,5, 0x261a440,5, 0x261b000,80, 0x261b200,1, 0x2620004,5, 0x2620020,3, 0x2620030,3, 0x2620040,13, 0x2620078,4, 0x262009c,25, 0x2620104,5, 0x2620120,3, 0x2620130,3, 0x2620140,13, 0x2620178,4, 0x262019c,25, 0x2620204,5, 0x2620220,3, 0x2620230,3, 0x2620240,13, 0x2620278,4, 0x262029c,25, 0x2620304,5, 0x2620320,3, 0x2620330,3, 0x2620340,13, 0x2620378,4, 0x262039c,25, 0x2620600,4, 0x2620c00,24, 0x2620c80,24, 0x2620d00,24, 0x2620d80,24, 0x2620e00,4, 0x2620e20,4, 0x2620e40,4, 0x2620e60,4, 0x2620e80,39, 0x2620f20,7, 0x2620f40,7, 0x2620f60,7, 0x2621000,12, 0x2621200,1, 0x2621218,2, 0x262122c,1, 0x2621280,1, 0x2621298,2, 0x26212ac,1, 0x2621300,1, 0x2621318,2, 0x262132c,1, 0x2621380,1, 0x2621398,2, 0x26213ac,1, 0x2621400,4, 0x2621420,2, 0x262142c,1, 0x2621480,4, 0x26214a0,2, 0x26214ac,1, 0x2621500,4, 0x2621520,2, 0x262152c,1, 0x2621580,4, 0x26215a0,2, 0x26215ac,1, 0x2621600,4, 0x2621640,4, 0x2621680,4, 0x26216c0,4, 0x2621700,7, 0x2621720,7, 0x2621740,7, 0x2621760,7, 0x2621780,4, 0x262179c,11, 0x26217d0,2, 0x26217e0,2, 0x26217f0,2, 0x2621900,44, 0x2622000,7, 0x2622020,4, 0x2622040,4, 0x2622060,7, 0x2622080,7, 0x26220a0,4, 0x26220c0,4, 0x26220e0,7, 0x2622100,7, 0x2622120,4, 0x2622140,4, 0x2622160,7, 0x2622180,7, 0x26221a0,4, 0x26221c0,4, 0x26221e0,7, 0x2622200,32, 0x2622b00,1, 0x2622b20,1, 0x2622b28,4, 0x2622b40,1, 0x2622b60,1, 0x2622b68,4, 0x2622b80,1, 0x2622ba0,1, 0x2622ba8,4, 0x2622bc0,1, 0x2622be0,1, 0x2622be8,4, 0x2622c00,7, 0x2622c20,1, 0x2622c54,18, 0x2622ca0,1, 0x2622cd4,18, 0x2622d20,1, 0x2622d54,18, 0x2622da0,1, 0x2622dd4,12, 0x2622e08,6, 0x2623100,7, 0x2623120,7, 0x2623140,7, 0x2623160,7, 0x2623180,3, 0x2624004,5, 0x2624020,3, 0x2624030,3, 0x2624040,13, 0x2624078,4, 0x262409c,25, 0x2624104,5, 0x2624120,3, 0x2624130,3, 0x2624140,13, 0x2624178,4, 0x262419c,25, 0x2624204,5, 0x2624220,3, 0x2624230,3, 0x2624240,13, 0x2624278,4, 0x262429c,25, 0x2624304,5, 0x2624320,3, 0x2624330,3, 0x2624340,13, 0x2624378,4, 0x262439c,25, 0x2624600,4, 0x2624c00,24, 0x2624c80,24, 0x2624d00,24, 0x2624d80,24, 0x2624e00,4, 0x2624e20,4, 0x2624e40,4, 0x2624e60,4, 0x2624e80,39, 0x2624f20,7, 0x2624f40,7, 0x2624f60,7, 0x2625000,12, 0x2625200,1, 0x2625218,2, 0x262522c,1, 0x2625280,1, 0x2625298,2, 0x26252ac,1, 0x2625300,1, 0x2625318,2, 0x262532c,1, 0x2625380,1, 0x2625398,2, 0x26253ac,1, 0x2625400,4, 0x2625420,2, 0x262542c,1, 0x2625480,4, 0x26254a0,2, 0x26254ac,1, 0x2625500,4, 0x2625520,2, 0x262552c,1, 0x2625580,4, 0x26255a0,2, 0x26255ac,1, 0x2625600,4, 0x2625640,4, 0x2625680,4, 0x26256c0,4, 0x2625700,7, 0x2625720,7, 0x2625740,7, 0x2625760,7, 0x2625780,4, 0x262579c,11, 0x26257d0,2, 0x26257e0,2, 0x26257f0,2, 0x2625900,44, 0x2626000,7, 0x2626020,4, 0x2626040,4, 0x2626060,7, 0x2626080,7, 0x26260a0,4, 0x26260c0,4, 0x26260e0,7, 0x2626100,7, 0x2626120,4, 0x2626140,4, 0x2626160,7, 0x2626180,7, 0x26261a0,4, 0x26261c0,4, 0x26261e0,7, 0x2626200,32, 0x2626b00,1, 0x2626b20,1, 0x2626b28,4, 0x2626b40,1, 0x2626b60,1, 0x2626b68,4, 0x2626b80,1, 0x2626ba0,1, 0x2626ba8,4, 0x2626bc0,1, 0x2626be0,1, 0x2626be8,4, 0x2626c00,7, 0x2626c20,1, 0x2626c54,18, 0x2626ca0,1, 0x2626cd4,18, 0x2626d20,1, 0x2626d54,18, 0x2626da0,1, 0x2626dd4,12, 0x2626e08,6, 0x2627100,7, 0x2627120,7, 0x2627140,7, 0x2627160,7, 0x2627180,3, 0x2628000,10, 0x2628080,3, 0x26280c0,1, 0x2628100,21, 0x2628180,13, 0x26281c4,7, 0x26281e4,7, 0x2628204,7, 0x2628224,8, 0x2629000,7, 0x2629030,2, 0x2629040,7, 0x2629070,2, 0x2629100,2, 0x2629120,2, 0x2629140,2, 0x2629160,2, 0x2629180,9, 0x2629200,7, 0x2629230,2, 0x2629240,7, 0x2629270,2, 0x2629300,2, 0x2629320,2, 0x2629340,2, 0x2629360,2, 0x2629380,9, 0x2629400,11, 0x2629500,11, 0x262a000,3, 0x262a010,2, 0x262a01c,5, 0x262a040,8, 0x262a080,3, 0x262a090,2, 0x262a09c,5, 0x262a0c0,8, 0x262a100,3, 0x262a110,2, 0x262a11c,5, 0x262a140,8, 0x262a180,3, 0x262a190,2, 0x262a19c,5, 0x262a1c0,8, 0x262a200,7, 0x262a220,12, 0x262a280,7, 0x262a2a0,12, 0x262a300,3, 0x262a310,1, 0x262a400,3, 0x262a410,2, 0x262a41c,5, 0x262a440,8, 0x262a480,3, 0x262a490,2, 0x262a49c,5, 0x262a4c0,8, 0x262a500,3, 0x262a510,2, 0x262a51c,5, 0x262a540,8, 0x262a580,3, 0x262a590,2, 0x262a59c,5, 0x262a5c0,8, 0x262a600,7, 0x262a620,12, 0x262a680,7, 0x262a6a0,12, 0x262a700,3, 0x262a710,1, 0x262a804,1, 0x262a824,21, 0x262a880,16, 0x262a900,5, 0x262a920,11, 0x262a950,9, 0x262a980,22, 0x262aa00,22, 0x262aa80,22, 0x262ab00,22, 0x262ab80,22, 0x262ac00,22, 0x262ac80,22, 0x262ad00,22, 0x262ad80,3, 0x262c000,16, 0x262c080,11, 0x262c100,11, 0x262c204,1, 0x262c224,21, 0x262c280,16, 0x262c300,11, 0x262c340,11, 0x262c800,21, 0x262c860,5, 0x262c880,6, 0x262c8a0,5, 0x262c8c0,6, 0x262c900,21, 0x262c960,5, 0x262c980,6, 0x262c9a0,5, 0x262c9c0,6, 0x262ca00,21, 0x262ca60,5, 0x262ca80,6, 0x262caa0,5, 0x262cac0,6, 0x262cb00,21, 0x262cb60,5, 0x262cb80,6, 0x262cba0,5, 0x262cbc0,6, 0x262cc00,9, 0x262cc48,7, 0x262cc68,2, 0x262cc74,9, 0x262cc9c,2, 0x262cd00,14, 0x262cd40,14, 0x262cd80,28, 0x262ce00,19, 0x262ce50,3, 0x262ce60,25, 0x262cec8,1, 0x262ced0,2, 0x262cee0,7, 0x262cf00,1, 0x262cf08,2, 0x262cffc,20, 0x262d050,25, 0x262d100,19, 0x262d150,25, 0x262d200,19, 0x262d250,25, 0x262d300,19, 0x262d350,25, 0x262d400,19, 0x262d450,25, 0x262d500,19, 0x262d550,25, 0x262d600,19, 0x262d650,25, 0x262d700,19, 0x262d750,25, 0x262d800,19, 0x262d850,25, 0x262d904,1, 0x262d914,10, 0x262d948,11, 0x262d980,2, 0x262d9a0,6, 0x262d9c0,2, 0x262d9cc,2, 0x262e000,35, 0x262ea00,10, 0x262ea80,3, 0x262eb00,6, 0x262f000,1, 0x262f008,5, 0x262f038,1, 0x262f044,1, 0x262f050,2, 0x262f100,13, 0x262f140,11, 0x262f170,12, 0x262f1a4,1, 0x262f200,104, 0x262f400,104, 0x262f600,104, 0x262f800,104, 0x2630000,13, 0x2630040,2, 0x2630054,4, 0x2630080,27, 0x2630100,12, 0x2630140,14, 0x2630180,28, 0x2630200,6, 0x2630240,6, 0x263025c,3, 0x2630280,5, 0x26302a0,8, 0x2630400,14, 0x2630440,14, 0x2630480,14, 0x26304c0,14, 0x2630540,3, 0x2630600,7, 0x2630620,14, 0x2630680,5, 0x26306a0,7, 0x2630800,13, 0x2630840,2, 0x2630854,4, 0x2630880,27, 0x2630900,12, 0x2630940,14, 0x2630980,28, 0x2630a00,6, 0x2630a40,6, 0x2630a5c,3, 0x2630a80,5, 0x2630aa0,8, 0x2630c00,14, 0x2630c40,14, 0x2630c80,14, 0x2630cc0,14, 0x2630d40,3, 0x2630e00,7, 0x2630e20,14, 0x2630e80,5, 0x2630ea0,7, 0x2631000,13, 0x2631040,2, 0x2631054,4, 0x2631080,27, 0x2631100,12, 0x2631140,14, 0x2631180,28, 0x2631200,6, 0x2631240,6, 0x263125c,3, 0x2631280,5, 0x26312a0,8, 0x2631400,14, 0x2631440,14, 0x2631480,14, 0x26314c0,14, 0x2631540,3, 0x2631600,7, 0x2631620,14, 0x2631680,5, 0x26316a0,7, 0x2631800,13, 0x2631840,2, 0x2631854,4, 0x2631880,27, 0x2631900,12, 0x2631940,14, 0x2631980,28, 0x2631a00,6, 0x2631a40,6, 0x2631a5c,3, 0x2631a80,5, 0x2631aa0,8, 0x2631c00,14, 0x2631c40,14, 0x2631c80,14, 0x2631cc0,14, 0x2631d40,3, 0x2631e00,7, 0x2631e20,14, 0x2631e80,5, 0x2631ea0,7, 0x2632000,8, 0x2632040,8, 0x2632080,1, 0x2632098,6, 0x2632100,10, 0x2632140,3, 0x2632150,2, 0x2632180,2, 0x2632200,6, 0x2632220,18, 0x2632280,4, 0x2632300,8, 0x2632400,2, 0x2632480,2, 0x2632800,28, 0x26329f0,4, 0x2633000,40, 0x2633100,64, 0x2633800,56, 0x2633be0,8, 0x2634000,13, 0x2634040,2, 0x2634054,4, 0x2634080,27, 0x2634100,12, 0x2634140,14, 0x2634180,28, 0x2634200,6, 0x2634240,6, 0x263425c,3, 0x2634280,5, 0x26342a0,8, 0x2634400,14, 0x2634440,14, 0x2634480,14, 0x26344c0,14, 0x2634540,3, 0x2634600,7, 0x2634620,14, 0x2634680,5, 0x26346a0,7, 0x2634800,13, 0x2634840,2, 0x2634854,4, 0x2634880,27, 0x2634900,12, 0x2634940,14, 0x2634980,28, 0x2634a00,6, 0x2634a40,6, 0x2634a5c,3, 0x2634a80,5, 0x2634aa0,8, 0x2634c00,14, 0x2634c40,14, 0x2634c80,14, 0x2634cc0,14, 0x2634d40,3, 0x2634e00,7, 0x2634e20,14, 0x2634e80,5, 0x2634ea0,7, 0x2635000,13, 0x2635040,2, 0x2635054,4, 0x2635080,27, 0x2635100,12, 0x2635140,14, 0x2635180,28, 0x2635200,6, 0x2635240,6, 0x263525c,3, 0x2635280,5, 0x26352a0,8, 0x2635400,14, 0x2635440,14, 0x2635480,14, 0x26354c0,14, 0x2635540,3, 0x2635600,7, 0x2635620,14, 0x2635680,5, 0x26356a0,7, 0x2635800,13, 0x2635840,2, 0x2635854,4, 0x2635880,27, 0x2635900,12, 0x2635940,14, 0x2635980,28, 0x2635a00,6, 0x2635a40,6, 0x2635a5c,3, 0x2635a80,5, 0x2635aa0,8, 0x2635c00,14, 0x2635c40,14, 0x2635c80,14, 0x2635cc0,14, 0x2635d40,3, 0x2635e00,7, 0x2635e20,14, 0x2635e80,5, 0x2635ea0,7, 0x2636000,8, 0x2636040,8, 0x2636080,1, 0x2636098,6, 0x2636100,10, 0x2636140,3, 0x2636150,2, 0x2636180,2, 0x2636200,6, 0x2636220,18, 0x2636280,4, 0x2636300,8, 0x2636400,2, 0x2636480,2, 0x2636800,28, 0x26369f0,4, 0x2637000,40, 0x2637100,64, 0x2637800,56, 0x2637be0,8, 0x2638000,2, 0x263800c,2, 0x2638040,7, 0x2638100,3, 0x2638110,3, 0x2638120,5, 0x2638200,6, 0x2638240,5, 0x2638400,2, 0x263840c,2, 0x2638440,7, 0x2638500,3, 0x2638510,3, 0x2638520,5, 0x2638600,6, 0x2638640,5, 0x2638800,2, 0x263880c,2, 0x2638840,7, 0x2638900,3, 0x2638910,3, 0x2638920,5, 0x2638a00,6, 0x2638a40,5, 0x2638c00,2, 0x2638c0c,2, 0x2638c40,7, 0x2638d00,3, 0x2638d10,3, 0x2638d20,5, 0x2638e00,6, 0x2638e40,5, 0x2639000,2, 0x263900c,2, 0x2639040,7, 0x2639100,3, 0x2639110,3, 0x2639120,5, 0x2639200,6, 0x2639240,5, 0x2639400,2, 0x263940c,2, 0x2639440,7, 0x2639500,3, 0x2639510,3, 0x2639520,5, 0x2639600,6, 0x2639640,5, 0x2639800,2, 0x263980c,2, 0x2639840,7, 0x2639900,3, 0x2639910,3, 0x2639920,5, 0x2639a00,6, 0x2639a40,5, 0x2639c00,2, 0x2639c0c,2, 0x2639c40,7, 0x2639d00,3, 0x2639d10,3, 0x2639d20,5, 0x2639e00,6, 0x2639e40,5, 0x263a000,5, 0x263a040,9, 0x263a100,3, 0x263a200,1, 0x263a210,1, 0x263a220,1, 0x263a230,1, 0x263a240,1, 0x263a300,3, 0x263a314,1, 0x263a320,4, 0x263a400,5, 0x263a440,5, 0x263b000,80, 0x263b200,1, 0x2640004,5, 0x2640020,3, 0x2640030,3, 0x2640040,13, 0x2640078,4, 0x264009c,25, 0x2640104,5, 0x2640120,3, 0x2640130,3, 0x2640140,13, 0x2640178,4, 0x264019c,25, 0x2640204,5, 0x2640220,3, 0x2640230,3, 0x2640240,13, 0x2640278,4, 0x264029c,25, 0x2640304,5, 0x2640320,3, 0x2640330,3, 0x2640340,13, 0x2640378,4, 0x264039c,25, 0x2640600,4, 0x2640c00,24, 0x2640c80,24, 0x2640d00,24, 0x2640d80,24, 0x2640e00,4, 0x2640e20,4, 0x2640e40,4, 0x2640e60,4, 0x2640e80,39, 0x2640f20,7, 0x2640f40,7, 0x2640f60,7, 0x2641000,12, 0x2641200,1, 0x2641218,2, 0x264122c,1, 0x2641280,1, 0x2641298,2, 0x26412ac,1, 0x2641300,1, 0x2641318,2, 0x264132c,1, 0x2641380,1, 0x2641398,2, 0x26413ac,1, 0x2641400,4, 0x2641420,2, 0x264142c,1, 0x2641480,4, 0x26414a0,2, 0x26414ac,1, 0x2641500,4, 0x2641520,2, 0x264152c,1, 0x2641580,4, 0x26415a0,2, 0x26415ac,1, 0x2641600,4, 0x2641640,4, 0x2641680,4, 0x26416c0,4, 0x2641700,7, 0x2641720,7, 0x2641740,7, 0x2641760,7, 0x2641780,4, 0x264179c,11, 0x26417d0,2, 0x26417e0,2, 0x26417f0,2, 0x2641900,44, 0x2642000,7, 0x2642020,4, 0x2642040,4, 0x2642060,7, 0x2642080,7, 0x26420a0,4, 0x26420c0,4, 0x26420e0,7, 0x2642100,7, 0x2642120,4, 0x2642140,4, 0x2642160,7, 0x2642180,7, 0x26421a0,4, 0x26421c0,4, 0x26421e0,7, 0x2642200,32, 0x2642b00,1, 0x2642b20,1, 0x2642b28,4, 0x2642b40,1, 0x2642b60,1, 0x2642b68,4, 0x2642b80,1, 0x2642ba0,1, 0x2642ba8,4, 0x2642bc0,1, 0x2642be0,1, 0x2642be8,4, 0x2642c00,7, 0x2642c20,1, 0x2642c54,18, 0x2642ca0,1, 0x2642cd4,18, 0x2642d20,1, 0x2642d54,18, 0x2642da0,1, 0x2642dd4,12, 0x2642e08,6, 0x2643100,7, 0x2643120,7, 0x2643140,7, 0x2643160,7, 0x2643180,3, 0x2644004,5, 0x2644020,3, 0x2644030,3, 0x2644040,13, 0x2644078,4, 0x264409c,25, 0x2644104,5, 0x2644120,3, 0x2644130,3, 0x2644140,13, 0x2644178,4, 0x264419c,25, 0x2644204,5, 0x2644220,3, 0x2644230,3, 0x2644240,13, 0x2644278,4, 0x264429c,25, 0x2644304,5, 0x2644320,3, 0x2644330,3, 0x2644340,13, 0x2644378,4, 0x264439c,25, 0x2644600,4, 0x2644c00,24, 0x2644c80,24, 0x2644d00,24, 0x2644d80,24, 0x2644e00,4, 0x2644e20,4, 0x2644e40,4, 0x2644e60,4, 0x2644e80,39, 0x2644f20,7, 0x2644f40,7, 0x2644f60,7, 0x2645000,12, 0x2645200,1, 0x2645218,2, 0x264522c,1, 0x2645280,1, 0x2645298,2, 0x26452ac,1, 0x2645300,1, 0x2645318,2, 0x264532c,1, 0x2645380,1, 0x2645398,2, 0x26453ac,1, 0x2645400,4, 0x2645420,2, 0x264542c,1, 0x2645480,4, 0x26454a0,2, 0x26454ac,1, 0x2645500,4, 0x2645520,2, 0x264552c,1, 0x2645580,4, 0x26455a0,2, 0x26455ac,1, 0x2645600,4, 0x2645640,4, 0x2645680,4, 0x26456c0,4, 0x2645700,7, 0x2645720,7, 0x2645740,7, 0x2645760,7, 0x2645780,4, 0x264579c,11, 0x26457d0,2, 0x26457e0,2, 0x26457f0,2, 0x2645900,44, 0x2646000,7, 0x2646020,4, 0x2646040,4, 0x2646060,7, 0x2646080,7, 0x26460a0,4, 0x26460c0,4, 0x26460e0,7, 0x2646100,7, 0x2646120,4, 0x2646140,4, 0x2646160,7, 0x2646180,7, 0x26461a0,4, 0x26461c0,4, 0x26461e0,7, 0x2646200,32, 0x2646b00,1, 0x2646b20,1, 0x2646b28,4, 0x2646b40,1, 0x2646b60,1, 0x2646b68,4, 0x2646b80,1, 0x2646ba0,1, 0x2646ba8,4, 0x2646bc0,1, 0x2646be0,1, 0x2646be8,4, 0x2646c00,7, 0x2646c20,1, 0x2646c54,18, 0x2646ca0,1, 0x2646cd4,18, 0x2646d20,1, 0x2646d54,18, 0x2646da0,1, 0x2646dd4,12, 0x2646e08,6, 0x2647100,7, 0x2647120,7, 0x2647140,7, 0x2647160,7, 0x2647180,3, 0x2648000,10, 0x2648080,3, 0x26480c0,1, 0x2648100,21, 0x2648180,13, 0x26481c4,7, 0x26481e4,7, 0x2648204,7, 0x2648224,8, 0x2649000,7, 0x2649030,2, 0x2649040,7, 0x2649070,2, 0x2649100,2, 0x2649120,2, 0x2649140,2, 0x2649160,2, 0x2649180,9, 0x2649200,7, 0x2649230,2, 0x2649240,7, 0x2649270,2, 0x2649300,2, 0x2649320,2, 0x2649340,2, 0x2649360,2, 0x2649380,9, 0x2649400,11, 0x2649500,11, 0x264a000,3, 0x264a010,2, 0x264a01c,5, 0x264a040,8, 0x264a080,3, 0x264a090,2, 0x264a09c,5, 0x264a0c0,8, 0x264a100,3, 0x264a110,2, 0x264a11c,5, 0x264a140,8, 0x264a180,3, 0x264a190,2, 0x264a19c,5, 0x264a1c0,8, 0x264a200,7, 0x264a220,12, 0x264a280,7, 0x264a2a0,12, 0x264a300,3, 0x264a310,1, 0x264a400,3, 0x264a410,2, 0x264a41c,5, 0x264a440,8, 0x264a480,3, 0x264a490,2, 0x264a49c,5, 0x264a4c0,8, 0x264a500,3, 0x264a510,2, 0x264a51c,5, 0x264a540,8, 0x264a580,3, 0x264a590,2, 0x264a59c,5, 0x264a5c0,8, 0x264a600,7, 0x264a620,12, 0x264a680,7, 0x264a6a0,12, 0x264a700,3, 0x264a710,1, 0x264a804,1, 0x264a824,21, 0x264a880,16, 0x264a900,5, 0x264a920,11, 0x264a950,9, 0x264a980,22, 0x264aa00,22, 0x264aa80,22, 0x264ab00,22, 0x264ab80,22, 0x264ac00,22, 0x264ac80,22, 0x264ad00,22, 0x264ad80,3, 0x264c000,16, 0x264c080,11, 0x264c100,11, 0x264c204,1, 0x264c224,21, 0x264c280,16, 0x264c300,11, 0x264c340,11, 0x264c800,21, 0x264c860,5, 0x264c880,6, 0x264c8a0,5, 0x264c8c0,6, 0x264c900,21, 0x264c960,5, 0x264c980,6, 0x264c9a0,5, 0x264c9c0,6, 0x264ca00,21, 0x264ca60,5, 0x264ca80,6, 0x264caa0,5, 0x264cac0,6, 0x264cb00,21, 0x264cb60,5, 0x264cb80,6, 0x264cba0,5, 0x264cbc0,6, 0x264cc00,9, 0x264cc48,7, 0x264cc68,2, 0x264cc74,9, 0x264cc9c,2, 0x264cd00,14, 0x264cd40,14, 0x264cd80,28, 0x264ce00,19, 0x264ce50,3, 0x264ce60,25, 0x264cec8,1, 0x264ced0,2, 0x264cee0,7, 0x264cf00,1, 0x264cf08,2, 0x264cffc,20, 0x264d050,25, 0x264d100,19, 0x264d150,25, 0x264d200,19, 0x264d250,25, 0x264d300,19, 0x264d350,25, 0x264d400,19, 0x264d450,25, 0x264d500,19, 0x264d550,25, 0x264d600,19, 0x264d650,25, 0x264d700,19, 0x264d750,25, 0x264d800,19, 0x264d850,25, 0x264d904,1, 0x264d914,10, 0x264d948,11, 0x264d980,2, 0x264d9a0,6, 0x264d9c0,2, 0x264d9cc,2, 0x264e000,35, 0x264ea00,10, 0x264ea80,3, 0x264eb00,6, 0x264f000,1, 0x264f008,5, 0x264f038,1, 0x264f044,1, 0x264f050,2, 0x264f100,13, 0x264f140,11, 0x264f170,12, 0x264f1a4,1, 0x264f200,104, 0x264f400,104, 0x264f600,104, 0x264f800,104, 0x2650000,13, 0x2650040,2, 0x2650054,4, 0x2650080,27, 0x2650100,12, 0x2650140,14, 0x2650180,28, 0x2650200,6, 0x2650240,6, 0x265025c,3, 0x2650280,5, 0x26502a0,8, 0x2650400,14, 0x2650440,14, 0x2650480,14, 0x26504c0,14, 0x2650540,3, 0x2650600,7, 0x2650620,14, 0x2650680,5, 0x26506a0,7, 0x2650800,13, 0x2650840,2, 0x2650854,4, 0x2650880,27, 0x2650900,12, 0x2650940,14, 0x2650980,28, 0x2650a00,6, 0x2650a40,6, 0x2650a5c,3, 0x2650a80,5, 0x2650aa0,8, 0x2650c00,14, 0x2650c40,14, 0x2650c80,14, 0x2650cc0,14, 0x2650d40,3, 0x2650e00,7, 0x2650e20,14, 0x2650e80,5, 0x2650ea0,7, 0x2651000,13, 0x2651040,2, 0x2651054,4, 0x2651080,27, 0x2651100,12, 0x2651140,14, 0x2651180,28, 0x2651200,6, 0x2651240,6, 0x265125c,3, 0x2651280,5, 0x26512a0,8, 0x2651400,14, 0x2651440,14, 0x2651480,14, 0x26514c0,14, 0x2651540,3, 0x2651600,7, 0x2651620,14, 0x2651680,5, 0x26516a0,7, 0x2651800,13, 0x2651840,2, 0x2651854,4, 0x2651880,27, 0x2651900,12, 0x2651940,14, 0x2651980,28, 0x2651a00,6, 0x2651a40,6, 0x2651a5c,3, 0x2651a80,5, 0x2651aa0,8, 0x2651c00,14, 0x2651c40,14, 0x2651c80,14, 0x2651cc0,14, 0x2651d40,3, 0x2651e00,7, 0x2651e20,14, 0x2651e80,5, 0x2651ea0,7, 0x2652000,8, 0x2652040,8, 0x2652080,1, 0x2652098,6, 0x2652100,10, 0x2652140,3, 0x2652150,2, 0x2652180,2, 0x2652200,6, 0x2652220,18, 0x2652280,4, 0x2652300,8, 0x2652400,2, 0x2652480,2, 0x2652800,28, 0x26529f0,4, 0x2653000,40, 0x2653100,64, 0x2653800,56, 0x2653be0,8, 0x2654000,13, 0x2654040,2, 0x2654054,4, 0x2654080,27, 0x2654100,12, 0x2654140,14, 0x2654180,28, 0x2654200,6, 0x2654240,6, 0x265425c,3, 0x2654280,5, 0x26542a0,8, 0x2654400,14, 0x2654440,14, 0x2654480,14, 0x26544c0,14, 0x2654540,3, 0x2654600,7, 0x2654620,14, 0x2654680,5, 0x26546a0,7, 0x2654800,13, 0x2654840,2, 0x2654854,4, 0x2654880,27, 0x2654900,12, 0x2654940,14, 0x2654980,28, 0x2654a00,6, 0x2654a40,6, 0x2654a5c,3, 0x2654a80,5, 0x2654aa0,8, 0x2654c00,14, 0x2654c40,14, 0x2654c80,14, 0x2654cc0,14, 0x2654d40,3, 0x2654e00,7, 0x2654e20,14, 0x2654e80,5, 0x2654ea0,7, 0x2655000,13, 0x2655040,2, 0x2655054,4, 0x2655080,27, 0x2655100,12, 0x2655140,14, 0x2655180,28, 0x2655200,6, 0x2655240,6, 0x265525c,3, 0x2655280,5, 0x26552a0,8, 0x2655400,14, 0x2655440,14, 0x2655480,14, 0x26554c0,14, 0x2655540,3, 0x2655600,7, 0x2655620,14, 0x2655680,5, 0x26556a0,7, 0x2655800,13, 0x2655840,2, 0x2655854,4, 0x2655880,27, 0x2655900,12, 0x2655940,14, 0x2655980,28, 0x2655a00,6, 0x2655a40,6, 0x2655a5c,3, 0x2655a80,5, 0x2655aa0,8, 0x2655c00,14, 0x2655c40,14, 0x2655c80,14, 0x2655cc0,14, 0x2655d40,3, 0x2655e00,7, 0x2655e20,14, 0x2655e80,5, 0x2655ea0,7, 0x2656000,8, 0x2656040,8, 0x2656080,1, 0x2656098,6, 0x2656100,10, 0x2656140,3, 0x2656150,2, 0x2656180,2, 0x2656200,6, 0x2656220,18, 0x2656280,4, 0x2656300,8, 0x2656400,2, 0x2656480,2, 0x2656800,28, 0x26569f0,4, 0x2657000,40, 0x2657100,64, 0x2657800,56, 0x2657be0,8, 0x2658000,2, 0x265800c,2, 0x2658040,7, 0x2658100,3, 0x2658110,3, 0x2658120,5, 0x2658200,6, 0x2658240,5, 0x2658400,2, 0x265840c,2, 0x2658440,7, 0x2658500,3, 0x2658510,3, 0x2658520,5, 0x2658600,6, 0x2658640,5, 0x2658800,2, 0x265880c,2, 0x2658840,7, 0x2658900,3, 0x2658910,3, 0x2658920,5, 0x2658a00,6, 0x2658a40,5, 0x2658c00,2, 0x2658c0c,2, 0x2658c40,7, 0x2658d00,3, 0x2658d10,3, 0x2658d20,5, 0x2658e00,6, 0x2658e40,5, 0x2659000,2, 0x265900c,2, 0x2659040,7, 0x2659100,3, 0x2659110,3, 0x2659120,5, 0x2659200,6, 0x2659240,5, 0x2659400,2, 0x265940c,2, 0x2659440,7, 0x2659500,3, 0x2659510,3, 0x2659520,5, 0x2659600,6, 0x2659640,5, 0x2659800,2, 0x265980c,2, 0x2659840,7, 0x2659900,3, 0x2659910,3, 0x2659920,5, 0x2659a00,6, 0x2659a40,5, 0x2659c00,2, 0x2659c0c,2, 0x2659c40,7, 0x2659d00,3, 0x2659d10,3, 0x2659d20,5, 0x2659e00,6, 0x2659e40,5, 0x265a000,5, 0x265a040,9, 0x265a100,3, 0x265a200,1, 0x265a210,1, 0x265a220,1, 0x265a230,1, 0x265a240,1, 0x265a300,3, 0x265a314,1, 0x265a320,4, 0x265a400,5, 0x265a440,5, 0x265b000,80, 0x265b200,1, 0x2660004,5, 0x2660020,3, 0x2660030,3, 0x2660040,13, 0x2660078,4, 0x266009c,25, 0x2660104,5, 0x2660120,3, 0x2660130,3, 0x2660140,13, 0x2660178,4, 0x266019c,25, 0x2660204,5, 0x2660220,3, 0x2660230,3, 0x2660240,13, 0x2660278,4, 0x266029c,25, 0x2660304,5, 0x2660320,3, 0x2660330,3, 0x2660340,13, 0x2660378,4, 0x266039c,25, 0x2660600,4, 0x2660c00,24, 0x2660c80,24, 0x2660d00,24, 0x2660d80,24, 0x2660e00,4, 0x2660e20,4, 0x2660e40,4, 0x2660e60,4, 0x2660e80,39, 0x2660f20,7, 0x2660f40,7, 0x2660f60,7, 0x2661000,12, 0x2661200,1, 0x2661218,2, 0x266122c,1, 0x2661280,1, 0x2661298,2, 0x26612ac,1, 0x2661300,1, 0x2661318,2, 0x266132c,1, 0x2661380,1, 0x2661398,2, 0x26613ac,1, 0x2661400,4, 0x2661420,2, 0x266142c,1, 0x2661480,4, 0x26614a0,2, 0x26614ac,1, 0x2661500,4, 0x2661520,2, 0x266152c,1, 0x2661580,4, 0x26615a0,2, 0x26615ac,1, 0x2661600,4, 0x2661640,4, 0x2661680,4, 0x26616c0,4, 0x2661700,7, 0x2661720,7, 0x2661740,7, 0x2661760,7, 0x2661780,4, 0x266179c,11, 0x26617d0,2, 0x26617e0,2, 0x26617f0,2, 0x2661900,44, 0x2662000,7, 0x2662020,4, 0x2662040,4, 0x2662060,7, 0x2662080,7, 0x26620a0,4, 0x26620c0,4, 0x26620e0,7, 0x2662100,7, 0x2662120,4, 0x2662140,4, 0x2662160,7, 0x2662180,7, 0x26621a0,4, 0x26621c0,4, 0x26621e0,7, 0x2662200,32, 0x2662b00,1, 0x2662b20,1, 0x2662b28,4, 0x2662b40,1, 0x2662b60,1, 0x2662b68,4, 0x2662b80,1, 0x2662ba0,1, 0x2662ba8,4, 0x2662bc0,1, 0x2662be0,1, 0x2662be8,4, 0x2662c00,7, 0x2662c20,1, 0x2662c54,18, 0x2662ca0,1, 0x2662cd4,18, 0x2662d20,1, 0x2662d54,18, 0x2662da0,1, 0x2662dd4,12, 0x2662e08,6, 0x2663100,7, 0x2663120,7, 0x2663140,7, 0x2663160,7, 0x2663180,3, 0x2664004,5, 0x2664020,3, 0x2664030,3, 0x2664040,13, 0x2664078,4, 0x266409c,25, 0x2664104,5, 0x2664120,3, 0x2664130,3, 0x2664140,13, 0x2664178,4, 0x266419c,25, 0x2664204,5, 0x2664220,3, 0x2664230,3, 0x2664240,13, 0x2664278,4, 0x266429c,25, 0x2664304,5, 0x2664320,3, 0x2664330,3, 0x2664340,13, 0x2664378,4, 0x266439c,25, 0x2664600,4, 0x2664c00,24, 0x2664c80,24, 0x2664d00,24, 0x2664d80,24, 0x2664e00,4, 0x2664e20,4, 0x2664e40,4, 0x2664e60,4, 0x2664e80,39, 0x2664f20,7, 0x2664f40,7, 0x2664f60,7, 0x2665000,12, 0x2665200,1, 0x2665218,2, 0x266522c,1, 0x2665280,1, 0x2665298,2, 0x26652ac,1, 0x2665300,1, 0x2665318,2, 0x266532c,1, 0x2665380,1, 0x2665398,2, 0x26653ac,1, 0x2665400,4, 0x2665420,2, 0x266542c,1, 0x2665480,4, 0x26654a0,2, 0x26654ac,1, 0x2665500,4, 0x2665520,2, 0x266552c,1, 0x2665580,4, 0x26655a0,2, 0x26655ac,1, 0x2665600,4, 0x2665640,4, 0x2665680,4, 0x26656c0,4, 0x2665700,7, 0x2665720,7, 0x2665740,7, 0x2665760,7, 0x2665780,4, 0x266579c,11, 0x26657d0,2, 0x26657e0,2, 0x26657f0,2, 0x2665900,44, 0x2666000,7, 0x2666020,4, 0x2666040,4, 0x2666060,7, 0x2666080,7, 0x26660a0,4, 0x26660c0,4, 0x26660e0,7, 0x2666100,7, 0x2666120,4, 0x2666140,4, 0x2666160,7, 0x2666180,7, 0x26661a0,4, 0x26661c0,4, 0x26661e0,7, 0x2666200,32, 0x2666b00,1, 0x2666b20,1, 0x2666b28,4, 0x2666b40,1, 0x2666b60,1, 0x2666b68,4, 0x2666b80,1, 0x2666ba0,1, 0x2666ba8,4, 0x2666bc0,1, 0x2666be0,1, 0x2666be8,4, 0x2666c00,7, 0x2666c20,1, 0x2666c54,18, 0x2666ca0,1, 0x2666cd4,18, 0x2666d20,1, 0x2666d54,18, 0x2666da0,1, 0x2666dd4,12, 0x2666e08,6, 0x2667100,7, 0x2667120,7, 0x2667140,7, 0x2667160,7, 0x2667180,3, 0x2668000,10, 0x2668080,3, 0x26680c0,1, 0x2668100,21, 0x2668180,13, 0x26681c4,7, 0x26681e4,7, 0x2668204,7, 0x2668224,8, 0x2669000,7, 0x2669030,2, 0x2669040,7, 0x2669070,2, 0x2669100,2, 0x2669120,2, 0x2669140,2, 0x2669160,2, 0x2669180,9, 0x2669200,7, 0x2669230,2, 0x2669240,7, 0x2669270,2, 0x2669300,2, 0x2669320,2, 0x2669340,2, 0x2669360,2, 0x2669380,9, 0x2669400,11, 0x2669500,11, 0x266a000,3, 0x266a010,2, 0x266a01c,5, 0x266a040,8, 0x266a080,3, 0x266a090,2, 0x266a09c,5, 0x266a0c0,8, 0x266a100,3, 0x266a110,2, 0x266a11c,5, 0x266a140,8, 0x266a180,3, 0x266a190,2, 0x266a19c,5, 0x266a1c0,8, 0x266a200,7, 0x266a220,12, 0x266a280,7, 0x266a2a0,12, 0x266a300,3, 0x266a310,1, 0x266a400,3, 0x266a410,2, 0x266a41c,5, 0x266a440,8, 0x266a480,3, 0x266a490,2, 0x266a49c,5, 0x266a4c0,8, 0x266a500,3, 0x266a510,2, 0x266a51c,5, 0x266a540,8, 0x266a580,3, 0x266a590,2, 0x266a59c,5, 0x266a5c0,8, 0x266a600,7, 0x266a620,12, 0x266a680,7, 0x266a6a0,12, 0x266a700,3, 0x266a710,1, 0x266a804,1, 0x266a824,21, 0x266a880,16, 0x266a900,5, 0x266a920,11, 0x266a950,9, 0x266a980,22, 0x266aa00,22, 0x266aa80,22, 0x266ab00,22, 0x266ab80,22, 0x266ac00,22, 0x266ac80,22, 0x266ad00,22, 0x266ad80,3, 0x266c000,16, 0x266c080,11, 0x266c100,11, 0x266c204,1, 0x266c224,21, 0x266c280,16, 0x266c300,11, 0x266c340,11, 0x266c800,21, 0x266c860,5, 0x266c880,6, 0x266c8a0,5, 0x266c8c0,6, 0x266c900,21, 0x266c960,5, 0x266c980,6, 0x266c9a0,5, 0x266c9c0,6, 0x266ca00,21, 0x266ca60,5, 0x266ca80,6, 0x266caa0,5, 0x266cac0,6, 0x266cb00,21, 0x266cb60,5, 0x266cb80,6, 0x266cba0,5, 0x266cbc0,6, 0x266cc00,9, 0x266cc48,7, 0x266cc68,2, 0x266cc74,9, 0x266cc9c,2, 0x266cd00,14, 0x266cd40,14, 0x266cd80,28, 0x266ce00,19, 0x266ce50,3, 0x266ce60,25, 0x266cec8,1, 0x266ced0,2, 0x266cee0,7, 0x266cf00,1, 0x266cf08,2, 0x266cffc,20, 0x266d050,25, 0x266d100,19, 0x266d150,25, 0x266d200,19, 0x266d250,25, 0x266d300,19, 0x266d350,25, 0x266d400,19, 0x266d450,25, 0x266d500,19, 0x266d550,25, 0x266d600,19, 0x266d650,25, 0x266d700,19, 0x266d750,25, 0x266d800,19, 0x266d850,25, 0x266d904,1, 0x266d914,10, 0x266d948,11, 0x266d980,2, 0x266d9a0,6, 0x266d9c0,2, 0x266d9cc,2, 0x266e000,35, 0x266ea00,10, 0x266ea80,3, 0x266eb00,6, 0x266f000,1, 0x266f008,5, 0x266f038,1, 0x266f044,1, 0x266f050,2, 0x266f100,13, 0x266f140,11, 0x266f170,12, 0x266f1a4,1, 0x266f200,104, 0x266f400,104, 0x266f600,104, 0x266f800,104, 0x2670000,13, 0x2670040,2, 0x2670054,4, 0x2670080,27, 0x2670100,12, 0x2670140,14, 0x2670180,28, 0x2670200,6, 0x2670240,6, 0x267025c,3, 0x2670280,5, 0x26702a0,8, 0x2670400,14, 0x2670440,14, 0x2670480,14, 0x26704c0,14, 0x2670540,3, 0x2670600,7, 0x2670620,14, 0x2670680,5, 0x26706a0,7, 0x2670800,13, 0x2670840,2, 0x2670854,4, 0x2670880,27, 0x2670900,12, 0x2670940,14, 0x2670980,28, 0x2670a00,6, 0x2670a40,6, 0x2670a5c,3, 0x2670a80,5, 0x2670aa0,8, 0x2670c00,14, 0x2670c40,14, 0x2670c80,14, 0x2670cc0,14, 0x2670d40,3, 0x2670e00,7, 0x2670e20,14, 0x2670e80,5, 0x2670ea0,7, 0x2671000,13, 0x2671040,2, 0x2671054,4, 0x2671080,27, 0x2671100,12, 0x2671140,14, 0x2671180,28, 0x2671200,6, 0x2671240,6, 0x267125c,3, 0x2671280,5, 0x26712a0,8, 0x2671400,14, 0x2671440,14, 0x2671480,14, 0x26714c0,14, 0x2671540,3, 0x2671600,7, 0x2671620,14, 0x2671680,5, 0x26716a0,7, 0x2671800,13, 0x2671840,2, 0x2671854,4, 0x2671880,27, 0x2671900,12, 0x2671940,14, 0x2671980,28, 0x2671a00,6, 0x2671a40,6, 0x2671a5c,3, 0x2671a80,5, 0x2671aa0,8, 0x2671c00,14, 0x2671c40,14, 0x2671c80,14, 0x2671cc0,14, 0x2671d40,3, 0x2671e00,7, 0x2671e20,14, 0x2671e80,5, 0x2671ea0,7, 0x2672000,8, 0x2672040,8, 0x2672080,1, 0x2672098,6, 0x2672100,10, 0x2672140,3, 0x2672150,2, 0x2672180,2, 0x2672200,6, 0x2672220,18, 0x2672280,4, 0x2672300,8, 0x2672400,2, 0x2672480,2, 0x2672800,28, 0x26729f0,4, 0x2673000,40, 0x2673100,64, 0x2673800,56, 0x2673be0,8, 0x2674000,13, 0x2674040,2, 0x2674054,4, 0x2674080,27, 0x2674100,12, 0x2674140,14, 0x2674180,28, 0x2674200,6, 0x2674240,6, 0x267425c,3, 0x2674280,5, 0x26742a0,8, 0x2674400,14, 0x2674440,14, 0x2674480,14, 0x26744c0,14, 0x2674540,3, 0x2674600,7, 0x2674620,14, 0x2674680,5, 0x26746a0,7, 0x2674800,13, 0x2674840,2, 0x2674854,4, 0x2674880,27, 0x2674900,12, 0x2674940,14, 0x2674980,28, 0x2674a00,6, 0x2674a40,6, 0x2674a5c,3, 0x2674a80,5, 0x2674aa0,8, 0x2674c00,14, 0x2674c40,14, 0x2674c80,14, 0x2674cc0,14, 0x2674d40,3, 0x2674e00,7, 0x2674e20,14, 0x2674e80,5, 0x2674ea0,7, 0x2675000,13, 0x2675040,2, 0x2675054,4, 0x2675080,27, 0x2675100,12, 0x2675140,14, 0x2675180,28, 0x2675200,6, 0x2675240,6, 0x267525c,3, 0x2675280,5, 0x26752a0,8, 0x2675400,14, 0x2675440,14, 0x2675480,14, 0x26754c0,14, 0x2675540,3, 0x2675600,7, 0x2675620,14, 0x2675680,5, 0x26756a0,7, 0x2675800,13, 0x2675840,2, 0x2675854,4, 0x2675880,27, 0x2675900,12, 0x2675940,14, 0x2675980,28, 0x2675a00,6, 0x2675a40,6, 0x2675a5c,3, 0x2675a80,5, 0x2675aa0,8, 0x2675c00,14, 0x2675c40,14, 0x2675c80,14, 0x2675cc0,14, 0x2675d40,3, 0x2675e00,7, 0x2675e20,14, 0x2675e80,5, 0x2675ea0,7, 0x2676000,8, 0x2676040,8, 0x2676080,1, 0x2676098,6, 0x2676100,10, 0x2676140,3, 0x2676150,2, 0x2676180,2, 0x2676200,6, 0x2676220,18, 0x2676280,4, 0x2676300,8, 0x2676400,2, 0x2676480,2, 0x2676800,28, 0x26769f0,4, 0x2677000,40, 0x2677100,64, 0x2677800,56, 0x2677be0,8, 0x2678000,2, 0x267800c,2, 0x2678040,7, 0x2678100,3, 0x2678110,3, 0x2678120,5, 0x2678200,6, 0x2678240,5, 0x2678400,2, 0x267840c,2, 0x2678440,7, 0x2678500,3, 0x2678510,3, 0x2678520,5, 0x2678600,6, 0x2678640,5, 0x2678800,2, 0x267880c,2, 0x2678840,7, 0x2678900,3, 0x2678910,3, 0x2678920,5, 0x2678a00,6, 0x2678a40,5, 0x2678c00,2, 0x2678c0c,2, 0x2678c40,7, 0x2678d00,3, 0x2678d10,3, 0x2678d20,5, 0x2678e00,6, 0x2678e40,5, 0x2679000,2, 0x267900c,2, 0x2679040,7, 0x2679100,3, 0x2679110,3, 0x2679120,5, 0x2679200,6, 0x2679240,5, 0x2679400,2, 0x267940c,2, 0x2679440,7, 0x2679500,3, 0x2679510,3, 0x2679520,5, 0x2679600,6, 0x2679640,5, 0x2679800,2, 0x267980c,2, 0x2679840,7, 0x2679900,3, 0x2679910,3, 0x2679920,5, 0x2679a00,6, 0x2679a40,5, 0x2679c00,2, 0x2679c0c,2, 0x2679c40,7, 0x2679d00,3, 0x2679d10,3, 0x2679d20,5, 0x2679e00,6, 0x2679e40,5, 0x267a000,5, 0x267a040,9, 0x267a100,3, 0x267a200,1, 0x267a210,1, 0x267a220,1, 0x267a230,1, 0x267a240,1, 0x267a300,3, 0x267a314,1, 0x267a320,4, 0x267a400,5, 0x267a440,5, 0x267b000,80, 0x267b200,1, 0x2680000,3, 0x2680010,7, 0x2680030,10, 0x2680080,2, 0x2680100,6, 0x2680140,2, 0x2680180,2, 0x26801a0,1, 0x2680400,2, 0x2680440,4, 0x2680460,5, 0x2680478,1, 0x2680480,6, 0x26804a0,3, 0x26804b0,2, 0x2680500,5, 0x2680600,1, 0x2680800,5, 0x2680900,5, 0x2680a00,5, 0x2680b00,3, 0x2680c00,35, 0x2680d00,25, 0x2680d80,1, 0x2680dc0,3, 0x2680e00,2, 0x2680e20,2, 0x2690000,3, 0x269001c,4, 0x2690080,3, 0x2690090,2, 0x26900d4,4, 0x26900ec,27, 0x269015c,27, 0x26901cc,19, 0x2690224,120, 0x2690408,24, 0x269046c,84, 0x26905f8,4, 0x2690610,27, 0x2690680,27, 0x26906f0,19, 0x2690748,120, 0x269092c,24, 0x2690990,84, 0x2690b1c,4, 0x2690b34,27, 0x2690ba4,27, 0x2690c14,19, 0x2690c6c,120, 0x2690e50,24, 0x2690eb4,84, 0x2691040,4, 0x2691058,27, 0x26910c8,27, 0x2691138,19, 0x2691190,120, 0x2691374,24, 0x26913d8,84, 0x2691564,4, 0x269157c,27, 0x26915ec,27, 0x269165c,19, 0x26916b4,120, 0x2691898,24, 0x26918fc,84, 0x2691a88,4, 0x2691aa0,27, 0x2691b10,27, 0x2691b80,19, 0x2691bd8,120, 0x2691dbc,24, 0x2691e20,84, 0x2691fac,4, 0x2691fc4,27, 0x2692034,27, 0x26920a4,19, 0x26920fc,120, 0x26922e0,24, 0x2692344,84, 0x26924d0,4, 0x26924e8,27, 0x2692558,27, 0x26925c8,19, 0x2692620,120, 0x2692804,24, 0x2692868,84, 0x26929f4,4, 0x2692a0c,27, 0x2692a7c,27, 0x2692aec,19, 0x2692b44,120, 0x2692d28,24, 0x2692d8c,84, 0x2692f18,4, 0x2692f30,27, 0x2692fa0,27, 0x2693010,19, 0x2693068,120, 0x269324c,24, 0x26932b0,84, 0x269343c,4, 0x2693454,27, 0x26934c4,27, 0x2693534,19, 0x269358c,120, 0x2693770,24, 0x26937d4,84, 0x2693960,4, 0x2693978,27, 0x26939e8,27, 0x2693a58,19, 0x2693ab0,120, 0x2693c94,24, 0x2693cf8,84, 0x2693e84,4, 0x2693e9c,27, 0x2693f0c,27, 0x2693f7c,19, 0x2693fd4,120, 0x26941b8,24, 0x269421c,84, 0x26943a8,4, 0x26943c0,27, 0x2694430,27, 0x26944a0,19, 0x26944f8,120, 0x26946dc,24, 0x2694740,84, 0x26948cc,4, 0x26948e4,27, 0x2694954,27, 0x26949c4,19, 0x2694a1c,120, 0x2694c00,24, 0x2694c64,84, 0x2694df0,4, 0x2694e08,27, 0x2694e78,27, 0x2694ee8,19, 0x2694f40,120, 0x2695124,24, 0x2695188,84, 0x2695314,4, 0x269532c,27, 0x269539c,27, 0x269540c,19, 0x2695464,120, 0x2695648,24, 0x26956ac,84, 0x2695838,14, 0x2695940,13, 0x2695a44,13, 0x2695b48,16, 0x2695b90,42, 0x2695c40,2, 0x2695c90,54, 0x2695d70,58, 0x2695e60,58, 0x2695f50,58, 0x2696040,58, 0x2696130,58, 0x2696220,58, 0x2696310,58, 0x2696400,58, 0x26964f0,58, 0x26965e0,58, 0x26966d0,58, 0x26967c0,58, 0x26968b0,58, 0x26969a0,58, 0x2696a90,58, 0x2696b80,58, 0x2696c70,58, 0x2696d60,58, 0x2696e50,58, 0x2696f40,58, 0x2697030,58, 0x2697120,58, 0x2697210,58, 0x2697300,58, 0x26973f0,58, 0x26974e0,58, 0x26975d0,58, 0x26976c0,58, 0x26977b0,58, 0x26978a0,58, 0x2697990,58, 0x2697a80,101, 0x2697c90,49, 0x2697db0,18, 0x2697e00,11, 0x2697e30,4, 0x2697e54,45, 0x2697f58,9, 0x2697f88,3, 0x2697fa0,2, 0x2697fd8,14, 0x2698014,12, 0x2698158,3, 0x2698168,2, 0x2698174,68, 0x2698288,2, 0x2698294,68, 0x26983a8,1, 0x26983b0,2, 0x26983bc,68, 0x26984d0,2, 0x26984dc,68, 0x26985f0,1, 0x26985f8,4, 0x2698610,3, 0x2698624,12, 0x2698688,8, 0x26986dc,1, 0x26986e8,4, 0x2698700,3, 0x2698714,12, 0x2698778,8, 0x26987cc,1, 0x26987d8,4, 0x26987f0,3, 0x2698804,12, 0x2698868,8, 0x26988bc,1, 0x26988c8,4, 0x26988e0,3, 0x26988f4,12, 0x2698958,8, 0x26989ac,1, 0x26989b8,4, 0x26989d0,3, 0x26989e4,12, 0x2698a48,8, 0x2698a9c,1, 0x2698aa8,4, 0x2698ac0,3, 0x2698ad4,12, 0x2698b38,8, 0x2698b8c,1, 0x2698b98,4, 0x2698bb0,3, 0x2698bc4,12, 0x2698c28,8, 0x2698c7c,1, 0x2698c88,4, 0x2698ca0,3, 0x2698cb4,12, 0x2698d18,8, 0x2698d6c,1, 0x2698d78,4, 0x2698d90,3, 0x2698da4,12, 0x2698e08,8, 0x2698e5c,1, 0x2698e68,4, 0x2698e80,3, 0x2698e94,12, 0x2698ef8,8, 0x2698f4c,1, 0x2698f58,4, 0x2698f70,3, 0x2698f84,12, 0x2698fe8,8, 0x269903c,1, 0x2699048,4, 0x2699060,3, 0x2699074,12, 0x26990d8,8, 0x269912c,1, 0x2699138,4, 0x2699150,3, 0x2699164,12, 0x26991c8,8, 0x269921c,1, 0x2699228,4, 0x2699240,3, 0x2699254,12, 0x26992b8,8, 0x269930c,1, 0x2699318,4, 0x2699330,3, 0x2699344,12, 0x26993a8,8, 0x26993fc,1, 0x2699408,4, 0x2699420,3, 0x2699434,12, 0x2699498,8, 0x26994ec,1, 0x26994f8,4, 0x2699510,3, 0x2699524,12, 0x2699588,8, 0x26995dc,1, 0x26995e8,64, 0x2699748,5, 0x2699990,28, 0x2699a04,1, 0x2699a98,1, 0x2699be8,5, 0x2699c04,3, 0x2699c18,13, 0x2699c50,2, 0x269a000,15, 0x269a044,81, 0x269a18c,84, 0x269a2e0,84, 0x269a434,84, 0x269a588,84, 0x269a6dc,84, 0x269a830,84, 0x269a984,84, 0x269aad8,84, 0x269ac2c,84, 0x269ad80,84, 0x269aed4,84, 0x269b028,84, 0x269b17c,84, 0x269b2d0,84, 0x269b424,84, 0x269b578,84, 0x269b6cc,5, 0x269b760,4, 0x269b8e0,2414, 0x269dea4,80, 0x269e048,4, 0x269ebe0,1, 0x269ebf0,97, 0x269ed94,7, 0x269ee7c,1, 0x269eeac,9, 0x269eed4,5, 0x269eeec,11, 0x269ef2c,17, 0x269ef74,29, 0x269f034,3, 0x269f044,1, 0x269f054,17, 0x269fbe0,3, 0x269fbf0,2, 0x26a0000,3, 0x26a0018,2, 0x26a0024,14, 0x26a0060,27, 0x26a00d0,3, 0x26a00e0,3, 0x26a00f0,3, 0x26a0100,4, 0x26a0120,6, 0x26a0140,3, 0x26a0150,1, 0x26a015c,4, 0x26a0170,1, 0x26a0180,15, 0x26a01c0,1, 0x26a01c8,5, 0x26a01e0,1, 0x26a01f0,3, 0x26a0200,3, 0x26a0218,2, 0x26a0224,14, 0x26a0260,27, 0x26a02d0,3, 0x26a02e0,3, 0x26a02f0,3, 0x26a0300,4, 0x26a0320,6, 0x26a0340,3, 0x26a0350,1, 0x26a035c,4, 0x26a0370,1, 0x26a0380,15, 0x26a03c0,1, 0x26a03c8,5, 0x26a03e0,1, 0x26a03f0,3, 0x26a0400,3, 0x26a0418,2, 0x26a0424,14, 0x26a0460,27, 0x26a04d0,3, 0x26a04e0,3, 0x26a04f0,3, 0x26a0500,4, 0x26a0520,6, 0x26a0540,3, 0x26a0550,1, 0x26a055c,4, 0x26a0570,1, 0x26a0580,15, 0x26a05c0,1, 0x26a05c8,5, 0x26a05e0,1, 0x26a05f0,3, 0x26a0600,3, 0x26a0618,2, 0x26a0624,14, 0x26a0660,27, 0x26a06d0,3, 0x26a06e0,3, 0x26a06f0,3, 0x26a0700,4, 0x26a0720,6, 0x26a0740,3, 0x26a0750,1, 0x26a075c,4, 0x26a0770,1, 0x26a0780,15, 0x26a07c0,1, 0x26a07c8,5, 0x26a07e0,1, 0x26a07f0,3, 0x26a0800,3, 0x26a0818,2, 0x26a0824,14, 0x26a0860,27, 0x26a08d0,3, 0x26a08e0,3, 0x26a08f0,3, 0x26a0900,4, 0x26a0920,6, 0x26a0940,3, 0x26a0950,1, 0x26a095c,4, 0x26a0970,1, 0x26a0980,15, 0x26a09c0,1, 0x26a09c8,5, 0x26a09e0,1, 0x26a09f0,3, 0x26a1844,1, 0x26a1858,5, 0x26a1904,3, 0x26a1950,3, 0x26a1988,2, 0x26a19a0,7, 0x26a19c0,7, 0x26a19e0,4, 0x26a2000,24, 0x26a20f0,3, 0x26a2100,7, 0x26a2120,7, 0x26a2144,7, 0x26a2400,4, 0x26a2420,5, 0x26a25e0,3, 0x26a25f4,1, 0x26a25fc,4, 0x26a2620,3, 0x26a2680,8, 0x26a2700,19, 0x26a2800,99, 0x26a2a00,18, 0x26a2a80,8, 0x26a2b00,1, 0x26a3070,1, 0x26a3080,2, 0x26a308c,1, 0x26a3098,2, 0x26a3404,1, 0x26a3440,20, 0x26a3494,1, 0x26a349c,7, 0x26a34d0,4, 0x26a34e8,2, 0x26a34fc,8, 0x26a3520,7, 0x26a3540,7, 0x26a3560,7, 0x26a3580,7, 0x26a35a0,7, 0x26a35c0,7, 0x26a35e0,7, 0x26a3600,9, 0x26a363c,2, 0x26a3650,6, 0x26a3684,10, 0x26a3a00,10, 0x26a3a30,1, 0x26a3a40,8, 0x26a3a64,5, 0x26a4a04,3, 0x26a4b00,33, 0x26a4b90,3, 0x26a5000,8, 0x26a5040,8, 0x26a5104,1, 0x26a510c,3, 0x26a5124,1, 0x26a512c,3, 0x26a6000,13, 0x26a6200,14, 0x26a6240,1, 0x26a6248,1, 0x26a6258,1, 0x26a6260,8, 0x26a6284,1, 0x26a62a0,8, 0x26a6348,5, 0x26a67f0,1, 0x26a67f8,1, 0x26a6a10,12, 0x26a7000,19, 0x26a7a00,10, 0x26a7a80,3, 0x26a7b00,6, 0x26c0000,1, 0x26c000c,5, 0x26c0044,1, 0x26c0054,5, 0x26c0200,128, 0x26c0404,1, 0x26c0428,54, 0x26c0600,32, 0x26c0704,1, 0x26c0800,1, 0x26c0900,1, 0x26c0910,2, 0x26c0920,3, 0x26c0980,10, 0x26c0a00,19, 0x26c0b00,1, 0x26e0000,2, 0x26e000c,2, 0x26e0018,2, 0x26e0024,2, 0x26e0030,2, 0x26e003c,2, 0x26e0048,2, 0x26e0054,2, 0x26e0060,1, 0x26e0070,2, 0x26e007c,2, 0x26e0088,2, 0x26e0094,2, 0x26e00a0,2, 0x26e00ac,2, 0x26e00b8,2, 0x26e00c4,2, 0x26e00d0,1, 0x26e00e0,2, 0x26e00ec,2, 0x26e00f8,2, 0x26e0104,2, 0x26e0110,2, 0x26e011c,2, 0x26e0128,2, 0x26e0134,2, 0x26e0140,1, 0x26e0150,2, 0x26e015c,2, 0x26e0168,2, 0x26e0174,2, 0x26e0180,2, 0x26e018c,2, 0x26e0198,2, 0x26e01a4,2, 0x26e01b0,1, 0x26e01c0,57, 0x26e02b0,67, 0x26e03c0,16, 0x26e0410,23, 0x26e0470,16, 0x26e04c0,23, 0x26e0520,16, 0x26e0570,23, 0x26e05d0,16, 0x26e0620,23, 0x26e0680,16, 0x26e06d0,23, 0x26e0730,16, 0x26e0780,23, 0x26e07e0,16, 0x26e0830,23, 0x26e0890,16, 0x26e08e0,23, 0x26e0940,16, 0x26e0990,23, 0x26e09f0,16, 0x26e0a40,23, 0x26e0aa0,16, 0x26e0af0,23, 0x26e0b50,16, 0x26e0ba0,23, 0x26e0c00,16, 0x26e0c50,23, 0x26e0cb0,16, 0x26e0d00,23, 0x26e0d60,16, 0x26e0db0,23, 0x26e0e10,16, 0x26e0e60,23, 0x26e0ec0,16, 0x26e0f10,23, 0x26e0f70,16, 0x26e0fc0,23, 0x26e1020,16, 0x26e1070,23, 0x26e10d0,16, 0x26e1120,23, 0x26e1180,16, 0x26e11d0,23, 0x26e1230,16, 0x26e1280,23, 0x26e12e0,16, 0x26e1330,23, 0x26e1390,16, 0x26e13e0,23, 0x26e1440,16, 0x26e1490,23, 0x26e14f0,16, 0x26e1540,23, 0x26e15a0,16, 0x26e15f0,23, 0x26e1650,16, 0x26e16a0,23, 0x26e1700,16, 0x26e1750,23, 0x26e17b0,16, 0x26e1800,23, 0x26e1860,16, 0x26e18b0,23, 0x26e1910,16, 0x26e1960,2, 0x26f0000,4, 0x26f0014,2, 0x26f0020,8, 0x26f0044,2, 0x26f0050,13, 0x26f0088,20, 0x26f00dc,1, 0x26f0180,6, 0x26f0590,3, 0x26f05c0,2, 0x26f0a04,1, 0x26f0a0c,3, 0x26f0a20,1, 0x26f0ba0,4, 0x26f0c00,4, 0x26f0c20,3, 0x26f0c30,5, 0x26f0c50,52, 0x26f0d50,57, 0x26f0ec0,3, 0x26f0ffc,3, 0x26f1020,3, 0x26f1030,3, 0x26f1060,2, 0x26f1100,2, 0x26f1140,18, 0x26f11c0,30, 0x26f1240,14, 0x26f1280,28, 0x26f1300,2, 0x26f13a0,6, 0x26f1400,19, 0x26f1800,19, 0x26f1c00,19, 0x26f1c80,8, 0x26f1d00,3, 0x26f1d50,3, 0x26f1e00,3, 0x26f1e10,2, 0x26f1e20,6, 0x26f1e40,6, 0x26f1e60,6, 0x26f1e80,6, 0x26f1ea0,6, 0x26f1ec0,2, 0x26f1ecc,2, 0x26f1ee0,2, 0x26f1eec,2, 0x26f1f80,3, 0x26f1f90,60, 0x26f2100,32, 0x26f2200,32, 0x26f2300,32, 0x26f2400,32, 0x26f2500,32, 0x26f2600,32, 0x26f2700,32, 0x26f2800,32, 0x26f2900,32, 0x26f2a00,32, 0x26f2b00,32, 0x26f2c00,32, 0x26f2d00,32, 0x26f2e00,32, 0x26f2f00,32, 0x26f3000,32, 0x26f30c0,3, 0x26f4000,2, 0x26f4040,16, 0x26f4100,36, 0x26f4800,5, 0x26f4824,1, 0x26f482c,1, 0x26f4c04,1, 0x26f4cd8,74, 0x26f5000,7, 0x26f5020,4, 0x26f5204,1, 0x26f5280,35, 0x26f5310,4, 0x26f5404,1, 0x26f5480,34, 0x26f5510,10, 0x26f553c,3, 0x26f5800,7, 0x26f5820,4, 0x26f5a04,1, 0x26f5a80,35, 0x26f5b10,4, 0x26f5c04,1, 0x26f5c80,34, 0x26f5d10,10, 0x26f5d3c,3, 0x26fa000,5, 0x26fa01c,13, 0x26fa060,3, 0x26fa080,8, 0x26fa100,5, 0x26fa11c,13, 0x26fa160,3, 0x26fa180,8, 0x2800004,5, 0x2800020,3, 0x2800030,3, 0x2800040,13, 0x2800078,4, 0x280009c,25, 0x2800104,5, 0x2800120,3, 0x2800130,3, 0x2800140,13, 0x2800178,4, 0x280019c,25, 0x2800204,5, 0x2800220,3, 0x2800230,3, 0x2800240,13, 0x2800278,4, 0x280029c,25, 0x2800304,5, 0x2800320,3, 0x2800330,3, 0x2800340,13, 0x2800378,4, 0x280039c,25, 0x2800600,4, 0x2800c00,24, 0x2800c80,24, 0x2800d00,24, 0x2800d80,24, 0x2800e00,4, 0x2800e20,4, 0x2800e40,4, 0x2800e60,4, 0x2800e80,39, 0x2800f20,7, 0x2800f40,7, 0x2800f60,7, 0x2801000,12, 0x2801200,1, 0x2801218,2, 0x280122c,1, 0x2801280,1, 0x2801298,2, 0x28012ac,1, 0x2801300,1, 0x2801318,2, 0x280132c,1, 0x2801380,1, 0x2801398,2, 0x28013ac,1, 0x2801400,4, 0x2801420,2, 0x280142c,1, 0x2801480,4, 0x28014a0,2, 0x28014ac,1, 0x2801500,4, 0x2801520,2, 0x280152c,1, 0x2801580,4, 0x28015a0,2, 0x28015ac,1, 0x2801600,4, 0x2801640,4, 0x2801680,4, 0x28016c0,4, 0x2801700,7, 0x2801720,7, 0x2801740,7, 0x2801760,7, 0x2801780,4, 0x280179c,11, 0x28017d0,2, 0x28017e0,2, 0x28017f0,2, 0x2801900,44, 0x2802000,7, 0x2802020,4, 0x2802040,4, 0x2802060,7, 0x2802080,7, 0x28020a0,4, 0x28020c0,4, 0x28020e0,7, 0x2802100,7, 0x2802120,4, 0x2802140,4, 0x2802160,7, 0x2802180,7, 0x28021a0,4, 0x28021c0,4, 0x28021e0,7, 0x2802200,32, 0x2802b00,1, 0x2802b20,1, 0x2802b28,4, 0x2802b40,1, 0x2802b60,1, 0x2802b68,4, 0x2802b80,1, 0x2802ba0,1, 0x2802ba8,4, 0x2802bc0,1, 0x2802be0,1, 0x2802be8,4, 0x2802c00,7, 0x2802c20,1, 0x2802c54,18, 0x2802ca0,1, 0x2802cd4,18, 0x2802d20,1, 0x2802d54,18, 0x2802da0,1, 0x2802dd4,12, 0x2802e08,6, 0x2803100,7, 0x2803120,7, 0x2803140,7, 0x2803160,7, 0x2803180,3, 0x2804004,5, 0x2804020,3, 0x2804030,3, 0x2804040,13, 0x2804078,4, 0x280409c,25, 0x2804104,5, 0x2804120,3, 0x2804130,3, 0x2804140,13, 0x2804178,4, 0x280419c,25, 0x2804204,5, 0x2804220,3, 0x2804230,3, 0x2804240,13, 0x2804278,4, 0x280429c,25, 0x2804304,5, 0x2804320,3, 0x2804330,3, 0x2804340,13, 0x2804378,4, 0x280439c,25, 0x2804600,4, 0x2804c00,24, 0x2804c80,24, 0x2804d00,24, 0x2804d80,24, 0x2804e00,4, 0x2804e20,4, 0x2804e40,4, 0x2804e60,4, 0x2804e80,39, 0x2804f20,7, 0x2804f40,7, 0x2804f60,7, 0x2805000,12, 0x2805200,1, 0x2805218,2, 0x280522c,1, 0x2805280,1, 0x2805298,2, 0x28052ac,1, 0x2805300,1, 0x2805318,2, 0x280532c,1, 0x2805380,1, 0x2805398,2, 0x28053ac,1, 0x2805400,4, 0x2805420,2, 0x280542c,1, 0x2805480,4, 0x28054a0,2, 0x28054ac,1, 0x2805500,4, 0x2805520,2, 0x280552c,1, 0x2805580,4, 0x28055a0,2, 0x28055ac,1, 0x2805600,4, 0x2805640,4, 0x2805680,4, 0x28056c0,4, 0x2805700,7, 0x2805720,7, 0x2805740,7, 0x2805760,7, 0x2805780,4, 0x280579c,11, 0x28057d0,2, 0x28057e0,2, 0x28057f0,2, 0x2805900,44, 0x2806000,7, 0x2806020,4, 0x2806040,4, 0x2806060,7, 0x2806080,7, 0x28060a0,4, 0x28060c0,4, 0x28060e0,7, 0x2806100,7, 0x2806120,4, 0x2806140,4, 0x2806160,7, 0x2806180,7, 0x28061a0,4, 0x28061c0,4, 0x28061e0,7, 0x2806200,32, 0x2806b00,1, 0x2806b20,1, 0x2806b28,4, 0x2806b40,1, 0x2806b60,1, 0x2806b68,4, 0x2806b80,1, 0x2806ba0,1, 0x2806ba8,4, 0x2806bc0,1, 0x2806be0,1, 0x2806be8,4, 0x2806c00,7, 0x2806c20,1, 0x2806c54,18, 0x2806ca0,1, 0x2806cd4,18, 0x2806d20,1, 0x2806d54,18, 0x2806da0,1, 0x2806dd4,12, 0x2806e08,6, 0x2807100,7, 0x2807120,7, 0x2807140,7, 0x2807160,7, 0x2807180,3, 0x2808000,10, 0x2808080,3, 0x28080c0,1, 0x2808100,21, 0x2808180,13, 0x28081c4,7, 0x28081e4,7, 0x2808204,7, 0x2808224,8, 0x2809000,7, 0x2809030,2, 0x2809040,7, 0x2809070,2, 0x2809100,2, 0x2809120,2, 0x2809140,2, 0x2809160,2, 0x2809180,9, 0x2809200,7, 0x2809230,2, 0x2809240,7, 0x2809270,2, 0x2809300,2, 0x2809320,2, 0x2809340,2, 0x2809360,2, 0x2809380,9, 0x2809400,11, 0x2809500,11, 0x280a000,3, 0x280a010,2, 0x280a01c,5, 0x280a040,8, 0x280a080,3, 0x280a090,2, 0x280a09c,5, 0x280a0c0,8, 0x280a100,3, 0x280a110,2, 0x280a11c,5, 0x280a140,8, 0x280a180,3, 0x280a190,2, 0x280a19c,5, 0x280a1c0,8, 0x280a200,7, 0x280a220,12, 0x280a280,7, 0x280a2a0,12, 0x280a300,3, 0x280a310,1, 0x280a400,3, 0x280a410,2, 0x280a41c,5, 0x280a440,8, 0x280a480,3, 0x280a490,2, 0x280a49c,5, 0x280a4c0,8, 0x280a500,3, 0x280a510,2, 0x280a51c,5, 0x280a540,8, 0x280a580,3, 0x280a590,2, 0x280a59c,5, 0x280a5c0,8, 0x280a600,7, 0x280a620,12, 0x280a680,7, 0x280a6a0,12, 0x280a700,3, 0x280a710,1, 0x280a804,1, 0x280a824,21, 0x280a880,16, 0x280a900,5, 0x280a920,11, 0x280a950,9, 0x280a980,22, 0x280aa00,22, 0x280aa80,22, 0x280ab00,22, 0x280ab80,22, 0x280ac00,22, 0x280ac80,22, 0x280ad00,22, 0x280ad80,3, 0x280c000,16, 0x280c080,11, 0x280c100,11, 0x280c204,1, 0x280c224,21, 0x280c280,16, 0x280c300,11, 0x280c340,11, 0x280c800,21, 0x280c860,5, 0x280c880,6, 0x280c8a0,5, 0x280c8c0,6, 0x280c900,21, 0x280c960,5, 0x280c980,6, 0x280c9a0,5, 0x280c9c0,6, 0x280ca00,21, 0x280ca60,5, 0x280ca80,6, 0x280caa0,5, 0x280cac0,6, 0x280cb00,21, 0x280cb60,5, 0x280cb80,6, 0x280cba0,5, 0x280cbc0,6, 0x280cc00,9, 0x280cc48,7, 0x280cc68,2, 0x280cc74,9, 0x280cc9c,2, 0x280cd00,14, 0x280cd40,14, 0x280cd80,28, 0x280ce00,19, 0x280ce50,3, 0x280ce60,25, 0x280cec8,1, 0x280ced0,2, 0x280cee0,7, 0x280cf00,1, 0x280cf08,2, 0x280cffc,20, 0x280d050,25, 0x280d100,19, 0x280d150,25, 0x280d200,19, 0x280d250,25, 0x280d300,19, 0x280d350,25, 0x280d400,19, 0x280d450,25, 0x280d500,19, 0x280d550,25, 0x280d600,19, 0x280d650,25, 0x280d700,19, 0x280d750,25, 0x280d800,19, 0x280d850,25, 0x280d904,1, 0x280d914,10, 0x280d948,11, 0x280d980,2, 0x280d9a0,6, 0x280d9c0,2, 0x280d9cc,2, 0x280e000,35, 0x280ea00,10, 0x280ea80,3, 0x280eb00,6, 0x280f000,1, 0x280f008,5, 0x280f038,1, 0x280f044,1, 0x280f050,2, 0x280f100,13, 0x280f140,11, 0x280f170,12, 0x280f1a4,1, 0x280f200,104, 0x280f400,104, 0x280f600,104, 0x280f800,104, 0x2810000,13, 0x2810040,2, 0x2810054,4, 0x2810080,27, 0x2810100,12, 0x2810140,14, 0x2810180,28, 0x2810200,6, 0x2810240,6, 0x281025c,3, 0x2810280,5, 0x28102a0,8, 0x2810400,14, 0x2810440,14, 0x2810480,14, 0x28104c0,14, 0x2810540,3, 0x2810600,7, 0x2810620,14, 0x2810680,5, 0x28106a0,7, 0x2810800,13, 0x2810840,2, 0x2810854,4, 0x2810880,27, 0x2810900,12, 0x2810940,14, 0x2810980,28, 0x2810a00,6, 0x2810a40,6, 0x2810a5c,3, 0x2810a80,5, 0x2810aa0,8, 0x2810c00,14, 0x2810c40,14, 0x2810c80,14, 0x2810cc0,14, 0x2810d40,3, 0x2810e00,7, 0x2810e20,14, 0x2810e80,5, 0x2810ea0,7, 0x2811000,13, 0x2811040,2, 0x2811054,4, 0x2811080,27, 0x2811100,12, 0x2811140,14, 0x2811180,28, 0x2811200,6, 0x2811240,6, 0x281125c,3, 0x2811280,5, 0x28112a0,8, 0x2811400,14, 0x2811440,14, 0x2811480,14, 0x28114c0,14, 0x2811540,3, 0x2811600,7, 0x2811620,14, 0x2811680,5, 0x28116a0,7, 0x2811800,13, 0x2811840,2, 0x2811854,4, 0x2811880,27, 0x2811900,12, 0x2811940,14, 0x2811980,28, 0x2811a00,6, 0x2811a40,6, 0x2811a5c,3, 0x2811a80,5, 0x2811aa0,8, 0x2811c00,14, 0x2811c40,14, 0x2811c80,14, 0x2811cc0,14, 0x2811d40,3, 0x2811e00,7, 0x2811e20,14, 0x2811e80,5, 0x2811ea0,7, 0x2812000,8, 0x2812040,8, 0x2812080,1, 0x2812098,6, 0x2812100,10, 0x2812140,3, 0x2812150,2, 0x2812180,2, 0x2812200,6, 0x2812220,18, 0x2812280,4, 0x2812300,8, 0x2812400,2, 0x2812480,2, 0x2812800,28, 0x28129f0,4, 0x2813000,40, 0x2813100,64, 0x2813800,56, 0x2813be0,8, 0x2814000,13, 0x2814040,2, 0x2814054,4, 0x2814080,27, 0x2814100,12, 0x2814140,14, 0x2814180,28, 0x2814200,6, 0x2814240,6, 0x281425c,3, 0x2814280,5, 0x28142a0,8, 0x2814400,14, 0x2814440,14, 0x2814480,14, 0x28144c0,14, 0x2814540,3, 0x2814600,7, 0x2814620,14, 0x2814680,5, 0x28146a0,7, 0x2814800,13, 0x2814840,2, 0x2814854,4, 0x2814880,27, 0x2814900,12, 0x2814940,14, 0x2814980,28, 0x2814a00,6, 0x2814a40,6, 0x2814a5c,3, 0x2814a80,5, 0x2814aa0,8, 0x2814c00,14, 0x2814c40,14, 0x2814c80,14, 0x2814cc0,14, 0x2814d40,3, 0x2814e00,7, 0x2814e20,14, 0x2814e80,5, 0x2814ea0,7, 0x2815000,13, 0x2815040,2, 0x2815054,4, 0x2815080,27, 0x2815100,12, 0x2815140,14, 0x2815180,28, 0x2815200,6, 0x2815240,6, 0x281525c,3, 0x2815280,5, 0x28152a0,8, 0x2815400,14, 0x2815440,14, 0x2815480,14, 0x28154c0,14, 0x2815540,3, 0x2815600,7, 0x2815620,14, 0x2815680,5, 0x28156a0,7, 0x2815800,13, 0x2815840,2, 0x2815854,4, 0x2815880,27, 0x2815900,12, 0x2815940,14, 0x2815980,28, 0x2815a00,6, 0x2815a40,6, 0x2815a5c,3, 0x2815a80,5, 0x2815aa0,8, 0x2815c00,14, 0x2815c40,14, 0x2815c80,14, 0x2815cc0,14, 0x2815d40,3, 0x2815e00,7, 0x2815e20,14, 0x2815e80,5, 0x2815ea0,7, 0x2816000,8, 0x2816040,8, 0x2816080,1, 0x2816098,6, 0x2816100,10, 0x2816140,3, 0x2816150,2, 0x2816180,2, 0x2816200,6, 0x2816220,18, 0x2816280,4, 0x2816300,8, 0x2816400,2, 0x2816480,2, 0x2816800,28, 0x28169f0,4, 0x2817000,40, 0x2817100,64, 0x2817800,56, 0x2817be0,8, 0x2818000,2, 0x281800c,2, 0x2818040,7, 0x2818100,3, 0x2818110,3, 0x2818120,5, 0x2818200,6, 0x2818240,5, 0x2818400,2, 0x281840c,2, 0x2818440,7, 0x2818500,3, 0x2818510,3, 0x2818520,5, 0x2818600,6, 0x2818640,5, 0x2818800,2, 0x281880c,2, 0x2818840,7, 0x2818900,3, 0x2818910,3, 0x2818920,5, 0x2818a00,6, 0x2818a40,5, 0x2818c00,2, 0x2818c0c,2, 0x2818c40,7, 0x2818d00,3, 0x2818d10,3, 0x2818d20,5, 0x2818e00,6, 0x2818e40,5, 0x2819000,2, 0x281900c,2, 0x2819040,7, 0x2819100,3, 0x2819110,3, 0x2819120,5, 0x2819200,6, 0x2819240,5, 0x2819400,2, 0x281940c,2, 0x2819440,7, 0x2819500,3, 0x2819510,3, 0x2819520,5, 0x2819600,6, 0x2819640,5, 0x2819800,2, 0x281980c,2, 0x2819840,7, 0x2819900,3, 0x2819910,3, 0x2819920,5, 0x2819a00,6, 0x2819a40,5, 0x2819c00,2, 0x2819c0c,2, 0x2819c40,7, 0x2819d00,3, 0x2819d10,3, 0x2819d20,5, 0x2819e00,6, 0x2819e40,5, 0x281a000,5, 0x281a040,9, 0x281a100,3, 0x281a200,1, 0x281a210,1, 0x281a220,1, 0x281a230,1, 0x281a240,1, 0x281a300,3, 0x281a314,1, 0x281a320,4, 0x281a400,5, 0x281a440,5, 0x281b000,80, 0x281b200,1, 0x2820004,5, 0x2820020,3, 0x2820030,3, 0x2820040,13, 0x2820078,4, 0x282009c,25, 0x2820104,5, 0x2820120,3, 0x2820130,3, 0x2820140,13, 0x2820178,4, 0x282019c,25, 0x2820204,5, 0x2820220,3, 0x2820230,3, 0x2820240,13, 0x2820278,4, 0x282029c,25, 0x2820304,5, 0x2820320,3, 0x2820330,3, 0x2820340,13, 0x2820378,4, 0x282039c,25, 0x2820600,4, 0x2820c00,24, 0x2820c80,24, 0x2820d00,24, 0x2820d80,24, 0x2820e00,4, 0x2820e20,4, 0x2820e40,4, 0x2820e60,4, 0x2820e80,39, 0x2820f20,7, 0x2820f40,7, 0x2820f60,7, 0x2821000,12, 0x2821200,1, 0x2821218,2, 0x282122c,1, 0x2821280,1, 0x2821298,2, 0x28212ac,1, 0x2821300,1, 0x2821318,2, 0x282132c,1, 0x2821380,1, 0x2821398,2, 0x28213ac,1, 0x2821400,4, 0x2821420,2, 0x282142c,1, 0x2821480,4, 0x28214a0,2, 0x28214ac,1, 0x2821500,4, 0x2821520,2, 0x282152c,1, 0x2821580,4, 0x28215a0,2, 0x28215ac,1, 0x2821600,4, 0x2821640,4, 0x2821680,4, 0x28216c0,4, 0x2821700,7, 0x2821720,7, 0x2821740,7, 0x2821760,7, 0x2821780,4, 0x282179c,11, 0x28217d0,2, 0x28217e0,2, 0x28217f0,2, 0x2821900,44, 0x2822000,7, 0x2822020,4, 0x2822040,4, 0x2822060,7, 0x2822080,7, 0x28220a0,4, 0x28220c0,4, 0x28220e0,7, 0x2822100,7, 0x2822120,4, 0x2822140,4, 0x2822160,7, 0x2822180,7, 0x28221a0,4, 0x28221c0,4, 0x28221e0,7, 0x2822200,32, 0x2822b00,1, 0x2822b20,1, 0x2822b28,4, 0x2822b40,1, 0x2822b60,1, 0x2822b68,4, 0x2822b80,1, 0x2822ba0,1, 0x2822ba8,4, 0x2822bc0,1, 0x2822be0,1, 0x2822be8,4, 0x2822c00,7, 0x2822c20,1, 0x2822c54,18, 0x2822ca0,1, 0x2822cd4,18, 0x2822d20,1, 0x2822d54,18, 0x2822da0,1, 0x2822dd4,12, 0x2822e08,6, 0x2823100,7, 0x2823120,7, 0x2823140,7, 0x2823160,7, 0x2823180,3, 0x2824004,5, 0x2824020,3, 0x2824030,3, 0x2824040,13, 0x2824078,4, 0x282409c,25, 0x2824104,5, 0x2824120,3, 0x2824130,3, 0x2824140,13, 0x2824178,4, 0x282419c,25, 0x2824204,5, 0x2824220,3, 0x2824230,3, 0x2824240,13, 0x2824278,4, 0x282429c,25, 0x2824304,5, 0x2824320,3, 0x2824330,3, 0x2824340,13, 0x2824378,4, 0x282439c,25, 0x2824600,4, 0x2824c00,24, 0x2824c80,24, 0x2824d00,24, 0x2824d80,24, 0x2824e00,4, 0x2824e20,4, 0x2824e40,4, 0x2824e60,4, 0x2824e80,39, 0x2824f20,7, 0x2824f40,7, 0x2824f60,7, 0x2825000,12, 0x2825200,1, 0x2825218,2, 0x282522c,1, 0x2825280,1, 0x2825298,2, 0x28252ac,1, 0x2825300,1, 0x2825318,2, 0x282532c,1, 0x2825380,1, 0x2825398,2, 0x28253ac,1, 0x2825400,4, 0x2825420,2, 0x282542c,1, 0x2825480,4, 0x28254a0,2, 0x28254ac,1, 0x2825500,4, 0x2825520,2, 0x282552c,1, 0x2825580,4, 0x28255a0,2, 0x28255ac,1, 0x2825600,4, 0x2825640,4, 0x2825680,4, 0x28256c0,4, 0x2825700,7, 0x2825720,7, 0x2825740,7, 0x2825760,7, 0x2825780,4, 0x282579c,11, 0x28257d0,2, 0x28257e0,2, 0x28257f0,2, 0x2825900,44, 0x2826000,7, 0x2826020,4, 0x2826040,4, 0x2826060,7, 0x2826080,7, 0x28260a0,4, 0x28260c0,4, 0x28260e0,7, 0x2826100,7, 0x2826120,4, 0x2826140,4, 0x2826160,7, 0x2826180,7, 0x28261a0,4, 0x28261c0,4, 0x28261e0,7, 0x2826200,32, 0x2826b00,1, 0x2826b20,1, 0x2826b28,4, 0x2826b40,1, 0x2826b60,1, 0x2826b68,4, 0x2826b80,1, 0x2826ba0,1, 0x2826ba8,4, 0x2826bc0,1, 0x2826be0,1, 0x2826be8,4, 0x2826c00,7, 0x2826c20,1, 0x2826c54,18, 0x2826ca0,1, 0x2826cd4,18, 0x2826d20,1, 0x2826d54,18, 0x2826da0,1, 0x2826dd4,12, 0x2826e08,6, 0x2827100,7, 0x2827120,7, 0x2827140,7, 0x2827160,7, 0x2827180,3, 0x2828000,10, 0x2828080,3, 0x28280c0,1, 0x2828100,21, 0x2828180,13, 0x28281c4,7, 0x28281e4,7, 0x2828204,7, 0x2828224,8, 0x2829000,7, 0x2829030,2, 0x2829040,7, 0x2829070,2, 0x2829100,2, 0x2829120,2, 0x2829140,2, 0x2829160,2, 0x2829180,9, 0x2829200,7, 0x2829230,2, 0x2829240,7, 0x2829270,2, 0x2829300,2, 0x2829320,2, 0x2829340,2, 0x2829360,2, 0x2829380,9, 0x2829400,11, 0x2829500,11, 0x282a000,3, 0x282a010,2, 0x282a01c,5, 0x282a040,8, 0x282a080,3, 0x282a090,2, 0x282a09c,5, 0x282a0c0,8, 0x282a100,3, 0x282a110,2, 0x282a11c,5, 0x282a140,8, 0x282a180,3, 0x282a190,2, 0x282a19c,5, 0x282a1c0,8, 0x282a200,7, 0x282a220,12, 0x282a280,7, 0x282a2a0,12, 0x282a300,3, 0x282a310,1, 0x282a400,3, 0x282a410,2, 0x282a41c,5, 0x282a440,8, 0x282a480,3, 0x282a490,2, 0x282a49c,5, 0x282a4c0,8, 0x282a500,3, 0x282a510,2, 0x282a51c,5, 0x282a540,8, 0x282a580,3, 0x282a590,2, 0x282a59c,5, 0x282a5c0,8, 0x282a600,7, 0x282a620,12, 0x282a680,7, 0x282a6a0,12, 0x282a700,3, 0x282a710,1, 0x282a804,1, 0x282a824,21, 0x282a880,16, 0x282a900,5, 0x282a920,11, 0x282a950,9, 0x282a980,22, 0x282aa00,22, 0x282aa80,22, 0x282ab00,22, 0x282ab80,22, 0x282ac00,22, 0x282ac80,22, 0x282ad00,22, 0x282ad80,3, 0x282c000,16, 0x282c080,11, 0x282c100,11, 0x282c204,1, 0x282c224,21, 0x282c280,16, 0x282c300,11, 0x282c340,11, 0x282c800,21, 0x282c860,5, 0x282c880,6, 0x282c8a0,5, 0x282c8c0,6, 0x282c900,21, 0x282c960,5, 0x282c980,6, 0x282c9a0,5, 0x282c9c0,6, 0x282ca00,21, 0x282ca60,5, 0x282ca80,6, 0x282caa0,5, 0x282cac0,6, 0x282cb00,21, 0x282cb60,5, 0x282cb80,6, 0x282cba0,5, 0x282cbc0,6, 0x282cc00,9, 0x282cc48,7, 0x282cc68,2, 0x282cc74,9, 0x282cc9c,2, 0x282cd00,14, 0x282cd40,14, 0x282cd80,28, 0x282ce00,19, 0x282ce50,3, 0x282ce60,25, 0x282cec8,1, 0x282ced0,2, 0x282cee0,7, 0x282cf00,1, 0x282cf08,2, 0x282cffc,20, 0x282d050,25, 0x282d100,19, 0x282d150,25, 0x282d200,19, 0x282d250,25, 0x282d300,19, 0x282d350,25, 0x282d400,19, 0x282d450,25, 0x282d500,19, 0x282d550,25, 0x282d600,19, 0x282d650,25, 0x282d700,19, 0x282d750,25, 0x282d800,19, 0x282d850,25, 0x282d904,1, 0x282d914,10, 0x282d948,11, 0x282d980,2, 0x282d9a0,6, 0x282d9c0,2, 0x282d9cc,2, 0x282e000,35, 0x282ea00,10, 0x282ea80,3, 0x282eb00,6, 0x282f000,1, 0x282f008,5, 0x282f038,1, 0x282f044,1, 0x282f050,2, 0x282f100,13, 0x282f140,11, 0x282f170,12, 0x282f1a4,1, 0x282f200,104, 0x282f400,104, 0x282f600,104, 0x282f800,104, 0x2830000,13, 0x2830040,2, 0x2830054,4, 0x2830080,27, 0x2830100,12, 0x2830140,14, 0x2830180,28, 0x2830200,6, 0x2830240,6, 0x283025c,3, 0x2830280,5, 0x28302a0,8, 0x2830400,14, 0x2830440,14, 0x2830480,14, 0x28304c0,14, 0x2830540,3, 0x2830600,7, 0x2830620,14, 0x2830680,5, 0x28306a0,7, 0x2830800,13, 0x2830840,2, 0x2830854,4, 0x2830880,27, 0x2830900,12, 0x2830940,14, 0x2830980,28, 0x2830a00,6, 0x2830a40,6, 0x2830a5c,3, 0x2830a80,5, 0x2830aa0,8, 0x2830c00,14, 0x2830c40,14, 0x2830c80,14, 0x2830cc0,14, 0x2830d40,3, 0x2830e00,7, 0x2830e20,14, 0x2830e80,5, 0x2830ea0,7, 0x2831000,13, 0x2831040,2, 0x2831054,4, 0x2831080,27, 0x2831100,12, 0x2831140,14, 0x2831180,28, 0x2831200,6, 0x2831240,6, 0x283125c,3, 0x2831280,5, 0x28312a0,8, 0x2831400,14, 0x2831440,14, 0x2831480,14, 0x28314c0,14, 0x2831540,3, 0x2831600,7, 0x2831620,14, 0x2831680,5, 0x28316a0,7, 0x2831800,13, 0x2831840,2, 0x2831854,4, 0x2831880,27, 0x2831900,12, 0x2831940,14, 0x2831980,28, 0x2831a00,6, 0x2831a40,6, 0x2831a5c,3, 0x2831a80,5, 0x2831aa0,8, 0x2831c00,14, 0x2831c40,14, 0x2831c80,14, 0x2831cc0,14, 0x2831d40,3, 0x2831e00,7, 0x2831e20,14, 0x2831e80,5, 0x2831ea0,7, 0x2832000,8, 0x2832040,8, 0x2832080,1, 0x2832098,6, 0x2832100,10, 0x2832140,3, 0x2832150,2, 0x2832180,2, 0x2832200,6, 0x2832220,18, 0x2832280,4, 0x2832300,8, 0x2832400,2, 0x2832480,2, 0x2832800,28, 0x28329f0,4, 0x2833000,40, 0x2833100,64, 0x2833800,56, 0x2833be0,8, 0x2834000,13, 0x2834040,2, 0x2834054,4, 0x2834080,27, 0x2834100,12, 0x2834140,14, 0x2834180,28, 0x2834200,6, 0x2834240,6, 0x283425c,3, 0x2834280,5, 0x28342a0,8, 0x2834400,14, 0x2834440,14, 0x2834480,14, 0x28344c0,14, 0x2834540,3, 0x2834600,7, 0x2834620,14, 0x2834680,5, 0x28346a0,7, 0x2834800,13, 0x2834840,2, 0x2834854,4, 0x2834880,27, 0x2834900,12, 0x2834940,14, 0x2834980,28, 0x2834a00,6, 0x2834a40,6, 0x2834a5c,3, 0x2834a80,5, 0x2834aa0,8, 0x2834c00,14, 0x2834c40,14, 0x2834c80,14, 0x2834cc0,14, 0x2834d40,3, 0x2834e00,7, 0x2834e20,14, 0x2834e80,5, 0x2834ea0,7, 0x2835000,13, 0x2835040,2, 0x2835054,4, 0x2835080,27, 0x2835100,12, 0x2835140,14, 0x2835180,28, 0x2835200,6, 0x2835240,6, 0x283525c,3, 0x2835280,5, 0x28352a0,8, 0x2835400,14, 0x2835440,14, 0x2835480,14, 0x28354c0,14, 0x2835540,3, 0x2835600,7, 0x2835620,14, 0x2835680,5, 0x28356a0,7, 0x2835800,13, 0x2835840,2, 0x2835854,4, 0x2835880,27, 0x2835900,12, 0x2835940,14, 0x2835980,28, 0x2835a00,6, 0x2835a40,6, 0x2835a5c,3, 0x2835a80,5, 0x2835aa0,8, 0x2835c00,14, 0x2835c40,14, 0x2835c80,14, 0x2835cc0,14, 0x2835d40,3, 0x2835e00,7, 0x2835e20,14, 0x2835e80,5, 0x2835ea0,7, 0x2836000,8, 0x2836040,8, 0x2836080,1, 0x2836098,6, 0x2836100,10, 0x2836140,3, 0x2836150,2, 0x2836180,2, 0x2836200,6, 0x2836220,18, 0x2836280,4, 0x2836300,8, 0x2836400,2, 0x2836480,2, 0x2836800,28, 0x28369f0,4, 0x2837000,40, 0x2837100,64, 0x2837800,56, 0x2837be0,8, 0x2838000,2, 0x283800c,2, 0x2838040,7, 0x2838100,3, 0x2838110,3, 0x2838120,5, 0x2838200,6, 0x2838240,5, 0x2838400,2, 0x283840c,2, 0x2838440,7, 0x2838500,3, 0x2838510,3, 0x2838520,5, 0x2838600,6, 0x2838640,5, 0x2838800,2, 0x283880c,2, 0x2838840,7, 0x2838900,3, 0x2838910,3, 0x2838920,5, 0x2838a00,6, 0x2838a40,5, 0x2838c00,2, 0x2838c0c,2, 0x2838c40,7, 0x2838d00,3, 0x2838d10,3, 0x2838d20,5, 0x2838e00,6, 0x2838e40,5, 0x2839000,2, 0x283900c,2, 0x2839040,7, 0x2839100,3, 0x2839110,3, 0x2839120,5, 0x2839200,6, 0x2839240,5, 0x2839400,2, 0x283940c,2, 0x2839440,7, 0x2839500,3, 0x2839510,3, 0x2839520,5, 0x2839600,6, 0x2839640,5, 0x2839800,2, 0x283980c,2, 0x2839840,7, 0x2839900,3, 0x2839910,3, 0x2839920,5, 0x2839a00,6, 0x2839a40,5, 0x2839c00,2, 0x2839c0c,2, 0x2839c40,7, 0x2839d00,3, 0x2839d10,3, 0x2839d20,5, 0x2839e00,6, 0x2839e40,5, 0x283a000,5, 0x283a040,9, 0x283a100,3, 0x283a200,1, 0x283a210,1, 0x283a220,1, 0x283a230,1, 0x283a240,1, 0x283a300,3, 0x283a314,1, 0x283a320,4, 0x283a400,5, 0x283a440,5, 0x283b000,80, 0x283b200,1, 0x2840004,5, 0x2840020,3, 0x2840030,3, 0x2840040,13, 0x2840078,4, 0x284009c,25, 0x2840104,5, 0x2840120,3, 0x2840130,3, 0x2840140,13, 0x2840178,4, 0x284019c,25, 0x2840204,5, 0x2840220,3, 0x2840230,3, 0x2840240,13, 0x2840278,4, 0x284029c,25, 0x2840304,5, 0x2840320,3, 0x2840330,3, 0x2840340,13, 0x2840378,4, 0x284039c,25, 0x2840600,4, 0x2840c00,24, 0x2840c80,24, 0x2840d00,24, 0x2840d80,24, 0x2840e00,4, 0x2840e20,4, 0x2840e40,4, 0x2840e60,4, 0x2840e80,39, 0x2840f20,7, 0x2840f40,7, 0x2840f60,7, 0x2841000,12, 0x2841200,1, 0x2841218,2, 0x284122c,1, 0x2841280,1, 0x2841298,2, 0x28412ac,1, 0x2841300,1, 0x2841318,2, 0x284132c,1, 0x2841380,1, 0x2841398,2, 0x28413ac,1, 0x2841400,4, 0x2841420,2, 0x284142c,1, 0x2841480,4, 0x28414a0,2, 0x28414ac,1, 0x2841500,4, 0x2841520,2, 0x284152c,1, 0x2841580,4, 0x28415a0,2, 0x28415ac,1, 0x2841600,4, 0x2841640,4, 0x2841680,4, 0x28416c0,4, 0x2841700,7, 0x2841720,7, 0x2841740,7, 0x2841760,7, 0x2841780,4, 0x284179c,11, 0x28417d0,2, 0x28417e0,2, 0x28417f0,2, 0x2841900,44, 0x2842000,7, 0x2842020,4, 0x2842040,4, 0x2842060,7, 0x2842080,7, 0x28420a0,4, 0x28420c0,4, 0x28420e0,7, 0x2842100,7, 0x2842120,4, 0x2842140,4, 0x2842160,7, 0x2842180,7, 0x28421a0,4, 0x28421c0,4, 0x28421e0,7, 0x2842200,32, 0x2842b00,1, 0x2842b20,1, 0x2842b28,4, 0x2842b40,1, 0x2842b60,1, 0x2842b68,4, 0x2842b80,1, 0x2842ba0,1, 0x2842ba8,4, 0x2842bc0,1, 0x2842be0,1, 0x2842be8,4, 0x2842c00,7, 0x2842c20,1, 0x2842c54,18, 0x2842ca0,1, 0x2842cd4,18, 0x2842d20,1, 0x2842d54,18, 0x2842da0,1, 0x2842dd4,12, 0x2842e08,6, 0x2843100,7, 0x2843120,7, 0x2843140,7, 0x2843160,7, 0x2843180,3, 0x2844004,5, 0x2844020,3, 0x2844030,3, 0x2844040,13, 0x2844078,4, 0x284409c,25, 0x2844104,5, 0x2844120,3, 0x2844130,3, 0x2844140,13, 0x2844178,4, 0x284419c,25, 0x2844204,5, 0x2844220,3, 0x2844230,3, 0x2844240,13, 0x2844278,4, 0x284429c,25, 0x2844304,5, 0x2844320,3, 0x2844330,3, 0x2844340,13, 0x2844378,4, 0x284439c,25, 0x2844600,4, 0x2844c00,24, 0x2844c80,24, 0x2844d00,24, 0x2844d80,24, 0x2844e00,4, 0x2844e20,4, 0x2844e40,4, 0x2844e60,4, 0x2844e80,39, 0x2844f20,7, 0x2844f40,7, 0x2844f60,7, 0x2845000,12, 0x2845200,1, 0x2845218,2, 0x284522c,1, 0x2845280,1, 0x2845298,2, 0x28452ac,1, 0x2845300,1, 0x2845318,2, 0x284532c,1, 0x2845380,1, 0x2845398,2, 0x28453ac,1, 0x2845400,4, 0x2845420,2, 0x284542c,1, 0x2845480,4, 0x28454a0,2, 0x28454ac,1, 0x2845500,4, 0x2845520,2, 0x284552c,1, 0x2845580,4, 0x28455a0,2, 0x28455ac,1, 0x2845600,4, 0x2845640,4, 0x2845680,4, 0x28456c0,4, 0x2845700,7, 0x2845720,7, 0x2845740,7, 0x2845760,7, 0x2845780,4, 0x284579c,11, 0x28457d0,2, 0x28457e0,2, 0x28457f0,2, 0x2845900,44, 0x2846000,7, 0x2846020,4, 0x2846040,4, 0x2846060,7, 0x2846080,7, 0x28460a0,4, 0x28460c0,4, 0x28460e0,7, 0x2846100,7, 0x2846120,4, 0x2846140,4, 0x2846160,7, 0x2846180,7, 0x28461a0,4, 0x28461c0,4, 0x28461e0,7, 0x2846200,32, 0x2846b00,1, 0x2846b20,1, 0x2846b28,4, 0x2846b40,1, 0x2846b60,1, 0x2846b68,4, 0x2846b80,1, 0x2846ba0,1, 0x2846ba8,4, 0x2846bc0,1, 0x2846be0,1, 0x2846be8,4, 0x2846c00,7, 0x2846c20,1, 0x2846c54,18, 0x2846ca0,1, 0x2846cd4,18, 0x2846d20,1, 0x2846d54,18, 0x2846da0,1, 0x2846dd4,12, 0x2846e08,6, 0x2847100,7, 0x2847120,7, 0x2847140,7, 0x2847160,7, 0x2847180,3, 0x2848000,10, 0x2848080,3, 0x28480c0,1, 0x2848100,21, 0x2848180,13, 0x28481c4,7, 0x28481e4,7, 0x2848204,7, 0x2848224,8, 0x2849000,7, 0x2849030,2, 0x2849040,7, 0x2849070,2, 0x2849100,2, 0x2849120,2, 0x2849140,2, 0x2849160,2, 0x2849180,9, 0x2849200,7, 0x2849230,2, 0x2849240,7, 0x2849270,2, 0x2849300,2, 0x2849320,2, 0x2849340,2, 0x2849360,2, 0x2849380,9, 0x2849400,11, 0x2849500,11, 0x284a000,3, 0x284a010,2, 0x284a01c,5, 0x284a040,8, 0x284a080,3, 0x284a090,2, 0x284a09c,5, 0x284a0c0,8, 0x284a100,3, 0x284a110,2, 0x284a11c,5, 0x284a140,8, 0x284a180,3, 0x284a190,2, 0x284a19c,5, 0x284a1c0,8, 0x284a200,7, 0x284a220,12, 0x284a280,7, 0x284a2a0,12, 0x284a300,3, 0x284a310,1, 0x284a400,3, 0x284a410,2, 0x284a41c,5, 0x284a440,8, 0x284a480,3, 0x284a490,2, 0x284a49c,5, 0x284a4c0,8, 0x284a500,3, 0x284a510,2, 0x284a51c,5, 0x284a540,8, 0x284a580,3, 0x284a590,2, 0x284a59c,5, 0x284a5c0,8, 0x284a600,7, 0x284a620,12, 0x284a680,7, 0x284a6a0,12, 0x284a700,3, 0x284a710,1, 0x284a804,1, 0x284a824,21, 0x284a880,16, 0x284a900,5, 0x284a920,11, 0x284a950,9, 0x284a980,22, 0x284aa00,22, 0x284aa80,22, 0x284ab00,22, 0x284ab80,22, 0x284ac00,22, 0x284ac80,22, 0x284ad00,22, 0x284ad80,3, 0x284c000,16, 0x284c080,11, 0x284c100,11, 0x284c204,1, 0x284c224,21, 0x284c280,16, 0x284c300,11, 0x284c340,11, 0x284c800,21, 0x284c860,5, 0x284c880,6, 0x284c8a0,5, 0x284c8c0,6, 0x284c900,21, 0x284c960,5, 0x284c980,6, 0x284c9a0,5, 0x284c9c0,6, 0x284ca00,21, 0x284ca60,5, 0x284ca80,6, 0x284caa0,5, 0x284cac0,6, 0x284cb00,21, 0x284cb60,5, 0x284cb80,6, 0x284cba0,5, 0x284cbc0,6, 0x284cc00,9, 0x284cc48,7, 0x284cc68,2, 0x284cc74,9, 0x284cc9c,2, 0x284cd00,14, 0x284cd40,14, 0x284cd80,28, 0x284ce00,19, 0x284ce50,3, 0x284ce60,25, 0x284cec8,1, 0x284ced0,2, 0x284cee0,7, 0x284cf00,1, 0x284cf08,2, 0x284cffc,20, 0x284d050,25, 0x284d100,19, 0x284d150,25, 0x284d200,19, 0x284d250,25, 0x284d300,19, 0x284d350,25, 0x284d400,19, 0x284d450,25, 0x284d500,19, 0x284d550,25, 0x284d600,19, 0x284d650,25, 0x284d700,19, 0x284d750,25, 0x284d800,19, 0x284d850,25, 0x284d904,1, 0x284d914,10, 0x284d948,11, 0x284d980,2, 0x284d9a0,6, 0x284d9c0,2, 0x284d9cc,2, 0x284e000,35, 0x284ea00,10, 0x284ea80,3, 0x284eb00,6, 0x284f000,1, 0x284f008,5, 0x284f038,1, 0x284f044,1, 0x284f050,2, 0x284f100,13, 0x284f140,11, 0x284f170,12, 0x284f1a4,1, 0x284f200,104, 0x284f400,104, 0x284f600,104, 0x284f800,104, 0x2850000,13, 0x2850040,2, 0x2850054,4, 0x2850080,27, 0x2850100,12, 0x2850140,14, 0x2850180,28, 0x2850200,6, 0x2850240,6, 0x285025c,3, 0x2850280,5, 0x28502a0,8, 0x2850400,14, 0x2850440,14, 0x2850480,14, 0x28504c0,14, 0x2850540,3, 0x2850600,7, 0x2850620,14, 0x2850680,5, 0x28506a0,7, 0x2850800,13, 0x2850840,2, 0x2850854,4, 0x2850880,27, 0x2850900,12, 0x2850940,14, 0x2850980,28, 0x2850a00,6, 0x2850a40,6, 0x2850a5c,3, 0x2850a80,5, 0x2850aa0,8, 0x2850c00,14, 0x2850c40,14, 0x2850c80,14, 0x2850cc0,14, 0x2850d40,3, 0x2850e00,7, 0x2850e20,14, 0x2850e80,5, 0x2850ea0,7, 0x2851000,13, 0x2851040,2, 0x2851054,4, 0x2851080,27, 0x2851100,12, 0x2851140,14, 0x2851180,28, 0x2851200,6, 0x2851240,6, 0x285125c,3, 0x2851280,5, 0x28512a0,8, 0x2851400,14, 0x2851440,14, 0x2851480,14, 0x28514c0,14, 0x2851540,3, 0x2851600,7, 0x2851620,14, 0x2851680,5, 0x28516a0,7, 0x2851800,13, 0x2851840,2, 0x2851854,4, 0x2851880,27, 0x2851900,12, 0x2851940,14, 0x2851980,28, 0x2851a00,6, 0x2851a40,6, 0x2851a5c,3, 0x2851a80,5, 0x2851aa0,8, 0x2851c00,14, 0x2851c40,14, 0x2851c80,14, 0x2851cc0,14, 0x2851d40,3, 0x2851e00,7, 0x2851e20,14, 0x2851e80,5, 0x2851ea0,7, 0x2852000,8, 0x2852040,8, 0x2852080,1, 0x2852098,6, 0x2852100,10, 0x2852140,3, 0x2852150,2, 0x2852180,2, 0x2852200,6, 0x2852220,18, 0x2852280,4, 0x2852300,8, 0x2852400,2, 0x2852480,2, 0x2852800,28, 0x28529f0,4, 0x2853000,40, 0x2853100,64, 0x2853800,56, 0x2853be0,8, 0x2854000,13, 0x2854040,2, 0x2854054,4, 0x2854080,27, 0x2854100,12, 0x2854140,14, 0x2854180,28, 0x2854200,6, 0x2854240,6, 0x285425c,3, 0x2854280,5, 0x28542a0,8, 0x2854400,14, 0x2854440,14, 0x2854480,14, 0x28544c0,14, 0x2854540,3, 0x2854600,7, 0x2854620,14, 0x2854680,5, 0x28546a0,7, 0x2854800,13, 0x2854840,2, 0x2854854,4, 0x2854880,27, 0x2854900,12, 0x2854940,14, 0x2854980,28, 0x2854a00,6, 0x2854a40,6, 0x2854a5c,3, 0x2854a80,5, 0x2854aa0,8, 0x2854c00,14, 0x2854c40,14, 0x2854c80,14, 0x2854cc0,14, 0x2854d40,3, 0x2854e00,7, 0x2854e20,14, 0x2854e80,5, 0x2854ea0,7, 0x2855000,13, 0x2855040,2, 0x2855054,4, 0x2855080,27, 0x2855100,12, 0x2855140,14, 0x2855180,28, 0x2855200,6, 0x2855240,6, 0x285525c,3, 0x2855280,5, 0x28552a0,8, 0x2855400,14, 0x2855440,14, 0x2855480,14, 0x28554c0,14, 0x2855540,3, 0x2855600,7, 0x2855620,14, 0x2855680,5, 0x28556a0,7, 0x2855800,13, 0x2855840,2, 0x2855854,4, 0x2855880,27, 0x2855900,12, 0x2855940,14, 0x2855980,28, 0x2855a00,6, 0x2855a40,6, 0x2855a5c,3, 0x2855a80,5, 0x2855aa0,8, 0x2855c00,14, 0x2855c40,14, 0x2855c80,14, 0x2855cc0,14, 0x2855d40,3, 0x2855e00,7, 0x2855e20,14, 0x2855e80,5, 0x2855ea0,7, 0x2856000,8, 0x2856040,8, 0x2856080,1, 0x2856098,6, 0x2856100,10, 0x2856140,3, 0x2856150,2, 0x2856180,2, 0x2856200,6, 0x2856220,18, 0x2856280,4, 0x2856300,8, 0x2856400,2, 0x2856480,2, 0x2856800,28, 0x28569f0,4, 0x2857000,40, 0x2857100,64, 0x2857800,56, 0x2857be0,8, 0x2858000,2, 0x285800c,2, 0x2858040,7, 0x2858100,3, 0x2858110,3, 0x2858120,5, 0x2858200,6, 0x2858240,5, 0x2858400,2, 0x285840c,2, 0x2858440,7, 0x2858500,3, 0x2858510,3, 0x2858520,5, 0x2858600,6, 0x2858640,5, 0x2858800,2, 0x285880c,2, 0x2858840,7, 0x2858900,3, 0x2858910,3, 0x2858920,5, 0x2858a00,6, 0x2858a40,5, 0x2858c00,2, 0x2858c0c,2, 0x2858c40,7, 0x2858d00,3, 0x2858d10,3, 0x2858d20,5, 0x2858e00,6, 0x2858e40,5, 0x2859000,2, 0x285900c,2, 0x2859040,7, 0x2859100,3, 0x2859110,3, 0x2859120,5, 0x2859200,6, 0x2859240,5, 0x2859400,2, 0x285940c,2, 0x2859440,7, 0x2859500,3, 0x2859510,3, 0x2859520,5, 0x2859600,6, 0x2859640,5, 0x2859800,2, 0x285980c,2, 0x2859840,7, 0x2859900,3, 0x2859910,3, 0x2859920,5, 0x2859a00,6, 0x2859a40,5, 0x2859c00,2, 0x2859c0c,2, 0x2859c40,7, 0x2859d00,3, 0x2859d10,3, 0x2859d20,5, 0x2859e00,6, 0x2859e40,5, 0x285a000,5, 0x285a040,9, 0x285a100,3, 0x285a200,1, 0x285a210,1, 0x285a220,1, 0x285a230,1, 0x285a240,1, 0x285a300,3, 0x285a314,1, 0x285a320,4, 0x285a400,5, 0x285a440,5, 0x285b000,80, 0x285b200,1, 0x2860004,5, 0x2860020,3, 0x2860030,3, 0x2860040,13, 0x2860078,4, 0x286009c,25, 0x2860104,5, 0x2860120,3, 0x2860130,3, 0x2860140,13, 0x2860178,4, 0x286019c,25, 0x2860204,5, 0x2860220,3, 0x2860230,3, 0x2860240,13, 0x2860278,4, 0x286029c,25, 0x2860304,5, 0x2860320,3, 0x2860330,3, 0x2860340,13, 0x2860378,4, 0x286039c,25, 0x2860600,4, 0x2860c00,24, 0x2860c80,24, 0x2860d00,24, 0x2860d80,24, 0x2860e00,4, 0x2860e20,4, 0x2860e40,4, 0x2860e60,4, 0x2860e80,39, 0x2860f20,7, 0x2860f40,7, 0x2860f60,7, 0x2861000,12, 0x2861200,1, 0x2861218,2, 0x286122c,1, 0x2861280,1, 0x2861298,2, 0x28612ac,1, 0x2861300,1, 0x2861318,2, 0x286132c,1, 0x2861380,1, 0x2861398,2, 0x28613ac,1, 0x2861400,4, 0x2861420,2, 0x286142c,1, 0x2861480,4, 0x28614a0,2, 0x28614ac,1, 0x2861500,4, 0x2861520,2, 0x286152c,1, 0x2861580,4, 0x28615a0,2, 0x28615ac,1, 0x2861600,4, 0x2861640,4, 0x2861680,4, 0x28616c0,4, 0x2861700,7, 0x2861720,7, 0x2861740,7, 0x2861760,7, 0x2861780,4, 0x286179c,11, 0x28617d0,2, 0x28617e0,2, 0x28617f0,2, 0x2861900,44, 0x2862000,7, 0x2862020,4, 0x2862040,4, 0x2862060,7, 0x2862080,7, 0x28620a0,4, 0x28620c0,4, 0x28620e0,7, 0x2862100,7, 0x2862120,4, 0x2862140,4, 0x2862160,7, 0x2862180,7, 0x28621a0,4, 0x28621c0,4, 0x28621e0,7, 0x2862200,32, 0x2862b00,1, 0x2862b20,1, 0x2862b28,4, 0x2862b40,1, 0x2862b60,1, 0x2862b68,4, 0x2862b80,1, 0x2862ba0,1, 0x2862ba8,4, 0x2862bc0,1, 0x2862be0,1, 0x2862be8,4, 0x2862c00,7, 0x2862c20,1, 0x2862c54,18, 0x2862ca0,1, 0x2862cd4,18, 0x2862d20,1, 0x2862d54,18, 0x2862da0,1, 0x2862dd4,12, 0x2862e08,6, 0x2863100,7, 0x2863120,7, 0x2863140,7, 0x2863160,7, 0x2863180,3, 0x2864004,5, 0x2864020,3, 0x2864030,3, 0x2864040,13, 0x2864078,4, 0x286409c,25, 0x2864104,5, 0x2864120,3, 0x2864130,3, 0x2864140,13, 0x2864178,4, 0x286419c,25, 0x2864204,5, 0x2864220,3, 0x2864230,3, 0x2864240,13, 0x2864278,4, 0x286429c,25, 0x2864304,5, 0x2864320,3, 0x2864330,3, 0x2864340,13, 0x2864378,4, 0x286439c,25, 0x2864600,4, 0x2864c00,24, 0x2864c80,24, 0x2864d00,24, 0x2864d80,24, 0x2864e00,4, 0x2864e20,4, 0x2864e40,4, 0x2864e60,4, 0x2864e80,39, 0x2864f20,7, 0x2864f40,7, 0x2864f60,7, 0x2865000,12, 0x2865200,1, 0x2865218,2, 0x286522c,1, 0x2865280,1, 0x2865298,2, 0x28652ac,1, 0x2865300,1, 0x2865318,2, 0x286532c,1, 0x2865380,1, 0x2865398,2, 0x28653ac,1, 0x2865400,4, 0x2865420,2, 0x286542c,1, 0x2865480,4, 0x28654a0,2, 0x28654ac,1, 0x2865500,4, 0x2865520,2, 0x286552c,1, 0x2865580,4, 0x28655a0,2, 0x28655ac,1, 0x2865600,4, 0x2865640,4, 0x2865680,4, 0x28656c0,4, 0x2865700,7, 0x2865720,7, 0x2865740,7, 0x2865760,7, 0x2865780,4, 0x286579c,11, 0x28657d0,2, 0x28657e0,2, 0x28657f0,2, 0x2865900,44, 0x2866000,7, 0x2866020,4, 0x2866040,4, 0x2866060,7, 0x2866080,7, 0x28660a0,4, 0x28660c0,4, 0x28660e0,7, 0x2866100,7, 0x2866120,4, 0x2866140,4, 0x2866160,7, 0x2866180,7, 0x28661a0,4, 0x28661c0,4, 0x28661e0,7, 0x2866200,32, 0x2866b00,1, 0x2866b20,1, 0x2866b28,4, 0x2866b40,1, 0x2866b60,1, 0x2866b68,4, 0x2866b80,1, 0x2866ba0,1, 0x2866ba8,4, 0x2866bc0,1, 0x2866be0,1, 0x2866be8,4, 0x2866c00,7, 0x2866c20,1, 0x2866c54,18, 0x2866ca0,1, 0x2866cd4,18, 0x2866d20,1, 0x2866d54,18, 0x2866da0,1, 0x2866dd4,12, 0x2866e08,6, 0x2867100,7, 0x2867120,7, 0x2867140,7, 0x2867160,7, 0x2867180,3, 0x2868000,10, 0x2868080,3, 0x28680c0,1, 0x2868100,21, 0x2868180,13, 0x28681c4,7, 0x28681e4,7, 0x2868204,7, 0x2868224,8, 0x2869000,7, 0x2869030,2, 0x2869040,7, 0x2869070,2, 0x2869100,2, 0x2869120,2, 0x2869140,2, 0x2869160,2, 0x2869180,9, 0x2869200,7, 0x2869230,2, 0x2869240,7, 0x2869270,2, 0x2869300,2, 0x2869320,2, 0x2869340,2, 0x2869360,2, 0x2869380,9, 0x2869400,11, 0x2869500,11, 0x286a000,3, 0x286a010,2, 0x286a01c,5, 0x286a040,8, 0x286a080,3, 0x286a090,2, 0x286a09c,5, 0x286a0c0,8, 0x286a100,3, 0x286a110,2, 0x286a11c,5, 0x286a140,8, 0x286a180,3, 0x286a190,2, 0x286a19c,5, 0x286a1c0,8, 0x286a200,7, 0x286a220,12, 0x286a280,7, 0x286a2a0,12, 0x286a300,3, 0x286a310,1, 0x286a400,3, 0x286a410,2, 0x286a41c,5, 0x286a440,8, 0x286a480,3, 0x286a490,2, 0x286a49c,5, 0x286a4c0,8, 0x286a500,3, 0x286a510,2, 0x286a51c,5, 0x286a540,8, 0x286a580,3, 0x286a590,2, 0x286a59c,5, 0x286a5c0,8, 0x286a600,7, 0x286a620,12, 0x286a680,7, 0x286a6a0,12, 0x286a700,3, 0x286a710,1, 0x286a804,1, 0x286a824,21, 0x286a880,16, 0x286a900,5, 0x286a920,11, 0x286a950,9, 0x286a980,22, 0x286aa00,22, 0x286aa80,22, 0x286ab00,22, 0x286ab80,22, 0x286ac00,22, 0x286ac80,22, 0x286ad00,22, 0x286ad80,3, 0x286c000,16, 0x286c080,11, 0x286c100,11, 0x286c204,1, 0x286c224,21, 0x286c280,16, 0x286c300,11, 0x286c340,11, 0x286c800,21, 0x286c860,5, 0x286c880,6, 0x286c8a0,5, 0x286c8c0,6, 0x286c900,21, 0x286c960,5, 0x286c980,6, 0x286c9a0,5, 0x286c9c0,6, 0x286ca00,21, 0x286ca60,5, 0x286ca80,6, 0x286caa0,5, 0x286cac0,6, 0x286cb00,21, 0x286cb60,5, 0x286cb80,6, 0x286cba0,5, 0x286cbc0,6, 0x286cc00,9, 0x286cc48,7, 0x286cc68,2, 0x286cc74,9, 0x286cc9c,2, 0x286cd00,14, 0x286cd40,14, 0x286cd80,28, 0x286ce00,19, 0x286ce50,3, 0x286ce60,25, 0x286cec8,1, 0x286ced0,2, 0x286cee0,7, 0x286cf00,1, 0x286cf08,2, 0x286cffc,20, 0x286d050,25, 0x286d100,19, 0x286d150,25, 0x286d200,19, 0x286d250,25, 0x286d300,19, 0x286d350,25, 0x286d400,19, 0x286d450,25, 0x286d500,19, 0x286d550,25, 0x286d600,19, 0x286d650,25, 0x286d700,19, 0x286d750,25, 0x286d800,19, 0x286d850,25, 0x286d904,1, 0x286d914,10, 0x286d948,11, 0x286d980,2, 0x286d9a0,6, 0x286d9c0,2, 0x286d9cc,2, 0x286e000,35, 0x286ea00,10, 0x286ea80,3, 0x286eb00,6, 0x286f000,1, 0x286f008,5, 0x286f038,1, 0x286f044,1, 0x286f050,2, 0x286f100,13, 0x286f140,11, 0x286f170,12, 0x286f1a4,1, 0x286f200,104, 0x286f400,104, 0x286f600,104, 0x286f800,104, 0x2870000,13, 0x2870040,2, 0x2870054,4, 0x2870080,27, 0x2870100,12, 0x2870140,14, 0x2870180,28, 0x2870200,6, 0x2870240,6, 0x287025c,3, 0x2870280,5, 0x28702a0,8, 0x2870400,14, 0x2870440,14, 0x2870480,14, 0x28704c0,14, 0x2870540,3, 0x2870600,7, 0x2870620,14, 0x2870680,5, 0x28706a0,7, 0x2870800,13, 0x2870840,2, 0x2870854,4, 0x2870880,27, 0x2870900,12, 0x2870940,14, 0x2870980,28, 0x2870a00,6, 0x2870a40,6, 0x2870a5c,3, 0x2870a80,5, 0x2870aa0,8, 0x2870c00,14, 0x2870c40,14, 0x2870c80,14, 0x2870cc0,14, 0x2870d40,3, 0x2870e00,7, 0x2870e20,14, 0x2870e80,5, 0x2870ea0,7, 0x2871000,13, 0x2871040,2, 0x2871054,4, 0x2871080,27, 0x2871100,12, 0x2871140,14, 0x2871180,28, 0x2871200,6, 0x2871240,6, 0x287125c,3, 0x2871280,5, 0x28712a0,8, 0x2871400,14, 0x2871440,14, 0x2871480,14, 0x28714c0,14, 0x2871540,3, 0x2871600,7, 0x2871620,14, 0x2871680,5, 0x28716a0,7, 0x2871800,13, 0x2871840,2, 0x2871854,4, 0x2871880,27, 0x2871900,12, 0x2871940,14, 0x2871980,28, 0x2871a00,6, 0x2871a40,6, 0x2871a5c,3, 0x2871a80,5, 0x2871aa0,8, 0x2871c00,14, 0x2871c40,14, 0x2871c80,14, 0x2871cc0,14, 0x2871d40,3, 0x2871e00,7, 0x2871e20,14, 0x2871e80,5, 0x2871ea0,7, 0x2872000,8, 0x2872040,8, 0x2872080,1, 0x2872098,6, 0x2872100,10, 0x2872140,3, 0x2872150,2, 0x2872180,2, 0x2872200,6, 0x2872220,18, 0x2872280,4, 0x2872300,8, 0x2872400,2, 0x2872480,2, 0x2872800,28, 0x28729f0,4, 0x2873000,40, 0x2873100,64, 0x2873800,56, 0x2873be0,8, 0x2874000,13, 0x2874040,2, 0x2874054,4, 0x2874080,27, 0x2874100,12, 0x2874140,14, 0x2874180,28, 0x2874200,6, 0x2874240,6, 0x287425c,3, 0x2874280,5, 0x28742a0,8, 0x2874400,14, 0x2874440,14, 0x2874480,14, 0x28744c0,14, 0x2874540,3, 0x2874600,7, 0x2874620,14, 0x2874680,5, 0x28746a0,7, 0x2874800,13, 0x2874840,2, 0x2874854,4, 0x2874880,27, 0x2874900,12, 0x2874940,14, 0x2874980,28, 0x2874a00,6, 0x2874a40,6, 0x2874a5c,3, 0x2874a80,5, 0x2874aa0,8, 0x2874c00,14, 0x2874c40,14, 0x2874c80,14, 0x2874cc0,14, 0x2874d40,3, 0x2874e00,7, 0x2874e20,14, 0x2874e80,5, 0x2874ea0,7, 0x2875000,13, 0x2875040,2, 0x2875054,4, 0x2875080,27, 0x2875100,12, 0x2875140,14, 0x2875180,28, 0x2875200,6, 0x2875240,6, 0x287525c,3, 0x2875280,5, 0x28752a0,8, 0x2875400,14, 0x2875440,14, 0x2875480,14, 0x28754c0,14, 0x2875540,3, 0x2875600,7, 0x2875620,14, 0x2875680,5, 0x28756a0,7, 0x2875800,13, 0x2875840,2, 0x2875854,4, 0x2875880,27, 0x2875900,12, 0x2875940,14, 0x2875980,28, 0x2875a00,6, 0x2875a40,6, 0x2875a5c,3, 0x2875a80,5, 0x2875aa0,8, 0x2875c00,14, 0x2875c40,14, 0x2875c80,14, 0x2875cc0,14, 0x2875d40,3, 0x2875e00,7, 0x2875e20,14, 0x2875e80,5, 0x2875ea0,7, 0x2876000,8, 0x2876040,8, 0x2876080,1, 0x2876098,6, 0x2876100,10, 0x2876140,3, 0x2876150,2, 0x2876180,2, 0x2876200,6, 0x2876220,18, 0x2876280,4, 0x2876300,8, 0x2876400,2, 0x2876480,2, 0x2876800,28, 0x28769f0,4, 0x2877000,40, 0x2877100,64, 0x2877800,56, 0x2877be0,8, 0x2878000,2, 0x287800c,2, 0x2878040,7, 0x2878100,3, 0x2878110,3, 0x2878120,5, 0x2878200,6, 0x2878240,5, 0x2878400,2, 0x287840c,2, 0x2878440,7, 0x2878500,3, 0x2878510,3, 0x2878520,5, 0x2878600,6, 0x2878640,5, 0x2878800,2, 0x287880c,2, 0x2878840,7, 0x2878900,3, 0x2878910,3, 0x2878920,5, 0x2878a00,6, 0x2878a40,5, 0x2878c00,2, 0x2878c0c,2, 0x2878c40,7, 0x2878d00,3, 0x2878d10,3, 0x2878d20,5, 0x2878e00,6, 0x2878e40,5, 0x2879000,2, 0x287900c,2, 0x2879040,7, 0x2879100,3, 0x2879110,3, 0x2879120,5, 0x2879200,6, 0x2879240,5, 0x2879400,2, 0x287940c,2, 0x2879440,7, 0x2879500,3, 0x2879510,3, 0x2879520,5, 0x2879600,6, 0x2879640,5, 0x2879800,2, 0x287980c,2, 0x2879840,7, 0x2879900,3, 0x2879910,3, 0x2879920,5, 0x2879a00,6, 0x2879a40,5, 0x2879c00,2, 0x2879c0c,2, 0x2879c40,7, 0x2879d00,3, 0x2879d10,3, 0x2879d20,5, 0x2879e00,6, 0x2879e40,5, 0x287a000,5, 0x287a040,9, 0x287a100,3, 0x287a200,1, 0x287a210,1, 0x287a220,1, 0x287a230,1, 0x287a240,1, 0x287a300,3, 0x287a314,1, 0x287a320,4, 0x287a400,5, 0x287a440,5, 0x287b000,80, 0x287b200,1, 0x2880000,3, 0x2880010,7, 0x2880030,10, 0x2880080,2, 0x2880100,6, 0x2880140,2, 0x2880180,2, 0x28801a0,1, 0x2880400,2, 0x2880440,4, 0x2880460,5, 0x2880478,1, 0x2880480,6, 0x28804a0,3, 0x28804b0,2, 0x2880500,5, 0x2880600,1, 0x2880800,5, 0x2880900,5, 0x2880a00,5, 0x2880b00,3, 0x2880c00,35, 0x2880d00,25, 0x2880d80,1, 0x2880dc0,3, 0x2880e00,2, 0x2880e20,2, 0x2890000,3, 0x289001c,4, 0x2890080,3, 0x2890090,2, 0x28900d4,4, 0x28900ec,27, 0x289015c,27, 0x28901cc,19, 0x2890224,120, 0x2890408,24, 0x289046c,84, 0x28905f8,4, 0x2890610,27, 0x2890680,27, 0x28906f0,19, 0x2890748,120, 0x289092c,24, 0x2890990,84, 0x2890b1c,4, 0x2890b34,27, 0x2890ba4,27, 0x2890c14,19, 0x2890c6c,120, 0x2890e50,24, 0x2890eb4,84, 0x2891040,4, 0x2891058,27, 0x28910c8,27, 0x2891138,19, 0x2891190,120, 0x2891374,24, 0x28913d8,84, 0x2891564,4, 0x289157c,27, 0x28915ec,27, 0x289165c,19, 0x28916b4,120, 0x2891898,24, 0x28918fc,84, 0x2891a88,4, 0x2891aa0,27, 0x2891b10,27, 0x2891b80,19, 0x2891bd8,120, 0x2891dbc,24, 0x2891e20,84, 0x2891fac,4, 0x2891fc4,27, 0x2892034,27, 0x28920a4,19, 0x28920fc,120, 0x28922e0,24, 0x2892344,84, 0x28924d0,4, 0x28924e8,27, 0x2892558,27, 0x28925c8,19, 0x2892620,120, 0x2892804,24, 0x2892868,84, 0x28929f4,4, 0x2892a0c,27, 0x2892a7c,27, 0x2892aec,19, 0x2892b44,120, 0x2892d28,24, 0x2892d8c,84, 0x2892f18,4, 0x2892f30,27, 0x2892fa0,27, 0x2893010,19, 0x2893068,120, 0x289324c,24, 0x28932b0,84, 0x289343c,4, 0x2893454,27, 0x28934c4,27, 0x2893534,19, 0x289358c,120, 0x2893770,24, 0x28937d4,84, 0x2893960,4, 0x2893978,27, 0x28939e8,27, 0x2893a58,19, 0x2893ab0,120, 0x2893c94,24, 0x2893cf8,84, 0x2893e84,4, 0x2893e9c,27, 0x2893f0c,27, 0x2893f7c,19, 0x2893fd4,120, 0x28941b8,24, 0x289421c,84, 0x28943a8,4, 0x28943c0,27, 0x2894430,27, 0x28944a0,19, 0x28944f8,120, 0x28946dc,24, 0x2894740,84, 0x28948cc,4, 0x28948e4,27, 0x2894954,27, 0x28949c4,19, 0x2894a1c,120, 0x2894c00,24, 0x2894c64,84, 0x2894df0,4, 0x2894e08,27, 0x2894e78,27, 0x2894ee8,19, 0x2894f40,120, 0x2895124,24, 0x2895188,84, 0x2895314,4, 0x289532c,27, 0x289539c,27, 0x289540c,19, 0x2895464,120, 0x2895648,24, 0x28956ac,84, 0x2895838,14, 0x2895940,13, 0x2895a44,13, 0x2895b48,16, 0x2895b90,42, 0x2895c40,2, 0x2895c90,54, 0x2895d70,58, 0x2895e60,58, 0x2895f50,58, 0x2896040,58, 0x2896130,58, 0x2896220,58, 0x2896310,58, 0x2896400,58, 0x28964f0,58, 0x28965e0,58, 0x28966d0,58, 0x28967c0,58, 0x28968b0,58, 0x28969a0,58, 0x2896a90,58, 0x2896b80,58, 0x2896c70,58, 0x2896d60,58, 0x2896e50,58, 0x2896f40,58, 0x2897030,58, 0x2897120,58, 0x2897210,58, 0x2897300,58, 0x28973f0,58, 0x28974e0,58, 0x28975d0,58, 0x28976c0,58, 0x28977b0,58, 0x28978a0,58, 0x2897990,58, 0x2897a80,101, 0x2897c90,49, 0x2897db0,18, 0x2897e00,11, 0x2897e30,4, 0x2897e54,45, 0x2897f58,9, 0x2897f88,3, 0x2897fa0,2, 0x2897fd8,14, 0x2898014,12, 0x2898158,3, 0x2898168,2, 0x2898174,68, 0x2898288,2, 0x2898294,68, 0x28983a8,1, 0x28983b0,2, 0x28983bc,68, 0x28984d0,2, 0x28984dc,68, 0x28985f0,1, 0x28985f8,4, 0x2898610,3, 0x2898624,12, 0x2898688,8, 0x28986dc,1, 0x28986e8,4, 0x2898700,3, 0x2898714,12, 0x2898778,8, 0x28987cc,1, 0x28987d8,4, 0x28987f0,3, 0x2898804,12, 0x2898868,8, 0x28988bc,1, 0x28988c8,4, 0x28988e0,3, 0x28988f4,12, 0x2898958,8, 0x28989ac,1, 0x28989b8,4, 0x28989d0,3, 0x28989e4,12, 0x2898a48,8, 0x2898a9c,1, 0x2898aa8,4, 0x2898ac0,3, 0x2898ad4,12, 0x2898b38,8, 0x2898b8c,1, 0x2898b98,4, 0x2898bb0,3, 0x2898bc4,12, 0x2898c28,8, 0x2898c7c,1, 0x2898c88,4, 0x2898ca0,3, 0x2898cb4,12, 0x2898d18,8, 0x2898d6c,1, 0x2898d78,4, 0x2898d90,3, 0x2898da4,12, 0x2898e08,8, 0x2898e5c,1, 0x2898e68,4, 0x2898e80,3, 0x2898e94,12, 0x2898ef8,8, 0x2898f4c,1, 0x2898f58,4, 0x2898f70,3, 0x2898f84,12, 0x2898fe8,8, 0x289903c,1, 0x2899048,4, 0x2899060,3, 0x2899074,12, 0x28990d8,8, 0x289912c,1, 0x2899138,4, 0x2899150,3, 0x2899164,12, 0x28991c8,8, 0x289921c,1, 0x2899228,4, 0x2899240,3, 0x2899254,12, 0x28992b8,8, 0x289930c,1, 0x2899318,4, 0x2899330,3, 0x2899344,12, 0x28993a8,8, 0x28993fc,1, 0x2899408,4, 0x2899420,3, 0x2899434,12, 0x2899498,8, 0x28994ec,1, 0x28994f8,4, 0x2899510,3, 0x2899524,12, 0x2899588,8, 0x28995dc,1, 0x28995e8,64, 0x2899748,5, 0x2899990,28, 0x2899a04,1, 0x2899a98,1, 0x2899be8,5, 0x2899c04,3, 0x2899c18,13, 0x2899c50,2, 0x289a000,15, 0x289a044,81, 0x289a18c,84, 0x289a2e0,84, 0x289a434,84, 0x289a588,84, 0x289a6dc,84, 0x289a830,84, 0x289a984,84, 0x289aad8,84, 0x289ac2c,84, 0x289ad80,84, 0x289aed4,84, 0x289b028,84, 0x289b17c,84, 0x289b2d0,84, 0x289b424,84, 0x289b578,84, 0x289b6cc,5, 0x289b760,4, 0x289b8e0,2414, 0x289dea4,80, 0x289e048,4, 0x289ebe0,1, 0x289ebf0,97, 0x289ed94,7, 0x289ee7c,1, 0x289eeac,9, 0x289eed4,5, 0x289eeec,11, 0x289ef2c,17, 0x289ef74,29, 0x289f034,3, 0x289f044,1, 0x289f054,17, 0x289fbe0,3, 0x289fbf0,2, 0x28a0000,3, 0x28a0018,2, 0x28a0024,14, 0x28a0060,27, 0x28a00d0,3, 0x28a00e0,3, 0x28a00f0,3, 0x28a0100,4, 0x28a0120,6, 0x28a0140,3, 0x28a0150,1, 0x28a015c,4, 0x28a0170,1, 0x28a0180,15, 0x28a01c0,1, 0x28a01c8,5, 0x28a01e0,1, 0x28a01f0,3, 0x28a0200,3, 0x28a0218,2, 0x28a0224,14, 0x28a0260,27, 0x28a02d0,3, 0x28a02e0,3, 0x28a02f0,3, 0x28a0300,4, 0x28a0320,6, 0x28a0340,3, 0x28a0350,1, 0x28a035c,4, 0x28a0370,1, 0x28a0380,15, 0x28a03c0,1, 0x28a03c8,5, 0x28a03e0,1, 0x28a03f0,3, 0x28a0400,3, 0x28a0418,2, 0x28a0424,14, 0x28a0460,27, 0x28a04d0,3, 0x28a04e0,3, 0x28a04f0,3, 0x28a0500,4, 0x28a0520,6, 0x28a0540,3, 0x28a0550,1, 0x28a055c,4, 0x28a0570,1, 0x28a0580,15, 0x28a05c0,1, 0x28a05c8,5, 0x28a05e0,1, 0x28a05f0,3, 0x28a0600,3, 0x28a0618,2, 0x28a0624,14, 0x28a0660,27, 0x28a06d0,3, 0x28a06e0,3, 0x28a06f0,3, 0x28a0700,4, 0x28a0720,6, 0x28a0740,3, 0x28a0750,1, 0x28a075c,4, 0x28a0770,1, 0x28a0780,15, 0x28a07c0,1, 0x28a07c8,5, 0x28a07e0,1, 0x28a07f0,3, 0x28a0800,3, 0x28a0818,2, 0x28a0824,14, 0x28a0860,27, 0x28a08d0,3, 0x28a08e0,3, 0x28a08f0,3, 0x28a0900,4, 0x28a0920,6, 0x28a0940,3, 0x28a0950,1, 0x28a095c,4, 0x28a0970,1, 0x28a0980,15, 0x28a09c0,1, 0x28a09c8,5, 0x28a09e0,1, 0x28a09f0,3, 0x28a1844,1, 0x28a1858,5, 0x28a1904,3, 0x28a1950,3, 0x28a1988,2, 0x28a19a0,7, 0x28a19c0,7, 0x28a19e0,4, 0x28a2000,24, 0x28a20f0,3, 0x28a2100,7, 0x28a2120,7, 0x28a2144,7, 0x28a2400,4, 0x28a2420,5, 0x28a25e0,3, 0x28a25f4,1, 0x28a25fc,4, 0x28a2620,3, 0x28a2680,8, 0x28a2700,19, 0x28a2800,99, 0x28a2a00,18, 0x28a2a80,8, 0x28a2b00,1, 0x28a3070,1, 0x28a3080,2, 0x28a308c,1, 0x28a3098,2, 0x28a3404,1, 0x28a3440,20, 0x28a3494,1, 0x28a349c,7, 0x28a34d0,4, 0x28a34e8,2, 0x28a34fc,8, 0x28a3520,7, 0x28a3540,7, 0x28a3560,7, 0x28a3580,7, 0x28a35a0,7, 0x28a35c0,7, 0x28a35e0,7, 0x28a3600,9, 0x28a363c,2, 0x28a3650,6, 0x28a3684,10, 0x28a3a00,10, 0x28a3a30,1, 0x28a3a40,8, 0x28a3a64,5, 0x28a4a04,3, 0x28a4b00,33, 0x28a4b90,3, 0x28a5000,8, 0x28a5040,8, 0x28a5104,1, 0x28a510c,3, 0x28a5124,1, 0x28a512c,3, 0x28a6000,13, 0x28a6200,14, 0x28a6240,1, 0x28a6248,1, 0x28a6258,1, 0x28a6260,8, 0x28a6284,1, 0x28a62a0,8, 0x28a6348,5, 0x28a67f0,1, 0x28a67f8,1, 0x28a6a10,12, 0x28a7000,19, 0x28a7a00,10, 0x28a7a80,3, 0x28a7b00,6, 0x28c0000,1, 0x28c000c,5, 0x28c0044,1, 0x28c0054,5, 0x28c0200,128, 0x28c0404,1, 0x28c0428,54, 0x28c0600,32, 0x28c0704,1, 0x28c0800,1, 0x28c0900,1, 0x28c0910,2, 0x28c0920,3, 0x28c0980,10, 0x28c0a00,19, 0x28c0b00,1, 0x28e0000,2, 0x28e000c,2, 0x28e0018,2, 0x28e0024,2, 0x28e0030,2, 0x28e003c,2, 0x28e0048,2, 0x28e0054,2, 0x28e0060,1, 0x28e0070,2, 0x28e007c,2, 0x28e0088,2, 0x28e0094,2, 0x28e00a0,2, 0x28e00ac,2, 0x28e00b8,2, 0x28e00c4,2, 0x28e00d0,1, 0x28e00e0,2, 0x28e00ec,2, 0x28e00f8,2, 0x28e0104,2, 0x28e0110,2, 0x28e011c,2, 0x28e0128,2, 0x28e0134,2, 0x28e0140,1, 0x28e0150,2, 0x28e015c,2, 0x28e0168,2, 0x28e0174,2, 0x28e0180,2, 0x28e018c,2, 0x28e0198,2, 0x28e01a4,2, 0x28e01b0,1, 0x28e01c0,57, 0x28e02b0,67, 0x28e03c0,16, 0x28e0410,23, 0x28e0470,16, 0x28e04c0,23, 0x28e0520,16, 0x28e0570,23, 0x28e05d0,16, 0x28e0620,23, 0x28e0680,16, 0x28e06d0,23, 0x28e0730,16, 0x28e0780,23, 0x28e07e0,16, 0x28e0830,23, 0x28e0890,16, 0x28e08e0,23, 0x28e0940,16, 0x28e0990,23, 0x28e09f0,16, 0x28e0a40,23, 0x28e0aa0,16, 0x28e0af0,23, 0x28e0b50,16, 0x28e0ba0,23, 0x28e0c00,16, 0x28e0c50,23, 0x28e0cb0,16, 0x28e0d00,23, 0x28e0d60,16, 0x28e0db0,23, 0x28e0e10,16, 0x28e0e60,23, 0x28e0ec0,16, 0x28e0f10,23, 0x28e0f70,16, 0x28e0fc0,23, 0x28e1020,16, 0x28e1070,23, 0x28e10d0,16, 0x28e1120,23, 0x28e1180,16, 0x28e11d0,23, 0x28e1230,16, 0x28e1280,23, 0x28e12e0,16, 0x28e1330,23, 0x28e1390,16, 0x28e13e0,23, 0x28e1440,16, 0x28e1490,23, 0x28e14f0,16, 0x28e1540,23, 0x28e15a0,16, 0x28e15f0,23, 0x28e1650,16, 0x28e16a0,23, 0x28e1700,16, 0x28e1750,23, 0x28e17b0,16, 0x28e1800,23, 0x28e1860,16, 0x28e18b0,23, 0x28e1910,16, 0x28e1960,2, 0x28f0000,4, 0x28f0014,2, 0x28f0020,8, 0x28f0044,2, 0x28f0050,13, 0x28f0088,20, 0x28f00dc,1, 0x28f0180,6, 0x28f0590,3, 0x28f05c0,2, 0x28f0a04,1, 0x28f0a0c,3, 0x28f0a20,1, 0x28f0ba0,4, 0x28f0c00,4, 0x28f0c20,3, 0x28f0c30,5, 0x28f0c50,52, 0x28f0d50,57, 0x28f0ec0,3, 0x28f0ffc,3, 0x28f1020,3, 0x28f1030,3, 0x28f1060,2, 0x28f1100,2, 0x28f1140,18, 0x28f11c0,30, 0x28f1240,14, 0x28f1280,28, 0x28f1300,2, 0x28f13a0,6, 0x28f1400,19, 0x28f1800,19, 0x28f1c00,19, 0x28f1c80,8, 0x28f1d00,3, 0x28f1d50,3, 0x28f1e00,3, 0x28f1e10,2, 0x28f1e20,6, 0x28f1e40,6, 0x28f1e60,6, 0x28f1e80,6, 0x28f1ea0,6, 0x28f1ec0,2, 0x28f1ecc,2, 0x28f1ee0,2, 0x28f1eec,2, 0x28f1f80,3, 0x28f1f90,60, 0x28f2100,32, 0x28f2200,32, 0x28f2300,32, 0x28f2400,32, 0x28f2500,32, 0x28f2600,32, 0x28f2700,32, 0x28f2800,32, 0x28f2900,32, 0x28f2a00,32, 0x28f2b00,32, 0x28f2c00,32, 0x28f2d00,32, 0x28f2e00,32, 0x28f2f00,32, 0x28f3000,32, 0x28f30c0,3, 0x28f4000,2, 0x28f4040,16, 0x28f4100,36, 0x28f4800,5, 0x28f4824,1, 0x28f482c,1, 0x28f4c04,1, 0x28f4cd8,74, 0x28f5000,7, 0x28f5020,4, 0x28f5204,1, 0x28f5280,35, 0x28f5310,4, 0x28f5404,1, 0x28f5480,34, 0x28f5510,10, 0x28f553c,3, 0x28f5800,7, 0x28f5820,4, 0x28f5a04,1, 0x28f5a80,35, 0x28f5b10,4, 0x28f5c04,1, 0x28f5c80,34, 0x28f5d10,10, 0x28f5d3c,3, 0x28fa000,5, 0x28fa01c,13, 0x28fa060,3, 0x28fa080,8, 0x28fa100,5, 0x28fa11c,13, 0x28fa160,3, 0x28fa180,8, 0x2a00004,5, 0x2a00020,3, 0x2a00030,3, 0x2a00040,13, 0x2a00078,4, 0x2a0009c,25, 0x2a00104,5, 0x2a00120,3, 0x2a00130,3, 0x2a00140,13, 0x2a00178,4, 0x2a0019c,25, 0x2a00204,5, 0x2a00220,3, 0x2a00230,3, 0x2a00240,13, 0x2a00278,4, 0x2a0029c,25, 0x2a00304,5, 0x2a00320,3, 0x2a00330,3, 0x2a00340,13, 0x2a00378,4, 0x2a0039c,25, 0x2a00600,4, 0x2a00c00,24, 0x2a00c80,24, 0x2a00d00,24, 0x2a00d80,24, 0x2a00e00,4, 0x2a00e20,4, 0x2a00e40,4, 0x2a00e60,4, 0x2a00e80,39, 0x2a00f20,7, 0x2a00f40,7, 0x2a00f60,7, 0x2a01000,12, 0x2a01200,1, 0x2a01218,2, 0x2a0122c,1, 0x2a01280,1, 0x2a01298,2, 0x2a012ac,1, 0x2a01300,1, 0x2a01318,2, 0x2a0132c,1, 0x2a01380,1, 0x2a01398,2, 0x2a013ac,1, 0x2a01400,4, 0x2a01420,2, 0x2a0142c,1, 0x2a01480,4, 0x2a014a0,2, 0x2a014ac,1, 0x2a01500,4, 0x2a01520,2, 0x2a0152c,1, 0x2a01580,4, 0x2a015a0,2, 0x2a015ac,1, 0x2a01600,4, 0x2a01640,4, 0x2a01680,4, 0x2a016c0,4, 0x2a01700,7, 0x2a01720,7, 0x2a01740,7, 0x2a01760,7, 0x2a01780,4, 0x2a0179c,11, 0x2a017d0,2, 0x2a017e0,2, 0x2a017f0,2, 0x2a01900,44, 0x2a02000,7, 0x2a02020,4, 0x2a02040,4, 0x2a02060,7, 0x2a02080,7, 0x2a020a0,4, 0x2a020c0,4, 0x2a020e0,7, 0x2a02100,7, 0x2a02120,4, 0x2a02140,4, 0x2a02160,7, 0x2a02180,7, 0x2a021a0,4, 0x2a021c0,4, 0x2a021e0,7, 0x2a02200,32, 0x2a02b00,1, 0x2a02b20,1, 0x2a02b28,4, 0x2a02b40,1, 0x2a02b60,1, 0x2a02b68,4, 0x2a02b80,1, 0x2a02ba0,1, 0x2a02ba8,4, 0x2a02bc0,1, 0x2a02be0,1, 0x2a02be8,4, 0x2a02c00,7, 0x2a02c20,1, 0x2a02c54,18, 0x2a02ca0,1, 0x2a02cd4,18, 0x2a02d20,1, 0x2a02d54,18, 0x2a02da0,1, 0x2a02dd4,12, 0x2a02e08,6, 0x2a03100,7, 0x2a03120,7, 0x2a03140,7, 0x2a03160,7, 0x2a03180,3, 0x2a04004,5, 0x2a04020,3, 0x2a04030,3, 0x2a04040,13, 0x2a04078,4, 0x2a0409c,25, 0x2a04104,5, 0x2a04120,3, 0x2a04130,3, 0x2a04140,13, 0x2a04178,4, 0x2a0419c,25, 0x2a04204,5, 0x2a04220,3, 0x2a04230,3, 0x2a04240,13, 0x2a04278,4, 0x2a0429c,25, 0x2a04304,5, 0x2a04320,3, 0x2a04330,3, 0x2a04340,13, 0x2a04378,4, 0x2a0439c,25, 0x2a04600,4, 0x2a04c00,24, 0x2a04c80,24, 0x2a04d00,24, 0x2a04d80,24, 0x2a04e00,4, 0x2a04e20,4, 0x2a04e40,4, 0x2a04e60,4, 0x2a04e80,39, 0x2a04f20,7, 0x2a04f40,7, 0x2a04f60,7, 0x2a05000,12, 0x2a05200,1, 0x2a05218,2, 0x2a0522c,1, 0x2a05280,1, 0x2a05298,2, 0x2a052ac,1, 0x2a05300,1, 0x2a05318,2, 0x2a0532c,1, 0x2a05380,1, 0x2a05398,2, 0x2a053ac,1, 0x2a05400,4, 0x2a05420,2, 0x2a0542c,1, 0x2a05480,4, 0x2a054a0,2, 0x2a054ac,1, 0x2a05500,4, 0x2a05520,2, 0x2a0552c,1, 0x2a05580,4, 0x2a055a0,2, 0x2a055ac,1, 0x2a05600,4, 0x2a05640,4, 0x2a05680,4, 0x2a056c0,4, 0x2a05700,7, 0x2a05720,7, 0x2a05740,7, 0x2a05760,7, 0x2a05780,4, 0x2a0579c,11, 0x2a057d0,2, 0x2a057e0,2, 0x2a057f0,2, 0x2a05900,44, 0x2a06000,7, 0x2a06020,4, 0x2a06040,4, 0x2a06060,7, 0x2a06080,7, 0x2a060a0,4, 0x2a060c0,4, 0x2a060e0,7, 0x2a06100,7, 0x2a06120,4, 0x2a06140,4, 0x2a06160,7, 0x2a06180,7, 0x2a061a0,4, 0x2a061c0,4, 0x2a061e0,7, 0x2a06200,32, 0x2a06b00,1, 0x2a06b20,1, 0x2a06b28,4, 0x2a06b40,1, 0x2a06b60,1, 0x2a06b68,4, 0x2a06b80,1, 0x2a06ba0,1, 0x2a06ba8,4, 0x2a06bc0,1, 0x2a06be0,1, 0x2a06be8,4, 0x2a06c00,7, 0x2a06c20,1, 0x2a06c54,18, 0x2a06ca0,1, 0x2a06cd4,18, 0x2a06d20,1, 0x2a06d54,18, 0x2a06da0,1, 0x2a06dd4,12, 0x2a06e08,6, 0x2a07100,7, 0x2a07120,7, 0x2a07140,7, 0x2a07160,7, 0x2a07180,3, 0x2a08000,10, 0x2a08080,3, 0x2a080c0,1, 0x2a08100,21, 0x2a08180,13, 0x2a081c4,7, 0x2a081e4,7, 0x2a08204,7, 0x2a08224,8, 0x2a09000,7, 0x2a09030,2, 0x2a09040,7, 0x2a09070,2, 0x2a09100,2, 0x2a09120,2, 0x2a09140,2, 0x2a09160,2, 0x2a09180,9, 0x2a09200,7, 0x2a09230,2, 0x2a09240,7, 0x2a09270,2, 0x2a09300,2, 0x2a09320,2, 0x2a09340,2, 0x2a09360,2, 0x2a09380,9, 0x2a09400,11, 0x2a09500,11, 0x2a0a000,3, 0x2a0a010,2, 0x2a0a01c,5, 0x2a0a040,8, 0x2a0a080,3, 0x2a0a090,2, 0x2a0a09c,5, 0x2a0a0c0,8, 0x2a0a100,3, 0x2a0a110,2, 0x2a0a11c,5, 0x2a0a140,8, 0x2a0a180,3, 0x2a0a190,2, 0x2a0a19c,5, 0x2a0a1c0,8, 0x2a0a200,7, 0x2a0a220,12, 0x2a0a280,7, 0x2a0a2a0,12, 0x2a0a300,3, 0x2a0a310,1, 0x2a0a400,3, 0x2a0a410,2, 0x2a0a41c,5, 0x2a0a440,8, 0x2a0a480,3, 0x2a0a490,2, 0x2a0a49c,5, 0x2a0a4c0,8, 0x2a0a500,3, 0x2a0a510,2, 0x2a0a51c,5, 0x2a0a540,8, 0x2a0a580,3, 0x2a0a590,2, 0x2a0a59c,5, 0x2a0a5c0,8, 0x2a0a600,7, 0x2a0a620,12, 0x2a0a680,7, 0x2a0a6a0,12, 0x2a0a700,3, 0x2a0a710,1, 0x2a0a804,1, 0x2a0a824,21, 0x2a0a880,16, 0x2a0a900,5, 0x2a0a920,11, 0x2a0a950,9, 0x2a0a980,22, 0x2a0aa00,22, 0x2a0aa80,22, 0x2a0ab00,22, 0x2a0ab80,22, 0x2a0ac00,22, 0x2a0ac80,22, 0x2a0ad00,22, 0x2a0ad80,3, 0x2a0c000,16, 0x2a0c080,11, 0x2a0c100,11, 0x2a0c204,1, 0x2a0c224,21, 0x2a0c280,16, 0x2a0c300,11, 0x2a0c340,11, 0x2a0c800,21, 0x2a0c860,5, 0x2a0c880,6, 0x2a0c8a0,5, 0x2a0c8c0,6, 0x2a0c900,21, 0x2a0c960,5, 0x2a0c980,6, 0x2a0c9a0,5, 0x2a0c9c0,6, 0x2a0ca00,21, 0x2a0ca60,5, 0x2a0ca80,6, 0x2a0caa0,5, 0x2a0cac0,6, 0x2a0cb00,21, 0x2a0cb60,5, 0x2a0cb80,6, 0x2a0cba0,5, 0x2a0cbc0,6, 0x2a0cc00,9, 0x2a0cc48,7, 0x2a0cc68,2, 0x2a0cc74,9, 0x2a0cc9c,2, 0x2a0cd00,14, 0x2a0cd40,14, 0x2a0cd80,28, 0x2a0ce00,19, 0x2a0ce50,3, 0x2a0ce60,25, 0x2a0cec8,1, 0x2a0ced0,2, 0x2a0cee0,7, 0x2a0cf00,1, 0x2a0cf08,2, 0x2a0cffc,20, 0x2a0d050,25, 0x2a0d100,19, 0x2a0d150,25, 0x2a0d200,19, 0x2a0d250,25, 0x2a0d300,19, 0x2a0d350,25, 0x2a0d400,19, 0x2a0d450,25, 0x2a0d500,19, 0x2a0d550,25, 0x2a0d600,19, 0x2a0d650,25, 0x2a0d700,19, 0x2a0d750,25, 0x2a0d800,19, 0x2a0d850,25, 0x2a0d904,1, 0x2a0d914,10, 0x2a0d948,11, 0x2a0d980,2, 0x2a0d9a0,6, 0x2a0d9c0,2, 0x2a0d9cc,2, 0x2a0e000,35, 0x2a0ea00,10, 0x2a0ea80,3, 0x2a0eb00,6, 0x2a0f000,1, 0x2a0f008,5, 0x2a0f038,1, 0x2a0f044,1, 0x2a0f050,2, 0x2a0f100,13, 0x2a0f140,11, 0x2a0f170,12, 0x2a0f1a4,1, 0x2a0f200,104, 0x2a0f400,104, 0x2a0f600,104, 0x2a0f800,104, 0x2a10000,13, 0x2a10040,2, 0x2a10054,4, 0x2a10080,27, 0x2a10100,12, 0x2a10140,14, 0x2a10180,28, 0x2a10200,6, 0x2a10240,6, 0x2a1025c,3, 0x2a10280,5, 0x2a102a0,8, 0x2a10400,14, 0x2a10440,14, 0x2a10480,14, 0x2a104c0,14, 0x2a10540,3, 0x2a10600,7, 0x2a10620,14, 0x2a10680,5, 0x2a106a0,7, 0x2a10800,13, 0x2a10840,2, 0x2a10854,4, 0x2a10880,27, 0x2a10900,12, 0x2a10940,14, 0x2a10980,28, 0x2a10a00,6, 0x2a10a40,6, 0x2a10a5c,3, 0x2a10a80,5, 0x2a10aa0,8, 0x2a10c00,14, 0x2a10c40,14, 0x2a10c80,14, 0x2a10cc0,14, 0x2a10d40,3, 0x2a10e00,7, 0x2a10e20,14, 0x2a10e80,5, 0x2a10ea0,7, 0x2a11000,13, 0x2a11040,2, 0x2a11054,4, 0x2a11080,27, 0x2a11100,12, 0x2a11140,14, 0x2a11180,28, 0x2a11200,6, 0x2a11240,6, 0x2a1125c,3, 0x2a11280,5, 0x2a112a0,8, 0x2a11400,14, 0x2a11440,14, 0x2a11480,14, 0x2a114c0,14, 0x2a11540,3, 0x2a11600,7, 0x2a11620,14, 0x2a11680,5, 0x2a116a0,7, 0x2a11800,13, 0x2a11840,2, 0x2a11854,4, 0x2a11880,27, 0x2a11900,12, 0x2a11940,14, 0x2a11980,28, 0x2a11a00,6, 0x2a11a40,6, 0x2a11a5c,3, 0x2a11a80,5, 0x2a11aa0,8, 0x2a11c00,14, 0x2a11c40,14, 0x2a11c80,14, 0x2a11cc0,14, 0x2a11d40,3, 0x2a11e00,7, 0x2a11e20,14, 0x2a11e80,5, 0x2a11ea0,7, 0x2a12000,8, 0x2a12040,8, 0x2a12080,1, 0x2a12098,6, 0x2a12100,10, 0x2a12140,3, 0x2a12150,2, 0x2a12180,2, 0x2a12200,6, 0x2a12220,18, 0x2a12280,4, 0x2a12300,8, 0x2a12400,2, 0x2a12480,2, 0x2a12800,28, 0x2a129f0,4, 0x2a13000,40, 0x2a13100,64, 0x2a13800,56, 0x2a13be0,8, 0x2a14000,13, 0x2a14040,2, 0x2a14054,4, 0x2a14080,27, 0x2a14100,12, 0x2a14140,14, 0x2a14180,28, 0x2a14200,6, 0x2a14240,6, 0x2a1425c,3, 0x2a14280,5, 0x2a142a0,8, 0x2a14400,14, 0x2a14440,14, 0x2a14480,14, 0x2a144c0,14, 0x2a14540,3, 0x2a14600,7, 0x2a14620,14, 0x2a14680,5, 0x2a146a0,7, 0x2a14800,13, 0x2a14840,2, 0x2a14854,4, 0x2a14880,27, 0x2a14900,12, 0x2a14940,14, 0x2a14980,28, 0x2a14a00,6, 0x2a14a40,6, 0x2a14a5c,3, 0x2a14a80,5, 0x2a14aa0,8, 0x2a14c00,14, 0x2a14c40,14, 0x2a14c80,14, 0x2a14cc0,14, 0x2a14d40,3, 0x2a14e00,7, 0x2a14e20,14, 0x2a14e80,5, 0x2a14ea0,7, 0x2a15000,13, 0x2a15040,2, 0x2a15054,4, 0x2a15080,27, 0x2a15100,12, 0x2a15140,14, 0x2a15180,28, 0x2a15200,6, 0x2a15240,6, 0x2a1525c,3, 0x2a15280,5, 0x2a152a0,8, 0x2a15400,14, 0x2a15440,14, 0x2a15480,14, 0x2a154c0,14, 0x2a15540,3, 0x2a15600,7, 0x2a15620,14, 0x2a15680,5, 0x2a156a0,7, 0x2a15800,13, 0x2a15840,2, 0x2a15854,4, 0x2a15880,27, 0x2a15900,12, 0x2a15940,14, 0x2a15980,28, 0x2a15a00,6, 0x2a15a40,6, 0x2a15a5c,3, 0x2a15a80,5, 0x2a15aa0,8, 0x2a15c00,14, 0x2a15c40,14, 0x2a15c80,14, 0x2a15cc0,14, 0x2a15d40,3, 0x2a15e00,7, 0x2a15e20,14, 0x2a15e80,5, 0x2a15ea0,7, 0x2a16000,8, 0x2a16040,8, 0x2a16080,1, 0x2a16098,6, 0x2a16100,10, 0x2a16140,3, 0x2a16150,2, 0x2a16180,2, 0x2a16200,6, 0x2a16220,18, 0x2a16280,4, 0x2a16300,8, 0x2a16400,2, 0x2a16480,2, 0x2a16800,28, 0x2a169f0,4, 0x2a17000,40, 0x2a17100,64, 0x2a17800,56, 0x2a17be0,8, 0x2a18000,2, 0x2a1800c,2, 0x2a18040,7, 0x2a18100,3, 0x2a18110,3, 0x2a18120,5, 0x2a18200,6, 0x2a18240,5, 0x2a18400,2, 0x2a1840c,2, 0x2a18440,7, 0x2a18500,3, 0x2a18510,3, 0x2a18520,5, 0x2a18600,6, 0x2a18640,5, 0x2a18800,2, 0x2a1880c,2, 0x2a18840,7, 0x2a18900,3, 0x2a18910,3, 0x2a18920,5, 0x2a18a00,6, 0x2a18a40,5, 0x2a18c00,2, 0x2a18c0c,2, 0x2a18c40,7, 0x2a18d00,3, 0x2a18d10,3, 0x2a18d20,5, 0x2a18e00,6, 0x2a18e40,5, 0x2a19000,2, 0x2a1900c,2, 0x2a19040,7, 0x2a19100,3, 0x2a19110,3, 0x2a19120,5, 0x2a19200,6, 0x2a19240,5, 0x2a19400,2, 0x2a1940c,2, 0x2a19440,7, 0x2a19500,3, 0x2a19510,3, 0x2a19520,5, 0x2a19600,6, 0x2a19640,5, 0x2a19800,2, 0x2a1980c,2, 0x2a19840,7, 0x2a19900,3, 0x2a19910,3, 0x2a19920,5, 0x2a19a00,6, 0x2a19a40,5, 0x2a19c00,2, 0x2a19c0c,2, 0x2a19c40,7, 0x2a19d00,3, 0x2a19d10,3, 0x2a19d20,5, 0x2a19e00,6, 0x2a19e40,5, 0x2a1a000,5, 0x2a1a040,9, 0x2a1a100,3, 0x2a1a200,1, 0x2a1a210,1, 0x2a1a220,1, 0x2a1a230,1, 0x2a1a240,1, 0x2a1a300,3, 0x2a1a314,1, 0x2a1a320,4, 0x2a1a400,5, 0x2a1a440,5, 0x2a1b000,80, 0x2a1b200,1, 0x2a20004,5, 0x2a20020,3, 0x2a20030,3, 0x2a20040,13, 0x2a20078,4, 0x2a2009c,25, 0x2a20104,5, 0x2a20120,3, 0x2a20130,3, 0x2a20140,13, 0x2a20178,4, 0x2a2019c,25, 0x2a20204,5, 0x2a20220,3, 0x2a20230,3, 0x2a20240,13, 0x2a20278,4, 0x2a2029c,25, 0x2a20304,5, 0x2a20320,3, 0x2a20330,3, 0x2a20340,13, 0x2a20378,4, 0x2a2039c,25, 0x2a20600,4, 0x2a20c00,24, 0x2a20c80,24, 0x2a20d00,24, 0x2a20d80,24, 0x2a20e00,4, 0x2a20e20,4, 0x2a20e40,4, 0x2a20e60,4, 0x2a20e80,39, 0x2a20f20,7, 0x2a20f40,7, 0x2a20f60,7, 0x2a21000,12, 0x2a21200,1, 0x2a21218,2, 0x2a2122c,1, 0x2a21280,1, 0x2a21298,2, 0x2a212ac,1, 0x2a21300,1, 0x2a21318,2, 0x2a2132c,1, 0x2a21380,1, 0x2a21398,2, 0x2a213ac,1, 0x2a21400,4, 0x2a21420,2, 0x2a2142c,1, 0x2a21480,4, 0x2a214a0,2, 0x2a214ac,1, 0x2a21500,4, 0x2a21520,2, 0x2a2152c,1, 0x2a21580,4, 0x2a215a0,2, 0x2a215ac,1, 0x2a21600,4, 0x2a21640,4, 0x2a21680,4, 0x2a216c0,4, 0x2a21700,7, 0x2a21720,7, 0x2a21740,7, 0x2a21760,7, 0x2a21780,4, 0x2a2179c,11, 0x2a217d0,2, 0x2a217e0,2, 0x2a217f0,2, 0x2a21900,44, 0x2a22000,7, 0x2a22020,4, 0x2a22040,4, 0x2a22060,7, 0x2a22080,7, 0x2a220a0,4, 0x2a220c0,4, 0x2a220e0,7, 0x2a22100,7, 0x2a22120,4, 0x2a22140,4, 0x2a22160,7, 0x2a22180,7, 0x2a221a0,4, 0x2a221c0,4, 0x2a221e0,7, 0x2a22200,32, 0x2a22b00,1, 0x2a22b20,1, 0x2a22b28,4, 0x2a22b40,1, 0x2a22b60,1, 0x2a22b68,4, 0x2a22b80,1, 0x2a22ba0,1, 0x2a22ba8,4, 0x2a22bc0,1, 0x2a22be0,1, 0x2a22be8,4, 0x2a22c00,7, 0x2a22c20,1, 0x2a22c54,18, 0x2a22ca0,1, 0x2a22cd4,18, 0x2a22d20,1, 0x2a22d54,18, 0x2a22da0,1, 0x2a22dd4,12, 0x2a22e08,6, 0x2a23100,7, 0x2a23120,7, 0x2a23140,7, 0x2a23160,7, 0x2a23180,3, 0x2a24004,5, 0x2a24020,3, 0x2a24030,3, 0x2a24040,13, 0x2a24078,4, 0x2a2409c,25, 0x2a24104,5, 0x2a24120,3, 0x2a24130,3, 0x2a24140,13, 0x2a24178,4, 0x2a2419c,25, 0x2a24204,5, 0x2a24220,3, 0x2a24230,3, 0x2a24240,13, 0x2a24278,4, 0x2a2429c,25, 0x2a24304,5, 0x2a24320,3, 0x2a24330,3, 0x2a24340,13, 0x2a24378,4, 0x2a2439c,25, 0x2a24600,4, 0x2a24c00,24, 0x2a24c80,24, 0x2a24d00,24, 0x2a24d80,24, 0x2a24e00,4, 0x2a24e20,4, 0x2a24e40,4, 0x2a24e60,4, 0x2a24e80,39, 0x2a24f20,7, 0x2a24f40,7, 0x2a24f60,7, 0x2a25000,12, 0x2a25200,1, 0x2a25218,2, 0x2a2522c,1, 0x2a25280,1, 0x2a25298,2, 0x2a252ac,1, 0x2a25300,1, 0x2a25318,2, 0x2a2532c,1, 0x2a25380,1, 0x2a25398,2, 0x2a253ac,1, 0x2a25400,4, 0x2a25420,2, 0x2a2542c,1, 0x2a25480,4, 0x2a254a0,2, 0x2a254ac,1, 0x2a25500,4, 0x2a25520,2, 0x2a2552c,1, 0x2a25580,4, 0x2a255a0,2, 0x2a255ac,1, 0x2a25600,4, 0x2a25640,4, 0x2a25680,4, 0x2a256c0,4, 0x2a25700,7, 0x2a25720,7, 0x2a25740,7, 0x2a25760,7, 0x2a25780,4, 0x2a2579c,11, 0x2a257d0,2, 0x2a257e0,2, 0x2a257f0,2, 0x2a25900,44, 0x2a26000,7, 0x2a26020,4, 0x2a26040,4, 0x2a26060,7, 0x2a26080,7, 0x2a260a0,4, 0x2a260c0,4, 0x2a260e0,7, 0x2a26100,7, 0x2a26120,4, 0x2a26140,4, 0x2a26160,7, 0x2a26180,7, 0x2a261a0,4, 0x2a261c0,4, 0x2a261e0,7, 0x2a26200,32, 0x2a26b00,1, 0x2a26b20,1, 0x2a26b28,4, 0x2a26b40,1, 0x2a26b60,1, 0x2a26b68,4, 0x2a26b80,1, 0x2a26ba0,1, 0x2a26ba8,4, 0x2a26bc0,1, 0x2a26be0,1, 0x2a26be8,4, 0x2a26c00,7, 0x2a26c20,1, 0x2a26c54,18, 0x2a26ca0,1, 0x2a26cd4,18, 0x2a26d20,1, 0x2a26d54,18, 0x2a26da0,1, 0x2a26dd4,12, 0x2a26e08,6, 0x2a27100,7, 0x2a27120,7, 0x2a27140,7, 0x2a27160,7, 0x2a27180,3, 0x2a28000,10, 0x2a28080,3, 0x2a280c0,1, 0x2a28100,21, 0x2a28180,13, 0x2a281c4,7, 0x2a281e4,7, 0x2a28204,7, 0x2a28224,8, 0x2a29000,7, 0x2a29030,2, 0x2a29040,7, 0x2a29070,2, 0x2a29100,2, 0x2a29120,2, 0x2a29140,2, 0x2a29160,2, 0x2a29180,9, 0x2a29200,7, 0x2a29230,2, 0x2a29240,7, 0x2a29270,2, 0x2a29300,2, 0x2a29320,2, 0x2a29340,2, 0x2a29360,2, 0x2a29380,9, 0x2a29400,11, 0x2a29500,11, 0x2a2a000,3, 0x2a2a010,2, 0x2a2a01c,5, 0x2a2a040,8, 0x2a2a080,3, 0x2a2a090,2, 0x2a2a09c,5, 0x2a2a0c0,8, 0x2a2a100,3, 0x2a2a110,2, 0x2a2a11c,5, 0x2a2a140,8, 0x2a2a180,3, 0x2a2a190,2, 0x2a2a19c,5, 0x2a2a1c0,8, 0x2a2a200,7, 0x2a2a220,12, 0x2a2a280,7, 0x2a2a2a0,12, 0x2a2a300,3, 0x2a2a310,1, 0x2a2a400,3, 0x2a2a410,2, 0x2a2a41c,5, 0x2a2a440,8, 0x2a2a480,3, 0x2a2a490,2, 0x2a2a49c,5, 0x2a2a4c0,8, 0x2a2a500,3, 0x2a2a510,2, 0x2a2a51c,5, 0x2a2a540,8, 0x2a2a580,3, 0x2a2a590,2, 0x2a2a59c,5, 0x2a2a5c0,8, 0x2a2a600,7, 0x2a2a620,12, 0x2a2a680,7, 0x2a2a6a0,12, 0x2a2a700,3, 0x2a2a710,1, 0x2a2a804,1, 0x2a2a824,21, 0x2a2a880,16, 0x2a2a900,5, 0x2a2a920,11, 0x2a2a950,9, 0x2a2a980,22, 0x2a2aa00,22, 0x2a2aa80,22, 0x2a2ab00,22, 0x2a2ab80,22, 0x2a2ac00,22, 0x2a2ac80,22, 0x2a2ad00,22, 0x2a2ad80,3, 0x2a2c000,16, 0x2a2c080,11, 0x2a2c100,11, 0x2a2c204,1, 0x2a2c224,21, 0x2a2c280,16, 0x2a2c300,11, 0x2a2c340,11, 0x2a2c800,21, 0x2a2c860,5, 0x2a2c880,6, 0x2a2c8a0,5, 0x2a2c8c0,6, 0x2a2c900,21, 0x2a2c960,5, 0x2a2c980,6, 0x2a2c9a0,5, 0x2a2c9c0,6, 0x2a2ca00,21, 0x2a2ca60,5, 0x2a2ca80,6, 0x2a2caa0,5, 0x2a2cac0,6, 0x2a2cb00,21, 0x2a2cb60,5, 0x2a2cb80,6, 0x2a2cba0,5, 0x2a2cbc0,6, 0x2a2cc00,9, 0x2a2cc48,7, 0x2a2cc68,2, 0x2a2cc74,9, 0x2a2cc9c,2, 0x2a2cd00,14, 0x2a2cd40,14, 0x2a2cd80,28, 0x2a2ce00,19, 0x2a2ce50,3, 0x2a2ce60,25, 0x2a2cec8,1, 0x2a2ced0,2, 0x2a2cee0,7, 0x2a2cf00,1, 0x2a2cf08,2, 0x2a2cffc,20, 0x2a2d050,25, 0x2a2d100,19, 0x2a2d150,25, 0x2a2d200,19, 0x2a2d250,25, 0x2a2d300,19, 0x2a2d350,25, 0x2a2d400,19, 0x2a2d450,25, 0x2a2d500,19, 0x2a2d550,25, 0x2a2d600,19, 0x2a2d650,25, 0x2a2d700,19, 0x2a2d750,25, 0x2a2d800,19, 0x2a2d850,25, 0x2a2d904,1, 0x2a2d914,10, 0x2a2d948,11, 0x2a2d980,2, 0x2a2d9a0,6, 0x2a2d9c0,2, 0x2a2d9cc,2, 0x2a2e000,35, 0x2a2ea00,10, 0x2a2ea80,3, 0x2a2eb00,6, 0x2a2f000,1, 0x2a2f008,5, 0x2a2f038,1, 0x2a2f044,1, 0x2a2f050,2, 0x2a2f100,13, 0x2a2f140,11, 0x2a2f170,12, 0x2a2f1a4,1, 0x2a2f200,104, 0x2a2f400,104, 0x2a2f600,104, 0x2a2f800,104, 0x2a30000,13, 0x2a30040,2, 0x2a30054,4, 0x2a30080,27, 0x2a30100,12, 0x2a30140,14, 0x2a30180,28, 0x2a30200,6, 0x2a30240,6, 0x2a3025c,3, 0x2a30280,5, 0x2a302a0,8, 0x2a30400,14, 0x2a30440,14, 0x2a30480,14, 0x2a304c0,14, 0x2a30540,3, 0x2a30600,7, 0x2a30620,14, 0x2a30680,5, 0x2a306a0,7, 0x2a30800,13, 0x2a30840,2, 0x2a30854,4, 0x2a30880,27, 0x2a30900,12, 0x2a30940,14, 0x2a30980,28, 0x2a30a00,6, 0x2a30a40,6, 0x2a30a5c,3, 0x2a30a80,5, 0x2a30aa0,8, 0x2a30c00,14, 0x2a30c40,14, 0x2a30c80,14, 0x2a30cc0,14, 0x2a30d40,3, 0x2a30e00,7, 0x2a30e20,14, 0x2a30e80,5, 0x2a30ea0,7, 0x2a31000,13, 0x2a31040,2, 0x2a31054,4, 0x2a31080,27, 0x2a31100,12, 0x2a31140,14, 0x2a31180,28, 0x2a31200,6, 0x2a31240,6, 0x2a3125c,3, 0x2a31280,5, 0x2a312a0,8, 0x2a31400,14, 0x2a31440,14, 0x2a31480,14, 0x2a314c0,14, 0x2a31540,3, 0x2a31600,7, 0x2a31620,14, 0x2a31680,5, 0x2a316a0,7, 0x2a31800,13, 0x2a31840,2, 0x2a31854,4, 0x2a31880,27, 0x2a31900,12, 0x2a31940,14, 0x2a31980,28, 0x2a31a00,6, 0x2a31a40,6, 0x2a31a5c,3, 0x2a31a80,5, 0x2a31aa0,8, 0x2a31c00,14, 0x2a31c40,14, 0x2a31c80,14, 0x2a31cc0,14, 0x2a31d40,3, 0x2a31e00,7, 0x2a31e20,14, 0x2a31e80,5, 0x2a31ea0,7, 0x2a32000,8, 0x2a32040,8, 0x2a32080,1, 0x2a32098,6, 0x2a32100,10, 0x2a32140,3, 0x2a32150,2, 0x2a32180,2, 0x2a32200,6, 0x2a32220,18, 0x2a32280,4, 0x2a32300,8, 0x2a32400,2, 0x2a32480,2, 0x2a32800,28, 0x2a329f0,4, 0x2a33000,40, 0x2a33100,64, 0x2a33800,56, 0x2a33be0,8, 0x2a34000,13, 0x2a34040,2, 0x2a34054,4, 0x2a34080,27, 0x2a34100,12, 0x2a34140,14, 0x2a34180,28, 0x2a34200,6, 0x2a34240,6, 0x2a3425c,3, 0x2a34280,5, 0x2a342a0,8, 0x2a34400,14, 0x2a34440,14, 0x2a34480,14, 0x2a344c0,14, 0x2a34540,3, 0x2a34600,7, 0x2a34620,14, 0x2a34680,5, 0x2a346a0,7, 0x2a34800,13, 0x2a34840,2, 0x2a34854,4, 0x2a34880,27, 0x2a34900,12, 0x2a34940,14, 0x2a34980,28, 0x2a34a00,6, 0x2a34a40,6, 0x2a34a5c,3, 0x2a34a80,5, 0x2a34aa0,8, 0x2a34c00,14, 0x2a34c40,14, 0x2a34c80,14, 0x2a34cc0,14, 0x2a34d40,3, 0x2a34e00,7, 0x2a34e20,14, 0x2a34e80,5, 0x2a34ea0,7, 0x2a35000,13, 0x2a35040,2, 0x2a35054,4, 0x2a35080,27, 0x2a35100,12, 0x2a35140,14, 0x2a35180,28, 0x2a35200,6, 0x2a35240,6, 0x2a3525c,3, 0x2a35280,5, 0x2a352a0,8, 0x2a35400,14, 0x2a35440,14, 0x2a35480,14, 0x2a354c0,14, 0x2a35540,3, 0x2a35600,7, 0x2a35620,14, 0x2a35680,5, 0x2a356a0,7, 0x2a35800,13, 0x2a35840,2, 0x2a35854,4, 0x2a35880,27, 0x2a35900,12, 0x2a35940,14, 0x2a35980,28, 0x2a35a00,6, 0x2a35a40,6, 0x2a35a5c,3, 0x2a35a80,5, 0x2a35aa0,8, 0x2a35c00,14, 0x2a35c40,14, 0x2a35c80,14, 0x2a35cc0,14, 0x2a35d40,3, 0x2a35e00,7, 0x2a35e20,14, 0x2a35e80,5, 0x2a35ea0,7, 0x2a36000,8, 0x2a36040,8, 0x2a36080,1, 0x2a36098,6, 0x2a36100,10, 0x2a36140,3, 0x2a36150,2, 0x2a36180,2, 0x2a36200,6, 0x2a36220,18, 0x2a36280,4, 0x2a36300,8, 0x2a36400,2, 0x2a36480,2, 0x2a36800,28, 0x2a369f0,4, 0x2a37000,40, 0x2a37100,64, 0x2a37800,56, 0x2a37be0,8, 0x2a38000,2, 0x2a3800c,2, 0x2a38040,7, 0x2a38100,3, 0x2a38110,3, 0x2a38120,5, 0x2a38200,6, 0x2a38240,5, 0x2a38400,2, 0x2a3840c,2, 0x2a38440,7, 0x2a38500,3, 0x2a38510,3, 0x2a38520,5, 0x2a38600,6, 0x2a38640,5, 0x2a38800,2, 0x2a3880c,2, 0x2a38840,7, 0x2a38900,3, 0x2a38910,3, 0x2a38920,5, 0x2a38a00,6, 0x2a38a40,5, 0x2a38c00,2, 0x2a38c0c,2, 0x2a38c40,7, 0x2a38d00,3, 0x2a38d10,3, 0x2a38d20,5, 0x2a38e00,6, 0x2a38e40,5, 0x2a39000,2, 0x2a3900c,2, 0x2a39040,7, 0x2a39100,3, 0x2a39110,3, 0x2a39120,5, 0x2a39200,6, 0x2a39240,5, 0x2a39400,2, 0x2a3940c,2, 0x2a39440,7, 0x2a39500,3, 0x2a39510,3, 0x2a39520,5, 0x2a39600,6, 0x2a39640,5, 0x2a39800,2, 0x2a3980c,2, 0x2a39840,7, 0x2a39900,3, 0x2a39910,3, 0x2a39920,5, 0x2a39a00,6, 0x2a39a40,5, 0x2a39c00,2, 0x2a39c0c,2, 0x2a39c40,7, 0x2a39d00,3, 0x2a39d10,3, 0x2a39d20,5, 0x2a39e00,6, 0x2a39e40,5, 0x2a3a000,5, 0x2a3a040,9, 0x2a3a100,3, 0x2a3a200,1, 0x2a3a210,1, 0x2a3a220,1, 0x2a3a230,1, 0x2a3a240,1, 0x2a3a300,3, 0x2a3a314,1, 0x2a3a320,4, 0x2a3a400,5, 0x2a3a440,5, 0x2a3b000,80, 0x2a3b200,1, 0x2a40004,5, 0x2a40020,3, 0x2a40030,3, 0x2a40040,13, 0x2a40078,4, 0x2a4009c,25, 0x2a40104,5, 0x2a40120,3, 0x2a40130,3, 0x2a40140,13, 0x2a40178,4, 0x2a4019c,25, 0x2a40204,5, 0x2a40220,3, 0x2a40230,3, 0x2a40240,13, 0x2a40278,4, 0x2a4029c,25, 0x2a40304,5, 0x2a40320,3, 0x2a40330,3, 0x2a40340,13, 0x2a40378,4, 0x2a4039c,25, 0x2a40600,4, 0x2a40c00,24, 0x2a40c80,24, 0x2a40d00,24, 0x2a40d80,24, 0x2a40e00,4, 0x2a40e20,4, 0x2a40e40,4, 0x2a40e60,4, 0x2a40e80,39, 0x2a40f20,7, 0x2a40f40,7, 0x2a40f60,7, 0x2a41000,12, 0x2a41200,1, 0x2a41218,2, 0x2a4122c,1, 0x2a41280,1, 0x2a41298,2, 0x2a412ac,1, 0x2a41300,1, 0x2a41318,2, 0x2a4132c,1, 0x2a41380,1, 0x2a41398,2, 0x2a413ac,1, 0x2a41400,4, 0x2a41420,2, 0x2a4142c,1, 0x2a41480,4, 0x2a414a0,2, 0x2a414ac,1, 0x2a41500,4, 0x2a41520,2, 0x2a4152c,1, 0x2a41580,4, 0x2a415a0,2, 0x2a415ac,1, 0x2a41600,4, 0x2a41640,4, 0x2a41680,4, 0x2a416c0,4, 0x2a41700,7, 0x2a41720,7, 0x2a41740,7, 0x2a41760,7, 0x2a41780,4, 0x2a4179c,11, 0x2a417d0,2, 0x2a417e0,2, 0x2a417f0,2, 0x2a41900,44, 0x2a42000,7, 0x2a42020,4, 0x2a42040,4, 0x2a42060,7, 0x2a42080,7, 0x2a420a0,4, 0x2a420c0,4, 0x2a420e0,7, 0x2a42100,7, 0x2a42120,4, 0x2a42140,4, 0x2a42160,7, 0x2a42180,7, 0x2a421a0,4, 0x2a421c0,4, 0x2a421e0,7, 0x2a42200,32, 0x2a42b00,1, 0x2a42b20,1, 0x2a42b28,4, 0x2a42b40,1, 0x2a42b60,1, 0x2a42b68,4, 0x2a42b80,1, 0x2a42ba0,1, 0x2a42ba8,4, 0x2a42bc0,1, 0x2a42be0,1, 0x2a42be8,4, 0x2a42c00,7, 0x2a42c20,1, 0x2a42c54,18, 0x2a42ca0,1, 0x2a42cd4,18, 0x2a42d20,1, 0x2a42d54,18, 0x2a42da0,1, 0x2a42dd4,12, 0x2a42e08,6, 0x2a43100,7, 0x2a43120,7, 0x2a43140,7, 0x2a43160,7, 0x2a43180,3, 0x2a44004,5, 0x2a44020,3, 0x2a44030,3, 0x2a44040,13, 0x2a44078,4, 0x2a4409c,25, 0x2a44104,5, 0x2a44120,3, 0x2a44130,3, 0x2a44140,13, 0x2a44178,4, 0x2a4419c,25, 0x2a44204,5, 0x2a44220,3, 0x2a44230,3, 0x2a44240,13, 0x2a44278,4, 0x2a4429c,25, 0x2a44304,5, 0x2a44320,3, 0x2a44330,3, 0x2a44340,13, 0x2a44378,4, 0x2a4439c,25, 0x2a44600,4, 0x2a44c00,24, 0x2a44c80,24, 0x2a44d00,24, 0x2a44d80,24, 0x2a44e00,4, 0x2a44e20,4, 0x2a44e40,4, 0x2a44e60,4, 0x2a44e80,39, 0x2a44f20,7, 0x2a44f40,7, 0x2a44f60,7, 0x2a45000,12, 0x2a45200,1, 0x2a45218,2, 0x2a4522c,1, 0x2a45280,1, 0x2a45298,2, 0x2a452ac,1, 0x2a45300,1, 0x2a45318,2, 0x2a4532c,1, 0x2a45380,1, 0x2a45398,2, 0x2a453ac,1, 0x2a45400,4, 0x2a45420,2, 0x2a4542c,1, 0x2a45480,4, 0x2a454a0,2, 0x2a454ac,1, 0x2a45500,4, 0x2a45520,2, 0x2a4552c,1, 0x2a45580,4, 0x2a455a0,2, 0x2a455ac,1, 0x2a45600,4, 0x2a45640,4, 0x2a45680,4, 0x2a456c0,4, 0x2a45700,7, 0x2a45720,7, 0x2a45740,7, 0x2a45760,7, 0x2a45780,4, 0x2a4579c,11, 0x2a457d0,2, 0x2a457e0,2, 0x2a457f0,2, 0x2a45900,44, 0x2a46000,7, 0x2a46020,4, 0x2a46040,4, 0x2a46060,7, 0x2a46080,7, 0x2a460a0,4, 0x2a460c0,4, 0x2a460e0,7, 0x2a46100,7, 0x2a46120,4, 0x2a46140,4, 0x2a46160,7, 0x2a46180,7, 0x2a461a0,4, 0x2a461c0,4, 0x2a461e0,7, 0x2a46200,32, 0x2a46b00,1, 0x2a46b20,1, 0x2a46b28,4, 0x2a46b40,1, 0x2a46b60,1, 0x2a46b68,4, 0x2a46b80,1, 0x2a46ba0,1, 0x2a46ba8,4, 0x2a46bc0,1, 0x2a46be0,1, 0x2a46be8,4, 0x2a46c00,7, 0x2a46c20,1, 0x2a46c54,18, 0x2a46ca0,1, 0x2a46cd4,18, 0x2a46d20,1, 0x2a46d54,18, 0x2a46da0,1, 0x2a46dd4,12, 0x2a46e08,6, 0x2a47100,7, 0x2a47120,7, 0x2a47140,7, 0x2a47160,7, 0x2a47180,3, 0x2a48000,10, 0x2a48080,3, 0x2a480c0,1, 0x2a48100,21, 0x2a48180,13, 0x2a481c4,7, 0x2a481e4,7, 0x2a48204,7, 0x2a48224,8, 0x2a49000,7, 0x2a49030,2, 0x2a49040,7, 0x2a49070,2, 0x2a49100,2, 0x2a49120,2, 0x2a49140,2, 0x2a49160,2, 0x2a49180,9, 0x2a49200,7, 0x2a49230,2, 0x2a49240,7, 0x2a49270,2, 0x2a49300,2, 0x2a49320,2, 0x2a49340,2, 0x2a49360,2, 0x2a49380,9, 0x2a49400,11, 0x2a49500,11, 0x2a4a000,3, 0x2a4a010,2, 0x2a4a01c,5, 0x2a4a040,8, 0x2a4a080,3, 0x2a4a090,2, 0x2a4a09c,5, 0x2a4a0c0,8, 0x2a4a100,3, 0x2a4a110,2, 0x2a4a11c,5, 0x2a4a140,8, 0x2a4a180,3, 0x2a4a190,2, 0x2a4a19c,5, 0x2a4a1c0,8, 0x2a4a200,7, 0x2a4a220,12, 0x2a4a280,7, 0x2a4a2a0,12, 0x2a4a300,3, 0x2a4a310,1, 0x2a4a400,3, 0x2a4a410,2, 0x2a4a41c,5, 0x2a4a440,8, 0x2a4a480,3, 0x2a4a490,2, 0x2a4a49c,5, 0x2a4a4c0,8, 0x2a4a500,3, 0x2a4a510,2, 0x2a4a51c,5, 0x2a4a540,8, 0x2a4a580,3, 0x2a4a590,2, 0x2a4a59c,5, 0x2a4a5c0,8, 0x2a4a600,7, 0x2a4a620,12, 0x2a4a680,7, 0x2a4a6a0,12, 0x2a4a700,3, 0x2a4a710,1, 0x2a4a804,1, 0x2a4a824,21, 0x2a4a880,16, 0x2a4a900,5, 0x2a4a920,11, 0x2a4a950,9, 0x2a4a980,22, 0x2a4aa00,22, 0x2a4aa80,22, 0x2a4ab00,22, 0x2a4ab80,22, 0x2a4ac00,22, 0x2a4ac80,22, 0x2a4ad00,22, 0x2a4ad80,3, 0x2a4c000,16, 0x2a4c080,11, 0x2a4c100,11, 0x2a4c204,1, 0x2a4c224,21, 0x2a4c280,16, 0x2a4c300,11, 0x2a4c340,11, 0x2a4c800,21, 0x2a4c860,5, 0x2a4c880,6, 0x2a4c8a0,5, 0x2a4c8c0,6, 0x2a4c900,21, 0x2a4c960,5, 0x2a4c980,6, 0x2a4c9a0,5, 0x2a4c9c0,6, 0x2a4ca00,21, 0x2a4ca60,5, 0x2a4ca80,6, 0x2a4caa0,5, 0x2a4cac0,6, 0x2a4cb00,21, 0x2a4cb60,5, 0x2a4cb80,6, 0x2a4cba0,5, 0x2a4cbc0,6, 0x2a4cc00,9, 0x2a4cc48,7, 0x2a4cc68,2, 0x2a4cc74,9, 0x2a4cc9c,2, 0x2a4cd00,14, 0x2a4cd40,14, 0x2a4cd80,28, 0x2a4ce00,19, 0x2a4ce50,3, 0x2a4ce60,25, 0x2a4cec8,1, 0x2a4ced0,2, 0x2a4cee0,7, 0x2a4cf00,1, 0x2a4cf08,2, 0x2a4cffc,20, 0x2a4d050,25, 0x2a4d100,19, 0x2a4d150,25, 0x2a4d200,19, 0x2a4d250,25, 0x2a4d300,19, 0x2a4d350,25, 0x2a4d400,19, 0x2a4d450,25, 0x2a4d500,19, 0x2a4d550,25, 0x2a4d600,19, 0x2a4d650,25, 0x2a4d700,19, 0x2a4d750,25, 0x2a4d800,19, 0x2a4d850,25, 0x2a4d904,1, 0x2a4d914,10, 0x2a4d948,11, 0x2a4d980,2, 0x2a4d9a0,6, 0x2a4d9c0,2, 0x2a4d9cc,2, 0x2a4e000,35, 0x2a4ea00,10, 0x2a4ea80,3, 0x2a4eb00,6, 0x2a4f000,1, 0x2a4f008,5, 0x2a4f038,1, 0x2a4f044,1, 0x2a4f050,2, 0x2a4f100,13, 0x2a4f140,11, 0x2a4f170,12, 0x2a4f1a4,1, 0x2a4f200,104, 0x2a4f400,104, 0x2a4f600,104, 0x2a4f800,104, 0x2a50000,13, 0x2a50040,2, 0x2a50054,4, 0x2a50080,27, 0x2a50100,12, 0x2a50140,14, 0x2a50180,28, 0x2a50200,6, 0x2a50240,6, 0x2a5025c,3, 0x2a50280,5, 0x2a502a0,8, 0x2a50400,14, 0x2a50440,14, 0x2a50480,14, 0x2a504c0,14, 0x2a50540,3, 0x2a50600,7, 0x2a50620,14, 0x2a50680,5, 0x2a506a0,7, 0x2a50800,13, 0x2a50840,2, 0x2a50854,4, 0x2a50880,27, 0x2a50900,12, 0x2a50940,14, 0x2a50980,28, 0x2a50a00,6, 0x2a50a40,6, 0x2a50a5c,3, 0x2a50a80,5, 0x2a50aa0,8, 0x2a50c00,14, 0x2a50c40,14, 0x2a50c80,14, 0x2a50cc0,14, 0x2a50d40,3, 0x2a50e00,7, 0x2a50e20,14, 0x2a50e80,5, 0x2a50ea0,7, 0x2a51000,13, 0x2a51040,2, 0x2a51054,4, 0x2a51080,27, 0x2a51100,12, 0x2a51140,14, 0x2a51180,28, 0x2a51200,6, 0x2a51240,6, 0x2a5125c,3, 0x2a51280,5, 0x2a512a0,8, 0x2a51400,14, 0x2a51440,14, 0x2a51480,14, 0x2a514c0,14, 0x2a51540,3, 0x2a51600,7, 0x2a51620,14, 0x2a51680,5, 0x2a516a0,7, 0x2a51800,13, 0x2a51840,2, 0x2a51854,4, 0x2a51880,27, 0x2a51900,12, 0x2a51940,14, 0x2a51980,28, 0x2a51a00,6, 0x2a51a40,6, 0x2a51a5c,3, 0x2a51a80,5, 0x2a51aa0,8, 0x2a51c00,14, 0x2a51c40,14, 0x2a51c80,14, 0x2a51cc0,14, 0x2a51d40,3, 0x2a51e00,7, 0x2a51e20,14, 0x2a51e80,5, 0x2a51ea0,7, 0x2a52000,8, 0x2a52040,8, 0x2a52080,1, 0x2a52098,6, 0x2a52100,10, 0x2a52140,3, 0x2a52150,2, 0x2a52180,2, 0x2a52200,6, 0x2a52220,18, 0x2a52280,4, 0x2a52300,8, 0x2a52400,2, 0x2a52480,2, 0x2a52800,28, 0x2a529f0,4, 0x2a53000,40, 0x2a53100,64, 0x2a53800,56, 0x2a53be0,8, 0x2a54000,13, 0x2a54040,2, 0x2a54054,4, 0x2a54080,27, 0x2a54100,12, 0x2a54140,14, 0x2a54180,28, 0x2a54200,6, 0x2a54240,6, 0x2a5425c,3, 0x2a54280,5, 0x2a542a0,8, 0x2a54400,14, 0x2a54440,14, 0x2a54480,14, 0x2a544c0,14, 0x2a54540,3, 0x2a54600,7, 0x2a54620,14, 0x2a54680,5, 0x2a546a0,7, 0x2a54800,13, 0x2a54840,2, 0x2a54854,4, 0x2a54880,27, 0x2a54900,12, 0x2a54940,14, 0x2a54980,28, 0x2a54a00,6, 0x2a54a40,6, 0x2a54a5c,3, 0x2a54a80,5, 0x2a54aa0,8, 0x2a54c00,14, 0x2a54c40,14, 0x2a54c80,14, 0x2a54cc0,14, 0x2a54d40,3, 0x2a54e00,7, 0x2a54e20,14, 0x2a54e80,5, 0x2a54ea0,7, 0x2a55000,13, 0x2a55040,2, 0x2a55054,4, 0x2a55080,27, 0x2a55100,12, 0x2a55140,14, 0x2a55180,28, 0x2a55200,6, 0x2a55240,6, 0x2a5525c,3, 0x2a55280,5, 0x2a552a0,8, 0x2a55400,14, 0x2a55440,14, 0x2a55480,14, 0x2a554c0,14, 0x2a55540,3, 0x2a55600,7, 0x2a55620,14, 0x2a55680,5, 0x2a556a0,7, 0x2a55800,13, 0x2a55840,2, 0x2a55854,4, 0x2a55880,27, 0x2a55900,12, 0x2a55940,14, 0x2a55980,28, 0x2a55a00,6, 0x2a55a40,6, 0x2a55a5c,3, 0x2a55a80,5, 0x2a55aa0,8, 0x2a55c00,14, 0x2a55c40,14, 0x2a55c80,14, 0x2a55cc0,14, 0x2a55d40,3, 0x2a55e00,7, 0x2a55e20,14, 0x2a55e80,5, 0x2a55ea0,7, 0x2a56000,8, 0x2a56040,8, 0x2a56080,1, 0x2a56098,6, 0x2a56100,10, 0x2a56140,3, 0x2a56150,2, 0x2a56180,2, 0x2a56200,6, 0x2a56220,18, 0x2a56280,4, 0x2a56300,8, 0x2a56400,2, 0x2a56480,2, 0x2a56800,28, 0x2a569f0,4, 0x2a57000,40, 0x2a57100,64, 0x2a57800,56, 0x2a57be0,8, 0x2a58000,2, 0x2a5800c,2, 0x2a58040,7, 0x2a58100,3, 0x2a58110,3, 0x2a58120,5, 0x2a58200,6, 0x2a58240,5, 0x2a58400,2, 0x2a5840c,2, 0x2a58440,7, 0x2a58500,3, 0x2a58510,3, 0x2a58520,5, 0x2a58600,6, 0x2a58640,5, 0x2a58800,2, 0x2a5880c,2, 0x2a58840,7, 0x2a58900,3, 0x2a58910,3, 0x2a58920,5, 0x2a58a00,6, 0x2a58a40,5, 0x2a58c00,2, 0x2a58c0c,2, 0x2a58c40,7, 0x2a58d00,3, 0x2a58d10,3, 0x2a58d20,5, 0x2a58e00,6, 0x2a58e40,5, 0x2a59000,2, 0x2a5900c,2, 0x2a59040,7, 0x2a59100,3, 0x2a59110,3, 0x2a59120,5, 0x2a59200,6, 0x2a59240,5, 0x2a59400,2, 0x2a5940c,2, 0x2a59440,7, 0x2a59500,3, 0x2a59510,3, 0x2a59520,5, 0x2a59600,6, 0x2a59640,5, 0x2a59800,2, 0x2a5980c,2, 0x2a59840,7, 0x2a59900,3, 0x2a59910,3, 0x2a59920,5, 0x2a59a00,6, 0x2a59a40,5, 0x2a59c00,2, 0x2a59c0c,2, 0x2a59c40,7, 0x2a59d00,3, 0x2a59d10,3, 0x2a59d20,5, 0x2a59e00,6, 0x2a59e40,5, 0x2a5a000,5, 0x2a5a040,9, 0x2a5a100,3, 0x2a5a200,1, 0x2a5a210,1, 0x2a5a220,1, 0x2a5a230,1, 0x2a5a240,1, 0x2a5a300,3, 0x2a5a314,1, 0x2a5a320,4, 0x2a5a400,5, 0x2a5a440,5, 0x2a5b000,80, 0x2a5b200,1, 0x2a60004,5, 0x2a60020,3, 0x2a60030,3, 0x2a60040,13, 0x2a60078,4, 0x2a6009c,25, 0x2a60104,5, 0x2a60120,3, 0x2a60130,3, 0x2a60140,13, 0x2a60178,4, 0x2a6019c,25, 0x2a60204,5, 0x2a60220,3, 0x2a60230,3, 0x2a60240,13, 0x2a60278,4, 0x2a6029c,25, 0x2a60304,5, 0x2a60320,3, 0x2a60330,3, 0x2a60340,13, 0x2a60378,4, 0x2a6039c,25, 0x2a60600,4, 0x2a60c00,24, 0x2a60c80,24, 0x2a60d00,24, 0x2a60d80,24, 0x2a60e00,4, 0x2a60e20,4, 0x2a60e40,4, 0x2a60e60,4, 0x2a60e80,39, 0x2a60f20,7, 0x2a60f40,7, 0x2a60f60,7, 0x2a61000,12, 0x2a61200,1, 0x2a61218,2, 0x2a6122c,1, 0x2a61280,1, 0x2a61298,2, 0x2a612ac,1, 0x2a61300,1, 0x2a61318,2, 0x2a6132c,1, 0x2a61380,1, 0x2a61398,2, 0x2a613ac,1, 0x2a61400,4, 0x2a61420,2, 0x2a6142c,1, 0x2a61480,4, 0x2a614a0,2, 0x2a614ac,1, 0x2a61500,4, 0x2a61520,2, 0x2a6152c,1, 0x2a61580,4, 0x2a615a0,2, 0x2a615ac,1, 0x2a61600,4, 0x2a61640,4, 0x2a61680,4, 0x2a616c0,4, 0x2a61700,7, 0x2a61720,7, 0x2a61740,7, 0x2a61760,7, 0x2a61780,4, 0x2a6179c,11, 0x2a617d0,2, 0x2a617e0,2, 0x2a617f0,2, 0x2a61900,44, 0x2a62000,7, 0x2a62020,4, 0x2a62040,4, 0x2a62060,7, 0x2a62080,7, 0x2a620a0,4, 0x2a620c0,4, 0x2a620e0,7, 0x2a62100,7, 0x2a62120,4, 0x2a62140,4, 0x2a62160,7, 0x2a62180,7, 0x2a621a0,4, 0x2a621c0,4, 0x2a621e0,7, 0x2a62200,32, 0x2a62b00,1, 0x2a62b20,1, 0x2a62b28,4, 0x2a62b40,1, 0x2a62b60,1, 0x2a62b68,4, 0x2a62b80,1, 0x2a62ba0,1, 0x2a62ba8,4, 0x2a62bc0,1, 0x2a62be0,1, 0x2a62be8,4, 0x2a62c00,7, 0x2a62c20,1, 0x2a62c54,18, 0x2a62ca0,1, 0x2a62cd4,18, 0x2a62d20,1, 0x2a62d54,18, 0x2a62da0,1, 0x2a62dd4,12, 0x2a62e08,6, 0x2a63100,7, 0x2a63120,7, 0x2a63140,7, 0x2a63160,7, 0x2a63180,3, 0x2a64004,5, 0x2a64020,3, 0x2a64030,3, 0x2a64040,13, 0x2a64078,4, 0x2a6409c,25, 0x2a64104,5, 0x2a64120,3, 0x2a64130,3, 0x2a64140,13, 0x2a64178,4, 0x2a6419c,25, 0x2a64204,5, 0x2a64220,3, 0x2a64230,3, 0x2a64240,13, 0x2a64278,4, 0x2a6429c,25, 0x2a64304,5, 0x2a64320,3, 0x2a64330,3, 0x2a64340,13, 0x2a64378,4, 0x2a6439c,25, 0x2a64600,4, 0x2a64c00,24, 0x2a64c80,24, 0x2a64d00,24, 0x2a64d80,24, 0x2a64e00,4, 0x2a64e20,4, 0x2a64e40,4, 0x2a64e60,4, 0x2a64e80,39, 0x2a64f20,7, 0x2a64f40,7, 0x2a64f60,7, 0x2a65000,12, 0x2a65200,1, 0x2a65218,2, 0x2a6522c,1, 0x2a65280,1, 0x2a65298,2, 0x2a652ac,1, 0x2a65300,1, 0x2a65318,2, 0x2a6532c,1, 0x2a65380,1, 0x2a65398,2, 0x2a653ac,1, 0x2a65400,4, 0x2a65420,2, 0x2a6542c,1, 0x2a65480,4, 0x2a654a0,2, 0x2a654ac,1, 0x2a65500,4, 0x2a65520,2, 0x2a6552c,1, 0x2a65580,4, 0x2a655a0,2, 0x2a655ac,1, 0x2a65600,4, 0x2a65640,4, 0x2a65680,4, 0x2a656c0,4, 0x2a65700,7, 0x2a65720,7, 0x2a65740,7, 0x2a65760,7, 0x2a65780,4, 0x2a6579c,11, 0x2a657d0,2, 0x2a657e0,2, 0x2a657f0,2, 0x2a65900,44, 0x2a66000,7, 0x2a66020,4, 0x2a66040,4, 0x2a66060,7, 0x2a66080,7, 0x2a660a0,4, 0x2a660c0,4, 0x2a660e0,7, 0x2a66100,7, 0x2a66120,4, 0x2a66140,4, 0x2a66160,7, 0x2a66180,7, 0x2a661a0,4, 0x2a661c0,4, 0x2a661e0,7, 0x2a66200,32, 0x2a66b00,1, 0x2a66b20,1, 0x2a66b28,4, 0x2a66b40,1, 0x2a66b60,1, 0x2a66b68,4, 0x2a66b80,1, 0x2a66ba0,1, 0x2a66ba8,4, 0x2a66bc0,1, 0x2a66be0,1, 0x2a66be8,4, 0x2a66c00,7, 0x2a66c20,1, 0x2a66c54,18, 0x2a66ca0,1, 0x2a66cd4,18, 0x2a66d20,1, 0x2a66d54,18, 0x2a66da0,1, 0x2a66dd4,12, 0x2a66e08,6, 0x2a67100,7, 0x2a67120,7, 0x2a67140,7, 0x2a67160,7, 0x2a67180,3, 0x2a68000,10, 0x2a68080,3, 0x2a680c0,1, 0x2a68100,21, 0x2a68180,13, 0x2a681c4,7, 0x2a681e4,7, 0x2a68204,7, 0x2a68224,8, 0x2a69000,7, 0x2a69030,2, 0x2a69040,7, 0x2a69070,2, 0x2a69100,2, 0x2a69120,2, 0x2a69140,2, 0x2a69160,2, 0x2a69180,9, 0x2a69200,7, 0x2a69230,2, 0x2a69240,7, 0x2a69270,2, 0x2a69300,2, 0x2a69320,2, 0x2a69340,2, 0x2a69360,2, 0x2a69380,9, 0x2a69400,11, 0x2a69500,11, 0x2a6a000,3, 0x2a6a010,2, 0x2a6a01c,5, 0x2a6a040,8, 0x2a6a080,3, 0x2a6a090,2, 0x2a6a09c,5, 0x2a6a0c0,8, 0x2a6a100,3, 0x2a6a110,2, 0x2a6a11c,5, 0x2a6a140,8, 0x2a6a180,3, 0x2a6a190,2, 0x2a6a19c,5, 0x2a6a1c0,8, 0x2a6a200,7, 0x2a6a220,12, 0x2a6a280,7, 0x2a6a2a0,12, 0x2a6a300,3, 0x2a6a310,1, 0x2a6a400,3, 0x2a6a410,2, 0x2a6a41c,5, 0x2a6a440,8, 0x2a6a480,3, 0x2a6a490,2, 0x2a6a49c,5, 0x2a6a4c0,8, 0x2a6a500,3, 0x2a6a510,2, 0x2a6a51c,5, 0x2a6a540,8, 0x2a6a580,3, 0x2a6a590,2, 0x2a6a59c,5, 0x2a6a5c0,8, 0x2a6a600,7, 0x2a6a620,12, 0x2a6a680,7, 0x2a6a6a0,12, 0x2a6a700,3, 0x2a6a710,1, 0x2a6a804,1, 0x2a6a824,21, 0x2a6a880,16, 0x2a6a900,5, 0x2a6a920,11, 0x2a6a950,9, 0x2a6a980,22, 0x2a6aa00,22, 0x2a6aa80,22, 0x2a6ab00,22, 0x2a6ab80,22, 0x2a6ac00,22, 0x2a6ac80,22, 0x2a6ad00,22, 0x2a6ad80,3, 0x2a6c000,16, 0x2a6c080,11, 0x2a6c100,11, 0x2a6c204,1, 0x2a6c224,21, 0x2a6c280,16, 0x2a6c300,11, 0x2a6c340,11, 0x2a6c800,21, 0x2a6c860,5, 0x2a6c880,6, 0x2a6c8a0,5, 0x2a6c8c0,6, 0x2a6c900,21, 0x2a6c960,5, 0x2a6c980,6, 0x2a6c9a0,5, 0x2a6c9c0,6, 0x2a6ca00,21, 0x2a6ca60,5, 0x2a6ca80,6, 0x2a6caa0,5, 0x2a6cac0,6, 0x2a6cb00,21, 0x2a6cb60,5, 0x2a6cb80,6, 0x2a6cba0,5, 0x2a6cbc0,6, 0x2a6cc00,9, 0x2a6cc48,7, 0x2a6cc68,2, 0x2a6cc74,9, 0x2a6cc9c,2, 0x2a6cd00,14, 0x2a6cd40,14, 0x2a6cd80,28, 0x2a6ce00,19, 0x2a6ce50,3, 0x2a6ce60,25, 0x2a6cec8,1, 0x2a6ced0,2, 0x2a6cee0,7, 0x2a6cf00,1, 0x2a6cf08,2, 0x2a6cffc,20, 0x2a6d050,25, 0x2a6d100,19, 0x2a6d150,25, 0x2a6d200,19, 0x2a6d250,25, 0x2a6d300,19, 0x2a6d350,25, 0x2a6d400,19, 0x2a6d450,25, 0x2a6d500,19, 0x2a6d550,25, 0x2a6d600,19, 0x2a6d650,25, 0x2a6d700,19, 0x2a6d750,25, 0x2a6d800,19, 0x2a6d850,25, 0x2a6d904,1, 0x2a6d914,10, 0x2a6d948,11, 0x2a6d980,2, 0x2a6d9a0,6, 0x2a6d9c0,2, 0x2a6d9cc,2, 0x2a6e000,35, 0x2a6ea00,10, 0x2a6ea80,3, 0x2a6eb00,6, 0x2a6f000,1, 0x2a6f008,5, 0x2a6f038,1, 0x2a6f044,1, 0x2a6f050,2, 0x2a6f100,13, 0x2a6f140,11, 0x2a6f170,12, 0x2a6f1a4,1, 0x2a6f200,104, 0x2a6f400,104, 0x2a6f600,104, 0x2a6f800,104, 0x2a70000,13, 0x2a70040,2, 0x2a70054,4, 0x2a70080,27, 0x2a70100,12, 0x2a70140,14, 0x2a70180,28, 0x2a70200,6, 0x2a70240,6, 0x2a7025c,3, 0x2a70280,5, 0x2a702a0,8, 0x2a70400,14, 0x2a70440,14, 0x2a70480,14, 0x2a704c0,14, 0x2a70540,3, 0x2a70600,7, 0x2a70620,14, 0x2a70680,5, 0x2a706a0,7, 0x2a70800,13, 0x2a70840,2, 0x2a70854,4, 0x2a70880,27, 0x2a70900,12, 0x2a70940,14, 0x2a70980,28, 0x2a70a00,6, 0x2a70a40,6, 0x2a70a5c,3, 0x2a70a80,5, 0x2a70aa0,8, 0x2a70c00,14, 0x2a70c40,14, 0x2a70c80,14, 0x2a70cc0,14, 0x2a70d40,3, 0x2a70e00,7, 0x2a70e20,14, 0x2a70e80,5, 0x2a70ea0,7, 0x2a71000,13, 0x2a71040,2, 0x2a71054,4, 0x2a71080,27, 0x2a71100,12, 0x2a71140,14, 0x2a71180,28, 0x2a71200,6, 0x2a71240,6, 0x2a7125c,3, 0x2a71280,5, 0x2a712a0,8, 0x2a71400,14, 0x2a71440,14, 0x2a71480,14, 0x2a714c0,14, 0x2a71540,3, 0x2a71600,7, 0x2a71620,14, 0x2a71680,5, 0x2a716a0,7, 0x2a71800,13, 0x2a71840,2, 0x2a71854,4, 0x2a71880,27, 0x2a71900,12, 0x2a71940,14, 0x2a71980,28, 0x2a71a00,6, 0x2a71a40,6, 0x2a71a5c,3, 0x2a71a80,5, 0x2a71aa0,8, 0x2a71c00,14, 0x2a71c40,14, 0x2a71c80,14, 0x2a71cc0,14, 0x2a71d40,3, 0x2a71e00,7, 0x2a71e20,14, 0x2a71e80,5, 0x2a71ea0,7, 0x2a72000,8, 0x2a72040,8, 0x2a72080,1, 0x2a72098,6, 0x2a72100,10, 0x2a72140,3, 0x2a72150,2, 0x2a72180,2, 0x2a72200,6, 0x2a72220,18, 0x2a72280,4, 0x2a72300,8, 0x2a72400,2, 0x2a72480,2, 0x2a72800,28, 0x2a729f0,4, 0x2a73000,40, 0x2a73100,64, 0x2a73800,56, 0x2a73be0,8, 0x2a74000,13, 0x2a74040,2, 0x2a74054,4, 0x2a74080,27, 0x2a74100,12, 0x2a74140,14, 0x2a74180,28, 0x2a74200,6, 0x2a74240,6, 0x2a7425c,3, 0x2a74280,5, 0x2a742a0,8, 0x2a74400,14, 0x2a74440,14, 0x2a74480,14, 0x2a744c0,14, 0x2a74540,3, 0x2a74600,7, 0x2a74620,14, 0x2a74680,5, 0x2a746a0,7, 0x2a74800,13, 0x2a74840,2, 0x2a74854,4, 0x2a74880,27, 0x2a74900,12, 0x2a74940,14, 0x2a74980,28, 0x2a74a00,6, 0x2a74a40,6, 0x2a74a5c,3, 0x2a74a80,5, 0x2a74aa0,8, 0x2a74c00,14, 0x2a74c40,14, 0x2a74c80,14, 0x2a74cc0,14, 0x2a74d40,3, 0x2a74e00,7, 0x2a74e20,14, 0x2a74e80,5, 0x2a74ea0,7, 0x2a75000,13, 0x2a75040,2, 0x2a75054,4, 0x2a75080,27, 0x2a75100,12, 0x2a75140,14, 0x2a75180,28, 0x2a75200,6, 0x2a75240,6, 0x2a7525c,3, 0x2a75280,5, 0x2a752a0,8, 0x2a75400,14, 0x2a75440,14, 0x2a75480,14, 0x2a754c0,14, 0x2a75540,3, 0x2a75600,7, 0x2a75620,14, 0x2a75680,5, 0x2a756a0,7, 0x2a75800,13, 0x2a75840,2, 0x2a75854,4, 0x2a75880,27, 0x2a75900,12, 0x2a75940,14, 0x2a75980,28, 0x2a75a00,6, 0x2a75a40,6, 0x2a75a5c,3, 0x2a75a80,5, 0x2a75aa0,8, 0x2a75c00,14, 0x2a75c40,14, 0x2a75c80,14, 0x2a75cc0,14, 0x2a75d40,3, 0x2a75e00,7, 0x2a75e20,14, 0x2a75e80,5, 0x2a75ea0,7, 0x2a76000,8, 0x2a76040,8, 0x2a76080,1, 0x2a76098,6, 0x2a76100,10, 0x2a76140,3, 0x2a76150,2, 0x2a76180,2, 0x2a76200,6, 0x2a76220,18, 0x2a76280,4, 0x2a76300,8, 0x2a76400,2, 0x2a76480,2, 0x2a76800,28, 0x2a769f0,4, 0x2a77000,40, 0x2a77100,64, 0x2a77800,56, 0x2a77be0,8, 0x2a78000,2, 0x2a7800c,2, 0x2a78040,7, 0x2a78100,3, 0x2a78110,3, 0x2a78120,5, 0x2a78200,6, 0x2a78240,5, 0x2a78400,2, 0x2a7840c,2, 0x2a78440,7, 0x2a78500,3, 0x2a78510,3, 0x2a78520,5, 0x2a78600,6, 0x2a78640,5, 0x2a78800,2, 0x2a7880c,2, 0x2a78840,7, 0x2a78900,3, 0x2a78910,3, 0x2a78920,5, 0x2a78a00,6, 0x2a78a40,5, 0x2a78c00,2, 0x2a78c0c,2, 0x2a78c40,7, 0x2a78d00,3, 0x2a78d10,3, 0x2a78d20,5, 0x2a78e00,6, 0x2a78e40,5, 0x2a79000,2, 0x2a7900c,2, 0x2a79040,7, 0x2a79100,3, 0x2a79110,3, 0x2a79120,5, 0x2a79200,6, 0x2a79240,5, 0x2a79400,2, 0x2a7940c,2, 0x2a79440,7, 0x2a79500,3, 0x2a79510,3, 0x2a79520,5, 0x2a79600,6, 0x2a79640,5, 0x2a79800,2, 0x2a7980c,2, 0x2a79840,7, 0x2a79900,3, 0x2a79910,3, 0x2a79920,5, 0x2a79a00,6, 0x2a79a40,5, 0x2a79c00,2, 0x2a79c0c,2, 0x2a79c40,7, 0x2a79d00,3, 0x2a79d10,3, 0x2a79d20,5, 0x2a79e00,6, 0x2a79e40,5, 0x2a7a000,5, 0x2a7a040,9, 0x2a7a100,3, 0x2a7a200,1, 0x2a7a210,1, 0x2a7a220,1, 0x2a7a230,1, 0x2a7a240,1, 0x2a7a300,3, 0x2a7a314,1, 0x2a7a320,4, 0x2a7a400,5, 0x2a7a440,5, 0x2a7b000,80, 0x2a7b200,1, 0x2a80000,3, 0x2a80010,7, 0x2a80030,10, 0x2a80080,2, 0x2a80100,6, 0x2a80140,2, 0x2a80180,2, 0x2a801a0,1, 0x2a80400,2, 0x2a80440,4, 0x2a80460,5, 0x2a80478,1, 0x2a80480,6, 0x2a804a0,3, 0x2a804b0,2, 0x2a80500,5, 0x2a80600,1, 0x2a80800,5, 0x2a80900,5, 0x2a80a00,5, 0x2a80b00,3, 0x2a80c00,35, 0x2a80d00,25, 0x2a80d80,1, 0x2a80dc0,3, 0x2a80e00,2, 0x2a80e20,2, 0x2a90000,3, 0x2a9001c,4, 0x2a90080,3, 0x2a90090,2, 0x2a900d4,4, 0x2a900ec,27, 0x2a9015c,27, 0x2a901cc,19, 0x2a90224,120, 0x2a90408,24, 0x2a9046c,84, 0x2a905f8,4, 0x2a90610,27, 0x2a90680,27, 0x2a906f0,19, 0x2a90748,120, 0x2a9092c,24, 0x2a90990,84, 0x2a90b1c,4, 0x2a90b34,27, 0x2a90ba4,27, 0x2a90c14,19, 0x2a90c6c,120, 0x2a90e50,24, 0x2a90eb4,84, 0x2a91040,4, 0x2a91058,27, 0x2a910c8,27, 0x2a91138,19, 0x2a91190,120, 0x2a91374,24, 0x2a913d8,84, 0x2a91564,4, 0x2a9157c,27, 0x2a915ec,27, 0x2a9165c,19, 0x2a916b4,120, 0x2a91898,24, 0x2a918fc,84, 0x2a91a88,4, 0x2a91aa0,27, 0x2a91b10,27, 0x2a91b80,19, 0x2a91bd8,120, 0x2a91dbc,24, 0x2a91e20,84, 0x2a91fac,4, 0x2a91fc4,27, 0x2a92034,27, 0x2a920a4,19, 0x2a920fc,120, 0x2a922e0,24, 0x2a92344,84, 0x2a924d0,4, 0x2a924e8,27, 0x2a92558,27, 0x2a925c8,19, 0x2a92620,120, 0x2a92804,24, 0x2a92868,84, 0x2a929f4,4, 0x2a92a0c,27, 0x2a92a7c,27, 0x2a92aec,19, 0x2a92b44,120, 0x2a92d28,24, 0x2a92d8c,84, 0x2a92f18,4, 0x2a92f30,27, 0x2a92fa0,27, 0x2a93010,19, 0x2a93068,120, 0x2a9324c,24, 0x2a932b0,84, 0x2a9343c,4, 0x2a93454,27, 0x2a934c4,27, 0x2a93534,19, 0x2a9358c,120, 0x2a93770,24, 0x2a937d4,84, 0x2a93960,4, 0x2a93978,27, 0x2a939e8,27, 0x2a93a58,19, 0x2a93ab0,120, 0x2a93c94,24, 0x2a93cf8,84, 0x2a93e84,4, 0x2a93e9c,27, 0x2a93f0c,27, 0x2a93f7c,19, 0x2a93fd4,120, 0x2a941b8,24, 0x2a9421c,84, 0x2a943a8,4, 0x2a943c0,27, 0x2a94430,27, 0x2a944a0,19, 0x2a944f8,120, 0x2a946dc,24, 0x2a94740,84, 0x2a948cc,4, 0x2a948e4,27, 0x2a94954,27, 0x2a949c4,19, 0x2a94a1c,120, 0x2a94c00,24, 0x2a94c64,84, 0x2a94df0,4, 0x2a94e08,27, 0x2a94e78,27, 0x2a94ee8,19, 0x2a94f40,120, 0x2a95124,24, 0x2a95188,84, 0x2a95314,4, 0x2a9532c,27, 0x2a9539c,27, 0x2a9540c,19, 0x2a95464,120, 0x2a95648,24, 0x2a956ac,84, 0x2a95838,14, 0x2a95940,13, 0x2a95a44,13, 0x2a95b48,16, 0x2a95b90,42, 0x2a95c40,2, 0x2a95c90,54, 0x2a95d70,58, 0x2a95e60,58, 0x2a95f50,58, 0x2a96040,58, 0x2a96130,58, 0x2a96220,58, 0x2a96310,58, 0x2a96400,58, 0x2a964f0,58, 0x2a965e0,58, 0x2a966d0,58, 0x2a967c0,58, 0x2a968b0,58, 0x2a969a0,58, 0x2a96a90,58, 0x2a96b80,58, 0x2a96c70,58, 0x2a96d60,58, 0x2a96e50,58, 0x2a96f40,58, 0x2a97030,58, 0x2a97120,58, 0x2a97210,58, 0x2a97300,58, 0x2a973f0,58, 0x2a974e0,58, 0x2a975d0,58, 0x2a976c0,58, 0x2a977b0,58, 0x2a978a0,58, 0x2a97990,58, 0x2a97a80,101, 0x2a97c90,49, 0x2a97db0,18, 0x2a97e00,11, 0x2a97e30,4, 0x2a97e54,45, 0x2a97f58,9, 0x2a97f88,3, 0x2a97fa0,2, 0x2a97fd8,14, 0x2a98014,12, 0x2a98158,3, 0x2a98168,2, 0x2a98174,68, 0x2a98288,2, 0x2a98294,68, 0x2a983a8,1, 0x2a983b0,2, 0x2a983bc,68, 0x2a984d0,2, 0x2a984dc,68, 0x2a985f0,1, 0x2a985f8,4, 0x2a98610,3, 0x2a98624,12, 0x2a98688,8, 0x2a986dc,1, 0x2a986e8,4, 0x2a98700,3, 0x2a98714,12, 0x2a98778,8, 0x2a987cc,1, 0x2a987d8,4, 0x2a987f0,3, 0x2a98804,12, 0x2a98868,8, 0x2a988bc,1, 0x2a988c8,4, 0x2a988e0,3, 0x2a988f4,12, 0x2a98958,8, 0x2a989ac,1, 0x2a989b8,4, 0x2a989d0,3, 0x2a989e4,12, 0x2a98a48,8, 0x2a98a9c,1, 0x2a98aa8,4, 0x2a98ac0,3, 0x2a98ad4,12, 0x2a98b38,8, 0x2a98b8c,1, 0x2a98b98,4, 0x2a98bb0,3, 0x2a98bc4,12, 0x2a98c28,8, 0x2a98c7c,1, 0x2a98c88,4, 0x2a98ca0,3, 0x2a98cb4,12, 0x2a98d18,8, 0x2a98d6c,1, 0x2a98d78,4, 0x2a98d90,3, 0x2a98da4,12, 0x2a98e08,8, 0x2a98e5c,1, 0x2a98e68,4, 0x2a98e80,3, 0x2a98e94,12, 0x2a98ef8,8, 0x2a98f4c,1, 0x2a98f58,4, 0x2a98f70,3, 0x2a98f84,12, 0x2a98fe8,8, 0x2a9903c,1, 0x2a99048,4, 0x2a99060,3, 0x2a99074,12, 0x2a990d8,8, 0x2a9912c,1, 0x2a99138,4, 0x2a99150,3, 0x2a99164,12, 0x2a991c8,8, 0x2a9921c,1, 0x2a99228,4, 0x2a99240,3, 0x2a99254,12, 0x2a992b8,8, 0x2a9930c,1, 0x2a99318,4, 0x2a99330,3, 0x2a99344,12, 0x2a993a8,8, 0x2a993fc,1, 0x2a99408,4, 0x2a99420,3, 0x2a99434,12, 0x2a99498,8, 0x2a994ec,1, 0x2a994f8,4, 0x2a99510,3, 0x2a99524,12, 0x2a99588,8, 0x2a995dc,1, 0x2a995e8,64, 0x2a99748,5, 0x2a99990,28, 0x2a99a04,1, 0x2a99a98,1, 0x2a99be8,5, 0x2a99c04,3, 0x2a99c18,13, 0x2a99c50,2, 0x2a9a000,15, 0x2a9a044,81, 0x2a9a18c,84, 0x2a9a2e0,84, 0x2a9a434,84, 0x2a9a588,84, 0x2a9a6dc,84, 0x2a9a830,84, 0x2a9a984,84, 0x2a9aad8,84, 0x2a9ac2c,84, 0x2a9ad80,84, 0x2a9aed4,84, 0x2a9b028,84, 0x2a9b17c,84, 0x2a9b2d0,84, 0x2a9b424,84, 0x2a9b578,84, 0x2a9b6cc,5, 0x2a9b760,4, 0x2a9b8e0,2414, 0x2a9dea4,80, 0x2a9e048,4, 0x2a9ebe0,1, 0x2a9ebf0,97, 0x2a9ed94,7, 0x2a9ee7c,1, 0x2a9eeac,9, 0x2a9eed4,5, 0x2a9eeec,11, 0x2a9ef2c,17, 0x2a9ef74,29, 0x2a9f034,3, 0x2a9f044,1, 0x2a9f054,17, 0x2a9fbe0,3, 0x2a9fbf0,2, 0x2aa0000,3, 0x2aa0018,2, 0x2aa0024,14, 0x2aa0060,27, 0x2aa00d0,3, 0x2aa00e0,3, 0x2aa00f0,3, 0x2aa0100,4, 0x2aa0120,6, 0x2aa0140,3, 0x2aa0150,1, 0x2aa015c,4, 0x2aa0170,1, 0x2aa0180,15, 0x2aa01c0,1, 0x2aa01c8,5, 0x2aa01e0,1, 0x2aa01f0,3, 0x2aa0200,3, 0x2aa0218,2, 0x2aa0224,14, 0x2aa0260,27, 0x2aa02d0,3, 0x2aa02e0,3, 0x2aa02f0,3, 0x2aa0300,4, 0x2aa0320,6, 0x2aa0340,3, 0x2aa0350,1, 0x2aa035c,4, 0x2aa0370,1, 0x2aa0380,15, 0x2aa03c0,1, 0x2aa03c8,5, 0x2aa03e0,1, 0x2aa03f0,3, 0x2aa0400,3, 0x2aa0418,2, 0x2aa0424,14, 0x2aa0460,27, 0x2aa04d0,3, 0x2aa04e0,3, 0x2aa04f0,3, 0x2aa0500,4, 0x2aa0520,6, 0x2aa0540,3, 0x2aa0550,1, 0x2aa055c,4, 0x2aa0570,1, 0x2aa0580,15, 0x2aa05c0,1, 0x2aa05c8,5, 0x2aa05e0,1, 0x2aa05f0,3, 0x2aa0600,3, 0x2aa0618,2, 0x2aa0624,14, 0x2aa0660,27, 0x2aa06d0,3, 0x2aa06e0,3, 0x2aa06f0,3, 0x2aa0700,4, 0x2aa0720,6, 0x2aa0740,3, 0x2aa0750,1, 0x2aa075c,4, 0x2aa0770,1, 0x2aa0780,15, 0x2aa07c0,1, 0x2aa07c8,5, 0x2aa07e0,1, 0x2aa07f0,3, 0x2aa0800,3, 0x2aa0818,2, 0x2aa0824,14, 0x2aa0860,27, 0x2aa08d0,3, 0x2aa08e0,3, 0x2aa08f0,3, 0x2aa0900,4, 0x2aa0920,6, 0x2aa0940,3, 0x2aa0950,1, 0x2aa095c,4, 0x2aa0970,1, 0x2aa0980,15, 0x2aa09c0,1, 0x2aa09c8,5, 0x2aa09e0,1, 0x2aa09f0,3, 0x2aa1844,1, 0x2aa1858,5, 0x2aa1904,3, 0x2aa1950,3, 0x2aa1988,2, 0x2aa19a0,7, 0x2aa19c0,7, 0x2aa19e0,4, 0x2aa2000,24, 0x2aa20f0,3, 0x2aa2100,7, 0x2aa2120,7, 0x2aa2144,7, 0x2aa2400,4, 0x2aa2420,5, 0x2aa25e0,3, 0x2aa25f4,1, 0x2aa25fc,4, 0x2aa2620,3, 0x2aa2680,8, 0x2aa2700,19, 0x2aa2800,99, 0x2aa2a00,18, 0x2aa2a80,8, 0x2aa2b00,1, 0x2aa3070,1, 0x2aa3080,2, 0x2aa308c,1, 0x2aa3098,2, 0x2aa3404,1, 0x2aa3440,20, 0x2aa3494,1, 0x2aa349c,7, 0x2aa34d0,4, 0x2aa34e8,2, 0x2aa34fc,8, 0x2aa3520,7, 0x2aa3540,7, 0x2aa3560,7, 0x2aa3580,7, 0x2aa35a0,7, 0x2aa35c0,7, 0x2aa35e0,7, 0x2aa3600,9, 0x2aa363c,2, 0x2aa3650,6, 0x2aa3684,10, 0x2aa3a00,10, 0x2aa3a30,1, 0x2aa3a40,8, 0x2aa3a64,5, 0x2aa4a04,3, 0x2aa4b00,33, 0x2aa4b90,3, 0x2aa5000,8, 0x2aa5040,8, 0x2aa5104,1, 0x2aa510c,3, 0x2aa5124,1, 0x2aa512c,3, 0x2aa6000,13, 0x2aa6200,14, 0x2aa6240,1, 0x2aa6248,1, 0x2aa6258,1, 0x2aa6260,8, 0x2aa6284,1, 0x2aa62a0,8, 0x2aa6348,5, 0x2aa67f0,1, 0x2aa67f8,1, 0x2aa6a10,12, 0x2aa7000,19, 0x2aa7a00,10, 0x2aa7a80,3, 0x2aa7b00,6, 0x2ac0000,1, 0x2ac000c,5, 0x2ac0044,1, 0x2ac0054,5, 0x2ac0200,128, 0x2ac0404,1, 0x2ac0428,54, 0x2ac0600,32, 0x2ac0704,1, 0x2ac0800,1, 0x2ac0900,1, 0x2ac0910,2, 0x2ac0920,3, 0x2ac0980,10, 0x2ac0a00,19, 0x2ac0b00,1, 0x2ae0000,2, 0x2ae000c,2, 0x2ae0018,2, 0x2ae0024,2, 0x2ae0030,2, 0x2ae003c,2, 0x2ae0048,2, 0x2ae0054,2, 0x2ae0060,1, 0x2ae0070,2, 0x2ae007c,2, 0x2ae0088,2, 0x2ae0094,2, 0x2ae00a0,2, 0x2ae00ac,2, 0x2ae00b8,2, 0x2ae00c4,2, 0x2ae00d0,1, 0x2ae00e0,2, 0x2ae00ec,2, 0x2ae00f8,2, 0x2ae0104,2, 0x2ae0110,2, 0x2ae011c,2, 0x2ae0128,2, 0x2ae0134,2, 0x2ae0140,1, 0x2ae0150,2, 0x2ae015c,2, 0x2ae0168,2, 0x2ae0174,2, 0x2ae0180,2, 0x2ae018c,2, 0x2ae0198,2, 0x2ae01a4,2, 0x2ae01b0,1, 0x2ae01c0,57, 0x2ae02b0,67, 0x2ae03c0,16, 0x2ae0410,23, 0x2ae0470,16, 0x2ae04c0,23, 0x2ae0520,16, 0x2ae0570,23, 0x2ae05d0,16, 0x2ae0620,23, 0x2ae0680,16, 0x2ae06d0,23, 0x2ae0730,16, 0x2ae0780,23, 0x2ae07e0,16, 0x2ae0830,23, 0x2ae0890,16, 0x2ae08e0,23, 0x2ae0940,16, 0x2ae0990,23, 0x2ae09f0,16, 0x2ae0a40,23, 0x2ae0aa0,16, 0x2ae0af0,23, 0x2ae0b50,16, 0x2ae0ba0,23, 0x2ae0c00,16, 0x2ae0c50,23, 0x2ae0cb0,16, 0x2ae0d00,23, 0x2ae0d60,16, 0x2ae0db0,23, 0x2ae0e10,16, 0x2ae0e60,23, 0x2ae0ec0,16, 0x2ae0f10,23, 0x2ae0f70,16, 0x2ae0fc0,23, 0x2ae1020,16, 0x2ae1070,23, 0x2ae10d0,16, 0x2ae1120,23, 0x2ae1180,16, 0x2ae11d0,23, 0x2ae1230,16, 0x2ae1280,23, 0x2ae12e0,16, 0x2ae1330,23, 0x2ae1390,16, 0x2ae13e0,23, 0x2ae1440,16, 0x2ae1490,23, 0x2ae14f0,16, 0x2ae1540,23, 0x2ae15a0,16, 0x2ae15f0,23, 0x2ae1650,16, 0x2ae16a0,23, 0x2ae1700,16, 0x2ae1750,23, 0x2ae17b0,16, 0x2ae1800,23, 0x2ae1860,16, 0x2ae18b0,23, 0x2ae1910,16, 0x2ae1960,2, 0x2af0000,4, 0x2af0014,2, 0x2af0020,8, 0x2af0044,2, 0x2af0050,13, 0x2af0088,20, 0x2af00dc,1, 0x2af0180,6, 0x2af0590,3, 0x2af05c0,2, 0x2af0a04,1, 0x2af0a0c,3, 0x2af0a20,1, 0x2af0ba0,4, 0x2af0c00,4, 0x2af0c20,3, 0x2af0c30,5, 0x2af0c50,52, 0x2af0d50,57, 0x2af0ec0,3, 0x2af0ffc,3, 0x2af1020,3, 0x2af1030,3, 0x2af1060,2, 0x2af1100,2, 0x2af1140,18, 0x2af11c0,30, 0x2af1240,14, 0x2af1280,28, 0x2af1300,2, 0x2af13a0,6, 0x2af1400,19, 0x2af1800,19, 0x2af1c00,19, 0x2af1c80,8, 0x2af1d00,3, 0x2af1d50,3, 0x2af1e00,3, 0x2af1e10,2, 0x2af1e20,6, 0x2af1e40,6, 0x2af1e60,6, 0x2af1e80,6, 0x2af1ea0,6, 0x2af1ec0,2, 0x2af1ecc,2, 0x2af1ee0,2, 0x2af1eec,2, 0x2af1f80,3, 0x2af1f90,60, 0x2af2100,32, 0x2af2200,32, 0x2af2300,32, 0x2af2400,32, 0x2af2500,32, 0x2af2600,32, 0x2af2700,32, 0x2af2800,32, 0x2af2900,32, 0x2af2a00,32, 0x2af2b00,32, 0x2af2c00,32, 0x2af2d00,32, 0x2af2e00,32, 0x2af2f00,32, 0x2af3000,32, 0x2af30c0,3, 0x2af4000,2, 0x2af4040,16, 0x2af4100,36, 0x2af4800,5, 0x2af4824,1, 0x2af482c,1, 0x2af4c04,1, 0x2af4cd8,74, 0x2af5000,7, 0x2af5020,4, 0x2af5204,1, 0x2af5280,35, 0x2af5310,4, 0x2af5404,1, 0x2af5480,34, 0x2af5510,10, 0x2af553c,3, 0x2af5800,7, 0x2af5820,4, 0x2af5a04,1, 0x2af5a80,35, 0x2af5b10,4, 0x2af5c04,1, 0x2af5c80,34, 0x2af5d10,10, 0x2af5d3c,3, 0x2afa000,5, 0x2afa01c,13, 0x2afa060,3, 0x2afa080,8, 0x2afa100,5, 0x2afa11c,13, 0x2afa160,3, 0x2afa180,8, 0x2c00004,5, 0x2c00020,3, 0x2c00030,3, 0x2c00040,13, 0x2c00078,4, 0x2c0009c,25, 0x2c00104,5, 0x2c00120,3, 0x2c00130,3, 0x2c00140,13, 0x2c00178,4, 0x2c0019c,25, 0x2c00204,5, 0x2c00220,3, 0x2c00230,3, 0x2c00240,13, 0x2c00278,4, 0x2c0029c,25, 0x2c00304,5, 0x2c00320,3, 0x2c00330,3, 0x2c00340,13, 0x2c00378,4, 0x2c0039c,25, 0x2c00600,4, 0x2c00c00,24, 0x2c00c80,24, 0x2c00d00,24, 0x2c00d80,24, 0x2c00e00,4, 0x2c00e20,4, 0x2c00e40,4, 0x2c00e60,4, 0x2c00e80,39, 0x2c00f20,7, 0x2c00f40,7, 0x2c00f60,7, 0x2c01000,12, 0x2c01200,1, 0x2c01218,2, 0x2c0122c,1, 0x2c01280,1, 0x2c01298,2, 0x2c012ac,1, 0x2c01300,1, 0x2c01318,2, 0x2c0132c,1, 0x2c01380,1, 0x2c01398,2, 0x2c013ac,1, 0x2c01400,4, 0x2c01420,2, 0x2c0142c,1, 0x2c01480,4, 0x2c014a0,2, 0x2c014ac,1, 0x2c01500,4, 0x2c01520,2, 0x2c0152c,1, 0x2c01580,4, 0x2c015a0,2, 0x2c015ac,1, 0x2c01600,4, 0x2c01640,4, 0x2c01680,4, 0x2c016c0,4, 0x2c01700,7, 0x2c01720,7, 0x2c01740,7, 0x2c01760,7, 0x2c01780,4, 0x2c0179c,11, 0x2c017d0,2, 0x2c017e0,2, 0x2c017f0,2, 0x2c01900,44, 0x2c02000,7, 0x2c02020,4, 0x2c02040,4, 0x2c02060,7, 0x2c02080,7, 0x2c020a0,4, 0x2c020c0,4, 0x2c020e0,7, 0x2c02100,7, 0x2c02120,4, 0x2c02140,4, 0x2c02160,7, 0x2c02180,7, 0x2c021a0,4, 0x2c021c0,4, 0x2c021e0,7, 0x2c02200,32, 0x2c02b00,1, 0x2c02b20,1, 0x2c02b28,4, 0x2c02b40,1, 0x2c02b60,1, 0x2c02b68,4, 0x2c02b80,1, 0x2c02ba0,1, 0x2c02ba8,4, 0x2c02bc0,1, 0x2c02be0,1, 0x2c02be8,4, 0x2c02c00,7, 0x2c02c20,1, 0x2c02c54,18, 0x2c02ca0,1, 0x2c02cd4,18, 0x2c02d20,1, 0x2c02d54,18, 0x2c02da0,1, 0x2c02dd4,12, 0x2c02e08,6, 0x2c03100,7, 0x2c03120,7, 0x2c03140,7, 0x2c03160,7, 0x2c03180,3, 0x2c04004,5, 0x2c04020,3, 0x2c04030,3, 0x2c04040,13, 0x2c04078,4, 0x2c0409c,25, 0x2c04104,5, 0x2c04120,3, 0x2c04130,3, 0x2c04140,13, 0x2c04178,4, 0x2c0419c,25, 0x2c04204,5, 0x2c04220,3, 0x2c04230,3, 0x2c04240,13, 0x2c04278,4, 0x2c0429c,25, 0x2c04304,5, 0x2c04320,3, 0x2c04330,3, 0x2c04340,13, 0x2c04378,4, 0x2c0439c,25, 0x2c04600,4, 0x2c04c00,24, 0x2c04c80,24, 0x2c04d00,24, 0x2c04d80,24, 0x2c04e00,4, 0x2c04e20,4, 0x2c04e40,4, 0x2c04e60,4, 0x2c04e80,39, 0x2c04f20,7, 0x2c04f40,7, 0x2c04f60,7, 0x2c05000,12, 0x2c05200,1, 0x2c05218,2, 0x2c0522c,1, 0x2c05280,1, 0x2c05298,2, 0x2c052ac,1, 0x2c05300,1, 0x2c05318,2, 0x2c0532c,1, 0x2c05380,1, 0x2c05398,2, 0x2c053ac,1, 0x2c05400,4, 0x2c05420,2, 0x2c0542c,1, 0x2c05480,4, 0x2c054a0,2, 0x2c054ac,1, 0x2c05500,4, 0x2c05520,2, 0x2c0552c,1, 0x2c05580,4, 0x2c055a0,2, 0x2c055ac,1, 0x2c05600,4, 0x2c05640,4, 0x2c05680,4, 0x2c056c0,4, 0x2c05700,7, 0x2c05720,7, 0x2c05740,7, 0x2c05760,7, 0x2c05780,4, 0x2c0579c,11, 0x2c057d0,2, 0x2c057e0,2, 0x2c057f0,2, 0x2c05900,44, 0x2c06000,7, 0x2c06020,4, 0x2c06040,4, 0x2c06060,7, 0x2c06080,7, 0x2c060a0,4, 0x2c060c0,4, 0x2c060e0,7, 0x2c06100,7, 0x2c06120,4, 0x2c06140,4, 0x2c06160,7, 0x2c06180,7, 0x2c061a0,4, 0x2c061c0,4, 0x2c061e0,7, 0x2c06200,32, 0x2c06b00,1, 0x2c06b20,1, 0x2c06b28,4, 0x2c06b40,1, 0x2c06b60,1, 0x2c06b68,4, 0x2c06b80,1, 0x2c06ba0,1, 0x2c06ba8,4, 0x2c06bc0,1, 0x2c06be0,1, 0x2c06be8,4, 0x2c06c00,7, 0x2c06c20,1, 0x2c06c54,18, 0x2c06ca0,1, 0x2c06cd4,18, 0x2c06d20,1, 0x2c06d54,18, 0x2c06da0,1, 0x2c06dd4,12, 0x2c06e08,6, 0x2c07100,7, 0x2c07120,7, 0x2c07140,7, 0x2c07160,7, 0x2c07180,3, 0x2c08000,10, 0x2c08080,3, 0x2c080c0,1, 0x2c08100,21, 0x2c08180,13, 0x2c081c4,7, 0x2c081e4,7, 0x2c08204,7, 0x2c08224,8, 0x2c09000,7, 0x2c09030,2, 0x2c09040,7, 0x2c09070,2, 0x2c09100,2, 0x2c09120,2, 0x2c09140,2, 0x2c09160,2, 0x2c09180,9, 0x2c09200,7, 0x2c09230,2, 0x2c09240,7, 0x2c09270,2, 0x2c09300,2, 0x2c09320,2, 0x2c09340,2, 0x2c09360,2, 0x2c09380,9, 0x2c09400,11, 0x2c09500,11, 0x2c0a000,3, 0x2c0a010,2, 0x2c0a01c,5, 0x2c0a040,8, 0x2c0a080,3, 0x2c0a090,2, 0x2c0a09c,5, 0x2c0a0c0,8, 0x2c0a100,3, 0x2c0a110,2, 0x2c0a11c,5, 0x2c0a140,8, 0x2c0a180,3, 0x2c0a190,2, 0x2c0a19c,5, 0x2c0a1c0,8, 0x2c0a200,7, 0x2c0a220,12, 0x2c0a280,7, 0x2c0a2a0,12, 0x2c0a300,3, 0x2c0a310,1, 0x2c0a400,3, 0x2c0a410,2, 0x2c0a41c,5, 0x2c0a440,8, 0x2c0a480,3, 0x2c0a490,2, 0x2c0a49c,5, 0x2c0a4c0,8, 0x2c0a500,3, 0x2c0a510,2, 0x2c0a51c,5, 0x2c0a540,8, 0x2c0a580,3, 0x2c0a590,2, 0x2c0a59c,5, 0x2c0a5c0,8, 0x2c0a600,7, 0x2c0a620,12, 0x2c0a680,7, 0x2c0a6a0,12, 0x2c0a700,3, 0x2c0a710,1, 0x2c0a804,1, 0x2c0a824,21, 0x2c0a880,16, 0x2c0a900,5, 0x2c0a920,11, 0x2c0a950,9, 0x2c0a980,22, 0x2c0aa00,22, 0x2c0aa80,22, 0x2c0ab00,22, 0x2c0ab80,22, 0x2c0ac00,22, 0x2c0ac80,22, 0x2c0ad00,22, 0x2c0ad80,3, 0x2c0c000,16, 0x2c0c080,11, 0x2c0c100,11, 0x2c0c204,1, 0x2c0c224,21, 0x2c0c280,16, 0x2c0c300,11, 0x2c0c340,11, 0x2c0c800,21, 0x2c0c860,5, 0x2c0c880,6, 0x2c0c8a0,5, 0x2c0c8c0,6, 0x2c0c900,21, 0x2c0c960,5, 0x2c0c980,6, 0x2c0c9a0,5, 0x2c0c9c0,6, 0x2c0ca00,21, 0x2c0ca60,5, 0x2c0ca80,6, 0x2c0caa0,5, 0x2c0cac0,6, 0x2c0cb00,21, 0x2c0cb60,5, 0x2c0cb80,6, 0x2c0cba0,5, 0x2c0cbc0,6, 0x2c0cc00,9, 0x2c0cc48,7, 0x2c0cc68,2, 0x2c0cc74,9, 0x2c0cc9c,2, 0x2c0cd00,14, 0x2c0cd40,14, 0x2c0cd80,28, 0x2c0ce00,19, 0x2c0ce50,3, 0x2c0ce60,25, 0x2c0cec8,1, 0x2c0ced0,2, 0x2c0cee0,7, 0x2c0cf00,1, 0x2c0cf08,2, 0x2c0cffc,20, 0x2c0d050,25, 0x2c0d100,19, 0x2c0d150,25, 0x2c0d200,19, 0x2c0d250,25, 0x2c0d300,19, 0x2c0d350,25, 0x2c0d400,19, 0x2c0d450,25, 0x2c0d500,19, 0x2c0d550,25, 0x2c0d600,19, 0x2c0d650,25, 0x2c0d700,19, 0x2c0d750,25, 0x2c0d800,19, 0x2c0d850,25, 0x2c0d904,1, 0x2c0d914,10, 0x2c0d948,11, 0x2c0d980,2, 0x2c0d9a0,6, 0x2c0d9c0,2, 0x2c0d9cc,2, 0x2c0e000,35, 0x2c0ea00,10, 0x2c0ea80,3, 0x2c0eb00,6, 0x2c0f000,1, 0x2c0f008,5, 0x2c0f038,1, 0x2c0f044,1, 0x2c0f050,2, 0x2c0f100,13, 0x2c0f140,11, 0x2c0f170,12, 0x2c0f1a4,1, 0x2c0f200,104, 0x2c0f400,104, 0x2c0f600,104, 0x2c0f800,104, 0x2c10000,13, 0x2c10040,2, 0x2c10054,4, 0x2c10080,27, 0x2c10100,12, 0x2c10140,14, 0x2c10180,28, 0x2c10200,6, 0x2c10240,6, 0x2c1025c,3, 0x2c10280,5, 0x2c102a0,8, 0x2c10400,14, 0x2c10440,14, 0x2c10480,14, 0x2c104c0,14, 0x2c10540,3, 0x2c10600,7, 0x2c10620,14, 0x2c10680,5, 0x2c106a0,7, 0x2c10800,13, 0x2c10840,2, 0x2c10854,4, 0x2c10880,27, 0x2c10900,12, 0x2c10940,14, 0x2c10980,28, 0x2c10a00,6, 0x2c10a40,6, 0x2c10a5c,3, 0x2c10a80,5, 0x2c10aa0,8, 0x2c10c00,14, 0x2c10c40,14, 0x2c10c80,14, 0x2c10cc0,14, 0x2c10d40,3, 0x2c10e00,7, 0x2c10e20,14, 0x2c10e80,5, 0x2c10ea0,7, 0x2c11000,13, 0x2c11040,2, 0x2c11054,4, 0x2c11080,27, 0x2c11100,12, 0x2c11140,14, 0x2c11180,28, 0x2c11200,6, 0x2c11240,6, 0x2c1125c,3, 0x2c11280,5, 0x2c112a0,8, 0x2c11400,14, 0x2c11440,14, 0x2c11480,14, 0x2c114c0,14, 0x2c11540,3, 0x2c11600,7, 0x2c11620,14, 0x2c11680,5, 0x2c116a0,7, 0x2c11800,13, 0x2c11840,2, 0x2c11854,4, 0x2c11880,27, 0x2c11900,12, 0x2c11940,14, 0x2c11980,28, 0x2c11a00,6, 0x2c11a40,6, 0x2c11a5c,3, 0x2c11a80,5, 0x2c11aa0,8, 0x2c11c00,14, 0x2c11c40,14, 0x2c11c80,14, 0x2c11cc0,14, 0x2c11d40,3, 0x2c11e00,7, 0x2c11e20,14, 0x2c11e80,5, 0x2c11ea0,7, 0x2c12000,8, 0x2c12040,8, 0x2c12080,1, 0x2c12098,6, 0x2c12100,10, 0x2c12140,3, 0x2c12150,2, 0x2c12180,2, 0x2c12200,6, 0x2c12220,18, 0x2c12280,4, 0x2c12300,8, 0x2c12400,2, 0x2c12480,2, 0x2c12800,28, 0x2c129f0,4, 0x2c13000,40, 0x2c13100,64, 0x2c13800,56, 0x2c13be0,8, 0x2c14000,13, 0x2c14040,2, 0x2c14054,4, 0x2c14080,27, 0x2c14100,12, 0x2c14140,14, 0x2c14180,28, 0x2c14200,6, 0x2c14240,6, 0x2c1425c,3, 0x2c14280,5, 0x2c142a0,8, 0x2c14400,14, 0x2c14440,14, 0x2c14480,14, 0x2c144c0,14, 0x2c14540,3, 0x2c14600,7, 0x2c14620,14, 0x2c14680,5, 0x2c146a0,7, 0x2c14800,13, 0x2c14840,2, 0x2c14854,4, 0x2c14880,27, 0x2c14900,12, 0x2c14940,14, 0x2c14980,28, 0x2c14a00,6, 0x2c14a40,6, 0x2c14a5c,3, 0x2c14a80,5, 0x2c14aa0,8, 0x2c14c00,14, 0x2c14c40,14, 0x2c14c80,14, 0x2c14cc0,14, 0x2c14d40,3, 0x2c14e00,7, 0x2c14e20,14, 0x2c14e80,5, 0x2c14ea0,7, 0x2c15000,13, 0x2c15040,2, 0x2c15054,4, 0x2c15080,27, 0x2c15100,12, 0x2c15140,14, 0x2c15180,28, 0x2c15200,6, 0x2c15240,6, 0x2c1525c,3, 0x2c15280,5, 0x2c152a0,8, 0x2c15400,14, 0x2c15440,14, 0x2c15480,14, 0x2c154c0,14, 0x2c15540,3, 0x2c15600,7, 0x2c15620,14, 0x2c15680,5, 0x2c156a0,7, 0x2c15800,13, 0x2c15840,2, 0x2c15854,4, 0x2c15880,27, 0x2c15900,12, 0x2c15940,14, 0x2c15980,28, 0x2c15a00,6, 0x2c15a40,6, 0x2c15a5c,3, 0x2c15a80,5, 0x2c15aa0,8, 0x2c15c00,14, 0x2c15c40,14, 0x2c15c80,14, 0x2c15cc0,14, 0x2c15d40,3, 0x2c15e00,7, 0x2c15e20,14, 0x2c15e80,5, 0x2c15ea0,7, 0x2c16000,8, 0x2c16040,8, 0x2c16080,1, 0x2c16098,6, 0x2c16100,10, 0x2c16140,3, 0x2c16150,2, 0x2c16180,2, 0x2c16200,6, 0x2c16220,18, 0x2c16280,4, 0x2c16300,8, 0x2c16400,2, 0x2c16480,2, 0x2c16800,28, 0x2c169f0,4, 0x2c17000,40, 0x2c17100,64, 0x2c17800,56, 0x2c17be0,8, 0x2c18000,2, 0x2c1800c,2, 0x2c18040,7, 0x2c18100,3, 0x2c18110,3, 0x2c18120,5, 0x2c18200,6, 0x2c18240,5, 0x2c18400,2, 0x2c1840c,2, 0x2c18440,7, 0x2c18500,3, 0x2c18510,3, 0x2c18520,5, 0x2c18600,6, 0x2c18640,5, 0x2c18800,2, 0x2c1880c,2, 0x2c18840,7, 0x2c18900,3, 0x2c18910,3, 0x2c18920,5, 0x2c18a00,6, 0x2c18a40,5, 0x2c18c00,2, 0x2c18c0c,2, 0x2c18c40,7, 0x2c18d00,3, 0x2c18d10,3, 0x2c18d20,5, 0x2c18e00,6, 0x2c18e40,5, 0x2c19000,2, 0x2c1900c,2, 0x2c19040,7, 0x2c19100,3, 0x2c19110,3, 0x2c19120,5, 0x2c19200,6, 0x2c19240,5, 0x2c19400,2, 0x2c1940c,2, 0x2c19440,7, 0x2c19500,3, 0x2c19510,3, 0x2c19520,5, 0x2c19600,6, 0x2c19640,5, 0x2c19800,2, 0x2c1980c,2, 0x2c19840,7, 0x2c19900,3, 0x2c19910,3, 0x2c19920,5, 0x2c19a00,6, 0x2c19a40,5, 0x2c19c00,2, 0x2c19c0c,2, 0x2c19c40,7, 0x2c19d00,3, 0x2c19d10,3, 0x2c19d20,5, 0x2c19e00,6, 0x2c19e40,5, 0x2c1a000,5, 0x2c1a040,9, 0x2c1a100,3, 0x2c1a200,1, 0x2c1a210,1, 0x2c1a220,1, 0x2c1a230,1, 0x2c1a240,1, 0x2c1a300,3, 0x2c1a314,1, 0x2c1a320,4, 0x2c1a400,5, 0x2c1a440,5, 0x2c1b000,80, 0x2c1b200,1, 0x2c20004,5, 0x2c20020,3, 0x2c20030,3, 0x2c20040,13, 0x2c20078,4, 0x2c2009c,25, 0x2c20104,5, 0x2c20120,3, 0x2c20130,3, 0x2c20140,13, 0x2c20178,4, 0x2c2019c,25, 0x2c20204,5, 0x2c20220,3, 0x2c20230,3, 0x2c20240,13, 0x2c20278,4, 0x2c2029c,25, 0x2c20304,5, 0x2c20320,3, 0x2c20330,3, 0x2c20340,13, 0x2c20378,4, 0x2c2039c,25, 0x2c20600,4, 0x2c20c00,24, 0x2c20c80,24, 0x2c20d00,24, 0x2c20d80,24, 0x2c20e00,4, 0x2c20e20,4, 0x2c20e40,4, 0x2c20e60,4, 0x2c20e80,39, 0x2c20f20,7, 0x2c20f40,7, 0x2c20f60,7, 0x2c21000,12, 0x2c21200,1, 0x2c21218,2, 0x2c2122c,1, 0x2c21280,1, 0x2c21298,2, 0x2c212ac,1, 0x2c21300,1, 0x2c21318,2, 0x2c2132c,1, 0x2c21380,1, 0x2c21398,2, 0x2c213ac,1, 0x2c21400,4, 0x2c21420,2, 0x2c2142c,1, 0x2c21480,4, 0x2c214a0,2, 0x2c214ac,1, 0x2c21500,4, 0x2c21520,2, 0x2c2152c,1, 0x2c21580,4, 0x2c215a0,2, 0x2c215ac,1, 0x2c21600,4, 0x2c21640,4, 0x2c21680,4, 0x2c216c0,4, 0x2c21700,7, 0x2c21720,7, 0x2c21740,7, 0x2c21760,7, 0x2c21780,4, 0x2c2179c,11, 0x2c217d0,2, 0x2c217e0,2, 0x2c217f0,2, 0x2c21900,44, 0x2c22000,7, 0x2c22020,4, 0x2c22040,4, 0x2c22060,7, 0x2c22080,7, 0x2c220a0,4, 0x2c220c0,4, 0x2c220e0,7, 0x2c22100,7, 0x2c22120,4, 0x2c22140,4, 0x2c22160,7, 0x2c22180,7, 0x2c221a0,4, 0x2c221c0,4, 0x2c221e0,7, 0x2c22200,32, 0x2c22b00,1, 0x2c22b20,1, 0x2c22b28,4, 0x2c22b40,1, 0x2c22b60,1, 0x2c22b68,4, 0x2c22b80,1, 0x2c22ba0,1, 0x2c22ba8,4, 0x2c22bc0,1, 0x2c22be0,1, 0x2c22be8,4, 0x2c22c00,7, 0x2c22c20,1, 0x2c22c54,18, 0x2c22ca0,1, 0x2c22cd4,18, 0x2c22d20,1, 0x2c22d54,18, 0x2c22da0,1, 0x2c22dd4,12, 0x2c22e08,6, 0x2c23100,7, 0x2c23120,7, 0x2c23140,7, 0x2c23160,7, 0x2c23180,3, 0x2c24004,5, 0x2c24020,3, 0x2c24030,3, 0x2c24040,13, 0x2c24078,4, 0x2c2409c,25, 0x2c24104,5, 0x2c24120,3, 0x2c24130,3, 0x2c24140,13, 0x2c24178,4, 0x2c2419c,25, 0x2c24204,5, 0x2c24220,3, 0x2c24230,3, 0x2c24240,13, 0x2c24278,4, 0x2c2429c,25, 0x2c24304,5, 0x2c24320,3, 0x2c24330,3, 0x2c24340,13, 0x2c24378,4, 0x2c2439c,25, 0x2c24600,4, 0x2c24c00,24, 0x2c24c80,24, 0x2c24d00,24, 0x2c24d80,24, 0x2c24e00,4, 0x2c24e20,4, 0x2c24e40,4, 0x2c24e60,4, 0x2c24e80,39, 0x2c24f20,7, 0x2c24f40,7, 0x2c24f60,7, 0x2c25000,12, 0x2c25200,1, 0x2c25218,2, 0x2c2522c,1, 0x2c25280,1, 0x2c25298,2, 0x2c252ac,1, 0x2c25300,1, 0x2c25318,2, 0x2c2532c,1, 0x2c25380,1, 0x2c25398,2, 0x2c253ac,1, 0x2c25400,4, 0x2c25420,2, 0x2c2542c,1, 0x2c25480,4, 0x2c254a0,2, 0x2c254ac,1, 0x2c25500,4, 0x2c25520,2, 0x2c2552c,1, 0x2c25580,4, 0x2c255a0,2, 0x2c255ac,1, 0x2c25600,4, 0x2c25640,4, 0x2c25680,4, 0x2c256c0,4, 0x2c25700,7, 0x2c25720,7, 0x2c25740,7, 0x2c25760,7, 0x2c25780,4, 0x2c2579c,11, 0x2c257d0,2, 0x2c257e0,2, 0x2c257f0,2, 0x2c25900,44, 0x2c26000,7, 0x2c26020,4, 0x2c26040,4, 0x2c26060,7, 0x2c26080,7, 0x2c260a0,4, 0x2c260c0,4, 0x2c260e0,7, 0x2c26100,7, 0x2c26120,4, 0x2c26140,4, 0x2c26160,7, 0x2c26180,7, 0x2c261a0,4, 0x2c261c0,4, 0x2c261e0,7, 0x2c26200,32, 0x2c26b00,1, 0x2c26b20,1, 0x2c26b28,4, 0x2c26b40,1, 0x2c26b60,1, 0x2c26b68,4, 0x2c26b80,1, 0x2c26ba0,1, 0x2c26ba8,4, 0x2c26bc0,1, 0x2c26be0,1, 0x2c26be8,4, 0x2c26c00,7, 0x2c26c20,1, 0x2c26c54,18, 0x2c26ca0,1, 0x2c26cd4,18, 0x2c26d20,1, 0x2c26d54,18, 0x2c26da0,1, 0x2c26dd4,12, 0x2c26e08,6, 0x2c27100,7, 0x2c27120,7, 0x2c27140,7, 0x2c27160,7, 0x2c27180,3, 0x2c28000,10, 0x2c28080,3, 0x2c280c0,1, 0x2c28100,21, 0x2c28180,13, 0x2c281c4,7, 0x2c281e4,7, 0x2c28204,7, 0x2c28224,8, 0x2c29000,7, 0x2c29030,2, 0x2c29040,7, 0x2c29070,2, 0x2c29100,2, 0x2c29120,2, 0x2c29140,2, 0x2c29160,2, 0x2c29180,9, 0x2c29200,7, 0x2c29230,2, 0x2c29240,7, 0x2c29270,2, 0x2c29300,2, 0x2c29320,2, 0x2c29340,2, 0x2c29360,2, 0x2c29380,9, 0x2c29400,11, 0x2c29500,11, 0x2c2a000,3, 0x2c2a010,2, 0x2c2a01c,5, 0x2c2a040,8, 0x2c2a080,3, 0x2c2a090,2, 0x2c2a09c,5, 0x2c2a0c0,8, 0x2c2a100,3, 0x2c2a110,2, 0x2c2a11c,5, 0x2c2a140,8, 0x2c2a180,3, 0x2c2a190,2, 0x2c2a19c,5, 0x2c2a1c0,8, 0x2c2a200,7, 0x2c2a220,12, 0x2c2a280,7, 0x2c2a2a0,12, 0x2c2a300,3, 0x2c2a310,1, 0x2c2a400,3, 0x2c2a410,2, 0x2c2a41c,5, 0x2c2a440,8, 0x2c2a480,3, 0x2c2a490,2, 0x2c2a49c,5, 0x2c2a4c0,8, 0x2c2a500,3, 0x2c2a510,2, 0x2c2a51c,5, 0x2c2a540,8, 0x2c2a580,3, 0x2c2a590,2, 0x2c2a59c,5, 0x2c2a5c0,8, 0x2c2a600,7, 0x2c2a620,12, 0x2c2a680,7, 0x2c2a6a0,12, 0x2c2a700,3, 0x2c2a710,1, 0x2c2a804,1, 0x2c2a824,21, 0x2c2a880,16, 0x2c2a900,5, 0x2c2a920,11, 0x2c2a950,9, 0x2c2a980,22, 0x2c2aa00,22, 0x2c2aa80,22, 0x2c2ab00,22, 0x2c2ab80,22, 0x2c2ac00,22, 0x2c2ac80,22, 0x2c2ad00,22, 0x2c2ad80,3, 0x2c2c000,16, 0x2c2c080,11, 0x2c2c100,11, 0x2c2c204,1, 0x2c2c224,21, 0x2c2c280,16, 0x2c2c300,11, 0x2c2c340,11, 0x2c2c800,21, 0x2c2c860,5, 0x2c2c880,6, 0x2c2c8a0,5, 0x2c2c8c0,6, 0x2c2c900,21, 0x2c2c960,5, 0x2c2c980,6, 0x2c2c9a0,5, 0x2c2c9c0,6, 0x2c2ca00,21, 0x2c2ca60,5, 0x2c2ca80,6, 0x2c2caa0,5, 0x2c2cac0,6, 0x2c2cb00,21, 0x2c2cb60,5, 0x2c2cb80,6, 0x2c2cba0,5, 0x2c2cbc0,6, 0x2c2cc00,9, 0x2c2cc48,7, 0x2c2cc68,2, 0x2c2cc74,9, 0x2c2cc9c,2, 0x2c2cd00,14, 0x2c2cd40,14, 0x2c2cd80,28, 0x2c2ce00,19, 0x2c2ce50,3, 0x2c2ce60,25, 0x2c2cec8,1, 0x2c2ced0,2, 0x2c2cee0,7, 0x2c2cf00,1, 0x2c2cf08,2, 0x2c2cffc,20, 0x2c2d050,25, 0x2c2d100,19, 0x2c2d150,25, 0x2c2d200,19, 0x2c2d250,25, 0x2c2d300,19, 0x2c2d350,25, 0x2c2d400,19, 0x2c2d450,25, 0x2c2d500,19, 0x2c2d550,25, 0x2c2d600,19, 0x2c2d650,25, 0x2c2d700,19, 0x2c2d750,25, 0x2c2d800,19, 0x2c2d850,25, 0x2c2d904,1, 0x2c2d914,10, 0x2c2d948,11, 0x2c2d980,2, 0x2c2d9a0,6, 0x2c2d9c0,2, 0x2c2d9cc,2, 0x2c2e000,35, 0x2c2ea00,10, 0x2c2ea80,3, 0x2c2eb00,6, 0x2c2f000,1, 0x2c2f008,5, 0x2c2f038,1, 0x2c2f044,1, 0x2c2f050,2, 0x2c2f100,13, 0x2c2f140,11, 0x2c2f170,12, 0x2c2f1a4,1, 0x2c2f200,104, 0x2c2f400,104, 0x2c2f600,104, 0x2c2f800,104, 0x2c30000,13, 0x2c30040,2, 0x2c30054,4, 0x2c30080,27, 0x2c30100,12, 0x2c30140,14, 0x2c30180,28, 0x2c30200,6, 0x2c30240,6, 0x2c3025c,3, 0x2c30280,5, 0x2c302a0,8, 0x2c30400,14, 0x2c30440,14, 0x2c30480,14, 0x2c304c0,14, 0x2c30540,3, 0x2c30600,7, 0x2c30620,14, 0x2c30680,5, 0x2c306a0,7, 0x2c30800,13, 0x2c30840,2, 0x2c30854,4, 0x2c30880,27, 0x2c30900,12, 0x2c30940,14, 0x2c30980,28, 0x2c30a00,6, 0x2c30a40,6, 0x2c30a5c,3, 0x2c30a80,5, 0x2c30aa0,8, 0x2c30c00,14, 0x2c30c40,14, 0x2c30c80,14, 0x2c30cc0,14, 0x2c30d40,3, 0x2c30e00,7, 0x2c30e20,14, 0x2c30e80,5, 0x2c30ea0,7, 0x2c31000,13, 0x2c31040,2, 0x2c31054,4, 0x2c31080,27, 0x2c31100,12, 0x2c31140,14, 0x2c31180,28, 0x2c31200,6, 0x2c31240,6, 0x2c3125c,3, 0x2c31280,5, 0x2c312a0,8, 0x2c31400,14, 0x2c31440,14, 0x2c31480,14, 0x2c314c0,14, 0x2c31540,3, 0x2c31600,7, 0x2c31620,14, 0x2c31680,5, 0x2c316a0,7, 0x2c31800,13, 0x2c31840,2, 0x2c31854,4, 0x2c31880,27, 0x2c31900,12, 0x2c31940,14, 0x2c31980,28, 0x2c31a00,6, 0x2c31a40,6, 0x2c31a5c,3, 0x2c31a80,5, 0x2c31aa0,8, 0x2c31c00,14, 0x2c31c40,14, 0x2c31c80,14, 0x2c31cc0,14, 0x2c31d40,3, 0x2c31e00,7, 0x2c31e20,14, 0x2c31e80,5, 0x2c31ea0,7, 0x2c32000,8, 0x2c32040,8, 0x2c32080,1, 0x2c32098,6, 0x2c32100,10, 0x2c32140,3, 0x2c32150,2, 0x2c32180,2, 0x2c32200,6, 0x2c32220,18, 0x2c32280,4, 0x2c32300,8, 0x2c32400,2, 0x2c32480,2, 0x2c32800,28, 0x2c329f0,4, 0x2c33000,40, 0x2c33100,64, 0x2c33800,56, 0x2c33be0,8, 0x2c34000,13, 0x2c34040,2, 0x2c34054,4, 0x2c34080,27, 0x2c34100,12, 0x2c34140,14, 0x2c34180,28, 0x2c34200,6, 0x2c34240,6, 0x2c3425c,3, 0x2c34280,5, 0x2c342a0,8, 0x2c34400,14, 0x2c34440,14, 0x2c34480,14, 0x2c344c0,14, 0x2c34540,3, 0x2c34600,7, 0x2c34620,14, 0x2c34680,5, 0x2c346a0,7, 0x2c34800,13, 0x2c34840,2, 0x2c34854,4, 0x2c34880,27, 0x2c34900,12, 0x2c34940,14, 0x2c34980,28, 0x2c34a00,6, 0x2c34a40,6, 0x2c34a5c,3, 0x2c34a80,5, 0x2c34aa0,8, 0x2c34c00,14, 0x2c34c40,14, 0x2c34c80,14, 0x2c34cc0,14, 0x2c34d40,3, 0x2c34e00,7, 0x2c34e20,14, 0x2c34e80,5, 0x2c34ea0,7, 0x2c35000,13, 0x2c35040,2, 0x2c35054,4, 0x2c35080,27, 0x2c35100,12, 0x2c35140,14, 0x2c35180,28, 0x2c35200,6, 0x2c35240,6, 0x2c3525c,3, 0x2c35280,5, 0x2c352a0,8, 0x2c35400,14, 0x2c35440,14, 0x2c35480,14, 0x2c354c0,14, 0x2c35540,3, 0x2c35600,7, 0x2c35620,14, 0x2c35680,5, 0x2c356a0,7, 0x2c35800,13, 0x2c35840,2, 0x2c35854,4, 0x2c35880,27, 0x2c35900,12, 0x2c35940,14, 0x2c35980,28, 0x2c35a00,6, 0x2c35a40,6, 0x2c35a5c,3, 0x2c35a80,5, 0x2c35aa0,8, 0x2c35c00,14, 0x2c35c40,14, 0x2c35c80,14, 0x2c35cc0,14, 0x2c35d40,3, 0x2c35e00,7, 0x2c35e20,14, 0x2c35e80,5, 0x2c35ea0,7, 0x2c36000,8, 0x2c36040,8, 0x2c36080,1, 0x2c36098,6, 0x2c36100,10, 0x2c36140,3, 0x2c36150,2, 0x2c36180,2, 0x2c36200,6, 0x2c36220,18, 0x2c36280,4, 0x2c36300,8, 0x2c36400,2, 0x2c36480,2, 0x2c36800,28, 0x2c369f0,4, 0x2c37000,40, 0x2c37100,64, 0x2c37800,56, 0x2c37be0,8, 0x2c38000,2, 0x2c3800c,2, 0x2c38040,7, 0x2c38100,3, 0x2c38110,3, 0x2c38120,5, 0x2c38200,6, 0x2c38240,5, 0x2c38400,2, 0x2c3840c,2, 0x2c38440,7, 0x2c38500,3, 0x2c38510,3, 0x2c38520,5, 0x2c38600,6, 0x2c38640,5, 0x2c38800,2, 0x2c3880c,2, 0x2c38840,7, 0x2c38900,3, 0x2c38910,3, 0x2c38920,5, 0x2c38a00,6, 0x2c38a40,5, 0x2c38c00,2, 0x2c38c0c,2, 0x2c38c40,7, 0x2c38d00,3, 0x2c38d10,3, 0x2c38d20,5, 0x2c38e00,6, 0x2c38e40,5, 0x2c39000,2, 0x2c3900c,2, 0x2c39040,7, 0x2c39100,3, 0x2c39110,3, 0x2c39120,5, 0x2c39200,6, 0x2c39240,5, 0x2c39400,2, 0x2c3940c,2, 0x2c39440,7, 0x2c39500,3, 0x2c39510,3, 0x2c39520,5, 0x2c39600,6, 0x2c39640,5, 0x2c39800,2, 0x2c3980c,2, 0x2c39840,7, 0x2c39900,3, 0x2c39910,3, 0x2c39920,5, 0x2c39a00,6, 0x2c39a40,5, 0x2c39c00,2, 0x2c39c0c,2, 0x2c39c40,7, 0x2c39d00,3, 0x2c39d10,3, 0x2c39d20,5, 0x2c39e00,6, 0x2c39e40,5, 0x2c3a000,5, 0x2c3a040,9, 0x2c3a100,3, 0x2c3a200,1, 0x2c3a210,1, 0x2c3a220,1, 0x2c3a230,1, 0x2c3a240,1, 0x2c3a300,3, 0x2c3a314,1, 0x2c3a320,4, 0x2c3a400,5, 0x2c3a440,5, 0x2c3b000,80, 0x2c3b200,1, 0x2c40004,5, 0x2c40020,3, 0x2c40030,3, 0x2c40040,13, 0x2c40078,4, 0x2c4009c,25, 0x2c40104,5, 0x2c40120,3, 0x2c40130,3, 0x2c40140,13, 0x2c40178,4, 0x2c4019c,25, 0x2c40204,5, 0x2c40220,3, 0x2c40230,3, 0x2c40240,13, 0x2c40278,4, 0x2c4029c,25, 0x2c40304,5, 0x2c40320,3, 0x2c40330,3, 0x2c40340,13, 0x2c40378,4, 0x2c4039c,25, 0x2c40600,4, 0x2c40c00,24, 0x2c40c80,24, 0x2c40d00,24, 0x2c40d80,24, 0x2c40e00,4, 0x2c40e20,4, 0x2c40e40,4, 0x2c40e60,4, 0x2c40e80,39, 0x2c40f20,7, 0x2c40f40,7, 0x2c40f60,7, 0x2c41000,12, 0x2c41200,1, 0x2c41218,2, 0x2c4122c,1, 0x2c41280,1, 0x2c41298,2, 0x2c412ac,1, 0x2c41300,1, 0x2c41318,2, 0x2c4132c,1, 0x2c41380,1, 0x2c41398,2, 0x2c413ac,1, 0x2c41400,4, 0x2c41420,2, 0x2c4142c,1, 0x2c41480,4, 0x2c414a0,2, 0x2c414ac,1, 0x2c41500,4, 0x2c41520,2, 0x2c4152c,1, 0x2c41580,4, 0x2c415a0,2, 0x2c415ac,1, 0x2c41600,4, 0x2c41640,4, 0x2c41680,4, 0x2c416c0,4, 0x2c41700,7, 0x2c41720,7, 0x2c41740,7, 0x2c41760,7, 0x2c41780,4, 0x2c4179c,11, 0x2c417d0,2, 0x2c417e0,2, 0x2c417f0,2, 0x2c41900,44, 0x2c42000,7, 0x2c42020,4, 0x2c42040,4, 0x2c42060,7, 0x2c42080,7, 0x2c420a0,4, 0x2c420c0,4, 0x2c420e0,7, 0x2c42100,7, 0x2c42120,4, 0x2c42140,4, 0x2c42160,7, 0x2c42180,7, 0x2c421a0,4, 0x2c421c0,4, 0x2c421e0,7, 0x2c42200,32, 0x2c42b00,1, 0x2c42b20,1, 0x2c42b28,4, 0x2c42b40,1, 0x2c42b60,1, 0x2c42b68,4, 0x2c42b80,1, 0x2c42ba0,1, 0x2c42ba8,4, 0x2c42bc0,1, 0x2c42be0,1, 0x2c42be8,4, 0x2c42c00,7, 0x2c42c20,1, 0x2c42c54,18, 0x2c42ca0,1, 0x2c42cd4,18, 0x2c42d20,1, 0x2c42d54,18, 0x2c42da0,1, 0x2c42dd4,12, 0x2c42e08,6, 0x2c43100,7, 0x2c43120,7, 0x2c43140,7, 0x2c43160,7, 0x2c43180,3, 0x2c44004,5, 0x2c44020,3, 0x2c44030,3, 0x2c44040,13, 0x2c44078,4, 0x2c4409c,25, 0x2c44104,5, 0x2c44120,3, 0x2c44130,3, 0x2c44140,13, 0x2c44178,4, 0x2c4419c,25, 0x2c44204,5, 0x2c44220,3, 0x2c44230,3, 0x2c44240,13, 0x2c44278,4, 0x2c4429c,25, 0x2c44304,5, 0x2c44320,3, 0x2c44330,3, 0x2c44340,13, 0x2c44378,4, 0x2c4439c,25, 0x2c44600,4, 0x2c44c00,24, 0x2c44c80,24, 0x2c44d00,24, 0x2c44d80,24, 0x2c44e00,4, 0x2c44e20,4, 0x2c44e40,4, 0x2c44e60,4, 0x2c44e80,39, 0x2c44f20,7, 0x2c44f40,7, 0x2c44f60,7, 0x2c45000,12, 0x2c45200,1, 0x2c45218,2, 0x2c4522c,1, 0x2c45280,1, 0x2c45298,2, 0x2c452ac,1, 0x2c45300,1, 0x2c45318,2, 0x2c4532c,1, 0x2c45380,1, 0x2c45398,2, 0x2c453ac,1, 0x2c45400,4, 0x2c45420,2, 0x2c4542c,1, 0x2c45480,4, 0x2c454a0,2, 0x2c454ac,1, 0x2c45500,4, 0x2c45520,2, 0x2c4552c,1, 0x2c45580,4, 0x2c455a0,2, 0x2c455ac,1, 0x2c45600,4, 0x2c45640,4, 0x2c45680,4, 0x2c456c0,4, 0x2c45700,7, 0x2c45720,7, 0x2c45740,7, 0x2c45760,7, 0x2c45780,4, 0x2c4579c,11, 0x2c457d0,2, 0x2c457e0,2, 0x2c457f0,2, 0x2c45900,44, 0x2c46000,7, 0x2c46020,4, 0x2c46040,4, 0x2c46060,7, 0x2c46080,7, 0x2c460a0,4, 0x2c460c0,4, 0x2c460e0,7, 0x2c46100,7, 0x2c46120,4, 0x2c46140,4, 0x2c46160,7, 0x2c46180,7, 0x2c461a0,4, 0x2c461c0,4, 0x2c461e0,7, 0x2c46200,32, 0x2c46b00,1, 0x2c46b20,1, 0x2c46b28,4, 0x2c46b40,1, 0x2c46b60,1, 0x2c46b68,4, 0x2c46b80,1, 0x2c46ba0,1, 0x2c46ba8,4, 0x2c46bc0,1, 0x2c46be0,1, 0x2c46be8,4, 0x2c46c00,7, 0x2c46c20,1, 0x2c46c54,18, 0x2c46ca0,1, 0x2c46cd4,18, 0x2c46d20,1, 0x2c46d54,18, 0x2c46da0,1, 0x2c46dd4,12, 0x2c46e08,6, 0x2c47100,7, 0x2c47120,7, 0x2c47140,7, 0x2c47160,7, 0x2c47180,3, 0x2c48000,10, 0x2c48080,3, 0x2c480c0,1, 0x2c48100,21, 0x2c48180,13, 0x2c481c4,7, 0x2c481e4,7, 0x2c48204,7, 0x2c48224,8, 0x2c49000,7, 0x2c49030,2, 0x2c49040,7, 0x2c49070,2, 0x2c49100,2, 0x2c49120,2, 0x2c49140,2, 0x2c49160,2, 0x2c49180,9, 0x2c49200,7, 0x2c49230,2, 0x2c49240,7, 0x2c49270,2, 0x2c49300,2, 0x2c49320,2, 0x2c49340,2, 0x2c49360,2, 0x2c49380,9, 0x2c49400,11, 0x2c49500,11, 0x2c4a000,3, 0x2c4a010,2, 0x2c4a01c,5, 0x2c4a040,8, 0x2c4a080,3, 0x2c4a090,2, 0x2c4a09c,5, 0x2c4a0c0,8, 0x2c4a100,3, 0x2c4a110,2, 0x2c4a11c,5, 0x2c4a140,8, 0x2c4a180,3, 0x2c4a190,2, 0x2c4a19c,5, 0x2c4a1c0,8, 0x2c4a200,7, 0x2c4a220,12, 0x2c4a280,7, 0x2c4a2a0,12, 0x2c4a300,3, 0x2c4a310,1, 0x2c4a400,3, 0x2c4a410,2, 0x2c4a41c,5, 0x2c4a440,8, 0x2c4a480,3, 0x2c4a490,2, 0x2c4a49c,5, 0x2c4a4c0,8, 0x2c4a500,3, 0x2c4a510,2, 0x2c4a51c,5, 0x2c4a540,8, 0x2c4a580,3, 0x2c4a590,2, 0x2c4a59c,5, 0x2c4a5c0,8, 0x2c4a600,7, 0x2c4a620,12, 0x2c4a680,7, 0x2c4a6a0,12, 0x2c4a700,3, 0x2c4a710,1, 0x2c4a804,1, 0x2c4a824,21, 0x2c4a880,16, 0x2c4a900,5, 0x2c4a920,11, 0x2c4a950,9, 0x2c4a980,22, 0x2c4aa00,22, 0x2c4aa80,22, 0x2c4ab00,22, 0x2c4ab80,22, 0x2c4ac00,22, 0x2c4ac80,22, 0x2c4ad00,22, 0x2c4ad80,3, 0x2c4c000,16, 0x2c4c080,11, 0x2c4c100,11, 0x2c4c204,1, 0x2c4c224,21, 0x2c4c280,16, 0x2c4c300,11, 0x2c4c340,11, 0x2c4c800,21, 0x2c4c860,5, 0x2c4c880,6, 0x2c4c8a0,5, 0x2c4c8c0,6, 0x2c4c900,21, 0x2c4c960,5, 0x2c4c980,6, 0x2c4c9a0,5, 0x2c4c9c0,6, 0x2c4ca00,21, 0x2c4ca60,5, 0x2c4ca80,6, 0x2c4caa0,5, 0x2c4cac0,6, 0x2c4cb00,21, 0x2c4cb60,5, 0x2c4cb80,6, 0x2c4cba0,5, 0x2c4cbc0,6, 0x2c4cc00,9, 0x2c4cc48,7, 0x2c4cc68,2, 0x2c4cc74,9, 0x2c4cc9c,2, 0x2c4cd00,14, 0x2c4cd40,14, 0x2c4cd80,28, 0x2c4ce00,19, 0x2c4ce50,3, 0x2c4ce60,25, 0x2c4cec8,1, 0x2c4ced0,2, 0x2c4cee0,7, 0x2c4cf00,1, 0x2c4cf08,2, 0x2c4cffc,20, 0x2c4d050,25, 0x2c4d100,19, 0x2c4d150,25, 0x2c4d200,19, 0x2c4d250,25, 0x2c4d300,19, 0x2c4d350,25, 0x2c4d400,19, 0x2c4d450,25, 0x2c4d500,19, 0x2c4d550,25, 0x2c4d600,19, 0x2c4d650,25, 0x2c4d700,19, 0x2c4d750,25, 0x2c4d800,19, 0x2c4d850,25, 0x2c4d904,1, 0x2c4d914,10, 0x2c4d948,11, 0x2c4d980,2, 0x2c4d9a0,6, 0x2c4d9c0,2, 0x2c4d9cc,2, 0x2c4e000,35, 0x2c4ea00,10, 0x2c4ea80,3, 0x2c4eb00,6, 0x2c4f000,1, 0x2c4f008,5, 0x2c4f038,1, 0x2c4f044,1, 0x2c4f050,2, 0x2c4f100,13, 0x2c4f140,11, 0x2c4f170,12, 0x2c4f1a4,1, 0x2c4f200,104, 0x2c4f400,104, 0x2c4f600,104, 0x2c4f800,104, 0x2c50000,13, 0x2c50040,2, 0x2c50054,4, 0x2c50080,27, 0x2c50100,12, 0x2c50140,14, 0x2c50180,28, 0x2c50200,6, 0x2c50240,6, 0x2c5025c,3, 0x2c50280,5, 0x2c502a0,8, 0x2c50400,14, 0x2c50440,14, 0x2c50480,14, 0x2c504c0,14, 0x2c50540,3, 0x2c50600,7, 0x2c50620,14, 0x2c50680,5, 0x2c506a0,7, 0x2c50800,13, 0x2c50840,2, 0x2c50854,4, 0x2c50880,27, 0x2c50900,12, 0x2c50940,14, 0x2c50980,28, 0x2c50a00,6, 0x2c50a40,6, 0x2c50a5c,3, 0x2c50a80,5, 0x2c50aa0,8, 0x2c50c00,14, 0x2c50c40,14, 0x2c50c80,14, 0x2c50cc0,14, 0x2c50d40,3, 0x2c50e00,7, 0x2c50e20,14, 0x2c50e80,5, 0x2c50ea0,7, 0x2c51000,13, 0x2c51040,2, 0x2c51054,4, 0x2c51080,27, 0x2c51100,12, 0x2c51140,14, 0x2c51180,28, 0x2c51200,6, 0x2c51240,6, 0x2c5125c,3, 0x2c51280,5, 0x2c512a0,8, 0x2c51400,14, 0x2c51440,14, 0x2c51480,14, 0x2c514c0,14, 0x2c51540,3, 0x2c51600,7, 0x2c51620,14, 0x2c51680,5, 0x2c516a0,7, 0x2c51800,13, 0x2c51840,2, 0x2c51854,4, 0x2c51880,27, 0x2c51900,12, 0x2c51940,14, 0x2c51980,28, 0x2c51a00,6, 0x2c51a40,6, 0x2c51a5c,3, 0x2c51a80,5, 0x2c51aa0,8, 0x2c51c00,14, 0x2c51c40,14, 0x2c51c80,14, 0x2c51cc0,14, 0x2c51d40,3, 0x2c51e00,7, 0x2c51e20,14, 0x2c51e80,5, 0x2c51ea0,7, 0x2c52000,8, 0x2c52040,8, 0x2c52080,1, 0x2c52098,6, 0x2c52100,10, 0x2c52140,3, 0x2c52150,2, 0x2c52180,2, 0x2c52200,6, 0x2c52220,18, 0x2c52280,4, 0x2c52300,8, 0x2c52400,2, 0x2c52480,2, 0x2c52800,28, 0x2c529f0,4, 0x2c53000,40, 0x2c53100,64, 0x2c53800,56, 0x2c53be0,8, 0x2c54000,13, 0x2c54040,2, 0x2c54054,4, 0x2c54080,27, 0x2c54100,12, 0x2c54140,14, 0x2c54180,28, 0x2c54200,6, 0x2c54240,6, 0x2c5425c,3, 0x2c54280,5, 0x2c542a0,8, 0x2c54400,14, 0x2c54440,14, 0x2c54480,14, 0x2c544c0,14, 0x2c54540,3, 0x2c54600,7, 0x2c54620,14, 0x2c54680,5, 0x2c546a0,7, 0x2c54800,13, 0x2c54840,2, 0x2c54854,4, 0x2c54880,27, 0x2c54900,12, 0x2c54940,14, 0x2c54980,28, 0x2c54a00,6, 0x2c54a40,6, 0x2c54a5c,3, 0x2c54a80,5, 0x2c54aa0,8, 0x2c54c00,14, 0x2c54c40,14, 0x2c54c80,14, 0x2c54cc0,14, 0x2c54d40,3, 0x2c54e00,7, 0x2c54e20,14, 0x2c54e80,5, 0x2c54ea0,7, 0x2c55000,13, 0x2c55040,2, 0x2c55054,4, 0x2c55080,27, 0x2c55100,12, 0x2c55140,14, 0x2c55180,28, 0x2c55200,6, 0x2c55240,6, 0x2c5525c,3, 0x2c55280,5, 0x2c552a0,8, 0x2c55400,14, 0x2c55440,14, 0x2c55480,14, 0x2c554c0,14, 0x2c55540,3, 0x2c55600,7, 0x2c55620,14, 0x2c55680,5, 0x2c556a0,7, 0x2c55800,13, 0x2c55840,2, 0x2c55854,4, 0x2c55880,27, 0x2c55900,12, 0x2c55940,14, 0x2c55980,28, 0x2c55a00,6, 0x2c55a40,6, 0x2c55a5c,3, 0x2c55a80,5, 0x2c55aa0,8, 0x2c55c00,14, 0x2c55c40,14, 0x2c55c80,14, 0x2c55cc0,14, 0x2c55d40,3, 0x2c55e00,7, 0x2c55e20,14, 0x2c55e80,5, 0x2c55ea0,7, 0x2c56000,8, 0x2c56040,8, 0x2c56080,1, 0x2c56098,6, 0x2c56100,10, 0x2c56140,3, 0x2c56150,2, 0x2c56180,2, 0x2c56200,6, 0x2c56220,18, 0x2c56280,4, 0x2c56300,8, 0x2c56400,2, 0x2c56480,2, 0x2c56800,28, 0x2c569f0,4, 0x2c57000,40, 0x2c57100,64, 0x2c57800,56, 0x2c57be0,8, 0x2c58000,2, 0x2c5800c,2, 0x2c58040,7, 0x2c58100,3, 0x2c58110,3, 0x2c58120,5, 0x2c58200,6, 0x2c58240,5, 0x2c58400,2, 0x2c5840c,2, 0x2c58440,7, 0x2c58500,3, 0x2c58510,3, 0x2c58520,5, 0x2c58600,6, 0x2c58640,5, 0x2c58800,2, 0x2c5880c,2, 0x2c58840,7, 0x2c58900,3, 0x2c58910,3, 0x2c58920,5, 0x2c58a00,6, 0x2c58a40,5, 0x2c58c00,2, 0x2c58c0c,2, 0x2c58c40,7, 0x2c58d00,3, 0x2c58d10,3, 0x2c58d20,5, 0x2c58e00,6, 0x2c58e40,5, 0x2c59000,2, 0x2c5900c,2, 0x2c59040,7, 0x2c59100,3, 0x2c59110,3, 0x2c59120,5, 0x2c59200,6, 0x2c59240,5, 0x2c59400,2, 0x2c5940c,2, 0x2c59440,7, 0x2c59500,3, 0x2c59510,3, 0x2c59520,5, 0x2c59600,6, 0x2c59640,5, 0x2c59800,2, 0x2c5980c,2, 0x2c59840,7, 0x2c59900,3, 0x2c59910,3, 0x2c59920,5, 0x2c59a00,6, 0x2c59a40,5, 0x2c59c00,2, 0x2c59c0c,2, 0x2c59c40,7, 0x2c59d00,3, 0x2c59d10,3, 0x2c59d20,5, 0x2c59e00,6, 0x2c59e40,5, 0x2c5a000,5, 0x2c5a040,9, 0x2c5a100,3, 0x2c5a200,1, 0x2c5a210,1, 0x2c5a220,1, 0x2c5a230,1, 0x2c5a240,1, 0x2c5a300,3, 0x2c5a314,1, 0x2c5a320,4, 0x2c5a400,5, 0x2c5a440,5, 0x2c5b000,80, 0x2c5b200,1, 0x2c60004,5, 0x2c60020,3, 0x2c60030,3, 0x2c60040,13, 0x2c60078,4, 0x2c6009c,25, 0x2c60104,5, 0x2c60120,3, 0x2c60130,3, 0x2c60140,13, 0x2c60178,4, 0x2c6019c,25, 0x2c60204,5, 0x2c60220,3, 0x2c60230,3, 0x2c60240,13, 0x2c60278,4, 0x2c6029c,25, 0x2c60304,5, 0x2c60320,3, 0x2c60330,3, 0x2c60340,13, 0x2c60378,4, 0x2c6039c,25, 0x2c60600,4, 0x2c60c00,24, 0x2c60c80,24, 0x2c60d00,24, 0x2c60d80,24, 0x2c60e00,4, 0x2c60e20,4, 0x2c60e40,4, 0x2c60e60,4, 0x2c60e80,39, 0x2c60f20,7, 0x2c60f40,7, 0x2c60f60,7, 0x2c61000,12, 0x2c61200,1, 0x2c61218,2, 0x2c6122c,1, 0x2c61280,1, 0x2c61298,2, 0x2c612ac,1, 0x2c61300,1, 0x2c61318,2, 0x2c6132c,1, 0x2c61380,1, 0x2c61398,2, 0x2c613ac,1, 0x2c61400,4, 0x2c61420,2, 0x2c6142c,1, 0x2c61480,4, 0x2c614a0,2, 0x2c614ac,1, 0x2c61500,4, 0x2c61520,2, 0x2c6152c,1, 0x2c61580,4, 0x2c615a0,2, 0x2c615ac,1, 0x2c61600,4, 0x2c61640,4, 0x2c61680,4, 0x2c616c0,4, 0x2c61700,7, 0x2c61720,7, 0x2c61740,7, 0x2c61760,7, 0x2c61780,4, 0x2c6179c,11, 0x2c617d0,2, 0x2c617e0,2, 0x2c617f0,2, 0x2c61900,44, 0x2c62000,7, 0x2c62020,4, 0x2c62040,4, 0x2c62060,7, 0x2c62080,7, 0x2c620a0,4, 0x2c620c0,4, 0x2c620e0,7, 0x2c62100,7, 0x2c62120,4, 0x2c62140,4, 0x2c62160,7, 0x2c62180,7, 0x2c621a0,4, 0x2c621c0,4, 0x2c621e0,7, 0x2c62200,32, 0x2c62b00,1, 0x2c62b20,1, 0x2c62b28,4, 0x2c62b40,1, 0x2c62b60,1, 0x2c62b68,4, 0x2c62b80,1, 0x2c62ba0,1, 0x2c62ba8,4, 0x2c62bc0,1, 0x2c62be0,1, 0x2c62be8,4, 0x2c62c00,7, 0x2c62c20,1, 0x2c62c54,18, 0x2c62ca0,1, 0x2c62cd4,18, 0x2c62d20,1, 0x2c62d54,18, 0x2c62da0,1, 0x2c62dd4,12, 0x2c62e08,6, 0x2c63100,7, 0x2c63120,7, 0x2c63140,7, 0x2c63160,7, 0x2c63180,3, 0x2c64004,5, 0x2c64020,3, 0x2c64030,3, 0x2c64040,13, 0x2c64078,4, 0x2c6409c,25, 0x2c64104,5, 0x2c64120,3, 0x2c64130,3, 0x2c64140,13, 0x2c64178,4, 0x2c6419c,25, 0x2c64204,5, 0x2c64220,3, 0x2c64230,3, 0x2c64240,13, 0x2c64278,4, 0x2c6429c,25, 0x2c64304,5, 0x2c64320,3, 0x2c64330,3, 0x2c64340,13, 0x2c64378,4, 0x2c6439c,25, 0x2c64600,4, 0x2c64c00,24, 0x2c64c80,24, 0x2c64d00,24, 0x2c64d80,24, 0x2c64e00,4, 0x2c64e20,4, 0x2c64e40,4, 0x2c64e60,4, 0x2c64e80,39, 0x2c64f20,7, 0x2c64f40,7, 0x2c64f60,7, 0x2c65000,12, 0x2c65200,1, 0x2c65218,2, 0x2c6522c,1, 0x2c65280,1, 0x2c65298,2, 0x2c652ac,1, 0x2c65300,1, 0x2c65318,2, 0x2c6532c,1, 0x2c65380,1, 0x2c65398,2, 0x2c653ac,1, 0x2c65400,4, 0x2c65420,2, 0x2c6542c,1, 0x2c65480,4, 0x2c654a0,2, 0x2c654ac,1, 0x2c65500,4, 0x2c65520,2, 0x2c6552c,1, 0x2c65580,4, 0x2c655a0,2, 0x2c655ac,1, 0x2c65600,4, 0x2c65640,4, 0x2c65680,4, 0x2c656c0,4, 0x2c65700,7, 0x2c65720,7, 0x2c65740,7, 0x2c65760,7, 0x2c65780,4, 0x2c6579c,11, 0x2c657d0,2, 0x2c657e0,2, 0x2c657f0,2, 0x2c65900,44, 0x2c66000,7, 0x2c66020,4, 0x2c66040,4, 0x2c66060,7, 0x2c66080,7, 0x2c660a0,4, 0x2c660c0,4, 0x2c660e0,7, 0x2c66100,7, 0x2c66120,4, 0x2c66140,4, 0x2c66160,7, 0x2c66180,7, 0x2c661a0,4, 0x2c661c0,4, 0x2c661e0,7, 0x2c66200,32, 0x2c66b00,1, 0x2c66b20,1, 0x2c66b28,4, 0x2c66b40,1, 0x2c66b60,1, 0x2c66b68,4, 0x2c66b80,1, 0x2c66ba0,1, 0x2c66ba8,4, 0x2c66bc0,1, 0x2c66be0,1, 0x2c66be8,4, 0x2c66c00,7, 0x2c66c20,1, 0x2c66c54,18, 0x2c66ca0,1, 0x2c66cd4,18, 0x2c66d20,1, 0x2c66d54,18, 0x2c66da0,1, 0x2c66dd4,12, 0x2c66e08,6, 0x2c67100,7, 0x2c67120,7, 0x2c67140,7, 0x2c67160,7, 0x2c67180,3, 0x2c68000,10, 0x2c68080,3, 0x2c680c0,1, 0x2c68100,21, 0x2c68180,13, 0x2c681c4,7, 0x2c681e4,7, 0x2c68204,7, 0x2c68224,8, 0x2c69000,7, 0x2c69030,2, 0x2c69040,7, 0x2c69070,2, 0x2c69100,2, 0x2c69120,2, 0x2c69140,2, 0x2c69160,2, 0x2c69180,9, 0x2c69200,7, 0x2c69230,2, 0x2c69240,7, 0x2c69270,2, 0x2c69300,2, 0x2c69320,2, 0x2c69340,2, 0x2c69360,2, 0x2c69380,9, 0x2c69400,11, 0x2c69500,11, 0x2c6a000,3, 0x2c6a010,2, 0x2c6a01c,5, 0x2c6a040,8, 0x2c6a080,3, 0x2c6a090,2, 0x2c6a09c,5, 0x2c6a0c0,8, 0x2c6a100,3, 0x2c6a110,2, 0x2c6a11c,5, 0x2c6a140,8, 0x2c6a180,3, 0x2c6a190,2, 0x2c6a19c,5, 0x2c6a1c0,8, 0x2c6a200,7, 0x2c6a220,12, 0x2c6a280,7, 0x2c6a2a0,12, 0x2c6a300,3, 0x2c6a310,1, 0x2c6a400,3, 0x2c6a410,2, 0x2c6a41c,5, 0x2c6a440,8, 0x2c6a480,3, 0x2c6a490,2, 0x2c6a49c,5, 0x2c6a4c0,8, 0x2c6a500,3, 0x2c6a510,2, 0x2c6a51c,5, 0x2c6a540,8, 0x2c6a580,3, 0x2c6a590,2, 0x2c6a59c,5, 0x2c6a5c0,8, 0x2c6a600,7, 0x2c6a620,12, 0x2c6a680,7, 0x2c6a6a0,12, 0x2c6a700,3, 0x2c6a710,1, 0x2c6a804,1, 0x2c6a824,21, 0x2c6a880,16, 0x2c6a900,5, 0x2c6a920,11, 0x2c6a950,9, 0x2c6a980,22, 0x2c6aa00,22, 0x2c6aa80,22, 0x2c6ab00,22, 0x2c6ab80,22, 0x2c6ac00,22, 0x2c6ac80,22, 0x2c6ad00,22, 0x2c6ad80,3, 0x2c6c000,16, 0x2c6c080,11, 0x2c6c100,11, 0x2c6c204,1, 0x2c6c224,21, 0x2c6c280,16, 0x2c6c300,11, 0x2c6c340,11, 0x2c6c800,21, 0x2c6c860,5, 0x2c6c880,6, 0x2c6c8a0,5, 0x2c6c8c0,6, 0x2c6c900,21, 0x2c6c960,5, 0x2c6c980,6, 0x2c6c9a0,5, 0x2c6c9c0,6, 0x2c6ca00,21, 0x2c6ca60,5, 0x2c6ca80,6, 0x2c6caa0,5, 0x2c6cac0,6, 0x2c6cb00,21, 0x2c6cb60,5, 0x2c6cb80,6, 0x2c6cba0,5, 0x2c6cbc0,6, 0x2c6cc00,9, 0x2c6cc48,7, 0x2c6cc68,2, 0x2c6cc74,9, 0x2c6cc9c,2, 0x2c6cd00,14, 0x2c6cd40,14, 0x2c6cd80,28, 0x2c6ce00,19, 0x2c6ce50,3, 0x2c6ce60,25, 0x2c6cec8,1, 0x2c6ced0,2, 0x2c6cee0,7, 0x2c6cf00,1, 0x2c6cf08,2, 0x2c6cffc,20, 0x2c6d050,25, 0x2c6d100,19, 0x2c6d150,25, 0x2c6d200,19, 0x2c6d250,25, 0x2c6d300,19, 0x2c6d350,25, 0x2c6d400,19, 0x2c6d450,25, 0x2c6d500,19, 0x2c6d550,25, 0x2c6d600,19, 0x2c6d650,25, 0x2c6d700,19, 0x2c6d750,25, 0x2c6d800,19, 0x2c6d850,25, 0x2c6d904,1, 0x2c6d914,10, 0x2c6d948,11, 0x2c6d980,2, 0x2c6d9a0,6, 0x2c6d9c0,2, 0x2c6d9cc,2, 0x2c6e000,35, 0x2c6ea00,10, 0x2c6ea80,3, 0x2c6eb00,6, 0x2c6f000,1, 0x2c6f008,5, 0x2c6f038,1, 0x2c6f044,1, 0x2c6f050,2, 0x2c6f100,13, 0x2c6f140,11, 0x2c6f170,12, 0x2c6f1a4,1, 0x2c6f200,104, 0x2c6f400,104, 0x2c6f600,104, 0x2c6f800,104, 0x2c70000,13, 0x2c70040,2, 0x2c70054,4, 0x2c70080,27, 0x2c70100,12, 0x2c70140,14, 0x2c70180,28, 0x2c70200,6, 0x2c70240,6, 0x2c7025c,3, 0x2c70280,5, 0x2c702a0,8, 0x2c70400,14, 0x2c70440,14, 0x2c70480,14, 0x2c704c0,14, 0x2c70540,3, 0x2c70600,7, 0x2c70620,14, 0x2c70680,5, 0x2c706a0,7, 0x2c70800,13, 0x2c70840,2, 0x2c70854,4, 0x2c70880,27, 0x2c70900,12, 0x2c70940,14, 0x2c70980,28, 0x2c70a00,6, 0x2c70a40,6, 0x2c70a5c,3, 0x2c70a80,5, 0x2c70aa0,8, 0x2c70c00,14, 0x2c70c40,14, 0x2c70c80,14, 0x2c70cc0,14, 0x2c70d40,3, 0x2c70e00,7, 0x2c70e20,14, 0x2c70e80,5, 0x2c70ea0,7, 0x2c71000,13, 0x2c71040,2, 0x2c71054,4, 0x2c71080,27, 0x2c71100,12, 0x2c71140,14, 0x2c71180,28, 0x2c71200,6, 0x2c71240,6, 0x2c7125c,3, 0x2c71280,5, 0x2c712a0,8, 0x2c71400,14, 0x2c71440,14, 0x2c71480,14, 0x2c714c0,14, 0x2c71540,3, 0x2c71600,7, 0x2c71620,14, 0x2c71680,5, 0x2c716a0,7, 0x2c71800,13, 0x2c71840,2, 0x2c71854,4, 0x2c71880,27, 0x2c71900,12, 0x2c71940,14, 0x2c71980,28, 0x2c71a00,6, 0x2c71a40,6, 0x2c71a5c,3, 0x2c71a80,5, 0x2c71aa0,8, 0x2c71c00,14, 0x2c71c40,14, 0x2c71c80,14, 0x2c71cc0,14, 0x2c71d40,3, 0x2c71e00,7, 0x2c71e20,14, 0x2c71e80,5, 0x2c71ea0,7, 0x2c72000,8, 0x2c72040,8, 0x2c72080,1, 0x2c72098,6, 0x2c72100,10, 0x2c72140,3, 0x2c72150,2, 0x2c72180,2, 0x2c72200,6, 0x2c72220,18, 0x2c72280,4, 0x2c72300,8, 0x2c72400,2, 0x2c72480,2, 0x2c72800,28, 0x2c729f0,4, 0x2c73000,40, 0x2c73100,64, 0x2c73800,56, 0x2c73be0,8, 0x2c74000,13, 0x2c74040,2, 0x2c74054,4, 0x2c74080,27, 0x2c74100,12, 0x2c74140,14, 0x2c74180,28, 0x2c74200,6, 0x2c74240,6, 0x2c7425c,3, 0x2c74280,5, 0x2c742a0,8, 0x2c74400,14, 0x2c74440,14, 0x2c74480,14, 0x2c744c0,14, 0x2c74540,3, 0x2c74600,7, 0x2c74620,14, 0x2c74680,5, 0x2c746a0,7, 0x2c74800,13, 0x2c74840,2, 0x2c74854,4, 0x2c74880,27, 0x2c74900,12, 0x2c74940,14, 0x2c74980,28, 0x2c74a00,6, 0x2c74a40,6, 0x2c74a5c,3, 0x2c74a80,5, 0x2c74aa0,8, 0x2c74c00,14, 0x2c74c40,14, 0x2c74c80,14, 0x2c74cc0,14, 0x2c74d40,3, 0x2c74e00,7, 0x2c74e20,14, 0x2c74e80,5, 0x2c74ea0,7, 0x2c75000,13, 0x2c75040,2, 0x2c75054,4, 0x2c75080,27, 0x2c75100,12, 0x2c75140,14, 0x2c75180,28, 0x2c75200,6, 0x2c75240,6, 0x2c7525c,3, 0x2c75280,5, 0x2c752a0,8, 0x2c75400,14, 0x2c75440,14, 0x2c75480,14, 0x2c754c0,14, 0x2c75540,3, 0x2c75600,7, 0x2c75620,14, 0x2c75680,5, 0x2c756a0,7, 0x2c75800,13, 0x2c75840,2, 0x2c75854,4, 0x2c75880,27, 0x2c75900,12, 0x2c75940,14, 0x2c75980,28, 0x2c75a00,6, 0x2c75a40,6, 0x2c75a5c,3, 0x2c75a80,5, 0x2c75aa0,8, 0x2c75c00,14, 0x2c75c40,14, 0x2c75c80,14, 0x2c75cc0,14, 0x2c75d40,3, 0x2c75e00,7, 0x2c75e20,14, 0x2c75e80,5, 0x2c75ea0,7, 0x2c76000,8, 0x2c76040,8, 0x2c76080,1, 0x2c76098,6, 0x2c76100,10, 0x2c76140,3, 0x2c76150,2, 0x2c76180,2, 0x2c76200,6, 0x2c76220,18, 0x2c76280,4, 0x2c76300,8, 0x2c76400,2, 0x2c76480,2, 0x2c76800,28, 0x2c769f0,4, 0x2c77000,40, 0x2c77100,64, 0x2c77800,56, 0x2c77be0,8, 0x2c78000,2, 0x2c7800c,2, 0x2c78040,7, 0x2c78100,3, 0x2c78110,3, 0x2c78120,5, 0x2c78200,6, 0x2c78240,5, 0x2c78400,2, 0x2c7840c,2, 0x2c78440,7, 0x2c78500,3, 0x2c78510,3, 0x2c78520,5, 0x2c78600,6, 0x2c78640,5, 0x2c78800,2, 0x2c7880c,2, 0x2c78840,7, 0x2c78900,3, 0x2c78910,3, 0x2c78920,5, 0x2c78a00,6, 0x2c78a40,5, 0x2c78c00,2, 0x2c78c0c,2, 0x2c78c40,7, 0x2c78d00,3, 0x2c78d10,3, 0x2c78d20,5, 0x2c78e00,6, 0x2c78e40,5, 0x2c79000,2, 0x2c7900c,2, 0x2c79040,7, 0x2c79100,3, 0x2c79110,3, 0x2c79120,5, 0x2c79200,6, 0x2c79240,5, 0x2c79400,2, 0x2c7940c,2, 0x2c79440,7, 0x2c79500,3, 0x2c79510,3, 0x2c79520,5, 0x2c79600,6, 0x2c79640,5, 0x2c79800,2, 0x2c7980c,2, 0x2c79840,7, 0x2c79900,3, 0x2c79910,3, 0x2c79920,5, 0x2c79a00,6, 0x2c79a40,5, 0x2c79c00,2, 0x2c79c0c,2, 0x2c79c40,7, 0x2c79d00,3, 0x2c79d10,3, 0x2c79d20,5, 0x2c79e00,6, 0x2c79e40,5, 0x2c7a000,5, 0x2c7a040,9, 0x2c7a100,3, 0x2c7a200,1, 0x2c7a210,1, 0x2c7a220,1, 0x2c7a230,1, 0x2c7a240,1, 0x2c7a300,3, 0x2c7a314,1, 0x2c7a320,4, 0x2c7a400,5, 0x2c7a440,5, 0x2c7b000,80, 0x2c7b200,1, 0x2c80000,3, 0x2c80010,7, 0x2c80030,10, 0x2c80080,2, 0x2c80100,6, 0x2c80140,2, 0x2c80180,2, 0x2c801a0,1, 0x2c80400,2, 0x2c80440,4, 0x2c80460,5, 0x2c80478,1, 0x2c80480,6, 0x2c804a0,3, 0x2c804b0,2, 0x2c80500,5, 0x2c80600,1, 0x2c80800,5, 0x2c80900,5, 0x2c80a00,5, 0x2c80b00,3, 0x2c80c00,35, 0x2c80d00,25, 0x2c80d80,1, 0x2c80dc0,3, 0x2c80e00,2, 0x2c80e20,2, 0x2c90000,3, 0x2c9001c,4, 0x2c90080,3, 0x2c90090,2, 0x2c900d4,4, 0x2c900ec,27, 0x2c9015c,27, 0x2c901cc,19, 0x2c90224,120, 0x2c90408,24, 0x2c9046c,84, 0x2c905f8,4, 0x2c90610,27, 0x2c90680,27, 0x2c906f0,19, 0x2c90748,120, 0x2c9092c,24, 0x2c90990,84, 0x2c90b1c,4, 0x2c90b34,27, 0x2c90ba4,27, 0x2c90c14,19, 0x2c90c6c,120, 0x2c90e50,24, 0x2c90eb4,84, 0x2c91040,4, 0x2c91058,27, 0x2c910c8,27, 0x2c91138,19, 0x2c91190,120, 0x2c91374,24, 0x2c913d8,84, 0x2c91564,4, 0x2c9157c,27, 0x2c915ec,27, 0x2c9165c,19, 0x2c916b4,120, 0x2c91898,24, 0x2c918fc,84, 0x2c91a88,4, 0x2c91aa0,27, 0x2c91b10,27, 0x2c91b80,19, 0x2c91bd8,120, 0x2c91dbc,24, 0x2c91e20,84, 0x2c91fac,4, 0x2c91fc4,27, 0x2c92034,27, 0x2c920a4,19, 0x2c920fc,120, 0x2c922e0,24, 0x2c92344,84, 0x2c924d0,4, 0x2c924e8,27, 0x2c92558,27, 0x2c925c8,19, 0x2c92620,120, 0x2c92804,24, 0x2c92868,84, 0x2c929f4,4, 0x2c92a0c,27, 0x2c92a7c,27, 0x2c92aec,19, 0x2c92b44,120, 0x2c92d28,24, 0x2c92d8c,84, 0x2c92f18,4, 0x2c92f30,27, 0x2c92fa0,27, 0x2c93010,19, 0x2c93068,120, 0x2c9324c,24, 0x2c932b0,84, 0x2c9343c,4, 0x2c93454,27, 0x2c934c4,27, 0x2c93534,19, 0x2c9358c,120, 0x2c93770,24, 0x2c937d4,84, 0x2c93960,4, 0x2c93978,27, 0x2c939e8,27, 0x2c93a58,19, 0x2c93ab0,120, 0x2c93c94,24, 0x2c93cf8,84, 0x2c93e84,4, 0x2c93e9c,27, 0x2c93f0c,27, 0x2c93f7c,19, 0x2c93fd4,120, 0x2c941b8,24, 0x2c9421c,84, 0x2c943a8,4, 0x2c943c0,27, 0x2c94430,27, 0x2c944a0,19, 0x2c944f8,120, 0x2c946dc,24, 0x2c94740,84, 0x2c948cc,4, 0x2c948e4,27, 0x2c94954,27, 0x2c949c4,19, 0x2c94a1c,120, 0x2c94c00,24, 0x2c94c64,84, 0x2c94df0,4, 0x2c94e08,27, 0x2c94e78,27, 0x2c94ee8,19, 0x2c94f40,120, 0x2c95124,24, 0x2c95188,84, 0x2c95314,4, 0x2c9532c,27, 0x2c9539c,27, 0x2c9540c,19, 0x2c95464,120, 0x2c95648,24, 0x2c956ac,84, 0x2c95838,14, 0x2c95940,13, 0x2c95a44,13, 0x2c95b48,16, 0x2c95b90,42, 0x2c95c40,2, 0x2c95c90,54, 0x2c95d70,58, 0x2c95e60,58, 0x2c95f50,58, 0x2c96040,58, 0x2c96130,58, 0x2c96220,58, 0x2c96310,58, 0x2c96400,58, 0x2c964f0,58, 0x2c965e0,58, 0x2c966d0,58, 0x2c967c0,58, 0x2c968b0,58, 0x2c969a0,58, 0x2c96a90,58, 0x2c96b80,58, 0x2c96c70,58, 0x2c96d60,58, 0x2c96e50,58, 0x2c96f40,58, 0x2c97030,58, 0x2c97120,58, 0x2c97210,58, 0x2c97300,58, 0x2c973f0,58, 0x2c974e0,58, 0x2c975d0,58, 0x2c976c0,58, 0x2c977b0,58, 0x2c978a0,58, 0x2c97990,58, 0x2c97a80,101, 0x2c97c90,49, 0x2c97db0,18, 0x2c97e00,11, 0x2c97e30,4, 0x2c97e54,45, 0x2c97f58,9, 0x2c97f88,3, 0x2c97fa0,2, 0x2c97fd8,14, 0x2c98014,12, 0x2c98158,3, 0x2c98168,2, 0x2c98174,68, 0x2c98288,2, 0x2c98294,68, 0x2c983a8,1, 0x2c983b0,2, 0x2c983bc,68, 0x2c984d0,2, 0x2c984dc,68, 0x2c985f0,1, 0x2c985f8,4, 0x2c98610,3, 0x2c98624,12, 0x2c98688,8, 0x2c986dc,1, 0x2c986e8,4, 0x2c98700,3, 0x2c98714,12, 0x2c98778,8, 0x2c987cc,1, 0x2c987d8,4, 0x2c987f0,3, 0x2c98804,12, 0x2c98868,8, 0x2c988bc,1, 0x2c988c8,4, 0x2c988e0,3, 0x2c988f4,12, 0x2c98958,8, 0x2c989ac,1, 0x2c989b8,4, 0x2c989d0,3, 0x2c989e4,12, 0x2c98a48,8, 0x2c98a9c,1, 0x2c98aa8,4, 0x2c98ac0,3, 0x2c98ad4,12, 0x2c98b38,8, 0x2c98b8c,1, 0x2c98b98,4, 0x2c98bb0,3, 0x2c98bc4,12, 0x2c98c28,8, 0x2c98c7c,1, 0x2c98c88,4, 0x2c98ca0,3, 0x2c98cb4,12, 0x2c98d18,8, 0x2c98d6c,1, 0x2c98d78,4, 0x2c98d90,3, 0x2c98da4,12, 0x2c98e08,8, 0x2c98e5c,1, 0x2c98e68,4, 0x2c98e80,3, 0x2c98e94,12, 0x2c98ef8,8, 0x2c98f4c,1, 0x2c98f58,4, 0x2c98f70,3, 0x2c98f84,12, 0x2c98fe8,8, 0x2c9903c,1, 0x2c99048,4, 0x2c99060,3, 0x2c99074,12, 0x2c990d8,8, 0x2c9912c,1, 0x2c99138,4, 0x2c99150,3, 0x2c99164,12, 0x2c991c8,8, 0x2c9921c,1, 0x2c99228,4, 0x2c99240,3, 0x2c99254,12, 0x2c992b8,8, 0x2c9930c,1, 0x2c99318,4, 0x2c99330,3, 0x2c99344,12, 0x2c993a8,8, 0x2c993fc,1, 0x2c99408,4, 0x2c99420,3, 0x2c99434,12, 0x2c99498,8, 0x2c994ec,1, 0x2c994f8,4, 0x2c99510,3, 0x2c99524,12, 0x2c99588,8, 0x2c995dc,1, 0x2c995e8,64, 0x2c99748,5, 0x2c99990,28, 0x2c99a04,1, 0x2c99a98,1, 0x2c99be8,5, 0x2c99c04,3, 0x2c99c18,13, 0x2c99c50,2, 0x2c9a000,15, 0x2c9a044,81, 0x2c9a18c,84, 0x2c9a2e0,84, 0x2c9a434,84, 0x2c9a588,84, 0x2c9a6dc,84, 0x2c9a830,84, 0x2c9a984,84, 0x2c9aad8,84, 0x2c9ac2c,84, 0x2c9ad80,84, 0x2c9aed4,84, 0x2c9b028,84, 0x2c9b17c,84, 0x2c9b2d0,84, 0x2c9b424,84, 0x2c9b578,84, 0x2c9b6cc,5, 0x2c9b760,4, 0x2c9b8e0,2414, 0x2c9dea4,80, 0x2c9e048,4, 0x2c9ebe0,1, 0x2c9ebf0,97, 0x2c9ed94,7, 0x2c9ee7c,1, 0x2c9eeac,9, 0x2c9eed4,5, 0x2c9eeec,11, 0x2c9ef2c,17, 0x2c9ef74,29, 0x2c9f034,3, 0x2c9f044,1, 0x2c9f054,17, 0x2c9fbe0,3, 0x2c9fbf0,2, 0x2ca0000,3, 0x2ca0018,2, 0x2ca0024,14, 0x2ca0060,27, 0x2ca00d0,3, 0x2ca00e0,3, 0x2ca00f0,3, 0x2ca0100,4, 0x2ca0120,6, 0x2ca0140,3, 0x2ca0150,1, 0x2ca015c,4, 0x2ca0170,1, 0x2ca0180,15, 0x2ca01c0,1, 0x2ca01c8,5, 0x2ca01e0,1, 0x2ca01f0,3, 0x2ca0200,3, 0x2ca0218,2, 0x2ca0224,14, 0x2ca0260,27, 0x2ca02d0,3, 0x2ca02e0,3, 0x2ca02f0,3, 0x2ca0300,4, 0x2ca0320,6, 0x2ca0340,3, 0x2ca0350,1, 0x2ca035c,4, 0x2ca0370,1, 0x2ca0380,15, 0x2ca03c0,1, 0x2ca03c8,5, 0x2ca03e0,1, 0x2ca03f0,3, 0x2ca0400,3, 0x2ca0418,2, 0x2ca0424,14, 0x2ca0460,27, 0x2ca04d0,3, 0x2ca04e0,3, 0x2ca04f0,3, 0x2ca0500,4, 0x2ca0520,6, 0x2ca0540,3, 0x2ca0550,1, 0x2ca055c,4, 0x2ca0570,1, 0x2ca0580,15, 0x2ca05c0,1, 0x2ca05c8,5, 0x2ca05e0,1, 0x2ca05f0,3, 0x2ca0600,3, 0x2ca0618,2, 0x2ca0624,14, 0x2ca0660,27, 0x2ca06d0,3, 0x2ca06e0,3, 0x2ca06f0,3, 0x2ca0700,4, 0x2ca0720,6, 0x2ca0740,3, 0x2ca0750,1, 0x2ca075c,4, 0x2ca0770,1, 0x2ca0780,15, 0x2ca07c0,1, 0x2ca07c8,5, 0x2ca07e0,1, 0x2ca07f0,3, 0x2ca0800,3, 0x2ca0818,2, 0x2ca0824,14, 0x2ca0860,27, 0x2ca08d0,3, 0x2ca08e0,3, 0x2ca08f0,3, 0x2ca0900,4, 0x2ca0920,6, 0x2ca0940,3, 0x2ca0950,1, 0x2ca095c,4, 0x2ca0970,1, 0x2ca0980,15, 0x2ca09c0,1, 0x2ca09c8,5, 0x2ca09e0,1, 0x2ca09f0,3, 0x2ca1844,1, 0x2ca1858,5, 0x2ca1904,3, 0x2ca1950,3, 0x2ca1988,2, 0x2ca19a0,7, 0x2ca19c0,7, 0x2ca19e0,4, 0x2ca2000,24, 0x2ca20f0,3, 0x2ca2100,7, 0x2ca2120,7, 0x2ca2144,7, 0x2ca2400,4, 0x2ca2420,5, 0x2ca25e0,3, 0x2ca25f4,1, 0x2ca25fc,4, 0x2ca2620,3, 0x2ca2680,8, 0x2ca2700,19, 0x2ca2800,99, 0x2ca2a00,18, 0x2ca2a80,8, 0x2ca2b00,1, 0x2ca3070,1, 0x2ca3080,2, 0x2ca308c,1, 0x2ca3098,2, 0x2ca3404,1, 0x2ca3440,20, 0x2ca3494,1, 0x2ca349c,7, 0x2ca34d0,4, 0x2ca34e8,2, 0x2ca34fc,8, 0x2ca3520,7, 0x2ca3540,7, 0x2ca3560,7, 0x2ca3580,7, 0x2ca35a0,7, 0x2ca35c0,7, 0x2ca35e0,7, 0x2ca3600,9, 0x2ca363c,2, 0x2ca3650,6, 0x2ca3684,10, 0x2ca3a00,10, 0x2ca3a30,1, 0x2ca3a40,8, 0x2ca3a64,5, 0x2ca4a04,3, 0x2ca4b00,33, 0x2ca4b90,3, 0x2ca5000,8, 0x2ca5040,8, 0x2ca5104,1, 0x2ca510c,3, 0x2ca5124,1, 0x2ca512c,3, 0x2ca6000,13, 0x2ca6200,14, 0x2ca6240,1, 0x2ca6248,1, 0x2ca6258,1, 0x2ca6260,8, 0x2ca6284,1, 0x2ca62a0,8, 0x2ca6348,5, 0x2ca67f0,1, 0x2ca67f8,1, 0x2ca6a10,12, 0x2ca7000,19, 0x2ca7a00,10, 0x2ca7a80,3, 0x2ca7b00,6, 0x2cc0000,1, 0x2cc000c,5, 0x2cc0044,1, 0x2cc0054,5, 0x2cc0200,128, 0x2cc0404,1, 0x2cc0428,54, 0x2cc0600,32, 0x2cc0704,1, 0x2cc0800,1, 0x2cc0900,1, 0x2cc0910,2, 0x2cc0920,3, 0x2cc0980,10, 0x2cc0a00,19, 0x2cc0b00,1, 0x2ce0000,2, 0x2ce000c,2, 0x2ce0018,2, 0x2ce0024,2, 0x2ce0030,2, 0x2ce003c,2, 0x2ce0048,2, 0x2ce0054,2, 0x2ce0060,1, 0x2ce0070,2, 0x2ce007c,2, 0x2ce0088,2, 0x2ce0094,2, 0x2ce00a0,2, 0x2ce00ac,2, 0x2ce00b8,2, 0x2ce00c4,2, 0x2ce00d0,1, 0x2ce00e0,2, 0x2ce00ec,2, 0x2ce00f8,2, 0x2ce0104,2, 0x2ce0110,2, 0x2ce011c,2, 0x2ce0128,2, 0x2ce0134,2, 0x2ce0140,1, 0x2ce0150,2, 0x2ce015c,2, 0x2ce0168,2, 0x2ce0174,2, 0x2ce0180,2, 0x2ce018c,2, 0x2ce0198,2, 0x2ce01a4,2, 0x2ce01b0,1, 0x2ce01c0,57, 0x2ce02b0,67, 0x2ce03c0,16, 0x2ce0410,23, 0x2ce0470,16, 0x2ce04c0,23, 0x2ce0520,16, 0x2ce0570,23, 0x2ce05d0,16, 0x2ce0620,23, 0x2ce0680,16, 0x2ce06d0,23, 0x2ce0730,16, 0x2ce0780,23, 0x2ce07e0,16, 0x2ce0830,23, 0x2ce0890,16, 0x2ce08e0,23, 0x2ce0940,16, 0x2ce0990,23, 0x2ce09f0,16, 0x2ce0a40,23, 0x2ce0aa0,16, 0x2ce0af0,23, 0x2ce0b50,16, 0x2ce0ba0,23, 0x2ce0c00,16, 0x2ce0c50,23, 0x2ce0cb0,16, 0x2ce0d00,23, 0x2ce0d60,16, 0x2ce0db0,23, 0x2ce0e10,16, 0x2ce0e60,23, 0x2ce0ec0,16, 0x2ce0f10,23, 0x2ce0f70,16, 0x2ce0fc0,23, 0x2ce1020,16, 0x2ce1070,23, 0x2ce10d0,16, 0x2ce1120,23, 0x2ce1180,16, 0x2ce11d0,23, 0x2ce1230,16, 0x2ce1280,23, 0x2ce12e0,16, 0x2ce1330,23, 0x2ce1390,16, 0x2ce13e0,23, 0x2ce1440,16, 0x2ce1490,23, 0x2ce14f0,16, 0x2ce1540,23, 0x2ce15a0,16, 0x2ce15f0,23, 0x2ce1650,16, 0x2ce16a0,23, 0x2ce1700,16, 0x2ce1750,23, 0x2ce17b0,16, 0x2ce1800,23, 0x2ce1860,16, 0x2ce18b0,23, 0x2ce1910,16, 0x2ce1960,2, 0x2cf0000,4, 0x2cf0014,2, 0x2cf0020,8, 0x2cf0044,2, 0x2cf0050,13, 0x2cf0088,20, 0x2cf00dc,1, 0x2cf0180,6, 0x2cf0590,3, 0x2cf05c0,2, 0x2cf0a04,1, 0x2cf0a0c,3, 0x2cf0a20,1, 0x2cf0ba0,4, 0x2cf0c00,4, 0x2cf0c20,3, 0x2cf0c30,5, 0x2cf0c50,52, 0x2cf0d50,57, 0x2cf0ec0,3, 0x2cf0ffc,3, 0x2cf1020,3, 0x2cf1030,3, 0x2cf1060,2, 0x2cf1100,2, 0x2cf1140,18, 0x2cf11c0,30, 0x2cf1240,14, 0x2cf1280,28, 0x2cf1300,2, 0x2cf13a0,6, 0x2cf1400,19, 0x2cf1800,19, 0x2cf1c00,19, 0x2cf1c80,8, 0x2cf1d00,3, 0x2cf1d50,3, 0x2cf1e00,3, 0x2cf1e10,2, 0x2cf1e20,6, 0x2cf1e40,6, 0x2cf1e60,6, 0x2cf1e80,6, 0x2cf1ea0,6, 0x2cf1ec0,2, 0x2cf1ecc,2, 0x2cf1ee0,2, 0x2cf1eec,2, 0x2cf1f80,3, 0x2cf1f90,60, 0x2cf2100,32, 0x2cf2200,32, 0x2cf2300,32, 0x2cf2400,32, 0x2cf2500,32, 0x2cf2600,32, 0x2cf2700,32, 0x2cf2800,32, 0x2cf2900,32, 0x2cf2a00,32, 0x2cf2b00,32, 0x2cf2c00,32, 0x2cf2d00,32, 0x2cf2e00,32, 0x2cf2f00,32, 0x2cf3000,32, 0x2cf30c0,3, 0x2cf4000,2, 0x2cf4040,16, 0x2cf4100,36, 0x2cf4800,5, 0x2cf4824,1, 0x2cf482c,1, 0x2cf4c04,1, 0x2cf4cd8,74, 0x2cf5000,7, 0x2cf5020,4, 0x2cf5204,1, 0x2cf5280,35, 0x2cf5310,4, 0x2cf5404,1, 0x2cf5480,34, 0x2cf5510,10, 0x2cf553c,3, 0x2cf5800,7, 0x2cf5820,4, 0x2cf5a04,1, 0x2cf5a80,35, 0x2cf5b10,4, 0x2cf5c04,1, 0x2cf5c80,34, 0x2cf5d10,10, 0x2cf5d3c,3, 0x2cfa000,5, 0x2cfa01c,13, 0x2cfa060,3, 0x2cfa080,8, 0x2cfa100,5, 0x2cfa11c,13, 0x2cfa160,3, 0x2cfa180,8, 0x2e00004,5, 0x2e00020,3, 0x2e00030,3, 0x2e00040,13, 0x2e00078,4, 0x2e0009c,25, 0x2e00104,5, 0x2e00120,3, 0x2e00130,3, 0x2e00140,13, 0x2e00178,4, 0x2e0019c,25, 0x2e00204,5, 0x2e00220,3, 0x2e00230,3, 0x2e00240,13, 0x2e00278,4, 0x2e0029c,25, 0x2e00304,5, 0x2e00320,3, 0x2e00330,3, 0x2e00340,13, 0x2e00378,4, 0x2e0039c,25, 0x2e00600,4, 0x2e00c00,24, 0x2e00c80,24, 0x2e00d00,24, 0x2e00d80,24, 0x2e00e00,4, 0x2e00e20,4, 0x2e00e40,4, 0x2e00e60,4, 0x2e00e80,39, 0x2e00f20,7, 0x2e00f40,7, 0x2e00f60,7, 0x2e01000,12, 0x2e01200,1, 0x2e01218,2, 0x2e0122c,1, 0x2e01280,1, 0x2e01298,2, 0x2e012ac,1, 0x2e01300,1, 0x2e01318,2, 0x2e0132c,1, 0x2e01380,1, 0x2e01398,2, 0x2e013ac,1, 0x2e01400,4, 0x2e01420,2, 0x2e0142c,1, 0x2e01480,4, 0x2e014a0,2, 0x2e014ac,1, 0x2e01500,4, 0x2e01520,2, 0x2e0152c,1, 0x2e01580,4, 0x2e015a0,2, 0x2e015ac,1, 0x2e01600,4, 0x2e01640,4, 0x2e01680,4, 0x2e016c0,4, 0x2e01700,7, 0x2e01720,7, 0x2e01740,7, 0x2e01760,7, 0x2e01780,4, 0x2e0179c,11, 0x2e017d0,2, 0x2e017e0,2, 0x2e017f0,2, 0x2e01900,44, 0x2e02000,7, 0x2e02020,4, 0x2e02040,4, 0x2e02060,7, 0x2e02080,7, 0x2e020a0,4, 0x2e020c0,4, 0x2e020e0,7, 0x2e02100,7, 0x2e02120,4, 0x2e02140,4, 0x2e02160,7, 0x2e02180,7, 0x2e021a0,4, 0x2e021c0,4, 0x2e021e0,7, 0x2e02200,32, 0x2e02b00,1, 0x2e02b20,1, 0x2e02b28,4, 0x2e02b40,1, 0x2e02b60,1, 0x2e02b68,4, 0x2e02b80,1, 0x2e02ba0,1, 0x2e02ba8,4, 0x2e02bc0,1, 0x2e02be0,1, 0x2e02be8,4, 0x2e02c00,7, 0x2e02c20,1, 0x2e02c54,18, 0x2e02ca0,1, 0x2e02cd4,18, 0x2e02d20,1, 0x2e02d54,18, 0x2e02da0,1, 0x2e02dd4,12, 0x2e02e08,6, 0x2e03100,7, 0x2e03120,7, 0x2e03140,7, 0x2e03160,7, 0x2e03180,3, 0x2e04004,5, 0x2e04020,3, 0x2e04030,3, 0x2e04040,13, 0x2e04078,4, 0x2e0409c,25, 0x2e04104,5, 0x2e04120,3, 0x2e04130,3, 0x2e04140,13, 0x2e04178,4, 0x2e0419c,25, 0x2e04204,5, 0x2e04220,3, 0x2e04230,3, 0x2e04240,13, 0x2e04278,4, 0x2e0429c,25, 0x2e04304,5, 0x2e04320,3, 0x2e04330,3, 0x2e04340,13, 0x2e04378,4, 0x2e0439c,25, 0x2e04600,4, 0x2e04c00,24, 0x2e04c80,24, 0x2e04d00,24, 0x2e04d80,24, 0x2e04e00,4, 0x2e04e20,4, 0x2e04e40,4, 0x2e04e60,4, 0x2e04e80,39, 0x2e04f20,7, 0x2e04f40,7, 0x2e04f60,7, 0x2e05000,12, 0x2e05200,1, 0x2e05218,2, 0x2e0522c,1, 0x2e05280,1, 0x2e05298,2, 0x2e052ac,1, 0x2e05300,1, 0x2e05318,2, 0x2e0532c,1, 0x2e05380,1, 0x2e05398,2, 0x2e053ac,1, 0x2e05400,4, 0x2e05420,2, 0x2e0542c,1, 0x2e05480,4, 0x2e054a0,2, 0x2e054ac,1, 0x2e05500,4, 0x2e05520,2, 0x2e0552c,1, 0x2e05580,4, 0x2e055a0,2, 0x2e055ac,1, 0x2e05600,4, 0x2e05640,4, 0x2e05680,4, 0x2e056c0,4, 0x2e05700,7, 0x2e05720,7, 0x2e05740,7, 0x2e05760,7, 0x2e05780,4, 0x2e0579c,11, 0x2e057d0,2, 0x2e057e0,2, 0x2e057f0,2, 0x2e05900,44, 0x2e06000,7, 0x2e06020,4, 0x2e06040,4, 0x2e06060,7, 0x2e06080,7, 0x2e060a0,4, 0x2e060c0,4, 0x2e060e0,7, 0x2e06100,7, 0x2e06120,4, 0x2e06140,4, 0x2e06160,7, 0x2e06180,7, 0x2e061a0,4, 0x2e061c0,4, 0x2e061e0,7, 0x2e06200,32, 0x2e06b00,1, 0x2e06b20,1, 0x2e06b28,4, 0x2e06b40,1, 0x2e06b60,1, 0x2e06b68,4, 0x2e06b80,1, 0x2e06ba0,1, 0x2e06ba8,4, 0x2e06bc0,1, 0x2e06be0,1, 0x2e06be8,4, 0x2e06c00,7, 0x2e06c20,1, 0x2e06c54,18, 0x2e06ca0,1, 0x2e06cd4,18, 0x2e06d20,1, 0x2e06d54,18, 0x2e06da0,1, 0x2e06dd4,12, 0x2e06e08,6, 0x2e07100,7, 0x2e07120,7, 0x2e07140,7, 0x2e07160,7, 0x2e07180,3, 0x2e08000,10, 0x2e08080,3, 0x2e080c0,1, 0x2e08100,21, 0x2e08180,13, 0x2e081c4,7, 0x2e081e4,7, 0x2e08204,7, 0x2e08224,8, 0x2e09000,7, 0x2e09030,2, 0x2e09040,7, 0x2e09070,2, 0x2e09100,2, 0x2e09120,2, 0x2e09140,2, 0x2e09160,2, 0x2e09180,9, 0x2e09200,7, 0x2e09230,2, 0x2e09240,7, 0x2e09270,2, 0x2e09300,2, 0x2e09320,2, 0x2e09340,2, 0x2e09360,2, 0x2e09380,9, 0x2e09400,11, 0x2e09500,11, 0x2e0a000,3, 0x2e0a010,2, 0x2e0a01c,5, 0x2e0a040,8, 0x2e0a080,3, 0x2e0a090,2, 0x2e0a09c,5, 0x2e0a0c0,8, 0x2e0a100,3, 0x2e0a110,2, 0x2e0a11c,5, 0x2e0a140,8, 0x2e0a180,3, 0x2e0a190,2, 0x2e0a19c,5, 0x2e0a1c0,8, 0x2e0a200,7, 0x2e0a220,12, 0x2e0a280,7, 0x2e0a2a0,12, 0x2e0a300,3, 0x2e0a310,1, 0x2e0a400,3, 0x2e0a410,2, 0x2e0a41c,5, 0x2e0a440,8, 0x2e0a480,3, 0x2e0a490,2, 0x2e0a49c,5, 0x2e0a4c0,8, 0x2e0a500,3, 0x2e0a510,2, 0x2e0a51c,5, 0x2e0a540,8, 0x2e0a580,3, 0x2e0a590,2, 0x2e0a59c,5, 0x2e0a5c0,8, 0x2e0a600,7, 0x2e0a620,12, 0x2e0a680,7, 0x2e0a6a0,12, 0x2e0a700,3, 0x2e0a710,1, 0x2e0a804,1, 0x2e0a824,21, 0x2e0a880,16, 0x2e0a900,5, 0x2e0a920,11, 0x2e0a950,9, 0x2e0a980,22, 0x2e0aa00,22, 0x2e0aa80,22, 0x2e0ab00,22, 0x2e0ab80,22, 0x2e0ac00,22, 0x2e0ac80,22, 0x2e0ad00,22, 0x2e0ad80,3, 0x2e0c000,16, 0x2e0c080,11, 0x2e0c100,11, 0x2e0c204,1, 0x2e0c224,21, 0x2e0c280,16, 0x2e0c300,11, 0x2e0c340,11, 0x2e0c800,21, 0x2e0c860,5, 0x2e0c880,6, 0x2e0c8a0,5, 0x2e0c8c0,6, 0x2e0c900,21, 0x2e0c960,5, 0x2e0c980,6, 0x2e0c9a0,5, 0x2e0c9c0,6, 0x2e0ca00,21, 0x2e0ca60,5, 0x2e0ca80,6, 0x2e0caa0,5, 0x2e0cac0,6, 0x2e0cb00,21, 0x2e0cb60,5, 0x2e0cb80,6, 0x2e0cba0,5, 0x2e0cbc0,6, 0x2e0cc00,9, 0x2e0cc48,7, 0x2e0cc68,2, 0x2e0cc74,9, 0x2e0cc9c,2, 0x2e0cd00,14, 0x2e0cd40,14, 0x2e0cd80,28, 0x2e0ce00,19, 0x2e0ce50,3, 0x2e0ce60,25, 0x2e0cec8,1, 0x2e0ced0,2, 0x2e0cee0,7, 0x2e0cf00,1, 0x2e0cf08,2, 0x2e0cffc,20, 0x2e0d050,25, 0x2e0d100,19, 0x2e0d150,25, 0x2e0d200,19, 0x2e0d250,25, 0x2e0d300,19, 0x2e0d350,25, 0x2e0d400,19, 0x2e0d450,25, 0x2e0d500,19, 0x2e0d550,25, 0x2e0d600,19, 0x2e0d650,25, 0x2e0d700,19, 0x2e0d750,25, 0x2e0d800,19, 0x2e0d850,25, 0x2e0d904,1, 0x2e0d914,10, 0x2e0d948,11, 0x2e0d980,2, 0x2e0d9a0,6, 0x2e0d9c0,2, 0x2e0d9cc,2, 0x2e0e000,35, 0x2e0ea00,10, 0x2e0ea80,3, 0x2e0eb00,6, 0x2e0f000,1, 0x2e0f008,5, 0x2e0f038,1, 0x2e0f044,1, 0x2e0f050,2, 0x2e0f100,13, 0x2e0f140,11, 0x2e0f170,12, 0x2e0f1a4,1, 0x2e0f200,104, 0x2e0f400,104, 0x2e0f600,104, 0x2e0f800,104, 0x2e10000,13, 0x2e10040,2, 0x2e10054,4, 0x2e10080,27, 0x2e10100,12, 0x2e10140,14, 0x2e10180,28, 0x2e10200,6, 0x2e10240,6, 0x2e1025c,3, 0x2e10280,5, 0x2e102a0,8, 0x2e10400,14, 0x2e10440,14, 0x2e10480,14, 0x2e104c0,14, 0x2e10540,3, 0x2e10600,7, 0x2e10620,14, 0x2e10680,5, 0x2e106a0,7, 0x2e10800,13, 0x2e10840,2, 0x2e10854,4, 0x2e10880,27, 0x2e10900,12, 0x2e10940,14, 0x2e10980,28, 0x2e10a00,6, 0x2e10a40,6, 0x2e10a5c,3, 0x2e10a80,5, 0x2e10aa0,8, 0x2e10c00,14, 0x2e10c40,14, 0x2e10c80,14, 0x2e10cc0,14, 0x2e10d40,3, 0x2e10e00,7, 0x2e10e20,14, 0x2e10e80,5, 0x2e10ea0,7, 0x2e11000,13, 0x2e11040,2, 0x2e11054,4, 0x2e11080,27, 0x2e11100,12, 0x2e11140,14, 0x2e11180,28, 0x2e11200,6, 0x2e11240,6, 0x2e1125c,3, 0x2e11280,5, 0x2e112a0,8, 0x2e11400,14, 0x2e11440,14, 0x2e11480,14, 0x2e114c0,14, 0x2e11540,3, 0x2e11600,7, 0x2e11620,14, 0x2e11680,5, 0x2e116a0,7, 0x2e11800,13, 0x2e11840,2, 0x2e11854,4, 0x2e11880,27, 0x2e11900,12, 0x2e11940,14, 0x2e11980,28, 0x2e11a00,6, 0x2e11a40,6, 0x2e11a5c,3, 0x2e11a80,5, 0x2e11aa0,8, 0x2e11c00,14, 0x2e11c40,14, 0x2e11c80,14, 0x2e11cc0,14, 0x2e11d40,3, 0x2e11e00,7, 0x2e11e20,14, 0x2e11e80,5, 0x2e11ea0,7, 0x2e12000,8, 0x2e12040,8, 0x2e12080,1, 0x2e12098,6, 0x2e12100,10, 0x2e12140,3, 0x2e12150,2, 0x2e12180,2, 0x2e12200,6, 0x2e12220,18, 0x2e12280,4, 0x2e12300,8, 0x2e12400,2, 0x2e12480,2, 0x2e12800,28, 0x2e129f0,4, 0x2e13000,40, 0x2e13100,64, 0x2e13800,56, 0x2e13be0,8, 0x2e14000,13, 0x2e14040,2, 0x2e14054,4, 0x2e14080,27, 0x2e14100,12, 0x2e14140,14, 0x2e14180,28, 0x2e14200,6, 0x2e14240,6, 0x2e1425c,3, 0x2e14280,5, 0x2e142a0,8, 0x2e14400,14, 0x2e14440,14, 0x2e14480,14, 0x2e144c0,14, 0x2e14540,3, 0x2e14600,7, 0x2e14620,14, 0x2e14680,5, 0x2e146a0,7, 0x2e14800,13, 0x2e14840,2, 0x2e14854,4, 0x2e14880,27, 0x2e14900,12, 0x2e14940,14, 0x2e14980,28, 0x2e14a00,6, 0x2e14a40,6, 0x2e14a5c,3, 0x2e14a80,5, 0x2e14aa0,8, 0x2e14c00,14, 0x2e14c40,14, 0x2e14c80,14, 0x2e14cc0,14, 0x2e14d40,3, 0x2e14e00,7, 0x2e14e20,14, 0x2e14e80,5, 0x2e14ea0,7, 0x2e15000,13, 0x2e15040,2, 0x2e15054,4, 0x2e15080,27, 0x2e15100,12, 0x2e15140,14, 0x2e15180,28, 0x2e15200,6, 0x2e15240,6, 0x2e1525c,3, 0x2e15280,5, 0x2e152a0,8, 0x2e15400,14, 0x2e15440,14, 0x2e15480,14, 0x2e154c0,14, 0x2e15540,3, 0x2e15600,7, 0x2e15620,14, 0x2e15680,5, 0x2e156a0,7, 0x2e15800,13, 0x2e15840,2, 0x2e15854,4, 0x2e15880,27, 0x2e15900,12, 0x2e15940,14, 0x2e15980,28, 0x2e15a00,6, 0x2e15a40,6, 0x2e15a5c,3, 0x2e15a80,5, 0x2e15aa0,8, 0x2e15c00,14, 0x2e15c40,14, 0x2e15c80,14, 0x2e15cc0,14, 0x2e15d40,3, 0x2e15e00,7, 0x2e15e20,14, 0x2e15e80,5, 0x2e15ea0,7, 0x2e16000,8, 0x2e16040,8, 0x2e16080,1, 0x2e16098,6, 0x2e16100,10, 0x2e16140,3, 0x2e16150,2, 0x2e16180,2, 0x2e16200,6, 0x2e16220,18, 0x2e16280,4, 0x2e16300,8, 0x2e16400,2, 0x2e16480,2, 0x2e16800,28, 0x2e169f0,4, 0x2e17000,40, 0x2e17100,64, 0x2e17800,56, 0x2e17be0,8, 0x2e18000,2, 0x2e1800c,2, 0x2e18040,7, 0x2e18100,3, 0x2e18110,3, 0x2e18120,5, 0x2e18200,6, 0x2e18240,5, 0x2e18400,2, 0x2e1840c,2, 0x2e18440,7, 0x2e18500,3, 0x2e18510,3, 0x2e18520,5, 0x2e18600,6, 0x2e18640,5, 0x2e18800,2, 0x2e1880c,2, 0x2e18840,7, 0x2e18900,3, 0x2e18910,3, 0x2e18920,5, 0x2e18a00,6, 0x2e18a40,5, 0x2e18c00,2, 0x2e18c0c,2, 0x2e18c40,7, 0x2e18d00,3, 0x2e18d10,3, 0x2e18d20,5, 0x2e18e00,6, 0x2e18e40,5, 0x2e19000,2, 0x2e1900c,2, 0x2e19040,7, 0x2e19100,3, 0x2e19110,3, 0x2e19120,5, 0x2e19200,6, 0x2e19240,5, 0x2e19400,2, 0x2e1940c,2, 0x2e19440,7, 0x2e19500,3, 0x2e19510,3, 0x2e19520,5, 0x2e19600,6, 0x2e19640,5, 0x2e19800,2, 0x2e1980c,2, 0x2e19840,7, 0x2e19900,3, 0x2e19910,3, 0x2e19920,5, 0x2e19a00,6, 0x2e19a40,5, 0x2e19c00,2, 0x2e19c0c,2, 0x2e19c40,7, 0x2e19d00,3, 0x2e19d10,3, 0x2e19d20,5, 0x2e19e00,6, 0x2e19e40,5, 0x2e1a000,5, 0x2e1a040,9, 0x2e1a100,3, 0x2e1a200,1, 0x2e1a210,1, 0x2e1a220,1, 0x2e1a230,1, 0x2e1a240,1, 0x2e1a300,3, 0x2e1a314,1, 0x2e1a320,4, 0x2e1a400,5, 0x2e1a440,5, 0x2e1b000,80, 0x2e1b200,1, 0x2e20004,5, 0x2e20020,3, 0x2e20030,3, 0x2e20040,13, 0x2e20078,4, 0x2e2009c,25, 0x2e20104,5, 0x2e20120,3, 0x2e20130,3, 0x2e20140,13, 0x2e20178,4, 0x2e2019c,25, 0x2e20204,5, 0x2e20220,3, 0x2e20230,3, 0x2e20240,13, 0x2e20278,4, 0x2e2029c,25, 0x2e20304,5, 0x2e20320,3, 0x2e20330,3, 0x2e20340,13, 0x2e20378,4, 0x2e2039c,25, 0x2e20600,4, 0x2e20c00,24, 0x2e20c80,24, 0x2e20d00,24, 0x2e20d80,24, 0x2e20e00,4, 0x2e20e20,4, 0x2e20e40,4, 0x2e20e60,4, 0x2e20e80,39, 0x2e20f20,7, 0x2e20f40,7, 0x2e20f60,7, 0x2e21000,12, 0x2e21200,1, 0x2e21218,2, 0x2e2122c,1, 0x2e21280,1, 0x2e21298,2, 0x2e212ac,1, 0x2e21300,1, 0x2e21318,2, 0x2e2132c,1, 0x2e21380,1, 0x2e21398,2, 0x2e213ac,1, 0x2e21400,4, 0x2e21420,2, 0x2e2142c,1, 0x2e21480,4, 0x2e214a0,2, 0x2e214ac,1, 0x2e21500,4, 0x2e21520,2, 0x2e2152c,1, 0x2e21580,4, 0x2e215a0,2, 0x2e215ac,1, 0x2e21600,4, 0x2e21640,4, 0x2e21680,4, 0x2e216c0,4, 0x2e21700,7, 0x2e21720,7, 0x2e21740,7, 0x2e21760,7, 0x2e21780,4, 0x2e2179c,11, 0x2e217d0,2, 0x2e217e0,2, 0x2e217f0,2, 0x2e21900,44, 0x2e22000,7, 0x2e22020,4, 0x2e22040,4, 0x2e22060,7, 0x2e22080,7, 0x2e220a0,4, 0x2e220c0,4, 0x2e220e0,7, 0x2e22100,7, 0x2e22120,4, 0x2e22140,4, 0x2e22160,7, 0x2e22180,7, 0x2e221a0,4, 0x2e221c0,4, 0x2e221e0,7, 0x2e22200,32, 0x2e22b00,1, 0x2e22b20,1, 0x2e22b28,4, 0x2e22b40,1, 0x2e22b60,1, 0x2e22b68,4, 0x2e22b80,1, 0x2e22ba0,1, 0x2e22ba8,4, 0x2e22bc0,1, 0x2e22be0,1, 0x2e22be8,4, 0x2e22c00,7, 0x2e22c20,1, 0x2e22c54,18, 0x2e22ca0,1, 0x2e22cd4,18, 0x2e22d20,1, 0x2e22d54,18, 0x2e22da0,1, 0x2e22dd4,12, 0x2e22e08,6, 0x2e23100,7, 0x2e23120,7, 0x2e23140,7, 0x2e23160,7, 0x2e23180,3, 0x2e24004,5, 0x2e24020,3, 0x2e24030,3, 0x2e24040,13, 0x2e24078,4, 0x2e2409c,25, 0x2e24104,5, 0x2e24120,3, 0x2e24130,3, 0x2e24140,13, 0x2e24178,4, 0x2e2419c,25, 0x2e24204,5, 0x2e24220,3, 0x2e24230,3, 0x2e24240,13, 0x2e24278,4, 0x2e2429c,25, 0x2e24304,5, 0x2e24320,3, 0x2e24330,3, 0x2e24340,13, 0x2e24378,4, 0x2e2439c,25, 0x2e24600,4, 0x2e24c00,24, 0x2e24c80,24, 0x2e24d00,24, 0x2e24d80,24, 0x2e24e00,4, 0x2e24e20,4, 0x2e24e40,4, 0x2e24e60,4, 0x2e24e80,39, 0x2e24f20,7, 0x2e24f40,7, 0x2e24f60,7, 0x2e25000,12, 0x2e25200,1, 0x2e25218,2, 0x2e2522c,1, 0x2e25280,1, 0x2e25298,2, 0x2e252ac,1, 0x2e25300,1, 0x2e25318,2, 0x2e2532c,1, 0x2e25380,1, 0x2e25398,2, 0x2e253ac,1, 0x2e25400,4, 0x2e25420,2, 0x2e2542c,1, 0x2e25480,4, 0x2e254a0,2, 0x2e254ac,1, 0x2e25500,4, 0x2e25520,2, 0x2e2552c,1, 0x2e25580,4, 0x2e255a0,2, 0x2e255ac,1, 0x2e25600,4, 0x2e25640,4, 0x2e25680,4, 0x2e256c0,4, 0x2e25700,7, 0x2e25720,7, 0x2e25740,7, 0x2e25760,7, 0x2e25780,4, 0x2e2579c,11, 0x2e257d0,2, 0x2e257e0,2, 0x2e257f0,2, 0x2e25900,44, 0x2e26000,7, 0x2e26020,4, 0x2e26040,4, 0x2e26060,7, 0x2e26080,7, 0x2e260a0,4, 0x2e260c0,4, 0x2e260e0,7, 0x2e26100,7, 0x2e26120,4, 0x2e26140,4, 0x2e26160,7, 0x2e26180,7, 0x2e261a0,4, 0x2e261c0,4, 0x2e261e0,7, 0x2e26200,32, 0x2e26b00,1, 0x2e26b20,1, 0x2e26b28,4, 0x2e26b40,1, 0x2e26b60,1, 0x2e26b68,4, 0x2e26b80,1, 0x2e26ba0,1, 0x2e26ba8,4, 0x2e26bc0,1, 0x2e26be0,1, 0x2e26be8,4, 0x2e26c00,7, 0x2e26c20,1, 0x2e26c54,18, 0x2e26ca0,1, 0x2e26cd4,18, 0x2e26d20,1, 0x2e26d54,18, 0x2e26da0,1, 0x2e26dd4,12, 0x2e26e08,6, 0x2e27100,7, 0x2e27120,7, 0x2e27140,7, 0x2e27160,7, 0x2e27180,3, 0x2e28000,10, 0x2e28080,3, 0x2e280c0,1, 0x2e28100,21, 0x2e28180,13, 0x2e281c4,7, 0x2e281e4,7, 0x2e28204,7, 0x2e28224,8, 0x2e29000,7, 0x2e29030,2, 0x2e29040,7, 0x2e29070,2, 0x2e29100,2, 0x2e29120,2, 0x2e29140,2, 0x2e29160,2, 0x2e29180,9, 0x2e29200,7, 0x2e29230,2, 0x2e29240,7, 0x2e29270,2, 0x2e29300,2, 0x2e29320,2, 0x2e29340,2, 0x2e29360,2, 0x2e29380,9, 0x2e29400,11, 0x2e29500,11, 0x2e2a000,3, 0x2e2a010,2, 0x2e2a01c,5, 0x2e2a040,8, 0x2e2a080,3, 0x2e2a090,2, 0x2e2a09c,5, 0x2e2a0c0,8, 0x2e2a100,3, 0x2e2a110,2, 0x2e2a11c,5, 0x2e2a140,8, 0x2e2a180,3, 0x2e2a190,2, 0x2e2a19c,5, 0x2e2a1c0,8, 0x2e2a200,7, 0x2e2a220,12, 0x2e2a280,7, 0x2e2a2a0,12, 0x2e2a300,3, 0x2e2a310,1, 0x2e2a400,3, 0x2e2a410,2, 0x2e2a41c,5, 0x2e2a440,8, 0x2e2a480,3, 0x2e2a490,2, 0x2e2a49c,5, 0x2e2a4c0,8, 0x2e2a500,3, 0x2e2a510,2, 0x2e2a51c,5, 0x2e2a540,8, 0x2e2a580,3, 0x2e2a590,2, 0x2e2a59c,5, 0x2e2a5c0,8, 0x2e2a600,7, 0x2e2a620,12, 0x2e2a680,7, 0x2e2a6a0,12, 0x2e2a700,3, 0x2e2a710,1, 0x2e2a804,1, 0x2e2a824,21, 0x2e2a880,16, 0x2e2a900,5, 0x2e2a920,11, 0x2e2a950,9, 0x2e2a980,22, 0x2e2aa00,22, 0x2e2aa80,22, 0x2e2ab00,22, 0x2e2ab80,22, 0x2e2ac00,22, 0x2e2ac80,22, 0x2e2ad00,22, 0x2e2ad80,3, 0x2e2c000,16, 0x2e2c080,11, 0x2e2c100,11, 0x2e2c204,1, 0x2e2c224,21, 0x2e2c280,16, 0x2e2c300,11, 0x2e2c340,11, 0x2e2c800,21, 0x2e2c860,5, 0x2e2c880,6, 0x2e2c8a0,5, 0x2e2c8c0,6, 0x2e2c900,21, 0x2e2c960,5, 0x2e2c980,6, 0x2e2c9a0,5, 0x2e2c9c0,6, 0x2e2ca00,21, 0x2e2ca60,5, 0x2e2ca80,6, 0x2e2caa0,5, 0x2e2cac0,6, 0x2e2cb00,21, 0x2e2cb60,5, 0x2e2cb80,6, 0x2e2cba0,5, 0x2e2cbc0,6, 0x2e2cc00,9, 0x2e2cc48,7, 0x2e2cc68,2, 0x2e2cc74,9, 0x2e2cc9c,2, 0x2e2cd00,14, 0x2e2cd40,14, 0x2e2cd80,28, 0x2e2ce00,19, 0x2e2ce50,3, 0x2e2ce60,25, 0x2e2cec8,1, 0x2e2ced0,2, 0x2e2cee0,7, 0x2e2cf00,1, 0x2e2cf08,2, 0x2e2cffc,20, 0x2e2d050,25, 0x2e2d100,19, 0x2e2d150,25, 0x2e2d200,19, 0x2e2d250,25, 0x2e2d300,19, 0x2e2d350,25, 0x2e2d400,19, 0x2e2d450,25, 0x2e2d500,19, 0x2e2d550,25, 0x2e2d600,19, 0x2e2d650,25, 0x2e2d700,19, 0x2e2d750,25, 0x2e2d800,19, 0x2e2d850,25, 0x2e2d904,1, 0x2e2d914,10, 0x2e2d948,11, 0x2e2d980,2, 0x2e2d9a0,6, 0x2e2d9c0,2, 0x2e2d9cc,2, 0x2e2e000,35, 0x2e2ea00,10, 0x2e2ea80,3, 0x2e2eb00,6, 0x2e2f000,1, 0x2e2f008,5, 0x2e2f038,1, 0x2e2f044,1, 0x2e2f050,2, 0x2e2f100,13, 0x2e2f140,11, 0x2e2f170,12, 0x2e2f1a4,1, 0x2e2f200,104, 0x2e2f400,104, 0x2e2f600,104, 0x2e2f800,104, 0x2e30000,13, 0x2e30040,2, 0x2e30054,4, 0x2e30080,27, 0x2e30100,12, 0x2e30140,14, 0x2e30180,28, 0x2e30200,6, 0x2e30240,6, 0x2e3025c,3, 0x2e30280,5, 0x2e302a0,8, 0x2e30400,14, 0x2e30440,14, 0x2e30480,14, 0x2e304c0,14, 0x2e30540,3, 0x2e30600,7, 0x2e30620,14, 0x2e30680,5, 0x2e306a0,7, 0x2e30800,13, 0x2e30840,2, 0x2e30854,4, 0x2e30880,27, 0x2e30900,12, 0x2e30940,14, 0x2e30980,28, 0x2e30a00,6, 0x2e30a40,6, 0x2e30a5c,3, 0x2e30a80,5, 0x2e30aa0,8, 0x2e30c00,14, 0x2e30c40,14, 0x2e30c80,14, 0x2e30cc0,14, 0x2e30d40,3, 0x2e30e00,7, 0x2e30e20,14, 0x2e30e80,5, 0x2e30ea0,7, 0x2e31000,13, 0x2e31040,2, 0x2e31054,4, 0x2e31080,27, 0x2e31100,12, 0x2e31140,14, 0x2e31180,28, 0x2e31200,6, 0x2e31240,6, 0x2e3125c,3, 0x2e31280,5, 0x2e312a0,8, 0x2e31400,14, 0x2e31440,14, 0x2e31480,14, 0x2e314c0,14, 0x2e31540,3, 0x2e31600,7, 0x2e31620,14, 0x2e31680,5, 0x2e316a0,7, 0x2e31800,13, 0x2e31840,2, 0x2e31854,4, 0x2e31880,27, 0x2e31900,12, 0x2e31940,14, 0x2e31980,28, 0x2e31a00,6, 0x2e31a40,6, 0x2e31a5c,3, 0x2e31a80,5, 0x2e31aa0,8, 0x2e31c00,14, 0x2e31c40,14, 0x2e31c80,14, 0x2e31cc0,14, 0x2e31d40,3, 0x2e31e00,7, 0x2e31e20,14, 0x2e31e80,5, 0x2e31ea0,7, 0x2e32000,8, 0x2e32040,8, 0x2e32080,1, 0x2e32098,6, 0x2e32100,10, 0x2e32140,3, 0x2e32150,2, 0x2e32180,2, 0x2e32200,6, 0x2e32220,18, 0x2e32280,4, 0x2e32300,8, 0x2e32400,2, 0x2e32480,2, 0x2e32800,28, 0x2e329f0,4, 0x2e33000,40, 0x2e33100,64, 0x2e33800,56, 0x2e33be0,8, 0x2e34000,13, 0x2e34040,2, 0x2e34054,4, 0x2e34080,27, 0x2e34100,12, 0x2e34140,14, 0x2e34180,28, 0x2e34200,6, 0x2e34240,6, 0x2e3425c,3, 0x2e34280,5, 0x2e342a0,8, 0x2e34400,14, 0x2e34440,14, 0x2e34480,14, 0x2e344c0,14, 0x2e34540,3, 0x2e34600,7, 0x2e34620,14, 0x2e34680,5, 0x2e346a0,7, 0x2e34800,13, 0x2e34840,2, 0x2e34854,4, 0x2e34880,27, 0x2e34900,12, 0x2e34940,14, 0x2e34980,28, 0x2e34a00,6, 0x2e34a40,6, 0x2e34a5c,3, 0x2e34a80,5, 0x2e34aa0,8, 0x2e34c00,14, 0x2e34c40,14, 0x2e34c80,14, 0x2e34cc0,14, 0x2e34d40,3, 0x2e34e00,7, 0x2e34e20,14, 0x2e34e80,5, 0x2e34ea0,7, 0x2e35000,13, 0x2e35040,2, 0x2e35054,4, 0x2e35080,27, 0x2e35100,12, 0x2e35140,14, 0x2e35180,28, 0x2e35200,6, 0x2e35240,6, 0x2e3525c,3, 0x2e35280,5, 0x2e352a0,8, 0x2e35400,14, 0x2e35440,14, 0x2e35480,14, 0x2e354c0,14, 0x2e35540,3, 0x2e35600,7, 0x2e35620,14, 0x2e35680,5, 0x2e356a0,7, 0x2e35800,13, 0x2e35840,2, 0x2e35854,4, 0x2e35880,27, 0x2e35900,12, 0x2e35940,14, 0x2e35980,28, 0x2e35a00,6, 0x2e35a40,6, 0x2e35a5c,3, 0x2e35a80,5, 0x2e35aa0,8, 0x2e35c00,14, 0x2e35c40,14, 0x2e35c80,14, 0x2e35cc0,14, 0x2e35d40,3, 0x2e35e00,7, 0x2e35e20,14, 0x2e35e80,5, 0x2e35ea0,7, 0x2e36000,8, 0x2e36040,8, 0x2e36080,1, 0x2e36098,6, 0x2e36100,10, 0x2e36140,3, 0x2e36150,2, 0x2e36180,2, 0x2e36200,6, 0x2e36220,18, 0x2e36280,4, 0x2e36300,8, 0x2e36400,2, 0x2e36480,2, 0x2e36800,28, 0x2e369f0,4, 0x2e37000,40, 0x2e37100,64, 0x2e37800,56, 0x2e37be0,8, 0x2e38000,2, 0x2e3800c,2, 0x2e38040,7, 0x2e38100,3, 0x2e38110,3, 0x2e38120,5, 0x2e38200,6, 0x2e38240,5, 0x2e38400,2, 0x2e3840c,2, 0x2e38440,7, 0x2e38500,3, 0x2e38510,3, 0x2e38520,5, 0x2e38600,6, 0x2e38640,5, 0x2e38800,2, 0x2e3880c,2, 0x2e38840,7, 0x2e38900,3, 0x2e38910,3, 0x2e38920,5, 0x2e38a00,6, 0x2e38a40,5, 0x2e38c00,2, 0x2e38c0c,2, 0x2e38c40,7, 0x2e38d00,3, 0x2e38d10,3, 0x2e38d20,5, 0x2e38e00,6, 0x2e38e40,5, 0x2e39000,2, 0x2e3900c,2, 0x2e39040,7, 0x2e39100,3, 0x2e39110,3, 0x2e39120,5, 0x2e39200,6, 0x2e39240,5, 0x2e39400,2, 0x2e3940c,2, 0x2e39440,7, 0x2e39500,3, 0x2e39510,3, 0x2e39520,5, 0x2e39600,6, 0x2e39640,5, 0x2e39800,2, 0x2e3980c,2, 0x2e39840,7, 0x2e39900,3, 0x2e39910,3, 0x2e39920,5, 0x2e39a00,6, 0x2e39a40,5, 0x2e39c00,2, 0x2e39c0c,2, 0x2e39c40,7, 0x2e39d00,3, 0x2e39d10,3, 0x2e39d20,5, 0x2e39e00,6, 0x2e39e40,5, 0x2e3a000,5, 0x2e3a040,9, 0x2e3a100,3, 0x2e3a200,1, 0x2e3a210,1, 0x2e3a220,1, 0x2e3a230,1, 0x2e3a240,1, 0x2e3a300,3, 0x2e3a314,1, 0x2e3a320,4, 0x2e3a400,5, 0x2e3a440,5, 0x2e3b000,80, 0x2e3b200,1, 0x2e40004,5, 0x2e40020,3, 0x2e40030,3, 0x2e40040,13, 0x2e40078,4, 0x2e4009c,25, 0x2e40104,5, 0x2e40120,3, 0x2e40130,3, 0x2e40140,13, 0x2e40178,4, 0x2e4019c,25, 0x2e40204,5, 0x2e40220,3, 0x2e40230,3, 0x2e40240,13, 0x2e40278,4, 0x2e4029c,25, 0x2e40304,5, 0x2e40320,3, 0x2e40330,3, 0x2e40340,13, 0x2e40378,4, 0x2e4039c,25, 0x2e40600,4, 0x2e40c00,24, 0x2e40c80,24, 0x2e40d00,24, 0x2e40d80,24, 0x2e40e00,4, 0x2e40e20,4, 0x2e40e40,4, 0x2e40e60,4, 0x2e40e80,39, 0x2e40f20,7, 0x2e40f40,7, 0x2e40f60,7, 0x2e41000,12, 0x2e41200,1, 0x2e41218,2, 0x2e4122c,1, 0x2e41280,1, 0x2e41298,2, 0x2e412ac,1, 0x2e41300,1, 0x2e41318,2, 0x2e4132c,1, 0x2e41380,1, 0x2e41398,2, 0x2e413ac,1, 0x2e41400,4, 0x2e41420,2, 0x2e4142c,1, 0x2e41480,4, 0x2e414a0,2, 0x2e414ac,1, 0x2e41500,4, 0x2e41520,2, 0x2e4152c,1, 0x2e41580,4, 0x2e415a0,2, 0x2e415ac,1, 0x2e41600,4, 0x2e41640,4, 0x2e41680,4, 0x2e416c0,4, 0x2e41700,7, 0x2e41720,7, 0x2e41740,7, 0x2e41760,7, 0x2e41780,4, 0x2e4179c,11, 0x2e417d0,2, 0x2e417e0,2, 0x2e417f0,2, 0x2e41900,44, 0x2e42000,7, 0x2e42020,4, 0x2e42040,4, 0x2e42060,7, 0x2e42080,7, 0x2e420a0,4, 0x2e420c0,4, 0x2e420e0,7, 0x2e42100,7, 0x2e42120,4, 0x2e42140,4, 0x2e42160,7, 0x2e42180,7, 0x2e421a0,4, 0x2e421c0,4, 0x2e421e0,7, 0x2e42200,32, 0x2e42b00,1, 0x2e42b20,1, 0x2e42b28,4, 0x2e42b40,1, 0x2e42b60,1, 0x2e42b68,4, 0x2e42b80,1, 0x2e42ba0,1, 0x2e42ba8,4, 0x2e42bc0,1, 0x2e42be0,1, 0x2e42be8,4, 0x2e42c00,7, 0x2e42c20,1, 0x2e42c54,18, 0x2e42ca0,1, 0x2e42cd4,18, 0x2e42d20,1, 0x2e42d54,18, 0x2e42da0,1, 0x2e42dd4,12, 0x2e42e08,6, 0x2e43100,7, 0x2e43120,7, 0x2e43140,7, 0x2e43160,7, 0x2e43180,3, 0x2e44004,5, 0x2e44020,3, 0x2e44030,3, 0x2e44040,13, 0x2e44078,4, 0x2e4409c,25, 0x2e44104,5, 0x2e44120,3, 0x2e44130,3, 0x2e44140,13, 0x2e44178,4, 0x2e4419c,25, 0x2e44204,5, 0x2e44220,3, 0x2e44230,3, 0x2e44240,13, 0x2e44278,4, 0x2e4429c,25, 0x2e44304,5, 0x2e44320,3, 0x2e44330,3, 0x2e44340,13, 0x2e44378,4, 0x2e4439c,25, 0x2e44600,4, 0x2e44c00,24, 0x2e44c80,24, 0x2e44d00,24, 0x2e44d80,24, 0x2e44e00,4, 0x2e44e20,4, 0x2e44e40,4, 0x2e44e60,4, 0x2e44e80,39, 0x2e44f20,7, 0x2e44f40,7, 0x2e44f60,7, 0x2e45000,12, 0x2e45200,1, 0x2e45218,2, 0x2e4522c,1, 0x2e45280,1, 0x2e45298,2, 0x2e452ac,1, 0x2e45300,1, 0x2e45318,2, 0x2e4532c,1, 0x2e45380,1, 0x2e45398,2, 0x2e453ac,1, 0x2e45400,4, 0x2e45420,2, 0x2e4542c,1, 0x2e45480,4, 0x2e454a0,2, 0x2e454ac,1, 0x2e45500,4, 0x2e45520,2, 0x2e4552c,1, 0x2e45580,4, 0x2e455a0,2, 0x2e455ac,1, 0x2e45600,4, 0x2e45640,4, 0x2e45680,4, 0x2e456c0,4, 0x2e45700,7, 0x2e45720,7, 0x2e45740,7, 0x2e45760,7, 0x2e45780,4, 0x2e4579c,11, 0x2e457d0,2, 0x2e457e0,2, 0x2e457f0,2, 0x2e45900,44, 0x2e46000,7, 0x2e46020,4, 0x2e46040,4, 0x2e46060,7, 0x2e46080,7, 0x2e460a0,4, 0x2e460c0,4, 0x2e460e0,7, 0x2e46100,7, 0x2e46120,4, 0x2e46140,4, 0x2e46160,7, 0x2e46180,7, 0x2e461a0,4, 0x2e461c0,4, 0x2e461e0,7, 0x2e46200,32, 0x2e46b00,1, 0x2e46b20,1, 0x2e46b28,4, 0x2e46b40,1, 0x2e46b60,1, 0x2e46b68,4, 0x2e46b80,1, 0x2e46ba0,1, 0x2e46ba8,4, 0x2e46bc0,1, 0x2e46be0,1, 0x2e46be8,4, 0x2e46c00,7, 0x2e46c20,1, 0x2e46c54,18, 0x2e46ca0,1, 0x2e46cd4,18, 0x2e46d20,1, 0x2e46d54,18, 0x2e46da0,1, 0x2e46dd4,12, 0x2e46e08,6, 0x2e47100,7, 0x2e47120,7, 0x2e47140,7, 0x2e47160,7, 0x2e47180,3, 0x2e48000,10, 0x2e48080,3, 0x2e480c0,1, 0x2e48100,21, 0x2e48180,13, 0x2e481c4,7, 0x2e481e4,7, 0x2e48204,7, 0x2e48224,8, 0x2e49000,7, 0x2e49030,2, 0x2e49040,7, 0x2e49070,2, 0x2e49100,2, 0x2e49120,2, 0x2e49140,2, 0x2e49160,2, 0x2e49180,9, 0x2e49200,7, 0x2e49230,2, 0x2e49240,7, 0x2e49270,2, 0x2e49300,2, 0x2e49320,2, 0x2e49340,2, 0x2e49360,2, 0x2e49380,9, 0x2e49400,11, 0x2e49500,11, 0x2e4a000,3, 0x2e4a010,2, 0x2e4a01c,5, 0x2e4a040,8, 0x2e4a080,3, 0x2e4a090,2, 0x2e4a09c,5, 0x2e4a0c0,8, 0x2e4a100,3, 0x2e4a110,2, 0x2e4a11c,5, 0x2e4a140,8, 0x2e4a180,3, 0x2e4a190,2, 0x2e4a19c,5, 0x2e4a1c0,8, 0x2e4a200,7, 0x2e4a220,12, 0x2e4a280,7, 0x2e4a2a0,12, 0x2e4a300,3, 0x2e4a310,1, 0x2e4a400,3, 0x2e4a410,2, 0x2e4a41c,5, 0x2e4a440,8, 0x2e4a480,3, 0x2e4a490,2, 0x2e4a49c,5, 0x2e4a4c0,8, 0x2e4a500,3, 0x2e4a510,2, 0x2e4a51c,5, 0x2e4a540,8, 0x2e4a580,3, 0x2e4a590,2, 0x2e4a59c,5, 0x2e4a5c0,8, 0x2e4a600,7, 0x2e4a620,12, 0x2e4a680,7, 0x2e4a6a0,12, 0x2e4a700,3, 0x2e4a710,1, 0x2e4a804,1, 0x2e4a824,21, 0x2e4a880,16, 0x2e4a900,5, 0x2e4a920,11, 0x2e4a950,9, 0x2e4a980,22, 0x2e4aa00,22, 0x2e4aa80,22, 0x2e4ab00,22, 0x2e4ab80,22, 0x2e4ac00,22, 0x2e4ac80,22, 0x2e4ad00,22, 0x2e4ad80,3, 0x2e4c000,16, 0x2e4c080,11, 0x2e4c100,11, 0x2e4c204,1, 0x2e4c224,21, 0x2e4c280,16, 0x2e4c300,11, 0x2e4c340,11, 0x2e4c800,21, 0x2e4c860,5, 0x2e4c880,6, 0x2e4c8a0,5, 0x2e4c8c0,6, 0x2e4c900,21, 0x2e4c960,5, 0x2e4c980,6, 0x2e4c9a0,5, 0x2e4c9c0,6, 0x2e4ca00,21, 0x2e4ca60,5, 0x2e4ca80,6, 0x2e4caa0,5, 0x2e4cac0,6, 0x2e4cb00,21, 0x2e4cb60,5, 0x2e4cb80,6, 0x2e4cba0,5, 0x2e4cbc0,6, 0x2e4cc00,9, 0x2e4cc48,7, 0x2e4cc68,2, 0x2e4cc74,9, 0x2e4cc9c,2, 0x2e4cd00,14, 0x2e4cd40,14, 0x2e4cd80,28, 0x2e4ce00,19, 0x2e4ce50,3, 0x2e4ce60,25, 0x2e4cec8,1, 0x2e4ced0,2, 0x2e4cee0,7, 0x2e4cf00,1, 0x2e4cf08,2, 0x2e4cffc,20, 0x2e4d050,25, 0x2e4d100,19, 0x2e4d150,25, 0x2e4d200,19, 0x2e4d250,25, 0x2e4d300,19, 0x2e4d350,25, 0x2e4d400,19, 0x2e4d450,25, 0x2e4d500,19, 0x2e4d550,25, 0x2e4d600,19, 0x2e4d650,25, 0x2e4d700,19, 0x2e4d750,25, 0x2e4d800,19, 0x2e4d850,25, 0x2e4d904,1, 0x2e4d914,10, 0x2e4d948,11, 0x2e4d980,2, 0x2e4d9a0,6, 0x2e4d9c0,2, 0x2e4d9cc,2, 0x2e4e000,35, 0x2e4ea00,10, 0x2e4ea80,3, 0x2e4eb00,6, 0x2e4f000,1, 0x2e4f008,5, 0x2e4f038,1, 0x2e4f044,1, 0x2e4f050,2, 0x2e4f100,13, 0x2e4f140,11, 0x2e4f170,12, 0x2e4f1a4,1, 0x2e4f200,104, 0x2e4f400,104, 0x2e4f600,104, 0x2e4f800,104, 0x2e50000,13, 0x2e50040,2, 0x2e50054,4, 0x2e50080,27, 0x2e50100,12, 0x2e50140,14, 0x2e50180,28, 0x2e50200,6, 0x2e50240,6, 0x2e5025c,3, 0x2e50280,5, 0x2e502a0,8, 0x2e50400,14, 0x2e50440,14, 0x2e50480,14, 0x2e504c0,14, 0x2e50540,3, 0x2e50600,7, 0x2e50620,14, 0x2e50680,5, 0x2e506a0,7, 0x2e50800,13, 0x2e50840,2, 0x2e50854,4, 0x2e50880,27, 0x2e50900,12, 0x2e50940,14, 0x2e50980,28, 0x2e50a00,6, 0x2e50a40,6, 0x2e50a5c,3, 0x2e50a80,5, 0x2e50aa0,8, 0x2e50c00,14, 0x2e50c40,14, 0x2e50c80,14, 0x2e50cc0,14, 0x2e50d40,3, 0x2e50e00,7, 0x2e50e20,14, 0x2e50e80,5, 0x2e50ea0,7, 0x2e51000,13, 0x2e51040,2, 0x2e51054,4, 0x2e51080,27, 0x2e51100,12, 0x2e51140,14, 0x2e51180,28, 0x2e51200,6, 0x2e51240,6, 0x2e5125c,3, 0x2e51280,5, 0x2e512a0,8, 0x2e51400,14, 0x2e51440,14, 0x2e51480,14, 0x2e514c0,14, 0x2e51540,3, 0x2e51600,7, 0x2e51620,14, 0x2e51680,5, 0x2e516a0,7, 0x2e51800,13, 0x2e51840,2, 0x2e51854,4, 0x2e51880,27, 0x2e51900,12, 0x2e51940,14, 0x2e51980,28, 0x2e51a00,6, 0x2e51a40,6, 0x2e51a5c,3, 0x2e51a80,5, 0x2e51aa0,8, 0x2e51c00,14, 0x2e51c40,14, 0x2e51c80,14, 0x2e51cc0,14, 0x2e51d40,3, 0x2e51e00,7, 0x2e51e20,14, 0x2e51e80,5, 0x2e51ea0,7, 0x2e52000,8, 0x2e52040,8, 0x2e52080,1, 0x2e52098,6, 0x2e52100,10, 0x2e52140,3, 0x2e52150,2, 0x2e52180,2, 0x2e52200,6, 0x2e52220,18, 0x2e52280,4, 0x2e52300,8, 0x2e52400,2, 0x2e52480,2, 0x2e52800,28, 0x2e529f0,4, 0x2e53000,40, 0x2e53100,64, 0x2e53800,56, 0x2e53be0,8, 0x2e54000,13, 0x2e54040,2, 0x2e54054,4, 0x2e54080,27, 0x2e54100,12, 0x2e54140,14, 0x2e54180,28, 0x2e54200,6, 0x2e54240,6, 0x2e5425c,3, 0x2e54280,5, 0x2e542a0,8, 0x2e54400,14, 0x2e54440,14, 0x2e54480,14, 0x2e544c0,14, 0x2e54540,3, 0x2e54600,7, 0x2e54620,14, 0x2e54680,5, 0x2e546a0,7, 0x2e54800,13, 0x2e54840,2, 0x2e54854,4, 0x2e54880,27, 0x2e54900,12, 0x2e54940,14, 0x2e54980,28, 0x2e54a00,6, 0x2e54a40,6, 0x2e54a5c,3, 0x2e54a80,5, 0x2e54aa0,8, 0x2e54c00,14, 0x2e54c40,14, 0x2e54c80,14, 0x2e54cc0,14, 0x2e54d40,3, 0x2e54e00,7, 0x2e54e20,14, 0x2e54e80,5, 0x2e54ea0,7, 0x2e55000,13, 0x2e55040,2, 0x2e55054,4, 0x2e55080,27, 0x2e55100,12, 0x2e55140,14, 0x2e55180,28, 0x2e55200,6, 0x2e55240,6, 0x2e5525c,3, 0x2e55280,5, 0x2e552a0,8, 0x2e55400,14, 0x2e55440,14, 0x2e55480,14, 0x2e554c0,14, 0x2e55540,3, 0x2e55600,7, 0x2e55620,14, 0x2e55680,5, 0x2e556a0,7, 0x2e55800,13, 0x2e55840,2, 0x2e55854,4, 0x2e55880,27, 0x2e55900,12, 0x2e55940,14, 0x2e55980,28, 0x2e55a00,6, 0x2e55a40,6, 0x2e55a5c,3, 0x2e55a80,5, 0x2e55aa0,8, 0x2e55c00,14, 0x2e55c40,14, 0x2e55c80,14, 0x2e55cc0,14, 0x2e55d40,3, 0x2e55e00,7, 0x2e55e20,14, 0x2e55e80,5, 0x2e55ea0,7, 0x2e56000,8, 0x2e56040,8, 0x2e56080,1, 0x2e56098,6, 0x2e56100,10, 0x2e56140,3, 0x2e56150,2, 0x2e56180,2, 0x2e56200,6, 0x2e56220,18, 0x2e56280,4, 0x2e56300,8, 0x2e56400,2, 0x2e56480,2, 0x2e56800,28, 0x2e569f0,4, 0x2e57000,40, 0x2e57100,64, 0x2e57800,56, 0x2e57be0,8, 0x2e58000,2, 0x2e5800c,2, 0x2e58040,7, 0x2e58100,3, 0x2e58110,3, 0x2e58120,5, 0x2e58200,6, 0x2e58240,5, 0x2e58400,2, 0x2e5840c,2, 0x2e58440,7, 0x2e58500,3, 0x2e58510,3, 0x2e58520,5, 0x2e58600,6, 0x2e58640,5, 0x2e58800,2, 0x2e5880c,2, 0x2e58840,7, 0x2e58900,3, 0x2e58910,3, 0x2e58920,5, 0x2e58a00,6, 0x2e58a40,5, 0x2e58c00,2, 0x2e58c0c,2, 0x2e58c40,7, 0x2e58d00,3, 0x2e58d10,3, 0x2e58d20,5, 0x2e58e00,6, 0x2e58e40,5, 0x2e59000,2, 0x2e5900c,2, 0x2e59040,7, 0x2e59100,3, 0x2e59110,3, 0x2e59120,5, 0x2e59200,6, 0x2e59240,5, 0x2e59400,2, 0x2e5940c,2, 0x2e59440,7, 0x2e59500,3, 0x2e59510,3, 0x2e59520,5, 0x2e59600,6, 0x2e59640,5, 0x2e59800,2, 0x2e5980c,2, 0x2e59840,7, 0x2e59900,3, 0x2e59910,3, 0x2e59920,5, 0x2e59a00,6, 0x2e59a40,5, 0x2e59c00,2, 0x2e59c0c,2, 0x2e59c40,7, 0x2e59d00,3, 0x2e59d10,3, 0x2e59d20,5, 0x2e59e00,6, 0x2e59e40,5, 0x2e5a000,5, 0x2e5a040,9, 0x2e5a100,3, 0x2e5a200,1, 0x2e5a210,1, 0x2e5a220,1, 0x2e5a230,1, 0x2e5a240,1, 0x2e5a300,3, 0x2e5a314,1, 0x2e5a320,4, 0x2e5a400,5, 0x2e5a440,5, 0x2e5b000,80, 0x2e5b200,1, 0x2e60004,5, 0x2e60020,3, 0x2e60030,3, 0x2e60040,13, 0x2e60078,4, 0x2e6009c,25, 0x2e60104,5, 0x2e60120,3, 0x2e60130,3, 0x2e60140,13, 0x2e60178,4, 0x2e6019c,25, 0x2e60204,5, 0x2e60220,3, 0x2e60230,3, 0x2e60240,13, 0x2e60278,4, 0x2e6029c,25, 0x2e60304,5, 0x2e60320,3, 0x2e60330,3, 0x2e60340,13, 0x2e60378,4, 0x2e6039c,25, 0x2e60600,4, 0x2e60c00,24, 0x2e60c80,24, 0x2e60d00,24, 0x2e60d80,24, 0x2e60e00,4, 0x2e60e20,4, 0x2e60e40,4, 0x2e60e60,4, 0x2e60e80,39, 0x2e60f20,7, 0x2e60f40,7, 0x2e60f60,7, 0x2e61000,12, 0x2e61200,1, 0x2e61218,2, 0x2e6122c,1, 0x2e61280,1, 0x2e61298,2, 0x2e612ac,1, 0x2e61300,1, 0x2e61318,2, 0x2e6132c,1, 0x2e61380,1, 0x2e61398,2, 0x2e613ac,1, 0x2e61400,4, 0x2e61420,2, 0x2e6142c,1, 0x2e61480,4, 0x2e614a0,2, 0x2e614ac,1, 0x2e61500,4, 0x2e61520,2, 0x2e6152c,1, 0x2e61580,4, 0x2e615a0,2, 0x2e615ac,1, 0x2e61600,4, 0x2e61640,4, 0x2e61680,4, 0x2e616c0,4, 0x2e61700,7, 0x2e61720,7, 0x2e61740,7, 0x2e61760,7, 0x2e61780,4, 0x2e6179c,11, 0x2e617d0,2, 0x2e617e0,2, 0x2e617f0,2, 0x2e61900,44, 0x2e62000,7, 0x2e62020,4, 0x2e62040,4, 0x2e62060,7, 0x2e62080,7, 0x2e620a0,4, 0x2e620c0,4, 0x2e620e0,7, 0x2e62100,7, 0x2e62120,4, 0x2e62140,4, 0x2e62160,7, 0x2e62180,7, 0x2e621a0,4, 0x2e621c0,4, 0x2e621e0,7, 0x2e62200,32, 0x2e62b00,1, 0x2e62b20,1, 0x2e62b28,4, 0x2e62b40,1, 0x2e62b60,1, 0x2e62b68,4, 0x2e62b80,1, 0x2e62ba0,1, 0x2e62ba8,4, 0x2e62bc0,1, 0x2e62be0,1, 0x2e62be8,4, 0x2e62c00,7, 0x2e62c20,1, 0x2e62c54,18, 0x2e62ca0,1, 0x2e62cd4,18, 0x2e62d20,1, 0x2e62d54,18, 0x2e62da0,1, 0x2e62dd4,12, 0x2e62e08,6, 0x2e63100,7, 0x2e63120,7, 0x2e63140,7, 0x2e63160,7, 0x2e63180,3, 0x2e64004,5, 0x2e64020,3, 0x2e64030,3, 0x2e64040,13, 0x2e64078,4, 0x2e6409c,25, 0x2e64104,5, 0x2e64120,3, 0x2e64130,3, 0x2e64140,13, 0x2e64178,4, 0x2e6419c,25, 0x2e64204,5, 0x2e64220,3, 0x2e64230,3, 0x2e64240,13, 0x2e64278,4, 0x2e6429c,25, 0x2e64304,5, 0x2e64320,3, 0x2e64330,3, 0x2e64340,13, 0x2e64378,4, 0x2e6439c,25, 0x2e64600,4, 0x2e64c00,24, 0x2e64c80,24, 0x2e64d00,24, 0x2e64d80,24, 0x2e64e00,4, 0x2e64e20,4, 0x2e64e40,4, 0x2e64e60,4, 0x2e64e80,39, 0x2e64f20,7, 0x2e64f40,7, 0x2e64f60,7, 0x2e65000,12, 0x2e65200,1, 0x2e65218,2, 0x2e6522c,1, 0x2e65280,1, 0x2e65298,2, 0x2e652ac,1, 0x2e65300,1, 0x2e65318,2, 0x2e6532c,1, 0x2e65380,1, 0x2e65398,2, 0x2e653ac,1, 0x2e65400,4, 0x2e65420,2, 0x2e6542c,1, 0x2e65480,4, 0x2e654a0,2, 0x2e654ac,1, 0x2e65500,4, 0x2e65520,2, 0x2e6552c,1, 0x2e65580,4, 0x2e655a0,2, 0x2e655ac,1, 0x2e65600,4, 0x2e65640,4, 0x2e65680,4, 0x2e656c0,4, 0x2e65700,7, 0x2e65720,7, 0x2e65740,7, 0x2e65760,7, 0x2e65780,4, 0x2e6579c,11, 0x2e657d0,2, 0x2e657e0,2, 0x2e657f0,2, 0x2e65900,44, 0x2e66000,7, 0x2e66020,4, 0x2e66040,4, 0x2e66060,7, 0x2e66080,7, 0x2e660a0,4, 0x2e660c0,4, 0x2e660e0,7, 0x2e66100,7, 0x2e66120,4, 0x2e66140,4, 0x2e66160,7, 0x2e66180,7, 0x2e661a0,4, 0x2e661c0,4, 0x2e661e0,7, 0x2e66200,32, 0x2e66b00,1, 0x2e66b20,1, 0x2e66b28,4, 0x2e66b40,1, 0x2e66b60,1, 0x2e66b68,4, 0x2e66b80,1, 0x2e66ba0,1, 0x2e66ba8,4, 0x2e66bc0,1, 0x2e66be0,1, 0x2e66be8,4, 0x2e66c00,7, 0x2e66c20,1, 0x2e66c54,18, 0x2e66ca0,1, 0x2e66cd4,18, 0x2e66d20,1, 0x2e66d54,18, 0x2e66da0,1, 0x2e66dd4,12, 0x2e66e08,6, 0x2e67100,7, 0x2e67120,7, 0x2e67140,7, 0x2e67160,7, 0x2e67180,3, 0x2e68000,10, 0x2e68080,3, 0x2e680c0,1, 0x2e68100,21, 0x2e68180,13, 0x2e681c4,7, 0x2e681e4,7, 0x2e68204,7, 0x2e68224,8, 0x2e69000,7, 0x2e69030,2, 0x2e69040,7, 0x2e69070,2, 0x2e69100,2, 0x2e69120,2, 0x2e69140,2, 0x2e69160,2, 0x2e69180,9, 0x2e69200,7, 0x2e69230,2, 0x2e69240,7, 0x2e69270,2, 0x2e69300,2, 0x2e69320,2, 0x2e69340,2, 0x2e69360,2, 0x2e69380,9, 0x2e69400,11, 0x2e69500,11, 0x2e6a000,3, 0x2e6a010,2, 0x2e6a01c,5, 0x2e6a040,8, 0x2e6a080,3, 0x2e6a090,2, 0x2e6a09c,5, 0x2e6a0c0,8, 0x2e6a100,3, 0x2e6a110,2, 0x2e6a11c,5, 0x2e6a140,8, 0x2e6a180,3, 0x2e6a190,2, 0x2e6a19c,5, 0x2e6a1c0,8, 0x2e6a200,7, 0x2e6a220,12, 0x2e6a280,7, 0x2e6a2a0,12, 0x2e6a300,3, 0x2e6a310,1, 0x2e6a400,3, 0x2e6a410,2, 0x2e6a41c,5, 0x2e6a440,8, 0x2e6a480,3, 0x2e6a490,2, 0x2e6a49c,5, 0x2e6a4c0,8, 0x2e6a500,3, 0x2e6a510,2, 0x2e6a51c,5, 0x2e6a540,8, 0x2e6a580,3, 0x2e6a590,2, 0x2e6a59c,5, 0x2e6a5c0,8, 0x2e6a600,7, 0x2e6a620,12, 0x2e6a680,7, 0x2e6a6a0,12, 0x2e6a700,3, 0x2e6a710,1, 0x2e6a804,1, 0x2e6a824,21, 0x2e6a880,16, 0x2e6a900,5, 0x2e6a920,11, 0x2e6a950,9, 0x2e6a980,22, 0x2e6aa00,22, 0x2e6aa80,22, 0x2e6ab00,22, 0x2e6ab80,22, 0x2e6ac00,22, 0x2e6ac80,22, 0x2e6ad00,22, 0x2e6ad80,3, 0x2e6c000,16, 0x2e6c080,11, 0x2e6c100,11, 0x2e6c204,1, 0x2e6c224,21, 0x2e6c280,16, 0x2e6c300,11, 0x2e6c340,11, 0x2e6c800,21, 0x2e6c860,5, 0x2e6c880,6, 0x2e6c8a0,5, 0x2e6c8c0,6, 0x2e6c900,21, 0x2e6c960,5, 0x2e6c980,6, 0x2e6c9a0,5, 0x2e6c9c0,6, 0x2e6ca00,21, 0x2e6ca60,5, 0x2e6ca80,6, 0x2e6caa0,5, 0x2e6cac0,6, 0x2e6cb00,21, 0x2e6cb60,5, 0x2e6cb80,6, 0x2e6cba0,5, 0x2e6cbc0,6, 0x2e6cc00,9, 0x2e6cc48,7, 0x2e6cc68,2, 0x2e6cc74,9, 0x2e6cc9c,2, 0x2e6cd00,14, 0x2e6cd40,14, 0x2e6cd80,28, 0x2e6ce00,19, 0x2e6ce50,3, 0x2e6ce60,25, 0x2e6cec8,1, 0x2e6ced0,2, 0x2e6cee0,7, 0x2e6cf00,1, 0x2e6cf08,2, 0x2e6cffc,20, 0x2e6d050,25, 0x2e6d100,19, 0x2e6d150,25, 0x2e6d200,19, 0x2e6d250,25, 0x2e6d300,19, 0x2e6d350,25, 0x2e6d400,19, 0x2e6d450,25, 0x2e6d500,19, 0x2e6d550,25, 0x2e6d600,19, 0x2e6d650,25, 0x2e6d700,19, 0x2e6d750,25, 0x2e6d800,19, 0x2e6d850,25, 0x2e6d904,1, 0x2e6d914,10, 0x2e6d948,11, 0x2e6d980,2, 0x2e6d9a0,6, 0x2e6d9c0,2, 0x2e6d9cc,2, 0x2e6e000,35, 0x2e6ea00,10, 0x2e6ea80,3, 0x2e6eb00,6, 0x2e6f000,1, 0x2e6f008,5, 0x2e6f038,1, 0x2e6f044,1, 0x2e6f050,2, 0x2e6f100,13, 0x2e6f140,11, 0x2e6f170,12, 0x2e6f1a4,1, 0x2e6f200,104, 0x2e6f400,104, 0x2e6f600,104, 0x2e6f800,104, 0x2e70000,13, 0x2e70040,2, 0x2e70054,4, 0x2e70080,27, 0x2e70100,12, 0x2e70140,14, 0x2e70180,28, 0x2e70200,6, 0x2e70240,6, 0x2e7025c,3, 0x2e70280,5, 0x2e702a0,8, 0x2e70400,14, 0x2e70440,14, 0x2e70480,14, 0x2e704c0,14, 0x2e70540,3, 0x2e70600,7, 0x2e70620,14, 0x2e70680,5, 0x2e706a0,7, 0x2e70800,13, 0x2e70840,2, 0x2e70854,4, 0x2e70880,27, 0x2e70900,12, 0x2e70940,14, 0x2e70980,28, 0x2e70a00,6, 0x2e70a40,6, 0x2e70a5c,3, 0x2e70a80,5, 0x2e70aa0,8, 0x2e70c00,14, 0x2e70c40,14, 0x2e70c80,14, 0x2e70cc0,14, 0x2e70d40,3, 0x2e70e00,7, 0x2e70e20,14, 0x2e70e80,5, 0x2e70ea0,7, 0x2e71000,13, 0x2e71040,2, 0x2e71054,4, 0x2e71080,27, 0x2e71100,12, 0x2e71140,14, 0x2e71180,28, 0x2e71200,6, 0x2e71240,6, 0x2e7125c,3, 0x2e71280,5, 0x2e712a0,8, 0x2e71400,14, 0x2e71440,14, 0x2e71480,14, 0x2e714c0,14, 0x2e71540,3, 0x2e71600,7, 0x2e71620,14, 0x2e71680,5, 0x2e716a0,7, 0x2e71800,13, 0x2e71840,2, 0x2e71854,4, 0x2e71880,27, 0x2e71900,12, 0x2e71940,14, 0x2e71980,28, 0x2e71a00,6, 0x2e71a40,6, 0x2e71a5c,3, 0x2e71a80,5, 0x2e71aa0,8, 0x2e71c00,14, 0x2e71c40,14, 0x2e71c80,14, 0x2e71cc0,14, 0x2e71d40,3, 0x2e71e00,7, 0x2e71e20,14, 0x2e71e80,5, 0x2e71ea0,7, 0x2e72000,8, 0x2e72040,8, 0x2e72080,1, 0x2e72098,6, 0x2e72100,10, 0x2e72140,3, 0x2e72150,2, 0x2e72180,2, 0x2e72200,6, 0x2e72220,18, 0x2e72280,4, 0x2e72300,8, 0x2e72400,2, 0x2e72480,2, 0x2e72800,28, 0x2e729f0,4, 0x2e73000,40, 0x2e73100,64, 0x2e73800,56, 0x2e73be0,8, 0x2e74000,13, 0x2e74040,2, 0x2e74054,4, 0x2e74080,27, 0x2e74100,12, 0x2e74140,14, 0x2e74180,28, 0x2e74200,6, 0x2e74240,6, 0x2e7425c,3, 0x2e74280,5, 0x2e742a0,8, 0x2e74400,14, 0x2e74440,14, 0x2e74480,14, 0x2e744c0,14, 0x2e74540,3, 0x2e74600,7, 0x2e74620,14, 0x2e74680,5, 0x2e746a0,7, 0x2e74800,13, 0x2e74840,2, 0x2e74854,4, 0x2e74880,27, 0x2e74900,12, 0x2e74940,14, 0x2e74980,28, 0x2e74a00,6, 0x2e74a40,6, 0x2e74a5c,3, 0x2e74a80,5, 0x2e74aa0,8, 0x2e74c00,14, 0x2e74c40,14, 0x2e74c80,14, 0x2e74cc0,14, 0x2e74d40,3, 0x2e74e00,7, 0x2e74e20,14, 0x2e74e80,5, 0x2e74ea0,7, 0x2e75000,13, 0x2e75040,2, 0x2e75054,4, 0x2e75080,27, 0x2e75100,12, 0x2e75140,14, 0x2e75180,28, 0x2e75200,6, 0x2e75240,6, 0x2e7525c,3, 0x2e75280,5, 0x2e752a0,8, 0x2e75400,14, 0x2e75440,14, 0x2e75480,14, 0x2e754c0,14, 0x2e75540,3, 0x2e75600,7, 0x2e75620,14, 0x2e75680,5, 0x2e756a0,7, 0x2e75800,13, 0x2e75840,2, 0x2e75854,4, 0x2e75880,27, 0x2e75900,12, 0x2e75940,14, 0x2e75980,28, 0x2e75a00,6, 0x2e75a40,6, 0x2e75a5c,3, 0x2e75a80,5, 0x2e75aa0,8, 0x2e75c00,14, 0x2e75c40,14, 0x2e75c80,14, 0x2e75cc0,14, 0x2e75d40,3, 0x2e75e00,7, 0x2e75e20,14, 0x2e75e80,5, 0x2e75ea0,7, 0x2e76000,8, 0x2e76040,8, 0x2e76080,1, 0x2e76098,6, 0x2e76100,10, 0x2e76140,3, 0x2e76150,2, 0x2e76180,2, 0x2e76200,6, 0x2e76220,18, 0x2e76280,4, 0x2e76300,8, 0x2e76400,2, 0x2e76480,2, 0x2e76800,28, 0x2e769f0,4, 0x2e77000,40, 0x2e77100,64, 0x2e77800,56, 0x2e77be0,8, 0x2e78000,2, 0x2e7800c,2, 0x2e78040,7, 0x2e78100,3, 0x2e78110,3, 0x2e78120,5, 0x2e78200,6, 0x2e78240,5, 0x2e78400,2, 0x2e7840c,2, 0x2e78440,7, 0x2e78500,3, 0x2e78510,3, 0x2e78520,5, 0x2e78600,6, 0x2e78640,5, 0x2e78800,2, 0x2e7880c,2, 0x2e78840,7, 0x2e78900,3, 0x2e78910,3, 0x2e78920,5, 0x2e78a00,6, 0x2e78a40,5, 0x2e78c00,2, 0x2e78c0c,2, 0x2e78c40,7, 0x2e78d00,3, 0x2e78d10,3, 0x2e78d20,5, 0x2e78e00,6, 0x2e78e40,5, 0x2e79000,2, 0x2e7900c,2, 0x2e79040,7, 0x2e79100,3, 0x2e79110,3, 0x2e79120,5, 0x2e79200,6, 0x2e79240,5, 0x2e79400,2, 0x2e7940c,2, 0x2e79440,7, 0x2e79500,3, 0x2e79510,3, 0x2e79520,5, 0x2e79600,6, 0x2e79640,5, 0x2e79800,2, 0x2e7980c,2, 0x2e79840,7, 0x2e79900,3, 0x2e79910,3, 0x2e79920,5, 0x2e79a00,6, 0x2e79a40,5, 0x2e79c00,2, 0x2e79c0c,2, 0x2e79c40,7, 0x2e79d00,3, 0x2e79d10,3, 0x2e79d20,5, 0x2e79e00,6, 0x2e79e40,5, 0x2e7a000,5, 0x2e7a040,9, 0x2e7a100,3, 0x2e7a200,1, 0x2e7a210,1, 0x2e7a220,1, 0x2e7a230,1, 0x2e7a240,1, 0x2e7a300,3, 0x2e7a314,1, 0x2e7a320,4, 0x2e7a400,5, 0x2e7a440,5, 0x2e7b000,80, 0x2e7b200,1, 0x2e80000,3, 0x2e80010,7, 0x2e80030,10, 0x2e80080,2, 0x2e80100,6, 0x2e80140,2, 0x2e80180,2, 0x2e801a0,1, 0x2e80400,2, 0x2e80440,4, 0x2e80460,5, 0x2e80478,1, 0x2e80480,6, 0x2e804a0,3, 0x2e804b0,2, 0x2e80500,5, 0x2e80600,1, 0x2e80800,5, 0x2e80900,5, 0x2e80a00,5, 0x2e80b00,3, 0x2e80c00,35, 0x2e80d00,25, 0x2e80d80,1, 0x2e80dc0,3, 0x2e80e00,2, 0x2e80e20,2, 0x2e90000,3, 0x2e9001c,4, 0x2e90080,3, 0x2e90090,2, 0x2e900d4,4, 0x2e900ec,27, 0x2e9015c,27, 0x2e901cc,19, 0x2e90224,120, 0x2e90408,24, 0x2e9046c,84, 0x2e905f8,4, 0x2e90610,27, 0x2e90680,27, 0x2e906f0,19, 0x2e90748,120, 0x2e9092c,24, 0x2e90990,84, 0x2e90b1c,4, 0x2e90b34,27, 0x2e90ba4,27, 0x2e90c14,19, 0x2e90c6c,120, 0x2e90e50,24, 0x2e90eb4,84, 0x2e91040,4, 0x2e91058,27, 0x2e910c8,27, 0x2e91138,19, 0x2e91190,120, 0x2e91374,24, 0x2e913d8,84, 0x2e91564,4, 0x2e9157c,27, 0x2e915ec,27, 0x2e9165c,19, 0x2e916b4,120, 0x2e91898,24, 0x2e918fc,84, 0x2e91a88,4, 0x2e91aa0,27, 0x2e91b10,27, 0x2e91b80,19, 0x2e91bd8,120, 0x2e91dbc,24, 0x2e91e20,84, 0x2e91fac,4, 0x2e91fc4,27, 0x2e92034,27, 0x2e920a4,19, 0x2e920fc,120, 0x2e922e0,24, 0x2e92344,84, 0x2e924d0,4, 0x2e924e8,27, 0x2e92558,27, 0x2e925c8,19, 0x2e92620,120, 0x2e92804,24, 0x2e92868,84, 0x2e929f4,4, 0x2e92a0c,27, 0x2e92a7c,27, 0x2e92aec,19, 0x2e92b44,120, 0x2e92d28,24, 0x2e92d8c,84, 0x2e92f18,4, 0x2e92f30,27, 0x2e92fa0,27, 0x2e93010,19, 0x2e93068,120, 0x2e9324c,24, 0x2e932b0,84, 0x2e9343c,4, 0x2e93454,27, 0x2e934c4,27, 0x2e93534,19, 0x2e9358c,120, 0x2e93770,24, 0x2e937d4,84, 0x2e93960,4, 0x2e93978,27, 0x2e939e8,27, 0x2e93a58,19, 0x2e93ab0,120, 0x2e93c94,24, 0x2e93cf8,84, 0x2e93e84,4, 0x2e93e9c,27, 0x2e93f0c,27, 0x2e93f7c,19, 0x2e93fd4,120, 0x2e941b8,24, 0x2e9421c,84, 0x2e943a8,4, 0x2e943c0,27, 0x2e94430,27, 0x2e944a0,19, 0x2e944f8,120, 0x2e946dc,24, 0x2e94740,84, 0x2e948cc,4, 0x2e948e4,27, 0x2e94954,27, 0x2e949c4,19, 0x2e94a1c,120, 0x2e94c00,24, 0x2e94c64,84, 0x2e94df0,4, 0x2e94e08,27, 0x2e94e78,27, 0x2e94ee8,19, 0x2e94f40,120, 0x2e95124,24, 0x2e95188,84, 0x2e95314,4, 0x2e9532c,27, 0x2e9539c,27, 0x2e9540c,19, 0x2e95464,120, 0x2e95648,24, 0x2e956ac,84, 0x2e95838,14, 0x2e95940,13, 0x2e95a44,13, 0x2e95b48,16, 0x2e95b90,42, 0x2e95c40,2, 0x2e95c90,54, 0x2e95d70,58, 0x2e95e60,58, 0x2e95f50,58, 0x2e96040,58, 0x2e96130,58, 0x2e96220,58, 0x2e96310,58, 0x2e96400,58, 0x2e964f0,58, 0x2e965e0,58, 0x2e966d0,58, 0x2e967c0,58, 0x2e968b0,58, 0x2e969a0,58, 0x2e96a90,58, 0x2e96b80,58, 0x2e96c70,58, 0x2e96d60,58, 0x2e96e50,58, 0x2e96f40,58, 0x2e97030,58, 0x2e97120,58, 0x2e97210,58, 0x2e97300,58, 0x2e973f0,58, 0x2e974e0,58, 0x2e975d0,58, 0x2e976c0,58, 0x2e977b0,58, 0x2e978a0,58, 0x2e97990,58, 0x2e97a80,101, 0x2e97c90,49, 0x2e97db0,18, 0x2e97e00,11, 0x2e97e30,4, 0x2e97e54,45, 0x2e97f58,9, 0x2e97f88,3, 0x2e97fa0,2, 0x2e97fd8,14, 0x2e98014,12, 0x2e98158,3, 0x2e98168,2, 0x2e98174,68, 0x2e98288,2, 0x2e98294,68, 0x2e983a8,1, 0x2e983b0,2, 0x2e983bc,68, 0x2e984d0,2, 0x2e984dc,68, 0x2e985f0,1, 0x2e985f8,4, 0x2e98610,3, 0x2e98624,12, 0x2e98688,8, 0x2e986dc,1, 0x2e986e8,4, 0x2e98700,3, 0x2e98714,12, 0x2e98778,8, 0x2e987cc,1, 0x2e987d8,4, 0x2e987f0,3, 0x2e98804,12, 0x2e98868,8, 0x2e988bc,1, 0x2e988c8,4, 0x2e988e0,3, 0x2e988f4,12, 0x2e98958,8, 0x2e989ac,1, 0x2e989b8,4, 0x2e989d0,3, 0x2e989e4,12, 0x2e98a48,8, 0x2e98a9c,1, 0x2e98aa8,4, 0x2e98ac0,3, 0x2e98ad4,12, 0x2e98b38,8, 0x2e98b8c,1, 0x2e98b98,4, 0x2e98bb0,3, 0x2e98bc4,12, 0x2e98c28,8, 0x2e98c7c,1, 0x2e98c88,4, 0x2e98ca0,3, 0x2e98cb4,12, 0x2e98d18,8, 0x2e98d6c,1, 0x2e98d78,4, 0x2e98d90,3, 0x2e98da4,12, 0x2e98e08,8, 0x2e98e5c,1, 0x2e98e68,4, 0x2e98e80,3, 0x2e98e94,12, 0x2e98ef8,8, 0x2e98f4c,1, 0x2e98f58,4, 0x2e98f70,3, 0x2e98f84,12, 0x2e98fe8,8, 0x2e9903c,1, 0x2e99048,4, 0x2e99060,3, 0x2e99074,12, 0x2e990d8,8, 0x2e9912c,1, 0x2e99138,4, 0x2e99150,3, 0x2e99164,12, 0x2e991c8,8, 0x2e9921c,1, 0x2e99228,4, 0x2e99240,3, 0x2e99254,12, 0x2e992b8,8, 0x2e9930c,1, 0x2e99318,4, 0x2e99330,3, 0x2e99344,12, 0x2e993a8,8, 0x2e993fc,1, 0x2e99408,4, 0x2e99420,3, 0x2e99434,12, 0x2e99498,8, 0x2e994ec,1, 0x2e994f8,4, 0x2e99510,3, 0x2e99524,12, 0x2e99588,8, 0x2e995dc,1, 0x2e995e8,64, 0x2e99748,5, 0x2e99990,28, 0x2e99a04,1, 0x2e99a98,1, 0x2e99be8,5, 0x2e99c04,3, 0x2e99c18,13, 0x2e99c50,2, 0x2e9a000,15, 0x2e9a044,81, 0x2e9a18c,84, 0x2e9a2e0,84, 0x2e9a434,84, 0x2e9a588,84, 0x2e9a6dc,84, 0x2e9a830,84, 0x2e9a984,84, 0x2e9aad8,84, 0x2e9ac2c,84, 0x2e9ad80,84, 0x2e9aed4,84, 0x2e9b028,84, 0x2e9b17c,84, 0x2e9b2d0,84, 0x2e9b424,84, 0x2e9b578,84, 0x2e9b6cc,5, 0x2e9b760,4, 0x2e9b8e0,2414, 0x2e9dea4,80, 0x2e9e048,4, 0x2e9ebe0,1, 0x2e9ebf0,97, 0x2e9ed94,7, 0x2e9ee7c,1, 0x2e9eeac,9, 0x2e9eed4,5, 0x2e9eeec,11, 0x2e9ef2c,17, 0x2e9ef74,29, 0x2e9f034,3, 0x2e9f044,1, 0x2e9f054,17, 0x2e9fbe0,3, 0x2e9fbf0,2, 0x2ea0000,3, 0x2ea0018,2, 0x2ea0024,14, 0x2ea0060,27, 0x2ea00d0,3, 0x2ea00e0,3, 0x2ea00f0,3, 0x2ea0100,4, 0x2ea0120,6, 0x2ea0140,3, 0x2ea0150,1, 0x2ea015c,4, 0x2ea0170,1, 0x2ea0180,15, 0x2ea01c0,1, 0x2ea01c8,5, 0x2ea01e0,1, 0x2ea01f0,3, 0x2ea0200,3, 0x2ea0218,2, 0x2ea0224,14, 0x2ea0260,27, 0x2ea02d0,3, 0x2ea02e0,3, 0x2ea02f0,3, 0x2ea0300,4, 0x2ea0320,6, 0x2ea0340,3, 0x2ea0350,1, 0x2ea035c,4, 0x2ea0370,1, 0x2ea0380,15, 0x2ea03c0,1, 0x2ea03c8,5, 0x2ea03e0,1, 0x2ea03f0,3, 0x2ea0400,3, 0x2ea0418,2, 0x2ea0424,14, 0x2ea0460,27, 0x2ea04d0,3, 0x2ea04e0,3, 0x2ea04f0,3, 0x2ea0500,4, 0x2ea0520,6, 0x2ea0540,3, 0x2ea0550,1, 0x2ea055c,4, 0x2ea0570,1, 0x2ea0580,15, 0x2ea05c0,1, 0x2ea05c8,5, 0x2ea05e0,1, 0x2ea05f0,3, 0x2ea0600,3, 0x2ea0618,2, 0x2ea0624,14, 0x2ea0660,27, 0x2ea06d0,3, 0x2ea06e0,3, 0x2ea06f0,3, 0x2ea0700,4, 0x2ea0720,6, 0x2ea0740,3, 0x2ea0750,1, 0x2ea075c,4, 0x2ea0770,1, 0x2ea0780,15, 0x2ea07c0,1, 0x2ea07c8,5, 0x2ea07e0,1, 0x2ea07f0,3, 0x2ea0800,3, 0x2ea0818,2, 0x2ea0824,14, 0x2ea0860,27, 0x2ea08d0,3, 0x2ea08e0,3, 0x2ea08f0,3, 0x2ea0900,4, 0x2ea0920,6, 0x2ea0940,3, 0x2ea0950,1, 0x2ea095c,4, 0x2ea0970,1, 0x2ea0980,15, 0x2ea09c0,1, 0x2ea09c8,5, 0x2ea09e0,1, 0x2ea09f0,3, 0x2ea1844,1, 0x2ea1858,5, 0x2ea1904,3, 0x2ea1950,3, 0x2ea1988,2, 0x2ea19a0,7, 0x2ea19c0,7, 0x2ea19e0,4, 0x2ea2000,24, 0x2ea20f0,3, 0x2ea2100,7, 0x2ea2120,7, 0x2ea2144,7, 0x2ea2400,4, 0x2ea2420,5, 0x2ea25e0,3, 0x2ea25f4,1, 0x2ea25fc,4, 0x2ea2620,3, 0x2ea2680,8, 0x2ea2700,19, 0x2ea2800,99, 0x2ea2a00,18, 0x2ea2a80,8, 0x2ea2b00,1, 0x2ea3070,1, 0x2ea3080,2, 0x2ea308c,1, 0x2ea3098,2, 0x2ea3404,1, 0x2ea3440,20, 0x2ea3494,1, 0x2ea349c,7, 0x2ea34d0,4, 0x2ea34e8,2, 0x2ea34fc,8, 0x2ea3520,7, 0x2ea3540,7, 0x2ea3560,7, 0x2ea3580,7, 0x2ea35a0,7, 0x2ea35c0,7, 0x2ea35e0,7, 0x2ea3600,9, 0x2ea363c,2, 0x2ea3650,6, 0x2ea3684,10, 0x2ea3a00,10, 0x2ea3a30,1, 0x2ea3a40,8, 0x2ea3a64,5, 0x2ea4a04,3, 0x2ea4b00,33, 0x2ea4b90,3, 0x2ea5000,8, 0x2ea5040,8, 0x2ea5104,1, 0x2ea510c,3, 0x2ea5124,1, 0x2ea512c,3, 0x2ea6000,13, 0x2ea6200,14, 0x2ea6240,1, 0x2ea6248,1, 0x2ea6258,1, 0x2ea6260,8, 0x2ea6284,1, 0x2ea62a0,8, 0x2ea6348,5, 0x2ea67f0,1, 0x2ea67f8,1, 0x2ea6a10,12, 0x2ea7000,19, 0x2ea7a00,10, 0x2ea7a80,3, 0x2ea7b00,6, 0x2ec0000,1, 0x2ec000c,5, 0x2ec0044,1, 0x2ec0054,5, 0x2ec0200,128, 0x2ec0404,1, 0x2ec0428,54, 0x2ec0600,32, 0x2ec0704,1, 0x2ec0800,1, 0x2ec0900,1, 0x2ec0910,2, 0x2ec0920,3, 0x2ec0980,10, 0x2ec0a00,19, 0x2ec0b00,1, 0x2ee0000,2, 0x2ee000c,2, 0x2ee0018,2, 0x2ee0024,2, 0x2ee0030,2, 0x2ee003c,2, 0x2ee0048,2, 0x2ee0054,2, 0x2ee0060,1, 0x2ee0070,2, 0x2ee007c,2, 0x2ee0088,2, 0x2ee0094,2, 0x2ee00a0,2, 0x2ee00ac,2, 0x2ee00b8,2, 0x2ee00c4,2, 0x2ee00d0,1, 0x2ee00e0,2, 0x2ee00ec,2, 0x2ee00f8,2, 0x2ee0104,2, 0x2ee0110,2, 0x2ee011c,2, 0x2ee0128,2, 0x2ee0134,2, 0x2ee0140,1, 0x2ee0150,2, 0x2ee015c,2, 0x2ee0168,2, 0x2ee0174,2, 0x2ee0180,2, 0x2ee018c,2, 0x2ee0198,2, 0x2ee01a4,2, 0x2ee01b0,1, 0x2ee01c0,57, 0x2ee02b0,67, 0x2ee03c0,16, 0x2ee0410,23, 0x2ee0470,16, 0x2ee04c0,23, 0x2ee0520,16, 0x2ee0570,23, 0x2ee05d0,16, 0x2ee0620,23, 0x2ee0680,16, 0x2ee06d0,23, 0x2ee0730,16, 0x2ee0780,23, 0x2ee07e0,16, 0x2ee0830,23, 0x2ee0890,16, 0x2ee08e0,23, 0x2ee0940,16, 0x2ee0990,23, 0x2ee09f0,16, 0x2ee0a40,23, 0x2ee0aa0,16, 0x2ee0af0,23, 0x2ee0b50,16, 0x2ee0ba0,23, 0x2ee0c00,16, 0x2ee0c50,23, 0x2ee0cb0,16, 0x2ee0d00,23, 0x2ee0d60,16, 0x2ee0db0,23, 0x2ee0e10,16, 0x2ee0e60,23, 0x2ee0ec0,16, 0x2ee0f10,23, 0x2ee0f70,16, 0x2ee0fc0,23, 0x2ee1020,16, 0x2ee1070,23, 0x2ee10d0,16, 0x2ee1120,23, 0x2ee1180,16, 0x2ee11d0,23, 0x2ee1230,16, 0x2ee1280,23, 0x2ee12e0,16, 0x2ee1330,23, 0x2ee1390,16, 0x2ee13e0,23, 0x2ee1440,16, 0x2ee1490,23, 0x2ee14f0,16, 0x2ee1540,23, 0x2ee15a0,16, 0x2ee15f0,23, 0x2ee1650,16, 0x2ee16a0,23, 0x2ee1700,16, 0x2ee1750,23, 0x2ee17b0,16, 0x2ee1800,23, 0x2ee1860,16, 0x2ee18b0,23, 0x2ee1910,16, 0x2ee1960,2, 0x2ef0000,4, 0x2ef0014,2, 0x2ef0020,8, 0x2ef0044,2, 0x2ef0050,13, 0x2ef0088,20, 0x2ef00dc,1, 0x2ef0180,6, 0x2ef0590,3, 0x2ef05c0,2, 0x2ef0a04,1, 0x2ef0a0c,3, 0x2ef0a20,1, 0x2ef0ba0,4, 0x2ef0c00,4, 0x2ef0c20,3, 0x2ef0c30,5, 0x2ef0c50,52, 0x2ef0d50,57, 0x2ef0ec0,3, 0x2ef0ffc,3, 0x2ef1020,3, 0x2ef1030,3, 0x2ef1060,2, 0x2ef1100,2, 0x2ef1140,18, 0x2ef11c0,30, 0x2ef1240,14, 0x2ef1280,28, 0x2ef1300,2, 0x2ef13a0,6, 0x2ef1400,19, 0x2ef1800,19, 0x2ef1c00,19, 0x2ef1c80,8, 0x2ef1d00,3, 0x2ef1d50,3, 0x2ef1e00,3, 0x2ef1e10,2, 0x2ef1e20,6, 0x2ef1e40,6, 0x2ef1e60,6, 0x2ef1e80,6, 0x2ef1ea0,6, 0x2ef1ec0,2, 0x2ef1ecc,2, 0x2ef1ee0,2, 0x2ef1eec,2, 0x2ef1f80,3, 0x2ef1f90,60, 0x2ef2100,32, 0x2ef2200,32, 0x2ef2300,32, 0x2ef2400,32, 0x2ef2500,32, 0x2ef2600,32, 0x2ef2700,32, 0x2ef2800,32, 0x2ef2900,32, 0x2ef2a00,32, 0x2ef2b00,32, 0x2ef2c00,32, 0x2ef2d00,32, 0x2ef2e00,32, 0x2ef2f00,32, 0x2ef3000,32, 0x2ef30c0,3, 0x2ef4000,2, 0x2ef4040,16, 0x2ef4100,36, 0x2ef4800,5, 0x2ef4824,1, 0x2ef482c,1, 0x2ef4c04,1, 0x2ef4cd8,74, 0x2ef5000,7, 0x2ef5020,4, 0x2ef5204,1, 0x2ef5280,35, 0x2ef5310,4, 0x2ef5404,1, 0x2ef5480,34, 0x2ef5510,10, 0x2ef553c,3, 0x2ef5800,7, 0x2ef5820,4, 0x2ef5a04,1, 0x2ef5a80,35, 0x2ef5b10,4, 0x2ef5c04,1, 0x2ef5c80,34, 0x2ef5d10,10, 0x2ef5d3c,3, 0x2efa000,5, 0x2efa01c,13, 0x2efa060,3, 0x2efa080,8, 0x2efa100,5, 0x2efa11c,13, 0x2efa160,3, 0x2efa180,8, mstflint-4.26.0/mstdump/mstdump_dbs/CableQSFP.csv0000644000175000017500000000010014522641732022121 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x000000,15, 0x000048,11, 0x00007c,33, mstflint-4.26.0/mstdump/mstdump_dbs/BW00.csv0000644000175000017500000036142314522641732021113 0ustar tzafrirctzafrirc#Addr, Size, Enable addr 0x3000000,2244, 0x3004000,2, 0x3004040,9, 0x3004080,7, 0x3008000,2244, 0x300c000,28, 0x300c080,42, 0x300c130,8, 0x300c180,5, 0x300c198,4, 0x300c1c0,34, 0x300c260,7, 0x300c280,1, 0x300c400,7, 0x300c420,7, 0x300c440,7, 0x300c460,7, 0x300c480,7, 0x300c4a0,7, 0x300c4c0,7, 0x300c4e0,7, 0x300c500,43, 0x300c5b0,3, 0x300c5c0,7, 0x300c800,22, 0x300c880,22, 0x300c900,22, 0x300c980,22, 0x300ca00,22, 0x300ca80,22, 0x300cb00,22, 0x300cb80,22, 0x300cc00,131, 0x300ce20,1, 0x300ce28,5, 0x300ce40,6, 0x300ce80,20, 0x300cee0,5, 0x300cf00,14, 0x300cf40,6, 0x300cf60,3, 0x300cf70,1, 0x300cf78,2, 0x300d000,14, 0x300d800,48, 0x300d900,18, 0x300da00,99, 0x300e000,5, 0x300e020,5, 0x300e040,5, 0x300e060,5, 0x300e080,5, 0x300e0a0,5, 0x300e0c0,5, 0x300e0e0,5, 0x300e100,5, 0x300e120,5, 0x300e140,5, 0x300e160,5, 0x300e180,5, 0x300e1a0,5, 0x300e1c0,5, 0x300e1e0,5, 0x300e200,5, 0x300e220,5, 0x300e240,5, 0x300e260,5, 0x300e280,5, 0x300e2a0,5, 0x300e2c0,5, 0x300e2e0,5, 0x300e300,5, 0x300e320,5, 0x300e340,5, 0x300e360,5, 0x300e380,5, 0x300e3a0,5, 0x300e3c0,5, 0x300e3e0,5, 0x300e400,1, 0x300e40c,4, 0x300e420,3, 0x300e430,3, 0x300e440,3, 0x300e450,3, 0x300e460,3, 0x300e470,3, 0x300e480,3, 0x300e490,3, 0x300e4a0,3, 0x300e4b0,3, 0x300e4c0,3, 0x300e4d0,3, 0x300e4e0,3, 0x300e4f0,3, 0x300e500,3, 0x300e510,3, 0x300e520,3, 0x300e530,3, 0x300e540,3, 0x300e550,3, 0x300e560,3, 0x300e570,3, 0x300e580,3, 0x300e590,3, 0x300e5a0,3, 0x300e5b0,3, 0x300e5c0,3, 0x300e5d0,3, 0x300e5e0,3, 0x300e5f0,3, 0x300e600,3, 0x300e804,1, 0x300e80c,20, 0x300e860,2, 0x300e870,20, 0x300e900,23, 0x300e980,8, 0x300f000,27, 0x300f080,4, 0x300f0c0,25, 0x300f140,6, 0x300f160,4, 0x300f174,3, 0x300f200,8, 0x300f224,29, 0x300f400,48, 0x300f4c4,6, 0x300f4e0,7, 0x300f500,13, 0x300f540,2, 0x300f550,3, 0x300f560,9, 0x300f800,28, 0x300fc00,128, 0x300fe04,1, 0x300fe10,4, 0x3010000,24, 0x3010064,1, 0x3010070,24, 0x3010100,1, 0x3010108,3, 0x3010120,12, 0x3040000,3456, 0x3050000,2, 0x3050080,18, 0x3060004,1, 0x3060014,19, 0x3060104,1, 0x3060130,4, 0x3060180,1, 0x3060188,5, 0x3060200,4, 0x3060400,4, 0x3060420,6, 0x3060500,4, 0x3060580,20, 0x3060600,15, 0x3060640,4, 0x3060660,17, 0x30606c0,6, 0x30606e0,2, 0x30606ec,3, 0x3060700,8, 0x3060724,1, 0x3060800,20, 0x3060880,6, 0x30608a0,6, 0x30608c0,1, 0x3060900,5, 0x3060920,2, 0x3061000,27, 0x3061080,4, 0x30610c0,25, 0x3061140,6, 0x3061160,2, 0x306116c,3, 0x3061180,8, 0x30611a4,1, 0x3061200,20, 0x3061280,1, 0x3062000,1, 0x3062024,1, 0x306202c,8, 0x3062050,5, 0x3062080,3, 0x3062100,4, 0x3062124,1, 0x306212c,4, 0x3062144,1, 0x3062154,2, 0x3062200,2, 0x3062214,1, 0x306221c,1, 0x3062244,1, 0x3062254,5, 0x3062400,15, 0x3062440,4, 0x3062460,17, 0x30624c0,6, 0x30624e0,2, 0x30624ec,3, 0x3062500,8, 0x3062524,2, 0x3062600,12, 0x3062640,4, 0x3064004,1, 0x3064014,19, 0x3064104,1, 0x3064130,4, 0x3064180,1, 0x3064188,5, 0x3064200,4, 0x3064400,4, 0x3064420,6, 0x3064500,4, 0x3064580,17, 0x3064600,15, 0x3064640,4, 0x3064660,17, 0x30646c0,6, 0x30646e0,2, 0x30646ec,3, 0x3064700,8, 0x3064724,1, 0x3064800,20, 0x3064880,6, 0x30648a0,6, 0x30648c0,1, 0x3064900,5, 0x3064920,2, 0x3065000,27, 0x3065080,4, 0x30650c0,25, 0x3065140,6, 0x3065160,2, 0x306516c,3, 0x3065180,8, 0x30651a4,1, 0x3065200,20, 0x3065280,1, 0x3066000,1, 0x3066024,1, 0x306602c,8, 0x3066050,5, 0x3066080,3, 0x3066100,4, 0x3066124,1, 0x306612c,4, 0x3066184,1, 0x30661c4,6, 0x3066200,2, 0x3066214,1, 0x306621c,1, 0x3066400,15, 0x3066440,4, 0x3066460,17, 0x30664c0,6, 0x30664e0,2, 0x30664ec,3, 0x3066500,8, 0x3066524,2, 0x3066600,12, 0x3066640,4, 0x3068000,8, 0x3068040,8, 0x3068064,3, 0x3068080,8, 0x30680a4,3, 0x30680c0,8, 0x30680e4,3, 0x3068100,8, 0x3068124,3, 0x3068140,6, 0x3068800,15, 0x3068840,4, 0x3068860,17, 0x30688c0,6, 0x30688e0,2, 0x30688ec,3, 0x3068900,8, 0x3068924,1, 0x3068a00,12, 0x3068a40,3, 0x3068a50,5, 0x3070000,1, 0x3070008,2, 0x3070040,12, 0x3070080,28, 0x3070100,2, 0x3070180,21, 0x3070200,4, 0x3070400,1, 0x3070408,2, 0x3070440,12, 0x3070480,28, 0x3070500,2, 0x3070580,21, 0x3070600,4, 0x3070800,1, 0x3070808,2, 0x3070840,12, 0x3070880,28, 0x3070900,2, 0x3070980,21, 0x3070a00,4, 0x3070c00,1, 0x3070c08,2, 0x3070c40,12, 0x3070c80,28, 0x3070d00,2, 0x3070d80,21, 0x3070e00,4, 0x3071000,1, 0x3071008,2, 0x3071040,12, 0x3071080,28, 0x3071100,2, 0x3071180,21, 0x3071200,4, 0x3071400,1, 0x3071408,2, 0x3071440,12, 0x3071480,28, 0x3071500,2, 0x3071580,21, 0x3071600,4, 0x3071800,1, 0x3071808,2, 0x3071840,12, 0x3071880,28, 0x3071900,2, 0x3071980,21, 0x3071a00,4, 0x3071c00,1, 0x3071c08,2, 0x3071c40,12, 0x3071c80,28, 0x3071d00,2, 0x3071d80,21, 0x3071e00,4, 0x3072000,1, 0x3072008,2, 0x3072040,12, 0x3072080,28, 0x3072100,2, 0x3072180,21, 0x3072200,4, 0x3072400,1, 0x3072408,2, 0x3072440,12, 0x3072480,28, 0x3072500,2, 0x3072580,21, 0x3072600,4, 0x3072800,1, 0x3072808,2, 0x3072840,12, 0x3072880,28, 0x3072900,2, 0x3072980,21, 0x3072a00,4, 0x3072c00,1, 0x3072c08,2, 0x3072c40,12, 0x3072c80,28, 0x3072d00,2, 0x3072d80,21, 0x3072e00,4, 0x3073000,1, 0x3073008,2, 0x3073040,12, 0x3073080,28, 0x3073100,2, 0x3073180,21, 0x3073200,4, 0x3073400,1, 0x3073408,2, 0x3073440,12, 0x3073480,28, 0x3073500,2, 0x3073580,21, 0x3073600,4, 0x3073800,1, 0x3073808,2, 0x3073840,12, 0x3073880,28, 0x3073900,2, 0x3073980,21, 0x3073a00,4, 0x3073c00,1, 0x3073c08,2, 0x3073c40,12, 0x3073c80,28, 0x3073d00,2, 0x3073d80,21, 0x3073e00,4, 0x3074000,1, 0x3074008,2, 0x3074040,12, 0x3074080,28, 0x3074100,2, 0x3074180,21, 0x3074200,4, 0x3074400,1, 0x3074408,2, 0x3074440,12, 0x3074480,28, 0x3074500,2, 0x3074580,21, 0x3074600,4, 0x3074800,8, 0x3074824,1, 0x307482c,13, 0x3074864,1, 0x307486c,13, 0x30748a4,1, 0x30748ac,13, 0x30748e4,1, 0x30748ec,13, 0x3074924,1, 0x307492c,13, 0x3074964,1, 0x307496c,13, 0x30749a4,1, 0x30749ac,13, 0x30749e4,1, 0x30749ec,13, 0x3074a24,1, 0x3074a2c,13, 0x3074a64,1, 0x3074a6c,13, 0x3074aa4,1, 0x3074aac,13, 0x3074ae4,1, 0x3074aec,13, 0x3074b24,1, 0x3074b2c,13, 0x3074b64,1, 0x3074b6c,13, 0x3074ba4,1, 0x3074bac,13, 0x3074be4,1, 0x3074bec,13, 0x3074c24,1, 0x3074c2c,13, 0x3074c64,1, 0x3074c6c,5, 0x3080008,2, 0x3080018,16, 0x308005c,6, 0x3080078,18, 0x30800d0,8, 0x30800f4,2, 0x3080100,12, 0x3080134,63, 0x3080238,26, 0x30802b0,15, 0x30802f0,29, 0x30803b0,2, 0x30803c0,2, 0x30803d0,2, 0x30803f0,4, 0x3080404,4, 0x308041c,32, 0x3080508,1, 0x3080510,7, 0x3080530,3, 0x3080540,8, 0x3080580,37, 0x3080618,11, 0x3080648,4, 0x308065c,1, 0x3080700,8, 0x3080780,8, 0x30807c0,13, 0x3080800,5, 0x3080900,8, 0x3080928,6, 0x3080948,3, 0x308095c,4, 0x3080970,3, 0x3080980,8, 0x30809b0,6, 0x30809e0,6, 0x3080a10,8, 0x3080a50,1, 0x3080a58,21, 0x3080ab0,16, 0x3081000,5, 0x3081020,6, 0x3081040,17, 0x30810c4,2, 0x30810d0,7, 0x3081100,9, 0x3081130,1, 0x3081140,1, 0x3081150,1, 0x3082008,2, 0x3082018,16, 0x308205c,6, 0x3082078,18, 0x30820d0,8, 0x30820f4,2, 0x3082100,12, 0x3082134,63, 0x3082238,26, 0x30822b0,15, 0x30822f0,29, 0x30823b0,2, 0x30823c0,2, 0x30823d0,2, 0x30823f0,4, 0x3082404,4, 0x308241c,32, 0x3082508,1, 0x3082510,7, 0x3082530,3, 0x3082540,8, 0x3082580,37, 0x3082618,11, 0x3082648,4, 0x308265c,1, 0x3082700,8, 0x3082780,8, 0x30827c0,13, 0x3082800,5, 0x3082900,8, 0x3082928,6, 0x3082948,3, 0x308295c,4, 0x3082970,3, 0x3082980,8, 0x30829b0,6, 0x30829e0,6, 0x3082a10,8, 0x3082a50,1, 0x3082a58,21, 0x3082ab0,16, 0x3083000,5, 0x3083020,6, 0x3083040,17, 0x30830c4,2, 0x30830d0,7, 0x3083100,9, 0x3083130,1, 0x3083140,1, 0x3083150,1, 0x3084008,2, 0x3084018,16, 0x308405c,6, 0x3084078,18, 0x30840d0,8, 0x30840f4,2, 0x3084100,12, 0x3084134,63, 0x3084238,26, 0x30842b0,15, 0x30842f0,29, 0x30843b0,2, 0x30843c0,2, 0x30843d0,2, 0x30843f0,4, 0x3084404,4, 0x308441c,32, 0x3084508,1, 0x3084510,7, 0x3084530,3, 0x3084540,8, 0x3084580,37, 0x3084618,11, 0x3084648,4, 0x308465c,1, 0x3084700,8, 0x3084780,8, 0x30847c0,13, 0x3084800,5, 0x3084900,8, 0x3084928,6, 0x3084948,3, 0x308495c,4, 0x3084970,3, 0x3084980,8, 0x30849b0,6, 0x30849e0,6, 0x3084a10,8, 0x3084a50,1, 0x3084a58,21, 0x3084ab0,16, 0x3085000,5, 0x3085020,6, 0x3085040,17, 0x30850c4,2, 0x30850d0,7, 0x3085100,9, 0x3085130,1, 0x3085140,1, 0x3085150,1, 0x3086008,2, 0x3086018,16, 0x308605c,6, 0x3086078,18, 0x30860d0,8, 0x30860f4,2, 0x3086100,12, 0x3086134,63, 0x3086238,26, 0x30862b0,15, 0x30862f0,29, 0x30863b0,2, 0x30863c0,2, 0x30863d0,2, 0x30863f0,4, 0x3086404,4, 0x308641c,32, 0x3086508,1, 0x3086510,7, 0x3086530,3, 0x3086540,8, 0x3086580,37, 0x3086618,11, 0x3086648,4, 0x308665c,1, 0x3086700,8, 0x3086780,8, 0x30867c0,13, 0x3086800,5, 0x3086900,8, 0x3086928,6, 0x3086948,3, 0x308695c,4, 0x3086970,3, 0x3086980,8, 0x30869b0,6, 0x30869e0,6, 0x3086a10,8, 0x3086a50,1, 0x3086a58,21, 0x3086ab0,16, 0x3087000,5, 0x3087020,6, 0x3087040,17, 0x30870c4,2, 0x30870d0,7, 0x3087100,9, 0x3087130,1, 0x3087140,1, 0x3087150,1, 0x3088000,3, 0x3088010,3, 0x3088020,3, 0x3088030,3, 0x3088044,8, 0x3088080,11, 0x30880b0,3, 0x30880c0,6, 0x3088100,4, 0x3088140,9, 0x3088180,3, 0x3088190,3, 0x30881a0,3, 0x30881b0,3, 0x30881c0,13, 0x3088200,1, 0x3089000,3, 0x3089800,14, 0x308a000,18, 0x308a080,1, 0x308a0a0,6, 0x308b000,5, 0x308b018,23, 0x308b080,25, 0x308b100,64, 0x308b400,3, 0x308b410,3, 0x308b420,3, 0x308b430,3, 0x308b440,3, 0x308b450,3, 0x308b460,3, 0x308b470,3, 0x308b480,3, 0x308b490,3, 0x308b4a0,3, 0x308b4b0,3, 0x308b4c0,3, 0x308b4d0,3, 0x308b4e0,3, 0x308b4f0,3, 0x308b500,3, 0x308b510,3, 0x308b520,3, 0x308b530,3, 0x308b540,3, 0x308b550,3, 0x308b560,3, 0x308b570,3, 0x308b580,3, 0x308b590,3, 0x308b5a0,3, 0x308b5b0,3, 0x308b5c0,3, 0x308b5d0,3, 0x308b5e0,3, 0x308b5f0,3, 0x308b600,3, 0x308b610,3, 0x308b620,3, 0x308b630,3, 0x308b640,3, 0x308b650,3, 0x308b660,3, 0x308b670,3, 0x308b680,3, 0x308b690,3, 0x308b6a0,3, 0x308b6b0,3, 0x308b6c0,3, 0x308b6d0,3, 0x308b6e0,3, 0x308b6f0,3, 0x308b700,3, 0x308b710,3, 0x308b720,3, 0x308b730,3, 0x308b740,3, 0x308b750,3, 0x308b760,3, 0x308b770,3, 0x308b780,3, 0x308b790,3, 0x308b7a0,3, 0x308b7b0,3, 0x308b7c0,3, 0x308b7d0,3, 0x308b7e0,3, 0x308b7f0,3, 0x308b800,1, 0x308c000,100, 0x308c200,60, 0x308c300,28, 0x308c380,13, 0x308c404,4, 0x308c804,1, 0x308c840,28, 0x308c8b4,10, 0x308c8e0,7, 0x308c900,7, 0x308c920,7, 0x308c940,7, 0x308c960,7, 0x308c980,7, 0x308c9a0,7, 0x308c9c0,9, 0x308c9fc,6, 0x308ca20,2, 0x308ca44,10, 0x308cc00,1, 0x308cc08,5, 0x308cc20,2, 0x308cc40,8, 0x308cc64,5, 0x308cc80,6, 0x308ccc0,15, 0x308ce00,29, 0x308ce84,1, 0x308cea0,36, 0x308d000,2, 0x308d400,4, 0x308d420,8, 0x308d800,14, 0x30981fc,1, 0x3098204,3, 0x3098300,33, 0x3098390,3, 0x3098400,6, 0x309f004,1, 0x309f00c,1, 0x309f014,1, 0x309f01c,1, 0x309f024,1, 0x309f02c,1, 0x309f034,1, 0x309f03c,1, 0x309f044,1, 0x309f100,3, 0x309f110,3, 0x309f120,3, 0x309f130,3, 0x309f180,2, 0x309f190,2, 0x309f1a0,2, 0x309f1b0,2, 0x309f200,1, 0x30a0000,2, 0x30a0010,8, 0x30a0090,8, 0x30a0110,9, 0x30a1000,3, 0x30a1010,4, 0x30a2000,3, 0x30a2010,4, 0x30a3000,3, 0x30a3010,4, 0x30a4000,3, 0x30a4010,4, 0x30a5000,3, 0x30a5010,4, 0x30a6000,3, 0x30a6010,4, 0x30a7000,3, 0x30a7010,4, 0x30a8000,3, 0x30a8010,4, 0x30a9000,8, 0x30aa000,8, 0x30ab000,8, 0x30ac000,8, 0x30ad000,8, 0x30ae000,8, 0x30af000,8, 0x30b0000,8, 0x30b1000,3, 0x30b1010,4, 0x30b2000,3, 0x30b2010,4, 0x30b3000,3, 0x30b3010,4, 0x30b4000,3, 0x30b4010,4, 0x30b5000,8, 0x30b6000,8, 0x30b7000,8, 0x30b8000,8, 0x30f0014,11, 0x30f0100,2, 0x30f0120,14, 0x30f0160,9, 0x30f0200,20, 0x30f0284,1, 0x30f028c,1, 0x30f02c0,12, 0x30f0300,3, 0x30f0400,20, 0x30f0484,1, 0x30f048c,1, 0x30f04c0,12, 0x30f0500,3, 0x30f0600,20, 0x30f0684,1, 0x30f068c,1, 0x30f06c0,12, 0x30f0700,3, 0x30f0800,20, 0x30f0884,1, 0x30f088c,1, 0x30f08c0,12, 0x30f0900,3, 0x30f1004,1, 0x30f1080,34, 0x30f1110,10, 0x30f113c,3, 0x30f1204,1, 0x30f1280,36, 0x30f1314,2, 0x30f1400,20, 0x30f1480,9, 0x30f1500,36, 0x30f1600,6, 0x30f1620,1, 0x30f1804,1, 0x30f1880,34, 0x30f1910,10, 0x30f193c,3, 0x30f1a04,1, 0x30f1a80,36, 0x30f1b14,2, 0x30f1c00,20, 0x30f1c80,9, 0x30f1d00,36, 0x30f1e00,6, 0x30f1e20,1, 0x30f2004,1, 0x30f2080,34, 0x30f2110,10, 0x30f213c,3, 0x30f2204,1, 0x30f2280,36, 0x30f2314,2, 0x30f2400,20, 0x30f2480,9, 0x30f2500,36, 0x30f2600,6, 0x30f2620,1, 0x30f2804,1, 0x30f2880,34, 0x30f2910,10, 0x30f293c,3, 0x30f2a04,1, 0x30f2a80,36, 0x30f2b14,2, 0x30f2c00,20, 0x30f2c80,9, 0x30f2d00,36, 0x30f2e00,6, 0x30f2e20,1, 0x30f3000,12, 0x30f3040,10, 0x30f3800,14, 0x30f3858,6, 0x30f3898,6, 0x30f38d8,6, 0x30f3918,6, 0x30f3958,6, 0x30f3998,6, 0x30f39d8,6, 0x30f3a18,6, 0x30f3a58,6, 0x30f3a80,8, 0x30f3c00,76, 0x30f4000,10, 0x30f4040,10, 0x3100000,158720, 0x3200000,1, 0x3202000,1020, 0x3204000,1020, 0x3206000,1020, 0x3208000,65, 0x3208200,5, 0x3208220,5, 0x3208240,6, 0x3208260,6, 0x3208280,4, 0x32082a0,7, 0x32082c0,8, 0x3208300,28, 0x3208384,1, 0x320838c,3, 0x3208400,65, 0x3208600,5, 0x3208620,5, 0x3208640,6, 0x3208660,6, 0x3208680,4, 0x32086a0,7, 0x32086c0,8, 0x3208700,28, 0x3208784,1, 0x320878c,3, 0x3208800,65, 0x3208a00,5, 0x3208a20,5, 0x3208a40,6, 0x3208a60,6, 0x3208a80,4, 0x3208aa0,7, 0x3208ac0,8, 0x3208b00,28, 0x3208b84,1, 0x3208b8c,3, 0x3208c00,20, 0x3209000,3, 0x3209040,9, 0x3209080,10, 0x32090c0,2, 0x32090cc,2, 0x32090e0,3, 0x32090f0,1, 0x3209100,16, 0x3210000,8, 0x3210800,12, 0x3210844,6, 0x3210880,8, 0x32108a4,1, 0x32108c0,7, 0x32108e0,7, 0x3210900,7, 0x3210920,7, 0x3210940,3, 0x3210980,12, 0x3210a00,27, 0x3210a80,4, 0x3210ac0,25, 0x3210b40,6, 0x3210b60,4, 0x3210b74,11, 0x3210ba4,6, 0x3210c00,1, 0x3212000,75, 0x3212400,94, 0x3212580,7, 0x3212600,41, 0x3212700,2, 0x3212720,19, 0x3212800,1, 0x3212900,36, 0x3213000,3, 0x3213080,6, 0x32130a0,6, 0x32130c0,1, 0x3213100,4, 0x3213140,9, 0x3213180,2, 0x3214000,3, 0x3214010,5, 0x3214200,7, 0x3214220,6, 0x3214240,7, 0x3214260,6, 0x3214280,2, 0x321428c,2, 0x32142a0,2, 0x32142ac,2, 0x32142c0,7, 0x32142e0,7, 0x3214300,2, 0x321430c,2, 0x3214320,6, 0x3214400,3, 0x3214440,12, 0x3214600,7, 0x3214620,14, 0x3214680,9, 0x32146a8,12, 0x3214700,4, 0x3214720,2, 0x321472c,3, 0x3214800,3, 0x3218000,17, 0x3218080,3, 0x3218090,12, 0x3218100,5, 0x3218120,9, 0x3218200,1, 0x3218208,3, 0x3218400,15, 0x3218800,8, 0x3218824,1, 0x3218840,11, 0x3218880,9, 0x3218900,4, 0x3218920,16, 0x3218980,4, 0x32189a0,16, 0x3218a00,4, 0x3218a20,16, 0x3218a80,4, 0x3218aa0,16, 0x3218c00,3, 0x3218c10,3, 0x3218c20,3, 0x3218c30,3, 0x3218c40,3, 0x3218c50,1, 0x3218c80,3, 0x3218c90,3, 0x3218cc0,11, 0x3218d00,12, 0x3219000,128, 0x3219204,6, 0x3219400,27, 0x3219480,9, 0x32194c0,6, 0x32194e0,6, 0x3219804,1, 0x321980c,5, 0x3219840,24, 0x3219904,1, 0x321990c,5, 0x3219940,21, 0x3219a00,11, 0x3219c00,8, 0x3219c24,1, 0x3219c30,10, 0x3219c60,3, 0x321c000,20, 0x321c080,5, 0x321c0a0,5, 0x321c0c0,9, 0x321c100,9, 0x321c140,1, 0x321c400,13, 0x321c440,13, 0x321c480,3, 0x321c490,3, 0x321c4a0,18, 0x321c4ec,2, 0x321c500,1, 0x321c580,28, 0x321c600,7, 0x321c620,3, 0x321c800,15, 0x321c840,9, 0x321c880,6, 0x321c8a0,6, 0x321c900,4, 0x321c920,12, 0x321c980,3, 0x321c990,3, 0x321c9a0,4, 0x321c9c0,4, 0x321c9e0,3, 0x321c9f0,3, 0x321ca00,5, 0x321ca20,3, 0x321d000,3, 0x321d020,6, 0x321d040,2, 0x321d060,6, 0x321d080,33, 0x321d200,16, 0x321d244,1, 0x321d250,4, 0x321d280,1, 0x321d400,6, 0x321d440,9, 0x321d480,16, 0x321d500,4, 0x321d514,1, 0x321d800,5, 0x321d820,2, 0x321d840,5, 0x321d880,6, 0x321d8a0,1, 0x321d8c0,5, 0x321d8e0,16, 0x321da00,3, 0x321da10,3, 0x321da20,3, 0x321da30,3, 0x321da40,3, 0x321da50,1, 0x321da80,3, 0x321daa0,5, 0x321dac0,14, 0x321db00,1, 0x321dc00,27, 0x321dc80,9, 0x321dcc0,6, 0x321dce0,6, 0x321dd00,5, 0x321dd20,3, 0x321dd30,2, 0x321dd40,4, 0x321e000,14, 0x321e800,11, 0x321e830,7, 0x3220004,1, 0x3220014,19, 0x3220104,1, 0x3220130,4, 0x3220180,1, 0x3220188,5, 0x3220200,4, 0x3220400,4, 0x3220420,6, 0x3220480,4, 0x32204c0,10, 0x3220600,15, 0x3220640,4, 0x3220660,17, 0x32206c0,6, 0x32206e0,2, 0x32206ec,3, 0x3220700,8, 0x3220724,1, 0x3220800,20, 0x3220880,6, 0x32208a0,6, 0x32208c0,1, 0x3220900,5, 0x3220920,2, 0x3221004,1, 0x3221024,9, 0x3221080,2, 0x3221200,27, 0x3221280,4, 0x32212c0,25, 0x3221340,6, 0x3221360,2, 0x322136c,3, 0x3221380,8, 0x32213a4,2, 0x3221400,28, 0x3221480,10, 0x32214c0,2, 0x32214d4,1, 0x32214dc,1, 0x3221500,5, 0x3221524,1, 0x322152c,2, 0x3221540,3, 0x3221550,2, 0x3222004,1, 0x3222014,19, 0x3222104,1, 0x3222130,4, 0x3222180,1, 0x3222188,5, 0x3222200,4, 0x3222400,4, 0x3222420,6, 0x3222480,4, 0x32224c0,10, 0x3222600,15, 0x3222640,4, 0x3222660,17, 0x32226c0,6, 0x32226e0,2, 0x32226ec,3, 0x3222700,8, 0x3222724,1, 0x3222800,20, 0x3222880,6, 0x32228a0,6, 0x32228c0,1, 0x3222900,5, 0x3222920,2, 0x3223004,1, 0x3223024,9, 0x3223080,2, 0x3223200,27, 0x3223280,4, 0x32232c0,25, 0x3223340,6, 0x3223360,2, 0x322336c,3, 0x3223380,8, 0x32233a4,2, 0x3223400,28, 0x3223480,10, 0x32234c0,2, 0x32234d4,1, 0x32234dc,1, 0x3223500,5, 0x3223524,1, 0x322352c,2, 0x3223540,3, 0x3223550,2, 0x3224000,14, 0x3224800,15, 0x3224840,4, 0x3224860,17, 0x32248c0,6, 0x32248e0,2, 0x32248ec,3, 0x3224900,8, 0x3224924,1, 0x3224a00,12, 0x3224a40,3, 0x3224a50,5, 0x3224b00,2, 0x3224b0c,3, 0x3224b20,1, 0x3224b40,8, 0x3224b80,20, 0x3224c00,1, 0x3228004,1, 0x3228014,19, 0x3228104,1, 0x3228130,4, 0x3228180,1, 0x3228188,5, 0x3228200,4, 0x3228400,4, 0x3228420,6, 0x3228480,4, 0x32284c0,10, 0x3228600,15, 0x3228640,4, 0x3228660,17, 0x32286c0,6, 0x32286e0,2, 0x32286ec,3, 0x3228700,8, 0x3228724,1, 0x3228800,20, 0x3228880,6, 0x32288a0,6, 0x32288c0,1, 0x3228900,5, 0x3228920,2, 0x3229000,1, 0x3229024,1, 0x322902c,7, 0x3229084,1, 0x3229094,6, 0x32290c0,2, 0x3229200,27, 0x3229280,4, 0x32292c0,25, 0x3229340,6, 0x3229360,2, 0x322936c,3, 0x3229380,8, 0x32293a4,2, 0x3229400,36, 0x3229500,10, 0x3229540,2, 0x3229554,1, 0x322955c,1, 0x3229580,3, 0x3229590,2, 0x322a004,1, 0x322a014,19, 0x322a104,1, 0x322a130,4, 0x322a180,1, 0x322a188,5, 0x322a200,4, 0x322a400,4, 0x322a420,6, 0x322a480,4, 0x322a4c0,10, 0x322a600,15, 0x322a640,4, 0x322a660,17, 0x322a6c0,6, 0x322a6e0,2, 0x322a6ec,3, 0x322a700,8, 0x322a724,1, 0x322a800,20, 0x322a880,6, 0x322a8a0,6, 0x322a8c0,1, 0x322a900,5, 0x322a920,2, 0x322b000,1, 0x322b024,1, 0x322b02c,7, 0x322b084,1, 0x322b094,6, 0x322b0c0,2, 0x322b200,27, 0x322b280,4, 0x322b2c0,25, 0x322b340,6, 0x322b360,2, 0x322b36c,3, 0x322b380,8, 0x322b3a4,2, 0x322b400,36, 0x322b500,10, 0x322b540,2, 0x322b554,1, 0x322b55c,1, 0x322b580,3, 0x322b590,2, 0x322c000,14, 0x322c800,15, 0x322c840,4, 0x322c860,17, 0x322c8c0,6, 0x322c8e0,2, 0x322c8ec,3, 0x322c900,8, 0x322c924,1, 0x322ca00,12, 0x322ca40,3, 0x322ca50,5, 0x3230000,14, 0x3230800,4, 0x3230880,31, 0x3230900,1, 0x3230908,2, 0x3230920,5, 0x3230940,8, 0x3230a00,27, 0x3230a80,4, 0x3230ac0,25, 0x3230b40,6, 0x3230b60,4, 0x3230b74,11, 0x3230ba4,1, 0x3230c00,3, 0x3230c40,12, 0x3230c80,3, 0x3234000,14, 0x3234800,19, 0x3234850,13, 0x3234888,9, 0x32348b0,2, 0x3234a00,27, 0x3234a80,4, 0x3234ac0,25, 0x3234b40,6, 0x3234b60,4, 0x3234b74,11, 0x3234ba4,1, 0x3234c00,3, 0x3234c40,12, 0x3238000,2, 0x3238080,1, 0x3238088,15, 0x3240000,1, 0x3242000,1020, 0x3244000,1020, 0x3246000,1020, 0x3248000,65, 0x3248200,5, 0x3248220,5, 0x3248240,6, 0x3248260,6, 0x3248280,4, 0x32482a0,7, 0x32482c0,8, 0x3248300,28, 0x3248384,1, 0x324838c,3, 0x3248400,65, 0x3248600,5, 0x3248620,5, 0x3248640,6, 0x3248660,6, 0x3248680,4, 0x32486a0,7, 0x32486c0,8, 0x3248700,28, 0x3248784,1, 0x324878c,3, 0x3248800,65, 0x3248a00,5, 0x3248a20,5, 0x3248a40,6, 0x3248a60,6, 0x3248a80,4, 0x3248aa0,7, 0x3248ac0,8, 0x3248b00,28, 0x3248b84,1, 0x3248b8c,3, 0x3248c00,20, 0x3249000,3, 0x3249040,9, 0x3249080,10, 0x32490c0,2, 0x32490cc,2, 0x32490e0,3, 0x32490f0,1, 0x3249100,16, 0x3250000,8, 0x3250800,12, 0x3250844,6, 0x3250880,8, 0x32508a4,1, 0x32508c0,7, 0x32508e0,7, 0x3250900,7, 0x3250920,7, 0x3250940,3, 0x3250980,12, 0x3250a00,27, 0x3250a80,4, 0x3250ac0,25, 0x3250b40,6, 0x3250b60,4, 0x3250b74,11, 0x3250ba4,6, 0x3250c00,1, 0x3252000,75, 0x3252400,94, 0x3252580,7, 0x3252600,41, 0x3252700,2, 0x3252720,19, 0x3252800,1, 0x3252900,36, 0x3253000,3, 0x3253080,6, 0x32530a0,6, 0x32530c0,1, 0x3253100,4, 0x3253140,9, 0x3253180,2, 0x3254000,3, 0x3254010,5, 0x3254200,7, 0x3254220,6, 0x3254240,7, 0x3254260,6, 0x3254280,2, 0x325428c,2, 0x32542a0,2, 0x32542ac,2, 0x32542c0,7, 0x32542e0,7, 0x3254300,2, 0x325430c,2, 0x3254320,6, 0x3254400,3, 0x3254440,12, 0x3254600,7, 0x3254620,14, 0x3254680,9, 0x32546a8,12, 0x3254700,4, 0x3254720,2, 0x325472c,3, 0x3254800,3, 0x3258000,17, 0x3258080,3, 0x3258090,12, 0x3258100,5, 0x3258120,9, 0x3258200,1, 0x3258208,3, 0x3258400,15, 0x3258800,8, 0x3258824,1, 0x3258840,11, 0x3258880,9, 0x3258900,4, 0x3258920,16, 0x3258980,4, 0x32589a0,16, 0x3258a00,4, 0x3258a20,16, 0x3258a80,4, 0x3258aa0,16, 0x3258c00,3, 0x3258c10,3, 0x3258c20,3, 0x3258c30,3, 0x3258c40,3, 0x3258c50,1, 0x3258c80,3, 0x3258c90,3, 0x3258cc0,11, 0x3258d00,12, 0x3259000,128, 0x3259204,6, 0x3259400,27, 0x3259480,9, 0x32594c0,6, 0x32594e0,6, 0x3259804,1, 0x325980c,5, 0x3259840,24, 0x3259904,1, 0x325990c,5, 0x3259940,21, 0x3259a00,11, 0x3259c00,8, 0x3259c24,1, 0x3259c30,10, 0x3259c60,3, 0x325c000,20, 0x325c080,5, 0x325c0a0,5, 0x325c0c0,9, 0x325c100,9, 0x325c140,1, 0x325c400,13, 0x325c440,13, 0x325c480,3, 0x325c490,3, 0x325c4a0,18, 0x325c4ec,2, 0x325c500,1, 0x325c580,28, 0x325c600,7, 0x325c620,3, 0x325c800,15, 0x325c840,9, 0x325c880,6, 0x325c8a0,6, 0x325c900,4, 0x325c920,12, 0x325c980,3, 0x325c990,3, 0x325c9a0,4, 0x325c9c0,4, 0x325c9e0,3, 0x325c9f0,3, 0x325ca00,5, 0x325ca20,3, 0x325d000,3, 0x325d020,6, 0x325d040,2, 0x325d060,6, 0x325d080,33, 0x325d200,16, 0x325d244,1, 0x325d250,4, 0x325d280,1, 0x325d400,6, 0x325d440,9, 0x325d480,16, 0x325d500,4, 0x325d514,1, 0x325d800,5, 0x325d820,2, 0x325d840,5, 0x325d880,6, 0x325d8a0,1, 0x325d8c0,5, 0x325d8e0,16, 0x325da00,3, 0x325da10,3, 0x325da20,3, 0x325da30,3, 0x325da40,3, 0x325da50,1, 0x325da80,3, 0x325daa0,5, 0x325dac0,14, 0x325db00,1, 0x325dc00,27, 0x325dc80,9, 0x325dcc0,6, 0x325dce0,6, 0x325dd00,5, 0x325dd20,3, 0x325dd30,2, 0x325dd40,4, 0x325e000,14, 0x325e800,11, 0x325e830,7, 0x3260004,1, 0x3260014,19, 0x3260104,1, 0x3260130,4, 0x3260180,1, 0x3260188,5, 0x3260200,4, 0x3260400,4, 0x3260420,6, 0x3260480,4, 0x32604c0,10, 0x3260600,15, 0x3260640,4, 0x3260660,17, 0x32606c0,6, 0x32606e0,2, 0x32606ec,3, 0x3260700,8, 0x3260724,1, 0x3260800,20, 0x3260880,6, 0x32608a0,6, 0x32608c0,1, 0x3260900,5, 0x3260920,2, 0x3261004,1, 0x3261024,9, 0x3261080,2, 0x3261200,27, 0x3261280,4, 0x32612c0,25, 0x3261340,6, 0x3261360,2, 0x326136c,3, 0x3261380,8, 0x32613a4,2, 0x3261400,28, 0x3261480,10, 0x32614c0,2, 0x32614d4,1, 0x32614dc,1, 0x3261500,5, 0x3261524,1, 0x326152c,2, 0x3261540,3, 0x3261550,2, 0x3262004,1, 0x3262014,19, 0x3262104,1, 0x3262130,4, 0x3262180,1, 0x3262188,5, 0x3262200,4, 0x3262400,4, 0x3262420,6, 0x3262480,4, 0x32624c0,10, 0x3262600,15, 0x3262640,4, 0x3262660,17, 0x32626c0,6, 0x32626e0,2, 0x32626ec,3, 0x3262700,8, 0x3262724,1, 0x3262800,20, 0x3262880,6, 0x32628a0,6, 0x32628c0,1, 0x3262900,5, 0x3262920,2, 0x3263004,1, 0x3263024,9, 0x3263080,2, 0x3263200,27, 0x3263280,4, 0x32632c0,25, 0x3263340,6, 0x3263360,2, 0x326336c,3, 0x3263380,8, 0x32633a4,2, 0x3263400,28, 0x3263480,10, 0x32634c0,2, 0x32634d4,1, 0x32634dc,1, 0x3263500,5, 0x3263524,1, 0x326352c,2, 0x3263540,3, 0x3263550,2, 0x3264000,14, 0x3264800,15, 0x3264840,4, 0x3264860,17, 0x32648c0,6, 0x32648e0,2, 0x32648ec,3, 0x3264900,8, 0x3264924,1, 0x3264a00,12, 0x3264a40,3, 0x3264a50,5, 0x3264b00,2, 0x3264b0c,3, 0x3264b20,1, 0x3264b40,8, 0x3264b80,20, 0x3264c00,1, 0x3268004,1, 0x3268014,19, 0x3268104,1, 0x3268130,4, 0x3268180,1, 0x3268188,5, 0x3268200,4, 0x3268400,4, 0x3268420,6, 0x3268480,4, 0x32684c0,10, 0x3268600,15, 0x3268640,4, 0x3268660,17, 0x32686c0,6, 0x32686e0,2, 0x32686ec,3, 0x3268700,8, 0x3268724,1, 0x3268800,20, 0x3268880,6, 0x32688a0,6, 0x32688c0,1, 0x3268900,5, 0x3268920,2, 0x3269000,1, 0x3269024,1, 0x326902c,7, 0x3269084,1, 0x3269094,6, 0x32690c0,2, 0x3269200,27, 0x3269280,4, 0x32692c0,25, 0x3269340,6, 0x3269360,2, 0x326936c,3, 0x3269380,8, 0x32693a4,2, 0x3269400,36, 0x3269500,10, 0x3269540,2, 0x3269554,1, 0x326955c,1, 0x3269580,3, 0x3269590,2, 0x326a004,1, 0x326a014,19, 0x326a104,1, 0x326a130,4, 0x326a180,1, 0x326a188,5, 0x326a200,4, 0x326a400,4, 0x326a420,6, 0x326a480,4, 0x326a4c0,10, 0x326a600,15, 0x326a640,4, 0x326a660,17, 0x326a6c0,6, 0x326a6e0,2, 0x326a6ec,3, 0x326a700,8, 0x326a724,1, 0x326a800,20, 0x326a880,6, 0x326a8a0,6, 0x326a8c0,1, 0x326a900,5, 0x326a920,2, 0x326b000,1, 0x326b024,1, 0x326b02c,7, 0x326b084,1, 0x326b094,6, 0x326b0c0,2, 0x326b200,27, 0x326b280,4, 0x326b2c0,25, 0x326b340,6, 0x326b360,2, 0x326b36c,3, 0x326b380,8, 0x326b3a4,2, 0x326b400,36, 0x326b500,10, 0x326b540,2, 0x326b554,1, 0x326b55c,1, 0x326b580,3, 0x326b590,2, 0x326c000,14, 0x326c800,15, 0x326c840,4, 0x326c860,17, 0x326c8c0,6, 0x326c8e0,2, 0x326c8ec,3, 0x326c900,8, 0x326c924,1, 0x326ca00,12, 0x326ca40,3, 0x326ca50,5, 0x3270000,14, 0x3270800,4, 0x3270880,31, 0x3270900,1, 0x3270908,2, 0x3270920,5, 0x3270940,8, 0x3270a00,27, 0x3270a80,4, 0x3270ac0,25, 0x3270b40,6, 0x3270b60,4, 0x3270b74,11, 0x3270ba4,1, 0x3270c00,3, 0x3270c40,12, 0x3270c80,3, 0x3274000,14, 0x3274800,19, 0x3274850,13, 0x3274888,9, 0x32748b0,2, 0x3274a00,27, 0x3274a80,4, 0x3274ac0,25, 0x3274b40,6, 0x3274b60,4, 0x3274b74,11, 0x3274ba4,1, 0x3274c00,3, 0x3274c40,12, 0x3278000,2, 0x3278080,1, 0x3278088,15, 0x3280000,1, 0x3282000,1020, 0x3284000,1020, 0x3286000,1020, 0x3288000,65, 0x3288200,5, 0x3288220,5, 0x3288240,6, 0x3288260,6, 0x3288280,4, 0x32882a0,7, 0x32882c0,8, 0x3288300,28, 0x3288384,1, 0x328838c,3, 0x3288400,65, 0x3288600,5, 0x3288620,5, 0x3288640,6, 0x3288660,6, 0x3288680,4, 0x32886a0,7, 0x32886c0,8, 0x3288700,28, 0x3288784,1, 0x328878c,3, 0x3288800,65, 0x3288a00,5, 0x3288a20,5, 0x3288a40,6, 0x3288a60,6, 0x3288a80,4, 0x3288aa0,7, 0x3288ac0,8, 0x3288b00,28, 0x3288b84,1, 0x3288b8c,3, 0x3288c00,20, 0x3289000,3, 0x3289040,9, 0x3289080,10, 0x32890c0,2, 0x32890cc,2, 0x32890e0,3, 0x32890f0,1, 0x3289100,16, 0x3290000,8, 0x3290800,12, 0x3290844,6, 0x3290880,8, 0x32908a4,1, 0x32908c0,7, 0x32908e0,7, 0x3290900,7, 0x3290920,7, 0x3290940,3, 0x3290980,12, 0x3290a00,27, 0x3290a80,4, 0x3290ac0,25, 0x3290b40,6, 0x3290b60,4, 0x3290b74,11, 0x3290ba4,6, 0x3290c00,1, 0x3292000,75, 0x3292400,94, 0x3292580,7, 0x3292600,41, 0x3292700,2, 0x3292720,19, 0x3292800,1, 0x3292900,36, 0x3293000,3, 0x3293080,6, 0x32930a0,6, 0x32930c0,1, 0x3293100,4, 0x3293140,9, 0x3293180,2, 0x3294000,3, 0x3294010,5, 0x3294200,7, 0x3294220,6, 0x3294240,7, 0x3294260,6, 0x3294280,2, 0x329428c,2, 0x32942a0,2, 0x32942ac,2, 0x32942c0,7, 0x32942e0,7, 0x3294300,2, 0x329430c,2, 0x3294320,6, 0x3294400,3, 0x3294440,12, 0x3294600,7, 0x3294620,14, 0x3294680,9, 0x32946a8,12, 0x3294700,4, 0x3294720,2, 0x329472c,3, 0x3294800,3, 0x3298000,17, 0x3298080,3, 0x3298090,12, 0x3298100,5, 0x3298120,9, 0x3298200,1, 0x3298208,3, 0x3298400,15, 0x3298800,8, 0x3298824,1, 0x3298840,11, 0x3298880,9, 0x3298900,4, 0x3298920,16, 0x3298980,4, 0x32989a0,16, 0x3298a00,4, 0x3298a20,16, 0x3298a80,4, 0x3298aa0,16, 0x3298c00,3, 0x3298c10,3, 0x3298c20,3, 0x3298c30,3, 0x3298c40,3, 0x3298c50,1, 0x3298c80,3, 0x3298c90,3, 0x3298cc0,11, 0x3298d00,12, 0x3299000,128, 0x3299204,6, 0x3299400,27, 0x3299480,9, 0x32994c0,6, 0x32994e0,6, 0x3299804,1, 0x329980c,5, 0x3299840,24, 0x3299904,1, 0x329990c,5, 0x3299940,21, 0x3299a00,11, 0x3299c00,8, 0x3299c24,1, 0x3299c30,10, 0x3299c60,3, 0x329c000,20, 0x329c080,5, 0x329c0a0,5, 0x329c0c0,9, 0x329c100,9, 0x329c140,1, 0x329c400,13, 0x329c440,13, 0x329c480,3, 0x329c490,3, 0x329c4a0,18, 0x329c4ec,2, 0x329c500,1, 0x329c580,28, 0x329c600,7, 0x329c620,3, 0x329c800,15, 0x329c840,9, 0x329c880,6, 0x329c8a0,6, 0x329c900,4, 0x329c920,12, 0x329c980,3, 0x329c990,3, 0x329c9a0,4, 0x329c9c0,4, 0x329c9e0,3, 0x329c9f0,3, 0x329ca00,5, 0x329ca20,3, 0x329d000,3, 0x329d020,6, 0x329d040,2, 0x329d060,6, 0x329d080,33, 0x329d200,16, 0x329d244,1, 0x329d250,4, 0x329d280,1, 0x329d400,6, 0x329d440,9, 0x329d480,16, 0x329d500,4, 0x329d514,1, 0x329d800,5, 0x329d820,2, 0x329d840,5, 0x329d880,6, 0x329d8a0,1, 0x329d8c0,5, 0x329d8e0,16, 0x329da00,3, 0x329da10,3, 0x329da20,3, 0x329da30,3, 0x329da40,3, 0x329da50,1, 0x329da80,3, 0x329daa0,5, 0x329dac0,14, 0x329db00,1, 0x329dc00,27, 0x329dc80,9, 0x329dcc0,6, 0x329dce0,6, 0x329dd00,5, 0x329dd20,3, 0x329dd30,2, 0x329dd40,4, 0x329e000,14, 0x329e800,11, 0x329e830,7, 0x32a0004,1, 0x32a0014,19, 0x32a0104,1, 0x32a0130,4, 0x32a0180,1, 0x32a0188,5, 0x32a0200,4, 0x32a0400,4, 0x32a0420,6, 0x32a0480,4, 0x32a04c0,10, 0x32a0600,15, 0x32a0640,4, 0x32a0660,17, 0x32a06c0,6, 0x32a06e0,2, 0x32a06ec,3, 0x32a0700,8, 0x32a0724,1, 0x32a0800,20, 0x32a0880,6, 0x32a08a0,6, 0x32a08c0,1, 0x32a0900,5, 0x32a0920,2, 0x32a1004,1, 0x32a1024,9, 0x32a1080,2, 0x32a1200,27, 0x32a1280,4, 0x32a12c0,25, 0x32a1340,6, 0x32a1360,2, 0x32a136c,3, 0x32a1380,8, 0x32a13a4,2, 0x32a1400,28, 0x32a1480,10, 0x32a14c0,2, 0x32a14d4,1, 0x32a14dc,1, 0x32a1500,5, 0x32a1524,1, 0x32a152c,2, 0x32a1540,3, 0x32a1550,2, 0x32a2004,1, 0x32a2014,19, 0x32a2104,1, 0x32a2130,4, 0x32a2180,1, 0x32a2188,5, 0x32a2200,4, 0x32a2400,4, 0x32a2420,6, 0x32a2480,4, 0x32a24c0,10, 0x32a2600,15, 0x32a2640,4, 0x32a2660,17, 0x32a26c0,6, 0x32a26e0,2, 0x32a26ec,3, 0x32a2700,8, 0x32a2724,1, 0x32a2800,20, 0x32a2880,6, 0x32a28a0,6, 0x32a28c0,1, 0x32a2900,5, 0x32a2920,2, 0x32a3004,1, 0x32a3024,9, 0x32a3080,2, 0x32a3200,27, 0x32a3280,4, 0x32a32c0,25, 0x32a3340,6, 0x32a3360,2, 0x32a336c,3, 0x32a3380,8, 0x32a33a4,2, 0x32a3400,28, 0x32a3480,10, 0x32a34c0,2, 0x32a34d4,1, 0x32a34dc,1, 0x32a3500,5, 0x32a3524,1, 0x32a352c,2, 0x32a3540,3, 0x32a3550,2, 0x32a4000,14, 0x32a4800,15, 0x32a4840,4, 0x32a4860,17, 0x32a48c0,6, 0x32a48e0,2, 0x32a48ec,3, 0x32a4900,8, 0x32a4924,1, 0x32a4a00,12, 0x32a4a40,3, 0x32a4a50,5, 0x32a4b00,2, 0x32a4b0c,3, 0x32a4b20,1, 0x32a4b40,8, 0x32a4b80,20, 0x32a4c00,1, 0x32a8004,1, 0x32a8014,19, 0x32a8104,1, 0x32a8130,4, 0x32a8180,1, 0x32a8188,5, 0x32a8200,4, 0x32a8400,4, 0x32a8420,6, 0x32a8480,4, 0x32a84c0,10, 0x32a8600,15, 0x32a8640,4, 0x32a8660,17, 0x32a86c0,6, 0x32a86e0,2, 0x32a86ec,3, 0x32a8700,8, 0x32a8724,1, 0x32a8800,20, 0x32a8880,6, 0x32a88a0,6, 0x32a88c0,1, 0x32a8900,5, 0x32a8920,2, 0x32a9000,1, 0x32a9024,1, 0x32a902c,7, 0x32a9084,1, 0x32a9094,6, 0x32a90c0,2, 0x32a9200,27, 0x32a9280,4, 0x32a92c0,25, 0x32a9340,6, 0x32a9360,2, 0x32a936c,3, 0x32a9380,8, 0x32a93a4,2, 0x32a9400,36, 0x32a9500,10, 0x32a9540,2, 0x32a9554,1, 0x32a955c,1, 0x32a9580,3, 0x32a9590,2, 0x32aa004,1, 0x32aa014,19, 0x32aa104,1, 0x32aa130,4, 0x32aa180,1, 0x32aa188,5, 0x32aa200,4, 0x32aa400,4, 0x32aa420,6, 0x32aa480,4, 0x32aa4c0,10, 0x32aa600,15, 0x32aa640,4, 0x32aa660,17, 0x32aa6c0,6, 0x32aa6e0,2, 0x32aa6ec,3, 0x32aa700,8, 0x32aa724,1, 0x32aa800,20, 0x32aa880,6, 0x32aa8a0,6, 0x32aa8c0,1, 0x32aa900,5, 0x32aa920,2, 0x32ab000,1, 0x32ab024,1, 0x32ab02c,7, 0x32ab084,1, 0x32ab094,6, 0x32ab0c0,2, 0x32ab200,27, 0x32ab280,4, 0x32ab2c0,25, 0x32ab340,6, 0x32ab360,2, 0x32ab36c,3, 0x32ab380,8, 0x32ab3a4,2, 0x32ab400,36, 0x32ab500,10, 0x32ab540,2, 0x32ab554,1, 0x32ab55c,1, 0x32ab580,3, 0x32ab590,2, 0x32ac000,14, 0x32ac800,15, 0x32ac840,4, 0x32ac860,17, 0x32ac8c0,6, 0x32ac8e0,2, 0x32ac8ec,3, 0x32ac900,8, 0x32ac924,1, 0x32aca00,12, 0x32aca40,3, 0x32aca50,5, 0x32b0000,14, 0x32b0800,4, 0x32b0880,31, 0x32b0900,1, 0x32b0908,2, 0x32b0920,5, 0x32b0940,8, 0x32b0a00,27, 0x32b0a80,4, 0x32b0ac0,25, 0x32b0b40,6, 0x32b0b60,4, 0x32b0b74,11, 0x32b0ba4,1, 0x32b0c00,3, 0x32b0c40,12, 0x32b0c80,3, 0x32b4000,14, 0x32b4800,19, 0x32b4850,13, 0x32b4888,9, 0x32b48b0,2, 0x32b4a00,27, 0x32b4a80,4, 0x32b4ac0,25, 0x32b4b40,6, 0x32b4b60,4, 0x32b4b74,11, 0x32b4ba4,1, 0x32b4c00,3, 0x32b4c40,12, 0x32b8000,2, 0x32b8080,1, 0x32b8088,15, 0x32c0000,1, 0x32c2000,1020, 0x32c4000,1020, 0x32c6000,1020, 0x32c8000,65, 0x32c8200,5, 0x32c8220,5, 0x32c8240,6, 0x32c8260,6, 0x32c8280,4, 0x32c82a0,7, 0x32c82c0,8, 0x32c8300,28, 0x32c8384,1, 0x32c838c,3, 0x32c8400,65, 0x32c8600,5, 0x32c8620,5, 0x32c8640,6, 0x32c8660,6, 0x32c8680,4, 0x32c86a0,7, 0x32c86c0,8, 0x32c8700,28, 0x32c8784,1, 0x32c878c,3, 0x32c8800,65, 0x32c8a00,5, 0x32c8a20,5, 0x32c8a40,6, 0x32c8a60,6, 0x32c8a80,4, 0x32c8aa0,7, 0x32c8ac0,8, 0x32c8b00,28, 0x32c8b84,1, 0x32c8b8c,3, 0x32c8c00,20, 0x32c9000,3, 0x32c9040,9, 0x32c9080,10, 0x32c90c0,2, 0x32c90cc,2, 0x32c90e0,3, 0x32c90f0,1, 0x32c9100,16, 0x32d0000,8, 0x32d0800,12, 0x32d0844,6, 0x32d0880,8, 0x32d08a4,1, 0x32d08c0,7, 0x32d08e0,7, 0x32d0900,7, 0x32d0920,7, 0x32d0940,3, 0x32d0980,12, 0x32d0a00,27, 0x32d0a80,4, 0x32d0ac0,25, 0x32d0b40,6, 0x32d0b60,4, 0x32d0b74,11, 0x32d0ba4,6, 0x32d0c00,1, 0x32d2000,75, 0x32d2400,94, 0x32d2580,7, 0x32d2600,41, 0x32d2700,2, 0x32d2720,19, 0x32d2800,1, 0x32d2900,36, 0x32d3000,3, 0x32d3080,6, 0x32d30a0,6, 0x32d30c0,1, 0x32d3100,4, 0x32d3140,9, 0x32d3180,2, 0x32d4000,3, 0x32d4010,5, 0x32d4200,7, 0x32d4220,6, 0x32d4240,7, 0x32d4260,6, 0x32d4280,2, 0x32d428c,2, 0x32d42a0,2, 0x32d42ac,2, 0x32d42c0,7, 0x32d42e0,7, 0x32d4300,2, 0x32d430c,2, 0x32d4320,6, 0x32d4400,3, 0x32d4440,12, 0x32d4600,7, 0x32d4620,14, 0x32d4680,9, 0x32d46a8,12, 0x32d4700,4, 0x32d4720,2, 0x32d472c,3, 0x32d4800,3, 0x32d8000,17, 0x32d8080,3, 0x32d8090,12, 0x32d8100,5, 0x32d8120,9, 0x32d8200,1, 0x32d8208,3, 0x32d8400,15, 0x32d8800,8, 0x32d8824,1, 0x32d8840,11, 0x32d8880,9, 0x32d8900,4, 0x32d8920,16, 0x32d8980,4, 0x32d89a0,16, 0x32d8a00,4, 0x32d8a20,16, 0x32d8a80,4, 0x32d8aa0,16, 0x32d8c00,3, 0x32d8c10,3, 0x32d8c20,3, 0x32d8c30,3, 0x32d8c40,3, 0x32d8c50,1, 0x32d8c80,3, 0x32d8c90,3, 0x32d8cc0,11, 0x32d8d00,12, 0x32d9000,128, 0x32d9204,6, 0x32d9400,27, 0x32d9480,9, 0x32d94c0,6, 0x32d94e0,6, 0x32d9804,1, 0x32d980c,5, 0x32d9840,24, 0x32d9904,1, 0x32d990c,5, 0x32d9940,21, 0x32d9a00,11, 0x32d9c00,8, 0x32d9c24,1, 0x32d9c30,10, 0x32d9c60,3, 0x32dc000,20, 0x32dc080,5, 0x32dc0a0,5, 0x32dc0c0,9, 0x32dc100,9, 0x32dc140,1, 0x32dc400,13, 0x32dc440,13, 0x32dc480,3, 0x32dc490,3, 0x32dc4a0,18, 0x32dc4ec,2, 0x32dc500,1, 0x32dc580,28, 0x32dc600,7, 0x32dc620,3, 0x32dc800,15, 0x32dc840,9, 0x32dc880,6, 0x32dc8a0,6, 0x32dc900,4, 0x32dc920,12, 0x32dc980,3, 0x32dc990,3, 0x32dc9a0,4, 0x32dc9c0,4, 0x32dc9e0,3, 0x32dc9f0,3, 0x32dca00,5, 0x32dca20,3, 0x32dd000,3, 0x32dd020,6, 0x32dd040,2, 0x32dd060,6, 0x32dd080,33, 0x32dd200,16, 0x32dd244,1, 0x32dd250,4, 0x32dd280,1, 0x32dd400,6, 0x32dd440,9, 0x32dd480,16, 0x32dd500,4, 0x32dd514,1, 0x32dd800,5, 0x32dd820,2, 0x32dd840,5, 0x32dd880,6, 0x32dd8a0,1, 0x32dd8c0,5, 0x32dd8e0,16, 0x32dda00,3, 0x32dda10,3, 0x32dda20,3, 0x32dda30,3, 0x32dda40,3, 0x32dda50,1, 0x32dda80,3, 0x32ddaa0,5, 0x32ddac0,14, 0x32ddb00,1, 0x32ddc00,27, 0x32ddc80,9, 0x32ddcc0,6, 0x32ddce0,6, 0x32ddd00,5, 0x32ddd20,3, 0x32ddd30,2, 0x32ddd40,4, 0x32de000,14, 0x32de800,11, 0x32de830,7, 0x32e0004,1, 0x32e0014,19, 0x32e0104,1, 0x32e0130,4, 0x32e0180,1, 0x32e0188,5, 0x32e0200,4, 0x32e0400,4, 0x32e0420,6, 0x32e0480,4, 0x32e04c0,10, 0x32e0600,15, 0x32e0640,4, 0x32e0660,17, 0x32e06c0,6, 0x32e06e0,2, 0x32e06ec,3, 0x32e0700,8, 0x32e0724,1, 0x32e0800,20, 0x32e0880,6, 0x32e08a0,6, 0x32e08c0,1, 0x32e0900,5, 0x32e0920,2, 0x32e1004,1, 0x32e1024,9, 0x32e1080,2, 0x32e1200,27, 0x32e1280,4, 0x32e12c0,25, 0x32e1340,6, 0x32e1360,2, 0x32e136c,3, 0x32e1380,8, 0x32e13a4,2, 0x32e1400,28, 0x32e1480,10, 0x32e14c0,2, 0x32e14d4,1, 0x32e14dc,1, 0x32e1500,5, 0x32e1524,1, 0x32e152c,2, 0x32e1540,3, 0x32e1550,2, 0x32e2004,1, 0x32e2014,19, 0x32e2104,1, 0x32e2130,4, 0x32e2180,1, 0x32e2188,5, 0x32e2200,4, 0x32e2400,4, 0x32e2420,6, 0x32e2480,4, 0x32e24c0,10, 0x32e2600,15, 0x32e2640,4, 0x32e2660,17, 0x32e26c0,6, 0x32e26e0,2, 0x32e26ec,3, 0x32e2700,8, 0x32e2724,1, 0x32e2800,20, 0x32e2880,6, 0x32e28a0,6, 0x32e28c0,1, 0x32e2900,5, 0x32e2920,2, 0x32e3004,1, 0x32e3024,9, 0x32e3080,2, 0x32e3200,27, 0x32e3280,4, 0x32e32c0,25, 0x32e3340,6, 0x32e3360,2, 0x32e336c,3, 0x32e3380,8, 0x32e33a4,2, 0x32e3400,28, 0x32e3480,10, 0x32e34c0,2, 0x32e34d4,1, 0x32e34dc,1, 0x32e3500,5, 0x32e3524,1, 0x32e352c,2, 0x32e3540,3, 0x32e3550,2, 0x32e4000,14, 0x32e4800,15, 0x32e4840,4, 0x32e4860,17, 0x32e48c0,6, 0x32e48e0,2, 0x32e48ec,3, 0x32e4900,8, 0x32e4924,1, 0x32e4a00,12, 0x32e4a40,3, 0x32e4a50,5, 0x32e4b00,2, 0x32e4b0c,3, 0x32e4b20,1, 0x32e4b40,8, 0x32e4b80,20, 0x32e4c00,1, 0x32e8004,1, 0x32e8014,19, 0x32e8104,1, 0x32e8130,4, 0x32e8180,1, 0x32e8188,5, 0x32e8200,4, 0x32e8400,4, 0x32e8420,6, 0x32e8480,4, 0x32e84c0,10, 0x32e8600,15, 0x32e8640,4, 0x32e8660,17, 0x32e86c0,6, 0x32e86e0,2, 0x32e86ec,3, 0x32e8700,8, 0x32e8724,1, 0x32e8800,20, 0x32e8880,6, 0x32e88a0,6, 0x32e88c0,1, 0x32e8900,5, 0x32e8920,2, 0x32e9000,1, 0x32e9024,1, 0x32e902c,7, 0x32e9084,1, 0x32e9094,6, 0x32e90c0,2, 0x32e9200,27, 0x32e9280,4, 0x32e92c0,25, 0x32e9340,6, 0x32e9360,2, 0x32e936c,3, 0x32e9380,8, 0x32e93a4,2, 0x32e9400,36, 0x32e9500,10, 0x32e9540,2, 0x32e9554,1, 0x32e955c,1, 0x32e9580,3, 0x32e9590,2, 0x32ea004,1, 0x32ea014,19, 0x32ea104,1, 0x32ea130,4, 0x32ea180,1, 0x32ea188,5, 0x32ea200,4, 0x32ea400,4, 0x32ea420,6, 0x32ea480,4, 0x32ea4c0,10, 0x32ea600,15, 0x32ea640,4, 0x32ea660,17, 0x32ea6c0,6, 0x32ea6e0,2, 0x32ea6ec,3, 0x32ea700,8, 0x32ea724,1, 0x32ea800,20, 0x32ea880,6, 0x32ea8a0,6, 0x32ea8c0,1, 0x32ea900,5, 0x32ea920,2, 0x32eb000,1, 0x32eb024,1, 0x32eb02c,7, 0x32eb084,1, 0x32eb094,6, 0x32eb0c0,2, 0x32eb200,27, 0x32eb280,4, 0x32eb2c0,25, 0x32eb340,6, 0x32eb360,2, 0x32eb36c,3, 0x32eb380,8, 0x32eb3a4,2, 0x32eb400,36, 0x32eb500,10, 0x32eb540,2, 0x32eb554,1, 0x32eb55c,1, 0x32eb580,3, 0x32eb590,2, 0x32ec000,14, 0x32ec800,15, 0x32ec840,4, 0x32ec860,17, 0x32ec8c0,6, 0x32ec8e0,2, 0x32ec8ec,3, 0x32ec900,8, 0x32ec924,1, 0x32eca00,12, 0x32eca40,3, 0x32eca50,5, 0x32f0000,14, 0x32f0800,4, 0x32f0880,31, 0x32f0900,1, 0x32f0908,2, 0x32f0920,5, 0x32f0940,8, 0x32f0a00,27, 0x32f0a80,4, 0x32f0ac0,25, 0x32f0b40,6, 0x32f0b60,4, 0x32f0b74,11, 0x32f0ba4,1, 0x32f0c00,3, 0x32f0c40,12, 0x32f0c80,3, 0x32f4000,14, 0x32f4800,19, 0x32f4850,13, 0x32f4888,9, 0x32f48b0,2, 0x32f4a00,27, 0x32f4a80,4, 0x32f4ac0,25, 0x32f4b40,6, 0x32f4b60,4, 0x32f4b74,11, 0x32f4ba4,1, 0x32f4c00,3, 0x32f4c40,12, 0x32f8000,2, 0x32f8080,1, 0x32f8088,15, 0x3310800,12, 0x3310844,6, 0x3310880,8, 0x33108a4,1, 0x33108c0,7, 0x33108e0,7, 0x3310900,7, 0x3310920,7, 0x3310940,3, 0x3310980,12, 0x3310a00,27, 0x3310a80,4, 0x3310ac0,25, 0x3310b40,6, 0x3310b60,4, 0x3310b74,11, 0x3310ba4,6, 0x3310c00,1, 0x3312000,75, 0x3312400,94, 0x3312580,7, 0x3312600,41, 0x3312700,2, 0x3312720,19, 0x3312800,1, 0x3312900,36, 0x3313000,3, 0x3313080,6, 0x33130a0,6, 0x33130c0,1, 0x3313100,4, 0x3313140,9, 0x3313180,2, 0x3314000,3, 0x3314010,5, 0x3314200,7, 0x3314220,6, 0x3314240,7, 0x3314260,6, 0x3314280,2, 0x331428c,2, 0x33142a0,2, 0x33142ac,2, 0x33142c0,7, 0x33142e0,7, 0x3314300,2, 0x331430c,2, 0x3314320,6, 0x3314400,3, 0x3314440,12, 0x3314600,7, 0x3314620,14, 0x3314680,9, 0x33146a8,12, 0x3314700,4, 0x3314720,2, 0x331472c,3, 0x3314800,3, 0x3318000,17, 0x3318080,3, 0x3318090,12, 0x3318100,5, 0x3318120,9, 0x3318200,1, 0x3318208,3, 0x3318400,15, 0x3318800,8, 0x3318824,1, 0x3318840,11, 0x3318880,9, 0x3318900,4, 0x3318920,16, 0x3318980,4, 0x33189a0,16, 0x3318a00,4, 0x3318a20,16, 0x3318a80,4, 0x3318aa0,16, 0x3318c00,3, 0x3318c10,3, 0x3318c20,3, 0x3318c30,3, 0x3318c40,3, 0x3318c50,1, 0x3318c80,3, 0x3318c90,3, 0x3318cc0,11, 0x3318d00,12, 0x3319000,128, 0x3319204,6, 0x3319400,27, 0x3319480,9, 0x33194c0,6, 0x33194e0,6, 0x3319804,1, 0x331980c,5, 0x3319840,24, 0x3319904,1, 0x331990c,5, 0x3319940,21, 0x3319a00,11, 0x3319c00,8, 0x3319c24,1, 0x3319c30,10, 0x3319c60,3, 0x331c000,20, 0x331c080,5, 0x331c0a0,5, 0x331c0c0,9, 0x331c100,9, 0x331c140,1, 0x331c400,13, 0x331c440,13, 0x331c480,3, 0x331c490,3, 0x331c4a0,18, 0x331c4ec,2, 0x331c500,1, 0x331c580,28, 0x331c600,7, 0x331c620,3, 0x331c800,15, 0x331c840,9, 0x331c880,6, 0x331c8a0,6, 0x331c900,4, 0x331c920,12, 0x331c980,3, 0x331c990,3, 0x331c9a0,4, 0x331c9c0,4, 0x331c9e0,3, 0x331c9f0,3, 0x331ca00,5, 0x331ca20,3, 0x331d000,3, 0x331d020,6, 0x331d040,2, 0x331d060,6, 0x331d080,33, 0x331d200,16, 0x331d244,1, 0x331d250,4, 0x331d280,1, 0x331d400,6, 0x331d440,9, 0x331d480,16, 0x331d500,4, 0x331d514,1, 0x331d800,5, 0x331d820,2, 0x331d840,5, 0x331d880,6, 0x331d8a0,1, 0x331d8c0,5, 0x331d8e0,16, 0x331da00,3, 0x331da10,3, 0x331da20,3, 0x331da30,3, 0x331da40,3, 0x331da50,1, 0x331da80,3, 0x331daa0,5, 0x331dac0,14, 0x331db00,1, 0x331dc00,27, 0x331dc80,9, 0x331dcc0,6, 0x331dce0,6, 0x331dd00,5, 0x331dd20,3, 0x331dd30,2, 0x331dd40,4, 0x331e000,14, 0x331e800,11, 0x331e830,7, 0x3320004,1, 0x3320014,19, 0x3320104,1, 0x3320130,4, 0x3320180,1, 0x3320188,5, 0x3320200,4, 0x3320400,4, 0x3320420,6, 0x3320480,4, 0x33204c0,10, 0x3320600,15, 0x3320640,4, 0x3320660,17, 0x33206c0,6, 0x33206e0,2, 0x33206ec,3, 0x3320700,8, 0x3320724,1, 0x3320800,20, 0x3320880,6, 0x33208a0,6, 0x33208c0,1, 0x3320900,5, 0x3320920,2, 0x3321004,1, 0x3321024,9, 0x3321080,2, 0x3321200,27, 0x3321280,4, 0x33212c0,25, 0x3321340,6, 0x3321360,2, 0x332136c,3, 0x3321380,8, 0x33213a4,2, 0x3321400,28, 0x3321480,10, 0x33214c0,2, 0x33214d4,1, 0x33214dc,1, 0x3321500,5, 0x3321524,1, 0x332152c,2, 0x3321540,3, 0x3321550,2, 0x3322004,1, 0x3322014,19, 0x3322104,1, 0x3322130,4, 0x3322180,1, 0x3322188,5, 0x3322200,4, 0x3322400,4, 0x3322420,6, 0x3322480,4, 0x33224c0,10, 0x3322600,15, 0x3322640,4, 0x3322660,17, 0x33226c0,6, 0x33226e0,2, 0x33226ec,3, 0x3322700,8, 0x3322724,1, 0x3322800,20, 0x3322880,6, 0x33228a0,6, 0x33228c0,1, 0x3322900,5, 0x3322920,2, 0x3323004,1, 0x3323024,9, 0x3323080,2, 0x3323200,27, 0x3323280,4, 0x33232c0,25, 0x3323340,6, 0x3323360,2, 0x332336c,3, 0x3323380,8, 0x33233a4,2, 0x3323400,28, 0x3323480,10, 0x33234c0,2, 0x33234d4,1, 0x33234dc,1, 0x3323500,5, 0x3323524,1, 0x332352c,2, 0x3323540,3, 0x3323550,2, 0x3324000,14, 0x3324800,15, 0x3324840,4, 0x3324860,17, 0x33248c0,6, 0x33248e0,2, 0x33248ec,3, 0x3324900,8, 0x3324924,1, 0x3324a00,12, 0x3324a40,3, 0x3324a50,5, 0x3324b00,2, 0x3324b0c,3, 0x3324b20,1, 0x3324b40,8, 0x3324b80,20, 0x3324c00,1, 0x3328004,1, 0x3328014,19, 0x3328104,1, 0x3328130,4, 0x3328180,1, 0x3328188,5, 0x3328200,4, 0x3328400,4, 0x3328420,6, 0x3328480,4, 0x33284c0,10, 0x3328600,15, 0x3328640,4, 0x3328660,17, 0x33286c0,6, 0x33286e0,2, 0x33286ec,3, 0x3328700,8, 0x3328724,1, 0x3328800,20, 0x3328880,6, 0x33288a0,6, 0x33288c0,1, 0x3328900,5, 0x3328920,2, 0x3329000,1, 0x3329024,1, 0x332902c,7, 0x3329084,1, 0x3329094,6, 0x33290c0,2, 0x3329200,27, 0x3329280,4, 0x33292c0,25, 0x3329340,6, 0x3329360,2, 0x332936c,3, 0x3329380,8, 0x33293a4,2, 0x3329400,36, 0x3329500,10, 0x3329540,2, 0x3329554,1, 0x332955c,1, 0x3329580,3, 0x3329590,2, 0x332a004,1, 0x332a014,19, 0x332a104,1, 0x332a130,4, 0x332a180,1, 0x332a188,5, 0x332a200,4, 0x332a400,4, 0x332a420,6, 0x332a480,4, 0x332a4c0,10, 0x332a600,15, 0x332a640,4, 0x332a660,17, 0x332a6c0,6, 0x332a6e0,2, 0x332a6ec,3, 0x332a700,8, 0x332a724,1, 0x332a800,20, 0x332a880,6, 0x332a8a0,6, 0x332a8c0,1, 0x332a900,5, 0x332a920,2, 0x332b000,1, 0x332b024,1, 0x332b02c,7, 0x332b084,1, 0x332b094,6, 0x332b0c0,2, 0x332b200,27, 0x332b280,4, 0x332b2c0,25, 0x332b340,6, 0x332b360,2, 0x332b36c,3, 0x332b380,8, 0x332b3a4,2, 0x332b400,36, 0x332b500,10, 0x332b540,2, 0x332b554,1, 0x332b55c,1, 0x332b580,3, 0x332b590,2, 0x332c000,14, 0x332c800,15, 0x332c840,4, 0x332c860,17, 0x332c8c0,6, 0x332c8e0,2, 0x332c8ec,3, 0x332c900,8, 0x332c924,1, 0x332ca00,12, 0x332ca40,3, 0x332ca50,5, 0x3330000,14, 0x3330800,4, 0x3330880,31, 0x3330900,1, 0x3330908,2, 0x3330920,5, 0x3330940,8, 0x3330a00,27, 0x3330a80,4, 0x3330ac0,25, 0x3330b40,6, 0x3330b60,4, 0x3330b74,11, 0x3330ba4,1, 0x3330c00,3, 0x3330c40,12, 0x3330c80,3, 0x3334000,14, 0x3334800,19, 0x3334850,13, 0x3334888,9, 0x33348b0,2, 0x3334a00,27, 0x3334a80,4, 0x3334ac0,25, 0x3334b40,6, 0x3334b60,4, 0x3334b74,11, 0x3334ba4,1, 0x3334c00,3, 0x3334c40,12, 0x3338000,2, 0x3338080,1, 0x3338088,15, 0x3350800,12, 0x3350844,6, 0x3350880,8, 0x33508a4,1, 0x33508c0,7, 0x33508e0,7, 0x3350900,7, 0x3350920,7, 0x3350940,3, 0x3350980,12, 0x3350a00,27, 0x3350a80,4, 0x3350ac0,25, 0x3350b40,6, 0x3350b60,4, 0x3350b74,11, 0x3350ba4,6, 0x3350c00,1, 0x3352000,75, 0x3352400,94, 0x3352580,7, 0x3352600,41, 0x3352700,2, 0x3352720,19, 0x3352800,1, 0x3352900,36, 0x3353000,3, 0x3353080,6, 0x33530a0,6, 0x33530c0,1, 0x3353100,4, 0x3353140,9, 0x3353180,2, 0x3354000,3, 0x3354010,5, 0x3354200,7, 0x3354220,6, 0x3354240,7, 0x3354260,6, 0x3354280,2, 0x335428c,2, 0x33542a0,2, 0x33542ac,2, 0x33542c0,7, 0x33542e0,7, 0x3354300,2, 0x335430c,2, 0x3354320,6, 0x3354400,3, 0x3354440,12, 0x3354600,7, 0x3354620,14, 0x3354680,9, 0x33546a8,12, 0x3354700,4, 0x3354720,2, 0x335472c,3, 0x3354800,3, 0x3358000,17, 0x3358080,3, 0x3358090,12, 0x3358100,5, 0x3358120,9, 0x3358200,1, 0x3358208,3, 0x3358400,15, 0x3358800,8, 0x3358824,1, 0x3358840,11, 0x3358880,9, 0x3358900,4, 0x3358920,16, 0x3358980,4, 0x33589a0,16, 0x3358a00,4, 0x3358a20,16, 0x3358a80,4, 0x3358aa0,16, 0x3358c00,3, 0x3358c10,3, 0x3358c20,3, 0x3358c30,3, 0x3358c40,3, 0x3358c50,1, 0x3358c80,3, 0x3358c90,3, 0x3358cc0,11, 0x3358d00,12, 0x3359000,128, 0x3359204,6, 0x3359400,27, 0x3359480,9, 0x33594c0,6, 0x33594e0,6, 0x3359804,1, 0x335980c,5, 0x3359840,24, 0x3359904,1, 0x335990c,5, 0x3359940,21, 0x3359a00,11, 0x3359c00,8, 0x3359c24,1, 0x3359c30,10, 0x3359c60,3, 0x335c000,20, 0x335c080,5, 0x335c0a0,5, 0x335c0c0,9, 0x335c100,9, 0x335c140,1, 0x335c400,13, 0x335c440,13, 0x335c480,3, 0x335c490,3, 0x335c4a0,18, 0x335c4ec,2, 0x335c500,1, 0x335c580,28, 0x335c600,7, 0x335c620,3, 0x335c800,15, 0x335c840,9, 0x335c880,6, 0x335c8a0,6, 0x335c900,4, 0x335c920,12, 0x335c980,3, 0x335c990,3, 0x335c9a0,4, 0x335c9c0,4, 0x335c9e0,3, 0x335c9f0,3, 0x335ca00,5, 0x335ca20,3, 0x335d000,3, 0x335d020,6, 0x335d040,2, 0x335d060,6, 0x335d080,33, 0x335d200,16, 0x335d244,1, 0x335d250,4, 0x335d280,1, 0x335d400,6, 0x335d440,9, 0x335d480,16, 0x335d500,4, 0x335d514,1, 0x335d800,5, 0x335d820,2, 0x335d840,5, 0x335d880,6, 0x335d8a0,1, 0x335d8c0,5, 0x335d8e0,16, 0x335da00,3, 0x335da10,3, 0x335da20,3, 0x335da30,3, 0x335da40,3, 0x335da50,1, 0x335da80,3, 0x335daa0,5, 0x335dac0,14, 0x335db00,1, 0x335dc00,27, 0x335dc80,9, 0x335dcc0,6, 0x335dce0,6, 0x335dd00,5, 0x335dd20,3, 0x335dd30,2, 0x335dd40,4, 0x335e000,14, 0x335e800,11, 0x335e830,7, 0x3360004,1, 0x3360014,19, 0x3360104,1, 0x3360130,4, 0x3360180,1, 0x3360188,5, 0x3360200,4, 0x3360400,4, 0x3360420,6, 0x3360480,4, 0x33604c0,10, 0x3360600,15, 0x3360640,4, 0x3360660,17, 0x33606c0,6, 0x33606e0,2, 0x33606ec,3, 0x3360700,8, 0x3360724,1, 0x3360800,20, 0x3360880,6, 0x33608a0,6, 0x33608c0,1, 0x3360900,5, 0x3360920,2, 0x3361004,1, 0x3361024,9, 0x3361080,2, 0x3361200,27, 0x3361280,4, 0x33612c0,25, 0x3361340,6, 0x3361360,2, 0x336136c,3, 0x3361380,8, 0x33613a4,2, 0x3361400,28, 0x3361480,10, 0x33614c0,2, 0x33614d4,1, 0x33614dc,1, 0x3361500,5, 0x3361524,1, 0x336152c,2, 0x3361540,3, 0x3361550,2, 0x3362004,1, 0x3362014,19, 0x3362104,1, 0x3362130,4, 0x3362180,1, 0x3362188,5, 0x3362200,4, 0x3362400,4, 0x3362420,6, 0x3362480,4, 0x33624c0,10, 0x3362600,15, 0x3362640,4, 0x3362660,17, 0x33626c0,6, 0x33626e0,2, 0x33626ec,3, 0x3362700,8, 0x3362724,1, 0x3362800,20, 0x3362880,6, 0x33628a0,6, 0x33628c0,1, 0x3362900,5, 0x3362920,2, 0x3363004,1, 0x3363024,9, 0x3363080,2, 0x3363200,27, 0x3363280,4, 0x33632c0,25, 0x3363340,6, 0x3363360,2, 0x336336c,3, 0x3363380,8, 0x33633a4,2, 0x3363400,28, 0x3363480,10, 0x33634c0,2, 0x33634d4,1, 0x33634dc,1, 0x3363500,5, 0x3363524,1, 0x336352c,2, 0x3363540,3, 0x3363550,2, 0x3364000,14, 0x3364800,15, 0x3364840,4, 0x3364860,17, 0x33648c0,6, 0x33648e0,2, 0x33648ec,3, 0x3364900,8, 0x3364924,1, 0x3364a00,12, 0x3364a40,3, 0x3364a50,5, 0x3364b00,2, 0x3364b0c,3, 0x3364b20,1, 0x3364b40,8, 0x3364b80,20, 0x3364c00,1, 0x3368004,1, 0x3368014,19, 0x3368104,1, 0x3368130,4, 0x3368180,1, 0x3368188,5, 0x3368200,4, 0x3368400,4, 0x3368420,6, 0x3368480,4, 0x33684c0,10, 0x3368600,15, 0x3368640,4, 0x3368660,17, 0x33686c0,6, 0x33686e0,2, 0x33686ec,3, 0x3368700,8, 0x3368724,1, 0x3368800,20, 0x3368880,6, 0x33688a0,6, 0x33688c0,1, 0x3368900,5, 0x3368920,2, 0x3369000,1, 0x3369024,1, 0x336902c,7, 0x3369084,1, 0x3369094,6, 0x33690c0,2, 0x3369200,27, 0x3369280,4, 0x33692c0,25, 0x3369340,6, 0x3369360,2, 0x336936c,3, 0x3369380,8, 0x33693a4,2, 0x3369400,36, 0x3369500,10, 0x3369540,2, 0x3369554,1, 0x336955c,1, 0x3369580,3, 0x3369590,2, 0x336a004,1, 0x336a014,19, 0x336a104,1, 0x336a130,4, 0x336a180,1, 0x336a188,5, 0x336a200,4, 0x336a400,4, 0x336a420,6, 0x336a480,4, 0x336a4c0,10, 0x336a600,15, 0x336a640,4, 0x336a660,17, 0x336a6c0,6, 0x336a6e0,2, 0x336a6ec,3, 0x336a700,8, 0x336a724,1, 0x336a800,20, 0x336a880,6, 0x336a8a0,6, 0x336a8c0,1, 0x336a900,5, 0x336a920,2, 0x336b000,1, 0x336b024,1, 0x336b02c,7, 0x336b084,1, 0x336b094,6, 0x336b0c0,2, 0x336b200,27, 0x336b280,4, 0x336b2c0,25, 0x336b340,6, 0x336b360,2, 0x336b36c,3, 0x336b380,8, 0x336b3a4,2, 0x336b400,36, 0x336b500,10, 0x336b540,2, 0x336b554,1, 0x336b55c,1, 0x336b580,3, 0x336b590,2, 0x336c000,14, 0x336c800,15, 0x336c840,4, 0x336c860,17, 0x336c8c0,6, 0x336c8e0,2, 0x336c8ec,3, 0x336c900,8, 0x336c924,1, 0x336ca00,12, 0x336ca40,3, 0x336ca50,5, 0x3370000,14, 0x3370800,4, 0x3370880,31, 0x3370900,1, 0x3370908,2, 0x3370920,5, 0x3370940,8, 0x3370a00,27, 0x3370a80,4, 0x3370ac0,25, 0x3370b40,6, 0x3370b60,4, 0x3370b74,11, 0x3370ba4,1, 0x3370c00,3, 0x3370c40,12, 0x3370c80,3, 0x3374000,14, 0x3374800,19, 0x3374850,13, 0x3374888,9, 0x33748b0,2, 0x3374a00,27, 0x3374a80,4, 0x3374ac0,25, 0x3374b40,6, 0x3374b60,4, 0x3374b74,11, 0x3374ba4,1, 0x3374c00,3, 0x3374c40,12, 0x3378000,2, 0x3378080,1, 0x3378088,15, 0x3380000,1, 0x3382000,1020, 0x3384000,1020, 0x3386000,1020, 0x3388000,65, 0x3388200,5, 0x3388220,5, 0x3388240,6, 0x3388260,6, 0x3388280,4, 0x33882a0,7, 0x33882c0,8, 0x3388300,28, 0x3388384,1, 0x338838c,3, 0x3388400,65, 0x3388600,5, 0x3388620,5, 0x3388640,6, 0x3388660,6, 0x3388680,4, 0x33886a0,7, 0x33886c0,8, 0x3388700,28, 0x3388784,1, 0x338878c,3, 0x3388800,65, 0x3388a00,5, 0x3388a20,5, 0x3388a40,6, 0x3388a60,6, 0x3388a80,4, 0x3388aa0,7, 0x3388ac0,8, 0x3388b00,28, 0x3388b84,1, 0x3388b8c,3, 0x3388c00,20, 0x3389000,3, 0x3389040,9, 0x3389080,10, 0x33890c0,2, 0x33890cc,2, 0x33890e0,3, 0x33890f0,1, 0x3389100,16, 0x3390000,8, 0x3390800,12, 0x3390844,6, 0x3390880,8, 0x33908a4,1, 0x33908c0,7, 0x33908e0,7, 0x3390900,7, 0x3390920,7, 0x3390940,3, 0x3390980,12, 0x3390a00,27, 0x3390a80,4, 0x3390ac0,25, 0x3390b40,6, 0x3390b60,4, 0x3390b74,11, 0x3390ba4,6, 0x3390c00,1, 0x3392000,75, 0x3392400,94, 0x3392580,7, 0x3392600,41, 0x3392700,2, 0x3392720,19, 0x3392800,1, 0x3392900,36, 0x3393000,3, 0x3393080,6, 0x33930a0,6, 0x33930c0,1, 0x3393100,4, 0x3393140,9, 0x3393180,2, 0x3394000,3, 0x3394010,5, 0x3394200,7, 0x3394220,6, 0x3394240,7, 0x3394260,6, 0x3394280,2, 0x339428c,2, 0x33942a0,2, 0x33942ac,2, 0x33942c0,7, 0x33942e0,7, 0x3394300,2, 0x339430c,2, 0x3394320,6, 0x3394400,3, 0x3394440,12, 0x3394600,7, 0x3394620,14, 0x3394680,9, 0x33946a8,12, 0x3394700,4, 0x3394720,2, 0x339472c,3, 0x3394800,3, 0x3398000,17, 0x3398080,3, 0x3398090,12, 0x3398100,5, 0x3398120,9, 0x3398200,1, 0x3398208,3, 0x3398400,15, 0x3398800,8, 0x3398824,1, 0x3398840,11, 0x3398880,9, 0x3398900,4, 0x3398920,16, 0x3398980,4, 0x33989a0,16, 0x3398a00,4, 0x3398a20,16, 0x3398a80,4, 0x3398aa0,16, 0x3398c00,3, 0x3398c10,3, 0x3398c20,3, 0x3398c30,3, 0x3398c40,3, 0x3398c50,1, 0x3398c80,3, 0x3398c90,3, 0x3398cc0,11, 0x3398d00,12, 0x3399000,128, 0x3399204,6, 0x3399400,27, 0x3399480,9, 0x33994c0,6, 0x33994e0,6, 0x3399804,1, 0x339980c,5, 0x3399840,24, 0x3399904,1, 0x339990c,5, 0x3399940,21, 0x3399a00,11, 0x3399c00,8, 0x3399c24,1, 0x3399c30,10, 0x3399c60,3, 0x339c000,20, 0x339c080,5, 0x339c0a0,5, 0x339c0c0,9, 0x339c100,9, 0x339c140,1, 0x339c400,13, 0x339c440,13, 0x339c480,3, 0x339c490,3, 0x339c4a0,18, 0x339c4ec,2, 0x339c500,1, 0x339c580,28, 0x339c600,7, 0x339c620,3, 0x339c800,15, 0x339c840,9, 0x339c880,6, 0x339c8a0,6, 0x339c900,4, 0x339c920,12, 0x339c980,3, 0x339c990,3, 0x339c9a0,4, 0x339c9c0,4, 0x339c9e0,3, 0x339c9f0,3, 0x339ca00,5, 0x339ca20,3, 0x339d000,3, 0x339d020,6, 0x339d040,2, 0x339d060,6, 0x339d080,33, 0x339d200,16, 0x339d244,1, 0x339d250,4, 0x339d280,1, 0x339d400,6, 0x339d440,9, 0x339d480,16, 0x339d500,4, 0x339d514,1, 0x339d800,5, 0x339d820,2, 0x339d840,5, 0x339d880,6, 0x339d8a0,1, 0x339d8c0,5, 0x339d8e0,16, 0x339da00,3, 0x339da10,3, 0x339da20,3, 0x339da30,3, 0x339da40,3, 0x339da50,1, 0x339da80,3, 0x339daa0,5, 0x339dac0,14, 0x339db00,1, 0x339dc00,27, 0x339dc80,9, 0x339dcc0,6, 0x339dce0,6, 0x339dd00,5, 0x339dd20,3, 0x339dd30,2, 0x339dd40,4, 0x339e000,14, 0x339e800,11, 0x339e830,7, 0x33a0004,1, 0x33a0014,19, 0x33a0104,1, 0x33a0130,4, 0x33a0180,1, 0x33a0188,5, 0x33a0200,4, 0x33a0400,4, 0x33a0420,6, 0x33a0480,4, 0x33a04c0,10, 0x33a0600,15, 0x33a0640,4, 0x33a0660,17, 0x33a06c0,6, 0x33a06e0,2, 0x33a06ec,3, 0x33a0700,8, 0x33a0724,1, 0x33a0800,20, 0x33a0880,6, 0x33a08a0,6, 0x33a08c0,1, 0x33a0900,5, 0x33a0920,2, 0x33a1004,1, 0x33a1024,9, 0x33a1080,2, 0x33a1200,27, 0x33a1280,4, 0x33a12c0,25, 0x33a1340,6, 0x33a1360,2, 0x33a136c,3, 0x33a1380,8, 0x33a13a4,2, 0x33a1400,28, 0x33a1480,10, 0x33a14c0,2, 0x33a14d4,1, 0x33a14dc,1, 0x33a1500,5, 0x33a1524,1, 0x33a152c,2, 0x33a1540,3, 0x33a1550,2, 0x33a2004,1, 0x33a2014,19, 0x33a2104,1, 0x33a2130,4, 0x33a2180,1, 0x33a2188,5, 0x33a2200,4, 0x33a2400,4, 0x33a2420,6, 0x33a2480,4, 0x33a24c0,10, 0x33a2600,15, 0x33a2640,4, 0x33a2660,17, 0x33a26c0,6, 0x33a26e0,2, 0x33a26ec,3, 0x33a2700,8, 0x33a2724,1, 0x33a2800,20, 0x33a2880,6, 0x33a28a0,6, 0x33a28c0,1, 0x33a2900,5, 0x33a2920,2, 0x33a3004,1, 0x33a3024,9, 0x33a3080,2, 0x33a3200,27, 0x33a3280,4, 0x33a32c0,25, 0x33a3340,6, 0x33a3360,2, 0x33a336c,3, 0x33a3380,8, 0x33a33a4,2, 0x33a3400,28, 0x33a3480,10, 0x33a34c0,2, 0x33a34d4,1, 0x33a34dc,1, 0x33a3500,5, 0x33a3524,1, 0x33a352c,2, 0x33a3540,3, 0x33a3550,2, 0x33a4000,14, 0x33a4800,15, 0x33a4840,4, 0x33a4860,17, 0x33a48c0,6, 0x33a48e0,2, 0x33a48ec,3, 0x33a4900,8, 0x33a4924,1, 0x33a4a00,12, 0x33a4a40,3, 0x33a4a50,5, 0x33a4b00,2, 0x33a4b0c,3, 0x33a4b20,1, 0x33a4b40,8, 0x33a4b80,20, 0x33a4c00,1, 0x33a8004,1, 0x33a8014,19, 0x33a8104,1, 0x33a8130,4, 0x33a8180,1, 0x33a8188,5, 0x33a8200,4, 0x33a8400,4, 0x33a8420,6, 0x33a8480,4, 0x33a84c0,10, 0x33a8600,15, 0x33a8640,4, 0x33a8660,17, 0x33a86c0,6, 0x33a86e0,2, 0x33a86ec,3, 0x33a8700,8, 0x33a8724,1, 0x33a8800,20, 0x33a8880,6, 0x33a88a0,6, 0x33a88c0,1, 0x33a8900,5, 0x33a8920,2, 0x33a9000,1, 0x33a9024,1, 0x33a902c,7, 0x33a9084,1, 0x33a9094,6, 0x33a90c0,2, 0x33a9200,27, 0x33a9280,4, 0x33a92c0,25, 0x33a9340,6, 0x33a9360,2, 0x33a936c,3, 0x33a9380,8, 0x33a93a4,2, 0x33a9400,36, 0x33a9500,10, 0x33a9540,2, 0x33a9554,1, 0x33a955c,1, 0x33a9580,3, 0x33a9590,2, 0x33aa004,1, 0x33aa014,19, 0x33aa104,1, 0x33aa130,4, 0x33aa180,1, 0x33aa188,5, 0x33aa200,4, 0x33aa400,4, 0x33aa420,6, 0x33aa480,4, 0x33aa4c0,10, 0x33aa600,15, 0x33aa640,4, 0x33aa660,17, 0x33aa6c0,6, 0x33aa6e0,2, 0x33aa6ec,3, 0x33aa700,8, 0x33aa724,1, 0x33aa800,20, 0x33aa880,6, 0x33aa8a0,6, 0x33aa8c0,1, 0x33aa900,5, 0x33aa920,2, 0x33ab000,1, 0x33ab024,1, 0x33ab02c,7, 0x33ab084,1, 0x33ab094,6, 0x33ab0c0,2, 0x33ab200,27, 0x33ab280,4, 0x33ab2c0,25, 0x33ab340,6, 0x33ab360,2, 0x33ab36c,3, 0x33ab380,8, 0x33ab3a4,2, 0x33ab400,36, 0x33ab500,10, 0x33ab540,2, 0x33ab554,1, 0x33ab55c,1, 0x33ab580,3, 0x33ab590,2, 0x33ac000,14, 0x33ac800,15, 0x33ac840,4, 0x33ac860,17, 0x33ac8c0,6, 0x33ac8e0,2, 0x33ac8ec,3, 0x33ac900,8, 0x33ac924,1, 0x33aca00,12, 0x33aca40,3, 0x33aca50,5, 0x33b0000,14, 0x33b0800,4, 0x33b0880,31, 0x33b0900,1, 0x33b0908,2, 0x33b0920,5, 0x33b0940,8, 0x33b0a00,27, 0x33b0a80,4, 0x33b0ac0,25, 0x33b0b40,6, 0x33b0b60,4, 0x33b0b74,11, 0x33b0ba4,1, 0x33b0c00,3, 0x33b0c40,12, 0x33b0c80,3, 0x33b4000,14, 0x33b4800,19, 0x33b4850,13, 0x33b4888,9, 0x33b48b0,2, 0x33b4a00,27, 0x33b4a80,4, 0x33b4ac0,25, 0x33b4b40,6, 0x33b4b60,4, 0x33b4b74,11, 0x33b4ba4,1, 0x33b4c00,3, 0x33b4c40,12, 0x33b8000,2, 0x33b8080,1, 0x33b8088,15, 0x33c0000,1, 0x33c2000,1020, 0x33c4000,1020, 0x33c6000,1020, 0x33c8000,65, 0x33c8200,5, 0x33c8220,5, 0x33c8240,6, 0x33c8260,6, 0x33c8280,4, 0x33c82a0,7, 0x33c82c0,8, 0x33c8300,28, 0x33c8384,1, 0x33c838c,3, 0x33c8400,65, 0x33c8600,5, 0x33c8620,5, 0x33c8640,6, 0x33c8660,6, 0x33c8680,4, 0x33c86a0,7, 0x33c86c0,8, 0x33c8700,28, 0x33c8784,1, 0x33c878c,3, 0x33c8800,65, 0x33c8a00,5, 0x33c8a20,5, 0x33c8a40,6, 0x33c8a60,6, 0x33c8a80,4, 0x33c8aa0,7, 0x33c8ac0,8, 0x33c8b00,28, 0x33c8b84,1, 0x33c8b8c,3, 0x33c8c00,20, 0x33c9000,3, 0x33c9040,9, 0x33c9080,10, 0x33c90c0,2, 0x33c90cc,2, 0x33c90e0,3, 0x33c90f0,1, 0x33c9100,16, 0x33d0000,8, 0x33d0800,12, 0x33d0844,6, 0x33d0880,8, 0x33d08a4,1, 0x33d08c0,7, 0x33d08e0,7, 0x33d0900,7, 0x33d0920,7, 0x33d0940,3, 0x33d0980,12, 0x33d0a00,27, 0x33d0a80,4, 0x33d0ac0,25, 0x33d0b40,6, 0x33d0b60,4, 0x33d0b74,11, 0x33d0ba4,6, 0x33d0c00,1, 0x33d2000,75, 0x33d2400,94, 0x33d2580,7, 0x33d2600,41, 0x33d2700,2, 0x33d2720,19, 0x33d2800,1, 0x33d2900,36, 0x33d3000,3, 0x33d3080,6, 0x33d30a0,6, 0x33d30c0,1, 0x33d3100,4, 0x33d3140,9, 0x33d3180,2, 0x33d4000,3, 0x33d4010,5, 0x33d4200,7, 0x33d4220,6, 0x33d4240,7, 0x33d4260,6, 0x33d4280,2, 0x33d428c,2, 0x33d42a0,2, 0x33d42ac,2, 0x33d42c0,7, 0x33d42e0,7, 0x33d4300,2, 0x33d430c,2, 0x33d4320,6, 0x33d4400,3, 0x33d4440,12, 0x33d4600,7, 0x33d4620,14, 0x33d4680,9, 0x33d46a8,12, 0x33d4700,4, 0x33d4720,2, 0x33d472c,3, 0x33d4800,3, 0x33d8000,17, 0x33d8080,3, 0x33d8090,12, 0x33d8100,5, 0x33d8120,9, 0x33d8200,1, 0x33d8208,3, 0x33d8400,15, 0x33d8800,8, 0x33d8824,1, 0x33d8840,11, 0x33d8880,9, 0x33d8900,4, 0x33d8920,16, 0x33d8980,4, 0x33d89a0,16, 0x33d8a00,4, 0x33d8a20,16, 0x33d8a80,4, 0x33d8aa0,16, 0x33d8c00,3, 0x33d8c10,3, 0x33d8c20,3, 0x33d8c30,3, 0x33d8c40,3, 0x33d8c50,1, 0x33d8c80,3, 0x33d8c90,3, 0x33d8cc0,11, 0x33d8d00,12, 0x33d9000,128, 0x33d9204,6, 0x33d9400,27, 0x33d9480,9, 0x33d94c0,6, 0x33d94e0,6, 0x33d9804,1, 0x33d980c,5, 0x33d9840,24, 0x33d9904,1, 0x33d990c,5, 0x33d9940,21, 0x33d9a00,11, 0x33d9c00,8, 0x33d9c24,1, 0x33d9c30,10, 0x33d9c60,3, 0x33dc000,20, 0x33dc080,5, 0x33dc0a0,5, 0x33dc0c0,9, 0x33dc100,9, 0x33dc140,1, 0x33dc400,13, 0x33dc440,13, 0x33dc480,3, 0x33dc490,3, 0x33dc4a0,18, 0x33dc4ec,2, 0x33dc500,1, 0x33dc580,28, 0x33dc600,7, 0x33dc620,3, 0x33dc800,15, 0x33dc840,9, 0x33dc880,6, 0x33dc8a0,6, 0x33dc900,4, 0x33dc920,12, 0x33dc980,3, 0x33dc990,3, 0x33dc9a0,4, 0x33dc9c0,4, 0x33dc9e0,3, 0x33dc9f0,3, 0x33dca00,5, 0x33dca20,3, 0x33dd000,3, 0x33dd020,6, 0x33dd040,2, 0x33dd060,6, 0x33dd080,33, 0x33dd200,16, 0x33dd244,1, 0x33dd250,4, 0x33dd280,1, 0x33dd400,6, 0x33dd440,9, 0x33dd480,16, 0x33dd500,4, 0x33dd514,1, 0x33dd800,5, 0x33dd820,2, 0x33dd840,5, 0x33dd880,6, 0x33dd8a0,1, 0x33dd8c0,5, 0x33dd8e0,16, 0x33dda00,3, 0x33dda10,3, 0x33dda20,3, 0x33dda30,3, 0x33dda40,3, 0x33dda50,1, 0x33dda80,3, 0x33ddaa0,5, 0x33ddac0,14, 0x33ddb00,1, 0x33ddc00,27, 0x33ddc80,9, 0x33ddcc0,6, 0x33ddce0,6, 0x33ddd00,5, 0x33ddd20,3, 0x33ddd30,2, 0x33ddd40,4, 0x33de000,14, 0x33de800,11, 0x33de830,7, 0x33e0004,1, 0x33e0014,19, 0x33e0104,1, 0x33e0130,4, 0x33e0180,1, 0x33e0188,5, 0x33e0200,4, 0x33e0400,4, 0x33e0420,6, 0x33e0480,4, 0x33e04c0,10, 0x33e0600,15, 0x33e0640,4, 0x33e0660,17, 0x33e06c0,6, 0x33e06e0,2, 0x33e06ec,3, 0x33e0700,8, 0x33e0724,1, 0x33e0800,20, 0x33e0880,6, 0x33e08a0,6, 0x33e08c0,1, 0x33e0900,5, 0x33e0920,2, 0x33e1004,1, 0x33e1024,9, 0x33e1080,2, 0x33e1200,27, 0x33e1280,4, 0x33e12c0,25, 0x33e1340,6, 0x33e1360,2, 0x33e136c,3, 0x33e1380,8, 0x33e13a4,2, 0x33e1400,28, 0x33e1480,10, 0x33e14c0,2, 0x33e14d4,1, 0x33e14dc,1, 0x33e1500,5, 0x33e1524,1, 0x33e152c,2, 0x33e1540,3, 0x33e1550,2, 0x33e2004,1, 0x33e2014,19, 0x33e2104,1, 0x33e2130,4, 0x33e2180,1, 0x33e2188,5, 0x33e2200,4, 0x33e2400,4, 0x33e2420,6, 0x33e2480,4, 0x33e24c0,10, 0x33e2600,15, 0x33e2640,4, 0x33e2660,17, 0x33e26c0,6, 0x33e26e0,2, 0x33e26ec,3, 0x33e2700,8, 0x33e2724,1, 0x33e2800,20, 0x33e2880,6, 0x33e28a0,6, 0x33e28c0,1, 0x33e2900,5, 0x33e2920,2, 0x33e3004,1, 0x33e3024,9, 0x33e3080,2, 0x33e3200,27, 0x33e3280,4, 0x33e32c0,25, 0x33e3340,6, 0x33e3360,2, 0x33e336c,3, 0x33e3380,8, 0x33e33a4,2, 0x33e3400,28, 0x33e3480,10, 0x33e34c0,2, 0x33e34d4,1, 0x33e34dc,1, 0x33e3500,5, 0x33e3524,1, 0x33e352c,2, 0x33e3540,3, 0x33e3550,2, 0x33e4000,14, 0x33e4800,15, 0x33e4840,4, 0x33e4860,17, 0x33e48c0,6, 0x33e48e0,2, 0x33e48ec,3, 0x33e4900,8, 0x33e4924,1, 0x33e4a00,12, 0x33e4a40,3, 0x33e4a50,5, 0x33e4b00,2, 0x33e4b0c,3, 0x33e4b20,1, 0x33e4b40,8, 0x33e4b80,20, 0x33e4c00,1, 0x33e8004,1, 0x33e8014,19, 0x33e8104,1, 0x33e8130,4, 0x33e8180,1, 0x33e8188,5, 0x33e8200,4, 0x33e8400,4, 0x33e8420,6, 0x33e8480,4, 0x33e84c0,10, 0x33e8600,15, 0x33e8640,4, 0x33e8660,17, 0x33e86c0,6, 0x33e86e0,2, 0x33e86ec,3, 0x33e8700,8, 0x33e8724,1, 0x33e8800,20, 0x33e8880,6, 0x33e88a0,6, 0x33e88c0,1, 0x33e8900,5, 0x33e8920,2, 0x33e9000,1, 0x33e9024,1, 0x33e902c,7, 0x33e9084,1, 0x33e9094,6, 0x33e90c0,2, 0x33e9200,27, 0x33e9280,4, 0x33e92c0,25, 0x33e9340,6, 0x33e9360,2, 0x33e936c,3, 0x33e9380,8, 0x33e93a4,2, 0x33e9400,36, 0x33e9500,10, 0x33e9540,2, 0x33e9554,1, 0x33e955c,1, 0x33e9580,3, 0x33e9590,2, 0x33ea004,1, 0x33ea014,19, 0x33ea104,1, 0x33ea130,4, 0x33ea180,1, 0x33ea188,5, 0x33ea200,4, 0x33ea400,4, 0x33ea420,6, 0x33ea480,4, 0x33ea4c0,10, 0x33ea600,15, 0x33ea640,4, 0x33ea660,17, 0x33ea6c0,6, 0x33ea6e0,2, 0x33ea6ec,3, 0x33ea700,8, 0x33ea724,1, 0x33ea800,20, 0x33ea880,6, 0x33ea8a0,6, 0x33ea8c0,1, 0x33ea900,5, 0x33ea920,2, 0x33eb000,1, 0x33eb024,1, 0x33eb02c,7, 0x33eb084,1, 0x33eb094,6, 0x33eb0c0,2, 0x33eb200,27, 0x33eb280,4, 0x33eb2c0,25, 0x33eb340,6, 0x33eb360,2, 0x33eb36c,3, 0x33eb380,8, 0x33eb3a4,2, 0x33eb400,36, 0x33eb500,10, 0x33eb540,2, 0x33eb554,1, 0x33eb55c,1, 0x33eb580,3, 0x33eb590,2, 0x33ec000,14, 0x33ec800,15, 0x33ec840,4, 0x33ec860,17, 0x33ec8c0,6, 0x33ec8e0,2, 0x33ec8ec,3, 0x33ec900,8, 0x33ec924,1, 0x33eca00,12, 0x33eca40,3, 0x33eca50,5, 0x33f0000,14, 0x33f0800,4, 0x33f0880,31, 0x33f0900,1, 0x33f0908,2, 0x33f0920,5, 0x33f0940,8, 0x33f0a00,27, 0x33f0a80,4, 0x33f0ac0,25, 0x33f0b40,6, 0x33f0b60,4, 0x33f0b74,11, 0x33f0ba4,1, 0x33f0c00,3, 0x33f0c40,12, 0x33f0c80,3, 0x33f4000,14, 0x33f4800,19, 0x33f4850,13, 0x33f4888,9, 0x33f48b0,2, 0x33f4a00,27, 0x33f4a80,4, 0x33f4ac0,25, 0x33f4b40,6, 0x33f4b60,4, 0x33f4b74,11, 0x33f4ba4,1, 0x33f4c00,3, 0x33f4c40,12, 0x33f8000,2, 0x33f8080,1, 0x33f8088,15, 0x3400000,1, 0x3402000,1020, 0x3404000,1020, 0x3406000,1020, 0x3408000,65, 0x3408200,5, 0x3408220,5, 0x3408240,6, 0x3408260,6, 0x3408280,4, 0x34082a0,7, 0x34082c0,8, 0x3408300,28, 0x3408384,1, 0x340838c,3, 0x3408400,65, 0x3408600,5, 0x3408620,5, 0x3408640,6, 0x3408660,6, 0x3408680,4, 0x34086a0,7, 0x34086c0,8, 0x3408700,28, 0x3408784,1, 0x340878c,3, 0x3408800,65, 0x3408a00,5, 0x3408a20,5, 0x3408a40,6, 0x3408a60,6, 0x3408a80,4, 0x3408aa0,7, 0x3408ac0,8, 0x3408b00,28, 0x3408b84,1, 0x3408b8c,3, 0x3408c00,20, 0x3409000,3, 0x3409040,9, 0x3409080,10, 0x34090c0,2, 0x34090cc,2, 0x34090e0,3, 0x34090f0,1, 0x3409100,16, 0x3410000,8, 0x3410800,12, 0x3410844,6, 0x3410880,8, 0x34108a4,1, 0x34108c0,7, 0x34108e0,7, 0x3410900,7, 0x3410920,7, 0x3410940,3, 0x3410980,12, 0x3410a00,27, 0x3410a80,4, 0x3410ac0,25, 0x3410b40,6, 0x3410b60,4, 0x3410b74,11, 0x3410ba4,6, 0x3410c00,1, 0x3412000,75, 0x3412400,94, 0x3412580,7, 0x3412600,41, 0x3412700,2, 0x3412720,19, 0x3412800,1, 0x3412900,36, 0x3413000,3, 0x3413080,6, 0x34130a0,6, 0x34130c0,1, 0x3413100,4, 0x3413140,9, 0x3413180,2, 0x3414000,3, 0x3414010,5, 0x3414200,7, 0x3414220,6, 0x3414240,7, 0x3414260,6, 0x3414280,2, 0x341428c,2, 0x34142a0,2, 0x34142ac,2, 0x34142c0,7, 0x34142e0,7, 0x3414300,2, 0x341430c,2, 0x3414320,6, 0x3414400,3, 0x3414440,12, 0x3414600,7, 0x3414620,14, 0x3414680,9, 0x34146a8,12, 0x3414700,4, 0x3414720,2, 0x341472c,3, 0x3414800,3, 0x3418000,17, 0x3418080,3, 0x3418090,12, 0x3418100,5, 0x3418120,9, 0x3418200,1, 0x3418208,3, 0x3418400,15, 0x3418800,8, 0x3418824,1, 0x3418840,11, 0x3418880,9, 0x3418900,4, 0x3418920,16, 0x3418980,4, 0x34189a0,16, 0x3418a00,4, 0x3418a20,16, 0x3418a80,4, 0x3418aa0,16, 0x3418c00,3, 0x3418c10,3, 0x3418c20,3, 0x3418c30,3, 0x3418c40,3, 0x3418c50,1, 0x3418c80,3, 0x3418c90,3, 0x3418cc0,11, 0x3418d00,12, 0x3419000,128, 0x3419204,6, 0x3419400,27, 0x3419480,9, 0x34194c0,6, 0x34194e0,6, 0x3419804,1, 0x341980c,5, 0x3419840,24, 0x3419904,1, 0x341990c,5, 0x3419940,21, 0x3419a00,11, 0x3419c00,8, 0x3419c24,1, 0x3419c30,10, 0x3419c60,3, 0x341c000,20, 0x341c080,5, 0x341c0a0,5, 0x341c0c0,9, 0x341c100,9, 0x341c140,1, 0x341c400,13, 0x341c440,13, 0x341c480,3, 0x341c490,3, 0x341c4a0,18, 0x341c4ec,2, 0x341c500,1, 0x341c580,28, 0x341c600,7, 0x341c620,3, 0x341c800,15, 0x341c840,9, 0x341c880,6, 0x341c8a0,6, 0x341c900,4, 0x341c920,12, 0x341c980,3, 0x341c990,3, 0x341c9a0,4, 0x341c9c0,4, 0x341c9e0,3, 0x341c9f0,3, 0x341ca00,5, 0x341ca20,3, 0x341d000,3, 0x341d020,6, 0x341d040,2, 0x341d060,6, 0x341d080,33, 0x341d200,16, 0x341d244,1, 0x341d250,4, 0x341d280,1, 0x341d400,6, 0x341d440,9, 0x341d480,16, 0x341d500,4, 0x341d514,1, 0x341d800,5, 0x341d820,2, 0x341d840,5, 0x341d880,6, 0x341d8a0,1, 0x341d8c0,5, 0x341d8e0,16, 0x341da00,3, 0x341da10,3, 0x341da20,3, 0x341da30,3, 0x341da40,3, 0x341da50,1, 0x341da80,3, 0x341daa0,5, 0x341dac0,14, 0x341db00,1, 0x341dc00,27, 0x341dc80,9, 0x341dcc0,6, 0x341dce0,6, 0x341dd00,5, 0x341dd20,3, 0x341dd30,2, 0x341dd40,4, 0x341e000,14, 0x341e800,11, 0x341e830,7, 0x3420004,1, 0x3420014,19, 0x3420104,1, 0x3420130,4, 0x3420180,1, 0x3420188,5, 0x3420200,4, 0x3420400,4, 0x3420420,6, 0x3420480,4, 0x34204c0,10, 0x3420600,15, 0x3420640,4, 0x3420660,17, 0x34206c0,6, 0x34206e0,2, 0x34206ec,3, 0x3420700,8, 0x3420724,1, 0x3420800,20, 0x3420880,6, 0x34208a0,6, 0x34208c0,1, 0x3420900,5, 0x3420920,2, 0x3421004,1, 0x3421024,9, 0x3421080,2, 0x3421200,27, 0x3421280,4, 0x34212c0,25, 0x3421340,6, 0x3421360,2, 0x342136c,3, 0x3421380,8, 0x34213a4,2, 0x3421400,28, 0x3421480,10, 0x34214c0,2, 0x34214d4,1, 0x34214dc,1, 0x3421500,5, 0x3421524,1, 0x342152c,2, 0x3421540,3, 0x3421550,2, 0x3422004,1, 0x3422014,19, 0x3422104,1, 0x3422130,4, 0x3422180,1, 0x3422188,5, 0x3422200,4, 0x3422400,4, 0x3422420,6, 0x3422480,4, 0x34224c0,10, 0x3422600,15, 0x3422640,4, 0x3422660,17, 0x34226c0,6, 0x34226e0,2, 0x34226ec,3, 0x3422700,8, 0x3422724,1, 0x3422800,20, 0x3422880,6, 0x34228a0,6, 0x34228c0,1, 0x3422900,5, 0x3422920,2, 0x3423004,1, 0x3423024,9, 0x3423080,2, 0x3423200,27, 0x3423280,4, 0x34232c0,25, 0x3423340,6, 0x3423360,2, 0x342336c,3, 0x3423380,8, 0x34233a4,2, 0x3423400,28, 0x3423480,10, 0x34234c0,2, 0x34234d4,1, 0x34234dc,1, 0x3423500,5, 0x3423524,1, 0x342352c,2, 0x3423540,3, 0x3423550,2, 0x3424000,14, 0x3424800,15, 0x3424840,4, 0x3424860,17, 0x34248c0,6, 0x34248e0,2, 0x34248ec,3, 0x3424900,8, 0x3424924,1, 0x3424a00,12, 0x3424a40,3, 0x3424a50,5, 0x3424b00,2, 0x3424b0c,3, 0x3424b20,1, 0x3424b40,8, 0x3424b80,20, 0x3424c00,1, 0x3428004,1, 0x3428014,19, 0x3428104,1, 0x3428130,4, 0x3428180,1, 0x3428188,5, 0x3428200,4, 0x3428400,4, 0x3428420,6, 0x3428480,4, 0x34284c0,10, 0x3428600,15, 0x3428640,4, 0x3428660,17, 0x34286c0,6, 0x34286e0,2, 0x34286ec,3, 0x3428700,8, 0x3428724,1, 0x3428800,20, 0x3428880,6, 0x34288a0,6, 0x34288c0,1, 0x3428900,5, 0x3428920,2, 0x3429000,1, 0x3429024,1, 0x342902c,7, 0x3429084,1, 0x3429094,6, 0x34290c0,2, 0x3429200,27, 0x3429280,4, 0x34292c0,25, 0x3429340,6, 0x3429360,2, 0x342936c,3, 0x3429380,8, 0x34293a4,2, 0x3429400,36, 0x3429500,10, 0x3429540,2, 0x3429554,1, 0x342955c,1, 0x3429580,3, 0x3429590,2, 0x342a004,1, 0x342a014,19, 0x342a104,1, 0x342a130,4, 0x342a180,1, 0x342a188,5, 0x342a200,4, 0x342a400,4, 0x342a420,6, 0x342a480,4, 0x342a4c0,10, 0x342a600,15, 0x342a640,4, 0x342a660,17, 0x342a6c0,6, 0x342a6e0,2, 0x342a6ec,3, 0x342a700,8, 0x342a724,1, 0x342a800,20, 0x342a880,6, 0x342a8a0,6, 0x342a8c0,1, 0x342a900,5, 0x342a920,2, 0x342b000,1, 0x342b024,1, 0x342b02c,7, 0x342b084,1, 0x342b094,6, 0x342b0c0,2, 0x342b200,27, 0x342b280,4, 0x342b2c0,25, 0x342b340,6, 0x342b360,2, 0x342b36c,3, 0x342b380,8, 0x342b3a4,2, 0x342b400,36, 0x342b500,10, 0x342b540,2, 0x342b554,1, 0x342b55c,1, 0x342b580,3, 0x342b590,2, 0x342c000,14, 0x342c800,15, 0x342c840,4, 0x342c860,17, 0x342c8c0,6, 0x342c8e0,2, 0x342c8ec,3, 0x342c900,8, 0x342c924,1, 0x342ca00,12, 0x342ca40,3, 0x342ca50,5, 0x3430000,14, 0x3430800,4, 0x3430880,31, 0x3430900,1, 0x3430908,2, 0x3430920,5, 0x3430940,8, 0x3430a00,27, 0x3430a80,4, 0x3430ac0,25, 0x3430b40,6, 0x3430b60,4, 0x3430b74,11, 0x3430ba4,1, 0x3430c00,3, 0x3430c40,12, 0x3430c80,3, 0x3434000,14, 0x3434800,19, 0x3434850,13, 0x3434888,9, 0x34348b0,2, 0x3434a00,27, 0x3434a80,4, 0x3434ac0,25, 0x3434b40,6, 0x3434b60,4, 0x3434b74,11, 0x3434ba4,1, 0x3434c00,3, 0x3434c40,12, 0x3438000,2, 0x3438080,1, 0x3438088,15, 0x3440000,1, 0x3442000,1020, 0x3444000,1020, 0x3446000,1020, 0x3448000,65, 0x3448200,5, 0x3448220,5, 0x3448240,6, 0x3448260,6, 0x3448280,4, 0x34482a0,7, 0x34482c0,8, 0x3448300,28, 0x3448384,1, 0x344838c,3, 0x3448400,65, 0x3448600,5, 0x3448620,5, 0x3448640,6, 0x3448660,6, 0x3448680,4, 0x34486a0,7, 0x34486c0,8, 0x3448700,28, 0x3448784,1, 0x344878c,3, 0x3448800,65, 0x3448a00,5, 0x3448a20,5, 0x3448a40,6, 0x3448a60,6, 0x3448a80,4, 0x3448aa0,7, 0x3448ac0,8, 0x3448b00,28, 0x3448b84,1, 0x3448b8c,3, 0x3448c00,20, 0x3449000,3, 0x3449040,9, 0x3449080,10, 0x34490c0,2, 0x34490cc,2, 0x34490e0,3, 0x34490f0,1, 0x3449100,16, 0x3450000,8, 0x3450800,12, 0x3450844,6, 0x3450880,8, 0x34508a4,1, 0x34508c0,7, 0x34508e0,7, 0x3450900,7, 0x3450920,7, 0x3450940,3, 0x3450980,12, 0x3450a00,27, 0x3450a80,4, 0x3450ac0,25, 0x3450b40,6, 0x3450b60,4, 0x3450b74,11, 0x3450ba4,6, 0x3450c00,1, 0x3452000,75, 0x3452400,94, 0x3452580,7, 0x3452600,41, 0x3452700,2, 0x3452720,19, 0x3452800,1, 0x3452900,36, 0x3453000,3, 0x3453080,6, 0x34530a0,6, 0x34530c0,1, 0x3453100,4, 0x3453140,9, 0x3453180,2, 0x3454000,3, 0x3454010,5, 0x3454200,7, 0x3454220,6, 0x3454240,7, 0x3454260,6, 0x3454280,2, 0x345428c,2, 0x34542a0,2, 0x34542ac,2, 0x34542c0,7, 0x34542e0,7, 0x3454300,2, 0x345430c,2, 0x3454320,6, 0x3454400,3, 0x3454440,12, 0x3454600,7, 0x3454620,14, 0x3454680,9, 0x34546a8,12, 0x3454700,4, 0x3454720,2, 0x345472c,3, 0x3454800,3, 0x3458000,17, 0x3458080,3, 0x3458090,12, 0x3458100,5, 0x3458120,9, 0x3458200,1, 0x3458208,3, 0x3458400,15, 0x3458800,8, 0x3458824,1, 0x3458840,11, 0x3458880,9, 0x3458900,4, 0x3458920,16, 0x3458980,4, 0x34589a0,16, 0x3458a00,4, 0x3458a20,16, 0x3458a80,4, 0x3458aa0,16, 0x3458c00,3, 0x3458c10,3, 0x3458c20,3, 0x3458c30,3, 0x3458c40,3, 0x3458c50,1, 0x3458c80,3, 0x3458c90,3, 0x3458cc0,11, 0x3458d00,12, 0x3459000,128, 0x3459204,6, 0x3459400,27, 0x3459480,9, 0x34594c0,6, 0x34594e0,6, 0x3459804,1, 0x345980c,5, 0x3459840,24, 0x3459904,1, 0x345990c,5, 0x3459940,21, 0x3459a00,11, 0x3459c00,8, 0x3459c24,1, 0x3459c30,10, 0x3459c60,3, 0x345c000,20, 0x345c080,5, 0x345c0a0,5, 0x345c0c0,9, 0x345c100,9, 0x345c140,1, 0x345c400,13, 0x345c440,13, 0x345c480,3, 0x345c490,3, 0x345c4a0,18, 0x345c4ec,2, 0x345c500,1, 0x345c580,28, 0x345c600,7, 0x345c620,3, 0x345c800,15, 0x345c840,9, 0x345c880,6, 0x345c8a0,6, 0x345c900,4, 0x345c920,12, 0x345c980,3, 0x345c990,3, 0x345c9a0,4, 0x345c9c0,4, 0x345c9e0,3, 0x345c9f0,3, 0x345ca00,5, 0x345ca20,3, 0x345d000,3, 0x345d020,6, 0x345d040,2, 0x345d060,6, 0x345d080,33, 0x345d200,16, 0x345d244,1, 0x345d250,4, 0x345d280,1, 0x345d400,6, 0x345d440,9, 0x345d480,16, 0x345d500,4, 0x345d514,1, 0x345d800,5, 0x345d820,2, 0x345d840,5, 0x345d880,6, 0x345d8a0,1, 0x345d8c0,5, 0x345d8e0,16, 0x345da00,3, 0x345da10,3, 0x345da20,3, 0x345da30,3, 0x345da40,3, 0x345da50,1, 0x345da80,3, 0x345daa0,5, 0x345dac0,14, 0x345db00,1, 0x345dc00,27, 0x345dc80,9, 0x345dcc0,6, 0x345dce0,6, 0x345dd00,5, 0x345dd20,3, 0x345dd30,2, 0x345dd40,4, 0x345e000,14, 0x345e800,11, 0x345e830,7, 0x3460004,1, 0x3460014,19, 0x3460104,1, 0x3460130,4, 0x3460180,1, 0x3460188,5, 0x3460200,4, 0x3460400,4, 0x3460420,6, 0x3460480,4, 0x34604c0,10, 0x3460600,15, 0x3460640,4, 0x3460660,17, 0x34606c0,6, 0x34606e0,2, 0x34606ec,3, 0x3460700,8, 0x3460724,1, 0x3460800,20, 0x3460880,6, 0x34608a0,6, 0x34608c0,1, 0x3460900,5, 0x3460920,2, 0x3461004,1, 0x3461024,9, 0x3461080,2, 0x3461200,27, 0x3461280,4, 0x34612c0,25, 0x3461340,6, 0x3461360,2, 0x346136c,3, 0x3461380,8, 0x34613a4,2, 0x3461400,28, 0x3461480,10, 0x34614c0,2, 0x34614d4,1, 0x34614dc,1, 0x3461500,5, 0x3461524,1, 0x346152c,2, 0x3461540,3, 0x3461550,2, 0x3462004,1, 0x3462014,19, 0x3462104,1, 0x3462130,4, 0x3462180,1, 0x3462188,5, 0x3462200,4, 0x3462400,4, 0x3462420,6, 0x3462480,4, 0x34624c0,10, 0x3462600,15, 0x3462640,4, 0x3462660,17, 0x34626c0,6, 0x34626e0,2, 0x34626ec,3, 0x3462700,8, 0x3462724,1, 0x3462800,20, 0x3462880,6, 0x34628a0,6, 0x34628c0,1, 0x3462900,5, 0x3462920,2, 0x3463004,1, 0x3463024,9, 0x3463080,2, 0x3463200,27, 0x3463280,4, 0x34632c0,25, 0x3463340,6, 0x3463360,2, 0x346336c,3, 0x3463380,8, 0x34633a4,2, 0x3463400,28, 0x3463480,10, 0x34634c0,2, 0x34634d4,1, 0x34634dc,1, 0x3463500,5, 0x3463524,1, 0x346352c,2, 0x3463540,3, 0x3463550,2, 0x3464000,14, 0x3464800,15, 0x3464840,4, 0x3464860,17, 0x34648c0,6, 0x34648e0,2, 0x34648ec,3, 0x3464900,8, 0x3464924,1, 0x3464a00,12, 0x3464a40,3, 0x3464a50,5, 0x3464b00,2, 0x3464b0c,3, 0x3464b20,1, 0x3464b40,8, 0x3464b80,20, 0x3464c00,1, 0x3468004,1, 0x3468014,19, 0x3468104,1, 0x3468130,4, 0x3468180,1, 0x3468188,5, 0x3468200,4, 0x3468400,4, 0x3468420,6, 0x3468480,4, 0x34684c0,10, 0x3468600,15, 0x3468640,4, 0x3468660,17, 0x34686c0,6, 0x34686e0,2, 0x34686ec,3, 0x3468700,8, 0x3468724,1, 0x3468800,20, 0x3468880,6, 0x34688a0,6, 0x34688c0,1, 0x3468900,5, 0x3468920,2, 0x3469000,1, 0x3469024,1, 0x346902c,7, 0x3469084,1, 0x3469094,6, 0x34690c0,2, 0x3469200,27, 0x3469280,4, 0x34692c0,25, 0x3469340,6, 0x3469360,2, 0x346936c,3, 0x3469380,8, 0x34693a4,2, 0x3469400,36, 0x3469500,10, 0x3469540,2, 0x3469554,1, 0x346955c,1, 0x3469580,3, 0x3469590,2, 0x346a004,1, 0x346a014,19, 0x346a104,1, 0x346a130,4, 0x346a180,1, 0x346a188,5, 0x346a200,4, 0x346a400,4, 0x346a420,6, 0x346a480,4, 0x346a4c0,10, 0x346a600,15, 0x346a640,4, 0x346a660,17, 0x346a6c0,6, 0x346a6e0,2, 0x346a6ec,3, 0x346a700,8, 0x346a724,1, 0x346a800,20, 0x346a880,6, 0x346a8a0,6, 0x346a8c0,1, 0x346a900,5, 0x346a920,2, 0x346b000,1, 0x346b024,1, 0x346b02c,7, 0x346b084,1, 0x346b094,6, 0x346b0c0,2, 0x346b200,27, 0x346b280,4, 0x346b2c0,25, 0x346b340,6, 0x346b360,2, 0x346b36c,3, 0x346b380,8, 0x346b3a4,2, 0x346b400,36, 0x346b500,10, 0x346b540,2, 0x346b554,1, 0x346b55c,1, 0x346b580,3, 0x346b590,2, 0x346c000,14, 0x346c800,15, 0x346c840,4, 0x346c860,17, 0x346c8c0,6, 0x346c8e0,2, 0x346c8ec,3, 0x346c900,8, 0x346c924,1, 0x346ca00,12, 0x346ca40,3, 0x346ca50,5, 0x3470000,14, 0x3470800,4, 0x3470880,31, 0x3470900,1, 0x3470908,2, 0x3470920,5, 0x3470940,8, 0x3470a00,27, 0x3470a80,4, 0x3470ac0,25, 0x3470b40,6, 0x3470b60,4, 0x3470b74,11, 0x3470ba4,1, 0x3470c00,3, 0x3470c40,12, 0x3470c80,3, 0x3474000,14, 0x3474800,19, 0x3474850,13, 0x3474888,9, 0x34748b0,2, 0x3474a00,27, 0x3474a80,4, 0x3474ac0,25, 0x3474b40,6, 0x3474b60,4, 0x3474b74,11, 0x3474ba4,1, 0x3474c00,3, 0x3474c40,12, 0x3478000,2, 0x3478080,1, 0x3478088,15, 0x3480000,1, 0x3482000,1020, 0x3484000,1020, 0x3486000,1020, 0x3488000,65, 0x3488200,5, 0x3488220,5, 0x3488240,6, 0x3488260,6, 0x3488280,4, 0x34882a0,7, 0x34882c0,8, 0x3488300,28, 0x3488384,1, 0x348838c,3, 0x3488400,65, 0x3488600,5, 0x3488620,5, 0x3488640,6, 0x3488660,6, 0x3488680,4, 0x34886a0,7, 0x34886c0,8, 0x3488700,28, 0x3488784,1, 0x348878c,3, 0x3488800,65, 0x3488a00,5, 0x3488a20,5, 0x3488a40,6, 0x3488a60,6, 0x3488a80,4, 0x3488aa0,7, 0x3488ac0,8, 0x3488b00,28, 0x3488b84,1, 0x3488b8c,3, 0x3488c00,20, 0x3489000,3, 0x3489040,9, 0x3489080,10, 0x34890c0,2, 0x34890cc,2, 0x34890e0,3, 0x34890f0,1, 0x3489100,16, 0x3490000,8, 0x3490800,12, 0x3490844,6, 0x3490880,8, 0x34908a4,1, 0x34908c0,7, 0x34908e0,7, 0x3490900,7, 0x3490920,7, 0x3490940,3, 0x3490980,12, 0x3490a00,27, 0x3490a80,4, 0x3490ac0,25, 0x3490b40,6, 0x3490b60,4, 0x3490b74,11, 0x3490ba4,6, 0x3490c00,1, 0x3492000,75, 0x3492400,94, 0x3492580,7, 0x3492600,41, 0x3492700,2, 0x3492720,19, 0x3492800,1, 0x3492900,36, 0x3493000,3, 0x3493080,6, 0x34930a0,6, 0x34930c0,1, 0x3493100,4, 0x3493140,9, 0x3493180,2, 0x3494000,3, 0x3494010,5, 0x3494200,7, 0x3494220,6, 0x3494240,7, 0x3494260,6, 0x3494280,2, 0x349428c,2, 0x34942a0,2, 0x34942ac,2, 0x34942c0,7, 0x34942e0,7, 0x3494300,2, 0x349430c,2, 0x3494320,6, 0x3494400,3, 0x3494440,12, 0x3494600,7, 0x3494620,14, 0x3494680,9, 0x34946a8,12, 0x3494700,4, 0x3494720,2, 0x349472c,3, 0x3494800,3, 0x3498000,17, 0x3498080,3, 0x3498090,12, 0x3498100,5, 0x3498120,9, 0x3498200,1, 0x3498208,3, 0x3498400,15, 0x3498800,8, 0x3498824,1, 0x3498840,11, 0x3498880,9, 0x3498900,4, 0x3498920,16, 0x3498980,4, 0x34989a0,16, 0x3498a00,4, 0x3498a20,16, 0x3498a80,4, 0x3498aa0,16, 0x3498c00,3, 0x3498c10,3, 0x3498c20,3, 0x3498c30,3, 0x3498c40,3, 0x3498c50,1, 0x3498c80,3, 0x3498c90,3, 0x3498cc0,11, 0x3498d00,12, 0x3499000,128, 0x3499204,6, 0x3499400,27, 0x3499480,9, 0x34994c0,6, 0x34994e0,6, 0x3499804,1, 0x349980c,5, 0x3499840,24, 0x3499904,1, 0x349990c,5, 0x3499940,21, 0x3499a00,11, 0x3499c00,8, 0x3499c24,1, 0x3499c30,10, 0x3499c60,3, 0x349c000,20, 0x349c080,5, 0x349c0a0,5, 0x349c0c0,9, 0x349c100,9, 0x349c140,1, 0x349c400,13, 0x349c440,13, 0x349c480,3, 0x349c490,3, 0x349c4a0,18, 0x349c4ec,2, 0x349c500,1, 0x349c580,28, 0x349c600,7, 0x349c620,3, 0x349c800,15, 0x349c840,9, 0x349c880,6, 0x349c8a0,6, 0x349c900,4, 0x349c920,12, 0x349c980,3, 0x349c990,3, 0x349c9a0,4, 0x349c9c0,4, 0x349c9e0,3, 0x349c9f0,3, 0x349ca00,5, 0x349ca20,3, 0x349d000,3, 0x349d020,6, 0x349d040,2, 0x349d060,6, 0x349d080,33, 0x349d200,16, 0x349d244,1, 0x349d250,4, 0x349d280,1, 0x349d400,6, 0x349d440,9, 0x349d480,16, 0x349d500,4, 0x349d514,1, 0x349d800,5, 0x349d820,2, 0x349d840,5, 0x349d880,6, 0x349d8a0,1, 0x349d8c0,5, 0x349d8e0,16, 0x349da00,3, 0x349da10,3, 0x349da20,3, 0x349da30,3, 0x349da40,3, 0x349da50,1, 0x349da80,3, 0x349daa0,5, 0x349dac0,14, 0x349db00,1, 0x349dc00,27, 0x349dc80,9, 0x349dcc0,6, 0x349dce0,6, 0x349dd00,5, 0x349dd20,3, 0x349dd30,2, 0x349dd40,4, 0x349e000,14, 0x349e800,11, 0x349e830,7, 0x34a0004,1, 0x34a0014,19, 0x34a0104,1, 0x34a0130,4, 0x34a0180,1, 0x34a0188,5, 0x34a0200,4, 0x34a0400,4, 0x34a0420,6, 0x34a0480,4, 0x34a04c0,10, 0x34a0600,15, 0x34a0640,4, 0x34a0660,17, 0x34a06c0,6, 0x34a06e0,2, 0x34a06ec,3, 0x34a0700,8, 0x34a0724,1, 0x34a0800,20, 0x34a0880,6, 0x34a08a0,6, 0x34a08c0,1, 0x34a0900,5, 0x34a0920,2, 0x34a1004,1, 0x34a1024,9, 0x34a1080,2, 0x34a1200,27, 0x34a1280,4, 0x34a12c0,25, 0x34a1340,6, 0x34a1360,2, 0x34a136c,3, 0x34a1380,8, 0x34a13a4,2, 0x34a1400,28, 0x34a1480,10, 0x34a14c0,2, 0x34a14d4,1, 0x34a14dc,1, 0x34a1500,5, 0x34a1524,1, 0x34a152c,2, 0x34a1540,3, 0x34a1550,2, 0x34a2004,1, 0x34a2014,19, 0x34a2104,1, 0x34a2130,4, 0x34a2180,1, 0x34a2188,5, 0x34a2200,4, 0x34a2400,4, 0x34a2420,6, 0x34a2480,4, 0x34a24c0,10, 0x34a2600,15, 0x34a2640,4, 0x34a2660,17, 0x34a26c0,6, 0x34a26e0,2, 0x34a26ec,3, 0x34a2700,8, 0x34a2724,1, 0x34a2800,20, 0x34a2880,6, 0x34a28a0,6, 0x34a28c0,1, 0x34a2900,5, 0x34a2920,2, 0x34a3004,1, 0x34a3024,9, 0x34a3080,2, 0x34a3200,27, 0x34a3280,4, 0x34a32c0,25, 0x34a3340,6, 0x34a3360,2, 0x34a336c,3, 0x34a3380,8, 0x34a33a4,2, 0x34a3400,28, 0x34a3480,10, 0x34a34c0,2, 0x34a34d4,1, 0x34a34dc,1, 0x34a3500,5, 0x34a3524,1, 0x34a352c,2, 0x34a3540,3, 0x34a3550,2, 0x34a4000,14, 0x34a4800,15, 0x34a4840,4, 0x34a4860,17, 0x34a48c0,6, 0x34a48e0,2, 0x34a48ec,3, 0x34a4900,8, 0x34a4924,1, 0x34a4a00,12, 0x34a4a40,3, 0x34a4a50,5, 0x34a4b00,2, 0x34a4b0c,3, 0x34a4b20,1, 0x34a4b40,8, 0x34a4b80,20, 0x34a4c00,1, 0x34a8004,1, 0x34a8014,19, 0x34a8104,1, 0x34a8130,4, 0x34a8180,1, 0x34a8188,5, 0x34a8200,4, 0x34a8400,4, 0x34a8420,6, 0x34a8480,4, 0x34a84c0,10, 0x34a8600,15, 0x34a8640,4, 0x34a8660,17, 0x34a86c0,6, 0x34a86e0,2, 0x34a86ec,3, 0x34a8700,8, 0x34a8724,1, 0x34a8800,20, 0x34a8880,6, 0x34a88a0,6, 0x34a88c0,1, 0x34a8900,5, 0x34a8920,2, 0x34a9000,1, 0x34a9024,1, 0x34a902c,7, 0x34a9084,1, 0x34a9094,6, 0x34a90c0,2, 0x34a9200,27, 0x34a9280,4, 0x34a92c0,25, 0x34a9340,6, 0x34a9360,2, 0x34a936c,3, 0x34a9380,8, 0x34a93a4,2, 0x34a9400,36, 0x34a9500,10, 0x34a9540,2, 0x34a9554,1, 0x34a955c,1, 0x34a9580,3, 0x34a9590,2, 0x34aa004,1, 0x34aa014,19, 0x34aa104,1, 0x34aa130,4, 0x34aa180,1, 0x34aa188,5, 0x34aa200,4, 0x34aa400,4, 0x34aa420,6, 0x34aa480,4, 0x34aa4c0,10, 0x34aa600,15, 0x34aa640,4, 0x34aa660,17, 0x34aa6c0,6, 0x34aa6e0,2, 0x34aa6ec,3, 0x34aa700,8, 0x34aa724,1, 0x34aa800,20, 0x34aa880,6, 0x34aa8a0,6, 0x34aa8c0,1, 0x34aa900,5, 0x34aa920,2, 0x34ab000,1, 0x34ab024,1, 0x34ab02c,7, 0x34ab084,1, 0x34ab094,6, 0x34ab0c0,2, 0x34ab200,27, 0x34ab280,4, 0x34ab2c0,25, 0x34ab340,6, 0x34ab360,2, 0x34ab36c,3, 0x34ab380,8, 0x34ab3a4,2, 0x34ab400,36, 0x34ab500,10, 0x34ab540,2, 0x34ab554,1, 0x34ab55c,1, 0x34ab580,3, 0x34ab590,2, 0x34ac000,14, 0x34ac800,15, 0x34ac840,4, 0x34ac860,17, 0x34ac8c0,6, 0x34ac8e0,2, 0x34ac8ec,3, 0x34ac900,8, 0x34ac924,1, 0x34aca00,12, 0x34aca40,3, 0x34aca50,5, 0x34b0000,14, 0x34b0800,4, 0x34b0880,31, 0x34b0900,1, 0x34b0908,2, 0x34b0920,5, 0x34b0940,8, 0x34b0a00,27, 0x34b0a80,4, 0x34b0ac0,25, 0x34b0b40,6, 0x34b0b60,4, 0x34b0b74,11, 0x34b0ba4,1, 0x34b0c00,3, 0x34b0c40,12, 0x34b0c80,3, 0x34b4000,14, 0x34b4800,19, 0x34b4850,13, 0x34b4888,9, 0x34b48b0,2, 0x34b4a00,27, 0x34b4a80,4, 0x34b4ac0,25, 0x34b4b40,6, 0x34b4b60,4, 0x34b4b74,11, 0x34b4ba4,1, 0x34b4c00,3, 0x34b4c40,12, 0x34b8000,2, 0x34b8080,1, 0x34b8088,15, 0x34c0000,1, 0x34c2000,1020, 0x34c4000,1020, 0x34c6000,1020, 0x34c8000,65, 0x34c8200,5, 0x34c8220,5, 0x34c8240,6, 0x34c8260,6, 0x34c8280,4, 0x34c82a0,7, 0x34c82c0,8, 0x34c8300,28, 0x34c8384,1, 0x34c838c,3, 0x34c8400,65, 0x34c8600,5, 0x34c8620,5, 0x34c8640,6, 0x34c8660,6, 0x34c8680,4, 0x34c86a0,7, 0x34c86c0,8, 0x34c8700,28, 0x34c8784,1, 0x34c878c,3, 0x34c8800,65, 0x34c8a00,5, 0x34c8a20,5, 0x34c8a40,6, 0x34c8a60,6, 0x34c8a80,4, 0x34c8aa0,7, 0x34c8ac0,8, 0x34c8b00,28, 0x34c8b84,1, 0x34c8b8c,3, 0x34c8c00,20, 0x34c9000,3, 0x34c9040,9, 0x34c9080,10, 0x34c90c0,2, 0x34c90cc,2, 0x34c90e0,3, 0x34c90f0,1, 0x34c9100,16, 0x34d0000,8, 0x34d0800,12, 0x34d0844,6, 0x34d0880,8, 0x34d08a4,1, 0x34d08c0,7, 0x34d08e0,7, 0x34d0900,7, 0x34d0920,7, 0x34d0940,3, 0x34d0980,12, 0x34d0a00,27, 0x34d0a80,4, 0x34d0ac0,25, 0x34d0b40,6, 0x34d0b60,4, 0x34d0b74,11, 0x34d0ba4,6, 0x34d0c00,1, 0x34d2000,75, 0x34d2400,94, 0x34d2580,7, 0x34d2600,41, 0x34d2700,2, 0x34d2720,19, 0x34d2800,1, 0x34d2900,36, 0x34d3000,3, 0x34d3080,6, 0x34d30a0,6, 0x34d30c0,1, 0x34d3100,4, 0x34d3140,9, 0x34d3180,2, 0x34d4000,3, 0x34d4010,5, 0x34d4200,7, 0x34d4220,6, 0x34d4240,7, 0x34d4260,6, 0x34d4280,2, 0x34d428c,2, 0x34d42a0,2, 0x34d42ac,2, 0x34d42c0,7, 0x34d42e0,7, 0x34d4300,2, 0x34d430c,2, 0x34d4320,6, 0x34d4400,3, 0x34d4440,12, 0x34d4600,7, 0x34d4620,14, 0x34d4680,9, 0x34d46a8,12, 0x34d4700,4, 0x34d4720,2, 0x34d472c,3, 0x34d4800,3, 0x34d8000,17, 0x34d8080,3, 0x34d8090,12, 0x34d8100,5, 0x34d8120,9, 0x34d8200,1, 0x34d8208,3, 0x34d8400,15, 0x34d8800,8, 0x34d8824,1, 0x34d8840,11, 0x34d8880,9, 0x34d8900,4, 0x34d8920,16, 0x34d8980,4, 0x34d89a0,16, 0x34d8a00,4, 0x34d8a20,16, 0x34d8a80,4, 0x34d8aa0,16, 0x34d8c00,3, 0x34d8c10,3, 0x34d8c20,3, 0x34d8c30,3, 0x34d8c40,3, 0x34d8c50,1, 0x34d8c80,3, 0x34d8c90,3, 0x34d8cc0,11, 0x34d8d00,12, 0x34d9000,128, 0x34d9204,6, 0x34d9400,27, 0x34d9480,9, 0x34d94c0,6, 0x34d94e0,6, 0x34d9804,1, 0x34d980c,5, 0x34d9840,24, 0x34d9904,1, 0x34d990c,5, 0x34d9940,21, 0x34d9a00,11, 0x34d9c00,8, 0x34d9c24,1, 0x34d9c30,10, 0x34d9c60,3, 0x34dc000,20, 0x34dc080,5, 0x34dc0a0,5, 0x34dc0c0,9, 0x34dc100,9, 0x34dc140,1, 0x34dc400,13, 0x34dc440,13, 0x34dc480,3, 0x34dc490,3, 0x34dc4a0,18, 0x34dc4ec,2, 0x34dc500,1, 0x34dc580,28, 0x34dc600,7, 0x34dc620,3, 0x34dc800,15, 0x34dc840,9, 0x34dc880,6, 0x34dc8a0,6, 0x34dc900,4, 0x34dc920,12, 0x34dc980,3, 0x34dc990,3, 0x34dc9a0,4, 0x34dc9c0,4, 0x34dc9e0,3, 0x34dc9f0,3, 0x34dca00,5, 0x34dca20,3, 0x34dd000,3, 0x34dd020,6, 0x34dd040,2, 0x34dd060,6, 0x34dd080,33, 0x34dd200,16, 0x34dd244,1, 0x34dd250,4, 0x34dd280,1, 0x34dd400,6, 0x34dd440,9, 0x34dd480,16, 0x34dd500,4, 0x34dd514,1, 0x34dd800,5, 0x34dd820,2, 0x34dd840,5, 0x34dd880,6, 0x34dd8a0,1, 0x34dd8c0,5, 0x34dd8e0,16, 0x34dda00,3, 0x34dda10,3, 0x34dda20,3, 0x34dda30,3, 0x34dda40,3, 0x34dda50,1, 0x34dda80,3, 0x34ddaa0,5, 0x34ddac0,14, 0x34ddb00,1, 0x34ddc00,27, 0x34ddc80,9, 0x34ddcc0,6, 0x34ddce0,6, 0x34ddd00,5, 0x34ddd20,3, 0x34ddd30,2, 0x34ddd40,4, 0x34de000,14, 0x34de800,11, 0x34de830,7, 0x34e0004,1, 0x34e0014,19, 0x34e0104,1, 0x34e0130,4, 0x34e0180,1, 0x34e0188,5, 0x34e0200,4, 0x34e0400,4, 0x34e0420,6, 0x34e0480,4, 0x34e04c0,10, 0x34e0600,15, 0x34e0640,4, 0x34e0660,17, 0x34e06c0,6, 0x34e06e0,2, 0x34e06ec,3, 0x34e0700,8, 0x34e0724,1, 0x34e0800,20, 0x34e0880,6, 0x34e08a0,6, 0x34e08c0,1, 0x34e0900,5, 0x34e0920,2, 0x34e1004,1, 0x34e1024,9, 0x34e1080,2, 0x34e1200,27, 0x34e1280,4, 0x34e12c0,25, 0x34e1340,6, 0x34e1360,2, 0x34e136c,3, 0x34e1380,8, 0x34e13a4,2, 0x34e1400,28, 0x34e1480,10, 0x34e14c0,2, 0x34e14d4,1, 0x34e14dc,1, 0x34e1500,5, 0x34e1524,1, 0x34e152c,2, 0x34e1540,3, 0x34e1550,2, 0x34e2004,1, 0x34e2014,19, 0x34e2104,1, 0x34e2130,4, 0x34e2180,1, 0x34e2188,5, 0x34e2200,4, 0x34e2400,4, 0x34e2420,6, 0x34e2480,4, 0x34e24c0,10, 0x34e2600,15, 0x34e2640,4, 0x34e2660,17, 0x34e26c0,6, 0x34e26e0,2, 0x34e26ec,3, 0x34e2700,8, 0x34e2724,1, 0x34e2800,20, 0x34e2880,6, 0x34e28a0,6, 0x34e28c0,1, 0x34e2900,5, 0x34e2920,2, 0x34e3004,1, 0x34e3024,9, 0x34e3080,2, 0x34e3200,27, 0x34e3280,4, 0x34e32c0,25, 0x34e3340,6, 0x34e3360,2, 0x34e336c,3, 0x34e3380,8, 0x34e33a4,2, 0x34e3400,28, 0x34e3480,10, 0x34e34c0,2, 0x34e34d4,1, 0x34e34dc,1, 0x34e3500,5, 0x34e3524,1, 0x34e352c,2, 0x34e3540,3, 0x34e3550,2, 0x34e4000,14, 0x34e4800,15, 0x34e4840,4, 0x34e4860,17, 0x34e48c0,6, 0x34e48e0,2, 0x34e48ec,3, 0x34e4900,8, 0x34e4924,1, 0x34e4a00,12, 0x34e4a40,3, 0x34e4a50,5, 0x34e4b00,2, 0x34e4b0c,3, 0x34e4b20,1, 0x34e4b40,8, 0x34e4b80,20, 0x34e4c00,1, 0x34e8004,1, 0x34e8014,19, 0x34e8104,1, 0x34e8130,4, 0x34e8180,1, 0x34e8188,5, 0x34e8200,4, 0x34e8400,4, 0x34e8420,6, 0x34e8480,4, 0x34e84c0,10, 0x34e8600,15, 0x34e8640,4, 0x34e8660,17, 0x34e86c0,6, 0x34e86e0,2, 0x34e86ec,3, 0x34e8700,8, 0x34e8724,1, 0x34e8800,20, 0x34e8880,6, 0x34e88a0,6, 0x34e88c0,1, 0x34e8900,5, 0x34e8920,2, 0x34e9000,1, 0x34e9024,1, 0x34e902c,7, 0x34e9084,1, 0x34e9094,6, 0x34e90c0,2, 0x34e9200,27, 0x34e9280,4, 0x34e92c0,25, 0x34e9340,6, 0x34e9360,2, 0x34e936c,3, 0x34e9380,8, 0x34e93a4,2, 0x34e9400,36, 0x34e9500,10, 0x34e9540,2, 0x34e9554,1, 0x34e955c,1, 0x34e9580,3, 0x34e9590,2, 0x34ea004,1, 0x34ea014,19, 0x34ea104,1, 0x34ea130,4, 0x34ea180,1, 0x34ea188,5, 0x34ea200,4, 0x34ea400,4, 0x34ea420,6, 0x34ea480,4, 0x34ea4c0,10, 0x34ea600,15, 0x34ea640,4, 0x34ea660,17, 0x34ea6c0,6, 0x34ea6e0,2, 0x34ea6ec,3, 0x34ea700,8, 0x34ea724,1, 0x34ea800,20, 0x34ea880,6, 0x34ea8a0,6, 0x34ea8c0,1, 0x34ea900,5, 0x34ea920,2, 0x34eb000,1, 0x34eb024,1, 0x34eb02c,7, 0x34eb084,1, 0x34eb094,6, 0x34eb0c0,2, 0x34eb200,27, 0x34eb280,4, 0x34eb2c0,25, 0x34eb340,6, 0x34eb360,2, 0x34eb36c,3, 0x34eb380,8, 0x34eb3a4,2, 0x34eb400,36, 0x34eb500,10, 0x34eb540,2, 0x34eb554,1, 0x34eb55c,1, 0x34eb580,3, 0x34eb590,2, 0x34ec000,14, 0x34ec800,15, 0x34ec840,4, 0x34ec860,17, 0x34ec8c0,6, 0x34ec8e0,2, 0x34ec8ec,3, 0x34ec900,8, 0x34ec924,1, 0x34eca00,12, 0x34eca40,3, 0x34eca50,5, 0x34f0000,14, 0x34f0800,4, 0x34f0880,31, 0x34f0900,1, 0x34f0908,2, 0x34f0920,5, 0x34f0940,8, 0x34f0a00,27, 0x34f0a80,4, 0x34f0ac0,25, 0x34f0b40,6, 0x34f0b60,4, 0x34f0b74,11, 0x34f0ba4,1, 0x34f0c00,3, 0x34f0c40,12, 0x34f0c80,3, 0x34f4000,14, 0x34f4800,19, 0x34f4850,13, 0x34f4888,9, 0x34f48b0,2, 0x34f4a00,27, 0x34f4a80,4, 0x34f4ac0,25, 0x34f4b40,6, 0x34f4b60,4, 0x34f4b74,11, 0x34f4ba4,1, 0x34f4c00,3, 0x34f4c40,12, 0x34f8000,2, 0x34f8080,1, 0x34f8088,15, 0x3500000,1, 0x3502000,1020, 0x3504000,1020, 0x3506000,1020, 0x3508000,65, 0x3508200,5, 0x3508220,5, 0x3508240,6, 0x3508260,6, 0x3508280,4, 0x35082a0,7, 0x35082c0,8, 0x3508300,28, 0x3508384,1, 0x350838c,3, 0x3508400,65, 0x3508600,5, 0x3508620,5, 0x3508640,6, 0x3508660,6, 0x3508680,4, 0x35086a0,7, 0x35086c0,8, 0x3508700,28, 0x3508784,1, 0x350878c,3, 0x3508800,65, 0x3508a00,5, 0x3508a20,5, 0x3508a40,6, 0x3508a60,6, 0x3508a80,4, 0x3508aa0,7, 0x3508ac0,8, 0x3508b00,28, 0x3508b84,1, 0x3508b8c,3, 0x3508c00,20, 0x3509000,3, 0x3509040,9, 0x3509080,10, 0x35090c0,2, 0x35090cc,2, 0x35090e0,3, 0x35090f0,1, 0x3509100,16, 0x3510000,8, 0x3510800,12, 0x3510844,6, 0x3510880,8, 0x35108a4,1, 0x35108c0,7, 0x35108e0,7, 0x3510900,7, 0x3510920,7, 0x3510940,3, 0x3510980,12, 0x3510a00,27, 0x3510a80,4, 0x3510ac0,25, 0x3510b40,6, 0x3510b60,4, 0x3510b74,11, 0x3510ba4,6, 0x3510c00,1, 0x3512000,75, 0x3512400,94, 0x3512580,7, 0x3512600,41, 0x3512700,2, 0x3512720,19, 0x3512800,1, 0x3512900,36, 0x3513000,3, 0x3513080,6, 0x35130a0,6, 0x35130c0,1, 0x3513100,4, 0x3513140,9, 0x3513180,2, 0x3514000,3, 0x3514010,5, 0x3514200,7, 0x3514220,6, 0x3514240,7, 0x3514260,6, 0x3514280,2, 0x351428c,2, 0x35142a0,2, 0x35142ac,2, 0x35142c0,7, 0x35142e0,7, 0x3514300,2, 0x351430c,2, 0x3514320,6, 0x3514400,3, 0x3514440,12, 0x3514600,7, 0x3514620,14, 0x3514680,9, 0x35146a8,12, 0x3514700,4, 0x3514720,2, 0x351472c,3, 0x3514800,3, 0x3518000,17, 0x3518080,3, 0x3518090,12, 0x3518100,5, 0x3518120,9, 0x3518200,1, 0x3518208,3, 0x3518400,15, 0x3518800,8, 0x3518824,1, 0x3518840,11, 0x3518880,9, 0x3518900,4, 0x3518920,16, 0x3518980,4, 0x35189a0,16, 0x3518a00,4, 0x3518a20,16, 0x3518a80,4, 0x3518aa0,16, 0x3518c00,3, 0x3518c10,3, 0x3518c20,3, 0x3518c30,3, 0x3518c40,3, 0x3518c50,1, 0x3518c80,3, 0x3518c90,3, 0x3518cc0,11, 0x3518d00,12, 0x3519000,128, 0x3519204,6, 0x3519400,27, 0x3519480,9, 0x35194c0,6, 0x35194e0,6, 0x3519804,1, 0x351980c,5, 0x3519840,24, 0x3519904,1, 0x351990c,5, 0x3519940,21, 0x3519a00,11, 0x3519c00,8, 0x3519c24,1, 0x3519c30,10, 0x3519c60,3, 0x351c000,20, 0x351c080,5, 0x351c0a0,5, 0x351c0c0,9, 0x351c100,9, 0x351c140,1, 0x351c400,13, 0x351c440,13, 0x351c480,3, 0x351c490,3, 0x351c4a0,18, 0x351c4ec,2, 0x351c500,1, 0x351c580,28, 0x351c600,7, 0x351c620,3, 0x351c800,15, 0x351c840,9, 0x351c880,6, 0x351c8a0,6, 0x351c900,4, 0x351c920,12, 0x351c980,3, 0x351c990,3, 0x351c9a0,4, 0x351c9c0,4, 0x351c9e0,3, 0x351c9f0,3, 0x351ca00,5, 0x351ca20,3, 0x351d000,3, 0x351d020,6, 0x351d040,2, 0x351d060,6, 0x351d080,33, 0x351d200,16, 0x351d244,1, 0x351d250,4, 0x351d280,1, 0x351d400,6, 0x351d440,9, 0x351d480,16, 0x351d500,4, 0x351d514,1, 0x351d800,5, 0x351d820,2, 0x351d840,5, 0x351d880,6, 0x351d8a0,1, 0x351d8c0,5, 0x351d8e0,16, 0x351da00,3, 0x351da10,3, 0x351da20,3, 0x351da30,3, 0x351da40,3, 0x351da50,1, 0x351da80,3, 0x351daa0,5, 0x351dac0,14, 0x351db00,1, 0x351dc00,27, 0x351dc80,9, 0x351dcc0,6, 0x351dce0,6, 0x351dd00,5, 0x351dd20,3, 0x351dd30,2, 0x351dd40,4, 0x351e000,14, 0x351e800,11, 0x351e830,7, 0x3520004,1, 0x3520014,19, 0x3520104,1, 0x3520130,4, 0x3520180,1, 0x3520188,5, 0x3520200,4, 0x3520400,4, 0x3520420,6, 0x3520480,4, 0x35204c0,10, 0x3520600,15, 0x3520640,4, 0x3520660,17, 0x35206c0,6, 0x35206e0,2, 0x35206ec,3, 0x3520700,8, 0x3520724,1, 0x3520800,20, 0x3520880,6, 0x35208a0,6, 0x35208c0,1, 0x3520900,5, 0x3520920,2, 0x3521004,1, 0x3521024,9, 0x3521080,2, 0x3521200,27, 0x3521280,4, 0x35212c0,25, 0x3521340,6, 0x3521360,2, 0x352136c,3, 0x3521380,8, 0x35213a4,2, 0x3521400,28, 0x3521480,10, 0x35214c0,2, 0x35214d4,1, 0x35214dc,1, 0x3521500,5, 0x3521524,1, 0x352152c,2, 0x3521540,3, 0x3521550,2, 0x3522004,1, 0x3522014,19, 0x3522104,1, 0x3522130,4, 0x3522180,1, 0x3522188,5, 0x3522200,4, 0x3522400,4, 0x3522420,6, 0x3522480,4, 0x35224c0,10, 0x3522600,15, 0x3522640,4, 0x3522660,17, 0x35226c0,6, 0x35226e0,2, 0x35226ec,3, 0x3522700,8, 0x3522724,1, 0x3522800,20, 0x3522880,6, 0x35228a0,6, 0x35228c0,1, 0x3522900,5, 0x3522920,2, 0x3523004,1, 0x3523024,9, 0x3523080,2, 0x3523200,27, 0x3523280,4, 0x35232c0,25, 0x3523340,6, 0x3523360,2, 0x352336c,3, 0x3523380,8, 0x35233a4,2, 0x3523400,28, 0x3523480,10, 0x35234c0,2, 0x35234d4,1, 0x35234dc,1, 0x3523500,5, 0x3523524,1, 0x352352c,2, 0x3523540,3, 0x3523550,2, 0x3524000,14, 0x3524800,15, 0x3524840,4, 0x3524860,17, 0x35248c0,6, 0x35248e0,2, 0x35248ec,3, 0x3524900,8, 0x3524924,1, 0x3524a00,12, 0x3524a40,3, 0x3524a50,5, 0x3524b00,2, 0x3524b0c,3, 0x3524b20,1, 0x3524b40,8, 0x3524b80,20, 0x3524c00,1, 0x3528004,1, 0x3528014,19, 0x3528104,1, 0x3528130,4, 0x3528180,1, 0x3528188,5, 0x3528200,4, 0x3528400,4, 0x3528420,6, 0x3528480,4, 0x35284c0,10, 0x3528600,15, 0x3528640,4, 0x3528660,17, 0x35286c0,6, 0x35286e0,2, 0x35286ec,3, 0x3528700,8, 0x3528724,1, 0x3528800,20, 0x3528880,6, 0x35288a0,6, 0x35288c0,1, 0x3528900,5, 0x3528920,2, 0x3529000,1, 0x3529024,1, 0x352902c,7, 0x3529084,1, 0x3529094,6, 0x35290c0,2, 0x3529200,27, 0x3529280,4, 0x35292c0,25, 0x3529340,6, 0x3529360,2, 0x352936c,3, 0x3529380,8, 0x35293a4,2, 0x3529400,36, 0x3529500,10, 0x3529540,2, 0x3529554,1, 0x352955c,1, 0x3529580,3, 0x3529590,2, 0x352a004,1, 0x352a014,19, 0x352a104,1, 0x352a130,4, 0x352a180,1, 0x352a188,5, 0x352a200,4, 0x352a400,4, 0x352a420,6, 0x352a480,4, 0x352a4c0,10, 0x352a600,15, 0x352a640,4, 0x352a660,17, 0x352a6c0,6, 0x352a6e0,2, 0x352a6ec,3, 0x352a700,8, 0x352a724,1, 0x352a800,20, 0x352a880,6, 0x352a8a0,6, 0x352a8c0,1, 0x352a900,5, 0x352a920,2, 0x352b000,1, 0x352b024,1, 0x352b02c,7, 0x352b084,1, 0x352b094,6, 0x352b0c0,2, 0x352b200,27, 0x352b280,4, 0x352b2c0,25, 0x352b340,6, 0x352b360,2, 0x352b36c,3, 0x352b380,8, 0x352b3a4,2, 0x352b400,36, 0x352b500,10, 0x352b540,2, 0x352b554,1, 0x352b55c,1, 0x352b580,3, 0x352b590,2, 0x352c000,14, 0x352c800,15, 0x352c840,4, 0x352c860,17, 0x352c8c0,6, 0x352c8e0,2, 0x352c8ec,3, 0x352c900,8, 0x352c924,1, 0x352ca00,12, 0x352ca40,3, 0x352ca50,5, 0x3530000,14, 0x3530800,4, 0x3530880,31, 0x3530900,1, 0x3530908,2, 0x3530920,5, 0x3530940,8, 0x3530a00,27, 0x3530a80,4, 0x3530ac0,25, 0x3530b40,6, 0x3530b60,4, 0x3530b74,11, 0x3530ba4,1, 0x3530c00,3, 0x3530c40,12, 0x3530c80,3, 0x3534000,14, 0x3534800,19, 0x3534850,13, 0x3534888,9, 0x35348b0,2, 0x3534a00,27, 0x3534a80,4, 0x3534ac0,25, 0x3534b40,6, 0x3534b60,4, 0x3534b74,11, 0x3534ba4,1, 0x3534c00,3, 0x3534c40,12, 0x3538000,2, 0x3538080,1, 0x3538088,15, 0x3540000,1, 0x3542000,1020, 0x3544000,1020, 0x3546000,1020, 0x3548000,65, 0x3548200,5, 0x3548220,5, 0x3548240,6, 0x3548260,6, 0x3548280,4, 0x35482a0,7, 0x35482c0,8, 0x3548300,28, 0x3548384,1, 0x354838c,3, 0x3548400,65, 0x3548600,5, 0x3548620,5, 0x3548640,6, 0x3548660,6, 0x3548680,4, 0x35486a0,7, 0x35486c0,8, 0x3548700,28, 0x3548784,1, 0x354878c,3, 0x3548800,65, 0x3548a00,5, 0x3548a20,5, 0x3548a40,6, 0x3548a60,6, 0x3548a80,4, 0x3548aa0,7, 0x3548ac0,8, 0x3548b00,28, 0x3548b84,1, 0x3548b8c,3, 0x3548c00,20, 0x3549000,3, 0x3549040,9, 0x3549080,10, 0x35490c0,2, 0x35490cc,2, 0x35490e0,3, 0x35490f0,1, 0x3549100,16, 0x3550000,8, 0x3550800,12, 0x3550844,6, 0x3550880,8, 0x35508a4,1, 0x35508c0,7, 0x35508e0,7, 0x3550900,7, 0x3550920,7, 0x3550940,3, 0x3550980,12, 0x3550a00,27, 0x3550a80,4, 0x3550ac0,25, 0x3550b40,6, 0x3550b60,4, 0x3550b74,11, 0x3550ba4,6, 0x3550c00,1, 0x3552000,75, 0x3552400,94, 0x3552580,7, 0x3552600,41, 0x3552700,2, 0x3552720,19, 0x3552800,1, 0x3552900,36, 0x3553000,3, 0x3553080,6, 0x35530a0,6, 0x35530c0,1, 0x3553100,4, 0x3553140,9, 0x3553180,2, 0x3554000,3, 0x3554010,5, 0x3554200,7, 0x3554220,6, 0x3554240,7, 0x3554260,6, 0x3554280,2, 0x355428c,2, 0x35542a0,2, 0x35542ac,2, 0x35542c0,7, 0x35542e0,7, 0x3554300,2, 0x355430c,2, 0x3554320,6, 0x3554400,3, 0x3554440,12, 0x3554600,7, 0x3554620,14, 0x3554680,9, 0x35546a8,12, 0x3554700,4, 0x3554720,2, 0x355472c,3, 0x3554800,3, 0x3558000,17, 0x3558080,3, 0x3558090,12, 0x3558100,5, 0x3558120,9, 0x3558200,1, 0x3558208,3, 0x3558400,15, 0x3558800,8, 0x3558824,1, 0x3558840,11, 0x3558880,9, 0x3558900,4, 0x3558920,16, 0x3558980,4, 0x35589a0,16, 0x3558a00,4, 0x3558a20,16, 0x3558a80,4, 0x3558aa0,16, 0x3558c00,3, 0x3558c10,3, 0x3558c20,3, 0x3558c30,3, 0x3558c40,3, 0x3558c50,1, 0x3558c80,3, 0x3558c90,3, 0x3558cc0,11, 0x3558d00,12, 0x3559000,128, 0x3559204,6, 0x3559400,27, 0x3559480,9, 0x35594c0,6, 0x35594e0,6, 0x3559804,1, 0x355980c,5, 0x3559840,24, 0x3559904,1, 0x355990c,5, 0x3559940,21, 0x3559a00,11, 0x3559c00,8, 0x3559c24,1, 0x3559c30,10, 0x3559c60,3, 0x355c000,20, 0x355c080,5, 0x355c0a0,5, 0x355c0c0,9, 0x355c100,9, 0x355c140,1, 0x355c400,13, 0x355c440,13, 0x355c480,3, 0x355c490,3, 0x355c4a0,18, 0x355c4ec,2, 0x355c500,1, 0x355c580,28, 0x355c600,7, 0x355c620,3, 0x355c800,15, 0x355c840,9, 0x355c880,6, 0x355c8a0,6, 0x355c900,4, 0x355c920,12, 0x355c980,3, 0x355c990,3, 0x355c9a0,4, 0x355c9c0,4, 0x355c9e0,3, 0x355c9f0,3, 0x355ca00,5, 0x355ca20,3, 0x355d000,3, 0x355d020,6, 0x355d040,2, 0x355d060,6, 0x355d080,33, 0x355d200,16, 0x355d244,1, 0x355d250,4, 0x355d280,1, 0x355d400,6, 0x355d440,9, 0x355d480,16, 0x355d500,4, 0x355d514,1, 0x355d800,5, 0x355d820,2, 0x355d840,5, 0x355d880,6, 0x355d8a0,1, 0x355d8c0,5, 0x355d8e0,16, 0x355da00,3, 0x355da10,3, 0x355da20,3, 0x355da30,3, 0x355da40,3, 0x355da50,1, 0x355da80,3, 0x355daa0,5, 0x355dac0,14, 0x355db00,1, 0x355dc00,27, 0x355dc80,9, 0x355dcc0,6, 0x355dce0,6, 0x355dd00,5, 0x355dd20,3, 0x355dd30,2, 0x355dd40,4, 0x355e000,14, 0x355e800,11, 0x355e830,7, 0x3560004,1, 0x3560014,19, 0x3560104,1, 0x3560130,4, 0x3560180,1, 0x3560188,5, 0x3560200,4, 0x3560400,4, 0x3560420,6, 0x3560480,4, 0x35604c0,10, 0x3560600,15, 0x3560640,4, 0x3560660,17, 0x35606c0,6, 0x35606e0,2, 0x35606ec,3, 0x3560700,8, 0x3560724,1, 0x3560800,20, 0x3560880,6, 0x35608a0,6, 0x35608c0,1, 0x3560900,5, 0x3560920,2, 0x3561004,1, 0x3561024,9, 0x3561080,2, 0x3561200,27, 0x3561280,4, 0x35612c0,25, 0x3561340,6, 0x3561360,2, 0x356136c,3, 0x3561380,8, 0x35613a4,2, 0x3561400,28, 0x3561480,10, 0x35614c0,2, 0x35614d4,1, 0x35614dc,1, 0x3561500,5, 0x3561524,1, 0x356152c,2, 0x3561540,3, 0x3561550,2, 0x3562004,1, 0x3562014,19, 0x3562104,1, 0x3562130,4, 0x3562180,1, 0x3562188,5, 0x3562200,4, 0x3562400,4, 0x3562420,6, 0x3562480,4, 0x35624c0,10, 0x3562600,15, 0x3562640,4, 0x3562660,17, 0x35626c0,6, 0x35626e0,2, 0x35626ec,3, 0x3562700,8, 0x3562724,1, 0x3562800,20, 0x3562880,6, 0x35628a0,6, 0x35628c0,1, 0x3562900,5, 0x3562920,2, 0x3563004,1, 0x3563024,9, 0x3563080,2, 0x3563200,27, 0x3563280,4, 0x35632c0,25, 0x3563340,6, 0x3563360,2, 0x356336c,3, 0x3563380,8, 0x35633a4,2, 0x3563400,28, 0x3563480,10, 0x35634c0,2, 0x35634d4,1, 0x35634dc,1, 0x3563500,5, 0x3563524,1, 0x356352c,2, 0x3563540,3, 0x3563550,2, 0x3564000,14, 0x3564800,15, 0x3564840,4, 0x3564860,17, 0x35648c0,6, 0x35648e0,2, 0x35648ec,3, 0x3564900,8, 0x3564924,1, 0x3564a00,12, 0x3564a40,3, 0x3564a50,5, 0x3564b00,2, 0x3564b0c,3, 0x3564b20,1, 0x3564b40,8, 0x3564b80,20, 0x3564c00,1, 0x3568004,1, 0x3568014,19, 0x3568104,1, 0x3568130,4, 0x3568180,1, 0x3568188,5, 0x3568200,4, 0x3568400,4, 0x3568420,6, 0x3568480,4, 0x35684c0,10, 0x3568600,15, 0x3568640,4, 0x3568660,17, 0x35686c0,6, 0x35686e0,2, 0x35686ec,3, 0x3568700,8, 0x3568724,1, 0x3568800,20, 0x3568880,6, 0x35688a0,6, 0x35688c0,1, 0x3568900,5, 0x3568920,2, 0x3569000,1, 0x3569024,1, 0x356902c,7, 0x3569084,1, 0x3569094,6, 0x35690c0,2, 0x3569200,27, 0x3569280,4, 0x35692c0,25, 0x3569340,6, 0x3569360,2, 0x356936c,3, 0x3569380,8, 0x35693a4,2, 0x3569400,36, 0x3569500,10, 0x3569540,2, 0x3569554,1, 0x356955c,1, 0x3569580,3, 0x3569590,2, 0x356a004,1, 0x356a014,19, 0x356a104,1, 0x356a130,4, 0x356a180,1, 0x356a188,5, 0x356a200,4, 0x356a400,4, 0x356a420,6, 0x356a480,4, 0x356a4c0,10, 0x356a600,15, 0x356a640,4, 0x356a660,17, 0x356a6c0,6, 0x356a6e0,2, 0x356a6ec,3, 0x356a700,8, 0x356a724,1, 0x356a800,20, 0x356a880,6, 0x356a8a0,6, 0x356a8c0,1, 0x356a900,5, 0x356a920,2, 0x356b000,1, 0x356b024,1, 0x356b02c,7, 0x356b084,1, 0x356b094,6, 0x356b0c0,2, 0x356b200,27, 0x356b280,4, 0x356b2c0,25, 0x356b340,6, 0x356b360,2, 0x356b36c,3, 0x356b380,8, 0x356b3a4,2, 0x356b400,36, 0x356b500,10, 0x356b540,2, 0x356b554,1, 0x356b55c,1, 0x356b580,3, 0x356b590,2, 0x356c000,14, 0x356c800,15, 0x356c840,4, 0x356c860,17, 0x356c8c0,6, 0x356c8e0,2, 0x356c8ec,3, 0x356c900,8, 0x356c924,1, 0x356ca00,12, 0x356ca40,3, 0x356ca50,5, 0x3570000,14, 0x3570800,4, 0x3570880,31, 0x3570900,1, 0x3570908,2, 0x3570920,5, 0x3570940,8, 0x3570a00,27, 0x3570a80,4, 0x3570ac0,25, 0x3570b40,6, 0x3570b60,4, 0x3570b74,11, 0x3570ba4,1, 0x3570c00,3, 0x3570c40,12, 0x3570c80,3, 0x3574000,14, 0x3574800,19, 0x3574850,13, 0x3574888,9, 0x35748b0,2, 0x3574a00,27, 0x3574a80,4, 0x3574ac0,25, 0x3574b40,6, 0x3574b60,4, 0x3574b74,11, 0x3574ba4,1, 0x3574c00,3, 0x3574c40,12, 0x3578000,2, 0x3578080,1, 0x3578088,15, 0x3580000,1, 0x3582000,1020, 0x3584000,1020, 0x3586000,1020, 0x3588000,65, 0x3588200,5, 0x3588220,5, 0x3588240,6, 0x3588260,6, 0x3588280,4, 0x35882a0,7, 0x35882c0,8, 0x3588300,28, 0x3588384,1, 0x358838c,3, 0x3588400,65, 0x3588600,5, 0x3588620,5, 0x3588640,6, 0x3588660,6, 0x3588680,4, 0x35886a0,7, 0x35886c0,8, 0x3588700,28, 0x3588784,1, 0x358878c,3, 0x3588800,65, 0x3588a00,5, 0x3588a20,5, 0x3588a40,6, 0x3588a60,6, 0x3588a80,4, 0x3588aa0,7, 0x3588ac0,8, 0x3588b00,28, 0x3588b84,1, 0x3588b8c,3, 0x3588c00,20, 0x3589000,3, 0x3589040,9, 0x3589080,10, 0x35890c0,2, 0x35890cc,2, 0x35890e0,3, 0x35890f0,1, 0x3589100,16, 0x3590000,8, 0x3590800,12, 0x3590844,6, 0x3590880,8, 0x35908a4,1, 0x35908c0,7, 0x35908e0,7, 0x3590900,7, 0x3590920,7, 0x3590940,3, 0x3590980,12, 0x3590a00,27, 0x3590a80,4, 0x3590ac0,25, 0x3590b40,6, 0x3590b60,4, 0x3590b74,11, 0x3590ba4,6, 0x3590c00,1, 0x3592000,75, 0x3592400,94, 0x3592580,7, 0x3592600,41, 0x3592700,2, 0x3592720,19, 0x3592800,1, 0x3592900,36, 0x3593000,3, 0x3593080,6, 0x35930a0,6, 0x35930c0,1, 0x3593100,4, 0x3593140,9, 0x3593180,2, 0x3594000,3, 0x3594010,5, 0x3594200,7, 0x3594220,6, 0x3594240,7, 0x3594260,6, 0x3594280,2, 0x359428c,2, 0x35942a0,2, 0x35942ac,2, 0x35942c0,7, 0x35942e0,7, 0x3594300,2, 0x359430c,2, 0x3594320,6, 0x3594400,3, 0x3594440,12, 0x3594600,7, 0x3594620,14, 0x3594680,9, 0x35946a8,12, 0x3594700,4, 0x3594720,2, 0x359472c,3, 0x3594800,3, 0x3598000,17, 0x3598080,3, 0x3598090,12, 0x3598100,5, 0x3598120,9, 0x3598200,1, 0x3598208,3, 0x3598400,15, 0x3598800,8, 0x3598824,1, 0x3598840,11, 0x3598880,9, 0x3598900,4, 0x3598920,16, 0x3598980,4, 0x35989a0,16, 0x3598a00,4, 0x3598a20,16, 0x3598a80,4, 0x3598aa0,16, 0x3598c00,3, 0x3598c10,3, 0x3598c20,3, 0x3598c30,3, 0x3598c40,3, 0x3598c50,1, 0x3598c80,3, 0x3598c90,3, 0x3598cc0,11, 0x3598d00,12, 0x3599000,128, 0x3599204,6, 0x3599400,27, 0x3599480,9, 0x35994c0,6, 0x35994e0,6, 0x3599804,1, 0x359980c,5, 0x3599840,24, 0x3599904,1, 0x359990c,5, 0x3599940,21, 0x3599a00,11, 0x3599c00,8, 0x3599c24,1, 0x3599c30,10, 0x3599c60,3, 0x359c000,20, 0x359c080,5, 0x359c0a0,5, 0x359c0c0,9, 0x359c100,9, 0x359c140,1, 0x359c400,13, 0x359c440,13, 0x359c480,3, 0x359c490,3, 0x359c4a0,18, 0x359c4ec,2, 0x359c500,1, 0x359c580,28, 0x359c600,7, 0x359c620,3, 0x359c800,15, 0x359c840,9, 0x359c880,6, 0x359c8a0,6, 0x359c900,4, 0x359c920,12, 0x359c980,3, 0x359c990,3, 0x359c9a0,4, 0x359c9c0,4, 0x359c9e0,3, 0x359c9f0,3, 0x359ca00,5, 0x359ca20,3, 0x359d000,3, 0x359d020,6, 0x359d040,2, 0x359d060,6, 0x359d080,33, 0x359d200,16, 0x359d244,1, 0x359d250,4, 0x359d280,1, 0x359d400,6, 0x359d440,9, 0x359d480,16, 0x359d500,4, 0x359d514,1, 0x359d800,5, 0x359d820,2, 0x359d840,5, 0x359d880,6, 0x359d8a0,1, 0x359d8c0,5, 0x359d8e0,16, 0x359da00,3, 0x359da10,3, 0x359da20,3, 0x359da30,3, 0x359da40,3, 0x359da50,1, 0x359da80,3, 0x359daa0,5, 0x359dac0,14, 0x359db00,1, 0x359dc00,27, 0x359dc80,9, 0x359dcc0,6, 0x359dce0,6, 0x359dd00,5, 0x359dd20,3, 0x359dd30,2, 0x359dd40,4, 0x359e000,14, 0x359e800,11, 0x359e830,7, 0x35a0004,1, 0x35a0014,19, 0x35a0104,1, 0x35a0130,4, 0x35a0180,1, 0x35a0188,5, 0x35a0200,4, 0x35a0400,4, 0x35a0420,6, 0x35a0480,4, 0x35a04c0,10, 0x35a0600,15, 0x35a0640,4, 0x35a0660,17, 0x35a06c0,6, 0x35a06e0,2, 0x35a06ec,3, 0x35a0700,8, 0x35a0724,1, 0x35a0800,20, 0x35a0880,6, 0x35a08a0,6, 0x35a08c0,1, 0x35a0900,5, 0x35a0920,2, 0x35a1004,1, 0x35a1024,9, 0x35a1080,2, 0x35a1200,27, 0x35a1280,4, 0x35a12c0,25, 0x35a1340,6, 0x35a1360,2, 0x35a136c,3, 0x35a1380,8, 0x35a13a4,2, 0x35a1400,28, 0x35a1480,10, 0x35a14c0,2, 0x35a14d4,1, 0x35a14dc,1, 0x35a1500,5, 0x35a1524,1, 0x35a152c,2, 0x35a1540,3, 0x35a1550,2, 0x35a2004,1, 0x35a2014,19, 0x35a2104,1, 0x35a2130,4, 0x35a2180,1, 0x35a2188,5, 0x35a2200,4, 0x35a2400,4, 0x35a2420,6, 0x35a2480,4, 0x35a24c0,10, 0x35a2600,15, 0x35a2640,4, 0x35a2660,17, 0x35a26c0,6, 0x35a26e0,2, 0x35a26ec,3, 0x35a2700,8, 0x35a2724,1, 0x35a2800,20, 0x35a2880,6, 0x35a28a0,6, 0x35a28c0,1, 0x35a2900,5, 0x35a2920,2, 0x35a3004,1, 0x35a3024,9, 0x35a3080,2, 0x35a3200,27, 0x35a3280,4, 0x35a32c0,25, 0x35a3340,6, 0x35a3360,2, 0x35a336c,3, 0x35a3380,8, 0x35a33a4,2, 0x35a3400,28, 0x35a3480,10, 0x35a34c0,2, 0x35a34d4,1, 0x35a34dc,1, 0x35a3500,5, 0x35a3524,1, 0x35a352c,2, 0x35a3540,3, 0x35a3550,2, 0x35a4000,14, 0x35a4800,15, 0x35a4840,4, 0x35a4860,17, 0x35a48c0,6, 0x35a48e0,2, 0x35a48ec,3, 0x35a4900,8, 0x35a4924,1, 0x35a4a00,12, 0x35a4a40,3, 0x35a4a50,5, 0x35a4b00,2, 0x35a4b0c,3, 0x35a4b20,1, 0x35a4b40,8, 0x35a4b80,20, 0x35a4c00,1, 0x35a8004,1, 0x35a8014,19, 0x35a8104,1, 0x35a8130,4, 0x35a8180,1, 0x35a8188,5, 0x35a8200,4, 0x35a8400,4, 0x35a8420,6, 0x35a8480,4, 0x35a84c0,10, 0x35a8600,15, 0x35a8640,4, 0x35a8660,17, 0x35a86c0,6, 0x35a86e0,2, 0x35a86ec,3, 0x35a8700,8, 0x35a8724,1, 0x35a8800,20, 0x35a8880,6, 0x35a88a0,6, 0x35a88c0,1, 0x35a8900,5, 0x35a8920,2, 0x35a9000,1, 0x35a9024,1, 0x35a902c,7, 0x35a9084,1, 0x35a9094,6, 0x35a90c0,2, 0x35a9200,27, 0x35a9280,4, 0x35a92c0,25, 0x35a9340,6, 0x35a9360,2, 0x35a936c,3, 0x35a9380,8, 0x35a93a4,2, 0x35a9400,36, 0x35a9500,10, 0x35a9540,2, 0x35a9554,1, 0x35a955c,1, 0x35a9580,3, 0x35a9590,2, 0x35aa004,1, 0x35aa014,19, 0x35aa104,1, 0x35aa130,4, 0x35aa180,1, 0x35aa188,5, 0x35aa200,4, 0x35aa400,4, 0x35aa420,6, 0x35aa480,4, 0x35aa4c0,10, 0x35aa600,15, 0x35aa640,4, 0x35aa660,17, 0x35aa6c0,6, 0x35aa6e0,2, 0x35aa6ec,3, 0x35aa700,8, 0x35aa724,1, 0x35aa800,20, 0x35aa880,6, 0x35aa8a0,6, 0x35aa8c0,1, 0x35aa900,5, 0x35aa920,2, 0x35ab000,1, 0x35ab024,1, 0x35ab02c,7, 0x35ab084,1, 0x35ab094,6, 0x35ab0c0,2, 0x35ab200,27, 0x35ab280,4, 0x35ab2c0,25, 0x35ab340,6, 0x35ab360,2, 0x35ab36c,3, 0x35ab380,8, 0x35ab3a4,2, 0x35ab400,36, 0x35ab500,10, 0x35ab540,2, 0x35ab554,1, 0x35ab55c,1, 0x35ab580,3, 0x35ab590,2, 0x35ac000,14, 0x35ac800,15, 0x35ac840,4, 0x35ac860,17, 0x35ac8c0,6, 0x35ac8e0,2, 0x35ac8ec,3, 0x35ac900,8, 0x35ac924,1, 0x35aca00,12, 0x35aca40,3, 0x35aca50,5, 0x35b0000,14, 0x35b0800,4, 0x35b0880,31, 0x35b0900,1, 0x35b0908,2, 0x35b0920,5, 0x35b0940,8, 0x35b0a00,27, 0x35b0a80,4, 0x35b0ac0,25, 0x35b0b40,6, 0x35b0b60,4, 0x35b0b74,11, 0x35b0ba4,1, 0x35b0c00,3, 0x35b0c40,12, 0x35b0c80,3, 0x35b4000,14, 0x35b4800,19, 0x35b4850,13, 0x35b4888,9, 0x35b48b0,2, 0x35b4a00,27, 0x35b4a80,4, 0x35b4ac0,25, 0x35b4b40,6, 0x35b4b60,4, 0x35b4b74,11, 0x35b4ba4,1, 0x35b4c00,3, 0x35b4c40,12, 0x35b8000,2, 0x35b8080,1, 0x35b8088,15, 0x35c0000,1, 0x35c2000,1020, 0x35c4000,1020, 0x35c6000,1020, 0x35c8000,65, 0x35c8200,5, 0x35c8220,5, 0x35c8240,6, 0x35c8260,6, 0x35c8280,4, 0x35c82a0,7, 0x35c82c0,8, 0x35c8300,28, 0x35c8384,1, 0x35c838c,3, 0x35c8400,65, 0x35c8600,5, 0x35c8620,5, 0x35c8640,6, 0x35c8660,6, 0x35c8680,4, 0x35c86a0,7, 0x35c86c0,8, 0x35c8700,28, 0x35c8784,1, 0x35c878c,3, 0x35c8800,65, 0x35c8a00,5, 0x35c8a20,5, 0x35c8a40,6, 0x35c8a60,6, 0x35c8a80,4, 0x35c8aa0,7, 0x35c8ac0,8, 0x35c8b00,28, 0x35c8b84,1, 0x35c8b8c,3, 0x35c8c00,20, 0x35c9000,3, 0x35c9040,9, 0x35c9080,10, 0x35c90c0,2, 0x35c90cc,2, 0x35c90e0,3, 0x35c90f0,1, 0x35c9100,16, 0x35d0000,8, 0x35d0800,12, 0x35d0844,6, 0x35d0880,8, 0x35d08a4,1, 0x35d08c0,7, 0x35d08e0,7, 0x35d0900,7, 0x35d0920,7, 0x35d0940,3, 0x35d0980,12, 0x35d0a00,27, 0x35d0a80,4, 0x35d0ac0,25, 0x35d0b40,6, 0x35d0b60,4, 0x35d0b74,11, 0x35d0ba4,6, 0x35d0c00,1, 0x35d2000,75, 0x35d2400,94, 0x35d2580,7, 0x35d2600,41, 0x35d2700,2, 0x35d2720,19, 0x35d2800,1, 0x35d2900,36, 0x35d3000,3, 0x35d3080,6, 0x35d30a0,6, 0x35d30c0,1, 0x35d3100,4, 0x35d3140,9, 0x35d3180,2, 0x35d4000,3, 0x35d4010,5, 0x35d4200,7, 0x35d4220,6, 0x35d4240,7, 0x35d4260,6, 0x35d4280,2, 0x35d428c,2, 0x35d42a0,2, 0x35d42ac,2, 0x35d42c0,7, 0x35d42e0,7, 0x35d4300,2, 0x35d430c,2, 0x35d4320,6, 0x35d4400,3, 0x35d4440,12, 0x35d4600,7, 0x35d4620,14, 0x35d4680,9, 0x35d46a8,12, 0x35d4700,4, 0x35d4720,2, 0x35d472c,3, 0x35d4800,3, 0x35d8000,17, 0x35d8080,3, 0x35d8090,12, 0x35d8100,5, 0x35d8120,9, 0x35d8200,1, 0x35d8208,3, 0x35d8400,15, 0x35d8800,8, 0x35d8824,1, 0x35d8840,11, 0x35d8880,9, 0x35d8900,4, 0x35d8920,16, 0x35d8980,4, 0x35d89a0,16, 0x35d8a00,4, 0x35d8a20,16, 0x35d8a80,4, 0x35d8aa0,16, 0x35d8c00,3, 0x35d8c10,3, 0x35d8c20,3, 0x35d8c30,3, 0x35d8c40,3, 0x35d8c50,1, 0x35d8c80,3, 0x35d8c90,3, 0x35d8cc0,11, 0x35d8d00,12, 0x35d9000,128, 0x35d9204,6, 0x35d9400,27, 0x35d9480,9, 0x35d94c0,6, 0x35d94e0,6, 0x35d9804,1, 0x35d980c,5, 0x35d9840,24, 0x35d9904,1, 0x35d990c,5, 0x35d9940,21, 0x35d9a00,11, 0x35d9c00,8, 0x35d9c24,1, 0x35d9c30,10, 0x35d9c60,3, 0x35dc000,20, 0x35dc080,5, 0x35dc0a0,5, 0x35dc0c0,9, 0x35dc100,9, 0x35dc140,1, 0x35dc400,13, 0x35dc440,13, 0x35dc480,3, 0x35dc490,3, 0x35dc4a0,18, 0x35dc4ec,2, 0x35dc500,1, 0x35dc580,28, 0x35dc600,7, 0x35dc620,3, 0x35dc800,15, 0x35dc840,9, 0x35dc880,6, 0x35dc8a0,6, 0x35dc900,4, 0x35dc920,12, 0x35dc980,3, 0x35dc990,3, 0x35dc9a0,4, 0x35dc9c0,4, 0x35dc9e0,3, 0x35dc9f0,3, 0x35dca00,5, 0x35dca20,3, 0x35dd000,3, 0x35dd020,6, 0x35dd040,2, 0x35dd060,6, 0x35dd080,33, 0x35dd200,16, 0x35dd244,1, 0x35dd250,4, 0x35dd280,1, 0x35dd400,6, 0x35dd440,9, 0x35dd480,16, 0x35dd500,4, 0x35dd514,1, 0x35dd800,5, 0x35dd820,2, 0x35dd840,5, 0x35dd880,6, 0x35dd8a0,1, 0x35dd8c0,5, 0x35dd8e0,16, 0x35dda00,3, 0x35dda10,3, 0x35dda20,3, 0x35dda30,3, 0x35dda40,3, 0x35dda50,1, 0x35dda80,3, 0x35ddaa0,5, 0x35ddac0,14, 0x35ddb00,1, 0x35ddc00,27, 0x35ddc80,9, 0x35ddcc0,6, 0x35ddce0,6, 0x35ddd00,5, 0x35ddd20,3, 0x35ddd30,2, 0x35ddd40,4, 0x35de000,14, 0x35de800,11, 0x35de830,7, 0x35e0004,1, 0x35e0014,19, 0x35e0104,1, 0x35e0130,4, 0x35e0180,1, 0x35e0188,5, 0x35e0200,4, 0x35e0400,4, 0x35e0420,6, 0x35e0480,4, 0x35e04c0,10, 0x35e0600,15, 0x35e0640,4, 0x35e0660,17, 0x35e06c0,6, 0x35e06e0,2, 0x35e06ec,3, 0x35e0700,8, 0x35e0724,1, 0x35e0800,20, 0x35e0880,6, 0x35e08a0,6, 0x35e08c0,1, 0x35e0900,5, 0x35e0920,2, 0x35e1004,1, 0x35e1024,9, 0x35e1080,2, 0x35e1200,27, 0x35e1280,4, 0x35e12c0,25, 0x35e1340,6, 0x35e1360,2, 0x35e136c,3, 0x35e1380,8, 0x35e13a4,2, 0x35e1400,28, 0x35e1480,10, 0x35e14c0,2, 0x35e14d4,1, 0x35e14dc,1, 0x35e1500,5, 0x35e1524,1, 0x35e152c,2, 0x35e1540,3, 0x35e1550,2, 0x35e2004,1, 0x35e2014,19, 0x35e2104,1, 0x35e2130,4, 0x35e2180,1, 0x35e2188,5, 0x35e2200,4, 0x35e2400,4, 0x35e2420,6, 0x35e2480,4, 0x35e24c0,10, 0x35e2600,15, 0x35e2640,4, 0x35e2660,17, 0x35e26c0,6, 0x35e26e0,2, 0x35e26ec,3, 0x35e2700,8, 0x35e2724,1, 0x35e2800,20, 0x35e2880,6, 0x35e28a0,6, 0x35e28c0,1, 0x35e2900,5, 0x35e2920,2, 0x35e3004,1, 0x35e3024,9, 0x35e3080,2, 0x35e3200,27, 0x35e3280,4, 0x35e32c0,25, 0x35e3340,6, 0x35e3360,2, 0x35e336c,3, 0x35e3380,8, 0x35e33a4,2, 0x35e3400,28, 0x35e3480,10, 0x35e34c0,2, 0x35e34d4,1, 0x35e34dc,1, 0x35e3500,5, 0x35e3524,1, 0x35e352c,2, 0x35e3540,3, 0x35e3550,2, 0x35e4000,14, 0x35e4800,15, 0x35e4840,4, 0x35e4860,17, 0x35e48c0,6, 0x35e48e0,2, 0x35e48ec,3, 0x35e4900,8, 0x35e4924,1, 0x35e4a00,12, 0x35e4a40,3, 0x35e4a50,5, 0x35e4b00,2, 0x35e4b0c,3, 0x35e4b20,1, 0x35e4b40,8, 0x35e4b80,20, 0x35e4c00,1, 0x35e8004,1, 0x35e8014,19, 0x35e8104,1, 0x35e8130,4, 0x35e8180,1, 0x35e8188,5, 0x35e8200,4, 0x35e8400,4, 0x35e8420,6, 0x35e8480,4, 0x35e84c0,10, 0x35e8600,15, 0x35e8640,4, 0x35e8660,17, 0x35e86c0,6, 0x35e86e0,2, 0x35e86ec,3, 0x35e8700,8, 0x35e8724,1, 0x35e8800,20, 0x35e8880,6, 0x35e88a0,6, 0x35e88c0,1, 0x35e8900,5, 0x35e8920,2, 0x35e9000,1, 0x35e9024,1, 0x35e902c,7, 0x35e9084,1, 0x35e9094,6, 0x35e90c0,2, 0x35e9200,27, 0x35e9280,4, 0x35e92c0,25, 0x35e9340,6, 0x35e9360,2, 0x35e936c,3, 0x35e9380,8, 0x35e93a4,2, 0x35e9400,36, 0x35e9500,10, 0x35e9540,2, 0x35e9554,1, 0x35e955c,1, 0x35e9580,3, 0x35e9590,2, 0x35ea004,1, 0x35ea014,19, 0x35ea104,1, 0x35ea130,4, 0x35ea180,1, 0x35ea188,5, 0x35ea200,4, 0x35ea400,4, 0x35ea420,6, 0x35ea480,4, 0x35ea4c0,10, 0x35ea600,15, 0x35ea640,4, 0x35ea660,17, 0x35ea6c0,6, 0x35ea6e0,2, 0x35ea6ec,3, 0x35ea700,8, 0x35ea724,1, 0x35ea800,20, 0x35ea880,6, 0x35ea8a0,6, 0x35ea8c0,1, 0x35ea900,5, 0x35ea920,2, 0x35eb000,1, 0x35eb024,1, 0x35eb02c,7, 0x35eb084,1, 0x35eb094,6, 0x35eb0c0,2, 0x35eb200,27, 0x35eb280,4, 0x35eb2c0,25, 0x35eb340,6, 0x35eb360,2, 0x35eb36c,3, 0x35eb380,8, 0x35eb3a4,2, 0x35eb400,36, 0x35eb500,10, 0x35eb540,2, 0x35eb554,1, 0x35eb55c,1, 0x35eb580,3, 0x35eb590,2, 0x35ec000,14, 0x35ec800,15, 0x35ec840,4, 0x35ec860,17, 0x35ec8c0,6, 0x35ec8e0,2, 0x35ec8ec,3, 0x35ec900,8, 0x35ec924,1, 0x35eca00,12, 0x35eca40,3, 0x35eca50,5, 0x35f0000,14, 0x35f0800,4, 0x35f0880,31, 0x35f0900,1, 0x35f0908,2, 0x35f0920,5, 0x35f0940,8, 0x35f0a00,27, 0x35f0a80,4, 0x35f0ac0,25, 0x35f0b40,6, 0x35f0b60,4, 0x35f0b74,11, 0x35f0ba4,1, 0x35f0c00,3, 0x35f0c40,12, 0x35f0c80,3, 0x35f4000,14, 0x35f4800,19, 0x35f4850,13, 0x35f4888,9, 0x35f48b0,2, 0x35f4a00,27, 0x35f4a80,4, 0x35f4ac0,25, 0x35f4b40,6, 0x35f4b60,4, 0x35f4b74,11, 0x35f4ba4,1, 0x35f4c00,3, 0x35f4c40,12, 0x35f8000,2, 0x35f8080,1, 0x35f8088,15, 0x3600000,1, 0x3602000,1020, 0x3604000,1020, 0x3606000,1020, 0x3608000,65, 0x3608200,5, 0x3608220,5, 0x3608240,6, 0x3608260,6, 0x3608280,4, 0x36082a0,7, 0x36082c0,8, 0x3608300,28, 0x3608384,1, 0x360838c,3, 0x3608400,65, 0x3608600,5, 0x3608620,5, 0x3608640,6, 0x3608660,6, 0x3608680,4, 0x36086a0,7, 0x36086c0,8, 0x3608700,28, 0x3608784,1, 0x360878c,3, 0x3608800,65, 0x3608a00,5, 0x3608a20,5, 0x3608a40,6, 0x3608a60,6, 0x3608a80,4, 0x3608aa0,7, 0x3608ac0,8, 0x3608b00,28, 0x3608b84,1, 0x3608b8c,3, 0x3608c00,20, 0x3609000,3, 0x3609040,9, 0x3609080,10, 0x36090c0,2, 0x36090cc,2, 0x36090e0,3, 0x36090f0,1, 0x3609100,16, 0x3610000,8, 0x3610800,12, 0x3610844,6, 0x3610880,8, 0x36108a4,1, 0x36108c0,7, 0x36108e0,7, 0x3610900,7, 0x3610920,7, 0x3610940,3, 0x3610980,12, 0x3610a00,27, 0x3610a80,4, 0x3610ac0,25, 0x3610b40,6, 0x3610b60,4, 0x3610b74,11, 0x3610ba4,6, 0x3610c00,1, 0x3612000,75, 0x3612400,94, 0x3612580,7, 0x3612600,41, 0x3612700,2, 0x3612720,19, 0x3612800,1, 0x3612900,36, 0x3613000,3, 0x3613080,6, 0x36130a0,6, 0x36130c0,1, 0x3613100,4, 0x3613140,9, 0x3613180,2, 0x3614000,3, 0x3614010,5, 0x3614200,7, 0x3614220,6, 0x3614240,7, 0x3614260,6, 0x3614280,2, 0x361428c,2, 0x36142a0,2, 0x36142ac,2, 0x36142c0,7, 0x36142e0,7, 0x3614300,2, 0x361430c,2, 0x3614320,6, 0x3614400,3, 0x3614440,12, 0x3614600,7, 0x3614620,14, 0x3614680,9, 0x36146a8,12, 0x3614700,4, 0x3614720,2, 0x361472c,3, 0x3614800,3, 0x3618000,17, 0x3618080,3, 0x3618090,12, 0x3618100,5, 0x3618120,9, 0x3618200,1, 0x3618208,3, 0x3618400,15, 0x3618800,8, 0x3618824,1, 0x3618840,11, 0x3618880,9, 0x3618900,4, 0x3618920,16, 0x3618980,4, 0x36189a0,16, 0x3618a00,4, 0x3618a20,16, 0x3618a80,4, 0x3618aa0,16, 0x3618c00,3, 0x3618c10,3, 0x3618c20,3, 0x3618c30,3, 0x3618c40,3, 0x3618c50,1, 0x3618c80,3, 0x3618c90,3, 0x3618cc0,11, 0x3618d00,12, 0x3619000,128, 0x3619204,6, 0x3619400,27, 0x3619480,9, 0x36194c0,6, 0x36194e0,6, 0x3619804,1, 0x361980c,5, 0x3619840,24, 0x3619904,1, 0x361990c,5, 0x3619940,21, 0x3619a00,11, 0x3619c00,8, 0x3619c24,1, 0x3619c30,10, 0x3619c60,3, 0x361c000,20, 0x361c080,5, 0x361c0a0,5, 0x361c0c0,9, 0x361c100,9, 0x361c140,1, 0x361c400,13, 0x361c440,13, 0x361c480,3, 0x361c490,3, 0x361c4a0,18, 0x361c4ec,2, 0x361c500,1, 0x361c580,28, 0x361c600,7, 0x361c620,3, 0x361c800,15, 0x361c840,9, 0x361c880,6, 0x361c8a0,6, 0x361c900,4, 0x361c920,12, 0x361c980,3, 0x361c990,3, 0x361c9a0,4, 0x361c9c0,4, 0x361c9e0,3, 0x361c9f0,3, 0x361ca00,5, 0x361ca20,3, 0x361d000,3, 0x361d020,6, 0x361d040,2, 0x361d060,6, 0x361d080,33, 0x361d200,16, 0x361d244,1, 0x361d250,4, 0x361d280,1, 0x361d400,6, 0x361d440,9, 0x361d480,16, 0x361d500,4, 0x361d514,1, 0x361d800,5, 0x361d820,2, 0x361d840,5, 0x361d880,6, 0x361d8a0,1, 0x361d8c0,5, 0x361d8e0,16, 0x361da00,3, 0x361da10,3, 0x361da20,3, 0x361da30,3, 0x361da40,3, 0x361da50,1, 0x361da80,3, 0x361daa0,5, 0x361dac0,14, 0x361db00,1, 0x361dc00,27, 0x361dc80,9, 0x361dcc0,6, 0x361dce0,6, 0x361dd00,5, 0x361dd20,3, 0x361dd30,2, 0x361dd40,4, 0x361e000,14, 0x361e800,11, 0x361e830,7, 0x3620004,1, 0x3620014,19, 0x3620104,1, 0x3620130,4, 0x3620180,1, 0x3620188,5, 0x3620200,4, 0x3620400,4, 0x3620420,6, 0x3620480,4, 0x36204c0,10, 0x3620600,15, 0x3620640,4, 0x3620660,17, 0x36206c0,6, 0x36206e0,2, 0x36206ec,3, 0x3620700,8, 0x3620724,1, 0x3620800,20, 0x3620880,6, 0x36208a0,6, 0x36208c0,1, 0x3620900,5, 0x3620920,2, 0x3621004,1, 0x3621024,9, 0x3621080,2, 0x3621200,27, 0x3621280,4, 0x36212c0,25, 0x3621340,6, 0x3621360,2, 0x362136c,3, 0x3621380,8, 0x36213a4,2, 0x3621400,28, 0x3621480,10, 0x36214c0,2, 0x36214d4,1, 0x36214dc,1, 0x3621500,5, 0x3621524,1, 0x362152c,2, 0x3621540,3, 0x3621550,2, 0x3622004,1, 0x3622014,19, 0x3622104,1, 0x3622130,4, 0x3622180,1, 0x3622188,5, 0x3622200,4, 0x3622400,4, 0x3622420,6, 0x3622480,4, 0x36224c0,10, 0x3622600,15, 0x3622640,4, 0x3622660,17, 0x36226c0,6, 0x36226e0,2, 0x36226ec,3, 0x3622700,8, 0x3622724,1, 0x3622800,20, 0x3622880,6, 0x36228a0,6, 0x36228c0,1, 0x3622900,5, 0x3622920,2, 0x3623004,1, 0x3623024,9, 0x3623080,2, 0x3623200,27, 0x3623280,4, 0x36232c0,25, 0x3623340,6, 0x3623360,2, 0x362336c,3, 0x3623380,8, 0x36233a4,2, 0x3623400,28, 0x3623480,10, 0x36234c0,2, 0x36234d4,1, 0x36234dc,1, 0x3623500,5, 0x3623524,1, 0x362352c,2, 0x3623540,3, 0x3623550,2, 0x3624000,14, 0x3624800,15, 0x3624840,4, 0x3624860,17, 0x36248c0,6, 0x36248e0,2, 0x36248ec,3, 0x3624900,8, 0x3624924,1, 0x3624a00,12, 0x3624a40,3, 0x3624a50,5, 0x3624b00,2, 0x3624b0c,3, 0x3624b20,1, 0x3624b40,8, 0x3624b80,20, 0x3624c00,1, 0x3628004,1, 0x3628014,19, 0x3628104,1, 0x3628130,4, 0x3628180,1, 0x3628188,5, 0x3628200,4, 0x3628400,4, 0x3628420,6, 0x3628480,4, 0x36284c0,10, 0x3628600,15, 0x3628640,4, 0x3628660,17, 0x36286c0,6, 0x36286e0,2, 0x36286ec,3, 0x3628700,8, 0x3628724,1, 0x3628800,20, 0x3628880,6, 0x36288a0,6, 0x36288c0,1, 0x3628900,5, 0x3628920,2, 0x3629000,1, 0x3629024,1, 0x362902c,7, 0x3629084,1, 0x3629094,6, 0x36290c0,2, 0x3629200,27, 0x3629280,4, 0x36292c0,25, 0x3629340,6, 0x3629360,2, 0x362936c,3, 0x3629380,8, 0x36293a4,2, 0x3629400,36, 0x3629500,10, 0x3629540,2, 0x3629554,1, 0x362955c,1, 0x3629580,3, 0x3629590,2, 0x362a004,1, 0x362a014,19, 0x362a104,1, 0x362a130,4, 0x362a180,1, 0x362a188,5, 0x362a200,4, 0x362a400,4, 0x362a420,6, 0x362a480,4, 0x362a4c0,10, 0x362a600,15, 0x362a640,4, 0x362a660,17, 0x362a6c0,6, 0x362a6e0,2, 0x362a6ec,3, 0x362a700,8, 0x362a724,1, 0x362a800,20, 0x362a880,6, 0x362a8a0,6, 0x362a8c0,1, 0x362a900,5, 0x362a920,2, 0x362b000,1, 0x362b024,1, 0x362b02c,7, 0x362b084,1, 0x362b094,6, 0x362b0c0,2, 0x362b200,27, 0x362b280,4, 0x362b2c0,25, 0x362b340,6, 0x362b360,2, 0x362b36c,3, 0x362b380,8, 0x362b3a4,2, 0x362b400,36, 0x362b500,10, 0x362b540,2, 0x362b554,1, 0x362b55c,1, 0x362b580,3, 0x362b590,2, 0x362c000,14, 0x362c800,15, 0x362c840,4, 0x362c860,17, 0x362c8c0,6, 0x362c8e0,2, 0x362c8ec,3, 0x362c900,8, 0x362c924,1, 0x362ca00,12, 0x362ca40,3, 0x362ca50,5, 0x3630000,14, 0x3630800,4, 0x3630880,31, 0x3630900,1, 0x3630908,2, 0x3630920,5, 0x3630940,8, 0x3630a00,27, 0x3630a80,4, 0x3630ac0,25, 0x3630b40,6, 0x3630b60,4, 0x3630b74,11, 0x3630ba4,1, 0x3630c00,3, 0x3630c40,12, 0x3630c80,3, 0x3634000,14, 0x3634800,19, 0x3634850,13, 0x3634888,9, 0x36348b0,2, 0x3634a00,27, 0x3634a80,4, 0x3634ac0,25, 0x3634b40,6, 0x3634b60,4, 0x3634b74,11, 0x3634ba4,1, 0x3634c00,3, 0x3634c40,12, 0x3638000,2, 0x3638080,1, 0x3638088,15, 0x3640000,1, 0x3642000,1020, 0x3644000,1020, 0x3646000,1020, 0x3648000,65, 0x3648200,5, 0x3648220,5, 0x3648240,6, 0x3648260,6, 0x3648280,4, 0x36482a0,7, 0x36482c0,8, 0x3648300,28, 0x3648384,1, 0x364838c,3, 0x3648400,65, 0x3648600,5, 0x3648620,5, 0x3648640,6, 0x3648660,6, 0x3648680,4, 0x36486a0,7, 0x36486c0,8, 0x3648700,28, 0x3648784,1, 0x364878c,3, 0x3648800,65, 0x3648a00,5, 0x3648a20,5, 0x3648a40,6, 0x3648a60,6, 0x3648a80,4, 0x3648aa0,7, 0x3648ac0,8, 0x3648b00,28, 0x3648b84,1, 0x3648b8c,3, 0x3648c00,20, 0x3649000,3, 0x3649040,9, 0x3649080,10, 0x36490c0,2, 0x36490cc,2, 0x36490e0,3, 0x36490f0,1, 0x3649100,16, 0x3650000,8, 0x3650800,12, 0x3650844,6, 0x3650880,8, 0x36508a4,1, 0x36508c0,7, 0x36508e0,7, 0x3650900,7, 0x3650920,7, 0x3650940,3, 0x3650980,12, 0x3650a00,27, 0x3650a80,4, 0x3650ac0,25, 0x3650b40,6, 0x3650b60,4, 0x3650b74,11, 0x3650ba4,6, 0x3650c00,1, 0x3652000,75, 0x3652400,94, 0x3652580,7, 0x3652600,41, 0x3652700,2, 0x3652720,19, 0x3652800,1, 0x3652900,36, 0x3653000,3, 0x3653080,6, 0x36530a0,6, 0x36530c0,1, 0x3653100,4, 0x3653140,9, 0x3653180,2, 0x3654000,3, 0x3654010,5, 0x3654200,7, 0x3654220,6, 0x3654240,7, 0x3654260,6, 0x3654280,2, 0x365428c,2, 0x36542a0,2, 0x36542ac,2, 0x36542c0,7, 0x36542e0,7, 0x3654300,2, 0x365430c,2, 0x3654320,6, 0x3654400,3, 0x3654440,12, 0x3654600,7, 0x3654620,14, 0x3654680,9, 0x36546a8,12, 0x3654700,4, 0x3654720,2, 0x365472c,3, 0x3654800,3, 0x3658000,17, 0x3658080,3, 0x3658090,12, 0x3658100,5, 0x3658120,9, 0x3658200,1, 0x3658208,3, 0x3658400,15, 0x3658800,8, 0x3658824,1, 0x3658840,11, 0x3658880,9, 0x3658900,4, 0x3658920,16, 0x3658980,4, 0x36589a0,16, 0x3658a00,4, 0x3658a20,16, 0x3658a80,4, 0x3658aa0,16, 0x3658c00,3, 0x3658c10,3, 0x3658c20,3, 0x3658c30,3, 0x3658c40,3, 0x3658c50,1, 0x3658c80,3, 0x3658c90,3, 0x3658cc0,11, 0x3658d00,12, 0x3659000,128, 0x3659204,6, 0x3659400,27, 0x3659480,9, 0x36594c0,6, 0x36594e0,6, 0x3659804,1, 0x365980c,5, 0x3659840,24, 0x3659904,1, 0x365990c,5, 0x3659940,21, 0x3659a00,11, 0x3659c00,8, 0x3659c24,1, 0x3659c30,10, 0x3659c60,3, 0x365c000,20, 0x365c080,5, 0x365c0a0,5, 0x365c0c0,9, 0x365c100,9, 0x365c140,1, 0x365c400,13, 0x365c440,13, 0x365c480,3, 0x365c490,3, 0x365c4a0,18, 0x365c4ec,2, 0x365c500,1, 0x365c580,28, 0x365c600,7, 0x365c620,3, 0x365c800,15, 0x365c840,9, 0x365c880,6, 0x365c8a0,6, 0x365c900,4, 0x365c920,12, 0x365c980,3, 0x365c990,3, 0x365c9a0,4, 0x365c9c0,4, 0x365c9e0,3, 0x365c9f0,3, 0x365ca00,5, 0x365ca20,3, 0x365d000,3, 0x365d020,6, 0x365d040,2, 0x365d060,6, 0x365d080,33, 0x365d200,16, 0x365d244,1, 0x365d250,4, 0x365d280,1, 0x365d400,6, 0x365d440,9, 0x365d480,16, 0x365d500,4, 0x365d514,1, 0x365d800,5, 0x365d820,2, 0x365d840,5, 0x365d880,6, 0x365d8a0,1, 0x365d8c0,5, 0x365d8e0,16, 0x365da00,3, 0x365da10,3, 0x365da20,3, 0x365da30,3, 0x365da40,3, 0x365da50,1, 0x365da80,3, 0x365daa0,5, 0x365dac0,14, 0x365db00,1, 0x365dc00,27, 0x365dc80,9, 0x365dcc0,6, 0x365dce0,6, 0x365dd00,5, 0x365dd20,3, 0x365dd30,2, 0x365dd40,4, 0x365e000,14, 0x365e800,11, 0x365e830,7, 0x3660004,1, 0x3660014,19, 0x3660104,1, 0x3660130,4, 0x3660180,1, 0x3660188,5, 0x3660200,4, 0x3660400,4, 0x3660420,6, 0x3660480,4, 0x36604c0,10, 0x3660600,15, 0x3660640,4, 0x3660660,17, 0x36606c0,6, 0x36606e0,2, 0x36606ec,3, 0x3660700,8, 0x3660724,1, 0x3660800,20, 0x3660880,6, 0x36608a0,6, 0x36608c0,1, 0x3660900,5, 0x3660920,2, 0x3661004,1, 0x3661024,9, 0x3661080,2, 0x3661200,27, 0x3661280,4, 0x36612c0,25, 0x3661340,6, 0x3661360,2, 0x366136c,3, 0x3661380,8, 0x36613a4,2, 0x3661400,28, 0x3661480,10, 0x36614c0,2, 0x36614d4,1, 0x36614dc,1, 0x3661500,5, 0x3661524,1, 0x366152c,2, 0x3661540,3, 0x3661550,2, 0x3662004,1, 0x3662014,19, 0x3662104,1, 0x3662130,4, 0x3662180,1, 0x3662188,5, 0x3662200,4, 0x3662400,4, 0x3662420,6, 0x3662480,4, 0x36624c0,10, 0x3662600,15, 0x3662640,4, 0x3662660,17, 0x36626c0,6, 0x36626e0,2, 0x36626ec,3, 0x3662700,8, 0x3662724,1, 0x3662800,20, 0x3662880,6, 0x36628a0,6, 0x36628c0,1, 0x3662900,5, 0x3662920,2, 0x3663004,1, 0x3663024,9, 0x3663080,2, 0x3663200,27, 0x3663280,4, 0x36632c0,25, 0x3663340,6, 0x3663360,2, 0x366336c,3, 0x3663380,8, 0x36633a4,2, 0x3663400,28, 0x3663480,10, 0x36634c0,2, 0x36634d4,1, 0x36634dc,1, 0x3663500,5, 0x3663524,1, 0x366352c,2, 0x3663540,3, 0x3663550,2, 0x3664000,14, 0x3664800,15, 0x3664840,4, 0x3664860,17, 0x36648c0,6, 0x36648e0,2, 0x36648ec,3, 0x3664900,8, 0x3664924,1, 0x3664a00,12, 0x3664a40,3, 0x3664a50,5, 0x3664b00,2, 0x3664b0c,3, 0x3664b20,1, 0x3664b40,8, 0x3664b80,20, 0x3664c00,1, 0x3668004,1, 0x3668014,19, 0x3668104,1, 0x3668130,4, 0x3668180,1, 0x3668188,5, 0x3668200,4, 0x3668400,4, 0x3668420,6, 0x3668480,4, 0x36684c0,10, 0x3668600,15, 0x3668640,4, 0x3668660,17, 0x36686c0,6, 0x36686e0,2, 0x36686ec,3, 0x3668700,8, 0x3668724,1, 0x3668800,20, 0x3668880,6, 0x36688a0,6, 0x36688c0,1, 0x3668900,5, 0x3668920,2, 0x3669000,1, 0x3669024,1, 0x366902c,7, 0x3669084,1, 0x3669094,6, 0x36690c0,2, 0x3669200,27, 0x3669280,4, 0x36692c0,25, 0x3669340,6, 0x3669360,2, 0x366936c,3, 0x3669380,8, 0x36693a4,2, 0x3669400,36, 0x3669500,10, 0x3669540,2, 0x3669554,1, 0x366955c,1, 0x3669580,3, 0x3669590,2, 0x366a004,1, 0x366a014,19, 0x366a104,1, 0x366a130,4, 0x366a180,1, 0x366a188,5, 0x366a200,4, 0x366a400,4, 0x366a420,6, 0x366a480,4, 0x366a4c0,10, 0x366a600,15, 0x366a640,4, 0x366a660,17, 0x366a6c0,6, 0x366a6e0,2, 0x366a6ec,3, 0x366a700,8, 0x366a724,1, 0x366a800,20, 0x366a880,6, 0x366a8a0,6, 0x366a8c0,1, 0x366a900,5, 0x366a920,2, 0x366b000,1, 0x366b024,1, 0x366b02c,7, 0x366b084,1, 0x366b094,6, 0x366b0c0,2, 0x366b200,27, 0x366b280,4, 0x366b2c0,25, 0x366b340,6, 0x366b360,2, 0x366b36c,3, 0x366b380,8, 0x366b3a4,2, 0x366b400,36, 0x366b500,10, 0x366b540,2, 0x366b554,1, 0x366b55c,1, 0x366b580,3, 0x366b590,2, 0x366c000,14, 0x366c800,15, 0x366c840,4, 0x366c860,17, 0x366c8c0,6, 0x366c8e0,2, 0x366c8ec,3, 0x366c900,8, 0x366c924,1, 0x366ca00,12, 0x366ca40,3, 0x366ca50,5, 0x3670000,14, 0x3670800,4, 0x3670880,31, 0x3670900,1, 0x3670908,2, 0x3670920,5, 0x3670940,8, 0x3670a00,27, 0x3670a80,4, 0x3670ac0,25, 0x3670b40,6, 0x3670b60,4, 0x3670b74,11, 0x3670ba4,1, 0x3670c00,3, 0x3670c40,12, 0x3670c80,3, 0x3674000,14, 0x3674800,19, 0x3674850,13, 0x3674888,9, 0x36748b0,2, 0x3674a00,27, 0x3674a80,4, 0x3674ac0,25, 0x3674b40,6, 0x3674b60,4, 0x3674b74,11, 0x3674ba4,1, 0x3674c00,3, 0x3674c40,12, 0x3678000,2, 0x3678080,1, 0x3678088,15, mstflint-4.26.0/mstdump/mstdump_dbs/Makefile.in0000644000175000017500000004021314522641740021761 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mstdump/mstdump_dbs DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_mstregdump_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(mstregdumpdir)" DATA = $(dist_mstregdump_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- mstregdumpdir = $(datadir)/@PACKAGE@ dist_mstregdump_DATA = $(srcdir)/*.csv all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mstdump/mstdump_dbs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mstdump/mstdump_dbs/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_mstregdumpDATA: $(dist_mstregdump_DATA) @$(NORMAL_INSTALL) @list='$(dist_mstregdump_DATA)'; test -n "$(mstregdumpdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mstregdumpdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mstregdumpdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mstregdumpdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mstregdumpdir)" || exit $$?; \ done uninstall-dist_mstregdumpDATA: @$(NORMAL_UNINSTALL) @list='$(dist_mstregdump_DATA)'; test -n "$(mstregdumpdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mstregdumpdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(mstregdumpdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_mstregdumpDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_mstregdumpDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_mstregdumpDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_mstregdumpDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mstdump/crd_lib/0000755000175000017500000000000014522641740016771 5ustar tzafrirctzafrircmstflint-4.26.0/mstdump/crd_lib/Makefile.am0000755000175000017500000000343214522641732021033 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common $(COMPILER_FPIC) AM_CFLAGS = -Wall -W -g -MP -MD -pipe -Wno-unused-function $(COMPILER_FPIC) -DMTCR_EXPORT -DMST_UL -DDATA_PATH=\"$(pkgdatadir)\" $(COMPILER_FPIC) noinst_LIBRARIES = libcrdump.a libcrdump_a_SOURCES = crdump.c crdump.h mstflint-4.26.0/mstdump/crd_lib/crdump.h0000644000175000017500000001007014522641732020433 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _CRDUMP_H_ #define _CRDUMP_H_ #include #include #include #include #include #ifdef __cplusplus extern "C" { #endif enum crd_return_code { CRD_OK = 0, CRD_MEM_ALLOCATION_ERR, CRD_CR_READ_ERR, CRD_INVALID_PARM, CRD_UNKOWN_DEVICE, CRD_CSV_BAD_FORMAT, CRD_CONF_BAD_FORMAT, CRD_OPEN_FILE_ERROR, CRD_SKIP, CRD_NOT_SUPPORTED, CRD_EXCEED_VALUE, CRD_CAUSE_BIT, CRD_TLV_SIGNATURE_INVALID, CRD_TLV_ADDRESS_INVALID, }; typedef struct crd_ctxt crd_ctxt_t; typedef struct crd_dword { u_int32_t addr; u_int32_t data; } crd_dword_t; typedef void (*crd_callback_t)(crd_dword_t*); // call back #ifndef IN #define IN #endif #ifndef OUT #define OUT #endif #ifndef INOUT #define INOUT #endif #ifdef _MSC_VER #define CRD_DLL_EXPORT __declspec(dllexport) #else #define CRD_DLL_EXPORT #endif /* Must be called before others methods to allocate memory and store all needed configuration */ CRD_DLL_EXPORT int crd_init(OUT crd_ctxt_t** context, IN mfile* mf, IN int is_full, IN int cause, IN int cause_off, IN const char* db_path, const char* csv_path_from_user); // fill device type, and number of dewords according to // the is_full /* Store cr space length at arr_size */ CRD_DLL_EXPORT int crd_get_dword_num(IN crd_ctxt_t* context, OUT u_int32_t* arr_size); /* Store all addresses are dword_arr array */ CRD_DLL_EXPORT int crd_get_addr_list(IN crd_ctxt_t* context, OUT crd_dword_t* dword_arr); // caller well allocate the array and addresses // will be filled. /* Store all addresses and data in dword_arr, if func is not null, it will be called on each dword */ CRD_DLL_EXPORT int crd_dump_data(IN crd_ctxt_t* context, OUT crd_dword_t* dword_arr, IN crd_callback_t func); // values will be filled. /* Return string representation of the error code */ CRD_DLL_EXPORT const char* crd_err_str(int rc); /* Free context */ CRD_DLL_EXPORT void crd_free(IN crd_ctxt_t* context); #ifdef __cplusplus } #endif #endif // _CRDUMP_H_ mstflint-4.26.0/mstdump/crd_lib/crdump.c0000644000175000017500000007560614522641732020446 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Alaa Al-barari Abarari@asaltech.com * Version: $Id: crdump.c 20-Feb-2013 $ * */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #define CRD_CHECK_NULL(var) \ if (var == NULL) \ do \ { \ CRD_DEBUG("Sent %s is null!\n", #var); \ return CRD_INVALID_PARM; \ } while (0) #if defined(__WIN__) #define strcasecmp _stricmp #define CRD_MTCR_DLL_NAME "libmtcr-1.dll" #endif //#define CRD_DEBUG_BUILD #ifdef CRD_DEBUG_BUILD #define CRD_DEBUG(fmt, ...) printf("%s:%s:%d: " fmt, __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__); #else #define CRD_DEBUG(fmt, ...) #endif #define CRD_EMPTY "EMPTY" #define CRD_UNKOWN "UNKNOWN" #define CRD_MAXLINESIZE 1024 #define CRD_MAXFLDS 3 /* maximum possible number of fields */ #define CRD_MAXFLDSIZE 32 /* longest possible field + 1 = 31 byte field */ #define CRD_CSV_PATH_SIZE 1024 #define CRD_MAX_REG_ACCESS_BLOCK 256 // Scratchpad 2 #define CRD_SP2_TLV_FIRST_ADDRESS 0x18 /* This first tlv address is valid only for HCA */ #define CRD_SP2_TLV_SIGNATURE_VALUE 0x54306F6C /* signature value is T0ol */ typedef struct crd_sp2_tlv { u_int32_t signature; u_int32_t size; u_int32_t writable; u_int32_t fw; u_int32_t version; u_int32_t address; } crd_sp2_tlv_t; typedef struct crd_parsed_csv { u_int32_t addr; u_int32_t len; char enable_addr[100]; } crd_parsed_csv_t; struct crd_ctxt { mfile* mf; u_int32_t dev_type; u_int32_t number_of_dwords; int is_full; int cause_addr; int cause_off; char csv_path[CRD_CSV_PATH_SIZE]; u_int32_t block_count; crd_parsed_csv_t* blocks; }; static char crd_error[CRD_CSV_PATH_SIZE + 50]; /* Store the csv file path at csv_file_path. */ static int crd_get_csv_path(IN dm_dev_id_t dev_type, OUT char* csv_file_path, IN const char* db_path, const char* csv_path_from_user); /* count number of dwords, and store all needed data from csv file at parsed_csv */ static int crd_count_double_word(IN mfile* mf, IN char* csv_file_path, OUT u_int32_t* number_of_dwords, OUT crd_parsed_csv_t blocks[], IN int is_full, IN u_int8_t read_single_dword, IN u_int8_t with_sp2); /* Fill addresses at dword_arr */ static int crd_fill_address(IN crd_ctxt_t* context, OUT crd_dword_t* dword_arr); /* Read a line from csv file */ static int crd_read_line(IN FILE* fd, OUT char* tmp); /* Tokenize line for address, len, and enable_adder */ static void crd_parse(IN char* record, IN char* delim, OUT char arr[][CRD_MAXFLDSIZE], OUT int* field_count); static int crd_update_csv_path(IN OUT char* csv_file_path, IN const char* db_path); static int crd_count_blocks(IN char* csv_file_path, OUT u_int32_t* block_count, u_int8_t read_single_dword); static int crd_count_tlv_blocks_and_dwords(IN mfile* mf, OUT u_int32_t* block_count, OUT u_int32_t* number_of_dwords); static int crd_get_tlv_from_address(IN mfile* mf, IN u_int32_t address, OUT crd_sp2_tlv_t* crd_sp2_tlv); static int crd_is_tlv_signature_valid(IN u_int32_t signature); static int crd_is_tlv_address_valid(IN u_int32_t address); static int crd_set_tlv_blocks(IN mfile* mf, OUT crd_parsed_csv_t blocks[], IN u_int32_t sp2_start_block); #if !defined(__WIN__) && !defined(MST_UL) static char* crd_trim(char* s); static char* crd_rtrim(char* s); static char* crd_ltrim(char* s); #endif #if defined(__WIN__) static int crd_replace(INOUT char* st, IN char* orig, IN char* repl); static int crd_get_exec_name_from_path(IN char* str, OUT char* exec_name); #endif int crd_init(OUT crd_ctxt_t** context, IN mfile* mf, IN int is_full, IN int cause_addr, IN int cause_off, IN const char* db_path, const char* csv_path_from_user) { dm_dev_id_t dev_type = DeviceUnknown; u_int32_t with_sp2 = 0; u_int32_t dev_id = 0; u_int32_t chip_rev = 0; u_int32_t number_of_dwords = 0; u_int32_t block_count = 0; u_int32_t sp2_number_of_dwords = 0; u_int32_t sp2_block_count = 0; u_int8_t read_single_dword = 0; char csv_file_path[CRD_CSV_PATH_SIZE] = {0x0}; int rc = CRD_OK; CRD_CHECK_NULL(mf); CRD_CHECK_NULL(context); if (cause_addr >= 0 && cause_off < 0) { CRD_DEBUG("cause_off is negative : %d ", cause_off); return CRD_INVALID_PARM; } if (cause_addr >= 0 && cause_off >= 0) { read_single_dword = 1; } CRD_DEBUG("getting device id\n"); if (dm_get_device_id(mf, &dev_type, &dev_id, &chip_rev)) { CRD_DEBUG("Failed to identify device."); return CRD_UNKOWN_DEVICE; } CRD_DEBUG("Device type : 0x%x, device id : 0x%x, chip rev : 0x%x\n", dev_type, dev_id, chip_rev); if ((rc = crd_get_csv_path(dev_type, csv_file_path, db_path, csv_path_from_user)) != CRD_OK) { return rc; } CRD_DEBUG("allocating struct\n"); *context = (crd_ctxt_t*)malloc(sizeof(crd_ctxt_t)); if (*context == NULL) { CRD_DEBUG("Failed to allocate memmory for context \n"); return CRD_MEM_ALLOCATION_ERR; } if (dm_dev_is_hca(dev_type)) { with_sp2 = 1; rc = crd_count_tlv_blocks_and_dwords(mf, &sp2_block_count, &sp2_number_of_dwords); if (rc) { return rc; } } rc = crd_count_blocks(csv_file_path, &block_count, read_single_dword); if (rc) { free(*context); return rc; } CRD_DEBUG("Block count : %d\n", block_count); (*context)->blocks = (crd_parsed_csv_t*)malloc(sizeof(crd_parsed_csv_t) * (block_count + sp2_block_count)); if ((*context)->blocks == NULL) { CRD_DEBUG("Failed to allocate memmory for csv blocks\n"); free(*context); return CRD_MEM_ALLOCATION_ERR; } rc = crd_count_double_word(mf, csv_file_path, &number_of_dwords, (*context)->blocks, is_full, read_single_dword, with_sp2); if (rc) { goto Cleanup; } mset_addr_space(mf, AS_ND_CRSPACE); CRD_DEBUG("Number of found dwords are : %d \n", number_of_dwords); (*context)->mf = mf; (*context)->dev_type = dev_type; (*context)->number_of_dwords = number_of_dwords + sp2_number_of_dwords; (*context)->is_full = is_full; (*context)->block_count = block_count + sp2_block_count; (*context)->cause_addr = cause_addr; (*context)->cause_off = cause_off; strcpy((*context)->csv_path, csv_file_path); return rc; Cleanup: crd_free(*context); return rc; } int crd_get_addr_list(IN crd_ctxt_t* context, OUT crd_dword_t* dword_arr) { int rc; CRD_CHECK_NULL(context); CRD_CHECK_NULL(dword_arr); rc = crd_fill_address(context, dword_arr); if (rc) { return rc; } return CRD_OK; } int crd_dump_data(IN crd_ctxt_t* context, OUT crd_dword_t* dword_arr, IN crd_callback_t func) { u_int32_t i = 0; u_int32_t j = 0; u_int32_t rc; u_int32_t addr; u_int32_t cause_reg = 0; int total = 0; char* data; crd_dword_t tmp_dword; CRD_CHECK_NULL(context); if (dword_arr == NULL && func == NULL) { CRD_DEBUG("Nothing to do\n"); return CRD_INVALID_PARM; } for (i = 0; i < context->block_count; i++) { if (!context->is_full && strcmp(context->blocks[i].enable_addr, CRD_EMPTY)) { continue; } data = (char*)malloc(context->blocks[i].len * sizeof(u_int32_t)); if (data == NULL) { return CRD_MEM_ALLOCATION_ERR; } memset(data, 0, context->blocks[i].len * sizeof(u_int32_t)); rc = mread4_block(context->mf, context->blocks[i].addr, (u_int32_t*)data, context->blocks[i].len * sizeof(u_int32_t)); if (context->blocks[i].len * sizeof(u_int32_t) != rc) { sprintf(crd_error, "Cr read (0x%08x) failed: %s(%d)", context->blocks[i].addr, strerror(errno), (u_int32_t)errno); free(data); return CRD_CR_READ_ERR; } for (j = 0; j < context->blocks[i].len; j++) { if ((u_int32_t)total >= context->number_of_dwords) { // dummy check tadah! CRD_DEBUG("value exceeded, something wrong in calculation!"); free(data); return CRD_EXCEED_VALUE; } addr = context->blocks[i].addr + (j * sizeof(u_int32_t)); if (context->cause_addr >= 0) { // if we want to check cause bit - read it and verify it hasn't been raised if (mread4(context->mf, context->cause_addr, &cause_reg) != sizeof(u_int32_t)) { CRD_DEBUG("Cr read (0x%08x) failed: %s(%d)\n", context->cause_addr, strerror(errno), (u_int32_t)errno); sprintf(crd_error, "Cr read (0x%08x) failed: %s(%d)", context->cause_addr, strerror(errno), (u_int32_t)errno); free(data); return CRD_CR_READ_ERR; } cause_reg = EXTRACT(cause_reg, context->cause_off, 1); if (cause_reg) { CRD_DEBUG("Cause bit set by read from address 0x%x\n", addr); sprintf(crd_error, "Cause bit set by read from address 0x%x", addr); free(data); return CRD_CAUSE_BIT; } } if (dword_arr != NULL) { dword_arr[total].addr = addr; dword_arr[total].data = ((u_int32_t*)data)[j]; } if (func != NULL) { tmp_dword.addr = addr; tmp_dword.data = ((u_int32_t*)data)[j]; func(&tmp_dword); } total += 1; } free(data); } return CRD_OK; } int crd_get_dword_num(IN crd_ctxt_t* context, OUT u_int32_t* arr_size) { CRD_CHECK_NULL(context); *arr_size = context->number_of_dwords; return CRD_OK; } static bool ends_with(char* str, char* suffix) { int str_len = strlen(str); int suffix_len = strlen(suffix); int i = 0; bool ends_with = false; if (suffix_len <= str_len) { for (i = 0; i < suffix_len; i++) { if (str[i + str_len - suffix_len] != suffix[i]) { ends_with = false; break; } ends_with = true; } } return ends_with; } static bool is_valid_csv(char* csv_path_from_user) { if (!ends_with((char*)csv_path_from_user, ".csv")) { return false; // not a .csv file } FILE* file = fopen(csv_path_from_user, "r"); if (!file) { return false; // file does not exist } // check the format is valid char line[256] = {0}; // char* line = calloc(256, sizeof(char)); // if (line == NULL) { // goto cleanup; // } int buf_len = sizeof(line); size_t len = 0; size_t i = 0; bool ret = true; // assume format is valid int count = 0; int digit_counter = 0; while (fgets(line, buf_len, file) != NULL) { if (line[0] == '#') { continue; // skipping lines that are a comment } len = strlen(line); digit_counter = 0; if (len > 1) { // skip blank lines count = 0; for (i = 0; i < len; i++) { if (line[i] == ',') { count++; } if (isxdigit(line[i]) != 0 && count < 1) { digit_counter++; } } if ((count < 1) || (count > 2) || (digit_counter < 2) || (digit_counter > 9)) { // support a,b or a,b, format ret = false; goto cleanup; } } } cleanup: fclose(file); return ret; } static int crd_get_csv_path(IN dm_dev_id_t dev_type, OUT char* csv_file_path, IN const char* db_path, const char* csv_path_from_user) { const int dev_name_len = 100; char dev_name[100] = {0}; int rc; strncpy(dev_name, dm_dev_type2str(dev_type), dev_name_len - 1); if (!strcmp(dev_name, "Unknown Device")) { return CRD_UNKOWN_DEVICE; } // if user specified DB path via cmdline, use it instead of the DB in the default location. // check the user gave a valid path. if (strlen(csv_path_from_user) > 0) { if (is_valid_csv((char*)csv_path_from_user)) { strcpy(csv_file_path, csv_path_from_user); return CRD_OK; } else { sprintf(crd_error, "Invalid csv file: %s\n", csv_path_from_user); return CRD_CSV_BAD_FORMAT; } } else // user did not specify DB path { rc = crd_update_csv_path(csv_file_path, db_path); if (rc != CRD_OK) { return rc; } strcat(csv_file_path, dev_name); strcat(csv_file_path, ".csv"); return CRD_OK; } return 0; } static void crd_parse(IN char* record, IN char* delim, OUT char arr[][CRD_MAXFLDSIZE], OUT int* field_count) { char* p = strtok(record, delim); int field = 0; strcpy(arr[0], "\0"); strcpy(arr[1], "\0"); strcpy(arr[2], "\0"); while (p) { strcpy(arr[field], p); field++; p = strtok(NULL, delim); } *field_count = field; } static int crd_is_tlv_signature_valid(IN u_int32_t signature) { int is_signature_valid = CRD_TLV_SIGNATURE_INVALID; if (signature == CRD_SP2_TLV_SIGNATURE_VALUE) { is_signature_valid = CRD_OK; } return is_signature_valid; } static int crd_is_tlv_address_valid(IN u_int32_t address) { int is_address_valid = CRD_TLV_ADDRESS_INVALID; if ((int)address != -1) { is_address_valid = CRD_OK; } return is_address_valid; } static int crd_count_tlv_blocks_and_dwords(IN mfile* mf, OUT u_int32_t* block_count, OUT u_int32_t* number_of_dwords) { int rc = 0; crd_sp2_tlv_t current_tlv; u_int32_t tlv_signature = 0; u_int32_t tlv_address = 0; *block_count = 0; *number_of_dwords = 0; rc = crd_get_tlv_from_address(mf, CRD_SP2_TLV_FIRST_ADDRESS, ¤t_tlv); if (rc) { return rc; } tlv_signature = current_tlv.signature; tlv_address = current_tlv.address; while (crd_is_tlv_signature_valid(tlv_signature) == CRD_OK && crd_is_tlv_address_valid(tlv_address) == CRD_OK) { (*block_count)++; (*number_of_dwords) += current_tlv.size; rc = crd_get_tlv_from_address(mf, current_tlv.address, ¤t_tlv); if (rc) { return rc; } tlv_signature = current_tlv.signature; tlv_address = current_tlv.address; } return CRD_OK; } static int crd_set_tlv_blocks(IN mfile* mf, OUT crd_parsed_csv_t blocks[], IN u_int32_t sp2_start_block) { int rc = 0; crd_sp2_tlv_t current_tlv; u_int32_t tlv_signature = 0; u_int32_t tlv_address = 0; u_int32_t block_number = sp2_start_block; rc = crd_get_tlv_from_address(mf, CRD_SP2_TLV_FIRST_ADDRESS, ¤t_tlv); if (rc) { return rc; } tlv_signature = current_tlv.signature; tlv_address = current_tlv.address; while (crd_is_tlv_signature_valid(tlv_signature) == CRD_OK && crd_is_tlv_address_valid(tlv_address) == CRD_OK) { blocks[block_number].addr = current_tlv.address; blocks[block_number].len = current_tlv.size; strcpy(blocks[block_number].enable_addr, CRD_EMPTY); block_number++; rc = crd_get_tlv_from_address(mf, current_tlv.address, ¤t_tlv); if (rc) { return rc; } tlv_signature = current_tlv.signature; tlv_address = current_tlv.address; } return CRD_OK; } static int crd_get_tlv_from_address(IN mfile* mf, IN u_int32_t address, OUT crd_sp2_tlv_t* crd_sp2_tlv) { u_int32_t data = 0; // read signature if (mread4(mf, address, &data) != sizeof(u_int32_t)) { CRD_DEBUG("Cr read (0x%08x) failed: %s(%d)\n", address, strerror(errno), (u_int32_t)errno); sprintf(crd_error, "Cr read (0x%08x) failed: %s(%d)", address, strerror(errno), (u_int32_t)errno); return CRD_CR_READ_ERR; } else { crd_sp2_tlv->signature = data; } // read size, writable, fw, version if (mread4(mf, address + 4, &data) != sizeof(u_int32_t)) { CRD_DEBUG("Cr read (0x%08x) failed: %s(%d)\n", address + 4, strerror(errno), (u_int32_t)errno); sprintf(crd_error, "Cr read (0x%08x) failed: %s(%d)", address + 4, strerror(errno), (u_int32_t)errno); return CRD_CR_READ_ERR; } else { crd_sp2_tlv->size = EXTRACT(data, 0, 20); crd_sp2_tlv->writable = EXTRACT(data, 20, 1); crd_sp2_tlv->fw = EXTRACT(data, 21, 1); crd_sp2_tlv->version = EXTRACT(data, 28, 4); } // read address if (mread4(mf, address + 8, &data) != sizeof(u_int32_t)) { CRD_DEBUG("Cr read (0x%08x) failed: %s(%d)\n", address + 8, strerror(errno), (u_int32_t)errno); sprintf(crd_error, "Cr read (0x%08x) failed: %s(%d)", address + 8, strerror(errno), (u_int32_t)errno); return CRD_CR_READ_ERR; } else { crd_sp2_tlv->address = data; } return CRD_OK; } static int crd_count_blocks(IN char* csv_file_path, OUT u_int32_t* block_count, u_int8_t read_single_dword) { char tmp[1024] = {0x0}; char arr[CRD_MAXFLDS][CRD_MAXFLDSIZE]; int field_count = 0; *block_count = 0; CRD_DEBUG("CSV file path : %s\n", csv_file_path); FILE* fd = fopen(csv_file_path, "r"); if (fd == NULL) { CRD_DEBUG("Failed to open csv file : '%s'\n", csv_file_path); sprintf(crd_error, "Failed to open csv file : '%s'", csv_file_path); return CRD_OPEN_FILE_ERROR; } while (!feof(fd)) { int read_line_result = crd_read_line(fd, tmp); if (read_line_result == CRD_SKIP) { continue; } // if the given address has invalid char in it if (read_line_result == CRD_CSV_BAD_FORMAT) { CRD_DEBUG("CSV File has bad format - invalid char in address"); sprintf(crd_error, "CSV File has bad format"); fclose(fd); return CRD_CSV_BAD_FORMAT; } crd_parse(tmp, ",", arr, &field_count); /* whack record into fields */ if (field_count < 2) { CRD_DEBUG("CSV File has bad format, line : %s\n", tmp); sprintf(crd_error, "CSV File has bad format, line : %s", tmp); fclose(fd); return CRD_CSV_BAD_FORMAT; } if (read_single_dword) { *block_count += atoi(arr[1]); } else { *block_count += 1; } } fclose(fd); return CRD_OK; } static int crd_count_double_word(IN mfile* mf, IN char* csv_file_path, OUT u_int32_t* number_of_dwords, OUT crd_parsed_csv_t blocks[], IN int is_full, IN u_int8_t read_single_dword, IN u_int8_t with_sp2) { int rc = 0; int field_count = 0; int block_count = 0; u_int32_t addr = 0; u_int32_t len = 0; u_int32_t i = 0; char enable_addr[100] = {0}; char tmp[1024] = {0x0}; char arr[CRD_MAXFLDS][CRD_MAXFLDSIZE]; *number_of_dwords = 0; CRD_DEBUG("CSV file path : %s\n", csv_file_path); FILE* fd = fopen(csv_file_path, "r"); if (fd == NULL) { CRD_DEBUG("Failed to open csv file : '%s'\n", csv_file_path); sprintf(crd_error, "Failed to open csv file : '%s'", csv_file_path); return CRD_OPEN_FILE_ERROR; } while (!feof(fd)) { int read_line_result = crd_read_line(fd, tmp); if (read_line_result == CRD_SKIP) { continue; } // if the given address has invalid char in it if (read_line_result == CRD_CSV_BAD_FORMAT) { CRD_DEBUG("CSV File has bad format - invalid char in address"); sprintf(crd_error, "CSV File has bad format"); fclose(fd); return CRD_CSV_BAD_FORMAT; } crd_parse(tmp, ",", arr, &field_count); /* whack record into fields */ if (field_count < 2) { CRD_DEBUG("CSV File has bad format, line : %s\n", tmp); sprintf(crd_error, "CSV File has bad format, line : %s", tmp); fclose(fd); return CRD_CSV_BAD_FORMAT; } addr = (u_int32_t)strtol(arr[0], NULL, 0); len = atoi(arr[1]); if (!read_single_dword) { blocks[block_count].addr = addr; blocks[block_count].len = len; if (field_count > 2) { strcpy(blocks[block_count].enable_addr, arr[2]); if (is_full || (!is_full && !strcmp(blocks[block_count].enable_addr, CRD_EMPTY))) { *number_of_dwords += len; } } else { strcpy(blocks[block_count].enable_addr, CRD_EMPTY); *number_of_dwords += len; } block_count += 1; } else { if (field_count > 2) { strcpy(enable_addr, arr[2]); } else { strcpy(enable_addr, CRD_EMPTY); } if (is_full || (!is_full && !strcmp(enable_addr, CRD_EMPTY))) { *number_of_dwords += len; } for (i = 0; i < len; i++) { blocks[block_count].addr = addr; blocks[block_count].len = 1; strcpy(blocks[block_count].enable_addr, enable_addr); block_count += 1; addr += 4; } } } fclose(fd); if (with_sp2) { rc = crd_set_tlv_blocks(mf, blocks, block_count); if (rc) { return rc; } } return CRD_OK; } static int crd_fill_address(IN crd_ctxt_t* context, OUT crd_dword_t* dword_arr) { u_int32_t i = 0; u_int32_t j = 0; int total = 0; for (i = 0; i < context->block_count; i++) { for (j = 0; j < context->blocks[i].len; j++) { // CRD_UNKOWN, CRD_EMPTY if (!context->is_full && strcmp(context->blocks[i].enable_addr, CRD_EMPTY)) { break; } if ((u_int32_t)total >= context->number_of_dwords) { CRD_DEBUG("value exceeded, something wrong in calculation!"); return CRD_EXCEED_VALUE; } dword_arr[total].addr = context->blocks[i].addr + (j * 4); total += 1; } } return CRD_OK; } static int crd_read_line(IN FILE* fd, OUT char* tmp) { int i = 0; int j = 0; int has_comma = 0; for (i = 0; i < CRD_MAXLINESIZE;) { // This loop to read line by line no matter the length of the line. if (!feof(fd)) { int c = fgetc(fd); if (c == '#') { if (!fgets(tmp, 300, fd)) { // Avoid warning } tmp[0] = 0; continue; } else if (c == '\r') { break; } else if (c == '\n') { break; } else if (feof(fd)) { break; } else if (c == ' ') { continue; } else if (!((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f')) && !(i == 1 && c == 'x') && !(has_comma < 2 && c == ',')) { printf("Error - the character %c is not valid for address!\n", c); return CRD_CSV_BAD_FORMAT; } else { if (c == ',') { has_comma++; } j++; tmp[i] = c; i++; } } else { return CRD_SKIP; } } if (!j) { return CRD_SKIP; } tmp[i] = 0; return CRD_OK; } #if defined(__WIN__) static int crd_replace(INOUT char* st, IN char* orig, IN char* repl) { char buffer[CRD_CSV_PATH_SIZE] = {0x0}; char* ch; if (!(ch = strstr(st, orig))) { return CRD_OK; } strncpy(buffer, st, ch - st); buffer[ch - st] = 0; sprintf(buffer + (ch - st), "%s%s", repl, ch + strlen(orig)); strcpy(st, buffer); return CRD_OK; } static int crd_get_exec_name_from_path(IN char* str, OUT char* exec_name) { char* tmp_str = (char*)malloc(sizeof(char) * (strlen(str) + 1)); if (tmp_str == NULL) { CRD_DEBUG("Failed to allocate memmory\n"); return CRD_MEM_ALLOCATION_ERR; } char* pch; strcpy(tmp_str, str); pch = strtok(tmp_str, "\\"); while (pch != NULL) { strcpy(exec_name, pch); pch = strtok(NULL, "\\"); } free(tmp_str); return CRD_OK; } #endif #if !defined(__WIN__) && !defined(MST_UL) static char* crd_ltrim(char* s) { while (isspace(*s)) { s++; } return s; } static char* crd_rtrim(char* s) { char* back; int len = strlen(s); if (len == 0) { return (s); } back = s + len; while (isspace(*--back)) { ; } *(back + 1) = '\0'; return s; } static char* crd_trim(char* s) { return crd_rtrim(crd_ltrim(s)); } #endif static int crd_update_csv_path(IN OUT char* csv_file_path, IN const char* db_path) { int found = 0; #ifdef __WIN__ char exec_name[CRD_CSV_PATH_SIZE]; (void)db_path; GetModuleFileName(GetModuleHandle(CRD_MTCR_DLL_NAME), csv_file_path, CRD_CSV_PATH_SIZE); crd_get_exec_name_from_path(csv_file_path, exec_name); crd_replace(csv_file_path, exec_name, "mstdump_dbs\\"); found = 1; #elif defined MST_UL (void)db_path; strcat(csv_file_path, DATA_PATH "/"); found = 1; #else char conf_path[256] = ROOT_PATH; char data_path[CRD_CSV_PATH_SIZE] = {0x0}; char prefix[CRD_CSV_PATH_SIZE] = {0x0}; char* tmp_value = NULL; char line[CRD_MAXLINESIZE] = {0}; FILE* fd; if (db_path != NULL && *db_path != '\0') { strncpy(csv_file_path, db_path, CRD_CSV_PATH_SIZE - 1); return CRD_OK; } strcat(conf_path, "etc/mft/mft.conf"); fd = fopen(conf_path, "r"); if (fd == NULL) { CRD_DEBUG("Failed to open conf file : %s\n", conf_path); sprintf(crd_error, "Failed to open conf file : %s", conf_path); return CRD_OPEN_FILE_ERROR; } while ((fgets(line, CRD_MAXLINESIZE, fd))) { if (strstr(line, "mstdump_dbs") != NULL) { tmp_value = strtok(line, "="); if (tmp_value != NULL) { tmp_value = strtok(NULL, "="); crd_trim(tmp_value); strncpy(data_path, tmp_value, CRD_CSV_PATH_SIZE - 1); } } else if (strstr(line, "mft_prefix_location") != NULL) { tmp_value = strtok(line, "="); if (tmp_value != NULL) { tmp_value = strtok(NULL, "="); crd_trim(tmp_value); strncpy(prefix, tmp_value, CRD_CSV_PATH_SIZE - 1); } } } if (strlen(prefix) && strlen(data_path)) { strcpy(csv_file_path, prefix); strcat(csv_file_path, data_path); strcat(csv_file_path, "/"); found = 1; } fclose(fd); #endif if (!found) { return CRD_CONF_BAD_FORMAT; } return CRD_OK; } void crd_free(IN crd_ctxt_t* context) { free(context->blocks); free(context); } const char* crd_err_str(int rc) { switch (rc) { case CRD_OK: return "Ok"; case CRD_MEM_ALLOCATION_ERR: return "Memory allocation error"; case CRD_CR_READ_ERR: return crd_error; case CRD_INVALID_PARM: return "Invalid parameter"; case CRD_UNKOWN_DEVICE: return "Unknown/Unsupported device"; case CRD_CSV_BAD_FORMAT: return crd_error; case CRD_CONF_BAD_FORMAT: return "Conf file has no valid mstdumb_db path."; case CRD_OPEN_FILE_ERROR: return crd_error; case CRD_SKIP: return "Skip"; case CRD_NOT_SUPPORTED: return "Not supported"; case CRD_EXCEED_VALUE: return "Value exceed"; case CRD_CAUSE_BIT: return crd_error; default: return "Unknown error"; } } mstflint-4.26.0/mstdump/crd_lib/Makefile.in0000644000175000017500000004716114522641740021047 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mstdump/crd_lib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libcrdump_a_AR = $(AR) $(ARFLAGS) libcrdump_a_LIBADD = am_libcrdump_a_OBJECTS = crdump.$(OBJEXT) libcrdump_a_OBJECTS = $(am_libcrdump_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libcrdump_a_SOURCES) DIST_SOURCES = $(libcrdump_a_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common $(COMPILER_FPIC) AM_CFLAGS = -Wall -W -g -MP -MD -pipe -Wno-unused-function $(COMPILER_FPIC) -DMTCR_EXPORT -DMST_UL -DDATA_PATH=\"$(pkgdatadir)\" $(COMPILER_FPIC) noinst_LIBRARIES = libcrdump.a libcrdump_a_SOURCES = crdump.c crdump.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mstdump/crd_lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mstdump/crd_lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libcrdump.a: $(libcrdump_a_OBJECTS) $(libcrdump_a_DEPENDENCIES) $(EXTRA_libcrdump_a_DEPENDENCIES) $(AM_V_at)-rm -f libcrdump.a $(AM_V_AR)$(libcrdump_a_AR) libcrdump.a $(libcrdump_a_OBJECTS) $(libcrdump_a_LIBADD) $(AM_V_at)$(RANLIB) libcrdump.a mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crdump.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mstdump/Makefile.in0000644000175000017500000005006014522641740017441 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mstdump DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = crd_lib crd_main mstdump_dbs all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mstdump/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mstdump/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/autom4te.cache/0000755000175000017500000000000014522641736016513 5ustar tzafrirctzafrircmstflint-4.26.0/autom4te.cache/traces.10000644000175000017500000015766014522641736020075 0ustar tzafrirctzafrircm4trace:aclocal.m4:9690: -1- m4_include([m4/ax_check_compile_flag.m4]) m4trace:configure.ac:33: -1- AC_INIT([mstflint], [4.26.0], [akiselman-org@exchange.nvidia.com]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^_?A[CHUM]_]) m4trace:configure.ac:33: -1- m4_pattern_forbid([_AC_]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) m4trace:configure.ac:33: -1- m4_pattern_allow([^AS_FLAGS$]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^_?m4_]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^dnl$]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^_?AS_]) m4trace:configure.ac:33: -1- AC_SUBST([SHELL]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([SHELL]) m4trace:configure.ac:33: -1- m4_pattern_allow([^SHELL$]) m4trace:configure.ac:33: -1- AC_SUBST([PATH_SEPARATOR]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PATH_SEPARATOR]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PATH_SEPARATOR$]) m4trace:configure.ac:33: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PACKAGE_NAME]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_NAME$]) m4trace:configure.ac:33: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PACKAGE_TARNAME]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) m4trace:configure.ac:33: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PACKAGE_VERSION]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_VERSION$]) m4trace:configure.ac:33: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PACKAGE_STRING]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_STRING$]) m4trace:configure.ac:33: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) m4trace:configure.ac:33: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([PACKAGE_URL]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_URL$]) m4trace:configure.ac:33: -1- AC_SUBST([exec_prefix], [NONE]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([exec_prefix]) m4trace:configure.ac:33: -1- m4_pattern_allow([^exec_prefix$]) m4trace:configure.ac:33: -1- AC_SUBST([prefix], [NONE]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([prefix]) m4trace:configure.ac:33: -1- m4_pattern_allow([^prefix$]) m4trace:configure.ac:33: -1- AC_SUBST([program_transform_name], [s,x,x,]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([program_transform_name]) m4trace:configure.ac:33: -1- m4_pattern_allow([^program_transform_name$]) m4trace:configure.ac:33: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([bindir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^bindir$]) m4trace:configure.ac:33: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([sbindir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^sbindir$]) m4trace:configure.ac:33: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([libexecdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^libexecdir$]) m4trace:configure.ac:33: -1- AC_SUBST([datarootdir], ['${prefix}/share']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([datarootdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^datarootdir$]) m4trace:configure.ac:33: -1- AC_SUBST([datadir], ['${datarootdir}']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([datadir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^datadir$]) m4trace:configure.ac:33: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([sysconfdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^sysconfdir$]) m4trace:configure.ac:33: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([sharedstatedir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^sharedstatedir$]) m4trace:configure.ac:33: -1- AC_SUBST([localstatedir], ['${prefix}/var']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([localstatedir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^localstatedir$]) m4trace:configure.ac:33: -1- AC_SUBST([includedir], ['${prefix}/include']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([includedir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^includedir$]) m4trace:configure.ac:33: -1- AC_SUBST([oldincludedir], ['/usr/include']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([oldincludedir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^oldincludedir$]) m4trace:configure.ac:33: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME], ['${datarootdir}/doc/${PACKAGE_TARNAME}'], ['${datarootdir}/doc/${PACKAGE}'])]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([docdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^docdir$]) m4trace:configure.ac:33: -1- AC_SUBST([infodir], ['${datarootdir}/info']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([infodir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^infodir$]) m4trace:configure.ac:33: -1- AC_SUBST([htmldir], ['${docdir}']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([htmldir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^htmldir$]) m4trace:configure.ac:33: -1- AC_SUBST([dvidir], ['${docdir}']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([dvidir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^dvidir$]) m4trace:configure.ac:33: -1- AC_SUBST([pdfdir], ['${docdir}']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([pdfdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^pdfdir$]) m4trace:configure.ac:33: -1- AC_SUBST([psdir], ['${docdir}']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([psdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^psdir$]) m4trace:configure.ac:33: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([libdir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^libdir$]) m4trace:configure.ac:33: -1- AC_SUBST([localedir], ['${datarootdir}/locale']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([localedir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^localedir$]) m4trace:configure.ac:33: -1- AC_SUBST([mandir], ['${datarootdir}/man']) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([mandir]) m4trace:configure.ac:33: -1- m4_pattern_allow([^mandir$]) m4trace:configure.ac:33: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_NAME$]) m4trace:configure.ac:33: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ @%:@undef PACKAGE_NAME]) m4trace:configure.ac:33: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) m4trace:configure.ac:33: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ @%:@undef PACKAGE_TARNAME]) m4trace:configure.ac:33: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_VERSION$]) m4trace:configure.ac:33: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ @%:@undef PACKAGE_VERSION]) m4trace:configure.ac:33: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_STRING$]) m4trace:configure.ac:33: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ @%:@undef PACKAGE_STRING]) m4trace:configure.ac:33: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) m4trace:configure.ac:33: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ @%:@undef PACKAGE_BUGREPORT]) m4trace:configure.ac:33: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_URL$]) m4trace:configure.ac:33: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */ @%:@undef PACKAGE_URL]) m4trace:configure.ac:33: -1- AC_SUBST([DEFS]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([DEFS]) m4trace:configure.ac:33: -1- m4_pattern_allow([^DEFS$]) m4trace:configure.ac:33: -1- AC_SUBST([ECHO_C]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([ECHO_C]) m4trace:configure.ac:33: -1- m4_pattern_allow([^ECHO_C$]) m4trace:configure.ac:33: -1- AC_SUBST([ECHO_N]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([ECHO_N]) m4trace:configure.ac:33: -1- m4_pattern_allow([^ECHO_N$]) m4trace:configure.ac:33: -1- AC_SUBST([ECHO_T]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([ECHO_T]) m4trace:configure.ac:33: -1- m4_pattern_allow([^ECHO_T$]) m4trace:configure.ac:33: -1- AC_SUBST([LIBS]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([LIBS]) m4trace:configure.ac:33: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.ac:33: -1- AC_SUBST([build_alias]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([build_alias]) m4trace:configure.ac:33: -1- m4_pattern_allow([^build_alias$]) m4trace:configure.ac:33: -1- AC_SUBST([host_alias]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([host_alias]) m4trace:configure.ac:33: -1- m4_pattern_allow([^host_alias$]) m4trace:configure.ac:33: -1- AC_SUBST([target_alias]) m4trace:configure.ac:33: -1- AC_SUBST_TRACE([target_alias]) m4trace:configure.ac:33: -1- m4_pattern_allow([^target_alias$]) m4trace:configure.ac:35: -1- AC_DEFINE_TRACE_LITERAL([PROJECT]) m4trace:configure.ac:35: -1- m4_pattern_allow([^PROJECT$]) m4trace:configure.ac:35: -1- AH_OUTPUT([PROJECT], [/* Define the project name. */ @%:@undef PROJECT]) m4trace:configure.ac:36: -1- AC_SUBST([PROJECT]) m4trace:configure.ac:36: -1- AC_SUBST_TRACE([PROJECT]) m4trace:configure.ac:36: -1- m4_pattern_allow([^PROJECT$]) m4trace:configure.ac:38: -1- AC_DEFINE_TRACE_LITERAL([VERSION]) m4trace:configure.ac:38: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:38: -1- AH_OUTPUT([VERSION], [/* Define the project version. */ @%:@undef VERSION]) m4trace:configure.ac:39: -1- AC_SUBST([VERSION]) m4trace:configure.ac:39: -1- AC_SUBST_TRACE([VERSION]) m4trace:configure.ac:39: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:42: -1- AC_CONFIG_AUX_DIR([config]) m4trace:configure.ac:44: -1- AM_INIT_AUTOMAKE([foreign subdir-objects]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) m4trace:configure.ac:44: -1- AM_AUTOMAKE_VERSION([1.13.4]) m4trace:configure.ac:44: -1- AC_REQUIRE_AUX_FILE([install-sh]) m4trace:configure.ac:44: -1- AC_SUBST([INSTALL_PROGRAM]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) m4trace:configure.ac:44: -1- AC_SUBST([INSTALL_SCRIPT]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([INSTALL_SCRIPT]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) m4trace:configure.ac:44: -1- AC_SUBST([INSTALL_DATA]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([INSTALL_DATA]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_DATA$]) m4trace:configure.ac:44: -1- AC_SUBST([am__isrc], [' -I$(srcdir)']) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([am__isrc]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__isrc$]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([am__isrc]) m4trace:configure.ac:44: -1- AC_SUBST([CYGPATH_W]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([CYGPATH_W]) m4trace:configure.ac:44: -1- m4_pattern_allow([^CYGPATH_W$]) m4trace:configure.ac:44: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME']) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([PACKAGE]) m4trace:configure.ac:44: -1- m4_pattern_allow([^PACKAGE$]) m4trace:configure.ac:44: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION']) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([VERSION]) m4trace:configure.ac:44: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:44: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE]) m4trace:configure.ac:44: -1- m4_pattern_allow([^PACKAGE$]) m4trace:configure.ac:44: -1- AH_OUTPUT([PACKAGE], [/* Name of package */ @%:@undef PACKAGE]) m4trace:configure.ac:44: -1- AC_DEFINE_TRACE_LITERAL([VERSION]) m4trace:configure.ac:44: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:44: -1- AH_OUTPUT([VERSION], [/* Version number of package */ @%:@undef VERSION]) m4trace:configure.ac:44: -1- AC_REQUIRE_AUX_FILE([missing]) m4trace:configure.ac:44: -1- AC_SUBST([ACLOCAL]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([ACLOCAL]) m4trace:configure.ac:44: -1- m4_pattern_allow([^ACLOCAL$]) m4trace:configure.ac:44: -1- AC_SUBST([AUTOCONF]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AUTOCONF]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AUTOCONF$]) m4trace:configure.ac:44: -1- AC_SUBST([AUTOMAKE]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AUTOMAKE]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AUTOMAKE$]) m4trace:configure.ac:44: -1- AC_SUBST([AUTOHEADER]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AUTOHEADER]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AUTOHEADER$]) m4trace:configure.ac:44: -1- AC_SUBST([MAKEINFO]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([MAKEINFO]) m4trace:configure.ac:44: -1- m4_pattern_allow([^MAKEINFO$]) m4trace:configure.ac:44: -1- AC_SUBST([install_sh]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([install_sh]) m4trace:configure.ac:44: -1- m4_pattern_allow([^install_sh$]) m4trace:configure.ac:44: -1- AC_SUBST([STRIP]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([STRIP]) m4trace:configure.ac:44: -1- m4_pattern_allow([^STRIP$]) m4trace:configure.ac:44: -1- AC_SUBST([INSTALL_STRIP_PROGRAM]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) m4trace:configure.ac:44: -1- AC_REQUIRE_AUX_FILE([install-sh]) m4trace:configure.ac:44: -1- AC_SUBST([MKDIR_P]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([MKDIR_P]) m4trace:configure.ac:44: -1- m4_pattern_allow([^MKDIR_P$]) m4trace:configure.ac:44: -1- AC_SUBST([mkdir_p], ['$(MKDIR_P)']) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([mkdir_p]) m4trace:configure.ac:44: -1- m4_pattern_allow([^mkdir_p$]) m4trace:configure.ac:44: -1- AC_SUBST([AWK]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AWK]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AWK$]) m4trace:configure.ac:44: -1- AC_SUBST([SET_MAKE]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([SET_MAKE]) m4trace:configure.ac:44: -1- m4_pattern_allow([^SET_MAKE$]) m4trace:configure.ac:44: -1- AC_SUBST([am__leading_dot]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([am__leading_dot]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__leading_dot$]) m4trace:configure.ac:44: -1- AC_SUBST([AMTAR], ['$${TAR-tar}']) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AMTAR]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AMTAR$]) m4trace:configure.ac:44: -1- AC_SUBST([am__tar]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([am__tar]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__tar$]) m4trace:configure.ac:44: -1- AC_SUBST([am__untar]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([am__untar]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__untar$]) m4trace:configure.ac:44: -1- AM_SILENT_RULES m4trace:configure.ac:44: -1- AC_SUBST([AM_V]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_V]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_V$]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_V]) m4trace:configure.ac:44: -1- AC_SUBST([AM_DEFAULT_V]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_DEFAULT_V]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_V$]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) m4trace:configure.ac:44: -1- AC_SUBST([AM_DEFAULT_VERBOSITY]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) m4trace:configure.ac:44: -1- AC_SUBST([AM_BACKSLASH]) m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_BACKSLASH]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_BACKSLASH$]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) m4trace:configure.ac:47: -1- AC_SUBST([CC]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CC]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- AC_SUBST([CFLAGS]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CFLAGS]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CFLAGS$]) m4trace:configure.ac:47: -1- AC_SUBST([LDFLAGS]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([LDFLAGS]) m4trace:configure.ac:47: -1- m4_pattern_allow([^LDFLAGS$]) m4trace:configure.ac:47: -1- AC_SUBST([LIBS]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([LIBS]) m4trace:configure.ac:47: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.ac:47: -1- AC_SUBST([CPPFLAGS]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CPPFLAGS]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:47: -1- AC_SUBST([CC]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CC]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- AC_SUBST([CC]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CC]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- AC_SUBST([CC]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CC]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- AC_SUBST([CC]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CC]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- AC_SUBST([ac_ct_CC]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([ac_ct_CC]) m4trace:configure.ac:47: -1- m4_pattern_allow([^ac_ct_CC$]) m4trace:configure.ac:47: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([EXEEXT]) m4trace:configure.ac:47: -1- m4_pattern_allow([^EXEEXT$]) m4trace:configure.ac:47: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([OBJEXT]) m4trace:configure.ac:47: -1- m4_pattern_allow([^OBJEXT$]) m4trace:configure.ac:47: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([DEPDIR]) m4trace:configure.ac:47: -1- m4_pattern_allow([^DEPDIR$]) m4trace:configure.ac:47: -1- AC_SUBST([am__include]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([am__include]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__include$]) m4trace:configure.ac:47: -1- AC_SUBST([am__quote]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([am__quote]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__quote$]) m4trace:configure.ac:47: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) m4trace:configure.ac:47: -1- AC_SUBST([AMDEP_TRUE]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([AMDEP_TRUE]) m4trace:configure.ac:47: -1- m4_pattern_allow([^AMDEP_TRUE$]) m4trace:configure.ac:47: -1- AC_SUBST([AMDEP_FALSE]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([AMDEP_FALSE]) m4trace:configure.ac:47: -1- m4_pattern_allow([^AMDEP_FALSE$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) m4trace:configure.ac:47: -1- AC_SUBST([AMDEPBACKSLASH]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([AMDEPBACKSLASH]) m4trace:configure.ac:47: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) m4trace:configure.ac:47: -1- AC_SUBST([am__nodep]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([am__nodep]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__nodep$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([am__nodep]) m4trace:configure.ac:47: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CCDEPMODE]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CCDEPMODE$]) m4trace:configure.ac:47: -1- AM_CONDITIONAL([am__fastdepCC], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) m4trace:configure.ac:47: -1- AC_SUBST([am__fastdepCC_TRUE]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) m4trace:configure.ac:47: -1- AC_SUBST([am__fastdepCC_FALSE]) m4trace:configure.ac:47: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) m4trace:configure.ac:48: -1- AC_SUBST([CXX]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CXX]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXX$]) m4trace:configure.ac:48: -1- AC_SUBST([CXXFLAGS]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CXXFLAGS]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXXFLAGS$]) m4trace:configure.ac:48: -1- AC_SUBST([LDFLAGS]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LDFLAGS]) m4trace:configure.ac:48: -1- m4_pattern_allow([^LDFLAGS$]) m4trace:configure.ac:48: -1- AC_SUBST([LIBS]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LIBS]) m4trace:configure.ac:48: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.ac:48: -1- AC_SUBST([CPPFLAGS]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CPPFLAGS]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:48: -1- AC_SUBST([CXX]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CXX]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXX$]) m4trace:configure.ac:48: -1- AC_SUBST([ac_ct_CXX]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([ac_ct_CXX]) m4trace:configure.ac:48: -1- m4_pattern_allow([^ac_ct_CXX$]) m4trace:configure.ac:48: -1- AC_SUBST([CXXDEPMODE], [depmode=$am_cv_CXX_dependencies_compiler_type]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CXXDEPMODE]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXXDEPMODE$]) m4trace:configure.ac:48: -1- AM_CONDITIONAL([am__fastdepCXX], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) m4trace:configure.ac:48: -1- AC_SUBST([am__fastdepCXX_TRUE]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([am__fastdepCXX_TRUE]) m4trace:configure.ac:48: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) m4trace:configure.ac:48: -1- AC_SUBST([am__fastdepCXX_FALSE]) m4trace:configure.ac:48: -1- AC_SUBST_TRACE([am__fastdepCXX_FALSE]) m4trace:configure.ac:48: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) m4trace:configure.ac:48: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) m4trace:configure.ac:48: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) m4trace:configure.ac:49: -1- AM_PROG_AR m4trace:configure.ac:49: -1- AC_REQUIRE_AUX_FILE([ar-lib]) m4trace:configure.ac:49: -1- AC_SUBST([AR]) m4trace:configure.ac:49: -1- AC_SUBST_TRACE([AR]) m4trace:configure.ac:49: -1- m4_pattern_allow([^AR$]) m4trace:configure.ac:49: -1- AC_SUBST([ac_ct_AR]) m4trace:configure.ac:49: -1- AC_SUBST_TRACE([ac_ct_AR]) m4trace:configure.ac:49: -1- m4_pattern_allow([^ac_ct_AR$]) m4trace:configure.ac:49: -1- AC_SUBST([AR]) m4trace:configure.ac:49: -1- AC_SUBST_TRACE([AR]) m4trace:configure.ac:49: -1- m4_pattern_allow([^AR$]) m4trace:configure.ac:50: -1- LT_INIT m4trace:configure.ac:50: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$]) m4trace:configure.ac:50: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) m4trace:configure.ac:50: -1- AC_SUBST([LIBTOOL]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LIBTOOL]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LIBTOOL$]) m4trace:configure.ac:50: -1- AC_CANONICAL_HOST m4trace:configure.ac:50: -1- AC_CANONICAL_BUILD m4trace:configure.ac:50: -1- AC_REQUIRE_AUX_FILE([config.sub]) m4trace:configure.ac:50: -1- AC_REQUIRE_AUX_FILE([config.guess]) m4trace:configure.ac:50: -1- AC_SUBST([build], [$ac_cv_build]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([build]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build$]) m4trace:configure.ac:50: -1- AC_SUBST([build_cpu], [$[1]]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([build_cpu]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build_cpu$]) m4trace:configure.ac:50: -1- AC_SUBST([build_vendor], [$[2]]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([build_vendor]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build_vendor$]) m4trace:configure.ac:50: -1- AC_SUBST([build_os]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([build_os]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build_os$]) m4trace:configure.ac:50: -1- AC_SUBST([host], [$ac_cv_host]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([host]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host$]) m4trace:configure.ac:50: -1- AC_SUBST([host_cpu], [$[1]]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([host_cpu]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host_cpu$]) m4trace:configure.ac:50: -1- AC_SUBST([host_vendor], [$[2]]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([host_vendor]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host_vendor$]) m4trace:configure.ac:50: -1- AC_SUBST([host_os]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([host_os]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host_os$]) m4trace:configure.ac:50: -1- AC_SUBST([SED]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([SED]) m4trace:configure.ac:50: -1- m4_pattern_allow([^SED$]) m4trace:configure.ac:50: -1- AC_SUBST([GREP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([GREP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^GREP$]) m4trace:configure.ac:50: -1- AC_SUBST([EGREP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([EGREP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^EGREP$]) m4trace:configure.ac:50: -1- AC_SUBST([FGREP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([FGREP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^FGREP$]) m4trace:configure.ac:50: -1- AC_SUBST([GREP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([GREP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^GREP$]) m4trace:configure.ac:50: -1- AC_SUBST([LD]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LD]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LD$]) m4trace:configure.ac:50: -1- AC_SUBST([DUMPBIN]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([DUMPBIN]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DUMPBIN$]) m4trace:configure.ac:50: -1- AC_SUBST([ac_ct_DUMPBIN]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN]) m4trace:configure.ac:50: -1- m4_pattern_allow([^ac_ct_DUMPBIN$]) m4trace:configure.ac:50: -1- AC_SUBST([DUMPBIN]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([DUMPBIN]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DUMPBIN$]) m4trace:configure.ac:50: -1- AC_SUBST([NM]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([NM]) m4trace:configure.ac:50: -1- m4_pattern_allow([^NM$]) m4trace:configure.ac:50: -1- AC_SUBST([LN_S], [$as_ln_s]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LN_S]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LN_S$]) m4trace:configure.ac:50: -1- AC_SUBST([OBJDUMP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([OBJDUMP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OBJDUMP$]) m4trace:configure.ac:50: -1- AC_SUBST([OBJDUMP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([OBJDUMP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OBJDUMP$]) m4trace:configure.ac:50: -1- AC_SUBST([DLLTOOL]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([DLLTOOL]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DLLTOOL$]) m4trace:configure.ac:50: -1- AC_SUBST([DLLTOOL]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([DLLTOOL]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DLLTOOL$]) m4trace:configure.ac:50: -1- AC_SUBST([AR]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([AR]) m4trace:configure.ac:50: -1- m4_pattern_allow([^AR$]) m4trace:configure.ac:50: -1- AC_SUBST([ac_ct_AR]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([ac_ct_AR]) m4trace:configure.ac:50: -1- m4_pattern_allow([^ac_ct_AR$]) m4trace:configure.ac:50: -1- AC_SUBST([STRIP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([STRIP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^STRIP$]) m4trace:configure.ac:50: -1- AC_SUBST([RANLIB]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([RANLIB]) m4trace:configure.ac:50: -1- m4_pattern_allow([^RANLIB$]) m4trace:configure.ac:50: -1- m4_pattern_allow([LT_OBJDIR]) m4trace:configure.ac:50: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LT_OBJDIR$]) m4trace:configure.ac:50: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory in which libtool stores uninstalled libraries. */ @%:@undef LT_OBJDIR]) m4trace:configure.ac:50: -1- LT_SUPPORTED_TAG([CC]) m4trace:configure.ac:50: -1- AC_SUBST([MANIFEST_TOOL]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([MANIFEST_TOOL]) m4trace:configure.ac:50: -1- m4_pattern_allow([^MANIFEST_TOOL$]) m4trace:configure.ac:50: -1- AC_SUBST([DSYMUTIL]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([DSYMUTIL]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DSYMUTIL$]) m4trace:configure.ac:50: -1- AC_SUBST([NMEDIT]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([NMEDIT]) m4trace:configure.ac:50: -1- m4_pattern_allow([^NMEDIT$]) m4trace:configure.ac:50: -1- AC_SUBST([LIPO]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LIPO]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LIPO$]) m4trace:configure.ac:50: -1- AC_SUBST([OTOOL]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([OTOOL]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OTOOL$]) m4trace:configure.ac:50: -1- AC_SUBST([OTOOL64]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([OTOOL64]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OTOOL64$]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_DLFCN_H]) m4trace:configure.ac:50: -1- AC_SUBST([CPP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CPP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPP$]) m4trace:configure.ac:50: -1- AC_SUBST([CPPFLAGS]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CPPFLAGS]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:50: -1- AC_SUBST([CPP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CPP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPP$]) m4trace:configure.ac:50: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) m4trace:configure.ac:50: -1- m4_pattern_allow([^STDC_HEADERS$]) m4trace:configure.ac:50: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ @%:@undef STDC_HEADERS]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_TYPES_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_STAT_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDLIB_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STRING_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_MEMORY_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STRINGS_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_INTTYPES_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDINT_H]) m4trace:configure.ac:50: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_UNISTD_H]) m4trace:configure.ac:50: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H]) m4trace:configure.ac:50: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) m4trace:configure.ac:50: -1- LT_SUPPORTED_TAG([CXX]) m4trace:configure.ac:50: -1- AC_SUBST([CXXCPP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CXXCPP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CXXCPP$]) m4trace:configure.ac:50: -1- AC_SUBST([CPPFLAGS]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CPPFLAGS]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:50: -1- AC_SUBST([CXXCPP]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CXXCPP]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CXXCPP$]) m4trace:configure.ac:50: -1- AC_SUBST([LD]) m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LD]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LD$]) m4trace:configure.ac:51: -1- AC_CONFIG_HEADERS([config.h ]) m4trace:configure.ac:81: -1- AM_CONDITIONAL([OFED_BUILD], [test ${OFED_VERSION_CHK} = 1]) m4trace:configure.ac:81: -1- AC_SUBST([OFED_BUILD_TRUE]) m4trace:configure.ac:81: -1- AC_SUBST_TRACE([OFED_BUILD_TRUE]) m4trace:configure.ac:81: -1- m4_pattern_allow([^OFED_BUILD_TRUE$]) m4trace:configure.ac:81: -1- AC_SUBST([OFED_BUILD_FALSE]) m4trace:configure.ac:81: -1- AC_SUBST_TRACE([OFED_BUILD_FALSE]) m4trace:configure.ac:81: -1- m4_pattern_allow([^OFED_BUILD_FALSE$]) m4trace:configure.ac:81: -1- _AM_SUBST_NOTMAKE([OFED_BUILD_TRUE]) m4trace:configure.ac:81: -1- _AM_SUBST_NOTMAKE([OFED_BUILD_FALSE]) m4trace:configure.ac:82: -1- AC_SUBST([OFED_BUILD]) m4trace:configure.ac:82: -1- AC_SUBST_TRACE([OFED_BUILD]) m4trace:configure.ac:82: -1- m4_pattern_allow([^OFED_BUILD$]) m4trace:configure.ac:90: -1- AM_CONDITIONAL([KERNEL_BUILD], [test ${KERNEL_BUILD_CHK} = 1]) m4trace:configure.ac:90: -1- AC_SUBST([KERNEL_BUILD_TRUE]) m4trace:configure.ac:90: -1- AC_SUBST_TRACE([KERNEL_BUILD_TRUE]) m4trace:configure.ac:90: -1- m4_pattern_allow([^KERNEL_BUILD_TRUE$]) m4trace:configure.ac:90: -1- AC_SUBST([KERNEL_BUILD_FALSE]) m4trace:configure.ac:90: -1- AC_SUBST_TRACE([KERNEL_BUILD_FALSE]) m4trace:configure.ac:90: -1- m4_pattern_allow([^KERNEL_BUILD_FALSE$]) m4trace:configure.ac:90: -1- _AM_SUBST_NOTMAKE([KERNEL_BUILD_TRUE]) m4trace:configure.ac:90: -1- _AM_SUBST_NOTMAKE([KERNEL_BUILD_FALSE]) m4trace:configure.ac:91: -1- AC_SUBST([KERNEL_BUILD]) m4trace:configure.ac:91: -1- AC_SUBST_TRACE([KERNEL_BUILD]) m4trace:configure.ac:91: -1- m4_pattern_allow([^KERNEL_BUILD$]) m4trace:configure.ac:107: -1- AC_SUBST([MTCR_CONF_DIR]) m4trace:configure.ac:107: -1- AC_SUBST_TRACE([MTCR_CONF_DIR]) m4trace:configure.ac:107: -1- m4_pattern_allow([^MTCR_CONF_DIR$]) m4trace:configure.ac:108: -1- AC_SUBST([LDL]) m4trace:configure.ac:108: -1- AC_SUBST_TRACE([LDL]) m4trace:configure.ac:108: -1- m4_pattern_allow([^LDL$]) m4trace:configure.ac:109: -1- AC_SUBST([default_en_inband]) m4trace:configure.ac:109: -1- AC_SUBST_TRACE([default_en_inband]) m4trace:configure.ac:109: -1- m4_pattern_allow([^default_en_inband$]) m4trace:configure.ac:111: -1- AM_CONDITIONAL([ARM64_BUILD], [ echo $build_cpu | grep -iq "aarch64" ]) m4trace:configure.ac:111: -1- AC_SUBST([ARM64_BUILD_TRUE]) m4trace:configure.ac:111: -1- AC_SUBST_TRACE([ARM64_BUILD_TRUE]) m4trace:configure.ac:111: -1- m4_pattern_allow([^ARM64_BUILD_TRUE$]) m4trace:configure.ac:111: -1- AC_SUBST([ARM64_BUILD_FALSE]) m4trace:configure.ac:111: -1- AC_SUBST_TRACE([ARM64_BUILD_FALSE]) m4trace:configure.ac:111: -1- m4_pattern_allow([^ARM64_BUILD_FALSE$]) m4trace:configure.ac:111: -1- _AM_SUBST_NOTMAKE([ARM64_BUILD_TRUE]) m4trace:configure.ac:111: -1- _AM_SUBST_NOTMAKE([ARM64_BUILD_FALSE]) m4trace:configure.ac:112: -1- AM_CONDITIONAL([X86_64_BUILD], [ echo $build_cpu | grep -iq "x86_64" ]) m4trace:configure.ac:112: -1- AC_SUBST([X86_64_BUILD_TRUE]) m4trace:configure.ac:112: -1- AC_SUBST_TRACE([X86_64_BUILD_TRUE]) m4trace:configure.ac:112: -1- m4_pattern_allow([^X86_64_BUILD_TRUE$]) m4trace:configure.ac:112: -1- AC_SUBST([X86_64_BUILD_FALSE]) m4trace:configure.ac:112: -1- AC_SUBST_TRACE([X86_64_BUILD_FALSE]) m4trace:configure.ac:112: -1- m4_pattern_allow([^X86_64_BUILD_FALSE$]) m4trace:configure.ac:112: -1- _AM_SUBST_NOTMAKE([X86_64_BUILD_TRUE]) m4trace:configure.ac:112: -1- _AM_SUBST_NOTMAKE([X86_64_BUILD_FALSE]) m4trace:configure.ac:126: -1- AC_SUBST([COMPILER_FPIC]) m4trace:configure.ac:126: -1- AC_SUBST_TRACE([COMPILER_FPIC]) m4trace:configure.ac:126: -1- m4_pattern_allow([^COMPILER_FPIC$]) m4trace:configure.ac:136: -1- AH_OUTPUT([HAVE_LIBZ], [/* Define to 1 if you have the `z\' library (-lz). */ @%:@undef HAVE_LIBZ]) m4trace:configure.ac:136: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBZ]) m4trace:configure.ac:136: -1- m4_pattern_allow([^HAVE_LIBZ$]) m4trace:configure.ac:149: -1- AH_OUTPUT([HAVE_LIBZ], [/* Define to 1 if you have the `z\' library (-lz). */ @%:@undef HAVE_LIBZ]) m4trace:configure.ac:149: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBZ]) m4trace:configure.ac:149: -1- m4_pattern_allow([^HAVE_LIBZ$]) m4trace:configure.ac:171: -1- AH_OUTPUT([HAVE_EXPAT_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_EXPAT_H]) m4trace:configure.ac:171: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPAT_H]) m4trace:configure.ac:171: -1- m4_pattern_allow([^HAVE_EXPAT_H$]) m4trace:configure.ac:181: -1- AC_SUBST([CURL_INC_DIR]) m4trace:configure.ac:181: -1- AC_SUBST_TRACE([CURL_INC_DIR]) m4trace:configure.ac:181: -1- m4_pattern_allow([^CURL_INC_DIR$]) m4trace:configure.ac:183: -1- AM_CONDITIONAL([ENABLE_FWMGR], [test "x$enable_fw_mgr" = "xyes" ]) m4trace:configure.ac:183: -1- AC_SUBST([ENABLE_FWMGR_TRUE]) m4trace:configure.ac:183: -1- AC_SUBST_TRACE([ENABLE_FWMGR_TRUE]) m4trace:configure.ac:183: -1- m4_pattern_allow([^ENABLE_FWMGR_TRUE$]) m4trace:configure.ac:183: -1- AC_SUBST([ENABLE_FWMGR_FALSE]) m4trace:configure.ac:183: -1- AC_SUBST_TRACE([ENABLE_FWMGR_FALSE]) m4trace:configure.ac:183: -1- m4_pattern_allow([^ENABLE_FWMGR_FALSE$]) m4trace:configure.ac:183: -1- _AM_SUBST_NOTMAKE([ENABLE_FWMGR_TRUE]) m4trace:configure.ac:183: -1- _AM_SUBST_NOTMAKE([ENABLE_FWMGR_FALSE]) m4trace:configure.ac:184: -1- AC_SUBST([ENABLE_FWMGR]) m4trace:configure.ac:184: -1- AC_SUBST_TRACE([ENABLE_FWMGR]) m4trace:configure.ac:184: -1- m4_pattern_allow([^ENABLE_FWMGR$]) m4trace:configure.ac:186: -1- AC_SUBST([ENABLE_FWMGR]) m4trace:configure.ac:186: -1- AC_SUBST_TRACE([ENABLE_FWMGR]) m4trace:configure.ac:186: -1- m4_pattern_allow([^ENABLE_FWMGR$]) m4trace:configure.ac:203: -1- AH_OUTPUT([HAVE_LIBXML2], [/* Define to 1 if you have the `xml2\' library (-lxml2). */ @%:@undef HAVE_LIBXML2]) m4trace:configure.ac:203: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBXML2]) m4trace:configure.ac:203: -1- m4_pattern_allow([^HAVE_LIBXML2$]) m4trace:configure.ac:207: -1- AM_CONDITIONAL([DISABLE_XML2], [test "x$enable_xml2" = "xno"]) m4trace:configure.ac:207: -1- AC_SUBST([DISABLE_XML2_TRUE]) m4trace:configure.ac:207: -1- AC_SUBST_TRACE([DISABLE_XML2_TRUE]) m4trace:configure.ac:207: -1- m4_pattern_allow([^DISABLE_XML2_TRUE$]) m4trace:configure.ac:207: -1- AC_SUBST([DISABLE_XML2_FALSE]) m4trace:configure.ac:207: -1- AC_SUBST_TRACE([DISABLE_XML2_FALSE]) m4trace:configure.ac:207: -1- m4_pattern_allow([^DISABLE_XML2_FALSE$]) m4trace:configure.ac:207: -1- _AM_SUBST_NOTMAKE([DISABLE_XML2_TRUE]) m4trace:configure.ac:207: -1- _AM_SUBST_NOTMAKE([DISABLE_XML2_FALSE]) m4trace:configure.ac:208: -1- AC_SUBST([DISABLE_XML2]) m4trace:configure.ac:208: -1- AC_SUBST_TRACE([DISABLE_XML2]) m4trace:configure.ac:208: -1- m4_pattern_allow([^DISABLE_XML2$]) m4trace:configure.ac:210: -1- AM_CONDITIONAL([ENABLE_DC], [test "x$enable_dc" = "xyes"]) m4trace:configure.ac:210: -1- AC_SUBST([ENABLE_DC_TRUE]) m4trace:configure.ac:210: -1- AC_SUBST_TRACE([ENABLE_DC_TRUE]) m4trace:configure.ac:210: -1- m4_pattern_allow([^ENABLE_DC_TRUE$]) m4trace:configure.ac:210: -1- AC_SUBST([ENABLE_DC_FALSE]) m4trace:configure.ac:210: -1- AC_SUBST_TRACE([ENABLE_DC_FALSE]) m4trace:configure.ac:210: -1- m4_pattern_allow([^ENABLE_DC_FALSE$]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([ENABLE_DC_TRUE]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([ENABLE_DC_FALSE]) m4trace:configure.ac:211: -1- AC_SUBST([ENABLE_DC]) m4trace:configure.ac:211: -1- AC_SUBST_TRACE([ENABLE_DC]) m4trace:configure.ac:211: -1- m4_pattern_allow([^ENABLE_DC$]) m4trace:configure.ac:226: -1- AC_SUBST([MAD_IFC]) m4trace:configure.ac:226: -1- AC_SUBST_TRACE([MAD_IFC]) m4trace:configure.ac:226: -1- m4_pattern_allow([^MAD_IFC$]) m4trace:configure.ac:228: -1- AM_CONDITIONAL([ENABLE_INBAND], [test "x$enable_inband" = "xyes"]) m4trace:configure.ac:228: -1- AC_SUBST([ENABLE_INBAND_TRUE]) m4trace:configure.ac:228: -1- AC_SUBST_TRACE([ENABLE_INBAND_TRUE]) m4trace:configure.ac:228: -1- m4_pattern_allow([^ENABLE_INBAND_TRUE$]) m4trace:configure.ac:228: -1- AC_SUBST([ENABLE_INBAND_FALSE]) m4trace:configure.ac:228: -1- AC_SUBST_TRACE([ENABLE_INBAND_FALSE]) m4trace:configure.ac:228: -1- m4_pattern_allow([^ENABLE_INBAND_FALSE$]) m4trace:configure.ac:228: -1- _AM_SUBST_NOTMAKE([ENABLE_INBAND_TRUE]) m4trace:configure.ac:228: -1- _AM_SUBST_NOTMAKE([ENABLE_INBAND_FALSE]) m4trace:configure.ac:237: -1- AH_OUTPUT([HAVE_INFINIBAND_MLX5DV_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_INFINIBAND_MLX5DV_H]) m4trace:configure.ac:237: -1- AH_OUTPUT([HAVE_INFINIBAND_VERBS_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_INFINIBAND_VERBS_H]) m4trace:configure.ac:243: -1- AM_CONDITIONAL([ENABLE_RDMEM], [test "x$enable_rdmem" = "xyes"]) m4trace:configure.ac:243: -1- AC_SUBST([ENABLE_RDMEM_TRUE]) m4trace:configure.ac:243: -1- AC_SUBST_TRACE([ENABLE_RDMEM_TRUE]) m4trace:configure.ac:243: -1- m4_pattern_allow([^ENABLE_RDMEM_TRUE$]) m4trace:configure.ac:243: -1- AC_SUBST([ENABLE_RDMEM_FALSE]) m4trace:configure.ac:243: -1- AC_SUBST_TRACE([ENABLE_RDMEM_FALSE]) m4trace:configure.ac:243: -1- m4_pattern_allow([^ENABLE_RDMEM_FALSE$]) m4trace:configure.ac:243: -1- _AM_SUBST_NOTMAKE([ENABLE_RDMEM_TRUE]) m4trace:configure.ac:243: -1- _AM_SUBST_NOTMAKE([ENABLE_RDMEM_FALSE]) m4trace:configure.ac:293: -1- AC_SUBST([TOOLS_CRYPTO]) m4trace:configure.ac:293: -1- AC_SUBST_TRACE([TOOLS_CRYPTO]) m4trace:configure.ac:293: -1- m4_pattern_allow([^TOOLS_CRYPTO$]) m4trace:configure.ac:294: -1- AM_CONDITIONAL([ENABLE_OPENSSL], [test "x$enable_openssl" = "xyes" ]) m4trace:configure.ac:294: -1- AC_SUBST([ENABLE_OPENSSL_TRUE]) m4trace:configure.ac:294: -1- AC_SUBST_TRACE([ENABLE_OPENSSL_TRUE]) m4trace:configure.ac:294: -1- m4_pattern_allow([^ENABLE_OPENSSL_TRUE$]) m4trace:configure.ac:294: -1- AC_SUBST([ENABLE_OPENSSL_FALSE]) m4trace:configure.ac:294: -1- AC_SUBST_TRACE([ENABLE_OPENSSL_FALSE]) m4trace:configure.ac:294: -1- m4_pattern_allow([^ENABLE_OPENSSL_FALSE$]) m4trace:configure.ac:294: -1- _AM_SUBST_NOTMAKE([ENABLE_OPENSSL_TRUE]) m4trace:configure.ac:294: -1- _AM_SUBST_NOTMAKE([ENABLE_OPENSSL_FALSE]) m4trace:configure.ac:295: -1- AM_CONDITIONAL([ENABLE_CS], [test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes" ]) m4trace:configure.ac:295: -1- AC_SUBST([ENABLE_CS_TRUE]) m4trace:configure.ac:295: -1- AC_SUBST_TRACE([ENABLE_CS_TRUE]) m4trace:configure.ac:295: -1- m4_pattern_allow([^ENABLE_CS_TRUE$]) m4trace:configure.ac:295: -1- AC_SUBST([ENABLE_CS_FALSE]) m4trace:configure.ac:295: -1- AC_SUBST_TRACE([ENABLE_CS_FALSE]) m4trace:configure.ac:295: -1- m4_pattern_allow([^ENABLE_CS_FALSE$]) m4trace:configure.ac:295: -1- _AM_SUBST_NOTMAKE([ENABLE_CS_TRUE]) m4trace:configure.ac:295: -1- _AM_SUBST_NOTMAKE([ENABLE_CS_FALSE]) m4trace:configure.ac:311: -1- AH_OUTPUT([HAVE_INIPARSER_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_INIPARSER_H]) m4trace:configure.ac:311: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INIPARSER_H]) m4trace:configure.ac:311: -1- m4_pattern_allow([^HAVE_INIPARSER_H$]) m4trace:configure.ac:321: -1- AC_SUBST([INIPARSER_CFLAGS]) m4trace:configure.ac:321: -1- AC_SUBST_TRACE([INIPARSER_CFLAGS]) m4trace:configure.ac:321: -1- m4_pattern_allow([^INIPARSER_CFLAGS$]) m4trace:configure.ac:323: -1- AC_SUBST([INIPARSER_LIBS]) m4trace:configure.ac:323: -1- AC_SUBST_TRACE([INIPARSER_LIBS]) m4trace:configure.ac:323: -1- m4_pattern_allow([^INIPARSER_LIBS$]) m4trace:configure.ac:326: -1- AM_CONDITIONAL([USE_LOCAL_INIPARSER], [test "$INIPARSER_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:326: -1- AC_SUBST([USE_LOCAL_INIPARSER_TRUE]) m4trace:configure.ac:326: -1- AC_SUBST_TRACE([USE_LOCAL_INIPARSER_TRUE]) m4trace:configure.ac:326: -1- m4_pattern_allow([^USE_LOCAL_INIPARSER_TRUE$]) m4trace:configure.ac:326: -1- AC_SUBST([USE_LOCAL_INIPARSER_FALSE]) m4trace:configure.ac:326: -1- AC_SUBST_TRACE([USE_LOCAL_INIPARSER_FALSE]) m4trace:configure.ac:326: -1- m4_pattern_allow([^USE_LOCAL_INIPARSER_FALSE$]) m4trace:configure.ac:326: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_INIPARSER_TRUE]) m4trace:configure.ac:326: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_INIPARSER_FALSE]) m4trace:configure.ac:332: -1- AC_SUBST([JSON_CFLAGS]) m4trace:configure.ac:332: -1- AC_SUBST_TRACE([JSON_CFLAGS]) m4trace:configure.ac:332: -1- m4_pattern_allow([^JSON_CFLAGS$]) m4trace:configure.ac:332: -1- AC_SUBST([JSON_LIBS]) m4trace:configure.ac:332: -1- AC_SUBST_TRACE([JSON_LIBS]) m4trace:configure.ac:332: -1- m4_pattern_allow([^JSON_LIBS$]) m4trace:configure.ac:339: -1- AM_CONDITIONAL([USE_LOCAL_JSON], [test "$JSON_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:339: -1- AC_SUBST([USE_LOCAL_JSON_TRUE]) m4trace:configure.ac:339: -1- AC_SUBST_TRACE([USE_LOCAL_JSON_TRUE]) m4trace:configure.ac:339: -1- m4_pattern_allow([^USE_LOCAL_JSON_TRUE$]) m4trace:configure.ac:339: -1- AC_SUBST([USE_LOCAL_JSON_FALSE]) m4trace:configure.ac:339: -1- AC_SUBST_TRACE([USE_LOCAL_JSON_FALSE]) m4trace:configure.ac:339: -1- m4_pattern_allow([^USE_LOCAL_JSON_FALSE$]) m4trace:configure.ac:339: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_JSON_TRUE]) m4trace:configure.ac:339: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_JSON_FALSE]) m4trace:configure.ac:341: -1- AC_SUBST([MUPARSER_CFLAGS]) m4trace:configure.ac:341: -1- AC_SUBST_TRACE([MUPARSER_CFLAGS]) m4trace:configure.ac:341: -1- m4_pattern_allow([^MUPARSER_CFLAGS$]) m4trace:configure.ac:341: -1- AC_SUBST([MUPARSER_LIBS]) m4trace:configure.ac:341: -1- AC_SUBST_TRACE([MUPARSER_LIBS]) m4trace:configure.ac:341: -1- m4_pattern_allow([^MUPARSER_LIBS$]) m4trace:configure.ac:349: -1- AM_CONDITIONAL([USE_LOCAL_MUPARSER], [test "$MUPARSER_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:349: -1- AC_SUBST([USE_LOCAL_MUPARSER_TRUE]) m4trace:configure.ac:349: -1- AC_SUBST_TRACE([USE_LOCAL_MUPARSER_TRUE]) m4trace:configure.ac:349: -1- m4_pattern_allow([^USE_LOCAL_MUPARSER_TRUE$]) m4trace:configure.ac:349: -1- AC_SUBST([USE_LOCAL_MUPARSER_FALSE]) m4trace:configure.ac:349: -1- AC_SUBST_TRACE([USE_LOCAL_MUPARSER_FALSE]) m4trace:configure.ac:349: -1- m4_pattern_allow([^USE_LOCAL_MUPARSER_FALSE$]) m4trace:configure.ac:349: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_MUPARSER_TRUE]) m4trace:configure.ac:349: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_MUPARSER_FALSE]) m4trace:configure.ac:351: -1- AC_SUBST([SQLITE_CFLAGS]) m4trace:configure.ac:351: -1- AC_SUBST_TRACE([SQLITE_CFLAGS]) m4trace:configure.ac:351: -1- m4_pattern_allow([^SQLITE_CFLAGS$]) m4trace:configure.ac:351: -1- AC_SUBST([SQLITE_LIBS]) m4trace:configure.ac:351: -1- AC_SUBST_TRACE([SQLITE_LIBS]) m4trace:configure.ac:351: -1- m4_pattern_allow([^SQLITE_LIBS$]) m4trace:configure.ac:358: -1- AM_CONDITIONAL([USE_LOCAL_SQLITE], [test "$SQLITE_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:358: -1- AC_SUBST([USE_LOCAL_SQLITE_TRUE]) m4trace:configure.ac:358: -1- AC_SUBST_TRACE([USE_LOCAL_SQLITE_TRUE]) m4trace:configure.ac:358: -1- m4_pattern_allow([^USE_LOCAL_SQLITE_TRUE$]) m4trace:configure.ac:358: -1- AC_SUBST([USE_LOCAL_SQLITE_FALSE]) m4trace:configure.ac:358: -1- AC_SUBST_TRACE([USE_LOCAL_SQLITE_FALSE]) m4trace:configure.ac:358: -1- m4_pattern_allow([^USE_LOCAL_SQLITE_FALSE$]) m4trace:configure.ac:358: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_SQLITE_TRUE]) m4trace:configure.ac:358: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_SQLITE_FALSE]) m4trace:configure.ac:377: -1- AC_CONFIG_FILES([mstflint.spec ]) m4trace:configure.ac:405: -1- AC_SUBST([TOOLS_BUILD_TIME]) m4trace:configure.ac:405: -1- AC_SUBST_TRACE([TOOLS_BUILD_TIME]) m4trace:configure.ac:405: -1- m4_pattern_allow([^TOOLS_BUILD_TIME$]) m4trace:configure.ac:407: -1- AC_SUBST([MSTFLINT_VERSION_STR]) m4trace:configure.ac:407: -1- AC_SUBST_TRACE([MSTFLINT_VERSION_STR]) m4trace:configure.ac:407: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:412: -1- AC_SUBST([MSTFLINT_VERSION_STR]) m4trace:configure.ac:412: -1- AC_SUBST_TRACE([MSTFLINT_VERSION_STR]) m4trace:configure.ac:412: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:413: -1- AC_DEFINE_TRACE_LITERAL([MSTFLINT_VERSION_STR]) m4trace:configure.ac:413: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:413: -1- AH_OUTPUT([MSTFLINT_VERSION_STR], [/* The MSTFLINT version */ @%:@undef MSTFLINT_VERSION_STR]) m4trace:configure.ac:414: -1- AC_DEFINE_TRACE_LITERAL([MSTFLINT_VERSION_STR]) m4trace:configure.ac:414: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:417: -1- AC_CONFIG_FILES([tools_crypto/Makefile]) m4trace:configure.ac:422: -1- AC_CONFIG_FILES([mlxsign_lib/Makefile]) m4trace:configure.ac:433: -1- AC_CONFIG_FILES([mlxfwupdate/Makefile]) m4trace:configure.ac:433: -1- AC_CONFIG_FILES([ext_libs/iniParser/Makefile]) m4trace:configure.ac:433: -1- AC_CONFIG_FILES([mlxarchive/Makefile]) m4trace:configure.ac:440: -1- AC_SUBST([FW_MGR_TOOLS]) m4trace:configure.ac:440: -1- AC_SUBST_TRACE([FW_MGR_TOOLS]) m4trace:configure.ac:440: -1- m4_pattern_allow([^FW_MGR_TOOLS$]) m4trace:configure.ac:442: -1- AC_CONFIG_FILES([mlxdpa/Makefile]) m4trace:configure.ac:446: -1- AM_CONDITIONAL([ENABLE_DPA], [test "x$enable_dpa" = "xyes" ]) m4trace:configure.ac:446: -1- AC_SUBST([ENABLE_DPA_TRUE]) m4trace:configure.ac:446: -1- AC_SUBST_TRACE([ENABLE_DPA_TRUE]) m4trace:configure.ac:446: -1- m4_pattern_allow([^ENABLE_DPA_TRUE$]) m4trace:configure.ac:446: -1- AC_SUBST([ENABLE_DPA_FALSE]) m4trace:configure.ac:446: -1- AC_SUBST_TRACE([ENABLE_DPA_FALSE]) m4trace:configure.ac:446: -1- m4_pattern_allow([^ENABLE_DPA_FALSE$]) m4trace:configure.ac:446: -1- _AM_SUBST_NOTMAKE([ENABLE_DPA_TRUE]) m4trace:configure.ac:446: -1- _AM_SUBST_NOTMAKE([ENABLE_DPA_FALSE]) m4trace:configure.ac:448: -1- AC_SUBST([DPA]) m4trace:configure.ac:448: -1- AC_SUBST_TRACE([DPA]) m4trace:configure.ac:448: -1- m4_pattern_allow([^DPA$]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([adb_parser/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([tools_layouts/adb/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([tools_layouts/adb/prm/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([tools_layouts/adb/prm/hca/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([tools_layouts/adb/prm/hca/ext/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([tools_layouts/adb/prm/switch/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([tools_layouts/adb/prm/switch/ext/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([mlxreg/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([mlxreg/mlxreg_lib/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([mlxlink/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([mlxlink/modules/Makefile]) m4trace:configure.ac:450: -1- AC_CONFIG_FILES([mlxlink/modules/printutil/Makefile]) m4trace:configure.ac:468: -1- AC_CONFIG_FILES([xz_utils/Makefile]) m4trace:configure.ac:473: -1- AC_SUBST([ADABE_TOOLS]) m4trace:configure.ac:473: -1- AC_SUBST_TRACE([ADABE_TOOLS]) m4trace:configure.ac:473: -1- m4_pattern_allow([^ADABE_TOOLS$]) m4trace:configure.ac:474: -1- AC_SUBST([ADABE_DBS]) m4trace:configure.ac:474: -1- AC_SUBST_TRACE([ADABE_DBS]) m4trace:configure.ac:474: -1- m4_pattern_allow([^ADABE_DBS$]) m4trace:configure.ac:475: -1- AC_SUBST([ADABE_DBS_EXTRA_DIST]) m4trace:configure.ac:475: -1- AC_SUBST_TRACE([ADABE_DBS_EXTRA_DIST]) m4trace:configure.ac:475: -1- m4_pattern_allow([^ADABE_DBS_EXTRA_DIST$]) m4trace:configure.ac:476: -1- AC_SUBST([XZ_UTILS_DIR]) m4trace:configure.ac:476: -1- AC_SUBST_TRACE([XZ_UTILS_DIR]) m4trace:configure.ac:476: -1- m4_pattern_allow([^XZ_UTILS_DIR$]) m4trace:configure.ac:480: -1- AC_CONFIG_FILES([mtcr_freebsd/Makefile]) m4trace:configure.ac:483: -1- AC_CONFIG_FILES([mtcr_ul/Makefile]) m4trace:configure.ac:486: -1- AM_CONDITIONAL([LINUX_BUILD], [test "x$OS" = "xLinux"]) m4trace:configure.ac:486: -1- AC_SUBST([LINUX_BUILD_TRUE]) m4trace:configure.ac:486: -1- AC_SUBST_TRACE([LINUX_BUILD_TRUE]) m4trace:configure.ac:486: -1- m4_pattern_allow([^LINUX_BUILD_TRUE$]) m4trace:configure.ac:486: -1- AC_SUBST([LINUX_BUILD_FALSE]) m4trace:configure.ac:486: -1- AC_SUBST_TRACE([LINUX_BUILD_FALSE]) m4trace:configure.ac:486: -1- m4_pattern_allow([^LINUX_BUILD_FALSE$]) m4trace:configure.ac:486: -1- _AM_SUBST_NOTMAKE([LINUX_BUILD_TRUE]) m4trace:configure.ac:486: -1- _AM_SUBST_NOTMAKE([LINUX_BUILD_FALSE]) m4trace:configure.ac:487: -1- AC_SUBST([LINUX_BUILD]) m4trace:configure.ac:487: -1- AC_SUBST_TRACE([LINUX_BUILD]) m4trace:configure.ac:487: -1- m4_pattern_allow([^LINUX_BUILD$]) m4trace:configure.ac:488: -1- AC_SUBST([LINUX_KERNEL_INCLUDE]) m4trace:configure.ac:488: -1- AC_SUBST_TRACE([LINUX_KERNEL_INCLUDE]) m4trace:configure.ac:488: -1- m4_pattern_allow([^LINUX_KERNEL_INCLUDE$]) m4trace:configure.ac:498: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... configure.ac:498: the top level]) m4trace:configure.ac:498: -1- AC_DEFINE_TRACE_LITERAL([USE_STDLIB_REGEX]) m4trace:configure.ac:498: -1- m4_pattern_allow([^USE_STDLIB_REGEX$]) m4trace:configure.ac:498: -1- AH_OUTPUT([USE_STDLIB_REGEX], [/* Whether to use GNU C regex */ @%:@undef USE_STDLIB_REGEX]) m4trace:configure.ac:515: -1- AC_SUBST([TOOLS_GIT_SHA]) m4trace:configure.ac:515: -1- AC_SUBST_TRACE([TOOLS_GIT_SHA]) m4trace:configure.ac:515: -1- m4_pattern_allow([^TOOLS_GIT_SHA$]) m4trace:configure.ac:518: -1- AC_CONFIG_FILES([debian/mstflint.install]) m4trace:configure.ac:520: -1- AC_CONFIG_FILES([\ Makefile \ cmdif/Makefile \ cmdparser/Makefile \ common/Makefile \ dev_mgt/Makefile \ ext_libs/Makefile \ ext_libs/json/Makefile \ ext_libs/minixz/Makefile \ ext_libs/muparser/Makefile \ ext_libs/sqlite/Makefile \ flint/Makefile \ fw_comps_mgr/Makefile \ libmfa/Makefile \ mad_ifc/Makefile \ mflash/Makefile \ mft_utils/Makefile \ mft_utils/hsmclient/Makefile \ mlxconfig/Makefile \ mlxconfig/mlxconfig_dbs/Makefile \ mlxfwops/Makefile \ mlxfwops/lib/Makefile \ mstdump/Makefile \ mstdump/crd_lib/Makefile \ mstdump/crd_main/Makefile \ mstdump/mstdump_dbs/Makefile \ mtcr_py/Makefile \ mvpd/Makefile \ pldmlib/Makefile \ reg_access/Makefile \ resourcetools/Makefile \ resourcetools/resourcedump_lib/Makefile \ resourcetools/resourcedump_lib/src/Makefile \ resourcetools/resourcedump_lib/src/commands/Makefile \ resourcetools/resourcedump_lib/src/common/Makefile \ resourcetools/resourcedump_lib/src/fetchers/Makefile \ resourcetools/resourcedump_lib/src/filters/Makefile \ resourcetools/resourcedump_lib/src/sdk/Makefile \ small_utils/Makefile \ small_utils/mlxfwresetlib/Makefile \ tools_layouts/Makefile \ tools_res_mgmt/Makefile \ tracers/Makefile \ tracers/fwtrace/Makefile \ ]) m4trace:configure.ac:520: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments. You should run autoupdate.], []) m4trace:configure.ac:520: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:520: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:520: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([LTLIBOBJS]) m4trace:configure.ac:520: -1- m4_pattern_allow([^LTLIBOBJS$]) m4trace:configure.ac:520: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) m4trace:configure.ac:520: -1- AC_SUBST([am__EXEEXT_TRUE]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) m4trace:configure.ac:520: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) m4trace:configure.ac:520: -1- AC_SUBST([am__EXEEXT_FALSE]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) m4trace:configure.ac:520: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) m4trace:configure.ac:520: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) m4trace:configure.ac:520: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([top_builddir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([top_build_prefix]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([srcdir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([abs_srcdir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([top_srcdir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([abs_top_srcdir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([builddir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([abs_builddir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([abs_top_builddir]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([INSTALL]) m4trace:configure.ac:520: -1- AC_SUBST_TRACE([MKDIR_P]) m4trace:configure.ac:520: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) mstflint-4.26.0/autom4te.cache/output.10000644000175000017500000226150714522641736020152 0ustar tzafrirctzafrirc@%:@! /bin/sh @%:@ Guess values for system-dependent variables and create Makefiles. @%:@ Generated by GNU Autoconf 2.69 for mstflint 4.26.0. @%:@ @%:@ Report bugs to . @%:@ @%:@ @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @%:@ @%:@ @%:@ This configure script is free software; the Free Software Foundation @%:@ gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in @%:@( *posix*) : set -o posix ;; @%:@( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in @%:@( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in @%:@(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in @%:@ (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in @%:@( *posix*) : set -o posix ;; @%:@( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in @%:@( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in @%:@ (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: akiselman-org@exchange.nvidia.com about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## @%:@ as_fn_unset VAR @%:@ --------------- @%:@ Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset @%:@ as_fn_set_status STATUS @%:@ ----------------------- @%:@ Set @S|@? to STATUS, without forking. as_fn_set_status () { return $1 } @%:@ as_fn_set_status @%:@ as_fn_exit STATUS @%:@ ----------------- @%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } @%:@ as_fn_exit @%:@ as_fn_mkdir_p @%:@ ------------- @%:@ Create "@S|@as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } @%:@ as_fn_mkdir_p @%:@ as_fn_executable_p FILE @%:@ ----------------------- @%:@ Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } @%:@ as_fn_executable_p @%:@ as_fn_append VAR VALUE @%:@ ---------------------- @%:@ Append the text in VALUE to the end of the definition contained in VAR. Take @%:@ advantage of any shell optimizations that allow amortized linear growth over @%:@ repeated appends, instead of the typical quadratic growth present in naive @%:@ implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append @%:@ as_fn_arith ARG... @%:@ ------------------ @%:@ Perform arithmetic evaluation on the ARGs, and store the result in the @%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments @%:@ must be portable across @S|@(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith @%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] @%:@ ---------------------------------------- @%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are @%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the @%:@ script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } @%:@ as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in @%:@((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIB@&t@OBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='mstflint' PACKAGE_TARNAME='mstflint' PACKAGE_VERSION='4.26.0' PACKAGE_STRING='mstflint 4.26.0' PACKAGE_BUGREPORT='akiselman-org@exchange.nvidia.com' PACKAGE_URL='' ac_unique_file="README" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIB@&t@OBJS TOOLS_GIT_SHA LINUX_KERNEL_INCLUDE LINUX_BUILD LINUX_BUILD_FALSE LINUX_BUILD_TRUE XZ_UTILS_DIR ADABE_DBS_EXTRA_DIST ADABE_DBS ADABE_TOOLS DPA ENABLE_DPA_FALSE ENABLE_DPA_TRUE FW_MGR_TOOLS MSTFLINT_VERSION_STR TOOLS_BUILD_TIME USE_LOCAL_SQLITE_FALSE USE_LOCAL_SQLITE_TRUE SQLITE_LIBS SQLITE_CFLAGS USE_LOCAL_MUPARSER_FALSE USE_LOCAL_MUPARSER_TRUE MUPARSER_LIBS MUPARSER_CFLAGS USE_LOCAL_JSON_FALSE USE_LOCAL_JSON_TRUE JSON_LIBS JSON_CFLAGS USE_LOCAL_INIPARSER_FALSE USE_LOCAL_INIPARSER_TRUE INIPARSER_LIBS INIPARSER_CFLAGS ENABLE_CS_FALSE ENABLE_CS_TRUE ENABLE_OPENSSL_FALSE ENABLE_OPENSSL_TRUE TOOLS_CRYPTO ENABLE_RDMEM_FALSE ENABLE_RDMEM_TRUE ENABLE_INBAND_FALSE ENABLE_INBAND_TRUE MAD_IFC ENABLE_DC ENABLE_DC_FALSE ENABLE_DC_TRUE DISABLE_XML2 DISABLE_XML2_FALSE DISABLE_XML2_TRUE ENABLE_FWMGR ENABLE_FWMGR_FALSE ENABLE_FWMGR_TRUE CURL_INC_DIR COMPILER_FPIC X86_64_BUILD_FALSE X86_64_BUILD_TRUE ARM64_BUILD_FALSE ARM64_BUILD_TRUE default_en_inband LDL MTCR_CONF_DIR KERNEL_BUILD KERNEL_BUILD_FALSE KERNEL_BUILD_TRUE OFED_BUILD OFED_BUILD_FALSE OFED_BUILD_TRUE CXXCPP CPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL ac_ct_AR AR am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM VERSION PROJECT target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_dc enable_fw_mgr enable_dpa enable_adb_generic_tools enable_xml2 enable_inband enable_rdmem enable_cs enable_openssl enable_all_static enable_static_libstdcpp enable_dynamic_ld ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CXX CXXFLAGS CCC CPP CXXCPP MSTFLINT_VERSION_STR' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures mstflint 4.26.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX @<:@@S|@ac_default_prefix@:>@ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX @<:@PREFIX@:>@ By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root @<:@DATAROOTDIR/doc/mstflint@:>@ --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of mstflint 4.26.0:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@ --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@ --enable-fast-install@<:@=PKGS@:>@ optimize for fast installation @<:@default=yes@:>@ --disable-libtool-lock avoid locking (might break parallel builds) --disable-dc Disable mstflint "dc" command. Eliminates zlib dependency --enable-fw-mgr Enable compiling mstfwmanager tool and features --enable-dpa Enable compiling mstdpa tool (x86_64/aarch64 Linux only, no FreeBSD support --enable-adb-generic-tools Enable compiling the following tools which depends on ADABE: mstreg and mstlink --enable-xml2 Enable mstflint libxml2 dependent features --disable-inband Disable inband access. Prevents FW update for Mellanox SwitchX and ConnectIB devices. Eliminates infiniband/mad.h dependency --enable-rdmem Enable resource-dump memory mode. OFED libmlx5 and libibverbs dependency --enable-cs Enable mstflint "checksum" command, dependent of openssl library --disable-openssl Disable functionalities that depend on the OpenSSL library --enable-all-static Enable creating none dynamic executables --enable-static-libstdcpp Enable link static to libstdc++ --enable-dynamic-ld Enable dynamic link to ld64.so Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic@<:@=PKGS@:>@ try to use only PIC/non-PIC objects @<:@default=use both@:>@ --with-gnu-ld assume the C compiler uses GNU ld @<:@default=no@:>@ --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor CXXCPP C++ preprocessor MSTFLINT_VERSION_STR The MSTFLINT version Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF mstflint configure 4.26.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## @%:@ ac_fn_c_try_compile LINENO @%:@ -------------------------- @%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_compile @%:@ ac_fn_cxx_try_compile LINENO @%:@ ---------------------------- @%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_compile @%:@ ac_fn_c_try_link LINENO @%:@ ----------------------- @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_link @%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES @%:@ ------------------------------------------------------- @%:@ Tests whether HEADER exists and can be compiled using the include files in @%:@ INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 @%:@include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_c_check_header_compile @%:@ ac_fn_c_try_cpp LINENO @%:@ ---------------------- @%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_cpp @%:@ ac_fn_c_try_run LINENO @%:@ ---------------------- @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes @%:@ that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_run @%:@ ac_fn_c_check_func LINENO FUNC VAR @%:@ ---------------------------------- @%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_c_check_func @%:@ ac_fn_cxx_try_cpp LINENO @%:@ ------------------------ @%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_cpp @%:@ ac_fn_cxx_try_link LINENO @%:@ ------------------------- @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_link @%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES @%:@ ------------------------------------------------------- @%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using @%:@ the include files in INCLUDES and setting the cache variable VAR @%:@ accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 @%:@include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------------------------ ## ## Report this to akiselman-org@exchange.nvidia.com ## ## ------------------------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_c_check_header_mongrel @%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES @%:@ --------------------------------------------------------- @%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using @%:@ the include files in INCLUDES and setting the cache variable VAR @%:@ accordingly. ac_fn_cxx_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 @%:@include <$2> _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include <$2> _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------------------------ ## ## Report this to akiselman-org@exchange.nvidia.com ## ## ------------------------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_cxx_check_header_mongrel @%:@ ac_fn_cxx_try_run LINENO @%:@ ------------------------ @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes @%:@ that executables *can* be run. ac_fn_cxx_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_run cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by mstflint $as_me 4.26.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in @%:@(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat >>confdefs.h <<_ACEOF @%:@define PROJECT "mstflint" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define VERSION "4.26.0" _ACEOF ac_aux_dir= for ac_dir in config "$srcdir"/config; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. am__api_version='1.13' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in @%:@(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null @%:@ Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='mstflint' VERSION='4.26.0' cat >>confdefs.h <<_ACEOF @%:@define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $@%:@ != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf @%:@ Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if ${ac_cv_cxx_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CXX_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep @%:@ Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } @%:@ Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } @%:@ Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF @%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_DLFCN_H 1 _ACEOF fi done func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf # Set options enable_dlopen=no enable_win32_dll=no @%:@ Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi @%:@ Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi @%:@ Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default @%:@ Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF @%:@define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic@&t@ -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic@&t@ -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if ${ac_cv_prog_CXXCPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu else _lt_caught_CXX_error=yes fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds reload_flag_CXX=$reload_flag reload_cmds_CXX=$reload_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration @%:@ Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec_CXX='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty # executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared # libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_CXX=' ' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=yes file_list_spec_CXX='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes allow_undefined_flag_CXX="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else ld_shlibs_CXX=no fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) ld_shlibs_CXX=yes ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else ld_shlibs_CXX=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ '"$reload_cmds_CXX" ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) # IBM XL 8.0, 9.0 on PPC and BlueGene lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX@&t@ -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX@&t@ -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' ;; esac ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc_CXX=no else lt_cv_archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test "$hardcode_action_CXX" = relink || test "$inherit_rpath_CXX" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_commands="$ac_config_commands libtool" # Only expand once: ac_config_headers="$ac_config_headers config.h" # OPENSSL_VERSION_NUMBER < 0x100020bf #0x100020bfL = OpenSSL 1.0.2k - 26 Jan 2017 MIN_OPENSSL_VER="1.0.2k" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if OPENSSL_VERSION_NUMBER < 0x100020bf ERROR: OPENSSL_VERSION_NUMBER version must be >= 0x100020bf ("OpenSSL 1.0.2k - 26 Jan 2017") #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : OPENSSL_VERSION_VALID=yes else OPENSSL_VERSION_VALID=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext OS=$(uname -s) KERNEL_VER=`uname -r | egrep -E -o '[0-9]+\.[0-9]+' | head -1` OFED_VER=`ofed_info -s | egrep -E -o '[0-9]+\.[0-9]+' | head -1` OFED_EXIST=`ofed_info -s` OFED_NOT_EXIST="ofed_info: command not found" MTCR_CONF_DIR="" LDL="" default_en_inband="" default_en_rdmem="no" OFED_VERSION_CHK=0 KERNEL_BUILD_CHK=0 if test "x$OFED_EXIST" != "x$OFED_NOT_EXIST"; then if test $(echo $OFED_VER 5.6 | tr " " "\n" | sort -V | tail -n 1) == $OFED_VER ; then OFED_VERSION_CHK=1 fi fi if test ${OFED_VERSION_CHK} = 1; then OFED_BUILD_TRUE= OFED_BUILD_FALSE='#' else OFED_BUILD_TRUE='#' OFED_BUILD_FALSE= fi #AC_MSG_NOTICE(Kernel: ${KERNEL_VER}) if test ${KERNEL_VER} \> "x5.13" ; then KERNEL_BUILD_CHK=1 fi if test ${KERNEL_BUILD_CHK} = 1; then KERNEL_BUILD_TRUE= KERNEL_BUILD_FALSE='#' else KERNEL_BUILD_TRUE='#' KERNEL_BUILD_FALSE= fi LDFLAGS="${LDFLAGS} -L/usr/local/lib -L/usr/local/lib64 -L/usr/lib64" CXXFLAGS="${CXXFLAGS} -isystem /usr/local/include" if test "x$OS" = "xFreeBSD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: FreeBSD Build" >&5 $as_echo "$as_me: FreeBSD Build" >&6;} MTCR_CONF_DIR="mtcr_freebsd" CFLAGS="${CFLAGS} -I /usr/local/include" else MTCR_CONF_DIR="mtcr_ul" LDL="-ldl" default_en_inband="yes" if test ${OFED_VERSION_CHK} -eq 1 ; then default_en_rdmem="yes" fi fi if echo $build_cpu | grep -iq "aarch64" ; then ARM64_BUILD_TRUE= ARM64_BUILD_FALSE='#' else ARM64_BUILD_TRUE='#' ARM64_BUILD_FALSE= fi if echo $build_cpu | grep -iq "x86_64" ; then X86_64_BUILD_TRUE= X86_64_BUILD_FALSE='#' else X86_64_BUILD_TRUE='#' X86_64_BUILD_FALSE= fi ac_fn_c_check_header_mongrel "$LINENO" "termios.h" "ac_cv_header_termios_h" "$ac_includes_default" if test "x$ac_cv_header_termios_h" = xyes; then : CXXFLAGS="${CXXFLAGS} -DHAVE_TERMIOS_H" fi TOOLS_CRYPTO="" MAD_IFC="" FW_MGR_TOOLS="" XZ_UTILS_DIR="" ADABE_TOOLS="" ADABE_DBS="" ADABE_DBS_EXTRA_DIST="" DPA="" COMPILER_FPIC="-fPIC" { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-dc argument" >&5 $as_echo_n "checking --enable-dc argument... " >&6; } @%:@ Check whether --enable-dc was given. if test "${enable_dc+set}" = set; then : enableval=$enable_dc; enable_dc=$enableval else enable_dc="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_dc" >&5 $as_echo "$enable_dc" >&6; } if test "$enable_dc" = "yes"; then ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" if test "x$ac_cv_header_zlib_h" = xyes; then : else as_fn_error $? "cannot find zlib.h . Use --disable-dc to remove this dependency" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uncompress in -lz" >&5 $as_echo_n "checking for uncompress in -lz... " >&6; } if ${ac_cv_lib_z_uncompress+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char uncompress (); int main () { return uncompress (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_z_uncompress=yes else ac_cv_lib_z_uncompress=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_uncompress" >&5 $as_echo "$ac_cv_lib_z_uncompress" >&6; } if test "x$ac_cv_lib_z_uncompress" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_LIBZ 1 _ACEOF LIBS="-lz $LIBS" else as_fn_error $? "cannot find zlib uncompress() function. Use --disable-dc to remove this dependency" "$LINENO" 5 fi fi # FWMANAGER { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-fw-mgr argument" >&5 $as_echo_n "checking --enable-fw-mgr argument... " >&6; } @%:@ Check whether --enable-fw-mgr was given. if test "${enable_fw_mgr+set}" = set; then : enableval=$enable_fw_mgr; enable_fw_mgr="yes" else enable_fw_mgr="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_fw_mgr" >&5 $as_echo "$enable_fw_mgr" >&6; } if test "x$enable_fw_mgr" = "xyes"; then ac_fn_c_check_header_mongrel "$LINENO" "curl/curl.h" "ac_cv_header_curl_curl_h" "$ac_includes_default" if test "x$ac_cv_header_curl_curl_h" = xyes; then : else as_fn_error $? "cannot find curl/curl.h . this header is needed for compiling fw manager tool" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" if test "x$ac_cv_header_zlib_h" = xyes; then : else as_fn_error $? "cannot find zlib.h . this header is needed for compiling fw manager tool" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uncompress in -lz" >&5 $as_echo_n "checking for uncompress in -lz... " >&6; } if ${ac_cv_lib_z_uncompress+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char uncompress (); int main () { return uncompress (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_z_uncompress=yes else ac_cv_lib_z_uncompress=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_uncompress" >&5 $as_echo "$ac_cv_lib_z_uncompress" >&6; } if test "x$ac_cv_lib_z_uncompress" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_LIBZ 1 _ACEOF LIBS="-lz $LIBS" else as_fn_error $? "cannot find zlib uncompress() function." "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "lzma.h" "ac_cv_header_lzma_h" "$ac_includes_default" if test "x$ac_cv_header_lzma_h" = xyes; then : else as_fn_error $? "Cannot find lzma.h." "$LINENO" 5 fi CURL_INC_DIR=/usr/include/curl/ fi # mlxdpa { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-dpa argument" >&5 $as_echo_n "checking --enable-dpa argument... " >&6; } @%:@ Check whether --enable-dpa was given. if test "${enable_dpa+set}" = set; then : enableval=$enable_dpa; enable_dpa="yes" else enable_dpa="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_dpa" >&5 $as_echo "$enable_dpa" >&6; } # Adabe { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-adb-generic-tools argument" >&5 $as_echo_n "checking --enable-adb-generic-tools argument... " >&6; } @%:@ Check whether --enable-adb-generic-tools was given. if test "${enable_adb_generic_tools+set}" = set; then : enableval=$enable_adb_generic_tools; enable_adb_generic_tools="yes" else enable_adb_generic_tools="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_adb_generic_tools" >&5 $as_echo "$enable_adb_generic_tools" >&6; } if test "x$enable_adb_generic_tools" = "xyes"; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML_ParserCreate_MM in -lexpat" >&5 $as_echo_n "checking for XML_ParserCreate_MM in -lexpat... " >&6; } if ${ac_cv_lib_expat_XML_ParserCreate_MM+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lexpat $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XML_ParserCreate_MM (); int main () { return XML_ParserCreate_MM (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_expat_XML_ParserCreate_MM=yes else ac_cv_lib_expat_XML_ParserCreate_MM=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_expat_XML_ParserCreate_MM" >&5 $as_echo "$ac_cv_lib_expat_XML_ParserCreate_MM" >&6; } if test "x$ac_cv_lib_expat_XML_ParserCreate_MM" = xyes; then : for ac_header in expat.h do : ac_fn_cxx_check_header_mongrel "$LINENO" "expat.h" "ac_cv_header_expat_h" "$ac_includes_default" if test "x$ac_cv_header_expat_h" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_EXPAT_H 1 _ACEOF have_expat=true else have_expat=false fi done else have_expat=false fi if ! $have_expat; then as_fn_error $? "Expat library is missing, please install expat xml parser to continue: expat-devel. http://expat.sourceforge.net/" "$LINENO" 5 fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi if test "x$enable_fw_mgr" = "xyes" ; then ENABLE_FWMGR_TRUE= ENABLE_FWMGR_FALSE='#' else ENABLE_FWMGR_TRUE='#' ENABLE_FWMGR_FALSE= fi # XML2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-xml2 argument" >&5 $as_echo_n "checking --enable-xml2 argument... " >&6; } @%:@ Check whether --enable-xml2 was given. if test "${enable_xml2+set}" = set; then : enableval=$enable_xml2; enable_xml2="yes" else enable_xml2="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_xml2" >&5 $as_echo "$enable_xml2" >&6; } if test "x$enable_xml2" = "xyes" || test "x$enable_fw_mgr" = "xyes" ; then # XML2 checks ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test "x$OS" = "xFreeBSD"; then CXXFLAGS="${CXXFLAGS} -isystem /usr/local/include/libxml2" else CXXFLAGS="${CXXFLAGS} -isystem /usr/include/libxml2" fi ac_fn_cxx_check_header_mongrel "$LINENO" "libxml2/libxml/xpath.h" "ac_cv_header_libxml2_libxml_xpath_h" "$ac_includes_default" if test "x$ac_cv_header_libxml2_libxml_xpath_h" = xyes; then : else as_fn_error $? "libxml2: xpath.h is not found in the system PATH. make sure libxml2 headers are installed." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlDocDumpFormatMemoryEnc in -lxml2" >&5 $as_echo_n "checking for xmlDocDumpFormatMemoryEnc in -lxml2... " >&6; } if ${ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char xmlDocDumpFormatMemoryEnc (); int main () { return xmlDocDumpFormatMemoryEnc (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc=yes else ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc" >&5 $as_echo "$ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc" >&6; } if test "x$ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_LIBXML2 1 _ACEOF LIBS="-lxml2 $LIBS" else as_fn_error $? "cannot find xml2 xmlDocDumpFormatMemoryEnc() function. Try re-installing the library..." "$LINENO" 5 fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi if test "x$enable_xml2" = "xno"; then DISABLE_XML2_TRUE= DISABLE_XML2_FALSE='#' else DISABLE_XML2_TRUE='#' DISABLE_XML2_FALSE= fi if test "x$enable_dc" = "xyes"; then ENABLE_DC_TRUE= ENABLE_DC_FALSE='#' else ENABLE_DC_TRUE='#' ENABLE_DC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-inband argument" >&5 $as_echo_n "checking --enable-inband argument... " >&6; } @%:@ Check whether --enable-inband was given. if test "${enable_inband+set}" = set; then : enableval=$enable_inband; enable_inband=$enableval else enable_inband=$default_en_inband fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_inband" >&5 $as_echo "$enable_inband" >&6; } if test "x$enable_inband" = "xyes"; then ac_fn_c_check_header_mongrel "$LINENO" "infiniband/mad.h" "ac_cv_header_infiniband_mad_h" "$ac_includes_default" if test "x$ac_cv_header_infiniband_mad_h" = xyes; then : else as_fn_error $? "cannot find infiniband/mad.h . Use --disable-inband to remove this dependency" "$LINENO" 5 fi MAD_IFC="mad_ifc" else CXXFLAGS="$CXXFLAGS -DNO_INBAND" CFLAGS="$CFLAGS -DNO_INBAND" fi if test "x$enable_inband" = "xyes"; then ENABLE_INBAND_TRUE= ENABLE_INBAND_FALSE='#' else ENABLE_INBAND_TRUE='#' ENABLE_INBAND_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-rdmem argument" >&5 $as_echo_n "checking --enable-rdmem argument... " >&6; } @%:@ Check whether --enable-rdmem was given. if test "${enable_rdmem+set}" = set; then : enableval=$enable_rdmem; enable_rdmem=$enableval else enable_rdmem=$default_en_rdmem fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_rdmem" >&5 $as_echo "$enable_rdmem" >&6; } if test "x$enable_rdmem" = "xyes"; then for ac_header in infiniband/mlx5dv.h infiniband/verbs.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF @%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF else as_fn_error $? "cannot find infiniband/mlx5dv.h or infiniband/verbs.h . Use --disable-rdmem to remove this dependency" "$LINENO" 5 fi done else CXXFLAGS="$CXXFLAGS -DNO_RDMEM" CFLAGS="$CFLAGS -DNO_RDMEM" fi if test "x$enable_rdmem" = "xyes"; then ENABLE_RDMEM_TRUE= ENABLE_RDMEM_FALSE='#' else ENABLE_RDMEM_TRUE='#' ENABLE_RDMEM_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-cs argument" >&5 $as_echo_n "checking --enable-cs argument... " >&6; } @%:@ Check whether --enable-cs was given. if test "${enable_cs+set}" = set; then : enableval=$enable_cs; enable_cs="yes" else enable_cs="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_cs" >&5 $as_echo "$enable_cs" >&6; } if test "x$enable_cs" = "xyes"; then ac_fn_c_check_header_mongrel "$LINENO" "openssl/md5.h" "ac_cv_header_openssl_md5_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_md5_h" = xyes; then : else as_fn_error $? "cannot find openssl/md5.h . remove --enable-cs to remove this dependency or install openssl" "$LINENO" 5 fi TOOLS_CRYPTO="tools_crypto" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking openssl argument" >&5 $as_echo_n "checking openssl argument... " >&6; } @%:@ Check whether --enable-openssl was given. if test "${enable_openssl+set}" = set; then : enableval=$enable_openssl; enable_openssl=$enableval else enable_openssl="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_openssl" >&5 $as_echo "$enable_openssl" >&6; } if test "x$enable_openssl" = "xyes"; then # check version >= 1.1.1 (not implemented) ac_fn_c_check_header_mongrel "$LINENO" "openssl/sha.h" "ac_cv_header_openssl_sha_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_sha_h" = xyes; then : else as_fn_error $? "cannot find openssl/sha.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/rsa.h" "ac_cv_header_openssl_rsa_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_rsa_h" = xyes; then : else as_fn_error $? "cannot find openssl/rsa.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/pem.h" "ac_cv_header_openssl_pem_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_pem_h" = xyes; then : else as_fn_error $? "cannot find openssl/pem.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/bio.h" "ac_cv_header_openssl_bio_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_bio_h" = xyes; then : else as_fn_error $? "cannot find openssl/bio.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/md5.h" "ac_cv_header_openssl_md5_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_md5_h" = xyes; then : else as_fn_error $? "cannot find openssl/md5.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi TOOLS_CRYPTO="tools_crypto mlxsign_lib" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-all-static argument" >&5 $as_echo_n "checking --enable-all-static argument... " >&6; } @%:@ Check whether --enable-all_static was given. if test "${enable_all_static+set}" = set; then : enableval=$enable_all_static; enable_all_static="yes" else enable_all_static="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_all_static" >&5 $as_echo "$enable_all_static" >&6; } if test "x$enable_all_static" = "xyes"; then : if test "x$enable_dc" = "xyes"; then as_fn_error $? "cannot enable all static with enable dc . add --disable-dc to remove dependency with dynamic zlib" "$LINENO" 5 fi if test "x$enable_openssl" = "xyes"; then as_fn_error $? "cannot enable all static with enable openssl . add --disable-openssl to remove dependency with dynamic openssl" "$LINENO" 5 fi if test "x$enable_inband" = "xyes"; then as_fn_error $? "cannot enable all static with enable inband . add --disable-inband to remove dependency with dynamic inband" "$LINENO" 5 fi LDFLAGS="$LDFLAGS -all-static" CFLAGS="$CFLAGS -DSQLITE_OMIT_LOAD_EXTENSION=0 -DIBVSMAD_DLOPEN" fi if test "x$enable_openssl" = "xyes" ; then ENABLE_OPENSSL_TRUE= ENABLE_OPENSSL_FALSE='#' else ENABLE_OPENSSL_TRUE='#' ENABLE_OPENSSL_FALSE= fi if test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes" ; then ENABLE_CS_TRUE= ENABLE_CS_FALSE='#' else ENABLE_CS_TRUE='#' ENABLE_CS_FALSE= fi @%:@ Check whether --enable-static_libstdcpp was given. if test "${enable_static_libstdcpp+set}" = set; then : enableval=$enable_static_libstdcpp; fi if test "x$enable_static_libstdcpp" = "xyes" -o "x$enable_all_static" = "xyes" ; then : CXXFLAGS="$CXXFLAGS -static-libstdc++ -static-libgcc" fi @%:@ Check whether --enable-dynamic_ld was given. if test "${enable_dynamic_ld+set}" = set; then : enableval=$enable_dynamic_ld; fi if test "x$enable_dynamic_ld" = "xyes"; then : LDFLAGS="$LDFLAGS -Wl,--dynamic-linker=/lib64/ld64.so.2" fi for ac_header in iniparser.h do : ac_fn_c_check_header_mongrel "$LINENO" "iniparser.h" "ac_cv_header_iniparser_h" "$ac_includes_default" if test "x$ac_cv_header_iniparser_h" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_INIPARSER_H 1 _ACEOF INIPARSER_SYSTEM_AVAILABLE="yes" else INIPARSER_SYSTEM_AVAILABLE="no" fi done if test "$INIPARSER_SYSTEM_AVAILABLE" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing iniparser_load" >&5 $as_echo_n "checking for library containing iniparser_load... " >&6; } if ${ac_cv_search_iniparser_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char iniparser_load (); int main () { return iniparser_load (); ; return 0; } _ACEOF for ac_lib in '' iniparser; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_iniparser_load=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_iniparser_load+:} false; then : break fi done if ${ac_cv_search_iniparser_load+:} false; then : else ac_cv_search_iniparser_load=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_iniparser_load" >&5 $as_echo "$ac_cv_search_iniparser_load" >&6; } ac_res=$ac_cv_search_iniparser_load if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" INIPARSER_SYSTEM_AVAILABLE="yes" else INIPARSER_SYSTEM_AVAILABLE="no" fi fi if test "$INIPARSER_SYSTEM_AVAILABLE" = "no"; then INIPARSER_CFLAGS='-I$(top_srcdir)/ext_libs/iniParser' INIPARSER_LIBS='$(top_builddir)/ext_libs/iniParser/libiniparser.la' fi if test "$INIPARSER_SYSTEM_AVAILABLE" = no; then USE_LOCAL_INIPARSER_TRUE= USE_LOCAL_INIPARSER_FALSE='#' else USE_LOCAL_INIPARSER_TRUE='#' USE_LOCAL_INIPARSER_FALSE= fi if test "x$INIPARSER_SYSTEM_AVAILABLE" = "xyes" ; then : CXXFLAGS="$CXXFLAGS -DHAVE_INI_PARSER" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing JSON" >&5 $as_echo_n "checking for library containing JSON... " >&6; } if ${ac_cv_search_JSON+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char JSON (); int main () { return JSON (); ; return 0; } _ACEOF for ac_lib in '' jsoncpp; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_JSON=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_JSON+:} false; then : break fi done if ${ac_cv_search_JSON+:} false; then : else ac_cv_search_JSON=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_JSON" >&5 $as_echo "$ac_cv_search_JSON" >&6; } ac_res=$ac_cv_search_JSON if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" JSON_SYSTEM_AVAILABLE="yes" else JSON_SYSTEM_AVAILABLE="no" JSON_CFLAGS='-I$(top_srcdir)/ext_libs/json' JSON_LIBS='$(top_builddir)/ext_libs/json/libjson.la' fi if test "$JSON_SYSTEM_AVAILABLE" = no; then USE_LOCAL_JSON_TRUE= USE_LOCAL_JSON_FALSE='#' else USE_LOCAL_JSON_TRUE='#' USE_LOCAL_JSON_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mupCreateVar" >&5 $as_echo_n "checking for library containing mupCreateVar... " >&6; } if ${ac_cv_search_mupCreateVar+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char mupCreateVar (); int main () { return mupCreateVar (); ; return 0; } _ACEOF for ac_lib in '' muparser; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_mupCreateVar=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_mupCreateVar+:} false; then : break fi done if ${ac_cv_search_mupCreateVar+:} false; then : else ac_cv_search_mupCreateVar=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mupCreateVar" >&5 $as_echo "$ac_cv_search_mupCreateVar" >&6; } ac_res=$ac_cv_search_mupCreateVar if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" MUPARSER_SYSTEM_AVAILABLE="yes" else MUPARSER_SYSTEM_AVAILABLE="no" MUPARSER_CFLAGS='-I$(top_srcdir)/ext_libs/muparser' MUPARSER_LIBS='$(top_builddir)/ext_libs/muparser/libmuparser.la' fi if test "$MUPARSER_SYSTEM_AVAILABLE" = no; then USE_LOCAL_MUPARSER_TRUE= USE_LOCAL_MUPARSER_FALSE='#' else USE_LOCAL_MUPARSER_TRUE='#' USE_LOCAL_MUPARSER_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sqlite3_initialize" >&5 $as_echo_n "checking for library containing sqlite3_initialize... " >&6; } if ${ac_cv_search_sqlite3_initialize+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sqlite3_initialize (); int main () { return sqlite3_initialize (); ; return 0; } _ACEOF for ac_lib in '' sqlite3; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_sqlite3_initialize=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_sqlite3_initialize+:} false; then : break fi done if ${ac_cv_search_sqlite3_initialize+:} false; then : else ac_cv_search_sqlite3_initialize=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sqlite3_initialize" >&5 $as_echo "$ac_cv_search_sqlite3_initialize" >&6; } ac_res=$ac_cv_search_sqlite3_initialize if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" SQLITE_SYSTEM_AVAILABLE="yes" else SQLITE_SYSTEM_AVAILABLE="no" SQLITE_CFLAGS='-I$(top_srcdir)/ext_libs/sqlite' SQLITE_LIBS='$(top_builddir)/ext_libs/sqlite/libsqlite3.la' fi if test "$SQLITE_SYSTEM_AVAILABLE" = no; then USE_LOCAL_SQLITE_TRUE= USE_LOCAL_SQLITE_FALSE='#' else USE_LOCAL_SQLITE_TRUE='#' USE_LOCAL_SQLITE_FALSE= fi CFLAGS="$CFLAGS -DMST_UL" CXXFLAGS="$CXXFLAGS -DMST_UL" CCVER=`${CC} --version | grep ${CC} | grep -E -o "( )[4-9]\.[0-9]\.[0-9]" | head -1` { $as_echo "$as_me:${as_lineno-$LINENO}: Compiler: ${CC}; version: ${CCVER};" >&5 $as_echo "$as_me: Compiler: ${CC}; version: ${CCVER};" >&6;} if test ${CCVER} \> 5.0.0 ; then CXXFLAGS="$CXXFLAGS -std=c++14" CFLAGS="$CFLAGS -fgnu89-inline" elif test ${CCVER} \> 4.7.2 ; then CXXFLAGS="$CXXFLAGS -std=c++11" fi AM_CFLAGS="-Wall" AM_CXXFLAGS="-Wall" ac_config_files="$ac_config_files mstflint.spec" # We save and restore CFLAGS, after adding Wall and Werror # because AX_CHECK_COMPILE_FLAG doesn't work properly without it # C related ignores OLD_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Wall -Werror" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wno-format-overflow" >&5 $as_echo_n "checking whether C compiler accepts -Wno-format-overflow... " >&6; } if ${ax_cv_check_cflags___Wno_format_overflow+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CFLAGS CFLAGS="$CFLAGS -Wno-format-overflow" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_cv_check_cflags___Wno_format_overflow=yes else ax_cv_check_cflags___Wno_format_overflow=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wno_format_overflow" >&5 $as_echo "$ax_cv_check_cflags___Wno_format_overflow" >&6; } if test "x$ax_cv_check_cflags___Wno_format_overflow" = xyes; then : CFLAGS="$CFLAGS -Wno-format-overflow" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wno-implicit-fallthrough" >&5 $as_echo_n "checking whether C compiler accepts -Wno-implicit-fallthrough... " >&6; } if ${ax_cv_check_cflags___Wno_implicit_fallthrough+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CFLAGS CFLAGS="$CFLAGS -Wno-implicit-fallthrough" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_cv_check_cflags___Wno_implicit_fallthrough=yes else ax_cv_check_cflags___Wno_implicit_fallthrough=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wno_implicit_fallthrough" >&5 $as_echo "$ax_cv_check_cflags___Wno_implicit_fallthrough" >&6; } if test "x$ax_cv_check_cflags___Wno_implicit_fallthrough" = xyes; then : CFLAGS="$CFLAGS -Wno-implicit-fallthrough" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wno-cast-function-type" >&5 $as_echo_n "checking whether C compiler accepts -Wno-cast-function-type... " >&6; } if ${ax_cv_check_cflags___Wno_cast_function_type+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CFLAGS CFLAGS="$CFLAGS -Wno-cast-function-type" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_cv_check_cflags___Wno_cast_function_type=yes else ax_cv_check_cflags___Wno_cast_function_type=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wno_cast_function_type" >&5 $as_echo "$ax_cv_check_cflags___Wno_cast_function_type" >&6; } if test "x$ax_cv_check_cflags___Wno_cast_function_type" = xyes; then : CFLAGS="$CFLAGS -Wno-cast-function-type" else : fi CFLAGS="$OLD_CFLAGS" # C++ related ignores OLD_CXXFLAGS="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -Wall -Werror" ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-implicit-fallthrough" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-implicit-fallthrough... " >&6; } if ${ax_cv_check_cxxflags___Wno_implicit_fallthrough+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_implicit_fallthrough=yes else ax_cv_check_cxxflags___Wno_implicit_fallthrough=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_implicit_fallthrough" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_implicit_fallthrough" >&6; } if test "x$ax_cv_check_cxxflags___Wno_implicit_fallthrough" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-format-overflow" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-format-overflow... " >&6; } if ${ax_cv_check_cxxflags___Wno_format_overflow+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-format-overflow" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_format_overflow=yes else ax_cv_check_cxxflags___Wno_format_overflow=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_format_overflow" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_format_overflow" >&6; } if test "x$ax_cv_check_cxxflags___Wno_format_overflow" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-format-overflow" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-cast-function-type" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-cast-function-type... " >&6; } if ${ax_cv_check_cxxflags___Wno_cast_function_type+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-cast-function-type" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_cast_function_type=yes else ax_cv_check_cxxflags___Wno_cast_function_type=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_cast_function_type" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_cast_function_type" >&6; } if test "x$ax_cv_check_cxxflags___Wno_cast_function_type" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-cast-function-type" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-class-memaccess" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-class-memaccess... " >&6; } if ${ax_cv_check_cxxflags___Wno_class_memaccess+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-class-memaccess" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_class_memaccess=yes else ax_cv_check_cxxflags___Wno_class_memaccess=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_class_memaccess" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_class_memaccess" >&6; } if test "x$ax_cv_check_cxxflags___Wno_class_memaccess" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-class-memaccess" else : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CXXFLAGS="$OLD_CXXFLAGS" TOOLS_BUILD_TIME=`date +"%b %d %Y\, %H:%M:%S"` if test "x$SOURCE_DATE_EPOCH" != "x"; then TOOLS_BUILD_TIME=`LC_ALL=C date -u -d @$SOURCE_DATE_EPOCH +"%b %d %Y\, %H:%M:%S"` fi if test x"$MSTFLINT_VERSION_STR" == x; then MSTFLINT_VERSION_STR="$PACKAGE_STRING" fi $as_echo "@%:@define MSTFLINT_VERSION_STR /**/" >>confdefs.h cat >>confdefs.h <<_ACEOF @%:@define MSTFLINT_VERSION_STR "$MSTFLINT_VERSION_STR" _ACEOF if test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes"; then : ac_config_files="$ac_config_files tools_crypto/Makefile" fi if test "x$enable_openssl" = "xyes"; then : if test x"$OPENSSL_VERSION_VALID" = "xyes"; then : ac_config_files="$ac_config_files mlxsign_lib/Makefile" else as_fn_error $? "Required OpenSSL version >= $MIN_OPENSSL_VER (or use --disable-openssl)" "$LINENO" 5 fi fi if test "x$enable_openssl" = "xno" && \ test "x$enable_fw_mgr" = "xyes" ; then as_fn_error $? "--enable-fw-mgr cannot be used with --disabled-openssl." "$LINENO" 5 fi if test "x$enable_fw_mgr" = "xyes"; then : ac_config_files="$ac_config_files mlxfwupdate/Makefile" ac_config_files="$ac_config_files ext_libs/iniParser/Makefile" ac_config_files="$ac_config_files mlxarchive/Makefile" FW_MGR_TOOLS="mlxfwupdate mlxarchive" fi if test "x$enable_dpa" = "xyes"; then : ac_config_files="$ac_config_files mlxdpa/Makefile" DPA="mlxdpa" fi if test "x$enable_dpa" = "xyes" ; then ENABLE_DPA_TRUE= ENABLE_DPA_FALSE='#' else ENABLE_DPA_TRUE='#' ENABLE_DPA_FALSE= fi if test "x$enable_adb_generic_tools" = "xyes"; then : ac_config_files="$ac_config_files adb_parser/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/hca/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/hca/ext/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/switch/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/switch/ext/Makefile" ac_config_files="$ac_config_files mlxreg/Makefile" ac_config_files="$ac_config_files mlxreg/mlxreg_lib/Makefile" ac_config_files="$ac_config_files mlxlink/Makefile" ac_config_files="$ac_config_files mlxlink/modules/Makefile" ac_config_files="$ac_config_files mlxlink/modules/printutil/Makefile" ADABE_TOOLS="adb_parser mlxreg mlxlink" ADABE_DBS="adb" ADABE_DBS_EXTRA_DIST="adb/prm/hca/ext/*.adb adb/prm/switch/ext/*.adb" fi if test "x$enable_fw_mgr" = "xyes" || test "x$enable_adb_generic_tools" = "xyes"; then : ac_config_files="$ac_config_files xz_utils/Makefile" XZ_UTILS_DIR="xz_utils" fi if test "x$OS" = "xFreeBSD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: FreeBSD MTCR" >&5 $as_echo "$as_me: FreeBSD MTCR" >&6;} ac_config_files="$ac_config_files mtcr_freebsd/Makefile" else { $as_echo "$as_me:${as_lineno-$LINENO}: Linux MTCR" >&5 $as_echo "$as_me: Linux MTCR" >&6;} ac_config_files="$ac_config_files mtcr_ul/Makefile" fi if test "x$OS" = "xLinux"; then LINUX_BUILD_TRUE= LINUX_BUILD_FALSE='#' else LINUX_BUILD_TRUE='#' LINUX_BUILD_FALSE= fi # Certain older compilers may not fully support std::regex. # Signatuire is: the code compiles without issues, then it # crashes during runtime with: # terminate called after throwing an instance of 'std::regex_error' # what(): regex_error # For those we resort to using GNU C regex as a fallback. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for std::regex compatibility" >&5 $as_echo_n "checking for std::regex compatibility... " >&6; } ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { std::regex e("[a-z]"); ; return 0; } _ACEOF if ac_fn_cxx_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: std::regex support appears to be incomplete, fallback to GNU C regex" >&5 $as_echo "$as_me: std::regex support appears to be incomplete, fallback to GNU C regex" >&6;} $as_echo "@%:@define USE_STDLIB_REGEX 1" >>confdefs.h fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # we assume that project root may have a tools_git_sha TOOLS_GIT_SHA=$(cd $(dirname "$0"); ./eval_git_sha.sh) { $as_echo "$as_me:${as_lineno-$LINENO}: TOOLS_GIT_SHA $TOOLS_GIT_SHA" >&5 $as_echo "$as_me: TOOLS_GIT_SHA $TOOLS_GIT_SHA" >&6;} ac_config_files="$ac_config_files debian/mstflint.install" ac_config_files="$ac_config_files Makefile cmdif/Makefile cmdparser/Makefile common/Makefile dev_mgt/Makefile ext_libs/Makefile ext_libs/json/Makefile ext_libs/minixz/Makefile ext_libs/muparser/Makefile ext_libs/sqlite/Makefile flint/Makefile fw_comps_mgr/Makefile libmfa/Makefile mad_ifc/Makefile mflash/Makefile mft_utils/Makefile mft_utils/hsmclient/Makefile mlxconfig/Makefile mlxconfig/mlxconfig_dbs/Makefile mlxfwops/Makefile mlxfwops/lib/Makefile mstdump/Makefile mstdump/crd_lib/Makefile mstdump/crd_main/Makefile mstdump/mstdump_dbs/Makefile mtcr_py/Makefile mvpd/Makefile pldmlib/Makefile reg_access/Makefile resourcetools/Makefile resourcetools/resourcedump_lib/Makefile resourcetools/resourcedump_lib/src/Makefile resourcetools/resourcedump_lib/src/commands/Makefile resourcetools/resourcedump_lib/src/common/Makefile resourcetools/resourcedump_lib/src/fetchers/Makefile resourcetools/resourcedump_lib/src/filters/Makefile resourcetools/resourcedump_lib/src/sdk/Makefile small_utils/Makefile small_utils/mlxfwresetlib/Makefile tools_layouts/Makefile tools_res_mgmt/Makefile tracers/Makefile tracers/fwtrace/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIB@&t@OBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${OFED_BUILD_TRUE}" && test -z "${OFED_BUILD_FALSE}"; then as_fn_error $? "conditional \"OFED_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${KERNEL_BUILD_TRUE}" && test -z "${KERNEL_BUILD_FALSE}"; then as_fn_error $? "conditional \"KERNEL_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ARM64_BUILD_TRUE}" && test -z "${ARM64_BUILD_FALSE}"; then as_fn_error $? "conditional \"ARM64_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${X86_64_BUILD_TRUE}" && test -z "${X86_64_BUILD_FALSE}"; then as_fn_error $? "conditional \"X86_64_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_FWMGR_TRUE}" && test -z "${ENABLE_FWMGR_FALSE}"; then as_fn_error $? "conditional \"ENABLE_FWMGR\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DISABLE_XML2_TRUE}" && test -z "${DISABLE_XML2_FALSE}"; then as_fn_error $? "conditional \"DISABLE_XML2\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_DC_TRUE}" && test -z "${ENABLE_DC_FALSE}"; then as_fn_error $? "conditional \"ENABLE_DC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_INBAND_TRUE}" && test -z "${ENABLE_INBAND_FALSE}"; then as_fn_error $? "conditional \"ENABLE_INBAND\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_RDMEM_TRUE}" && test -z "${ENABLE_RDMEM_FALSE}"; then as_fn_error $? "conditional \"ENABLE_RDMEM\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_OPENSSL_TRUE}" && test -z "${ENABLE_OPENSSL_FALSE}"; then as_fn_error $? "conditional \"ENABLE_OPENSSL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_CS_TRUE}" && test -z "${ENABLE_CS_FALSE}"; then as_fn_error $? "conditional \"ENABLE_CS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_INIPARSER_TRUE}" && test -z "${USE_LOCAL_INIPARSER_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_INIPARSER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_JSON_TRUE}" && test -z "${USE_LOCAL_JSON_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_JSON\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_MUPARSER_TRUE}" && test -z "${USE_LOCAL_MUPARSER_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_MUPARSER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_SQLITE_TRUE}" && test -z "${USE_LOCAL_SQLITE_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_SQLITE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_DPA_TRUE}" && test -z "${ENABLE_DPA_FALSE}"; then as_fn_error $? "conditional \"ENABLE_DPA\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LINUX_BUILD_TRUE}" && test -z "${LINUX_BUILD_FALSE}"; then as_fn_error $? "conditional \"LINUX_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in @%:@( *posix*) : set -o posix ;; @%:@( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in @%:@( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in @%:@(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH @%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] @%:@ ---------------------------------------- @%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are @%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the @%:@ script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } @%:@ as_fn_error @%:@ as_fn_set_status STATUS @%:@ ----------------------- @%:@ Set @S|@? to STATUS, without forking. as_fn_set_status () { return $1 } @%:@ as_fn_set_status @%:@ as_fn_exit STATUS @%:@ ----------------- @%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } @%:@ as_fn_exit @%:@ as_fn_unset VAR @%:@ --------------- @%:@ Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset @%:@ as_fn_append VAR VALUE @%:@ ---------------------- @%:@ Append the text in VALUE to the end of the definition contained in VAR. Take @%:@ advantage of any shell optimizations that allow amortized linear growth over @%:@ repeated appends, instead of the typical quadratic growth present in naive @%:@ implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append @%:@ as_fn_arith ARG... @%:@ ------------------ @%:@ Perform arithmetic evaluation on the ARGs, and store the result in the @%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments @%:@ must be portable across @S|@(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in @%:@((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null @%:@ as_fn_mkdir_p @%:@ ------------- @%:@ Create "@S|@as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } @%:@ as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi @%:@ as_fn_executable_p FILE @%:@ ----------------------- @%:@ Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } @%:@ as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by mstflint $as_me 4.26.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ mstflint config.status 4.26.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX @%:@@%:@ Running $as_me. @%:@@%:@ _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ reload_flag_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "mstflint.spec") CONFIG_FILES="$CONFIG_FILES mstflint.spec" ;; "tools_crypto/Makefile") CONFIG_FILES="$CONFIG_FILES tools_crypto/Makefile" ;; "mlxsign_lib/Makefile") CONFIG_FILES="$CONFIG_FILES mlxsign_lib/Makefile" ;; "mlxfwupdate/Makefile") CONFIG_FILES="$CONFIG_FILES mlxfwupdate/Makefile" ;; "ext_libs/iniParser/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/iniParser/Makefile" ;; "mlxarchive/Makefile") CONFIG_FILES="$CONFIG_FILES mlxarchive/Makefile" ;; "mlxdpa/Makefile") CONFIG_FILES="$CONFIG_FILES mlxdpa/Makefile" ;; "adb_parser/Makefile") CONFIG_FILES="$CONFIG_FILES adb_parser/Makefile" ;; "tools_layouts/adb/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/Makefile" ;; "tools_layouts/adb/prm/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/Makefile" ;; "tools_layouts/adb/prm/hca/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/hca/Makefile" ;; "tools_layouts/adb/prm/hca/ext/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/hca/ext/Makefile" ;; "tools_layouts/adb/prm/switch/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/switch/Makefile" ;; "tools_layouts/adb/prm/switch/ext/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/switch/ext/Makefile" ;; "mlxreg/Makefile") CONFIG_FILES="$CONFIG_FILES mlxreg/Makefile" ;; "mlxreg/mlxreg_lib/Makefile") CONFIG_FILES="$CONFIG_FILES mlxreg/mlxreg_lib/Makefile" ;; "mlxlink/Makefile") CONFIG_FILES="$CONFIG_FILES mlxlink/Makefile" ;; "mlxlink/modules/Makefile") CONFIG_FILES="$CONFIG_FILES mlxlink/modules/Makefile" ;; "mlxlink/modules/printutil/Makefile") CONFIG_FILES="$CONFIG_FILES mlxlink/modules/printutil/Makefile" ;; "xz_utils/Makefile") CONFIG_FILES="$CONFIG_FILES xz_utils/Makefile" ;; "mtcr_freebsd/Makefile") CONFIG_FILES="$CONFIG_FILES mtcr_freebsd/Makefile" ;; "mtcr_ul/Makefile") CONFIG_FILES="$CONFIG_FILES mtcr_ul/Makefile" ;; "debian/mstflint.install") CONFIG_FILES="$CONFIG_FILES debian/mstflint.install" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "cmdif/Makefile") CONFIG_FILES="$CONFIG_FILES cmdif/Makefile" ;; "cmdparser/Makefile") CONFIG_FILES="$CONFIG_FILES cmdparser/Makefile" ;; "common/Makefile") CONFIG_FILES="$CONFIG_FILES common/Makefile" ;; "dev_mgt/Makefile") CONFIG_FILES="$CONFIG_FILES dev_mgt/Makefile" ;; "ext_libs/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/Makefile" ;; "ext_libs/json/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/json/Makefile" ;; "ext_libs/minixz/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/minixz/Makefile" ;; "ext_libs/muparser/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/muparser/Makefile" ;; "ext_libs/sqlite/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/sqlite/Makefile" ;; "flint/Makefile") CONFIG_FILES="$CONFIG_FILES flint/Makefile" ;; "fw_comps_mgr/Makefile") CONFIG_FILES="$CONFIG_FILES fw_comps_mgr/Makefile" ;; "libmfa/Makefile") CONFIG_FILES="$CONFIG_FILES libmfa/Makefile" ;; "mad_ifc/Makefile") CONFIG_FILES="$CONFIG_FILES mad_ifc/Makefile" ;; "mflash/Makefile") CONFIG_FILES="$CONFIG_FILES mflash/Makefile" ;; "mft_utils/Makefile") CONFIG_FILES="$CONFIG_FILES mft_utils/Makefile" ;; "mft_utils/hsmclient/Makefile") CONFIG_FILES="$CONFIG_FILES mft_utils/hsmclient/Makefile" ;; "mlxconfig/Makefile") CONFIG_FILES="$CONFIG_FILES mlxconfig/Makefile" ;; "mlxconfig/mlxconfig_dbs/Makefile") CONFIG_FILES="$CONFIG_FILES mlxconfig/mlxconfig_dbs/Makefile" ;; "mlxfwops/Makefile") CONFIG_FILES="$CONFIG_FILES mlxfwops/Makefile" ;; "mlxfwops/lib/Makefile") CONFIG_FILES="$CONFIG_FILES mlxfwops/lib/Makefile" ;; "mstdump/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/Makefile" ;; "mstdump/crd_lib/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/crd_lib/Makefile" ;; "mstdump/crd_main/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/crd_main/Makefile" ;; "mstdump/mstdump_dbs/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/mstdump_dbs/Makefile" ;; "mtcr_py/Makefile") CONFIG_FILES="$CONFIG_FILES mtcr_py/Makefile" ;; "mvpd/Makefile") CONFIG_FILES="$CONFIG_FILES mvpd/Makefile" ;; "pldmlib/Makefile") CONFIG_FILES="$CONFIG_FILES pldmlib/Makefile" ;; "reg_access/Makefile") CONFIG_FILES="$CONFIG_FILES reg_access/Makefile" ;; "resourcetools/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/Makefile" ;; "resourcetools/resourcedump_lib/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/Makefile" ;; "resourcetools/resourcedump_lib/src/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/Makefile" ;; "resourcetools/resourcedump_lib/src/commands/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/commands/Makefile" ;; "resourcetools/resourcedump_lib/src/common/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/common/Makefile" ;; "resourcetools/resourcedump_lib/src/fetchers/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/fetchers/Makefile" ;; "resourcetools/resourcedump_lib/src/filters/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/filters/Makefile" ;; "resourcetools/resourcedump_lib/src/sdk/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/sdk/Makefile" ;; "small_utils/Makefile") CONFIG_FILES="$CONFIG_FILES small_utils/Makefile" ;; "small_utils/mlxfwresetlib/Makefile") CONFIG_FILES="$CONFIG_FILES small_utils/mlxfwresetlib/Makefile" ;; "tools_layouts/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/Makefile" ;; "tools_res_mgmt/Makefile") CONFIG_FILES="$CONFIG_FILES tools_res_mgmt/Makefile" ;; "tracers/Makefile") CONFIG_FILES="$CONFIG_FILES tracers/Makefile" ;; "tracers/fwtrace/Makefile") CONFIG_FILES="$CONFIG_FILES tracers/fwtrace/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="CXX " # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # How to create reloadable object files. reload_flag=$lt_reload_flag_CXX reload_cmds=$lt_reload_cmds_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi mstflint-4.26.0/autom4te.cache/output.00000644000175000017500000226200514522641735020142 0ustar tzafrirctzafrirc@%:@! /bin/sh @%:@ Guess values for system-dependent variables and create Makefiles. @%:@ Generated by GNU Autoconf 2.69 for mstflint 4.26.0. @%:@ @%:@ Report bugs to . @%:@ @%:@ @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @%:@ @%:@ @%:@ This configure script is free software; the Free Software Foundation @%:@ gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in @%:@( *posix*) : set -o posix ;; @%:@( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in @%:@( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in @%:@(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in @%:@ (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in @%:@( *posix*) : set -o posix ;; @%:@( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in @%:@( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in @%:@ (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: akiselman-org@exchange.nvidia.com about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## @%:@ as_fn_unset VAR @%:@ --------------- @%:@ Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset @%:@ as_fn_set_status STATUS @%:@ ----------------------- @%:@ Set @S|@? to STATUS, without forking. as_fn_set_status () { return $1 } @%:@ as_fn_set_status @%:@ as_fn_exit STATUS @%:@ ----------------- @%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } @%:@ as_fn_exit @%:@ as_fn_mkdir_p @%:@ ------------- @%:@ Create "@S|@as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } @%:@ as_fn_mkdir_p @%:@ as_fn_executable_p FILE @%:@ ----------------------- @%:@ Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } @%:@ as_fn_executable_p @%:@ as_fn_append VAR VALUE @%:@ ---------------------- @%:@ Append the text in VALUE to the end of the definition contained in VAR. Take @%:@ advantage of any shell optimizations that allow amortized linear growth over @%:@ repeated appends, instead of the typical quadratic growth present in naive @%:@ implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append @%:@ as_fn_arith ARG... @%:@ ------------------ @%:@ Perform arithmetic evaluation on the ARGs, and store the result in the @%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments @%:@ must be portable across @S|@(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith @%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] @%:@ ---------------------------------------- @%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are @%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the @%:@ script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } @%:@ as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in @%:@((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIB@&t@OBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='mstflint' PACKAGE_TARNAME='mstflint' PACKAGE_VERSION='4.26.0' PACKAGE_STRING='mstflint 4.26.0' PACKAGE_BUGREPORT='akiselman-org@exchange.nvidia.com' PACKAGE_URL='' ac_unique_file="README" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIB@&t@OBJS TOOLS_GIT_SHA LINUX_KERNEL_INCLUDE LINUX_BUILD LINUX_BUILD_FALSE LINUX_BUILD_TRUE XZ_UTILS_DIR ADABE_DBS_EXTRA_DIST ADABE_DBS ADABE_TOOLS DPA ENABLE_DPA_FALSE ENABLE_DPA_TRUE FW_MGR_TOOLS MSTFLINT_VERSION_STR TOOLS_BUILD_TIME USE_LOCAL_SQLITE_FALSE USE_LOCAL_SQLITE_TRUE SQLITE_LIBS SQLITE_CFLAGS USE_LOCAL_MUPARSER_FALSE USE_LOCAL_MUPARSER_TRUE MUPARSER_LIBS MUPARSER_CFLAGS USE_LOCAL_JSON_FALSE USE_LOCAL_JSON_TRUE JSON_LIBS JSON_CFLAGS USE_LOCAL_INIPARSER_FALSE USE_LOCAL_INIPARSER_TRUE INIPARSER_LIBS INIPARSER_CFLAGS ENABLE_CS_FALSE ENABLE_CS_TRUE ENABLE_OPENSSL_FALSE ENABLE_OPENSSL_TRUE TOOLS_CRYPTO ENABLE_RDMEM_FALSE ENABLE_RDMEM_TRUE ENABLE_INBAND_FALSE ENABLE_INBAND_TRUE MAD_IFC ENABLE_DC ENABLE_DC_FALSE ENABLE_DC_TRUE DISABLE_XML2 DISABLE_XML2_FALSE DISABLE_XML2_TRUE ENABLE_FWMGR ENABLE_FWMGR_FALSE ENABLE_FWMGR_TRUE CURL_INC_DIR COMPILER_FPIC X86_64_BUILD_FALSE X86_64_BUILD_TRUE ARM64_BUILD_FALSE ARM64_BUILD_TRUE default_en_inband LDL MTCR_CONF_DIR KERNEL_BUILD KERNEL_BUILD_FALSE KERNEL_BUILD_TRUE OFED_BUILD OFED_BUILD_FALSE OFED_BUILD_TRUE CXXCPP CPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL ac_ct_AR AR am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM VERSION PROJECT target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_dc enable_fw_mgr enable_dpa enable_adb_generic_tools enable_xml2 enable_inband enable_rdmem enable_cs enable_openssl enable_all_static enable_static_libstdcpp enable_dynamic_ld ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CXX CXXFLAGS CCC CPP CXXCPP MSTFLINT_VERSION_STR' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures mstflint 4.26.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX @<:@@S|@ac_default_prefix@:>@ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX @<:@PREFIX@:>@ By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root @<:@DATAROOTDIR/doc/mstflint@:>@ --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of mstflint 4.26.0:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@ --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@ --enable-fast-install@<:@=PKGS@:>@ optimize for fast installation @<:@default=yes@:>@ --disable-libtool-lock avoid locking (might break parallel builds) --disable-dc Disable mstflint "dc" command. Eliminates zlib dependency --enable-fw-mgr Enable compiling mstfwmanager tool and features --enable-dpa Enable compiling mstdpa tool (x86_64/aarch64 Linux only, no FreeBSD support --enable-adb-generic-tools Enable compiling the following tools which depends on ADABE: mstreg and mstlink --enable-xml2 Enable mstflint libxml2 dependent features --disable-inband Disable inband access. Prevents FW update for Mellanox SwitchX and ConnectIB devices. Eliminates infiniband/mad.h dependency --enable-rdmem Enable resource-dump memory mode. OFED libmlx5 and libibverbs dependency --enable-cs Enable mstflint "checksum" command, dependent of openssl library --disable-openssl Disable functionalities that depend on the OpenSSL library --enable-all-static Enable creating none dynamic executables --enable-static-libstdcpp Enable link static to libstdc++ --enable-dynamic-ld Enable dynamic link to ld64.so Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic@<:@=PKGS@:>@ try to use only PIC/non-PIC objects @<:@default=use both@:>@ --with-gnu-ld assume the C compiler uses GNU ld @<:@default=no@:>@ --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor CXXCPP C++ preprocessor MSTFLINT_VERSION_STR The MSTFLINT version Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF mstflint configure 4.26.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## @%:@ ac_fn_c_try_compile LINENO @%:@ -------------------------- @%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_compile @%:@ ac_fn_cxx_try_compile LINENO @%:@ ---------------------------- @%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_compile @%:@ ac_fn_c_try_link LINENO @%:@ ----------------------- @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_link @%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES @%:@ ------------------------------------------------------- @%:@ Tests whether HEADER exists and can be compiled using the include files in @%:@ INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 @%:@include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_c_check_header_compile @%:@ ac_fn_c_try_cpp LINENO @%:@ ---------------------- @%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_cpp @%:@ ac_fn_c_try_run LINENO @%:@ ---------------------- @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes @%:@ that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_c_try_run @%:@ ac_fn_c_check_func LINENO FUNC VAR @%:@ ---------------------------------- @%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_c_check_func @%:@ ac_fn_cxx_try_cpp LINENO @%:@ ------------------------ @%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_cpp @%:@ ac_fn_cxx_try_link LINENO @%:@ ------------------------- @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_link @%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES @%:@ ------------------------------------------------------- @%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using @%:@ the include files in INCLUDES and setting the cache variable VAR @%:@ accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 @%:@include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------------------------ ## ## Report this to akiselman-org@exchange.nvidia.com ## ## ------------------------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_c_check_header_mongrel @%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES @%:@ --------------------------------------------------------- @%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using @%:@ the include files in INCLUDES and setting the cache variable VAR @%:@ accordingly. ac_fn_cxx_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 @%:@include <$2> _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include <$2> _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------------------------ ## ## Report this to akiselman-org@exchange.nvidia.com ## ## ------------------------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } @%:@ ac_fn_cxx_check_header_mongrel @%:@ ac_fn_cxx_try_run LINENO @%:@ ------------------------ @%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes @%:@ that executables *can* be run. ac_fn_cxx_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } @%:@ ac_fn_cxx_try_run cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by mstflint $as_me 4.26.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in @%:@(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat >>confdefs.h <<_ACEOF @%:@define PROJECT "mstflint" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define VERSION "4.26.0" _ACEOF ac_aux_dir= for ac_dir in config "$srcdir"/config; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. am__api_version='1.13' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in @%:@(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null @%:@ Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='mstflint' VERSION='4.26.0' cat >>confdefs.h <<_ACEOF @%:@define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF @%:@define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $@%:@ != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf @%:@ Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if ${ac_cv_cxx_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CXX_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep @%:@ Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } @%:@ Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } @%:@ Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF @%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_DLFCN_H 1 _ACEOF fi done func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf # Set options enable_dlopen=no enable_win32_dll=no @%:@ Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi @%:@ Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi @%:@ Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default @%:@ Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF @%:@define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic@&t@ -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic@&t@ -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if ${ac_cv_prog_CXXCPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@ifdef __STDC__ @%:@ include @%:@else @%:@ include @%:@endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @%:@include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu else _lt_caught_CXX_error=yes fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds reload_flag_CXX=$reload_flag reload_cmds_CXX=$reload_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration @%:@ Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec_CXX='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty # executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared # libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_CXX=' ' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=yes file_list_spec_CXX='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes allow_undefined_flag_CXX="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else ld_shlibs_CXX=no fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) ld_shlibs_CXX=yes ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else ld_shlibs_CXX=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ '"$reload_cmds_CXX" ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) # IBM XL 8.0, 9.0 on PPC and BlueGene lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX@&t@ -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX@&t@ -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' ;; esac ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc_CXX=no else lt_cv_archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test "$hardcode_action_CXX" = relink || test "$inherit_rpath_CXX" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_commands="$ac_config_commands libtool" # Only expand once: ac_config_headers="$ac_config_headers config.h" # OPENSSL_VERSION_NUMBER < 0x100020bf #0x100020bfL = OpenSSL 1.0.2k - 26 Jan 2017 MIN_OPENSSL_VER="1.0.2k" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if OPENSSL_VERSION_NUMBER < 0x100020bf ERROR: OPENSSL_VERSION_NUMBER version must be >= 0x100020bf ("OpenSSL 1.0.2k - 26 Jan 2017") #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : OPENSSL_VERSION_VALID=yes else OPENSSL_VERSION_VALID=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext OS=$(uname -s) KERNEL_VER=`uname -r | egrep -E -o '[0-9]+\.[0-9]+' | head -1` OFED_VER=`ofed_info -s | egrep -E -o '[0-9]+\.[0-9]+' | head -1` OFED_EXIST=`ofed_info -s` OFED_NOT_EXIST="ofed_info: command not found" MTCR_CONF_DIR="" LDL="" default_en_inband="" default_en_rdmem="no" OFED_VERSION_CHK=0 KERNEL_BUILD_CHK=0 if test "x$OFED_EXIST" != "x$OFED_NOT_EXIST"; then if test $(echo $OFED_VER 5.6 | tr " " "\n" | sort -V | tail -n 1) == $OFED_VER ; then OFED_VERSION_CHK=1 fi fi if test ${OFED_VERSION_CHK} = 1; then OFED_BUILD_TRUE= OFED_BUILD_FALSE='#' else OFED_BUILD_TRUE='#' OFED_BUILD_FALSE= fi #AC_MSG_NOTICE(Kernel: ${KERNEL_VER}) if test ${KERNEL_VER} \> "x5.13" ; then KERNEL_BUILD_CHK=1 fi if test ${KERNEL_BUILD_CHK} = 1; then KERNEL_BUILD_TRUE= KERNEL_BUILD_FALSE='#' else KERNEL_BUILD_TRUE='#' KERNEL_BUILD_FALSE= fi LDFLAGS="${LDFLAGS} -L/usr/local/lib -L/usr/local/lib64 -L/usr/lib64" CXXFLAGS="${CXXFLAGS} -isystem /usr/local/include" if test "x$OS" = "xFreeBSD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: FreeBSD Build" >&5 $as_echo "$as_me: FreeBSD Build" >&6;} MTCR_CONF_DIR="mtcr_freebsd" CFLAGS="${CFLAGS} -I /usr/local/include" else MTCR_CONF_DIR="mtcr_ul" LDL="-ldl" default_en_inband="yes" if test ${OFED_VERSION_CHK} -eq 1 ; then default_en_rdmem="yes" fi fi if echo $build_cpu | grep -iq "aarch64" ; then ARM64_BUILD_TRUE= ARM64_BUILD_FALSE='#' else ARM64_BUILD_TRUE='#' ARM64_BUILD_FALSE= fi if echo $build_cpu | grep -iq "x86_64" ; then X86_64_BUILD_TRUE= X86_64_BUILD_FALSE='#' else X86_64_BUILD_TRUE='#' X86_64_BUILD_FALSE= fi ac_fn_c_check_header_mongrel "$LINENO" "termios.h" "ac_cv_header_termios_h" "$ac_includes_default" if test "x$ac_cv_header_termios_h" = xyes; then : CXXFLAGS="${CXXFLAGS} -DHAVE_TERMIOS_H" fi TOOLS_CRYPTO="" MAD_IFC="" FW_MGR_TOOLS="" XZ_UTILS_DIR="" ADABE_TOOLS="" ADABE_DBS="" ADABE_DBS_EXTRA_DIST="" DPA="" COMPILER_FPIC="-fPIC" { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-dc argument" >&5 $as_echo_n "checking --enable-dc argument... " >&6; } @%:@ Check whether --enable-dc was given. if test "${enable_dc+set}" = set; then : enableval=$enable_dc; enable_dc=$enableval else enable_dc="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_dc" >&5 $as_echo "$enable_dc" >&6; } if test "$enable_dc" = "yes"; then ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" if test "x$ac_cv_header_zlib_h" = xyes; then : else as_fn_error $? "cannot find zlib.h . Use --disable-dc to remove this dependency" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uncompress in -lz" >&5 $as_echo_n "checking for uncompress in -lz... " >&6; } if ${ac_cv_lib_z_uncompress+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char uncompress (); int main () { return uncompress (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_z_uncompress=yes else ac_cv_lib_z_uncompress=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_uncompress" >&5 $as_echo "$ac_cv_lib_z_uncompress" >&6; } if test "x$ac_cv_lib_z_uncompress" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_LIBZ 1 _ACEOF LIBS="-lz $LIBS" else as_fn_error $? "cannot find zlib uncompress() function. Use --disable-dc to remove this dependency" "$LINENO" 5 fi fi # FWMANAGER { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-fw-mgr argument" >&5 $as_echo_n "checking --enable-fw-mgr argument... " >&6; } @%:@ Check whether --enable-fw-mgr was given. if test "${enable_fw_mgr+set}" = set; then : enableval=$enable_fw_mgr; enable_fw_mgr="yes" else enable_fw_mgr="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_fw_mgr" >&5 $as_echo "$enable_fw_mgr" >&6; } if test "x$enable_fw_mgr" = "xyes"; then ac_fn_c_check_header_mongrel "$LINENO" "curl/curl.h" "ac_cv_header_curl_curl_h" "$ac_includes_default" if test "x$ac_cv_header_curl_curl_h" = xyes; then : else as_fn_error $? "cannot find curl/curl.h . this header is needed for compiling fw manager tool" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" if test "x$ac_cv_header_zlib_h" = xyes; then : else as_fn_error $? "cannot find zlib.h . this header is needed for compiling fw manager tool" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uncompress in -lz" >&5 $as_echo_n "checking for uncompress in -lz... " >&6; } if ${ac_cv_lib_z_uncompress+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char uncompress (); int main () { return uncompress (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_z_uncompress=yes else ac_cv_lib_z_uncompress=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_uncompress" >&5 $as_echo "$ac_cv_lib_z_uncompress" >&6; } if test "x$ac_cv_lib_z_uncompress" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_LIBZ 1 _ACEOF LIBS="-lz $LIBS" else as_fn_error $? "cannot find zlib uncompress() function." "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "lzma.h" "ac_cv_header_lzma_h" "$ac_includes_default" if test "x$ac_cv_header_lzma_h" = xyes; then : else as_fn_error $? "Cannot find lzma.h." "$LINENO" 5 fi CURL_INC_DIR=/usr/include/curl/ fi # mlxdpa { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-dpa argument" >&5 $as_echo_n "checking --enable-dpa argument... " >&6; } @%:@ Check whether --enable-dpa was given. if test "${enable_dpa+set}" = set; then : enableval=$enable_dpa; enable_dpa="yes" else enable_dpa="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_dpa" >&5 $as_echo "$enable_dpa" >&6; } # Adabe { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-adb-generic-tools argument" >&5 $as_echo_n "checking --enable-adb-generic-tools argument... " >&6; } @%:@ Check whether --enable-adb-generic-tools was given. if test "${enable_adb_generic_tools+set}" = set; then : enableval=$enable_adb_generic_tools; enable_adb_generic_tools="yes" else enable_adb_generic_tools="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_adb_generic_tools" >&5 $as_echo "$enable_adb_generic_tools" >&6; } if test "x$enable_adb_generic_tools" = "xyes"; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML_ParserCreate_MM in -lexpat" >&5 $as_echo_n "checking for XML_ParserCreate_MM in -lexpat... " >&6; } if ${ac_cv_lib_expat_XML_ParserCreate_MM+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lexpat $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XML_ParserCreate_MM (); int main () { return XML_ParserCreate_MM (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_expat_XML_ParserCreate_MM=yes else ac_cv_lib_expat_XML_ParserCreate_MM=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_expat_XML_ParserCreate_MM" >&5 $as_echo "$ac_cv_lib_expat_XML_ParserCreate_MM" >&6; } if test "x$ac_cv_lib_expat_XML_ParserCreate_MM" = xyes; then : for ac_header in expat.h do : ac_fn_cxx_check_header_mongrel "$LINENO" "expat.h" "ac_cv_header_expat_h" "$ac_includes_default" if test "x$ac_cv_header_expat_h" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_EXPAT_H 1 _ACEOF have_expat=true else have_expat=false fi done else have_expat=false fi if ! $have_expat; then as_fn_error $? "Expat library is missing, please install expat xml parser to continue: expat-devel. http://expat.sourceforge.net/" "$LINENO" 5 fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi if test "x$enable_fw_mgr" = "xyes" ; then ENABLE_FWMGR_TRUE= ENABLE_FWMGR_FALSE='#' else ENABLE_FWMGR_TRUE='#' ENABLE_FWMGR_FALSE= fi # XML2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-xml2 argument" >&5 $as_echo_n "checking --enable-xml2 argument... " >&6; } @%:@ Check whether --enable-xml2 was given. if test "${enable_xml2+set}" = set; then : enableval=$enable_xml2; enable_xml2="yes" else enable_xml2="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_xml2" >&5 $as_echo "$enable_xml2" >&6; } if test "x$enable_xml2" = "xyes" || test "x$enable_fw_mgr" = "xyes" ; then # XML2 checks ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test "x$OS" = "xFreeBSD"; then CXXFLAGS="${CXXFLAGS} -isystem /usr/local/include/libxml2" else CXXFLAGS="${CXXFLAGS} -isystem /usr/include/libxml2" fi ac_fn_cxx_check_header_mongrel "$LINENO" "libxml2/libxml/xpath.h" "ac_cv_header_libxml2_libxml_xpath_h" "$ac_includes_default" if test "x$ac_cv_header_libxml2_libxml_xpath_h" = xyes; then : else as_fn_error $? "libxml2: xpath.h is not found in the system PATH. make sure libxml2 headers are installed." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlDocDumpFormatMemoryEnc in -lxml2" >&5 $as_echo_n "checking for xmlDocDumpFormatMemoryEnc in -lxml2... " >&6; } if ${ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char xmlDocDumpFormatMemoryEnc (); int main () { return xmlDocDumpFormatMemoryEnc (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc=yes else ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc" >&5 $as_echo "$ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc" >&6; } if test "x$ac_cv_lib_xml2_xmlDocDumpFormatMemoryEnc" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_LIBXML2 1 _ACEOF LIBS="-lxml2 $LIBS" else as_fn_error $? "cannot find xml2 xmlDocDumpFormatMemoryEnc() function. Try re-installing the library..." "$LINENO" 5 fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi if test "x$enable_xml2" = "xno"; then DISABLE_XML2_TRUE= DISABLE_XML2_FALSE='#' else DISABLE_XML2_TRUE='#' DISABLE_XML2_FALSE= fi if test "x$enable_dc" = "xyes"; then ENABLE_DC_TRUE= ENABLE_DC_FALSE='#' else ENABLE_DC_TRUE='#' ENABLE_DC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-inband argument" >&5 $as_echo_n "checking --enable-inband argument... " >&6; } @%:@ Check whether --enable-inband was given. if test "${enable_inband+set}" = set; then : enableval=$enable_inband; enable_inband=$enableval else enable_inband=$default_en_inband fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_inband" >&5 $as_echo "$enable_inband" >&6; } if test "x$enable_inband" = "xyes"; then ac_fn_c_check_header_mongrel "$LINENO" "infiniband/mad.h" "ac_cv_header_infiniband_mad_h" "$ac_includes_default" if test "x$ac_cv_header_infiniband_mad_h" = xyes; then : else as_fn_error $? "cannot find infiniband/mad.h . Use --disable-inband to remove this dependency" "$LINENO" 5 fi MAD_IFC="mad_ifc" else CXXFLAGS="$CXXFLAGS -DNO_INBAND" CFLAGS="$CFLAGS -DNO_INBAND" fi if test "x$enable_inband" = "xyes"; then ENABLE_INBAND_TRUE= ENABLE_INBAND_FALSE='#' else ENABLE_INBAND_TRUE='#' ENABLE_INBAND_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-rdmem argument" >&5 $as_echo_n "checking --enable-rdmem argument... " >&6; } @%:@ Check whether --enable-rdmem was given. if test "${enable_rdmem+set}" = set; then : enableval=$enable_rdmem; enable_rdmem=$enableval else enable_rdmem=$default_en_rdmem fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_rdmem" >&5 $as_echo "$enable_rdmem" >&6; } if test "x$enable_rdmem" = "xyes"; then for ac_header in infiniband/mlx5dv.h infiniband/verbs.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF @%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF else as_fn_error $? "cannot find infiniband/mlx5dv.h or infiniband/verbs.h . Use --disable-rdmem to remove this dependency" "$LINENO" 5 fi done else CXXFLAGS="$CXXFLAGS -DNO_RDMEM" CFLAGS="$CFLAGS -DNO_RDMEM" fi if test "x$enable_rdmem" = "xyes"; then ENABLE_RDMEM_TRUE= ENABLE_RDMEM_FALSE='#' else ENABLE_RDMEM_TRUE='#' ENABLE_RDMEM_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-cs argument" >&5 $as_echo_n "checking --enable-cs argument... " >&6; } @%:@ Check whether --enable-cs was given. if test "${enable_cs+set}" = set; then : enableval=$enable_cs; enable_cs="yes" else enable_cs="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_cs" >&5 $as_echo "$enable_cs" >&6; } if test "x$enable_cs" = "xyes"; then ac_fn_c_check_header_mongrel "$LINENO" "openssl/md5.h" "ac_cv_header_openssl_md5_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_md5_h" = xyes; then : else as_fn_error $? "cannot find openssl/md5.h . remove --enable-cs to remove this dependency or install openssl" "$LINENO" 5 fi TOOLS_CRYPTO="tools_crypto" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking openssl argument" >&5 $as_echo_n "checking openssl argument... " >&6; } @%:@ Check whether --enable-openssl was given. if test "${enable_openssl+set}" = set; then : enableval=$enable_openssl; enable_openssl=$enableval else enable_openssl="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_openssl" >&5 $as_echo "$enable_openssl" >&6; } if test "x$enable_openssl" = "xyes"; then # check version >= 1.1.1 (not implemented) ac_fn_c_check_header_mongrel "$LINENO" "openssl/sha.h" "ac_cv_header_openssl_sha_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_sha_h" = xyes; then : else as_fn_error $? "cannot find openssl/sha.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/rsa.h" "ac_cv_header_openssl_rsa_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_rsa_h" = xyes; then : else as_fn_error $? "cannot find openssl/rsa.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/pem.h" "ac_cv_header_openssl_pem_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_pem_h" = xyes; then : else as_fn_error $? "cannot find openssl/pem.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/bio.h" "ac_cv_header_openssl_bio_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_bio_h" = xyes; then : else as_fn_error $? "cannot find openssl/bio.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "openssl/md5.h" "ac_cv_header_openssl_md5_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_md5_h" = xyes; then : else as_fn_error $? "cannot find openssl/md5.h . remove --enable-openssl to remove this dependency or install openssl" "$LINENO" 5 fi TOOLS_CRYPTO="tools_crypto mlxsign_lib" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-all-static argument" >&5 $as_echo_n "checking --enable-all-static argument... " >&6; } @%:@ Check whether --enable-all_static was given. if test "${enable_all_static+set}" = set; then : enableval=$enable_all_static; enable_all_static="yes" else enable_all_static="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_all_static" >&5 $as_echo "$enable_all_static" >&6; } if test "x$enable_all_static" = "xyes"; then : if test "x$enable_dc" = "xyes"; then as_fn_error $? "cannot enable all static with enable dc . add --disable-dc to remove dependency with dynamic zlib" "$LINENO" 5 fi if test "x$enable_openssl" = "xyes"; then as_fn_error $? "cannot enable all static with enable openssl . add --disable-openssl to remove dependency with dynamic openssl" "$LINENO" 5 fi if test "x$enable_inband" = "xyes"; then as_fn_error $? "cannot enable all static with enable inband . add --disable-inband to remove dependency with dynamic inband" "$LINENO" 5 fi LDFLAGS="$LDFLAGS -all-static" CFLAGS="$CFLAGS -DSQLITE_OMIT_LOAD_EXTENSION=0 -DIBVSMAD_DLOPEN" fi if test "x$enable_openssl" = "xyes" ; then ENABLE_OPENSSL_TRUE= ENABLE_OPENSSL_FALSE='#' else ENABLE_OPENSSL_TRUE='#' ENABLE_OPENSSL_FALSE= fi if test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes" ; then ENABLE_CS_TRUE= ENABLE_CS_FALSE='#' else ENABLE_CS_TRUE='#' ENABLE_CS_FALSE= fi @%:@ Check whether --enable-static_libstdcpp was given. if test "${enable_static_libstdcpp+set}" = set; then : enableval=$enable_static_libstdcpp; fi if test "x$enable_static_libstdcpp" = "xyes" -o "x$enable_all_static" = "xyes" ; then : CXXFLAGS="$CXXFLAGS -static-libstdc++ -static-libgcc" fi @%:@ Check whether --enable-dynamic_ld was given. if test "${enable_dynamic_ld+set}" = set; then : enableval=$enable_dynamic_ld; fi if test "x$enable_dynamic_ld" = "xyes"; then : LDFLAGS="$LDFLAGS -Wl,--dynamic-linker=/lib64/ld64.so.2" fi for ac_header in iniparser.h do : ac_fn_c_check_header_mongrel "$LINENO" "iniparser.h" "ac_cv_header_iniparser_h" "$ac_includes_default" if test "x$ac_cv_header_iniparser_h" = xyes; then : cat >>confdefs.h <<_ACEOF @%:@define HAVE_INIPARSER_H 1 _ACEOF INIPARSER_SYSTEM_AVAILABLE="yes" else INIPARSER_SYSTEM_AVAILABLE="no" fi done if test "$INIPARSER_SYSTEM_AVAILABLE" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing iniparser_load" >&5 $as_echo_n "checking for library containing iniparser_load... " >&6; } if ${ac_cv_search_iniparser_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char iniparser_load (); int main () { return iniparser_load (); ; return 0; } _ACEOF for ac_lib in '' iniparser; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_iniparser_load=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_iniparser_load+:} false; then : break fi done if ${ac_cv_search_iniparser_load+:} false; then : else ac_cv_search_iniparser_load=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_iniparser_load" >&5 $as_echo "$ac_cv_search_iniparser_load" >&6; } ac_res=$ac_cv_search_iniparser_load if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" INIPARSER_SYSTEM_AVAILABLE="yes" else INIPARSER_SYSTEM_AVAILABLE="no" fi fi if test "$INIPARSER_SYSTEM_AVAILABLE" = "no"; then INIPARSER_CFLAGS='-I$(top_srcdir)/ext_libs/iniParser' INIPARSER_LIBS='$(top_builddir)/ext_libs/iniParser/libiniparser.la' fi if test "$INIPARSER_SYSTEM_AVAILABLE" = no; then USE_LOCAL_INIPARSER_TRUE= USE_LOCAL_INIPARSER_FALSE='#' else USE_LOCAL_INIPARSER_TRUE='#' USE_LOCAL_INIPARSER_FALSE= fi if test "x$INIPARSER_SYSTEM_AVAILABLE" = "xyes" ; then : CXXFLAGS="$CXXFLAGS -DHAVE_INI_PARSER" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing JSON" >&5 $as_echo_n "checking for library containing JSON... " >&6; } if ${ac_cv_search_JSON+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char JSON (); int main () { return JSON (); ; return 0; } _ACEOF for ac_lib in '' jsoncpp; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_JSON=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_JSON+:} false; then : break fi done if ${ac_cv_search_JSON+:} false; then : else ac_cv_search_JSON=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_JSON" >&5 $as_echo "$ac_cv_search_JSON" >&6; } ac_res=$ac_cv_search_JSON if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" JSON_SYSTEM_AVAILABLE="yes" else JSON_SYSTEM_AVAILABLE="no" JSON_CFLAGS='-I$(top_srcdir)/ext_libs/json' JSON_LIBS='$(top_builddir)/ext_libs/json/libjson.la' fi if test "$JSON_SYSTEM_AVAILABLE" = no; then USE_LOCAL_JSON_TRUE= USE_LOCAL_JSON_FALSE='#' else USE_LOCAL_JSON_TRUE='#' USE_LOCAL_JSON_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mupCreateVar" >&5 $as_echo_n "checking for library containing mupCreateVar... " >&6; } if ${ac_cv_search_mupCreateVar+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char mupCreateVar (); int main () { return mupCreateVar (); ; return 0; } _ACEOF for ac_lib in '' muparser; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_mupCreateVar=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_mupCreateVar+:} false; then : break fi done if ${ac_cv_search_mupCreateVar+:} false; then : else ac_cv_search_mupCreateVar=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mupCreateVar" >&5 $as_echo "$ac_cv_search_mupCreateVar" >&6; } ac_res=$ac_cv_search_mupCreateVar if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" MUPARSER_SYSTEM_AVAILABLE="yes" else MUPARSER_SYSTEM_AVAILABLE="no" MUPARSER_CFLAGS='-I$(top_srcdir)/ext_libs/muparser' MUPARSER_LIBS='$(top_builddir)/ext_libs/muparser/libmuparser.la' fi if test "$MUPARSER_SYSTEM_AVAILABLE" = no; then USE_LOCAL_MUPARSER_TRUE= USE_LOCAL_MUPARSER_FALSE='#' else USE_LOCAL_MUPARSER_TRUE='#' USE_LOCAL_MUPARSER_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sqlite3_initialize" >&5 $as_echo_n "checking for library containing sqlite3_initialize... " >&6; } if ${ac_cv_search_sqlite3_initialize+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sqlite3_initialize (); int main () { return sqlite3_initialize (); ; return 0; } _ACEOF for ac_lib in '' sqlite3; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_sqlite3_initialize=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_sqlite3_initialize+:} false; then : break fi done if ${ac_cv_search_sqlite3_initialize+:} false; then : else ac_cv_search_sqlite3_initialize=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sqlite3_initialize" >&5 $as_echo "$ac_cv_search_sqlite3_initialize" >&6; } ac_res=$ac_cv_search_sqlite3_initialize if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" SQLITE_SYSTEM_AVAILABLE="yes" else SQLITE_SYSTEM_AVAILABLE="no" SQLITE_CFLAGS='-I$(top_srcdir)/ext_libs/sqlite' SQLITE_LIBS='$(top_builddir)/ext_libs/sqlite/libsqlite3.la' fi if test "$SQLITE_SYSTEM_AVAILABLE" = no; then USE_LOCAL_SQLITE_TRUE= USE_LOCAL_SQLITE_FALSE='#' else USE_LOCAL_SQLITE_TRUE='#' USE_LOCAL_SQLITE_FALSE= fi CFLAGS="$CFLAGS -DMST_UL" CXXFLAGS="$CXXFLAGS -DMST_UL" CCVER=`${CC} --version | grep ${CC} | grep -E -o "( )[4-9]\.[0-9]\.[0-9]" | head -1` { $as_echo "$as_me:${as_lineno-$LINENO}: Compiler: ${CC}; version: ${CCVER};" >&5 $as_echo "$as_me: Compiler: ${CC}; version: ${CCVER};" >&6;} if test ${CCVER} \> 5.0.0 ; then CXXFLAGS="$CXXFLAGS -std=c++14" CFLAGS="$CFLAGS -fgnu89-inline" elif test ${CCVER} \> 4.7.2 ; then CXXFLAGS="$CXXFLAGS -std=c++11" fi AM_CFLAGS="-Wall" AM_CXXFLAGS="-Wall" ac_config_files="$ac_config_files mstflint.spec" # We save and restore CFLAGS, after adding Wall and Werror # because AX_CHECK_COMPILE_FLAG doesn't work properly without it # C related ignores OLD_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Wall -Werror" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wno-format-overflow" >&5 $as_echo_n "checking whether C compiler accepts -Wno-format-overflow... " >&6; } if ${ax_cv_check_cflags___Wno_format_overflow+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CFLAGS CFLAGS="$CFLAGS -Wno-format-overflow" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_cv_check_cflags___Wno_format_overflow=yes else ax_cv_check_cflags___Wno_format_overflow=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wno_format_overflow" >&5 $as_echo "$ax_cv_check_cflags___Wno_format_overflow" >&6; } if test "x$ax_cv_check_cflags___Wno_format_overflow" = xyes; then : CFLAGS="$CFLAGS -Wno-format-overflow" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wno-implicit-fallthrough" >&5 $as_echo_n "checking whether C compiler accepts -Wno-implicit-fallthrough... " >&6; } if ${ax_cv_check_cflags___Wno_implicit_fallthrough+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CFLAGS CFLAGS="$CFLAGS -Wno-implicit-fallthrough" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_cv_check_cflags___Wno_implicit_fallthrough=yes else ax_cv_check_cflags___Wno_implicit_fallthrough=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wno_implicit_fallthrough" >&5 $as_echo "$ax_cv_check_cflags___Wno_implicit_fallthrough" >&6; } if test "x$ax_cv_check_cflags___Wno_implicit_fallthrough" = xyes; then : CFLAGS="$CFLAGS -Wno-implicit-fallthrough" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wno-cast-function-type" >&5 $as_echo_n "checking whether C compiler accepts -Wno-cast-function-type... " >&6; } if ${ax_cv_check_cflags___Wno_cast_function_type+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CFLAGS CFLAGS="$CFLAGS -Wno-cast-function-type" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_cv_check_cflags___Wno_cast_function_type=yes else ax_cv_check_cflags___Wno_cast_function_type=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wno_cast_function_type" >&5 $as_echo "$ax_cv_check_cflags___Wno_cast_function_type" >&6; } if test "x$ax_cv_check_cflags___Wno_cast_function_type" = xyes; then : CFLAGS="$CFLAGS -Wno-cast-function-type" else : fi CFLAGS="$OLD_CFLAGS" # C++ related ignores OLD_CXXFLAGS="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -Wall -Werror" ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-implicit-fallthrough" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-implicit-fallthrough... " >&6; } if ${ax_cv_check_cxxflags___Wno_implicit_fallthrough+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_implicit_fallthrough=yes else ax_cv_check_cxxflags___Wno_implicit_fallthrough=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_implicit_fallthrough" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_implicit_fallthrough" >&6; } if test "x$ax_cv_check_cxxflags___Wno_implicit_fallthrough" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-format-overflow" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-format-overflow... " >&6; } if ${ax_cv_check_cxxflags___Wno_format_overflow+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-format-overflow" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_format_overflow=yes else ax_cv_check_cxxflags___Wno_format_overflow=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_format_overflow" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_format_overflow" >&6; } if test "x$ax_cv_check_cxxflags___Wno_format_overflow" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-format-overflow" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-cast-function-type" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-cast-function-type... " >&6; } if ${ax_cv_check_cxxflags___Wno_cast_function_type+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-cast-function-type" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_cast_function_type=yes else ax_cv_check_cxxflags___Wno_cast_function_type=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_cast_function_type" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_cast_function_type" >&6; } if test "x$ax_cv_check_cxxflags___Wno_cast_function_type" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-cast-function-type" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-class-memaccess" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-class-memaccess... " >&6; } if ${ax_cv_check_cxxflags___Wno_class_memaccess+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-class-memaccess" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_class_memaccess=yes else ax_cv_check_cxxflags___Wno_class_memaccess=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_class_memaccess" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_class_memaccess" >&6; } if test "x$ax_cv_check_cxxflags___Wno_class_memaccess" = xyes; then : CXXFLAGS="$CXXFLAGS -Wno-class-memaccess" else : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CXXFLAGS="$OLD_CXXFLAGS" TOOLS_BUILD_TIME=`date +"%b %d %Y\, %H:%M:%S"` if test "x$SOURCE_DATE_EPOCH" != "x"; then TOOLS_BUILD_TIME=`LC_ALL=C date -u -d @$SOURCE_DATE_EPOCH +"%b %d %Y\, %H:%M:%S"` fi if test x"$MSTFLINT_VERSION_STR" == x; then MSTFLINT_VERSION_STR="$PACKAGE_STRING" fi $as_echo "@%:@define MSTFLINT_VERSION_STR /**/" >>confdefs.h cat >>confdefs.h <<_ACEOF @%:@define MSTFLINT_VERSION_STR "$MSTFLINT_VERSION_STR" _ACEOF if test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes"; then : ac_config_files="$ac_config_files tools_crypto/Makefile" fi if test "x$enable_openssl" = "xyes"; then : if test x"$OPENSSL_VERSION_VALID" = "xyes"; then : ac_config_files="$ac_config_files mlxsign_lib/Makefile" else as_fn_error $? "Required OpenSSL version >= $MIN_OPENSSL_VER (or use --disable-openssl)" "$LINENO" 5 fi fi if test "x$enable_openssl" = "xno" && \ test "x$enable_fw_mgr" = "xyes" ; then as_fn_error $? "--enable-fw-mgr cannot be used with --disabled-openssl." "$LINENO" 5 fi if test "x$enable_fw_mgr" = "xyes"; then : ac_config_files="$ac_config_files mlxfwupdate/Makefile" ac_config_files="$ac_config_files ext_libs/iniParser/Makefile" ac_config_files="$ac_config_files mlxarchive/Makefile" FW_MGR_TOOLS="mlxfwupdate mlxarchive" fi if test "x$enable_dpa" = "xyes"; then : ac_config_files="$ac_config_files mlxdpa/Makefile" DPA="mlxdpa" fi if test "x$enable_dpa" = "xyes" ; then ENABLE_DPA_TRUE= ENABLE_DPA_FALSE='#' else ENABLE_DPA_TRUE='#' ENABLE_DPA_FALSE= fi if test "x$enable_adb_generic_tools" = "xyes"; then : ac_config_files="$ac_config_files adb_parser/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/hca/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/hca/ext/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/switch/Makefile" ac_config_files="$ac_config_files tools_layouts/adb/prm/switch/ext/Makefile" ac_config_files="$ac_config_files mlxreg/Makefile" ac_config_files="$ac_config_files mlxreg/mlxreg_lib/Makefile" ac_config_files="$ac_config_files mlxlink/Makefile" ac_config_files="$ac_config_files mlxlink/modules/Makefile" ac_config_files="$ac_config_files mlxlink/modules/printutil/Makefile" ADABE_TOOLS="adb_parser mlxreg mlxlink" ADABE_DBS="adb" ADABE_DBS_EXTRA_DIST="adb/prm/hca/ext/*.adb adb/prm/switch/ext/*.adb" fi if test "x$enable_fw_mgr" = "xyes" || test "x$enable_adb_generic_tools" = "xyes"; then : ac_config_files="$ac_config_files xz_utils/Makefile" XZ_UTILS_DIR="xz_utils" fi if test "x$OS" = "xFreeBSD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: FreeBSD MTCR" >&5 $as_echo "$as_me: FreeBSD MTCR" >&6;} ac_config_files="$ac_config_files mtcr_freebsd/Makefile" else { $as_echo "$as_me:${as_lineno-$LINENO}: Linux MTCR" >&5 $as_echo "$as_me: Linux MTCR" >&6;} ac_config_files="$ac_config_files mtcr_ul/Makefile" fi if test "x$OS" = "xLinux"; then LINUX_BUILD_TRUE= LINUX_BUILD_FALSE='#' else LINUX_BUILD_TRUE='#' LINUX_BUILD_FALSE= fi # Certain older compilers may not fully support std::regex. # Signatuire is: the code compiles without issues, then it # crashes during runtime with: # terminate called after throwing an instance of 'std::regex_error' # what(): regex_error # For those we resort to using GNU C regex as a fallback. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for std::regex compatibility" >&5 $as_echo_n "checking for std::regex compatibility... " >&6; } ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { std::regex e("[a-z]"); ; return 0; } _ACEOF if ac_fn_cxx_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: std::regex support appears to be incomplete, fallback to GNU C regex" >&5 $as_echo "$as_me: std::regex support appears to be incomplete, fallback to GNU C regex" >&6;} $as_echo "@%:@define USE_STDLIB_REGEX 1" >>confdefs.h fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # we assume that project root may have a tools_git_sha TOOLS_GIT_SHA=$(cd $(dirname "$0"); ./eval_git_sha.sh) { $as_echo "$as_me:${as_lineno-$LINENO}: TOOLS_GIT_SHA $TOOLS_GIT_SHA" >&5 $as_echo "$as_me: TOOLS_GIT_SHA $TOOLS_GIT_SHA" >&6;} ac_config_files="$ac_config_files debian/mstflint.install" ac_config_files="$ac_config_files Makefile cmdif/Makefile cmdparser/Makefile common/Makefile dev_mgt/Makefile ext_libs/Makefile ext_libs/json/Makefile ext_libs/minixz/Makefile ext_libs/muparser/Makefile ext_libs/sqlite/Makefile flint/Makefile fw_comps_mgr/Makefile libmfa/Makefile mad_ifc/Makefile mflash/Makefile mft_utils/Makefile mft_utils/hsmclient/Makefile mlxconfig/Makefile mlxconfig/mlxconfig_dbs/Makefile mlxfwops/Makefile mlxfwops/lib/Makefile mstdump/Makefile mstdump/crd_lib/Makefile mstdump/crd_main/Makefile mstdump/mstdump_dbs/Makefile mtcr_py/Makefile mvpd/Makefile pldmlib/Makefile reg_access/Makefile resourcetools/Makefile resourcetools/resourcedump_lib/Makefile resourcetools/resourcedump_lib/src/Makefile resourcetools/resourcedump_lib/src/commands/Makefile resourcetools/resourcedump_lib/src/common/Makefile resourcetools/resourcedump_lib/src/fetchers/Makefile resourcetools/resourcedump_lib/src/filters/Makefile resourcetools/resourcedump_lib/src/sdk/Makefile small_utils/Makefile small_utils/mlxfwresetlib/Makefile tools_layouts/Makefile tools_res_mgmt/Makefile tracers/Makefile tracers/fwtrace/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIB@&t@OBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${OFED_BUILD_TRUE}" && test -z "${OFED_BUILD_FALSE}"; then as_fn_error $? "conditional \"OFED_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${KERNEL_BUILD_TRUE}" && test -z "${KERNEL_BUILD_FALSE}"; then as_fn_error $? "conditional \"KERNEL_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ARM64_BUILD_TRUE}" && test -z "${ARM64_BUILD_FALSE}"; then as_fn_error $? "conditional \"ARM64_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${X86_64_BUILD_TRUE}" && test -z "${X86_64_BUILD_FALSE}"; then as_fn_error $? "conditional \"X86_64_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_FWMGR_TRUE}" && test -z "${ENABLE_FWMGR_FALSE}"; then as_fn_error $? "conditional \"ENABLE_FWMGR\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DISABLE_XML2_TRUE}" && test -z "${DISABLE_XML2_FALSE}"; then as_fn_error $? "conditional \"DISABLE_XML2\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_DC_TRUE}" && test -z "${ENABLE_DC_FALSE}"; then as_fn_error $? "conditional \"ENABLE_DC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_INBAND_TRUE}" && test -z "${ENABLE_INBAND_FALSE}"; then as_fn_error $? "conditional \"ENABLE_INBAND\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_RDMEM_TRUE}" && test -z "${ENABLE_RDMEM_FALSE}"; then as_fn_error $? "conditional \"ENABLE_RDMEM\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_OPENSSL_TRUE}" && test -z "${ENABLE_OPENSSL_FALSE}"; then as_fn_error $? "conditional \"ENABLE_OPENSSL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_CS_TRUE}" && test -z "${ENABLE_CS_FALSE}"; then as_fn_error $? "conditional \"ENABLE_CS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_INIPARSER_TRUE}" && test -z "${USE_LOCAL_INIPARSER_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_INIPARSER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_JSON_TRUE}" && test -z "${USE_LOCAL_JSON_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_JSON\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_MUPARSER_TRUE}" && test -z "${USE_LOCAL_MUPARSER_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_MUPARSER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_LOCAL_SQLITE_TRUE}" && test -z "${USE_LOCAL_SQLITE_FALSE}"; then as_fn_error $? "conditional \"USE_LOCAL_SQLITE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_DPA_TRUE}" && test -z "${ENABLE_DPA_FALSE}"; then as_fn_error $? "conditional \"ENABLE_DPA\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LINUX_BUILD_TRUE}" && test -z "${LINUX_BUILD_FALSE}"; then as_fn_error $? "conditional \"LINUX_BUILD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in @%:@( *posix*) : set -o posix ;; @%:@( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in @%:@( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in @%:@(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH @%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] @%:@ ---------------------------------------- @%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are @%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the @%:@ script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } @%:@ as_fn_error @%:@ as_fn_set_status STATUS @%:@ ----------------------- @%:@ Set @S|@? to STATUS, without forking. as_fn_set_status () { return $1 } @%:@ as_fn_set_status @%:@ as_fn_exit STATUS @%:@ ----------------- @%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } @%:@ as_fn_exit @%:@ as_fn_unset VAR @%:@ --------------- @%:@ Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset @%:@ as_fn_append VAR VALUE @%:@ ---------------------- @%:@ Append the text in VALUE to the end of the definition contained in VAR. Take @%:@ advantage of any shell optimizations that allow amortized linear growth over @%:@ repeated appends, instead of the typical quadratic growth present in naive @%:@ implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append @%:@ as_fn_arith ARG... @%:@ ------------------ @%:@ Perform arithmetic evaluation on the ARGs, and store the result in the @%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments @%:@ must be portable across @S|@(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in @%:@((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null @%:@ as_fn_mkdir_p @%:@ ------------- @%:@ Create "@S|@as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } @%:@ as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi @%:@ as_fn_executable_p FILE @%:@ ----------------------- @%:@ Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } @%:@ as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by mstflint $as_me 4.26.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ mstflint config.status 4.26.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX @%:@@%:@ Running $as_me. @%:@@%:@ _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ reload_flag_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "mstflint.spec") CONFIG_FILES="$CONFIG_FILES mstflint.spec" ;; "tools_crypto/Makefile") CONFIG_FILES="$CONFIG_FILES tools_crypto/Makefile" ;; "mlxsign_lib/Makefile") CONFIG_FILES="$CONFIG_FILES mlxsign_lib/Makefile" ;; "mlxfwupdate/Makefile") CONFIG_FILES="$CONFIG_FILES mlxfwupdate/Makefile" ;; "ext_libs/iniParser/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/iniParser/Makefile" ;; "mlxarchive/Makefile") CONFIG_FILES="$CONFIG_FILES mlxarchive/Makefile" ;; "mlxdpa/Makefile") CONFIG_FILES="$CONFIG_FILES mlxdpa/Makefile" ;; "adb_parser/Makefile") CONFIG_FILES="$CONFIG_FILES adb_parser/Makefile" ;; "tools_layouts/adb/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/Makefile" ;; "tools_layouts/adb/prm/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/Makefile" ;; "tools_layouts/adb/prm/hca/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/hca/Makefile" ;; "tools_layouts/adb/prm/hca/ext/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/hca/ext/Makefile" ;; "tools_layouts/adb/prm/switch/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/switch/Makefile" ;; "tools_layouts/adb/prm/switch/ext/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/adb/prm/switch/ext/Makefile" ;; "mlxreg/Makefile") CONFIG_FILES="$CONFIG_FILES mlxreg/Makefile" ;; "mlxreg/mlxreg_lib/Makefile") CONFIG_FILES="$CONFIG_FILES mlxreg/mlxreg_lib/Makefile" ;; "mlxlink/Makefile") CONFIG_FILES="$CONFIG_FILES mlxlink/Makefile" ;; "mlxlink/modules/Makefile") CONFIG_FILES="$CONFIG_FILES mlxlink/modules/Makefile" ;; "mlxlink/modules/printutil/Makefile") CONFIG_FILES="$CONFIG_FILES mlxlink/modules/printutil/Makefile" ;; "xz_utils/Makefile") CONFIG_FILES="$CONFIG_FILES xz_utils/Makefile" ;; "mtcr_freebsd/Makefile") CONFIG_FILES="$CONFIG_FILES mtcr_freebsd/Makefile" ;; "mtcr_ul/Makefile") CONFIG_FILES="$CONFIG_FILES mtcr_ul/Makefile" ;; "debian/mstflint.install") CONFIG_FILES="$CONFIG_FILES debian/mstflint.install" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "cmdif/Makefile") CONFIG_FILES="$CONFIG_FILES cmdif/Makefile" ;; "cmdparser/Makefile") CONFIG_FILES="$CONFIG_FILES cmdparser/Makefile" ;; "common/Makefile") CONFIG_FILES="$CONFIG_FILES common/Makefile" ;; "dev_mgt/Makefile") CONFIG_FILES="$CONFIG_FILES dev_mgt/Makefile" ;; "ext_libs/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/Makefile" ;; "ext_libs/json/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/json/Makefile" ;; "ext_libs/minixz/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/minixz/Makefile" ;; "ext_libs/muparser/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/muparser/Makefile" ;; "ext_libs/sqlite/Makefile") CONFIG_FILES="$CONFIG_FILES ext_libs/sqlite/Makefile" ;; "flint/Makefile") CONFIG_FILES="$CONFIG_FILES flint/Makefile" ;; "fw_comps_mgr/Makefile") CONFIG_FILES="$CONFIG_FILES fw_comps_mgr/Makefile" ;; "libmfa/Makefile") CONFIG_FILES="$CONFIG_FILES libmfa/Makefile" ;; "mad_ifc/Makefile") CONFIG_FILES="$CONFIG_FILES mad_ifc/Makefile" ;; "mflash/Makefile") CONFIG_FILES="$CONFIG_FILES mflash/Makefile" ;; "mft_utils/Makefile") CONFIG_FILES="$CONFIG_FILES mft_utils/Makefile" ;; "mft_utils/hsmclient/Makefile") CONFIG_FILES="$CONFIG_FILES mft_utils/hsmclient/Makefile" ;; "mlxconfig/Makefile") CONFIG_FILES="$CONFIG_FILES mlxconfig/Makefile" ;; "mlxconfig/mlxconfig_dbs/Makefile") CONFIG_FILES="$CONFIG_FILES mlxconfig/mlxconfig_dbs/Makefile" ;; "mlxfwops/Makefile") CONFIG_FILES="$CONFIG_FILES mlxfwops/Makefile" ;; "mlxfwops/lib/Makefile") CONFIG_FILES="$CONFIG_FILES mlxfwops/lib/Makefile" ;; "mstdump/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/Makefile" ;; "mstdump/crd_lib/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/crd_lib/Makefile" ;; "mstdump/crd_main/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/crd_main/Makefile" ;; "mstdump/mstdump_dbs/Makefile") CONFIG_FILES="$CONFIG_FILES mstdump/mstdump_dbs/Makefile" ;; "mtcr_py/Makefile") CONFIG_FILES="$CONFIG_FILES mtcr_py/Makefile" ;; "mvpd/Makefile") CONFIG_FILES="$CONFIG_FILES mvpd/Makefile" ;; "pldmlib/Makefile") CONFIG_FILES="$CONFIG_FILES pldmlib/Makefile" ;; "reg_access/Makefile") CONFIG_FILES="$CONFIG_FILES reg_access/Makefile" ;; "resourcetools/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/Makefile" ;; "resourcetools/resourcedump_lib/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/Makefile" ;; "resourcetools/resourcedump_lib/src/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/Makefile" ;; "resourcetools/resourcedump_lib/src/commands/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/commands/Makefile" ;; "resourcetools/resourcedump_lib/src/common/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/common/Makefile" ;; "resourcetools/resourcedump_lib/src/fetchers/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/fetchers/Makefile" ;; "resourcetools/resourcedump_lib/src/filters/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/filters/Makefile" ;; "resourcetools/resourcedump_lib/src/sdk/Makefile") CONFIG_FILES="$CONFIG_FILES resourcetools/resourcedump_lib/src/sdk/Makefile" ;; "small_utils/Makefile") CONFIG_FILES="$CONFIG_FILES small_utils/Makefile" ;; "small_utils/mlxfwresetlib/Makefile") CONFIG_FILES="$CONFIG_FILES small_utils/mlxfwresetlib/Makefile" ;; "tools_layouts/Makefile") CONFIG_FILES="$CONFIG_FILES tools_layouts/Makefile" ;; "tools_res_mgmt/Makefile") CONFIG_FILES="$CONFIG_FILES tools_res_mgmt/Makefile" ;; "tracers/Makefile") CONFIG_FILES="$CONFIG_FILES tracers/Makefile" ;; "tracers/fwtrace/Makefile") CONFIG_FILES="$CONFIG_FILES tracers/fwtrace/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="CXX " # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # How to create reloadable object files. reload_flag=$lt_reload_flag_CXX reload_cmds=$lt_reload_cmds_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi mstflint-4.26.0/autom4te.cache/traces.00000644000175000017500000035532514522641735020071 0ustar tzafrirctzafrircm4trace:/usr/share/aclocal/argz.m4:12: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT]) AC_CHECK_TYPES([error_t], [], [AC_DEFINE([error_t], [int], [Define to a type to use for `error_t' if it is not otherwise available.]) AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h does not typedef error_t.])], [#if defined(HAVE_ARGZ_H) # include #endif]) ARGZ_H= AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \ argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])]) dnl if have system argz functions, allow forced use of dnl libltdl-supplied implementation (and default to do so dnl on "known bad" systems). Could use a runtime check, but dnl (a) detecting malloc issues is notoriously unreliable dnl (b) only known system that declares argz functions, dnl provides them, yet they are broken, is cygwin dnl releases prior to 16-Mar-2007 (1.5.24 and earlier) dnl So, it's more straightforward simply to special case dnl this for known bad systems. AS_IF([test -z "$ARGZ_H"], [AC_CACHE_CHECK( [if argz actually works], [lt_cv_sys_argz_works], [[case $host_os in #( *cygwin*) lt_cv_sys_argz_works=no if test "$cross_compiling" != no; then lt_cv_sys_argz_works="guessing no" else lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/' save_IFS=$IFS IFS=-. set x `uname -r | sed -e "$lt_sed_extract_leading_digits"` IFS=$save_IFS lt_os_major=${2-0} lt_os_minor=${3-0} lt_os_micro=${4-0} if test "$lt_os_major" -gt 1 \ || { test "$lt_os_major" -eq 1 \ && { test "$lt_os_minor" -gt 5 \ || { test "$lt_os_minor" -eq 5 \ && test "$lt_os_micro" -gt 24; }; }; }; then lt_cv_sys_argz_works=yes fi fi ;; #( *) lt_cv_sys_argz_works=yes ;; esac]]) AS_IF([test "$lt_cv_sys_argz_works" = yes], [AC_DEFINE([HAVE_WORKING_ARGZ], 1, [This value is set to 1 to indicate that the system argz facility works])], [ARGZ_H=argz.h AC_LIBOBJ([argz])])]) AC_SUBST([ARGZ_H]) ]) m4trace:/usr/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:]) m4trace:/usr/share/aclocal/libtool.m4:69: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ]) m4trace:/usr/share/aclocal/libtool.m4:107: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])]) m4trace:/usr/share/aclocal/libtool.m4:107: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_INIT], [LT_INIT($@)])]) m4trace:/usr/share/aclocal/libtool.m4:108: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])]) m4trace:/usr/share/aclocal/libtool.m4:108: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_INIT], [LT_INIT($@)])]) m4trace:/usr/share/aclocal/libtool.m4:609: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ]) m4trace:/usr/share/aclocal/libtool.m4:790: -1- AC_DEFUN([LT_SUPPORTED_TAG], []) m4trace:/usr/share/aclocal/libtool.m4:801: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ]) m4trace:/usr/share/aclocal/libtool.m4:893: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) m4trace:/usr/share/aclocal/libtool.m4:893: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete. You should run autoupdate.])dnl LT_LANG(C++)]) m4trace:/usr/share/aclocal/libtool.m4:894: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) m4trace:/usr/share/aclocal/libtool.m4:894: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete. You should run autoupdate.])dnl LT_LANG(Fortran 77)]) m4trace:/usr/share/aclocal/libtool.m4:895: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) m4trace:/usr/share/aclocal/libtool.m4:895: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete. You should run autoupdate.])dnl LT_LANG(Fortran)]) m4trace:/usr/share/aclocal/libtool.m4:896: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) m4trace:/usr/share/aclocal/libtool.m4:896: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete. You should run autoupdate.])dnl LT_LANG(Java)]) m4trace:/usr/share/aclocal/libtool.m4:897: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) m4trace:/usr/share/aclocal/libtool.m4:897: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete. You should run autoupdate.])dnl LT_LANG(Windows Resource)]) m4trace:/usr/share/aclocal/libtool.m4:1225: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) m4trace:/usr/share/aclocal/libtool.m4:1502: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ]) m4trace:/usr/share/aclocal/libtool.m4:1544: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1544: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1553: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ]) m4trace:/usr/share/aclocal/libtool.m4:1588: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1588: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1595: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ]) m4trace:/usr/share/aclocal/libtool.m4:1733: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1733: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1844: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ]) m4trace:/usr/share/aclocal/libtool.m4:1961: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])]) m4trace:/usr/share/aclocal/libtool.m4:1961: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])]) m4trace:/usr/share/aclocal/libtool.m4:2934: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ]) m4trace:/usr/share/aclocal/libtool.m4:2996: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])]) m4trace:/usr/share/aclocal/libtool.m4:2996: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])]) m4trace:/usr/share/aclocal/libtool.m4:3019: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ]) m4trace:/usr/share/aclocal/libtool.m4:3493: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])]) m4trace:/usr/share/aclocal/libtool.m4:3493: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])]) m4trace:/usr/share/aclocal/libtool.m4:3494: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])]) m4trace:/usr/share/aclocal/libtool.m4:3494: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])]) m4trace:/usr/share/aclocal/libtool.m4:3564: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ]) m4trace:/usr/share/aclocal/libtool.m4:3583: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])]) m4trace:/usr/share/aclocal/libtool.m4:3583: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])]) m4trace:/usr/share/aclocal/libtool.m4:7626: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) m4trace:/usr/share/aclocal/libtool.m4:7635: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])]) m4trace:/usr/share/aclocal/libtool.m4:7635: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])]) m4trace:/usr/share/aclocal/libtool.m4:7642: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) m4trace:/usr/share/aclocal/libtool.m4:7649: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) m4trace:/usr/share/aclocal/libtool.m4:7654: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])]) m4trace:/usr/share/aclocal/libtool.m4:7654: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])]) m4trace:/usr/share/aclocal/libtool.m4:7774: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])]) m4trace:/usr/share/aclocal/libtool.m4:7774: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT]) _$0($*) ]) m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl dnl Although the argument is deprecated and no longer documented, dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one dnl here make sure it is the same as any other declaration of libltdl's dnl location! This also ensures lt_ltdl_dir is set when configure.ac is dnl not yet using an explicit LT_CONFIG_LTDL_DIR. m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl _$0() ]) m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) _LTDL_CONVENIENCE]) m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete. You should run autoupdate.])dnl _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) _LTDL_CONVENIENCE]) m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl dnl Although the argument is deprecated and no longer documented, dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one dnl here make sure it is the same as any other declaration of libltdl's dnl location! This also ensures lt_ltdl_dir is set when configure.ac is dnl not yet using an explicit LT_CONFIG_LTDL_DIR. m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl _$0() ]) m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) _LTDL_INSTALLABLE]) m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete. You should run autoupdate.])dnl _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) _LTDL_INSTALLABLE]) m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [ m4_pattern_allow([^_LT_LIBOBJS$]) _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext" ]) m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) dnl We need to keep our own list of libobjs separate from our parent project, dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while dnl we look for our own LIBOBJs. m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ])) m4_pushdef([AC_LIBSOURCES]) dnl If not otherwise defined, default to the 1.5.x compatible subproject mode: m4_if(_LTDL_MODE, [], [m4_define([_LTDL_MODE], m4_default([$2], [subproject])) m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])], [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])]) AC_ARG_WITH([included_ltdl], [AS_HELP_STRING([--with-included-ltdl], [use the GNU ltdl sources included here])]) if test "x$with_included_ltdl" != xyes; then # We are not being forced to use the included libltdl sources, so # decide whether there is a useful installed version we can use. AC_CHECK_HEADER([ltdl.h], [AC_CHECK_DECL([lt_dlinterface_register], [AC_CHECK_LIB([ltdl], [lt_dladvise_preload], [with_included_ltdl=no], [with_included_ltdl=yes])], [with_included_ltdl=yes], [AC_INCLUDES_DEFAULT #include ])], [with_included_ltdl=yes], [AC_INCLUDES_DEFAULT] ) fi dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE dnl was called yet, then for old times' sake, we assume libltdl is in an dnl eponymous directory: AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])]) AC_ARG_WITH([ltdl_include], [AS_HELP_STRING([--with-ltdl-include=DIR], [use the ltdl headers installed in DIR])]) if test -n "$with_ltdl_include"; then if test -f "$with_ltdl_include/ltdl.h"; then : else AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include']) fi else with_ltdl_include=no fi AC_ARG_WITH([ltdl_lib], [AS_HELP_STRING([--with-ltdl-lib=DIR], [use the libltdl.la installed in DIR])]) if test -n "$with_ltdl_lib"; then if test -f "$with_ltdl_lib/libltdl.la"; then : else AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib']) fi else with_ltdl_lib=no fi case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in ,yes,no,no,) m4_case(m4_default(_LTDL_TYPE, [convenience]), [convenience], [_LTDL_CONVENIENCE], [installable], [_LTDL_INSTALLABLE], [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)]) ;; ,no,no,no,) # If the included ltdl is not to be used, then use the # preinstalled libltdl we found. AC_DEFINE([HAVE_LTDL], [1], [Define this if a modern libltdl is already installed]) LIBLTDL=-lltdl LTDLDEPS= LTDLINCL= ;; ,no*,no,*) AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together]) ;; *) with_included_ltdl=no LIBLTDL="-L$with_ltdl_lib -lltdl" LTDLDEPS= LTDLINCL="-I$with_ltdl_include" ;; esac INCLTDL="$LTDLINCL" # Report our decision... AC_MSG_CHECKING([where to find libltdl headers]) AC_MSG_RESULT([$LTDLINCL]) AC_MSG_CHECKING([where to find libltdl library]) AC_MSG_RESULT([$LIBLTDL]) _LTDL_SETUP dnl restore autoconf definition. m4_popdef([AC_LIBOBJ]) m4_popdef([AC_LIBSOURCES]) AC_CONFIG_COMMANDS_PRE([ _ltdl_libobjs= _ltdl_ltlibobjs= if test -n "$_LT_LIBOBJS"; then # Remove the extension. _lt_sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext" _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo" done fi AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs]) AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs]) ]) # Only expand once: m4_define([LTDL_INIT]) ]) m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)]) m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete. You should run autoupdate.])dnl LTDL_INIT($@)]) m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)]) m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete. You should run autoupdate.])dnl LTDL_INIT($@)]) m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)]) m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete. You should run autoupdate.])dnl LTDL_INIT($@)]) m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_SYS_MODULE_EXT])dnl AC_REQUIRE([LT_SYS_MODULE_PATH])dnl AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl AC_REQUIRE([LT_LIB_DLLOAD])dnl AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl AC_REQUIRE([gl_FUNC_ARGZ])dnl m4_require([_LT_CHECK_OBJDIR])dnl m4_require([_LT_HEADER_DLFCN])dnl m4_require([_LT_CHECK_DLPREOPEN])dnl m4_require([_LT_DECL_SED])dnl dnl Don't require this, or it will be expanded earlier than the code dnl that sets the variables it relies on: _LT_ENABLE_INSTALL dnl _LTDL_MODE specific code must be called at least once: _LTDL_MODE_DISPATCH # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS # the user used. This is so that ltdl.h can pick up the parent projects # config.h file, The first file in AC_CONFIG_HEADERS must contain the # definitions required by ltdl.c. # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility). AC_CONFIG_COMMANDS_PRE([dnl m4_pattern_allow([^LT_CONFIG_H$])dnl m4_ifset([AH_HEADER], [LT_CONFIG_H=AH_HEADER], [m4_ifset([AC_LIST_HEADERS], [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`], [])])]) AC_SUBST([LT_CONFIG_H]) AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h], [], [], [AC_INCLUDES_DEFAULT]) AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])]) AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])]) m4_pattern_allow([LT_LIBEXT])dnl AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension]) name= eval "lt_libprefix=\"$libname_spec\"" m4_pattern_allow([LT_LIBPREFIX])dnl AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix]) name=ltdl eval "LTDLOPEN=\"$libname_spec\"" AC_SUBST([LTDLOPEN]) ]) m4trace:/usr/share/aclocal/ltdl.m4:443: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_CACHE_CHECK([whether deplibs are loaded by dlopen], [lt_cv_sys_dlopen_deplibs], [# PORTME does your system automatically load deplibs for dlopen? # or its logical equivalent (e.g. shl_load for HP-UX < 11) # For now, we just catch OSes we know something about -- in the # future, we'll try test this programmatically. lt_cv_sys_dlopen_deplibs=unknown case $host_os in aix3*|aix4.1.*|aix4.2.*) # Unknown whether this is true for these versions of AIX, but # we want this `case' here to explicitly catch those versions. lt_cv_sys_dlopen_deplibs=unknown ;; aix[[4-9]]*) lt_cv_sys_dlopen_deplibs=yes ;; amigaos*) case $host_cpu in powerpc) lt_cv_sys_dlopen_deplibs=no ;; esac ;; darwin*) # Assuming the user has installed a libdl from somewhere, this is true # If you are looking for one http://www.opendarwin.org/projects/dlcompat lt_cv_sys_dlopen_deplibs=yes ;; freebsd* | dragonfly*) lt_cv_sys_dlopen_deplibs=yes ;; gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu) # GNU and its variants, using gnu ld.so (Glibc) lt_cv_sys_dlopen_deplibs=yes ;; hpux10*|hpux11*) lt_cv_sys_dlopen_deplibs=yes ;; interix*) lt_cv_sys_dlopen_deplibs=yes ;; irix[[12345]]*|irix6.[[01]]*) # Catch all versions of IRIX before 6.2, and indicate that we don't # know how it worked for any of those versions. lt_cv_sys_dlopen_deplibs=unknown ;; irix*) # The case above catches anything before 6.2, and it's known that # at 6.2 and later dlopen does load deplibs. lt_cv_sys_dlopen_deplibs=yes ;; netbsd*) lt_cv_sys_dlopen_deplibs=yes ;; openbsd*) lt_cv_sys_dlopen_deplibs=yes ;; osf[[1234]]*) # dlopen did load deplibs (at least at 4.x), but until the 5.x series, # it did *not* use an RPATH in a shared library to find objects the # library depends on, so we explicitly say `no'. lt_cv_sys_dlopen_deplibs=no ;; osf5.0|osf5.0a|osf5.1) # dlopen *does* load deplibs and with the right loader patch applied # it even uses RPATH in a shared library to search for shared objects # that the library depends on, but there's no easy way to know if that # patch is installed. Since this is the case, all we can really # say is unknown -- it depends on the patch being installed. If # it is, this changes to `yes'. Without it, it would be `no'. lt_cv_sys_dlopen_deplibs=unknown ;; osf*) # the two cases above should catch all versions of osf <= 5.1. Read # the comments above for what we know about them. # At > 5.1, deplibs are loaded *and* any RPATH in a shared library # is used to find them so we can finally say `yes'. lt_cv_sys_dlopen_deplibs=yes ;; qnx*) lt_cv_sys_dlopen_deplibs=yes ;; solaris*) lt_cv_sys_dlopen_deplibs=yes ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) libltdl_cv_sys_dlopen_deplibs=yes ;; esac ]) if test "$lt_cv_sys_dlopen_deplibs" != yes; then AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1], [Define if the OS needs help to load dependent libraries for dlopen().]) fi ]) m4trace:/usr/share/aclocal/ltdl.m4:542: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:549: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl AC_CACHE_CHECK([which extension is used for runtime loadable modules], [libltdl_cv_shlibext], [ module=yes eval libltdl_cv_shlibext=$shrext_cmds module=no eval libltdl_cv_shrext=$shrext_cmds ]) if test -n "$libltdl_cv_shlibext"; then m4_pattern_allow([LT_MODULE_EXT])dnl AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"], [Define to the extension used for runtime loadable modules, say, ".so".]) fi if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then m4_pattern_allow([LT_SHARED_EXT])dnl AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"], [Define to the shared library suffix, say, ".dylib".]) fi ]) m4trace:/usr/share/aclocal/ltdl.m4:572: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:572: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:579: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl AC_CACHE_CHECK([which variable specifies run-time module search path], [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"]) if test -n "$lt_cv_module_path_var"; then m4_pattern_allow([LT_MODULE_PATH_VAR])dnl AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"], [Define to the name of the environment variable that determines the run-time module search path.]) fi ]) m4trace:/usr/share/aclocal/ltdl.m4:591: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:591: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:598: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl AC_CACHE_CHECK([for the default library search path], [lt_cv_sys_dlsearch_path], [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"]) if test -n "$lt_cv_sys_dlsearch_path"; then sys_dlsearch_path= for dir in $lt_cv_sys_dlsearch_path; do if test -z "$sys_dlsearch_path"; then sys_dlsearch_path="$dir" else sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir" fi done m4_pattern_allow([LT_DLSEARCH_PATH])dnl AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"], [Define to the system default library search path.]) fi ]) m4trace:/usr/share/aclocal/ltdl.m4:619: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:619: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:645: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$]) LT_DLLOADERS= AC_SUBST([LT_DLLOADERS]) AC_LANG_PUSH([C]) LIBADD_DLOPEN= AC_SEARCH_LIBS([dlopen], [dl], [AC_DEFINE([HAVE_LIBDL], [1], [Define if you have the libdl library or equivalent.]) if test "$ac_cv_search_dlopen" != "none required" ; then LIBADD_DLOPEN="-ldl" fi libltdl_cv_lib_dl_dlopen="yes" LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H # include #endif ]], [[dlopen(0, 0);]])], [AC_DEFINE([HAVE_LIBDL], [1], [Define if you have the libdl library or equivalent.]) libltdl_cv_func_dlopen="yes" LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], [AC_CHECK_LIB([svld], [dlopen], [AC_DEFINE([HAVE_LIBDL], [1], [Define if you have the libdl library or equivalent.]) LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes" LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])]) if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes then lt_save_LIBS="$LIBS" LIBS="$LIBS $LIBADD_DLOPEN" AC_CHECK_FUNCS([dlerror]) LIBS="$lt_save_LIBS" fi AC_SUBST([LIBADD_DLOPEN]) LIBADD_SHL_LOAD= AC_CHECK_FUNC([shl_load], [AC_DEFINE([HAVE_SHL_LOAD], [1], [Define if you have the shl_load function.]) LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"], [AC_CHECK_LIB([dld], [shl_load], [AC_DEFINE([HAVE_SHL_LOAD], [1], [Define if you have the shl_load function.]) LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la" LIBADD_SHL_LOAD="-ldld"])]) AC_SUBST([LIBADD_SHL_LOAD]) case $host_os in darwin[[1567]].*) # We only want this for pre-Mac OS X 10.4. AC_CHECK_FUNC([_dyld_func_lookup], [AC_DEFINE([HAVE_DYLD], [1], [Define if you have the _dyld_func_lookup function.]) LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"]) ;; beos*) LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la" ;; cygwin* | mingw* | os2* | pw32*) AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include ]]) LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la" ;; esac AC_CHECK_LIB([dld], [dld_link], [AC_DEFINE([HAVE_DLD], [1], [Define if you have the GNU dld library.]) LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"]) AC_SUBST([LIBADD_DLD_LINK]) m4_pattern_allow([^LT_DLPREOPEN$]) LT_DLPREOPEN= if test -n "$LT_DLLOADERS" then for lt_loader in $LT_DLLOADERS; do LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader " done AC_DEFINE([HAVE_LIBDLLOADER], [1], [Define if libdlloader will be built on this platform]) fi AC_SUBST([LT_DLPREOPEN]) dnl This isn't used anymore, but set it for backwards compatibility LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD" AC_SUBST([LIBADD_DL]) AC_LANG_POP ]) m4trace:/usr/share/aclocal/ltdl.m4:738: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:738: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:746: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl AC_CACHE_CHECK([for _ prefix in compiled symbols], [lt_cv_sys_symbol_underscore], [lt_cv_sys_symbol_underscore=no cat > conftest.$ac_ext <<_LT_EOF void nm_test_func(){} int main(){nm_test_func;return 0;} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. ac_nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then # See whether the symbols have a leading underscore. if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then lt_cv_sys_symbol_underscore=yes else if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then : else echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD fi fi else echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.c >&AS_MESSAGE_LOG_FD fi rm -rf conftest* ]) sys_symbol_underscore=$lt_cv_sys_symbol_underscore AC_SUBST([sys_symbol_underscore]) ]) m4trace:/usr/share/aclocal/ltdl.m4:783: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:783: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:790: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl if test x"$lt_cv_sys_symbol_underscore" = xyes; then if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then AC_CACHE_CHECK([whether we have to add an underscore for dlsym], [libltdl_cv_need_uscore], [libltdl_cv_need_uscore=unknown save_LIBS="$LIBS" LIBS="$LIBS $LIBADD_DLOPEN" _LT_TRY_DLOPEN_SELF( [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes], [], [libltdl_cv_need_uscore=cross]) LIBS="$save_LIBS" ]) fi fi if test x"$libltdl_cv_need_uscore" = xyes; then AC_DEFINE([NEED_USCORE], [1], [Define if dlsym() requires a leading underscore in symbol names.]) fi ]) m4trace:/usr/share/aclocal/ltdl.m4:815: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])]) m4trace:/usr/share/aclocal/ltdl.m4:815: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete. You should run autoupdate.])dnl m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])]) m4trace:/usr/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) m4trace:/usr/share/aclocal/ltoptions.m4:111: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:111: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete. You should run autoupdate.])dnl _LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:146: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:146: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete. You should run autoupdate.])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:195: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:199: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:203: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:203: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete. You should run autoupdate.])dnl AC_ENABLE_SHARED($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:204: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:204: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete. You should run autoupdate.])dnl AC_DISABLE_SHARED($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:249: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:253: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:257: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:257: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete. You should run autoupdate.])dnl AC_ENABLE_STATIC($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:258: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:258: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete. You should run autoupdate.])dnl AC_DISABLE_STATIC($@)]) m4trace:/usr/share/aclocal/ltoptions.m4:303: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:303: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete. You should run autoupdate.])dnl _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:310: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:310: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete. You should run autoupdate.])dnl _LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:358: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltoptions.m4:358: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete. You should run autoupdate.])dnl _LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) m4trace:/usr/share/aclocal/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) m4trace:/usr/share/aclocal/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) m4trace:/usr/share/aclocal/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4trace:/usr/share/aclocal/lt~obsolete.m4:40: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH]) m4trace:/usr/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_SHELL_INIT]) m4trace:/usr/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX]) m4trace:/usr/share/aclocal/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_AC_TAGVAR]) m4trace:/usr/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL]) m4trace:/usr/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_PREOPEN]) m4trace:/usr/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([_LT_AC_SYS_COMPILER]) m4trace:/usr/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_LOCK]) m4trace:/usr/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE]) m4trace:/usr/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF]) m4trace:/usr/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O]) m4trace:/usr/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS]) m4trace:/usr/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR]) m4trace:/usr/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LTDL_OBJDIR]) m4trace:/usr/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH]) m4trace:/usr/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP]) m4trace:/usr/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_PATH_MAGIC]) m4trace:/usr/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PROG_LD_GNU]) m4trace:/usr/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD]) m4trace:/usr/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI]) m4trace:/usr/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE]) m4trace:/usr/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC]) m4trace:/usr/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS]) m4trace:/usr/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP]) m4trace:/usr/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([LT_AC_PROG_EGREP]) m4trace:/usr/share/aclocal/lt~obsolete.m4:71: -1- AC_DEFUN([_AC_PROG_LIBTOOL]) m4trace:/usr/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([AC_LIBTOOL_SETUP]) m4trace:/usr/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN]) m4trace:/usr/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER]) m4trace:/usr/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([_LT_AC_TAGCONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:77: -1- AC_DEFUN([_LT_AC_LANG_CXX]) m4trace:/usr/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_F77]) m4trace:/usr/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_GCJ]) m4trace:/usr/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([AC_LIBTOOL_CONFIG]) m4trace:/usr/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C]) m4trace:/usr/share/aclocal/lt~obsolete.m4:93: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP]) m4trace:/usr/share/aclocal/lt~obsolete.m4:96: -1- AC_DEFUN([_LT_PROG_F77]) m4trace:/usr/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_FC]) m4trace:/usr/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_CXX]) m4trace:/usr/share/aclocal-1.13/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.13' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.13.4], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) m4trace:/usr/share/aclocal-1.13/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.13.4])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) m4trace:/usr/share/aclocal-1.13/ar-lib.m4:13: -1- AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) ]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) m4trace:/usr/share/aclocal-1.13/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) m4trace:/usr/share/aclocal-1.13/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) m4trace:/usr/share/aclocal-1.13/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) m4trace:/usr/share/aclocal-1.13/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) m4trace:/usr/share/aclocal-1.13/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) m4trace:/usr/share/aclocal-1.13/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ]) m4trace:/usr/share/aclocal-1.13/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) m4trace:/usr/share/aclocal-1.13/init.m4:23: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) m4trace:/usr/share/aclocal-1.13/init.m4:136: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) m4trace:/usr/share/aclocal-1.13/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) m4trace:/usr/share/aclocal-1.13/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) m4trace:/usr/share/aclocal-1.13/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) m4trace:/usr/share/aclocal-1.13/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) m4trace:/usr/share/aclocal-1.13/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) m4trace:/usr/share/aclocal-1.13/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) m4trace:/usr/share/aclocal-1.13/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) m4trace:/usr/share/aclocal-1.13/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) m4trace:/usr/share/aclocal-1.13/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) m4trace:/usr/share/aclocal-1.13/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) m4trace:/usr/share/aclocal-1.13/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) m4trace:/usr/share/aclocal-1.13/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) m4trace:/usr/share/aclocal-1.13/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) m4trace:/usr/share/aclocal-1.13/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) m4trace:/usr/share/aclocal-1.13/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) m4trace:/usr/share/aclocal-1.13/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) m4trace:m4/ax_check_compile_flag.m4:60: -1- AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [ ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1" AC_COMPILE_IFELSE([m4_default([$5],[AC_LANG_PROGRAM()])], [AS_VAR_SET(CACHEVAR,[yes])], [AS_VAR_SET(CACHEVAR,[no])]) _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags]) AS_VAR_IF(CACHEVAR,yes, [m4_default([$2], :)], [m4_default([$3], :)]) AS_VAR_POPDEF([CACHEVAR])dnl ]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^_?A[CHUM]_]) m4trace:configure.ac:33: -1- m4_pattern_forbid([_AC_]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) m4trace:configure.ac:33: -1- m4_pattern_allow([^AS_FLAGS$]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^_?m4_]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^dnl$]) m4trace:configure.ac:33: -1- m4_pattern_forbid([^_?AS_]) m4trace:configure.ac:33: -1- m4_pattern_allow([^SHELL$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PATH_SEPARATOR$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_NAME$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_VERSION$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_STRING$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_URL$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^exec_prefix$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^prefix$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^program_transform_name$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^bindir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^sbindir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^libexecdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^datarootdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^datadir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^sysconfdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^sharedstatedir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^localstatedir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^includedir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^oldincludedir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^docdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^infodir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^htmldir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^dvidir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^pdfdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^psdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^libdir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^localedir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^mandir$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_NAME$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_VERSION$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_STRING$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^PACKAGE_URL$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^DEFS$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^ECHO_C$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^ECHO_N$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^ECHO_T$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^build_alias$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^host_alias$]) m4trace:configure.ac:33: -1- m4_pattern_allow([^target_alias$]) m4trace:configure.ac:35: -1- m4_pattern_allow([^PROJECT$]) m4trace:configure.ac:36: -1- m4_pattern_allow([^PROJECT$]) m4trace:configure.ac:38: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:39: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:41: -1- AC_CONFIG_MACRO_DIR([m4]) m4trace:configure.ac:44: -1- AM_INIT_AUTOMAKE([foreign subdir-objects]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) m4trace:configure.ac:44: -1- AM_SET_CURRENT_AUTOMAKE_VERSION m4trace:configure.ac:44: -1- AM_AUTOMAKE_VERSION([1.13.4]) m4trace:configure.ac:44: -1- _AM_AUTOCONF_VERSION([2.69]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_DATA$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__isrc$]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([am__isrc]) m4trace:configure.ac:44: -1- m4_pattern_allow([^CYGPATH_W$]) m4trace:configure.ac:44: -1- _AM_SET_OPTIONS([foreign subdir-objects]) m4trace:configure.ac:44: -1- _AM_SET_OPTION([foreign]) m4trace:configure.ac:44: -2- _AM_MANGLE_OPTION([foreign]) m4trace:configure.ac:44: -1- _AM_SET_OPTION([subdir-objects]) m4trace:configure.ac:44: -2- _AM_MANGLE_OPTION([subdir-objects]) m4trace:configure.ac:44: -1- m4_pattern_allow([^PACKAGE$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:44: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])]) m4trace:configure.ac:44: -2- _AM_MANGLE_OPTION([no-define]) m4trace:configure.ac:44: -1- m4_pattern_allow([^PACKAGE$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^VERSION$]) m4trace:configure.ac:44: -1- AM_SANITY_CHECK m4trace:configure.ac:44: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) m4trace:configure.ac:44: -1- AM_MISSING_HAS_RUN m4trace:configure.ac:44: -1- AM_AUX_DIR_EXPAND m4trace:configure.ac:44: -1- m4_pattern_allow([^ACLOCAL$]) m4trace:configure.ac:44: -1- AM_MISSING_PROG([AUTOCONF], [autoconf]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AUTOCONF$]) m4trace:configure.ac:44: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AUTOMAKE$]) m4trace:configure.ac:44: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AUTOHEADER$]) m4trace:configure.ac:44: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo]) m4trace:configure.ac:44: -1- m4_pattern_allow([^MAKEINFO$]) m4trace:configure.ac:44: -1- AM_PROG_INSTALL_SH m4trace:configure.ac:44: -1- m4_pattern_allow([^install_sh$]) m4trace:configure.ac:44: -1- AM_PROG_INSTALL_STRIP m4trace:configure.ac:44: -1- m4_pattern_allow([^STRIP$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^MKDIR_P$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^mkdir_p$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AWK$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^SET_MAKE$]) m4trace:configure.ac:44: -1- AM_SET_LEADING_DOT m4trace:configure.ac:44: -1- m4_pattern_allow([^am__leading_dot$]) m4trace:configure.ac:44: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) m4trace:configure.ac:44: -2- _AM_MANGLE_OPTION([tar-ustar]) m4trace:configure.ac:44: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) m4trace:configure.ac:44: -2- _AM_MANGLE_OPTION([tar-pax]) m4trace:configure.ac:44: -1- _AM_PROG_TAR([v7]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AMTAR$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__tar$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^am__untar$]) m4trace:configure.ac:44: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) m4trace:configure.ac:44: -2- _AM_MANGLE_OPTION([no-dependencies]) m4trace:configure.ac:44: -1- AM_SILENT_RULES m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_V$]) m4trace:configure.ac:44: -1- AM_SUBST_NOTMAKE([AM_V]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_V]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_V$]) m4trace:configure.ac:44: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_BACKSLASH$]) m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CFLAGS$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^LDFLAGS$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CC$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^ac_ct_CC$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^EXEEXT$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^OBJEXT$]) m4trace:configure.ac:47: -1- _AM_DEPENDENCIES([CC]) m4trace:configure.ac:47: -1- AM_SET_DEPDIR m4trace:configure.ac:47: -1- m4_pattern_allow([^DEPDIR$]) m4trace:configure.ac:47: -1- AM_OUTPUT_DEPENDENCY_COMMANDS m4trace:configure.ac:47: -1- AM_MAKE_INCLUDE m4trace:configure.ac:47: -1- m4_pattern_allow([^am__include$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__quote$]) m4trace:configure.ac:47: -1- AM_DEP_TRACK m4trace:configure.ac:47: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) m4trace:configure.ac:47: -1- m4_pattern_allow([^AMDEP_TRUE$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^AMDEP_FALSE$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) m4trace:configure.ac:47: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__nodep$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([am__nodep]) m4trace:configure.ac:47: -1- m4_pattern_allow([^CCDEPMODE$]) m4trace:configure.ac:47: -1- AM_CONDITIONAL([am__fastdepCC], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) m4trace:configure.ac:47: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) m4trace:configure.ac:47: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXX$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXXFLAGS$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^LDFLAGS$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXX$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^ac_ct_CXX$]) m4trace:configure.ac:48: -1- _AM_DEPENDENCIES([CXX]) m4trace:configure.ac:48: -1- m4_pattern_allow([^CXXDEPMODE$]) m4trace:configure.ac:48: -1- AM_CONDITIONAL([am__fastdepCXX], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) m4trace:configure.ac:48: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) m4trace:configure.ac:48: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) m4trace:configure.ac:48: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) m4trace:configure.ac:48: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) m4trace:configure.ac:49: -1- AM_PROG_AR m4trace:configure.ac:49: -1- m4_pattern_allow([^AR$]) m4trace:configure.ac:49: -1- m4_pattern_allow([^ac_ct_AR$]) m4trace:configure.ac:49: -1- m4_pattern_allow([^AR$]) m4trace:configure.ac:50: -1- LT_INIT m4trace:configure.ac:50: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$]) m4trace:configure.ac:50: -1- LTOPTIONS_VERSION m4trace:configure.ac:50: -1- LTSUGAR_VERSION m4trace:configure.ac:50: -1- LTVERSION_VERSION m4trace:configure.ac:50: -1- LTOBSOLETE_VERSION m4trace:configure.ac:50: -1- _LT_PROG_LTMAIN m4trace:configure.ac:50: -1- m4_pattern_allow([^LIBTOOL$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build_cpu$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build_vendor$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^build_os$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host_cpu$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host_vendor$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^host_os$]) m4trace:configure.ac:50: -1- _LT_PREPARE_SED_QUOTE_VARS m4trace:configure.ac:50: -1- _LT_PROG_ECHO_BACKSLASH m4trace:configure.ac:50: -1- LT_PATH_LD m4trace:configure.ac:50: -1- m4_pattern_allow([^SED$]) m4trace:configure.ac:50: -1- AC_PROG_EGREP m4trace:configure.ac:50: -1- m4_pattern_allow([^GREP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^EGREP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^FGREP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^GREP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LD$]) m4trace:configure.ac:50: -1- LT_PATH_NM m4trace:configure.ac:50: -1- m4_pattern_allow([^DUMPBIN$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^ac_ct_DUMPBIN$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DUMPBIN$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^NM$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LN_S$]) m4trace:configure.ac:50: -1- LT_CMD_MAX_LEN m4trace:configure.ac:50: -1- m4_pattern_allow([^OBJDUMP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OBJDUMP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DLLTOOL$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^DLLTOOL$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^AR$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^ac_ct_AR$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^STRIP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^RANLIB$]) m4trace:configure.ac:50: -1- _LT_WITH_SYSROOT m4trace:configure.ac:50: -1- m4_pattern_allow([LT_OBJDIR]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LT_OBJDIR$]) m4trace:configure.ac:50: -1- _LT_CC_BASENAME([$compiler]) m4trace:configure.ac:50: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH]) m4trace:configure.ac:50: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH]) m4trace:configure.ac:50: -1- LT_SUPPORTED_TAG([CC]) m4trace:configure.ac:50: -1- _LT_COMPILER_BOILERPLATE m4trace:configure.ac:50: -1- _LT_LINKER_BOILERPLATE m4trace:configure.ac:50: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"]) m4trace:configure.ac:50: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, )= _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no]) m4trace:configure.ac:50: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=]) m4trace:configure.ac:50: -1- m4_pattern_allow([^MANIFEST_TOOL$]) m4trace:configure.ac:50: -1- _LT_REQUIRED_DARWIN_CHECKS m4trace:configure.ac:50: -1- m4_pattern_allow([^DSYMUTIL$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^NMEDIT$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^LIPO$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OTOOL$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^OTOOL64$]) m4trace:configure.ac:50: -1- _LT_LINKER_OPTION([if $CC understands -b], [lt_cv_prog_compiler__b], [-b], [_LT_TAGVAR(archive_cmds, )='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, )='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags']) m4trace:configure.ac:50: -1- LT_SYS_DLOPEN_SELF m4trace:configure.ac:50: -1- m4_pattern_allow([^CPP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^STDC_HEADERS$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) m4trace:configure.ac:50: -1- LT_LANG([CXX]) m4trace:configure.ac:50: -1- LT_SUPPORTED_TAG([CXX]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CXXCPP$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.ac:50: -1- m4_pattern_allow([^CXXCPP$]) m4trace:configure.ac:50: -1- _LT_COMPILER_BOILERPLATE m4trace:configure.ac:50: -1- _LT_LINKER_BOILERPLATE m4trace:configure.ac:50: -1- _LT_CC_BASENAME([$compiler]) m4trace:configure.ac:50: -1- LT_PATH_LD m4trace:configure.ac:50: -1- m4_pattern_allow([^LD$]) m4trace:configure.ac:50: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, CXX) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, CXX)], [$_LT_TAGVAR(lt_prog_compiler_pic, CXX)@&t@m4_if([CXX],[],[ -DPIC],[m4_if([CXX],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, CXX) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_TAGVAR(lt_prog_compiler_pic, CXX)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, CXX)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no]) m4trace:configure.ac:50: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, CXX)=]) m4trace:configure.ac:81: -1- AM_CONDITIONAL([OFED_BUILD], [test ${OFED_VERSION_CHK} = 1]) m4trace:configure.ac:81: -1- m4_pattern_allow([^OFED_BUILD_TRUE$]) m4trace:configure.ac:81: -1- m4_pattern_allow([^OFED_BUILD_FALSE$]) m4trace:configure.ac:81: -1- _AM_SUBST_NOTMAKE([OFED_BUILD_TRUE]) m4trace:configure.ac:81: -1- _AM_SUBST_NOTMAKE([OFED_BUILD_FALSE]) m4trace:configure.ac:82: -1- m4_pattern_allow([^OFED_BUILD$]) m4trace:configure.ac:90: -1- AM_CONDITIONAL([KERNEL_BUILD], [test ${KERNEL_BUILD_CHK} = 1]) m4trace:configure.ac:90: -1- m4_pattern_allow([^KERNEL_BUILD_TRUE$]) m4trace:configure.ac:90: -1- m4_pattern_allow([^KERNEL_BUILD_FALSE$]) m4trace:configure.ac:90: -1- _AM_SUBST_NOTMAKE([KERNEL_BUILD_TRUE]) m4trace:configure.ac:90: -1- _AM_SUBST_NOTMAKE([KERNEL_BUILD_FALSE]) m4trace:configure.ac:91: -1- m4_pattern_allow([^KERNEL_BUILD$]) m4trace:configure.ac:107: -1- m4_pattern_allow([^MTCR_CONF_DIR$]) m4trace:configure.ac:108: -1- m4_pattern_allow([^LDL$]) m4trace:configure.ac:109: -1- m4_pattern_allow([^default_en_inband$]) m4trace:configure.ac:111: -1- AM_CONDITIONAL([ARM64_BUILD], [ echo $build_cpu | grep -iq "aarch64" ]) m4trace:configure.ac:111: -1- m4_pattern_allow([^ARM64_BUILD_TRUE$]) m4trace:configure.ac:111: -1- m4_pattern_allow([^ARM64_BUILD_FALSE$]) m4trace:configure.ac:111: -1- _AM_SUBST_NOTMAKE([ARM64_BUILD_TRUE]) m4trace:configure.ac:111: -1- _AM_SUBST_NOTMAKE([ARM64_BUILD_FALSE]) m4trace:configure.ac:112: -1- AM_CONDITIONAL([X86_64_BUILD], [ echo $build_cpu | grep -iq "x86_64" ]) m4trace:configure.ac:112: -1- m4_pattern_allow([^X86_64_BUILD_TRUE$]) m4trace:configure.ac:112: -1- m4_pattern_allow([^X86_64_BUILD_FALSE$]) m4trace:configure.ac:112: -1- _AM_SUBST_NOTMAKE([X86_64_BUILD_TRUE]) m4trace:configure.ac:112: -1- _AM_SUBST_NOTMAKE([X86_64_BUILD_FALSE]) m4trace:configure.ac:126: -1- m4_pattern_allow([^COMPILER_FPIC$]) m4trace:configure.ac:136: -1- m4_pattern_allow([^HAVE_LIBZ$]) m4trace:configure.ac:149: -1- m4_pattern_allow([^HAVE_LIBZ$]) m4trace:configure.ac:171: -1- m4_pattern_allow([^HAVE_EXPAT_H$]) m4trace:configure.ac:181: -1- m4_pattern_allow([^CURL_INC_DIR$]) m4trace:configure.ac:183: -1- AM_CONDITIONAL([ENABLE_FWMGR], [test "x$enable_fw_mgr" = "xyes" ]) m4trace:configure.ac:183: -1- m4_pattern_allow([^ENABLE_FWMGR_TRUE$]) m4trace:configure.ac:183: -1- m4_pattern_allow([^ENABLE_FWMGR_FALSE$]) m4trace:configure.ac:183: -1- _AM_SUBST_NOTMAKE([ENABLE_FWMGR_TRUE]) m4trace:configure.ac:183: -1- _AM_SUBST_NOTMAKE([ENABLE_FWMGR_FALSE]) m4trace:configure.ac:184: -1- m4_pattern_allow([^ENABLE_FWMGR$]) m4trace:configure.ac:186: -1- m4_pattern_allow([^ENABLE_FWMGR$]) m4trace:configure.ac:203: -1- m4_pattern_allow([^HAVE_LIBXML2$]) m4trace:configure.ac:207: -1- AM_CONDITIONAL([DISABLE_XML2], [test "x$enable_xml2" = "xno"]) m4trace:configure.ac:207: -1- m4_pattern_allow([^DISABLE_XML2_TRUE$]) m4trace:configure.ac:207: -1- m4_pattern_allow([^DISABLE_XML2_FALSE$]) m4trace:configure.ac:207: -1- _AM_SUBST_NOTMAKE([DISABLE_XML2_TRUE]) m4trace:configure.ac:207: -1- _AM_SUBST_NOTMAKE([DISABLE_XML2_FALSE]) m4trace:configure.ac:208: -1- m4_pattern_allow([^DISABLE_XML2$]) m4trace:configure.ac:210: -1- AM_CONDITIONAL([ENABLE_DC], [test "x$enable_dc" = "xyes"]) m4trace:configure.ac:210: -1- m4_pattern_allow([^ENABLE_DC_TRUE$]) m4trace:configure.ac:210: -1- m4_pattern_allow([^ENABLE_DC_FALSE$]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([ENABLE_DC_TRUE]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([ENABLE_DC_FALSE]) m4trace:configure.ac:211: -1- m4_pattern_allow([^ENABLE_DC$]) m4trace:configure.ac:226: -1- m4_pattern_allow([^MAD_IFC$]) m4trace:configure.ac:228: -1- AM_CONDITIONAL([ENABLE_INBAND], [test "x$enable_inband" = "xyes"]) m4trace:configure.ac:228: -1- m4_pattern_allow([^ENABLE_INBAND_TRUE$]) m4trace:configure.ac:228: -1- m4_pattern_allow([^ENABLE_INBAND_FALSE$]) m4trace:configure.ac:228: -1- _AM_SUBST_NOTMAKE([ENABLE_INBAND_TRUE]) m4trace:configure.ac:228: -1- _AM_SUBST_NOTMAKE([ENABLE_INBAND_FALSE]) m4trace:configure.ac:243: -1- AM_CONDITIONAL([ENABLE_RDMEM], [test "x$enable_rdmem" = "xyes"]) m4trace:configure.ac:243: -1- m4_pattern_allow([^ENABLE_RDMEM_TRUE$]) m4trace:configure.ac:243: -1- m4_pattern_allow([^ENABLE_RDMEM_FALSE$]) m4trace:configure.ac:243: -1- _AM_SUBST_NOTMAKE([ENABLE_RDMEM_TRUE]) m4trace:configure.ac:243: -1- _AM_SUBST_NOTMAKE([ENABLE_RDMEM_FALSE]) m4trace:configure.ac:293: -1- m4_pattern_allow([^TOOLS_CRYPTO$]) m4trace:configure.ac:294: -1- AM_CONDITIONAL([ENABLE_OPENSSL], [test "x$enable_openssl" = "xyes" ]) m4trace:configure.ac:294: -1- m4_pattern_allow([^ENABLE_OPENSSL_TRUE$]) m4trace:configure.ac:294: -1- m4_pattern_allow([^ENABLE_OPENSSL_FALSE$]) m4trace:configure.ac:294: -1- _AM_SUBST_NOTMAKE([ENABLE_OPENSSL_TRUE]) m4trace:configure.ac:294: -1- _AM_SUBST_NOTMAKE([ENABLE_OPENSSL_FALSE]) m4trace:configure.ac:295: -1- AM_CONDITIONAL([ENABLE_CS], [test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes" ]) m4trace:configure.ac:295: -1- m4_pattern_allow([^ENABLE_CS_TRUE$]) m4trace:configure.ac:295: -1- m4_pattern_allow([^ENABLE_CS_FALSE$]) m4trace:configure.ac:295: -1- _AM_SUBST_NOTMAKE([ENABLE_CS_TRUE]) m4trace:configure.ac:295: -1- _AM_SUBST_NOTMAKE([ENABLE_CS_FALSE]) m4trace:configure.ac:311: -1- m4_pattern_allow([^HAVE_INIPARSER_H$]) m4trace:configure.ac:321: -1- m4_pattern_allow([^INIPARSER_CFLAGS$]) m4trace:configure.ac:323: -1- m4_pattern_allow([^INIPARSER_LIBS$]) m4trace:configure.ac:326: -1- AM_CONDITIONAL([USE_LOCAL_INIPARSER], [test "$INIPARSER_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:326: -1- m4_pattern_allow([^USE_LOCAL_INIPARSER_TRUE$]) m4trace:configure.ac:326: -1- m4_pattern_allow([^USE_LOCAL_INIPARSER_FALSE$]) m4trace:configure.ac:326: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_INIPARSER_TRUE]) m4trace:configure.ac:326: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_INIPARSER_FALSE]) m4trace:configure.ac:332: -1- m4_pattern_allow([^JSON_CFLAGS$]) m4trace:configure.ac:332: -1- m4_pattern_allow([^JSON_LIBS$]) m4trace:configure.ac:339: -1- AM_CONDITIONAL([USE_LOCAL_JSON], [test "$JSON_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:339: -1- m4_pattern_allow([^USE_LOCAL_JSON_TRUE$]) m4trace:configure.ac:339: -1- m4_pattern_allow([^USE_LOCAL_JSON_FALSE$]) m4trace:configure.ac:339: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_JSON_TRUE]) m4trace:configure.ac:339: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_JSON_FALSE]) m4trace:configure.ac:341: -1- m4_pattern_allow([^MUPARSER_CFLAGS$]) m4trace:configure.ac:341: -1- m4_pattern_allow([^MUPARSER_LIBS$]) m4trace:configure.ac:349: -1- AM_CONDITIONAL([USE_LOCAL_MUPARSER], [test "$MUPARSER_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:349: -1- m4_pattern_allow([^USE_LOCAL_MUPARSER_TRUE$]) m4trace:configure.ac:349: -1- m4_pattern_allow([^USE_LOCAL_MUPARSER_FALSE$]) m4trace:configure.ac:349: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_MUPARSER_TRUE]) m4trace:configure.ac:349: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_MUPARSER_FALSE]) m4trace:configure.ac:351: -1- m4_pattern_allow([^SQLITE_CFLAGS$]) m4trace:configure.ac:351: -1- m4_pattern_allow([^SQLITE_LIBS$]) m4trace:configure.ac:358: -1- AM_CONDITIONAL([USE_LOCAL_SQLITE], [test "$SQLITE_SYSTEM_AVAILABLE" = no]) m4trace:configure.ac:358: -1- m4_pattern_allow([^USE_LOCAL_SQLITE_TRUE$]) m4trace:configure.ac:358: -1- m4_pattern_allow([^USE_LOCAL_SQLITE_FALSE$]) m4trace:configure.ac:358: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_SQLITE_TRUE]) m4trace:configure.ac:358: -1- _AM_SUBST_NOTMAKE([USE_LOCAL_SQLITE_FALSE]) m4trace:configure.ac:385: -1- AX_CHECK_COMPILE_FLAG([-Wno-format-overflow], [CFLAGS="$CFLAGS -Wno-format-overflow"], [], []) m4trace:configure.ac:386: -1- AX_CHECK_COMPILE_FLAG([-Wno-implicit-fallthrough], [CFLAGS="$CFLAGS -Wno-implicit-fallthrough"], [], []) m4trace:configure.ac:387: -1- AX_CHECK_COMPILE_FLAG([-Wno-cast-function-type], [CFLAGS="$CFLAGS -Wno-cast-function-type"], [], []) m4trace:configure.ac:394: -1- AX_CHECK_COMPILE_FLAG([-Wno-implicit-fallthrough], [CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough"], [], []) m4trace:configure.ac:395: -1- AX_CHECK_COMPILE_FLAG([-Wno-format-overflow], [CXXFLAGS="$CXXFLAGS -Wno-format-overflow"], [], []) m4trace:configure.ac:396: -1- AX_CHECK_COMPILE_FLAG([-Wno-cast-function-type], [CXXFLAGS="$CXXFLAGS -Wno-cast-function-type"], [], []) m4trace:configure.ac:397: -1- AX_CHECK_COMPILE_FLAG([-Wno-class-memaccess], [CXXFLAGS="$CXXFLAGS -Wno-class-memaccess"], [], []) m4trace:configure.ac:405: -1- m4_pattern_allow([^TOOLS_BUILD_TIME$]) m4trace:configure.ac:407: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:412: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:413: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:414: -1- m4_pattern_allow([^MSTFLINT_VERSION_STR$]) m4trace:configure.ac:440: -1- m4_pattern_allow([^FW_MGR_TOOLS$]) m4trace:configure.ac:446: -1- AM_CONDITIONAL([ENABLE_DPA], [test "x$enable_dpa" = "xyes" ]) m4trace:configure.ac:446: -1- m4_pattern_allow([^ENABLE_DPA_TRUE$]) m4trace:configure.ac:446: -1- m4_pattern_allow([^ENABLE_DPA_FALSE$]) m4trace:configure.ac:446: -1- _AM_SUBST_NOTMAKE([ENABLE_DPA_TRUE]) m4trace:configure.ac:446: -1- _AM_SUBST_NOTMAKE([ENABLE_DPA_FALSE]) m4trace:configure.ac:448: -1- m4_pattern_allow([^DPA$]) m4trace:configure.ac:473: -1- m4_pattern_allow([^ADABE_TOOLS$]) m4trace:configure.ac:474: -1- m4_pattern_allow([^ADABE_DBS$]) m4trace:configure.ac:475: -1- m4_pattern_allow([^ADABE_DBS_EXTRA_DIST$]) m4trace:configure.ac:476: -1- m4_pattern_allow([^XZ_UTILS_DIR$]) m4trace:configure.ac:486: -1- AM_CONDITIONAL([LINUX_BUILD], [test "x$OS" = "xLinux"]) m4trace:configure.ac:486: -1- m4_pattern_allow([^LINUX_BUILD_TRUE$]) m4trace:configure.ac:486: -1- m4_pattern_allow([^LINUX_BUILD_FALSE$]) m4trace:configure.ac:486: -1- _AM_SUBST_NOTMAKE([LINUX_BUILD_TRUE]) m4trace:configure.ac:486: -1- _AM_SUBST_NOTMAKE([LINUX_BUILD_FALSE]) m4trace:configure.ac:487: -1- m4_pattern_allow([^LINUX_BUILD$]) m4trace:configure.ac:488: -1- m4_pattern_allow([^LINUX_KERNEL_INCLUDE$]) m4trace:configure.ac:498: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... configure.ac:498: the top level]) m4trace:configure.ac:498: -1- m4_pattern_allow([^USE_STDLIB_REGEX$]) m4trace:configure.ac:515: -1- m4_pattern_allow([^TOOLS_GIT_SHA$]) m4trace:configure.ac:520: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments. You should run autoupdate.], []) m4trace:configure.ac:520: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:520: -1- m4_pattern_allow([^LTLIBOBJS$]) m4trace:configure.ac:520: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) m4trace:configure.ac:520: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) m4trace:configure.ac:520: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) m4trace:configure.ac:520: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) m4trace:configure.ac:520: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) m4trace:configure.ac:520: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) m4trace:configure.ac:520: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS m4trace:configure.ac:520: -1- _LT_PROG_LTMAIN mstflint-4.26.0/autom4te.cache/requests0000644000175000017500000003431414522641741020312 0ustar tzafrirctzafrirc# This file was generated. # It contains the lists of macros which have been traced. # It can be safely removed. @request = ( bless( [ '0', 1, [ '/usr/share/autoconf' ], [ '/usr/share/autoconf/autoconf/autoconf.m4f', '-', '/usr/share/aclocal-1.13/internal/ac-config-macro-dirs.m4', '/usr/share/aclocal/argz.m4', '/usr/share/aclocal/libtool.m4', '/usr/share/aclocal/ltdl.m4', '/usr/share/aclocal/ltoptions.m4', '/usr/share/aclocal/ltsugar.m4', '/usr/share/aclocal/ltversion.m4', '/usr/share/aclocal/lt~obsolete.m4', '/usr/share/aclocal-1.13/amversion.m4', '/usr/share/aclocal-1.13/ar-lib.m4', '/usr/share/aclocal-1.13/auxdir.m4', '/usr/share/aclocal-1.13/cond.m4', '/usr/share/aclocal-1.13/depend.m4', '/usr/share/aclocal-1.13/depout.m4', '/usr/share/aclocal-1.13/init.m4', '/usr/share/aclocal-1.13/install-sh.m4', '/usr/share/aclocal-1.13/lead-dot.m4', '/usr/share/aclocal-1.13/make.m4', '/usr/share/aclocal-1.13/missing.m4', '/usr/share/aclocal-1.13/options.m4', '/usr/share/aclocal-1.13/runlog.m4', '/usr/share/aclocal-1.13/sanity.m4', '/usr/share/aclocal-1.13/silent.m4', '/usr/share/aclocal-1.13/strip.m4', '/usr/share/aclocal-1.13/substnot.m4', '/usr/share/aclocal-1.13/tar.m4', 'm4/ax_check_compile_flag.m4', 'configure.ac' ], { 'AM_ENABLE_STATIC' => 1, 'AC_LIBTOOL_LANG_RC_CONFIG' => 1, '_LT_AC_SHELL_INIT' => 1, 'AC_DEFUN' => 1, '_LT_AC_LANG_CXX_CONFIG' => 1, 'AC_PROG_LIBTOOL' => 1, 'AM_AUTOMAKE_VERSION' => 1, 'AM_SUBST_NOTMAKE' => 1, 'AM_MISSING_PROG' => 1, 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1, '_LT_AC_LANG_C_CONFIG' => 1, 'AM_PROG_INSTALL_STRIP' => 1, '_m4_warn' => 1, 'AC_LIBTOOL_OBJDIR' => 1, 'gl_FUNC_ARGZ' => 1, 'AM_SANITY_CHECK' => 1, 'LTOBSOLETE_VERSION' => 1, 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1, 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1, 'LT_LIB_M' => 1, '_LT_AC_CHECK_DLFCN' => 1, 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1, 'LTSUGAR_VERSION' => 1, '_LT_PROG_LTMAIN' => 1, 'LT_SYS_SYMBOL_USCORE' => 1, '_AM_PROG_TAR' => 1, 'AC_LIBTOOL_GCJ' => 1, '_LT_WITH_SYSROOT' => 1, 'LT_FUNC_DLSYM_USCORE' => 1, 'LT_SYS_DLOPEN_DEPLIBS' => 1, '_LT_AC_LANG_F77' => 1, 'AC_LIBTOOL_CONFIG' => 1, 'AC_CONFIG_MACRO_DIR' => 1, 'AC_LTDL_DLLIB' => 1, '_AM_SUBST_NOTMAKE' => 1, '_AM_AUTOCONF_VERSION' => 1, 'AM_DISABLE_SHARED' => 1, '_LT_PROG_ECHO_BACKSLASH' => 1, '_LTDL_SETUP' => 1, 'AM_PROG_LIBTOOL' => 1, '_LT_AC_LANG_CXX' => 1, 'AM_PROG_LD' => 1, '_LT_AC_FILE_LTDLL_C' => 1, 'AC_LIB_LTDL' => 1, 'AU_DEFUN' => 1, 'AC_PROG_NM' => 1, 'AC_LIBTOOL_DLOPEN' => 1, 'AC_PROG_LD' => 1, 'AC_PROG_LD_GNU' => 1, 'AC_ENABLE_FAST_INSTALL' => 1, 'AC_LIBTOOL_FC' => 1, 'LTDL_CONVENIENCE' => 1, '_AM_SET_OPTION' => 1, 'AC_LTDL_PREOPEN' => 1, '_LT_LINKER_BOILERPLATE' => 1, '_LT_PREPARE_SED_QUOTE_VARS' => 1, 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1, 'AC_LIBTOOL_PROG_CC_C_O' => 1, 'gl_PREREQ_ARGZ' => 1, 'LT_SUPPORTED_TAG' => 1, 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, 'LT_SYS_MODULE_EXT' => 1, 'LT_PROG_RC' => 1, 'AC_DEFUN_ONCE' => 1, 'AX_CHECK_COMPILE_FLAG' => 1, '_LT_AC_LANG_GCJ' => 1, 'AC_LTDL_OBJDIR' => 1, '_LT_PATH_TOOL_PREFIX' => 1, 'AC_LIBTOOL_RC' => 1, '_LT_AC_PROG_ECHO_BACKSLASH' => 1, 'AC_DISABLE_FAST_INSTALL' => 1, 'AM_SILENT_RULES' => 1, 'include' => 1, '_LT_AC_TRY_DLOPEN_SELF' => 1, '_LT_AC_SYS_LIBPATH_AIX' => 1, 'LT_AC_PROG_SED' => 1, 'AM_ENABLE_SHARED' => 1, 'AM_PROG_AR' => 1, 'LTDL_INSTALLABLE' => 1, '_LT_AC_LANG_GCJ_CONFIG' => 1, 'AC_ENABLE_SHARED' => 1, '_LT_REQUIRED_DARWIN_CHECKS' => 1, 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1, 'AC_ENABLE_STATIC' => 1, '_LT_AC_TAGVAR' => 1, 'AC_LIBTOOL_LANG_F77_CONFIG' => 1, 'AM_CONDITIONAL' => 1, 'LT_LIB_DLLOAD' => 1, 'LTVERSION_VERSION' => 1, '_LT_PROG_CXX' => 1, '_LT_PROG_F77' => 1, 'LTDL_INIT' => 1, 'm4_include' => 1, 'AM_PROG_INSTALL_SH' => 1, 'AC_PROG_EGREP' => 1, 'AC_PATH_MAGIC' => 1, '_AC_AM_CONFIG_HEADER_HOOK' => 1, 'AC_LTDL_SYSSEARCHPATH' => 1, 'AM_MAKE_INCLUDE' => 1, 'LT_CMD_MAX_LEN' => 1, '_LT_AC_TAGCONFIG' => 1, 'm4_pattern_forbid' => 1, '_LT_LINKER_OPTION' => 1, 'AC_LIBTOOL_COMPILER_OPTION' => 1, 'AC_DISABLE_SHARED' => 1, '_LT_COMPILER_BOILERPLATE' => 1, 'AC_LIBTOOL_WIN32_DLL' => 1, 'AC_LIBTOOL_SETUP' => 1, 'AC_PROG_LD_RELOAD_FLAG' => 1, 'AC_LTDL_DLSYM_USCORE' => 1, 'AM_MISSING_HAS_RUN' => 1, 'LT_LANG' => 1, 'LT_SYS_DLSEARCH_PATH' => 1, 'LT_CONFIG_LTDL_DIR' => 1, 'AC_LIBTOOL_DLOPEN_SELF' => 1, 'LT_OUTPUT' => 1, 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1, '_AM_CONFIG_MACRO_DIRS' => 1, 'AC_WITH_LTDL' => 1, 'AC_LIBTOOL_LINKER_OPTION' => 1, 'LT_AC_PROG_RC' => 1, 'AC_LIBTOOL_CXX' => 1, 'LT_INIT' => 1, 'LT_AC_PROG_GCJ' => 1, 'LT_SYS_DLOPEN_SELF' => 1, 'AM_DEP_TRACK' => 1, 'AM_DISABLE_STATIC' => 1, '_LT_AC_PROG_CXXCPP' => 1, '_AC_PROG_LIBTOOL' => 1, '_AM_IF_OPTION' => 1, 'AC_PATH_TOOL_PREFIX' => 1, 'm4_pattern_allow' => 1, 'AC_LIBTOOL_F77' => 1, 'AM_SET_LEADING_DOT' => 1, '_LT_PROG_FC' => 1, 'LT_AC_PROG_EGREP' => 1, '_AM_DEPENDENCIES' => 1, 'AC_LIBTOOL_LANG_C_CONFIG' => 1, 'LTOPTIONS_VERSION' => 1, '_LT_AC_SYS_COMPILER' => 1, 'AM_PROG_NM' => 1, 'AC_LIBLTDL_CONVENIENCE' => 1, 'AC_DEPLIBS_CHECK_METHOD' => 1, 'AC_LIBLTDL_INSTALLABLE' => 1, 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1, 'AC_LTDL_ENABLE_INSTALL' => 1, 'LT_PROG_GCJ' => 1, 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1, 'AM_INIT_AUTOMAKE' => 1, 'AC_DISABLE_STATIC' => 1, 'LT_PATH_NM' => 1, 'AC_LTDL_SHLIBEXT' => 1, '_LT_AC_LOCK' => 1, '_LT_AC_LANG_RC_CONFIG' => 1, 'LT_PROG_GO' => 1, 'LT_SYS_MODULE_PATH' => 1, 'LT_WITH_LTDL' => 1, 'AC_LIBTOOL_POSTDEP_PREDEP' => 1, 'AC_LTDL_SHLIBPATH' => 1, 'AM_AUX_DIR_EXPAND' => 1, 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1, '_LT_AC_LANG_F77_CONFIG' => 1, '_LT_COMPILER_OPTION' => 1, '_AM_SET_OPTIONS' => 1, 'AM_RUN_LOG' => 1, '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, 'AC_LIBTOOL_PICMODE' => 1, 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1, 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1, 'AC_CHECK_LIBM' => 1, 'LT_PATH_LD' => 1, 'AC_LIBTOOL_SYS_LIB_STRIP' => 1, '_AM_MANGLE_OPTION' => 1, 'AC_CONFIG_MACRO_DIR_TRACE' => 1, 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1, 'AC_LTDL_SYMBOL_USCORE' => 1, 'AM_SET_DEPDIR' => 1, '_LT_CC_BASENAME' => 1, '_LT_LIBOBJ' => 1 } ], 'Autom4te::Request' ), bless( [ '1', 1, [ '/usr/share/autoconf' ], [ '/usr/share/autoconf/autoconf/autoconf.m4f', 'aclocal.m4', 'configure.ac' ], { '_LT_AC_TAGCONFIG' => 1, 'AM_PROG_F77_C_O' => 1, 'AC_INIT' => 1, 'm4_pattern_forbid' => 1, '_AM_COND_IF' => 1, 'AC_CANONICAL_TARGET' => 1, 'AC_SUBST' => 1, 'AC_CONFIG_LIBOBJ_DIR' => 1, 'AM_EXTRA_RECURSIVE_TARGETS' => 1, 'AC_FC_SRCEXT' => 1, 'AC_CANONICAL_HOST' => 1, 'AC_PROG_LIBTOOL' => 1, 'AM_PROG_MKDIR_P' => 1, 'AM_INIT_AUTOMAKE' => 1, 'AM_PATH_GUILE' => 1, 'AC_CONFIG_SUBDIRS' => 1, 'AM_AUTOMAKE_VERSION' => 1, 'LT_CONFIG_LTDL_DIR' => 1, 'AC_REQUIRE_AUX_FILE' => 1, 'AC_CONFIG_LINKS' => 1, 'm4_sinclude' => 1, 'LT_SUPPORTED_TAG' => 1, 'AM_MAINTAINER_MODE' => 1, 'AM_NLS' => 1, 'AC_FC_PP_DEFINE' => 1, 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, 'AM_MAKEFILE_INCLUDE' => 1, '_m4_warn' => 1, 'AM_PROG_CXX_C_O' => 1, '_AM_COND_ENDIF' => 1, '_AM_MAKEFILE_INCLUDE' => 1, 'AM_ENABLE_MULTILIB' => 1, 'AM_PROG_MOC' => 1, 'AM_SILENT_RULES' => 1, 'AC_CONFIG_FILES' => 1, 'include' => 1, 'LT_INIT' => 1, 'AM_PROG_AR' => 1, 'AM_GNU_GETTEXT' => 1, 'AC_LIBSOURCE' => 1, 'AM_PROG_FC_C_O' => 1, 'AC_CANONICAL_BUILD' => 1, 'AC_FC_FREEFORM' => 1, 'AH_OUTPUT' => 1, 'AC_FC_PP_SRCEXT' => 1, '_AM_SUBST_NOTMAKE' => 1, 'AC_CONFIG_AUX_DIR' => 1, 'sinclude' => 1, 'AM_PROG_CC_C_O' => 1, 'm4_pattern_allow' => 1, 'AM_XGETTEXT_OPTION' => 1, 'AC_CANONICAL_SYSTEM' => 1, 'AM_CONDITIONAL' => 1, 'AC_CONFIG_HEADERS' => 1, 'AC_DEFINE_TRACE_LITERAL' => 1, 'AM_POT_TOOLS' => 1, 'm4_include' => 1, '_AM_COND_ELSE' => 1, 'AC_SUBST_TRACE' => 1 } ], 'Autom4te::Request' ) ); mstflint-4.26.0/pldmlib/0000755000175000017500000000000014522641740015325 5ustar tzafrirctzafrircmstflint-4.26.0/pldmlib/pldm_record_descriptor.h0000644000175000017500000000510314522641732022226 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _PLDM_RECORD_DESCRIPTOR_HDR_ #define _PLDM_RECORD_DESCRIPTOR_HDR_ class PldmRecordDescriptor { public: PldmRecordDescriptor(); virtual ~PldmRecordDescriptor(); bool unpack(PldmBuffer& buff); void print(FILE* fp); const std::string& getPsid() const { return psid; } u_int16_t getDescriptorLength() const { return descriptorLength; } const u_int8_t* getDescriptorData() const { return descriptorData; } std::string getDescription() const; private: u_int16_t descriptorType; u_int16_t descriptorLength; u_int8_t* descriptorData; std::string psid; void extractPsid(); enum { PCI_Vendor_ID = 0x0000, IANA_Enterprise_ID = 0x0001, FD_UUID = 0x0002, PnP_Vendor_ID = 0x0003, ACPI_Vendor_ID = 0x0004, PCI_Device_ID = 0x0100, PCI_Subsystem_Vendor_ID = 0x0101, PCI_Subsystem_ID = 0x0102, PCI_Revision_ID = 0x0103, PnP_Product_ID = 0x0104, ACPI_Product_ID = 0x0105, Vendor_Defined = 0xFFFF }; }; #endif /* _PLDM_RECORD_DESCRIPTOR_HDR_ */ mstflint-4.26.0/pldmlib/pldm_pkg_hdr.h0000644000175000017500000000545414522641732020141 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _PLDM_PKG_HDR_ #define _PLDM_PKG_HDR_ class PldmPkgHdr { public: PldmPkgHdr(); virtual ~PldmPkgHdr(); bool unpack(PldmBuffer& buff); void print(FILE* fp); const u_int32_t* getPackageHeaderIdentifier() const { return packageHeaderIdentifier; } u_int8_t getPackageHeaderFormatRevision() const { return packageHeaderFormatRevision; } u_int16_t getPackageHeaderSize() const { return packageHeaderSize; } const u_int8_t* getPackageReleaseDateTime() const { return packageReleaseDateTime; } u_int16_t getComponentBitmapBitLength() const { return componentBitmapBitLength; } u_int8_t getPackageVersionStringType() const { return packageVersionStringType; } u_int8_t getPackageVersionStringLength() const { return packageVersionStringLength; } const std::string& getPackageVersionString() const { return packageVersionString; } private: static const int ID_COUNT = 4; static const int TIMESTAMP_SIZE = 13; u_int32_t packageHeaderIdentifier[ID_COUNT]; u_int8_t packageHeaderFormatRevision; u_int16_t packageHeaderSize; u_int8_t packageReleaseDateTime[TIMESTAMP_SIZE]; u_int16_t componentBitmapBitLength; u_int8_t packageVersionStringType; u_int8_t packageVersionStringLength; std::string packageVersionString; }; #endif /* _PLDM_PKG_HDR_ */ mstflint-4.26.0/pldmlib/pldm_pkg.cpp0000644000175000017500000001007014522641732017625 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include #include #include "pldm_buff.h" #include "pldm_pkg_hdr.h" #include "pldm_record_descriptor.h" #include "pldm_dev_id_record.h" #include "pldm_component_image.h" #include "pldm_pkg.h" const u_int8_t PldmPkg::UUID[] = {0xF0, 0x18, 0x87, 0x8C, 0xCB, 0x7D, 0x49, 0x43, 0x98, 0x00, 0xA0, 0x2F, 0x05, 0x9A, 0xCA, 0x02}; PldmPkg::PldmPkg() : deviceIDRecordCount(0) {} PldmPkg::~PldmPkg() { while (!deviceIDRecords.empty()) { delete deviceIDRecords.back(); deviceIDRecords.pop_back(); } while (!componentImages.empty()) { delete componentImages.back(); componentImages.pop_back(); } } bool PldmPkg::unpack(PldmBuffer& buff) { if (!packageHeader.unpack(buff)) { return false; } buff.read(deviceIDRecordCount); u_int8_t componentBitmapBitLength = packageHeader.getComponentBitmapBitLength(); u_int8_t i; for (i = 0; i < deviceIDRecordCount; i++) { PldmDevIdRecord* deviceIDRecord = new PldmDevIdRecord(componentBitmapBitLength); deviceIDRecord->unpack(buff); deviceIDRecords.push_back(deviceIDRecord); psidImageMap[deviceIDRecord->getDevicePsid()] = deviceIDRecord->getComponentImageIndex(); } buff.read(componentImageCount); for (i = 0; i < componentImageCount; i++) { PldmComponenetImage* componentImage = new PldmComponenetImage(); componentImage->unpack(buff); componentImages.push_back(componentImage); } buff.read(packageHeaderChecksum); return true; } void PldmPkg::print(FILE* fp) { fprintf(fp, "packageHeader:\n"); packageHeader.print(fp); fprintf(fp, "deviceIDRecordCount: 0x%X\n", deviceIDRecordCount); u_int8_t i; for (i = 0; i < deviceIDRecordCount; i++) { fprintf(fp, "deviceIDRecords[%d]:\n", i); deviceIDRecords[i]->print(fp); } fprintf(fp, "componentImageCount: 0x%X\n", componentImageCount); for (i = 0; i < componentImageCount; i++) { fprintf(fp, "componentImages[%d]:\n", i); componentImages[i]->print(fp); } fprintf(fp, "packageHeaderChecksum: 0x%X\n", packageHeaderChecksum); } const PldmComponenetImage* PldmPkg::getImageByPsid(const std::string& psid) const { PsidImageMap::const_iterator it = psidImageMap.find(psid); if (it == psidImageMap.end()) return NULL; int location = it->second; if (location == -1 || location >= componentImageCount) return NULL; return componentImages[location]; } mstflint-4.26.0/pldmlib/pldm_dev_id_record.h0000644000175000017500000000461614522641732021312 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _PLDM_DEV_ID_RECORD_HDR_ #define _PLDM_DEV_ID_RECORD_HDR_ class PldmRecordDescriptor; class PldmDevIdRecord { public: PldmDevIdRecord(u_int8_t componentBitmapBitLength = 0); virtual ~PldmDevIdRecord(); bool unpack(PldmBuffer& buff); int getComponentImageIndex() const; std::string getDevicePsid() const; std::string getDescription() const; void print(FILE* fp); private: u_int8_t componentBitmapBitLength; u_int16_t recordLength; u_int8_t descriptorCount; u_int32_t deviceUpdateOptionFlags; u_int8_t componentImageSetVersionStringType; u_int8_t componentImageSetVersionStringLength; u_int16_t firmwareDevicePackageDataLength; u_int8_t* applicableComponents; std::string componentImageSetVersionString; std::vector recordDescriptors; u_int8_t* firmwareDevicePackageData; }; #endif /* _PLDM_DEV_ID_RECORD_HDR_ */ mstflint-4.26.0/pldmlib/pldm_pkg_hdr.cpp0000644000175000017500000000620614522641732020470 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include #include "pldm_buff.h" #include "pldm_pkg_hdr.h" PldmPkgHdr::PldmPkgHdr() : packageHeaderFormatRevision(0), packageHeaderSize(0), componentBitmapBitLength(0), packageVersionStringType(0), packageVersionStringLength(0) { int i = 0; for (i = 0; i < ID_COUNT; i++) { packageHeaderIdentifier[i] = 0; } for (i = 0; i < TIMESTAMP_SIZE; i++) { packageReleaseDateTime[i] = 0; } } PldmPkgHdr::~PldmPkgHdr() {} bool PldmPkgHdr::unpack(PldmBuffer& buff) { for (int i = 0; i < ID_COUNT; i++) { buff.read(packageHeaderIdentifier[i]); } buff.read(packageHeaderFormatRevision); buff.read(packageHeaderSize); buff.read(packageReleaseDateTime, TIMESTAMP_SIZE); buff.read(componentBitmapBitLength); buff.read(packageVersionStringType); buff.read(packageVersionStringLength); buff.read(packageVersionString, packageVersionStringLength); return true; } void PldmPkgHdr::print(FILE* fp) { for (int i = 0; i < ID_COUNT; i++) { fprintf(fp, "packageHeaderIdentifier[%d]: 0x%X\n", i, packageHeaderIdentifier[i]); } fprintf(fp, "packageHeaderFormatRevision: 0x%X\n", packageHeaderFormatRevision); fprintf(fp, "packageHeaderSize: 0x%X\n", packageHeaderSize); fprintf(fp, "componentBitmapBitLength: 0x%X\n", componentBitmapBitLength); fprintf(fp, "packageVersionStringType: 0x%X\n", packageVersionStringType); fprintf(fp, "packageVersionStringLength: 0x%X\n", packageVersionStringLength); fprintf(fp, "packageVersionString: %s\n", packageVersionString.c_str()); } mstflint-4.26.0/pldmlib/pldm_component_image.h0000644000175000017500000000454414522641732021666 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _PLDM_COMPONENET_IMAGE_ #define _PLDM_COMPONENET_IMAGE_ class PldmComponenetImage { public: PldmComponenetImage(); virtual ~PldmComponenetImage(); bool unpack(PldmBuffer& buff); void print(FILE* fp); u_int32_t getComponentSize() const { return componentSize; } const u_int8_t* getComponentData() const { return componentData; } private: bool readComponentData(PldmBuffer& buff); u_int16_t componentClassification; u_int16_t componentIdentifier; u_int32_t componentComparisonStamp; u_int16_t componentOptions; u_int16_t requestedComponentActivationMethod; u_int32_t componentLocationOffset; u_int32_t componentSize; u_int8_t componentVersionStringType; u_int8_t componentVersionStringLength; std::string componentVersionString; u_int8_t* componentData; }; #endif /* _PLDM_COMPONENET_IMAGE_ */ mstflint-4.26.0/pldmlib/pldm_dev_id_record.cpp0000644000175000017500000001314214522641732021637 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include #include "pldm_buff.h" #include "pldm_record_descriptor.h" #include "pldm_dev_id_record.h" PldmDevIdRecord::PldmDevIdRecord(u_int8_t bitmapBitLength) : componentBitmapBitLength(bitmapBitLength), recordLength(0), descriptorCount(0), deviceUpdateOptionFlags(0), componentImageSetVersionStringType(0), componentImageSetVersionStringLength(0), firmwareDevicePackageDataLength(0), applicableComponents(NULL), firmwareDevicePackageData(NULL) { } PldmDevIdRecord::~PldmDevIdRecord() { if (applicableComponents) { delete[] applicableComponents; } if (firmwareDevicePackageData) { delete[] firmwareDevicePackageData; } while (!recordDescriptors.empty()) { delete recordDescriptors.back(); recordDescriptors.pop_back(); } } bool PldmDevIdRecord::unpack(PldmBuffer& buff) { buff.read(recordLength); buff.read(descriptorCount); buff.read(deviceUpdateOptionFlags); buff.read(componentImageSetVersionStringType); buff.read(componentImageSetVersionStringLength); buff.read(firmwareDevicePackageDataLength); if (componentBitmapBitLength) { u_int8_t applicableComponentsLen = componentBitmapBitLength / 8; applicableComponents = new u_int8_t[applicableComponentsLen]; buff.read(applicableComponents, applicableComponentsLen); } buff.read(componentImageSetVersionString, componentImageSetVersionStringLength); for (u_int8_t i = 0; i < descriptorCount; i++) { PldmRecordDescriptor* descriptor = new PldmRecordDescriptor(); descriptor->unpack(buff); recordDescriptors.push_back(descriptor); } if (firmwareDevicePackageDataLength) { buff.read(firmwareDevicePackageData, firmwareDevicePackageDataLength); } return true; } void PldmDevIdRecord::print(FILE* fp) { fprintf(fp, "recordLength: 0x%X\n", recordLength); fprintf(fp, "descriptorCount: 0x%X\n", descriptorCount); fprintf(fp, "deviceUpdateOptionFlags: 0x%X\n", deviceUpdateOptionFlags); fprintf(fp, "componentImageSetVersionStringType: 0x%X\n", componentImageSetVersionStringType); fprintf(fp, "componentImageSetVersionStringLength: 0x%X\n", componentImageSetVersionStringLength); fprintf(fp, "firmwareDevicePackageDataLength: 0x%X\n", firmwareDevicePackageDataLength); if (componentBitmapBitLength) { u_int8_t applicableComponentsLen = componentBitmapBitLength / 8; for (u_int8_t i = 0; i < applicableComponentsLen; i++) { fprintf(fp, "applicableComponents[%d]: 0x%X\n", i, applicableComponents[i]); } } fprintf(fp, "componentImageSetVersionString: %s\n", componentImageSetVersionString.c_str()); for (u_int8_t i = 0; i < descriptorCount; i++) { fprintf(fp, "recordDescriptors[%d]:\n", i); recordDescriptors[i]->print(fp); } } int PldmDevIdRecord::getComponentImageIndex() const { u_int8_t applicableComponentsLen = componentBitmapBitLength / 8; int index = -1; static const u_int8_t index_map[] = {0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; for (u_int8_t i = 0; i < applicableComponentsLen; i++) { u_int8_t flags = applicableComponents[i]; for (u_int8_t j = 0; j < 8; j++) { if (flags & index_map[j]) { index = i * 8 + j; break; } } if (index != -1) break; } return index; } std::string PldmDevIdRecord::getDevicePsid() const { std::string psid; for (u_int8_t i = 0; i < descriptorCount; i++) { psid = recordDescriptors[i]->getPsid(); if (psid != "") break; } return psid; } std::string PldmDevIdRecord::getDescription() const { std::string description; for (u_int8_t i = 0; i < descriptorCount - 1; i++) { description += (recordDescriptors[i]->getDescription() + ", "); } if (descriptorCount > 0) { description += recordDescriptors[descriptorCount - 1]->getDescription(); } return description; } mstflint-4.26.0/pldmlib/pldm_pkg.h0000644000175000017500000000522714522641732017302 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _PLDM_PKG_H_ #define _PLDM_PKG_H_ #include #include #include #include "pldm_buff.h" #include "pldm_pkg_hdr.h" class PldmDevIdRecord; class PldmComponenetImage; class PldmPkg { public: PldmPkg(); virtual ~PldmPkg(); bool unpack(PldmBuffer& buff); void print(FILE* fp); const PldmComponenetImage* getImageByPsid(const std::string& psid) const; static const u_int8_t UUID[]; u_int8_t getDeviceIDRecordCount() const { return deviceIDRecordCount; } PldmDevIdRecord* getDeviceIDRecord(u_int8_t index) const { return deviceIDRecords[index]; } PldmComponenetImage* getComponentImage(u_int16_t index) const { return componentImages[index]; } void getDeviceComponentImages(u_int8_t dev_index, std::vector images_list) const; private: typedef std::map PsidImageMap; PsidImageMap psidImageMap; PldmPkgHdr packageHeader; u_int8_t deviceIDRecordCount; std::vector deviceIDRecords; u_int16_t componentImageCount; std::vector componentImages; u_int32_t packageHeaderChecksum; }; #endif /* _PLDM_PKG_H_ */ mstflint-4.26.0/pldmlib/pldm_component_image.cpp0000644000175000017500000000736714522641732022227 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include #include "pldm_buff.h" #include "pldm_component_image.h" PldmComponenetImage::PldmComponenetImage() : componentClassification(0), componentIdentifier(0), componentComparisonStamp(0), componentOptions(0), requestedComponentActivationMethod(0), componentLocationOffset(0), componentSize(0), componentVersionStringType(0), componentVersionStringLength(0), componentData(NULL) { } PldmComponenetImage::~PldmComponenetImage() { if (componentData) { delete[] componentData; } } bool PldmComponenetImage::unpack(PldmBuffer& buff) { buff.read(componentClassification); buff.read(componentIdentifier); buff.read(componentComparisonStamp); buff.read(componentOptions); buff.read(requestedComponentActivationMethod); buff.read(componentLocationOffset); buff.read(componentSize); buff.read(componentVersionStringType); buff.read(componentVersionStringLength); buff.read(componentVersionString, componentVersionStringLength); return readComponentData(buff); } bool PldmComponenetImage::readComponentData(PldmBuffer& buff) { componentData = new u_int8_t[componentSize]; // restore previous position long pos = buff.tell(); buff.seek(componentLocationOffset, SEEK_SET); buff.read(componentData, componentSize); // restore previous position buff.seek(pos, SEEK_SET); return true; } void PldmComponenetImage::print(FILE* fp) { fprintf(fp, "componentClassification: 0x%X\n", componentClassification); fprintf(fp, "componentIdentifier: 0x%X\n", componentIdentifier); fprintf(fp, "componentComparisonStamp: 0x%X\n", componentComparisonStamp); fprintf(fp, "componentOptions: 0x%X\n", componentOptions); fprintf(fp, "requestedComponentActivationMethod: 0x%X\n", requestedComponentActivationMethod); fprintf(fp, "componentLocationOffset: 0x%X\n", componentLocationOffset); fprintf(fp, "componentSize: 0x%X\n", componentSize); fprintf(fp, "componentVersionStringType: 0x%X\n", componentVersionStringType); fprintf(fp, "componentVersionStringLength: 0x%X\n", componentVersionStringLength); fprintf(fp, "componentVersionString: %s\n", componentVersionString.c_str()); } mstflint-4.26.0/pldmlib/pldm_buff.h0000644000175000017500000000403614522641732017440 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _PLDM_BUFF_H_ #define _PLDM_BUFF_H_ #include #include class PldmBuffer { public: PldmBuffer(); virtual ~PldmBuffer(); bool loadFile(const std::string& fname); void read(u_int8_t& val); void read(u_int16_t& val); void read(u_int32_t& val); void read(std::string& str, size_t str_size); void read(u_int8_t* arr, size_t arr_size); int seek(long offset, int whence); long tell(); private: u_int8_t* m_buff; long m_pos; long m_size; }; #endif /* _PLDM_BUFF_H_ */ mstflint-4.26.0/pldmlib/Makefile.am0000644000175000017500000000363114522641732017365 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = -I. -I$(USER_DIR)/common AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -DPLDMLIB_EXPORT noinst_LTLIBRARIES = libpldm.la libpldm_la_SOURCES = \ pldm_buff.cpp pldm_buff.h\ pldm_record_descriptor.cpp pldm_record_descriptor.h\ pldm_dev_id_record.cpp pldm_dev_id_record.h\ pldm_component_image.cpp pldm_component_image.h\ pldm_pkg_hdr.cpp pldm_pkg_hdr.h\ pldm_pkg.cpp pldm_pkg.h mstflint-4.26.0/pldmlib/pldm_record_descriptor.cpp0000644000175000017500000000704214522641732022565 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include "pldm_buff.h" #include "pldm_record_descriptor.h" PldmRecordDescriptor::PldmRecordDescriptor() : descriptorType(0), descriptorLength(0), descriptorData(NULL) {} PldmRecordDescriptor::~PldmRecordDescriptor() { if (descriptorData) { delete[] descriptorData; } } bool PldmRecordDescriptor::unpack(PldmBuffer& buff) { buff.read(descriptorType); buff.read(descriptorLength); if (descriptorLength) { descriptorData = new u_int8_t[descriptorLength]; buff.read(descriptorData, descriptorLength); extractPsid(); } return true; } void PldmRecordDescriptor::extractPsid() { if (descriptorType == Vendor_Defined) { u_int8_t* psidptr = descriptorData; psidptr++; u_int8_t prefixlen = *psidptr; psidptr++; psidptr += prefixlen; psid = std::string(reinterpret_cast(psidptr)); } } void PldmRecordDescriptor::print(FILE* fp) { fprintf(fp, "descriptorType: 0x%X ", descriptorType); fprintf(fp, "descriptorLength: 0x%X ", descriptorLength); fprintf(fp, "data: %s\n", getDescription().c_str()); } std::string PldmRecordDescriptor::getDescription() const { char description[256] = {'\0'}; switch (descriptorType) { case PCI_Vendor_ID: sprintf(description, "PCI Vendor ID: 0x%02x%02x", descriptorData[1], descriptorData[0]); break; case PCI_Device_ID: sprintf(description, "PCI Device ID: 0x%02x%02x", descriptorData[1], descriptorData[0]); break; case PCI_Subsystem_Vendor_ID: sprintf(description, "PCI Subsystem Vendor ID: 0x%02x%02x", descriptorData[1], descriptorData[0]); break; case PCI_Subsystem_ID: sprintf(description, "PCI Subsystem ID: 0x%02x%02x", descriptorData[1], descriptorData[0]); break; case Vendor_Defined: sprintf(description, "PSID: %s", psid.c_str()); break; } return description; } mstflint-4.26.0/pldmlib/Makefile.in0000644000175000017500000005202214522641740017373 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = pldmlib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libpldm_la_LIBADD = am_libpldm_la_OBJECTS = pldm_buff.lo pldm_record_descriptor.lo \ pldm_dev_id_record.lo pldm_component_image.lo pldm_pkg_hdr.lo \ pldm_pkg.lo libpldm_la_OBJECTS = $(am_libpldm_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libpldm_la_SOURCES) DIST_SOURCES = $(libpldm_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = -I. -I$(USER_DIR)/common AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -DPLDMLIB_EXPORT noinst_LTLIBRARIES = libpldm.la libpldm_la_SOURCES = \ pldm_buff.cpp pldm_buff.h\ pldm_record_descriptor.cpp pldm_record_descriptor.h\ pldm_dev_id_record.cpp pldm_dev_id_record.h\ pldm_component_image.cpp pldm_component_image.h\ pldm_pkg_hdr.cpp pldm_pkg_hdr.h\ pldm_pkg.cpp pldm_pkg.h all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pldmlib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign pldmlib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libpldm.la: $(libpldm_la_OBJECTS) $(libpldm_la_DEPENDENCIES) $(EXTRA_libpldm_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libpldm_la_OBJECTS) $(libpldm_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pldm_buff.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pldm_component_image.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pldm_dev_id_record.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pldm_pkg.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pldm_pkg_hdr.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pldm_record_descriptor.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/pldmlib/pldm_buff.cpp0000644000175000017500000000714514522641732017777 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include #include #include "pldm_buff.h" PldmBuffer::PldmBuffer() : m_buff(NULL), m_pos(0), m_size(0) {} PldmBuffer::~PldmBuffer() { if (m_buff) { delete[] m_buff; m_buff = NULL; } } bool PldmBuffer::loadFile(const std::string& fname) { // open the file: FILE* fp; fp = fopen(fname.c_str(), "rb"); if (!fp) { return false; } // Get file length fseek(fp, 0, SEEK_END); m_size = ftell(fp); fseek(fp, 0, SEEK_SET); // Allocate memory if (m_buff) { delete[] m_buff; m_buff = NULL; } m_buff = new u_int8_t[m_size + 1]; if (!m_buff) { return false; } // Read file contents into buffer size_t read_size = fread(m_buff, m_size, 1, fp); fclose(fp); return (read_size == (size_t)m_size); } void PldmBuffer::read(u_int8_t& val) { val = *(m_buff + m_pos); m_pos += sizeof(u_int8_t); } void PldmBuffer::read(u_int16_t& val) { val = *(u_int16_t*)(m_buff + m_pos); m_pos += sizeof(u_int16_t); val = __le16_to_cpu(val); } void PldmBuffer::read(u_int32_t& val) { val = *(u_int32_t*)(m_buff + m_pos); m_pos += sizeof(u_int32_t); val = __le32_to_cpu(val); } void PldmBuffer::read(std::string& str, size_t str_size) { u_int8_t* arr = new u_int8_t[str_size]; read(arr, str_size); str = std::string(reinterpret_cast(arr), str_size); delete[] arr; } void PldmBuffer::read(u_int8_t* arr, size_t arr_size) { memcpy(arr, m_buff + m_pos, arr_size); m_pos += arr_size; } int PldmBuffer::seek(long offset, int whence) { long new_pos = -1; switch (whence) { case SEEK_SET: new_pos = offset; break; case SEEK_CUR: new_pos = m_pos + offset; break; case SEEK_END: new_pos = m_size + offset; break; } if (new_pos < 0 || new_pos > m_size) { return -1; } m_pos = new_pos; return 0; } long PldmBuffer::tell() { return m_pos; } mstflint-4.26.0/reg_access/0000755000175000017500000000000014522641740016000 5ustar tzafrirctzafrircmstflint-4.26.0/reg_access/regaccess_hca_ext_structs.py0000755000175000017500000002406014522641732023601 0ustar tzafrirctzafrirc # # Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # ############################################################################### # This file was generated at "2023-10-18 11:41:04" # by: # > gen_adb_data.py -g hca_prm_projects ############################################################################### import os import sys import ctypes import platform import mtcr class MRSI_EXT(ctypes.Structure): _fields_ = [ ("device", ctypes.c_uint8), ("reset_reason", ctypes.c_uint8), ("crts", ctypes.c_uint64) ] class DIAGNOSTIC_CNTR_LAYOUT(ctypes.Structure): _fields_ = [ ("counter_id", ctypes.c_uint16), ("sync", ctypes.c_uint8) ] class DEBUG_CAP(ctypes.Structure): _fields_ = [ ("log_max_samples", ctypes.c_uint8), ("log_min_resource_dump_eq", ctypes.c_uint8), ("resource_dump", ctypes.c_uint8), ("log_cr_dump_to_mem_size", ctypes.c_uint8), ("core_dump_qp", ctypes.c_uint8), ("core_dump_general", ctypes.c_uint8), ("log_min_sample_period", ctypes.c_uint8), ("diag_counter_tracer_dump", ctypes.c_uint8), ("health_mon_rx_activity", ctypes.c_uint8), ("repetitive", ctypes.c_uint8), ("single", ctypes.c_uint8), ("diagnostic_counter", DIAGNOSTIC_CNTR_LAYOUT) ] class DEFAULT_TIMEOUT_EXT(ctypes.Structure): _fields_ = [ ("to_value", ctypes.c_uint32), ("to_multiplier", ctypes.c_uint8) ] class DTOR_REG_EXT(ctypes.Structure): _fields_ = [ ("PCIE_TOGGLE_TO", DEFAULT_TIMEOUT_EXT), ("HEALTH_POLL_TO", DEFAULT_TIMEOUT_EXT), ("FULL_CRDUMP_TO", DEFAULT_TIMEOUT_EXT), ("FW_RESET_TO", DEFAULT_TIMEOUT_EXT), ("FLUSH_ON_ERR_TO", DEFAULT_TIMEOUT_EXT), ("PCI_SYNC_UPDATE_TO", DEFAULT_TIMEOUT_EXT), ("TEAR_DOWN_TO", DEFAULT_TIMEOUT_EXT), ("FSM_REACTIVATE_TO", DEFAULT_TIMEOUT_EXT), ("RECLAIM_PAGES_TO", DEFAULT_TIMEOUT_EXT), ("RECLAIM_VFS_PAGES_TO", DEFAULT_TIMEOUT_EXT), ("DRIVER_UNLOAD_AND_RESET_TO", DEFAULT_TIMEOUT_EXT) ] class PCNR_REG_EXT(ctypes.Structure): _fields_ = [ ("tuning_override", ctypes.c_uint8), ("lp_msb", ctypes.c_uint8), ("local_port", ctypes.c_uint8), ("keep_phy_setting", ctypes.c_uint8) ] class STRING_DB_PARAMETERS_EXT(ctypes.Structure): _fields_ = [ ("string_db_base_address", ctypes.c_uint32), ("string_db_size", ctypes.c_uint32) ] class MTRC_CAP_REG_EXT(ctypes.Structure): _fields_ = [ ("num_string_db", ctypes.c_uint8), ("trc_ver", ctypes.c_uint8), ("trace_to_memory", ctypes.c_uint8), ("trace_owner", ctypes.c_uint8), ("num_string_trace", ctypes.c_uint8), ("first_string_trace", ctypes.c_uint8), ("log_max_trace_buffer_size", ctypes.c_uint8), ("tracer_capabilities", ctypes.c_uint8), ("string_db_param", STRING_DB_PARAMETERS_EXT * 8) ] class MGIR_HARDWARE_INFO_EXT(ctypes.Structure): _fields_ = [ ("device_id", ctypes.c_uint16), ("device_hw_revision", ctypes.c_uint16), ("pvs", ctypes.c_uint8), ("technology", ctypes.c_uint8), ("num_ports", ctypes.c_uint8), ("hw_dev_id", ctypes.c_uint16), ("manufacturing_base_mac_47_32", ctypes.c_uint16), ("manufacturing_base_mac_31_0", ctypes.c_uint32), ("uptime", ctypes.c_uint32) ] class MGIR_FW_INFO_EXT(ctypes.Structure): _fields_ = [ ("sub_minor", ctypes.c_uint8), ("minor", ctypes.c_uint8), ("major", ctypes.c_uint8), ("secured", ctypes.c_uint8), ("signed_fw", ctypes.c_uint8), ("debug", ctypes.c_uint8), ("dev", ctypes.c_uint8), ("string_tlv", ctypes.c_uint8), ("dev_sc", ctypes.c_uint8), ("build_id", ctypes.c_uint32), ("year", ctypes.c_uint16), ("day", ctypes.c_uint8), ("month", ctypes.c_uint8), ("hour", ctypes.c_uint16), ("psid", ctypes.c_uint8 * 16), ("ini_file_version", ctypes.c_uint32), ("extended_major", ctypes.c_uint32), ("extended_minor", ctypes.c_uint32), ("extended_sub_minor", ctypes.c_uint32), ("isfu_major", ctypes.c_uint16), ("disabled_tiles_bitmap", ctypes.c_uint16), ("life_cycle", ctypes.c_uint8), ("sec_boot", ctypes.c_uint8), ("encryption", ctypes.c_uint8) ] class ROM_VERSION_EXT(ctypes.Structure): _fields_ = [ ("build", ctypes.c_uint16), ("minor", ctypes.c_uint8), ("major", ctypes.c_uint8) ] class MGIR_SW_INFO_EXT(ctypes.Structure): _fields_ = [ ("sub_minor", ctypes.c_uint8), ("minor", ctypes.c_uint8), ("major", ctypes.c_uint8), ("rom3_type", ctypes.c_uint8), ("rom3_arch", ctypes.c_uint8), ("rom2_type", ctypes.c_uint8), ("rom2_arch", ctypes.c_uint8), ("rom1_type", ctypes.c_uint8), ("rom1_arch", ctypes.c_uint8), ("rom0_type", ctypes.c_uint8), ("rom0_arch", ctypes.c_uint8), ("rom0_version", ROM_VERSION_EXT), ("rom1_version", ROM_VERSION_EXT), ("rom2_version", ROM_VERSION_EXT), ("rom3_version", ROM_VERSION_EXT) ] class MGIR_DEV_INFO_EXT(ctypes.Structure): _fields_ = [ ("dev_branch_tag", ctypes.c_uint8 * 28) ] class MGIR_EXT(ctypes.Structure): _fields_ = [ ("hw_info", MGIR_HARDWARE_INFO_EXT), ("fw_info", MGIR_FW_INFO_EXT), ("sw_info", MGIR_SW_INFO_EXT), ("dev_info", MGIR_DEV_INFO_EXT) ] class RESOURCE_DUMP_EXT(ctypes.Structure): _fields_ = [ ("segment_type", ctypes.c_uint16), ("seq_num", ctypes.c_uint8), ("vhca_id_valid", ctypes.c_uint8), ("inline_dump", ctypes.c_uint8), ("more_dump", ctypes.c_uint8), ("vhca_id", ctypes.c_uint16), ("index1", ctypes.c_uint32), ("index2", ctypes.c_uint32), ("num_of_obj2", ctypes.c_uint16), ("num_of_obj1", ctypes.c_uint16), ("device_opaque", ctypes.c_uint64), ("mkey", ctypes.c_uint32), ("size", ctypes.c_uint32), ("address", ctypes.c_uint64), ("inline_data", ctypes.c_uint32 * 52) ] class MFRL_REG_EXT(ctypes.Structure): _fields_ = [ ("reset_trigger", ctypes.c_uint8), ("reset_type", ctypes.c_uint8), ("reset_state", ctypes.c_uint8), ("pci_leaf_dsp_exist", ctypes.c_uint8), ("pci_leaf_dsp_traffic_dis_commited", ctypes.c_uint8), ("rst_type_sel", ctypes.c_uint8), ("pci_sync_for_fw_update_resp", ctypes.c_uint8), ("pci_sync_for_fw_update_start", ctypes.c_uint8), ("pci_rescan_required", ctypes.c_uint8) ] class MPCIR_EXT(ctypes.Structure): _fields_ = [ ("all", ctypes.c_uint8), ("ports", ctypes.c_uint8), ("ports_stat", ctypes.c_uint8) ] class MCAM_REG_EXT(ctypes.Structure): _fields_ = [ ("access_reg_group", ctypes.c_uint8), ("feature_group", ctypes.c_uint8), ("mng_access_reg_cap_mask", ctypes.c_uint32 * 4), ("mng_feature_cap_mask", ctypes.c_uint32 * 4) ] class MTRC_STDB_REG_EXT(ctypes.Structure): _fields_ = [ ("read_size", ctypes.c_uint32), ("string_db_index", ctypes.c_uint8), ("start_offset", ctypes.c_uint32), ("string_db_data", ctypes.c_uint32) ] class MTEIM_REG_EXT(ctypes.Structure): _fields_ = [ ("cap_core_tile", ctypes.c_uint8), ("cap_core_main", ctypes.c_uint8), ("cap_core_dpa", ctypes.c_uint8), ("cap_num_of_tile", ctypes.c_uint8), ("type_core_tile", ctypes.c_uint8), ("type_core_main", ctypes.c_uint8), ("type_core_dpa", ctypes.c_uint8), ("is_phy_uc_supported", ctypes.c_uint8), ("is_dwsn_msb_supported", ctypes.c_uint8), ("first_dpa_core_event_id", ctypes.c_uint8), ("first_main_core_event_id", ctypes.c_uint8), ("first_tile_core_event_id", ctypes.c_uint8 * 8) ] class NIC_DPA_EUG_REG_EXT(ctypes.Structure): _fields_ = [ ("eug_id", ctypes.c_uint16), ("operation", ctypes.c_uint8), ("modify_field_select", ctypes.c_uint32), ("eug_name", ctypes.c_uint32 * 4), ("member_mask", ctypes.c_uint32 * 32) ] class NIC_DPA_PERF_CTRL_REG_EXT(ctypes.Structure): _fields_ = [ ("dpa_process_id", ctypes.c_uint32), ("other_vhca_id", ctypes.c_uint16), ("sample_type", ctypes.c_uint8), ("other_vhca_id_valid", ctypes.c_uint8), ("count_state", ctypes.c_uint8) ] class NIC_CAP_EXT_REG(ctypes.Structure): _fields_ = [ ("cap_group", ctypes.c_uint16), ("cap_data", ctypes.c_uint32 * 28) ] mstflint-4.26.0/reg_access/reg_access.c0000644000175000017500000007164114522641732020254 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "reg_access.h" #include "reg_access_macros.h" #include "common/compatibility.h" #include #include #include #include #define REG_ID_PCNR 0x5050 #define REG_ID_PAOS 0x5006 #define REG_ID_PTYS 0x5004 #define REG_ID_PMAOS 0x5012 #define REG_ID_MCIA 0x9014 #define REG_ID_MTMP 0x900a #define REG_ID_MTCAP 0x9009 #define REG_ID_MIRC 0x9162 #define REG_ID_MGIR 0x9020 #define REG_ID_PMLP 0x5002 #define REG_ID_MFPA 0x9010 #define REG_ID_MFBA 0x9011 #define REG_ID_MFBE 0x9012 #define REG_ID_MFMC 0x9013 #define REG_ID_MMDIO 0x9017 #define REG_ID_MJTAG 0x901F #define REG_ID_PMDIC 0x9021 #define REG_ID_MNVDA 0x9024 #define REG_ID_MNVDI 0x9025 #define REG_ID_MVTS 0x902c #define REG_ID_MNVGC 0x9034 #define REG_ID_MNVIA_4TH_GEN 0x9029 #define REG_ID_MNVQC 0x9030 #define REG_ID_MNVGN 0x9035 #define REG_ID_MNVIA 0x9033 #define REG_ID_MGNLE 0x9036 #define REG_ID_MLCOK 0x402D #define REG_ID_RITR 0x8002 #define REG_ID_RICNT 0x800b #define REG_ID_PPCNT 0x5008 #define REG_ID_SBPR 0xb001 #define REG_ID_SBCM 0xb002 #define REG_ID_SBPM 0xb003 #define REG_ID_SBMM 0xb004 #define REG_ID_MTRC_CAP 0x9040 #define REG_ID_MTRC_CONF 0x9041 #define REG_ID_MTRC_STDB 0x9042 #define REG_ID_MTRC_CTRL 0x9043 #define REG_ID_DEBUG_CAP 0x8400 #define REG_ID_MCDD 0x905C #define REG_ID_MCQS 0x9060 #define REG_ID_MCQI 0x9061 #define REG_ID_MCC 0x9062 #define REG_ID_MCDA 0x9063 #define REG_ID_MQIS 0x9064 #define REG_ID_MTCQ 0x9065 #define REG_ID_MKDC 0x9066 #define REG_ID_MCAM 0x907f // TODO: get correct register ID for mfrl mfai #define REG_ID_MFRL 0x9028 #define REG_ID_MFAI 0x9029 #define REG_ID_MPCIR 0x905a #define REG_ID_MGPIR 0x9100 #define REG_ID_MDFCR 0x9101 #define REG_ID_MDRCR 0x9102 #define REG_ID_MDSR 0x9110 #define REG_ID_MFSV 0x9115 #define REG_ID_MTEIM 0x9118 #define REG_ID_MTIE 0x911b #define REG_ID_MTIM 0x911c #define REG_ID_MTDC 0x911d #define REG_ID_PLIB 0x500a #define REG_ID_MRSR 0x9023 #define REG_ID_DTOR 0xC00E #define REG_ID_MRSI 0x912A #define REG_ID_MDDT 0x9160 #define REG_ID_MDDQ 0x9161 // For mstdump oob feature: #define REG_ID_ICAM 0x387F #define REG_ID_ICSR 0x38F0 //================================== // RESOURCE DUMP FEATURE #define REG_ID_RES_DUMP 0xC000 //================================== #define REG_ID_MPEGC 0x9056 #define REG_ID_NIC_CAP_EXT 0xC011 #define REG_ID_NIC_DPA_PERF 0xC013 #define REG_ID_NIC_DPA_PERF_CTRL 0xC014 #define REG_ID_NIC_DPA_EUG 0xC012 #define REG_ID_NIC_DPA_EU_PARTITION 0xC015 #define DWORD_SIZE 4 // For MLNXOS, MGIR still limited with 44 bytes #define INBAND_MAX_REG_SIZE 44 #define MAX_DYNAMIC_ARRAY_SIZE_IN_BYTES 704 // as defined by FW MAD communication reg_access_status_t reg_access_mddt(mfile* mf, reg_access_method_t method, struct reg_access_switch_mddt_reg_ext* switch_mddt_reg) { REG_ACCCESS(mf, method, REG_ID_MDDT, switch_mddt_reg, switch_mddt_reg_ext, reg_access); } reg_access_status_t reg_access_mddq(mfile* mf, reg_access_method_t method, struct reg_access_switch_mddq_ext* mddq) { REG_ACCCESS(mf, method, REG_ID_MDDQ, mddq, mddq_ext, reg_access_switch); } /************************************ * Function: reg_access_pcnr ************************************/ reg_access_status_t reg_access_pcnr(mfile* mf, reg_access_method_t method, struct reg_access_hca_pcnr_reg_ext* pcnr) { REG_ACCCESS(mf, method, REG_ID_PCNR, pcnr, pcnr_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_plib ************************************/ reg_access_status_t reg_access_plib(mfile* mf, reg_access_method_t method, struct reg_access_switch_plib_reg_ext* plib) { REG_ACCCESS(mf, method, REG_ID_PLIB, plib, plib_reg_ext, reg_access_switch); } /************************************ * Function: reg_access_mteim ************************************/ reg_access_status_t reg_access_mteim(mfile* mf, reg_access_method_t method, struct reg_access_hca_mteim_reg_ext* mteim) { REG_ACCCESS(mf, method, REG_ID_MTEIM, mteim, mteim_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mtie ************************************/ reg_access_status_t reg_access_mtie(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtie_ext* mtie) { REG_ACCCESS(mf, method, REG_ID_MTIE, mtie, mtie_ext, reg_access_hca); } /************************************ * Function: reg_access_mtim ************************************/ reg_access_status_t reg_access_mtim(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtim_ext* mtim) { REG_ACCCESS(mf, method, REG_ID_MTIM, mtim, mtim_ext, reg_access_hca); } /************************************ * Function: reg_access_mtdc ************************************/ reg_access_status_t reg_access_mtdc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtdc_ext* mtdc) { REG_ACCCESS(mf, method, REG_ID_MTDC, mtdc, mtdc_ext, reg_access_hca); } /************************************ * Function: reg_access_debug_cap ************************************/ reg_access_status_t reg_access_debug_cap(mfile* mf, reg_access_method_t method, struct reg_access_hca_debug_cap* debug_cap) { REG_ACCCESS(mf, method, REG_ID_DEBUG_CAP, debug_cap, debug_cap, reg_access_hca); } /************************************ * Function: reg_access_pmaos ************************************/ reg_access_status_t reg_access_pmaos(mfile* mf, reg_access_method_t method, struct reg_access_switch_pmaos_reg_ext* pmaos_reg_ext) { REG_ACCCESS(mf, method, REG_ID_PMAOS, pmaos_reg_ext, pmaos_reg_ext, reg_access_switch); } /************************************ * Function: reg_access_ptys ************************************/ reg_access_status_t reg_access_ptys(mfile* mf, reg_access_method_t method, struct reg_access_hca_ptys_reg_ext* ptys) { REG_ACCCESS(mf, method, REG_ID_PTYS, ptys, ptys_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mcia ************************************/ reg_access_status_t reg_access_mcia(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcia_ext* mcia) { REG_ACCCESS(mf, method, REG_ID_MCIA, mcia, mcia_ext, reg_access_hca); } /************************************ * Function: reg_access_mtmp ************************************/ reg_access_status_t reg_access_mtmp(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtmp_ext* mtmp) { REG_ACCCESS(mf, method, REG_ID_MTMP, mtmp, mtmp_ext, reg_access_hca); } /************************************ * Function: reg_access_mtcap ************************************/ reg_access_status_t reg_access_mtcap(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtcap_ext* mtcap) { REG_ACCCESS(mf, method, REG_ID_MTCAP, mtcap, mtcap_ext, reg_access_hca); } /************************************ * Function: reg_access_pmlp ************************************/ reg_access_status_t reg_access_pmlp(mfile* mf, reg_access_method_t method, struct reg_access_hca_pmlp_reg_ext* pmlp) { REG_ACCCESS(mf, method, REG_ID_PMLP, pmlp, pmlp_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mnvgc ************************************/ reg_access_status_t reg_access_mnvgc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvgc_reg_ext* mnvgc) { if (method != REG_ACCESS_METHOD_GET) { // this register supports only get method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCCESS(mf, method, REG_ID_MNVGC, mnvgc, mnvgc_reg_ext, reg_access_hca); } reg_access_status_t reg_access_mnvdi(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvdi_reg_ext* mnvdi) { if (method != REG_ACCESS_METHOD_SET) { // this register supports only set method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCCESS(mf, method, REG_ID_MNVDI, mnvdi, mnvdi_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_nvdia ************************************/ reg_access_status_t reg_access_mnvia(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvia_reg_ext* mnvia) { if (method != REG_ACCESS_METHOD_SET) { // this register supports only set method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCCESS(mf, method, REG_ID_MNVIA, mnvia, mnvia_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mnvqc ************************************/ reg_access_status_t reg_access_mnvqc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvqc_reg_ext* mnvqc) { if (method != REG_ACCESS_METHOD_GET) { // this register supports only get method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCCESS(mf, method, REG_ID_MNVQC, mnvqc, mnvqc_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mnvgn ************************************/ reg_access_status_t reg_access_mnvgn(mfile* mf, reg_access_method_t method, struct tools_open_mnvgn* mnvgn, int* status) { int data_size = tools_open_mnvgn_size(); if (method != REG_ACCESS_METHOD_GET) { // this register supports only get method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCESS_GENERIC_VAR_WITH_STATUS(mf, method, REG_ID_MNVGN, mnvgn, mnvgn, data_size, data_size, data_size, tools_open_mnvgn_pack, tools_open_mnvgn_unpack, tools_open_mnvgn_size, tools_open_mnvgn_print, status, 0); if (rc || *status) { return (reg_access_status_t)rc; } return ME_OK; } /************************************ * Function: reg_access_mgnle ************************************/ reg_access_status_t reg_access_mgnle(mfile* mf, reg_access_method_t method, struct tools_open_mgnle* mgnle, int* status) { int data_size = tools_open_mgnle_size(); if (method != REG_ACCESS_METHOD_GET) { // this register supports only get method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCESS_GENERIC_VAR_WITH_STATUS(mf, method, REG_ID_MGNLE, mgnle, mgnle, data_size, data_size, data_size, tools_open_mgnle_pack, tools_open_mgnle_unpack, tools_open_mgnle_size, tools_open_mgnle_print, status, 0); if (rc || *status) { return (reg_access_status_t)rc; } return ME_OK; } /************************************ * Function: reg_access_mmdio ************************************/ reg_access_status_t reg_access_mmdio(mfile* mf, reg_access_method_t method, struct reg_access_hca_mmdio_ext* mmdio) { if (method != REG_ACCESS_METHOD_SET) { // this register supports only set method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCCESS(mf, method, REG_ID_MMDIO, mmdio, mmdio_ext, reg_access_hca); } //================================================================================================================================= /************************************ * * Function: reg_access_resource_dump * ************************************/ reg_access_status_t reg_access_res_dump(mfile* mf, reg_access_method_t method, struct reg_access_hca_resource_dump_ext* resource_dump) { char* path_env = getenv("DUMP_DEBUG"); if (path_env != NULL) { reg_access_hca_resource_dump_ext_dump(resource_dump, stdout); } REG_ACCCESS(mf, method, REG_ID_RES_DUMP, resource_dump, resource_dump_ext, reg_access_hca); } //================================================================================================================================= reg_access_status_t reg_access_mnvda(mfile* mf, reg_access_method_t method, struct tools_open_mnvda* mnvda) { // reg_size is in bytes u_int32_t reg_size = mnvda->nv_hdr.length + tools_open_nv_hdr_fifth_gen_size(); u_int32_t r_size_reg = reg_size; u_int32_t w_size_reg = reg_size; if (method == REG_ACCESS_METHOD_GET) { w_size_reg -= mnvda->nv_hdr.length; } else { r_size_reg -= mnvda->nv_hdr.length; } REG_ACCCESS_VAR(mf, method, REG_ID_MNVDA, mnvda, mnvda, reg_size, r_size_reg, w_size_reg, tools_open); } /************************************ * Function: reg_access_mgir ************************************/ reg_access_status_t reg_access_mgir(mfile* mf, reg_access_method_t method, struct reg_access_hca_mgir_ext* mgir) { if (!mf) { return ME_UNSUPPORTED_DEVICE; } else if (mf->tp == MST_MLNXOS) { // Reg max size initialization according to current method. mget_max_reg_size(mf, (maccess_reg_method_t)method); // Get the minimum between max reg size and MGIR size. u_int32_t mgir_register_size = (u_int32_t)mf->acc_reg_params.max_reg_size[method] > (u_int32_t)reg_access_hca_mgir_ext_size() ? (u_int32_t)reg_access_hca_mgir_ext_size() : (u_int32_t)mf->acc_reg_params.max_reg_size[method]; REG_ACCCESS_VAR(mf, method, REG_ID_MGIR, mgir, mgir_ext, mgir_register_size, mgir_register_size, mgir_register_size, reg_access_hca); } else { REG_ACCCESS(mf, method, REG_ID_MGIR, mgir, mgir_ext, reg_access_hca); } } /************************************ * Function: reg_access_mirc ************************************/ reg_access_status_t reg_access_mirc(mfile* mf, reg_access_method_t method, struct tools_open_mirc_reg* mirc) { REG_ACCCESS(mf, method, REG_ID_MIRC, mirc, mirc_reg, tools_open); } /************************************ * Function: reg_access_mfba ************************************/ reg_access_status_t reg_access_mfba(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfba_reg_ext* mfba) { u_int32_t reg_size = mfba->size + REG_ACCESS_MFBA_HEADER_LEN; // the r/w_size_reg is for improved performance for when we send the register // via icmd , since its relatively slow si no need to write the data array from mfba struct to the device when // reading from the device and no need for reading the data array from the device when writing to the device (we // just care about the status) u_int32_t r_size_reg = reg_size; u_int32_t w_size_reg = reg_size; if (method == REG_ACCESS_METHOD_GET) { w_size_reg -= mfba->size; } else { r_size_reg -= mfba->size; } // printf("-D- MFBA: data size: %d, reg_size: %d, r_size_reg: %d, w_size_reg: // %d\n",mfba->size,reg_size,r_size_reg,w_size_reg); REG_ACCCESS_VAR(mf, method, REG_ID_MFBA, mfba, mfba_reg_ext, reg_size, r_size_reg, w_size_reg, reg_access_hca); } /************************************ * Function: reg_access_mcam ************************************/ reg_access_status_t reg_access_mcam(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcam_reg_ext* mcam) { REG_ACCCESS(mf, method, REG_ID_MCAM, mcam, mcam_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mcda ************************************/ reg_access_status_t reg_access_mcda(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcda_reg_ext* mcda) { REG_ACCCESS(mf, method, REG_ID_MCDA, mcda, mcda_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mqis ************************************/ reg_access_status_t reg_access_mqis(mfile* mf, reg_access_method_t method, struct reg_access_hca_mqis_reg_ext* mqis) { REG_ACCCESS(mf, method, REG_ID_MQIS, mqis, mqis_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mtrc_cap ************************************/ reg_access_status_t reg_access_mtrc_cap(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_cap_reg_ext* mtrc_cap) { REG_ACCCESS(mf, method, REG_ID_MTRC_CAP, mtrc_cap, mtrc_cap_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mtrc_conf ************************************/ reg_access_status_t reg_access_mtrc_conf(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_conf_reg_ext* mtrc_conf) { REG_ACCCESS(mf, method, REG_ID_MTRC_CONF, mtrc_conf, mtrc_conf_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mtrc_stdb ************************************/ reg_access_status_t reg_access_mtrc_stdb(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_stdb_reg_ext* mtrc_stdb, int data_array_size) { REG_ACCCESS_VAR_DYNAMIC_ARR(mf, method, REG_ID_MTRC_STDB, mtrc_stdb, mtrc_stdb_reg_ext, reg_access_hca, data_array_size); } reg_access_status_t reg_access_mtrc_stdb_wrapper(mfile* mf, u_int32_t read_size, u_int8_t string_db_index, char* buffer) { int max_num_of_bytes = 704; int iterations = read_size / max_num_of_bytes; int read_bytes = 0; int index = 0; int num_bytes_to_read = max_num_of_bytes; if (read_size % 64 != 0) { return ME_BAD_PARAMS; } for (index = 0; index < iterations + 1; index++) { struct reg_access_hca_mtrc_stdb_reg_ext mtrc_stdb; if (index == iterations) { num_bytes_to_read = read_size % max_num_of_bytes; if (num_bytes_to_read == 0) { break; } } mtrc_stdb.read_size = num_bytes_to_read; mtrc_stdb.string_db_index = string_db_index; mtrc_stdb.start_offset = max_num_of_bytes * index; mtrc_stdb.string_db_data = (u_int32_t*)malloc(num_bytes_to_read); if (!mtrc_stdb.string_db_data) { fprintf(stderr, "Failed to allocate memory\n"); return ME_MEM_ERROR; } memset(mtrc_stdb.string_db_data, 0, num_bytes_to_read); reg_access_status_t rc = reg_access_mtrc_stdb(mf, REG_ACCESS_METHOD_GET, &mtrc_stdb, num_bytes_to_read); if (rc) { free(mtrc_stdb.string_db_data); return rc; } memcpy(&buffer[read_bytes], mtrc_stdb.string_db_data, num_bytes_to_read); free(mtrc_stdb.string_db_data); read_bytes += num_bytes_to_read; } return 0; } /************************************ * Function: reg_access_mtrc_ctrl ************************************/ reg_access_status_t reg_access_mtrc_ctrl(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_ctrl_reg_ext* mtrc_ctrl) { REG_ACCCESS(mf, method, REG_ID_MTRC_CTRL, mtrc_ctrl, mtrc_ctrl_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mcc ************************************/ reg_access_status_t reg_access_mcc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcc_reg_ext* mcc) { REG_ACCCESS(mf, method, REG_ID_MCC, mcc, mcc_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mcqs ************************************/ reg_access_status_t reg_access_mcqs_inner(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcqs_reg_ext* mcqs) { REG_ACCCESS(mf, method, REG_ID_MCQS, mcqs, mcqs_reg_ext, reg_access_hca); } reg_access_status_t reg_access_mcqs(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcqs_reg_ext* mcqs) { reg_access_status_t ret = reg_access_mcqs_inner(mf, method, mcqs); char* path_env = getenv("MCQS_DEBUG"); if (path_env != NULL) { printf("-I- MCQS: Recieved data --\n"); reg_access_hca_mcqs_reg_ext_dump(mcqs, stdout); } return ret; } /************************************ * Function: reg_access_mcqi ************************************/ reg_access_status_t reg_access_mcqi_inner(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcqi_reg_ext* mcqi) { REG_ACCCESS(mf, method, REG_ID_MCQI, mcqi, mcqi_reg_ext, reg_access_hca); } reg_access_status_t reg_access_mcqi(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcqi_reg_ext* mcqi) { reg_access_status_t ret = reg_access_mcqi_inner(mf, method, mcqi); char* path_env = getenv("MCQI_DEBUG"); if (path_env != NULL) { printf("-I- MCQI: Recieved data --\n"); reg_access_hca_mcqi_reg_ext_dump(mcqi, stdout); } return ret; } /************************************ * Function: reg_access_mfbe ************************************/ reg_access_status_t reg_access_mfbe(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfbe_reg_ext* mfbe) { REG_ACCCESS(mf, method, REG_ID_MFBE, mfbe, mfbe_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mfpa ************************************/ reg_access_status_t reg_access_mfpa(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfpa_reg_ext* mfpa) { REG_ACCCESS(mf, method, REG_ID_MFPA, mfpa, mfpa_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mfsv ************************************/ reg_access_status_t reg_access_mfsv(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfsv_reg_ext* mfsv) { REG_ACCCESS(mf, method, REG_ID_MFSV, mfsv, mfsv_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mfrl ************************************/ reg_access_status_t reg_access_mfrl(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfrl_reg_ext* mfrl) { REG_ACCCESS(mf, method, REG_ID_MFRL, mfrl, mfrl_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mpcir ************************************/ reg_access_status_t reg_access_mpcir(mfile* mf, reg_access_method_t method, struct reg_access_hca_mpcir_ext* mpcir) { REG_ACCCESS(mf, method, REG_ID_MPCIR, mpcir, mpcir_ext, reg_access_hca); } /************************************ * Function: reg_access_mfai ************************************/ reg_access_status_t reg_access_mfai(mfile* mf, reg_access_method_t method, struct cibfw_register_mfai* mfai) { if (method != REG_ACCESS_METHOD_SET) { // this register supports only set method return ME_REG_ACCESS_BAD_METHOD; } REG_ACCCESS(mf, method, REG_ID_MFAI, mfai, mfai, cibfw_register); } /************************************ * Function: reg_access_mvts ************************************/ reg_access_status_t reg_access_mvts(mfile* mf, reg_access_method_t method, struct tools_open_mvts* mvts) { REG_ACCCESS(mf, method, REG_ID_MVTS, mvts, mvts, tools_open); } /************************************ * Function: reg_access_mfmc ************************************/ reg_access_status_t reg_access_mfmc(mfile* mf, reg_access_method_t method, struct reg_access_switch_mfmc_reg_ext* mfmc) { REG_ACCCESS(mf, method, REG_ID_MFMC, mfmc, mfmc_reg_ext, reg_access_switch); } /************************************ * Function: reg_access_mfmc ************************************/ reg_access_status_t reg_access_mcdd(mfile* mf, reg_access_method_t method, struct tools_open_mcdd_reg* mcdd) { REG_ACCCESS(mf, method, REG_ID_MCDD, mcdd, mcdd_reg, tools_open); } /************************************ * Function: reg_access_mfpa_new ************************************/ reg_access_status_t reg_access_mfpa_new(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfpa_reg_ext* mfpa) { REG_ACCCESS(mf, method, REG_ID_MFPA, mfpa, mfpa_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_secure_host ************************************/ reg_access_status_t reg_access_secure_host(mfile* mf, reg_access_method_t method, struct tools_open_mlock* mlock) { REG_ACCCESS(mf, method, REG_ID_MLCOK, mlock, mlock, tools_open); } /************************************ * Function: reg_access_err2str ************************************/ const char* reg_access_err2str(reg_access_status_t status) { return m_err2str(status); } /************************************ * Function: reg_access_mtcq ************************************/ reg_access_status_t reg_access_mtcq(mfile* mf, reg_access_method_t method, struct reg_access_switch_mtcq_reg_ext* mtcq) { REG_ACCCESS(mf, method, REG_ID_MTCQ, mtcq, mtcq_reg_ext, reg_access_switch); } /************************************ * Function: reg_access_mdsr ************************************/ reg_access_status_t reg_access_mdsr(mfile* mf, reg_access_method_t method, struct reg_access_switch_mdsr_reg_ext* mdsr) { REG_ACCCESS(mf, method, REG_ID_MDSR, mdsr, mdsr_reg_ext, reg_access_switch); } /************************************ * Function: reg_access_mkdc ************************************/ reg_access_status_t reg_access_mkdc(mfile* mf, reg_access_method_t method, struct reg_access_switch_mkdc_reg_ext* mkdc) { REG_ACCCESS(mf, method, REG_ID_MKDC, mkdc, mkdc_reg_ext, reg_access_switch); } /************************************ * Function: reg_access_nic_cap_ext ************************************/ reg_access_status_t reg_access_nic_cap_ext(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_cap_ext_reg_ext* nic_cap_ext) { REG_ACCCESS(mf, method, REG_ID_NIC_CAP_EXT, nic_cap_ext, nic_cap_ext_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_nic_dpa_eug ************************************/ reg_access_status_t reg_access_nic_dpa_eug(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_eug_reg_ext* nic_dpa_eug) { REG_ACCCESS(mf, method, REG_ID_NIC_DPA_EUG, nic_dpa_eug, nic_dpa_eug_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_nic_dpa_perf_ctrl ************************************/ reg_access_status_t reg_access_nic_dpa_perf_ctrl(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext* nic_dpa_perf_ctrl) { REG_ACCCESS(mf, method, REG_ID_NIC_DPA_PERF_CTRL, nic_dpa_perf_ctrl, nic_dpa_perf_ctrl_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mpegc ************************************/ reg_access_status_t reg_access_mpegc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mpegc_reg_ext* mpegc) { /* reg_access_hca_mpegc_reg_dump(mpegc, stdout)s; */ REG_ACCCESS(mf, method, REG_ID_MPEGC, mpegc, mpegc_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_nic_dpa_eu_partition ************************************/ reg_access_status_t reg_access_nic_dpa_eu_partition(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_eu_partition_reg_ext* nic_dpa_eu_partition) { REG_ACCCESS(mf, method, REG_ID_NIC_DPA_EU_PARTITION, nic_dpa_eu_partition, nic_dpa_eu_partition_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mrsr ************************************/ reg_access_status_t reg_access_mrsr(mfile* mf, reg_access_method_t method, struct reg_access_switch_mrsr_ext* mrsr) { REG_ACCCESS(mf, method, REG_ID_MRSR, mrsr, mrsr_ext, reg_access_switch); } /************************************ * Function: reg_access_dtor ************************************/ reg_access_status_t reg_access_dtor(mfile* mf, reg_access_method_t method, struct reg_access_hca_dtor_reg_ext* dtor) { REG_ACCCESS(mf, method, REG_ID_DTOR, dtor, dtor_reg_ext, reg_access_hca); } /************************************ * Function: reg_access_mrsi ************************************/ reg_access_status_t reg_access_mrsi(mfile* mf, reg_access_method_t method, struct reg_access_hca_mrsi_ext* mrsi) { REG_ACCCESS(mf, method, REG_ID_MRSI, mrsi, mrsi_ext, reg_access_hca); }mstflint-4.26.0/reg_access/regaccess.py0000644000175000017500000006557114522641732020330 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import os import sys import platform import ctypes import mtcr import struct from ctypes import memset from regaccess_hca_ext_structs import * from regaccess_switch_ext_structs import * def ones(n): return (1 << n) - 1 def extractField(val, start, size): return (val & (ones(size) << start)) >> start def insertField(val1, start1, val2, start2, size): return val1 & ~(ones(size) << start1) | (extractField(val2, start2, size) << start1) class RegAccException(Exception): pass # Constants REG_ACCESS_METHOD_GET = 1 REG_ACCESS_METHOD_SET = 2 ########################## REG_ACCESS = None try: from ctypes import * if platform.system() == "Windows" or os.name == "nt": try: REG_ACCESS = CDLL("libreg_access-1.dll") except BaseException: REG_ACCESS = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "libreg_access-1.dll")) else: try: REG_ACCESS = CDLL("rreg_access.so") except BaseException: REG_ACCESS = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "rreg_access.so")) except Exception as exp: raise RegAccException("Failed to load shared library rreg_access.so/libreg_access-1.dll: %s" % exp) if REG_ACCESS: class ownershipEnum: REG_ACCESS_OWNERSHIP_TAKEN_SUCCESSFULLY = 0 REG_ACCESS_FAILED_TO_AQUIRE_OWNERSHIP = 1 REG_ACCESS_NO_OWNERSHIP_REQUIRED = 2 class RegAccess: GET = REG_ACCESS_METHOD_GET SET = REG_ACCESS_METHOD_SET ########################## def __init__(self, dev=None, pci_device=None): self._mstDev = dev if pci_device is not None: self._mstDev = mtcr.MstDevice(pci_device) self._reg_access_mcam = REG_ACCESS.reg_access_mcam self._reg_access_mtrc_cap = REG_ACCESS.reg_access_mtrc_cap self._reg_access_mtrc_stdb_warpper = REG_ACCESS.reg_access_mtrc_stdb_wrapper self._reg_access_mgir = REG_ACCESS.reg_access_mgir self._reg_access_mfrl = REG_ACCESS.reg_access_mfrl self._reg_access_pcnr = REG_ACCESS.reg_access_pcnr self._reg_access_mpcir = REG_ACCESS.reg_access_mpcir self._reg_access_res_dump = REG_ACCESS.reg_access_res_dump self._reg_access_debug_cap = REG_ACCESS.reg_access_debug_cap self._reg_access_mddq = REG_ACCESS.reg_access_mddq self._reg_access_mdsr = REG_ACCESS.reg_access_mdsr self._reg_access_mteim = REG_ACCESS.reg_access_mteim self._reg_access_nic_dpa_eug = REG_ACCESS.reg_access_nic_dpa_eug self._reg_access_nic_cap_ext = REG_ACCESS.reg_access_nic_cap_ext self._reg_access_nic_dpa_perf_ctrl = REG_ACCESS.reg_access_nic_dpa_perf_ctrl self._reg_access_mrsr = REG_ACCESS.reg_access_mrsr self._reg_access_dtor = REG_ACCESS.reg_access_dtor self._reg_access_mrsi = REG_ACCESS.reg_access_mrsi def _err2str(self, rc): err2str = REG_ACCESS.reg_access_err2str err2str.restype = c_char_p return err2str(rc).decode("utf-8") ########################## def close(self): self._mstDev = None ########################## def __del__(self): if self._mstDev: self.close() def isCsTokenApplied(self): mdsrRegP = pointer(MDSR_REG_EXT()) mdsrRegP.contents.type_of_token == 0 # index for CS token (changed on PRM 0.58) rc = self._reg_access_mdsr(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mdsrRegP) if rc: return False # if mdsr not support (or other fail), assume no token return (mdsrRegP.contents.status == 2) # session active - tokem is applied def sendMtrcCapTakeOwnership(self): mcamRegP = pointer(MCAM_REG_EXT()) rc = self._reg_access_mcam(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mcamRegP) if rc: # in case of failure to get capability assume taking ownership is not required, same as in mlxtrace. return ownershipEnum.REG_ACCESS_NO_OWNERSHIP_REQUIRED mtcrCapSupported = extractField(mcamRegP.contents.mng_access_reg_cap_mask[3 - 2], 0, 1) if mtcrCapSupported == 0: return ownershipEnum.REG_ACCESS_NO_OWNERSHIP_REQUIRED mtrcaCapRegisterPquery = pointer(MTRC_CAP_REG_EXT()) rc = self._reg_access_mtrc_cap(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mtrcaCapRegisterPquery) if rc: raise RegAccException("Failed to send Register MTRC (case 1): %s (%d)" % (self._err2str(rc), rc)) if mtrcaCapRegisterPquery.contents.trace_owner == 1: return 0 # already have ownership from last run maxIterations = 30 mtrcaCapRegisterP = pointer(MTRC_CAP_REG_EXT()) iter = 0 while iter < maxIterations: mtrcaCapRegisterP.contents.trace_owner = c_uint8(1) rc = self._reg_access_mtrc_cap(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_SET), mtrcaCapRegisterP) if rc: raise RegAccException("Failed to send Register MTRC (case 2): %s (%d)" % (self._err2str(rc), rc)) mtrcaCapRegisterP.contents.trace_owner = c_uint8(0) mtrcaCapRegisterPquery = pointer(MTRC_CAP_REG_EXT()) rc = self._reg_access_mtrc_cap(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mtrcaCapRegisterPquery) if rc: raise RegAccException("Failed to send Register MTRC (case 3): %s (%d)" % (self._err2str(rc), rc)) if mtrcaCapRegisterPquery.contents.trace_owner == 1: return 0 iter += 1 def sendMtrcCapReleaseOwnership(self): mcamRegP = pointer(MCAM_REG_EXT()) rc = self._reg_access_mcam(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mcamRegP) if rc: # in case of failure to get capability assume taking ownership is not required, same as in mlxtrace. return ownershipEnum.REG_ACCESS_NO_OWNERSHIP_REQUIRED mtcrCapSupported = extractField(mcamRegP.contents.mng_access_reg_cap_mask[3 - 2], 0, 1) if mtcrCapSupported == 0: return ownershipEnum.REG_ACCESS_NO_OWNERSHIP_REQUIRED mtrcaCapRegisterP = pointer(MTRC_CAP_REG_EXT()) mtrcaCapRegisterP.contents.trace_owner = c_uint8(0) self._reg_access_mtrc_cap(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_SET), mtrcaCapRegisterP) return 0 def sendResDump(self, segment_type, seq_num, inline_mode, more_dump, vhca_id, vhca_id_valid, index1, index2, num_of_obj2, num_of_obj1, device_opaque, mkey, size, address): resDumpRegP = pointer(RESOURCE_DUMP_EXT()) resDumpRegP.contents.segment_type = c_uint16(segment_type) resDumpRegP.contents.seq_num = c_uint8(seq_num) resDumpRegP.contents.inline_dump = c_uint8(inline_mode) resDumpRegP.contents.more_dump = c_uint8(more_dump) resDumpRegP.contents.vhca_id = c_uint16(vhca_id) resDumpRegP.contents.vhca_id_valid = c_uint8(vhca_id_valid) resDumpRegP.contents.index1 = c_uint32(index1) resDumpRegP.contents.index2 = c_uint32(index2) resDumpRegP.contents.num_of_obj2 = c_uint16(num_of_obj2) resDumpRegP.contents.num_of_obj1 = c_uint16(num_of_obj1) resDumpRegP.contents.device_opaque = c_uint64(device_opaque) resDumpRegP.contents.mkey = c_uint32(mkey) resDumpRegP.contents.size = c_uint32(size) resDumpRegP.contents.address = c_uint64(address) rc = self._reg_access_res_dump(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), resDumpRegP) if rc: raise RegAccException("Failed to send Register RESOURCE DUMP with rc: %d" % rc) # return (resDumpRegP.contents.segment_type, resDumpRegP.contents.seq_num, resDumpRegP.contents.inline_data[0]) return ({"segment_type": resDumpRegP.contents.segment_type, "seq_num": resDumpRegP.contents.seq_num, "inline_dump": resDumpRegP.contents.inline_dump, "more_dump": resDumpRegP.contents.more_dump, "vhca_id": resDumpRegP.contents.vhca_id, "vhca_id_valid": resDumpRegP.contents.vhca_id_valid, "index1": resDumpRegP.contents.index1, "index2": resDumpRegP.contents.index2, "num_of_obj2": resDumpRegP.contents.num_of_obj2, "num_of_obj1": resDumpRegP.contents.num_of_obj1, "device_opaque": resDumpRegP.contents.device_opaque, "mkey": resDumpRegP.contents.mkey, "size": resDumpRegP.contents.size, "address": resDumpRegP.contents.address, "inline_data": resDumpRegP.contents.inline_data}) def sendDebugCap(self): debugCapRegP = pointer(DEBUG_CAP()) debugCapRegP.contents.log_max_samples = c_uint8(0) debugCapRegP.contents.resource_dump = c_uint8(0) debugCapRegP.contents.log_cr_dump_to_mem_size = c_uint8(0) debugCapRegP.contents.core_dump_qp = c_uint8(0) debugCapRegP.contents.core_dump_general = c_uint8(0) debugCapRegP.contents.log_min_sample_period = c_uint8(0) debugCapRegP.contents.diag_counter_tracer_dump = c_uint8(0) debugCapRegP.contents.health_mon_rx_activity = c_uint8(0) debugCapRegP.contents.repetitive = c_uint8(0) debugCapRegP.contents.single = c_uint8(0) tmp = pointer(DIAGNOSTIC_CNTR_LAYOUT()) tmp.contents.counter_id = c_uint16(0) tmp.contents.sync = c_uint8(0) debugCapRegP.contents.diagnostic_counter = pointer(DIAGNOSTIC_CNTR_ST_ARR()) rc = self._reg_access_debug_cap(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), debugCapRegP) if rc: raise RegAccException("Failed to send Register DEBUG CAP with rc: %d" % rc) return debugCapRegP.contents.resource_dump def sendPcnr(self, tuning_override, local_port): # Requirments : new FW version + burn with allow_pcnr pcnrRegisterP = pointer(PCNR_REG_EXT()) pcnrRegisterP.contents.tuning_override = c_uint8(tuning_override) pcnrRegisterP.contents.local_port = c_uint8(local_port) rc = self._reg_access_pcnr(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_SET), pcnrRegisterP) if rc: raise RegAccException("Failed to send Register PCNR: %s (%d)" % (self._err2str(rc), rc)) def sendMpcir(self, command): # 2 operations (both executed with 'set' register): # (1) Start perperations for FW upgrade # (2) Query operation #1 (idle/done) CMD_START = 1 CMD_GET_STATUS = 3 if command == "start": command = CMD_START elif command == "status": command = CMD_GET_STATUS else: raise ValueError("command {0} is illegal".format(command)) mpcirRegisterP = pointer(MPCIR_EXT(ports=command)) rc = self._reg_access_mpcir(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mpcirRegisterP) if rc != 0: raise RegAccException("Failed to send Command Register MPCIR") if command == CMD_GET_STATUS: return mpcirRegisterP.contents.ports_stat def sendMRSR(self, command): mrsrRegisterP = pointer(MRSR_EXT(command=command)) rc = self._reg_access_mrsr(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_SET), mrsrRegisterP) if rc != 0: raise RegAccException("Failed to send Command Register MRSR") def getDTOR(self): dtorRegisterP = pointer(DTOR_REG_EXT()) rc = self._reg_access_dtor(self._mstDev.mf, REG_ACCESS_METHOD_GET, dtorRegisterP) if rc: raise RegAccException("Failed to send Register DTOR") return { "DRIVER_UNLOAD_AND_RESET_TO": dtorRegisterP.contents.DRIVER_UNLOAD_AND_RESET_TO, "PCI_SYNC_UPDATE_TO": dtorRegisterP.contents.PCI_SYNC_UPDATE_TO, "PCIE_TOGGLE_TO": dtorRegisterP.contents.PCIE_TOGGLE_TO } def getMRSI(self): mrsiRegisterP = pointer(MRSI_EXT()) rc = self._reg_access_mrsi(self._mstDev.mf, REG_ACCESS_METHOD_GET, mrsiRegisterP) if rc: raise RegAccException("Failed to send Register MRSI") return { "reset_reason": mrsiRegisterP.contents.reset_reason, "crts": mrsiRegisterP.contents.crts, # "ecos": mrsiRegisterP.contents.ecos # will be uncommented when regaccess_structs.py will be updated. } ########################## def sendMFRL(self, method, resetLevel=None, reset_type=None, reset_sync=None): mfrlRegisterP = pointer(MFRL_REG_EXT()) if method == REG_ACCESS_METHOD_SET: if resetLevel is None or reset_type is None or reset_sync is None: raise RegAccException("Failed to sendMFRL (reset level/type/sync is None for SET command)") mfrlRegisterP.contents.reset_trigger = c_uint8(resetLevel) mfrlRegisterP.contents.rst_type_sel = c_uint8(reset_type) mfrlRegisterP.contents.pci_sync_for_fw_update_start = c_uint8(reset_sync) c_method = c_uint(method) rc = self._reg_access_mfrl(self._mstDev.mf, c_method, mfrlRegisterP) if rc: raise RegAccException("Failed to send Register MFRL: %s (%d)" % (self._err2str(rc), rc)) if method == REG_ACCESS_METHOD_GET: return mfrlRegisterP.contents.reset_trigger, mfrlRegisterP.contents.reset_type, mfrlRegisterP.contents.pci_rescan_required, mfrlRegisterP.contents.reset_state ########################## def getMCAM(self, access_reg_group=0): mcamRegP = pointer(MCAM_REG_EXT()) mcamRegP.contents.access_reg_group = c_uint8(access_reg_group) rc = self._reg_access_mcam(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mcamRegP) if rc: raise RegAccException("Failed to send Register MCAM (rc: {0})".format(rc)) return { "access_reg_group": mcamRegP.contents.access_reg_group, "feature_group": mcamRegP.contents.feature_group, "mng_access_reg_cap_mask": mcamRegP.contents.mng_access_reg_cap_mask, "mng_feature_cap_mask": mcamRegP.contents.mng_feature_cap_mask } ########################## def getFwVersion(self): mgirRegisterP = pointer(MGIR_EXT()) rc = self._reg_access_mgir(self._mstDev.mf, REG_ACCESS_METHOD_GET, mgirRegisterP) if rc: info_ver = "" else: # get dev branch tag info_ver = "".join(chr(val) for val in mgirRegisterP.contents.dev_info.dev_branch_tag if val != 0) # if dev branch is empty, try to get the primary version if info_ver == "": if mgirRegisterP.contents.fw_info.major != 0: info_ver = "{0}.{1}.{2}".format(mgirRegisterP.contents.fw_info.major, mgirRegisterP.contents.fw_info.minor, mgirRegisterP.contents.fw_info.sub_minor) elif mgirRegisterP.contents.fw_info.extended_major != 0: info_ver = "{0}.{1}.{2}".format(mgirRegisterP.contents.fw_info.extended_major, mgirRegisterP.contents.fw_info.extended_minor, mgirRegisterP.contents.fw_info.extended_sub_minor) return info_ver def getFWUptime(self): mgirRegisterP = pointer(MGIR_EXT()) rc = self._reg_access_mgir(self._mstDev.mf, REG_ACCESS_METHOD_GET, mgirRegisterP) if rc: raise RegAccException("Failed to send Register MGIR (case 1): %s (%d)" % (self._err2str(rc), rc)) return mgirRegisterP.contents.hw_info.uptime def getMtrcCap(self): mcamRegP = pointer(MCAM_REG_EXT()) rc = self._reg_access_mcam(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mcamRegP) if rc: # in case of failure to get capability assume taking ownership is not required, same as in mlxtrace. return False mtcrCapSupported = extractField(mcamRegP.contents.mng_access_reg_cap_mask[3 - 2], 0, 1) if mtcrCapSupported == 0: return False mtrcCapRegisterP = pointer(MTRC_CAP_REG_EXT()) rc = self._reg_access_mtrc_cap(self._mstDev.mf, REG_ACCESS_METHOD_GET, mtrcCapRegisterP) if rc: raise RegAccException("Failed to send Register Mtrc_Cap (case 1): %s (%d)" % (self._err2str(rc), rc)) string_db_parameters_list = [] for i in range(0, 8): string_db_parameters_list.append( { "string_db_base_address": mtrcCapRegisterP.contents.string_db_param[i].string_db_base_address, "string_db_size": mtrcCapRegisterP.contents.string_db_param[i].string_db_size } ) return { "num_string_db": mtrcCapRegisterP.contents.num_string_db, "trc_ver": mtrcCapRegisterP.contents.trc_ver, "trace_to_memory": mtrcCapRegisterP.contents.trace_to_memory, "trace_owner": mtrcCapRegisterP.contents.trace_owner, "num_string_trace": mtrcCapRegisterP.contents.num_string_trace, "first_string_trace": mtrcCapRegisterP.contents.first_string_trace, "log_max_trace_buffer_size": mtrcCapRegisterP.contents.log_max_trace_buffer_size, "string_db_param": string_db_parameters_list, } def isMtrcStdbSupported(self): mcamRegP = pointer(MCAM_REG_EXT()) rc = self._reg_access_mcam(self._mstDev.mf, c_uint(REG_ACCESS_METHOD_GET), mcamRegP) if rc: # in case of failure to get capability assume taking ownership is not required, same as in mlxtrace. return False mtcrStdbSupported = extractField(mcamRegP.contents.mng_access_reg_cap_mask[3 - 2], 2, 1) if mtcrStdbSupported == 0: return False return True def getMtrcStdbStringDbData(self, string_db_index, read_size): c_string_db_index = c_uint8(string_db_index) c_read_size = c_uint32(read_size) byte_buffer = (c_uint8 * read_size)() rc = self._reg_access_mtrc_stdb_warpper(self._mstDev.mf, c_read_size, c_string_db_index, byte_buffer) if rc: raise RegAccException("Failed to send Register Mtrc_Stdb (case 1): {}".format(rc)) uint32_buffer = ctypes.cast(byte_buffer, ctypes.POINTER(ctypes.c_uint32)) data = b"".join([struct.pack('>I', uint32_buffer[i]) for i in range(read_size // 4)]) return data def getManufacturingBaseMac(self): mgirRegisterP = pointer(MGIR_EXT()) rc = self._reg_access_mgir(self._mstDev.mf, REG_ACCESS_METHOD_GET, mgirRegisterP) if rc: raise RegAccException("Failed to send Register MGIR (case 2): %s (%d)" % (self._err2str(rc), rc)) lsp = mgirRegisterP.contents.hw_info.manufacturing_base_mac_31_0 msp = mgirRegisterP.contents.hw_info.manufacturing_base_mac_47_32 return msp * (2**32) + lsp def getSecureFWStatus(self): """ Returns True if the FW is secured, False otherwise. """ mgirRegisterP = pointer(MGIR_EXT()) rc = self._reg_access_mgir(self._mstDev.mf, REG_ACCESS_METHOD_GET, mgirRegisterP) if rc: raise RegAccException("Failed to send Register MGIR (case 3): %s (%d)" % (self._err2str(rc), rc)) result = mgirRegisterP.contents.fw_info.secured result = True if result else False return result def getPSID(self): mgirRegisterP = pointer(MGIR_EXT()) rc = self._reg_access_mgir(self._mstDev.mf, REG_ACCESS_METHOD_GET, mgirRegisterP) if rc: raise RegAccException("Failed to send Register MGIR (case 4): %s (%d)" % (self._err2str(rc), rc)) psid = "".join(chr(val) for val in mgirRegisterP.contents.fw_info.psid if val != 0) return psid def sendMddq(self, query_type, request_message_sequence, slot_index, query_index=0): mddqRegisterP = pointer(MDDQ_EXT()) mddqRegisterP.contents.query_type = c_uint8(query_type) mddqRegisterP.contents.slot_index = c_uint8(slot_index) mddqRegisterP.contents.request_message_sequence = c_uint8(request_message_sequence) mddqRegisterP.contents.query_index = c_uint8(query_index) rc = self._reg_access_mddq(self._mstDev.mf, REG_ACCESS_METHOD_GET, mddqRegisterP) if rc: raise RegAccException("Failed to send Register MDDQ: %s (%d)" % (self._err2str(rc), rc)) data = {} if query_type == 1: data.update({ "active": mddqRegisterP.contents.data.slot_info_ext.active, "lc_ready": mddqRegisterP.contents.data.slot_info_ext.lc_ready, "sr_valid": mddqRegisterP.contents.data.slot_info_ext.sr_valid, "provisioned": mddqRegisterP.contents.data.slot_info_ext.provisioned, "ini_file_version": mddqRegisterP.contents.data.slot_info_ext.ini_file_version, "hw_revision": mddqRegisterP.contents.data.slot_info_ext.hw_revision, "card_type": mddqRegisterP.contents.data.slot_info_ext.card_type }) elif query_type == 2: device_type_name = "".join(chr(val) for val in mddqRegisterP.contents.data.device_info_ext.device_type_name if val != 0) data.update({ "device_index": mddqRegisterP.contents.data.device_info_ext.device_index, "flash_id": mddqRegisterP.contents.data.device_info_ext.flash_id, "flash_owner": mddqRegisterP.contents.data.device_info_ext.flash_owner, "uses_flash": mddqRegisterP.contents.data.device_info_ext.uses_flash, "device_type": mddqRegisterP.contents.data.device_info_ext.device_type, "fw_major": mddqRegisterP.contents.data.device_info_ext.fw_major, "fw_sub_minor": mddqRegisterP.contents.data.device_info_ext.fw_sub_minor, "fw_minor": mddqRegisterP.contents.data.device_info_ext.fw_minor, "max_cmd_write_size_supp": mddqRegisterP.contents.data.device_info_ext.max_cmd_write_size_supp, "max_cmd_read_size_supp": mddqRegisterP.contents.data.device_info_ext.max_cmd_read_size_supp, "device_type_name": device_type_name }) return ({"slot_index": mddqRegisterP.contents.slot_index, "query_type": mddqRegisterP.contents.query_type, "request_message_sequence": mddqRegisterP.contents.request_message_sequence, "response_message_sequence": mddqRegisterP.contents.response_message_sequence, "data_valid": mddqRegisterP.contents.data_valid}, data) def sendMTEIM(self): mteimRegisterP = pointer(MTEIM_REG_EXT()) rc = self._reg_access_mteim(self._mstDev.mf, REG_ACCESS_METHOD_GET, mteimRegisterP) if rc: return None # done raise error, could be old FW / Device #raise RegAccException("Failed to send Register MTEIM: %s (%d)" % (self._err2str(rc), rc)) return ({"cap_core_tile": mteimRegisterP.contents.cap_core_tile, "cap_core_main": mteimRegisterP.contents.cap_core_main, "cap_core_dpa": mteimRegisterP.contents.cap_core_dpa, "cap_num_of_tile": mteimRegisterP.contents.cap_num_of_tile, "type_core_tile": mteimRegisterP.contents.type_core_tile, "type_core_main": mteimRegisterP.contents.type_core_main, "type_core_dpa": mteimRegisterP.contents.type_core_dpa, "is_phy_uc_supported": mteimRegisterP.contents.is_phy_uc_supported, "is_dwsn_msb_supported": mteimRegisterP.contents.is_dwsn_msb_supported, "first_dpa_core_event_id": mteimRegisterP.contents.first_dpa_core_event_id, "first_main_core_event_id": mteimRegisterP.contents.first_main_core_event_id, "first_tile_core_event_id": mteimRegisterP.contents.first_tile_core_event_id }) else: raise RegAccException("Failed to load rreg_access.so/libreg_access.dll") #################################################################################### mstflint-4.26.0/reg_access/reg_access_macros.h0000644000175000017500000004241014522641732021615 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifdef _ENABLE_DEBUG_ #define DEBUG_PRINT_SEND(data_struct, struct_name, method, print_func) \ printf("-I- Data Sent (Method: %s):\n", method == REG_ACCESS_METHOD_SET ? "SET" : "GET"); \ print_func(data_struct, stdout, 1) #define DEBUG_PRINT_RECEIVE(data_struct, struct_name, method, print_func) \ printf("-I- Data Received (Mehtod: %s):\n", method == REG_ACCESS_METHOD_SET ? "SET" : "GET"); \ print_func(data_struct, stdout, 1) #else #define DEBUG_PRINT_SEND(data_struct, struct_name, method, print_func) #define DEBUG_PRINT_RECEIVE(data_struct, struct_name, method, print_func) #endif // register access for variable size registers (like mfba) #define REG_ACCESS_GENERIC_VAR_WITH_STATUS(mf, method, reg_id, data_struct, struct_name, reg_size, r_reg_size, \ w_reg_size, pack_func, unpack_func, size_func, print_func, status, \ is_dynamic_arr) \ int rc; \ int max_data_size = size_func(); \ u_int8_t* data = NULL; \ if (is_dynamic_arr) \ { \ max_data_size = reg_size; \ } \ if (method != REG_ACCESS_METHOD_GET && method != REG_ACCESS_METHOD_SET) \ { \ return ME_REG_ACCESS_BAD_METHOD; \ } \ data = (u_int8_t*)malloc(sizeof(u_int8_t) * max_data_size); \ if (!data) \ { \ return ME_MEM_ERROR; \ }; \ memset(data, 0, max_data_size); \ pack_func(data_struct, data); \ DEBUG_PRINT_SEND(data_struct, struct_name, method, print_func); \ rc = maccess_reg(mf, reg_id, (maccess_reg_method_t)method, data, reg_size, r_reg_size, w_reg_size, status); \ if (rc && is_dynamic_arr) \ { \ free(data); \ } \ else \ { \ unpack_func(data_struct, data); \ free(data); \ DEBUG_PRINT_RECEIVE(data_struct, struct_name, method, print_func); \ } \ #define REG_ACCESS_GENERIC_VAR(mf, method, reg_id, data_struct, struct_name, reg_size, r_reg_size, w_reg_size, \ pack_func, unpack_func, size_func, print_func, is_dynamic_arr) \ int status = 0; \ REG_ACCESS_GENERIC_VAR_WITH_STATUS(mf, method, reg_id, data_struct, struct_name, reg_size, r_reg_size, w_reg_size, \ pack_func, unpack_func, size_func, print_func, &status, is_dynamic_arr) \ if (rc || status) \ { \ return (reg_access_status_t)rc; \ } \ return ME_OK /***************************************************/ /* register access for infinite size of arrays with specific size */ /* r_reg_size is how much we want to read from the struct struct_name (fw request), w_reg_size is how much we want to */ /* write to the struct that we are sending for the fw. note that the params data_p_name, data_size_name are the pointer */ /* to the array the fw should read\write to, and the size of it. */ #define REG_ACCESS_GEN_DATA_WITH_STATUS(mf, method, reg_id, data_struct, struct_name, prefix, reg_size, r_reg_size, \ w_reg_size, size_func, data_p_name, data_size_name) \ u_int32_t reg_size = data_struct->data_size_name + size_func(); \ u_int32_t* t_data = data_struct->data_p_name; \ u_int32_t t_offset = size_func(); \ u_int32_t r_size_reg = reg_size; \ u_int32_t w_size_reg = reg_size; \ int wrapper_needed = 0; \ if (method == REG_ACCESS_METHOD_GET) \ { \ w_size_reg -= data_struct->data_size_name; \ } \ else if (method == REG_ACCESS_METHOD_SET) \ { \ r_size_reg -= data_struct->data_size_name; \ } \ else \ { \ return ME_REG_ACCESS_BAD_METHOD; \ } \ int status = 0; \ int rc; \ int max_data_size = reg_size; \ u_int8_t* data = (u_int8_t*)malloc(max_data_size); \ if (!data) \ { \ return ME_MEM_ERROR; \ } \ memset(data, 0, max_data_size); \ prefix ## _ ## struct_name ## _pack(data_struct, data); \ if (t_data) \ { \ if ((int)t_offset + data_struct->data_size_name > max_data_size) \ { \ free(data); \ return ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT; \ } \ memcpy(&data[t_offset], t_data, data_struct->data_size_name); \ } \ wrapper_needed = check_if_wrapper_needed(mf, reg_id); \ if (wrapper_needed) \ { \ rc = crteate_wrapper_command(mf, reg_id, method, data, reg_size, r_size_reg, w_size_reg, &status); \ prefix ## _ ## struct_name ## _unpack(data_struct, data); \ if (rc || status) \ { \ free(data); \ if (!rc) \ { \ return (reg_access_status_t)status; \ } \ return (reg_access_status_t)rc; \ } \ if (t_data) \ { \ data_struct->data_p_name = t_data; \ memcpy(t_data, &(data)[t_offset], data_struct->data_size_name); \ } \ free(data); \ } \ rc = (int)maccess_reg(mf, reg_id, (maccess_reg_method_t)method, data, reg_size, r_size_reg, w_size_reg, &status); \ prefix ## _ ## struct_name ## _unpack(data_struct, data); \ if (rc || status) \ { \ free(data); \ return (reg_access_status_t)rc; \ } \ if (t_data) \ { \ data_struct->data_p_name = t_data; \ memcpy(t_data, &data[t_offset], data_struct->data_size_name); \ } \ free(data); \ return ME_OK; /* reg access with changing length of read\write in the register struct */ #define REG_ACCCESS_VAR(mf, method, reg_id, data_struct, struct_name, reg_size, r_reg_size, w_reg_size, prefix) \ REG_ACCESS_GENERIC_VAR(mf, method, reg_id, data_struct, struct_name, reg_size, r_reg_size, w_reg_size, \ prefix##_##struct_name##_pack, prefix##_##struct_name##_unpack, \ prefix##_##struct_name##_size, prefix##_##struct_name##_print, 0) #define REG_ACCCESS_VAR_DYNAMIC_ARR(mf, method, reg_id, data_struct, struct_name, prefix, array_size) \ int data_size = prefix##_##struct_name##_size() + array_size; \ REG_ACCESS_GENERIC_VAR(mf, method, reg_id, data_struct, struct_name, data_size, data_size, data_size, \ prefix##_##struct_name##_pack, prefix##_##struct_name##_unpack, \ prefix##_##struct_name##_size, prefix##_##struct_name##_print, 1) // register access for static sized registers #define REG_ACCCESS(mf, method, reg_id, data_struct, struct_name, prefix) \ int data_size = prefix##_##struct_name##_size(); \ REG_ACCCESS_VAR(mf, method, reg_id, data_struct, struct_name, data_size, data_size, data_size, prefix) mstflint-4.26.0/reg_access/regaccess_switch_ext_structs.py0000755000175000017500000001034214522641732024345 0ustar tzafrirctzafrirc # # Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # ############################################################################### # This file was generated at "2023-10-17 15:06:47" # by: # > gen_adb_data.py -g switch_prm_projects ############################################################################### import os import sys import ctypes import platform import mtcr class MDDQ_SLOT_INFO_EXT(ctypes.Structure): _fields_ = [ ("active", ctypes.c_uint8), ("lc_ready", ctypes.c_uint8), ("sr_valid", ctypes.c_uint8), ("provisioned", ctypes.c_uint8), ("ini_file_version", ctypes.c_uint16), ("hw_revision", ctypes.c_uint16), ("card_type", ctypes.c_uint8) ] class MDDQ_DEVICE_INFO_EXT(ctypes.Structure): _fields_ = [ ("device_index", ctypes.c_uint8), ("flash_id", ctypes.c_uint8), ("lc_pwr_on", ctypes.c_uint8), ("thermal_sd", ctypes.c_uint8), ("flash_owner", ctypes.c_uint8), ("uses_flash", ctypes.c_uint8), ("device_type", ctypes.c_uint16), ("fw_major", ctypes.c_uint16), ("fw_sub_minor", ctypes.c_uint16), ("fw_minor", ctypes.c_uint16), ("max_cmd_write_size_supp", ctypes.c_uint8), ("max_cmd_read_size_supp", ctypes.c_uint8), ("device_type_name", ctypes.c_uint8 * 8) ] class MDDQ_SLOT_NAME_EXT(ctypes.Structure): _fields_ = [ ("slot_ascii_name", ctypes.c_uint8 * 20) ] class MDDQ_DATA_AUTO_EXT(ctypes.Union): _fields_ = [ ("mddq_slot_info_ext", MDDQ_SLOT_INFO_EXT), ("mddq_device_info_ext", MDDQ_DEVICE_INFO_EXT), ("mddq_slot_name_ext", MDDQ_SLOT_NAME_EXT) ] class MDDQ_EXT(ctypes.Structure): _fields_ = [ ("slot_index", ctypes.c_uint8), ("query_type", ctypes.c_uint8), ("sie", ctypes.c_uint8), ("request_message_sequence", ctypes.c_uint8), ("response_message_sequence", ctypes.c_uint8), ("query_index", ctypes.c_uint8), ("data_valid", ctypes.c_uint8), ("data", MDDQ_DATA_AUTO_EXT) ] class MDSR_REG_EXT(ctypes.Structure): _fields_ = [ ("status", ctypes.c_uint8), ("additional_info", ctypes.c_uint8), ("type_of_token", ctypes.c_uint8), ("end", ctypes.c_uint8), ("time_left", ctypes.c_uint32) ] class MRSR_EXT(ctypes.Structure): _fields_ = [ ("command", ctypes.c_uint8) ] class MFMC_REG_EXT(ctypes.Structure): _fields_ = [ ("fs", ctypes.c_uint8), ("wrp_block_count", ctypes.c_uint8), ("block_size", ctypes.c_uint8), ("wrp_en", ctypes.c_uint8), ("sub_sector_protect_size", ctypes.c_uint8), ("sector_protect_size", ctypes.c_uint8), ("quad_en", ctypes.c_uint8), ("dummy_clock_cycles", ctypes.c_uint8) ] mstflint-4.26.0/reg_access/Makefile.am0000644000175000017500000000461014522641732020036 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/tools_layouts AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libreg_access.la libreg_access_la_SOURCES = \ reg_access.c \ reg_access.h \ reg_access_common.h \ reg_access_macros.h libreg_access_la_DEPENDENCIES = $(top_builddir)/tools_layouts/libtools_layouts.la libreg_access_la_LIBADD = $(libreg_access_la_DEPENDENCIES) RREG_ACCESS_SO = rreg_access.so reg_access_pylibdir = $(libdir)/mstflint/python_tools/ reg_access_pylib_DATA = ${RREG_ACCESS_SO} dist_reg_access_pylib_DATA = regaccess.py regaccess_hca_ext_structs.py regaccess_switch_ext_structs.py ${RREG_ACCESS_SO}: libreg_access.la $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RREG_ACCESS_SO} \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a CLEANFILES = ${RREG_ACCESS_SO} mstflint-4.26.0/reg_access/reg_access.h0000644000175000017500000003267114522641732020261 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef REG_ACCESS_H #define REG_ACCESS_H #ifdef __cplusplus extern "C" { #endif #include "reg_access_common.h" enum { // header lengths in bytes REG_ACCESS_MFBA_HEADER_LEN = 12, }; typedef enum { MDDT_PRM_REGISTER_CMD_TYPE = 0, MDDT_COMMAND_CMD_TYPE = 1, MDDT_CRSPACE_ACCESS_CMD_TYPE = 2 } mddt_command_type_t; // we use the same error messages as mtcr typedef MError reg_access_status_t; // Add new methods here struct reg_access_switch_mddq_ext; reg_access_status_t reg_access_mddq(mfile* mf, reg_access_method_t method, struct reg_access_switch_mddq_ext* mddq); struct reg_access_switch_mddt_reg_ext; reg_access_status_t reg_access_mddt(mfile* mf, reg_access_method_t method, struct reg_access_switch_mddt_reg_ext* switch_mddt_reg); struct reg_access_hca_paos_reg_ext; reg_access_status_t reg_access_paos(mfile* mf, reg_access_method_t method, struct reg_access_hca_paos_reg_ext* paos); struct reg_access_hca_ptys_reg_ext; reg_access_status_t reg_access_ptys(mfile* mf, reg_access_method_t method, struct reg_access_hca_ptys_reg_ext* ptys); struct reg_access_hca_mcia_ext; reg_access_status_t reg_access_mcia(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcia_ext* mcia); struct reg_access_hca_mtmp_ext; reg_access_status_t reg_access_mtmp(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtmp_ext* mtmp); struct reg_access_hca_mtcap_ext; reg_access_status_t reg_access_mtcap(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtcap_ext* mtcap); struct reg_access_switch_pmaos_reg_ext; reg_access_status_t reg_access_pmaos(mfile* mf, reg_access_method_t method, struct reg_access_switch_pmaos_reg_ext* pmaos); struct reg_access_hca_pmlp_reg_ext; reg_access_status_t reg_access_pmlp(mfile* mf, reg_access_method_t method, struct reg_access_hca_pmlp_reg_ext* pmlp); struct reg_access_hca_mnvgc_reg_ext; reg_access_status_t reg_access_mnvgc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvgc_reg_ext* mnvgc); struct reg_access_hca_mmdio_ext; reg_access_status_t reg_access_mmdio(mfile* mf, reg_access_method_t method, struct reg_access_hca_mmdio_ext* mmdio); struct tools_mjtag; reg_access_status_t reg_access_mjtag(mfile* mf, reg_access_method_t method, struct tools_mjtag* mjtag); struct tools_open_mnvda; reg_access_status_t reg_access_mnvda(mfile* mf, reg_access_method_t method, struct tools_open_mnvda* mnvda); struct reg_access_hca_mnvdi_reg_ext; reg_access_status_t reg_access_mnvdi(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvdi_reg_ext* mnvdi); struct reg_access_hca_mnvia_reg_ext; reg_access_status_t reg_access_mnvia(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvia_reg_ext* mnvia); struct reg_access_hca_mnvqc_reg_ext; reg_access_status_t reg_access_mnvqc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mnvqc_reg_ext* mnvqc); struct tools_open_mnvgn; reg_access_status_t reg_access_mnvgn(mfile* mf, reg_access_method_t method, struct tools_open_mnvgn* mnvgn, int* status); struct tools_open_mgnle; reg_access_status_t reg_access_mgnle(mfile* mf, reg_access_method_t method, struct tools_open_mgnle* mngnle, int* status); struct switchen_ritr; reg_access_status_t reg_access_ritr(mfile* mf, reg_access_method_t method, struct switchen_ritr* ritr); struct switchen_ricnt; reg_access_status_t reg_access_ricnt(mfile* mf, reg_access_method_t method, struct switchen_ricnt* ricnt); struct switchen_sbpr; reg_access_status_t reg_access_sbpr(mfile* mf, reg_access_method_t method, struct switchen_sbpr* sbpr); struct switchen_sbmm; reg_access_status_t reg_access_sbmm(mfile* mf, reg_access_method_t method, struct switchen_sbmm* sbmm); struct switchen_sbcm; reg_access_status_t reg_access_sbcm(mfile* mf, reg_access_method_t method, struct switchen_sbcm* sbcm); struct switchen_sbpm; reg_access_status_t reg_access_sbpm(mfile* mf, reg_access_method_t method, struct switchen_sbpm* sbpm); struct reg_access_hca_resource_dump_ext; reg_access_status_t reg_access_res_dump(mfile* mf, reg_access_method_t method, struct reg_access_hca_resource_dump_ext* res_dump); struct switchen_ppcnt_reg; reg_access_status_t reg_access_ppcnt(mfile* mf, reg_access_method_t method, struct switchen_ppcnt_reg* ricnt); struct reg_access_hca_pcnr_reg_ext; reg_access_status_t reg_access_pcnr(mfile* mf, reg_access_method_t method, struct reg_access_hca_pcnr_reg_ext* pcnr); struct tools_mgpir; reg_access_status_t reg_access_mgpir(mfile* mf, reg_access_method_t method, struct tools_mgpir* mgpir); struct tools_mdfcr; reg_access_status_t reg_access_mdfcr(mfile* mf, reg_access_method_t method, struct tools_mdfcr* mdfcr); struct tools_mdrcr; reg_access_status_t reg_access_mdrcr(mfile* mf, reg_access_method_t method, struct tools_mdrcr* mdrcr); struct reg_access_switch_icam_reg_ext; reg_access_status_t reg_access_icam(mfile* mf, reg_access_method_t method, struct reg_access_switch_icam_reg_ext* icam); struct reg_access_switch_icsr_ext; reg_access_status_t reg_access_icsr(mfile* mf, reg_access_method_t method, struct reg_access_switch_icsr_ext* icsr); struct reg_access_hca_mfba_reg_ext; reg_access_status_t reg_access_mfba(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfba_reg_ext* mfba); struct reg_access_hca_mfbe_reg_ext; reg_access_status_t reg_access_mfbe(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfbe_reg_ext* mfbe); struct reg_access_hca_mfpa_reg_ext; reg_access_status_t reg_access_mfpa(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfpa_reg_ext* mfpa); struct reg_access_hca_mfsv_reg_ext; reg_access_status_t reg_access_mfsv(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfsv_reg_ext* mfsv); struct reg_access_hca_mfrl_reg_ext; reg_access_status_t reg_access_mfrl(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfrl_reg_ext* mfrl); struct reg_access_hca_mpcir_ext; reg_access_status_t reg_access_mpcir(mfile* mf, reg_access_method_t method, struct reg_access_hca_mpcir_ext* mpcir); struct cibfw_register_mfai; reg_access_status_t reg_access_mfai(mfile* mf, reg_access_method_t method, struct cibfw_register_mfai* mfai); struct tools_open_mvts; reg_access_status_t reg_access_mvts(mfile* mf, reg_access_method_t method, struct tools_open_mvts* mvts); struct reg_access_switch_mfmc_reg_ext; reg_access_status_t reg_access_mfmc(mfile* mf, reg_access_method_t method, struct reg_access_switch_mfmc_reg_ext* mfmc); struct reg_access_hca_mfpa_reg_ext; reg_access_status_t reg_access_mfpa_new(mfile* mf, reg_access_method_t method, struct reg_access_hca_mfpa_reg_ext* mfpa); struct reg_access_hca_mcam_reg_ext; reg_access_status_t reg_access_mcam(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcam_reg_ext* mcam); struct tools_open_mlock; reg_access_status_t reg_access_secure_host(mfile* mf, reg_access_method_t method, struct tools_open_mlock* mlock); /* * MCXX new burn commands */ struct reg_access_hca_mcda_reg_ext; reg_access_status_t reg_access_mcda(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcda_reg_ext* mcda); struct reg_access_hca_mqis_reg_ext; reg_access_status_t reg_access_mqis(mfile* mf, reg_access_method_t method, struct reg_access_hca_mqis_reg_ext* mqis); struct reg_access_hca_mcc_reg_ext; reg_access_status_t reg_access_mcc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcc_reg_ext* mcc); struct reg_access_hca_mcqs_reg_ext; reg_access_status_t reg_access_mcqs(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcqs_reg_ext* mcqs); struct reg_access_hca_mcqi_reg_ext; reg_access_status_t reg_access_mcqi(mfile* mf, reg_access_method_t method, struct reg_access_hca_mcqi_reg_ext* mcqi); struct reg_access_hca_mgir_ext; reg_access_status_t reg_access_mgir(mfile* mf, reg_access_method_t method, struct reg_access_hca_mgir_ext* mgir); struct reg_access_hca_mtrc_cap_reg_ext; reg_access_status_t reg_access_mtrc_cap(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_cap_reg_ext* mtrc_cap); struct reg_access_hca_mtrc_conf_reg_ext; reg_access_status_t reg_access_mtrc_conf(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_conf_reg_ext* mtrc_conf); struct reg_access_hca_mtrc_stdb_reg_ext; reg_access_status_t reg_access_mtrc_stdb_wrapper(mfile* mf, u_int32_t read_size, u_int8_t string_db_index, char* buffer); struct reg_access_hca_mtrc_ctrl_reg_ext; reg_access_status_t reg_access_mtrc_ctrl(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtrc_ctrl_reg_ext* mtrc_ctrl); struct tools_open_mcdd_reg; reg_access_status_t reg_access_mcdd(mfile* mf, reg_access_method_t method, struct tools_open_mcdd_reg* mcdd); const char* reg_access_err2str(reg_access_status_t status); struct tools_open_mirc_reg; reg_access_status_t reg_access_mirc(mfile* mf, reg_access_method_t method, struct tools_open_mirc_reg* mirc); struct reg_access_switch_plib_reg_ext; reg_access_status_t reg_access_plib(mfile* mf, reg_access_method_t method, struct reg_access_switch_plib_reg_ext* plib); struct reg_access_hca_mteim_reg_ext; reg_access_status_t reg_access_mteim(mfile* mf, reg_access_method_t method, struct reg_access_hca_mteim_reg_ext* mteim); struct reg_access_hca_mtie_ext; reg_access_status_t reg_access_mtie(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtie_ext* mtie); struct reg_access_hca_mtim_ext; reg_access_status_t reg_access_mtim(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtim_ext* mtim); struct reg_access_hca_mtdc_ext; reg_access_status_t reg_access_mtdc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mtdc_ext* mtdc); struct reg_access_hca_debug_cap; reg_access_status_t reg_access_debug_cap(mfile* mf, reg_access_method_t method, struct reg_access_hca_debug_cap* debug_cap); struct reg_access_switch_mkdc_reg_ext; reg_access_status_t reg_access_mkdc(mfile* mf, reg_access_method_t method, struct reg_access_switch_mkdc_reg_ext* mkdc); struct reg_access_switch_mtcq_reg_ext; reg_access_status_t reg_access_mtcq(mfile* mf, reg_access_method_t method, struct reg_access_switch_mtcq_reg_ext* mtcq); struct reg_access_switch_mdsr_reg_ext; reg_access_status_t reg_access_mdsr(mfile* mf, reg_access_method_t method, struct reg_access_switch_mdsr_reg_ext* mtcq); struct reg_access_hca_nic_cap_ext_reg_ext; reg_access_status_t reg_access_nic_cap_ext(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_cap_ext_reg_ext* nic_cap_ext); struct reg_access_switch_mrsr_ext; reg_access_status_t reg_access_mrsr(mfile* mf, reg_access_method_t method, struct reg_access_switch_mrsr_ext* mrsr); struct reg_access_hca_dtor_reg_ext; reg_access_status_t reg_access_dtor(mfile* mf, reg_access_method_t method, struct reg_access_hca_dtor_reg_ext* dtor); struct reg_access_hca_nic_dpa_eug_reg_ext; reg_access_status_t reg_access_nic_dpa_eug(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_eug_reg_ext* nic_dpa_eug); struct reg_access_hca_mpegc_reg_ext; reg_access_status_t reg_access_mpegc(mfile* mf, reg_access_method_t method, struct reg_access_hca_mpegc_reg_ext* mpegc); struct reg_access_hca_nic_dpa_perf_reg_ext; reg_access_status_t reg_access_nic_dpa_perf(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_perf_reg_ext* nic_dpa_perf); struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext; reg_access_status_t reg_access_nic_dpa_perf_ctrl(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_perf_ctrl_reg_ext* nic_dpa_perf_ctrl); struct reg_access_hca_nic_dpa_eu_partition_reg_ext; reg_access_status_t reg_access_nic_dpa_eu_partition(mfile* mf, reg_access_method_t method, struct reg_access_hca_nic_dpa_eu_partition_reg_ext* nic_dpa_eu_partition); #ifdef __cplusplus } #endif #endif // REG_ACCESS_H mstflint-4.26.0/reg_access/reg_access_common.h0000755000175000017500000000351414522641732021626 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #pragma once #ifdef __cplusplus extern "C" { #endif #include typedef enum { REG_ACCESS_METHOD_GET = MACCESS_REG_METHOD_GET, REG_ACCESS_METHOD_SET = MACCESS_REG_METHOD_SET } reg_access_method_t; // we use the same error messages as mtcr typedef MError reg_access_status_t; #ifdef __cplusplus } #endif mstflint-4.26.0/reg_access/Makefile.in0000644000175000017500000005752614522641740020064 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = reg_access DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(dist_reg_access_pylib_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libreg_access_la_OBJECTS = reg_access.lo libreg_access_la_OBJECTS = $(am_libreg_access_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libreg_access_la_SOURCES) DIST_SOURCES = $(libreg_access_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(reg_access_pylibdir)" \ "$(DESTDIR)$(reg_access_pylibdir)" DATA = $(dist_reg_access_pylib_DATA) $(reg_access_pylib_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/tools_layouts AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libreg_access.la libreg_access_la_SOURCES = \ reg_access.c \ reg_access.h \ reg_access_common.h \ reg_access_macros.h libreg_access_la_DEPENDENCIES = $(top_builddir)/tools_layouts/libtools_layouts.la libreg_access_la_LIBADD = $(libreg_access_la_DEPENDENCIES) RREG_ACCESS_SO = rreg_access.so reg_access_pylibdir = $(libdir)/mstflint/python_tools/ reg_access_pylib_DATA = ${RREG_ACCESS_SO} dist_reg_access_pylib_DATA = regaccess.py regaccess_hca_ext_structs.py regaccess_switch_ext_structs.py CLEANFILES = ${RREG_ACCESS_SO} all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign reg_access/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign reg_access/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libreg_access.la: $(libreg_access_la_OBJECTS) $(libreg_access_la_DEPENDENCIES) $(EXTRA_libreg_access_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libreg_access_la_OBJECTS) $(libreg_access_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reg_access.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_reg_access_pylibDATA: $(dist_reg_access_pylib_DATA) @$(NORMAL_INSTALL) @list='$(dist_reg_access_pylib_DATA)'; test -n "$(reg_access_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(reg_access_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(reg_access_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(reg_access_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(reg_access_pylibdir)" || exit $$?; \ done uninstall-dist_reg_access_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_reg_access_pylib_DATA)'; test -n "$(reg_access_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(reg_access_pylibdir)'; $(am__uninstall_files_from_dir) install-reg_access_pylibDATA: $(reg_access_pylib_DATA) @$(NORMAL_INSTALL) @list='$(reg_access_pylib_DATA)'; test -n "$(reg_access_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(reg_access_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(reg_access_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(reg_access_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(reg_access_pylibdir)" || exit $$?; \ done uninstall-reg_access_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(reg_access_pylib_DATA)'; test -n "$(reg_access_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(reg_access_pylibdir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) installdirs: for dir in "$(DESTDIR)$(reg_access_pylibdir)" "$(DESTDIR)$(reg_access_pylibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_reg_access_pylibDATA \ install-reg_access_pylibDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_reg_access_pylibDATA \ uninstall-reg_access_pylibDATA .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dist_reg_access_pylibDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-reg_access_pylibDATA install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am \ uninstall-dist_reg_access_pylibDATA \ uninstall-reg_access_pylibDATA ${RREG_ACCESS_SO}: libreg_access.la $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RREG_ACCESS_SO} \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/license_map.yaml0000755000175000017500000000434714522641732017061 0ustar tzafrirctzafrircgeneral: exclude: - "\\.git.*" - ".*\\.sh" - unittest/config.* - unittest/expected.* - ".*\\.adb" - ".*\\.asm" - ".*\\.bmp" - ".*\\.bin" - ".*\\.BIN" - ".*\\.cfg" - ".*\\.com" - ".*\\.conf" - ".*\\.cproject" - ".*\\.crt" - ".*\\.css" - ".*\\.csv" - ".*\\.dat" - ".*\\.db" - ".*\\.dec" - ".*\\.def" - ".*\\.dev" - ".*dirs" - ".*\\.dox" - ".*\\.dsc" - ".*\\.dyn" - ".*\\.ext" - ".*\\.ggo" - ".*\\.gif" - ".*\\.gz" - ".*\\.ico" - ".*\\.in" - ".*\\.inf" - ".*\\.int" - ".*\\.IMG" - ".*\\.INI" - ".*\\.jpg" - ".*\\.json" - ".*\\.lex" - ".*\\.log" - ".*\\.lst" - ".*\\.Lattice" - ".*\\.make" - ".*\\.manual" - ".*\\.map" - ".*\\.md" - ".*\\.msi" - ".*\\.m4" - ".*MAKE_TEST_CMD" - ".*\\.pem" - ".*\\.pdf" - ".*\\.php" - ".*\\.png" - ".*\\.pri" - ".*\\.pro" - ".*\\.ps1" - ".*\\.pyx" - ".*\\.pxd" - ".*qmake" - ".*\\.qrc" - ".*\\.qss" - ".*qt4_6_env" - ".*qt4_7_env" - ".*readme" - ".*README" - ".*\\.rc" - ".*\\.rtf" - ".*\\.scss" - ".*\\.sln" - ".*sources" - ".*SOURCES" - ".*startemmap" - ".*stopemmap" - ".*\\.str" - ".*\\.tcl" - ".*\\.ttf" - ".*\\.txt" - ".*\\.TXT" - ".*\\.ui" - ".*\\.user" - ".*\\.vcxproj" - ".*\\.whl" - ".*\\.win" - ".*\\.wxs" - ".*\\.xls" - ".*\\.y" - ".*\\.zip" - ".*\\.1" - "COPYING" - "LICENSE" - "configure.ac" bsd: include: - .* exclude: - common/autocomplete/mft_autocomplete_skeleton - common/autocomplete/mft_base_autocomplete - cmdparser/my_getopt.c - cmdparser/my_getopt.h - debian - ext_libs - license_map.yaml - kernel/mstflint_kernel.spec mstflint-4.26.0/mlxfwupdate/0000755000175000017500000000000014522641737016250 5ustar tzafrirctzafrircmstflint-4.26.0/mlxfwupdate/psid_lookup_db.cpp0000644000175000017500000000650114522641732021746 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "psid_lookup_db.h" #include #include int PsidLookupDB::csv2vector(string str, vector& explode) { size_t pos; int cnt = 0; if (str.size() == 0) { return 0; } do { cnt++; pos = str.find(','); if (pos == string::npos) { explode.push_back(str); break; } explode.push_back(str.substr(0, pos)); str = str.substr(pos + 1); } while (str.size() > 0); return cnt; } void PsidLookupDB::readFile(string fName) { FILE* fin; char tmpb[256]; if ((fin = fopen(fName.c_str(), "r")) == NULL) { return; } while (fgets(tmpb, sizeof(tmpb), fin)) { PsidLookupInfo pi; vector expld; string str = tmpb; if (str.find('\n')) { str = str.substr(0, str.size() - 1); // remove newline character } if (csv2vector(str, expld) < 4) { continue; } pi.psid = expld[0]; pi.pn = expld[2]; pi.prodDesc = expld[3]; _keyLookupMap[expld[0]] = pi; _keyLookupMap[expld[1]] = pi; } fclose(fin); } string PsidLookupDB::getPN(string id) { if (_keyLookupMap.find(id) == _keyLookupMap.end()) { return ""; } return _keyLookupMap[id].pn; } string PsidLookupDB::getProdDesc(string id) { if (_keyLookupMap.find(id) == _keyLookupMap.end()) { return ""; } return _keyLookupMap[id].prodDesc; } string PsidLookupDB::getPsid(string id) { if (_keyLookupMap.find(id) == _keyLookupMap.end()) { return ""; } return _keyLookupMap[id].psid; } bool PsidLookupDB::isPsidExist(string psid) { if (_keyLookupMap.find(psid) == _keyLookupMap.end()) { return false; } return true; } mstflint-4.26.0/mlxfwupdate/cmd_line_params.h0000644000175000017500000000552014522641732021533 0ustar tzafrirctzafrirc /* * Copyright (c) 2006-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __CMDLINEPARAMS_H__ #define __CMDLINEPARAMS_H__ #include #include #include "mlxfwmanager_common.h" using namespace std; class CmdLineParams { public: CmdLineParams(); ~CmdLineParams(); vector device_names; int force_update; int update_fw; int use_mfa_file; int use_mfa_dir; string mfa_dir; string mfa_file; int yes_no_; int write_xml; int use_exe_rel_paths; int use_output_file; string output_file; int create_log; int compare_ffv; int use_log_file; string log_file; int use_lookup_file; string lookup_file; string psid; string target_file; bool extract_image; bool extract_all; string extract_dir; bool list_file_contents; bool display_archive_names; bool show_progress; bool log_on_update; bool calc_crc; bool query_device; bool query_device_xml; bool clear_semaphore; string current_dir; string server_url; string proxy; bool download; bool download_default; string get_download_opt; string download_dir; string download_os; string download_type; string download_dev; string download_key; string onlineQueryPsids; bool update_online; bool burnFailsafe; string certificate; string queryFormat; bool lvim; bool dl; bool no_extract_list; int numberOfRetrials; bool no_fw_ctrl; }; #endif mstflint-4.26.0/mlxfwupdate/certificate/0000755000175000017500000000000014522641732020525 5ustar tzafrirctzafrircmstflint-4.26.0/mlxfwupdate/certificate/ca-bundle.crt0000644000175000017500000061671314522641732023107 0ustar tzafrirctzafrirc## ## Bundle of CA Root Certificates ## ## Certificate data from Mozilla as of: Mon Jul 5 21:36:52 2021 GMT ## ## This is a bundle of X.509 certificates of public Certificate Authorities ## (CA). These were automatically extracted from Mozilla's root certificates ## file (certdata.txt). This file can be found in the mozilla source tree: ## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt ## ## It contains the certificates in PEM format and therefore ## can be directly used with curl / libcurl / php_curl, or with ## an Apache+mod_ssl webserver for SSL client authentication. ## Just configure this file as the SSLCACertificateFile. ## ## Conversion done with mk-ca-bundle.pl version 1.28. ## SHA256: c8f6733d1ff4e6a4769c182971a1234f95ae079247a9c439a13423fe8ba5c24f ## GlobalSign Root CA ================== -----BEGIN CERTIFICATE----- MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== -----END CERTIFICATE----- GlobalSign Root CA - R2 ======================= -----BEGIN CERTIFICATE----- MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6 ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp 9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu 01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7 9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== -----END CERTIFICATE----- Entrust.net Premium 2048 Secure Server CA ========================================= -----BEGIN CERTIFICATE----- MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3 d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE= -----END CERTIFICATE----- Baltimore CyberTrust Root ========================= -----BEGIN CERTIFICATE----- MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9 XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5 hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp -----END CERTIFICATE----- Entrust Root Certification Authority ==================================== -----BEGIN CERTIFICATE----- MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0 MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68 j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1 MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0 tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8 -----END CERTIFICATE----- Comodo AAA Services root ======================== -----BEGIN CERTIFICATE----- MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm 7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z 8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C 12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== -----END CERTIFICATE----- QuoVadis Root CA 2 ================== -----BEGIN CERTIFICATE----- MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6 XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt 66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3 UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK +JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1 WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II 4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8 VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u -----END CERTIFICATE----- QuoVadis Root CA 3 ================== -----BEGIN CERTIFICATE----- MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8 nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4 ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2 Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp 8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto= -----END CERTIFICATE----- Security Communication Root CA ============================== -----BEGIN CERTIFICATE----- MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw 8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX 5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2 JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g 0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ 6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi FL39vmwLAw== -----END CERTIFICATE----- XRamp Global CA Root ==================== -----BEGIN CERTIFICATE----- MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc /Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz 8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw= -----END CERTIFICATE----- Go Daddy Class 2 CA =================== -----BEGIN CERTIFICATE----- MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv 2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32 qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b vZ8= -----END CERTIFICATE----- Starfield Class 2 CA ==================== -----BEGIN CERTIFICATE----- MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3 QBFGmh95DmK/D5fs4C8fF5Q= -----END CERTIFICATE----- DigiCert Assured ID Root CA =========================== -----BEGIN CERTIFICATE----- MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO 9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW /lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF 66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i 8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe +o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== -----END CERTIFICATE----- DigiCert Global Root CA ======================= -----BEGIN CERTIFICATE----- MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5 BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H 4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y 7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm 8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886 UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= -----END CERTIFICATE----- DigiCert High Assurance EV Root CA ================================== -----BEGIN CERTIFICATE----- MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3 MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K -----END CERTIFICATE----- DST Root CA X3 ============== -----BEGIN CERTIFICATE----- MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1 cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9 UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ -----END CERTIFICATE----- SwissSign Gold CA - G2 ====================== -----BEGIN CERTIFICATE----- MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR 7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64 OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm 5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr 44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ -----END CERTIFICATE----- SwissSign Silver CA - G2 ======================== -----BEGIN CERTIFICATE----- MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3 aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG 9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644 N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm +/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH 6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5 FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P 4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L 3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx /uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u -----END CERTIFICATE----- SecureTrust CA ============== -----BEGIN CERTIFICATE----- MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b 01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/ BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR 3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= -----END CERTIFICATE----- Secure Global CA ================ -----BEGIN CERTIFICATE----- MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g 8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi 0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+ OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5 3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW -----END CERTIFICATE----- COMODO Certification Authority ============================== -----BEGIN CERTIFICATE----- MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1 dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH +7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV 4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA 1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN +8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ== -----END CERTIFICATE----- Network Solutions Certificate Authority ======================================= -----BEGIN CERTIFICATE----- MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc /Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q 4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/ GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey -----END CERTIFICATE----- COMODO ECC Certification Authority ================================== -----BEGIN CERTIFICATE----- MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X 4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= -----END CERTIFICATE----- Certigna ======== -----BEGIN CERTIFICATE----- MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3 MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+ ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY 1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== -----END CERTIFICATE----- Cybertrust Global Root ====================== -----BEGIN CERTIFICATE----- MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4 MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA +Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW 0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin 89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT 8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2 MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi 5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2 hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW WL1WMRJOEcgh4LMRkWXbtKaIOM5V -----END CERTIFICATE----- ePKI Root Certification Authority ================================= -----BEGIN CERTIFICATE----- MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX 12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+ ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/ vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0 1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw= -----END CERTIFICATE----- certSIGN ROOT CA ================ -----BEGIN CERTIFICATE----- MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2 ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD 0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943 AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8 SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0 x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD -----END CERTIFICATE----- NetLock Arany (Class Gold) FÅ‘tanúsítvány ======================================== -----BEGIN CERTIFICATE----- MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610 dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6 c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu 0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw /HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1 neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= -----END CERTIFICATE----- Hongkong Post Root CA 1 ======================= -----BEGIN CERTIFICATE----- MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1 ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT c4afU9hDDl3WY4JxHYB0yvbiAmvZWg== -----END CERTIFICATE----- SecureSign RootCA11 =================== -----BEGIN CERTIFICATE----- MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1 cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01 y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061 lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I= -----END CERTIFICATE----- Microsec e-Szigno Root CA 2009 ============================== -----BEGIN CERTIFICATE----- MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG 0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm 1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02 yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi LXpUq3DDfSJlgnCW -----END CERTIFICATE----- GlobalSign Root CA - R3 ======================= -----BEGIN CERTIFICATE----- MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ 0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3 rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2 xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7 lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8 EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18 YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r kpeDMdmztcpHWD9f -----END CERTIFICATE----- Autoridad de Certificacion Firmaprofesional CIF A62634068 ========================================================= -----BEGIN CERTIFICATE----- MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY 7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx 51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi 6Et8Vcad+qMUu2WFbm5PEn4KPJ2V -----END CERTIFICATE----- Izenpe.com ========== -----BEGIN CERTIFICATE----- MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ 03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU +zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK 0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+ 0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+ SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5 aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5 nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== -----END CERTIFICATE----- Go Daddy Root Certificate Authority - G2 ======================================== -----BEGIN CERTIFICATE----- MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq 9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD +qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9 BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r 5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1 -----END CERTIFICATE----- Starfield Root Certificate Authority - G2 ========================================= -----BEGIN CERTIFICATE----- MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0 eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx 4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 -----END CERTIFICATE----- Starfield Services Root Certificate Authority - G2 ================================================== -----BEGIN CERTIFICATE----- MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2 h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6 -----END CERTIFICATE----- AffirmTrust Commercial ====================== -----BEGIN CERTIFICATE----- MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6 BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv 0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= -----END CERTIFICATE----- AffirmTrust Networking ====================== -----BEGIN CERTIFICATE----- MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24 /PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6 12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23 WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9 /ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= -----END CERTIFICATE----- AffirmTrust Premium =================== -----BEGIN CERTIFICATE----- MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV 5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs +7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04 6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5 /bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo +Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB /wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC 6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK +4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60 g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw== -----END CERTIFICATE----- AffirmTrust Premium ECC ======================= -----BEGIN CERTIFICATE----- MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X 57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM eQ== -----END CERTIFICATE----- Certum Trusted Network CA ========================= -----BEGIN CERTIFICATE----- MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4 fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0 cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1 mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI 03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= -----END CERTIFICATE----- TWCA Root Certification Authority ================================= -----BEGIN CERTIFICATE----- MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP 4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG 9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== -----END CERTIFICATE----- Security Communication RootCA2 ============================== -----BEGIN CERTIFICATE----- MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++ +T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R 3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8 QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk 3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29 mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 -----END CERTIFICATE----- EC-ACC ====== -----BEGIN CERTIFICATE----- MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7 MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4 HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw 0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0 Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2 E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D 5EI= -----END CERTIFICATE----- Hellenic Academic and Research Institutions RootCA 2011 ======================================================= -----BEGIN CERTIFICATE----- MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI 1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa 71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u 8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH 3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/ MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8 MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD /md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N 7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4 -----END CERTIFICATE----- Actalis Authentication Root CA ============================== -----BEGIN CERTIFICATE----- MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6 zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2 oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7 hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8 EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5 jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0 JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+ Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC 4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo 2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9 vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== -----END CERTIFICATE----- Buypass Class 2 Root CA ======================= -----BEGIN CERTIFICATE----- MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1 g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn 9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b /+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0 oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN rJgWVqA= -----END CERTIFICATE----- Buypass Class 3 Root CA ======================= -----BEGIN CERTIFICATE----- MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR 5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh 7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH 2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV /afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8 ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2 KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz 6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi Cp/HuZc= -----END CERTIFICATE----- T-TeleSec GlobalRoot Class 3 ============================ -----BEGIN CERTIFICATE----- MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3 DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK 9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W 0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw== -----END CERTIFICATE----- D-TRUST Root Class 3 CA 2 2009 ============================== -----BEGIN CERTIFICATE----- MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ 4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm 2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I= -----END CERTIFICATE----- D-TRUST Root Class 3 CA 2 EV 2009 ================================= -----BEGIN CERTIFICATE----- MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T 7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60 sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35 11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+ PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv w9y4AyHqnxbxLFS1 -----END CERTIFICATE----- CA Disig Root R2 ================ -----BEGIN CERTIFICATE----- MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7 A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa 5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8 1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01 utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0 sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV 7+ZtsH8tZ/3zbBt1RqPlShfppNcL -----END CERTIFICATE----- ACCVRAIZ1 ========= -----BEGIN CERTIFICATE----- MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1 MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0 RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ 0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7 8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR 5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J 9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0 dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2 MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49 nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3 sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd 3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p EfbRD0tVNEYqi4Y7 -----END CERTIFICATE----- TWCA Global Root CA =================== -----BEGIN CERTIFICATE----- MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99 sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M 8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg /eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8 EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3 zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0= -----END CERTIFICATE----- TeliaSonera Root CA v1 ====================== -----BEGIN CERTIFICATE----- MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4 MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+ 6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA 3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3 F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7 gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx 0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2 qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6 Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= -----END CERTIFICATE----- E-Tugra Certification Authority =============================== -----BEGIN CERTIFICATE----- MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0 E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5 dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB /wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807 VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0 8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G C7TbO6Orb1wdtn7os4I07QZcJA== -----END CERTIFICATE----- T-TeleSec GlobalRoot Class 2 ============================ -----BEGIN CERTIFICATE----- MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3 DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970 2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4 r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR 3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN 9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg== -----END CERTIFICATE----- Atos TrustedRoot 2011 ===================== -----BEGIN CERTIFICATE----- MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4 MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr 54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+ DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320 HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9 61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G 3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed -----END CERTIFICATE----- QuoVadis Root CA 1 G3 ===================== -----BEGIN CERTIFICATE----- MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6 Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV 7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX 9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3 GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP +V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh 3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6 O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0 FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV hMJKzRwuJIczYOXD -----END CERTIFICATE----- QuoVadis Root CA 2 G3 ===================== -----BEGIN CERTIFICATE----- MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD 6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9 x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr O3jtZsSOeWmD3n+M -----END CERTIFICATE----- QuoVadis Root CA 3 G3 ===================== -----BEGIN CERTIFICATE----- MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286 IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe 6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3 I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7 5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX 0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2 PpxxVJkES/1Y+Zj0 -----END CERTIFICATE----- DigiCert Assured ID Root G2 =========================== -----BEGIN CERTIFICATE----- MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH 35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv 0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo IhNzbM8m9Yop5w== -----END CERTIFICATE----- DigiCert Assured ID Root G3 =========================== -----BEGIN CERTIFICATE----- MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy 1vUhZscv6pZjamVFkpUBtA== -----END CERTIFICATE----- DigiCert Global Root G2 ======================= -----BEGIN CERTIFICATE----- MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO 3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu 5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/ iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl MrY= -----END CERTIFICATE----- DigiCert Global Root G3 ======================= -----BEGIN CERTIFICATE----- MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y 3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34 VOKa5Vt8sycX -----END CERTIFICATE----- DigiCert Trusted Root G4 ======================== -----BEGIN CERTIFICATE----- MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6 MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7 f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8 oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy 7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN 5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb /UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa 5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP 82Z+ -----END CERTIFICATE----- COMODO RSA Certification Authority ================================== -----BEGIN CERTIFICATE----- MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+ 5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX 2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3 sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5 WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+ nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52 7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I LaZRfyHBNVOFBkpdn627G190 -----END CERTIFICATE----- USERTrust RSA Certification Authority ===================================== -----BEGIN CERTIFICATE----- MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz 0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O +T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq /nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8 yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+ eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ 7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM 8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9 -----END CERTIFICATE----- USERTrust ECC Certification Authority ===================================== -----BEGIN CERTIFICATE----- MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2 0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu 9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= -----END CERTIFICATE----- GlobalSign ECC Root CA - R4 =========================== -----BEGIN CERTIFICATE----- MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q= -----END CERTIFICATE----- GlobalSign ECC Root CA - R5 =========================== -----BEGIN CERTIFICATE----- MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6 SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7 yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3 -----END CERTIFICATE----- Staat der Nederlanden EV Root CA ================================ -----BEGIN CERTIFICATE----- MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r 0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8 Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr 08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV 0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd 74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq 5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi 5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4 WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg== -----END CERTIFICATE----- IdenTrust Commercial Root CA 1 ============================== -----BEGIN CERTIFICATE----- MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/ mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi 1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl 3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH 6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe 2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R cGzM7vRX+Bi6hG6H -----END CERTIFICATE----- IdenTrust Public Sector Root CA 1 ================================= -----BEGIN CERTIFICATE----- MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6 Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL 4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4 Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ 3Wl9af0AVqW3rLatt8o+Ae+c -----END CERTIFICATE----- Entrust Root Certification Authority - G2 ========================================= -----BEGIN CERTIFICATE----- MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP /vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6 0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+ vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO e4pIb4tF9g== -----END CERTIFICATE----- Entrust Root Certification Authority - EC1 ========================================== -----BEGIN CERTIFICATE----- MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef 9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8 kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G -----END CERTIFICATE----- CFCA EV ROOT ============ -----BEGIN CERTIFICATE----- MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD 7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7 xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB /wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua 4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su -----END CERTIFICATE----- OISTE WISeKey Global Root GB CA =============================== -----BEGIN CERTIFICATE----- MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk 9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB /zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0 VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= -----END CERTIFICATE----- SZAFIR ROOT CA2 =============== -----BEGIN CERTIFICATE----- MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE 2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5 O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67 oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul 4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6 +/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw== -----END CERTIFICATE----- Certum Trusted Network CA 2 =========================== -----BEGIN CERTIFICATE----- MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1 bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9 7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130 GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ 9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7 zAYspsbiDrW5viSP -----END CERTIFICATE----- Hellenic Academic and Research Institutions RootCA 2015 ======================================================= -----BEGIN CERTIFICATE----- MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcT BkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0 aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl YXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAx MTIxWjCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMg QWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNV BAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIw MTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDC+Kk/G4n8PDwEXT2QNrCROnk8Zlrv bTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+eh iGsxr/CL0BgzuNtFajT0AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+ 6PAQZe104S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06CojXd FPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV9Cz82XBST3i4vTwr i5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrDgfgXy5I2XdGj2HUb4Ysn6npIQf1F GQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2 fu/Z8VFRfS0myGlZYeCsargqNhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9mu iNX6hME6wGkoLfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVdctA4GGqd83EkVAswDQYJKoZI hvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0IXtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+ D1hYc2Ryx+hFjtyp8iY/xnmMsVMIM4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrM d/K4kPFox/la/vot9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+y d+2VZ5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/eaj8GsGsVn 82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnhX9izjFk0WaSrT2y7Hxjb davYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQl033DlZdwJVqwjbDG2jJ9SrcR5q+ss7F Jej6A7na+RZukYT1HCjI/CbM1xyQVqdfbzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVt J94Cj8rDtSvK6evIIVM4pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGa JI7ZjnHKe7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0vm9q p/UsQu0yrbYhnr68 -----END CERTIFICATE----- Hellenic Academic and Research Institutions ECC RootCA 2015 =========================================================== -----BEGIN CERTIFICATE----- MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0 aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9u cyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj aCBJbnN0aXR1dGlvbnMgRUNDIFJvb3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEw MzcxMlowgaoxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmlj IEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUQwQgYD VQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIEVDQyBSb290 Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKgQehLgoRc4vgxEZmGZE4JJS+dQS8KrjVP dJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJajq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoK Vlp8aQuqgAkkbH7BRqNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O BBYEFLQiC4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaeplSTA GiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7SofTUwJCA3sS61kFyjn dc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR -----END CERTIFICATE----- ISRG Root X1 ============ -----BEGIN CERTIFICATE----- MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UE BhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQD EwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQG EwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMT DElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54r Vygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj1 3Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8K b4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCN Aymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ 4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf 1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFu hjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQH usEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/r OPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4G A1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY 9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV 0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwt hDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJw TdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nx e5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZA JzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahD YVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9n JEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJ m+kXQ99b21/+jh5Xos1AnX5iItreGCc= -----END CERTIFICATE----- AC RAIZ FNMT-RCM ================ -----BEGIN CERTIFICATE----- MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsxCzAJBgNVBAYT AkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTAeFw0wODEw MjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJD TTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC ggIBALpxgHpMhm5/yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcf qQgfBBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAzWHFctPVr btQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxFtBDXaEAUwED653cXeuYL j2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z374jNUUeAlz+taibmSXaXvMiwzn15Cou 08YfxGyqxRxqAQVKL9LFwag0Jl1mpdICIfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mw WsXmo8RZZUc1g16p6DULmbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnT tOmlcYF7wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peSMKGJ 47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2ZSysV4999AeU14EC ll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMetUqIJ5G+GR4of6ygnXYMgrwTJbFaa i0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE FPd9xf3E6Jobd2Sn9R2gzL+HYJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1o dHRwOi8vd3d3LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1RXxlDPiyN8+s D8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYMLVN0V2Ue1bLdI4E7pWYjJ2cJ j+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrT Qfv6MooqtyuGC2mDOL7Nii4LcK2NJpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW +YJF1DngoABd15jmfZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7 Ixjp6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp1txyM/1d 8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B9kiABdcPUXmsEKvU7ANm 5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wokRqEIr9baRRmW1FMdW4R58MD3R++Lj8UG rp1MYp3/RgT408m2ECVAdf4WqslKYIYvuu8wd+RU4riEmViAqhOLUTpPSPaLtrM= -----END CERTIFICATE----- Amazon Root CA 1 ================ -----BEGIN CERTIFICATE----- MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsFADA5MQswCQYD VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1 MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC ggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgH FzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQ gLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0t dHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcce VOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB /zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3 DQEBCwUAA4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDIU5PM CCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUsN+gDS63pYaACbvXy 8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vvo/ufQJVtMVT8QtPHRh8jrdkPSHCa 2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2 xJNDd2ZhwLnoQdeXeGADbkpyrqXRfboQnoZsG4q5WTP468SQvvG5 -----END CERTIFICATE----- Amazon Root CA 2 ================ -----BEGIN CERTIFICATE----- MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwFADA5MQswCQYD VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAyMB4XDTE1 MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC ggIBAK2Wny2cSkxKgXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4 kHbZW0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg1dKmSYXp N+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K8nu+NQWpEjTj82R0Yiw9 AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvd fLC6HM783k81ds8P+HgfajZRRidhW+mez/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAEx kv8LV/SasrlX6avvDXbR8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSS btqDT6ZjmUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz7Mt0 Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6+XUyo05f7O0oYtlN c/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI0u1ufm8/0i2BWSlmy5A5lREedCf+ 3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSw DPBMMPQFWAJI/TPlUq9LhONmUjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oA A7CXDpO8Wqj2LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY +gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kSk5Nrp+gvU5LE YFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl7uxMMne0nxrpS10gxdr9HIcW xkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygmbtmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQ gj9sAq+uEjonljYE1x2igGOpm/HlurR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbW aQbLU8uz/mtBzUF+fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoV Yh63n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE76KlXIx3 KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H9jVlpNMKVv/1F2Rs76gi JUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT4PsJYGw= -----END CERTIFICATE----- Amazon Root CA 3 ================ -----BEGIN CERTIFICATE----- MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5MQswCQYDVQQG EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAzMB4XDTE1MDUy NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZB f8ANm+gBG1bG8lKlui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjr Zt6jQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSrttvXBp43 rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkrBqWTrBqYaGFy+uGh0Psc eGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteMYyRIHN8wfdVoOw== -----END CERTIFICATE----- Amazon Root CA 4 ================ -----BEGIN CERTIFICATE----- MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5MQswCQYDVQQG EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSA0MB4XDTE1MDUy NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN /sGKe0uoe0ZLY7Bi9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri 83BkM6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV HQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WBMAoGCCqGSM49BAMDA2gA MGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlwCkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1 AE47xDqUEpHJWEadIRNyp4iciuRMStuW1KyLa2tJElMzrdfkviT8tQp21KW8EA== -----END CERTIFICATE----- TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 ============================================= -----BEGIN CERTIFICATE----- MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIxGDAWBgNVBAcT D0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxpbXNlbCB2ZSBUZWtub2xvamlr IEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0wKwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24g TWVya2V6aSAtIEthbXUgU00xNjA0BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRp ZmlrYXNpIC0gU3VydW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYD VQQGEwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXllIEJpbGlt c2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsTJEth bXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11 IFNNIFNTTCBLb2sgU2VydGlmaWthc2kgLSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEAr3UwM6q7a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y8 6Ij5iySrLqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INrN3wc wv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2XYacQuFWQfw4tJzh0 3+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/iSIzL+aFCr2lqBs23tPcLG07xxO9 WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4fAJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQU ZT/HiobGPN08VFw1+DrtUgxHV8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJ KoZIhvcNAQELBQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPfIPP54+M638yc lNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4lzwDGrpDxpa5RXI4s6ehlj2R e37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0j q5Rm+K37DwhuJi1/FwcJsoz7UMCflo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= -----END CERTIFICATE----- GDCA TrustAUTH R5 ROOT ====================== -----BEGIN CERTIFICATE----- MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UEBhMCQ04xMjAw BgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8wHQYDVQQD DBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVow YjELMAkGA1UEBhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0B AQEFAAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJjDp6L3TQs AlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBjTnnEt1u9ol2x8kECK62p OqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+uKU49tm7srsHwJ5uu4/Ts765/94Y9cnrr pftZTqfrlYwiOXnhLQiPzLyRuEH3FMEjqcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ 9Cy5WmYqsBebnh52nUpmMUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQ xXABZG12ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloPzgsM R6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3GkL30SgLdTMEZeS1SZ D2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeCjGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4 oR24qoAATILnsn8JuLwwoC8N9VKejveSswoAHQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx 9hoh49pwBiFYFIeFd3mqgnkCAwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlR MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZmDRd9FBUb1Ov9 H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5COmSdI31R9KrO9b7eGZONn35 6ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ryL3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd +PwyvzeG5LuOmCd+uh8W4XAR8gPfJWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQ HtZa37dG/OaG+svgIHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBD F8Io2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV09tL7ECQ 8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQXR4EzzffHqhmsYzmIGrv /EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrqT8p+ck0LcIymSLumoRT2+1hEmRSuqguT aaApJUqlyyvdimYHFngVV3Eb7PVHhPOeMTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== -----END CERTIFICATE----- TrustCor RootCert CA-1 ====================== -----BEGIN CERTIFICATE----- MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYDVQQGEwJQQTEP MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp dHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkx MjMxMTcyMzE2WjCBpDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFu YW1hIENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUGA1UECwwe VHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZUcnVzdENvciBSb290Q2Vy dCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv463leLCJhJrMxnHQFgKq1mq jQCj/IDHUHuO1CAmujIS2CNUSSUQIpidRtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4 pQa81QBeCQryJ3pS/C3Vseq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0 JEsq1pme9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CVEY4h gLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorWhnAbJN7+KIor0Gqw /Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/DeOxCbeKyKsZn3MzUOcwHwYDVR0j BBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC AYYwDQYJKoZIhvcNAQELBQADggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5 mDo4Nvu7Zp5I/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZyonnMlo2HD6C qFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djtsL1Ac59v2Z3kf9YKVmgenFK+P 3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdNzl/HHk484IkzlQsPpTLWPFp5LBk= -----END CERTIFICATE----- TrustCor RootCert CA-2 ====================== -----BEGIN CERTIFICATE----- MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNVBAYTAlBBMQ8w DQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQwIgYDVQQKDBtUcnVzdENvciBT eXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0 eTEfMB0GA1UEAwwWVHJ1c3RDb3IgUm9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEy MzExNzI2MzlaMIGkMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5h bWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0 IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnIG7CKqJiJJWQdsg4foDSq8Gb ZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9Nk RvRUqdw6VC0xK5mC8tkq1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1 oYxOdqHp2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nKDOOb XUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hapeaz6LMvYHL1cEksr1 /p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF3wP+TfSvPd9cW436cOGlfifHhi5q jxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQP eSghYA2FFn3XVDjxklb9tTNMg9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+Ctg rKAmrhQhJ8Z3mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh 8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAdBgNVHQ4EFgQU 2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6UnrybPZx9mCAZ5YwwYrIwDwYD VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/h Osh80QA9z+LqBrWyOrsGS2h60COXdKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnp kpfbsEZC89NiqpX+MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv 2wnL/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RXCI/hOWB3 S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYaZH9bDTMJBzN7Bj8RpFxw PIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dv DDqPys/cA8GiCcjl/YBeyGBCARsaU1q7N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYU RpFHmygk71dSTlxCnKr3Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANE xdqtvArBAs8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp5KeX RKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu1uwJ -----END CERTIFICATE----- TrustCor ECA-1 ============== -----BEGIN CERTIFICATE----- MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYDVQQGEwJQQTEP MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp dHkxFzAVBgNVBAMMDlRydXN0Q29yIEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3Mjgw N1owgZwxCzAJBgNVBAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5 MSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29y IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3IgRUNBLTEwggEiMA0GCSqG SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb3w9U73NjKYKtR8aja+3+XzP4Q1HpGjOR MRegdMTUpwHmspI+ap3tDvl0mEDTPwOABoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23 xFUfJ3zSCNV2HykVh0A53ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmc p0yJF4OuowReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/wZ0+ fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZFZtS6mFjBAgMBAAGj YzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAfBgNVHSMEGDAWgBREnkj1zG1I1KBL f/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsF AAOCAQEABT41XBVwm8nHc2FvcivUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u /ukZMjgDfxT2AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50soIipX1TH0Xs J5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BIWJZpTdwHjFGTot+fDz2LYLSC jaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1WitJ/X5g== -----END CERTIFICATE----- SSL.com Root Certification Authority RSA ======================================== -----BEGIN CERTIFICATE----- MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxDjAM BgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24x MTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYw MjEyMTczOTM5WhcNNDEwMjEyMTczOTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NM LmNvbSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcNAQEBBQAD ggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2RxFdHaxh3a3by/ZPkPQ/C Fp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aXqhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8 P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcCC52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/ge oeOy3ZExqysdBP+lSgQ36YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkp k8zruFvh/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrFYD3Z fBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93EJNyAKoFBbZQ+yODJ gUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVcUS4cK38acijnALXRdMbX5J+tB5O2 UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi8 1xtZPCvM8hnIk2snYxnP/Okm+Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4s bE6x/c+cCbqiM+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4GA1UdDwEB/wQE AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGVcpNxJK1ok1iOMq8bs3AD/CUr dIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBcHadm47GUBwwyOabqG7B52B2ccETjit3E+ZUf ijhDPwGFpUenPUayvOUiaPd7nNgsPgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAsl u1OJD7OAUN5F7kR/q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjq erQ0cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jra6x+3uxj MxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90IH37hVZkLId6Tngr75qNJ vTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/YK9f1JmzJBjSWFupwWRoyeXkLtoh/D1JI Pb9s2KJELtFOt3JY04kTlf5Eq/jXixtunLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406y wKBjYZC6VWg3dGq2ktufoYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NI WuuA8ShYIc2wBlX7Jz9TkHCpBB5XJ7k= -----END CERTIFICATE----- SSL.com Root Certification Authority ECC ======================================== -----BEGIN CERTIFICATE----- MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMCVVMxDjAMBgNV BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xMTAv BgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEy MTgxNDAzWhcNNDEwMjEyMTgxNDAzWjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAO BgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuBBAAiA2IA BEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI7Z4INcgn64mMU1jrYor+ 8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPgCemB+vNH06NjMGEwHQYDVR0OBBYEFILR hXMw5zUE044CkvvlpNHEIejNMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTT jgKS++Wk0cQh6M0wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCW e+0F+S8Tkdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+gA0z 5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl -----END CERTIFICATE----- SSL.com EV Root Certification Authority RSA R2 ============================================== -----BEGIN CERTIFICATE----- MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAlVTMQ4w DAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9u MTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy MB4XDTE3MDUzMTE4MTQzN1oXDTQyMDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQI DAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYD VQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMIICIjAN BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvqM0fNTPl9fb69LT3w23jh hqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssufOePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7w cXHswxzpY6IXFJ3vG2fThVUCAtZJycxa4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTO Zw+oz12WGQvE43LrrdF9HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+ B6KjBSYRaZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcAb9Zh CBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQGp8hLH94t2S42Oim 9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQVPWKchjgGAGYS5Fl2WlPAApiiECto RHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMOpgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+Slm JuwgUHfbSguPvuUCYHBBXtSuUDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48 +qvWBkofZ6aYMBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa49QaAJadz20Zp qJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBWs47LCp1Jjr+kxJG7ZhcFUZh1 ++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nx Y/hoLVUE0fKNsKTPvDxeH3jnpaAgcLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2G guDKBAdRUNf/ktUM79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDz OFSz/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXtll9ldDz7 CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEmKf7GUmG6sXP/wwyc5Wxq lD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKKQbNmC1r7fSOl8hqw/96bg5Qu0T/fkreR rwU7ZcegbLHNYhLDkBvjJc40vG93drEQw/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1 hlMYegouCRw2n5H9gooiS9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX 9hwJ1C07mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== -----END CERTIFICATE----- SSL.com EV Root Certification Authority ECC =========================================== -----BEGIN CERTIFICATE----- MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMCVVMxDjAMBgNV BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xNDAy BgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYw MjEyMTgxNTIzWhcNNDEwMjEyMTgxNTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NM LmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB BAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMAVIbc/R/fALhBYlzccBYy 3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1KthkuWnBaBu2+8KGwytAJKaNjMGEwHQYDVR0O BBYEFFvKXuXe0oGqzagtZFG22XKbl+ZPMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe 5d7SgarNqC1kUbbZcpuX5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJ N+vp1RPZytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZgh5Mm m7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== -----END CERTIFICATE----- GlobalSign Root CA - R6 ======================= -----BEGIN CERTIFICATE----- MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEgMB4GA1UECxMX R2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkds b2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQxMjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9i YWxTaWduIFJvb3QgQ0EgLSBSNjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFs U2lnbjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQss grRIxutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1kZguSgMpE 3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxDaNc9PIrFsmbVkJq3MQbF vuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJwLnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqM PKq0pPbzlUoSB239jLKJz9CgYXfIWHSw1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+ azayOeSsJDa38O+2HBNXk7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05O WgtH8wY2SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/hbguy CLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4nWUx2OVvq+aWh2IMP 0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpYrZxCRXluDocZXFSxZba/jJvcE+kN b7gu3GduyYsRtYQUigAZcIN5kZeR1BonvzceMgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQE AwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNV HSMEGDAWgBSubAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGtIxg93eFyRJa0 lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr6155wsTLxDKZmOMNOsIeDjHfrY BzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLjvUYAGm0CuiVdjaExUd1URhxN25mW7xocBFym Fe944Hn+Xds+qkxV/ZoVqW/hpvvfcDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr 3TsTjxKM4kEaSHpzoHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB1 0jZpnOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfspA9MRf/T uTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+vJJUEeKgDu+6B5dpffItK oZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+t JDfLRVpOoERIyNiwmcUVhAn21klJwGW45hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= -----END CERTIFICATE----- OISTE WISeKey Global Root GC CA =============================== -----BEGIN CERTIFICATE----- MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQswCQYDVQQGEwJD SDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEo MCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRa Fw00MjA1MDkwOTU4MzNaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQL ExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh bCBSb290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4nieUqjFqdr VCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4Wp2OQ0jnUsYd4XxiWD1Ab NTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd BgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7TrYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0E AwMDaAAwZQIwJsdpW9zV57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtk AjEA2zQgMgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 -----END CERTIFICATE----- GTS Root R1 =========== -----BEGIN CERTIFICATE----- MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBHMQswCQYDVQQG EwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJv b3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAG A1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIi MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx 9vaMf/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7wCl7r aKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjwTcLCeoiKu7rPWRnW r4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0PfyblqAj+lug8aJRT7oM6iCsVlgmy4HqM LnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly 4cpk9+aCEI3oncKKiPo4Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr 06zqkUspzBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70paDPvOmbsB4om 3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrNVjzRlwW5y0vtOUucxD/SVRNu JLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEM BQADggIBADiWCu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1 d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6ZXPYfcX3v73sv fuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZRgyFmxhE+885H7pwoHyXa/6xm ld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9b gsiG1eGZbYwE8na6SfZu6W0eX6DvJ4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq 4BjFbkerQUIpm/ZgDdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWEr tXvM+SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyyF62ARPBo pY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9SQ98POyDGCBDTtWTurQ0 sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdwsE3PYJ/HQcu51OyLemGhmW/HGY0dVHLql CFF1pkgl -----END CERTIFICATE----- GTS Root R2 =========== -----BEGIN CERTIFICATE----- MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBHMQswCQYDVQQG EwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJv b3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAG A1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIi MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTuk k3LvCvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY6Dlo 7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAuMC6C/Pq8tBcKSOWI m8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7kRXuJVfeKH2JShBKzwkCX44ofR5Gm dFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbu ak7MkogwTZq9TwtImoS1mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscsz cTJGr61K8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKaG73Vululycsl aVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCqgc7dGtxRcw1PcOnlthYhGXmy 5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEM BQADggIBALZp8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiTz9D2PGcDFWEJ +YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiApJiS4wGWAqoC7o87xdFtCjMw c3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvbpxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3Da WsYDQvTtN6LwG1BUSw7YhN4ZKJmBR64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5r n/WkhLx3+WuXrD5RRaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56Gtmwfu Nmsk0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC5AwiWVIQ 7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiFizoHCBy69Y9Vmhh1fuXs gWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLnyOd/xCxgXS/Dr55FBcOEArf9LAhST4Ld o/DUhgkC -----END CERTIFICATE----- GTS Root R3 =========== -----BEGIN CERTIFICATE----- MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQswCQYDVQQGEwJV UzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3Qg UjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UE ChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcq hkjOPQIBBgUrgQQAIgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUU Rout736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL24Cej QjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTB8Sa6oC2uhYHP 0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFukfCPAlaUs3L6JbyO5o91lAFJekazInXJ0 glMLfalAvWhgxeG4VDvBNhcl2MG9AjEAnjWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOa KaqW04MjyaR7YbPMAuhd -----END CERTIFICATE----- GTS Root R4 =========== -----BEGIN CERTIFICATE----- MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQswCQYDVQQGEwJV UzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3Qg UjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UE ChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcq hkjOPQIBBgUrgQQAIgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa 6zzuhXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvRHYqj QjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSATNbrdP9JNqPV 2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0CMRw3J5QdCHojXohw0+WbhXRIjVhLfoI N+4Zba3bssx9BzT1YBkstTTZbyACMANxsbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11x zPKwTdb+mciUqXWi4w== -----END CERTIFICATE----- UCA Global G2 Root ================== -----BEGIN CERTIFICATE----- MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9MQswCQYDVQQG EwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBHbG9iYWwgRzIgUm9vdDAeFw0x NjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlU cnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A MIICCgKCAgEAxeYrb3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmT oni9kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzmVHqUwCoV 8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/RVogvGjqNO7uCEeBHANBS h6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDcC/Vkw85DvG1xudLeJ1uK6NjGruFZfc8o LTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIjtm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/ R+zvWr9LesGtOxdQXGLYD0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBe KW4bHAyvj5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6DlNaBa 4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6iIis7nCs+dwp4wwc OxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznPO6Q0ibd5Ei9Hxeepl2n8pndntd97 8XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O BBYEFIHEjMz15DD/pQwIX4wVZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo 5sOASD0Ee/ojL3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl1qnN3e92mI0A Ds0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oUb3n09tDh05S60FdRvScFDcH9 yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LVPtateJLbXDzz2K36uGt/xDYotgIVilQsnLAX c47QN6MUPJiVAAwpBVueSUmxX8fjy88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHo jhJi6IjMtX9Gl8CbEGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZk bxqgDMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI+Vg7RE+x ygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGyYiGqhkCyLmTTX8jjfhFn RR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bXUB+K+wb1whnw0A== -----END CERTIFICATE----- UCA Extended Validation Root ============================ -----BEGIN CERTIFICATE----- MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBHMQswCQYDVQQG EwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9u IFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMxMDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8G A1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIi MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrs iWogD4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvSsPGP2KxF Rv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aopO2z6+I9tTcg1367r3CTu eUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dksHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR 59mzLC52LqGj3n5qiAno8geK+LLNEOfic0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH 0mK1lTnj8/FtDw5lhIpjVMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KR el7sFsLzKuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/TuDv B0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41Gsx2VYVdWf6/wFlth WG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs1+lvK9JKBZP8nm9rZ/+I8U6laUpS NwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQDfwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS 3H5aBZ8eNJr34RQwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQEL BQADggIBADaNl8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQVBcZEhrxH9cM aVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5c6sq1WnIeJEmMX3ixzDx/BR4 dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb +7lsq+KePRXBOy5nAliRn+/4Qh8st2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOW F3sGPjLtx7dCvHaj2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwi GpWOvpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2CxR9GUeOc GMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmxcmtpzyKEC2IPrNkZAJSi djzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbMfjKaiJUINlK73nZfdklJrX+9ZSCyycEr dhh2n1ax -----END CERTIFICATE----- Certigna Root CA ================ -----BEGIN CERTIFICATE----- MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAwWjELMAkGA1UE BhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAwMiA0ODE0NjMwODEwMDAzNjEZ MBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0xMzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjda MFoxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYz MDgxMDAwMzYxGTAXBgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4IC DwAwggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sOty3tRQgX stmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9MCiBtnyN6tMbaLOQdLNyz KNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPuI9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8 JXrJhFwLrN1CTivngqIkicuQstDuI7pmTLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16 XdG+RCYyKfHx9WzMfgIhC59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq 4NYKpkDfePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3YzIoej wpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWTCo/1VTp2lc5ZmIoJ lXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1kJWumIWmbat10TWuXekG9qxf5kBdI jzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp/ /TBt2dzhauH8XwIDAQABo4IBGjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw HQYDVR0OBBYEFBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of 1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczovL3d3d3cuY2Vy dGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilodHRwOi8vY3JsLmNlcnRpZ25h LmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYraHR0cDovL2NybC5kaGlteW90aXMuY29tL2Nl cnRpZ25hcm9vdGNhLmNybDANBgkqhkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOIt OoldaDgvUSILSo3L6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxP TGRGHVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH60BGM+RFq 7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncBlA2c5uk5jR+mUYyZDDl3 4bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdio2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd 8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS 6Cvu5zHbugRqh5jnxV/vfaci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaY tlu3zM63Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayhjWZS aX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw3kAP+HwV96LOPNde E4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= -----END CERTIFICATE----- emSign Root CA - G1 =================== -----BEGIN CERTIFICATE----- MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYDVQQGEwJJTjET MBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRl ZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBHMTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgx ODMwMDBaMGcxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVk aHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIB IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQzf2N4aLTN LnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO8oG0x5ZOrRkVUkr+PHB1 cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aqd7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHW DV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhMtTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ 6DqS0hdW5TUaQBw+jSztOd9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrH hQIDAQABo0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQDAgEG MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31xPaOfG1vR2vjTnGs2 vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjMwiI/aTvFthUvozXGaCocV685743Q NcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6dGNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q +Mri/Tm3R7nrft8EI6/6nAYH6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeih U80Bv2noWgbyRQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx iN66zB+Afko= -----END CERTIFICATE----- emSign ECC Root CA - G3 ======================= -----BEGIN CERTIFICATE----- MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQGEwJJTjETMBEG A1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRlZDEg MB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4 MTgzMDAwWjBrMQswCQYDVQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11 ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g RzMwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0WXTsuwYc 58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xySfvalY8L1X44uT6EYGQIr MgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuBzhccLikenEhjQjAOBgNVHQ8BAf8EBAMC AQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+D CBeQyh+KTOgNG3qxrdWBCUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7 jHvrZQnD+JbNR6iC8hZVdyR+EhCVBCyj -----END CERTIFICATE----- emSign Root CA - C1 =================== -----BEGIN CERTIFICATE----- MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkGA1UEBhMCVVMx EzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNp Z24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAwMFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UE BhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQD ExNlbVNpZ24gUm9vdCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+up ufGZBczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZHdPIWoU/ Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH3DspVpNqs8FqOp099cGX OFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvHGPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4V I5b2P/AgNBbeCsbEBEV5f6f9vtKppa+cxSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleooms lMuoaJuvimUnzYnu3Yy1aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+ XJGFehiqTbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQAD ggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87/kOXSTKZEhVb3xEp /6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4kqNPEjE2NuLe/gDEo2APJ62gsIq1 NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrGYQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9 wC68AivTxEDkigcxHpvOJpkT+xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQ BmIMMMAVSKeoWXzhriKi4gp6D/piq1JM4fHfyr6DDUI= -----END CERTIFICATE----- emSign ECC Root CA - C3 ======================= -----BEGIN CERTIFICATE----- MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQGEwJVUzETMBEG A1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMxIDAeBgNVBAMTF2VtU2lnbiBF Q0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAwMFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UE BhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQD ExdlbVNpZ24gRUNDIFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd 6bciMK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4OjavtisIGJAnB9 SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0OBBYEFPtaSNCAIEDyqOkA B2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49BAMDA2gA MGUCMQC02C8Cif22TGK6Q04ThHK1rt0c3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwU ZOR8loMRnLDRWmFLpg9J0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== -----END CERTIFICATE----- Hongkong Post Root CA 3 ======================= -----BEGIN CERTIFICATE----- MIIFzzCCA7egAwIBAgIUCBZfikyl7ADJk0DfxMauI7gcWqQwDQYJKoZIhvcNAQELBQAwbzELMAkG A1UEBhMCSEsxEjAQBgNVBAgTCUhvbmcgS29uZzESMBAGA1UEBxMJSG9uZyBLb25nMRYwFAYDVQQK Ew1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25na29uZyBQb3N0IFJvb3QgQ0EgMzAeFw0xNzA2 MDMwMjI5NDZaFw00MjA2MDMwMjI5NDZaMG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtv bmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMX SG9uZ2tvbmcgUG9zdCBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz iNfqzg8gTr7m1gNt7ln8wlffKWihgw4+aMdoWJwcYEuJQwy51BWy7sFOdem1p+/l6TWZ5Mwc50tf jTMwIDNT2aa71T4Tjukfh0mtUC1Qyhi+AViiE3CWu4mIVoBc+L0sPOFMV4i707mV78vH9toxdCim 5lSJ9UExyuUmGs2C4HDaOym71QP1mbpV9WTRYA6ziUm4ii8F0oRFKHyPaFASePwLtVPLwpgchKOe sL4jpNrcyCse2m5FHomY2vkALgbpDDtw1VAliJnLzXNg99X/NWfFobxeq81KuEXryGgeDQ0URhLj 0mRiikKYvLTGCAj4/ahMZJx2Ab0vqWwzD9g/KLg8aQFChn5pwckGyuV6RmXpwtZQQS4/t+TtbNe/ JgERohYpSms0BpDsE9K2+2p20jzt8NYt3eEV7KObLyzJPivkaTv/ciWxNoZbx39ri1UbSsUgYT2u y1DhCDq+sI9jQVMwCFk8mB13umOResoQUGC/8Ne8lYePl8X+l2oBlKN8W4UdKjk60FSh0Tlxnf0h +bV78OLgAo9uliQlLKAeLKjEiafv7ZkGL7YKTE/bosw3Gq9HhS2KX8Q0NEwA/RiTZxPRN+ZItIsG xVd7GYYKecsAyVKvQv83j+GjHno9UKtjBucVtT+2RTeUN7F+8kjDf8V1/peNRY8apxpyKBpADwID AQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQXnc0e i9Y5K3DTXNSguB+wAPzFYTAdBgNVHQ4EFgQUF53NHovWOStw01zUoLgfsAD8xWEwDQYJKoZIhvcN AQELBQADggIBAFbVe27mIgHSQpsY1Q7XZiNc4/6gx5LS6ZStS6LG7BJ8dNVI0lkUmcDrudHr9Egw W62nV3OZqdPlt9EuWSRY3GguLmLYauRwCy0gUCCkMpXRAJi70/33MvJJrsZ64Ee+bs7Lo3I6LWld y8joRTnU+kLBEUx3XZL7av9YROXrgZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov +BS5gLNdTaqX4fnkGMX41TiMJjz98iji7lpJiCzfeT2OnpA8vUFKOt1b9pq0zj8lMH8yfaIDlNDc eqFS3m6TjRgm/VWsvY+b0s+v54Ysyx8Jb6NvqYTUc79NoXQbTiNg8swOqn+knEwlqLJmOzj/2ZQw 9nKEvmhVEA/GcywWaZMH/rFF7buiVWqw2rVKAiUnhde3t4ZEFolsgCs+l6mc1X5VTMbeRRAc6uk7 nwNT7u56AQIWeNTowr5GdogTPyK7SBIdUgC0An4hGh6cJfTzPV4e0hz5sy229zdcxsshTrD3mUcY hcErulWuBurQB7Lcq9CClnXO0lD+mefPL5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB 60PZ2Pierc+xYw5F9KBaLJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fq dBb9HxEGmpv0 -----END CERTIFICATE----- Entrust Root Certification Authority - G4 ========================================= -----BEGIN CERTIFICATE----- MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAwgb4xCzAJBgNV BAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3Qu bmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1 dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1 dGhvcml0eSAtIEc0MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYT AlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhv cml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhv cml0eSAtIEc0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3D umSXbcr3DbVZwbPLqGgZ2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV 3imz/f3ET+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j5pds 8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAMC1rlLAHGVK/XqsEQ e9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73TDtTUXm6Hnmo9RR3RXRv06QqsYJn7 ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNXwbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5X xNMhIWNlUpEbsZmOeX7m640A2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV 7rtNOzK+mndmnqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwlN4y6mACXi0mW Hv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNjc0kCAwEAAaNCMEAwDwYDVR0T AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9n MA0GCSqGSIb3DQEBCwUAA4ICAQAS5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4Q jbRaZIxowLByQzTSGwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht 7LGrhFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/B7NTeLUK YvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uIAeV8KEsD+UmDfLJ/fOPt jqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbwH5Lk6rWS02FREAutp9lfx1/cH6NcjKF+ m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKW RGhXxNUzzxkvFMSUHHuk2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjA JOgc47OlIQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk5F6G +TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuYn/PIjhs4ViFqUZPT kcpG2om3PVODLAgfi49T3f+sHw== -----END CERTIFICATE----- Microsoft ECC Root Certificate Authority 2017 ============================================= -----BEGIN CERTIFICATE----- MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4 MjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw NAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ BgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6 thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB eMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM +Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf Xu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR eNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= -----END CERTIFICATE----- Microsoft RSA Root Certificate Authority 2017 ============================================= -----BEGIN CERTIFICATE----- MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg UlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw NzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u MTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml 7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e S0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7 1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+ dkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F yGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS MLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr lMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ 0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ ClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og 6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80 dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk +ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex /2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy AmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW ZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE 7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT c0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D 5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E -----END CERTIFICATE----- e-Szigno Root CA 2017 ===================== -----BEGIN CERTIFICATE----- MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNVBAYTAkhVMREw DwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUt MjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJvb3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZa Fw00MjA4MjIxMjA3MDZaMHExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UE CgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3pp Z25vIFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtvxie+RJCx s1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+HWyx7xf58etqjYzBhMA8G A1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSHERUI0arBeAyxr87GyZDv vzAEwDAfBgNVHSMEGDAWgBSHERUI0arBeAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEA tVfd14pVCzbhhkT61NlojbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxO svxyqltZ+efcMQ== -----END CERTIFICATE----- certSIGN Root CA G2 =================== -----BEGIN CERTIFICATE----- MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNVBAYTAlJPMRQw EgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04gUk9PVCBDQSBHMjAeFw0xNzAy MDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lH TiBTQTEcMBoGA1UECxMTY2VydFNJR04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIP ADCCAgoCggIBAMDFdRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05 N0IwvlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZuIt4Imfk abBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhpn+Sc8CnTXPnGFiWeI8Mg wT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKscpc/I1mbySKEwQdPzH/iV8oScLumZfNp dWO9lfsbl83kqK/20U6o2YpxJM02PbyWxPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91Qqh ngLjYl/rNUssuHLoPj1PrCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732 jcZZroiFDsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fxDTvf 95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgyLcsUDFDYg2WD7rlc z8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6CeWRgKRM+o/1Pcmqr4tTluCRVLERL iohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1Ud DgQWBBSCIS1mxteg4BXrzkwJd8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOB ywaK8SJJ6ejqkX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQlqiCA2ClV9+BB /AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0OJD7uNGzcgbJceaBxXntC6Z5 8hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+cNywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5 BiKDUyUM/FHE5r7iOZULJK2v0ZXkltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklW atKcsWMy5WHgUyIOpwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tU Sxfj03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZkPuXaTH4M NMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE1LlSVHJ7liXMvGnjSG4N 0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MXQRBdJ3NghVdJIgc= -----END CERTIFICATE----- Trustwave Global Certification Authority ======================================== -----BEGIN CERTIFICATE----- MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV UzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2 ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9u IEF1dGhvcml0eTAeFw0xNzA4MjMxOTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJV UzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2 ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9u IEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALldUShLPDeS0YLOvR29 zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0XznswuvCAAJWX/NKSqIk4cXGIDtiLK0thAf LdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4Bq stTnoApTAbqOl5F2brz81Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9o WN0EACyW80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotPJqX+ OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1lRtzuzWniTY+HKE40 Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfwhI0Vcnyh78zyiGG69Gm7DIwLdVcE uE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm +9jaJXLE9gCxInm943xZYkqcBW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqj ifLJS3tBEW1ntwiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1UdDwEB/wQEAwIB BjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W0OhUKDtkLSGm+J1WE2pIPU/H PinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfeuyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0H ZJDmHvUqoai7PF35owgLEQzxPy0QlG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla 4gt5kNdXElE1GYhBaCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5R vbbEsLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPTMaCm/zjd zyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qequ5AvzSxnI9O4fKSTx+O 856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxhVicGaeVyQYHTtgGJoC86cnn+OjC/QezH Yj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu 3R3y4G5OBVixwJAWKqQ9EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP 29FpHOTKyeC2nOnOcXHebD8WpHk= -----END CERTIFICATE----- Trustwave Global ECC P256 Certification Authority ================================================= -----BEGIN CERTIFICATE----- MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYDVQQGEwJVUzER MA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBI b2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZp Y2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYD VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRy dXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDI1 NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABH77bOYj 43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoNFWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqm P62jQzBBMA8GA1UdEwEB/wQFMAMBAf8wDwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt 0UrrdaVKEJmzsaGLSvcwCgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjz RM4q3wghDDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 -----END CERTIFICATE----- Trustwave Global ECC P384 Certification Authority ================================================= -----BEGIN CERTIFICATE----- MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYDVQQGEwJVUzER MA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBI b2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZp Y2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYD VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRy dXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDM4 NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuBBAAiA2IABGvaDXU1CDFH Ba5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJj9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr /TklZvFe/oyujUF5nQlgziip04pt89ZF1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNV HQ8BAf8EBQMDBwYAMB0GA1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNn ADBkAjA3AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsCMGcl CrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVuSw== -----END CERTIFICATE----- NAVER Global Root Certification Authority ========================================= -----BEGIN CERTIFICATE----- MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEMBQAwaTELMAkG A1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRGT1JNIENvcnAuMTIwMAYDVQQD DClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4 NDJaFw0zNzA4MTgyMzU5NTlaMGkxCzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVT UyBQTEFURk9STSBDb3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlv biBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVAiQqrDZBb UGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH38dq6SZeWYp34+hInDEW +j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lEHoSTGEq0n+USZGnQJoViAbbJAh2+g1G7 XNr4rRVqmfeSVPc0W+m/6imBEtRTkZazkVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2 aacp+yPOiNgSnABIqKYPszuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4 Yb8ObtoqvC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHfnZ3z VHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaGYQ5fG8Ir4ozVu53B A0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo0es+nPxdGoMuK8u180SdOqcXYZai cdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3aCJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejy YhbLgGvtPe31HzClrkvJE+2KAQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNV HQ4EFgQU0p+I36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoNqo0hV4/GPnrK 21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatjcu3cvuzHV+YwIHHW1xDBE1UB jCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm+LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bx hYTeodoS76TiEJd6eN4MUZeoIUCLhr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTg E34h5prCy8VCZLQelHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTH D8z7p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8piKCk5XQ A76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLRLBT/DShycpWbXgnbiUSY qqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oG I/hGoiLtk/bdmuYqh7GYVPEi92tF4+KOdh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmg kpzNNIaRkPpkUZ3+/uul9XXeifdy -----END CERTIFICATE----- AC RAIZ FNMT-RCM SERVIDORES SEGUROS =================================== -----BEGIN CERTIFICATE----- MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQswCQYDVQQGEwJF UzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgwFgYDVQRhDA9WQVRFUy1RMjgy NjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1SQ00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4 MTIyMDA5MzczM1oXDTQzMTIyMDA5MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQt UkNNMQ4wDAYDVQQLDAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNB QyBSQUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuBBAAiA2IA BPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LHsbI6GA60XYyzZl2hNPk2 LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oKUm8BA06Oi6NCMEAwDwYDVR0TAQH/BAUw AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqG SM49BAMDA2kAMGYCMQCuSuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoD zBOQn5ICMQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJyv+c= -----END CERTIFICATE----- GlobalSign Root R46 =================== -----BEGIN CERTIFICATE----- MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUAMEYxCzAJBgNV BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJv b3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAX BgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIi MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08Es CVeJOaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQGvGIFAha/ r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud316HCkD7rRlr+/fKYIje 2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo0q3v84RLHIf8E6M6cqJaESvWJ3En7YEt bWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSEy132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvj K8Cd+RTyG/FWaha/LIWFzXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD4 12lPFzYE+cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCNI/on ccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzsx2sZy/N78CsHpdls eVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqaByFrgY/bxFn63iLABJzjqls2k+g9 vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYD VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEM BQADggIBAHx47PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti2kM3S+LGteWy gxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIkpnnpHs6i58FZFZ8d4kuaPp92 CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRFFRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZm OUdkLG5NrmJ7v2B0GbhWrJKsFjLtrWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qq JZ4d16GLuc1CLgSkZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwye qiv5u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP4vkYxboz nxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6N3ec592kD3ZDZopD8p/7 DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3vouXsXgxT7PntgMTzlSdriVZzH81Xwj3 QEUxeCp6 -----END CERTIFICATE----- GlobalSign Root E46 =================== -----BEGIN CERTIFICATE----- MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYxCzAJBgNVBAYT AkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3Qg RTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNV BAoTEEdsb2JhbFNpZ24gbnYtc2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcq hkjOPQIBBgUrgQQAIgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkB jtjqR+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGddyXqBPCCj QjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBQxCpCPtsad0kRL gLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZk vLtoURMMA/cVi4RguYv/Uo7njLwcAjA8+RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+ CAezNIm8BZ/3Hobui3A= -----END CERTIFICATE----- GLOBALTRUST 2020 ================ -----BEGIN CERTIFICATE----- MIIFgjCCA2qgAwIBAgILWku9WvtPilv6ZeUwDQYJKoZIhvcNAQELBQAwTTELMAkGA1UEBhMCQVQx IzAhBgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVT VCAyMDIwMB4XDTIwMDIxMDAwMDAwMFoXDTQwMDYxMDAwMDAwMFowTTELMAkGA1UEBhMCQVQxIzAh BgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVTVCAy MDIwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAri5WrRsc7/aVj6B3GyvTY4+ETUWi D59bRatZe1E0+eyLinjF3WuvvcTfk0Uev5E4C64OFudBc/jbu9G4UeDLgztzOG53ig9ZYybNpyrO VPu44sB8R85gfD+yc/LAGbaKkoc1DZAoouQVBGM+uq/ufF7MpotQsjj3QWPKzv9pj2gOlTblzLmM CcpL3TGQlsjMH/1WljTbjhzqLL6FLmPdqqmV0/0plRPwyJiT2S0WR5ARg6I6IqIoV6Lr/sCMKKCm fecqQjuCgGOlYx8ZzHyyZqjC0203b+J+BlHZRYQfEs4kUmSFC0iAToexIiIwquuuvuAC4EDosEKA A1GqtH6qRNdDYfOiaxaJSaSjpCuKAsR49GiKweR6NrFvG5Ybd0mN1MkGco/PU+PcF4UgStyYJ9OR JitHHmkHr96i5OTUawuzXnzUJIBHKWk7buis/UDr2O1xcSvy6Fgd60GXIsUf1DnQJ4+H4xj04KlG DfV0OoIu0G4skaMxXDtG6nsEEFZegB31pWXogvziB4xiRfUg3kZwhqG8k9MedKZssCz3AwyIDMvU clOGvGBG85hqwvG/Q/lwIHfKN0F5VVJjjVsSn8VoxIidrPIwq7ejMZdnrY8XD2zHc+0klGvIg5rQ mjdJBKuxFshsSUktq6HQjJLyQUp5ISXbY9e2nKd+Qmn7OmMCAwEAAaNjMGEwDwYDVR0TAQH/BAUw AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFNwuH9FhN3nkq9XVsxJxaD1qaJwiMB8GA1Ud IwQYMBaAFNwuH9FhN3nkq9XVsxJxaD1qaJwiMA0GCSqGSIb3DQEBCwUAA4ICAQCR8EICaEDuw2jA VC/f7GLDw56KoDEoqoOOpFaWEhCGVrqXctJUMHytGdUdaG/7FELYjQ7ztdGl4wJCXtzoRlgHNQIw 4Lx0SsFDKv/bGtCwr2zD/cuz9X9tAy5ZVp0tLTWMstZDFyySCstd6IwPS3BD0IL/qMy/pJTAvoe9 iuOTe8aPmxadJ2W8esVCgmxcB9CpwYhgROmYhRZf+I/KARDOJcP5YBugxZfD0yyIMaK9MOzQ0MAS 8cE54+X1+NZK3TTN+2/BT+MAi1bikvcoskJ3ciNnxz8RFbLEAwW+uxF7Cr+obuf/WEPPm2eggAe2 HcqtbepBEX4tdJP7wry+UUTF72glJ4DjyKDUEuzZpTcdN3y0kcra1LGWge9oXHYQSa9+pTeAsRxS vTOBTI/53WXZFM2KJVj04sWDpQmQ1GwUY7VA3+vA/MRYfg0UFodUJ25W5HCEuGwyEn6CMUO+1918 oa2u1qsgEu8KwxCMSZY13At1XrFP1U80DhEgB3VDRemjEdqso5nCtnkn4rnvyOL2NSl6dPrFf4IF YqYK6miyeUcGbvJXqBUzxvd4Sj1Ce2t+/vdG6tHrju+IaFvowdlxfv1k7/9nR4hYJS8+hge9+6jl gqispdNpQ80xiEmEU5LAsTkbOYMBMMTyqfrQA71yN2BWHzZ8vTmR9W0Nv3vXkg== -----END CERTIFICATE----- ANF Secure Server Root CA ========================= -----BEGIN CERTIFICATE----- MIIF7zCCA9egAwIBAgIIDdPjvGz5a7EwDQYJKoZIhvcNAQELBQAwgYQxEjAQBgNVBAUTCUc2MzI4 NzUxMDELMAkGA1UEBhMCRVMxJzAlBgNVBAoTHkFORiBBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lv bjEUMBIGA1UECxMLQU5GIENBIFJhaXoxIjAgBgNVBAMTGUFORiBTZWN1cmUgU2VydmVyIFJvb3Qg Q0EwHhcNMTkwOTA0MTAwMDM4WhcNMzkwODMwMTAwMDM4WjCBhDESMBAGA1UEBRMJRzYzMjg3NTEw MQswCQYDVQQGEwJFUzEnMCUGA1UEChMeQU5GIEF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uMRQw EgYDVQQLEwtBTkYgQ0EgUmFpejEiMCAGA1UEAxMZQU5GIFNlY3VyZSBTZXJ2ZXIgUm9vdCBDQTCC AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANvrayvmZFSVgpCjcqQZAZ2cC4Ffc0m6p6zz BE57lgvsEeBbphzOG9INgxwruJ4dfkUyYA8H6XdYfp9qyGFOtibBTI3/TO80sh9l2Ll49a2pcbnv T1gdpd50IJeh7WhM3pIXS7yr/2WanvtH2Vdy8wmhrnZEE26cLUQ5vPnHO6RYPUG9tMJJo8gN0pcv B2VSAKduyK9o7PQUlrZXH1bDOZ8rbeTzPvY1ZNoMHKGESy9LS+IsJJ1tk0DrtSOOMspvRdOoiXse zx76W0OLzc2oD2rKDF65nkeP8Nm2CgtYZRczuSPkdxl9y0oukntPLxB3sY0vaJxizOBQ+OyRp1RM VwnVdmPF6GUe7m1qzwmd+nxPrWAI/VaZDxUse6mAq4xhj0oHdkLePfTdsiQzW7i1o0TJrH93PB0j 7IKppuLIBkwC/qxcmZkLLxCKpvR/1Yd0DVlJRfbwcVw5Kda/SiOL9V8BY9KHcyi1Swr1+KuCLH5z JTIdC2MKF4EA/7Z2Xue0sUDKIbvVgFHlSFJnLNJhiQcND85Cd8BEc5xEUKDbEAotlRyBr+Qc5RQe 8TZBAQIvfXOn3kLMTOmJDVb3n5HUA8ZsyY/b2BzgQJhdZpmYgG4t/wHFzstGH6wCxkPmrqKEPMVO Hj1tyRRM4y5Bu8o5vzY8KhmqQYdOpc5LMnndkEl/AgMBAAGjYzBhMB8GA1UdIwQYMBaAFJxf0Gxj o1+TypOYCK2Mh6UsXME3MB0GA1UdDgQWBBScX9BsY6Nfk8qTmAitjIelLFzBNzAOBgNVHQ8BAf8E BAMCAYYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEATh65isagmD9uw2nAalxJ UqzLK114OMHVVISfk/CHGT0sZonrDUL8zPB1hT+L9IBdeeUXZ701guLyPI59WzbLWoAAKfLOKyzx j6ptBZNscsdW699QIyjlRRA96Gejrw5VD5AJYu9LWaL2U/HANeQvwSS9eS9OICI7/RogsKQOLHDt dD+4E5UGUcjohybKpFtqFiGS3XNgnhAY3jyB6ugYw3yJ8otQPr0R4hUDqDZ9MwFsSBXXiJCZBMXM 5gf0vPSQ7RPi6ovDj6MzD8EpTBNO2hVWcXNyglD2mjN8orGoGjR0ZVzO0eurU+AagNjqOknkJjCb 5RyKqKkVMoaZkgoQI1YS4PbOTOK7vtuNknMBZi9iPrJyJ0U27U1W45eZ/zo1PqVUSlJZS2Db7v54 EX9K3BR5YLZrZAPbFYPhor72I5dQ8AkzNqdxliXzuUJ92zg/LFis6ELhDtjTO0wugumDLmsx2d1H hk9tl5EuT+IocTUW0fJz/iUrB0ckYyfI+PbZa/wSMVYIwFNCr5zQM378BvAxRAMU8Vjq8moNqRGy g77FGr8H6lnco4g175x2MjxNBiLOFeXdntiP2t7SxDnlF4HPOEfrf4htWRvfn0IUrn7PqLBmZdo3 r5+qPeoott7VMVgWglvquxl1AnMaykgaIZOQCo6ThKd9OyMYkomgjaw= -----END CERTIFICATE----- Certum EC-384 CA ================ -----BEGIN CERTIFICATE----- MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQswCQYDVQQGEwJQ TDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2Vy dGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2 MDcyNDU0WhcNNDMwMzI2MDcyNDU0WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERh dGEgU3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkx GTAXBgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATEKI6rGFtq vm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7TmFy8as10CW4kjPMIRBSqn iBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68KjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD VR0OBBYEFI0GZnQkdjrzife81r1HfS+8EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNo ADBlAjADVS2m5hjEfO/JUG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0 QoSZ/6vnnvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= -----END CERTIFICATE----- Certum Trusted Root CA ====================== -----BEGIN CERTIFICATE----- MIIFwDCCA6igAwIBAgIQHr9ZULjJgDdMBvfrVU+17TANBgkqhkiG9w0BAQ0FADB6MQswCQYDVQQG EwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0g Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0Ew HhcNMTgwMzE2MTIxMDEzWhcNNDMwMzE2MTIxMDEzWjB6MQswCQYDVQQGEwJQTDEhMB8GA1UEChMY QXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBB dXRob3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEB AQUAA4ICDwAwggIKAoICAQDRLY67tzbqbTeRn06TpwXkKQMlzhyC93yZn0EGze2jusDbCSzBfN8p fktlL5On1AFrAygYo9idBcEq2EXxkd7fO9CAAozPOA/qp1x4EaTByIVcJdPTsuclzxFUl6s1wB52 HO8AU5853BSlLCIls3Jy/I2z5T4IHhQqNwuIPMqw9MjCoa68wb4pZ1Xi/K1ZXP69VyywkI3C7Te2 fJmItdUDmj0VDT06qKhF8JVOJVkdzZhpu9PMMsmN74H+rX2Ju7pgE8pllWeg8xn2A1bUatMn4qGt g/BKEiJ3HAVz4hlxQsDsdUaakFjgao4rpUYwBI4Zshfjvqm6f1bxJAPXsiEodg42MEx51UGamqi4 NboMOvJEGyCI98Ul1z3G4z5D3Yf+xOr1Uz5MZf87Sst4WmsXXw3Hw09Omiqi7VdNIuJGmj8PkTQk fVXjjJU30xrwCSss0smNtA0Aq2cpKNgB9RkEth2+dv5yXMSFytKAQd8FqKPVhJBPC/PgP5sZ0jeJ P/J7UhyM9uH3PAeXjA6iWYEMspA90+NZRu0PqafegGtaqge2Gcu8V/OXIXoMsSt0Puvap2ctTMSY njYJdmZm/Bo/6khUHL4wvYBQv3y1zgD2DGHZ5yQD4OMBgQ692IU0iL2yNqh7XAjlRICMb/gv1SHK HRzQ+8S1h9E6Tsd2tTVItQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSM+xx1 vALTn04uSNn5YFSqxLNP+jAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQENBQADggIBAEii1QAL LtA/vBzVtVRJHlpr9OTy4EA34MwUe7nJ+jW1dReTagVphZzNTxl4WxmB82M+w85bj/UvXgF2Ez8s ALnNllI5SW0ETsXpD4YN4fqzX4IS8TrOZgYkNCvozMrnadyHncI013nR03e4qllY/p0m+jiGPp2K h2RX5Rc64vmNueMzeMGQ2Ljdt4NR5MTMI9UGfOZR0800McD2RrsLrfw9EAUqO0qRJe6M1ISHgCq8 CYyqOhNf6DR5UMEQGfnTKB7U0VEwKbOukGfWHwpjscWpxkIxYxeU72nLL/qMFH3EQxiJ2fAyQOaA 4kZf5ePBAFmo+eggvIksDkc0C+pXwlM2/KfUrzHN/gLldfq5Jwn58/U7yn2fqSLLiMmq0Uc9Nneo WWRrJ8/vJ8HjJLWG965+Mk2weWjROeiQWMODvA8s1pfrzgzhIMfatz7DP78v3DSk+yshzWePS/Tj 6tQ/50+6uaWTRRxmHyH6ZF5v4HaUMst19W7l9o/HuKTMqJZ9ZPskWkoDbGs4xugDQ5r3V7mzKWmT OPQD8rv7gmsHINFSH5pkAnuYZttcTVoP0ISVoDwUQwbKytu4QTbaakRnh6+v40URFWkIsr4WOZck bxJF0WddCajJFdr60qZfE2Efv4WstK2tBZQIgx51F9NxO5NQI1mg7TyRVJ12AMXDuDjb -----END CERTIFICATE----- mstflint-4.26.0/mlxfwupdate/mlxfwmanager_common.cpp0000644000175000017500000002136614522641732023017 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxfwmanager_common.h" #ifdef _MSC_VER #include #include #endif const char* SafeGetEnv(const char* var) { char* val = getenv(var); if (val == NULL) { #if defined(__WIN__) return "."; // Local dir #else return "/tmp"; #endif } return val; } int mapRetValue(int rc, mlxFWMSetupType::T setupType) { map lvim; lvim[ERR_CODE_NO_DEVICES_FOUND] = 171; map dl; dl[ERR_CODE_NO_DEVICES_FOUND] = 0; switch (setupType) { case mlxFWMSetupType::lvim: if (lvim.find(rc) != lvim.end()) { return lvim[rc]; } break; case mlxFWMSetupType::dl: if (dl.find(rc) != dl.end()) { return dl[rc]; } break; default: return rc; } return rc; } string beautify_device_name(string family) { if (family == "connectx") { return "ConnectX"; } else if (family == "connect-ib") { return "Connect-IB"; } else if (family == "connectx-4") { return "ConnectX-4"; } else { return family; } } int CreateTempDir(string tempDir, string& tempBaseDir) { int rc = 0; string templ; const int len = 512; char tmpstr[len] = {0}; #ifdef __WIN__ int size; int pid; templ = tempDir; size = sizeof(tmpstr); if (!GetUserName((LPTSTR)tmpstr, (LPDWORD)&size)) { fprintf(stderr, "-E- Failed to get username\n"); return -1; } templ += tmpstr; pid = _getpid(); sprintf(tmpstr, "_%d", pid); templ += tmpstr; FixPath(templ); rc = ForceMkDir(templ); if (rc != 0) { fprintf(stderr, "-E- Failed to create temporary directory %s: %s\n", templ.c_str(), strerror(rc)); return -1; } #else char* temp; tempDir += "XXXXXX"; strncpy(tmpstr, tempDir.c_str(), len - 1); temp = mkdtemp(tmpstr); if (temp == NULL) { fprintf(stderr, "-E- Failed to create temporary directory\n"); return -1; } templ = tmpstr; #endif tempBaseDir = templ; return rc; } int RemoveDir(const string& dir) { string rmdirCmd; #ifdef __WIN__ rmdirCmd = "rd /s /q \""; rmdirCmd += dir; rmdirCmd += "\""; #else if ((dir == "/") || (dir == "")) { return 0; } rmdirCmd = "rm -rf "; rmdirCmd += dir; #endif return system(rmdirCmd.c_str()); } int MkDir(const string dir) { int rc; #ifdef __WIN__ rc = mkdir(dir.c_str()); #else rc = mkdir(dir.c_str(), 0777); #endif if (rc) { rc = errno; } return rc; } #ifdef __WIN__ void FixPath(string& s) { #ifdef __WIN__ size_t pos; while ((pos = s.find('/')) != string::npos) { s.replace(pos, 1, "\\"); } #else (void)s; #endif } int ForceMkDir(const string dir) { int rc = MkDir(dir); if (rc != 0) { if (rc == EEXIST) { RemoveDir(dir); rc = MkDir(dir); } else { return rc; } } return rc; } int mlxfw_replace(char* st, char* orig, char* repl) { char buffer[1024]; char* ch; if (!(ch = strstr(st, orig))) { return 0; } strncpy(buffer, st, ch - st); buffer[ch - st] = 0; sprintf(buffer + (ch - st), "%s%s", repl, ch + strlen(orig)); strcpy(st, buffer); return 0; } int mlxfw_get_exec_name_from_path(char* str, char* exec_name) { char* tmp_str = new char[strlen(str) + 1]; char* pch; strcpy(tmp_str, str); pch = strtok(tmp_str, "\\"); while (pch != NULL) { strcpy(exec_name, pch); pch = strtok(NULL, "\\"); } delete[] tmp_str; return 0; } #endif bool unzipDataFile(std::vector data, std::vector& newData, const char* sectionName) { #ifndef NO_ZLIB int rc; if (data.empty()) { return false; } // restore endianess. TOCPUn(&(data[0]), data.size() / 4); // uncompress: uLongf destLen = data.size(); destLen *= 40; // Assuming this is the best compression ratio vector dest(destLen); for (int i = 0; i < 32; i++) { rc = uncompress((Bytef*)&(dest[0]), &destLen, (const Bytef*)&(data[0]), data.size()); if (rc != Z_BUF_ERROR) { break; } destLen *= 2; dest.resize(destLen); } if (rc != Z_OK) { return false; } // printf("%s", (char*)&(dest[0])); newData = dest; newData[destLen] = 0; // Terminating NULL newData.resize(destLen + 1); (void)sectionName; return true; #else // avoid warnings (void)data; (void)newData; (void)sectionName; return false; #endif } #ifdef __WIN__ int my_chmod(const char* path, mode_t mode) { int result = _chmod(path, (mode & MS_MODE_MASK)); if (result != 0) { result = errno; } return (result); } #else int my_chmod(const char* path, mode_t mode) { int result = chmod(path, mode); if (result != 0) { result = errno; } return (result); } #endif string getErrStr(int rc) { map err_msg; err_msg[MLX_FWM_SUCCESS] = ""; err_msg[ERR_CODE_QUERY_FAILED] = ERR_MSG_QUERY_FAILED; err_msg[ERR_CODE_PROG_FAILED] = ERR_MSG_PROG_FAILED; err_msg[ERR_CODE_BAD_CMD_ARGS] = ERR_MSG_BAD_CMD_ARGS; err_msg[ERR_CODE_CREATE_LOG_FAIL] = ERR_MSG_CREATE_LOG_FAIL; err_msg[ERR_CODE_FETCH_LOCAL_DEVICES_FAIL] = ERR_MSG_FETCH_LOCAL_DEVICES_FAIL; err_msg[ERR_CODE_SERVER_DOWNLOAD_FAILED] = ERR_MSG_SERVER_DOWNLOAD_FAILED; err_msg[ERR_CODE_MEM_ALLOC_FAIL] = ERR_MSG_MEM_ALLOC_FAIL; err_msg[ERR_CODE_INTERNAL_ERR] = ERR_MSG_INTERNAL_ERR; err_msg[ERR_CODE_IMG_NOT_FOUND] = ERR_MSG_IMG_NOT_FOUND; err_msg[ERR_CODE_CREATE_OUTPUT_FILE_FAIL] = ERR_MSG_CREATE_OUTPUT_FILE_FAIL; err_msg[ERR_CODE_MULTI_IMG_SRC_FOUND] = ERR_MSG_MULTI_IMG_SRC_FOUND; err_msg[ERR_CODE_BAD_INI_FILE] = ERR_MSG_BAD_INI_FILE; err_msg[ERR_CODE_SERVER_RETRIEVE_FAIL] = ERR_MSG_SERVER_RETRIEVE_FAIL; err_msg[ERR_CODE_WRITE_FILE_FAIL] = ERR_MSG_WRITE_FILE_FAIL; err_msg[ERR_CODE_EXTRACT_IMAGE_FAIL] = ERR_MSG_EXTRACT_IMAGE_FAIL; err_msg[ERR_CODE_MIXED_VERSIONS_FOUND] = ERR_MSG_MIXED_VERSIONS_FOUND; err_msg[ERR_CODE_FILE_PARSE_FAILED] = ERR_MSG_FILE_PARSE_FAILED; err_msg[ERR_CODE_INTERRUPTED] = ERR_MSG_INTERRUPTED; err_msg[ERR_CODE_NOT_ROOT] = ERR_MSG_NOT_ROOT; err_msg[ERR_CODE_NO_DEVICES_FOUND] = ERR_MSG_NO_DEVICES_FOUND; err_msg[ERR_CODE_NO_DEVICES_FOUND_LVIM] = ERR_MSG_NO_DEVICES_FOUND; err_msg[ERR_CODE_CLEAR_SEMAPORE] = ERR_MSG_CLEAR_SEMAPORE; err_msg[ERR_CODE_UNKNOWN_EXPANSION_ROM] = ERR_MSG_UNKNOWN_EXPANSION_ROM; err_msg[ERR_CODE_UNSUPPORTED_DEVICE] = ERR_MSG_UNSUPPORTED_DEVICE; err_msg[ERR_CODE_ONLINE_UPDATE_CONNECTION_ERROR] = ERR_MSG_ONLINE_UPDATE_CONNECTION_ERROR; err_msg[ERR_CODE_ONLINE_UPDATE_INTERNAL_ERR] = ERR_MSG_ONLINE_UPDATE_INTERNAL_ERR; err_msg[ERR_CODE_INVALID_CHOICE] = ERR_MSG_IVALID_CHOICE; err_msg[ERR_CODE_NONE_FAIL_SAFE] = ERR_MSG_NONE_FAIL_SAFE; err_msg[ERR_CODE_SERVER_QUERY_FAILED] = ERR_MSG_SERVER_QUERY; if (err_msg.find(rc) != err_msg.end()) { return err_msg[rc]; } return "Unknown error"; } mstflint-4.26.0/mlxfwupdate/cmd_line_params.cpp0000644000175000017500000000614114522641732022066 0ustar tzafrirctzafrirc /* * Copyright (c) 2006-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "cmd_line_params.h" CmdLineParams::CmdLineParams() { force_update = 0; update_fw = 0; use_mfa_file = 0; use_mfa_dir = 0; yes_no_ = -1; compare_ffv = 0; write_xml = 0; use_output_file = 0; create_log = 0; use_log_file = 0; use_exe_rel_paths = 0; use_lookup_file = 0; list_file_contents = false; display_archive_names = false; extract_image = false; show_progress = true; log_on_update = false; calc_crc = false; query_device = false; query_device_xml = false; clear_semaphore = false; extract_all = false; no_fw_ctrl = false; target_file = ""; server_url = "https://www.mellanox.com"; proxy = ""; update_online = false; download = false; download_default = false; get_download_opt = ""; download_os = ""; // will be changed to enum download_type = ""; download_dev = ""; download_key = "last_release"; psid = ""; burnFailsafe = true; onlineQueryPsids = ""; queryFormat = "text"; download_dir = "."; extract_dir = "."; lvim = false; dl = false; no_extract_list = false; numberOfRetrials = 5; #ifdef __WIN__ char execName[1024]; char certificatPath[1024]; GetModuleFileName(GetModuleHandle(mlxfw_MTCR_DLL_NAME), certificatPath, 1024); mlxfw_get_exec_name_from_path(certificatPath, execName); mlxfw_replace(certificatPath, execName, (char*)"ca-bundle.crt"); certificate = string(certificatPath); #else #ifdef MSTFLINT certificate = (string)ROOT_PATH + "etc/mstflint/ca-bundle.crt"; #else certificate = (string)ROOT_PATH + "etc/mft/ca-bundle.crt"; #endif #endif } CmdLineParams::~CmdLineParams() {} mstflint-4.26.0/mlxfwupdate/cmd_line_parser.h0000644000175000017500000000403714522641732021546 0ustar tzafrirctzafrirc/* * Copyright (c) 2006-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * End of legal section ...................................................... * * cmd_line_parser.h - FWUpdater Command Line Parser * * Version: $Id$ * * Author: Sami (sami@mellanox.com) */ #include #include #include "cmd_line_params.h" class CmdLineParser : public CommandLineRequester { public: CmdLineParser(CmdLineParams* params, char** argv, int argc); ~CmdLineParser(); bool parse(char** argv, int argc); ParseStatus HandleOption(string name, string value); private: void initOptions(); private: CommandLineParser _cmdParser; CmdLineParams* _cmdLineParams; }; mstflint-4.26.0/mlxfwupdate/fw_version_with_sub_build.cpp0000644000175000017500000000466414522641732024225 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "fw_version_with_sub_build.h" #include FwVersionWithSubBuild::FwVersionWithSubBuild() : FwVersion() {} FwVersionWithSubBuild::FwVersionWithSubBuild(unsigned short int major, unsigned short int minor, unsigned short int subminor, const std::string& devBranchTag) : FwVersion(major, minor, subminor, devBranchTag) { } FwVersionWithSubBuild::~FwVersionWithSubBuild() {} std::string FwVersionWithSubBuild::get_master_version(const std::string& format, bool even_subminor) const { char buff[MAX_VERSION_LENGTH + 1] = {0}; snprintf(buff, sizeof(buff), format.c_str(), _major, _minor, _subminor / 100, _subminor % 100 - (even_subminor ? _subminor % 2 : 0)); return buff; } FwVersionWithSubBuild* FwVersionWithSubBuild::clone() const { return new FwVersionWithSubBuild(*this); } mstflint-4.26.0/mlxfwupdate/psid_query_item.cpp0000644000175000017500000000352414522641732022155 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "psid_query_item.h" const ImgVersion* PsidQueryItem::findImageVersion(string type) { int idx = -1; for (unsigned int i = 0; i < imgVers.size(); i++) { if (!imgVers[i].getTypeStr().compare(type)) { idx = i; } } if (idx == -1) { return NULL; } return &imgVers[idx]; } mstflint-4.26.0/mlxfwupdate/err_msgs.h0000644000175000017500000001062214522641732020236 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __ERR_MSGS__ #define __ERR_MSGS__ enum { MLX_FWM_SUCCESS = 0, ERR_CODE_QUERY_FAILED = 1, ERR_CODE_PROG_FAILED = 2, ERR_CODE_BAD_CMD_ARGS = 3, ERR_CODE_CREATE_LOG_FAIL = 4, ERR_CODE_FETCH_LOCAL_DEVICES_FAIL = 5, ERR_CODE_SERVER_DOWNLOAD_FAILED = 6, ERR_CODE_MEM_ALLOC_FAIL = 7, ERR_CODE_INTERNAL_ERR = 8, ERR_CODE_IMG_NOT_FOUND = 9, ERR_CODE_CREATE_OUTPUT_FILE_FAIL = 10, ERR_CODE_MULTI_IMG_SRC_FOUND = 11, ERR_CODE_BAD_INI_FILE = 12, ERR_CODE_SERVER_RETRIEVE_FAIL = 13, ERR_CODE_WRITE_FILE_FAIL = 14, ERR_CODE_EXTRACT_IMAGE_FAIL = 15, ERR_CODE_MIXED_VERSIONS_FOUND = 16, ERR_CODE_FILE_PARSE_FAILED = 17, ERR_CODE_INTERRUPTED = 18, ERR_CODE_NOT_ROOT = 19, ERR_CODE_NO_DEVICES_FOUND = 20, ERR_CODE_NO_DEVICES_FOUND_LVIM = 171, ERR_CODE_CLEAR_SEMAPORE = 21, ERR_CODE_UNKNOWN_EXPANSION_ROM = 22, ERR_CODE_UNSUPPORTED_DEVICE = 23, ERR_CODE_ONLINE_UPDATE_CONNECTION_ERROR = 24, ERR_CODE_ONLINE_UPDATE_INTERNAL_ERR = 25, ERR_CODE_INVALID_CHOICE = 26, ERR_CODE_NONE_FAIL_SAFE = 27, ERR_CODE_SERVER_QUERY_FAILED = 28, ERR_CODES_NUM }; #define ERR_MSG_QUERY_FAILED "Failed to query one or more devices" #define ERR_MSG_PROG_FAILED "Failed to program device" #define ERR_MSG_BAD_CMD_ARGS "Bad command line arguments" #define ERR_MSG_CREATE_LOG_FAIL "Failed to create log file" #define ERR_MSG_FETCH_LOCAL_DEVICES_FAIL "Failed during device query" #define ERR_MSG_SERVER_DOWNLOAD_FAILED "Failed to download from server" #define ERR_MSG_MEM_ALLOC_FAIL "Failed to allocate memory" #define ERR_MSG_INTERNAL_ERR "Internal Error" #define ERR_MSG_IMG_NOT_FOUND "No relevant image found for one or more devices" #define ERR_MSG_CREATE_OUTPUT_FILE_FAIL "Failed to create output file" #define ERR_MSG_MULTI_IMG_SRC_FOUND "Failed due to multiple image source ambiguity" #define ERR_MSG_BAD_INI_FILE "Error parsing ini file" #define ERR_MSG_SERVER_RETRIEVE_FAIL "Failed to retrieve from server" #define ERR_MSG_WRITE_FILE_FAIL "Failed to write file" #define ERR_MSG_EXTRACT_IMAGE_FAIL "Failed to extract image" #define ERR_MSG_MIXED_VERSIONS_FOUND "Mixed component versions found" #define ERR_MSG_FILE_PARSE_FAILED "Failed while parsing file" #define ERR_MSG_INTERRUPTED "Interrupted by user" #define ERR_MSG_NOT_ROOT "User is not root" #define ERR_MSG_NO_DEVICES_FOUND "No devices found or specified" #define ERR_MSG_CLEAR_SEMAPORE "Clear semaphore failure" #define ERR_MSG_UNKNOWN_EXPANSION_ROM "Unknown expansion rom" #define ERR_MSG_UNSUPPORTED_DEVICE "Device is not supported in online update" #define ERR_MSG_ONLINE_UPDATE_CONNECTION_ERROR "Failed to communicate with Server" #define ERR_MSG_ONLINE_UPDATE_INTERNAL_ERR "Internal Error in online update" #define ERR_MSG_IVALID_CHOICE "Select choice is invalid" #define ERR_MSG_NONE_FAIL_SAFE "Burn is fail safe, None fail safe required" #define ERR_MSG_SERVER_QUERY "Failed to query PSIDs from server" #endif mstflint-4.26.0/mlxfwupdate/output_fmts.h0000644000175000017500000000465414522641732021016 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __OUTPUT_FMTS__ #define __OUTPUT_FMTS__ #include #include #include "mlnx_dev.h" #include "psid_query_item.h" #include "psid_lookup_db.h" #include using namespace std; class OutputFmts { public: int createInventoryXML(vector& devs, PsidLookupDB& psidLookupDB, int result, string msg, string& buffer, int buf_is_file); int createBurnXML(vector& devs, map& psidUpdateInfo, PsidLookupDB& psidLookupDB, string& buffer, int buf_is_file, int CompareFFV); int createFailXML(int result, int update_query_, string& buffer, int buf_is_file); void setForceModeParam(bool force_mode); private: bool _force_mode; }; #endif mstflint-4.26.0/mlxfwupdate/mlxfwmanager.cpp0000644000175000017500000025717614522641732021461 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxfwmanager.h" #ifdef _MSC_VER #include #include #endif #include #include #include #include int main(int argc, char* argv[]) { try { return mainEntry(argc, argv); } catch (runtime_error& e) { fprintf(stderr, "-E- %s\n", e.what()); return ERR_CODE_SERVER_RETRIEVE_FAIL; } } int mainEntry(int argc, char* argv[]) { int res = 0; config_t config; bool early_cleanup = true; bool os_valid; int rc, rc0; vector dev_names; vector devs; CmdLineParams cmd_params; string arch = ""; int burn_cnt = 0; int burn_success_cnt = 0; int require_update_cnt = 0; vector status_strings; map psidUpdateInfo; vector psid_list; vector fw_version_list; vector dev_types_list; vector downloaded_files_names; vector mfa_list; vector urls_links; string mpath; int err_continue = 0; int devs_num = 0; dev_info* devsinfo = NULL; string strbuf; OutputFmts outfmts; PsidLookupDB psidLookupDB; string logFileName; string outFileName; string xml_query; string errorMsg = ""; string logDir; int (*progressCB)(int); int (*advProgressCB)(int, const char*, prog_t, void*); ServerRequest* srq = NULL; initHandler(); CmdLineParser cmdParser(&cmd_params, argv, argc); logDir = getLogDir(toolName); // parse command line args if (!cmdParser.parse(argv, argc)) { res = ERR_CODE_BAD_CMD_ARGS; string cmdLine = ""; for (int i = 1; i < argc; ++i) { if (cmdLine.length()) { cmdLine += " "; } cmdLine += argv[i]; } return res; } if (!initConfig(config, argv, cmd_params)) { res = ERR_CODE_BAD_INI_FILE; return res; } if (!checkCmdParams(cmd_params, config)) { res = ERR_CODE_BAD_CMD_ARGS; return res; } if (cmd_params.calc_crc) { if (config.mfa_path == ".") { fprintf(stderr, "-E- Bad command line arguments, image file is mandatory\n"); return ERR_CODE_BAD_CMD_ARGS; } return CalcFileCrc((char*)config.mfa_path.c_str()); } if (isServerRequestorRequired(cmd_params)) { srq = new ServerRequest(cmd_params.server_url.c_str(), cmd_params.proxy.c_str(), cmd_params.compare_ffv, cmd_params.show_progress, cmd_params.download_key, cmd_params.certificate, cmd_params.numberOfRetrials); if (srq == NULL) { res = ERR_CODE_MEM_ALLOC_FAIL; return res; } } if (cmd_params.query_device || cmd_params.query_device_xml) { cmd_params.update_fw = 0; } if (cmd_params.query_device_xml) { cmd_params.write_xml = true; } if (cmd_params.device_names.size() != 0 && cmd_params.write_xml && !cmd_params.query_device_xml) { fprintf(stdout, "-W- XML is not functional when -d is used in command line\n"); } progressCB = progressCB_nodisplay; advProgressCB = NULL; if (cmd_params.show_progress) { progressCB = progressCB_display; advProgressCB = (f_prog_func_adv)&advProgressFunc_display; } formatted_output = cmd_params.write_xml; if (cmd_params.use_output_file) { strbuf = adjustRelPath(cmd_params.output_file, config.adjuster_path); } CompareFFV = cmd_params.compare_ffv; outfmts.setForceModeParam(cmd_params.force_update); if (cmd_params.use_output_file) { outFileName = adjustRelPath(cmd_params.output_file, config.adjuster_path); FOut = createOutFile(outFileName, true); if (FOut == NULL) { fprintf(stderr, "-E- Failed to create an output file %s\n", outFileName.c_str()); res = ERR_CODE_CREATE_OUTPUT_FILE_FAIL; goto early_err_clean_up; } } if (cmd_params.download_os.length()) { IS_OKAY_To_INTERRUPT = true; res = check_valid_os_type(cmd_params, &os_valid); if (res) { goto early_err_clean_up; } if (!os_valid) { fprintf(stderr, "-E- Invalid --download-os argument \"%s\"\n", cmd_params.download_os.c_str()); res = ERR_CODE_INVALID_CHOICE; goto early_err_clean_up; } IS_OKAY_To_INTERRUPT = false; } if (cmd_params.onlineQueryPsids.length()) { if (cmd_params.queryFormat == "text") { res = handleOnlinePsidsQuery(srq, cmd_params, config); } else { res = handleOnlinePsidsQueryXml(srq, cmd_params, config); } goto clean_up; } if (cmd_params.get_download_opt != "") { IS_OKAY_To_INTERRUPT = true; res = handleGetDownloadOptionsRequest(srq, cmd_params); goto early_err_clean_up; } if (cmd_params.download) { IS_OKAY_To_INTERRUPT = true; cmd_params.download_dir = adjustRelPath(cmd_params.download_dir, config.adjuster_path); if (ImageAccess::hasMFAs(cmd_params.download_dir)) { print_out("-W- '%s' contains MFA images which might conflict with future update on this directory\n\n", cmd_params.download_dir.c_str()); } res = handleDownloadRequest(srq, cmd_params, config); goto early_err_clean_up; } // Listing of binary files content if (cmd_params.list_file_contents) { res = list_files_content(config); goto clean_up; } if (cmd_params.extract_all) { IS_OKAY_To_INTERRUPT = true; res = extract_all(cmd_params, config, srq); goto clean_up; } if (cmd_params.extract_image) { res = extract_image(cmd_params, config, srq); if (cmd_params.update_online) { RemoveDir(config.mfa_path); } goto clean_up; } if ((cmd_params.device_names.size() == 0 || cmd_params.device_names.size() > 1) && cmd_params.clear_semaphore) { print_err("-E- Please specify a device to clear semaphore for.\n"); res = ERR_CODE_CLEAR_SEMAPORE; goto clean_up; } if ((cmd_params.device_names.size() == 0 || cmd_params.device_names.size() > 1) && !cmd_params.burnFailsafe) { print_err("-E- Please specify a device to burn in non failsafe mode.\n"); res = ERR_CODE_CLEAR_SEMAPORE; goto clean_up; } // Open a log file if (cmd_params.create_log || cmd_params.log_on_update) { if (cmd_params.use_log_file) { logFileName = adjustRelPath(cmd_params.log_file, config.adjuster_path); } FLog = createOutFile(logFileName, cmd_params.use_log_file); if (FLog == NULL) { if (!cmd_params.use_log_file) { fprintf(stderr, "-E- Failed to create a log file in %s\n", logDir.c_str()); } else { fprintf(stderr, "-E- Failed to write log file %s\n", logFileName.c_str()); } res = ERR_CODE_CREATE_LOG_FAIL; goto early_err_clean_up; } // Print the command line to the log file fprintf(FLog, "CMD: %s ", toolName.c_str()); for (int i = 1; i < argc; i++) { fprintf(FLog, "%s ", argv[i]); } fprintf(FLog, "\n"); } // Create Dev list if (cmd_params.device_names.size() != 0) { devs_num = cmd_params.device_names.size(); } else { devs_num = getLocalDevices(&devsinfo); if (devs_num == 0) { res = ERR_CODE_NO_DEVICES_FOUND; res = mapRetValue(res, config.setupType); if (cmd_params.write_xml) { // devs and psidLookupDB are both empty here outfmts.createInventoryXML(devs, psidLookupDB, res, getErrStr(res), strbuf, cmd_params.use_output_file); if (!cmd_params.use_output_file) { printf("%s", strbuf.c_str()); } } else { #if defined(ONLY_PCI_FORMAT) || defined(__WIN__) print_err("-E- No devices found or specified\n"); #else print_err("-E- No devices found or specified, mst might be stopped, run 'mst start' to load MST " "modules\n"); #endif } goto clean_up; } else if (devs_num < 0) { print_err("-E- Failed to retrieve device(s) names\n"); res = ERR_CODE_FETCH_LOCAL_DEVICES_FAIL; goto clean_up; } } // Read Lookup file if (cmd_params.use_lookup_file) { psidLookupDB.readFile(adjustRelPath(cmd_params.lookup_file, config.adjuster_path)); } // Query all Devs print_out("Querying Mellanox devices firmware ...\n"); for (int i = 0; i < devs_num; i++) { MlnxDev* dev; if (cmd_params.device_names.size()) { dev = new MlnxDev(cmd_params.device_names[i].c_str(), cmd_params.compare_ffv); if (cmd_params.clear_semaphore) { if (!dev->clearSemaphore()) { print_err("-E- Failed to clear semaphore : %s\n", dev->getLastErrMsg().c_str()); res = ERR_CODE_CLEAR_SEMAPORE; } else { print_out("-I- Semaphore is cleared!\n"); res = 0; } devs.push_back(dev); goto early_err_clean_up; } } else { dev = new MlnxDev(&devsinfo[i], cmd_params.compare_ffv); } if (cmd_params.no_fw_ctrl) { dev->setNoFwCtrl(); } dev->query(); if (!dev->isQuerySuccess()) { res = ERR_CODE_QUERY_FAILED; } else { dev->patchPsidInfo(psidLookupDB.getPsid(dev->getBoardTypeId())); if (cmd_params.use_lookup_file && !psidLookupDB.isPsidExist(dev->getPsid())) { delete dev; continue; } } if (dev->checkExistence(devs) == true) { delete dev; continue; } devs.push_back(dev); } if (!devs.size()) { print_out("-W- No devices found that match lookup file\n"); } // Get unique PSID list getUniquePsidList(devs, psid_list, dev_types_list, fw_version_list); // Query MFAs if (psid_list.size() > 0) { mpath = config.mfa_path; if (cmd_params.update_online) { if (CreateTempDir(mpath, config.mfa_path) < 0) { print_err("-E- Could not create Temp Directory for update\n"); res = 1; goto early_err_clean_up; } mpath = config.mfa_path; } else if (cmd_params.use_mfa_file) { mpath = adjustRelPath(cmd_params.mfa_file, config.adjuster_path); } rc = queryMFAs(srq, mpath, psid_list, dev_types_list, psidUpdateInfo, cmd_params.update_online, errorMsg, fw_version_list); if (rc < 0) { // print_err("-E- No relevant image files or info could be found\n"); err_continue++; } // Get required list of MFAs to download/burn getUniqueMFAList(devs, psidUpdateInfo, cmd_params.force_update, mfa_list, downloaded_files_names); } rc = checkAndDisplayDeviceQuery1D(devs, psidUpdateInfo, psidLookupDB, cmd_params.update_fw, (cmd_params.use_mfa_dir || cmd_params.use_mfa_file), cmd_params.force_update, cmd_params.query_device, cmd_params.query_device_xml, xml_query, errorMsg, cmd_params); // Error codes returned from checkAndDisplay... res = rc; if (cmd_params.query_device_xml) { xml_query = "\n" + xml_query + "\n"; print_out_xml("%s\n", xml_query.c_str()); goto clean_up; } else if (cmd_params.query_device && !cmd_params.write_xml) { goto clean_up; } if (!cmd_params.update_fw || (cmd_params.update_fw && cmd_params.write_xml && (cmd_params.query_device || cmd_params.yes_no_ != 1))) { if (!res) { res = rc; } if (cmd_params.write_xml && cmd_params.device_names.size() == 0) { outfmts.createInventoryXML(devs, psidLookupDB, res, getErrStr(res), strbuf, cmd_params.use_output_file); if (!cmd_params.use_output_file) { printf("%s", strbuf.c_str()); } } goto clean_up; } print_out("\n"); // Update devices FW // rc = 0; burn_cnt = 0; burn_success_cnt = 0; status_strings.resize(devs.size() + 1); for (int i = 0; i < (int)devs.size(); i++) { if (!devs[i]->isQuerySuccess()) { status_strings[i] = "Device query failed"; err_continue++; continue; } if (psidUpdateInfo.find(devs[i]->getPsid()) == psidUpdateInfo.end()) { status_strings[i] = "Error - no matching image found"; err_continue++; continue; } if (psidUpdateInfo[devs[i]->getPsid()].found != 1) { status_strings[i] = "Error - no matching image found"; err_continue++; continue; } if (!cmd_params.force_update) { if (!devs[i]->doesDevNeedUpdate()) { status_strings[i] = "Up to date"; continue; } } require_update_cnt++; } if (!cmd_params.force_update) { if (require_update_cnt != 0) { int answer = prompt("Perform FW update? [y/N]: ", cmd_params.yes_no_); if (!answer) { print_out("No updates performed\n"); // res = rc; goto clean_up; } } else { goto early_err_clean_up; } } if (cmd_params.update_online && require_update_cnt) { // Download relevant files if (mfa_list.size() > 0) { print_out("\n"); vector dummy; rc = download(srq, mfa_list, downloaded_files_names, dummy, config.mfa_path, false); if (rc < 0) { res = ERR_CODE_SERVER_RETRIEVE_FAIL; goto clean_up; } } } for (int i = 0; i < (int)devs.size(); i++) { if (status_strings[i].size() != 0) { print_out("Device #%d: %s\n", (i + 1), status_strings[i].c_str()); continue; } else { print_out("Device #%d: %s", (i + 1), "Updating FW ... \n"); } burn_cnt++; string mfa_file = config.mfa_path; string tmp = psidUpdateInfo[devs[i]->getPsid()].url; if (!cmd_params.use_mfa_file) { size_t pos = tmp.rfind("/"); if (pos != string::npos) { tmp = tmp.substr(pos + 1); } mfa_file += "/"; mfa_file += tmp; } else { mfa_file = tmp; } bool imageWasCached = false; vector questions; bool isTimeConsumingFixesNeeded = false; rc0 = devs[i]->preBurn(mfa_file, progressCB, cmd_params.burnFailsafe, isTimeConsumingFixesNeeded, questions, advProgressCB); if (rc0) { if (abort_request) { print_out("\b\b\b\bInterrupted\n"); res = ERR_CODE_INTERRUPTED; devs[i]->clearSemaphore(); goto early_err_clean_up; } else { print_out("\b\b\b\bFail : %s \n", devs[i]->getLastErrMsg().c_str()); } } else { for (unsigned int questionIndex = 0; questionIndex < questions.size(); questionIndex++) { print_out("%s", questions[questionIndex].c_str()); int answer = prompt("Perform update? [y/N]: ", cmd_params.yes_no_); if (!answer) { print_out("No updates performed\n"); goto clean_up; } } if (isTimeConsumingFixesNeeded) { print_out("Preparing...\n"); } rc0 = devs[i]->burn(imageWasCached); if (!rc0) { print_out("\b\b\b\bDone\n"); burn_success_cnt++; if (imageWasCached) { print_out("Image was successfully cached by driver.\n"); } } else { if (abort_request) { print_out("\b\b\b\bInterrupted\n"); res = ERR_CODE_INTERRUPTED; devs[i]->clearSemaphore(); goto early_err_clean_up; } else { print_out("\b\b\b\bFail : %s \n", devs[i]->getLastErrMsg().c_str()); } } } rc |= rc0; if (FLog != NULL) { fprintf(FLog, "%s\n", devs[i]->getLog().c_str()); } } if (burn_cnt > 0) { if (rc) { res = ERR_CODE_PROG_FAILED; } } if (burn_success_cnt > 0) { print_out("\nRestart needed for updates to take effect.\n"); } if (err_continue > 0) { res = 255; // errors were encountered print_err("-E- One or more errors were encountered.\n"); } if (burn_success_cnt > 0 && ((burn_success_cnt < burn_cnt) || (err_continue > 0))) { res = 254; // At least one device was burnt successfully, a failure was encountered at least on other device } if (cmd_params.update_online && require_update_cnt) { // RemoveDir(config.mfa_path); } if (cmd_params.write_xml && cmd_params.device_names.size() == 0) { outfmts.createBurnXML(devs, psidUpdateInfo, psidLookupDB, strbuf, cmd_params.use_output_file, CompareFFV); if (!cmd_params.use_output_file) { printf("%s", strbuf.c_str()); } } clean_up: // Add clean up for devices in devs vector early_cleanup = false; early_err_clean_up: if (early_cleanup) { if (cmd_params.write_xml) { outfmts.createFailXML(res, cmd_params.update_fw, strbuf, cmd_params.use_output_file); if (!cmd_params.use_output_file) { printf("%s", strbuf.c_str()); } } } if (srq != NULL) { delete srq; } if (FLog != NULL) { fclose(FLog); if (((burn_cnt && cmd_params.log_on_update) || cmd_params.create_log) && !cmd_params.write_xml) { printf("Log File: %s\n", logFileName.c_str()); } else { // delete log unlink(logFileName.c_str()); } } if (cmd_params.use_output_file) { if (FOut != NULL) { fclose(FOut); } } mdevices_info_destroy(devsinfo, devs_num); for (int i = 0; i < (int)devs.size(); i++) { delete devs[i]; } return mapRetValue(res, config.setupType); } int extract_all(CmdLineParams& cmd_params, config_t& config, ServerRequest* srq) { ImageAccess imgacc(CompareFFV); vector items; string fpath = cmd_params.mfa_file; if (fpath == "") { print_err("-E- Please specify image file to extract, use -i option\n"); return -1; } // TODO: list content by image type int rc = imgacc.get_file_content(fpath, items); if (rc) { print_err("-E- Error parsing file: %s\n", fpath.c_str()); return -1; } print_out("-I- Please wait while extracting images ...\n"); for (unsigned int i = 0; i < items.size(); i++) { cmd_params.psid = items[i].psid; rc = extract_image(cmd_params, config, srq, true); if (rc) { return rc; } } print_out("\n-I- %d image are extracted successfully\n", (int)items.size()); return rc; } int extract_image(CmdLineParams& cmd_params, config_t& config, ServerRequest* srq, bool useExtractDir) { map psidUpdateInfo; vector psid_list; vector dev_types_list; vector fw_version_list; string mpath; string errorMsg = ""; int res = 0; int rc; u_int8_t* filebuf = NULL; ImageAccess imgacc(CompareFFV); if (cmd_params.psid == "") { print_err("-E- Need to provide PSID for extraction.\n"); res = ERR_CODE_BAD_CMD_ARGS; return res; } psid_list.push_back(cmd_params.psid); mpath = config.mfa_path; if (cmd_params.use_mfa_file) { mpath = adjustRelPath(cmd_params.mfa_file, config.adjuster_path); } rc = queryMFAs(srq, mpath, psid_list, dev_types_list, psidUpdateInfo, cmd_params.update_online, errorMsg, fw_version_list); if (rc < 0) { print_err("-E- Failed while reading file(s)\n"); res = ERR_CODE_IMG_NOT_FOUND; return res; } config.mfa_path = mpath; int cnt = psidUpdateInfo.size(); ssize_t sza = 0; if (cnt == 1) { string srcFile = psidUpdateInfo[cmd_params.psid].url; string tag = psidUpdateInfo[cmd_params.psid].selector_tag; sza = imgacc.getImage(srcFile.c_str(), cmd_params.psid, tag, 1, &filebuf); if (sza > 0) { string targetFile = cmd_params.target_file; if (generateProductionName(targetFile, psidUpdateInfo[cmd_params.psid])) { res = ERR_CODE_WRITE_FILE_FAIL; goto clean_up; } if (useExtractDir) { targetFile = cmd_params.extract_dir + (string)PATH_SEPARATOR + targetFile; } targetFile = adjustRelPath(targetFile, config.adjuster_path); print_out("Extracting image for psid: %s to %s ...\n", cmd_params.psid.c_str(), targetFile.c_str()); FILE* f = fopen(targetFile.c_str(), "wb"); int sz = 0; if (f != NULL) { sz = fwrite(filebuf, 1, sza, f); fclose(f); if (sz < sza) { print_err("-E- Failed while writing to file.\n"); res = ERR_CODE_WRITE_FILE_FAIL; } } else { print_err("-E- Failed to open %s for writing.\n", targetFile.c_str()); res = ERR_CODE_WRITE_FILE_FAIL; } print_out("Done!\n"); } else { print_err("-E- Failed to extract image, MFA file might not have requested PSID\n"); res = ERR_CODE_INTERNAL_ERR; } } else if (cnt > 1) { print_err("-E- More than one relevant image found. Not performing extraction!\n"); res = ERR_CODE_IMG_NOT_FOUND; } else { print_err("-E- NO mfa file found!\n"); res = ERR_CODE_IMG_NOT_FOUND; } clean_up: if (filebuf) { free(filebuf); } return res; } bool checkCmdParams(CmdLineParams& cmd_params, config_t& config) { if (cmd_params.use_mfa_dir) { if (!isDirectory(adjustRelPath(cmd_params.mfa_dir, config.adjuster_path))) { fprintf(stderr, "-E- Can't find directory %s\n", cmd_params.mfa_dir.c_str()); return false; } } if ((cmd_params.download_os.length() || cmd_params.download_type.length() || cmd_params.download_dev.length()) || cmd_params.download_default) { cmd_params.download = true; } if (cmd_params.download) { cmd_params.write_xml = 0; if (!isDirectory(adjustRelPath(cmd_params.download_dir, config.adjuster_path))) { fprintf(stderr, "-E- Can't find directory %s\n", cmd_params.download_dir.c_str()); return false; } } if (!cmd_params.download && (cmd_params.download_os.length() || cmd_params.download_type.length() || cmd_params.download_dev.length())) { fprintf(stderr, "-E- Please specify download Directory\n"); return false; } if (cmd_params.download_os.length() && cmd_params.download_type.length() && cmd_params.download_dev.length()) { cmd_params.download_default = true; } if (cmd_params.target_file.length() && !cmd_params.extract_image) { fprintf(stderr, "-E- Please use --extract option along with extract file\n"); return false; } if (cmd_params.use_lookup_file) { cmd_params.lookup_file = adjustRelPath(cmd_params.lookup_file, config.adjuster_path); if (!isFile(cmd_params.lookup_file)) { fprintf(stderr, "-E- Can't find file %s\n", cmd_params.lookup_file.c_str()); return false; } } if (cmd_params.use_mfa_file) { if (!isFile(adjustRelPath(cmd_params.mfa_file, config.adjuster_path))) { fprintf(stderr, "-E- Can't find file %s\n", cmd_params.mfa_file.c_str()); return false; } } if (cmd_params.onlineQueryPsids.length() || cmd_params.download || cmd_params.update_online) { cmd_params.certificate = adjustRelPath(cmd_params.certificate, config.adjuster_path); if (!isFile(cmd_params.certificate)) { fprintf(stderr, "-E- Can't find Certificate %s\n", cmd_params.certificate.c_str()); return false; } } return true; } string adjustRelPath(string path, string adjuster) { string tmp; if ((path.size() == 0) || (adjuster.size() == 0)) { return path; } #if defined(__WIN__) if (path.find("\\") == std::string::npos) { ; } else if (path[0] == '.') { ; } else { return path; } #else if (path[0] == '/') { return path; } #endif tmp = adjuster; tmp += path; #if defined(__WIN__) char result[1024] = {0}; GetFullPathName(tmp.c_str(), 1024, result, NULL); tmp = result; return tmp; #else char* result; if ((result = realpath(tmp.c_str(), NULL)) == NULL) { return tmp; } else { tmp.assign(result); free(result); return tmp; } #endif } bool isServerRequestorRequired(CmdLineParams& cmd_params) { return (cmd_params.download || cmd_params.onlineQueryPsids.length() || cmd_params.update_online || cmd_params.get_download_opt.length()); } int download(ServerRequest* srq, vector& url, vector& fileNames, vector& os, string orgPath, bool show_location) { int res = 0; int rc; string error; string path = orgPath; string newFileName = ""; if (show_location) { print_out("Please wait while downloading Files to : '%s'\n", path.c_str()); } else { IS_OKAY_To_INTERRUPT = true; print_out("Please wait while downloading MFA(s) ... "); } for (unsigned i = 0; i < url.size(); i++) { if (show_location) { path = orgPath; newFileName = fileNames[i]; if (os[i] != "all") { path = path + PATH_SEPARATOR + os[i]; newFileName = path + PATH_SEPARATOR + newFileName; if ((rc = MkDir(path)) != 0 && rc != EEXIST) { error += "-E- Failed to download " + newFileName + " " + strerror(rc) + "\n"; print_out("\t%d - %s : Failed\n", i, (os[i] + PATH_SEPARATOR + fileNames[i]).c_str()); res--; continue; } newFileName = os[i] + PATH_SEPARATOR + fileNames[i]; } print_out("\t%d - %s : ...", i, (newFileName).c_str()); } if ((rc = srq->download(url[i], path))) { string errmsg; int errnum; srq->getError(errnum, errmsg); if (show_location) { error += "-E- Failed to download " + fileNames[i] + ", Error :" + errmsg + "\n"; } else { error = "-E- Failed to download MFA file(s) from server, Error : " + errmsg + "\n"; } res--; } if (show_location) { print_out("%s\n", (rc == 0) ? "\b\b\b\b Done" : "\b\b\b\b Failed"); } } print_out("\n"); if (!show_location) { IS_OKAY_To_INTERRUPT = false; } if (res) { print_err("%s\n", error.c_str()); } return res; } int prompt(const char* str, int yes_no_) { int a; int res = 0; if (yes_no_ == -1) { if (!formatted_output && (FOut == stdout)) { printf("%s", str); std::string answer; std::getline(std::cin, answer); if (answer.length() > 0) { a = answer[0]; } else { a = 'n'; } } else { a = 'n'; } } else { a = (yes_no_) ? 'y' : 'n'; } if (a == 'y' || a == 'Y') { res = 1; } return res; } int getLocalDevices(dev_info** devs) { int len = 0; *devs = mdevices_info(MDEVS_TAVOR_CR, &len); if (!len) { return 0; } return len; } int checkAndDisplayDeviceQuery1D(vector& devs, map& psidUpdateInfo, PsidLookupDB& psidLookupDB, int update_query_, int img_path_provided, int force_update, bool is_query, bool is_query_xml, string& xml_query, string& errorMsg, CmdLineParams& cmd_params) { unsigned w; int res = 0; int update_cnt = 0; int no_img_cnt = 0; int multiple_img_cnt = 0; int query_failed_cnt = 0; int mixed_versions_cnt = 0; int unknown_expansion_rom = 0; char fmtdev[64]; string print_out_str = ""; string print_err_str = ""; string xml_output = ""; string tmpstr; print_out("\n"); if (devs.size() > 0) { w = 14; sprintf(fmtdev, "%%-%ds", w + 3); } for (int i = 0; i < (int)devs.size(); i++) { map expRomTypes; map devRomTypeIndex; map availRomTypeIndex; string devname = devs[i]->getDevDisplayName(); string deviceType = devs[i]->getDeviceTypeStr(); string description; string pn = "--"; string ver = "--"; string availVer = ""; bool devQuerySuccess = false; bool imgFound = false; bool multiple_images_found = false; string statusStr; bool device_has_unknown_expansionRom = false; bool image_has_unknown_expansionRom = false; if (devs[i]->isQuerySuccess()) { devQuerySuccess = true; pn = devs[i]->getPartNumber(); if (pn.length()) { ; ; } else if (psidLookupDB.getPN(devs[i]->getBoardTypeId()) != "") { pn = psidLookupDB.getPN(devs[i]->getBoardTypeId()); } else { if (psidUpdateInfo.find(devs[i]->getPsid()) != psidUpdateInfo.end()) { pn = psidUpdateInfo[devs[i]->getPsid()].pns; } else { pn = ""; } } ver = devs[i]->getFWVersion(false); for (unsigned int j = 0; j < devs[i]->_imageVers.size(); j++) { expRomTypes[devs[i]->_imageVers[j].getTypeStr()] = true; devRomTypeIndex[devs[i]->_imageVers[j].getTypeStr()] = j; availRomTypeIndex[devs[i]->_imageVers[j].getTypeStr()] = -1; } availVer = "N/A"; description = devs[i]->getDescription(); if (psidUpdateInfo.find(devs[i]->getPsid()) != psidUpdateInfo.end()) { if (!description.length()) { description = psidUpdateInfo[devs[i]->getPsid()].description; } if (psidUpdateInfo[devs[i]->getPsid()].found) { imgFound = true; vector* imgVers = &psidUpdateInfo[devs[i]->getPsid()].imgVers; for (unsigned int j = 0; j < imgVers->size(); j++) { expRomTypes[(*imgVers)[j].getTypeStr()] = true; availRomTypeIndex[(*imgVers)[j].getTypeStr()] = j; if (devRomTypeIndex.find((*imgVers)[j].getTypeStr()) == devRomTypeIndex.end()) { devRomTypeIndex[(*imgVers)[j].getTypeStr()] = -1; } } ImgVersion* fwImgVer = (ImgVersion*)psidUpdateInfo[devs[i]->getPsid()].findImageVersion("FW"); if (fwImgVer != NULL) { availVer = fwImgVer->getPrintableVersion(CompareFFV, false); } if (psidUpdateInfo[devs[i]->getPsid()].found > 1) { multiple_img_cnt++; multiple_images_found = true; availVer = "N/A"; } } } } int nKeepReasons = 0; int nUpdateReasons = 0; // Check versions of FW components on device against available images for update for (map::iterator iter = expRomTypes.begin(); iter != expRomTypes.end(); ++iter) { string k = iter->first; if (k != "FW") { continue; } /* if (devRomTypeIndex[k] != -1 && devs[i]->_imageVers[devRomTypeIndex[k]].isExpansionRomUnknown()) { device_has_unknown_expansionRom = true; } if (availRomTypeIndex[k] != -1 && psidUpdateInfo[devs[i]->getPsid()].imgVers[availRomTypeIndex[k]].isExpansionRomUnknown()) { image_has_unknown_expansionRom = true; }*/ if ((devRomTypeIndex[k] != -1) && (availRomTypeIndex[k] == -1)) { nKeepReasons++; } if ((devRomTypeIndex[k] == -1) && (availRomTypeIndex[k] != -1)) { nUpdateReasons++; } if ((devRomTypeIndex[k] != -1) && (availRomTypeIndex[k] != -1)) { ImgVersion* devImgVer = &devs[i]->_imageVers[devRomTypeIndex[k]]; ImgVersion* fileImgVer = &psidUpdateInfo[devs[i]->getPsid()].imgVers[availRomTypeIndex[k]]; // u_int16_t fwVer[3] = {3,4,141}; // psidUpdateInfo[devs[i]->getPsid()].imgVers[1].setVersion("PXE", 3, fwVer); if (devImgVer->compareFw(*fileImgVer) < 0) { nUpdateReasons++; } else if (devImgVer->compareFw(*fileImgVer) > 0) { nKeepReasons++; } } } // Set operation status string per device if (!devQuerySuccess) { statusStr = "Failed to open device"; tmpstr = "-E- Failed to query " + devs[i]->getDevDisplayName() + " device, error : " + devs[i]->getLastErrMsg() + "\n"; print_err_str += tmpstr; query_failed_cnt++; res = ERR_CODE_QUERY_FAILED; } else { statusStr = "No matching image found"; if (multiple_images_found) { statusStr = "Multiple image files found"; } else if (device_has_unknown_expansionRom) { statusStr = "Device has unknown expansion rom"; unknown_expansion_rom++; } else if (image_has_unknown_expansionRom) { statusStr = "Image has unknown expansion rom"; unknown_expansion_rom++; } else if (imgFound) { if ((nUpdateReasons > 0) && (nKeepReasons == 0)) { statusStr = "Update required"; devs[i]->setDevToNeedUpdate(); update_cnt++; } else if (force_update) { statusStr = "Forced update required"; update_cnt++; } else if ((nUpdateReasons > 0) && (nKeepReasons > 0)) { statusStr = "N/A (Mixed versions)"; mixed_versions_cnt++; } else if ((nUpdateReasons == 0) && (nKeepReasons >= 0)) { statusStr = "Up to date"; } } else { no_img_cnt++; } } pn = (pn == "") ? "N/A" : pn; if (!is_query_xml) { #if 0 if (!is_query) { printDeviceInfo(i, devname, deviceType, pn, description, statusStr, devs, ver, availVer, expRomTypes, devRomTypeIndex, availRomTypeIndex, psidUpdateInfo, multiple_images_found); } else { printDeviceInfoQuery(i, devname, deviceType, pn, description, statusStr, devs, ver, availVer, expRomTypes, devRomTypeIndex, availRomTypeIndex, psidUpdateInfo, multiple_images_found); } #endif printDeviceInfoQuery(i, devname, deviceType, pn, description, statusStr, devs, ver, availVer, expRomTypes, devRomTypeIndex, availRomTypeIndex, psidUpdateInfo, multiple_images_found); } else { if (xml_query.length()) { xml_query += "\n"; } xml_query += generateQueryXML(i, devname, deviceType, pn, description, statusStr, devs, ver, availVer, expRomTypes, devRomTypeIndex, availRomTypeIndex, psidUpdateInfo, multiple_images_found); } } if (is_query || is_query_xml) { return res; } if ((update_query_ == 0) || (update_cnt == 0)) { if (update_cnt) { tmpstr = "Found " + int_to_string(update_cnt) + " device(s) requiring firmware update. Please use -u flag to perform the update.\n"; print_out_str += tmpstr; } if (query_failed_cnt > 0) { res = ERR_CODE_QUERY_FAILED; } if (img_path_provided) { if (no_img_cnt > 0) { tmpstr = "-E- Could not find matching firmware images for " + int_to_string(no_img_cnt) + " device(s).\n"; print_err_str += tmpstr; res = ERR_CODE_IMG_NOT_FOUND; } } if (unknown_expansion_rom) { tmpstr = "-E- Found Unknown expansion ROM for " + int_to_string(unknown_expansion_rom) + " device(s).\n"; print_err_str += tmpstr; res = ERR_CODE_UNKNOWN_EXPANSION_ROM; } if (mixed_versions_cnt > 0) { tmpstr = "-E- Found mixed component image versions for " + int_to_string(mixed_versions_cnt) + " device(s).\n"; print_err_str += tmpstr; res = ERR_CODE_MIXED_VERSIONS_FOUND; } if (multiple_img_cnt || errorMsg.length()) { print_err_str += errorMsg; res = ERR_CODE_MULTI_IMG_SRC_FOUND; } if (img_path_provided && (no_img_cnt == 0) && (update_cnt == 0) && (query_failed_cnt == 0) && (multiple_img_cnt == 0) && (mixed_versions_cnt == 0) && unknown_expansion_rom == 0) { tmpstr = "All listed device(s) firmware images are up to date.\n"; print_out_str += tmpstr; } } if (update_query_) { if ((no_img_cnt > 0) || (multiple_img_cnt > 0)) { if (no_img_cnt > 0) { #if 0 sprintf(tmpstr, "-E- Could not find matching firmware images for %d device(s).\n", no_img_cnt); print_err_str += tmpstr; #endif res = ERR_CODE_IMG_NOT_FOUND; } #if 0 if (multiple_img_cnt) { sprintf(tmpstr, "-E- Multiple images found for %d device(s) in the provided path.\n", multiple_img_cnt); print_err_str += tmpstr; res = ERR_CODE_MULTI_IMG_SRC_FOUND; } #endif } if (update_cnt) { tmpstr = "Found " + int_to_string(update_cnt) + " device(s) requiring firmware update...\n"; print_out_str += tmpstr; } } if (print_out_str.size() > 0) { print_out("---------\n"); if (update_query_ == 0) { print_out("%s", print_out_str.c_str()); } } if (print_err_str.size() > 0) { if (print_out_str.size() == 0) { print_err("---------\n"); } print_err("%s", print_err_str.c_str()); } if (update_query_ != 0) { if (print_out_str.size() > 0) { print_out("%s", print_out_str.c_str()); } } (void)cmd_params; return res; } void getUniquePsidList(vector& devs, vector& psid_list, vector& dev_types_list, vector& fw_version_list) { for (int i = 0; i < (int)devs.size(); i++) { if (!devs[i]->isQuerySuccess()) { continue; } int found = 0; for (int j = 0; j < (int)psid_list.size(); j++) { if (!psid_list[j].compare(devs[i]->getPsid())) { found = 1; break; } } if (!found) { dev_types_list.push_back(devs[i]->getDeviceType()); psid_list.push_back(devs[i]->getPsid()); fw_version_list.push_back(devs[i]->getFWVersion(false, false).c_str()); } } } void getUniqueMFAList(vector& devs, map& psidUpdateInfo, int force_update, vector& mfa_list, vector& mfa_base_name_list) { map mfa2download; for (int i = 0; i < (int)devs.size(); i++) { if (!devs[i]->isQuerySuccess()) { continue; } if (psidUpdateInfo.find(devs[i]->getPsid()) == psidUpdateInfo.end()) { continue; } if (!psidUpdateInfo[devs[i]->getPsid()].found) { continue; } if (force_update || (devs[i]->compareFWVer(psidUpdateInfo[devs[i]->getPsid()].imgVers[0]) < 0)) { if (mfa2download.count(psidUpdateInfo[devs[i]->getPsid()].url) == 0) { mfa_list.push_back(psidUpdateInfo[devs[i]->getPsid()].url); mfa_base_name_list.push_back(psidUpdateInfo[devs[i]->getPsid()].name); } mfa2download[psidUpdateInfo[devs[i]->getPsid()].url] = 1; } } } int isDirectory(string path) { int status; struct stat st; status = stat(path.c_str(), &st); if (status != 0) { return 0; } return (S_ISDIR(st.st_mode)); } int isFile(string path) { int status; struct stat st; status = stat(path.c_str(), &st); if (status != 0) { return 0; } return (S_ISREG(st.st_mode)); } int getMFAListFromPSIDs(string mfa_path, vector& psid_list, vector& results, string& errorMsg) { int rc; ImageAccess imgacc(CompareFFV); string arch = ""; int res = 0; for (unsigned i = 0; i < psid_list.size(); i++) { int _FileOrDir = 0; vector riv; PsidQueryItem ri; if (isDirectory(mfa_path)) { _FileOrDir = 1; rc = imgacc.queryDirPsid(mfa_path, psid_list[i], arch, 1, riv); if (imgacc.getlastWarning().length()) { errorMsg += imgacc.getlastWarning(); } } else if (isFile(mfa_path)) { _FileOrDir = 2; rc = imgacc.queryPsid(mfa_path, psid_list[i], arch, 1, ri); if (imgacc.getlastWarning().length()) { errorMsg += imgacc.getlastWarning(); } } else { errorMsg += "-E- Bad path: " + mfa_path + "\n"; return -1; } if (rc == 1) { res++; } else if (rc == 0) { // print_err("No image files found for PSID:%s in path: %s\n", psid_list[i].c_str(), mfa_path.c_str()); } else if (rc == -1) { // print_err("Error querying files for PSID: %s\n",psid_list[i].c_str()); return -1; } else if (rc < -1) { errorMsg += "-E- There are multiple image sources for device with PSID=" + psid_list[i] + " found in files:\n"; for (unsigned j = 0; j < riv.size(); j++) { errorMsg += riv[j].url + "\n"; } res = -2; } if (_FileOrDir == 1) { if (riv.size() > 0) { results.push_back(riv[0]); } } else if (_FileOrDir == 2) { results.push_back(ri); } } return 0; } int queryMFAs(ServerRequest* srq, string& mfa_path, vector& psid_list, vector& dev_types_list, map& psidUpdateInfo, int online_update, string& errorMsg, vector& fw_version_list) { int res = -1; int rc = 0; vector results; vector mfaLinks; vector fileNames; if (online_update && dev_types_list.size()) { // Query online MFAs if (srq->updateMFAsRequest(psid_list, dev_types_list, fw_version_list, results) < 0) { // fprintf(stderr, "-E- Failed during PSID query on server.\n"); srq->getError(res, errorMsg); goto clean_up; } srq->getError(res, errorMsg); } else { // Query Local MFAs rc = getMFAListFromPSIDs(mfa_path, psid_list, results, errorMsg); if (rc == -1) { // fprintf(stderr, "-E- Failed during PSID local query.\n"); goto clean_up; } } for (unsigned i = 0; i < results.size(); i++) { psidUpdateInfo[results[i].psid] = results[i]; } res = rc; // rc == 0 or rc == -2 (-2 in case of multiple sources per psid) clean_up: return res; } FILE* createOutFile(string& fileName, bool fileSpecified) { int rc; time_t now; tm* ltm; char name[100]; unsigned pid; string logDir = getLogDir(toolName); if (!fileSpecified) { #if defined(__WIN__) pid = (unsigned)GetCurrentProcessId(); rc = mkdir(logDir.c_str()); #else pid = (unsigned)getpid(); rc = mkdir(logDir.c_str(), 0777); #endif if (rc) { if (errno != EEXIST) { return NULL; } } now = time(0); ltm = localtime(&now); if (ltm == NULL) { return NULL; } sprintf(name, "%s-%d%02d%02d_%02d%02d%02d_%u.log", toolName.c_str(), ltm->tm_year + 1900, ltm->tm_mon + 1, ltm->tm_mday, ltm->tm_hour, ltm->tm_min, ltm->tm_sec, pid); fileName = logDir; #if defined(__WIN__) fileName += "\\"; #else fileName += "/"; #endif fileName += name; } FILE* f = fopen(fileName.c_str(), "w"); return f; } int progressCB_display(int completion) { print_out("\b\b\b\b%3d%%", completion); return abort_request; } int advProgressFunc_display(int completion, const char* stage, prog_t type, int* unknownProgress) { switch (type) { case PROG_WITH_PRECENTAGE: print_out("\r%s - %3d%%", stage, completion); break; case PROG_OK: print_out("\r%s - OK \n", stage); break; case PROG_STRING_ONLY: print_out("%s\n", stage); break; case PROG_WITHOUT_PRECENTAGE: if (unknownProgress) { static const char* progStr[] = {"[. ]", "[.. ]", "[... ]", "[.... ]", "[.....]", "[ ....]", "[ ...]", "[ ..]", "[ .]", "[ ]"}; int size = sizeof(progStr) / sizeof(progStr[0]); print_out("\r%s - %s", stage, progStr[(*unknownProgress) % size]); (*unknownProgress)++; } break; } return abort_request; } int progressCB_nodisplay(int completion) { (void)completion; return abort_request; } void getExePath(char* argv[], string& exe_path) { exe_path = argv[0]; size_t pos = exe_path.rfind("/"); if (pos != string::npos) { exe_path = exe_path.substr(0, pos + 1); // Include the slash } else { exe_path = "./"; } } #define INI_FILESYSTEM_SECTION "filesystem" #define INI_SRCDIR_KEY "srcdir" #define INI_SERVER_SECTION "server" #define INI_PROXY_KEY "proxy" bool getIniParams(config_t& config) { string file = config.exe_path; file += "/mlxfwmanager.ini"; if (!isFile(file)) { // If file does not exist then ignore return true; } dictionary* ini_dict = iniparser_load(file.c_str()); if (!ini_dict) { print_err("-E- Failed to load ini file %s: %s\n", file.c_str(), strerror(errno)); return false; } config.mfa_path = iniparser_getstring(ini_dict, INI_FILESYSTEM_SECTION ":" INI_SRCDIR_KEY, (char*)config.mfa_path.c_str()); config.http_proxy = iniparser_getstring(ini_dict, INI_SERVER_SECTION ":" INI_PROXY_KEY, (char*)config.http_proxy.c_str()); if (ini_dict) { iniparser_freedict(ini_dict); } return true; } bool initConfig(config_t& config, char* argv[], CmdLineParams& cmd_params) { config.display_file_names = false; config.path_is_file = false; config.adjuster_path = ""; if (cmd_params.lvim) { config.setupType = mlxFWMSetupType::lvim; } else if (cmd_params.dl) { config.setupType = mlxFWMSetupType::dl; } else { config.setupType = mlxFWMSetupType::normal; } if (cmd_params.current_dir.length()) { config.exe_path = cmd_params.current_dir; cmd_params.use_exe_rel_paths = 1; } else { char tmpPath[1024] = {0}; #ifdef __WIN__ DWORD rc = GetCurrDir(1024, tmpPath); #else char* rc = GetCurrDir(1024, tmpPath); #endif (void)rc; // Adrianc: avoiding warrnings the Owner should deal with the return code. config.adjuster_path = tmpPath; config.adjuster_path += PATH_SEPARATOR; getExePath(argv, config.exe_path); } if (cmd_params.use_exe_rel_paths == 1) { config.adjuster_path = config.exe_path; } config.mfa_path = "."; config.http_server = cmd_params.server_url; config.http_proxy = cmd_params.proxy; if (config.adjuster_path[config.adjuster_path.length() - 1] == ' ') { config.adjuster_path.erase(config.adjuster_path.length() - 1); } if (cmd_params.update_online) { config.mfa_path = (string)TMP_DIR + "/online_update_mfa_"; } if (!getIniParams(config)) { return false; } if (cmd_params.use_mfa_dir) { config.mfa_path = adjustRelPath(cmd_params.mfa_dir, config.adjuster_path); } if (cmd_params.use_mfa_file) { config.mfa_path = adjustRelPath(cmd_params.mfa_file, config.adjuster_path); config.path_is_file = true; } if (cmd_params.display_archive_names) { config.display_file_names = true; } cmd_params.extract_dir = adjustRelPath(cmd_params.extract_dir, config.adjuster_path); config.psid = cmd_params.psid; return true; } int list_files_content(config_t& config) { string fname; DIR* d; struct dirent* dir; int rc; int res = MLX_FWM_SUCCESS; ImageAccess imgacc(CompareFFV); bool show_titles = true; int displayed_files_cnt = 0; if (config.path_is_file) { vector items; string fpath = config.mfa_path; // TODO: list content by image type rc = imgacc.get_file_content(fpath, items); if (rc) { print_err("-E- Error parsing file: %s\n", fpath.c_str()); res = ERR_CODE_FILE_PARSE_FAILED; } else { display_file_listing(items, config.psid, show_titles); } } else { d = opendir(config.mfa_path.c_str()); if (d == NULL) { return -1; } while ((dir = readdir(d)) != NULL) { string fl = dir->d_name; if (fl == "." || fl == "..") { continue; } string fpath = config.mfa_path; if (fpath.length() > 0) { #if defined(__WIN__) if (fpath[fpath.length() - 1] != '\\') { fpath += "\\"; } #else if (fpath[fpath.length() - 1] != '/') { fpath += "/"; } #endif } fpath += fl; if (imgacc.getFileSignature(fpath) <= 0) { continue; } vector items; rc = imgacc.get_file_content(fpath, items); if (rc) { print_err("-E- Error parsing file: %s\n", fpath.c_str()); res = ERR_CODE_FILE_PARSE_FAILED; continue; } if (config.display_file_names) { printf("Supported Boards in File: %s\n", fpath.c_str()); show_titles = true; } display_file_listing(items, config.psid, show_titles); items.clear(); show_titles = false; displayed_files_cnt++; } closedir(d); if (displayed_files_cnt == 0) { print_out("No image files found\n"); if (res != ERR_CODE_FILE_PARSE_FAILED) { res = ERR_CODE_IMG_NOT_FOUND; } } } return res; } void display_field_str(string field, int size, string display_if_empty = "") { char fmt[50]; string f; if (field.size() == 0) { f = display_if_empty; } else { f = field; } sprintf(fmt, "%%%ds", -size); print_out(fmt, f.c_str()); } void display_file_listing(vector& items, string psid, bool show_titles) { int max_pn_length = 25; int tmpLen = 0; bool breakFlag = false; for (unsigned i = 0; i < items.size(); i++) { // to make all fields aligned tmpLen = items[i].pns.length(); if (tmpLen > max_pn_length) { max_pn_length = tmpLen; } } if (show_titles) { display_field_str("PN", max_pn_length); print_out(" "); display_field_str("PSID", 18); print_out(" "); display_field_str("Version", 28); print_out(" "); display_field_str("Tag", 14); print_out(" "); display_field_str("Description", 32); print_out(" "); print_out("\n"); for (int i = 0; i < 110; i++) { print_out("-"); } print_out("\n"); } for (unsigned i = 0; i < items.size(); i++) { if (psid.length()) { if (psid.compare(items[i].psid)) { continue; } breakFlag = true; } ImgVersion* imv; display_field_str(items[i].pns, max_pn_length, "N/A"); print_out(" "); display_field_str(items[i].psid, 18); print_out(" "); if ((imv = (ImgVersion*)items[i].findImageVersion("FW"))) { display_field_str(imv->getPrintableVersion(0), 28); } else { display_field_str("", 16); } print_out(" "); display_field_str(items[i].selector_tag, 14, "--"); print_out(" "); display_field_str(items[i].description, 32); print_out("\n"); for (unsigned int j = 0; j < items[i].imgVers.size(); j++) { if (!items[i].imgVers[j].getTypeStr().compare("FW")) { continue; } display_field_str("", max_pn_length, ""); print_out(" "); display_field_str("", 18); print_out(" "); display_field_str(items[i].imgVers[j].getPrintableVersion(0), 12); print_out(" "); // display_field_str("", 16, ""); // display_field_str("", 32); print_out("\n"); } if (breakFlag) { break; } } } int CalcFileCrc(char* fileName) { FILE* fp; u_int8_t* buf = NULL; long fsize; int total = 0; int sz; int res = 0; if ((fp = fopen(fileName, "rb")) == NULL) { return -1; } if (fseek(fp, 0L, SEEK_END)) { printf("Failed to seek end of file : '%s'\n", fileName); goto err_clean_up; } if ((fsize = ftell(fp)) == -1) { printf("Failed to ftell file : '%s'\n", fileName); goto err_clean_up; } rewind(fp); buf = (u_int8_t*)malloc(fsize); if (buf == NULL) { printf("Memory Allocation failure\n"); goto err_clean_up; } while (total < fsize) { sz = fread(&buf[total], 1, fsize, fp); if (sz < 0) { break; } total += sz; } if (total != fsize) { goto err_clean_up; } res = 0; u_int32_t calc_crc; calc_crc = mfasec_crc32(buf, total, 0); printf("CRC32 = %08x\n", calc_crc); err_clean_up: if (buf != NULL) { free(buf); } fclose(fp); return res; } void fixXmlKey(string& k) { std::replace(k.begin(), k.end(), ' ', '_'); k.erase(std::remove(k.begin(), k.end(), '('), k.end()); k.erase(std::remove(k.begin(), k.end(), ')'), k.end()); } void TerminationHandler(int signum) { (void)signum; abort_request = 1; if (IS_OKAY_To_INTERRUPT) { print_out("\nInterrupted\n"); exit(0); } } #ifdef __WIN__ #include static BOOL CtrlHandler(DWORD fdwCtrlType) { switch (fdwCtrlType) { // Handle the CTRL-C signal. case CTRL_C_EVENT: // CTRL-CLOSE: confirm that the user wants to exit. case CTRL_CLOSE_EVENT: // Pass other signals to the next handler. case CTRL_BREAK_EVENT: case CTRL_LOGOFF_EVENT: case CTRL_SHUTDOWN_EVENT: TerminationHandler(SIGINT); return TRUE; default: return FALSE; } } #endif void initHandler() { #ifdef __WIN__ #define SIGNAL_NUM 3 int signalList[SIGNAL_NUM] = {SIGINT, SIGTERM, SIGABRT}; SetConsoleCtrlHandler((PHANDLER_ROUTINE)CtrlHandler, true); #else #define SIGNAL_NUM 4 int signalList[SIGNAL_NUM] = {SIGINT, SIGTERM, SIGPIPE, SIGHUP}; #endif // set the signal handler for (int i = 0; i < SIGNAL_NUM; i++) { void (*prevFunc)(int); prevFunc = signal(signalList[i], TerminationHandler); if (prevFunc == SIG_ERR) { printf("-E- failed to set signal Handler."); exit(ERR_CODE_INTERRUPTED); } } } string generateQueryXML(int dev_index, string devname, string deviceType, string pn, string description, string statusStr, vector& devs, string ver, string availVer, map expRomTypes, map devRomTypeIndex, map availRomTypeIndex, map& psidUpdateInfo, bool multiple_images_found) { string output = ""; output += " getPsid().c_str() + "\" partNumber=\"" + pn + "\">\n"; output += " \n"; output += " \n"; for (map::iterator iter = expRomTypes.begin(); iter != expRomTypes.end(); ++iter) { string k = iter->first; string dver = "N/A"; string aver = "N/A"; string fwType = string(k); if (!k.compare("FW")) { continue; } if (devRomTypeIndex[k] != -1) { dver = devs[dev_index]->_imageVers[devRomTypeIndex[k]].getPrintableVersion(0, false); } if (availRomTypeIndex[k] != -1) { aver = psidUpdateInfo[devs[dev_index]->getPsid()].imgVers[availRomTypeIndex[k]].getPrintableVersion(0, false); } fixXmlKey(fwType); if (multiple_images_found) { output += " <" + fwType + " current=\"" + dver + "\" available=\"N/A\"/>\n"; } else { output += " <" + fwType + " current=\"" + dver + "\" available=\"" + aver + "\"/>\n"; } } output += " \n"; fixXmlString(description); if (devs[dev_index]->isOnlyBase) { if (devs[dev_index]->portOneType == MlnxDev::PORT_ETH) { output += " macPortOne + "\" />\n"; } else if (devs[dev_index]->portOneType == MlnxDev::PORT_IB) { output += " guidPortOne + "\" />\n"; } else { output += " macPortOne + "\" />\n"; output += " guidPortOne + "\" />\n"; } } else { if (devs[dev_index]->portOneType == MlnxDev::PORT_IB || devs[dev_index]->portTwoType == MlnxDev::PORT_IB) { string ports = ""; if (devs[dev_index]->portOneType == MlnxDev::PORT_IB) { ports = "port1=\"" + devs[dev_index]->guidPortOne + "\" "; } if (devs[dev_index]->portTwoType == MlnxDev::PORT_IB) { ports += "port2=\"" + devs[dev_index]->guidPortTwo + "\""; } output += " \n"; } if (devs[dev_index]->portOneType == MlnxDev::PORT_ETH || devs[dev_index]->portTwoType == MlnxDev::PORT_ETH) { string ports = ""; if (devs[dev_index]->portOneType == MlnxDev::PORT_ETH) { ports = "port1=\"" + devs[dev_index]->macPortOne + "\" "; } if (devs[dev_index]->portTwoType == MlnxDev::PORT_ETH) { ports += "port2=\"" + devs[dev_index]->macPortTwo + "\""; } output += " \n"; } } output += " " + statusStr + "\n"; output += " " + description + "\n"; output += " "; return output; } void printDeviceInfoQuery(int dev_index, string devname, string deviceType, string pn, string description, string statusStr, vector& devs, string ver, string availVer, map expRomTypes, map devRomTypeIndex, map availRomTypeIndex, map& psidUpdateInfo, bool multiple_images_found) { print_out("Device #%d:\n", dev_index + 1); print_out("----------\n\n"); print_out(" Device Type: %s\n", deviceType.c_str()); print_out(" Part Number: %s\n", pn.c_str()); print_out(" Description: %s\n", description.c_str()); print_out(" PSID: %s\n", devs[dev_index]->getPsid().c_str()); print_out(" PCI Device Name: %s\n", devname.c_str()); if (devs[dev_index]->isOnlyBase) { if (devs[dev_index]->portOneType == MlnxDev::PORT_ETH) { print_out(" Base MAC: %s\n", devs[dev_index]->macPortOne.c_str()); if (devs[dev_index]->portTwoType == MlnxDev::PORT_IB) { print_out(" Base GUID: %s\n", devs[dev_index]->guidPortOne.c_str()); } } else if (devs[dev_index]->portOneType == MlnxDev::PORT_IB) { print_out(" Base GUID: %s\n", devs[dev_index]->guidPortOne.c_str()); if (devs[dev_index]->portTwoType == MlnxDev::PORT_ETH) { print_out(" Base MAC: %s\n", devs[dev_index]->macPortOne.c_str()); } } else { print_out(" Base GUID: %s\n", devs[dev_index]->guidPortOne.c_str()); print_out(" Base MAC: %s\n", devs[dev_index]->macPortOne.c_str()); } } else { if (devs[dev_index]->portOneType == MlnxDev::PORT_ETH) { print_out(" Port1 MAC: %s\n", devs[dev_index]->macPortOne.c_str()); } else if (devs[dev_index]->portOneType == MlnxDev::PORT_IB) { print_out(" Port1 GUID: %s\n", devs[dev_index]->guidPortOne.c_str()); } else { print_out(" Port1 MAC: %s\n", devs[dev_index]->macPortOne.c_str()); print_out(" Port1 GUID: %s\n", devs[dev_index]->guidPortOne.c_str()); } if (devs[dev_index]->portTwoType == MlnxDev::PORT_ETH) { print_out(" Port2 MAC: %s\n", devs[dev_index]->macPortTwo.c_str()); } else if (devs[dev_index]->portTwoType == MlnxDev::PORT_IB) { print_out(" Port2 GUID: %s\n", devs[dev_index]->guidPortTwo.c_str()); } else { print_out(" Port2 MAC: %s\n", devs[dev_index]->macPortTwo.c_str()); print_out(" Port2 GUID: %s\n", devs[dev_index]->guidPortTwo.c_str()); } } print_out(" Versions: %-14s %-14s\n", "Current", "Available"); print_out(" FW %-14s %-14s\n", ver.c_str(), availVer.c_str()); for (map::iterator iter = expRomTypes.begin(); iter != expRomTypes.end(); ++iter) { string k = iter->first; string dver = "N/A"; string aver = "N/A"; if (!k.compare("FW")) { continue; } if (devRomTypeIndex[k] != -1) { dver = devs[dev_index]->_imageVers[devRomTypeIndex[k]].getPrintableVersion(0, false); } if (availRomTypeIndex[k] != -1) { aver = psidUpdateInfo[devs[dev_index]->getPsid()].imgVers[availRomTypeIndex[k]].getPrintableVersion(0, false); } print_out(" %-12s %-14s %-14s\n", k.c_str(), dver.c_str(), (multiple_images_found) ? "--" : aver.c_str()); } print_out("\n Status: %s\n\n", statusStr.c_str()); if (devs[dev_index]->doesDevNeedUpdate()) { displayReleaseNoteMFAs(psidUpdateInfo, devs, dev_index); } } void fixXmlString(string& stringToFix) { string rep[5] = {"\"", "&", "'", ">", "<"}; for (int i = 0; i < 5; i++) { replaceStringInPlace(stringToFix, rep[i], ""); } } void replaceStringInPlace(string& subject, const string& search, const string& replace) { int pos = 0; while ((pos = subject.find(search, pos)) != (int)std::string::npos) { subject.replace(pos, search.length(), replace); pos += replace.length(); } } string getline() { std::string str; std::getline(std::cin, str); return str; } int handleOnlinePsidsQueryXml(ServerRequest* srq, CmdLineParams& cmd_params, config_t config) { int res = 0; (void)config; vector psidUpdateInfo; if (srq->queryPsids(cmd_params.onlineQueryPsids, psidUpdateInfo)) { print_err("\n \n"); res = ERR_CODE_SERVER_QUERY_FAILED; return res; } string output = "\n"; for (unsigned int i = 0; i < psidUpdateInfo.size(); i++) { PsidQueryItem ri = psidUpdateInfo[i]; string status; string ver = "N/A"; string mfa = "N/A"; string release_note = ""; if (ri.found) { status = "Found"; ImgVersion* img = (ImgVersion*)ri.findImageVersion("FW"); if (img) { ver = img->getPrintableVersion(cmd_params.compare_ffv, false); } mfa = ri.name; release_note = ri.release_note.length() ? "\n" + ri.release_note : ""; } else { status = "Not Found"; res = 1; } output += " \n"; output += " \n"; output += " \n"; if (ri.found) { for (unsigned int j = 0; j < ri.imgVers.size(); j++) { string type = ri.imgVers[j].getTypeStr(); if (type == "FW") { continue; } output += " <" + type + " available=\"" + ri.imgVers[j].getPrintableVersion(cmd_params.compare_ffv, false) + "\"/>\n"; } } output += " \n"; if (release_note.length()) { std::istringstream stream(release_note); string line; getline(stream, line); release_note = line; while (!stream.eof()) { getline(stream, line); release_note += "\\n" + line; } output += " " + release_note + "\n"; } output += " " + status + "\n"; output += " \n"; } output += "\n"; printf("%s\n", output.c_str()); return res; } int handleOnlinePsidsQuery(ServerRequest* srq, CmdLineParams& cmd_params, config_t config) { int res = 0; (void)config; vector psidUpdateInfo; if (srq->queryPsids(cmd_params.onlineQueryPsids, psidUpdateInfo)) { print_err("-E- Failed to query PSIDs from server\n"); string errorMsg; srq->getError(res, errorMsg); print_err("%s\n", errorMsg.c_str()); res = ERR_CODE_SERVER_QUERY_FAILED; return res; } for (unsigned int i = 0; i < psidUpdateInfo.size(); i++) { PsidQueryItem ri = psidUpdateInfo[i]; string status; string ver = "N/A"; string mfa = "N/A"; string release_note = "N/A"; if (ri.found) { status = "Found"; ImgVersion* img = (ImgVersion*)ri.findImageVersion("FW"); if (img) { ver = img->getPrintableVersion(cmd_params.compare_ffv, false); } mfa = ri.name; release_note = ri.release_note.length() ? "\n" + ri.release_note : "N/A"; } else { status = "Not Found"; res = 1; } print_out("PSID #%d:\n", i + 1); print_out("----------\n\n"); print_out(" PSID: %s\n", ri.psid.c_str()); print_out(" Part Number: %s\n", ri.pns.c_str()); print_out(" MFA Name: %s\n", mfa.c_str()); print_out(" Versions: %-14s\n", "Available"); print_out(" FW %-14s\n", ver.c_str()); if (ri.found) { for (unsigned int j = 0; j < ri.imgVers.size(); j++) { string type = ri.imgVers[j].getTypeStr(); if (type == "FW") { continue; } print_out(" %-12s %-14s\n", type.c_str(), ri.imgVers[j].getPrintableVersion(cmd_params.compare_ffv, false).c_str()); } } std::istringstream stream(release_note); string line; getline(stream, line); print_out(" Release Notes: %-14s\n", line.c_str()); while (!stream.eof()) { getline(stream, line); print_out(" %-14s\n", line.c_str()); } print_out("\n Status: %s\n\n", status.c_str()); } return res; } static int getFileProperties(ServerRequest* srq, vector& filePropVec, string osFilter = "", string devFilter = "", string fileTypeFilter = "") { if (!srq) { return ERR_CODE_INTERNAL_ERR; } if (srq->DownloadFilesRequest(filePropVec, osFilter, devFilter, fileTypeFilter)) { return ERR_CODE_SERVER_DOWNLOAD_FAILED; } return MLX_FWM_SUCCESS; } int check_valid_os_type(CmdLineParams& cmd_params, bool* os_valid) { vector filePropVec; int res = MLX_FWM_SUCCESS; *os_valid = false; if (cmd_params.download_os == "all") { *os_valid = true; return res; } ServerRequest* srq = new ServerRequest(cmd_params.server_url.c_str(), cmd_params.proxy.c_str(), cmd_params.compare_ffv, cmd_params.show_progress, cmd_params.download_key, cmd_params.certificate, cmd_params.numberOfRetrials); if (srq == NULL) { return ERR_CODE_MEM_ALLOC_FAIL; } res = getFileProperties(srq, filePropVec, "", "", "self_extractor"); if (res) { print_err("-E- Failed to query files on server\n"); string errorMsg; srq->getError(res, errorMsg); print_err("%s\n", errorMsg.c_str()); } for (std::vector::iterator it = filePropVec.begin(); it != filePropVec.end(); it++) { if (cmd_params.download_os == it->os) { *os_valid = true; break; } } delete srq; return res; } int handleGetDownloadOptionsRequest(ServerRequest* srq, CmdLineParams& cmd_params) { std::set availOpt; vector filePropVec; int res = MLX_FWM_SUCCESS; res = getFileProperties(srq, filePropVec, "", "", cmd_params.get_download_opt == "os" ? "self_extractor" : "mfa"); if (res) { if (cmd_params.download_key != "last_release") { print_err("-E- Failed to Query files on server, might be invalid key?\n"); } else { print_err("-E- Failed to query files on server\n"); string errorMsg; srq->getError(res, errorMsg); print_err("%s\n", errorMsg.c_str()); } return res; } bool insertOS = cmd_params.get_download_opt == "os"; for (std::vector::iterator it = filePropVec.begin(); it != filePropVec.end(); it++) { availOpt.insert(insertOS ? it->os : it->family); } for (std::set::iterator it = availOpt.begin(); it != availOpt.end(); it++) { print_out("%s\n", (*it).c_str()); } return res; } int handleDownloadRequest(ServerRequest* srq, CmdLineParams& cmd_params, config_t config) { int res = 0; (void)config; vector files; filesOPtions filterOPtions; // print_out("\n"); if (getFileProperties(srq, files, cmd_params.download_os, cmd_params.download_dev, cmd_params.download_type)) { if (cmd_params.download_key != "last_release") { print_err("-E- Failed to download files from server, might be invalid key?\n"); } else { print_err("-E- Failed to download files from server\n"); string errorMsg; srq->getError(res, errorMsg); print_err("%s\n", errorMsg.c_str()); } res = ERR_CODE_SERVER_DOWNLOAD_FAILED; return res; } if (!cmd_params.download_default) { filterOPtions.files.swap(files); BaseMenu* currentMenu = new FileTypeMenu; while (currentMenu != NULL) { bool isPrev = false; bool isExit = false; int choice = 0; int invalid = false; BaseMenu* aNewmenu; currentMenu->generateMenu(cmd_params, filterOPtions); if (currentMenu->isValid(cmd_params, filterOPtions)) { std::istringstream iss(getline()); iss.clear(); iss >> choice; if (!iss.eof()) { sleep(1); invalid = true; } if (iss.fail()) { sleep(1); invalid = true; } print_out("\n"); } else { aNewmenu = currentMenu->getNextMenu(cmd_params, filterOPtions); delete currentMenu; currentMenu = aNewmenu; continue; } if (abort_request) { delete currentMenu; return res; } if (!abort_request && invalid) { delete currentMenu; print_err("-E- Invalid choice\n"); return 1; } if (!currentMenu->parseChoice(choice, isExit, isPrev, filterOPtions)) { delete currentMenu; return -1; } if (isExit) { delete currentMenu; return 0; } if (isPrev) { aNewmenu = currentMenu->getPrevMenu(cmd_params, filterOPtions); } else { aNewmenu = currentMenu->getNextMenu(cmd_params, filterOPtions); } delete currentMenu; currentMenu = aNewmenu; } filterOPtions.filtered.clear(); for (unsigned int i = 0; i < filterOPtions.files.size(); i++) { if (filterOPtions.files[i].file_type != filterOPtions.file_type && filterOPtions.file_type != "all") { continue; } else if (filterOPtions.files[i].family != filterOPtions.family && filterOPtions.family != "all") { continue; } else if (filterOPtions.files[i].os != filterOPtions.os && filterOPtions.os != "all" && filterOPtions.files[i].os != "all") { continue; } filterOPtions.filtered.push_back(filterOPtions.files[i]); } for (unsigned int i = 0; i < filterOPtions.filtered.size(); i++) { filterOPtions.urls.push_back(filterOPtions.filtered[i].url); filterOPtions.names.push_back(filterOPtions.filtered[i].name); filterOPtions.osDirName.push_back(filterOPtions.filtered[i].os); } } else { // take files as is for (unsigned int i = 0; i < files.size(); i++) { filterOPtions.urls.push_back(files[i].url); filterOPtions.names.push_back(files[i].name); filterOPtions.osDirName.push_back(files[i].os); } filterOPtions.filtered.swap(files); } print_out("\n"); if (!filterOPtions.urls.size()) { print_err("-E- Failed to find files that match your request\n"); return 1; } // displayFilesToBeDownloaded(filterOPtions, cmd_params); if (!displayReleaseNoteFiles(filterOPtions, cmd_params)) { return res; } res = download(srq, filterOPtions.urls, filterOPtions.names, filterOPtions.osDirName, cmd_params.download_dir); if (res < 0) { print_err("-E- Failed to download files from server\n"); res = ERR_CODE_SERVER_RETRIEVE_FAIL; } else { print_out("Downloading file(s) to : '%s' is done successfully\n", cmd_params.download_dir.c_str()); } return res; } int generateProductionName(string& targetFile, PsidQueryItem ri) { int res = 0; if (targetFile.length()) { return res; } string IC_code_name; dm_dev_id_t devType; if (dm_get_device_id_offline(ri.devId, ri.revId, &devType)) { IC_code_name = "X"; } else { IC_code_name = dm_dev_type2str(devType); } ImgVersion* fwImgVer = (ImgVersion*)ri.findImageVersion("FW"); if (fwImgVer == NULL) { print_err("-E- UnExpected error getting version\n"); return 1; } string fw = fwImgVer->getPrintableVersion(0, false); targetFile = "fw-" + IC_code_name + "-rel-" + fw + "-"; if (ri.iniName != "") { targetFile += ri.iniName; } else if (ri.pns != "") { targetFile += ri.pns; } else { targetFile += ri.psid; } for (unsigned int i = 0; i < ri.imgVers.size(); i++) { if (ri.imgVers[i].getTypeStr() == "FW") { continue; } else { targetFile += "-"; targetFile += ri.imgVers[i].getTypeStr(); targetFile += "-"; targetFile += ri.imgVers[i].getPrintableVersion(0, false); } } targetFile += ".bin"; return res; } void displayReleaseNoteMFAs(map psidUpdateInfo, vector devs, int deviceIndex) { if (psidUpdateInfo[devs[deviceIndex]->getPsid()].release_note.length()) { print_out("Release notes for the available Firmware:\n"); print_out("-----------------------------------------\n\n"); print_out(" %s\n", psidUpdateInfo[devs[deviceIndex]->getPsid()].release_note.c_str()); } } /* void displayFilesToBeDownloaded(filesOPtions filterOPtions, CmdLineParams cmd_params) { print_out("------ Files To Be Downloaded ------\n\n"); for (int i = 0; i < filterOPtions.filtered.size(); i++){ print_out("%d - %s\n", i, filterOPtions.filtered[i].name.c_str()); } print_out("\n"); }*/ int displayReleaseNoteFiles(const filesOPtions& filterOPtions, const CmdLineParams& cmd_params) { map releaseNote; map > os; map > files; string tmp = ""; for (unsigned int i = 0; i < filterOPtions.filtered.size(); i++) { files[filterOPtions.filtered[i].family].push_back(filterOPtions.filtered[i].name); os[filterOPtions.filtered[i].family].push_back(filterOPtions.filtered[i].os); if (filterOPtions.filtered[i].release_note.length()) { releaseNote[filterOPtions.filtered[i].family] = filterOPtions.filtered[i].release_note; } } print_out("------ Files To Be Downloaded ------\n\n"); for (map >::iterator p = files.begin(); p != files.end(); ++p) { print_out("\n%s :\n", beautify_device_name(p->first).c_str()); print_out("%.*s\n\n", p->first.length() + 2 < 40 ? (int)p->first.length() + 2 : 39, "----------------------------------------"); print_out(":\n"); for (unsigned int i = 0; i < p->second.size(); i++) { tmp = ""; if (os[p->first][i] != "all") { tmp = os[p->first][i] + PATH_SEPARATOR; } print_out("%d - %s\n", i, (tmp + p->second[i]).c_str()); } print_out("\n"); if (releaseNote.count(p->first)) { print_out(":\n"); print_out("%s\n", releaseNote[p->first].c_str()); } print_out("\n"); } int answer = prompt("Perform Download? [y/N]: ", cmd_params.yes_no_); if (!answer && !abort_request) { sleep(1); if (!abort_request && IS_OKAY_To_INTERRUPT) { print_out("\nNo download performed\n"); } } return answer; } mstflint-4.26.0/mlxfwupdate/image_access.cpp0000644000175000017500000005106014522641732021354 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include "image_access.h" #include "img_version.h" #include #include #include #include #include #include #include #ifdef MST_UL #include #else #include #endif using namespace std; ImageAccess::ImageAccess(int compareFFV) { _imgFwOps = NULL; _compareFFV = compareFFV; memset(&_imgFwParams, 0, sizeof(_imgFwParams)); memset(_errBuff, 0, sizeof(_errBuff)); } ImageAccess::~ImageAccess() { if (_imgFwOps) { _imgFwOps->FwCleanUp(); delete _imgFwOps; _imgFwOps = NULL; } } bool ImageAccess::hasMFAs(string directory) { DIR * d; struct dirent* dir; int rc; d = opendir(directory.c_str()); if (d == NULL) { return false; } while ((dir = readdir(d)) != NULL) { string fl = dir->d_name; if ((fl == ".") || (fl == "..")) { continue; } string fpath = directory; fpath += "/"; fpath += fl; rc = getFileSignature(fpath); if ((rc == IMG_SIG_TYPE_BIN) || (rc == IMG_SIG_TYPE_MFA)) { closedir(d); return true; } } closedir(d); return false; } int ImageAccess::queryDirPsid(string& path, string& psid, string& selector_tag, int image_type, vector < PsidQueryItem >& riv) { int res = 0; DIR * d; struct dirent* dir; int found = 0; int rc; d = opendir(path.c_str()); if (d == NULL) { return -1; } while ((dir = readdir(d)) != NULL) { PsidQueryItem ro; string fl = dir->d_name; if ((fl == ".") || (fl == "..")) { continue; } string fpath = path; fpath += "/"; fpath += fl; rc = this->queryPsid(fpath.c_str(), psid, selector_tag, image_type, ro); if (rc < 0) { res = -1; goto clean_up; } if (rc == 1) { riv.push_back(ro); found++; riv[0].found = found; res = 1; } } if (found > 1) { res = -2; } clean_up: closedir(d); return res; } bool ImageAccess::openImg(fw_hndl_type_t hndlType, char* psid, char* fileHndl) { memset(_errBuff, 0, sizeof(_errBuff)); _imgFwParams.errBuff = _errBuff; _imgFwParams.errBuffSize = MLNX_ERR_BUFF_SIZE; _imgFwParams.hndlType = hndlType; _imgFwParams.psid = psid; _imgFwParams.fileHndl = fileHndl; _imgFwParams.shortErrors = true; _imgFwOps = FwOperations::FwOperationsCreate(_imgFwParams); if (_imgFwOps == NULL) { _errMsg = "-E- " + (string)_errBuff + "\n"; if (_errMsg.find("upgrade tool") != std::string::npos) { _warning = _errMsg; } else if (_errMsg.find("with higher Version") != std::string::npos) { _warning = _errMsg; } _log += _errMsg; return false; } return true; } int ImageAccess::queryPsid(const string& fname, const string& psid, string& selector_tag, int image_type, PsidQueryItem& ri) { int res = 0; mfa_desc* mfa_d = NULL; fw_info_t img_query; string iniName = ""; vector < u_int8_t > sect; /* to get fw configuration. */ vector < u_int8_t > dest; if (!openImg(FHT_FW_FILE, (char*)psid.c_str(), (char*)fname.c_str())) { return 0; } ri.psid = psid; ri.found = 0; memset(&img_query, 0, sizeof(img_query)); if (!_imgFwOps->FwQuery(&img_query, true)) { _errMsg = "Failed to query " + (string)_imgFwOps->err(); _log += _errMsg; goto clean_up; } if (!psid.compare(img_query.fw_info.psid)) { u_int32_t* supporteHwId; u_int32_t supporteHwIdNum; _imgFwOps->getSupporteHwId(&supporteHwId, supporteHwIdNum); ri.found = 1; ri.url = fname; ri.pns = ""; ri.devId = (supporteHwIdNum > 0) ? supporteHwId[0] : 0; ri.revId = (ri.devId >> 16) & 0xffff; ri.devId = ri.devId & 0xffff; ri.isFailSafe = img_query.fw_info.is_failsafe; if (_imgFwOps->FwGetSection(H_FW_CONF, sect)) { if (unzipDataFile(sect, dest, "Fw Configuration")) { char* ptr = strstr((char*)&dest[0], "Name ="); int counter = 7; while (ptr && *ptr != '\n' && *ptr != '\r') { if (counter-- > 0) { ptr++; continue; } iniName += *ptr; ptr++; } } } ri.iniName = iniName; if (!mfa_open_file(&mfa_d, (char*)fname.c_str())) { char* pn = mfa_get_board_metadata(mfa_d, (char*)psid.c_str(), (char*)"PN"); if (pn != NULL) { ri.pns = pn; free(pn); } char* desc = mfa_get_board_metadata(mfa_d, (char*)psid.c_str(), (char*)"DESCRIPTION"); /* TODO: Make more efficient */ if (desc != NULL) { ri.description = desc; free(desc); } mfa_close(mfa_d); } if (!_compareFFV) { ImgVersion imgv; imgv.setVersion("FW", 3, img_query.fw_info.fw_ver, img_query.fw_info.branch_ver); ri.imgVers.push_back(imgv); } else { u_int16_t fwVer[4]; fwVer[0] = img_query.fw_info.fw_ver[0]; fwVer[1] = img_query.fw_info.fw_ver[1]; fwVer[2] = img_query.fw_info.fw_ver[2] / 100; fwVer[3] = img_query.fw_info.fw_ver[2] % 100; ImgVersion imgv; imgv.setVersion("FW", 4, fwVer); ri.imgVers.push_back(imgv); } for (int i = 0; i < img_query.fw_info.roms_info.num_of_exp_rom; i++) { ImgVersion imgVer; const char* tpc = _imgFwOps->expRomType2Str(img_query.fw_info.roms_info.rom_info[i].exp_rom_product_id); if (tpc == NULL) { /* imgVer.setExpansionRomtoUnknown(); */ tpc = "UNKNOWN_ROM"; } int sz = img_query.fw_info.roms_info.rom_info[i].exp_rom_num_ver_fields; imgVer.setVersion(tpc, sz, img_query.fw_info.roms_info.rom_info[i].exp_rom_ver); ri.imgVers.push_back(imgVer); } res = 1; } clean_up: (void)selector_tag; (void)image_type; _imgFwOps->FwCleanUp(); delete _imgFwOps; _imgFwOps = NULL; return res; } int ImageAccess::getImage(const string& fname, const string& psid, string& selector_tag, int image_type, u_int8_t ** filebuf) { int res = -1; int type = getFileSignature(fname); if (type == IMG_SIG_TYPE_MFA) { mfa_desc* mfa_d; int rc = mfa_open_file(&mfa_d, (char*)fname.c_str()); if (!rc) { res = mfa_get_image(mfa_d, (char*)psid.c_str(), image_type, (char*)selector_tag.c_str(), filebuf); mfa_close(mfa_d); } else { res = -1; } } else if (type == IMG_SIG_TYPE_BIN) { res = getImage(fname, filebuf); } /* else type is unknown and res = -1 */ return res; } int ImageAccess::getImage(const string& fname, u_int8_t** filebuf) { int res = -1; FILE * fp; u_int8_t* buf = NULL; long int fsize; long int sz; if ((fp = fopen(fname.c_str(), "rb")) == NULL) { _errMsg = "Failed to open file : " + (string)fname.c_str(); _log += _errMsg; return -1; } if (fseek(fp, 0L, SEEK_END) < 0) { _errMsg = "Fseek failed on file : " + (string)fname.c_str(); _log += _errMsg; goto clean_up; } fsize = ftell(fp); if (fsize <= 0) { _errMsg = "Ftell failed on file : " + (string)fname.c_str(); _log += _errMsg; goto clean_up; } rewind(fp); buf = (u_int8_t*)malloc(fsize * sizeof(u_int8_t)); if (buf == NULL) { _errMsg = "Memory allocation failure for file : " + (string)fname.c_str(); _log += _errMsg; goto clean_up; } memset(buf, 0, fsize); *filebuf = buf; sz = fread(buf, 1, fsize, fp); if ((sz != fsize) || (sz <= 0) || (buf == NULL)) { _errMsg = "ftell size is not equivalent to fread total size" + (string)fname.c_str(); _log += _errMsg; goto clean_up; } res = fsize; clean_up: fclose(fp); if (res == -1) { if (buf != NULL) { free(buf); } } return res; } int ImageAccess::getFileSignature(const string& fname) { static const int header_size = 16; FILE * fin; char tmpb[header_size]; int res = -2; do{ if (!(fin = fopen(fname.c_str(), "r"))) { break; } if (1 > fread(tmpb, header_size, 1, fin)) { break; } res = getBufferSignature((u_int8_t*)tmpb, 4); } while (0); if (fin) { fclose(fin); } return res; } int ImageAccess::getBufferSignature(u_int8_t* buf, u_int32_t size) { int res = IMG_SIG_TYPE_UNKNOWN; if (0 == memcmp(buf, "MTFW", 4)) { res = IMG_SIG_TYPE_BIN; } else if (0 == memcmp(buf, "MFAR", 4)) { res = IMG_SIG_TYPE_MFA; } else if (0 == memcmp(buf, PldmPkg::UUID, size)) { res = IMG_SIG_TYPE_PLDM; } return res; } int ImageAccess::get_bin_content(const string& fname, vector < PsidQueryItem >& riv) { fw_info_t img_query; int res = 0; char psid[33]; PsidQueryItem item; ImgVersion imgv; if (_imgFwOps != NULL) { _errMsg = "_imgFwOPs should be null"; _log += _errMsg; return -1; } if (!openImg(FHT_FW_FILE, NULL, (char*)fname.c_str())) { return -1; } memset(&img_query, 0, sizeof(img_query)); if (!_imgFwOps->FwQuery(&img_query, true)) { _errMsg = "Failed to query " + (string)_imgFwOps->err(); _log += _errMsg; res = -1; goto clean_up; } strcpy(psid, img_query.fw_info.psid); psid[32] = 0; item.psid = psid; item.pns = ""; item.board_rev = ""; imgv.setVersion("FW", 3, img_query.fw_info.fw_ver, img_query.fw_info.branch_ver); item.imgVers.push_back(imgv); for (int i = 0; i < img_query.fw_info.roms_info.num_of_exp_rom; i++) { ImgVersion imgVer; const char* tpc = _imgFwOps->expRomType2Str(img_query.fw_info.roms_info.rom_info[i].exp_rom_product_id); if (tpc == NULL) { /* imgVer.setExpansionRomtoUnknown(); */ tpc = "UNKNOWN_ROM"; } int sz = img_query.fw_info.roms_info.rom_info[i].exp_rom_num_ver_fields; if (img_query.fw_info.roms_info.rom_info[i].exp_rom_product_id == 0xf) { sz = 1; } imgVer.setVersion(tpc, sz, img_query.fw_info.roms_info.rom_info[i].exp_rom_ver); item.imgVers.push_back(imgVer); } riv.push_back(item); clean_up: _imgFwOps->FwCleanUp(); delete _imgFwOps; _imgFwOps = NULL; return res; } int ImageAccess::get_mfa_content(const string& fname, vector < PsidQueryItem >& riv) { mfa_desc * mfa_d; map_entry_hdr* me = NULL; char psid[33]; if (mfa_open_file(&mfa_d, (char*)fname.c_str())) { return -1; } me = NULL; while ((me = mfa_get_next_mentry(mfa_d, me))) { PsidQueryItem item; strncpy(psid, me->board_type_id, 32); psid[32] = 0; item.psid = psid; char* val = mfa_get_map_entry_metadata(me, (char*)"PN"); if (val == NULL) { item.pns = ""; } else { item.pns = val; free(val); } val = mfa_get_map_entry_metadata(me, (char*)"BOARD_REV"); if (val == NULL) { item.board_rev = ""; } else { item.board_rev = val; free(val); } val = mfa_get_map_entry_metadata(me, (char*)"DESCRIPTION"); if (val == NULL) { item.description = ""; } else { item.description = val; free(val); } val = mfa_get_map_entry_metadata(me, (char*)"BRANCH"); if (val == NULL) { item.branch = ""; } else { item.branch = val; free(val); } map_image_entry* imge; for (int i = 0; i < me->nimages; i++) { imge = mfa_get_map_image(me, i); if (imge == NULL) { continue; } toc_entry* toc = mfa_get_image_toc(mfa_d, imge); if (toc == NULL) { continue; } if (toc->num_ver_fields != 0) { item.type = imge->image_type; char select_tag[33]; strncpy(select_tag, imge->select_tag, 32); select_tag[32] = 0; item.selector_tag = select_tag; char* subImgType; if ((subImgType = mfasec_get_sub_image_type_str(toc->subimage_type)) != NULL) { ImgVersion imgv; if (subImgType[0] != '\0') { /* Not a padding section */ imgv.setVersion(subImgType, toc->num_ver_fields, toc->version, item.branch); item.imgVers.push_back(imgv); } } } } riv.push_back(item); } mfa_close(mfa_d); return 0; } #define ITOC_ASCII 0x49544f43 #define TOC_HEADER_SIZE 0x20 #define TOC_ENTRY_SIZE 0x20 #define FS3_DEFAULT_SECTOR_SIZE 0x1000 void ImageAccess::parse_image_info_data(u_int8_t* image_info_data, PsidQueryItem& query_item) { struct connectx4_image_info image_info; connectx4_image_info_unpack(&image_info, image_info_data); query_item.name = image_info.name; query_item.pns = query_item.name; query_item.description = image_info.description; static const int FW_VER_SIZE = 3; u_int16_t fw_ver[FW_VER_SIZE]; char fw_branch[BRANCH_LEN + 1] = {0}; fw_ver[0] = image_info.FW_VERSION.MAJOR; fw_ver[1] = image_info.FW_VERSION.MINOR; fw_ver[2] = image_info.FW_VERSION.SUBMINOR; (strncpy(fw_branch, image_info.vsd, BRANCH_LEN)); fw_branch[BRANCH_LEN] = (char)0; ImgVersion imgv; imgv.setVersion("FW", FW_VER_SIZE, fw_ver, fw_branch); query_item.imgVers.push_back(imgv); } bool ImageAccess::extract_pldm_image_info(const u_int8_t* buff, u_int32_t size, PsidQueryItem& query_item) { FImage fimage; if (!fimage.open((u_int32_t*)buff, size)) { return false; } static const u_int32_t sector_size = FS3_DEFAULT_SECTOR_SIZE; u_int32_t offset = 0; offset = (offset % sector_size == 0) ? offset : (offset + sector_size - offset % 0x1000); u_int8_t buffer[TOC_HEADER_SIZE] = {0}, entry_buffer[TOC_ENTRY_SIZE] = {0}; struct connectx4_itoc_header itoc_header; bool image_info_found = false; while (offset < fimage.get_size()) { /* read ITOC header */ fimage.read(offset, buffer, TOC_HEADER_SIZE); connectx4_itoc_header_unpack(&itoc_header, buffer); if (itoc_header.signature0 != ITOC_ASCII) { offset += sector_size; continue; } int section_index = 0; struct connectx4_itoc_entry toc_entry; do{ /* read ITOC entry */ u_int32_t entry_addr = offset + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; fimage.read(entry_addr, entry_buffer, TOC_ENTRY_SIZE); connectx4_itoc_entry_unpack(&toc_entry, entry_buffer); if (toc_entry.type == FS3_IMAGE_INFO) { image_info_found = true; u_int32_t flash_addr = toc_entry.flash_addr << 2; u_int32_t entry_size_in_bytes = toc_entry.size * 4; u_int8_t image_info_data[entry_size_in_bytes]; memset(image_info_data, 0, entry_size_in_bytes); fimage.read(flash_addr, image_info_data, entry_size_in_bytes); parse_image_info_data(image_info_data, query_item); break; } section_index++; } while (toc_entry.type != FS3_END); break; } if (!image_info_found) { // Parse HW pointers u_int32_t hw_pointers_data[IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE / 4] = {0}; fimage.read(FS4_HW_PTR_START, hw_pointers_data, IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE); image_layout_hw_pointers_carmel hw_pointers; image_layout_hw_pointers_carmel_unpack(&hw_pointers, (u_int8_t*)hw_pointers_data); // Check if we couldn't find image_info because ITOC is encrypted fimage.read(hw_pointers.toc_ptr.ptr, buffer, TOC_HEADER_SIZE); connectx4_itoc_header_unpack(&itoc_header, buffer); if (itoc_header.signature0 != ITOC_ASCII) { // Encrypted image, get image_info addr from hw pointer u_int8_t buff[IMAGE_LAYOUT_IMAGE_INFO_SIZE]; memset(buff, 0, IMAGE_LAYOUT_IMAGE_INFO_SIZE); fimage.read(hw_pointers.image_info_section_pointer.ptr, buff, IMAGE_LAYOUT_IMAGE_INFO_SIZE); parse_image_info_data(buff, query_item); } } fimage.close(); return 0; } int ImageAccess::get_pldm_content(const string& fname, vector < PsidQueryItem >& riv) { PldmBuffer pldm_buff; pldm_buff.loadFile(fname); PldmPkg pldm; pldm.unpack(pldm_buff); u_int8_t dev_count = pldm.getDeviceIDRecordCount(); for (u_int8_t i = 0; i < dev_count; i++) { PldmDevIdRecord* rec = pldm.getDeviceIDRecord(i); PsidQueryItem item; item.psid = rec->getDevicePsid(); item.description = rec->getDescription(); int image_index = rec->getComponentImageIndex(); PldmComponenetImage* image_obj = pldm.getComponentImage(image_index); extract_pldm_image_info(image_obj->getComponentData(), image_obj->getComponentSize(), item); riv.push_back(item); } return 0; } int ImageAccess::get_file_content(const string& fname, vector < PsidQueryItem >& riv) { int type = getFileSignature(fname); int res = -1; switch (type) { case IMG_SIG_TYPE_BIN: res = get_bin_content(fname, riv); break; case IMG_SIG_TYPE_MFA: res = get_mfa_content(fname, riv); break; case IMG_SIG_TYPE_PLDM: res = get_pldm_content(fname, riv); break; } return res; } string ImageAccess::getLastErrMsg() { return _errMsg; } string ImageAccess::getlastWarning() { return _warning; } string ImageAccess::getLog() { return _log; } mstflint-4.26.0/mlxfwupdate/fw_version_old_clp.h0000644000175000017500000000400214522641732022265 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXFWUPDATE_FW_VERSION_OLD_CLP_H_ #define MLXFWUPDATE_FW_VERSION_OLD_CLP_H_ #include class FwVersionOldClp : public FwVersion { public: FwVersionOldClp(); FwVersionOldClp(unsigned short int, unsigned short int, unsigned short int, const std::string& = ""); virtual ~FwVersionOldClp(); FwVersionOldClp* clone() const; private: std::string get_master_version(const std::string& format, bool even_subminor = false) const; }; #endif /* MLXFWUPDATE_FW_VERSION_OLD_CLP_H_ */ mstflint-4.26.0/mlxfwupdate/psid_query_item.h0000644000175000017500000000420514522641732021617 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __PSID_QUERY_ITEM_H__ #define __PSID_QUERY_ITEM_H__ #include #include #include using namespace std; class PsidQueryItem { public: PsidQueryItem() : devId(0), revId(0), found(0), isFailSafe(true){}; virtual ~PsidQueryItem() {} const ImgVersion* findImageVersion(string type); string psid; string url; string pns; string board_rev; string selector_tag; string description; string name; int devId; int revId; string iniName; string release_note; int found; string type; vector imgVers; bool isFailSafe; string branch; }; #endif mstflint-4.26.0/mlxfwupdate/mlxfwmanager_common.h0000644000175000017500000000710014522641732022452 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __MLXFWMANAGER_COMMON_H__ #define __MLXFWMANAGER_COMMON_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "err_msgs.h" #ifndef NO_ZLIB #include #endif #if defined(__WIN__) #include #include #ifdef _MSC_VER typedef int mode_t; #endif #define PATH_SEPARATOR "\\" #define GetCurrDir(sz, buf) GetCurrentDirectory(sz, buf) #else #define PATH_SEPARATOR "/" #define GetCurrDir(sz, buf) getcwd(buf, sz) #endif const char* SafeGetEnv(const char* var); #define TMP_DIR SafeGetEnv("TEMP") using namespace std; inline string getLogDir(string toolName) { #if defined(__WIN__) (void)toolName; return TMP_DIR; #else return (string) "/tmp/" + toolName + "_workdir"; #endif } namespace mlxFWMSetupType { enum T { normal, lvim, dl }; }; inline string int_to_string(int num) { std::stringstream out; out << num; return out.str(); } string getErrStr(int rc); int mapRetValue(int rc, mlxFWMSetupType::T setupType); string beautify_device_name(string family); int CreateTempDir(string tempDir, string& tempBaseDir); int my_chmod(const char* path, mode_t mode); int RemoveDir(const string& dir); bool unzipDataFile(std::vector data, std::vector& newData, const char* sectionName); int MkDir(const string dir); #if defined(__WIN__) int ForceMkDir(const string dir); void FixPath(string& s); int mlxfw_replace(char* st, char* orig, char* repl); int mlxfw_get_exec_name_from_path(char* str, char* exec_name); #define mlxfw_MTCR_DLL_NAME "libmtcr-1.dll" static const mode_t MS_MODE_MASK = 0x0000ffff; #endif class DownloadedFileProperties { public: string url; string name; string descr; string release_note; string family; string file_type; // mfa or self extractor string os; }; #endif mstflint-4.26.0/mlxfwupdate/fw_version_with_sub_build.h0000644000175000017500000000406514522641732023665 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXFWUPDATE_FW_VERSION_WITH_SUB_BUILD_H_ #define MLXFWUPDATE_FW_VERSION_WITH_SUB_BUILD_H_ #include class FwVersionWithSubBuild : public FwVersion { public: FwVersionWithSubBuild(); FwVersionWithSubBuild(unsigned short int, unsigned short int, unsigned short int, const std::string& = ""); virtual ~FwVersionWithSubBuild(); FwVersionWithSubBuild* clone() const; private: std::string get_master_version(const std::string& format, bool even_subminor = false) const; }; #endif /* MLXFWUPDATE_FW_VERSION_WITH_SUB_BUILD_H_ */ mstflint-4.26.0/mlxfwupdate/psid_lookup_db.h0000644000175000017500000000405014522641732021410 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __PSID_LOOKUP_DB_H__ #define __PSID_LOOKUP_DB_H__ #include #include #include using namespace std; class PsidLookupDB { public: void readFile(string fName); string getPN(string id); string getProdDesc(string id); string getPsid(string id); bool isPsidExist(string psid); private: int csv2vector(string str, vector& explode); class PsidLookupInfo { public: string pn; string prodDesc; string psid; }; map _keyLookupMap; }; #endif mstflint-4.26.0/mlxfwupdate/fw_version_old_clp.cpp0000644000175000017500000000442114522641732022625 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "fw_version_old_clp.h" #include FwVersionOldClp::FwVersionOldClp() : FwVersion() {} FwVersionOldClp::FwVersionOldClp(unsigned short int major, unsigned short int minor, unsigned short int subminor, const std::string& devBranchTag) : FwVersion(major, minor, subminor, devBranchTag) { } FwVersionOldClp::~FwVersionOldClp() {} std::string FwVersionOldClp::get_master_version(const std::string& format, bool even_subminor) const { (void)format; (void)even_subminor; char buff[MAX_VERSION_LENGTH + 1] = {0}; snprintf(buff, sizeof(buff), "%d", _minor); return buff; } FwVersionOldClp* FwVersionOldClp::clone() const { return new FwVersionOldClp(*this); } mstflint-4.26.0/mlxfwupdate/menu.cpp0000644000175000017500000003062314522641732017717 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "menu.h" #include BaseMenu::BaseMenu() { _isPrev = false; _valid = false; _all = 0; _goBack = 0; _exit = 0; _maxChoice = 0; } BaseMenu::~BaseMenu() {} FileTypeMenu::FileTypeMenu() : BaseMenu() {} FileTypeMenu::~FileTypeMenu() {} BaseMenu* FileTypeMenu::getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { BaseMenu* newMenu = NULL; if (!cmd_params.download_dev.length()) { newMenu = new DevFamilyMenu; return newMenu; } else { DevFamilyMenu::setValuesDirectly(cmd_params, filterOPtions); } if (filterOPtions.file_type != "mfa" && !cmd_params.download_os.length()) { newMenu = new OSMenu; return newMenu; } else { OSMenu::setValuesDirectly(cmd_params, filterOPtions); } // newMenu = new PickFilesMenu; return newMenu; } BaseMenu* FileTypeMenu::getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)cmd_params; (void)filterOPtions; BaseMenu* newMenu = NULL; return newMenu; } bool FileTypeMenu::isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)cmd_params; (void)filterOPtions; return _isPrev; } bool FileTypeMenu::isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; return !cmd_params.download_type.length(); } void FileTypeMenu::setValuesDirectly(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { if (cmd_params.download_type == "") { filterOPtions.file_type = ""; } else { filterOPtions.file_type = cmd_params.download_type; } } void FileTypeMenu::generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { _menuText = ""; if (isValid(cmd_params, filterOPtions)) { _menuText = "------ Download Type Selection ------\n"; _menuText += "\t1- MFA : (Contains FW images)\n"; _menuText += "\t2- Self_Extractor : (Update Package for Mellanox Firmware)\n"; _menuText += "\t3- All\n"; _menuText += "\t4- Exit\n"; _menuText += "\n-?- Select an option: "; _maxChoice = 4; printText(); } else { setValuesDirectly(cmd_params, filterOPtions); } } bool FileTypeMenu::parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions) { isPrev = false; isExit = false; if (choice > _maxChoice || choice <= 0) { fprintf(stderr, "-E- Invalid choice!\n"); return false; } switch (choice) { case 4: isExit = true; break; case 3: filterOPtions.file_type = "all"; break; case 2: filterOPtions.file_type = "self_extractor"; break; default: filterOPtions.file_type = "mfa"; } return true; } BaseMenu* DevFamilyMenu::getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { BaseMenu* newMenu = NULL; if (filterOPtions.file_type != "mfa" && !cmd_params.download_os.length()) { newMenu = new OSMenu; return newMenu; } else { OSMenu::setValuesDirectly(cmd_params, filterOPtions); } // newMenu = new PickFilesMenu; return newMenu; } DevFamilyMenu::DevFamilyMenu() : BaseMenu() {} DevFamilyMenu::~DevFamilyMenu() {} BaseMenu* DevFamilyMenu::getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; BaseMenu* newMenu = NULL; if (!cmd_params.download_type.length()) { newMenu = new FileTypeMenu; } return newMenu; } bool DevFamilyMenu::isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; _isPrev = !cmd_params.download_type.length(); return _isPrev; } bool DevFamilyMenu::isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { unsigned int i = 0; vector _availableFamilies; if (!cmd_params.download_dev.length()) { for (i = 0; i < filterOPtions.files.size(); i++) { if (std::find(_availableFamilies.begin(), availableFamilies.end(), filterOPtions.files[i].family) == _availableFamilies.end() && (filterOPtions.file_type == "all" || filterOPtions.file_type == filterOPtions.files[i].file_type)) { _availableFamilies.push_back(filterOPtions.files[i].family); } } } else { return false; } if (_availableFamilies.size() == 1) { filterOPtions.family = _availableFamilies[0]; return false; } else { return true; } } void DevFamilyMenu::setValuesDirectly(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { if (cmd_params.download_dev == "") { filterOPtions.family = "all"; } else { filterOPtions.family = cmd_params.download_dev; } } string DevFamilyMenu::beautify(string family) { return beautify_device_name(family); } void DevFamilyMenu::generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { _menuText = ""; if (isValid(cmd_params, filterOPtions)) { _menuText = "------ Device Family Selection ------\n"; unsigned int i = 0; for (i = 0; i < filterOPtions.files.size(); i++) { if (std::find(availableFamilies.begin(), availableFamilies.end(), filterOPtions.files[i].family) == availableFamilies.end() && (filterOPtions.file_type == "all" || filterOPtions.file_type == filterOPtions.files[i].file_type)) { availableFamilies.push_back(filterOPtions.files[i].family); } } for (i = 0; i < availableFamilies.size(); i++) { _menuText += "\t" + int_to_string(i + 1) + "- " + beautify(availableFamilies[i]) + "\n"; } if (availableFamilies.size() > 1) { _menuText += "\t" + int_to_string(i + 1) + "- All\n"; _all = i + 1; i++; _maxChoice = i; } if (isPrevious(cmd_params, filterOPtions)) { _goBack = i + 1; _menuText += "\t" + int_to_string(_goBack) + "- Back\n"; i++; } _maxChoice = i + 1; _exit = _maxChoice; _menuText += "\t" + int_to_string(_exit) + "- Exit\n"; _menuText += "\n-?- Select an option: "; printText(); } } bool DevFamilyMenu::parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions) { isPrev = false; isExit = false; if (choice > _maxChoice || choice <= 0) { fprintf(stderr, "-E- Invalid choice!\n"); return false; } if (choice == _goBack) { isPrev = true; return true; } else if (choice == _exit) { isExit = true; return true; } else if (choice == _all) { filterOPtions.family = "all"; return true; } else { filterOPtions.family = availableFamilies[choice - 1]; } return true; } BaseMenu* OSMenu::getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; (void)cmd_params; // BaseMenu *newMenu = new PickFilesMenu; return NULL; } BaseMenu* OSMenu::getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; BaseMenu* newMenu = NULL; if (!cmd_params.download_dev.length()) { newMenu = new DevFamilyMenu; } else if (!cmd_params.download_type.length()) { newMenu = new FileTypeMenu; } return newMenu; } bool OSMenu::isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; _isPrev = (!cmd_params.download_type.length() || !cmd_params.download_dev.length()); return _isPrev; } bool OSMenu::isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { (void)filterOPtions; return !cmd_params.download_os.length(); } void OSMenu::setValuesDirectly(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { if (cmd_params.download_os == "") { filterOPtions.os = "all"; } else { filterOPtions.os = cmd_params.download_os; } } string OSMenu::beautify(string os) { if (os == "linux_ppc64") { os = "Linux_PPC64"; } else if (os == "linux_ppc64le") { os = "Linux_PPC64le"; } else if (os == "fbsd10_64") { os = "FBSD10_64"; } else if (os == "fbsd10_32") { os = "FBSD10_32"; } else if (os == "fbsd10_1_64") { os = "FBSD10_1_64"; } else if (os == "fbsd11_64") { os = "FBSD11_64"; } os[0] = toupper(os[0]); return os; } void OSMenu::generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) { _menuText = ""; if (isValid(cmd_params, filterOPtions)) { _menuText = "------ Operating System Selection ------\n"; unsigned int i = 0; for (i = 0; i < filterOPtions.files.size(); i++) { if (filterOPtions.files[i].os != "all" && std::find(availableOs.begin(), availableOs.end(), filterOPtions.files[i].os) == availableOs.end() && (filterOPtions.family == "all" || filterOPtions.family == filterOPtions.files[i].family) && (filterOPtions.file_type == "all" || filterOPtions.file_type == filterOPtions.files[i].file_type)) { availableOs.push_back(filterOPtions.files[i].os); } } for (i = 0; i < availableOs.size(); i++) { _menuText += "\t" + int_to_string(i + 1) + "- " + beautify(availableOs[i]) + "\n"; } if (availableOs.size() > 1) { _menuText += "\t" + int_to_string(i + 1) + "- All\n"; _all = i + 1; i++; } if (isPrevious(cmd_params, filterOPtions)) { _goBack = i + 1; _menuText += "\t" + int_to_string(_goBack) + "- Back\n"; _maxChoice = _goBack; i++; } _exit = i + 1; _maxChoice = _exit; _menuText += "\t" + int_to_string(_exit) + "- Exit\n"; _menuText += "\n-?- Select an option: "; printText(); } } OSMenu::OSMenu() : BaseMenu() { ; ; } OSMenu::~OSMenu() { ; ; } bool OSMenu::parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions) { isPrev = false; isExit = false; if (choice > _maxChoice || choice <= 0) { fprintf(stderr, "-E- Invalid choice!\n"); return false; } if (choice == _goBack) { isPrev = true; return true; } else if (choice == _exit) { isExit = true; return true; } else if (choice == _all) { filterOPtions.os = "all"; return true; } else { filterOPtions.os = availableOs[choice - 1]; } return true; } mstflint-4.26.0/mlxfwupdate/menu.h0000644000175000017500000001157214522641732017366 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MENU_H_ #define MENU_H_ #include #include #include #include "mlxfwmanager_common.h" #include "cmd_line_params.h" struct filesOPtions { string file_type; string family; string os; vector names; vector urls; vector osDirName; vector files; vector filtered; }; class BaseMenu { public: BaseMenu(); virtual ~BaseMenu(); virtual BaseMenu* getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) = 0; virtual BaseMenu* getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) = 0; virtual bool parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions) = 0; virtual void generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions) = 0; virtual bool isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions) = 0; virtual bool isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions) = 0; void printText() { std::cout << _menuText; } protected: int _maxChoice; bool _valid; bool _isPrev; int _all; int _goBack; int _exit; std::string _menuText; // This string will be shared by all children (i.e. derived) classes }; class FileTypeMenu : public BaseMenu { public: FileTypeMenu(); ~FileTypeMenu(); BaseMenu* getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); BaseMenu* getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions); void generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions); static void setValuesDirectly(CmdLineParams& cmd_params, filesOPtions& filterOPtions); }; class DevFamilyMenu : public BaseMenu { public: DevFamilyMenu(); ~DevFamilyMenu(); BaseMenu* getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); BaseMenu* getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions); void generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions); static void setValuesDirectly(CmdLineParams& cmd_params, filesOPtions& filterOPtions); private: string beautify(string family); vector availableFamilies; }; class OSMenu : public BaseMenu { public: OSMenu(); ~OSMenu(); BaseMenu* getNextMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); BaseMenu* getPrevMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool parseChoice(int choice, bool& isExit, bool& isPrev, filesOPtions& filterOPtions); void generateMenu(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool isValid(CmdLineParams& cmd_params, filesOPtions& filterOPtions); bool isPrevious(CmdLineParams& cmd_params, filesOPtions& filterOPtions); static void setValuesDirectly(CmdLineParams& cmd_params, filesOPtions& filterOPtions); private: string beautify(string os); vector availableOs; }; #endif /* MENU_H_ */ mstflint-4.26.0/mlxfwupdate/server_request.cpp0000644000175000017500000004714514522641732022040 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "server_request.h" #include #include #include #include #include #include #include using namespace std; #ifndef USE_CURL #define USE_CURL #endif extern int abort_request; ServerRequest::ServerRequest(const char* url, const char* proxy, int compare_ffv, bool show_progress, string key, string certificate, unsigned int numberOfRetrials) : _LastErrorNo(0) { _UseProxy = 0; _Url = url; _WebService = _Url + "/downloads/firmware/mlx_fw_online_query.php"; _compare_ffv = compare_ffv; _show_progress = show_progress; _ceritifcate = certificate; _numberOfRetrials = numberOfRetrials; _headers = NULL; if (proxy != NULL) { if (proxy[0] != 0) { _UseProxy = 1; _Proxy = proxy; } } _key = key; } ServerRequest::~ServerRequest() {} int ServerRequest::parseQueryResponse(string jsonTxt, vector& result, bool ignoreNotFound) { #ifdef USE_CURL string fileTag; Json::Value root; Json::Reader reader; bool rc = reader.parse(jsonTxt, root); if (!rc) { setError(rc, "-E- Failed To parse server response\n"); return -1; } result.clear(); for (unsigned j = 0; j < root.size(); j++) { PsidQueryItem ri; ri.found = 0; ri.type = -1; ri.url = ""; ri.pns = ""; ri.isFailSafe = true; // will be used for future! ri.release_note = ""; if (!root[j].isObject()) { setError(-1, "-E- Failed To parse server response\n"); return -1; } if (root[j].isMember("Found")) { if (ignoreNotFound && !root[j].get("Found", Json::nullValue).asInt()) { continue; } } else { continue; } try { Json::Value::Members profileNames = root[j].getMemberNames(); for (unsigned i = 0; i < profileNames.size(); i++) { if (!profileNames[i].compare("PSID")) { ri.psid = root[j].get("PSID", Json::nullValue).asString(); } else if (!profileNames[i].compare("Found")) { ri.found = root[j].get(profileNames[i], Json::nullValue).asInt(); } else if (!profileNames[i].compare("Type")) { ri.type = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Found")) { ri.found = root[j].get(profileNames[i], Json::nullValue).asInt(); } else if (!profileNames[i].compare("PN")) { ri.pns = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Name")) { ri.name = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Release_note")) { ri.release_note = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Ver")) { const Json::Value versions = root[j]["Ver"]; if (versions.empty()) { continue; } Json::Value::Members ROMS = versions.getMemberNames(); for (unsigned x = 0; x < ROMS.size(); x++) { string rom_type = ROMS[x]; string rom_ver = versions.get(ROMS[x], Json::nullValue).asString(); int m, n, s; u_int16_t fwVer[4]; int len; if (sscanf(rom_ver.c_str(), "%d.%d.%d", &m, &n, &s)) { if (!_compare_ffv || rom_type != "FW") { fwVer[0] = m; fwVer[1] = n; fwVer[2] = s; len = 3; } else { fwVer[0] = m; fwVer[1] = n; fwVer[2] = s / 100; fwVer[3] = s % 100; len = 4; } ImgVersion imgv; imgv.setVersion(rom_type.c_str(), len, fwVer); ri.imgVers.push_back(imgv); } } } else if (!profileNames[i].compare("URL")) { ri.url = root[j].get(profileNames[i], Json::nullValue).asString(); ri.url = genertDownloadUrl(ri.url); } } } catch (runtime_error& e) { setError(-1, (string) "-E-" + e.what() + "\n"); return -1; } result.push_back(ri); if (!ri.found) { setError(0, "-W- No online newer fw found for psid : " + ri.psid + "\n"); } } #endif return 0; } void ServerRequest::setError(int error_num, string error_msg) { _LastErrorStr += error_msg; _LastErrorNo = error_num; } void ServerRequest::getError(int& error_num, string& error_msg) { error_num = _LastErrorNo; error_msg = _LastErrorStr; } int ServerRequest::DownloadFilesRequest(vector& files, string os, string devs, string type) { int res = 0; #ifdef USE_CURL string response; Json::Value root; Json::StyledWriter writer; root["mode"] = 2; root["psids"] = ""; root["os"] = (os.length()) ? os : "all"; root["type"] = (type.length()) ? type : "all"; root["devs"] = (devs.length()) ? devs : "all"; root["key"] = _key; string data = writer.write(root); res = curl_request_str(_WebService.c_str(), data.c_str(), response); if (res) { return res; } res = parseDownloadFilesResponse(response, files); if (res) { return res; } #endif return res; } int ServerRequest::parseDownloadFilesResponse(string jsonTxt, vector& files) { #ifdef USE_CURL Json::Value root; Json::Reader reader; string url; // printf("response = %s\n", jsonTxt.c_str()); bool rc = reader.parse(jsonTxt, root); if (!rc) { setError(rc, "-E- Failed To parse server response\n"); return -1; } for (unsigned j = 0; j < root.size(); j++) { if (!root[j].isObject()) { setError(-1, "-E- Failed To parse server response\n"); return -1; } string name = ""; string url = ""; string descr = ""; string release_note = ""; string family = ""; string file_type = ""; string os = ""; try { Json::Value::Members profileNames = root[j].getMemberNames(); for (unsigned i = 0; i < profileNames.size(); i++) { if (!profileNames[i].compare("URL")) { url = root[j].get(profileNames[i], Json::nullValue).asString(); url = genertDownloadUrl(url); } else if (!profileNames[i].compare("Name")) { name = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Family")) { family = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Type")) { file_type = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Descr")) { descr = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("OS")) { os = root[j].get(profileNames[i], Json::nullValue).asString(); } else if (!profileNames[i].compare("Release_note")) { release_note = root[j].get(profileNames[i], Json::nullValue).asString(); } } } catch (runtime_error& e) { setError(-1, (string) "-E-" + e.what() + "\n"); return -1; } DownloadedFileProperties file; file.url = url; file.name = name; file.family = family; file.file_type = file_type; file.descr = descr; file.os = os; file.release_note = release_note; files.push_back(file); } if (!files.size()) { return -1; } #endif return 0; } int ServerRequest::queryPsids(string psids, vector& results) { int res = 0; #ifdef USE_CURL Json::Value root; Json::StyledWriter writer; string response = ""; root["psids"] = psids; root["mode"] = 3; // 0 query root["key"] = _key; string data = writer.write(root); // printf("request : %s\n", data.c_str()); res = curl_request_str(_WebService.c_str(), data.c_str(), response); if (res) { return res; } // printf("Response : %s\n", response.c_str()); res = parseQueryResponse(response, results, false); if (res) { return res; } #endif return res; } int ServerRequest::updateMFAsRequest(vector& psid_list, vector& dev_types_list, vector& fw_version_list, vector& results) { int res = 0; (void)dev_types_list; #ifdef USE_CURL Json::Value root; Json::StyledWriter writer; string psids = ""; string devices = ""; string response = ""; string versions = ""; string tmp; for (unsigned i = 0; i < psid_list.size(); i++) { if (i > 0) { psids += ","; devices += ","; versions += ","; } psids += psid_list[i]; versions += fw_version_list[i]; } root["psids"] = psids; root["devs"] = devices; root["mode"] = 0; // 0 update root["versions"] = versions; root["key"] = _key; string data = writer.write(root); // printf("request : %s\n", data.c_str()); res = curl_request_str(_WebService.c_str(), data.c_str(), response); if (res) { return res; } // printf("Response : %s\n", response.c_str()); res = parseQueryResponse(response, results); if (res) { return res; } #endif return res; } string ServerRequest::genertDownloadUrl(string file_url) { return _Url + "/" + file_url; } #if 0 int ServerRequest::queryAllMFAs(vector &mfa_list) { int res = 0; vector psid_list; vector dev_types_list; vector fw_version_list; string response; mfa_list.clear(); Json::Value root; Json::StyledWriter writer; root["psids"] = ""; root["devs"] = ""; root["mode"] = 1; // get all mfas; root["versions"] = ""; root["key"] = _key; string data = writer.write( root ); res = curl_request_str(_WebService.c_str(), data.c_str(), response); if (res) { return res; } res = parseQueryAllMFAsRespone(response, mfa_list); return res; } int ServerRequest::parseQueryAllMFAsRespone(string jsonTxt, vector &result) { Json::Value root; Json::Reader reader; string url; bool rc = reader.parse(jsonTxt, root); if (!rc) { setError(rc, "-E- Failed To parse server response\n"); //To be removed return rc; } for (unsigned j = 0; j < root.size(); j++) { if (root[j].isString()) { url = root[j].asString(); result.push_back(_Url + url); } } return 0; } #endif int ServerRequest::download(string url, string dest_path) { int res = 0; #ifdef USE_CURL ssize_t pos = url.rfind('/'); string name = dest_path; name += "/"; if (pos > 0) { string tmp = url.substr(pos); if (tmp.length() > 0) { name += tmp; res = curl_request(url.c_str(), NULL, name.c_str(), _numberOfRetrials); } } #endif return res; } #ifdef USE_CURL static size_t write_data(void* ptr, size_t size, size_t nmemb, FILE* stream) { size_t written = fwrite(ptr, size, nmemb, stream); return written; } #endif int ServerRequest::curl_request(const char* url, const char* data, const char* dest_file, int numOfRet) { int res = 0; #ifdef USE_CURL CURLcode rc; FILE* fp; CURL* _curl = curl_easy_init(); if (_curl == NULL) { _LastErrorNo = ERR_SRVREQ_ACCESS_INIT; setError(-1, "-E- Server access error\n"); return -1; } _LastErrorStr = ""; fp = fopen(dest_file, "wb"); if (fp == NULL && errno == EACCES) { unlink(dest_file); fp = fopen(dest_file, "wb"); } if (fp == NULL) { setError(-1, "Failed to Open file for writing " + (string)strerror(errno) + "\n"); curl_easy_cleanup(_curl); curl_global_cleanup(); return -1; } curl_easy_setopt(_curl, CURLOPT_TIMEOUT, 360); // 6 minute operation timeout curl_easy_setopt(_curl, CURLOPT_LOW_SPEED_LIMIT, 1); curl_easy_setopt(_curl, CURLOPT_LOW_SPEED_TIME, 60); curl_easy_setopt(_curl, CURLOPT_URL, url); curl_easy_setopt(_curl, CURLOPT_WRITEFUNCTION, write_data); curl_easy_setopt(_curl, CURLOPT_WRITEDATA, fp); curl_easy_setopt(_curl, CURLOPT_CAINFO, _ceritifcate.c_str()); if (_show_progress) { // Internal CURL progressmeter must be disabled if we provide our own callback curl_easy_setopt(_curl, CURLOPT_NOPROGRESS, false); // Install the callback function curl_easy_setopt(_curl, CURLOPT_PROGRESSFUNCTION, progress_func); } if (_Proxy.size() > 0) { curl_easy_setopt(_curl, CURLOPT_PROXY, _Proxy.c_str()); } if (data != NULL) { curl_easy_setopt(_curl, CURLOPT_POST, 1); curl_easy_setopt(_curl, CURLOPT_POSTFIELDS, data); } curl_easy_setopt(_curl, CURLOPT_SSL_VERIFYPEER, true); // Perform the request, res will get the return code rc = curl_easy_perform(_curl); // Check for errors if (rc == CURLE_OPERATION_TIMEDOUT && numOfRet > 0) { if (curl_request(url, data, dest_file, numOfRet - 1) == 0) { rc = CURLE_OK; } } if (rc != CURLE_OK) { if ((rc == CURLE_OPERATION_TIMEDOUT && numOfRet == 0) || (rc != CURLE_OPERATION_TIMEDOUT)) { setError(-1, (string)curl_easy_strerror(rc)); } res = -1; goto clean_up; } res = 0; clean_up: curl_easy_cleanup(_curl); curl_global_cleanup(); fclose(fp); if (res) { unlink(dest_file); } else { #if !defined(__WIN__) string tmp = (string)dest_file; if (tmp.find(".mfa") == std::string::npos && tmp.find(".exe") == std::string::npos) { int retVal = my_chmod(dest_file, EXECUTABLE_MODE); (void)retVal; } #endif } #endif return res; } #ifdef USE_CURL static size_t writebuf_data(void* ptr, size_t size, size_t nmemb, string* strm) { size_t written = size * nmemb; char* str = new char[written + 1]; if (str == NULL) { return 0; } strncpy(str, (char*)ptr, written); str[written] = 0; *strm += str; delete[] str; return written; } #endif int ServerRequest::curl_request_str(const char* url, const char* data, string& response) { int res = 0; #ifdef USE_CURL CURL* _curl = curl_easy_init(); if (_curl == NULL) { _LastErrorNo = ERR_SRVREQ_ACCESS_INIT; setError(-1, "-E- Server access error\n"); return -1; } CURLcode rc; curl_easy_setopt(_curl, CURLOPT_URL, url); curl_easy_setopt(_curl, CURLOPT_WRITEDATA, &response); curl_easy_setopt(_curl, CURLOPT_WRITEFUNCTION, writebuf_data); curl_easy_setopt(_curl, CURLOPT_CAINFO, _ceritifcate.c_str()); _headers = curl_slist_append(_headers, "Accept: application/json"); _headers = curl_slist_append(_headers, "Content-Type: application/json"); curl_easy_setopt(_curl, CURLOPT_HTTPHEADER, _headers); curl_easy_setopt(_curl, CURLOPT_POST, 1); curl_easy_setopt(_curl, CURLOPT_POSTFIELDS, data); curl_easy_setopt(_curl, CURLOPT_POSTFIELDSIZE, strlen(data)); curl_easy_setopt(_curl, CURLOPT_SSL_VERIFYPEER, true); // curl_easy_setopt(curl, CURLOPT_VERBOSE,1); // curl_easy_setopt(curl, CURLOPT_HEADER,1); // Perform the request, res will get the return code rc = curl_easy_perform(_curl); // fprintf(stderr, "Response : %s\n", response.c_str()); // Check for errors if (rc != CURLE_OK) { setError(-1, "-E- " + (string)curl_easy_strerror(rc) + "\n"); res = -1; goto clean_up; } res = 0; clean_up: curl_easy_cleanup(_curl); curl_global_cleanup(); curl_slist_free_all(_headers); #endif return res; } int progress_func(void* ptr, double totalToDownload, double nowDownloaded, double totalToUpload, double nowUploaded) { (void)ptr; (void)totalToUpload; (void)nowUploaded; double fractionDownloaded = (nowDownloaded / totalToDownload) * 100; fractionDownloaded = fractionDownloaded > 0 ? fractionDownloaded : 0; printf("\b\b\b\b%3.0f%%", fractionDownloaded); fflush(stdout); return abort_request; } mstflint-4.26.0/mlxfwupdate/cmd_line_parser.cpp0000644000175000017500000005735514522641732022114 0ustar tzafrirctzafrirc/* * Copyright (c) 2006-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * End of legal section ...................................................... * * cmd_line_parser.cpp - mlxfwmanager * * Version: $Id$ * * Author: Sami Salloum (sami@mellanox.com) */ #include #include "mft_utils.h" #include "cmd_line_parser.h" #include "cmd_line_params.h" #include "tools_version.h" #ifdef MST_UL #define TOOL_NAME "mstfwmanager" #else #define TOOL_NAME "mlxfwmanager" #endif #define TOOL_VERSION "1.0" #define TOOL_DESC "Mellanox Firmware Manager" using namespace std; using namespace mft_utils; /* Command line options definitions, _L for long options and _S for short ones. */ #define VERSION_L "version" #define VERSION_S 'v' #define CURRENT_DIR_L "current-dir" #define CURRENT_DIR_S ' ' #define DEVICE_L "dev" #define DEVICE_S 'd' #define EXE_REL_PATH_L "exe-rel-path" #define EXE_REL_PATH_S ' ' #define UPDATE_L "update" #define UPDATE_S 'u' #define CLEAR_SEM_L "clear-semaphore" #define CLEAR_SEM_S ' ' #define USE_IMG_FILE_L "image-file" #define USE_IMG_FILE_S 'i' #define USE_IMG_DIR_L "image-dir" #define USE_IMG_DIR_S 'D' #define UPDATE_L "update" #define UPDATE_S 'u' #define ARCHIVE_NAMES_L "archive-names" #define ARCHIVE_NAMES_S ' ' #define PROXY_L "proxy" #define PROXY_S ' ' #define SERVER_URL_L "server-url" #define SERVER_URL_S ' ' #define CERTIFICATE_L "ssl-certificate" #define CERTIFICATE_S ' ' #define ONLINE_IMGS_L "online" #define ONLINE_IMGS_S ' ' #define ONLINE_QUERY_L "online-query-psid" #define ONLINE_QUERY_S ' ' #define DNLD_KEY_L "key" #define DNLD_KEY_S ' ' #define USE_DEFAULT_L "download-default" #define USE_DEFAULT_S ' ' #define DNLD_L "download" #define DNLD_S ' ' #define DNLD_TYPE_L "download-type" #define DNLD_TYPE_S ' ' #define DNLD_OS_L "download-os" #define DNLD_OS_S ' ' #define DNLD_DEV_L "download-device" #define DNLD_DEV_S ' ' #define GET_DNLD_OPT_L "get-download-opt" #define GET_DNLD_OPT_S ' ' #define FORCE_L "force" #define FORCE_S 'f' #define YES_L "yes" #define YES_S 'y' #define NO_L "no" #define NO_S ' ' #define LIST_CONTENT_L "list-content" #define LIST_CONTENT_S 'l' #define FFV_L "ffv" #define FFV_S ' ' #define PSID_L "psid" #define PSID_S ' ' #define CRC_L "crc" #define CRC_S ' ' #define EXTRACT_L "extract" #define EXTRACT_S ' ' #define EXTRACT_FILE_L "extract-file" #define EXTRACT_FILE_S ' ' #define EXTRACT_ALL_L "extract-all" #define EXTRACT_ALL_S ' ' #define EXTRACT_DIR_L "extract-dir" #define EXTRACT_DIR_S ' ' #define QUERY_L "query" #define QUERY_S ' ' #define QUERY_XML_L "query-xml" #define QUERY_XML_S ' ' #define QUERY_FORMAT_L "query-format" #define QUERY_FORMAT_S ' ' #define LOG_ON_UPDATE_L "log-on-update" #define LOG_ON_UPDATE_S ' ' #define LOG_L "log" #define LOG_S ' ' #define LOG_FILE_L "log-file" #define LOG_FILE_S 'L' #define NO_PROGRESS_L "no-progress" #define NO_PROGRESS_S ' ' #define XML_L "xml" #define XML_S 'x' #define OUT_FILE_L "outfile" #define OUT_FILE_S 'o' #define LOOKUP_FILE_L "lookup" #define LOOKUP_FILE_S ' ' #define HELP_L "help" #define HELP_S 'h' #define HIDDEN_HELP_L "hhelp" #define HIDDEN_HELP_S ' ' #define BURN_FAIL_SAFE_L "nofs" #define BURN_FAIL_SAFE_S ' ' #define RET_DL_L "ret-dl" #define RET_DL_S ' ' #define RET_LVIM_L "ret-lvim" #define RET_LVIM_S ' ' #define NO_EXTRACT_LIST_L "no_extract_list" #define NO_EXTRACT_LIST_S ' ' #define NUM_OF_RETRIALS_L "download_retrials" #define NUM_OF_RETRIALS_S ' ' #define NO_FW_CTRL_L "no_fw_ctrl" #define NO_FW_CTRL_S ' ' string toolName = ""; /************************************ * Function: CmdLineParser ************************************/ static void printExamples() { cout << "Examples:" << endl; cout << "\t1. Query specific device or all devices (if no device were supplied)" << endl; cout << "\t>> " << toolName << " [-d ] [--query]" << endl; cout << "\t2. Burn device with specific image / MFA / images directory" << endl; cout << "\t>> " << toolName << " -d [-i | -D ]" << endl; cout << "\t3. Update the card's firmware" << endl; cout << "\t>> " << toolName << " -u" << endl; cout << "\t4. Update the card's firmware from latest version on the web" << endl; cout << "\t>> " << toolName << " --" << ONLINE_IMGS_L << " -u" << endl; cout << "\t5. Download latest FW package from the web" << endl; cout << "\t>> " << toolName << " --" << USE_DEFAULT_L << " --" << DNLD_OS_L << " Linux_x64" << " --" << DNLD_TYPE_L << " self_extractor" << endl << endl; } CmdLineParser::CmdLineParser(CmdLineParams* params, char** argv, int argc) : CommandLineRequester(""), _cmdParser("") { toolName = TOOL_NAME; _cmdLineParams = params; for (int i = 0; i < argc; i++) { if (strstr((const char*)argv[i], NO_EXTRACT_LIST_L) != NULL) { _cmdLineParams->no_extract_list = true; } else if (strstr((const char*)argv[i], CURRENT_DIR_L) != NULL) { // This option is hidden and only used with self extractors toolName = "mlxup"; } } setToolName(toolName); _cmdParser.setParserName(toolName); initOptions(); } /************************************ * Function: ~CmdLineParser ************************************/ CmdLineParser::~CmdLineParser() {} /************************************ * Function: parse ************************************/ bool CmdLineParser::parse(char** argv, int argc) { _cmdParser.AddRequester(this); int rc = _cmdParser.ParseOptions(argc, argv, false); if (rc == PARSE_ERROR_SHOW_USAGE) { // parse error and we need to dump usage cout << _cmdParser.GetSynopsis().c_str(); return false; } else if (rc == PARSE_OK_WITH_EXIT) { // OK but need to exit exit(0); return false; } else if (rc == PARSE_ERROR) { // error but no need to dump usage cout << _cmdParser.GetSynopsis().c_str(); return false; } return true; } /************************************ * Function: initOptions ************************************/ void CmdLineParser::initOptions() { AddDescription(TOOL_DESC); #ifdef ONLY_PCI_FORMAT this->AddOptions(DEVICE_L, DEVICE_S, "DeviceName", "Perform operation for specified PCI (using the format :.) or IB device(s)." " Multiple devices can be specified delimited by semicolons. A device list containing semicolons " "must be quoted."); #else this->AddOptions( DEVICE_L, DEVICE_S, "DeviceName", "Perform operation for specified mst device(s). Run 'mst status' command to list the available devices. Multiple " "devices can be specified delimited by semicolons. A device list containing semicolons must be quoted."); #endif this->AddOptions(NUM_OF_RETRIALS_L, NUM_OF_RETRIALS_S, "NumOfRetrials", "Number of download retrials default is 5", true); this->AddOptions(HELP_L, HELP_S, "", "Show this message and exit"); this->AddOptions(CURRENT_DIR_L, CURRENT_DIR_S, "currentDir", "current directory used only with self extractor", true); this->AddOptions(HIDDEN_HELP_L, HIDDEN_HELP_S, "", "Show hidden options help and exit", true); // Hidden this->AddOptions(VERSION_L, VERSION_S, "", "Show the executable version and exit"); this->AddOptions(QUERY_L, QUERY_S, "", "Query device(s) info"); this->AddOptions(QUERY_XML_L, QUERY_XML_S, "", "Query device(s) info (xml format)", true); this->AddOptions(QUERY_FORMAT_L, QUERY_FORMAT_S, "Format", "(Query | Online query) output format, XML | Text - default Text"); this->AddOptions(UPDATE_L, UPDATE_S, "", "Update firmware image(s) on the device(s)"); this->AddOptions(USE_IMG_FILE_L, USE_IMG_FILE_S, "FileName", "Specified image file to use"); this->AddOptions(USE_IMG_DIR_L, USE_IMG_DIR_S, "DirectoryName", "Specified directory instead of default to locate image files"); this->AddOptions(LOOKUP_FILE_L, LOOKUP_FILE_S, "LookupFileName", "Provide PSID-Description lookup file", true); // Hidden this->AddOptions(FORCE_L, FORCE_S, "", "Force image update"); this->AddOptions(NO_FW_CTRL_L, NO_FW_CTRL_S, "", "Don't use FW Ctrl update"); this->AddOptions(YES_L, YES_S, "", "Answer is yes in prompts"); this->AddOptions(NO_L, NO_S, "", "Answer is no in prompts"); this->AddOptions(FFV_L, FFV_S, "", "Compare Firmware family version", true); // Hidden this->AddOptions(CLEAR_SEM_L, CLEAR_SEM_S, "", "Force clear the flash semaphore on the device, No command is allowed when this flag is used. " "NOTE: May result in system instability or flash corruption if the device or another application " "is currently using the flash. Exercise caution."); this->AddOptions(EXE_REL_PATH_L, EXE_REL_PATH_S, "", "Use paths relative to the location of the executable", false); this->AddOptions(PSID_L, PSID_S, "PSID", "specify PSID", true); // Hidden this->AddOptions(CRC_L, CRC_S, "", "CRC calculation of raw file provided with -i option", true); // Hidden this->AddOptions( EXTRACT_L, EXTRACT_S, "", "Extract image, if " + (string)EXTRACT_FILE_L + " not specified, will be exported in production format", true); // Hidden this->AddOptions(EXTRACT_FILE_L, EXTRACT_FILE_S, "FileName", "Write to target file", true); // Hidden if (_cmdLineParams->no_extract_list == false) { this->AddOptions(EXTRACT_DIR_L, EXTRACT_DIR_S, "ExtractDir", "If specified image files will" " be extracted to this directory", true); // Hidden this->AddOptions(EXTRACT_ALL_L, EXTRACT_ALL_S, "", "Extract all images in production format", true); // Hidden this->AddOptions(LIST_CONTENT_L, LIST_CONTENT_S, "", "List file/Directory content, used with --" USE_IMG_DIR_L " and --" USE_IMG_FILE_L " flags"); this->AddOptions(ARCHIVE_NAMES_L, ARCHIVE_NAMES_S, "", "Display archive names in listing"); this->AddOptions(BURN_FAIL_SAFE_L, BURN_FAIL_SAFE_S, "", "Burn image in a non failsafe manner", false); } else { this->AddOptions(BURN_FAIL_SAFE_L, BURN_FAIL_SAFE_S, "", "Burn image in a non failsafe manner", true); } this->AddOptions(LOG_ON_UPDATE_L, LOG_ON_UPDATE_S, "", "Create log file on update", true); // Hidden this->AddOptions(LOG_L, LOG_S, "", "Create log file"); this->AddOptions(LOG_FILE_L, LOG_FILE_S, "LogFileName", "Use specified log file"); this->AddOptions(NO_PROGRESS_L, NO_PROGRESS_S, "", "Do not show progress"); this->AddOptions(XML_L, XML_S, "", "Output in XML format", true); // Hidden this->AddOptions(OUT_FILE_L, OUT_FILE_S, "OutputFileName", "Write to specified output file"); this->AddOptions(ONLINE_IMGS_L, ONLINE_IMGS_S, "", "Fetch required FW images online from Mellanox server", false); this->AddOptions(ONLINE_QUERY_L, ONLINE_QUERY_S, "PSIDs", "Query FW info, PSID(s) are comma separated", false); this->AddOptions(DNLD_KEY_L, DNLD_KEY_S, "key", "Key for custom download/update"); this->AddOptions(DNLD_L, DNLD_S, "DirectoryName", "Download files from server to a specified directory", false); // Hidden this->AddOptions(USE_DEFAULT_L, USE_DEFAULT_S, "", "Use Default values for download"); this->AddOptions(GET_DNLD_OPT_L, GET_DNLD_OPT_S, "OPT", "Get download options for OS or Device\nOptions are: OS, Device", false); this->AddOptions(DNLD_DEV_L, DNLD_DEV_S, "Device", "Use '--" GET_DNLD_OPT_L " Device' option to view available devices for device specific downloads", false); this->AddOptions(DNLD_OS_L, DNLD_OS_S, "OS", "Only for self_extractor download: Use '--" GET_DNLD_OPT_L " OS' option to view available OS for sfx download", false); this->AddOptions(DNLD_TYPE_L, DNLD_TYPE_S, "Type", "MFA | self_extractor - default All", false); this->AddOptions(SERVER_URL_L, SERVER_URL_S, "URL", "Server URL for online operations", true); this->AddOptions(CERTIFICATE_L, CERTIFICATE_S, "Certificate", "SSL certificate For secure connection"); this->AddOptions(RET_DL_L, RET_DL_S, "", "Change return Value", true); this->AddOptions(RET_LVIM_L, RET_LVIM_S, "", "change return Value", true); this->AddOptions(NO_EXTRACT_LIST_L, NO_EXTRACT_LIST_S, "", "Do not extract or list binaries", true); // Hidden } bool csvSplit(string str, vector& strv) { size_t pos; bool res = true; while ((pos = str.find(';')) != string::npos) { string tmp = str.substr(0, pos); strv.push_back(tmp); str = str.substr(pos + 1); } strv.push_back(str); return res; } /************************************ * Function: HandleOption ************************************/ ParseStatus CmdLineParser::HandleOption(string name, string value) { if (name == DEVICE_L) { _cmdLineParams->device_names.clear(); if (!csvSplit(value, _cmdLineParams->device_names)) { return PARSE_ERROR_SHOW_USAGE; } return PARSE_OK; } else if (name == EXE_REL_PATH_L) { _cmdLineParams->use_exe_rel_paths = 1; return PARSE_OK; } else if (name == CURRENT_DIR_L) { _cmdLineParams->current_dir = value; return PARSE_OK; } else if (name == CLEAR_SEM_L) { _cmdLineParams->clear_semaphore = true; return PARSE_OK; } else if (name == UPDATE_L) { _cmdLineParams->update_fw = 1; return PARSE_OK; } else if (name == ARCHIVE_NAMES_L) { _cmdLineParams->display_archive_names = true; return PARSE_OK; } else if (name == SERVER_URL_L) { _cmdLineParams->server_url = value; return PARSE_OK; } else if (name == PROXY_L) { _cmdLineParams->proxy = value; return PARSE_OK; } else if (name == CERTIFICATE_L) { _cmdLineParams->certificate = value; return PARSE_OK; } else if (name == ONLINE_IMGS_L) { _cmdLineParams->update_online = true; return PARSE_OK; } else if (name == ONLINE_QUERY_L) { _cmdLineParams->onlineQueryPsids = value; return PARSE_OK; } else if (name == USE_IMG_FILE_L) { // Check if --image-dir was already parsed if (_cmdLineParams->use_mfa_dir == 1) { printf("-E- Flags --" USE_IMG_FILE_L " and --" USE_IMG_DIR_L " are not to be used in the same command\n"); return PARSE_ERROR; } _cmdLineParams->use_mfa_file = 1; _cmdLineParams->mfa_file = value; return PARSE_OK; } else if (name == USE_IMG_DIR_L) { // Check if --image-file was already parsed if (_cmdLineParams->use_mfa_file == 1) { printf("-E- Flags --" USE_IMG_FILE_L " and --" USE_IMG_DIR_L " are not to be used in the same command\n"); return PARSE_ERROR; } _cmdLineParams->use_mfa_dir = 1; _cmdLineParams->mfa_dir = value; return PARSE_OK; } else if (name == USE_DEFAULT_L) { _cmdLineParams->download_default = 1; return PARSE_OK; } else if (name == DNLD_L) { _cmdLineParams->download = true; _cmdLineParams->download_dir = value; return PARSE_OK; } else if (name == GET_DNLD_OPT_L) { trim(value); to_lowercase(value); if (value != "os" && value != "device") { printf("-E- Invalid value %s. please specify: OS | Device\n ", value.c_str()); return PARSE_ERROR; } _cmdLineParams->get_download_opt = value; return PARSE_OK; } else if (name == DNLD_DEV_L) { trim(value); to_lowercase(value); _cmdLineParams->download_dev = value; return PARSE_OK; } else if (name == DNLD_OS_L) { trim(value); to_lowercase(value); _cmdLineParams->download_os = value; return PARSE_OK; } else if (name == DNLD_TYPE_L) { trim(value); to_lowercase(value); if (value != "mfa" && value != "self_extractor" && value != "all") { printf("-E- Value :'%s' is not valid, valid values are : MFA | self_extractor|All\n", value.c_str()); return PARSE_ERROR; } _cmdLineParams->download_type = value; return PARSE_OK; } else if (name == DNLD_KEY_L) { _cmdLineParams->download_key = value; return PARSE_OK; } else if (name == LOG_ON_UPDATE_L) { _cmdLineParams->log_on_update = true; return PARSE_OK; } else if (name == LOG_L) { _cmdLineParams->create_log = 1; return PARSE_OK; } else if (name == PSID_L) { _cmdLineParams->psid = value; return PARSE_OK; } else if (name == CRC_L) { _cmdLineParams->calc_crc = true; return PARSE_OK; } else if (name == EXTRACT_L) { _cmdLineParams->extract_image = true; return PARSE_OK; } else if (name == EXTRACT_ALL_L) { _cmdLineParams->extract_all = true; return PARSE_OK; } else if (name == EXTRACT_DIR_L) { _cmdLineParams->extract_dir = value; return PARSE_OK; } else if (name == EXTRACT_FILE_L) { _cmdLineParams->target_file = value; return PARSE_OK; } else if (name == QUERY_L) { _cmdLineParams->query_device = true; return PARSE_OK; } else if (name == QUERY_XML_L) { _cmdLineParams->query_device_xml = true; return PARSE_OK; } else if (name == QUERY_FORMAT_L) { trim(value); to_lowercase(value); if (value != "xml" && value != "text") { printf("-E- Value :'%s' is not valid, valid values are : XML | Text\n", value.c_str()); return PARSE_ERROR; } _cmdLineParams->queryFormat = value; if (_cmdLineParams->queryFormat == "xml") { _cmdLineParams->query_device_xml = true; } return PARSE_OK; } else if (name == LOG_FILE_L) { _cmdLineParams->create_log = 1; _cmdLineParams->use_log_file = 1; _cmdLineParams->log_file = value; return PARSE_OK; } else if (name == NO_PROGRESS_L) { _cmdLineParams->show_progress = false; return PARSE_OK; } else if (name == XML_L) { _cmdLineParams->write_xml = 1; _cmdLineParams->dl = true; return PARSE_OK; } else if (name == OUT_FILE_L) { _cmdLineParams->use_output_file = 1; _cmdLineParams->output_file = value; return PARSE_OK; } else if (name == LOOKUP_FILE_L) { _cmdLineParams->use_lookup_file = 1; _cmdLineParams->lookup_file = value; return PARSE_OK; } else if (name == FORCE_L) { _cmdLineParams->force_update = 1; return PARSE_OK; } else if (name == NO_FW_CTRL_L) { _cmdLineParams->no_fw_ctrl = true; return PARSE_OK; } else if (name == YES_L) { // Check if --no was already parsed if (_cmdLineParams->yes_no_ == 0) { printf("-E- Flags --" YES_L " and --" NO_L " are not to be used in the same command\n"); return PARSE_ERROR; } _cmdLineParams->yes_no_ = 1; return PARSE_OK; } else if (name == NO_L) { // Check if --yes was already parsed if (_cmdLineParams->yes_no_ == 1) { printf("-E- Flags --" YES_L " and --" NO_L " are not to be used in the same command\n"); return PARSE_ERROR; } _cmdLineParams->yes_no_ = 0; return PARSE_OK; } else if (name == LIST_CONTENT_L) { _cmdLineParams->list_file_contents = true; return PARSE_OK; } else if (name == FFV_L) { _cmdLineParams->compare_ffv = 1; return PARSE_OK; } else if (name == HELP_L) { cout << _cmdParser.GetUsage(); printExamples(); return PARSE_OK_WITH_EXIT; } else if (name == HIDDEN_HELP_L) { cout << _cmdParser.GetUsage(true); printExamples(); return PARSE_OK_WITH_EXIT; } else if (name == VERSION_L) { print_version_string((const char*)toolName.c_str(), TOOL_VERSION); return PARSE_OK_WITH_EXIT; } else if (name == BURN_FAIL_SAFE_L) { _cmdLineParams->burnFailsafe = false; return PARSE_OK; } else if (name == RET_DL_L) { _cmdLineParams->dl = true; return PARSE_OK; } else if (name == RET_LVIM_L) { _cmdLineParams->lvim = true; return PARSE_OK; } else if (name == NO_EXTRACT_LIST_L) { _cmdLineParams->no_extract_list = true; return PARSE_OK; } else if (name == NUM_OF_RETRIALS_L) { std::istringstream iss(value); iss >> _cmdLineParams->numberOfRetrials >> std::ws; if (!iss.eof()) { cout << "-E- Could not parse val: " << value << "\n"; return PARSE_ERROR_SHOW_USAGE; } #if !defined(__FreeBSD__) if (iss.fail()) { cout << "-E- Could not parse val: " << value << "\n"; return PARSE_ERROR_SHOW_USAGE; } #endif if (_cmdLineParams->numberOfRetrials < 0) { cout << "-E- Negative value is not allowed " << value << "\n"; return PARSE_ERROR; } return PARSE_OK; } else { cout << "Unknown Flag: " << name << "\n"; return PARSE_ERROR_SHOW_USAGE; } } mstflint-4.26.0/mlxfwupdate/image_access.h0000644000175000017500000000736114522641732021026 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __IMAGE_ACCESS_H__ #define __IMAGE_ACCESS_H__ #include #include #include #include "psid_query_item.h" #include "mlxfwmanager_common.h" #include "mlnx_dev.h" using namespace std; #define MLNX_ERR_BUFF_SIZE 1024 enum { IMG_SIG_TYPE_UNKNOWN = 0, IMG_SIG_TYPE_BIN = 1, IMG_SIG_TYPE_MFA = 2, IMG_SIG_TYPE_PLDM = 3 }; class ImageAccess { public: ImageAccess(int compareFFV); ~ImageAccess(); int queryDirPsid(string& path, string& psid, string& selector_tag, int image_type, vector& riv); int queryPsid(const string& fname, const string& psid, string& selector_tag, int image_type, PsidQueryItem& ri); int getImage(const string& fname, u_int8_t** filebuf); int getImage(const string& fname, const string& psid, string& selector_tag, int image_type, u_int8_t** filebuf); int get_file_content(const string& fname, vector& riv); static int getFileSignature(const string& fname); static bool hasMFAs(string dir); string getLastErrMsg(); string getlastWarning(); string getLog(); private: int queryPsidMfa(const string& fname, const string& psid, string& selector_tag, int image_type, PsidQueryItem& ri); int queryPsidBin(const string& fname, const string& psid, PsidQueryItem& ri); int getImageBin(const string& fname, u_int8_t** filebuf); int getImageMfa(const string& fname, const string& psid, string& selector_tag, int image_type, u_int8_t** filebuf); int checkImgSignature(const char* fname); int get_mfa_content(const string& fname, vector& riv); int get_pldm_content(const string& fname, vector& riv); int get_bin_content(const string& fname, vector& riv); bool extract_pldm_image_info(const u_int8_t* buff, u_int32_t size, PsidQueryItem& ri); void parse_image_info_data(u_int8_t* image_info_data, PsidQueryItem& query_item); static int getBufferSignature(u_int8_t* buf, u_int32_t size); bool openImg(fw_hndl_type_t hndlType, char* psid, char* fileHndl); char _errBuff[MLNX_ERR_BUFF_SIZE]; int _compareFFV; string _log; string _errMsg; string _warning; FwOperations::fw_ops_params_t _imgFwParams; FwOperations* _imgFwOps; }; #endif mstflint-4.26.0/mlxfwupdate/img_version.cpp0000644000175000017500000001153014522641732021270 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include "img_version.h" #include "fw_version_old_clp.h" #include "fw_version_with_sub_build.h" const string MASTER_ARGUMENTS = "Unknown number of master arguments"; const string SUBMINOR_VALUE = "Invalid subminor value"; const string NOT_SET = "FW version isn't set"; const string ALREADY_SET = "Trying to set an already set FW version"; const int UPDATE_ON_DIFFERENT_BRANCHES = -1; ImgVersion::ImgVersion() : _type(), _fwVer(NULL), _isExpansionRomUnknown(false), _isOldMinor(false), _isSubBuild(false) { } ImgVersion::ImgVersion(const ImgVersion& rhs) : _type(rhs._type), _isExpansionRomUnknown(rhs._isExpansionRomUnknown), _isOldMinor(rhs._isOldMinor), _isSubBuild(rhs._isSubBuild) { _fwVer = rhs._fwVer->clone(); } ImgVersion::~ImgVersion() { if (_fwVer != NULL) { delete _fwVer; _fwVer = NULL; } } string ImgVersion::getTypeStr() { return _type; } ImgVersion& ImgVersion::operator=(const ImgVersion& rhs) { if (this != &rhs) { _type = rhs._type; if (_fwVer != NULL) { throw SetVersionException(ALREADY_SET); } _fwVer = rhs._fwVer->clone(); _isExpansionRomUnknown = rhs._isExpansionRomUnknown; _isOldMinor = rhs._isOldMinor; _isSubBuild = rhs._isSubBuild; } return *this; } void ImgVersion::setVersion(const std::string& imgType, u_int8_t verSz, const u_int16_t* ver, const string& verBranch) { if (_fwVer != NULL) { throw SetVersionException(ALREADY_SET); } switch (verSz) { case 3: _fwVer = new FwVersion(ver[0], ver[1], ver[2], verBranch); _isSubBuild = false; break; case 4: if (ver[2] * 100 + ver[3] > 9999) { throw SetVersionException(SUBMINOR_VALUE); } _fwVer = new FwVersionWithSubBuild(ver[0], ver[1], ver[2] * 100 + ver[3], verBranch); _isSubBuild = true; break; case 1: if (imgType != "CLP") { throw SetVersionException(MASTER_ARGUMENTS); } _fwVer = new FwVersionOldClp(0, ver[0], 0, verBranch); _isSubBuild = false; break; default: throw SetVersionException(MASTER_ARGUMENTS); } _type = imgType; _isOldMinor = (ver[1] <= 99); } string ImgVersion::getPrintableVersion(int ffv, bool show_type) { if (_fwVer == NULL) { throw SetVersionException(NOT_SET); } string prefix = show_type ? (_type + " ") : "", format; if (_type.size()) { if (!_type.compare("FW") || !_type.compare("Running FW")) { if (!ffv) { format = _isOldMinor ? "%d.%d.%04d" : "%d.%04d.%04d"; } else { format = "%02d.%02d.%02d.%02d"; } } else { format = _isSubBuild ? "%d.%d.%d.%04d" : "%d.%d.%04d"; } } return prefix + _fwVer->get_fw_version(format); } int ImgVersion::compareFw(const ImgVersion& imv) const { if (_fwVer == NULL) { throw SetVersionException(NOT_SET); } if (!_fwVer->are_same_branch(*imv._fwVer)) { return UPDATE_ON_DIFFERENT_BRANCHES; } return _fwVer->compare(*imv._fwVer); } mstflint-4.26.0/mlxfwupdate/img_version.h0000644000175000017500000000454414522641732020744 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __IMG_VERSION_H__ #define __IMG_VERSION_H__ #include #include #include #include using namespace std; class ImgVersion { class SetVersionException : public std::runtime_error { public: SetVersionException(const std::string error) : runtime_error(error) {} }; public: ImgVersion(); ImgVersion(const ImgVersion&); virtual ~ImgVersion(); ImgVersion& operator=(const ImgVersion&); void setVersion(const string& imgType, u_int8_t verSz, const u_int16_t* ver, const string& verBranch = ""); string getPrintableVersion(int ffv, bool show_type = true); string getTypeStr(); int compareFw(const ImgVersion& imv) const; private: string _type; FwVersion* _fwVer; bool _isExpansionRomUnknown; bool _isOldMinor; bool _isSubBuild; }; #endif mstflint-4.26.0/mlxfwupdate/server_request.h0000644000175000017500000000777414522641732021511 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __SERVER_REQUEST_H__ #define __SERVER_REQUEST_H__ #include #include #include #include "psid_query_item.h" #include "mlxfwmanager_common.h" #ifdef USE_CURL #include #include #include #include #endif #if defined(__WIN__) #define EXECUTABLE_MODE 0xFFFF #else #define EXECUTABLE_MODE 777 #endif using namespace std; enum { ERR_SRVREQ_ACCESS_INIT = 1, }; #define URL_TAG "url" #define FILE_NAME_TAG "name" #define ERR_MSG_TAG "err_msg" #define ERR_NUM_TAG "err_num" int progress_func(void* ptr, double TotalToDownload, double NowDownloaded, double TotalToUpload, double NowUploaded); class ServerRequest { public: ServerRequest(const char* url, const char* proxy, int compare_ffv, bool show_progress, string key, string certificate, unsigned int numberOfRetrials); ~ServerRequest(); int updateMFAsRequest(vector& psid_list, vector& dev_types_list, vector& fw_version_list, vector& results); // int queryAllMFAs(vector &mfa_list); int DownloadFilesRequest(vector& files, string os, string devs, string type); int queryPsids(string psids, vector& results); int download(string url, string dest_path); void getError(int& error, string& error_msg); inline void setNumberOfTrials(unsigned int num) { _numberOfRetrials = num; }; private: void setError(int error, string error_msg); int parseQueryResponse(string jsonTxt, vector& results, bool ignoreNotFound = true); // int parseQueryAllMFAsRespone(string jsonTxt, vector &result); int parseDownloadFilesResponse(string jsonTxt, vector& files); int curl_request(const char* url, const char* data, const char* dest_file, int numOfRet); int curl_request_str(const char* url, const char* data, string& response); string genertDownloadUrl(string file_url); private: string _Url; string _WebService; string _Proxy; int _UseProxy; int _LastErrorNo; string _LastErrorStr; int _compare_ffv; bool _show_progress; string _key; string _ceritifcate; unsigned int _numberOfRetrials; #ifdef USE_CURL static CURL* _curl; struct curl_slist* _headers; #endif }; #endif mstflint-4.26.0/mlxfwupdate/Makefile.am0000755000175000017500000001066514522641732020312 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in docdir = $(INSTALL_BASEDIR)/etc/mstflint dist_doc_DATA = certificate/ca-bundle.crt AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/cmdparser \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/libmfa \ -I$(top_srcdir)/mflash \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxfwops/lib \ -I$(top_srcdir)/pldmlib \ -I$(CURL_INC_DIR) bin_PROGRAMS = mstfwmanager mstfwmanager_CXXFLAGS = -g -MP -MD -Wall -W -DMSTFLINT $(INIPARSER_CFLAGS) $(JSON_CFLAGS) mstfwmanager_CXXFLAGS += -DUSE_XML -DLIBXML_STATIC mstfwmanager_CXXFLAGS += -DUSE_CURL -DCURL_STATICLIB mstfwmanager_SOURCES = \ cmd_line_params.cpp \ cmd_line_params.h \ cmd_line_parser.cpp \ cmd_line_parser.h \ err_msgs.h \ fw_version_old_clp.cpp \ fw_version_old_clp.h \ fw_version_with_sub_build.cpp \ fw_version_with_sub_build.h \ image_access.cpp \ image_access.h \ img_version.cpp \ img_version.h \ menu.cpp \ menu.h \ mlnx_dev.cpp \ mlnx_dev.h \ mlxfwmanager.cpp \ mlxfwmanager.h \ mlxfwmanager_common.cpp \ mlxfwmanager_common.h \ output_fmts.cpp \ output_fmts.h \ psid_lookup_db.cpp \ psid_lookup_db.h \ psid_query_item.cpp \ psid_query_item.h \ server_request.cpp \ server_request.h mstfwmanager_DEPENDENCIES = \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/mvpd/libmvpd.la \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/pldmlib/libpldm.la \ $(top_builddir)/mlxconfig/libmlxcfg.la \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(JSON_LIBS) \ $(INIPARSER_LIBS) \ $(MUPARSER_LIBS) \ $(SQLITE_LIBS) LDADD_mstfwmanager = -lm -lz ${LDL} # XML libs LDADD_mstfwmanager += -lxml2 # curl libs LDADD_mstfwmanager += -lcurl -lssl -lcrypto -lrt if ENABLE_OPENSSL mstfwmanager_DEPENDENCIES += $(top_builddir)/mlxsign_lib/libmlxsign.la LDADD_mstfwmanager += -lcrypto -lssl endif if ENABLE_CS mstfwmanager_DEPENDENCIES += $(top_builddir)/tools_crypto/libtools_crypto.a LDADD_mstfwmanager += -lcrypto endif if ENABLE_INBAND mstfwmanager_DEPENDENCIES += $(top_builddir)/mad_ifc/libmad_ifc.la endif if ENABLE_DPA mstfwmanager_CXXFLAGS += -DENABLE_DPA mstfwmanager_DEPENDENCIES += $(top_builddir)/mlxdpa/libmstdpa.a endif mstfwmanager_LDADD = $(mstfwmanager_DEPENDENCIES) $(LDADD_mstfwmanager) mstfwmanager_LDFLAGS = -static mstflint-4.26.0/mlxfwupdate/output_fmts.cpp0000644000175000017500000003114514522641732021344 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "output_fmts.h" #include "img_version.h" #include #include #include #include #include "err_msgs.h" #include string int2str(int n) { stringstream num; string str; num << n; str = num.str(); return str; } string hex2str(int n, int w = 1) { stringstream num; string str; num << setfill('0') << setw(w) << hex << n; str = num.str(); return str; } int OutputFmts::createInventoryXML(vector& devs, PsidLookupDB& psidLookupDB, int result, string msg, string& buffer, int buf_is_file) { int res = 0; #ifdef USE_XML xmlDocPtr doc = NULL; xmlNodePtr root_node = NULL, devices_node = NULL, node = NULL; // device_node = NULL, fw_node = NULL, ; doc = xmlNewDoc(BAD_CAST "1.0"); root_node = xmlNewNode(NULL, BAD_CAST "SVMInventory"); xmlNewProp(root_node, BAD_CAST "lang", BAD_CAST "en"); xmlDocSetRootElement(doc, root_node); for (unsigned i = 0; i < devs.size(); i++) { devices_node = xmlNewChild(root_node, NULL, BAD_CAST "Device", NULL); xmlNewProp(devices_node, BAD_CAST "vendorID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.vend_id).c_str()); xmlNewProp(devices_node, BAD_CAST "deviceID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.dev_id).c_str()); xmlNewProp(devices_node, BAD_CAST "subDeviceID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.subsys_id, 4).c_str()); xmlNewProp(devices_node, BAD_CAST "subVendorID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.subsys_vend_id).c_str()); xmlNewProp(devices_node, BAD_CAST "domain", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.domain).c_str()); xmlNewProp(devices_node, BAD_CAST "bus", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.bus).c_str()); xmlNewProp(devices_node, BAD_CAST "device", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.dev).c_str()); xmlNewProp(devices_node, BAD_CAST "function", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.func).c_str()); if (!devs[i]->isQuerySuccess()) { continue; } xmlNewProp(devices_node, BAD_CAST "display", BAD_CAST psidLookupDB.getProdDesc(devs[i]->getBoardTypeId()).c_str()); node = xmlNewChild(devices_node, NULL, BAD_CAST "Application", NULL); xmlNewProp(node, BAD_CAST "componentType", BAD_CAST "FRMW"); xmlNewProp(node, BAD_CAST "version", BAD_CAST devs[i]->getFWVersion(false).c_str()); xmlNewProp(node, BAD_CAST "display", BAD_CAST psidLookupDB.getProdDesc(devs[i]->getBoardTypeId()).c_str()); } if (result) { node = xmlNewChild(root_node, NULL, BAD_CAST "SPStatus", NULL); xmlNewProp(node, BAD_CAST "result", BAD_CAST "false"); node = xmlNewChild(node, NULL, BAD_CAST "Message", BAD_CAST msg.c_str()); xmlNewProp(node, BAD_CAST "id", BAD_CAST int2str(result).c_str()); } if (buf_is_file) { int rc = xmlSaveFormatFileEnc(buffer.c_str(), doc, "UTF-8", 1); if (rc == -1) { res = -1; } } else { xmlChar* doc_txt_ptr = NULL; int doc_txt_len = 0; xmlDocDumpFormatMemoryEnc(doc, &doc_txt_ptr, &doc_txt_len, "UTF-8", 1); if (doc_txt_len) { buffer = (char*)doc_txt_ptr; // xmlFree(doc_txt_ptr); //TODO: This is a leak, temporarily only until windows crash is resolved!! } } xmlFreeDoc(doc); xmlCleanupParser(); #endif return res; } int OutputFmts::createBurnXML(vector& devs, map& psidUpdateInfo, PsidLookupDB& psidLookupDB, string& buffer, int buf_is_file, int compareFFV) { int res = 0; #ifdef USE_XML int boot_required = 0; xmlDocPtr doc = NULL; xmlNodePtr root_node = NULL, devices_node = NULL, node = NULL, app_node = NULL; doc = xmlNewDoc(BAD_CAST "1.0"); root_node = xmlNewNode(NULL, BAD_CAST "SVMExecution"); xmlNewProp(root_node, BAD_CAST "lang", BAD_CAST "en"); xmlDocSetRootElement(doc, root_node); for (unsigned i = 0; i < devs.size(); i++) { devices_node = xmlNewChild(root_node, NULL, BAD_CAST "Device", NULL); xmlNewProp(devices_node, BAD_CAST "vendorID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.vend_id).c_str()); xmlNewProp(devices_node, BAD_CAST "deviceID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.dev_id).c_str()); xmlNewProp(devices_node, BAD_CAST "subDeviceID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.subsys_id, 4).c_str()); xmlNewProp(devices_node, BAD_CAST "subVendorID", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.subsys_vend_id).c_str()); xmlNewProp(devices_node, BAD_CAST "bus", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.bus).c_str()); xmlNewProp(devices_node, BAD_CAST "device", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.dev).c_str()); xmlNewProp(devices_node, BAD_CAST "function", BAD_CAST hex2str(devs[i]->getDevInfo()->pci.func).c_str()); xmlNewProp(devices_node, BAD_CAST "display", BAD_CAST psidLookupDB.getProdDesc(devs[i]->getBoardTypeId()).c_str()); if (!devs[i]->isQuerySuccess()) { node = xmlNewChild(devices_node, NULL, BAD_CAST "SPStatus", NULL); xmlNewProp(node, BAD_CAST "result", BAD_CAST "false"); node = xmlNewChild(node, NULL, BAD_CAST "Message", BAD_CAST "Failed to query the device."); xmlNewProp(node, BAD_CAST "id", BAD_CAST int2str(ERR_CODE_QUERY_FAILED).c_str()); continue; } app_node = xmlNewChild(devices_node, NULL, BAD_CAST "Application", NULL); xmlNewProp(app_node, BAD_CAST "componentType", BAD_CAST "FRMW"); xmlNewProp(app_node, BAD_CAST "version", BAD_CAST devs[i]->getFWVersion(false).c_str()); xmlNewProp(app_node, BAD_CAST "display", BAD_CAST psidLookupDB.getProdDesc(devs[i]->getBoardTypeId()).c_str()); if (psidUpdateInfo.find(devs[i]->getPsid()) != psidUpdateInfo.end()) { if (psidUpdateInfo[devs[i]->getPsid()].found) { node = xmlNewChild(app_node, NULL, BAD_CAST "Package", NULL); ImgVersion* fwImgVer = (ImgVersion*)psidUpdateInfo[devs[i]->getPsid()].findImageVersion("FW"); if (fwImgVer != NULL) { xmlNewProp(node, BAD_CAST "version", BAD_CAST fwImgVer->getPrintableVersion(compareFFV, false).c_str()); } } } node = xmlNewChild(app_node, NULL, BAD_CAST "SPStatus", NULL); int burn_res = ERR_CODE_PROG_FAILED; string msg = "Update failure."; if (devs[i]->isBurnSuccess() == 0) { msg += " "; msg += devs[i]->getLastErrMsg(); } else if (devs[i]->isBurnSuccess() == 1) { boot_required = 1; burn_res = MLX_FWM_SUCCESS; msg = "Update success."; } else { // == -1 if (psidUpdateInfo.find(devs[i]->getPsid()) != psidUpdateInfo.end()) { if (!psidUpdateInfo[devs[i]->getPsid()].found) { msg += " No relevant image file was found for this device"; } else if (psidUpdateInfo[devs[i]->getPsid()].found > 1) { msg += " Multiple image sources found for this device"; } else { ImgVersion* fwImgVer = (ImgVersion*)psidUpdateInfo[devs[i]->getPsid()].findImageVersion("FW"); if (fwImgVer != NULL) { if ((devs[i]->compareFWVer(*fwImgVer) <= 0) && !_force_mode) { burn_res = MLX_FWM_SUCCESS; msg = "Update success. No update required."; } } } } else { msg = "Update failure. No relevant image file was found for this device"; } } xmlNewProp(node, BAD_CAST "result", BAD_CAST(burn_res ? "false" : "true")); node = xmlNewChild(node, NULL, BAD_CAST "Message", BAD_CAST msg.c_str()); xmlNewProp(node, BAD_CAST "id", BAD_CAST int2str(burn_res).c_str()); } node = xmlNewChild(root_node, NULL, BAD_CAST "RebootRequired", BAD_CAST int2str(boot_required).c_str()); if (buf_is_file) { int rc = xmlSaveFormatFileEnc(buffer.c_str(), doc, "UTF-8", 1); if (rc == -1) { res = -1; } } else { xmlChar* doc_txt_ptr = NULL; int doc_txt_len = 0; xmlDocDumpFormatMemoryEnc(doc, &doc_txt_ptr, &doc_txt_len, "UTF-8", 1); if (doc_txt_len) { buffer = (char*)doc_txt_ptr; // xmlFree(doc_txt_ptr); //TODO: This is a leak, temporarily only until windows crash is resolved!! } } (void)node; xmlFreeDoc(doc); xmlCleanupParser(); #endif return res; } int OutputFmts::createFailXML(int result, int update_query_, string& buffer, int buf_is_file) { int res = 0; #ifdef USE_XML xmlDocPtr doc = NULL; xmlNodePtr root_node = NULL, node = NULL; doc = xmlNewDoc(BAD_CAST "1.0"); if (update_query_ == 0) { root_node = xmlNewNode(NULL, BAD_CAST "SVMInventory"); } else { root_node = xmlNewNode(NULL, BAD_CAST "SVMExecution"); } xmlNewProp(root_node, BAD_CAST "lang", BAD_CAST "en"); xmlDocSetRootElement(doc, root_node); node = xmlNewChild(root_node, NULL, BAD_CAST "SPStatus", NULL); xmlNewProp(node, BAD_CAST "result", BAD_CAST "false"); if (update_query_ == 1) { xmlNewProp(node, BAD_CAST "code", BAD_CAST int2str(result).c_str()); } node = xmlNewChild(node, NULL, BAD_CAST "Message", BAD_CAST getErrStr(result).c_str()); xmlNewProp(node, BAD_CAST "id", BAD_CAST int2str(result).c_str()); if (update_query_ == 1) { node = xmlNewChild(root_node, NULL, BAD_CAST "RebootRequired", BAD_CAST "0"); } if (buf_is_file) { int rc = xmlSaveFormatFileEnc(buffer.c_str(), doc, "UTF-8", 1); if (rc == -1) { res = -1; } } else { xmlChar* doc_txt_ptr = NULL; int doc_txt_len = 0; xmlDocDumpFormatMemoryEnc(doc, &doc_txt_ptr, &doc_txt_len, "UTF-8", 1); if (doc_txt_len) { buffer = (char*)doc_txt_ptr; // xmlFree(doc_txt_ptr); //TODO: This is a leak, temporarily only until windows crash is resolved!! } } (void)node; xmlFreeDoc(doc); xmlCleanupParser(); #endif return res; } void OutputFmts::setForceModeParam(bool force_mode) { _force_mode = force_mode; } mstflint-4.26.0/mlxfwupdate/mlnx_dev.cpp0000644000175000017500000010604414522641732020570 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #define MTCR_EXPORT #include "mlnx_dev.h" #include #include #include #include #include #include #include #include "image_access.h" #include "mvpd/mvpd.h" #if !defined(__WIN__) && !defined(__FreeBSD__) #include #include #include #include #include #define ETHTOOL_GDRVINFO 0x00000003 /* Get driver info. */ #define ETHTOOL_FWVERS_LEN 32 #define ETHTOOL_BUSINFO_LEN 32 struct ethtool_drvinfo { __u32 cmd; char driver[32]; /* driver short name, "tulip", "eepro100" */ char version[32]; /* driver version string */ char fw_version[ETHTOOL_FWVERS_LEN]; /* firmware version string */ char bus_info[ETHTOOL_BUSINFO_LEN]; /* Bus info for this IF. */ /* For PCI devices, use pci_name(pci_dev). */ char reserved1[32]; char reserved2[12]; __u32 n_priv_flags; /* number of flags valid in ETHTOOL_GPFLAGS */ __u32 n_stats; /* number of u64's from ETHTOOL_GSTATS */ __u32 testinfo_len; __u32 eedump_len; /* Size of data from ETHTOOL_GEEPROM (bytes) */ __u32 regdump_len; /* Size of data from ETHTOOL_GREGS (bytes) */ }; #endif using namespace std; void MlnxDev::initUniqueId() { mfile* mf = mopen(getDevName().c_str()); if (!mf) { return; } vpd_result_t* vpdP = NULL; if (mvpd_read(mf, &vpdP, VPD_RO) == 0 && vpdP != NULL) { int i = 0; string pn; string sn; while (i < vpdP->ro_fields_size) { string id = string(vpdP->ro_fields[i].id); if (id == "PN") { pn = string(vpdP->ro_fields[i].data); } else if (id == "SN") { sn = string(vpdP->ro_fields[i].data); } i++; } _uniqueId = pn + "_" + sn; mvpd_result_free(vpdP); } mclose(mf); } void MlnxDev::_MlnxDevInit(int compare_ffv) { _compareFFV = compare_ffv; _querySuccess = 0; _burnSuccess = -1; _ExpRomExists = 0; _needsUpdate = false; _devFwOps = NULL; _imgFwOps = NULL; _description = ""; guidPortOne = "N/A"; guidPortTwo = "N/A"; macPortOne = "N/A"; macPortTwo = "N/A"; _deviceTypeStr = "N/A"; _deviceType = DeviceUnknown; memset(&_devFwParams, 0, sizeof(_devFwParams)); memset(&_imgFwParams, 0, sizeof(_imgFwParams)); portOneType = PORT_NA; portTwoType = PORT_NA; _partNumber = ""; isOnlyBase = false; _commander = NULL; _noFwCtrl = false; _mccSupport = true; _preBurnInit = false; _uniqueId = "NA"; _unknowProgress = 0; initUniqueId(); setDeviceType(); } MlnxDev::MlnxDev(dev_info* devinfo, int compare_ffv) { _init_type = INIT_DEVINFO; _devinfo = devinfo; _MlnxDevInit(compare_ffv); memset(_errBuff, 0, sizeof(_errBuff)); _imageEncrypted = false; _deviceEncrypted = false; } MlnxDev::MlnxDev(const char* devname, int compare_ffv) { _devinfo = NULL; _init_type = INIT_DEVNAME; _devname = devname; _MlnxDevInit(compare_ffv); } void MlnxDev::setGuidMac(fw_info_t& fw_query) { bool isFs2 = (fw_query.fw_type == FIT_FS2) ? true : false; char buff[512] = {0}; string mac_format = "%4.4x%8.8x"; string guild_format = "%8.8x%8.8x"; if (_deviceType == DeviceUnknown) { return; } if (isFs2) { if (fw_query.fs2_info.guid_num < 3) { return; } if (fw_query.fs2_info.guid_num < 6) { if (fw_query.fs2_info.guids[1].h || fw_query.fs2_info.guids[1].l) { snprintf(buff, sizeof(buff) - 1, guild_format.c_str(), fw_query.fs2_info.guids[1].h, fw_query.fs2_info.guids[1].l); guidPortOne = (string)buff; } if (fw_query.fs2_info.guids[2].h || fw_query.fs2_info.guids[2].l) { snprintf(buff, sizeof(buff) - 1, guild_format.c_str(), fw_query.fs2_info.guids[2].h, fw_query.fs2_info.guids[2].l); guidPortTwo = (string)buff; } } else { if (portOneType == PORT_ETH) { if (fw_query.fs2_info.guids[4].h || fw_query.fs2_info.guids[4].l) { snprintf(buff, sizeof(buff) - 1, mac_format.c_str(), fw_query.fs2_info.guids[4].h, fw_query.fs2_info.guids[4].l); macPortOne = (string)buff; } } else if (portOneType == PORT_IB) { if (fw_query.fs2_info.guids[1].h || fw_query.fs2_info.guids[1].l) { snprintf(buff, sizeof(buff) - 1, guild_format.c_str(), fw_query.fs2_info.guids[1].h, fw_query.fs2_info.guids[1].l); guidPortOne = (string)buff; } } if (portTwoType == PORT_ETH) { if (fw_query.fs2_info.guids[5].h || fw_query.fs2_info.guids[5].l) { snprintf(buff, sizeof(buff) - 1, mac_format.c_str(), fw_query.fs2_info.guids[5].h, fw_query.fs2_info.guids[5].l); macPortTwo = (string)buff; } } else if (portTwoType == PORT_IB) { if (fw_query.fs2_info.guids[2].h || fw_query.fs2_info.guids[2].l) { snprintf(buff, sizeof(buff) - 1, guild_format.c_str(), fw_query.fs2_info.guids[2].h, fw_query.fs2_info.guids[2].l); guidPortTwo = (string)buff; } } } } else { if (fw_query.fs3_info.fs3_uids_info.valid_field) { snprintf(buff, sizeof(buff) - 1, "%016" U64H_FMT_GEN, fw_query.fs3_info.fs3_uids_info.image_layout_uids.base_guid.uid); } else { snprintf(buff, sizeof(buff) - 1, "%016" U64H_FMT_GEN, fw_query.fs3_info.fs3_uids_info.cib_uids.guids[0].uid); } if (fw_query.fs3_info.fs3_uids_info.cib_uids.guids[0].uid || fw_query.fs3_info.fs3_uids_info.image_layout_uids.base_guid.uid) { guidPortOne = (string)buff; } if (fw_query.fs3_info.fs3_uids_info.valid_field) { snprintf(buff, sizeof(buff) - 1, "%012" U64H_FMT_GEN, fw_query.fs3_info.fs3_uids_info.image_layout_uids.base_mac.uid); if (fw_query.fs3_info.fs3_uids_info.image_layout_uids.base_mac.uid) { macPortOne = (string)buff; } sprintf(buff, " "); } else { snprintf(buff, sizeof(buff) - 1, "%016" U64H_FMT_GEN, fw_query.fs3_info.fs3_uids_info.cib_uids.guids[1].uid); } if (fw_query.fs3_info.fs3_uids_info.image_layout_uids.base_mac.uid || fw_query.fs3_info.fs3_uids_info.cib_uids.guids[1].uid) { guidPortTwo = (string)buff; } } // printf("Guild 1 : %s\n", guidPortOne.c_str()); // printf("Guild 2 : %s\n", guidPortTwo.c_str()); // printf("MAC 1 : %s\n", macPortOne.c_str()); // printf("MAC 2 : %s\n", macPortTwo.c_str()); } bool MlnxDev::clearSemaphore() { bool clearSemaphore = true; bool overRideCacheReplacement = false; int numberOfBanks = -1; FBase* io = new Flash; if (io == NULL) { _errMsg = "could not allocate io flash"; _log += _errMsg; return false; } if (!((Flash*)io) ->open(getDevDisplayName().c_str(), clearSemaphore, false, numberOfBanks, NULL, overRideCacheReplacement)) { // if we have Hw_Access command we dont fail straght away _errMsg = (io)->err(); _log += _errMsg; delete io; return false; } (io)->close(); delete io; return true; } MlnxDev::~MlnxDev() { if (_devFwOps) { _devFwOps->FwCleanUp(); delete _devFwOps; _devFwOps = NULL; } if (_imgFwOps) { _imgFwOps->FwCleanUp(); delete _imgFwOps; _imgFwOps = NULL; } } bool MlnxDev::doesDevNeedUpdate() { return _needsUpdate; } MlnxDev::port_type_t MlnxDev::findPortType(int port) { ParamView pv; pv.mlxconfigName = "LINK_TYPE_P1"; if (port == 2) { pv.mlxconfigName = "LINK_TYPE_P2"; } if (!_commander) { return PORT_NA; } try { _commander->getCfg(pv); } catch (MlxcfgException& e) { return PORT_NA; } if (pv.val == 2) { return PORT_ETH; } else if (pv.val == 1) { return PORT_IB; } else { return PORT_NA; } } void MlnxDev::setDeviceType(void) { dm_dev_id_t ptr_dm_dev_id = DeviceUnknown; u_int32_t ptr_hw_dev_id = 0; u_int32_t ptr_hw_rev = 0; mfile* mf = NULL; mf = mopen(getDevName().c_str()); if (!mf) { return; } if (dm_get_device_id(mf, &ptr_dm_dev_id, &ptr_hw_dev_id, &ptr_hw_rev)) { mclose(mf); return; } if (dm_dev_is_eth_switch(ptr_dm_dev_id)) { portOneType = PORT_ETH; portTwoType = PORT_ETH; isOnlyBase = true; } else if (dm_is_connectib(ptr_dm_dev_id)) { portOneType = PORT_IB; portTwoType = PORT_IB; } else if (dm_is_4th_gen(ptr_dm_dev_id)) { u_int32_t mac; if ((mread4(mf, 0x1f148, &mac)) == 4) { // port1 portOneType = EXT(mac, 30, 29) != 1 ? PORT_ETH : PORT_IB; } if ((mread4(mf, 0x1f164, &mac)) == 4) { // port2 portTwoType = EXT(mac, 30, 29) != 1 ? PORT_ETH : PORT_IB; } } else if (dm_dev_is_ib_switch(ptr_dm_dev_id)) { portOneType = PORT_IB; portTwoType = PORT_IB; isOnlyBase = true; } else if (ptr_dm_dev_id == DeviceConnectX4LX) { portOneType = PORT_ETH; portTwoType = PORT_ETH; isOnlyBase = true; } else if (dm_is_5th_gen_hca(ptr_dm_dev_id)) { try { _commander = Commander::create(mf, ""); } catch (MlxcfgException& e) { _commander = NULL; } isOnlyBase = true; portOneType = findPortType(1); portTwoType = findPortType(2); if (_commander) { delete _commander; } _commander = NULL; } else { portOneType = PORT_NA; portTwoType = PORT_NA; } if (mf) { mclose(mf); } _deviceTypeStr = (string)dm_dev_type2str(ptr_dm_dev_id); _deviceType = ptr_dm_dev_id; } void MlnxDev::setDevToNeedUpdate() { _needsUpdate = true; } void MlnxDev::setNoFwCtrl() { _noFwCtrl = true; } void MlnxDev::patchPsidInfo(string psid) { if (psid.size() > 0) { _psid = psid; } } string MlnxDev::getBoardTypeId() { if (_psid.size() > 0) { return _psid; } return _boardTypeId; } string MlnxDev::getLastErrMsg() { return _errMsg; } string MlnxDev::getLog() { return _log; } int MlnxDev::compareFWVer(const ImgVersion& ver) { int idx = getImageIndex("FW"); if (idx == -1) { return 0; } return _imageVers[idx].compareFw(ver); } int MlnxDev::isBurnSuccess() { return _burnSuccess; } int MlnxDev::isQuerySuccess() { return _querySuccess; } bool MlnxDev::openImg(u_int32_t* fileBuffer, u_int32_t bufferSize) { memset(_errBuff, 0, sizeof(_errBuff)); _imgFwParams.errBuff = _errBuff; _imgFwParams.errBuffSize = MLNX_ERR_BUFF_SIZE; _imgFwParams.hndlType = FHT_FW_BUFF; _imgFwParams.psid = (char*)_psid.c_str(); _imgFwParams.buffHndl = fileBuffer; _imgFwParams.buffSize = bufferSize; _imgFwParams.shortErrors = true; _imgFwOps = FwOperations::FwOperationsCreate(_imgFwParams); if (_imgFwOps == NULL) { _errMsg = _errBuff; _log += _errMsg; return false; } return true; } int MlnxDev::preBurn(string mfa_file, f_prog_func prog_cb, bool burnFailsafe, bool& isTimeConsumingFixesNeeded, vector& questions, f_prog_func_adv stage_prog) { string cmd; int rc; u_int8_t* filebuf = NULL; ImageAccess imgacc(_compareFFV); fw_info_t dev_fw_query; fw_info_t img_fw_query; memset(&dev_fw_query, 0, sizeof(dev_fw_query)); memset(&img_fw_query, 0, sizeof(img_fw_query)); _burnSuccess = 0; int sza = imgacc.getImage(mfa_file, &filebuf); if (sza < 0) { _errMsg = imgacc.getLastErrMsg(); _log += imgacc.getLog(); return -1; } if (!openImg((u_int32_t*)filebuf, (u_int32_t)sza)) { goto clean_up_on_error; } if (!_imgFwOps->isEncrypted(_imageEncrypted)) { _errMsg = "Failed to identify if image is encrypted."; rc = -1; goto clean_up_on_error; } rc = _imgFwOps->FwQuery(&img_fw_query); if (!rc) { _errMsg = "Failed to query the image, " + (string)_imgFwOps->err(); _log += _errMsg; goto clean_up_on_error; } if (img_fw_query.fs3_info.security_mode == SM_NONE) { setNoFwCtrl(); } if (!OpenDev()) { goto clean_up_on_error; } if (!_devFwOps->isEncrypted(_deviceEncrypted)) { _errMsg = "Failed to identify if device is encrypted."; rc = -1; goto clean_up_on_error; } #ifdef __WIN__ if (LockDevice(_devFwOps) != TOOLS_SYNC_OK) { return -1; } #endif if (_deviceEncrypted != _imageEncrypted) { char errMsg[100]; sprintf(errMsg, "Burning %sencrypted image on %sencrypted device is not allowed.\n", _imageEncrypted ? "" : "non-", _deviceEncrypted ? "" : "non-"); _errMsg = errMsg; rc = -1; goto clean_up_on_error; } rc = _devFwOps->FwQuery(&dev_fw_query); if (!rc) { _errMsg = "Failed to query the device, " + (string)_devFwOps->err(); _log += _errMsg; goto clean_up_on_error; } // Abort if the image is restricted according to the Security-Version if (_devFwOps->IsSecurityVersionViolated(img_fw_query.fs3_info.image_security_version)) { _errMsg = "The image you're trying to burn is restricted. Aborting ..."; _log += _errMsg; goto clean_up_on_error; } _burnParams.burnFailsafe = burnFailsafe; if (_burnParams.burnFailsafe) { if (_burnParams.burnFailsafe && (!img_fw_query.fw_info.is_failsafe || !dev_fw_query.fw_info.is_failsafe)) { if (!img_fw_query.fw_info.is_failsafe && !dev_fw_query.fw_info.is_failsafe) { _burnParams.burnFailsafe = false; } else { char err[512] = {0}; snprintf( err, sizeof(err) - 1, "Failsafe burn failed: FW image in the %s is non failsafe.\n" " you cannot burn a%s failsafe image over a%s failsafe image in a failsafe mode.\n" " If you want to burn in non failsafe mode, use the \"--nofs\" switch along with \"-d device\".\n", img_fw_query.fw_info.is_failsafe ? "flash" : "given file", img_fw_query.fw_info.is_failsafe ? "" : " non", dev_fw_query.fw_info.is_failsafe ? "" : " non"); _errMsg = err; _log += _errMsg; goto clean_up_on_error; } } FwOperations::fw_ops_params_t fwParams; memset(&fwParams, 0, sizeof(fwParams)); if (InitDevFWParams(fwParams)) { FsChecks fsChecks(dev_fw_query, _devFwOps, _imgFwOps, _burnParams, fwParams); if (fsChecks.ExecuteChecks(&_devFwOps, _burnParams, dev_fw_query)) { fsChecks.GetUserQuestions(questions); isTimeConsumingFixesNeeded = fsChecks._isTimeConsumingFixesNeeded; delete[] fwParams.mstHndl; } else { delete[] fwParams.mstHndl; goto clean_up_on_error; } } } _burnParams.progressFunc = prog_cb; _burnParams.ProgressFuncAdv.func = stage_prog; _burnParams.ProgressFuncAdv.opaque = &_unknowProgress; _burnParams.ignoreVersionCheck = true; _preBurnInit = true; UnlockDevice(_devFwOps); free(filebuf); return 0; clean_up_on_error: if (_devFwOps) { UnlockDevice(_devFwOps); _devFwOps->FwCleanUp(); delete _devFwOps; _devFwOps = NULL; } if (_imgFwOps) { _imgFwOps->FwCleanUp(); delete _imgFwOps; _imgFwOps = NULL; } free(filebuf); return -1; } int MlnxDev::burn(bool& imageWasCached) { int res = 0, rc = 0; if (!_preBurnInit) { _errMsg = "Pre-burn was not processed"; res = -1; goto clean_up; } #ifdef __WIN__ if (LockDevice(_devFwOps) != TOOLS_SYNC_OK) { return -1; } #endif //* Burn encrypted image using MCC flow or direct-access if (_deviceEncrypted && _imageEncrypted) { rc = _devFwOps->burnEncryptedImage(_imgFwOps, _burnParams); } else { rc = _devFwOps->FwBurnAdvanced(_imgFwOps, _burnParams); } if (!rc) { if (_devFwOps->err() != NULL) { _errMsg = _devFwOps->err(); } else { _errMsg = "Failed to burn, unknown reason"; } _log += _errMsg; res = -1; UnlockDevice(_devFwOps); goto clean_up; } _burnSuccess = 1; imageWasCached = _burnParams.burnStatus.imageCachedSuccessfully; clean_up: if (_devFwOps) { UnlockDevice(_devFwOps); _devFwOps->FwCleanUp(); delete _devFwOps; _devFwOps = NULL; } if (_imgFwOps) { _imgFwOps->FwCleanUp(); delete _imgFwOps; _imgFwOps = NULL; } return res; } bool MlnxDev::InitDevFWParams(FwOperations::fw_ops_params_t& devFwParams) { string devName = getDevName(); memset(_errBuff, 0, sizeof(_errBuff)); devFwParams.errBuff = _errBuff; devFwParams.errBuffSize = MLNX_ERR_BUFF_SIZE; devFwParams.hndlType = FHT_MST_DEV; char* deviceName = (char*)devName.c_str(); int length = ((strlen(deviceName) + 1) * sizeof(char)); devFwParams.mstHndl = new char[length]; if (devFwParams.mstHndl == NULL) { _errMsg = "Failed to allocate Memory"; _log += _errMsg; return false; } memset(devFwParams.mstHndl, 0, length); strncpy(devFwParams.mstHndl, deviceName, length - 1); devFwParams.forceLock = false; devFwParams.readOnly = false; devFwParams.numOfBanks = -1; devFwParams.flashParams = (flash_params_t*)NULL; devFwParams.ignoreCacheRep = 0; devFwParams.noFlashVerify = false; devFwParams.psid = (char*)_psid.c_str(); devFwParams.shortErrors = true; devFwParams.noFwCtrl = _noFwCtrl; devFwParams.mccUnsupported = !(_mccSupport); return true; } bool MlnxDev::OpenDev() { if (!InitDevFWParams(_devFwParams)) { return false; } _devFwOps = FwOperations::FwOperationsCreate(_devFwParams); delete[] _devFwParams.mstHndl; if (_devFwOps == NULL) { _errMsg = _errBuff; _log += _errMsg; return false; } return true; } int MlnxDev::queryFwops() { int res = -1; int i; ImgVersion imgv; u_int16_t fwVer[4]; u_int16_t runningfwVer[4] = {0}; fw_info_t fw_query; vector sect; // to get fw configuration. vector dest; int versionFields = 3; /*TODO: set variable length*/ if (!OpenDev()) { return -1; } memset(&fw_query, 0, sizeof(fw_info_t)); if (!_devFwOps->FwQuery(&fw_query, true)) { if (_devFwOps->err() != NULL) { _errMsg = "Failed to query " + (string)_devFwOps->err(); } else { _errMsg = "Failed to query : unknown reason"; } _log += _errMsg; goto clean_up; } setGuidMac(fw_query); if (!guidPortOne.empty() && guidPortOne != "N/A") { _uniqueId += "_" + guidPortOne; } if (!guidPortTwo.empty() && guidPortTwo != "N/A") { _uniqueId += "_" + guidPortTwo; } // attempt to take some fields from image info if (fw_query.fw_type == FIT_FS3 || fw_query.fw_type == FIT_FS4) { if (strlen(fw_query.fs3_info.description)) { _description = fw_query.fs3_info.description; } if (strlen(fw_query.fs3_info.name)) { _partNumber = fw_query.fs3_info.name; } } if (!_description.size() || !_partNumber.size()) { // take missing from ini setMccSupport(false); _devFwOps->FwCleanUp(); delete _devFwOps; if (!OpenDev()) { return -1; } setMccSupport(true); if (_devFwOps->FwGetSection((_devFwOps->FwType() == FIT_FS2) ? (int)H_FW_CONF : (int)FS3_DBG_FW_INI, sect)) { // Take from ini if (unzipDataFile(sect, dest, "Fw Configuration")) { char* ptr; int counter; if (!_partNumber.size()) { ptr = strstr((char*)&dest[0], "Name ="); counter = 7; while (ptr && *ptr != '\n' && *ptr != '\r') { if (counter-- > 0) { ptr++; continue; } _partNumber += *ptr; ptr++; } } if (!_description.size()) { ptr = strstr((char*)&dest[0], "Description ="); counter = 14; while (ptr && *ptr != '\n' && *ptr != '\r') { if (counter-- > 0) { ptr++; continue; } _description += *ptr; ptr++; } } } } } if (!_compareFFV) { for (i = 0; i < versionFields; i++) { fwVer[i] = fw_query.fw_info.fw_ver[i]; runningfwVer[i] = fw_query.fw_info.running_fw_ver[i]; } } else { fwVer[0] = fw_query.fw_info.fw_ver[0]; fwVer[1] = fw_query.fw_info.fw_ver[1]; fwVer[2] = fw_query.fw_info.fw_ver[2] / 100; fwVer[3] = fw_query.fw_info.fw_ver[2] % 100; runningfwVer[0] = fw_query.fw_info.running_fw_ver[0]; runningfwVer[1] = fw_query.fw_info.running_fw_ver[1]; runningfwVer[2] = fw_query.fw_info.running_fw_ver[2] / 100; runningfwVer[3] = fw_query.fw_info.running_fw_ver[2] % 100; } imgv.setVersion("FW", versionFields + _compareFFV, fwVer, fw_query.fw_info.branch_ver); _imageVers.push_back(imgv); if ((fw_query.fw_info.running_fw_ver[0] || fw_query.fw_info.running_fw_ver[1] || fw_query.fw_info.running_fw_ver[2]) && (fw_query.fw_info.running_fw_ver[0] != fw_query.fw_info.fw_ver[0] || fw_query.fw_info.running_fw_ver[1] != fw_query.fw_info.fw_ver[1] || fw_query.fw_info.running_fw_ver[2] != fw_query.fw_info.fw_ver[2])) { ImgVersion imgrv; imgrv.setVersion("FW (Running)", versionFields + _compareFFV, runningfwVer, fw_query.fw_info.running_branch_ver); _imageVers.push_back(imgrv); } for (i = 0; i < fw_query.fw_info.roms_info.num_of_exp_rom; i++) { ImgVersion imgVer; const char* tpc = _devFwOps->expRomType2Str(fw_query.fw_info.roms_info.rom_info[i].exp_rom_product_id); if (tpc == NULL) { // imgVer.setExpansionRomtoUnknown(); tpc = "UNKNOWN_ROM"; } int sz = fw_query.fw_info.roms_info.rom_info[i].exp_rom_num_ver_fields; imgVer.setVersion(tpc, sz, fw_query.fw_info.roms_info.rom_info[i].exp_rom_ver); _imageVers.push_back(imgVer); } _productVer = fw_query.fw_info.product_ver; _psid = fw_query.fw_info.psid; _querySuccess = 1; res = 0; clean_up: _devFwOps->FwCleanUp(); delete _devFwOps; _devFwOps = NULL; return res; } #if !defined(__WIN__) && !defined(__FreeBSD__) static int readSysFs(dev_info* devinfo, fw_info_t* fw_query) { int res = -1; char path[256] = {0}; char buf[40] = {0}; DIR* d; struct dirent* dir; int v0, v1, v2, v20, v21; snprintf(path, sizeof(path) - 1, "/sys/bus/pci/devices/%04x:%02x:%02x.%x/infiniband", devinfo->pci.domain, devinfo->pci.bus, devinfo->pci.dev, devinfo->pci.func); d = opendir(path); if (d == NULL) { return -1; } while ((dir = readdir(d)) != NULL) { string fl = dir->d_name; if (fl == "." || fl == "..") { continue; } string fpath = path; fpath += "/"; fpath += fl; fpath += "/"; string file = fpath; file += "fw_ver"; FILE* f = fopen(file.c_str(), "r"); if (f == NULL) { continue; } if (fgets(buf, 32, f)) { if (buf[strlen(buf) - 1] == '\n') { buf[strlen(buf) - 1] = 0; } int tmp = sscanf(buf, "%d.%d.%d", &v0, &v1, &v2); fw_query->fw_info.fw_ver[0] = v0; fw_query->fw_info.fw_ver[1] = v1; fw_query->fw_info.fw_ver[2] = v2; v20 = v2 / 100; v21 = v2 % 100; (void)tmp; snprintf(fw_query->fw_info.product_ver, sizeof(fw_query->fw_info.product_ver) - 1, "%02d.%02d.%02d.%02d", v0 % 100, v1 % 100, v20 % 100, v21 % 100); } fclose(f); file = fpath; file += "board_id"; f = fopen(file.c_str(), "r"); if (f == NULL) { continue; } if (fgets(buf, 32, f)) { if (buf[strlen(buf) - 1] == '\n') { buf[strlen(buf) - 1] = 0; } strcpy(fw_query->fw_info.psid, buf); } fclose(f); res = 0; break; } closedir(d); return res; } static int getEthtoolInfo(dev_info* devinfo, fw_info_t* fw_query) { int sock; struct ifreq ifr; struct ethtool_drvinfo edata; int rc; int res = -1; char path[256] = {0}; DIR* d; struct dirent* dir; int v0, v1, v2, v20, v21; snprintf(path, sizeof(path) - 1, "/sys/bus/pci/devices/%04x:%02x:%02x.%x/net", devinfo->pci.domain, devinfo->pci.bus, devinfo->pci.dev, devinfo->pci.func); d = opendir(path); if (d == NULL) { return -1; } sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP); if (sock < 0) { closedir(d); return -1; } while ((dir = readdir(d)) != NULL) { string fl = dir->d_name; if (fl == "." || fl == "..") { continue; } strncpy(ifr.ifr_name, fl.c_str(), sizeof(ifr.ifr_name) - 1); // the rest of dest will be filled with zeros ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0'; ifr.ifr_data = &edata; edata.cmd = ETHTOOL_GDRVINFO; rc = ioctl(sock, SIOCETHTOOL, &ifr); if (rc < 0) { continue; } int tmp = sscanf(edata.fw_version, "%d.%d.%d", &v0, &v1, &v2); fw_query->fw_info.fw_ver[0] = v0; fw_query->fw_info.fw_ver[1] = v1; fw_query->fw_info.fw_ver[2] = v2; v20 = v2 / 100; v21 = v2 % 100; (void)tmp; snprintf(fw_query->fw_info.product_ver, sizeof(fw_query->fw_info.product_ver) - 1, "%02d.%02d.%02d.%02d", v0 % 100, v1 % 100, v20 % 100, v21 % 100); fw_query->fw_info.psid[0] = '\0'; res = 0; break; } closedir(d); close(sock); return res; } #endif #if !defined(__WIN__) int MlnxDev::query() { int res = -1; int i; int rc; char buf[32] = {0}; (void)buf; ImgVersion imgv; u_int16_t fwVer[4]; fw_info_t fw_query; int versionFields = 3; /*TODO: set variable length*/ memset(&fw_query, 0, sizeof(fw_query)); if (geteuid() == 0) { return queryFwops(); } else { _errMsg = "User is Not Root"; _log += _errMsg; rc = -1; } if (rc && (_init_type == INIT_DEVINFO)) { #if !defined(__FreeBSD__) rc = readSysFs(_devinfo, &fw_query); if (rc) { rc = getEthtoolInfo(_devinfo, &fw_query); if (rc) { goto clean_up; } snprintf(buf, sizeof(buf) - 1, "%04x:%04x:%04x:%04x", _devinfo->pci.vend_id, _devinfo->pci.dev_id, _devinfo->pci.subsys_vend_id, _devinfo->pci.subsys_id); _boardTypeId = buf; } #else goto clean_up; #endif } else { return rc; } if (!_compareFFV) { for (i = 0; i < versionFields; i++) { fwVer[i] = fw_query.fw_info.fw_ver[i]; } } else { fwVer[0] = fw_query.fw_info.fw_ver[0]; fwVer[1] = fw_query.fw_info.fw_ver[1]; fwVer[2] = fw_query.fw_info.fw_ver[2] / 100; fwVer[3] = fw_query.fw_info.fw_ver[2] % 100; } imgv.setVersion("FW", versionFields + _compareFFV, fwVer, fw_query.fw_info.branch_ver); _imageVers.push_back(imgv); _productVer = fw_query.fw_info.product_ver; _psid = fw_query.fw_info.psid; _querySuccess = 1; res = 0; clean_up: return res; } #else //__WIN__ int MlnxDev::query() { return queryFwops(); } #endif //__WIN__ string MlnxDev::getDevDisplayName(bool pci_if_possible) { char tmpb[20] = {0}; string devname = ""; if (_init_type == INIT_DEVINFO) { if (_devinfo->type == MDEVS_TAVOR_CR) { snprintf(tmpb, sizeof(tmpb) - 1, "%04x:%02x:%02x.%x", _devinfo->pci.domain, _devinfo->pci.bus, _devinfo->pci.dev, _devinfo->pci.func); devname = tmpb; //_devinfo->pci.conf_dev; } else { devname = _devinfo->dev_name; } if (pci_if_possible) { return devname; } #ifndef ONLY_PCI_FORMAT devname = _devinfo->dev_name; #endif } else if (_init_type == INIT_DEVNAME) { devname = _devname; } else { fprintf(stderr, "-E- mlnx_dev.cpp: unexpected value for _init_type: %d\n", _init_type); } return devname; } string MlnxDev::getDeviceTypeStr() { return _deviceTypeStr; } dm_dev_id_t MlnxDev::getDeviceType() { return _deviceType; } string MlnxDev::getDevName() { string devname; if (_init_type == INIT_DEVINFO) { devname = _devinfo->dev_name; } else if (_init_type == INIT_DEVNAME) { devname = _devname; } else { devname = "UNKNOWN"; fprintf(stderr, "-E- mlnx_dev.cpp: unexpected value for _init_type: %d\n", _init_type); } return devname; } string MlnxDev::getPsid() { return _psid; } int MlnxDev::getImageIndex(string type) { int idx = -1; for (int i = 0; i < (int)_imageVers.size(); i++) { if (!_imageVers[i].getTypeStr().compare(type)) { idx = i; } } return idx; } string MlnxDev::getFWVersion(bool show_type, bool use_default_ffv) { string st; int idx = getImageIndex("FW"); if (idx == -1) { return st; } if (use_default_ffv) { st = _imageVers[idx].getPrintableVersion(_compareFFV, show_type); } else { st = _imageVers[idx].getPrintableVersion(0, show_type); } return st; } dev_info* MlnxDev::getDevInfo() { return _devinfo; } string MlnxDev::getDescription() { return _description; } string MlnxDev::getPartNumber() { return _partNumber; } bool MlnxDev::checkExistence(vector& devs) { for (vector::iterator it = devs.begin(); it != devs.end(); it++) { if (this->equals(*it) == true) { return true; } } return false; } bool MlnxDev::equals(MlnxDev* dev) { string devUinqueId = dev->getUniqueId(); if (_uniqueId != "NA" && devUinqueId != "NA") { if (_uniqueId == devUinqueId) { return true; } } return false; } int MlnxDev::LockDevice(FwOperations* fwOps) { #ifdef __WIN__ // relevant only on devices if (fwOps->FwType() == FIT_FS3 || fwOps->FwType() == FIT_FS4 || fwOps->FwType() == FIT_FSCTRL) { mfile* mFile = fwOps->getMfileObj(); if (m_ToolsSync.init(mFile) != TOOLS_SYNC_OK) { printf("-E- Other tool is accessing the device! Please try again later.\n"); return -1; } } #else (void)fwOps; #endif return 0; } int MlnxDev::UnlockDevice(FwOperations* fwOps) { #ifdef __WIN__ // relevant only on devices if (fwOps->FwType() == FIT_FS3 || fwOps->FwType() == FIT_FS4 || fwOps->FwType() == FIT_FSCTRL) { if (m_ToolsSync.close() != NAMED_SYNC_OK) { printf("Mlxfwmanger: Prevention cannot unlock device.\n"); return -1; } } #else (void)fwOps; #endif return 0; } mstflint-4.26.0/mlxfwupdate/mlxfwmanager.h0000644000175000017500000002211714522641732021107 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "mlnx_dev.h" #include "server_request.h" #include "cmd_line_parser.h" #include "cmd_line_params.h" #include "image_access.h" #include "psid_lookup_db.h" #include "psid_query_item.h" #include "output_fmts.h" #include "mlxfwmanager_common.h" #include "menu.h" FILE* FLog = NULL; FILE* FOut = stdout; FILE* FErr = stderr; extern string toolName; #define print_out(...) \ do \ { \ if (!formatted_output) \ { \ fprintf(FOut, __VA_ARGS__); \ fflush(FOut); \ } \ if (FLog != NULL) \ { \ fprintf(FLog, __VA_ARGS__); \ } \ } while (0) #define print_err(...) \ do \ { \ if (!formatted_output) \ { \ fprintf(FErr, __VA_ARGS__); \ fflush(FErr); \ } \ if (FLog != NULL) \ { \ fprintf(FLog, __VA_ARGS__); \ } \ } while (0) #define print_out_xml(...) \ do \ { \ fprintf(FOut, __VA_ARGS__); \ fflush(FOut); \ if (FLog != NULL) \ { \ fprintf(FLog, __VA_ARGS__); \ } \ } while (0) int formatted_output = 0; using namespace std; typedef struct { string mfa_path; bool path_is_file; bool display_file_names; string exe_path; string adjuster_path; string http_server; string http_proxy; string psid; mlxFWMSetupType::T setupType; } config_t; int mainEntry(int argc, char* argv[]); string getline(); // void displayFilesToBeDownloaded(filesOPtions filterOPtions, CmdLineParams cmd_params); int displayReleaseNoteFiles(const filesOPtions& filterOPtions, const CmdLineParams& cmd_params); void displayReleaseNoteMFAs(map psidUpdateInfo, vector devs, int deviceIndex); void display_file_listing(vector& items, string psid, bool show_titles); int getLocalDevices(dev_info** devs); void getUniquePsidList(vector& devs, vector& psid_list, vector& dev_types_list, vector& fw_version_list); void getUniqueMFAList(vector& devs, map& psidUpdateInfo, int force_update, vector& mfa_list, vector& mfa_base_name_list); int queryMFAs(ServerRequest* srq, string& mfa_path, vector& psid_list, vector& dev_types_list, map& psidUpdateInfo, int online_update, string& errorMsg, vector& fw_version_list); int download(ServerRequest* srq, vector& url, vector& fileNames, vector& os, string path, bool show_location = true); int checkAndDisplayDeviceQuery1D(vector& devs, map& psidUpdateInfo, PsidLookupDB& psidLookupDB, int update_query_, int img_path_provided, int force_update, bool is_query, bool is_query_xml, string& xml_query, string& errorMsg, CmdLineParams& cmd_params); void printDeviceInfoQuery(int dev_index, string devname, string deviceType, string pn, string description, string statusStr, vector& devs, string ver, string availVer, map expRomTypes, map devRomTypeIndex, map availRomTypeIndex, map& psidUpdateInfo, bool multiple_images_found); string generateQueryXML(int dev_index, string devname, string deviceType, string pn, string description, string statusStr, vector& devs, string ver, string availVer, map expRomTypes, map devRomTypeIndex, map availRomTypeIndex, map& psidUpdateInfo, bool multiple_images_found); int prompt(const char* str, int yes_no_); FILE* createOutFile(string& fileName, bool fileSpecified); int progressCB_nodisplay(int completion); int progressCB_display(int completion); int advProgressFunc_display(int completion, const char* stage, prog_t type, int* unknownProgress); bool checkCmdParams(CmdLineParams& cmd_params, config_t& config); bool initConfig(config_t& config, char* argv[], CmdLineParams& cmd_params); bool getIniParams(config_t& config); string adjustRelPath(string path, string adjuster); int isDirectory(string path); int isFile(string path); int list_files_content(config_t& config); int extract_all(CmdLineParams& cmd_params, config_t& config, ServerRequest* srq); int extract_image(CmdLineParams& cmd_params, config_t& config, ServerRequest* srq, bool useExtractDir = false); int CalcFileCrc(char* fileName); void TerminationHandler(int signum); void initHandler(); void replaceStringInPlace(string& subject, const string& search, const string& replace); void fixXmlString(string& stringToFix); bool isServerRequestorRequired(CmdLineParams& cmd_params); int check_valid_os_type(CmdLineParams& cmd_params, bool* os_valid); int handleGetDownloadOptionsRequest(ServerRequest* srq, CmdLineParams& cmd_params); int handleDownloadRequest(ServerRequest* srq, CmdLineParams& cmd_params, config_t config); int handleOnlinePsidsQuery(ServerRequest* srq, CmdLineParams& cmd_params, config_t config); int handleOnlinePsidsQueryXml(ServerRequest* srq, CmdLineParams& cmd_params, config_t config); void filterFiles(vector files, vector& filtered_files, int file_type, int os, int family); int generateProductionName(string& targetFile, PsidQueryItem ri); int abort_request = 0; int CompareFFV = 0; bool IS_OKAY_To_INTERRUPT = false; mstflint-4.26.0/mlxfwupdate/mlnx_dev.h0000644000175000017500000001175714522641732020243 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2006 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __MLNX_DEV_H__ #define __MLNX_DEV_H__ #include #include #include #include #include "mlxfwmanager_common.h" #include "mlxconfig/mlxcfg_commander.h" #ifdef __WIN__ #include "ToolsSyncDefs.h" #include "ToolsSync.h" #endif #define MTCR_EXPORT #include using namespace std; #define MLNX_ERR_BUFF_SIZE 1024 class MlnxDev { public: MlnxDev(dev_info* devinfo, int compare_ffv); MlnxDev(const char* devname, int compare_ffv); ~MlnxDev(); int query(); int preBurn(string mfa_file, f_prog_func prog_cb, bool burnFailsafe, bool& isTimeConsumingFixesNeeded, vector& questions, f_prog_func_adv stage_prog = (f_prog_func_adv)NULL); int burn(bool&); bool clearSemaphore(); int isBurnSuccess(); int isQuerySuccess(); int compareFWVer(const ImgVersion& ver); string getLastErrMsg(); string getLog(); string getDevDisplayName(bool pci_if_possible = false); string getDevName(); string getPsid(); string getFWVersion(bool show_type = true, bool use_default_ffv = true); string getDescription(); string getPartNumber(); string getDeviceTypeStr(); dm_dev_id_t getDeviceType(); string getBoardTypeId(); dev_info* getDevInfo(); void patchPsidInfo(string psid); void setDevToNeedUpdate(); bool doesDevNeedUpdate(); void setNoFwCtrl(); void setMccSupport(bool val = true) { _mccSupport = val; }; vector _imageVers; inline bool isAlignmentNeeded(); inline void setShifting8MBInBurnParams(bool v) { _burnParams.shift8MBIfNeeded = v; } bool checkExistence(vector& devs); string getUniqueId() { return _uniqueId; }; public: string guidPortOne; string guidPortTwo; string macPortOne; string macPortTwo; typedef enum { PORT_NA, PORT_IB, PORT_ETH } port_type_t; port_type_t portOneType; port_type_t portTwoType; bool isOnlyBase; private: bool InitDevFWParams(FwOperations::fw_ops_params_t& devFwParams); void setDeviceType(void); void setGuidMac(fw_info_t& fw_query); void _MlnxDevInit(int compare_ffv); int getImageIndex(string type); int queryFwops(); bool OpenDev(); bool openImg(u_int32_t* fileBuffer, u_int32_t bufferSize); port_type_t findPortType(int port); void initUniqueId(); bool equals(MlnxDev* dev); int LockDevice(FwOperations* fwOps); int UnlockDevice(FwOperations* fwOps); private: typedef enum { INIT_DEVINFO, INIT_DEVNAME } init_type_t; init_type_t _init_type; dev_info* _devinfo; string _devname; int _querySuccess; int _burnSuccess; string _psid; string _productVer; string _log; string _errMsg; string _boardTypeId; string _uniqueId; FwOperations* _devFwOps; FwOperations* _imgFwOps; FwOperations::fw_ops_params_t _devFwParams; FwOperations::fw_ops_params_t _imgFwParams; FwOperations::ExtBurnParams _burnParams; bool _imageEncrypted; bool _deviceEncrypted; Commander* _commander; char _errBuff[MLNX_ERR_BUFF_SIZE]; int _compareFFV; int _ExpRomExists; bool _needsUpdate; bool _noFwCtrl; bool _mccSupport; string _description; string _partNumber; string _deviceTypeStr; dm_dev_id_t _deviceType; bool _preBurnInit; int _unknowProgress; #ifdef __WIN__ ToolsSync m_ToolsSync; #endif }; #endif mstflint-4.26.0/mlxfwupdate/Makefile.in0000644000175000017500000016577714522641737020344 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstfwmanager$(EXEEXT) @ENABLE_OPENSSL_TRUE@am__append_1 = $(top_builddir)/mlxsign_lib/libmlxsign.la @ENABLE_OPENSSL_TRUE@am__append_2 = -lcrypto -lssl @ENABLE_CS_TRUE@am__append_3 = $(top_builddir)/tools_crypto/libtools_crypto.a @ENABLE_CS_TRUE@am__append_4 = -lcrypto @ENABLE_INBAND_TRUE@am__append_5 = $(top_builddir)/mad_ifc/libmad_ifc.la @ENABLE_DPA_TRUE@am__append_6 = -DENABLE_DPA @ENABLE_DPA_TRUE@am__append_7 = $(top_builddir)/mlxdpa/libmstdpa.a subdir = mlxfwupdate DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(dist_doc_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(docdir)" PROGRAMS = $(bin_PROGRAMS) am_mstfwmanager_OBJECTS = mstfwmanager-cmd_line_params.$(OBJEXT) \ mstfwmanager-cmd_line_parser.$(OBJEXT) \ mstfwmanager-fw_version_old_clp.$(OBJEXT) \ mstfwmanager-fw_version_with_sub_build.$(OBJEXT) \ mstfwmanager-image_access.$(OBJEXT) \ mstfwmanager-img_version.$(OBJEXT) mstfwmanager-menu.$(OBJEXT) \ mstfwmanager-mlnx_dev.$(OBJEXT) \ mstfwmanager-mlxfwmanager.$(OBJEXT) \ mstfwmanager-mlxfwmanager_common.$(OBJEXT) \ mstfwmanager-output_fmts.$(OBJEXT) \ mstfwmanager-psid_lookup_db.$(OBJEXT) \ mstfwmanager-psid_query_item.$(OBJEXT) \ mstfwmanager-server_request.$(OBJEXT) mstfwmanager_OBJECTS = $(am_mstfwmanager_OBJECTS) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/mvpd/libmvpd.la \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/pldmlib/libpldm.la \ $(top_builddir)/mlxconfig/libmlxcfg.la \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) $(am__append_1) \ $(am__append_3) $(am__append_5) $(am__append_7) am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstfwmanager_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(mstfwmanager_CXXFLAGS) \ $(CXXFLAGS) $(mstfwmanager_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(mstfwmanager_SOURCES) DIST_SOURCES = $(mstfwmanager_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } DATA = $(dist_doc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = $(INSTALL_BASEDIR)/etc/mstflint dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_doc_DATA = certificate/ca-bundle.crt AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/cmdparser \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/libmfa \ -I$(top_srcdir)/mflash \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxfwops/lib \ -I$(top_srcdir)/pldmlib \ -I$(CURL_INC_DIR) mstfwmanager_CXXFLAGS = -g -MP -MD -Wall -W -DMSTFLINT \ $(INIPARSER_CFLAGS) $(JSON_CFLAGS) -DUSE_XML -DLIBXML_STATIC \ -DUSE_CURL -DCURL_STATICLIB $(am__append_6) mstfwmanager_SOURCES = \ cmd_line_params.cpp \ cmd_line_params.h \ cmd_line_parser.cpp \ cmd_line_parser.h \ err_msgs.h \ fw_version_old_clp.cpp \ fw_version_old_clp.h \ fw_version_with_sub_build.cpp \ fw_version_with_sub_build.h \ image_access.cpp \ image_access.h \ img_version.cpp \ img_version.h \ menu.cpp \ menu.h \ mlnx_dev.cpp \ mlnx_dev.h \ mlxfwmanager.cpp \ mlxfwmanager.h \ mlxfwmanager_common.cpp \ mlxfwmanager_common.h \ output_fmts.cpp \ output_fmts.h \ psid_lookup_db.cpp \ psid_lookup_db.h \ psid_query_item.cpp \ psid_query_item.h \ server_request.cpp \ server_request.h mstfwmanager_DEPENDENCIES = $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/mvpd/libmvpd.la \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/pldmlib/libpldm.la \ $(top_builddir)/mlxconfig/libmlxcfg.la \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la $(JSON_LIBS) \ $(INIPARSER_LIBS) $(MUPARSER_LIBS) $(SQLITE_LIBS) \ $(am__append_1) $(am__append_3) $(am__append_5) \ $(am__append_7) # XML libs # curl libs LDADD_mstfwmanager = -lm -lz ${LDL} -lxml2 -lcurl -lssl -lcrypto -lrt \ $(am__append_2) $(am__append_4) mstfwmanager_LDADD = $(mstfwmanager_DEPENDENCIES) $(LDADD_mstfwmanager) mstfwmanager_LDFLAGS = -static all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxfwupdate/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxfwupdate/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstfwmanager$(EXEEXT): $(mstfwmanager_OBJECTS) $(mstfwmanager_DEPENDENCIES) $(EXTRA_mstfwmanager_DEPENDENCIES) @rm -f mstfwmanager$(EXEEXT) $(AM_V_CXXLD)$(mstfwmanager_LINK) $(mstfwmanager_OBJECTS) $(mstfwmanager_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-cmd_line_params.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-cmd_line_parser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-fw_version_old_clp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-image_access.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-img_version.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-menu.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-mlnx_dev.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-mlxfwmanager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-mlxfwmanager_common.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-output_fmts.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-psid_lookup_db.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-psid_query_item.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstfwmanager-server_request.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mstfwmanager-cmd_line_params.o: cmd_line_params.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-cmd_line_params.o -MD -MP -MF $(DEPDIR)/mstfwmanager-cmd_line_params.Tpo -c -o mstfwmanager-cmd_line_params.o `test -f 'cmd_line_params.cpp' || echo '$(srcdir)/'`cmd_line_params.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-cmd_line_params.Tpo $(DEPDIR)/mstfwmanager-cmd_line_params.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cmd_line_params.cpp' object='mstfwmanager-cmd_line_params.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-cmd_line_params.o `test -f 'cmd_line_params.cpp' || echo '$(srcdir)/'`cmd_line_params.cpp mstfwmanager-cmd_line_params.obj: cmd_line_params.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-cmd_line_params.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-cmd_line_params.Tpo -c -o mstfwmanager-cmd_line_params.obj `if test -f 'cmd_line_params.cpp'; then $(CYGPATH_W) 'cmd_line_params.cpp'; else $(CYGPATH_W) '$(srcdir)/cmd_line_params.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-cmd_line_params.Tpo $(DEPDIR)/mstfwmanager-cmd_line_params.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cmd_line_params.cpp' object='mstfwmanager-cmd_line_params.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-cmd_line_params.obj `if test -f 'cmd_line_params.cpp'; then $(CYGPATH_W) 'cmd_line_params.cpp'; else $(CYGPATH_W) '$(srcdir)/cmd_line_params.cpp'; fi` mstfwmanager-cmd_line_parser.o: cmd_line_parser.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-cmd_line_parser.o -MD -MP -MF $(DEPDIR)/mstfwmanager-cmd_line_parser.Tpo -c -o mstfwmanager-cmd_line_parser.o `test -f 'cmd_line_parser.cpp' || echo '$(srcdir)/'`cmd_line_parser.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-cmd_line_parser.Tpo $(DEPDIR)/mstfwmanager-cmd_line_parser.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cmd_line_parser.cpp' object='mstfwmanager-cmd_line_parser.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-cmd_line_parser.o `test -f 'cmd_line_parser.cpp' || echo '$(srcdir)/'`cmd_line_parser.cpp mstfwmanager-cmd_line_parser.obj: cmd_line_parser.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-cmd_line_parser.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-cmd_line_parser.Tpo -c -o mstfwmanager-cmd_line_parser.obj `if test -f 'cmd_line_parser.cpp'; then $(CYGPATH_W) 'cmd_line_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/cmd_line_parser.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-cmd_line_parser.Tpo $(DEPDIR)/mstfwmanager-cmd_line_parser.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cmd_line_parser.cpp' object='mstfwmanager-cmd_line_parser.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-cmd_line_parser.obj `if test -f 'cmd_line_parser.cpp'; then $(CYGPATH_W) 'cmd_line_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/cmd_line_parser.cpp'; fi` mstfwmanager-fw_version_old_clp.o: fw_version_old_clp.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-fw_version_old_clp.o -MD -MP -MF $(DEPDIR)/mstfwmanager-fw_version_old_clp.Tpo -c -o mstfwmanager-fw_version_old_clp.o `test -f 'fw_version_old_clp.cpp' || echo '$(srcdir)/'`fw_version_old_clp.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-fw_version_old_clp.Tpo $(DEPDIR)/mstfwmanager-fw_version_old_clp.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='fw_version_old_clp.cpp' object='mstfwmanager-fw_version_old_clp.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-fw_version_old_clp.o `test -f 'fw_version_old_clp.cpp' || echo '$(srcdir)/'`fw_version_old_clp.cpp mstfwmanager-fw_version_old_clp.obj: fw_version_old_clp.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-fw_version_old_clp.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-fw_version_old_clp.Tpo -c -o mstfwmanager-fw_version_old_clp.obj `if test -f 'fw_version_old_clp.cpp'; then $(CYGPATH_W) 'fw_version_old_clp.cpp'; else $(CYGPATH_W) '$(srcdir)/fw_version_old_clp.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-fw_version_old_clp.Tpo $(DEPDIR)/mstfwmanager-fw_version_old_clp.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='fw_version_old_clp.cpp' object='mstfwmanager-fw_version_old_clp.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-fw_version_old_clp.obj `if test -f 'fw_version_old_clp.cpp'; then $(CYGPATH_W) 'fw_version_old_clp.cpp'; else $(CYGPATH_W) '$(srcdir)/fw_version_old_clp.cpp'; fi` mstfwmanager-fw_version_with_sub_build.o: fw_version_with_sub_build.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-fw_version_with_sub_build.o -MD -MP -MF $(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Tpo -c -o mstfwmanager-fw_version_with_sub_build.o `test -f 'fw_version_with_sub_build.cpp' || echo '$(srcdir)/'`fw_version_with_sub_build.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Tpo $(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='fw_version_with_sub_build.cpp' object='mstfwmanager-fw_version_with_sub_build.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-fw_version_with_sub_build.o `test -f 'fw_version_with_sub_build.cpp' || echo '$(srcdir)/'`fw_version_with_sub_build.cpp mstfwmanager-fw_version_with_sub_build.obj: fw_version_with_sub_build.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-fw_version_with_sub_build.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Tpo -c -o mstfwmanager-fw_version_with_sub_build.obj `if test -f 'fw_version_with_sub_build.cpp'; then $(CYGPATH_W) 'fw_version_with_sub_build.cpp'; else $(CYGPATH_W) '$(srcdir)/fw_version_with_sub_build.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Tpo $(DEPDIR)/mstfwmanager-fw_version_with_sub_build.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='fw_version_with_sub_build.cpp' object='mstfwmanager-fw_version_with_sub_build.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-fw_version_with_sub_build.obj `if test -f 'fw_version_with_sub_build.cpp'; then $(CYGPATH_W) 'fw_version_with_sub_build.cpp'; else $(CYGPATH_W) '$(srcdir)/fw_version_with_sub_build.cpp'; fi` mstfwmanager-image_access.o: image_access.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-image_access.o -MD -MP -MF $(DEPDIR)/mstfwmanager-image_access.Tpo -c -o mstfwmanager-image_access.o `test -f 'image_access.cpp' || echo '$(srcdir)/'`image_access.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-image_access.Tpo $(DEPDIR)/mstfwmanager-image_access.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='image_access.cpp' object='mstfwmanager-image_access.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-image_access.o `test -f 'image_access.cpp' || echo '$(srcdir)/'`image_access.cpp mstfwmanager-image_access.obj: image_access.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-image_access.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-image_access.Tpo -c -o mstfwmanager-image_access.obj `if test -f 'image_access.cpp'; then $(CYGPATH_W) 'image_access.cpp'; else $(CYGPATH_W) '$(srcdir)/image_access.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-image_access.Tpo $(DEPDIR)/mstfwmanager-image_access.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='image_access.cpp' object='mstfwmanager-image_access.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-image_access.obj `if test -f 'image_access.cpp'; then $(CYGPATH_W) 'image_access.cpp'; else $(CYGPATH_W) '$(srcdir)/image_access.cpp'; fi` mstfwmanager-img_version.o: img_version.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-img_version.o -MD -MP -MF $(DEPDIR)/mstfwmanager-img_version.Tpo -c -o mstfwmanager-img_version.o `test -f 'img_version.cpp' || echo '$(srcdir)/'`img_version.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-img_version.Tpo $(DEPDIR)/mstfwmanager-img_version.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='img_version.cpp' object='mstfwmanager-img_version.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-img_version.o `test -f 'img_version.cpp' || echo '$(srcdir)/'`img_version.cpp mstfwmanager-img_version.obj: img_version.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-img_version.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-img_version.Tpo -c -o mstfwmanager-img_version.obj `if test -f 'img_version.cpp'; then $(CYGPATH_W) 'img_version.cpp'; else $(CYGPATH_W) '$(srcdir)/img_version.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-img_version.Tpo $(DEPDIR)/mstfwmanager-img_version.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='img_version.cpp' object='mstfwmanager-img_version.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-img_version.obj `if test -f 'img_version.cpp'; then $(CYGPATH_W) 'img_version.cpp'; else $(CYGPATH_W) '$(srcdir)/img_version.cpp'; fi` mstfwmanager-menu.o: menu.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-menu.o -MD -MP -MF $(DEPDIR)/mstfwmanager-menu.Tpo -c -o mstfwmanager-menu.o `test -f 'menu.cpp' || echo '$(srcdir)/'`menu.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-menu.Tpo $(DEPDIR)/mstfwmanager-menu.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='menu.cpp' object='mstfwmanager-menu.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-menu.o `test -f 'menu.cpp' || echo '$(srcdir)/'`menu.cpp mstfwmanager-menu.obj: menu.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-menu.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-menu.Tpo -c -o mstfwmanager-menu.obj `if test -f 'menu.cpp'; then $(CYGPATH_W) 'menu.cpp'; else $(CYGPATH_W) '$(srcdir)/menu.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-menu.Tpo $(DEPDIR)/mstfwmanager-menu.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='menu.cpp' object='mstfwmanager-menu.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-menu.obj `if test -f 'menu.cpp'; then $(CYGPATH_W) 'menu.cpp'; else $(CYGPATH_W) '$(srcdir)/menu.cpp'; fi` mstfwmanager-mlnx_dev.o: mlnx_dev.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-mlnx_dev.o -MD -MP -MF $(DEPDIR)/mstfwmanager-mlnx_dev.Tpo -c -o mstfwmanager-mlnx_dev.o `test -f 'mlnx_dev.cpp' || echo '$(srcdir)/'`mlnx_dev.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-mlnx_dev.Tpo $(DEPDIR)/mstfwmanager-mlnx_dev.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlnx_dev.cpp' object='mstfwmanager-mlnx_dev.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-mlnx_dev.o `test -f 'mlnx_dev.cpp' || echo '$(srcdir)/'`mlnx_dev.cpp mstfwmanager-mlnx_dev.obj: mlnx_dev.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-mlnx_dev.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-mlnx_dev.Tpo -c -o mstfwmanager-mlnx_dev.obj `if test -f 'mlnx_dev.cpp'; then $(CYGPATH_W) 'mlnx_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/mlnx_dev.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-mlnx_dev.Tpo $(DEPDIR)/mstfwmanager-mlnx_dev.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlnx_dev.cpp' object='mstfwmanager-mlnx_dev.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-mlnx_dev.obj `if test -f 'mlnx_dev.cpp'; then $(CYGPATH_W) 'mlnx_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/mlnx_dev.cpp'; fi` mstfwmanager-mlxfwmanager.o: mlxfwmanager.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-mlxfwmanager.o -MD -MP -MF $(DEPDIR)/mstfwmanager-mlxfwmanager.Tpo -c -o mstfwmanager-mlxfwmanager.o `test -f 'mlxfwmanager.cpp' || echo '$(srcdir)/'`mlxfwmanager.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-mlxfwmanager.Tpo $(DEPDIR)/mstfwmanager-mlxfwmanager.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxfwmanager.cpp' object='mstfwmanager-mlxfwmanager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-mlxfwmanager.o `test -f 'mlxfwmanager.cpp' || echo '$(srcdir)/'`mlxfwmanager.cpp mstfwmanager-mlxfwmanager.obj: mlxfwmanager.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-mlxfwmanager.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-mlxfwmanager.Tpo -c -o mstfwmanager-mlxfwmanager.obj `if test -f 'mlxfwmanager.cpp'; then $(CYGPATH_W) 'mlxfwmanager.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxfwmanager.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-mlxfwmanager.Tpo $(DEPDIR)/mstfwmanager-mlxfwmanager.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxfwmanager.cpp' object='mstfwmanager-mlxfwmanager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-mlxfwmanager.obj `if test -f 'mlxfwmanager.cpp'; then $(CYGPATH_W) 'mlxfwmanager.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxfwmanager.cpp'; fi` mstfwmanager-mlxfwmanager_common.o: mlxfwmanager_common.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-mlxfwmanager_common.o -MD -MP -MF $(DEPDIR)/mstfwmanager-mlxfwmanager_common.Tpo -c -o mstfwmanager-mlxfwmanager_common.o `test -f 'mlxfwmanager_common.cpp' || echo '$(srcdir)/'`mlxfwmanager_common.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-mlxfwmanager_common.Tpo $(DEPDIR)/mstfwmanager-mlxfwmanager_common.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxfwmanager_common.cpp' object='mstfwmanager-mlxfwmanager_common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-mlxfwmanager_common.o `test -f 'mlxfwmanager_common.cpp' || echo '$(srcdir)/'`mlxfwmanager_common.cpp mstfwmanager-mlxfwmanager_common.obj: mlxfwmanager_common.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-mlxfwmanager_common.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-mlxfwmanager_common.Tpo -c -o mstfwmanager-mlxfwmanager_common.obj `if test -f 'mlxfwmanager_common.cpp'; then $(CYGPATH_W) 'mlxfwmanager_common.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxfwmanager_common.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-mlxfwmanager_common.Tpo $(DEPDIR)/mstfwmanager-mlxfwmanager_common.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxfwmanager_common.cpp' object='mstfwmanager-mlxfwmanager_common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-mlxfwmanager_common.obj `if test -f 'mlxfwmanager_common.cpp'; then $(CYGPATH_W) 'mlxfwmanager_common.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxfwmanager_common.cpp'; fi` mstfwmanager-output_fmts.o: output_fmts.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-output_fmts.o -MD -MP -MF $(DEPDIR)/mstfwmanager-output_fmts.Tpo -c -o mstfwmanager-output_fmts.o `test -f 'output_fmts.cpp' || echo '$(srcdir)/'`output_fmts.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-output_fmts.Tpo $(DEPDIR)/mstfwmanager-output_fmts.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='output_fmts.cpp' object='mstfwmanager-output_fmts.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-output_fmts.o `test -f 'output_fmts.cpp' || echo '$(srcdir)/'`output_fmts.cpp mstfwmanager-output_fmts.obj: output_fmts.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-output_fmts.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-output_fmts.Tpo -c -o mstfwmanager-output_fmts.obj `if test -f 'output_fmts.cpp'; then $(CYGPATH_W) 'output_fmts.cpp'; else $(CYGPATH_W) '$(srcdir)/output_fmts.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-output_fmts.Tpo $(DEPDIR)/mstfwmanager-output_fmts.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='output_fmts.cpp' object='mstfwmanager-output_fmts.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-output_fmts.obj `if test -f 'output_fmts.cpp'; then $(CYGPATH_W) 'output_fmts.cpp'; else $(CYGPATH_W) '$(srcdir)/output_fmts.cpp'; fi` mstfwmanager-psid_lookup_db.o: psid_lookup_db.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-psid_lookup_db.o -MD -MP -MF $(DEPDIR)/mstfwmanager-psid_lookup_db.Tpo -c -o mstfwmanager-psid_lookup_db.o `test -f 'psid_lookup_db.cpp' || echo '$(srcdir)/'`psid_lookup_db.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-psid_lookup_db.Tpo $(DEPDIR)/mstfwmanager-psid_lookup_db.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='psid_lookup_db.cpp' object='mstfwmanager-psid_lookup_db.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-psid_lookup_db.o `test -f 'psid_lookup_db.cpp' || echo '$(srcdir)/'`psid_lookup_db.cpp mstfwmanager-psid_lookup_db.obj: psid_lookup_db.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-psid_lookup_db.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-psid_lookup_db.Tpo -c -o mstfwmanager-psid_lookup_db.obj `if test -f 'psid_lookup_db.cpp'; then $(CYGPATH_W) 'psid_lookup_db.cpp'; else $(CYGPATH_W) '$(srcdir)/psid_lookup_db.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-psid_lookup_db.Tpo $(DEPDIR)/mstfwmanager-psid_lookup_db.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='psid_lookup_db.cpp' object='mstfwmanager-psid_lookup_db.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-psid_lookup_db.obj `if test -f 'psid_lookup_db.cpp'; then $(CYGPATH_W) 'psid_lookup_db.cpp'; else $(CYGPATH_W) '$(srcdir)/psid_lookup_db.cpp'; fi` mstfwmanager-psid_query_item.o: psid_query_item.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-psid_query_item.o -MD -MP -MF $(DEPDIR)/mstfwmanager-psid_query_item.Tpo -c -o mstfwmanager-psid_query_item.o `test -f 'psid_query_item.cpp' || echo '$(srcdir)/'`psid_query_item.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-psid_query_item.Tpo $(DEPDIR)/mstfwmanager-psid_query_item.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='psid_query_item.cpp' object='mstfwmanager-psid_query_item.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-psid_query_item.o `test -f 'psid_query_item.cpp' || echo '$(srcdir)/'`psid_query_item.cpp mstfwmanager-psid_query_item.obj: psid_query_item.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-psid_query_item.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-psid_query_item.Tpo -c -o mstfwmanager-psid_query_item.obj `if test -f 'psid_query_item.cpp'; then $(CYGPATH_W) 'psid_query_item.cpp'; else $(CYGPATH_W) '$(srcdir)/psid_query_item.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-psid_query_item.Tpo $(DEPDIR)/mstfwmanager-psid_query_item.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='psid_query_item.cpp' object='mstfwmanager-psid_query_item.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-psid_query_item.obj `if test -f 'psid_query_item.cpp'; then $(CYGPATH_W) 'psid_query_item.cpp'; else $(CYGPATH_W) '$(srcdir)/psid_query_item.cpp'; fi` mstfwmanager-server_request.o: server_request.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-server_request.o -MD -MP -MF $(DEPDIR)/mstfwmanager-server_request.Tpo -c -o mstfwmanager-server_request.o `test -f 'server_request.cpp' || echo '$(srcdir)/'`server_request.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-server_request.Tpo $(DEPDIR)/mstfwmanager-server_request.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='server_request.cpp' object='mstfwmanager-server_request.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-server_request.o `test -f 'server_request.cpp' || echo '$(srcdir)/'`server_request.cpp mstfwmanager-server_request.obj: server_request.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -MT mstfwmanager-server_request.obj -MD -MP -MF $(DEPDIR)/mstfwmanager-server_request.Tpo -c -o mstfwmanager-server_request.obj `if test -f 'server_request.cpp'; then $(CYGPATH_W) 'server_request.cpp'; else $(CYGPATH_W) '$(srcdir)/server_request.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstfwmanager-server_request.Tpo $(DEPDIR)/mstfwmanager-server_request.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='server_request.cpp' object='mstfwmanager-server_request.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstfwmanager_CXXFLAGS) $(CXXFLAGS) -c -o mstfwmanager-server_request.obj `if test -f 'server_request.cpp'; then $(CYGPATH_W) 'server_request.cpp'; else $(CYGPATH_W) '$(srcdir)/server_request.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(DATA) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_docDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_docDATA .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dist_docDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-binPROGRAMS uninstall-dist_docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/man/0000755000175000017500000000000014522641732014456 5ustar tzafrirctzafrircmstflint-4.26.0/man/mstflint.md0000644000175000017500000002517714522641732016654 0ustar tzafrirctzafrirc # NAME mstflint # SYNOPSIS > MstFlint \[OPTIONS\] \ \[Parameters\] > > \[-d|-\-device \\] \[-i|-\-image \\] \[-\-ir\] > \[-\-image\_reactivation\] \[-h|-\-help\] \[-\-hh\] \[-y|-\-yes\] \[-\-no\] > \[-\-guid \\] \[-\-guids \\] \[-\-mac \\] > \[-\-macs \\] \[-\-uid \\] \[-\-blank\_guids\] > \[-\-clear\_semaphore\] \[-\-qq\] \[-\-low\_cpu\] \[-\-flashed\_version\] > \[-\-nofs\] \[-\-allow\_rom\_change\] \[-\-override\_cache\_replacement\] > \[-\-no\_flash\_verify\] \[-\-use\_fw\] \[-s|-\-silent\] \[-\-vsd > \\] \[-\-use\_image\_ps\] \[-\-use\_image\_guids\] > \[-\-use\_image\_rom\] \[-\-use\_dev\_rom\] \[-\-ignore\_dev\_data\] > \[-\-no\_fw\_ctrl\] \[-\-dual\_image\] \[-\-striped\_image\] \[-\-banks > \\] \[-\-log \\] \[-\-flash\_params \ num\_of\_flashes\>\] \[-v|-\-version\] \[-\-private\_key \\] > \[-\-key\_uuid \\] \[-\-private\_key2 \\] > \[-\-hmac\_key \\] \[-\-key\_uuid2 \\] # DESCRIPTION > flint is a FW (firmware) burning and flash memory operations tool for > Mellanox Infiniband HCAs,Ethernet NIC cards, and switch devices. OPTIONS > MstFlint \[OPTIONS\] \ \[Parameters\] - **-d**|-\-device \ : Device flash is connected to. Commands affected: all - **-i**|-\-image \ : Binary image file. Commands affected: burn, verify - **-\-ir** : Commands affected: burn - **-\-image\_reactivation** : Commands affected: burn - **-h**|-\-help : Prints this message and exits - **-\-hh** : Prints extended command help - **-y**|-\-yes : Non interactive mode - assume answer "yes" to all questions. Commands affected: all - **-\-no** : Non interactive mode - assume answer "no" to all questions. Commands affected: all - **-\-guid** \ : GUID base value. 4 GUIDs are automatically assigned to the following values: - guid \-\> node GUID guid+1 -\> port1 guid+2 -\> port2 guid+3 -\> system image GUID. Note: port2 guid will be assigned even for a single port HCA - The HCA ignores this value. Commands affected: burn, sg - **-\-guids** \ : 4 GUIDs must be specified here. The specified GUIDs are assigned to the following fields, respectively: node, port1, port2 and system image GUID. Note: port2 guid must be specified even for a single port HCA - The HCA ignores this value. It can be set to 0x0. Commands affected: burn, sg - **-\-mac** \ : MAC address base value. 2 MACs are automatically assigned to the following values: - mac \-\> port1 - mac+1 \-\> port2 Commands affected: burn, sg - **-\-macs** \ : 2 MACs must be specified here. The specified MACs are assigned to port1, port2, respectively. Commands affected: burn, sg > Note: **-mac**/-macs flags are applicable only for Mellanox > > Technologies ethernet products. - **-\-uid** \ : ConnectIB/SwitchIB only. Derive and set the device UIDs (GUIDs, MACs, WWNs). UIDs are derived from the given base UID according to Mellanox Methodology Commands affected: burn, sg - **-\-blank\_guids** : Burn the image with blank GUIDs and MACs (where applicable). These values can be set later using the "sg" command (see details below). Commands affected: burn - **-\-clear\_semaphore** : Force clear the flash semaphore on the device. No command is allowed when this flag is used. NOTE: May result in system instability or flash corruption if the device or another application is currently using the flash. Exercise caution. - **-\-qq** : Run a quick query. When specified, flint will not perform full image integrity checks during the query operation. This may shorten execution time when running over slow interfaces (e.g., I2C, MTUSB-1). Commands affected: query - **-\-low\_cpu** : When specified, cpu usage will be reduced. Run time might be increased Commands affected: query - **-\-flashed\_version** : When specified, only flashed fw version is fetched Commands affected: query - **-\-nofs** : Burn image in a non failsafe manner. - **-\-allow\_rom\_change** : Allow burning/removing a ROM to/from FW image when product version is present. Use only if you know what you are doing - **-\-override\_cache\_replacement** : On SwitchX/ConnectIB devices: Allow accessing the flash even if the cache replacement mode is enabled. NOTE: This flag is intended for advanced users only. Running in this mode may cause the firmware to hang. - **-\-no\_flash\_verify** : Do not verify each write on the flash. - **-\-use\_fw** : Flash access will be done using FW (ConnectX-3/ConnectX-3Pro only). - **-s**|-\-silent : Do not print burn progress flyer. Commands affected: burn - **-\-vsd** \ : Write this string, of up to 208 characters, to VSD when burn. - **-\-use\_image\_ps** : Burn vsd as appears in the given image - do not keep existing VSD on flash. Commands affected: burn - **-\-use\_image\_guids** : Burn (guids/macs) as appears in the given image. Commands affected: burn - **-\-use\_image\_rom** : Do not save the ROM which exists in the device. Commands affected: burn - **-\-use\_dev\_rom** : Save the ROM which exists in the device. Commands affected: burn - **-\-ignore\_dev\_data** : Do not attempt to take device data sections from device(sections will be taken from the image. FS3 Only). Commands affected: burn - **-\-no\_fw\_ctrl** : Do not attempt to work with the FW Ctrl update commands - **-\-dual\_image** : Make the burn process burn two images on flash (previously default algorithm). Current default failsafe burn process burns a single image (in alternating locations). Commands affected: burn - **-\-striped\_image** : Use this flag to indicate that the given image file is in a "striped image" format. Commands affected: query verify - **-\-banks** \ : Set the number of attached flash devices (banks) - **-\-log** \ : Print the burning status to the specified log file **-\-flash\_params** \ : Use the given parameters to access the flash instead of reading them from the flash. Supported parameters: Type: The type of the flash, such as:M25PXxx, M25Pxx, N25Q0XX, SST25VFxx, W25QxxBV, W25Xxx, W25Qxxx, W25Qxxx, AT25DFxxx, S25FLXXXP, S25FL11xx, MX25L16xxx, MX25Lxxx, S25FLxxx, IS25LPxxx. log2size: The log2 of the flash size.num\_of\_flashes: the number of the flashes connected to the device. - **-v**|-\-version : Version info. - **-\-private\_key** \ : path to PEM formatted private key to be used by the sign command - **-\-key\_uuid** \ : UUID matching the given private key to be used by the sign command - **-\-private\_key2** \ : path to PEM formatted private key to be used by the sign command - **-\-hmac\_key** \ : path to file containing key (For FS4 image only). - **-\-key\_uuid2** \ : UUID matching the given private key to be used by the sign command COMMANDS SUMMARY - burn|b **-ir** : Burn flash. Use "-ir burn" flag to perform image reactivation prior burning. - query|q \[full\] : Query misc. flash/firmware characteristics, use "full" to get more information. - verify|v \[showitoc\] : Verify entire flash, use "showitoc" to see ITOC headers in FS3/FS4 image only. - swreset : SW reset the target switch device.This command is supported only in the In-Band access method. - brom \ : Burn the specified ROM file on the flash. - drom : Remove the ROM section from the flash. - rrom \ : Read the ROM section from the flash. - bb : Burn Block - Burns the given image as is. No checks are done. - sg \[guids\_num=\ step\_size=\\] | \[nocrc\] : Set GUIDs. sv : Set the VSD. ri \ : Read the fw image on the flash. dc \[out-file\] : Dump Configuration: print fw configuration file for the given image. - dh \[out-file\] : Dump Hash: dump the hash if it is integrated in the FW image - set\_key \[key\] : Set/Update the HW access key which is used to enable/disable access to HW. The key can be provided in the command line or interactively typed after the command is given NOTE: The new key is activated only after the device is reset. - hw\_access \ \[key\] : Enable/disable the access to the HW. The key can be provided in the command line or interactively typed after the command is given - hw query : Query HW info and flash attributes. - erase|e \ : Erases sector. - rw \ : Read one dword from flash - ww \ \ : Write one dword to flash - wwne \ \ : Write one dword to flash without sector erase - wbne \ \ \ : Write a data block to flash without sector erase. - wb \ \ : Write a data block to flash. - rb \ \ \[out-file\] : Read a data block from flash - clear\_semaphore : Clear flash semaphore. - qrom : query ROM image. - checksum|cs : perform MD5 checksum on FW. timestamp|ts \ \[timestamp\] \[FW version\] : FW time stamping. cache\_image|ci : cache FW image(Windows only). sign : Sign firmware image file sign\_with\_hmac : Sign image with HMAC set\_public\_keys \[public keys binary file\] : Set Public Keys (For FS3/FS4 image only). set\_forbidden\_versions \[forbidden versions binary file\] : Set Forbidden Versions (For FS3/FS4 image only). - image\_reactivate|ir : Reactivate previous flash image. For FW controlled devices only. RETURN VALUES - 0 : Successful completion. - 1 : An error has occurred. - 7 : For burn command - FW already updated - burn was aborted. # SEE ALSO The full documentation for **mstflint,** is maintained as a Texinfo manual. If the **info** and **mstflint,** programs are properly installed at your site, the command > **info mstflint,** should give you access to the complete manual. mstflint-4.26.0/man/mstfwmanager.md0000644000175000017500000001056514522641732017502 0ustar tzafrirctzafrirc # NAME mstfwmanager # SYNOPSIS > mstfwmanager > > \[-d|-\-dev DeviceName\] \[-h|-\-help\] \[-v|-\-version\] \[-\-query\] > \[-\-query-format Format\] \[-u|-\-update\] \[-i|-\-image-file FileName\] > \[-D|-\-image-dir DirectoryName\] \[-f|-\-force\] \[-\-no\_fw\_ctrl\] > \[-y|-\-yes\] \[-\-no\] \[-\-clear-semaphore\] \[-\-exe-rel-path\] > \[-l|-\-list-content\] \[-\-archive-names\] \[-\-nofs\] \[-\-log\] > \[-L|-\-log-file LogFileName\] \[-\-no-progress\] \[-o|-\-outfile > OutputFileName\] \[-\-online\] \[-\-online-query-psid PSIDs\] \[-\-key > key\] \[-\-download DirectoryName\] \[-\-download-default\] > \[-\-get-download-opt OPT\] \[-\-download-device Device\] > \[-\-download-os OS\] \[-\-download-type Type\] \[-\-ssl-certificate > Certificate\] > # DESCRIPTION > Mellanox Firmware Manager OPTIONS > mstfwmanager - **-d**|-\-dev DeviceName : Perform operation for specified mst device(s). Run 'mst status' command to list the available devices. Multiple devices can be specified delimited by semicolons. A device list containing semicolons must be quoted. - **-h**|-\-help : Show this message and exit - **-v**|-\-version : Show the executable version and exit - **-\-query** : Query device(s) info - **-\-query-format** Format : (Query | Online query) output format, XML | Text - default Text - **-u**|-\-update : Update firmware image(s) on the device(s) - **-i**|-\-image-file FileName : Specified image file to use - **-D**|-\-image-dir DirectoryName : Specified directory instead of default to locate image files - **-f**|-\-force : Force image update - **-\-no\_fw\_ctrl** : Don't use FW Ctrl update - **-y**|-\-yes : Answer is yes in prompts - **-\-no** : Answer is no in prompts - **-\-clear-semaphore** : Force clear the flash semaphore on the device, No command is allowed when this flag is used. NOTE: May result in system instability or flash corruption if the device or another application is currently using the flash. Exercise caution. - **-\-exe-rel-path** : Use paths relative to the location of the executable - **-l**|-\-list-content : List file/Directory content, used with **-\-image-dir** and **-\-image-file** flags - **-\-archive-names** : Display archive names in listing - **-\-nofs** : Burn image in a non failsafe manner - **-\-log** : Create log file - **-L**|-\-log-file LogFileName : Use specified log file - **-\-no-progress** : Do not show progress - **-o**|-\-outfile OutputFileName : Write to specified output file - **-\-online** : Fetch required FW images online from Mellanox server - **-\-online-query-psid** PSIDs : Query FW info, PSID(s) are comma separated - **-\-key** key : Key for custom download/update - **-\-download** DirectoryName : Download files from server to a specified directory - **-\-download-default** : Use Default values for download - **-\-get-download-opt** OPT : Get download options for OS or Device Options are: OS, Device - **-\-download-device** Device : Use '-\-get-download-opt Device' option to view available devices for device specific downloads - **-\-download-os** OS : Only for self\_extractor download: Use '-\-get-download-opt OS' option to view available OS for sfx download - **-\-download-type** Type : MFA | self\_extractor - default All - **-\-ssl-certificate** Certificate : SSL certificate For secure connection # EXAMPLES > 1\. Query specific device or all devices (if no device were supplied) > \>\> mstfwmanager \[-d \\] \[-\-query\] > 2. Burn device with specific image / MFA / images directory > \>\> mstfwmanager -d \ \[-i \ | -D \\] > 3.Update the card's firmware > \>\> mstfwmanager -u > 4. Update the card's firmware from latest version on the web > \>\> mstfwmanager -\-online -u > 5. Download latest FW package from the web > \>\> mstfwmanager -\-download-default -\-download-os Linux\_x64 -\-download-type self\_extractor # SEE ALSO The full documentation for **mstfwmanager** is maintained as a Texinfo manual. If the **info** and **mstfwmanager** programs are properly installed at your site, the command > **info mstfwmanager** should give you access to the complete manual. mstflint-4.26.0/man/mstmread.10000644000175000017500000000027714522641732016362 0ustar tzafrirctzafrirc.TH MSTMREAD "1" "March 2020" "mstflint" "User Commands" .SH NAME mstmread \- Mellanox Read Configuration Register Tool .SH DESCRIPTION mstmread .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstmtserver.md0000644000175000017500000000104514522641732017373 0ustar tzafrirctzafrirc # NAME mstmtserver # SYNOPSIS > mstmtserver \[switches\] # DESCRIPTION ## Switches may be: **-p\[ort\]** \ - Listen to specify port (default is 23108). **-d\[ebug\]** - Print all socket traffic (for debugging only). **-h\[elp\]** - Print help message. **-v\[ersion\]** - Print version. # SEE ALSO The full documentation for **Invalid** is maintained as a Texinfo manual. If the **info** and **Invalid** programs are properly installed at your site, the command > info mstmtserver should give you access to the complete manual. mstflint-4.26.0/man/mstfwtrace.md0000644000175000017500000000733214522641732017164 0ustar tzafrirctzafrirc # NAME mstfwtrace # SYNOPSIS usage: mstfwtrace **-d**|-\-device DEVICE \[options\] # DESCRIPTION ## optional arguments: - **-h**, **-\-help** show this help message and exit - **-v**, **-\-version** Print tool version. # OPTIONS - **-d** DEVICE, **-\-device** DEVICE PCI device name - **-\-tracer\_mode** TRACER\_MODE Tracer mode \[MEM\] - **-\-real\_ts** Print real timestamps in \[hh:mm:ss:nsec\] - **-\-ignore\_old\_events** Ignore collecting old events ## Format: - **-i** IRISC, **-\-irisc** IRISC Irisc name \[all\] - **-s**, **-\-stream** Run in streaming mode - **-m** MASK, **-\-mask** MASK Trace class mask, use "+" to enable multiple classes or use integer format, e.g: **-m** class1+class2+... or 0xff00ff00 - **-l** LEVEL, **-\-level** LEVEL Trace level Device Specific Info: ==================== > ConnectIB: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS > CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, > DC\_CLEANUP, PHY\_ETH VIRT > > SwitchIB: Trace classes: > > class1, class2 > > ConnectX4: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS > CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, > DC\_CLEANUP, PHY\_ETH VIRT > > ConnectX5: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS > CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, > DC\_CLEANUP, PHY\_ETH VIRT > > BlueField: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS > CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, > DC\_CLEANUP, PHY\_ETH VIRT > > ConnectX6: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS > CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, > DC\_CLEANUP, PHY\_ETH VIRT > > ConnectX6DX: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC\_CLEANUP, PHY\_ETH VIRT > Spectrum: Trace classes: > > class1, class2 > > ConnectX4LX: Trace classes: > > DEBUG\_INIT, INIT, ICM, ICM\_FREE\_LIST, HOST\_MNG CMD\_IF, PHY\_IB, > PHY\_RX\_ADAP, PHY\_EYE\_OPN, PHY\_COMMON PHY\_MANAGER, PWR, FLR, > ICM\_ACCESS, MAD RXT\_CHECKS, I2C, TRANSPORT, FW\_LL, RX\_ERRORS > CMD\_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, > DC\_CLEANUP, PHY\_ETH VIRT > > SwitchIB2: Trace classes: > > class1, class2 > > Quantum: Trace classes: > > class1, class2 > > Spectrum2: Trace classes: > > class1, class2 # SEE ALSO The full documentation for **mstfwtrace,** is maintained as a Texinfo manual. If the **info** and **mstfwtrace,** programs are properly installed at your site, the command > **info mstfwtrace,** should give you access to the complete manual. mstflint-4.26.0/man/mstmwrite.md0000644000175000017500000000052214522641732017032 0ustar tzafrirctzafrirc # NAME mstmwrite # SYNOPSIS mstmwrite \ \ \ # DESCRIPTION # SEE ALSO The full documentation for **mstmwrite** is maintained as a Texinfo manual. If the **info** and **mstmwrite** programs are properly installed at your site, the command > **info mstmwrite** should give you access to the complete manual. mstflint-4.26.0/man/mstcongestion.10000644000175000017500000000161614522641732017440 0ustar tzafrirctzafrirc.TH MSTCONGESTION "1" "March 2020" "mstflint" "User Commands" .SH NAME mstcongestion \- utility for configuring Mellanox device's receive congestion handling .SH DESCRIPTION NAME .IP mstcongestion .PP SYNOPSIS .IP mstcongestion [OPTIONS] .IP <\-d|\-\-device > [\-\-mode ] [\-\-action ] [\-q|\-\-query] [\-h|\-\-help] [\-v|\-\-version] .PP DESCRIPTION .IP mstcongestion is a utility for configuring Mellanox device's receive congestion handling. .PP OPTIONS .IP mstcongestion [OPTIONS] .TP \fB\-d\fR|\-\-device : Mellanox PCI device address .TP \fB\-\-mode\fR : Set Mode, options are: [aggressive | dynamic] .TP \fB\-\-action\fR : Set Action, options are: [disabled | drop | mark] .TP \fB\-q\fR|\-\-query : Query congestion .TP \fB\-h\fR|\-\-help : Show help message and exit .TP \fB\-v\fR|\-\-version : Show version and exit .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstarchive.md0000644000175000017500000000172314522641732017150 0ustar tzafrirctzafrirc # NAME mstarchive # SYNOPSIS > mstarchive OPTIONS > > \[-h|-\-help\] \[-v|-\-version version\] \[-o|-\-out-file out\_file\] > \[-b|-\-bins-dir bins\_dir\] \[-m|-\-mfa2-file mfa2\_file\] # DESCRIPTION > Allows the user to create a file with the MFA2 extension. The new file > contains several binary files of a given firmware for different > adapter cards. OPTIONS > mstarchive OPTIONS - **-h**|-\-help : Show help message and exit - **-v**|-\-version version : MFA2 version in the following format: x.x.x - **-o**|-\-out-file out\_file : Output file - **-b**|-\-bins-dir bins\_dir : Directory with the binaries files - **-m**|-\-mfa2-file mfa2\_file : Mfa2 file to parse # SEE ALSO The full documentation for **mstarchive** is maintained as a Texinfo manual. If the **info** and **mstarchive** programs are properly installed at your site, the command > **info mstarchive** should give you access to the complete manual. mstflint-4.26.0/man/mstflint.10000644000175000017500000002426614522641732016412 0ustar tzafrirctzafrirc.TH MSTFLINT "1" "March 2020" "mstflint" "User Commands" .SH NAME mstflint \- Flash Interface .SH DESCRIPTION NAME mstflint \- Flash Interface .SH SYNOPSIS .IP mstflint [OPTIONS] [Parameters] .IP [\-d|\-\-device ] [\-i|\-\-image ] [\-\-latest_fw] [\-\-ir] [\-h|\-\-help] [\-\-hh] [\-y|\-\-yes] [\-\-no] [\-\-guid ] [\-\-guids ] [\-\-mac ] [\-\-macs ] [\-\-uid ] [\-\-blank_guids] [\-\-clear_semaphore] [\-\-qq] [\-\-low_cpu] [\-\-flashed_version] [\-\-nofs] [\-\-allow_rom_change] [\-\-override_cache_replacement] [\-\-no_flash_verify] [\-\-use_fw] [\-s|\-\-silent] [\-\-vsd ] [\-\-use_image_ps] [\-\-use_image_guids] [\-\-use_image_rom] [\-\-use_dev_rom] [\-\-ignore_dev_data] [\-\-no_fw_ctrl] [\-\-dual_image] [\-\-striped_image] [\-\-banks ] [\-\-log ] [\-\-flash_params ] [\-v|\-\-version] [\-\-private_key ] [\-\-key_uuid ] [\-\-private_key2 ] [\-\-hmac_key ] [\-\-key_uuid2 ] .PP DESCRIPTION .IP flint is a FW (firmware) burning and flash memory operations tool for Mellanox Infiniband HCAs,Ethernet NIC cards, and switch devices. .SH OPTIONS .TP \fB\-d\fR|\-\-device Device flash is connected to. Commands affected: all .TP \fB\-i\fR|\-\-image Binary image file. Commands affected: burn, verify .TP \fB\-\-latest_fw\fR : Commands affected: burn .TP \fB\-\-ir\fR : Commands affected: burn .TP \fB\-h\fR|\-\-help Prints this message and exits .TP \fB\-\-hh\fR Prints extended command help .TP \fB\-y\fR|\-\-yes Non interactive mode \- assume answer "yes" to all questions. Commands affected: all .TP \fB\-\-no\fR Non interactive mode \- assume answer "no" to all questions. Commands affected: all .TP \fB\-\-guid\fR GUID base value. 4 GUIDs are automatically assigned to the following values: .TP guid \-> node GUID .TP guid+1 \-> port1 guid+2 \-> port2 guid+3 \-> system image GUID. .TP Note: port2 guid will be assigned even for a single port HCA \- The HCA ignores this value. .IP Commands affected: burn, sg .TP \fB\-\-guids\fR 4 GUIDs must be specified here. The specified GUIDs are assigned to the following fields, respectively: node, port1, port2 and system image GUID. .TP Note: port2 guid must be specified even for a single port HCA \- The HCA ignores this value. It can be set to 0x0. .IP Commands affected: burn, sg .TP \fB\-\-mac\fR MAC address base value. 2 MACs are automatically assigned to the following values: .TP mac \-> port1 .TP mac+1 \-> port2 .IP Commands affected: burn, sg .TP \fB\-\-macs\fR 2 MACs must be specified here. The specified MACs are assigned to port1, port2, respectively. Commands affected: burn, sg .TP Note: \fB\-mac\fR/\-macs flags are applicable only for Mellanox .IP Technologies ethernet products. .TP \fB\-\-uid\fR ConnectIB/SwitchIB only. Derive and set the device UIDs (GUIDs, MACs, WWNs). UIDs are derived from the given base UID according to Mellanox Methodology Commands affected: burn, sg .TP \fB\-\-blank_guids\fR Burn the image with blank GUIDs and MACs (where applicable). These values can be set later using the "sg" command (see details below). .IP Commands affected: burn .TP \fB\-\-clear_semaphore\fR Force clear the flash semaphore on the device. No command is allowed when this flag is used. NOTE: May result in system instability or flash corruption if the device or another application is currently using the flash. Exercise caution. .TP \fB\-\-qq\fR Run a quick query. When specified, flint will not perform full image integrity checks during the query operation. This may shorten execution time when running over slow interfaces (e.g., I2C, MTUSB\-1). Commands affected: query .TP \fB\-\-low_cpu\fR : When specified, cpu usage will be reduced. Run time might be increased Commands affected: query .TP \fB\-\-flashed_version\fR : When specified, only flashed fw version is fetched Commands affected: query .TP \fB\-\-nofs\fR Burn image in a non failsafe manner. .TP \fB\-\-allow_rom_change\fR Allow burning/removing a ROM to/from FW image when product version is present. Use only if you know what you are doing .TP \fB\-\-override_cache_replacement\fR On SwitchX/ConnectIB devices: Allow accessing the flash even if the cache replacement mode is enabled. NOTE: This flag is intended for advanced users only. Running in this mode may cause the firmware to hang. .TP \fB\-\-no_flash_verify\fR Do not verify each write on the flash. .TP \fB\-\-use_fw\fR Flash access will be done using FW (ConnectX\-3/ConnectX\-3Pro only). .TP \fB\-s\fR|\-\-silent Do not print burn progress flyer. Commands affected: burn .TP \fB\-\-vsd\fR Write this string, of up to 208 characters, to VSD when burn. .TP \fB\-\-use_image_ps\fR Burn vsd as appears in the given image \- do not keep existing VSD on flash. Commands affected: burn .TP \fB\-\-use_image_guids\fR Burn (guids/macs) as appears in the given image. Commands affected: burn .TP \fB\-\-use_image_rom\fR Do not save the ROM which exists in the device. Commands affected: burn .TP \fB\-\-use_dev_rom\fR Save the ROM which exists in the device. Commands affected: burn .TP \fB\-\-ignore_dev_data\fR Do not attempt to take device data sections from device(sections will be taken from the image. FS3 Only). Commands affected: burn .TP \fB\-\-no_fw_ctrl\fR Do not attempt to work with the FW Ctrl update commands .TP \fB\-\-dual_image\fR Make the burn process burn two images on flash (previously default algorithm). Current default failsafe burn process burns a single image (in alternating locations). Commands affected: burn .TP \fB\-\-striped_image\fR Use this flag to indicate that the given image file is in a "striped image" format. Commands affected: query verify .TP \fB\-\-banks\fR Set the number of attached flash devices (banks) .TP \fB\-\-log\fR Print the burning status to the specified log file .HP \fB\-\-flash_params\fR Use the given parameters to access the flash .TP instead of reading them from the flash. Supported parameters: Type: The type of the flash, such as:M25PXxx, M25Pxx, N25Q0XX, SST25VFxx, W25QxxBV, W25Xxx, W25Qxxx, W25Qxxx, AT25DFxxx, S25FLXXXP, S25FL11xx, MX25L16xxx, MX25Lxxx, S25FLxxx, IS25LPxxx. log2size: The log2 of the flash size.num_of_flashes: the number of the flashes connected to the device. .TP \fB\-v\fR|\-\-version Version info. .TP \fB\-\-private_key\fR path to PEM formatted private key to be used by the sign command .TP \fB\-\-key_uuid\fR UUID matching the given private key to be used by the sign command .TP \fB\-\-private_key2\fR path to PEM formatted private key to be used by the sign command .TP \fB\-\-hmac_key\fR path to file containing key (For FS4 image only). .TP \fB\-\-key_uuid2\fR UUID matching the given private key to be used by the sign command .PP COMMANDS SUMMARY .TP burn|b \fB\-ir\fR Burn flash. Use "\-ir burn" flag to perform .IP image reactivation prior burning. .TP query|q [full] Query misc. flash/firmware characteristics, .IP use "full" to get more information. .TP verify|v [showitoc] Verify entire flash, use "showitoc" to see .IP ITOC headers in FS3/FS4 image only. .TP swreset SW reset the target switch device.This .IP command is supported only in the In\-Band access method. .TP brom : Burn the specified ROM file on the flash. .TP drom Remove the ROM section from the flash. .TP rrom : Read the ROM section from the flash. .TP bb Burn Block \- Burns the given image as is. No .IP checks are done. .TP sg [guids_num= .IP step_size=] | [nocrc] : Set GUIDs. sv : Set the VSD. ri : Read the fw image on the flash. dc [out\-file] : Dump Configuration: print fw configuration .IP file for the given image. .TP dh [out\-file] : Dump Hash: dump the hash if it is integrated .IP in the FW image .TP set_key [key] : Set/Update the HW access key which is used to .TP enable/disable access to HW. The key can be provided in the command line or interactively typed after the command is given NOTE: The new key is activated only after the device is reset. .TP hw_access [key] : Enable/disable the access to the HW. .TP The key can be provided in the command line or interactively typed after the command is given .TP hw query : Query HW info and flash attributes. .TP erase|e Erases sector. .TP rw : Read one dword from flash .TP ww : Write one dword to flash .TP wwne : Write one dword to flash without sector .IP erase .TP wbne : Write a data block to flash without sector .IP erase. .TP wb : Write a data block to flash. .TP rb [out\-file] : Read a data block from flash .TP clear_semaphore Clear flash semaphore. .TP qrom query ROM image. .TP checksum|cs perform MD5 checksum on FW. .IP timestamp|ts [timestamp] [FW version] : FW time stamping. cache_image|ci : cache FW image(Windows only). sign : Sign firmware image file sign_with_hmac : Sign image with HMAC set_public_keys [public keys binary file] : Set Public Keys (For FS3/FS4 image only). set_forbidden_versions [forbidden versions binary file] : Set Forbidden Versions (For FS3/FS4 image .IP only). .TP image_reactivate|ir : Reactivate previous flash image. For FW .IP controlled devices only. .TP binary_compare|bc : Binary compare between device firmware and .IP given BIN file. If there is a silent mode, no progress is displayed. .SH RETURN VALUES .TP 0 Successful completion. .TP 1 An error has occurred. .TP 7 For burn command \- FW already updated \- burn was aborted. .SH "SEE ALSO" .B mstarchive(1) mstflint-4.26.0/man/mstconfig.10000644000175000017500000000553114522641732016535 0ustar tzafrirctzafrirc.TH MSTCONFIG "1" "March 2020" "mstflint" "User Commands" .SH NAME mstconfig \- set or query non-volatile configurable options for Mellanox HCAs .SH DESCRIPTION .IP NAME .IP mstconfig .IP SYNOPSIS .IP mstconfig [Options] [Parameters] .IP DESCRIPTION: .IP Allows the user to change some of the device configurations without having to create and burn a new firmware. .IP OPTIONS: .TP \fB\-d\fR|\-\-dev Perform operation for a specified MST device. .TP \fB\-b\fR|\-\-db Use a specific database file. .TP \fB\-f\fR|\-\-file raw configuration file. .TP \fB\-h\fR|\-\-help Display help message. .TP \fB\-v\fR|\-\-version Display version info. .TP \fB\-e\fR|\-\-enable_verbosity Show default and current configurations. .TP \fB\-y\fR|\-\-yes Answer yes in prompt. .TP \fB\-a\fR|\-\-all_attrs Show all attributes in the XML template .TP \fB\-p\fR|\-\-private_key pem file for private key .TP \fB\-u\fR|\-\-key_uuid keypair uuid .SH COMMANDS .TP clear_semaphore clear the tool semaphore. .TP i[show_confs] display information about all configurations. .TP q[uery] query supported configurations. .TP r[eset] reset all configurations to their default value. .TP s[et] set configurations to a specific device. .TP set_raw set raw configuration file.(only Connect\-IB/Connect\-X4/LX.) .TP backup backup configurations to a file (only Connect\-IB/Connect\-X4/LX.). Use set_raw command to restore file. .TP gen_tlvs_file Generate List of all TLVs. TLVs output file name must be specified. (*) .TP g[en_xml_template] Generate XML template. TLVs input file name and XML output file name must be specified. (*) .TP xml2raw Generate Raw file from XML file. XML input file name and raw output file name must be specified. (*) .TP raw2xml Generate XML file from Raw file. raw input file name and XML output file name must be specified. (*) .TP xml2bin Generate Bin file from XML file. XML input file name and bin output file name must be specified. (*) .TP create_conf Generate Configuration file from XML file. XML input file name and bin output file name must be specified. (*) .TP apply Apply a Configuration file. bin input file name must be specified. (*) .IP (*) These commands do not require MST device .IP To show supported configurations by device type, run show_confs command .IP Examples: .TP To query configurations mstconfig \fB\-d\fR 04:00.0 query .TP To set configuration mstconfig \fB\-d\fR 04:00.0 set SRIOV_EN=1 NUM_OF_VFS=16 WOL_MAGIC_EN_P1=1 .TP To set raw configuration mstconfig \fB\-d\fR 05:00.0 \fB\-f\fR conf_file set_raw .TP To reset configuration mstconfig \fB\-d\fR 04:00.0 reset .IP Supported devices: .IP 4th Generation devices: ConnectX3, ConnectX3\-Pro (FW 2.31.5000 and above). 5th Generation devices: ConnectIB, ConnectX4, ConnectX4\-LX, ConnectX5. .IP Note: query device to view supported configurations by Firmware. .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstfwreset.10000644000175000017500000000332314522641732016744 0ustar tzafrirctzafrirc.TH MSTFWRESET "1" "March 2020" "mstflint" "User Commands" .SH NAME mstfwreset \- Query and perform reset operation on the device .SH DESCRIPTION usage: mstfwreset \fB\-\-device\fR DEVICE [\-\-level {0,3,4,5}] [\-\-type {0,1}] [\-\-yes] .IP [\-\-skip_driver] [\-\-mst_flags MST_FLAGS] [\-\-version] [\-\-help] [\-\-skip_fsm_sync] {q,query,r,reset,reset_fsm_register} .SS "mstfwreset : The tool provides the following functionality in order to load new firmware:" .IP 1. Query the device for the supported reset\-level and reset\-type 2. Perform reset operation on the device .SH OPTIONS .TP \fB\-\-device\fR DEVICE, \fB\-d\fR DEVICE Device to work with .TP \fB\-\-level\fR {0,3,4,5}, \fB\-l\fR {0,3,4,5} Run reset with the specified reset\-level .TP \fB\-\-type\fR {0,1}, \fB\-t\fR {0,1} Run reset with the specified reset\-type .TP \fB\-\-yes\fR, \fB\-y\fR answer "yes" on prompt .TP \fB\-\-skip_driver\fR, \fB\-s\fR Skip driver start/stop stage (driver must be stopped manually) .TP \fB\-\-mst_flags\fR MST_FLAGS, \fB\-m\fR MST_FLAGS Provide mst flags to be used when invoking mst restart step. For example: \fB\-\-mst_flags=\fR"\-\-with_fpga" .TP \fB\-\-version\fR, \fB\-v\fR Print tool version .TP \fB\-\-help\fR, \fB\-h\fR show this help message and exit .TP \fB\-\-skip_fsm_sync\fR Skip fsm syncing .SS "Commands:" .IP {q,query,r,reset,reset_fsm_register} .IP query: Query reset Level. reset: Execute reset. reset_fsm_register: Reset the fsm register. .SS "Reset levels:" .IP 0: Driver, PCI link, network link will remain up ("live\-Patch") 3: Driver restart and PCI reset 4: Warm Reboot 5: Cold Reboot .SS "Reset types:" .IP 0: Full chip reset 1: Phy\-less reset ("port\-alive" \- network link will remain up) .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstcongestion.md0000644000175000017500000000176314522641732017703 0ustar tzafrirctzafrirc # NAME mstcongestion # SYNPOSIS > mstcongestion \[OPTIONS\] > > \<-d|-\-device \\> \[-\-mode \\] \[-\-action > \\] \[-q|-\-query\] \[-h|-\-help\] \[-v|-\-version\] # DESCRIPTION > mstcongestion is a utility for configuring Mellanox device's receive > congestion handling. OPTIONS > mstcongestion \[OPTIONS\] - **-d**|-\-device \ : Mellanox PCI device address - **-\-mode** \ : Set Mode, options are: \[aggressive | dynamic\] - **-\-action** \ : Set Action, options are: \[disabled | drop | mark\] - **-q**|-\-query : Query congestion - **-h**|-\-help : Show help message and exit - **-v**|-\-version : Show version and exit # SEE ALSO The full documentation for **mstcongestion,** is maintained as a Texinfo manual. If the **info** and **mstcongestion,** programs are properly installed at your site, the command > **info mstcongestion,** should give you access to the complete manual. mstflint-4.26.0/man/mstresourcedump.10000644000175000017500000000072514522641732020005 0ustar tzafrirctzafrirc.TH MSTRESOURCEDUMP "1" "March 2020" "mstflint" "User Commands" .SH NAME mstresourcedump \- dump resource information .SH DESCRIPTION usage: mstresourcedump [\-h] [\-v] {dump,query} ... .SS "optional arguments:" .TP \fB\-h\fR, \fB\-\-help\fR show this help message and exit .TP \fB\-v\fR, \fB\-\-version\fR Shows tool version .SS "commands:" .IP {dump,query} .PP Use 'mstresourcedump \fB\-h\fR' to read about a specific command. .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstprivhost.md0000644000175000017500000000343614522641732017410 0ustar tzafrirctzafrirc # NAME mstprivhost # SYNPOSIS usage: mstprivhost \[-h\] \[-v\] **-\-device** DEVICE \[-\-disable\_rshim\] > \[-\-disable\_tracer\] \[-\-disable\_counter\_rd\] > \[-\-disable\_port\_owner\] {r,restrict,p,privilege} restrict or privilege host Note: New configurations takes effect immediately. Note: privileged host - host has all supported privileges. > restricted host - host is not allowed to modify global per > port/parameters or access other hosts parametersis. > # DESCRIPTION ## optional arguments: - **-h**, **-\-help** show this help message and exit - **-v**, **-\-version** show program's version number and exit # OPTIONS - **-\-device** DEVICE, **-d** DEVICE Device to work with. - **-\-disable\_rshim** When TRUE, the host does not have an RSHIM function to access the embedded CPU registers mlxconfig\_name: HOST\_DISABLE\_RSHIM - **-\-disable\_tracer** When TRUE, the host will not be allowed to own the Tracer mlxconfig\_name: HOST\_DISABLE\_TRACER\_OWNER - **-\-disable\_counter\_rd** When TRUE, the host will not be allowed to read Physical port counters mlxconfig\_name: HOST\_DISABLE\_PORT\_COUNTER - **-\-disable\_port\_owner** When TRUE, the host will not be allowed to be Port Owner mlxconfig\_name: HOST\_DISABLE\_PORT\_OWNER ## Commands: > {r,restrict,p,privilege} - restrict: Set host 1 (ARM) privileged, host 0 (x86\_64) restricted. privilege: Set host 1 (ARM) privileged, host 0 (x86\_64) privileged (back to default). # SEE ALSO The full documentation for **mstprivhost** is maintained as a Texinfo manual. If the **info** and **mstprivhost** programs are properly installed at your site, the command > **info mstprivhost** should give you access to the complete manual. mstflint-4.26.0/man/mstregdump.md0000644000175000017500000000136614522641732017175 0ustar tzafrirctzafrirc # NAME mstregdump # SYNOPSIS > Usage: mstregdump \[-full\] \ \[i2c-slave\] \[-v\[ersion\] \[-h\[elp\]\]\] # DESCRIPTION > Mellanox mstregdump utility, dumps device internal configuration data - **-full** : Dump more expanded list of addresses Note : be careful when using this flag, None safe addresses might be read. - **-v** | **-\-version** : Display version info - **-h** | **-\-help** : Print this help message # EXAMPLES mstregdump 0b:00.0 # SEE ALSO The full documentation for **mstregdump,** is maintained as a Texinfo manual. If the **info** and **mstregdump,** programs are properly installed at your site, the command > **info mstregdump** should give you access to the complete manual. mstflint-4.26.0/man/mstprivhost.10000644000175000017500000000307214522641732017144 0ustar tzafrirctzafrirc.TH MSTPRIVHOST "1" "March 2020" "mstflint" "User Commands" .SH NAME mstprivhost \- privilege modification tool .SH DESCRIPTION usage: mstprivhost [\-h] [\-v] \fB\-\-device\fR DEVICE [\-\-disable_rshim] .IP [\-\-disable_tracer] [\-\-disable_counter_rd] [\-\-disable_port_owner] {r,restrict,p,privilege} .PP restrict or privilege host Note: New configurations takes effect immediately. Note: privileged host \- host has all supported privileges. .IP restricted host \- host is not allowed to modify global per port/parameters or access other hosts parametersis. .SS "optional arguments:" .TP \fB\-h\fR, \fB\-\-help\fR show this help message and exit .TP \fB\-v\fR, \fB\-\-version\fR show program's version number and exit .SH OPTIONS .TP \fB\-\-device\fR DEVICE, \fB\-d\fR DEVICE Device to work with. .TP \fB\-\-disable_rshim\fR When TRUE, the host does not have an RSHIM function to access the embedded CPU registers mlxconfig_name: HOST_DISABLE_RSHIM .TP \fB\-\-disable_tracer\fR When TRUE, the host will not be allowed to own the Tracer mlxconfig_name: HOST_DISABLE_TRACER_OWNER .TP \fB\-\-disable_counter_rd\fR When TRUE, the host will not be allowed to read Physical port counters mlxconfig_name: HOST_DISABLE_PORT_COUNTER .TP \fB\-\-disable_port_owner\fR When TRUE, the host will not be allowed to be Port Owner mlxconfig_name: HOST_DISABLE_PORT_OWNER .SS "Commands:" .IP {r,restrict,p,privilege} .TP restrict: Set host 1 (ARM) privileged, host 0 (x86_64) restricted. .IP privilege: Set host 1 (ARM) privileged, host 0 (x86_64) privileged .IP (back to default). .SH "SEE ALSO" mstflint(1) mstflint-4.26.0/man/mstconfig.md0000644000175000017500000000631714522641732017000 0ustar tzafrirctzafrirc # NAME mstconfig # SYNOPSIS > mstconfig \[Options\] \ \[Parameters\] # DESCRIPTION > > Allows the user to change some of the device configurations without > having to create and burn a new firmware. > > OPTIONS: - **-d**|-\-dev \ : Perform operation for a specified MST device. - **-b**|-\-db \ : Use a specific database file. - **-f**|-\-file \ : raw configuration file. - **-h**|-\-help : Display help message. - **-v**|-\-version : Display version info. - **-e**|-\-enable\_verbosity : Show default and current configurations. - **-y**|-\-yes : Answer yes in prompt. - **-a**|-\-all\_attrs : Show all attributes in the XML template - **-p**|-\-private\_key : pem file for private key - **-u**|-\-key\_uuid : keypair uuid COMMANDS: - clear\_semaphore : clear the tool semaphore. - i\[show\_confs\] : display information about all configurations. - q\[uery\] : query supported configurations. - r\[eset\] : reset all configurations to their default value. - s\[et\] : set configurations to a specific device. - set\_raw : set raw configuration file.(only Connect-IB/Connect-X4/LX.) - backup : backup configurations to a file (only Connect-IB/Connect-X4/LX.). Use set\_raw command to restore file. - gen\_tlvs\_file : Generate List of all TLVs. TLVs output file name must be specified. (\*) - g\[en\_xml\_template\] : Generate XML template. TLVs input file name and XML output file name must be specified. (\*) - xml2raw : Generate Raw file from XML file. XML input file name and raw output file name must be specified. (\*) - raw2xml : Generate XML file from Raw file. raw input file name and XML output file name must be specified. (\*) - xml2bin : Generate Bin file from XML file. XML input file name and bin output file name must be specified. (\*) - create\_conf : Generate Configuration file from XML file. XML input file name and bin output file name must be specified. (\*) - apply : Apply a Configuration file. bin input file name must be specified. (\*) (\*) These commands do not require MST device To show supported configurations by device type, run show\_confs command # EXAMPLES - To query configurations : mstconfig **-d** 04:00.0 query - To set configuration : mstconfig **-d** 04:00.0 set SRIOV\_EN=1 NUM\_OF\_VFS=16 WOL\_MAGIC\_EN\_P1=1 - To set raw configuration : mstconfig **-d** 05:00.0 **-f** conf\_file set\_raw - To reset configuration : mstconfig **-d** 04:00.0 reset Supported devices: 4th Generation devices: ConnectX3, ConnectX3-Pro (FW 2.31.5000 and above). 5th Generation devices: ConnectIB, ConnectX4, ConnectX4-LX, ConnectX5. > Note: query device to view supported configurations by Firmware. # SEE ALSO The full documentation for **mstconfig,** is maintained as a Texinfo manual. If the **info** and **mstconfig,** programs are properly installed at your site, the command > **info mstconfig,** should give you access to the complete manual. mstflint-4.26.0/man/mstlink.10000644000175000017500000001156614522641732016232 0ustar tzafrirctzafrirc.TH MSTLINK "1" "March 2020" "mstflint" "User Commands" .SH NAME mstlink \- check and debug link status and issues related to them .SH SYNOPSIS mstlink [OPTIONS] .SH DESCRIPTION The mlxlink tool is used to check and debug link status and issues related to them. The tool can be used on different links and cables (passive, active, transceiver and backplane). .SH OPTIONS .TP \fB\-h\fR |\-\-help : Display help message. .TP \fB\-v\fR |\-\-version : Display version info. .TP \fB\-d\fR |\-\-device : Perform operation for a specified mst device .TP \fB\-p\fR |\-\-port : Port Number .TP \fB\-\-port_type\fR : Port Type [NETWORK(Default)/PCIE] .TP \fB\-\-depth\fR : depth level of the DUT of some hierarchy (PCIE only) .TP \fB\-\-pcie_index\fR : PCIe index number (Internal domain index) (PCIE only) .TP \fB\-\-node\fR : the node within each depth (PCIE only) .TP \fB\-\-json\fR : Print the output in json format .IP QUERIES: .TP \fB\-\-show_links\fR : Show valid PCIe links (PCIE only) .TP \fB\-m\fR |\-\-show_module : Show Module Info .TP \fB\-c\fR |\-\-show_counters : Show Physical Counters and BER Info .TP \fB\-e\fR |\-\-show_eye : Show Eye Opening Info .TP \fB\-\-show_fec\fR : Show FEC Capabilities .TP \fB\-\-show_serdes_tx\fR : Show Transmitter Info .TP \fB\-\-show_device\fR : General Device Info .TP \fB\-\-show_ber_monitor\fR : Show BER Monitor Info (not supported for HCA) .TP \fB\-\-show_external_phy\fR : Show External PHY Info .IP COMMANDS: .TP \fB\-a\fR |\-\-port_state : Configure Port State [UP(up)/DN(down)/TG(toggle)] .TP \fB\-s\fR |\-\-speeds : Configure Speeds [speed1,speed2,...] .TP \fB\-\-link_mode_force\fR : Configure Link Mode Force (Disable AN) .TP \fB\-l\fR |\-\-loopback : Configure Loopback Mode [NO(no loopback)/PH(phy loopback)/EX(external loopback)] .TP \fB\-k\fR |\-\-fec : Configure FEC [AU(Auto)/NF(No\-FEC)/FC(FireCode FEC)/RS(RS\-FEC)] .TP \fB\-\-fec_speed\fR : Speed to Configure FEC [100G/50G/25G/...] (Default is Active Speed) .TP \fB\-\-serdes_tx\fR : Configure Transmitter Parameters [polarity,ob_tap0,...] .TP \fB\-\-serdes_tx_lane\fR : Transmitter Lane to Set (Optional \- Default All Lanes) .TP \fB\-\-database\fR : Save Transmitter Configuration for Current Speed Permanently (Optional) .TP \fB\-\-test_mode\fR : Physical Test Mode Configuration [EN(enable)/DS(disable)/TU(perform tuning)] .TP \fB\-\-rx_prbs\fR : RX PRBS Mode [PRBS31(Default)/PRBS7/...] (Optional \- Default PRBS31) .TP \fB\-\-tx_prbs\fR : TX PRBS Mode [PRBS31(Default)/PRBS7/...] (Optional \- Default PRBS31) .TP \fB\-\-rx_rate\fR : RX Lane Rate [EDR(Default)/25G/10G/...] (Optional \- Default 25G) .TP \fB\-\-tx_rate\fR : TX Lane Rate [EDR(Default)/25G/10G/...] (Optional \- Default 25G) .TP \fB\-b\fR |\-\-ber_collect : Port Extended Information Collection [CSV File] .TP \fB\-\-ber_limit\fR : BER Limit Criteria [Nominal(Default)/Corner/Drift] (Optional \- Default Nominal) .TP \fB\-\-iteration\fR : Iteration Number of BER Collection .TP \fB\-\-pc\fR : Clear Counters .TP \fB\-\-set_external_phy\fR : Set External PHY (not supported for HCA) .TP \fB\-\-twisted_pair_force_mode\fR : Twisted Pair Force Mode [MA(Master)/SL(Slave)] .SH EXAMPLES .TP get info of , : .IP mstlink \fB\-d\fR \fB\-p\fR .IP get info of , and BER Counters: .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-c\fR .IP get info of , and Transmitter Parameters: .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-\-show_serdes_tx\fR .TP Configure Port State : .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-\-port_state\fR UP .TP Configure Port Speeds : .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-\-speeds\fR 25G,50G,100G .TP Configure FEC : .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-\-fec\fR RS .TP Configure Port for Physical Test Mode : .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-\-test_mode\fR EN (\fB\-\-rx_prbs\fR PRBS31 \fB\-\-rx_rate\fR 25G \fB\-\-tx_prbs\fR PRBS7 \fB\-\-tx_rate\fR 10G) .TP Perform PRBS Tuning : .IP mstlink \fB\-d\fR \fB\-p\fR \fB\-\-test_mode\fR TU .IP Configure Transmitter Parameters (on lane, to database): .IP mstlink \fB\-d\fR \fB\-p\fR (\fB\-\-serdes_tx_lane\fR ) (\fB\-\-database\fR) \\ \fB\-\-serdes_tx\fR ,,,,, .SH "SEE ALSO" mstflint(1) mstflint-4.26.0/man/mstvpd.md0000644000175000017500000000161114522641732016314 0ustar tzafrirctzafrirc # NAME mstvpd # SYNOPSIS **mstvpd** \[*-m|-n|-r*\] \[*-t \#\#*\] *\ *\[*-- keyword *...\] # DESCRIPTION **-h** Print this help. **-v** Print tool version. **-m** Dump raw VPD data to stdout. **-n** Do not validate check sum. **-r** Do not check and display the VPD\_W tag in the vpd data. **-t** \#\# Time out after \#\# seconds. (Default is 30.) file The PCI id number of the HCA (for example, "2:00.0"), > the device name (such as "mlx4\_0") the absolute path to the device > ("/sys/class/infiniband/mlx4\_0/device") or '-' to read VPD data from > the standard input. keyword(s): Only display the requested information. (ID, PN, EC, SN, etc...) # SEE ALSO The full documentation for **mstvpd** is maintained as a Texinfo manual. If the **info** and **mstvpd** programs are properly installed at your site, the command > **info mstvpd** should give you access to the complete manual. mstflint-4.26.0/man/mstmwrite.10000644000175000017500000000031314522641732016570 0ustar tzafrirctzafrirc.TH MSTMWRITE "1" "March 2020" "mstflint" "User Commands" .SH NAME mstmwrite \- Mellanox Write Configuration Register Tool .SH DESCRIPTION mstmwrite .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstregdump.10000644000175000017500000000104114522641732016723 0ustar tzafrirctzafrirc.TH MSTREGDUMP "1" "March 2020" "mstflint" "User Commands" .SH NAME mstdump \- Mellanox mstdump utility, dumps device internal configuration data .SH SYNOPSIS mstregdump [\-full] [i2c\-slave] [\-v[ersion] [\-h[elp]]] .SH OPTIONS .TP \fB\-full\fR Dump more expanded list of addresses Note: be careful when using this flag, None safe addresses might be read. .TP \fB\-v\fR | \fB\-\-version\fR Display version info .TP \fB\-h\fR | \fB\-\-help\fR Print this help message .IP .SH EXAMPLE .IP mstregdump 0b:00.0 .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstreg.md0000644000175000017500000000366314522641732016311 0ustar tzafrirctzafrirc # NAME mstreg # SYNOPSIS > mstreg \[OPTIONS\] # DESCRIPTION > Exposes supported access registers, and allows users to obtain > information regarding the registers fields and attributes, and to set > and get data with specific register. > > OPTIONS: - **-h** |-\-help : Display help message. - **-v** |-\-version : Display version info. - **-d** |-\-device \ : Perform operation for a specified mst device. - **-a** |-\-adb\_file \ : An external ADB file - **-\-reg\_name** \ : Known access register name - **-\-reg\_id** \ : Access register ID - **-\-reg\_len** \ : Access register layout length (bytes) - **-i** |-\-indexes \ : Register indexes - **-g** |-\-get : Register access GET - **-s** |-\-set \ : Register access SET - **-\-show\_reg** \ : Print the fields of a given reg access (must have reg\_name) - **-\-show\_regs** : Print all available reg access' - **-\-yes** : Non-interactive mode, answer yes to all questions # EXAMPLES - Show all available access register : mstreg **-d** \ **-\-show\_regs** - Show all fields of register PAOS : mstreg **-d** \ **-\-show\_reg** PAOS GET PAOS with indexes: local port 0x1 and swid 0x5: mstreg **-d** \ **-\-get** **-\-reg\_name** PAOS **-\-indexes** "local\_port=0x1,swid=0x5" SET PAOS with indexes: local port 0x1 and swid 0x5, and data: e 0x0: mstreg **-d** \ **-\-set** "e=0x0" **-\-reg\_name** PAOS **-\-indexes** "local\_port=0x1,swid=0x5" # SEE ALSO The full documentation for **mstreg,** is maintained as a Texinfo manual. If the **info** and **mstreg,** programs are properly installed at your site, the command > **info mstreg** should give you access to the complete manual. mstflint-4.26.0/man/mstmcra.10000644000175000017500000000244414522641732016212 0ustar tzafrirctzafrirc.TH MSTMCRA "1" "March 2020" "mstflint" "User Commands" .SH NAME mstmcra \- Mellanox Configuration Registers Access tool .SH DESCRIPTION .IP Mellanox Configuration Registers Access tool Usage: mstmcra [\-s ] [\-a ] [\-v] [\-h] [\-c] .IP :]|[,]> [data] If data is given, operation is write. Otherwise it is read. If a bit range is given in the address (E.G.: 0xf0014.16:8): .TP For read \- Only the requested bits are printed. .IP For write \- Read\-Modify\-Write. Only the requested bits are changed. .IP If 'bytes number' is given in the address (E.G.: 0xf0014,16): .TP For read \- Will read a block (its size is the given bytes number). .IP For write \- User need to give list of dwrods to write, .IP number of dwords should be (bytes number/4). .PP DESCRIPTION: .IP Reads/writes a single word from/to a device configuration register space .HP \fB\-s\fR : I2C slave address. .HP \fB\-a\fR : adb dump file, used for access by path. .TP \fB\-c\fR : clear the device's PCI semaphore. .TP \fB\-h\fR : Print this help message. .TP \fB\-v\fR : Display version info .SS "Environment Variables:" .TP ADB_DUMP : Holds the path to adb dump, used for access by path (can be overridden by "\-a"). .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstlink.md0000644000175000017500000001226514522641732016467 0ustar tzafrirctzafrirc # NAME mstlink, - manual page for mstlink, mstflint 4.13.1, built on Sep 11 2019, 21:09:35. Git SHA Hash: N/A # SYNOPSIS > mstlink \[OPTIONS\] > # DESCRIPTION > The mstlink tool is used to check and debug link status and issues > related to them. The tool can be used on different links and cables > (passive, active, transceiver and backplane). > > OPTIONS: - **-h** |-\-help : Display help message. - **-v** |-\-version : Display version info. - **-d** |-\-device \ : Perform operation for a specified mst device - **-p** |-\-port \ : Port Number - **-\-port\_type** \ : Port Type \[NETWORK(Default)/PCIE\] - **-\-depth** \ : depth level of the DUT of some hierarchy (PCIE only) - **-\-pcie\_index** \ : PCIe index number (Internal domain index) (PCIE only) - **-\-node** \ : the node within each depth (PCIE only) QUERIES: - **-\-show\_links** : Show valid PCIe links (PCIE only) - **-m** |-\-show\_module : Show Module Info - **-c** |-\-show\_counters : Show Physical Counters and BER Info - **-e** |-\-show\_eye : Show Eye Opening Info - **-\-show\_fec** : Show FEC Capabilities - **-\-show\_serdes\_tx** : Show Transmitter Info - **-\-show\_device** : General Device Info - **-\-show\_ber\_monitor** : Show BER Monitor Info (not supported for HCA) - **-\-show\_external\_phy** : Show External PHY Info COMMANDS: - **-a** |-\-port\_state \ : Configure Port State \[UP(up)/DN(down)/TG(toggle)\] - **-s** |-\-speeds \ : Configure Speeds \[speed1,speed2,...\] - **-\-link\_mode\_force** : Configure Link Mode Force (Disable AN) - **-l** |-\-loopback \ : Configure Loopback Mode \[NO(no loopback)/PH(phy loopback)/EX(external loopback)\] - **-k** |-\-fec \ : Configure FEC \[AU(Auto)/NF(No-FEC)/FC(FireCode FEC)/RS(RS-FEC)\] - **-\-fec\_speed** \ : Speed to Configure FEC \[100G/50G/25G/...\] (Default is Active Speed) - **-\-serdes\_tx** \ : Configure Transmitter Parameters \[polarity,ob\_tap0,...\] - **-\-serdes\_tx\_lane** \ : Transmitter Lane to Set (Optional - Default All Lanes) - **-\-database** : Save Transmitter Configuration for Current Speed Permanently (Optional) - **-\-test\_mode** \ : Physical Test Mode Configuration \[EN(enable)/DS(disable)/TU(perform tuning)\] - **-\-rx\_prbs** \ : RX PRBS Mode \[PRBS31(Default)/PRBS7/...\] (Optional - Default PRBS31) - **-\-tx\_prbs** \ : TX PRBS Mode \[PRBS31(Default)/PRBS7/...\] (Optional - Default PRBS31) - **-\-rx\_rate** \ : RX Lane Rate \[EDR(Default)/25G/10G/...\] (Optional - Default 25G) - **-\-tx\_rate** \ : TX Lane Rate \[EDR(Default)/25G/10G/...\] (Optional - Default 25G) - **-b** |-\-ber\_collect \ : Port Extended Information Collection \[CSV File\] - **-\-ber\_limit** \ : BER Limit Criteria \[Nominal(Default)/Corner/Drift\] (Optional - Default Nominal) - **-\-iteration** \ : Iteration Number of BER Collection - **-\-pc** : Clear Counters - **-\-set\_external\_phy** : Set External PHY (not supported for HCA) - **-\-twisted\_pair\_force\_mode** \ : Twisted Pair Force Mode \[MA(Master)/SL(Slave)\] # EXAMPLES - get info of \, \: mstlink **-d** \ **-p** \ get info of \, \ and BER Counters: mstlink **-d** \ **-p** \ **-c** get info of \, \ and Transmitter Parameters: mstlink **-d** \ **-p** \ **-\-show\_serdes\_tx** - Configure Port State: mstlink **-d** \ **-p** \ **-\-port\_state** UP - Configure Port Speeds: mstlink **-d** \ **-p** \ **-\-speeds** 25G,50G,100G - Configure FEC: mstlink **-d** \ **-p** \ **-\-fec** RS - Configure Port for Physical Test Mode: mstlink **-d** \ **-p** \ **-\-test\_mode** EN (**-\-rx\_prbs** PRBS31 **-\-rx\_rate** 25G **-\-tx\_prbs** PRBS7 **-\-tx\_rate** 10G) - Perform PRBS Tuning: mstlink **-d** \ **-p** \ **-\-test\_mode** TU Configure Transmitter Parameters (on lane, to database): mstlink **-d** \ **-p** \ **-\-serdes\_tx** \,\,\,\,\,\ (**-\-serdes\_tx\_lane** \) (**-\-database**) # SEE ALSO The full documentation for **mstlink,** is maintained as a Texinfo manual. If the **info** and **mstlink,** programs are properly installed at your site, the command > **info mstlink,** should give you access to the complete manual. mstflint-4.26.0/man/mstreg.10000644000175000017500000000352714522641732016050 0ustar tzafrirctzafrirc.TH MSTREG "1" "March 2020" "mstflint" "User Commands" .SH NAME mstreg \- Expose supported access registers .SH DESCRIPTION .IP NAME: .IP mstreg .IP SYNOPSIS: .IP mstreg [OPTIONS] .IP DESCRIPTION: .IP Exposes supported access registers, and allows users to obtain information regarding the registers fields and attributes, and to set and get data with specific register. .IP OPTIONS: .TP \fB\-h\fR |\-\-help : Display help message. .TP \fB\-v\fR |\-\-version : Display version info. .TP \fB\-d\fR |\-\-device : Perform operation for a specified mst device. .TP \fB\-a\fR |\-\-adb_file : An external ADB file .TP \fB\-\-reg_name\fR : Known access register name .TP \fB\-\-reg_id\fR : Access register ID .TP \fB\-\-reg_len\fR : Access register layout length (bytes) .TP \fB\-i\fR |\-\-indexes : Register indexes .TP \fB\-g\fR |\-\-get : Register access GET .TP \fB\-s\fR |\-\-set : Register access SET .TP \fB\-\-show_reg\fR : Print the fields of a given reg access (must have reg_name) .TP \fB\-\-show_regs\fR : Print all available reg access' .TP \fB\-\-yes\fR : Non\-interactive mode, answer yes to all questions .IP Examples: .TP Show all available access register : mstreg \fB\-d\fR \fB\-\-show_regs\fR .TP Show all fields of register PAOS : mstreg \fB\-d\fR \fB\-\-show_reg\fR PAOS .IP GET PAOS with indexes: local port 0x1 and swid 0x5: .IP mstreg \fB\-d\fR \fB\-\-get\fR \fB\-\-reg_name\fR PAOS \fB\-\-indexes\fR "local_port=0x1,swid=0x5" .IP SET PAOS with indexes: local port 0x1 and swid 0x5, and data: e 0x0: .IP mstreg \fB\-d\fR \fB\-\-set\fR "e=0x0" \fB\-\-reg_name\fR PAOS \fB\-\-indexes\fR "local_port=0x1,swid=0x5" .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstfwreset.md0000644000175000017500000000355514522641732017213 0ustar tzafrirctzafrirc # NAME mstfwreset # SYNOPSIS usage: mstfwreset **-\-device** DEVICE \[-\-level {0,3,4,5}\] \[-\-type {0,1}\] \[-\-yes\] > \[-\-skip\_driver\] \[-\-mst\_flags MST\_FLAGS\] \[-\-version\] > \[-\-help\] \[-\-skip\_fsm\_sync\] > {q,query,r,reset,reset\_fsm\_register} # DESCRIPTION ## mstfwreset : The tool provides the following functionality in order to load new firmware: > 1\. Query the device for the supported reset-level and reset-type 2. > Perform reset operation on the device # OPTIONS - **-\-device** DEVICE, **-d** DEVICE Device to work with - **-\-level** {0,3,4,5}, **-l** {0,3,4,5} Run reset with the specified reset-level - **-\-type** {0,1}, **-t** {0,1} Run reset with the specified reset-type - **-\-yes**, **-y** answer "yes" on prompt - **-\-skip\_driver**, **-s** Skip driver start/stop stage (driver must be stopped manually) - **-\-mst\_flags** MST\_FLAGS, **-m** MST\_FLAGS Provide mst flags to be used when invoking mst restart step. For example: **-\-mst\_flags=**"-\-with\_fpga" - **-\-version**, **-v** Print tool version - **-\-help**, **-h** show this help message and exit - **-\-skip\_fsm\_sync** Skip fsm syncing ## Commands: > {q,query,r,reset,reset\_fsm\_register} > > query: Query reset Level. reset: Execute reset. reset\_fsm\_register: > Reset the fsm register. ## Reset levels: > 0: Driver, PCI link, network link will remain up ("live-Patch") 3: > Driver restart and PCI reset 4: Warm Reboot 5: Cold Reboot ## Reset types: > 0: Full chip reset 1: Phy-less reset ("port-alive" - network link will > remain up) # SEE ALSO The full documentation for **mstfwreset** is maintained as a Texinfo manual. If the **info** and **mstfwreset** programs are properly installed at your site, the command > **info mstfwreset** should give you access to the complete manual. mstflint-4.26.0/man/mstvpd.10000644000175000017500000000147414522641732016063 0ustar tzafrirctzafrirc.TH MSTVPD "1" "March 2020" "mstflint" "User Commands" .SH NAME mstvpd \- Mellanox VPD read tool .SH SYNOPSIS .B mstvpd [\fI-m|-n|-r\fR] [\fI-t ##\fR] \fI \fR[\fI-- keyword \fR...] .SH DESCRIPTION \fB\-h\fR Print this help. \fB\-v\fR Print tool version. \fB\-m\fR Dump raw VPD data to stdout. \fB\-n\fR Do not validate check sum. \fB\-r\fR Do not check and display the VPD_W tag in the vpd data. \fB\-t\fR ## Time out after ## seconds. (Default is 30.) .PP file The PCI id number of the HCA (for example, "2:00.0"), .IP the device name (such as "mlx4_0") the absolute path to the device ("/sys/class/infiniband/mlx4_0/device") or '\-' to read VPD data from the standard input. .PP keyword(s): Only display the requested information. (ID, PN, EC, SN, etc...) .PP .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstfwmanager.10000644000175000017500000001015514522641732017235 0ustar tzafrirctzafrirc.TH MSTFWMANAGER "1" "March 2020" "mstflint" "User Commands" .SH NAME mstfwmanager \- Mellanox Firmware Manager .SH DESCRIPTION NAME .IP mstfwmanager .PP SYNOPSIS .IP mstfwmanager .IP [\-d|\-\-dev DeviceName] [\-h|\-\-help] [\-v|\-\-version] [\-\-query] [\-\-query\-format Format] [\-u|\-\-update] [\-i|\-\-image\-file FileName] [\-D|\-\-image\-dir DirectoryName] [\-f|\-\-force] [\-\-no_fw_ctrl] [\-y|\-\-yes] [\-\-no] [\-\-clear\-semaphore] [\-\-exe\-rel\-path] [\-l|\-\-list\-content] [\-\-archive\-names] [\-\-nofs] [\-\-log] [\-L|\-\-log\-file LogFileName] [\-\-no\-progress] [\-o|\-\-outfile OutputFileName] [\-\-online] [\-\-online\-query\-psid PSIDs] [\-\-key key] [\-\-download DirectoryName] [\-\-download\-default] [\-\-get\-download\-opt OPT] [\-\-download\-device Device] [\-\-download\-os OS] [\-\-download\-type Type] [\-\-ssl\-certificate Certificate] .PP DESCRIPTION .IP Mellanox Firmware Manager .PP OPTIONS .IP mstfwmanager .TP \fB\-d\fR|\-\-dev DeviceName : Perform operation for specified mst device(s). Run 'mst status' command to list the available devices. Multiple devices can be specified delimited by semicolons. A device list containing semicolons must be quoted. .TP \fB\-h\fR|\-\-help : Show this message and exit .TP \fB\-v\fR|\-\-version : Show the executable version and exit .TP \fB\-\-query\fR : Query device(s) info .TP \fB\-\-query\-format\fR Format : (Query | Online query) output format, XML | Text \- default Text .TP \fB\-u\fR|\-\-update : Update firmware image(s) on the device(s) .TP \fB\-i\fR|\-\-image\-file FileName : Specified image file to use .TP \fB\-D\fR|\-\-image\-dir DirectoryName : Specified directory instead of default to locate image files .TP \fB\-f\fR|\-\-force : Force image update .TP \fB\-\-no_fw_ctrl\fR : Don't use FW Ctrl update .TP \fB\-y\fR|\-\-yes : Answer is yes in prompts .TP \fB\-\-no\fR : Answer is no in prompts .TP \fB\-\-clear\-semaphore\fR : Force clear the flash semaphore on the device, No command is allowed when this flag is used. NOTE: May result in system instability or flash corruption if the device or another application is currently using the flash. Exercise caution. .TP \fB\-\-exe\-rel\-path\fR : Use paths relative to the location of the executable .TP \fB\-l\fR|\-\-list\-content : List file/Directory content, used with \fB\-\-image\-dir\fR and \fB\-\-image\-file\fR flags .TP \fB\-\-archive\-names\fR : Display archive names in listing .TP \fB\-\-nofs\fR : Burn image in a non failsafe manner .TP \fB\-\-log\fR : Create log file .TP \fB\-L\fR|\-\-log\-file LogFileName : Use specified log file .TP \fB\-\-no\-progress\fR : Do not show progress .TP \fB\-o\fR|\-\-outfile OutputFileName : Write to specified output file .TP \fB\-\-online\fR : Fetch required FW images online from Mellanox server .TP \fB\-\-online\-query\-psid\fR PSIDs : Query FW info, PSID(s) are comma separated .TP \fB\-\-key\fR key : Key for custom download/update .TP \fB\-\-download\fR DirectoryName : Download files from server to a specified directory .TP \fB\-\-download\-default\fR : Use Default values for download .TP \fB\-\-get\-download\-opt\fR OPT : Get download options for OS or Device Options are: OS, Device .TP \fB\-\-download\-device\fR Device : Use '\-\-get\-download\-opt Device' option to view available devices for device specific downloads .TP \fB\-\-download\-os\fR OS : Only for self_extractor download: Use \&'\-\-get\-download\-opt OS' option to view available OS for sfx download .TP \fB\-\-download\-type\fR Type : MFA | self_extractor \- default All .TP \fB\-\-ssl\-certificate\fR Certificate : SSL certificate For secure connection .SH EXAMPLES .IP 1. Query specific device or all devices (if no device were supplied) >> mstfwmanager [\-d ] [\-\-query] 2. Burn device with specific image / MFA / images directory >> mstfwmanager \-d [\-i | \-D ] 3. Update the card's firmware >> mstfwmanager \-u 4. Update the card's firmware from latest version on the web >> mstfwmanager \-\-online \-u 5. Download latest FW package from the web >> mstfwmanager \-\-download\-default \-\-download\-os Linux_x64 \-\-download\-type self_extractor .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstfwtrace.10000644000175000017500000000665314522641732016731 0ustar tzafrirctzafrirc.TH MSTFWTRACE "1" "March 2020" "mstflint" "User Commands" .SH NAME mstfwtrace \- Extracts and prints trace messages generated by the firmware of 5th generation devices .SH DESCRIPTION usage: mstfwtrace \fB\-d\fR|\-\-device DEVICE [options] .SS "optional arguments:" .TP \fB\-h\fR, \fB\-\-help\fR show this help message and exit .TP \fB\-v\fR, \fB\-\-version\fR, \fB\-v\fR Print tool version. .SH OPTIONS .TP \fB\-d\fR DEVICE, \fB\-\-device\fR DEVICE PCI device name .TP \fB\-\-tracer_mode\fR TRACER_MODE Tracer mode [MEM] .TP \fB\-\-real_ts\fR Print real timestamps in [hh:mm:ss:nsec] .TP \fB\-\-ignore_old_events\fR Ignore collecting old events .SS "Format:" .TP \fB\-i\fR IRISC, \fB\-\-irisc\fR IRISC Irisc name [all] .TP \fB\-s\fR, \fB\-\-stream\fR Run in streaming mode .TP \fB\-m\fR MASK, \fB\-\-mask\fR MASK Trace class mask, use "+" to enable multiple classes or use integer format, e.g: \fB\-m\fR class1+class2+... or 0xff00ff00 .TP \fB\-l\fR LEVEL, \fB\-\-level\fR LEVEL Trace level .PP Device Specific Info: ==================== .IP ConnectIB: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP SwitchIB: Trace classes: .IP class1, class2 .IP ConnectX4: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP ConnectX5: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP BlueField: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP ConnectX6: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP ConnectX6DX: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP Spectrum: Trace classes: .IP class1, class2 .IP ConnectX4LX: Trace classes: .IP DEBUG_INIT, INIT, ICM, ICM_FREE_LIST, HOST_MNG CMD_IF, PHY_IB, PHY_RX_ADAP, PHY_EYE_OPN, PHY_COMMON PHY_MANAGER, PWR, FLR, ICM_ACCESS, MAD RXT_CHECKS, I2C, TRANSPORT, FW_LL, RX_ERRORS CMD_DRIVER, PROFILING, MANAGEMENT, FLASH, STEERING IFARM, ICMD, PCI, DC_CLEANUP, PHY_ETH VIRT .IP SwitchIB2: Trace classes: .IP class1, class2 .IP Quantum: Trace classes: .IP class1, class2 .IP Spectrum2: Trace classes: .IP class1, class2 .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstmcra.md0000644000175000017500000000301014522641732016440 0ustar tzafrirctzafrirc # NAME mstmcra - manual page for mstmcra Mellanox Configuration Registers Access tool # SYNOPSIS > Mellanox Configuration Registers Access tool Usage: > mstmcra \[-s \\] \[-a \\] \[-v\] \[-h\] \[-c\] \ > \:\\]|\[,\\]\> \[data\] > If data is given, operation is write. Otherwise it is read. > > If a bit range is given in the address (E.G.: 0xf0014.16:8): > - For read > \- Only the requested bits are printed. > > - For write > \- Read-Modify-Write. Only the requested bits are changed. > > If 'bytes number' is given in the address (E.G.: 0xf0014,16): > > - For read > \- Will read a block (its size is the given bytes number). > > - For write > \- User need to give list of dwrods to write, number of dwords should be (bytes number/4). # DESCRIPTION > Reads/writes a single word from/to a device configuration register > space - **-s** \ : I2C slave address. - **-a** \ : adb dump file, used for access by path. - **-c** clear the device's PCI semaphore. - **-h** Print this help message. - **-v** Display version info ## Environment Variables: - ADB\_DUMP - Holds the path to adb dump, used for access by path (can be overridden by "-a"). # SEE ALSO The full documentation for **mstmcra** is maintained as a Texinfo manual. If the **info** and **mstmcra** programs are properly installed at your site, the command > **info mstmcra** should give you access to the complete manual. mstflint-4.26.0/man/mstarchive.10000644000175000017500000000153614522641732016712 0ustar tzafrirctzafrirc.TH MSTARCHIVE "1" "March 2020" "mstflint" "User Commands" .SH NAME mstarchive \- generate MFA2 archives .SH DESCRIPTION NAME .IP mstarchive .PP SYNOPSIS .IP mstarchive OPTIONS .IP [\-h|\-\-help] [\-v|\-\-version version] [\-o|\-\-out\-file out_file] [\-b|\-\-bins\-dir bins_dir] [\-m|\-\-mfa2\-file mfa2_file] .PP DESCRIPTION .IP Allows the user to create a file with the MFA2 extension. The new file contains several binary files of a given firmware for different adapter cards. .PP OPTIONS .IP mstarchive OPTIONS .TP \fB\-h\fR|\-\-help : Show help message and exit .TP \fB\-v\fR|\-\-version version : MFA2 version in the following format: x.x.x .TP \fB\-o\fR|\-\-out\-file out_file : Output file .TP \fB\-b\fR|\-\-bins\-dir bins_dir : Directory with the binaries files .TP \fB\-m\fR|\-\-mfa2\-file mfa2_file : Mfa2 file to parse .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstmtserver.10000644000175000017500000000070314522641732017133 0ustar tzafrirctzafrirc.TH MSTMTSERVER "1" "March 2020" "mstflint" "User Commands" .SH NAME mstmtserver \- mstflint mst mt server .SH DESCRIPTION Usage: .IP mstmtserver [switches] .SS "Switches may be:" .HP \fB\-p[ort]\fR \- Listen to specify port (default is 23108). .HP \fB\-d[ebug]\fR \- Print all socket traffic (for debugging only). .HP \fB\-h[elp]\fR \- Print help message. .HP \fB\-v[ersion]\fR \- Print version. .SH "SEE ALSO" .B mstflint(1) mstflint-4.26.0/man/mstmread.md0000644000175000017500000000050314522641732016612 0ustar tzafrirctzafrirc # NAME mstmread # SYNOPSiS mstmread \ \ # DESCRIPTION # SEE ALSO The full documentation for **mstmread** is maintained as a Texinfo manual. If the **info** and **mstmread** programs are properly installed at your site, the command > **info mstmread** should give you access to the complete manual. mstflint-4.26.0/mtcr_ul/0000755000175000017500000000000014522641740015347 5ustar tzafrirctzafrircmstflint-4.26.0/mtcr_ul/mtcr_mem_ops.h0000644000175000017500000000351414522641732020210 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mtcr.h" typedef enum { MEM_ICMD, MEM_END } mem_type_t; typedef struct { unsigned long long int dma_pa; unsigned int mem_size; } mem_props_t; void init_mem_ops(mfile* mf); void close_mem_ops(mfile* mf); int mtcr_memaccess(mfile* mf, unsigned int offset, unsigned int size, unsigned char* data, int rw, mem_type_t type); int get_mem_props(mfile* mf, mem_type_t type, mem_props_t* props); mstflint-4.26.0/mtcr_ul/packets_layout.h0000644000175000017500000000747114522641732020561 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * End of legal section ...................................................... * */ /*** *** This file was generated at "Mon May 30 15:06:41 2011" *** by: *** % csp_pack_unpack.pm ../xml_files/packets_st.csp *** and modified to fit mtcr needs ***/ #ifndef PACKETS_LAYOUT_H #define PACKETS_LAYOUT_H #include #include #include "compatibility.h" /*************************************/ /* Name: reg_tlv * Size: 32 bits * Description: reg_tlv */ struct reg_tlv { u_int16_t reserved0; /* bit_offset:0 */ /* element_size: 16 */ u_int16_t len; /* bit_offset:16 */ /* element_size: 11 */ u_int8_t Type; /* bit_offset:27 */ /* element_size: 5 */ /* TX - 0, RX - ignore */ }; /*************************************/ /* Name: OperationTlv * Size: 128 bits * Description: */ struct OperationTlv { u_int8_t reserved0; /* bit_offset:0 */ /* element_size: 8 */ u_int8_t status; /* bit_offset:8 */ /* element_size: 7 */ u_int8_t dr; /* bit_offset:15 */ /* element_size: 1 */ u_int16_t len; /* bit_offset:16 */ /* element_size: 11 */ u_int8_t Type; /* bit_offset:27 */ /* element_size: 5 */ /* TX - 0, RX - ignore */ u_int8_t class; /* bit_offset:32 */ /* element_size: 8 */ u_int8_t method; /* bit_offset:40 */ /* element_size: 7 */ u_int8_t r; /* bit_offset:47 */ /* element_size: 1 */ u_int16_t register_id; /* bit_offset:48 */ /* element_size: 16 */ u_int64_t tid; /* bit_offset:64 */ /* element_size: 64 */ }; /*************************************/ /* Name: reg_tlv * Size: 32 bits * Description: reg_tlv */ u_int32_t reg_tlv_pack(struct reg_tlv* data_to_pack, u_int8_t* packed_buffer); void reg_tlv_unpack(struct reg_tlv* unpacked_data, u_int8_t* buffer_to_unpack); void reg_tlv_dump(struct reg_tlv* data_to_print, FILE* out_port); /*************************************/ /* Name: OperationTlv * Size: 128 bits * Description: */ u_int32_t OperationTlv_pack(struct OperationTlv* data_to_pack, u_int8_t* packed_buffer); void OperationTlv_unpack(struct OperationTlv* unpacked_data, u_int8_t* buffer_to_unpack); void OperationTlv_dump(struct OperationTlv* data_to_print, FILE* out_port); #endif /* internal_packets_functions_H */ mstflint-4.26.0/mtcr_ul/packets_common.h0000644000175000017500000001650714522641732020534 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef packet_common_H #define packet_common_H #include #include #include #include "compatibility.h" #ifndef __WIN__ #include /************************************/ /* Endianess Defines */ /* #if __BYTE_ORDER == __LITTLE_ENDIAN #ifndef PLATFORM_MEM // #define PLATFORM_MEM "Little Endianess" #endif #define _LITTLE_ENDIANESS #endif #if __BYTE_ORDER == __BIG_ENDIAN //#define PLATFORM_MEM "Big Endianess" #define _BIG_ENDIANESS #endif #else #define __BYTE_ORDER __LITTLE_ENDIAN #ifndef PLATFORM_MEM //#define PLATFORM_MEM "Big Endianess" #endif #define _BIG_ENDIANESS typedef unsigned __int8 u_int8_t; typedef __int8 int8_t; typedef unsigned __int16 u_int16_t; typedef __int16 int16_t; typedef unsigned __int32 u_int32_t; typedef __int32 int32_t; typedef unsigned __int64 u_int64_t; typedef __int64 int64_t; */ #endif /************************************/ /* Bit manipulation macros */ /* MASK generate a bit mask S bits width */ //#define MASK32(S) ( ((u_int32_t) ~0L) >> (32-(S)) ) #define MASK8(S) (((u_int8_t)~0) >> (8 - (S))) /* BITS generate a bit mask with bits O+S..O set (assumes 32 / 8 bit integer) */ //#define BITS32(O,S) ( MASK32(S) << (O) ) #define BITS8(O, S) (MASK8(S) << (O)) /* EXTRACT32/8 macro extracts S bits from (u_int32_t/u_int8_t)W with offset O * and shifts them O places to the right (right justifies the field extracted) */ //#define EXTRACT32(W,O,S) ( ((W)>>(O)) & MASK32(S) ) #define EXTRACT8(W, O, S) (((W) >> (O)) & MASK8(S)) #define PCK_MIN(a, b) ((a) < (b) ? (a) : (b)) /* INSERT32/8 macro inserts S bits with offset O from field F into word W (u_int32_t/u_int8_t) */ //#define INSERT32(W,F,O,S) ((W)= ( ( (W) & (~BITS32(O,S)) ) | (((F) & MASK32(S))<<(O)) )) #define INSERT8(W, F, O, S) ((W) = (((W) & (~BITS8(O, S))) | (((F)&MASK8(S)) << (O)))) //#define INSERTF_32(W,O1,F,O2,S) (INSERT32(W, EXTRACT32(F, O2, S), O1, S) ) #define INSERTF_8(W, O1, F, O2, S) (INSERT8(W, EXTRACT8(F, O2, S), O1, S)) /************************************/ #define PTR_64_OF_BUFF(buf, offset) ((u_int64_t*)((u_int8_t*)(buf) + (offset))) #define PTR_32_OF_BUFF(buf, offset) ((u_int32_t*)((u_int8_t*)(buf) + (offset))) #define PTR_8_OF_BUFF(buf, offset) ((u_int8_t*)((u_int8_t*)(buf) + (offset))) #define FIELD_64_OF_BUFF(buf, offset) (*PTR_64_OF_BUFF(buf, offset)) #define FIELD_32_OF_BUFF(buf, offset) (*PTR_32_OF_BUFF(buf, offset)) #define FIELD_8_OF_BUFF(buf, offset) (*PTR_8_OF_BUFF(buf, offset)) #define DWORD_N(buf, n) FIELD_32_OF_BUFF((buf), (n)*4) #define BYTE_N(buf, n) FIELD_8_OF_BUFF((buf), (n)) /************************************/ // #define MIN(a, b) ((a) < (b) ? (a) : (b)) /************************************/ #define CPU_TO_BE32(x) htonl(x) #define BE32_TO_CPU(x) ntohl(x) #define CPU_TO_BE16(x) htons(x) #define BE16_TO_CPU(x) ntohs(x) #define CPU_TO_LE32(x) __cpu_to_le32(x) #define LE32_TO_CPU(x) __le32_to_cpu(x) #ifdef _LITTLE_ENDIANESS #define CPU_TO_BE64(x) \ (((u_int64_t)htonl((u_int32_t)((x)&0xffffffff)) << 32) | ((u_int64_t)htonl((u_int32_t)((x >> 32) & 0xffffffff)))) #define BE64_TO_CPU(x) \ (((u_int64_t)ntohl((u_int32_t)((x)&0xffffffff)) << 32) | ((u_int64_t)ntohl((u_int32_t)((x >> 32) & 0xffffffff)))) #else #define CPU_TO_BE64(x) (x) #define BE64_TO_CPU(x) (x) #endif /************************************/ /* define macros to the architecture of the CPU */ #if defined(__linux__) || defined(__FreeBSD__) #if defined(__i386__) #define ARCH_x86 #elif defined(__x86_64__) #define ARCH_x86_64 #elif defined(__ia64__) #define ARCH_ia64 #elif defined(__m68k__) #define ARCH_m68k #elif defined(__hppa__) #define ARCH_hppa #elif defined(__PPC64__) || defined(__s390x__) #define ARCH_ppc64 #elif defined(__PPC__) #define ARCH_ppc #elif defined(__aarch64__) #define ARCH_arm64 #elif defined(__arm__) #define ARCH_arm6l #elif defined(__riscv) #define ARCH_riscv #elif defined(__loongarch_lp64) #define ARCH_loongarch64 #elif defined(__e2k__) #define ARCH_e2k #else #error Unknown CPU architecture using the linux OS #endif #elif defined(_WIN32) //# error Windows OS need to define macros #else #error Unknown OS #endif /**********************************/ /* define macros for print fields */ //#if defined (ARCH_ia64) || defined(ARCH_x86_64) || defined(ARCH_ppc64) || defined(__MINGW64__) /* #if !defined(UEFI_BUILD) && (defined (ARCH_ia64) || defined(ARCH_x86_64) || defined(ARCH_ppc64) || defined(__MINGW64__) || defined(ARCH_riscv)) # define U64H_FMT "0x%016lx" # define U64D_FMT "%lu" # define U32H_FMT "0x%08x" # define U16H_FMT "0x%04x" # define U8H_FMT "0x%02x" # define U32D_FMT "%u" # define STR_FMT "%s" #elif defined(ARCH_x86) || defined(ARCH_ppc) || defined(__MINGW32__) || defined(UEFI_BUILD) || defined(ARCH_arm6l) defined(ARCH_m68k) || defined(ARCH_hppa) # define U64H_FMT "0x%016llx" # define U64D_FMT "%llu" # define U32H_FMT "0x%08x" # define U16H_FMT "0x%04x" # define U8H_FMT "0x%02x" # define U32D_FMT "%u" # define STR_FMT "%s" #else // ARCH # error Unknown architecture #endif // ARCH */ /**********************************/ void push_to_buff_64(u_int8_t* buff, u_int32_t bit_offset, u_int64_t field_value); void push_to_buff_32(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_value); void push_to_buff(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int32_t field_value); u_int64_t pop_from_buff_64(u_int8_t* buff, u_int32_t bit_offset); u_int32_t pop_from_buff_32(u_int8_t* buff, u_int32_t bit_offset); u_int32_t pop_from_buff(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size); u_int32_t calc_array_field_offset(u_int32_t start_bit_offset, u_int32_t arr_elemnt_size, int arr_idx, u_int32_t parent_node_size, int is_big_endian_arr); #endif /* def packet_common_H */ mstflint-4.26.0/mtcr_ul/packets_common.c0000644000175000017500000001365414522641732020527 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "packets_common.h" #include #include #include #include #ifdef __WIN__ #include // for htonl #endif /************************************/ void push_to_buff_64(u_int8_t* buff, u_int32_t bit_offset, u_int64_t field_value) { #if defined(__ia64__) u_int32_t* buffer = PTR_32_OF_BUFF(buff, (bit_offset / 8)); u_int64_t value = CPU_TO_BE64(field_value); memcpy(buffer, &value, sizeof(value)); #else u_int64_t* buffer = PTR_64_OF_BUFF(buff, (bit_offset / 8)); memcpy(buffer, &field_value, sizeof(field_value)); *buffer = CPU_TO_BE64(*buffer); #endif } /************************************/ void push_to_buff_32(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_value) { u_int32_t* buffer = PTR_32_OF_BUFF(buff, (bit_offset / 8)); memcpy(buffer, &field_value, sizeof(field_value)); *buffer = CPU_TO_BE32(*buffer); } /************************************/ // the next function will push the field into the buffer by inserting it's MSB bits first // and therefore by doing it we save the CPU_TO_BE operation void push_to_buff(u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size, u_int32_t field_value) { u_int32_t i = 0; u_int32_t byte_n = bit_offset / 8; u_int32_t byte_n_offset = bit_offset % 8; u_int32_t to_push; // going over all bits in field while (i < field_size) { to_push = PCK_MIN(8 - byte_n_offset, field_size - i); i += to_push; // printf("Inserting %u bits(%u) to byte %u to bit %u\n", to_push, EXTRACT8(field_value, field_size - i, // to_push), byte_n, 8 - to_push - byte_n_offset); INSERTF_8(BYTE_N(buff, byte_n), 8 - to_push - byte_n_offset, field_value, field_size - i, to_push); byte_n_offset = 0; //(byte_n_offset + to_push) % 8; byte_n++; } } /************************************/ u_int64_t pop_from_buff_64(u_int8_t* buff, u_int32_t bit_offset) { #if defined(__ia64__) u_int64_t value = 0; memcpy(&value, PTR_32_OF_BUFF(buff, (bit_offset / 8)), sizeof(u_int64_t)); return (BE64_TO_CPU(value)); #else return (BE64_TO_CPU(FIELD_64_OF_BUFF(buff, (bit_offset / 8)))); #endif } /************************************/ u_int32_t pop_from_buff_32(u_int8_t* buff, u_int32_t bit_offset) { return (BE32_TO_CPU(FIELD_32_OF_BUFF(buff, (bit_offset / 8)))); } /************************************/ // the next function will pop the field into the buffer by removing it's MSB bits first // and therefore by doing it we save the BE_TO_CPU operation u_int32_t pop_from_buff(const u_int8_t* buff, u_int32_t bit_offset, u_int32_t field_size) { u_int32_t i = 0; u_int32_t byte_n = bit_offset / 8; u_int32_t byte_n_offset = bit_offset % 8; u_int32_t field_32 = 0; u_int32_t to_pop; // going over all bits in field while (i < field_size) { to_pop = PCK_MIN(8 - byte_n_offset, field_size - i); i += to_pop; // printf("Removing %u bits(%u) from byte %u to bit %u\n", to_pop, EXTRACT8(BYTE_N(buff, byte_n), 8 - to_pop - // byte_n_offset, to_pop), byte_n, field_size - i); INSERTF_8(field_32, field_size - i, BYTE_N(buff, byte_n), 8 - to_pop - byte_n_offset, to_pop); byte_n_offset = 0; //(byte_n_offset + to_pop) % 8; byte_n++; } return field_32; } /************************************ * Function: calc_array_field_address * Calculates array fields offset address ************************************/ u_int32_t calc_array_field_offset(u_int32_t start_bit_offset, u_int32_t arr_elemnt_size, int arr_idx, u_int32_t parent_node_size, int is_big_endian_arr) { u_int32_t offs; if (arr_elemnt_size > 32) { if (arr_elemnt_size % 32) { fprintf(stderr, "\n-W- Array field size is not 32 bit aligned.\n"); } start_bit_offset += arr_elemnt_size * (u_int32_t)arr_idx; return start_bit_offset; } if (is_big_endian_arr) { u_int32_t dword_delta; offs = start_bit_offset - arr_elemnt_size * (u_int32_t)arr_idx; dword_delta = (((start_bit_offset >> 5) << 2) - ((offs >> 5) << 2)) / 4; if (dword_delta) { offs += 64 * dword_delta; } } else { offs = start_bit_offset + arr_elemnt_size * (u_int32_t)arr_idx; } return PCK_MIN(32, parent_node_size) - (offs % 32) - arr_elemnt_size + ((offs >> 5) << 5); } mstflint-4.26.0/mtcr_ul/mtcr_tools_cif.c0000644000175000017500000004736014522641732020534 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #include #include "mtcr_tools_cif.h" #ifdef MST_UL #include #include #endif #define TOOLS_HCR_ADDR 0x80780 #define CR_MBOX_ADDR 0xe0000 #define CMD_IF_SIZE 28 #define CMD_IF_WAIT_GO 2000 #define TOOLS_HCR_SEM 0xf03bc // sem47 #define TOOLS_SEM_TRIES 1024 // Number of tries to obtain a TOOLS sem. #define MBOX_WRITE_OP 0x70 #define MBOX_READ_OP 0x71 #define REG_ACCESS_OP 0x3b #define MREAD4_ADV(offs, val_ptr, action_on_fail) \ do \ { \ if (mread4(mf, offs, val_ptr) != 4) \ { \ /*fprintf(stderr, "-E- Cr read (0x%08x) failed: %s(%d)\n", (u_int32_t)(offs), strerror(errno), \ * (u_int32_t)errno);*/ \ action_on_fail; \ } \ /*printf("-D- %s:%d mread4: offs = %#x, val = %#x\n", __FUNCTION__, __LINE__, offs, val);*/ \ } while (0) #define MWRITE4_ADV(offs, val, action_on_fail) \ do \ { \ if (mwrite4(mf, offs, val) != 4) \ { \ /*fprintf(stderr, "-E- Cr write (0x%08x, 0x%08x) failed: %s(%d)\n", (u_int32_t)(offs), (u_int32_t)(val), \ * strerror(errno), (u_int32_t)errno);*/ \ action_on_fail; \ } \ /*printf("-D- %s:%d mwrite4: offs = %#x, val = %#x\n", __FUNCTION__, __LINE__, offs, val);*/ \ } while (0) #define MREAD4(offs, val_ptr) MREAD4_ADV(offs, val_ptr, return ME_CR_ERROR) #define MWRITE4(offs, val) MWRITE4_ADV(offs, val, return ME_CR_ERROR) #define TOCPUn(s, n) \ do \ { \ u_int32_t ii; \ u_int32_t* p = (u_int32_t*)(s); \ for (ii = 0; ii < (n); ii++, p++) \ *p = __be32_to_cpu(*p); \ } while (0) #if __BYTE_ORDER == __BIG_ENDIAN #define SWAP_DW_BE(uint64_num) (((uint64_num)&0xffffffffULL) << 32) | (((uint64_num) >> 32) & 0xffffffffULL) #else #define SWAP_DW_BE(uint64_num) (uint64_num) #endif typedef struct tools_cmdif_t { u_int32_t in_param_h; u_int32_t in_param_l; u_int32_t out_param_h; u_int32_t out_param_l; u_int32_t input_modifier; u_int16_t token; u_int16_t opcode; u_int8_t opcode_modifier; u_int8_t t; u_int8_t e; u_int8_t go; u_int8_t status; } tools_cmdif; static int translate_status(int status) { switch (status) { case 0x0: return ME_OK; case 0x1: return ME_CMDIF_BUSY; case 0x2: return ME_CMDIF_BAD_OP; case 0x3: return ME_CMDIF_UNKN_TLV; case 0x4: return ME_CMDIF_BAD_SYS; case 0x9: return ME_CMDIF_RES_STATE; default: // printf("-D- Unknown status: 0x%x\n", status); return ME_CMDIF_UNKN_STATUS; } } extern void mpci_change(mfile* mf); static void tools_cmdif_pack(tools_cmdif* cmd, u_int32_t* buf) { memset((char*)buf, 0, CMD_IF_SIZE); buf[0] = cmd->in_param_h; buf[1] = cmd->in_param_l; buf[2] = cmd->input_modifier; // out h // out l buf[5] = MERGE(buf[5], cmd->token, 16, 16); buf[6] = MERGE(buf[6], cmd->opcode, 0, 12); buf[6] = MERGE(buf[6], cmd->opcode_modifier, 12, 4); buf[6] = MERGE(buf[6], cmd->e, 22, 1); } static void tools_cmdif_unpack(tools_cmdif* cmd, u_int32_t* buf) { memset(cmd, 0, sizeof(tools_cmdif)); cmd->in_param_h = buf[0]; cmd->in_param_l = buf[1]; cmd->input_modifier = buf[2]; cmd->out_param_h = buf[3]; cmd->out_param_l = buf[4]; cmd->opcode = EXTRACT(buf[6], 0, 12); cmd->opcode_modifier = EXTRACT(buf[6], 12, 4); cmd->status = EXTRACT(buf[6], 24, 8); } static int tools_cmdif_flash_lock(mfile* mf, int lock_state) { // Obtain Semaphore u_int32_t cnt = 0; u_int32_t word = 0; if (lock_state) { do { if (++cnt > TOOLS_SEM_TRIES) { // printf("-E- Can not obtain Flash semaphore"); return ME_SEM_LOCKED; } MREAD4(TOOLS_HCR_SEM, &word); if (word) { msleep(rand() % 5); } } while (word); } else { MWRITE4(TOOLS_HCR_SEM, 0); } return ME_OK; } int tools_cmdif_unlock_semaphore(mfile* mf) { return tools_cmdif_flash_lock(mf, 0); } static int tools_cmdif_wait_go(mfile* mf, int* retries) { int i; u_int8_t go_bit; int wait = 1; for (i = 0; i < CMD_IF_WAIT_GO; i++) { u_int32_t word = 0; MREAD4(TOOLS_HCR_ADDR + CMD_IF_SIZE - 4, &word); go_bit = EXTRACT(word, 23, 1); if (!go_bit) { if (retries) { *retries = i; } return 0; } if (i > 5) { // after some iteration put sleeps bwtween busy-wait msleep(wait); // don't hog the cpu with busy-wait if (wait < 8) { wait *= 2; // exponential backoff - up-to 8ms between polls } } } return ME_CMDIF_BUSY; } static int tools_cmdif_send_cmd_int(mfile* mf, tools_cmdif* cmd) { u_int32_t raw_cmd[CMD_IF_SIZE / 4]; int act_retries; int rc; // Check if the go BIT is ready rc = tools_cmdif_wait_go(mf, NULL); if (rc) { // printf("tools_cmdif_send: GO bit set before command issued (rc=%d)\n", rc); return ME_CMDIF_BUSY; } // Prepare the date of the command we're gonna execute tools_cmdif_pack(cmd, raw_cmd); if (mwrite4_block(mf, TOOLS_HCR_ADDR, raw_cmd, CMD_IF_SIZE) != CMD_IF_SIZE) { return ME_CR_ERROR; } raw_cmd[6] = MERGE(raw_cmd[6], 1, 23, 1); // go MWRITE4(TOOLS_HCR_ADDR + 24, raw_cmd[6]); rc = tools_cmdif_wait_go(mf, &act_retries); if (rc) { return ME_CMDIF_TOUT; } if (mread4_block(mf, TOOLS_HCR_ADDR, raw_cmd, CMD_IF_SIZE) != CMD_IF_SIZE) { return ME_CR_ERROR; } tools_cmdif_unpack(cmd, raw_cmd); if (cmd->status) { // printf("-E- CMD IF Bad status. Op: 0x%x Status: 0x%x\n", cmd->opcode, cmd->status); return ME_CMDIF_BAD_STATUS; // TODO - Special return code here - needs a specific attention } return ME_OK; } int tools_cmdif_send_inline_cmd_int(mfile* mf, u_int32_t in_param[2], u_int32_t out_param[2], u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier) { if (!mf) { return ME_BAD_PARAMS; } tools_cmdif cmdif; memset(&cmdif, 0, sizeof(tools_cmdif)); cmdif.in_param_l = in_param[0]; cmdif.in_param_h = in_param[1]; cmdif.input_modifier = input_modifier; cmdif.opcode = opcode; cmdif.opcode_modifier = opcode_modifier; // take semaphore mpci_change(mf); if (tools_cmdif_flash_lock(mf, 1)) { mpci_change(mf); return ME_SEM_LOCKED; } int rc = tools_cmdif_send_cmd_int(mf, &cmdif); // release it tools_cmdif_flash_lock(mf, 0); mpci_change(mf); if (out_param) { out_param[0] = cmdif.out_param_l; out_param[1] = cmdif.out_param_h; } if (rc || cmdif.status) { return (rc != ME_CMDIF_BAD_STATUS) ? rc : translate_status(cmdif.status); } return rc; } int tools_cmdif_send_inline_cmd(mfile* mf, u_int64_t in_param, u_int64_t* out_param, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier) { int rc; in_param = SWAP_DW_BE(in_param); rc = tools_cmdif_send_inline_cmd_int( mf, (u_int32_t*)((u_int8_t*)&in_param), (u_int32_t*)out_param, input_modifier, opcode, opcode_modifier); if (out_param) { u_int64_t swapped_out_param = SWAP_DW_BE(*out_param); *out_param = swapped_out_param; } return rc; } // read from mailbox method. output[2] is in BigEndian static int tools_cmdif_mbox_read(mfile* mf, u_int32_t offset, u_int32_t output[2]) { if (!mf || (offset & 0x1) != 0 || !output) { // offset should be quad word aligned (i.e only even dwords) return ME_BAD_PARAMS; } tools_cmdif cmdif; memset(&cmdif, 0, sizeof(tools_cmdif)); // printf("-D- offset: 0x%x\n", offset>>2); cmdif.input_modifier = offset; // offset is in dwords cmdif.opcode = MBOX_READ_OP; int rc = tools_cmdif_send_cmd_int(mf, &cmdif); // swap endianess because tools_cmdif_send_cmd_int returns output in CPU endianess output[0] = __be32_to_cpu(cmdif.out_param_l); output[1] = __be32_to_cpu(cmdif.out_param_h); if (rc || cmdif.status) { return (rc != ME_CMDIF_BAD_STATUS) ? rc : translate_status(cmdif.status); } // printf("-D- mbox read OK\n"); return ME_OK; } // write to mailbox method. input[2] is in BigEndian static int tools_cmdif_mbox_write(mfile* mf, u_int32_t offset, u_int32_t input[2]) { if (!mf || (offset & 0x1) != 0) { // offset should be quad word aligned (i.e only even dwords) return ME_BAD_PARAMS; } tools_cmdif cmdif; memset(&cmdif, 0, sizeof(tools_cmdif)); // swap endianess because tools_cmdif_send_cmd_int assumes input in CPU endianess cmdif.in_param_l = __be32_to_cpu(input[0]); cmdif.in_param_h = __be32_to_cpu(input[1]); cmdif.input_modifier = offset; // offset is in dwords cmdif.opcode = MBOX_WRITE_OP; int rc = tools_cmdif_send_cmd_int(mf, &cmdif); if (rc || cmdif.status) { return (rc != ME_CMDIF_BAD_STATUS) ? rc : translate_status(cmdif.status); } return ME_OK; } static int tools_cmdif_cr_mbox_write(mfile* mf, u_int32_t offset, u_int8_t* data, int size) { if (!mf || !data || (offset + size > TOOLS_HCR_MAX_MBOX)) { return ME_BAD_PARAMS; } if (mwrite_buffer(mf, CR_MBOX_ADDR + offset, data, size) != size) { return ME_CR_ERROR; } return ME_OK; } static int tools_cmdif_cr_mbox_read(mfile* mf, u_int32_t offset, u_int8_t* data, int size) { if (!mf || !data || (offset + size > TOOLS_HCR_MAX_MBOX)) { return ME_BAD_PARAMS; } if (mread_buffer(mf, CR_MBOX_ADDR + offset, data, size) != size) { return ME_CR_ERROR; } return ME_OK; } int tools_cmdif_is_supported(mfile* mf) { int rc = ME_OK; // run mailbox write cmd (read command fails after driver restart or internal reset) u_int32_t writebuf[2] = {0}; if (!mf) { return ME_BAD_PARAMS; } mpci_change(mf); // take semaphore if (tools_cmdif_flash_lock(mf, 1)) { rc = ME_SEM_LOCKED; goto cleanup; } rc = tools_cmdif_mbox_write(mf, 0, writebuf); if (rc) { tools_cmdif_flash_lock(mf, 0); goto cleanup; } tools_cmdif_flash_lock(mf, 0); cleanup: mpci_change(mf); return rc; } #define MAGIC 0xbadb00f int tools_cmdif_is_cr_mbox_supported(mfile* mf) { int rc; u_int32_t val = 0; mpci_change(mf); if ((rc = tools_cmdif_flash_lock(mf, 1))) { goto cleanup_no_sem; } // attempt to write/read from cr-mbox MWRITE4_ADV(CR_MBOX_ADDR, MAGIC, rc = ME_CR_ERROR; goto cleanup); MREAD4_ADV(CR_MBOX_ADDR, &val, rc = ME_CR_ERROR; goto cleanup); cleanup: tools_cmdif_flash_lock(mf, 0); cleanup_no_sem: mpci_change(mf); if (rc) { return rc; } return val == MAGIC ? ME_OK : ME_CMDIF_NOT_SUPP; } #define COMPLEMENT_TO_QUAD_ALIGNED(byte_sz) ((byte_sz) + ((8 - ((byte_sz)&7) == 8) ? 0 : (8 - ((byte_sz)&7)))) int tools_cmdif_send_mbox_command_int(mfile* mf, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier, int data_offs_in_mbox, void* data, int write_data_size, int read_data_size, int skip_write, int use_cr_mbox) { int read_data_size_quad_aligned = COMPLEMENT_TO_QUAD_ALIGNED(read_data_size); int write_data_size_quad_aligned = COMPLEMENT_TO_QUAD_ALIGNED(write_data_size); int rc, i; /*printf("-D- opcode: 0x%x, opcode mod: 0x%x, data_offs_in_mbox: 0x%x, write_data_size: 0x%x(0x%x), read_data_size 0x%x(0x%x), skip_write: %d\n",\ opcode, opcode_modifier, data_offs_in_mbox, write_data_size, write_data_size_quad_aligned, read_data_size, read_data_size_quad_aligned, skip_write);*/ // check params if (!mf || !data || data_offs_in_mbox < 0 || (data_offs_in_mbox & 7) != 0 || data_offs_in_mbox + read_data_size_quad_aligned > TOOLS_HCR_MAX_MBOX || data_offs_in_mbox + write_data_size_quad_aligned > TOOLS_HCR_MAX_MBOX) { return ME_BAD_PARAMS; } mpci_change(mf); // take semaphore if (tools_cmdif_flash_lock(mf, 1)) { mpci_change(mf); return ME_SEM_LOCKED; } // write to mailbox if needed u_int8_t mailbox[TOOLS_HCR_MAX_MBOX] = {0}; if (!skip_write) { // place the data inside 256 bytes buffer (init with zeroes) and write the entire buffer to mbox // it is required in the TOOLS_HCR HLD to write the ENTIRE MBOX memcpy(&(mailbox[data_offs_in_mbox]), data, write_data_size); if (use_cr_mbox == 1) { // write mbox to virtual cr-space rc = tools_cmdif_cr_mbox_write(mf, 0x0, mailbox, TOOLS_HCR_MAX_MBOX); if (rc) { goto cleanup; } } else { int i; for (i = 0; i < TOOLS_HCR_MAX_MBOX; i += 8) { // it is required to write in quad word chunks rc = tools_cmdif_mbox_write(mf, i / 4, (u_int32_t*)&mailbox[i]); if (rc) { goto cleanup; } } } } // send cmd tools_cmdif cmdif; memset(&cmdif, 0, sizeof(tools_cmdif)); cmdif.opcode = opcode; cmdif.opcode_modifier = opcode_modifier; cmdif.input_modifier = input_modifier; rc = tools_cmdif_send_cmd_int(mf, &cmdif); if (rc || cmdif.status) { if (rc == ME_CMDIF_BAD_STATUS) { rc = translate_status(cmdif.status); // means that driver is down or we dont support the extended version of // tools hcr. } goto cleanup; } // read from mbox // read read_data_size bytes from mbox and update our data if (use_cr_mbox == 1) { // read mailbox from virtual CR-space rc = tools_cmdif_cr_mbox_read(mf, data_offs_in_mbox, &mailbox[data_offs_in_mbox], read_data_size_quad_aligned); if (rc) { goto cleanup; } } else { for (i = data_offs_in_mbox; i < (data_offs_in_mbox + read_data_size_quad_aligned); i += 8) { // it is required to write in quad word chunks (64bits each time) rc = tools_cmdif_mbox_read(mf, i / 4, (u_int32_t*)&(mailbox[i])); if (rc) { goto cleanup; } } } // copy data back to user memcpy(data, &(mailbox[data_offs_in_mbox]), read_data_size); rc = ME_OK; cleanup: tools_cmdif_flash_lock(mf, 0); mpci_change(mf); return rc; } int tools_cmdif_reg_access(mfile* mf, void* data, int write_data_size, int read_data_size) { int rc; if (mf->hcr_params.supp_cr_mbox == 0) { rc = tools_cmdif_is_cr_mbox_supported(mf); if (rc == ME_OK) { mf->hcr_params.supp_cr_mbox = 1; } else if (rc == ME_CMDIF_NOT_SUPP) { mf->hcr_params.supp_cr_mbox = -1; } else { // CR error or Semaphore locked return rc; } } if (mf->hcr_params.supp_cr_mbox == 1) { rc = tools_cmdif_send_mbox_command_int(mf, 1, REG_ACCESS_OP, 0, 0, data, write_data_size, read_data_size, 0, 1); } else { rc = tools_cmdif_send_mbox_command_int(mf, 0, REG_ACCESS_OP, 0, 0, data, write_data_size, read_data_size, 0, 0); } return rc; } int tools_cmdif_send_mbox_command(mfile* mf, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier, int data_offs_in_mbox, void* data, int data_size, int skip_write) { return tools_cmdif_send_mbox_command_int( mf, input_modifier, opcode, opcode_modifier, data_offs_in_mbox, data, data_size, data_size, skip_write, 0); } mstflint-4.26.0/mtcr_ul/packets_layout.c0000644000175000017500000001223214522641732020543 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * End of legal section ...................................................... * */ /*** *** This file was generated at "Mon May 30 15:06:41 2011" *** by: *** % csp_pack_unpack.pm ../xml_files/packets_st.csp *** and modified to fit the needs of mtcr ***/ #include #include "packets_layout.h" #include "packets_common.h" /*************************************/ /* Name: OperationTlv * Size: 128 bits * Description: */ u_int32_t OperationTlv_pack(struct OperationTlv* data_to_pack, u_int8_t* packed_buffer) { push_to_buff(packed_buffer, 24, 8, data_to_pack->reserved0); push_to_buff(packed_buffer, 17, 7, data_to_pack->status); push_to_buff(packed_buffer, 16, 1, data_to_pack->dr); push_to_buff(packed_buffer, 5, 11, data_to_pack->len); push_to_buff(packed_buffer, 0, 5, data_to_pack->Type); push_to_buff(packed_buffer, 56, 8, data_to_pack->class); push_to_buff(packed_buffer, 49, 7, data_to_pack->method); push_to_buff(packed_buffer, 48, 1, data_to_pack->r); push_to_buff(packed_buffer, 32, 16, data_to_pack->register_id); push_to_buff_64(packed_buffer, 64, data_to_pack->tid); return 16; } void OperationTlv_unpack(struct OperationTlv* unpacked_data, u_int8_t* buffer_to_unpack) { unpacked_data->reserved0 = pop_from_buff(buffer_to_unpack, 24, 8); unpacked_data->status = pop_from_buff(buffer_to_unpack, 17, 7); unpacked_data->dr = pop_from_buff(buffer_to_unpack, 16, 1); unpacked_data->len = pop_from_buff(buffer_to_unpack, 5, 11); unpacked_data->Type = pop_from_buff(buffer_to_unpack, 0, 5); unpacked_data->class = pop_from_buff(buffer_to_unpack, 56, 8); unpacked_data->method = pop_from_buff(buffer_to_unpack, 49, 7); unpacked_data->r = pop_from_buff(buffer_to_unpack, 48, 1); unpacked_data->register_id = pop_from_buff(buffer_to_unpack, 32, 16); unpacked_data->tid = pop_from_buff_64(buffer_to_unpack, 64); } void OperationTlv_dump(struct OperationTlv* data_to_print, FILE* out_port) { fprintf(out_port, "OperationTlv::reserved0: " U32D_FMT "\n", data_to_print->reserved0); fprintf(out_port, "OperationTlv::status: " U32D_FMT "\n", data_to_print->status); fprintf(out_port, "OperationTlv::dr: " U32D_FMT "\n", data_to_print->dr); fprintf(out_port, "OperationTlv::len: " U32D_FMT "\n", data_to_print->len); fprintf(out_port, "OperationTlv::Type: " U32D_FMT "\n", data_to_print->Type); fprintf(out_port, "OperationTlv::class: " U32D_FMT "\n", data_to_print->class); fprintf(out_port, "OperationTlv::method: " U32D_FMT "\n", data_to_print->method); fprintf(out_port, "OperationTlv::r: " U32D_FMT "\n", data_to_print->r); fprintf(out_port, "OperationTlv::register_id: " U32D_FMT "\n", data_to_print->register_id); fprintf(out_port, "OperationTlv::tid: " U64D_FMT "\n", data_to_print->tid); } /*************************************/ /* Name: reg_tlv * Size: 32 bits * Description: reg_tlv */ u_int32_t reg_tlv_pack(struct reg_tlv* data_to_pack, u_int8_t* packed_buffer) { push_to_buff(packed_buffer, 16, 16, data_to_pack->reserved0); push_to_buff(packed_buffer, 5, 11, data_to_pack->len); push_to_buff(packed_buffer, 0, 5, data_to_pack->Type); return 4; } void reg_tlv_unpack(struct reg_tlv* unpacked_data, u_int8_t* buffer_to_unpack) { unpacked_data->reserved0 = pop_from_buff(buffer_to_unpack, 16, 16); unpacked_data->len = pop_from_buff(buffer_to_unpack, 5, 11); unpacked_data->Type = pop_from_buff(buffer_to_unpack, 0, 5); } void reg_tlv_dump(struct reg_tlv* data_to_print, FILE* out_port) { fprintf(out_port, "reg_tlv::reserved0: " U32D_FMT "\n", data_to_print->reserved0); fprintf(out_port, "reg_tlv::len: " U32D_FMT "\n", data_to_print->len); fprintf(out_port, "reg_tlv::Type: " U32D_FMT "\n", data_to_print->Type); } mstflint-4.26.0/mtcr_ul/mlx5_ifc_stub.h0000644000175000017500000003076114522641732020273 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLX5_IFC_USER_SPACE_STUB_H #define MLX5_IFC_USER_SPACE_STUB_H /* * We are using several structure definitions from Linux kernel header files in this user space code. * While this violates the typical assumption that kernel headers should not be used in user space code, * we have determined that these specific structures have not been modified for years and are unlikely * to be modified in the future. * * As a result, we have decided to replicate the necessary definitions directly in our codebase rather * than include the kernel headers. * * However, it should be noted that if, under very rare circumstances, these replicated definitions * are updated in the Linux kernel codebase, we will need to ensure that any necessary changes are * propagated to our codebase to avoid potential issues. */ enum { MLX5_CMD_OP_QUERY_HCA_CAP = 0x100, MLX5_CMD_OP_QUERY_ADAPTER = 0x101, MLX5_CMD_OP_INIT_HCA = 0x102, MLX5_CMD_OP_TEARDOWN_HCA = 0x103, MLX5_CMD_OP_ENABLE_HCA = 0x104, MLX5_CMD_OP_DISABLE_HCA = 0x105, MLX5_CMD_OP_QUERY_PAGES = 0x107, MLX5_CMD_OP_MANAGE_PAGES = 0x108, MLX5_CMD_OP_SET_HCA_CAP = 0x109, MLX5_CMD_OP_QUERY_ISSI = 0x10a, MLX5_CMD_OP_SET_ISSI = 0x10b, MLX5_CMD_OP_SET_DRIVER_VERSION = 0x10d, MLX5_CMD_OP_QUERY_SF_PARTITION = 0x111, MLX5_CMD_OP_ALLOC_SF = 0x113, MLX5_CMD_OP_DEALLOC_SF = 0x114, MLX5_CMD_OP_CREATE_MKEY = 0x200, MLX5_CMD_OP_QUERY_MKEY = 0x201, MLX5_CMD_OP_DESTROY_MKEY = 0x202, MLX5_CMD_OP_QUERY_SPECIAL_CONTEXTS = 0x203, MLX5_CMD_OP_PAGE_FAULT_RESUME = 0x204, MLX5_CMD_OP_ALLOC_MEMIC = 0x205, MLX5_CMD_OP_DEALLOC_MEMIC = 0x206, MLX5_CMD_OP_MODIFY_MEMIC = 0x207, MLX5_CMD_OP_CREATE_EQ = 0x301, MLX5_CMD_OP_DESTROY_EQ = 0x302, MLX5_CMD_OP_QUERY_EQ = 0x303, MLX5_CMD_OP_GEN_EQE = 0x304, MLX5_CMD_OP_CREATE_CQ = 0x400, MLX5_CMD_OP_DESTROY_CQ = 0x401, MLX5_CMD_OP_QUERY_CQ = 0x402, MLX5_CMD_OP_MODIFY_CQ = 0x403, MLX5_CMD_OP_CREATE_QP = 0x500, MLX5_CMD_OP_DESTROY_QP = 0x501, MLX5_CMD_OP_RST2INIT_QP = 0x502, MLX5_CMD_OP_INIT2RTR_QP = 0x503, MLX5_CMD_OP_RTR2RTS_QP = 0x504, MLX5_CMD_OP_RTS2RTS_QP = 0x505, MLX5_CMD_OP_SQERR2RTS_QP = 0x506, MLX5_CMD_OP_2ERR_QP = 0x507, MLX5_CMD_OP_2RST_QP = 0x50a, MLX5_CMD_OP_QUERY_QP = 0x50b, MLX5_CMD_OP_SQD_RTS_QP = 0x50c, MLX5_CMD_OP_INIT2INIT_QP = 0x50e, MLX5_CMD_OP_CREATE_PSV = 0x600, MLX5_CMD_OP_DESTROY_PSV = 0x601, MLX5_CMD_OP_CREATE_SRQ = 0x700, MLX5_CMD_OP_DESTROY_SRQ = 0x701, MLX5_CMD_OP_QUERY_SRQ = 0x702, MLX5_CMD_OP_ARM_RQ = 0x703, MLX5_CMD_OP_CREATE_XRC_SRQ = 0x705, MLX5_CMD_OP_DESTROY_XRC_SRQ = 0x706, MLX5_CMD_OP_QUERY_XRC_SRQ = 0x707, MLX5_CMD_OP_ARM_XRC_SRQ = 0x708, MLX5_CMD_OP_CREATE_DCT = 0x710, MLX5_CMD_OP_DESTROY_DCT = 0x711, MLX5_CMD_OP_DRAIN_DCT = 0x712, MLX5_CMD_OP_QUERY_DCT = 0x713, MLX5_CMD_OP_ARM_DCT_FOR_KEY_VIOLATION = 0x714, MLX5_CMD_OP_CREATE_XRQ = 0x717, MLX5_CMD_OP_DESTROY_XRQ = 0x718, MLX5_CMD_OP_QUERY_XRQ = 0x719, MLX5_CMD_OP_ARM_XRQ = 0x71a, MLX5_CMD_OP_QUERY_XRQ_DC_PARAMS_ENTRY = 0x725, MLX5_CMD_OP_SET_XRQ_DC_PARAMS_ENTRY = 0x726, MLX5_CMD_OP_QUERY_XRQ_ERROR_PARAMS = 0x727, MLX5_CMD_OP_RELEASE_XRQ_ERROR = 0x729, MLX5_CMD_OP_MODIFY_XRQ = 0x72a, MLX5_CMD_OP_QUERY_ESW_FUNCTIONS = 0x740, MLX5_CMD_OP_QUERY_VPORT_STATE = 0x750, MLX5_CMD_OP_MODIFY_VPORT_STATE = 0x751, MLX5_CMD_OP_QUERY_ESW_VPORT_CONTEXT = 0x752, MLX5_CMD_OP_MODIFY_ESW_VPORT_CONTEXT = 0x753, MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT = 0x754, MLX5_CMD_OP_MODIFY_NIC_VPORT_CONTEXT = 0x755, MLX5_CMD_OP_QUERY_ROCE_ADDRESS = 0x760, MLX5_CMD_OP_SET_ROCE_ADDRESS = 0x761, MLX5_CMD_OP_QUERY_HCA_VPORT_CONTEXT = 0x762, MLX5_CMD_OP_MODIFY_HCA_VPORT_CONTEXT = 0x763, MLX5_CMD_OP_QUERY_HCA_VPORT_GID = 0x764, MLX5_CMD_OP_QUERY_HCA_VPORT_PKEY = 0x765, MLX5_CMD_OP_QUERY_VNIC_ENV = 0x76f, MLX5_CMD_OP_QUERY_VPORT_COUNTER = 0x770, MLX5_CMD_OP_ALLOC_Q_COUNTER = 0x771, MLX5_CMD_OP_DEALLOC_Q_COUNTER = 0x772, MLX5_CMD_OP_QUERY_Q_COUNTER = 0x773, MLX5_CMD_OP_SET_MONITOR_COUNTER = 0x774, MLX5_CMD_OP_ARM_MONITOR_COUNTER = 0x775, MLX5_CMD_OP_SET_PP_RATE_LIMIT = 0x780, MLX5_CMD_OP_QUERY_RATE_LIMIT = 0x781, MLX5_CMD_OP_CREATE_SCHEDULING_ELEMENT = 0x782, MLX5_CMD_OP_DESTROY_SCHEDULING_ELEMENT = 0x783, MLX5_CMD_OP_QUERY_SCHEDULING_ELEMENT = 0x784, MLX5_CMD_OP_MODIFY_SCHEDULING_ELEMENT = 0x785, MLX5_CMD_OP_CREATE_QOS_PARA_VPORT = 0x786, MLX5_CMD_OP_DESTROY_QOS_PARA_VPORT = 0x787, MLX5_CMD_OP_ALLOC_PD = 0x800, MLX5_CMD_OP_DEALLOC_PD = 0x801, MLX5_CMD_OP_ALLOC_UAR = 0x802, MLX5_CMD_OP_DEALLOC_UAR = 0x803, MLX5_CMD_OP_CONFIG_INT_MODERATION = 0x804, MLX5_CMD_OP_ACCESS_REG = 0x805, MLX5_CMD_OP_ATTACH_TO_MCG = 0x806, MLX5_CMD_OP_DETACH_FROM_MCG = 0x807, MLX5_CMD_OP_GET_DROPPED_PACKET_LOG = 0x80a, MLX5_CMD_OP_MAD_IFC = 0x50d, MLX5_CMD_OP_QUERY_MAD_DEMUX = 0x80b, MLX5_CMD_OP_SET_MAD_DEMUX = 0x80c, MLX5_CMD_OP_NOP = 0x80d, MLX5_CMD_OP_ALLOC_XRCD = 0x80e, MLX5_CMD_OP_DEALLOC_XRCD = 0x80f, MLX5_CMD_OP_ALLOC_TRANSPORT_DOMAIN = 0x816, MLX5_CMD_OP_DEALLOC_TRANSPORT_DOMAIN = 0x817, MLX5_CMD_OP_QUERY_CONG_STATUS = 0x822, MLX5_CMD_OP_MODIFY_CONG_STATUS = 0x823, MLX5_CMD_OP_QUERY_CONG_PARAMS = 0x824, MLX5_CMD_OP_MODIFY_CONG_PARAMS = 0x825, MLX5_CMD_OP_QUERY_CONG_STATISTICS = 0x826, MLX5_CMD_OP_ADD_VXLAN_UDP_DPORT = 0x827, MLX5_CMD_OP_DELETE_VXLAN_UDP_DPORT = 0x828, MLX5_CMD_OP_SET_L2_TABLE_ENTRY = 0x829, MLX5_CMD_OP_QUERY_L2_TABLE_ENTRY = 0x82a, MLX5_CMD_OP_DELETE_L2_TABLE_ENTRY = 0x82b, MLX5_CMD_OP_SET_WOL_ROL = 0x830, MLX5_CMD_OP_QUERY_WOL_ROL = 0x831, MLX5_CMD_OP_CREATE_LAG = 0x840, MLX5_CMD_OP_MODIFY_LAG = 0x841, MLX5_CMD_OP_QUERY_LAG = 0x842, MLX5_CMD_OP_DESTROY_LAG = 0x843, MLX5_CMD_OP_CREATE_VPORT_LAG = 0x844, MLX5_CMD_OP_DESTROY_VPORT_LAG = 0x845, MLX5_CMD_OP_CREATE_TIR = 0x900, MLX5_CMD_OP_MODIFY_TIR = 0x901, MLX5_CMD_OP_DESTROY_TIR = 0x902, MLX5_CMD_OP_QUERY_TIR = 0x903, MLX5_CMD_OP_CREATE_SQ = 0x904, MLX5_CMD_OP_MODIFY_SQ = 0x905, MLX5_CMD_OP_DESTROY_SQ = 0x906, MLX5_CMD_OP_QUERY_SQ = 0x907, MLX5_CMD_OP_CREATE_RQ = 0x908, MLX5_CMD_OP_MODIFY_RQ = 0x909, MLX5_CMD_OP_SET_DELAY_DROP_PARAMS = 0x910, MLX5_CMD_OP_DESTROY_RQ = 0x90a, MLX5_CMD_OP_QUERY_RQ = 0x90b, MLX5_CMD_OP_CREATE_RMP = 0x90c, MLX5_CMD_OP_MODIFY_RMP = 0x90d, MLX5_CMD_OP_DESTROY_RMP = 0x90e, MLX5_CMD_OP_QUERY_RMP = 0x90f, MLX5_CMD_OP_CREATE_TIS = 0x912, MLX5_CMD_OP_MODIFY_TIS = 0x913, MLX5_CMD_OP_DESTROY_TIS = 0x914, MLX5_CMD_OP_QUERY_TIS = 0x915, MLX5_CMD_OP_CREATE_RQT = 0x916, MLX5_CMD_OP_MODIFY_RQT = 0x917, MLX5_CMD_OP_DESTROY_RQT = 0x918, MLX5_CMD_OP_QUERY_RQT = 0x919, MLX5_CMD_OP_SET_FLOW_TABLE_ROOT = 0x92f, MLX5_CMD_OP_CREATE_FLOW_TABLE = 0x930, MLX5_CMD_OP_DESTROY_FLOW_TABLE = 0x931, MLX5_CMD_OP_QUERY_FLOW_TABLE = 0x932, MLX5_CMD_OP_CREATE_FLOW_GROUP = 0x933, MLX5_CMD_OP_DESTROY_FLOW_GROUP = 0x934, MLX5_CMD_OP_QUERY_FLOW_GROUP = 0x935, MLX5_CMD_OP_SET_FLOW_TABLE_ENTRY = 0x936, MLX5_CMD_OP_QUERY_FLOW_TABLE_ENTRY = 0x937, MLX5_CMD_OP_DELETE_FLOW_TABLE_ENTRY = 0x938, MLX5_CMD_OP_ALLOC_FLOW_COUNTER = 0x939, MLX5_CMD_OP_DEALLOC_FLOW_COUNTER = 0x93a, MLX5_CMD_OP_QUERY_FLOW_COUNTER = 0x93b, MLX5_CMD_OP_MODIFY_FLOW_TABLE = 0x93c, MLX5_CMD_OP_ALLOC_PACKET_REFORMAT_CONTEXT = 0x93d, MLX5_CMD_OP_DEALLOC_PACKET_REFORMAT_CONTEXT = 0x93e, MLX5_CMD_OP_QUERY_PACKET_REFORMAT_CONTEXT = 0x93f, MLX5_CMD_OP_ALLOC_MODIFY_HEADER_CONTEXT = 0x940, MLX5_CMD_OP_DEALLOC_MODIFY_HEADER_CONTEXT = 0x941, MLX5_CMD_OP_QUERY_MODIFY_HEADER_CONTEXT = 0x942, MLX5_CMD_OP_FPGA_CREATE_QP = 0x960, MLX5_CMD_OP_FPGA_MODIFY_QP = 0x961, MLX5_CMD_OP_FPGA_QUERY_QP = 0x962, MLX5_CMD_OP_FPGA_DESTROY_QP = 0x963, MLX5_CMD_OP_FPGA_QUERY_QP_COUNTERS = 0x964, MLX5_CMD_OP_CREATE_GENERAL_OBJECT = 0xa00, MLX5_CMD_OP_MODIFY_GENERAL_OBJECT = 0xa01, MLX5_CMD_OP_QUERY_GENERAL_OBJECT = 0xa02, MLX5_CMD_OP_DESTROY_GENERAL_OBJECT = 0xa03, MLX5_CMD_OP_CREATE_UCTX = 0xa04, MLX5_CMD_OP_DESTROY_UCTX = 0xa06, MLX5_CMD_OP_CREATE_UMEM = 0xa08, MLX5_CMD_OP_DESTROY_UMEM = 0xa0a, MLX5_CMD_OP_SYNC_STEERING = 0xb00, MLX5_CMD_OP_QUERY_VHCA_STATE = 0xb0d, MLX5_CMD_OP_MODIFY_VHCA_STATE = 0xb0e, MLX5_CMD_OP_MAX }; struct mlx5_ifc_access_register_out_bits { u8 status[0x8]; u8 reserved_at_8[0x18]; u8 syndrome[0x20]; u8 reserved_at_40[0x40]; u8 register_data[][0x20]; }; struct mlx5_ifc_access_register_in_bits { u8 opcode[0x10]; u8 reserved_at_10[0x10]; u8 reserved_at_20[0x10]; u8 op_mod[0x10]; u8 reserved_at_40[0x10]; u8 register_id[0x10]; u8 argument[0x20]; u8 register_data[][0x20]; }; #endif /* MLX5_IFC_USER_SPACE_STUB_H */mstflint-4.26.0/mtcr_ul/mtcr_mem_ops.c0000644000175000017500000001054414522641732020204 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mtcr_mem_ops.h" #if defined(__WIN__) || defined(MST_UL) || defined(__FreeBSD__) || defined(__VMKERNEL_UW_NATIVE__) #else #include "mst_pciconf.h" #include #endif #include #include #include int mtcr_memaccess(mfile* mf, unsigned int offset, unsigned int size, unsigned char* data, int rw, mem_type_t type) { #if defined(__WIN__) || defined(MST_UL) || defined(__FreeBSD__) || defined(__VMKERNEL_UW_NATIVE__) (void)type; (void)mf; (void)offset; (void)size; (void)data; (void)rw; return ME_UNSUPPORTED_OPERATION; #else if (mf->ul_ctx) { return ME_UNSUPPORTED_OPERATION; } unsigned int iterator = 0; while (iterator < size) { unsigned int op_size = ((size - iterator) > PCICONF_MAX_MEMACCESS_SIZE) ? PCICONF_MAX_MEMACCESS_SIZE : (size - iterator); struct mst_mem_access_st mem_access; memset(&mem_access, 0, sizeof(mem_access)); mem_access._rw = rw; mem_access.offset = offset + iterator; mem_access.size = op_size; mem_access.mem_type = type; if (rw) { /* * Write OP */ memcpy(mem_access.data, data + iterator, op_size); } if (ioctl(mf->fd, PCICONF_MEM_ACCESS, &mem_access) < 0) { return ME_ERROR; } if (!rw) { /* * Read OP */ memcpy(data + iterator, mem_access.data, op_size); } iterator += op_size; } return ME_OK; #endif } int get_mem_props(mfile* mf, mem_type_t type, mem_props_t* props) { #if defined(__WIN__) || defined(MST_UL) || defined(__FreeBSD__) || defined(__VMKERNEL_UW_NATIVE__) (void)mf; (void)type; (void)props; return ME_UNSUPPORTED_OPERATION; #else if (!mf || !mf->dma_props) { return ME_UNSUPPORTED_OPERATION; } if (type >= MEM_END) { return ME_BAD_PARAMS; } struct dma_prop* dma_props_p = (struct dma_prop*)mf->dma_props + (int)type; props->dma_pa = dma_props_p->dma_pa; props->mem_size = dma_props_p->mem_size; return ME_OK; #endif } void init_mem_ops(mfile* mf) { #if defined(__WIN__) || defined(MST_UL) || defined(__FreeBSD__) || defined(__VMKERNEL_UW_NATIVE__) (void)mf; #else if (!mf || mf->ul_ctx) { return; } struct mst_dma_props_st dma_props_params; memset(&dma_props_params, 0, sizeof(dma_props_params)); if (ioctl(mf->fd, PCICONF_DMA_PROPS, &dma_props_params) < 0) { mf->dma_props = NULL; } else { mf->dma_props = malloc(sizeof(dma_props_params.dma_props)); if (mf->dma_props) { memcpy(mf->dma_props, &dma_props_params.dma_props, sizeof(dma_props_params.dma_props)); } } #endif } void close_mem_ops(mfile* mf) { if (mf->dma_props) { free(mf->dma_props); mf->dma_props = NULL; } } mstflint-4.26.0/mtcr_ul/mtcr_ib_res_mgt.c0000644000175000017500000001522614522641732020661 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mtcr_ib_res_mgt.h" #include "mtcr_ib.h" #include "packets_common.h" #include #define IB_SMP_DATA_SIZE 48 #define DBG_PRINTF(...) \ do \ { \ if (getenv("MFT_DEBUG") != NULL) \ { \ fprintf(stderr, __VA_ARGS__); \ } \ } while (0) /* Description - */ /* Size in bytes - 12 */ struct semaphore_lock_cmd { /*---------------- DWORD[0] (Offset 0x0) ----------------*/ /* Description - The maximal Semaphore Address supported by the device. */ /* 0.0 - 0.7 */ u_int8_t semaphore_max_addr; /* Description - The lease time for a lock is 50msec *2^LeaseTimeExponent */ /* 0.16 - 0.23 */ u_int8_t lease_time_exponent; /* Description - Should be used to extend a lock. When a lock owner application wish to extend the lock it should * set this bit to 1 and fill the Key field with key obtained by the GetResp() to successful acquiring of a lock. */ /* 0.31 - 4.31 */ u_int8_t is_lease; /*---------------- DWORD[1] (Offset 0x4) ----------------*/ /* Description - The specific Semaphore being queried or requested a lock for */ /* 4.0 - 4.15 */ u_int16_t semaphore_addr; /* Description - 1 = Lock, 2 = Extend, 3 = Release */ /* 4.16 - 4.17 */ u_int8_t op; /*---------------- DWORD[2] (Offset 0x8) ----------------*/ /* Description - This field is provided by the device on a successful lock. It should be used by the user in order * to either extend or release of the lock. */ /* 8.0 - 8.31 */ u_int32_t lock_key; }; void semaphore_lock_cmd_pack(const struct semaphore_lock_cmd* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 24; push_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->semaphore_max_addr); offset = 8; push_to_buff(ptr_buff, offset, 8, (u_int32_t)ptr_struct->lease_time_exponent); offset = 0; push_to_buff(ptr_buff, offset, 1, (u_int32_t)ptr_struct->is_lease); offset = 48; push_to_buff(ptr_buff, offset, 16, (u_int32_t)ptr_struct->semaphore_addr); offset = 46; push_to_buff(ptr_buff, offset, 2, (u_int32_t)ptr_struct->op); offset = 64; push_to_buff_32(ptr_buff, offset, ptr_struct->lock_key); } void semaphore_lock_cmd_unpack(struct semaphore_lock_cmd* ptr_struct, u_int8_t* ptr_buff) { u_int32_t offset; int i = 0; u_int8_t val = 0; (void)val; (void)offset; (void)i; (void)ptr_struct; (void)ptr_buff; offset = 24; ptr_struct->semaphore_max_addr = (u_int8_t)pop_from_buff(ptr_buff, offset, 8); offset = 8; ptr_struct->lease_time_exponent = (u_int8_t)pop_from_buff(ptr_buff, offset, 8); offset = 0; ptr_struct->is_lease = (u_int8_t)pop_from_buff(ptr_buff, offset, 1); offset = 48; ptr_struct->semaphore_addr = (u_int16_t)pop_from_buff(ptr_buff, offset, 16); offset = 46; ptr_struct->op = (u_int8_t)pop_from_buff(ptr_buff, offset, 2); offset = 64; ptr_struct->lock_key = pop_from_buff_32(ptr_buff, offset); } int mib_semaphore_lock_vs_mad(mfile* mf, sem_op_t op, u_int32_t sem_addr, u_int32_t lock_key, u_int32_t* res, int* is_leaseable, u_int8_t* lease_time_exp, sem_lock_method_t method) { #ifndef NO_INBAND u_int8_t mad_data[IB_SMP_DATA_SIZE] = {0}; int rc = ME_OK; struct semaphore_lock_cmd cmd; memset(&cmd, 0, sizeof(cmd)); cmd.semaphore_addr = sem_addr; cmd.op = op; cmd.lock_key = lock_key; DBG_PRINTF("#######BFORE#####\n# SEM_ADDR: 0x%x\n# OP: %d\n# Lock_Key: 0x%x\n#################\n", cmd.semaphore_addr, cmd.op, cmd.lock_key); semaphore_lock_cmd_pack(&cmd, mad_data); if (method == SEM_LOCK_SET) { rc = mib_semaphore_lock_smp(mf, mad_data, method); } else { rc = mib_semaphore_lock_smp(mf, mad_data, method); } semaphore_lock_cmd_unpack(&cmd, mad_data); DBG_PRINTF("#######AFTER#####\n# SEM_ADDR: 0x%x\n# OP: %d\n# Lock_Key: 0x%x\n#################\n", cmd.semaphore_addr, cmd.op, cmd.lock_key); *res = cmd.lock_key; *is_leaseable = (int)cmd.is_lease; *lease_time_exp = cmd.lease_time_exponent; return rc; #else (void)mf; (void)op; (void)sem_addr; (void)lock_key; (void)res; (void)is_leaseable; (void)lease_time_exp; (void)method; return 1; #endif } int mib_semaphore_lock_is_supported(mfile* mf) { #ifndef NO_INBAND u_int8_t mad_data[IB_SMP_DATA_SIZE] = {0}; struct semaphore_lock_cmd cmd; memset(&cmd, 0, sizeof(cmd)); mib_smp_get(mf, mad_data, SMP_SEMAPHOE_LOCK_CMD, 0); semaphore_lock_cmd_unpack(&cmd, mad_data); DBG_PRINTF("###### QUERY #####\n# MAX_SEM_ADDR: 0x%x\n#################\n", cmd.semaphore_max_addr); if (cmd.semaphore_max_addr > 0) { return 1; } else { return 0; } #else (void)mf; return 1; #endif } mstflint-4.26.0/mtcr_ul/mtcr_ib.h0000644000175000017500000000606014522641732017142 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * * mtcr_ib.h - Mellanox Software tools (mst) IB related driver definitions * */ #ifndef _MTCR_IB_H #define _MTCR_IB_H #include int mib_open(const char* name, mfile* mf, int mad_init); int mib_close(mfile* mf); int mib_read4(mfile* mf, unsigned int offset, u_int32_t* value); int mib_write4(mfile* mf, unsigned int offset, u_int32_t value); int mib_read64(mfile* mf, unsigned int offset, void* data, int length); int mib_write64(mfile* mf, unsigned int offset, void* data, int length); int mib_readblock(mfile* mf, unsigned int offset, u_int32_t* data, int length); int mib_writeblock(mfile* mf, unsigned int offset, u_int32_t* data, int length); int mib_swreset(mfile* mf); int mib_get_chunk_size(mfile* mf); int mib_acces_reg_mad(mfile* mf, u_int8_t* data); int mib_smp_set(mfile* mf, u_int8_t* data, u_int16_t attr_id, u_int32_t attr_mod); int mib_smp_get(mfile* mf, u_int8_t* data, u_int16_t attr_id, u_int32_t attr_mod); int mib_semaphore_lock_smp(mfile* mf, u_int8_t* data, sem_lock_method_t method); int mib_get_gmp(mfile* mf, unsigned attr_id, unsigned mod, u_int32_t* vsmad_data, size_t vsmad_data_len); int mib_supports_reg_access_gmp(mfile* mf, maccess_reg_method_t reg_method); int mib_send_gmp_access_reg_mad(mfile* mf, u_int32_t* data, u_int32_t reg_size, u_int32_t reg_id, maccess_reg_method_t reg_method, int* reg_status); int mib_supports_reg_access_cls_a(mfile* mf, maccess_reg_method_t reg_method); int mib_send_cls_a_access_reg_mad(mfile* mf, u_int8_t* data); #endif mstflint-4.26.0/mtcr_ul/mlx5ctl.c0000644000175000017500000000745114522641732017113 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include "mtcr_mf.h" #include "mlx5ctl.h" #include "mlx5ctl_ioctl.h" static int mlx5_cmd_ioctl(int fd, struct mlx5ctl_cmd_inout *cmd) { return ioctl(fd, MLX5CTL_IOCTL_CMD_INOUT, cmd); } void mlx5ctl_set_device_id(mfile* mf) { unsigned char register_data[1024]; int reg_status; memset(register_data, 0, sizeof(register_data)); int rc = mlx5_control_access_register(mf->fd, register_data, sizeof(register_data), 0x9020, MLX5CTL_METHOD_READ, ®_status, mf); if (!rc) { memcpy(&mf->device_hw_id, ®ister_data[8], 4); mf->device_hw_id = __cpu_to_be32(mf->device_hw_id); } } int mlx5_control_access_register(int fd, void *data_in, int size_in, __u16 reg_id, int method, int *reg_status, mfile* mf) { int outlen = MLX5_ST_SZ_BYTES(access_register_out) + size_in; int inlen = MLX5_ST_SZ_BYTES(access_register_in) + size_in; struct mlx5ctl_cmd_inout cmd = {0}; int err = -ENOMEM; u32 *out = NULL; u32 *in = NULL; void *data; void *status; in = malloc(inlen); out = malloc(outlen); if (!in || !out) { goto out; } memset(in, 0, inlen); memset(out, 0, outlen); cmd = (struct mlx5ctl_cmd_inout){ .in = in, .inlen = inlen, .out = out, .outlen = outlen, }; data = MLX5_ADDR_OF(access_register_in, in, register_data); memcpy(data, data_in, size_in); MLX5_SET(access_register_in, in, opcode, MLX5_CMD_OP_ACCESS_REG); MLX5_SET(access_register_in, in, op_mod, method); MLX5_SET(access_register_in, in, argument, 0); MLX5_SET(access_register_in, in, register_id, reg_id); err = mlx5_cmd_ioctl(fd, &cmd); if (err) { goto out; } data = MLX5_ADDR_OF(access_register_out, out, register_data); status = MLX5_ADDR_OF(access_register_out, out, status); memcpy(data_in, data, size_in); memcpy(reg_status, status, sizeof(int)); MLX5CTL_DEBUG_PRINT(mf, "register id = 0x%x, reg status = %d, error = %d\n", reg_id, *reg_status, err); out: free(out); free(in); return err; } mstflint-4.26.0/mtcr_ul/mtcr_ib_ofed.c0000644000175000017500000017157114522641732020144 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /******************************************************** ** * ibvsmad.c * * the ibvsmad library. * this library provides vendor specific mad capabilities. * * mread64, mwrite64 - IS3 I2C bus access MAD - ExtPortAccess -> I2C compliant port #1 * mread4 , mwrite4 - IS3 CR-Space access MAD - ConfigSpaceAccess * * * author: yoniy@mellanox.co.il , Apr. 16th 2007 */ #if HAVE_CONFIG_H #include #endif #include #include #include #include #include #include #include #ifdef MST_UL #include #include "mtcr_int_defs.h" #endif #include "mtcr_ib.h" #ifndef __WIN__ #include "mtcr_mf.h" #include "mtcr_com_defs.h" #endif #include #ifdef __WIN__ #include #include "com_def.h" #define BAD_RET_VAL 1 #define LIB_IBMAD "libibmad" #define MY_GetPointerAddress(ivm, func_name, f_type) \ do \ { \ ivm->func_name = (f_type)GetProcAddress(ivm->dl_handle, #func_name); \ if (ivm->func_name == NULL) \ { \ IBERROR(("Failed to find %s function on ibal.dll file.\n", #func_name)); \ errno = ENOSYS; \ return -1; \ } \ } while (0) #define MY_GetProcAddress(ivm, func_name) MY_GetPointerAddress(ivm, func_name, f_##func_name) #define MY_GetProcAddressIgnoreFail(ivm, func_name) \ ivm->func_name = (f_##func_name)GetProcAddress(ivm->dl_handle, #func_name) #define MY_GetVarAddress(ivm, var_name) MY_GetPointerAddress(ivm, var_name, void*) #define DLL_HANDLE HINSTANCE #define OP_NOT_SUPPORTED EINVAL #define IBMAD_CALL_CONV __stdcall #else #include #include #include #include #define DLL_HANDLE void* #define BAD_RET_VAL ~0llu #define MY_DLSYM(mf, func_name) \ do \ { \ const char* dl_error; \ mf->func_name = dlsym(mf->dl_handle, #func_name); \ if ((dl_error = dlerror()) != NULL) \ { \ IBERROR(("%s", dl_error)); \ return -1; \ } \ } while (0) #define MY_DLSYM_IGNORE_FAIL(mf, func_name) mf->func_name = dlsym(mf->dl_handle, #func_name) #define OP_NOT_SUPPORTED EOPNOTSUPP #define IBMAD_CALL_CONV #endif #define __BUILD_VERSION_TAG__ 1.1 //#include "ibvsmad.h" #undef DEBUG // TODO: Ask Mohammad why was the iberror changed ? // #define DEBUG(fmt, args...) if (verbose) iberror(0, __FUNCTION__, fmt, ## args) // #define IBERROR(fmt, args...) iberror(1, __FUNCTION__, fmt, ## args) #define IBERROR(args) \ do \ { \ printf("-E- ibvsmad : "); \ printf args; \ printf("\n"); \ errno = EINVAL; \ } while (0) #define DEBUG(args) \ do \ { \ if (verbose) \ { \ printf("-D- ibvsmad : "); \ printf args; \ printf("\n"); \ errno = EINVAL; \ } \ } while (0) // BIT Slicing macros #define ONES32(size) ((size) ? (0xffffffff >> (32 - (size))) : 0) #define MASK32(offset, size) (ONES32(size) << (offset)) #define EXTRACT_C(source, offset, size) ((((unsigned)(source)) >> (offset)) & ONES32(size)) #define EXTRACT(src, start, len) (((len) == 32) ? (src) : EXTRACT_C(src, start, len)) #define MERGE_C(rsrc1, rsrc2, start, len) \ ((((rsrc2) << (start)) & (MASK32((start), (len)))) | ((rsrc1) & (~MASK32((start), (len))))) #define MERGE(rsrc1, rsrc2, start, len) (((len) == 32) ? (rsrc2) : MERGE_C(rsrc1, rsrc2, start, len)) #define SWAPL(l) bswap_32(l) #define IB_VENDOR_SPECIFIC_CLASS_0xA 0x0A #define IB_VENDOR_SPECIFIC_CLASS_0x9 0x09 #define NUMBER_OF_MGMT_ELEMENTS 4 #define IB_VS_ATTR_SW_RESET 0x12 #define IB_VS_ATTR_EXT_PORT_INFO 0x13 #define IB_VS_ATTR_CR_ACCESS 0x50 #define IB_VS_ATTR_GENERAL_INFO 0x17 #define IB_VS_ATTR_ACCESS_REGISTER_GMP 0x51 #define IB_VS_ATTRMOD_CR 0x00008000 #define IB_VS_ATTR_EPI_ATTRMOD_I2C1 0x02 #define IB_VS_CR_NUM_OF_RECORDS 1 #define IB_VS_CR_ONE_RECORD_SIZE 4 #define I2C_CHUNK_SIZE 64 #define I2C_DEVICE_ID 0x56 #define I2C_MEMORY_ADDR 0 #define KEY_GUID_SIZE 32 #define UNSUPP_DEVS_NUM 15 #define DEVID_ADDRESS 0xf0014 #define CLASS_VS_SIZE_BYTES 224 #define CLASS_VS_DATA_OFFSET 0x20 // ConfigSpaceAccess Mode 0 supports address of up to 24 bits. #define MODE_0_MAX_ADDRESS_RANGE 0x7FFFFF #define MODE_2_MAX_RECORDS_NUM 18 #define MODE_2_MAX_DATA_SIZE (MODE_2_MAX_RECORDS_NUM * 4) // Convert BYTES - DWORDS with MEMCPY BE #define BYTES_TO_DWORD_BE(dw_dest, byte_src) \ do \ { \ u_int32_t tmp; \ memcpy(&tmp, byte_src, 4); \ *(dw_dest) = __be32_to_cpu(tmp); \ } while (0) #define DWORD_TO_BYTES_BE(bytes_dest, dw_src) \ do \ { \ u_int32_t tmp; \ tmp = __cpu_to_be32(*(dw_src)); \ memcpy(bytes_dest, &tmp, 4); \ } while (0) #define CHECK_NULL(pointer) \ if (pointer == NULL) \ { \ return -1; \ } typedef struct ibmad_port* IBMAD_CALL_CONV (*f_mad_rpc_open_port)(char* dev_name, int dev_port, int* mgmt_classes, int num_classes); typedef void IBMAD_CALL_CONV (*f_mad_rpc_close_port)(struct ibmad_port* srcport); typedef int IBMAD_CALL_CONV (*f_ib_resolve_portid_str_via)(ib_portid_t* portid, char* addr_str, int dest, ib_portid_t* sm_id, const struct ibmad_port* srcport); typedef uint8_t* IBMAD_CALL_CONV (*f_ib_vendor_call_via)(void* data, ib_portid_t* portid, ib_vendor_call_t* call, const struct ibmad_port* srcport); typedef uint8_t* IBMAD_CALL_CONV (*f_smp_query_via)(void* buf, ib_portid_t* id, unsigned attrid, unsigned mod, unsigned timeout, const struct ibmad_port* srcport); typedef uint8_t* IBMAD_CALL_CONV (*f_smp_query_status_via)(void* buf, ib_portid_t* id, unsigned attrid, unsigned mod, unsigned timeout, int* rstatus, const struct ibmad_port* srcport); typedef uint8_t* IBMAD_CALL_CONV (*f_smp_set_via)(void* buf, ib_portid_t* id, unsigned attrid, unsigned mod, unsigned timeout, const struct ibmad_port* srcport); typedef uint8_t* IBMAD_CALL_CONV (*f_smp_set_status_via)(void* buf, ib_portid_t* id, unsigned attrid, unsigned mod, unsigned timeout, int* rstatus, const struct ibmad_port* srcport); typedef void IBMAD_CALL_CONV (*f_smp_mkey_set)(struct ibmad_port* srcport, uint64_t mkey); typedef void IBMAD_CALL_CONV (*f_mad_rpc_set_retries)(struct ibmad_port* port, int retries); typedef void IBMAD_CALL_CONV (*f_mad_rpc_set_timeout)(struct ibmad_port* port, int timeout); typedef uint32_t IBMAD_CALL_CONV (*f_mad_get_field)(void* buf, int base_offs, enum MAD_FIELDS field); typedef char* IBMAD_CALL_CONV (*f_portid2str)(ib_portid_t* portid); typedef void* IBMAD_CALL_CONV (*f_mad_rpc_rmpp)(const struct ibmad_port* srcport, ib_rpc_t* rpc, ib_portid_t* dport, ib_rmpp_hdr_t* rmpp, void* data); typedef int IBMAD_CALL_CONV ( *f_mad_send_via)(ib_rpc_t* rpc, ib_portid_t* dport, ib_rmpp_hdr_t* rmpp, void* data, struct ibmad_port* srcport); typedef void* IBMAD_CALL_CONV ( *f_mad_rpc)(const struct ibmad_port* srcport, ib_rpc_t* rpc, ib_portid_t* dport, void* payload, void* rcvdata); struct __ibvsmad_hndl_t { struct ibmad_port* srcport; ib_portid_t portid; int sock; int tp; int i2c_slave; int use_smp; int use_class_a; u_int64_t mkey; int mkey_is_supported; int timeout; int retries_num; u_int64_t vskey; int vskey_is_supported; enum MAD_DEST dest_type; DLL_HANDLE dl_handle; f_mad_rpc_open_port mad_rpc_open_port; f_mad_rpc_close_port mad_rpc_close_port; f_ib_vendor_call_via ib_vendor_call_via; f_ib_resolve_portid_str_via ib_resolve_portid_str_via; f_smp_query_via smp_query_via; f_smp_query_status_via smp_query_status_via; f_smp_set_via smp_set_via; f_smp_set_status_via smp_set_status_via; f_mad_rpc_set_retries mad_rpc_set_retries; f_mad_rpc_set_timeout mad_rpc_set_timeout; f_mad_rpc_rmpp mad_rpc_rmpp; f_mad_get_field mad_get_field; f_portid2str portid2str; f_smp_mkey_set smp_mkey_set; f_mad_send_via mad_send_via; f_mad_rpc mad_rpc; void* ibdebug; }; typedef struct __ibvsmad_hndl_t ibvs_mad; static int verbose = 0; /******************************************************** ** * Management class : 0x09 VendorSpecific * Management attribute : 0x50 ConfigSpaceAccess * */ #define IB_SMP_ATTR_CR_ACCESS 0xff50 #define IB_DATA_INDEX 8 #define MAX_IB_SMP_DATA_SIZE (IB_SMP_DATA_SIZE - IB_DATA_INDEX) #define MAX_IB_SMP_DATA_DW_NUM MAX_IB_SMP_DATA_SIZE / 4 #define CONFIG_ACCESS_MODE_2_DATA_OFFSET 4 #define CONFIG_ACCESS_MODE_2_BITMASK_OFFSET 8 void set_mkey_for_smp_mad(ibvs_mad* vsmad) { #ifdef __linux__ if (vsmad->mkey) { vsmad->smp_mkey_set(vsmad->srcport, vsmad->mkey); } else { vsmad->smp_mkey_set(vsmad->srcport, 0); } #else (void)vsmad; #endif } // Attribute modifier for mode 0: // Bits 24-31: Address MSB // Bits 22-23: Mode = 0 // Bits 16-21: Number of dwords // Bits 0-15: Address LSB static u_int32_t create_attribute_mode_0(u_int32_t memory_address, u_int8_t num_of_dwords) { return ((EXTRACT(memory_address, 0, 16) << 00) & 0x0000ffff) | ((num_of_dwords << 16) & 0x00ff0000) | ((EXTRACT(memory_address, 16, 8) << 24) & 0xff000000); } // Attribute modifier for mode 2: // Bits 22-23: Mode = 2 // Bits 16-21: Number of records (= number of dwords) static u_int32_t create_attribute_mode_2(u_int8_t num_of_dwords) { return (((2 << 22) & 0x800000) | ((num_of_dwords << 16) & 0x00ff0000)); } // For ConfigSpaceAccess Mad we use mode 2 // only for accessing addresses larger than 24 bits. static unsigned int should_use_mode_2(u_int32_t memory_address, u_int8_t num_of_dwords) { return memory_address + (num_of_dwords * 4) > MODE_0_MAX_ADDRESS_RANGE ? 1 : 0; } static void set_mad_data_for_mode_2(u_int32_t memory_address, u_int8_t num_of_dwords, u_int8_t* mad_data, u_int32_t* attribute_mod, u_int32_t* mask, unsigned int* data_offset) { int i = 0; *attribute_mod = create_attribute_mode_2(num_of_dwords); // First dword of each record of ConfigSpaceAccess mode 2 // contains the current address. for (i = 0; i < num_of_dwords; i++) { u_int32_t record_offset = memory_address + i; DWORD_TO_BYTES_BE(mad_data + IB_DATA_INDEX + (i * 4), &record_offset); } // Second dword contains the data. *data_offset = CONFIG_ACCESS_MODE_2_DATA_OFFSET; // Third dword contains the bitmask. *mask = 0xFFFFFFFF; } static uint64_t ibvsmad_craccess_rw_smp(ibvs_mad* h, u_int32_t memory_address, int method, u_int8_t num_of_dwords, u_int32_t* data) { u_int8_t mad_data[IB_SMP_DATA_SIZE] = {0}; int i; u_int8_t* p; u_int32_t attribute_mod = 0; u_int64_t mkey = 0; u_int32_t mask = 0; unsigned int data_offset = 0; unsigned int use_mode_2 = should_use_mode_2(memory_address, num_of_dwords); if (num_of_dwords > MAX_IB_SMP_DATA_DW_NUM) { IBERROR(("size is too big, maximum number of dwords is %d", MAX_IB_SMP_DATA_DW_NUM)); return BAD_RET_VAL; } // Set the mkey mkey = __cpu_to_be64(h->mkey); memcpy(&mad_data[0], &mkey, 8); set_mkey_for_smp_mad(h); if (use_mode_2) { set_mad_data_for_mode_2(memory_address, num_of_dwords, mad_data, &attribute_mod, &mask, &data_offset); } else { attribute_mod = create_attribute_mode_0(memory_address, num_of_dwords); } DEBUG(("Sending ConfigSpaceAccess SMP MAD...\n")); if (h->portid.lid) { DEBUG(("Management Class: 0x1\n")); } else { DEBUG(("Management Class: 0x81\n")); } DEBUG(("Attribute Modifier = 0x%08x\n", attribute_mod)); if (use_mode_2) { DEBUG(("Mode: 2\n")); } else { DEBUG(("Mode: 0\n")); } DEBUG(("Attribute ID = 0x%08x\n", IB_SMP_ATTR_CR_ACCESS)); DEBUG(("Memory Address = 0x%08x\n", memory_address)); DEBUG(("Number of dwords = %d\n", num_of_dwords)); if (method == IB_MAD_METHOD_GET) { p = h->smp_query_via(mad_data, &h->portid, IB_SMP_ATTR_CR_ACCESS, attribute_mod, 0, h->srcport); if (!p) { return BAD_RET_VAL; } for (i = 0; i < num_of_dwords; i++) { BYTES_TO_DWORD_BE(data + i, mad_data + IB_DATA_INDEX + data_offset + (i * 4)); } } else { for (i = 0; i < num_of_dwords; i++) { DWORD_TO_BYTES_BE(mad_data + IB_DATA_INDEX + data_offset + (i * 4), data + i); DWORD_TO_BYTES_BE(mad_data + IB_DATA_INDEX + CONFIG_ACCESS_MODE_2_BITMASK_OFFSET + (i * 4), &mask); } p = h->smp_set_via(mad_data, &h->portid, IB_SMP_ATTR_CR_ACCESS, attribute_mod, 0, h->srcport); if (!p) { return BAD_RET_VAL; } } return 0; } // TODO: Correct this value. #define MAX_VS_DATA_SIZE (IB_VENDOR_RANGE1_DATA_SIZE - IB_DATA_INDEX) #define MAX_IB_VS_DATA_DW_NUM MAX_VS_DATA_SIZE / 4 static uint64_t ibvsmad_craccess_rw_vs(ibvs_mad* h, u_int32_t memory_address, int method, u_int8_t num_of_dwords, u_int32_t* data, int class) { u_int8_t vsmad_data[IB_VENDOR_RANGE1_DATA_SIZE] = {0}; ib_vendor_call_t call; int i; u_int8_t* p; u_int32_t attribute_mod = 0; u_int32_t mask = 0; u_int64_t vskey = 0; unsigned int data_offset = 0; int use_mode_2 = should_use_mode_2(memory_address, num_of_dwords); if (h == NULL || data == NULL) { return BAD_RET_VAL; } if (num_of_dwords > MAX_IB_VS_DATA_DW_NUM) { IBERROR(("size (%d) is too big, maximum num of dwords is %d", num_of_dwords, MAX_IB_VS_DATA_DW_NUM)); return BAD_RET_VAL; } if (use_mode_2) { set_mad_data_for_mode_2(memory_address, num_of_dwords, vsmad_data, &attribute_mod, &mask, &data_offset); } else { attribute_mod = create_attribute_mode_0(memory_address, num_of_dwords); } call.method = method; call.mgmt_class = class; call.attrid = IB_VS_ATTR_CR_ACCESS; call.mod = attribute_mod; call.oui = IB_OPENIB_OUI; call.timeout = 0; memset(&call.rmpp, 0, sizeof(call.rmpp)); DEBUG(("Sending ConfigSpaceAccess VS MAD...\n")); DEBUG(("Management Class = 0x%02x\n", call.mgmt_class)); DEBUG(("Attribute Modifier = 0x%08x\n", call.mod)); if (use_mode_2) { DEBUG(("Mode: 2\n")); } else { DEBUG(("Mode: 0\n")); } DEBUG(("Attribute ID = 0x%08x\n", call.attrid)); DEBUG(("Memory Address = 0x%08x\n", memory_address)); DEBUG(("Number of dwords = %d\n", num_of_dwords)); // Set the VSkey. vskey = __cpu_to_be64(h->vskey); memcpy(vsmad_data, &vskey, 8); for (i = 0; i < num_of_dwords; i++) { if (method == IB_MAD_METHOD_SET) { DWORD_TO_BYTES_BE(vsmad_data + IB_DATA_INDEX + data_offset + (i * 4), data + i); DWORD_TO_BYTES_BE(vsmad_data + IB_DATA_INDEX + CONFIG_ACCESS_MODE_2_BITMASK_OFFSET + (i * 4), &mask); } } p = h->ib_vendor_call_via(vsmad_data, &h->portid, &call, h->srcport); if (!p) { return BAD_RET_VAL; } for (i = 0; i < num_of_dwords; i++) { BYTES_TO_DWORD_BE(data + i, vsmad_data + IB_DATA_INDEX + data_offset + (i * 4)); } return 0; } static uint64_t ibvsmad_craccess_rw(ibvs_mad* h, u_int32_t memory_address, int method, u_int8_t num_of_dwords, u_int32_t* data) { if (h->use_smp) { return ibvsmad_craccess_rw_smp(h, memory_address, method, num_of_dwords, data); } else { if (h->use_class_a) { return ibvsmad_craccess_rw_vs(h, memory_address, method, num_of_dwords, data, IB_VENDOR_SPECIFIC_CLASS_0xA); } else { // Backward compatibility: Sending class 0x9. return ibvsmad_craccess_rw_vs(h, memory_address, method, num_of_dwords, data, IB_VENDOR_SPECIFIC_CLASS_0x9); } } return 0; } #ifdef __WIN__ int process_dynamic_linking(ibvs_mad* ivm, int mad_init) { ivm->dl_handle = LoadLibrary(TEXT(LIB_IBMAD)); if (ivm->dl_handle != NULL) { MY_GetProcAddress(ivm, mad_rpc_open_port); MY_GetProcAddress(ivm, mad_rpc_close_port); MY_GetProcAddress(ivm, ib_vendor_call_via); MY_GetProcAddress(ivm, ib_resolve_portid_str_via); MY_GetProcAddress(ivm, smp_query_via); MY_GetProcAddressIgnoreFail(ivm, smp_query_status_via); MY_GetProcAddress(ivm, smp_set_via); MY_GetProcAddressIgnoreFail(ivm, smp_set_status_via); MY_GetProcAddress(ivm, mad_rpc_set_retries); MY_GetProcAddress(ivm, mad_rpc_set_timeout); MY_GetProcAddress(ivm, mad_rpc_rmpp); MY_GetProcAddress(ivm, mad_rpc); MY_GetProcAddress(ivm, portid2str); MY_GetProcAddress(ivm, mad_get_field); MY_GetProcAddress(ivm, mad_send_via); MY_GetVarAddress(ivm, ibdebug); } else { IBERROR(("Failed to load " LIB_IBMAD ".dll library %#x", (unsigned int)GetLastError())); errno = ENOENT; return -1; } return 0; } int free_dll_handle(mfile* mf) { return FreeLibrary(((ibvs_mad*)(mf->ctx))->dl_handle); } #else int process_dynamic_linking(ibvs_mad* ivm, int mad_init) { char* libs[] = {"libibmad.so.5", "libibmad.so.12"}; u_int32_t i; (void)mad_init; for (i = 0; i < sizeof(libs) / sizeof(libs[0]); i++) { ivm->dl_handle = dlopen(libs[i], RTLD_LAZY); if (ivm->dl_handle) { break; } } if (!ivm->dl_handle) { const char* errstr = dlerror(); IBERROR(("%s", errstr)); // free(ivm); return -1; } dlerror(); MY_DLSYM(ivm, mad_rpc_open_port); MY_DLSYM(ivm, mad_rpc_close_port); MY_DLSYM(ivm, ib_vendor_call_via); MY_DLSYM(ivm, ib_resolve_portid_str_via); MY_DLSYM(ivm, smp_query_via); MY_DLSYM_IGNORE_FAIL(ivm, smp_query_status_via); MY_DLSYM(ivm, smp_set_via); MY_DLSYM_IGNORE_FAIL(ivm, smp_set_status_via); MY_DLSYM(ivm, mad_rpc_set_retries); MY_DLSYM(ivm, mad_rpc_set_timeout); MY_DLSYM(ivm, mad_rpc_rmpp); MY_DLSYM(ivm, mad_get_field); MY_DLSYM(ivm, portid2str); MY_DLSYM(ivm, smp_mkey_set); MY_DLSYM(ivm, mad_send_via); MY_DLSYM(ivm, mad_rpc); MY_DLSYM(ivm, ibdebug); return 0; } int free_dll_handle(mfile* mf) { return dlclose(((ibvs_mad*)(mf->ctx))->dl_handle); } #endif char* my_strdup(const char* name) { int len; char* buf; if (name == NULL) { return NULL; } len = strlen(name); buf = malloc((len + 1) * sizeof(char)); if (buf == NULL) { return NULL; } strcpy(buf, name); return buf; } #define MTCR_IB_TIMEOUT "MTCR_IB_TIMEOUT" #define MTCR_IB_RETRIES "MTCR_IB_RETRIES" #define MTCR_IB_VKEY "MTCR_IB_VKEY" #define MTCR_IBMAD_DEBUG "MTCR_IBMAD_DEBUG" int get_env_var(char* env_name, int* env_var) { char* env_val; env_val = getenv(env_name); if (env_val) { *env_var = atol(env_val); } return 0; } int get_64_env_var(char* env_name, u_int64_t* env_var) { char *env_val, *endp = NULL; env_val = getenv(env_name); if (env_val) { *env_var = strtoull(env_val, &endp, 0); } return 0; } int get_env_vars(ibvs_mad* ivm) { get_env_var(MTCR_IB_TIMEOUT, &(ivm->timeout)); get_env_var(MTCR_IB_RETRIES, &(ivm->retries_num)); get_64_env_var(MTCR_IB_VKEY, &((ivm->vskey))); return 0; } int is_vs_crspace_supported(ibvs_mad* h) { u_int8_t* p; u_int8_t mad_data[IB_SMP_DATA_SIZE] = {0}; u_int32_t dev_id; u_int32_t data = 0; int i = 0; u_int32_t unsupported_devs[UNSUPP_DEVS_NUM] = { 0x6746, /* MT26438 [ConnectX-2 VPI w/ Virtualization+]"*/ 0x6764, /* MT26468 [Mountain top]" */ 0xbd34, /* IS4 IB SDR" */ 0xbd35, /* IS4 IB DDR" */ 0xbd36, /* IS4 IB QDR" */ 0xfa66, /* BridgeX VPI up, E/FC down" */ 0xfa7a, /* BridgeX EN up, E/FC down" */ 0x1001, /* ConnectX-2 VF" */ 0x1003, /* MT27500 [ConnectX-3]" */ 0x1005, /* MT27510 Family" */ 0x1007, /* MT27520 ConnectX-3 Pro Family" */ }; uint64_t ret = ibvsmad_craccess_rw_vs(h, DEVID_ADDRESS, IB_MAD_METHOD_GET, 1, &data, IB_VENDOR_SPECIFIC_CLASS_0xA); if (!ret) { h->use_class_a = 1; return 1; } DEBUG(("Vendor Specific is not supported, checking SMP .. ")); set_mkey_for_smp_mad(h); p = h->smp_query_via(mad_data, &h->portid, IB_ATTR_NODE_INFO, 0, 0, h->srcport); if (NULL == p) { return 1; } dev_id = h->mad_get_field(mad_data, 0, IB_NODE_DEVID_F); for (i = 0; i < UNSUPP_DEVS_NUM; i++) { if (dev_id == unsupported_devs[i]) { return 1; } } return 0; } typedef enum key_type_t { MKEY, VSKEY } key_type; char* trim(char* string) { char* back; // Left trim. while (isspace(*string)) { string++; } int len = strlen(string); if (len == 0) { return (string); } // Right trim. back = string + len; while (isspace(*--back)) { } *(back + 1) = '\0'; return string; } int get_mft_conf_field_value(char* line, char* field_name, char* value, int* is_empty) { char* delimiter = "="; char* tmp_value; if (strstr(line, field_name) != NULL) { // Get the value. tmp_value = strtok(line, delimiter); tmp_value = strtok(NULL, delimiter); // Remove spaces. tmp_value = trim(tmp_value); if (strlen(tmp_value)) { memcpy(value, tmp_value, sizeof(strlen(tmp_value))); } else { *is_empty = 1; } return 0; } return -1; } int load_file(FILE** file_descriptor, const char* file_name_path) { // Open the file. *file_descriptor = fopen(file_name_path, "r"); if (!(*file_descriptor)) { // Failed to open the file. return -1; } return 0; } int parse_mft_cfg_file(char* sm_config_path, key_type key) { const char* sm_config_default_path = "/var/cache/opensm/"; const char* mft_conf_file_path = "/etc/mft/mft.conf"; int is_key_enabled = 0; int is_empty = 0; int ret_value = -1; char line[1024] = {0}; char value[256] = {0}; char* key_enabled_field; if (key == MKEY) { key_enabled_field = "mkey_enable"; } else { key_enabled_field = "vskey_enable"; } FILE* mft_conf_file_descriptor = NULL; // Load the mft configuration file. if (load_file(&mft_conf_file_descriptor, mft_conf_file_path)) { // Failed to open the file. return -1; } // Go over the content file. while ((fgets(line, 1024, mft_conf_file_descriptor))) { // Check if the mkey feature is enable. if (!get_mft_conf_field_value(line, key_enabled_field, value, &is_empty)) { // key feature is supported ? if (strcmp(value, "yes")) { // Mkey is unsuppurted. break; } is_key_enabled = 1; } // Check if the user changed the default mkey directory. else if (!get_mft_conf_field_value(line, "sm_config_dir", value, &is_empty)) { if (!is_key_enabled) { // key feature is disabled. break; } // Empty value ? if (is_empty) { // Use the default sm path. memcpy(sm_config_path, sm_config_default_path, strlen(sm_config_default_path)); } else { memcpy(sm_config_path, value, strlen(value)); } // sm_config_path found. ret_value = 0; } } // Close the file. fclose(mft_conf_file_descriptor); return ret_value; } void get_lid_integer(char* lid, int* lid_integer) { int base = 10; // Check if we have '0x' in the beginning of the string. if ((strlen(lid) > 1) && (lid[0] == '0') && ((lid[1] == 'x') || (lid[1] == 'X'))) { base = 16; } *lid_integer = strtol(lid, NULL, base); } int find_guid(char* lid, char* guid, char* line) { char* delimiter = " "; char* tmp_value; char* tmp_guid; int ret_value = -1; int lid_lower_bound; int lid_upper_bound; int lid_from_device; CHECK_NULL(guid) // Get the lid ranges from device, // remove spaces and convert to integer get_lid_integer(trim(lid), &lid_from_device); tmp_guid = strtok(line, delimiter); CHECK_NULL(tmp_guid) tmp_value = strtok(NULL, delimiter); CHECK_NULL(tmp_value) get_lid_integer(trim(tmp_value), &lid_lower_bound); tmp_value = strtok(NULL, delimiter); CHECK_NULL(tmp_value) get_lid_integer(trim(tmp_value), &lid_upper_bound); if (lid_from_device >= lid_lower_bound && lid_from_device <= lid_upper_bound) { strcpy(guid, tmp_guid); ret_value = 0; } return ret_value; } int parse_lid2guid_file(char* sm_config_path, char* lid, char* guid) { const char* guid2lid = "guid2lid"; FILE* file_descriptor = NULL; char line[1024] = {0}; char conf_path[256]; int ret_value = -1; // Parse the guid2lid file. strcpy(conf_path, sm_config_path); strcat(conf_path, guid2lid); if (load_file(&file_descriptor, conf_path)) { // Failed to open file. return -1; } // Go over the content of the guid2lid file. while ((fgets(line, 1024, file_descriptor))) { if (!find_guid(lid, guid, line)) { ret_value = 0; break; } } fclose(file_descriptor); // No guid found. return ret_value; } int parse_guid2key_file(ibvs_mad* ivm, char* sm_config_path, char* guid, key_type key) { char* guid2key_filename; char* delimiter = " "; char* tmp_value; FILE* file_descriptor = NULL; char line[1024] = {0}; char conf_path[256]; int ret_value = -1; if (key == MKEY) { guid2key_filename = "guid2mkey"; } else { guid2key_filename = "guid2vskey"; } // Parse the guid2lid file. strcpy(conf_path, sm_config_path); strcat(conf_path, guid2key_filename); if (load_file(&file_descriptor, conf_path)) { // Failed to open file. return -1; } // Go over the content of the guid2key file. while ((fgets(line, 1024, file_descriptor))) { // Get the key. tmp_value = strtok(line, delimiter); if (!strcmp(tmp_value, guid)) { tmp_value = strtok(NULL, delimiter); if (key == MKEY) { ivm->mkey = strtoull(tmp_value, NULL, 0); } else { ivm->vskey = strtoull(tmp_value, NULL, 0); } ret_value = 0; break; } } fclose(file_descriptor); // Failed to get the mkey. return ret_value; } int extract_key(ibvs_mad* ivm, char* sm_config_path, char* lid, key_type key) { char guid[KEY_GUID_SIZE]; // Parse the lid2guid file. if (parse_lid2guid_file(sm_config_path, lid, guid)) { return -1; } // Parse the guid2key file. if (parse_guid2key_file(ivm, sm_config_path, guid, key)) { return -1; } return 0; } int get_key(ibvs_mad* ivm, char* lid, key_type key) { char sm_config_path[256] = {0}; // Parameters validation. if (!ivm || !lid) { return -1; } // Parse the configuration file in order to extract the key info. if (parse_mft_cfg_file(sm_config_path, key)) { // Failed to parse the key fields from // the mft configuration file. return -1; } // Extract the key. if (extract_key(ivm, sm_config_path, lid, key)) { // Failed to extract the key. return -1; } return 0; } /******************************************************** ** * Initialize madrpc; Register the vendor specific management classes under * the libibmad library; Resolve destination lid from input. * */ int mib_open(const char* name, mfile* mf, int mad_init) { char* ca = 0; int mgmt_classes[NUMBER_OF_MGMT_ELEMENTS] = {IB_SMI_CLASS, IB_SMI_DIRECT_CLASS, IB_VENDOR_SPECIFIC_CLASS_0x9, IB_VENDOR_SPECIFIC_CLASS_0xA}; ib_portid_t* sm_id = 0; int ca_port = 0; ibvs_mad* ivm = NULL; char* nbuf = NULL; char *path_str, *p; int rc = -1; int lid_provided = 0; char* sl_str; char* first_comma; char* second_comma; // ibdebug = 1; if (!mf || !name) { IBERROR(("Bad(null) device argument for inband access")); errno = EINVAL; goto end; } if (!(ivm = (ibvs_mad*)malloc(sizeof(ibvs_mad)))) { IBERROR(("can't allocate ibvsmad_mfile")); errno = ENOMEM; goto end; } memset(ivm, 0, sizeof(ibvs_mad)); nbuf = my_strdup(name); if (nbuf == NULL) { errno = ENOMEM; goto end; } ivm->mkey_is_supported = 0; ivm->vskey_is_supported = 0; if (strncmp("ibdr-", nbuf, 5) == 0) { ivm->use_smp = 1; ivm->dest_type = IB_DEST_DRPATH; path_str = nbuf + 5; } else if (strncmp("iblid-", nbuf, 6) == 0) { ivm->use_smp = 1; ivm->dest_type = IB_DEST_LID; path_str = nbuf + 6; } else if ((p = strstr(nbuf, "lid-")) != 0) { #ifdef __linux__ ivm->mkey_is_supported = 1; ivm->vskey_is_supported = 1; #endif lid_provided = 1; ivm->dest_type = IB_DEST_LID; path_str = p + 4; } else if ((p = strstr(nbuf, "lid_noinit-")) != 0) { #ifdef __linux__ ivm->mkey_is_supported = 1; ivm->vskey_is_supported = 1; #endif lid_provided = 1; ivm->dest_type = IB_DEST_LID; path_str = p + 11; mad_init = 0; } else { IBERROR(("Bad device argument for inband access")); errno = EINVAL; goto end; } first_comma = strstr(nbuf, ","); if (first_comma) { *first_comma = '\0'; ca = first_comma + 1; second_comma = strstr(ca, ","); if (second_comma) { char* ep; *second_comma = '\0'; ca_port = strtol(second_comma + 1, &ep, 0); if (*ep != '\0') { IBERROR(("Bad port number format (%s)", second_comma + 1)); errno = EINVAL; goto end; } } } ivm->retries_num = MAD_DEF_RETRIES; ivm->timeout = MAD_DEF_TIMEOUT_MS; // Get env variables. get_env_vars(ivm); // The DR in the device name is a '.' separated list. // Change it to a ',' separated list like ibmad likes. if (ivm->dest_type == IB_DEST_DRPATH) { char* c; for (c = path_str; *c; c++) { if (*c == '.') { *c = ','; } } } #ifdef IBVSMAD_DLOPEN ivm->mad_rpc_open_port = mad_rpc_open_port; ivm->mad_rpc_close_port = mad_rpc_close_port; ivm->ib_vendor_call_via = ib_vendor_call_via; ivm->ib_resolve_portid_str_via = ib_resolve_portid_str_via; ivm->smp_query_via = smp_query_via; ivm->smp_set_via = smp_set_via; ivm->mad_rpc_set_retries = mad_rpc_set_retries; ivm->mad_rpc_set_timeout = mad_rpc_set_timeout; ivm->mad_get_field = mad_get_field; ivm->portid2str = portid2str; #ifdef __linux__ ivm->smp_mkey_set = smp_mkey_set; #endif #else if (process_dynamic_linking(ivm, mad_init) == -1) { goto end; } #endif get_env_var(MTCR_IBMAD_DEBUG, ivm->ibdebug); ivm->srcport = ivm->mad_rpc_open_port(ca, ca_port, mgmt_classes, NUMBER_OF_MGMT_ELEMENTS); if (ivm->srcport == NULL) { goto end; } ivm->mad_rpc_set_retries(ivm->srcport, ivm->retries_num); ivm->mad_rpc_set_timeout(ivm->srcport, ivm->timeout); // Initialize the mkey & vskey. ivm->mkey = 0; ivm->vskey = 0; if (ivm->mkey_is_supported) { rc = get_key(ivm, path_str, MKEY); // Do we have an mkey? if (!rc) { // Set the mkey. ivm->smp_mkey_set(ivm->srcport, ivm->mkey); } } if (ivm->vskey_is_supported) { get_key(ivm, path_str, VSKEY); } rc = ivm->ib_resolve_portid_str_via(&ivm->portid, (char*)path_str, ivm->dest_type, sm_id, ivm->srcport); if (rc != 0) { IBERROR(("can't resolve destination port %s", path_str)); goto end; } // TODO: Remove the SL setting if DR method is mainly used. // For ConnectIB: // If the target device is connectib or SX and we use LID rout, use the SMP LID route and not the GPM if (lid_provided) { if (is_vs_crspace_supported(ivm)) { DEBUG(("For this LID using VS MAD")); ivm->use_smp = 0; } else { DEBUG(("For this LID using SMP MAD")); ivm->use_smp = 1; } } #define MTCR_IBSL_ENV "MTCR_IB_SL" if (!ivm->use_smp) { sl_str = getenv(MTCR_IBSL_ENV); if (sl_str) { char* ep; u_int32_t sl = strtoul(sl_str, &ep, 0); if (*ep) { fprintf(stderr, "-E- Failed to parse env var %s (%s). Ignoring\n", MTCR_IBSL_ENV, sl_str); } else { ivm->portid.sl = (u_int8_t)sl; } } } mf->ctx = ivm; if (nbuf) { free(nbuf); } return 0; end: if (ivm) { #ifndef __WIN__ if (ivm->dl_handle) { dlclose(ivm->dl_handle); } #endif free(ivm); } if (nbuf) { free(nbuf); } return -1; } /******************************************************** ** * Free resources * */ int mib_close(mfile* mf) { if (mf) { if (mf->ctx) { // TODO: free the ddl handlers ibvs_mad* h = (ibvs_mad*)(mf->ctx); h->mad_rpc_close_port(h->srcport); #ifndef IBVSMAD_DLOPEN free_dll_handle(mf); #endif free(mf->ctx); mf->ctx = NULL; } } return 0; } #define CHECK_ALIGN(length) \ { \ if (length % 4) \ { \ IBERROR(("Size must be 4 aligned, got %d", length)); \ return -1; \ } \ } int mib_get_chunk_size(mfile* mf) { if (!mf || !mf->ctx) { IBERROR(("get chunk size failed. Null Param.")); return -1; } ibvs_mad* h = (ibvs_mad*)(mf->ctx); if (h->use_smp) { return MAX_IB_SMP_DATA_SIZE; } return MAX_VS_DATA_SIZE; } /******************************************************** ** * Read an IS3 CR-Space 32 bit register * */ int mib_read4(mfile* mf, u_int32_t memory_address, u_int32_t* data) { if (!mf || !mf->ctx || !data) { IBERROR(("cr access read failed. Null Param.")); return -1; } ibvs_mad* h = (ibvs_mad*)(mf->ctx); DEBUG(("mread4 of 0x%08x", memory_address)); if (ibvsmad_craccess_rw(h, memory_address, IB_MAD_METHOD_GET, 1, data) == ~0ull) { IBERROR(("cr access read to %s failed", h->portid2str(&h->portid))); return -1; } return 4; } /******************************************************** ** * Write an IS3 CR-Space 32 bit register * */ int mib_write4(mfile* mf, u_int32_t memory_address, u_int32_t _data) { if (!mf || !mf->ctx) { IBERROR(("cr access write failed. Null Param.")); return -1; } ibvs_mad* h = (ibvs_mad*)(mf->ctx); u_int32_t data = _data; DEBUG(("mwrite4 of 0x%08x\n", memory_address)); if (ibvsmad_craccess_rw(h, memory_address, IB_MAD_METHOD_SET, 1, &data) == ~0ull) { IBERROR(("cr access write to %s failed", h->portid2str(&h->portid))); return -1; } return 4; } enum { BLOCKOP_READ, BLOCKOP_WRITE }; int mib_block_op(mfile* mf, unsigned int offset, u_int32_t* data, int length, int op) { if (!mf || !mf->ctx || !data) { IBERROR(("cr access read failed. Null Param.")); return -1; } ibvs_mad* h = (ibvs_mad*)(mf->ctx); int method = IB_MAD_METHOD_GET; if (op == BLOCKOP_WRITE) { method = IB_MAD_METHOD_SET; } CHECK_ALIGN(length); int chunk_size = mib_get_chunk_size(mf); // for addresses > 24 bits we use ConfigSpaceAccess mode 2 // which is limited to 72 bytes. if (offset + MAX_VS_DATA_SIZE > MODE_0_MAX_ADDRESS_RANGE) { chunk_size = MODE_2_MAX_DATA_SIZE; } int t_offset = 0; while (t_offset < length) { int left_size = length - t_offset; int to_op = left_size > chunk_size ? chunk_size : left_size; unsigned int curret_offset = offset + t_offset; if (ibvsmad_craccess_rw(h, curret_offset, method, (to_op / 4), data + t_offset / 4) == ~0ull) { IBERROR(("cr access %s to %s failed", op == BLOCKOP_READ ? "read" : "write", h->portid2str(&h->portid))); return -1; } // If approaching addresses > 24 bits we will switch to mode 2. if (curret_offset + chunk_size > MODE_0_MAX_ADDRESS_RANGE) { chunk_size = MODE_2_MAX_DATA_SIZE; } t_offset += chunk_size; } return length; } MTCR_API int mib_readblock(mfile* mf, unsigned int offset, u_int32_t* data, int length) { return mib_block_op(mf, offset, data, length, BLOCKOP_READ); } MTCR_API int mib_writeblock(mfile* mf, unsigned int offset, u_int32_t* data, int length) { return mib_block_op(mf, offset, data, length, BLOCKOP_WRITE); } int is_managed_node_supports_swreset(mfile* mf) { ib_vendor_call_t call; ibvs_mad* h = (ibvs_mad*)(mf->ctx); u_int8_t* p; u_int32_t vsmad_data[IB_VENDOR_RANGE1_DATA_SIZE / 4] = {0}; call.method = IB_MAD_METHOD_GET; call.mgmt_class = IB_VENDOR_SPECIFIC_CLASS_0xA; call.attrid = IB_VS_ATTR_GENERAL_INFO; call.mod = 0; call.oui = IB_OPENIB_OUI; call.timeout = 0; memset(&call.rmpp, 0, sizeof(call.rmpp)); p = h->ib_vendor_call_via(vsmad_data, &h->portid, &call, h->srcport); if (!p) { fprintf(stderr, "-E- ib mad method call failed.\n"); return 0; } int i; for (i = 0; i < IB_VENDOR_RANGE1_DATA_SIZE / 4; i++) { vsmad_data[i] = __be32_to_cpu(vsmad_data[i]); } // vend_key 0x8 bytes, which present in any vendor specific MAD return in vsmad_data. // We want to skip them when relating GeneralInfo MAD fields in specific. // The capability_mask offset which is 0x80, is calculated from the beginning of GeneralInfo MAD fields. // So overall we have an offset of 0x8+0x80 bytes. const int capability_mask_byte_offset = 0x8 + 0x80; const int is_enh_port0_device_reset_supported_bit_offset = 25; return EXTRACT(vsmad_data[capability_mask_byte_offset / 4], is_enh_port0_device_reset_supported_bit_offset, 1); } int is_node_managed(ibvs_mad* h) { u_int8_t* p; u_int8_t mad_data[IB_SMP_DATA_SIZE] = {0}; u_int8_t enhanced_port; // Set the mkey. u_int64_t mkey = __cpu_to_be64(h->mkey); memcpy(&mad_data[0], &mkey, 8); set_mkey_for_smp_mad(h); p = h->smp_query_via(mad_data, &h->portid, IB_ATTR_SWITCH_INFO, 0, 0, h->srcport); if (NULL == p) { return 0; } enhanced_port = EXTRACT(mad_data[16], /* Big endian */ 3, 1); return enhanced_port; } /******************************************************** ** * Management class : 0x0A VendorSpecific * Management attribute : 0x12 SwReset * */ #define MTCR_SWRESET_ENV "MTCR_SWRESET_TIMER" int mib_swreset(mfile* mf) { if (!mf || !mf->ctx) { errno = EINVAL; IBERROR(("swreset write failed. Null Param.")); return -1; } u_int32_t swreset_timer = 15; char* ep; char* swreset_env; ibvs_mad* h = (ibvs_mad*)(mf->ctx); u_int8_t* p; u_int8_t vsmad_data[IB_VENDOR_RANGE1_DATA_SIZE] = {0}; ib_vendor_call_t call; swreset_env = getenv(MTCR_SWRESET_ENV); if (swreset_env) { u_int32_t new_timer = strtol(swreset_env, &ep, 0); if (*ep != '\0') { fprintf(stderr, "-W- Bad %s env var format. Ignoring\n", MTCR_SWRESET_ENV); } else if (new_timer > 255) { fprintf(stderr, "-W- Bad %s env var value ( > 255). Ignoring\n", MTCR_SWRESET_ENV); } else { /* All OK */ fprintf(stderr, "-I- Set reset timer to %d seconds\n", new_timer); swreset_timer = new_timer; } } if (is_node_managed(h) && !is_managed_node_supports_swreset(mf)) { errno = OP_NOT_SUPPORTED; return -1; } call.method = IB_MAD_METHOD_SET; call.mgmt_class = IB_VENDOR_SPECIFIC_CLASS_0xA; call.attrid = IB_VS_ATTR_SW_RESET; call.mod = swreset_timer; call.oui = IB_OPENIB_OUI; call.timeout = 0; memset(&call.rmpp, 0, sizeof call.rmpp); p = h->ib_vendor_call_via(vsmad_data, &h->portid, &call, h->srcport); if (!p) { return -1; } return 0; } #define IB_SMP_ATTR_REG_ACCESS 0xff52 static int mib_status_translate(int status) { switch ((status >> 2) & 0x7) { case 1: return ME_MAD_BAD_VER; case 2: return ME_MAD_METHOD_NOT_SUPP; case 3: return ME_MAD_METHOD_ATTR_COMB_NOT_SUPP; case 7: return ME_MAD_BAD_DATA; } if (status & 0x1) { return ME_MAD_BUSY; } else if ((status >> 1) & 0x1) { return ME_MAD_REDIRECT; } return ME_MAD_GENERAL_ERR; } uint8_t* cls_a_query_via(void* rcvbuf, ibvs_mad* vsmad, ib_portid_t* dest, const unsigned timeout, const unsigned attribute_id, const struct ibmad_port* srcport, int* return_status) { ib_rpc_v1_t rpc; rpc.rstatus = 0; ib_rpc_t* rpcold = (ib_rpc_t*)(void*)&rpc; int lid = dest->lid; void* p_ret; if (lid == -1) { IBWARN("only lid routed is supported"); return NULL; } rpc.mgtclass = IB_VENDOR_SPECIFIC_CLASS_0xA | IB_MAD_RPC_VERSION1; rpc.method = MACCESS_REG_METHOD_SET; rpc.attr.id = attribute_id; rpc.attr.mod = 0; rpc.timeout = timeout; rpc.datasz = CLASS_VS_SIZE_BYTES; rpc.dataoffs = CLASS_VS_DATA_OFFSET; // There is no member for VSKey in rpc struct, // but the offset for VSKey & MKey in the mad is the same. rpc.mkey = vsmad->vskey; if (!dest->qp) { dest->qp = 1; } if (!dest->qkey) { dest->qkey = IB_DEFAULT_QP1_QKEY; } p_ret = vsmad->mad_rpc(srcport, rpcold, dest, rcvbuf, rcvbuf); errno = rpc.error; *return_status = rpc.rstatus; return p_ret; } int mib_send_cls_a_access_reg_mad(mfile* mf, u_int8_t* data) { if (!mf || !mf->ctx || !data) { IBERROR(("mib_send_cls_a_access_reg_mad failed. Null Param.")); return ME_BAD_PARAMS; } ibvs_mad* vsmad = (ibvs_mad*)(mf->ctx); u_int8_t* call_result; int return_status = -1; // Set the VSKey. if (vsmad->vskey) { vsmad->smp_mkey_set(vsmad->srcport, vsmad->vskey); } else { vsmad->smp_mkey_set(vsmad->srcport, 0); } call_result = cls_a_query_via(data, vsmad, &vsmad->portid, 0, IB_SMP_ATTR_REG_ACCESS, vsmad->srcport, &return_status); if (!call_result || return_status > 0) { if (return_status > 0) { return mib_status_translate(return_status); } return -1; } return ME_OK; } int response_expected(int method) { return method == IB_MAD_METHOD_GET || method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP; } uint8_t* ib_vendor_call_status_via(ibvs_mad* vsmad, void* data, ib_portid_t* portid, ib_vendor_call_t* call, struct ibmad_port* srcport, int* return_status) { ib_rpc_v1_t rpc; rpc.rstatus = 0; ib_rpc_t* rpcold = (ib_rpc_t*)(void*)&rpc; int range1 = 0, resp_expected; void* p_ret; if (portid->lid <= 0) { return NULL; /* no direct SMI */ } if (!(range1 = mad_is_vendor_range1(call->mgmt_class)) && !(mad_is_vendor_range2(call->mgmt_class))) { return NULL; } resp_expected = response_expected(call->method); rpc.mgtclass = call->mgmt_class | IB_MAD_RPC_VERSION1; rpc.method = call->method; rpc.attr.id = call->attrid; rpc.attr.mod = call->mod; rpc.timeout = resp_expected ? call->timeout : 0; rpc.datasz = range1 ? IB_VENDOR_RANGE1_DATA_SIZE : IB_VENDOR_RANGE2_DATA_SIZE; rpc.dataoffs = range1 ? IB_VENDOR_RANGE1_DATA_OFFS : IB_VENDOR_RANGE2_DATA_OFFS; if (!range1) { rpc.oui = call->oui; } portid->qp = 1; if (!portid->qkey) { portid->qkey = IB_DEFAULT_QP1_QKEY; } if (resp_expected) { p_ret = vsmad->mad_rpc_rmpp(srcport, rpcold, portid, NULL, data); errno = rpc.error; *return_status = rpc.rstatus; return p_ret; } return vsmad->mad_send_via(rpcold, portid, NULL, data, srcport) < 0 ? NULL : data; } // AccessRegisterGMP does not use OperationTLV struct // and encodes the register operation status in the // returned status field of the MAD. // The translation table is available in the MADs PRM. int translate_mad_status_to_reg_status_gmp(int mad_status) { switch (mad_status) { case 0: return ME_OK; case 1: return ME_REG_ACCESS_DEV_BUSY; case 4: return ME_REG_ACCESS_CLASS_NOT_SUPP; case 20: return ME_REG_ACCESS_REG_NOT_SUPP; case 12: return ME_REG_ACCESS_METHOD_NOT_SUPP; case 28: return ME_REG_ACCESS_BAD_PARAM; default: return ME_REG_ACCESS_UNKNOWN_ERR; } } int mib_send_gmp_access_reg_mad(mfile* mf, u_int32_t* data, u_int32_t reg_size, u_int32_t reg_id, maccess_reg_method_t reg_method, int* reg_status) { // The buffer should contain: // 2 dwords for the vskey, // 1 dword for a configuration dword, // 55 dwords for data. // All sizes and offsets are in dword unit. const int vskey_offset = 0; const int vskey_size = 2; const int config_offset = 2; const int config_size = 1; const int data_offset = 3; const int data_size = 55; const int buffer_size = vskey_size + config_size + data_size; // == 58 u_int32_t vsmad_data[buffer_size]; u_int32_t orig_vsmad_data[buffer_size]; if (!mf || !mf->ctx || !data) { IBERROR(("mib_send_gmp_access_reg_mad failed. Null Param.")); return ME_BAD_PARAMS; } if (!mib_supports_reg_access_gmp(mf, reg_method)) { return ME_GMP_MAD_UNSUPPORTED_OPERATION; } memset(vsmad_data, 0x0, buffer_size); memset(orig_vsmad_data, 0x0, buffer_size); ibvs_mad* vsmad = (ibvs_mad*)(mf->ctx); u_int64_t vskey = __cpu_to_be64(vsmad->vskey); memcpy(&vsmad_data[vskey_offset], &vskey, vskey_size * 4); memcpy(&vsmad_data[data_offset], data, data_size * 4); memcpy(&orig_vsmad_data[0], vsmad_data, buffer_size * 4); ib_vendor_call_t call; u_int8_t* call_result; call.method = reg_method; call.mgmt_class = IB_VENDOR_SPECIFIC_CLASS_0xA; call.attrid = IB_VS_ATTR_ACCESS_REGISTER_GMP; call.mod = reg_id; call.oui = IB_OPENIB_OUI; call.timeout = 0; memset(&call.rmpp, 0, sizeof(call.rmpp)); int num_of_blocks = (reg_size / (data_size * 4)) + ((reg_size % (data_size * 4)) ? 1 : 0); int block_num; u_int32_t block_dword; int return_status = -1; for (block_num = 0; block_num < num_of_blocks; block_num++) { block_dword = __cpu_to_be32(((u_int32_t)block_num) << 16); // block offset in the config dword, see PRM for details memcpy(&vsmad_data[config_offset], &block_dword, config_size * 4); call_result = ib_vendor_call_status_via(vsmad, vsmad_data, &vsmad->portid, &call, vsmad->srcport, &return_status); if (!call_result) { return -1; } if (return_status > 0) { *reg_status = translate_mad_status_to_reg_status_gmp(return_status); } int num_of_bytes = (block_num == num_of_blocks - 1) ? ((int)reg_size % (data_size * 4)) : (data_size * 4); memcpy(&data[(block_num * data_size)], &vsmad_data[data_offset], num_of_bytes); memcpy(vsmad_data, orig_vsmad_data, buffer_size * 4); } return ME_OK; } int mib_get_gmp(mfile* mf, unsigned attr_id, unsigned mod, u_int32_t* vsmad_data, size_t vsmad_data_len) { if (!mf || !mf->ctx || !vsmad_data || vsmad_data_len != IB_VENDOR_RANGE1_DATA_SIZE / 4) { return ME_BAD_PARAMS; } ib_vendor_call_t call; ibvs_mad* vs_mad = (ibvs_mad*)(mf->ctx); u_int8_t* call_result; call.method = IB_MAD_METHOD_GET; call.mgmt_class = IB_VENDOR_SPECIFIC_CLASS_0xA; call.attrid = attr_id; call.mod = mod; call.oui = IB_OPENIB_OUI; call.timeout = 0; memset(&call.rmpp, 0, sizeof(call.rmpp)); call_result = vs_mad->ib_vendor_call_via(vsmad_data, &vs_mad->portid, &call, vs_mad->srcport); if (!call_result) { return -1; } int i; for (i = 0; i < IB_VENDOR_RANGE1_DATA_SIZE / 4; i++) { vsmad_data[i] = __be32_to_cpu(vsmad_data[i]); } return ME_OK; } int mib_get_general_info_gmp(mfile* mf, u_int32_t* vsmad_data, size_t vsmad_data_len) { return mib_get_gmp(mf, IB_VS_ATTR_GENERAL_INFO, 0, vsmad_data, vsmad_data_len); } int mib_supports_reg_access_gmp(mfile* mf, maccess_reg_method_t reg_method) { if (!mf || !mf->ctx) { return 0; } if (!((mf->flags & MDEVS_IB) && (((ibvs_mad*)(mf->ctx))->dest_type == IB_DEST_LID) && (reg_method == MACCESS_REG_METHOD_GET))) { return 0; } u_int32_t vsmad_data[IB_VENDOR_RANGE1_DATA_SIZE / 4] = {0}; if (mib_get_general_info_gmp(mf, vsmad_data, IB_VENDOR_RANGE1_DATA_SIZE / 4)) { return 0; } // vend_key 0x8 bytes, which present in any vendor specific MAD return in vsmad_data. // We want to skip them when relating GeneralInfo MAD fields in specific. // The capability_mask offset which is 0x80, is calculated from the beginning of GeneralInfo MAD fields. // So overall we have an offset of 0x8+0x80 bytes. const int capability_mask_byte_offset = 0x8 + 0x80; const int is_access_register_supported_bit_offset = 20; return EXTRACT(vsmad_data[capability_mask_byte_offset / 4], is_access_register_supported_bit_offset, 1); } int mib_acces_reg_mad(mfile* mf, u_int8_t* data) { if (!mf || !mf->ctx || !data) { IBERROR(("mib_acces_reg_mad failed. Null Param.")); return ME_BAD_PARAMS; } u_int8_t* p; ibvs_mad* h = (ibvs_mad*)(mf->ctx); int status = -1; // Set the MKey. set_mkey_for_smp_mad(h); // Call smp set function if (h->smp_set_status_via) { p = h->smp_set_status_via(data, &(h->portid), IB_SMP_ATTR_REG_ACCESS, 0, 0, &status, h->srcport); } else { p = h->smp_set_via(data, &(h->portid), IB_SMP_ATTR_REG_ACCESS, 0, 0, h->srcport); } if (!p || status > 0) { if (status != -1) { return mib_status_translate(status); } else { return -1; } } return ME_OK; } int mib_smp_set(mfile* mf, u_int8_t* data, u_int16_t attr_id, u_int32_t attr_mod) { if (!mf || !mf->ctx || !data) { IBERROR(("mib_smp_set failed. Null Param.")); return ME_BAD_PARAMS; } u_int8_t* p; int status = -1; ibvs_mad* h = (ibvs_mad*)(mf->ctx); // Set the MKey. set_mkey_for_smp_mad(h); // Call smp set function if (h->smp_set_status_via) { p = h->smp_set_status_via(data, &(h->portid), attr_id, attr_mod, 0, &status, h->srcport); } else { p = h->smp_set_via(data, &(h->portid), attr_id, attr_mod, 0, h->srcport); } if (!p || status > 0) { if (status != -1) { return mib_status_translate(status); } else { return -1; } } return ME_OK; } int mib_smp_get(mfile* mf, u_int8_t* data, u_int16_t attr_id, u_int32_t attr_mod) { if (!mf || !mf->ctx || !data) { IBERROR(("mib_smp_get failed. Null Param.")); return ME_BAD_PARAMS; } u_int8_t* p; int status = -1; ibvs_mad* h = (ibvs_mad*)(mf->ctx); // Set the MKey. set_mkey_for_smp_mad(h); // Call smp set function if (h->smp_query_status_via) { p = h->smp_query_status_via(data, &(h->portid), attr_id, attr_mod, 0, &status, h->srcport); } else { p = h->smp_query_via(data, &(h->portid), attr_id, attr_mod, 0, h->srcport); } if (!p || status > 0) { if (status != -1) { return mib_status_translate(status); } else { return -1; } } return ME_OK; } int mib_semaphore_lock_smp(mfile* mf, u_int8_t* data, sem_lock_method_t method) { if (!mf || !mf->ctx || !data) { IBERROR(("mib_semaphore_lock_smp failed. Null Param.")); return ME_BAD_PARAMS; } u_int8_t* smp_result; int status = -1; ibvs_mad* vs_mad = (ibvs_mad*)(mf->ctx); // Setting MKey for this attribute caused MAD failures // and was disabled. if (method == SEM_LOCK_SET) { if (vs_mad->smp_set_status_via) { smp_result = vs_mad->smp_set_status_via(data, &(vs_mad->portid), SMP_SEMAPHOE_LOCK_CMD, 0, 0, &status, vs_mad->srcport); } else { smp_result = vs_mad->smp_set_via(data, &(vs_mad->portid), SMP_SEMAPHOE_LOCK_CMD, 0, 0, vs_mad->srcport); } } else { if (vs_mad->smp_query_status_via) { smp_result = vs_mad->smp_query_status_via(data, &(vs_mad->portid), SMP_SEMAPHOE_LOCK_CMD, 0, 0, &status, vs_mad->srcport); } else { smp_result = vs_mad->smp_query_via(data, &(vs_mad->portid), SMP_SEMAPHOE_LOCK_CMD, 0, 0, vs_mad->srcport); } } if (!smp_result || status > 0) { if (status != -1) { return mib_status_translate(status); } else { return -1; } } return ME_OK; } int mib_supports_reg_access_cls_a(mfile* mf, maccess_reg_method_t reg_method) { if (!mf || !mf->ctx) { return 0; } if (!((mf->flags & MDEVS_IB) && (((ibvs_mad*)(mf->ctx))->dest_type == IB_DEST_LID) && (reg_method == MACCESS_REG_METHOD_SET || reg_method == MACCESS_REG_METHOD_GET))) { return 0; } u_int32_t vsmad_data[IB_VENDOR_RANGE1_DATA_SIZE / 4] = {0}; if (mib_get_general_info_gmp(mf, vsmad_data, IB_VENDOR_RANGE1_DATA_SIZE / 4)) { return 0; } // vend_key 0x8 bytes, which present in any vendor specific MAD return in vsmad_data. // We want to skip them when relating GeneralInfo MAD fields in specific. // The capability_mask offset which is 0x80, is calculated from the beginning of GeneralInfo MAD fields. // So overall we have an offset of 0x8+0x80 bytes. const int capability_mask_byte_offset = 0x8 + 0x80; const int is_access_register_supported_bit_offset = 20; const int is_supported = EXTRACT(vsmad_data[capability_mask_byte_offset / 4], is_access_register_supported_bit_offset, 1); return is_supported; } mstflint-4.26.0/mtcr_ul/mtcr_ib_res_mgt.h0000644000175000017500000000414414522641732020663 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MTCR_IB_RES_MGT_H_ #define _MTCR_IB_RES_MGT_H_ #include typedef enum { SMP_SEM_LOCK = 1, SMP_SEM_EXTEND, SMP_SEM_RELEASE } sem_op_t; MTCR_API int mib_semaphore_lock_vs_mad(mfile* mf, sem_op_t op, u_int32_t sem_addr, u_int32_t lock_key, u_int32_t* res, int* is_leaseable, u_int8_t* lease_time_exp, sem_lock_method_t method); MTCR_API int mib_semaphore_lock_is_supported(mfile* mf); #endif mstflint-4.26.0/mtcr_ul/mtcr_ul.c0000644000175000017500000001747614522641732017200 0ustar tzafrirctzafrirc/* * * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * mtcr_ul.c - Mellanox Hardware Access implementation * */ #include #include #include #include #include #include int mread4(mfile* mf, unsigned int offset, u_int32_t* value) { return mread4_ul(mf, offset, value); } int mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { return mwrite4_ul(mf, offset, value); } int mread4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { return mread4_block_ul(mf, offset, data, byte_len); } int mwrite4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { return mwrite4_block_ul(mf, offset, data, byte_len); } int msw_reset(mfile* mf) { #ifndef NO_INBAND switch (mf->tp) { case MST_IB: return mib_swreset(mf); default: errno = EPERM; return -1; } #else (void)mf; return -1; #endif } int mhca_reset(mfile* mf) { (void)mf; errno = ENOTSUP; return -1; } int mdevices(char* buf, int len, int mask) { return mdevices_ul(buf, len, mask); } dev_info* mdevices_info(int mask, int* len) { return mdevices_info_ul(mask, len); } dev_info* mdevices_info_v(int mask, int* len, int verbosity) { return mdevices_info_v_ul(mask, len, verbosity); } void mdevices_info_destroy(dev_info* dev_info, int len) { int i, j; if (dev_info) { for (i = 0; i < len; i++) { if (dev_info[i].type == MDEVS_TAVOR_CR && dev_info[i].pci.ib_devs) { for (j = 0; dev_info[i].pci.ib_devs[j]; j++) { if (dev_info[i].pci.ib_devs[j]) { free(dev_info[i].pci.ib_devs[j]); } } free(dev_info[i].pci.ib_devs); } if (dev_info[i].type == MDEVS_TAVOR_CR && dev_info[i].pci.net_devs) { for (j = 0; dev_info[i].pci.net_devs[j]; j++) { if (dev_info[i].pci.net_devs[j]) { free(dev_info[i].pci.net_devs[j]); } } free(dev_info[i].pci.net_devs); } } free(dev_info); } } mfile* mopen(const char* name) { return mopen_ul(name); } mfile* mopend(const char* name, DType dtype) { if (dtype != MST_TAVOR) { return NULL; } return mopen(name); } int mclose(mfile* mf) { return mclose_ul(mf); } mfile* mopen_adv(const char* name, MType mtype) { mfile* mf = mopend(name, MST_TAVOR); if (mf) { if (mf->tp & mtype) { return mf; } else { errno = EPERM; mclose(mf); return NULL; } } return mf; } mfile* mopen_fw_ctx(void* fw_cmd_context, void* fw_cmd_func, void* extra_data) { // not implemented TOOLS_UNUSED(fw_cmd_context); TOOLS_UNUSED(fw_cmd_func); TOOLS_UNUSED(extra_data); return NULL; } void get_pci_dev_rdma(mfile* mf, char* buf) { if (mf != NULL && mf->dinfo != NULL && strlen(mf->dinfo->pci.ib_devs[0]) > 0) { snprintf(buf, 32, "%s", mf->dinfo->pci.ib_devs[0]); } else { *buf = '\0'; } } unsigned char mset_i2c_slave(mfile* mf, unsigned char new_i2c_slave) { (void)mf; (void)new_i2c_slave; /* compiler warning */ fprintf(stderr, "Warning: libmtcr: mset_i2c_slave() is not implemented and has no effect.\n"); return 0; } int maccess_reg_mad(mfile* mf, u_int8_t* data) { return maccess_reg_mad_ul(mf, data); } int mos_reg_access(mfile* mf, int reg_access, void* reg_data, u_int32_t cmd_type) { (void)mf; (void)reg_data; /* compiler warning */ (void)cmd_type; /* compiler warning */ (void)reg_access; /* compiler warning */ fprintf(stderr, "Warning: libmtcr: mos_reg_access() is not implemented and has no effect.\n"); return ME_NOT_IMPLEMENTED; } int maccess_reg_cmdif(mfile* mf, reg_access_t reg_access, void* reg_data, u_int32_t cmd_type) { (void)mf; (void)reg_data; /* compiler warning */ (void)cmd_type; /* compiler warning */ (void)reg_access; /* compiler warning */ fprintf(stderr, "Warning: libmtcr: maccess_reg_cmdif() is not implemented and has no effect.\n"); return ME_NOT_IMPLEMENTED; } int mread_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { return mread_buffer_ul(mf, offset, data, byte_len); } int mwrite_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { return mwrite_buffer_ul(mf, offset, data, byte_len); } int maccess_reg(mfile* mf, u_int16_t reg_id, maccess_reg_method_t reg_method, void* reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int* reg_status) { return maccess_reg_ul(mf, reg_id, reg_method, reg_data, reg_size, r_size_reg, w_size_reg, reg_status); } int mget_max_reg_size(mfile* mf, maccess_reg_method_t reg_method) { return mget_max_reg_size_ul(mf, reg_method); } int supports_reg_access_gmp(mfile* mf, maccess_reg_method_t reg_method) { return supports_reg_access_gmp_ul(mf, reg_method); } int mget_vsec_supp(mfile* mf) { return mf->vsec_supp; } MTCR_API int mget_addr_space(mfile* mf) { return mf->address_space; } MTCR_API int mset_addr_space(mfile* mf, int space) { if (space < 0 || space >= AS_END) { return -1; } if (VSEC_SUPPORTED_UL(mf) && (mf->vsec_cap_mask & (1 << space_to_cap_offset(space)))) { mf->address_space = space; return 0; } return -1; } int mget_mdevs_flags(mfile* mf, u_int32_t* devs_flags) { if (mf == NULL || devs_flags == NULL) { errno = EINVAL; return 1; } *devs_flags = mf->flags; return 0; } int mget_mdevs_type(mfile* mf, u_int32_t* mtype) { if (mf == NULL || mtype == NULL) { errno = EINVAL; return 1; } *mtype = mf->tp; return 0; } int mclear_pci_semaphore(const char* name) { return mclear_pci_semaphore_ul(name); } int mvpd_read4(mfile* mf, unsigned int offset, u_int8_t value[4]) { return mvpd_read4_ul(mf, offset, value); } int mvpd_write4(mfile* mf, unsigned int offset, u_int8_t value[4]) { (void)mf; (void)offset; (void)value; return ME_UNSUPPORTED_OPERATION; } mstflint-4.26.0/mtcr_ul/mtcr_tools_cif.h0000644000175000017500000000474014522641732020534 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MTCR_TOOLS_CIF /* guard */ #define _MTCR_TOOLS_CIF #ifdef __cplusplus extern "C" { #endif #include #include #define FLASH_REG_ACCESS 0x9001 #define TOOLS_HCR_MAX_MBOX 288 // tools flash semaphore (62) will be taken at the begining of each command specified here // and released at the end of the command. /* * register access tools HCR * * data: the raw register data * write_data_size: amount of data to write to the mailbox (rest assumed to be zero) * read_data_size: amount of data to be read from the mailbox * * data will contain the updated register. */ int tools_cmdif_reg_access(mfile* mf, void* data, int write_data_size, int read_data_size); /* * tools_cmdif_is_supported tools HCR * * check if sending registers via tools HCR is supported * */ MTCR_API int tools_cmdif_is_supported(mfile* mf); MTCR_API int tools_cmdif_is_cr_mbox_supported(mfile* mf); #ifdef __cplusplus } #endif #endif /* _MTCR_TOOLS_CIF guard */ mstflint-4.26.0/mtcr_ul/mlx5ctl.h0000644000175000017500000001002614522641732017110 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __MLX5CTL_H__ #define __MLX5CTL_H__ #include #include #include #include typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; typedef u8 __u8; typedef u16 __u16; typedef u32 __u32; typedef __u16 __be16; typedef __u32 __be32; #define BIT(nr) (1UL << (nr)) #define BIT_ULL(nr) (1ULL << (nr)) #define __packed #define gcm #include "mlx5_ifc_stub.h" /* helper macros */ #define __mlx5_nullp(typ) ((struct mlx5_ifc_##typ##_bits *)0) #define __mlx5_bit_sz(typ, fld) sizeof(__mlx5_nullp(typ)->fld) #define __mlx5_bit_off(typ, fld) (offsetof(struct mlx5_ifc_##typ##_bits, fld)) #define __mlx5_16_off(typ, fld) (__mlx5_bit_off(typ, fld) / 16) #define __mlx5_dw_off(typ, fld) (__mlx5_bit_off(typ, fld) / 32) #define __mlx5_64_off(typ, fld) (__mlx5_bit_off(typ, fld) / 64) #define __mlx5_16_bit_off(typ, fld) (16 - __mlx5_bit_sz(typ, fld) - (__mlx5_bit_off(typ, fld) & 0xf)) #define __mlx5_dw_bit_off(typ, fld) (32 - __mlx5_bit_sz(typ, fld) - (__mlx5_bit_off(typ, fld) & 0x1f)) #define __mlx5_mask(typ, fld) ((u32)((1ull << __mlx5_bit_sz(typ, fld)) - 1)) #define __mlx5_dw_mask(typ, fld) (__mlx5_mask(typ, fld) << __mlx5_dw_bit_off(typ, fld)) #define __mlx5_mask16(typ, fld) ((u16)((1ull << __mlx5_bit_sz(typ, fld)) - 1)) #define __mlx5_16_mask(typ, fld) (__mlx5_mask16(typ, fld) << __mlx5_16_bit_off(typ, fld)) #define __mlx5_st_sz_bits(typ) sizeof(struct mlx5_ifc_##typ##_bits) #define MLX5_FLD_SZ_BYTES(typ, fld) (__mlx5_bit_sz(typ, fld) / 8) #define MLX5_ST_SZ_BYTES(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 8) #define MLX5_ST_SZ_DW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 32) #define MLX5_ST_SZ_QW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 64) #define MLX5_UN_SZ_BYTES(typ) (sizeof(union mlx5_ifc_##typ##_bits) / 8) #define MLX5_UN_SZ_DW(typ) (sizeof(union mlx5_ifc_##typ##_bits) / 32) #define MLX5_BYTE_OFF(typ, fld) (__mlx5_bit_off(typ, fld) / 8) #define MLX5_ADDR_OF(typ, p, fld) ((void *)((uint8_t *)(p) + MLX5_BYTE_OFF(typ, fld))) #define be32_to_cpu(x) be32toh(x) #define cpu_to_be32(x) htobe32(x) #define be16_to_cpu(x) be16toh(x) #define cpu_to_be16(x) htobe16(x) #define MLX5_GET(typ, p, fld) ((be32_to_cpu(*((__be32 *)(p) +\ __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \ __mlx5_mask(typ, fld)) /* insert a value to a struct */ #define MLX5_SET(typ, p, fld, v) do { \ u32 _v = v; \ *((__be32 *)(p) + __mlx5_dw_off(typ, fld)) = \ cpu_to_be32((be32_to_cpu(*((__be32 *)(p) + __mlx5_dw_off(typ, fld))) & \ (~__mlx5_dw_mask(typ, fld))) | (((_v) & __mlx5_mask(typ, fld)) \ << __mlx5_dw_bit_off(typ, fld))); \ } while (0) #endif mstflint-4.26.0/mtcr_ul/mtcr_int_defs.h0000644000175000017500000000515514522641732020347 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MTCR_INT_DEFS #define MTCR_INT_DEFS #include "mtcr_com_defs.h" typedef int (*f_mread4)(mfile* mf, unsigned int offset, u_int32_t* value); typedef int (*f_mwrite4)(mfile* mf, unsigned int offset, u_int32_t value); typedef int (*f_mread4_block)(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len); typedef int (*f_mwrite4_block)(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len); typedef int (*f_maccess_reg)(mfile* mf, u_int8_t* data); typedef int (*f_mclose)(mfile* mf); typedef struct ul_ctx { int fdlock; /* Hermon WA */ int connectx_flush; /* For ConnectX A0 */ int need_flush; /* For ConnectX A0 */ f_mread4 mread4; f_mwrite4 mwrite4; f_mread4_block mread4_block; f_mwrite4_block mwrite4_block; f_maccess_reg maccess_reg; f_mclose mclose; int wo_addr; /* Is write Only Addr GW */ /******** RESERVED FIELDS FOR SWITCHING METHOD IF NEEDED ******/ int res_access_type; int res_fdlock; f_mread4 res_mread4; f_mwrite4 res_mwrite4; f_mread4_block res_mread4_block; f_mwrite4_block res_mwrite4_block; /*************************************************************/ int via_driver; } ul_ctx_t; #endif mstflint-4.26.0/mtcr_ul/Makefile.am0000644000175000017500000000445514522641732017414 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common -I$(top_srcdir)/dev_mgt pkglib_LTLIBRARIES = libmtcr_ul.la libmtcr_ul_la_SOURCES = mtcr_ul.c mtcr_ib.h mtcr_int_defs.h\ mtcr_ib_res_mgt.h mtcr_ib_res_mgt.c\ mtcr_tools_cif.c mtcr_tools_cif.h\ mtcr_ul_icmd_cif.c mtcr_icmd_cif.h\ mtcr_mem_ops.c mtcr_mem_ops.h\ mtcr_ul_com_defs.h mtcr_mf.h\ mtcr_ul_com.h mtcr_ul_com.c\ packets_common.c packets_common.h\ packets_layout.c packets_layout.h \ mlx5ctl.c mlx5ctl.h mlx5ctl_ioctl.h libmtcr_ul_la_CFLAGS = -W -Wall -g -MP -MD -fPIC -DMTCR_API="" -DMST_UL if ENABLE_INBAND libmtcr_ul_la_SOURCES += mtcr_ib_ofed.c endif libraryincludedir=$(includedir)/mstflint libraryinclude_HEADERS = $(top_srcdir)/include/mtcr_ul/mtcr.h $(top_srcdir)/include/mtcr_ul/mtcr_com_defs.h $(top_srcdir)/include/mtcr_ul/mtcr_mf.h mstflint-4.26.0/mtcr_ul/mtcr_ul_icmd_cif.c0000644000175000017500000012200714522641732021000 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #if !defined(_MSC_VER) #include #endif #include //#include #include "mtcr_icmd_cif.h" #include "packets_common.h" #ifndef __FreeBSD__ #include "mtcr_ib_res_mgt.h" #include "tools_dev_types.h" #endif #include "mtcr_mem_ops.h" #define ICMD_QUERY_CAP_CMD_ID 0x8400 #define ICMD_QUERY_CAP_CMD_SZ 0x8 #define ICMD_QUERY_CAP_EXMB_ICMD_OFF 0x8 // _DEBUG_MODE // un-comment this to enable debug prints #define ICMD_DEFAULT_TIMEOUT 5120 #define STAT_CFG_NOT_DONE_ADDR_CIB 0xb0004 #define STAT_CFG_NOT_DONE_ADDR_CX4 0xb0004 #define STAT_CFG_NOT_DONE_ADDR_SW_IB 0x80010 #define STAT_CFG_NOT_DONE_ADDR_QUANTUM 0x100010 #define STAT_CFG_NOT_DONE_ADDR_CX5 0xb5e04 #define STAT_CFG_NOT_DONE_ADDR_CX6 0xb5f04 #define STAT_CFG_NOT_DONE_ADDR_CX7 0xb5f04 #define STAT_CFG_NOT_DONE_BITOFF_CIB 31 #define STAT_CFG_NOT_DONE_BITOFF_CX4 31 #define STAT_CFG_NOT_DONE_BITOFF_SW_IB 0 #define STAT_CFG_NOT_DONE_BITOFF_CX5 31 #define STAT_CFG_NOT_DONE_BITOFF_CX7 31 #define SEMAPHORE_ADDR_CIB 0xe27f8 // sem62 #define SEMAPHORE_ADDR_CX4 0xe250c // sem67 bit31 is the semaphore bit here (only one semaphore in this dword) #define SEMAPHORE_ADDR_SW_IB 0xa24f8 // sem 62 #define SEMAPHORE_ADDR_QUANTUM 0xa68f8 #define SEMAPHORE_ADDR_QUANTUM2 0xa52f8 #define SEMAPHORE_ADDR_QUANTUM3 0xa52f8 // 0x25b #define SEMAPHORE_ADDR_BW00 0xa52f8 #define SEMAPHORE_ADDR_CX5 0xe74e0 #define SEMAPHORE_ADDR_CX7 0xe5660 #define HCR_ADDR_CIB 0x0 #define HCR_ADDR_CX4 HCR_ADDR_CIB #define HCR_ADDR_CX5 HCR_ADDR_CIB #define HCR_ADDR_CX7 HCR_ADDR_CIB #define HCR_ADDR_SW_IB 0x80000 #define HCR_ADDR_QUANTUM 0x100000 #define ICMD_VERSION_BITOFF 24 #define ICMD_VERSION_BITLEN 8 #define CMD_PTR_ADDR_CIB 0x0 #define CMD_PTR_ADDR_SW_IB 0x80000 #define CMD_PTR_ADDR_QUANTUM 0x100000 #define CMD_PTR_ADDR_CX4 CMD_PTR_ADDR_CIB #define CMD_PTR_ADDR_CX5 CMD_PTR_ADDR_CIB #define CMD_PTR_ADDR_CX7 CMD_PTR_ADDR_CIB #define CMD_PTR_BITOFF 0 #define CMD_PTR_BITLEN 24 #define CTRL_OFFSET 0x3fc #define BUSY_BITOFF 0 #define BUSY_BITLEN 1 #define EXMB_BITOFF 1 #define EXMB_BITLEN 1 #define OPCODE_BITOFF 16 #define OPCODE_BITLEN 16 #define STATUS_BITOFF 8 #define STATUS_BITLEN 8 #define VCR_CTRL_ADDR 0x0 #define VCR_SEMAPHORE62 0x0 // semaphore Domain #define VCR_CMD_ADDR 0x100000 // mailbox addr #define VCR_CMD_SIZE_ADDR 0x1000 // mailbox size #define EXT_MBOX_DMA_OFF 0x8 #define SEMAPHORE_ADDR_GBOX 0xa6850 #define CMD_PTR_ADDR_GBOX 0x90010 #define GBOX_GW_OPCODE_OFFSET 256 #define GBOX_GW_REG_OPCODE_OFFSET 252 #define GBOX_GW_REQUEST_DATA_BLOCK_OFFSET 0 #define GBOX_GW_RESPONSE_DATA_BLOCK_OFFSET 260 #define GBOX_MAX_DATA_SIZE 256 #define GBOX_STAT_CFG_NOT_DONE_ADDR 0x90000 #define GBOX_REG_ACCESS_CMD_OPCODE 0x0ff #define GBOX_BUSY_BITOFF 31 #define GBOX_OPCODE_BITOFF 16 #define GBOX_OPCODE_BITLEN 10 #define GBOX_REG_ACC_W_SIZE_BITOFF 0 #define GBOX_REG_ACC_W_SIZE_BITLEN 8 #define GBOX_STATUS_BITOFF 28 #define GBOX_STATUS_BITLEN 3 #define GBOX_STATUS1_BITOFF 8 #define GBOX_STATUS1_BITLEN 7 #define GBOX_READ_SIZE_BITOFF 0 #define GBOX_READ_SIZE_BITLEN 8 /* * General Macros */ #define CHECK_RC(rc) \ if ((rc)) \ { \ return (rc); \ } #define CHECK_RC_GO_TO(rc, lable) \ if ((rc)) \ { \ goto lable; \ } #define DBG_PRINTF(...) \ do \ { \ if (getenv("MFT_DEBUG") != NULL) \ { \ fprintf(stderr, __VA_ARGS__); \ } \ } while (0) /* * Macros for accessing CR-Space */ #define MWRITE_BUF(mf, offset, data, byte_len) \ (((unsigned)(mwrite_buffer((mf), (offset), (data), (byte_len))) != (unsigned)(byte_len)) ? \ ME_ICMD_STATUS_CR_FAIL : \ ME_OK) #define MREAD_BUF(mf, offset, data, byte_len) \ (((unsigned)(mread_buffer((mf), (offset), (data), (byte_len))) != (unsigned)(byte_len)) ? ME_ICMD_STATUS_CR_FAIL : \ ME_OK) #define MWRITE4(mf, offset, value) \ (((unsigned)(mwrite4((mf), (offset), (value))) != 4U) ? ME_ICMD_STATUS_CR_FAIL : ME_OK) #define MREAD4(mf, offset, ptr) (((unsigned)(mread4((mf), (offset), (ptr))) != 4U) ? ME_ICMD_STATUS_CR_FAIL : ME_OK) /* * Macros for accessing Icmd Space */ #define SET_SPACE_FOR_ICMD_ACCESS(mf) \ if (mf->vsec_supp) \ { \ mset_addr_space(mf, AS_ICMD); \ } #define SET_SPACE_FOR_SEMAPHORE_ACCESS(mf) \ if (mf->vsec_supp) \ { \ mset_addr_space(mf, AS_SEMAPHORE); \ } #define RESTORE_SPACE(mf) mset_addr_space(mf, AS_CR_SPACE) static int MWRITE4_ICMD(mfile* mf, int offset, u_int32_t value) { SET_SPACE_FOR_ICMD_ACCESS(mf); DBG_PRINTF("-D- MWRITE4_ICMD: off: %x, addr_space: %x\n", offset, mf->address_space); if (mwrite4(mf, offset, value) != 4) { mset_addr_space(mf, AS_CR_SPACE); return ME_ICMD_STATUS_CR_FAIL; } RESTORE_SPACE(mf); return ME_OK; } static int MREAD4_ICMD(mfile* mf, int offset, u_int32_t* ptr) { SET_SPACE_FOR_ICMD_ACCESS(mf); DBG_PRINTF("-D- MREAD4_ICMD: off: %x, addr_space: %x\r\n", offset, mf->address_space); if (mread4(mf, offset, ptr) != 4) { RESTORE_SPACE(mf); return ME_ICMD_STATUS_CR_FAIL; } RESTORE_SPACE(mf); return ME_OK; } #define MWRITE_BUF_ICMD(mf, offset, data, byte_len, action_on_fail) \ do \ { \ DBG_PRINTF("-D- MWRITE_BUF_ICMD: off: %x, addr_space: %x\n", offset, mf->address_space); \ SET_SPACE_FOR_ICMD_ACCESS(mf); \ if ((unsigned)mwrite_buffer(mf, offset, data, byte_len) != (unsigned)byte_len) \ { \ RESTORE_SPACE(mf); \ action_on_fail; \ } \ RESTORE_SPACE(mf); \ } while (0) #define MREAD_BUF_ICMD(mf, offset, data, byte_len, action_on_fail) \ do \ { \ DBG_PRINTF("-D- MREAD_BUF_ICMD: off: %x, addr_space: %x\n", offset, mf->address_space); \ SET_SPACE_FOR_ICMD_ACCESS(mf); \ if ((unsigned)mread_buffer(mf, offset, data, byte_len) != (unsigned)byte_len) \ { \ RESTORE_SPACE(mf); \ action_on_fail; \ } \ RESTORE_SPACE(mf); \ } while (0) /* * Macros for accessing semaphore space */ int MWRITE4_SEMAPHORE(mfile* mf, int offset, int value) { SET_SPACE_FOR_SEMAPHORE_ACCESS(mf); if (mwrite4(mf, offset, value) != 4) { RESTORE_SPACE(mf); return ME_ICMD_STATUS_CR_FAIL; } RESTORE_SPACE(mf); return ME_OK; } int MREAD4_SEMAPHORE(mfile* mf, int offset, u_int32_t* ptr) { SET_SPACE_FOR_SEMAPHORE_ACCESS(mf); if (mread4(mf, offset, ptr) != 4) { RESTORE_SPACE(mf); return ME_ICMD_STATUS_CR_FAIL; } RESTORE_SPACE(mf); return ME_OK; } enum { RW_READ = 0x1, RW_WRITE = 0x0 }; /*********************************************** * * get correct addresses for : STAT_CCFG_NOT_DONE_ADDR, SEMAPHORE_ADDR, HCR_ADDR, CMD_PTR_ADDR * according to Hw devid */ #define HW_ID_ADDR 0xf0014 #define CIB_HW_ID 511 #define CX4_HW_ID 521 #define CX4LX_HW_ID 523 #define CX5_HW_ID 525 #define CX6_HW_ID 527 #define CX6DX_HW_ID 530 #define CX6LX_HW_ID 534 #define CX7_HW_ID 536 #define CX8_HW_ID 542 #define BF_HW_ID 529 #define BF2_HW_ID 532 #define BF3_HW_ID 540 #define BF4_HW_ID 544 #define SW_IB_HW_ID 583 #define SW_EN_HW_ID 585 #define SW_IB2_HW_ID 587 #define QUANTUM_HW_ID 589 #define SPECTRUM2_HW_ID 590 #define SPECTRUM3_HW_ID 592 #define QUANTUM2_HW_ID 599 #define QUANTUM3_HW_ID 603 // 0x25b #define BW00_HW_ID 0x2900 #define SPECTRUM4_HW_ID 596 #define AMOS_GBOX_HW_ID 594 /***** GLOBALS *****/ int increase_poll_time = 0; void set_increase_poll_time(int new_value) { increase_poll_time = new_value; } u_int32_t gbox_gw_start_addr = 0xffff; /***** GLOBALS *****/ /*************************************************************************************/ /* * get_version */ static int get_version(mfile* mf, u_int32_t hcr_address) { u_int32_t reg = 0x0; if (MREAD4(mf, hcr_address, ®)) { return ME_ICMD_STATUS_CR_FAIL; } reg = EXTRACT(reg, ICMD_VERSION_BITOFF, ICMD_VERSION_BITLEN); return reg; } static MError check_busy_bit(mfile* mf, int busy_bit_offset, u_int32_t* reg) { DBG_PRINTF("Check Go bit\n"); int rc = MREAD4_ICMD(mf, mf->icmd.ctrl_addr, reg); CHECK_RC(rc); return EXTRACT((*reg), busy_bit_offset, BUSY_BITLEN); } static MError set_busy_bit(mfile* mf, u_int32_t* reg, int busy_bit_offset) { *reg = MERGE(*reg, 1, busy_bit_offset, BUSY_BITLEN); return MWRITE4_ICMD(mf, mf->icmd.ctrl_addr, *reg); } static int set_sleep() { char* icmd_sleep_env; int icmd_sleep = -1; if (increase_poll_time) { // increase_poll_time is set by low_cpu flag. To reduce CPU utilization icmd_sleep_env = "10\0"; } else { icmd_sleep_env = getenv("MFT_CMD_SLEEP"); } if (icmd_sleep_env) { char* endptr; icmd_sleep = strtol(icmd_sleep_env, &endptr, 10); if (*endptr != '\0') { icmd_sleep = -1; } } return icmd_sleep; } static int set_icmd_timeout() { char* icmd_timeout_env; int icmd_timeout = ICMD_DEFAULT_TIMEOUT; icmd_timeout_env = getenv("MFT_ICMD_TIMEOUT"); if (icmd_timeout_env) { char* endptr; icmd_timeout = strtol(icmd_timeout_env, &endptr, 10); if (endptr != NULL && *endptr != '\0') { icmd_timeout = ICMD_DEFAULT_TIMEOUT; } } return icmd_timeout; } /* * get_status */ static int translate_status(int status) { switch (status) { case 0x0: return ME_OK; case 0x1: return ME_ICMD_INVALID_OPCODE; case 0x2: return ME_ICMD_INVALID_CMD; case 0x3: return ME_ICMD_OPERATIONAL_ERROR; case 0x4: return ME_ICMD_BAD_PARAM; case 0x5: return ME_ICMD_BUSY; case 0x6: return ME_ICMD_ICM_NOT_AVAIL; case 0x7: return ME_ICMD_WRITE_PROTECT; default: return ME_ICMD_UNKNOWN_STATUS; } } static int translate_gbox_icmd_status(int status) { switch (status) { case 0x0: return ME_OK; case 0x1: return ME_ERROR; case 0x2: return ME_UNKOWN_ACCESS_TYPE; case 0x3: return ME_ICMD_BAD_PARAM; case 0x6: return ME_TIMEOUT; case 0x7: return ME_ICMD_NOT_SUPPORTED; default: return ME_ICMD_UNKNOWN_STATUS; } } /* * set_and_poll_on_busy_bit - Sets the busy bit to 1, wait untill it is 0 again. */ static int set_and_poll_on_busy_bit(mfile* mf, int enhanced, int busy_bit_offset, u_int32_t* reg) { u_int32_t busy; int i, wait; MError rc; // set go bit rc = set_busy_bit(mf, reg, busy_bit_offset); CHECK_RC(rc); DBG_PRINTF("Busy-bit raised. Waiting for command to exec...\n"); // set sleep time if needed int icmd_sleep = set_sleep(); int icmd_timeout = set_icmd_timeout(); // wait for command to execute i = 0; wait = 1; do { if (++i > icmd_timeout) { // this number of iterations should take ~~30sec, which is the defined command t/o DBG_PRINTF("Execution timed-out\n"); return ME_ICMD_STATUS_EXECUTE_TO; } if ((i < 100) || (i % 100 == 0)) { DBG_PRINTF("Waiting for busy-bit to clear (iteration #%d)...\n", i); } if (icmd_sleep > 0) { if (i == 3) { msleep(icmd_sleep); } else if (i > 3) { msleep(wait); if (wait < 8) { wait *= 2; // exponential backoff - up-to 8ms between polls } } if (increase_poll_time) { // adding msleep to reduce the CPU utilization (low_cpu flag) msleep(10); } } else { if (!enhanced) { if (i > 5) { // after some iteration put sleeps between busy-wait msleep(wait); // don't hog the cpu with busy-wait if (wait < 8) { wait *= 2; // exponential backoff - up-to 8ms between polls } } } else { #ifdef _MSC_VER msleep(1); #else usleep(1); #endif } } busy = check_busy_bit(mf, busy_bit_offset, reg); } while (busy); DBG_PRINTF("Command completed!\n"); return ME_OK; } /* * set_opcode */ static int set_opcode(mfile* mf, u_int16_t opcode) { u_int32_t reg = 0x0; u_int8_t exmb = mf->icmd.dma_icmd; int rc = MREAD4_ICMD(mf, mf->icmd.ctrl_addr, ®); CHECK_RC(rc); reg = MERGE(reg, opcode, OPCODE_BITOFF, OPCODE_BITLEN); reg = MERGE(reg, exmb, EXMB_BITOFF, EXMB_BITLEN); rc = MWRITE4_ICMD(mf, mf->icmd.ctrl_addr, reg); CHECK_RC(rc); return ME_OK; } /* * icmd_is_cmd_ifc_ready */ static int icmd_is_cmd_ifc_ready(mfile* mf, int enhanced) { u_int32_t reg = 0x0; if (!enhanced || mf->icmd.icmd_ready == MTCR_STATUS_UNKNOWN) { u_int32_t bit_val = 0; if (MREAD4(mf, mf->icmd.static_cfg_not_done_addr, ®)) { return ME_ICMD_STATUS_CR_FAIL; } bit_val = EXTRACT(reg, mf->icmd.static_cfg_not_done_offs, 1); mf->icmd.icmd_ready = (bit_val == 0) ? MTCR_STATUS_TRUE : MTCR_STATUS_FALSE; } return (mf->icmd.icmd_ready == MTCR_STATUS_TRUE) ? ME_OK : ME_ICMD_STATUS_ICMD_NOT_READY; } #define SMP_ICMD_SEM_ADDR 0x0 static int icmd_clear_semaphore_com(mfile* mf) { #ifndef __FreeBSD__ int is_leaseable; u_int8_t lease_exp; if ((mf->icmd.semaphore_addr == SEMAPHORE_ADDR_CIB || mf->icmd.semaphore_addr == SEMAPHORE_ADDR_CX4) && mf->icmd.ib_semaphore_lock_supported) { if (!mf->icmd.lock_key) { return ME_OK; } DBG_PRINTF("VS_MAD SEM Release .. "); if (mib_semaphore_lock_vs_mad(mf, SMP_SEM_RELEASE, SMP_ICMD_SEM_ADDR, mf->icmd.lock_key, &(mf->icmd.lock_key), &is_leaseable, &lease_exp, SEM_LOCK_SET)) { DBG_PRINTF("Failed!\n"); return ME_ICMD_STATUS_CR_FAIL; } if (mf->icmd.lock_key != 0) { return ME_ICMD_STATUS_CR_FAIL; } DBG_PRINTF("Succeeded!\n"); } else #endif { MWRITE4_SEMAPHORE(mf, mf->icmd.semaphore_addr, 0); } mf->icmd.took_semaphore = 0; return ME_OK; } /* * icmd_clear_semaphore */ int icmd_clear_semaphore(mfile* mf) { DBG_PRINTF("Clearing semaphore\n"); // open icmd interface by demand int ret = icmd_open(mf); CHECK_RC(ret); return icmd_clear_semaphore_com(mf); } /* * icmd_take_semaphore */ /* * icmd_take_semaphore */ static int icmd_take_semaphore_com(mfile* mf, u_int32_t expected_read_val) { u_int32_t read_val = 0x0; unsigned retries = 0; DBG_PRINTF("Taking semaphore...\n"); do { // loop while the semaphore is taken by someone else if (++retries > 256) { return ME_ICMD_STATUS_SEMAPHORE_TO; } #ifndef __FreeBSD__ int is_leaseable; u_int8_t lease_exp; if ((mf->icmd.semaphore_addr == SEMAPHORE_ADDR_CIB || mf->icmd.semaphore_addr == SEMAPHORE_ADDR_CX4) && mf->icmd.ib_semaphore_lock_supported) { DBG_PRINTF("VS_MAD SEM LOCK .. "); read_val = mib_semaphore_lock_vs_mad(mf, SMP_SEM_LOCK, SMP_ICMD_SEM_ADDR, 0, &(mf->icmd.lock_key), &is_leaseable, &lease_exp, SEM_LOCK_SET); if (read_val && read_val != ME_MAD_BUSY) { DBG_PRINTF("Failed!\n"); return ME_ICMD_STATUS_ICMD_NOT_READY; } /* Fail to obtain the lock */ if (mf->icmd.lock_key == 0) { read_val = 1; } DBG_PRINTF("Succeeded!\n"); } else #endif { if (mf->vsec_supp) { // write expected val before reading it MWRITE4_SEMAPHORE(mf, mf->icmd.semaphore_addr, expected_read_val); } MREAD4_SEMAPHORE(mf, mf->icmd.semaphore_addr, &read_val); if (read_val == expected_read_val) { break; } } msleep(rand() % 50); } while (read_val != expected_read_val); mf->icmd.took_semaphore = 1; DBG_PRINTF("Semaphore taken successfully...\n"); return ME_OK; } int icmd_take_semaphore(mfile* mf) { // open icmd interface by demand int ret; static u_int32_t pid = 0; ret = icmd_open(mf); CHECK_RC(ret); if (mf->vsec_supp) { if (!pid) { pid = getpid(); } return icmd_take_semaphore_com(mf, pid); } else { return icmd_take_semaphore_com(mf, 0); } } static int check_msg_size(mfile* mf, int write_data_size, int read_data_size) { // check data size does not exceed mailbox size if (write_data_size > (int)mf->icmd.max_cmd_size || read_data_size > (int)mf->icmd.max_cmd_size) { DBG_PRINTF("write_data_size <%x-%x> mf->icmd.max_cmd_size .. ", write_data_size, mf->icmd.max_cmd_size); DBG_PRINTF("read_data_size <%x-%x> mf->icmd.max_cmd_size\n", read_data_size, mf->icmd.max_cmd_size); return ME_ICMD_SIZE_EXCEEDS_LIMIT; } return ME_OK; } static int icmd_send_command_com(mfile* mf, IN int opcode, INOUT void* data, IN int write_data_size, IN int read_data_size, IN int skip_write, IN int enhanced) { int ret; // open icmd interface by demand ret = icmd_open(mf); CHECK_RC(ret); ret = check_msg_size(mf, write_data_size, read_data_size); CHECK_RC(ret); ret = icmd_is_cmd_ifc_ready(mf, enhanced); CHECK_RC(ret); if (!enhanced) { ret = icmd_take_semaphore(mf); CHECK_RC(ret); } ret = set_opcode(mf, opcode); CHECK_RC_GO_TO(ret, cleanup); if (!skip_write) { DBG_PRINTF("-D- Writing command to mailbox\n"); if (mf->icmd.dma_icmd) { if (mtcr_memaccess(mf, 0, read_data_size, data, 1, MEM_ICMD)) { ret = ME_ICMD_STATUS_CR_FAIL; goto cleanup; } } else { MWRITE_BUF_ICMD(mf, mf->icmd.cmd_addr, data, write_data_size, ret = ME_ICMD_STATUS_CR_FAIL; goto cleanup;); } } if (mf->icmd.dma_icmd) { ret = MWRITE4_ICMD(mf, mf->icmd.ctrl_addr + EXT_MBOX_DMA_OFF, EXTRACT64(mf->icmd.dma_pa, 32, 32)); CHECK_RC(ret); ret = MWRITE4_ICMD(mf, mf->icmd.ctrl_addr + EXT_MBOX_DMA_OFF + 4, EXTRACT64(mf->icmd.dma_pa, 0, 32)); CHECK_RC(ret); } u_int32_t reg = 0x0; // check go bit down ret = check_busy_bit(mf, BUSY_BITOFF, ®); CHECK_RC(ret); // set go bit + poll + returned status ret = set_and_poll_on_busy_bit(mf, enhanced, BUSY_BITOFF, ®); CHECK_RC_GO_TO(ret, cleanup); // get status ret = translate_status(EXTRACT(reg, STATUS_BITOFF, STATUS_BITLEN)); CHECK_RC_GO_TO(ret, cleanup); DBG_PRINTF("-D- Reading command from mailbox"); if (mf->icmd.dma_icmd) { if (mtcr_memaccess(mf, 0, read_data_size, data, 0, MEM_ICMD)) { ret = ME_ICMD_STATUS_CR_FAIL; goto cleanup; } } else { MREAD_BUF_ICMD(mf, mf->icmd.cmd_addr, data, read_data_size, ret = ME_ICMD_STATUS_CR_FAIL; goto cleanup;); } ret = ME_OK; cleanup: if (!enhanced) { (void)icmd_clear_semaphore(mf); } return ret; } /* * set_gbox_gw_opcode_block */ static u_int32_t set_gbox_gw_opcode_block(u_int16_t opcode, int size) { u_int32_t reg = 0x0; reg = MERGE(reg, (u_int32_t)(size / 4), GBOX_REG_ACC_W_SIZE_BITOFF, GBOX_REG_ACC_W_SIZE_BITLEN); reg = MERGE(reg, opcode, GBOX_OPCODE_BITOFF, GBOX_OPCODE_BITLEN); return reg; } static MError get_gbox_gw_start_addr(mfile* mf, u_int32_t* start_addr) { // get gbox_gw_start_addr by reading cr-space only once if (gbox_gw_start_addr == 0xffff) { if (MREAD4(mf, CMD_PTR_ADDR_GBOX, &gbox_gw_start_addr)) { return ME_ICMD_STATUS_CR_FAIL; } // no need to /4 // gw_addr = gw_addr >> 2; *start_addr = gbox_gw_start_addr; } return ME_OK; } static int icmd_send_gbox_command_com(mfile* mf, INOUT void* data, IN int write_data_size, IN int read_data_size, IN int enhanced) { int ret; u_int32_t data_start_off = 0x0; u_int8_t buffer[GBOX_MAX_DATA_SIZE + 4] = {0}; u_int32_t reg = 0x0; if (mf->gb_info.gb_conn_type != GEARBPX_OVER_MTUSB) { // wasn't supposed to get here return ME_ERROR; } // init icmd ret = icmd_open(mf); CHECK_RC(ret); ret = check_msg_size(mf, write_data_size, read_data_size); CHECK_RC(ret); ret = icmd_is_cmd_ifc_ready(mf, enhanced); CHECK_RC(ret); if (!enhanced) { ret = icmd_take_semaphore(mf); CHECK_RC(ret); } // check go bit down ret = check_busy_bit(mf, GBOX_BUSY_BITOFF, ®); CHECK_RC(ret); // write to data request section DBG_PRINTF("-D- Setting command GW"); data_start_off = mf->gb_info.data_req_addr + GBOX_MAX_DATA_SIZE - write_data_size; MWRITE_BUF_ICMD(mf, data_start_off, data, write_data_size, ret = ME_ICMD_STATUS_CR_FAIL; goto sem_cleanup;); int orig_reg_size = write_data_size - 4; // set opcode block - size is original register size = means without register vlock ()-4 bytes reg = set_gbox_gw_opcode_block(GBOX_REG_ACCESS_CMD_OPCODE, orig_reg_size); // set busy bit and write msg, than, poll + return status ret = set_and_poll_on_busy_bit(mf, enhanced, GBOX_BUSY_BITOFF, ®); CHECK_RC_GO_TO(ret, sem_cleanup); // get status ret = translate_gbox_icmd_status(EXTRACT(reg, GBOX_STATUS_BITOFF, GBOX_STATUS_BITLEN)); CHECK_RC_GO_TO(ret, sem_cleanup); ret = EXTRACT(reg, GBOX_STATUS1_BITOFF, GBOX_STATUS1_BITLEN); // read response DBG_PRINTF("-D- Reading command from mailbox"); // no need to read size, it is the same (fw dont change this field) - uncommnet if logic will change // int read_size = EXTRACT(reg, GBOX_READ_SIZE_BITOFF, GBOX_READ_SIZE_BITLEN); // read_size = read_size * 4; // reset buffer memset(buffer, 0, GBOX_MAX_DATA_SIZE); // put register status in first 4 bytes memcpy(buffer, &ret, 4); // get response data (into buffer+4) MREAD_BUF_ICMD(mf, mf->gb_info.data_res_addr, buffer + 4, orig_reg_size, ret = ME_ICMD_STATUS_CR_FAIL; goto sem_cleanup;); memcpy(data, buffer, read_data_size); // read_data_size is same as orig size + 4 ret = ME_OK; sem_cleanup: if (!enhanced) { (void)icmd_clear_semaphore(mf); } return ret; } int icmd_send_command(mfile* mf, IN int opcode, INOUT void* data, IN int data_size, IN int skip_write) { return icmd_send_command_int(mf, opcode, data, data_size, data_size, skip_write); } /* * icmd_send_command */ int icmd_send_command_int(mfile* mf, IN int opcode, INOUT void* data, IN int write_data_size, IN int read_data_size, IN int skip_write) { if ((mf->gb_info.is_gb_mngr || mf->gb_info.is_gearbox) && mf->gb_info.gb_conn_type == GEARBPX_OVER_MTUSB) { return icmd_send_gbox_command_com(mf, data, write_data_size, read_data_size, 0); } else { return icmd_send_command_com(mf, opcode, data, write_data_size, read_data_size, skip_write, 0); } } int icmd_send_command_enhanced(mfile* mf, IN int opcode, INOUT void* data, IN int write_data_size, IN int read_data_size, IN int skip_write) { if ((mf->gb_info.is_gb_mngr || mf->gb_info.is_gearbox) && mf->gb_info.gb_conn_type == GEARBPX_OVER_MTUSB) { return icmd_send_gbox_command_com(mf, data, write_data_size, read_data_size, 1); } else { return icmd_send_command_com(mf, opcode, data, write_data_size, read_data_size, skip_write, 1); } } static int icmd_init_cr(mfile* mf) { int icmd_ver; u_int32_t hcr_address; u_int32_t cmd_ptr_addr; u_int32_t reg = 0x0; u_int32_t hw_id = 0x0; #ifndef __FreeBSD__ u_int32_t dev_type = 0; #endif // get device specific addresses MREAD4((mf), (HW_ID_ADDR), &(hw_id)); switch (hw_id & 0xffff) { case (CIB_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_CIB; hcr_address = HCR_ADDR_CIB; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_CIB; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CIB; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CIB; break; case (CX4LX_HW_ID): case (CX4_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_CX4; hcr_address = HCR_ADDR_CX4; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_CX4; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX4; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CIB; break; case (CX5_HW_ID): case (BF_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_CX5; hcr_address = HCR_ADDR_CX5; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_CX5; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX5; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CIB; break; case (SW_IB_HW_ID): case (SW_EN_HW_ID): case (SW_IB2_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_SW_IB; hcr_address = HCR_ADDR_SW_IB; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_SW_IB; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_SW_IB; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_SW_IB; break; case (QUANTUM_HW_ID): case (SPECTRUM2_HW_ID): case (SPECTRUM3_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_QUANTUM; hcr_address = HCR_ADDR_QUANTUM; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_QUANTUM; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_QUANTUM; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_SW_IB; break; case (QUANTUM2_HW_ID): case (QUANTUM3_HW_ID): case (BW00_HW_ID): case (SPECTRUM4_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_QUANTUM; hcr_address = HCR_ADDR_QUANTUM; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_QUANTUM2; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_QUANTUM; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_SW_IB; break; case (CX6_HW_ID): case (CX6DX_HW_ID): case (CX6LX_HW_ID): case (BF2_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_CX5; hcr_address = HCR_ADDR_CX5; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_CX5; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX6; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CX5; break; case (CX7_HW_ID): case (BF3_HW_ID): case (CX8_HW_ID): case (BF4_HW_ID): cmd_ptr_addr = CMD_PTR_ADDR_CX7; hcr_address = HCR_ADDR_CX7; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_CX7; mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX7; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CX7; break; case (AMOS_GBOX_HW_ID): mf->icmd.ctrl_addr = GBOX_MAX_DATA_SIZE; u_int32_t start_addr = 0x0; MError rc = get_gbox_gw_start_addr(mf, &start_addr); if (rc) { return ME_ERROR; } mf->icmd.ctrl_addr += start_addr; mf->icmd.cmd_addr = start_addr + GBOX_GW_OPCODE_OFFSET; mf->gb_info.data_req_addr = start_addr + GBOX_GW_REQUEST_DATA_BLOCK_OFFSET; mf->gb_info.data_res_addr = start_addr + GBOX_GW_RESPONSE_DATA_BLOCK_OFFSET; mf->icmd.semaphore_addr = SEMAPHORE_ADDR_GBOX; mf->icmd.static_cfg_not_done_addr = GBOX_STAT_CFG_NOT_DONE_ADDR; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CX5; mf->icmd.max_cmd_size = GBOX_MAX_DATA_SIZE; mf->icmd.icmd_opened = 1; return ME_OK; break; default: return ME_ICMD_NOT_SUPPORTED; } mf->icmd.max_cmd_size = ICMD_MAX_CMD_SIZE; icmd_ver = get_version(mf, hcr_address); // get command and control addresses switch (icmd_ver) { case 1: if (MREAD4(mf, cmd_ptr_addr, ®)) { return ME_ICMD_STATUS_CR_FAIL; } mf->icmd.cmd_addr = EXTRACT(reg, CMD_PTR_BITOFF, CMD_PTR_BITLEN); mf->icmd.ctrl_addr = mf->icmd.cmd_addr + CTRL_OFFSET; break; case ME_ICMD_STATUS_CR_FAIL: return ME_ICMD_STATUS_CR_FAIL; default: return ME_ICMD_UNSUPPORTED_ICMD_VERSION; } // if IB check if we support locking via MAD #ifndef __FreeBSD__ if (mget_mdevs_flags(mf, &dev_type)) { dev_type = 0; } if ((dev_type & MDEVS_IB) && (mib_semaphore_lock_is_supported(mf))) { mf->icmd.ib_semaphore_lock_supported = 1; } #endif mf->icmd.icmd_opened = 1; return ME_OK; } static int icmd_init_vcr_crspace_addr(mfile* mf) { u_int32_t hw_id = 0x0; // get device specific addresses MREAD4((mf), (HW_ID_ADDR), &(hw_id)); switch (hw_id & 0xffff) { case (CIB_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CIB; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CIB; break; case (CX4LX_HW_ID): case (CX4_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX4; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CIB; break; case (CX5_HW_ID): case (BF_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX5; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CIB; break; case (SW_IB_HW_ID): case (SW_EN_HW_ID): case (SW_IB2_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_SW_IB; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_SW_IB; break; case (QUANTUM_HW_ID): case (SPECTRUM2_HW_ID): case (SPECTRUM3_HW_ID): case (QUANTUM2_HW_ID): case (QUANTUM3_HW_ID): case (BW00_HW_ID): case (SPECTRUM4_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_QUANTUM; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_SW_IB; break; case (CX6_HW_ID): case (CX6DX_HW_ID): case (CX6LX_HW_ID): case (BF2_HW_ID): case (BF3_HW_ID): case (CX7_HW_ID): case (BF4_HW_ID): case (CX8_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX6; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CX5; // same bit offset as CX5 break; case (AMOS_GBOX_HW_ID): mf->icmd.static_cfg_not_done_addr = STAT_CFG_NOT_DONE_ADDR_CX6; mf->icmd.static_cfg_not_done_offs = STAT_CFG_NOT_DONE_BITOFF_CX5; // same bit offset as CX5 break; default: return ME_ICMD_NOT_SUPPORTED; } return ME_OK; } static int icmd_init_vcr(mfile* mf) { int rc = ME_OK; static u_int32_t pid = 0; static u_int32_t size = 0; if (!pid) { pid = getpid(); } mf->icmd.cmd_addr = VCR_CMD_ADDR; mf->icmd.ctrl_addr = VCR_CTRL_ADDR; mf->icmd.semaphore_addr = VCR_SEMAPHORE62; DBG_PRINTF("-D- Getting VCR_CMD_SIZE_ADDR\n"); rc = icmd_take_semaphore_com(mf, pid); CHECK_RC(rc); // get max command size rc = MREAD4_ICMD(mf, VCR_CMD_SIZE_ADDR, &mf->icmd.max_cmd_size); size = mf->icmd.max_cmd_size; icmd_clear_semaphore_com(mf); CHECK_RC(rc); // adrianc: they should provide this bit as well in virtual cr-space atm get from cr-space rc = icmd_take_semaphore_com(mf, pid); CHECK_RC(rc); rc = icmd_init_vcr_crspace_addr(mf); icmd_clear_semaphore_com(mf); CHECK_RC(rc); mf->icmd.icmd_opened = 1; DBG_PRINTF("-D- iCMD command addr: 0x%x\n", mf->icmd.cmd_addr); DBG_PRINTF("-D- iCMD ctrl addr: 0x%x\n", mf->icmd.ctrl_addr); DBG_PRINTF("-D- iCMD semaphore addr(semaphore space): 0x%x\n", mf->icmd.semaphore_addr); DBG_PRINTF("-D- iCMD max mailbox size: 0x%x size %d\n", mf->icmd.max_cmd_size, size); DBG_PRINTF("-D- iCMD stat_cfg_not_done addr: 0x%x:%d\n", mf->icmd.static_cfg_not_done_addr, mf->icmd.static_cfg_not_done_offs); return ME_OK; } void icmd_get_dma_support(mfile* mf) { mf->icmd.dma_icmd = 0; mem_props_t mem_p; if (get_mem_props(mf, MEM_ICMD, &mem_p)) { return; } mf->icmd.dma_pa = mem_p.dma_pa; mf->icmd.dma_size = mem_p.mem_size; if (getenv("ENABLE_DMA_ICMD") == NULL) { return; } if (!mf->icmd.dma_pa) { return; } u_int8_t dev_cap_data[ICMD_QUERY_CAP_CMD_SZ] = {0}; int rc = icmd_send_command(mf, ICMD_QUERY_CAP_CMD_ID, dev_cap_data, ICMD_QUERY_CAP_CMD_SZ, 0); if (!rc) { mf->icmd.dma_icmd = pop_from_buff(dev_cap_data, ICMD_QUERY_CAP_EXMB_ICMD_OFF, 1); } } #ifndef __FreeBSD__ static int is_pci_device(mfile* mf) { return (mf->flags & MDEVS_I2CM) || (mf->flags & (MDEVS_CABLE | MDEVS_LINKX_CHIP)) || (mf->flags & MDEVS_SOFTWARE); } static int is_livefish_device(mfile* mf) { // Make sure to update this table both in mtcr.c & mtcr_ul_com.c ! static u_int32_t live_fish_ids[][2] = {{DeviceConnectX4_HwId, DeviceConnectX4_HwId}, {DeviceConnectX4LX_HwId, DeviceConnectX4LX_HwId}, {DeviceConnectX5_HwId, DeviceConnectX5_HwId}, {DeviceConnectX6_HwId, DeviceConnectX6_HwId}, {DeviceConnectX6DX_HwId, DeviceConnectX6DX_HwId}, {DeviceConnectX6LX_HwId, DeviceConnectX6LX_HwId}, {DeviceConnectX7_HwId, DeviceConnectX7_HwId}, {DeviceBlueField3_HwId, DeviceBlueField3_HwId}, {DeviceBlueField2_HwId, DeviceBlueField2_HwId}, {DeviceBlueField_HwId, DeviceBlueField_HwId}, {DeviceSwitchIB_HwId, DeviceSwitchIB_HwId}, {DeviceSpectrum_HwId, DeviceSpectrum_HwId}, {DeviceSwitchIB2_HwId, DeviceSwitchIB2_HwId}, {DeviceQuantum_HwId, DeviceQuantum_HwId}, {DeviceQuantum2_HwId, DeviceQuantum2_HwId}, {DeviceSpectrum2_HwId, DeviceSpectrum2_HwId}, {DeviceSpectrum3_HwId, DeviceSpectrum3_HwId}, {DeviceSpectrum4_HwId, DeviceSpectrum4_HwId}, {0, 0}}; int i = 0; unsigned int hwdevid = 0; if (mf->tp == MST_SOFTWARE) { return 1; } int rc = mread4(mf, 0xf0014, &hwdevid); hwdevid &= 0xffff; // otherwise, BF A1 will fail in the searching (0x00010211) if (rc == 4) { while (live_fish_ids[i][0] != 0) { if (live_fish_ids[i][0] == hwdevid) { return (mf->dinfo->pci.dev_id == live_fish_ids[i][1]); } i++; } } return 0; } #endif int icmd_open(mfile* mf) { if (mf->icmd.icmd_opened) { return ME_OK; } #ifndef __FreeBSD__ // Currently livefish check is supported for PCI devices & devices that map to CR. // ICMD is not supported while in livefish (GW is locked). if ((is_pci_device(mf) || (mf->flags & MDEVS_TAVOR_CR)) && is_livefish_device(mf)) { return ME_ICMD_NOT_SUPPORTED; } #endif mf->icmd.took_semaphore = 0; mf->icmd.ib_semaphore_lock_supported = 0; // attempt to open via CR-Space #if defined(MST_UL) && !defined(MST_UL_ICMD) if (mf->vsec_supp) { return icmd_init_vcr(mf); } // ugly hack avoid compiler warrnings if (0) { icmd_init_cr(mf); } return ME_ICMD_NOT_SUPPORTED; #else /*if (mf->gb_info.is_gearbox){ return icmd_init_cr(mf); }*/ if (mf->vsec_supp) { int rc = icmd_init_vcr(mf); if (rc == ME_OK) { icmd_get_dma_support(mf); } return rc; } else { return icmd_init_cr(mf); } #endif } /* * icmd_close */ void icmd_close(mfile* mf) { if (mf) { if (mf->icmd.took_semaphore) { if (icmd_clear_semaphore(mf)) { DBG_PRINTF("Failed to clear semaphore!\n"); } } mf->icmd.icmd_opened = 0; } } mstflint-4.26.0/mtcr_ul/mtcr_ul_com.h0000644000175000017500000001502014522641732020022 0ustar tzafrirctzafrirc/* * * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mtcr_ul_com.h * * Created on: Feb 16, 2016 * Author: adham */ #ifndef USER_MTCR_MTCR_UL_COM_H_ #define USER_MTCR_MTCR_UL_COM_H_ #include "mtcr_com_defs.h" #include "mtcr_mf.h" #ifdef __cplusplus extern "C" { #endif /* * Read 4 bytes, return number of succ. read bytes or -1 on failure */ int mread4_ul(mfile* mf, unsigned int offset, u_int32_t* value); /* * Write 4 bytes, return number of succ. written bytes or -1 on failure */ int mwrite4_ul(mfile* mf, unsigned int offset, u_int32_t value); int mread4_block_ul(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len); int mwrite4_block_ul(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len); int msw_reset_ul(mfile* mf); int mhca_reset_ul(mfile* mf); /* * Get list of MST_ul(Mellanox Software Tools) devices. * Put all device names as null-terminated strings to buf. * * Return number of devices found or -1 if buf overflow */ int mdevices_ul(char* buf, int len, int mask); /* * Get list of MST_ul(Mellanox Software Tools) devices. * Put all device names as null-terminated strings to buf. * * Return number of devices found or -1 if buf overflow */ int mdevices_v_ul(char* buf, int len, int mask, int verbosity); /* * Get list of MST_ul(Mellanox Software Tools) devices info records. * Return a dynamic allocated array of dev_info records. * len will be updated to hold the array length * */ dev_info* mdevices_info_ul(int mask, int* len); /* * * Get list of MST (Mellanox Software Tools) devices info records. * * Return a dynamic allocated array of dev_info records. * * len will be updated to hold the array length * * Verbosity will decide whether to get all the Physical functions or not. */ dev_info* mdevices_info_v_ul(int mask, int* len, int verbosity); /* * Open Mellanox Software tools_ul(mst) driver. Device type==INFINIHOST * Return valid void ptr or 0 on failure */ mfile* mopen_ul(const char* name); /* * Close Mellanox driver * req. descriptor */ int mclose_ul(mfile* mf); int maccess_reg_mad_ul(mfile* mf, u_int8_t* data); int maccess_reg_ul(mfile* mf, u_int16_t reg_id, maccess_reg_method_t reg_method, void* reg_data, u_int32_t reg_size, u_int32_t r_size_reg, // used when sending via icmd interface_ul(how much data should be read // back to the user) u_int32_t w_size_reg, // used when sending via icmd interface_ul(how much data should be written // to the scratchpad) if you dont know what you are doing then r_size_reg = // w_size_reg = your_register_size int* reg_status); int tools_cmdif_send_inline_cmd_ul(mfile* mf, u_int64_t in_param, u_int64_t* out_param, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier); int tools_cmdif_send_mbox_command_ul(mfile* mf, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier, int data_offs_in_mbox, void* data, int data_size, int skip_write); int tools_cmdif_unlock_semaphore_ul(mfile* mf); int mget_max_reg_size_ul(mfile* mf, maccess_reg_method_t reg_method); int supports_reg_access_gmp_ul(mfile* mf, maccess_reg_method_t reg_method); int supports_reg_access_cls_a_ul(mfile* mf, maccess_reg_method_t reg_method); int mib_send_cls_a_access_reg_mad_ul(mfile* mf, u_int8_t* data); int mib_send_gmp_access_reg_mad_ul(mfile* mf, u_int32_t* data, u_int32_t reg_size, u_int32_t reg_id, maccess_reg_method_t reg_method, int* reg_status); int mread_buffer_ul(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len); int mwrite_buffer_ul(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len); int mclear_pci_semaphore_ul(const char* name); int mvpd_read4_ul(mfile* mf, unsigned int offset, u_int8_t value[4]); int space_to_cap_offset(int space); int get_dma_pages(mfile* mf, struct mtcr_page_info* page_info, int page_amount); int release_dma_pages(mfile* mf, int page_amount); int read_dword_from_conf_space(mfile* mf, u_int32_t offset, u_int32_t* data); #ifdef __cplusplus } #endif #endif /* USER_MTCR_MTCR_UL_COM_H_ */ mstflint-4.26.0/mtcr_ul/mtcr_icmd_cif.h0000644000175000017500000000774214522641732020315 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MTCR_ICMD_CIF /* guard */ #define _MTCR_ICMD_CIF #ifdef __cplusplus extern "C" { #endif #include #include #ifdef MST_UL #include "mtcr_mf.h" #include #endif /* --------- Typedefs & Constants ---------------------------------- */ #ifndef IN #define IN #define OUT #define INOUT #endif #define FLASH_REG_ACCESS 0x9001 #define ICMD_MAX_CMD_SIZE 0x340 // max mailbox size MTCR_API extern int increase_poll_time; /* --------- Functional API ---------------------------------------- */ /** * Create a device-context for the command-interface of a ConnectIB device. * @param[in] mf Open mfile to the desired device. * @return zero value on success, non zero value on failure. **/ int icmd_open(mfile* mf); /** * Close an open device-context for the command-interface of a * ConnectIB device. * @param[in] dev A pointer to a device context, previously * obtained by a call to gcif_open. **/ void icmd_close(mfile* mf); /** * Handles the send command procedure. * for completeness, but calling it is strongly advised against. * @param[in] dev A pointer to a device context, previously * obtained by a call to gcif_open. * @return One of the GCIF_STATUS_* values, or a raw * status value (as indicated in cr-space). **/ int icmd_send_command_int(mfile* mf, IN int opcode, INOUT void* data, IN int write_data_size, IN int read_data_size, IN int skip_write); int icmd_send_command_enhanced(mfile* mf, IN int opcode, INOUT void* data, IN int write_data_size, IN int read_data_size, IN int skip_write); /** * Take the Tools-HCR semaphore. This functionality is provided * for completeness, but calling it is strongly advised against. * @param[in] dev A pointer to a device context, previously * obtained by a call to gcif_open. * @return One of the GCIF_STATUS_* values, or a raw * status value (as indicated in cr-space). **/ int icmd_take_semaphore(mfile* mf); #ifdef __cplusplus } #endif #endif /* _MTCR_ICMD_CIF guard */ mstflint-4.26.0/mtcr_ul/Makefile.in0000644000175000017500000011105014522641740017412 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @ENABLE_INBAND_TRUE@am__append_1 = mtcr_ib_ofed.c subdir = mtcr_ul DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(libraryinclude_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(pkglibdir)" \ "$(DESTDIR)$(libraryincludedir)" LTLIBRARIES = $(pkglib_LTLIBRARIES) libmtcr_ul_la_LIBADD = am__libmtcr_ul_la_SOURCES_DIST = mtcr_ul.c mtcr_ib.h mtcr_int_defs.h \ mtcr_ib_res_mgt.h mtcr_ib_res_mgt.c mtcr_tools_cif.c \ mtcr_tools_cif.h mtcr_ul_icmd_cif.c mtcr_icmd_cif.h \ mtcr_mem_ops.c mtcr_mem_ops.h mtcr_ul_com_defs.h mtcr_mf.h \ mtcr_ul_com.h mtcr_ul_com.c packets_common.c packets_common.h \ packets_layout.c packets_layout.h mlx5ctl.c mlx5ctl.h \ mlx5ctl_ioctl.h mtcr_ib_ofed.c @ENABLE_INBAND_TRUE@am__objects_1 = libmtcr_ul_la-mtcr_ib_ofed.lo am_libmtcr_ul_la_OBJECTS = libmtcr_ul_la-mtcr_ul.lo \ libmtcr_ul_la-mtcr_ib_res_mgt.lo \ libmtcr_ul_la-mtcr_tools_cif.lo \ libmtcr_ul_la-mtcr_ul_icmd_cif.lo \ libmtcr_ul_la-mtcr_mem_ops.lo libmtcr_ul_la-mtcr_ul_com.lo \ libmtcr_ul_la-packets_common.lo \ libmtcr_ul_la-packets_layout.lo libmtcr_ul_la-mlx5ctl.lo \ $(am__objects_1) libmtcr_ul_la_OBJECTS = $(am_libmtcr_ul_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libmtcr_ul_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libmtcr_ul_la_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmtcr_ul_la_SOURCES) DIST_SOURCES = $(am__libmtcr_ul_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(libraryinclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common -I$(top_srcdir)/dev_mgt pkglib_LTLIBRARIES = libmtcr_ul.la libmtcr_ul_la_SOURCES = mtcr_ul.c mtcr_ib.h mtcr_int_defs.h \ mtcr_ib_res_mgt.h mtcr_ib_res_mgt.c mtcr_tools_cif.c \ mtcr_tools_cif.h mtcr_ul_icmd_cif.c mtcr_icmd_cif.h \ mtcr_mem_ops.c mtcr_mem_ops.h mtcr_ul_com_defs.h mtcr_mf.h \ mtcr_ul_com.h mtcr_ul_com.c packets_common.c packets_common.h \ packets_layout.c packets_layout.h mlx5ctl.c mlx5ctl.h \ mlx5ctl_ioctl.h $(am__append_1) libmtcr_ul_la_CFLAGS = -W -Wall -g -MP -MD -fPIC -DMTCR_API="" -DMST_UL libraryincludedir = $(includedir)/mstflint libraryinclude_HEADERS = $(top_srcdir)/include/mtcr_ul/mtcr.h $(top_srcdir)/include/mtcr_ul/mtcr_com_defs.h $(top_srcdir)/include/mtcr_ul/mtcr_mf.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mtcr_ul/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mtcr_ul/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ } uninstall-pkglibLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ done clean-pkglibLTLIBRARIES: -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) @list='$(pkglib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmtcr_ul.la: $(libmtcr_ul_la_OBJECTS) $(libmtcr_ul_la_DEPENDENCIES) $(EXTRA_libmtcr_ul_la_DEPENDENCIES) $(AM_V_CCLD)$(libmtcr_ul_la_LINK) -rpath $(pkglibdir) $(libmtcr_ul_la_OBJECTS) $(libmtcr_ul_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mlx5ctl.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_ul.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_ul_com.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-packets_common.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-packets_layout.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libmtcr_ul_la-mtcr_ul.lo: mtcr_ul.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_ul.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_ul.Tpo -c -o libmtcr_ul_la-mtcr_ul.lo `test -f 'mtcr_ul.c' || echo '$(srcdir)/'`mtcr_ul.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_ul.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_ul.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_ul.c' object='libmtcr_ul_la-mtcr_ul.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_ul.lo `test -f 'mtcr_ul.c' || echo '$(srcdir)/'`mtcr_ul.c libmtcr_ul_la-mtcr_ib_res_mgt.lo: mtcr_ib_res_mgt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_ib_res_mgt.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Tpo -c -o libmtcr_ul_la-mtcr_ib_res_mgt.lo `test -f 'mtcr_ib_res_mgt.c' || echo '$(srcdir)/'`mtcr_ib_res_mgt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_ib_res_mgt.c' object='libmtcr_ul_la-mtcr_ib_res_mgt.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_ib_res_mgt.lo `test -f 'mtcr_ib_res_mgt.c' || echo '$(srcdir)/'`mtcr_ib_res_mgt.c libmtcr_ul_la-mtcr_tools_cif.lo: mtcr_tools_cif.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_tools_cif.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Tpo -c -o libmtcr_ul_la-mtcr_tools_cif.lo `test -f 'mtcr_tools_cif.c' || echo '$(srcdir)/'`mtcr_tools_cif.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_tools_cif.c' object='libmtcr_ul_la-mtcr_tools_cif.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_tools_cif.lo `test -f 'mtcr_tools_cif.c' || echo '$(srcdir)/'`mtcr_tools_cif.c libmtcr_ul_la-mtcr_ul_icmd_cif.lo: mtcr_ul_icmd_cif.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_ul_icmd_cif.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Tpo -c -o libmtcr_ul_la-mtcr_ul_icmd_cif.lo `test -f 'mtcr_ul_icmd_cif.c' || echo '$(srcdir)/'`mtcr_ul_icmd_cif.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_ul_icmd_cif.c' object='libmtcr_ul_la-mtcr_ul_icmd_cif.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_ul_icmd_cif.lo `test -f 'mtcr_ul_icmd_cif.c' || echo '$(srcdir)/'`mtcr_ul_icmd_cif.c libmtcr_ul_la-mtcr_mem_ops.lo: mtcr_mem_ops.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_mem_ops.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Tpo -c -o libmtcr_ul_la-mtcr_mem_ops.lo `test -f 'mtcr_mem_ops.c' || echo '$(srcdir)/'`mtcr_mem_ops.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_mem_ops.c' object='libmtcr_ul_la-mtcr_mem_ops.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_mem_ops.lo `test -f 'mtcr_mem_ops.c' || echo '$(srcdir)/'`mtcr_mem_ops.c libmtcr_ul_la-mtcr_ul_com.lo: mtcr_ul_com.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_ul_com.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_ul_com.Tpo -c -o libmtcr_ul_la-mtcr_ul_com.lo `test -f 'mtcr_ul_com.c' || echo '$(srcdir)/'`mtcr_ul_com.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_ul_com.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_ul_com.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_ul_com.c' object='libmtcr_ul_la-mtcr_ul_com.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_ul_com.lo `test -f 'mtcr_ul_com.c' || echo '$(srcdir)/'`mtcr_ul_com.c libmtcr_ul_la-packets_common.lo: packets_common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-packets_common.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-packets_common.Tpo -c -o libmtcr_ul_la-packets_common.lo `test -f 'packets_common.c' || echo '$(srcdir)/'`packets_common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-packets_common.Tpo $(DEPDIR)/libmtcr_ul_la-packets_common.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='packets_common.c' object='libmtcr_ul_la-packets_common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-packets_common.lo `test -f 'packets_common.c' || echo '$(srcdir)/'`packets_common.c libmtcr_ul_la-packets_layout.lo: packets_layout.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-packets_layout.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-packets_layout.Tpo -c -o libmtcr_ul_la-packets_layout.lo `test -f 'packets_layout.c' || echo '$(srcdir)/'`packets_layout.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-packets_layout.Tpo $(DEPDIR)/libmtcr_ul_la-packets_layout.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='packets_layout.c' object='libmtcr_ul_la-packets_layout.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-packets_layout.lo `test -f 'packets_layout.c' || echo '$(srcdir)/'`packets_layout.c libmtcr_ul_la-mlx5ctl.lo: mlx5ctl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mlx5ctl.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mlx5ctl.Tpo -c -o libmtcr_ul_la-mlx5ctl.lo `test -f 'mlx5ctl.c' || echo '$(srcdir)/'`mlx5ctl.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mlx5ctl.Tpo $(DEPDIR)/libmtcr_ul_la-mlx5ctl.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mlx5ctl.c' object='libmtcr_ul_la-mlx5ctl.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mlx5ctl.lo `test -f 'mlx5ctl.c' || echo '$(srcdir)/'`mlx5ctl.c libmtcr_ul_la-mtcr_ib_ofed.lo: mtcr_ib_ofed.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_ib_ofed.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Tpo -c -o libmtcr_ul_la-mtcr_ib_ofed.lo `test -f 'mtcr_ib_ofed.c' || echo '$(srcdir)/'`mtcr_ib_ofed.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_ib_ofed.c' object='libmtcr_ul_la-mtcr_ib_ofed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_ib_ofed.lo `test -f 'mtcr_ib_ofed.c' || echo '$(srcdir)/'`mtcr_ib_ofed.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-libraryincludeHEADERS: $(libraryinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(libraryinclude_HEADERS)'; test -n "$(libraryincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libraryincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libraryincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libraryincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libraryincludedir)" || exit $$?; \ done uninstall-libraryincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libraryinclude_HEADERS)'; test -n "$(libraryincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(libraryincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libraryincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-pkglibLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-libraryincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-pkglibLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libraryincludeHEADERS \ uninstall-pkglibLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-pkglibLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libraryincludeHEADERS install-man \ install-pdf install-pdf-am install-pkglibLTLIBRARIES \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am \ uninstall-libraryincludeHEADERS uninstall-pkglibLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mtcr_ul/mtcr_ul_com.c0000644000175000017500000032533214522641732020027 0ustar tzafrirctzafrirc/* * * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * mtcr_ul.c - Mellanox Hardware Access implementation * */ /* use memory mapped /dev/mem for access */ #define CONFIG_ENABLE_MMAP 1 /* mmap /dev/mem for memory access (does not work on sparc) */ #define CONFIG_USE_DEV_MEM 1 /* use pci configuration cycles for access */ #define CONFIG_ENABLE_PCICONF 1 #ifndef _XOPEN_SOURCE #if CONFIG_ENABLE_PCICONF && CONFIG_ENABLE_MMAP /* For strerror_r */ #define _XOPEN_SOURCE 600 #elif CONFIG_ENABLE_PCICONF #define _XOPEN_SOURCE 500 #endif #endif #if CONFIG_ENABLE_MMAP #define _FILE_OFFSET_BITS 64 #endif #define MTCR_MAP_SIZE 0x100000 #define DBG_PRINTF(...) \ do \ { \ if (getenv("MFT_DEBUG") != NULL) \ { \ fprintf(stderr, __VA_ARGS__); \ } \ } while (0) #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if CONFIG_ENABLE_MMAP #include #include #include #endif #include #include "tools_utils.h" #include "mtcr_ul_com.h" #include "mtcr_int_defs.h" #include "mtcr_ib.h" #include "packets_layout.h" #include "mtcr_tools_cif.h" #include "mtcr_icmd_cif.h" #include "mlx5ctl_ioctl.h" #include "kernel/mst.h" #define CX3_SW_ID 4099 #define CX3PRO_SW_ID 4103 #define HW_ID_ADDR 0xf0014 typedef enum { Clear_Vsec_Semaphore = 0x1, } adv_opt_t; #define DBDF "%4.4x:%2.2x:%2.2x.%1.1x" #define DRIVER_CR_NAME "/dev/" DBDF "_mstcr" #define DRIVER_CONF_NAME "/dev/" DBDF "_mstconf" /* Forward decl*/ static int get_inband_dev_from_pci(char* inband_dev, char* pci_dev); int check_force_config(unsigned my_domain, unsigned my_bus, unsigned my_dev, unsigned my_func); mfile* mopen_ul_int(const char* name, u_int32_t adv_opt); int init_dev_info_ul(mfile* mf, const char* dev_name, unsigned domain, unsigned bus, unsigned dev, unsigned func); /* * Lock file section: * * in order to support concurrency on both MEMORY/CONFIG_CYCLES access methods * there is need for a sync mechanism between mtcr_ul using processes * * solution: each mfile obj shall contain a file descriptor linked to a unique, device determined file * which will be used as a lock for the critical sections in read/write operations. * these lock files will be created per device (dbdf format) AND per interface (memory/configuration cycles). */ #define LOCK_FILE_DIR "/tmp/mstflint_lockfiles" #define LOCK_FILE_FORMAT "/tmp/mstflint_lockfiles/%04x:%02x:%02x.%x_%s" /* lockfile example : /tmp/mstflint_lockfiles/0000:0b:00.0_config */ /* /tmp/mstflint_lockfiles/0000:0b:00.0_mem */ /* general format : /tmp/mstflint_lockfiles/_ */ #define CHECK_LOCK(rc) \ if (rc) \ { \ return rc; \ } #define MAX_RETRY_CNT 4096 static int _flock_int(int fdlock, int operation) { int cnt = 0; if (fdlock == 0) { /* in case we failed to create the lock file we ignore the locking mechanism */ return 0; } do{ if (flock(fdlock, operation | LOCK_NB) == 0) { return 0; } else if (errno != EWOULDBLOCK) { break; /* BAD! lock/free failed */ } if ((cnt & 0xf) == 0) { /* sleep every 16 retries */ usleep(1); } cnt++; } while (cnt < MAX_RETRY_CNT); perror("failed to perform lock operation."); return -1; } static int _create_lock(mfile* mf, unsigned domain, unsigned bus, unsigned dev, unsigned func) { char fname[64] = {0}; int rc; int fd = 0; if (!(mf->ul_ctx)) { goto cl_clean_up; } snprintf(fname, sizeof(fname) - 1, LOCK_FILE_FORMAT, domain, bus, dev, func, mf->tp == MST_PCICONF ? "config" : "mem"); rc = mkdir("/tmp", 0777); if (rc && (errno != EEXIST)) { goto cl_clean_up; } rc = mkdir(LOCK_FILE_DIR, 0777); if (rc && (errno != EEXIST)) { goto cl_clean_up; } fd = open(fname, O_RDONLY | O_CREAT, 0777); if (fd < 0) { goto cl_clean_up; } ((ul_ctx_t*)mf->ul_ctx)->fdlock = fd; return 0; cl_clean_up: fprintf(stderr, "Warrning: Failed to create lockfile: %s (parallel access not supported)\n", fname); return 0; } /*End of Lock file section */ static int _extract_dbdf_from_full_name(const char* name, unsigned * domain, unsigned * bus, unsigned * dev, unsigned * func) { if (sscanf(name, "/sys/bus/pci/devices/%4x:%2x:%2x.%d/resource0", domain, bus, dev, func) == 4) { return 0; } else if (sscanf(name, "/sys/bus/pci/devices/%4x:%2x:%2x.%d/config", domain, bus, dev, func) == 4) { return 0; } else if (sscanf(name, "/proc/bus/pci/%4x:%2x/%2x.%d", domain, bus, dev, func) == 4) { return 0; } else if (sscanf(name, "/proc/bus/pci/%2x/%2x.%d", bus, dev, func) == 3) { *domain = 0; return 0; } /* failed to extract dbdf format from name */ errno = EINVAL; return -1; } static int mtcr_connectx_flush(void* ptr, int fdlock) { u_int32_t value; int rc; rc = _flock_int(fdlock, LOCK_EX); CHECK_LOCK(rc); *((u_int32_t*)((char*)ptr + 0xf0380)) = 0x0; do{ asm volatile ("" ::: "memory"); u_int32_t tmp = *((u_int32_t*)((char*)ptr + 0xf0380)); value = __be32_to_cpu(tmp); } while (value); rc = _flock_int(fdlock, LOCK_UN); CHECK_LOCK(rc) return 0; } int mread4_ul(mfile* mf, unsigned int offset, u_int32_t* value) { ul_ctx_t* ctx = mf->ul_ctx; return ctx->mread4(mf, offset, value); } int mwrite4_ul(mfile* mf, unsigned int offset, u_int32_t value) { ul_ctx_t* ctx = mf->ul_ctx; return ctx->mwrite4(mf, offset, value); } /* TODO: Verify change 'data' type from void* to u_in32_t* does not mess up things */ static int mread_chunk_as_multi_mread4(mfile* mf, unsigned int offset, u_int32_t* data, int length) { int i = 0; if (length % 4) { return EINVAL; } for (i = 0; i < length; i += 4) { u_int32_t value = 0; if (mread4_ul(mf, offset + i, &value) != 4) { return -1; } memcpy((char*)data + i, &value, 4); } return length; } static int mwrite_chunk_as_multi_mwrite4(mfile* mf, unsigned int offset, u_int32_t* data, int length) { int i = 0; if (length % 4) { return EINVAL; } for (i = 0; i < length; i += 4) { u_int32_t value = 0; memcpy(&value, (char*)data + i, 4); if (mwrite4_ul(mf, offset + i, value) != 4) { return -1; } } return length; } static int mst_driver_connectx_flush(mfile* mf); int mtcr_driver_cr_mread4(mfile* mf, unsigned int offset, u_int32_t* value); void mpci_change_ul(mfile* mf); /* * Return values: * 0: OK * <0: Error * 1 : Device does not support memory access * */ static int mtcr_check_signature(mfile* mf) { unsigned signature = 0; int rc; char * connectx_flush = getenv("CONNECTX_FLUSH"); rc = mread4_ul(mf, 0xF0014, &signature); if (rc != 4) { if (!errno) { errno = EIO; } return -1; } switch (signature) { case 0xbad0cafe: /* secure host mode device id */ return 0; case 0xbadacce5: /* returned upon mapping the UAR bar */ case 0xffffffff: /* returned when pci mem access is disabled (driver down) */ return 1; } if ((connectx_flush == NULL) || strcmp(connectx_flush, "0")) { if (((signature == 0xa00190) || ((signature & 0xffff) == 0x1f5) || ((signature & 0xffff) == 0x1f7)) && (mf->tp == MST_PCI)) { ul_ctx_t* ctx = mf->ul_ctx; ctx->connectx_flush = 1; if (ctx->via_driver) { if (mst_driver_connectx_flush(mf)) { return -1; } } else if (mtcr_connectx_flush(mf->bar_virtual_addr, ctx->fdlock)) { return -1; } } } return 0; } int mst_driver_vpd_read4(mfile* mf, unsigned int offset, u_int8_t value[]) { int flag = 0; struct mst_vpd_read4_st read_vpd4; if (mf->tp != MST_PCICONF) { mpci_change_ul(mf); flag = 1; } memset(&read_vpd4, 0, sizeof(read_vpd4)); read_vpd4.offset = offset; int ret = ioctl(mf->fd, PCICONF_VPD_READ4, &read_vpd4); if (ret < 0) { return ret; } memcpy(value, &read_vpd4.data, 4); if (flag) { mpci_change_ul(mf); } return 0; } #if CONFIG_ENABLE_MMAP /* * The PCI interface treats multi-function devices as independent * devices. The slot/function address of each device is encoded * in a single byte as follows: * * 7:3 = slot * 2:0 = function */ #define PCI_DEVFN(slot, func) ((((slot) & 0x1f) << 3) | ((func) & 0x07)) #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f) #define PCI_FUNC(devfn) ((devfn) & 0x07) static unsigned long long mtcr_procfs_get_offset(unsigned my_bus, unsigned my_dev, unsigned my_func) { FILE * f; unsigned irq; unsigned long long base_addr[6], rom_base_addr, size[6], rom_size; unsigned bus, dev, func; /* unsigned vendor_id; */ /* unsigned device_id; */ unsigned int cnt; unsigned long long offset = (unsigned long long)-1; char buf[4048]; f = fopen("/proc/bus/pci/devices", "r"); if (!f) { return offset; } for (;;) { if (fgets(buf, sizeof(buf) - 1, f)) { unsigned dfn, vend; cnt = sscanf(buf, "%x %x %x %llx %llx %llx %llx %llx %llx " "%llx %llx %llx %llx %llx %llx %llx %llx", &dfn, &vend, &irq, &base_addr[0], &base_addr[1], &base_addr[2], &base_addr[3], &base_addr[4], &base_addr[5], &rom_base_addr, &size[0], &size[1], &size[2], &size[3], &size[4], &size[5], &rom_size); if ((cnt != 9) && (cnt != 10) && (cnt != 17)) { fprintf(stderr, "proc: parse error (read only %d items)\n", cnt); fprintf(stderr, "the offending line in " "/proc/bus/pci/devices" " is " "\"%.*s\"\n", (int)sizeof(buf), buf); goto error; } bus = dfn >> 8U; dev = PCI_SLOT(dfn & 0xff); func = PCI_FUNC(dfn & 0xff); /* vendor_id = vend >> 16U; */ /* device_id = vend & 0xffff; */ if ((bus == my_bus) && (dev == my_dev) && (func == my_func)) { break; } } else { goto error; } } if ((cnt != 17) || (size[1] != 0) || (size[0] != MTCR_MAP_SIZE)) { if (0) { fprintf(stderr, "proc: unexpected region size values: " "cnt=%d, size[0]=%#llx, size[1]=%#llx\n", cnt, size[0], size[1]); } if (0) { fprintf(stderr, "the offending line in " "/proc/bus/pci/devices" " is \"%.*s\"\n", (int)sizeof(buf), buf); } goto error; } offset = ((unsigned long long)(base_addr[1]) << 32) + ((unsigned long long)(base_addr[0]) & ~(unsigned long long)(0xfffff)); fclose(f); return offset; error: fclose(f); errno = ENXIO; return offset; } static unsigned long long mtcr_sysfs_get_offset(unsigned domain, unsigned bus, unsigned dev, unsigned func) { unsigned long long start, end, type; unsigned long long offset = (unsigned long long)-1; FILE * f; int cnt; char mbuf[99] = "/sys/bus/pci/devices/XXXX:XX:XX.X/resource"; sprintf(mbuf, "/sys/bus/pci/devices/%4.4x:%2.2x:%2.2x.%1.1x/resource", domain, bus, dev, func); f = fopen(mbuf, "r"); if (!f) { return offset; } cnt = fscanf(f, "0x%llx 0x%llx 0x%llx", &start, &end, &type); if ((cnt != 3) || (end != start + MTCR_MAP_SIZE - 1)) { if (0) { fprintf(stderr, "proc: unexpected region size values: " "cnt=%d, start=%#llx, end=%#llx\n", cnt, start, end); } goto error; } fclose(f); return start; error: fclose(f); errno = ENOENT; return offset; } /* */ /* PCI MEMORY ACCESS FUNCTIONS */ /* */ static int mtcr_pcicr_mclose(mfile* mf) { if (mf) { if (mf->bar_virtual_addr) { munmap(mf->bar_virtual_addr, MTCR_MAP_SIZE); } if (mf->fd > 0) { close(mf->fd); } if (mf->res_fd > 0) { close(mf->res_fd); } } return 0; } static int mtcr_mmap(mfile* mf, const char* name, off_t off, int ioctl_needed) { int err; mf->fd = open(name, O_RDWR | O_SYNC); if (mf->fd < 0) { return -1; } if (ioctl_needed && (ioctl(mf->fd, PCIIOC_MMAP_IS_MEM) < 0)) { err = errno; close(mf->fd); errno = err; return -1; } mf->bar_virtual_addr = mmap(NULL, MTCR_MAP_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, mf->fd, off); if (!mf->bar_virtual_addr || (mf->bar_virtual_addr == MAP_FAILED)) { err = errno; close(mf->fd); errno = err; return -1; } return 0; } int mtcr_pcicr_mread4(mfile* mf, unsigned int offset, u_int32_t* value) { ul_ctx_t* ctx = mf->ul_ctx; if (offset >= MTCR_MAP_SIZE) { errno = EINVAL; return 0; } if (ctx->need_flush) { if (mtcr_connectx_flush(mf->bar_virtual_addr, ctx->fdlock)) { return 0; } ctx->need_flush = 0; } u_int32_t tmp = ((u_int32_t*)mf->bar_virtual_addr)[offset / 4]; *value = __be32_to_cpu(tmp); return 4; } int mtcr_pcicr_mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { ul_ctx_t* ctx = mf->ul_ctx; if (offset >= MTCR_MAP_SIZE) { errno = EINVAL; return 0; } *((u_int32_t*)((char*)mf->bar_virtual_addr + offset)) = __cpu_to_be32(value); ctx->need_flush = ctx->connectx_flush; return 4; } static int mtcr_pcicr_open(mfile* mf, const char* name, char* conf_name, off_t off, int ioctl_needed, u_int32_t adv_opt) { int rc; ul_ctx_t* ctx = mf->ul_ctx; mf->tp = MST_PCI; ctx->mread4 = mtcr_pcicr_mread4; ctx->mwrite4 = mtcr_pcicr_mwrite4; ctx->mread4_block = mread_chunk_as_multi_mread4; ctx->mwrite4_block = mwrite_chunk_as_multi_mwrite4; ctx->mclose = mtcr_pcicr_mclose; mf->bar_virtual_addr = NULL; mf->fd = -1; ctx->connectx_flush = 0; ctx->need_flush = 0; rc = mtcr_mmap(mf, name, off, ioctl_needed); if (rc) { goto end; } rc = mtcr_check_signature(mf); end: if (rc) { mtcr_pcicr_mclose(mf); } else if (conf_name != NULL) { mfile* conf_mf = mopen_ul_int(conf_name, adv_opt); if (conf_mf != NULL) { mf->res_fd = conf_mf->fd; ul_ctx_t* conf_ctx = conf_mf->ul_ctx; mf->res_tp = conf_mf->tp; mf->vsec_addr = conf_mf->vsec_addr; mf->vsec_supp = conf_mf->vsec_supp; mf->address_space = conf_mf->address_space; ctx->res_fdlock = conf_ctx->fdlock; ctx->res_mread4 = conf_ctx->mread4; ctx->res_mwrite4 = conf_ctx->mwrite4; ctx->res_mread4_block = conf_ctx->mread4_block; ctx->res_mwrite4_block = conf_ctx->mwrite4_block; free(conf_mf); } } return rc; } /* */ /* PCI CONF ACCESS FUNCTIONS */ /* */ #if CONFIG_ENABLE_PCICONF /* PCI address space related enum*/ enum { PCI_CAP_PTR = 0x34, PCI_HDR_SIZE = 0x40, PCI_EXT_SPACE_ADDR = 0xff, PCI_CTRL_OFFSET = 0x4, /* for space / semaphore / auto-increment bit */ PCI_COUNTER_OFFSET = 0x8, PCI_SEMAPHORE_OFFSET = 0xc, PCI_ADDR_OFFSET = 0x10, PCI_DATA_OFFSET = 0x14, PCI_FLAG_BIT_OFFS = 31, PCI_SPACE_BIT_OFFS = 0, PCI_SPACE_BIT_LEN = 16, PCI_STATUS_BIT_OFFS = 29, PCI_STATUS_BIT_LEN = 3, }; /* Mellanox vendor specific enum */ enum { CAP_ID = 0x9, ICMD_DOMAIN = 0x1, CR_SPACE_DOMAIN = 0x2, SEMAPHORE_DOMAIN = 0xa, IFC_MAX_RETRIES = 2048 }; /* PCI operation enum(read or write)*/ enum { READ_OP = 0, WRITE_OP = 1, }; #define READ4_PCI(mf, val_ptr, pci_offs, err_prefix, action_on_fail) \ do \ { \ int rc; \ int lock_rc; \ ul_ctx_t* pci_ctx = mf->ul_ctx; \ lock_rc = _flock_int(pci_ctx->fdlock, LOCK_EX); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ rc = pread(mf->fd, val_ptr, 4, pci_offs); \ lock_rc = _flock_int(pci_ctx->fdlock, LOCK_UN); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ if (rc != 4) \ { \ if (rc < 0) \ { \ perror(err_prefix); \ } \ action_on_fail; \ } \ *val_ptr = __le32_to_cpu(*val_ptr); \ } while (0) #define WRITE4_PCI(mf, val, pci_offs, err_prefix, action_on_fail) \ do \ { \ int rc; \ int lock_rc; \ u_int32_t val_le; \ ul_ctx_t* pci_ctx = mf->ul_ctx; \ val_le = __cpu_to_le32(val); \ lock_rc = _flock_int(pci_ctx->fdlock, LOCK_EX); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ rc = pwrite(mf->fd, &val_le, 4, pci_offs); \ lock_rc = _flock_int(pci_ctx->fdlock, LOCK_UN); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ if (rc != 4) \ { \ if (rc < 0) \ { \ perror(err_prefix); \ } \ action_on_fail; \ } \ } while (0) #define WO_REG_ADDR_DATA 0xbadacce5 #define DEVID_OFFSET 0xf0014 #define PCICONF_ADDR_OFF 0x58 #define PCICONF_DATA_OFF 0x5c int mtcr_driver_mread4(mfile* mf, unsigned int offset, u_int32_t* value) { int rc = 4; struct mst_read4_st r4; memset(&r4, 0, sizeof(struct mst_read4_st)); r4.address_space = (unsigned int)mf->address_space; r4.offset = offset; if ((ioctl(mf->fd, PCICONF_READ4, &r4)) < 0) { rc = -1; } else { *value = r4.data; } return rc; } int mtcr_driver_mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { int rc = 4; struct mst_write4_st r4; memset(&r4, 0, sizeof(struct mst_write4_st)); r4.offset = offset; r4.data = value; r4.address_space = (unsigned int)mf->address_space; if (ioctl(mf->fd, PCICONF_WRITE4, &r4) < 0) { rc = -1; } else { rc = 4; } return rc; } static int mst_driver_connectx_flush(mfile* mf) { mtcr_driver_mwrite4(mf, mf->connectx_wa_slot, 0); u_int32_t value = 0x1; do{ mtcr_driver_mread4(mf, mf->connectx_wa_slot, &value); } while (value); return 0; } int mtcr_mlx5ctl_driver_mread4(mfile* mf, unsigned int offset, u_int32_t* value) { int rc = -1; if (offset == HW_ID_ADDR) { *value = mf->device_hw_id; rc = 4; } else { MLX5CTL_DEBUG_PRINT(mf, "mlx5 control driver doesn't support VSEC access.\n") } return rc; } int mtcr_mlx5ctl_driver_mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { (void)mf; (void)offset; (void)value; MLX5CTL_DEBUG_PRINT(mf, "mlx5 control driver doesn't support VSEC access.\n") return -1; } static int mlx5ctl_driver_mread4_block(mfile* mf, unsigned int offset, u_int32_t* data, int length) { (void)mf; (void)offset; (void)data; (void)length; MLX5CTL_DEBUG_PRINT(mf, "mlx5 control driver doesn't support VSEC access.\n") return -1; } static int mlx5ctl_driver_mwrite4_block(mfile* mf, unsigned int offset, u_int32_t* data, int length) { (void)mf; (void)offset; (void)data; (void)length; MLX5CTL_DEBUG_PRINT(mf, "mlx5 control driver doesn't support VSEC access.\n") return -1; } int mtcr_driver_cr_mread4(mfile* mf, unsigned int offset, u_int32_t* value) { ul_ctx_t* ctx = mf->ul_ctx; if (ctx->need_flush) { if (mst_driver_connectx_flush(mf)) { return 0; } ctx->need_flush = 0; } return mtcr_driver_mread4(mf, offset, value); } int mtcr_driver_cr_mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { ul_ctx_t* ctx = mf->ul_ctx; if (mtcr_driver_mwrite4(mf, offset, value) != 4) { return 0; } ctx->need_flush = ctx->connectx_flush; return 4; } static int driver_mread_chunk_as_multi_mread4(mfile* mf, unsigned int offset, u_int32_t* data, int length) { int i; for (i = 0; i < length; i += 4) { u_int32_t value = 0x0; if (mread4(mf, offset + i, &value) != 4) { return -1; } memcpy(data + i / 4, &value, 4); } return length; } static int driver_mwrite_chunk_as_multi_mwrite4(mfile* mf, unsigned int offset, u_int32_t* data, int length) { int i; if (length % 4) { return EINVAL; } for (i = 0; i < length; i += 4) { u_int32_t value; memcpy(&value, data + i / 4, 4); if (mwrite4(mf, offset + i, value) != 4) { return -1; } } return length; } static int driver_mwrite4_block(mfile* mf, unsigned int offset, u_int32_t* data, int length) { if ((mf->tp == MST_PCICONF) && mf->vsec_supp) { int left_size = 0; u_int32_t* dest_ptr = data; for (left_size = length; left_size > 0; left_size -= PCICONF_MAX_BUFFER_SIZE) { int towrite; towrite = (left_size >= PCICONF_MAX_BUFFER_SIZE) ? PCICONF_MAX_BUFFER_SIZE : left_size; struct mst_write4_buffer_st write4_buf; memset(&write4_buf, 0, sizeof(write4_buf)); write4_buf.address_space = (unsigned int)mf->address_space; write4_buf.offset = offset; write4_buf.size = towrite; memcpy(write4_buf.data, dest_ptr, towrite); int ret = ioctl(mf->fd, PCICONF_WRITE4_BUFFER, &write4_buf); if (ret < 0) { return -1; } offset += towrite; dest_ptr += towrite / sizeof(u_int32_t); } return length; } else { return driver_mwrite_chunk_as_multi_mwrite4(mf, offset, data, length); } } static int driver_mread4_block(mfile* mf, unsigned int offset, u_int32_t* data, int length) { if ((mf->tp == MST_PCICONF) && mf->vsec_supp) { int left_size = 0; u_int32_t* dest_ptr = data; for (left_size = length; left_size > 0; left_size -= PCICONF_MAX_BUFFER_SIZE) { int toread = (left_size >= PCICONF_MAX_BUFFER_SIZE) ? PCICONF_MAX_BUFFER_SIZE : left_size; struct mst_read4_buffer_st read4_buf; memset(&read4_buf, 0, sizeof(read4_buf)); read4_buf.address_space = (unsigned int)mf->address_space; read4_buf.offset = offset; read4_buf.size = toread; /* We support backward compatibility. */ /* There is a known bug with PCICONF_READ4_BUFFER ioctl and data may be corrupted. */ int ret; if ((ret = ioctl(mf->fd, PCICONF_READ4_BUFFER_EX, &read4_buf)) < 0) { if ((ret = ioctl(mf->fd, PCICONF_READ4_BUFFER, &read4_buf)) < 0) { if ((ret = ioctl(mf->fd, PCICONF_READ4_BUFFER_BC, &read4_buf)) < 0) { return -1; } } } memcpy(dest_ptr, read4_buf.data, toread); offset += toread; dest_ptr += toread / sizeof(u_int32_t); } return length; } else { return driver_mread_chunk_as_multi_mread4(mf, offset, data, length); } } static int mtcr_driver_mclose(mfile* mf) { if (mf) { if (mf->bar_virtual_addr) { munmap(mf->bar_virtual_addr, MTCR_MAP_SIZE); } if (mf->fd > 0) { close(mf->fd); } if (mf->res_fd > 0) { close(mf->res_fd); } } return 0; } static int mlx5ctl_driver_open(mfile * mf, unsigned domain_p, unsigned bus_p, unsigned dev_p, unsigned func_p, const char* name) { char full_path_name[60]; sprintf(full_path_name, "/dev/%s", name); ul_ctx_t* ctx = mf->ul_ctx; ctx->connectx_flush = 0; ctx->need_flush = 0; ctx->via_driver = 1; mf->fd = open(full_path_name, O_RDWR | O_SYNC); if (mf->fd < 0) { return mf->fd; } mf->tp = MST_MLX5_CONTROL_DRIVER; ctx->mread4 = mtcr_mlx5ctl_driver_mread4; ctx->mwrite4 = mtcr_mlx5ctl_driver_mwrite4; ctx->mread4_block = mlx5ctl_driver_mread4_block; ctx->mwrite4_block = mlx5ctl_driver_mwrite4_block; ctx->mclose = mtcr_driver_mclose; mf->bar_virtual_addr = NULL; init_dev_info_ul(mf, name, domain_p, bus_p, dev_p, func_p); mlx5ctl_set_device_id(mf); mf->mlx5ctl_env_var_debug = getenv(MLX5CTL_ENV_VAR_DEBUG); DBG_PRINTF("mlx5ctl: device id is %d:\n", mf->device_hw_id); return 0; } static int mtcr_driver_open(mfile * mf, MType dev_type, unsigned domain_p, unsigned bus_p, unsigned dev_p, unsigned func_p) { int rc = 0; ul_ctx_t* ctx = mf->ul_ctx; char driver_cr_name[40]; char driver_conf_name[40]; sprintf(driver_cr_name, DRIVER_CR_NAME, domain_p, bus_p, dev_p, func_p); sprintf(driver_conf_name, DRIVER_CONF_NAME, domain_p, bus_p, dev_p, func_p); int cr_valid = 0; ctx->connectx_flush = 0; ctx->need_flush = 0; ctx->via_driver = 1; if (dev_type == MST_DRIVER_CR) { mf->fd = open(driver_cr_name, O_RDWR | O_SYNC); /* Failed to open cr, go to conf */ if (mf->fd < 0) { goto end; } mf->tp = MST_PCI; ctx->mread4 = mtcr_driver_cr_mread4; ctx->mwrite4 = mtcr_driver_cr_mwrite4; ctx->mread4_block = driver_mread4_block; ctx->mwrite4_block = driver_mwrite4_block; ctx->mclose = mtcr_driver_mclose; mf->bar_virtual_addr = NULL; unsigned int slot_num; rc = ioctl(mf->fd, PCI_CONNECTX_WA, &slot_num); if (rc < 0) { goto end; } mf->connectx_wa_slot = CONNECTX_WA_BASE + 4 * slot_num; cr_valid = 1; rc = mtcr_check_signature(mf); init_dev_info_ul(mf, driver_cr_name, domain_p, bus_p, dev_p, func_p); } end: if (rc) { mtcr_driver_mclose(mf); } else if (cr_valid) { mf->res_fd = open(driver_conf_name, O_RDWR | O_SYNC); if (mf->res_fd < 0) { return -1; } mf->res_tp = MST_PCICONF; ctx->res_mread4 = mtcr_driver_mread4; ctx->res_mwrite4 = mtcr_driver_mwrite4; ctx->res_mread4_block = driver_mread_chunk_as_multi_mread4; ctx->res_mwrite4_block = driver_mwrite_chunk_as_multi_mwrite4; } if (!cr_valid) { rc = 0; mf->fd = open(driver_conf_name, O_RDWR | O_SYNC); if (mf->fd < 0) { return -1; } struct mst_params dev_params; memset(&dev_params, 0, sizeof(dev_params)); if (ioctl(mf->fd, MST_PARAMS, &dev_params) < 0) { fprintf(stderr, "-E- Failed to get Device PARAMS!\n"); return -1; } mf->vsec_supp = (int)dev_params.vendor_specific_cap; if (dev_params.vendor_specific_cap) { mf->address_space = CR_SPACE_DOMAIN; mf->vsec_cap_mask |= ((1 << VCC_INITIALIZED) | (1 << VCC_SEMAPHORE_SPACE_SUPPORTED) | (1 << VCC_CRSPACE_SPACE_SUPPORTED) | (1 << VCC_ICMD_SPACE_SUPPORTED) | (1 << VCC_ICMD_EXT_SPACE_SUPPORTED)); } mf->tp = MST_PCICONF; ctx->mread4 = mtcr_driver_mread4; ctx->mwrite4 = mtcr_driver_mwrite4; ctx->mread4_block = driver_mread4_block; ctx->mwrite4_block = driver_mwrite4_block; ctx->mclose = mtcr_driver_mclose; init_dev_info_ul(mf, driver_conf_name, domain_p, bus_p, dev_p, func_p); } return rc; } static int is_wo_pciconf_gw(mfile* mf) { unsigned offset = DEVID_OFFSET; u_int32_t data = 0; int rc = pwrite(mf->fd, &offset, 4, PCICONF_ADDR_OFF); if (rc < 0) { return 0; } rc = pread(mf->fd, &data, 4, PCICONF_ADDR_OFF); if (rc < 0) { return 0; } if (data == WO_REG_ADDR_DATA) { return 1; } return 0; } int pci_find_capability(mfile* mf, int cap_id) { unsigned offset; unsigned char visited[256] = {}; /* Prevent infinite loops */ unsigned char data[2]; int ret; int lock_ret; ul_ctx_t * pci_ctx = mf->ul_ctx; /* protect against parallel access */ lock_ret = _flock_int(pci_ctx->fdlock, LOCK_EX); if (lock_ret) { return 0; } ret = pread(mf->fd, data, 1, PCI_CAP_PTR); lock_ret = _flock_int(pci_ctx->fdlock, LOCK_UN); if (lock_ret) { return 0; } if (ret != 1) { return 0; } offset = data[0]; while (1) { if ((offset < PCI_HDR_SIZE) || (offset > PCI_EXT_SPACE_ADDR)) { return 0; } lock_ret = _flock_int(pci_ctx->fdlock, LOCK_EX); if (lock_ret) { return 0; } ret = pread(mf->fd, data, sizeof data, offset); lock_ret = _flock_int(pci_ctx->fdlock, LOCK_UN); if (lock_ret) { return 0; } if (ret != sizeof data) { return 0; } visited[offset] = 1; if (data[0] == cap_id) { return offset; } offset = data[1]; if (offset > PCI_EXT_SPACE_ADDR) { return 0; } if (visited[offset]) { return 0; } } return 0; } int mtcr_pciconf_cap9_sem(mfile* mf, int state) { u_int32_t lock_val; u_int32_t counter = 0; int retries = 0; if (!state) { /* unlock */ WRITE4_PCI(mf, 0, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "unlock semaphore", return ME_PCI_WRITE_ERROR); } else { /* lock */ do{ if (retries > IFC_MAX_RETRIES) { return ME_SEM_LOCKED; } /* read semaphore untill 0x0 */ READ4_PCI(mf, &lock_val, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "read counter", return ME_PCI_READ_ERROR); if (lock_val) { /* semaphore is taken */ retries++; msleep(1); /* wait for current op to end */ continue; } /* read ticket */ READ4_PCI(mf, &counter, mf->vsec_addr + PCI_COUNTER_OFFSET, "read counter", return ME_PCI_READ_ERROR); /* write ticket to semaphore dword */ WRITE4_PCI(mf, counter, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "write counter to semaphore", return ME_PCI_WRITE_ERROR); /* read back semaphore make sure ticket == semaphore else repeat */ READ4_PCI(mf, &lock_val, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "read counter", return ME_PCI_READ_ERROR); retries++; } while (counter != lock_val); } return ME_OK; } int mtcr_pciconf_wait_on_flag(mfile* mf, u_int8_t expected_val) { int retries = 0; u_int32_t flag; do{ if (retries > IFC_MAX_RETRIES) { return ME_PCI_IFC_TOUT; } READ4_PCI(mf, &flag, mf->vsec_addr + PCI_ADDR_OFFSET, "read flag", return ME_PCI_READ_ERROR); flag = EXTRACT(flag, PCI_FLAG_BIT_OFFS, 1); retries++; if ((retries & 0xf) == 0) { /* dont sleep always */ msleep(1); } } while (flag != expected_val); return ME_OK; } int mtcr_pciconf_set_addr_space(mfile* mf, u_int16_t space) { /* read modify write */ u_int32_t val; READ4_PCI(mf, &val, mf->vsec_addr + PCI_CTRL_OFFSET, "read domain", return ME_PCI_READ_ERROR); val = MERGE(val, space, PCI_SPACE_BIT_OFFS, PCI_SPACE_BIT_LEN); WRITE4_PCI(mf, val, mf->vsec_addr + PCI_CTRL_OFFSET, "write domain", return ME_PCI_WRITE_ERROR); /* read status and make sure space is supported */ READ4_PCI(mf, &val, mf->vsec_addr + PCI_CTRL_OFFSET, "read status", return ME_PCI_READ_ERROR); if (EXTRACT(val, PCI_STATUS_BIT_OFFS, PCI_STATUS_BIT_LEN) == 0) { return ME_PCI_SPACE_NOT_SUPPORTED; } return ME_OK; } int mtcr_pciconf_rw(mfile* mf, unsigned int offset, u_int32_t* data, int rw) { int rc = ME_OK; u_int32_t address = offset; /* last 2 bits must be zero as we only allow 30 bits addresses */ if (EXTRACT(address, 30, 2)) { if (errno == EEXIST) { errno = EINVAL; } return ME_BAD_PARAMS; } address = MERGE(address, (rw ? 1 : 0), PCI_FLAG_BIT_OFFS, 1); if (rw == WRITE_OP) { /* write data */ WRITE4_PCI(mf, *data, mf->vsec_addr + PCI_DATA_OFFSET, "write value", return ME_PCI_WRITE_ERROR); /* write address */ WRITE4_PCI(mf, address, mf->vsec_addr + PCI_ADDR_OFFSET, "write offset", return ME_PCI_WRITE_ERROR); /* wait on flag */ rc = mtcr_pciconf_wait_on_flag(mf, 0); } else { /* write address */ WRITE4_PCI(mf, address, mf->vsec_addr + PCI_ADDR_OFFSET, "write offset", return ME_PCI_WRITE_ERROR); /* wait on flag */ rc = mtcr_pciconf_wait_on_flag(mf, 1); /* read data */ READ4_PCI(mf, data, mf->vsec_addr + PCI_DATA_OFFSET, "read value", return ME_PCI_READ_ERROR); } return rc; } int mtcr_pciconf_send_pci_cmd_int(mfile* mf, int space, unsigned int offset, u_int32_t* data, int rw) { int rc = ME_OK; /* take semaphore */ rc = mtcr_pciconf_cap9_sem(mf, 1); if (rc) { return rc; } /* set address space */ rc = mtcr_pciconf_set_addr_space(mf, space); if (rc) { goto cleanup; } /* read/write the data */ rc = mtcr_pciconf_rw(mf, offset, data, rw); cleanup: /* clear semaphore */ mtcr_pciconf_cap9_sem(mf, 0); return rc; } /* adrianc: no need to lock the file semaphore if we access cr-space through mellanox vendor specific cap */ int mtcr_pciconf_mread4(mfile* mf, unsigned int offset, u_int32_t* value) { int rc; rc = mtcr_pciconf_send_pci_cmd_int(mf, mf->address_space, offset, value, READ_OP); if (rc) { return -1; } return 4; } int mtcr_pciconf_mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { int rc; rc = mtcr_pciconf_send_pci_cmd_int(mf, mf->address_space, offset, &value, WRITE_OP); if (rc) { return -1; } return 4; } static int block_op_pciconf(mfile* mf, unsigned int offset, u_int32_t* data, int length, int rw) { int i; int rc = ME_OK; int wrote_or_read = length; if (length % 4) { return -1; } /* lock semaphore and set address space */ rc = mtcr_pciconf_cap9_sem(mf, 1); if (rc) { return -1; } /* set address space */ rc = mtcr_pciconf_set_addr_space(mf, mf->address_space); if (rc) { wrote_or_read = -1; goto cleanup; } for (i = 0; i < length; i += 4) { if (mtcr_pciconf_rw(mf, offset + i, &(data[(i >> 2)]), rw)) { wrote_or_read = i; goto cleanup; } } cleanup: mtcr_pciconf_cap9_sem(mf, 0); return wrote_or_read; } static int mread4_block_pciconf(mfile* mf, unsigned int offset, u_int32_t* data, int length) { return block_op_pciconf(mf, offset, data, length, READ_OP); } static int mwrite4_block_pciconf(mfile* mf, unsigned int offset, u_int32_t* data, int length) { return block_op_pciconf(mf, offset, data, length, WRITE_OP); } int mtcr_pciconf_mread4_old(mfile* mf, unsigned int offset, u_int32_t* value) { ul_ctx_t * ctx = mf->ul_ctx; unsigned int new_offset = offset; int rc; if (ctx->wo_addr) { new_offset |= 0x1; } /* adrianc: PCI registers always in le32 */ offset = __cpu_to_le32(new_offset); rc = _flock_int(ctx->fdlock, LOCK_EX); if (rc) { goto pciconf_read_cleanup; } rc = pwrite(mf->fd, &offset, 4, PCICONF_ADDR_OFF); if (rc < 0) { perror("write offset"); goto pciconf_read_cleanup; } if (rc != 4) { rc = 0; goto pciconf_read_cleanup; } rc = pread(mf->fd, value, 4, PCICONF_DATA_OFF); if (rc < 0) { perror("read value"); goto pciconf_read_cleanup; } *value = __le32_to_cpu(*value); ; pciconf_read_cleanup: if (_flock_int(ctx->fdlock, LOCK_UN)) { return rc; } return rc; } int mtcr_pciconf_mwrite4_old(mfile* mf, unsigned int offset, u_int32_t value) { ul_ctx_t* ctx = mf->ul_ctx; int rc; value = __cpu_to_le32(value); offset = __cpu_to_le32(offset); rc = _flock_int(ctx->fdlock, LOCK_EX); if (rc) { goto pciconf_write_cleanup; } if (ctx->wo_addr) { rc = pwrite(mf->fd, &value, 4, PCICONF_DATA_OFF); if (rc < 0) { perror("write value"); goto pciconf_write_cleanup; } if (rc != 4) { rc = 0; goto pciconf_write_cleanup; } rc = pwrite(mf->fd, &offset, 4, PCICONF_ADDR_OFF); if (rc < 0) { perror("write offset"); goto pciconf_write_cleanup; } } else { rc = pwrite(mf->fd, &offset, 4, PCICONF_ADDR_OFF); if (rc < 0) { perror("write offset"); goto pciconf_write_cleanup; } if (rc != 4) { rc = 0; goto pciconf_write_cleanup; } rc = pwrite(mf->fd, &value, 4, PCICONF_DATA_OFF); if (rc < 0) { perror("write value"); goto pciconf_write_cleanup; } } pciconf_write_cleanup: if (_flock_int(ctx->fdlock, LOCK_UN)) { return rc; } return rc; } static int mtcr_pciconf_mclose(mfile* mf) { unsigned int word; if (mf) { /* Adrianc: set address in PCI configuration space to be non-semaphore. */ int rc = mread4_ul(mf, 0xf0014, &word); if (mf->fd > 0) { close(mf->fd); } if (rc != 4) { return 1; } } return 0; } int space_to_cap_offset(int space) { switch (space) { case AS_ICMD_EXT: return VCC_ICMD_EXT_SPACE_SUPPORTED; case AS_CR_SPACE: return VCC_CRSPACE_SPACE_SUPPORTED; case AS_ICMD: return VCC_ICMD_SPACE_SUPPORTED; case AS_NODNIC_INIT_SEG: return VCC_NODNIC_INIT_SEG_SPACE_SUPPORTED; case AS_EXPANSION_ROM: return VCC_EXPANSION_ROM_SPACE_SUPPORTED; case AS_ND_CRSPACE: return VCC_ND_CRSPACE_SPACE_SUPPORTED; case AS_SCAN_CRSPACE: return VCC_SCAN_CRSPACE_SPACE_SUPPORTED; case AS_SEMAPHORE: return VCC_SEMAPHORE_SPACE_SUPPORTED; case AS_MAC: return VCC_MAC_SPACE_SUPPORTED; default: return 0; } } /* Turning on the space capability bit in vsec_cap_mask iff */ /* space capability supported */ static int get_space_support_status(mfile* mf, u_int16_t space) { int status = mtcr_pciconf_set_addr_space(mf, space) == ME_OK ? 1 : 0; mf->vsec_cap_mask |= (status << space_to_cap_offset(space)); return status; } static int mtcr_pciconf_open(mfile* mf, const char* name, u_int32_t adv_opt) { ul_ctx_t* ctx = mf->ul_ctx; mf->fd = -1; mf->fd = open(name, O_RDWR | O_SYNC); if (mf->fd < 0) { return -1; } mf->tp = MST_PCICONF; if ((mf->vsec_addr = pci_find_capability(mf, CAP_ID))) { mf->vsec_supp = 1; /* check if the needed spaces are supported */ if (adv_opt & Clear_Vsec_Semaphore) { mtcr_pciconf_cap9_sem(mf, 0); } if (mtcr_pciconf_cap9_sem(mf, 1)) { close(mf->fd); errno = EBUSY; return -1; } get_space_support_status(mf, AS_ICMD); get_space_support_status(mf, AS_NODNIC_INIT_SEG); get_space_support_status(mf, AS_EXPANSION_ROM); get_space_support_status(mf, AS_ND_CRSPACE); get_space_support_status(mf, AS_SCAN_CRSPACE); get_space_support_status(mf, AS_MAC); get_space_support_status(mf, AS_ICMD_EXT); get_space_support_status(mf, AS_SEMAPHORE); get_space_support_status(mf, AS_CR_SPACE); mf->vsec_cap_mask |= (1 << VCC_INITIALIZED); mtcr_pciconf_cap9_sem(mf, 0); } if (VSEC_SUPPORTED_UL(mf)) { mf->address_space = AS_CR_SPACE; ctx->mread4 = mtcr_pciconf_mread4; ctx->mwrite4 = mtcr_pciconf_mwrite4; ctx->mread4_block = mread4_block_pciconf; ctx->mwrite4_block = mwrite4_block_pciconf; } else { ctx->wo_addr = is_wo_pciconf_gw(mf); /* printf("Write Only Address: %#x\n", ctx->wo_addr); */ ctx->mread4 = mtcr_pciconf_mread4_old; ctx->mwrite4 = mtcr_pciconf_mwrite4_old; ctx->mread4_block = mread_chunk_as_multi_mread4; ctx->mwrite4_block = mwrite_chunk_as_multi_mwrite4; } ctx->mclose = mtcr_pciconf_mclose; return 0; } #else /* if CONFIG_ENABLE_PCICONF */ static int mtcr_pciconf_open(mfile* mf, const char* name, u_int32_t adv_opt) { return -1; } #endif /* if CONFIG_ENABLE_PCICONF */ /* */ /* IN-BAND ACCESS FUNCTIONS */ /* */ static int mtcr_inband_open(mfile* mf, const char* name) { #ifndef NO_INBAND ul_ctx_t* ctx = mf->ul_ctx; mf->tp = MST_IB; mf->flags |= MDEVS_IB; ctx->mread4 = mib_read4; ctx->mwrite4 = mib_write4; ctx->mread4_block = mib_readblock; ctx->mwrite4_block = mib_writeblock; ctx->maccess_reg = mib_acces_reg_mad; ctx->mclose = mib_close; char* p; if (((p = strstr(name, "ibdr-")) != 0) || ((p = strstr(name, "iblid-")) != 0) || ((p = strstr(name, "lid-")) != 0)) { return mib_open(p, mf, 0); } else { return -1; } #else (void)name; (void)mf; errno = ENOSYS; return -1; #endif } static MType mtcr_parse_name(const char* name, int * force, unsigned * domain_p, unsigned * bus_p, unsigned * dev_p, unsigned * func_p) { unsigned my_domain = 0; unsigned my_bus; unsigned my_dev; unsigned my_func; int scnt, r; int force_config = 0; char config[] = "/config"; char resource0[] = "/resource0"; char procbuspci[] = "/proc/bus/pci/"; char driver_cr_name[40]; char driver_conf_name[40]; unsigned len = strlen(name); unsigned tmp; if ((len >= sizeof config) && !strcmp(config, name + len + 1 - sizeof config)) { *force = 1; return MST_PCICONF; } if ((len >= sizeof resource0) && !strcmp(resource0, name + len + 1 - sizeof resource0)) { *force = 1; return MST_PCI; } if (!strncmp(name, "/proc/bus/pci/", sizeof procbuspci - 1)) { *force = 1; return MST_PCICONF; } if ((sscanf(name, "lid-%x", &tmp) == 1) || (sscanf(name, "ibdr-%x", &tmp) == 1) || (strstr(name, "lid-") != 0) || (strstr(name, "ibdr-") != 0)) { *force = 1; return MST_IB; } if ((sscanf(name, "mthca%x", &tmp) == 1) || (sscanf(name, "mlx4_%x", &tmp) == 1) || (sscanf(name, "mlx5_%x", &tmp) == 1)) { char mbuf[4048] = {0}; char pbuf[4048] = {0}; char* base; r = snprintf(mbuf, sizeof(mbuf) - 1, "/sys/class/infiniband/%s/device", name); if ((r <= 0) || (r >= (int)sizeof mbuf)) { fprintf(stderr, "Unable to print device name %s\n", name); goto parse_error; } r = readlink(mbuf, pbuf, sizeof(pbuf) - 1); if (r < 0) { perror("read link"); fprintf(stderr, "Unable to read link %s\n", mbuf); return MST_ERROR; } pbuf[r] = '\0'; base = basename(pbuf); if (!base) { goto parse_error; } scnt = sscanf(base, "%x:%x:%x.%x", &my_domain, &my_bus, &my_dev, &my_func); if (scnt != 4) { goto parse_error; } if (sscanf(name, "mlx5_%x", &tmp) == 1) { force_config = 1; } goto name_parsed; } scnt = sscanf(name, "%x:%x.%x", &my_bus, &my_dev, &my_func); if (scnt == 3) { force_config = check_force_config(my_domain, my_bus, my_dev, my_func); goto name_parsed; } scnt = sscanf(name, "%x:%x:%x.%x", &my_domain, &my_bus, &my_dev, &my_func); if (scnt == 4) { force_config = check_force_config(my_domain, my_bus, my_dev, my_func); goto name_parsed; } scnt = sscanf(name, "pciconf-%x:%x.%x", &my_bus, &my_dev, &my_func); if (scnt == 3) { force_config = 1; goto name_parsed; } scnt = sscanf(name, "pciconf-%x:%x:%x.%x", &my_domain, &my_bus, &my_dev, &my_func); if (scnt == 4) { force_config = 1; goto name_parsed; } scnt = sscanf(name, "mlx5ctl-%x:%x:%x.%x", &my_domain, &my_bus, &my_dev, &my_func); if (scnt == 4) { force_config = 1; *domain_p = my_domain; *bus_p = my_bus; *dev_p = my_dev; *func_p = my_func; *force = 0; return MST_MLX5_CONTROL_DRIVER; } parse_error: fprintf(stderr, "Unable to parse device name %s\n", name); errno = EINVAL; return MST_ERROR; name_parsed: *domain_p = my_domain; *bus_p = my_bus; *dev_p = my_dev; *func_p = my_func; *force = 0; sprintf(driver_conf_name, DRIVER_CONF_NAME, my_domain, my_bus, my_dev, my_func); sprintf(driver_cr_name, DRIVER_CR_NAME, my_domain, my_bus, my_dev, my_func); if (access(driver_cr_name, F_OK) != -1) { return MST_DRIVER_CR; } if (access(driver_conf_name, F_OK) != -1) { return MST_DRIVER_CONF; } #ifdef __aarch64__ /* on ARM processors MMAP not supported */ (void)force_config; return MST_PCICONF; #else if (force_config) { return MST_PCICONF; } return MST_PCI; #endif } #endif /* if CONFIG_ENABLE_MMAP */ int mread4_block_ul(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { ul_ctx_t* ctx = mf->ul_ctx; return ctx->mread4_block(mf, offset, data, byte_len); } int mwrite4_block_ul(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { ul_ctx_t* ctx = mf->ul_ctx; return ctx->mwrite4_block(mf, offset, data, byte_len); } int msw_reset_ul(mfile* mf) { #ifndef NO_INBAND switch (mf->tp) { case MST_IB: return mib_swreset(mf); default: errno = EPERM; return -1; } #else (void)mf; return -1; #endif } int mhca_reset_ul(mfile* mf) { (void)mf; errno = ENOTSUP; return -1; } static long supported_dev_ids[] = {0x1003, /* Connect-X3 */ 0x1007, /* Connect-X3Pro */ 0x1011, /* Connect-IB */ 0x1013, /* Connect-X4 */ 0x1015, /* Connect-X4Lx */ 0x1017, /* Connect-X5 */ 0x1019, /* Connect-X5Ex */ 0x101b, /* Connect-X6 */ 0x101d, /* Connect-X6DX */ 0x101f, /* Connect-X6LX */ 0x1021, /* Connect-X7 */ 0x1023, /* Connect-X8 */ 0xcb20, /* Switch-IB */ 0xcb84, /* Spectrum */ 0xcf08, /* Switch-IB2 */ 0xd2f0, /* Quantum */ 0xd2f2, /* Quantum2 */ 0xcf6c, /* Spectrum2 */ 0xa2d2, /* MT416842 Family BlueField integrated ConnectX-5 network controller */ 0xa2d6, /* MT42822 Family BlueField2 integrated ConnectX-6DX network controller */ 0xa2dc, /* MT43244 Family BlueField3 integrated ConnectX-7 network controller */ 0xa2de, /* BF4 Family BlueField4 integrated ConnectX-8 network controller */ 0xcf70, /* Spectrum3 */ 0xcf80, /* Spectrum4 */ 0x1976, /* Schrodinger */ 0x1979, /* Freysa */ 0x2900, /* BW-00 */ 0xd2f4, /* Sunbird */ -1}; static long live_fish_id_database[] = {0x191, 0x246, 0x249, 0x24b, 0x24d, 0x24e, 0x1F6, 0x1F8, 0x1FF, 0x247, 0x209, 0x20b, 0x20d, 0x20f, 0x211, 0x214, /* BlueField2 */ 0x212, /* Connect-X6DX */ 0x216, /* Connect-X6LX */ 0x218, /* Connect-X7 */ 0x21e, /* Connect-X8 */ 0x21C, /* BlueField3 */ 0x220, /* BlueField4 */ 0x250, /* Spectrum3 */ 0x254, /* Spectrum4 */ 0x257, /* Quantum2 */ 0x25b, /* Quantum3 */ -1}; int is_supported_devid(long devid) { int i = 0; while (supported_dev_ids[i] != -1) { if (devid == supported_dev_ids[i]) { return 1; } i++; } i = 0; while (live_fish_id_database[i] != -1) { if (devid == live_fish_id_database[i]) { return 1; } i++; } return 0; } int is_supported_device(char* devname) { char fname[64] = {0}; char inbuf[64] = {0}; FILE* f; int ret_val = 0; snprintf(fname, sizeof(fname) - 1, "/sys/bus/pci/devices/%s/device", devname); f = fopen(fname, "r"); if (f == NULL) { /* printf("-D- Could not open file: %s\n", fname); */ return 1; } if (fgets(inbuf, sizeof(inbuf), f)) { long devid = strtol(inbuf, NULL, 0); ret_val = is_supported_devid(devid); } fclose(f); return ret_val; } int mdevices_ul(char* buf, int len, int mask) { return mdevices_v_ul(buf, len, mask, 0); } int mdevices_v_ul(char* buf, int len, int mask, int verbosity) { #define MDEVS_TAVOR_CR 0x20 #define MLNX_PCI_VENDOR_ID 0x15b3 FILE * f; DIR * d; struct dirent* dir; int pos = 0; int sz; int rsz; int ndevs = 0; if (!(mask & MDEVS_TAVOR_CR)) { return 0; } char inbuf[64] = {0}; char fname[64] = {0}; d = opendir("/sys/bus/pci/devices"); if (d == NULL) { return -2; } while ((dir = readdir(d)) != NULL) { if (dir->d_name[0] == '.') { continue; } sz = strlen(dir->d_name); if ((sz > 2) && strcmp(dir->d_name + sz - 2, ".0") && !verbosity) { continue; } else if ((sz > 4) && strcmp(dir->d_name + sz - 4, "00.0") && !verbosity) { /* Skip virtual functions */ char physfn[64] = {0}; DIR* physfndir; snprintf(physfn, sizeof(physfn) - 1, "/sys/bus/pci/devices/%.34s/physfn", dir->d_name); if ((physfndir = opendir(physfn)) != NULL) { closedir(physfndir); continue; } } snprintf(fname, sizeof(fname) - 1, "/sys/bus/pci/devices/%.34s/vendor", dir->d_name); f = fopen(fname, "r"); if (f == NULL) { ndevs = -2; goto cleanup_dir_opened; } if (fgets(inbuf, sizeof(inbuf), f)) { long venid = strtoul(inbuf, NULL, 0); if ((venid == MLNX_PCI_VENDOR_ID) && is_supported_device(dir->d_name)) { rsz = sz + 1; /* dev name size + place for Null char */ if ((pos + rsz) > len) { ndevs = -1; goto cleanup_file_opened; } memcpy(&buf[pos], dir->d_name, rsz); pos += rsz; ndevs++; } } fclose(f); } closedir(d); return ndevs; cleanup_file_opened: fclose(f); cleanup_dir_opened: closedir(d); return ndevs; } static int read_pci_config_header(u_int16_t domain, u_int8_t bus, u_int8_t dev, u_int8_t func, u_int8_t data[0x40]) { char proc_dev[64]; sprintf(proc_dev, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/config", domain, bus, dev, func); FILE* f = fopen(proc_dev, "r"); if (!f) { /* fprintf(stderr, "Failed to open (%s) for reading: %s\n", proc_dev, strerror(errno)); */ return 1; } setvbuf(f, NULL, _IONBF, 0); if (fread(data, 0x40, 1, f) != 1) { fprintf(stderr, "Failed to read from (%s): %s\n", proc_dev, strerror(errno)); fclose(f); return 1; } fclose(f); return 0; } int check_force_config(unsigned my_domain, unsigned my_bus, unsigned my_dev, unsigned my_func) { u_int8_t conf_header[0x40]; u_int32_t* conf_header_32p = (u_int32_t*)conf_header; if (read_pci_config_header(my_domain, my_bus, my_dev, my_func, conf_header)) { return 0; } u_int32_t devid = __le32_to_cpu(conf_header_32p[0]) >> 16; if ((devid == CX3PRO_SW_ID) || (devid == CX3_SW_ID)) { return 0; } return 1; } #define IB_INF "infiniband:" #define ETH_INF "net:" static char** get_ib_net_devs(int domain, int bus, int dev, int func, int ib_eth_) { char ** ib_net_devs = NULL; int i; int count = 0; int plan_b = 0; DIR * dir; struct dirent* dirent; char ** ib_net_devs_r; char sysfs_path[256]; if (ib_eth_) { sprintf(sysfs_path, "/sys/bus/pci/devices/%04x:%02x:%02x.%x/infiniband", domain, bus, dev, func); } else { sprintf(sysfs_path, "/sys/bus/pci/devices/%04x:%02x:%02x.%x/net", domain, bus, dev, func); } if ((dir = opendir(sysfs_path)) == NULL) { sprintf(sysfs_path, "/sys/bus/pci/devices/%04x:%02x:%02x.%x", domain, bus, dev, func); if ((dir = opendir(sysfs_path)) == NULL) { return NULL; } plan_b = 1; } while ((dirent = readdir(dir)) != NULL) { char* name = dirent->d_name; if (!strcmp(name, ".") || !strcmp(name, "..")) { continue; } if (plan_b) { char* p = NULL; char* devs_inf = ib_eth_ ? IB_INF : ETH_INF; p = strstr(name, devs_inf); if (!p) { continue; } name = p + strlen(devs_inf); } count++; ib_net_devs_r = (char**)realloc(ib_net_devs, (count + 1) * sizeof(char*)); if (!ib_net_devs_r) { closedir(dir); goto mem_error; } ib_net_devs = ib_net_devs_r; ib_net_devs[count - 1] = (char*)malloc(strlen(name) + 1); if (!ib_net_devs[count - 1]) { closedir(dir); goto mem_error; } strcpy(ib_net_devs[count - 1], name); /* Set last entry to NULL */ ib_net_devs[count] = NULL; } closedir(dir); return ib_net_devs; mem_error: fprintf(stderr, "Memory allocation failure for ib/net devices\n"); if (ib_net_devs) { for (i = 0; i < count; i++) { if (ib_net_devs[i]) { free(ib_net_devs[i]); } } free(ib_net_devs); } return NULL; } static int get_vf_devs(int domain, int bus, int dev, int func, char* buf, int len) { int count = 0; DIR * physfndir; struct dirent* _dirent; char sysfs_path[256]; int pos = 0; sprintf(sysfs_path, "/sys/bus/pci/devices/%04x:%02x:%02x.%x", domain, bus, dev, func); if ((physfndir = opendir(sysfs_path)) == NULL) { return count; } while ((_dirent = readdir(physfndir)) != NULL) { char* name = _dirent->d_name; int sz = 0; if (strstr(name, "virtfn") != name) { continue; } sz = strlen(name) + 1; if ((pos + sz) > len) { count = -1; closedir(physfndir); return count; } memcpy(&buf[pos], name, sz); pos += sz; count++; } closedir(physfndir); return count; } #define VIRTFN_LINK_NAME_SIZE 128 #define VIRTFN_PATH_SIZE 128 static void read_vf_info(vf_info * virtfn_info, u_int16_t domain, u_int8_t bus, u_int8_t dev, u_int8_t func, char * virtfn) { char linkname[VIRTFN_LINK_NAME_SIZE]; char virtfn_path[VIRTFN_PATH_SIZE]; int link_size; MType dev_type; unsigned vf_domain = 0; unsigned vf_bus = 0; unsigned vf_dev = 0; unsigned vf_func = 0; int force; sprintf(virtfn_path, "/sys/bus/pci/devices/%04x:%02x:%02x.%x/%s", domain, bus, dev, func, virtfn); link_size = readlink(virtfn_path, linkname, VIRTFN_LINK_NAME_SIZE - 1); if (link_size < 0) { return; } linkname[link_size] = '\0'; strncpy(virtfn_info->dev_name, basename(linkname), sizeof(virtfn_info->dev_name) - 1); dev_type = mtcr_parse_name(virtfn_info->dev_name, &force, &vf_domain, &vf_bus, &vf_dev, &vf_func); (void)dev_type; virtfn_info->domain = vf_domain; virtfn_info->bus = vf_bus; virtfn_info->dev = vf_dev; virtfn_info->func = vf_func; virtfn_info->ib_devs = get_ib_net_devs(vf_domain, vf_bus, vf_dev, vf_func, 1); virtfn_info->net_devs = get_ib_net_devs(vf_domain, vf_bus, vf_dev, vf_func, 0); } vf_info* get_vf_info(u_int16_t domain, u_int8_t bus, u_int8_t dev, u_int8_t func, u_int16_t* len) { int vf_count = 0; char * vf_devs = NULL; vf_info* vf_arr = NULL; char * virtfn; int i; int size = 2048; /* Get list of devices */ do{ if (vf_devs) { free(vf_devs); } size *= 2; vf_devs = (char*)malloc(size); if (!vf_devs) { return NULL; } vf_count = get_vf_devs(domain, bus, dev, func, vf_devs, size); } while (vf_count == -1); if (vf_count <= 0) { *len = 0; if (vf_devs) { free(vf_devs); } return NULL; } *len = vf_count; virtfn = vf_devs; vf_arr = (vf_info*)malloc(sizeof(vf_info) * vf_count); if (!vf_arr) { if (vf_devs) { free(vf_devs); } return NULL; } memset(vf_arr, 0, sizeof(vf_info) * vf_count); for (i = 0; i < vf_count; i++) { read_vf_info(&vf_arr[i], domain, bus, dev, func, virtfn); virtfn += strlen(virtfn) + 1; } free(vf_devs); return vf_arr; } static void get_numa_node(u_int16_t domain, u_int8_t bus, u_int8_t dev, u_int8_t func, char* data) { char numa_path[64]; int c; int i = 0; sprintf(numa_path, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/numa_node", domain, bus, dev, func); FILE* f = fopen(numa_path, "rb"); if (!f) { strcpy(data, "NA"); return; } while ((c = getc(f)) != EOF && c != '\n') { data[i++] = c; } data[i] = '\0'; fclose(f); } dev_info* mdevices_info_ul(int mask, int* len) { return mdevices_info_v_ul(mask, len, 0); } dev_info* mdevices_info_v_ul(int mask, int* len, int verbosity) { char* devs = 0; char* dev_name; int size = 2048; int rc; int i; /* Get list of devices */ do{ if (devs) { free(devs); } size *= 2; devs = (char*)malloc(size); if (!devs) { return NULL; } rc = mdevices_v_ul(devs, size, mask, verbosity); } while (rc == -1); if (rc <= 0) { *len = 0; if (devs) { free(devs); } return NULL; } /* For each device read */ dev_info* dev_info_arr = (dev_info*)malloc(sizeof(dev_info) * rc); if (!dev_info_arr) { if (devs) { free(devs); } return NULL; } memset(dev_info_arr, 0, sizeof(dev_info) * rc); dev_name = devs; for (i = 0; i < rc; i++) { int domain = 0; int bus = 0; int dev = 0; int func = 0; dev_info_arr[i].ul_mode = 1; dev_info_arr[i].type = (Mdevs)MDEVS_TAVOR_CR; u_int8_t conf_header[0x40]; u_int32_t* conf_header_32p = (u_int32_t*)conf_header; /* update default device name */ strncpy(dev_info_arr[i].dev_name, dev_name, sizeof(dev_info_arr[i].dev_name) - 1); strncpy(dev_info_arr[i].pci.cr_dev, dev_name, sizeof(dev_info_arr[i].pci.cr_dev) - 1); /* update dbdf */ if (sscanf(dev_name, "%x:%x:%x.%x", &domain, &bus, &dev, &func) != 4) { rc = -1; len = 0; free(dev_info_arr); free(devs); return NULL; } dev_info_arr[i].pci.domain = domain; dev_info_arr[i].pci.bus = bus; dev_info_arr[i].pci.dev = dev; dev_info_arr[i].pci.func = func; /* set pci conf device */ snprintf(dev_info_arr[i].pci.conf_dev, sizeof(dev_info_arr[i].pci.conf_dev) - 1, "/sys/bus/pci/devices/%04x:%02x:%02x.%x/config", domain, bus, dev, func); /* Get attached infiniband devices */ dev_info_arr[i].pci.ib_devs = get_ib_net_devs(domain, bus, dev, func, 1); dev_info_arr[i].pci.net_devs = get_ib_net_devs(domain, bus, dev, func, 0); get_numa_node(domain, bus, dev, func, (char*)(dev_info_arr[i].pci.numa_node)); dev_info_arr[i].pci.virtfn_arr = get_vf_info(domain, bus, dev, func, &(dev_info_arr[i].pci.virtfn_count)); /* read configuration space header */ if (read_pci_config_header(domain, bus, dev, func, conf_header)) { goto next; } dev_info_arr[i].pci.dev_id = __le32_to_cpu(conf_header_32p[0]) >> 16; dev_info_arr[i].pci.vend_id = __le32_to_cpu(conf_header_32p[0]) & 0xffff; dev_info_arr[i].pci.class_id = __le32_to_cpu(conf_header_32p[2]) >> 8; dev_info_arr[i].pci.subsys_id = __le32_to_cpu(conf_header_32p[11]) >> 16; dev_info_arr[i].pci.subsys_vend_id = __le32_to_cpu(conf_header_32p[11]) & 0xffff; next: dev_name += strlen(dev_name) + 1; } free(devs); *len = rc; return dev_info_arr; } static void destroy_ib_net_devs(char** devs) { int j; for (j = 0; devs[j]; j++) { if (devs[j]) { free(devs[j]); } } free(devs); } static void destroy_vf_devs(vf_info* vf_info_arr, int len) { int i; if (vf_info_arr) { for (i = 0; i < len; i++) { if (vf_info_arr[i].ib_devs) { destroy_ib_net_devs(vf_info_arr[i].ib_devs); } if (vf_info_arr[i].net_devs) { destroy_ib_net_devs(vf_info_arr[i].net_devs); } } free(vf_info_arr); } } void mdevices_info_destroy_ul(dev_info* dev_info, int len) { int i; if (dev_info) { for (i = 0; i < len; i++) { if ((dev_info[i].type == MDEVS_TAVOR_CR) && dev_info[i].pci.ib_devs) { destroy_ib_net_devs(dev_info[i].pci.ib_devs); } if ((dev_info[i].type == MDEVS_TAVOR_CR) && dev_info[i].pci.net_devs) { destroy_ib_net_devs(dev_info[i].pci.net_devs); } if ((dev_info[i].type == MDEVS_TAVOR_CR) && dev_info[i].pci.virtfn_arr) { destroy_vf_devs(dev_info[i].pci.virtfn_arr, dev_info[i].pci.virtfn_count); } } free(dev_info); } } /* * This function used to change from running on CONF to CR * and vice versa */ extern void mpci_change(mfile* mf) { mf->mpci_change(mf); return; } void mpci_change_ul(mfile* mf) { if (mf->res_tp == MST_PCICONF) { mf->res_tp = MST_PCI; mf->tp = MST_PCICONF; } else if (mf->res_tp == MST_PCI) { mf->res_tp = MST_PCICONF; mf->tp = MST_PCI; } else { return; } ul_ctx_t* ctx = mf->ul_ctx; /***** Switching READ WRITE FUNCS ******/ f_mread4 tmp_mread4 = ctx->mread4; ctx->mread4 = ctx->res_mread4; ctx->res_mread4 = tmp_mread4; f_mwrite4 tmp_mwrite4 = ctx->mwrite4; ctx->mwrite4 = ctx->res_mwrite4; ctx->res_mwrite4 = tmp_mwrite4; f_mread4_block tmp_mread4_block = ctx->mread4_block; ctx->mread4_block = ctx->res_mread4_block; ctx->res_mread4_block = tmp_mread4_block; f_mwrite4_block tmp_mwrite4_block = ctx->mwrite4_block; ctx->mwrite4_block = ctx->res_mwrite4_block; ctx->res_mwrite4_block = tmp_mwrite4_block; /***** Switching FD LOCKs ******/ int tmp_lock = ctx->res_fdlock; ctx->res_fdlock = ctx->fdlock; ctx->fdlock = tmp_lock; /***** Switching FDs ******/ int fd = mf->fd; mf->fd = mf->res_fd; mf->res_fd = fd; } mfile* mopen_ul_int(const char* name, u_int32_t adv_opt) { mfile * mf; off_t offset; unsigned domain = 0, bus = 0, dev = 0, func = 0; MType dev_type; int force; char rbuf[99] = "/sys/bus/pci/devices/XXXX:XX:XX.X/resource0"; char cbuf[99] = "/sys/bus/pci/devices/XXXX:XX:XX.X/config"; char pdbuf[99] = "/proc/bus/pci/XXXX:XX/XX.X"; char pbuf[99] = "/proc/bus/pci/XX/XX.X"; char pcidev[99] = "XXXX:XX:XX.X"; int err; int rc; if (geteuid() != 0) { errno = EACCES; return NULL; } mf = (mfile*)malloc(sizeof(mfile)); if (!mf) { return NULL; } memset(mf, 0, sizeof(mfile)); mf->ul_ctx = malloc(sizeof(ul_ctx_t)); if (!(mf->ul_ctx)) { goto open_failed; } memset(mf->ul_ctx, 0, sizeof(ul_ctx_t)); /* Initialize the user page list. */ mf->user_page_list.page_list = NULL; mf->user_page_list.page_amount = 0; mf->dev_name = strdup(name); if (!mf->dev_name) { goto open_failed; } mf->sock = -1; /* we are not opening remotely */ mf->fd = -1; mf->res_fd = -1; mf->mpci_change = mpci_change_ul; dev_type = mtcr_parse_name(name, &force, &domain, &bus, &dev, &func); switch (dev_type) { case MST_DRIVER_CR: case MST_DRIVER_CONF: rc = mtcr_driver_open(mf, dev_type, domain, bus, dev, func); if (rc) { goto open_failed; } return mf; break; case MST_MLX5_CONTROL_DRIVER: rc = mlx5ctl_driver_open(mf, domain, bus, dev, func, name); if (rc) { goto open_failed; } return mf; break; default: break; } if (dev_type == MST_ERROR) { goto open_failed; } mf->tp = dev_type; mf->flags = MDEVS_TAVOR_CR; if ((dev_type == MST_PCICONF) || (dev_type == MST_PCI)) { /* allocate lock to sync between parallel cr space requests (CONF/MEMORY only) */ if (force) { /* need to extract the dbdf format from the full name */ if (_extract_dbdf_from_full_name(name, &domain, &bus, &dev, &func)) { goto open_failed; } } if (_create_lock(mf, domain, bus, dev, func)) { goto open_failed; } sprintf(pcidev, "%4.4x:%2.2x:%2.2x.%1.1x", domain, bus, dev, func); if (!is_supported_device(pcidev)) { errno = ENOTSUP; goto open_failed; } if (init_dev_info_ul(mf, name, domain, bus, dev, func)) { goto open_failed; } } sprintf(cbuf, "/sys/bus/pci/devices/%4.4x:%2.2x:%2.2x.%1.1x/config", domain, bus, dev, func); if (force) { switch (dev_type) { case MST_PCICONF: rc = mtcr_pciconf_open(mf, name, adv_opt); break; case MST_PCI: rc = mtcr_pcicr_open(mf, name, cbuf, 0, 0, adv_opt); break; case MST_IB: rc = mtcr_inband_open(mf, name); break; default: goto open_failed; } if (0 == rc) { return mf; } goto open_failed; } if (dev_type == MST_PCICONF) { goto access_config_forced; } sprintf(rbuf, "/sys/bus/pci/devices/%4.4x:%2.2x:%2.2x.%1.1x/resource0", domain, bus, dev, func); rc = mtcr_pcicr_open(mf, rbuf, cbuf, 0, 0, adv_opt); if (rc == 0) { return mf; } else if (rc == 1) { goto access_config_forced; } /* Following access methods need the resource BAR */ offset = mtcr_sysfs_get_offset(domain, bus, dev, func); if ((offset == -1) && !domain) { offset = mtcr_procfs_get_offset(bus, dev, func); } if (offset == -1) { goto access_config_forced; } sprintf(pdbuf, "/proc/bus/pci/%4.4x:%2.2x/%2.2x.%1.1x", domain, bus, dev, func); rc = mtcr_pcicr_open(mf, pdbuf, cbuf, offset, 1, adv_opt); if (rc == 0) { return mf; } else if (rc == 1) { goto access_config_forced; } if (!domain) { sprintf(pbuf, "/proc/bus/pci/%2.2x/%2.2x.%1.1x", bus, dev, func); rc = mtcr_pcicr_open(mf, pbuf, cbuf, offset, 1, adv_opt); if (rc == 0) { return mf; } else if (rc == 1) { goto access_config_forced; } } #if CONFIG_USE_DEV_MEM /* Non-portable, but helps some systems */ if (!mtcr_pcicr_open(mf, "/dev/mem", cbuf, offset, 0, adv_opt)) { return mf; } #endif access_config_forced: sprintf(cbuf, "/sys/bus/pci/devices/%4.4x:%2.2x:%2.2x.%1.1x/config", domain, bus, dev, func); if (!mtcr_pciconf_open(mf, cbuf, adv_opt)) { return mf; } sprintf(pdbuf, "/proc/bus/pci/%4.4x:%2.2x/%2.2x.%1.1x", domain, bus, dev, func); if (!mtcr_pciconf_open(mf, pdbuf, adv_opt)) { return mf; } if (!domain) { sprintf(pbuf, "/proc/bus/pci/%2.2x/%2.2x.%1.1x", bus, dev, func); if (!mtcr_pciconf_open(mf, pdbuf, adv_opt)) { return mf; } } open_failed: err = errno; mclose_ul(mf); errno = err; return NULL; } int init_dev_info_ul(mfile* mf, const char* dev_name, unsigned domain, unsigned bus, unsigned dev, unsigned func) { int i = 0; int devs_len = 0; int ret = 0; dev_info* devs = mdevices_info_v_ul(0xffffffff, &devs_len, 1); for (i = 0; i < devs_len; i++) { if ((devs[i].pci.domain == domain) && (devs[i].pci.bus == bus) && (devs[i].pci.dev == dev) && (devs[i].pci.func == func)) { break; } } if (i == devs_len) { ret = 1; goto cleanup; } mf->dinfo = malloc(sizeof(*mf->dinfo)); if (!mf->dinfo) { errno = ENOMEM; ret = 2; goto cleanup; } memcpy(mf->dinfo, &devs[i], sizeof(*mf->dinfo)); strncpy(mf->dinfo->dev_name, dev_name, sizeof(mf->dinfo->dev_name) / sizeof(mf->dinfo->dev_name[0]) - 1); if (mf->dinfo->type == MDEVS_TAVOR_CR) { if (devs[i].pci.ib_devs) { /* count ib devs */ int j; char** curr = devs[i].pci.ib_devs; int cnt = 0; while (*(curr++)) { cnt++; } mf->dinfo->pci.ib_devs = malloc((cnt + 1) * sizeof(char*)); if (!mf->dinfo->pci.ib_devs) { errno = ENOMEM; free(mf->dinfo); ret = 3; goto cleanup; } for (j = 0; j < cnt; j++) { mf->dinfo->pci.ib_devs[j] = malloc(strlen(devs[i].pci.ib_devs[j]) + 1); strcpy(mf->dinfo->pci.ib_devs[j], devs[i].pci.ib_devs[j]); } mf->dinfo->pci.ib_devs[cnt] = NULL; } if (devs[i].pci.net_devs) { /* count net devs */ int j; char** curr = devs[i].pci.net_devs; int cnt = 0; while (*(curr++)) { cnt++; } mf->dinfo->pci.net_devs = malloc((cnt + 1) * sizeof(char*)); if (!mf->dinfo->pci.net_devs) { errno = ENOMEM; if (mf->dinfo->pci.ib_devs) { free(mf->dinfo->pci.ib_devs); } free(mf->dinfo); ret = 4; goto cleanup; } for (j = 0; j < cnt; j++) { mf->dinfo->pci.net_devs[j] = malloc(strlen(devs[i].pci.net_devs[j]) + 1); strcpy(mf->dinfo->pci.net_devs[j], devs[i].pci.net_devs[j]); } mf->dinfo->pci.net_devs[cnt] = NULL; } } cleanup: mdevices_info_destroy_ul(devs, devs_len); return ret; } mfile* mopen_ul(const char* name) { mfile* mf = mopen_ul_int(name, 0); return mf; } void free_dev_info_ul(mfile* mf) { if (mf->dinfo) { if (mf->dinfo->pci.ib_devs) { char** curr = mf->dinfo->pci.ib_devs; while (*(curr)) { free(*curr); curr++; } free(mf->dinfo->pci.ib_devs); } if (mf->dinfo->pci.net_devs) { char** curr = mf->dinfo->pci.net_devs; while (*(curr)) { free(*curr); curr++; } free(mf->dinfo->pci.net_devs); } free(mf->dinfo); mf->dinfo = NULL; } } int mclose_ul(mfile* mf) { if (mf != NULL) { ul_ctx_t* ctx = mf->ul_ctx; if (ctx) { if (ctx->mclose != NULL) { /* close icmd if if needed */ if (mf->icmd.icmd_opened) { icmd_close(mf); } ctx->mclose(mf); } if (ctx->fdlock) { close(ctx->fdlock); } if (ctx->res_fdlock) { close(ctx->res_fdlock); } free(ctx); } if (mf->dev_name) { free(mf->dev_name); } if (mf->user_page_list.page_amount) { release_dma_pages(mf, mf->user_page_list.page_amount); } free_dev_info_ul(mf); free(mf); } return 0; } #define IBDR_MAX_NAME_SIZE 128 #define BDF_NAME_SIZE 12 #define DEV_DIR_MAX_SIZE 256 static int get_inband_dev_from_pci(char* inband_dev, char* pci_dev) { unsigned domain = 0, bus = 0, dev = 0, func = 0; int force = 0; MType dev_type; DIR * d; struct dirent* dir; char subdirname[DEV_DIR_MAX_SIZE] = {0}; char linkname[DEV_DIR_MAX_SIZE] = {0}; int found = 0; char dirname[] = "/sys/class/infiniband"; dev_type = mtcr_parse_name(pci_dev, &force, &domain, &bus, &dev, &func); d = opendir(dirname); if (d == NULL) { errno = ENODEV; return -2; } while ((dir = readdir(d)) != NULL) { unsigned curr_domain = 0, curr_bus = 0, curr_dev = 0, curr_func = 0; int curr_force = 0, link_size; if (dir->d_name[0] == '.') { continue; } snprintf(subdirname, DEV_DIR_MAX_SIZE - 1, "%s/%.100s/device", dirname, dir->d_name); link_size = readlink(subdirname, linkname, DEV_DIR_MAX_SIZE); if (link_size < BDF_NAME_SIZE) { /* * Fixing coverity issue to make [link_size - BDF_NAME_SIZE] valid */ continue; } dev_type = mtcr_parse_name(&linkname[link_size - BDF_NAME_SIZE], &curr_force, &curr_domain, &curr_bus, &curr_dev, &curr_func); if ((domain == curr_domain) && (bus == curr_bus) && (dev == curr_dev) && (func == curr_func)) { snprintf(inband_dev, IBDR_MAX_NAME_SIZE - 1, "ibdr-0,%.100s,1", dir->d_name); found = 1; break; } } closedir(d); (void)dev_type; /* avoid compiler warrnings */ if (found) { return 0; } else { errno = ENODEV; return -1; } } static int reopen_pci_as_inband(mfile* mf) { int rc; char inband_dev[IBDR_MAX_NAME_SIZE] = {0}; rc = get_inband_dev_from_pci(inband_dev, mf->dev_name); if (rc) { errno = ENODEV; return -1; } ((ul_ctx_t*)mf->ul_ctx)->mclose(mf); free(mf->dev_name); mf->dev_name = strdup(inband_dev); rc = mtcr_inband_open(mf, inband_dev); return rc; } int maccess_reg_mad_ul(mfile* mf, u_int8_t* data) { int rc; if ((mf == NULL) || (data == NULL)) { return ME_BAD_PARAMS; } if (mf->tp != MST_IB) { /* Close current device and re-open as inband */ rc = reopen_pci_as_inband(mf); if (rc) { errno = ENODEV; /* for compatibility untill we change mtcr to use error code */ return ME_REG_ACCESS_UNKNOWN_ERR; } } return ((ul_ctx_t*)mf->ul_ctx)->maccess_reg(mf, data); } static void mtcr_fix_endianness(u_int32_t* buf, int len) { int i; for (i = 0; i < (len / 4); ++i) { u_int32_t tmp = buf[i]; buf[i] = __be32_to_cpu(tmp); } } int mread_buffer_ul(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { int rc; rc = mread4_block_ul(mf, offset, (u_int32_t*)data, byte_len); mtcr_fix_endianness((u_int32_t*)data, byte_len); return rc; } int mwrite_buffer_ul(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { mtcr_fix_endianness((u_int32_t*)data, byte_len); return mwrite4_block_ul(mf, offset, (u_int32_t*)data, byte_len); } /* * Reg Access Section */ #define TLV_OPERATION_SIZE 4 #define OP_TLV_SIZE 16 #define REG_TLV_HEADER_LEN 4 enum { MAD_CLASS_REG_ACCESS = 1, MAD_CLASS_A_REG_ACCESS = 0x0A, }; u_int8_t class_to_use = MAD_CLASS_REG_ACCESS; enum { TLV_END = 0, TLV_OPERATION = 1, TLV_DR = 2, TLV_REG = 3, TLV_USER_DATA = 4, }; #define REGISTER_HEADERS_SIZE 12 #define INBAND_MAX_REG_SIZE 44 #define INBAND_MAX_REG_SIZE_CLS_A 204 #define INBAND_MAX_GMP_DWORDS_NUM 55 #define INBAND_MAX_GMP_BLOCKS 16 #define INBAND_MAX_GMP_REG_SIZE INBAND_MAX_GMP_BLOCKS* INBAND_MAX_GMP_DWORDS_NUM * 4 #define ICMD_MAX_REG_SIZE (ICMD_MAX_CMD_SIZE - REGISTER_HEADERS_SIZE) #define FWCTX_MAX_REG_SIZE 16 #define TOOLS_HCR_MAX_REG_SIZE (TOOLS_HCR_MAX_MBOX - REGISTER_HEADERS_SIZE) static int supports_icmd(mfile* mf); static int supports_tools_cmdif_reg(mfile* mf); static int init_operation_tlv(struct OperationTlv* operation_tlv, u_int16_t reg_id, u_int8_t method); static int mreg_send_wrapper(mfile* mf, u_int8_t* data, int r_icmd_size, int w_icmd_size); static int mreg_send_raw(mfile * mf, u_int16_t reg_id, maccess_reg_method_t method, void * reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int * reg_status); int return_by_reg_status(int reg_status) { switch (reg_status) { case 1: return ME_REG_ACCESS_DEV_BUSY; case 2: return ME_REG_ACCESS_VER_NOT_SUPP; case 3: return ME_REG_ACCESS_UNKNOWN_TLV; case 4: return ME_REG_ACCESS_REG_NOT_SUPP; case 5: return ME_REG_ACCESS_CLASS_NOT_SUPP; case 6: return ME_REG_ACCESS_METHOD_NOT_SUPP; case 7: return ME_REG_ACCESS_BAD_PARAM; case 8: return ME_REG_ACCESS_RES_NOT_AVLBL; case 9: return ME_REG_ACCESS_MSG_RECPT_ACK; case 0x22: return ME_REG_ACCESS_CONF_CORRUPT; case 0x24: return ME_REG_ACCESS_LEN_TOO_SMALL; case 0x20: return ME_REG_ACCESS_BAD_CONFIG; case 0x21: return ME_REG_ACCESS_ERASE_EXEEDED; case 0x70: return ME_REG_ACCESS_INTERNAL_ERROR; default: return ME_REG_ACCESS_UNKNOWN_ERR; } } int supports_reg_access_smp(mfile* mf) { return (mf->flags & (MDEVS_IB | MDEVS_FWCTX)) || (!(mf->flags & MDEVS_IB) && (supports_icmd(mf) || supports_tools_cmdif_reg(mf))); } int maccess_reg_ul(mfile * mf, u_int16_t reg_id, maccess_reg_method_t reg_method, void * reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int * reg_status) { DBG_PRINTF("Sending Access Register:\n"); DBG_PRINTF("Register ID: 0x%04x\n", reg_id); DBG_PRINTF("Register Size: %d bytes\n", reg_size); int rc = -1; class_to_use = MAD_CLASS_REG_ACCESS; if ((mf == NULL) || (reg_data == NULL) || (reg_status == NULL) || (reg_size <= 0)) { return ME_BAD_PARAMS; } /* check register size */ unsigned int max_size = (unsigned int)mget_max_reg_size_ul(mf, reg_method); if (reg_size > (unsigned int)max_size) { /* reg too big */ return ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT; } #ifndef MST_UL if (mf->flags & MDEVS_MLNX_OS) { rc = mos_reg_access_raw(mf, reg_id, reg_method, reg_data, reg_size, reg_status); if (!rc) { return ME_OK; } } #endif if (mf->tp == MST_MLX5_CONTROL_DRIVER) { int method = (reg_method == MACCESS_REG_METHOD_GET) ? MLX5CTL_METHOD_READ : MLX5CTL_METHOD_WRITE; rc = mlx5_control_access_register(mf->fd, reg_data, reg_size, reg_id, method, reg_status, mf); if (*reg_status) { int status = return_by_reg_status(*reg_status); MLX5CTL_DEBUG_PRINT(mf, "reg status: %s. reg status code = %d\n", m_err2str(status), status) return status; } return rc; } if (reg_size <= INBAND_MAX_REG_SIZE) { if (supports_reg_access_smp(mf)) { rc = mreg_send_raw(mf, reg_id, reg_method, reg_data, reg_size, r_size_reg, w_size_reg, reg_status); } if ((rc == ME_OK) && (*reg_status == 0)) { DBG_PRINTF("AccessRegister SMP Sent Successfully!\n"); return ME_OK; } else { DBG_PRINTF("AccessRegister Class SMP Failed!\n"); DBG_PRINTF("Mad Status: 0x%08x\n", rc); DBG_PRINTF("Register Status: 0x%08x\n", *reg_status); class_to_use = MAD_CLASS_A_REG_ACCESS; } } if ((reg_size <= INBAND_MAX_REG_SIZE_CLS_A) && (supports_reg_access_cls_a_ul(mf, reg_method))) { class_to_use = MAD_CLASS_A_REG_ACCESS; rc = mreg_send_raw(mf, reg_id, reg_method, reg_data, reg_size, r_size_reg, w_size_reg, reg_status); if ((rc == ME_OK) && (*reg_status == 0)) { DBG_PRINTF("AccessRegister Class 0xA Sent Successfully!\n"); return ME_OK; } else { DBG_PRINTF("AccessRegister Class 0xA Failed!\n"); DBG_PRINTF("Mad Status: 0x%08x\n", rc); DBG_PRINTF("Register Status: 0x%08x\n", *reg_status); class_to_use = MAD_CLASS_REG_ACCESS; } } if (supports_reg_access_gmp_ul(mf, reg_method)) { rc = mib_send_gmp_access_reg_mad_ul(mf, (u_int32_t*)reg_data, reg_size, reg_id, reg_method, reg_status); if ((rc == ME_OK) && (*reg_status == 0)) { DBG_PRINTF("AccessRegisterGMP Sent Successfully!\n"); return ME_OK; } DBG_PRINTF("AccessRegisterGMP Failed!\n"); DBG_PRINTF("Mad Status: 0x%08x\n", rc); DBG_PRINTF("Register Status: 0x%08x\n", *reg_status); } /* Fallback - Attempting SMP as last resort. */ if (supports_reg_access_smp(mf)) { class_to_use = MAD_CLASS_REG_ACCESS; rc = mreg_send_raw(mf, reg_id, reg_method, reg_data, reg_size, r_size_reg, w_size_reg, reg_status); } else { return ME_REG_ACCESS_NOT_SUPPORTED; } if (rc) { return rc; } else if (*reg_status) { return return_by_reg_status(*reg_status); } return ME_OK; } int supports_reg_access_gmp_ul(mfile* mf, maccess_reg_method_t reg_method) { #ifndef MST_UL return mib_supports_reg_access_gmp(mf, reg_method); #else (void)mf; (void)reg_method; return 0; #endif } int supports_reg_access_cls_a_ul(mfile* mf, maccess_reg_method_t reg_method) { #ifndef MST_UL return mib_supports_reg_access_cls_a(mf, reg_method); #else (void)mf; (void)reg_method; return 0; #endif } int mib_send_cls_a_access_reg_mad_ul(mfile* mf, u_int8_t* data) { #ifndef MST_UL return mib_send_cls_a_access_reg_mad(mf, data); #else (void)mf; (void)data; return 0; #endif } int mib_send_gmp_access_reg_mad_ul(mfile * mf, u_int32_t * data, u_int32_t reg_size, u_int32_t reg_id, maccess_reg_method_t reg_method, int * reg_status) { #ifndef MST_UL return mib_send_gmp_access_reg_mad(mf, data, reg_size, reg_id, reg_method, reg_status); #else (void)mf; (void)data; (void)reg_size; (void)reg_id; (void)reg_method; (void)reg_status; return 0; #endif } static int init_operation_tlv(struct OperationTlv* operation_tlv, u_int16_t reg_id, u_int8_t method) { memset(operation_tlv, 0, sizeof(*operation_tlv)); operation_tlv->Type = TLV_OPERATION; operation_tlv->class = class_to_use; operation_tlv->len = TLV_OPERATION_SIZE; operation_tlv->method = method; operation_tlv->register_id = reg_id; return 0; } /*///////////////// Function that sends the register via the correct interface /////////////////////////// */ static int mreg_send_wrapper(mfile* mf, u_int8_t* data, int r_icmd_size, int w_icmd_size) { int rc; if (mf->tp == MST_IB) { /* inband access */ rc = maccess_reg_mad(mf, data); if (rc) { /* printf("-E- 2. Access reg mad failed with rc = %#x\n", rc); */ return ME_MAD_SEND_FAILED; } } else if (supports_icmd(mf)) { #if defined(MST_UL) && !defined(MST_UL_ICMD) if (mf->vsec_supp) { /* we support accessing fw via icmd space */ rc = icmd_send_command_int(mf, FLASH_REG_ACCESS, data, w_icmd_size, r_icmd_size, 0); if (rc) { return rc; } } else { /* send register via inband (maccess_reg_mad will open the device as inband thus consecutives calls will go to */ /* the first if) */ rc = maccess_reg_mad(mf, data); if (rc) { /* printf("-E- 2. Access reg mad failed with rc = %#x\n", rc); */ return ME_MAD_SEND_FAILED; } } #else rc = icmd_send_command_int(mf, FLASH_REG_ACCESS, data, w_icmd_size, r_icmd_size, 0); if (rc) { return rc; } #endif } else if (supports_tools_cmdif_reg(mf)) { rc = tools_cmdif_reg_access(mf, data, w_icmd_size, r_icmd_size); if (rc) { return rc; } } else { return ME_NOT_IMPLEMENTED; } return ME_OK; } static int mreg_send_raw(mfile * mf, u_int16_t reg_id, maccess_reg_method_t method, void * reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int * reg_status) { /* printf("-D- reg_id = %d, reg_size = %d, r_size_reg = %d , w_size_reg = %d */ /* \n",reg_id,reg_size,r_size_reg,w_size_reg); */ int mad_rc, cmdif_size = 0; struct OperationTlv tlv; struct reg_tlv tlv_info; u_int8_t buffer[1024] = {0}; init_operation_tlv(&(tlv), reg_id, method); /* Fill Reg TLV */ memset(&tlv_info, 0, sizeof(tlv_info)); tlv_info.Type = TLV_REG; tlv_info.len = (reg_size + REG_TLV_HEADER_LEN) >> 2; /* length is in dwords */ /* Pack the mad */ cmdif_size += OperationTlv_pack(&tlv, buffer); cmdif_size += reg_tlv_pack(&tlv_info, buffer + OP_TLV_SIZE); /* put the reg itself into the buffer */ memcpy(buffer + OP_TLV_SIZE + REG_TLV_HEADER_LEN, reg_data, reg_size); cmdif_size += reg_size; #ifdef _ENABLE_DEBUG_ fprintf(stdout, "-I-Tlv's of Data Sent:\n"); fprintf(stdout, "\tOperation Tlv\n"); OperationTlv_dump(&tlv, stdout); fprintf(stdout, "\tReg Tlv\n"); reg_tlv_dump(&tlv_info, stdout); #endif /* printf("-D- reg_info.len = |%d, OP_TLV: %d, REG_TLV= %d, cmdif_size = %d\n", reg_info.len, OP_TLV_SIZE, */ /* REG_RLV_HEADER_LEN, cmdif_size); update r/w_size_reg with the size of op tlv and reg tlv as we need to read/write */ /* them as well */ r_size_reg += OP_TLV_SIZE + REG_TLV_HEADER_LEN; w_size_reg += OP_TLV_SIZE + REG_TLV_HEADER_LEN; /* printf("-D- reg_size = %d, r_size_reg = %d , w_size_reg = %d \n",reg_size,r_size_reg,w_size_reg); */ if (class_to_use == MAD_CLASS_A_REG_ACCESS) { mad_rc = mib_send_cls_a_access_reg_mad_ul(mf, buffer); } else { mad_rc = mreg_send_wrapper(mf, buffer, r_size_reg, w_size_reg); } /* Unpack the mad */ OperationTlv_unpack(&tlv, buffer); reg_tlv_unpack(&tlv_info, buffer + OP_TLV_SIZE); /* copy register back from the buffer */ memcpy(reg_data, buffer + OP_TLV_SIZE + REG_TLV_HEADER_LEN, reg_size); #ifdef _ENABLE_DEBUG_ fprintf(stdout, "-I-Tlv's of Data Received:\n"); fprintf(stdout, "\tOperation Tlv\n"); OperationTlv_dump(&tlv, stdout); fprintf(stdout, "\tReg Tlv\n"); reg_tlv_dump(&tlv_info, stdout); #endif /* Check the return value */ *reg_status = tlv.status; if (mad_rc) { return mad_rc; } return ME_OK; } /* needed device HW IDs */ #define CONNECTX3_PRO_HW_ID 0x1f7 #define CONNECTX3_HW_ID 0x1f5 static int supports_icmd(mfile* mf) { u_int32_t dev_id = 0; if (mf->tp == MST_MLX5_CONTROL_DRIVER) { return 1; } if (mread4_ul(mf, HW_ID_ADDR, &dev_id) != 4) { /* cr might be locked and retured 0xbad0cafe but we dont care we search for device that supports icmd */ return 0; } switch (dev_id & 0xffff) { /* that the hw device id */ case CONNECTX3_HW_ID: case CONNECTX3_PRO_HW_ID: return 0; default: break; } return 1; } static int supports_tools_cmdif_reg(mfile* mf) { u_int32_t dev_id = 0; if (mread4_ul(mf, HW_ID_ADDR, &dev_id) != 4) { /* cr might be locked and retured 0xbad0cafe but we dont care we search for device that supports tools cmdif */ return 0; } switch (dev_id & 0xffff) { /* that the hw device id */ case CONNECTX3_HW_ID: /* Cx3 */ case CONNECTX3_PRO_HW_ID: /* Cx3-pro */ if (tools_cmdif_is_supported(mf) == ME_OK) { return 1; } break; default: break; } return 0; } int mget_max_reg_size_ul(mfile* mf, maccess_reg_method_t reg_method) { if (mf->acc_reg_params.max_reg_size[reg_method]) { return mf->acc_reg_params.max_reg_size[reg_method]; } else if (supports_reg_access_gmp_ul(mf, reg_method)) { mf->acc_reg_params.max_reg_size[reg_method] = INBAND_MAX_GMP_REG_SIZE; } else if (supports_reg_access_cls_a_ul(mf, reg_method)) { mf->acc_reg_params.max_reg_size[reg_method] = INBAND_MAX_REG_SIZE_CLS_A; } else if (mf->flags & MDEVS_IB) { mf->acc_reg_params.max_reg_size[reg_method] = INBAND_MAX_REG_SIZE; } else if (mf->flags & MDEVS_MLNX_OS) { mf->acc_reg_params.max_reg_size[reg_method] = INBAND_MAX_REG_SIZE; } else if (mf->flags & MDEVS_FWCTX) { mf->acc_reg_params.max_reg_size[reg_method] = FWCTX_MAX_REG_SIZE; } else if (supports_icmd(mf)) { mf->acc_reg_params.max_reg_size[reg_method] = ICMD_MAX_REG_SIZE; } else if (supports_tools_cmdif_reg(mf)) { mf->acc_reg_params.max_reg_size[reg_method] = TOOLS_HCR_MAX_REG_SIZE; } return mf->acc_reg_params.max_reg_size[reg_method]; } int mclear_pci_semaphore_ul(const char* name) { mfile* mf; int rc = ME_OK; mf = mopen_ul_int(name, Clear_Vsec_Semaphore); if (!mf) { return ME_ERROR; } if ((mf->tp & (MST_PCICONF | MST_PCI)) == 0) { rc = ME_UNSUPPORTED_ACCESS_TYPE; } mclose_ul(mf); return rc; } int mvpd_read4_ul_int(mfile* mf, unsigned int offset, u_int8_t value[4]) { char proc_dev[64]; if (!(mf->dinfo)) { errno = EPERM; return -1; } if ((ul_ctx_t*)mf->ul_ctx && ((ul_ctx_t*)mf->ul_ctx)->via_driver) { return mst_driver_vpd_read4(mf, offset, value); } u_int16_t domain = (mf->dinfo)->pci.domain; u_int8_t bus = (mf->dinfo)->pci.bus; u_int8_t dev = (mf->dinfo)->pci.dev; u_int8_t func = (mf->dinfo)->pci.func; /**************************/ /* * In case ioctl is not defined or failed. * Secondary way using File System */ sprintf(proc_dev, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/vpd", domain, bus, dev, func); FILE* f = fopen(proc_dev, "r"); if (!f) { /* fprintf(stderr, "Failed to open (%s) for reading: %s\n", proc_dev, strerror(errno)); */ return errno; } setvbuf(f, NULL, _IONBF, 0); if (fseek(f, offset, SEEK_SET)) { /* fprintf(stderr, "Reached End Of File: %s\n", strerror(errno)); */ fclose(f); return errno; } if (fread(value, 1, 4, f) < 1) { /* fprintf(stderr, "Failed to read from (%s): %s\n", proc_dev, strerror(errno)); */ fclose(f); return errno; } fclose(f); return 0; } int mvpd_read4_ul(mfile* mf, unsigned int offset, u_int8_t value[4]) { if (offset % 4) { u_int8_t qword[8] = {0}; int rc = 0; unsigned int aligned_offset = (offset / 4) * 4; rc = mvpd_read4_ul_int(mf, aligned_offset, qword); if (rc) { return rc; } rc = mvpd_read4_ul_int(mf, aligned_offset + 4, qword + 4); memcpy(value, qword + (offset % 4), 4); return 0; } else { return mvpd_read4_ul_int(mf, offset, value); } } /************************************ * Function: m_err2str ************************************/ const char* m_err2str(MError status) { switch (status) { case ME_OK: return "ME_OK"; case ME_ERROR: return "General error"; case ME_BAD_PARAMS: return "ME_BAD_PARAMS"; case ME_CR_ERROR: return "ME_CR_ERROR"; case ME_NOT_IMPLEMENTED: return "ME_NOT_IMPLEMENTED"; case ME_SEM_LOCKED: return "Semaphore locked"; case ME_MEM_ERROR: return "ME_MEM_ERROR"; case ME_UNSUPPORTED_OPERATION: return "ME_UNSUPPORTED_OPERATION"; case ME_GMP_MAD_UNSUPPORTED_OPERATION: return "Sending GMP MAD supports only Get() method, and you are trying to send Set() method\n" "to a register which is not small enough to send with SMP MAD."; case ME_MAD_SEND_FAILED: return "ME_MAD_SEND_FAILED"; case ME_UNKOWN_ACCESS_TYPE: return "ME_UNKOWN_ACCESS_TYPE"; case ME_UNSUPPORTED_ACCESS_TYPE: return "ME_UNSUPPORTED_ACCESS_TYPE"; case ME_UNSUPPORTED_DEVICE: return "ME_UNSUPPORTED_DEVICE"; /* Reg access errors */ case ME_REG_ACCESS_BAD_STATUS_ERR: return "ME_REG_ACCESS_BAD_STATUS_ERR"; case ME_REG_ACCESS_BAD_METHOD: return "Bad method"; case ME_REG_ACCESS_NOT_SUPPORTED: return "The Register access is not supported by the device"; case ME_REG_ACCESS_DEV_BUSY: return "Device is busy"; case ME_REG_ACCESS_VER_NOT_SUPP: return "Version not supported"; case ME_REG_ACCESS_UNKNOWN_TLV: return "Unknown TLV"; case ME_REG_ACCESS_REG_NOT_SUPP: return "Register not supported"; case ME_REG_ACCESS_CLASS_NOT_SUPP: return "Class not supported"; case ME_REG_ACCESS_METHOD_NOT_SUPP: return "Method not supported"; case ME_REG_ACCESS_BAD_PARAM: return "Bad parameter"; case ME_REG_ACCESS_RES_NOT_AVLBL: return "Resource unavailable"; case ME_REG_ACCESS_MSG_RECPT_ACK: return "Message receipt ack"; case ME_REG_ACCESS_UNKNOWN_ERR: return "Unknown register error"; case ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT: return "Register is too large"; case ME_REG_ACCESS_CONF_CORRUPT: return "Config Section Corrupted"; case ME_REG_ACCESS_LEN_TOO_SMALL: return "The given Register length is too small for the Tlv"; case ME_REG_ACCESS_BAD_CONFIG: return "The configuration is rejected"; case ME_REG_ACCESS_ERASE_EXEEDED: return "The erase count exceeds its limit"; case ME_REG_ACCESS_INTERNAL_ERROR: return "Firmware internal error"; /* ICMD access errors */ case ME_ICMD_STATUS_CR_FAIL: return "ME_ICMD_STATUS_CR_FAIL"; case ME_ICMD_STATUS_SEMAPHORE_TO: return "ME_ICMD_STATUS_SEMAPHORE_TO"; case ME_ICMD_STATUS_EXECUTE_TO: return "ME_ICMD_STATUS_EXECUTE_TO"; case ME_ICMD_STATUS_IFC_BUSY: return "ME_ICMD_STATUS_IFC_BUSY"; case ME_ICMD_STATUS_ICMD_NOT_READY: return "ME_ICMD_STATUS_ICMD_NOT_READY"; case ME_ICMD_UNSUPPORTED_ICMD_VERSION: return "ME_ICMD_UNSUPPORTED_ICMD_VERSION"; case ME_ICMD_NOT_SUPPORTED: return "ME_REG_ACCESS_ICMD_NOT_SUPPORTED"; case ME_ICMD_INVALID_OPCODE: return "ME_ICMD_INVALID_OPCODE"; case ME_ICMD_INVALID_CMD: return "ME_ICMD_INVALID_CMD"; case ME_ICMD_OPERATIONAL_ERROR: return "ME_ICMD_OPERATIONAL_ERROR"; case ME_ICMD_BAD_PARAM: return "ME_ICMD_BAD_PARAM"; case ME_ICMD_BUSY: return "ME_ICMD_BUSY"; case ME_ICMD_ICM_NOT_AVAIL: return "ME_ICMD_ICM_NOT_AVAIL"; case ME_ICMD_WRITE_PROTECT: return "ME_ICMD_WRITE_PROTECT"; case ME_ICMD_UNKNOWN_STATUS: return "ME_ICMD_UNKNOWN_STATUS"; case ME_ICMD_SIZE_EXCEEDS_LIMIT: return "ME_ICMD_SIZE_EXCEEDS_LIMIT"; /* TOOLS HCR access errors */ case ME_CMDIF_BUSY: return "Tools HCR busy"; case ME_CMDIF_TOUT: return "Tools HCR time out."; case ME_CMDIF_BAD_OP: return "Operation not supported"; case ME_CMDIF_NOT_SUPP: return "Tools HCR not supported"; case ME_CMDIF_BAD_SYS: return "bad system status (driver may be down or Fw does not support this operation)"; case ME_CMDIF_UNKN_TLV: return "Unknown TLV"; case ME_CMDIF_RES_STATE: return "Bad reset state"; case ME_CMDIF_UNKN_STATUS: return "Unknown status"; /* MAD IFC errors */ case ME_MAD_BUSY: return "Temporarily busy. MAD discarded. This is not an error"; case ME_MAD_REDIRECT: return "Redirection. This is not an error"; case ME_MAD_BAD_VER: return "Bad version"; case ME_MAD_METHOD_NOT_SUPP: return "Method not supported"; case ME_MAD_METHOD_ATTR_COMB_NOT_SUPP: return "Method and attribute combination isn't supported"; case ME_MAD_BAD_DATA: return "Bad attribute modifier or field"; case ME_MAD_GENERAL_ERR: return "Unknown MAD error"; default: return "Unknown error code"; } } int get_dma_pages(mfile* mf, struct mtcr_page_info* page_info, int page_amount) { #if !defined(__VMKERNEL_UW_NATIVE__) int page_size = sysconf(_SC_PAGESIZE); int pages_size = page_amount * page_size; int page_counter; int ret_value; /* Parameters validation. */ if (!mf || !page_info) { return -1; } /* Save the page amount. */ page_info->page_amount = page_amount; /* Allocate user buffer. */ mf->user_page_list.page_list = memalign(page_size, pages_size); if (!mf->user_page_list.page_list) { return -1; } /* We need to call mlock after the pages allocation in order to */ /* lock the virtual address space into RAM and preventing that */ /* memory from being paged to the swap area. */ mlock(mf->user_page_list.page_list, pages_size); mf->user_page_list.page_amount = page_amount; /* Save the start buffer pointer as an integer. */ page_info->page_pointer_start = (unsigned long)mf->user_page_list.page_list; /* Save the virtual address. */ for (page_counter = 0; page_counter < page_amount; page_counter++) { int current_offest = (page_size * page_counter); page_info->page_addresses_array[page_counter].virtual_address = (u_int64_t)(mf->user_page_list.page_list + current_offest); } /* Pin the memory in the kernel space. */ ret_value = ioctl(mf->fd, PCICONF_GET_DMA_PAGES, page_info); if (ret_value) { /* Failed to get dma address. */ /* Release the memory. */ release_dma_pages(mf, page_counter); return -1; } return 0; #else (void)mf; (void)page_info; (void)page_amount; /* MST VMWare driver is unsupported. */ return -1; #endif /* if !defined(__VMKERNEL_UW_NATIVE__) */ } int release_dma_pages(mfile* mf, int page_amount) { #if !defined(__VMKERNEL_UW_NATIVE__) struct mtcr_page_info page_info; /* Parameter validation. */ if (!mf) { return -1; } page_info.page_amount = page_amount; ioctl(mf->fd, PCICONF_RELEASE_DMA_PAGES, &page_info); /* Free the user space memory. */ free(mf->user_page_list.page_list); mf->user_page_list.page_list = NULL; mf->user_page_list.page_amount = 0; return 0; #else (void)mf; /* MST VMWare driver is unsupported. */ return -1; #endif } int read_dword_from_conf_space(mfile* mf, u_int32_t offset, u_int32_t* data) { #if !defined(__VMKERNEL_UW_NATIVE__) int ret = 0; /* Parameters validation. */ if (!mf || !data) { return -1; } struct mtcr_read_dword_from_config_space read_config_space; read_config_space.offset = offset; read_config_space.data = 0; /* Read from the configuration space. */ ret = ioctl(mf->fd, PCICONF_READ_DWORD_FROM_CONFIG_SPACE, &read_config_space); *data = read_config_space.data; return ret; #else (void)mf; (void)offset; (void)data; /* MST VMWare driver is unsupported. */ return -1; #endif } mstflint-4.26.0/eval_git_sha.sh0000755000175000017500000000421114522641732016665 0ustar tzafrirctzafrirc#!/bin/bash # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. GIT_SHA_FILENAME=tools_git_sha unset GIT_SHA # Check if the current directory is inside a Git repository. if git rev-parse --is-inside-work-tree > /dev/null 2>&1; then # If inside a Git repository, retrieve commit hash. GIT_SHA=$(git rev-parse --short HEAD) else # If not in a Git repository, check if GIT_SHA_FILENAME exists. if [ -f "$GIT_SHA_FILENAME" ]; then # If the file exists, assume it contains the commit hash. GIT_SHA=$(<"$GIT_SHA_FILENAME") else GIT_SHA="N/A" fi fi if [ -z "$GIT_SHA" ]; then echo "an unexpected error occurred" exit 1 fi # Calling code expects evaluated commit hash in STDOUT. In addition we # refresh the content of GIT_SHA_FILENAME to ensure it is up to date. echo $GIT_SHA | tee "$GIT_SHA_FILENAME" mstflint-4.26.0/include/0000755000175000017500000000000014522641732015326 5ustar tzafrirctzafrircmstflint-4.26.0/include/mtcr_ul/0000755000175000017500000000000014522641732016773 5ustar tzafrirctzafrircmstflint-4.26.0/include/mtcr_ul/mtcr_mf.h0000644000175000017500000001246614522641732020604 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __MTCR_MF__ #define __MTCR_MF__ #include "mtcr_com_defs.h" #ifdef __FreeBSD__ #include #endif struct mft_core_wrapper { void* config_space_access; void* reg_access; void* reset_access; }; #ifdef __FreeBSD__ struct page_list_fbsd { // User space buffer page aligned. char* page_list[MAX_PAGES_SIZE]; int page_amount; }; #endif /* All fields in follow structure are not supposed to be used */ /* or modified by user programs. Except i2c_slave that may be */ /* modified before each access to target I2C slave address */ struct mfile_t { MType tp; /* type of driver */ MType orig_tp; MType res_tp; /* Will be used with HCR if need */ DType dtype; /* target device to access to */ DType itype; /* interface device to access via */ u_int32_t device_hw_id; int is_i2cm; /* use device as I2C master */ int is_vm; /* if the machine is VM */ int cr_access; /* If cr access is allowed in MLNXOS devices */ cables_info ext_info; /*keeps info for calculate the correct slave address (0x50 + offset) */ unsigned char i2c_slave; int gpio_en; io_region* iorw_regions; /* For LPC devices */ int regions_num; char* dev_name; int fd; int res_fd; /* Will be used with HCR if need*/ int sock; /* in not -1 - remote interface */ int is_mtserver_req; // request came from mtServer - means came from remote client void* bar_virtual_addr; unsigned int map_size; unsigned int bar0_gw_offset; // for MST_BAR0_GW_PCI devices, offset from BAR0 - gateway - for R/W operations int file_lock_descriptor; // file descriptor to the lock file aka semaphore in order to protect parallel read/write // GW operations unsigned long long start_idx; /************************ FPGA DDR3 *********************************/ void* ddr3_ptr; unsigned long long ddr3_start_idx; unsigned int ddr3_map_size; /********************************************************************/ MIB_Private mib; /* Data for IB interface (if relevant) */ void* ctx; void* fallback_mf; unsigned int i2c_RESERVED; /* Reserved for internal usage (i2c internal) */ int i2c_smbus; enum Mdevs_t flags; u_int32_t connectx_wa_slot; /* apply connectx cr write workaround */ int connectx_wa_last_op_write; u_int32_t connectx_wa_stat; u_int64_t connectx_wa_max_retries; u_int64_t connectx_wa_num_of_writes; u_int64_t connectx_wa_num_of_retry_writes; int server_ver_major; int server_ver_minor; unsigned int proto_type; dev_info* dinfo; // for ICMD access icmd_params icmd; // for UEFI ctx_params context; // for mst driver compatibility int old_mst; unsigned short mst_version_major; unsigned int mst_version_minor; int vsec_supp; mtcr_status_e icmd_support; unsigned int vsec_addr; u_int32_t vsec_cap_mask; int address_space; int multifunction; // for tools HCR access tools_hcr_params hcr_params; // for sending access registers access_reg_params acc_reg_params; // UL void* ul_ctx; // Dynamic libs Ctx void* dl_context; // Cables CTX int is_cable; void* cable_ctx; unsigned int linkx_chip_devid; void* cable_chip_ctx; // TODO change the name f_mpci_change mpci_change; // Amos gear-box gearbox_info gb_info; #ifdef __FreeBSD__ struct pcisel sel; unsigned int vpd_cap_addr; int wo_addr; int connectx_flush; int fdlock; struct page_list_fbsd user_page_list; void* ptr; #else struct page_list user_page_list; #endif // For dma purpose void* dma_props; // MFT core wrapper objects. struct mft_core_wrapper mft_core_object; char* mlx5ctl_env_var_debug; }; #endif mstflint-4.26.0/include/mtcr_ul/mlx5ctl_ioctl.h0000644000175000017500000000515214522641732021731 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __MLX5_CONTROL_IOCTL_H__ #define __MLX5_CONTROL_IOCTL_H__ #include int mlx5_control_access_register(int fd, void *data_in, int size_in, __u16 reg_id, int method, int *reg_status, mfile* mf); void mlx5ctl_set_device_id(mfile* mf); struct mlx5ctl_drvinfo { __u32 version; __u64 fw_ver_sub:16; __u64 fw_ver_minor:16; __u64 fw_ver_major:16; char board_id[64]; char devname[32]; __u32 reserved[128]; __u16 ext_info_len; __u8 ext_info[0]; }; struct mlx5ctl_cmd_inout { void *in; __u16 inlen; void *out; __u16 outlen; }; #define MLX5CTL_METHOD_READ 1 #define MLX5CTL_METHOD_WRITE 0 #define MLX5CTL_IOCTL_MAGIC 0xc8 #define MLX5CTL_ENV_VAR_DEBUG "MLX5CTL_DEBUG" #define MLX5CTL_DEBUG_PRINT(mf, format, arg...) \ if (mf->mlx5ctl_env_var_debug) { \ printf("%s: %s %d: " format, MLX5CTL_ENV_VAR_DEBUG, __func__, __LINE__, ##arg); \ } #define MLX5CTL_IOCTL_DRVINFO \ _IOR(MLX5CTL_IOCTL_MAGIC, 0x0, struct mlx5ctl_drvinfo) #define MLX5CTL_IOCTL_CMD_INOUT \ _IOWR(MLX5CTL_IOCTL_MAGIC, 0x1, struct mlx5ctl_cmd_inout) #endif /* __MLX5_CONTROL_IOCTL_H__ */ mstflint-4.26.0/include/mtcr_ul/mtcr_com_defs.h0000644000175000017500000003304514522641732021755 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef _MTCR_COM_DEFS_H #define _MTCR_COM_DEFS_H #ifdef __WIN__ #include #include #ifdef __AARCH64EL__ #define MTCR_API #else #ifdef MTCR_EXPORTS #define MTCR_API __declspec(dllexport) #else #define MTCR_API __declspec(dllimport) #endif #endif #if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__) #include #else typedef __int8 int8_t; typedef __int16 int16_t; typedef __int32 int32_t; typedef __int64 int64_t; #endif // !_MSC_VER typedef unsigned __int8 u_int8_t; typedef unsigned __int16 u_int16_t; typedef unsigned __int32 u_int32_t; typedef unsigned __int64 u_int64_t; #if defined(_WIN64) typedef __int64 MT_long_ptr_t; typedef unsigned __int64 MT_ulong_ptr_t; #else typedef _W64 long MT_long_ptr_t; typedef _W64 unsigned long MT_ulong_ptr_t; #endif #elif defined(__DJGPP__) typedef unsigned char u_int8_t; typedef char int8_t; typedef unsigned short u_int16_t; typedef short int16_t; typedef unsigned int u_int32_t; typedef long int32_t; typedef unsigned long long u_int64_t; typedef long long int64_t; #define bswap_32(x) ntohl(x) #define MTCR_API #else /* UNIX */ #include #define MTCR_API #define LOCK_FILE_DIR "/tmp/mstflint_lockfiles" #define LOCK_FILE_FORMAT "/tmp/mstflint_lockfiles/%04x:%02x:%02x.%x_%s" #define LOCK_VIRTUAL_PCI_FILE_FORMAT "/tmp/mstflint_lockfiles/%s_%s" #define MAX_RETRY_CNT 4096 #endif #define DEV_NAME_SZ 512 #define MAX_PAGES_SIZE 8 #define SMP_SEMAPHOE_LOCK_CMD 0xff53 /* * MST <--> MTCR API defines */ #define MST_HEADER_VERSION 1 #define MST_META_DATA_MAJOR 1 #define MST_META_DATA_MINOR 0 #define MTCR_SUPP_MST_API_MAJOR_VERSION 1 // Service name. #define MST_PREFIX_64_BIT "mst64_" #define MST_PREFIX_32_BIT "mst32_" #define MST_SUFFIX_MAXLEN 11 #define MST_SERVICE_NAME_SIZE \ (sizeof(MST_PREFIX_64_BIT) + sizeof(MFT_VERSION_STR) + MST_SUFFIX_MAXLEN + 9) // 9 is just in case reserve //#ifndef USE_IB_MGT typedef struct mib_private_t { int dummy; } MIB_Private; //#else //#include "mtcr_ib_private.h" //#endif typedef enum { SEM_LOCK_GET = 0x0, SEM_LOCK_SET = 0x1 } sem_lock_method_t; typedef enum MError { ME_OK = 0, ME_ERROR, ME_BAD_PARAMS, ME_CR_ERROR, ME_NOT_IMPLEMENTED, ME_SEM_LOCKED, ME_MEM_ERROR, ME_TIMEOUT, ME_MAD_SEND_FAILED, ME_UNKOWN_ACCESS_TYPE, ME_UNSUPPORTED_DEVICE, ME_REG_NOT_SUPPORTED, ME_PCI_READ_ERROR, ME_PCI_WRITE_ERROR, ME_PCI_SPACE_NOT_SUPPORTED, ME_PCI_IFC_TOUT, ME_UNSUPPORTED_OPERATION, ME_UNSUPPORTED_ACCESS_TYPE, ME_GMP_MAD_UNSUPPORTED_OPERATION, // errors regarding REG_ACCESS ME_REG_ACCESS_OK = 0, ME_REG_ACCESS_BAD_STATUS_ERR = 0x100, ME_REG_ACCESS_BAD_METHOD, ME_REG_ACCESS_NOT_SUPPORTED, ME_REG_ACCESS_DEV_BUSY, ME_REG_ACCESS_VER_NOT_SUPP, ME_REG_ACCESS_UNKNOWN_TLV, ME_REG_ACCESS_REG_NOT_SUPP, ME_REG_ACCESS_CLASS_NOT_SUPP, ME_REG_ACCESS_METHOD_NOT_SUPP, ME_REG_ACCESS_BAD_PARAM, ME_REG_ACCESS_RES_NOT_AVLBL, ME_REG_ACCESS_MSG_RECPT_ACK, ME_REG_ACCESS_UNKNOWN_ERR, ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT, ME_REG_ACCESS_CONF_CORRUPT, ME_REG_ACCESS_LEN_TOO_SMALL, ME_REG_ACCESS_BAD_CONFIG, ME_REG_ACCESS_ERASE_EXEEDED, ME_REG_ACCESS_INTERNAL_ERROR, // errors regarding ICMD ME_ICMD_STATUS_CR_FAIL = 0x200, // cr-space access failure ME_ICMD_INVALID_OPCODE, ME_ICMD_INVALID_CMD, ME_ICMD_OPERATIONAL_ERROR, ME_ICMD_BAD_PARAM, ME_ICMD_BUSY, ME_ICMD_INIT_FAILED, ME_ICMD_NOT_SUPPORTED, ME_ICMD_STATUS_SEMAPHORE_TO, // timed out while trying to take semaphore ME_ICMD_STATUS_EXECUTE_TO, // timed out while waiting for command to execute ME_ICMD_STATUS_IFC_BUSY, ME_ICMD_STATUS_ICMD_NOT_READY, ME_ICMD_UNSUPPORTED_ICMD_VERSION, ME_ICMD_UNKNOWN_STATUS, ME_ICMD_ICM_NOT_AVAIL, ME_ICMD_WRITE_PROTECT, ME_ICMD_SIZE_EXCEEDS_LIMIT, // errors regarding Tools CMDIF ME_CMDIF_BUSY = 0x300, ME_CMDIF_TOUT, ME_CMDIF_BAD_STATUS, ME_CMDIF_BAD_OP, ME_CMDIF_NOT_SUPP, ME_CMDIF_BAD_SYS, ME_CMDIF_UNKN_TLV, ME_CMDIF_RES_STATE, ME_CMDIF_UNKN_STATUS, // errors regarding MAD IF ME_MAD_BUSY = 0x400, ME_MAD_REDIRECT, ME_MAD_BAD_VER, ME_MAD_METHOD_NOT_SUPP, ME_MAD_METHOD_ATTR_COMB_NOT_SUPP, ME_MAD_BAD_DATA, ME_MAD_GENERAL_ERR, // errors regarding gearbox icmd new interface gateway ME_GB_ICMD_OK = 0x500, ME_GB_ICMD_FAILED, ME_GB_ICMD_FAILED_ACCESS, ME_GB_ICMD_FAILED_BAD_PARAM, ME_GB_ICMD_TIMEOUT, ME_GB_ICMD_NOT_SUPPORTED, ME_GB_ICMD_UNKNOWN_STATUS, ME_LAST } MError; // typedefs for UEFI #ifdef UEFI_BUILD #include #endif typedef enum MType_t { MST_ERROR = 0x0, MST_FPGA = 0x1, // Unsupported MST_MLNXOS = 0x2, MST_LPC = 0x4, MST_PCI = 0x8, MST_PCICONF = 0x10, /*MST_CALBR,*/ MST_USB = 0x20, MST_IB = 0x40, MST_MLX5_CONTROL_DRIVER = 0x80, MST_PPC = 0x100, MST_USB_DIMAX = 0x200, MST_FWCTX = 0x400, MST_REMOTE = 0x800, #ifdef ENABLE_MST_DEV_I2C MST_DEV_I2C = 0x1000, #endif MST_CALBR = 0x2000, MST_FPGA_ICMD = 0x4000, // Unsupported MST_CABLE = 0x8000, MST_FPGA_DRIVER = 0x10000, // Unsupported MST_SOFTWARE = 0x20000, MST_DRIVER_CONF = 0x40000, MST_DRIVER_CR = 0x80000, MST_LINKX_CHIP = 0x100000, MST_BAR0_GW_PCI = 0x200000, MST_GEARBOX = 0x400000, MST_DEFAULT = 0xffffffff & ~MST_CABLE & ~MST_FPGA & ~MST_FPGA_ICMD & ~MST_FPGA_DRIVER & ~MST_LINKX_CHIP } MType; typedef enum DType_t { MST_GAMLA, MST_TAVOR, MST_DIMM, MST_NOADDR } DType; #define MST_ANAFA2 MST_TAVOR #define MST_EEPROM MST_GAMLA typedef enum Mdevs_t { MDEVS_GAMLA = 0x01, /* Each device that actually is a Gamla */ MDEVS_I2CM = 0x02, /* Each device that can work as I2C master */ MDEVS_MEM = 0x04, /* Each device that is a memory driver (vtop) */ MDEVS_TAVOR_DDR = 0x08, /* Each device that maps to DDR */ MDEVS_TAVOR_UAR = 0x10, /* Each device that maps to UAR */ MDEVS_TAVOR_CR = 0x20, /* Each device that maps to CR */ MDEVS_REM = 0x80, /* Remote devices */ MDEVS_PPC = 0x100, /* PPC devices */ MDEVS_DEV_I2C = 0x200, /* Generic linux kernel i2c device */ MDEVS_IB = 0x400, /* Cr access over IB Mads */ MDEVS_MLNX_OS = 0x800, /* access by CmdIf in MlnxOS */ MDEVS_FWCTX = 0x900, /* access by func/context (like UEFI) */ MDEVS_LPC = 0x1000, /* Access LPC region */ MDEVS_FPGA = 0x2000, /* Access LPC region - DEPRECATED */ MDEVS_FPGA_NEWTON = 0x4000, /* Access LPC region - DEPRECATED */ MDEVS_CABLE = 0x8000, MDEVS_SOFTWARE = 0x10000, /* Software system char dev */ MDEVS_LINKX_CHIP = 0x200000, MDEVS_GBOX = 0x400000, MDEVS_TAVOR = (MDEVS_TAVOR_DDR | MDEVS_TAVOR_UAR | MDEVS_TAVOR_CR), MDEVS_ALL = 0xffffffff } Mdevs; typedef enum { MACCESS_REG_METHOD_GET = 1, MACCESS_REG_METHOD_SET = 2, MACCESS_LAST_REG_METHOD = 3 } maccess_reg_method_t; typedef enum { VCC_INITIALIZED = 0x0, VCC_ICMD_EXT_SPACE_SUPPORTED = 0x1, VCC_CRSPACE_SPACE_SUPPORTED = 0x2, VCC_ICMD_SPACE_SUPPORTED = 0x3, VCC_NODNIC_INIT_SEG_SPACE_SUPPORTED = 0x4, VCC_EXPANSION_ROM_SPACE_SUPPORTED = 0x5, VCC_ND_CRSPACE_SPACE_SUPPORTED = 0x6, VCC_SCAN_CRSPACE_SPACE_SUPPORTED = 0x7, VCC_SEMAPHORE_SPACE_SUPPORTED = 0x8, VCC_MAC_SPACE_SUPPORTED = 0x9, } VSCCapCom; typedef enum { AS_ICMD_EXT = 0x1, AS_CR_SPACE = 0x2, AS_ICMD = 0x3, AS_NODNIC_INIT_SEG = 0x4, AS_EXPANSION_ROM = 0x5, AS_ND_CRSPACE = 0x6, AS_SCAN_CRSPACE = 0x7, AS_SEMAPHORE = 0xa, AS_MAC = 0xf, AS_END } address_space_t; typedef struct vf_info_t { char dev_name[512]; u_int16_t domain; u_int8_t bus; u_int8_t dev; u_int8_t func; char** net_devs; // Null terminated array char** ib_devs; // Null terminated array } vf_info; typedef struct dev_info_t { Mdevs type; char dev_name[512]; int ul_mode; union { struct { u_int16_t domain; u_int8_t bus; u_int8_t dev; u_int8_t func; u_int16_t dev_id; u_int16_t vend_id; u_int32_t class_id; u_int16_t subsys_id; u_int16_t subsys_vend_id; char cr_dev[512]; char conf_dev[512]; char** net_devs; // Null terminated array char** ib_devs; // Null terminated array char numa_node[4096]; // vf_info* virtfn_arr; u_int16_t virtfn_count; } pci; struct { u_int32_t mtusb_serial; u_int32_t TBD; } usb; struct { u_int32_t TBD; } ib; struct { char remote_device_name[512]; } remote; }; } dev_info; typedef enum { RA_MFPA = 0x9010, RA_MFBA = 0x9011, RA_MFBE = 0x9012, } reg_access_t; typedef struct dma_lib_hdl_t dma_lib_hdl; typedef enum { GEARBPX_OVER_MTUSB = 1, GEARBPX_OVER_I2C = 2, GEARBPX_OVER_SWITCH = 3, GEARBPXO_UNKNOWN_CONNECTION = 0 } gearbox_connection_t; typedef enum { MTCR_STATUS_UNKNOWN, MTCR_STATUS_TRUE, MTCR_STATUS_FALSE, } mtcr_status_e; typedef struct icmd_params_t { int icmd_opened; int took_semaphore; int ctrl_addr; int cmd_addr; u_int32_t max_cmd_size; int semaphore_addr; int static_cfg_not_done_addr; int static_cfg_not_done_offs; u_int32_t lock_key; int ib_semaphore_lock_supported; u_int64_t dma_pa; u_int32_t dma_size; int dma_icmd; mtcr_status_e icmd_ready; } icmd_params; typedef struct ctx_params_t { void* fw_cmd_context; void* fw_cmd_func; void* fw_cmd_dma; } ctx_params; typedef struct io_region_t { unsigned int start; unsigned int end; } io_region; typedef struct tools_hcr_params_t { int supp_cr_mbox; // 1: mbox supported , -1: mbox not supported } tools_hcr_params; // max_reg_size depends on the desired method operated on the register. // max_reg_size[] will give the relevant max_reg_size. // For example max_reg_size[MACCESS_REG_METHOD_GET] will give max_reg_size for Get() method. typedef struct access_reg_params_t { int max_reg_size[MACCESS_LAST_REG_METHOD]; } access_reg_params; typedef struct mfile_t mfile; struct mtcr_page_addresses { u_int64_t dma_address; u_int64_t virtual_address; }; struct page_list { // User space buffer page aligned. char* page_list; int page_amount; }; struct mtcr_page_info { unsigned int page_amount; unsigned long page_pointer_start; struct mtcr_page_addresses page_addresses_array[MAX_PAGES_SIZE]; }; struct mtcr_read_dword_from_config_space { unsigned int offset; unsigned int data; }; typedef void (*f_mpci_change)(mfile* mf); #define GEARBOX_ADDR_WIDTH 4 #define GEARBOX_SLAVE_ADDR 0x48 #define GB_MNGR_SLAVE_ADDR 0x33 typedef enum { GB_UNKNOWN = 0, GB_AMOS, GB_ABIR } gearbox_type; typedef struct gearbox_info_t { gearbox_type gb_type; u_int8_t is_gearbox; u_int8_t is_gb_mngr; int gearbox_index; int ilne_card_id; gearbox_connection_t gb_conn_type; char gb_mngr_full_name[DEV_NAME_SZ]; char gearbox_full_name[DEV_NAME_SZ]; unsigned char i2c_slave; u_int8_t addr_width; char device_orig_name[DEV_NAME_SZ]; char device_real_name[DEV_NAME_SZ]; u_int32_t data_req_addr; u_int32_t data_res_addr; } gearbox_info; typedef struct cables_info_t { int slave_addr_additional_offset; } cables_info; #define VSEC_MIN_SUPPORT_UL(mf) \ (((mf)->vsec_cap_mask & (1 << VCC_INITIALIZED)) && ((mf)->vsec_cap_mask & (1 << VCC_CRSPACE_SPACE_SUPPORTED)) && \ ((mf)->vsec_cap_mask & (1 << VCC_ICMD_EXT_SPACE_SUPPORTED)) && \ ((mf)->vsec_cap_mask & (1 << VCC_SEMAPHORE_SPACE_SUPPORTED))) // VSEC supported macro #define VSEC_SUPPORTED_UL(mf) ((mf)->vsec_supp && VSEC_MIN_SUPPORT_UL(mf)) #endif mstflint-4.26.0/include/mtcr_ul/mtcr.h0000644000175000017500000001631614522641732020120 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MTCR_H #define MTCR_H #ifdef __cplusplus extern "C" { #endif #include #include "mtcr_com_defs.h" #include "mtcr_mf.h" #if defined(MTCR_UL) && !defined(NO_INBAND) #include #endif #define SLV_ADDRS_NUM 128 typedef enum mtcr_access_method { MTCR_ACCESS_ERROR = MST_ERROR, MTCR_ACCESS_MEMORY = MST_PCI, MTCR_ACCESS_CONFIG = MST_PCICONF, MTCR_ACCESS_INBAND = MST_IB } mtcr_access_method_t; /* * Read 4 bytes, return number of succ. read bytes or -1 on failure */ int mread4(mfile* mf, unsigned int offset, u_int32_t* value); /* * Write 4 bytes, return number of succ. written bytes or -1 on failure */ int mwrite4(mfile* mf, unsigned int offset, u_int32_t value); int mread4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len); int mwrite4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len); int msw_reset(mfile* mf); int mhca_reset(mfile* mf); /* * Get list of MST (Mellanox Software Tools) devices. * Put all device names as null-terminated strings to buf. * * Return number of devices found or -1 if buf overflow */ int mdevices(char* buf, int len, int mask); /* * Get list of MST (Mellanox Software Tools) devices info records. * Return a dynamic allocated array of dev_info records. * len will be updated to hold the array length * */ dev_info* mdevices_info(int mask, int* len); /* * * Get list of MST (Mellanox Software Tools) devices info records. * * Return a dynamic allocated array of dev_info records. * * len will be updated to hold the array length * * Verbosity will decide whether to get all the Physical functions or not. */ dev_info* mdevices_info_v(int mask, int* len, int verbosity); void mdevice_info_destroy(dev_info* dev_info, int len); void mdevices_info_destroy(dev_info* dev_info, int len); int mget_mdevs_type(mfile* mf, u_int32_t* mtype); /* * Open Mellanox Software tools (mst) driver. Device type==INFINIHOST * Return valid mfile ptr or 0 on failure */ mfile* mopen(const char* name); mfile* mopend(const char* name, DType dtype); // mfile* mopen_fw_ctx(void *fw_cmd_context, void *fw_cmd_func, void *extra_data); mfile* mopen_adv(const char* name, MType mtype); /* * Close Mellanox driver * req. descriptor */ int mclose(mfile* mf); void get_pci_dev_rdma(mfile* mf, char* buf); unsigned char mset_i2c_slave(mfile* mf, unsigned char new_i2c_slave); int mget_mdevs_flags(mfile* mf, u_int32_t* devs_flags); int maccess_reg_mad(mfile* mf, u_int8_t* data); int mos_reg_access(mfile* mf, int reg_access, void* reg_data, u_int32_t cmd_type); int maccess_reg_cmdif(mfile* mf, reg_access_t reg_access, void* reg_data, u_int32_t cmd_type); int maccess_reg(mfile* mf, u_int16_t reg_id, maccess_reg_method_t reg_method, void* reg_data, u_int32_t reg_size, u_int32_t r_size_reg, // used when sending via icmd interface (how much data should be read back to // the user) u_int32_t w_size_reg, // used when sending via icmd interface (how much data should be written to // the scratchpad) if you dont know what you are doing then r_size_reg = // w_size_reg = your_register_size int* reg_status); int icmd_send_command(mfile* mf, int opcode, void* data, int data_size, int skip_write); int icmd_clear_semaphore(mfile* mf); int tools_cmdif_send_inline_cmd(mfile* mf, u_int64_t in_param, u_int64_t* out_param, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier); int tools_cmdif_send_mbox_command(mfile* mf, u_int32_t input_modifier, u_int16_t opcode, u_int8_t opcode_modifier, int data_offs_in_mbox, void* data, int data_size, int skip_write); int tools_cmdif_unlock_semaphore(mfile* mf); int mget_max_reg_size(mfile* mf, maccess_reg_method_t reg_method); int supports_reg_access_gmp(mfile* mf, maccess_reg_method_t reg_method); const char* m_err2str(MError status); int mread_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len); int mwrite_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len); int mget_vsec_supp(mfile* mf); int mget_addr_space(mfile* mf); int mset_addr_space(mfile* mf, int space); int mclear_pci_semaphore(const char* name); int mvpd_read4(mfile* mf, unsigned int offset, u_int8_t value[4]); int mvpd_write4(mfile* mf, unsigned int offset, u_int8_t value[4]); MTCR_API int MWRITE4_SEMAPHORE(mfile* mf, int offset, int value); MTCR_API int MREAD4_SEMAPHORE(mfile* mf, int offset, u_int32_t* ptr); void set_increase_poll_time(int new_value); int get_dma_pages(mfile* mf, struct mtcr_page_info* page_info, int page_amount); int release_dma_pages(mfile* mf, int page_amount); int read_dword_from_conf_space(mfile* mf, u_int32_t offset, u_int32_t* data); #ifdef __cplusplus } #endif #define DEV_MST_EXAMPLE1 "mlx4_0" #define DEV_MST_EXAMPLE2 "03:00.0" #endif mstflint-4.26.0/tools_crypto/0000755000175000017500000000000014522641740016442 5ustar tzafrirctzafrircmstflint-4.26.0/tools_crypto/tools_md5.c0000644000175000017500000000317014522641732020515 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include "tools_md5.h" u_int8_t* tools_md5(const u_int8_t* src, u_int32_t src_len, u_int8_t dst[16]) { return MD5((const unsigned char*)src, src_len, (unsigned char*)dst); } mstflint-4.26.0/tools_crypto/tools_md5.h0000644000175000017500000000324614522641732020526 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef TOOLS_MD5_H #define TOOLS_MD5_H #ifdef __cplusplus extern "C" { #endif #include u_int8_t* tools_md5(const u_int8_t* src, u_int32_t src_len, u_int8_t dst[16]); #ifdef __cplusplus } #endif #endif // TOOLS_MD5_H mstflint-4.26.0/tools_crypto/Makefile.am0000644000175000017500000000331114522641732020475 0ustar tzafrirctzafrirc#-- # Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = -I$(USER_DIR) -I$(USER_DIR)/common $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -Wall -W -DMST_UL -g $(COMPILER_FPIC) noinst_LIBRARIES = libtools_crypto.a libtools_crypto_a_SOURCES = tools_md5.c tools_md5.h mstflint-4.26.0/tools_crypto/Makefile.in0000644000175000017500000004720414522641740020516 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_crypto DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libtools_crypto_a_AR = $(AR) $(ARFLAGS) libtools_crypto_a_LIBADD = am_libtools_crypto_a_OBJECTS = tools_md5.$(OBJEXT) libtools_crypto_a_OBJECTS = $(am_libtools_crypto_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libtools_crypto_a_SOURCES) DIST_SOURCES = $(libtools_crypto_a_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = -I$(USER_DIR) -I$(USER_DIR)/common $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -Wall -W -DMST_UL -g $(COMPILER_FPIC) noinst_LIBRARIES = libtools_crypto.a libtools_crypto_a_SOURCES = tools_md5.c tools_md5.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_crypto/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_crypto/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libtools_crypto.a: $(libtools_crypto_a_OBJECTS) $(libtools_crypto_a_DEPENDENCIES) $(EXTRA_libtools_crypto_a_DEPENDENCIES) $(AM_V_at)-rm -f libtools_crypto.a $(AM_V_AR)$(libtools_crypto_a_AR) libtools_crypto.a $(libtools_crypto_a_OBJECTS) $(libtools_crypto_a_LIBADD) $(AM_V_at)$(RANLIB) libtools_crypto.a mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools_md5.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/configure.ac0000644000175000017500000005026514522641732016201 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. dnl Process this file with autoconf to produce a configure script. AC_INIT(mstflint, 4.26.0, akiselman-org@exchange.nvidia.com) AC_DEFINE_UNQUOTED([PROJECT], ["mstflint"], [Define the project name.]) AC_SUBST([PROJECT]) AC_DEFINE_UNQUOTED([VERSION], ["4.26.0"], [Define the project version.]) AC_SUBST([VERSION]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR([README]) AM_INIT_AUTOMAKE([foreign subdir-objects]) dnl Checks for programs AC_PROG_CC AC_PROG_CXX m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT AC_CONFIG_HEADERS( config.h ) # OPENSSL_VERSION_NUMBER < 0x100020bf #0x100020bfL = OpenSSL 1.0.2k - 26 Jan 2017 MIN_OPENSSL_VER="1.0.2k" AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ #include #if OPENSSL_VERSION_NUMBER < 0x100020bf ERROR: OPENSSL_VERSION_NUMBER version must be >= 0x100020bf ("OpenSSL 1.0.2k - 26 Jan 2017") #endif ]])], [OPENSSL_VERSION_VALID=yes], [OPENSSL_VERSION_VALID=no]) OS=$(uname -s) KERNEL_VER=`uname -r | egrep -E -o '[[0-9]]+\.[[0-9]]+' | head -1` OFED_VER=`ofed_info -s | egrep -E -o '[[0-9]]+\.[[0-9]]+' | head -1` OFED_EXIST=`ofed_info -s` OFED_NOT_EXIST="ofed_info: command not found" MTCR_CONF_DIR="" LDL="" default_en_inband="" default_en_rdmem="no" OFED_VERSION_CHK=0 KERNEL_BUILD_CHK=0 if test "x$OFED_EXIST" != "x$OFED_NOT_EXIST"; then if test $(echo $OFED_VER 5.6 | tr " " "\n" | sort -V | tail -n 1) == $OFED_VER ; then OFED_VERSION_CHK=1 fi fi AM_CONDITIONAL(OFED_BUILD,[test ${OFED_VERSION_CHK} = 1]) AC_SUBST(OFED_BUILD) #AC_MSG_NOTICE(Kernel: ${KERNEL_VER}) if test ${KERNEL_VER} \> "x5.13" ; then KERNEL_BUILD_CHK=1 fi AM_CONDITIONAL(KERNEL_BUILD,[test ${KERNEL_BUILD_CHK} = 1]) AC_SUBST(KERNEL_BUILD) LDFLAGS="${LDFLAGS} -L/usr/local/lib -L/usr/local/lib64 -L/usr/lib64" CXXFLAGS="${CXXFLAGS} -isystem /usr/local/include" if test "x$OS" = "xFreeBSD"; then AC_MSG_NOTICE(FreeBSD Build) MTCR_CONF_DIR="mtcr_freebsd" CFLAGS="${CFLAGS} -I /usr/local/include" else MTCR_CONF_DIR="mtcr_ul" LDL="-ldl" default_en_inband="yes" if test ${OFED_VERSION_CHK} -eq 1 ; then default_en_rdmem="yes" fi fi AC_SUBST(MTCR_CONF_DIR) AC_SUBST(LDL) AC_SUBST(default_en_inband) AM_CONDITIONAL(ARM64_BUILD, [ echo $build_cpu | grep -iq "aarch64" ]) AM_CONDITIONAL(X86_64_BUILD, [ echo $build_cpu | grep -iq "x86_64" ]) dnl Checks for headers AC_CHECK_HEADER(termios.h,[CXXFLAGS="${CXXFLAGS} -DHAVE_TERMIOS_H"]) TOOLS_CRYPTO="" MAD_IFC="" FW_MGR_TOOLS="" XZ_UTILS_DIR="" ADABE_TOOLS="" ADABE_DBS="" ADABE_DBS_EXTRA_DIST="" DPA="" COMPILER_FPIC="-fPIC" AC_SUBST(COMPILER_FPIC) AC_MSG_CHECKING(--enable-dc argument) AC_ARG_ENABLE(dc, [ --disable-dc Disable mstflint "dc" command. Eliminates zlib dependency], [enable_dc=$enableval], [enable_dc="yes"]) AC_MSG_RESULT($enable_dc) if test "$enable_dc" = "yes"; then AC_CHECK_HEADER(zlib.h,,AC_MSG_ERROR([cannot find zlib.h . Use --disable-dc to remove this dependency])) AC_CHECK_LIB(z, uncompress,, AC_MSG_ERROR([cannot find zlib uncompress() function. Use --disable-dc to remove this dependency])) fi # FWMANAGER AC_MSG_CHECKING(--enable-fw-mgr argument) AC_ARG_ENABLE(fw-mgr, [ --enable-fw-mgr Enable compiling mstfwmanager tool and features], [enable_fw_mgr="yes"], [enable_fw_mgr="no"]) AC_MSG_RESULT($enable_fw_mgr) if test "x$enable_fw_mgr" = "xyes"; then AC_CHECK_HEADER(curl/curl.h,,AC_MSG_ERROR([cannot find curl/curl.h . this header is needed for compiling fw manager tool])) AC_CHECK_HEADER(zlib.h,,AC_MSG_ERROR([cannot find zlib.h . this header is needed for compiling fw manager tool])) AC_CHECK_LIB(z, uncompress,, AC_MSG_ERROR([cannot find zlib uncompress() function.])) AC_CHECK_HEADER(lzma.h,,AC_MSG_ERROR([Cannot find lzma.h.])) CURL_INC_DIR=/usr/include/curl/ fi # mlxdpa AC_MSG_CHECKING(--enable-dpa argument) AC_ARG_ENABLE(dpa, [ --enable-dpa Enable compiling mstdpa tool (x86_64/aarch64 Linux only, no FreeBSD support], [enable_dpa="yes"], [enable_dpa="no"]) AC_MSG_RESULT($enable_dpa) # Adabe AC_MSG_CHECKING(--enable-adb-generic-tools argument) AC_ARG_ENABLE(adb-generic-tools, [ --enable-adb-generic-tools Enable compiling the following tools which depends on ADABE: mstreg and mstlink], [enable_adb_generic_tools="yes"], [enable_adb_generic_tools="no"]) AC_MSG_RESULT($enable_adb_generic_tools) if test "x$enable_adb_generic_tools" = "xyes"; then AC_LANG_PUSH([C++]) AC_CHECK_LIB([expat], XML_ParserCreate_MM, [AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false)], have_expat=false) if ! $have_expat; then AC_MSG_ERROR([Expat library is missing, please install expat xml parser to continue: expat-devel.] [http://expat.sourceforge.net/]) fi AC_LANG_POP([C++]) fi AC_SUBST(CURL_INC_DIR) AM_CONDITIONAL(ENABLE_FWMGR, [test "x$enable_fw_mgr" = "xyes" ]) AC_SUBST(ENABLE_FWMGR) AC_SUBST(ENABLE_FWMGR) # XML2 AC_MSG_CHECKING(--enable-xml2 argument) AC_ARG_ENABLE(xml2, [ --enable-xml2 Enable mstflint libxml2 dependent features], [enable_xml2="yes"], [enable_xml2="no"]) AC_MSG_RESULT($enable_xml2) if test [ "x$enable_xml2" = "xyes" ] || [ test "x$enable_fw_mgr" = "xyes" ]; then # XML2 checks AC_LANG_PUSH([C++]) if test "x$OS" = "xFreeBSD"; then CXXFLAGS="${CXXFLAGS} -isystem /usr/local/include/libxml2" else CXXFLAGS="${CXXFLAGS} -isystem /usr/include/libxml2" fi AC_CHECK_HEADER([libxml2/libxml/xpath.h],[],[AC_MSG_ERROR([libxml2: xpath.h is not found in the system PATH. make sure libxml2 headers are installed.])]) AC_CHECK_LIB(xml2, xmlDocDumpFormatMemoryEnc,, AC_MSG_ERROR([cannot find xml2 xmlDocDumpFormatMemoryEnc() function. Try re-installing the library...])) AC_LANG_POP([C++]) fi AM_CONDITIONAL(DISABLE_XML2, [test "x$enable_xml2" = "xno"]) AC_SUBST(DISABLE_XML2) AM_CONDITIONAL(ENABLE_DC, [test "x$enable_dc" = "xyes"]) AC_SUBST(ENABLE_DC) AC_MSG_CHECKING(--enable-inband argument) AC_ARG_ENABLE(inband, [ --disable-inband Disable inband access. Prevents FW update for Mellanox SwitchX and ConnectIB devices. Eliminates infiniband/mad.h dependency], [enable_inband=$enableval], [enable_inband=$default_en_inband]) AC_MSG_RESULT($enable_inband) if test "x$enable_inband" = "xyes"; then AC_CHECK_HEADER(infiniband/mad.h,,AC_MSG_ERROR([cannot find infiniband/mad.h . Use --disable-inband to remove this dependency])) MAD_IFC="mad_ifc" else CXXFLAGS="$CXXFLAGS -DNO_INBAND" CFLAGS="$CFLAGS -DNO_INBAND" fi AC_SUBST(MAD_IFC) AM_CONDITIONAL(ENABLE_INBAND, [test "x$enable_inband" = "xyes"]) AC_MSG_CHECKING(--enable-rdmem argument) AC_ARG_ENABLE(rdmem, [ --enable-rdmem Enable resource-dump memory mode. OFED libmlx5 and libibverbs dependency], [enable_rdmem=$enableval], [enable_rdmem=$default_en_rdmem]) AC_MSG_RESULT($enable_rdmem) if test "x$enable_rdmem" = "xyes"; then AC_CHECK_HEADERS(infiniband/mlx5dv.h infiniband/verbs.h,,AC_MSG_ERROR([cannot find infiniband/mlx5dv.h or infiniband/verbs.h . Use --disable-rdmem to remove this dependency])) else CXXFLAGS="$CXXFLAGS -DNO_RDMEM" CFLAGS="$CFLAGS -DNO_RDMEM" fi AM_CONDITIONAL(ENABLE_RDMEM, [test "x$enable_rdmem" = "xyes"]) AC_MSG_CHECKING(--enable-cs argument) AC_ARG_ENABLE(cs, [ --enable-cs Enable mstflint "checksum" command, dependent of openssl library], [enable_cs="yes"], [enable_cs="no"]) AC_MSG_RESULT($enable_cs) if test "x$enable_cs" = "xyes"; then AC_CHECK_HEADER(openssl/md5.h,,AC_MSG_ERROR([cannot find openssl/md5.h . remove --enable-cs to remove this dependency or install openssl])) TOOLS_CRYPTO="tools_crypto" fi AC_MSG_CHECKING(openssl argument) AC_ARG_ENABLE(openssl, [ --disable-openssl Disable functionalities that depend on the OpenSSL library], [enable_openssl=$enableval], [enable_openssl="yes"]) AC_MSG_RESULT($enable_openssl) if test "x$enable_openssl" = "xyes"; then # check version >= 1.1.1 (not implemented) AC_CHECK_HEADER(openssl/sha.h,,AC_MSG_ERROR([cannot find openssl/sha.h . remove --enable-openssl to remove this dependency or install openssl])) AC_CHECK_HEADER(openssl/rsa.h,,AC_MSG_ERROR([cannot find openssl/rsa.h . remove --enable-openssl to remove this dependency or install openssl])) AC_CHECK_HEADER(openssl/pem.h,,AC_MSG_ERROR([cannot find openssl/pem.h . remove --enable-openssl to remove this dependency or install openssl])) AC_CHECK_HEADER(openssl/bio.h,,AC_MSG_ERROR([cannot find openssl/bio.h . remove --enable-openssl to remove this dependency or install openssl])) AC_CHECK_HEADER(openssl/md5.h,,AC_MSG_ERROR([cannot find openssl/md5.h . remove --enable-openssl to remove this dependency or install openssl])) TOOLS_CRYPTO="tools_crypto mlxsign_lib" fi AC_MSG_CHECKING(--enable-all-static argument) AC_ARG_ENABLE([all_static], AS_HELP_STRING([--enable-all-static], [Enable creating none dynamic executables]), [enable_all_static="yes"], [enable_all_static="no"]) AC_MSG_RESULT($enable_all_static) AS_IF([test "x$enable_all_static" = "xyes"], [ if test "x$enable_dc" = "xyes"; then AC_MSG_ERROR([cannot enable all static with enable dc . add --disable-dc to remove dependency with dynamic zlib]) fi if test "x$enable_openssl" = "xyes"; then AC_MSG_ERROR([cannot enable all static with enable openssl . add --disable-openssl to remove dependency with dynamic openssl]) fi if test "x$enable_inband" = "xyes"; then AC_MSG_ERROR([cannot enable all static with enable inband . add --disable-inband to remove dependency with dynamic inband]) fi LDFLAGS="$LDFLAGS -all-static" CFLAGS="$CFLAGS -DSQLITE_OMIT_LOAD_EXTENSION=0 -DIBVSMAD_DLOPEN" ]) AC_SUBST(TOOLS_CRYPTO) AM_CONDITIONAL(ENABLE_OPENSSL, [test "x$enable_openssl" = "xyes" ]) AM_CONDITIONAL(ENABLE_CS, [test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes" ]) AC_ARG_ENABLE([static_libstdcpp], AS_HELP_STRING([--enable-static-libstdcpp], [Enable link static to libstdc++])) AS_IF([test "x$enable_static_libstdcpp" = "xyes" -o "x$enable_all_static" = "xyes" ], [ CXXFLAGS="$CXXFLAGS -static-libstdc++ -static-libgcc" ]) AC_ARG_ENABLE([dynamic_ld], AS_HELP_STRING([--enable-dynamic-ld], [Enable dynamic link to ld64.so])) AS_IF([test "x$enable_dynamic_ld" = "xyes"], [ LDFLAGS="$LDFLAGS -Wl,--dynamic-linker=/lib64/ld64.so.2" ]) AC_CHECK_HEADERS(iniparser.h, INIPARSER_SYSTEM_AVAILABLE="yes", INIPARSER_SYSTEM_AVAILABLE="no") if test "$INIPARSER_SYSTEM_AVAILABLE" = "yes"; then AC_SEARCH_LIBS([iniparser_load], [iniparser], [INIPARSER_SYSTEM_AVAILABLE="yes"],[ INIPARSER_SYSTEM_AVAILABLE="no" ]) fi if test "$INIPARSER_SYSTEM_AVAILABLE" = "no"; then INIPARSER_CFLAGS='-I$(top_srcdir)/ext_libs/iniParser' AC_SUBST(INIPARSER_CFLAGS) INIPARSER_LIBS='$(top_builddir)/ext_libs/iniParser/libiniparser.la' AC_SUBST(INIPARSER_LIBS) fi AM_CONDITIONAL([USE_LOCAL_INIPARSER], [test "$INIPARSER_SYSTEM_AVAILABLE" = no]) AS_IF([test "x$INIPARSER_SYSTEM_AVAILABLE" = "xyes" ], [ CXXFLAGS="$CXXFLAGS -DHAVE_INI_PARSER" ]) AC_SEARCH_LIBS([JSON], [jsoncpp], [JSON_SYSTEM_AVAILABLE="yes"],[ JSON_SYSTEM_AVAILABLE="no" JSON_CFLAGS='-I$(top_srcdir)/ext_libs/json' AC_SUBST(JSON_CFLAGS) JSON_LIBS='$(top_builddir)/ext_libs/json/libjson.la' AC_SUBST(JSON_LIBS) ]) AM_CONDITIONAL([USE_LOCAL_JSON], [test "$JSON_SYSTEM_AVAILABLE" = no]) AC_SEARCH_LIBS([mupCreateVar], [muparser], [MUPARSER_SYSTEM_AVAILABLE="yes"],[ MUPARSER_SYSTEM_AVAILABLE="no" MUPARSER_CFLAGS='-I$(top_srcdir)/ext_libs/muparser' AC_SUBST(MUPARSER_CFLAGS) MUPARSER_LIBS='$(top_builddir)/ext_libs/muparser/libmuparser.la' AC_SUBST(MUPARSER_LIBS) ]) AM_CONDITIONAL([USE_LOCAL_MUPARSER], [test "$MUPARSER_SYSTEM_AVAILABLE" = no]) AC_SEARCH_LIBS([sqlite3_initialize], [sqlite3], [SQLITE_SYSTEM_AVAILABLE="yes"],[ SQLITE_SYSTEM_AVAILABLE="no" SQLITE_CFLAGS='-I$(top_srcdir)/ext_libs/sqlite' AC_SUBST(SQLITE_CFLAGS) SQLITE_LIBS='$(top_builddir)/ext_libs/sqlite/libsqlite3.la' AC_SUBST(SQLITE_LIBS) ]) AM_CONDITIONAL([USE_LOCAL_SQLITE], [test "$SQLITE_SYSTEM_AVAILABLE" = no]) CFLAGS="$CFLAGS -DMST_UL" CXXFLAGS="$CXXFLAGS -DMST_UL" CCVER=`${CC} --version | grep ${CC} | grep -E -o "( )[[4-9]]\.[[0-9]]\.[[0-9]]" | head -1` AC_MSG_NOTICE(Compiler: ${CC}; version: ${CCVER};) if test ${CCVER} \> 5.0.0 ; then CXXFLAGS="$CXXFLAGS -std=c++14" CFLAGS="$CFLAGS -fgnu89-inline" elif test ${CCVER} \> 4.7.2 ; then CXXFLAGS="$CXXFLAGS -std=c++11" fi AM_CFLAGS="-Wall" AM_CXXFLAGS="-Wall" AC_CONFIG_FILES( mstflint.spec ) # We save and restore CFLAGS, after adding Wall and Werror # because AX_CHECK_COMPILE_FLAG doesn't work properly without it # C related ignores OLD_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Wall -Werror" AX_CHECK_COMPILE_FLAG([-Wno-format-overflow], [CFLAGS="$CFLAGS -Wno-format-overflow"], [], []) AX_CHECK_COMPILE_FLAG([-Wno-implicit-fallthrough], [CFLAGS="$CFLAGS -Wno-implicit-fallthrough"], [], []) AX_CHECK_COMPILE_FLAG([-Wno-cast-function-type], [CFLAGS="$CFLAGS -Wno-cast-function-type"], [], []) CFLAGS="$OLD_CFLAGS" # C++ related ignores OLD_CXXFLAGS="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -Wall -Werror" AC_LANG_PUSH([C++]) AX_CHECK_COMPILE_FLAG([-Wno-implicit-fallthrough], [CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough"], [], []) AX_CHECK_COMPILE_FLAG([-Wno-format-overflow], [CXXFLAGS="$CXXFLAGS -Wno-format-overflow"], [], []) AX_CHECK_COMPILE_FLAG([-Wno-cast-function-type], [CXXFLAGS="$CXXFLAGS -Wno-cast-function-type"], [], []) AX_CHECK_COMPILE_FLAG([-Wno-class-memaccess], [CXXFLAGS="$CXXFLAGS -Wno-class-memaccess"], [], []) AC_LANG_POP([C++]) CXXFLAGS="$OLD_CXXFLAGS" TOOLS_BUILD_TIME=`date +"%b %d %Y\, %H:%M:%S"` if test "x$SOURCE_DATE_EPOCH" != "x"; then TOOLS_BUILD_TIME=`LC_ALL=C date -u -d @$SOURCE_DATE_EPOCH +"%b %d %Y\, %H:%M:%S"` fi AC_SUBST(TOOLS_BUILD_TIME) AC_ARG_VAR(MSTFLINT_VERSION_STR, The MSTFLINT version) if test x"$MSTFLINT_VERSION_STR" == x; then MSTFLINT_VERSION_STR="$PACKAGE_STRING" fi AC_SUBST(MSTFLINT_VERSION_STR) AC_DEFINE([MSTFLINT_VERSION_STR], [], [The MSTFLINT version]) AC_DEFINE_UNQUOTED(MSTFLINT_VERSION_STR, "$MSTFLINT_VERSION_STR") AS_IF([test "x$enable_cs" = "xyes" || test "x$enable_openssl" = "xyes"], [ AC_CONFIG_FILES(tools_crypto/Makefile) ]) AS_IF([test "x$enable_openssl" = "xyes"], [ AS_IF(test x"$OPENSSL_VERSION_VALID" = "xyes", [AC_CONFIG_FILES(mlxsign_lib/Makefile)], [AC_MSG_ERROR([Required OpenSSL version >= $MIN_OPENSSL_VER (or use --disable-openssl)])]) ]) if [ test "x$enable_openssl" = "xno" ] && \ [ test "x$enable_fw_mgr" = "xyes" ] ; then AC_MSG_ERROR([--enable-fw-mgr cannot be used with --disabled-openssl.]) fi AS_IF([test "x$enable_fw_mgr" = "xyes"], [ AC_CONFIG_FILES(mlxfwupdate/Makefile) AC_CONFIG_FILES(ext_libs/iniParser/Makefile) AC_CONFIG_FILES(mlxarchive/Makefile) FW_MGR_TOOLS="mlxfwupdate mlxarchive" ]) AC_SUBST(FW_MGR_TOOLS) AS_IF([test "x$enable_dpa" = "xyes"], [ AC_CONFIG_FILES(mlxdpa/Makefile) DPA="mlxdpa" ]) AM_CONDITIONAL(ENABLE_DPA, [test "x$enable_dpa" = "xyes" ]) AC_SUBST(DPA) AS_IF([test "x$enable_adb_generic_tools" = "xyes"], [ AC_CONFIG_FILES(adb_parser/Makefile) AC_CONFIG_FILES(tools_layouts/adb/Makefile) AC_CONFIG_FILES(tools_layouts/adb/prm/Makefile) AC_CONFIG_FILES(tools_layouts/adb/prm/hca/Makefile) AC_CONFIG_FILES(tools_layouts/adb/prm/hca/ext/Makefile) AC_CONFIG_FILES(tools_layouts/adb/prm/switch/Makefile) AC_CONFIG_FILES(tools_layouts/adb/prm/switch/ext/Makefile) AC_CONFIG_FILES(mlxreg/Makefile) AC_CONFIG_FILES(mlxreg/mlxreg_lib/Makefile) AC_CONFIG_FILES(mlxlink/Makefile) AC_CONFIG_FILES(mlxlink/modules/Makefile) AC_CONFIG_FILES(mlxlink/modules/printutil/Makefile) ADABE_TOOLS="adb_parser mlxreg mlxlink" ADABE_DBS="adb" ADABE_DBS_EXTRA_DIST="adb/prm/hca/ext/*.adb adb/prm/switch/ext/*.adb" ]) AS_IF([test "x$enable_fw_mgr" = "xyes" || test "x$enable_adb_generic_tools" = "xyes"], [ AC_CONFIG_FILES(xz_utils/Makefile) XZ_UTILS_DIR="xz_utils" ]) AC_SUBST(ADABE_TOOLS) AC_SUBST(ADABE_DBS) AC_SUBST(ADABE_DBS_EXTRA_DIST) AC_SUBST(XZ_UTILS_DIR) if test "x$OS" = "xFreeBSD"; then AC_MSG_NOTICE(FreeBSD MTCR) AC_CONFIG_FILES(mtcr_freebsd/Makefile) else AC_MSG_NOTICE(Linux MTCR) AC_CONFIG_FILES(mtcr_ul/Makefile) fi AM_CONDITIONAL(LINUX_BUILD, [test "x$OS" = "xLinux"]) AC_SUBST(LINUX_BUILD) AC_SUBST(LINUX_KERNEL_INCLUDE) # Certain older compilers may not fully support std::regex. # Signatuire is: the code compiles without issues, then it # crashes during runtime with: # terminate called after throwing an instance of 'std::regex_error' # what(): regex_error # For those we resort to using GNU C regex as a fallback. AC_MSG_CHECKING([for std::regex compatibility]) AC_LANG_PUSH([C++]) AC_RUN_IFELSE([ AC_LANG_PROGRAM( [[#include ]], [[std::regex e("[a-z]");]] ) ],[ AC_MSG_RESULT([yes]) ],[ AC_MSG_RESULT([no]) AC_MSG_NOTICE([std::regex support appears to be incomplete, fallback to GNU C regex]) AC_DEFINE([USE_STDLIB_REGEX], [1], [Whether to use GNU C regex]) ]) AC_LANG_POP([C++]) # we assume that project root may have a tools_git_sha TOOLS_GIT_SHA=$(cd $(dirname "$0"); ./eval_git_sha.sh) AC_SUBST([TOOLS_GIT_SHA]) AC_MSG_NOTICE(TOOLS_GIT_SHA $TOOLS_GIT_SHA) AC_CONFIG_FILES([debian/mstflint.install]) AC_OUTPUT( \ Makefile \ cmdif/Makefile \ cmdparser/Makefile \ common/Makefile \ dev_mgt/Makefile \ ext_libs/Makefile \ ext_libs/json/Makefile \ ext_libs/minixz/Makefile \ ext_libs/muparser/Makefile \ ext_libs/sqlite/Makefile \ flint/Makefile \ fw_comps_mgr/Makefile \ libmfa/Makefile \ mad_ifc/Makefile \ mflash/Makefile \ mft_utils/Makefile \ mft_utils/hsmclient/Makefile \ mlxconfig/Makefile \ mlxconfig/mlxconfig_dbs/Makefile \ mlxfwops/Makefile \ mlxfwops/lib/Makefile \ mstdump/Makefile \ mstdump/crd_lib/Makefile \ mstdump/crd_main/Makefile \ mstdump/mstdump_dbs/Makefile \ mtcr_py/Makefile \ mvpd/Makefile \ pldmlib/Makefile \ reg_access/Makefile \ resourcetools/Makefile \ resourcetools/resourcedump_lib/Makefile \ resourcetools/resourcedump_lib/src/Makefile \ resourcetools/resourcedump_lib/src/commands/Makefile \ resourcetools/resourcedump_lib/src/common/Makefile \ resourcetools/resourcedump_lib/src/fetchers/Makefile \ resourcetools/resourcedump_lib/src/filters/Makefile \ resourcetools/resourcedump_lib/src/sdk/Makefile \ small_utils/Makefile \ small_utils/mlxfwresetlib/Makefile \ tools_layouts/Makefile \ tools_res_mgmt/Makefile \ tracers/Makefile \ tracers/fwtrace/Makefile \ ) mstflint-4.26.0/mflash/0000755000175000017500000000000014522641737015162 5ustar tzafrirctzafrircmstflint-4.26.0/mflash/mflash_dev_capability.h0000644000175000017500000000635714522641732021652 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * mflash_dev_capabillity.h * * Created on: Jul 8, 2018 * Author: idanme */ #ifndef USER_MFLASH_MFLASH_DEV_CAPABILITY_H_ #define USER_MFLASH_MFLASH_DEV_CAPABILITY_H_ #include "mflash_pack_layer.h" #ifndef UEFI_BUILD #define FLASH_DPRINTF(args) \ do \ { \ char* reacDebug = getenv("MFT_FLASH_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("[MFT_FLASH_DEBUG]: -D- "); \ printf args; \ fflush(stdout); \ } \ } while (0) #else #define FLASH_DPRINTF(...) #endif #define DPRINTF(args) \ do \ { \ char* reacDebug = getenv("FLASH_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("[FLASH_DEBUG]: -D- "); \ printf args; \ fflush(stdout); \ } \ } while (0) // When (*status != MFE_OK) return value is undefined int is_four_byte_address_needed(mflash* mfl, MfError* status); int is_flash_enable_needed(mflash* mfl, MfError* status); int is_icmdif_supported(mflash* mfl, MfError* status); FlashGen get_flash_gen(mflash* mfl); #endif /* USER_MFLASH_MFLASH_DEV_CAPABILITY_H_ */ mstflint-4.26.0/mflash/mflash_pack_layer.h0000644000175000017500000004014214522641732020773 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mflash_inband.h * * Created on: Jul 6, 2011 * Author: mohammad */ #ifndef MFLASH_COMMON_H_ #define MFLASH_COMMON_H_ #include "mflash_types.h" #include "mflash_common_structs.h" #include "reg_access.h" #include "dev_mgt/tools_dev_types.h" #ifndef UEFI_BUILD #include #else typedef void* trm_ctx; #endif // TODO: use: (int)log2((float)num) #define NEAREST_POW2(num) \ (num) < (256) ? \ ((num) < (128) ? \ ((num) < (64) ? ((num) < (32) ? ((num) < (16) ? ((num) < (8) ? (4) : (8)) : (16)) : (32)) : (64)) : \ (128)) : \ (256) #ifndef CHECK_RC #define CHECK_RC(rc) \ do \ { \ if (rc) \ { \ return rc; \ } \ } while (0) #endif #ifndef ARR_SIZE #define ARR_SIZE(arr) sizeof(arr) / sizeof(arr[0]) #endif #ifndef IRISC #define MFLASH_ERR_STR_SIZE 1024 #else #define MFLASH_ERR_STR_SIZE 4 #endif #define CX3_PRO_HW_ID 0x1F7 #define CX3_HW_ID 0x1F5 #define CX4_HW_ID 0x209 #define CX4LX_HW_ID 0x20b #define CX5_HW_ID 0x20d #define CX6_HW_ID 0x20f #define CX7_HW_ID 0x218 #define CX8_HW_ID 0x21e #define CX6DX_HW_ID 0x212 #define CX6LX_HW_ID 0x216 #define BLUEFIELD_HW_ID 0x211 #define BLUEFIELD2_HW_ID 0x214 #define BLUEFIELD3_HW_ID 0x21c #define BLUEFIELD4_HW_ID 0x220 #define CONNECT_IB_HW_ID 0x1FF #define SWITCH_IB_HW_ID 0x247 #define SPECTRUM_HW_ID 0x249 #define SWITCH_IB2_HW_ID 0x24b #define QUANTUM_HW_ID 0x24d #define SPECTRUM2_HW_ID 0x24e #define SPECTRUM3_HW_ID 0x250 #define QUANTUM2_HW_ID 0x257 #define QUANTUM3_HW_ID 0x25b #define SPECTRUM4_HW_ID 0x254 #define INBAND_MAX_REG_SIZE 44 /* * Device IDs Macros: */ #define IS_CONNECTX_4TH_GEN_FAMILY(dev_id) (((dev_id) == CX3_HW_ID) || ((dev_id) == CX3_PRO_HW_ID)) #define IS_SIB(dev_id) ((dev_id) == SWITCH_IB_HW_ID) #define IS_SIB2(dev_id) ((dev_id) == SWITCH_IB2_HW_ID) #define IS_SEN(dev_id) ((dev_id) == SPECTRUM_HW_ID) #define IS_SPECTRUM2(dev_id) ((dev_id) == SPECTRUM2_HW_ID) #define IS_CONNECT_IB(dev_id) ((dev_id) == CONNECT_IB_HW_ID) #define IS_CONNECTX4(dev_id) ((dev_id) == CX4_HW_ID) #define IS_CONNECTX4LX(dev_id) ((dev_id) == CX4LX_HW_ID) #define IS_CONNECTX5(dev_id) ((dev_id) == CX5_HW_ID) #define IS_CONNECTX7(dev_id) ((dev_id) == CX7_HW_ID) #define IS_CONNECTX8(dev_id) ((dev_id) == CX8_HW_ID) #define IS_CONNECTX6(dev_id) ((dev_id) == CX6_HW_ID) #define IS_CONNECTX6DX(dev_id) ((dev_id) == CX6DX_HW_ID) #define IS_CONNECTX6LX(dev_id) ((dev_id) == CX6LX_HW_ID) #define IS_BLUEFIELD(dev_id) ((dev_id) == BLUEFIELD_HW_ID) #define IS_QUANTUM(dev_id) ((dev_id) == QUANTUM_HW_ID) #define IS_SPECTRUM(dev_id) ((dev_id) == SPECTRUM_HW_ID) #define IS_BLUEFEILD(dev_id) ((dev_id) == BLUEFIELD_HW_ID) #define IS_BLUEFEILD2(dev_id) ((dev_id) == BLUEFIELD2_HW_ID) #define IS_BLUEFEILD3(dev_id) ((dev_id) == BLUEFIELD3_HW_ID) #define IS_BLUEFEILD4(dev_id) ((dev_id) == BLUEFIELD4_HW_ID) #define IS_QUANTUM2(dev_id) ((dev_id) == QUANTUM2_HW_ID) #define IS_QUANTUM3(dev_id) ((dev_id) == QUANTUM3_HW_ID) #define IS_SPECTRUM4(dev_id) ((dev_id) == SPECTRUM4_HW_ID) #define HAS_TOOLS_CMDIF(dev_id) ((((dev_id) == CX3_HW_ID) || ((dev_id) == CX3_PRO_HW_ID))) typedef int (*f_mf_lock)(mflash* mfl, int lock_state); typedef int (*f_mf_set_bank)(mflash* mfl, u_int32_t bank); typedef int (*f_mf_read)(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data, bool verbose); typedef int (*f_mf_write)(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data); typedef int (*f_mf_erase_sect)(mflash* mfl, u_int32_t addr); typedef int (*f_mf_reset)(mflash* mfl); typedef int (*f_st_spi_status)(mflash* mfl, u_int8_t op_type, u_int8_t* status); typedef int (*f_mf_get_info)(mflash* mfl, flash_info_t* f_info, int* log2size, u_int8_t* no_flash); typedef int (*f_mf_get_jedec_id)(mflash* mfl, u_int32_t* jedec_id); /* * flash parameters methods get/set */ typedef int (*f_mf_get_quad_en)(mflash* mfl, u_int8_t* quad_en); typedef int (*f_mf_set_quad_en)(mflash* mfl, u_int8_t quad_en); typedef int (*f_mf_get_driver_strength)(mflash* mfl, u_int8_t* driver_strength); typedef int (*f_mf_set_driver_strength)(mflash* mfl, u_int8_t driver_strength); typedef int (*f_mf_get_write_protect)(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); typedef int (*f_mf_set_write_protect)(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); typedef int (*f_mf_get_dummy_cycles)(mflash* mfl, u_int8_t* num_of_cycles); typedef int (*f_mf_set_dummy_cycles)(mflash* mfl, u_int8_t num_of_cycles); typedef int (*f_cntx_st_spi_erase_sect)(mflash* mfl, u_int32_t addr); typedef int (*f_cntx_int_spi_get_status_data)(mflash* mfl, u_int8_t op_type, u_int32_t* status, u_int8_t data_num); typedef int (*f_cntx_st_spi_block_write_ex)(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, u_int32_t total_size); typedef int (*f_cntx_sst_spi_block_write_ex)(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data); typedef int (*f_cntx_st_spi_block_read_ex)(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, bool verbose); typedef int (*f_cntx_spi_write_status_reg)(mflash* mfl, u_int32_t status_reg, u_int8_t write_cmd, u_int8_t bytes_num); typedef enum FlashGen { LEGACY_FLASH = 0, SIX_GEN_FLASH, SEVEN_GEN_FLASH } FlashGen; ///////////////////////////////////////////// // // MFlash struct // ///////////////////////////////////////////// struct mflash { #ifndef IRISC mfile* mf; #endif // Functions: f_mf_lock f_lock; f_mf_set_bank f_set_bank; f_mf_get_info f_get_info; f_mf_get_jedec_id f_get_jedec_id; f_mf_read f_read; f_mf_write f_write; f_mf_write f_write_blk; // write and write_block have the same signateure, but theyr'e not the same func ! f_mf_read f_read_blk; // read and read_block have the same signateure, but theyr'e not the same func ! f_mf_erase_sect f_erase_sect; f_mf_reset f_reset; f_mf_get_quad_en f_get_quad_en; f_mf_set_quad_en f_set_quad_en; f_mf_get_driver_strength f_get_driver_strength; f_mf_set_driver_strength f_set_driver_strength; f_mf_get_write_protect f_get_write_protect; f_mf_set_write_protect f_set_write_protect; f_mf_get_dummy_cycles f_get_dummy_cycles; f_mf_set_dummy_cycles f_set_dummy_cycles; // Relevant for SPI flash (InfiniHostIIILx, ConnectX) only f_st_spi_status f_spi_status; f_cntx_st_spi_erase_sect f_st_spi_erase_sect; f_cntx_int_spi_get_status_data f_int_spi_get_status_data; f_cntx_st_spi_block_write_ex f_st_spi_block_write_ex; f_cntx_sst_spi_block_write_ex f_sst_spi_block_write_ex; f_cntx_st_spi_block_read_ex f_st_spi_block_read_ex; f_cntx_spi_write_status_reg f_spi_write_status_reg; // when set(1) we support modification of the flash status register u_int8_t supp_sr_mod; int curr_bank; int is_locked; int flash_prog_locked; int unlock_flash_prog_allowed; // if writer_lock is set, semaphore should be freed only in mf_close()/disable_hw_access() int writer_lock; flash_attr attr; int opts[MFO_LAST]; char last_err_str[MFLASH_ERR_STR_SIZE]; u_int8_t access_type; // 0 = mfile , 1 = uefi trm_ctx trm; dm_dev_id_t dm_dev_id; int cputUtilizationApplied; int cpuPercent; u_int32_t cache_repacement_en_addr; u_int32_t gcm_en_addr; u_int32_t gw_addr_field_addr; u_int32_t gw_data_field_addr; u_int32_t gw_cmd_register_addr; u_int32_t cache_rep_offset_field_addr; u_int32_t cache_rep_cmd_field_addr; // Below fields are initialized and used for mflash_new_gw.c only u_int32_t gw_rw_bit_offset; u_int32_t gw_cmd_phase_bit_offset; u_int32_t gw_addr_phase_bit_offset; u_int32_t gw_data_phase_bit_offset; u_int32_t gw_cs_hold_bit_offset; u_int32_t gw_data_size_bit_offset; u_int32_t gw_data_size_bit_len; u_int32_t gw_chip_select_bit_offset; u_int32_t gw_addr_size_bit_offset; u_int32_t gw_cmd_bit_offset; u_int32_t gw_cmd_bit_len; u_int32_t gw_busy_bit_offset; u_int32_t gw_data_size_register_addr; // Relevant to 7th gen flash GW // Frequency related fields relevant for CX7 and BF3 bool is_freq_handle_required; bool is_freq_changed; u_int32_t core_clocks_per_usec_addr; u_int32_t flash_div_addr; u_int32_t orig_flash_div_reg; // Whole register, not flash_div field only u_int32_t core_clocks_per_usec; }; typedef struct mfpa_command_args { u_int8_t flash_bank; // IN u_int32_t boot_address; // IN/OUT int num_of_banks; // OUT u_int32_t jedec_id; // OUT u_int32_t fw_flash_sector_sz; // OUT u_int8_t supp_sub_and_sector_erase; // OUT u_int8_t supp_sector_write_prot; // OUT u_int8_t supp_sub_sector_write_prot; // OUT u_int8_t supp_quad_en; // OUT u_int8_t supp_dummy_cycles; // OUT } mfpa_command_args; enum AccessTypeByMfile { ATBM_NO = 0, ATBM_INBAND, ATBM_MLNXOS_CMDIF, ATBM_ICMD, ATBM_TOOLS_CMDIF, }; enum CntxCrConstants { HCR_FLASH_CMD = 0xf0400, HCR_FLASH_ADDR = 0xf0404, HCR_FLASH_CACHE_REPLACEMENT_OFFSET = 0xf0408, HCR_FLASH_CACHE_REPLACEMENT_CMD = 0xf040c, HCR_FLASH_DATA = 0xf0410, HCR_CACHE_REPLACEMNT_EN_ADDR = 0xf0420, // Gearbox flash GW registers addresses HCR_FLASH_GEARBOX_CMD = 0x2000, HCR_FLASH_GEARBOX_ADDR = 0x2004, HCR_FLASH_GEARBOX_CACHE_REPLACEMENT_OFFSET = 0x2008, HCR_FLASH_GEARBOX_DATA = 0x2010, HCR_FLASH_GEARBOX_CACHE_REPLACEMENT_CMD = 0x200c, HCR_FLASH_GEARBOX_CACHE_REPLACEMENT_EN_ADDR = 0x2020, // 6th gen flash GW registers addresses HCR_NEW_GW_FLASH_ADDR = 0xf0420, HCR_NEW_GW_CACHE_REPLACEMNT_EN_ADDR = 0xf0480, HCR_NEW_GW_GCM_EN_ADDR = 0xf0440, // 7th gen flash GW registers addresses // QTM3: HCR_7GEN_QTM3_FLASH_CMD = 0x100000, HCR_7GEN_QTM3_FLASH_DATA = 0x100010, HCR_7GEN_QTM3_GCM_EN_ADDR = 0x100028, HCR_7GEN_QTM3_FLASH_ADDR = 0x10003c, HCR_7GEN_QTM3_FLASH_DATA_SIZE = 0x100044, // ARCUSE: HCR_7GEN_ARCUSE_FLASH_CMD = 0x101000, HCR_7GEN_ARCUSE_FLASH_DATA = 0x101010, HCR_7GEN_ARCUSE_GCM_EN_ADDR = 0x101028, HCR_7GEN_ARCUSE_FLASH_ADDR = 0x10103c, HCR_7GEN_ARCUSE_FLASH_DATA_SIZE = 0x101044, // CX7: HCR_7GEN_CX7_FLASH_CMD = 0x8a0000, HCR_7GEN_CX7_FLASH_DATA = 0x8a0010, HCR_7GEN_CX7_GCM_EN_ADDR = 0x8a0028, HCR_7GEN_CX7_FLASH_ADDR = 0x8a003c, HCR_7GEN_CX7_FLASH_DATA_SIZE = 0x8a0044, // Flash GW fields offsets and lengths HBO_READ_OP = 0, HBO_CMD_PHASE = 2, HBO_ADDR_PHASE = 3, HBS_DATA_SIZE = 3, HBO_DATA_PHASE = 4, HBO_DATA_SIZE = 8, HBO_CS_HOLD = 5, HBO_CHIP_SELECT = 11, HBO_FLASH_ENABLE = 13, // In old devices HBO_ADDR_SIZE = 14, HBO_CMD = 16, HBS_CMD = 8, HBO_BUSY = 30, HBO_LOCK = 31, // 6th gen flash GW fields offsets and lengths HBS_NEW_GW_DATA_SIZE = 5, HBO_NEW_GW_CHIP_SELECT = 13, HBO_NEW_GW_ADDR_SIZE = 15, // 7th gen flash GW fields offsets and lengths HBO_7GEN_RW = 5, HBO_7GEN_CMD_PHASE = 7, HBO_7GEN_ADDR_PHASE = 8, HBO_7GEN_DATA_PHASE = 9, HBO_7GEN_CS_HOLD = 10, HBO_7GEN_CHIP_SELECT = 13, HBO_7GEN_ADDR_SIZE = 15, HBO_7GEN_CMD = 16, HBS_7GEN_CMD = 8, HBO_7GEN_BUSY = 30, // GPIOs HCR_GPIO_LOCK = 0xf0048, HCR_GPIO_LOCK_VAL = 0xd42f, HCR_GPIO_DATA_OUT = 0xf0040, HCR_GPIO_MODE0 = 0xf0050, HCR_GPIO_MODE1 = 0xf004c, HBO_GPIO_CS = 25, HBS_GPIO_CS = 4 }; #define WRITE_CHECK_ALIGN(addr, block_write, size) \ { \ if (addr & ((u_int32_t)block_write - 1)) \ { \ return MFE_BAD_ALIGN; \ } \ if (size & ((u_int32_t)block_write - 1)) \ { \ return MFE_BAD_ALIGN; \ } \ } #define COM_CHECK_ALIGN(flash_addr, size) \ { \ if (flash_addr & (size - 1)) \ { \ return MFE_BAD_ALIGN; \ } \ } //////////////////////////////////// SX FLASH functions //////////////////////////////////// typedef u_int32_t (*f_reg_pack)(void* data_to_pack, u_int8_t* packed_buffer); typedef void (*f_reg_unpack)(void* unpacked_data, u_int8_t* buffer_to_unpack); typedef void (*f_reg_dump)(void* data_to_print, FILE* out_port); int sx_st_block_access(mfile* mf, u_int32_t flash_addr, u_int8_t bank, u_int32_t size, u_int8_t* data, reg_access_method_t method); int common_erase_sector(mfile* mf, u_int32_t addr, u_int8_t flash_bank, u_int32_t erase_size); int run_mfpa_command(mfile* mf, u_int8_t access_cmd, mfpa_command_args* mfpa_args); int com_get_jedec(mfile* mf, mfpa_command_args* mfpa_args); int get_num_of_banks(mfile* mf); int get_info_from_jededc_id(u_int32_t jededc_id, u_int8_t* vendor, u_int8_t* type, u_int8_t* capacity); int get_type_index_by_vendor_type_density(u_int8_t vendor, u_int8_t type, u_int8_t density, unsigned* type_index); int get_log2size_by_vendor_type_density(u_int8_t vendor, u_int8_t type, u_int8_t capacity, int* log2size); int get_max_reg_size(mfile* mf); int set_bank(mflash* mfl, u_int32_t addr); int set_bank_int(mflash* mfl, int bank_num); int get_bank_int(mflash* mfl); int get_flash_offset(u_int32_t addr, int log2_bank_size, u_int32_t* flash_addr_p); int mfl_get_bank_info(mflash* mfl, u_int32_t addr, u_int32_t* flash_off_p, int* bank_p); MfError MError2MfError(MError rc); #endif /* MFLASH_COMMON_H_ */ mstflint-4.26.0/mflash/mflash.h0000644000175000017500000002342414522641732016605 0ustar tzafrirctzafrirc/* * * mflash.h - Mellanox Technilogies LTD. Flash access lib heared file * ================================================================== * * Copyright (c) 2005 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id: $ * */ #ifndef MFLASH_H #define MFLASH_H #include #include #include "dev_mgt/tools_dev_types.h" #include "mflash_types.h" #include "flash_int_defs.h" #include "mflash_common_structs.h" #include // Timer definitions (needed when polling flash semaphore in windows) #ifndef __WIN__ #define TIMER_INIT(...) #define TIMER_STOP(...) #define TIMER_PRINT(...) #define TIMER_GET_DIFF(...) #define TIMER_INIT_AND_START(...) #define TIMER_STOP_GET_DIFF(...) #define TIMER_CHECK(...) #else #include #define TIMER_INIT() \ SYSTEMTIME _start, _end; \ int _diff_in_sec, _diff_in_ms; \ (void)_diff_in_sec; \ (void)_diff_in_ms #define TIMER_START() GetSystemTime(&_start) #define TIMER_STOP() GetSystemTime(&_end) #define TIMER_PRINT(...) \ _diff_in_sec = _end.wSecond - _start.wSecond; \ _diff_in_ms = (_end.wMilliseconds - _start.wMilliseconds; \ printf(__VA_ARGS__); \ printf("it took %d sec %d and ms to run.\n", _diff_in_sec, _diff_in_ms) #define TIMER_GET_DIFF(diff_in_sec, diff_in_ms) \ diff_in_sec = _end.wSecond - _start.wSecond; \ diff_in_ms = _end.wMilliseconds - _start.wMilliseconds #define TIMER_INIT_AND_START() \ TIMER_INIT(); \ TIMER_START() #define TIMER_STOP_GET_DIFF(diff_in_sec, diff_in_ms) \ TIMER_STOP(); \ TIMER_GET_DIFF(diff_in_sec, diff_in_ms) #define TIMER_CHECK(max_sec, max_ms, action_on_tout) \ TIMER_STOP(); \ _diff_in_sec = _end.wSecond - _start.wSecond; \ _diff_in_ms = _end.wMilliseconds - _start.wMilliseconds; \ if (_diff_in_sec >= max_sec && _diff_in_ms > max_ms) \ { \ action_on_tout; \ } #endif #ifdef __cplusplus #define EXTERN_C_START \ extern "C" \ { #define EXTERN_C_END } #else #define EXTERN_C_START #define EXTERN_C_END #endif EXTERN_C_START #ifndef UEFI_BUILD #define FLASH_ACCESS_DPRINTF(args) \ do \ { \ char* reacDebug = getenv("FLASH_ACCESS_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("[FLASH_ACCESS_DEBUG]: -D- "); \ printf args; \ fflush(stdout); \ } \ } while (0) #else #define FLASH_ACCESS_DPRINTF(...) #endif #define MAX_FLASH_FREQ 90 // MHz typedef struct gpio_toggle_conf_cx6 { u_int32_t lock_addr; u_int32_t lock_val; u_int32_t functional_enable0_addr; u_int32_t functional_enable1_addr; u_int32_t mode1_set_addr; u_int32_t mode0_set_addr; u_int32_t dataset_addr; } gpio_toggle_conf_cx6; typedef struct gpio_toggle_conf_cx7 { u_int32_t select_synced_data_out_addr; u_int32_t fw_control_set_addr; u_int32_t hw_data_in_addr; u_int32_t fw_output_enable_set_addr; u_int32_t fw_data_out_set_addr; } gpio_toggle_conf_cx7; typedef enum MfCommandSet { CS_INTEL = 1, CS_AMD = 2, MCS_STSPI = 0x80, // This is not a "real" CFI command set - it's used as a "Meta" command set number. MCS_SSTSPI = 0x81 } MfCommandSet; ///////////////////////////////////////////// // // MFLASH INTERFACE FUNCTIONS // // Return value: // All functions returns MfError enum values. // ///////////////////////////////////////////// struct mfile_t; // // open/close functions: // This lib is used pretty much like a C file: open it, use and close when done. // // mf_open(): Allocates and init the mflash object to be used with the other lib funcs. // OUT: pmfl - The opened mflash struct is returned here. // IN : dev - The string name of the crspace device to use. // // mf_opend(): Same as mf_open, but uses an already opened crspace device. // // mf_open_ignore_lock() : // THIS FUNCTION IS NOT SAFE - // It ignores the flash semaphore during flash init sequence. // Use only after one of the above open() failed because of MFE_SEM_LOCKED // and you are absolutely sure that the lock can be overridden (E.G. semaphore // remained in locked state due to previous kill of the burning app). // // mf_close() : Deallocates mflash resources. // Note: User should call mf_close() even if mf_open failed (and the returning mfl is not NULL) // int mf_open(mflash** pmfl, const char* dev, int num_of_banks, flash_params_t* flash_params, int ignore_cache_rep_guard); // int mf_opend(mflash **pmfl, struct mfile_t *mf, int num_of_banks, flash_params_t *flash_params, // int ignore_cache_rep_guard); int mf_open_adv(mflash** pmfl, const char* dev, int num_of_banks, flash_params_t* flash_params, int ignore_cache_rep_guard, int cx3_fw_access); int mf_open_uefi(mflash** pmfl, uefi_Dev_t* uefi_dev, uefi_dev_extra_t* dev_extra); int mf_open_ignore_lock(mflash* mfl); void mf_close(mflash* mfl); // // Flash access functions: // The data buffer should be pre-allocated by caller. The rest is quite self explanatory. . // int mf_read(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data, bool verbose); int mf_write(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data); void mf_set_cpu_utilization(mflash* mfl, int cpuPercent); // mf_erase performs an erase on the smallest block int mf_erase(mflash* mfl, u_int32_t addr); // adv erasing int mf_erase_64k_sector(mflash* mfl, u_int32_t addr); int mf_erase_4k_sector(mflash* mfl, u_int32_t addr); // swap between erasing 4KB or 64KB chunks (performance optimization) // // Crspace access through mflash: // int mf_cr_read(mflash* mfl, u_int32_t cr_addr, u_int32_t* data); int mf_cr_write(mflash* mfl, u_int32_t cr_addr, u_int32_t data); int mf_update_boot_addr(mflash* mfl, u_int32_t boot_addr); // // mf_get_attr(): Returns the flash_attr struct // int mf_get_attr(mflash* mfl, flash_attr* attr); int mf_get_jedec_id(mflash* mfl, u_int32_t* jedec_id); int mf_set_quad_en(mflash* mfl, u_int8_t quad_en); int mf_get_quad_en(mflash* mfl, u_int8_t* quad_en); int mf_set_driver_strength(mflash* mfl, u_int8_t driver_strength); int mf_get_driver_strength(mflash* mfl, u_int8_t* driver_strength); int mf_set_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); int mf_get_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); int mf_set_dummy_cycles(mflash* mfl, u_int8_t num_of_cycles); int mf_get_dummy_cycles(mflash* mfl, u_int8_t* num_of_cycles); // // Set/Get for some options. // int mf_set_opt(mflash* mfl, MfOpt opt, int val); int mf_get_opt(mflash* mfl, MfOpt opt, int* val); int mf_is_fifth_gen(mflash* mfl); int mf_enable_hw_access(mflash* mfl, u_int64_t key); int mf_disable_hw_access_with_key(mflash* mfl, u_int64_t key); int mf_disable_hw_access(mflash* mfl); int mf_release_semaphore(mflash* mfl); // get mfile object mfile* mf_get_mfile(mflash* mfl); dm_dev_id_t mf_get_dm_dev_id(mflash* mfl); // // err code to string translation for printing. // const char* mf_err2str(int err_code); void mf_flash_list(char* flash_list, int flash_arr_size); int mf_get_write_protect_direct_access(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); int mf_set_write_protect_direct_access(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); int mf_get_quad_en_direct_access(mflash* mfl, u_int8_t* quad_en_p); int mf_set_quad_en_direct_access(mflash* mfl, u_int8_t quad_en); int mf_get_driver_strength_direct_access(mflash* mfl, u_int8_t* driver_strength_p); int mf_set_driver_strength_direct_access(mflash* mfl, u_int8_t driver_strength); int mf_get_dummy_cycles_direct_access(mflash* mfl, u_int8_t* dummy_cycles_p); int mf_set_dummy_cycles_direct_access(mflash* mfl, u_int8_t num_of_cycles); EXTERN_C_END #endif // MFLASH_H mstflint-4.26.0/mflash/mflash_types.h0000644000175000017500000000705514522641732020033 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MFLASH_TYPES_H #define MFLASH_TYPES_H typedef enum { FSS_4KB = 0x1000, FSS_64KB = 0x10000 } Flash_Sector_Size_t; typedef enum MfError { MFE_OK = 0, MFE_ERROR, MFE_BAD_PARAMS, MFE_CR_ERROR, MFE_HW_DEVID_ERROR, MFE_INVAL, MFE_NOT_IMPLEMENTED, MFE_UNSUPPORTED_FLASH_TOPOLOGY, MFE_UNSUPPORTED_FLASH_TYPE, MFE_CFI_FAILED, MFE_TIMEOUT, MFE_ERASE_TIMEOUT, MFE_WRITE_TIMEOUT, MFE_ERASE_ERROR, MFE_WRITE_ERROR, MFE_BAD_ALIGN, MFE_SEM_LOCKED, MFE_VERIFY_ERROR, MFE_NOMEM, MFE_OUT_OF_RANGE, MFE_CMD_SUPPORTED_INBAND_ONLY, MFE_NO_FLASH_DETECTED, MFE_LOCKED_CRSPACE, MFE_CMDIF_BAD_STATUS_ERR, MFE_CMDIF_TIMEOUT_ERR, MFE_CMDIF_NOT_READY, MFE_CMDIF_UNKN_TLV, MFE_CMDIF_BAD_OP, MFE_MISMATCH_KEY, MFE_MISSING_KEY, MFE_UNKNOWN_REG, MFE_DIRECT_FW_ACCESS_DISABLED, MFE_MANAGED_SWITCH_NOT_SUPPORTED, MFE_NOT_SUPPORTED_OPERATION, MFE_FLASH_NOT_EXIST, MFE_MISMATCH_PARAM, MFE_EXCEED_SUBSECTORS_MAX_NUM, MFE_EXCEED_SECTORS_MAX_NUM, MFE_SECTORS_NUM_NOT_POWER_OF_TWO, MFE_SECTORS_NUM_MORE_THEN_0_LESS_THEN_4, MFE_UNKOWN_ACCESS_TYPE, MFE_UNSUPPORTED_DEVICE, MFE_UNSUPPORTED_ERASE_OPERATION, MFE_OLD_DEVICE_TYPE, MFE_ICMD_INIT_FAILED, MFE_ICMD_NOT_SUPPORTED, MFE_HW_ACCESS_NOT_SUPP, MFE_MAD_SEND_ERR, MFE_ICMD_BAD_PARAM, MFE_ICMD_INVALID_OPCODE, MFE_ICMD_INVALID_CMD, MFE_ICMD_OPERATIONAL_ERROR, MFE_DATA_IS_OTP, MFE_REG_ACCESS_BAD_METHOD, MFE_REG_ACCESS_NOT_SUPPORTED, MFE_REG_ACCESS_DEV_BUSY, MFE_REG_ACCESS_VER_NOT_SUPP, MFE_REG_ACCESS_UNKNOWN_TLV, MFE_REG_ACCESS_REG_NOT_SUPP, MFE_REG_ACCESS_CLASS_NOT_SUPP, MFE_REG_ACCESS_METHOD_NOT_SUPP, MFE_REG_ACCESS_BAD_PARAM, MFE_REG_ACCESS_RES_NOT_AVLBL, MFE_REG_ACCESS_MSG_RECPT_ACK, MFE_REG_ACCESS_UNKNOWN_ERR, MFE_REG_ACCESS_SIZE_EXCCEEDS_LIMIT, MFE_PCICONF, MFE_ILLEGAL_BANK_NUM, MFE_OCR_NOT_SUPPORTED, MFE_ACCESS_COMMANDS_NOT_INITIALIZED, MFE_LAST } MfError; #endif // MFLASH_TYPES_H mstflint-4.26.0/mflash/mflash_gw.h0000644000175000017500000000530114522641732017274 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * mflash_gw.h * * Created on: Jul 8, 2020 * Author: edwardg */ #ifndef _MFLASH_GW_H_ #define _MFLASH_GW_H_ #include "mflash_pack_layer.h" // ConnectX SPI interface: int cntx_st_spi_erase_sect(mflash* mfl, u_int32_t addr); int cntx_int_spi_get_status_data(mflash* mfl, u_int8_t op_type, u_int32_t* status, u_int8_t data_num); int cntx_st_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, u_int32_t total_size); int cntx_sst_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data); int cntx_st_spi_block_read_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, bool verbose); int cntx_spi_write_status_reg(mflash* mfl, u_int32_t status_reg, u_int8_t write_cmd, u_int8_t bytes_num); #endif mstflint-4.26.0/mflash/mflash_access_layer.c0000644000175000017500000003504514522641732021317 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include "mflash_types.h" #include "mflash_pack_layer.h" #include "mflash_access_layer.h" extern flash_info_t g_flash_info_arr[]; #define CX3_PRO_HW_ID 0x1F7 #define CX3_HW_ID 0x1F5 #define HAS_TOOLS_CMDIF(dev_id) ((((dev_id) == CX3_HW_ID) || ((dev_id) == CX3_PRO_HW_ID))) // On windows we don't support cmdIf access! int check_access_type(mflash* mfl) // TODO: re-write in a more elegant way. { if (mfl->access_type == MFAT_MFILE) { switch (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE]) { case ATBM_INBAND: #ifdef NO_INBAND_ACCESS return MFE_NOT_SUPPORTED_OPERATION; #endif #ifndef _WIN_ case ATBM_MLNXOS_CMDIF: #endif case ATBM_ICMD: case ATBM_TOOLS_CMDIF: break; default: return MFE_UNKOWN_ACCESS_TYPE; } } else if (mfl->access_type == MFAT_UEFI) { } else { return MFE_UNKOWN_ACCESS_TYPE; } return MFE_OK; } int sx_get_flash_info_by_type(mflash* mfl, flash_info_t* f_info, int* log2size, u_int8_t* no_flash) { int rc = 0; u_int8_t vendor = 0, type = 0, density = 0; unsigned type_index = 0; mfpa_command_args mfpa_args; memset(&mfpa_args, 0, sizeof(mfpa_args)); mfpa_args.flash_bank = get_bank_int(mfl); rc = check_access_type(mfl); CHECK_RC(rc); rc = com_get_jedec(mfl->mf, &mfpa_args); CHECK_RC(rc); // printf("-D- jedec_id = %#x\n", jedec_id); rc = get_info_from_jededc_id(mfpa_args.jedec_id, &vendor, &type, &density); CHECK_RC(rc); // Return there is no flash when all the params are 0xff if (vendor == 0xff && type == 0xff && density == 0xff) { *no_flash = 1; return MFE_OK; } rc = get_log2size_by_vendor_type_density(vendor, type, density, log2size); CHECK_RC(rc); rc = get_type_index_by_vendor_type_density(vendor, type, *log2size, &type_index); CHECK_RC(rc); memcpy(f_info, &(g_flash_info_arr[type_index]), sizeof(flash_info_t)); f_info->support_sub_and_sector = mfpa_args.supp_sub_and_sector_erase; f_info->dummy_cycles_support = mfpa_args.supp_dummy_cycles; f_info->write_protected_support = mfpa_args.supp_sector_write_prot | mfpa_args.supp_sub_sector_write_prot; f_info->protect_sub_and_sector = mfpa_args.supp_sector_write_prot & mfpa_args.supp_sub_sector_write_prot; f_info->quad_en_support = mfpa_args.supp_quad_en; // HACK: Use fw_sector size as the sector size only in CX3 family devices for now if (HAS_TOOLS_CMDIF(mfl->attr.hw_dev_id)) { f_info->sector_size = mfpa_args.fw_flash_sector_sz ? mfpa_args.fw_flash_sector_sz : f_info->sector_size; } return MFE_OK; } int sx_block_read_by_type(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data) { int rc = 0, bank = 0; u_int32_t flash_offset = 0; if (blk_size > (u_int32_t)mfl->attr.block_write || blk_size < 4) { return MFE_BAD_PARAMS; } rc = mfl_get_bank_info(mfl, blk_addr, &flash_offset, &bank); CHECK_RC(rc); COM_CHECK_ALIGN(flash_offset, blk_size); rc = check_access_type(mfl); CHECK_RC(rc); rc = sx_st_block_access(mfl->mf, flash_offset, bank, blk_size, data, REG_ACCESS_METHOD_GET); CHECK_RC(rc); return MFE_OK; } int sx_block_write_by_type(mflash* mfl, u_int32_t addr, u_int32_t size, u_int8_t* data) { int rc = 0, bank = 0; u_int32_t flash_offset = 0; WRITE_CHECK_ALIGN(addr, mfl->attr.block_write, size); rc = mfl_get_bank_info(mfl, addr, &flash_offset, &bank); CHECK_RC(rc); COM_CHECK_ALIGN(flash_offset, size); rc = check_access_type(mfl); CHECK_RC(rc); rc = sx_st_block_access(mfl->mf, flash_offset, bank, size, data, REG_ACCESS_METHOD_SET); CHECK_RC(rc); return MFE_OK; } static int lock_flash_programing_sem(mflash* mfl) { #ifndef UEFI_BUILD int rc = 0; if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_ICMD || mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_INBAND) { rc = trm_lock(mfl->trm, TRM_RES_FLASH_PROGRAMING, MAX_FLASH_PROG_SEM_RETRY_CNT); if (rc && rc != TRM_STS_RES_NOT_SUPPORTED) { return MFE_SEM_LOCKED; } } else if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_TOOLS_CMDIF) { rc = trm_lock(mfl->trm, TRM_RES_HCR_FLASH_PROGRAMING, MAX_FLASH_PROG_SEM_RETRY_CNT); if (rc && rc != TRM_STS_RES_NOT_SUPPORTED) { return MFE_SEM_LOCKED; } } #endif return MFE_OK; } static int unlock_flash_programing_sem(mflash* mfl) { #ifndef UEFI_BUILD int rc = 0; if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_ICMD || mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_INBAND) { rc = trm_unlock(mfl->trm, TRM_RES_FLASH_PROGRAMING); if (rc && rc != TRM_STS_RES_NOT_SUPPORTED) { return MFE_SEM_LOCKED; } } else if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_TOOLS_CMDIF) { rc = trm_unlock(mfl->trm, TRM_RES_HCR_FLASH_PROGRAMING); if (rc && rc != TRM_STS_RES_NOT_SUPPORTED) { return MFE_SEM_LOCKED; } } #endif return MFE_OK; } int sx_flash_lock_by_type(mflash* mfl, int lock_state) { // burning through some FW interface , lock flash programing semaphore if possible int rc = 0; if (lock_state) { rc = lock_flash_programing_sem(mfl); } else { rc = unlock_flash_programing_sem(mfl); } if (rc == MFE_OK) { mfl->is_locked = (lock_state != 0); } return rc; } int sx_erase_sect_by_type(mflash* mfl, u_int32_t addr, u_int32_t erase_size) { int rc = 0, bank = 0; u_int32_t flash_addr = 0; rc = mfl_get_bank_info(mfl, addr, &flash_addr, &bank); CHECK_RC(rc); rc = check_access_type(mfl); CHECK_RC(rc); rc = common_erase_sector(mfl->mf, flash_addr, bank, erase_size); CHECK_RC(rc); return MFE_OK; } int mf_update_boot_addr_by_type(mflash* mfl, u_int32_t boot_addr) { int rc = 0; if (mfl->access_type == MFAT_UEFI || mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_MLNXOS_CMDIF) { // No CR-Space access - use mfpa register mfpa_command_args mfpa_args; memset(&mfpa_args, 0, sizeof(mfpa_args)); mfpa_args.flash_bank = get_bank_int(mfl); mfpa_args.boot_address = boot_addr; rc = run_mfpa_command(mfl->mf, REG_ACCESS_METHOD_SET, &mfpa_args); CHECK_RC(rc); } return MFE_OK; } int sx_set_driver_strength(mflash* mfl, u_int8_t driver_strength) { // driver-strength configuration isn't supported by FW (MFMC register) (void)mfl; (void)driver_strength; return MFE_REG_ACCESS_METHOD_NOT_SUPP; } int sx_get_driver_strength(mflash* mfl, u_int8_t* driver_strength) { // driver-strength configuration isn't supported by FW (MFMC register) (void)mfl; (void)driver_strength; return MFE_REG_ACCESS_METHOD_NOT_SUPP; } int sx_set_quad_en(mflash* mfl, u_int8_t quad_en) { int bank = 0; int rc = 0; struct reg_access_switch_mfmc_reg_ext mfmc; if (!mfl) { return MFE_BAD_PARAMS; } if (!mfl->attr.quad_en_support) { return MFE_NOT_SUPPORTED_OPERATION; } for (bank = 0; bank < mfl->attr.banks_num; bank++) { rc = set_bank_int(mfl, bank); CHECK_RC(rc); memset(&mfmc, 0, sizeof(mfmc)); mfmc.fs = bank; rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_GET, &mfmc)); CHECK_RC(rc); mfmc.quad_en = quad_en; rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_SET, &mfmc)); CHECK_RC(rc); } return MFE_OK; } int sx_get_quad_en(mflash* mfl, u_int8_t* quad_en) { int bank = 0; int rc = MFE_OK; struct reg_access_switch_mfmc_reg_ext mfmc; int is_first_val = 1; if (!mfl || !quad_en) { return MFE_BAD_PARAMS; } if (!mfl->attr.quad_en_support) { return MFE_NOT_SUPPORTED_OPERATION; } for (bank = 0; bank < mfl->attr.banks_num; bank++) { rc = set_bank_int(mfl, bank); CHECK_RC(rc); memset(&mfmc, 0, sizeof(mfmc)); mfmc.fs = bank; rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_GET, &mfmc)); CHECK_RC(rc); if (is_first_val) { *quad_en = mfmc.quad_en; is_first_val = 0; } else { if (mfmc.quad_en != *quad_en) { rc = MFE_MISMATCH_PARAM; break; } } } return rc; } int sx_set_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info) { u_int8_t log2_sect_num = 0; u_int8_t sectors_num = 0; struct reg_access_switch_mfmc_reg_ext mfmc; int rc = 0; if (!mfl || !protect_info) { return MFE_BAD_PARAMS; } sectors_num = protect_info->sectors_num; WRITE_PROTECT_CHECKS(mfl, bank_num); if (((protect_info->sectors_num - 1) & protect_info->sectors_num) != 0) { return MFE_SECTORS_NUM_NOT_POWER_OF_TWO; } if (protect_info->sectors_num > MAX_SECTORS_NUM) { return MFE_EXCEED_SECTORS_MAX_NUM; } if (protect_info->is_subsector && !mfl->attr.protect_sub_and_sector) { return MFE_NOT_SUPPORTED_OPERATION; } if (protect_info->is_bottom) { return MFE_NOT_SUPPORTED_OPERATION; } if (mfl->attr.protect_sub_and_sector && protect_info->is_subsector) { if (protect_info->sectors_num > MAX_SUBSECTOR_NUM) { return MFE_EXCEED_SUBSECTORS_MAX_NUM; } } rc = set_bank_int(mfl, bank_num); CHECK_RC(rc); for (log2_sect_num = 0; log2_sect_num < 8; log2_sect_num++) { sectors_num >>= 1; if (sectors_num == 0) { break; } } memset(&mfmc, 0, sizeof(mfmc)); rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_GET, &mfmc)); CHECK_RC(rc); mfmc.fs = bank_num; mfmc.wrp_en = protect_info->sectors_num != 0; if (mfmc.wrp_en) { mfmc.block_size = protect_info->is_subsector ? 0 : 1; mfmc.wrp_block_count = log2_sect_num; } rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_SET, &mfmc)); CHECK_RC(rc); // printf("-D- mf_set_write_protect: bank_num = %#x, subsec: %#x, bottom: %#x, sectors_num=%#x\n", bank_num, // protect_info->is_subsector, protect_info->is_bottom, protect_info->sectors_num); return MFE_OK; } int sx_get_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info) { int rc = 0; struct reg_access_switch_mfmc_reg_ext mfmc; if (!mfl || !protect_info) { return MFE_BAD_PARAMS; } WRITE_PROTECT_CHECKS(mfl, bank_num); rc = set_bank_int(mfl, bank_num); CHECK_RC(rc); memset(&mfmc, 0, sizeof(mfmc)); mfmc.fs = get_bank_int(mfl); rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_GET, &mfmc)); CHECK_RC(rc); protect_info->is_bottom = 0; // no support for bottom protect_info->is_subsector = mfmc.block_size == 0; protect_info->sectors_num = mfmc.wrp_en ? 1 << mfmc.wrp_block_count : 0; return MFE_OK; } int sx_set_dummy_cycles(mflash* mfl, u_int8_t num_of_cycles) { int bank = 0; int rc = 0; struct reg_access_switch_mfmc_reg_ext mfmc; if (!mfl || num_of_cycles < 1 || num_of_cycles > 15) { return MFE_BAD_PARAMS; } if (!mfl->attr.dummy_cycles_support) { return MFE_NOT_SUPPORTED_OPERATION; } for (bank = 0; bank < mfl->attr.banks_num; bank++) { rc = set_bank_int(mfl, bank); CHECK_RC(rc); memset(&mfmc, 0, sizeof(mfmc)); mfmc.fs = bank; rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_GET, &mfmc)); CHECK_RC(rc); mfmc.dummy_clock_cycles = num_of_cycles; rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_SET, &mfmc)); CHECK_RC(rc); } return MFE_OK; } int sx_get_dummy_cycles(mflash* mfl, u_int8_t* num_of_cycles) { int bank = 0; int rc = MFE_OK; struct reg_access_switch_mfmc_reg_ext mfmc; int is_first_val = 1; if (!mfl || !num_of_cycles) { return MFE_BAD_PARAMS; } if (!mfl->attr.dummy_cycles_support) { return MFE_NOT_SUPPORTED_OPERATION; } for (bank = 0; bank < mfl->attr.banks_num; bank++) { rc = set_bank_int(mfl, bank); CHECK_RC(rc); memset(&mfmc, 0, sizeof(mfmc)); mfmc.fs = bank; rc = MError2MfError(reg_access_mfmc(mfl->mf, REG_ACCESS_METHOD_GET, &mfmc)); CHECK_RC(rc); if (is_first_val) { *num_of_cycles = mfmc.dummy_clock_cycles; is_first_val = 0; } else { if (mfmc.dummy_clock_cycles != *num_of_cycles) { rc = MFE_MISMATCH_PARAM; break; } } } return rc; } mstflint-4.26.0/mflash/flash_int_defs.h0000644000175000017500000000566714522641732020314 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef USER_MFLASH_FLASH_INT_DEFS_H_ #define USER_MFLASH_FLASH_INT_DEFS_H_ #define SST_FLASH_NAME "SST25VFxx" #define WINBOND_NAME "W25QxxBV" #define WINBOND_W25X "W25Xxx" #define WINBOND_3V_NAME "W25Qxxx" #define ATMEL_NAME "AT25DFxxx" #define S25FLXXXP_NAME "S25FLXXXP" #define S25FL116K_NAME "S25FL11xx" #define MACRONIX_NAME "MX25L16xxx" #define MACRONIX_3V_NAME "MX25Lxxx" #define CYPRESS_3V_NAME "S25FLxxx" #define ISSI_3V_NAME "IS25LPxxx" #define MICRON_3V_NAME "MT25QLxxx" #define MACRONIX_1V8_NAME "MX25Uxxx" #define GIGA_3V_NAME "GD25LBxxx" #define ISSI_HUAWEY_NAME "IS25WPxxx" typedef enum flash_vendor { FV_ST = 0x20, FV_SST = 0xbf, FV_WINBOND = 0xef, FV_ATMEL = 0x1f, FV_S25FLXXXX = 0x01, FV_MX25K16XXX = 0xc2, FV_IS25LPXXX = 0x9d, FV_GD25QXXX = 0xc8 } flash_vendor_t; typedef enum flash_memory_type { FMT_ST_M25P = 0x20, FMT_MX25K16XXX = 0x20, FMT_ST_M25PX = 0x71, FMT_SST_25 = 0x25, FMT_WINBOND = 0x40, FMT_WINBOND_W25X = 0x30, FMT_WINBOND_3V = 0x70, FMT_ATMEL = 0x2, FMT_N25QXXX = 0xba, FMT_S25FLXXXP = 0x02, FMT_S25FL116K = 0x40, FMT_S25FLXXXL = 0x60, FMT_MT25QLXXXABA = 0xba, FMT_IS25LPXXX = 0x60, FVT_GD25QXXX = 0x40 } flash_memory_type_t; typedef enum flash_densities { FD_8 = 0x14, FD_16 = 0x15, FD_32 = 0x16, FD_64 = 0x17, FD_128 = 0x18, FD_256 = 0x19, FD_512 = 0x1a } flash_densities_t; #endif /* USER_MFLASH_FLASH_INT_DEFS_H_ */ mstflint-4.26.0/mflash/mflash_new_gw.c0000644000175000017500000004270714522641732020153 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * mflash_new_gw.c * * Created on: Jul 8, 2020 * Author: edwardg */ #include "mflash_pack_layer.h" #include "mflash_dev_capability.h" #include "mflash_access_layer.h" #include "flash_int_defs.h" #include #ifdef __WIN__ // // Windows (Under DDK) // #define OP_NOT_SUPPORTED EINVAL #define usleep(x) Sleep(((x + 999) / 1000)) #endif // __WIN_ #define CHECK_RC_REL_SEM(mfl, rc) \ do \ { \ if (rc) \ { \ release_semaphore(mfl, 0); \ return rc; \ } \ } while (0) static int set_gw_data_size(mflash* mfl, u_int32_t data_size, u_int32_t* gw_cmd) { FlashGen flash_gen = get_flash_gen(mfl); if (flash_gen == SIX_GEN_FLASH) { *gw_cmd = MERGE((*gw_cmd), data_size, mfl->gw_data_size_bit_offset, mfl->gw_data_size_bit_len); } else if (flash_gen == SEVEN_GEN_FLASH) { if (mwrite4(mfl->mf, mfl->gw_data_size_register_addr, data_size) != 4) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } } else { DPRINTF(("set_gw_data_size: flash_gen = %d mismatch\n", flash_gen)); return MFE_ERROR; } return MFE_OK; } static int st_spi_wait_wip(mflash* mfl, u_int32_t init_delay_us, u_int32_t retry_delay_us, u_int32_t num_of_retries) { int rc = 0; u_int8_t status = 0; u_int32_t i = 0; usleep(init_delay_us); for (i = 0; i < num_of_retries; ++i) { rc = mfl->f_spi_status(mfl, SFC_RDSR, &status); CHECK_RC(rc); if ((status & 1) == 0) { return MFE_OK; } usleep(retry_delay_us); if (mfl->cputUtilizationApplied) { if ((i % mfl->cpuPercent) == 0) { msleep(1); } } } return MFE_WRITE_TIMEOUT; } static bool is_x_byte_address_access_commands(mflash* mfl, int x) { if (x != 3 && x != 4) { return false; } flash_access_commands_t compared_to_access_commands = (x == 4) ? gen_4byte_address_access_commands() : gen_3byte_address_access_commands(); flash_access_commands_t cur = mfl->attr.access_commands; return (compared_to_access_commands.sfc_sector_erase == cur.sfc_sector_erase && compared_to_access_commands.sfc_subsector_erase == cur.sfc_subsector_erase && compared_to_access_commands.sfc_page_program == cur.sfc_page_program && compared_to_access_commands.sfc_read == cur.sfc_read && compared_to_access_commands.sfc_fast_read == cur.sfc_fast_read); } static int new_gw_exec_cmd(mflash* mfl, u_int32_t gw_cmd, char* msg) { gw_cmd = MERGE(gw_cmd, 1, 31, 1); // Making sure lock bit stays locked if ((gw_cmd & (1 << mfl->gw_addr_phase_bit_offset)) != 0) { // This is an access command if (is_x_byte_address_access_commands(mfl, 4)) { gw_cmd = MERGE(gw_cmd, 1, mfl->gw_addr_size_bit_offset, 1); } else if (!is_x_byte_address_access_commands(mfl, 3)) { return MFE_ACCESS_COMMANDS_NOT_INITIALIZED; } } gw_cmd = MERGE(gw_cmd, 1, mfl->gw_busy_bit_offset, 1); gw_cmd = MERGE(gw_cmd, (u_int32_t)mfl->curr_bank, mfl->gw_chip_select_bit_offset, 1); DPRINTF(("new_gw_exec_cmd: %s, gw_cmd = %#x\n", msg, gw_cmd)); MWRITE4(mfl->gw_cmd_register_addr, gw_cmd); return gw_wait_ready(mfl, msg); } /* * execute a flash GW command and get the output: data0...data3 from the flash interface * * mfl - pointer to an initilized mflash obj * gw_cmd - the flash gateway command to execute * buff - pointer to a buffer where the output data from the flash GW will be written to * buff_dword_sz - size for buff in dwords * addr - if != NULL *addr will be written to the addr bits of the flash GW. (for commands that read from flash) * msg - optional string that describes the action for debug purposes, not used ATM however its recommended to put * usefull data for future dubugabillity. return : MFE_OK (0) upon success or a value != 0 upon error accroding to * mlfash error code. */ static int new_gw_exec_cmd_get(mflash* mfl, u_int32_t gw_cmd, u_int32_t* buff, int buff_dword_sz, u_int32_t* addr, char* msg) { int rc = 0; if (!mfl || !buff || !buff_dword_sz) { return MFE_BAD_PARAMS; } rc = mfl_com_lock(mfl); CHECK_RC(rc); // write GW addr if needed if (addr) { if (mwrite4(mfl->mf, mfl->gw_addr_field_addr, *addr) != 4) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } } // execute gw command rc = new_gw_exec_cmd(mfl, gw_cmd, msg); CHECK_RC_REL_SEM(mfl, rc); // copy data from CR-space to buff if (mread4_block(mfl->mf, mfl->gw_data_field_addr, buff, (buff_dword_sz << 2)) != (buff_dword_sz << 2)) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } // release semaphore release_semaphore(mfl, 0); return MFE_OK; } /* * Set input in: data0...data3 from the flash interface and execute a flash GW command * * mfl - pointer to an initialized mflash obj * gw_cmd - the flash gateway command to execute * buff - if != NULL pointer to a buffer to the input data for the flash GW. * buff_dword_sz - size for buff in dwords * addr - if != NULL *addr will be written to the addr bits of the flash GW. (for commands that write from flash) * msg - optional string that describes the action for debug purposes, not used ATM however its recommended to put * usefull data for future debugability. return : MFE_OK (0) upon success or a value != 0 upon error accroding to mlfash * error code. */ static int new_gw_exec_cmd_set(mflash* mfl, u_int32_t gw_cmd, u_int32_t* buff, int buff_dword_sz, u_int32_t* addr, char* msg) { int rc = 0; if (!mfl) { return MFE_BAD_PARAMS; } rc = mfl_com_lock(mfl); CHECK_RC(rc); // write data from buff to CR-space if (buff && buff_dword_sz) { if (mwrite4_block(mfl->mf, mfl->gw_data_field_addr, buff, (buff_dword_sz << 2)) != (buff_dword_sz << 2)) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } } // write GW addr if needed if (addr) { if (mwrite4(mfl->mf, mfl->gw_addr_field_addr, *addr) != 4) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } } // execute gw command rc = new_gw_exec_cmd(mfl, gw_cmd, msg); CHECK_RC_REL_SEM(mfl, rc); // release semaphore release_semaphore(mfl, 0); return MFE_OK; } int new_gw_int_spi_get_status_data(mflash* mfl, u_int8_t op_type, u_int32_t* status, u_int8_t bytes_num) { int rc = 0; u_int32_t gw_cmd = 0; u_int32_t flash_data = 0; // TODO: adrianc: update msize from log2(bytes_num) gw_cmd = MERGE(gw_cmd, 1, mfl->gw_rw_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_data_phase_bit_offset, 1); rc = set_gw_data_size(mfl, 4, &gw_cmd); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, op_type, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); DPRINTF(("NEW gateway CMD gw_cmd=%08x\n", gw_cmd)); if (bytes_num > 4) { return MFE_BAD_PARAMS; } rc = new_gw_exec_cmd_get(mfl, gw_cmd, &flash_data, 1, (u_int32_t*)NULL, "Read id"); CHECK_RC(rc); DPRINTF(("new_gw_int_spi_get_status_data: op=%02x status=%08x\n", op_type, flash_data)); *status = (flash_data >> 8 * (4 - bytes_num)); return MFE_OK; } int new_gw_st_spi_write_enable(mflash* mfl) { u_int32_t gw_cmd = 0; int rc = 0; // Write enable: gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, SFC_WREN, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); rc = new_gw_exec_cmd_set(mfl, gw_cmd, (u_int32_t*)NULL, 0, (u_int32_t*)NULL, "WREN command"); CHECK_RC(rc); return MFE_OK; } int new_gw_spi_write_status_reg(mflash* mfl, u_int32_t status_reg, u_int8_t write_cmd, u_int8_t bytes_num) { int rc = 0; u_int32_t gw_cmd = 0; // TODO: adrianc: add support for dynamic writes of power of 2 bytes_num not just 1,2 bytes rc = new_gw_st_spi_write_enable(mfl); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_data_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, write_cmd, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); if (bytes_num != 1 && bytes_num != 2) { return MFE_NOT_SUPPORTED_OPERATION; } // push status reg to upper bytes status_reg = status_reg << ((bytes_num == 2) ? 16 : 24); rc = set_gw_data_size(mfl, bytes_num, &gw_cmd); CHECK_RC(rc); DPRINTF(("new_gw_spi_write_status_reg: gw_cmd=%08x status_reg=%08x\n", gw_cmd, status_reg)); rc = new_gw_exec_cmd_set(mfl, gw_cmd, &status_reg, 1, (u_int32_t*)NULL, "Write-Status-Register"); // wait for flash to write the register if (mfl->attr.vendor == FV_S25FLXXXX && mfl->attr.type == FMT_S25FLXXXL) { // New CYPRESS msleep(WRITE_STATUS_REGISTER_DELAY_CYPRESS); } else if (mfl->attr.vendor == FV_ST && mfl->attr.type == FMT_N25QXXX) { // New MICRON msleep(WRITE_STATUS_REGISTER_DELAY_MICRON); } else { msleep(WRITE_STATUS_REGISTER_DELAY_MIN); // Some can sleep only 30 or even 15. We should consider optimize this. } return rc; } int new_gw_st_spi_erase_sect(mflash* mfl, u_int32_t addr) { int rc = 0; u_int32_t gw_cmd = 0; u_int32_t erase_addr = 0; rc = set_bank(mfl, addr); CHECK_RC(rc); rc = new_gw_st_spi_write_enable(mfl); CHECK_RC(rc); // Erase sector command: gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_addr_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, mfl->attr.erase_command, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); erase_addr = addr & ONES32(mfl->attr.log2_bank_size); DPRINTF(("new_gw_st_spi_erase_sect: addr = %#x, erase_addr = %#x, gw_cmd = %#x.\n", addr, erase_addr, gw_cmd)); rc = new_gw_exec_cmd_set(mfl, gw_cmd, (u_int32_t*)NULL, 0, &erase_addr, "ES"); CHECK_RC(rc); // Wait for erase completion rc = st_spi_wait_wip(mfl, ERASE_SUBSECTOR_INIT_DELAY, ERASE_SUBSECTOR_RETRY_DELAY, ERASE_SUBSECTOR_RETRIES); CHECK_RC(rc); return MFE_OK; } int new_gw_st_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, u_int32_t total_size) { int rc = 0; u_int32_t offs = 0; u_int32_t gw_cmd = 0; u_int32_t addr = 0; u_int32_t buff[4]; DPRINTF(("new_gw_st_spi_block_write_ex(addr=%05x, u_int32_t size=%05x, first=%d, last=%d)\n", blk_addr, blk_size, (u_int32_t)is_first, (u_int32_t)is_last)); if (blk_addr & ((u_int32_t)mfl->attr.block_write - 1)) { return MFE_BAD_ALIGN; } // sanity check ??? remove ??? if (blk_size != (u_int32_t)mfl->attr.block_write) { return MFE_BAD_PARAMS; } rc = set_bank(mfl, blk_addr); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_data_phase_bit_offset, 1); rc = set_gw_data_size(mfl, blk_size, &gw_cmd); CHECK_RC(rc); if (is_first) { rc = new_gw_st_spi_write_enable(mfl); CHECK_RC(rc); // Write the data block gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_addr_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, mfl->attr.access_commands.sfc_page_program, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); addr = blk_addr & ONES32(mfl->attr.log2_bank_size); DPRINTF(("addr = %#x, blk_addr = %#x\n", addr, blk_addr)); } if (!is_last) { gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cs_hold_bit_offset, 1); } // Data: for (offs = 0; offs < blk_size; offs += 4) { u_int32_t word = 0; word = MERGE(word, data[offs + 0], 24, 8); word = MERGE(word, data[offs + 1], 16, 8); word = MERGE(word, data[offs + 2], 8, 8); word = MERGE(word, data[offs + 3], 0, 8); // MWRITE4(HCR_FLASH_DATA + offs, word ); buff[offs / 4] = word; DPRINTF(("word = 0x%08x\n", word)); } rc = new_gw_exec_cmd_set(mfl, gw_cmd, buff, (blk_size >> 2), &addr, "PP command"); CHECK_RC(rc); // // Wait for end of write in flash (WriteInProgress = 0): // if (is_last) { rc = st_spi_wait_wip(mfl, WRITE_BLOCK_INIT_DELAY + WRITE_ADDITIONAL_BYTE_DELAY * total_size, WRITE_BLOCK_RETRY_DELAY, WRITE_BLOCK_RETRIES); CHECK_RC(rc); } return MFE_OK; } int new_gw_sst_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data) { int rc = 0; u_int32_t gw_cmd = 0; u_int32_t addr = 0; u_int32_t word = 0; // sanity check ??? remove ??? if (blk_size != (u_int32_t)mfl->attr.block_write) { return MFE_BAD_PARAMS; } rc = set_bank(mfl, blk_addr); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_data_phase_bit_offset, 1); rc = set_gw_data_size(mfl, 1, &gw_cmd); CHECK_RC(rc); rc = new_gw_st_spi_write_enable(mfl); CHECK_RC(rc); // Write the data block gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_addr_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 0x02, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); addr = blk_addr & ONES32(mfl->attr.log2_bank_size); word = MERGE(word, data[0], 24, 8); DPRINTF(("data[0] = %#x, addr = %#x, word = %#x, gw_cmd = %#x\n", data[0], addr, word, gw_cmd)); rc = new_gw_exec_cmd_set(mfl, gw_cmd, &word, 1, &addr, "PB command"); CHECK_RC(rc); rc = st_spi_wait_wip(mfl, 0, 0, 50000); CHECK_RC(rc); // Full throttle polling - no cpu optimization for this flash return MFE_OK; } int new_gw_st_spi_block_read_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, bool verbose) { (void)verbose; int rc = 0; u_int32_t i = 0; u_int32_t gw_cmd = 0; u_int32_t addr = 0; DPRINTF(("new_gw_st_spi_block_read_ex(addr=%05x, u_int32_t size=%05x, first=%d, last=%d)\n", blk_addr, blk_size, (u_int32_t)is_first, (u_int32_t)is_last)); COM_CHECK_ALIGN(blk_addr, blk_size); if (blk_size > (u_int32_t)mfl->attr.block_write || blk_size < 4) { return MFE_BAD_PARAMS; } rc = set_bank(mfl, blk_addr); CHECK_RC(rc); if (is_first) { gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cmd_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_addr_phase_bit_offset, 1); gw_cmd = MERGE(gw_cmd, mfl->attr.access_commands.sfc_read, mfl->gw_cmd_bit_offset, mfl->gw_cmd_bit_len); rc = get_flash_offset(blk_addr, mfl->attr.log2_bank_size, &addr); CHECK_RC(rc); } DPRINTF(("addr = %#x, gw_cmd = %#x, blk_addr = %#x, mfl->attr.log2_bank_size = %#x\n", addr, gw_cmd, blk_addr, mfl->attr.log2_bank_size)); if (!is_last) { gw_cmd = MERGE(gw_cmd, 1, mfl->gw_cs_hold_bit_offset, 1); } // Read the data block gw_cmd = MERGE(gw_cmd, 1, mfl->gw_rw_bit_offset, 1); gw_cmd = MERGE(gw_cmd, 1, mfl->gw_data_phase_bit_offset, 1); rc = set_gw_data_size(mfl, blk_size, &gw_cmd); CHECK_RC(rc); rc = new_gw_exec_cmd_get(mfl, gw_cmd, (u_int32_t*)data, (blk_size >> 2), &addr, "Read"); CHECK_RC(rc); for (i = 0; i < blk_size; i += 4) { *(u_int32_t*)(data + i) = __be32_to_cpu(*(u_int32_t*)(data + i)); } return MFE_OK; } mstflint-4.26.0/mflash/mflash_dev_capability.c0000644000175000017500000001266414522641732021643 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * mflash_dev_capabillity.c * * Created on: Jul 8, 2018 * Author: idanme */ #include "mflash_dev_capability.h" #include // When (*status != MFE_OK) return value is undefined int is_four_byte_address_needed(mflash* mfl, MfError* status) { *status = MFE_OK; switch (mfl->dm_dev_id) { case DeviceConnectX3: case DeviceConnectX3Pro: case DeviceConnectIB: case DeviceSwitchIB: case DeviceSpectrum: case DeviceConnectX4: case DeviceConnectX4LX: case DeviceSwitchIB2: case DeviceConnectX5: case DeviceBlueField: case DeviceSecureHost: return 0; case DeviceQuantum: case DeviceConnectX6: case DeviceConnectX7: case DeviceConnectX8: case DeviceConnectX6DX: case DeviceConnectX6LX: case DeviceSpectrum2: case DeviceSpectrum3: case DeviceQuantum2: case DeviceQuantum3: case DeviceArcusE: case DeviceSpectrum4: case DeviceBlueField2: case DeviceBlueField3: case DeviceBlueField4: case DeviceGearBox: case DeviceGearBoxManager: case DeviceAbirGearBox: return 1; default: *status = MFE_UNSUPPORTED_DEVICE; fprintf(stderr, "The device type %d is not supported.\n", mfl->dm_dev_id); return 1; } } // When (*status != MFE_OK) return value is undefined int is_flash_enable_needed(mflash* mfl, MfError* status) { *status = MFE_OK; if (dm_is_4th_gen(mfl->dm_dev_id)) { return 1; } else if ((mfl->dm_dev_id == DeviceSecureHost) || (dm_is_5th_gen_hca(mfl->dm_dev_id)) || (dm_dev_is_gearbox(mfl->dm_dev_id)) || (dm_is_new_gen_switch(mfl->dm_dev_id)) || (dm_dev_is_retimer_arcuse(mfl->dm_dev_id))) { return 0; } else { *status = MFE_UNSUPPORTED_DEVICE; fprintf(stderr, "The device type %d is not supported.\n", mfl->dm_dev_id); return 0; } } // When (*status != MFE_OK) return value is undefined int is_icmdif_supported(mflash* mfl, MfError* status) { *status = MFE_OK; switch (mfl->dm_dev_id) { case DeviceConnectX3: case DeviceConnectX3Pro: case DeviceSecureHost: return 0; case DeviceConnectIB: case DeviceSwitchIB: case DeviceConnectX4: case DeviceConnectX4LX: case DeviceSpectrum: case DeviceSwitchIB2: case DeviceConnectX5: case DeviceBlueField: case DeviceBlueField2: case DeviceQuantum: case DeviceSpectrum2: case DeviceSpectrum3: case DeviceConnectX6: case DeviceConnectX6DX: case DeviceConnectX6LX: case DeviceGearBox: case DeviceGearBoxManager: return 1; case DeviceQuantum2: case DeviceQuantum3: case DeviceArcusE: case DeviceSpectrum4: case DeviceConnectX7: case DeviceConnectX8: case DeviceBlueField3: case DeviceBlueField4: case DeviceAbirGearBox: return 1; default: *status = MFE_UNSUPPORTED_DEVICE; fprintf(stderr, "The device type %d is not supported.\n", mfl->dm_dev_id); return 1; } } FlashGen get_flash_gen(mflash* mfl) { FlashGen gen; switch (mfl->dm_dev_id) { case DeviceQuantum2: case DeviceSpectrum4: case DeviceConnectX7: case DeviceBlueField3: case DeviceAbirGearBox: { gen = SIX_GEN_FLASH; break; } case DeviceQuantum3: case DeviceArcusE: case DeviceConnectX8: case DeviceBlueField4: { gen = SEVEN_GEN_FLASH; break; } default: { gen = LEGACY_FLASH; break; } } DPRINTF(("get_flash_gen: flash_gen = %d\n", gen)); return gen; } mstflint-4.26.0/mflash/mflash.c0000644000175000017500000037717514522641732016617 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifdef IRISC #define NULL 0 #else #include #include #include #include #include #include #include #include #ifndef UEFI_BUILD #include #endif #include "mflash_pack_layer.h" #include "mflash_access_layer.h" #include "mflash.h" #include "mflash_dev_capability.h" #include "mflash_common_structs.h" #include "mflash_gw.h" #include "mflash_new_gw.h" #define ICMD_MAX_BLOCK_WRITE 128 #define INBAND_MAX_BLOCK_WRITE 32 #define ARR_SIZE(arr) sizeof(arr) / sizeof(arr[0]) #ifndef __WIN__ #if defined __DJGPP__ /* */ /* DJGPP - GCC PORT TO MS DOS */ /* */ #include #include #define bswap_32(x) ntohl(x) #endif /* __DJGPP__ */ #define OP_NOT_SUPPORTED EOPNOTSUPP #else /* __WIN__ */ /* */ /* Windows (Under DDK) */ /* */ #define OP_NOT_SUPPORTED EINVAL #define usleep(x) Sleep(((x + 999) / 1000)) #endif /* __WIN__ */ #endif /* ifdef IRISC */ /* Timer definitions (needed when polling flash semaphore in windows) */ #ifndef __WIN__ #define TIMER_INIT(...) #define TIMER_STOP(...) #define TIMER_PRINT(...) #define TIMER_GET_DIFF(...) #define TIMER_INIT_AND_START(...) #define TIMER_STOP_GET_DIFF(...) #define TIMER_CHECK(...) #else #include #define TIMER_INIT() \ SYSTEMTIME _start, _end; \ int _diff_in_sec, _diff_in_ms; \ (void)_diff_in_sec; \ (void)_diff_in_ms #define TIMER_START() GetSystemTime(&_start) #define TIMER_STOP() GetSystemTime(&_end) #define TIMER_PRINT(...) \ _diff_in_sec = _end.wSecond - _start.wSecond; \ _diff_in_ms = (_end.wMilliseconds - _start.wMilliseconds; \ printf(__VA_ARGS__); \ printf("it took %d sec %d and ms to run.\n", _diff_in_sec, _diff_in_ms) #define TIMER_GET_DIFF(diff_in_sec, diff_in_ms) \ diff_in_sec = _end.wSecond - _start.wSecond; \ diff_in_ms = _end.wMilliseconds - _start.wMilliseconds #define TIMER_INIT_AND_START() \ TIMER_INIT(); \ TIMER_START() #define TIMER_STOP_GET_DIFF(diff_in_sec, diff_in_ms) \ TIMER_STOP(); \ TIMER_GET_DIFF(diff_in_sec, diff_in_ms) #define TIMER_CHECK(max_sec, max_ms, action_on_tout) \ TIMER_STOP(); \ _diff_in_sec = _end.wSecond - _start.wSecond; \ _diff_in_ms = _end.wMilliseconds - _start.wMilliseconds; \ if (_diff_in_sec >= max_sec && _diff_in_ms > max_ms) \ { \ action_on_tout; \ } #endif /* Flash Functions: */ /* This is an interface function when running in IRISC */ int mf_open_fw(mflash* mfl, flash_params_t* flash_params, int num_of_banks); int cntx_flash_init(mflash* mfl, flash_params_t* flash_params); int cntx_flash_init_direct_access(mflash* mfl, flash_params_t* flash_params); int spi_get_num_of_flashes(int prev_num_of_flashes); int cntx_spi_get_type(mflash* mfl, u_int8_t op_type, u_int8_t* vendor, u_int8_t* type, u_int8_t* density); /* forward decl: */ int icmd_init(mflash* mfl); int flash_init_fw_access(mflash* mfl, flash_params_t* flash_params); int mf_get_secure_host(mflash* mfl, int* mode); int mf_secure_host_op(mflash* mfl, u_int64_t key, int op); int cntx_sst_get_log2size(u_int8_t density, int* log2spi_size); /* NOTE: This macro returns ... not nice. */ #define CHECK_RC(rc) \ do \ { \ if (rc) \ { \ return rc; \ } \ } while (0) #define ARRSIZE(arr) (sizeof(arr) / sizeof(arr[0])) /* Constants: */ /* General: */ #define GPIO_DIR_L 0xf008c #define GPIO_POL_L 0xf0094 #define GPIO_MOD_L 0xf009c #define GPIO_DAT_L 0xf0084 #define GPIO_DATACLEAR_L 0xf00d4 #define GPIO_DATASET_L 0xf00dc #define SEMAP63 0xf03fc /* InfiniHost specific */ #define IDLE 0 #define READ4 (1 << 29) #define WRITE1 (2 << 29) #define CR_FLASH 0xf01a4 #define ADDR_MSK 0x7ffffUL #define CMD_MASK 0xe0000000UL #define SST_STATUS_REG_VAL 0x80 #define ATMEL_STATUS_REG_VAL 0x0 #define MAX_FLASH_PROG_SEM_RETRY_CNT 40 #define CPUMODE_MSK 0xc0000000UL #define CPUMODE_SHIFT 30 #define CPUMODE 0xf0150 #define COMMAND_MASK 0x00ff0000 static mfile* mopen_fw_ctx(void* fw_cmd_context, void* fw_cmd_func, void* dma_func, void* extra_data) { if ((fw_cmd_context == NULL) || (fw_cmd_func == NULL) || (extra_data == NULL)) { errno = EINVAL; return NULL; } mfile* mf = malloc(sizeof(mfile)); if (!mf) { errno = ENOMEM; return NULL; } memset(mf, 0, sizeof(mfile)); mf->flags = MDEVS_FWCTX; mf->tp = MST_FWCTX; mf->context.fw_cmd_context = fw_cmd_context; mf->context.fw_cmd_func = fw_cmd_func; mf->context.fw_cmd_dma = dma_func; mf->sock = -1; /* we are not opening remotely */ return mf; } /* Write/Erase delays */ /* ------------------ */ /* The below delays improve CPU utilization when doing long operations by */ /* sleeping instead of full throtle polling. */ /* Their values are set so they will not lenghen burn time (at least not by a meaningfull duration) */ /* and will save cpu. The delays are divided to an initial_delay, and then retry num_of_retries times waiting */ /* retry_delay. The initial delay is set according to the fastest flash we currently support (W25QxxBV). The */ /* retry_delay*num_of_retries is set according to the slowest flash maximum AC timing. */ /* */ /* To test there's no performance degradation by these delay: set DELAYS to 0 and RETRIES to infinity, and compare perf. */ enum IntelFlashCommand { FC_ReadID = 0x90, FC_Read = 0xFF, FC_Erase = 0x20, FC_Confirm = 0xD0, FC_Clear = 0x50, FC_Write = 0x40, FC_LoadPB = 0xE0, FC_PBWrite = 0x0C, FC_Status = 0x70, FC_Suspend = 0xB0, FC_Resume = 0xD0, FC_ReadESR = 0x71, FC_QueryCFI = 0x98, FC_SCSErase = 0x28, FC_SCSWrite = 0xE8 }; enum IntelFlashStatus { FS_Ready = 0x80, FS_Suspended = 0x40, FS_Error = 0x3E, FS_BlockError = 0x3F }; #ifndef UEFI_BUILD static int trm2mfe_err(trm_sts rc); #endif int my_memset(void* dst, u_int8_t data, u_int32_t len) { u_int32_t i = 0; u_int8_t* bytes = (u_int8_t*)dst; for (i = 0; i < len; i++) { bytes[i] = data; } return 0; } int my_memcpy(void* dst, void* src, u_int32_t len) { u_int32_t i = 0; u_int8_t* dbytes = (u_int8_t*)dst; u_int8_t* sbytes = (u_int8_t*)src; for (i = 0; i < len; i++) { dbytes[i] = sbytes[i]; } return 0; } int write_chunks(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data) { int rc = 0; u_int8_t* p = (u_int8_t*)data; int all_ffs = 0; /* TODO - Check MAX_WRITE_BUFFER_SIZE against block_size in open (or here) */ u_int8_t tmp_buff[MAX_WRITE_BUFFER_SIZE]; if (!mfl) { return MFE_BAD_PARAMS; } /* printf("-D- write_chunks(addr=%x, size=%x)\n", addr, len); */ while (len) { u_int32_t i = 0; u_int32_t prefix_pad_size = 0; u_int32_t suffix_pad_size = 0; u_int32_t block_size = mfl->attr.block_write; u_int32_t block_mask = ~(block_size - 1); u_int32_t block_addr = addr & block_mask; u_int32_t data_size = block_size; u_int8_t* block_data = p; /* */ /* To keep things simple, we always write full blocks. */ /* (there's an option to write partial buffer, but Intel reference code always */ /* writes full buffer, with pads if needed. I do the same ...) */ /* */ /* The First and last cycles (can be the same one) may not be block aligned. */ /* If this is the case, copy the block data to a 0xFF padded temp buffer (writing 0xFF */ /* does not effect the flash) */ /* */ prefix_pad_size = addr - block_addr; if ((addr & block_mask) == ((addr + len) & block_mask)) { suffix_pad_size = block_size - ((addr + len) % block_size); } if (suffix_pad_size || prefix_pad_size) { my_memset(tmp_buff, 0xff, block_size); data_size -= prefix_pad_size; data_size -= suffix_pad_size; my_memcpy(tmp_buff + prefix_pad_size, p, data_size); block_data = tmp_buff; } else if (mfl->attr.page_write) { /* current write is aligned to block size, */ /* write data to next page, or to last full block (if we're in the last block in a page) */ u_int32_t page_mask = ~(mfl->attr.page_write - 1); u_int32_t next_page_addr = (addr + mfl->attr.page_write + 1) & page_mask; u_int32_t size_to_page_boundary = next_page_addr - addr; if (len > size_to_page_boundary) { block_size = size_to_page_boundary; } else { block_size = len & block_mask; } data_size = block_size; } /* */ /* Check to see if there's something to do */ /* */ all_ffs = 1; for (i = 0; i < block_size; i++) { if (block_data[i] != 0xff) { all_ffs = 0; break; } } if (!all_ffs) { rc = mfl->f_write_blk(mfl, block_addr, block_size, block_data); CHECK_RC(rc); if (mfl->opts[MFO_NO_VERIFY] == 0) { u_int8_t verify_buffer[MAX_WRITE_BUFFER_SIZE] = {0}; rc = mfl->f_reset(mfl); CHECK_RC(rc); rc = mfl->f_read(mfl, addr, data_size, verify_buffer, false); CHECK_RC(rc); /* Verify data */ for (i = 0; i < data_size; i++) { if (verify_buffer[i] != block_data[i + prefix_pad_size]) { FLASH_DPRINTF(("Write verification failed. Address 0x%08x - expected:0x%02x actual: 0x%02x\n", addr + i, block_data[i + prefix_pad_size], verify_buffer[i])); return MFE_VERIFY_ERROR; } } } } /* */ /* loop advance */ /* */ addr += data_size; p += data_size; len -= data_size; } rc = mfl->f_reset(mfl); CHECK_RC(rc); return MFE_OK; } #define FD_LEGACY (1 << FD_8) | (1 << FD_16) | (1 << FD_32) | (1 << FD_64) | (1 << FD_128) flash_info_t g_flash_info_arr[] = { {"M25PXxx", FV_ST, FMT_ST_M25PX, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 0, 0, 0, 0, 0}, {"M25Pxx", FV_ST, FMT_ST_M25P, FD_LEGACY, MCS_STSPI, SFC_SE, FSS_64KB, 0, 0, 0, 0, 0, 0}, {"N25Q0XX", FV_ST, FMT_N25QXXX, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 0, 1, 0}, /*{MICRON_3V_NAME, FV_ST, FMT_N25QXXX, 1 << FD_256, MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 0, 1, 0}, */ {SST_FLASH_NAME, FV_SST, FMT_SST_25, FD_LEGACY, MCS_SSTSPI, SFC_SE, FSS_64KB, 0, 0, 0, 0, 0, 0}, {WINBOND_NAME, FV_WINBOND, FMT_WINBOND, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 1, 0, 0}, {WINBOND_W25X, FV_WINBOND, FMT_WINBOND_W25X, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 0, 0, 0, 0, 0, 0}, {WINBOND_3V_NAME, FV_WINBOND, FMT_WINBOND_3V, 1 << FD_128, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 1, 0, 1}, {WINBOND_3V_NAME, FV_WINBOND, FMT_WINBOND_3V, 1 << FD_256, MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 0, 0, 1}, {WINBOND_3V_NAME, FV_WINBOND, FMT_WINBOND, 1 << FD_256, MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 0, 0, 1}, {ATMEL_NAME, FV_ATMEL, FMT_ATMEL, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 0, 0, 0, 0, 0, 0}, {S25FLXXXP_NAME, FV_S25FLXXXX, FMT_S25FLXXXP, FD_LEGACY, MCS_STSPI, SFC_SE, FSS_64KB, 0, 0, 0, 0, 0, 0}, {S25FL116K_NAME, FV_S25FLXXXX, FMT_S25FL116K, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 1, 0, 0}, {MACRONIX_NAME, FV_MX25K16XXX, FMT_MX25K16XXX, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 0, 0, 0}, {MACRONIX_3V_NAME, FV_MX25K16XXX, FMT_MX25K16XXX, (1 << FD_256), MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 0, 0, 0}, {CYPRESS_3V_NAME, FV_S25FLXXXX, FMT_S25FLXXXL, 1 << FD_128, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 1, 0, 0}, /*{CYPRESS_3V_NAME, FV_S25FLXXXX, FMT_S25FLXXXL, 1 << FD_256, MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 0, 0, 0}, */ {ISSI_3V_NAME, FV_IS25LPXXX, FMT_IS25LPXXX, FD_LEGACY, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 0, 0, 0}, {MACRONIX_1V8_NAME, FV_MX25K16XXX, FMT_SST_25, (1 << FD_256), MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 0, 0, 0}, /* added by edwardg 06/09/2020 */ {ISSI_HUAWEY_NAME, FV_IS25LPXXX, FMT_IS25LPXXX, 1 << FD_256, MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 1, 1, 0}, {GIGA_3V_NAME, FV_GD25QXXX, FVT_GD25QXXX, 1 << FD_256, MCS_STSPI, SFC_4SSE, FSS_4KB, 1, 1, 1, 1, 1, 0}, {GIGA_3V_NAME, FV_GD25QXXX, FVT_GD25QXXX, 1 << FD_128, MCS_STSPI, SFC_SSE, FSS_4KB, 1, 1, 1, 1, 1, 0}}; int cntx_sst_get_log2size(u_int8_t density, int* log2spi_size) { switch (density) { case 0x41: *log2spi_size = 0x15; break; case 0x4A: *log2spi_size = 0x16; break; case 0x8D: *log2spi_size = 0x13; break; case 0x8E: *log2spi_size = 0x14; break; default: return MFE_UNSUPPORTED_FLASH_TOPOLOGY; } return 0; } int get_log2size_by_vendor_type_density(u_int8_t vendor, u_int8_t type, u_int8_t density, int* log2size) { if ((type == FMT_SST_25) && (vendor == FV_SST)) { return cntx_sst_get_log2size(density, log2size); } else { *log2size = density; } return MFE_OK; } int get_type_index_by_vendor_type_density(u_int8_t vendor, u_int8_t type, u_int8_t density, unsigned* type_index) { unsigned i = 0, arr_size = 0; arr_size = ARR_SIZE(g_flash_info_arr); for (i = 0; i < arr_size; i++) { flash_info_t* flash_info = &g_flash_info_arr[i]; if ((flash_info->vendor == vendor) && (flash_info->type == type) && ((flash_info->densities & (1 << density)) != 0)) { *type_index = i; return MFE_OK; } } return MFE_UNSUPPORTED_FLASH_TYPE; } void mf_flash_list(char* flash_arr, int flash_arr_size) { int i = 0; int arr_index = 0; int arr_size = ARR_SIZE(g_flash_info_arr); if (!flash_arr || (flash_arr_size < 1)) { return; } for (i = 0; i < arr_size; i++) { flash_info_t* flash_info = &g_flash_info_arr[i]; int name_len = strlen(flash_info->name); if (flash_arr_size - name_len <= 2) { /* Out of space, append \0 and return */ break; } strcpy(&flash_arr[arr_index], flash_info->name); arr_index += name_len; flash_arr_size -= name_len; if (i != arr_size - 1) { flash_arr[arr_index++] = ','; flash_arr[arr_index++] = ' '; flash_arr_size -= 2; } } flash_arr[arr_index] = '\0'; return; } int get_type_index_by_name(const char* type_name, unsigned* type_index) { unsigned i = 0, arr_size = 0; arr_size = ARR_SIZE(g_flash_info_arr); for (i = 0; i < arr_size; i++) { flash_info_t* flash_info = &g_flash_info_arr[i]; if (!strcmp(type_name, flash_info->name)) { *type_index = i; return MFE_OK; } } printf("-E- The flash name \"%s\" is unknown\n.", type_name); return MFE_UNSUPPORTED_FLASH_TYPE; } int is_no_flash_detected(u_int8_t type, u_int8_t vendor, u_int8_t capacity) { if (((type == 0xff) && (vendor == 0xff) && (capacity == 0xff)) || ((type == 0x0) && (vendor == 0x0) && (capacity == 0x0))) { return 1; } return 0; } int get_flash_info_by_res(mflash* mfl, unsigned* type_index, int* log2size, u_int8_t* no_flash, unsigned char* es_p) { int rc = 0; *no_flash = 0; rc = mfl->f_spi_status(mfl, SFC_RES, es_p); CHECK_RC(rc); FLASH_DPRINTF(("get_flash_info_by_res: es = %#x\n", *es_p)); if (((*es_p >= 0x10) && (*es_p < 0x17))) { *log2size = *es_p + 1; /* This should return the same result for any FD value from [FD_8..FD_128]. */ /* This is just to catch the FD_LEGACY bitmask. */ return get_type_index_by_vendor_type_density(FV_ST, FMT_ST_M25P, *log2size, type_index); } else if ((*es_p == 0xff) || (*es_p == 0x0)) { *no_flash = 1; } else { return MFE_UNSUPPORTED_FLASH_TYPE; } return MFE_OK; } int cntx_get_flash_info(mflash* mfl, flash_info_t* f_info, int* log2size, u_int8_t* no_flash) { int rc = 0; u_int8_t type = 0, capacity = 0, vendor = 0, no_flash_res = 0, no_flash_rdid = 0; unsigned char es = 0; unsigned type_index = 0; /* Assume there is a flash. */ *no_flash = 0; rc = cntx_spi_get_type(mfl, SFC_JEDEC, &vendor, &type, &capacity); CHECK_RC(rc); no_flash_rdid = is_no_flash_detected(type, vendor, capacity); FLASH_DPRINTF(("cntx_spi_get_type: rc: %#x, vendor=%#x, type=%#x, capacity=%#x\n", rc, vendor, type, capacity)); FLASH_DPRINTF(("rc = %d, no_flash_rdid = %d\n", rc, no_flash_rdid)); if (no_flash_rdid) { FLASH_DPRINTF(("no support for rdid\n")); /* RDID Failed due to: */ /* 1- RDID is not supported but RES is - Old flashes. */ /* 2- There is no Flash */ /* 3- Flash is not supported */ /* Trying RES */ rc = get_flash_info_by_res(mfl, &type_index, log2size, &no_flash_res, &es); if ((rc == 0) && (no_flash_res == 1)) { /* RES Succeeded due to: no flash, unsupported flash or old flash. */ *no_flash = 1; /* when no_flash_rdid == 0 then "1- RDID is not supported but RES is - Old flashes." */ } } else { /* RDID Succeded. */ rc = MFE_OK; if (get_log2size_by_vendor_type_density(vendor, type, capacity, log2size) != MFE_OK) { printf("-E- SST SPI flash #%d (vendor: %#x, type: %#x, capacity:%#x) is not supported.\n", get_bank_int(mfl), vendor, type, capacity); rc = MFE_UNSUPPORTED_FLASH_TOPOLOGY; } else if (get_type_index_by_vendor_type_density(vendor, type, *log2size, &type_index) != MFE_OK) { rc = MFE_UNSUPPORTED_FLASH_TYPE; } /* found supported flash if rc == MFE_OK at this point. */ } if (rc == MFE_UNSUPPORTED_FLASH_TYPE) { printf("-E- SPI flash #%d (vendor: %#x, memory type: %#x, es: %#x) is not supported.\n", get_bank_int(mfl), vendor, type, es); } FLASH_DPRINTF(("rc = %d, no_flash_res = %d, type_index = %d.\n", rc, no_flash_res, type_index)); if ((rc == MFE_OK) && (*no_flash == 0)) { memcpy(f_info, &g_flash_info_arr[type_index], sizeof(flash_info_t)); } /* FR #2742089 - we are requested to support Gigadevice GD25B256DFIGR flash of 32MB on CX4LX and CX5 */ /* These devices support 16MB flash types only, meaning they work in 3-bytes addr mode. */ /* So in that case we override the erase command matching 4-bytes addr (32MB) to */ /* erase command of 3-bytes addr */ if (((mfl->dm_dev_id == DeviceConnectX4LX) || (mfl->dm_dev_id == DeviceConnectX5)) && (f_info->vendor == FV_GD25QXXX)) { f_info->erase_command = SFC_SSE; } return rc; } int cntx_get_jedec_id_direct_access(mflash* mfl, u_int32_t* jedec_id_p) { int rc = 0; rc = mfl->f_int_spi_get_status_data(mfl, SFC_JEDEC, jedec_id_p, 4); *jedec_id_p = ___my_swab32(*jedec_id_p); FLASH_DPRINTF(("jedec_id = %#x\n", *jedec_id_p)); return rc; } int compare_flash_params(flash_params_t* flash_params, int bank_num, const char* type_name, int log2size) { if (strcmp(flash_params->type_name, type_name) != 0) { printf("-E- SPI flash #%d (type: %s)differs in type from SPI flash #%d(type: %s). " "All flash devices must be of the same type.\n", bank_num, type_name, bank_num - 1, flash_params->type_name); return MFE_UNSUPPORTED_FLASH_TOPOLOGY; } if (flash_params->log2size != log2size) { printf("-E- SPI flash #%d (log2size: %#x) differs in size from SPI flash #%d (log2size: %#x). " "All flash devices must be of the same size.\n", bank_num, log2size, bank_num - 1, flash_params->log2size); return MFE_UNSUPPORTED_FLASH_TOPOLOGY; } return MFE_OK; } int cntx_st_spi_get_status(mflash* mfl, u_int8_t op_type, u_int8_t* status) { u_int32_t flash_data = 0; int rc = 0; rc = mfl->f_int_spi_get_status_data(mfl, op_type, &flash_data, 1); CHECK_RC(rc); *status = EXTRACT(flash_data, 0, 8); return MFE_OK; } int get_num_of_banks_int(mflash* mfl) { int num = 0; if ((mfl->opts[MFO_USER_BANKS_NUM] == 0) && (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] != ATBM_NO) && ((num = get_num_of_banks(mfl->mf)) != -1)) { return num; /* if mfpa register is supported get the exact number of flash banks */ } return mfl->opts[MFO_NUM_OF_BANKS]; } int get_flash_params(mflash* mfl, flash_params_t* flash_params, flash_info_t* flash_info) { int num_of_flashes = get_num_of_banks_int(mfl); int spi_sel = 0, rc = 0; int params_were_set = 0; flash_info_t tmp_flash_info; memset(flash_params, 0, sizeof(flash_params_t)); memset(flash_info, 0, sizeof(flash_info_t)); memset(&tmp_flash_info, 0, sizeof(flash_info_t)); /* if number of flash banks is zero exit with error */ if (num_of_flashes == 0) { return MFE_NO_FLASH_DETECTED; } for (spi_sel = 0; spi_sel < num_of_flashes; spi_sel++) { int log2size = 0; u_int8_t no_flash = 0; const char* type_name; rc = set_bank(mfl, spi_sel); CHECK_RC(rc); rc = mfl->f_get_info(mfl, &tmp_flash_info, &log2size, &no_flash); CHECK_RC(rc); FLASH_DPRINTF( ("spi_sel = %d, num_of_flashes = %d, rc = %d, no_flash = %d\n", spi_sel, num_of_flashes, rc, no_flash)); if (no_flash == 1) { /* This bank is empty and also the following banks will be empty. */ if (flash_params->num_of_flashes == 0) { /* if we haven't detected any 'supported' flash, return an error. */ return MFE_NO_FLASH_DETECTED; } rc = set_bank(mfl, spi_sel - 1); /* set the last flash (flash_params->num_of_flashes >= 1) */ CHECK_RC(rc); break; } type_name = tmp_flash_info.name; if (params_were_set == 0) { memset(flash_params->type_name, 0, MAX_FLASH_NAME); strncpy(flash_params->type_name, type_name, MAX_FLASH_NAME - 1); flash_params->log2size = log2size; memcpy(flash_info, &tmp_flash_info, sizeof(flash_info_t)); params_were_set = 1; } else { rc = compare_flash_params(flash_params, spi_sel, type_name, log2size); CHECK_RC(rc); } /* Init SST flash. */ if (mfl->access_type == MFAT_MFILE) { if ((flash_info->vendor == FV_SST) && (flash_info->type == FMT_SST_25)) { rc = mfl->f_spi_write_status_reg(mfl, SST_STATUS_REG_VAL, SFC_WRSR, 1); CHECK_RC(rc); } else if ((flash_info->vendor == FV_ATMEL) && (flash_info->type == FMT_ATMEL)) { rc = mfl->f_spi_write_status_reg(mfl, ATMEL_STATUS_REG_VAL, SFC_WRSR, 1); CHECK_RC(rc); } } flash_params->num_of_flashes++; } return MFE_OK; } flash_access_commands_t gen_4byte_address_access_commands() { flash_access_commands_t flash_command; memset(&flash_command, 0, sizeof(flash_command)); flash_command.sfc_sector_erase = SFC_4SE; flash_command.sfc_subsector_erase = SFC_4SSE; flash_command.sfc_page_program = SFC_4PP; flash_command.sfc_read = SFC_4READ; flash_command.sfc_fast_read = SFC_4FAST_READ; return flash_command; } flash_access_commands_t gen_3byte_address_access_commands() { flash_access_commands_t flash_command; memset(&flash_command, 0, sizeof(flash_command)); flash_command.sfc_sector_erase = SFC_SE; flash_command.sfc_subsector_erase = SFC_SSE; flash_command.sfc_page_program = SFC_PP; flash_command.sfc_read = SFC_READ; flash_command.sfc_fast_read = SFC_FAST_READ; return flash_command; } /* @input: mfl */ /* @output: access_commands */ /* @return: MfError status */ MfError gen_access_commands(mflash* mfl, flash_access_commands_t* access_commands) { MfError status; if (!mfl || !access_commands) { return MFE_BAD_PARAMS; } memset(access_commands, 0, sizeof(*access_commands)); int four_byte_address_needed = is_four_byte_address_needed(mfl, &status); if (status != MFE_OK) { return status; } *access_commands = ((mfl->attr.log2_bank_size >= FD_256 && four_byte_address_needed) ? gen_4byte_address_access_commands() : gen_3byte_address_access_commands()); return MFE_OK; } int spi_fill_attr_from_params(mflash* mfl, flash_params_t* flash_params, flash_info_t* flash_info) { mfl->attr.log2_bank_size = flash_params->log2size; flash_access_commands_t access_commands; int rc = gen_access_commands(mfl, &access_commands); CHECK_RC(rc); mfl->attr.access_commands = access_commands; mfl->attr.bank_size = 1 << flash_params->log2size; mfl->attr.size = mfl->attr.bank_size * flash_params->num_of_flashes; mfl->attr.block_write = 16; /* In SPI context, this is the transaction size. Max is 16. */ mfl->attr.sector_size = flash_info->sector_size; mfl->attr.support_sub_and_sector = flash_info->support_sub_and_sector; mfl->attr.command_set = flash_info->command_set; mfl->attr.erase_command = flash_info->erase_command; mfl->attr.type_str = flash_info->name; mfl->attr.quad_en_support = flash_info->quad_en_support; mfl->attr.driver_strength_support = flash_info->driver_strength_support; mfl->attr.dummy_cycles_support = flash_info->dummy_cycles_support; mfl->attr.write_protect_support = flash_info->write_protected_support; mfl->attr.protect_sub_and_sector = flash_info->protect_sub_and_sector; mfl->attr.banks_num = flash_params->num_of_flashes; mfl->attr.vendor = flash_info->vendor; mfl->attr.type = flash_info->type; return MFE_OK; } #define GET_FLASH_RETRY 2 int st_spi_fill_attr(mflash* mfl, flash_params_t* flash_params) { int rc = 0; flash_params_t* cur_flash_params; flash_params_t tmp_flash_params; flash_info_t flash_info; unsigned type_index = 0; if (flash_params == NULL) { int i = 0; /* Get flash params from the flash itself */ cur_flash_params = &tmp_flash_params; while (i < GET_FLASH_RETRY) { rc = get_flash_params(mfl, cur_flash_params, &flash_info); if (rc != MFE_NO_FLASH_DETECTED) { break; } i++; } CHECK_RC(rc); } else { /* Get the flash params from the user. */ rc = get_type_index_by_name(flash_params->type_name, &type_index); CHECK_RC(rc); memcpy(&flash_info, &(g_flash_info_arr[type_index]), sizeof(flash_info_t)); cur_flash_params = flash_params; } /* Init the flash attr according to the flash parameters (which was wither given by the user or read from the flash) */ rc = spi_fill_attr_from_params(mfl, cur_flash_params, &flash_info); CHECK_RC(rc); FLASH_DPRINTF(("spi_size = %#x, log2spi_size = %#x, bank_size = %#x, flashes_num = %d\n", mfl->attr.size, mfl->attr.log2_bank_size, mfl->attr.bank_size, cur_flash_params->num_of_flashes)); return MFE_OK; } int read_chunks(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data, bool verbose) { int rc = 0; u_int8_t* p = (u_int8_t*)data; if (!mfl) { return MFE_BAD_PARAMS; } u_int32_t original_len = len; /* Note: */ /* Assuming read block is the same as write block size. */ /* This is true for current Mellanox devices SPI flash access implementation. */ /* Check for future devices. */ u_int32_t block_size = mfl->attr.block_write; u_int32_t block_mask = 0; /* TODO - Check MAX_WRITE_BUFFER_SIZE against block_size in open (or here) */ u_int8_t tmp_buff[MAX_WRITE_BUFFER_SIZE] = {0}; block_mask = ~(block_size - 1); u_int32_t perc = 0xffffffff; if (verbose) { printf("\33[2K\r"); /* clear the current line */ } while (len) { u_int32_t i = 0; u_int32_t prefix_pad_size = 0; u_int32_t suffix_pad_size = 0; u_int32_t block_addr = addr & block_mask; u_int32_t data_size = block_size; u_int8_t* block_data = p; /* */ /* First and last cycles (can be the same one) may not be block aligned. */ /* Check the status, and copy data to a padded temp bufer if not aligned. */ /* (there's an option to write partial buffer, but Intel reference code always */ /* writes full buffer, with pads if needed. I do the dame ...) */ /* */ prefix_pad_size = addr - block_addr; if ((addr & block_mask) == ((addr + len) & block_mask)) { suffix_pad_size = block_size - ((addr + len) % block_size); } if (suffix_pad_size || prefix_pad_size) { /* block exceeds given buffer - read to a temp bufer and */ /* copy the required data to user's bufer. */ data_size -= suffix_pad_size; data_size -= prefix_pad_size; block_data = tmp_buff; } rc = mfl->f_read_blk(mfl, block_addr, block_size, block_data, false); CHECK_RC(rc); if (suffix_pad_size || prefix_pad_size) { for (i = 0; i < data_size; i++) { p[i] = tmp_buff[prefix_pad_size + i]; } } /* */ /* loop advance */ /* */ addr += data_size; p += data_size; len -= data_size; if (verbose) { u_int32_t new_perc = 100 - 100 * (1.0 * len / original_len); if (new_perc != perc) { printf("\r%s%d%c", "Reading flash section: ", new_perc, '%'); fflush(stdout); perc = new_perc; } } } return MFE_OK; } /*////////////////////////////////////// */ /* */ /* InfiniHostIIILx spi access functions */ /* */ /*////////////////////////////////////// */ int gw_wait_ready(mflash* mfl, const char* msg) { u_int32_t gw_cmd = 0; u_int32_t cnt = 0; (void)msg; /* NOT USED FOR NOW */ do { /* Timeout checks */ if (++cnt > FLASH_CMD_CNT) { /* return errmsg("Flash gateway timeout: %s.", msg); */ return MFE_TIMEOUT; } MREAD4(mfl->gw_cmd_register_addr, &gw_cmd); } while (EXTRACT(gw_cmd, HBO_BUSY, 1)); return MFE_OK; } int empty_reset(mflash* mfl) { (void)mfl; /* avoid compiler warning */ return MFE_OK; } /*//////////////////////////////////////// */ /* */ /* ConnectX functions implementation */ /* */ /*//////////////////////////////////////// */ int empty_set_bank(mflash* mfl, u_int32_t bank) { /* NULL function - No actual work here - in ConnectX the curr_bank is written in the command word. */ (void)mfl; /* Avoid Compiler warning */ (void)bank; /* Avoid Compiler warning */ return MFE_OK; } /* * Consts needed to extract the needed data for the jedec ID * from various flash types. */ enum { JEDEC_ATMEL_CAPACITY_BITOFF = 16, JEDEC_ATMEL_CAPACITY_BITLEN = 5, JEDEC_ATMEL_TYPE_BITOFF = 21, JEDEC_ATMEL_TYPE_BITLEN = 3, JEDEC_VENDOR_ID_BITOFF = 24, JEDEC_VENDOR_ID_BITLEN = 8, JEDEC_CAPACITY_BITOFF = 8, JEDEC_CAPACITY_BITLEN = 8, JEDEC_TYPE_BITOFF = 16, JEDEC_TYPE_BITLEN = 8 }; int get_flash_info_for_atmel(u_int32_t jedec_id, u_int8_t* type, u_int8_t* density) { u_int8_t tmp_cap = 0; tmp_cap = EXTRACT(jedec_id, JEDEC_ATMEL_CAPACITY_BITOFF, JEDEC_ATMEL_CAPACITY_BITLEN); *type = EXTRACT(jedec_id, JEDEC_ATMEL_TYPE_BITOFF, JEDEC_ATMEL_TYPE_BITLEN); switch (tmp_cap) { case 0x4: *density = 0x13; break; case 0x5: *density = 0x14; break; case 0x6: *density = 0x15; break; case 0x7: *density = 0x16; break; default: return MFE_UNSUPPORTED_FLASH_TOPOLOGY; } return MFE_OK; } int get_info_from_jededc_id(u_int32_t jedec_id, u_int8_t* vendor, u_int8_t* type, u_int8_t* density) { int rc = 0; *vendor = EXTRACT(jedec_id, JEDEC_VENDOR_ID_BITOFF, JEDEC_VENDOR_ID_BITLEN); if (*vendor == FV_ATMEL) { rc = get_flash_info_for_atmel(jedec_id, type, density); CHECK_RC(rc); } else { *type = EXTRACT(jedec_id, JEDEC_TYPE_BITOFF, JEDEC_TYPE_BITLEN); *density = EXTRACT(jedec_id, JEDEC_CAPACITY_BITOFF, JEDEC_CAPACITY_BITLEN); } return MFE_OK; } int mf_check_spi_channel(mfile* mf) { int retVal = 1; u_int32_t value = 0; if (mread4(mf, 0x21e4, &value) != sizeof(u_int32_t)) { printf("-E- Cannot get SPI value.\n"); retVal = 0; } else { value = (value >> 8) & 3; if ((value != 0x1) && (value != 2)) { retVal = 0; } } printf("-D- Get SPI channel value %u.\n", value); return retVal; } int cntx_spi_get_type(mflash* mfl, u_int8_t op_type, u_int8_t* vendor, u_int8_t* type, u_int8_t* density) { u_int32_t flash_data = 0; int rc = 0; rc = mfl->f_int_spi_get_status_data(mfl, op_type, &flash_data, 4); CHECK_RC(rc); FLASH_DPRINTF(("jedec_info = %#x\n", flash_data)); /* Get type and some other info from jededc_id */ get_info_from_jededc_id(flash_data, vendor, type, density); FLASH_DPRINTF(("cntx_spi_get_type: vendor = %#x, type = %#x, capacity = %#x\n", *vendor, *type, *density)); return MFE_OK; } #define MFLASH_ENV "MFLASH_BANKS" int spi_get_num_of_flashes(int prev_num_of_flashes) { char* mflash_env; int num = 0; if (prev_num_of_flashes != -1) { return prev_num_of_flashes; } mflash_env = getenv(MFLASH_ENV); if (mflash_env) { num = atol(mflash_env); /* make sure the value makes sense */ num = (num > 16 || num <= 0) ? -1 : num; return num; } return -1; } int spi_update_num_of_banks(mflash* mfl, int prev_num_of_flashes) { int num_of_banks = 0; num_of_banks = spi_get_num_of_flashes(prev_num_of_flashes); if (num_of_banks == -1) { if (IS_SIB(mfl->attr.hw_dev_id) || IS_SEN(mfl->attr.hw_dev_id) || IS_SIB2(mfl->attr.hw_dev_id)) { mfl->opts[MFO_NUM_OF_BANKS] = 2; } else { mfl->opts[MFO_NUM_OF_BANKS] = 1; } mfl->opts[MFO_USER_BANKS_NUM] = 0; } else { mfl->opts[MFO_NUM_OF_BANKS] = num_of_banks; mfl->opts[MFO_USER_BANKS_NUM] = 1; } return MFE_OK; } int cntx_st_spi_page_read(mflash* mfl, u_int32_t addr, u_int32_t size, u_int8_t* data, bool verbose) { (void)verbose; int rc = 0; u_int32_t last_blk_addr = 0; u_int32_t last_addr = 0; u_int8_t is_first = 1; u_int8_t is_last = 0; u_int8_t* p = data; if (addr & ((u_int32_t)mfl->attr.block_write - 1)) { return MFE_BAD_ALIGN; } if (size & ((u_int32_t)mfl->attr.block_write - 1)) { return MFE_BAD_ALIGN; } /* printf("-D- cntx_st_spi_page_read(addr=%05x, u_int32_t size=%03x)\n", addr, size); */ last_addr = addr + size; last_blk_addr = last_addr - mfl->attr.block_write; while (addr < last_addr) { if (addr == last_blk_addr) { is_last = 1; } rc = mfl->f_st_spi_block_read_ex(mfl, addr, mfl->attr.block_write, p, is_first, is_last, false); CHECK_RC(rc); is_first = 0; addr += mfl->attr.block_write; p += mfl->attr.block_write; } return MFE_OK; } int cntx_st_spi_block_read(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, bool verbose) { (void)verbose; return mfl->f_st_spi_block_read_ex(mfl, blk_addr, blk_size, data, 1, 1, false); } int cntx_st_spi_page_write(mflash* mfl, u_int32_t addr, u_int32_t size, u_int8_t* data) { int rc = 0; u_int32_t last_blk_addr = 0; u_int32_t last_addr = 0; u_int8_t is_first = 1; u_int8_t is_last = 0; u_int8_t* p = data; WRITE_CHECK_ALIGN(addr, mfl->attr.block_write, size); last_addr = addr + size; last_blk_addr = last_addr - mfl->attr.block_write; while (addr < last_addr) { if (addr == last_blk_addr) { is_last = 1; } rc = mfl->f_st_spi_block_write_ex(mfl, addr, mfl->attr.block_write, p, is_first, is_last, size); CHECK_RC(rc); is_first = 0; addr += mfl->attr.block_write; p += mfl->attr.block_write; } return MFE_OK; } int cntx_sst_spi_byte_write(mflash* mfl, u_int32_t addr, u_int32_t size, u_int8_t* data) { int rc = 0; u_int32_t last_addr = 0; u_int8_t* p = data; WRITE_CHECK_ALIGN(addr, mfl->attr.block_write, size); last_addr = addr + size; while (addr < last_addr) { rc = mfl->f_sst_spi_block_write_ex(mfl, addr, mfl->attr.block_write, p); CHECK_RC(rc); addr++; p++; } return MFE_OK; } int cntx_st_spi_block_write(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data) { return mfl->f_st_spi_block_write_ex(mfl, blk_addr, blk_size, data, 1, 1, blk_size); } f_mf_write get_write_blk_func(int command_set) { if (command_set == MCS_STSPI) { return cntx_st_spi_page_write; } return cntx_sst_spi_byte_write; } int old_flash_lock(mflash* mfl, int lock_state) { /* Obtain GPIO Semaphore */ static u_int32_t cnt; u_int32_t word = 0; #if !defined(UEFI_BUILD) if (IS_CONNECTX_4TH_GEN_FAMILY(mfl->attr.hw_dev_id) && (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_NO)) { int rc = 0; if (lock_state) { if (!mfl->flash_prog_locked) { rc = trm_lock(mfl->trm, TRM_RES_HCR_FLASH_PROGRAMING, MAX_FLASH_PROG_SEM_RETRY_CNT); if (!rc) { mfl->flash_prog_locked = 1; } } } else { if (mfl->unlock_flash_prog_allowed) { rc = trm_unlock(mfl->trm, TRM_RES_HCR_FLASH_PROGRAMING); if (!rc) { mfl->flash_prog_locked = 0; } } } if (rc && (rc != TRM_STS_RES_NOT_SUPPORTED)) { return MFE_SEM_LOCKED; } } #endif /* !defined(UEFI) */ /* timeout at 5 seconds */ TIMER_INIT_AND_START(); if (lock_state) { if (mfl->is_locked) { return MFE_OK; } do { if (++cnt > GPIO_SEM_TRIES) { cnt = 0; printf("-E- Can not obtain Flash semaphore"); return MFE_SEM_LOCKED; } MREAD4(SEMAP63, &word); if (word) { msleep(1); } TIMER_CHECK(5, 0, cnt = 0; return MFE_SEM_LOCKED); } while (word); } else { MWRITE4(SEMAP63, 0); if (cnt > 1) { /* we are not alone... */ msleep(1); } cnt = 0; } mfl->is_locked = (lock_state != 0); return MFE_OK; } int cntx_flash_init_direct_access(mflash* mfl, flash_params_t* flash_params) { int rc = 0; u_int32_t tmp = 0; FLASH_ACCESS_DPRINTF(("cntx_flash_init_direct_access(): Flash init to use direct-access\n")); /* Without too much details: */ /* When the ConnectX boots up without a valid FW , the PCIE link may be unstable. */ /* In that case, turn off the auto reset on link down, so we'll be able to burn the device. */ MREAD4(0x41270, &tmp); if (tmp > 0xfff00000) { /* we are in livefish. */ u_int32_t tmp1 = 0; MREAD4(0xf3834, &tmp1); tmp1 = MERGE(tmp1, 2, 27, 2); MWRITE4(0xf3834, tmp1); } mfl->f_read = read_chunks; mfl->f_read_blk = cntx_st_spi_block_read; mfl->f_lock = old_flash_lock; /* Flash lock has same address and functionality as in InfiniHost. */ mfl->f_set_bank = empty_set_bank; mfl->f_get_info = cntx_get_flash_info; mfl->f_get_jedec_id = cntx_get_jedec_id_direct_access; mfl->unlock_flash_prog_allowed = 0; mfl->f_spi_status = cntx_st_spi_get_status; mfl->supp_sr_mod = 1; mfl->f_st_spi_erase_sect = cntx_st_spi_erase_sect; mfl->f_int_spi_get_status_data = cntx_int_spi_get_status_data; mfl->f_st_spi_block_write_ex = cntx_st_spi_block_write_ex; mfl->f_sst_spi_block_write_ex = cntx_sst_spi_block_write_ex; mfl->f_st_spi_block_read_ex = cntx_st_spi_block_read_ex; mfl->f_spi_write_status_reg = cntx_spi_write_status_reg; rc = st_spi_fill_attr(mfl, flash_params); CHECK_RC(rc); if ((mfl->attr.command_set == MCS_STSPI) || (mfl->attr.command_set == MCS_SSTSPI)) { mfl->f_reset = empty_reset; /* Null func */ mfl->f_write_blk = get_write_blk_func(mfl->attr.command_set); mfl->attr.page_write = 256; mfl->f_write = write_chunks; mfl->f_erase_sect = cntx_st_spi_erase_sect; } else { return MFE_UNSUPPORTED_FLASH_TYPE; } /* flash parameter access methods: */ mfl->f_get_quad_en = mf_get_quad_en_direct_access; mfl->f_set_quad_en = mf_set_quad_en_direct_access; mfl->f_get_driver_strength = mf_get_driver_strength_direct_access; mfl->f_set_driver_strength = mf_set_driver_strength_direct_access; mfl->f_get_dummy_cycles = mf_get_dummy_cycles_direct_access; mfl->f_set_dummy_cycles = mf_set_dummy_cycles_direct_access; mfl->f_get_write_protect = mf_get_write_protect_direct_access; mfl->f_set_write_protect = mf_set_write_protect_direct_access; rc = mfl->f_reset(mfl); return MFE_OK; } /* InfiniScale 4 (IS4) functions: */ int is4_init_gpios(mflash* mfl) { (void)mfl; return MFE_NOT_IMPLEMENTED; } int is4_flash_lock(mflash* mfl, int lock_state) { /* Obtain GPIO Semaphore */ static u_int32_t cnt; u_int32_t word = 0; u_int32_t lock_status = 0; /* timeout at 5 seconds */ TIMER_INIT_AND_START(); if (lock_state) { do { if (++cnt > GPIO_SEM_TRIES) { cnt = 0; printf("-E- Can not obtain Flash semaphore"); return MFE_SEM_LOCKED; } MREAD4(mfl->gw_cmd_register_addr, &word); lock_status = EXTRACT(word, HBO_LOCK, 1); if (lock_status) { msleep(1); } TIMER_CHECK(5, 0, cnt = 0; return MFE_SEM_LOCKED); } while (lock_status); } else { MWRITE4(mfl->gw_cmd_register_addr, 0); if (cnt > 1) { /* we are not alone */ msleep(1); } cnt = 0; } mfl->is_locked = (lock_state != 0); return MFE_OK; } int disable_gcm(mflash* mfl) { u_int32_t data = 0; MREAD4(mfl->gcm_en_addr, &data); data = MERGE(data, 0, 0, 1); MWRITE4(mfl->gcm_en_addr, data); return 0; } int disable_cache_replacement(mflash* mfl) { u_int32_t data = 0; MREAD4(mfl->cache_repacement_en_addr, &data); data = MERGE(data, 0, 0, 1); /* We put 0 in the first bit of the read data */ MWRITE4(mfl->cache_repacement_en_addr, data); return 0; } int restore_cache_replacemnt(mflash* mfl) { u_int32_t data = 0; MREAD4(mfl->cache_repacement_en_addr, &data); data = MERGE(data, 1, 0, 1); /* We put 1 in the first bit of the read data */ MWRITE4(mfl->cache_repacement_en_addr, data); return MFE_OK; } void init_freq_configuration_fields(mflash* mfl) { switch (mfl->dm_dev_id) { case DeviceConnectX7: mfl->is_freq_handle_required = true; mfl->core_clocks_per_usec_addr = 0x7f4; mfl->flash_div_addr = 0xfe804; break; case DeviceBlueField3: mfl->is_freq_handle_required = true; mfl->core_clocks_per_usec_addr = 0x7f4; mfl->flash_div_addr = 0xff804; break; default: break; } } int read_freq_configurations(mflash* mfl) { if (!mfl->core_clocks_per_usec) { /* If field was already read then we skip */ if (mread4(mfl->mf, mfl->core_clocks_per_usec_addr, &(mfl->core_clocks_per_usec)) != 4) { printf("-E- Failed to read core_clocks_per_usec\n"); return MFE_CR_ERROR; } } if (!mfl->orig_flash_div_reg) { /* If field was already read then we skip */ if (mread4(mfl->mf, mfl->flash_div_addr, &(mfl->orig_flash_div_reg)) != 4) { printf("-E- Failed to read flash_div_register\n"); return MFE_CR_ERROR; } } return MFE_OK; } int get_flash_freq(mflash* mfl, u_int32_t* freq) { int rc = read_freq_configurations(mfl); CHECK_RC(rc); u_int32_t flash_div = EXTRACT(mfl->orig_flash_div_reg, 0, 4); /* flash_div field is 4bits */ *freq = mfl->core_clocks_per_usec / (2 * (flash_div + 1)); return MFE_OK; } int write_flash_div(mflash* mfl, u_int32_t new_flash_div) { u_int32_t new_flash_div_register = MERGE(mfl->orig_flash_div_reg, new_flash_div, 0, 4); FLASH_DPRINTF(("Setting new flash_div = %d\n", new_flash_div)); if (mwrite4(mfl->mf, mfl->flash_div_addr, new_flash_div_register) != 4) { printf("-E- Writing 0x%08x to flash_div register failed\n", new_flash_div_register); return MFE_CR_ERROR; } return MFE_OK; } int decrease_flash_freq(mflash* mfl) { int rc = MFE_OK; if (mfl->is_freq_handle_required) { u_int32_t freq = 0; rc = get_flash_freq(mfl, &freq); CHECK_RC(rc); if (freq <= MAX_FLASH_FREQ) { /* Flash freq is already in a valid range for OCR operation */ mfl->is_freq_handle_required = false; /* Setting this will skip this logic next time we're here */ } else { /* Calculate new flash_div value to decrease flash frequency to valid value for OCR operation */ u_int32_t new_flash_div = EXTRACT(mfl->orig_flash_div_reg, 0, 4); /* flash_div field is 4bits */ FLASH_DPRINTF(( "Flash freq (%dMHz) higher than allowed (%dMHz) for OCR operation: core_clocks_per_usec = %d, flash_div = %d\n", freq, MAX_FLASH_FREQ, mfl->core_clocks_per_usec, new_flash_div)); while (freq > MAX_FLASH_FREQ) { new_flash_div++; /* Reducing freq by incrementing flash_div (incrementing by 1 should to be enough) */ freq = mfl->core_clocks_per_usec / (2 * (new_flash_div + 1)); } FLASH_DPRINTF(("Reducing flash freq to %dMHz, using new flash_div = %d\n", freq, new_flash_div)); rc = write_flash_div(mfl, new_flash_div); CHECK_RC(rc); mfl->is_freq_changed = true; } } return rc; } int restore_flash_freq(mflash* mfl) { int rc = MFE_OK; if (mfl->is_freq_changed) { u_int32_t orig_flash_div = EXTRACT(mfl->orig_flash_div_reg, 0, 4); /* flash_div field is 4bits */ FLASH_DPRINTF(("Restoring original flash_div = %d\n", orig_flash_div)); rc = write_flash_div(mfl, orig_flash_div); CHECK_RC(rc); mfl->is_freq_changed = false; } return rc; } int seventh_gen_flash_lock(mflash* mfl, int lock_state) { int rc = 0; if (lock_state == 1) { // lock the flash rc = is4_flash_lock(mfl, lock_state); CHECK_RC(rc); rc = disable_gcm(mfl); CHECK_RC(rc); rc = gw_wait_ready(mfl, "WAIT TO BUSY"); CHECK_RC(rc); } else { // unlock the flash // Restoring GCM is handled by FW rc = is4_flash_lock(mfl, lock_state); CHECK_RC(rc); } return MFE_OK; } int sixth_gen_flash_lock(mflash* mfl, int lock_state) { int rc = 0; if (lock_state == 1) { /* lock the flash */ rc = is4_flash_lock(mfl, lock_state); CHECK_RC(rc); rc = disable_gcm(mfl); CHECK_RC(rc); rc = disable_cache_replacement(mfl); CHECK_RC(rc); rc = decrease_flash_freq(mfl); CHECK_RC(rc); rc = gw_wait_ready(mfl, "WAIT TO BUSY"); CHECK_RC(rc); } else { /* unlock the flash */ rc = restore_flash_freq(mfl); CHECK_RC(rc); rc = restore_cache_replacemnt(mfl); CHECK_RC(rc); /* Restoring GCM is handled by FW */ rc = is4_flash_lock(mfl, lock_state); CHECK_RC(rc); } return MFE_OK; } int connectib_flash_lock(mflash* mfl, int lock_state) { int rc = 0; if (lock_state == 1) { /* lock the flash */ rc = is4_flash_lock(mfl, lock_state); CHECK_RC(rc); rc = disable_cache_replacement(mfl); CHECK_RC(rc); rc = gw_wait_ready(mfl, "WAIT TO BUSY"); CHECK_RC(rc); } else { /* unlock the flash */ rc = restore_cache_replacemnt(mfl); CHECK_RC(rc); rc = is4_flash_lock(mfl, lock_state); CHECK_RC(rc); } return MFE_OK; } #define SX_CS_SUPPORT_ADDR 0xF0420 #define HW_DEV_ID 0xf0014 #define CX5_EFUSE_ADDR 0xf0c0c #define CACHE_REP_OFF_RAVEN 0xf0440 #define CACHE_REP_CMD_RAVEN 0xf0448 #define CACHE_REP_OFF_NEW_GW_ADDR 0xf0484 #define CACHE_REP_CMD_NEW_GW_ADDR 0xf0488 int check_cache_replacement_guard(mflash* mfl, u_int8_t* needs_cache_replacement) { *needs_cache_replacement = 0; /* When we access via command interface, we assume there is a cache replacement! */ if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_MLNXOS_CMDIF) { if (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD]) { /* dont allow overidding cache replacement in mellanox OS env */ return MFE_OCR_NOT_SUPPORTED; } *needs_cache_replacement = 1; return MFE_OK; } if (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD] == 0) { u_int32_t off = 0, cmd = 0, data = 0; dm_dev_id_t devid_t = DeviceUnknown; u_int32_t devid = 0; u_int32_t revid = 0; int rc = dm_get_device_id(mfl->mf, &devid_t, &devid, &revid); if (rc) { return rc; } // TODO - fix for QTM3/CX8/ArcusE/BF4 /* Read the Cache replacement offset and cmd fields */ if ((devid_t == DeviceQuantum2) || (devid_t == DeviceQuantum3) || (devid_t == DeviceSpectrum4) || (devid_t == DeviceConnectX7) || (devid_t == DeviceConnectX8)) { MREAD4(CACHE_REP_OFF_NEW_GW_ADDR, &data); off = data; MREAD4(CACHE_REP_CMD_NEW_GW_ADDR, &data); cmd = EXTRACT(data, 24, 8); } else if (!dm_dev_is_raven_family_switch(devid_t)) { MREAD4(mfl->cache_rep_offset_field_addr, &data); off = EXTRACT(data, 0, 26); MREAD4(mfl->cache_rep_cmd_field_addr, &data); cmd = EXTRACT(data, 16, 8); } else { /* switches */ MREAD4(CACHE_REP_OFF_RAVEN, &data); off = EXTRACT(data, 0, 26); MREAD4(CACHE_REP_CMD_RAVEN, &data); cmd = EXTRACT(data, 16, 8); } FLASH_ACCESS_DPRINTF(("check_cache_replacement_guard(): off=%d, cmd=%d\n", off, cmd)); /* Check if the offset and cmd are zero in order to continue burning. */ if ((cmd != 0) || (off != 0)) { *needs_cache_replacement = 1; } } else { /* Here we ignore the cache replacement check */ /* We need to execute a write in order to do any needed cache replacement */ /* Reset the HW ID which is read only register. */ MWRITE4(HW_DEV_ID, 0); } return MFE_OK; } int mfl_com_lock(mflash* mfl) { int rc = 0; /* if we already locked the semaphore we dont want to re-lock it */ if (mfl->is_locked && ((mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] != ATBM_INBAND) || (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD] == 1))) { /* on inband w/o ocr we need to extend the lock */ return MFE_OK; } rc = mfl->f_lock(mfl, 1); if (!mfl->opts[MFO_IGNORE_SEM_LOCK]) { CHECK_RC(rc); } else { mfl->is_locked = 1; mfl->unlock_flash_prog_allowed = 1; } return MFE_OK; } int mf_release_semaphore(mflash* mfl) { mfl->unlock_flash_prog_allowed = 1; return release_semaphore(mfl, 1); } int release_semaphore(mflash* mfl, int ignore_writer_lock) { int rc = 0; if ((mfl->is_locked || mfl->flash_prog_locked) && mfl->f_lock && (!mfl->writer_lock || ignore_writer_lock)) { rc = mfl->f_lock(mfl, 0); CHECK_RC(rc); } return MFE_OK; } int gen6_flash_init_com(mflash* mfl, flash_params_t* flash_params) { int rc = 0; FLASH_ACCESS_DPRINTF(("gen6_flash_init_com(): Flash init to use direct-access\n")); /* TODO: Enable page_read (slightly better perf) */ mfl->f_read = read_chunks; mfl->f_read_blk = cntx_st_spi_block_read; /* need fix */ mfl->f_set_bank = empty_set_bank; mfl->f_get_info = cntx_get_flash_info; /* need fix */ mfl->f_get_jedec_id = cntx_get_jedec_id_direct_access; mfl->f_get_quad_en = mf_get_quad_en_direct_access; mfl->f_set_quad_en = mf_set_quad_en_direct_access; mfl->f_get_driver_strength = mf_get_driver_strength_direct_access; mfl->f_set_driver_strength = mf_set_driver_strength_direct_access; mfl->f_get_dummy_cycles = mf_get_dummy_cycles_direct_access; mfl->f_set_dummy_cycles = mf_set_dummy_cycles_direct_access; mfl->f_get_write_protect = mf_get_write_protect_direct_access; mfl->f_set_write_protect = mf_set_write_protect_direct_access; mfl->f_st_spi_erase_sect = new_gw_st_spi_erase_sect; mfl->f_int_spi_get_status_data = new_gw_int_spi_get_status_data; mfl->f_st_spi_block_write_ex = new_gw_st_spi_block_write_ex; mfl->f_sst_spi_block_write_ex = new_gw_sst_spi_block_write_ex; mfl->f_st_spi_block_read_ex = new_gw_st_spi_block_read_ex; mfl->f_spi_write_status_reg = new_gw_spi_write_status_reg; mfl->f_spi_status = cntx_st_spi_get_status; /* need fix */ mfl->supp_sr_mod = 1; rc = st_spi_fill_attr(mfl, flash_params); CHECK_RC(rc); if ((mfl->attr.command_set == MCS_STSPI) || (mfl->attr.command_set == MCS_SSTSPI)) { mfl->f_reset = empty_reset; /* Null func */ mfl->f_write_blk = get_write_blk_func(mfl->attr.command_set); mfl->attr.page_write = 256; mfl->f_write = write_chunks; mfl->f_erase_sect = new_gw_st_spi_erase_sect; } else { return MFE_UNSUPPORTED_FLASH_TYPE; } /* flash parameter access methods: */ rc = mfl->f_reset(mfl); return MFE_OK; } /* ConnectX and Is4 flash interfaces are identical (except lock function) */ /* Use same functions */ /* */ /* TODO: Unify fith ConnectX inif function */ int gen4_flash_init_com(mflash* mfl, flash_params_t* flash_params) { int rc = 0; FLASH_ACCESS_DPRINTF(("gen4_flash_init_com(): Flash init to use direct-access\n")); /* TODO: Enable page_read (slightly better perf) */ /* mfl->f_read = cntx_st_spi_page_read; */ mfl->f_read = read_chunks; mfl->f_read_blk = cntx_st_spi_block_read; mfl->f_set_bank = empty_set_bank; mfl->f_get_info = cntx_get_flash_info; mfl->f_st_spi_erase_sect = cntx_st_spi_erase_sect; mfl->f_get_jedec_id = cntx_get_jedec_id_direct_access; mfl->f_int_spi_get_status_data = cntx_int_spi_get_status_data; mfl->f_st_spi_block_write_ex = cntx_st_spi_block_write_ex; mfl->f_sst_spi_block_write_ex = cntx_sst_spi_block_write_ex; mfl->f_st_spi_block_read_ex = cntx_st_spi_block_read_ex; mfl->f_spi_write_status_reg = cntx_spi_write_status_reg; mfl->f_spi_status = cntx_st_spi_get_status; mfl->supp_sr_mod = 1; rc = st_spi_fill_attr(mfl, flash_params); CHECK_RC(rc); if ((mfl->attr.command_set == MCS_STSPI) || (mfl->attr.command_set == MCS_SSTSPI)) { mfl->f_reset = empty_reset; /* Null func */ /* mfl->f_write_blk = cntx_st_spi_block_write; */ mfl->f_write_blk = get_write_blk_func(mfl->attr.command_set); mfl->attr.page_write = 256; mfl->f_write = write_chunks; mfl->f_erase_sect = cntx_st_spi_erase_sect; } else { return MFE_UNSUPPORTED_FLASH_TYPE; } /* flash parameter access methods: */ mfl->f_get_quad_en = mf_get_quad_en_direct_access; mfl->f_set_quad_en = mf_set_quad_en_direct_access; mfl->f_get_driver_strength = mf_get_driver_strength_direct_access; mfl->f_set_driver_strength = mf_set_driver_strength_direct_access; mfl->f_get_dummy_cycles = mf_get_dummy_cycles_direct_access; mfl->f_set_dummy_cycles = mf_set_dummy_cycles_direct_access; mfl->f_get_write_protect = mf_get_write_protect_direct_access; mfl->f_set_write_protect = mf_set_write_protect_direct_access; rc = mfl->f_reset(mfl); return MFE_OK; } int is4_flash_init(mflash* mfl, flash_params_t* flash_params) { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_NO; mfl->f_lock = is4_flash_lock; return gen4_flash_init_com(mfl, flash_params); } static void flash_update_amos_gearbox_gw(mflash* mfl) { FLASH_ACCESS_DPRINTF(("flash_update_amos_gearbox_gw()\n")); mfl->gw_data_field_addr = HCR_FLASH_GEARBOX_DATA; mfl->gw_cmd_register_addr = HCR_FLASH_GEARBOX_CMD; mfl->gw_addr_field_addr = HCR_FLASH_GEARBOX_ADDR; mfl->cache_repacement_en_addr = HCR_FLASH_GEARBOX_CACHE_REPLACEMENT_EN_ADDR; mfl->cache_rep_cmd_field_addr = HCR_FLASH_GEARBOX_CACHE_REPLACEMENT_CMD; mfl->cache_rep_offset_field_addr = HCR_FLASH_GEARBOX_CACHE_REPLACEMENT_OFFSET; } int sx_flash_init_direct_access(mflash* mfl, flash_params_t* flash_params) { mfl->f_lock = is4_flash_lock; return gen4_flash_init_com(mfl, flash_params); } void update_seventh_gen_addrs(mflash* mfl) { // Registers addresses if (mfl->dm_dev_id == DeviceQuantum3) { mfl->gw_cmd_register_addr = HCR_7GEN_QTM3_FLASH_CMD; mfl->gw_data_field_addr = HCR_7GEN_QTM3_FLASH_DATA; mfl->gcm_en_addr = HCR_7GEN_QTM3_GCM_EN_ADDR; mfl->gw_addr_field_addr = HCR_7GEN_QTM3_FLASH_ADDR; mfl->gw_data_size_register_addr = HCR_7GEN_QTM3_FLASH_DATA_SIZE; } else if (mfl->dm_dev_id == DeviceConnectX8) { mfl->gw_cmd_register_addr = HCR_7GEN_CX7_FLASH_CMD; mfl->gw_data_field_addr = HCR_7GEN_CX7_FLASH_DATA; mfl->gcm_en_addr = HCR_7GEN_CX7_GCM_EN_ADDR; mfl->gw_addr_field_addr = HCR_7GEN_CX7_FLASH_ADDR; mfl->gw_data_size_register_addr = HCR_7GEN_CX7_FLASH_DATA_SIZE; } else if (mfl->dm_dev_id == DeviceArcusE) { mfl->gw_cmd_register_addr = HCR_7GEN_ARCUSE_FLASH_CMD; mfl->gw_data_field_addr = HCR_7GEN_ARCUSE_FLASH_DATA; mfl->gcm_en_addr = HCR_7GEN_ARCUSE_GCM_EN_ADDR; mfl->gw_addr_field_addr = HCR_7GEN_ARCUSE_FLASH_ADDR; mfl->gw_data_size_register_addr = HCR_7GEN_ARCUSE_FLASH_DATA_SIZE; } // Fields bit offsets and lengths mfl->gw_rw_bit_offset = HBO_7GEN_RW; mfl->gw_cmd_phase_bit_offset = HBO_7GEN_CMD_PHASE; mfl->gw_addr_phase_bit_offset = HBO_7GEN_ADDR_PHASE; mfl->gw_data_phase_bit_offset = HBO_7GEN_DATA_PHASE; mfl->gw_cs_hold_bit_offset = HBO_7GEN_CS_HOLD; mfl->gw_chip_select_bit_offset = HBO_7GEN_CHIP_SELECT; mfl->gw_addr_size_bit_offset = HBO_7GEN_ADDR_SIZE; mfl->gw_cmd_bit_offset = HBO_7GEN_CMD; mfl->gw_cmd_bit_len = HBS_7GEN_CMD; mfl->gw_busy_bit_offset = HBO_7GEN_BUSY; } void update_sixth_gen_addrs(mflash* mfl) { mfl->gw_addr_field_addr = HCR_NEW_GW_FLASH_ADDR; mfl->gw_addr_phase_bit_offset = HBO_ADDR_PHASE; mfl->gw_addr_size_bit_offset = HBO_NEW_GW_ADDR_SIZE; mfl->gw_busy_bit_offset = HBO_BUSY; mfl->gw_chip_select_bit_offset = HBO_NEW_GW_CHIP_SELECT; mfl->gw_rw_bit_offset = HBO_READ_OP; mfl->gw_cmd_phase_bit_offset = HBO_CMD_PHASE; mfl->gw_data_phase_bit_offset = HBO_DATA_PHASE; mfl->gw_data_size_bit_offset = HBO_DATA_SIZE; mfl->gw_data_size_bit_len = HBS_NEW_GW_DATA_SIZE; mfl->gw_cmd_bit_offset = HBO_CMD; mfl->gw_cmd_bit_len = HBS_CMD; mfl->gw_cs_hold_bit_offset = HBO_CS_HOLD; mfl->cache_repacement_en_addr = HCR_NEW_GW_CACHE_REPLACEMNT_EN_ADDR; mfl->gcm_en_addr = HCR_NEW_GW_GCM_EN_ADDR; init_freq_configuration_fields(mfl); } int seventh_gen_init_direct_access(mflash* mfl, flash_params_t* flash_params) { update_seventh_gen_addrs(mfl); mfl->f_lock = seventh_gen_flash_lock; return gen6_flash_init_com(mfl, flash_params); } int sixth_gen_init_direct_access(mflash* mfl, flash_params_t* flash_params) { update_sixth_gen_addrs(mfl); mfl->f_lock = sixth_gen_flash_lock; return gen6_flash_init_com(mfl, flash_params); } int fifth_gen_init_direct_access(mflash* mfl, flash_params_t* flash_params) { mfl->f_lock = connectib_flash_lock; return gen4_flash_init_com(mfl, flash_params); } int sx_get_flash_info(mflash* mfl, flash_info_t* f_info, int* log2size, u_int8_t* no_flash) { int rc = 0; int sem_rc = 0; sem_rc = mfl_com_lock(mfl); CHECK_RC(sem_rc); rc = sx_get_flash_info_by_type(mfl, f_info, log2size, no_flash); sem_rc = release_semaphore(mfl, 0); CHECK_RC(sem_rc); return rc; } int sx_get_jedec_id(mflash* mfl, u_int32_t* jedec_id_p) { int rc = 0; mfpa_command_args mfpa_args; memset(&mfpa_args, 0, sizeof(mfpa_args)); mfpa_args.flash_bank = get_bank_int(mfl); rc = check_access_type(mfl); CHECK_RC(rc); rc = com_get_jedec(mfl->mf, &mfpa_args); *jedec_id_p = mfpa_args.jedec_id; *jedec_id_p = ___my_swab32(*jedec_id_p); FLASH_DPRINTF(("jedec_id = %#x\n", *jedec_id_p)); return rc; } int sx_block_read(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, bool verbose) { (void)verbose; int rc = 0; int sem_rc = 0; sem_rc = mfl_com_lock(mfl); CHECK_RC(sem_rc); rc = sx_block_read_by_type(mfl, blk_addr, blk_size, data); sem_rc = release_semaphore(mfl, 0); CHECK_RC(sem_rc); return rc; } int sx_block_write(mflash* mfl, u_int32_t addr, u_int32_t size, u_int8_t* data) { int rc = 0; int sem_rc = 0; sem_rc = mfl_com_lock(mfl); CHECK_RC(sem_rc); rc = sx_block_write_by_type(mfl, addr, size, data); sem_rc = release_semaphore(mfl, 0); CHECK_RC(sem_rc); return rc; } int sx_flash_lock(mflash* mfl, int lock_state) { return sx_flash_lock_by_type(mfl, lock_state); } int sx_erase_sect(mflash* mfl, u_int32_t addr) { int rc = 0; int sem_rc = 0; sem_rc = mfl_com_lock(mfl); CHECK_RC(sem_rc); rc = sx_erase_sect_by_type(mfl, addr, mfl->attr.sector_size); sem_rc = release_semaphore(mfl, 0); CHECK_RC(sem_rc); return rc; } int empty_get_status(mflash* mfl, u_int8_t op_type, u_int8_t* status) { /* Avoid warnings */ (void)mfl; (void)op_type; (void)status; return MFE_NOT_SUPPORTED_OPERATION; } #define MAX_BLOCK_SIZE(hw_dev_id) \ (((hw_dev_id) == CX3_HW_ID || hw_dev_id == CX3_PRO_HW_ID) ? MAX_WRITE_BUFFER_SIZE : 128) static int get_the_max_reg_size(mfile* mf, maccess_reg_method_t reg_method) { u_int32_t max_reg_size = mget_max_reg_size(mf, reg_method); if (mf->flags & MDEVS_IB && (reg_method == MACCESS_REG_METHOD_SET) && (max_reg_size > INBAND_MAX_REG_SIZE)) { max_reg_size = INBAND_MAX_REG_SIZE; } return max_reg_size; } static int update_max_write_size(mflash* mfl) { u_int32_t max_reg_size = get_the_max_reg_size(mfl->mf, MACCESS_REG_METHOD_SET); u_int32_t max_block_size = MAX_BLOCK_SIZE(mfl->attr.hw_dev_id); if (!max_reg_size) { return MFE_BAD_PARAMS; } max_reg_size = NEAREST_POW2(max_reg_size); /* limit maximal write to max_block_size */ max_block_size = max_reg_size < max_block_size ? max_reg_size : max_block_size; mfl->attr.block_write = max_block_size; mfl->attr.page_write = max_block_size; return ME_OK; } /* access flash via FW using Flash Access Registers (either by INBAND/ICMD/TOOLS_HCR) */ int flash_init_inband_access(mflash* mfl, flash_params_t* flash_params) { int rc = 0; FLASH_ACCESS_DPRINTF(("flash_init_inband_access(): Flash init to use MFBA\n")); mfl->f_read = read_chunks; mfl->f_write = write_chunks; mfl->f_reset = empty_reset; mfl->f_set_bank = empty_set_bank; mfl->f_get_info = sx_get_flash_info; mfl->f_get_jedec_id = sx_get_jedec_id; mfl->f_lock = sx_flash_lock; mfl->f_erase_sect = sx_erase_sect; mfl->f_write_blk = sx_block_write; mfl->f_read_blk = sx_block_read; mfl->f_spi_status = empty_get_status; mfl->supp_sr_mod = 0; /* flash parameter access methods: */ mfl->f_get_quad_en = sx_get_quad_en; mfl->f_set_quad_en = sx_set_quad_en; mfl->f_get_driver_strength = sx_get_driver_strength; mfl->f_set_driver_strength = sx_set_driver_strength; mfl->f_get_dummy_cycles = sx_get_dummy_cycles; mfl->f_set_dummy_cycles = sx_set_dummy_cycles; mfl->f_get_write_protect = sx_get_write_protect; mfl->f_set_write_protect = sx_set_write_protect; mfl->f_st_spi_erase_sect = cntx_st_spi_erase_sect; mfl->f_int_spi_get_status_data = cntx_int_spi_get_status_data; mfl->f_st_spi_block_write_ex = cntx_st_spi_block_write_ex; mfl->f_sst_spi_block_write_ex = cntx_sst_spi_block_write_ex; mfl->f_st_spi_block_read_ex = cntx_st_spi_block_read_ex; mfl->f_spi_write_status_reg = cntx_spi_write_status_reg; /* Get the flash attribute */ rc = st_spi_fill_attr(mfl, flash_params); CHECK_RC(rc); update_max_write_size(mfl); CHECK_RC(rc); return MFE_OK; } int uefi_flash_init(mflash* mfl, flash_params_t* flash_params) { int rc = 0; FLASH_ACCESS_DPRINTF(("uefi_flash_init(): Flash init to use MFBA\n")); mfl->f_read = read_chunks; mfl->f_write = write_chunks; mfl->f_reset = empty_reset; mfl->f_set_bank = empty_set_bank; mfl->f_get_info = sx_get_flash_info; mfl->f_get_jedec_id = sx_get_jedec_id; mfl->f_lock = sx_flash_lock; mfl->f_erase_sect = sx_erase_sect; mfl->f_write_blk = sx_block_write; mfl->f_read_blk = sx_block_read; mfl->f_spi_status = empty_get_status; mfl->supp_sr_mod = 0; /* flash parameter access methods: */ mfl->f_get_quad_en = sx_get_quad_en; mfl->f_set_quad_en = sx_set_quad_en; mfl->f_get_driver_strength = sx_get_driver_strength; mfl->f_set_driver_strength = sx_set_driver_strength; mfl->f_get_dummy_cycles = sx_get_dummy_cycles; mfl->f_set_dummy_cycles = sx_set_dummy_cycles; mfl->f_get_write_protect = sx_get_write_protect; mfl->f_set_write_protect = sx_set_write_protect; mfl->f_st_spi_erase_sect = cntx_st_spi_erase_sect; mfl->f_int_spi_get_status_data = cntx_int_spi_get_status_data; mfl->f_st_spi_block_write_ex = cntx_st_spi_block_write_ex; mfl->f_sst_spi_block_write_ex = cntx_sst_spi_block_write_ex; mfl->f_st_spi_block_read_ex = cntx_st_spi_block_read_ex; mfl->f_spi_write_status_reg = cntx_spi_write_status_reg; /* Get the flash attribute */ rc = st_spi_fill_attr(mfl, flash_params); CHECK_RC(rc); update_max_write_size(mfl); CHECK_RC(rc); return MFE_OK; } int flash_init_fw_access(mflash* mfl, flash_params_t* flash_params) { /* This function checks the access type in order to select the access functions */ int rc = 0; if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] != ATBM_NO) { rc = flash_init_inband_access(mfl, flash_params); CHECK_RC(rc); } else { return MFE_DIRECT_FW_ACCESS_DISABLED; } if (mfl->opts[MFO_IGNORE_SEM_LOCK]) { rc = mfl->f_lock(mfl, 0); CHECK_RC(rc); } return MFE_OK; } int sx_flash_init(mflash* mfl, flash_params_t* flash_params) { int rc = 0; u_int8_t needs_cache_replacement = 0; rc = check_cache_replacement_guard(mfl, &needs_cache_replacement); CHECK_RC(rc); if (needs_cache_replacement) { rc = flash_init_fw_access(mfl, flash_params); CHECK_RC(rc); } else { rc = sx_flash_init_direct_access(mfl, flash_params); CHECK_RC(rc); } return MFE_OK; } int icmd_init(mflash* mfl) { /* Clear semaphore when asked to by flint or any tool using mflash */ if (mfl->opts[MFO_IGNORE_SEM_LOCK]) { if (icmd_clear_semaphore(mfl->mf) != ME_OK) { return MFE_CR_ERROR; } } return MFE_OK; } int tools_cmdif_init(mflash* mfl) { /* Clear semaphore when asked to by flint or any tool using mflash */ if (mfl->opts[MFO_IGNORE_SEM_LOCK]) { if (tools_cmdif_unlock_semaphore(mfl->mf) != ME_OK) { return MFE_CR_ERROR; } } return MFE_OK; } int seven_gen_flash_init(mflash* mfl, flash_params_t* flash_params) { int rc = MFE_OK; if (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD] == 0) { if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_ICMD) { rc = icmd_init(mfl); CHECK_RC(rc); } rc = flash_init_fw_access(mfl, flash_params); } else { if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_MLNXOS_CMDIF) { // dont allow overidding cache replacement in mellanox OS env return MFE_OCR_NOT_SUPPORTED; } rc = seventh_gen_init_direct_access(mfl, flash_params); } return rc; } int six_gen_flash_init(mflash* mfl, flash_params_t* flash_params) { int rc = 0; u_int8_t needs_cache_replacement = 0; rc = check_cache_replacement_guard(mfl, &needs_cache_replacement); CHECK_RC(rc); if (needs_cache_replacement) { if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_ICMD) { rc = icmd_init(mfl); CHECK_RC(rc); } rc = flash_init_fw_access(mfl, flash_params); CHECK_RC(rc); } else { rc = sixth_gen_init_direct_access(mfl, flash_params); CHECK_RC(rc); } return MFE_OK; } int fifth_gen_flash_init(mflash* mfl, flash_params_t* flash_params) { int rc = 0; u_int8_t needs_cache_replacement = 0; if (mfl->mf->gb_info.is_gb_mngr) { /* need to update GW offsets before calling to the check_cache_replacement_guard */ flash_update_amos_gearbox_gw(mfl); } else if (mfl->mf->gb_info.is_gearbox) { return MFE_OCR_NOT_SUPPORTED; /* Accessing flash GW of GB that's not manager is not possible */ } rc = check_cache_replacement_guard(mfl, &needs_cache_replacement); CHECK_RC(rc); if (needs_cache_replacement) { if (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_ICMD) { rc = icmd_init(mfl); CHECK_RC(rc); } rc = flash_init_fw_access(mfl, flash_params); CHECK_RC(rc); } else { rc = fifth_gen_init_direct_access(mfl, flash_params); CHECK_RC(rc); } return MFE_OK; } int cntx_flash_init(mflash* mfl, flash_params_t* flash_params) { int rc = 0; if ((mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] == ATBM_TOOLS_CMDIF) && (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD] == 0) && mfl->opts[MFO_CX3_FW_ACCESS_EN]) { #ifdef UEFI_BUILD /* tools CMDIF not supported in UEFI */ rc = ME_NOT_IMPLEMENTED; #else rc = tcif_cr_mbox_supported(mfl->mf); #endif /* init with direct access if not supported */ if ((rc == ME_NOT_IMPLEMENTED) || (rc == ME_CMDIF_NOT_SUPP)) { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_NO; return cntx_flash_init_direct_access(mfl, flash_params); } if ((rc == ME_SEM_LOCKED) && !mfl->opts[MFO_IGNORE_SEM_LOCK]) { return MFE_SEM_LOCKED; } rc = tools_cmdif_init(mfl); CHECK_RC(rc); rc = flash_init_fw_access(mfl, flash_params); CHECK_RC(rc); } else { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_NO; rc = cntx_flash_init_direct_access(mfl, flash_params); CHECK_RC(rc); } return MFE_OK; } /* */ /* Interface functions: */ /* */ #define CHECK_OUT_OF_RANGE(addr, len, size) \ { \ if (addr > size || addr + len > size) \ { \ return MFE_OUT_OF_RANGE; \ } \ } int mf_read(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data, bool verbose) { u_int32_t size = mfl->attr.size; if (((mfl->dm_dev_id == DeviceConnectX4LX) || (mfl->dm_dev_id == DeviceConnectX5)) && (mfl->attr.vendor == FV_GD25QXXX)) { size = 1 << FD_128; /* 16MB */ } /* printf("size = %#x, addr = %#x, len = %d\n", size, addr, len); */ CHECK_OUT_OF_RANGE(addr, len, size); /* printf("-D- mf_read: addr: %#x, len: %d\n", addr, len); */ return mfl->f_read(mfl, addr, len, data, verbose); } int mf_write(mflash* mfl, u_int32_t addr, u_int32_t len, u_int8_t* data) { u_int32_t size = mfl->attr.size; if (((mfl->dm_dev_id == DeviceConnectX4LX) || (mfl->dm_dev_id == DeviceConnectX5)) && (mfl->attr.vendor == FV_GD25QXXX)) { size = 1 << FD_128; /* 16MB */ } CHECK_OUT_OF_RANGE(addr, len, size); /* Locking semaphore for the entire existence of the mflash obj for write and erase only. */ int rc = mfl_com_lock(mfl); CHECK_RC(rc); mfl->writer_lock = 1; return mfl->f_write(mfl, addr, len, data); } void mf_set_cpu_utilization(mflash* mfl, int cpuPercent) { mfl->cputUtilizationApplied = 1; mfl->cpuPercent = cpuPercent; } static int erase_com(mflash* mfl, u_int32_t addr, unsigned int sector_size, int erase_cmd) { int rc = 0; u_int32_t backup_sector_size = 0; int backup_erase_command = 0; if (addr >= mfl->attr.size) { return MFE_OUT_OF_RANGE; } /* Locking semaphore for the entire existence of the mflash obj for write and erase only. */ rc = mfl_com_lock(mfl); CHECK_RC(rc); mfl->writer_lock = 1; backup_sector_size = mfl->attr.sector_size; backup_erase_command = mfl->attr.erase_command; mfl->attr.sector_size = sector_size; mfl->attr.erase_command = erase_cmd; rc = mfl->f_erase_sect(mfl, addr); mfl->attr.sector_size = backup_sector_size; mfl->attr.erase_command = backup_erase_command; return rc; } int mf_erase(mflash* mfl, u_int32_t addr) { return erase_com(mfl, addr, mfl->attr.sector_size, mfl->attr.erase_command); } int mf_erase_64k_sector(mflash* mfl, u_int32_t addr) { if (!mfl->attr.support_sub_and_sector) { return MFE_UNSUPPORTED_ERASE_OPERATION; } return erase_com(mfl, addr, FSS_64KB, mfl->attr.access_commands.sfc_sector_erase); } int mf_erase_4k_sector(mflash* mfl, u_int32_t addr) { if (!mfl->attr.support_sub_and_sector) { return MFE_UNSUPPORTED_ERASE_OPERATION; } return erase_com(mfl, addr, FSS_4KB, mfl->attr.access_commands.sfc_subsector_erase); } int mf_open_ignore_lock(mflash* mfl) { mfl->opts[MFO_IGNORE_SEM_LOCK] = 1; return mf_open_fw(mfl, (flash_params_t*)NULL, -1); } #define CR_LOCK_HW_ID 0xbad0cafe #ifndef MST_UL #define IS_PCI_DEV(access_type) (access_type == MST_PCICONF || access_type == MST_PCI) #else #define IS_PCI_DEV(access_type) (access_type == MTCR_ACCESS_CONFIG || access_type == MTCR_ACCESS_MEMORY) #endif BinIdT get_bin_id(mflash* mfl, u_int32_t hw_dev_id) { u_int32_t dword = 0; if (hw_dev_id == CX5_HW_ID) { if (mread4(mfl->mf, CX5_EFUSE_ADDR, &dword) == 4) { u_int8_t bin_speed = EXTRACT(dword, 30, 2); if (bin_speed == 0) { return CX5_LOW_BIN; } else if (bin_speed == 1) { return CX5_HIGH_BIN; } } } return UNKNOWN_BIN; } int get_dev_info(mflash* mfl) { u_int32_t dev_flags = 0; u_int32_t access_type = 0; int rc = 0; u_int32_t dev_id = 0; mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_NO; rc = mget_mdevs_flags(mfl->mf, &dev_flags); CHECK_RC(rc); rc = mget_mdevs_type(mfl->mf, &access_type); CHECK_RC(rc); MfError status; int icmdif_supported = is_icmdif_supported(mfl, &status); if (status != MFE_OK) { return status; } mfl->attr.bin_id = UNKNOWN_BIN; /* get hw id */ /* Special case for MLNX OS getting dev_id using REG MGIR */ if (dev_flags & MDEVS_MLNX_OS) { #ifndef UEFI_BUILD reg_access_status_t rc; struct reg_access_hca_mgir_ext mgir; memset(&mgir, 0, sizeof(mgir)); rc = reg_access_mgir(mfl->mf, REG_ACCESS_METHOD_GET, &mgir); /* printf("-D- RC[%s] -- REVID: %d -- DEVID: %d hw_dev_id: %d\n", m_err2str(rc), mgir.HWInfo.REVID, */ /* mgir.HWInfo.DEVID, mgir.HWInfo.hw_dev_id); */ if (rc) { dev_id = DeviceSwitchIB_HwId; mfl->attr.rev_id = 0; mfl->attr.hw_dev_id = DeviceSwitchIB_HwId; } else { dev_id = mgir.hw_info.hw_dev_id; if (dev_id == 0) { dev_id = DeviceSwitchIB_HwId; mfl->attr.hw_dev_id = DeviceSwitchIB_HwId; mfl->attr.rev_id = mgir.hw_info.device_hw_revision & 0xf; } else { mfl->attr.hw_dev_id = dev_id; mfl->attr.rev_id = 0; /* WA: MGIR should have also hw_rev_id and then we can use it. */ } } #else /* no MLNX_OS in UEFI, no mgir register in UEFI package */ /* we should never reach here */ return MFE_UNKOWN_ACCESS_TYPE; #endif } else { MREAD4(HW_DEV_ID, &dev_id); if (dev_id == CR_LOCK_HW_ID) { return MFE_LOCKED_CRSPACE; } mfl->attr.rev_id = (dev_id & 0xff0000) >> 16; mfl->attr.hw_dev_id = dev_id & 0xffff; mfl->attr.bin_id = get_bin_id(mfl, mfl->attr.hw_dev_id); if (icmdif_supported) { int mode = 0; if (!mf_get_secure_host(mfl, &mode) && mode) { return MFE_LOCKED_CRSPACE; } } } if (dev_flags & MDEVS_MLNX_OS) { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_MLNXOS_CMDIF; } else if (dev_flags & MDEVS_IB) { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_INBAND; } else { /* not mlnxOS or IB device - check HW ID to determine Access type */ if (icmdif_supported) { if (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD] == 0) { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_ICMD; } } else if (HAS_TOOLS_CMDIF(mfl->attr.hw_dev_id) && (IS_PCI_DEV(access_type))) { if (mfl->opts[MFO_IGNORE_CASHE_REP_GUARD] == 0) { mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] = ATBM_TOOLS_CMDIF; } } } return MFE_OK; } void set_gpio_toggle_conf_cx6(gpio_toggle_conf_cx6* conf) { conf->lock_addr = 0xf1004; conf->functional_enable0_addr = 0xfc028; conf->functional_enable1_addr = 0xfc024; conf->mode1_set_addr = 0xfc04c; conf->mode0_set_addr = 0xfc054; conf->dataset_addr = 0xfc014; } void set_gpio_toggle_conf_bf2(gpio_toggle_conf_cx6* conf) { conf->lock_addr = 0xf1084; conf->functional_enable0_addr = 0xfa028; conf->functional_enable1_addr = 0xfa024; conf->mode1_set_addr = 0xfa04c; conf->mode0_set_addr = 0xfa054; conf->dataset_addr = 0xfa014; } void set_gpio_toggle_conf_cx7(gpio_toggle_conf_cx7* conf) { conf->select_synced_data_out_addr = 0xf1078; conf->fw_control_set_addr = 0xf1100; conf->hw_data_in_addr = 0xf1078; conf->fw_output_enable_set_addr = 0xf1104; conf->fw_data_out_set_addr = 0xf1108; } bool toggle_flash_io3_gpio_cx6(mfile* mf, gpio_toggle_conf_cx6 conf) { FLASH_DPRINTF(("toggle_flash_io3_gpio_cx6\n")); /* Enable lock */ if (mwrite4(mf, conf.lock_addr, 0xd42f) != 4) { printf("-E- failed to enable GPIO lock\n"); return MFE_CR_ERROR; } /** Make sure GPIO 29 is controlled by FW (for our usage) instead of HW */ /* Enable functional_enable0 */ u_int32_t functional_enable0 = 0; if (mread4(mf, conf.functional_enable0_addr, &functional_enable0) != 4) { printf("-E- failed to read functional_enable0\n"); return MFE_CR_ERROR; } functional_enable0 = functional_enable0 & 0xdfffffff; if (mwrite4(mf, conf.functional_enable0_addr, functional_enable0) != 4) { printf("-E- failed to enable GPIO functional_enable0\n"); return MFE_CR_ERROR; } /* Enable functional_enable1 */ u_int32_t functional_enable1 = 0; if (mread4(mf, conf.functional_enable1_addr, &functional_enable1) != 4) { printf("-E- failed to read functional_enable1\n"); return MFE_CR_ERROR; } functional_enable1 = functional_enable1 & 0xdfffffff; if (mwrite4(mf, conf.functional_enable1_addr, functional_enable1) != 4) { printf("-E- failed to enable GPIO functional_enable1\n"); return MFE_CR_ERROR; } /* Write to mode1_set */ u_int32_t mode1_set = 0; if (mread4(mf, conf.mode1_set_addr, &mode1_set) != 4) { printf("-E- failed to read mode1_set\n"); return MFE_CR_ERROR; } mode1_set = mode1_set | 0x20000000; if (mwrite4(mf, conf.mode1_set_addr, mode1_set) != 4) { printf("-E- failed to write to mode1_set\n"); return MFE_CR_ERROR; } /** Write to GPIO 29 */ /* Write to mode0_set */ u_int32_t mode0_set = 0; if (mread4(mf, conf.mode0_set_addr, &mode0_set) != 4) { printf("-E- failed to read mode0_set\n"); return MFE_CR_ERROR; } mode0_set = mode0_set | 0x20000000; if (mwrite4(mf, conf.mode0_set_addr, mode0_set) != 4) { printf("-E- failed to write to mode0_set\n"); return MFE_CR_ERROR; } /* Write to dataset */ if (mwrite4(mf, conf.dataset_addr, 0x20000000) != 4) { printf("-E- failed to write to dataset\n"); return MFE_CR_ERROR; } return true; } bool toggle_flash_io3_gpio_cx7(mfile* mf, gpio_toggle_conf_cx7 conf) { FLASH_DPRINTF(("toggle_flash_io3_gpio_cx7\n")); /* write 0x0 to select_synced_data_out.16:1 */ u_int32_t select_synced_data_out = 0; if (mread4(mf, conf.select_synced_data_out_addr, &select_synced_data_out) != 4) { printf("-E- failed to read select_synced_data_out\n"); return MFE_CR_ERROR; } select_synced_data_out = select_synced_data_out & 0xfffeffff; if (mwrite4(mf, conf.select_synced_data_out_addr, select_synced_data_out) != 4) { printf("-E- failed to write 0x0 to select_synced_data_out.16:1\n"); return MFE_CR_ERROR; } /* write 0x3 to fw_control_set.28:2 */ u_int32_t fw_control_set = 0; if (mread4(mf, conf.fw_control_set_addr, &fw_control_set) != 4) { printf("-E- failed to read fw_control_set\n"); return MFE_CR_ERROR; } fw_control_set = fw_control_set | 0x30000000; if (mwrite4(mf, conf.fw_control_set_addr, fw_control_set) != 4) { printf("-E- failed to write 0x3 to fw_control_set.28:2\n"); return MFE_CR_ERROR; } /* write 0x3 to hw_data_in.4:2 */ u_int32_t hw_data_in = 0; if (mread4(mf, conf.hw_data_in_addr, &hw_data_in) != 4) { printf("-E- failed to read hw_data_in\n"); return MFE_CR_ERROR; } hw_data_in = hw_data_in | 0x00000030; if (mwrite4(mf, conf.hw_data_in_addr, hw_data_in) != 4) { printf("-E- failed to write 0x3 to hw_data_in.4:2\n"); return MFE_CR_ERROR; } /* write 0x3 to fw_output_enable_set.28:2 */ u_int32_t fw_output_enable_set = 0; if (mread4(mf, conf.fw_output_enable_set_addr, &fw_output_enable_set) != 4) { printf("-E- failed to read fw_output_enable_set\n"); return MFE_CR_ERROR; } fw_output_enable_set = fw_output_enable_set | 0x30000000; if (mwrite4(mf, conf.fw_output_enable_set_addr, fw_output_enable_set) != 4) { printf("-E- failed to write 0x3 to fw_output_enable_set.28:2\n"); return MFE_CR_ERROR; } /* write 0x3 to fw_data_out_set.28:2 */ u_int32_t fw_data_out_set = 0; if (mread4(mf, conf.fw_data_out_set_addr, &fw_data_out_set) != 4) { printf("-E- failed to read fw_data_out_set\n"); return MFE_CR_ERROR; } fw_data_out_set = fw_data_out_set | 0x30000000; if (mwrite4(mf, conf.fw_data_out_set_addr, fw_data_out_set) != 4) { printf("-E- failed to write 0x3 to fw_data_out_set.28:2\n"); return MFE_CR_ERROR; } return true; } bool force_flash_out_of_hold_state(mflash* mfl) { bool res = true; if ((getenv("FORCE_GPIO_TOGGLE") != NULL) || dm_is_livefish_mode(mfl->mf)) { switch (mfl->dm_dev_id) { case DeviceConnectX6: case DeviceConnectX6DX: { gpio_toggle_conf_cx6 gpio_toggle_conf = {0}; set_gpio_toggle_conf_cx6(&gpio_toggle_conf); res = toggle_flash_io3_gpio_cx6(mfl->mf, gpio_toggle_conf); break; } case DeviceBlueField2: { gpio_toggle_conf_cx6 gpio_toggle_conf = {0}; set_gpio_toggle_conf_bf2(&gpio_toggle_conf); res = toggle_flash_io3_gpio_cx6(mfl->mf, gpio_toggle_conf); break; } case DeviceConnectX7: case DeviceBlueField3: { gpio_toggle_conf_cx7 gpio_toggle_conf = {0}; set_gpio_toggle_conf_cx7(&gpio_toggle_conf); res = toggle_flash_io3_gpio_cx7(mfl->mf, gpio_toggle_conf); break; } default: break; } } return res; } /* Caller must zero the mflash struct before calling this func. */ int mf_open_fw(mflash* mfl, flash_params_t* flash_params, int num_of_banks) { int rc = 0; if (!mfl) { return MFE_BAD_PARAMS; } rc = set_bank_int(mfl, -1); CHECK_RC(rc); mfl->gw_data_field_addr = HCR_FLASH_DATA; mfl->gw_cmd_register_addr = HCR_FLASH_CMD; mfl->gw_addr_field_addr = HCR_FLASH_ADDR; mfl->cache_repacement_en_addr = HCR_CACHE_REPLACEMNT_EN_ADDR; mfl->gcm_en_addr = 0xffffffff; // Relevant to devices with new flash GW only mfl->cache_rep_offset_field_addr = HCR_FLASH_CACHE_REPLACEMENT_OFFSET; mfl->cache_rep_cmd_field_addr = HCR_FLASH_CACHE_REPLACEMENT_CMD; if (mfl->access_type == MFAT_MFILE) { rc = get_dev_info(mfl); CHECK_RC(rc); #ifndef UEFI_BUILD trm_sts trm_rc; trm_rc = trm_create(&(mfl->trm), mfl->mf); if (trm_rc) { return trm2mfe_err(trm_rc); } #endif mfl->opts[MFO_NUM_OF_BANKS] = spi_get_num_of_flashes(num_of_banks); rc = spi_update_num_of_banks(mfl, num_of_banks); CHECK_RC(rc); /** Before initializing flash methods (which including accessing the flash) */ /** we need to toggle GPIO to get flash out of HOLD state (relevant to second source flash Winbond W25Q256JV) */ rc = force_flash_out_of_hold_state(mfl); MfError status; int icmdif_supported = is_icmdif_supported(mfl, &status); if (status != MFE_OK) { return status; } if (IS_CONNECTX_4TH_GEN_FAMILY(mfl->attr.hw_dev_id)) { rc = cntx_flash_init(mfl, flash_params); } else if (icmdif_supported) { FlashGen flash_gen = get_flash_gen(mfl); if (flash_gen == LEGACY_FLASH) { rc = fifth_gen_flash_init(mfl, flash_params); } else if (flash_gen == SIX_GEN_FLASH) { rc = six_gen_flash_init(mfl, flash_params); } else if (flash_gen == SEVEN_GEN_FLASH) { rc = seven_gen_flash_init(mfl, flash_params); } else { rc = MFE_ERROR; } } else if (mfl->attr.hw_dev_id == 0xffff) { rc = MFE_HW_DEVID_ERROR; } else { rc = MFE_UNSUPPORTED_DEVICE; } CHECK_RC(rc); } else if (mfl->access_type == MFAT_UEFI) { mfl->opts[MFO_NUM_OF_BANKS] = 1; /* We have only one flash in ConnectIB and ConnectX-3 - Need to specify it better! */ rc = uefi_flash_init(mfl, flash_params); CHECK_RC(rc); } else { return MFE_UNKOWN_ACCESS_TYPE; } mfl->f_set_bank(mfl, 0); return MFE_OK; } int mf_opend_int(mflash** pmfl, void* access_dev, int num_of_banks, flash_params_t* flash_params, int ignore_cache_rep_guard, u_int8_t access_type, void* dev_extra, int cx3_fw_access) { int rc = 0; *pmfl = (mflash*)malloc(sizeof(mflash)); if (!*pmfl) { return MFE_NOMEM; } memset(*pmfl, 0, sizeof(mflash)); (*pmfl)->opts[MFO_IGNORE_CASHE_REP_GUARD] = ignore_cache_rep_guard; (*pmfl)->opts[MFO_CX3_FW_ACCESS_EN] = cx3_fw_access; (*pmfl)->access_type = access_type; if (access_type == MFAT_MFILE) { (*pmfl)->mf = (mfile*)access_dev; u_int32_t dev_id; u_int32_t chip_rev; rc = dm_get_device_id((*pmfl)->mf, &((*pmfl)->dm_dev_id), &dev_id, &chip_rev); CHECK_RC(rc); } else if (access_type == MFAT_UEFI) { /* open mfile as uefi */ if (!((*pmfl)->mf = mopen_fw_ctx(access_dev, ((uefi_dev_extra_t*)dev_extra)->fw_cmd_func, ((uefi_dev_extra_t*)dev_extra)->dma_func, &((uefi_dev_extra_t*)dev_extra)->dev_info))) { return MFE_NOMEM; } /* fill some device information */ (*pmfl)->attr.hw_dev_id = ((uefi_dev_extra_t*)dev_extra)->dev_info.hw_dev_id; (*pmfl)->attr.rev_id = ((uefi_dev_extra_t*)dev_extra)->dev_info.rev_id; rc = dm_get_device_id_offline((*pmfl)->attr.hw_dev_id, (*pmfl)->attr.rev_id, &((*pmfl)->dm_dev_id)); CHECK_RC(rc); } rc = mf_open_fw(*pmfl, flash_params, num_of_banks); return rc; } int mf_open_uefi(mflash** pmfl, uefi_Dev_t* uefi_dev, uefi_dev_extra_t* uefi_dev_extra) { return mf_opend_int(pmfl, (void*)uefi_dev, 4, (flash_params_t*)NULL, 0, MFAT_UEFI, (void*)uefi_dev_extra, 0); } int mf_open_int(mflash** pmfl, const char* dev, int num_of_banks, flash_params_t* flash_params, int ignore_cache_rep_guard, int cx3_fw_access) { mfile* mf; int rc = MFE_OK; if (!dev) { return MFE_BAD_PARAMS; } mf = mopen(dev); if (!mf) { return MFE_CR_ERROR; } if (ignore_cache_rep_guard) { /* relevant only if working with -ocr flag */ if (mf->gb_info.is_gb_mngr == 1) { if (mf_check_spi_channel(mf) != 1) { mclose(mf); printf("-E- Can not continue - SPI channel is not OK.\n"); return MFE_CR_ERROR; } } } rc = mf_opend_int(pmfl, (struct mfile_t*)mf, num_of_banks, flash_params, ignore_cache_rep_guard, MFAT_MFILE, NULL, cx3_fw_access); if ((*pmfl)) { (*pmfl)->opts[MFO_CLOSE_MF_ON_EXIT] = 1; } else { mclose(mf); } return rc; } int mf_open_adv(mflash** pmfl, const char* dev, int num_of_banks, flash_params_t* flash_params, int ignore_cache_rep_guard, int cx3_fw_access) { return mf_open_int(pmfl, dev, num_of_banks, flash_params, ignore_cache_rep_guard, cx3_fw_access); } int mf_open(mflash** pmfl, const char* dev, int num_of_banks, flash_params_t* flash_params, int ignore_cache_rep_guard) { return mf_open_int(pmfl, dev, num_of_banks, flash_params, ignore_cache_rep_guard, 0); } void mf_close(mflash* mfl) { if (!mfl) { return; } if (mfl->f_reset) { mfl->f_reset(mfl); } if (mfl->f_set_bank) { (void)set_bank(mfl, 0); } mfl->unlock_flash_prog_allowed = 1; /* we release if we have writer_lock or not doesnt matter on close ... */ release_semaphore(mfl, 1); if (mfl->mf && (mfl)->opts[MFO_CLOSE_MF_ON_EXIT]) { mclose(mfl->mf); } #ifndef UEFI_BUILD if (mfl->trm) { trm_destroy(mfl->trm); mfl->trm = (trm_ctx)NULL; } #endif free(mfl); return; } int mf_get_attr(mflash* mfl, flash_attr* attr) { *attr = mfl->attr; return MFE_OK; } const char* mf_err2str(int err_code) { switch (err_code) { case MFE_OK: return "MFE_OK"; case MFE_ERROR: return "MFE_GENERAL_ERROR"; case MFE_BAD_PARAMS: return "MFE_BAD_PARAMS"; case MFE_CR_ERROR: return "MFE_CR_ERROR"; case MFE_HW_DEVID_ERROR: return "Read a corrupted device id (0xffff). Probably HW/PCI access problem."; case MFE_INVAL: return "MFE_INVAL"; case MFE_NOT_IMPLEMENTED: return "MFE_NOT_IMPLEMENTED"; case MFE_UNSUPPORTED_FLASH_TOPOLOGY: return "MFE_UNSUPPORTED_FLASH_TOPOLOGY"; case MFE_UNSUPPORTED_FLASH_TYPE: return "MFE_UNSUPPORTED_FLASH_TYPE"; case MFE_CFI_FAILED: return "MFE_CFI_FAILED"; case MFE_TIMEOUT: return "MFE_TIMEOUT"; case MFE_ERASE_TIMEOUT: return "MFE_ERASE_TIMEOUT"; case MFE_WRITE_TIMEOUT: return "MFE_WRITE_TIMEOUT"; case MFE_ERASE_ERROR: return "MFE_ERASE_ERROR"; case MFE_WRITE_ERROR: return "MFE_WRITE_ERROR"; case MFE_BAD_ALIGN: return "MFE_BAD_ALIGN"; case MFE_SEM_LOCKED: return "MFE_SEM_LOCKED"; case MFE_VERIFY_ERROR: return "MFE_VERIFY_ERROR"; case MFE_NOMEM: return "MFE_NOMEM"; case MFE_OUT_OF_RANGE: return "MFE_OUT_OF_RANGE"; case MFE_CMD_SUPPORTED_INBAND_ONLY: return "Command supported over IB interface only."; case MFE_NO_FLASH_DETECTED: return "MFE_NO_FLASH_DETECTED"; case MFE_LOCKED_CRSPACE: return "MFE_HW_ACCESS_DISABLED"; case MFE_CMDIF_BAD_STATUS_ERR: return "MFE_CMDIF_BAD_STATUS_ERR"; case MFE_CMDIF_TIMEOUT_ERR: return "MFE_CMDIF_TIMEOUT_ERR"; case MFE_CMDIF_NOT_READY: return "MFE_CMDIF_NOT_READY"; case MFE_CMDIF_BAD_OP: return "MFE_CMDIF_BAD_OP"; case MFE_MISSING_KEY: return "No key was set"; case MFE_MISMATCH_KEY: return "The given key is incorrect"; case MFE_UNKNOWN_REG: return "MFE_UNKNOWN_REG"; case MFE_DIRECT_FW_ACCESS_DISABLED: return "MFE_DIRECT_FW_ACCESS_DISABLED"; case MFE_MANAGED_SWITCH_NOT_SUPPORTED: return "MFE_MANAGED_SWITCH_NOT_SUPPORTED"; case MFE_NOT_SUPPORTED_OPERATION: return "MFE_NOT_SUPPORTED_OPERATION"; case MFE_FLASH_NOT_EXIST: return "MFE_FLASH_NOT_EXIST"; case MFE_MISMATCH_PARAM: return "MFE_MISMATCH_PARAM"; case MFE_EXCEED_SUBSECTORS_MAX_NUM: return "MFE_EXCEED_SUBSECTORS_MAX_NUM"; case MFE_EXCEED_SECTORS_MAX_NUM: return "MFE_EXCEED_SECTORS_MAX_NUM"; case MFE_SECTORS_NUM_NOT_POWER_OF_TWO: return "MFE_SECTORS_NUM_NOT_POWER_OF_TWO"; case MFE_SECTORS_NUM_MORE_THEN_0_LESS_THEN_4: return "Can not protect 1 or 2 blocks in this flash. Minimum is 4."; case MFE_UNKOWN_ACCESS_TYPE: return "MFE_UNKOWN_ACCESS_TYPE"; case MFE_UNSUPPORTED_DEVICE: return "MFE_UNSUPPORTED_DEVICE"; case MFE_UNSUPPORTED_ERASE_OPERATION: return "MFE_UNSUPPORTED_ERASE_OPERATION"; case MFE_OLD_DEVICE_TYPE: return "MFE_OLD_DEVICE_TYPE"; case MFE_ICMD_INIT_FAILED: return "MFE_ICMD_INIT_FAILED"; case MFE_ICMD_NOT_SUPPORTED: return "MFE_ICMD_NOT_SUPPORTED"; case MFE_HW_ACCESS_NOT_SUPP: return "Secure host mode is not enabled in this FW."; case MFE_MAD_SEND_ERR: return "MFE_MAD_SEND_ERR"; case MFE_ICMD_BAD_PARAM: return "MFE_ICMD_BAD_PARAM"; case MFE_ICMD_INVALID_OPCODE: return "MFE_ICMD_INVALID_OPCODE"; case MFE_ICMD_INVALID_CMD: return "MFE_ICMD_INVALID_CMD"; case MFE_ICMD_OPERATIONAL_ERROR: return "MFE_ICMD_OPERATIONAL_ERROR"; case MFE_DATA_IS_OTP: return "The data you are trying to write is OTP and have already been programmed."; case MFE_REG_ACCESS_BAD_METHOD: return "MFE_REG_ACCESS_BAD_METHOD"; case MFE_REG_ACCESS_NOT_SUPPORTED: return "MFE_REG_ACCESS_NOT_SUPPORTED"; case MFE_REG_ACCESS_DEV_BUSY: return "MFE_REG_ACCESS_DEV_BUSY"; case MFE_REG_ACCESS_VER_NOT_SUPP: return "MFE_REG_ACCESS_VER_NOT_SUPP"; case MFE_REG_ACCESS_UNKNOWN_TLV: return "MFE_REG_ACCESS_UNKNOWN_TLV"; case MFE_REG_ACCESS_REG_NOT_SUPP: return "MFE_REG_ACCESS_REG_NOT_SUPP"; case MFE_REG_ACCESS_CLASS_NOT_SUPP: return "MFE_REG_ACCESS_CLASS_NOT_SUPP"; case MFE_REG_ACCESS_METHOD_NOT_SUPP: return "MFE_REG_ACCESS_METHOD_NOT_SUPP"; case MFE_REG_ACCESS_BAD_PARAM: return "MFE_REG_ACCESS_BAD_PARAM"; case MFE_REG_ACCESS_RES_NOT_AVLBL: return "MFE_REG_ACCESS_RESOURCE_NOT_AVAILABLE"; case MFE_REG_ACCESS_MSG_RECPT_ACK: return "MFE_REG_ACCESS_MSG_RECPT_ACK"; case MFE_REG_ACCESS_UNKNOWN_ERR: return "MFE_REG_ACCESS_UNKNOWN_ERR"; case MFE_REG_ACCESS_SIZE_EXCCEEDS_LIMIT: return "MFE_REG_ACCESS_SIZE_EXCCEEDS_LIMIT"; case MFE_PCICONF: return "Access to device should be through configuration cycles."; case MFE_ILLEGAL_BANK_NUM: return "MFE_ILLEGAL_BANK_NUM"; case MFE_OCR_NOT_SUPPORTED: return "Direct flash access is not supported."; default: return "Unknown error"; } } #ifndef UEFI_BUILD int trm2mfe_err(trm_sts rc) { switch (rc) { case TRM_STS_DEV_NOT_SUPPORTED: return MFE_UNSUPPORTED_DEVICE; case TRM_STS_CR_ACCESS_ERR: return MFE_CR_ERROR; case TRM_STS_MEM_ERROR: return MFE_NOMEM; default: return MFE_ERROR; } } #endif int mf_set_opt(mflash* mfl, MfOpt opt, int val) { if (((int)opt < 0) || (opt >= MFO_LAST)) { return MFE_BAD_PARAMS; } mfl->opts[opt] = val; return MFE_OK; } int mf_get_opt(mflash* mfl, MfOpt opt, int* val) { if (((int)opt < 0) || (opt >= MFO_LAST)) { return MFE_BAD_PARAMS; } *val = mfl->opts[opt]; return MFE_OK; } int mf_cr_read(mflash* mfl, u_int32_t cr_addr, u_int32_t* data) { if (mread4(mfl->mf, cr_addr, data) != 4) { return MFE_CR_ERROR; } return MFE_OK; } int mf_cr_write(mflash* mfl, u_int32_t cr_addr, u_int32_t data) { if (mwrite4(mfl->mf, cr_addr, data) != 4) { return MFE_CR_ERROR; } return MFE_OK; } int mf_set_reset_flash_on_warm_reboot(mflash* mfl) { int rc; u_int32_t set_reset_bit_dword_addr = 0; int set_reset_bit_offset; u_int32_t set_reset_bit_dword = 0; switch (mfl->dm_dev_id) { case DeviceConnectX3: case DeviceConnectX3Pro: case DeviceConnectIB: case DeviceSwitchIB: case DeviceSwitchIB2: case DeviceQuantum: case DeviceQuantum2: case DeviceQuantum3: case DeviceConnectX7: case DeviceBlueField3: case DeviceConnectX8: case DeviceBlueField4: case DeviceSpectrum4: case DeviceAbirGearBox: return MFE_OK; case DeviceSpectrum: case DeviceConnectX4: case DeviceConnectX4LX: case DeviceConnectX5: case DeviceBlueField: set_reset_bit_dword_addr = 0xf0204; set_reset_bit_offset = 1; break; case DeviceConnectX6: case DeviceConnectX6DX: case DeviceConnectX6LX: case DeviceBlueField2: case DeviceSpectrum2: case DeviceSpectrum3: case DeviceGearBox: case DeviceGearBoxManager: set_reset_bit_dword_addr = 0xf0c28; set_reset_bit_offset = 2; break; default: return MFE_UNSUPPORTED_DEVICE; } FLASH_DPRINTF(("mflash::mf_set_reset_flash_on_warm_reboot setting power_boot_partial_reset at addr 0x%x.%d\n", set_reset_bit_dword_addr, set_reset_bit_offset)); rc = mf_cr_read(mfl, set_reset_bit_dword_addr, &set_reset_bit_dword); CHECK_RC(rc); set_reset_bit_dword = MERGE(set_reset_bit_dword, 1, set_reset_bit_offset, 1); return mf_cr_write(mfl, set_reset_bit_dword_addr, set_reset_bit_dword); } int mf_update_boot_addr(mflash* mfl, u_int32_t boot_addr) { int rc; u_int32_t boot_cr_space_address; int offset_in_address; switch (mfl->dm_dev_id) { case DeviceConnectX3: case DeviceConnectX3Pro: case DeviceConnectIB: case DeviceSwitchIB: case DeviceSpectrum: case DeviceConnectX4: case DeviceConnectX4LX: case DeviceSwitchIB2: boot_cr_space_address = 0xf0000; offset_in_address = 8; break; case DeviceConnectX5: case DeviceBlueField: boot_cr_space_address = 0xf00c0; offset_in_address = 0; break; case DeviceConnectX6: case DeviceConnectX6DX: case DeviceConnectX6LX: case DeviceQuantum: case DeviceBlueField2: case DeviceSpectrum2: case DeviceSpectrum3: case DeviceGearBox: case DeviceGearBoxManager: boot_cr_space_address = 0xf0080; offset_in_address = 0; break; case DeviceAbirGearBox: boot_cr_space_address = 0xf1400; offset_in_address = 0; break; case DeviceSpectrum4: case DeviceQuantum2: case DeviceQuantum3: boot_cr_space_address = 0xf1000; offset_in_address = 0; break; case DeviceConnectX7: case DeviceBlueField3: case DeviceConnectX8: case DeviceBlueField4: boot_cr_space_address = 0xf2000; offset_in_address = 0; break; default: return MFE_UNSUPPORTED_DEVICE; } if ((mfl->access_type != MFAT_UEFI) && (mfl->opts[MFO_FW_ACCESS_TYPE_BY_MFILE] != ATBM_MLNXOS_CMDIF)) { /* the boot addr will be updated directly via cr-space */ FLASH_DPRINTF(("mflash::mf_update_boot_addr setting boot_start_address at addr 0x%x to 0x%x\n", boot_cr_space_address, boot_addr << offset_in_address)); rc = mf_cr_write(mfl, boot_cr_space_address, boot_addr << offset_in_address); CHECK_RC(rc); return mf_set_reset_flash_on_warm_reboot(mfl); } else { /* the boot addr will be updated via reg */ return mf_update_boot_addr_by_type(mfl, boot_addr); } } int mf_read_modify_status_winbond(mflash* mfl, u_int8_t bank_num, u_int8_t is_first_status_reg, u_int8_t param, u_int8_t offset, u_int8_t size) { u_int8_t status1 = 0, status2 = 0, use_rdsr2 = 0; u_int32_t status = 0; u_int8_t bytes_to_write = 1; int rc = 0; rc = set_bank_int(mfl, bank_num); CHECK_RC(rc); if (((mfl->attr.vendor == FV_WINBOND) && (mfl->attr.type == FMT_WINBOND)) || ((mfl->attr.vendor == FV_S25FLXXXX) && ((mfl->attr.type == FMT_S25FL116K) || (mfl->attr.type == FMT_S25FLXXXL))) || ((mfl->attr.vendor == FV_MX25K16XXX) && (mfl->attr.type == FMT_MX25K16XXX))) { /* * if we have 2 status registers, winbond are allowing us to write both of them * in a single command WRSR status_reg1 located in MSB, status_reg2 after status_reg1 */ use_rdsr2 = 1; } /* Read register status */ rc = mfl->f_spi_status(mfl, SFC_RDSR, &status1); CHECK_RC(rc); if (use_rdsr2) { if (mfl->attr.vendor == FV_MX25K16XXX) { rc = mfl->f_spi_status(mfl, SFC_RDCR, &status2); CHECK_RC(rc); } else { rc = mfl->f_spi_status(mfl, SFC_RDSR2, &status2); CHECK_RC(rc); } status = MERGE(0, status2, 0, 8); bytes_to_write = 2; } /* Prepare the read status word */ status = MERGE(status, status1, 8, 8); /* Modify the status according to the function arguments */ status = MERGE(status, param, offset + is_first_status_reg * 8, size); /* fix status register in case we dont need to write status register 2 */ if (bytes_to_write == 1) { status = status >> 8; } /* Write register status */ if (mfl->attr.vendor == FV_GD25QXXX) { rc = mfl->f_spi_write_status_reg(mfl, status, SFC_WRSR_GIGA, bytes_to_write); } else { rc = mfl->f_spi_write_status_reg(mfl, status, SFC_WRSR, bytes_to_write); } CHECK_RC(rc); return MFE_OK; } /* read/write_cmd - command value for reading/writing from/to status register 1/2/3 */ /* val - new value to be written */ /* offset - destination bit offset */ /* size - bit length */ /* bytes_num - status register size in bytes */ int mf_read_modify_status_new(mflash* mfl, u_int8_t bank_num, u_int8_t read_cmd, u_int8_t write_cmd, u_int8_t val, u_int8_t offset, u_int8_t size, u_int8_t bytes_num) { int rc = 0; u_int32_t status = 0; rc = set_bank_int(mfl, bank_num); CHECK_RC(rc); rc = mfl->f_int_spi_get_status_data(mfl, read_cmd, &status, bytes_num); CHECK_RC(rc); status = MERGE(status, val, offset, size); rc = mfl->f_spi_write_status_reg(mfl, status, write_cmd, bytes_num); CHECK_RC(rc); return MFE_OK; } int mf_get_param_int(mflash* mfl, u_int8_t* param_p, u_int8_t cmd, u_int8_t offset, u_int8_t bit_size, u_int8_t bytes_num, u_int8_t enabled_val) { u_int32_t status = 0, is_first = 1, bank = 0; int rc = 0; for (bank = 0; bank < mfl->attr.banks_num; bank++) { u_int8_t curr_val; rc = set_bank_int(mfl, bank); CHECK_RC(rc); rc = mfl->f_int_spi_get_status_data(mfl, cmd, &status, bytes_num); CHECK_RC(rc); curr_val = EXTRACT(status, offset, bit_size); if (bit_size == 1) { curr_val = (curr_val == enabled_val); } if (is_first) { *param_p = curr_val; is_first = 0; } else { if (*param_p != curr_val) { return MFE_MISMATCH_PARAM; } } } return MFE_OK; } int mf_set_dummy_cycles_direct_access(mflash* mfl, u_int8_t num_of_cycles) { if (!mfl || (num_of_cycles < 1) || (num_of_cycles > 15)) { return MFE_BAD_PARAMS; } int bank = 0, rc = 0; if (!(mfl->attr.dummy_cycles_support && mfl->supp_sr_mod)) { return MFE_NOT_SUPPORTED_OPERATION; } for (bank = 0; bank < mfl->attr.banks_num; bank++) { rc = mf_read_modify_status_new(mfl, bank, SFC_RDNVR, SFC_WRNVR, num_of_cycles, DUMMY_CYCLES_OFFSET_ST, 4, 2); CHECK_RC(rc); } return MFE_OK; } int mf_get_dummy_cycles_direct_access(mflash* mfl, u_int8_t* dummy_cycles_p) { if (!mfl || !dummy_cycles_p) { return MFE_BAD_PARAMS; } if (!(mfl->attr.dummy_cycles_support && mfl->supp_sr_mod)) { return MFE_NOT_SUPPORTED_OPERATION; } return mf_get_param_int(mfl, dummy_cycles_p, SFC_RDNVR, DUMMY_CYCLES_OFFSET_ST, 4, 2, 0); return MFE_OK; } int mf_set_driver_strength_direct_access(mflash* mfl, u_int8_t driver_strength) { if (!mfl) { return MFE_BAD_PARAMS; } if ((driver_strength != DRIVER_STRENGTH_VAL_25_WINBOND) && (driver_strength != DRIVER_STRENGTH_VAL_50_WINBOND) && (driver_strength != DRIVER_STRENGTH_VAL_75_WINBOND) && (driver_strength != DRIVER_STRENGTH_VAL_100_WINBOND)) { return MFE_BAD_PARAMS; } if (!(mfl->attr.driver_strength_support && mfl->supp_sr_mod)) { return MFE_NOT_SUPPORTED_OPERATION; } int bank = 0, rc = MFE_OK; for (; bank < mfl->attr.banks_num; bank++) { if (mfl->attr.vendor == FV_WINBOND) { rc = mf_read_modify_status_new( mfl, bank, SFC_RDSR3_WINBOND, /* mflash, bank num, status-register-3 read cmd */ SFC_WRSR3_WINBOND, driver_strength, /* status-register-3 write cmd, driver-strength new val */ DRIVER_STRENGTH_OFFSET_WINBOND, /* driver-strength bit offset */ DRIVER_STRENGTH_BIT_LEN_WINBOND, 1); /* driver-strength bit length, status-register byte len */ CHECK_RC(rc); } else { return MFE_NOT_IMPLEMENTED; } } return MFE_OK; } int mf_get_driver_strength_direct_access(mflash* mfl, u_int8_t* driver_strength_p) { if (!mfl || !driver_strength_p) { return MFE_BAD_PARAMS; } if (!(mfl->attr.driver_strength_support && mfl->supp_sr_mod)) { return MFE_NOT_SUPPORTED_OPERATION; } int rc = MFE_OK; if (mfl->attr.vendor == FV_WINBOND) { rc = mf_get_param_int(mfl, driver_strength_p, SFC_RDSR3_WINBOND, /* mflash, output pointer, status-register-3 read cmd */ DRIVER_STRENGTH_OFFSET_WINBOND, /* driver-strength bit offset */ DRIVER_STRENGTH_BIT_LEN_WINBOND, /* driver-strength bit length */ 1, 0); /* status-register byte len, don't-care */ } else { rc = MFE_NOT_IMPLEMENTED; } return rc; } int mf_set_quad_en_direct_access(mflash* mfl, u_int8_t quad_en) { if (!mfl) { return MFE_BAD_PARAMS; } int bank = 0, rc = 0; if (!(mfl->attr.quad_en_support && mfl->supp_sr_mod)) { return MFE_NOT_SUPPORTED_OPERATION; } for (bank = 0; bank < mfl->attr.banks_num; bank++) { if ((mfl->attr.vendor == FV_WINBOND) && (mfl->attr.type == FMT_WINBOND_3V)) { rc = mf_read_modify_status_new(mfl, bank, SFC_RDSR2, SFC_WRSR2, quad_en, QUAD_EN_OFFSET_WINBOND_CYPRESS, 1, 1); CHECK_RC(rc); } else if ((mfl->attr.vendor == FV_WINBOND) || (mfl->attr.vendor == FV_S25FLXXXX)) { rc = mf_read_modify_status_winbond(mfl, bank, 0, quad_en, QUAD_EN_OFFSET_WINBOND_CYPRESS, 1); CHECK_RC(rc); } else if (mfl->attr.vendor == FV_ST) { rc = mf_read_modify_status_new(mfl, bank, SFC_RDNVR, SFC_WRNVR, !quad_en, QUAD_EN_OFFSET_MICRON, 1, 2); CHECK_RC(rc); } else if ((mfl->attr.vendor == FV_IS25LPXXX) || (mfl->attr.vendor == FV_MX25K16XXX)) { rc = mf_read_modify_status_winbond(mfl, bank, 1, quad_en, QUAD_EN_OFFSET_ISSI_MACRONIX, 1); CHECK_RC(rc); } else if (mfl->attr.vendor == FV_GD25QXXX) { rc = mf_read_modify_status_winbond(mfl, bank, 1, quad_en, QUAD_EN_OFFSET_GIGABYTE, 1); CHECK_RC(rc); } else { return MFE_NOT_IMPLEMENTED; } } return MFE_OK; } int mf_get_quad_en_direct_access(mflash* mfl, u_int8_t* quad_en_p) { if (!mfl || !quad_en_p) { return MFE_BAD_PARAMS; } if (!(mfl->attr.quad_en_support && mfl->supp_sr_mod)) { return MFE_NOT_SUPPORTED_OPERATION; } if ((mfl->attr.vendor == FV_WINBOND) || (mfl->attr.vendor == FV_S25FLXXXX)) { return mf_get_param_int(mfl, quad_en_p, SFC_RDSR2, QUAD_EN_OFFSET_WINBOND_CYPRESS, 1, 1, 1); } else if (mfl->attr.vendor == FV_ST) { return mf_get_param_int(mfl, quad_en_p, SFC_RDNVR, QUAD_EN_OFFSET_MICRON, 1, 2, 0); } else if ((mfl->attr.vendor == FV_IS25LPXXX) || (mfl->attr.vendor == FV_MX25K16XXX)) { return mf_get_param_int(mfl, quad_en_p, SFC_RDSR, QUAD_EN_OFFSET_ISSI_MACRONIX, 1, 1, 1); } else if (mfl->attr.vendor == FV_GD25QXXX) { return mf_get_param_int(mfl, quad_en_p, SFC_RDSR2, QUAD_EN_OFFSET_GIGABYTE, 1, 2, 1); } return MFE_NOT_SUPPORTED_OPERATION; } int mf_set_write_protect_direct_access(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info) { u_int32_t protect_mask = 0, log2_sect_num; u_int32_t sectors_num = protect_info->sectors_num; int rc; write_protect_info_t cur_protect_info; memset(&cur_protect_info, 0x0, sizeof(cur_protect_info)); /* printf("-D- mf_set_write_protect: bank_num = %#x, subsec: %#x, bottom: %#x, sectors_num=%#x\n", bank_num, */ /* protect_info->is_subsector, protect_info->is_bottom, protect_info->sectors_num); */ WRITE_PROTECT_CHECKS(mfl, bank_num); if (((protect_info->sectors_num - 1) & protect_info->sectors_num) != 0) { return MFE_SECTORS_NUM_NOT_POWER_OF_TWO; } if (protect_info->sectors_num > MAX_SECTORS_NUM) { return MFE_EXCEED_SECTORS_MAX_NUM; } if (((mfl->attr.vendor == FV_S25FLXXXX) && (mfl->attr.type == FMT_S25FLXXXL) && (mfl->attr.log2_bank_size == FD_128)) || ((mfl->attr.vendor == FV_WINBOND) && (mfl->attr.type == FMT_WINBOND_3V) && (mfl->attr.log2_bank_size == FD_128))) { if (!protect_info->is_subsector && ((protect_info->sectors_num == 1) || (protect_info->sectors_num == 2))) { return MFE_SECTORS_NUM_MORE_THEN_0_LESS_THEN_4; } } if (protect_info->is_subsector && !mfl->attr.protect_sub_and_sector) { return MFE_NOT_SUPPORTED_OPERATION; } if (mfl->attr.protect_sub_and_sector && protect_info->is_subsector) { if (protect_info->sectors_num > MAX_SUBSECTOR_NUM) { return MFE_EXCEED_SUBSECTORS_MAX_NUM; } } if ((mfl->attr.vendor == FV_MX25K16XXX) || (mfl->attr.vendor == FV_IS25LPXXX)) { rc = mf_get_write_protect(mfl, bank_num, &cur_protect_info); CHECK_RC(rc); if (cur_protect_info.is_bottom && !protect_info->is_bottom) { if (protect_info->sectors_num) { return MFE_DATA_IS_OTP; } else { protect_info->is_bottom = cur_protect_info.is_bottom; /* write protect is disabled, so we don't really */ /* care about top/bottom bit. */ } } } for (log2_sect_num = 0; log2_sect_num < 8; log2_sect_num++) { if (sectors_num == 0) { break; } sectors_num >>= 1; } /* adrianc: at this point log2_sect_num is actually bigger by 1(if sectors_num!=0) to fit the BP bit values in the */ /* flash spec */ if ((log2_sect_num != 0) && !protect_info->is_subsector && (((mfl->attr.vendor == FV_S25FLXXXX) && (mfl->attr.type == FMT_S25FLXXXL) && (mfl->attr.log2_bank_size == FD_128)) || ((mfl->attr.vendor == FV_WINBOND) && (mfl->attr.type == FMT_WINBOND_3V) && (mfl->attr.log2_bank_size == FD_128)))) { log2_sect_num -= 2; /* spec alignment */ } if ((mfl->attr.vendor == FV_ST) && (mfl->attr.type == FMT_N25QXXX)) { protect_mask = MERGE(protect_mask, log2_sect_num & 0x7, 0, BP_SIZE); protect_mask = MERGE(protect_mask, protect_info->is_bottom, BP_SIZE, 1); protect_mask = MERGE(protect_mask, (log2_sect_num & 0x8) >> 3, BP_SIZE + 1, 1); return mf_read_modify_status_winbond(mfl, bank_num, 1, protect_mask, BP_OFFSET, PROTECT_BITS_SIZE); } else if ((mfl->attr.vendor == FV_MX25K16XXX) || (mfl->attr.vendor == FV_IS25LPXXX) || ((mfl->attr.vendor == FV_S25FLXXXX) && (mfl->attr.type == FMT_S25FLXXXL) && (mfl->attr.log2_bank_size == FD_256)) || ((mfl->attr.vendor == FV_WINBOND) && (mfl->attr.type == FMT_WINBOND_3V) && (mfl->attr.log2_bank_size == FD_256))) { if (mfl->attr.vendor == FV_MX25K16XXX) { rc = mf_read_modify_status_winbond(mfl, bank_num, 0, protect_info->is_bottom, TB_OFFSET_MACRONIX, 1); CHECK_RC(rc); } else if (mfl->attr.vendor == FV_IS25LPXXX) { rc = mf_read_modify_status_new(mfl, bank_num, SFC_RDFR, SFC_WRFR, protect_info->is_bottom, TB_OFFSET_ISSI, 1, 1); CHECK_RC(rc); } else { /* vendor == FV_S25FLXXXX or vendor == FV_WINBOND */ rc = mf_read_modify_status_winbond(mfl, bank_num, 1, protect_info->is_bottom, TB_OFFSET_CYPRESS_WINBOND_256, 1); CHECK_RC(rc); } return mf_read_modify_status_winbond(mfl, bank_num, 1, log2_sect_num, BP_OFFSET, 4); } else { u_int8_t modify_size = 0; protect_mask = MERGE(protect_mask, log2_sect_num, 0, BP_SIZE); modify_size += BP_SIZE; protect_mask = MERGE(protect_mask, protect_info->is_bottom, BP_SIZE, 1); modify_size += 1; if (mfl->attr.protect_sub_and_sector) { protect_mask = MERGE(protect_mask, protect_info->is_subsector, BP_SIZE + 1, 1); modify_size += 1; } return mf_read_modify_status_winbond(mfl, bank_num, 1, protect_mask, BP_OFFSET, modify_size); } } int mf_get_write_protect_direct_access(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info) { int rc = 0; u_int8_t status = 0; u_int8_t tb_offset = TB_OFFSET; int spec_alignment_factor; WRITE_PROTECT_CHECKS(mfl, bank_num); rc = set_bank_int(mfl, bank_num); CHECK_RC(rc); protect_info->is_subsector = 0; /* Defaultly no support for subsector protection */ if (mfl->attr.vendor == FV_MX25K16XXX) { rc = mfl->f_spi_status(mfl, SFC_RDCR, &status); CHECK_RC(rc); protect_info->is_bottom = EXTRACT(status, TB_OFFSET_MACRONIX, 1); } else if (mfl->attr.vendor == FV_IS25LPXXX) { rc = mfl->f_spi_status(mfl, SFC_RDFR, &status); CHECK_RC(rc); protect_info->is_bottom = EXTRACT(status, TB_OFFSET_ISSI, 1); } else { if (((mfl->attr.vendor == FV_S25FLXXXX) && (mfl->attr.type == FMT_S25FLXXXL) && (mfl->attr.log2_bank_size == FD_256)) || ((mfl->attr.vendor == FV_WINBOND) && (mfl->attr.type == FMT_WINBOND_3V) && (mfl->attr.log2_bank_size == FD_256))) { tb_offset = TB_OFFSET_CYPRESS_WINBOND_256; } rc = mfl->f_spi_status(mfl, SFC_RDSR, &status); CHECK_RC(rc); protect_info->is_bottom = EXTRACT(status, tb_offset, 1); if (mfl->attr.protect_sub_and_sector) { protect_info->is_subsector = EXTRACT(status, SEC_OFFSET, 1); } else { protect_info->is_subsector = 0; } } rc = mfl->f_spi_status(mfl, SFC_RDSR, &status); CHECK_RC(rc); if (EXTRACT(status, BP_OFFSET, BP_SIZE) == 0) { protect_info->sectors_num = 0; } else { spec_alignment_factor = ((mfl->attr.vendor == FV_S25FLXXXX && mfl->attr.type == FMT_S25FLXXXL && mfl->attr.log2_bank_size == FD_128) || (mfl->attr.vendor == FV_WINBOND && mfl->attr.type == FMT_WINBOND_3V && mfl->attr.log2_bank_size == FD_128)) && !protect_info->is_subsector ? 1 : -1; protect_info->sectors_num = 1 << (EXTRACT(status, BP_OFFSET, BP_SIZE) + spec_alignment_factor); } return MFE_OK; } int mf_is_fifth_gen(mflash* mfl) { MfError status; int is7NmSuppported = 0; int icmdif_supported = is_icmdif_supported(mfl, &status); if (status != MFE_OK) { return status; } return icmdif_supported; } int mf_enable_hw_access(mflash* mfl, u_int64_t key) { #ifndef UEFI_BUILD int rc = 0; if (mf_is_fifth_gen(mfl)) { return mf_secure_host_op(mfl, key, 0); } else { rc = tcif_hw_access(mfl->mf, key, 0 /* Unlock */); return (rc == ME_CMDIF_UNKN_TLV) ? MFE_MISMATCH_KEY : MError2MfError((MError)rc); } #else (void)mfl; (void)key; return MFE_NOT_SUPPORTED_OPERATION; #endif } /* * Op: * 0 - disable * 1 - enable */ int mf_secure_host_op(mflash* mfl, u_int64_t key, int op) { struct tools_open_mlock mlock; memset(&mlock, 0, sizeof(mlock)); mlock.operation = op; mlock.key = key; int rc = ME_OK; if (IS_CONNECT_IB(mfl->attr.hw_dev_id)) { rc = ME_REG_ACCESS_REG_NOT_SUPP; } else { rc = (int)reg_access_secure_host(mfl->mf, REG_ACCESS_METHOD_SET, &mlock); } switch (rc) { case ME_REG_ACCESS_REG_NOT_SUPP: rc = MFE_NOT_SUPPORTED_OPERATION; break; case ME_REG_ACCESS_BAD_PARAM: rc = MFE_MISMATCH_KEY; break; default: rc = MError2MfError((MError)rc); break; } return rc; } int mf_get_secure_host(mflash* mfl, int* mode) { struct tools_open_mlock mlock; memset(&mlock, 0, sizeof(mlock)); int rc = (int)reg_access_secure_host(mfl->mf, REG_ACCESS_METHOD_GET, &mlock); *mode = mlock.operation; return rc; } int mf_disable_hw_access(mflash* mfl) { #ifndef UEFI_BUILD int rc = 0; /* We need to release the semaphore because we will not have any access to semaphore after disabling the HW access */ mfl->unlock_flash_prog_allowed = 1; rc = release_semaphore(mfl, 1); CHECK_RC(rc); rc = tcif_hw_access(mfl->mf, 0, 1 /* Lock */); /* translate to operation specific errors */ switch (rc) { case ME_CMDIF_UNKN_TLV: rc = MFE_MISMATCH_KEY; break; case ME_CMDIF_BAD_OP: rc = MFE_MISSING_KEY; break; default: rc = MError2MfError((MError)rc); break; } return rc; #else (void)mfl; return MFE_NOT_SUPPORTED_OPERATION; #endif } int mf_disable_hw_access_with_key(mflash* mfl, u_int64_t key) { if (!mf_is_fifth_gen(mfl)) { return MFE_NOT_SUPPORTED_OPERATION; } return mf_secure_host_op(mfl, key, 1); } mfile* mf_get_mfile(mflash* mfl) { return mfl->mf; } dm_dev_id_t mf_get_dm_dev_id(mflash* mfl) { return mfl->dm_dev_id; } int mf_get_jedec_id(mflash* mfl, u_int32_t* jedec_id) { return mfl->f_get_jedec_id(mfl, jedec_id); } int mf_set_quad_en(mflash* mfl, u_int8_t quad_en) { if ((quad_en == 0) && (getenv("FORCE_RESET_QUAD_EN") == NULL)) { /* If flash HOLD state issue is relevant for given device, we'll block disabling Quad mode */ if (mfl->attr.vendor == FV_WINBOND) { switch (mfl->dm_dev_id) { case DeviceConnectX6: case DeviceConnectX6DX: case DeviceBlueField2: case DeviceConnectX7: case DeviceBlueField3: printf("-E- Disable QuadEn for given device is not allowed.\n"); return MFE_ERROR; default: break; } } } return mfl->f_set_quad_en(mfl, quad_en); } int mf_get_quad_en(mflash* mfl, u_int8_t* quad_en) { return mfl->f_get_quad_en(mfl, quad_en); } int mf_set_driver_strength(mflash* mfl, u_int8_t driver_strength) { switch (driver_strength) { case 25: driver_strength = DRIVER_STRENGTH_VAL_25_WINBOND; break; case 50: driver_strength = DRIVER_STRENGTH_VAL_50_WINBOND; break; case 75: driver_strength = DRIVER_STRENGTH_VAL_75_WINBOND; break; case 100: driver_strength = DRIVER_STRENGTH_VAL_100_WINBOND; break; default: return MFE_BAD_PARAMS; } return mfl->f_set_driver_strength(mfl, driver_strength); } int mf_get_driver_strength(mflash* mfl, u_int8_t* driver_strength) { int rc = mfl->f_get_driver_strength(mfl, driver_strength); switch (*driver_strength) { case DRIVER_STRENGTH_VAL_25_WINBOND: *driver_strength = 25; break; case DRIVER_STRENGTH_VAL_50_WINBOND: *driver_strength = 50; break; case DRIVER_STRENGTH_VAL_75_WINBOND: *driver_strength = 75; break; case DRIVER_STRENGTH_VAL_100_WINBOND: *driver_strength = 100; break; default: *driver_strength = 0xff; } return rc; } int mf_set_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info) { return mfl->f_set_write_protect(mfl, bank_num, protect_info); } int mf_get_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info) { return mfl->f_get_write_protect(mfl, bank_num, protect_info); } int mf_set_dummy_cycles(mflash* mfl, u_int8_t num_of_cycles) { return mfl->f_set_dummy_cycles(mfl, num_of_cycles); } int mf_get_dummy_cycles(mflash* mfl, u_int8_t* num_of_cycles) { return mfl->f_get_dummy_cycles(mfl, num_of_cycles); } mstflint-4.26.0/mflash/mflash_pack_layer.c0000644000175000017500000002532414522641732020773 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include "compatibility.h" #include "bit_slice.h" #include "mtcr.h" #include "mflash_types.h" #include "mflash_pack_layer.h" #include #include int sx_st_block_access(mfile* mf, u_int32_t flash_addr, u_int8_t bank, u_int32_t size, u_int8_t* data, reg_access_method_t method) { struct reg_access_hca_mfba_reg_ext mfba; int rc; int max_size = mget_max_reg_size(mf, (maccess_reg_method_t)method); if (!max_size) { return MFE_BAD_PARAMS; } // when writing max size is limited to the nearest power of 2 of the max_size // while limiting it to 256 bytes max_size = NEAREST_POW2(max_size); if (size > (u_int32_t)max_size) { return MFE_BAD_PARAMS; } // Init mfba memset(&mfba, 0, sizeof(mfba)); mfba.address = flash_addr; mfba.fs = bank; mfba.size = size; if (method == REG_ACCESS_METHOD_SET) { u_int32_t i; for (i = 0; i < size / 4; i++) { mfba.data[i] = __le32_to_cpu(*((u_int32_t*)&(data[4 * i]))); } } rc = reg_access_mfba(mf, method, &mfba); CHECK_RC(MError2MfError((MError)rc)); // Get data from mfba if (method == REG_ACCESS_METHOD_GET) { u_int32_t i; for (i = 0; i < size / 4; i++) { *((u_int32_t*)&(data[i * 4])) = __cpu_to_le32(mfba.data[i]); } } return MFE_OK; } int common_erase_sector(mfile* mf, u_int32_t addr, u_int8_t flash_bank, u_int32_t erase_size) { struct reg_access_hca_mfbe_reg_ext mfbe; if (addr & (erase_size - 1)) { return MFE_ERASE_ERROR; } memset(&mfbe, 0, sizeof(mfbe)); mfbe.address = addr; mfbe.fs = flash_bank; if (erase_size == FSS_64KB) { mfbe.bulk_64kb_erase = 1; } return MError2MfError(reg_access_mfbe(mf, REG_ACCESS_METHOD_SET, &mfbe)); } int run_mfpa_command(mfile* mf, u_int8_t access_cmd, mfpa_command_args* mfpa_args) { struct reg_access_hca_mfpa_reg_ext mfpa; int rc; memset(&mfpa, 0, sizeof(mfpa)); mfpa.fs = mfpa_args->flash_bank; if (access_cmd == REG_ACCESS_METHOD_SET) { mfpa.boot_address = mfpa_args->boot_address; } rc = MError2MfError(reg_access_mfpa(mf, (reg_access_method_t)access_cmd, &mfpa)); if (rc && rc != MFE_REG_ACCESS_BAD_PARAM) { // if rc is REG_ACCESS_BAD_PARAM it means we dont have that flash bank connected (no need to fail) return rc; } if (access_cmd == REG_ACCESS_METHOD_GET) { // swap bytes as they are inverted mfpa_args->jedec_id = ___my_swab32(mfpa.jedec_id); // HACK: FW had a bug and returned the same jedec-ID even there was no flash, so when flash doesn't exist jedec // will be modified to 0xffffffff if (mfpa_args->flash_bank >= mfpa.flash_num || rc == MFE_REG_ACCESS_BAD_PARAM) { mfpa_args->jedec_id = 0xffffffff; } mfpa_args->num_of_banks = mfpa.flash_num; if (mfpa.sector_size) { mfpa_args->fw_flash_sector_sz = 1 << mfpa.sector_size; // 2^log2_sector_size_in_KB // Hack: some CX3 FW has this number in KB, possible values : 4 or 64 if (mfpa_args->fw_flash_sector_sz == 4 || mfpa_args->fw_flash_sector_sz == 64) { mfpa_args->fw_flash_sector_sz *= 1024; } } else { mfpa_args->fw_flash_sector_sz = 0; } mfpa_args->supp_sub_and_sector_erase = mfpa.bulk_64kb_erase_en; mfpa_args->supp_dummy_cycles = EXTRACT(mfpa.capability_mask, 18, 1) & 0; // adrianc: no support from FW so i am not enabling this mfpa_args->supp_quad_en = EXTRACT(mfpa.capability_mask, 17, 1); mfpa_args->supp_sector_write_prot = EXTRACT(mfpa.capability_mask, 16, 1) & mfpa.sector_wrp_en; mfpa_args->supp_sub_sector_write_prot = EXTRACT(mfpa.capability_mask, 16, 1) & mfpa.sub_sector_wrp_en; } return MFE_OK; } int get_num_of_banks(mfile* mf) { mfpa_command_args mfpa_args; memset(&mfpa_args, 0, sizeof(mfpa_args)); int rc = run_mfpa_command(mf, REG_ACCESS_METHOD_GET, &mfpa_args); if (rc) { return -1; } return mfpa_args.num_of_banks; } int com_get_jedec(mfile* mf, mfpa_command_args* mfpa_args) { return run_mfpa_command(mf, REG_ACCESS_METHOD_GET, mfpa_args); } /* * getters and setters for mfl->curr_bank * manily used to monitor values mfl->curr_bank receives * used for a verification hack to make sure facebook reset bug doesnt reproduce. * (bug where accessing gpio of flash bank 4 caused system reboot) */ #define MFLASH_BANK_DEBUG "MFLASH_BANK_DEBUG" int set_bank_int(mflash* mfl, int bank_num) { const char* mflash_env; int max_bank; // dont update curr_bank if not needed if (mfl->curr_bank == bank_num) { return ME_OK; } mflash_env = getenv(MFLASH_BANK_DEBUG); if (mflash_env) { max_bank = atol(mflash_env); if (bank_num > max_bank) { printf("-E- there was an attempt to set the flash bank to: %d. max allowed value: %d\n", bank_num, max_bank); return MFE_ILLEGAL_BANK_NUM; } } mfl->curr_bank = bank_num; return ME_OK; } int get_bank_int(mflash* mfl) { return mfl->curr_bank; } int set_bank(mflash* mfl, u_int32_t addr) { int bank = addr >> mfl->attr.log2_bank_size; int rc; if (get_bank_int(mfl) != bank) { rc = set_bank_int(mfl, bank); CHECK_RC(rc); return mfl->f_set_bank(mfl, bank); } return MFE_OK; } int get_flash_offset(u_int32_t addr, int log2_bank_size, u_int32_t* flash_addr_p) { *flash_addr_p = addr & ONES32(log2_bank_size); return MFE_OK; } int mfl_get_bank_info(mflash* mfl, u_int32_t addr, u_int32_t* flash_off_p, int* bank_p) { int rc; // Get the bank number rc = set_bank(mfl, addr); CHECK_RC(rc); *bank_p = get_bank_int(mfl); // Get the offset in the flash rc = get_flash_offset(addr, mfl->attr.log2_bank_size, flash_off_p); CHECK_RC(rc); return MFE_OK; } MfError MError2MfError(MError rc) { switch (rc) { case ME_OK: return MFE_OK; case ME_ERROR: return MFE_ERROR; case ME_BAD_PARAMS: return MFE_BAD_PARAMS; case ME_CR_ERROR: return MFE_CR_ERROR; case ME_NOT_IMPLEMENTED: return MFE_NOT_IMPLEMENTED; case ME_SEM_LOCKED: return MFE_SEM_LOCKED; case ME_MEM_ERROR: return MFE_NOMEM; case ME_MAD_SEND_FAILED: return MFE_MAD_SEND_ERR; case ME_UNKOWN_ACCESS_TYPE: return MFE_UNKOWN_ACCESS_TYPE; case ME_UNSUPPORTED_DEVICE: return MFE_UNSUPPORTED_DEVICE; case ME_ICMD_STATUS_CR_FAIL: return MFE_CR_ERROR; case ME_ICMD_STATUS_SEMAPHORE_TO: return MFE_SEM_LOCKED; case ME_ICMD_STATUS_EXECUTE_TO: return MFE_CMDIF_TIMEOUT_ERR; case ME_ICMD_STATUS_IFC_BUSY: return MFE_CMDIF_TIMEOUT_ERR; case ME_ICMD_STATUS_ICMD_NOT_READY: return MFE_CMDIF_NOT_READY; case ME_ICMD_UNSUPPORTED_ICMD_VERSION: return MFE_ICMD_NOT_SUPPORTED; case ME_ICMD_NOT_SUPPORTED: return MFE_ICMD_NOT_SUPPORTED; case ME_ICMD_INVALID_OPCODE: return MFE_ICMD_INVALID_OPCODE; case ME_ICMD_INVALID_CMD: return MFE_ICMD_INVALID_CMD; case ME_ICMD_OPERATIONAL_ERROR: return MFE_ICMD_OPERATIONAL_ERROR; case ME_ICMD_BAD_PARAM: return MFE_ICMD_BAD_PARAM; case ME_ICMD_BUSY: return MFE_CMDIF_TIMEOUT_ERR; case ME_REG_ACCESS_BAD_METHOD: return MFE_REG_ACCESS_BAD_METHOD; case ME_REG_ACCESS_NOT_SUPPORTED: return MFE_REG_ACCESS_NOT_SUPPORTED; case ME_REG_ACCESS_DEV_BUSY: return MFE_REG_ACCESS_DEV_BUSY; case ME_REG_ACCESS_VER_NOT_SUPP: return MFE_REG_ACCESS_VER_NOT_SUPP; case ME_REG_ACCESS_UNKNOWN_TLV: return MFE_REG_ACCESS_UNKNOWN_TLV; case ME_REG_ACCESS_REG_NOT_SUPP: return MFE_REG_ACCESS_REG_NOT_SUPP; case ME_REG_ACCESS_CLASS_NOT_SUPP: return MFE_REG_ACCESS_CLASS_NOT_SUPP; case ME_REG_ACCESS_METHOD_NOT_SUPP: return MFE_REG_ACCESS_METHOD_NOT_SUPP; case ME_REG_ACCESS_BAD_PARAM: return MFE_REG_ACCESS_BAD_PARAM; case ME_REG_ACCESS_RES_NOT_AVLBL: return MFE_REG_ACCESS_RES_NOT_AVLBL; case ME_REG_ACCESS_MSG_RECPT_ACK: return MFE_REG_ACCESS_MSG_RECPT_ACK; case ME_REG_ACCESS_UNKNOWN_ERR: return MFE_REG_ACCESS_UNKNOWN_ERR; case ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT: return MFE_REG_ACCESS_SIZE_EXCCEEDS_LIMIT; case ME_CMDIF_UNKN_TLV: return MFE_CMDIF_UNKN_TLV; case ME_CMDIF_BAD_OP: return MFE_CMDIF_BAD_OP; default: break; } return MFE_INVAL; } mstflint-4.26.0/mflash/mflash_common_structs.h0000644000175000017500000001650114522641732021742 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MFLASH_COMMON_STRUCTS_H #define MFLASH_COMMON_STRUCTS_H #include typedef struct mflash mflash; #define MAX_FLASH_NAME 256 typedef enum MfOpt { MFO_NO_VERIFY = 0, MFO_AMD_UNLOCK_BYPASS, MFO_AMD_BYTE_MODE, MFO_IGNORE_SEM_LOCK, MFO_CLOSE_MF_ON_EXIT, MFO_NUM_OF_BANKS, MFO_IGNORE_CASHE_REP_GUARD, MFO_USER_BANKS_NUM, MFO_FW_ACCESS_TYPE_BY_MFILE, MFO_SX_TYPE, MFO_NEW_CACHE_REPLACEMENT_EN, MFO_CX3_FW_ACCESS_EN, MFO_LAST } MfOpt; enum MfAccessType { MFAT_MFILE = 0, MFAT_UEFI, }; typedef enum { UNKNOWN_BIN = 0x0, CX5_LOW_BIN = 0x1, CX5_HIGH_BIN = 0x2, } BinIdT; typedef struct flash_params { char type_name[MAX_FLASH_NAME]; int log2size; int num_of_flashes; } flash_params_t; typedef struct write_protect_info { u_int8_t is_subsector; u_int8_t is_bottom; u_int8_t sectors_num; // if zero: is_subsector and is_bottom are invalid. } write_protect_info_t; //////////////////////////////////////// // // ST SPI functions - common for InfiniHostIIILx and ConnectX // //////////////////////////////////////// typedef enum StFlashCommand { SFC_SE = 0xD8, // Sector erase SFC_4SE = 0xDC, // Sector erase 4B addr SFC_SSE = 0x20, // Subsector erase SFC_4SSE = 0x21, // Subsector erase 4B addr SFC_PP = 0x02, // Page program SFC_4PP = 0x12, // Page program 4B addr SFC_READ = 0x03, // Read data SFC_4READ = 0x13, // Read data 4B addr SFC_FAST_READ = 0x3B, // Fast read dual output SFC_4FAST_READ = 0x3C, // Fast read dual output 4B addr SFC_RES = 0xAB, // Release power-down SFC_JEDEC = 0x9F, // Read JEDEC ID SFC_RDSR = 0x05, // Read status register SFC_WRSR2 = 0x31, // Write status register 2 SFC_RDSR2 = 0x35, // Read status register 2 SFC_WRSR3_WINBOND = 0x11, // Write status register 3 (WINBOND) SFC_RDSR3_WINBOND = 0x15, // Read status register 3 (WINBOND) SFC_WREN = 0x06, // Write enable SFC_RDNVR = 0xB5, SFC_RDCR = 0x15, // Read configuration register SFC_WRNVR = 0xB1, SFC_WRSR = 0x01, // Write status register SFC_WRSR_GIGA = 0x31, // Write status register (GIGA) SFC_RDFR = 0x48, SFC_WRFR = 0x42 } StFlashCommand_t; typedef struct access_commands { StFlashCommand_t sfc_sector_erase; StFlashCommand_t sfc_subsector_erase; StFlashCommand_t sfc_page_program; StFlashCommand_t sfc_read; StFlashCommand_t sfc_fast_read; } flash_access_commands_t; ///////////////////////////////////////////// // // Flash attributes struct // ///////////////////////////////////////////// typedef struct flash_attr { const char* type_str; // // hw_dev_id hw dev id of the HCA. // u_int32_t hw_dev_id; u_int32_t rev_id; BinIdT bin_id; // // size: Total size (in bytes) of all flash devices connected to // the device (forming a contigous address space) // u_int32_t size; // // sector_size: Flash sector size (in bytes). // Assuming a single sector size for the flash. // u_int32_t sector_size; int num_erase_blocks; // Number of sector defs. // // bank_size: Different bank means a different chip sellect or gpio settings is needed when crossing // this alignment. // This may indicate a different flash device (for SPI flash in InfiniHostIIILx / ConnectX). // Or GPIO change for parallel flash (in InfiniHostIII / InfiniHost) // int bank_size; int log2_bank_size; // // Command set (taken from CFI terminology) // int command_set; u_int8_t erase_command; // // block_write - if block write is supported, holds the block size in bytes. 0 otherwise. // The meaning of "block write" is not the same in parallel and serial flash. // int block_write; // // page_write - if page write is supported, holds the page size in bytes. 0 otherwise. // int page_write; u_int8_t banks_num; u_int8_t quad_en_support; u_int8_t driver_strength_support; u_int8_t dummy_cycles_support; u_int8_t write_protect_support; u_int8_t protect_sub_and_sector; u_int8_t vendor; u_int8_t type; u_int8_t support_sub_and_sector; // true if flash can work in both 64KB and 4KB sectors flash_access_commands_t access_commands; } flash_attr; // Explanation for densities field: // Support for density X is represented by setting the log(X) bit of flash_info.densities. // That is, a flash related to flash_info supports density X iff ((flash_info.densities & (1 << FD_X)) != 0). // FD_X is the density value as it appears in the flash JEDEC ID. For example, FD_128 == 0x18 (128Mb flash). typedef struct flash_info { const char* name; u_int8_t vendor; u_int8_t type; u_int32_t densities; int command_set; int erase_command; u_int32_t sector_size; u_int8_t support_sub_and_sector; u_int8_t quad_en_support; u_int8_t write_protected_support; u_int8_t protect_sub_and_sector; u_int8_t dummy_cycles_support; u_int8_t driver_strength_support; } flash_info_t; /* * Common Macros: */ #define WRITE_PROTECT_CHECKS(mfl, bank_num) \ { \ if (!mfl->attr.write_protect_support) \ { \ return MFE_NOT_SUPPORTED_OPERATION; \ } \ if (bank_num >= mfl->attr.banks_num) \ { \ return MFE_FLASH_NOT_EXIST; \ } \ } #define MAX_SUBSECTOR_NUM 8 #define MAX_SECTORS_NUM 64 #endif // MFLASH_COMMON_STRUCTS_H mstflint-4.26.0/mflash/mflash_new_gw.h0000644000175000017500000000535514522641732020156 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * mflash_gw.h * * Created on: Jul 8, 2020 * Author: edwardg */ #ifndef _MFLASH_NEW_GW_H_ #define _MFLASH_NEW_GW_H_ #include "mflash_pack_layer.h" // ConnectX SPI interface: int new_gw_st_spi_erase_sect(mflash* mfl, u_int32_t addr); int new_gw_int_spi_get_status_data(mflash* mfl, u_int8_t op_type, u_int32_t* status, u_int8_t data_num); int new_gw_st_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, u_int32_t total_size); int new_gw_sst_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data); int new_gw_st_spi_block_read_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, bool verbose); int new_gw_spi_write_status_reg(mflash* mfl, u_int32_t status_reg, u_int8_t write_cmd, u_int8_t bytes_num); #endif mstflint-4.26.0/mflash/mflash_access_layer.h0000644000175000017500000001532614522641732021324 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mflash_inband.h * * Created on: Jul 6, 2011 * Author: mohammad */ #ifndef MFLASH_ACCESS_LAYER_H_ #define MFLASH_ACCESS_LAYER_H_ #include #include "mflash_common_structs.h" #define MAX_FLASH_PROG_SEM_RETRY_CNT 40 #ifdef ESS #define MREAD4(offs, val) \ do \ { \ *val = READ_WORD(offs); \ } while (0) #define MWRITE4(offs, val) \ do \ { \ WRITE_WORD(offs, val); \ } while (0) #else #define MREAD4(offs, val) \ do \ { \ if (mread4(mfl->mf, offs, val) != 4) \ { \ /*fprintf(stderr, "-E- Cr read (0x%08x) failed: %s(%d)\n", (u_int32_t)(offs), strerror(errno), \ * (u_int32_t)errno);*/ \ return 2; \ } /*printf("-D- %s:%d mread4: offs = %#x, val = %#x\n", __FUNCTION__, __LINE__, offs, val);*/ \ } while (0) #define MWRITE4(offs, val) \ do \ { \ if (mwrite4(mfl->mf, offs, val) != 4) \ { \ /*fprintf(stderr, "-E- Cr write (0x%08x, 0x%08x) failed: %s(%d)\n", (u_int32_t)(offs), (u_int32_t)(val), \ * strerror(errno), (u_int32_t)errno);*/ \ return 2; \ } /*printf("-D- %s:%d mwrite4: offs = %#x, val = %#x\n", __FUNCTION__, __LINE__, offs, val);*/ \ } while (0) #endif enum FlashConstant { // All time values are in usecs WRITE_BLOCK_INIT_DELAY = 10, WRITE_ADDITIONAL_BYTE_DELAY = 1, WRITE_BLOCK_RETRY_DELAY = 10, WRITE_BLOCK_RETRIES = 30000, ERASE_SUBSECTOR_INIT_DELAY = 20000, ERASE_SUBSECTOR_RETRY_DELAY = 300, ERASE_SUBSECTOR_RETRIES = 10000, FLASH_CMD_CNT = 5000, // Number of reads till flash cmd is zeroed GPIO_SEM_TRIES = 1024, // Number of tries to obtain a GPIO sem. MAX_WRITE_BUFFER_SIZE = 256, // Max buffer size for buffer write devices WRITE_STATUS_REGISTER_DELAY_CYPRESS = 750, WRITE_STATUS_REGISTER_DELAY_MICRON = 1000, WRITE_STATUS_REGISTER_DELAY_MIN = 40, DUMMY_CYCLES_OFFSET_ST = 12, QUAD_EN_OFFSET_WINBOND_CYPRESS = 1, QUAD_EN_OFFSET_MICRON = 3, QUAD_EN_OFFSET_ISSI_MACRONIX = 6, QUAD_EN_OFFSET_GIGABYTE = 1, DRIVER_STRENGTH_OFFSET_WINBOND = 5, DRIVER_STRENGTH_BIT_LEN_WINBOND = 2, DRIVER_STRENGTH_VAL_100_WINBOND = 0, DRIVER_STRENGTH_VAL_75_WINBOND = 1, DRIVER_STRENGTH_VAL_50_WINBOND = 2, DRIVER_STRENGTH_VAL_25_WINBOND = 3, TB_OFFSET_MACRONIX = 3, SEC_OFFSET = 6, TB_OFFSET = 5, TB_OFFSET_ISSI = 1, TB_OFFSET_CYPRESS_WINBOND_256 = 6, BP_OFFSET = 2, BP_4TH_BIT_OFFSET_MICRON = 6, BP_SIZE = 3, PROTECT_BITS_SIZE = 5 }; int check_access_type(mflash* mfl); int sx_get_flash_info_by_type(mflash* mfl, flash_info_t* type_index, int* log2size, u_int8_t* no_flash); int sx_block_read_by_type(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data); int sx_block_write_by_type(mflash* mfl, u_int32_t addr, u_int32_t size, u_int8_t* data); int sx_flash_lock_by_type(mflash* mfl, int lock_state); int sx_erase_sect_by_type(mflash* mfl, u_int32_t addr, u_int32_t erase_size); int mf_update_boot_addr_by_type(mflash* mfl, u_int32_t boot_addr); int mfl_com_lock(mflash* mfl); flash_access_commands_t gen_4byte_address_access_commands(); flash_access_commands_t gen_3byte_address_access_commands(); int release_semaphore(mflash* mfl, int ignore_writer_lock); int sx_set_quad_en(mflash* mfl, u_int8_t quad_en); int sx_get_quad_en(mflash* mfl, u_int8_t* quad_en); int sx_set_driver_strength(mflash* mfl, u_int8_t driver_strength); int sx_get_driver_strength(mflash* mfl, u_int8_t* driver_strength); int sx_set_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); int sx_get_write_protect(mflash* mfl, u_int8_t bank_num, write_protect_info_t* protect_info); int sx_set_dummy_cycles(mflash* mfl, u_int8_t num_of_cycles); int sx_get_dummy_cycles(mflash* mfl, u_int8_t* num_of_cycles); int gw_wait_ready(mflash* mfl, const char* msg); #endif /* MFLASH_ACCESS_LAYER_H_ */ mstflint-4.26.0/mflash/Makefile.am0000644000175000017500000000441114522641732017211 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/cmdif \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/reg_access \ -I$(top_srcdir)/tools_layouts \ -I$(top_srcdir)/tools_res_mgmt AM_CPPFLAGS += $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -Wall -W -DMST_UL -g ${MFLASH_INBAND_FLAG} $(COMPILER_FPIC) noinst_LTLIBRARIES = libmflash.la libmflash_la_SOURCES = mflash.c mflash.h mflash_gw.c mflash_gw.h mflash_new_gw.c mflash_new_gw.h \ mflash_dev_capability.c mflash_dev_capability.h \ mflash_pack_layer.c mflash_pack_layer.h \ mflash_access_layer.c mflash_access_layer.h \ mflash_common_structs.h mflash_types.h flash_int_defs.h noinst_HEADERS = mflash.h mflash_gw.h mflash_new_gw.h mflash_types.h mflash_common_structs.h mstflint-4.26.0/mflash/mflash_gw.c0000644000175000017500000004173314522641732017300 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * mflash_gw.c * * Created on: Jul 8, 2020 * Author: edwardg */ #include "mflash_pack_layer.h" #include "mflash_dev_capability.h" #include "mflash_access_layer.h" #include "flash_int_defs.h" #include #ifdef __WIN__ // // Windows (Under DDK) // #define OP_NOT_SUPPORTED EINVAL #define usleep(x) Sleep(((x + 999) / 1000)) #endif // __WIN_ #define CHECK_RC_REL_SEM(mfl, rc) \ do \ { \ if (rc) \ { \ release_semaphore(mfl, 0); \ return rc; \ } \ } while (0) static int st_spi_wait_wip(mflash* mfl, u_int32_t init_delay_us, u_int32_t retry_delay_us, u_int32_t num_of_retries) { int rc = 0; u_int8_t status = 0; u_int32_t i = 0; usleep(init_delay_us); for (i = 0; i < num_of_retries; ++i) { rc = mfl->f_spi_status(mfl, SFC_RDSR, &status); CHECK_RC(rc); if ((status & 1) == 0) { return MFE_OK; } usleep(retry_delay_us); if (mfl->cputUtilizationApplied) { if ((i % mfl->cpuPercent) == 0) { msleep(1); } } } return MFE_WRITE_TIMEOUT; } static u_int32_t log2up(u_int32_t in) { u_int32_t i = 0; for (i = 0; i < 32; i++) { if (in <= (u_int32_t)(1 << i)) { break; } } return i; } static bool is_x_byte_address_access_commands(mflash* mfl, int x) { if (x != 3 && x != 4) { return false; } flash_access_commands_t compared_to_access_commands = (x == 4) ? gen_4byte_address_access_commands() : gen_3byte_address_access_commands(); flash_access_commands_t cur = mfl->attr.access_commands; return (compared_to_access_commands.sfc_sector_erase == cur.sfc_sector_erase && compared_to_access_commands.sfc_subsector_erase == cur.sfc_subsector_erase && compared_to_access_commands.sfc_page_program == cur.sfc_page_program && compared_to_access_commands.sfc_read == cur.sfc_read && compared_to_access_commands.sfc_fast_read == cur.sfc_fast_read); } static int cntx_exec_cmd(mflash* mfl, u_int32_t gw_cmd, char* msg) { if (!IS_CONNECTX_4TH_GEN_FAMILY(mfl->attr.hw_dev_id)) { // for old devices lock bit is separate from the flash HW ifc // for new devices need to make sure this bit remains locked when writing the dword gw_cmd = MERGE(gw_cmd, 1, 31, 1); } if ((gw_cmd & (1 << HBO_ADDR_PHASE)) != 0) { // This is an access command if (is_x_byte_address_access_commands(mfl, 4)) { gw_cmd = MERGE(gw_cmd, 1, HBO_ADDR_SIZE, 1); } else if (!is_x_byte_address_access_commands(mfl, 3)) { return MFE_ACCESS_COMMANDS_NOT_INITIALIZED; } } gw_cmd = MERGE(gw_cmd, 1, HBO_BUSY, 1); MfError status; int flash_enable_needed = is_flash_enable_needed(mfl, &status); // for new devices this value is always 0 if (status != MFE_OK) { return status; } if (flash_enable_needed) { gw_cmd = MERGE(gw_cmd, 1, HBO_FLASH_ENABLE, 1); } gw_cmd = MERGE(gw_cmd, (u_int32_t)mfl->curr_bank, HBO_CHIP_SELECT, 1); DPRINTF(("cntx_exec_cmd: %s, gw_cmd = %#x GW = %#x\n", msg, gw_cmd, mfl->gw_cmd_register_addr)); MWRITE4(mfl->gw_cmd_register_addr, gw_cmd); return gw_wait_ready(mfl, msg); } /* * execute a flash GW command and get the output: data0...data3 from the flash interface * * mfl - pointer to an initilized mflash obj * gw_cmd - the flash gateway command to execute * buff - pointer to a buffer where the output data from the flash GW will be written to * buff_dword_sz - size for buff in dwords * addr - if != NULL *addr will be written to the addr bits of the flash GW. (for commands that read from flash) * msg - optional string that describes the action for debug purposes, not used ATM however its recommended to put * usefull data for future dubugabillity. return : MFE_OK (0) upon success or a value != 0 upon error accroding to * mlfash error code. */ static int cntx_exec_cmd_get(mflash* mfl, u_int32_t gw_cmd, u_int32_t* buff, int buff_dword_sz, u_int32_t* addr, char* msg) { int rc = 0; if (!mfl || !buff || !buff_dword_sz) { return MFE_BAD_PARAMS; } rc = mfl_com_lock(mfl); CHECK_RC(rc); // write GW addr if needed if (addr) { if (mwrite4(mfl->mf, mfl->gw_addr_field_addr, *addr) != 4) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } } // execute gw command rc = cntx_exec_cmd(mfl, gw_cmd, msg); CHECK_RC_REL_SEM(mfl, rc); // copy data from CR-space to buff if (mread4_block(mfl->mf, mfl->gw_data_field_addr, buff, (buff_dword_sz << 2)) != (buff_dword_sz << 2)) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } // release semaphore release_semaphore(mfl, 0); return MFE_OK; } /* * Set input in: data0...data3 from the flash interface and execute a flash GW command * * mfl - pointer to an initilized mflash obj * gw_cmd - the flash gateway command to execute * buff - if != NULL pointer to a buffer to the input data for the flash GW. * buff_dword_sz - size for buff in dwords * addr - if != NULL *addr will be written to the addr bits of the flash GW. (for commands that write from flash) * msg - optional string that describes the action for debug purposes, not used ATM however its recommended to put * usefull data for future dubugabillity. return : MFE_OK (0) upon success or a value != 0 upon error accroding to * mlfash error code. */ static int cntx_exec_cmd_set(mflash* mfl, u_int32_t gw_cmd, u_int32_t* buff, int buff_dword_sz, u_int32_t* addr, char* msg) { int rc = 0; if (!mfl) { return MFE_BAD_PARAMS; } rc = mfl_com_lock(mfl); CHECK_RC(rc); // write data from buff to CR-space if (buff && buff_dword_sz) { if (mwrite4_block(mfl->mf, mfl->gw_data_field_addr, buff, (buff_dword_sz << 2)) != (buff_dword_sz << 2)) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } DPRINTF(("cntx_exec_cmd_set: set DATA, GW = %#x DATA[0] = %#x\n", mfl->gw_data_field_addr, buff[0])); } // write GW addr if needed if (addr) { if (mwrite4(mfl->mf, mfl->gw_addr_field_addr, *addr) != 4) { release_semaphore(mfl, 0); return MFE_CR_ERROR; } DPRINTF(("cntx_exec_cmd_set: set address, GW = %#x ADDR = %#x\n", mfl->gw_addr_field_addr, *addr)); } // execute gw command rc = cntx_exec_cmd(mfl, gw_cmd, msg); CHECK_RC_REL_SEM(mfl, rc); // release semaphore release_semaphore(mfl, 0); return MFE_OK; } int cntx_int_spi_get_status_data(mflash* mfl, u_int8_t op_type, u_int32_t* status, u_int8_t bytes_num) { int rc = 0; u_int32_t gw_cmd = 0; u_int32_t flash_data = 0; // TODO: adrianc: update msize from log2(bytes_num) gw_cmd = MERGE(gw_cmd, 1, HBO_READ_OP, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_DATA_PHASE, 1); gw_cmd = MERGE(gw_cmd, 2, HBO_DATA_SIZE, HBS_DATA_SIZE); gw_cmd = MERGE(gw_cmd, op_type, HBO_CMD, HBS_CMD); if (bytes_num > 4) { return MFE_BAD_PARAMS; } rc = cntx_exec_cmd_get(mfl, gw_cmd, &flash_data, 1, (u_int32_t*)NULL, "Read id"); CHECK_RC(rc); DPRINTF(("cntx_int_spi_get_status_data: op=%02x status=%08x\n", op_type, flash_data)); *status = (flash_data >> 8 * (4 - bytes_num)); return MFE_OK; } int cntx_st_spi_write_enable(mflash* mfl) { u_int32_t gw_cmd = 0; int rc = 0; // Write enable: gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, SFC_WREN, HBO_CMD, HBS_CMD); rc = cntx_exec_cmd_set(mfl, gw_cmd, (u_int32_t*)NULL, 0, (u_int32_t*)NULL, "WREN command"); CHECK_RC(rc); return MFE_OK; } int cntx_spi_write_status_reg(mflash* mfl, u_int32_t status_reg, u_int8_t write_cmd, u_int8_t bytes_num) { int rc = 0; u_int32_t gw_cmd = 0; // TODO: adrianc: add support for dynamic writes of power of 2 bytes_num not just 1,2 bytes rc = cntx_st_spi_write_enable(mfl); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_DATA_PHASE, 1); gw_cmd = MERGE(gw_cmd, write_cmd, HBO_CMD, HBS_CMD); if (bytes_num != 1 && bytes_num != 2) { return MFE_NOT_SUPPORTED_OPERATION; } // push status reg to upper bytes status_reg = status_reg << ((bytes_num == 2) ? 16 : 24); if (bytes_num == 2) { gw_cmd = MERGE(gw_cmd, 1, HBO_DATA_SIZE, 1); } rc = cntx_exec_cmd_set(mfl, gw_cmd, &status_reg, 1, (u_int32_t*)NULL, "Write-Status-Register"); // wait for flash to write the register if (mfl->attr.vendor == FV_S25FLXXXX && mfl->attr.type == FMT_S25FLXXXL) { // New CYPRESS msleep(WRITE_STATUS_REGISTER_DELAY_CYPRESS); } else if (mfl->attr.vendor == FV_ST && mfl->attr.type == FMT_N25QXXX) { // New MICRON msleep(WRITE_STATUS_REGISTER_DELAY_MICRON); } else { msleep(WRITE_STATUS_REGISTER_DELAY_MIN); // Some can sleep only 30 or even 15. We should consider optimize this. } return rc; } int cntx_st_spi_erase_sect(mflash* mfl, u_int32_t addr) { int rc = 0; u_int32_t gw_cmd = 0; u_int32_t gw_addr = 0; rc = set_bank(mfl, addr); CHECK_RC(rc); rc = cntx_st_spi_write_enable(mfl); CHECK_RC(rc); // Erase sector command: gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_ADDR_PHASE, 1); gw_cmd = MERGE(gw_cmd, mfl->attr.erase_command, HBO_CMD, HBS_CMD); gw_addr = addr & ONES32(mfl->attr.log2_bank_size); DPRINTF(("cntx_st_spi_erase_sect: addr = %#x, gw_cmd = %#x.\n", addr, gw_cmd)); rc = cntx_exec_cmd_set(mfl, gw_cmd, (u_int32_t*)NULL, 0, &gw_addr, "ES"); CHECK_RC(rc); // Wait for erase completion rc = st_spi_wait_wip(mfl, ERASE_SUBSECTOR_INIT_DELAY, ERASE_SUBSECTOR_RETRY_DELAY, ERASE_SUBSECTOR_RETRIES); CHECK_RC(rc); return MFE_OK; } int cntx_st_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, u_int32_t total_size) { int rc = 0; u_int32_t offs = 0; u_int32_t gw_cmd = 0; u_int32_t gw_addr = 0; u_int32_t buff[4] = {0}; if (blk_addr & ((u_int32_t)mfl->attr.block_write - 1)) { return MFE_BAD_ALIGN; } // sanity check ??? remove ??? if (blk_size != (u_int32_t)mfl->attr.block_write) { return MFE_BAD_PARAMS; } rc = set_bank(mfl, blk_addr); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, 1, HBO_DATA_PHASE, 1); gw_cmd = MERGE(gw_cmd, log2up(blk_size), HBO_DATA_SIZE, HBS_DATA_SIZE); if (is_first) { rc = cntx_st_spi_write_enable(mfl); CHECK_RC(rc); // Write the data block gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_ADDR_PHASE, 1); gw_cmd = MERGE(gw_cmd, mfl->attr.access_commands.sfc_page_program, HBO_CMD, HBS_CMD); gw_addr = blk_addr & ONES32(mfl->attr.log2_bank_size); DPRINTF(("flash_addr = %#x, blk_addr = %#x\n", gw_addr, blk_addr)); } if (!is_last) { gw_cmd = MERGE(gw_cmd, 1, HBO_CS_HOLD, 1); } // Data: for (offs = 0; offs < blk_size; offs += 4) { u_int32_t word = 0; word = MERGE(word, data[offs + 0], 24, 8); word = MERGE(word, data[offs + 1], 16, 8); word = MERGE(word, data[offs + 2], 8, 8); word = MERGE(word, data[offs + 3], 0, 8); // MWRITE4(HCR_FLASH_DATA + offs, word ); buff[offs / 4] = word; } DPRINTF(("Data to write = %#x, %#x, %#x, %#x\n", buff[0], buff[1], buff[2], buff[3])); rc = cntx_exec_cmd_set(mfl, gw_cmd, buff, (blk_size >> 2), &gw_addr, "PP command"); CHECK_RC(rc); // // Wait for end of write in flash (WriteInProgress = 0): // if (is_last) { rc = st_spi_wait_wip(mfl, WRITE_BLOCK_INIT_DELAY + WRITE_ADDITIONAL_BYTE_DELAY * total_size, WRITE_BLOCK_RETRY_DELAY, WRITE_BLOCK_RETRIES); CHECK_RC(rc); } return MFE_OK; } int cntx_sst_spi_block_write_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data) { int rc = 0; u_int32_t gw_cmd = 0; u_int32_t gw_addr = 0; u_int32_t word = 0; // sanity check ??? remove ??? if (blk_size != (u_int32_t)mfl->attr.block_write) { return MFE_BAD_PARAMS; } rc = set_bank(mfl, blk_addr); CHECK_RC(rc); gw_cmd = MERGE(gw_cmd, 1, HBO_DATA_PHASE, 1); gw_cmd = MERGE(gw_cmd, 0, HBO_DATA_SIZE, HBS_DATA_SIZE); rc = cntx_st_spi_write_enable(mfl); CHECK_RC(rc); // Write the data block gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_ADDR_PHASE, 1); gw_cmd = MERGE(gw_cmd, 0x02, HBO_CMD, HBS_CMD); gw_addr = blk_addr & ONES32(mfl->attr.log2_bank_size); // gw_cmd = MERGE(gw_cmd, 1 , HBO_CS_HOLD, 1); word = MERGE(word, data[0], 24, 8); DPRINTF(("data[0] = %#x, gw_addr = %#x, word = %#x, gw_cmd = %#x\n", data[0], gw_addr, word, gw_cmd)); rc = cntx_exec_cmd_set(mfl, gw_cmd, &word, 1, &gw_addr, "PB command"); CHECK_RC(rc); rc = st_spi_wait_wip(mfl, 0, 0, 50000); CHECK_RC(rc); // Full throttle polling - no cpu optimization for this flash return MFE_OK; } int cntx_st_spi_block_read_ex(mflash* mfl, u_int32_t blk_addr, u_int32_t blk_size, u_int8_t* data, u_int8_t is_first, u_int8_t is_last, bool verbose) { (void)verbose; int rc = 0; u_int32_t i = 0; u_int32_t gw_cmd = 0; u_int32_t gw_addr = 0; DPRINTF(("cntx_st_spi_block_read_ex(addr=%05x, u_int32_t size=%03x, first=%d, last=%d)\n", blk_addr, blk_size, (u_int32_t)is_first, (u_int32_t)is_last)); COM_CHECK_ALIGN(blk_addr, blk_size); if (blk_size > (u_int32_t)mfl->attr.block_write || blk_size < 4) { return MFE_BAD_PARAMS; } rc = set_bank(mfl, blk_addr); CHECK_RC(rc); if (is_first) { gw_cmd = MERGE(gw_cmd, 1, HBO_CMD_PHASE, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_ADDR_PHASE, 1); gw_cmd = MERGE(gw_cmd, mfl->attr.access_commands.sfc_read, HBO_CMD, HBS_CMD); rc = get_flash_offset(blk_addr, mfl->attr.log2_bank_size, &gw_addr); CHECK_RC(rc); } DPRINTF(("Flash_addr = %#x, gw_cmd = %#x, blk_addr = %#x, mfl->attr.log2_bank_size = %#x\n", gw_addr, gw_cmd, blk_addr, mfl->attr.log2_bank_size)); if (!is_last) { gw_cmd = MERGE(gw_cmd, 1, HBO_CS_HOLD, 1); } // Read the data block gw_cmd = MERGE(gw_cmd, 1, HBO_READ_OP, 1); gw_cmd = MERGE(gw_cmd, 1, HBO_DATA_PHASE, 1); gw_cmd = MERGE(gw_cmd, log2up(blk_size), HBO_DATA_SIZE, HBS_DATA_SIZE); rc = cntx_exec_cmd_get(mfl, gw_cmd, (u_int32_t*)data, (blk_size >> 2), &gw_addr, "Read"); CHECK_RC(rc); for (i = 0; i < blk_size; i += 4) { *(u_int32_t*)(data + i) = __be32_to_cpu(*(u_int32_t*)(data + i)); } return MFE_OK; } mstflint-4.26.0/mflash/Makefile.in0000644000175000017500000005113514522641737017234 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mflash DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(noinst_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmflash_la_LIBADD = am_libmflash_la_OBJECTS = mflash.lo mflash_gw.lo mflash_new_gw.lo \ mflash_dev_capability.lo mflash_pack_layer.lo \ mflash_access_layer.lo libmflash_la_OBJECTS = $(am_libmflash_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmflash_la_SOURCES) DIST_SOURCES = $(libmflash_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/cmdif \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/reg_access \ -I$(top_srcdir)/tools_layouts -I$(top_srcdir)/tools_res_mgmt \ $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -Wall -W -DMST_UL -g ${MFLASH_INBAND_FLAG} $(COMPILER_FPIC) noinst_LTLIBRARIES = libmflash.la libmflash_la_SOURCES = mflash.c mflash.h mflash_gw.c mflash_gw.h mflash_new_gw.c mflash_new_gw.h \ mflash_dev_capability.c mflash_dev_capability.h \ mflash_pack_layer.c mflash_pack_layer.h \ mflash_access_layer.c mflash_access_layer.h \ mflash_common_structs.h mflash_types.h flash_int_defs.h noinst_HEADERS = mflash.h mflash_gw.h mflash_new_gw.h mflash_types.h mflash_common_structs.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mflash/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mflash/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmflash.la: $(libmflash_la_OBJECTS) $(libmflash_la_DEPENDENCIES) $(EXTRA_libmflash_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libmflash_la_OBJECTS) $(libmflash_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mflash.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mflash_access_layer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mflash_dev_capability.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mflash_gw.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mflash_new_gw.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mflash_pack_layer.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/config/0000755000175000017500000000000014522641736015154 5ustar tzafrirctzafrircmstflint-4.26.0/config/ar-lib0000755000175000017500000001330214522641736016247 0ustar tzafrirctzafrirc#! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2012-03-01.08; # UTC # Copyright (C) 2010-2013 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: mstflint-4.26.0/config/config.guess0000755000175000017500000013036114522641736017500 0ustar tzafrirctzafrirc#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-06-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches with a ChangeLog entry to config-patches@gnu.org. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` ;; esac # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; or1k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; or32:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: mstflint-4.26.0/config/depcomp0000755000175000017500000005601614522641736016541 0ustar tzafrirctzafrirc#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: mstflint-4.26.0/config/config.sub0000755000175000017500000010531514522641736017144 0ustar tzafrirctzafrirc#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-04-24' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches with a ChangeLog entry to config-patches@gnu.org. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 \ | or1k | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i386-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or1k-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: mstflint-4.26.0/config/ltmain.sh0000644000175000017500000105152214522641735017001 0ustar tzafrirctzafrirc # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4.2 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.2 TIMESTAMP="" package_revision=1.3337 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$absdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" func_resolve_sysroot "$deplib" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 mstflint-4.26.0/config/missing0000755000175000017500000001533114522641736016556 0ustar tzafrirctzafrirc#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2012-06-26.16; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'automa4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: mstflint-4.26.0/LICENSE0000644000175000017500000000253614522641732014716 0ustar tzafrirctzafrirc Copyright (c) 2013 Mellanox Technologies Ltd. All rights reserved. This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file COPYING in the main directory of this source tree, or the OpenIB.org BSD license below: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. mstflint-4.26.0/mlxfwops/0000755000175000017500000000000014522641737015567 5ustar tzafrirctzafrircmstflint-4.26.0/mlxfwops/lib/0000755000175000017500000000000014522641737016335 5ustar tzafrirctzafrircmstflint-4.26.0/mlxfwops/lib/fw_version.h0000644000175000017500000001202314522641732020660 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXFWOPS_LIB_FW_VERSION_H_ #define MLXFWOPS_LIB_FW_VERSION_H_ #include #include #include #ifdef __WIN__ #ifdef MLXFWOP_EXPORTS #define MLXFWOP_API __declspec(dllexport) #else #define MLXFWOP_API __declspec(dllimport) #endif #else #define MLXFWOP_API #endif const std::string DIFFERENT_BRANCHES_EXCEPTION = "Trying to compare different branches is invalid"; const std::string NOT_SET_VERSION = ""; const unsigned short MAX_VERSION_LENGTH = 28; class FwVersionException : public std::runtime_error { public: FwVersionException() : std::runtime_error(DIFFERENT_BRANCHES_EXCEPTION) {} }; class MLXFWOP_API FwVersion { /* * Using MGIR command, when a given FW binary has non-zero value in * DEVELOPMENT_INFO, it shall be treated as a development branch file. * When the FW binary has empty (filled by 0x0) DEVELOPMENT_INFO field, * the FW file is a regular FW release file. * (From Development FW Versions for switches) */ public: FwVersion(); FwVersion(unsigned short int, unsigned short int, unsigned short int, const std::string& = ""); virtual ~FwVersion(); FwVersion(const FwVersion&); FwVersion& operator=(const FwVersion&); bool operator==(const FwVersion&) const; bool operator!=(const FwVersion&) const; bool operator>(const FwVersion&) const; bool operator<(const FwVersion&) const; bool operator>=(const FwVersion&) const; bool operator<=(const FwVersion&) const; std::string get() const; friend std::ostream& operator<<(std::ostream&, const FwVersion&); std::string get_fw_version(const std::string& master_format = "%d.%d.%d", bool even_subminor = false, const std::string& not_set = NOT_SET_VERSION) const; bool is_set() const; bool are_same_branch(const FwVersion&) const; int compare_master_version(const FwVersion&) const; int compare(const FwVersion&) const; virtual FwVersion* clone() const; protected: unsigned short int _major; unsigned short int _minor; unsigned short int _subminor; std::string _devBranchTag; virtual std::string get_master_version(const std::string& format, bool even_subminor = false) const; private: bool is_master_branch() const; bool is_switch_or_gb() const; /* * currently we have 3 FW version format * 0: MM.mm.ssss * 1: MM.mmbb.ssss * 2: MM.mm.bsss / MM.mm.bbss for branch !=0 * 3: string * Where: * M: major digit * m: minor digit * b: branch digit * s: subminor digit */ int get_master_format() const; }; class MLXFWOP_API ComponentFwVersion { public: ComponentFwVersion(); ComponentFwVersion(unsigned short int, unsigned short int); ComponentFwVersion(const ComponentFwVersion&); ComponentFwVersion& operator=(const ComponentFwVersion&); std::string ToString(); bool operator==(const ComponentFwVersion&) const; bool operator!=(const ComponentFwVersion&) const; bool operator>(const ComponentFwVersion&) const; bool operator<(const ComponentFwVersion&) const; bool operator>=(const ComponentFwVersion&) const; bool operator<=(const ComponentFwVersion&) const; private: int Compare(const ComponentFwVersion&) const; enum class VersionFormat : int { None = 0, Major = 1, Minor = 2, SubMinor = 3 }; unsigned short int _major; unsigned short int _minor; unsigned short int _subMinor; VersionFormat _format; }; #endif /* MLXFWOPS_LIB_FW_VERSION_H_ */ mstflint-4.26.0/mlxfwops/lib/flint_io.h0000644000175000017500000003616514522641732020317 0ustar tzafrirctzafrirc/* * * flint_io.h - FLash INTerface * * Copyright (c) 2011 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id: flint_io.h 7522 2011-11-16 15:37:21Z mohammad $ * */ #ifndef FLINT_IO_H #define FLINT_IO_H #ifdef __WIN__ #ifdef MLXFWOP_EXPORTS #define MLXFWOP_API __declspec(dllexport) #else #define MLXFWOP_API __declspec(dllimport) #endif #else #define MLXFWOP_API #endif #include "flint_base.h" #include #ifndef UEFI_BUILD #include #endif // external flash attr struct #define IO_MAX_BANKS_NUM 4 typedef struct ext_flash_attr { u_int8_t banks_num; u_int32_t hw_dev_id; u_int32_t rev_id; char* type_str; // NULL if not available u_int32_t jedec_id; u_int32_t size; u_int32_t sector_size; // minimal sec int block_write; int command_set; u_int8_t quad_en_support; u_int8_t driver_strength_support; u_int8_t dummy_cycles_support; u_int8_t quad_en; MfError mf_get_quad_en_rc; u_int8_t driver_strength; MfError mf_get_driver_strength_rc; u_int8_t dummy_cycles; MfError mf_get_dummy_cycles_rc; u_int8_t write_protect_support; write_protect_info_t protect_info_array[IO_MAX_BANKS_NUM]; MfError mf_get_write_protect_rc_array[IO_MAX_BANKS_NUM]; } ext_flash_attr_t; // Common base class for Flash and for FImage class MLXFWOP_API FBase : public FlintErrMsg { public: enum { Fwm_Default = 0, Fwm_4KB = 1, Fwm_64KB = 2 }; FBase(bool is_flash) : _is_image_in_odd_chunks(false), _log2_chunk_size(0), _is_flash(is_flash), _advErrors(true) {} virtual ~FBase() {} virtual bool open(uefi_Dev_t* uefi_dev, uefi_dev_extra_t* uefi_extra, bool force_lock = false, bool advErr = true) = 0; virtual bool open(const char*, bool, bool) = 0; virtual bool open(const char* device, bool, bool, int, flash_params_t*, int, bool, int) = 0; virtual bool is_fifth_gen() = 0; virtual void close() = 0; virtual bool read(u_int32_t addr, u_int32_t* data) = 0; virtual bool read(u_int32_t addr, void* data, int len, bool verbose = false, const char* message = "") = 0; virtual bool read_modify_write(u_int32_t phy_addr, void* data, int cnt, bool noerase = false) = 0; virtual bool read_modify_write_phy(u_int32_t phy_addr, void* data, int cnt, bool noerase = false) = 0; virtual bool write(u_int32_t addr, void* data, int cnt) { return write(addr, data, cnt, false); } virtual bool write(u_int32_t addr, void* data, int cnt, bool noerase) = 0; virtual bool write_phy(u_int32_t phy_addr, void* data, int cnt, bool noerase = false) = 0; virtual bool write(u_int32_t addr, u_int32_t data) = 0; virtual bool set_flash_working_mode(int mode = FBase::Fwm_Default) = 0; virtual bool set_flash_utilization(bool, int) = 0; virtual int get_flash_working_mode() = 0; virtual bool set_no_flash_verify(bool) = 0; virtual u_int32_t get_sector_size() = 0; virtual u_int32_t get_size() = 0; virtual u_int32_t get_effective_size() = 0; virtual u_int32_t get_dev_id() = 0; virtual u_int32_t get_rev_id() = 0; virtual mfile* getMfileObj() = 0; virtual mflash* getMflashObj() = 0; virtual bool erase_sector(u_int32_t addr) = 0; virtual BinIdT get_bin_id() { return UNKNOWN_BIN; }; Crc16& get_image_crc() { return _image_crc; }; bool is_flash() { return _is_flash; }; bool read_phy(u_int32_t phy_addr, void* data, int len); bool read_phy(u_int32_t phy_addr, u_int32_t* data); virtual void set_address_convertor(u_int32_t log2_chunk_size, bool is_image_in_odd_chunks) { _log2_chunk_size = log2_chunk_size; _is_image_in_odd_chunks = is_image_in_odd_chunks; } virtual u_int32_t get_phys_from_cont(u_int32_t cont_addr, u_int32_t log2_chunk_size, bool is_image_in_odd_chunks) { u_int32_t phys_addr; u_int32_t log2_chunk_size_bak = _log2_chunk_size; bool is_image_in_odd_chunks_bak = _is_image_in_odd_chunks; set_address_convertor(log2_chunk_size, is_image_in_odd_chunks); phys_addr = cont2phys(cont_addr); set_address_convertor(log2_chunk_size_bak, is_image_in_odd_chunks_bak); return phys_addr; } u_int32_t get_log2_chunk_size() { return _log2_chunk_size; } bool get_is_image_in_odd_chunks() { return _is_image_in_odd_chunks; } enum { MAX_FLASH = 4 * 1048576 }; protected: // Address translation functions for ConnectX. // Translate between contiguous "logical" addresses // If Failsafe zebra mapping is enabled: // Result is concatenation of: // The lower log2_chunk_size bits of the cons_addr // The is_image_in_odd_chunk bit // The remaining upper bits of the cons_addr u_int32_t cont2phys(u_int32_t cont_addr) { u_int32_t result; if (_log2_chunk_size) { result = (cont_addr & (0xffffffff >> (32 - _log2_chunk_size))) | (_is_image_in_odd_chunks << _log2_chunk_size) | ((cont_addr << 1) & (0xffffffff << (_log2_chunk_size + 1))); } else { result = cont_addr; } return result; } u_int32_t phys2cont(u_int32_t phys_addr) { u_int32_t result; if (_log2_chunk_size) { result = (phys_addr & (0xffffffff >> (32 - _log2_chunk_size))) | ((phys_addr >> 1) & (0xffffffff << (_log2_chunk_size))); } else { result = phys_addr; } return result; } bool readWriteCommCheck(u_int32_t addr, int len) { if (addr & 0x3) { return errmsg("Address should be 4-bytes aligned."); } if (len & 0x3) { return errmsg("Length should be 4-bytes aligned."); } return true; } void check_uefi_build() { #ifndef UEFI_BUILD throw; #else return; #endif } bool _is_image_in_odd_chunks; u_int32_t _log2_chunk_size; Crc16 _image_crc; const bool _is_flash; // show advanced error msgs bool _advErrors; }; // Flash image (R/W) class MLXFWOP_API FImage : public FBase { public: FImage() : FBase(false), _fname(0), _buf(), _isFile(false), _len(0) {} virtual ~FImage() { close(); } u_int32_t* getBuf(); u_int32_t getBufLength() { return _len; } virtual bool open(const char* fname, bool read_only = false, bool advErr = true); using FBase::open; bool open(u_int32_t* buf, u_int32_t len, bool advErr = true); virtual void close(); virtual bool read(u_int32_t addr, u_int32_t* data); virtual bool read(u_int32_t addr, void* data, int len, bool verbose = false, const char* message = ""); virtual bool write(u_int32_t addr, void* data, int cnt); virtual bool write(u_int32_t, void*, int, bool) { check_uefi_build(); return false; } virtual bool write(u_int32_t, u_int32_t) { check_uefi_build(); return false; } virtual bool erase_sector(u_int32_t) { check_uefi_build(); return false; } virtual bool open(uefi_Dev_t*, uefi_dev_extra_t*, bool, bool) { check_uefi_build(); return false; } virtual bool open(const char*, bool, bool, int, flash_params_t*, int, bool, int) { check_uefi_build(); return false; } virtual bool read_modify_write_phy(u_int32_t, void*, int, bool) { check_uefi_build(); return false; } virtual bool read_modify_write(u_int32_t, void*, int, bool = false) { check_uefi_build(); return false; } virtual bool set_flash_working_mode(int) { check_uefi_build(); return false; } virtual bool set_flash_utilization(bool, int) { check_uefi_build(); return false; } virtual bool write_phy(u_int32_t, void*, int, bool) { check_uefi_build(); return false; } virtual bool set_no_flash_verify(bool) { check_uefi_build(); return false; } virtual int get_flash_working_mode() { check_uefi_build(); return -1; } virtual u_int32_t get_sector_size(); virtual u_int32_t get_size() { return getBufLength(); } virtual u_int32_t get_effective_size() { return get_size(); } virtual u_int32_t get_dev_id() { return 0; } virtual u_int32_t get_rev_id() { return 0; } virtual mfile* getMfileObj() { check_uefi_build(); return (mfile*)NULL; } virtual mflash* getMflashObj() { check_uefi_build(); return (mflash*)NULL; } virtual bool is_fifth_gen() { return false; } private: bool readFileGetBuffer(std::vector& dataBuf); bool writeEntireFile(std::vector& fileContent); bool getFileSize(int& fileSize); const char* _fname; std::vector _buf; bool _isFile; u_int32_t _len; }; // // Flash access (R/W) // class MLXFWOP_API Flash : public FBase { public: Flash() : FBase(true), _mfl((mflash*)NULL), _no_flash_verify(false), _ignore_cache_replacement(false), _curr_sector(0xffffffff), _curr_sector_size(0), _port_num(0), _cr_space_locked(0), _flash_working_mode(FBase::Fwm_Default), _cputUtilizationApplied(false), _cpuPercent(-1) { memset(&_attr, 0, sizeof(_attr)); } virtual ~Flash() { close(); }; // FBase Interface virtual bool open(const char* device, bool force_lock = false, bool read_only = false, int num_of_banks = 4, flash_params_t* flash_params = (flash_params_t*)NULL, int ignoe_cache_replacement = 0, bool advErr = true, int cx3_fw_access = 0); using FBase::open; virtual bool open(uefi_Dev_t* uefi_dev, uefi_dev_extra_t* uefi_extra, bool force_lock = false, bool advErr = true); virtual bool open(const char*, bool, bool) { #ifndef UEFI_BUILD throw; #else return false; #endif } virtual void close(); virtual bool read(u_int32_t addr, u_int32_t* data); virtual bool read(u_int32_t addr, void* data, int len, bool verbose = false, const char* message = ""); virtual bool write_phy(u_int32_t phy_addr, void* data, int cnt, bool noerase = false); // read modify write virtual bool read_modify_write_phy(u_int32_t phy_addr, void* data, int cnt, bool noerase = false); // read modify // write bool write_phy(u_int32_t phy_addr, u_int32_t data); // read modify write bool erase_sector_phy(u_int32_t phy_addr); bool update_boot_addr(u_int32_t boot_addr) { return mf_update_boot_addr(_mfl, boot_addr) == MFE_OK; } // // Flash Interface // u_int32_t get_current_sector_size() { return _curr_sector_size; } u_int32_t get_sector_size() { return _attr.sector_size; } virtual u_int32_t get_size() { return _attr.size; } virtual u_int32_t get_effective_size(); virtual u_int32_t get_dev_id() { return _attr.hw_dev_id; } u_int32_t get_rev_id() { return _attr.rev_id; } BinIdT get_bin_id() { return _attr.bin_id; }; u_int32_t get_port_num() { return _port_num; } u_int8_t get_cr_space_locked() { return _cr_space_locked; } bool get_ignore_cache_replacment() { return _ignore_cache_replacement; } virtual bool set_no_flash_verify(bool val); static void get_flash_list(char* flash_list, int buffer_size) { return mf_flash_list(flash_list, buffer_size); } // Write and Erase functions are performed by the Command Set virtual bool erase_sector(u_int32_t addr); virtual bool write(u_int32_t addr, void* data, int cnt, bool noerase = false); virtual bool read_modify_write(u_int32_t phy_addr, void* data, int cnt, bool noerase = false); virtual bool write(u_int32_t addr, u_int32_t data); virtual bool enable_hw_access(u_int64_t key); virtual bool disable_hw_access(); bool disable_hw_access(u_int64_t key); virtual bool is_fifth_gen(); const char* getFlashType(); bool get_attr(ext_flash_attr_t& attr); bool set_attr(char* param_name, char* param_val_str); bool flash_working_mode_supported() { return _attr.support_sub_and_sector; } virtual int get_flash_working_mode() { return _flash_working_mode; } virtual bool set_flash_working_mode(int mode = FBase::Fwm_Default); virtual bool set_flash_utilization(bool, int); bool is_flash_write_protected(); static void deal_with_signal(); mfile* getMfileObj() { return mf_get_mfile(_mfl); } mflash* getMflashObj() { return _mfl; } enum { TRANS = 4096 }; bool open_com_checks(const char* device, int rc, bool force_lock); // needed for printing flash status in flint hw query cmd #define QUAD_EN_PARAM "QuadEn" #define DRIVER_STRENGTH_PARAM "DriverStrength" #define DUMMY_CYCLES_PARAM "DummyCycles" #define FLASH_NAME "Flash" #define WRITE_PROTECT "WriteProtected" #define WP_TOP_STR "Top" #define WP_BOTTOM_STR "Bottom" #define WP_SEC_STR "Sectors" #define WP_SUBSEC_STR "SubSectors" #define WP_DISABLED_STR "Disabled" protected: bool write_sector_with_erase(u_int32_t addr, void* data, int cnt); bool write_with_erase(u_int32_t addr, void* data, int cnt); mflash* _mfl; flash_attr _attr; bool _no_flash_verify; bool _ignore_cache_replacement; // for FS3 devices flash access. u_int32_t _curr_sector; u_int32_t _curr_sector_size; // can work with both 4KB and 64KB sectors u_int32_t _port_num; u_int8_t _cr_space_locked; int _flash_working_mode; bool _cputUtilizationApplied; int _cpuPercent; }; #endif mstflint-4.26.0/mlxfwops/lib/components/0000755000175000017500000000000014522641732020515 5ustar tzafrirctzafrircmstflint-4.26.0/mlxfwops/lib/components/fs_synce_ops.cpp0000644000175000017500000001404114522641732023713 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fs_synce_ops.h" #include #include FsSyncEOperations::FsSyncEOperations(FImage* imageAccess) : FsCompsOperations(imageAccess) { memset(&_header, 0xff, sizeof(_header)); } bool FsSyncEOperations::FwQuery(fw_info_t* fwInfo, bool readRom, bool isStripedImage, bool quickQuery, bool ignoreDToc, bool verbose) { u_int8_t data[sizeof(_header)] = {0}; if (_header.fingerprint == 0xffff) { if (!_ioAccess->read(0, data, sizeof(_header), false, NULL)) { return errmsg("read error (%s)\n", (*_ioAccess).err()); } memcpy(&_header, data, sizeof(_header)); _fwImgInfo.ext_info.fw_ver[0] = _header.imageVersionMajor; _fwImgInfo.ext_info.fw_ver[1] = _header.imageVersionMinor; } if (fwInfo != nullptr) { std::copy(begin(_fwImgInfo.ext_info.fw_ver), end(_fwImgInfo.ext_info.fw_ver), begin(fwInfo->fw_info.fw_ver)); } return FwVerify(NULL); } bool FsSyncEOperations::FwVerify(VerifyCallBack, bool, bool, bool) { u_int32_t length = _ioAccess->get_size() - (_header.S == 0 ? sizeof(image_layout_image_signature_2) : 0) - sizeof(_header); if (_header.lengthOfFile != length) { return errmsg("Header verify error - wrong length\n"); } return true; } bool FsSyncEOperations::PrintQuery() { ostringstream ss; ss << left; ss << std::setw(23) << "Clock Sync Index:" << (short)_header.clockSyncIndex << endl; ss << std::setw(23) << "Image Version:" << (short)_header.imageVersionMajor << "." << (short)_header.imageVersionMinor << endl; ss << std::setw(23) << "Vendor HW ID:" << ToString(_header.clockSyncVendorHWID) << endl; ss << std::setw(23) << "System ID:" << ToString(_header.systemID) << endl; cout << ss.str(); return true; } void FsSyncEOperations::PrintComponentData(vector& data, u_int32_t deviceIndex) { if (!data.empty()) { ostringstream ss; component_synce_st cmpSyncE; memcpy(&cmpSyncE, data.data(), sizeof(cmpSyncE)); // do not change to unpack, already unpacked in MCQI ss << left; ss << std::setw(23) << "Clock Sync Index:" << (short)deviceIndex << endl; ss << std::setw(23) << "Image Version:" << (short)cmpSyncE.image_version_major << "." << (short)cmpSyncE.image_version_minor << endl; ss << std::setw(23) << "Vendor HW ID:" << ToString((ClockSyncVendorHWID)cmpSyncE.vendor_id) << endl; // ss << std::setw(23) << "System ID:" << ToString(_header.systemID) << endl; cout << ss.str(); } } bool FsSyncEOperations::IsCompatibleToDevice(vector& data, u_int8_t forceVersion) { if (!data.empty()) { ostringstream ss; component_synce_st cmpSyncE; memcpy(&cmpSyncE, data.data(), sizeof(cmpSyncE)); // do not change to unpack, already unpacked in MCQI if ((ClockSyncVendorHWID)cmpSyncE.vendor_id != _header.clockSyncVendorHWID) { return errmsg("Vender HW ID is not compatible\n"); } if (!CheckFwVersion(ComponentFwVersion(cmpSyncE.image_version_major, cmpSyncE.image_version_minor), forceVersion)) { return false; } } return true; } u_int32_t FsSyncEOperations::GetDeviceIndex() { return _header.clockSyncIndex; } const char* FsSyncEOperations::FwGetResetRecommandationStr() { return REBOOT_REQUIRED_STR; } string FsSyncEOperations::ToString(SystemID systemID) { switch (systemID) { case (SystemID::Gorilla): return "Gorilla"; case (SystemID::AnacondaSecured): return "AnacondaSecured"; case (SystemID::MarlinLeaf): return "MarlinLeaf"; case (SystemID::MarlinSpine): return "MarlinSpine"; case (SystemID::Moose): return "Moose"; case (SystemID::Komodo): return "Komodo"; case (SystemID::Kong): return "Kong"; default: return "Unknown"; } } string FsSyncEOperations::ToString(ClockSyncVendorHWID hwID) { switch (hwID) { case (ClockSyncVendorHWID::Renesas): return "Renesas"; case (ClockSyncVendorHWID::SiTime148): return "SiTime148"; case (ClockSyncVendorHWID::SiTime348): return "SiTime348"; case (ClockSyncVendorHWID::TI): return "TI"; case (ClockSyncVendorHWID::Microchip): return "Microchip"; default: return "Unknown"; } }mstflint-4.26.0/mlxfwops/lib/components/fs_synce_ops.h0000644000175000017500000000711414522641732023363 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS_SYNCE_OPS #define FS_SYNCE_OPS #include "fs_comps_ops.h" #ifdef __WIN__ #ifdef MLXFWOP_EXPORTS #define MLXFWOP_API __declspec(dllexport) #else #define MLXFWOP_API __declspec(dllimport) #endif #else #define MLXFWOP_API #endif class MLXFWOP_API FsSyncEOperations : public FsCompsOperations { public: FsSyncEOperations(FImage* imageAccess); bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false) override; bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false) override; bool PrintQuery() override; u_int32_t GetDeviceIndex() override; bool IsCompatibleToDevice(vector& data, u_int8_t forceVersion) override; const char* FwGetResetRecommandationStr() override; FwComponent::comps_ids_t GetComponentID() override { return FwComponent::comps_ids_t::COMPID_CLOCK_SYNC_EEPROM; } static void PrintComponentData(vector& data, u_int32_t deviceIndex); private: enum class SystemID : u_int16_t { Gorilla = 1, AnacondaSecured = 2, MarlinLeaf = 3, MarlinSpine = 4, Moose = 5, Komodo = 6, Kong = 7 }; enum class ClockSyncVendorHWID : u_int8_t { Renesas = 0, SiTime148 = 1, SiTime348 = 2, TI = 3, Microchip = 7 }; struct SyncEFileHeader { u_int16_t fingerprint; u_int8_t imageVersionMinor : 4; u_int8_t imageVersionMajor : 4; u_int8_t reserved : 4; u_int8_t clockSyncIndex : 4; SystemID systemID; ClockSyncVendorHWID clockSyncVendorHWID; u_int8_t headerVersion; u_int16_t fileCRC; u_int16_t lengthOfFile; u_int16_t headerCRC; u_int16_t reserved2 : 15; u_int16_t S : 1; }; static string ToString(SystemID systemID); static string ToString(ClockSyncVendorHWID hwID); private: SyncEFileHeader _header; }; #endif /* FS_SYNCE_OPS */mstflint-4.26.0/mlxfwops/lib/components/fs_comps_ops.cpp0000644000175000017500000001251414522641732023716 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include FsCompsException::FsCompsException(const string& exceptionMsg) : msg(exceptionMsg) {} const char* FsCompsException::what() const throw() { return msg.c_str(); } bool FsCompsOperations::GetImageSize(u_int32_t* image_size) { *image_size = _ioAccess->get_size(); return true; } bool FsCompsOperations::FwReadData(void* image, u_int32_t* image_size, bool verbose) { (void)verbose; (void)image_size; if (image != NULL) { if (!_ioAccess->read(0, (u_int32_t*)image, _ioAccess->get_size())) { return errmsg("Failed to read Image: %s", _ioAccess->err()); } } return true; } bool FsCompsOperations::CheckFwVersion(ComponentFwVersion currentVersion, u_int8_t forceVersion) { ComponentFwVersion newVersion = ComponentFwVersion(_fwImgInfo.ext_info.fw_ver[0], _fwImgInfo.ext_info.fw_ver[1]); printf("\n Current FW version on flash: %s\n", currentVersion.ToString().c_str()); printf(" New FW version: %s\n", newVersion.ToString().c_str()); if (currentVersion >= newVersion) { printf("\n Note: The new FW version is %s the current FW version on flash.\n", currentVersion == newVersion ? "the same as" : "older than"); if (!mft_utils::askUser(nullptr, forceVersion)) { return errmsg("Aborted by the user."); } } return true; } bool FsCompsOperations::FwQuery(fw_info_t* fwInfo, bool, bool, bool, bool, bool) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::SignForSecureBoot(const char*, const char*, const MlxSign::Signer&) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage, bool showItoc, bool ignoreDToc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwReadRom(std::vector& romSect) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwBurnRom(FImage* romImg, bool ignoreProdIdCheck, bool ignoreDevidCheck, ProgressCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc, ProgressCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwSetVSD(char* vsdStr, ProgressCallBack progressFunc, PrintCallBack printFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwResetNvData() { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwShiftDevData(PrintCallBack progressFunc) { return Unsupported(__FUNCTION__); } bool FsCompsOperations::FwCalcMD5(u_int8_t md5sum[16]) { return Unsupported(__FUNCTION__); } mstflint-4.26.0/mlxfwops/lib/components/fs_cert_ops.h0000755000175000017500000000462214522641732023203 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS_CERT_OPS #define FS_CERT_OPS #include "fs_comps_ops.h" #ifdef __WIN__ #ifdef MLXFWOP_EXPORTS #define MLXFWOP_API __declspec(dllexport) #else #define MLXFWOP_API __declspec(dllimport) #endif #else #define MLXFWOP_API #endif class MLXFWOP_API FsCertOperations : public FsCompsOperations { public: FsCertOperations(FImage* imageAccess); bool FwInit() override; bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false) override; bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false) override; const char* FwGetResetRecommandationStr() override; FwComponent::comps_ids_t GetComponentID() override { return _compID; } private: FwComponent::comps_ids_t _compID; }; #endif /* FS_CERT_OPS */mstflint-4.26.0/mlxfwops/lib/components/fs_cert_ops.cpp0000755000175000017500000000524414522641732023537 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fs_cert_ops.h" #include "mlxdpa/certcontainerbase.h" #include #include FsCertOperations::FsCertOperations(FImage* imageAccess) : FsCompsOperations(imageAccess), _compID(FwComponent::comps_ids_t::COMPID_UNKNOWN) { } bool FsCertOperations::FwInit() { #if ENABLE_DPA vector buf(CertStructHeader::HEADER_SIZE); CertStructHeader header; if (!_ioAccess->read(16, buf.data(), buf.size(), false, NULL)) { return errmsg("read error (%s)\n", (*_ioAccess).err()); } header.Deserialize(buf); if (header.GetType() == CertStructHeader::StructType::CacertMetadata) { _compID = FwComponent::comps_ids_t::DIGITAL_CACERT; } else if (header.GetType() == CertStructHeader::StructType::CacertRemove) { _compID = FwComponent::comps_ids_t::DIGITAL_CACERT_REMOVAL; } else { return errmsg("Unknown cert header type (%d)\n", (int)header.GetType()); } return true; #else return errmsg("DPA is not supported\n"); #endif } bool FsCertOperations::FwQuery(fw_info_t*, bool, bool, bool, bool, bool) { return true; } bool FsCertOperations::FwVerify(VerifyCallBack, bool, bool, bool) { return true; } const char* FsCertOperations::FwGetResetRecommandationStr() { return nullptr; }mstflint-4.26.0/mlxfwops/lib/components/fs_comps_ops.h0000644000175000017500000001104414522641732023360 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS_COMPS_OPS #define FS_COMPS_OPS #include "mlxfwops/lib/fw_ops.h" class FsCompsException : public exception { public: FsCompsException(const string& exceptionMsg); virtual const char* what() const throw(); virtual ~FsCompsException() throw(){}; private: string msg; FsCompsException(); }; class FsCompsOperations : public FwOperations { public: FsCompsOperations(FBase* ioAccess) : FwOperations(ioAccess) {} u_int8_t FwType() override { return FIT_COMPS; } bool FwInit() override { return true; } bool GetImageSize(u_int32_t* image_size) override; bool FwReadData(void* image, u_int32_t* image_size, bool verbose = false) override; bool CheckFwVersion(ComponentFwVersion currentVersion, u_int8_t forceVersion); virtual FwComponent::comps_ids_t GetComponentID() { return FwComponent::comps_ids_t::COMPID_UNKNOWN; } // Unsupported functionality bool FwQuery(fw_info_t* fwInfo, bool, bool, bool, bool, bool) override; bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false) override; bool SignForSecureBoot(const char*, const char*, const MlxSign::Signer&) override; bool FwReadRom(std::vector& romSect) override; bool FwBurnRom(FImage* romImg, bool ignoreProdIdCheck = false, bool ignoreDevidCheck = false, ProgressCallBack progressFunc = (ProgressCallBack)NULL) override; bool FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc = (ProgressCallBack)NULL) override; bool FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc = (ProgressCallBack)NULL) override; bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams) override; bool FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc) override; bool FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc = (PrintCallBack)NULL, ProgressCallBack progressFunc = (ProgressCallBack)NULL) override; bool FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL) override; bool FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL) override; bool FwSetVSD(char* vsdStr, ProgressCallBack progressFunc = (ProgressCallBack)NULL, PrintCallBack printFunc = (PrintCallBack)NULL) override; bool FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc = (PrintCallBack)NULL) override; bool FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc = (ProgressCallBack)NULL) override; bool FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage = false) override; bool FwResetNvData() override; bool FwShiftDevData(PrintCallBack progressFunc = (PrintCallBack)NULL) override; bool FwCalcMD5(u_int8_t md5sum[16]) override; protected: bool Unsupported(const string& msg) { return errmsg("Comps operations - unsupported functionality: %s\n", msg.data()); } }; #endif /* FS_COMPS_OPS */mstflint-4.26.0/mlxfwops/lib/components/fs_comps_factory.h0000644000175000017500000000623414522641732024233 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS_COMPS_FACTORY #define FS_COMPS_FACTORY #include "fs_comps_ops.h" #include "fs_synce_ops.h" #include "fs_cert_ops.h" class FsCompsFactory { public: static bool IsFsCompsFingerPrint(u_int8_t fingerPrint[]) { if (IsSyncEOpsFingerPrint(fingerPrint) || IsCertOpsFingerPrint(fingerPrint)) { return true; } return false; } static FsCompsOperations* Create(FBase* ioAccess) { u_int8_t fingerPrint[_FP_LENGTH] = {0}; FImage* imageAccess = dynamic_cast(ioAccess); if (imageAccess == nullptr) { throw FsCompsException("Unknown image format"); } ioAccess->read(0, fingerPrint, _FP_LENGTH, false, NULL); if (IsSyncEOpsFingerPrint(fingerPrint)) { return new FsSyncEOperations(imageAccess); } else if (IsCertOpsFingerPrint(fingerPrint)) { return new FsCertOperations(imageAccess); } throw FsCompsException("Couldn't identify component in given io access"); } private: static const u_int32_t _FP_LENGTH = 16; static bool IsSyncEOpsFingerPrint(const u_int8_t fingerPrint[]) { static const u_int32_t SYNCE_FP_LENGTH = 2; const u_int8_t expectedfingerPrint[SYNCE_FP_LENGTH + 1] = {0x55, 0xAA, 0x0}; return strncmp((const char*)fingerPrint, (const char*)expectedfingerPrint, SYNCE_FP_LENGTH) == 0; } static bool IsCertOpsFingerPrint(const u_int8_t fingerPrint[]) { static const u_int32_t CERT_FP_LENGTH = 16; const u_int8_t expectedfingerPrint[CERT_FP_LENGTH + 1] = "CERTIFICATE.BIN!"; return strncmp((const char*)fingerPrint, (const char*)expectedfingerPrint, CERT_FP_LENGTH) == 0; } }; #endif /* FS_COMPS_FACTORY */mstflint-4.26.0/mlxfwops/lib/flint_base.cpp0000644000175000017500000002014214522641732021141 0ustar tzafrirctzafrirc/* * * flint_base.cpp - FLash INTerface * * Copyright (c) 2011 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id: flint_base.cpp 7522 2011-11-16 15:37:21Z mohammad $ * */ #include #include "flint_base.h" #define DPRINTF(args) \ do \ { \ char* reacDebug = getenv("MLXFWOPS_ERRMSG_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("%s:%d: ", __FILE__, __LINE__); \ printf args; \ fflush(stdout); \ } \ } while (0) void FlintErrMsg::err_clear() { delete[] _err; _err = 0; } bool _print_crc = false; bool _silent = false; bool _assume_yes = false; bool _assume_no = false; bool _no_erase = false; bool _no_burn = false; bool _unlock_bypass = false; bool _byte_write = false; const char* g_sectNames[] = {"UNKNOWN (0 - Reserved)", "DDR", "Configuration", "Jump addresses", "EMT Service", "ROM", "GUID", "BOARD ID", "User Data", "FW Configuration", "Image Info", "DDRZ", "Hash File"}; void report(const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 1, 2))) #endif ; void report(const char* format, ...) { va_list args; va_start(args, format); vprintf(format, args); va_end(args); } // report #define MAX_STRING_LEN 512 void report_callback(f_prog_func_str func_str, const char* format, ...) { va_list args; char buff[MAX_STRING_LEN]; va_start(args, format); vsnprintf(buff, MAX_STRING_LEN, format, args); va_end(args); // printf("%s\n", buff); if (func_str != NULL) { func_str(buff); } } // report /* void report_erase(const char *format, ...) { va_list args; char buf[256]; int i; int len; if (_silent) return; va_start(args, format); vsnprintf(buf, sizeof buf, format, args); va_end(args); len = strlen(buf); for (i=0; i < len; ++i) printf("\b"); } // report_erase */ void report_repair_msg(const char* common_msg) { printf("\r%s OK ", common_msg); } #define MAX_ERR_STR_LEN 1024 #define PRE_ERR_MSG "-E-" void report_err(char err_buff[MAX_ERR_STR_LEN], const char* format, ...) { va_list args; va_start(args, format); if (vsnprintf(err_buff, MAX_ERR_STR_LEN, format, args) >= MAX_ERR_STR_LEN) { strcpy(&err_buff[MAX_ERR_STR_LEN - 5], "...\n"); } fprintf(stderr, PRE_ERR_MSG " %s", err_buff); va_end(args); return; } void report_warn(const char* format, ...) { #ifndef UEFI_BUILD va_list args; va_start(args, format); printf("\n-W- "); vfprintf(stdout, format, args); printf(" %s", "\n"); va_end(args); #endif } bool FlintErrMsg::errmsg(const char* format, ...) { va_list args; char* prev_err = _err; va_start(args, format); _err = vprint(format, args); DPRINTF(("Setting errmsg to: %s", _err)); va_end(args); delete[] prev_err; return false; } bool FlintErrMsg::errmsg(int errorCode, const char* format, ...) { va_list args; char* prev_err = _err; va_start(args, format); _err = vprint(format, args); DPRINTF(("Setting errmsg to: %s", _err)); va_end(args); delete[] prev_err; _errCode = errorCode; return false; } bool FlintErrMsg::errmsgAdv(bool showAdv, const char* normalFmt, const char* AdvFmt, ...) { // args should only apply to advanced format (i.e normalFmt does not contain %) va_list args; char errFmt[1024]; char* prev_err = _err; va_start(args, AdvFmt); if (showAdv) { snprintf(errFmt, 1024, "%s %s", normalFmt, AdvFmt); _err = vprint(errFmt, args); delete[] prev_err; } else { // For functions where the arguments are not available to be checked (such as vprintf), // specify the third parameter as zero. In this case the compiler only checks the format string for consistency errmsg(normalFmt, 0); } va_end(args); return false; } int FlintErrMsg::errmsgWCode(int errorCode, const char* format, ...) { va_list args; char* prev_err = _err; va_start(args, format); _err = vprint(format, args); va_end(args); delete[] prev_err; _errCode = errorCode; return errorCode; } //////////////////////////////////////////////////////////////////////// void Crc16::add(u_int32_t o) { if (_debug) { printf("Crc16::add(%08x)\n", o); } for (int i = 0; i < 32; i++) { if (_crc & 0x8000) { _crc = (u_int16_t)((((_crc << 1) | (o >> 31)) ^ 0x100b) & 0xffff); } else { _crc = (u_int16_t)(((_crc << 1) | (o >> 31)) & 0xffff); } o = (o << 1) & 0xffffffff; } } // Crc16::add //////////////////////////////////////////////////////////////////////// void Crc16::finish() { for (int i = 0; i < 16; i++) { if (_crc & 0x8000) { _crc = ((_crc << 1) ^ 0x100b) & 0xffff; } else { _crc = (_crc << 1) & 0xffff; } } // Revert 16 low bits _crc = _crc ^ 0xffff; } // Crc16::finish #ifdef UEFI_BUILD void* operator new(size_t size) { void* p; p = malloc(size); return p; } void* operator new[](size_t size) { void* p; p = malloc(size); return p; } // delete operator overloaded void operator delete(void* p) { free(p); } void operator delete[](void* p) { free(p); } namespace std { void __throw_bad_alloc(void) { // TODO: Check what happens when there is no mem or replace this exit with goto goto hell; hell: goto hell; } void __throw_length_error(const char*) { // TODO: Check what happens when there is no mem or replace this exit with goto goto hell; hell: goto hell; } void __throw_out_of_range(const char*) { // TODO: Check what happens when there is no mem or replace this exit with goto goto hell; hell: goto hell; } } // namespace std int goto_function() { goto hell; hell: return 0; } extern "C" void __cxa_pure_virtual(void){}; #endif mstflint-4.26.0/mlxfwops/lib/fw_ops.cpp0000644000175000017500000027562314522641732020350 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include "flint_base.h" #include "flint_io.h" #include "fw_ops.h" #include "fs5_ops.h" #include "fs4_ops.h" #include "fs3_ops.h" #include "fs2_ops.h" #include "fsctrl_ops.h" #include "fs_comps_factory.h" #ifdef CABLES_SUPP #include "cablefw_ops.h" #endif #ifndef NO_MFA_SUPPORT #include #endif #if !defined(UEFI_BUILD) #if !defined(NO_OPEN_SSL) #include #endif // NO_OPEN_SSL #endif // UEFI_BUILD #ifndef __WIN__ #define OP_NOT_SUPPORTED EOPNOTSUPP #else // __WIN__ #define OP_NOT_SUPPORTED EINVAL #endif // __WIN__ extern const char* g_sectNames[]; bool FwOperations::readBufAux(FBase& f, u_int32_t o, void* d, int l, const char* p) { bool rc = true; READBUF(f, o, d, l, p); return rc; } int FwOperations::getFileSignature(const char* fname) { FILE* fin; unsigned char tmpb[17] = {0}; int res = IMG_SIG_TYPE_UNKNOWN; if (!(fin = fopen(fname, "r"))) { // abit ugly , need to establish a correct ret val return IMG_SIG_OPEN_FILE_FAILED; } if (!fgets((char*)tmpb, sizeof(tmpb), fin)) { fclose(fin); return IMG_SIG_OPEN_FILE_FAILED; } if (tmpb[0] == 0xCC && tmpb[1] == 0 && tmpb[2] == 0xCC && tmpb[3] == 1) { res = IMG_SIG_TYPE_CC; fclose(fin); return res; } if (strlen((const char*)tmpb) < 4) { fclose(fin); return res; } if (!strncmp((char*)tmpb, "MTFW", 4) || FsCompsFactory::IsFsCompsFingerPrint(tmpb)) { res = IMG_SIG_TYPE_BIN; } if (!strncmp((char*)tmpb, "MFAR", 4)) { res = IMG_SIG_TYPE_MFA; } if (!strncmp((char*)tmpb, "MTCF", 4)) { res = IMG_SIG_TYPE_CF; } fclose(fin); return res; } #ifndef NO_MFA_SUPPORT int FwOperations::getBufferSignature(u_int8_t* buf, u_int32_t size) { int res = 0; if (size < 4) { return 0; } if (!strncmp((char*)buf, "MTFW", 4)) { res = IMG_SIG_TYPE_BIN; } if (!strncmp((char*)buf, "MFAR", 4)) { res = IMG_SIG_TYPE_MFA; } return res; } int FwOperations::getMfaImgInner(char* fileName, u_int8_t* mfa_buf, int size, char* psid, u_int8_t** imgbuf, char* errBuf, int errBufSize) { int image_type = 1; // FW image mfa_desc* mfa_d = NULL; int res = -1; // open mfa file if (fileName) { res = mfa_open_file(&mfa_d, fileName); } else if (mfa_buf && size != 0) { res = mfa_open_buf(&mfa_d, mfa_buf, size); } else { WriteToErrBuff(errBuf, (char*)"Internal error: bad parameters to getMfaImg", errBufSize); return res; } if (res) { // mfa_open_* failed, return error. res = res < 0 ? res : -1 * res; WriteToErrBuff(errBuf, (char*)"Failed to open mfa file", errBufSize); return res; } if (psid == NULL) { WriteToErrBuff(errBuf, (char*)"Internal error: PSID must be supplied", errBufSize); if (mfa_d) { mfa_close(mfa_d); } return -1; // No psid => no image } // get appropriate image for requested PSID from mfa file res = mfa_get_image(mfa_d, psid, image_type, (char*)"", imgbuf); // if res != 0 there is an error if (res) { const char* errStr = mfa_get_last_error(mfa_d); // if error field is empty return generic message if (!errStr || strlen(errStr) == 0) { errStr = "Failed to get MFA Image"; } WriteToErrBuff(errBuf, (char*)errStr, errBufSize); } // close mfa file mfa_close(mfa_d); return res; } int FwOperations::getMfaImg(char* fileName, char* psid, u_int8_t** imgbuf, char* errBuf, int errBufSize) { return getMfaImgInner(fileName, NULL, 0, psid, imgbuf, errBuf, errBufSize); } int FwOperations::getMfaImg(u_int8_t* mfa_buf, int size, char* psid, u_int8_t** imgbuf, char* errBuf, int errBufSize) { return getMfaImgInner(NULL, mfa_buf, size, psid, imgbuf, errBuf, errBufSize); } #endif void FwOperations::FwCleanUp() { if (_ioAccess) { _ioAccess->close(); delete _ioAccess; _ioAccess = (FBase*)NULL; } if (_fname) { delete[] _fname; _fname = (char*)NULL; } if (_devName) { delete[] _devName; _devName = (char*)NULL; } if (_fwParams.fileHndl) { delete[] _fwParams.fileHndl; _fwParams.fileHndl = (char*)NULL; } if (_fwParams.mstHndl) { delete[] _fwParams.mstHndl; _fwParams.mstHndl = (char*)NULL; } if (_fwParams.psid) { delete[] _fwParams.psid; _fwParams.psid = (char*)NULL; } } bool FwOperations::FwVerifyAdv(ExtVerifyParams& verifyParams) { return FwVerify(verifyParams.verifyCallBackFunc, verifyParams.isStripedImage, verifyParams.showItoc, verifyParams.ignoreDToc); } void FwOperations::FwInitCom() { memset(&_fwImgInfo, 0, sizeof(_fwImgInfo)); } void FwOperations::GetFwParams(fw_ops_params_t& fwParams) { fwParams = _fwParams; } void FwOperations::getSupporteHwId(u_int32_t** supportedHwId, u_int32_t& supportedHwIdNum) { *supportedHwId = _fwImgInfo.supportedHwId; supportedHwIdNum = _fwImgInfo.supportedHwIdNum; } bool FwOperations::CheckBoot2(u_int32_t beg, u_int32_t offs, u_int32_t& next, bool fullRead, const char* pref, VerifyCallBack verifyCallBackFunc) { DPRINTF(("FwOperations::CheckBoot2\n")); u_int32_t size = 0x0; char* pr = new char[strlen(pref) + 512]; sprintf(pr, "%s /0x%08x/ (BOOT2)", pref, offs + beg); // Size if (!(*_ioAccess).read(offs + beg + 4, &size)) { errmsg("%s - read error (%s)\n", pr, (*_ioAccess).err()); delete[] pr; return false; } TOCPU1(size); DPRINTF(("FwOperations::CheckBoot2 size = 0x%x\n", size)); if (size > 1048576 || size < 4) { report_callback(verifyCallBackFunc, "%s /0x%08x/ - unexpected size (0x%x)\n", pr, offs + beg + 4, size); delete[] pr; return errmsg("Boot2 invalid size\n"); } _fwImgInfo.boot2Size = (size + 4) * 4; // Get absolute address on flash when checking BOOT2 for FS3 image format (for FS2 its always displayed as // contiguous) Adrianc: why dont we show them both in the same way when running verify. u_int32_t boot2AbsAddr = ((this->FwType() == FIT_FS3 || this->FwType() == FIT_FS4) && _ioAccess->is_flash()) ? _ioAccess->get_phys_from_cont(beg, _fwImgInfo.cntxLog2ChunkSize, (_fwImgInfo.imgStart != 0)) : beg; sprintf(pr, "%s /0x%08x-0x%08x (0x%06x)/ (BOOT2)", pref, offs + boot2AbsAddr, offs + boot2AbsAddr + (size + 4) * 4 - 1, (size + 4) * 4); if (fullRead == true || !_ioAccess->is_flash()) { Crc16 crc; u_int32_t* buff = new u_int32_t[size + 4]; memset(buff, 0, (size + 4) * sizeof(u_int32_t)); bool rc = readBufAux((*_ioAccess), offs + beg, buff, size * 4 + 16, pr); if (!rc) { delete[] pr; delete[] buff; return errmsg("%s - read error (%s)\n", "Boot2", (*_ioAccess).err()); } // we hold for FS3 an image cache so we selectevely update it in UpdateImgCache() call UpdateImgCache((u_int8_t*)buff, offs + beg, size * 4 + 16); TOCPUn(buff, size + 4); CRC1n(crc, buff, size + 4); CRC1n(_ioAccess->get_image_crc(), buff, size + 4); crc.finish(); u_int32_t crc_act = buff[size + 3]; delete[] buff; if (crc.get() != crc_act) { DPRINTF(("FwOperations::CheckBoot2 wrong CRC (exp:0x%x, act:0x%x)\n", crc.get(), crc_act)); report_callback(verifyCallBackFunc, "%s /0x%08x/ - wrong CRC (exp:0x%x, act:0x%x)\n", pr, offs + beg, crc.get(), crc_act); if (!_fwParams.ignoreCrcCheck) { delete[] pr; return errmsg(MLXFW_BAD_CRC_ERR, BAD_CRC_MSG); } } else { report_callback(verifyCallBackFunc, "%s - OK\n", pr); } _ioAccess->get_image_crc() << crc_act; } next = offs + size * 4 + 16; delete[] pr; return true; } // CheckBoot2 bool FwOperations::CheckAndPrintCrcRes(char* pr, bool blank_crc, u_int32_t off, u_int32_t crc_act, u_int32_t crc_exp, bool ignore_crc, VerifyCallBack verifyCallBackFunc) { if (ignore_crc) { report_callback(verifyCallBackFunc, "%s - CRC IGNORED\n", pr); } else { if (blank_crc) { report_callback(verifyCallBackFunc, "%s - BLANK CRC (0xffff)\n", pr); } else if (crc_exp == crc_act) { report_callback(verifyCallBackFunc, "%s - OK\n", pr); } else { report_callback(verifyCallBackFunc, "%s /0x%08x/ - wrong CRC (exp:0x%x, act:0x%x)\n", pr, off, crc_exp, crc_act); if (!_fwParams.ignoreCrcCheck) { return errmsg(BAD_CRC_MSG); } } } return true; } const u_int32_t FwOperations::_cntx_magic_pattern[4] = {0x4D544657, // Ascii of "MTFW" 0x8CDFD000, // Random data 0xDEAD9270, 0x4154BEEF}; const u_int32_t FwOperations::_fs4_magic_pattern[4] = {0x4D544657, 0xABCDEF00, 0xFADE1234, 0x5678DEAD}; const u_int32_t FwOperations::_cntx_image_start_pos[FwOperations::CNTX_START_POS_SIZE] = { 0, 0x10000, 0x20000, 0x40000, 0x80000, 0x100000, 0x200000, 0x400000, 0x800000, 0x1000000}; bool FwOperations::FindMagicPattern(FBase* ioAccess, u_int32_t addr, u_int32_t const cntx_magic_pattern[]) { if (addr + 16 > ioAccess->get_effective_size()) { return false; } for (int i = 0; i < 4; i++) { u_int32_t w = 0; READ4_NOERRMSG((*ioAccess), addr + i * 4, &w); TOCPU1(w); if (w != cntx_magic_pattern[i]) { DPRINTF(("FwOperations::FindMagicPattern addr=0x%x false\n", addr)); // printf("-D- Looking for magic pattern %d addr %06x: Exp=%08x Act=%08x\n", i, addr + i * 4, // _cntx_magic_pattern[i], w); return false; } } DPRINTF(("FwOperations::FindMagicPattern addr=0x%x true\n", addr)); return true; } // FindAllImageStart // OUT: start_locations: set to the start addresses of the found image markers (in accending order) // OUT: found_images: Number of found images (and number of valid entries in the start_locations array). bool FwOperations::FindAllImageStart(FBase* ioAccess, u_int32_t start_locations[CNTX_START_POS_SIZE], u_int32_t* found_images, u_int32_t const cntx_magic_pattern[]) { DPRINTF(("FwOperations::FindAllImageStart\n")); int needed_pos_num; needed_pos_num = CNTX_START_POS_SIZE; /* WA: due to bug on SwichIB first GA FW (FW doesnt look at chip select field in mfba) * when reading from flash address 0x400000 it wraps around to 0x0 causing more than one * valid image to be found. as a WA we dont check at 0x400000. basic flash operations * are affected when attempting to access addressess greater than 0x3fffff. */ if (ioAccess->get_dev_id() == SWITCH_IB_HW_ID) { needed_pos_num -= 1; } ioAccess->set_address_convertor(0, 0); if (found_images) { *found_images = 0; for (int i = 0; i < needed_pos_num; i++) { if (FindMagicPattern(ioAccess, _cntx_image_start_pos[i], cntx_magic_pattern)) { start_locations[*found_images] = _cntx_image_start_pos[i]; (*found_images)++; } } DPRINTF(("FwOperations::FindAllImageStart found %d image(s)\n", *found_images)); } return true; } // CAN BE IN ANOTHER MODULE bool FwOperations::GetSectData(std::vector& file_sect, const u_int32_t* buff, const u_int32_t size) { file_sect.clear(); file_sect.insert(file_sect.end(), (u_int8_t*)buff, (u_int8_t*)buff + size); return true; } bool FwOperations::FwAccessCreate(fw_ops_params_t& fwParams, FBase** ioAccessP) { DPRINTF(("FwOperations::FwAccessCreate\n")); if (fwParams.hndlType == FHT_FW_FILE) { #ifndef NO_MFA_SUPPORT int sig = getFileSignature(fwParams.fileHndl); if (sig == IMG_SIG_OPEN_FILE_FAILED) { // i.e we failed to open file WriteToErrBuff(fwParams.errBuff, strerror(errno), fwParams.errBuffSize); return false; } if (sig == IMG_SIG_TYPE_BIN || sig == IMG_SIG_TYPE_CF) { *ioAccessP = new FImage; if (!(*ioAccessP)->open(fwParams.fileHndl, false, !fwParams.shortErrors)) { WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } } else if (sig == IMG_SIG_TYPE_MFA) { u_int8_t* imgbuf = NULL; int sz; // get image from mfa file if ((sz = getMfaImg(fwParams.fileHndl, fwParams.psid, &imgbuf, fwParams.errBuff, fwParams.errBuffSize)) < 0) { return false; } *ioAccessP = new FImage; if (!((FImage*)(*ioAccessP))->open((u_int32_t*)imgbuf, (u_int32_t)sz, !fwParams.shortErrors)) { mfa_release_image(imgbuf); WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } mfa_release_image(imgbuf); } else { WriteToErrBuff(fwParams.errBuff, (char*)"Invalid Image signature.", fwParams.errBuffSize); return false; // Unknown signature } #else *ioAccessP = new FImage; if (!(*ioAccessP)->open(fwParams.fileHndl, false, !fwParams.shortErrors)) { WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } #endif } else if (fwParams.hndlType == FHT_FW_BUFF) { u_int32_t numInfo = fwParams.buffSize; #ifndef NO_MFA_SUPPORT int sig = getBufferSignature((u_int8_t*)fwParams.buffHndl, numInfo); if (sig == IMG_SIG_TYPE_BIN) { *ioAccessP = new FImage; if (!((FImage*)*ioAccessP)->open(fwParams.buffHndl, (u_int32_t)numInfo, !fwParams.shortErrors)) { WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } } else if (sig == IMG_SIG_TYPE_MFA) { u_int8_t* imgbuf; int sz; // get image from mfa file if ((sz = getMfaImg((u_int8_t*)fwParams.buffHndl, numInfo, fwParams.psid, &imgbuf, fwParams.errBuff, fwParams.errBuffSize)) < 0) { return false; } *ioAccessP = new FImage; if (!((FImage*)*ioAccessP)->open((u_int32_t*)imgbuf, (u_int32_t)sz, !fwParams.shortErrors)) { mfa_release_image(imgbuf); WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } mfa_release_image(imgbuf); } else { WriteToErrBuff(fwParams.errBuff, (char*)"Invalid Image signature.", fwParams.errBuffSize); return false; // Unknown signature } #else *ioAccessP = new FImage; if (!((FImage*)*ioAccessP)->open(fwParams.buffHndl, numInfo, !fwParams.shortErrors)) { WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } #endif } else if (fwParams.hndlType == FHT_UEFI_DEV) { *ioAccessP = new Flash; if (!(*ioAccessP)->open(fwParams.uefiHndl, &fwParams.uefiExtra, false, !fwParams.shortErrors)) { WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } } else if (fwParams.hndlType == FHT_MST_DEV) { *ioAccessP = new Flash; if (!(*ioAccessP) ->open(fwParams.mstHndl, fwParams.forceLock, fwParams.readOnly, fwParams.numOfBanks, fwParams.flashParams, fwParams.ignoreCacheRep, !fwParams.shortErrors, fwParams.cx3FwAccess)) { // TODO: release memory here ? WriteToErrBuff(fwParams.errBuff, (char*)(*ioAccessP)->err(), fwParams.errBuffSize); delete *ioAccessP; return false; } // set no flash verify if needed (default =false) (*ioAccessP)->set_no_flash_verify(fwParams.noFlashVerify); // work with 64KB sector size if possible to increase performace in full fw burn ((*ioAccessP)->set_flash_working_mode(Flash::Fwm_64KB)); } else { WriteToErrBuff(fwParams.errBuff, (char*)"Unknown Handle Type.", fwParams.errBuffSize); return false; } return true; } bool FwOperations::GetImageFormatVersion(FBase& f, u_int32_t boot_version_offset, u_int8_t& image_format_version) { u_int32_t data = 0; if (!f.read(boot_version_offset, &data, IMAGE_LAYOUT_BOOT_VERSION_SIZE)) { return false; } image_layout_boot_version boot_version; memset(&boot_version, 0, sizeof(boot_version)); image_layout_boot_version_unpack(&boot_version, (u_int8_t*)&data); image_format_version = boot_version.image_format_version; DPRINTF(("FwOperations::GetImageFormatVersion image_format_version = %d\n", image_format_version)); return true; } u_int8_t FwOperations::IsFS4OrFS5Image(FBase& f, u_int32_t* found_images) { DPRINTF(("FwOperations::IsFS4OrFS5Image\n")); u_int8_t image_format_version; u_int32_t image_start[CNTX_START_POS_SIZE] = {0}; FindAllImageStart(&f, image_start, found_images, _fs4_magic_pattern); if (*found_images) { if (!GetImageFormatVersion(f, image_start[0] + FS4_BOOT_VERSION_OFFSET, image_format_version)) { return FS_UNKNOWN_IMG; } if (image_format_version == IMG_VER_FS4) { return FS_FS4_GEN; } else if (image_format_version == IMG_VER_FS5) { return FS_FS5_GEN; } else { return FS_UNKNOWN_IMG; } } return FS_UNKNOWN_IMG; } u_int8_t FwOperations::IsFS3OrFS2Image(FBase& f, u_int32_t* found_images) { u_int8_t image_format_version; u_int32_t image_start[CNTX_START_POS_SIZE] = {0}; FindAllImageStart(&f, image_start, found_images, _cntx_magic_pattern); if (found_images) { if (!GetImageFormatVersion(f, image_start[0] + FS3_BOOT_VERSION_OFFSET, image_format_version)) { return FS_UNKNOWN_IMG; } if (image_format_version == IMG_VER_FS3) { return FS_FS3_GEN; } else { // TODO: if the img format version is unknown we should fail instead of considering it FS2 return FS_FS2_GEN; } } return FS_UNKNOWN_IMG; } u_int8_t FwOperations::IsCableImage(FBase& f) { char data[5] = {0}; READ4_NOERRMSG(f, 0, (u_int32_t*)&data); if (!strncmp(data, "MTCF", 4)) { return FS_FC1_GEN; } return FS_UNKNOWN_IMG; } u_int8_t FwOperations::IsFSCompsImage(FBase& f) { u_int8_t data[16] = {0}; f.read(0, data, 16, false, NULL); if (FsCompsFactory::IsFsCompsFingerPrint(data)) { return FS_COMPS_GEN; } return FS_UNKNOWN_IMG; } u_int8_t FwOperations::CheckFwFormat(FBase& f, bool getFwFormatFromImg) { DPRINTF(("FwOperations::CheckFwFormat\n")); u_int8_t v; u_int32_t found_images = 0; if (f.is_flash() && !getFwFormatFromImg) { return GetFwFormatFromHwDevID(f.get_dev_id()); } else { v = IsCableImage(f); if (v != FS_UNKNOWN_IMG) { return v; } v = IsFSCompsImage(f); if (v != FS_UNKNOWN_IMG) { return v; } // First check if it is FS4 v = IsFS4OrFS5Image(f, &found_images); if (found_images) { return v; } // If not FS4 then check if it is FS3 or FS2 return IsFS3OrFS2Image(f, &found_images); } return FS_UNKNOWN_IMG; } bool FwOperations::CheckBinVersion(u_int8_t binVerMajor, u_int8_t binVerMinor) { if (binVerMajor == 0 && binVerMinor == 0) { return true; } if (binVerMajor > _maxBinMajorVer /*FS4_MAX_BIN_VER_MAJOR*/) { return errmsg(MLXFW_UNSUPPORTED_BIN_VER_ERR, "Unsupported binary version (%d.%d) please update to latest MFT package", binVerMajor, binVerMinor); } if (binVerMajor < _minBinMajorVer /*FS4_MIN_BIN_VER_MAJOR*/ || (binVerMajor == _minBinMajorVer /*FS4_MIN_BIN_VER_MAJOR*/ && binVerMinor < _minBinMinorVer)) { return errmsg(MLXFW_UNSUPPORTED_BIN_VER_ERR, "Unsupported binary version (%d.%d) minimal supported version (%d.%d)", binVerMajor, binVerMinor, _minBinMajorVer /*FS4_MIN_BIN_VER_MAJOR*/, _minBinMinorVer /*FS4_MIN_BIN_VER_MINOR*/); } return true; } FwOperations* FwOperations::FwOperationsCreate(void* fwHndl, void* info, char* psid, fw_hndl_type_t hndlType, char* errBuff, int buffSize, bool ignore_crc_check) { DPRINTF(("FwOperations::FwOperationsCreate\n")); fw_ops_params_t fwParams; memset(&fwParams, 0, sizeof(fwParams)); fwParams.psid = psid; fwParams.hndlType = hndlType; fwParams.errBuff = errBuff; fwParams.errBuffSize = buffSize; fwParams.ignoreCrcCheck = ignore_crc_check; fwParams.shortErrors = true; if (hndlType == FHT_FW_FILE) { fwParams.fileHndl = (char*)fwHndl; } else if (hndlType == FHT_FW_BUFF) { fwParams.buffHndl = (u_int32_t*)fwHndl; fwParams.buffSize = *((u_int32_t*)info); } else if (hndlType == FHT_UEFI_DEV) { fwParams.uefiHndl = (uefi_Dev_t*)fwHndl; fwParams.uefiExtra = *(uefi_dev_extra_t*)info; } else if (hndlType == FHT_MST_DEV) { fwParams.mstHndl = (char*)fwHndl; fwParams.forceLock = false; fwParams.readOnly = false; fwParams.numOfBanks = -1; fwParams.flashParams = (flash_params_t*)NULL; fwParams.ignoreCacheRep = 0; fwParams.noFlashVerify = false; fwParams.cx3FwAccess = 0; } else if (hndlType == FHT_CABLE_DEV) { fwParams.buffHndl = (u_int32_t*)fwHndl; } return FwOperationsCreate(fwParams); } bool FwOperations::imageDevOperationsCreate(fw_ops_params_t& devParams, fw_ops_params_t& imgParams, FwOperations** devFwOps, FwOperations** imgFwOps, bool ignoreSecurityAttributes, bool ignoreDToc) { *imgFwOps = FwOperationsCreate(imgParams); if (!(*imgFwOps)) { return false; } if ((*imgFwOps)->FwType() == FIT_FS2) { devParams.canSkipFwCtrl = true; *devFwOps = FwOperationsCreate(devParams); if (!(*devFwOps)) { return false; } return true; } fw_info_t imgQuery; memset(&imgQuery, 0, sizeof(fw_info_t)); if (!(*imgFwOps)->FwQuery(&imgQuery, true, false, true, ignoreDToc)) { delete *imgFwOps; *imgFwOps = NULL; return false; } if (imgQuery.fs3_info.security_mode == SM_NONE && ignoreSecurityAttributes == false && (*imgFwOps)->FwType() != FIT_COMPS) { devParams.noFwCtrl = true; } devParams.deviceIndex = (*imgFwOps)->GetDeviceIndex(); *devFwOps = FwOperationsCreate(devParams); if (!(*devFwOps)) { return false; } return true; } void FwOperations::BackUpFwParams(fw_ops_params_t& fwParams) { _fwParams.hndlType = fwParams.hndlType; _fwParams.buffHndl = fwParams.buffHndl; _fwParams.buffSize = fwParams.buffSize; _fwParams.cx3FwAccess = fwParams.cx3FwAccess; _fwParams.errBuff = (char*)NULL; _fwParams.errBuffSize = 0; _fwParams.fileHndl = (fwParams.hndlType == FHT_FW_FILE && fwParams.fileHndl) ? strncpy((char*)(new char[(strlen(fwParams.fileHndl) + 1)]), fwParams.fileHndl, strlen(fwParams.fileHndl) + 1) : (char*)NULL; // no support for flash params _fwParams.flashParams = (flash_params_t*)NULL; _fwParams.forceLock = fwParams.forceLock; _fwParams.ignoreCacheRep = fwParams.ignoreCacheRep; _fwParams.mstHndl = (fwParams.hndlType == FHT_MST_DEV && fwParams.mstHndl) ? strncpy((char*)(new char[(strlen(fwParams.mstHndl) + 1)]), fwParams.mstHndl, strlen(fwParams.mstHndl) + 1) : (char*)NULL; _fwParams.noFlashVerify = fwParams.noFlashVerify; _fwParams.numOfBanks = fwParams.numOfBanks; _fwParams.psid = fwParams.psid ? strncpy((char*)(new char[(strlen(fwParams.psid) + 1)]), fwParams.psid, strlen(fwParams.psid) + 1) : (char*)NULL; _fwParams.readOnly = fwParams.readOnly; _fwParams.shortErrors = fwParams.shortErrors; _fwParams.uefiExtra = fwParams.uefiExtra; _fwParams.uefiHndl = fwParams.uefiHndl; _fwParams.isCableFw = fwParams.isCableFw; _fwParams.ignoreCrcCheck = fwParams.ignoreCrcCheck; } const char* file_handle_type_to_str(fw_hndl_type_t type) { switch (type) { case FHT_MST_DEV: return "MST_DEVICE"; case FHT_FW_FILE: return "FW_FILE"; case FHT_UEFI_DEV: return "UEFI_DEVICE"; case FHT_FW_BUFF: return "FW_BUFFER"; case FHT_CABLE_DEV: return "CABLE_DEVICE"; default: return "UNKNOWN"; } } FwOperations* FwOperations::FwOperationsCreate(fw_ops_params_t& fwParams) { DPRINTF(("FwOperations::FwOperationsCreate\n")); FwOperations* fwops; u_int8_t fwFormat; FBase* ioAccess = (FBase*)NULL; FwCompsMgr* fwCompsAccess = (FwCompsMgr*)NULL; bool getFwFormatFromImg = false; #ifdef CABLES_SUPP if (fwParams.hndlType == FHT_CABLE_DEV) { fwops = new CableFwOperations(fwParams.mstHndl); if (!fwops->FwInit()) { WriteToErrBuff(fwParams.errBuff, (char*)fwops->err(), fwParams.errBuffSize); delete fwops; return (FwOperations*)NULL; } fwops->_devName = strcpy(new char[strlen(fwParams.mstHndl) + 1], fwParams.mstHndl); } else #endif { if ((!fwParams.ignoreCacheRep && !fwParams.noFwCtrl && fwParams.hndlType == FHT_MST_DEV) || (fwParams.hndlType == FHT_UEFI_DEV && !fwParams.uefiExtra.dev_info.no_fw_ctrl)) { fw_comps_error_t fwCompsErr = FWCOMPS_SUCCESS; if (!fwParams.canSkipFwCtrl) { // CX3/PRO are unsupported fwCompsAccess = new FwCompsMgr(fwParams.mstHndl, FwCompsMgr::DEVICE_HCA_SWITCH, fwParams.deviceIndex); } else if (fwParams.hndlType == FHT_UEFI_DEV) { fwCompsAccess = new FwCompsMgr(fwParams.uefiHndl, &fwParams.uefiExtra); } else { fwCompsErr = FWCOMPS_UNSUPPORTED_DEVICE; } // In case MCDA capability isn't supported according to MCAM, we'll have // fwCompsAccess object created, but with an internal error in fwCompsErr if (fwCompsAccess != NULL) { fwCompsErr = fwCompsAccess->getLastError(); } if (fwCompsErr != FWCOMPS_SUCCESS) { bool exitOnError = false; if (fwCompsErr == FWCOMPS_MTCR_OPEN_DEVICE_ERROR) { // mtcr lib failed to open the provided device. WriteToErrBuff(fwParams.errBuff, (char*)"Failed to open device", fwParams.errBuffSize); exitOnError = true; } else if (fwCompsErr == FWCOMPS_REG_ACCESS_RES_NOT_AVLBL) { WriteToErrBuff(fwParams.errBuff, (char*)fwCompsAccess->getLastErrMsg(), fwParams.errBuffSize); exitOnError = true; } if (fwCompsAccess != NULL) { delete fwCompsAccess; } fwCompsAccess = (FwCompsMgr*)NULL; if (exitOnError) { return (FwOperations*)NULL; } } else { fwInfoT fwInfo; if (fwParams.forceLock) { fwCompsAccess->forceRelease(); } // In case MCC is not preferable (e.g verify command) but the device is secured or GB via switch // We'll stay with MCC flow because we can't use MFBA/Direct-Access if (fwParams.mccUnsupported && !fwCompsAccess->getMfileObj()->gb_info.is_gearbox && fwCompsAccess->queryFwInfo(&fwInfo) == true && fwInfo.security_type.secure_fw == 0) { delete fwCompsAccess; fwCompsAccess = (FwCompsMgr*)NULL; } else { //* WA for non secured BB to work in no_fw_ctrl mode (instead of MCC) by setting fwParams.noFwCtrl=1 dm_dev_id_t deviceId = DeviceUnknown; u_int32_t hwDevId = 0x0; u_int32_t hwRevId = 0x0; if ((fwCompsAccess->getMfileObj()->flags & MDEVS_MLNX_OS) != 0) { FLASH_ACCESS_DPRINTF(("MLNXOS device interface\n")); if (dm_get_device_id(fwCompsAccess->getMfileObj(), &deviceId, &hwDevId, &hwRevId) == MFE_OK) { FLASH_ACCESS_DPRINTF(("deviceId = %s\n", dm_dev_type2str(deviceId))); if (deviceId == DeviceQuantum2) { FLASH_ACCESS_DPRINTF(("BB device identified\n")); if (fwCompsAccess->queryFwInfo(&fwInfo)) { if (fwInfo.security_type.secure_fw == 0) { FLASH_ACCESS_DPRINTF(("Non secured BB device, deleting fw comps mgr object and " "setting no_fw_ctrl mode\n")); delete fwCompsAccess; fwCompsAccess = (FwCompsMgr*)NULL; fwParams.noFwCtrl = 1; } else { FLASH_ACCESS_DPRINTF(("Secured BB device, using MCC flow\n")); } } else { FLASH_ACCESS_DPRINTF(("Failed to query fw comps mgr object\n")); } } } } //* MCC flow if (fwParams.noFwCtrl == 0) { FLASH_ACCESS_DPRINTF(("Flash init to use MCC flow\n")); fwFormat = FS_FSCTRL_GEN; goto init_fwops; } } } } if (!FwAccessCreate(fwParams, &ioAccess)) { return (FwOperations*)NULL; } if (fwParams.hndlType == FHT_UEFI_DEV) { // IN UEFI we don't have an access to read devID from cr-space so we are reading it from FW image signature getFwFormatFromImg = true; } fwFormat = CheckFwFormat(*ioAccess, getFwFormatFromImg); init_fwops: switch (fwFormat) { #if !defined(UEFI_BUILD) case FS_FS2_GEN: { DPRINTF(("FS2 ops created for %s\n", file_handle_type_to_str(fwParams.hndlType))); fwops = new Fs2Operations(ioAccess); break; } #endif case FS_FS3_GEN: { DPRINTF(("FS3 ops created for %s\n", file_handle_type_to_str(fwParams.hndlType))); fwops = new Fs3Operations(ioAccess); break; } case FS_FS4_GEN: { DPRINTF(("FS4 ops created for %s\n", file_handle_type_to_str(fwParams.hndlType))); fwops = new Fs4Operations(ioAccess); break; } case FS_FS5_GEN: { DPRINTF(("FS5 ops created for %s\n", file_handle_type_to_str(fwParams.hndlType))); fwops = new Fs5Operations(ioAccess); break; } case FS_COMPS_GEN: { DPRINTF(("FS COMPS ops created for %s\n", file_handle_type_to_str(fwParams.hndlType))); fwops = FsCompsFactory::Create(ioAccess); break; } case FS_FSCTRL_GEN: { if (!fwCompsAccess) { delete ioAccess; return (FwOperations*)NULL; } DPRINTF(("FSCTRL ops created for %s\n", file_handle_type_to_str(fwParams.hndlType))); fwops = new FsCtrlOperations(fwCompsAccess); break; } #ifdef CABLES_SUPP case FS_FC1_GEN: { fwops = new CableFwOperations(ioAccess); break; } #endif default: delete ioAccess; WriteToErrBuff(fwParams.errBuff, (char*)"Invalid Firmware Format (found FS Gen 1)", fwParams.errBuffSize); return (FwOperations*)NULL; } // save initialization parameters fwops->BackUpFwParams(fwParams); fwops->_advErrors = !fwParams.shortErrors; if (!fwops->FwInit()) { WriteToErrBuff(fwParams.errBuff, (char*)"FwInit has failed!", fwParams.errBuffSize); delete fwops; // will also delete the fwCompsAccess! no memory leak here return NULL; } if (!fwops->CreateSignatureManager()) { WriteToErrBuff(fwParams.errBuff, (char*)"Cannot create signature manager!", fwParams.errBuffSize); fwops->err_clear(); delete fwops; // will also delete the fwCompsAccess! no memory leak here return NULL; } if (fwParams.hndlType == FHT_FW_FILE) { fwops->_fname = strcpy(new char[strlen(fwParams.fileHndl) + 1], fwParams.fileHndl); } if (fwParams.hndlType == FHT_MST_DEV) { fwops->_devName = strcpy(new char[strlen(fwParams.mstHndl) + 1], fwParams.mstHndl); } } return fwops; } u_int32_t FwOperations::CalcImageCRC(u_int32_t* buff, u_int32_t size) { Crc16 crc; TOCPUn(buff, size); CRCn(crc, buff, size); CPUTOn(buff, size); crc.finish(); u_int32_t new_crc = crc.get(); return new_crc; } bool FwOperations::writeImageEx(ProgressCallBackEx progressFuncEx, void* progressUserData, ProgressCallBack progressFunc, u_int32_t addr, void* data, int cnt, bool isPhysAddr, bool readModifyWrite, int totalSz, int alreadyWrittenSz, bool cpuUtilization, int cpuPercent) { #ifndef __WIN__ (void)cpuUtilization; (void)cpuPercent; #endif u_int8_t* p = (u_int8_t*)data; u_int32_t curr_addr = addr; u_int32_t towrite = cnt; u_int32_t last_percent = 0xff; totalSz = totalSz == -1 ? cnt : totalSz; int origFlashWorkingMode = Flash::Fwm_Default; u_int32_t CurrentIteration = 0; bool rc; while (towrite) { // Write int trans; if (_ioAccess->is_flash()) { if (readModifyWrite) { // perform write with the smallest supported sector size origFlashWorkingMode = _ioAccess->get_flash_working_mode(); _ioAccess->set_flash_working_mode(Flash::Fwm_Default); } if (cpuUtilization) { _ioAccess->set_flash_utilization(cpuUtilization, cpuPercent); } trans = (towrite > (int)Flash::TRANS) ? (int)Flash::TRANS : towrite; if (isPhysAddr) { if (readModifyWrite) { rc = _ioAccess->read_modify_write_phy(curr_addr, p, trans); } else { rc = _ioAccess->write_phy(curr_addr, p, trans); } } else { if (readModifyWrite) { rc = _ioAccess->read_modify_write(curr_addr, p, trans); } else { rc = _ioAccess->write(curr_addr, p, trans); } } if (readModifyWrite) { // restore erase sector size _ioAccess->set_flash_working_mode(origFlashWorkingMode); } if (!rc) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Flash write failed: %s", _ioAccess->err()); } } else { trans = towrite; if (!((FImage*)_ioAccess)->write(curr_addr, p, trans)) { return errmsg("%s", _ioAccess->err()); } } p += trans; curr_addr += trans; towrite -= trans; CurrentIteration++; #ifdef __WIN__ if (cpuUtilization) { if ((CurrentIteration % cpuPercent) == 0) { msleep(500); } } #endif // Report if (progressFunc != NULL || progressFuncEx != NULL) { u_int32_t curr_percent = ((cnt - towrite + alreadyWrittenSz) * 100) / totalSz; if (last_percent != curr_percent) { last_percent = curr_percent; if (progressFunc != NULL && progressFunc((int)curr_percent)) { return errmsg("Aborting... received interrupt signal"); } if (progressFuncEx != NULL && progressFuncEx((int)curr_percent, progressUserData)) { return errmsg("Aborting... received interrupt signal"); } } } } return true; } // Flash::WriteImage bool FwOperations::writeImage(ProgressCallBack progressFunc, u_int32_t addr, void* data, int cnt, bool isPhysAddr, bool readModifyWrite, int totalSz, int alreadyWrittenSz) { return writeImageEx((ProgressCallBackEx)NULL, NULL, progressFunc, addr, data, cnt, isPhysAddr, readModifyWrite, totalSz, alreadyWrittenSz); } bool FwOperations::CheckMac(u_int64_t mac) { if ((mac >> 40) & 0x1) { return errmsg("Multicast bit (bit 40) is set"); } if (mac >> 48) { return errmsg("More than 48 bits are used"); } return true; } bool FwOperations::CheckMac(guid_t mac) { u_int64_t bigMac = ((u_int64_t)mac.h << 32 & 0xffffffff00000000ULL) | ((u_int64_t)mac.l & 0x00000000ffffffffULL); return CheckMac(bigMac); } void FwOperations::recalcSectionCrc(u_int8_t* buf, u_int32_t data_size) { Crc16 crc; u_int32_t crcRes; for (u_int32_t i = 0; i < data_size; i += 4) { crc << __be32_to_cpu(*(u_int32_t*)(buf + i)); } crc.finish(); crcRes = crc.get(); *((u_int32_t*)(buf + data_size)) = __cpu_to_be32(crcRes); } chip_type_t FwOperations::getChipType() { int i = 0; while (hwDevData[i].name != NULL) { int j = 0; while (hwDevData[i].swDevIds[j] != 0) { if (hwDevData[i].swDevIds[j] == _fwImgInfo.ext_info.dev_type) { return hwDevData[i].chipType; } j++; } i++; } return CT_UNKNOWN; } chip_type_t FwOperations::getChipType(u_int32_t devid) { int i = 0; while (hwDevData[i].name != NULL) { if (hwDevData[i].hwDevId == devid) { return hwDevData[i].chipType; } i++; } return CT_UNKNOWN; } bool FwOperations::getInfoFromHwDevid(u_int32_t hwDevId, chip_type_t& chipT, const u_int32_t** swIds) { int i = 0; u_int32_t localDevId = hwDevId & 0xffff; // remove revison ID, it's not relevant here while (hwDevData[i].name != NULL) { if (hwDevData[i].hwDevId == localDevId) { chipT = hwDevData[i].chipType; *swIds = hwDevData[i].swDevIds; return true; } i++; } return errmsg(MLXFW_DEV_ID_ERR, "Failed to identify device ID(MT%d).", hwDevId); } FwOperations::HwDevData FwOperations::getInfoFromChipType(chip_type_t chipT) const { int i = 0; while (hwDevData[i].name != NULL) { if (hwDevData[i].chipType == chipT) { return hwDevData[i]; } i++; } return hwDevData[i]; } // TODO:combine both databases(hwDevData and hwDev2Str) and remove old unsupporded devices i.e infinihost // infinihost_iii_ex infinihost_iii_lx const FwOperations::HwDevData FwOperations::hwDevData[] = { {"ConnectX-3", CX3_HW_ID, CT_CONNECTX, CFT_HCA, 2, {4099, 4100, 4101, 4102, 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-3Pro", CX3_PRO_HW_ID, CT_CONNECTX, CFT_HCA, 2, {4103, 0}, {{UNKNOWN_BIN, {0}}}}, {"Connect_IB", CONNECT_IB_HW_ID, CT_CONNECT_IB, CFT_HCA, 2, {CONNECT_IB_SW_ID, 4114, 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, 0}, {{UNKNOWN_BIN, {0}}}}, {"Switch_IB", SWITCH_IB_HW_ID, CT_SWITCH_IB, CFT_SWITCH, 0, {52000, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-4", CX4_HW_ID, CT_CONNECTX4, CFT_HCA, 0, {4115, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-4LX", CX4LX_HW_ID, CT_CONNECTX4_LX, CFT_HCA, 0, {4117, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-5", CX5_HW_ID, CT_CONNECTX5, CFT_HCA, 0, {4119, 4121, 0}, {{CX5_LOW_BIN, {4119, 0}}, {CX5_HIGH_BIN, {4119, 4121, 0}}, {UNKNOWN_BIN, {0}}}}, {"ConnectX-6", CX6_HW_ID, CT_CONNECTX6, CFT_HCA, 0, {4123, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-6DX", CX6DX_HW_ID, CT_CONNECTX6DX, CFT_HCA, 0, {4125, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-6LX", CX6LX_HW_ID, CT_CONNECTX6LX, CFT_HCA, 0, {4127, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-7", CX7_HW_ID, CT_CONNECTX7, CFT_HCA, 0, {4129, 0}, {{UNKNOWN_BIN, {0}}}}, {"ConnectX-8", CX8_HW_ID, CT_CONNECTX8, CFT_HCA, 0, {4131, 0}, {{UNKNOWN_BIN, {0}}}}, {"BlueField", BF_HW_ID, CT_BLUEFIELD, CFT_HCA, 0, {41680, 41681, 41682, 0}, {{UNKNOWN_BIN, {0}}}}, {"BlueField2", BF2_HW_ID, CT_BLUEFIELD2, CFT_HCA, 0, {41684, 41685, 41686, 0}, {{UNKNOWN_BIN, {0}}}}, {"BlueField3", BF3_HW_ID, CT_BLUEFIELD3, CFT_HCA, 0, {41690, 41691, 41692, 0}, {{UNKNOWN_BIN, {0}}}}, {"BlueField4", BF4_HW_ID, CT_BLUEFIELD4, CFT_HCA, 0, {41694, 0}, {{UNKNOWN_BIN, {0}}}}, {"Spectrum", SPECTRUM_HW_ID, CT_SPECTRUM, CFT_SWITCH, 0, {52100, 0}, {{UNKNOWN_BIN, {0}}}}, {"Switch_IB2", SWITCH_IB2_HW_ID, CT_SWITCH_IB2, CFT_SWITCH, 0, {53000, 0}, {{UNKNOWN_BIN, {0}}}}, {"Quantum", QUANTUM_HW_ID, CT_QUANTUM, CFT_SWITCH, 0, {54000, 0}, {{UNKNOWN_BIN, {0}}}}, {"Spectrum2", SPECTRUM2_HW_ID, CT_SPECTRUM2, CFT_SWITCH, 0, {53100, 0}, {{UNKNOWN_BIN, {0}}}}, {"Spectrum3", SPECTRUM3_HW_ID, CT_SPECTRUM3, CFT_SWITCH, 0, {53104, 0}, {{UNKNOWN_BIN, {0}}}}, {"Quantum2", QUANTUM2_HW_ID, CT_QUANTUM2, CFT_SWITCH, 0, {54002, 0}, {{UNKNOWN_BIN, {0}}}}, {"Quantum3", QUANTUM3_HW_ID, CT_QUANTUM3, CFT_SWITCH, 0, {54004, 0}, {{UNKNOWN_BIN, {0}}}}, {"Spectrum4", SPECTRUM4_HW_ID, CT_SPECTRUM4, CFT_SWITCH, 0, {53120, 0}, {{UNKNOWN_BIN, {0}}}}, {"Gearbox", GEARBOX_HW_ID, CT_GEARBOX, CFT_GEARBOX, 0, {0, 0}, {{UNKNOWN_BIN, {0}}}}, {"GearboxManager", GB_MANAGER_HW_ID, CT_GEARBOX_MGR, CFT_GEARBOX, 0, {0, 0}, {{UNKNOWN_BIN, {0}}}}, {"AbirGearbox", ABIR_GB_HW_ID, CT_ABIR_GEARBOX, CFT_GEARBOX, 0, {0, 0}, {{UNKNOWN_BIN, {0}}}}, {"ArcusE", ARCUSE_HW_ID, CT_ARCUSE, CFT_SWITCH, 0, {45568, 0}, {{UNKNOWN_BIN, {0}}}}, {(char*)NULL, 0, CT_UNKNOWN, CFT_UNKNOWN, 0, {0}, {{UNKNOWN_BIN, {0}}}}, // zero devid terminator }; const FwOperations::HwDev2Str FwOperations::hwDev2Str[] = { {"ConnectIB", CONNECT_IB_HW_ID, 0x00}, {"ConnectX-3 A0", CX3_HW_ID, 0x00}, {"ConnectX-3 A1", CX3_HW_ID, 0x01}, {"ConnectX-3Pro", CX3_PRO_HW_ID, 0x00}, {"ConnectX-4", CX4_HW_ID, 0x00}, {"ConnectX-4LX", CX4LX_HW_ID, 0x00}, {"ConnectX-5", CX5_HW_ID, 0x00}, {"ConnectX-6", CX6_HW_ID, 0x00}, {"ConnectX-6DX", CX6DX_HW_ID, 0x00}, {"ConnectX-6LX", CX6LX_HW_ID, 0x00}, {"ConnectX-7", CX7_HW_ID, 0x00}, {"ConnectX-8", CX8_HW_ID, 0x00}, {"BlueField", BF_HW_ID, 0x00}, {"BlueField2", BF2_HW_ID, 0x00}, {"BlueField3", BF3_HW_ID, 0x00}, {"BlueField4", BF4_HW_ID, 0x00}, {"SwitchIB A0", SWITCH_IB_HW_ID, 0x00}, {"Spectrum A0", SPECTRUM_HW_ID, 0x00}, {"SwitchIB2 A0", SWITCH_IB2_HW_ID, 0x00}, {"Quantum A0", QUANTUM_HW_ID, 0x00}, {"Spectrum A1", SPECTRUM_HW_ID, 0x01}, {"Spectrum2 A0", SPECTRUM2_HW_ID, 0x00}, {"Spectrum3 A0", SPECTRUM3_HW_ID, 0x00}, {"Quantum2 A0", QUANTUM2_HW_ID, 0x00}, {"Quantum3 A0", QUANTUM3_HW_ID, 0x00}, {"Spectrum4 A0", SPECTRUM4_HW_ID, 0x00}, {(char*)NULL, (u_int32_t)0, (u_int8_t)0x00}, // zero device ID terminator }; #define ARR_SIZE(arr) sizeof(arr) / sizeof(arr[0]) #define MAX_HW_NAME_LEN 100 bool FwOperations::HWIdRevToName(u_int32_t hw_id, u_int8_t rev_id, char* hw_name) { for (int i = 0; hwDev2Str[i].hwDevId != 0; i++) { const HwDev2Str* hwDev2StrMem = &(hwDev2Str[i]); if (hwDev2StrMem->hwDevId == hw_id && hwDev2StrMem->revId == rev_id) { int len = strlen(hwDev2StrMem->name); if (len >= MAX_HW_NAME_LEN) { return errmsg("Internal error: Length of device name: %d exceeds the maximum allowed size: %d", len, MAX_HW_NAME_LEN - 1); } strcpy(hw_name, hwDev2StrMem->name); return true; } } // When the device or rev is unknown we use the hw ID and rev to display it. sprintf(hw_name, "MT%d-%02X", hw_id, rev_id); return true; } // This function gets the HW ID of the target device and the dev ID from // the image. It then matches the 2 IDs and returns an error in case of // mismatch. The match is not 1:1 , since the FW image contains the SW // dev id, and a single hw dev id may match multiple SW dev IDs. // bool FwOperations::CheckMatchingHwDevId(u_int32_t hwDevId, u_int32_t rev_id, u_int32_t* supportedHwId, u_int32_t supportedHwIdNum) { char supp_hw_id_list[MAX_NUM_SUPP_HW_LIST_STR] = {'\0'}; char curr_hw_id_name[MAX_HW_NAME_LEN]; for (u_int32_t i = 0; i < supportedHwIdNum; i++) { u_int32_t currSupportedHwId = supportedHwId[i]; u_int32_t supp_hw_id = currSupportedHwId & 0xffff; u_int32_t supp_rev_id = (currSupportedHwId >> 16) & 0xff; u_int32_t tmp_size_of_list; char hw_name[MAX_HW_NAME_LEN]; if (currSupportedHwId == 0) { break; } // Check if device is supported! if (supp_hw_id == hwDevId && supp_rev_id == rev_id) { return true; } // Append checked to list of supported device in order to print it in the error if we this device is not // supported // Get the HW name of current supported HW ID if (!HWIdRevToName(supp_hw_id, supp_rev_id, hw_name)) { return false; } // Check if we don't exceed the array size we have tmp_size_of_list = strlen(supp_hw_id_list) + strlen(hw_name) + 2; if (tmp_size_of_list >= MAX_NUM_SUPP_HW_LIST_STR) { return errmsg("Internal error: Size of supported devs list: %d exceeds the maximum allowed size: %d", tmp_size_of_list, MAX_NUM_SUPP_HW_LIST_STR - 1); } if (supp_hw_id_list[0] == '\0') { sprintf(supp_hw_id_list, "%s", hw_name); } else { strcat(supp_hw_id_list, ", "); strcat(supp_hw_id_list, hw_name); } } // If we get here, this FW cannot be burnt in the current device. // Get the Device name if (!HWIdRevToName(hwDevId, rev_id, curr_hw_id_name)) { return false; } return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "FW image file cannot be programmed to device %s, it is intended for: %s only", curr_hw_id_name, supp_hw_id_list); } bool FwOperations::CheckMatchingDevId(u_int32_t hwDevId, u_int32_t imageDevId) { const HwDevData* devData = (const HwDevData*)NULL; const char* hwDevName = (const char*)NULL; // First, find the HW device that the SW id matches for (int i = 0; hwDevData[i].hwDevId != 0; i++) { if (hwDevData[i].hwDevId == hwDevId) { hwDevName = hwDevData[i].name; // TODO: Check bug if device not found } if (devData == NULL) { for (int j = 0; hwDevData[i].swDevIds[j]; j++) { if (hwDevData[i].swDevIds[j] == imageDevId) { devData = &hwDevData[i]; break; } } } } if (devData == NULL) { report_warn("Unknown device id (%d) in the given FW image. Skipping HW match check.\n", imageDevId); return true; } else if (devData->hwDevId != hwDevId) { return errmsg("Trying to burn a \"%s\" image on a \"%s\" device.", devData->name, hwDevName); } return true; } bool FwOperations::CheckMatchingBinning(u_int32_t hwDevId, BinIdT binningVal, u_int32_t imageDevId) { const HwDevData* devData = (const HwDevData*)NULL; // First, find the HW device that the Hw id matches for (int i = 0; hwDevData[i].hwDevId != 0; i++) { if (hwDevData[i].hwDevId == hwDevId) { devData = &hwDevData[i]; } } if (devData != NULL) { // Find the bin speed and match its SW ID to the ImageDevID for (int j = 0; devData->binningId[j].binId != UNKNOWN_BIN; j++) { if (devData->binningId[j].binId == binningVal) { int k = 0; while (devData->binningId[j].swId[k] != 0) { if (imageDevId == devData->binningId[j].swId[k]) { return true; } k++; } return errmsg("FW image does not match the device bin info.\n"); } } } return true; } void FwOperations::FwDebugPrint(char* str) { if (_printFunc != NULL) { _printFunc(str); } } bool FwOperations::FwSetPrint(PrintCallBack PrintFunc) { _printFunc = PrintFunc; return true; } bool FwOperations::CheckPSID(FwOperations& imageOps, u_int8_t allow_psid_change) { if (!allow_psid_change) { if (strncmp(_fwImgInfo.ext_info.psid, imageOps._fwImgInfo.ext_info.psid, PSID_LEN)) { return errmsg(MLXFW_PSID_MISMATCH_ERR, "Image PSID is %s, it cannot be burnt into current device (PSID: %s)", imageOps._fwImgInfo.ext_info.psid, _fwImgInfo.ext_info.psid); } } return true; } bool FwOperations::CheckFwVersion(FwOperations& imageOps, u_int8_t forceVersion) { if (!forceVersion) { FwVersion current(createFwVersion(&_fwImgInfo.ext_info)), image(createFwVersion(&imageOps._fwImgInfo.ext_info)); if (current.are_same_branch(image)) { if (current >= image) { return errmsg(MLXFW_FW_ALREADY_UPDATED_ERR, "FW is already updated."); } } } return true; } bool FwOperations::FwSwReset() { if (msw_reset(getMfileObj())) { if (errno == EPERM) { return errmsg("operation supported only for IB switches."); } else if (errno == OP_NOT_SUPPORTED) { return errmsg("operation supported only for un-managed switches."); } else { return errmsg("operation failed, errno - %d.", errno); } } return true; } void FwOperations::WriteToErrBuff(char* errBuff, char* errStr, int bufSize) { if (bufSize > 0) { if (bufSize > (int)strlen(errStr)) { strncpy(errBuff, errStr, bufSize); } else { strncpy(errBuff, errStr, bufSize - 4); strcpy(&errBuff[bufSize - 4], "..."); } } return; } bool FwOperations::UpdateImgCache(u_int8_t* buff, u_int32_t addr, u_int32_t size) { // avoid compiler warrnings (void)buff; (void)addr; (void)size; // in FS2 we dont have ImgCache, just in FS3 so we define a defult behaviour. return true; } bool FwOperations::CntxEthOnly(u_int32_t devid) { return (devid == 25448) || // ETH (devid == 26448) || // ETH (devid == 25458) || // (devid == 26458) || // (devid == 26468) || (devid == 26478); } // RomInfo implementation FwOperations::RomInfo::RomInfo(const std::vector& romSector, bool resEndi) { expRomFound = !romSector.empty(); romSect = romSector; if (resEndi) { TOCPUn(&romSect[0], romSect.size() / 4); } numOfExpRom = 0; expRomComDevid = 0; expRomWarning = false; expRomErrMsgValid = false; noRomChecksum = false; memset(expRomErrMsg, 0, sizeof(expRomErrMsg)); memset(expRomWarningMsg, 0, sizeof(expRomWarningMsg)); memset(&romsInfo, 0, (sizeof(rom_info_t) * MAX_ROMS_NUM)); } bool FwOperations::RomInfo::initRomsInfo(roms_info_t* info) { if (info == NULL) { return errmsg("invalid roms_info_t pointer."); } info->exp_rom_found = expRomFound; info->num_of_exp_rom = numOfExpRom; info->no_rom_checksum = noRomChecksum; info->exp_rom_com_devid = expRomComDevid; info->exp_rom_warning = expRomWarning; info->exp_rom_err_msg_valid = expRomErrMsgValid; // copy strings and rom_info for (int i = 0; i < MAX_ROM_ERR_MSG_LEN; i++) { info->exp_rom_warning_msg[i] = expRomWarningMsg[i]; info->exp_rom_err_msg[i] = expRomErrMsg[i]; } for (int i = 0; i < MAX_ROMS_NUM; i++) { // copy rom_info struct info->rom_info[i].exp_rom_product_id = romsInfo[i].exp_rom_product_id; // 0 - invalid. info->rom_info[i].exp_rom_dev_id = romsInfo[i].exp_rom_dev_id; info->rom_info[i].exp_rom_supp_cpu_arch = romsInfo[i].exp_rom_supp_cpu_arch; info->rom_info[i].exp_rom_port = romsInfo[i].exp_rom_port; info->rom_info[i].exp_rom_proto = romsInfo[i].exp_rom_proto; info->rom_info[i].exp_rom_num_ver_fields = romsInfo[i].exp_rom_num_ver_fields; for (int j = 0; j < 3; j++) { info->rom_info[i].exp_rom_ver[j] = romsInfo[i].exp_rom_ver[j]; } } return true; } bool FwOperations::RomInfo::ParseInfo() { if (!GetExpRomVersion()) { snprintf(expRomErrMsg, MAX_ROM_ERR_MSG_LEN, "%s", err()); expRomErrMsgValid = true; // printf("-D-expRomErrMsg: %s \n", expRomErrMsg); } // printf("-D- expRomFound: %d \n",expRomFound); // printf("-D- numOfExpRom: %d \n",numOfExpRom); // printf("-D- noRomChecksum: %d \n",noRomChecksum); // printf("-D- expRomComDevid: %d \n",expRomComDevid); // printf("-D- expRomWarning: %d \n",expRomWarning); // printf("-D- expRomErrMsgValid: %d \n",expRomErrMsgValid); return true; } #define MAGIC_LEN 32 bool FwOperations::RomInfo::GetExpRomVersion() { char magicString[MAGIC_LEN] = {"mlxsignX"}; u_int32_t magicLen = strlen(magicString); bool magicFound = false; u_int32_t verOffset; u_int32_t romChecksumRange; // We do this HACK in order not to have mlxsign: word in our code so if mlxfwops will be part // of rom, no mlxsign: string will appear magicString[magicLen - 1] = ':'; if (romSect.empty()) { return errmsg("Expansion Rom section not found."); } // When checking the version of the expansion rom, only the first image has // to be checked. This is because the second image the uefi image does not // have to comply with checksumming to 0. To do this you have to read byte // 2 (third) of the image and multiply by 512 to get the size of the x86 // image. // Checksum: if (romSect.size() < 4) { return errmsg("ROM size (0x%x) is too small", (u_int32_t)romSect.size()); } // restore endianess is done in the constructor if needed. /* // FOR WE DON'T CHECKSUM UNTIL WE DECIDED REGARDING THE NEW FORMAT. */ // We will look for the magic string in whole ROM instead of the first part of it. romChecksumRange = romSect.size(); for (u_int32_t i = 0; i < romChecksumRange; i++) { for (u_int32_t j = 0; j < magicLen; j++) { if (romSect[i + j] != magicString[j]) { break; } else if (j == magicLen - 1) { magicFound = true; } } if (magicFound) { // Get the ROM info after the mlxsign bool rc; rom_info_t* currRom; if (numOfExpRom == MAX_ROMS_NUM) { expRomWarning = true; snprintf(expRomWarningMsg, MAX_ROM_ERR_MSG_LEN, "Number of exp ROMs exceeds the maximum allowed number (%d)", MAX_ROMS_NUM); // Here we want to warn regarding this issue without checksum. return true; } currRom = &(romsInfo[numOfExpRom]); verOffset = i + magicLen; rc = GetExpRomVerForOneRom(verOffset); if (rc != true) { return rc; } // Get the device ID and check if it mismatches with other ROMs if (expRomComDevid != MISS_MATCH_DEV_ID) { // When the DevId is already mismatched, no end to any check if (currRom->exp_rom_dev_id != EXP_ROM_GEN_DEVID) { // When we have a device ID on the ROM if (expRomComDevid == EXP_ROM_GEN_DEVID) { // Update the common DevId at the first time we find ID expRomComDevid = currRom->exp_rom_dev_id; } else { // Check if we have the same IDs, if yes, continue if (currRom->exp_rom_dev_id != expRomComDevid) { // There is a mismatch between ROMs expRomComDevid = MISS_MATCH_DEV_ID; expRomWarning = true; snprintf(expRomWarningMsg, MAX_ROM_ERR_MSG_LEN, "The device IDs of the ROMs mismatched."); } } } } magicFound = false; // Clean the magic_found to start search for another magic string i += (ROM_INFO_SIZE - 1); // Increase the index to point to the end of the ROM info. numOfExpRom++; } } // TODO: ADD CHECKSUM CHECK if (!numOfExpRom) { return errmsg("Cannot get ROM version. Signature not found."); } if (!noRomChecksum) { // No need for checksum on some ROMs like uEFI u_int8_t romChecksum = 0; romChecksumRange = romSect[2] * 512; if (romChecksumRange > romSect.size()) { return errmsg("ROM size field (0x%2x) is larger than actual ROM size (0x%x)", romChecksumRange, (u_int32_t)romSect.size()); } else if (romChecksumRange == 0) { return errmsg("ROM size field is 0. Unknown ROM format or corrupted ROM."); } for (u_int32_t i = 0; i < romChecksumRange; i++) { romChecksum += romSect[i]; } if (romChecksum != 0) { expRomWarning = true; snprintf(expRomWarningMsg, MAX_ROM_ERR_MSG_LEN, "Bad ROM Checksum (0x%02x), ROM info may not be displayed correctly.", romChecksum); } } return true; } u_int8_t FwOperations::RomInfo::getNumVerFromProdId(u_int16_t prodId) { if (prodId == 0xF) { return 1; } else { return 3; } } bool FwOperations::RomInfo::GetExpRomVerForOneRom(u_int32_t verOffset) { u_int32_t tmp; u_int32_t offs4; u_int32_t offs8; rom_info_t* romInfo; if (numOfExpRom == MAX_ROMS_NUM) { expRomWarning = true; snprintf(expRomWarningMsg, MAX_ROM_ERR_MSG_LEN, "Number of exp ROMs exceeds the maximum allowed number: %d", MAX_ROMS_NUM); return true; } romInfo = &(romsInfo[numOfExpRom]); // Following mlxsign: refer to layout in Flash Programminng application note. // Get expansion rom product ID tmp = __le32_to_cpu(*((u_int32_t*)&romSect[verOffset])); offs4 = __le32_to_cpu(*((u_int32_t*)&romSect[verOffset + 4])); romInfo->exp_rom_product_id = tmp >> 16; romInfo->exp_rom_num_ver_fields = FwOperations::RomInfo::getNumVerFromProdId(romInfo->exp_rom_product_id); // Get ROM version romInfo->exp_rom_ver[0] = tmp & 0xff; // always valid if (romInfo->exp_rom_product_id != 0xf) { romInfo->exp_rom_ver[1] = offs4 >> 16 & 0xff; romInfo->exp_rom_ver[2] = offs4 & 0xffff; } if (romInfo->exp_rom_product_id == 0x11 || romInfo->exp_rom_product_id == 0x21) { noRomChecksum = true; } if (romInfo->exp_rom_product_id >= 0x10) { offs8 = __le32_to_cpu(*((u_int32_t*)&romSect[verOffset + 8])); romInfo->exp_rom_supp_cpu_arch = (offs8 >> 8) & 0xf; romInfo->exp_rom_dev_id = offs8 >> 16; // 0x12 is CLP we have only 1 version field and no port if (romInfo->exp_rom_product_id != 0x12) { romInfo->exp_rom_port = (offs8 >> 12) & 0xf; romInfo->exp_rom_proto = offs8 & 0xff; } } else if (romInfo->exp_rom_product_id == 0xf) { // get string length u_int32_ba tmp_ba = __le32_to_cpu(*((u_int32_t*)&romSect[verOffset + 0xc])); u_int32_t str_len = u_int32_t(tmp_ba.range(15, 8)); u_int32_t sign_length = u_int32_t(tmp_ba.range(7, 0)); u_int32_t dws_num = ((str_len + 3) / 4) + 4; if (sign_length < dws_num) { return errmsg("The Signature length (%d) and the ROM version string length (%d) are not coordinated", sign_length, str_len); } int svnv; char free_str[FREE_STR_MAX_LEN]; strncpy(free_str, (char*)&romSect[verOffset + 0x10], str_len); free_str[str_len] = '\0'; if (sscanf((char*)free_str, "%d", &svnv) == 1) { romInfo->exp_rom_ver[0] = svnv; } tmp_ba = __le32_to_cpu(*((u_int32_t*)&romSect[0x18])); u_int32_t dev_id_off = u_int32_t(tmp_ba.range(15, 0)) + 4; if (dev_id_off >= romSect.size()) { return errmsg("The device ID offset %#x is out of range. ROM size: %#x", dev_id_off, (u_int32_t)romSect.size()); } // get devid tmp_ba = __le32_to_cpu(*((u_int32_t*)&romSect[dev_id_off])); romInfo->exp_rom_dev_id = u_int32_t(tmp_ba.range(31, 16)); u_int32_t vendor_id = u_int32_t(tmp_ba.range(15, 0)); if (vendor_id != MELLANOX_VENDOR_ID) { expRomWarning = true; snprintf(expRomWarningMsg, MAX_ROM_ERR_MSG_LEN, "The Exp-ROM PCI vendor ID: %#x does not match the expected value: %#x.", vendor_id, MELLANOX_VENDOR_ID); } } return true; } bool FwOperations::ReadBinFile(const char* fimage, u_int8_t*& file_data, int& file_size) { #ifndef UEFI_BUILD FILE* fh; if ((fh = fopen(fimage, "rb")) == NULL) { return errmsg("Can not open %s: %s\n", fimage, strerror(errno)); } if (fseek(fh, 0, SEEK_END) < 0) { fclose(fh); return errmsg("Failed to get size of the file \"%s\": %s\n", fimage, strerror(errno)); } int read_file_size = ftell(fh); if (read_file_size < 0) { fclose(fh); return errmsg("Failed to get size of the file \"%s\": %s\n", fimage, strerror(errno)); } rewind(fh); file_size = read_file_size; file_data = new u_int8_t[file_size]; if (fread(file_data, 1, read_file_size, fh) != (size_t)read_file_size) { delete[] file_data; fclose(fh); return errmsg("Failed to read from %s: %s\n", fimage, strerror(errno)); } fclose(fh); return true; #else return errmsg("Not implemented.\n"); #endif } void FwOperations::SetDevFlags(chip_type_t chipType, u_int32_t devType, fw_img_type_t fwType, bool& ibDev, bool& ethDev) { (void)devType; ibDev = (fwType == FIT_FS3 && chipType != CT_SPECTRUM) || (chipType == CT_CONNECTX && !CntxEthOnly(devType)); ethDev = (chipType == CT_CONNECTX) || (chipType == CT_CONNECTX4) || (chipType == CT_CONNECTX4_LX) || (chipType == CT_CONNECTX5) || (chipType == CT_CONNECTX6) || (chipType == CT_CONNECTX6DX) || (chipType == CT_CONNECTX6LX) || (chipType == CT_SPECTRUM) || (chipType == CT_SPECTRUM2) || (chipType == CT_SPECTRUM3) || (chipType == CT_CONNECTX7) || (chipType == CT_QUANTUM2) || (chipType == CT_QUANTUM3) || (chipType == CT_SPECTRUM4) || (chipType == CT_BLUEFIELD) || (chipType == CT_BLUEFIELD2) || (chipType == CT_BLUEFIELD3) || (chipType == CT_CONNECTX8) || (chipType == CT_BLUEFIELD4); if ((!ibDev && !ethDev) || chipType == CT_UNKNOWN) { // Unknown device id - for forward compat - assume that ConnectX is MP and // prev HCAs are IB only (these flags are for printing only - no real harm can be done). // TODO: FS2 does not mean ConnectX now. ibDev = true; if (fwType == FIT_FS2) { ethDev = true; } else { ethDev = false; } } } bool FwOperations::IsFwSupportingRomModify(const FwVersion& fw_ver) { FwVersion mod(MAJOR_MOD_ROM_FW, MINOR_MOD_ROM_FW, SUBMINOR_MOD_ROM_FW); // only used in connectx (FS2) return fw_ver.compare_master_version(mod) >= 0; } bool FwOperations::checkMatchingExpRomDevId(const fw_info_t& info) { /* if ((info.fw_info.roms_info.num_of_exp_rom > 0) && (info.fw_info.dev_type) && (info.fw_info.roms_info.exp_rom_com_devid != EXP_ROM_GEN_DEVID) \ && (info.fw_info.roms_info.exp_rom_com_devid != MISS_MATCH_DEV_ID) && (info.fw_info.dev_type != info.fw_info.roms_info.exp_rom_com_devid)) { return false; } return true; */ return checkMatchingExpRomDevId(info.fw_info.dev_type, info.fw_info.roms_info); } bool FwOperations::checkMatchingExpRomDevId(u_int16_t dev_type, const roms_info_t& roms_info) { if ((roms_info.num_of_exp_rom > 0) && (dev_type) && (roms_info.exp_rom_com_devid != EXP_ROM_GEN_DEVID) && (roms_info.exp_rom_com_devid != MISS_MATCH_DEV_ID) && (dev_type != roms_info.exp_rom_com_devid)) { return false; } return true; } bool FwOperations::FwWriteBlock(u_int32_t addr, std::vector dataVec, ProgressCallBack progressFunc) { if (dataVec.empty()) { return errmsg("no data to write."); } // check if flash is big enough if ((addr + dataVec.size()) > _ioAccess->get_effective_size()) { return errmsg("Writing %#x bytes from address %#x is out of flash limits (%#x bytes)\n", (unsigned int)(dataVec.size()), (unsigned int)addr, (unsigned int)_ioAccess->get_effective_size()); } if (!writeImage(progressFunc, addr, &dataVec[0], (int)dataVec.size())) { return false; } return true; }; bool FwOperations::CreateBasicImageFromData(u_int32_t* data, u_int32_t dataSize, FwOperations** newImgOps) { fwOpsParams imgOpsParams; memset(&imgOpsParams, 0, sizeof(imgOpsParams)); char errBuff[1024] = {0}; imgOpsParams.psid = (char*)NULL; imgOpsParams.buffHndl = data; imgOpsParams.buffSize = dataSize; imgOpsParams.errBuff = errBuff; imgOpsParams.errBuffSize = 1024; imgOpsParams.hndlType = FHT_FW_BUFF; *newImgOps = FwOperationsCreate(imgOpsParams); if (*newImgOps == NULL) { return errmsg("Internal error: Failed to create modified image: %s", errBuff); } if (!(*newImgOps)->FwVerify((VerifyCallBack)NULL)) { errmsg("Internal error: Modified image failed to verify: %s", (*newImgOps)->err()); (*newImgOps)->FwCleanUp(); delete (*newImgOps); return false; } return true; }; bool FwOperations::FwBurnData(u_int32_t* data, u_int32_t dataSize, ProgressCallBack progressFunc) { burnDataParamsT params; params.data = data; params.dataSize = dataSize; params.progressFunc = progressFunc; params.calcSha = false; return FwBurnData(params); } bool FwOperations::FwBurnData(burnDataParamsT& burnDataParams) { u_int32_t* data = burnDataParams.data; u_int32_t dataSize = burnDataParams.dataSize; ProgressCallBack progressFunc = burnDataParams.progressFunc; FwOperations* newImgOps = NULL; ExtBurnParams burnParams = ExtBurnParams(); if (!CreateBasicImageFromData(data, dataSize, &newImgOps)) { return false; } if (burnDataParams.calcSha && !newImgOps->FwInsertSHA256((PrintCallBack)NULL)) { errmsg("Inserting SHA256/SHA512 failed: %s", newImgOps->err()); newImgOps->FwCleanUp(); delete newImgOps; return false; } burnParams.updateParamsForBasicImage(progressFunc); if (!FwBurnAdvanced(newImgOps, burnParams)) { newImgOps->FwCleanUp(); delete newImgOps; return errmsg("Failed to re-burn image after modify: %s", err()); } newImgOps->FwCleanUp(); delete newImgOps; return true; } bool FwOperations::getRomsInfo(FBase* io, roms_info_t& romsInfo) { std::vector romSector; romSector.clear(); romSector.resize(io->get_effective_size()); if (!io->read(0, &romSector[0], io->get_effective_size())) { return false; } RomInfo info(romSector, false); info.ParseInfo(); info.initRomsInfo(&romsInfo); return true; } const char* FwOperations::expRomType2Str(u_int16_t type) { switch (type) { case 0x1: return "CLP1"; case 0x2: return "CLP2"; case 0x3: return "CLP3"; case 0x4: return "CLP4"; case 0xf: return "CLP"; // hack as 0xf isnt always CLP (its type is defined in the free string inside the ROM) case 0x10: return "PXE"; case 0x11: return "UEFI"; case 0x12: return "CLP"; case 0x13: return "NVMe"; case 0x14: return "UEFI Virtio net"; case 0x15: return "UEFI Virtio blk"; case 0x16: return "PXE Virtio net"; case 0x21: return "FCODE"; default: return (const char*)NULL; } return (const char*)NULL; } bool FwOperations::FwSetCertChain(char*, u_int32_t, PrintCallBack) { return errmsg("FwSetCertChain not supported."); } bool FwOperations::FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) { (void)timestamp; (void)fwVer; return errmsg("FwSetTimeStamp not supported."); } bool FwOperations::FwResetTimeStamp() { return errmsg("FwResetTimeStamp not supported."); } bool FwOperations::IsSecureBootSupported() { return errmsg("IsSecureBootSupported not supported."); } bool FwOperations::IsCableQuerySupported() { return errmsg("Linkx Cable Query is not supported."); } bool FwOperations::IsLifeCycleSupported() { return errmsg("IsLifeCycleSupported not supported."); } bool FwOperations::IsEncryptionSupported() { return errmsg("IsEncryptionSupported not supported."); } bool FwOperations::FwBurnAdvanced(std::vector imageOps4MData, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId) { (void)imageOps4MData; (void)burnParams; (void)ComponentId; return errmsg("FwBurnAdvanced not supported."); } bool FwOperations::FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId) { (void)imageOps; (void)burnParams; (void)ComponentId; return errmsg("FwBurnAdvanced not supported."); } bool FwOperations::PrepItocSectionsForCompare(vector& critical, vector& non_critical) { (void)critical; (void)non_critical; return errmsg("PrepItocSectionsForCompare not supported."); } bool FwOperations::UpdateSection(void* new_info, fs3_section_t sect_type, bool is_sect_failsafe, CommandType cmd_type, PrintCallBack callBackFunc) { (void)new_info; (void)sect_type; (void)is_sect_failsafe; (void)cmd_type; (void)callBackFunc; return errmsg("UpdateSection not supported."); } bool FwOperations::FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning) { (void)timestamp; (void)fwVer; (void)queryRunning; return errmsg("FwQueryTimeStamp not supported."); } Tlv_Status_t FwOperations::GetTsObj(TimeStampIFC** tsObj) { (void)tsObj; errmsg("Unsupported FW type."); return TS_TIMESTAMPING_NOT_SUPPORTED; } bool FwOperations::FwInsertSHA256(PrintCallBack) { return errmsg("FwInsertSHA256 not supported"); } bool FwOperations::SignForFwUpdate(const char*, const MlxSign::Signer&, MlxSign::SHAType, PrintCallBack) { return errmsg("SignForFwUpdate not supported"); } bool FwOperations::FwSignWithTwoRSAKeys(const char*, const char*, const char*, const char*, PrintCallBack) { return errmsg("FwSignWithTwoRSAKeys not supported"); } bool FwOperations::FwSignWithHmac(const char*) { return errmsg("FwSignWithHmac not supported"); } bool FwOperations::SignForSecureBoot(const char*, const char*, const MlxSign::Signer&) { return errmsg("SignForSecureBoot not supported"); } bool FwOperations::openEncryptedImageAccess(const char* encrypted_image_path) { (void)encrypted_image_path; return errmsg("openEncryptedImageAccess not supported"); } bool FwOperations::isEncrypted(bool& is_encrypted) { is_encrypted = false; DPRINTF(("FwOperations::isEncrypted res = FALSE\n")); return true; } bool FwOperations::FwExtractEncryptedImage(vector&, bool, bool, bool) { return errmsg("FwExtractEncryptedImage not supported"); } bool FwOperations::burnEncryptedImage(FwOperations*, ExtBurnParams&) { return errmsg("Burning encrypted image not supported"); } bool FwOperations::FwExtract4MBImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose, bool ignoreImageStart) { (void)img; (void)maskMagicPatternAndDevToc; (void)verbose; (void)ignoreImageStart; return errmsg("FwExtract4MBImage not supported"); } bool FwOperations::RestoreDevToc(vector& img, char* psid, dm_dev_id_t devid_t, const image_layout_uid_entry& base_guid, const image_layout_uid_entry& base_mac) { (void)img; (void)psid; (void)devid_t; (void)base_guid; (void)base_mac; return errmsg("RestoreDevToc not supported"); } bool FwOperations::FwSetPublicKeys(char* fname, PrintCallBack callBackFunc) { (void)fname; (void)callBackFunc; return errmsg("FwSetPublicKeys not supported"); } bool FwOperations::FwSetForbiddenVersions(char* fname, PrintCallBack callBackFunc) { (void)fname; (void)callBackFunc; return errmsg("FwSetForbiddenVersions not supported"); } bool FwOperations::GetRSAPublicKey(vector& key) { (void)key; return errmsg("GetRSAPublicKey not supported"); } bool FwOperations::FwReadBlock(u_int32_t addr, u_int32_t size, std::vector& dataVec) { if (addr + size > _ioAccess->get_effective_size()) { return errmsg(MLXFW_BAD_PARAM_ERR, "Reading %#x bytes from address %#x is out of flash limits (%#x bytes)\n", size, (unsigned int)addr, (unsigned int)_ioAccess->get_effective_size()); } // read from flash/image if (!_ioAccess->read(addr, &dataVec[0], size)) { return errmsg(MLXFW_BAD_PARAM_ERR, "%s", _ioAccess->err()); } return true; } // TODO - use dm_dev_is_fs3/4/5 from tools_dev_types.c and remove this function u_int8_t FwOperations::GetFwFormatFromHwDevID(u_int32_t hwDevId) { // TODO - remove QTM3/CX8/BF4/ARCUSE from FS4 if ((hwDevId == CX3_HW_ID) || (hwDevId == CX3_PRO_HW_ID)) { return FS_FS2_GEN; } else if ((hwDevId == CONNECT_IB_HW_ID) || (hwDevId == SWITCH_IB_HW_ID) || (hwDevId == CX4_HW_ID) || (hwDevId == CX4LX_HW_ID) || (hwDevId == SPECTRUM_HW_ID) || (hwDevId == SWITCH_IB2_HW_ID)) { return FS_FS3_GEN; } else if (hwDevId == CX5_HW_ID || hwDevId == CX6_HW_ID || hwDevId == CX6DX_HW_ID || hwDevId == CX6LX_HW_ID || hwDevId == CX7_HW_ID || hwDevId == CX8_HW_ID || hwDevId == BF_HW_ID || hwDevId == BF2_HW_ID || hwDevId == BF3_HW_ID || hwDevId == BF4_HW_ID || hwDevId == QUANTUM_HW_ID || hwDevId == QUANTUM2_HW_ID || hwDevId == QUANTUM3_HW_ID || hwDevId == SPECTRUM4_HW_ID || hwDevId == SPECTRUM2_HW_ID || hwDevId == SPECTRUM3_HW_ID || hwDevId == GEARBOX_HW_ID || hwDevId == GB_MANAGER_HW_ID || hwDevId == ABIR_GB_HW_ID || hwDevId == ARCUSE_HW_ID) { return FS_FS4_GEN; } else if ((hwDevId == QUANTUM3_HW_ID) || (hwDevId == CX8_HW_ID) || (hwDevId == BF4_HW_ID) || (hwDevId == ARCUSE_HW_ID)) { return FS_FS5_GEN; } return FS_UNKNOWN_IMG; } const char* FwOperations::FwGetReSignMsgStr() { return (const char*)NULL; } bool FwOperations::TestAndSetTimeStamp(FwOperations* imageOps) { if (!IS_HCA(imageOps->_fwImgInfo.ext_info.chip_type)) { // switches don't support MVTS register. return true; } Tlv_Status_t rc; Tlv_Status_t devTsQueryRc; bool retRc = true; TimeStampIFC* imgTsObj = NULL; TimeStampIFC* devTsObj = NULL; bool tsFoundOnImage = false; struct tools_open_ts_entry imgTs; struct tools_open_fw_version imgFwVer; struct tools_open_ts_entry devTs; struct tools_open_fw_version devFwVer; memset(&imgTs, 0, sizeof(imgTs)); memset(&imgFwVer, 0, sizeof(imgFwVer)); memset(&devTs, 0, sizeof(devTs)); memset(&devFwVer, 0, sizeof(devFwVer)); if (_ioAccess && !_ioAccess->is_flash()) { // no need to test timestamp on image return true; } if (_fwParams.ignoreCacheRep) { // direct flash access no check is needed return true; } if (imageOps->_ioAccess && imageOps->_ioAccess->is_flash()) { return errmsg("TestAndSetTimeStamp bad params"); } if (imageOps->GetTsObj(&imgTsObj)) { return errmsg("%s", imageOps->err()); } rc = GetTsObj(&devTsObj); if (rc) { delete imgTsObj; return rc == TS_TIMESTAMPING_NOT_SUPPORTED ? true : false; } // check if device supports timestamping or if device is not in livefish devTsQueryRc = devTsObj->queryTimeStamp(devTs, devFwVer); if (devTsQueryRc == TS_TIMESTAMPING_NOT_SUPPORTED || devTsQueryRc == TS_UNSUPPORTED_ICMD_VERSION) { retRc = true; goto cleanup; } else if (devTsQueryRc && devTsQueryRc != TS_NO_VALID_TIMESTAMP) { retRc = errmsg("%s", devTsObj->err()); goto cleanup; } // Option 1 image was timestampped need to try and set it on device // Option 2 image was not timestampped but device was timestampped rc = imgTsObj->queryTimeStamp(imgTs, imgFwVer); if (rc == TS_OK) { tsFoundOnImage = true; } else if (rc != TS_TLV_NOT_FOUND) { retRc = errmsg("%s", imgTsObj->err()); goto cleanup; } if (tsFoundOnImage) { // timestamp found on image, attempt to set it on device rc = devTsObj->setTimeStamp(imgTs, imgFwVer); if (rc == TS_OK) { retRc = true; } else { retRc = errmsg("%s", devTsObj->err()); } } else { if (devTsQueryRc == TS_NO_VALID_TIMESTAMP) { // no timestamp on image and no valid timestamp on device check if we got running timestamp if we do then // fail devTsQueryRc = devTsObj->queryTimeStamp(devTs, devFwVer, true); if (devTsQueryRc == TS_OK) { // we got running timestamp return error retRc = errmsg("No valid timestamp detected. please set a valid timestamp on image/device or reset " "timestamps on device."); } else if (devTsQueryRc == TS_NO_VALID_TIMESTAMP) { // timestamping not used on device. retRc = true; } else { retRc = errmsg("%s", devTsObj->err()); } } else { fw_info_t fw_query; memset(&fw_query, 0, sizeof(fw_info_t)); if (!imageOps->FwQuery(&fw_query, true)) { return errmsg("Failed to query the image\n"); } // we got a valid timestamp on device but not on image! compare the FW version if (devFwVer.fw_ver_major == fw_query.fw_info.fw_ver[0] && devFwVer.fw_ver_minor == fw_query.fw_info.fw_ver[1] && devFwVer.fw_ver_subminor == fw_query.fw_info.fw_ver[2]) { // versions match allow update retRc = true; } else { retRc = errmsg("Stamped FW version mismatch: %d.%d.%04d differs from %d.%d.%04d", devFwVer.fw_ver_major, devFwVer.fw_ver_minor, devFwVer.fw_ver_subminor, fw_query.fw_info.fw_ver[0], fw_query.fw_info.fw_ver[1], fw_query.fw_info.fw_ver[2]); } } } cleanup: delete imgTsObj; delete devTsObj; return retRc; } FwVersion FwOperations::createFwVersion(u_int16_t fw_ver0, u_int16_t fw_ver1, u_int16_t fw_ver2) { return FwVersion(fw_ver0, fw_ver1, fw_ver2); } FwVersion FwOperations::createFwVersion(const fw_info_com_t* fwInfo) { return FwVersion(fwInfo->fw_ver[0], fwInfo->fw_ver[1], fwInfo->fw_ver[2], fwInfo->branch_ver); } FwVersion FwOperations::createRunningFwVersion(const fw_info_com_t* fwInfo) { return FwVersion(fwInfo->running_fw_ver[0], fwInfo->running_fw_ver[1], fwInfo->running_fw_ver[2], fwInfo->running_branch_ver); } bool FwOperations::CreateSignatureManager() { if (IsFsCtrlOperations()) { // FW control device if (_fwImgInfo.ext_info.chip_type == CT_UNKNOWN) { return errmsg("CreateSignatureManager: Unknown chip type\n"); } _signatureMngr = SignatureManagerFactory::GetInstance()->CreateSignatureManager(_fwImgInfo.ext_info.chip_type); return true; } // here ioAccess must be initialized if (_ioAccess == NULL) { return errmsg("CreateSignatureManager: ioAccess is NULL\n"); } u_int32_t hwDevId = 0; if (_ioAccess->is_flash()) { // device hwDevId = GetHwDevId(); _signatureMngr = SignatureManagerFactory::GetInstance()->CreateSignatureManager(hwDevId, _fwImgInfo.ext_info.dev_rev); return true; } else { // BIN file // For images we get the AbstractSignatureManager (base class) since we don't know the chip type in this stage _signatureMngr = SignatureManagerFactory::GetInstance()->CreateSignatureManager(CT_UNKNOWN); return true; } return false; } bool FwOperations::storeSecureBootSignaturesInSection(vector, vector, vector) { return errmsg("storeSecureBootSignaturesInSection not supported"); } bool FwOperations::getExtendedHWAravaPtrs(VerifyCallBack, FBase*, bool, bool) { return errmsg("getExtendedHWAravaPtrs not supported"); } u_int32_t FwOperations::GetPublicKeySecureBootPtr() { return errmsg("GetPublicKeySecureBootPtr not supported"); } bool FwOperations::VerifyBranchFormat(const char* vsdString) { size_t length = strlen(vsdString); if (length > BRANCH_LEN || length < MIN_BRANCH_LEN) { return false; } if (vsdString[length - MIN_BRANCH_LEN] == '_') { for (size_t i = length - MIN_BRANCH_LEN + 1; i < length; i++) { if (!isdigit(vsdString[i])) { return false; } } return true; } else if (vsdString[length - MIN_BRANCH_LEN + 1] == '-') { for (size_t i = length - MIN_BRANCH_LEN + 2; i < length; i++) { if (!isdigit(vsdString[i])) { return false; } } return true; } return false; } bool FwOperations::PrintQuery() { return errmsg("PrintQuery not supported."); } bool FwOperations::IsLifeCycleAccessible(chip_type_t) { return errmsg("IsLifeCycleAccessible not supported."); } bool FwOperations::IsSecurityVersionViolated(u_int32_t) { return false; } bool FwOperations::GetImageSize(u_int32_t*) { return errmsg("GetImageSize is not supported"); } bool FwOperations::GetHashesTableData(vector& data) { return errmsg("GetHashesTableData is not supported"); } bool FwOperations::QueryComponentData(FwComponent::comps_ids_t comp, u_int32_t deviceIndex, vector& data) { return errmsg("GetComponentData is not supported"); } bool FwOperations::IsCompatibleToDevice(vector& data, u_int8_t forceVersion) { return errmsg("IsCompatibleToDevice is not supported"); } bool FwOperations::IsExtendedGuidNumSupported() { bool isSupported = false; switch (_fwImgInfo.supportedHwId[0]) { case SPECTRUM4_HW_ID: isSupported = true; break; default: isSupported = false; break; } return isSupported; } #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) bool FwOperations::CheckPemKeySize(const string privPemFileStr, u_int32_t& keySize) { MlxSignRSA rsa; vector section(1, 64); vector encSha; vector sha; int rc = rsa.setPrivKeyFromFile(privPemFileStr); if (rc) { return false; } MlxSignSHA512 mlxSignSHA; mlxSignSHA << section; mlxSignSHA.getDigest(sha); rc = rsa.sign(MlxSign::SHA512, sha, encSha); if (rc) { return false; } keySize = encSha.size(); return true; } #endif CRSpaceRegisters::CRSpaceRegisters(mfile* mf, chip_type_t chip_type) : _mf(mf), _chip_type(chip_type) {} life_cycle_t CRSpaceRegisters::getLifeCycle() { size_t lifeCycleAddress = 0; u_int8_t firstBit = 0; u_int8_t bitLen = 0; u_int32_t lifeCycle; switch (_chip_type) { case CT_CONNECTX6: lifeCycleAddress = 0xf0060; firstBit = 0; bitLen = 2; break; case CT_BLUEFIELD2: case CT_CONNECTX6DX: case CT_CONNECTX6LX: lifeCycleAddress = 0xf0068; firstBit = 0; bitLen = 2; break; case CT_CONNECTX7: case CT_CONNECTX8: case CT_QUANTUM2: case CT_QUANTUM3: case CT_BLUEFIELD3: case CT_BLUEFIELD4: case CT_SPECTRUM4: lifeCycleAddress = 0xf0000; firstBit = 4; bitLen = 2; break; default: throw logic_error("-E- life_cycle query is not implemented for the current device."); break; } lifeCycle = getRegister(lifeCycleAddress); return (life_cycle_t)getConsecutiveBits(lifeCycle, firstBit, bitLen); } int CRSpaceRegisters::getGlobalImageStatus() { size_t global_image_status_address = 0; switch (_chip_type) { case CT_CONNECTX6: case CT_CONNECTX6DX: case CT_CONNECTX6LX: case CT_CONNECTX7: case CT_CONNECTX8: case CT_BLUEFIELD2: case CT_BLUEFIELD3: case CT_BLUEFIELD4: global_image_status_address = 0xE3044; break; case CT_QUANTUM2: case CT_QUANTUM3: case CT_SPECTRUM4: global_image_status_address = 0xa1844; break; default: throw logic_error("-E- global_image_status query is not implemented for the current device."); break; } return (int)getRegister(global_image_status_address); } u_int32_t CRSpaceRegisters::getSecurityVersion() { u_int32_t securityVersion = 0; u_int32_t rollbackMSB = 0, rollbackLSB = 0; u_int32_t minimalSecurityVersion = 0; switch (_chip_type) { case CT_QUANTUM2: case CT_QUANTUM3: rollbackMSB = getRegister(0xf3248); rollbackLSB = getRegister(0xf324c); minimalSecurityVersion = getConsecutiveBits(getRegister(0xf3238), 3, 8); break; case CT_BLUEFIELD3: rollbackMSB = getRegister(0xf4348); rollbackLSB = getRegister(0xf434c); minimalSecurityVersion = getConsecutiveBits(getRegister(0xf4338), 4, 8); break; case CT_SPECTRUM4: rollbackMSB = getRegister(0xf4348); rollbackLSB = getRegister(0xf434c); minimalSecurityVersion = getConsecutiveBits(getRegister(0xf4338), 0, 8); break; case CT_CONNECTX7: rollbackMSB = getRegister(0xf4548); rollbackLSB = getRegister(0xf454c); minimalSecurityVersion = getConsecutiveBits(getRegister(0xf4538), 4, 8); break; default: throw logic_error("-E- Security version query is not implemented for the current device."); break; } securityVersion = countSetBits(rollbackMSB) + countSetBits(rollbackLSB) + minimalSecurityVersion; return securityVersion; } u_int32_t CRSpaceRegisters::countSetBits(u_int32_t num) { u_int32_t count = 0; while (num) { count += num & 1; num >>= 1; } return count; } u_int32_t CRSpaceRegisters::getConsecutiveBits(u_int32_t data, u_int8_t firstBit, u_int8_t numOfBits) { u_int32_t mask = 0xffffffff; mask = mask >> (32 - numOfBits); data = data >> firstBit; data = data & mask; return data; } u_int32_t CRSpaceRegisters::getRegister(u_int32_t address) { u_int32_t crSpaceReg = 0; int rc = mread4(_mf, address, &crSpaceReg); if (rc != 4) { throw runtime_error("-E- Failed to read from CRSpace."); } return crSpaceReg; } mstflint-4.26.0/mlxfwops/lib/fw_ops.h0000644000175000017500000007535414522641732020014 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FW_OPS_H #define FW_OPS_H #include "flint_base.h" #include "flint_io.h" #include "aux_tlv_ops.h" #include "mlxfwops_com.h" #include "signature_manager_factory.h" #include "fw_version.h" #include "tools_layouts/cx4fw_layouts.h" #include "tools_layouts/image_layout_layouts.h" #include #ifdef CABLES_SUPP #include #endif #include #include "mlxsign_lib/mlxsign_signer_interface.h" #if !defined(NO_OPEN_SSL) #include #endif typedef f_prog_func_str VerifyCallBack; typedef f_prog_func ProgressCallBack; typedef f_prog_func_ex ProgressCallBackEx; typedef f_prog_func_adv_st ProgressCallBackAdvSt; typedef f_prog_func_str PrintCallBack; typedef fw_ver_info_t FwVerInfo; typedef int (*PrintCallBackAdv)(int completion, char* str); MLXFWOP_API extern bool nextBootFwVer; #define GLOBAL_ALIGNMENT 0x80 #define UUID_LEN 16 #define BAD_CRC_MSG "Bad CRC." class MLXFWOP_API FwOperations : public FlintErrMsg { public: #define EXP_ROM_GEN_DEVID 0 #define MISS_MATCH_DEV_ID 0xffff class ExtBurnParams; class ExtVerifyParams; struct fwOpsParams; struct sgParams; typedef fwOpsParams fw_ops_params_t; typedef sgParams sg_params_t; // typedef std::tr1::function VerifyCallback; enum { IMG_SIG_TYPE_UNKNOWN = 0, IMG_SIG_TYPE_BIN = 1, IMG_SIG_TYPE_MFA = 2, IMG_SIG_TYPE_CF = 3, IMG_SIG_TYPE_CC = 4, IMG_SIG_OPEN_FILE_FAILED = 5 }; FwOperations(FBase* ioAccess) : _ioAccess(ioAccess), _quickQuery(false), _printFunc((PrintCallBack)NULL), _fname((const char*)NULL), _devName((const char*)NULL), _advErrors(true), _minBinMinorVer(0), _minBinMajorVer(0), _maxBinMajorVer(0), _signatureMngr((ISignatureManager*)NULL), _internalQueryPerformed(false) { memset(_sectionsToRead, 0, sizeof(_sectionsToRead)); memset(&_fwImgInfo, 0, sizeof(_fwImgInfo)); memset(&_fwParams, 0, sizeof(_fwParams)); }; virtual ~FwOperations() { if (_ioAccess) { delete _ioAccess; } if (_signatureMngr) { delete _signatureMngr; } }; // virtual void print_type() {}; virtual mfile* getMfileObj() { mfile* mf = _ioAccess->is_flash() ? ((Flash*)_ioAccess)->getMfileObj() : (mfile*)NULL; return mf; } virtual bool IsFifthGen() { return (_ioAccess != NULL && _ioAccess->is_flash() && _ioAccess->is_fifth_gen()); } FBase* GetIoAccess() { return _ioAccess; } virtual u_int8_t FwType() = 0; static bool IsFwSupportingRomModify(const FwVersion&); static void SetDevFlags(chip_type_t chipType, u_int32_t devType, fw_img_type_t fwType, bool& ibDev, bool& ethDev); static bool checkMatchingExpRomDevId(const fw_info_t& info); static bool checkMatchingExpRomDevId(u_int16_t dev_type, const roms_info_t& roms_info); static const char* expRomType2Str(u_int16_t type); static chip_type_t getChipType(u_int32_t devid); virtual bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false) = 0; virtual bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false) = 0; // Add callback print virtual bool FwVerifyAdv(ExtVerifyParams& verifyParams); // on call of FwReadData with Null image we get image_size virtual bool FwReadData(void* image, u_int32_t* image_size, bool verbose = false) = 0; virtual bool FwReadBlock(u_int32_t addr, u_int32_t size, std::vector& dataVec); virtual u_int32_t GetPublicKeySecureBootPtr(); virtual bool FwReactivateImage() { return errmsg("Operation not supported."); } virtual bool FwInsertSHA256(PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool SignForFwUpdate(const char* uuid, const MlxSign::Signer& signer, MlxSign::SHAType shaType, PrintCallBack printFunc); virtual bool FwSignWithTwoRSAKeys(const char* privPemFile1, const char* uuid1, const char* privPemFile2, const char* uuid2, PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool FwSignWithHmac(const char* key_file); virtual bool SignForSecureBoot(const char* public_key_file, const char* uuid, const MlxSign::Signer& signer); virtual bool FwExtract4MBImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose = false, bool ignoreImageStart = false); virtual bool RestoreDevToc(vector& img, char* psid, dm_dev_id_t devid_t, const image_layout_uid_entry& base_guid, const image_layout_uid_entry& base_mac); virtual bool openEncryptedImageAccess(const char* encrypted_image_path); virtual bool isEncrypted(bool& is_encrypted); virtual bool FwExtractEncryptedImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose = false, bool ignoreImageStart = false); virtual bool burnEncryptedImage(FwOperations* imageOps, ExtBurnParams& burnParams); virtual bool FwSetPublicKeys(char* fname, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetForbiddenVersions(char* fname, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwReadRom(std::vector& romSect) = 0; virtual bool FwBurnRom(FImage* romImg, bool ignoreProdIdCheck = false, bool ignoreDevidCheck = false, ProgressCallBack progressFunc = (ProgressCallBack)NULL) = 0; // can also read the rom from // flint and give a vector of // u_int8_t virtual bool FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc = (ProgressCallBack)NULL) = 0; virtual bool FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc = (ProgressCallBack)NULL) = 0; virtual bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams) = 0; virtual bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId); virtual bool getExtendedHWAravaPtrs(VerifyCallBack verifyCallBackFunc, FBase* ioAccess, bool IsBurningProcess, bool isVerify); virtual bool FwBurnAdvanced(std::vector imageOps4MData, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId = FwComponent::COMPID_BOOT_IMG); virtual bool FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc) = 0; // Add: callback progress, question arr, callback // question, configurations virtual bool FwWriteBlock(u_int32_t addr, std::vector dataVec, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc = (PrintCallBack)NULL, ProgressCallBack progressFunc = (ProgressCallBack)NULL) = 0; virtual bool IsExtendedGuidNumSupported(); virtual bool FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL) = 0; virtual bool FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL) = 0; // use progressFunc when dealing with FS2 image and printFunc when dealing with FS3 image. virtual bool FwSetVSD(char* vsdStr, ProgressCallBack progressFunc = (ProgressCallBack)NULL, PrintCallBack printFunc = (PrintCallBack)NULL) = 0; virtual bool FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc = (PrintCallBack)NULL) = 0; virtual bool FwSetCertChain(char* certFileStr, u_int32_t certIndex, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc = (ProgressCallBack)NULL) = 0; virtual bool FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage = false) = 0; virtual bool FwResetNvData() = 0; virtual bool FwShiftDevData(PrintCallBack progressFunc = (PrintCallBack)NULL) = 0; virtual const char* FwGetResetRecommandationStr() = 0; virtual const char* FwGetReSignMsgStr(); virtual bool FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer); virtual bool FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false); virtual bool FwResetTimeStamp(); virtual bool FwCheckIfWeCanBurnWithFwControl(FwOperations*) { return true; } virtual bool FwCheckIf8MBShiftingNeeded(FwOperations*, const ExtBurnParams&) { return false; } virtual bool CheckIfAlignmentIsNeeded(FwOperations*) { return false; } virtual bool RemoveWriteProtection() { return true; // Though Remove write protection is not supported, return true. } virtual void FwCleanUp(); virtual bool FwInit() = 0; bool FwSetPrint(PrintCallBack PrintFunc); virtual bool UpdateSection(void* new_info, fs3_section_t sect_type = FS3_DEV_INFO, bool is_sect_failsafe = true, CommandType cmd_type = CMD_UNKNOWN, PrintCallBack callBackFunc = (PrintCallBack)NULL); // needed for flint low level operations bool FwSwReset(); virtual bool FwCalcMD5(u_int8_t md5sum[16]) = 0; static FwOperations* FwOperationsCreate(void* fwHndl, void* info, char* psid, fw_hndl_type_t hndlType, char* errBuff = (char*)NULL, int buffSize = 0, bool ignore_crc_check = false); static FwOperations* FwOperationsCreate(fw_ops_params_t& fwParams); static bool imageDevOperationsCreate(fw_ops_params_t& devParams, fw_ops_params_t& imgParams, FwOperations** devFwOps, FwOperations** imgFwOps, bool ignoreSecurityAttributes = false, bool ignoreDToc = false); virtual bool IsFsCtrlOperations() { return false; } virtual bool PrepItocSectionsForCompare(vector& critical, vector& non_critical); virtual bool IsSecureBootSupported(); virtual bool IsCableQuerySupported(); virtual bool IsLifeCycleSupported(); virtual bool IsEncryptionSupported(); void GetFwParams(fw_ops_params_t&); void getSupporteHwId(u_int32_t** supportedHwId, u_int32_t& supportedHwIdNum); static FwVersion createFwVersion(const fw_info_com_t*); static FwVersion createFwVersion(u_int16_t fw_ver0, u_int16_t fw_ver1, u_int16_t fw_ver2); static FwVersion createRunningFwVersion(const fw_info_com_t*); static int getFileSignature(const char* fname); virtual bool IsLifeCycleAccessible(chip_type_t chip_type); virtual bool IsSecurityVersionViolated(u_int32_t image_security_version); virtual bool GetImageSize(u_int32_t* image_size); virtual bool GetHashesTableData(vector& data); virtual bool PrintQuery(); virtual u_int32_t GetDeviceIndex() { return 0; } virtual bool QueryComponentData(FwComponent::comps_ids_t comp, u_int32_t deviceIndex, vector& data); virtual bool IsCompatibleToDevice(vector& data, u_int8_t forceVersion); virtual bool GetRSAPublicKey(vector& key); #ifndef UEFI_BUILD static bool CheckPemKeySize(const string privPemFileStr, u_int32_t& keySize); #endif class MLXFWOP_API RomInfo : FlintErrMsg { public: RomInfo(const std::vector& romSector, bool resEndi = true); ~RomInfo(){}; bool initRomsInfo(roms_info_t* info); bool ParseInfo(); static u_int8_t getNumVerFromProdId(u_int16_t prodId); private: // Rom Information bool expRomFound; u_int8_t numOfExpRom; u_int8_t noRomChecksum; u_int16_t expRomComDevid; u_int8_t expRomWarning; char expRomWarningMsg[MAX_ROM_ERR_MSG_LEN]; u_int8_t expRomErrMsgValid; char expRomErrMsg[MAX_ROM_ERR_MSG_LEN]; rom_info_t romsInfo[MAX_ROMS_NUM]; std::vector romSect; bool GetExpRomVerForOneRom(u_int32_t verOffset); bool GetExpRomVersion(); }; class ExtBurnStatus { public: bool imageCachedSuccessfully; ExtBurnStatus() : imageCachedSuccessfully(false) {} }; class ExtBurnParams { public: typedef enum BurnRomOption { BRO_DEFAULT, BRO_ONLY_FROM_IMG, BRO_FROM_DEV_IF_EXIST, } BurnRomOption; // burn params bool userGuidsSpecified; bool userMacsSpecified; bool userUidSpecified; bool vsdSpecified; bool blankGuids; bool burnFailsafe; bool allowPsidChange; bool useImagePs; bool useImageGuids; bool singleImageBurn; bool noDevidCheck; bool skipCiReq; // FS2 image only - skip sending cache image request to driver at the end of the burn bool ignoreVersionCheck; bool useImgDevData; // FS3 image only - take device data sections from image (valid only if burnFailsafe== // false) bool useDevImgInfo; // FS3 image only - preserve select fields of image_info section on the device when burning. BurnRomOption burnRomOptions; bool shift8MBIfNeeded; // callback fun ProgressCallBack progressFunc; ProgressCallBackAdvSt ProgressFuncAdv; ProgressCallBackEx progressFuncEx; void* progressUserData; // data char* userVsd; bool use_cpu_utilization; int cpu_utilization; std::vector userUids; // contains either guids or uids ExtBurnStatus burnStatus; chip_type_t chip_type; bool use_chip_type; ExtBurnParams() : userGuidsSpecified(false), userMacsSpecified(false), userUidSpecified(false), vsdSpecified(false), blankGuids(false), burnFailsafe(true), allowPsidChange(false), useImagePs(false), useImageGuids(false), singleImageBurn(true), noDevidCheck(false), skipCiReq(false), ignoreVersionCheck(false), useImgDevData(false), useDevImgInfo(false), burnRomOptions(BRO_DEFAULT), shift8MBIfNeeded(false), progressFunc((ProgressCallBack)NULL), progressFuncEx((ProgressCallBackEx)NULL), progressUserData(NULL), userVsd((char*)NULL), use_cpu_utilization(false), cpu_utilization(-1), chip_type(CT_UNKNOWN), use_chip_type(false) { ProgressFuncAdv.func = (f_prog_func_adv)NULL; ProgressFuncAdv.opaque = NULL; } void updateParamsForBasicImage(ProgressCallBack progressFunc) { ignoreVersionCheck = true; this->progressFunc = progressFunc; useImagePs = true; useImageGuids = true; burnRomOptions = ExtBurnParams::BRO_ONLY_FROM_IMG; } }; class ExtVerifyParams { public: VerifyCallBack verifyCallBackFunc; // Print function call back for print the different sections in the verify bool isStripedImage; // If the image is striped bool showItoc; // Show the ITOC header only bool ignoreDToc; // Ignore verifying DTOC sections ProgressCallBackAdvSt* progressFuncAdv; // Advance progress function that used in FW controlled operations (e.g. // under secure fw) ExtVerifyParams(VerifyCallBack vFunc) : verifyCallBackFunc(vFunc), isStripedImage(false), showItoc(false), ignoreDToc(false), progressFuncAdv((ProgressCallBackAdvSt*)NULL){}; }; struct fwOpsParams { // COMMON char* psid; // can be NULL fw_hndl_type_t hndlType; char* errBuff; // can be NULL int errBuffSize; // can be zero if above NULL // FHT_FW_FILE char* fileHndl; // FHT_FW_BUFF u_int32_t* buffHndl; u_int32_t buffSize; // FHT_UEFI_DEV uefi_Dev_t* uefiHndl; uefi_dev_extra_t uefiExtra; // FHT_MST_DEV char* mstHndl; bool forceLock; bool readOnly; int numOfBanks; // should be set to -1 for "auto-detect" flash_params_t* flashParams; // can be NULL int ignoreCacheRep; bool noFlashVerify; bool shortErrors; // show short/long error msgs (default shuold be false) int cx3FwAccess; int isCableFw; bool noFwCtrl; bool mccUnsupported; bool canSkipFwCtrl; bool ignoreCrcCheck; u_int32_t deviceIndex; }; struct sgParams { bool updateCrc; // default should be set to true bool stripedImage; // default shuold be set to false unless working on striped image file bool macsSpecified; bool guidsSpecified; bool uidSpecified; // valid for ConnectIB only std::vector userGuids; u_int8_t numOfGUIDs; // number of GUIDs to allocate for each port. keep zero for default. (FS3 image Only) u_int8_t stepSize; // step size between GUIDs. keep zero for default. (FS3 Image Only) bool usePPAttr; // if set, use the per prot attributes below (FS3 Image Only) u_int16_t numOfGUIDsPP[2]; // number of GUIDs to allocate for each port. keep 0xff for default. (FS3 image Only) u_int8_t stepSizePP[2]; // step size between GUIDs. keep 0xffff for default. (FS3 Image Only) }; protected: #define FS3_BOOT_VERSION_OFFSET 0x24 #define FS4_BOOT_VERSION_OFFSET 0x10 #define ARR_SIZE(arr) sizeof(arr) / sizeof(arr[0]) struct FwImgInfo { fw_info_com_t ext_info; u_int32_t imgStart; bool actuallyFailsafe; u_int32_t cntxLog2ChunkSize; u_int32_t boot2Size; bool isGa; u_int32_t supportedHwId[MAX_NUM_SUPP_HW_IDS]; int supportedHwIdNum; bool magicPatternFound; bool imageOk; bool wasQueried; u_int32_t lastImageAddr; fw_img_type_t fwType; }; enum { OLD_CNTX_START_POS_SIZE = 6, CNTX_START_POS_SIZE = 10 }; enum { MAX_SW_DEVICES_PER_HW = 32 }; enum { IMG_VER_FS2 = 0, IMG_VER_FS3 = 3, IMG_VER_FS4 = 1, IMG_VER_FS5 = 2 }; enum { FS_OLD_GEN = 0, FS_FS2_GEN, FS_FS3_GEN, FS_FS4_GEN, FS_FC1_GEN, FS_FSCTRL_GEN, FS_FS5_GEN, FS_COMPS_GEN, FS_UNKNOWN_IMG }; struct BinId2SwId { BinIdT binId; // Zero terminated list of SW device ids u_int32_t swId[MAX_SW_DEVICES_PER_HW]; }; struct HwDevData { const char* name; u_int32_t hwDevId; chip_type_t chipType; chip_family_type chipFamilyType; int portNum; // Zero terminated list of SW device ids const u_int32_t swDevIds[MAX_SW_DEVICES_PER_HW]; // -1 terminated list of the bins of the device that match every SW ID const BinId2SwId binningId[MAX_SW_DEVICES_PER_HW]; }; struct HwDev2Str { const char* name; u_int32_t hwDevId; u_int8_t revId; }; struct SectionInfo { u_int8_t type; const char* name; }; struct QueryOptions { bool quickQuery; bool readRom; }; class burnDataParamsT { public: u_int32_t* data; u_int32_t dataSize; ProgressCallBack progressFunc; bool calcSha; burnDataParamsT() : data((u_int32_t*)NULL), dataSize(0), progressFunc((ProgressCallBack)NULL), calcSha(false){}; }; typedef int (*print2log_func)(const char* format, ...); // Protected Methods virtual u_int32_t GetHwDevId() { mfile* mf = _ioAccess->getMfileObj(); dm_dev_id_t deviceId = DeviceUnknown; u_int32_t hwDevId = 0x0, hwRevId = 0x0; if (dm_get_device_id(mf, &deviceId, &hwDevId, &hwRevId)) { return 0xffff; } return hwDevId; } virtual bool AlignDeviceSections(FwOperations* /*imageOps*/) { return errmsg("Align device sections is not supported"); } bool CreateBasicImageFromData(u_int32_t* data, u_int32_t dataSize, FwOperations** newImgOps); virtual bool storeSecureBootSignaturesInSection(vector boot_signature, vector critical_sections_signature = vector(), vector non_critical_sections_signature = vector()); bool readBufAux(FBase& f, u_int32_t o, void* d, int l, const char* p); static int GetFwVerFormat(u_int16_t fwVer[3]); virtual bool UpdateImgCache(u_int8_t* buff, u_int32_t addr, u_int32_t size); bool CheckAndPrintCrcRes(char* pr, bool blank_crc, u_int32_t off, u_int32_t crc_act, u_int32_t crc_exp, bool ignore_crc = false, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); virtual bool CheckBoot2(u_int32_t beg, u_int32_t offs, u_int32_t& next, bool fullRead, const char* pref, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); u_int32_t CalcImageCRC(u_int32_t* buff, u_int32_t size); bool writeImage(ProgressCallBack progressFunc, u_int32_t addr, void* data, int cnt, bool isPhysAddr = false, bool readModifyWrite = false, int totalSz = -1, int alreadyWrittenSz = 0); bool writeImageEx(ProgressCallBackEx progressFuncEx, void* progressUserData, ProgressCallBack progressFunc, u_int32_t addr, void* data, int cnt, bool isPhysAddr = false, bool readModifyWrite = false, int totalSz = -1, int alreadyWrittenSz = 0, bool cpuUtilization = false, int cpuPercent = -1); ////////////////////////////////////////////////////////////////// bool GetSectData(std::vector& file_sect, const u_int32_t* buff, const u_int32_t size); //////////////////////////////////////////////////////////////////// bool CheckMatchingDevId(u_int32_t hwDevId, u_int32_t imageDevId); bool CheckMatchingHwDevId(u_int32_t hwDevId, u_int32_t rev_id, u_int32_t* supportedHwId, u_int32_t supportedHwIdNum); bool CheckMatchingBinning(u_int32_t hwDevId, BinIdT binningVal, u_int32_t imageDevId); bool HWIdRevToName(u_int32_t hw_id, u_int8_t rev_id, char* hw_name); bool CheckMac(u_int64_t mac); bool CheckMac(guid_t mac); void recalcSectionCrc(u_int8_t* buf, u_int32_t data_size); void FwInitCom(); void FwDebugPrint(char* str); static bool FindAllImageStart(FBase* ioAccess, u_int32_t start_locations[CNTX_START_POS_SIZE], u_int32_t* found_images, u_int32_t const cntx_magic_pattern[]); static bool getRomsInfo(FBase* io, roms_info_t& romsInfo); bool GetQuickQuery() { return _quickQuery; } bool CheckFwVersion(FwOperations& imgFwOps, u_int8_t forceVersion); bool CheckPSID(FwOperations& imageOps, u_int8_t allow_psid_change = false); chip_type_t getChipType(); bool getInfoFromHwDevid(u_int32_t hwDevId, chip_type_t& chipT, const u_int32_t** swIds); HwDevData getInfoFromChipType(chip_type_t chipT) const; bool ReadBinFile(const char* fimage, u_int8_t*& file_data, int& file_size); bool FwBurnData(u_int32_t* data, u_int32_t dataSize, ProgressCallBack progressFunc); bool FwBurnData(burnDataParamsT& burnDataParams); static bool FwAccessCreate(fw_ops_params_t& fwParams, FBase** ioAccessP); bool CheckBinVersion(u_int8_t binVerMajor, u_int8_t binVerMinor); static u_int8_t GetFwFormatFromHwDevID(u_int32_t hwDevId); virtual Tlv_Status_t GetTsObj(TimeStampIFC** tsObj); bool TestAndSetTimeStamp(FwOperations* imageOps); virtual bool VerifyBranchFormat(const char* vsdString); // Protected Members FBase* _ioAccess; FwImgInfo _fwImgInfo; fw_ops_params_t _fwParams; std::vector _romSect; std::vector _fwConfSect; std::vector _hashFileSect; std::vector _readSectList; bool _sectionsToRead[H_LAST]; bool _quickQuery; PrintCallBack _printFunc; const char* _fname; const char* _devName; // show advanced error msgs bool _advErrors; u_int8_t _minBinMinorVer; u_int8_t _minBinMajorVer; u_int8_t _maxBinMajorVer; ISignatureManager* _signatureMngr; bool _internalQueryPerformed; private: // Static Methods #ifndef NO_MFA_SUPPORT static int getMfaImgInner(char* fileName, u_int8_t* mfa_buf, int size, char* psid, u_int8_t** imgbuf, char* errBuf, int errBufSize); static int getMfaImg(char* fileName, char* psid, u_int8_t** imgbuf, char* errBuf, int errBufSize); static int getMfaImg(u_int8_t* mfa_buf, int size, char* psid, u_int8_t** imgbuf, char* errMsg, int errBufSize); #endif static int getBufferSignature(u_int8_t* buf, u_int32_t size); static u_int8_t CheckFwFormat(FBase& f, bool getFwFormatFromImg = false); static bool GetImageFormatVersion(FBase& f, u_int32_t boot_version_offset, u_int8_t& image_format_version); static u_int8_t IsFS4OrFS5Image(FBase& f, u_int32_t* found_images); static u_int8_t IsFS3OrFS2Image(FBase& f, u_int32_t* found_images); static u_int8_t IsCableImage(FBase& f); static u_int8_t IsFSCompsImage(FBase& f); static bool FindMagicPattern(FBase* ioAccess, u_int32_t addr, u_int32_t const cntx_magic_pattern[]); static bool CntxEthOnly(u_int32_t devid); /* Name: WriteToErrBuff * Description: Write a string into buffer. * if buffer is null or smaller than string size, * write "..." as at the end of the string. * @param[in] errBuff - pointer to dist error buffer * @param[in] errStr - pointer to source string * @param[in] bufSize - size of error buffer */ static void WriteToErrBuff(char* errBuff, char* errStr, int bufSize); // Methods void BackUpFwParams(fw_ops_params_t& fwParams); bool CreateSignatureManager(); // Static Members static const u_int32_t _cntx_image_start_pos[CNTX_START_POS_SIZE]; // Members static const HwDevData hwDevData[]; static const HwDev2Str hwDev2Str[]; // fw_hndl_type_t _hndlType; //not used atm protected: static const u_int32_t _cntx_magic_pattern[4]; static const u_int32_t _fs4_magic_pattern[4]; }; class CRSpaceRegisters { public: CRSpaceRegisters(mfile* mf, chip_type_t chip_type); int getGlobalImageStatus(); life_cycle_t getLifeCycle(); u_int32_t getSecurityVersion(); private: mfile* _mf; chip_type_t _chip_type; u_int32_t countSetBits(u_int32_t num); u_int32_t getConsecutiveBits(u_int32_t dword, u_int8_t firstBit, u_int8_t numOfBits); u_int32_t getRegister(u_int32_t address); }; #endif // FW_ACCESS_H mstflint-4.26.0/mlxfwops/lib/flint_io.cpp0000644000175000017500000010665114522641732020650 0ustar tzafrirctzafrirc/* * * flint_io.cpp - FLash INTerface * * Copyright (c) 2011 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id: flint_io.cpp 7522 2011-11-16 15:37:21Z mohammad $ * */ #include #include #include "flint_io.h" extern bool _no_erase; extern bool _no_burn; extern const char* g_sectNames[]; #ifdef UEFI_BUILD // no signal handling. void mft_signal_set_handling(int isOn) { return; } #endif //////////////////////////////////////////////////////////////////////// // // FImage Class Implementation // //////////////////////////////////////////////////////////////////////// bool FImage::open(const char* fname, bool read_only, bool advErr) { #ifndef UEFI_BUILD int fsize; FILE* fh; (void)read_only; // FImage can be opened only for read so we ignore compiler warnings _advErrors = advErr; fh = fopen(fname, "rb"); if (!fh) { return errmsg("Can not open file \"%s\" - %s", fname, strerror(errno)); } // Get the file size: if (fseek(fh, 0, SEEK_END) < 0) { fclose(fh); return errmsg("Can not get file size for \"%s\" - %s", fname, strerror(errno)); } fsize = ftell(fh); if (fsize < 0) { fclose(fh); return errmsg("Can not get file size for \"%s\" - %s", fname, strerror(errno)); } rewind(fh); // printf("-D- %s size is %d\n", fname, fsize); if (fsize & 0x3) { fclose(fh); return errmsg("Image size should be 4-bytes aligned. Make sure file %s is in the right format (binary image)", fname); } _fname = fname; _len = fsize; _isFile = true; fclose(fh); return true; #else return false; #endif } // FImage::open bool FImage::open(u_int32_t* buf, u_int32_t len, bool advErr) { _buf.resize(len); memcpy(_buf.data(), buf, len); _len = len; _advErrors = advErr; return true; } //////////////////////////////////////////////////////////////////////// void FImage::close() { _fname = (const char*)NULL; _buf.resize(0); _len = 0; _isFile = false; } // FImage::close ///////////////////////////////////////////////////////////////////////// u_int32_t* FImage::getBuf() { if (_isFile) { // Read the entire file on demand FILE* fh = fopen(_fname, "rb"); int r_cnt; u_int32_t* retBuf; if (!fh) { errmsg("Can not open file \"%s\" - %s", _fname, strerror(errno)); return (u_int32_t*)NULL; } _buf.resize(_len); if ((r_cnt = fread(_buf.data(), 1, _len, fh)) != (int)_len) { if (r_cnt < 0) { errmsg("Read error on file \"%s\" - %s", _fname, strerror(errno)); retBuf = (u_int32_t*)NULL; goto cleanup; } else { errmsg("Read error on file \"%s\" - read only %d bytes (from %ld)", _fname, r_cnt, (unsigned long)_len); retBuf = (u_int32_t*)NULL; goto cleanup; } } _isFile = false; retBuf = (u_int32_t*)_buf.data(); cleanup: fclose(fh); return retBuf; } else { return (u_int32_t*)_buf.data(); } } //////////////////////////////////////////////////////////////////////// bool FImage::read(u_int32_t addr, u_int32_t* data) { return read(addr, data, 4); } // FImage::read //////////////////////////////////////////////////////////////////////// bool FImage::read(u_int32_t addr, void* data, int len, bool verbose, const char* message) { (void)verbose; (void)message; if (!readWriteCommCheck(addr, len)) { return false; } if (!_isFile && _buf.size() == 0) { return errmsg("read() when not opened"); } if (cont2phys(addr + len) > _len) { return errmsg("Reading 0x%x bytes from %s address 0x%x is out of image limits (0x%x bytes)", len, _log2_chunk_size ? "physical " : "", addr, _len); } u_int32_t chunk_addr; u_int32_t chunk_size; Aligner align(_log2_chunk_size); align.Init(addr, len); while (align.GetNextChunk(chunk_addr, chunk_size)) { u_int32_t phys_addr = cont2phys(chunk_addr); if (_isFile) { FILE* fh = fopen(_fname, "rb"); if (!fh) { return errmsg("Can not open file \"%s\" - %s", _fname, strerror(errno)); } if (fseek(fh, phys_addr, SEEK_SET) != 0) { fclose(fh); return errmsg("Failed to read from FW file, offset: %#x - %s", phys_addr, strerror(errno)); } if (fread((u_int8_t*)data + (chunk_addr - addr), chunk_size, 1, fh) != 1) { fclose(fh); return errmsg("Failed to read from FW file, offset: %#x - %s", phys_addr, strerror(errno)); } fclose(fh); } else { memcpy((u_int8_t*)data + (chunk_addr - addr), _buf.data() + phys_addr, chunk_size); } } return true; } // FImage::read //////////////////////////////////////////////////////////////////////// u_int32_t FImage::get_sector_size() { u_int32_t log2_sector_sz_ptr = 0; u_int32_t log2_sector_sz = 0; u_int32_t signature = 0; read(0x24, &signature); TOCPU1(signature); if (signature == SIGNATURE) { // full image: read(0x14, &log2_sector_sz_ptr); TOCPU1(log2_sector_sz_ptr); log2_sector_sz_ptr &= 0xffff; read(0x30 + log2_sector_sz_ptr, &log2_sector_sz); TOCPU1(log2_sector_sz); log2_sector_sz &= 0xffff; return (1 << log2_sector_sz); } else { return 0; } } bool FImage::readFileGetBuffer(std::vector& dataBuf) { int fileSize; FILE* fh; if (!getFileSize(fileSize)) { return false; } dataBuf.resize(fileSize); if ((fh = fopen(_fname, "rb")) == NULL) { return errmsg("Can not open %s: %s\n", _fname, strerror(errno)); } if (fread(dataBuf.data(), 1, fileSize, fh) != (size_t)fileSize) { dataBuf.resize(0); fclose(fh); return errmsg("Failed to read entire file %s: %s\n", _fname, strerror(errno)); } fclose(fh); return true; } bool FImage::writeEntireFile(std::vector& fileContent) { FILE* fh; if ((fh = fopen(_fname, "wb")) == (FILE*)NULL) { return errmsg("Can not open %s: %s\n", _fname, strerror(errno)); } if (fwrite(fileContent.data(), 1, fileContent.size(), fh) != fileContent.size()) { fclose(fh); return errmsg("Failed to write entire file %s: %s\n", _fname, strerror(errno)); } fclose(fh); return true; } bool FImage::getFileSize(int& fileSize) { FILE* fh; if ((fh = fopen(_fname, "rb")) == NULL) { return errmsg("Can not open %s: %s\n", _fname, strerror(errno)); } if (fseek(fh, 0, SEEK_END) < 0) { fclose(fh); return errmsg("Failed to get size of the file \"%s\": %s\n", _fname, strerror(errno)); } fileSize = ftell(fh); fclose(fh); if (fileSize < 0) { return errmsg("Failed to get size of the file \"%s\": %s\n", _fname, strerror(errno)); } return true; } bool FImage::write(u_int32_t addr, void* data, int cnt) { if (!_isFile) { if (_buf.size() < addr + cnt) { _buf.resize(addr + cnt); } memcpy(&_buf[addr], data, cnt); return true; } if (!readWriteCommCheck(addr, 0)) { return false; } // read entire file std::vector dataVec; if (!readFileGetBuffer(dataVec)) { return false; } // modify content (extend if needed) if ((dataVec.size() < addr + cnt)) { dataVec.resize(addr + cnt); } memcpy(&dataVec[addr], data, cnt); // re-write the file if (!writeEntireFile(dataVec)) { return false; } _len = dataVec.size(); return true; } //////////////////////////////////////////////////////////////////////// // // Flash Class Implementation // //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// bool Flash::open_com_checks(const char* device, int rc, bool force_lock) { if ((rc == MFE_SEM_LOCKED) && force_lock) { report("Warning: Taking flash lock even though semaphore is set.\n"); rc = mf_open_ignore_lock(_mfl); } if (rc != MFE_OK) { if (rc == MFE_SEM_LOCKED) { return errmsgAdv( _advErrors, "Can not obtain Flash semaphore.", "You can run \"flint -clear_semaphore -d \" to force semaphore unlock. See help for details."); } if (rc == MFE_LOCKED_CRSPACE) { _cr_space_locked = 1; return errmsgAdv(_advErrors, "HW access is disabled on the device.", "\n-E- Run \"flint -d %s hw_access enable [key]\" in order to enable HW access.", device); } if (rc == MFE_REG_ACCESS_NOT_SUPPORTED) { return errmsgAdv( _advErrors, "The target device FW does not support flash access commands.", "\n-E- Please use the -override_cache_replacement option in order to access the flash directly."); } if (rc == MFE_DIRECT_FW_ACCESS_DISABLED) { return errmsgAdv( _advErrors, "Flash cache replacement is active.", "\n-E- Please use the -override_cache_replacement option in order to access the flash directly."); } return errmsg("%s%s%s", errno == 0 ? "" : strerror(errno), errno == 0 ? "" : ". ", mf_err2str(rc)); } rc = mf_get_attr(_mfl, &_attr); if (rc != MFE_OK) { return errmsg("Failed getting flash attributes for device %s: %s", device, mf_err2str(rc)); } _curr_sector_size = _attr.sector_size; rc = mf_set_opt(_mfl, MFO_NO_VERIFY, _no_flash_verify ? 1 : 0); if (rc != MFE_OK) { return errmsg("Failed setting no flash verify on device: %s", mf_err2str(rc)); } _port_num = 2; return true; } bool Flash::set_no_flash_verify(bool val) { int rc; if (_mfl) { rc = mf_set_opt(_mfl, MFO_NO_VERIFY, val ? 1 : 0); if (rc != MFE_OK) { return errmsg("Failed setting no flash verify on device: %s", mf_err2str(rc)); } } _no_flash_verify = val; return true; } // Flash::open //////////////////////////////////////////////////////////////////////// bool Flash::open(const char* device, bool force_lock, bool read_only, int num_of_banks, flash_params_t* flash_params, int ignore_cashe_replacement, bool advErr, int cx3_fw_access) { // Open device int rc; _advErrors = advErr; _ignore_cache_replacement = ignore_cashe_replacement ? true : false; (void)read_only; // not used , avoid compiler warnings TODO: remove this var from function def rc = mf_open_adv(&_mfl, device, num_of_banks, flash_params, ignore_cashe_replacement, cx3_fw_access); // printf("device: %s , forceLock: %s , read only: %s, num of banks: %d, flash params is null: %s, ocr: %d, rc: // %d\n", device, force_lock? "true":"false", read_only?"true":"false", num_of_banks, flash_params? // "no":"yes", // ignore_cashe_replacement, rc); return open_com_checks(device, rc, force_lock); } //////////////////////////////////////////////////////////////////////// bool Flash::open(uefi_Dev_t* uefi_dev, uefi_dev_extra_t* uefi_extra, bool force_lock, bool advErr) { int rc; _advErrors = advErr; rc = mf_open_uefi(&_mfl, uefi_dev, uefi_extra); return open_com_checks("uefi", rc, force_lock); } //////////////////////////////////////////////////////////////////////// void Flash::close() { if (!_mfl) { return; } mf_close(_mfl); _mfl = 0; } // Flash::close bool Flash::read(u_int32_t addr, u_int32_t* data) { int rc; u_int32_t phys_addr = cont2phys(addr); // printf("-D- read1: addr = %#x, phys_addr = %#x\n", addr, phys_addr); // here we set a "silent" signal handler and deal with the received signal after the read mft_signal_set_handling(1); rc = mf_read(_mfl, phys_addr, 4, (u_int8_t*)data, false); deal_with_signal(); if (rc != MFE_OK) { return errmsg("Flash read failed at address %s0x%x : %s", _log2_chunk_size ? "physical " : "", addr, mf_err2str(rc)); } return true; } //////////////////////////////////////////////////////////////////////// bool Flash::read(u_int32_t addr, void* data, int len, bool verbose, const char* message) { int rc; if (!readWriteCommCheck(addr, len)) { return false; } if (verbose) { printf("\33[2K\r"); // clear the current line } // Much better perf for read in a single chunk. need to work on progress report though. bool read_in_single_chunk = true; if (read_in_single_chunk) { u_int32_t chunk_addr; u_int32_t chunk_size; Aligner align(_log2_chunk_size); align.Init(addr, len); while (align.GetNextChunk(chunk_addr, chunk_size)) { u_int32_t phys_addr = cont2phys(chunk_addr); // printf("-D- write: addr = %#x, phys_addr = %#x\n", chunk_addr, phys_addr); mft_signal_set_handling(1); rc = mf_read(_mfl, phys_addr, chunk_size, ((u_int8_t*)data) + chunk_addr - addr, verbose); deal_with_signal(); if (rc != MFE_OK) { return errmsg("Flash read failed at address %s0x%x : %s", _log2_chunk_size ? "physical " : "", chunk_addr, mf_err2str(rc)); } } } else { u_int32_t perc = 0xffffffff; u_int32_t* p = (u_int32_t*)data; for (int i = 0; i < len / 4; i++) { if (!read(addr, p++)) { return false; } addr += 4; // Report if (verbose) { u_int32_t new_perc = (i * 100) / len; if (new_perc != perc) { printf("\33[2K\r"); // clear the current line printf("\r%s%d%c", message, new_perc, '%'); fflush(stdout); perc = new_perc; } } } } // Report if (verbose) { printf("\33[2K\r"); // clear the current line printf("Done."); fflush(stdout); } return true; } // Flash::read #define DISABLE_CONVERTOR(log2_chunk_size_bak, is_image_in_odd_chunks_bak) \ { \ log2_chunk_size_bak = _log2_chunk_size; \ is_image_in_odd_chunks_bak = _is_image_in_odd_chunks; \ set_address_convertor(0, 0); \ } #define NATIVE_PHY_ADDR_FUNC(func, arg) \ { \ bool ret = true; \ u_int32_t log2_chunk_size_bak, is_image_in_odd_chunks_bak; \ DISABLE_CONVERTOR(log2_chunk_size_bak, is_image_in_odd_chunks_bak); \ ret = func arg; \ set_address_convertor(log2_chunk_size_bak, is_image_in_odd_chunks_bak); \ return ret; \ } bool FBase::read_phy(u_int32_t phy_addr, u_int32_t* data) { NATIVE_PHY_ADDR_FUNC(read, (phy_addr, data)); } bool FBase::read_phy(u_int32_t phy_addr, void* data, int len) { NATIVE_PHY_ADDR_FUNC(read, (phy_addr, data, len)); } bool Flash::write_phy(u_int32_t phy_addr, u_int32_t data) { NATIVE_PHY_ADDR_FUNC(write, (phy_addr, data)); } bool Flash::write_phy(u_int32_t phy_addr, void* data, int cnt, bool noerase) { // Avoid warning (void)noerase; NATIVE_PHY_ADDR_FUNC(write, (phy_addr, data, cnt)); } bool Flash::read_modify_write_phy(u_int32_t phy_addr, void* data, int cnt, bool noerase) { // Avoid warning (void)noerase; NATIVE_PHY_ADDR_FUNC(write_with_erase, (phy_addr, data, cnt)); } bool Flash::read_modify_write(u_int32_t phy_addr, void* data, int cnt, bool noerase) { // Avoid warning (void)noerase; return write_with_erase(phy_addr, data, cnt); } bool Flash::erase_sector_phy(u_int32_t phy_addr) { NATIVE_PHY_ADDR_FUNC(erase_sector, (phy_addr)); } //////////////////////////////////////////////////////////////////////// bool Flash::write(u_int32_t addr, void* data, int cnt, bool noerase) { // FIX: noerase = _no_erase || noerase; if (!_mfl) { return errmsg("Not opened"); } if (addr & 0x3) { return errmsg("Address should be 4-bytes aligned."); } if (cont2phys(addr + cnt) > get_effective_size()) { return errmsg( "Trying to write %d bytes to address 0x%x, which exceeds max image size (0x%x - half of total flash size).", cnt, addr, get_effective_size() / 2); } u_int8_t* p = (u_int8_t*)data; u_int32_t sect_size = get_current_sector_size(); u_int32_t chunk_addr; u_int32_t chunk_size; u_int32_t first_set; for (first_set = 0; ((sect_size >> first_set) & 1) == 0; first_set++) ; Aligner align(first_set); align.Init(addr, cnt); while (align.GetNextChunk(chunk_addr, chunk_size)) { // Write / Erase in sector_size aligned chunks int rc; if (!noerase) { u_int32_t sector = (chunk_addr / sect_size) * sect_size; if (sector != _curr_sector) { _curr_sector = sector; if (!erase_sector(_curr_sector)) { return false; } } } if (_no_burn) { continue; } // Actual write: u_int32_t phys_addr = cont2phys(chunk_addr); // printf("-D- write: addr = %#x, phys_addr = %#x\n", chunk_addr, phys_addr); mft_signal_set_handling(1); if (_cputUtilizationApplied) { mf_set_cpu_utilization(_mfl, _cpuPercent); } rc = mf_write(_mfl, phys_addr, chunk_size, p); deal_with_signal(); if (rc != MFE_OK) { if (rc == MFE_ICMD_BAD_PARAM || rc == MFE_REG_ACCESS_BAD_PARAM) { return errmsg( "Flash write of %d bytes to address %s0x%x failed: %s\n" " This may indicate that a FW image was already updated on flash, but not loaded by the device.\n" " Please load FW on the device (reset device or reboot machine) before burning a new FW.", chunk_size, _log2_chunk_size ? "physical " : "", chunk_addr, mf_err2str(rc)); } else { return errmsg("Flash write of %d bytes to address %s0x%x failed: %s", chunk_size, _log2_chunk_size ? "physical " : "", chunk_addr, mf_err2str(rc)); } } // Loop advance p += chunk_size; } return true; } //////////////////////////////////////////////////////////////////////// bool Flash::write(u_int32_t addr, u_int32_t data) { u_int32_t word = 0; if (!_mfl) { return errmsg("Not opened"); } if (addr & 0x3) { return errmsg("Address should be 4-bytes aligned."); } if (!read(addr, &word)) { return false; } if (word == data) { return true; // already there } return write_sector_with_erase(addr, &data, 4); } bool Flash::write_sector_with_erase(u_int32_t addr, void* data, int cnt) { u_int32_t sector_size = get_current_sector_size(); u_int32_t sector_mask = ~(sector_size - 1); u_int32_t sector = addr & sector_mask; u_int32_t offest_in_bytes = (addr & ~sector_mask); u_int32_t word_in_sector = offest_in_bytes / sizeof(u_int32_t); if (offest_in_bytes + cnt > sector_size) { return errmsg("data exceeds current sector"); } vector buff(sector_size / sizeof(u_int32_t)); if (!read(sector, &buff[0], sector_size)) { return false; } if (!erase_sector(sector)) { return false; } memcpy(&buff[word_in_sector], data, cnt); // no need to erase twice noerase=true return write(sector, &buff[0], sector_size, true); } bool Flash::write_with_erase(u_int32_t addr, void* data, int cnt) { u_int32_t towrite = (u_int32_t)cnt; u_int32_t currSize; u_int32_t currAddr = addr; u_int32_t alreadyWritten = 0; u_int32_t sizeUntillEndOfSector = 0; u_int32_t sector_size = get_current_sector_size(); while (towrite > 0) { sizeUntillEndOfSector = sector_size - (currAddr & (sector_size - 1)); currSize = towrite > sizeUntillEndOfSector ? sizeUntillEndOfSector : towrite; if (!write_sector_with_erase(currAddr, ((u_int8_t*)data + alreadyWritten), currSize)) { return false; } towrite -= currSize; currAddr += currSize; alreadyWritten += currSize; } return true; } bool Flash::erase_sector(u_int32_t addr) { int rc; u_int32_t phys_addr = cont2phys(addr); mft_signal_set_handling(1); if (_flash_working_mode == Flash::Fwm_4KB) { rc = mf_erase_4k_sector(_mfl, phys_addr); } else if (_flash_working_mode == Flash::Fwm_64KB) { rc = mf_erase_64k_sector(_mfl, phys_addr); } else { rc = mf_erase(_mfl, phys_addr); } deal_with_signal(); if (rc != MFE_OK) { if (rc == MFE_REG_ACCESS_RES_NOT_AVLBL || rc == MFE_REG_ACCESS_BAD_PARAM) { return errmsg( "Flash erase of address 0x%x failed: %s\n" " This may indicate that a FW image was already updated on flash, but not loaded by the device.\n" " Please load FW on the device (reset device or restart driver) before burning a new FW.", phys_addr, mf_err2str(rc)); } else { return errmsg("Flash erase of address 0x%x failed: %s", phys_addr, mf_err2str(rc)); } } return true; } bool Flash::enable_hw_access(u_int64_t key) { int rc; rc = mf_enable_hw_access(_mfl, key); if (rc != MFE_OK) { return errmsg("Enable HW access failed: %s", mf_err2str(rc)); } return true; } bool Flash::is_fifth_gen() { return mf_is_fifth_gen(_mfl); } bool Flash::disable_hw_access(void) { int rc; rc = mf_disable_hw_access(_mfl); if (rc != MFE_OK) { return errmsg("Disable HW access failed: %s", mf_err2str(rc)); } return true; } bool Flash::disable_hw_access(u_int64_t key) { int rc; rc = mf_disable_hw_access_with_key(_mfl, key); if (rc != MFE_OK) { return errmsg("Disable HW access failed: %s", mf_err2str(rc)); } return true; } bool Flash::get_attr(ext_flash_attr_t& attr) { int rc = 0; rc = (MfError)mf_get_jedec_id(_mfl, &attr.jedec_id); if (rc != MFE_OK) { return errmsg("%s (%s)", errno == 0 ? "" : strerror(errno), mf_err2str(rc)); } attr.banks_num = _attr.banks_num; attr.hw_dev_id = _attr.hw_dev_id; attr.rev_id = _attr.rev_id; if (_attr.type_str != NULL) { // we don't print the flash type in old devices int type_str_len = strlen(_attr.type_str); attr.type_str = strncpy(new char[type_str_len + 1], _attr.type_str, type_str_len); attr.type_str[type_str_len] = '\0'; } attr.size = _attr.size; attr.sector_size = _attr.sector_size; attr.block_write = _attr.block_write; attr.command_set = _attr.command_set; attr.quad_en_support = _attr.quad_en_support; attr.driver_strength_support = _attr.driver_strength_support; attr.dummy_cycles_support = _attr.dummy_cycles_support; // Quad EN query if (_attr.quad_en_support) { attr.mf_get_quad_en_rc = (MfError)mf_get_quad_en(_mfl, &attr.quad_en); } // Drive-strength query if (_attr.driver_strength_support) { attr.mf_get_driver_strength_rc = (MfError)mf_get_driver_strength(_mfl, &attr.driver_strength); } // Dummy Cycles query if (_attr.dummy_cycles_support) { attr.mf_get_dummy_cycles_rc = (MfError)mf_get_dummy_cycles(_mfl, &attr.dummy_cycles); } // Flash write protected info query attr.write_protect_support = _attr.write_protect_support; if (_attr.write_protect_support) { int bank; for (bank = 0; bank < _attr.banks_num; bank++) { attr.mf_get_write_protect_rc_array[bank] = (MfError)mf_get_write_protect(_mfl, bank, &attr.protect_info_array[bank]); } } return true; } const char* Flash::getFlashType() { if (_attr.type_str != NULL) { return _attr.type_str; } return (const char*)NULL; } #define GET_IN_PARAM(param_in, out, first_op, second_op) \ { \ if (!strcmp(param_in, first_op)) \ { \ out = 1; \ } \ else if (!strcmp(param_in, second_op)) \ { \ out = 0; \ } \ else \ { \ return errmsg("bad argument (%s) it can be " first_op " or " second_op "", param_in); \ } \ } bool Flash::set_attr(char* param_name, char* param_val_str) { int rc; // TODO: make generic function that sets params if (!strcmp(param_name, QUAD_EN_PARAM)) { char* endp; u_int8_t quad_en_val; quad_en_val = strtoul(param_val_str, &endp, 0); if (*endp != '\0' || quad_en_val > 1) { return errmsg("Bad " QUAD_EN_PARAM " value (%s), it can be 0 or 1\n", param_val_str); } rc = mf_set_quad_en(_mfl, quad_en_val); if (rc != MFE_OK) { return errmsg("Setting " QUAD_EN_PARAM " failed: (%s)", mf_err2str(rc)); } } else if (!strcmp(param_name, DUMMY_CYCLES_PARAM)) { char* endp; u_int8_t dummy_cycles_val; dummy_cycles_val = strtoul(param_val_str, &endp, 0); if (*endp != '\0' || dummy_cycles_val < 1 || dummy_cycles_val > 15) { // value is actually [0.15] but val=0 and val=15 indicate default state (thus they are the same so no need // for both values to be accepted) return errmsg("Bad " DUMMY_CYCLES_PARAM " value (%s), it can be [1..15]\n", param_val_str); } rc = mf_set_dummy_cycles(_mfl, dummy_cycles_val); if (rc != MFE_OK) { return errmsg("Setting " DUMMY_CYCLES_PARAM " failed: (%s)", mf_err2str(rc)); } } else if (strstr(param_name, FLASH_NAME) == param_name) { char *flash_param, *param_str, *endp, *bank_num_str; u_int8_t bank_num; flash_param = strtok(param_name, "."); param_str = strtok((char*)NULL, "."); bank_num_str = flash_param + strlen(FLASH_NAME); bank_num = strtoul(bank_num_str, &endp, 0); if (*endp != '\0') { return errmsg("bad number of flash bank (%s), it should be integer!.", bank_num_str); } if (!strcmp(param_str, WRITE_PROTECT)) { write_protect_info_t protect_info; char *tb, *num_str, *sec; if (!strcmp(param_val_str, WP_DISABLED_STR)) { memset(&protect_info, 0, sizeof(protect_info)); } else { tb = strtok(param_val_str, ","); num_str = strtok((char*)NULL, "-"); sec = strtok((char*)NULL, ""); if (tb == NULL || num_str == NULL || sec == NULL) { return errmsg("missing parameters for setting the " WRITE_PROTECT " attribute, see help for more info."); } GET_IN_PARAM(tb, protect_info.is_bottom, WP_BOTTOM_STR, WP_TOP_STR); GET_IN_PARAM(sec, protect_info.is_subsector, WP_SUBSEC_STR, WP_SEC_STR); protect_info.sectors_num = strtoul(num_str, &endp, 0); if (*endp != '\0') { return errmsg("bad argument (%s), only integer value is allowed.", num_str); } if (!protect_info.sectors_num) { return errmsg("Invalid sectors number, Use \"Disabled\" instead."); } } rc = mf_set_write_protect(_mfl, bank_num, &protect_info); if (rc != MFE_OK) { return errmsg("Setting " WRITE_PROTECT " failed: (%s)", mf_err2str(rc)); } } else { return errmsg("Unknown attribute %s.%s", flash_param, param_str); } } else if (!strcmp(param_name, DRIVER_STRENGTH_PARAM)) { char* endp; u_int8_t driver_strength_val; driver_strength_val = strtoul(param_val_str, &endp, 0); if (*endp != '\0' || (driver_strength_val != 25 && driver_strength_val != 50 && driver_strength_val != 75 && driver_strength_val != 100)) { return errmsg("Bad " DRIVER_STRENGTH_PARAM " value (%s), it can be [25,50,75,100]\n", param_val_str); } rc = mf_set_driver_strength(_mfl, driver_strength_val); if (rc != MFE_OK) { return errmsg("Setting " DRIVER_STRENGTH_PARAM " failed: (%s)", mf_err2str(rc)); } } else { return errmsg("Unknown attribute %s", param_name); } return true; } bool Flash::is_flash_write_protected() { int bank; int rc; write_protect_info_t protect_info; memset(&protect_info, 0x0, sizeof(protect_info)); if (_attr.write_protect_support) { for (bank = 0; bank < _attr.banks_num; bank++) { rc = mf_get_write_protect(_mfl, bank, &protect_info); if (rc == MFE_OK && protect_info.sectors_num != 0) { return true; } else { if (rc && rc != MFE_NOT_SUPPORTED_OPERATION) { // We ignore when operation is not supported return true; } } } } return false; } void Flash::deal_with_signal() { #ifndef UEFI_BUILD int sig; sig = mft_signal_is_fired(); if (sig) { // reset received signal mft_signal_set_fired(0); // retore prev handler mft_signal_set_handling(0); // raise signal to let the previous handle deal with it. raise(sig); } mft_signal_set_handling(0); #endif return; } #define FLINT_ERASE_SIZE_HOOK "FLINT_ERASE_SIZE" bool Flash::set_flash_working_mode(int mode) { if (!_attr.support_sub_and_sector && mode != Flash::Fwm_Default) { return errmsg("Changing Flash IO working mode not supported."); } // Verification Hook if (_attr.support_sub_and_sector) { char* flint_io_env = getenv(FLINT_ERASE_SIZE_HOOK); if (flint_io_env) { int num = strtoul(flint_io_env, (char**)NULL, 0); if (num == 0x1000 || num == 0x10000) { _curr_sector_size = (u_int32_t)num; _flash_working_mode = _curr_sector_size == 0x1000 ? Flash::Fwm_4KB : Flash::Fwm_64KB; _curr_sector = _curr_sector & ~(_curr_sector_size - 1); return true; } } } // Verification Hook end if (mode == Flash::Fwm_Default) { _curr_sector_size = _attr.sector_size; _flash_working_mode = Flash::Fwm_Default; } else if (mode == Flash::Fwm_4KB) { _curr_sector_size = 0x1000; _flash_working_mode = Flash::Fwm_4KB; } else if (mode == Flash::Fwm_64KB) { _curr_sector_size = 0x10000; _flash_working_mode = Flash::Fwm_64KB; } else { return errmsg("Unknown Flash IO working mode: 0x%x", mode); } _curr_sector = _curr_sector & ~(_curr_sector_size - 1); return true; } bool Flash::set_flash_utilization(bool is_applied, int percent) { _cputUtilizationApplied = is_applied; _cpuPercent = percent; return true; } u_int32_t Flash::get_effective_size() { u_int32_t effective_size = get_size(); dm_dev_id_t dm_dev_id = mf_get_dm_dev_id(_mfl); if ((dm_dev_id == DeviceConnectX4LX || dm_dev_id == DeviceConnectX5) && _attr.vendor == FV_GD25QXXX) { effective_size = 1 << FD_128; // 16MB } return effective_size; } mstflint-4.26.0/mlxfwops/lib/fs3_ops.cpp0000644000175000017500000046734314522641732020431 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #ifdef MST_UL #include #ifndef CONNECTX4LX_NV_DATA_SIZE #define CONNECTX4LX_NV_DATA_SIZE (0x10000) #endif #else #include "connectx4lx_layouts.h" #include "cx4fw_layouts.h" #ifndef UEFI_BUILD #include #endif #endif #if !defined(UEFI_BUILD) #include "mad_ifc/mad_ifc.h" #include #include #if !defined(NO_OPEN_SSL) #include #include #include #endif #if !defined(NO_CS_CMD) #include #endif #endif #include "fs3_ops.h" #define FS3_LOG_CHUNK_SIZE 21 /* fs4 use the same itoc signatures, please double check */ const u_int32_t Fs3Operations::_itocSignature[4] = {ITOC_ASCII, /* Ascii of "MTFW" */ TOC_RAND1, /* Random data */ TOC_RAND2, TOC_RAND3}; const Fs3Operations::SectionInfo Fs3Operations::_fs3SectionsInfoArr[] = { {FS3_END, "END"}, {FS3_ITOC, "ITOC_HEADER"}, {FS3_BOOT_CODE, "BOOT_CODE"}, {FS3_PCI_CODE, "PCI_CODE"}, {FS3_MAIN_CODE, "MAIN_CODE"}, {FS3_PCIE_LINK_CODE, "PCIE_LINK_CODE"}, {FS3_IRON_PREP_CODE, "IRON_PREP_CODE"}, {FS3_POST_IRON_BOOT_CODE, "POST_IRON_BOOT_CODE"}, {FS3_UPGRADE_CODE, "UPGRADE_CODE"}, {FS3_HW_BOOT_CFG, "HW_BOOT_CFG"}, {FS3_HW_MAIN_CFG, "HW_MAIN_CFG"}, {FS3_PHY_UC_CODE, "PHY_UC_CODE"}, {FS3_PHY_UC_CONSTS, "PHY_UC_CONSTS"}, {FS3_PCIE_PHY_UC_CODE, "PCIE_PHY_UC_CODE"}, {FS3_CCIR_INFRA_CODE, "CCIR_INFRA_CODE"}, {FS3_CCIR_ALGO_CODE, "CCIR_ALGO_CODE"}, {FS4_BOOT3_CODE, "BOOT3_CODE"}, {FS3_IMAGE_INFO, "IMAGE_INFO"}, {FS3_FW_BOOT_CFG, "FW_BOOT_CFG"}, {FS3_FW_MAIN_CFG, "FW_MAIN_CFG"}, {FS3_APU_KERNEL, "APU_KERNEL"}, {FS3_ACE_CODE, "ACE_CODE"}, {FS3_ROM_CODE, "ROM_CODE"}, {FS3_RESET_INFO, "RESET_INFO"}, {FS3_DBG_FW_INI, "DBG_FW_INI"}, {FS3_DBG_FW_PARAMS, "DBG_FW_PARAMS"}, {FS3_FW_ADB, "FW_ADB"}, {FS4_GB_FW_CODE, "GB_FW_CODE"}, {FS4_TILE_FW_CODE, "TILE_FW_CODE"}, {FS4_FW_TILE_INI, "FW_TILE_INI"}, {FS4_HW_TILE_INI, "HW_TILE_INI"}, {FS3_IMAGE_SIGNATURE_256, "IMAGE_SIGNATURE_256"}, {FS3_PUBLIC_KEYS_2048, "PUBLIC_KEYS_2048"}, {FS3_PUBLIC_KEYS_4096, "PUBLIC_KEYS_4096"}, {FS3_FORBIDDEN_VERSIONS, "FORBIDDEN_VERSIONS"}, {FS3_IMAGE_SIGNATURE_512, "IMAGE_SIGNATURE_512"}, {FS3_CRDUMP_MASK_DATA, "CRDUMP_MASK_DATA"}, {FS3_HMAC_DIGEST, "HMAC_DIGEST"}, {FS3_MFG_INFO, MFG_INFO}, {FS3_DEV_INFO, DEV_INFO}, {FS3_NV_DATA1, "NV_DATA"}, {FS3_VPD_R0, "VPD_R0"}, {FS3_NV_DATA2, "NV_DATA"}, {FS3_FW_NV_LOG, "FW_NV_LOG"}, {FS3_NV_DATA0, "NV_DATA"}, {FS4_DEV_INFO1, "DEV_INFO1"}, {FS4_DEV_INFO2, "DEV_INFO2"}, {FS4_FW_INTERNAL_USAGE, "FW_INTERNAL_USAGE"}, {FS4_PROGRAMMABLE_HW_FW1, "PROGRAMMABLE_HW_FW"}, {FS4_PROGRAMMABLE_HW_FW2, "PROGRAMMABLE_HW_FW"}, {FS4_DIGITAL_CERT_PTR, "DIGITAL_CERT_PTR"}, {FS4_DIGITAL_CERT_RW, "DIGITAL_CERT_RW"}, {FS4_LC_INI1_TABLE, "LC_INI1_TABLE"}, {FS4_LC_INI2_TABLE, "LC_INI2_TABLE"}, {FS4_LC_INI_NV_DATA, "LC_INI_NV_DATA"}, {FS4_CERT_CHAIN_0, "CERT_CHAIN_0"}, {FS4_DIGITAL_CACERT_RW, "DIGITAL_CACERT_RW"}, {FS4_CERTIFICATE_CHAINS_1, "CERTIFICATE_CHAINS_1"}, {FS4_CERTIFICATE_CHAINS_2, "CERTIFICATE_CHAINS_2"}, {FS4_ROOT_CERTIFICATES_1, "ROOT_CERTIFICATES_1"}, {FS4_ROOT_CERTIFICATES_2, "ROOT_CERTIFICATES_2"}, {FS3_DTOC, "DTOC_HEADER"}, {FS4_HW_PTR, "HW_POINTERS"}, {FS4_TOOLS_AREA, "TOOLS_AREA"}, {FS4_RSA_PUBLIC_KEY, "RSA_PUBLIC_KEY"}, {FS4_RSA_4096_SIGNATURES, "RSA_4096_SIGNATURES"}, {FS4_EXCLKSYNC_INFO, "EXCLKSYNC_INFO"}, {FS4_MAIN_HASHES_PAGES, "MAIN_HASHES_PAGES"}, {FS4_MAIN_LOCKED_HASHES_PAGES, "MAIN_LOCKED_HASHES_PAGES"}, {FS4_HASHES_TABLE, "HASHES_TABLE"}}; bool Fs3Operations::Fs3UpdateImgCache(u_int8_t* buff, u_int32_t addr, u_int32_t size) { DPRINTF(("Fs3Operations::Fs3UpdateImgCache\n")); if (size == 0) { return true; } _imageCache.add(buff, addr, size); return true; } bool Fs3Operations::UpdateImgCache(u_int8_t* buff, u_int32_t addr, u_int32_t size) { return Fs3UpdateImgCache(buff, addr, size); } const char* Fs3Operations::GetSectionNameByType(u_int8_t section_type) { for (u_int32_t i = 0; i < ARR_SIZE(_fs3SectionsInfoArr); i++) { const SectionInfo* sect_info = &_fs3SectionsInfoArr[i]; if (sect_info->type == section_type) { return sect_info->name; } } return UNKNOWN_SECTION; } bool Fs3Operations::GetSectionSizeAndOffset(fs3_section_t sectType, u_int32_t& size, u_int32_t& offset) { for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { struct cibfw_itoc_entry* tocEntry = &_fs3ImgInfo.tocArr[i].toc_entry; if (tocEntry->type == sectType) { size = tocEntry->size << 2; offset = tocEntry->flash_addr << 2; return true; } } return false; } bool Fs3Operations::DumpFs3CRCCheck(u_int8_t sect_type, u_int32_t sect_addr, u_int32_t sect_size, u_int32_t crc_act, u_int32_t crc_exp, bool ignore_crc, VerifyCallBack verifyCallBackFunc) { char pr[256]; const char* sect_type_str = GetSectionNameByType(sect_type); sprintf(pr, CRC_CHECK_OLD, PRE_CRC_OUTPUT, sect_addr, sect_addr + sect_size - 1, sect_size, sect_type_str); if (!strcmp(sect_type_str, UNKNOWN_SECTION)) { sprintf(pr + strlen(pr), ":0x%x", sect_type); } sprintf(pr + strlen(pr), ")"); return CheckAndPrintCrcRes(pr, 0, sect_addr, crc_exp, crc_act, ignore_crc, verifyCallBackFunc); } bool Fs3Operations::CheckTocSignature(struct cibfw_itoc_header* itoc_header, u_int32_t first_signature) { if ((itoc_header->signature0 != first_signature) || (itoc_header->signature1 != TOC_RAND1) || (itoc_header->signature2 != TOC_RAND2) || (itoc_header->signature3 != TOC_RAND3)) { return false; } return true; } #define CHECK_UID_STRUCTS_SIZE(uids_context, cibfw_guids_context) \ { \ if (sizeof(uids_context) != sizeof(cibfw_guids_context)) \ { \ return errmsg( \ "Internal error: Size of uids_t (%d) is not equal to size of struct cibfw_guids guids (%d)\n", \ (int)sizeof(uids_context), (int)sizeof(cibfw_guids_context)); \ } \ } #define CHECK_MFG_NEW_FORMAT(mfg_st) (mfg_st.major_version == 1) #define CHECK_MFG_OLD_FORMAT(mfg_st) (mfg_st.major_version == 0) bool Fs3Operations::GetMfgInfo(u_int8_t* buff) { // structs of the same size we can unpack either way struct cibfw_mfg_info cib_mfg_info; image_layout_mfg_info mfg_info; cibfw_mfg_info_unpack(&cib_mfg_info, buff); // cibfw_mfg_info_dump(&mfg_info, stdout); if (IsExtendedGuidNumSupported() || CHECK_MFG_NEW_FORMAT(cib_mfg_info)) { image_layout_mfg_info_unpack(&mfg_info, buff); CHECK_UID_STRUCTS_SIZE(_fs3ImgInfo.ext_info.orig_fs3_uids_info.image_layout_uids, mfg_info.guids); memcpy(&_fs3ImgInfo.ext_info.orig_fs3_uids_info.image_layout_uids, &mfg_info.guids, sizeof(mfg_info.guids)); strcpy(_fs3ImgInfo.ext_info.orig_psid, mfg_info.psid); _fs3ImgInfo.ext_info.guids_override_en = mfg_info.guids_override_en; _fs3ImgInfo.ext_info.orig_fs3_uids_info.valid_field = 1; } else if (CHECK_MFG_OLD_FORMAT(cib_mfg_info)) { CHECK_UID_STRUCTS_SIZE(_fs3ImgInfo.ext_info.orig_fs3_uids_info.cib_uids, cib_mfg_info.guids); memcpy(&_fs3ImgInfo.ext_info.orig_fs3_uids_info.cib_uids, &cib_mfg_info.guids, sizeof(cib_mfg_info.guids)); strcpy(_fs3ImgInfo.ext_info.orig_psid, cib_mfg_info.psid); _fs3ImgInfo.ext_info.guids_override_en = cib_mfg_info.guids_override_en; _fs3ImgInfo.ext_info.orig_fs3_uids_info.valid_field = 0; } else { return errmsg(MLXFW_UNKNOWN_SECT_VER_ERR, "Unknown MFG_INFO format version (%d.%d).", cib_mfg_info.major_version, cib_mfg_info.minor_version); } if (cib_mfg_info.minor_version == 1) { // get orig_prs name struct tools_open_mfg_info tools_mfg_info; memset(&tools_mfg_info, 0, sizeof(tools_mfg_info)); tools_open_mfg_info_unpack(&tools_mfg_info, buff); strncpy(_fs3ImgInfo.ext_info.orig_prs_name, tools_mfg_info.orig_prs_name, FS3_PRS_NAME_LEN); _fs3ImgInfo.ext_info.orig_prs_name[FS3_PRS_NAME_LEN - 1] = '\0'; } return true; } bool Fs3Operations::GetImageInfo(u_int8_t* buff) { DPRINTF(("Fs3Operations::GetImageInfo\n")); struct image_layout_image_info image_info; image_layout_image_info_unpack(&image_info, buff); /* image_layout_image_info_dump(&image_info, stdout); */ if (image_info.major_version != 0) { return errmsg(MLXFW_UNKNOWN_SECT_VER_ERR, "Unknown IMAGE_INFO format version (%d.%d).", image_info.major_version, image_info.minor_version); } _fwImgInfo.ext_info.image_info_minor_version = image_info.minor_version; _fwImgInfo.ext_info.image_info_major_version = image_info.major_version; _fwImgInfo.ext_info.fw_ver[0] = image_info.FW_VERSION.MAJOR; _fwImgInfo.ext_info.fw_ver[1] = image_info.FW_VERSION.MINOR; _fwImgInfo.ext_info.fw_ver[2] = image_info.FW_VERSION.SUBMINOR; _fwImgInfo.ext_info.isfu_major = image_info.module_versions.mad.major; _fwImgInfo.ext_info.mic_ver[0] = image_info.mic_version.MAJOR; _fwImgInfo.ext_info.mic_ver[1] = image_info.mic_version.MINOR; _fwImgInfo.ext_info.mic_ver[2] = image_info.mic_version.SUBMINOR; _fwImgInfo.ext_info.fw_rel_date[0] = (u_int16_t)image_info.FW_VERSION.Day; _fwImgInfo.ext_info.fw_rel_date[1] = (u_int16_t)image_info.FW_VERSION.Month; _fwImgInfo.ext_info.fw_rel_date[2] = (u_int16_t)image_info.FW_VERSION.Year; _fwImgInfo.ext_info.fw_rel_time[0] = (u_int16_t)image_info.FW_VERSION.Hour; _fwImgInfo.ext_info.fw_rel_time[1] = (u_int16_t)image_info.FW_VERSION.Minutes; _fwImgInfo.ext_info.fw_rel_time[2] = (u_int16_t)image_info.FW_VERSION.Seconds; _fwImgInfo.ext_info.burn_image_size = image_info.burn_image_size; /* assuming number of supported_hw_id < MAX_NUM_SUPP_HW_IDS */ memcpy(_fwImgInfo.supportedHwId, image_info.supported_hw_id, sizeof(image_info.supported_hw_id)); _fwImgInfo.supportedHwIdNum = (sizeof(image_info.supported_hw_id)) / sizeof(image_info.supported_hw_id[0]); _fwImgInfo.ext_info.pci_device_id = image_info.pci_device_id; strcpy(_fs3ImgInfo.ext_info.image_vsd, image_info.vsd); strcpy(_fwImgInfo.ext_info.psid, image_info.psid); strcpy(_fwImgInfo.ext_info.product_ver, image_info.prod_ver); /* get name, prs name and description */ if (image_info.minor_version == 2) { struct tools_open_image_info tools_image_info; memset(&tools_image_info, 0, sizeof(tools_image_info)); tools_open_image_info_unpack(&tools_image_info, buff); strncpy(_fs3ImgInfo.ext_info.name, tools_image_info.name, strlen(tools_image_info.name)); strncpy(_fs3ImgInfo.ext_info.description, tools_image_info.description, strlen(tools_image_info.description)); strncpy(_fs3ImgInfo.ext_info.prs_name, tools_image_info.prs_name, strlen(tools_image_info.prs_name)); } else if (image_info.minor_version == 3) { strncpy(_fs3ImgInfo.ext_info.name, image_info.name, strlen(image_info.name)); strncpy(_fs3ImgInfo.ext_info.description, image_info.description, strlen(image_info.description)); strncpy(_fs3ImgInfo.ext_info.prs_name, image_info.prs_name, strlen(image_info.prs_name)); } _fs3ImgInfo.ext_info.mcc_en = image_info.mcc_en; _fs3ImgInfo.ext_info.security_mode = (_fs3ImgInfo.ext_info.security_mode | ((image_info.mcc_en == 1) ? SMM_MCC_EN : 0) | ((image_info.debug_fw == 1) ? SMM_DEBUG_FW : 0) | ((image_info.signed_fw == 1) ? SMM_SIGNED_FW : 0) | ((image_info.secure_fw == 1) ? SMM_SECURE_FW : 0)); _fs3ImgInfo.runFromAny = image_info.image_size.run_from_any; const u_int32_t* swId = (u_int32_t*)NULL; DPRINTF(("Fs3Operations::GetImageInfo _fwImgInfo.supportedHwId[0]=0x%x\n", _fwImgInfo.supportedHwId[0])); if (!getInfoFromHwDevid(_fwImgInfo.supportedHwId[0], _fwImgInfo.ext_info.chip_type, &swId)) { return false; } /* copy the vsd to the branch ver only for switches. Not valid for NICs. */ if (!IS_HCA(_fwImgInfo.ext_info.chip_type)) { if (VerifyBranchFormat(image_info.vsd)) { strncpy(_fwImgInfo.ext_info.branch_ver, image_info.vsd, BRANCH_LEN); _fwImgInfo.ext_info.branch_ver[BRANCH_LEN - 1] = '\0'; } } _fwImgInfo.ext_info.encrypted_fw = image_info.encrypted_fw; _fs3ImgInfo.ext_info.dev_sec_boot = image_info.secure_boot; /* This field is set to '1' only for DK (dev keys) IPNs */ return true; } bool Fs3Operations::GetImgSigInfo(u_int32_t keypair_uuid[4]) { _signatureExists = 1; if (((keypair_uuid[0] != 0) || (keypair_uuid[1] != 0) || (keypair_uuid[2] != 0)) && (keypair_uuid[3] == 0) && ((EXTRACT(keypair_uuid[2], 0, 16)) == 0)) { _fs3ImgInfo.ext_info.security_mode = (_fs3ImgInfo.ext_info.security_mode | SMM_DEV_FW); } return true; } bool Fs3Operations::GetImgSigInfo256(u_int8_t* buff) { struct image_layout_image_signature fwSignature; image_layout_image_signature_unpack(&fwSignature, buff); /* cx4fw_image_signature_dump(&fwSignature, stdout); */ return GetImgSigInfo(fwSignature.keypair_uuid); } bool Fs3Operations::GetImgSigInfo512(u_int8_t* buff) { struct image_layout_image_signature_2 fwSignature; image_layout_image_signature_2_unpack(&fwSignature, buff); return GetImgSigInfo(fwSignature.keypair_uuid); } #define CHECK_DEV_INFO_NEW_FORMAT(info_st) (info_st.major_version == 2) #define CHECK_DEV_INFO_OLD_FORMAT(info_st) (info_st.major_version == 1) bool Fs3Operations::GetDevInfo(u_int8_t* buff) { struct cibfw_device_info cib_dev_info; image_layout_device_info device_info; // same size, we can unpack to check version cibfw_device_info_unpack(&cib_dev_info, buff); // cibfw_device_info_dump(&dev_info, stdout); if (IsExtendedGuidNumSupported() || CHECK_DEV_INFO_NEW_FORMAT(cib_dev_info)) { image_layout_device_info_unpack(&device_info, buff); CHECK_UID_STRUCTS_SIZE(_fs3ImgInfo.ext_info.fs3_uids_info.image_layout_uids, device_info.guids); memcpy(&_fs3ImgInfo.ext_info.fs3_uids_info.image_layout_uids, &device_info.guids, sizeof(device_info.guids)); strcpy(_fwImgInfo.ext_info.vsd, device_info.vsd); _fs3ImgInfo.ext_info.fs3_uids_info.valid_field = 1; _fwImgInfo.ext_info.vsd_sect_found = true; } else if (CHECK_DEV_INFO_OLD_FORMAT(cib_dev_info)) { CHECK_UID_STRUCTS_SIZE(_fs3ImgInfo.ext_info.fs3_uids_info.cib_uids, cib_dev_info.guids); memcpy(&_fs3ImgInfo.ext_info.fs3_uids_info.cib_uids, &cib_dev_info.guids, sizeof(cib_dev_info.guids)); strcpy(_fwImgInfo.ext_info.vsd, cib_dev_info.vsd); _fs3ImgInfo.ext_info.fs3_uids_info.valid_field = 0; _fwImgInfo.ext_info.vsd_sect_found = true; } else { return errmsg(MLXFW_UNKNOWN_SECT_VER_ERR, "Unknown DEV_INFO format version (%d.%d).", cib_dev_info.major_version, cib_dev_info.minor_version); } return true; } bool Fs3Operations::GetRomInfo(u_int8_t* buff, u_int32_t size) { TOCPUn(buff, size / 4); /* update _romSect buff */ GetSectData(_romSect, (u_int32_t*)buff, size); /* parse rom Info and fill rom_info struct */ RomInfo rInfo(_romSect); rInfo.ParseInfo(); rInfo.initRomsInfo(&_fwImgInfo.ext_info.roms_info); return true; } bool Fs3Operations::GetImageInfoFromSection(u_int8_t* buff, u_int8_t sect_type, u_int32_t sect_size, u_int8_t check_support_only) { DPRINTF( ("Fs3Operations::GetImageInfoFromSection sect_type (%s:0x%x)\n", GetSectionNameByType(sect_type), sect_type)); #define EXEC_GET_INFO_OR_GET_SUPPORT(get_info_func, buff, check_support_only) \ (check_support_only) ? true : get_info_func(buff); switch (sect_type) { case FS3_MFG_INFO: return EXEC_GET_INFO_OR_GET_SUPPORT(GetMfgInfo, buff, check_support_only); case FS3_IMAGE_INFO: return EXEC_GET_INFO_OR_GET_SUPPORT(GetImageInfo, buff, check_support_only); case FS3_DEV_INFO: return EXEC_GET_INFO_OR_GET_SUPPORT(GetDevInfo, buff, check_support_only); case FS3_IMAGE_SIGNATURE_256: return EXEC_GET_INFO_OR_GET_SUPPORT(GetImgSigInfo256, buff, check_support_only); case FS3_IMAGE_SIGNATURE_512: return EXEC_GET_INFO_OR_GET_SUPPORT(GetImgSigInfo512, buff, check_support_only); case FS3_ROM_CODE: return check_support_only ? true : GetRomInfo(buff, sect_size); case FS3_PUBLIC_KEYS_2048: case FS3_PUBLIC_KEYS_4096: _publicKeysExists = 1; break; default: break; } if (check_support_only) { return false; } return errmsg("Getting info from section type (%s:%d) is not supported\n", GetSectionNameByType(sect_type), sect_type); } bool Fs3Operations::IsGetInfoSupported(u_int8_t sect_type) { return GetImageInfoFromSection((u_int8_t*)NULL, sect_type, 0, 1); } bool Fs3Operations::IsFs3SectionReadable(u_int8_t type, QueryOptions queryOptions) { /* printf("-D- readSectList.size %d\n", (int) _readSectList.size()); */ if (_readSectList.size()) { for (u_int32_t i = 0; i < _readSectList.size(); i++) { if (_readSectList.at(i) == type) { return true; } } return false; } else { if (!queryOptions.readRom && (type == FS3_ROM_CODE)) { return false; } if (queryOptions.quickQuery) { if (IsGetInfoSupported(type)) { return true; } return false; } } return true; } bool Fs3Operations::VerifyTOC(u_int32_t dtoc_addr, bool& bad_signature, VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc, bool verbose) { DPRINTF(("Fs3Operations::VerifyTOC\n")); u_int8_t buffer[TOC_HEADER_SIZE], entry_buffer[TOC_ENTRY_SIZE]; struct cibfw_itoc_header itoc_header; bool ret_val = true, mfg_exists = false; u_int32_t phys_addr; bad_signature = false; /* Read the sigmature and check it */ READBUF((*_ioAccess), dtoc_addr, buffer, TOC_HEADER_SIZE, "TOC Header"); Fs3UpdateImgCache(buffer, dtoc_addr, TOC_HEADER_SIZE); cibfw_itoc_header_unpack(&itoc_header, buffer); memcpy(_fs3ImgInfo.itocHeader, buffer, CIBFW_ITOC_HEADER_SIZE); /* cibfw_itoc_header_dump(&itoc_header, stdout); */ u_int32_t first_signature = ITOC_ASCII; if (!CheckTocSignature(&itoc_header, first_signature)) { bad_signature = true; return false; } u_int32_t toc_crc = CalcImageCRC((u_int32_t*)buffer, (TOC_HEADER_SIZE / 4) - 1); phys_addr = _ioAccess->get_phys_from_cont(dtoc_addr, _fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); if (!DumpFs3CRCCheck(FS3_ITOC, phys_addr, TOC_HEADER_SIZE, toc_crc, itoc_header.itoc_entry_crc, false, verifyCallBackFunc)) { ret_val = false; } _fs3ImgInfo.itocAddr = dtoc_addr; int section_index = 0; struct cibfw_itoc_entry toc_entry; do { /* Uopdate the cont address */ _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); u_int32_t entry_addr = dtoc_addr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; READBUF((*_ioAccess), entry_addr, entry_buffer, TOC_ENTRY_SIZE, "TOC Entry"); Fs3UpdateImgCache(entry_buffer, entry_addr, TOC_ENTRY_SIZE); cibfw_itoc_entry_unpack(&toc_entry, entry_buffer); if (toc_entry.type == FS3_MFG_INFO) { mfg_exists = true; } /* printf("-D- toc = %#x, toc_entry.type = %#x\n", section_index, toc_entry.type); */ if (toc_entry.type != FS3_END) { if (section_index + 1 >= MAX_TOCS_NUM) { return errmsg("Internal error: number of ITOCs %d is greater than allowed %d", section_index + 1, MAX_TOCS_NUM); } u_int32_t entry_crc = CalcImageCRC((u_int32_t*)entry_buffer, (TOC_ENTRY_SIZE / 4) - 1); u_int32_t entry_size_in_bytes = toc_entry.size * 4; /* printf("-D- entry_crc = %#x, toc_entry.itoc_entry_crc = %#x\n", entry_crc, toc_entry.itoc_entry_crc); */ if (toc_entry.itoc_entry_crc != entry_crc) { if (_fwParams.ignoreCrcCheck) { printf("-W- Bad Itoc Entry CRC. Expected: 0x%x , Actual: 0x%x\n", toc_entry.itoc_entry_crc, entry_crc); } else { return errmsg(MLXFW_BAD_CRC_ERR, "Bad Itoc Entry CRC. Expected: 0x%x , Actual: 0x%x", toc_entry.itoc_entry_crc, entry_crc); } } /* Update last image address */ u_int32_t section_last_addr; u_int32_t flash_addr = toc_entry.flash_addr << 2; if (!toc_entry.relative_addr) { _ioAccess->set_address_convertor(0, 0); phys_addr = flash_addr; _fs3ImgInfo.smallestAbsAddr = (_fs3ImgInfo.smallestAbsAddr < flash_addr && _fs3ImgInfo.smallestAbsAddr > 0) ? _fs3ImgInfo.smallestAbsAddr : flash_addr; } else { phys_addr = _ioAccess->get_phys_from_cont(flash_addr, _fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); u_int32_t currSizeOfImgdata = phys_addr + entry_size_in_bytes; _fs3ImgInfo.sizeOfImgData = (_fs3ImgInfo.sizeOfImgData > currSizeOfImgdata) ? _fs3ImgInfo.sizeOfImgData : currSizeOfImgdata; } section_last_addr = phys_addr + entry_size_in_bytes; _fwImgInfo.lastImageAddr = (_fwImgInfo.lastImageAddr >= section_last_addr) ? _fwImgInfo.lastImageAddr : section_last_addr; if (IsFs3SectionReadable(toc_entry.type, queryOptions)) { if (ignoreDToc && toc_entry.device_data) { break; } /* Only when we have full verify or the info of this section should be collected for query */ std::vector buffv(entry_size_in_bytes); u_int8_t* buff = (u_int8_t*)(buffv.size() ? (&(buffv[0])) : NULL); if (show_itoc) { cibfw_itoc_entry_dump(&toc_entry, stdout); if (!DumpFs3CRCCheck(toc_entry.type, phys_addr, entry_size_in_bytes, 0, 0, true, verifyCallBackFunc)) { ret_val = false; } } else { if (!verbose) { READBUF((*_ioAccess), flash_addr, buff, entry_size_in_bytes, "Section"); } else { if (!(*_ioAccess).read(flash_addr, buff, entry_size_in_bytes, true, "Section")) { return errmsg("%s - read error (%s)\n", "Section", (*_ioAccess).err()); } } Fs3UpdateImgCache(buff, flash_addr, entry_size_in_bytes); u_int32_t sect_crc = CalcImageCRC((u_int32_t*)buff, toc_entry.size); /* printf("-D- flash_addr: %#x, toc_entry_size = %#x, actual sect = %#x, from itoc: %#x np_crc = */ /* %s\n", flash_addr, toc_entry.size, sect_crc, */ /* toc_entry.section_crc, toc_entry.no_crc ? "yes" : "no"); */ if (!DumpFs3CRCCheck(toc_entry.type, phys_addr, entry_size_in_bytes, sect_crc, toc_entry.section_crc, toc_entry.no_crc, verifyCallBackFunc)) { if (toc_entry.device_data) { _badDevDataSections = true; } ret_val = false; } else { /* printf("-D- toc type : 0x%.8x\n" , toc_entry.type); */ GetSectData(_fs3ImgInfo.tocArr[section_index].section_data, (u_int32_t*)buff, toc_entry.size * 4); if (IsGetInfoSupported(toc_entry.type)) { if (!GetImageInfoFromSection(buff, toc_entry.type, toc_entry.size * 4)) { ret_val = false; errmsg("Failed to get info from section %d, check the supported_hw_id section in " "MLX file!\n", toc_entry.type); } } else if (toc_entry.type == FS3_DBG_FW_INI) { TOCPUn(buff, toc_entry.size); GetSectData(_fwConfSect, (u_int32_t*)buff, toc_entry.size * 4); } } } } _fs3ImgInfo.tocArr[section_index].entry_addr = entry_addr; _fs3ImgInfo.tocArr[section_index].toc_entry = toc_entry; memcpy(_fs3ImgInfo.tocArr[section_index].data, entry_buffer, CIBFW_ITOC_ENTRY_SIZE); } section_index++; } while (toc_entry.type != FS3_END); _fs3ImgInfo.numOfItocs = section_index - 1; if (!ignoreDToc && !mfg_exists) { _badDevDataSections = true; return errmsg(MLXFW_NO_MFG_ERR, "No \"" MFG_INFO "\" info section."); } return ret_val; } bool Fs3Operations::FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage, bool showItoc, bool ignoreDToc) { /* dummy assignment to avoid compiler warrning (isStripedImage is not used in fs3) */ (void)isStripedImage; struct QueryOptions queryOptions; queryOptions.readRom = true; queryOptions.quickQuery = false; return FsVerifyAux(verifyCallBackFunc, showItoc, queryOptions, ignoreDToc); } bool Fs3Operations::FsVerifyAux(VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc, bool verbose) { DPRINTF(("Fs3Operations::FsVerifyAux\n")); u_int32_t cntx_image_start[CNTX_START_POS_SIZE] = {0}; u_int32_t cntx_image_num; u_int32_t buff[FS3_BOOT_START_IN_DW]; u_int32_t offset; u_int8_t binVerMajor = 0, binVerMinor = 0; bool bad_signature; FindAllImageStart(_ioAccess, cntx_image_start, &cntx_image_num, _cntx_magic_pattern); if (cntx_image_num == 0) { return errmsg(MLXFW_NO_VALID_IMAGE_ERR, "\nNo valid FS3 image found. Check the flash parameters, if specified."); } u_int32_t image_start = cntx_image_start[0]; offset = 0; /* Read BOOT */ _ioAccess->set_address_convertor(0, 0); READBUF((*_ioAccess), image_start, buff, FS3_BOOT_START, "Image header"); Fs3UpdateImgCache((u_int8_t*)buff, 0, FS3_BOOT_START); TOCPUn(buff, FS3_BOOT_START_IN_DW); _maxImgLog2Size = EXTRACT(buff[FS3_LOG2_CHUNK_SIZE_DW_OFFSET], 16, 8) ? EXTRACT(buff[FS3_LOG2_CHUNK_SIZE_DW_OFFSET], 16, 8) : FS3_LOG_CHUNK_SIZE; binVerMajor = EXTRACT(buff[FS3_LOG2_CHUNK_SIZE_DW_OFFSET], 8, 8); binVerMinor = EXTRACT(buff[FS3_LOG2_CHUNK_SIZE_DW_OFFSET], 0, 8); /* check if binary version is supported by the tool */ if (!CheckBinVersion(binVerMajor, binVerMinor)) { return false; } /* Put info */ _fwImgInfo.imgStart = image_start; /* read the chunk size from the image header */ if ((_maxImgLog2Size == 0x16) && (_fwImgInfo.imgStart == 0x800000)) { _fwImgInfo.cntxLog2ChunkSize = 0x17; } else { _fwImgInfo.cntxLog2ChunkSize = _maxImgLog2Size; } _fwImgInfo.ext_info.is_failsafe = true; _fwImgInfo.actuallyFailsafe = true; _fwImgInfo.magicPatternFound = 1; _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); report_callback(verifyCallBackFunc, "\nFS3 failsafe image\n\n"); /* adrianc: we dont check Preboot section (or boot start) because of a variance in the calculation of the CRC */ /* Get BOOT2 -Get Only boot2Size if quickQuery == true else read and check CRC of boot2 section as well */ offset += FS3_BOOT_START; FS3_CHECKB2(0, offset, !queryOptions.quickQuery, PRE_CRC_OUTPUT, verifyCallBackFunc); offset += _fwImgInfo.boot2Size; _fs3ImgInfo.firstItocIsEmpty = false; /* printf("-D- image_start = %#x\n", image_start); */ /* Go over the ITOC entries */ /* adrianc: need to have the sector size hardcoded in the FW binary (since its determined in the image generation */ /* process) */ u_int32_t sector_size = FS3_DEFAULT_SECTOR_SIZE; offset = (offset % sector_size == 0) ? offset : (offset + sector_size - offset % 0x1000); while (offset < _ioAccess->get_effective_size()) { if (VerifyTOC(offset, bad_signature, verifyCallBackFunc, show_itoc, queryOptions, ignoreDToc, verbose)) { return true; } else { if (!bad_signature) { return false; } _fs3ImgInfo.firstItocIsEmpty = true; } offset += sector_size; } return errmsg(MLXFW_NO_VALID_ITOC_ERR, "No valid ITOC was found."); } bool Fs3Operations::FsIntQueryAux(bool readRom, bool quickQuery, bool ignoreDToc, bool verbose) { DPRINTF(("Fs3Operations::FsIntQueryAux\n")); struct QueryOptions queryOptions; queryOptions.readRom = readRom; queryOptions.quickQuery = quickQuery; if (!FsVerifyAux((VerifyCallBack)NULL, 0, queryOptions, ignoreDToc, verbose)) { return false; } /* get chip type and device sw id, from device/image */ const u_int32_t* swId = (u_int32_t*)NULL; if (_ioAccess->is_flash()) { if (!getInfoFromHwDevid(_ioAccess->get_dev_id(), _fwImgInfo.ext_info.chip_type, &swId)) { return false; } _fwImgInfo.ext_info.dev_type = swId[0]; if (!_fwParams.ignoreCacheRep) { getRunningFwVersion(); } } else if (_fwImgInfo.supportedHwIdNum > 0) { /* image */ if (!getInfoFromHwDevid(_fwImgInfo.supportedHwId[0], _fwImgInfo.ext_info.chip_type, &swId)) { return false; } _fwImgInfo.ext_info.dev_type = swId[0]; } if ((FwType() == FIT_FS4 || FwType() == FIT_FS5) && _fwImgInfo.ext_info.image_info_minor_version >= 3 && _fwImgInfo.ext_info.pci_device_id != 0) { _fwImgInfo.ext_info.dev_type = _fwImgInfo.ext_info.pci_device_id; } if ((_signatureExists == 0) || (_publicKeysExists == 0) || (_fs3ImgInfo.ext_info.mcc_en == 0)) { _fs3ImgInfo.ext_info.security_mode = SM_NONE; } _internalQueryPerformed = true; return true; } bool Fs3Operations::getRunningFwVersion() { #ifndef UEFI_BUILD reg_access_status_t reg_access_rc; struct reg_access_hca_mgir_ext mgir; memset(&mgir, 0, sizeof(mgir)); mfile* mf = _ioAccess->getMfileObj(); reg_access_rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, &mgir); if (reg_access_rc == ME_OK) { strncpy(_fwImgInfo.ext_info.running_branch_ver, (char*)mgir.dev_info.dev_branch_tag, sizeof(_fwImgInfo.ext_info.running_branch_ver) - 1); _fwImgInfo.ext_info.running_fw_ver[0] = mgir.fw_info.extended_major; _fwImgInfo.ext_info.running_fw_ver[1] = mgir.fw_info.extended_minor; _fwImgInfo.ext_info.running_fw_ver[2] = mgir.fw_info.extended_sub_minor; if ((_fwImgInfo.ext_info.running_fw_ver[0] == 0) && (_fwImgInfo.ext_info.running_fw_ver[1] == 0) && (_fwImgInfo.ext_info.running_fw_ver[2] == 0)) { /* Deprecated versions */ _fwImgInfo.ext_info.running_fw_ver[0] = mgir.fw_info.major; _fwImgInfo.ext_info.running_fw_ver[1] = mgir.fw_info.minor; _fwImgInfo.ext_info.running_fw_ver[2] = mgir.fw_info.sub_minor; } } else { _fwImgInfo.ext_info.running_branch_ver[0] = '\0'; struct connectib_icmd_get_fw_info fwVer; memset(&fwVer, 0, sizeof(fwVer)); int rc = gcif_get_fw_info(((Flash*)_ioAccess)->getMfileObj(), &fwVer); if (rc && (rc != GCIF_STATUS_UNSUPPORTED_ICMD_VERSION) && (rc != GCIF_STATUS_INVALID_OPCODE) && (rc != GCIF_ICMD_NOT_SUPPORTED)) { return errmsg("Failed to get running FW version. %s", gcif_err_str(rc)); } if (!rc) { _fwImgInfo.ext_info.running_fw_ver[0] = fwVer.fw_version.MAJOR; _fwImgInfo.ext_info.running_fw_ver[1] = fwVer.fw_version.MINOR; _fwImgInfo.ext_info.running_fw_ver[2] = fwVer.fw_version.SUBMINOR; } } #endif return true; } void Fs3Operations::deal_with_signal() { #ifndef UEFI_BUILD int sig; sig = mft_signal_is_fired(); if (sig) { mft_signal_set_fired(0); mft_signal_set_handling(0); raise(sig); } mft_signal_set_handling(0); #endif return; } reg_access_status_t Fs3Operations::getGI(mfile* mf, struct reg_access_hca_mgir_ext* gi) { reg_access_status_t rc = ME_REG_ACCESS_OK; u_int32_t tp = 0; mget_mdevs_type(mf, &tp); #if !defined(UEFI_BUILD) && !defined(NO_INBAND) mft_signal_set_handling(1); if ((tp == MST_IB) && !supports_reg_access_gmp(mf, MACCESS_REG_METHOD_GET)) { rc = (reg_access_status_t)mad_ifc_general_info_hw(mf, &gi->hw_info); if (!rc) { rc = (reg_access_status_t)mad_ifc_general_info_fw(mf, &gi->fw_info); if (!rc) { rc = (reg_access_status_t)mad_ifc_general_info_sw(mf, &gi->sw_info); } } } else { rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, gi); } deal_with_signal(); #else rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, gi); #endif return rc; } bool Fs3Operations::FwQuery(fw_info_t* fwInfo, bool readRom, bool /*isStripedImage*/, bool quickQuery, bool ignoreDToc, bool verbose) { /* isStripedImage flag is not needed in FS3 image format */ DPRINTF(("Fs3Operations::FwQuery\n")); reg_access_status_t rc = ME_ERROR; struct reg_access_hca_mgir_ext mgir; /* FsIntQueryAux will update _fwImgInfo.ext_info & _fs3ImgInfo.ext_info */ if (!FsIntQueryAux(readRom, quickQuery, ignoreDToc, verbose)) { return false; } if (_ioAccess->is_flash() && (_fwParams.ignoreCacheRep == 0)) { /* * * MGIR * */ memset(&mgir, 0, sizeof(mgir)); rc = getGI(((Flash*)_ioAccess)->getMfileObj(), &mgir); if (rc == ME_OK) { _fwImgInfo.ext_info.isfu_major = mgir.fw_info.isfu_major; } } mfile* mf = getMfileObj(); memcpy(&(fwInfo->fw_info), &(_fwImgInfo.ext_info), sizeof(fw_info_com_t)); memcpy(&(fwInfo->fs3_info), &(_fs3ImgInfo.ext_info), sizeof(fs3_info_t)); fwInfo->fw_type = FwType(); if ((rc == ME_OK) && (mf != NULL) && mf->flags & MDEVS_IB) { /* for IB devices only */ fwInfo->fw_info.running_fw_ver[0] = mgir.fw_info.extended_major; fwInfo->fw_info.running_fw_ver[1] = mgir.fw_info.extended_minor; fwInfo->fw_info.running_fw_ver[2] = mgir.fw_info.extended_sub_minor; } return true; } u_int8_t Fs3Operations::FwType() { return FIT_FS3; } bool Fs3Operations::FwInit() { FwInitCom(); memset(&_fs3ImgInfo.ext_info, 0, sizeof(_fs3ImgInfo.ext_info)); _fs3ImgInfo.numOfItocs = 0; for (int i = 0; i < MAX_TOCS_NUM; i++) { memset(&_fs3ImgInfo.tocArr[i].data, 0, sizeof(_fs3ImgInfo.tocArr[i].data)); memset(&_fs3ImgInfo.tocArr[i].toc_entry, 0, sizeof(_fs3ImgInfo.tocArr[i].toc_entry)); _fs3ImgInfo.tocArr[i].entry_addr = 0; } memset(&_fs3ImgInfo.itocHeader, 0, sizeof(_fs3ImgInfo.itocHeader)); _fs3ImgInfo.firstItocIsEmpty = 0; _fs3ImgInfo.itocAddr = 0; _fs3ImgInfo.smallestAbsAddr = 0; _fs3ImgInfo.sizeOfImgData = 0; _fwImgInfo.fwType = FIT_FS3; return true; } #define GET_DIFFER_STR(flash_toc_entry, image_toc_entry) \ (flash_toc_entry->device_data != image_toc_entry->device_data) ? "device_data" : \ (flash_toc_entry->no_crc != image_toc_entry->no_crc) ? "no_crc" : \ (flash_toc_entry->relative_addr != image_toc_entry->relative_addr) ? "relative_addr" : \ "" bool Fs3Operations::UpdateDevDataITOC(Fs3Operations& imageOps, struct toc_info* image_toc_info_entry, struct toc_info* flash_toc_arr, int flash_toc_size) { u_int8_t itoc_data[CIBFW_ITOC_ENTRY_SIZE]; struct cibfw_itoc_entry* image_toc_entry = &image_toc_info_entry->toc_entry; for (int i = 0; i < flash_toc_size; i++) { struct toc_info* flash_toc_info = &flash_toc_arr[i]; struct cibfw_itoc_entry* flash_toc_entry = &flash_toc_info->toc_entry; if (flash_toc_entry->type == image_toc_entry->type) { /* sanity checks on itoc entry */ if ((flash_toc_entry->device_data != image_toc_entry->device_data) || (flash_toc_entry->no_crc != image_toc_entry->no_crc) || (flash_toc_entry->relative_addr != image_toc_entry->relative_addr)) { return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "An inconsistency was found in %s section attributes. %s ITOC attribute differs", GetSectionNameByType(image_toc_entry->type), GET_DIFFER_STR(flash_toc_entry, image_toc_entry)); } /* replace itoc entry in the image */ memset(itoc_data, 0, CIBFW_ITOC_ENTRY_SIZE); cibfw_itoc_entry_pack(flash_toc_entry, itoc_data); imageOps.Fs3UpdateImgCache(itoc_data, image_toc_info_entry->entry_addr, CIBFW_ITOC_ENTRY_SIZE); cibfw_itoc_entry_unpack(&image_toc_info_entry->toc_entry, itoc_data); } } return true; } bool Fs3Operations::CheckFs3ImgSize(Fs3Operations& imageOps, bool useImageDevData) { /* there are (ATM) two image slots on the flash: * SLOT0: starts add flash address 0x0 * SLOT1: starts at flash address 2^_maxImgLogSize * Device sections can either be a part of SLOT0 Image or SLOT1 or not, depending on flash size * if flash size is greater than 2^(_maxImgLogSize+1) than device sections and first/second image dont share same * area * */ Fs3Operations& ops = useImageDevData ? imageOps : *this; u_int32_t maxFsImgSize = 1 << imageOps._maxImgLog2Size; u_int32_t smallestAbsAddrSlot0 = maxFsImgSize; u_int32_t smallestAbsAddrSlot1 = 2 * maxFsImgSize; u_int32_t maxImgDataSizeSlot0, maxImgDataSizeSlot1; /* find smallest abs address in SLOT0 */ for (int i = 0; i < ops._fs3ImgInfo.numOfItocs; i++) { struct cibfw_itoc_entry* toc_entry = &ops._fs3ImgInfo.tocArr[i].toc_entry; u_int32_t tocEntryFlashAddr = toc_entry->flash_addr << 2; if (toc_entry->device_data) { if (tocEntryFlashAddr > maxFsImgSize) { /* address in SLOT1 */ smallestAbsAddrSlot1 = smallestAbsAddrSlot1 > tocEntryFlashAddr ? tocEntryFlashAddr : smallestAbsAddrSlot1; } else { /* address in SLOT0 */ smallestAbsAddrSlot0 = smallestAbsAddrSlot0 > tocEntryFlashAddr ? tocEntryFlashAddr : smallestAbsAddrSlot0; } } } maxImgDataSizeSlot0 = smallestAbsAddrSlot0; maxImgDataSizeSlot1 = smallestAbsAddrSlot1 - maxFsImgSize; u_int32_t maxImgDataSize = maxImgDataSizeSlot0 < maxImgDataSizeSlot1 ? maxImgDataSizeSlot0 : maxImgDataSizeSlot1; if (imageOps._fs3ImgInfo.sizeOfImgData > maxImgDataSize) { return errmsg(MLXFW_IMAGE_TOO_LARGE_ERR, "Size of image data (0x%x) is greater than max size of image data (0x%x)", imageOps._fs3ImgInfo.sizeOfImgData, maxImgDataSize); } return true; } u_int32_t Fs3Operations::getNewImageStartAddress(Fs3Operations& imageOps, bool isBurnFailSafe) { u_int32_t newImageStartAddress; if (((_fwImgInfo.imgStart != 0) && (imageOps._fwImgInfo.cntxLog2ChunkSize != 0x17)) || ((_fwImgInfo.imgStart == 0x800000) && (imageOps._fwImgInfo.cntxLog2ChunkSize == 0x17)) || (!isBurnFailSafe && ((Flash*)_ioAccess)->get_ignore_cache_replacment())) { /* if the burn is not failsafe and with -ocr, the image is burnt at 0x0 */ newImageStartAddress = 0; } else if (_fwImgInfo.cntxLog2ChunkSize == 0x17) { newImageStartAddress = 0x800000; } else { newImageStartAddress = (1 << imageOps._fwImgInfo.cntxLog2ChunkSize); } return newImageStartAddress; } bool Fs3Operations::BurnFs3Image(Fs3Operations& imageOps, ExtBurnParams& burnParams) { u_int8_t is_curr_image_in_odd_chunks; u_int32_t total_img_size = 0; u_int32_t sector_size = FS3_DEFAULT_SECTOR_SIZE; u_int8_t imageSignature[16]; Flash* f = (Flash*)(this->_ioAccess); FImage* fim = (FImage*)(imageOps._ioAccess); u_int8_t* data8; if ((_fwImgInfo.imgStart != 0) || (!burnParams.burnFailsafe && ((Flash*)_ioAccess)->get_ignore_cache_replacment())) { is_curr_image_in_odd_chunks = 1; } else { is_curr_image_in_odd_chunks = 0; } u_int32_t new_image_start = getNewImageStartAddress(imageOps, burnParams.burnFailsafe); /*printf("-D- new_image_start = %#x, is_curr_image_in_odd_chunks = %#x\n", new_image_start, * is_curr_image_in_odd_chunks);*/ if (new_image_start == 0x800000) { f->set_address_convertor(0x17, 1); } else { /* take chunk size from image in case of a non failsafe burn (in any case they should be the same) */ f->set_address_convertor(imageOps._fwImgInfo.cntxLog2ChunkSize, !is_curr_image_in_odd_chunks); } /* check max image size */ bool useImageDevData = !burnParams.burnFailsafe && burnParams.useImgDevData; if (!CheckFs3ImgSize(imageOps, useImageDevData)) { return false; } /* update devDataTocsInImage */ for (int i = 0; i < imageOps._fs3ImgInfo.numOfItocs; i++) { struct toc_info* itoc_info_p = &imageOps._fs3ImgInfo.tocArr[i]; struct cibfw_itoc_entry* toc_entry = &itoc_info_p->toc_entry; if (toc_entry->device_data) { /* update dev_data itoc with the device's dev_data section addr */ if (burnParams.burnFailsafe || !burnParams.useImgDevData) { /* we update the device data entires if : a. we burn failsafe or b. we burn non-failsafe but we take the */ /* device data anyway */ if (!UpdateDevDataITOC(imageOps, itoc_info_p, _fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs)) { return false; } } } } /* sanity check on the image itoc array */ if (!imageOps.CheckItocArray()) { return errmsg(MLXFW_IMAGE_CORRUPTED_ERR, "%s", imageOps.err()); } /* find total image size that will be written */ for (int i = 0; i < imageOps._fs3ImgInfo.numOfItocs; i++) { struct toc_info* itoc_info_p = &imageOps._fs3ImgInfo.tocArr[i]; struct cibfw_itoc_entry* toc_entry = &itoc_info_p->toc_entry; if (!toc_entry->device_data) { total_img_size += toc_entry->size << 2; } else if (!burnParams.burnFailsafe && burnParams.useImgDevData) { total_img_size += toc_entry->size << 2; } else { continue; } } /* add boot section, itoc array (wo signature) */ total_img_size += imageOps._fs3ImgInfo.itocAddr + sector_size - FS3_FW_SIGNATURE_SIZE; if (total_img_size <= sector_size) { return errmsg("Failed to burn FW. Internal error."); } /* write the image */ int alreadyWrittenSz = 0; /* Write begining of image: up to and including ITOCs W/O signature */ u_int32_t beginingWithoutSignatureSize = imageOps._fs3ImgInfo.itocAddr + sector_size - FS3_FW_SIGNATURE_SIZE; data8 = new u_int8_t[beginingWithoutSignatureSize]; imageOps._imageCache.get(data8, FS3_FW_SIGNATURE_SIZE, beginingWithoutSignatureSize); /* write boot section, itoc array (wo signature) */ if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, FS3_FW_SIGNATURE_SIZE, data8, beginingWithoutSignatureSize, false, false, total_img_size, alreadyWrittenSz)) { delete[] data8; return false; } delete[] data8; alreadyWrittenSz += beginingWithoutSignatureSize; /* write itoc entries data */ for (int i = 0; i < imageOps._fs3ImgInfo.numOfItocs; i++) { struct toc_info* itoc_info_p = &imageOps._fs3ImgInfo.tocArr[i]; struct cibfw_itoc_entry* toc_entry = &itoc_info_p->toc_entry; bool writeSection = true; if (toc_entry->device_data && (burnParams.burnFailsafe || !burnParams.useImgDevData)) { writeSection = false; } if (writeSection) { if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, toc_entry->flash_addr << 2, &(itoc_info_p->section_data[0]), itoc_info_p->section_data.size(), !toc_entry->relative_addr, false, total_img_size, alreadyWrittenSz)) { return false; } alreadyWrittenSz += itoc_info_p->section_data.size(); } } if (!f->is_flash()) { return true; } if (!fim->read(0, imageSignature, 16)) { return errmsg("Failed to read from image: %s", fim->err()); } /* Write new signature */ if (!f->write(0, imageSignature, 16, true)) { return errmsg("Failed to write image signature: %s", f->err()); } return DoAfterBurnJobs(_cntx_magic_pattern, imageOps, burnParams, f, new_image_start, is_curr_image_in_odd_chunks); } bool Fs3Operations::CheckAndDealWithChunkSizes(u_int32_t cntxLog2ChunkSize, u_int32_t imageCntxLog2ChunkSize) { if (cntxLog2ChunkSize > 0x18) { return errmsg("Unsupported Device partition size 0x%x", cntxLog2ChunkSize); } if (imageCntxLog2ChunkSize > 0x18) { return errmsg("Unsupported Image partition size 0x%x", imageCntxLog2ChunkSize); } if (cntxLog2ChunkSize != imageCntxLog2ChunkSize) { if (((cntxLog2ChunkSize != 0x16) && (cntxLog2ChunkSize != 0x17)) || ((imageCntxLog2ChunkSize != 0x16) && (imageCntxLog2ChunkSize != 0x17)) || ((imageCntxLog2ChunkSize == 0x18) || (cntxLog2ChunkSize == 0x18))) { return errmsg("Device and Image partition size differ(0x%x/0x%x), use non failsafe burn flow.", cntxLog2ChunkSize, imageCntxLog2ChunkSize); } } return true; } bool Fs3Operations::isWriteProtected(bool& is_write_protected) { if (_ioAccess->is_flash()) { FBase* origFlashObj = (FBase*)NULL; if (!((Flash*)_ioAccess)->get_ignore_cache_replacment()) { origFlashObj = _ioAccess; _fwParams.ignoreCacheRep = 1; if (!FwOperations::FwAccessCreate(_fwParams, &_ioAccess)) { _ioAccess = origFlashObj; _fwParams.ignoreCacheRep = 0; return errmsg(MLXFW_OPEN_OCR_ERR, "Failed to open device for direct flash access"); } } is_write_protected = ((Flash*)_ioAccess)->is_flash_write_protected(); FLASH_RESTORE(origFlashObj); } else { is_write_protected = false; } return true; } bool Fs3Operations::FsBurnAux(FwOperations* imgops, ExtBurnParams& burnParams) { Fs3Operations& imageOps = *((Fs3Operations*)imgops); if (imageOps.FwType() != FIT_FS3) { return errmsg(MLXFW_IMAGE_FORMAT_ERR, "FW image type is not compatible with device (FS3)"); } bool devIntQueryRes = FsIntQueryAux(); if (!devIntQueryRes && burnParams.burnFailsafe) { return false; } /* for image we execute full verify to bring all the information needed for ROM Patch */ if (!imageOps.FsIntQueryAux(true, false)) { return false; } /* Check Matching device ID */ if (!burnParams.noDevidCheck && _ioAccess->is_flash()) { if (imageOps._fwImgInfo.supportedHwIdNum) { if (!CheckMatchingHwDevId(_ioAccess->get_dev_id(), _ioAccess->get_rev_id(), imageOps._fwImgInfo.supportedHwId, imageOps._fwImgInfo.supportedHwIdNum)) { return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "Device/Image mismatch: %s\n", this->err()); } } else { /* no suppored hw ids (problem with the image ?) */ return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "No supported devices were found in the FW image."); } } if (!burnParams.burnFailsafe) { /* some checks in case we burn in a non-failsafe manner and attempt to integrate existing device */ /* data sections from device. */ if (!burnParams.useImgDevData) { /* we will take device data section from device: perform some checks */ if (_fs3ImgInfo.itocAddr == 0) { return errmsg("Cannot extract device data sections: invalid ITOC section. please ignore extracting " "device data sections."); } if (_badDevDataSections) { return errmsg("Cannot integrate device data sections: device data sections are corrupted. please " "ignore extracting device data sections."); } } else { /* we will take device data sections from image: make sure device is not write protected */ bool is_write_protected; if (!isWriteProtected(is_write_protected)) { return errmsg("%s", err()); } if (is_write_protected) { return errmsg("Cannot burn device data sections, Flash is write protected."); } } } if (devIntQueryRes && !CheckPSID(imageOps, burnParams.allowPsidChange)) { return false; } if (burnParams.burnFailsafe) { /* Check image and device chunk sizes are Ok */ if (!CheckAndDealWithChunkSizes(_fwImgInfo.cntxLog2ChunkSize, imageOps._fwImgInfo.cntxLog2ChunkSize)) { return false; } /* Check if the burnt FW version is OK */ if (!CheckFwVersion(imageOps, burnParams.ignoreVersionCheck)) { return false; } /* Check TimeStamp */ if (!TestAndSetTimeStamp(imgops)) { return false; } /* ROM patchs */ if ((burnParams.burnRomOptions == ExtBurnParams::BRO_FROM_DEV_IF_EXIST) && (_fwImgInfo.ext_info.roms_info.exp_rom_found)) { /* here we should take rom from device and insert into the image */ /* i.e if we have rom in image remove it and put the rom from the device else just put rom from device. */ /* 1. use Fs3ModifySection to integrate _romSect buff with the image , newImageData contains the modified */ /* image buffer */ std::vector romSect = _romSect; TOCPUn((u_int32_t*)&romSect[0], romSect.size() / 4); if (!imageOps.Fs3ReplaceSectionInDevImg(FS3_ROM_CODE, FS3_PCI_CODE, true, (u_int8_t*)NULL, 0, (u_int32_t*)&romSect[0], (u_int32_t)romSect.size())) { return errmsg(MLXFW_ROM_UPDATE_IN_IMAGE_ERR, "failed to update ROM in image. %s", imageOps.err()); } } /* image vsd patch */ if (!burnParams.useImagePs && (burnParams.vsdSpecified || burnParams.useDevImgInfo)) { /* get image info section : */ struct toc_info* imageInfoToc = (struct toc_info*)NULL; if (!imageOps.Fs3GetItocInfo(imageOps._fs3ImgInfo.tocArr, imageOps._fs3ImgInfo.numOfItocs, FS3_IMAGE_INFO, imageInfoToc)) { return errmsg(MLXFW_GET_SECT_ERR, "failed to get Image Info section."); } /* modify it: */ std::vector imageInfoSect = imageInfoToc->section_data; struct image_layout_image_info image_info; image_layout_image_info_unpack(&image_info, &imageInfoSect[0]); if (burnParams.vsdSpecified) { strncpy(image_info.vsd, burnParams.userVsd, VSD_LEN); } image_layout_image_info_pack(&image_info, &imageInfoSect[0]); if (burnParams.useDevImgInfo) { /* update PSID, name and description in image info */ struct tools_open_image_info tools_image_info; tools_open_image_info_unpack(&tools_image_info, &imageInfoSect[0]); strncpy(tools_image_info.psid, _fwImgInfo.ext_info.psid, PSID_LEN + 1); strncpy(tools_image_info.name, _fs3ImgInfo.ext_info.name, NAME_LEN); strncpy(tools_image_info.description, _fs3ImgInfo.ext_info.description, DESCRIPTION_LEN); tools_open_image_info_pack(&tools_image_info, &imageInfoSect[0]); } /* re-insert it into the image: */ if (!imageOps.Fs3ReplaceSectionInDevImg(FS3_IMAGE_INFO, FS3_FW_ADB, true, (u_int8_t*)NULL, 0, (u_int32_t*)&imageInfoSect[0], (u_int32_t)imageInfoSect.size())) { return errmsg(MLXFW_UPDATE_SECT_ERR, "failed to update IMAGE_INFO section in image. %s", imageOps.err()); } } } return BurnFs3Image(imageOps, burnParams); } bool Fs3Operations::FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurn\n"); } ExtBurnParams burnParams = ExtBurnParams(); burnParams.ignoreVersionCheck = forceVersion; burnParams.progressFunc = progressFunc; return FwBurnAdvanced(imageOps, burnParams); } bool Fs3Operations::ReBurnCurrentImage(ProgressCallBack progressFunc) { if (!FsIntQueryAux(true, false)) { return false; } const unsigned int size = (_ioAccess->get_effective_size()); vector newImageData(size); _imageCache.get(newImageData, 0x0, size); FwOperations* newImageOps = NULL; ExtBurnParams newBurnParams; if (!CreateBasicImageFromData((u_int32_t*)newImageData.data(), size, &newImageOps)) { return false; } newBurnParams.updateParamsForBasicImage(progressFunc); if (!FsBurnAux(newImageOps, newBurnParams)) { newImageOps->FwCleanUp(); delete newImageOps; return errmsg("Failed to re-burn image after modify: %s", err()); } newImageOps->FwCleanUp(); delete newImageOps; return true; } bool Fs3Operations::FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurnAdvanced\n"); } /* Check if alignment is needed */ if ((burnParams.burnFailsafe || (!burnParams.burnFailsafe && !burnParams.useImgDevData)) && CheckIfAlignmentIsNeeded(imageOps)) { if (!AlignDeviceSections(imageOps)) { return errmsg("Failed to align the device sections: %s", err()); } } if (FwCheckIf8MBShiftingNeeded(imageOps, burnParams)) { if (burnParams.shift8MBIfNeeded) { if (!ReBurnCurrentImage(burnParams.progressFunc)) { return false; } return true; } else { return errmsg("Cannot Burn given FW, need to reburn the same Firmware to the second flash partition"); } } return FsBurnAux(imageOps, burnParams); } bool Fs3Operations::FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc) { /* Avoid Warning! */ (void)imageOps; (void)progressFunc; return errmsg("FwBurnBlock is not supported anymore in FS3 image."); } bool Fs3Operations::FwReadData(void* image, u_int32_t* imageSize, bool verbose) { struct QueryOptions queryOptions; if (!imageSize) { return errmsg("bad parameter is given to FwReadData\n"); } queryOptions.readRom = true; queryOptions.quickQuery = false; if (image == NULL) { /* When we need only to get size, no need for reading entire image */ queryOptions.readRom = false; queryOptions.quickQuery = true; } /* Avoid Warning */ if (!FsVerifyAux((VerifyCallBack)NULL, 0, queryOptions, false, verbose)) { return false; } _imageCache.get((u_int8_t*)image, _fwImgInfo.lastImageAddr); *imageSize = _fwImgInfo.lastImageAddr; return true; } bool Fs3Operations::FwReadRom(std::vector& romSect) { if (!FsIntQueryAux()) { return false; } if (_romSect.empty()) { return errmsg("Read ROM failed: The FW does not contain a ROM section"); } romSect = _romSect; /* Set endianness */ TOCPUn(&(romSect[0]), romSect.size() / 4); return true; } bool Fs3Operations::FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool) { /* FwGetSection only supports retrieving FS3_DBG_FW_INI section atm. */ if (sectType != FS3_DBG_FW_INI) { return errmsg("Unsupported section type."); } /* set the sector to read (need to remove it after read) */ _readSectList.push_back(sectType); if (!FsIntQueryAux()) { _readSectList.pop_back(); return false; } _readSectList.pop_back(); sectInfo = _fwConfSect; if (sectInfo.empty()) { return errmsg("INI section not found in the given image."); } return true; } bool Fs3Operations::VerifyImageAfterModifications() { return FsIntQueryAux(false, false); } bool Fs3Operations::FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc) { if (!baseGuid.base_guid_specified && !baseGuid.base_mac_specified) { return errmsg("base GUID/MAC were not specified."); } if (baseGuid.base_mac_specified && !CheckMac(baseGuid.base_mac)) { return errmsg("Bad MAC (" MAC_FORMAT ") given: %s. Please specify a valid MAC value", baseGuid.base_mac.h, baseGuid.base_mac.l, err()); } if (!baseGuid.use_pp_attr) { baseGuid.num_of_guids_pp[0] = baseGuid.num_of_guids ? baseGuid.num_of_guids : DEFAULT_GUID_NUM; baseGuid.step_size_pp[0] = baseGuid.step_size ? baseGuid.step_size : DEFAULT_STEP; baseGuid.num_of_guids_pp[1] = baseGuid.num_of_guids ? baseGuid.num_of_guids : DEFAULT_GUID_NUM; baseGuid.step_size_pp[1] = baseGuid.step_size ? baseGuid.step_size : DEFAULT_STEP; baseGuid.use_pp_attr = 1; } if (FwType() == FIT_FS3) { FAIL_NO_OCR("set manufacture GUIDs/MACs"); } if (!UpdateSection(&baseGuid, FS3_MFG_INFO, false, CMD_SET_MFG_GUIDS, callBackFunc)) { return false; } /* on image verify that image is OK after modification (we skip this on device for performance reasons) */ if (!_ioAccess->is_flash() && !VerifyImageAfterModifications()) { return false; } return true; } bool Fs3Operations::FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc) { /* in FS3 default behavior when setting GUIDs / MFG is to assign ini default step size and number. */ fs3_uid_t bGuid = { baseGuid, 1, {0, 0}, 0, 0, 0, 1, 1, {DEFAULT_GUID_NUM, DEFAULT_GUID_NUM}, {DEFAULT_STEP, DEFAULT_STEP}}; return FwSetMFG(bGuid, callBackFunc); } bool Fs3Operations::ParseDevData(bool quickQuery, bool verbose, VerifyCallBack) { return FsIntQueryAux(false, quickQuery, false, verbose); } bool Fs3Operations::FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc, ProgressCallBack progressFunc) { fs3_uid_t usrGuid; memset(&usrGuid, 0, sizeof(usrGuid)); /* Avoid Warning because there is no need for progressFunc */ (void)progressFunc; if (sgParam.userGuids.empty()) { return errmsg("Base GUID not found."); } /* query device to get mfg info (for guids override en bit) */ if (!ParseDevData()) { return false; } if (!_fs3ImgInfo.ext_info.guids_override_en) { return errmsg("guids override is not set, cannot set device guids"); } usrGuid.num_of_guids_pp[0] = sgParam.usePPAttr ? sgParam.numOfGUIDsPP[0] : sgParam.numOfGUIDs ? sgParam.numOfGUIDs : DEFAULT_GUID_NUM; usrGuid.step_size_pp[0] = sgParam.usePPAttr ? sgParam.stepSizePP[0] : sgParam.stepSize ? sgParam.stepSize : DEFAULT_STEP; usrGuid.num_of_guids_pp[1] = sgParam.usePPAttr ? sgParam.numOfGUIDsPP[1] : sgParam.numOfGUIDs ? sgParam.numOfGUIDs : DEFAULT_GUID_NUM; usrGuid.step_size_pp[1] = sgParam.usePPAttr ? sgParam.stepSizePP[1] : sgParam.stepSize ? sgParam.stepSize : DEFAULT_STEP; usrGuid.use_pp_attr = 1; usrGuid.base_guid_specified = false; usrGuid.base_mac_specified = false; usrGuid.set_mac_from_guid = false; if (sgParam.guidsSpecified || sgParam.uidSpecified) { usrGuid.base_guid_specified = true; usrGuid.base_guid = sgParam.userGuids[0]; usrGuid.set_mac_from_guid = sgParam.uidSpecified ? true : false; } if (sgParam.macsSpecified) { /* check base mac */ if (!CheckMac(sgParam.userGuids[1])) { return errmsg("Bad MAC (" MAC_FORMAT ") given: %s. Please specify a valid MAC value", sgParam.userGuids[1].h, sgParam.userGuids[1].l, err()); } usrGuid.base_mac_specified = true; usrGuid.base_mac = sgParam.userGuids[1]; } if (!usrGuid.base_guid_specified && !usrGuid.base_mac_specified) { return errmsg("base GUID/MAC were not specified."); } if (FwType() == FIT_FS3) { FAIL_NO_OCR("set GUIDs/MACs"); } if (!UpdateSection(&usrGuid, FS3_DEV_INFO, false, CMD_SET_GUIDS, callBackFunc)) { return false; } /* on image verify that image is OK after modification (we skip this on device for performance reasons) */ if (!_ioAccess->is_flash() && !VerifyImageAfterModifications()) { return false; } return true; } bool Fs3Operations::isOld4MBImage(FwOperations* imageOps) { return (!(*(Fs3Operations*)imageOps)._fs3ImgInfo.runFromAny && ((*(Fs3Operations*)imageOps)._fwImgInfo.cntxLog2ChunkSize == 0x16)); } bool Fs3Operations::FwCheckIfWeCanBurnWithFwControl(FwOperations* imageOps) { /* * The function check what happen if we are in mcc mode, can we burn the given image? * * When do we need to do fallback to regular flow: * - New 4MB/7MB FW running from 0x0 or 0x400,000 and we try to burn old FW => Do FallBack * - Old 4MB -> Burn 7MB => Do FallBack * * when handle type is UEFI we need to do fallback to regular flow: * - if the runnig fw is signed and the fw we are going to burn is not signed */ fw_info_t dev_info_img; if (_fwParams.hndlType == FHT_UEFI_DEV) { memset(&dev_info_img, 0, sizeof(dev_info_img)); if (!((Fs3Operations*)imageOps)->FwQuery(&dev_info_img)) { return false; } } bool result = ((_fs3ImgInfo.runFromAny && (_fwImgInfo.imgStart == 0x0 || _fwImgInfo.imgStart == 0x400000)) && isOld4MBImage(imageOps)) || (!_fs3ImgInfo.runFromAny && ((Fs3Operations*)imageOps)->_fwImgInfo.cntxLog2ChunkSize == 0x17) || (_fwParams.hndlType == FHT_UEFI_DEV && (!(dev_info_img.fs3_info.security_mode & SMM_SIGNED_FW)) && (_fs3ImgInfo.ext_info.security_mode & SMM_SIGNED_FW)); /* printf("-D- result=%d\n", result); */ return result; } bool Fs3Operations::FwCheckIf8MBShiftingNeeded(FwOperations* imageOps, const ExtBurnParams& burnParams) { /* * When do we need to do shifting? * If mcc_en=1: * - 7MB FW running from 0x0 and we try to burn old FW => Do FallBack & shifting * - New 4MB FW running from 0x0 and we try to burn old FW => Do FallBack only * If mcc_en=0: * - 7MB FW running from 0x0 and we try to burn old FW => Do shifting */ /* * From above we can conclude that if the running FW is old (runFromAny==0) then * no need for shifting. */ if (!_fs3ImgInfo.runFromAny) { return false; } u_int32_t new_image_start = getNewImageStartAddress(*(Fs3Operations*)imageOps, burnParams.burnFailsafe); bool res = (new_image_start == 0x800000 && isOld4MBImage(imageOps)); /* printf("-D- res=%d\n", res); */ return res; } bool Fs3Operations::FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc) { if (!vpdFileStr) { return errmsg("Please specify a valid vpd file."); } FAIL_NO_OCR("set VPD"); if (!UpdateSection(vpdFileStr, FS3_VPD_R0, false, CMD_BURN_VPD, callBackFunc)) { return false; } /* on image verify that image is OK after modification (we skip this on device for performance reasons) */ if (!_ioAccess->is_flash() && !VerifyImageAfterModifications()) { return false; } return true; } bool Fs3Operations::GetModifiedSectionInfo(fs3_section_t sectionType, fs3_section_t nextSectionType, u_int32_t& newSectAddr, fs3_section_t& SectToPut, u_int32_t& oldSectSize) { struct toc_info* curr_itoc = (struct toc_info*)NULL; if (Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, sectionType, curr_itoc) || Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, nextSectionType, curr_itoc)) { newSectAddr = curr_itoc->toc_entry.flash_addr << 2; SectToPut = (curr_itoc->toc_entry.type == sectionType) ? sectionType : nextSectionType; oldSectSize = curr_itoc->toc_entry.size * 4; return true; } return false; } bool Fs3Operations::ShiftItocAddrInEntry(struct toc_info* newItocInfo, struct toc_info* oldItocInfo, int shiftSize) { u_int32_t currSectaddr; CopyItocInfo(newItocInfo, oldItocInfo); currSectaddr = (newItocInfo->toc_entry.flash_addr << 2) + shiftSize; Fs3UpdateItocInfo(newItocInfo, currSectaddr); return true; } bool Fs3Operations::Fs3UpdateItocInfo(struct toc_info* newItocInfo, u_int32_t newSectAddr, fs3_section_t sectionType, u_int32_t* newSectData, u_int32_t NewSectSize) { std::vector newSecVect(NewSectSize); newItocInfo->toc_entry.type = sectionType; memcpy(&newSecVect[0], newSectData, NewSectSize); return Fs3UpdateItocInfo(newItocInfo, newSectAddr, NewSectSize / 4, newSecVect); } bool Fs3Operations::CopyItocInfo(struct toc_info* newTocInfo, struct toc_info* currToc) { memcpy(newTocInfo->data, currToc->data, CIBFW_ITOC_ENTRY_SIZE); newTocInfo->entry_addr = currToc->entry_addr; newTocInfo->section_data = currToc->section_data; newTocInfo->toc_entry = currToc->toc_entry; return true; } bool Fs3Operations::UpdateItocAfterInsert(fs3_section_t sectionType, u_int32_t newSectAddr, fs3_section_t SectToPut, bool toAdd, u_int32_t* newSectData, u_int32_t removedOrNewSectSize, struct toc_info* tocArr, u_int32_t& numOfItocs) { bool isReplacement = (sectionType == SectToPut) ? true : false; int shiftSize; if (toAdd) { if (isReplacement) { struct toc_info* curr_itoc = (struct toc_info*)NULL; u_int32_t sectSize; if (!Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, sectionType, curr_itoc)) { return false; } sectSize = curr_itoc->toc_entry.size * 4; shiftSize = (removedOrNewSectSize > sectSize) ? removedOrNewSectSize - sectSize : 0; } else { shiftSize = removedOrNewSectSize; } if (shiftSize % FS3_DEFAULT_SECTOR_SIZE) { shiftSize += (FS3_DEFAULT_SECTOR_SIZE - shiftSize % FS3_DEFAULT_SECTOR_SIZE); } } else { shiftSize = 0; if (removedOrNewSectSize % FS3_DEFAULT_SECTOR_SIZE) { removedOrNewSectSize += (FS3_DEFAULT_SECTOR_SIZE - removedOrNewSectSize % FS3_DEFAULT_SECTOR_SIZE); } shiftSize -= removedOrNewSectSize; } numOfItocs = 0; int shifEntryToc = 0; u_int32_t shiftEntryAddr = -1; int ignoreShiftIdx = -1; for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { struct toc_info* curr_itoc = &_fs3ImgInfo.tocArr[i]; struct toc_info* newTocInfo = &tocArr[numOfItocs]; u_int32_t currSectaddr = curr_itoc->toc_entry.flash_addr << 2; /* Put it in one place */ /* printf("-D- BEFORE : Entry Type: %#x, Entry offset: %#x\n", curr_itoc->toc_entry.type, */ /* curr_itoc->entry_addr); */ if (currSectaddr > newSectAddr) { if (!curr_itoc->toc_entry.relative_addr) { CopyItocInfo(newTocInfo, curr_itoc); } else { ShiftItocAddrInEntry(newTocInfo, curr_itoc, shiftSize); } } else if (currSectaddr == newSectAddr) { shiftEntryAddr = curr_itoc->entry_addr + CIBFW_ITOC_ENTRY_SIZE; if (!toAdd) { shifEntryToc = -1 * CIBFW_ITOC_ENTRY_SIZE; continue; } shifEntryToc = CIBFW_ITOC_ENTRY_SIZE; CopyItocInfo(newTocInfo, curr_itoc); Fs3UpdateItocInfo(newTocInfo, newSectAddr, sectionType, newSectData, removedOrNewSectSize); if (!isReplacement) { /* put next section */ newTocInfo = &tocArr[++numOfItocs]; ShiftItocAddrInEntry(newTocInfo, curr_itoc, shiftSize); newTocInfo->entry_addr = shiftEntryAddr; ignoreShiftIdx = numOfItocs; } else { shifEntryToc = 0; } } else { /* just Copy the ITOC as is */ CopyItocInfo(newTocInfo, curr_itoc); } numOfItocs++; } if (shifEntryToc) { for (int i = 0; i < (int)numOfItocs; i++) { struct toc_info* tocInfo = &tocArr[i]; if ((i != ignoreShiftIdx) && (tocInfo->entry_addr >= shiftEntryAddr)) { tocInfo->entry_addr += shifEntryToc; } /* printf("-D- AFTER : Entry Type: %#x, Entry offset: %#x\n", tocInfo->toc_entry.type, tocInfo->entry_addr); */ } } return true; } bool Fs3Operations::UpdateImageAfterInsert(struct toc_info* tocArr, u_int32_t numOfItocs, u_int8_t* newImgData, u_int32_t newImageSize) { /* Copy data before itocAddr and ITOC header */ /* memcpy(newImgData, &_imageCache[0], _fs3ImgInfo.itocAddr); */ if (newImgData) { _imageCache.get(newImgData, _fs3ImgInfo.itocAddr); memcpy(&newImgData[_fs3ImgInfo.itocAddr], _fs3ImgInfo.itocHeader, CIBFW_ITOC_HEADER_SIZE); } else { Fs3UpdateImgCache(_fs3ImgInfo.itocHeader, _fs3ImgInfo.itocAddr, CIBFW_ITOC_HEADER_SIZE); newImageSize = _fwImgInfo.lastImageAddr; } for (int i = 0; i < (int)numOfItocs; i++) { /* Inits */ u_int32_t itocOffset = _fs3ImgInfo.itocAddr + CIBFW_ITOC_HEADER_SIZE + i * CIBFW_ITOC_ENTRY_SIZE; struct toc_info* currItoc = &tocArr[i]; u_int8_t sectType = currItoc->toc_entry.type; u_int32_t sectAddr = currItoc->toc_entry.flash_addr << 2; u_int32_t sectSize = currItoc->toc_entry.size * 4; /* Some checks */ if (sectAddr + sectSize > newImageSize) { return errmsg("Internal error: Size of modified image (0x%x) is longer than size of original image (0x%x)!", sectAddr + sectSize, newImageSize); } if (sectSize != currItoc->section_data.size()) { return errmsg("Internal error: Sectoion size of %s (0x%x) is not equal to allocated memory for it(0x%x)", GetSectionNameByType(sectType), sectSize, (u_int32_t)currItoc->section_data.size()); } if (!newImgData) { Fs3UpdateImgCache(currItoc->data, itocOffset, CIBFW_ITOC_ENTRY_SIZE); Fs3UpdateImgCache(&currItoc->section_data[0], sectAddr, sectSize); } else { memcpy(&newImgData[itocOffset], currItoc->data, CIBFW_ITOC_ENTRY_SIZE); memcpy(&newImgData[sectAddr], &currItoc->section_data[0], sectSize); } } u_int32_t lastItocSect = _fs3ImgInfo.itocAddr + CIBFW_ITOC_HEADER_SIZE + numOfItocs * CIBFW_ITOC_ENTRY_SIZE; if (!newImgData) { u_int8_t fs3_end_buf[CIBFW_ITOC_ENTRY_SIZE] = {FS3_END}; Fs3UpdateImgCache(fs3_end_buf, lastItocSect, CIBFW_ITOC_ENTRY_SIZE); } else { memset(&newImgData[lastItocSect], FS3_END, CIBFW_ITOC_ENTRY_SIZE); } return true; } /* * Adrianc: this is probably the longest method signature in this file. to make things clear: * Fs3ReplaceSectionInDevImg() adds a new section to the firmware image or removes an exsisting section * from the firmware image. if user specified newImgData, the modified image (after add/remove) will be copied to the * buffer, else the object itself will be modified (i.e imageCache and itocs updated) * *@param sectionType : section type to add or remove *@param nextSectionType : in case of adding, add the new section before this section type *@param toAdd : specifies whether the operation is add or remove *@param newImageData : if not null the new modified image will be written here (object context remains un-changed) *@param newImageSize: size of newImageData *@param newSectData : data buffer of the section to be added *@param newSectSize : newSectData size *@param UpdateExsistingTocArr: update the objects itoc array * */ bool Fs3Operations::Fs3ReplaceSectionInDevImg(fs3_section_t sectionType, fs3_section_t nextSectionType, bool toAdd, u_int8_t* newImgData, u_int32_t newImageSize, u_int32_t* newSectData, u_int32_t NewSectSize) { u_int32_t newSectAddr; u_int32_t numOfItocs; struct toc_info tocArr[MAX_TOCS_NUM]; fs3_section_t sectToPut; u_int32_t oldSectSize; if (!GetModifiedSectionInfo(sectionType, nextSectionType, newSectAddr, sectToPut, oldSectSize)) { return false; } u_int32_t removedOrNewSectSize = (toAdd) ? NewSectSize : oldSectSize; if (!UpdateItocAfterInsert(sectionType, newSectAddr, sectToPut, toAdd, newSectData, removedOrNewSectSize, tocArr, numOfItocs)) { return false; } if (!UpdateImageAfterInsert(tocArr, numOfItocs, newImgData, newImageSize)) { return false; } if (!newImgData) { /* uptade was perform on the object, update its itoc array */ _fs3ImgInfo.numOfItocs = numOfItocs; for (u_int32_t i = 0; i < numOfItocs; i++) { _fs3ImgInfo.tocArr[i] = tocArr[i]; } } return true; } bool Fs3Operations::Fs3ModifySection(fs3_section_t sectionType, fs3_section_t neighbourSection, bool toAdd, u_int32_t* newSectData, u_int32_t newSectSize, ProgressCallBack progressFunc) { /* Get image data and ROM data and integrate ROM data into image data */ /* Verify FW on device */ if (!FwVerify((VerifyCallBack)NULL)) { return errmsg("Verify FW burn on the device failed: %s", err()); } std::vector newImageData(_fwImgInfo.lastImageAddr); /* u_int8_t *newImageData = new u_int8_t[_fwImgInfo.lastImageAddr]; */ if (!Fs3ReplaceSectionInDevImg(sectionType, neighbourSection, toAdd, (u_int8_t*)&newImageData[0], _fwImgInfo.lastImageAddr, newSectData, newSectSize)) { return false; } /* Burn the new image into the device. */ burnDataParamsT params; params.data = (u_int32_t*)&newImageData[0]; params.dataSize = _fwImgInfo.lastImageAddr; params.progressFunc = progressFunc; params.calcSha = _signatureExists; if (!FwBurnData(params)) { return false; } return true; } bool Fs3Operations::Fs3AddSection(fs3_section_t sectionType, fs3_section_t neighbourSection, u_int32_t* newSectData, u_int32_t newSectSize, ProgressCallBack progressFunc) { /* We need to add the new section before the neighbourSection */ return Fs3ModifySection(sectionType, neighbourSection, true, newSectData, newSectSize, progressFunc); } bool Fs3Operations::Fs3RemoveSection(fs3_section_t sectionType, ProgressCallBack progressFunc) { return Fs3ModifySection(sectionType, sectionType, false, (u_int32_t*)NULL, 0, progressFunc); } bool Fs3Operations::FwBurnRom(FImage* romImg, bool ignoreProdIdCheck, bool ignoreDevidCheck, ProgressCallBack progressFunc) { roms_info_t romsInfo; if (romImg == NULL) { return errmsg("Bad ROM image is given."); } if (romImg->getBufLength() == 0) { return errmsg("Bad ROM file: Empty file."); } if (!FwOperations::getRomsInfo(romImg, romsInfo)) { return errmsg("Failed to read given ROM."); } if (!FsIntQueryAux(false)) { return false; } if (!ignoreDevidCheck && !FwOperations::checkMatchingExpRomDevId(_fwImgInfo.ext_info.dev_type, romsInfo)) { return errmsg("Image file ROM: FW is for device %d, but Exp-ROM is for device %d\n", _fwImgInfo.ext_info.dev_type, romsInfo.exp_rom_com_devid); } if (!RomCommonCheck(ignoreProdIdCheck, false)) { return false; } return Fs3AddSection(FS3_ROM_CODE, FS3_PCI_CODE, romImg->getBuf(), romImg->getBufLength(), progressFunc); } bool Fs3Operations::FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc) { /* run int query to get product ver */ if (!FsIntQueryAux(true)) { return false; } if (!RomCommonCheck(ignoreProdIdCheck, true)) { return false; } return Fs3RemoveSection(FS3_ROM_CODE, progressFunc); } bool Fs3Operations::Fs3GetItocInfo(struct toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, struct toc_info*& curr_toc) { for (int i = 0; i < num_of_itocs; i++) { struct toc_info* itoc_info = &tocArr[i]; if (itoc_info->toc_entry.type == sect_type) { curr_toc = itoc_info; return true; } } return errmsg("ITOC entry type: %s (%d) not found", GetSectionNameByType(sect_type), sect_type); } bool Fs3Operations::Fs3UpdateMfgUidsSection(struct toc_info* curr_toc, std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData) { struct cibfw_mfg_info cib_mfg_info; struct cx4fw_mfg_info cx4_mfg_info; (void)curr_toc; cibfw_mfg_info_unpack(&cib_mfg_info, (u_int8_t*)§ion_data[0]); if (CHECK_MFG_OLD_FORMAT(cib_mfg_info)) { if (!Fs3ChangeUidsFromBase(base_uid, cib_mfg_info.guids)) { return false; } } else if (CHECK_MFG_NEW_FORMAT(cib_mfg_info)) { cx4fw_mfg_info_unpack(&cx4_mfg_info, (u_int8_t*)§ion_data[0]); if (!Fs3ChangeUidsFromBase(base_uid, cx4_mfg_info.guids)) { return false; } } else { return errmsg("Unknown MFG_INFO format version (%d.%d).", cib_mfg_info.major_version, cib_mfg_info.minor_version); } newSectionData = section_data; if (CHECK_MFG_NEW_FORMAT(cib_mfg_info)) { cx4fw_mfg_info_pack(&cx4_mfg_info, (u_int8_t*)&newSectionData[0]); } else { cibfw_mfg_info_pack(&cib_mfg_info, (u_int8_t*)&newSectionData[0]); } return true; } #define GUID_TO_64(guid_st) (guid_st.l | (u_int64_t)guid_st.h << 32) bool Fs3Operations::Fs3ChangeUidsFromBase(fs3_uid_t base_uid, struct cibfw_guids& guids) { /* * On ConnectIB and SwitchIB we derrive macs and guids from a single base_guid */ u_int64_t base_guid_64; u_int64_t base_mac_64; if (!base_uid.use_pp_attr) { return errmsg("Expected per port attributes to be specified"); } base_guid_64 = GUID_TO_64(base_uid.base_guid); base_mac_64 = (((u_int64_t)base_uid.base_guid.l & 0xffffff) | (((u_int64_t)base_uid.base_guid.h & 0xffffff00) << 16)); guids.guids[0].uid = base_guid_64; guids.guids[0].num_allocated = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[0] : guids.guids[0].num_allocated; guids.guids[0].step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.guids[0].step; guids.guids[1].uid = base_guid_64 + (guids.guids[0].num_allocated * guids.guids[0].step); guids.guids[1].num_allocated = base_uid.num_of_guids_pp[1] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[1] : guids.guids[1].num_allocated; guids.guids[1].step = base_uid.step_size_pp[1] != DEFAULT_STEP ? base_uid.step_size_pp[1] : guids.guids[1].step; guids.macs[0].uid = base_mac_64; guids.macs[0].num_allocated = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[0] : guids.macs[0].num_allocated; guids.macs[0].step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.macs[0].step; guids.macs[1].uid = base_mac_64 + (guids.macs[0].num_allocated * guids.macs[0].step); guids.macs[1].num_allocated = base_uid.num_of_guids_pp[1] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[1] : guids.macs[1].num_allocated; guids.macs[1].step = base_uid.step_size_pp[1] != DEFAULT_STEP ? base_uid.step_size_pp[1] : guids.macs[1].step; return true; } bool Fs3Operations::Fs3ChangeUidsFromBase(fs3_uid_t base_uid, struct cx4fw_guids& guids) { /* * on ConnectX4 we derrive guids from base_guid and macs from base_mac */ u_int64_t base_guid_64; u_int64_t base_mac_64; if (!base_uid.use_pp_attr) { return errmsg("Expected per port attributes to be specified"); } base_guid_64 = base_uid.base_guid_specified ? GUID_TO_64(base_uid.base_guid) : guids.guids.uid; base_mac_64 = base_uid.base_mac_specified ? GUID_TO_64(base_uid.base_mac) : guids.macs.uid; if (base_uid.set_mac_from_guid && base_uid.base_guid_specified) { /* in case we derrive mac from guid */ base_mac_64 = (((u_int64_t)base_uid.base_guid.l & 0xffffff) | (((u_int64_t)base_uid.base_guid.h & 0xffffff00) << 16)); } guids.guids.uid = base_guid_64; guids.guids.num_allocated = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[0] : guids.guids.num_allocated; guids.guids.step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.guids.step; guids.macs.uid = base_mac_64; guids.macs.num_allocated = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[0] : guids.macs.num_allocated; guids.macs.step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.macs.step; return true; } bool Fs3Operations::ChangeUidsFromBase(fs3_uid_t base_uid, image_layout_guids& guids) { /* * on ConnectX4 we derrive guids from base_guid and macs from base_mac */ u_int64_t base_guid_64; u_int64_t base_mac_64; if (!base_uid.use_pp_attr) { return errmsg("Expected per port attributes to be specified"); } base_guid_64 = base_uid.base_guid_specified ? GUID_TO_64(base_uid.base_guid) : guids.guids.uid; base_mac_64 = base_uid.base_mac_specified ? GUID_TO_64(base_uid.base_mac) : guids.macs.uid; if (base_uid.set_mac_from_guid && base_uid.base_guid_specified) { // in case we derrive mac from guid base_mac_64 = (((u_int64_t)base_uid.base_guid.l & 0xffffff) | (((u_int64_t)base_uid.base_guid.h & 0xffffff00) << 16)); } if (base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM) { guids.guids.num_allocated = (u_int8_t)(base_uid.num_of_guids_pp[0] & 0xff); guids.guids.num_allocated_msb = (u_int8_t)((base_uid.num_of_guids_pp[0] >> 8) & 0xff); guids.macs.num_allocated = guids.guids.num_allocated; guids.macs.num_allocated_msb = guids.guids.num_allocated_msb; } guids.guids.uid = base_guid_64; guids.guids.step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.guids.step; guids.macs.uid = base_mac_64; guids.macs.step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.macs.step; return true; } bool Fs3Operations::Fs3UpdateUidsSection(struct toc_info* curr_toc, std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData) { struct cibfw_device_info cib_dev_info; struct cx4fw_device_info cx4_dev_info; (void)curr_toc; cibfw_device_info_unpack(&cib_dev_info, (u_int8_t*)§ion_data[0]); if (CHECK_DEV_INFO_OLD_FORMAT(cib_dev_info)) { if (!Fs3ChangeUidsFromBase(base_uid, cib_dev_info.guids)) { return false; } } else if (CHECK_DEV_INFO_NEW_FORMAT(cib_dev_info)) { cx4fw_device_info_unpack(&cx4_dev_info, (u_int8_t*)§ion_data[0]); if (!Fs3ChangeUidsFromBase(base_uid, cx4_dev_info.guids)) { return false; } } else { return errmsg("Unknown DEV_INFO format version (%d.%d).", cib_dev_info.major_version, cib_dev_info.minor_version); } newSectionData = section_data; if (CHECK_DEV_INFO_NEW_FORMAT(cib_dev_info)) { cx4fw_device_info_pack(&cx4_dev_info, (u_int8_t*)&newSectionData[0]); } else { cibfw_device_info_pack(&cib_dev_info, (u_int8_t*)&newSectionData[0]); } return true; } bool Fs3Operations::Fs3UpdateVsdSection(struct toc_info* curr_toc, std::vector section_data, char* user_vsd, std::vector& newSectionData) { struct cibfw_device_info dev_info; (void)curr_toc; cibfw_device_info_unpack(&dev_info, (u_int8_t*)§ion_data[0]); memset(dev_info.vsd, 0, sizeof(dev_info.vsd)); strncpy(dev_info.vsd, user_vsd, TOOLS_ARR_SZ(dev_info.vsd) - 1); newSectionData = section_data; cibfw_device_info_pack(&dev_info, (u_int8_t*)&newSectionData[0]); return true; } bool Fs3Operations::Fs3UpdateVpdSection(struct toc_info* curr_toc, char* vpd, std::vector& newSectionData) { int vpd_size = 0; u_int8_t* vpd_data = (u_int8_t*)NULL; if (!ReadBinFile(vpd, vpd_data, vpd_size)) { return false; } if (vpd_size % 4) { delete[] vpd_data; return errmsg("Size of VPD file: %d is not 4-byte aligned!", vpd_size); } /* assuming VPD section is the last piece of Data on the flash */ if ((_ioAccess)->is_flash() && (getAbsAddr(curr_toc) + vpd_size > (_ioAccess)->get_effective_size())) { delete[] vpd_data; return errmsg("VPD data exceeds flash size, max VPD size: 0x%x bytes", (_ioAccess)->get_effective_size() - getAbsAddr(curr_toc)); } GetSectData(newSectionData, (u_int32_t*)vpd_data, vpd_size); curr_toc->toc_entry.size = vpd_size / 4; delete[] vpd_data; return true; } bool Fs3Operations::Fs3UpdatePublicKeysSection(unsigned int currSectionSize, const char* publicKeys, std::vector& newSectionData, bool silent) { int publicKeysSize = 0, publicKeysSizeInDW = 0; u_int8_t* publicKeysData = (u_int8_t*)NULL; if (!ReadBinFile(publicKeys, publicKeysData, publicKeysSize)) { return false; } publicKeysSizeInDW = publicKeysSize >> 2; if (publicKeysSizeInDW != (int)currSectionSize) { delete[] publicKeysData; if (silent == false) { return errmsg("The Size of the given public keys section (%d bytes) is not valid", publicKeysSize); } else { return false; } } GetSectData(newSectionData, (u_int32_t*)publicKeysData, publicKeysSize); delete[] publicKeysData; return true; } /* all device data section might be shifted by SHIFT_SIZE due to */ /* flash with write protect sector 0f 64kb instead of 4kb */ #define SHIFT_SIZE 0xf000 /* 60kb */ bool Fs3Operations::Fs3GetNewSectionAddr(struct toc_info* curr_toc, u_int32_t& NewSectionAddr, bool failsafe_section) { u_int32_t flash_addr = curr_toc->toc_entry.flash_addr << 2; /* HACK: THIS IS AN UGLY HACK, SHOULD BE REMOVED ASAP */ /* Possible solution : if a section is failsafe make its size 2kb thus both section will fit in a 4kb chunk (addr & */ /* 0x800 == 0x800 then its in second place, if == 0 its in first place ) */ if (failsafe_section) { /* we assume dev_info is the only FS section. */ /* get the two dev_info addresses (section is failsafe) according to the location of the mfg section */ toc_info* toc = (toc_info*)NULL; u_int32_t devInfoAddr1 = 0; u_int32_t devInfoAddr2 = 0; if (!Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, FS3_MFG_INFO, toc)) { return errmsg("failed to locate MFG_INFO address within the FW image"); } /* calculate device info sections (fs section) address according to the MFG section */ /* (i.e we assume they are located in: mfg_addr - 4k and mfg_addr - 8k) */ devInfoAddr1 = (toc->toc_entry.flash_addr << 2) - 0x1000; devInfoAddr2 = (toc->toc_entry.flash_addr << 2) - 0x2000; if ((flash_addr == devInfoAddr1) || (flash_addr == devInfoAddr2)) { NewSectionAddr = (flash_addr == devInfoAddr1) ? devInfoAddr2 : devInfoAddr1; } else { /* FW image is a mess */ return errmsg("DEV_INFO section is located in an unexpected address(0x%x)", flash_addr); } } else { NewSectionAddr = flash_addr; } return true; } bool Fs3Operations::CalcItocEntryCRC(struct toc_info* curr_toc) { u_int8_t new_entry_data[CIBFW_ITOC_ENTRY_SIZE]; memset(new_entry_data, 0, CIBFW_ITOC_ENTRY_SIZE); cibfw_itoc_entry_pack(&curr_toc->toc_entry, new_entry_data); u_int32_t entry_crc = CalcImageCRC((u_int32_t*)new_entry_data, (TOC_ENTRY_SIZE / 4) - 1); curr_toc->toc_entry.itoc_entry_crc = entry_crc; return true; } bool Fs3Operations::Fs3UpdateItocData(struct toc_info* currToc) { CalcItocEntryCRC(currToc); memset(currToc->data, 0, CIBFW_ITOC_ENTRY_SIZE); cibfw_itoc_entry_pack(&currToc->toc_entry, currToc->data); return true; } bool Fs3Operations::Fs3UpdateItocInfo(struct toc_info* curr_toc, u_int32_t newSectionAddr) { /* We assume it's absolute */ curr_toc->toc_entry.flash_addr = newSectionAddr >> 2; return Fs3UpdateItocData(curr_toc); } bool Fs3Operations::Fs3UpdateItocInfo(struct toc_info* curr_toc, u_int32_t newSectionAddr, u_int32_t NewSectSize, std::vector newSectionData) { curr_toc->section_data = newSectionData; curr_toc->toc_entry.size = NewSectSize; u_int32_t new_crc = CalcImageCRC((u_int32_t*)&newSectionData[0], curr_toc->toc_entry.size); curr_toc->toc_entry.section_crc = new_crc; return Fs3UpdateItocInfo(curr_toc, newSectionAddr); } bool Fs3Operations::Fs3ReburnItocSection(u_int32_t newSectionAddr, u_int32_t newSectionSize, std::vector newSectionData, const char* msg, PrintCallBack callBackFunc) { char message[127]; sprintf(message, "Updating %-4s section - ", msg); /* Burn new Section */ /* we pass a null callback and print the progress here as the writes are small (guids/mfg/vpd_str) */ /* in the future if we want to pass the cb prints to writeImage , need to change the signature of progressCallBack */ /* to receive and optional string to print */ PRINT_PROGRESS(callBackFunc, message); if (!writeImage((ProgressCallBack)NULL, newSectionAddr, (u_int8_t*)&newSectionData[0], newSectionSize, true, true)) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); /* Update new ITOC section */ bool is_flash = _ioAccess->is_flash(); if (!reburnItocSection(callBackFunc, is_flash)) { return false; } return true; } bool Fs3Operations::Fs3UpdateForbiddenVersionsSection(unsigned int currSectionSize, char* fileName, std::vector& newSectionData) { int size = 0, sizeInDW = 0; u_int8_t* data = (u_int8_t*)NULL; if (!ReadBinFile(fileName, data, size)) { return false; } sizeInDW = size >> 2; if (sizeInDW != (int)currSectionSize) { delete[] data; return errmsg("The Size of the given forbidden versions section (%d bytes) is not valid", size); } GetSectData(newSectionData, (u_int32_t*)data, size); delete[] data; return true; } /* add callback if we want info during section update */ bool Fs3Operations::UpdateSection(void* new_info, fs3_section_t sect_type, bool is_sect_failsafe, CommandType cmd_type, PrintCallBack callBackFunc) { struct toc_info* curr_toc = (struct toc_info*)NULL; std::vector newSection; u_int32_t newSectionAddr; const char* type_msg; /* init sector to read */ _readSectList.push_back(sect_type); if (!FsIntQueryAux()) { _readSectList.pop_back(); return false; } _readSectList.pop_back(); /* _silent = curr_silent; */ if (!Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, sect_type, curr_toc)) { return false; } if (sect_type == FS3_MFG_INFO) { fs3_uid_t base_uid = *(fs3_uid_t*)new_info; type_msg = "GUID"; if (!Fs3UpdateMfgUidsSection(curr_toc, curr_toc->section_data, base_uid, newSection)) { return false; } } else if (sect_type == FS3_DEV_INFO) { if (cmd_type == CMD_SET_GUIDS) { fs3_uid_t base_uid = *(fs3_uid_t*)new_info; type_msg = "GUID"; if (!Fs3UpdateUidsSection(curr_toc, curr_toc->section_data, base_uid, newSection)) { return false; } } else if (cmd_type == CMD_SET_VSD) { char* user_vsd = (char*)new_info; type_msg = "VSD"; if (!Fs3UpdateVsdSection(curr_toc, curr_toc->section_data, user_vsd, newSection)) { return false; } } else { /* We shouldnt reach here EVER */ type_msg = (char*)"Unknown"; } } else if (sect_type == FS3_VPD_R0) { char* vpd_file = (char*)new_info; type_msg = "VPD"; if (!Fs3UpdateVpdSection(curr_toc, vpd_file, newSection)) { return false; } } else if ((sect_type == FS3_IMAGE_SIGNATURE_256) && (cmd_type == CMD_SET_SIGNATURE)) { vector sig((u_int8_t*)new_info, (u_int8_t*)new_info + IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); type_msg = "SIGNATURE"; newSection.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); memcpy(newSection.data(), sig.data(), IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); } else if ((sect_type == FS3_IMAGE_SIGNATURE_512) && (cmd_type == CMD_SET_SIGNATURE)) { vector sig((u_int8_t*)new_info, (u_int8_t*)new_info + IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE); type_msg = "SIGNATURE"; newSection.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE); memcpy(newSection.data(), sig.data(), IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE); } else if ((sect_type == FS3_PUBLIC_KEYS_2048) && (cmd_type == CMD_SET_PUBLIC_KEYS)) { char* publickeys_file = (char*)new_info; type_msg = "PUBLIC KEYS 2048"; if (!Fs3UpdatePublicKeysSection(curr_toc->toc_entry.size, publickeys_file, newSection)) { return false; } } else if ((sect_type == FS3_PUBLIC_KEYS_4096) && (cmd_type == CMD_SET_PUBLIC_KEYS)) { char* publickeys_file = (char*)new_info; type_msg = "PUBLIC KEYS 4096"; if (!Fs3UpdatePublicKeysSection(curr_toc->toc_entry.size, publickeys_file, newSection)) { return false; } } else if ((sect_type == FS4_RSA_4096_SIGNATURES) && (cmd_type == CMD_SET_PUBLIC_4096_RSA_KEY)) { char* publicKeysData = (char*)new_info; type_msg = "PUBLIC FS4_RSA_4096_SIGNATURES 4096"; GetSectData(newSection, (u_int32_t*)publicKeysData, curr_toc->toc_entry.size); } else if ((sect_type == FS3_FORBIDDEN_VERSIONS) && (cmd_type == CMD_SET_FORBIDDEN_VERSIONS)) { char* forbiddenVersions_file = (char*)new_info; type_msg = "Forbidden Versions"; if (!Fs3UpdateForbiddenVersionsSection(curr_toc->toc_entry.size, forbiddenVersions_file, newSection)) { return false; } } else { return errmsg("Section type %s is not supported\n", GetSectionNameByType(sect_type)); } if (!Fs3GetNewSectionAddr(curr_toc, newSectionAddr, is_sect_failsafe)) { return false; } if (!Fs3UpdateItocInfo(curr_toc, newSectionAddr, curr_toc->toc_entry.size, newSection)) { return false; } if (!Fs3ReburnItocSection(newSectionAddr, curr_toc->toc_entry.size * 4, newSection, type_msg, callBackFunc)) { return false; } return true; } bool Fs3Operations::FwSetVSD(char* vsdStr, ProgressCallBack progressFunc, PrintCallBack printFunc) { /* Avoid warning */ (void)progressFunc; if (!vsdStr) { return errmsg("Please specify a valid VSD string."); } if (strlen(vsdStr) > VSD_LEN) { return errmsg("VSD string is too long(%d), max allowed length: %d", (int)strlen(vsdStr), (int)VSD_LEN); } FAIL_NO_OCR("set VSD"); if (!UpdateSection(vsdStr, FS3_DEV_INFO, false, CMD_SET_VSD, printFunc)) { return false; } /* on image verify that image is OK after modification (we skip this on device for performance reasons) */ if (!_ioAccess->is_flash() && !VerifyImageAfterModifications()) { return false; } return true; } bool Fs3Operations::FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc) { (void)userKey; (void)progressFunc; return errmsg("Set access key not supported."); } bool Fs3Operations::FwResetNvData() { return errmsg("Unsupported Device, can only reset configuration on a CX3/3-PRO device."); /* * // future support for cx4 * * if (!FsIntQueryAux(false)) { * return false; * } * if (_fwImgInfo.ext_info.chip_type != CT_CONNECTX) { * // TODO: Indicate the device name. * return errmsg("Unsupported device type %d", _fwImgInfo.ext_info.dev_type); * } * * struct toc_info *currToc; * * if (!Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, FS3_NV_DATA, currToc)) { * return false; * } * // allocate new NvData which will contain only zeroes * std::vector newNvData(currToc->section_data.size()); * memset(&newNvData[0], 0, currToc->section_data.size()); * * return Fs3AddSection(FS3_NV_DATA, FS3_DEV_INFO, (u_int32_t *)&newNvData[0], newNvData.size()/4, progressFunc); */ } u_int32_t Fs3Operations::getAbsAddr(toc_info* toc) { if (toc->toc_entry.relative_addr) { return ((toc->toc_entry.flash_addr << 2) + _fwImgInfo.imgStart); } return toc->toc_entry.flash_addr << 2; } u_int32_t Fs3Operations::getAbsAddr(toc_info* toc, u_int32_t imgStart) { if (toc->toc_entry.relative_addr) { return ((toc->toc_entry.flash_addr << 2) + imgStart); } return toc->toc_entry.flash_addr << 2; } /* get the last fw section address (i.e the maximal address + size of the fw section) */ bool Fs3Operations::getLastFwSAddr(u_int32_t& lastAddr) { struct toc_info* maxToc = (struct toc_info*)NULL; int i; /* find first itoc that isnt device data (assumption: there is at least one) */ for (i = 0; i < _fs3ImgInfo.numOfItocs; i++) { maxToc = &(_fs3ImgInfo.tocArr[i]); if (!maxToc->toc_entry.device_data) { break; } } /* find the last non device data itoc */ for (; i < _fs3ImgInfo.numOfItocs; i++) { if ((!_fs3ImgInfo.tocArr[i].toc_entry.device_data) && (getAbsAddr(&(_fs3ImgInfo.tocArr[i])) > getAbsAddr(maxToc))) { maxToc = &_fs3ImgInfo.tocArr[i]; } } lastAddr = getAbsAddr(maxToc) + (maxToc->toc_entry.size << 2); return true; } bool Fs3Operations::getFirstDevDataAddr(u_int32_t& firstAddr) { struct toc_info* minToc = (struct toc_info*)NULL; /* find first dev data itoc entry */ int i; for (i = 0; i < _fs3ImgInfo.numOfItocs; i++) { if (_fs3ImgInfo.tocArr[i].toc_entry.device_data) { minToc = &(_fs3ImgInfo.tocArr[i]); break; } } if (!minToc) { return errmsg("failed to get device data ITOC."); } i++; /* find the minimal one */ for (; i < _fs3ImgInfo.numOfItocs; i++) { if (_fs3ImgInfo.tocArr[i].toc_entry.device_data && (getAbsAddr(&(_fs3ImgInfo.tocArr[i])) < getAbsAddr(minToc))) { minToc = &(_fs3ImgInfo.tocArr[i]); } } firstAddr = getAbsAddr(minToc); return true; } bool Fs3Operations::reburnItocSection(PrintCallBack callBackFunc, bool burnFailsafe) { /* HACK SHOULD BE REMOVED ASAP */ u_int32_t sector_size = FS3_DEFAULT_SECTOR_SIZE; /* Itoc section is failsafe (two sectors after boot section are reserved for itoc entries) */ u_int32_t oldItocAddr = _fs3ImgInfo.itocAddr; u_int32_t newItocAddr = oldItocAddr; if (burnFailsafe) { newItocAddr = (_fs3ImgInfo.firstItocIsEmpty) ? (_fs3ImgInfo.itocAddr - sector_size) : (_fs3ImgInfo.itocAddr + sector_size); } /* Update new ITOC */ u_int32_t itocSize = (_fs3ImgInfo.numOfItocs + 1) * CIBFW_ITOC_ENTRY_SIZE + CIBFW_ITOC_HEADER_SIZE; u_int8_t* p = new u_int8_t[itocSize]; memcpy(p, _fs3ImgInfo.itocHeader, CIBFW_ITOC_HEADER_SIZE); for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { struct toc_info* curr_itoc = &_fs3ImgInfo.tocArr[i]; if ((u_int32_t)(CIBFW_ITOC_HEADER_SIZE + (i + 1) * CIBFW_ITOC_ENTRY_SIZE) <= itocSize) { memcpy(p + CIBFW_ITOC_HEADER_SIZE + i * CIBFW_ITOC_ENTRY_SIZE, curr_itoc->data, CIBFW_ITOC_ENTRY_SIZE); } } memset(&p[itocSize - CIBFW_ITOC_ENTRY_SIZE], FS3_END, CIBFW_ITOC_ENTRY_SIZE); PRINT_PROGRESS(callBackFunc, (char*)"Updating ITOC section - "); bool rc = writeImage((ProgressCallBack)NULL, newItocAddr, p, itocSize, false, true); delete[] p; if (!rc) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); u_int32_t zeros = 0; if (burnFailsafe) { PRINT_PROGRESS(callBackFunc, (char*)"Restoring signature - "); if (!writeImage((ProgressCallBack)NULL, oldItocAddr, (u_int8_t*)&zeros, 4, false, true)) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); } return true; } bool Fs3Operations::extractUUIDFromString(const char* uuid, std::vector& uuidData) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) string strData; string uuidString = uuid; /* remove whitespace and hyphens */ for (string::const_iterator it = uuidString.begin(); it != uuidString.end(); ++it) { if (isspace(*it) || (*it == '-') || (*it == ':')) { continue; } if (!isxdigit(*it)) { return errmsg("Bad UUID format. UUID must contain hexadecimal digits separated by hyphens"); } strData += *it; } /* extract the data */ if (strData.length() != UUID_LEN * 2) { return errmsg("Bad UUID format. UUID length must be %d digits", UUID_LEN * 2); } uuidData.resize(0); for (size_t i = 0; i < UUID_LEN * 2; i += 8) { stringstream dwSS(strData.substr(i, 8)); u_int32_t dwData; dwSS >> std::hex >> dwData; uuidData.push_back(dwData); } return true; #else (void)uuid; (void)uuidData; return errmsg("extractUUIDFromString Not Implemented"); #endif } bool Fs3Operations::FwSignWithTwoRSAKeys(const char* privPemFile1, const char* uuid1, const char* privPemFile2, const char* uuid2, PrintCallBack printFunc) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) MlxSignRSA rsa1, rsa2; int rc = rsa1.setPrivKeyFromFile(privPemFile1); if (rc) { return errmsg("Failed to set the first private key from file (rc = 0x%x)\n", rc); } rc = rsa2.setPrivKeyFromFile(privPemFile2); if (rc) { return errmsg("Failed to set the second private key from file (rc = 0x%x)\n", rc); } int privKey1Length = rsa1.getPrivKeyLength(); int privKey2Length = rsa2.getPrivKeyLength(); if ((privKey1Length == 0x100) && (privKey2Length == 0x200)) { if (!FwInsertEncSHA(MlxSign::SHA512, privPemFile2, uuid2, printFunc)) { return false; } if (!FwInsertEncSHA(MlxSign::SHA256, privPemFile1, uuid1, printFunc)) { return false; } } else if ((privKey1Length == 0x200) && (privKey2Length == 0x100)) { if (!FwInsertEncSHA(MlxSign::SHA512, privPemFile1, uuid1, printFunc)) { return false; } if (!FwInsertEncSHA(MlxSign::SHA256, privPemFile2, uuid2, printFunc)) { return false; } } else { return errmsg("Unexpected length of keys (first key %d bytes, second key length %d)", privKey1Length, privKey2Length); } return true; #else (void)privPemFile1; (void)uuid1; (void)privPemFile2; (void)uuid2; (void)printFunc; return errmsg("FwSignWithTwoRSAKeys is not supported."); #endif } bool Fs3Operations::IsSectionExists(fs3_section_t sectType) { struct toc_info* curr_toc = (struct toc_info*)NULL; if (!Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, sectType, curr_toc)) { return false; } return true; } bool Fs3Operations::Fs3MemSetSignature(fs3_section_t sectType, u_int32_t size, PrintCallBack printFunc) { vector buff; if ((sectType != FS3_IMAGE_SIGNATURE_256) && (sectType != FS3_IMAGE_SIGNATURE_512)) { return false; } if (!FsIntQueryAux(false)) { return false; } if (!IsSectionExists(sectType)) { return true; } buff.resize(size, 0x0); if (!UpdateSection(buff.data(), sectType, false, CMD_SET_SIGNATURE, printFunc)) { return false; } return true; } bool Fs3Operations::SignForFwUpdate(const char* uuid, const MlxSign::Signer& signer, MlxSign::SHAType shaType, PrintCallBack printFunc) { if (_ioAccess->is_flash()) { return errmsg("Signing is not applicable for devices"); } if (shaType == MlxSign::SHA256) { if (!Fs3MemSetSignature(FS3_IMAGE_SIGNATURE_512, IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE, printFunc)) { return false; } } else if (shaType == MlxSign::SHA512) { if (!Fs3MemSetSignature(FS3_IMAGE_SIGNATURE_256, IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE, printFunc)) { return false; } } else { return errmsg("Unexpected type of SHA"); } vector fourMbImage; vector signature; vector sha; /** Get image data (image_signature,image_signature_2 sections masked with 0xff) */ if (!FwCalcSHA(shaType, sha, fourMbImage)) { return errmsg("SignForFwUpdate: Failed to read image"); } /** Sign image data */ int rc = signer.Sign(fourMbImage, signature); if (rc) { return errmsg("SignForFwUpdate: Failed to create secured FW signature (rc = 0x%x)", rc); } /** Store FW update signature in section */ if (!InsertSecureFWSignature(signature, uuid, shaType, printFunc)) { return errmsg("SignForFwUpdate: Failed to insert secured FW signature\n"); } return true; } bool Fs3Operations::FwInsertEncSHA(MlxSign::SHAType shaType, const char* privPemFile, const char* uuid, PrintCallBack printFunc) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) MlxSignRSA rsa; int rc; vector sha, encSha, sig; vector uuidData; struct image_layout_image_signature image_signature_256; struct image_layout_image_signature_2 image_signature_512; if (_ioAccess->is_flash()) { return errmsg("Signing is not applicable for devices"); } if (!extractUUIDFromString(uuid, uuidData)) { return false; } if ((uuidData.size() << 2) != sizeof(image_signature_256.keypair_uuid)) { return errmsg("Mismatching UUID size(%d), expected %d bytes", (int)uuidData.size() << 2, (int)sizeof(image_signature_256.keypair_uuid)); } vector fourMbImage; if (!FwCalcSHA(shaType, sha, fourMbImage)) { return false; } /* Sign the SHA256: */ string privPemFileStr(privPemFile); rc = rsa.setPrivKeyFromFile(privPemFileStr); if (rc) { return errmsg("Failed to set private key from file (rc = 0x%x)\n", rc); } rc = rsa.sign(shaType, sha, encSha); if (rc) { return errmsg("Failed to encrypt the SHA (rc = 0x%x)\n", rc); } if (shaType == MlxSign::SHA256) { memset(&image_signature_256, 0, sizeof(image_signature_256)); memcpy(image_signature_256.signature, encSha.data(), encSha.size()); TOCPUn(image_signature_256.signature, encSha.size() >> 2); memcpy(image_signature_256.keypair_uuid, uuidData.data(), uuidData.size() << 2); sig.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE, 0x0); image_layout_image_signature_pack(&image_signature_256, sig.data()); if (!UpdateSection(sig.data(), FS3_IMAGE_SIGNATURE_256, false, CMD_SET_SIGNATURE, printFunc)) { return false; } } else if (shaType == MlxSign::SHA512) { memset(&image_signature_512, 0, sizeof(image_signature_512)); memcpy(image_signature_512.signature, encSha.data(), encSha.size()); TOCPUn(image_signature_512.signature, encSha.size() >> 2); memcpy(image_signature_512.keypair_uuid, uuidData.data(), uuidData.size() << 2); sig.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE, 0x0); image_layout_image_signature_2_pack(&image_signature_512, sig.data()); if (!UpdateSection(sig.data(), FS3_IMAGE_SIGNATURE_512, false, CMD_SET_SIGNATURE, printFunc)) { return false; } } else { return errmsg("Unexpected type of SHA"); } if (!FsIntQueryAux(false, false)) { return false; } return true; #else /* if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) */ (void)shaType; (void)privPemFile; (void)uuid; (void)printFunc; return errmsg("FwInsertEncSHA256 is not supported."); #endif /* if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) */ } bool Fs3Operations::FwInsertSHA256(PrintCallBack printFunc) { vector sha, sig; struct image_layout_image_signature image_signature_256; if (_ioAccess->is_flash()) { return errmsg("Signing is not applicable for devices"); } vector fourMbImage; if (!FwCalcSHA(MlxSign::SHA256, sha, fourMbImage)) { return false; } memset(&image_signature_256, 0, sizeof(image_signature_256)); memcpy(image_signature_256.signature, sha.data(), sha.size()); TOCPUn(image_signature_256.signature, sha.size() >> 2); sig.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); image_layout_image_signature_pack(&image_signature_256, sig.data()); if (!UpdateSection(sig.data(), FS3_IMAGE_SIGNATURE_256, false, CMD_SET_SIGNATURE, printFunc)) { return false; } if (!FsIntQueryAux(false, false)) { return false; } return true; } bool Fs3Operations::CheckPublicKeysFile(const char* fname, fs3_section_t& sectionType, bool silent) { int publicKeysSize = 0; u_int8_t* publicKeysData = (u_int8_t*)NULL; if (!ReadBinFile(fname, publicKeysData, publicKeysSize)) { return false; } if ((publicKeysSize < IMAGE_LAYOUT_FILE_PUBLIC_KEYS_SIZE) || (publicKeysSize < IMAGE_LAYOUT_FILE_PUBLIC_KEYS_2_SIZE)) { delete[] publicKeysData; return errmsg("Invalid size (%d bytes) of public keys file", publicKeysSize); } /* try to parse as cx4fw_public_key_2048: */ struct image_layout_file_public_keys image_layout_file_public_keys; memset(&image_layout_file_public_keys, 0x0, sizeof(image_layout_file_public_keys)); image_layout_file_public_keys_unpack(&image_layout_file_public_keys, publicKeysData); if (image_layout_file_public_keys.component_authentication_configuration.auth_type == 0x3) { sectionType = FS3_PUBLIC_KEYS_2048; } else { /* Try to parse it as 4096 */ struct image_layout_file_public_keys_2 image_layout_file_public_keys_2; memset(&image_layout_file_public_keys_2, 0x0, sizeof(image_layout_file_public_keys_2)); image_layout_file_public_keys_2_unpack(&image_layout_file_public_keys_2, publicKeysData); if (image_layout_file_public_keys_2.component_authentication_configuration.auth_type == 0x4) { sectionType = FS3_PUBLIC_KEYS_4096; } else { delete[] publicKeysData; if (silent == false) { return errmsg("Invalid type of key found in the public keys file"); } else { return false; /* without print message */ } } } delete[] publicKeysData; return true; } bool Fs3Operations::FwSetPublicKeys(char* fname, PrintCallBack callBackFunc) { fs3_section_t sectionType; if (!fname) { return errmsg("Please specify a valid public keys file."); } if (_ioAccess->is_flash()) { return errmsg("Setting Public Keys is not applicable for devices."); } if (!CheckPublicKeysFile(fname, sectionType)) { return false; } if (!UpdateSection(fname, sectionType, false, CMD_SET_PUBLIC_KEYS, callBackFunc)) { return false; } if (!FsIntQueryAux(false, false)) { return false; } INSERT_SHA_IF_NEEDS(callBackFunc); return true; } bool Fs3Operations::FwSetForbiddenVersions(char* fname, PrintCallBack callBackFunc) { if (!fname) { return errmsg("Please specify a valid forbidden versions file."); } if (_ioAccess->is_flash()) { return errmsg("Setting Forbidden Versions is not applicable for devices."); } if (!UpdateSection(fname, FS3_FORBIDDEN_VERSIONS, false, CMD_SET_FORBIDDEN_VERSIONS, callBackFunc)) { return false; } if (!FsIntQueryAux(false, false)) { return false; } INSERT_SHA_IF_NEEDS(callBackFunc); return true; } u_int32_t Fs3Operations::getImageSize() { return _fs3ImgInfo.sizeOfImgData - _fwImgInfo.imgStart; } bool Fs3Operations::GetImageDataForSign(MlxSign::SHAType shaType, vector& img) { if (!FwExtract4MBImage(img, true)) { return false; } if (shaType == MlxSign::SHA256) { MaskItocSectionAndEntry(FS3_IMAGE_SIGNATURE_256, img); } else if (shaType == MlxSign::SHA512) { MaskItocSectionAndEntry(FS3_IMAGE_SIGNATURE_256, img); MaskItocSectionAndEntry(FS3_IMAGE_SIGNATURE_512, img); } else { return errmsg("Unexpected type of SHA"); } return true; } bool Fs3Operations::FwExtract4MBImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose, bool ignoreImageStart) { u_int32_t size = 0; if (!FsIntQueryAux(true, false, false, verbose)) { return false; } size = getImageSize(); /* copy */ img.resize(size); if (ignoreImageStart) { _imageCache.get(img.data(), 0, size); } else { _imageCache.get(img.data(), _fwImgInfo.imgStart, size); } if (maskMagicPatternAndDevToc) { /* set magic patterns to 0xFF */ memset(img.data(), 0xFF, 16); maskDevToc(img); } return true; } void Fs3Operations::MaskItocSectionAndEntry(u_int32_t itocType, vector& img) { for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { if (_fs3ImgInfo.tocArr[i].toc_entry.type == itocType) { u_int32_t tocEntryAddr = _fs3ImgInfo.tocArr[i].entry_addr; u_int32_t tocEntryDataAddr = _fs3ImgInfo.tocArr[i].toc_entry.flash_addr << 2; memset(img.data() + tocEntryAddr, 0xFF, TOC_ENTRY_SIZE); memset(img.data() + tocEntryDataAddr, 0xFF, _fs3ImgInfo.tocArr[i].toc_entry.size << 2); } } } bool writeToFile(string filePath, const std::vector buff) { FILE* fh = fopen(filePath.c_str(), "wb"); if (fh == NULL) { return false; } /* Write */ if (fwrite(&buff[0], 1, buff.size(), fh) != buff.size()) { fclose(fh); return false; } fclose(fh); return true; } void Fs3Operations::maskDevToc(vector& img) { /* set device itocs entries to 0xFF */ for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { if (_fs3ImgInfo.tocArr[i].toc_entry.device_data) { u_int32_t tocEntryAddr = _fs3ImgInfo.tocArr[i].entry_addr; memset(img.data() + tocEntryAddr, 0xFF, TOC_ENTRY_SIZE); } } } bool Fs3Operations::CreateDtoc(vector& img, u_int8_t* SectionData, u_int32_t section_size, u_int32_t flash_data_addr, fs3_section_t section, u_int32_t tocEntryAddr, bool IsCRC) { struct toc_info itoc_info_p; memset(&itoc_info_p.data, 0, sizeof(itoc_info_p.data)); memset(&itoc_info_p.toc_entry, 0, sizeof(struct cibfw_itoc_entry)); itoc_info_p.section_data.resize(section_size, 0xff); itoc_info_p.entry_addr = tocEntryAddr; struct cibfw_itoc_entry* toc_entry = &(itoc_info_p.toc_entry); toc_entry->size = section_size >> 2; toc_entry->type = (u_int8_t)section; if (!IsCRC) { toc_entry->no_crc = 1; } else { toc_entry->no_crc = 0; } toc_entry->device_data = 1; toc_entry->flash_addr = flash_data_addr >> 2; u_int32_t new_crc = CalcImageCRC((u_int32_t*)SectionData, toc_entry->size); toc_entry->section_crc = new_crc; CalcItocEntryCRC(&itoc_info_p); u_int8_t itoc_data[CIBFW_ITOC_ENTRY_SIZE] = {0}; cibfw_itoc_entry_pack(toc_entry, itoc_data); memcpy(img.data() + tocEntryAddr, itoc_data, CIBFW_ITOC_ENTRY_SIZE); return true; } bool Fs3Operations::RemoveWriteProtection() { if (((Flash*)_ioAccess)->is_flash_write_protected() == false) { return true; } mflash* mfl = (mflash*)NULL; int retries = 0; /* disable write protection: */ ext_flash_attr_t attr; memset(&attr, 0x0, sizeof(attr)); if (!((Flash*)_ioAccess)->get_attr(attr)) { return false; } mfl = ((Flash*)_ioAccess)->getMflashObj(); write_protect_info_t protect_info; memset(&protect_info, 0, sizeof(protect_info)); for (unsigned int i = 0; i < attr.banks_num; i++) { int rc = mf_set_write_protect(mfl, i, &protect_info); if (rc != MFE_OK) { errmsg("Failed to disable flash write protection: %s", mf_err2str(rc)); delete[] attr.type_str; return false; } } while (((Flash*)_ioAccess)->is_flash_write_protected() && retries++ < 10) { msleep(500); } if (retries == 10) { errmsg("Failed to disable flash write protection"); return false; } return true; } bool Fs3Operations::RestoreDevToc(vector& img, char* psid, dm_dev_id_t devid_t, const image_layout_uid_entry& base_guid, const image_layout_uid_entry& base_mac) { (void)devid_t; u_int32_t tocEntryAddr = 0; u_int32_t flash_data_addr = 0; img.resize(0x1000000, 0xff); for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { tocEntryAddr = _fs3ImgInfo.tocArr[i].entry_addr; } /*NV_DATA0*/ tocEntryAddr += TOC_ENTRY_SIZE; /* goto free space */ u_int8_t NvDataSectionData[CONNECTX4LX_NV_DATA_SIZE] = {0}; flash_data_addr = 0x0fa0000; memcpy(img.data() + flash_data_addr, NvDataSectionData, CONNECTX4LX_NV_DATA_SIZE); CreateDtoc(img, NvDataSectionData, CONNECTX4LX_NV_DATA_SIZE, flash_data_addr, FS3_NV_DATA0, tocEntryAddr, false); /*NV_DATA2*/ tocEntryAddr += TOC_ENTRY_SIZE; /* goto free space */ flash_data_addr = 0x0fb0000; memcpy(img.data() + flash_data_addr, NvDataSectionData, CONNECTX4LX_NV_DATA_SIZE); CreateDtoc(img, NvDataSectionData, CONNECTX4LX_NV_DATA_SIZE, flash_data_addr, FS3_NV_DATA2, tocEntryAddr, false); /*NV_LOG*/ tocEntryAddr += TOC_ENTRY_SIZE; /* goto free space */ u_int8_t NvLogSectionData[CONNECTX4LX_NV_DATA_SIZE] = {0}; flash_data_addr = 0x0fc0000; memcpy(img.data() + flash_data_addr, NvLogSectionData, CONNECTX4LX_NV_DATA_SIZE); CreateDtoc(img, NvLogSectionData, CONNECTX4LX_NV_DATA_SIZE, flash_data_addr, FS3_FW_NV_LOG, tocEntryAddr, false); /*DEV_INFO*/ tocEntryAddr += TOC_ENTRY_SIZE; /* goto free space */ struct cx4fw_device_info cx4_dev_info; u_int8_t DeviceSectionData[CX4FW_DEVICE_INFO_SIZE] = {0}; memset(&cx4_dev_info, 0, sizeof(cx4_dev_info)); cx4_dev_info.major_version = 2; cx4_dev_info.minor_version = 0; cx4_dev_info.signature0 = 0x6d446576; cx4_dev_info.signature1 = 0x496e666f; cx4_dev_info.signature2 = 0x2342cafa; cx4_dev_info.signature3 = 0xbacafe00; cx4_dev_info.guids.guids.num_allocated = base_guid.num_allocated; cx4_dev_info.guids.guids.step = base_guid.step; cx4_dev_info.guids.guids.uid = base_guid.uid; /* 0x7cfe9003002c6c8cULL; */ cx4_dev_info.guids.macs.num_allocated = base_mac.num_allocated; cx4_dev_info.guids.macs.step = base_mac.step; cx4_dev_info.guids.macs.uid = base_mac.uid; /* 0x7cfe9003002c6c8cULL; */ cx4_dev_info.vsd_vendor_id = 0x15b3; flash_data_addr = 0xfee000; cx4fw_device_info_pack(&cx4_dev_info, DeviceSectionData); if (img.size() < flash_data_addr + CX4FW_DEVICE_INFO_SIZE) { img.resize(flash_data_addr + CX4FW_DEVICE_INFO_SIZE, 0xff); } memcpy(img.data() + flash_data_addr, DeviceSectionData, CX4FW_DEVICE_INFO_SIZE); CreateDtoc(img, DeviceSectionData, CX4FW_DEVICE_INFO_SIZE, flash_data_addr, FS3_DEV_INFO, tocEntryAddr, true); /*MFG_INFO*/ tocEntryAddr += TOC_ENTRY_SIZE; /* goto free space */ struct cx4fw_mfg_info cx4_mfg_info; u_int8_t MfgInfoData[CX4FW_MFG_INFO_SIZE] = {0}; memset(&cx4_mfg_info, 0, sizeof(cx4_mfg_info)); cx4_mfg_info.major_version = 1; cx4_mfg_info.minor_version = 0; cx4_mfg_info.guids_override_en = 1; /* get the GUIDs from DEV_INFO */ cx4_mfg_info.guids.guids.num_allocated = base_guid.num_allocated; cx4_mfg_info.guids.guids.step = base_guid.step; cx4_mfg_info.guids.guids.uid = base_guid.uid; cx4_mfg_info.guids.macs.num_allocated = base_mac.num_allocated; cx4_mfg_info.guids.macs.step = base_mac.step; cx4_mfg_info.guids.macs.uid = base_mac.uid; strncpy(cx4_mfg_info.psid, psid, PSID_LEN); cx4fw_mfg_info_pack(&cx4_mfg_info, MfgInfoData); flash_data_addr = 0xff8000; if (img.size() < flash_data_addr + CX4FW_MFG_INFO_SIZE) { img.resize(flash_data_addr + CX4FW_MFG_INFO_SIZE, 0xff); } memcpy(img.data() + flash_data_addr, MfgInfoData, CX4FW_MFG_INFO_SIZE); CreateDtoc(img, MfgInfoData, CX4FW_MFG_INFO_SIZE, flash_data_addr, FS3_MFG_INFO, tocEntryAddr, true); /*VPD_R0*/ tocEntryAddr += TOC_ENTRY_SIZE; /* goto free space */ CreateDtoc(img, NULL, 0, flash_data_addr + CX4FW_MFG_INFO_SIZE, FS3_VPD_R0, tocEntryAddr, true); return true; } bool Fs3Operations::FwCalcSHA(MlxSign::SHAType shaType, vector& sha, vector& fourMbImage) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) vector img; MlxSignSHA* mlxSignSHA = NULL; FwInit(); _imageCache.clear(); if (!GetImageDataForSign(shaType, img)) { return false; } if (shaType == MlxSign::SHA256) { mlxSignSHA = new MlxSignSHA256(); } else if (shaType == MlxSign::SHA512) { mlxSignSHA = new MlxSignSHA512(); } else { return errmsg("Unexpected type of SHA"); } (*mlxSignSHA) << img; fourMbImage.resize(img.size()); for (unsigned int i = 0; i < img.size(); i++) { fourMbImage[i] = img[i]; } mlxSignSHA->getDigest(sha); delete mlxSignSHA; return true; #else (void)shaType; (void)sha; (void)fourMbImage; return errmsg("FwCalcSHA is not supported."); #endif } #define PUSH_DEV_DATA(vec) \ vec.push_back(FS3_MFG_INFO); \ vec.push_back(FS3_DEV_INFO); \ vec.push_back(FS3_NV_DATA0); \ vec.push_back(FS3_NV_DATA1); \ vec.push_back(FS3_NV_DATA2); \ vec.push_back(FS3_FW_NV_LOG); \ vec.push_back(FS3_VPD_R0) #define POP_DEV_DATA(vec) \ vec.pop_back(); \ vec.pop_back(); \ vec.pop_back(); \ vec.pop_back(); \ vec.pop_back(); \ vec.pop_back(); \ vec.pop_back() bool Fs3Operations::TocComp::operator()(toc_info* elem1, toc_info* elem2) { u_int32_t absAddr1 = (elem1->toc_entry.flash_addr << 2) + (elem1->toc_entry.relative_addr ? _startAdd : 0); u_int32_t absAddr2 = (elem2->toc_entry.flash_addr << 2) + (elem2->toc_entry.relative_addr ? _startAdd : 0); if (absAddr1 < absAddr2) { return true; } return false; } bool Fs3Operations::FwShiftDevData(PrintCallBack progressFunc) { if (!_ioAccess->is_flash()) { return errmsg("cannot shift device data sections on Image."); } const char* flashType = ((Flash*)_ioAccess)->getFlashType(); if (flashType == NULL) { return errmsg("Cannot shift device data on old flash types."); } if (strcasecmp(flashType, "N25Q0XX") != 0) { return errmsg("Cannot shift device data on flash type %s.", flashType); } /* query device and get device data sectors. */ PUSH_DEV_DATA(_readSectList); if (!FsIntQueryAux()) { POP_DEV_DATA(_readSectList); return false; } POP_DEV_DATA(_readSectList); if (_fwImgInfo.ext_info.chip_type != CT_CONNECT_IB) { return errmsg("Cannot shift device data. Unsupported device."); } u_int32_t lastFwDataAddr; u_int32_t firstDevDataAddr; if (!getLastFwSAddr(lastFwDataAddr) || !getFirstDevDataAddr(firstDevDataAddr)) { return errmsg("Failed to get ITOC information."); } /* check if we already shifted */ struct toc_info* mfgToc = (struct toc_info*)NULL; if (!Fs3GetItocInfo(_fs3ImgInfo.tocArr, _fs3ImgInfo.numOfItocs, FS3_MFG_INFO, mfgToc)) { return errmsg("Failed to get MFG_INFO ITOC information."); } if (getAbsAddr(mfgToc) < _ioAccess->get_effective_size() - (((Flash*)(_ioAccess))->get_sector_size())) { return errmsg("Device data sections already shifted."); } /* check if we can shift all dev data sections by 60KB */ if (lastFwDataAddr > (firstDevDataAddr - SHIFT_SIZE)) { return errmsg("Cannot shift device data sections, fw image is too big."); } /* for each device data section move it by an offset of 60kb (0xf000) */ PRINT_PROGRESS(progressFunc, (char*)"Shifting dev data section - "); /* possible problem : if itoc array isnt ordered by ascending flash address and dev data sections are larger that */ /* 60kb there is a chance we runover exsisting device data sections Fix : preform the section shift by order from */ /* the lowest addresss to the highest. */ std::vector sortedTocs(_fs3ImgInfo.numOfItocs); for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { sortedTocs[i] = &(_fs3ImgInfo.tocArr[i]); } std::sort(sortedTocs.begin(), sortedTocs.end(), TocComp(_fwImgInfo.imgStart)); /* shift the location of device data sections by SHIFT_SIZE (60kb) */ for (std::vector::iterator it = sortedTocs.begin(); it != sortedTocs.end(); it++) { if ((*it)->toc_entry.device_data) { /* update the itoc (basically update the flash_addr and itoc entry crc) */ struct toc_info* currToc = *it; if (!Fs3UpdateItocInfo(currToc, ((currToc->toc_entry.flash_addr << 2) - SHIFT_SIZE))) { PRINT_PROGRESS(progressFunc, (char*)"FAILED\n"); return false; } /* write the section to its new place in the flash */ if (!writeImage((ProgressCallBack)NULL, getAbsAddr(currToc), (u_int8_t*)&currToc->section_data[0], (currToc->toc_entry.size << 2), true, true)) { PRINT_PROGRESS(progressFunc, (char*)"FAILED\n"); return false; } } } PRINT_PROGRESS(progressFunc, (char*)"OK\n"); /* update itoc section */ if (!reburnItocSection(progressFunc)) { return false; } return true; } bool Fs3Operations::CheckItocArrConsistency(std::vector& sortedTocVec, u_int32_t imageStartAddr) { u_int32_t sectEndAddr = 0, nextSectStrtAddr = 0; std::vector::iterator it = sortedTocVec.begin(), itNext = sortedTocVec.begin(); itNext++; for (; itNext != sortedTocVec.end(); it++, itNext++) { sectEndAddr = getAbsAddr(*it, imageStartAddr) + ((*it)->toc_entry.size << 2) - 1; nextSectStrtAddr = getAbsAddr(*itNext, imageStartAddr); if (sectEndAddr >= nextSectStrtAddr) { return errmsg("inconsistency found in ITOC. %s(0x%x) section will potentially overwrite %s(0x%x) section.", GetSectionNameByType((*it)->toc_entry.type), (*it)->toc_entry.type, GetSectionNameByType((*itNext)->toc_entry.type), (*itNext)->toc_entry.type); } } return true; } bool Fs3Operations::CheckItocArray() { /* sort the itocs */ std::vector sortedTocs(_fs3ImgInfo.numOfItocs); for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { sortedTocs[i] = &(_fs3ImgInfo.tocArr[i]); } std::sort(sortedTocs.begin(), sortedTocs.end(), TocComp(0)); /* check for inconsistency image burnt on 1st half */ if (!CheckItocArrConsistency(sortedTocs, 0)) { return false; } std::sort(sortedTocs.begin(), sortedTocs.end(), TocComp((1 << _fwImgInfo.cntxLog2ChunkSize))); /* check for inconsistency image burn on second half */ if (!CheckItocArrConsistency(sortedTocs, (1 << _fwImgInfo.cntxLog2ChunkSize))) { return false; } return true; } bool Fs3Operations::IsCriticalSection(u_int8_t sect_type) { if ((sect_type != FS3_PCIE_LINK_CODE) && (sect_type != FS3_PCIE_PHY_UC_CODE) && (sect_type != FS3_HW_BOOT_CFG)) { return false; } return true; } bool Fs3Operations::PrepItocSectionsForCompare(vector& critical, vector& non_critical) { if (_internalQueryPerformed == false) { if (!FsIntQueryAux(true, false, false, true)) { return false; } } for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { struct toc_info* itoc_info_p = &(_fs3ImgInfo.tocArr[i]); /* struct fs4_toc_info *itoc_info_p = &this->_fs3ImgInfo.itocArr.tocArr[i]; */ struct cibfw_itoc_entry* toc_entry = &(itoc_info_p->toc_entry); if (IsCriticalSection(toc_entry->type)) { critical.reserve(critical.size() + itoc_info_p->section_data.size()); critical.insert(critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); /* printf("-D- addr 0x%.8x toc type : 0x%.8x size 0x%.8x name %s\n", itoc_info_p->entry_addr, */ /* itoc_info_p->toc_entry.type, (unsigned int)(itoc_info_p->section_data.size() + padding_size), */ /* GetSectionNameByType(itoc_info_p->toc_entry.type)); */ } else { if ((itoc_info_p->toc_entry.type == FS3_VPD_R0) || (itoc_info_p->toc_entry.type == FS3_MFG_INFO) || (itoc_info_p->toc_entry.type == FS3_DEV_INFO) || (itoc_info_p->toc_entry.type == FS3_NV_DATA1) || (itoc_info_p->toc_entry.type == FS3_NV_DATA2) || (itoc_info_p->toc_entry.type == FS3_FW_NV_LOG) || (itoc_info_p->toc_entry.type == FS3_NV_DATA0)) { continue; } /* printf("-D- addr 0x%.8x flash addr 0x%.8x toc type : 0x%.8x size 0x%.8x name %s\n", */ /* itoc_info_p->entry_addr, toc_entry->flash_addr << 2, itoc_info_p->toc_entry.type, */ /* (unsigned int)itoc_info_p->section_data.size(), GetSectionNameByType(itoc_info_p->toc_entry.type)); */ non_critical.reserve(non_critical.size() + itoc_info_p->section_data.size()); non_critical.insert(non_critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); /* currentItoc++; */ } } return true; } const char* Fs3Operations::FwGetResetRecommandationStr() { #if defined(__VMKERNEL_UW_NATIVE__) /* mlxfwreset is not supported in VMWare ATM */ return REBOOT_REQUIRED_STR; #else if (!_isfuSupported) { return REBOOT_REQUIRED_STR; } return REBOOT_OR_FWRESET_REQUIRED_STR; #endif } const char* Fs3Operations::FwGetReSignMsgStr() { if (!_ioAccess->is_flash() && (_fs3ImgInfo.ext_info.security_mode & SMM_SIGNED_FW)) { return RESIGN_MSG; } return (const char*)NULL; } bool Fs3Operations::Fs3IsfuActivateImage(u_int32_t newImageStart) { int rc = 0; mfile* mf = _ioAccess->is_flash() ? ((Flash*)_ioAccess)->getMfileObj() : (mfile*)NULL; struct cibfw_register_mfai mfai; struct reg_access_hca_mfrl_reg_ext mfrl; memset(&mfai, 0, sizeof(mfai)); memset(&mfrl, 0, sizeof(mfrl)); if (!mf) { return errmsg("Failed to activate image. No mfile object found."); } mfai.address = newImageStart; mfai.use_address = 1; rc = reg_access_mfai(mf, REG_ACCESS_METHOD_SET, &mfai); if (!rc) { /* send warm boot (bit 6) */ mfrl.reset_trigger = 1 << 6; rc = reg_access_mfrl(mf, REG_ACCESS_METHOD_SET, &mfrl); /* ignore ME_REG_ACCESS_BAD_PARAM error for old FW */ rc = (rc == ME_REG_ACCESS_BAD_PARAM) ? ME_OK : rc; } if (rc) { return errmsg("Failed to activate image. %s", m_err2str((MError)rc)); } return true; } bool Fs3Operations::FwCalcMD5(u_int8_t md5sum[16]) { #if defined(UEFI_BUILD) || defined(NO_CS_CMD) (void)md5sum; return errmsg("Operation not supported"); #else if (!FsIntQueryAux(true, false)) { return false; } /* push beggining of image to md5buff */ int sz = FS3_BOOT_START + _fwImgInfo.boot2Size; std::vector md5buff(sz, 0); _imageCache.get(&(md5buff[0]), sz); /* push all non dev data sections to md5buff */ for (unsigned int j = 0; j < TOC_HEADER_SIZE; j++) { md5buff.push_back(_imageCache[_fs3ImgInfo.itocAddr + j]); } /* push itoc header */ for (int i = 0; i < _fs3ImgInfo.numOfItocs; i++) { /* push each non-dev-data section to md5sum buffer */ u_int32_t tocEntryAddr = _fs3ImgInfo.tocArr[i].entry_addr; u_int32_t tocDataAddr = _fs3ImgInfo.tocArr[i].toc_entry.flash_addr << 2; u_int32_t tocDataSize = _fs3ImgInfo.tocArr[i].toc_entry.size << 2; if (!_fs3ImgInfo.tocArr[i].toc_entry.device_data) { /* itoc entry */ for (unsigned int j = 0; j < TOC_ENTRY_SIZE; j++) { md5buff.push_back(_imageCache[tocEntryAddr + j]); } /* itoc data */ for (unsigned int j = 0; j < tocDataSize; j++) { md5buff.push_back(_imageCache[tocDataAddr + j]); } } } /* calc md5 */ tools_md5(&md5buff[0], md5buff.size(), md5sum); return true; #endif } Tlv_Status_t Fs3Operations::GetTsObj(TimeStampIFC** tsObj) { if (_ioAccess->is_flash()) { *tsObj = TimeStampIFC::getIFC(((Flash*)(_ioAccess))->getMfileObj()); } else { /* check if buffer or file and allocate accrodingly */ if (_fwParams.hndlType == FHT_FW_FILE) { *tsObj = TimeStampIFC::getIFC(_fname, _fwImgInfo.lastImageAddr); } else if (_fwParams.hndlType == FHT_FW_BUFF) { *tsObj = TimeStampIFC::getIFC((u_int8_t*)((FImage*)_ioAccess)->getBuf(), ((FImage*)_ioAccess)->getBufLength()); } else { *tsObj = (TimeStampIFC*)NULL; errmsg("Unsupported FW handle type."); return TS_HANDLE_NOT_SUPPORTED; } } Tlv_Status_t rc = (*tsObj)->init(); if (rc) { errmsg("%s", (*tsObj)->err()); delete *tsObj; *tsObj = (TimeStampIFC*)NULL; return rc; } return TS_OK; } bool Fs3Operations::FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) { TimeStampIFC* tsObj = NULL; Tlv_Status_t rc; if (!_ioAccess->is_flash() && !FsIntQueryAux(false, true)) { return false; } if (GetTsObj(&tsObj)) { return errmsg("Failed to set timestamp. %s", err()); } if (!_ioAccess->is_flash()) { /* if caller hasnt specified fw version take from image */ struct tools_open_fw_version zeroVer; memset(&zeroVer, 0, sizeof(zeroVer)); if (!memcmp(&fwVer, &zeroVer, sizeof(fwVer))) { fwVer.fw_ver_major = _fwImgInfo.ext_info.fw_ver[0]; fwVer.fw_ver_minor = _fwImgInfo.ext_info.fw_ver[1]; fwVer.fw_ver_subminor = _fwImgInfo.ext_info.fw_ver[2]; } } rc = tsObj->setTimeStamp(timestamp, fwVer); if (rc) { errmsg("%s", tsObj->err()); } delete tsObj; return rc ? false : true; } bool Fs3Operations::FwResetTimeStamp() { TimeStampIFC* tsObj = NULL; Tlv_Status_t rc; if (!_ioAccess->is_flash() && !FsIntQueryAux(false, true)) { return false; } if (GetTsObj(&tsObj)) { return errmsg("Failed to reset timestamp. %s", err()); } rc = tsObj->resetTimeStamp(); if (rc) { errmsg("%s", tsObj->err()); } delete tsObj; return rc ? false : true; } bool Fs3Operations::FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning) { TimeStampIFC* tsObj = NULL; Tlv_Status_t rc; if (!_ioAccess->is_flash()) { if (queryRunning) { return errmsg("cannot get running FW Timestamp on image file"); } if (!FsIntQueryAux(false, true)) { return false; } } if (GetTsObj(&tsObj)) { return errmsg("Failed to query timestamp. %s", err()); } rc = tsObj->queryTimeStamp(timestamp, fwVer, queryRunning); if (rc) { errmsg("%s", tsObj->err()); } delete tsObj; return rc ? false : true; } bool Fs3Operations::RomCommonCheck(bool ignoreProdIdCheck, bool checkIfRomEmpty) { if (getInfoFromChipType(_fwImgInfo.ext_info.chip_type).chipFamilyType != CFT_HCA) { return errmsg("Updating ROM is supported only for HCA devices."); } if (checkIfRomEmpty && _romSect.empty()) { return errmsg("The FW does not contain a ROM section"); } if (!ignoreProdIdCheck && (strcmp(_fwImgInfo.ext_info.product_ver, "") != 0)) { return errmsg("The device FW contains common FW/ROM Product Version - " "The ROM cannot be updated separately."); } /* Deleting ROM is not allowed on Device with Timestamp enabled. */ if (DeviceTimestampEnabled()) { return errmsg("A valid Timestamp was detected on device." " ROM cannot be updated. reset timestamp and resume operation"); } return true; } bool Fs3Operations::DeviceTimestampEnabled() { Tlv_Status_t rc; Tlv_Status_t queryNextTsRc; Tlv_Status_t queryRunningTsRc; TimeStampIFC* devTsObj = NULL; struct tools_open_ts_entry devTs; struct tools_open_fw_version devFwVer; memset(&devTs, 0, sizeof(devTs)); memset(&devFwVer, 0, sizeof(devFwVer)); if (!_ioAccess->is_flash()) { return false; } if (_fwParams.ignoreCacheRep) { /* direct flash assume no TS */ return false; } rc = GetTsObj(&devTsObj); if (rc) { return false; } /* TS supported, make sure no valid TS is set */ queryRunningTsRc = devTsObj->queryTimeStamp(devTs, devFwVer, true); queryNextTsRc = devTsObj->queryTimeStamp(devTs, devFwVer); /* Cleanup */ delete devTsObj; if ((queryRunningTsRc == TS_OK) || (queryNextTsRc == TS_OK)) { return true; } return false; } bool Fs3Operations::CalcHMAC(const vector& key, vector& digest) { /*The function assume that the Query was done before calling it.*/ #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) vector data; if (!FwExtract4MBImage(data, false)) { return errmsg("Failed to retrieve FW Image"); } /* mask hmac itoc entry and section */ MaskItocSectionAndEntry(FS3_HMAC_DIGEST, data); /* mask magic pattern (First 16 bytes): */ for (unsigned int i = 0; i < 16; i++) { data[i] = 0xFF; } /* Remove the HMAC section from the end of the buffer */ u_int32_t hmacSectionSize = 0x0; u_int32_t hmacSectionOffset = 0x0; if (!GetSectionSizeAndOffset(FS3_HMAC_DIGEST, hmacSectionSize, hmacSectionOffset)) { return errmsg("HMAC section is not found\n"); } for (unsigned int i = 0; i < hmacSectionSize; i++) { data.pop_back(); } if (hmacSectionOffset != data.size()) { return errmsg("HMAC section is not the last section in the FW data\n"); } MlxSignHMAC mlxSignHMAC; mlxSignHMAC.setKey(key); mlxSignHMAC << data; mlxSignHMAC.getDigest(digest); return true; #else (void)key; (void)digest; return errmsg("HMAC calculation is not implemented\n"); #endif } bool Fs3Operations::invalidateOldFWImages(const u_int32_t magic_pattern[], Flash* flash_access, u_int32_t new_image_start) { u_int32_t zeroes = 0; u_int32_t image_start_addrs[CNTX_START_POS_SIZE] = {0}; u_int32_t num_of_images_found; DPRINTF(("Fs3Operations::invalidateOldFWImages new_image_start=0x%08x\n", new_image_start)); FindAllImageStart(flash_access, image_start_addrs, &num_of_images_found, magic_pattern); /* Address convertor is disabled after FindAllImageStart() - use phys addresses */ for (u_int32_t i = 0; i < num_of_images_found; i++) { if (image_start_addrs[i] != new_image_start) { DPRINTF(("Fs3Operations::invalidateOldFWImages - Invalidating old fw signature at addr 0x%x\n", image_start_addrs[i])); if (!flash_access->write(image_start_addrs[i], &zeroes, sizeof(zeroes), true)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Failed to invalidate old fw signature: %s", flash_access->err()); } } } return true; } bool Fs3Operations::bootAddrUpdate(Flash* flash_access, u_int32_t new_image_start, ExtBurnParams& burnParams) { bool boot_address_was_updated = true; /* if we access without cache replacement or the burn was non failsafe, update YU bootloaders. */ /* if we access with cache replacement notify currently running fw of new image start address to crspace (for SW */ /* reset) */ if (!SUPPORTS_ISFU(_fwImgInfo.ext_info.chip_type) || !burnParams.burnFailsafe || flash_access->get_ignore_cache_replacment()) { boot_address_was_updated = flash_access->update_boot_addr(new_image_start); } else { _isfuSupported = Fs3IsfuActivateImage(new_image_start); boot_address_was_updated = _isfuSupported; } return boot_address_was_updated; } bool Fs3Operations::DoAfterBurnJobs(const u_int32_t magic_pattern[], Fs3Operations& imageOps, ExtBurnParams& burnParams, Flash* flash_access, u_int32_t new_image_start, u_int8_t is_curr_image_in_odd_chunks) { u_int32_t zeroes = 0; bool boot_address_was_updated = bootAddrUpdate(flash_access, new_image_start, burnParams); if (imageOps._fwImgInfo.ext_info.is_failsafe) { if (!burnParams.burnFailsafe) { /* When burning in nofs, remnant of older image with different chunk size */ /* may reside on the flash - */ /* Invalidate all images marking on flash except the one we've just burnt */ if (!invalidateOldFWImages(magic_pattern, flash_access, new_image_start)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Failed to invalidate old fw signature: %s", flash_access->err()); } } else { /* invalidate previous signature */ if (_fwImgInfo.imgStart == 0x800000) { flash_access->set_address_convertor(0x17, is_curr_image_in_odd_chunks); } else if (_fwImgInfo.imgStart == 0x400000) { flash_access->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, 1 /*is_curr_image_in_odd_chunks*/); } else { flash_access->set_address_convertor(imageOps._fwImgInfo.cntxLog2ChunkSize, is_curr_image_in_odd_chunks); } DPRINTF(("Fs3Operations::DoAfterBurnJobs - Invalidating old fw signature\n")); if (!flash_access->write(0, &zeroes, sizeof(zeroes), true)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Failed to invalidate old fw signature: %s", flash_access->err()); } } } if (boot_address_was_updated == false) { report_warn("Failed to update FW boot address. Power cycle the device in order to load the new FW.\n"); } return true; } bool Fs3Operations::InsertSecureFWSignature(vector signature, const char* uuid, MlxSign::SHAType shaType, PrintCallBack printFunc) { vector uuidData; if (!extractUUIDFromString(uuid, uuidData)) { return false; } if (shaType == MlxSign::SHA256) { struct image_layout_image_signature image_signature_256; memset(&image_signature_256, 0, sizeof(image_signature_256)); memcpy(image_signature_256.signature, signature.data(), signature.size()); TOCPUn(image_signature_256.signature, signature.size() >> 2); memcpy(image_signature_256.keypair_uuid, uuidData.data(), uuidData.size() << 2); vector image_signature_256_data; image_signature_256_data.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE, 0x0); image_layout_image_signature_pack(&image_signature_256, image_signature_256_data.data()); if (!UpdateSection(image_signature_256_data.data(), FS3_IMAGE_SIGNATURE_256, false, CMD_SET_SIGNATURE, printFunc)) { return false; } } else if (shaType == MlxSign::SHA512) { struct image_layout_image_signature_2 image_signature_512; memset(&image_signature_512, 0, sizeof(image_signature_512)); memcpy(image_signature_512.signature, signature.data(), signature.size()); TOCPUn(image_signature_512.signature, signature.size() >> 2); memcpy(image_signature_512.keypair_uuid, uuidData.data(), uuidData.size() << 2); vector image_signature_512_data; image_signature_512_data.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE, 0x0); image_layout_image_signature_2_pack(&image_signature_512, image_signature_512_data.data()); if (!UpdateSection(image_signature_512_data.data(), FS3_IMAGE_SIGNATURE_512, false, CMD_SET_SIGNATURE, printFunc)) { return false; } } else { return errmsg("Unexpected type of SHA"); } return true; } mstflint-4.26.0/mlxfwops/lib/fs5_ops.cpp0000644000175000017500000003320014522641732020410 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fs5_ops.h" #include "calc_hw_crc.h" #include "fs5_image_layout_layouts.h" u_int8_t Fs5Operations::FwType() { return FIT_FS5; } bool Fs5Operations::ParseHwPointers(VerifyCallBack verifyCallBackFunc) { DPRINTF(("Fs5Operations::ParseHwPointers\n")); u_int32_t buff[FS5_IMAGE_LAYOUT_HW_POINTERS_GILBOA_SIZE / 4] = {0}; fs5_image_layout_hw_pointers_gilboa hwPointers; u_int32_t hwPointersAddr = _fwImgInfo.imgStart + FS4_HW_PTR_START; if (!_ioAccess->read(hwPointersAddr, buff, FS5_IMAGE_LAYOUT_HW_POINTERS_GILBOA_SIZE)) { return errmsg("%s - read error (%s)\n", "FS5 HW Pointers", _ioAccess->err()); } // Fix pointers that are 0xFFFFFFFF for (unsigned int k = 0; k < FS5_IMAGE_LAYOUT_HW_POINTERS_GILBOA_SIZE / 4; k += 2) { if (buff[k] == 0xFFFFFFFF) { buff[k] = 0; // Fix pointer buff[k + 1] = 0; // Fix CRC } } for (unsigned int k = 0; k < FS5_IMAGE_LAYOUT_HW_POINTERS_GILBOA_SIZE / 4; k += 2) { u_int32_t* tempBuff = (u_int32_t*)buff; // Actual CRC: u_int32_t ptrCRC = tempBuff[k + 1]; TOCPUn(&ptrCRC, 1); // Compare with SW CRC: u_int32_t calcPtrCRC; u_int32_t calcPtrSWCRC = CalcImageCRC((u_int32_t*)tempBuff + k, 1); if (ptrCRC == calcPtrSWCRC) { // Some devices (QT3) uses SW CRC calculation for HW pointers // and since we don't have an indication for that, we'll just check // if SW CRC calculation matches the actual CRC calcPtrCRC = calcPtrSWCRC; } else { // Calculate HW CRC: calcPtrCRC = calc_hw_crc((u_int8_t*)((u_int32_t*)tempBuff + k), 6); } if (!DumpFs3CRCCheck(FS4_HW_PTR, hwPointersAddr + 4 * k, FS5_IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE, calcPtrCRC, ptrCRC, false, verifyCallBackFunc)) { return false; } } fs5_image_layout_hw_pointers_gilboa_unpack(&hwPointers, (u_int8_t*)buff); _boot2_ptr = hwPointers.boot2_ptr.ptr; _itoc_ptr = hwPointers.toc_ptr.ptr; _tools_ptr = hwPointers.tools_ptr.ptr; _image_info_section_ptr = hwPointers.image_info_section_pointer.ptr; _hashes_table_ptr = hwPointers.ncore_hashes_pointer.ptr; _ncore_bch_ptr = hwPointers.ncore_bch_pointer.ptr; _is_hw_ptrs_initialized = true; return true; } bool Fs5Operations::InitHwPtrs(bool) { if (!_is_hw_ptrs_initialized) { DPRINTF(("Fs5Operations::InitHwPtrs\n")); if (!getImgStart()) { // Set _fwImgInfo.imgStart with the image start address return false; } if (!ParseHwPointers((VerifyCallBack)NULL)) { return errmsg("Fs5Operations::InitHwPtrs: ParseHwPointers failed - Error: %s.\n", err()); } } return true; } bool Fs5Operations::Init() { if (!InitHwPtrs()) { return false; } // Below commented out at the moment, if needed just remove and inherit it from fs4_ops // fw_info_t fwInfo; // if (!FwQuery(&fwInfo, false, false, false)) // { // return false; // } return true; } bool Fs5Operations::GetImageInfo(u_int8_t* buff) { DPRINTF(("Fs5Operations::GetImageInfo call Fs3Operations::GetImageInfo\n")); return Fs3Operations::GetImageInfo(buff); } bool Fs5Operations::GetImageSize(u_int32_t* image_size) { if (!GetImageSizeFromImageInfo(image_size)) { return false; } return true; } bool Fs5Operations::CheckBoot2(bool fullRead, const char* pref, VerifyCallBack verifyCallBackFunc) { DPRINTF(("FwOperations::CheckBoot2\n")); char* pr = new char[strlen(pref) + 512]; sprintf(pr, "%s /0x%08x/ (BOOT2)", pref, _boot2_ptr); // Parse NCORE BCH for boot2 size vector ncoreBCHData(FS5_IMAGE_LAYOUT_BOOT_COMPONENT_HEADER_SIZE); if (!_ioAccess->read(_ncore_bch_ptr, ncoreBCHData.data(), FS5_IMAGE_LAYOUT_BOOT_COMPONENT_HEADER_SIZE)) { delete[] pr; return errmsg("%s - read error (%s)\n", "FS5 boot2 header", _ioAccess->err()); } fs5_image_layout_boot_component_header ncoreBCH; fs5_image_layout_boot_component_header_unpack(&ncoreBCH, ncoreBCHData.data()); u_int32_t hashes_table_size = 0; if (!GetHashesTableSize(hashes_table_size)) { return false; } _fwImgInfo.boot2Size = ncoreBCH.u8_stage1_component.u32_binary_len - hashes_table_size; DPRINTF(("FwOperations::CheckBoot2 size = 0x%x\n", _fwImgInfo.boot2Size)); if (_fwImgInfo.boot2Size > 1048576 || _fwImgInfo.boot2Size < 4) { report_callback(verifyCallBackFunc, "%s - unexpected size (0x%x)\n", pr, _fwImgInfo.boot2Size); delete[] pr; return errmsg("Boot2 invalid size\n"); } u_int32_t boot2AbsAddr = _fwImgInfo.imgStart + _boot2_ptr; sprintf(pr, "%s /0x%08x-0x%08x (0x%06x)/ (BOOT2)", pref, boot2AbsAddr, boot2AbsAddr + _fwImgInfo.boot2Size - 1, _fwImgInfo.boot2Size); if (fullRead == true || !_ioAccess->is_flash()) { u_int32_t boot2SizeInDW = _fwImgInfo.boot2Size / 4; u_int32_t* buff = new u_int32_t[boot2SizeInDW]; memset(buff, 0, (boot2SizeInDW) * sizeof(u_int32_t)); bool rc = readBufAux((*_ioAccess), _boot2_ptr, buff, _fwImgInfo.boot2Size, pr); if (!rc) { delete[] pr; delete[] buff; return rc; } UpdateImgCache((u_int8_t*)buff, _boot2_ptr, _fwImgInfo.boot2Size); delete[] buff; report_callback(verifyCallBackFunc, "%s - CRC IGNORED\n", pr); } delete[] pr; return true; } bool Fs5Operations::CheckBoot2(u_int32_t, u_int32_t offs, u_int32_t&, bool fullRead, const char* pref, VerifyCallBack verifyCallBackFunc) { return CheckBoot2(fullRead, pref, verifyCallBackFunc); } bool Fs5Operations::FsVerifyAux(VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc, bool verbose) { DPRINTF(("Fs5Operations::FsVerifyAux\n")); u_int8_t* buff; u_int32_t log2_chunk_size; bool is_image_in_odd_chunks; DPRINTF(("Fs5Operations::FsVerifyAux call getImgStart()\n")); if (!getImgStart()) { // Set _fwImgInfo.imgStart with the image start address return false; } report_callback(verifyCallBackFunc, "\nFS5 failsafe image\n\n"); _ioAccess->set_address_convertor(0, 0); DPRINTF(("Fs5Operations::FsVerifyAux call ParseHwPointers()\n")); if (!ParseHwPointers(verifyCallBackFunc)) { return false; } // if nextBootFwVer is true, no need to get all the information, just the fw version is enough - therefore skip // everything else if (!nextBootFwVer) { DPRINTF(("Fs5Operations::FsVerifyAux call verifyToolsArea()\n")); if (!verifyToolsArea(verifyCallBackFunc)) { return false; } // Update image cache till before boot2 header: DPRINTF(("Fs5Operations::FsVerifyAux call Fs3UpdateImgCache() - All before boot2\n")); READALLOCBUF((*_ioAccess), _fwImgInfo.imgStart, buff, _boot2_ptr, "All Before Boot2"); Fs3UpdateImgCache(buff, 0, _boot2_ptr); free(buff); _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); // Get BOOT2 -Get Only boot2Size if quickQuery == true else read and check CRC of boot2 section as well DPRINTF(("Fs5Operations::FsVerifyAux call FS3_CHECKB2()\n")); FS3_CHECKB2(0, _boot2_ptr, !queryOptions.quickQuery, PRE_CRC_OUTPUT, verifyCallBackFunc); _fs4ImgInfo.firstItocArrayIsEmpty = false; _fs4ImgInfo.itocArr.tocArrayAddr = _itoc_ptr; DPRINTF(("Fs5Operations::FsVerifyAux call isHashesTableHwPtrValid()\n")); if (isHashesTableHwPtrValid()) { //* Check hashes_table header CRC READALLOCBUF((*_ioAccess), _hashes_table_ptr, buff, IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE, "HASHES TABLE HEADER"); // Calculate CRC u_int32_t hashes_table_header_calc_crc = CalcImageCRC((u_int32_t*)buff, (IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE / 4) - 1); // Read CRC u_int32_t hashes_table_header_crc = ((u_int32_t*)buff)[(IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE / 4) - 1]; free(buff); TOCPU1(hashes_table_header_crc) hashes_table_header_crc = hashes_table_header_crc & 0xFFFF; // Compare calculated crc with crc from image if (hashes_table_header_calc_crc != hashes_table_header_crc) { report_callback(verifyCallBackFunc, "%s /0x%08x/ - wrong CRC (exp:0x%x, act:0x%x)\n", "HASHES TABLE HEADER", _hashes_table_ptr + IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE - 4, hashes_table_header_calc_crc, hashes_table_header_crc); if (!_fwParams.ignoreCrcCheck) { return errmsg("Bad CRC"); } } vector hashes_table_data; if (!GetHashesTableData(hashes_table_data)) { return false; } buff = hashes_table_data.data(); const u_int32_t hashes_table_size = hashes_table_data.size(); Fs3UpdateImgCache(buff, _hashes_table_ptr, hashes_table_size); //* Check hashes_table CRC // Calculate CRC u_int32_t hashes_table_calc_crc = CalcImageCRC((u_int32_t*)buff, (hashes_table_size / 4) - 1); // Read CRC u_int32_t hashes_table_crc = ((u_int32_t*)buff)[(hashes_table_size / 4) - 1]; TOCPU1(hashes_table_crc) hashes_table_crc = hashes_table_crc & 0xFFFF; if (!DumpFs3CRCCheck(FS4_HASHES_TABLE, _hashes_table_ptr, hashes_table_size, hashes_table_calc_crc, hashes_table_crc, false, verifyCallBackFunc)) { return false; } } DPRINTF(("Fs5Operations::FsVerifyAux call verifyTocHeader() ITOC\n")); if (!verifyTocHeader(_itoc_ptr, false, verifyCallBackFunc)) { _itoc_ptr += FS4_DEFAULT_SECTOR_SIZE; _fs4ImgInfo.itocArr.tocArrayAddr = _itoc_ptr; _fs4ImgInfo.firstItocArrayIsEmpty = true; if (!verifyTocHeader(_itoc_ptr, false, verifyCallBackFunc)) { return errmsg(MLXFW_NO_VALID_ITOC_ERR, "No valid ITOC Header was found."); } } } DPRINTF(("Fs5Operations::FsVerifyAux call verifyTocEntries() ITOC\n")); if (!verifyTocEntries(_itoc_ptr, show_itoc, false, queryOptions, verifyCallBackFunc, verbose)) { return false; } if (nextBootFwVer) { return true; } if (ignoreDToc) { return true; } // Verify DTOC: log2_chunk_size = _ioAccess->get_log2_chunk_size(); is_image_in_odd_chunks = _ioAccess->get_is_image_in_odd_chunks(); _ioAccess->set_address_convertor(0, 0); //-Verify DToC Header: u_int32_t dtocPtr = _ioAccess->get_effective_size() - FS4_DEFAULT_SECTOR_SIZE; DPRINTF(("Fs5Operations::FsVerifyAux call verifyTocHeader() DTOC\n")); if (!verifyTocHeader(dtocPtr, true, verifyCallBackFunc)) { return errmsg(MLXFW_NO_VALID_ITOC_ERR, "No valid DTOC Header was found."); } _fs4ImgInfo.dtocArr.tocArrayAddr = dtocPtr; //-Verify DToC Entries: DPRINTF(("Fs5Operations::FsVerifyAux call verifyTocEntries() DTOC\n")); if (!verifyTocEntries(dtocPtr, show_itoc, true, queryOptions, verifyCallBackFunc, verbose)) { _ioAccess->set_address_convertor(log2_chunk_size, is_image_in_odd_chunks); return false; } _ioAccess->set_address_convertor(log2_chunk_size, is_image_in_odd_chunks); return true; } bool Fs5Operations::FwQuery(fw_info_t* fwInfo, bool, bool, bool quickQuery, bool ignoreDToc, bool verbose) { DPRINTF(("Fs5Operations::FwQuery\n")); return encryptedFwQuery(fwInfo, quickQuery, ignoreDToc, verbose); } mstflint-4.26.0/mlxfwops/lib/connectx6dx_signature_manager.cpp0000644000175000017500000000317614522641732025061 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "signature_manager.h" #include "flint_io.h" #include "flint_base.h" #include "fw_ops.h" #include "tools_utils.h" using namespace std; mstflint-4.26.0/mlxfwops/lib/fs2_ops.cpp0000644000175000017500000023765214522641732020426 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #if !defined(UEFI_BUILD) && !defined(NO_CS_CMD) #include #endif #include #include "fs2_ops.h" #ifdef __WIN__ #include #endif #define PRE_CRC_OUTPUT " " #define CRC_CHECK_OUTPUT CRC_CHECK_OLD ")" static int part_cnt; extern const char* g_sectNames[]; bool Fs2Operations::FwInit() { FwInitCom(); // memset(&_fs2ImgInfo, 0, sizeof(_fs2ImgInfo)); init is done as part of the struct constructor _fwImgInfo.fwType = FIT_FS2; return true; } bool Fs2Operations::CntxGetFsData(u_int32_t fs_info_word, bool& fs_en, u_int32_t& log2chunk_size) { u_int8_t checksum; // printf("-D- fs_info_word=%08x\n", fs_info_word); checksum = ((fs_info_word)&0xff) + ((fs_info_word >> 8) & 0xff) + ((fs_info_word >> 16) & 0xff) + ((fs_info_word >> 24) & 0xff); if (checksum != 0) { return errmsg("Corrupted chunk size checksum"); } fs_en = (fs_info_word & 0x8) != 0; if (fs_en) { log2chunk_size = (fs_info_word & 0x7) + 16; } else { log2chunk_size = 0; } return true; } bool Fs2Operations::ParseInfoSect(u_int8_t* buff, u_int32_t byteSize) { u_int32_t* p = (u_int32_t*)buff; u_int32_t offs = 0; u_int32_t tagNum = 0; bool endFound = false; // TODO: Add new flag on the info which indicates that the ParseInfoSect was already called. while (!endFound && offs < byteSize) { u_int32_t tagSize = __be32_to_cpu(*p) & 0xffffff; u_int32_t tagId = __be32_to_cpu(*p) >> 24; if (offs + tagSize > byteSize) { return errmsg(MLXFW_SECTION_TOO_LARGE_ERR, "Info section corrupted: Tag %d (TagId %d, size %d) exceeds Info section size (%d bytes) ", tagNum, tagId, tagSize, byteSize); } // printf("-D- tagId = (%#x), tagSize = (%#x), offs = %#x\n", tagId, tagSize, offs); u_int32_t tmp; const char* str; int size; switch (tagId) { case II_FwVersion: _fwImgInfo.ext_info.fw_ver[0] = u_int16_t(__be32_to_cpu(*(p + 1)) >> 16); tmp = __be32_to_cpu(*(p + 2)); _fwImgInfo.ext_info.fw_ver[1] = tmp >> 16; _fwImgInfo.ext_info.fw_ver[2] = tmp & 0xffff; break; case II_FwBuildTime: tmp = __be32_to_cpu(*(p + 2)); _fwImgInfo.ext_info.fw_rel_date[0] = (u_int16_t)(tmp & 0xff); _fwImgInfo.ext_info.fw_rel_date[1] = (u_int16_t)((tmp >> 8) & 0xff); _fwImgInfo.ext_info.fw_rel_date[2] = (u_int16_t)((tmp >> 16) & 0xffff); break; case II_MinFitVersion: tmp = __be32_to_cpu(*(p + 1)); _fwImgInfo.ext_info.min_fit_ver[0] = tmp >> 16; _fwImgInfo.ext_info.min_fit_ver[1] = tmp & 0xffff; tmp = __be32_to_cpu(*(p + 2)); _fwImgInfo.ext_info.min_fit_ver[2] = tmp >> 16; _fwImgInfo.ext_info.min_fit_ver[3] = tmp & 0xffff; break; case II_MicVersion: tmp = __be32_to_cpu(*(p + 1)); _fwImgInfo.ext_info.mic_ver[0] = tmp >> 16; //_fwImgInfo.ext_info.minFitVer[1] = tmp & 0xffff; tmp = __be32_to_cpu(*(p + 2)); _fwImgInfo.ext_info.mic_ver[1] = tmp >> 16; _fwImgInfo.ext_info.mic_ver[2] = tmp & 0xffff; break; case II_DeviceType: tmp = __be32_to_cpu(*(p + 1)); _fwImgInfo.ext_info.dev_type = tmp & 0xffff; // info->devRev = (tmp >> 16) & 0xff; break; case II_VsdVendorId: tmp = __be32_to_cpu(*(p + 1)); _fwImgInfo.ext_info.vsd_vendor_id = tmp & 0xffff; break; case II_IsGa: tmp = __be32_to_cpu(*(p + 1)); _fwImgInfo.isGa = tmp ? true : false; ; break; case II_PSID: // set psid only if not previosly found in PS str = (const char*)p; str += 4; for (int i = 0; i < PSID_LEN; i++) { _fwImgInfo.ext_info.psid[i] = str[i]; } _fwImgInfo.ext_info.psid[PSID_LEN] = '\0'; break; case II_PSInfo: str = (const char*)p; str += 4; size = strlen(str) + 1; // include '\0' if (size > PRS_NAME_LEN) { // ensure '\0' at the end size = PRS_NAME_LEN - 1; } memcpy(_fs2ImgInfo.ext_info.prs_name, str, size); break; case II_VSD: // set psid only if not previosly found in PS str = (const char*)p; str += 4; for (int i = 0; i < VSD_LEN; i++) { _fwImgInfo.ext_info.vsd[i] = str[i]; } _fwImgInfo.ext_info.vsd[VSD_LEN] = '\0'; _fwImgInfo.ext_info.vsd_sect_found = true; break; case II_ProductVer: str = (const char*)p; str += 4; for (int i = 0; i < PRODUCT_VER_LEN; i++) { _fwImgInfo.ext_info.product_ver[i] = str[i]; } _fwImgInfo.ext_info.product_ver[PRODUCT_VER_LEN] = '\0'; break; case II_HwDevsId: for (u_int32_t i = 1; i <= (tagSize / 4); i++) { _fwImgInfo.supportedHwId[i - 1] = __be32_to_cpu(*(p + i)); } _fwImgInfo.supportedHwIdNum = tagSize / 4; break; case II_HwAccessKey: { _fs2ImgInfo.ext_info.access_key_value.h = __be32_to_cpu(*(p + 1)); ; _fs2ImgInfo.ext_info.access_key_value.l = __be32_to_cpu(*(p + 2)); ; _fs2ImgInfo.ext_info.access_key_exists = 1; } break; case II_PROFILES_LIST: { GetSectData(_fs2ImgInfo.profListSectZipped, p + 1, tagSize); } break; case II_TLVS_FORMAT: { GetSectData(_fs2ImgInfo.TlvFormatSectZipped, p + 1, tagSize); } break; case II_TRACER_HASH: { GetSectData(_fs2ImgInfo.TracerHashSectZipped, p + 1, tagSize); } break; case II_CONFIG_INFO: { // printf("-D- configExists\n"); _fs2ImgInfo.isConfigurable = true; _fs2ImgInfo.defPorfile = __be32_to_cpu(*(p + 1)); ; } break; case II_SUPPORTED_PROFS: { for (u_int32_t i = 1; i <= (tagSize / 4); i++) { u_int32_t id; id = __be32_to_cpu(*(p + i)); _fs2ImgInfo.supportedProfList.push_back(id); } } break; case II_ConfigArea: { // configuration area should always exsist _fs2ImgInfo.ext_info.config_sectors = __be32_to_cpu(*(p + 1)); _fs2ImgInfo.ext_info.config_pad = __be32_to_cpu(*(p + 2)); if (tagSize > 0x8) { // fw_log_sector_size is also found _fs2ImgInfo.fw_sector_size = (1 << __be32_to_cpu(*(p + 3))) * 1024; // the base value is 1kb i.e 1024 } } break; case II_End: endFound = true; break; // default: // printf("-D- Found tag ID %d of size %d - ignoring.\n", tagId, tagSize); } if (tagId < II_Last) { _fs2ImgInfo.infoOffs[tagId] = offs + 4; } p += tagSize / 4 + 1; offs += tagSize + 4; tagNum++; } if (offs != byteSize) { if (endFound) { return errmsg(MLXFW_SECTION_CORRUPTED_ERR, "Info section corrupted: Section data size is 0x%x bytes, " "but end tag found after 0x%x bytes.", byteSize, offs); } else { return errmsg(MLXFW_SECTION_CORRUPTED_ERR, "Info section corrupted: Section data size is 0x%x bytes, " "but end tag not found before section end.", byteSize); } } return true; } void Fs2Operations::initSectToRead(int imp_index) { for (int i = 0; i < H_LAST; i++) { if (imp_index == FULL_VERIFY || i == imp_index) { _sectionsToRead[i] = 1; } else { _sectionsToRead[i] = 0; } } if (imp_index == FULL_VERIFY) { _isFullVerify = true; } else { _isFullVerify = false; } return; } bool Fs2Operations::checkGen(u_int32_t beg, u_int32_t offs, u_int32_t& next, const char* pref, VerifyCallBack verifyCallBackFunc) { char* pr = new char[strlen(pref) + 100]; char unknown_sect_name[128]; const char* sect_name; u_int32_t size = 0; GPH gph = GPH(); bool is_sect_to_read = false; // GPH sprintf(pr, "%s /0x%08x/ (GeneralHeader)", pref, offs + beg); readBufAux((*_ioAccess), offs + beg, &gph, sizeof(GPH), pr); TOCPUBY(gph); // Body part_cnt++; // May be BOOT3? if (gph.type < H_FIRST || gph.type >= H_LAST) { if (part_cnt <= 2) { delete[] pr; return CheckBoot2(beg, offs, next, _isFullVerify, pref, verifyCallBackFunc); } } // All partitions here offs += beg; if (gph.type < H_FIRST || gph.type >= H_LAST) { // For forward compatibility, try analyzing even if section type is unknown // Assuming the size is in DW, like all other sections (except emt service). // If this assumption is wrong, CRC calc would fail - no harm done. sprintf(unknown_sect_name, "UNKNOWN (%d)", gph.type); sect_name = unknown_sect_name; size = gph.size * 4; is_sect_to_read = true; } else { if (gph.type == H_EMT) { size = (gph.size + 3) / 4 * 4; } else { size = gph.size * 4; } sect_name = g_sectNames[gph.type]; // We verify part of the image only when we verify an image burnt on a device if (_ioAccess->is_flash()) { is_sect_to_read = _sectionsToRead[gph.type]; } else { is_sect_to_read = true; } } sprintf(pr, CRC_CHECK_OUTPUT, pref, offs, offs + size + (u_int32_t)sizeof(gph) + 3, size + (u_int32_t)sizeof(gph) + 4, sect_name); if (size > MAX_SECTION_SIZE) { report_callback(verifyCallBackFunc, "%s - size too big (0x%x)\n", pr, size); delete[] pr; return false; } if (is_sect_to_read) { // CRC Crc16 crc; std::vector buffv(size); u_int32_t* buff = (u_int32_t*)(buffv.size() ? (&(buffv[0])) : NULL); readBufAux((*_ioAccess), offs + sizeof(gph), buff, size, pr); TOCPUn(buff, size / 4); CRCBY(crc, gph); CRCBY(_ioAccess->get_image_crc(), gph); CRCn(crc, buff, size / 4); CRCn(_ioAccess->get_image_crc(), buff, size / 4); crc.finish(); u_int32_t crc_act; READ4((*_ioAccess), offs + sizeof(gph) + size, &crc_act, pr); TOCPU1(crc_act); bool blank_crc = false; if (gph.type == H_GUID && crc_act == 0xffff) { // in case we get 0xffff as crc BUT the section is not empty (i.e not ffffs) // check the 64 bits of the NGUID (node guid) located at offs + sizeof(gph) u_int64_t nguid; READBUF((*_ioAccess), offs + sizeof(gph), (u_int8_t*)&nguid, 8, pr); if (nguid == 0xffffffffffffffffULL) { blank_crc = true; _fs2ImgInfo.ext_info.blank_guids = true; } } if (!CheckAndPrintCrcRes(pr, blank_crc, offs, crc_act, crc.get(), false, verifyCallBackFunc)) { delete[] pr; return false; } delete[] pr; pr = (char*)NULL; _ioAccess->get_image_crc() << crc.get(); // The image info may be null, please check that before using it. if (gph.type == H_FW_CONF) { GetSectData(_fwConfSect, buff, size); } if (gph.type == H_HASH_FILE) { GetSectData(_hashFileSect, buff, size); } if (gph.type == H_IMG_INFO) { CPUTOn(buff, size / 4); if (!ParseInfoSect((u_int8_t*)buff, size)) { return errmsg("Failed to read the info sector: %s\n", err()); } } if (gph.type == H_ROM && _romSect.empty()) { TOCPUn(buff, size / 4); GetSectData(_romSect, buff, size); } } // mark last read addr _fwImgInfo.lastImageAddr = offs + size + sizeof(gph) + 4; // the 4 is for the trailing crc next = gph.next; if (pr) { delete[] pr; } return true; } // checkGen //////////////////////////////////////////////////////////////////////// bool Fs2Operations::checkList(u_int32_t offs, u_int32_t fw_start, const char* pref, VerifyCallBack verifyCallBackFunc) { // is initilized in CHECKB2 u_int32_t next_ptr = 0; CHECKB2(offs, fw_start, next_ptr, _isFullVerify, pref, verifyCallBackFunc); part_cnt = 1; while (next_ptr && next_ptr != 0xff000000) { CHECKGN(offs, next_ptr, next_ptr, pref, verifyCallBackFunc); } return true; } // checkList bool Fs2Operations::Fs2Verify(VerifyCallBack verifyCallBackFunc, bool is_striped_image, bool both_images, bool only_get_start, bool ignore_full_image_crc, bool force_no_striped_image) { u_int32_t cntx_image_start[CNTX_START_POS_SIZE] = {0}; u_int32_t cntx_image_num; bool ret = true; u_int32_t act_crc; bool check_full_crc = false; // printf("-D- VerifyFs2 = ok\n"); // Look for image in "physical addresses FindAllImageStart(_ioAccess, cntx_image_start, &cntx_image_num, _cntx_magic_pattern); if (cntx_image_num == 0) { return errmsg(MLXFW_NO_VALID_IMAGE_ERR, "No valid image found"); } else if (cntx_image_num > 2) { // This check may be redundant - Maybe ignore if more than 2 images found return errmsg( MLXFW_MULTIPLE_VALID_IMAGES_ERR, "More than 2 image start locations found at addresses 0x%x, 0x%x and 0x%x. Image may be corrupted.", cntx_image_start[0], cntx_image_start[1], cntx_image_start[2]); } if (!both_images) { // Check only the first image. This is enough to ensure that the device is bootable. cntx_image_num = 1; } // Verify the images: for (u_int32_t i = 0; i < cntx_image_num; i++) { bool fs_en = false; u_int32_t log2chunk_size = 0; u_int32_t buff[FS2_BOOT_START / 4] = {0}; _ioAccess->get_image_crc().clear(); _ioAccess->set_address_convertor(0, 0); READBUF((*_ioAccess), cntx_image_start[i], buff, FS2_BOOT_START, "Image header"); TOCPUn(buff, FS2_BOOT_START / 4); u_int32_ba crc_dw = buff[IMG_CRC_OFF / 4]; act_crc = u_int32_t(crc_dw.range(15, 0)); crc_dw.range(15, 0) = 0xffff; buff[IMG_CRC_OFF / 4] |= crc_dw; CRCn(_ioAccess->get_image_crc(), buff, FS2_BOOT_START / 4); // printf("-D- CRC is %#x\n", _ioAccess->get_image_crc().get()); if (!CntxGetFsData(buff[FS_DATA_OFF / 4], fs_en, log2chunk_size)) { report_callback(verifyCallBackFunc, "\n Can not read failsafe info word: %s\n", err()); return (i > 0); } // If fw not enabled, image must start at addr 0 if (!fs_en && cntx_image_start[i] != 0) { return errmsg("FS2 Non Failsafe image must start at address 0. Found non-fs image at address 0x%x", cntx_image_start[i]); } if (fs_en) { report_callback(verifyCallBackFunc, "\n FS2 failsafe image. Start address: 0x%x. Chunk size 0x%x:\n\n", cntx_image_start[i], 1 << log2chunk_size); report_callback(verifyCallBackFunc, " NOTE: The addresses below are contiguous logical addresses. Physical addresses on\n" " flash may be different, based on the image start address and chunk size\n\n"); } else { report_callback(verifyCallBackFunc, "\n FS2 non failsafe image:\n\n"); } if (fs_en && cntx_image_start[i] != 0 && cntx_image_start[i] != (u_int32_t)(1 << log2chunk_size)) { return errmsg( "FS2 Failsafe image must start at address 0 or at chunk size. Found a failsafe image at address 0x%x", cntx_image_start[i]); } _fwImgInfo.imgStart = cntx_image_start[i]; _fwImgInfo.ext_info.is_failsafe = fs_en; _fwImgInfo.actuallyFailsafe = true; _fwImgInfo.cntxLog2ChunkSize = log2chunk_size; if (_ioAccess->is_flash()) { // In flash, image layout must match the FS Data _fwImgInfo.actuallyFailsafe = true; if (fs_en) { _ioAccess->set_address_convertor(log2chunk_size, cntx_image_start[i] != 0); } } else { // In an image file there are 2 cases: // 1. Image generated by mlxburn // The image in the file is contiguous (though it is marked as FS) - no need to set address convertion. // 2. The image was raw read from flash. In this case it would be in "zebra" format. // // So - I try both cases, and see which verify() succeeds. // // Heuristics that may come in handy: // If the image does not start at addr 0, it's not an mlxburn image. // If there is more than a single valid image, it's not an mlxburn image. // If the file size matches the image size, it is an mlxburn image. // // For now, get the "striped" indication from user. if (!force_no_striped_image && is_striped_image) { _ioAccess->set_address_convertor(log2chunk_size, cntx_image_start[i] != 0); } else { _ioAccess->set_address_convertor(0, 0); // disable conversion } _fwImgInfo.actuallyFailsafe = is_striped_image; } bool imgStat = true; // TODO: check what only_get_start means. if (!only_get_start) { imgStat = checkList(0, FS2_BOOT_START, PRE_CRC_OUTPUT, verifyCallBackFunc); } _ioAccess->get_image_crc().finish(); u_int32_t full_crc = _ioAccess->get_image_crc().get(); if (!ignore_full_image_crc && _fs2ImgInfo.infoOffs[II_MicVersion]) { // For now we check only that the Mic version existing . check_full_crc = true; } if (imgStat && _isFullVerify && check_full_crc && !only_get_start) { char pr[256]; sprintf(pr, CRC_CHECK_OUTPUT, PRE_CRC_OUTPUT, 0, _fwImgInfo.lastImageAddr - 1, _fwImgInfo.lastImageAddr, "Full Image"); CheckAndPrintCrcRes(pr, _fs2ImgInfo.ext_info.blank_guids, 0, act_crc, full_crc, false, verifyCallBackFunc); } if (i == 0) { ret = ret && imgStat; } } return ret; } bool Fs2Operations::FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage, bool showItoc, bool ignoreDToc) { // avoid compiler warrning (showItoc is not used in fs2) (void)showItoc; (void)ignoreDToc; initSectToRead(FULL_VERIFY); if (!Fs2Verify(verifyCallBackFunc, isStripedImage)) { // empty the initSectToRead initSectToRead(H_LAST); return false; } // empty the initSectToRead initSectToRead(H_LAST); return true; } u_int8_t Fs2Operations::FwType() { return FIT_FS2; } bool Fs2Operations::FwReadData(void* image, u_int32_t* image_size, bool verbose) { (void)verbose; if (!Fs2Verify((VerifyCallBack)NULL)) { return false; } *image_size = _fwImgInfo.lastImageAddr; if (image != NULL) { if (!_ioAccess->read(0, (u_int32_t*)image, *image_size)) { return errmsg("Failed to read Image: %s", _ioAccess->err()); } } return true; } bool Fs2Operations::Fs2Query() { u_int32_t guid_ptr = 0, nguids = 0; guid_t guids[MAX_GUIDS]; int i = 0; for (i = 0; i < MAX_GUIDS; i++) { guids[i] = guid_t(); } /* if (_fwImgInfo.wasQueried == true) { return true; } */ // FW ID u_int32_t fw_id = 0; u_int32_t fw_id_offs = 0; u_int32_t fw_size = 0; u_int32_t im_start = _fwImgInfo.imgStart; if (_fwImgInfo.ext_info.is_failsafe && _fwImgInfo.actuallyFailsafe) { _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, im_start != 0); } else { _ioAccess->set_address_convertor(0, 0); } im_start = 0; // offset is done by address convertor _fwImgInfo.magicPatternFound = true; fw_id_offs = 0x20; READ4((*_ioAccess), im_start + fw_id_offs, &fw_id, "FW ID"); TOCPU1(fw_id); READ4((*_ioAccess), im_start + fw_id_offs + 0x10, &fw_size, "FW SIZE"); TOCPU1(fw_size); _fwImgInfo.ext_info.image_size = fw_size; _fwImgInfo.ext_info.dev_rev = fw_id >> 24; // Read GUIDs READ4((*_ioAccess), im_start + fw_id_offs + 0x14, &guid_ptr, "GUID PTR"); TOCPU1(guid_ptr); _fs2ImgInfo.guidPtr = guid_ptr; guid_ptr += im_start; if (guid_ptr >= _ioAccess->get_size()) { return errmsg("Failed to read GUIDs - Illegal GUID pointer (%08x). Probably image is corrupted", guid_ptr); } READ4((*_ioAccess), guid_ptr - 3 * sizeof(u_int32_t), &nguids, "Number of GUIDs"); TOCPU1(nguids); nguids /= 2; if (nguids > MAX_GUIDS) { return errmsg("Failed to read GUIDs - Illegal Number of GUIDs (%d)", nguids); // return false; } READBUF((*_ioAccess), guid_ptr, guids, nguids * sizeof(u_int64_t), "GUIDS"); TOCPUBY64(guids); u_int32_t guids_crc = 0; READ4((*_ioAccess), guid_ptr + nguids * sizeof(u_int64_t), &guids_crc, "GUIDS CRC"); guids_crc = __be32_to_cpu(guids_crc); _fs2ImgInfo.ext_info.blank_guids = true; if ((guids_crc & 0xffff) != 0xffff) { _fs2ImgInfo.ext_info.blank_guids = false; } _fs2ImgInfo.ext_info.guid_num = nguids; for (u_int32_t i = 0; i < nguids; i++) { _fs2ImgInfo.ext_info.guids[i] = guids[i]; if (guids[i].h != 0xffffffff || guids[i].l != 0xffffffff) { _fs2ImgInfo.ext_info.blank_guids = false; } } // Expansion Rom version: RomInfo rInfo(_romSect, false); // There is no check for the return value of this function because it's a wrapper that always succeeds, // but fills the error string when there is an error rInfo.ParseInfo(); rInfo.initRomsInfo(&_fwImgInfo.ext_info.roms_info); // Read Info: u_int32_ba info_ptr_ba; u_int32_t info_ptr = 0; u_int32_t info_size = 0; u_int8_t info_ptr_cs = 0; READ4((*_ioAccess), im_start + fw_id_offs + 0xC, &info_ptr, "INFO PTR"); TOCPU1(info_ptr); // Verify info_ptr checksum (should be 0) info_ptr_ba = info_ptr; for (u_int32_t i = 0; i < 4; i++) { info_ptr_cs += (u_int8_t)info_ptr_ba.range(i * 8 + 7, i * 8); } if (info_ptr_cs) { return errmsg(MLXFW_BAD_CHECKSUM_ERR, "Failed to read Info Section - Bad checksum for Info section pointer (%08x). Probably the image " "is corrupted.", info_ptr); } info_ptr = info_ptr_ba.range(23, 0); if (info_ptr_cs == 0 && info_ptr != 0) { _fs2ImgInfo.infoSectPtr = info_ptr; info_ptr += im_start; if (info_ptr >= _ioAccess->get_size()) { return errmsg( MLXFW_SECTION_TOO_LARGE_ERR, "Failed to read Info Section - Info section pointer (%08x) too large. Probably the image is corrupted.", info_ptr); } READ4((*_ioAccess), info_ptr - 3 * sizeof(u_int32_t), &info_size, "Info section size"); TOCPU1(info_size); // byte size; info_size *= 4; std::vector info_buff(info_size); bool rc = readBufAux((*_ioAccess), info_ptr, static_cast(&info_buff[0]), info_size, "Info Section"); if (!rc) { return false; } if (!ParseInfoSect(static_cast(&info_buff[0]), info_size)) { return false; } } _fwImgInfo.imageOk = true; _fwImgInfo.wasQueried = true; return true; } bool Fs2Operations::Fs2IntQuery(bool readRom, bool isStripedImage) { if (readRom) { initSectToRead(H_ROM); } else { initSectToRead(H_LAST); } if (!Fs2Verify((VerifyCallBack)NULL, isStripedImage)) { initSectToRead(H_LAST); return false; } initSectToRead(H_LAST); if (!Fs2Query()) { return false; } _fwImgInfo.ext_info.chip_type = getChipType(); // get running FW version if (_ioAccess->is_flash() && _fwImgInfo.ext_info.chip_type != CT_UNKNOWN) { getRunningFwVer(); } return true; } bool Fs2Operations::FwQuery(fw_info_t* fwInfo, bool readRom, bool isStripedImage, bool quickQuery, bool ignoreDToc, bool verbose) { (void)quickQuery; (void)ignoreDToc; (void)verbose; if (!Fs2IntQuery(readRom, isStripedImage)) { return false; } memcpy(&(fwInfo->fw_info), &(_fwImgInfo.ext_info), sizeof(fw_info_com_t)); memcpy(&(fwInfo->fs2_info), &(_fs2ImgInfo.ext_info), sizeof(fs2_info_t)); // set the chipType in fwInfo fwInfo->fw_type = FIT_FS2; fwInfo->fw_info.chip_type = CT_CONNECTX3; return true; } #define CX3_FW_VER_CR_ADDR 0x1f064 #define SX_FW_VER_CR_ADDR 0x60040 bool Fs2Operations::getRunningFwVer() { #ifndef UEFI_BUILD u_int32_t fwVerBaseAddr = 0x0; u_int32_t mflags; struct cibfw_FW_VERSION fwVer; u_int8_t buff[CIBFW_FW_VERSION_SIZE] = {0}; memset(&fwVer, 0, sizeof(fwVer)); // make sure its not mellanox OS if (mget_mdevs_flags(_ioAccess->getMfileObj(), &mflags)) { return errmsg("Failed to get device access type"); } if (mflags & MDEVS_MLNX_OS) { return true; } switch (_fwImgInfo.ext_info.chip_type) { case CT_CONNECTX: fwVerBaseAddr = CX3_FW_VER_CR_ADDR; break; default: return errmsg("Unsupported chip type."); } if (mread_buffer(_ioAccess->getMfileObj(), fwVerBaseAddr, buff, CIBFW_FW_VERSION_SIZE) != CIBFW_FW_VERSION_SIZE) { return errmsg("Failed to extract FW version from device. CR_ERROR\n"); } cibfw_FW_VERSION_unpack(&fwVer, buff); _fwImgInfo.ext_info.running_fw_ver[0] = fwVer.MAJOR; _fwImgInfo.ext_info.running_fw_ver[1] = fwVer.MINOR; _fwImgInfo.ext_info.running_fw_ver[2] = fwVer.SUBMINOR; #endif return true; } #define MY_MAX(a, b) ((a) > (b) ? (a) : (b)) #define CX_DFLT_SECTOR_SIZE 0x10000 #define SX_DFLT_SECTOR_SIZE 0x1000 #define MAX_CONFIG_AREA_SIZE 0x10000 u_int32_t Fs2Operations::getDefaultSectorSz() { // for ConnectX family default sector size is 64kb else 4kb // all of this mess is because the sector_size written in the INI doesnt always correspond to the actual flash // sector_size and as for the calculation of the maximal image size we want to be synced with the FW or take worst // case scenario. we need this method as we only started collecting the fw_sector_size from MFT-3.6.0 so if the // image was generated with an older mlxburn the fw_sector_size wount be available u_int32_t devid = _ioAccess->get_dev_id(); switch (devid) { case CX3_HW_ID: case CX3_PRO_HW_ID: return CX_DFLT_SECTOR_SIZE; default: return SX_DFLT_SECTOR_SIZE; } // we shouldnt reach here return 0; } bool Fs2Operations::GetMaxImageSize(u_int32_t flash_size, bool image_is_fs, u_int32_t imgConfigSectors, u_int32_t imgFwSectorSz, u_int32_t& max_image_size) { /* u_int32_t sector_size = _ioAccess->get_sector_size(); u_int32_t config_sectors = MY_MAX(imgConfigSectors, _fs2ImgInfo.ext_info.config_sectors); if (image_is_fs) { max_image_size = (flash_size / 2) - ((config_sectors + _fs2ImgInfo.ext_info.config_pad) * sector_size); } else { // For non FS image, there's an optional offset + 2 consecutive config areas max_image_size = flash_size - (config_sectors * 2 + _fs2ImgInfo.ext_info.config_pad) * sector_size; } */ /* new methodology: * a. for CX2/CX3/PRO: in case fw_sector_size is present reserve : num_of_config_sectors * fw_sector_size * b. for CX2/CX3/PRO: in case sector_size isnt present assume sector size is 64kb and reserve: * num_of_config_sectors * 64k c. for SwitchX: in case fw_sector_size is present reserve : ( num_of_config_sectors * + config_padd) * fw_sector_size d. for SwitchX: in case sector_size isnt present assume sector size is 4kb and * reserve: ( num_of_config_sectors + config_padd) *4k * ** on ALL cases we will impose the limitation of reserving at most 64kb to the NV configuration. * ** config_pad might be != 0 on SwitchX only. * ** To Orenks knowledge there arent any SwitchX with flashes that dont support 4kb. */ u_int32_t sector_size = (imgFwSectorSz != 0 || _fs2ImgInfo.fw_sector_size != 0) ? MY_MAX(imgFwSectorSz, _fs2ImgInfo.fw_sector_size) : getDefaultSectorSz(); u_int32_t config_sectors = MY_MAX(imgConfigSectors, _fs2ImgInfo.ext_info.config_sectors); u_int32_t areaToReserve = config_sectors * sector_size; // we dont want to exceed 64kb of reserved space areaToReserve = areaToReserve > MAX_CONFIG_AREA_SIZE ? MAX_CONFIG_AREA_SIZE : areaToReserve; // printf("-D- sector_size: 0x%x, config_sectors: %d, areaToReserve: 0x%x, config_pad: %d\n" //, sector_size, config_sectors, areaToReserve, _fs2ImgInfo.ext_info.config_pad); if (image_is_fs) { // why do we take config padding of the image info of the device and not the image to be burnt or the maximum // between them?? max_image_size = (flash_size / 2) - (areaToReserve + (_fs2ImgInfo.ext_info.config_pad * sector_size)); } else { // For non FS image, there's an optional offset + 2 consecutive config areas max_image_size = flash_size - (areaToReserve * 2 + _fs2ImgInfo.ext_info.config_pad * sector_size); } return true; } bool Fs2Operations::UpdateFullImageCRC(u_int32_t* buff, u_int32_t size, bool blank_guids) { // Writing 0xffff on the CRC field. u_int32_ba crc_dw = TOCPU1(buff[IMG_CRC_OFF / 4]); crc_dw.range(15, 0) = 0xffff; buff[IMG_CRC_OFF / 4] = CPUTO1(crc_dw); if (blank_guids) { return true; } // Calc CRC image. u_int32_t new_crc = CalcImageCRC(buff, size); // Update the CRC. TOCPU1(crc_dw); crc_dw.range(15, 0) = new_crc; buff[IMG_CRC_OFF / 4] = CPUTO1(crc_dw); return true; } #define ERASE_MESSAGE " Please erase them by using the command: \"" MLXCONFIG_CMD " " ERASE_CMD "\" and then re-burn" bool Fs2Operations::Fs2FailSafeBurn(Fs2Operations& imageOps, ExtBurnParams& burnParams) { bool allow_nofs = !burnParams.burnFailsafe; ProgressCallBack progressFunc = burnParams.progressFunc; ProgressCallBackEx progressFuncEx = burnParams.progressFuncEx; void* progressUserData = burnParams.progressUserData; bool isCpuUtilization = burnParams.use_cpu_utilization; int cpuPercent = burnParams.cpu_utilization; Flash* f = (Flash*)(this->_ioAccess); FImage* fim = (FImage*)(imageOps._ioAccess); // TODO: See getBuf effect on zebra image. u_int8_t* data8 = (u_int8_t*)fim->getBuf(); int image_size = fim->getBufLength(); u_int32_t zeroes = 0; bool is_curr_image_in_odd_chunks; // Update CRC. // TODO: No support for blank guids bool isBlankGuids = (_burnBlankGuids || imageOps._fs2ImgInfo.ext_info.blank_guids); if (fim->getBuf() == NULL) { return errmsg(MLXFW_ERR, "Bad FW image buffer."); } UpdateFullImageCRC(fim->getBuf(), image_size / 4, isBlankGuids); // size in dwords // TODO: Do we need the verify ORENK if (!allow_nofs) { if (!imageOps._fwImgInfo.ext_info.is_failsafe) { return errmsg(MLXFW_IMAGE_NOT_FS_ERR, "The given image is not a failsafe image"); } if (_fwImgInfo.cntxLog2ChunkSize != imageOps._fwImgInfo.cntxLog2ChunkSize) { return errmsg(MLXFW_FS_INFO_MISMATCH_ERR, "Failsafe chunk sizes in flash (0x%x) and in image (0x%x) are not the same.", 1 << _fwImgInfo.cntxLog2ChunkSize, 1 << imageOps._fwImgInfo.cntxLog2ChunkSize); } } u_int32_t max_image_size; if (!GetMaxImageSize(f->get_size(), imageOps._fwImgInfo.ext_info.is_failsafe, imageOps._fs2ImgInfo.ext_info.config_sectors, imageOps._fs2ImgInfo.fw_sector_size, max_image_size)) { return false; } // printf("-D- max image size : %d, image_size : %d\n",max_image_size, imageOps._fwImgInfo.ext_info.image_size); // Check if size of image is OK if (imageOps._fwImgInfo.ext_info.image_size > max_image_size) { const char* image_type = (imageOps._fwImgInfo.ext_info.is_failsafe) ? "failsafe" : "non-failsafe"; const char* note_str = (imageOps._fwImgInfo.ext_info.is_failsafe) ? " - half of total flash size" : " - total flash size"; return errmsg(MLXFW_IMAGE_TOO_LARGE_ERR, "Size of %s image (0x%x) is greater than max %s image size (0x%x%s)", image_type, imageOps._fwImgInfo.ext_info.image_size, image_type, max_image_size, note_str); } u_int32_t new_image_start; if (_fwImgInfo.imgStart != 0) { is_curr_image_in_odd_chunks = 1; new_image_start = 0; } else { is_curr_image_in_odd_chunks = 0; new_image_start = (1 << imageOps._fwImgInfo.cntxLog2ChunkSize); } if (imageOps._fwImgInfo.ext_info.is_failsafe) { f->set_address_convertor(imageOps._fwImgInfo.cntxLog2ChunkSize, !is_curr_image_in_odd_chunks); } else { f->set_address_convertor(0, 0); new_image_start = 0; } // Go ahead and burn! // const char* image_name = new_image_start == 0 ? "first" : "second"; if (!writeImageEx(progressFuncEx, progressUserData, progressFunc, 16, data8 + 16, image_size - 16, false, false, -1, 0, isCpuUtilization, cpuPercent)) { return false; } // Write new signature if (!f->write(0, data8, 16, true)) { // return false; return errmsg(MLXFW_FLASH_WRITE_ERR, "Flash write failed. %s", f->err()); } bool boot_address_was_updated = true; // Write new image start address to crspace (for SW reset) if (!f->update_boot_addr(new_image_start)) { boot_address_was_updated = false; } if (imageOps._fwImgInfo.ext_info.is_failsafe) { if (allow_nofs) { // When burning in nofs, remnant of older image with different chunk size // may reside on the flash - // Invalidate all images marking on flash except the one we've just burnt u_int32_t cntx_image_start[CNTX_START_POS_SIZE] = {0}; u_int32_t cntx_image_num; FindAllImageStart(_ioAccess, cntx_image_start, &cntx_image_num, _cntx_magic_pattern); // Address convertor is disabled now - use phys addresses for (u_int32_t i = 0; i < cntx_image_num; i++) { if (cntx_image_start[i] != new_image_start) { if (!f->write(cntx_image_start[i], &zeroes, sizeof(zeroes), true)) { // return false; return errmsg(MLXFW_FLASH_WRITE_ERR, "Flash write failed. %s", f->err()); } } } } else { // invalidate previous signature f->set_address_convertor(imageOps._fwImgInfo.cntxLog2ChunkSize, is_curr_image_in_odd_chunks); if (!f->write(0, &zeroes, sizeof(zeroes), true)) { // return false; return errmsg(MLXFW_FLASH_WRITE_ERR, "Flash write failed. %s", f->err()); } } } if (boot_address_was_updated == false) { report_warn("Failed to update FW boot address. Power cycle the device in order to load the new FW.\n"); } // on windows send caching command to driver (best effort) #ifdef __WIN__ if (!burnParams.skipCiReq) { int rc; mf_release_semaphore(_ioAccess->getMflashObj()); rc = wdcif_send_image_cache_request(_ioAccess->getMfileObj()); switch (rc) { case WDCIF_STATUS_SUCCESS: burnParams.burnStatus.imageCachedSuccessfully = true; break; case WDCIF_STATUS_OPERATION_NOT_SUPPORTED_BY_DRIVER: case WDCIF_STATUS_OPERATION_NOT_SUPPORTED_BY_DEVICE: case WDCIF_STATUS_UNSUPPORTED_DEVICE: case WDCIF_STATUS_UNSUPPORTED_ACCESS_TYPE: case WDCIF_STATUS_FAILED_TO_RETRIEVE_DRIVER_HANDLE: break; default: report_warn("Failed to Issue cache request to driver. next driver load may take more time.\n"); } } #endif return true; } bool Fs2Operations::preFS2PatchGUIDs(bool patch_macs, bool user_guids, bool user_macs, guid_t new_guids[MAX_GUIDS], guid_t old_guids[MAX_GUIDS], guid_t** used_guids_p, u_int32_t num_of_old_guids) { guid_t* used_guids; *used_guids_p = old_guids ? old_guids : new_guids; if (new_guids) { // if only guids or only macs are specified by user, keep the other // as currently set of flash. This is in order to simplify transitions between // burning IB and ETH FW. if (old_guids && !user_guids) { for (int i = 0; i < GUIDS; i++) { new_guids[i] = old_guids[i]; } } if (old_guids && !user_macs) { for (int i = GUIDS; i < MAX_GUIDS; i++) { new_guids[i] = old_guids[i]; } } *used_guids_p = new_guids; } used_guids = *used_guids_p; if (patch_macs) { // To ease upgrade from 4 GUIDS format to 4+2 format, or to move from IB to ETH, // if macs are not // explicitly set in flash, they are derived from the GUIDs according to // Mellanox methodology - 48 bit MAC == 64 bit GUID without the middle 16 bits. if (old_guids && ((num_of_old_guids == 4) || (num_of_old_guids == 6 && (old_guids[GUIDS].h & 0xffff) == 0xffff && (old_guids[GUIDS].l & 0xffffffff) == 0xffffffff && (old_guids[GUIDS + 1].h & 0xffff) == 0xffff && (old_guids[GUIDS + 1].l & 0xffffffff) == 0xffffffff))) { for (int i = 0; i < MACS; i++) { u_int64_t mac = old_guids[i + 1].h >> 8; mac <<= 24; mac |= (old_guids[i + 1].l & 0xffffff); old_guids[GUIDS + i].h = u_int32_t(mac >> 32); old_guids[GUIDS + i].l = u_int32_t(mac & 0xffffffff); // printf("-D- Guid " GUID_FORMAT " to MAC "MAC_FORMAT"\n", old_guids[i+1].h, old_guids[i+1].l, // old_guids[i+GUIDS].h,old_guids[i+GUIDS].l ); } } guid_t* macs = &used_guids[4]; for (int i = 0; i < MACS; i++) { u_int64_t mac = (((u_int64_t)macs[i].h) << 32) | macs[i].l; if (!_burnBlankGuids && !CheckMac(mac)) { return errmsg("Bad mac (" MAC_FORMAT ") %s: %s. Please re-burn with a valid -mac flag value.", macs[i].h, macs[i].l, user_macs ? "given" : "found on flash", err()); } } } return true; } void Fs2Operations::patchGUIDsSection(u_int32_t* buf, u_int32_t ind, guid_t guids[MAX_GUIDS], int nguids) { u_int32_t new_buf[MAX_GUIDS * 2] = {0}; // Form new GUID section for (u_int32_t i = 0; i < (u_int32_t)nguids; i++) { new_buf[i * 2] = guids[i].h; new_buf[i * 2 + 1] = guids[i].l; } // Patch GUIDs for (u_int32_t i = 0; i < sizeof(new_buf) / sizeof(u_int32_t); ++i) { new_buf[i] = _burnBlankGuids ? 0xffffffff : __cpu_to_be32(new_buf[i]); } memcpy(&buf[ind / 4], &new_buf[0], nguids * 2 * sizeof(u_int32_t)); // Insert new CRC if (_burnBlankGuids) { buf[ind / 4 + nguids * 2] = __cpu_to_be32(0xffff); } else { recalcSectionCrc((u_int8_t*)buf + ind - sizeof(GPH), sizeof(GPH) + nguids * 8); } } // patchGUIDsSection bool Fs2Operations::patchGUIDs(Fs2Operations& imageOps, bool patch_macs, bool user_guids, bool user_macs, guid_t new_guids[MAX_GUIDS], guid_t old_guids[MAX_GUIDS], u_int32_t num_of_old_guids) { guid_t* used_guids = (guid_t*)NULL; u_int32_t* buf = ((FImage*)imageOps._ioAccess)->getBuf(); // Call common function if (!preFS2PatchGUIDs(patch_macs, user_guids, user_macs, new_guids, old_guids, &used_guids, num_of_old_guids)) { return false; } // Path GUIDs section if (imageOps._fs2ImgInfo.guidPtr) { patchGUIDsSection(buf, imageOps._fwImgInfo.imgStart + imageOps._fs2ImgInfo.guidPtr, used_guids, imageOps._fs2ImgInfo.ext_info.guid_num); } return true; } void Fs2Operations::PatchInfoSect(u_int8_t* rawSect, u_int32_t vsdOffs, const char* vsd) { u_int32_t vsdSize = __be32_to_cpu(*((u_int32_t*)(rawSect + sizeof(GPH) + vsdOffs - 4))) & 0xffffff; u_int32_t infoSize = __be32_to_cpu(*((u_int32_t*)(rawSect + 4))); // byte size; infoSize *= 4; if (vsd) { u_int32_t len = strlen(vsd); if (len > vsdSize) { report_warn("The given VSD length is too large (%d chars). Truncating to %d chars.\n", len, vsdSize); len = vsdSize; } memset(rawSect + sizeof(GPH) + vsdOffs, 0, vsdSize); memcpy(rawSect + sizeof(GPH) + vsdOffs, vsd, len); } recalcSectionCrc(rawSect, sizeof(GPH) + infoSize); } bool Fs2Operations::patchImageVsd(Fs2Operations& imgFwOps, const char* userVsd) { u_int32_t* imgBuf = ((FImage*)(imgFwOps._ioAccess))->getBuf(); u_int8_t* imgInfoSect = (u_int8_t*)imgBuf + imgFwOps._fs2ImgInfo.infoSectPtr - sizeof(GPH); const char* vsdToUse = (userVsd && (strlen(userVsd) <= VSD_LEN)) ? userVsd : (const char*)(this->_fwImgInfo.ext_info.vsd); PatchInfoSect(imgInfoSect, imgFwOps._fs2ImgInfo.infoOffs[II_VSD], vsdToUse); return true; } /*********************************************************/ #define GUID_PTR_OFF 0x34 #define IMAGE_INFO_PTR 0x2c #define IMAGE_SIZE_OFF 0x30 #define IMAGE_ROM_INDEX 2 #define CRC_SECT_SIZE 4 #define TOTAL_SEC_SIZE(data_size) (data_size + sizeof(GPH) + CRC_SECT_SIZE) #define COPY_DW(dest, dword) \ { \ CPUTO1(dword); \ memcpy(dest, &dword, 4); \ } #define READ_DW(dw, data) \ { \ dw = (*((u_int32_t*)(data))); \ TOCPU1(dw); \ } bool Fs2Operations::CopyData(u_int8_t*& new_image, u_int8_t*& old_image, int copy_size) { memcpy(new_image, old_image, copy_size); new_image += copy_size; old_image += copy_size; return true; } bool Fs2Operations::CopyBoot2(u_int8_t*& new_image_p, u_int8_t*& old_image_p) { u_int32_t size; READ_DW(size, old_image_p + 4); size = (size + 4) * 4; CopyData(new_image_p, old_image_p, size); return true; } bool Fs2Operations::AddNewSect(u_int8_t*& new_image_p, u_int8_t* data, GPH gph, u_int32_t* last_next) { int size = gph.size * 4; *last_next = gph.next + sizeof(GPH); CPUTOBY(gph); // Copy the GPH memcpy(new_image_p, (u_int8_t*)&gph, sizeof(GPH)); // Copy the data memcpy(new_image_p + sizeof(GPH), data, size); // Calc the CRC and copy it recalcSectionCrc(new_image_p, sizeof(GPH) + size); new_image_p = new_image_p + TOTAL_SEC_SIZE(size); return true; } bool Fs2Operations::UpdateRomInImage(u_int8_t* new_image, u_int8_t* old_image, u_int8_t* rom_data, int rom_size, int* new_image_size) { GPH gph; u_int32_t header; u_int32_t next_ptr, last_next; u_int8_t *new_image_p, *old_image_p; new_image_p = new_image; old_image_p = old_image; // Copy first section CopyData(new_image_p, old_image_p, FS2_BOOT_START); //// Read BOOT2 CopyBoot2(new_image_p, old_image_p); READ_DW(header, old_image_p); if (header < H_FIRST || header >= H_LAST) { CopyBoot2(new_image_p, old_image_p); } next_ptr = old_image_p - old_image; last_next = next_ptr + sizeof(GPH); int sect_index = 0, rom_inserted = 0; // In this case we need to remove the ROM. if (rom_data == NULL) { rom_inserted = 1; } while (next_ptr && next_ptr != 0xff000000) { u_int8_t* old_section = old_image + next_ptr; gph = (*(GPH*)(old_section)); TOCPUBY(gph); u_int32_t new_image_index = (new_image_p - new_image); sect_index++; // printf("-D- new_image_index = %#x, next_ptr = %#x\n", new_image_index, next_ptr); next_ptr = gph.next; u_int8_t* data; // printf("-D- Before GPH: type = %#x, size = %#x, next = %#x, param = %#x\n", gph.type, gph.size, gph.next, // gph.param); if (!rom_inserted && (sect_index == IMAGE_ROM_INDEX || gph.type == H_ROM)) { // prepare new ROM. GPH new_gph; int rom_whole_size = TOTAL_SEC_SIZE(rom_size); data = rom_data; new_gph.size = rom_size / 4; new_gph.next = new_image_index + rom_whole_size; new_gph.param = 0; new_gph.type = H_ROM; AddNewSect(new_image_p, data, new_gph, &last_next); rom_inserted = 1; } // If this section is ROM section we will ignore it. if (gph.type == H_ROM) { continue; } new_image_index = (new_image_p - new_image); data = old_section + sizeof(GPH); if (gph.next != 0xff000000) { gph.next = new_image_index + TOTAL_SEC_SIZE(gph.size * 4); } if (gph.type == H_GUID) { COPY_DW(new_image + GUID_PTR_OFF, last_next); } else if (gph.type == H_IMG_INFO) { u_int32_ba a = last_next; u_int32_t check_sum = 0; for (int i = 0; i < 3; i++) { check_sum += a.range(i * 8 + 7, i * 8); } check_sum = 0x100 - (check_sum % 0x100); a.range(31, 24) = check_sum; last_next = u_int32_t(a); COPY_DW(new_image + IMAGE_INFO_PTR, last_next); } AddNewSect(new_image_p, data, gph, &last_next); } // Update image size. u_int32_t size = new_image_p - new_image; /* TODO: reivew this, also deal with if fw is failsafe we should compare with get_size()/2 if not compare with the entire flash size //check if size is bigger than flash if (size >= _fwImgInfo.actuallyFailsafe ? (_ioAccess->get_size()/2) : (_ioAccess->get_size())) { return errmsg("Rom is too big to be integrated with the FW image.(img: %d, flash: %d)", (int)size, (int)_ioAccess->get_size() ); }*/ *new_image_size = size; COPY_DW(new_image + IMAGE_SIZE_OFF, size); // Writing 0 on the CRC existing field to let the tool verify the image // and get some information which will be needed later. u_int32_ba crc_dw = TOCPU1(*(u_int32_t*)(&new_image[IMG_CRC_OFF])); crc_dw.range(23, 16) = 0; (*(u_int32_t*)(&new_image[IMG_CRC_OFF])) = CPUTO1(crc_dw); return true; } bool Fs2Operations::IntegrateDevRomInImage(Fs2Operations& imageOps) { u_int32_t rom_size = _romSect.size(); FImage* fim = (FImage*)(imageOps._ioAccess); u_int32_t new_image_size = fim->getBufLength() + TOTAL_SEC_SIZE(rom_size); vector new_data(new_image_size); int actual_image_size; // vector romWithEndian<> // TOCPUn((u_int8_t*)(&_romSect[0]), rom_size/4); if (fim->getBuf() == NULL) { return errmsg("Bad FW image buffer\n"); } if (!_romSect.empty()) { // Compine the image and the rom into new daa if (!UpdateRomInImage((u_int8_t*)(&new_data[0]), (u_int8_t*)(fim->getBuf()), (u_int8_t*)(&_romSect[0]), rom_size, &actual_image_size)) { return errmsg("%s", err()); } // close old image and open new image with the rom. ((FImage*)(imageOps._ioAccess))->close(); ((FImage*)(imageOps._ioAccess))->open((u_int32_t*)(&new_data[0]), actual_image_size); if (!imageOps.FwVerify((VerifyCallBack)NULL) || !imageOps.Fs2IntQuery()) { return errmsg("Internal error: verify/query of image after integrating ROM failed\n"); } } else { printf("-W- Skipping ROM section handling (ROM section is empty)\n"); } return true; } /********************************************************************/ bool Fs2Operations::Fs2Burn(Fs2Operations& imageOps, ExtBurnParams& burnParams) { if (imageOps.FwType() != FIT_FS2) { return errmsg(MLXFW_IMAGE_FORMAT_ERR, "FW image type is not compatible with device (FS2)"); } if (!imageOps.Fs2IntQuery()) { return false; } bool devIntQueryRes = Fs2IntQuery(); if (!devIntQueryRes && burnParams.burnFailsafe) { return errmsg("%s, burn cannot be failsafe.", err()); } // Check Matching device ID if (!burnParams.noDevidCheck) { if (imageOps._fs2ImgInfo.infoOffs[II_HwDevsId]) { if (!CheckMatchingHwDevId(_ioAccess->get_dev_id(), _ioAccess->get_rev_id(), imageOps._fwImgInfo.supportedHwId, imageOps._fwImgInfo.supportedHwIdNum)) { return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "Device/Image mismatch: %s\n", this->err()); } } else if (imageOps._fs2ImgInfo.infoOffs[II_DeviceType]) { if (!CheckMatchingDevId(_ioAccess->get_dev_id(), imageOps._fwImgInfo.ext_info.dev_type)) { return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "Device/Image mismatch: %s\n", this->err()); } } } // Check PSID if (devIntQueryRes && !CheckPSID(imageOps, burnParams.allowPsidChange)) { return false; } // Check if the burnt FW version is OK if (!CheckFwVersion(imageOps, burnParams.ignoreVersionCheck)) { return false; } // ROM patchs if (((burnParams.burnRomOptions == ExtBurnParams::BRO_FROM_DEV_IF_EXIST) && (_fwImgInfo.ext_info.roms_info.exp_rom_found)) || // There is ROM in device and user choses ir ((burnParams.burnRomOptions == ExtBurnParams::BRO_DEFAULT) && (!imageOps._fwImgInfo.ext_info.roms_info.exp_rom_found))) { // No ROM in image if (!IntegrateDevRomInImage(imageOps)) { return false; } } // Guids patch _burnBlankGuids = burnParams.blankGuids; bool isGuidsSpecified = burnParams.userMacsSpecified || burnParams.userGuidsSpecified; if (isGuidsSpecified) { // Get the GUIDS/MACsUIDs from the user input if (!patchGUIDs(imageOps, true, burnParams.userGuidsSpecified, burnParams.userMacsSpecified, (guid_t*)(&(burnParams.userUids[0])), _fs2ImgInfo.ext_info.guids, _fs2ImgInfo.ext_info.guid_num)) { return false; } } else if (!burnParams.useImageGuids) { // Get the GUIDS/MACsUIDs from the device if (!patchGUIDs(imageOps, true, false, false, (guid_t*)NULL, _fs2ImgInfo.ext_info.guids, _fs2ImgInfo.ext_info.guid_num)) { return false; } } // Patch the image VSD file if (burnParams.vsdSpecified || !burnParams.useImagePs) { if (!patchImageVsd(imageOps, burnParams.userVsd)) { return false; } } return Fs2FailSafeBurn(imageOps, burnParams); } bool Fs2Operations::FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurn\n"); } ExtBurnParams burnParams = ExtBurnParams(); burnParams.ignoreVersionCheck = forceVersion; burnParams.progressFunc = progressFunc; return Fs2Burn((*(Fs2Operations*)imageOps), burnParams); } bool Fs2Operations::FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurnAdvanced\n"); } return Fs2Burn((*(Fs2Operations*)imageOps), burnParams); } bool Fs2Operations::FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurnBlock\n"); } FImage* fim = (FImage*)((Fs2Operations*)imageOps)->_ioAccess; return writeImage(progressFunc, 0, fim->getBuf(), fim->getBufLength()); } bool Fs2Operations::FwReadRom(std::vector& romSect) { if (!Fs2IntQuery()) { return false; } if (_romSect.empty()) { return errmsg("The FW does not contain a ROM section"); } romSect = _romSect; return true; } bool Fs2Operations::FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc) { // avoid compiler warrnings (void)baseGuid; (void)callBackFunc; return errmsg("This command is not supported for FS2 FW image."); } bool Fs2Operations::FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc) { // avoid compiler warrnings (void)baseGuid; (void)callBackFunc; return errmsg("This command is not supported for FS2 FW image."); } bool Fs2Operations::FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage) { if (sectType != H_FW_CONF && sectType != H_HASH_FILE) { return errmsg("Unsupported section type."); } initSectToRead(sectType); if (!Fs2Verify((VerifyCallBack)NULL, stripedImage)) { return false; } if (sectType == H_FW_CONF) { sectInfo = _fwConfSect; } else { sectInfo = _hashFileSect; } if (sectInfo.empty()) { return errmsg("FW section not found in the given image."); } return true; } bool Fs2Operations::ModifyVSDSection(const char* vsd, ProgressCallBack callBackFunc) { (void)callBackFunc; /* avoid compiler warning*/ u_int32_t length = _fwImgInfo.lastImageAddr; vector data(length); // Read the image. if (!_ioAccess->read(0, (u_int8_t*)(&data[0]), length)) { return errmsg("Flash/Image read failed. %s", _ioAccess->err()); } // Change the VSD PatchInfoSect((u_int8_t*)(&data[0]) + _fs2ImgInfo.infoSectPtr - sizeof(GPH), _fs2ImgInfo.infoOffs[II_VSD], vsd); // Re-burn the new Image after modifying the VSD return ReburnNewImage((u_int8_t*)(&data[0]), "VSD", callBackFunc); } bool Fs2Operations::ReburnNewImage(u_int8_t* data, const char* feature_name, ProgressCallBack callBackFunc) { ExtBurnParams burnParams; burnParams.progressFunc = callBackFunc; burnParams.burnFailsafe = false; u_int32_t length = _fwImgInfo.lastImageAddr; // char burn_str[100]; bool is_image = (_fname != NULL); bool needs_repack = (is_image && _fwImgInfo.actuallyFailsafe); // Burn the Image after modifying the VSD. // Create a fwOperations object of the modified image FwOperations* newOps = FwOperationsCreate((void*)data, (void*)&length, (char*)NULL, FHT_FW_BUFF, NULL, 0, _fwParams.ignoreCrcCheck); // Verify the new image and exit if it's not VALID. if (!((Fs2Operations*)newOps)->Fs2IntQuery()) { return errmsg(MLXFW_IMAGE_CORRUPTED_ERR, "Internal error: The prepared image After modifying the %s is corrupted: %s\n", feature_name, newOps->err()); } if (!is_image) { // Modify the flash if (!Fs2FailSafeBurn(*((Fs2Operations*)newOps), burnParams)) { delete newOps; return false; } } else { u_int8_t* striped_data = new u_int8_t[length * 2]; u_int32_t striped_length; // Modify the image. // Update the Full image CRC. UpdateFullImageCRC((u_int32_t*)data, length / 4, false); // Re-pack the image as it was given. // When it was striped this function would return it to that case. packStripedImageData(striped_data, data, length, striped_length, needs_repack, _fwImgInfo.cntxLog2ChunkSize); // Re-write the image to the file. if (!((FImage*)_ioAccess)->write(0, striped_data, striped_length)) { delete[] striped_data; delete newOps; return false; } delete[] striped_data; } delete newOps; return true; } bool Fs2Operations::packStripedImageData(u_int8_t* striped_data, u_int8_t* normal_data, u_int32_t length, u_int32_t& striped_length, bool needs_repack, u_int32_t cntxLog2ChunkSize) { if (needs_repack) { u_int32_t chunk_size = 1 << cntxLog2ChunkSize; u_int32_t chunk_num = (length / chunk_size) + 1; striped_length = 0; // Loop which runs over the chunks for (u_int32_t i = 0; i < chunk_num; i++) { u_int32_t normal_index = i * chunk_size; u_int32_t striped_index = normal_index * 2; u_int32_t size = (length - normal_index); u_int8_t* striped_ptr = striped_data + striped_index; size = (size <= chunk_size) ? size : chunk_size; memcpy(striped_ptr, normal_data + normal_index, size); striped_length += size; if (i != (chunk_num - 1)) { // Add blank chunk after all the chunks instead the last one. memset(striped_ptr + chunk_size, 0xff, chunk_size); striped_length += chunk_size; } } } else { striped_length = length; memcpy(striped_data, normal_data, length); } return true; } bool Fs2Operations::ModifyKeySection(guid_t access_key, ProgressCallBack callBackFunc) { u_int32_t length = _fwImgInfo.lastImageAddr; vector data(length); // Read the image. if (!_ioAccess->read(0, (u_int8_t*)(&data[0]), length)) { return errmsg("Flash/Image read failed. %s\n", _ioAccess->err()); } // Change the VSD PatchKeySect((u_int32_t*)(&data[0] + _fs2ImgInfo.infoSectPtr - sizeof(GPH)), _fs2ImgInfo.infoOffs[II_HwAccessKey], access_key); // Re-burn the new Image after modifying the VSD return ReburnNewImage((u_int8_t*)(&data[0]), "HW Key", callBackFunc); } void Fs2Operations::PatchKeySect(u_int32_t* buff, u_int32_t keyOff, guid_t hw_key) { u_int32_t infoSize = __be32_to_cpu(*(buff + 1)); u_int32_t sectSize = sizeof(GPH) + infoSize * 4; u_int32_t realKeyoff = (keyOff + sizeof(GPH)) / 4; // Update the key in the buffer which is supposed to be burnt into the flash buff[realKeyoff] = __cpu_to_be32(hw_key.h); buff[realKeyoff + 1] = __cpu_to_be32(hw_key.l); recalcSectionCrc((u_int8_t*)buff, sectSize); return; } bool Fs2Operations::ModifyGuidSection(guid_t* user_guids, ProgressCallBack progressFunc) { u_int32_t length = _fwImgInfo.lastImageAddr; vector data(length); // Read the image. if (!_ioAccess->read(0, (u_int8_t*)(&data[0]), length)) { return errmsg("Flash/Image read failed: %s\n", _ioAccess->err()); } // Change the GUIDs section according to the user given GUIDs patchGUIDsSection((u_int32_t*)(&data[0]), _fs2ImgInfo.guidPtr, user_guids, _fs2ImgInfo.ext_info.guid_num); // Re-burn the new Image after modifying the GUIDs return ReburnNewImage((u_int8_t*)(&data[0]), "GUIDs", progressFunc); } bool Fs2Operations::Fs2SetGuidsForBlank(sg_params_t& sgParam) { // There is blank GUIDs on the device (not image) u_int32_t guid_sect_addr[2] = {0}; u_int32_t length = _fwImgInfo.ext_info.image_size; if (!_ioAccess->is_flash()) { return errmsg("Image file is not supported."); } guid_sect_addr[0] = _fs2ImgInfo.guidPtr; for (int i = 0; i < 2 && guid_sect_addr[i]; i++) { u_int32_t guid_sect[MAX_GUIDS * 2 + 5]; // Save room for header + crc if (!_ioAccess->read(guid_sect_addr[i] - 16, guid_sect, 16)) { return errmsg("Failed to read guids section - flash read error (%s)\n", _ioAccess->err()); } // we have blank guids so make sure we have ffff in sgParams.userGuids in the correct pos if (!sgParam.guidsSpecified) { memset(&sgParam.userGuids[0], 0xff, (sizeof(guid_t)) * GUIDS); } if (!sgParam.macsSpecified) { memset(&sgParam.userGuids[GUIDS], 0xff, (sizeof(guid_t)) * MACS); } // patchGUIDsSection(u_int32_t *buf, u_int32_t ind, guid_t guids[MAX_GUIDS], int nguids) patchGUIDsSection(guid_sect, 16, &sgParam.userGuids[0], _fs2ImgInfo.ext_info.guid_num); if (!_ioAccess->write(guid_sect_addr[i], guid_sect + 4, _fs2ImgInfo.ext_info.guid_num * 8 + 4, true)) { return errmsg("flash write error (%s)\n", _ioAccess->err()); } } if (sgParam.updateCrc) { // Read the image. vector data(length); if (!_ioAccess->read(0, (u_int32_t*)(&data[0]), length)) { return errmsg("Flash read failed: %s\n", _ioAccess->err()); } // TODO: Do we need to update the CRC existing ORENK // Calc & Update CRC. u_int32_t* new_data = (u_int32_t*)(&data[0]); u_int32_t crc = CalcImageCRC(new_data, length / 4); u_int32_ba old_dw = __be32_to_cpu(new_data[IMG_CRC_OFF / 4]); old_dw.range(15, 0) = crc; u_int32_t new_crc_dw = CPUTO1(old_dw); if (!_ioAccess->write(IMG_CRC_OFF, &new_crc_dw, 4, true)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "flash write error (%s).", _ioAccess->err()); } } return true; } bool Fs2Operations::Fs2SetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc, ProgressCallBack progressFunc) { // avoid compiler warrnings (void)callBackFunc; // bool ib_dev, eth_dev; // Get the FW types SetDevFlags(_fwImgInfo.ext_info.chip_type, _fwImgInfo.ext_info.dev_type, FIT_FS2, ib_dev, eth_dev); guid_t* old_guids = _fwImgInfo.imageOk ? _fs2ImgInfo.ext_info.guids : (guid_t*)NULL; guid_t* used_guids = (guid_t*)NULL; // Patch the GUIDs and prints any needed warnings // resize our user guids vector to MAX_GUIDS sgParam.userGuids.resize(MAX_GUIDS); if (!preFS2PatchGUIDs(eth_dev, sgParam.guidsSpecified, sgParam.macsSpecified, &sgParam.userGuids[0], old_guids, &used_guids, _fs2ImgInfo.ext_info.guid_num)) { return false; } // Modify the guids in the burnt image and re-burn it if (!ModifyGuidSection(used_guids, progressFunc)) { return false; } return true; } bool Fs2Operations::FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc, ProgressCallBack progressFunc) { /* avoid annoying mingw warnings*/ (void)callBackFunc; (void)progressFunc; if (!Fs2IntQuery(true, sgParam.stripedImage)) { return false; } if (sgParam.userGuids.size() != MAX_GUIDS) { return errmsg("invalid userGuid vector size given in sgParams."); } if (_fs2ImgInfo.ext_info.blank_guids) { return Fs2SetGuidsForBlank(sgParam); } return Fs2SetGuids(sgParam, callBackFunc, progressFunc); } bool Fs2Operations::FwBurnRom(FImage* romImg, bool ignoreProdIdCheck, bool ignoreDevidCheck, ProgressCallBack progressFunc) { ExtBurnParams burnParams; burnParams.progressFunc = progressFunc; burnParams.burnFailsafe = false; // we dont support adding rom to an image just yet if (!_ioAccess->is_flash()) { return errmsg("Burn ROM not supported for FS2 image."); } // make sure we dont get fwImage instead of rom file u_int32_t cntx_image_start[CNTX_START_POS_SIZE]; u_int32_t cntx_image_num; FindAllImageStart(romImg, cntx_image_start, &cntx_image_num, _cntx_magic_pattern); if (cntx_image_num != 0) { return errmsg("Expecting an expansion ROM image, received Mellanox FW image."); } if (!Fs2IntQuery()) { return false; } if (_fwImgInfo.ext_info.chip_type != CT_CONNECTX) { // TODO: Indicate the device name. return errmsg("Unsupported device type %d", _fwImgInfo.ext_info.dev_type); } if (_romSect.empty() && !IsFwSupportingRomModify(FwVersion(createFwVersion(&_fwImgInfo.ext_info)))) { return errmsg("It is not allowed to burn ROM on device which has fw: %d.%d.%d that doesn't contain ROM.", _fwImgInfo.ext_info.fw_ver[0], _fwImgInfo.ext_info.fw_ver[1], _fwImgInfo.ext_info.fw_ver[2]); } if (!ignoreProdIdCheck && _fs2ImgInfo.infoOffs[II_ProductVer]) { return errmsg("The device FW contains common FW/ROM Product Version - The ROM cannot be updated separately."); } u_int32_t length = _fwImgInfo.lastImageAddr; u_int32_t new_data_size = length + TOTAL_SEC_SIZE(romImg->getBufLength()); vector data(length); vector new_data(new_data_size); // Read the image. if (!_ioAccess->read(0, (u_int8_t*)(&data[0]), length)) { return errmsg("Flash read failed: %s", _ioAccess->err()); } u_int32_t new_image_size; // Insert the rom to the image. if (!UpdateRomInImage((u_int8_t*)(&new_data[0]), (u_int8_t*)(&data[0]), (u_int8_t*)romImg->getBuf(), romImg->getBufLength(), (int*)&new_image_size)) { return false; } // open the image FwOperations* newOps = FwOperationsCreate((void*)&new_data[0], (void*)&new_image_size, (char*)NULL, FHT_FW_BUFF, NULL, 0, _fwParams.ignoreCrcCheck); if (!newOps) { return errmsg("Internal error: The prepared image is corrupted."); } if (!((Fs2Operations*)newOps)->Fs2Verify((VerifyCallBack)NULL, false, false, false, true) || !((Fs2Operations*)newOps)->Fs2Query()) { errmsg("Internal error: The prepared image is corrupted: %s", newOps->err()); newOps->FwCleanUp(); delete newOps; return false; } // init fw_info_t struct for checkMatchingExpRomDevId fw_info_t info; info.fw_type = FIT_FS2; info.fw_info = ((Fs2Operations*)newOps)->_fwImgInfo.ext_info; // no need to init the fs2_info part of fw_info_t as the function doesnt use it. if (!ignoreDevidCheck && !FwOperations::checkMatchingExpRomDevId(info)) { errmsg("Image file ROM: FW is for device %d, but Exp-ROM is for device %d\n", ((Fs2Operations*)newOps)->_fwImgInfo.ext_info.dev_type, ((Fs2Operations*)newOps)->_fwImgInfo.ext_info.roms_info.exp_rom_com_devid); newOps->FwCleanUp(); delete newOps; return false; } bool rc = Fs2FailSafeBurn(*((Fs2Operations*)newOps), burnParams); newOps->FwCleanUp(); delete newOps; return rc; } bool Fs2Operations::FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc) { ExtBurnParams burnParams; burnParams.progressFunc = progressFunc; burnParams.burnFailsafe = false; // we dont support delete rom in FS2 image yet if (!_ioAccess->is_flash()) { return errmsg("Delete ROM not supported for FS2 image."); } // Verify to get some parameters if (!Fs2IntQuery()) { return false; } if (_fwImgInfo.ext_info.chip_type != CT_CONNECTX) { // TODO: Indicate the device name. return errmsg("Unsupported device type %d", _fwImgInfo.ext_info.dev_type); } if (_romSect.empty()) { return errmsg("The FW does not contain a ROM section."); } if (!IsFwSupportingRomModify(FwVersion(createFwVersion(&_fwImgInfo.ext_info)))) { return errmsg("Unsupported Fw version (%d.%d.%d).", _fwImgInfo.ext_info.fw_ver[0], _fwImgInfo.ext_info.fw_ver[1], _fwImgInfo.ext_info.fw_ver[2]); } if (!ignoreProdIdCheck && _fs2ImgInfo.infoOffs[II_ProductVer]) { return errmsg("The device FW contains common FW/ROM Product Version - The ROM cannot be removed separately.\n"); } u_int32_t length = _fwImgInfo.lastImageAddr; vector data(length); vector new_data(length); // Read the image. if (!_ioAccess->read(0, (u_int8_t*)(&data[0]), length)) { return errmsg("Flash read failed: %s\n", _ioAccess->err()); } int new_image_size; if (!UpdateRomInImage((u_int8_t*)(&new_data[0]), (u_int8_t*)(&data[0]), (u_int8_t*)NULL, 0, &new_image_size)) { return errmsg("%s", _ioAccess->err()); } // Burn the Image after the ROM was removed. FwOperations* newOps = FwOperationsCreate((void*)&new_data[0], (void*)&new_image_size, (char*)NULL, FHT_FW_BUFF, NULL, 0, _fwParams.ignoreCrcCheck); if (!newOps) { return errmsg("Internal error: The prepared image after removing the ROM is corrupted."); } // To verify the new image and exit if it's not VALID. if (!((Fs2Operations*)newOps)->Fs2Verify((VerifyCallBack)NULL, false, false, false, true) || !((Fs2Operations*)newOps)->Fs2Query()) { errmsg("Internal error: The prepared image after removing the ROM is corrupted: %s", newOps->err()); newOps->FwCleanUp(); delete newOps; return false; } bool rc = Fs2FailSafeBurn(*((Fs2Operations*)newOps), burnParams); newOps->FwCleanUp(); delete newOps; return rc; } bool Fs2Operations::FwSetVSD(char* vsdStr, ProgressCallBack progressFunc, PrintCallBack printFunc) { // avoid compiler warrnings (void)printFunc; // if (!Fs2IntQuery()) { return false; } if (_fwImgInfo.ext_info.chip_type != CT_CONNECTX) { // TODO: Indicate the device name. return errmsg("Unsupported device type %d", _fwImgInfo.ext_info.dev_type); } if (!_fs2ImgInfo.infoOffs[II_VSD]) { return errmsg("No info section on the image."); } if (strlen(vsdStr) > VSD_LEN) { return errmsg("VSD string is too long(%d), max allowed length: %d", (int)strlen(vsdStr), VSD_LEN); } if (!ModifyVSDSection(vsdStr, progressFunc)) { return false; } return true; } bool Fs2Operations::FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc) { // avoid compiler warrnings (void)vpdFileStr; (void)callBackFunc; return errmsg("Setting VPD is not supported in FS2 image format."); } bool Fs2Operations::FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc) { /*avoid compiler warning*/ (void)progressFunc; if (!Fs2IntQuery()) { return false; } if (_fwImgInfo.ext_info.chip_type != CT_CONNECTX) { // TODO: Indicate the device name. return errmsg("Unsupported device type %d", _fwImgInfo.ext_info.dev_type); } if (!_fs2ImgInfo.infoOffs[II_HwAccessKey]) { return errmsg("The image does not support this operation."); } if (!ModifyKeySection(userKey, progressFunc)) { return false; } return true; } bool Fs2Operations::FwResetNvData() { if (!_ioAccess->is_flash()) { return errmsg("Cannot perform operation on Image"); } if (!Fs2IntQuery()) { return false; } u_int32_t devId = _ioAccess->get_dev_id(); if (devId != CX3_HW_ID && devId != CX3_PRO_HW_ID) { // TODO: Indicate the device name. return errmsg("Unsupported device type(%d). Can only perform operation on CX3/CX3-PRO ", _fwImgInfo.ext_info.dev_type); } if (_fs2ImgInfo.fw_sector_size == 0) { // if fw was generated with old mft i.e without the fw_sector_size than we dont allow this operation return errmsg("Firmware was generated with old MFT, please use MFT-3.6.0 or above"); } // find configuration section base addr = (flash size - (config_sectors + config_pad)*64k) u_int32_t availFlashSize = _fwImgInfo.actuallyFailsafe ? (_ioAccess->get_size() / 2) : _ioAccess->get_size(); u_int32_t fwSectorSz = _fs2ImgInfo.fw_sector_size != 0 ? _fs2ImgInfo.fw_sector_size : getDefaultSectorSz(); u_int32_t reservedArea = _fs2ImgInfo.ext_info.config_sectors * fwSectorSz; reservedArea = reservedArea > MAX_CONFIG_AREA_SIZE ? MAX_CONFIG_AREA_SIZE : reservedArea; u_int32_t configBaseAddr; if (_fwImgInfo.actuallyFailsafe) { configBaseAddr = availFlashSize - (reservedArea + _fs2ImgInfo.ext_info.config_pad * fwSectorSz); } else { // For non FS image, there's an optional offset + 2 consecutive config areas configBaseAddr = availFlashSize - (reservedArea * 2 + (_fs2ImgInfo.ext_info.config_pad * fwSectorSz)); } // printf("-D- config_sectors:0x%x config_pads: 0x%x , sector_size:0x%x, configBaseAddr:0x%x, flashSize:0x%x\n", //_fs2ImgInfo.ext_info.config_sectors, _fs2ImgInfo.ext_info.config_pad, fwSectorSz,configBaseAddr, availFlashSize); // erase addresses : [configBaseAddr..AvailFlashSize] _ioAccess->set_flash_working_mode(Flash::Fwm_Default); u_int32_t sectorSize = _ioAccess->get_sector_size(); u_int32_t configEndAddr = availFlashSize - (_fs2ImgInfo.ext_info.config_pad * fwSectorSz); for (u_int32_t eraseAddr = configBaseAddr; eraseAddr < configEndAddr; eraseAddr += sectorSize) { if (!_ioAccess->erase_sector(eraseAddr)) { return errmsg("failed to erase configuration address: 0x%x. %s", eraseAddr, _ioAccess->err()); } if (_fwImgInfo.actuallyFailsafe) { // erase config sectors on the other half aswell _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, !(_fwImgInfo.imgStart != 0)); if (!_ioAccess->erase_sector(eraseAddr)) { _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, (_fwImgInfo.imgStart != 0)); ; return errmsg("failed to erase configuration address: 0x%x. %s", eraseAddr, _ioAccess->err()); } // restore address converter _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, (_fwImgInfo.imgStart != 0)); } } return true; } bool Fs2Operations::FwShiftDevData(PrintCallBack progressFunc) { // avoid compiler warrnings (void)progressFunc; return errmsg("Shifting device data sections is not supported in FS2 image format."); } const char* Fs2Operations::FwGetResetRecommandationStr() { return (const char*)NULL; } bool Fs2Operations::FwCalcMD5(u_int8_t md5sum[16]) { #if defined(UEFI_BUILD) || defined(NO_CS_CMD) (void)md5sum; return errmsg("Operation not supported"); #else // no support for striped image ATM if (!Fs2IntQuery(true, false)) { return false; } if (_fwImgInfo.ext_info.is_failsafe && _fwImgInfo.actuallyFailsafe) { _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); } else { _ioAccess->set_address_convertor(0, 0); } // read entire flash std::vector md5buff; md5buff.resize(_fwImgInfo.lastImageAddr); READBUF((*_ioAccess), 0, &md5buff[0], _fwImgInfo.lastImageAddr, "Calculate MD5"); // mask out image CRC, GUIDs, VSD, ImageInfo CRC // full image CRC DW memset(&md5buff[0x20], 0xff, 4); // GUIDs memset(&md5buff[_fs2ImgInfo.guidPtr - 0x10], 0xff, 0x44); // VSD memset(&md5buff[_fs2ImgInfo.infoSectPtr + _fs2ImgInfo.infoOffs[II_VSD]], 0xff, 0xd0); // Image Info CRC u_int32_t infoSectSize = __be32_to_cpu(*(u_int32_t*)&md5buff[_fs2ImgInfo.infoSectPtr - sizeof(GPH) + 0x4]) << 2; memset(&md5buff[_fs2ImgInfo.infoSectPtr + infoSectSize], 0xff, 4); // calc md5 sum tools_md5(&md5buff[0], md5buff.size(), md5sum); return true; #endif } mstflint-4.26.0/mlxfwops/lib/bluefiled_signature_manager.cpp0000644000175000017500000000656314522641732024554 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include "signature_manager.h" #include "flint_io.h" #include "flint_base.h" #include "fw_ops.h" #include "fs3_ops.h" #include "tools_utils.h" using namespace std; bool BluefieldFwOperationsSignatureManager::AddSignature(mfile* mf, Fs3Operations* imageOps, Flash* f, u_int32_t imageOffset) { (void)imageOffset; #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) if (mf->tp == MST_SOFTWARE) { const unsigned int KEYLENGTH = 64; vector key; vector digest; // read the on-chip EFUSE value of MDK, MDK 512 bits are located at 0x1c1640-0x1c167c key.resize(KEYLENGTH); if (mread4_block(mf, 0x1c1640, (u_int32_t*)key.data(), KEYLENGTH) != (int)KEYLENGTH) { return errmsg("Failed to read MDK from CR"); } if (!imageOps->CalcHMAC(key, digest)) { return false; } // burn the HMAC digest u_int32_t sectionSize = 0x0; u_int32_t sectionOffset = 0x0; if (!imageOps->GetSectionSizeAndOffset(FS3_HMAC_DIGEST, sectionSize, sectionOffset)) { return errmsg("Could not retrieve HMAC section size and offset"); } size_t digestSizeInDW = digest.size() >> 2; u_int32_t* digestDWP = (u_int32_t*)digest.data(); for (unsigned int i = 0; i < digestSizeInDW; i++) { digestDWP[i] = CPU_TO_BE32(digestDWP[i]); } if (!f->write(sectionOffset, digest.data(), sectionSize, true)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Failed to burn HMAC digest: %s", f->err()); } } #else (void)imageOps; (void)f; (void)mf; // ignore for UEFI #endif return true; }; mstflint-4.26.0/mlxfwops/lib/fsctrl_ops.h0000644000175000017500000001745614522641732020674 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fw_ops.h" #include "aux_tlv_ops.h" #include "fw_comps_mgr/fw_comps_mgr.h" #include "fw_comps_mgr/fw_comps_mgr_dma_access.h" class FsCtrlOperations : public FwOperations { public: FsCtrlOperations(FwCompsMgr* fwComps) : FwOperations((FBase*)NULL), _fwCompsAccess(fwComps), _isSecured(false), _hwDevId(0) { memset(&_fsCtrlImgInfo, 0, sizeof(_fsCtrlImgInfo)); } virtual ~FsCtrlOperations(); virtual u_int8_t FwType(); virtual bool IsFifthGen() { return true; } virtual bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false); virtual bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false); // Add callback print virtual bool FwVerifyAdv(ExtVerifyParams& verifyParams); // on call of FwReadData with Null image we get image_size virtual bool FwReadData(void* image, u_int32_t* image_sizes, bool verbose = false); virtual bool FwReadBlock(u_int32_t addr, u_int32_t size, std::vector& dataVec); virtual bool FwReadRom(std::vector& romSect); virtual bool FwBurnRom(FImage* romImg, bool ignoreProdIdCheck = false, bool ignoreDevidCheck = false, ProgressCallBack progressFunc = (ProgressCallBack)NULL); // can also read the rom from flint // and give a vector of u_int8_t virtual bool FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams); virtual bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId); virtual bool FwBurnAdvanced(std::vector imageOps4MData, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId = FwComponent::COMPID_BOOT_IMG); virtual bool FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc); // Add: callback progress, question arr, callback question, // configurations bool FwWriteBlock(u_int32_t addr, std::vector dataVec, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc = (PrintCallBack)NULL, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL); // use progressFunc when dealing with FS2 image and printFunc when dealing with FS3 image. virtual bool FwSetVSD(char* vsdStr, ProgressCallBack progressFunc = (ProgressCallBack)NULL, PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage = false); virtual bool FwResetNvData(); virtual bool FwShiftDevData(PrintCallBack progressFunc = (PrintCallBack)NULL); virtual const char* FwGetResetRecommandationStr(); virtual bool FwInit(); virtual bool FwCalcMD5(u_int8_t md5sum[16]); virtual bool FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer); virtual bool FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false); virtual bool FwResetTimeStamp(); bool FwReactivateImage(); Tlv_Status_t GetTsObj(TimeStampIFC** tsObj); bool isEncrypted(bool& is_encrypted); bool burnEncryptedImage(FwOperations* imageOps, ExtBurnParams& burnParams); virtual bool IsFsCtrlOperations() { return true; } virtual mfile* getMfileObj() { return _fwCompsAccess->getMfileObj(); } virtual bool IsSecureBootSupported(); virtual bool IsCableQuerySupported(); virtual bool IsLifeCycleSupported(); virtual bool IsEncryptionSupported(); virtual bool IsSecurityVersionViolated(u_int32_t image_security_version); bool GetHashesTableData(vector& data); virtual bool QueryComponentData(FwComponent::comps_ids_t comp, u_int32_t deviceIndex, vector& data); private: virtual u_int32_t GetHwDevId() { return _hwDevId; } bool FsIntQuery(); bool GetImageInfo(u_int8_t* buff); bool ReadBootImage(void* image, u_int32_t* image_size, ProgressCallBackAdvSt* stProgressFunc = (ProgressCallBackAdvSt*)NULL); bool unsupportedOperation(); int FwCompsErrToFwOpsErr(fw_comps_error_t err); virtual bool VerifyAllowedParams(ExtBurnParams& burnParams, bool isSecure); bool BadParamErrMsg(const char* unSupportedOperation, bool isSecure); bool _Burn(std::vector imageOps4MData, ProgressCallBackAdvSt& progressCallBack, FwComponent::comps_ids_t ComponentId = FwComponent::COMPID_BOOT_IMG); bool _createImageOps(FwOperations** imgOps); void ExtractSwitchFWVersion(const fwInfoT& fwQuery); bool GetHWPointers(image_layout_hw_pointers_carmel& hw_pointers); bool CheckITOCSignature(u_int8_t* signature); bool GetHashesTableAddr(u_int32_t& addr); bool GetHashesTableSize(u_int32_t hashes_table_addr, u_int32_t& size); fs3_info_t _fsCtrlImgInfo; FwCompsMgr* _fwCompsAccess; bool _isSecured; u_int32_t _hwDevId; }; mstflint-4.26.0/mlxfwops/lib/connectx6_signature_manager.cpp0000644000175000017500000000471114522641732024521 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include "signature_manager.h" #include "tools_utils.h" #include "fs4_ops.h" #include "fs3_ops.h" using namespace std; bool ConnectX6FwOperationsSignatureManager::AddSignature(mfile* mf, Fs3Operations* imageOps, Flash* f, u_int32_t imageOffset) { (void)mf; #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) int signature_size = 3 * HMAC_SIGNATURE_LENGTH; uint8_t signature_data[3 * HMAC_SIGNATURE_LENGTH] = {0}; // FOR BOOT, CRITICAL, NON-CRITICAL imageOps->GetImageCache().get(signature_data, imageOffset, signature_size); if (!f->write(imageOffset, signature_data, signature_size)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Failed to burn HMAC digest: %s", f->err()); } #else (void)imageOps; (void)f; (void)imageOffset; #endif return true; }; mstflint-4.26.0/mlxfwops/lib/security_version_gw.cpp0000644000175000017500000001344514522641732023154 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "security_version_gw.h" bool SecurityVersionGW::isAccessibleInLiveFish() { setGWAddress(ROLLBACK_PROTECTION); // only to set _ctrl_address (can pick ROLLBACK_PROTECTION or MINIMAL_VERSION) return _ctrl_address == GW_NOT_SUPPORTED ? false : true; } bool SecurityVersionGW::getSecurityVersion(u_int32_t* result) { u_int32_t rollbackProtection; u_int32_t minimalSecurityVersion; try { getRollbackProtection(&rollbackProtection); getMinimalSecurityVersion(&minimalSecurityVersion); } catch (const char* msg) { // Ignore the message and return false instead return false; } *result = rollbackProtection + minimalSecurityVersion; return true; } // --------------- // Private methods // --------------- void SecurityVersionGW::setGWAddress(gw_type_t gw_type) { switch (_chip_type) { case CT_CONNECTX7: _ctrl_address = (gw_type == ROLLBACK_PROTECTION ? 0xf4540 : 0xf4520); break; case CT_BLUEFIELD3: _ctrl_address = (gw_type == ROLLBACK_PROTECTION ? 0xf4340 : 0xf4320); break; default: _ctrl_address = GW_NOT_SUPPORTED; } _result1_address = _ctrl_address + 8; _result2_address = _result1_address + 4; } void SecurityVersionGW::getRollbackProtection(u_int32_t* result) { u_int32_t result1, result2; setGWAddress(ROLLBACK_PROTECTION); // Read from GW try { lock(); executeReadCommand(); waitForResult(); readResult1(&result1); readResult2(&result2); unlock(); } catch (const char* msg) { unlock(); throw msg; } *result = countSetBits(result1) + countSetBits(result2); } void SecurityVersionGW::getMinimalSecurityVersion(u_int32_t* result) { u_int32_t result2; setGWAddress(MINIMAL_VERSION); // Read from GW try { lock(); executeReadCommand(); waitForResult(); readResult2(&result2); unlock(); } catch (const char* msg) { unlock(); throw msg; } // Extract minimal_security_version u_int32_t const MINIMAL_SECURITY_VERSION_MASK = 0x00000ff0; u_int32_t const MINIMAL_SECURITY_VERSION_OFFSET = 4; *result = (result2 & MINIMAL_SECURITY_VERSION_MASK) >> MINIMAL_SECURITY_VERSION_OFFSET; } void SecurityVersionGW::lock() { int iter_num = 0, MAX_ITER_NUM = 100; int const SLEEP_TIME = 10; // [msec] bool lock; do { int rc = 0; u_int32_t ctrl_reg = 0; if (iter_num != 0) msleep(SLEEP_TIME); rc = mread4(_mf, _ctrl_address, &ctrl_reg); if (rc != 4) throw "failed to lock (read error)"; lock = (ctrl_reg & CTRL_LOCK) != 0; iter_num++; if (iter_num > MAX_ITER_NUM) throw "failed to lock (timeout error)"; } while (lock); } void SecurityVersionGW::executeReadCommand() { int rc = mwrite4(_mf, _ctrl_address, CTRL_READ | CTRL_BUSY); if (rc != 4) throw "failed to executeReadCommand (write error)"; } void SecurityVersionGW::waitForResult() { int iter_num = 0, MAX_ITER_NUM = 100; int const SLEEP_TIME = 10; // [msec] bool busy; do { int rc = 0; u_int32_t ctrl_reg = 0; if (iter_num != 0) msleep(SLEEP_TIME); rc = mread4(_mf, _ctrl_address, &ctrl_reg); if (rc != 4) throw "failed to waitForResult (read error)"; busy = (ctrl_reg & CTRL_BUSY) != 0; iter_num++; if (iter_num > MAX_ITER_NUM) throw "failed to waitForResult (timeout error)"; } while (busy); } void SecurityVersionGW::readResult1(u_int32_t* result) { int rc = mread4(_mf, _result1_address, result); if (rc != 4) throw "failed to readResult1 (read error)"; } void SecurityVersionGW::readResult2(u_int32_t* result) { int rc = mread4(_mf, _result2_address, result); if (rc != 4) throw "failed to readResult2 (read error)"; } void SecurityVersionGW::unlock() { int rc = mwrite4(_mf, _ctrl_address, 0); if (rc != 4) throw "failed to unlock (write error)"; } u_int32_t SecurityVersionGW::countSetBits(u_int32_t num) { u_int32_t count = 0; while (num) { count += num & 1; num >>= 1; } return count; }mstflint-4.26.0/mlxfwops/lib/signature_manager.h0000644000175000017500000001337414522641732022204 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #pragma once #include #include "flint_base.h" #include "mtcr.h" class Fs3Operations; class Flash; class ISignatureManager : public FlintErrMsg { public: virtual bool AddSignature(mfile* mf, Fs3Operations* imageOps, Flash* f, u_int32_t imageOffset) = 0; virtual bool IsSecureBootSupported() = 0; virtual bool IsLifeCycleSupported() = 0; virtual bool IsCableQuerySupported() = 0; virtual bool IsEncryptionSupported() = 0; virtual ~ISignatureManager() {} }; class AbstractSignatureManager : public ISignatureManager { public: AbstractSignatureManager() {} virtual ~AbstractSignatureManager() {} virtual bool AddSignature(mfile*, Fs3Operations*, Flash*, u_int32_t) { return true; } virtual bool IsSecureBootSupported() { return false; } virtual bool IsCableQuerySupported() { return false; } virtual bool IsLifeCycleSupported() { return false; } virtual bool IsEncryptionSupported() { return false; } }; class FwOperationsSignatureManager : public AbstractSignatureManager { public: FwOperationsSignatureManager() : AbstractSignatureManager() {} virtual ~FwOperationsSignatureManager() {} }; class BluefieldFwOperationsSignatureManager : public AbstractSignatureManager { public: BluefieldFwOperationsSignatureManager() : AbstractSignatureManager() {} virtual ~BluefieldFwOperationsSignatureManager() {} virtual bool AddSignature(mfile* mf, Fs3Operations* imageOps, Flash* f, u_int32_t imageOffset); }; class ConnectX6FwOperationsSignatureManager : public AbstractSignatureManager { public: ConnectX6FwOperationsSignatureManager() : AbstractSignatureManager() {} virtual ~ConnectX6FwOperationsSignatureManager() {} virtual bool AddSignature(mfile* mf, Fs3Operations* imageOps, Flash* f, u_int32_t imageOffset); virtual bool IsLifeCycleSupported() { return true; } virtual bool IsCableQuerySupported() { return true; } }; class RavenSwitchSignatureManager : public AbstractSignatureManager { public: RavenSwitchSignatureManager() : AbstractSignatureManager() {} virtual ~RavenSwitchSignatureManager() {} virtual bool IsCableQuerySupported() { return true; } }; class SecuredSwitchSignatureManager : public AbstractSignatureManager { public: SecuredSwitchSignatureManager() : AbstractSignatureManager() {} virtual ~SecuredSwitchSignatureManager() {} virtual bool IsCableQuerySupported() { return true; } virtual bool IsLifeCycleSupported() { return true; } virtual bool IsSecureBootSupported() { return true; } virtual bool IsEncryptionSupported() { return true; } }; class ConnectX6DXFwOperationsSignatureManager : public AbstractSignatureManager { public: ConnectX6DXFwOperationsSignatureManager() : AbstractSignatureManager() {} virtual ~ConnectX6DXFwOperationsSignatureManager() {} virtual bool IsLifeCycleSupported() { return true; } virtual bool IsSecureBootSupported() { return true; } virtual bool IsCableQuerySupported() { return true; } }; class ConnectX6LXFwOperationsSignatureManager : public ConnectX6DXFwOperationsSignatureManager { public: ConnectX6LXFwOperationsSignatureManager() : ConnectX6DXFwOperationsSignatureManager() {} virtual ~ConnectX6LXFwOperationsSignatureManager() {} }; class ConnectX7FwOperationsSignatureManager : public ConnectX6DXFwOperationsSignatureManager { public: ConnectX7FwOperationsSignatureManager() : ConnectX6DXFwOperationsSignatureManager() {} virtual ~ConnectX7FwOperationsSignatureManager() {} virtual bool IsEncryptionSupported() { return true; } }; class Bluefield2FwOperationsSignatureManager : public ConnectX6DXFwOperationsSignatureManager { public: Bluefield2FwOperationsSignatureManager() : ConnectX6DXFwOperationsSignatureManager() {} virtual ~Bluefield2FwOperationsSignatureManager() {} }; class Bluefield3FwOperationsSignatureManager : public ConnectX7FwOperationsSignatureManager { public: Bluefield3FwOperationsSignatureManager() : ConnectX7FwOperationsSignatureManager() {} virtual ~Bluefield3FwOperationsSignatureManager() {} }; class GearBoxSignatureManager : public AbstractSignatureManager { public: GearBoxSignatureManager() : AbstractSignatureManager() {} virtual ~GearBoxSignatureManager() {} virtual bool AddSignature(mfile*, Fs3Operations*, Flash*, u_int32_t) { return false; } }; mstflint-4.26.0/mlxfwops/lib/fs4_ops.h0000644000175000017500000005142414522641732020064 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS4_OPS_ #define FS4_OPS_ #include #include #include #include "fw_ops.h" #include "fs3_ops.h" #include "aux_tlv_ops.h" #define FS4_MAX_BIN_VER_MAJOR 1 #define FS4_MIN_BIN_VER_MAJOR 1 #define FS4_MIN_BIN_VER_MINOR 0 #define HMAC_SIGNATURE_LENGTH 64 #define ENCRYPTED_BURN_IMAGE_SIZE_LOCATION_IN_BYTES 0x1000000 // 16MB #define DELTA_IV_HW_POINTER_ADDR 0x88 enum SecureBootSignVersion { VERSION_1 = 1, VERSION_2 }; class Fs4Operations : public Fs3Operations { public: Fs4Operations(FBase* ioAccess) : Fs3Operations(ioAccess), _is_hw_ptrs_initialized(false), _boot2_ptr(0), _itoc_ptr(0), _tools_ptr(0), _digest_mdk_ptr(0), _digest_recovery_key_ptr(0), _public_key_ptr(0), _signatureDataSet(false), _encrypted_image_io_access(NULL) { _minBinMinorVer = FS4_MIN_BIN_VER_MINOR; _minBinMajorVer = FS4_MIN_BIN_VER_MAJOR; _maxBinMajorVer = FS4_MAX_BIN_VER_MAJOR; }; virtual ~Fs4Operations(){}; virtual u_int8_t FwType(); virtual bool FwInit(); virtual bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false); bool FwShiftDevData(PrintCallBack progressFunc = (PrintCallBack)NULL); bool FwCalcMD5(u_int8_t md5sum[16]); bool FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc = (ProgressCallBack)NULL); bool FwBurnRom(FImage* romImg, bool ignoreProdIdCheck = false, bool ignoreDevidCheck = false, ProgressCallBack progressFunc = (ProgressCallBack)NULL); bool FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer); bool FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false); bool FwResetTimeStamp(); virtual bool FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage = false); bool FwSignWithHmac(const char* key_file); bool SignForSecureBoot(const char* public_key_file, const char* uuid, const MlxSign::Signer& signer); virtual bool ParsePublicKeyFromFile(const char* public_key_file, vector& publicKeyData, u_int32_t& keyPairExp, image_layout_component_authentication_configuration& keyAuthConf); virtual bool FwSetPublicKeys(char* fname, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool StoreImagePublicKey(const char* public_key_file, const char* uuid); virtual void PreparePublicKey(const vector& publicKeyData, const vector& uuidData, const u_int32_t keyPairExp, const image_layout_component_authentication_configuration& keyAuthConf, image_layout_file_public_keys_3& secureBootPublicKey); virtual bool FwExtract4MBImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose = false, bool ignoreImageStart = false); virtual bool GetImageDataForSign(MlxSign::SHAType shaType, vector& img); virtual bool IsSecureBootSupported(); virtual bool IsCableQuerySupported(); virtual bool IsLifeCycleSupported(); bool CalcHMAC(const vector& key, const vector& data, vector& digest); bool CheckIfAlignmentIsNeeded(FwOperations* imgops); virtual bool PrepItocSectionsForCompare(vector& critical, vector& non_critical); bool getCriticalNonCriticalSections(vector& critical, vector& non_critical); virtual bool RestoreDevToc(vector& img, char* psid, dm_dev_id_t devid_t, const image_layout_uid_entry& base_guid, const image_layout_uid_entry& base_mac); virtual bool InitHwPtrs(bool isVerify = false); bool isHashesTableHwPtrValid(); bool isEncrypted(bool& is_encrypted); bool openEncryptedImageAccess(const char* encrypted_image_path); bool FwExtractEncryptedImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose = false, bool ignoreImageStart = false); bool burnEncryptedImage(FwOperations* imageOps, ExtBurnParams& burnParams); bool readFS4Log2ChunkSizeFromImage(u_int32_t& log2_chunk_size); bool DoAfterBurnJobs(const u_int32_t magic_patter[], ExtBurnParams& burnParams, Flash* flash_access, u_int32_t new_image_start, u_int32_t log2_chunk_size); virtual void FwCleanUp(); bool IsLifeCycleAccessible(chip_type_t chip_type); bool IsSecurityVersionAccessible(chip_type_t chip_type); bool IsSecurityVersionViolated(u_int32_t image_security_version); virtual bool GetImageSize(u_int32_t* image_size); bool GetHashesTableData(vector& data); bool GetRSAPublicKey(vector& key); protected: struct fs4_toc_info { u_int32_t entry_addr; struct image_layout_itoc_entry toc_entry; u_int8_t data[IMAGE_LAYOUT_ITOC_ENTRY_SIZE]; std::vector section_data; }; class TocArray { public: static void initEmptyTocArrEntry(struct fs4_toc_info* tocArrEntry); static void copyTocArrEntry(struct fs4_toc_info* dest, struct fs4_toc_info* src); TocArray(); u_int32_t getSectionsTotalSize(); int numOfTocs; struct fs4_toc_info tocArr[MAX_TOCS_NUM]; u_int8_t tocHeader[IMAGE_LAYOUT_ITOC_HEADER_SIZE]; u_int32_t tocArrayAddr; }; struct Fs4ImgInfo { TocArray itocArr; TocArray dtocArr; u_int8_t firstItocArrayIsEmpty; u_int32_t smallestDTocAddr; }; bool _is_hw_ptrs_initialized; u_int32_t _boot2_ptr; u_int32_t _itoc_ptr; u_int32_t _tools_ptr; u_int32_t _image_info_section_ptr; u_int32_t _hashes_table_ptr; Fs4ImgInfo _fs4ImgInfo; bool GetImageSizeFromImageInfo(u_int32_t* imageSize); bool verifyToolsArea(VerifyCallBack verifyCallBackFunc); bool verifyTocHeader(u_int32_t tocAddr, bool isDtoc, VerifyCallBack verifyCallBackFunc); bool verifyTocEntries(u_int32_t tocAddr, bool show_itoc, bool isDtoc, struct QueryOptions queryOptions, VerifyCallBack verifyCallBackFunc, bool verbose = false); bool encryptedFwQuery(fw_info_t* fwInfo, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false); bool getImgStart(); bool AlignDeviceSections(FwOperations* imageOps); virtual bool storeSecureBootSignaturesInSection(vector boot_signature, vector critical_sections_signature = vector(), vector non_critical_sections_signature = vector()); virtual bool IsSectionExists(fs3_section_t sectType); virtual bool VerifyImageAfterModifications(); bool ParseDevData(bool quickQuery = true, bool verbose = false, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL, bool showItoc = false); bool GetHashesTableSize(u_int32_t& size); bool GetImageInfo(u_int8_t* buff); private: #define PRE_CRC_OUTPUT " " #define FS4_DEFAULT_SECTOR_SIZE 0x1000 #define DTOC_ASCII 0x44544f43 enum CRCTYPE { INITOCENTRY = 0, NOCRC = 1, INSECTION = 2 }; class HTOC { public: struct image_layout_htoc_header header; struct image_layout_htoc_entry entries[MAX_HTOC_ENTRIES_NUM]; u_int32_t htoc_start_addr; HTOC(vector img, u_int32_t hashes_table_start_addr); bool GetEntryBySectionType(fs3_section_t section_type, struct image_layout_htoc_entry& htoc_entry); bool AddNewEntry(FBase* ioAccess, fs3_section_t section_type, struct image_layout_htoc_entry& htoc_entry); }; #ifndef UEFI_BUILD bool FwSignSection(const vector& section, const string privPemFileStr, vector& encSha); #endif bool PrepItocSectionsForHmac(vector& critical, vector& non_critical); bool CheckSignatures(u_int32_t a[], u_int32_t b[], int n); bool encryptedFwReadImageInfoSection(); bool CheckDevRSAPublicKeyUUID(); virtual bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false); virtual bool FsVerifyAux(VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc = false, bool verbose = false); virtual bool Init(); bool CheckTocSignature(struct image_layout_itoc_header* itoc_header, u_int32_t first_signature); bool CheckDevInfoSignature(u_int32_t* buff); bool FsBurnAux(FwOperations* imageOps, ExtBurnParams& burnParams); bool BurnFs4Image(Fs4Operations& imageOps, ExtBurnParams& burnParams); bool Fs4GetItocInfo(struct fs4_toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, struct fs4_toc_info*& curr_toc); bool Fs4GetItocInfo(struct fs4_toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, struct fs4_toc_info*& curr_toc, int& toc_index); bool Fs4GetItocInfo(struct fs4_toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, vector& curr_toc); bool UpdateSection(void* new_info, fs3_section_t sect_type = FS3_DEV_INFO, bool is_sect_failsafe = true, CommandType cmd_type = CMD_UNKNOWN, PrintCallBack callBackFunc = (PrintCallBack)NULL); bool UpdateSection(fs3_section_t sectionType, std::vector& newSectionData, const char* msg, PrintCallBack callBackFunc = (PrintCallBack)NULL); bool WriteSection(struct fs4_toc_info* sectionToc, std::vector& newSectionData, const char* msg, PrintCallBack callBackFunc); bool Fs4UpdateMfgUidsSection(struct fs4_toc_info* curr_toc, std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData); bool Fs4ChangeUidsFromBase(fs3_uid_t base_uid, struct image_layout_guids& guids); bool Fs4UpdateUidsSection(std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData); bool Fs4UpdateVsdSection(std::vector section_data, char* user_vsd, std::vector& newSectionData); bool Fs4UpdateVpdSection(struct fs4_toc_info* curr_toc, char* vpd, std::vector& newSectionData); bool UpdateCertChainSection(struct fs4_toc_info* curr_toc, char* certChainFile, std::vector& newSectionData); bool UpdateDigitalCertRWSection(char* certChainFile, u_int32_t certChainIndex, std::vector& newSectionData); bool FwSetCertChain(char* certFileStr, u_int32_t certIndex, PrintCallBack callBackFunc); bool Fs4ReburnSection(u_int32_t newSectionAddr, u_int32_t newSectionSize, std::vector newSectionData, const char* msg, PrintCallBack callBackFunc); bool Fs4ReburnTocSection(bool isDtoc, PrintCallBack callBackFunc); bool reburnDTocSection(PrintCallBack callBackFunc); bool reburnITocSection(PrintCallBack callBackFunc, bool isFailSafe); bool Fs4UpdateItocInfo(struct fs4_toc_info* curr_toc, u_int32_t NewSectSize, std::vector& newSectionData); bool FwReadData(void* image, u_int32_t* imageSize, bool verbose = false); bool FwReadEncryptedData(void* image, u_int32_t imageSize, bool verbose); bool CreateDtoc(vector& img, u_int8_t* SectionData, u_int32_t section_size, u_int32_t flash_data_addr, fs3_section_t section, u_int32_t tocEntryAddr, CRCTYPE CRC); bool Fs4RemoveSectionAux(fs3_section_t sectionType); bool Fs4RemoveSection(fs3_section_t sectionType, ProgressCallBack progressFunc); bool Fs4AddSectionAux(fs3_section_t sectionType, enum CRCTYPE crcType, u_int8_t zippedImage, u_int32_t* newSectData, u_int32_t newSectSize); bool Fs4AddSection(fs3_section_t sectionType, enum CRCTYPE crcType, u_int8_t zippedImage, u_int32_t* newSectData, u_int32_t newSectSize, ProgressCallBack progressFunc); void updateTocEndEntryInImgCache(u_int32_t lastItocSectAddress); void updateTocEntryCRC(struct fs4_toc_info* tocEntry); void updateTocEntryData(struct fs4_toc_info* tocEntry); void updateTocEntrySectionData(struct fs4_toc_info* tocEntry, u_int8_t* data, u_int32_t dataSize); void updateTocHeaderCRC(struct image_layout_itoc_header* tocHeader); inline bool checkIfSectionsOverlap(u_int32_t s1, u_int32_t e1, u_int32_t s2, u_int32_t e2); int getBoot2Size(u_int32_t address); int getHashesTableSize(u_int32_t address) { return getBoot2Size(address); } // Hashes table size calculated the same as boot2 bool getBootRecordSize(u_int32_t& boot_record_size); bool getBootDataForSign(vector& data); bool getBootDataForSignVersion1(vector& data); bool getBootDataForSignVersion2(vector& data); bool CheckFs4ImgSize(Fs4Operations& imageOps, bool useImageDevData = false); u_int32_t getAbsAddr(fs4_toc_info* toc); u_int32_t getAbsAddr(fs4_toc_info* toc, u_int32_t imgStart); bool getExtendedHWPtrs(VerifyCallBack verifyCallBackFunc, FBase* ioAccess, bool IsBurningProcess = false); bool getExtendedHWAravaPtrs(VerifyCallBack verifyCallBackFunc, FBase* ioAccess, bool IsBurningProcess = false, bool isVerify = false); bool CheckTocArrConsistency(TocArray& tocArr, u_int32_t imageStartAddr); bool CheckITocArray(); bool CheckDTocArray(); u_int32_t getImageSize(); void maskDevToc(vector& img); void MaskItocSectionAndEntry(u_int32_t itocType, vector& img); bool Fs4UpdateSignatureSection(vector sha256Buff, vector& newSectionData); bool isDTocSection(fs3_section_t sect_type, bool& isDtoc); bool restoreWriteProtection(mflash* mfl, u_int8_t banksNum, write_protect_info_t protect_info[]); bool GetSectionSizeAndOffset(fs3_section_t sectType, u_int32_t& size, u_int32_t& offset); SecureBootSignVersion getSecureBootSignVersion(); bool CalcHashOnSection(u_int32_t addr, u_int32_t size, vector& hash); bool UpdateHashInHashesTable(fs3_section_t section_type, vector hash); bool UpdateSectionHashInHashesTable(u_int32_t addr, u_int32_t size, fs3_section_t type); bool IsSectionShouldBeHashed(fs3_section_t section_type); bool QuerySecurityFeatures(); bool IsEncryptedDevice(bool& is_encrypted); bool IsEncryptedImage(bool& is_encrypted); bool updateHwPointer(u_int32_t addr, u_int32_t val); bool SetImageIVHwPointer(); void RemoveCRCsFromMainSection(vector& img); bool MaskBootRecordCRC(vector& img); virtual bool GetPublicKeyFromFile(const char* public_key_file, const char* uuid, image_layout_file_public_keys_3* public_key); virtual bool GetFreeSlotInPublicKeys2(const image_layout_public_keys_2& public_keys, u_int32_t& idx); virtual bool GetFreeSlotInPublicKeys3(const image_layout_public_keys_3& public_keys, u_int32_t& idx); virtual bool IsPublicKeyAlreadyInPublicKeys2(const image_layout_public_keys_2& public_keys, const image_layout_file_public_keys_2& public_key); virtual bool IsPublicKeyAlreadyInPublicKeys3(const image_layout_public_keys_3& public_keys, const image_layout_file_public_keys_3& public_key); virtual bool FindImagePublicKeyInPublicKeys2(const image_layout_public_keys_2& public_keys, u_int32_t& idx); virtual bool FindImagePublicKeyInPublicKeys3(const image_layout_public_keys_3& public_keys, u_int32_t& idx); virtual bool StoreImagePublicKeyInPublicKeys2(const image_layout_file_public_keys_3& public_key); virtual bool StoreImagePublicKeyInPublicKeys3(const image_layout_file_public_keys_3& public_key); virtual bool FindPublicKeyInPublicKeys2(const vector& keypair_uuid, bool& found, image_layout_file_public_keys_3& public_key); virtual void PublicKey2ToPublicKey3(const image_layout_file_public_keys_2& public_key_2, image_layout_file_public_keys_3& public_key_3); virtual bool ReadPublicKeys2SectionFromFile(const char* fname, image_layout_public_keys_2& public_keys_2_section); // Members u_int32_t _boot_record_ptr; u_int32_t _authentication_start_ptr; u_int32_t _authentication_end_ptr; u_int32_t _digest_mdk_ptr; u_int32_t _digest_recovery_key_ptr; u_int32_t _public_key_ptr; u_int32_t _security_version; u_int32_t _gcm_image_iv; bool _signatureDataSet; FImage* _encrypted_image_io_access; u_int32_t GetPublicKeySecureBootPtr() { return _public_key_ptr; } // This class is for sorting the itoc array by ascending absolute flash_addr used in FwShiftDevData class TocComp { public: TocComp(u_int32_t startAdd) : _startAdd(startAdd){}; ~TocComp(){}; bool operator()(fs4_toc_info* elem1, fs4_toc_info* elem2); private: u_int32_t _startAdd; }; }; bool Fs4Operations::checkIfSectionsOverlap(u_int32_t s1, u_int32_t e1, u_int32_t s2, u_int32_t e2) { if ((s1 >= s2 && s1 <= e2) || (s2 >= s1 && s2 <= e1)) { return true; } return false; } #endif // FS4_OPS_ mstflint-4.26.0/mlxfwops/lib/fs3_ops.h0000644000175000017500000005551314522641732020066 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS3_OPS_ #define FS3_OPS_ #include "reg_access/reg_access.h" #include #include #include // #include "flint_base.h" #include "fw_ops.h" #include "aux_tlv_ops.h" // FW Binary version // max supported major version // first time breaking compatibility remove the check if the version is not initialized #define FS3_MAX_BIN_VER_MAJOR 1 // min supported version #define FS3_MIN_BIN_VER_MAJOR 1 #define FS3_MIN_BIN_VER_MINOR 1 #define FLASH_RESTORE(origFlashObj) \ if (origFlashObj) \ { \ _ioAccess->close(); \ delete _ioAccess; \ _ioAccess = origFlashObj; \ _fwParams.ignoreCacheRep = 0; \ } #define SUPPORTS_ISFU(chip_type) \ (chip_type == CT_CONNECT_IB || chip_type == CT_CONNECTX4 || chip_type == CT_CONNECTX4_LX || \ chip_type == CT_CONNECTX5 || chip_type == CT_CONNECTX6 || chip_type == CT_CONNECTX6DX || \ chip_type == CT_CONNECTX6LX || chip_type == CT_CONNECTX7 || chip_type == CT_CONNECTX8 || \ chip_type == CT_BLUEFIELD || chip_type == CT_BLUEFIELD2 || chip_type == CT_BLUEFIELD3 || \ chip_type == CT_BLUEFIELD4) #define FAIL_NO_OCR(str) \ do \ { \ if (_ioAccess->is_flash() && _fwParams.ignoreCacheRep == 0) \ { \ return errmsg(MLXFW_OCR_ERR, "-ocr flag must be specified for %s operation.", str); \ } \ } while (0) #define RESIGN_MSG "-W- The image requires to be signed by a valid key, run sign command before applying.\n" #define INSERT_SHA_IF_NEEDS(callBackF) \ do \ { \ if (!_ioAccess->is_flash()) \ { \ if (!(_fs3ImgInfo.ext_info.security_mode & SMM_SIGNED_FW)) \ { \ PRINT_PROGRESS(callBackF, (char*)"-I- Updating image digest.\n"); \ if (!FwInsertSHA256((PrintCallBack)NULL)) \ { \ return false; \ } \ } \ else \ { \ PRINT_PROGRESS(callBackF, (char*)RESIGN_MSG); \ } \ } \ } while (0) #define DEFAULT_GUID_NUM 0xffff #define DEFAULT_STEP 0xff class Fs3Operations : public FwOperations { public: Fs3Operations(FBase* ioAccess) : FwOperations(ioAccess), _imageCache(0xFF), _isfuSupported(false), _badDevDataSections(false), _maxImgLog2Size(0), _signatureExists(0), _publicKeysExists(0) { _minBinMinorVer = FS3_MIN_BIN_VER_MINOR; _minBinMajorVer = FS3_MIN_BIN_VER_MAJOR; _maxBinMajorVer = FS3_MAX_BIN_VER_MAJOR; }; virtual ~Fs3Operations(){}; // virtual void print_type() {printf("-D- FS3 type!\n");}; virtual bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false); virtual bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false); virtual u_int8_t FwType(); virtual bool FwInit(); virtual bool FwReadData(void* image, u_int32_t* image_size, bool verbose = false); static void deal_with_signal(); virtual bool FwReadRom(std::vector& romSect); virtual bool FwBurnRom(FImage* romImg, bool ignoreProdIdCheck = false, bool ignoreDevidCheck = false, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams); virtual bool FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc); virtual bool FwSetGuids(sg_params_t& sgParam, PrintCallBack callBack = (PrintCallBack)NULL, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage = false); virtual bool FwSetVSD(char* vsdStr, ProgressCallBack progressFunc = (ProgressCallBack)NULL, PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwResetNvData(); virtual bool FwShiftDevData(PrintCallBack progressFunc = (PrintCallBack)NULL); virtual const char* FwGetResetRecommandationStr(); virtual const char* FwGetReSignMsgStr(); virtual bool InsertSecureFWSignature(vector signature, const char* uuid, MlxSign::SHAType shaType, PrintCallBack printFunc); bool FwInsertSHA256(PrintCallBack printFunc = (PrintCallBack)NULL); bool FwSignWithTwoRSAKeys(const char* privPemFile1, const char* uuid1, const char* privPemFile2, const char* uuid2, PrintCallBack printFunc = (PrintCallBack)NULL); bool SignForFwUpdate(const char* uuid, const MlxSign::Signer& signer, MlxSign::SHAType shaType, PrintCallBack printFunc); bool FwInsertEncSHA(MlxSign::SHAType shaType, const char* privPemFile, const char* uuid, PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool FwExtract4MBImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose = false, bool ignoreImageStart = false); virtual bool GetImageDataForSign(MlxSign::SHAType shaType, vector& img); virtual bool FwSetPublicKeys(char* fname, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetForbiddenVersions(char* fname, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwCalcMD5(u_int8_t md5sum[16]); virtual bool FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer); virtual bool FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false); virtual bool FwResetTimeStamp(); Tlv_Status_t GetTsObj(TimeStampIFC** tsObj); bool FwCheckIfWeCanBurnWithFwControl(FwOperations* imageOps); bool FwCheckIf8MBShiftingNeeded(FwOperations* imageOps, const ExtBurnParams& burnParams); bool CalcHMAC(const vector& key, vector& digest); virtual bool GetSectionSizeAndOffset(fs3_section_t sectType, u_int32_t& size, u_int32_t& offset); MlargeBuffer GetImageCache() { return _imageCache; } virtual bool UpdateSection(void* new_info, fs3_section_t sect_type = FS3_DEV_INFO, bool is_sect_failsafe = true, CommandType cmd_type = CMD_UNKNOWN, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool PrepItocSectionsForCompare(vector& critical, vector& non_critical); virtual bool RestoreDevToc(vector& img, char* psid, dm_dev_id_t devid_t, const image_layout_uid_entry& base_guid, const image_layout_uid_entry& base_mac); protected: #define ITOC_ASCII 0x49544f43 #define TOC_RAND1 0x04081516 #define TOC_RAND2 0x2342cafa #define TOC_RAND3 0xbacafe00 #define TOC_HEADER_SIZE 0x20 #define TOC_ENTRY_SIZE 0x20 #define FS3_FW_SIGNATURE_SIZE 0x10 #define MAX_TOCS_NUM 64 #define MFG_INFO "MFG_INFO" #define DEV_INFO "DEV_INFO" #define UNKNOWN_SECTION "UNKNOWN" bool IsCriticalSection(u_int8_t sect_type); u_int32_t getNewImageStartAddress(Fs3Operations& imageOps, bool isBurnFailSafe); virtual bool FsBurnAux(FwOperations* imageOps, ExtBurnParams& burnParams); bool DumpFs3CRCCheck(u_int8_t sect_type, u_int32_t sect_addr, u_int32_t sect_size, u_int32_t crc_act, u_int32_t crc_exp, bool ignore_crc = false, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); bool Fs3UpdateImgCache(u_int8_t* buff, u_int32_t addr, u_int32_t size); virtual bool UpdateImgCache(u_int8_t* buff, u_int32_t addr, u_int32_t size); virtual bool FsVerifyAux(VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc = false, bool verbose = false); virtual bool FsIntQueryAux(bool readRom = true, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false); const char* GetSectionNameByType(u_int8_t section_type); bool GetImageInfoFromSection(u_int8_t* buff, u_int8_t sect_type, u_int32_t sect_size, u_int8_t check_support_only = 0); bool IsGetInfoSupported(u_int8_t sect_type); bool IsFs3SectionReadable(u_int8_t type, QueryOptions queryOptions); bool GetMfgInfo(u_int8_t* buff); bool GetDevInfo(u_int8_t* buff); virtual bool GetImageInfo(u_int8_t* buff); bool GetRomInfo(u_int8_t* buff, u_int32_t size); bool GetImgSigInfo(u_int32_t keypair_uuid[4]); bool GetImgSigInfo256(u_int8_t* buff); bool GetImgSigInfo512(u_int8_t* buff); bool invalidateOldFWImages(const u_int32_t magic_pattern[], Flash* f, u_int32_t new_image_start); bool bootAddrUpdate(Flash* flash_access, u_int32_t new_image_start, ExtBurnParams& burnParams); bool DoAfterBurnJobs(const u_int32_t magic_patter[], Fs3Operations& imageOps, ExtBurnParams& burnParams, Flash* flash_access, u_int32_t new_image_start, u_int8_t is_curr_image_in_odd_chunks); bool CreateDtoc(vector& img, u_int8_t* SectionData, u_int32_t section_size, u_int32_t flash_data_addr, fs3_section_t section, u_int32_t tocEntryAddr, bool IsCRC); virtual bool getRunningFwVersion(); virtual bool Fs3IsfuActivateImage(u_int32_t newImageStart); bool Fs3ReburnItocSection(u_int32_t newSectionAddr, u_int32_t newSectionSize, std::vector newSectionData, const char* msg, PrintCallBack callBackFunc = (PrintCallBack)NULL); bool Fs3ChangeUidsFromBase(fs3_uid_t base_uid, struct cibfw_guids& guids); bool Fs3ChangeUidsFromBase(fs3_uid_t base_uid, struct cx4fw_guids& guids); bool ChangeUidsFromBase(fs3_uid_t base_uid, image_layout_guids& guids); bool DeviceTimestampEnabled(); bool RomCommonCheck(bool ignoreProdIdCheck, bool checkIfRomEmpty); bool extractUUIDFromString(const char* uuid, std::vector& uuidData); bool Fs3UpdatePublicKeysSection(unsigned int size, const char* publicKeys, std::vector& newSectionData, bool silent = false); bool Fs3UpdateForbiddenVersionsSection(unsigned int size, char* publicKeys, std::vector& newSectionData); bool CheckAndDealWithChunkSizes(u_int32_t cntxLog2ChunkSize, u_int32_t imageCntxLog2ChunkSize); bool ReBurnCurrentImage(ProgressCallBack progressFunc); bool RemoveWriteProtection(); bool Fs3MemSetSignature(fs3_section_t sectType, u_int32_t size, PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool IsSectionExists(fs3_section_t sectType); virtual bool VerifyImageAfterModifications(); virtual bool ParseDevData(bool quickQuery = true, bool verbose = false, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); bool isOld4MBImage(FwOperations* imageOps); bool FwCalcSHA(MlxSign::SHAType shaType, vector& sha256, vector& fourMbImage); bool CheckPublicKeysFile(const char* fname, fs3_section_t& sectionType, bool silent = false); bool isWriteProtected(bool& is_write_protected); struct toc_info { u_int32_t entry_addr; struct cibfw_itoc_entry toc_entry; u_int8_t data[CIBFW_ITOC_ENTRY_SIZE]; std::vector section_data; }; struct Fs3ImgInfo { fs3_info_t ext_info; int numOfItocs; struct toc_info tocArr[MAX_TOCS_NUM]; u_int8_t itocHeader[CIBFW_ITOC_HEADER_SIZE]; u_int8_t firstItocIsEmpty; u_int32_t itocAddr; u_int32_t smallestAbsAddr; u_int32_t sizeOfImgData; bool runFromAny; }; static const SectionInfo _fs3SectionsInfoArr[]; static const u_int32_t _itocSignature[4]; Fs3ImgInfo _fs3ImgInfo; MlargeBuffer _imageCache; bool _isfuSupported; bool _badDevDataSections; // set true if during verify one of the device data section is corrupt or mfg section // missing u_int32_t _maxImgLog2Size; u_int8_t _signatureExists; u_int8_t _publicKeysExists; private: #define CRC_CHECK_OUTPUT CRC_CHECK_OLD ")" #define FS3_CRC_CHECK_OUT CRC_CHECK_OLD ":0x%x)" #define PRE_CRC_OUTPUT " " #define FS3_DEFAULT_SECTOR_SIZE 0x1000 #define FS3_LOG2_CHUNK_SIZE_DW_OFFSET 0x9 reg_access_status_t getGI(mfile* mf, struct reg_access_hca_mgir_ext* gi); bool VerifyTOC(u_int32_t dtoc_addr, bool& bad_signature, VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc = false, bool verbose = false); bool CheckTocSignature(struct cibfw_itoc_header* itoc_header, u_int32_t first_signature); bool BurnFs3Image(Fs3Operations& imageOps, ExtBurnParams& burnParams); bool UpdateDevDataITOC(Fs3Operations& imageOps, struct toc_info* image_toc_info_entry, struct toc_info* flash_toc_arr, int flash_toc_size); bool Fs3GetItocInfo(struct toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, struct toc_info*& curr_toc); bool Fs3UpdateMfgUidsSection(struct toc_info* curr_toc, std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData); bool Fs3UpdateUidsSection(struct toc_info* curr_toc, std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData); bool Fs3UpdateVsdSection(struct toc_info* curr_toc, std::vector section_data, char* user_vsd, std::vector& newSectionData); bool Fs3UpdateVpdSection(struct toc_info* curr_toc, char* vpd, std::vector& newSectionData); bool Fs3GetNewSectionAddr(struct toc_info* curr_toc, u_int32_t& NewSectionAddr, bool failsafe_section); bool Fs3UpdateItocInfo(struct toc_info* curr_toc, u_int32_t newSectionAddr, u_int32_t itocSize, std::vector newSectionData); bool Fs3UpdateItocInfo(struct toc_info* curr_toc, u_int32_t newSectionAddr); bool Fs3UpdateItocInfo(struct toc_info* newItocInfo, u_int32_t newSectionAddr, fs3_section_t sectionType, u_int32_t* newSectData, u_int32_t NewSectSize); bool Fs3UpdateItocData(struct toc_info* currToc); bool GetModifiedSectionInfo(fs3_section_t sectionType, fs3_section_t nextSectionType, u_int32_t& newSectAddr, fs3_section_t& sectToPut, u_int32_t& oldSectSize); bool UpdateItocAfterInsert(fs3_section_t sectionType, u_int32_t newSectAddr, fs3_section_t SectToPut, bool toAdd, u_int32_t* newSectData, u_int32_t NewSectSize, struct toc_info* tocArr, u_int32_t& numOfItocs); bool UpdateImageAfterInsert(struct toc_info* tocArr, u_int32_t numOfItocs, u_int8_t* newImgData, u_int32_t newSectSize); bool Fs3ReplaceSectionInDevImg(fs3_section_t sectionType, fs3_section_t nextSectionType, bool toAdd, u_int8_t* newImgData, u_int32_t newImageSize, u_int32_t* newSectData, u_int32_t NewSectSize); bool CalcItocEntryCRC(struct toc_info* curr_toc); bool ShiftItocAddrInEntry(struct toc_info* newItocInfo, struct toc_info* oldItocInfo, int shiftSize); bool CopyItocInfo(struct toc_info* newTocInfo, struct toc_info* currToc); bool Fs3ModifySection(fs3_section_t sectionType, fs3_section_t neighbourSection, bool toAdd, u_int32_t* newSectData, u_int32_t newImageSize, ProgressCallBack progressFunc); virtual bool Fs3RemoveSection(fs3_section_t sectionType, ProgressCallBack progressFunc); bool Fs3AddSection(fs3_section_t sectionType, fs3_section_t neighbourSection, u_int32_t* newSectData, u_int32_t newSectSize, ProgressCallBack progressFunc); bool CheckFs3ImgSize(Fs3Operations& imageOps, bool useImageDevData = false); bool CheckItocArray(); bool CheckItocArrConsistency(std::vector& sortedTocVec, u_int32_t imageStartAddr); u_int32_t getAbsAddr(toc_info* toc); u_int32_t getAbsAddr(toc_info* toc, u_int32_t imgStart); bool getLastFwSAddr(u_int32_t& lastAddr); bool getFirstDevDataAddr(u_int32_t& firstAddr); virtual bool reburnItocSection(PrintCallBack callBackFunc, bool burnFailsafe = true); virtual u_int32_t getImageSize(); virtual void maskDevToc(vector& img); virtual void MaskItocSectionAndEntry(u_int32_t itocType, vector& img); // this class is for sorting the itoc array by ascending absolute flash_addr used in FwShiftDevData class TocComp { public: TocComp(u_int32_t startAdd) : _startAdd(startAdd){}; ~TocComp(){}; bool operator()(toc_info* elem1, toc_info* elem2); private: u_int32_t _startAdd; }; }; #endif // FS3_OPS_ mstflint-4.26.0/mlxfwops/lib/fsctrl_ops.cpp0000644000175000017500000012031714522641732021216 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fsctrl_ops.h" #include "fw_version.h" #include "fs_comps_ops.h" #include #include #include bool FsCtrlOperations::unsupportedOperation() { if (_fsCtrlImgInfo.security_mode & SMM_SECURE_FW) { return errmsg("Unsupported operation under Secure FW"); } else { return errmsg("Unsupported operation under Controlled FW, please retry with --no_fw_ctrl "); } } u_int8_t FsCtrlOperations::FwType() { if (!_hwDevId) { if (!FsIntQuery()) { return FS_UNKNOWN_IMG; } } u_int8_t fwFormat = GetFwFormatFromHwDevID(_hwDevId); if (fwFormat == FS_FS2_GEN) { return FIT_FS2; } else if (fwFormat == FS_FS3_GEN) { return FIT_FS3; } else if (fwFormat == FS_FS4_GEN) { return FIT_FS4; } return FIT_FSCTRL; } bool FsCtrlOperations::FwInit() { FwInitCom(); _fwImgInfo.fwType = FIT_FSCTRL; memset(&(_fsCtrlImgInfo), 0, sizeof(fs3_info_t)); if (!FsIntQuery()) { return false; } return true; } static void extractFwVersion(u_int16_t* fwVerArr, u_int32_t fwVersion) { if (!fwVerArr) { return; } fwVerArr[0] = EXTRACT(fwVersion, 24, 8); fwVerArr[1] = EXTRACT(fwVersion, 16, 8); fwVerArr[2] = EXTRACT(fwVersion, 0, 16); } static void extractFwVersion(u_int16_t* fwVerArr, const reg_access_hca_rom_version_ext fwVersion) { if (!fwVerArr) { return; } fwVerArr[0] = fwVersion.major; fwVerArr[1] = fwVersion.minor; fwVerArr[2] = fwVersion.build; } static void extractFwVersion(u_int16_t* fwVerArr, const char* fwVersion) { if (!fwVerArr) { return; } char* str = new char[strlen(fwVersion) + 1]; char* token = NULL; int index = 0; memset(str, 0, strlen(fwVersion) + 1); strcpy(str, fwVersion); token = strtok(str, "."); // converting fw version tokens to numbers while (token != NULL && index < 3) { fwVerArr[index] = atoi(token); token = strtok(NULL, "."); ++index; } // 3 tokens are expected in fw version format if (token != NULL || index != 3) { printf("-W- Wrong FW version format.\n"); } delete[] str; } static void extractFwBuildTime(u_int16_t* fwRelDate, reg_access_hca_date_time_layout_ext buildTime) { if (!fwRelDate) { return; } fwRelDate[0] = buildTime.day; fwRelDate[1] = buildTime.month; fwRelDate[2] = buildTime.year; } bool FsCtrlOperations::FsIntQuery() { fwInfoT fwQuery; if (!_fwCompsAccess->queryFwInfo(&fwQuery, nextBootFwVer)) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "Failed to query the FW - Err[%d] - %s", _fwCompsAccess->getLastError(), _fwCompsAccess->getLastErrMsg()); } if (fwQuery.pending_fw_valid) { extractFwVersion(_fwImgInfo.ext_info.fw_ver, fwQuery.pending_fw_version.version); extractFwBuildTime(_fwImgInfo.ext_info.fw_rel_date, fwQuery.pending_fw_version.build_time); } else { extractFwVersion(_fwImgInfo.ext_info.fw_ver, fwQuery.running_fw_version.version); extractFwBuildTime(_fwImgInfo.ext_info.fw_rel_date, fwQuery.running_fw_version.build_time); } extractFwVersion(_fwImgInfo.ext_info.running_fw_ver, fwQuery.running_fw_version.version); if (fwQuery.running_fw_version.version_string_length) { strcpy(_fwImgInfo.ext_info.product_ver, fwQuery.product_ver); } // get chip type and device sw id const u_int32_t* swId = (u_int32_t*)NULL; if (!getInfoFromHwDevid(fwQuery.hw_dev_id, _fwImgInfo.ext_info.chip_type, &swId)) { return false; } // Copy version_string to fw version and VSD to branch ver, only for switches fw version if (!IS_HCA(_fwImgInfo.ext_info.chip_type)) { ExtractSwitchFWVersion(fwQuery); } // if nextBootFwVer, only fw version is needed and chip type, return. if (nextBootFwVer) { return true; } _fsCtrlImgInfo.fs3_uids_info.image_layout_uids.base_mac.uid = fwQuery.base_mac.uid; _fsCtrlImgInfo.fs3_uids_info.image_layout_uids.base_mac.num_allocated = fwQuery.base_mac.num_allocated & 0xff; _fsCtrlImgInfo.fs3_uids_info.image_layout_uids.base_mac.num_allocated_msb = (fwQuery.base_mac.num_allocated >> 8) & 0xff; _fsCtrlImgInfo.orig_fs3_uids_info.image_layout_uids.base_mac.uid = fwQuery.base_mac_orig.uid; _fsCtrlImgInfo.orig_fs3_uids_info.image_layout_uids.base_mac.num_allocated = fwQuery.base_mac_orig.num_allocated & 0xff; _fsCtrlImgInfo.orig_fs3_uids_info.image_layout_uids.base_mac.num_allocated_msb = (fwQuery.base_mac_orig.num_allocated >> 8) & 0xff; _fsCtrlImgInfo.fs3_uids_info.image_layout_uids.base_guid.uid = fwQuery.base_guid.uid; _fsCtrlImgInfo.fs3_uids_info.image_layout_uids.base_guid.num_allocated = fwQuery.base_guid.num_allocated & 0xff; _fsCtrlImgInfo.fs3_uids_info.image_layout_uids.base_guid.num_allocated_msb = (fwQuery.base_guid.num_allocated >> 8) & 0xff; _fsCtrlImgInfo.orig_fs3_uids_info.image_layout_uids.base_guid.uid = fwQuery.base_guid_orig.uid; _fsCtrlImgInfo.orig_fs3_uids_info.image_layout_uids.base_guid.num_allocated = fwQuery.base_guid_orig.num_allocated & 0xff; _fsCtrlImgInfo.orig_fs3_uids_info.image_layout_uids.base_guid.num_allocated_msb = (fwQuery.base_guid_orig.num_allocated >> 8) & 0xff; _fwImgInfo.ext_info.pci_device_id = fwQuery.dev_id; _fwImgInfo.ext_info.dev_type = fwQuery.dev_id; _hwDevId = fwQuery.hw_dev_id; _fwImgInfo.ext_info.dev_rev = fwQuery.rev_id; _fwImgInfo.ext_info.is_failsafe = true; _fsCtrlImgInfo.security_mode = (security_mode_t)(SMM_MCC_EN | ((fwQuery.security_type.debug_fw == 1) ? SMM_DEBUG_FW : 0) | ((fwQuery.security_type.signed_fw == 1) ? SMM_SIGNED_FW : 0) | ((fwQuery.security_type.secure_fw == 1) ? SMM_SECURE_FW : 0) | ((fwQuery.security_type.dev_fw == 1) ? SMM_DEV_FW : 0)); _fsCtrlImgInfo.sec_boot = fwQuery.sec_boot; _fsCtrlImgInfo.life_cycle = fwQuery.life_cycle; _fsCtrlImgInfo.encryption = fwQuery.encryption; std::vector compsMap; if (!_fwCompsAccess->getFwComponents(compsMap, false)) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "Failed to get the FW Components MAP, err[%d]", _fwCompsAccess->getLastError()); } for (std::vector::iterator it = compsMap.begin(); it != compsMap.end(); it++) { if (it->getStatus() == FwComponent::COMPSTAT_PRESENT || it->getStatus() == FwComponent::COMPSTAT_IN_USE) { if (it->getType() == FwComponent::COMPID_CS_TOKEN) { _fsCtrlImgInfo.security_mode |= SMM_CS_TOKEN; } if (it->getType() == FwComponent::COMPID_DBG_TOKEN) { _fsCtrlImgInfo.security_mode |= SMM_DBG_TOKEN; } if (it->getType() == FwComponent::COMPID_CRYPTO_TO_COMMISSIONING) { _fsCtrlImgInfo.security_mode |= SMM_CRYTO_TO_COMMISSIONING; } if (it->getType() == FwComponent::COMPID_RMCS_TOKEN) { _fsCtrlImgInfo.security_mode |= SMM_RMCS_TOKEN; } if (it->getType() == FwComponent::COMPID_RMDT_TOKEN) { _fsCtrlImgInfo.security_mode |= SMM_RMDT_TOKEN; } } } strcpy(_fwImgInfo.ext_info.psid, fwQuery.psid); strcpy(_fsCtrlImgInfo.orig_psid, fwQuery.psid); /* * MFSV (Manangment FW Security Version) */ u_int8_t mfsv_reg_supported = 0; reg_access_status_t rc = ME_ERROR; mfile* mf = getMfileObj(); // Check if MFSV (register-id 0x9115) is supported reg_access_hca_mcam_reg_ext mcam; memset(&mcam, 0, sizeof(mcam)); mcam.access_reg_group = 2; rc = reg_access_mcam(mf, REG_ACCESS_METHOD_GET, &mcam); if (rc == ME_OK) { mfsv_reg_supported = EXTRACT(mcam.mng_access_reg_cap_mask[3 - 0], 21, 1); } DPRINTF(("mfsv_reg_supported = %d\n", mfsv_reg_supported)); if (_fsCtrlImgInfo.sec_boot == 1 && _fsCtrlImgInfo.life_cycle == GA_SECURED && mfsv_reg_supported == 1) { _fsCtrlImgInfo.device_security_version_access_method = MFSV; } else { _fsCtrlImgInfo.device_security_version_access_method = NOT_VALID; } // GET MFSV if (mfsv_reg_supported == 1) { struct reg_access_hca_mfsv_reg_ext mfsv_reg; memset(&mfsv_reg, 0, sizeof(mfsv_reg)); rc = reg_access_mfsv(mf, REG_ACCESS_METHOD_GET, &mfsv_reg); if (rc == ME_OK) { //// reg_access_hca_mfsv_reg_print(&mfsv_reg, stdout, 4); memcpy(&(_fsCtrlImgInfo.device_security_version_mfsv), &mfsv_reg, sizeof(reg_access_hca_mfsv_reg_ext)); } } //* Read global image status if (_fsCtrlImgInfo.sec_boot == true) { try { CRSpaceRegisters cr_space_reg(mf, _fwImgInfo.ext_info.chip_type); _fsCtrlImgInfo.global_image_status = cr_space_reg.getGlobalImageStatus(); } catch (logic_error e) { printf("%s\n", e.what()); return false; } catch (exception e) { printf("%s\n", e.what()); return false; } } /* * Fill ROM info */ _fwImgInfo.ext_info.roms_info.num_of_exp_rom = fwQuery.nRoms; _fwImgInfo.ext_info.roms_info.exp_rom_found = fwQuery.nRoms > 0; for (int i = 0; i < fwQuery.nRoms; i++) { _fwImgInfo.ext_info.roms_info.rom_info[i].exp_rom_product_id = fwQuery.roms[i].type; _fwImgInfo.ext_info.roms_info.rom_info[i].exp_rom_proto = 0xff; // NA _fwImgInfo.ext_info.roms_info.rom_info[i].exp_rom_supp_cpu_arch = fwQuery.roms[i].arch; _fwImgInfo.ext_info.roms_info.rom_info[i].exp_rom_num_ver_fields = FwOperations::RomInfo::getNumVerFromProdId(_fwImgInfo.ext_info.roms_info.rom_info[i].exp_rom_product_id); extractFwVersion(_fwImgInfo.ext_info.roms_info.rom_info[i].exp_rom_ver, fwQuery.roms[i].version); } strncpy(_fsCtrlImgInfo.name, fwQuery.name, NAME_LEN); strncpy(_fsCtrlImgInfo.description, fwQuery.description, DESCRIPTION_LEN); (strncpy(_fsCtrlImgInfo.deviceVsd, fwQuery.deviceVsd, VSD_LEN)); if (FwType() == FIT_FS3) { memcpy(_fwImgInfo.ext_info.vsd, fwQuery.deviceVsd, VSD_LEN); } (strncpy(_fsCtrlImgInfo.image_vsd, fwQuery.imageVsd, VSD_LEN)); return true; } void FsCtrlOperations::ExtractSwitchFWVersion(const fwInfoT& fwQuery) { if (VerifyBranchFormat(fwQuery.imageVsd)) { strncpy(_fwImgInfo.ext_info.running_branch_ver, fwQuery.imageVsd, BRANCH_LEN); _fwImgInfo.ext_info.running_branch_ver[BRANCH_LEN - 1] = '\0'; } if (fwQuery.running_fw_version.version_string_length && fwQuery.running_fw_version.version_string_length <= BRANCH_LEN) { extractFwVersion(_fwImgInfo.ext_info.fw_ver, (const char*)fwQuery.running_fw_version.version_string); extractFwVersion(_fwImgInfo.ext_info.running_fw_ver, (const char*)fwQuery.running_fw_version.version_string); } if (fwQuery.pending_fw_version.version_string_length && fwQuery.pending_fw_version.version_string_length <= BRANCH_LEN) { extractFwVersion(_fwImgInfo.ext_info.fw_ver, (const char*)fwQuery.pending_fw_version.version_string); } // Copying VSD to branch_ver makes sure that when checking if pending equals running (operator==) // it will evaluate to "true" (this happens in FwVersion class) if ((_fwImgInfo.ext_info.fw_ver[0] == _fwImgInfo.ext_info.running_fw_ver[0]) && (_fwImgInfo.ext_info.fw_ver[1] == _fwImgInfo.ext_info.running_fw_ver[1]) && (_fwImgInfo.ext_info.fw_ver[2] == _fwImgInfo.ext_info.running_fw_ver[2])) { strncpy(_fwImgInfo.ext_info.branch_ver, fwQuery.imageVsd, BRANCH_LEN); _fwImgInfo.ext_info.branch_ver[BRANCH_LEN - 1] = '\0'; } } bool FsCtrlOperations::FwReactivateImage() { if (!_fwCompsAccess->fwReactivateImage()) { fw_comps_error_t errCode = _fwCompsAccess->getLastError(); switch (errCode) { case FWCOMPS_IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR: return errmsg(MLXFW_IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR, "Prohibited by current FW version"); case FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_COPY_FAILED: return errmsg(MLXFW_IMAGE_RACTIVATION_FIRST_PAGE_COPY_FAILED, "First page copy failed"); case FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED: return errmsg(MLXFW_IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED, "First page erase failed"); case FWCOMPS_IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED: return errmsg(MLXFW_IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED, "First page restore failed"); case FWCOMPS_IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED: return errmsg(MLXFW_IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED, "FW deactivation failed"); case FWCOMPS_IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED: return errmsg(MLXFW_IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED, "FW already reactivated"); case FWCOMPS_IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED: return errmsg(MLXFW_IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED, "FW reset required"); case FWCOMPS_IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED: return errmsg(MLXFW_IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED, "FW programming needed"); case FWCOMPS_GENERAL_ERR: return errmsg(MLXFW_ERR, "FW ICMD related error"); case FWCOMPS_IMAGE_REACTIVATION_WAITING_TIME_EXPIRED: return errmsg(MLXFW_ERR, "Image reactivation - timeout expired"); case FWCOMPS_IMAGE_REACTIVATION_FW_NOT_SUPPORTED: return errmsg(MLXFW_ERR, "Image reactivation - FW doesn't support this operation"); default: return errmsg(MLXFW_IMAGE_REACTIVATION_UNKNOWN_ERROR, "Unknown error occurred"); } } return true; } bool FsCtrlOperations::FwQuery(fw_info_t* fwInfo, bool readRom, bool isStripedImage, bool quickQuery, bool ignoreDToc, bool verbose) { (void)isStripedImage; (void)readRom; (void)quickQuery; (void)ignoreDToc; (void)verbose; memcpy(&(fwInfo->fw_info), &(_fwImgInfo.ext_info), sizeof(fw_info_com_t)); memcpy(&(fwInfo->fs3_info), &(_fsCtrlImgInfo), sizeof(fs3_info_t)); fwInfo->fs3_info.fs3_uids_info.valid_field = 1; fwInfo->fw_type = FwType(); return true; } bool FsCtrlOperations::FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage, bool showItoc, bool ignoreDToc) { ExtVerifyParams extVerParams(verifyCallBackFunc); extVerParams.isStripedImage = isStripedImage; extVerParams.showItoc = showItoc; extVerParams.ignoreDToc = ignoreDToc; return FwVerifyAdv(extVerParams); } bool FsCtrlOperations::FwVerifyAdv(ExtVerifyParams& verifyParams) { bool isEncrypted = false; if (!this->isEncrypted(isEncrypted)) { return errmsg("%s", err()); } else if (isEncrypted) { return errmsg("Cannot verify an encrypted flash"); } else { FwOperations* imageOps = NULL; if (!_createImageOps(&imageOps)) { return errmsg("%s", err()); } if (!imageOps->FwVerify(verifyParams.verifyCallBackFunc, verifyParams.isStripedImage, verifyParams.showItoc, true)) { delete imageOps; return errmsg(imageOps->getErrorCode(), "%s", imageOps->err()); } delete imageOps; } return true; } bool FsCtrlOperations::FwReadData(void* image, u_int32_t* image_size, bool verbose) { (void)image; (void)image_size; (void)verbose; return errmsg("Read image is not supported"); } bool FsCtrlOperations::ReadBootImage(void* image, u_int32_t* image_size, ProgressCallBackAdvSt* stProgressFunc) { if (image) { FwComponent bootImgComp; if (!_fwCompsAccess->readComponent(FwComponent::COMPID_BOOT_IMG, bootImgComp, true, (ProgressCallBackAdvSt*)stProgressFunc)) { if (!_fwCompsAccess->readComponent(FwComponent::COMPID_BOOT_IMG, bootImgComp, false, (ProgressCallBackAdvSt*)stProgressFunc)) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "Failed to read boot image, %s - RC[%d]", _fwCompsAccess->getLastErrMsg(), (int)_fwCompsAccess->getLastError()); } } *image_size = bootImgComp.getSize(); memcpy(image, bootImgComp.getData().data(), *image_size); return true; } else { std::vector compsMap; if (!_fwCompsAccess->getFwComponents(compsMap, false)) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "Failed to get the FW Components MAP, err[%d]", _fwCompsAccess->getLastError()); } for (std::vector::iterator it = compsMap.begin(); it != compsMap.end(); it++) { if (it->getType() == FwComponent::COMPID_BOOT_IMG) { *image_size = it->getSize(); return true; } } return errmsg("Failed to get the Boot image"); } } bool FsCtrlOperations::FwReadRom(std::vector& romSect) { (void)romSect; return unsupportedOperation(); } bool FsCtrlOperations::FwBurnRom(FImage* romImg, bool ignoreProdIdCheck, bool ignoreDevidCheck, ProgressCallBack progressFunc) { (void)romImg; (void)ignoreDevidCheck; (void)ignoreProdIdCheck; (void)progressFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc) { (void)ignoreProdIdCheck; (void)progressFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurnAdvanced\n"); } ExtBurnParams params = ExtBurnParams(); params.ignoreVersionCheck = forceVersion; params.progressFunc = progressFunc; return FwBurnAdvanced(imageOps, params); } bool FsCtrlOperations::BadParamErrMsg(const char* unSupportedOperation, bool isSecure) { const char* noCtrlFwReccomendation = ""; const char* fwType = "Secure"; if (!isSecure) { noCtrlFwReccomendation = " You can try to run again with the flag \"--no_fw_ctrl\"."; fwType = "controlled"; } return errmsg(MLXFW_UNSUPPORTED_PARAM, "%s is unsupported under %s FW.%s", unSupportedOperation, fwType, noCtrlFwReccomendation); } bool FsCtrlOperations::VerifyAllowedParams(ExtBurnParams& burnParams, bool isSecure) { if (burnParams.vsdSpecified) { return BadParamErrMsg("Specifying vsd", isSecure); } else if (!burnParams.burnFailsafe) { return BadParamErrMsg("Burning in non-failsafe mode", isSecure); } else if (burnParams.allowPsidChange) { return BadParamErrMsg("Changing PSID", isSecure); } else if (burnParams.useImagePs) { return BadParamErrMsg("Burning vsd as appears in the given image", isSecure); } else if (burnParams.noDevidCheck) { return BadParamErrMsg("Not checking device id", isSecure); } else if (burnParams.useImgDevData) { return BadParamErrMsg("Using image device data", isSecure); } else if (burnParams.useDevImgInfo) { return BadParamErrMsg("Using device image info", isSecure); } else if (burnParams.burnRomOptions == ExtBurnParams::BRO_FROM_DEV_IF_EXIST) { return BadParamErrMsg("Burning ROM from device", isSecure); } return true; } bool FsCtrlOperations::_createImageOps(FwOperations** imageOps) { u_int32_t imageSize = 0; if (!ReadBootImage(NULL, &imageSize)) { return errmsg("Failed to get boot image size"); } std::vector imageData; imageData.resize(imageSize); if (!ReadBootImage((void*)imageData.data(), &imageSize)) { return errmsg("Failed to read boot image"); } fw_ops_params_t imageParams; memset(&imageParams, 0, sizeof(imageParams)); imageParams.buffHndl = (u_int32_t*)imageData.data(); imageParams.buffSize = imageSize; imageParams.hndlType = FHT_FW_BUFF; imageParams.ignoreCrcCheck = _fwParams.ignoreCrcCheck; *imageOps = FwOperations::FwOperationsCreate(imageParams); if (!(*imageOps)) { return errmsg("Failed to create image ops"); } return true; } bool FsCtrlOperations::GetHashesTableSize(u_int32_t hashes_table_addr, u_int32_t& size) { u_int32_t htoc_size = IMAGE_LAYOUT_HTOC_HEADER_SIZE + MAX_HTOC_ENTRIES_NUM * (IMAGE_LAYOUT_HTOC_ENTRY_SIZE + HTOC_HASH_SIZE); size = IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE + htoc_size + HASHES_TABLE_TAIL_SIZE; return true; } bool FsCtrlOperations::GetHashesTableData(vector& data) { //* Get addr u_int32_t hashes_table_addr = 0; if (!GetHashesTableAddr(hashes_table_addr)) { return false; } //* Get size u_int32_t hashes_table_size = 0; if (!GetHashesTableSize(hashes_table_addr, hashes_table_size)) { return false; } //* Read data if (!FwReadBlock(hashes_table_addr, hashes_table_size, data)) { return false; } return true; } bool FsCtrlOperations::GetHWPointers(image_layout_hw_pointers_carmel& hw_pointers) { vector buff(IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE); if (!FwReadBlock(FS4_HW_PTR_START, buff.size(), buff)) { return errmsg("Failed to read HW pointers from flash"); } image_layout_hw_pointers_carmel_unpack(&hw_pointers, buff.data()); return true; } bool FsCtrlOperations::GetHashesTableAddr(u_int32_t& addr) { struct image_layout_hw_pointers_carmel hw_pointers; if (!GetHWPointers(hw_pointers)) { return false; } addr = hw_pointers.hashes_table_pointer.ptr; if (addr == 0xffffffff || addr == 0x0) { return errmsg("Hashes table doesn't exist on device"); } return true; } bool FsCtrlOperations::CheckITOCSignature(u_int8_t* signature) { const u_int32_t expected_sig[] = {0x49544f43, 0x04081516, 0x2342cafa, 0xbacafe00}; for (int i = 0; i < 4; i++) { u_int32_t sig_dword = ((u_int32_t*)signature)[i]; TOCPU1(sig_dword); DPRINTF(("Comparing itoc_sig[%d]=0x%x with expected_sig[%d]=0x%x\n", i, sig_dword, i, expected_sig[i])); if (sig_dword != expected_sig[i]) { return false; } } return true; } bool FsCtrlOperations::isEncrypted(bool& is_encrypted) { is_encrypted = _fsCtrlImgInfo.encryption; DPRINTF(("FsCtrlOperations::isEncrypted() = %s\n", is_encrypted ? "TRUE" : "FALSE")); return true; } bool FsCtrlOperations::FwBurnAdvanced(std::vector imageOps4MData, ExtBurnParams& burnParams, FwComponent::comps_ids_t ComponentId) { return _Burn(imageOps4MData, burnParams.ProgressFuncAdv, ComponentId); } bool FsCtrlOperations::FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams, FwComponent::comps_ids_t componentId) { if (componentId == FwComponent::comps_ids_t::COMPID_CLOCK_SYNC_EEPROM) { vector data; if (!QueryComponentData(componentId, imageOps->GetDeviceIndex(), data)) { return false; } FsCompsOperations* compsOps = dynamic_cast(imageOps); if (!compsOps->IsCompatibleToDevice(data, burnParams.ignoreVersionCheck)) { return errmsg("%s", compsOps->err()); } _fwCompsAccess->SetActivationStep(false); } else if (componentId == FwComponent::comps_ids_t::DIGITAL_CACERT || componentId == FwComponent::comps_ids_t::DIGITAL_CACERT_REMOVAL) { _fwCompsAccess->SetActivationStep(false); } std::vector compData; u_int32_t imageSize = 0; if (!imageOps->GetImageSize(&imageSize)) { return false; } compData.resize(imageSize); if (!imageOps->FwReadData(compData.data(), &imageSize)) { return errmsg(imageOps->getErrorCode(), "Failed to read component from file"); } printf("-I- Downloading FW ...\n"); return _Burn(compData, burnParams.ProgressFuncAdv, componentId); } bool FsCtrlOperations::FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams) { if (imageOps == NULL) { return errmsg("bad parameter is given to FwBurnAdvanced\n"); } if (!FsIntQuery()) { return false; } fw_info_t fw_query; memset(&fw_query, 0, sizeof(fw_info_t)); if (!imageOps->FwQuery(&fw_query, true)) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "Failed to query the image\n"); } if (!VerifyAllowedParams(burnParams, fw_query.fs3_info.security_mode & SMM_SECURE_FW)) { return false; } if (!CheckPSID(*imageOps, false)) { if (burnParams.allowPsidChange) { return errmsg(MLXFW_PSID_MISMATCH_ERR, "Changing PSID is not supported under controlled FW."); } return false; } // Check if the burnt FW version is OK if (!CheckFwVersion(*imageOps, burnParams.ignoreVersionCheck)) { return false; } if (fw_query.fs3_info.security_mode == SM_NONE) { return errmsg(MLXFW_MISSING_IMAGE_SIGNATURE, "This is an old image format that does not have a signature or does not support FW control " "commands.\n-E- please retry with --no_fw_ctrl flag\n"); } // Check TimeStamp if (!TestAndSetTimeStamp(imageOps)) { return false; } std::vector imageOps4MData; if (!imageOps->FwExtract4MBImage(imageOps4MData, true)) { return errmsg(imageOps->getErrorCode(), "Failed to Extract 4MB from the image"); } return _Burn(imageOps4MData, burnParams.ProgressFuncAdv); } bool FsCtrlOperations::burnEncryptedImage(FwOperations* imageOps, ExtBurnParams& burnParams) { return FwBurnAdvanced(imageOps, burnParams); } bool FsCtrlOperations::_Burn(std::vector imageOps4MData, ProgressCallBackAdvSt& progressCallBack, FwComponent::comps_ids_t ComponentId) { #ifdef UEFI_BUILD progressCallBack.uefi_func #endif FwComponent bootImageComponent; std::vector compsToBurn; bootImageComponent.init(imageOps4MData, imageOps4MData.size(), ComponentId); compsToBurn.push_back(bootImageComponent); if (!_fwCompsAccess->lock_flash_semaphore()) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "%s", _fwCompsAccess->getLastErrMsg()); } if (_fwCompsAccess->isMCDDSupported()) { // Checking if BME is disabled to print indication to user bool isBmeSet = DMAComponentAccess::isBMESet(_fwCompsAccess->getMfileObj()); if (!isBmeSet) { DPRINTF(("-W- DMA access is not supported due to BME is unset (Bus primary Enable).\n")); } } if (!_fwCompsAccess->burnComponents(compsToBurn, &progressCallBack)) { _fwCompsAccess->unlock_flash_semaphore(); return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "%s", _fwCompsAccess->getLastErrMsg()); } _fwCompsAccess->unlock_flash_semaphore(); return true; } bool FsCtrlOperations::FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc) { (void)imageOps; (void)progressFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwWriteBlock(u_int32_t addr, std::vector dataVec, ProgressCallBack progressFunc) { (void)addr; (void)dataVec; (void)progressFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc, ProgressCallBack progressFunc) { (void)callBackFunc; (void)progressFunc; mac_guid_t macGuid; memset(&macGuid, 0, sizeof(macGuid)); if (sgParam.userGuids.empty()) { return errmsg("Base GUID not found."); } if (!sgParam.guidsSpecified && !sgParam.macsSpecified && !sgParam.uidSpecified) { return errmsg("base GUID/MAC were not specified."); } if (!sgParam.updateCrc || sgParam.numOfGUIDs != 0 || sgParam.stepSize != 0 || sgParam.numOfGUIDsPP[0] != 0xffff || sgParam.numOfGUIDsPP[1] != 0xffff || sgParam.stepSizePP[0] != 0xff || sgParam.stepSizePP[1] != 0xff) { return errmsg("Tried to set unsupported values. Allowed values to set are mac,guid,uid."); } if (sgParam.uidSpecified) { macGuid.guid = sgParam.userGuids[0]; u_int64_t baseMac = (((u_int64_t)macGuid.guid.l & 0xffffff) | (((u_int64_t)macGuid.guid.h & 0xffffff00) << 16)); macGuid.mac.h = baseMac >> 32; macGuid.mac.l = baseMac & 0x00000000ffffffff; } else { fwInfoT fwQuery; if (!_fwCompsAccess->queryFwInfo(&fwQuery)) { return false; } if (sgParam.macsSpecified) { if (sgParam.userGuids.size() < 2) { return errmsg("MAC was not found."); } // check base mac if (!CheckMac(sgParam.userGuids[1])) { return errmsg("Bad MAC (" MAC_FORMAT ") given: %s. Please specify a valid MAC value", sgParam.userGuids[1].h, sgParam.userGuids[1].l, err()); } macGuid.mac = sgParam.userGuids[1]; } else { macGuid.mac.h = fwQuery.base_mac.uid >> 32; macGuid.mac.l = fwQuery.base_mac.uid & 0x00000000ffffffff; } if (sgParam.guidsSpecified) { macGuid.guid = sgParam.userGuids[0]; } else { macGuid.guid.h = fwQuery.base_guid.uid >> 32; macGuid.guid.l = fwQuery.base_guid.uid & 0x00000000ffffffff; } } if (!_fwCompsAccess->setMacsGuids(macGuid)) { return errmsg(FwCompsErrToFwOpsErr(_fwCompsAccess->getLastError()), "%s", _fwCompsAccess->getLastErrMsg()); } return true; } bool FsCtrlOperations::FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc) { (void)baseGuid; (void)callBackFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc) { (void)baseGuid; (void)callBackFunc; return unsupportedOperation(); } // use progressFunc when dealing with FS2 image and printFunc when dealing with FS3 image. bool FsCtrlOperations::FwSetVSD(char* vsdStr, ProgressCallBack progressFunc, PrintCallBack printFunc) { (void)vsdStr; (void)printFunc; (void)progressFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc) { (void)vpdFileStr; (void)callBackFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc) { (void)userKey; (void)progressFunc; return unsupportedOperation(); } bool FsCtrlOperations::FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage) { (void)sectInfo; (void)sectType; (void)stripedImage; return unsupportedOperation(); } bool FsCtrlOperations::FwResetNvData() { return unsupportedOperation(); } bool FsCtrlOperations::FwShiftDevData(PrintCallBack progressFunc) { (void)progressFunc; return unsupportedOperation(); } const char* FsCtrlOperations::FwGetResetRecommandationStr() { #if defined(__VMKERNEL_UW_NATIVE__) return REBOOT_REQUIRED_STR; #else return REBOOT_OR_FWRESET_REQUIRED_STR; #endif } bool FsCtrlOperations::FwCalcMD5(u_int8_t md5sum[16]) { (void)md5sum; return unsupportedOperation(); } FsCtrlOperations::~FsCtrlOperations() { if (_fwCompsAccess) { delete _fwCompsAccess; _fwCompsAccess = (FwCompsMgr*)NULL; } } bool FsCtrlOperations::FwReadBlock(u_int32_t addr, u_int32_t size, std::vector& dataVec) { DPRINTF(("Read from flash using MCC")); if (!_fwCompsAccess->readBlockFromComponent(FwComponent::COMPID_BOOT_IMG, addr, size, dataVec)) { fw_comps_error_t errCode = _fwCompsAccess->getLastError(); if (errCode == FWCOMPS_READ_OUTSIDE_IMAGE_RANGE) { return errmsg(MLXFW_BAD_PARAM_ERR, "Reading %#x bytes from address %#x is out of flash limits\n", size, (unsigned int)addr); } else { return errmsg(MLXFW_FLASH_READ_ERR, "%s", _fwCompsAccess->getLastErrMsg()); } } return true; } int FsCtrlOperations::FwCompsErrToFwOpsErr(fw_comps_error_t err) { int fwOpsErr = MLXFW_OK; switch (err) { case FWCOMPS_MCC_ERR_REJECTED_DIGEST_ERR: fwOpsErr = MLXFW_BURN_REJECTED_DIGEST_ERR; break; case FWCOMPS_MCC_ERR_REJECTED_NOT_APPLICABLE: fwOpsErr = MLXFW_BURN_REJECTED_NOT_APPLICABLE; break; case FWCOMPS_MCC_ERR_REJECTED_UNKNOWN_KEY: fwOpsErr = MLXFW_BURN_REJECTED_UNKNOWN_KEY; break; case FWCOMPS_MCC_ERR_REJECTED_AUTH_FAILED: fwOpsErr = MLXFW_BURN_REJECTED_AUTH_FAILED; break; case FWCOMPS_MCC_ERR_REJECTED_UNSIGNED: fwOpsErr = MLXFW_BURN_REJECTED_UNSIGNED; break; case FWCOMPS_MCC_ERR_REJECTED_KEY_NOT_APPLICABLE: fwOpsErr = MLXFW_BURN_REJECTED_KEY_NOT_APPLICABLE; break; case FWCOMPS_MCC_ERR_REJECTED_BAD_FORMAT: fwOpsErr = MLXFW_BURN_REJECTED_BAD_FORMAT; break; case FWCOMPS_MCC_ERR_BLOCKED_PENDING_RESET: fwOpsErr = MLXFW_BURN_BLOCKED_PENDING_RESET; break; case FWCOMPS_MCC_UNEXPECTED_STATE: fwOpsErr = MLXFW_FSM_UNEXPECTED_STATE; break; case FWCOMPS_MCC_REJECTED_NOT_A_SECURED_FW: fwOpsErr = MLXFW_REJECTED_NOT_A_SECURED_FW; break; case FWCOMPS_MCC_REJECTED_MFG_BASE_MAC_NOT_LISTED: fwOpsErr = MLXFW_REJECTED_MFG_BASE_MAC_NOT_LISTED; break; case FWCOMPS_MCC_REJECTED_NO_DEBUG_TOKEN: fwOpsErr = MLXFW_REJECTED_NO_DEBUG_TOKEN; break; case FWCOMPS_MCC_REJECTED_VERSION_NUM_MISMATCH: fwOpsErr = MLXFW_REJECTED_VERSION_NUM_MISMATCH; break; case FWCOMPS_MCC_REJECTED_USER_TIMESTAMP_MISMATCH: fwOpsErr = MLXFW_REJECTED_USER_TIMESTAMP_MISMATCH; break; case FWCOMPS_MCC_REJECTED_FORBIDDEN_VERSION: fwOpsErr = MLXFW_REJECTED_FORBIDDEN_VERSION; break; case FWCOMPS_MCC_FLASH_ERASE_ERROR: fwOpsErr = MLXFW_FLASH_ERASE_ERROR; break; case FWCOMPS_MEM_ALLOC_FAILED: fwOpsErr = MLXFW_MEM_ERR; break; case FWCOMPS_MCC_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION: fwOpsErr = MLXFW_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION; break; default: if (err != FWCOMPS_SUCCESS) { fwOpsErr = MLXFW_ERR; } break; } return fwOpsErr; } Tlv_Status_t FsCtrlOperations::GetTsObj(TimeStampIFC** tsObj) { *tsObj = TimeStampIFC::getIFC(_fwCompsAccess->getMfileObj()); return TS_OK; } bool FsCtrlOperations::FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) { TimeStampIFC* tsObj = NULL; Tlv_Status_t rc; if (GetTsObj(&tsObj)) { return errmsg("Failed to set timestamp. %s", err()); } rc = tsObj->setTimeStamp(timestamp, fwVer); if (rc) { errmsg("%s", tsObj->err()); } delete tsObj; return rc ? false : true; } bool FsCtrlOperations::FwResetTimeStamp() { TimeStampIFC* tsObj = NULL; Tlv_Status_t rc; if (GetTsObj(&tsObj)) { return errmsg("Failed to reset timestamp. %s", err()); } rc = tsObj->resetTimeStamp(); if (rc) { errmsg("%s", tsObj->err()); } delete tsObj; return rc ? false : true; } bool FsCtrlOperations::FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning) { TimeStampIFC* tsObj = NULL; Tlv_Status_t rc; if (GetTsObj(&tsObj)) { return errmsg("Failed to query timestamp. %s", err()); } rc = tsObj->queryTimeStamp(timestamp, fwVer, queryRunning); if (rc) { errmsg("%s", tsObj->err()); } delete tsObj; return rc ? false : true; } bool FsCtrlOperations::IsSecureBootSupported() { return _signatureMngr->IsSecureBootSupported(); } bool FsCtrlOperations::IsLifeCycleSupported() { return _signatureMngr->IsLifeCycleSupported(); } bool FsCtrlOperations::IsCableQuerySupported() { return _signatureMngr->IsCableQuerySupported(); } bool FsCtrlOperations::IsEncryptionSupported() { return _signatureMngr->IsEncryptionSupported(); } bool FsCtrlOperations::IsSecurityVersionViolated(u_int32_t image_security_version) { // Set image security-version u_int32_t imageSecurityVersion = image_security_version; u_int32_t deviceEfuseSecurityVersion; if (getenv("FLINT_IGNORE_SECURITY_VERSION_CHECK") != NULL) { return false; } // Set device security-version (from EFUSEs) if (_fsCtrlImgInfo.device_security_version_access_method == MFSV) { deviceEfuseSecurityVersion = _fsCtrlImgInfo.device_security_version_mfsv.efuses_sec_ver; } else { deviceEfuseSecurityVersion = 0; } // Check violation of security-version return (imageSecurityVersion < deviceEfuseSecurityVersion); } bool FsCtrlOperations::QueryComponentData(FwComponent::comps_ids_t comp, u_int32_t deviceIndex, vector& data) { DPRINTF(("QueryComponentData - %X\n", comp)); if (!_fwCompsAccess->GetComponentInfo(comp, deviceIndex, data) && _fwCompsAccess->getLastError() != FWCOMPS_DEVICE_NOT_PRESENT) { return errmsg("%s", _fwCompsAccess->getLastErrMsg()); } return true; } mstflint-4.26.0/mlxfwops/lib/fs_checks.h0000644000175000017500000000606114522641732020434 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS_CHECKS_ #define FS_CHECKS_ #include "fw_ops.h" #if !defined(UEFI_BUILD) #include #endif class MLXFWOP_API FsChecks { public: FsChecks(fw_info_t devInfo, FwOperations* devFwOps, FwOperations* imageFwOps, FwOperations::ExtBurnParams burnParams, FwOperations::fw_ops_params_t fwParams) : _is8MBShiftingNeeded(false), _isAlignmentNeeded(false), _isFallBackToRegularFlowNeeded(false), _isItWasFwControlFlow(false), _isTimeConsumingFixesNeeded(false), _devQueryRes(false), _devFwOps(devFwOps), _imageFwOps(imageFwOps), _burnParams(burnParams), _devInfo(devInfo), _fwParams(fwParams) { } bool ExecuteChecks(FwOperations** devFwOps, FwOperations::ExtBurnParams& burnParams, fw_info_t& devInfo); void UpdateContext(FwOperations** devFwOps, FwOperations::ExtBurnParams& burnParams, fw_info_t& devInfo); #if !defined(UEFI_BUILD) void GetUserQuestions(vector& questions, const string& ident = ""); #endif // virtual ~FsChecks() {}; static const char* AlignmentUserMessage; static const char* ShiftingUserMessage; bool _is8MBShiftingNeeded; bool _isAlignmentNeeded; bool _isFallBackToRegularFlowNeeded; bool _isItWasFwControlFlow; bool _isTimeConsumingFixesNeeded; bool _devQueryRes; FwOperations* _devFwOps; FwOperations* _imageFwOps; FwOperations::ExtBurnParams _burnParams; fw_info_t _devInfo; FwOperations::fw_ops_params_t _fwParams; }; #endif // FS_CHECKS_ mstflint-4.26.0/mlxfwops/lib/aux_tlv_ops.cpp0000644000175000017500000005015714522641732021407 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include "flint_base.h" #include "aux_tlv_ops.h" /* * ImageTlvOps class implementation */ #define AUX_DATA_SIG_SIZE 0x10 #define SIG3 0x080d1522 #define SIG2 0x01020305 #define SIG1 0x6548bc86 #define SIG0 0x4155583a bool ImageTlvOps::test() { printf("-I- ImageTlvOps Class test"); u_int32_t data0[] = {0x12345678, 0xabcdef01, 0xab0dab10, 0xcafaba1a, 0x0cafee1e1, 0x12345678, 0x23456789, 0x3456789a}; u_int32_t data1[] = {0x12345678, 0xabcdef01, 0xab0dab1, 0xcafaba1a, 0x0cafee1e1, 0x12345678, 0x23456789, 0x3456789a}; u_int8_t data2[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa}; // run init if (!init(true)) { printf("-E- failed on init"); } // add all tlvs and update file aux_tlv tlv; memset(&tlv.hdr, 0x0, sizeof(tlv.hdr)); tlv.hdr.header_type = 0; tlv.hdr.type = 0; tlv.hdr.length = 0x10; tlv.data.resize(tlv.hdr.length); memcpy(&tlv.data[0], data0, tlv.hdr.length); addTLV(tlv); tlv.hdr.header_type = 1; tlv.hdr.type = 0; tlv.hdr.length = 0x3; tlv.data.resize(tlv.hdr.length); memcpy(&tlv.data[0], data1, tlv.hdr.length); addTLV(tlv); tlv.hdr.header_type = 0; tlv.hdr.type = 3; tlv.hdr.length = 0xa; tlv.data.resize(tlv.hdr.length); memcpy(&tlv.data[0], data2, tlv.hdr.length); addTLV(tlv); if (!updateFile()) { printf("-E- failed to update file\n"); } removeTlv(3, 0); removeTlv(0, 0); removeTlv(0, 1); if (!updateFile()) { printf("-E- failed to update file\n"); } printf("-I- Done Successfully"); return true; } Tlv_Status_t ImageTlvOps::getFileSize(FILE* fd, long int& fileSize) { // Get the file size: if (fseek(fd, 0, SEEK_END) < 0) { fclose(fd); return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_OPEN_FILE, "Can not get file size for \"%s\"", _fname); } fileSize = ftell(fd); if (fileSize < 0) { fclose(fd); return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_OPEN_FILE, "Can not get file size for \"%s\"", _fname); } rewind(fd); return TS_OK; } Tlv_Status_t ImageTlvOps::init(u_int32_t startPos, bool force) { if (!force && _initialized) { return TS_OK; } long int fsize; _tlvSectionFound = false; _tlvSectionFilePos = 0; _tlvVec.resize(0); if (_fname) { _rawFileBuff.resize(0); FILE* fd = fopen(_fname, "rb"); if (!fd) { return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_OPEN_FILE, "Failed to open file of reading"); } // get file size if (getFileSize(fd, fsize)) { return TS_FAILED_TO_OPEN_FILE; } // read the file long int readCnt; _rawFileBuff.resize(fsize); if ((readCnt = fread(&_rawFileBuff[0], 1, fsize, fd)) != fsize) { fclose(fd); if (readCnt < 0) { return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_READ_FILE, "Read error on file \"%s\"", _fname); } else { return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_READ_FILE, "Read error on file \"%s\" - read only %ld bytes (from %ld)", _fname, readCnt, (unsigned long)fsize); } } fclose(fd); } fsize = _rawFileBuff.size(); for (long int i = startPos; i < fsize; i += 4) { if ((i + 16) > fsize) { break; // reached EOF } std::vector possibleSig(_rawFileBuff.begin() + i, _rawFileBuff.begin() + i + 16); TOCPUn(&possibleSig[0], 4); if (checkSig(possibleSig)) { _tlvSectionFound = true; _tlvSectionFilePos = i; } } if (_tlvSectionFound) { // parse TLVs return parseTlvs(); } _initialized = true; return TS_OK; } Tlv_Status_t ImageTlvOps::resetTlvSection() { if (_tlvSectionFound) { _tlvVec.resize(0); return updateFile(); } return TS_OK; } void ImageTlvOps::addTLV(aux_tlv& tlv) { // remove it if its present then push back removeTlv(tlv.hdr.type, tlv.hdr.header_type); // calc tlv CRC tlv.hdr.crc = calcTlvCrc(tlv); _tlvVec.push_back(tlv); return; } Tlv_Status_t ImageTlvOps::removeTlv(u_int16_t tlvType, u_int8_t headerType) { for (std::vector::iterator it = _tlvVec.begin(); it != _tlvVec.end(); it++) { if (it->hdr.header_type == headerType && it->hdr.type == tlvType) { _tlvVec.erase(it); return TS_OK; } } return (Tlv_Status_t)errmsgWCode(TS_TLV_NOT_FOUND, "TLV(0x%x) with type(0x%x) not found", tlvType, headerType); } Tlv_Status_t ImageTlvOps::queryTlv(u_int16_t tlvType, u_int8_t headerType, aux_tlv& tlv) { for (std::vector::iterator it = _tlvVec.begin(); it != _tlvVec.end(); it++) { if (it->hdr.header_type == headerType && it->hdr.type == tlvType) { tlv = *it; return TS_OK; } } return (Tlv_Status_t)errmsgWCode(TS_TLV_NOT_FOUND, "TLV(0x%x) with type(0x%x) not found", tlvType, headerType); } std::vector ImageTlvOps::queryTlvs() { return _tlvVec; } bool ImageTlvOps::checkSig(std::vector& signature) { u_int32_t* sigPtr = (u_int32_t*)&signature[0]; return *(sigPtr + 3) == SIG3 && *(sigPtr + 2) == SIG2 && *(sigPtr + 1) == SIG1 && *(sigPtr) == SIG0; } Tlv_Status_t ImageTlvOps::updateFile() { std::vector signature(4, 0x0); signature[3] = SIG3; signature[2] = SIG2; signature[1] = SIG1; signature[0] = SIG0; if (_readOnly) { return (Tlv_Status_t)errmsgWCode(TS_READ_ONLY_MODE, "Image TLV object is read only."); } if (!_tlvSectionFound && _tlvVec.size() == 0) { // no tlv section and no tlvs // nothing to do return TS_OK; } else if (_tlvSectionFound && _tlvVec.size() == 0) { // tlv section without tlvs // remove signature from file _rawFileBuff.resize(_tlvSectionFilePos); _tlvSectionFilePos = 0; _tlvSectionFound = false; } else if (!_tlvSectionFound && _tlvVec.size() != 0) { // no tlv section with tlvs // add signature and TLVs TOCPUn(&signature[0], 4); _tlvSectionFound = true; _tlvSectionFilePos = _rawFileBuff.size(); for (unsigned int i = 0; i < signature.size() << 2; i++) { _rawFileBuff.push_back(*(((u_int8_t*)&signature[0]) + i)); } pushTlvsToRawBuffer(); } else { _rawFileBuff.resize(_tlvSectionFilePos + AUX_DATA_SIG_SIZE); pushTlvsToRawBuffer(); } return writeBufferAsFile(); } Tlv_Status_t ImageTlvOps::writeBufferAsFile() { if (_tlvVec.size()) { // push end marker std::vector endMarker(TOOLS_OPEN_AUX_TLV_HEADER_SIZE, 0xff); _rawFileBuff.insert(_rawFileBuff.end(), endMarker.begin(), endMarker.end()); } // TODO: check the need to : write the file under a different name then delete original and rename FILE* fd = fopen(_fname, "wb"); if (!fd) { return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_OPEN_FILE, "Failed to open file for writing: %s", _fname); } int cnt = fwrite(&_rawFileBuff[0], 1, _rawFileBuff.size(), fd); fclose(fd); if (cnt != (int)_rawFileBuff.size()) { return (Tlv_Status_t)errmsgWCode(TS_FAILED_TO_WRITE_FILE, "Failed to re-write file: %s", _fname); } return TS_OK; } void ImageTlvOps::pushTlvsToRawBuffer() { // called from updateFile. assuming raw data already contains signature. if (_tlvVec.size() != 0) { std::vector tlvBuffer; tlvBuffer.resize(0); for (std::vector::iterator it = _tlvVec.begin(); it != _tlvVec.end(); it++) { // push header std::vector hdrBuf(TOOLS_OPEN_AUX_TLV_HEADER_SIZE, 0x0); tools_open_aux_tlv_header_pack(&(it->hdr), &hdrBuf[0]); tlvBuffer.insert(tlvBuffer.end(), hdrBuf.begin(), hdrBuf.end()); // push data tlvBuffer.insert(tlvBuffer.end(), it->data.begin(), it->data.end()); // pad to DW aligned address with 0x0 if needed if (it->data.size() & 3) { std::vector padding(4 - (it->data.size() & 3), 0x0); tlvBuffer.insert(tlvBuffer.end(), padding.begin(), padding.end()); } } // update raw buffer and write the file _rawFileBuff.insert(_rawFileBuff.end(), tlvBuffer.begin(), tlvBuffer.end()); } return; } Tlv_Status_t ImageTlvOps::parseTlvs() { if (!_tlvSectionFound) { // nothing to parse return TS_OK; } if (!_tlvSectionFilePos) { return (Tlv_Status_t)errmsgWCode(TS_GENERAL_ERROR, "Internal Error. unexpected file position."); } // while not end TLV or EOF u_int32_t nextTlvOffs = _tlvSectionFilePos + AUX_DATA_SIG_SIZE; u_int32_t bufferSize = (u_int32_t)_rawFileBuff.size(); do { aux_tlv tlv; // read next TLV header if (nextTlvOffs == bufferSize) { return (Tlv_Status_t)errmsgWCode(TS_TLV_PARSE_ERROR, "failed to parse TLVs : expected to find End marker before end of file"); } if (nextTlvOffs + TOOLS_OPEN_AUX_TLV_HEADER_SIZE > bufferSize) { return (Tlv_Status_t)errmsgWCode(TS_TLV_PARSE_ERROR, "failed to parse TLVs : unexpected End of extended data section"); } u_int8_t hdrBuf[TOOLS_OPEN_AUX_TLV_HEADER_SIZE] = {0}; memcpy(hdrBuf, &_rawFileBuff[nextTlvOffs], TOOLS_OPEN_AUX_TLV_HEADER_SIZE); tools_open_aux_tlv_header_unpack(&tlv.hdr, hdrBuf); // check for END TLV if (tlv.hdr.header_type == 0xf && tlv.hdr.type == 0xff) { break; } // read next TLV data if (nextTlvOffs + TOOLS_OPEN_AUX_TLV_HEADER_SIZE + tlv.hdr.length > bufferSize) { return (Tlv_Status_t)errmsgWCode(TS_TLV_PARSE_ERROR, "failed to parse TLVs : unexpected End of extended data section"); } u_int32_t vecSizeDwAligned = ((tlv.hdr.length + 3) / 4) * 4; tlv.data.resize(tlv.hdr.length); memset(&tlv.data[0], 0x0, tlv.data.size()); memcpy(&tlv.data[0], &_rawFileBuff[nextTlvOffs + TOOLS_OPEN_AUX_TLV_HEADER_SIZE], tlv.hdr.length); if (tlv.hdr.header_type == 0x0) { // only know how to deal with header of type 0x0 // check CRC and store if (tlv.hdr.crc != calcTlvCrc(tlv)) { return (Tlv_Status_t)errmsgWCode(TS_TLV_CRC_MISMATCH, "Failed to parse TLVs, CRC mismatch for TLV type 0x%x", tlv.hdr.type); } // store it _tlvVec.push_back(tlv); } // next TLV is located at the first DW aligned offset after the current TLV nextTlvOffs += (TOOLS_OPEN_AUX_TLV_HEADER_SIZE + vecSizeDwAligned); } while (true); return TS_OK; } u_int16_t ImageTlvOps::calcTlvCrc(aux_tlv& tlv) { struct tools_open_aux_tlv_header tempHdr; u_int32_t dataSize = (u_int32_t)tlv.data.size(); Crc16 crc; tempHdr = tlv.hdr; tempHdr.crc = 0xffff; u_int8_t tlvHdrBuf[TOOLS_OPEN_AUX_TLV_HEADER_SIZE] = {0}; tools_open_aux_tlv_header_pack(&tempHdr, tlvHdrBuf); // restore CPU endianess TOCPUn(tlvHdrBuf, TOOLS_OPEN_AUX_TLV_HEADER_SIZE >> 2); // calc crc on modified header CRCn(crc, tlvHdrBuf, TOOLS_OPEN_AUX_TLV_HEADER_SIZE >> 2); // calc crc on the data TOCPUn(&tlv.data[0], dataSize >> 2); CRCn(crc, &tlv.data[0], dataSize >> 2); // we might have missed the last DW as it need not be DW aligned u_int32_t remaining = dataSize & 3; if (remaining) { u_int32_t lastDw = 0x0; memcpy(&lastDw, &tlv.data[dataSize - remaining], remaining); crc << lastDw; } TOCPUn(&tlv.data[0], dataSize >> 2); crc.finish(); return crc.get(); } /* * TimeStampIFC class implementation */ TimeStampIFC* TimeStampIFC::getIFC(mfile* mf) { return new DeviceTimeStamp(mf); } TimeStampIFC* TimeStampIFC::getIFC(const char* fname, u_int32_t lastFwAddr) { return new ImageTimeStamp(fname, lastFwAddr); } TimeStampIFC* TimeStampIFC::getIFC(u_int8_t* buff, unsigned int size, u_int32_t lastFwAddr) { return new ImageTimeStamp(buff, size, lastFwAddr); } /* * ImageTimeStamp class implementation */ Tlv_Status_t ImageTimeStamp::init() { Tlv_Status_t rc = _imgTlvOps.init(_lastFwAddr); return rc ? (Tlv_Status_t)errmsgWCode(rc, "%s", _imgTlvOps.err()) : TS_OK; }; Tlv_Status_t ImageTimeStamp::setTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) { aux_tlv tsTlv; memset(&(tsTlv.hdr), 0, sizeof(tsTlv.hdr)); // Init hdr tsTlv.hdr.header_type = ImageTimeStamp::TS_Header_Type; tsTlv.hdr.type = ImageTimeStamp::TS_Tlv_Type; tsTlv.hdr.length = TOOLS_OPEN_TIMESTAMP_SIZE; tsTlv.data.resize(tsTlv.hdr.length); // Init data memset(&tsTlv.data[0], 0, tsTlv.hdr.length); struct tools_open_timestamp tsData; tsData.fw_version = fwVer; tsData.ts_entry = timestamp; tools_open_timestamp_pack(&tsData, &tsTlv.data[0]); _imgTlvOps.addTLV(tsTlv); bool rc = _imgTlvOps.updateFile(); if (!rc) { return (Tlv_Status_t)errmsgWCode(rc, "%s", _imgTlvOps.err()); } return TS_OK; } Tlv_Status_t ImageTimeStamp::queryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning) { (void)queryRunning; aux_tlv tsTlv; struct tools_open_timestamp tsData; memset(&(tsTlv.hdr), 0, sizeof(tsTlv.hdr)); Tlv_Status_t rc = _imgTlvOps.queryTlv(ImageTimeStamp::TS_Tlv_Type, ImageTimeStamp::TS_Header_Type, tsTlv); if (rc) { return (Tlv_Status_t)errmsgWCode(rc, "Failed to query timestamp, Data not found in image"); } if (tsTlv.hdr.major_version != 0) { return (Tlv_Status_t)errmsgWCode(TS_UNKNOWN_TLV_VERSION, "Failed to query timestamp, Unknown timestamp TLV version"); } tools_open_timestamp_unpack(&tsData, &tsTlv.data[0]); timestamp = tsData.ts_entry; fwVer = tsData.fw_version; return TS_OK; } Tlv_Status_t ImageTimeStamp::resetTimeStamp() { Tlv_Status_t rc = _imgTlvOps.removeTlv(ImageTimeStamp::TS_Tlv_Type, ImageTimeStamp::TS_Header_Type); if (rc == TS_OK) { Tlv_Status_t rc = _imgTlvOps.updateFile(); if (!rc) { return (Tlv_Status_t)errmsgWCode(rc, "Failed to reset Timestamp on image, %s", _imgTlvOps.err()); } } return TS_OK; } /* * DeviceTimeStamp class implementation */ Tlv_Status_t DeviceTimeStamp::init() { int rc; // attempt to get running FW TS struct tools_open_mvts mvts; memset(&mvts, 0, sizeof(mvts)); mvts.running_flag = 1; rc = reg_access_mvts(_mf, REG_ACCESS_METHOD_GET, &mvts); if (rc == ME_OK || rc == ME_REG_ACCESS_BAD_CONFIG) { return TS_OK; } return (Tlv_Status_t)errmsgWCode(TS_TIMESTAMPING_NOT_SUPPORTED, "Time stamping not supported by FW"); } Tlv_Status_t DeviceTimeStamp::setTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) { struct tools_open_mvts mvts; memset(&mvts, 0, sizeof(mvts)); mvts.timestamp.fw_version = fwVer; mvts.timestamp.ts_entry = timestamp; int rc = reg_access_mvts(_mf, REG_ACCESS_METHOD_SET, &mvts); rc = (int)convertRc((MError)rc, REG_ACCESS_METHOD_SET); if (rc) { return (Tlv_Status_t)errmsgWCode(rc, "Failed to set timestamp on device, %s", err()); } return TS_OK; } Tlv_Status_t DeviceTimeStamp::queryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning) { struct tools_open_mvts mvts; memset(&mvts, 0, sizeof(mvts)); mvts.running_flag = queryRunning; int rc = reg_access_mvts(_mf, REG_ACCESS_METHOD_GET, &mvts); rc = (int)convertRc((MError)rc, REG_ACCESS_METHOD_GET); if (rc) { return (Tlv_Status_t)errmsgWCode(rc, "Failed to query %s timestamp on device, %s\n", queryRunning ? "current" : "next", err()); } // if timestamp and fw ver are zero entry is invalid struct tools_open_timestamp timestampZeroes; memset(×tampZeroes, 0x0, sizeof(timestampZeroes)); if (!memcmp(&(mvts.timestamp), ×tampZeroes, sizeof(mvts.timestamp))) { return (Tlv_Status_t)errmsgWCode(TS_NO_VALID_TIMESTAMP, "Failed to query %s timestamp, No valid timestamp found", queryRunning ? "current" : "next"); } fwVer = mvts.timestamp.fw_version; timestamp = mvts.timestamp.ts_entry; return TS_OK; } Tlv_Status_t DeviceTimeStamp::resetTimeStamp() { struct tools_open_mvts mvts; memset(&mvts, 0, sizeof(mvts)); mvts.clear_all_ts_flag = 1; int rc = reg_access_mvts(_mf, REG_ACCESS_METHOD_SET, &mvts); rc = (int)convertRc((MError)rc, REG_ACCESS_METHOD_SET); if (rc) { // bad params means command not supported return (Tlv_Status_t)errmsgWCode(rc, "Failed to reset timestamp on device, %s", rc == ME_REG_ACCESS_BAD_CONFIG ? "Bad configuration" : err()); } return TS_OK; } inline Tlv_Status_t DeviceTimeStamp::convertRc(MError rc, int regMethod) { if (rc == ME_OK) { return TS_OK; } if (rc == ME_REG_ACCESS_BAD_PARAM || rc == ME_ICMD_OPERATIONAL_ERROR) { return (Tlv_Status_t)errmsgWCode(TS_TIMESTAMPING_NOT_SUPPORTED, "Time stamping not supported by FW"); } else if (rc == ME_REG_ACCESS_BAD_CONFIG) { return (Tlv_Status_t)errmsgWCode(TS_NO_VALID_TIMESTAMP, regMethod == REG_ACCESS_METHOD_GET ? "No valid timestamp found" : "Timestamp is too old"); } else if (rc == ME_ICMD_UNSUPPORTED_ICMD_VERSION) { return (Tlv_Status_t)errmsgWCode(TS_UNSUPPORTED_ICMD_VERSION, "Unsupported ICMD version"); } return (Tlv_Status_t)errmsgWCode(TS_GENERAL_ERROR, "%s", reg_access_err2str((MError)rc)); } mstflint-4.26.0/mlxfwops/lib/fs5_ops.h0000644000175000017500000000547614522641732020073 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS5_OPS_H #define FS5_OPS_H #include "fs4_ops.h" class Fs5Operations : public Fs4Operations { public: Fs5Operations(FBase* ioAccess) : Fs4Operations(ioAccess){}; ~Fs5Operations(){}; u_int8_t FwType() override; bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false) override; bool GetImageSize(u_int32_t* image_size) override; bool GetImageInfo(u_int8_t* buff) override; protected: bool CheckBoot2(u_int32_t beg, u_int32_t offs, u_int32_t& next, bool fullRead, const char* pref, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL) override; u_int32_t _ncore_bch_ptr; private: bool CheckBoot2(bool fullRead, const char* pref, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); bool Init() override; bool InitHwPtrs(bool isVerify = false) override; bool ParseHwPointers(VerifyCallBack verifyCallBackFunc); bool FsVerifyAux(VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc = false, bool verbose = false) override; }; #endif /* FS5_OPS_H */ mstflint-4.26.0/mlxfwops/lib/fs_checks.cpp0000644000175000017500000001414214522641732020766 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fs_checks.h" #ifndef UEFI_BUILD #include #include #endif const char* FsChecks::AlignmentUserMessage = "An update is needed for the flash layout.\n" "The Operation is not failsafe and terminating the process is not allowed.\n"; const char* FsChecks::ShiftingUserMessage = "Shifting between different image partition sizes requires current image " "to be re-programmed on the flash.\n" "Once the operation is done, " "reload FW and run the command again.\n"; bool FsChecks::ExecuteChecks(FwOperations** devFwOps, FwOperations::ExtBurnParams& burnParams, fw_info_t& devInfo) { bool isFsCtrlOperations = false; u_int8_t fwType = _devFwOps->FwType(); if (fwType != FIT_FS3 && fwType != FIT_FS4) { return true; } if (_devInfo.fs3_info.security_mode & SMM_SECURE_FW) { return true; } FwOperations* tempDevFwOps = _devFwOps; if (tempDevFwOps->IsFsCtrlOperations()) { // Reopen fwops with no fw ctrl isFsCtrlOperations = true; _isItWasFwControlFlow = true; _fwParams.noFwCtrl = true; _fwParams.uefiExtra.dev_info.no_fw_ctrl = true; tempDevFwOps = FwOperations::FwOperationsCreate(_fwParams); if (!tempDevFwOps) { return true; } // We need to query again (no need for rom) fw_info_t devInfo2; if (!tempDevFwOps->FwQuery(&devInfo2, false)) { tempDevFwOps->FwCleanUp(); delete tempDevFwOps; return true; } } // Check if alignment is needed in CX5 if (fwType == FIT_FS4 && (_burnParams.burnFailsafe || (!_burnParams.burnFailsafe && !_burnParams.useImgDevData))) { if (tempDevFwOps->CheckIfAlignmentIsNeeded(_imageFwOps)) { _isAlignmentNeeded = true; if (isFsCtrlOperations) { _isFallBackToRegularFlowNeeded = true; } _isTimeConsumingFixesNeeded = true; } } // Check if we can burn with mcc: if (isFsCtrlOperations && (tempDevFwOps->FwCheckIfWeCanBurnWithFwControl(_imageFwOps) || (_fwParams.hndlType == FHT_UEFI_DEV && _burnParams.allowPsidChange))) { _isFallBackToRegularFlowNeeded = true; } // Check if shifting is needed if (tempDevFwOps->FwCheckIf8MBShiftingNeeded(_imageFwOps, _burnParams)) { _is8MBShiftingNeeded = true; if (isFsCtrlOperations) { _isFallBackToRegularFlowNeeded = true; } _burnParams.shift8MBIfNeeded = true; _isTimeConsumingFixesNeeded = true; } if (isFsCtrlOperations) { if (_isFallBackToRegularFlowNeeded) { // do the query again with queryRom = true memset(&_devInfo, 0, sizeof(_devInfo)); _devQueryRes = tempDevFwOps->FwQuery(&_devInfo); if (!_devQueryRes) { tempDevFwOps->FwCleanUp(); delete tempDevFwOps; return false; } _devFwOps = tempDevFwOps; } else { tempDevFwOps->FwCleanUp(); delete tempDevFwOps; } } UpdateContext(devFwOps, burnParams, devInfo); return true; } void FsChecks::UpdateContext(FwOperations** devFwOps, FwOperations::ExtBurnParams& burnParams, fw_info_t& devInfo) { if (_isFallBackToRegularFlowNeeded) { (*devFwOps)->FwCleanUp(); delete (*devFwOps); (*devFwOps) = _devFwOps; devInfo = _devInfo; } if (_is8MBShiftingNeeded) { burnParams = _burnParams; } } #if !defined(UEFI_BUILD) string AddIdentToString(const string& ident, const string& s) { std::stringstream ss; ss << s; vector lines; while (ss.good()) { string line; getline(ss, line, '\n'); lines.push_back(line); } if (lines.size() == 0) { return s; } string newS = ""; for (size_t i = 0; i < lines.size(); i++) { newS += ident + lines[i] + "\n"; } return newS; } void FsChecks::GetUserQuestions(vector& questions, const string& ident) { if (_is8MBShiftingNeeded) { string question = FsChecks::ShiftingUserMessage; questions.push_back(AddIdentToString(ident, question)); } if (_isAlignmentNeeded) { string question = FsChecks::AlignmentUserMessage; questions.push_back(AddIdentToString(ident, question)); } } #endif mstflint-4.26.0/mlxfwops/lib/signature_manager_factory.h0000644000175000017500000001167214522641732023732 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #pragma once #include "signature_manager.h" #include "dev_mgt/tools_dev_types.h" class SignatureManagerFactory { public: static SignatureManagerFactory* GetInstance() { static SignatureManagerFactory obj; return &obj; } ISignatureManager* CreateSignatureManager(u_int32_t hwDevId, u_int32_t hwRevId) { dm_dev_id_t deviceId = DeviceUnknown; if (dm_get_device_id_offline(hwDevId, hwRevId, &deviceId)) { printf("Failed to identify the device - Can not create SignatureManager!\n"); return (ISignatureManager*)NULL; } if (deviceId == DeviceBlueField) { return new BluefieldFwOperationsSignatureManager(); } else if (deviceId == DeviceConnectX6) { return new ConnectX6FwOperationsSignatureManager(); } else if (deviceId == DeviceConnectX6DX) { return new ConnectX6DXFwOperationsSignatureManager(); } else if (deviceId == DeviceConnectX7) { return new ConnectX7FwOperationsSignatureManager(); } else if (deviceId == DeviceBlueField2) { return new Bluefield2FwOperationsSignatureManager(); } else if (deviceId == DeviceBlueField3) { return new Bluefield3FwOperationsSignatureManager(); } else if (deviceId == DeviceConnectX6LX) { return new ConnectX6LXFwOperationsSignatureManager(); } else if (deviceId == DeviceSpectrum || deviceId == DeviceSpectrum2 || deviceId == DeviceSpectrum3 || deviceId == DeviceQuantum) { return new RavenSwitchSignatureManager(); } else if (deviceId == DeviceQuantum2 || deviceId == DeviceQuantum3 || deviceId == DeviceSpectrum4) { return new SecuredSwitchSignatureManager(); } else { return new FwOperationsSignatureManager(); } } ISignatureManager* CreateSignatureManager(chip_type_t chip) { if (chip == CT_BLUEFIELD) { return new BluefieldFwOperationsSignatureManager(); } else if (chip == CT_CONNECTX6) { return new ConnectX6FwOperationsSignatureManager(); } else if (chip == CT_CONNECTX6DX) { return new ConnectX6DXFwOperationsSignatureManager(); } else if (chip == CT_CONNECTX7) { return new ConnectX7FwOperationsSignatureManager(); } else if (chip == CT_BLUEFIELD2) { return new Bluefield2FwOperationsSignatureManager(); } else if (chip == CT_BLUEFIELD3) { return new Bluefield3FwOperationsSignatureManager(); } else if (chip == CT_CONNECTX6LX) { return new ConnectX6LXFwOperationsSignatureManager(); } else if (chip == CT_GEARBOX) { return new GearBoxSignatureManager(); } else if (chip == CT_QUANTUM || chip == CT_SPECTRUM || chip == CT_SPECTRUM2 || chip == CT_SPECTRUM3) { return new RavenSwitchSignatureManager(); } else if (chip == CT_QUANTUM2 || chip == CT_QUANTUM3 || chip == CT_SPECTRUM4) { return new SecuredSwitchSignatureManager(); } else { return new FwOperationsSignatureManager(); } } }; mstflint-4.26.0/mlxfwops/lib/mlxfwops.cpp0000644000175000017500000003015614522641732020720 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ // #include #include "mlxfwops.h" #include "fw_ops.h" #include "fs_checks.h" #ifdef UEFI_BUILD #include "uefi_c.h" #endif #define ERR_BUFF_SIZE 1024 bool nextBootFwVer = false; MLXFWOP_API int MLXFWOPCALL mlxfw_open_device_adv(mlxfwops_t** mlxfwops_p, fwops_params_t* params) { FwOperations::fw_ops_params_t fwParams; memset(&fwParams, 0, sizeof(fwParams)); fwParams.mstHndl = params->device_name; fwParams.errBuff = params->buf; fwParams.errBuffSize = params->buf_size; fwParams.mccUnsupported = params->mcc_unsupported; fwParams.noFwCtrl = params->no_fw_ctrl; fwParams.hndlType = FHT_MST_DEV; fwParams.forceLock = false; fwParams.readOnly = false; fwParams.numOfBanks = -1; fwParams.ignoreCacheRep = 0; fwParams.noFlashVerify = false; fwParams.flashParams = (flash_params_t*)NULL; fwParams.shortErrors = true; *mlxfwops_p = (mlxfwops_t*)FwOperations::FwOperationsCreate(fwParams); if (*mlxfwops_p == NULL) { return MLXFW_MEM_ERR; } return MLXFW_OK; } int mlxfw_open_int(mlxfwops_t** mlxfwops_p, void* fw_hndl, void* extra, char* psid, fw_hndl_type_t hndl_type, char* err_buf, int buf_size) { *mlxfwops_p = (mlxfwops_t*)FwOperations::FwOperationsCreate((void*)fw_hndl, extra, psid, hndl_type, err_buf, buf_size); if (*mlxfwops_p == NULL) { return MLXFW_MEM_ERR; } return MLXFW_OK; } FwOperations::ExtBurnParams initBurnParams(u_int8_t force_version, f_prog_func prog_func, int allow_psid_change) { FwOperations::ExtBurnParams burnParams = FwOperations::ExtBurnParams(); burnParams.ignoreVersionCheck = force_version; burnParams.progressFunc = prog_func; burnParams.allowPsidChange = allow_psid_change ? true : false; burnParams.shift8MBIfNeeded = true; burnParams.ProgressFuncAdv = {nullptr, nullptr, nullptr}; return burnParams; } MLXFWOP_API int MLXFWOPCALL mlxfw_open_device_verbose(mlxfwops_t** mlxfwops_p, char* device_name, char* buf, int buf_size) { return mlxfw_open_int(mlxfwops_p, device_name, NULL, (char*)NULL, FHT_MST_DEV, buf, buf_size); } MLXFWOP_API int MLXFWOPCALL mlxfw_open_device(mlxfwops_t** mlxfwops_p, char* handle_name) { return mlxfw_open_int(mlxfwops_p, handle_name, NULL, (char*)NULL, FHT_MST_DEV, (char*)NULL, 0); } MLXFWOP_API int MLXFWOPCALL mlxfw_open_image(mlxfwops_t** mlxfwops_p, char* file_name, char* psid) { return mlxfw_open_int(mlxfwops_p, file_name, NULL, psid, FHT_FW_FILE, (char*)NULL, 0); } MLXFWOP_API int MLXFWOPCALL mlxfw_open_buffer(mlxfwops_t** mlxfwops_p, void* buffer, u_int32_t size, char* psid) { return mlxfw_open_int(mlxfwops_p, buffer, &size, psid, FHT_FW_BUFF, (char*)NULL, 0); } #ifdef CABLES_SUPP MLXFWOP_API int MLXFWOPCALL mlxfw_open_cable(mlxfwops_t** mlxfwops_p, char* handle_name, int port) { return mlxfw_open_int(mlxfwops_p, handle_name, &port, (char*)NULL, FHT_CABLE_DEV, (char*)NULL, 0); } #endif #ifdef UEFI_BUILD MLXFWOP_API int MLXFWOPCALL mlxfw_open_uefi(mlxfwops_t** mlxfwops_p, uefi_Dev_t* dev, f_fw_cmd fw_cmd_func, f_dma_alloc dma_func, uefi_dev_info_t* dev_info) { uefi_dev_extra_t dev_extra; memset(&dev_extra, 0, sizeof(dev_extra)); dev_extra.fw_cmd_func = fw_cmd_func; dev_extra.dma_func = dma_func; dev_extra.dev_info = (uefi_dev_info_t)*dev_info; return mlxfw_open_int(mlxfwops_p, dev, (void*)&dev_extra, (char*)NULL, FHT_UEFI_DEV, (char*)NULL, 0); } MLXFWOP_API int MLXFWOPCALL mlxfw_set_print(mlxfwops_t* mlxfwops, f_prog_func_str print_func) { if (mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } return !static_cast((void*)mlxfwops)->FwSetPrint(print_func); } MLXFWOP_API const char* MLXFWOPCALL mlxfw_err2str(int err) { switch (err) { case 0: return ""; case MLXFW_ERR: return "General Error"; case MLXFW_MEM_ERR: return "Memory allocation Error"; case MLXFW_ERR_IN_STR: return "Error in String"; case MLXFW_PSID_MISMATCH_ERR: return "PSID Mismatch"; case MLXFW_FLASH_WRITE_ERR: return "Flash write Failed"; case MLXFW_NO_VALID_IMAGE_ERR: return "No valid image found"; case MLXFW_MULTIPLE_VALID_IMAGES_ERR: return "More than one valid image found"; case MLXFW_BAD_CRC_ERR: return "Bad CRC"; case MLXFW_BAD_CHECKSUM_ERR: return "Bad Checksum"; case MLXFW_SECTION_TOO_LARGE_ERR: return "Section too large"; case MLXFW_SECTION_CORRUPTED_ERR: return "Section is corrupted"; case MLXFW_IMAGE_NOT_FS_ERR: return "Image is not failsafe"; case MLXFW_IMAGE_TOO_LARGE_ERR: return "Image too large"; case MLXFW_IMAGE_FORMAT_ERR: return "Incompatible image format"; case MLXFW_DEVICE_IMAGE_MISMATCH_ERR: return "FW image does not match device"; case MLXFW_IMAGE_CORRUPTED_ERR: return "FW image corrupted"; case MLXFW_FS_INFO_MISMATCH_ERR: return "Failsafe information mismatch"; case MLXFW_DEV_ID_ERR: return "Unsupported device ID"; case MLXFW_UNSUPPORTED_BIN_VER_ERR: return "Unsupported binary version"; case MLXFW_NO_VALID_ITOC_ERR: return "No valid ITOC found"; case MLXFW_NO_MFG_ERR: return "No MFG_INFO section found"; case MLXFW_UNKNOWN_SECT_VER_ERR: return "Unknown Section Version"; case MLXFW_OCR_ERR: return "-ocr flag must be specified"; case MLXFW_OPEN_OCR_ERR: return "Failed to open device for flash direct access"; case MLXFW_FW_ALREADY_UPDATED_ERR: return "FW already updated"; case MLXFW_ROM_UPDATE_IN_IMAGE_ERR: return "Failed to update Exp-ROM in image"; case MLXFW_GET_SECT_ERR: return "Failed to get Section"; case MLXFW_UPDATE_SECT_ERR: return "Failed to update section"; case MLXFW_BAD_PARAM_ERR: return "Bad parameter"; case MLXFW_FS_CHECKS_ERR: return "Fixes are needed for Flash layout, an error occurred while preparing the operation"; default: return "Unknown Error"; } } #endif MLXFWOP_API int MLXFWOPCALL mlxfw_burn(mlxfwops_t* dev_mlxfwops, mlxfwops_t* img_mlxfwops, u_int8_t force_version, f_prog_func prog_func, int allow_psid_change) { if (dev_mlxfwops == NULL || img_mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } FwOperations::ExtBurnParams burnParams = initBurnParams(force_version, prog_func, allow_psid_change); bool rc = !static_cast((void*)dev_mlxfwops) ->FwBurnAdvanced(static_cast((void*)img_mlxfwops), burnParams); int errorCode = static_cast((void*)dev_mlxfwops)->getErrorCode(); // the class's verbose error code return rc ? (errorCode ? errorCode : rc) : rc; } MLXFWOP_API int MLXFWOPCALL mlxfw_fs_check_and_update(fw_info_t* fw_info, mlxfwops_t** dev_mlxfwops_p, mlxfwops_t* img_mlxfwops, u_int8_t force_version, f_prog_func prog_func, int allow_psid_change /*, mlxfwparams_t* fwParams*/) { if (dev_mlxfwops_p == NULL || *dev_mlxfwops_p == NULL || img_mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } mlxfwops_t* dev_mlxfwops = *dev_mlxfwops_p; FwOperations::ExtBurnParams burnParams = initBurnParams(force_version, prog_func, allow_psid_change); FwOperations::fw_ops_params_t fwParams; (static_cast((void*)dev_mlxfwops))->GetFwParams(fwParams); FsChecks fsChecks(*fw_info, static_cast((void*)dev_mlxfwops), static_cast((void*)img_mlxfwops), burnParams, fwParams); if (!fsChecks.ExecuteChecks(static_cast((void*)dev_mlxfwops_p), burnParams, *fw_info)) { return MLXFW_FS_CHECKS_ERR; } return MLXFW_OK; } MLXFWOP_API int MLXFWOPCALL mlxfw_query(mlxfwops_t* mlxfwops, fw_info_t* fw_info) { if (mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } #ifdef UEFI_BUILD // skip reading ROM in UEFI due to performance issues return (static_cast((void*)mlxfwops)->FwQuery(fw_info, false) == true) ? MLXFW_OK : MLXFW_ERR_IN_STR; #else return (static_cast((void*)mlxfwops)->FwQuery(fw_info, true) == true) ? MLXFW_OK : MLXFW_ERR_IN_STR; #endif } MLXFWOP_API const char* MLXFWOPCALL mlxfw_exp_rom_type_to_str(u_int16_t type) { return FwOperations::expRomType2Str(type); } MLXFWOP_API int MLXFWOPCALL mlxfw_verify(mlxfwops_t* mlxfwops) { if (mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } return !static_cast((void*)mlxfwops)->FwVerify((f_prog_func_str)NULL); } MLXFWOP_API int MLXFWOPCALL mlxfw_read_image(mlxfwops_t* mlxfwops, void* image, u_int32_t* image_size) { if (mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } return !(static_cast((void*)mlxfwops)->FwReadData(image, image_size)); } MLXFWOP_API void MLXFWOPCALL mlxfw_close(mlxfwops_t* mlxfwops) { if (mlxfwops) { static_cast((void*)mlxfwops)->FwCleanUp(); delete static_cast((void*)mlxfwops); mlxfwops = (mlxfwops_t*)NULL; } return; } MLXFWOP_API const char* MLXFWOPCALL mlxfw_get_last_error(mlxfwops_t* mlxfwops) { if (mlxfwops == NULL) { return "Cannot get last error - No mlxfwops handle"; } return (static_cast((void*)mlxfwops)->err()); } MLXFWOP_API int MLXFWOPCALL mlxfw_get_last_error_code(mlxfwops_t* mlxfwops) { if (mlxfwops == NULL) { return MLXFW_BAD_PARAM_ERR; } return (static_cast((void*)mlxfwops)->getErrorCode()); } mstflint-4.26.0/mlxfwops/lib/fw_version.cpp0000644000175000017500000002200314522641732021212 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2020 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "fw_version.h" #include #include #include const unsigned short MAX_MINOR_LENGETH = 4; const unsigned short FORMAT0_CIB_MAJOR = 10; const unsigned short FORMAT0_MAX_MINOR_CIB = 10; const unsigned short FORMAT0_SIB_MAJOR = 11; const unsigned short FORMAT0_MAX_MINOR_SIB = 1; const unsigned short FORMAT1_MIN_MINOR = 100; FwVersion::FwVersion() : _major(0), _minor(0), _subminor(0), _devBranchTag("") {} FwVersion::FwVersion(unsigned short int major, unsigned short int minor, unsigned short int subminor, const std::string& devBranchTag) : _major(major), _minor(minor), _subminor(subminor), _devBranchTag(devBranchTag) { } FwVersion::~FwVersion() {} FwVersion::FwVersion(const FwVersion& rhs) : _major(rhs._major), _minor(rhs._minor), _subminor(rhs._subminor), _devBranchTag(rhs._devBranchTag) { } std::string FwVersion::get() const { return get_fw_version(); } FwVersion& FwVersion::operator=(const FwVersion& rhs) { if (this != &rhs) { _major = rhs._major; _minor = rhs._minor; _subminor = rhs._subminor; _devBranchTag = rhs._devBranchTag; } return *this; } bool FwVersion::operator==(const FwVersion& rhs) const { return _major == rhs._major && _minor == rhs._minor && _subminor == rhs._subminor && _devBranchTag == rhs._devBranchTag; } std::ostream& operator<<(std::ostream& os, const FwVersion& fw_ver) { return os << fw_ver.get_fw_version(); } std::string FwVersion::get_fw_version(const std::string& master_format, bool even_subminor, const std::string& not_set) const { if (!is_set()) { return not_set; } if (!is_master_branch()) { return _devBranchTag; } return get_master_version(master_format, even_subminor); } std::string FwVersion::get_master_version(const std::string& format, bool even_subminor) const { char buff[MAX_VERSION_LENGTH + 1]; snprintf(buff, sizeof(buff), format.c_str(), _major, _minor, _subminor - (even_subminor ? _subminor % 2 : 0)); return buff; } bool FwVersion::is_set() const { return _major || _minor || _subminor || !_devBranchTag.empty(); } bool FwVersion::operator!=(const FwVersion& rhs) const { return !(this->operator==(rhs)); } // 13 is Spectrum1 // 15 is SwitchIB2 // 19 is Amos-GB // 21 is Abir-GB // 27 is Quantum // 29 is Spectrum2 // 30 is Spectrum3 // 31 is Quantum2 // 34 is Spectrum4 bool FwVersion::is_switch_or_gb() const { if (_major == 0 && _minor == 0 && _subminor == 0 && !_devBranchTag.empty()) { return true; } if (_major == 11 || _major == 13 || _major == 15 || _major == 27 || _major == 29 || _major == 30 || _major == 31 || _major == 34 || _major == 19 || _major == 21) { return true; } return false; } bool FwVersion::is_master_branch() const { if (!is_switch_or_gb()) { return true; } return _devBranchTag.empty(); } bool FwVersion::are_same_branch(const FwVersion& rhs) const { // one is master other is dev if (is_master_branch() != rhs.is_master_branch()) return false; // both are master if (is_master_branch()) return true; // check if prefix for string is the same return _devBranchTag.substr(0, _devBranchTag.size() - MAX_MINOR_LENGETH) == rhs._devBranchTag.substr(0, rhs._devBranchTag.size() - MAX_MINOR_LENGETH); } int FwVersion::compare_master_version(const FwVersion& rhs) const { if (get_master_format() != rhs.get_master_format()) { // check for old formats return get_master_format() - rhs.get_master_format(); } unsigned short int lhs_master_version[] = {_major, _minor, _subminor}; unsigned short int rhs_master_version[] = {rhs._major, rhs._minor, rhs._subminor}; for (unsigned short i = 0; i < sizeof(lhs_master_version) / sizeof(lhs_master_version[0]); i++) { if (lhs_master_version[i] != rhs_master_version[i]) { return lhs_master_version[i] - rhs_master_version[i]; } } return 0; } int FwVersion::compare(const FwVersion& rhs) const { if (!are_same_branch(rhs)) { throw FwVersionException(); } if (is_master_branch()) { // master branch return compare_master_version(rhs); } // branch version return atoi(_devBranchTag.substr(_devBranchTag.size() - MAX_MINOR_LENGETH, MAX_MINOR_LENGETH).c_str()) - atoi(rhs._devBranchTag.substr(rhs._devBranchTag.size() - MAX_MINOR_LENGETH, MAX_MINOR_LENGETH).c_str()); } int FwVersion::get_master_format() const { if (_minor >= FORMAT1_MIN_MINOR) { return 1; } if ((_major == FORMAT0_CIB_MAJOR && _minor <= FORMAT0_MAX_MINOR_CIB) || (_major == FORMAT0_SIB_MAJOR && _minor <= FORMAT0_MAX_MINOR_SIB)) { return 0; } return 2; } bool FwVersion::operator<(const FwVersion& rhs) const { return compare(rhs) < 0; } bool FwVersion::operator<=(const FwVersion& rhs) const { return compare(rhs) <= 0; } bool FwVersion::operator>(const FwVersion& rhs) const { return compare(rhs) > 0; } bool FwVersion::operator>=(const FwVersion& rhs) const { return compare(rhs) >= 0; } FwVersion* FwVersion::clone() const { return new FwVersion(*this); } ComponentFwVersion::ComponentFwVersion() : _major(0), _minor(0), _subMinor(0), _format(VersionFormat::None) {} ComponentFwVersion::ComponentFwVersion(unsigned short int major, unsigned short int minor) : _major(major), _minor(minor), _subMinor(0), _format(VersionFormat::Minor) { } ComponentFwVersion::ComponentFwVersion(const ComponentFwVersion& rhs) : _major(rhs._major), _minor(rhs._minor), _subMinor(rhs._subMinor), _format(rhs._format) { } ComponentFwVersion& ComponentFwVersion::operator=(const ComponentFwVersion& rhs) { _major = rhs._major; _minor = rhs._minor; _subMinor = rhs._subMinor; _format = rhs._format; return (*this); } std::string ComponentFwVersion::ToString() { std::string fwVersion; switch (_format) { case VersionFormat::SubMinor: fwVersion.insert(0, "." + std::to_string(_subMinor)); case VersionFormat::Minor: fwVersion.insert(0, "." + std::to_string(_minor)); case VersionFormat::Major: fwVersion.insert(0, std::to_string(_major)); break; case VersionFormat::None: default: break; } return fwVersion; } bool ComponentFwVersion::operator==(const ComponentFwVersion& rhs) const { return Compare(rhs) == 0; } bool ComponentFwVersion::operator!=(const ComponentFwVersion& rhs) const { return Compare(rhs) != 0; } bool ComponentFwVersion::operator>(const ComponentFwVersion& rhs) const { return Compare(rhs) > 0; } bool ComponentFwVersion::operator<(const ComponentFwVersion& rhs) const { return Compare(rhs) < 0; } bool ComponentFwVersion::operator>=(const ComponentFwVersion& rhs) const { return Compare(rhs) >= 0; } bool ComponentFwVersion::operator<=(const ComponentFwVersion& rhs) const { return Compare(rhs) <= 0; } int ComponentFwVersion::Compare(const ComponentFwVersion& rhs) const { unsigned short int lhsPrimaryVersion[] = {_major, _minor, _subMinor}; unsigned short int rhsPrimaryVersion[] = {rhs._major, rhs._minor, rhs._subMinor}; for (unsigned short i = 0; i < sizeof(lhsPrimaryVersion) / sizeof(lhsPrimaryVersion[0]); i++) { if (lhsPrimaryVersion[i] != rhsPrimaryVersion[i]) { return lhsPrimaryVersion[i] - rhsPrimaryVersion[i]; } } return 0; } mstflint-4.26.0/mlxfwops/lib/Makefile.am0000644000175000017500000000626414522641732020374 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(srcdir)/components \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/ext_libs/minixz \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mflash \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxfwops/uefi_c \ -I$(top_srcdir)/mtcr_ul \ -I$(top_srcdir)/tools_layouts AM_CPPFLAGS += $(JSON_CFLAGS) AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -Wno-implicit-fallthrough if ENABLE_FWMGR AM_CPPFLAGS += -I$(top_srcdir)/libmfa else AM_CXXFLAGS += -DNO_MFA_SUPPORT endif if ENABLE_OPENSSL else AM_CXXFLAGS += -DNO_OPEN_SSL endif if ENABLE_CS else AM_CXXFLAGS += -DNO_CS_CMD endif noinst_LIBRARIES = libmlxfwops.a libmlxfwops_a_SOURCES = \ aux_tlv_ops.cpp \ aux_tlv_ops.h \ bluefiled_signature_manager.cpp \ connectx6_signature_manager.cpp \ flint_base.cpp \ flint_base.h \ flint_io.cpp \ flint_io.h \ fs_checks.cpp \ fs_checks.h \ fs2_ops.cpp \ fs2_ops.h \ fs3_ops.cpp \ fs3_ops.h \ fs4_ops.cpp \ fs4_ops.h \ fs5_ops.cpp \ fs5_ops.h \ fsctrl_ops.cpp \ fsctrl_ops.h \ fw_ops.cpp \ fw_ops.h\ fw_version.cpp \ mlxfwops_com.h \ mlxfwops.cpp \ mlxfwops.h \ security_version_gw.cpp \ security_version_gw.h \ signature_manager_factory.h \ signature_manager.h \ components/fs_cert_ops.cpp \ components/fs_cert_ops.h \ components/fs_comps_factory.h \ components/fs_comps_ops.cpp \ components/fs_comps_ops.h \ components/fs_synce_ops.cpp \ components/fs_synce_ops.h if ENABLE_DPA AM_CXXFLAGS += -DENABLE_DPA libmlxfwops_a_DEPENDENCIES = $(top_builddir)/mlxdpa/libmstdpa.a endif mstflint-4.26.0/mlxfwops/lib/mlxfwops_com.h0000644000175000017500000003605114522641732021223 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXFWOP_COM_H #define MLXFWOP_COM_H #include #include "tools_layouts/reg_access_hca_layouts.h" #ifdef UEFI_BUILD #include #endif #ifdef __WIN__ #ifdef MLXFWOP_EXPORTS #define MLXFWOP_API __declspec(dllexport) #else #define MLXFWOP_API __declspec(dllimport) #endif #define MLXFWOPCALL __cdecl #else #define MLXFWOP_API #define MLXFWOPCALL #endif #ifndef UEFI_BUILD #define EFIAPI #endif #define SWITCH_IB_HW_ID 583 #define SPECTRUM_HW_ID 585 #define SWITCH_IB2_HW_ID 587 #define QUANTUM_HW_ID 589 #define SPECTRUM2_HW_ID 590 #define SPECTRUM3_HW_ID 592 #define QUANTUM2_HW_ID 599 #define QUANTUM3_HW_ID 603 #define ARCUSE_HW_ID 45568 #define SPECTRUM4_HW_ID 596 #define GEARBOX_HW_ID 594 #define GB_MANAGER_HW_ID 595 #define ABIR_GB_HW_ID 598 #define CX4_HW_ID 521 #define CX4LX_HW_ID 523 #define CX5_HW_ID 525 #define CX6_HW_ID 527 #define CX6DX_HW_ID 530 #define CX6LX_HW_ID 534 #define CX7_HW_ID 536 #define CX8_HW_ID 542 #define BF_HW_ID 529 #define BF2_HW_ID 532 #define BF3_HW_ID 540 #define BF4_HW_ID 544 #define CX3_HW_ID 501 #define CX3_PRO_HW_ID 503 #define CONNECT_IB_HW_ID 511 #define INBAND_MAX_REG_SIZE 44 #define MCDA_REG_HEADER 16 typedef enum { PROG_WITH_PRECENTAGE, PROG_WITHOUT_PRECENTAGE, PROG_STRING_ONLY, PROG_OK } prog_t; typedef enum { PRODUCTION = 0, GA_SECURED = 1, GA_NON_SECURED = 2, RMA = 3, NUM_OF_LIFE_CYCLES = 4 } life_cycle_t; #define MAX_HTOC_ENTRIES_NUM 28 #define HASHES_TABLE_TAIL_SIZE 8 #define HTOC_HASH_SIZE 64 typedef int EFIAPI (*f_prog_func)(int completion); typedef int EFIAPI (*f_prog_func_ex)(int completion, void* opaque); typedef int EFIAPI (*f_prog_func_adv)(int completion, const char* str, prog_t, void* opaque); typedef int (*f_prog_func_str)(char* str); typedef struct { f_prog_func_adv func; void* opaque; f_prog_func uefi_func; } f_prog_func_adv_st; #define VSD_LEN 208 #define PSID_LEN 16 #define PRODUCT_VER_LEN 16 #define PRS_NAME_LEN 100 #define FS3_PRS_NAME_LEN 97 #define FS4_PRS_NAME_LEN 97 #define NAME_LEN 65 #define DESCRIPTION_LEN 257 #define BRANCH_LEN 28 #define MIN_BRANCH_LEN 5 #define FREE_STR_MAX_LEN 256 #define MAX_ROMS_NUM 5 #define MAX_ROM_ERR_MSG_LEN 256 #define ROM_INFO_SIZE 12 // min version that supports Rom Modify #define MAJOR_MOD_ROM_FW 2 #define MINOR_MOD_ROM_FW 6 #define SUBMINOR_MOD_ROM_FW 1410 // Macros #define PRINT_PROGRESS(printFunc, arg) \ do \ { \ if (printFunc) \ { \ printFunc((arg)); \ } \ } while (0) enum { MLXFW_OK = 0, MLXFW_ERR, MLXFW_MEM_ERR, MLXFW_ERR_IN_STR, MLXFW_PSID_MISMATCH_ERR, MLXFW_FLASH_WRITE_ERR, MLXFW_NO_VALID_IMAGE_ERR, MLXFW_MULTIPLE_VALID_IMAGES_ERR, MLXFW_BAD_CRC_ERR, MLXFW_BAD_CHECKSUM_ERR, MLXFW_SECTION_TOO_LARGE_ERR, MLXFW_SECTION_CORRUPTED_ERR, MLXFW_IMAGE_NOT_FS_ERR, MLXFW_IMAGE_TOO_LARGE_ERR, MLXFW_IMAGE_FORMAT_ERR, MLXFW_DEVICE_IMAGE_MISMATCH_ERR, MLXFW_IMAGE_CORRUPTED_ERR, MLXFW_FS_INFO_MISMATCH_ERR, MLXFW_DEV_ID_ERR, MLXFW_UNSUPPORTED_BIN_VER_ERR, MLXFW_NO_VALID_ITOC_ERR, MLXFW_NO_MFG_ERR, MLXFW_UNKNOWN_SECT_VER_ERR, MLXFW_OCR_ERR, MLXFW_OPEN_OCR_ERR, MLXFW_FW_ALREADY_UPDATED_ERR, MLXFW_ROM_UPDATE_IN_IMAGE_ERR, MLXFW_GET_SECT_ERR, MLXFW_UPDATE_SECT_ERR, MLXFW_BAD_PARAM_ERR, MLXFW_PRS_MISMATCH_ERR, MLXFW_NO_VALID_DEVICE_INFO_ERR, MLXFW_TWO_VALID_DEVICE_INFO_ERR, MLXFW_DTOC_OVERWRITE_CHUNK, MLXFW_FLASH_READ_ERR, MLXFW_UNSUPPORTED_PARAM, MLXFW_FS_CHECKS_ERR, /* MCC_EN/Secure Error Codes */ MLXFW_BURN_REJECTED_DIGEST_ERR, MLXFW_BURN_REJECTED_NOT_APPLICABLE, MLXFW_BURN_REJECTED_UNKNOWN_KEY, MLXFW_BURN_REJECTED_AUTH_FAILED, MLXFW_BURN_REJECTED_UNSIGNED, MLXFW_BURN_REJECTED_KEY_NOT_APPLICABLE, MLXFW_BURN_REJECTED_BAD_FORMAT, MLXFW_BURN_BLOCKED_PENDING_RESET, MLXFW_FSM_UNEXPECTED_STATE, MLXFW_REJECTED_NOT_A_SECURED_FW, MLXFW_REJECTED_MFG_BASE_MAC_NOT_LISTED, MLXFW_REJECTED_NO_DEBUG_TOKEN, MLXFW_REJECTED_VERSION_NUM_MISMATCH, MLXFW_REJECTED_USER_TIMESTAMP_MISMATCH, MLXFW_REJECTED_FORBIDDEN_VERSION, MLXFW_FLASH_ERASE_ERROR, MLXFW_MISSING_IMAGE_SIGNATURE, MLXFW_REJECTED_IMAGE_CAN_NOT_BOOT_FROM_PARTITION, /* ********************/ /* IMAGE REACTIVATION RELATED ERRORS */ MLXFW_IMAGE_REACTIVATION_PROHIBITED_FW_VER_ERR, MLXFW_IMAGE_RACTIVATION_FIRST_PAGE_COPY_FAILED, MLXFW_IMAGE_REACTIVATION_FIRST_PAGE_ERASE_FAILED, MLXFW_IMAGE_REACTIVATION_FIRST_PAGE_RESTORE_FAILED, MLXFW_IMAGE_REACTIVATION_FW_DEACTIVATION_FAILED, MLXFW_IMAGE_REACTIVATION_FW_ALREADY_ACTIVATED, MLXFW_IMAGE_REACTIVATION_ERROR_DEVICE_RESET_REQUIRED, MLXFW_IMAGE_REACTIVATION_FW_PROGRAMMING_NEEDED, MLXFW_IMAGE_REACTIVATION_FW_NOT_SUPPORTING, MLXFW_IMAGE_REACTIVATION_UNKNOWN_ERROR }; enum { GUIDS = 4, MACS = 2, MAX_GUIDS = 32 }; // needed for flint query enum { BX_NP_GUIDS = 2, BX_SYS_GUIDS = 1, BX_GUIDS = BX_NP_GUIDS + BX_SYS_GUIDS, BX_IMACS = 3, BX_EMACS = 4, BX_MACS = BX_EMACS + BX_IMACS, BX_WWPNS = 4, BX_WWNNS = 1, BX_SLICE_GUIDS = BX_WWNNS + BX_WWPNS + BX_MACS + BX_NP_GUIDS, BX_ALL_GUIDS = (2 * BX_SLICE_GUIDS) + BX_SYS_GUIDS, BX_SLICES_NUM = 2, }; enum { BI_IMACS = 0, BI_EMACS = BI_IMACS + BX_IMACS, BI_WWPNS = BI_EMACS + BX_EMACS, BI_GUIDS = BI_WWPNS + BX_WWPNS, BI_WWNNS = BI_GUIDS + BX_NP_GUIDS, BI_SYS_GUID = BX_ALL_GUIDS - 1, }; typedef enum security_mode_mask { SMM_MCC_EN = 0x1, SMM_DEBUG_FW = 0x1 << 1, SMM_SIGNED_FW = 0x1 << 2, SMM_SECURE_FW = 0x1 << 3, SMM_DEV_FW = 0x1 << 4, SMM_CS_TOKEN = 0x1 << 5, SMM_DBG_TOKEN = 0x1 << 6, SMM_CRYTO_TO_COMMISSIONING = 0x1 << 7, SMM_RMCS_TOKEN = 0x1 << 8, SMM_RMDT_TOKEN = 0x1 << 9 } security_mode_mask_t; typedef enum security_mode { SM_NONE = 0x0, SM_SHA_DIGEST = SMM_MCC_EN, SM_SIGNED_IMAGE = SMM_MCC_EN | SMM_SIGNED_FW, SM_SECURE_FW = SMM_MCC_EN | SMM_SIGNED_FW | SMM_SECURE_FW, SM_DEBUG_FW = SMM_MCC_EN | SMM_SIGNED_FW | SMM_SECURE_FW | SMM_DEBUG_FW } security_mode_t; typedef enum chip_type { CT_UNKNOWN = 0, CT_CONNECTX, CT_CONNECT_IB, CT_SWITCH_IB, CT_SPECTRUM, CT_CONNECTX4, CT_CONNECTX4_LX, CT_SWITCH_IB2, CT_CONNECTX5, CT_CONNECTX6, CT_BLUEFIELD, CT_QUANTUM, CT_SPECTRUM2, CT_CONNECTX6DX, CT_CONNECTX6LX, CT_CONNECTX7, CT_CONNECTX8, CT_SPECTRUM3, CT_BLUEFIELD2, CT_BLUEFIELD3, CT_BLUEFIELD4, CT_CONNECTX3, CT_QUANTUM2, CT_QUANTUM3, CT_SPECTRUM4, CT_GEARBOX, CT_GEARBOX_MGR, CT_ABIR_GEARBOX, CT_ARCUSE } chip_type_t; #define IS_HCA(chipType) \ (((chipType) == CT_CONNECTX) || ((chipType) == CT_CONNECT_IB) || ((chipType) == CT_CONNECTX4) || \ ((chipType) == CT_CONNECTX4_LX) || ((chipType) == CT_CONNECTX5) || ((chipType) == CT_CONNECTX6) || \ ((chipType) == CT_CONNECTX6DX) || ((chipType) == CT_CONNECTX6LX) || ((chipType) == CT_CONNECTX7) || \ ((chipType) == CT_CONNECTX8) || ((chipType) == CT_BLUEFIELD) || ((chipType) == CT_BLUEFIELD2) || \ ((chipType) == CT_BLUEFIELD3) || ((chipType) == CT_BLUEFIELD4)) typedef enum chip_family_type { CFT_UNKNOWN = 0, CFT_HCA, CFT_SWITCH, CFT_GEARBOX } chip_family_type_t; typedef struct guid { u_int32_t h; u_int32_t l; } guid_t; typedef guid_t hw_key_t; typedef struct fs3_uid { guid_t base_guid; int base_guid_specified; guid_t base_mac; int base_mac_specified; u_int8_t num_of_guids; // set 0 for default u_int8_t step_size; // set 0 for default, not relevant for devices >= CX4 int set_mac_from_guid; // if set , base_mac will be derrived automatically from base guid int use_pp_attr; // if set, num_of_guids[2] and step_size[2] will be used for the uid attributes. u_int16_t num_of_guids_pp[2]; // set 0xffff for default u_int8_t step_size_pp[2]; // set 0xff for default, not relevant for devices >= CX4 } fs3_uid_t; typedef struct fs4_uid { guid_t base_guid; int base_guid_specified; guid_t base_mac; int base_mac_specified; u_int8_t num_of_guids; // set 0 for default u_int8_t step_size; // set 0 for default, not relevant for devices >= CX4 int set_mac_from_guid; // if set , base_mac will be derrived automatically from base guid int use_pp_attr; // if set, num_of_guids[2] and step_size[2] will be used for the uid attributes. u_int8_t num_of_guids_pp[2]; // set 0xff for default u_int8_t step_size_pp[2]; // set 0xff for default, not relevant for devices >= CX4 } fs4_uid_t; typedef struct rom_info { u_int16_t exp_rom_product_id; // 0 - invalid. u_int16_t exp_rom_ver[3]; u_int16_t exp_rom_dev_id; u_int8_t exp_rom_port; u_int8_t exp_rom_proto; u_int8_t exp_rom_num_ver_fields; u_int8_t exp_rom_supp_cpu_arch; // char expRomFreestr[FREE_STR_MAX_LEN]; } rom_info_t; struct fs3_uid_entry { u_int8_t num_allocated; u_int8_t step; // not relevant for devices >= CX4 u_int64_t uid; }; struct fs4_uid_entry { u_int8_t num_allocated; u_int8_t step; // not relevant for devices >= CX4 u_int8_t num_allocated_msb; u_int64_t uid; }; typedef struct cibfw_uids { struct fs3_uid_entry guids[2]; struct fs3_uid_entry macs[2]; } cib_uids_t; typedef struct cx4fw_uids { struct fs3_uid_entry base_guid; struct fs3_uid_entry base_mac; } cx4_uids_t; typedef struct { struct fs4_uid_entry base_guid; struct fs4_uid_entry base_mac; } image_layout_uids_t; typedef struct uids { int valid_field; // 0: cib_uids , 1: image_layout_uids union { cib_uids_t cib_uids; cx4_uids_t cx4_uids; // keeping this member for neohost image_layout_uids_t image_layout_uids; }; } uids_t; typedef enum { NOT_VALID, DIRECT_ACCESS, MFSV } device_security_version_access_method_t; typedef struct fs3_info_ext { u_int8_t guids_override_en; uids_t fs3_uids_info; uids_t orig_fs3_uids_info; char image_vsd[VSD_LEN + 1]; char orig_psid[PSID_LEN + 1]; char prs_name[FS3_PRS_NAME_LEN]; char orig_prs_name[FS3_PRS_NAME_LEN]; char name[NAME_LEN]; char description[DESCRIPTION_LEN]; u_int32_t security_mode; u_int8_t mcc_en; char deviceVsd[VSD_LEN + 1]; bool sec_boot; life_cycle_t life_cycle; bool encryption; bool dev_sec_boot; // security version (for fs4) u_int32_t image_security_version; device_security_version_access_method_t device_security_version_access_method; u_int32_t device_security_version_gw; struct reg_access_hca_mfsv_reg_ext device_security_version_mfsv; int global_image_status; } fs3_info_t; // typedef struct fs3_info_ext fs4_info_t; typedef struct fs2_info_ext { guid_t guids[MAX_GUIDS]; u_int32_t guid_num; u_int32_t config_sectors; u_int32_t config_pad; u_int8_t access_key_exists; guid_t access_key_value; u_int8_t blank_guids; char prs_name[PRS_NAME_LEN]; } fs2_info_t; #ifdef CABLES_SUPP typedef struct cablefw_info_ext { u_int8_t fw_gw_revision[2]; u_int16_t fw_dev_id; u_int32_t fw_revision; u_int8_t image_key; } cablefw_info_t; #endif typedef struct roms_info { u_int8_t exp_rom_found; u_int8_t num_of_exp_rom; u_int8_t no_rom_checksum; u_int16_t exp_rom_com_devid; u_int8_t exp_rom_warning; char exp_rom_warning_msg[MAX_ROM_ERR_MSG_LEN]; u_int8_t exp_rom_err_msg_valid; char exp_rom_err_msg[MAX_ROM_ERR_MSG_LEN]; rom_info_t rom_info[MAX_ROMS_NUM]; } roms_info_t; typedef struct fw_info_com { char psid[PSID_LEN + 1]; u_int8_t vsd_sect_found; // relevant to FS2 image only char vsd[VSD_LEN + 1]; char product_ver[PRODUCT_VER_LEN + 1]; u_int16_t fw_ver[3]; u_int16_t fw_rel_date[3]; u_int8_t fw_rel_time[3]; u_int16_t min_fit_ver[4]; u_int16_t mic_ver[3]; u_int32_t image_size; u_int16_t isfu_major; u_int16_t dev_type; u_int8_t dev_rev; u_int16_t vsd_vendor_id; u_int8_t is_failsafe; chip_type_t chip_type; roms_info_t roms_info; u_int16_t running_fw_ver[3]; u_int8_t image_info_minor_version; u_int8_t image_info_major_version; u_int16_t pci_device_id; char branch_ver[BRANCH_LEN + 1]; char running_branch_ver[BRANCH_LEN + 1]; u_int8_t encrypted_fw; u_int32_t burn_image_size; //! Be aware! This field is backward compatible starting from BB/CX-7 //! Use this field only for encrypted images } fw_info_com_t; typedef struct fw_info_ext { u_int8_t fw_type; fw_info_com_t fw_info; fs2_info_t fs2_info; fs3_info_t fs3_info; #ifdef CABLES_SUPP cablefw_info_t cablefw_info; #endif // fs3_info_t fs4_info; } fw_info_t; typedef enum fw_hndl_type { FHT_MST_DEV, FHT_FW_FILE, FHT_UEFI_DEV, FHT_FW_BUFF, FHT_CABLE_DEV, } fw_hndl_type_t; typedef enum fw_img_type { FIT_FS2 = 0, FIT_FS3 = 1, FIT_FC1 = 2, FIT_FS4 = 3, FIT_FSCTRL = 4, FIT_FS5 = 5, FIT_COMPS = 6 } fw_img_type_t; enum ExpRomProto { ER_IB = 0, ER_ETH = 1, ER_VPI = 2 }; enum ExpRomCpuArch { ERC_UNSPECIFIED = 0, ERC_AMD64 = 1, ERC_AARCH64 = 2, ERC_AMD64_AARCH64 = 3, ERC_IA32 = 4 }; typedef enum fw_ver_info { FVI_SMALLER = -1, FVI_EQUAL = 0, FVI_GREATER = 1, } fw_ver_info_t; #endif mstflint-4.26.0/mlxfwops/lib/flint_base.h0000644000175000017500000005433514522641732020621 0ustar tzafrirctzafrirc/* * * flint_base.h - FLash INTerface * * Copyright (c) 2011 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id: flint_base.h 7522 2011-11-16 15:37:21Z mohammad $ * */ #ifndef FLINT_BASE_H #define FLINT_BASE_H #ifndef UEFI_BUILD #ifndef __FreeBSD__ #include #endif #else #include "uefi_c.h" #endif #if defined __FreeBSD__ #include #endif #include #include "tools_version.h" #ifndef __WIN__ // // GCC Compiler // #if defined __DJGPP__ // // DJGPP - GCC PORT TO MS DOS // #include // This contains the u_* types definitions #include #include #define bswap_32(x) ntohl(x) // djgpp stdio does not define vsnprintf. I simply call vsprintf (and pray ...) #define vsnprintf(buf, len, format, args) (vsprintf(buf, format, args)) #define snprintf(buf, len, format, args...) (sprintf(buf, format, args)) #endif // __DJGPP__ #else // __WIN__ // // Windows (Under DDK) // #include // Sleep adaptor #define usleep(x) Sleep((x) / 1000) #define sleep(x) Sleep((x)*1000) #define vsnprintf _vsnprintf #define isatty _isatty // MINGW #if defined(__MINGW32__) || (__MINGW64__) #define _UNISTD_H // Zlib includes unistd.h which causes some compilation errors. #else #define strtoull _strtoui64 #endif #endif // __WIN__ #include #include #include "mlxfwops_com.h" static inline void be_guid_to_cpu(guid_t* to, guid_t* from) { to->h = __be32_to_cpu(from->h); to->l = __be32_to_cpu(from->l); } namespace std { }; using namespace std; #define TOCPU1(s) s = __be32_to_cpu((u_int32_t)(s)); #define CPUTO1(s) s = __cpu_to_be32((u_int32_t)(s)); #define TOCPU(s) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < sizeof(*s) / sizeof(u_int32_t); ii++, p++) \ *p = __be32_to_cpu(*p); \ } while (0) #define TOCPUn(s, n) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < (n); ii++, p++) \ *p = __be32_to_cpu(*p); \ } while (0) #define CPUTOn(s, n) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < (n); ii++, p++) \ *p = __cpu_to_be32(*p); \ } while (0) #define TOCPUBY(s) \ do \ { \ u_int32_t* p = (u_int32_t*)(&s); \ for (u_int32_t ii = 0; ii < sizeof(s) / sizeof(u_int32_t); ii++, p++) \ *p = __be32_to_cpu(*p); \ } while (0) #define CPUTOBY(s) \ do \ { \ u_int32_t* p = (u_int32_t*)(&s); \ for (u_int32_t ii = 0; ii < sizeof(s) / sizeof(u_int32_t); ii++, p++) \ *p = __cpu_to_be32(*p); \ } while (0) #define TOCPUBY64(s) \ do \ { \ guid_t* p = s; \ for (unsigned ii = 0; ii < sizeof(s) / sizeof(guid_t); ii++, p++) \ be_guid_to_cpu(p, p); \ } while (0) #define CRC(c, s) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < sizeof(s) / sizeof(u_int32_t); ii++) \ c << *p++; \ } while (0) #define CRCn(c, s, n) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < (n); ii++) \ c << *p++; \ } while (0) #define CRCBY(c, s) \ do \ { \ u_int32_t* p = (u_int32_t*)(&s); \ for (u_int32_t ii = 0; ii < sizeof(s) / sizeof(u_int32_t); ii++) \ c << *p++; \ } while (0) #define CRC1(c, s) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < sizeof(s) / sizeof(u_int32_t) - 1; ii++) \ c << *p++; \ } while (0) #define CRC1n(c, s, n) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < (n)-1; ii++) \ c << *p++; \ } while (0) #define CRC1BY(c, s) \ do \ { \ u_int32_t* p = (u_int32_t*)(&s); \ for (u_int32_t ii = 0; ii < sizeof(s) / sizeof(u_int32_t) - 1; ii++) \ c << *p++; \ } while (0) #define CHECKB2(b, o, n, f, p, fp) \ do \ { \ if (!CheckBoot2(b, o, n, f, p, fp)) \ { \ return false; \ } \ } while (0) #define FS3_CHECKB2(b, o, f, p, i) \ { \ u_int32_t n; \ if (!CheckBoot2(b, o, n, f, p, i)) \ { \ return false; \ } \ } #define CHECKGN(b, o, n, p, fp) \ do \ { \ if (!checkGen(b, o, n, p, fp)) \ { \ return false; \ } \ } while (0) #define CHECKLS(o, s, p) \ do \ { \ if (!checkList(o, s, p)) \ { \ return false; \ } \ } while (0) #define READ4(f, o, d, p) \ do \ { \ if (!f.read(o, d)) \ { \ return errmsg("%s - read error (%s)\n", p, f.err()); \ } \ } while (0) #define READ4_NOERRMSG(f, o, d) \ do \ { \ if (!f.read(o, d)) \ { \ return false; \ } \ } while (0) #define READBUF(f, o, d, l, p) \ do \ { \ if (!f.read(o, d, l)) \ { \ return errmsg("%s - read error (%s)\n", p, f.err()); \ } \ } while (0) #define READALLOCBUF(f, o, d, l, p) \ do \ { \ d = (u_int8_t*)calloc(l, sizeof(u_int8_t)); \ if (!f.read(o, d, l)) \ { \ free(d); \ return errmsg("%s - read error (%s)\n", p, f.err()); \ } \ } while (0) #define FS2_BOOT_START 0x38 #define FS_DATA_OFF 0x28 #define CONNECT_IB_SW_ID 4113 // FS3 defines #define FS3_BOOT_START FS2_BOOT_START #define FS3_BOOT_START_IN_DW FS3_BOOT_START / 4 // FS4 defines #define FS4_HW_PTR_START 0x18 #define CRC_CHECK_OLD "%s /0x%08x-0x%08x (0x%06x)/ (%s" #define MAX_NUM_SUPP_HW_IDS 200 #define MAX_NUM_SUPP_HW_LIST_STR (MAX_NUM_SUPP_HW_IDS * 40) #define MAC_SPACES " " #define GUID_SPACES " " #define GUID_FORMAT "%8.8x%8.8x" #define MAC_FORMAT "%4.4x%8.8x" #define FLINT_LOG_ENV "FLINT_LOG_FILE" #define IMG_CRC_OFF 0x20 #define MAX_ERR_STR_LEN 1024 #define MLXCONFIG_CMD "config" enum { SIGNATURE = 0x5a445a44, MELLANOX_VENDOR_ID = 0x15b3 }; enum SectionType { H_FIRST = 1, H_DDR = 1, H_CNF = 2, H_JMP = 3, H_EMT = 4, H_ROM = 5, H_GUID = 6, H_BOARD_ID = 7, H_USER_DATA = 8, H_FW_CONF = 9, H_IMG_INFO = 10, H_DDRZ = 11, H_HASH_FILE = 12, H_LAST }; /* Description - Section ID Section Type DESCRIPTION\;0x1 BOOT_CODE FW loader code\;0x2 PCI_CODE Code that is required * to raise PCIe link.\; 0x3 MAIN_CODE All non-PCIe FW code\;0x8 HW_BOOT_CFG Initial values for the PCI related * registers\;0x9 HW_MAIN_CFG Initial values for all other registers \;0x10 IMAGE_INFO Management data for the burning * tool. See 'Image Info Section' chapter in the Mellanox Flash Programming * Application Note\;0x11 FW_BOOT_CFG Initial values for user set-able hi level non-hardware related settings, such as * number of physical functions\ * ;(optional)\;0x12 FW_MAIN_CFG Initial values for user set-able hi level non-hardware related * settings.\;(optional)\;0x18 ROM_CODE PXE/Boot over IB code. * \;0x30 DBG_LOG_MAP FW logger 'index to string' map. The map is in ASCI text. Format is TBD.\; * PARAM0 in the iTOC specifies the compression method of this sector:\; 0. * Uncompressed\; * 1. Zlib compress2()\; 2. LZMA\; Others - Reserved \;0x31 DBG_FW_INI The * Ini file used in the image generation. The PARAM0 applies the same as in DBG_LOG_MAP section type.\;0x32 * DBG_FW_PARAMS FW settable parameters. ASCII text. Format is TBD. The PARAM0 applies the same as in DBG_LOG_MAP * section type.\;0xff END_MARKER A type of 0xff marks the end of the iTOC entries * array. It is recommended to leave the unused part of the iTOC section blank (that is, 0xff in all unused * bytes)\;All other values Reserved \; */ typedef enum fs3_section { FS3_BOOT_CODE = 0x1, FS3_PCI_CODE = 0x2, FS3_MAIN_CODE = 0x3, FS3_PCIE_LINK_CODE = 0x4, FS3_IRON_PREP_CODE = 0x5, FS3_POST_IRON_BOOT_CODE = 0x6, FS3_UPGRADE_CODE = 0x7, FS3_HW_BOOT_CFG = 0x8, FS3_HW_MAIN_CFG = 0x9, FS3_PHY_UC_CODE = 0xa, FS3_PHY_UC_CONSTS = 0xb, FS3_PCIE_PHY_UC_CODE = 0xc, FS3_CCIR_INFRA_CODE = 0xd, FS3_CCIR_ALGO_CODE = 0xe, FS4_BOOT3_CODE = 0xf, FS3_IMAGE_INFO = 0x10, FS3_FW_BOOT_CFG = 0x11, FS3_FW_MAIN_CFG = 0x12, FS3_APU_KERNEL = 0x14, FS3_ACE_CODE = 0x15, FS3_ROM_CODE = 0x18, FS3_RESET_INFO = 0x20, FS3_DBG_FW_INI = 0x30, FS3_DBG_FW_PARAMS = 0x32, FS3_FW_ADB = 0x33, FS4_GB_FW_CODE = 0x34, FS4_TILE_FW_CODE = 0x35, FS4_FW_TILE_INI = 0x36, FS4_HW_TILE_INI = 0x37, FS3_IMAGE_SIGNATURE_256 = 0xa0, FS3_PUBLIC_KEYS_2048 = 0xa1, FS3_FORBIDDEN_VERSIONS = 0xa2, FS3_IMAGE_SIGNATURE_512 = 0xa3, FS3_PUBLIC_KEYS_4096 = 0xa4, FS3_HMAC_DIGEST = 0xa5, FS4_RSA_PUBLIC_KEY = 0xa6, FS4_RSA_4096_SIGNATURES = 0xa7, FS4_EXCLKSYNC_INFO = 0xb0, FS4_MAIN_HASHES_PAGES = 0xb1, FS4_MAIN_LOCKED_HASHES_PAGES = 0xb2, FS3_MFG_INFO = 0xe0, FS3_DEV_INFO = 0xe1, FS3_NV_DATA1 = 0xe2, FS3_VPD_R0 = 0xe3, FS3_NV_DATA2 = 0xe4, FS3_FW_NV_LOG = 0xe5, FS3_NV_DATA0 = 0xe6, // replaces FS3_NV_DATA1 FS4_DEV_INFO1 = 0xe7, FS4_DEV_INFO2 = 0xe8, FS3_CRDUMP_MASK_DATA = 0xe9, FS4_FW_INTERNAL_USAGE = 0xea, FS4_PROGRAMMABLE_HW_FW1 = 0xeb, FS4_PROGRAMMABLE_HW_FW2 = 0xec, FS4_DIGITAL_CERT_PTR = 0xed, FS4_DIGITAL_CERT_RW = 0xee, FS4_LC_INI1_TABLE = 0xef, FS4_LC_INI2_TABLE = 0xf0, FS4_LC_INI_NV_DATA = 0xf1, FS4_CERT_CHAIN_0 = 0xf2, FS4_DIGITAL_CACERT_RW = 0xf3, FS4_CERTIFICATE_CHAINS_1 = 0xf4, FS4_CERTIFICATE_CHAINS_2 = 0xf5, FS4_ROOT_CERTIFICATES_1 = 0xf6, FS4_ROOT_CERTIFICATES_2 = 0xf7, FS4_HASHES_TABLE = 0xfa, FS4_HW_PTR = 0xfb, FS4_TOOLS_AREA = 0xfc, FS3_ITOC = 0xfd, FS3_DTOC = 0xfe, FS3_END = 0xff, } fs3_section_t; enum CommandType { CMD_UNKNOWN, CMD_BURN, CMD_SET_GUIDS, CMD_SET_VSD, CMD_BURN_BLOCK, CMD_QUERY, CMD_QUERY_ROM, CMD_QUERY_FORCE, CMD_VERIFY, CMD_READ_WORD, CMD_READ_BLOCK, CMD_WRITE_WORD, CMD_WRITE_WORD_NE, CMD_WRITE_BLOCK, CMD_WRITE_BLOCK_NE, CMD_ERASE_SECT, CMD_DUMP_CONF, CMD_DUMP_HASH, CMD_DUMP_JSON, CMD_READ_IMAGE, CMD_CFI, CMD_CLEAR_SEM, CMD_SWRESET, CMD_BURN_ROM, CMD_REMOVE_ROM, CMD_READ_ROM, CMD_SET_KEY, CMD_HW_ACCESS, CMD_CONFIG, CMD_DUMP_TRACER_HASH, CMD_HW_INFO, CMD_SET_MFG_GUIDS, CMD_BURN_VPD, CMD_SET_SIGNATURE, CMD_SET_PUBLIC_KEYS, CMD_SET_FORBIDDEN_VERSIONS, CMD_SET_HMAC, CMD_SET_PUBLIC_4096_RSA_KEY }; struct GPH { u_int32_t type; u_int32_t size; u_int32_t param; u_int32_t next; }; #define MAX_SECTION_SIZE 0x400000 #define REBOOT_REQUIRED_STR "To load new FW run reboot machine." #ifndef MST_UL #define REBOOT_OR_FWRESET_REQUIRED_STR "To load new FW run mlxfwreset or reboot machine." #else #define REBOOT_OR_FWRESET_REQUIRED_STR "To load new FW run mstfwreset or reboot machine." #endif void report(const char* format, ...); void report_callback(f_prog_func_str func_str, const char* format, ...); void report_err(char err_buff[MAX_ERR_STR_LEN], const char* format, ...); void report_warn(const char* format, ...); void report_repair_msg(const char* common_msg); //////////////////////////////////////////////////////////////////////////////////////////////////////////// // BASE CLASSES //////////////////////////////////////////////////////////////////////////////////////////////////////////// class MLXFWOP_API FlintErrMsg { public: FlintErrMsg() : _err(0), _errCode(0) {} ~FlintErrMsg() { err_clear(); } const char* err() const { return _err; } void err_clear(); int getErrorCode() { return _errCode; } protected: char* vprint(const char* format, va_list args) { const int INIT_VAL = 1024; int max_str, max_buf = INIT_VAL; char* out_buf; while (1) { out_buf = new char[max_buf]; max_str = max_buf - 1; if (vsnprintf(out_buf, max_str, format, args) < max_str) { return out_buf; } delete[] out_buf; max_buf *= 2; } } bool errmsg(const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 2, 3))) #endif ; bool errmsg(int errorCode, const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 3, 4))) #endif ; // this is abit ugly as there are no checks on the normalFmt string bool errmsgAdv(bool showAdv, const char* normalFmt, const char* AdvFmt, ...) #ifdef __GNUC__ __attribute__((format(printf, 4, 5))) #endif ; int errmsgWCode(int errorCode, const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 3, 4))) #endif ; private: char* _err; int _errCode; }; //////////////////////////////////////////////////////////////////////// // // // ****************************************************************** // // CRC16 CALCULATION // // ****************************************************************** // // // //////////////////////////////////////////////////////////////////////// class Crc16 { public: Crc16(bool d = false) : _debug(d) { clear(); } u_int16_t get() { return _crc; } void clear() { _crc = 0xffff; } void operator<<(u_int32_t val) { add(val); } void add(u_int32_t val); void finish(); private: u_int16_t _crc; bool _debug; }; class u_int32_ba { public: u_int32_ba(u_int32_t i = 0) : _bits(i), _rbits(_bits), _sptr1(0), _eptr(31) {} u_int32_ba operator[](u_int32_t idx) { return range((u_int8_t)idx, (u_int8_t)idx); } u_int32_ba& operator=(u_int32_t i) { _rbits = ((i << _sptr1) & mask()) | (_rbits & ~mask()); return *this; } u_int32_t* operator&() { return &_bits; } operator u_int32_t() { return ((mask() & _rbits) >> _sptr1); } u_int32_ba range(u_int8_t eptr, u_int8_t sptr) { return u_int32_ba(*this, eptr, sptr); } private: u_int32_ba(u_int32_ba& other, u_int8_t eptr, u_int8_t sptr) : _bits(other._bits), _rbits(other._bits), _sptr1(sptr), _eptr(eptr) { } u_int32_t mask() { u_int32_t s_msk = (u_int32_t)-1; // start mask u_int32_t e_msk = (u_int32_t)-1; // end mask s_msk = (s_msk << _sptr1); e_msk = (_eptr >= (sizeof(_bits) * 8 - 1)) ? e_msk : ~(e_msk << (_eptr + 1)); return (s_msk & e_msk); }; u_int32_t _bits; u_int32_t& _rbits; u_int8_t _sptr1; u_int8_t _eptr; }; ////////////////////////////////////////////////////////////////////// // // class Aligner: // A utillity class for accessing an addr/size region // in a specific alignment. // If a 0 alignment is given, infinity (no alignment requirements) // is assumed - This is to support single flow for the caller. // ////////////////////////////////////////////////////////////////////// class Aligner { public: Aligner(u_int32_t log2_alignment_size) : _curr_addr(0), _curr_size(0), _log2_alignment_size(log2_alignment_size), _alignment_size(1 << log2_alignment_size), _alignment_mask(_alignment_size - 1) { if (_log2_alignment_size == 0) { _log2_alignment_size = 31; _alignment_size = 1 << _log2_alignment_size; _alignment_mask = _alignment_size - 1; } } void Init(u_int32_t addr, u_int32_t size) { _curr_addr = addr; _curr_size = size; } bool GetNextChunk(u_int32_t& chunk_addr, u_int32_t& chunk_size) { if (_curr_size == 0) { return false; } chunk_addr = _curr_addr; if ((_curr_addr >> _log2_alignment_size) != ((_curr_addr + _curr_size) >> _log2_alignment_size)) { // Next chunk crosses alignment boundary chunk_size = _alignment_size - (_curr_addr & _alignment_mask); } else { chunk_size = _curr_size; } _curr_addr += chunk_size; _curr_size -= chunk_size; return true; } private: u_int32_t _curr_addr; u_int32_t _curr_size; u_int32_t _log2_alignment_size; u_int32_t _alignment_size; u_int32_t _alignment_mask; }; #endif mstflint-4.26.0/mlxfwops/lib/fs2_ops.h0000644000175000017500000002440614522641732020062 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef FS2_OPS_ #define FS2_OPS_ #include "fw_ops.h" #define FULL_VERIFY 0xff class Fs2Operations : public FwOperations { public: Fs2Operations(FBase* ioAccess) : FwOperations(ioAccess), _burnBlankGuids(false), _isFullVerify(false){}; virtual ~Fs2Operations(){}; // virtual void print_type() {}; virtual bool FwQuery(fw_info_t* fwInfo, bool readRom = true, bool isStripedImage = false, bool quickQuery = true, bool ignoreDToc = false, bool verbose = false); virtual bool FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage = false, bool showItoc = false, bool ignoreDToc = false); virtual bool FwBurn(FwOperations* imageOps, u_int8_t forceVersion, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwBurnAdvanced(FwOperations* imageOps, ExtBurnParams& burnParams); virtual bool FwBurnBlock(FwOperations* imageOps, ProgressCallBack progressFunc); virtual bool FwBurnRom(FImage* romImg, bool ignoreProdIdCheck = false, bool ignoreDevidCheck = false, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc = (ProgressCallBack)NULL); // virtual bool FwSetGuids(std::vector& userGuids, std::vector& userMacs, bool updateCrc=true, // PrintCallBack callBackFunc=(PrintCallBack)NULL); virtual bool FwSetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc = (PrintCallBack)NULL, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwSetMFG(fs3_uid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetMFG(guid_t baseGuid, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetVSD(char* vsdStr, ProgressCallBack progressFunc = (ProgressCallBack)NULL, PrintCallBack printFunc = (PrintCallBack)NULL); virtual bool FwSetVPD(char* vpdFileStr, PrintCallBack callBackFunc = (PrintCallBack)NULL); virtual bool FwSetAccessKey(hw_key_t userKey, ProgressCallBack progressFunc = (ProgressCallBack)NULL); virtual bool FwShiftDevData(PrintCallBack progressFunc = (PrintCallBack)NULL); virtual bool FwResetNvData(); virtual const char* FwGetResetRecommandationStr(); virtual bool FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool stripedImage = false); virtual u_int8_t FwType(); virtual bool FwInit(); virtual bool FwReadData(void* image, u_int32_t* image_size, bool verbose = false); virtual bool FwReadRom(std::vector& romSect); virtual bool FwCalcMD5(u_int8_t md5sum[16]); bool FwCheckIfWeCanBurnWithFwControl(FwOperations*) { return false; } private: enum Fs2ImageInfoTags { II_IiFormatRevision = 0, II_FwVersion = 1, II_FwBuildTime = 2, II_DeviceType = 3, II_PSID = 4, II_VSD = 5, II_SuppurtedPsids = 6, II_ProductVer = 7, II_VsdVendorId = 8, II_IsGa = 9, II_HwDevsId = 10, II_MicVersion = 11, II_MinFitVersion = 12, II_HwAccessKey = 13, II_PROFILES_LIST = 14, II_SUPPORTED_PROFS = 15, II_CONFIG_INFO = 16, II_TLVS_FORMAT = 17, II_TRACER_HASH = 18, II_ConfigArea = 19, II_PSInfo = 20, II_Last, // Mark the end of used tag ids II_End = 0xff }; struct Fs2ImgInfo { // Constructor for accurate initialization // Since this struct includes vectors it raises a warning when using memset on it Fs2ImgInfo() : psOk(0), defPorfile(0), configAddr1(0), configAddr2(0), configSize(0), isConfigurable(0), infoSectPtr(0), guidPtr(0), fw_sector_size(0) { memset(&ext_info, 0, sizeof(ext_info)); memset(infoOffs, 0, sizeof(infoOffs)); } fs2_info_t ext_info; u_int32_t infoOffs[II_Last]; bool psOk; // Configuration info std::vector profListSectZipped; std::vector TlvFormatSectZipped; std::vector TracerHashSectZipped; std::vector supportedProfList; u_int32_t defPorfile; u_int32_t configAddr1; u_int32_t configAddr2; u_int32_t configSize; bool isConfigurable; u_int32_t infoSectPtr; u_int32_t guidPtr; u_int32_t fw_sector_size; }; bool Fs2Verify(VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL, bool is_striped_image = false, bool both_images = false, bool only_get_start = false, bool ignore_full_image_crc = false, bool force_no_striped_image = false); bool Fs2Query(); bool Fs2Burn(Fs2Operations& imageOps, ExtBurnParams& burnParams); bool CntxGetFsData(u_int32_t fs_info_word, bool& fs_en, u_int32_t& log2chunk_size); bool checkList(u_int32_t offs, u_int32_t fw_start, const char* pref, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); bool checkGen(u_int32_t beg, u_int32_t offs, u_int32_t& next, const char* pref, VerifyCallBack verifyCallBackFunc = (VerifyCallBack)NULL); bool ParseInfoSect(u_int8_t* buff, u_int32_t byteSize); bool Fs2IntQuery(bool readRom = true, bool isStripedImage = false); u_int32_t getDefaultSectorSz(); bool GetMaxImageSize(u_int32_t flash_size, bool image_is_fs, u_int32_t imgConfigSectors, u_int32_t imgFwSectorSz, u_int32_t& max_image_size); bool UpdateFullImageCRC(u_int32_t* buff, u_int32_t size, bool blank_guids); bool Fs2FailSafeBurn(Fs2Operations& imageOps, ExtBurnParams& burnParams); bool ModifyGuidSection(guid_t* user_guids, ProgressCallBack progressFunc = (ProgressCallBack)NULL); bool preFS2PatchGUIDs(bool patch_macs, bool user_guids, bool user_macs, guid_t new_guids[MAX_GUIDS], guid_t old_guids[MAX_GUIDS], guid_t** used_guids_p, u_int32_t num_of_old_guids); bool patchGUIDs(Fs2Operations& imageOps, bool patch_macs, bool user_guids, bool user_macs, guid_t new_guids[MAX_GUIDS], guid_t old_guids[MAX_GUIDS], u_int32_t num_of_old_guids); void patchGUIDsSection(u_int32_t* buf, u_int32_t ind, guid_t guids[MAX_GUIDS], int nguids); bool patchImageVsd(Fs2Operations& imgFwOps, const char* userVsd = (char*)NULL); void PatchInfoSect(u_int8_t* rawSect, u_int32_t vsdOffs, const char* vsd); void initSectToRead(int imp_index); // needed for fs2burn bool IntegrateDevRomInImage(Fs2Operations& imgFwOps); bool UpdateRomInImage(u_int8_t* new_image, u_int8_t* old_image, u_int8_t* rom_data, int rom_size, int* new_image_size); bool AddNewSect(u_int8_t*& new_image_p, u_int8_t* data, GPH gph, u_int32_t* last_next); bool CopyBoot2(u_int8_t*& new_image_p, u_int8_t*& old_image_p); bool CopyData(u_int8_t*& new_image, u_int8_t*& old_image, int copy_size); bool ModifyKeySection(guid_t access_key, ProgressCallBack callBackFunc = (ProgressCallBack)NULL); void PatchKeySect(u_int32_t* buff, u_int32_t keyOff, guid_t hw_key); bool ModifyVSDSection(const char* vsd, ProgressCallBack callBackFunc = (ProgressCallBack)NULL); bool ReburnNewImage(u_int8_t* data, const char* feature_name, ProgressCallBack callBackFunc = (ProgressCallBack)NULL); bool packStripedImageData(u_int8_t* striped_data, u_int8_t* normal_data, u_int32_t length, u_int32_t& striped_length, bool needs_repack, u_int32_t cntxLog2ChunkSize); bool Fs2SetGuids(sg_params_t& sgParam, PrintCallBack callBackFunc = (PrintCallBack)NULL, ProgressCallBack progressFunc = (ProgressCallBack)NULL); bool Fs2SetGuidsForBlank(sg_params_t& sgParam); bool getRunningFwVer(); Fs2ImgInfo _fs2ImgInfo; bool _burnBlankGuids; bool _isFullVerify; }; #endif // FS2_OPS_o mstflint-4.26.0/mlxfwops/lib/aux_tlv_ops.h0000644000175000017500000001424214522641732021047 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef AUX_TLV_OPS_H #define AUX_TLV_OPS_H #include #include typedef enum { TS_OK = 0, TS_GENERAL_ERROR, // device related errors TS_TIMESTAMPING_NOT_SUPPORTED, TS_NO_VALID_TIMESTAMP, TS_OLD_TIMESTAMP, TS_UNSUPPORTED_ICMD_VERSION, // image related errors, TS_TLV_CRC_MISMATCH, TS_TLV_PARSE_ERROR, TS_NO_TLV_SECTION_FOUND, TS_FAILED_TO_OPEN_FILE, TS_FAILED_TO_WRITE_FILE, TS_FAILED_TO_READ_FILE, TS_TLV_NOT_FOUND, TS_READ_ONLY_MODE, TS_HANDLE_NOT_SUPPORTED, TS_UNKNOWN_TLV_VERSION, } Tlv_Status_t; typedef struct aux_tlv { struct tools_open_aux_tlv_header hdr; std::vector data; // data in big endian } aux_tlv_t; class ImageTlvOps : public FlintErrMsg { public: ImageTlvOps(const char* fname, bool readOnly = false) : FlintErrMsg(), _fname(fname), _tlvSectionFound(false), _tlvSectionFilePos(0), _initialized(false), _readOnly(readOnly) { } ImageTlvOps(u_int8_t* buf, unsigned int size) : FlintErrMsg(), _fname((const char*)NULL), _tlvSectionFound(false), _tlvSectionFilePos(0), _initialized(false), _readOnly(true) { if (!buf) { // Adrianc: should not be reached, consider using exceptions _rawFileBuff.resize(0); } else { _rawFileBuff.resize(size); memcpy(&_rawFileBuff[0], buf, size); } } ~ImageTlvOps() {} Tlv_Status_t init(u_int32_t startPos, bool force = false); void addTLV(aux_tlv& tlv); Tlv_Status_t removeTlv(u_int16_t tlvType, u_int8_t headerType = 0); std::vector queryTlvs(); Tlv_Status_t queryTlv(u_int16_t tlvType, u_int8_t headerType, aux_tlv& tlv); Tlv_Status_t resetTlvSection(); Tlv_Status_t updateFile(); bool test(); // test method private: void pushTlvsToRawBuffer(); Tlv_Status_t getFileSize(FILE* fd, long int& fileSize); Tlv_Status_t writeBufferAsFile(); Tlv_Status_t parseTlvs(); u_int16_t calcTlvCrc(aux_tlv& tlv); bool checkSig(std::vector& signature); const char* _fname; bool _tlvSectionFound; u_int32_t _tlvSectionFilePos; bool _initialized; bool _readOnly; std::vector _tlvVec; std::vector _rawFileBuff; }; class TimeStampIFC : public FlintErrMsg { public: TimeStampIFC() : FlintErrMsg(){}; virtual ~TimeStampIFC(){}; static TimeStampIFC* getIFC(mfile* mf); static TimeStampIFC* getIFC(const char* fname, u_int32_t lastFWAddr = 0); static TimeStampIFC* getIFC(u_int8_t* buff, unsigned int size, u_int32_t lastFwAddr = 0); virtual Tlv_Status_t init() { return TS_OK; }; virtual Tlv_Status_t setTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) = 0; virtual Tlv_Status_t queryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false) = 0; virtual Tlv_Status_t resetTimeStamp() = 0; }; class ImageTimeStamp : public TimeStampIFC { public: ImageTimeStamp(const char* fname, u_int32_t lastFwAddr) : TimeStampIFC(), _lastFwAddr(lastFwAddr), _imgTlvOps(fname){}; ImageTimeStamp(u_int8_t* buf, unsigned int size, u_int32_t lastFwAddr) : TimeStampIFC(), _lastFwAddr(lastFwAddr), _imgTlvOps(buf, size){}; ~ImageTimeStamp(){}; virtual Tlv_Status_t init(); virtual Tlv_Status_t setTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer); virtual Tlv_Status_t queryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false); virtual Tlv_Status_t resetTimeStamp(); private: enum { TS_Header_Type = 0x0, TS_Tlv_Type = 0x1, }; u_int32_t _lastFwAddr; ImageTlvOps _imgTlvOps; }; class DeviceTimeStamp : public TimeStampIFC { public: DeviceTimeStamp(mfile* mf) : TimeStampIFC(), _mf(mf){}; ~DeviceTimeStamp(){}; virtual Tlv_Status_t init(); virtual Tlv_Status_t setTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer); virtual Tlv_Status_t queryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning = false); virtual Tlv_Status_t resetTimeStamp(); private: inline Tlv_Status_t convertRc(MError rc, int regMethod); mfile* _mf; }; #endif mstflint-4.26.0/mlxfwops/lib/security_version_gw.h0000644000175000017500000000531714522641732022620 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef SECURITY_VERSION_GW_ #define SECURITY_VERSION_GW_ #include #include "flint_base.h" class SecurityVersionGW { public: SecurityVersionGW(mfile* mf, chip_type_t chip_type) : _mf(mf), _chip_type(chip_type){}; ~SecurityVersionGW(){}; bool isAccessibleInLiveFish(); bool getSecurityVersion(u_int32_t* result); private: mfile* _mf; chip_type_t _chip_type; u_int32_t static const GW_NOT_SUPPORTED = 0x0; typedef enum { ROLLBACK_PROTECTION, MINIMAL_VERSION } gw_type_t; u_int32_t _ctrl_address; u_int32_t _result1_address; u_int32_t _result2_address; u_int32_t static const CTRL_LOCK = 0x80000000; u_int32_t static const CTRL_RW = 0x40000000; u_int32_t static const CTRL_READ = CTRL_RW & 0xffffffff; u_int32_t static const CTRL_BUSY = 0x20000000; void getRollbackProtection(u_int32_t* result); void getMinimalSecurityVersion(u_int32_t* result); void setGWAddress(gw_type_t gw_type); void lock(); void executeReadCommand(); void waitForResult(); void readResult1(u_int32_t* result); void readResult2(u_int32_t* result); void unlock(); u_int32_t countSetBits(u_int32_t num); }; #endif /*SECURITY_VERSION_GW_*/mstflint-4.26.0/mlxfwops/lib/mlxfwops.h0000644000175000017500000001162614522641732020366 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXFWOP_H #define MLXFWOP_H #include #include "mlxfwops_com.h" #ifdef __cplusplus extern "C" { #endif typedef struct mlxfwops mlxfwops_t; struct image_context { void* data; u_int32_t size; }; typedef struct { char* device_name; char* buf; int buf_size; int mcc_unsupported; int no_fw_ctrl; } fwops_params_t; MLXFWOP_API int MLXFWOPCALL mlxfw_open_device(mlxfwops_t** mlxfwops_p, char* device_name); MLXFWOP_API int MLXFWOPCALL mlxfw_open_device_verbose(mlxfwops_t** mlxfwops_p, char* device_name, char* buf, int buf_size); MLXFWOP_API int MLXFWOPCALL mlxfw_open_device_adv(mlxfwops_t** mlxfwops_p, fwops_params_t* params); MLXFWOP_API int MLXFWOPCALL mlxfw_open_image(mlxfwops_t** mlxfwops_p, char* file_name, char* psid); MLXFWOP_API int MLXFWOPCALL mlxfw_open_buffer(mlxfwops_t** mlxfwops_p, void* buffer, u_int32_t size, char* psid); #ifdef CABLES_SUPP MLXFWOP_API int MLXFWOPCALL mlxfw_open_cable(mlxfwops_t** mlxfwops_p, char* handle_name, int port); #endif #ifdef UEFI_BUILD #include MLXFWOP_API int MLXFWOPCALL mlxfw_open_uefi(mlxfwops_t** mlxfwops_p, uefi_Dev_t* dev, f_fw_cmd fw_cmd_func, f_dma_alloc dma_func, uefi_dev_info_t* dev_info); MLXFWOP_API int MLXFWOPCALL mlxfw_set_print(mlxfwops_t* mlxfwops, f_prog_func_str print_func); MLXFWOP_API const char* MLXFWOPCALL mlxfw_err2str(int err); #endif MLXFWOP_API const char* MLXFWOPCALL mlxfw_get_last_error(mlxfwops_t* mlxfwops); MLXFWOP_API int MLXFWOPCALL mlxfw_get_last_error_code(mlxfwops_t* mlxfwops); MLXFWOP_API int MLXFWOPCALL mlxfw_burn(mlxfwops_t* dev_mlxfwops, mlxfwops_t* img_mlxfwops, u_int8_t force_version, f_prog_func prog_func, int allow_psid_change); MLXFWOP_API int MLXFWOPCALL mlxfw_read_image(mlxfwops_t* mlxfwops, void* image, u_int32_t* image_size); MLXFWOP_API int MLXFWOPCALL mlxfw_verify(mlxfwops_t* mlxfwops); MLXFWOP_API int MLXFWOPCALL mlxfw_query(mlxfwops_t* mlxfwops, fw_info_t* fw_query); MLXFWOP_API int MLXFWOPCALL mlxfw_type_match(mlxfwops_t* dev_mlxfwops, mlxfwops_t* img_mlxfwops); MLXFWOP_API int MLXFWOPCALL mlxfw_fs_check_and_update(fw_info_t* fw_info, mlxfwops_t** dev_mlxfwops, mlxfwops_t* img_mlxfwops, u_int8_t force_version, f_prog_func prog_func, int allow_psid_change); MLXFWOP_API const char* MLXFWOPCALL mlxfw_exp_rom_type_to_str(u_int16_t type); MLXFWOP_API void MLXFWOPCALL mlxfw_close(mlxfwops_t* mlxfwops); MLXFWOP_API int MLXFWOPCALL mlxfw_test(mlxfwops_t* mlxfwops, u_int32_t* read_data); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/mlxfwops/lib/Makefile.in0000644000175000017500000006042014522641737020404 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @ENABLE_FWMGR_TRUE@am__append_1 = -I$(top_srcdir)/libmfa @ENABLE_FWMGR_FALSE@am__append_2 = -DNO_MFA_SUPPORT @ENABLE_OPENSSL_FALSE@am__append_3 = -DNO_OPEN_SSL @ENABLE_CS_FALSE@am__append_4 = -DNO_CS_CMD @ENABLE_DPA_TRUE@am__append_5 = -DENABLE_DPA subdir = mlxfwops/lib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libmlxfwops_a_AR = $(AR) $(ARFLAGS) libmlxfwops_a_LIBADD = am__dirstamp = $(am__leading_dot)dirstamp am_libmlxfwops_a_OBJECTS = aux_tlv_ops.$(OBJEXT) \ bluefiled_signature_manager.$(OBJEXT) \ connectx6_signature_manager.$(OBJEXT) flint_base.$(OBJEXT) \ flint_io.$(OBJEXT) fs_checks.$(OBJEXT) fs2_ops.$(OBJEXT) \ fs3_ops.$(OBJEXT) fs4_ops.$(OBJEXT) fs5_ops.$(OBJEXT) \ fsctrl_ops.$(OBJEXT) fw_ops.$(OBJEXT) fw_version.$(OBJEXT) \ mlxfwops.$(OBJEXT) security_version_gw.$(OBJEXT) \ components/fs_cert_ops.$(OBJEXT) \ components/fs_comps_ops.$(OBJEXT) \ components/fs_synce_ops.$(OBJEXT) libmlxfwops_a_OBJECTS = $(am_libmlxfwops_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmlxfwops_a_SOURCES) DIST_SOURCES = $(libmlxfwops_a_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/components -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/dev_mgt -I$(top_srcdir)/ext_libs/minixz \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/mflash \ -I$(top_srcdir)/mft_utils -I$(top_srcdir)/mlxfwops/uefi_c \ -I$(top_srcdir)/mtcr_ul -I$(top_srcdir)/tools_layouts \ $(JSON_CFLAGS) $(am__append_1) AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) \ -Wno-implicit-fallthrough $(am__append_2) $(am__append_3) \ $(am__append_4) $(am__append_5) noinst_LIBRARIES = libmlxfwops.a libmlxfwops_a_SOURCES = \ aux_tlv_ops.cpp \ aux_tlv_ops.h \ bluefiled_signature_manager.cpp \ connectx6_signature_manager.cpp \ flint_base.cpp \ flint_base.h \ flint_io.cpp \ flint_io.h \ fs_checks.cpp \ fs_checks.h \ fs2_ops.cpp \ fs2_ops.h \ fs3_ops.cpp \ fs3_ops.h \ fs4_ops.cpp \ fs4_ops.h \ fs5_ops.cpp \ fs5_ops.h \ fsctrl_ops.cpp \ fsctrl_ops.h \ fw_ops.cpp \ fw_ops.h\ fw_version.cpp \ mlxfwops_com.h \ mlxfwops.cpp \ mlxfwops.h \ security_version_gw.cpp \ security_version_gw.h \ signature_manager_factory.h \ signature_manager.h \ components/fs_cert_ops.cpp \ components/fs_cert_ops.h \ components/fs_comps_factory.h \ components/fs_comps_ops.cpp \ components/fs_comps_ops.h \ components/fs_synce_ops.cpp \ components/fs_synce_ops.h @ENABLE_DPA_TRUE@libmlxfwops_a_DEPENDENCIES = $(top_builddir)/mlxdpa/libmstdpa.a all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxfwops/lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxfwops/lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) components/$(am__dirstamp): @$(MKDIR_P) components @: > components/$(am__dirstamp) components/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) components/$(DEPDIR) @: > components/$(DEPDIR)/$(am__dirstamp) components/fs_cert_ops.$(OBJEXT): components/$(am__dirstamp) \ components/$(DEPDIR)/$(am__dirstamp) components/fs_comps_ops.$(OBJEXT): components/$(am__dirstamp) \ components/$(DEPDIR)/$(am__dirstamp) components/fs_synce_ops.$(OBJEXT): components/$(am__dirstamp) \ components/$(DEPDIR)/$(am__dirstamp) libmlxfwops.a: $(libmlxfwops_a_OBJECTS) $(libmlxfwops_a_DEPENDENCIES) $(EXTRA_libmlxfwops_a_DEPENDENCIES) $(AM_V_at)-rm -f libmlxfwops.a $(AM_V_AR)$(libmlxfwops_a_AR) libmlxfwops.a $(libmlxfwops_a_OBJECTS) $(libmlxfwops_a_LIBADD) $(AM_V_at)$(RANLIB) libmlxfwops.a mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f components/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aux_tlv_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bluefiled_signature_manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/connectx6_signature_manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flint_base.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flint_io.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fs2_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fs3_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fs4_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fs5_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fs_checks.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsctrl_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fw_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fw_version.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxfwops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security_version_gw.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/fs_cert_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/fs_comps_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/fs_synce_ops.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f components/$(DEPDIR)/$(am__dirstamp) -rm -f components/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) components/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) components/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxfwops/lib/fs4_ops.cpp0000644000175000017500000061273114522641732020423 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #ifdef MST_UL #include #else #ifndef UEFI_BUILD #include #endif #endif #if !defined(UEFI_BUILD) #include #include #include #if !defined(NO_CS_CMD) #include #endif // NO_CS_CMD #if !defined(NO_OPEN_SSL) #include #endif // NO_OPEN_SSL #endif // UEFI_BUILD #include "fs4_ops.h" #include "fs3_ops.h" #define FS4_ENCRYPTED_LOG_CHUNK_SIZE 24 #define DEV_INFO_SIG0 0x6d446576 #define DEV_INFO_SIG1 0x496e666f #define DEV_INFO_SIG2 0x2342cafa #define DEV_INFO_SIG3 0xbacafe00 #define GUID_TO_64(guid_st) (guid_st.l | (u_int64_t)guid_st.h << 32) #define CHECK_IF_FS4_FILE_FOR_TIMESTAMP_OP() \ if (!_ioAccess->is_flash()) \ { \ return errmsg("Timestamp operation for FS4 FW image files is not supported"); \ } #define COUNT_OF_SECTIONS_TO_ALIGN 5 void Fs4Operations::FwCleanUp() { FwOperations::FwCleanUp(); if (_encrypted_image_io_access) { _encrypted_image_io_access->close(); delete _encrypted_image_io_access; _encrypted_image_io_access = (FImage*)NULL; } } bool Fs4Operations::CheckSignatures(u_int32_t a[], u_int32_t b[], int n) { for (int i = 0; i < n; i++) { if (a[i] != b[i]) { // printf("-D- a[%d]=%d b[%d]=%d", i, a[i], i, b[i]); return false; } } return true; } bool Fs4Operations::IsEncryptedDevice(bool& is_encrypted) { DPRINTF(("Fs4Operations::IsEncryptedDevice\n")); is_encrypted = false; if (_signatureMngr->IsLifeCycleSupported() && _signatureMngr->IsEncryptionSupported()) { chip_type_t chip_type; const u_int32_t* swId = (u_int32_t*)NULL; if (!getInfoFromHwDevid(GetHwDevId(), chip_type, &swId)) { return false; } CRSpaceRegisters crSpaceReg(getMfileObj(), chip_type); if (crSpaceReg.getLifeCycle() == GA_SECURED) { is_encrypted = true; } } else { is_encrypted = false; } return true; } //* Determine if encrypted by reading ITOC header magic-pattern bool Fs4Operations::IsEncryptedImage(bool& is_encrypted) { DPRINTF(("Fs4Operations::IsEncryptedImage\n")); struct image_layout_itoc_header itocHeader = image_layout_itoc_header(); u_int8_t buffer[TOC_HEADER_SIZE]; memset(buffer, 0, TOC_HEADER_SIZE * sizeof(u_int8_t)); is_encrypted = false; if (!_is_hw_ptrs_initialized) { if (!InitHwPtrs(true)) { DPRINTF(("Fs4Operations::IsEncryptedImage HW pointers not found")); return false; } } READBUF((*_ioAccess), _itoc_ptr, buffer, TOC_HEADER_SIZE, "ITOC Header"); image_layout_itoc_header_unpack(&itocHeader, buffer); if (!CheckTocSignature(&itocHeader, ITOC_ASCII)) { // Check first location of ITOC header magic-pattern READBUF((*_ioAccess), _itoc_ptr + FS4_DEFAULT_SECTOR_SIZE, buffer, TOC_HEADER_SIZE, "ITOC Header"); image_layout_itoc_header_unpack(&itocHeader, buffer); if (!CheckTocSignature(&itocHeader, ITOC_ASCII)) { // Check second location of ITOC header magic-pattern is_encrypted = true; } } return true; } bool Fs4Operations::isEncrypted(bool& is_encrypted) { DPRINTF(("Fs4Operations::isEncrypted\n")); bool res = false; if (_ioAccess->is_flash()) { DPRINTF(("Fs4Operations::isEncrypted call IsEncryptedDevice\n")); res = IsEncryptedDevice(is_encrypted); } else { DPRINTF(("Fs4Operations::isEncrypted call IsEncryptedImage\n")); res = IsEncryptedImage(is_encrypted); } DPRINTF(("Fs4Operations::isEncrypted is_encrypted = %s, res = %s\n", is_encrypted ? "TRUE" : "FALSE", res ? "TRUE" : "FALSE")); return res; } bool Fs4Operations::CheckTocSignature(struct image_layout_itoc_header* itoc_header, u_int32_t first_signature) { u_int32_t a[4] = {itoc_header->signature0, itoc_header->signature1, itoc_header->signature2, itoc_header->signature3}; u_int32_t b[4] = {first_signature, TOC_RAND1, TOC_RAND2, TOC_RAND3}; return CheckSignatures(a, b, 4); } bool Fs4Operations::CheckDevInfoSignature(u_int32_t* buff) { u_int32_t sig0 = buff[0], sig1 = buff[1], sig2 = buff[2], sig3 = buff[3]; TOCPU1(sig0); TOCPU1(sig1); TOCPU1(sig2); TOCPU1(sig3); u_int32_t a[4] = {sig0, sig1, sig2, sig3}; u_int32_t b[4] = {DEV_INFO_SIG0, DEV_INFO_SIG1, DEV_INFO_SIG2, DEV_INFO_SIG3}; // printf("sig0=%x sig1=%x sig2=%x sig3=%x\n", sig0, sig1, sig2, sig3); return CheckSignatures(a, b, 4); } // CodeView: move it to Base class bool Fs4Operations::getImgStart() { DPRINTF(("Fs4Operations::getImgStart\n")); u_int32_t cntx_image_start[CNTX_START_POS_SIZE] = {0}; u_int32_t cntx_image_num = 0; FindAllImageStart(_ioAccess, cntx_image_start, &cntx_image_num, _fs4_magic_pattern); if (cntx_image_num == 0) { return errmsg(MLXFW_NO_VALID_IMAGE_ERR, "\nNo valid FS4 image found. Check the flash parameters, if specified."); } if (cntx_image_num > 1) { return errmsg(MLXFW_MULTIPLE_VALID_IMAGES_ERR, "More than one FS4 image found on %s", this->_ioAccess->is_flash() ? "Device" : "image"); } _fwImgInfo.imgStart = cntx_image_start[0]; DPRINTF(("Fs4Operations::getImgStart - _fwImgInfo.imgStart = 0x%x\n", _fwImgInfo.imgStart)); return true; } bool Fs4Operations::getExtendedHWAravaPtrs(VerifyCallBack verifyCallBackFunc, FBase* ioAccess, bool IsBurningProcess, bool isVerify) { DPRINTF(("Fs4Operations::getExtendedHWAravaPtrs\n")); #if defined(UEFI_BUILD) (void)verifyCallBackFunc; (void)ioAccess; (void)IsBurningProcess; return errmsg("Operation not supported"); #else const unsigned int s = IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE / 4; u_int32_t buff[s] = {0}; struct image_layout_hw_pointers_carmel hw_pointers; u_int32_t physAddr = FS4_HW_PTR_START; if (!IsBurningProcess) { physAddr += _fwImgInfo.imgStart; } READBUF((*ioAccess), physAddr, buff, IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE, "HW Arava Pointers"); // Fix pointers that are 0xFFFFFFFF for (unsigned int k = 0; k < s; k += 2) { if (buff[k] == 0xFFFFFFFF) { buff[k] = 0; // Fix pointer buff[k + 1] = 0; // Fix CRC } } image_layout_hw_pointers_carmel_unpack(&hw_pointers, (u_int8_t*)buff); // Check CRC of each pointers for (unsigned int k = 0; k < s; k += 2) { u_int32_t* tempBuff = (u_int32_t*)buff; // Actual CRC: u_int32_t ptrCRC = tempBuff[k + 1]; TOCPUn(&ptrCRC, 1); // Compare with SW CRC: u_int32_t calcPtrCRC; u_int32_t calcPtrSWCRC = CalcImageCRC((u_int32_t*)tempBuff + k, 1); if (ptrCRC == calcPtrSWCRC) { // Some devices (QT3) uses SW CRC calculation for HW pointers // and since we don't have an indication for that, we'll just check // if SW CRC calculation matches the actual CRC calcPtrCRC = calcPtrSWCRC; } else { // Calculate HW CRC: calcPtrCRC = calc_hw_crc((u_int8_t*)((u_int32_t*)tempBuff + k), 6); } if (!DumpFs3CRCCheck(FS4_HW_PTR, physAddr + 4 * k, IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE, calcPtrCRC, ptrCRC, false, verifyCallBackFunc)) { return false; } } // CodeView: generate tools_layout _boot_record_ptr = hw_pointers.boot_record_ptr.ptr; _boot2_ptr = hw_pointers.boot2_ptr.ptr; _itoc_ptr = hw_pointers.toc_ptr.ptr; _tools_ptr = hw_pointers.tools_ptr.ptr; if (isVerify == false) { _authentication_start_ptr = hw_pointers.authentication_start_pointer.ptr; _authentication_end_ptr = hw_pointers.authentication_end_pointer.ptr; _digest_mdk_ptr = hw_pointers.digest_pointer.ptr; _digest_recovery_key_ptr = hw_pointers.digest_recovery_key_pointer.ptr; _public_key_ptr = hw_pointers.public_key_pointer.ptr; } _security_version = hw_pointers.fw_security_version_pointer.ptr; _gcm_image_iv = hw_pointers.gcm_iv_delta_pointer.ptr; _hashes_table_ptr = hw_pointers.hashes_table_pointer.ptr; _image_info_section_ptr = hw_pointers.image_info_section_pointer.ptr; _is_hw_ptrs_initialized = true; return true; #endif } bool Fs4Operations::openEncryptedImageAccess(const char* encrypted_image_path) { DPRINTF(("Fs4Operations::openEncryptedImageAccess\n")); // After this method is done we won't be able verify 'this' (nonencrypted) image // since we'll replace its read/write with the encrypted image // so we we'll verify it now just to make sure it's valid //* Verify nonencrypted image if (!FsIntQueryAux()) { return errmsg("Failed to verify nonencrypted image"); } //* Create io access to the encrypted image _encrypted_image_io_access = new FImage; if (!_encrypted_image_io_access->open(encrypted_image_path, false, false)) { delete _encrypted_image_io_access; return errmsg("Failed to open image %s", encrypted_image_path); } return true; } bool Fs4Operations::getExtendedHWPtrs(VerifyCallBack verifyCallBackFunc, FBase* ioAccess, bool IsBurningProcess) { // TODO // printf("1=0x%x 2=0x%x\n", _fwImgInfo.supportedHwId[0], CX6_HW_ID); /*if (_fwImgInfo.supportedHwId[0] != CX6_HW_ID) { return errmsg("Extended HW pointers are only for ConnectX-6\n"); }*/ const unsigned int s = IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE / 4; u_int32_t buff[s] = {0}; struct cx6fw_hw_pointers hw_pointers; u_int32_t physAddr = FS4_HW_PTR_START; if (!IsBurningProcess) { physAddr += _fwImgInfo.imgStart; } READBUF((*ioAccess), physAddr, buff, IMAGE_LAYOUT_HW_POINTERS_CARMEL_SIZE, "HW Pointers"); cx6fw_hw_pointers_unpack(&hw_pointers, (u_int8_t*)buff); //- Check CRC of each pointers (always check CRC before you call ToCPU for (unsigned int k = 0; k < s; k += 2) { u_int32_t* tempBuff = (u_int32_t*)buff; // Calculate HW CRC: u_int32_t calcPtrCRC = calc_hw_crc((u_int8_t*)((u_int32_t*)tempBuff + k), 6); u_int32_t ptrCRC = tempBuff[k + 1]; u_int32_t ptr = tempBuff[k]; TOCPUn(&ptr, 1); TOCPUn(&ptrCRC, 1); if (!DumpFs3CRCCheck(FS4_HW_PTR, physAddr + 4 * k, IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE, calcPtrCRC, ptrCRC, false, verifyCallBackFunc)) { return false; } } // CodeView: generate tools_layout _boot2_ptr = hw_pointers.boot2_ptr.ptr; _itoc_ptr = hw_pointers.toc_ptr.ptr; _tools_ptr = hw_pointers.tools_ptr.ptr; _boot_record_ptr = hw_pointers.boot_record_ptr.ptr; _authentication_start_ptr = hw_pointers.authentication_start_ptr.ptr; _authentication_end_ptr = hw_pointers.authentication_end_ptr.ptr; _digest_mdk_ptr = hw_pointers.digest_mdk_ptr.ptr; _digest_recovery_key_ptr = hw_pointers.digest_recovery_key_ptr.ptr; _is_hw_ptrs_initialized = true; return true; } bool Fs4Operations::verifyToolsArea(VerifyCallBack verifyCallBackFunc) { DPRINTF(("Fs4Operations::verifyToolsArea\n")); u_int32_t buff[IMAGE_LAYOUT_TOOLS_AREA_SIZE / 4] = {0}; u_int8_t binVerMajor = 0; u_int8_t binVerMinor = 0; u_int32_t calculatedToolsAreaCRC; u_int32_t toolsAreaCRC; u_int32_t physAddr = _fwImgInfo.imgStart + _tools_ptr; struct image_layout_tools_area tools_area; READBUF((*_ioAccess), physAddr, buff, IMAGE_LAYOUT_TOOLS_AREA_SIZE, "Tools Area"); image_layout_tools_area_unpack(&tools_area, (u_int8_t*)buff); binVerMinor = tools_area.bin_ver_minor; binVerMajor = tools_area.bin_ver_major; _maxImgLog2Size = tools_area.log2_img_slot_size; toolsAreaCRC = tools_area.crc; calculatedToolsAreaCRC = CalcImageCRC((u_int32_t*)buff, IMAGE_LAYOUT_TOOLS_AREA_SIZE / 4 - 1); if (!DumpFs3CRCCheck(FS4_TOOLS_AREA, physAddr, IMAGE_LAYOUT_TOOLS_AREA_SIZE, calculatedToolsAreaCRC, toolsAreaCRC, false, verifyCallBackFunc)) { return false; } /*printf("-D- Bin Ver Minor=%d\n", binVerMinor); printf("-D- Bin Ver Major=%d\n", binVerMajor); printf("-D- _maxImgLog2Size=%d\n", _maxImgLog2Size); printf("-D- Actuall tools area CRC=%d\n", toolsAreaCRC); printf("-D- Expected tools area CRC=%d\n", calculatedToolsAreaCRC);*/ //- Check if binary version is supported by the tool if (!CheckBinVersion(binVerMajor, binVerMinor)) { return false; } // Put info if (_maxImgLog2Size == 0x16 && _fwImgInfo.imgStart == 0x800000) { _fwImgInfo.cntxLog2ChunkSize = 0x17; } else { _fwImgInfo.cntxLog2ChunkSize = _maxImgLog2Size; } DPRINTF(("_fwImgInfo.cntxLog2ChunkSize = 0x%x\n", _fwImgInfo.cntxLog2ChunkSize)); _fwImgInfo.ext_info.is_failsafe = true; DPRINTF(("_fwImgInfo.ext_info.is_failsafe = true\n")); _fwImgInfo.actuallyFailsafe = true; DPRINTF(("_fwImgInfo.actuallyFailsafe = true\n")); _fwImgInfo.magicPatternFound = 1; DPRINTF(("_fwImgInfo.magicPatternFound = 1\n")); return true; } bool Fs4Operations::verifyTocHeader(u_int32_t tocAddr, bool isDtoc, VerifyCallBack verifyCallBackFunc) { struct image_layout_itoc_header itocHeader; u_int8_t buffer[TOC_HEADER_SIZE]; u_int32_t physAddr; u_int32_t tocCrc; /*if(isDtoc) { _ioAccess->set_address_convertor(0, 0); }*/ READBUF((*_ioAccess), tocAddr, buffer, TOC_HEADER_SIZE, "TOC Header"); Fs3UpdateImgCache(buffer, tocAddr, TOC_HEADER_SIZE); image_layout_itoc_header_unpack(&itocHeader, buffer); // TODO: check if we really need this: if (isDtoc) { memcpy(_fs4ImgInfo.dtocArr.tocHeader, buffer, IMAGE_LAYOUT_ITOC_HEADER_SIZE); } else { memcpy(_fs4ImgInfo.itocArr.tocHeader, buffer, IMAGE_LAYOUT_ITOC_HEADER_SIZE); } // Check the signature in the header: u_int32_t first_signature = isDtoc ? DTOC_ASCII : ITOC_ASCII; if (!CheckTocSignature(&itocHeader, first_signature)) { return false; } tocCrc = CalcImageCRC((u_int32_t*)buffer, (TOC_HEADER_SIZE / 4) - 1); physAddr = _ioAccess->get_phys_from_cont(tocAddr, isDtoc ? 0 : _fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); if (!DumpFs3CRCCheck(isDtoc ? FS3_DTOC : FS3_ITOC, physAddr, TOC_HEADER_SIZE, tocCrc, itocHeader.itoc_entry_crc, false, verifyCallBackFunc)) { return false; } return true; } /* This function responsible on remove every 4B of CRC from MAIN section Some special cases and how we handle them (aligned to FW behavior): 1. Complete line is 0x0 (including the 4B CRC) --> handle it the same as other line, remove the last 4B 2. Leftover (not a complete line at the end) --> keep it as is */ void Fs4Operations::RemoveCRCsFromMainSection(vector& img) { //* Get MAIN section ITOC entry struct fs4_toc_info* main_itoc_entry = NULL; fs4_toc_info* itoc_entries = _fs4ImgInfo.itocArr.tocArr; for (int i = 0; i < _fs4ImgInfo.itocArr.numOfTocs; i++) { if (itoc_entries[i].toc_entry.cache_line_crc) { main_itoc_entry = &(itoc_entries[i]); break; } } if (main_itoc_entry == NULL) { return; } u_int32_t main_addr = main_itoc_entry->toc_entry.flash_addr << 2; // addr in entry is in DW u_int32_t main_size = main_itoc_entry->toc_entry.size << 2; // size in entry is in DW vector tmp_img; tmp_img.reserve(img.size()); //* Copying image data before MAIN section tmp_img.insert(tmp_img.end(), img.begin(), img.begin() + main_addr); //* Copying MAIN section without CRCs const u_int32_t MAIN_LINE_SIZE = 68; // Line in MAIN is 64B data + 4B crc const u_int32_t MAIN_LINE_DATA_ONLY_SIZE = MAIN_LINE_SIZE - 4; for (u_int32_t offset = 0; offset < main_size; offset += MAIN_LINE_SIZE) { u_int32_t line_start_addr = main_addr + offset; if (offset + MAIN_LINE_SIZE > main_size) { // In case last line isn't a full line there will be no CRC tmp_img.insert(tmp_img.end(), img.begin() + line_start_addr, img.begin() + main_addr + main_size); } else { tmp_img.insert(tmp_img.end(), img.begin() + line_start_addr, img.begin() + line_start_addr + MAIN_LINE_DATA_ONLY_SIZE); } } //* Copying image data after MAIN section tmp_img.insert(tmp_img.end(), img.begin() + main_addr + main_size, img.end()); img = tmp_img; } /* This function responsible on removing boot-record last 4B of CRC */ bool Fs4Operations::MaskBootRecordCRC(vector& img) { u_int32_t boot_record_size_without_crc = 0; if (!getBootRecordSize(boot_record_size_without_crc)) { return errmsg("Failed to get boot_record size\n"); } u_int32_t boot_record_crc_addr = _boot_record_ptr + boot_record_size_without_crc; fill(img.begin() + boot_record_crc_addr, img.begin() + boot_record_crc_addr + 4, 0xff); // Mask 4B of CRC/auth-tag return true; } bool Fs4Operations::GetImageDataForSign(MlxSign::SHAType shaType, vector& img) { if (!Fs3Operations::GetImageDataForSign(shaType, img)) { return false; } //* In case of security version 2 (Carmel onwards) we'll ignore MAIN CRCs for fw-update signature if (getSecureBootSignVersion() == VERSION_2) { // Removal order is critical, we must remove from the end of the image to its start (first MAIN then // boot-record) since lower addresses won't be affected by erasing data from higher addresses RemoveCRCsFromMainSection(img); //* In case of devices after Carmel we'll ignore boot-record CRC for fw-update signature same as secure-boot // signature if (getChipType(_fwImgInfo.supportedHwId[0]) != CT_CONNECTX7) { if (!MaskBootRecordCRC(img)) { return false; } } } return true; } bool Fs4Operations::FwExtract4MBImage(vector& img, bool maskMagicPatternAndDevToc, bool verbose, bool ignoreImageStart) { bool res = false; bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (_encrypted_image_io_access or image_encrypted) { res = FwExtractEncryptedImage(img, maskMagicPatternAndDevToc, verbose, ignoreImageStart); } else { res = Fs3Operations::FwExtract4MBImage(img, maskMagicPatternAndDevToc, verbose, ignoreImageStart); } return res; } bool Fs4Operations::verifyTocEntries(u_int32_t tocAddr, bool show_itoc, bool isDtoc, struct QueryOptions queryOptions, VerifyCallBack verifyCallBackFunc, bool verbose) { struct image_layout_itoc_entry tocEntry; int section_index = 0; u_int32_t entryAddr; u_int32_t entryCrc; u_int32_t entrySizeInBytes; u_int32_t physAddr; u_int8_t entryBuffer[TOC_ENTRY_SIZE]; bool mfgExists = false; int validDevInfoCount = 0; bool retVal = true; TocArray* tocArray; if (isDtoc) { tocArray = &(_fs4ImgInfo.dtocArr); } else { tocArray = &(_fs4ImgInfo.itocArr); } do { // Read toc entry if (nextBootFwVer) { // if nextBootFwVer is true, read only fw version (FS3_IMAGE_INFO section) // section index should be 8 for this case section_index = 8; } entryAddr = tocAddr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; if (!(*_ioAccess).read(entryAddr, entryBuffer, TOC_ENTRY_SIZE, verbose)) { return errmsg("%s - read error (%s)\n", "TOC Entry", (*_ioAccess).err()); } Fs3UpdateImgCache(entryBuffer, entryAddr, TOC_ENTRY_SIZE); image_layout_itoc_entry_unpack(&tocEntry, entryBuffer); if (tocEntry.type == FS3_MFG_INFO) { mfgExists = true; } if (tocEntry.type != FS3_END) { if (section_index + 1 >= MAX_TOCS_NUM) { return errmsg("Internal error: number of %s %d is greater than allowed %d", isDtoc ? "DTocs" : "ITocs", section_index + 1, MAX_TOCS_NUM); } entryCrc = CalcImageCRC((u_int32_t*)entryBuffer, (TOC_ENTRY_SIZE / 4) - 1); if (tocEntry.itoc_entry_crc != entryCrc) { if (_fwParams.ignoreCrcCheck) { printf("-W- Bad %s Entry CRC. Expected: 0x%x , Actual: 0x%x\n", isDtoc ? "DToc" : "IToc", tocEntry.itoc_entry_crc, entryCrc); } else { return errmsg(MLXFW_BAD_CRC_ERR, "Bad %s Entry CRC. Expected: 0x%x , Actual: 0x%x", isDtoc ? "DToc" : "IToc", tocEntry.itoc_entry_crc, entryCrc); } } entrySizeInBytes = tocEntry.size * 4; // Update last image address u_int32_t section_last_addr; u_int32_t flash_addr = tocEntry.flash_addr << 2; if (isDtoc) { physAddr = flash_addr; _fs4ImgInfo.smallestDTocAddr = (_fs4ImgInfo.smallestDTocAddr < flash_addr && _fs4ImgInfo.smallestDTocAddr > 0) ? _fs4ImgInfo.smallestDTocAddr : flash_addr; } else { physAddr = _ioAccess->get_phys_from_cont(flash_addr, _fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); section_last_addr = physAddr + entrySizeInBytes; _fwImgInfo.lastImageAddr = (_fwImgInfo.lastImageAddr >= section_last_addr) ? _fwImgInfo.lastImageAddr : section_last_addr; } if (IsFs3SectionReadable(tocEntry.type, queryOptions)) { // Only when we have full verify or the info of this section should be collected for query std::vector buffv(entrySizeInBytes); u_int8_t* buff = (u_int8_t*)(buffv.size() ? (&(buffv[0])) : NULL); if (show_itoc) { image_layout_itoc_entry_dump(&tocEntry, stdout); if (!DumpFs3CRCCheck(tocEntry.type, physAddr, entrySizeInBytes, 0, 0, true, verifyCallBackFunc)) { retVal = false; } } else { //* Choosing the correct io access to read from FBase* io = _ioAccess; if (_encrypted_image_io_access) { io = _encrypted_image_io_access; // If encrypted image was given we'll read from it } DPRINTF(("Fs4Operations::verifyTocEntries reading %s %s section from %simage\n", GetSectionNameByType(tocEntry.type), isDtoc ? "DTOC" : "ITOC", _encrypted_image_io_access ? "encrypted " : "")); if (!(*io).read(flash_addr, buff, entrySizeInBytes, verbose)) { return errmsg("%s - read error (%s)\n", "Section", (*io).err()); } Fs3UpdateImgCache(buff, flash_addr, entrySizeInBytes); u_int32_t sect_act_crc = 0; u_int32_t sect_exp_crc = 0; if (tocEntry.crc == INITOCENTRY) { // crc is in the itoc entry sect_act_crc = CalcImageCRC((u_int32_t*)buff, tocEntry.size); sect_exp_crc = tocEntry.section_crc; // printf("-D-INITOCENTRY sect_act_crc=%d sect_exp_crc=%d\n", sect_act_crc, sect_exp_crc); } else if (tocEntry.crc == INSECTION) { // calc crc on the section without the last dw which contains crc sect_act_crc = CalcImageCRC((u_int32_t*)buff, tocEntry.size - 1); // crc is in the section, last two bytes sect_exp_crc = ((u_int32_t*)buff)[tocEntry.size - 1]; TOCPU1(sect_exp_crc) sect_exp_crc = (u_int16_t)sect_exp_crc; // printf("-D-INSECTION sect_act_crc=%d sect_exp_crc=%d\n", sect_act_crc, sect_exp_crc); } if (tocEntry.type != FS3_DEV_INFO || CheckDevInfoSignature((u_int32_t*)buff)) { // Check if a cache_line_crc section (Ex. MAIN_CODE) is encrypted (has 4B AUTH-TAG) or not (has // 2B CRC) bool is_encrypted_cache_line_crc_section = false; if (tocEntry.cache_line_crc == 1) { u_int32_t first_line_crc_or_authtag = ((u_int32_t*)buff)[16]; // DWORD 16 is CRC or AUTH-TAG TOCPU1(first_line_crc_or_authtag) bool is_authtag = (first_line_crc_or_authtag & 0xffff0000) != 0x0; is_encrypted_cache_line_crc_section = is_authtag; // if encrypted section will have auth-tag } bool ignore_crc = (tocEntry.crc == NOCRC) || is_encrypted_cache_line_crc_section; // In case of encrypted MAIN_CODE section // we'll ignore CRC if (!_encrypted_image_io_access && // In case of encrypted image we don't want to check section // CRC !DumpFs3CRCCheck(tocEntry.type, physAddr, entrySizeInBytes, sect_act_crc, sect_exp_crc, ignore_crc, verifyCallBackFunc)) { if (isDtoc) { _badDevDataSections = true; } retVal = false; } else { // printf("-D- toc type : 0x%.8x\n" , toc_entry.type); GetSectData(tocArray->tocArr[section_index].section_data, (u_int32_t*)buff, tocEntry.size * 4); bool isDevInfoSection = (tocEntry.type == FS3_DEV_INFO); bool isDevInfoValid = isDevInfoSection && CheckDevInfoSignature((u_int32_t*)buff); if (isDevInfoValid) { validDevInfoCount++; } if (!isDevInfoSection || isDevInfoValid) { if (IsGetInfoSupported(tocEntry.type)) { u_int8_t* section_buff; section_buff = buff; vector non_encrypted_buff; if (_encrypted_image_io_access) { // In case of encrypted image, parsing info section from the non-encrypted image non_encrypted_buff.resize(tocEntry.size * 4); READBUF((*_ioAccess), flash_addr, non_encrypted_buff.data(), entrySizeInBytes, "Section"); section_buff = non_encrypted_buff.data(); } if (!GetImageInfoFromSection(section_buff, tocEntry.type, tocEntry.size * 4)) { retVal = false; errmsg("Failed to get info from section %d, check the supported_hw_id section " "in MLX file!\n", tocEntry.type); } } else if (tocEntry.type == FS3_DBG_FW_INI) { TOCPUn(buff, tocEntry.size); GetSectData(_fwConfSect, (u_int32_t*)buff, tocEntry.size * 4); } } } } else { GetSectData(tocArray->tocArr[section_index].section_data, (u_int32_t*)buff, tocEntry.size * 4); } } } tocArray->tocArr[section_index].entry_addr = entryAddr; tocArray->tocArr[section_index].toc_entry = tocEntry; memcpy(tocArray->tocArr[section_index].data, entryBuffer, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); } if (nextBootFwVer) { // if nextBootFwVer, return after reading fw version break; } section_index++; } while (tocEntry.type != FS3_END); tocArray->numOfTocs = section_index - 1; if (isDtoc) { if (!mfgExists) { _badDevDataSections = true; return errmsg(MLXFW_NO_MFG_ERR, "No \"" MFG_INFO "\" info section."); } // when you start checking device info signatures => uncomment this code if (validDevInfoCount != 1 && !show_itoc && (_readSectList.size() == 0 || find(_readSectList.begin(), _readSectList.end(), FS3_DEV_INFO) != _readSectList.end()) && _fwImgInfo.supportedHwId[0] != ARCUSE_HW_ID) // ArcusE doesn't have DEV_INFO section { _badDevDataSections = true; if (validDevInfoCount == 0) { return errmsg(MLXFW_NO_VALID_DEVICE_INFO_ERR, "No \"" DEV_INFO "\" info section."); } // more than one valid devinfo: return errmsg(MLXFW_TWO_VALID_DEVICE_INFO_ERR, "Two \"" DEV_INFO "\" info sections."); } } return retVal; } bool Fs4Operations::FsVerifyAux(VerifyCallBack verifyCallBackFunc, bool show_itoc, struct QueryOptions queryOptions, bool ignoreDToc, bool verbose) { DPRINTF(("Fs4Operations::FsVerifyAux\n")); u_int32_t dtocPtr; u_int8_t* buff; u_int32_t log2_chunk_size; bool is_image_in_odd_chunks; DPRINTF(("Fs4Operations::FsVerifyAux call getImgStart()\n")); if (!getImgStart()) { // Set _fwImgInfo.imgStart with the image start address return false; } report_callback(verifyCallBackFunc, "\nFS4 failsafe image\n\n"); _ioAccess->set_address_convertor(0, 0); DPRINTF(("Fs4Operations::FsVerifyAux call getExtendedHWAravaPtrs()\n")); if (!getExtendedHWAravaPtrs(verifyCallBackFunc, _ioAccess, false, true)) { return false; } // if nextBootFwVer is true, no need to get all the information, just the fw version is enough - therefore skip // everything else if (!nextBootFwVer) { DPRINTF(("Fs4Operations::FsVerifyAux call verifyToolsArea()\n")); if (!verifyToolsArea(verifyCallBackFunc)) { return false; } // Update image cache till before boot2 header: DPRINTF(("Fs4Operations::FsVerifyAux call Fs3UpdateImgCache() - All before boot2\n")); READALLOCBUF((*_ioAccess), _fwImgInfo.imgStart, buff, _boot2_ptr, "All Before Boot2"); Fs3UpdateImgCache(buff, 0, _boot2_ptr); free(buff); _ioAccess->set_address_convertor(_fwImgInfo.cntxLog2ChunkSize, _fwImgInfo.imgStart != 0); // Get BOOT2 -Get Only boot2Size if quickQuery == true else read and check CRC of boot2 section as well DPRINTF(("Fs4Operations::FsVerifyAux call FS3_CHECKB2()\n")); FS3_CHECKB2(0, _boot2_ptr, !queryOptions.quickQuery, PRE_CRC_OUTPUT, verifyCallBackFunc); _fs4ImgInfo.firstItocArrayIsEmpty = false; _fs4ImgInfo.itocArr.tocArrayAddr = _itoc_ptr; DPRINTF(("Fs4Operations::FsVerifyAux call isHashesTableHwPtrValid()\n")); if (isHashesTableHwPtrValid()) { //* Check hashes_table header CRC READALLOCBUF((*_ioAccess), _hashes_table_ptr, buff, IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE, "HASHES TABLE HEADER"); // Calculate CRC u_int32_t hashes_table_header_calc_crc = CalcImageCRC((u_int32_t*)buff, (IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE / 4) - 1); // Read CRC u_int32_t hashes_table_header_crc = ((u_int32_t*)buff)[(IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE / 4) - 1]; free(buff); TOCPU1(hashes_table_header_crc) hashes_table_header_crc = hashes_table_header_crc & 0xFFFF; // Compare calculated crc with crc from image if (hashes_table_header_calc_crc != hashes_table_header_crc) { report_callback(verifyCallBackFunc, "%s /0x%08x/ - wrong CRC (exp:0x%x, act:0x%x)\n", "HASHES TABLE HEADER", _hashes_table_ptr + IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE - 4, hashes_table_header_calc_crc, hashes_table_header_crc); if (!_fwParams.ignoreCrcCheck) { return errmsg("Bad CRC"); } } vector hashes_table_data; if (!GetHashesTableData(hashes_table_data)) { return false; } buff = hashes_table_data.data(); const u_int32_t hashes_table_size = hashes_table_data.size(); Fs3UpdateImgCache(buff, _hashes_table_ptr, hashes_table_size); //* Check hashes_table CRC // Calculate CRC u_int32_t hashes_table_calc_crc = CalcImageCRC((u_int32_t*)buff, (hashes_table_size / 4) - 1); // Read CRC u_int32_t hashes_table_crc = ((u_int32_t*)buff)[(hashes_table_size / 4) - 1]; TOCPU1(hashes_table_crc) hashes_table_crc = hashes_table_crc & 0xFFFF; if (!DumpFs3CRCCheck(FS4_HASHES_TABLE, _hashes_table_ptr, hashes_table_size, hashes_table_calc_crc, hashes_table_crc, false, verifyCallBackFunc)) { return false; } } DPRINTF(("Fs4Operations::FsVerifyAux call verifyTocHeader() ITOC\n")); if (!verifyTocHeader(_itoc_ptr, false, verifyCallBackFunc)) { _itoc_ptr += FS4_DEFAULT_SECTOR_SIZE; _fs4ImgInfo.itocArr.tocArrayAddr = _itoc_ptr; _fs4ImgInfo.firstItocArrayIsEmpty = true; if (!verifyTocHeader(_itoc_ptr, false, verifyCallBackFunc)) { return errmsg(MLXFW_NO_VALID_ITOC_ERR, "No valid ITOC Header was found."); } } } if (_ioAccess->is_flash() == false && _signatureDataSet == false) { // read the MDK HW pointed data from the image (binary file). Don't read from flash! int signature_size = 3 * HMAC_SIGNATURE_LENGTH; uint8_t signature_data[3 * HMAC_SIGNATURE_LENGTH] = {0}; int signature_offset = _digest_mdk_ptr; if (signature_offset == 0) { signature_offset = _digest_recovery_key_ptr; } if (signature_offset != 0) { READBUF((*_ioAccess), signature_offset, signature_data, signature_size, "Reading data pointed by HW MDK Pointer"); Fs3UpdateImgCache(signature_data, signature_offset, signature_size); } _signatureDataSet = true; } DPRINTF(("Fs4Operations::FsVerifyAux call verifyTocEntries() ITOC\n")); if (!verifyTocEntries(_itoc_ptr, show_itoc, false, queryOptions, verifyCallBackFunc, verbose)) { return false; } if (nextBootFwVer) { return true; } if (ignoreDToc) { return true; } // Verify DTOC: log2_chunk_size = _ioAccess->get_log2_chunk_size(); is_image_in_odd_chunks = _ioAccess->get_is_image_in_odd_chunks(); _ioAccess->set_address_convertor(0, 0); //-Verify DToC Header: dtocPtr = _ioAccess->get_effective_size() - FS4_DEFAULT_SECTOR_SIZE; DPRINTF(("Fs4Operations::FsVerifyAux call verifyTocHeader() DTOC\n")); if (!verifyTocHeader(dtocPtr, true, verifyCallBackFunc)) { return errmsg(MLXFW_NO_VALID_ITOC_ERR, "No valid DTOC Header was found."); } _fs4ImgInfo.dtocArr.tocArrayAddr = dtocPtr; //-Verify DToC Entries: DPRINTF(("Fs4Operations::FsVerifyAux call verifyTocEntries() DTOC\n")); if (!verifyTocEntries(dtocPtr, show_itoc, true, queryOptions, verifyCallBackFunc, verbose)) { _ioAccess->set_address_convertor(log2_chunk_size, is_image_in_odd_chunks); return false; } _ioAccess->set_address_convertor(log2_chunk_size, is_image_in_odd_chunks); return true; } bool Fs4Operations::FwVerify(VerifyCallBack verifyCallBackFunc, bool isStripedImage, bool showItoc, bool ignoreDToc) { bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (!ignoreDToc && image_encrypted) { //* Verify DTOC CRCs only if (!ParseDevData(false, false, verifyCallBackFunc, showItoc)) { return errmsg("%s", err()); } return true; } return Fs3Operations::FwVerify(verifyCallBackFunc, isStripedImage, showItoc, ignoreDToc); } bool Fs4Operations::FwGetSection(u_int32_t sectType, std::vector& sectInfo, bool) { bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (image_encrypted) { return errmsg("Operation not supported on an encrypted %s", _ioAccess->is_flash() ? "flash" : "image"); } return Fs3Operations::FwGetSection(sectType, sectInfo); } bool Fs4Operations::GetImageInfo(u_int8_t* buff) { DPRINTF(("Fs4Operations::GetImageInfo call Fs3Operations::GetImageInfo\n")); bool success = Fs3Operations::GetImageInfo(buff); //* Fix burn_image_size if required (required only for BB first FW release) if (success && !_ioAccess->is_flash() /*image*/) { DPRINTF(("Fs4Operations::GetImageInfo check if fix burn_image_size is required\n")); bool is_encrypted_image; if (!IsEncryptedImage(is_encrypted_image)) { return false; } if ((is_encrypted_image || _encrypted_image_io_access) && _fwImgInfo.ext_info.burn_image_size == 0) { DPRINTF(("Fs4Operations::GetImageInfo read burn_image_size from the address 16MB\n")); //* Read burn_image_size from the address 16MB ("outside" the range that we burn) u_int32_t burn_image_size; u_int8_t* buff; //* Choosing the correct io to read from FBase* io = _ioAccess; if (_encrypted_image_io_access) { io = _encrypted_image_io_access; // If encrypted image was given we'll read from it } READALLOCBUF((*io), ENCRYPTED_BURN_IMAGE_SIZE_LOCATION_IN_BYTES, buff, 4, "IMAGE_LAST_ADDR"); // Reading DWORD from addr 16MB burn_image_size = ((u_int32_t*)buff)[0]; TOCPU1(burn_image_size); free(buff); _fwImgInfo.ext_info.burn_image_size = burn_image_size; } } return true; } bool Fs4Operations::CheckDevRSAPublicKeyUUID() { //* Read RSA_PUBLIC_KEY section u_int32_t rsa_public_keys_section_addr = _public_key_ptr + _fwImgInfo.imgStart; DPRINTF( ("Fs4Operations::CheckDevRSAPublicKeyUUID rsa_public_keys_section_addr = 0x%x\n", rsa_public_keys_section_addr)); vector rsa_public_keys_data; rsa_public_keys_data.resize(IMAGE_LAYOUT_PUBLIC_KEYS_3_SIZE); if (!_ioAccess->read(rsa_public_keys_section_addr, rsa_public_keys_data.data(), IMAGE_LAYOUT_PUBLIC_KEYS_3_SIZE)) { return errmsg("%s - read error (%s)\n", "RSA_PUBLIC_KEY", (*_ioAccess).err()); } //* Check if key uuid is dev image_layout_public_keys_3 public_keys_3; image_layout_public_keys_3_unpack(&public_keys_3, rsa_public_keys_data.data()); GetImgSigInfo(public_keys_3.file_public_keys_3[0].keypair_uuid); return true; } bool Fs4Operations::encryptedFwReadImageInfoSection() { //* Read IMAGE_INFO section u_int32_t image_info_section_addr = _image_info_section_ptr + _fwImgInfo.imgStart; DPRINTF( ("Fs4Operations::encryptedFwReadImageInfoSection image_info_section_addr = 0x%x\n", image_info_section_addr)); vector image_info_data; image_info_data.resize(IMAGE_LAYOUT_IMAGE_INFO_SIZE); if (!_ioAccess->read(image_info_section_addr, image_info_data.data(), IMAGE_LAYOUT_IMAGE_INFO_SIZE)) { return errmsg("%s - read error (%s)\n", "IMAGE_INFO", (*_ioAccess).err()); } //* Parse IMAGE_INFO section if (!GetImageInfo(image_info_data.data())) { return errmsg("Failed to parse IMAGE_INFO section - %s", err()); } return true; } bool Fs4Operations::ParseDevData(bool quickQuery, bool verbose, VerifyCallBack verifyCallBackFunc, bool showItoc) { //* Initializing DTOC info _ioAccess->set_address_convertor(0, 0); // Parse DTOC header: u_int32_t dtoc_addr = _ioAccess->get_size() - FS4_DEFAULT_SECTOR_SIZE; DPRINTF(("Fs4Operations::ParseDevData call verifyTocHeader() DTOC, dtoc_addr = 0x%x\n", dtoc_addr)); if (!verifyTocHeader(dtoc_addr, true, verifyCallBackFunc)) { return errmsg(MLXFW_NO_VALID_ITOC_ERR, "No valid DTOC Header was found."); } _fs4ImgInfo.dtocArr.tocArrayAddr = dtoc_addr; // Parse DTOC entries: struct QueryOptions queryOptions; queryOptions.readRom = false; queryOptions.quickQuery = quickQuery; DPRINTF(("Fs4Operations::ParseDevData call verifyTocEntries() DTOC\n")); if (!verifyTocEntries(dtoc_addr, false, true, queryOptions, verifyCallBackFunc, verbose)) { return false; } return true; } bool Fs4Operations::encryptedFwQuery(fw_info_t* fwInfo, bool quickQuery, bool ignoreDToc, bool verbose) { DPRINTF(("Fs4Operations::encryptedFwQuery\n")); if (!InitHwPtrs()) { DPRINTF(("Fs4Operations::encryptedFwQuery HW pointers not found")); return false; } if (!encryptedFwReadImageInfoSection()) { return false; } if (!CheckDevRSAPublicKeyUUID()) { return false; } if (!ignoreDToc) { if (!ParseDevData(quickQuery, verbose)) { return false; } } if (!QuerySecurityFeatures()) { return false; } _fwImgInfo.ext_info.is_failsafe = true; memcpy(&(fwInfo->fw_info), &(_fwImgInfo.ext_info), sizeof(fw_info_com_t)); memcpy(&(fwInfo->fs3_info), &(_fs3ImgInfo.ext_info), sizeof(fs3_info_t)); fwInfo->fw_type = FwType(); return true; } bool Fs4Operations::FwQuery(fw_info_t* fwInfo, bool readRom, bool isStripedImage, bool quickQuery, bool ignoreDToc, bool verbose) { DPRINTF(("Fs4Operations::FwQuery\n")); bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (image_encrypted) { return encryptedFwQuery(fwInfo, quickQuery, ignoreDToc, verbose); } if (!Fs3Operations::FwQuery(fwInfo, readRom, isStripedImage, quickQuery, ignoreDToc, verbose)) { return false; } if (!QuerySecurityFeatures()) { return false; } memcpy(&(fwInfo->fw_info), &(_fwImgInfo.ext_info), sizeof(fw_info_com_t)); memcpy(&(fwInfo->fs3_info), &(_fs3ImgInfo.ext_info), sizeof(fs3_info_t)); return true; } bool Fs4Operations::IsLifeCycleAccessible(chip_type_t chip_type) { DPRINTF(("Fs4Operations::IsLifeCycleAccessible\n")); bool res = true; if (IsLifeCycleSupported()) { if (dm_is_livefish_mode(getMfileObj())) { switch (chip_type) { case CT_BLUEFIELD2: case CT_CONNECTX6DX: case CT_CONNECTX6LX: // HW bug - life-cycle CR-space is blocked in livefish mode on these devices res = false; break; default: break; } } } else { res = false; } DPRINTF(("Fs4Operations::IsLifeCycleAccessible res = %s\n", res ? "TRUE" : "FALSE")); return res; } bool Fs4Operations::IsSecurityVersionAccessible(chip_type_t chip_type) { DPRINTF(("Fs4Operations::IsSecurityVersionAccessible\n")); bool res = true; // Security version feature depends on life-cycle if (IsLifeCycleSupported()) { switch (chip_type) { case CT_BLUEFIELD2: case CT_CONNECTX6DX: case CT_CONNECTX6LX: res = false; break; default: break; } } else { res = false; } DPRINTF(("Fs4Operations::IsSecurityVersionAccessible res = %s\n", res ? "TRUE" : "FALSE")); return res; } bool Fs4Operations::QuerySecurityFeatures() { DPRINTF( ("Fs4Operations::QuerySecurityFeatures _fwImgInfo.ext_info.chip_type = %d\n", _fwImgInfo.ext_info.chip_type)); _fs3ImgInfo.ext_info.image_security_version = _security_version; _fs3ImgInfo.ext_info.device_security_version_access_method = NOT_VALID; if (_ioAccess->is_flash()) { try { if (IsLifeCycleAccessible(_fwImgInfo.ext_info.chip_type)) { CRSpaceRegisters crSpaceReg(getMfileObj(), _fwImgInfo.ext_info.chip_type); _fs3ImgInfo.ext_info.life_cycle = crSpaceReg.getLifeCycle(); _fs3ImgInfo.ext_info.global_image_status = crSpaceReg.getGlobalImageStatus(); if (_fs3ImgInfo.ext_info.life_cycle == GA_SECURED) { if (IsSecurityVersionAccessible(_fwImgInfo.ext_info.chip_type)) { _fs3ImgInfo.ext_info.device_security_version_gw = crSpaceReg.getSecurityVersion(); _fs3ImgInfo.ext_info.device_security_version_access_method = DIRECT_ACCESS; } } } } catch (exception& e) { printf("%s\n", e.what()); return false; } } return true; } u_int8_t Fs4Operations::FwType() { return FIT_FS4; } bool Fs4Operations::FwInit() { if (!Fs3Operations::FwInit()) { return false; } _fs4ImgInfo.firstItocArrayIsEmpty = 0; _fs4ImgInfo.smallestDTocAddr = 0; _fwImgInfo.fwType = (fw_img_type_t)FwType(); return true; } bool Fs4Operations::CheckFs4ImgSize(Fs4Operations& imageOps, bool useImageDevData) { // check if max itoc is not overwriting the chunk if (imageOps._fwImgInfo.lastImageAddr >= (u_int32_t)(imageOps._fwImgInfo.imgStart + (1 << imageOps._maxImgLog2Size))) { return errmsg(MLXFW_IMAGE_TOO_LARGE_ERR, "Last ITOC section ends at address (0x%x) which is greater than max size of image (0x%x)", imageOps._fwImgInfo.lastImageAddr, imageOps._maxImgLog2Size); } // check if minimal dtoc section is not overwriting max itoc section if (useImageDevData) { if (imageOps._fs4ImgInfo.smallestDTocAddr < imageOps._fwImgInfo.lastImageAddr) { return errmsg(MLXFW_DTOC_OVERWRITE_CHUNK, "First DTOC address (0x%x) is less than last ITOC address (0x%x)", imageOps._fs4ImgInfo.smallestDTocAddr, imageOps._fwImgInfo.lastImageAddr); } } return true; } bool Fs4Operations::GetImageSizeFromImageInfo(u_int32_t* imageSize) { DPRINTF(("Fs4Operations::GetImageSizeFromImageInfo\n")); fw_info_t fwInfo; if (!encryptedFwQuery(&fwInfo, false, true)) { return errmsg("%s", err()); } *imageSize = fwInfo.fw_info.burn_image_size; return true; } bool Fs4Operations::FwReadEncryptedData(void* image, u_int32_t imageSize, bool verbose) { DPRINTF(("Fs4Operations::FwReadEncryptedData\n")); vector data; data.resize(imageSize); if (!(*_ioAccess).read(_fwImgInfo.imgStart, data.data(), imageSize, verbose)) { return errmsg("%s - read error (%s)\n", "Image", (*_ioAccess).err()); } memcpy(image, data.data(), imageSize); return true; } bool Fs4Operations::FwReadData(void* image, u_int32_t* imageSize, bool verbose) { //* Read encrypted data bool is_encrypted = false; DPRINTF(("Fs4Operations::FwReadData\n")); if (!isEncrypted(is_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (is_encrypted) { if (image == NULL) { bool result = GetImageSizeFromImageInfo(imageSize); DPRINTF(("Fs4Operations::FwReadData imageSize=0x%x result=%s\n", *imageSize, result ? "true" : "false")); return result; } else { return FwReadEncryptedData(image, *imageSize, verbose); } } //* Read non-encrypted data struct QueryOptions queryOptions; if (!imageSize) { return errmsg("bad parameter is given to FwReadData\n"); } queryOptions.readRom = true; queryOptions.quickQuery = false; if (image == NULL) { // When we need only to get size, no need for reading entire image queryOptions.readRom = false; queryOptions.quickQuery = true; } // Avoid Warning if (!FsVerifyAux((VerifyCallBack)NULL, 0, queryOptions, false, verbose)) { return false; } _imageCache.get((u_int8_t*)image, _fwImgInfo.lastImageAddr); // size will be always as (_ioAccess)->get_size(), as the dtoc always at the end *imageSize = (_ioAccess)->get_size(); // take device sections if (image != NULL) { _imageCache.get((u_int8_t*)image + _fs4ImgInfo.smallestDTocAddr, _fs4ImgInfo.smallestDTocAddr, (_ioAccess)->get_size() - _fs4ImgInfo.smallestDTocAddr); } return true; } bool Fs4Operations::Fs4RemoveSectionAux(fs3_section_t sectionType) { int itocEntryIndex = 0; struct fs4_toc_info* itocEntry = (struct fs4_toc_info*)NULL; TocArray* itocArray = &_fs4ImgInfo.itocArr; if (!Fs4GetItocInfo(itocArray->tocArr, itocArray->numOfTocs, sectionType, itocEntry, itocEntryIndex)) { return false; } u_int32_t sectionSizeInBytes = itocEntry->section_data.size(); u_int32_t sectionSizeInDW = sectionSizeInBytes >> 2; // update the sections that are after this section for (int i = itocEntryIndex + 1; i < itocArray->numOfTocs; i++) { struct fs4_toc_info* tocInfo = itocArray->tocArr + i; tocInfo->toc_entry.flash_addr = tocInfo->toc_entry.flash_addr - sectionSizeInDW; tocInfo->entry_addr = tocInfo->entry_addr - IMAGE_LAYOUT_ITOC_ENTRY_SIZE; updateTocEntryCRC(tocInfo); updateTocEntryData(tocInfo); Fs3UpdateImgCache(tocInfo->data, tocInfo->entry_addr, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); Fs3UpdateImgCache(tocInfo->section_data.data(), tocInfo->toc_entry.flash_addr << 2, tocInfo->toc_entry.size << 2); } _fwImgInfo.lastImageAddr = _fwImgInfo.lastImageAddr - sectionSizeInBytes; // remove the itoc from the array and update the cache for (int i = itocEntryIndex + 1; i < (itocArray->numOfTocs + 1); i++) { TocArray::copyTocArrEntry(itocArray->tocArr + i - 1, itocArray->tocArr + i); } _fs4ImgInfo.itocArr.numOfTocs--; u_int32_t lastItocSectAddress = itocArray->tocArrayAddr + IMAGE_LAYOUT_ITOC_HEADER_SIZE + itocArray->numOfTocs * IMAGE_LAYOUT_ITOC_ENTRY_SIZE; updateTocEndEntryInImgCache(lastItocSectAddress); return true; } bool Fs4Operations::Fs4RemoveSection(fs3_section_t sectionType, ProgressCallBack progressFunc) { vector newImageData; if (!Fs4RemoveSectionAux(sectionType)) { return false; } _imageCache.get(newImageData, 0, (_ioAccess)->get_size()); burnDataParamsT params; params.data = (u_int32_t*)&newImageData[0]; params.dataSize = newImageData.size(); params.progressFunc = progressFunc; params.calcSha = _signatureExists; if (!FwBurnData(params)) { return false; } return true; } bool Fs4Operations::FwDeleteRom(bool ignoreProdIdCheck, ProgressCallBack progressFunc) { // run int query to get product ver if (!FsIntQueryAux(true, false)) { return false; } if (!RomCommonCheck(ignoreProdIdCheck, true)) { return false; } return Fs4RemoveSection(FS3_ROM_CODE, progressFunc); } bool Fs4Operations::Fs4AddSectionAux(fs3_section_t sectionType, enum CRCTYPE crcType, u_int8_t zippedImage, u_int32_t* newSectData, u_int32_t newSectSize) { struct fs4_toc_info* itocEntry = (struct fs4_toc_info*)NULL; int itocEntryIndex = 0; TocArray* itocArray = &_fs4ImgInfo.itocArr; struct fs4_toc_info* newITocEntry; // search for the section, remove it if found if (Fs4GetItocInfo(itocArray->tocArr, itocArray->numOfTocs, sectionType, itocEntry, itocEntryIndex)) { if (getImageSize() - (itocEntry->toc_entry.size << 2) + newSectSize > (u_int32_t)(1 << _maxImgLog2Size)) { return errmsg("Section size is too large"); } if (!Fs4RemoveSectionAux(sectionType)) { return false; } } else { if (getImageSize() + newSectSize > (u_int32_t)(1 << _maxImgLog2Size)) { return errmsg("Section size is too large"); } if (itocArray->numOfTocs + 1 > MAX_TOCS_NUM) { return errmsg("Cannot add TOC entry, too many entries in iTOC array."); } } newITocEntry = itocArray->tocArr + itocArray->numOfTocs; // update the new itoc entry Fs4Operations::TocArray::initEmptyTocArrEntry(newITocEntry); newITocEntry->entry_addr = itocArray->tocArrayAddr + TOC_HEADER_SIZE + itocArray->numOfTocs * TOC_ENTRY_SIZE; newITocEntry->toc_entry.type = sectionType; newITocEntry->toc_entry.size = newSectSize >> 2; newITocEntry->toc_entry.flash_addr = (_fwImgInfo.lastImageAddr - _fwImgInfo.imgStart) >> 2; newITocEntry->toc_entry.crc = crcType; newITocEntry->toc_entry.zipped_image = zippedImage; newITocEntry->toc_entry.section_crc = CalcImageCRC((u_int32_t*)newSectData, newSectSize >> 2); updateTocEntryCRC(newITocEntry); updateTocEntryData(newITocEntry); updateTocEntrySectionData(newITocEntry, (u_int8_t*)newSectData, newSectSize); itocArray->numOfTocs++; _fwImgInfo.lastImageAddr += newSectSize; Fs3UpdateImgCache(newITocEntry->data, newITocEntry->entry_addr, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); u_int32_t lastItocSectAddress = itocArray->tocArrayAddr + IMAGE_LAYOUT_ITOC_HEADER_SIZE + itocArray->numOfTocs * IMAGE_LAYOUT_ITOC_ENTRY_SIZE; updateTocEndEntryInImgCache(lastItocSectAddress); Fs3UpdateImgCache(newITocEntry->section_data.data(), newITocEntry->toc_entry.flash_addr << 2, newITocEntry->toc_entry.size << 2); return true; } bool Fs4Operations::Fs4AddSection(fs3_section_t sectionType, enum CRCTYPE crcType, u_int8_t zippedImage, u_int32_t* newSectData, u_int32_t newSectSize, ProgressCallBack progressFunc) { vector newImageData; if (!Fs4AddSectionAux(sectionType, crcType, zippedImage, newSectData, newSectSize)) { return false; } _imageCache.get(newImageData, 0, (_ioAccess)->get_size()); burnDataParamsT params; params.data = (u_int32_t*)&newImageData[0]; params.dataSize = newImageData.size(); params.progressFunc = progressFunc; params.calcSha = _signatureExists; if (!FwBurnData(params)) { return false; } return true; } bool Fs4Operations::FwBurnRom(FImage* romImg, bool ignoreProdIdCheck, bool ignoreDevidCheck, ProgressCallBack progressFunc) { roms_info_t romsInfo; if (romImg == NULL) { return errmsg("Bad ROM image is given."); } if (romImg->getBufLength() == 0) { return errmsg("Bad ROM file: Empty file."); } if (!FwOperations::getRomsInfo(romImg, romsInfo)) { return errmsg("Failed to read given ROM."); } if (!FsIntQueryAux(false, false)) { return false; } if (!ignoreDevidCheck && !FwOperations::checkMatchingExpRomDevId(_fwImgInfo.ext_info.dev_type, romsInfo)) { return errmsg("Image file ROM: FW is for device %d, but Exp-ROM is " "for device %d\n", _fwImgInfo.ext_info.dev_type, romsInfo.exp_rom_com_devid); } if (!RomCommonCheck(ignoreProdIdCheck, false)) { return false; } if (romImg->getBuf() == NULL) { return false; } return Fs4AddSection(FS3_ROM_CODE, INITOCENTRY, 0, romImg->getBuf(), romImg->getBufLength(), progressFunc); } void Fs4Operations::updateTocEndEntryInImgCache(u_int32_t lastItocSectAddress) { u_int8_t tocEndBuff[IMAGE_LAYOUT_ITOC_ENTRY_SIZE]; memset(tocEndBuff, FS3_END, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); Fs3UpdateImgCache(tocEndBuff, lastItocSectAddress, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); } void Fs4Operations::updateTocEntryCRC(struct fs4_toc_info* tocEntry) { u_int8_t tocEntryBuff[IMAGE_LAYOUT_ITOC_ENTRY_SIZE]; memset(tocEntryBuff, 0, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); image_layout_itoc_entry_pack(&(tocEntry->toc_entry), tocEntryBuff); tocEntry->toc_entry.itoc_entry_crc = CalcImageCRC((u_int32_t*)tocEntryBuff, TOC_ENTRY_SIZE / 4 - 1); } void Fs4Operations::updateTocHeaderCRC(struct image_layout_itoc_header* tocHeader) { u_int8_t tocHeaderBuff[IMAGE_LAYOUT_ITOC_HEADER_SIZE]; memset(tocHeaderBuff, 0, IMAGE_LAYOUT_ITOC_HEADER_SIZE); image_layout_itoc_header_pack(tocHeader, tocHeaderBuff); tocHeader->itoc_entry_crc = CalcImageCRC((u_int32_t*)tocHeaderBuff, IMAGE_LAYOUT_ITOC_HEADER_SIZE / 4 - 1); } void Fs4Operations::updateTocEntryData(struct fs4_toc_info* tocEntry) { memset(tocEntry->data, 0, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); image_layout_itoc_entry_pack(&(tocEntry->toc_entry), tocEntry->data); } void Fs4Operations::updateTocEntrySectionData(struct fs4_toc_info* tocEntry, u_int8_t* data, u_int32_t dataSize) { tocEntry->section_data.resize(dataSize); memcpy(tocEntry->section_data.data(), data, dataSize); } bool Fs4Operations::restoreWriteProtection(mflash* mfl, u_int8_t banksNum, write_protect_info_t protect_info[]) { for (unsigned int i = 0; i < banksNum; i++) { int rc = mf_set_write_protect(mfl, i, protect_info + i); if (rc != MFE_OK) { return errmsg("Failed to restore write protection settings: %s", mf_err2str(rc)); } } return true; } bool Fs4Operations::CreateDtoc(vector& img, u_int8_t* SectionData, u_int32_t section_size, u_int32_t flash_data_addr, fs3_section_t section, u_int32_t tocEntryAddr, CRCTYPE crc) { struct fs4_toc_info itoc_info; memset(&itoc_info.data, 0, sizeof(itoc_info.data)); memset(&itoc_info.toc_entry, 0, sizeof(struct image_layout_itoc_entry)); itoc_info.section_data.resize(section_size, 0xff); itoc_info.entry_addr = tocEntryAddr; struct image_layout_itoc_entry* toc_entry_p = &(itoc_info.toc_entry); toc_entry_p->size = section_size >> 2; toc_entry_p->type = (u_int8_t)section; toc_entry_p->crc = (int)crc; toc_entry_p->flash_addr = flash_data_addr >> 2; if (crc == INITOCENTRY) { u_int32_t new_crc = CalcImageCRC((u_int32_t*)SectionData, toc_entry_p->size); toc_entry_p->section_crc = new_crc; } updateTocEntryCRC(&itoc_info); u_int8_t itoc_data[IMAGE_LAYOUT_ITOC_ENTRY_SIZE] = {0}; image_layout_itoc_entry_pack(toc_entry_p, itoc_data); memcpy(img.data() + tocEntryAddr, itoc_data, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); return true; } #define CONNECTX5_NV_LOG_SIZE 2 * (CONNECTX5_NV_DATA_SIZE) #define CX5_FLASH_SIZE 0x1000000 bool Fs4Operations::RestoreDevToc(vector& img, char* psid, dm_dev_id_t devid_t, const image_layout_uid_entry& base_guid, const image_layout_uid_entry& base_mac) { /*DTOC HEADER*/ u_int32_t flash_data_addr = 0; u_int32_t flash_size = 2 * CX5_FLASH_SIZE; u_int32_t nvlogSize = CONNECTX5_NV_LOG_SIZE; if (devid_t == DeviceConnectX5) { flash_size = CX5_FLASH_SIZE; nvlogSize = CONNECTX5_NV_LOG_SIZE / 2; } img.resize(flash_size, 0xff); u_int32_t dtocPtr = flash_size - FS4_DEFAULT_SECTOR_SIZE; u_int8_t dtocHeader[] = {0x44, 0x54, 0x4f, 0x43, 0x04, 0x08, 0x15, 0x16, 0x23, 0x42, 0xca, 0xfa, 0xba, 0xca, 0xfe, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x90}; memcpy(img.data() + dtocPtr, dtocHeader, IMAGE_LAYOUT_ITOC_HEADER_SIZE); u_int32_t section_index = 0; u_int32_t entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; /* NV_LOG */ if (devid_t == DeviceConnectX5) { flash_data_addr = 0xf90000; } else { flash_data_addr = 0x1f00000; } u_int8_t NvLogBuffer[CONNECTX5_NV_LOG_SIZE] = {0}; memcpy(img.data() + flash_data_addr, NvLogBuffer, nvlogSize); CreateDtoc(img, NvLogBuffer, CONNECTX5_NV_LOG_SIZE, flash_data_addr, FS3_FW_NV_LOG, entryAddr, NOCRC); /* NV_DATA 0*/ section_index++; entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; if (devid_t == DeviceConnectX5) { flash_data_addr = 0xfb0000; } else { flash_data_addr = 0x1f20000; } u_int8_t NvDataBuffer[CONNECTX5_NV_DATA_SIZE] = {0}; memcpy(img.data() + flash_data_addr, NvDataBuffer, CONNECTX5_NV_DATA_SIZE); CreateDtoc(img, NvDataBuffer, CONNECTX5_NV_DATA_SIZE, flash_data_addr, FS3_NV_DATA0, entryAddr, NOCRC); /* NV_DATA 2*/ section_index++; entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; if (devid_t == DeviceConnectX5) { flash_data_addr = 0xfc0000; } else { flash_data_addr = 0x1f40000; } memcpy(img.data() + flash_data_addr, NvDataBuffer, CONNECTX5_NV_DATA_SIZE); CreateDtoc(img, NvDataBuffer, CONNECTX5_NV_DATA_SIZE, flash_data_addr, FS3_NV_DATA2, entryAddr, NOCRC); /*DEV_INFO*/ if (devid_t == DeviceConnectX5) { flash_data_addr = 0xfd0000; } else { flash_data_addr = 0x1f60000; } section_index++; entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; struct image_layout_device_info dev_info; memset(&dev_info, 0, sizeof(dev_info)); u_int8_t DevInfoBuffer[IMAGE_LAYOUT_DEVICE_INFO_SIZE] = {0}; dev_info.signature0 = DEV_INFO_SIG0; dev_info.signature1 = DEV_INFO_SIG1; dev_info.signature2 = DEV_INFO_SIG2; dev_info.signature3 = DEV_INFO_SIG3; dev_info.minor_version = 0; dev_info.major_version = 2; dev_info.vsd_vendor_id = 0x15b3; dev_info.guids.guids.num_allocated = base_guid.num_allocated; dev_info.guids.guids.num_allocated_msb = base_guid.num_allocated_msb; dev_info.guids.guids.step = base_guid.step; dev_info.guids.guids.uid = base_guid.uid; dev_info.guids.macs.num_allocated = base_mac.num_allocated; dev_info.guids.macs.num_allocated_msb = base_mac.num_allocated_msb; dev_info.guids.macs.step = base_mac.step; dev_info.guids.macs.uid = base_mac.uid; image_layout_device_info_pack(&dev_info, DevInfoBuffer); u_int32_t newSectionCRC = CalcImageCRC((u_int32_t*)DevInfoBuffer, IMAGE_LAYOUT_DEVICE_INFO_SIZE / 4 - 1); u_int32_t newCRC = TOCPU1(newSectionCRC); ((u_int32_t*)DevInfoBuffer)[IMAGE_LAYOUT_DEVICE_INFO_SIZE / 4 - 1] = newCRC; memcpy(img.data() + flash_data_addr, DevInfoBuffer, IMAGE_LAYOUT_DEVICE_INFO_SIZE); CreateDtoc(img, DevInfoBuffer, IMAGE_LAYOUT_DEVICE_INFO_SIZE, flash_data_addr, FS3_DEV_INFO, entryAddr, INSECTION); /*DEV_INFO FAILSAFE*/ if (devid_t == DeviceConnectX5) { flash_data_addr = 0xfe0000; } else { flash_data_addr = 0x1f70000; } section_index++; entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; dev_info.signature0 = 0; dev_info.signature1 = 0; dev_info.signature2 = 0; dev_info.signature3 = 0; image_layout_device_info_pack(&dev_info, DevInfoBuffer); newSectionCRC = CalcImageCRC((u_int32_t*)DevInfoBuffer, IMAGE_LAYOUT_DEVICE_INFO_SIZE / 4 - 1); newCRC = TOCPU1(newSectionCRC); ((u_int32_t*)DevInfoBuffer)[IMAGE_LAYOUT_DEVICE_INFO_SIZE / 4 - 1] = newCRC; memcpy(img.data() + flash_data_addr, DevInfoBuffer, IMAGE_LAYOUT_DEVICE_INFO_SIZE); CreateDtoc(img, DevInfoBuffer, IMAGE_LAYOUT_DEVICE_INFO_SIZE, flash_data_addr, FS3_DEV_INFO, entryAddr, INSECTION); /*MFG_INFO*/ section_index++; entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; if (devid_t == DeviceConnectX5) { flash_data_addr = 0xff8000; } else { flash_data_addr = 0x1ff8000; } struct cx4fw_mfg_info cx4_mfg_info; u_int8_t MfgInfoData[CX4FW_MFG_INFO_SIZE] = {0}; memset(&cx4_mfg_info, 0, sizeof(cx4_mfg_info)); cx4_mfg_info.guids_override_en = 1; // get the GUIDs from DEV_INFO cx4_mfg_info.guids.guids.num_allocated = base_guid.num_allocated; cx4_mfg_info.guids.guids.step = base_guid.step; cx4_mfg_info.guids.guids.uid = base_guid.uid; cx4_mfg_info.guids.macs.num_allocated = base_mac.num_allocated; cx4_mfg_info.guids.macs.step = base_mac.step; cx4_mfg_info.guids.macs.uid = base_mac.uid; cx4_mfg_info.major_version = 1; cx4_mfg_info.minor_version = 0; strncpy(cx4_mfg_info.psid, psid, PSID_LEN); cx4fw_mfg_info_pack(&cx4_mfg_info, MfgInfoData); memcpy(img.data() + flash_data_addr, MfgInfoData, CX4FW_MFG_INFO_SIZE); CreateDtoc(img, MfgInfoData, CX4FW_MFG_INFO_SIZE, flash_data_addr, FS3_MFG_INFO, entryAddr, INITOCENTRY); /*VPD_R0*/ section_index++; entryAddr = dtocPtr + TOC_HEADER_SIZE + section_index * TOC_ENTRY_SIZE; struct image_layout_itoc_entry toc_entry; memset(&toc_entry, 0, sizeof(struct image_layout_itoc_entry)); u_int8_t entryBuffer[TOC_ENTRY_SIZE] = {0}; flash_data_addr += CX4FW_MFG_INFO_SIZE; toc_entry.size = 0; toc_entry.type = FS3_VPD_R0; toc_entry.flash_addr = flash_data_addr >> 2; toc_entry.crc = (int)INITOCENTRY; toc_entry.section_crc = CalcImageCRC((u_int32_t*)NULL, toc_entry.size); image_layout_itoc_entry_pack(&toc_entry, entryBuffer); u_int32_t entry_crc = CalcImageCRC((u_int32_t*)entryBuffer, (TOC_ENTRY_SIZE / 4) - 1); toc_entry.itoc_entry_crc = entry_crc; image_layout_itoc_entry_pack(&toc_entry, entryBuffer); memcpy(img.data() + entryAddr, entryBuffer, TOC_ENTRY_SIZE); return true; } bool Fs4Operations::AlignDeviceSections(FwOperations* imageOps) { bool rc = true; u_int8_t data[FS4_DEFAULT_SECTOR_SIZE] = {0}; struct image_layout_itoc_header itocHeader; image_layout_itoc_header_unpack(&itocHeader, ((Fs4Operations*)imageOps)->_fs4ImgInfo.itocArr.tocHeader); if (itocHeader.flash_layout_version != 1) { return errmsg("Please update MFT package"); } u_int32_t log2_chunk_size_bu = _ioAccess->get_log2_chunk_size(); bool is_image_in_odd_chunks_bu = _ioAccess->get_is_image_in_odd_chunks(); unsigned int retries = 0; const int nvLogIndex = 0, nvData0Index = 1, nvData1Index = 2, devInfo0Index = 3, devInfo1Index = 4; struct fs4_toc_info* sections[COUNT_OF_SECTIONS_TO_ALIGN] = {(struct fs4_toc_info*)NULL, (struct fs4_toc_info*)NULL, (struct fs4_toc_info*)NULL, (struct fs4_toc_info*)NULL, (struct fs4_toc_info*)NULL}; const char* sectionsNames[COUNT_OF_SECTIONS_TO_ALIGN] = { GetSectionNameByType(FS3_FW_NV_LOG), GetSectionNameByType(FS3_NV_DATA0), GetSectionNameByType(FS3_NV_DATA2), GetSectionNameByType(FS3_DEV_INFO), GetSectionNameByType(FS3_DEV_INFO)}; const u_int32_t newOffsets[COUNT_OF_SECTIONS_TO_ALIGN] = {0xf90000, 0xfb0000, 0xfc0000, 0xfd0000, 0xfe0000}; const u_int32_t offsets[COUNT_OF_SECTIONS_TO_ALIGN] = {0xc00000, 0xc10000, 0xc20000, 0xc30000, 0xc40000}; // find related sections for (int i = 0; i < _fs4ImgInfo.dtocArr.numOfTocs; i++) { struct fs4_toc_info* toc = &_fs4ImgInfo.dtocArr.tocArr[i]; if (toc->toc_entry.type == FS3_FW_NV_LOG) { sections[nvLogIndex] = toc; } else if (toc->toc_entry.type == FS3_NV_DATA0) { sections[nvData0Index] = toc; } else if (toc->toc_entry.type == FS3_NV_DATA2) { sections[nvData1Index] = toc; } else if (toc->toc_entry.type == FS3_DEV_INFO) { if (sections[devInfo0Index]) { sections[devInfo1Index] = toc; } else { sections[devInfo0Index] = toc; } } } for (unsigned int i = 0; i < COUNT_OF_SECTIONS_TO_ALIGN; i++) { if (sections[i] == NULL) { return errmsg("%s section was not found!", sectionsNames[i]); } if ((sections[i]->toc_entry.flash_addr << 2) != offsets[i]) { return errmsg("The section %s was expected to be at address " "0x%x but it is at 0x%x", sectionsNames[i], offsets[i], sections[i]->toc_entry.flash_addr << 2); } for (int j = 0; j < _fs4ImgInfo.dtocArr.numOfTocs; j++) { struct fs4_toc_info* toc = &_fs4ImgInfo.dtocArr.tocArr[j]; u_int32_t start = toc->toc_entry.flash_addr << 2; u_int32_t end = (toc->toc_entry.flash_addr << 2) + (toc->toc_entry.size << 2) - 1; if (checkIfSectionsOverlap(newOffsets[i], newOffsets[i] + (sections[i]->toc_entry.size << 2) - 1, start, end)) { return errmsg("%s section's new address overlaps with %s section", sectionsNames[i], GetSectionNameByType(toc->toc_entry.type)); } } // check if new offset overlaps with other new offsets for (unsigned int j = 0; j < COUNT_OF_SECTIONS_TO_ALIGN; j++) { if (i != j) { if (checkIfSectionsOverlap(newOffsets[i], newOffsets[i] + (sections[i]->toc_entry.size << 2) - 1, newOffsets[j], newOffsets[j] + (sections[j]->toc_entry.size << 2) - 1)) { return errmsg("%s section's new address overlaps with %s section new address", sectionsNames[i], sectionsNames[j]); } } } } FBase* origFlashObj = (FBase*)NULL; FBase* flashObjWithOcr = (FBase*)NULL; // Re-open flash with -ocr if needed if (_fwParams.ignoreCacheRep == 0) { origFlashObj = _ioAccess; _fwParams.ignoreCacheRep = 1; if (!FwOperations::FwAccessCreate(_fwParams, &_ioAccess)) { _ioAccess = origFlashObj; _fwParams.ignoreCacheRep = 0; return errmsg("Failed to open device for direct flash access"); } flashObjWithOcr = _ioAccess; } mflash* mfl = (mflash*)NULL; // disable write protection: ext_flash_attr_t attr; memset(&attr, 0x0, sizeof(attr)); if (!((Flash*)_ioAccess)->get_attr(attr)) { rc = false; goto cleanup; } mfl = ((Flash*)_ioAccess)->getMflashObj(); write_protect_info_t protect_info; memset(&protect_info, 0, sizeof(protect_info)); for (unsigned int i = 0; i < attr.banks_num; i++) { int rc = mf_set_write_protect(mfl, i, &protect_info); if (rc != MFE_OK) { errmsg("Failed to disable flash write protection: %s", mf_err2str(rc)); rc = false; goto cleanup; } } while (((Flash*)_ioAccess)->is_flash_write_protected() && retries++ < 5) { msleep(500); } if (retries == 5) { errmsg("Failed to disable flash write protection"); rc = false; goto cleanup; } if (flashObjWithOcr != NULL) { _ioAccess = origFlashObj; _fwParams.ignoreCacheRep = 0; } // read the sections from the flash _readSectList.push_back(FS3_FW_NV_LOG); _readSectList.push_back(FS3_NV_DATA0); _readSectList.push_back(FS3_NV_DATA2); _readSectList.push_back(FS3_DEV_INFO); if (!FsIntQueryAux()) { _readSectList.pop_back(); _readSectList.pop_back(); _readSectList.pop_back(); _readSectList.pop_back(); rc = false; goto cleanup; } _readSectList.pop_back(); _readSectList.pop_back(); _readSectList.pop_back(); _readSectList.pop_back(); // move to the new offsets: for (unsigned int i = 0; i < COUNT_OF_SECTIONS_TO_ALIGN; i++) { // flash address is in DW and offset is given in bytes sections[i]->toc_entry.flash_addr = newOffsets[i] >> 2; // we updated the entry => calculate new CRC updateTocEntryCRC(sections[i]); // update the image cache with the toc entry changes: u_int8_t buff[IMAGE_LAYOUT_ITOC_ENTRY_SIZE]; memset(buff, 0x0, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); image_layout_itoc_entry_pack(&(sections[i]->toc_entry), buff); Fs3UpdateImgCache(buff, _fs4ImgInfo.dtocArr.tocArrayAddr + ((sections[i] - _fs4ImgInfo.dtocArr.tocArr + 1) * IMAGE_LAYOUT_ITOC_ENTRY_SIZE), IMAGE_LAYOUT_ITOC_ENTRY_SIZE); // write the section data to the new offset if (!writeImageEx((ProgressCallBackEx)NULL, NULL, (ProgressCallBack)NULL, newOffsets[i], sections[i]->section_data.data(), sections[i]->section_data.size(), true, true, 0, 0)) { if (!restoreWriteProtection(mfl, attr.banks_num, attr.protect_info_array)) { rc = false; goto cleanup; } errmsg("Failed to move %s Section", sectionsNames[i]); rc = false; goto cleanup; } // update the image cache with the new section: Fs3UpdateImgCache(sections[i]->section_data.data(), newOffsets[i], sections[i]->section_data.size()); } // set dtoc.header.flash_layout_version to 0x1 struct image_layout_itoc_header dtocHeader; image_layout_itoc_header_unpack(&dtocHeader, _fs4ImgInfo.dtocArr.tocHeader); dtocHeader.flash_layout_version = 0x1; updateTocHeaderCRC(&dtocHeader); image_layout_itoc_header_pack(&dtocHeader, _fs4ImgInfo.dtocArr.tocHeader); // update image cache with the dtoc headers changes: Fs3UpdateImgCache(_fs4ImgInfo.dtocArr.tocHeader, _fs4ImgInfo.dtocArr.tocArrayAddr, IMAGE_LAYOUT_ITOC_HEADER_SIZE); // write the dtoc array _imageCache.get(data, _fs4ImgInfo.dtocArr.tocArrayAddr, FS4_DEFAULT_SECTOR_SIZE); if (!writeImageEx((ProgressCallBackEx)NULL, NULL, (ProgressCallBack)NULL, _fs4ImgInfo.dtocArr.tocArrayAddr, data, FS4_DEFAULT_SECTOR_SIZE, true, true, 0, 0)) { if (!restoreWriteProtection(mfl, attr.banks_num, attr.protect_info_array)) { rc = false; goto cleanup; } errmsg("Failed to update DToC Header"); rc = false; goto cleanup; } if (flashObjWithOcr != NULL) { _ioAccess = flashObjWithOcr; _fwParams.ignoreCacheRep = 1; } if (!restoreWriteProtection(mfl, attr.banks_num, attr.protect_info_array)) { rc = false; goto cleanup; } cleanup: if (attr.type_str) { delete attr.type_str; } if (flashObjWithOcr != NULL) { _ioAccess = origFlashObj; _fwParams.ignoreCacheRep = 0; flashObjWithOcr->close(); delete flashObjWithOcr; } _ioAccess->set_address_convertor(log2_chunk_size_bu, is_image_in_odd_chunks_bu); return rc; } bool Fs4Operations::CheckIfAlignmentIsNeeded(FwOperations* imgops) { Fs4Operations& imageOps = *((Fs4Operations*)imgops); struct image_layout_itoc_header itocHeader, dtocHeader; image_layout_itoc_header_unpack(&dtocHeader, _fs4ImgInfo.dtocArr.tocHeader); image_layout_itoc_header_unpack(&itocHeader, imageOps._fs4ImgInfo.itocArr.tocHeader); if (dtocHeader.flash_layout_version < itocHeader.flash_layout_version) { return true; } return false; } bool Fs4Operations::FwExtractEncryptedImage(vector& img, bool maskMagicPattern, bool verbose, bool ignoreImageStart) { //* Choosing the correct io to read from FBase* io = _ioAccess; if (_encrypted_image_io_access) { io = _encrypted_image_io_access; // If encrypted image was given we'll read from it } getImgStart(); // Stores image start value in _fwImgInfo.imgStart u_int32_t image_start = 0; if (!ignoreImageStart) { image_start = _fwImgInfo.imgStart; } //* Get image size u_int32_t burn_image_size; if (!GetImageSizeFromImageInfo(&burn_image_size)) { return errmsg("%s", err()); } //* Read image from _fwImgInfo.imgStart to burn_image_size (_fwImgInfo.imgStart expected to be zero) DPRINTF(("Fs4Operations::FwExtractEncryptedImage - Reading 0x%x bytes from address 0x%x\n", burn_image_size, image_start)); img.resize(burn_image_size); if (!(*io).read(image_start, img.data(), burn_image_size, verbose)) { return errmsg("%s - read error (%s)\n", "image", (*io).err()); } if (maskMagicPattern) { memset(img.data(), 0xFF, 16); } return true; } bool Fs4Operations::readFS4Log2ChunkSizeFromImage(u_int32_t& log2_chunk_size) { if (_ioAccess->is_flash()) { return errmsg("readLog2ChunkSizeFromImage operation not supported on device\n"); } if (!getImgStart()) { // Stores image start value in _fwImgInfo.imgStart return errmsg("Failed to get image start\n"); } //* Reading begin_area.tools_area.log2_img_slot_size from image // TODO - read begin_area.hw_pointers.tools_ptr then read begin_area.tools_area.log2_img_slot_size u_int8_t buff[FS3_BOOT_START] = {0}; _ioAccess->set_address_convertor(0, 0); READBUF((*_ioAccess), _fwImgInfo.imgStart, buff, FS3_BOOT_START, "Image header"); TOCPUn(buff, FS3_BOOT_START_IN_DW); log2_chunk_size = EXTRACT(buff[FS3_LOG2_CHUNK_SIZE_DW_OFFSET], 16, 8) ? EXTRACT(buff[FS3_LOG2_CHUNK_SIZE_DW_OFFSET], 16, 8) : FS4_ENCRYPTED_LOG_CHUNK_SIZE; DPRINTF(("Fs4Operations::readFS4Log2ChunkSizeFromImage - log2_chunk_size = %d\n", log2_chunk_size)); return true; } bool Fs4Operations::DoAfterBurnJobs(const u_int32_t magic_pattern[], ExtBurnParams& burnParams, Flash* flash_access, u_int32_t new_image_start, u_int32_t log2_chunk_size) { u_int32_t zeroes = 0; u_int32_t old_fw_signatrue_addr = 0; bool boot_address_was_updated = bootAddrUpdate(flash_access, new_image_start, burnParams); if (!burnParams.burnFailsafe) { // When burning in nofs, remnant of older image with different chunk size // may reside on the flash - // Invalidate all images marking on flash except the one we've just burnt invalidateOldFWImages(magic_pattern, flash_access, new_image_start); } else { // invalidate previous signature flash_access->set_address_convertor(0, 0); if (new_image_start == 0x0) { old_fw_signatrue_addr = 1 << log2_chunk_size; } DPRINTF( ("Fs4Operations::DoAfterBurnJobs - Invalidating old fw signature at addr 0x%x\n", old_fw_signatrue_addr)); if (!flash_access->write(old_fw_signatrue_addr, &zeroes, sizeof(zeroes), true)) { return errmsg(MLXFW_FLASH_WRITE_ERR, "Failed to invalidate old fw signature: %s", flash_access->err()); } } if (boot_address_was_updated == false) { report_warn("Failed to update FW boot address. Power cycle the device in order to load the new FW.\n"); } return true; } bool Fs4Operations::burnEncryptedImage(FwOperations* imageOps, ExtBurnParams& burnParams) { u_int8_t is_curr_image_on_second_partition; u_int32_t log2_chunk_size = 0; u_int32_t new_image_start_addr; u_int32_t total_img_size = 0; if (_ioAccess == NULL) { return errmsg("ioAccess doesn't exist\n"); } if (_signatureMngr == NULL) { return errmsg("Signature manager doesn't exist\n"); } //* Preparations in case we need to burn device data (DTOC) if (burnParams.useImgDevData) { //* Check if flash is write protected bool is_write_protected; if (!isWriteProtected(is_write_protected)) { return errmsg("%s", err()); } if (is_write_protected) { return errmsg("Cannot burn device data sections, Flash is write protected."); } //* Parse DTOC and its sections if (!((Fs4Operations*)imageOps)->ParseDevData(false)) { return errmsg("%s", imageOps->err()); } //* DTOC sanity check if (!((Fs4Operations*)imageOps)->CheckDTocArray()) { return errmsg(MLXFW_IMAGE_CORRUPTED_ERR, "%s", imageOps->err()); } total_img_size += FS4_DEFAULT_SECTOR_SIZE; // DTOC size total_img_size += ((Fs4Operations*)imageOps)->_fs4ImgInfo.dtocArr.getSectionsTotalSize(); } if (burnParams.burnFailsafe) { DPRINTF(("Fs4Operations::burnEncryptedImage Looking for image start on flash\n")); if (!getImgStart()) { // Stores image start value in _fwImgInfo.imgStart return errmsg("%s", err()); } } else { DPRINTF(("Fs4Operations::burnEncryptedImage No fail safe burn, ignore looking for image start on flash\n")); } DPRINTF(("Fs4Operations::burnEncryptedImage _fwImgInfo.imgStart = 0x%x\n", _fwImgInfo.imgStart)); //* Read chunk (=half-flash) size from image // ((Fs4Operations*)imageOps)->readFS4Log2ChunkSizeFromImage(log2_chunk_size); // TODO - use this function once it's // fixed log2_chunk_size = FS4_ENCRYPTED_LOG_CHUNK_SIZE; //* Assign new image start addr and current image partition is_curr_image_on_second_partition = 0; new_image_start_addr = 1 << log2_chunk_size; if (_fwImgInfo.imgStart != 0 || (!burnParams.burnFailsafe && ((Flash*)_ioAccess)->get_ignore_cache_replacment())) { is_curr_image_on_second_partition = 1; new_image_start_addr = 0; } DPRINTF(("Fs4Operations::burnEncryptedImage - is_curr_image_on_second_partition = %d, new_image_start_addr = " "0x%x\n", is_curr_image_on_second_partition, new_image_start_addr)); //* Extract encrypted image std::vector imgBuff; if (!imageOps->FwExtractEncryptedImage(imgBuff, false)) { return errmsg("Failed to extract encrypted image (%s)\n", imageOps->err()); } //* Get image size without signature total_img_size += imgBuff.size(); DPRINTF(("Fs4Operations::burnEncryptedImage - image size to burn = 0x%x\n", (u_int32_t)imgBuff.size())); //* Burn int alreadyWrittenSz = 0; //* Burn image without signature DPRINTF(("Fs4Operations::burnEncryptedImage - Burning image without magic-pattern\n")); if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, new_image_start_addr + FS3_FW_SIGNATURE_SIZE, // addr imgBuff.data() + FS3_FW_SIGNATURE_SIZE, // data imgBuff.size() - FS3_FW_SIGNATURE_SIZE, // size true, // phys addr false, total_img_size, alreadyWrittenSz)) { return errmsg("Failed to burn encrypted image\n"); } alreadyWrittenSz += imgBuff.size() - FS3_FW_SIGNATURE_SIZE; if (burnParams.useImgDevData) { //* Burning DTOC // Get DTOC from the cache u_int8_t* dtoc_data = new u_int8_t[FS4_DEFAULT_SECTOR_SIZE]; u_int32_t dtoc_addr = imageOps->GetIoAccess()->get_size() - FS4_DEFAULT_SECTOR_SIZE; DPRINTF(("Fs4Operations::burnEncryptedImage - Burning DTOC at addr 0x%0x\n", dtoc_addr)); ((Fs4Operations*)imageOps)->_imageCache.get(dtoc_data, dtoc_addr, FS4_DEFAULT_SECTOR_SIZE); if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, dtoc_addr, dtoc_data, FS4_DEFAULT_SECTOR_SIZE, true, true, total_img_size, alreadyWrittenSz)) { delete[] dtoc_data; return false; } delete[] dtoc_data; alreadyWrittenSz += FS4_DEFAULT_SECTOR_SIZE; for (int i = 0; i < ((Fs4Operations*)imageOps)->_fs4ImgInfo.dtocArr.numOfTocs; i++) { struct fs4_toc_info* dtoc_info_p = &((Fs4Operations*)imageOps)->_fs4ImgInfo.dtocArr.tocArr[i]; struct image_layout_itoc_entry* dtoc_entry = &dtoc_info_p->toc_entry; DPRINTF(("burning DTOC section addr=0x%08x size=0x%08x\n", dtoc_entry->flash_addr << 2, (u_int32_t)dtoc_info_p->section_data.size())); if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, dtoc_entry->flash_addr << 2, &(dtoc_info_p->section_data[0]), dtoc_info_p->section_data.size(), true, true, total_img_size, alreadyWrittenSz)) { return false; } alreadyWrittenSz += dtoc_info_p->section_data.size(); } } //* Burn signature DPRINTF(("Fs4Operations::burnEncryptedImage - Burning image magic-pattern\n")); if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, new_image_start_addr, // addr imgBuff.data(), // data FS3_FW_SIGNATURE_SIZE, // size true, // phys addr true, total_img_size, alreadyWrittenSz)) { return errmsg("Failed to burn encrypted image signature\n"); } alreadyWrittenSz += FS3_FW_SIGNATURE_SIZE; return DoAfterBurnJobs(_fs4_magic_pattern, burnParams, (Flash*)(this->_ioAccess), new_image_start_addr, log2_chunk_size); } bool Fs4Operations::BurnFs4Image(Fs4Operations& imageOps, ExtBurnParams& burnParams) { u_int8_t is_curr_image_in_odd_chunks; u_int32_t total_img_size = 0; u_int32_t sector_size = FS4_DEFAULT_SECTOR_SIZE; Flash* f = (Flash*)(this->_ioAccess); u_int8_t* data8; bool useImageDevData; int alreadyWrittenSz; if (_ioAccess == NULL) { return errmsg("ioAccess doesn't exist\n"); } if (_signatureMngr == NULL) { return errmsg("Signature manager doesn't exist\n"); } if (_fwImgInfo.imgStart != 0 || (!burnParams.burnFailsafe && ((Flash*)_ioAccess)->get_ignore_cache_replacment())) { is_curr_image_in_odd_chunks = 1; } else { is_curr_image_in_odd_chunks = 0; } u_int32_t new_image_start = getNewImageStartAddress(imageOps, burnParams.burnFailsafe); if (new_image_start == 0x800000) { f->set_address_convertor(0x17, 1); } else { // take chunk size from image in case of a non failsafe burn (in any case they should be the same) f->set_address_convertor(imageOps._fwImgInfo.cntxLog2ChunkSize, !is_curr_image_in_odd_chunks); } // check max image size useImageDevData = !burnParams.burnFailsafe && burnParams.useImgDevData; if (!CheckFs4ImgSize(imageOps, useImageDevData)) { return false; } // Sanity check on the image itoc array if (!imageOps.CheckITocArray()) { return errmsg(MLXFW_IMAGE_CORRUPTED_ERR, "%s", imageOps.err()); } // Find total image size that will be written total_img_size += imageOps._fs4ImgInfo.itocArr.getSectionsTotalSize(); // itoc sections // Add boot section, itoc array (wo signature) total_img_size += imageOps._fs4ImgInfo.itocArr.tocArrayAddr + sector_size - FS3_FW_SIGNATURE_SIZE; if (burnParams.useImgDevData) { total_img_size += sector_size; // dtoc array total_img_size += imageOps._fs4ImgInfo.dtocArr.getSectionsTotalSize(); // dtoc sections } if (total_img_size <= sector_size) { return errmsg("Failed to burn FW. Internal error."); } // Write the image: alreadyWrittenSz = 0; // bring the boot section and itoc array from the cache u_int32_t beginingWithoutSignatureSize = imageOps._fs4ImgInfo.itocArr.tocArrayAddr + sector_size - FS3_FW_SIGNATURE_SIZE; data8 = new u_int8_t[beginingWithoutSignatureSize]; imageOps._imageCache.get(data8, FS3_FW_SIGNATURE_SIZE, beginingWithoutSignatureSize); // Write boot section and IToc array (without signature) if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, FS3_FW_SIGNATURE_SIZE, data8, imageOps._fs4ImgInfo.itocArr.tocArrayAddr + sector_size - FS3_FW_SIGNATURE_SIZE, false, false, total_img_size, alreadyWrittenSz)) { delete[] data8; return false; } delete[] data8; alreadyWrittenSz += imageOps._fs4ImgInfo.itocArr.tocArrayAddr + sector_size - FS3_FW_SIGNATURE_SIZE; // write itoc entries data for (int i = 0; i < imageOps._fs4ImgInfo.itocArr.numOfTocs; i++) { struct fs4_toc_info* itoc_info_p = &imageOps._fs4ImgInfo.itocArr.tocArr[i]; struct image_layout_itoc_entry* toc_entry = &itoc_info_p->toc_entry; if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, toc_entry->flash_addr << 2, &(itoc_info_p->section_data[0]), itoc_info_p->section_data.size(), false, // addresses of itocs are relative and not physical false, total_img_size, alreadyWrittenSz)) { return false; } alreadyWrittenSz += itoc_info_p->section_data.size(); } if (burnParams.useImgDevData) { // Write dtoc array only if ignore_dev_data // Sanity check on the image dtoc array if (!imageOps.CheckDTocArray()) { return errmsg(MLXFW_IMAGE_CORRUPTED_ERR, "%s", imageOps.err()); } // bring the dtoc array from the cache data8 = new u_int8_t[sector_size]; imageOps._imageCache.get(data8, imageOps._fs4ImgInfo.dtocArr.tocArrayAddr, sector_size); if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, imageOps._fs4ImgInfo.dtocArr.tocArrayAddr, data8, sector_size, true, true, total_img_size, alreadyWrittenSz)) { delete[] data8; return false; } delete[] data8; alreadyWrittenSz += sector_size; // TODO: write device area (dtoc's entries) for (int i = 0; i < imageOps._fs4ImgInfo.dtocArr.numOfTocs; i++) { struct fs4_toc_info* itoc_info_p = &imageOps._fs4ImgInfo.dtocArr.tocArr[i]; struct image_layout_itoc_entry* toc_entry = &itoc_info_p->toc_entry; if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, toc_entry->flash_addr << 2, &(itoc_info_p->section_data[0]), itoc_info_p->section_data.size(), true, true, total_img_size, alreadyWrittenSz)) { return false; } alreadyWrittenSz += itoc_info_p->section_data.size(); } } if (!f->is_flash()) { return true; } bool IsUpdateSignatures = true; chip_type chip = this->_fwImgInfo.ext_info.chip_type; if (burnParams.use_chip_type == true) { chip = burnParams.chip_type; // patch for BF } switch (chip) { case CT_CONNECTX6: getExtendedHWPtrs((VerifyCallBack)NULL, imageOps._ioAccess, true); break; case CT_CONNECTX6DX: getExtendedHWAravaPtrs((VerifyCallBack)NULL, imageOps._ioAccess, true); break; case CT_BLUEFIELD: if (burnParams.use_chip_type == true) { if (!_signatureMngr->AddSignature(_ioAccess->getMfileObj(), &imageOps, f, 0)) { return false; } IsUpdateSignatures = false; // already updated right now } break; default: IsUpdateSignatures = false; break; } if (IsUpdateSignatures) { u_int32_t imageOffset = _digest_mdk_ptr; if (imageOffset == 0) { // use recovery ptr! imageOffset = _digest_recovery_key_ptr; } if (imageOffset != 0) { if (!_signatureMngr->AddSignature(_ioAccess->getMfileObj(), &imageOps, f, imageOffset)) { return false; } } } // Write new signature data8 = new u_int8_t[FS3_FW_SIGNATURE_SIZE]; imageOps._imageCache.get(data8, 0, FS3_FW_SIGNATURE_SIZE); if (!writeImageEx(burnParams.progressFuncEx, burnParams.progressUserData, burnParams.progressFunc, new_image_start, data8, FS3_FW_SIGNATURE_SIZE, true, true, total_img_size, alreadyWrittenSz)) { delete[] data8; return false; } delete[] data8; return Fs3Operations::DoAfterBurnJobs(_fs4_magic_pattern, imageOps, burnParams, f, new_image_start, is_curr_image_in_odd_chunks); } bool Fs4Operations::FsBurnAux(FwOperations* imgops, ExtBurnParams& burnParams) { bool devIntQueryRes; bool rc; Fs4Operations& imageOps = *((Fs4Operations*)imgops); if (imageOps.FwType() != FIT_FS4) { return errmsg(MLXFW_IMAGE_FORMAT_ERR, "FW image type is not compatible with device (FS4)"); } devIntQueryRes = FsIntQueryAux(); if (!devIntQueryRes && burnParams.burnFailsafe) { return false; } // For image we execute full verify to bring all the information needed for ROM Patch if (!imageOps.FsIntQueryAux(true, false)) { return false; } // Check Matching device ID if (!burnParams.noDevidCheck && _ioAccess->is_flash()) { if (imageOps._fwImgInfo.supportedHwIdNum) { if (!CheckMatchingHwDevId(_ioAccess->get_dev_id(), _ioAccess->get_rev_id(), imageOps._fwImgInfo.supportedHwId, imageOps._fwImgInfo.supportedHwIdNum)) { return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "Device/Image mismatch: %s\n", this->err()); } if (burnParams.burnFailsafe == false && !CheckMatchingBinning(_ioAccess->get_dev_id(), _ioAccess->get_bin_id(), imageOps._fwImgInfo.ext_info.dev_type)) { // we check Chip Bin information only on failsafe burn // during Firmware update flow - PSID will ensure a correct match. return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "Device/Image mismatch: %s\n", this->err()); } } else { // No supported HW IDs (problem with the image ?) return errmsg(MLXFW_DEVICE_IMAGE_MISMATCH_ERR, "No supported devices were found in the FW image."); } } if (!burnParams.burnFailsafe) { // Some checks in case we burn in a non-failsafe manner and attempt to // integrate existing device Data sections from device. if (!burnParams.useImgDevData) { // We will take device data section from device: perform some checks if (_fs4ImgInfo.dtocArr.tocArrayAddr == 0) { return errmsg("Cannot extract device data sections: " "Invalid DTOC section. " "Please ignore extracting device data sections."); } if (_badDevDataSections) { return errmsg("Cannot integrate device data sections: " "Device data sections are corrupted. " "Please ignore extracting device data sections."); } } else { // We will take device data sections from image: make sure device is not write protected bool is_write_protected; if (!isWriteProtected(is_write_protected)) { return errmsg("%s", err()); } if (is_write_protected) { return errmsg("Cannot burn device data sections, Flash is write protected."); } } } if (devIntQueryRes && !CheckPSID(imageOps, burnParams.allowPsidChange)) { return false; } if (burnParams.burnFailsafe) { if (!CheckAndDealWithChunkSizes(_fwImgInfo.cntxLog2ChunkSize, imageOps._fwImgInfo.cntxLog2ChunkSize)) { return false; } // Check if the burnt FW version is OK if (!CheckFwVersion(imageOps, burnParams.ignoreVersionCheck)) { return false; } // Check TimeStamp if (!TestAndSetTimeStamp(imgops)) { return false; } // ROM patchs if ((burnParams.burnRomOptions == ExtBurnParams::BRO_FROM_DEV_IF_EXIST) && _fwImgInfo.ext_info.roms_info.exp_rom_found) { std::vector romSect = _romSect; TOCPUn((u_int32_t*)romSect.data(), romSect.size() >> 2); if (!imageOps.Fs4AddSectionAux(FS3_ROM_CODE, INITOCENTRY, 0, (u_int32_t*)romSect.data(), romSect.size())) { return errmsg(MLXFW_ROM_UPDATE_IN_IMAGE_ERR, "failed to update ROM in image. %s", imageOps.err()); } } // Image vsd patch if (!burnParams.useImagePs && (burnParams.vsdSpecified || burnParams.useDevImgInfo)) { // get image info section : struct fs4_toc_info* imageInfoToc = (struct fs4_toc_info*)NULL; if (!imageOps.Fs4GetItocInfo(imageOps._fs4ImgInfo.itocArr.tocArr, imageOps._fs4ImgInfo.itocArr.numOfTocs, FS3_IMAGE_INFO, imageInfoToc)) { return errmsg(MLXFW_GET_SECT_ERR, "failed to get Image Info section."); } std::vector imageInfoSect = imageInfoToc->section_data; if (burnParams.vsdSpecified) { struct cibfw_image_info image_info; cibfw_image_info_unpack(&image_info, &imageInfoSect[0]); strncpy(image_info.vsd, burnParams.userVsd, VSD_LEN); cibfw_image_info_pack(&image_info, &imageInfoSect[0]); } if (burnParams.useDevImgInfo) { // update PSID, name and description in image info struct tools_open_image_info tools_image_info; tools_open_image_info_unpack(&tools_image_info, &imageInfoSect[0]); strncpy(tools_image_info.psid, _fwImgInfo.ext_info.psid, PSID_LEN + 1); strncpy(tools_image_info.name, _fs3ImgInfo.ext_info.name, NAME_LEN); strncpy(tools_image_info.description, _fs3ImgInfo.ext_info.description, DESCRIPTION_LEN); tools_open_image_info_pack(&tools_image_info, &imageInfoSect[0]); } // update image info toc and section if (!Fs4UpdateItocInfo(imageInfoToc, imageInfoToc->toc_entry.size, imageInfoSect)) { return false; } // update the toc in the cache imageOps.Fs3UpdateImgCache(imageInfoToc->data, imageInfoToc->entry_addr, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); // update the section in the cache imageOps.Fs3UpdateImgCache(imageInfoToc->section_data.data(), imageInfoToc->toc_entry.flash_addr << 2, imageInfoToc->toc_entry.size * 4); } } rc = BurnFs4Image(imageOps, burnParams); return rc; } bool Fs4Operations::Fs4GetItocInfo(struct fs4_toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, struct fs4_toc_info*& curr_toc) { int tocIndex; return Fs4GetItocInfo(tocArr, num_of_itocs, sect_type, curr_toc, tocIndex); } bool Fs4Operations::Fs4GetItocInfo(struct fs4_toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, struct fs4_toc_info*& curr_toc, int& toc_index) { for (int i = 0; i < num_of_itocs; i++) { struct fs4_toc_info* itoc_info = &tocArr[i]; if (itoc_info->toc_entry.type == sect_type) { curr_toc = itoc_info; toc_index = i; return true; } } return errmsg("TOC entry type: %s (%d) not found", GetSectionNameByType(sect_type), sect_type); } bool Fs4Operations::Fs4GetItocInfo(struct fs4_toc_info* tocArr, int num_of_itocs, fs3_section_t sect_type, vector& curr_toc) { for (int i = 0; i < num_of_itocs; i++) { struct fs4_toc_info* itoc_info = &tocArr[i]; if (itoc_info->toc_entry.type == sect_type) { curr_toc.push_back(itoc_info); } } return true; } bool Fs4Operations::Fs4UpdateMfgUidsSection(struct fs4_toc_info* curr_toc, std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData) { struct cibfw_mfg_info cib_mfg_info; struct cx4fw_mfg_info cx4_mfg_info; (void)curr_toc; if (IsExtendedGuidNumSupported()) { image_layout_mfg_info mfg_info; image_layout_mfg_info_unpack(&mfg_info, (u_int8_t*)§ion_data[0]); if (!ChangeUidsFromBase(base_uid, mfg_info.guids)) { return false; } newSectionData = section_data; image_layout_mfg_info_pack(&mfg_info, (u_int8_t*)&newSectionData[0]); } else { if (base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM && base_uid.num_of_guids_pp[0] > 254) { return errmsg("Invalid argument values, values should be taken from the range [0..254]\n"); } cibfw_mfg_info_unpack(&cib_mfg_info, (u_int8_t*)§ion_data[0]); if (cib_mfg_info.major_version == 0) { if (!Fs3ChangeUidsFromBase(base_uid, cib_mfg_info.guids)) { return false; } } else if (cib_mfg_info.major_version == 1) { cx4fw_mfg_info_unpack(&cx4_mfg_info, (u_int8_t*)§ion_data[0]); if (!Fs3ChangeUidsFromBase(base_uid, cx4_mfg_info.guids)) { return false; } } else { return errmsg("Unknown MFG_INFO format version (%d.%d).", cib_mfg_info.major_version, cib_mfg_info.minor_version); } newSectionData = section_data; if (cib_mfg_info.major_version == 1) { cx4fw_mfg_info_pack(&cx4_mfg_info, (u_int8_t*)&newSectionData[0]); } else { cibfw_mfg_info_pack(&cib_mfg_info, (u_int8_t*)&newSectionData[0]); } } return true; } bool Fs4Operations::Fs4ChangeUidsFromBase(fs3_uid_t base_uid, struct image_layout_guids& guids) { /* * on ConnectX4 we derrive guids from base_guid and macs from base_mac */ u_int64_t base_guid_64; u_int64_t base_mac_64; if (!base_uid.use_pp_attr) { return errmsg("Expected per port attributes to be specified"); } base_guid_64 = base_uid.base_guid_specified ? GUID_TO_64(base_uid.base_guid) : guids.guids.uid; base_mac_64 = base_uid.base_mac_specified ? GUID_TO_64(base_uid.base_mac) : guids.macs.uid; if (base_uid.set_mac_from_guid && base_uid.base_guid_specified) { // in case we derrive mac from guid base_mac_64 = (((u_int64_t)base_uid.base_guid.l & 0xffffff) | (((u_int64_t)base_uid.base_guid.h & 0xffffff00) << 16)); } if (!IsExtendedGuidNumSupported() && base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM && base_uid.num_of_guids_pp[0] > 254) { return errmsg("Invalid argument values, values should be taken from the range [0..254]\n"); } guids.guids.uid = base_guid_64; guids.guids.num_allocated = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[0] : guids.guids.num_allocated; guids.guids.num_allocated_msb = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? ((base_uid.num_of_guids_pp[0] >> 8) & 0xff) : guids.guids.num_allocated_msb; guids.guids.step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.guids.step; guids.macs.uid = base_mac_64; guids.macs.num_allocated = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? base_uid.num_of_guids_pp[0] : guids.macs.num_allocated; guids.macs.num_allocated_msb = base_uid.num_of_guids_pp[0] != DEFAULT_GUID_NUM ? ((base_uid.num_of_guids_pp[0] >> 8) & 0xff) : guids.macs.num_allocated_msb; guids.macs.step = base_uid.step_size_pp[0] != DEFAULT_STEP ? base_uid.step_size_pp[0] : guids.macs.step; return true; } bool Fs4Operations::Fs4UpdateUidsSection(std::vector section_data, fs3_uid_t base_uid, std::vector& newSectionData) { struct image_layout_device_info dev_info; image_layout_device_info_unpack(&dev_info, (u_int8_t*)§ion_data[0]); if (!Fs4ChangeUidsFromBase(base_uid, dev_info.guids)) { return false; } dev_info.signature0 = DEV_INFO_SIG0; dev_info.signature1 = DEV_INFO_SIG1; dev_info.signature2 = DEV_INFO_SIG2; dev_info.signature3 = DEV_INFO_SIG3; newSectionData = section_data; image_layout_device_info_pack(&dev_info, (u_int8_t*)&newSectionData[0]); return true; } bool Fs4Operations::Fs4UpdateVsdSection(std::vector section_data, char* user_vsd, std::vector& newSectionData) { struct image_layout_device_info dev_info; image_layout_device_info_unpack(&dev_info, (u_int8_t*)§ion_data[0]); memset(dev_info.vsd, 0, sizeof(dev_info.vsd)); strncpy(dev_info.vsd, user_vsd, TOOLS_ARR_SZ(dev_info.vsd) - 1); newSectionData = section_data; dev_info.signature0 = DEV_INFO_SIG0; dev_info.signature1 = DEV_INFO_SIG1; dev_info.signature2 = DEV_INFO_SIG2; dev_info.signature3 = DEV_INFO_SIG3; image_layout_device_info_pack(&dev_info, (u_int8_t*)&newSectionData[0]); return true; } bool Fs4Operations::Init() { if (!InitHwPtrs()) { return false; } fw_info_t fwInfo; if (!FwQuery(&fwInfo, false, false, false)) { return false; } return true; } bool Fs4Operations::UpdateDigitalCertRWSection(char* certChainFile, u_int32_t certChainIndex, std::vector& newSectionData) { if (!Init()) { return false; } struct fs4_toc_info* tocArr = _fs4ImgInfo.dtocArr.tocArr; u_int32_t numOfTocs = _fs4ImgInfo.dtocArr.numOfTocs; // Get DIGITAL_CERT_RW entry struct fs4_toc_info* digitalCertRWSectionToc = (fs4_toc_info*)NULL; if (!Fs4GetItocInfo(tocArr, numOfTocs, FS4_DIGITAL_CERT_RW, digitalCertRWSectionToc)) { return false; } // Get CERT_CHAIN_0 entry struct fs4_toc_info* certChain0SectionToc = (fs4_toc_info*)NULL; if (!Fs4GetItocInfo(tocArr, numOfTocs, FS4_CERT_CHAIN_0, certChain0SectionToc)) { return false; } u_int32_t certChain0SectionSize = certChain0SectionToc->toc_entry.size << 2; int certChainBuffSize = 0; u_int8_t* certChainBuffData = (u_int8_t*)NULL; if (!ReadBinFile(certChainFile, certChainBuffData, certChainBuffSize)) { return false; } DPRINTF(("Fs4Operations::UpdateDigitalCertRWSection new cert file size = 0x%x\n", certChainBuffSize)); //* Assert given certificate chain doesn't exceed its allocated size (compared to CERT_CHAIN_0 with same size) if ((u_int32_t)certChainBuffSize > certChain0SectionSize) { delete[] certChainBuffData; return errmsg("Certificate chain data exceeds its allocated size of 0x%x bytes", certChain0SectionSize); } std::vector certChainBuff(certChainBuffData, certChainBuffData + certChainBuffSize); certChainBuff.resize(certChain0SectionSize); // Padding the cert chain if needed to match cert chain size delete[] certChainBuffData; newSectionData = digitalCertRWSectionToc->section_data; u_int32_t newCertChainOffsetInSection = certChain0SectionSize * (certChainIndex - 1); // index 0 belongs to CERT_CHAIN_0 DPRINTF( ("Fs4Operations::UpdateDigitalCertRWSection copy new cert to DIGITAL_CERT_RW at offset = 0x%x, size = 0x%x\n", newCertChainOffsetInSection, (u_int32_t)certChainBuff.size())); if ((newCertChainOffsetInSection + certChainBuff.size()) > (digitalCertRWSectionToc->toc_entry.size << 2)) { return errmsg("Certificate chain data exceeds its allocation"); } std::copy(certChainBuff.begin(), certChainBuff.end(), newSectionData.begin() + newCertChainOffsetInSection); return true; } bool Fs4Operations::UpdateCertChainSection(struct fs4_toc_info* curr_toc, char* certChainFile, std::vector& newSectionData) { int cert_chain_buff_size = 0; u_int8_t* cert_chain_buff = (u_int8_t*)NULL; if (!ReadBinFile(certChainFile, cert_chain_buff, cert_chain_buff_size)) { return false; } //* Assert given certificate chain doesn't exceed its allocated size u_int32_t cert_chain_0_section_size = curr_toc->toc_entry.size << 2; if ((u_int32_t)cert_chain_buff_size > cert_chain_0_section_size) { delete[] cert_chain_buff; return errmsg("Attestation certificate chain data exceeds its allocated size of 0x%x bytes", cert_chain_0_section_size); } newSectionData.resize(cert_chain_0_section_size, 0); // Init section data with 0x0 memcpy(newSectionData.data(), cert_chain_buff, cert_chain_buff_size); delete[] cert_chain_buff; return true; } bool Fs4Operations::Fs4UpdateVpdSection(struct fs4_toc_info* curr_toc, char* vpd, std::vector& newSectionData) { int vpd_size = 0; u_int8_t* vpd_data = (u_int8_t*)NULL; if (!ReadBinFile(vpd, vpd_data, vpd_size)) { return false; } if (vpd_size % 4) { delete[] vpd_data; return errmsg("Size of VPD file: %d is not 4-byte aligned!", vpd_size); } // check if vpd exceeds the dtoc array u_int32_t vpdAddress = curr_toc->toc_entry.flash_addr << 2; if (vpdAddress + vpd_size >= (_ioAccess->get_size() - FS4_DEFAULT_SECTOR_SIZE)) { delete[] vpd_data; return errmsg("VPD data exceeds dtoc array, max VPD size: 0x%x bytes", _ioAccess->get_size() - vpdAddress - 1); } GetSectData(newSectionData, (u_int32_t*)vpd_data, vpd_size); curr_toc->toc_entry.size = vpd_size / 4; delete[] vpd_data; return true; } bool Fs4Operations::Fs4ReburnSection(u_int32_t newSectionAddr, u_int32_t newSectionSize, std::vector newSectionData, const char* msg, PrintCallBack callBackFunc) { char message[127]; sprintf(message, "Updating %-4s section - ", msg); DPRINTF(("%s\n", message)); PRINT_PROGRESS(callBackFunc, message); // If encrypted image is valid we want to write to it if (_encrypted_image_io_access) { DPRINTF(("Fs4Operations::Fs4ReburnSection updating encrypted image at addr 0x%x\n", newSectionAddr)); if (!_encrypted_image_io_access->write(newSectionAddr, (u_int8_t*)&newSectionData[0], newSectionSize)) { return errmsg("%s", _encrypted_image_io_access->err()); } } else { if (!writeImage((ProgressCallBack)NULL, newSectionAddr, (u_int8_t*)&newSectionData[0], newSectionSize, true, true)) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); return true; } bool Fs4Operations::CalcHashOnSection(u_int32_t addr, u_int32_t size, vector& hash) { #if !defined(NO_OPEN_SSL) && !defined(NO_DYNAMIC_ENGINE) // mlxSignSHA is only available with OPEN_SSL vector data; data.resize(size); READBUF((*_ioAccess), addr, (u_int32_t*)&data[0], size, "Reading section data for hash calculation"); //* Calculate SHA MlxSignSHA512 mlxSignSHA; mlxSignSHA << data; mlxSignSHA.getDigest(hash); return true; #else (void)addr; (void)size; (void)hash; return false; #endif } bool Fs4Operations::IsSectionShouldBeHashed(fs3_section_t section_type) { bool res; switch (section_type) { case FS3_PUBLIC_KEYS_2048: case FS3_PUBLIC_KEYS_4096: case FS3_IMAGE_SIGNATURE_256: case FS3_IMAGE_SIGNATURE_512: case FS4_RSA_4096_SIGNATURES: res = false; break; default: res = true; } return res; } bool Fs4Operations::UpdateSectionHashInHashesTable(u_int32_t addr, u_int32_t size, fs3_section_t type) { if (getSecureBootSignVersion() == VERSION_2 && IsSectionShouldBeHashed(type)) { DPRINTF(("Fs4Operations::UpdateSectionHashInHashesTable type=0x%x\n", type)); vector hash; if (!CalcHashOnSection(addr, size, hash)) { return errmsg("Failed to calculate section hash"); } if (!UpdateHashInHashesTable(type, hash)) { return false; } } return true; } bool Fs4Operations::UpdateHashInHashesTable(fs3_section_t section_type, vector hash) { //* Init HTOC vector img = {0}; FwInit(); _imageCache.clear(); if (!FwExtract4MBImage(img, true)) { return false; } const u_int32_t htoc_address = _hashes_table_ptr + IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE; HTOC htoc = HTOC(img, htoc_address); // TODO - move below logic to HTOC //* Get hash addr in hashes_table struct image_layout_htoc_entry htoc_entry; if (!htoc.GetEntryBySectionType(section_type, htoc_entry)) { DPRINTF(("Fs4Operations::UpdateHashInHashesTable Can't find section type 0x%x in htoc\n", section_type)); if (!htoc.AddNewEntry(_ioAccess, section_type, htoc_entry)) { return errmsg("Failed to add new entry of section type 0x%x to htoc", section_type); } } u_int32_t hash_addr = htoc_address + htoc_entry.hash_offset; u_int32_t hash_size = htoc.header.hash_size; //* Insert hash (SHA512) to hashes_table if (!_ioAccess->write(hash_addr, hash.data(), hash_size)) { return errmsg("Failed to insert hash to hashes_table"); } //* Calculate CRC on modified hashes_table u_int32_t hashes_table_size = IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE + IMAGE_LAYOUT_HTOC_HEADER_SIZE + MAX_HTOC_ENTRIES_NUM * (IMAGE_LAYOUT_HTOC_ENTRY_SIZE + hash_size) + HASHES_TABLE_TAIL_SIZE; u_int8_t* hashes_table_data; READALLOCBUF((*_ioAccess), _hashes_table_ptr, hashes_table_data, hashes_table_size, "HASHES TABLE"); u_int32_t hashes_table_crc = CalcImageCRC((u_int32_t*)hashes_table_data, (hashes_table_size / 4) - 1); free(hashes_table_data); CPUTO1(hashes_table_crc); //* Insert calculated CRC to last DWORD in hashes_table u_int32_t hashes_table_crc_addr = _hashes_table_ptr + hashes_table_size - 4; if (!_ioAccess->write(hashes_table_crc_addr, &hashes_table_crc, 4)) { return errmsg("Failed to write hashes_table crc"); } return true; } bool Fs4Operations::Fs4ReburnTocSection(bool isDtoc, PrintCallBack callBackFunc) { // Update new TOC section if (isDtoc) { if (!reburnDTocSection(callBackFunc)) { return false; } } else { if (!reburnITocSection(callBackFunc, _ioAccess->is_flash())) { return false; } } return true; } bool Fs4Operations::reburnDTocSection(PrintCallBack callBackFunc) { // Itoc section is failsafe (two sectors after boot section are reserved for itoc entries) u_int32_t tocAddr = _fs4ImgInfo.dtocArr.tocArrayAddr; // Update new ITOC u_int32_t tocSize = (_fs4ImgInfo.dtocArr.numOfTocs + 1) * IMAGE_LAYOUT_ITOC_ENTRY_SIZE + IMAGE_LAYOUT_ITOC_HEADER_SIZE; u_int8_t* p = new u_int8_t[tocSize]; memcpy(p, _fs4ImgInfo.dtocArr.tocHeader, CIBFW_ITOC_HEADER_SIZE); for (int i = 0; i < _fs4ImgInfo.dtocArr.numOfTocs; i++) { struct fs4_toc_info* curr_itoc = &_fs4ImgInfo.dtocArr.tocArr[i]; memcpy(p + IMAGE_LAYOUT_ITOC_HEADER_SIZE + i * IMAGE_LAYOUT_ITOC_ENTRY_SIZE, curr_itoc->data, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); } memset(&p[tocSize - IMAGE_LAYOUT_ITOC_ENTRY_SIZE], FS3_END, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); PRINT_PROGRESS(callBackFunc, (char*)"Updating DTOC section - "); bool rc = writeImage((ProgressCallBack)NULL, tocAddr, p, tocSize, true, true); delete[] p; if (!rc) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); return true; } bool Fs4Operations::reburnITocSection(PrintCallBack callBackFunc, bool isFailSafe) { // Itoc section is failsafe (two sectors after boot section are reserved for itoc entries) u_int32_t sector_size = FS3_DEFAULT_SECTOR_SIZE; u_int32_t oldITocAddr = _fs4ImgInfo.itocArr.tocArrayAddr; u_int32_t newITocAddr = oldITocAddr; if (isFailSafe) { newITocAddr = (_fs4ImgInfo.firstItocArrayIsEmpty) ? (_fs4ImgInfo.itocArr.tocArrayAddr - sector_size) : (_fs4ImgInfo.itocArr.tocArrayAddr + sector_size); } // Update new ITOC u_int32_t tocSize = (_fs4ImgInfo.itocArr.numOfTocs + 1) * IMAGE_LAYOUT_ITOC_ENTRY_SIZE + IMAGE_LAYOUT_ITOC_HEADER_SIZE; u_int8_t* p = new u_int8_t[tocSize]; memcpy(p, _fs4ImgInfo.itocArr.tocHeader, CIBFW_ITOC_HEADER_SIZE); for (int i = 0; i < _fs4ImgInfo.itocArr.numOfTocs; i++) { struct fs4_toc_info* curr_itoc = &_fs4ImgInfo.itocArr.tocArr[i]; memcpy(p + IMAGE_LAYOUT_ITOC_HEADER_SIZE + i * IMAGE_LAYOUT_ITOC_ENTRY_SIZE, curr_itoc->data, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); } memset(&p[tocSize - IMAGE_LAYOUT_ITOC_ENTRY_SIZE], FS3_END, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); PRINT_PROGRESS(callBackFunc, (char*)"Updating ITOC section - "); bool rc = writeImage((ProgressCallBack)NULL, newITocAddr, p, tocSize, true, true); delete[] p; if (!rc) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); u_int32_t zeros = 0; if (isFailSafe) { PRINT_PROGRESS(callBackFunc, (char*)"Restoring signature - "); if (!writeImage((ProgressCallBack)NULL, oldITocAddr, (u_int8_t*)&zeros, 4, false, true)) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } PRINT_PROGRESS(callBackFunc, (char*)"OK\n"); } if (getSecureBootSignVersion() == VERSION_2) { vector hash; u_int32_t itocSize = _fs4ImgInfo.itocArr.numOfTocs * TOC_ENTRY_SIZE + TOC_HEADER_SIZE; if (!CalcHashOnSection(newITocAddr, itocSize, hash)) { return errmsg("Failed to calculate ITOC hash"); } if (!UpdateHashInHashesTable(FS3_ITOC, hash)) { return false; } } return true; } bool Fs4Operations::Fs4UpdateItocInfo(struct fs4_toc_info* curr_toc, u_int32_t NewSectSize, std::vector& newSectionData) { u_int8_t tocEntryBuff[IMAGE_LAYOUT_ITOC_ENTRY_SIZE]; curr_toc->toc_entry.size = NewSectSize; curr_toc->section_data = newSectionData; if (curr_toc->toc_entry.crc == INITOCENTRY) { curr_toc->toc_entry.section_crc = CalcImageCRC((u_int32_t*)&newSectionData[0], curr_toc->toc_entry.size); } else if (curr_toc->toc_entry.crc == INSECTION) { u_int32_t newSectionCRC = CalcImageCRC((u_int32_t*)&newSectionData[0], curr_toc->toc_entry.size - 1); ((u_int32_t*)curr_toc->section_data.data())[curr_toc->toc_entry.size - 1] = newSectionCRC; ((u_int32_t*)newSectionData.data())[curr_toc->toc_entry.size - 1] = TOCPU1(newSectionCRC); } memset(tocEntryBuff, 0, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); image_layout_itoc_entry_pack(&curr_toc->toc_entry, tocEntryBuff); u_int32_t newEntryCRC = CalcImageCRC((u_int32_t*)tocEntryBuff, (TOC_ENTRY_SIZE / 4) - 1); curr_toc->toc_entry.itoc_entry_crc = newEntryCRC; memset(curr_toc->data, 0, IMAGE_LAYOUT_ITOC_ENTRY_SIZE); image_layout_itoc_entry_pack(&curr_toc->toc_entry, curr_toc->data); return true; } bool Fs4Operations::isDTocSection(fs3_section_t sect_type, bool& isDtoc) { switch ((int)sect_type) { case FS3_MFG_INFO: case FS3_DEV_INFO: case FS3_VPD_R0: case FS4_DIGITAL_CERT_RW: case FS4_CERT_CHAIN_0: isDtoc = true; break; case FS3_PUBLIC_KEYS_4096: case FS3_PUBLIC_KEYS_2048: case FS3_IMAGE_SIGNATURE_256: case FS3_IMAGE_SIGNATURE_512: case FS3_FORBIDDEN_VERSIONS: case FS4_RSA_PUBLIC_KEY: case FS4_RSA_4096_SIGNATURES: isDtoc = false; break; default: return errmsg("Section type %s is not supported\n", GetSectionNameByType(sect_type)); break; } return true; } bool Fs4Operations::IsSectionExists(fs3_section_t sectType) { bool isDtoc; struct fs4_toc_info* tocArr; u_int32_t numOfTocs; struct fs4_toc_info* curr_toc = (fs4_toc_info*)NULL; int tocIndex = 0; if (!isDTocSection(sectType, isDtoc)) { return false; } if (isDtoc) { tocArr = _fs4ImgInfo.dtocArr.tocArr; numOfTocs = _fs4ImgInfo.dtocArr.numOfTocs; } else { tocArr = _fs4ImgInfo.itocArr.tocArr; numOfTocs = _fs4ImgInfo.itocArr.numOfTocs; } if (!Fs4GetItocInfo(tocArr, numOfTocs, sectType, curr_toc, tocIndex)) { return false; } return true; } bool Fs4Operations::VerifyImageAfterModifications() { bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (image_encrypted) { fw_info_t fwInfo; if (!encryptedFwQuery(&fwInfo, false)) { return errmsg("%s", err()); } } else if (!FsIntQueryAux(false, false)) { return false; } return true; } bool Fs4Operations::FwSetCertChain(char* certFileStr, u_int32_t certIndex, PrintCallBack callBackFunc) { if (!certFileStr) { return errmsg("Please specify a valid certificate chain file."); } FAIL_NO_OCR("set attestation certificate chain"); if (certIndex == 0) { if (!UpdateSection(certFileStr, FS4_CERT_CHAIN_0, false, CMD_UNKNOWN, callBackFunc)) { return false; } } else { std::vector newSectionData; if (!UpdateDigitalCertRWSection(certFileStr, certIndex, newSectionData)) { return false; } if (!UpdateSection(FS4_DIGITAL_CERT_RW, newSectionData, "DIGITAL_CERT_RW", callBackFunc)) { return false; } } // on image verify that image is OK after modification (we skip this on device for performance reasons) if (!_ioAccess->is_flash() && !VerifyImageAfterModifications()) { return false; } return true; } bool Fs4Operations::UpdateSection(void* new_info, fs3_section_t sect_type, bool, CommandType cmd_type, PrintCallBack callBackFunc) { struct fs4_toc_info* curr_toc = (fs4_toc_info*)NULL; struct fs4_toc_info* old_toc = (fs4_toc_info*)NULL; std::vector newSection; const char* type_msg; struct fs4_toc_info* tocArr; u_int32_t numOfTocs; u_int32_t zeroes = 0; bool isDtoc; if (!isDTocSection(sect_type, isDtoc)) { return false; } bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (image_encrypted) { if (!isDtoc) { return errmsg("Can't update ITOC section in case of encrypted image"); } fw_info_t fwInfo; if (!encryptedFwQuery(&fwInfo)) { return errmsg("%s", err()); } } else { // init sector to read _readSectList.push_back(sect_type); if (!FsIntQueryAux()) { _readSectList.pop_back(); return false; } _readSectList.pop_back(); } bool is_sect_failsafe = (sect_type == FS3_DEV_INFO); if (isDtoc) { tocArr = _fs4ImgInfo.dtocArr.tocArr; numOfTocs = _fs4ImgInfo.dtocArr.numOfTocs; } else { tocArr = _fs4ImgInfo.itocArr.tocArr; numOfTocs = _fs4ImgInfo.itocArr.numOfTocs; } if (is_sect_failsafe) { vector tocs; // find first valid section if (!Fs4GetItocInfo(tocArr, numOfTocs, sect_type, tocs)) { return false; } if (tocs.size() < 2) { PRINT_PROGRESS(callBackFunc, (char*)"FAILED\n"); return false; } for (size_t i = 0; i < tocs.size(); i++) { if (CheckDevInfoSignature((u_int32_t*)(tocs[i]->section_data.data()))) { old_toc = tocs[i]; // find the second section (valid or not valid, does not matter) if (i == 0) { curr_toc = tocs[1]; } else { curr_toc = tocs[0]; } break; } } if (!old_toc) { return errmsg("Bad DEV_INFO signature."); } } else { int tocIndex = 0; if (!Fs4GetItocInfo(tocArr, numOfTocs, sect_type, curr_toc, tocIndex)) { return false; } if (sect_type == FS3_VPD_R0 && ((u_int32_t)tocIndex) != numOfTocs - 1) { return errmsg("VPD Section is not the last device section"); } } if (!curr_toc) { return errmsg("Couldn't find TOC array."); } if (sect_type == FS3_MFG_INFO) { fs3_uid_t base_uid = *(fs3_uid_t*)new_info; type_msg = "GUID"; if (!Fs4UpdateMfgUidsSection(curr_toc, curr_toc->section_data, base_uid, newSection)) { return false; } } else if (sect_type == FS3_DEV_INFO) { if (cmd_type == CMD_SET_GUIDS) { fs3_uid_t base_uid = *(fs3_uid_t*)new_info; type_msg = "GUID"; if (!Fs4UpdateUidsSection(old_toc->section_data, base_uid, newSection)) { return false; } } else if (cmd_type == CMD_SET_VSD) { char* user_vsd = (char*)new_info; type_msg = "VSD"; if (!Fs4UpdateVsdSection(old_toc->section_data, user_vsd, newSection)) { return false; } } else { // We shouldnt reach here EVER type_msg = (char*)"Unknown"; } } else if (sect_type == FS3_VPD_R0) { char* vpd_file = (char*)new_info; type_msg = "VPD"; if (!Fs4UpdateVpdSection(curr_toc, vpd_file, newSection)) { return false; } } else if (sect_type == FS4_CERT_CHAIN_0) { char* cert_chain_file = (char*)new_info; type_msg = "CERT_CHAIN_0"; if (!UpdateCertChainSection(curr_toc, cert_chain_file, newSection)) { return false; } } else if (sect_type == FS3_IMAGE_SIGNATURE_256 && cmd_type == CMD_SET_SIGNATURE) { vector sig((u_int8_t*)new_info, (u_int8_t*)new_info + IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); type_msg = "SIGNATURE"; newSection.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); memcpy(newSection.data(), sig.data(), IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE); // Check if padding is needed, by comparing with the real size in the itoc entry: u_int32_t sizeInItocEntry = curr_toc->toc_entry.size << 2; if (sizeInItocEntry > IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE) { for (unsigned int l = 0; l < sizeInItocEntry - IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE; l++) { newSection.push_back(0x0); } } } else if (sect_type == FS3_IMAGE_SIGNATURE_512 && cmd_type == CMD_SET_SIGNATURE) { vector sig((u_int8_t*)new_info, (u_int8_t*)new_info + IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE); type_msg = "SIGNATURE"; newSection.resize(IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE); memcpy(newSection.data(), sig.data(), IMAGE_LAYOUT_IMAGE_SIGNATURE_2_SIZE); u_int32_t sizeInItocEntry = curr_toc->toc_entry.size << 2; if (sizeInItocEntry > IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE) { for (unsigned int l = 0; l < sizeInItocEntry - IMAGE_LAYOUT_IMAGE_SIGNATURE_SIZE; l++) { newSection.push_back(0x0); } } } else if (sect_type == FS3_PUBLIC_KEYS_2048 && cmd_type == CMD_SET_PUBLIC_KEYS) { char* publickeys_file = (char*)new_info; type_msg = "PUBLIC KEYS"; if (!Fs3UpdatePublicKeysSection(curr_toc->toc_entry.size, publickeys_file, newSection)) { return false; } } else if (sect_type == FS3_PUBLIC_KEYS_4096 && cmd_type == CMD_SET_PUBLIC_KEYS) { char* publickeys_file = (char*)new_info; type_msg = "PUBLIC KEYS 4096"; if (!Fs3UpdatePublicKeysSection(curr_toc->toc_entry.size, publickeys_file, newSection)) { return false; } } #if !defined(UEFI_BUILD) else if (sect_type == FS4_RSA_PUBLIC_KEY) { char* publicKeysData = (char*)new_info; type_msg = "FS4_RSA_PUBLIC_KEY"; GetSectData(newSection, (u_int32_t*)publicKeysData, image_layout_public_keys_3_size()); } else if (sect_type == FS4_RSA_4096_SIGNATURES) { char* signaturesData = (char*)new_info; type_msg = "FS4_RSA_4096_SIGNATURES"; GetSectData(newSection, (u_int32_t*)signaturesData, image_layout_secure_boot_signatures_size()); } #endif else if (sect_type == FS3_FORBIDDEN_VERSIONS && cmd_type == CMD_SET_FORBIDDEN_VERSIONS) { char* forbiddenVersions_file = (char*)new_info; type_msg = "Forbidden Versions"; if (!Fs3UpdateForbiddenVersionsSection(curr_toc->toc_entry.size, forbiddenVersions_file, newSection)) { return false; } } else { return errmsg("Section type %s is not supported\n", GetSectionNameByType(sect_type)); } if (!WriteSection(curr_toc, newSection, type_msg, callBackFunc)) { return false; } if (is_sect_failsafe) { u_int32_t flash_addr = old_toc->toc_entry.flash_addr << 2; // If encrypted image was given we'll write to it if (_encrypted_image_io_access) { DPRINTF(("Fs4Operations::UpdateSection updating encrypted image at addr 0x%x with 0x0\n", flash_addr)); if (!_encrypted_image_io_access->write(flash_addr, (u_int8_t*)&zeroes, sizeof(zeroes))) { return errmsg("%s", _encrypted_image_io_access->err()); } } else { if (!writeImage((ProgressCallBack)NULL, flash_addr, (u_int8_t*)&zeroes, sizeof(zeroes), isDtoc, true)) { return false; } } } return true; } bool Fs4Operations::WriteSection(struct fs4_toc_info* sectionToc, std::vector& newSectionData, const char* msg, PrintCallBack callBackFunc) { DPRINTF( ("Fs4Operations::WriteSection section type=%s, msg=%s", GetSectionNameByType(sectionToc->toc_entry.type), msg)); bool isDtoc; fs3_section_t sectionType = static_cast(sectionToc->toc_entry.type); if (!isDTocSection(sectionType, isDtoc)) { return false; } u_int32_t newSectionAddr = sectionToc->toc_entry.flash_addr << 2; if (!_encrypted_image_io_access) { // In case of BB secure-boot sign flow we don't update ITOC since it's already encrypted if (!Fs4UpdateItocInfo(sectionToc, sectionToc->toc_entry.size, newSectionData)) { return false; } } if (!Fs4ReburnSection(newSectionAddr, sectionToc->toc_entry.size * 4, newSectionData, msg, callBackFunc)) { return false; } if (!_encrypted_image_io_access) { // In case of BB secure-boot sign flow we don't update ITOC since it's already encrypted if (sectionType != FS3_DEV_INFO) { if (!Fs4ReburnTocSection(isDtoc, callBackFunc)) { return false; } } } if (!isDtoc) { if (!UpdateSectionHashInHashesTable(newSectionAddr, sectionToc->toc_entry.size * 4, sectionType)) { return false; } } return true; } bool Fs4Operations::UpdateSection(fs3_section_t sectionType, std::vector& newSectionData, const char* msg, PrintCallBack callBackFunc) { if (sectionType == FS3_DEV_INFO) { return errmsg("Fs4Operations::UpdateSection doesn't support updating DEV_INFO section\n"); } // Query bool isDtoc; if (!isDTocSection(sectionType, isDtoc)) { return false; } bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return errmsg(getErrorCode(), "%s", err()); } if (image_encrypted) { if (!isDtoc) { return errmsg("Can't update ITOC section in case of encrypted image"); } fw_info_t fwInfo; if (!encryptedFwQuery(&fwInfo)) { return errmsg("%s", err()); } } else { // init sector to read _readSectList.push_back(sectionType); if (!FsIntQueryAux()) { _readSectList.pop_back(); return false; } _readSectList.pop_back(); } // Get relevant TOC struct fs4_toc_info* tocArr; u_int32_t numOfTocs; if (isDtoc) { tocArr = _fs4ImgInfo.dtocArr.tocArr; numOfTocs = _fs4ImgInfo.dtocArr.numOfTocs; } else { tocArr = _fs4ImgInfo.itocArr.tocArr; numOfTocs = _fs4ImgInfo.itocArr.numOfTocs; } // Find TOC entry int tocIndex = 0; struct fs4_toc_info* sectionToc = (fs4_toc_info*)NULL; if (!Fs4GetItocInfo(tocArr, numOfTocs, sectionType, sectionToc, tocIndex)) { return false; } if (sectionType == FS3_VPD_R0 && ((u_int32_t)tocIndex) != numOfTocs - 1) { return errmsg("VPD Section is not the last device section"); } if (!WriteSection(sectionToc, newSectionData, msg, callBackFunc)) { return false; } return true; } u_int32_t Fs4Operations::getAbsAddr(fs4_toc_info* toc) { return ((toc->toc_entry.flash_addr << 2) + _fwImgInfo.imgStart); } u_int32_t Fs4Operations::getAbsAddr(fs4_toc_info* toc, u_int32_t imgStart) { return ((toc->toc_entry.flash_addr << 2) + imgStart); } bool Fs4Operations::FwShiftDevData(PrintCallBack progressFunc) { // avoid compiler warrnings (void)progressFunc; return errmsg("Shifting device data sections is not supported in FS4 image format."); } #define OPEN_OCR(origFlashObj) \ do \ { \ origFlashObj = _ioAccess; \ _fwParams.ignoreCacheRep = 1; \ if (!FwOperations::FwAccessCreate(_fwParams, &_ioAccess)) \ { \ _ioAccess = origFlashObj; \ _fwParams.ignoreCacheRep = 0; \ return errmsg("Failed to open device for direct flash access"); \ } \ } while (0) bool Fs4Operations::FwCalcMD5(u_int8_t md5sum[16]) { #if defined(UEFI_BUILD) || defined(NO_OPEN_SSL) (void)md5sum; return errmsg("Operation not supported"); #else if (!FsIntQueryAux(true, false)) { return false; } // push beggining of image to md5buff int sz = FS3_BOOT_START + _fwImgInfo.boot2Size; std::vector md5buff(sz, 0); _imageCache.get(&(md5buff[0]), sz); // push all non dev data sections to md5buff for (unsigned int j = 0; j < TOC_HEADER_SIZE; j++) { md5buff.push_back(_imageCache[_fs4ImgInfo.itocArr.tocArrayAddr + j]); } // push itoc header for (int i = 0; i < _fs4ImgInfo.itocArr.numOfTocs; i++) { // push each non-dev-data section to md5sum buffer u_int32_t tocEntryAddr = _fs4ImgInfo.itocArr.tocArr[i].entry_addr; u_int32_t tocDataAddr = _fs4ImgInfo.itocArr.tocArr[i].toc_entry.flash_addr << 2; u_int32_t tocDataSize = _fs4ImgInfo.itocArr.tocArr[i].toc_entry.size << 2; // itoc entry for (unsigned int j = 0; j < TOC_ENTRY_SIZE; j++) { md5buff.push_back(_imageCache[tocEntryAddr + j]); } // itoc data for (unsigned int j = 0; j < tocDataSize; j++) { md5buff.push_back(_imageCache[tocDataAddr + j]); } } // calc md5 tools_md5(&md5buff[0], md5buff.size(), md5sum); return true; #endif } bool Fs4Operations::CheckDTocArray() { if (!CheckTocArrConsistency(_fs4ImgInfo.dtocArr, 0)) { return false; } return true; } bool Fs4Operations::CheckITocArray() { // Check for inconsistency image burnt on 1st half if (!CheckTocArrConsistency(_fs4ImgInfo.itocArr, 0)) { return false; } // Check for inconsistency image burn on second half if (!CheckTocArrConsistency(_fs4ImgInfo.itocArr, (1 << _fwImgInfo.cntxLog2ChunkSize))) { return false; } return true; } bool Fs4Operations::CheckTocArrConsistency(TocArray& tocArr, u_int32_t imageStartAddr) { u_int32_t sectEndAddr = 0; u_int32_t nextSectStrtAddr = 0; // Sort the tocs std::vector sortedTocVec(tocArr.numOfTocs); for (int i = 0; i < tocArr.numOfTocs; i++) { sortedTocVec[i] = &(tocArr.tocArr[i]); } std::sort(sortedTocVec.begin(), sortedTocVec.end(), TocComp(imageStartAddr)); std::vector::iterator it = sortedTocVec.begin(), itNext = sortedTocVec.begin(); itNext++; for (; itNext != sortedTocVec.end(); it++, itNext++) { sectEndAddr = getAbsAddr(*it, imageStartAddr) + ((*it)->toc_entry.size << 2) - 1; nextSectStrtAddr = getAbsAddr(*itNext, imageStartAddr); if (sectEndAddr >= nextSectStrtAddr) { return errmsg("Inconsistency found in TOC. %s(0x%x) section will potentially overwrite %s(0x%x) section.", GetSectionNameByType((*it)->toc_entry.type), (*it)->toc_entry.type, GetSectionNameByType((*itNext)->toc_entry.type), (*itNext)->toc_entry.type); } } return true; } u_int32_t Fs4Operations::getImageSize() { return _fwImgInfo.lastImageAddr - _fwImgInfo.imgStart; } bool Fs4Operations::GetImageSize(u_int32_t* image_size) { bool is_encrypted = false; if (!isEncrypted(is_encrypted)) { return false; } if (is_encrypted) { if (!GetImageSizeFromImageInfo(image_size)) { return false; } } else { *image_size = getImageSize(); } return true; } void Fs4Operations::MaskItocSectionAndEntry(u_int32_t itocType, vector& img) { for (int i = 0; i < _fs4ImgInfo.itocArr.numOfTocs; i++) { if (_fs4ImgInfo.itocArr.tocArr[i].toc_entry.type == itocType) { //* Mask section u_int32_t tocEntryDataAddr = _fs4ImgInfo.itocArr.tocArr[i].toc_entry.flash_addr << 2; memset(img.data() + tocEntryDataAddr, 0xFF, _fs4ImgInfo.itocArr.tocArr[i].toc_entry.size << 2); //* Mask section's ITOC entry if (!_encrypted_image_io_access) { // In case of signing BB image (encrypted) we'll not mask the image signature 256/512 itoc entries // due to FW limitation u_int32_t tocEntryAddr = _fs4ImgInfo.itocArr.tocArr[i].entry_addr; memset(img.data() + tocEntryAddr, 0xFF, TOC_ENTRY_SIZE); } } } } void Fs4Operations::maskDevToc(vector& img) { // no device tocs in the itoc (void)img; return; } bool Fs4Operations::FwSetTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer) { CHECK_IF_FS4_FILE_FOR_TIMESTAMP_OP() return Fs3Operations::FwSetTimeStamp(timestamp, fwVer); } bool Fs4Operations::FwQueryTimeStamp(struct tools_open_ts_entry& timestamp, struct tools_open_fw_version& fwVer, bool queryRunning) { CHECK_IF_FS4_FILE_FOR_TIMESTAMP_OP() return Fs3Operations::FwQueryTimeStamp(timestamp, fwVer, queryRunning); } bool Fs4Operations::FwResetTimeStamp() { CHECK_IF_FS4_FILE_FOR_TIMESTAMP_OP() return Fs3Operations::FwResetTimeStamp(); } bool Fs4Operations::GetSectionSizeAndOffset(fs3_section_t sectType, u_int32_t& size, u_int32_t& offset) { for (int i = 0; i < _fs4ImgInfo.itocArr.numOfTocs; i++) { struct fs4_toc_info* toc = &_fs4ImgInfo.itocArr.tocArr[i]; if (toc->toc_entry.type == sectType) { size = toc->toc_entry.size << 2; offset = toc->toc_entry.flash_addr << 2; return true; } } for (int i = 0; i < _fs4ImgInfo.dtocArr.numOfTocs; i++) { struct fs4_toc_info* toc = &_fs4ImgInfo.dtocArr.tocArr[i]; if (toc->toc_entry.type == sectType) { size = toc->toc_entry.size << 2; offset = toc->toc_entry.flash_addr << 2; return true; } } return false; } #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) bool validateHmacKey(string key_str, unsigned int correct_key_len) { // The keyFile should contain 128 chars, each 2 of them represent 1 byte of key (hex) bool res = true; key_str.erase(std::remove_if(key_str.begin(), key_str.end(), ::isspace), key_str.end()); if (key_str.size() != correct_key_len * 2) { res = false; } else if (key_str.find_first_not_of("0123456789abcdefABCDEF") != std::string::npos) { res = false; } return res; } #endif #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) bool Fs4Operations::FwSignSection(const vector& section, const string privPemFileStr, vector& encSha) { MlxSignRSA rsa; vector sha; int rc = rsa.setPrivKeyFromFile(privPemFileStr); if (rc) { return errmsg("Failed to set private key from file (rc = 0x%x)\n", rc); } MlxSignSHA512 mlxSignSHA; mlxSignSHA << section; mlxSignSHA.getDigest(sha); rc = rsa.sign(MlxSign::SHA512, sha, encSha); if (rc) { return errmsg("Failed to encrypt the SHA (rc = 0x%x)\n", rc); } return true; } #endif int Fs4Operations::getBoot2Size(u_int32_t address) { u_int32_t num_of_dwords = 0; // Read the num of DWs for the second dword READBUF((*_ioAccess), address + 4, &num_of_dwords, 4, "num of DWs"); TOCPU1(num_of_dwords) return (4 + num_of_dwords) * 4; // 2 dwords for header + 2 dwords for tail } // This function is called from getBootDataForSignVersion2() only so currently it supports CX7 onwards only bool Fs4Operations::getBootRecordSize(u_int32_t& boot_record_size) { switch (getChipType(_fwImgInfo.supportedHwId[0])) { case CT_CONNECTX7: boot_record_size = 0x3f4; return true; // For devices after Carmel we need to ignore the last 4B (CRC/auth-tag) case CT_BLUEFIELD3: boot_record_size = 0x4d0; // Actual size is 0x4d4 return true; case CT_SPECTRUM4: boot_record_size = 0x660; // Actual size is 0x664 return true; case CT_ABIR_GEARBOX: boot_record_size = 0x260; // Actual size is 0x264 return true; case CT_CONNECTX8: boot_record_size = 0x2a0; // Actual size is 0x2a4 return true; default: return false; } } bool Fs4Operations::getBootDataForSignVersion1(vector& data) { u_int32_t physAddr = _authentication_start_ptr; const unsigned int data_size = _authentication_end_ptr - _authentication_start_ptr + 1; data.resize(data_size); //* Choosing the correct io to read from FBase* io = _ioAccess; if (_encrypted_image_io_access) { DPRINTF(("Fs4Operations::getBootDataForSignVersion1 reading from encrypted image from addr 0x%x: 0x%x bytes\n", physAddr, data_size)); io = _encrypted_image_io_access; // If encrypted image was given we'll read from it } READBUF((*io), physAddr, data.data(), data_size, "Reading data pointed by HW Pointers"); return true; } bool Fs4Operations::getBootDataForSignVersion2(vector& data) { unsigned int data_offset = 0; // Boot version const u_int32_t BOOT_VERSION_ADDRESS = 0x10; const u_int32_t BOOT_VERSION_SIZE = 0x8; // including reserved dword data.resize(data.size() + BOOT_VERSION_SIZE); READBUF((*_ioAccess), BOOT_VERSION_ADDRESS, data.data() + data_offset, BOOT_VERSION_SIZE, "Reading boot version"); data_offset += BOOT_VERSION_SIZE; // HW pointers (without CRC) const u_int32_t HW_POINTER_SIZE = 4; const u_int32_t HW_POINTER_CRC_SIZE = 4; const int NUM_OF_HW_POINTERS = 16; for (int ii = 0; ii < NUM_OF_HW_POINTERS; ii++) { data.resize(data.size() + HW_POINTER_SIZE); READBUF((*_ioAccess), FS4_HW_PTR_START + ii * (HW_POINTER_SIZE + HW_POINTER_CRC_SIZE), data.data() + data_offset, HW_POINTER_SIZE, "Reading HW pointer"); data_offset += HW_POINTER_SIZE; } // Boot record u_int32_t boot_record_size = 0; if (!getBootRecordSize(boot_record_size)) { return errmsg("Failed to get boot_record size\n"); } data.resize(data.size() + boot_record_size); READBUF((*_ioAccess), _boot_record_ptr, data.data() + data_offset, boot_record_size, "Reading boot record"); data_offset += boot_record_size; // Boot2 u_int32_t boot2_size = getBoot2Size(_boot2_ptr); data.resize(data.size() + boot2_size); READBUF((*_ioAccess), _boot2_ptr, data.data() + data_offset, boot2_size, "Reading boot2"); data_offset += boot2_size; // Hashes table u_int32_t hashes_table_size = getHashesTableSize(_hashes_table_ptr); data.resize(data.size() + hashes_table_size); READBUF((*_ioAccess), _hashes_table_ptr, data.data() + data_offset, hashes_table_size, "Reading hashes table"); return true; } bool Fs4Operations::getBootDataForSign(vector& data) { switch (getSecureBootSignVersion()) { case VERSION_1: return getBootDataForSignVersion1(data); case VERSION_2: return getBootDataForSignVersion2(data); default: return false; } } #if !defined(UEFI_BUILD) bool fromFileToArray(string& fileName, vector& outputArray, unsigned int PublicKeySize) { FILE* pFile = fopen(fileName.c_str(), "rt"); if (pFile == NULL) { return false; } fseek(pFile, 0L, SEEK_END); size_t input_length = ftell(pFile); // input length must be 2*puublic key size since the input file is text formatted and each 2 characters in it = 1 // byte data if (input_length != (PublicKeySize << 1)) { fclose(pFile); return false; } fseek(pFile, 0L, SEEK_SET); char* data = new char[input_length]; if (data == NULL) { fclose(pFile); return false; } fread(data, sizeof(char), input_length, pFile); fclose(pFile); outputArray.resize(input_length / 2); for (size_t i = 0; i < input_length; i += 2) { char tempBuf[3] = {0}; tempBuf[0] = data[i]; tempBuf[1] = data[i + 1]; int scanResult = 0; if (sscanf(tempBuf, "%x", &scanResult) != 1) { delete[] data; return false; } outputArray[i / 2] = scanResult; } delete[] data; return true; } #endif bool Fs4Operations::IsSecureBootSupported() { if (_signatureMngr == NULL) { return false; } return _signatureMngr->IsSecureBootSupported(); } bool Fs4Operations::IsCableQuerySupported() { if (_signatureMngr == NULL) { return false; } return _signatureMngr->IsCableQuerySupported(); } bool Fs4Operations::IsLifeCycleSupported() { if (_signatureMngr == NULL) { return false; } return _signatureMngr->IsLifeCycleSupported(); } bool Fs4Operations::ParsePublicKeyFromFile(const char* public_key_file, vector& publicKeyData, u_int32_t& keyPairExp, image_layout_component_authentication_configuration& keyAuthConf) { image_layout_public_keys_3 unpackedData; unsigned int PublicKeySize = sizeof(unpackedData.file_public_keys_3[0].key); fs3_section_t sectionType; bool PublicKeyIsSet = false; unsigned int pem_offset = 0; keyPairExp = 0x10001; // Default value // is the public key file in PEM format? if (CheckPublicKeysFile(public_key_file, sectionType, true)) { if (sectionType == FS3_PUBLIC_KEYS_4096) { if (Fs3UpdatePublicKeysSection((IMAGE_LAYOUT_PUBLIC_KEYS_3_SIZE >> 2), public_key_file, publicKeyData, true)) { PublicKeyIsSet = true; pem_offset = IMAGE_LAYOUT_FILE_PUBLIC_KEYS_3_SIZE - PublicKeySize; // first 32 bytes in the PEM file are auxilary data image_layout_component_authentication_configuration_unpack( &keyAuthConf, publicKeyData.data()); // First Dword represents the key auth conf u_int32_t keyPairExpOffset = 3; // Fourth Dword represents key pair exponent keyPairExp = *((u_int32_t*)publicKeyData.data() + keyPairExpOffset); TOCPU1(keyPairExp); } } } // Is the public key file in text format? if (PublicKeyIsSet == false) { return errmsg("ParsePublicKeyFromFile: Public key file parsing failed, unknown format"); } if (pem_offset > 0) { publicKeyData.erase(publicKeyData.begin(), publicKeyData.begin() + pem_offset); } return true; } void Fs4Operations::PreparePublicKey(const vector& publicKeyData, const vector& uuidData, const u_int32_t keyPairExp, const image_layout_component_authentication_configuration& keyAuthConf, image_layout_file_public_keys_3& publicKey) { unsigned int PublicKeySize = sizeof(publicKey.key); publicKey.keypair_exp = keyPairExp; publicKey.component_authentication_configuration = keyAuthConf; memcpy(&publicKey.keypair_uuid, uuidData.data(), sizeof(publicKey.keypair_uuid)); memcpy(&publicKey.key, publicKeyData.data(), PublicKeySize); TOCPUn(&publicKey.key, PublicKeySize >> 2); } bool Fs4Operations::GetFreeSlotInPublicKeys2(const image_layout_public_keys_2& public_keys, u_int32_t& idx) { u_int32_t num_of_key_slots = image_layout_public_keys_2_size() / image_layout_file_public_keys_2_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { const image_layout_file_public_keys_2& public_key = public_keys.file_public_keys_2[ii]; if (all_of(public_key.keypair_uuid, public_key.keypair_uuid + 4, [](u_int32_t val) { return val == 0; })) { idx = ii; DPRINTF(("free slot at index = %d\n", idx)); return true; } } return errmsg("GetFreeSlotInPublicKeys2 failed - No free slot for public key\n"); } bool Fs4Operations::GetFreeSlotInPublicKeys3(const image_layout_public_keys_3& public_keys, u_int32_t& idx) { u_int32_t num_of_key_slots = image_layout_public_keys_3_size() / image_layout_file_public_keys_3_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { const image_layout_file_public_keys_3& public_key = public_keys.file_public_keys_3[ii]; if (all_of(public_key.keypair_uuid, public_key.keypair_uuid + 4, [](u_int32_t val) { return val == 0; })) { idx = ii; DPRINTF(("free slot at index = %d\n", idx)); return true; } } return errmsg("GetFreeSlotInPublicKeys3 failed - No free slot for public key\n"); } bool Fs4Operations::IsPublicKeyAlreadyInPublicKeys2(const image_layout_public_keys_2& public_keys, const image_layout_file_public_keys_2& public_key) { bool res = false; u_int32_t num_of_key_slots = image_layout_public_keys_2_size() / image_layout_file_public_keys_2_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { auto stored_public_key = public_keys.file_public_keys_2[ii]; // Compare keys based on UUID if (equal(begin(public_key.keypair_uuid), end(public_key.keypair_uuid), begin(stored_public_key.keypair_uuid))) { res = true; break; } } return res; } bool Fs4Operations::IsPublicKeyAlreadyInPublicKeys3(const image_layout_public_keys_3& public_keys, const image_layout_file_public_keys_3& public_key) { bool res = false; u_int32_t num_of_key_slots = image_layout_public_keys_3_size() / image_layout_file_public_keys_3_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { auto stored_public_key = public_keys.file_public_keys_3[ii]; // Compare keys based on UUID if (equal(begin(public_key.keypair_uuid), end(public_key.keypair_uuid), begin(stored_public_key.keypair_uuid))) { res = true; break; } } return res; } bool Fs4Operations::FindImagePublicKeyInPublicKeys2(const image_layout_public_keys_2& public_keys, u_int32_t& idx) { bool res = false; u_int32_t num_of_key_slots = image_layout_public_keys_2_size() / image_layout_file_public_keys_2_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { if (public_keys.file_public_keys_2[ii].component_authentication_configuration.fw_en == 1) { idx = ii; res = true; break; } } return res; } bool Fs4Operations::GetRSAPublicKey(vector& key) { if (!InitHwPtrs()) { return errmsg("HW pointers not found"); } vector rsaPublicKeys(image_layout_public_keys_3_size()); if (!FwReadBlock(_public_key_ptr, image_layout_public_keys_3_size(), rsaPublicKeys)) { return false; } image_layout_public_keys_3 stored_public_keys_3; memset(&stored_public_keys_3, 0, sizeof(stored_public_keys_3)); image_layout_public_keys_3_unpack(&stored_public_keys_3, rsaPublicKeys.data()); u_int32_t imagePublicKeyIndex = 0; if (!FindImagePublicKeyInPublicKeys3(stored_public_keys_3, imagePublicKeyIndex)) { return errmsg("Couldn't find RSA public key"); } key.resize(image_layout_file_public_keys_3_size()); image_layout_file_public_keys_3_pack(&stored_public_keys_3.file_public_keys_3[imagePublicKeyIndex], key.data()); return true; } bool Fs4Operations::FindImagePublicKeyInPublicKeys3(const image_layout_public_keys_3& public_keys, u_int32_t& idx) { bool res = false; u_int32_t num_of_key_slots = image_layout_public_keys_3_size() / image_layout_file_public_keys_3_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { if (public_keys.file_public_keys_3[ii].component_authentication_configuration.fw_en == 1) { idx = ii; res = true; break; } } return res; } bool Fs4Operations::StoreImagePublicKeyInPublicKeys2(const image_layout_file_public_keys_3& public_key) { // Find ITOC entry fs4_toc_info* itocEntry = (fs4_toc_info*)NULL; image_layout_public_keys_2 public_keys_2; memset(&public_keys_2, 0, sizeof(public_keys_2)); if (!Fs4GetItocInfo(_fs4ImgInfo.itocArr.tocArr, _fs4ImgInfo.itocArr.numOfTocs, FS3_PUBLIC_KEYS_4096, itocEntry)) { return errmsg("StoreImagePublicKeyInPublicKeys2 failed - Error: %s", err()); } image_layout_public_keys_2_unpack(&public_keys_2, itocEntry->section_data.data()); // Convert public_keys_3 to public_keys_2 image_layout_file_public_keys_2 new_public_key_2; memset(&new_public_key_2, 0, sizeof(new_public_key_2)); copy(begin(public_key.key), end(public_key.key), begin(new_public_key_2.key)); copy(begin(public_key.keypair_uuid), end(public_key.keypair_uuid), begin(new_public_key_2.keypair_uuid)); new_public_key_2.keypair_exp = public_key.keypair_exp; new_public_key_2.component_authentication_configuration = public_key.component_authentication_configuration; if (IsPublicKeyAlreadyInPublicKeys2(public_keys_2, new_public_key_2) == false) { // Get free slot for public key u_int32_t public_keys_2_free_slot_idx = 0; if (!FindImagePublicKeyInPublicKeys2(public_keys_2, public_keys_2_free_slot_idx)) { if (!GetFreeSlotInPublicKeys2(public_keys_2, public_keys_2_free_slot_idx)) { return errmsg("StoreImagePublicKeyInPublicKeys2 failed - Error: %s", err()); } } // Prepare public_keys_2 section data with public key at free slot index public_keys_2.file_public_keys_2[public_keys_2_free_slot_idx] = new_public_key_2; vector public_keys_2_data; public_keys_2_data.resize(image_layout_public_keys_2_size()); image_layout_public_keys_2_pack(&public_keys_2, public_keys_2_data.data()); if (!UpdateSection(FS3_PUBLIC_KEYS_4096, public_keys_2_data, "PUBLIC KEYS 4096")) { return errmsg("StoreImagePublicKeyInPublicKeys2 failed - Error: %s", err()); } } return true; } bool Fs4Operations::StoreImagePublicKeyInPublicKeys3(const image_layout_file_public_keys_3& new_public_key) { fs4_toc_info* itocEntry = (fs4_toc_info*)NULL; if (!Fs4GetItocInfo(_fs4ImgInfo.itocArr.tocArr, _fs4ImgInfo.itocArr.numOfTocs, FS4_RSA_PUBLIC_KEY, itocEntry)) { return errmsg("StoreImagePublicKeyInPublicKeys3 failed - Error: %s", err()); } image_layout_public_keys_3 stored_public_keys_3; memset(&stored_public_keys_3, 0, sizeof(stored_public_keys_3)); image_layout_public_keys_3_unpack(&stored_public_keys_3, itocEntry->section_data.data()); u_int32_t imagePublicKeyIndex = 0; if (IsPublicKeyAlreadyInPublicKeys3(stored_public_keys_3, new_public_key) == false) { if (!FindImagePublicKeyInPublicKeys3(stored_public_keys_3, imagePublicKeyIndex)) { if (!GetFreeSlotInPublicKeys3(stored_public_keys_3, imagePublicKeyIndex)) { return errmsg("StoreImagePublicKeyInPublicKeys3 failed - Error: %s", err()); } } stored_public_keys_3.file_public_keys_3[imagePublicKeyIndex] = new_public_key; vector public_keys_3_data; public_keys_3_data.resize(image_layout_public_keys_3_size()); image_layout_public_keys_3_pack(&stored_public_keys_3, public_keys_3_data.data()); if (!UpdateSection(public_keys_3_data.data(), FS4_RSA_PUBLIC_KEY, true, CMD_BURN, NULL)) { return errmsg("StoreImagePublicKeyInPublicKeys3 failed - Error: %s", err()); } } return true; } bool Fs4Operations::FindPublicKeyInPublicKeys2(const vector& keypair_uuid, bool& found, image_layout_file_public_keys_3& public_key) { // Find ITOC entry fs4_toc_info* itocEntry = (fs4_toc_info*)NULL; if (!Fs4GetItocInfo(_fs4ImgInfo.itocArr.tocArr, _fs4ImgInfo.itocArr.numOfTocs, FS3_PUBLIC_KEYS_4096, itocEntry)) { return errmsg("FindPublicKeyInPublicKeys2 failed - Error: %s", err()); } u_int32_t num_of_key_slots = image_layout_public_keys_2_size() / image_layout_file_public_keys_2_size(); for (u_int32_t ii = 0; ii < num_of_key_slots; ii++) { u_int32_t key_start_offset = ii * image_layout_file_public_keys_2_size(); image_layout_file_public_keys_2 stored_public_key; memset(&stored_public_key, 0, sizeof(stored_public_key)); image_layout_file_public_keys_2_unpack(&stored_public_key, itocEntry->section_data.data() + key_start_offset); // Compare keys based on UUID if (equal(begin(keypair_uuid), end(keypair_uuid), begin(stored_public_key.keypair_uuid))) { found = true; memset(&public_key, 0, sizeof(public_key)); copy(begin(stored_public_key.key), end(stored_public_key.key), begin(public_key.key)); copy(begin(stored_public_key.keypair_uuid), end(stored_public_key.keypair_uuid), begin(public_key.keypair_uuid)); public_key.keypair_exp = stored_public_key.keypair_exp; public_key.component_authentication_configuration = stored_public_key.component_authentication_configuration; break; } } return true; } void Fs4Operations::PublicKey2ToPublicKey3(const image_layout_file_public_keys_2& public_key_2, image_layout_file_public_keys_3& public_key_3) { memset(&public_key_3, 0, sizeof(public_key_3)); copy(begin(public_key_2.key), end(public_key_2.key), begin(public_key_3.key)); copy(begin(public_key_2.keypair_uuid), end(public_key_2.keypair_uuid), begin(public_key_3.keypair_uuid)); public_key_3.keypair_exp = public_key_2.keypair_exp; public_key_3.component_authentication_configuration = public_key_2.component_authentication_configuration; } bool Fs4Operations::ReadPublicKeys2SectionFromFile(const char* fname, image_layout_public_keys_2& public_keys_2_section) { int publicKeysSize = 0; int publicKeyStartIdx = 0; int publicKeySectionIdx = 0; u_int8_t* publicKeysData = nullptr; if (!ReadBinFile(fname, publicKeysData, publicKeysSize)) { return false; } if (publicKeysSize < IMAGE_LAYOUT_FILE_PUBLIC_KEYS_2_SIZE || publicKeysSize > IMAGE_LAYOUT_PUBLIC_KEYS_2_SIZE) { delete[] publicKeysData; return errmsg("Invalid size (%d bytes) of public keys file", publicKeysSize); } while (publicKeyStartIdx + IMAGE_LAYOUT_FILE_PUBLIC_KEYS_2_SIZE <= publicKeysSize) { image_layout_file_public_keys_2_unpack(&public_keys_2_section.file_public_keys_2[publicKeySectionIdx], &publicKeysData[publicKeyStartIdx]); publicKeyStartIdx += IMAGE_LAYOUT_FILE_PUBLIC_KEYS_2_SIZE; publicKeySectionIdx++; } delete[] publicKeysData; return true; } bool Fs4Operations::FwSetPublicKeys(char* fname, PrintCallBack callBackFunc) { fs3_section_t sectionType; if (!Fs3Operations::FwSetPublicKeys(fname, callBackFunc)) { return false; } if (!CheckPublicKeysFile(fname, sectionType)) { return false; } if (sectionType == FS3_PUBLIC_KEYS_4096) { struct fs4_toc_info* toc = (struct fs4_toc_info*)nullptr; if (Fs4GetItocInfo(_fs4ImgInfo.itocArr.tocArr, _fs4ImgInfo.itocArr.numOfTocs, FS4_RSA_PUBLIC_KEY, toc)) { image_layout_public_keys_2 public_keys_2; image_layout_public_keys_3 public_keys_3; memset(&public_keys_2, 0, sizeof(public_keys_2)); memset(&public_keys_3, 0, sizeof(public_keys_3)); if (!ReadPublicKeys2SectionFromFile(fname, public_keys_2)) { return false; } u_int32_t num_of_key_slots = image_layout_public_keys_3_size() / image_layout_file_public_keys_3_size(); for (u_int32_t i = 0; i < num_of_key_slots; ++i) { PublicKey2ToPublicKey3(public_keys_2.file_public_keys_2[i], public_keys_3.file_public_keys_3[i]); } vector public_keys_3_data; public_keys_3_data.resize(image_layout_public_keys_2_size()); image_layout_public_keys_3_pack(&public_keys_3, public_keys_3_data.data()); if (!UpdateSection(FS4_RSA_PUBLIC_KEY, public_keys_3_data, "FS4_RSA_PUBLIC_KEY", callBackFunc)) { return errmsg("FwSetPublicKeys failed - Error: %s", err()); } if (!FsIntQueryAux(false, false)) { return false; } INSERT_SHA_IF_NEEDS(callBackFunc); } else { err_clear(); } } return true; } bool Fs4Operations::StoreImagePublicKey(const char* public_key_file, const char* uuid) { image_layout_file_public_keys_3 public_key_3; memset(&public_key_3, 0, sizeof(public_key_3)); if (!GetPublicKeyFromFile(public_key_file, uuid, &(public_key_3))) { return errmsg("StoreImagePublicKey failed - Error: %s", err()); } if (!StoreImagePublicKeyInPublicKeys2(public_key_3)) { return errmsg("StoreImagePublicKey failed - Error: %s", err()); } if (!StoreImagePublicKeyInPublicKeys3(public_key_3)) { return false; } return true; } bool Fs4Operations::storeSecureBootSignaturesInSection(vector boot_signature, vector critical_sections_signature, vector non_critical_sections_signature) { //* Assert critical and non-critical signatures vectors are both empty or both not empty if (critical_sections_signature.empty() != non_critical_sections_signature.empty()) { return false; } vector finishData; image_layout_secure_boot_signatures secure_boot_signatures; memset(&secure_boot_signatures, 0, sizeof(secure_boot_signatures)); memcpy(&secure_boot_signatures.boot_signature, boot_signature.data(), sizeof(secure_boot_signatures.boot_signature)); TOCPUn(&secure_boot_signatures.boot_signature, sizeof(secure_boot_signatures.boot_signature) >> 2); if (!critical_sections_signature.empty()) { memcpy(&secure_boot_signatures.critical_signature, critical_sections_signature.data(), sizeof(secure_boot_signatures.critical_signature)); TOCPUn(&secure_boot_signatures.critical_signature, sizeof(secure_boot_signatures.critical_signature) >> 2); } if (!non_critical_sections_signature.empty()) { memcpy(&secure_boot_signatures.non_critical_signature, non_critical_sections_signature.data(), sizeof(secure_boot_signatures.non_critical_signature)); TOCPUn(&secure_boot_signatures.non_critical_signature, sizeof(secure_boot_signatures.non_critical_signature) >> 2); } finishData.resize(image_layout_secure_boot_signatures_size()); image_layout_secure_boot_signatures_pack(&secure_boot_signatures, finishData.data()); if (!UpdateSection(finishData.data(), FS4_RSA_4096_SIGNATURES, true, CMD_BURN, NULL)) { return errmsg("storeSecureBootSignaturesInSection: store secure-boot signatures failed.\n"); } return true; } bool Fs4Operations::InitHwPtrs(bool isVerify) { DPRINTF(("Fs4Operations::InitHwPtrs\n")); if (!getImgStart()) { // Set _fwImgInfo.imgStart with the image start address return false; } if (!getExtendedHWAravaPtrs((VerifyCallBack)NULL, _ioAccess, false, isVerify)) { return errmsg("InitHwPtrs: HW pointers not found.\n"); } return true; } bool Fs4Operations::GetHashesTableSize(u_int32_t& size) { bool image_encrypted = false; if (!isEncrypted(image_encrypted)) { return false; } u_int32_t htoc_hash_size = HTOC_HASH_SIZE; // In case of encrypted device we can't parse HTOC header to get hash size so we use constant if (!image_encrypted) { //* Read HTOC header for hash size u_int8_t* buff; u_int32_t htoc_header_address = _hashes_table_ptr + IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE; READALLOCBUF((*_ioAccess), htoc_header_address, buff, IMAGE_LAYOUT_HTOC_HEADER_SIZE, "HTOC header"); image_layout_htoc_header header; image_layout_htoc_header_unpack(&header, buff); htoc_hash_size = header.hash_size; free(buff); } u_int32_t htoc_size = IMAGE_LAYOUT_HTOC_HEADER_SIZE + MAX_HTOC_ENTRIES_NUM * (IMAGE_LAYOUT_HTOC_ENTRY_SIZE + htoc_hash_size); size = IMAGE_LAYOUT_HASHES_TABLE_HEADER_SIZE + htoc_size + HASHES_TABLE_TAIL_SIZE; return true; } bool Fs4Operations::GetHashesTableData(vector& data) { if (!isHashesTableHwPtrValid()) { return false; } //* Get size u_int32_t hashes_table_size = 0; if (!GetHashesTableSize(hashes_table_size)) { return false; } //* Read hashes table u_int8_t* buff; READALLOCBUF((*_ioAccess), _hashes_table_ptr, buff, hashes_table_size, "HASHES TABLE"); data.insert(data.end(), buff, buff + hashes_table_size); free(buff); return true; } //! TODO - Fix return value to status and result as output argument bool Fs4Operations::isHashesTableHwPtrValid() { //* Check HW pointers initialized if (!_is_hw_ptrs_initialized) { if (!InitHwPtrs()) { return errmsg("isHashesTableHwPtrValid: HW pointers not found"); } } //* Check if pointer is valid bool res = true; if (_hashes_table_ptr == 0xffffffff or _hashes_table_ptr == 0x0) { res = false; } return res; } SecureBootSignVersion Fs4Operations::getSecureBootSignVersion() { SecureBootSignVersion res = VERSION_1; //* Check if hashes_table exists if (isHashesTableHwPtrValid()) { res = VERSION_2; } return res; } bool Fs4Operations::SignForSecureBoot(const char* public_key_file, const char* uuid, const MlxSign::Signer& signer) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) if (_ioAccess->is_flash()) { return errmsg("SignForSecureBoot not allowed for devices"); } if (!Init()) { return errmsg("SignForSecureBoot failed - Error: %s\n", err()); } SecureBootSignVersion secure_boot_version = getSecureBootSignVersion(); if (secure_boot_version == VERSION_2) { if (!SetImageIVHwPointer()) { return errmsg("SignForSecureBoot failed - Error: %s\n", err()); } } if (!StoreImagePublicKey(public_key_file, uuid)) { return errmsg("SignForSecureBoot failed - Error: StoreImagePublicKey failed (%s)\n", err()); } //* Get boot area signature vector boot_data; vector boot_signature; if (!getBootDataForSign(boot_data)) { return errmsg("SignForSecureBoot failed - Error: getBootDataForSign failed (%s)\n", err()); } int rc = signer.Sign(boot_data, boot_signature); if (rc) { return errmsg("SignForSecureBoot failed - Error: failed to set private key from engine (rc = 0x%x)", rc); } //* Get critical and non-critical sections signatures vector critical_sections_data, non_critical_sections_data; vector critical_signature, non_critical_signature; if (secure_boot_version == VERSION_1) { if (!getCriticalNonCriticalSections(critical_sections_data, non_critical_sections_data)) { return errmsg("SignForSecureBoot failed - Error: getCriticalNonCriticalSections failed (%s)\n", err()); } rc = signer.Sign(critical_sections_data, critical_signature); if (rc) { return errmsg("SignForSecureBoot failed - Error: failed to set private key from engine (rc = 0x%x)", rc); } rc = signer.Sign(non_critical_sections_data, non_critical_signature); if (rc) { return errmsg("SignForSecureBoot failed - Error: failed to set private key from engine (rc = 0x%x)", rc); } } //* Store secure boot signatures in section bool res; if (secure_boot_version == VERSION_1) { res = storeSecureBootSignaturesInSection(boot_signature, critical_signature, non_critical_signature); } else { res = storeSecureBootSignaturesInSection(boot_signature); } if (!res) { return errmsg("SignForSecureBoot: Failed to insert secure boot signatures (%s)\n", err()); } return true; #else (void)public_key_file; (void)uuid; (void)signer; return errmsg("SignForSecureBoot is not suppported"); #endif } bool Fs4Operations::GetPublicKeyFromFile(const char* public_key_file, const char* uuid, image_layout_file_public_keys_3* public_key) { //* Parse uuid vector uuidData; if (!extractUUIDFromString(uuid, uuidData)) { return errmsg("preparePublicKeyDataForStore: UUID parsing failed."); } //* Parse public-key vector publicKeyData; u_int32_t keyPairExp = 0; image_layout_component_authentication_configuration keyAuthConf; memset(&keyAuthConf, 0, sizeof(keyAuthConf)); if (!ParsePublicKeyFromFile(public_key_file, publicKeyData, keyPairExp, keyAuthConf)) { return errmsg("preparePublicKeyDataForStore failed - Error: %s", err()); } PreparePublicKey(publicKeyData, uuidData, keyPairExp, keyAuthConf, *public_key); return true; } bool Fs4Operations::FwSignWithHmac(const char* keyFile) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) vector critical, non_critical, bin_data, digest; u_int32_t physAddr = _authentication_start_ptr; if (_ioAccess->is_flash()) { return errmsg("Adding HMAC not allowed for devices"); } if (!getExtendedHWPtrs((VerifyCallBack)NULL, _ioAccess)) { return false; } const unsigned int s = _authentication_end_ptr - _authentication_start_ptr + 1; bin_data.resize(s); READBUF((*_ioAccess), physAddr, bin_data.data(), s, "Reading data pointed by HW Pointers"); const int key_len = 64; std::ifstream f(keyFile); std::stringstream buf; buf << f.rdbuf(); std::string fileContents = buf.str(); if (!validateHmacKey(fileContents, key_len)) return errmsg("Key must be of length of 64 bytes, each byte represented with two chars (hex)"); unsigned char key_buf[key_len + 1]; std::string num_str = ""; size_t file_content_size = fileContents.size(); for (size_t i = 0; i < file_content_size; i++) { if (i % 2 != 0) { num_str += fileContents[i]; key_buf[i / 2] = strtol(num_str.c_str(), NULL, 16); } else { num_str = fileContents[i]; } } vector key(key_buf, key_buf + key_len); PrepItocSectionsForHmac(critical, non_critical); if (!CalcHMAC(key, bin_data, digest)) { return false; } if (!writeImageEx((ProgressCallBackEx)NULL, NULL, (ProgressCallBack)NULL, _digest_recovery_key_ptr, digest.data(), digest.size(), true, true, 0, 0)) { return false; } digest.resize(0x0); if (!CalcHMAC(key, critical, digest)) { return false; } if (!writeImageEx((ProgressCallBackEx)NULL, NULL, (ProgressCallBack)NULL, _digest_recovery_key_ptr + digest.size(), digest.data(), digest.size(), true, true, 0, 0)) { return false; } digest.resize(0); if (!CalcHMAC(key, non_critical, digest)) { return false; } if (!writeImageEx((ProgressCallBackEx)NULL, NULL, (ProgressCallBack)NULL, _digest_recovery_key_ptr + 2 * digest.size(), digest.data(), digest.size(), true, true, 0, 0)) { return false; } return true; #else (void)keyFile; return errmsg("FwSignWithHmac is not suppported."); #endif } bool Fs4Operations::updateHwPointer(u_int32_t addr, u_int32_t val) { struct image_layout_hw_pointer_entry hw_pointer = image_layout_hw_pointer_entry(); hw_pointer.ptr = TOCPU1(val); //* Calculate CRC vector hw_pointer_data(IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE, 0x0); image_layout_hw_pointer_entry_pack(&hw_pointer, hw_pointer_data.data()); hw_pointer.crc = calc_hw_crc(hw_pointer_data.data(), IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE - 2); //* Write HW pointer and its CRC to image image_layout_hw_pointer_entry_pack(&hw_pointer, hw_pointer_data.data()); if (!_ioAccess->write(addr, hw_pointer_data.data(), IMAGE_LAYOUT_HW_POINTER_ENTRY_SIZE)) { return errmsg("updateHwPointer writing to hw pointer in addr 0x%08x failed\n", addr); } return true; } bool Fs4Operations::SetImageIVHwPointer() { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) if (_ioAccess->is_flash()) { return errmsg("SetImageIVHwPointer is not applicable for devices\n"); } fw_info_t fwInfo; if (!FwQuery(&fwInfo, false, false, false, true)) { return false; // implicit set to errmsg } //* Assuming query already done so image info section is parsed and following members initialized accordingly struct image_layout_FW_VERSION fw_version; fw_version.MAJOR = _fwImgInfo.ext_info.fw_ver[0]; fw_version.MINOR = _fwImgInfo.ext_info.fw_ver[1]; fw_version.SUBMINOR = _fwImgInfo.ext_info.fw_ver[2]; fw_version.Hour = _fwImgInfo.ext_info.fw_rel_time[0]; fw_version.Minutes = _fwImgInfo.ext_info.fw_rel_time[1]; fw_version.Seconds = _fwImgInfo.ext_info.fw_rel_time[2]; fw_version.Day = _fwImgInfo.ext_info.fw_rel_date[0]; fw_version.Month = _fwImgInfo.ext_info.fw_rel_date[1]; fw_version.Year = _fwImgInfo.ext_info.fw_rel_date[2]; vector fw_version_data(IMAGE_LAYOUT_FW_VERSION_SIZE, 0x0); image_layout_FW_VERSION_pack(&fw_version, fw_version_data.data()); DPRINTF(("Fs4Operations::SetImageIVHwPointer FW version and date for hash256:\n")); for (u_int32_t i = 0; i < (u_int32_t)fw_version_data.size(); i += 4) { DPRINTF(("Fs4Operations::SetImageIVHwPointer 0x%02x%02x%02x%02x\n", fw_version_data[i], fw_version_data[i + 1], fw_version_data[i + 2], fw_version_data[i + 3])); } //* Calculate SHA256 on FW version and date MlxSignSHA256 mlxSignSHA; mlxSignSHA << fw_version_data; vector sha; mlxSignSHA.getDigest(sha); u_int32_t image_iv = ((u_int32_t*)sha.data())[0]; DPRINTF(("Fs4Operations::SetImageIVHwPointer image_iv = 0x%08x", image_iv)); return updateHwPointer(DELTA_IV_HW_POINTER_ADDR, image_iv); #else return errmsg("SetImageIVHwPointer is not suppported"); #endif } bool Fs4Operations::PrepItocSectionsForHmac(vector& critical, vector& non_critical) { if (!FsIntQueryAux(true, false)) { return false; } for (int i = 0; i < this->_fs4ImgInfo.itocArr.numOfTocs; i++) { struct fs4_toc_info* itoc_info_p = &this->_fs4ImgInfo.itocArr.tocArr[i]; struct image_layout_itoc_entry* toc_entry = &(itoc_info_p->toc_entry); if (IsCriticalSection(toc_entry->type)) { critical.reserve(critical.size() + itoc_info_p->section_data.size()); critical.insert(critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); } else { if (itoc_info_p->toc_entry.type == FS4_RSA_4096_SIGNATURES) { continue; } non_critical.reserve(non_critical.size() + itoc_info_p->section_data.size()); non_critical.insert(non_critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); } } return true; } bool Fs4Operations::PrepItocSectionsForCompare(vector& critical, vector& non_critical) { for (int i = 0; i < this->_fs4ImgInfo.itocArr.numOfTocs; i++) { struct fs4_toc_info* itoc_info_p = &this->_fs4ImgInfo.itocArr.tocArr[i]; struct image_layout_itoc_entry* toc_entry = &(itoc_info_p->toc_entry); if (IsCriticalSection(toc_entry->type)) { critical.reserve(critical.size() + itoc_info_p->section_data.size()); critical.insert(critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); // printf("-D- addr 0x%.8x toc type : 0x%.8x size 0x%.8x name %s\n", itoc_info_p->entry_addr, // itoc_info_p->toc_entry.type, (unsigned int)(itoc_info_p->section_data.size() + padding_size), // GetSectionNameByType(itoc_info_p->toc_entry.type)); } else { if (itoc_info_p->toc_entry.type == FS4_RSA_4096_SIGNATURES || itoc_info_p->toc_entry.type == FS3_IMAGE_SIGNATURE_512 || itoc_info_p->toc_entry.type == FS3_IMAGE_SIGNATURE_256) { continue; } // printf("-D- addr 0x%.8x toc type : 0x%.8x size 0x%.8x name %s\n", itoc_info_p->entry_addr, // itoc_info_p->toc_entry.type, (unsigned int)itoc_info_p->section_data.size(), // GetSectionNameByType(itoc_info_p->toc_entry.type)); non_critical.reserve(non_critical.size() + itoc_info_p->section_data.size()); non_critical.insert(non_critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); // currentItoc++; } } return true; } bool Fs4Operations::getCriticalNonCriticalSections(vector& critical, vector& non_critical) { if (!FsIntQueryAux(true, false)) { return false; } for (int i = 0; i < this->_fs4ImgInfo.itocArr.numOfTocs; i++) { unsigned long padding_size = 0; struct fs4_toc_info* itoc_info_p = &this->_fs4ImgInfo.itocArr.tocArr[i]; struct image_layout_itoc_entry* toc_entry = &(itoc_info_p->toc_entry); if (itoc_info_p->section_data.size() % GLOBAL_ALIGNMENT) { padding_size = GLOBAL_ALIGNMENT - (itoc_info_p->section_data.size() % GLOBAL_ALIGNMENT); } if (IsCriticalSection(toc_entry->type)) { critical.reserve(critical.size() + itoc_info_p->section_data.size() + padding_size); critical.insert(critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); critical.insert(critical.end(), padding_size, 0xff); // printf("-D- addr 0x%.8x toc type : 0x%.8x size 0x%.8x name %s\n", itoc_info_p->entry_addr, // itoc_info_p->toc_entry.type, (unsigned int)(itoc_info_p->section_data.size() + padding_size), // GetSectionNameByType(itoc_info_p->toc_entry.type)); } else { if (itoc_info_p->toc_entry.type == FS4_RSA_4096_SIGNATURES || itoc_info_p->toc_entry.type == FS3_IMAGE_SIGNATURE_512 || itoc_info_p->toc_entry.type == FS3_IMAGE_SIGNATURE_256) { continue; } // printf("-D- addr 0x%.8x toc type : 0x%.8x size 0x%.8x name %s\n", // itoc_info_p->toc_entry.flash_addr*4, itoc_info_p->toc_entry.type, // (unsigned int)itoc_info_p->section_data.size(), // GetSectionNameByType(itoc_info_p->toc_entry.type)); non_critical.reserve(non_critical.size() + itoc_info_p->section_data.size() + padding_size); non_critical.insert(non_critical.end(), itoc_info_p->section_data.begin(), itoc_info_p->section_data.end()); non_critical.insert(non_critical.end(), padding_size, 0xff); // currentItoc++; } } return true; } bool Fs4Operations::CalcHMAC(const vector& key, const vector& data, vector& digest) { #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) MlxSignHMAC mlxSignHMAC; mlxSignHMAC.setKey(key); mlxSignHMAC << data; mlxSignHMAC.getDigest(digest); return true; #else (void)key; (void)digest; (void)data; return errmsg("HMAC calculation is not implemented\n"); #endif } bool Fs4Operations::IsSecurityVersionViolated(u_int32_t image_security_version) { // Set image security-version u_int32_t imageSecurityVersion = image_security_version; u_int32_t deviceEfuseSecurityVersion; if (getenv("FLINT_IGNORE_SECURITY_VERSION_CHECK") != NULL) { return false; } // Set device security-version (from EFUSEs) if (_fs3ImgInfo.ext_info.device_security_version_access_method == MFSV) { deviceEfuseSecurityVersion = _fs3ImgInfo.ext_info.device_security_version_mfsv.efuses_sec_ver; } else if (_fs3ImgInfo.ext_info.device_security_version_access_method == DIRECT_ACCESS) { deviceEfuseSecurityVersion = _fs3ImgInfo.ext_info.device_security_version_gw; } else { deviceEfuseSecurityVersion = 0; } // Check violation of security-version return (imageSecurityVersion < deviceEfuseSecurityVersion); } bool Fs4Operations::TocComp::operator()(fs4_toc_info* elem1, fs4_toc_info* elem2) { u_int32_t absAddr1 = (elem1->toc_entry.flash_addr << 2) + _startAdd; u_int32_t absAddr2 = (elem2->toc_entry.flash_addr << 2) + _startAdd; if (absAddr1 < absAddr2) { return true; } return false; } u_int32_t Fs4Operations::TocArray::getSectionsTotalSize() { u_int32_t s = 0; for (int i = 0; i < numOfTocs; i++) { struct fs4_toc_info* itoc_info_p = &(tocArr[i]); struct image_layout_itoc_entry* toc_entry = &itoc_info_p->toc_entry; s += toc_entry->size << 2; } return s; } void Fs4Operations::TocArray::initEmptyTocArrEntry(struct fs4_toc_info* tocArrEntry) { if (!tocArrEntry) { return; } memset(tocArrEntry->data, 0, sizeof(tocArrEntry->data)); memset(&tocArrEntry->toc_entry, 0, sizeof(tocArrEntry->toc_entry)); tocArrEntry->entry_addr = 0; tocArrEntry->section_data.resize(0); return; } void Fs4Operations::TocArray::copyTocArrEntry(struct fs4_toc_info* dest, struct fs4_toc_info* src) { if (!src || !dest) { return; } memcpy(dest->data, src->data, sizeof(src->data)); dest->entry_addr = src->entry_addr; dest->section_data = src->section_data; memcpy(&dest->toc_entry, &src->toc_entry, sizeof(src->toc_entry)); return; } Fs4Operations::TocArray::TocArray() { numOfTocs = 0; tocArrayAddr = 0; for (int i = 0; i < MAX_TOCS_NUM; i++) { Fs4Operations::TocArray::initEmptyTocArrEntry(&tocArr[i]); } memset(&tocHeader, 0, sizeof(tocHeader)); } Fs4Operations::HTOC::HTOC(vector img, u_int32_t htoc_start_addr) { memset(entries, 0, MAX_HTOC_ENTRIES_NUM * sizeof(image_layout_htoc_entry)); this->htoc_start_addr = htoc_start_addr; //* Parse header vector header_data(img.begin() + htoc_start_addr, img.begin() + htoc_start_addr + IMAGE_LAYOUT_HTOC_HEADER_SIZE); image_layout_htoc_header_unpack(&header, header_data.data()); // image_layout_htoc_header_dump(&header, stdout); //* Parse entries u_int32_t entries_start_addr = htoc_start_addr + IMAGE_LAYOUT_HTOC_HEADER_SIZE; for (int ii = 0; ii < header.num_of_entries; ii++) { u_int32_t entry_addr = entries_start_addr + ii * IMAGE_LAYOUT_HTOC_ENTRY_SIZE; vector entry_data(img.begin() + entry_addr, img.begin() + entry_addr + IMAGE_LAYOUT_HTOC_ENTRY_SIZE); image_layout_htoc_entry_unpack(&(entries[ii]), entry_data.data()); // image_layout_htoc_entry_dump(&(entries[ii]), stdout); } } bool Fs4Operations::HTOC::AddNewEntry(FBase* ioAccess, fs3_section_t section_type, struct image_layout_htoc_entry& htoc_entry) { DPRINTF(("Fs4Operations::HTOC::AddNewEntry htoc num_of_entries = %d\n", header.num_of_entries)); if (header.num_of_entries == MAX_HTOC_ENTRIES_NUM) { return false; } //* Preparing new htoc entry struct u_int32_t htoc_size = IMAGE_LAYOUT_HTOC_HEADER_SIZE + MAX_HTOC_ENTRIES_NUM * IMAGE_LAYOUT_HTOC_ENTRY_SIZE; u_int32_t htoc_entry_index = header.num_of_entries; htoc_entry.hash_offset = htoc_size + (htoc_entry_index * header.hash_size); htoc_entry.section_type = section_type; //* Writing new htoc entry u_int32_t htoc_entry_addr = htoc_start_addr + IMAGE_LAYOUT_HTOC_HEADER_SIZE + htoc_entry_index * IMAGE_LAYOUT_HTOC_ENTRY_SIZE; vector htoc_entry_data; htoc_entry_data.resize(IMAGE_LAYOUT_HTOC_ENTRY_SIZE); image_layout_htoc_entry_pack(&htoc_entry, htoc_entry_data.data()); DPRINTF(("Fs4Operations::HTOC::AddNewEntry Writing new htoc entry at addr 0x%x\n", htoc_entry_addr)); if (!ioAccess->write(htoc_entry_addr, htoc_entry_data.data(), IMAGE_LAYOUT_HTOC_ENTRY_SIZE)) { return false; } //* Updating and writing htoc header header.num_of_entries++; vector htoc_header_data; htoc_header_data.resize(IMAGE_LAYOUT_HTOC_HEADER_SIZE); image_layout_htoc_header_pack(&header, htoc_header_data.data()); DPRINTF(("Fs4Operations::HTOC::AddNewEntry Writing updated htoc header at addr 0x%x\n", htoc_start_addr)); if (!ioAccess->write(htoc_start_addr, htoc_header_data.data(), IMAGE_LAYOUT_HTOC_HEADER_SIZE)) { return false; } return true; } bool Fs4Operations::HTOC::GetEntryBySectionType(fs3_section_t section_type, struct image_layout_htoc_entry& htoc_entry) { bool res = false; for (int ii = 0; ii < header.num_of_entries; ii++) { if (entries[ii].section_type == section_type) { htoc_entry = entries[ii]; res = true; break; } } return res; } mstflint-4.26.0/mlxfwops/uefi_c/0000755000175000017500000000000014522641732017014 5ustar tzafrirctzafrircmstflint-4.26.0/mlxfwops/uefi_c/mft_uefi_common.h0000644000175000017500000000433014522641732022333 0ustar tzafrirctzafrirc/* * * mft_uefi_common.h - Mellanox Technilogies LTD. UEFI common structs header file * ================================================================== * * Copyright (c) 2005-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Version: $Id: $ * */ #ifndef MFT_MLXFWOPS_UEFI_C_MFT_UEFI_COMMON_H_ #define MFT_MLXFWOPS_UEFI_C_MFT_UEFI_COMMON_H_ typedef struct _MLX4_DEV uefi_Dev_t; typedef int (*f_fw_cmd)(uefi_Dev_t* dev, void* buffer, int* w_size, int* r_size); typedef int (*f_dma_alloc)(uefi_Dev_t* dev, u_int64_t* pa, u_int64_t* va); typedef struct uefi_dev_info { u_int32_t hw_dev_id; u_int32_t rev_id; u_int32_t max_buffer_size; u_int8_t no_fw_ctrl; } uefi_dev_info_t; typedef struct uefi_dev_extra { f_fw_cmd fw_cmd_func; f_dma_alloc dma_func; uefi_dev_info_t dev_info; } uefi_dev_extra_t; #endif /* MFT_MLXFWOPS_UEFI_C_MFT_UEFI_COMMON_H_ */ mstflint-4.26.0/mlxfwops/Makefile.am0000755000175000017500000000274614522641732017632 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = lib mstflint-4.26.0/mlxfwops/Makefile.in0000644000175000017500000005003314522641737017635 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mlxfwops DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = lib all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxfwops/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxfwops/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/0000755000175000017500000000000014522641740016612 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/mstresourceparse.py0000644000175000017500000001464214522641732022602 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # resourceparse.py # Python implementation of the Class ResourceParse # Generated by Enterprise Architect # Created on: 16-Dec-2019 14:11:58 AM # Original author: talve # ####################################################### import tools_version import sys import os if sys.version_info[0] < 3: print("Error: This tool supports python 3.x only. Exiting...") exit(1) import argparse from resourceparse_lib.utils import constants as cs from resourceparse_lib.utils.common_functions import valid_path_arg_type from resourceparse_lib.ResourceParseManager import ResourceParseManager from resourceparse_lib.utils.Exceptions import ResourceParseException from resourceparse_lib.parsers.ResourceParser import PARSER_CLASSES, parser_type sys.path.append(os.path.join("common")) class ResourceParse: """This class is responsible for the resource dump UI by handling the user inputs and and running the right command. """ _arg_parser = None _common_usage = None _common_help = None @classmethod def _init_arg_parser(cls, prog=None): tool_name = prog if prog else os.path.basename(__file__).split('.')[0] description = \ """Description: This tool parses and formats the output of "resourcedump" tool. There are several methods of parsing (see --parser). """ if not prog else None cls._arg_parser = argparse.ArgumentParser(prog=tool_name, description=description, add_help=False) required_args = cls._arg_parser.add_argument_group('required arguments') optional_args = cls._arg_parser.add_argument_group('optional arguments') optional_args.add_argument("-p", "--parser", dest="resource_parser", type=parser_type, nargs="?", const=PARSER_CLASSES["adb"], default=PARSER_CLASSES["adb"] if not prog else PARSER_CLASSES["raw"], help="Available options: {}. Default: 'adb'. see (Parsing methods) ".format(list(PARSER_CLASSES.keys()))) optional_args.add_argument("-o", "--out", help='Location of the output file') # Only args that added up until here will be included in the resourcedump help menu cls._common_usage = cls._arg_parser.format_usage().rstrip() + " [PARSE_METHOD_ARGUMENTS]\n" parse_methods_help = "Parse Methods:\n The parse method can be chosen by the common --parser option. Below the description of each parse method and its arguments.\n\n" parse_methods_help += "\n".join(['Parse Method - "{}":\n'.format(parser_name) + parser_class.get_arg_parser(cls._arg_parser.prog).format_help() for parser_name, parser_class in PARSER_CLASSES.items()]) cls._common_help = "\n".join(cls._arg_parser.format_help().split("\n")[1:]) + "\n" + parse_methods_help input_named = required_args.add_mutually_exclusive_group(required=True) input_named.add_argument("-d", "--dump-file", type=valid_path_arg_type, help='Location of the dump file used for parsing') input_named.add_argument("--segments_provided", action="store_true", help=argparse.SUPPRESS) optional_args.add_argument('--version', action='version', help="Shows the tool's version and exit", version=tools_version.GetVersionString(tool_name, None)) optional_args.add_argument("-v", help='Verbosity notice', dest="verbose", default=0, action='count') optional_args.add_argument("-h", "--help", action="help", help="show this help message and exit") standalone_usage = cls._arg_parser.format_usage().rstrip() + " [PARSE_METHOD_ARGUMENTS]\n" standalone_help_body = "\n".join(cls._arg_parser.format_help().split("\n")[1:]) + "\n" + parse_methods_help standalone_help = standalone_usage + standalone_help_body cls._arg_parser.format_help = lambda: standalone_help @classmethod def get_help(cls, prog): if not cls._arg_parser: cls._init_arg_parser(prog) return cls._common_help, cls._common_usage @classmethod def run_arg_parse(cls, argv=None, prog=None): """This method run the arg parse and return the arguments from the UI. """ if not cls._arg_parser: cls._init_arg_parser(prog) manager_args, remaining = cls._arg_parser.parse_known_args(argv) parsing_method_arg_parser = manager_args.resource_parser.get_arg_parser(cls._arg_parser.prog) parser_args = parsing_method_arg_parser.parse_args(remaining) if parsing_method_arg_parser else argparse.Namespace return manager_args, parser_args def run(self, argv=None, segments=None): """This method run the parser with the needed arguments """ manager_args, parser_args = self.run_arg_parse(argv) creator = ResourceParseManager(manager_args, parser_args, segments) creator.parse() if __name__ == '__main__': try: ResourceParse().run() except ResourceParseException as rpe: print("ResourceParse failed!\n{0}.\nExiting...".format(rpe)) sys.exit(1) except Exception as e: print("FATAL ERROR!\n{0}.\nExiting...".format(e)) sys.exit(1) mstflint-4.26.0/resourcetools/resourceparse_lib/0000755000175000017500000000000014522641732022323 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourceparse_lib/ResourceParseManager.py0000644000175000017500000001270614522641732026760 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # Parser.py # Python implementation of the Class Parser # Generated by Enterprise Architect # Created on: 19-Dec-2019 3:18:38 PM # Original author: talve # ####################################################### import os import math import re import struct from resourceparse_lib.utils import constants as cs from resourceparse_lib.resource_data.RawData import RawData from resourceparse_lib.resource_data.DataPrinter import DataPrinter from resourceparse_lib.utils.Exceptions import ResourceParseException from resourceparse_lib.parsers.RawParser import RawParser class ResourceParseManager: """This class responsible for parsing the segments according the given raw data and adb segments by organize the given inputs and print them after the parsing posses. """ def __init__(self, manager_args, parser_args, segments): """This method initialize the class members """ self._verbosity = manager_args.verbose self._out_file = manager_args.out self._printer = DataPrinter(self._verbosity, self._out_file) self._warning_counter = 0 self._error_counter = 0 self._notice_counter = 0 try: self._dumped_segment_db = segments if segments else self._retrieve_dumped_segment_db(manager_args.dump_file, manager_args.resource_parser) except ResourceParseException as rpe: raise ResourceParseException("{0}\nFail to generate segment db from raw data.".format(rpe)) try: parser_args.manager = self self._parser = manager_args.resource_parser(parser_args) except ResourceParseException as rpe: raise ResourceParseException("{0}\nFailed to parse with parser - {1}.".format(rpe, self._parser.__name__)) self._parser.validate() def _get_next_warning_counter(self): """This method return get the next free index to help generate the a uniq key for the warning msg. """ returned_value = self._warning_counter self._warning_counter += 1 return returned_value def _get_next_error_counter(self): """This method return get the next free index to help generate the a uniq key for the error msg. """ returned_value = self._error_counter self._error_counter += 1 return returned_value def _get_next_notice_counter(self): """This method return get the next free index to help generate the a uniq key for the notice msg. """ returned_value = self._notice_counter self._notice_counter += 1 return returned_value def parse(self): """This method parse the segment according the the dumped input file and the current configurations. """ # parse all segments seg_parsed_counter = 0 try: for seg in self._dumped_segment_db: seg_parsed_counter += 1 self._parser.parse_segment(seg) except ResourceParseException as rpe: raise ResourceParseException("{0}\nFail to parse segments, failure occur at segment number {1}.".format(rpe, seg_parsed_counter)) # print all segments self._printer.print_parsed_segment(self._dumped_segment_db, self._parser.get_title(), self._parser.get_segment_separator()) def retrieve_adb_version_from_info_segment(self): """This method locate the info segment and if found, return the fw_version at the format XX.XX.XXXX, otherwise return empty string. """ for seg in self._dumped_segment_db: if seg.get_type() == cs.RESOURCE_DUMP_SEGMENT_TYPE_INFO: return seg.get_version() return "" def get_num_dumped_segments(self): return len(self._dumped_segment_db) def _retrieve_dumped_segment_db(self, dumped_file_path, parser_type): """This method get the segment list generated from the dumped input file by calling the RawData class. """ return RawData(dumped_file_path).to_segments(parser_type is not RawParser) mstflint-4.26.0/resourcetools/resourceparse_lib/__init__.py0000644000175000017500000000257714522641732024447 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourceparse_lib/utils/0000755000175000017500000000000014522641732023463 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourceparse_lib/utils/Exceptions.py0000644000175000017500000000324014522641732026155 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # Exceptions.py # Python implementation of the Class Exceptions # Created on: 22-Mar-2023 # Original author: harelk # ####################################################### class ResourceParseException(Exception): pass mstflint-4.26.0/resourcetools/resourceparse_lib/utils/common_functions.py0000644000175000017500000000545714522641732027430 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # constants.py # Python implementation of resource dump constants # This file will supply all the constants needed # for the resource parse tool # Original author: talve # ####################################################### from resourcedump_lib.utils import constants as cs from argparse import ArgumentTypeError from pathlib import Path import sys def calculate_aligned_offset(offset, size, alignment=32): """This method calculate the new offset inside the dword since the data inside has a different bit index """ return (int(offset / alignment) * alignment) + alignment - size - (offset % alignment) if size < alignment else offset def is_resource_segment(seg_type): """This method check if the seg type is resource segment """ return cs.RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE_MAX >= seg_type >= cs.RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE_MIN def valid_path_arg_type(path_str): p = Path(path_str) if p.is_file(): return path_str raise ArgumentTypeError("invalid file: {}".format(path_str)) def reverse_string_endian(s): """This method converts list of chars stored as BE numbers to LE string.""" len_4_mul = len(s) // 4 * 4 s = [reversed(s[i:i + 4]) for i in range(0, len_4_mul, 4)] if (len(s) % 4 != 0): s.append(reversed(s[len_4_mul, 4:len(s)])) s = bytes([item for word in s for item in word]) return s mstflint-4.26.0/resourcetools/resourceparse_lib/utils/__init__.py0000644000175000017500000000257714522641732025607 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourceparse_lib/utils/constants.py0000644000175000017500000000530514522641732026054 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # constants.py # Python implementation of resource dump constants # This file will supply all the constants needed # for the resource parse tool # Original author: talve # ####################################################### TOOL_NAME = "ResourceParse" RESOURCE_DUMP_SEGMENT_TYPE_INFO = 0xfffe RESOURCE_DUMP_SEGMENT_TYPE_MENU = 0xffff RESOURCE_DUMP_SEGMENT_TYPE_REFERENCE = 0xfffd # segment start/end specify where the 'type' attr starts and ends in the raw_data of each segment. # should be 0-16 bits SEGMENT_SIZE_DWORD_LOCATION = 0 SEGMENT_AGGREGATE_DWORD_LOCATION = 1 SEGMENT_AGGREGATE_BIT = 31 RAW_DATA_FILE_TYPE_BIN = 0 RAW_DATA_FILE_TYPE_HUMAN_READABLE = 1 RAW_DATA_FILE_TYPE_JSON = 2 DWORD_SIZE = 4 RESOURCE_SEGMENT_START_OFFSET_IN_DW = 4 RESOURCE_SEGMENT_START_OFFSET_IN_BYTES = 4 * RESOURCE_SEGMENT_START_OFFSET_IN_DW PARSER_NUM_OF_DW_IN_ROW = 4 PARSER_STRING_NOT_FOUND = -1 DATA_PRINTER_SEPARATOR = 80 * "-" WARNING_SIZE_DOESNT_MATCH = " Segment size({0} DWs) doesn't match the adb segment size({1} DWs)" WARNING_FAILED_EVAL_CONDITION = ' Failed evaluating condition: {}, at field - "{}", exporting field by default' WARNING_WRONG_PAIR_SIZE = " Segment size for Address-Value parsing is odd" PARENT_PREFIX_LIST = ["#(parent)", "$(parent)"] SEGMENT_PREFIX = "$(segment)" mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/0000755000175000017500000000000014522641732024002 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourceparse_lib/parsers/ResourceParser.py0000644000175000017500000000476414522641732027333 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResourceParser.py # Created on: 12-Jun-2023 11:13:33 AM # Original author: astrutsovsky # ####################################################### from abc import ABC, abstractmethod from argparse import ArgumentTypeError, ArgumentParser PARSER_CLASSES = {} def parser_type(name): chosen_type = PARSER_CLASSES.get(name) if not chosen_type: raise ArgumentTypeError("invalid parser type") return chosen_type class ResourceParser(ABC): @abstractmethod def __init__(self, parser_args): pass @abstractmethod def parse_segment(self, segment): pass def get_title(self): return "" def get_segment_separator(self): return "" def validate(self): return True @classmethod def get_arg_parser(cls, prog=None): arg_parser = ArgumentParser(prog="{} ... --parser {}".format(prog, cls.PARSER_TYPE), description=cls.get_description(), add_help=False) return arg_parser @staticmethod @abstractmethod def get_description(): return \ """""" mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/MenuParser.py0000644000175000017500000000453014522641732026437 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResourceParser.py # Created on: 26-Sep-2023 05:51:33 PM # Original author: astrutsovsky # ####################################################### from resourceparse_lib.utils import constants as cs from resourceparse_lib.parsers.ResourceParser import ResourceParser, PARSER_CLASSES class MenuParser(ResourceParser): PARSER_TYPE = "menu" def __init__(self, parser_args): pass def parse_segment(self, segment): if segment.get_type() == cs.RESOURCE_DUMP_SEGMENT_TYPE_MENU: for record in segment.get_printable_records(): for el in record: segment.add_parsed_data(el) @staticmethod def get_description(): return \ """ This parse method assumes that the provided segments contain a menu-segments and outputs it in a human readable structure. """ PARSER_CLASSES[MenuParser.PARSER_TYPE] = MenuParser mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/AddressValueParser.py0000644000175000017500000000575714522641732030131 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResourceParser.py # Created on: 12-Jun-2023 11:13:33 AM # Original author: astrutsovsky # ####################################################### from resourceparse_lib.utils import constants as cs from resourceparse_lib.utils.common_functions import is_resource_segment from resourceparse_lib.parsers.ResourceParser import ResourceParser, PARSER_CLASSES import struct class AddressValueParser(ResourceParser): PARSER_TYPE = "map" address_value_struct = struct.Struct('II') def __init__(self, parser_args): pass def parse_segment(self, segment): if is_resource_segment(segment.get_type()): data_start_position = cs.RESOURCE_SEGMENT_START_OFFSET_IN_DW * cs.DWORD_SIZE payload_data = segment.get_data()[data_start_position:] remainder = len(payload_data) % (2 * cs.DWORD_SIZE) if remainder > 0: segment.add_parsed_data("# Warning: {}".format(cs.WARNING_WRONG_PAIR_SIZE)) for address, value in self.address_value_struct.iter_unpack(payload_data[:len(payload_data) - remainder]): segment.add_parsed_data("0x{:08x} 0x{:08x}".format(address, value)) def validate(self): return super().validate() @staticmethod def get_description(): return \ """ This parse method assumes that the provided resource-segments represents a memory map by dword pairs of address-value, and outputs each pair in a new line (similar to mstdump). """ PARSER_CLASSES[AddressValueParser.PARSER_TYPE] = AddressValueParser mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/__init__.py0000644000175000017500000000274314522641732026121 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. from resourceparse_lib.parsers import AdbResourceParser, AddressValueParser, RawParser, MenuParser mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/AdbParser.py0000644000175000017500000007533014522641732026227 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # AdbParser.py # Python implementation of the Class AdbParser # Created on: 23-Mar-2020 8:00:00 AM # Original author: talve # ####################################################### import xml.etree.ElementTree as ET import resourceparse_lib.utils.constants as CONST from resourceparse_lib.utils.common_functions import calculate_aligned_offset from resourceparse_lib.utils.Exceptions import ResourceParseException import ast import re from collections import deque class AdbParser: """This class is responsible for loading and parsing the adb file. """ def __init__(self, adb_path): try: # build a dictionary with all the adb nodes. self.adb_dict = ET.parse(adb_path) self._build_xml_elements_dict() self._build_definitions() self._dependant_layout_items = [] # build a dictionary with only the adb nodes that contain segment id field. self.segment_id_nodes_dict = {} self._build_nodes_with_seg_id() # fix the offset since subnode should contain the offset with the addition of his parent. self._fix_nodes_offset(self.segment_id_nodes_dict) # update the union dict in the layout item if it has union_selector attribute self._update_union_dict() # update all items that has dependency on other items, like conditions. TODO: the functions above should be incorporated into this self._update_dependant_layout_items() except ResourceParseException as rpe: raise ResourceParseException("{0}\nFailed to parse the ADB file.".format(rpe)) def _update_union(self, layout_item): """This method go over all the subitems and perform union dict updating to all items recursively. """ try: if layout_item.uSelector and layout_item.uSelector.selector_full_path: selector_field, full_path, offset, size = self._get_explicit_field_details(layout_item.parent, layout_item.uSelector.selector_full_path) layout_item.uSelector.set_union_properties(self._get_enum_dict_from_field(selector_field), full_path, offset, size) for item in layout_item.subItems: self._update_union(item) except ResourceParseException as rpe: raise ResourceParseException("{0}\nFailed to update unions.".format(rpe)) def _update_union_dict(self): """This method go over all the segments in the dictionary and send them to union dict update. """ for seg in self.segment_id_nodes_dict.values(): self._update_union(seg) def check_if_exists(self, operand, item, seg): founded_item = None if ('.' not in operand or "$(parent)" in operand): if ("$(parent)" in operand): operand = ''.join(operand.split("$(parent).")) for item_it in item.parent.subItems: if (item_it.name == operand): return item_it if ("$(segment)" in operand or '.' in operand): if ("$(segment)" in operand): operand = operand.replace("$(segment)", seg.name) for item_it in seg.subItems: if (item_it.full_path == operand): return item_it founded_item = self.check_if_exists(operand, item, item_it) return founded_item def _update_dependant_layout_items(self): """This method go over all the segments and update fields with conditions.""" for layout_item in self._dependant_layout_items: if layout_item.condition: layout_item.condition.update_variables(layout_item) def _create_enum_dict(self, enum_lst: list): """This function gets a list of enums and export them to a dictionary. if the enums_lst is empty, return None. """ enums_dict = {} if len(enum_lst) == 0: return None for enum in enum_lst: enum = enum.split('=') if len(enum) != 2 or enum[1] == '': raise ResourceParseException("Error - Failed to parse enum attribute '{0}'".format(str(enum))) enums_dict[int(enum[1], 0)] = enum[0] return enums_dict def _get_enum_dict_from_field(self, selector_field: ET.Element): """This method gets field that contains enums for union_selector and build a dictionary with it's values and enums. """ # in case the enum was already parsed - we should always get in this if if selector_field.enum_dict: return selector_field.enum_dict if selector_field.attrs['enum'] == '': raise ResourceParseException("Error - enum attribute for field '{0}' is empty!".format(selector_field.attrs['name'])) enum_lst = selector_field.attrs['enum'].split(',') selector_dict = self._create_enum_dict(enum_lst) if selector_dict is None: raise ResourceParseException("Error - could not create the enums dictionary for field '{0}'".format(selector_field.attrs['name'])) return selector_dict def _get_explicit_field_details(self, layout_item, relative_path: str): """This method gets a node's name and a relative path and returns the full path to the field, the explicit field to the enum related to the union selector and it's offset and size. """ path = relative_path.split('.') if len(path) <= 1: raise ResourceParseException("Error - wrong relative path '{0}' for node '{1}'".format(relative_path, layout_item.name)) full_path = path if path[0] in CONST.PARENT_PREFIX_LIST: current_node = layout_item full_path[0] = layout_item.name else: current_node = self._retrieve_layout_item_by_name(path[0]) try: if current_node is None: raise ResourceParseException("Failed to find node: '{0}'".format(current_node.name)) for child in path[1:]: found_leaf = False for item in current_node.subItems: if item.name == child: current_node = item found_leaf = True break if current_node is None or not found_leaf: raise ResourceParseException("Error - Failed to find field '{0}' in node '{1}', wrong path '{2}'".format(child, current_node.name, relative_path)) return current_node, full_path, current_node.offset, current_node.size except ResourceParseException as rpe: raise ResourceParseException("{0}\nFailed to get the explicit field.".format(rpe)) def _build_xml_elements_dict(self): self._node_xml_elements = {} for xml_element in self.adb_dict.iter('node'): self._node_xml_elements[xml_element.attrib["name"]] = xml_element def _build_definitions(self): # Create a list for 'inst_ifdef' (C like 'define' feature) self.ifdef_list = [] for xml_element in self.adb_dict.iter('config'): if 'define' in xml_element.attrib and "=" not in xml_element.attrib["define"]: self.ifdef_list.append(xml_element.attrib["define"]) # Create a dict for 'inst_if' (C like 'define' feature) self.if_dict = {} for xml_element in self.adb_dict.iter('config'): if 'define' in xml_element.attrib and "=" in xml_element.attrib["define"]: define_name, define_value = xml_element.attrib["define"].split("=") self.if_dict[define_name] = define_value def _check_condition(self, left_operand, right_operand, condition): """ This method do the right logic according the given condition """ if condition == ' EQ ': return left_operand == right_operand elif condition == ' LESS ': return left_operand < right_operand elif condition == ' LESS_EQ ': return left_operand <= right_operand elif condition == ' GREAT_EQ ': return left_operand >= right_operand elif condition == ' GREAT ': return left_operand > right_operand raise ResourceParseException("unsupported condition '{0}'".format(condition)) def _get_condition_str(self, expression): """ This method return the right condition exist in the expression """ if ' EQ ' in expression: return ' EQ ' elif ' LESS ' in expression: return ' LESS ' elif ' LESS_EQ ' in expression: return ' LESS_EQ ' elif ' GREAT_EQ ' in expression: return ' GREAT_EQ ' elif ' GREAT ' in expression: return ' GREAT ' raise ResourceParseException("No condition found in expression '{0}'".format(expression)) def _check_single_expression(self, expression): """ The method check the condition type and perform the logic accordingly. """ condition = self._get_condition_str(expression) define_name, define_value = expression.split(condition) define_name = define_name.strip() define_value = define_value.strip() # if operand not exist in the if dictionary its a value that we need to convert from str to int left_operand = int(self.if_dict[define_name]) if define_name in self.if_dict else int(define_name) right_operand = int(self.if_dict[define_value]) if define_value in self.if_dict else int(define_value) return self._check_condition(left_operand, right_operand, condition) def _check_expressions(self, inst_if_attrib): """ The method checks an expression and return True/False. Note that the method support only OR(s) or AND(s) but not together. """ # assumption using 'OR' or 'AND' but not together expressions = [] if ' OR ' in inst_if_attrib: expressions = inst_if_attrib.split(' OR ') # check if one of the expressions is True return True return any([self._check_single_expression(expression) for expression in expressions]) elif ' AND ' in inst_if_attrib: expressions = inst_if_attrib.split(' AND ') # check if all of the expressions is True return True return all([self._check_single_expression(expression) for expression in expressions]) # if only one expression return self._check_single_expression(inst_if_attrib) def _fix_nodes_offset(self, nodes_dict): """This method go over all the nodes in the dictionary and send them to offset fixing. """ for node in nodes_dict.values(): self._fix_node(node, node.offset) def _fix_node(self, node, offset): """This method go over all the subnodes and perform offset addition to all nodes recursively. """ for sub_node in node.subItems: sub_node.offset += offset self._fix_node(sub_node, sub_node.offset) def _build_nodes_with_seg_id(self): """This method go over all the nodes in the adb dictionary and build a dictionary with the nodes that contain the "segment_id' field. """ for node in self.adb_dict.iter('node'): if "segment_id" in node.attrib: segment_id = int(node.attrib["segment_id"], 0) adb_layout_item = self._node_to_AdbLayoutItem(node, None, 0, self._parse_node_size(node.attrib["size"]), True) self.segment_id_nodes_dict[segment_id] = adb_layout_item if ("is_conditional" in node.attrib): if (node.attrib["is_conditional"] == '1'): self.segment_id_nodes_dict[segment_id].is_conditional = True def _retrieve_node_by_name(self, node_name: str): """This method return the node with the wanted name, if not found return None. """ if node_name in self._node_xml_elements: return self._node_xml_elements[node_name] else: # Missing-nodes feature return None def _retrieve_layout_item_by_name(self, name): """This method return the layout item with the wanted name, if it wasn't found returns None """ for seg in self.segment_id_nodes_dict.values(): if seg.name == name: return seg for subItem in seg.subItems: if subItem.name == name: return subItem return None @staticmethod def get_layout_item_by_path(path: str, layout_item): seperator_index = path.find(".") root_item = None # If There's a parent or segment prefix search path according to the prefix if seperator_index != -1: prefix = path[:seperator_index] if prefix in CONST.PARENT_PREFIX_LIST: root_item = layout_item.parent return root_item.get_child_by_path(path[seperator_index + 1:]) if root_item else None elif prefix == CONST.SEGMENT_PREFIX: root_item = layout_item.get_root() return root_item.get_child_by_path(path[seperator_index + 1:]) if root_item else None # If no relevant prefix else: root_item = layout_item.parent if not root_item: return None # Try searching from parent found_item = root_item.get_child_by_path(path) if found_item: return found_item # Try searching from segment root root_item = layout_item.get_root() found_item = root_item.get_child_by_path(path) if found_item: return found_item # Finally, try searching by DFS from segment root return AdbParser._find_layout_item_dfs(path, root_item) @staticmethod def _find_layout_item_dfs(path, root_item): dfs_queue = deque(reversed(root_item.subItems)) while len(dfs_queue) > 0: current_item = dfs_queue.pop() found_item = current_item.get_child_by_path(path) if found_item: return found_item dfs_queue.extend(reversed(current_item.subItems)) return None def _build_subitems(self, node: ET.Element, parent, last_sub_tree_flag): """This method build the subitems of the specific node. :param node: always field element except from the root which is node. """ sub_items = [] last_sub_item = max(node, key=lambda e: self._parse_node_size(e.attrib["offset"])) for item in node: is_unlimited_array = False # Skip on elements that are excluded in the configuration ('inst_ifdef') if 'inst_ifdef' in item.attrib: if item.attrib['inst_ifdef'] not in self.ifdef_list: continue # Skip on elements that are excluded in the configuration ('inst_if') if 'inst_if' in item.attrib: if not self._check_expressions(item.attrib['inst_if']): continue last_sub_item_flag = last_sub_tree_flag and last_sub_item is item low_bound = item.attrib.get("low_bound") high_bound = item.attrib.get("high_bound") # An array if low_bound and high_bound: start_index = int(low_bound, 10) # Definite array if high_bound != "VARIABLE": end_index = int(high_bound, 10) + 1 # Variable array else: # Unlimited array if last_sub_item_flag: is_unlimited_array = True end_index = int(low_bound, 10) # Pointer / Wrong unlimited array else: end_index = int(low_bound, 10) + 1 if not is_unlimited_array: sub_items.extend(self._extract_array_to_list(item, parent, start_index, end_index)) # On regular field or unlimited array, process recursively if not low_bound or is_unlimited_array: last_sub_item_flag = last_sub_item_flag and not is_unlimited_array adb_layout_item = self._node_to_AdbLayoutItem(item, parent, self._parse_node_size(item.attrib['offset']), self._parse_node_size(item.attrib['size']), last_sub_item_flag) if adb_layout_item: if is_unlimited_array: adb_layout_item.is_unlimited_array = True else: if 'union_selector' in item.attrib: adb_layout_item.uSelector = AdbUnionSelector() adb_layout_item.uSelector.selector_full_path = item.attrib['union_selector'] if 'enum' in item.attrib and item.attrib['enum'] != '': enums_lst = item.attrib['enum'].split(',') enums_dict = self._create_enum_dict(enums_lst) if enums_dict is None: raise ResourceParseException("Error - could not create the enums dictionary for node '{0}'".format(item.attrib['name'])) adb_layout_item.enum_dict = enums_dict sub_items.append(adb_layout_item) return sub_items def _extract_array_to_list(self, item, parent, start_index, end_index): """This method build insert array items to a list form a specific index. :param node: always field element except from the root which is node. :param parent: layout item representing the parent of the array. """ extracted_array_layout_items = [] array_offset = self._parse_node_size(item.attrib["offset"]) array_size = self._parse_node_size(item.attrib["size"]) element_size = int(array_size / (end_index - start_index)) current_element_offset = array_offset enum_dict = None if 'index_enum' in item.attrib and item.attrib['index_enum'] != '': enums_lst = item.attrib['index_enum'].split(',') enum_dict = self._create_enum_dict(enums_lst) if enum_dict is None: raise ResourceParseException("Error - could not parse the 'index_enum' attribute for node '{0}'.".format(item.attrib["name"])) for i in range(start_index, end_index): adb_layout_item = self._node_to_AdbLayoutItem(item, parent, current_element_offset, element_size, False) if enum_dict is None or i not in enum_dict: adb_layout_item.name += "[" + str(i) + "]" else: adb_layout_item.name += "[" + enum_dict[i] + "]" extracted_array_layout_items.append(adb_layout_item) current_element_offset += element_size return extracted_array_layout_items def _node_to_AdbLayoutItem(self, field_element: ET.Element, parent, offset, size, last_sub_tree_flag): """This method build adb layout field from a given node. :param field_element: always field element except from the root which is node. """ adb_layout_item = AdbLayoutItem() # adb_layout_item.fieldDesc = None # Reference to "AdbFieldDesc" object, always != None adb_layout_item.parent = parent # Reference to parent "AdbLayoutItem" object, always != None (expect of the root) adb_layout_item.name = field_element.attrib["name"] adb_layout_item.offset = offset adb_layout_item.size = size adb_layout_item.attrs = field_element.attrib if not parent: adb_layout_item.parse_method = field_element.attrib.get("parse_method", "adb") node_element = None if not parent: node_element = field_element else: subnode_name = field_element.attrib.get("subnode") if subnode_name: node_element = self._retrieve_node_by_name(subnode_name) if node_element: adb_layout_item.nodeDesc = self._node_to_node_desc(node_element) # For leafs must be None condition_attr = field_element.attrib.get("condition") if (parent and parent.nodeDesc.is_conditional and condition_attr and condition_attr.strip() != ""): adb_layout_item.condition = ConditionParser(condition_attr, self.if_dict) self._dependant_layout_items.append(adb_layout_item) try: if node_element: adb_layout_item.subItems = self._build_subitems(node_element, adb_layout_item, last_sub_tree_flag) # List of the child items (for nodes only) except ResourceParseException as rpe: raise ResourceParseException("{0}\nFailed to create a valid layout from node '{1}'.".format(rpe, field_element.attrib['name'])) # adb_layout_item.attrs = {} # Attributes after evaluations and array expanding # adb_layout_item.vars = {} # all variable relevant to this item after evaluation return adb_layout_item def _node_to_node_desc(self, node: ET.Element): """This method build adb desc field from a given node. """ node_descriptor = AdbNodeDesc() # node_description.name = "" # node_description.size = 0 # Size in bits is_union = node.attrib.get("attr_is_union") if is_union: node_descriptor.isUnion = self._parse_union(is_union) node_descriptor.is_conditional = int(node.attrib.get("is_conditional", 0)) > 0 # node_description.desc = "" # node_description.fields = [] # List of "AdbFieldDesc" objects # node_description.attrs = {} # Dictionary of attributes: key, value # defined in # node_description.fileName = "" # node_description.lineNumber = -1 return node_descriptor def _parse_union(self, union_str): """This method parse the 'is union' attribute. """ if union_str == "1": return True return False def _parse_node_size(self, size_str): """This method return the size of the 'size' attribute in bits. """ hex_size = 0 bit_size = 0 size_parts = size_str.split(".") if len(size_parts) == 1: size_parts = size_parts[0], "0" if size_parts[0] == "": size_parts[0] = "0" hex_size = int(size_parts[0], 16) * 8 bit_size = int(size_parts[1], 10) return hex_size + bit_size #################################################################### class ConditionVariable: def __init__(self, name: str, consts): self._name = name self.found = name in consts self.evaluated = self.found self.value = int(consts[name], 0) if self.found else 0 self.layout_item = None def update_references(self, dependant_layout_item): if self.found: return self.layout_item = AdbParser.get_layout_item_by_path(self._name, dependant_layout_item) if self.layout_item: self.found = True def evaluate(self, bit_array): if not self.evaluated: if self.found and self.layout_item: offset = calculate_aligned_offset(self.layout_item.offset, self.layout_item.size) self.evaluated = True self.value = int(bit_array[offset:offset + self.layout_item.size], 2) else: raise ResourceParseException('Condition variable - "{}", was not found in the adb'.format(self._name)) return self.value class ConditionParser: adb_to_py_ops = {'~': ' not ', ' AND ': ' and ', '|': ' or '} word_operators = ('AND',) symbol_operators = ('~', '|', '==', '!=', '(', ')') operators = word_operators + symbol_operators def __init__(self, condition_str: str, consts): variable_names = [word for word in re.findall(r"\$\([a-zA-Z_][\w]*\)(?:\.[a-zA-Z_][\w]*)*|[a-zA-Z_][\w]*(?:\.[a-zA-Z_][\w]*)*", condition_str) if word not in ConditionParser.word_operators] self._variables = {re.sub(r"\$\(([a-zA-Z_][\w]*)\)", r"___dollar___\1", variable_name.replace(".", "___")): ConditionVariable(variable_name, consts) for variable_name in variable_names} self._condition_str = condition_str for adb_op, py_op in ConditionParser.adb_to_py_ops.items(): self._condition_str = self._condition_str.replace(adb_op, py_op) for fixed_variable_name, variable in self._variables.items(): self._condition_str = self._condition_str.replace(variable._name, fixed_variable_name) self._condition_str = self._condition_str.strip() def update_variables(self, layout_item): for variable in self._variables.values(): variable.update_references(layout_item) def evaluate(self, bit_array): try: tree = ast.parse(self._condition_str, mode='eval') except SyntaxError: raise ResourceParseException("Invalid condition syntax") if not all(isinstance(node, (ast.Expression, ast.Name, ast.Load, ast.UnaryOp, ast.unaryop, ast.BinOp, ast.operator, ast.BoolOp, ast.Num, ast.And, ast.Or, ast.Compare, ast.Eq, ast.NotEq, ast.Lt, ast.LtE, ast.Gt, ast.GtE)) for node in ast.walk(tree)): raise ResourceParseException("Condition contains unsupported operation") locals = {variable_name: variable.evaluate(bit_array) for variable_name, variable in self._variables.items()} return eval(compile(tree, filename='', mode='eval'), None, locals) class AdbLayoutItem(object): """ Represents a Layout node/leaf instance """ ########################## def __init__(self): self.fieldDesc = None # Reference to "AdbFieldDesc" object, always != None self.nodeDesc = None # For leafs must be None self.parent = None # Reference to parent "AdbLayoutItem" object, always != None (expect of the root) self.name = "" # The instance name self.subItems = [] # List of the child items (for nodes only) self.offset = 0 # Global offset (relative to the 0 address) self.size = 0 # Element size in bits self.attrs = {} # Attributes after evaluations and array expanding self.vars = {} # all variable relevant to this item after evaluation self.uSelector = None # data structure that represent the union-selector properties self.enum_dict = None # in case of being an enum element, holds the key-value of the enum self.condition = None self.is_unlimited_array = False def get_child_by_path(self, path): path_list = path.split('.') current_layout_item = self for path_part in path_list: sub_item = next((s for s in current_layout_item.subItems if s.name == path_part), None) if not sub_item: return None current_layout_item = sub_item return current_layout_item def get_root(self): layout_item = self while layout_item.parent: layout_item = layout_item.parent return layout_item #################################################################### class AdbFieldDesc(object): """ Represents an ADABE field descriptor, objects of this type are immutable """ ########################## def __init__(self): self.name = "" self.size = 0 # Size in bits (the whole array size) self.offset = None # Offset in bits (relative to the node start addr) self.desc = "" self.lowBound = 0 self.highBound = 0 self.unlimitedArr = False self.definedAsArr = False self.subNode = None # Subnode name as string self.attrs = {} # Dictionary of attributes: key, value self.reserved = False self.condition = "" #################################################################### class AdbNodeDesc(object): """ Represents an ADABE node descriptor, objects of this type are immutable """ ########################## def __init__(self): self.name = "" self.size = 0 # Size in bits self.isUnion = False self.is_conditional = False self.desc = "" self.fields = [] # List of "AdbFieldDesc" objects self.attrs = {} # Dictionary of attributes: key, value # defined in self.fileName = "" self.lineNumber = -1 #################################################################### class AdbUnionSelector(object): """ Represents an ADABE union-selector descriptor, objects of this type are immutable """ ########################## def __init__(self): self.dict = None # mapping between the value and the enum, None if empty self.full_path = None # full path to the selector field, None if empty self.offset = None # absolute offset from the begining of the segment until the selector field (by layout) self.size = None # size of the selector itself def set_union_properties(self, union_dict, full_path, offset, size): self.dict = union_dict self.full_path = full_path self.offset = offset self.size = size mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/RawParser.py0000644000175000017500000000576714522641732026301 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResourceParser.py # Created on: 26-Sep-2023 02:33:33 PM # Original author: astrutsovsky # ####################################################### from resourceparse_lib.parsers.ResourceParser import ResourceParser, PARSER_CLASSES import struct class RawParser(ResourceParser): PARSER_TYPE = "raw" NUM_OF_DW_IN_ROW = 4 SEGMENT_SEPARATOR = "-" * 43 def __init__(self, parser_args): self._num_segments = parser_args.manager.get_num_dumped_segments() def get_title(self): return "Found {0} segments:".format(self._num_segments) def get_segment_separator(self): return self.SEGMENT_SEPARATOR def parse_segment(self, segment): rows = 0 segment.add_parsed_data("Segment Type: {}".format(hex(segment.get_type()))) segment.add_parsed_data("Segment Size: {} Bytes".format(len(segment.get_data()))) segment.add_parsed_data("Segment Data:") line = "" for dw in struct.unpack("{}I".format(len(segment.get_data()) // 4), segment.get_data()): # todo: use unpacked segment size instead line += '0x{0:0{1}X} '.format(dw, 8) rows += 1 if rows == self.NUM_OF_DW_IN_ROW: segment.add_parsed_data(line) rows = 0 line = "" if 0 < rows < self.NUM_OF_DW_IN_ROW: segment.add_parsed_data(line) @staticmethod def get_description(): return \ """ This parse method outputs the raw data of each segment in hex-view. """ PARSER_CLASSES[RawParser.PARSER_TYPE] = RawParser mstflint-4.26.0/resourcetools/resourceparse_lib/parsers/AdbResourceParser.py0000644000175000017500000003775414522641732027747 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResourceParser.py # Created on: 12-Jun-2023 11:13:33 AM # Original author: astrutsovsky # ####################################################### from resourceparse_lib.utils import constants as cs from resourceparse_lib.utils.common_functions import calculate_aligned_offset, is_resource_segment, valid_path_arg_type from resourceparse_lib.utils.Exceptions import ResourceParseException from resourceparse_lib.parsers.ResourceParser import ResourceParser, PARSER_CLASSES from resourceparse_lib.parsers.AdbParser import AdbParser import os import re import math import struct class AdbResourceParser(ResourceParser): PARSER_TYPE = "adb" @classmethod def get_arg_parser(cls, prog=None): arg_parser = super().get_arg_parser(prog) required_named = arg_parser.add_argument_group('required arguments') required_named.add_argument("-a", "--adb-file", type=valid_path_arg_type, required=True, help='Location of the ADB file') optional_named = arg_parser.add_argument_group('optional arguments') optional_named.add_argument("-r", "--raw", action="store_true", help='Prints the raw data in addition to the parsed data') return arg_parser @staticmethod def get_description(): return \ """ This parse method receives an adb file and parses each segment data according to the adb layout of the node with segment_id attribute corresponds to the segment """ def __init__(self, parser_args): self._adb_file_path = parser_args.adb_file self._adb_obj = AdbParser(self._adb_file_path) self._segment_map = self._adb_obj.segment_id_nodes_dict self._raw = parser_args.raw self._manager = parser_args.manager # Segment Parsing def get_title(self): return "Parse {0} segments:".format(self._manager.get_num_dumped_segments()) def get_segment_separator(self): return cs.DATA_PRINTER_SEPARATOR def parse_segment(self, seg): """This method responsible for the parsing algorithm that take the raw data of each segment and generate his content according the adb map """ seg_for_parse = False if seg.get_type() in self._segment_map: segment_name = self._build_union_prefix(self._segment_map[seg.get_type()].nodeDesc) \ + self._segment_map[seg.get_type()].name if not self._is_seg_size_match_adb_seg_size(len(seg.get_data()), seg.get_type()): seg.add_parsed_data("Warning:{}".format(cs.WARNING_SIZE_DOESNT_MATCH.format( len(seg.get_data()) - cs.RESOURCE_SEGMENT_START_OFFSET_IN_DW, math.ceil(self._segment_map[seg.get_type()].size / 32)))) seg_for_parse = True else: # reference segment is missing in the adb (this will help the user understand the type) if seg.get_type() == cs.RESOURCE_DUMP_SEGMENT_TYPE_REFERENCE: segment_name = "segment_reference" else: segment_name = "UNKNOWN" seg.add_parsed_data(20 * " " + "Segment - {0} ({1:#06x}){2}".format(segment_name, seg.get_type(), seg.additional_title_info())) if is_resource_segment(seg.get_type()): data_start_position = cs.RESOURCE_SEGMENT_START_OFFSET_IN_BYTES else: data_start_position = 0 # offset is in bits so converting is to bit array and store it at a member is better then pass it as an argument # for a recursive method bytes_array = seg.get_data('big')[data_start_position:] self._current_bit_array = ''.join(format(x, '08b') for x in bytes_array) if seg_for_parse: segment_layout_layout = self._segment_map[seg.get_type()] segment_parse_method = segment_layout_layout.parse_method if segment_parse_method == 'adb': for field in self._segment_map[seg.get_type()].subItems: if field.nodeDesc and field.nodeDesc.isUnion and field.uSelector: self._parse_union_selector_field(field, seg) else: prefix = self._build_union_prefix(field.nodeDesc) self._parse_seg_field(field, prefix + field.name, 0, seg) if self._raw: self._build_and_add_raw_data(seg) else: segment_resource_parser = PARSER_CLASSES.get(segment_parse_method) if segment_resource_parser: segment_resource_parser([]).parse_segment(seg) else: self._build_and_add_raw_data(seg) else: # if segment not for parse, need to set raw data self._build_and_add_raw_data(seg) seg._parsed_data.extend(seg.get_messages()) @classmethod def _build_and_add_raw_data(cls, seg): """This method build the raw data in the right format and add it to the parsed data of the segment. """ hex_list = [] line_counter = 0 dw_counter = 0 seg.add_parsed_data("RAW DATA:") for dw in struct.unpack("{}I".format(len(seg.get_data()) // 4), seg.get_data()): hex_list.append('0x{0:0{1}X} '.format(dw, 8)) dw_counter += 1 if (dw_counter % cs.PARSER_NUM_OF_DW_IN_ROW) == 0: seg.add_parsed_data("{:<15}:{}".format("DWORD [{0}-{1}]".format(line_counter * 4, (line_counter * 4) + (len(hex_list) - 1)), ''.join(hex_list[:]))) line_counter += 1 hex_list.clear() if len(hex_list) > 1: seg.add_parsed_data("{:<15}:{}".format("DWORD [{0}-{1}]".format(line_counter * 4, (line_counter * 4) + (len(hex_list) - 1)), ''.join(hex_list[:]))) elif len(hex_list) == 1: seg.add_parsed_data("{:<15}:{}".format("DWORD [{0}]".format(line_counter * 4), ''.join(hex_list[:]))) @classmethod def _build_union_prefix(cls, node_desc): """This method build the prefix for the struct in order to give the user information indicate if the node is a union """ if not node_desc: prefix = "" else: if node_desc.isUnion: prefix = "(UNION)" else: prefix = "" return prefix def _is_seg_size_match_adb_seg_size(self, seg_size, seg_type): """This method check if the dumped segment size is same like in the ADB definitions. """ adb_seg_size = math.ceil(self._segment_map[seg_type].size / 8) dumped_data_size = seg_size # first 4 dw's at the resource segment is not a part of the ADB definition so we not consider them if is_resource_segment(seg_type): dumped_data_size -= cs.RESOURCE_SEGMENT_START_OFFSET_IN_DW * cs.DWORD_SIZE if adb_seg_size != dumped_data_size: return False return True def _parse_union_selector_field(self, field, seg): """This method parse union field and present only the relevant field (selected by the selector) """ union_field_offset = calculate_aligned_offset(field.uSelector.offset, field.uSelector.size) selected_field_enum = field.uSelector.dict[int(self._current_bit_array[union_field_offset:union_field_offset + field.uSelector.size], 2)] for item in field.subItems: if item.attrs['selected_by'] == selected_field_enum: self._parse_seg_field(item, item.name, 0, seg) def _parse_seg_field(self, field, field_str, offset_shift, seg): # offset_shift is 0 unless parsing a sub-tree of varaible-size arrays """This method is a recursive method that build the inner fields """ try: if field.condition and not field.condition.evaluate(self._current_bit_array): return except ResourceParseException as rpe: seg.add_parsed_data("Warning:{}".format(cs.WARNING_FAILED_EVAL_CONDITION.format(str(rpe), field_str))) num_unlimited_elements = 1 if field.is_unlimited_array: unlimited_array_start_offset = calculate_aligned_offset(field.offset, field.size) segment_remainder_size = len(self._current_bit_array) - unlimited_array_start_offset num_unlimited_elements = segment_remainder_size // field.size for i in range(num_unlimited_elements): array_suffix = "[" + str(i) + "]" if field.is_unlimited_array else "" element_field_str = field_str + array_suffix element_offset_shift = offset_shift + field.size * i if field.enum_dict: self._parse_enum_field(field, element_field_str, element_offset_shift, seg) elif len(field.subItems) > 0: for sub_field in field.subItems: prefix = self._build_union_prefix(sub_field.nodeDesc) self._parse_seg_field(sub_field, element_field_str + "." + prefix + sub_field.name, element_offset_shift, seg) else: field_offset = calculate_aligned_offset(field.offset + element_offset_shift, field.size) if len(self._current_bit_array) >= (field_offset + field.size): value = hex(int(self._current_bit_array[field_offset:field_offset + field.size], 2)) if ("printf" in field.attrs): value = self._parse_printf_format(value, field.attrs["printf"]) seg.add_parsed_data("{} = {}".format(element_field_str, value)) def _parse_enum_field(self, field, field_str, offset_shift, seg): """This method parse enum field and present the enum name as well as the enum value. """ field_offset = calculate_aligned_offset(field.offset + offset_shift, field.size) enum_value = int(self._current_bit_array[field_offset:field_offset + field.size], 2) if len(self._current_bit_array) >= (field_offset + field.size): if enum_value in field.enum_dict: seg.add_parsed_data("{} = ({} = {})".format(field_str, field.enum_dict[enum_value], hex(enum_value))) else: seg.add_parsed_data("{} = {}".format(field_str, hex(enum_value))) def _parse_printf_format(self, value, format): """ Enables specifying how a field should be dumped %d - dump field as decimal %x – dump field as hexadecimal %b - dump field as binary %s – dump field as ASCII tex""" cases = ['d', 'x', 'b', 's'] new_val = '' tmp_val = value.split("0x")[1] str_list = [] str_list[:0] = format for i, c in enumerate(str_list): f = "" if (i + 1 < len(str_list)): if (c == '%' or c + str_list[i + 1] == '0x' or c + str_list[i + 1] == c + 'x'): if (c == '%' and str_list[i + 1] in cases): f = c + str_list[i + 1] del str_list[i] if (i + 1 < len(str_list)): if (c + str_list[i + 1] == '0x'): new_val += '0x' del str_list[i] if (f == '%d'): new_val += str(int(tmp_val, 16)) if (f == '%x'): new_val += str(tmp_val) if (f == '%b'): new_val += str(bin(int(tmp_val, 16)).replace("0b", "")) if (f == '%s'): new_val += str(tmp_val) if (i + 2 < len(str_list)): if (c + str_list[i + 1] + str_list[i + 2] == '%' + str_list[i + 1] + 'x'): new_val += (int(str_list[i + 1]) - 1) * ' ' + str(tmp_val) for _ in range(2): del str_list[i] if (i + 2 < len(str_list)): if (c + str_list[i + 1] + str_list[i + 2] == '%' + str_list[i + 1] + str_list[i + 2] and str_list[i + 1].isdigit()): new_val += (int(str_list[i + 2]) - 1) * '0' + str(tmp_val) for _ in range(3): del str_list[i] else: new_val += c else: new_val += c return new_val # Validation def validate(self): self._validate_adb_version_with_notice(self._adb_file_path) def _validate_adb_version_with_notice(self, adb_file_path): """This method perform the fw version validation stages and send a proper notice msg if needed. """ adb_name = os.path.splitext(os.path.basename(adb_file_path))[0] if self._is_adb_name_in_version_format(adb_name): adb_fw_version = self._retrieve_adb_version_from_valid_format(adb_name) dump_fw_version = self._manager.retrieve_adb_version_from_info_segment() if adb_fw_version != dump_fw_version: # self._get_next_notice_counter() todo: return this mechanism self._manager._printer.print_notice_before_parse("Notice - {0}".format( "adb fw version {0} is used for parsing while dump fw version is {1}".format(adb_fw_version, dump_fw_version))) else: # self._get_next_notice_counter() todo: return this mechanism self._manager._printer.print_notice_before_parse( "Notice - {0}".format("Adb name is not according the version format, can't validate adb fw version")) @classmethod def _is_adb_name_in_version_format(cls, adb_name): """This method check if the adb file name has the version format define by arch. """ match = re.fullmatch("fw-[0-9]+-rel-[0-9]{2}_[0-9]{2}_[0-9]{4}", adb_name) if match is not None: if match.string == adb_name: return True return False @classmethod def _retrieve_adb_version_from_valid_format(cls, adb_name): """This method extract the fw_version from the file name assuming that file already checked and has the right version format. """ version = re.findall("[0-9]{2}_[0-9]{2}_[0-9]{4}", adb_name)[0] version_list = version.split("_") return "{0}.{1}.{2}".format(version_list[0], version_list[1], version_list[2]) def _get_next_warning_counter(self): # todo: return this mechanism """This method return get the next free index to help generate the a uniq key for the warning msg. """ return 5 PARSER_CLASSES[AdbResourceParser.PARSER_TYPE] = AdbResourceParser mstflint-4.26.0/resourcetools/resourceparse_lib/resource_data/0000755000175000017500000000000014522641732025143 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourceparse_lib/resource_data/__init__.py0000644000175000017500000000257714522641732027267 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourceparse_lib/resource_data/RawData.py0000644000175000017500000001511514522641732027043 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # RawData.py # Python implementation of the Class RawData # Generated by Enterprise Architect # Created on: 19-Dec-2019 3:18:40 PM # Original author: talve # ####################################################### import binascii from resourceparse_lib.utils import constants as cs from segments.SegmentCreator import SegmentCreator import json import re import sys class RawData: """This class is responsible for getting the dumped data according the supported inputs (devlink - json, resourcedump - bin file or resourcedump - human readable) and generate a unified raw data divided to the specific segments and ready for parse. """ def __init__(self, dumped_file_path): """initialize class members. """ self._file_path = dumped_file_path self._segments_raw_data = None def _determine_dump_type(self): """This method responsible for analyzing the the dumped file and return the file type. """ file_type = cs.RAW_DATA_FILE_TYPE_BIN if not self.is_binary(): if self.is_json(): file_type = cs.RAW_DATA_FILE_TYPE_JSON else: file_type = cs.RAW_DATA_FILE_TYPE_HUMAN_READABLE return file_type def is_json(self): """This method check if the file type is json format. """ try: with open(self._file_path) as check_file: # try open file and open it as json json.load(check_file) return True except Exception as _: # if fail then file is not json return False def is_binary(self): """This method check if the file type is binary format. """ with open(self._file_path, 'rb') as f: if b'\x00' in f.read(): return True else: return False def _gathered_raw_data_according_dump_type(self): """This method responsible for generate the segment data according the file type. """ # get the file type file_type = self._determine_dump_type() # retrieve the raw data from the file if file_type == cs.RAW_DATA_FILE_TYPE_BIN: self._retrieve_raw_data_from_bin_file() elif file_type == cs.RAW_DATA_FILE_TYPE_JSON: self._retrieve_raw_data_from_json_file() elif file_type == cs.RAW_DATA_FILE_TYPE_HUMAN_READABLE: self._retrieve_raw_data_human_readable_file() def to_segments(self, aggregate): """This method return a list of segments objects according the dumped file input. """ self._gathered_raw_data_according_dump_type() return SegmentCreator().create(self._segments_raw_data, aggregate) @classmethod def _build_dw_from_bytes(cls, byte_0, byte_1, byte_2, byte_3): """This method convert 4 bytes to a double word. """ return (byte_0 << 24) + (byte_1 << 16) + (byte_2 << 8) + byte_3 def _retrieve_raw_data_from_bin_file(self): """This method go over the bin file and collect the raw data. """ big_endian_raw_data = bytes() with open(self._file_path, "rb") as f: big_endian_raw_data = f.read() if sys.byteorder == "big": self._segments_raw_data = big_endian_raw_data else: self._segments_raw_data = bytearray() ints = [int.from_bytes(big_endian_raw_data[i:i + 4], "big") for i in range(0, len(big_endian_raw_data), 4)] for number in ints: self._segments_raw_data.extend(number.to_bytes(4, "little")) def _retrieve_raw_data_from_json_file(self): """This method go over the json file and collect the raw data. """ with open(self._file_path) as f: # try open file and open it as json data_dict = json.load(f) self._collect_all_data_sections(data_dict) def _collect_all_data_sections(self, json_node): """This method read all the data fields recursively. """ if isinstance(json_node, dict): for key, value in json_node.items(): if key != "data": self._collect_all_data_sections(value) else: for i in range(0, len(value), 4): dw = self._build_dw_from_bytes(value[i], value[i + 1], value[i + 2], value[i + 3]) self._segments_raw_data.append(dw) elif isinstance(json_node, list): for node in json_node: self._collect_all_data_sections(node) def _retrieve_raw_data_human_readable_file(self): """This method go over the human readable text file and collect the raw data. """ self._segments_raw_data = bytearray() with open(self._file_path, 'r') as f: for line in f: if line.find("Segment Type") == cs.PARSER_STRING_NOT_FOUND: if re.search(r"0x[0-9a-fA-F]{8}", line): hex_list = re.findall(r"0x[0-9a-fA-F]{8}", line) for hex_number in hex_list: self._segments_raw_data.extend(int(hex_number, 16).to_bytes(cs.DWORD_SIZE, sys.byteorder)) mstflint-4.26.0/resourcetools/resourceparse_lib/resource_data/DataPrinter.py0000644000175000017500000001107614522641732027737 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # DataPrinter.py # Python implementation of the Class DataPrinter # Generated by Enterprise Architect # Created on: 19-Dec-2019 3:18:37 PM # Original author: talve # ####################################################### from resourceparse_lib.utils import constants as cs class DataPrinter: """This class is responsible for set and manage the parser output. """ def __init__(self, verbosity, out_file): self._verbosity = verbosity self._out_file = out_file self._top_notice_db = [] def print_notice_before_parse(self, notice_msg): """This method print notice message according the output type and the. """ if self._verbosity > 0: if self._out_file: self._top_notice_db.append(notice_msg) else: print(notice_msg) def print_parsed_segment(self, parsed_segment_db, title, segment_separator): """This method print the parsed segments after check if we need to print to a file or to screen. """ if self._out_file: self._print_to_file(parsed_segment_db, title, segment_separator) else: self._print_to_screen(parsed_segment_db, title, segment_separator) def _print_to_screen(self, parsed_segment_db, title, segment_separator): """This method print the parsed segments to the screen. """ if title: print(title) for seg in parsed_segment_db: if segment_separator: print(segment_separator) parsed_seg = seg.get_parsed_data() for field in parsed_seg: print(field) if segment_separator: print(segment_separator) def _print_to_file(self, parsed_segment_db, title, segment_separator): """This method print the parsed segments to a file. """ with open(self._out_file, "w") as out_file: for notice_section in self._top_notice_db: out_file.write(notice_section + "\n") out_file.write(title + "\n") for seg in parsed_segment_db: if segment_separator: out_file.write(segment_separator + "\n") parsed_seg = seg.get_parsed_data() for field in parsed_seg: out_file.write(field + "\n") if segment_separator: out_file.write(segment_separator + "\n") print("write to file: ", self._out_file) @classmethod def _get_fixed_field(cls, field): if str(field).find("Warning[") != -1: fixed_field = "Warning" else: fixed_field = field return fixed_field @classmethod def _build_body_msg(cls, field): """This method the body string of a line base on the field content. """ if field == " Segment": body = " - " elif field == "RAW DATA": body = ":" elif str(field).find("Warning[") != -1: body = ":" elif field.find("DWORD") != cs.PARSER_STRING_NOT_FOUND: body = ":" else: body = " = " return body mstflint-4.26.0/resourcetools/resourceparse_lib/resource_data/AdbData.py0000644000175000017500000000375014522641732027002 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # AdbData.py # Python implementation of the Class AdbData # Generated by Enterprise Architect # Created on: 19-Dec-2019 3:18:29 PM # Original author: talve # ####################################################### class AdbData: """This class is responsible for handling the adb information. """ def get_segment_map(): """This method return a dictionary of all the segments defined at the adb file. """ pass def validate_adb_version(): """This method validate the adb version. """ pass mstflint-4.26.0/resourcetools/segments/0000755000175000017500000000000014522641732020440 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/segments/InfoSegment.py0000644000175000017500000000566314522641732023242 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # InfoSegment.py # Python implementation of the Class InfoSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.Segment import Segment from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants import struct import sys class InfoSegment(Segment): """this class is responsible for holding info segment data. """ _segment_type_id = constants.RESOURCE_DUMP_SEGMENT_TYPE_INFO INFO_SEGMENT_FMT_BE = "3sBII" INFO_SEGMENT_FMT_LE = "B3sII" info_segment_struct = struct.Struct(INFO_SEGMENT_FMT_BE if sys.byteorder == 'big' else INFO_SEGMENT_FMT_LE) def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) def get_version(self): start = self.segment_header_struct.size if len(self.raw_data) > start: dump_version, hw_version, fw_version = self.unpack_info() return "{}.{}.{}".format(dump_version, hw_version, fw_version) return "" def unpack_info(self): fields = self.info_segment_struct.unpack_from(self.raw_data, self.segment_header_struct.size) dump_version = fields[1] if sys.byteorder == 'big' else fields[0] hw_version, fw_version = fields[2:] return dump_version, hw_version, fw_version SegmentFactory.register(constants.RESOURCE_DUMP_SEGMENT_TYPE_INFO, InfoSegment) mstflint-4.26.0/resourcetools/segments/ErrorSegment.py0000644000175000017500000000625114522641732023432 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ErrorSegment.py # Python implementation of the Class ErrorSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.Segment import Segment from segments.SegmentFactory import SegmentFactory from resourceparse_lib.utils.common_functions import reverse_string_endian from resourcedump_lib.utils import constants import struct import sys class ErrorSegment(Segment): """this class is responsible for holding error segment data. """ message_name = "Error message" _segment_type_id = constants.RESOURCE_DUMP_SEGMENT_TYPE_ERROR error_struct = struct.Struct('HHII32s') def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) def get_messages(self): start = self.segment_header_struct.size if len(self.raw_data) > start: syndrome_id, error_message = self.unpack_error() self.add_message("{}{} = {}".format(self.message_name, " ({})".format(syndrome_id) if syndrome_id else "", error_message)) return self._messages def unpack_error(self): fields = self.error_struct.unpack_from(self.raw_data, self.segment_header_struct.size) if sys.byteorder == 'big': syndrome_id = fields[1] error_message = fields[4] else: syndrome_id = fields[0] error_message = reverse_string_endian(fields[4]) # syndrome_id, error_message = fields[1], fields[4] error_message = error_message.decode('utf-8') return syndrome_id, error_message SegmentFactory.register(constants.RESOURCE_DUMP_SEGMENT_TYPE_ERROR, ErrorSegment) mstflint-4.26.0/resourcetools/segments/TerminateSegment.py0000644000175000017500000000430514522641732024267 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # TerminateSegment.py # Python implementation of the Class TerminateSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.Segment import Segment from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants class TerminateSegment(Segment): """this class is responsible for holding Terminate segment data. """ _segment_type_id = constants.RESOURCE_DUMP_SEGMENT_TYPE_TERMINATE def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) SegmentFactory.register(constants.RESOURCE_DUMP_SEGMENT_TYPE_TERMINATE, TerminateSegment) mstflint-4.26.0/resourcetools/segments/SegmentCreator.py0000644000175000017500000001010014522641732023724 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # SegmentCreator.py # Python implementation of the Class SegmentCreator # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:12:03 AM # Original author: talve # ####################################################### from segments.SegmentFactory import SegmentFactory from segments.ResourceSegment import ResourceSegment from segments.Segment import unpack_segment_header from resourcedump_lib.utils import constants as cs from resourceparse_lib.utils.common_functions import is_resource_segment class SegmentCreator: """this class is responsible for splitting the raw data to segments and creating segments objects. """ @classmethod def create(cls, raw_data, aggregate=False): """convert segments data into a segments objects by using SegmentFactory. """ try: segments = [] starting_resource_type = None current_index = 0 end_index = len(raw_data) while current_index < end_index: seg_size_dword, seg_id = unpack_segment_header(raw_data, current_index) if seg_size_dword == 0: raise Exception("raw_data didn't get smaller - found segment_size = 0") seg_size = seg_size_dword * cs.DWORD_SIZE raw_seg = raw_data[current_index:current_index + seg_size] seg_type = cls.get_seg_type_for_register_segments(seg_id) seg = SegmentFactory.create(seg_type, raw_seg) seg.resource_type = seg_id is_resource_segment = isinstance(seg, ResourceSegment) to_aggregate = aggregate and is_resource_segment and seg.unpack_aggregate_bit() if not to_aggregate: if is_resource_segment: starting_resource_type = seg_id segments.append(seg) else: if not starting_resource_type or seg_id != starting_resource_type: raise Exception("Aggregate bit on first or control segment is illegal") else: segments[-1].aggregate(seg) current_index += seg_size except Exception as e: raise Exception("Failed to create segments with error: {0}".format(e)) return segments @classmethod def get_seg_type_for_register_segments(cls, seg_type): """This method check if the segment type is a reference segment and return the right type of that segment. """ if is_resource_segment(seg_type): return cs.RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE return seg_type mstflint-4.26.0/resourcetools/segments/ResourceSegment.py0000644000175000017500000000654714522641732024140 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResourceSegment.py # Python implementation of the Class ResourceSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.Segment import Segment from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants import struct import sys class ResourceSegment(Segment): """this class is responsible for holding Resource segment data. """ AGGREGATE_BIT_MASK = 0x1000000 _segment_type_id = constants.RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE aggregate_dword_struct = struct.Struct('I') indices_struct = struct.Struct('II') def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) self.resource_type = constants.RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE self.index1, self.index2 = self.unpack_indices() # TODO: for optimization move this line to later stage, before parsing def get_type(self): """get the general segment type. """ return self.resource_type def unpack_aggregate_bit(self): aggregate_dword, = self.aggregate_dword_struct.unpack_from(self.raw_data, self.segment_header_struct.size) # todo: test aggregate big/little return aggregate_dword & self.AGGREGATE_BIT_MASK def aggregate(self, other): self.raw_data += other.raw_data[16:] def unpack_indices(self): index1, index2 = self.indices_struct.unpack_from(self.raw_data, self.segment_header_struct.size + self.aggregate_dword_struct.size) return index1, index2 def additional_title_info(self): """return index1 and index2 if exists in the segment. """ return " ; index1 = {0}, index2 = {1}".format(hex(self.index1), hex(self.index2)) SegmentFactory.register(constants.RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE, ResourceSegment) mstflint-4.26.0/resourcetools/segments/MenuSegment.py0000644000175000017500000001555214522641732023251 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # MenuSegment.py # Python implementation of the Class MenuSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.Segment import Segment from segments.MenuRecord import MenuRecord from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants as cs from resourcedump_lib.utils.Exceptions import DumpNotSupported import struct import sys class MenuSegment(Segment): """This class is responsible for holding menu segment data. """ RECORD_BITS_SIZE = 416 RECORD_DWORDS_SIZE = 13 _segment_type_id = cs.RESOURCE_DUMP_SEGMENT_TYPE_MENU menu_sub_header_struct = struct.Struct('HH') def __init__(self, data): """Initialize the class by setting the class data. """ super().__init__(data) self.type = cs.RESOURCE_DUMP_SEGMENT_TYPE_MENU self.size, _ = self.unpack_segment_header() self.num_of_records = self.unpack_num_of_records() self.records = [] for i in range(self.num_of_records): rec = MenuRecord(data[(8 + i * self.RECORD_DWORDS_SIZE * 4): (8 + (i + 1) * self.RECORD_DWORDS_SIZE * 4)]) self.records.append(rec) def unpack_num_of_records(self): short_1, short_2 = self.menu_sub_header_struct.unpack_from(self.raw_data, 4) return short_2 if sys.byteorder == "big" else short_1 def get_records(self): """get all the menu segment records. """ return self.records def get_printable_records(self): """get all the menu segment records in a printable format. """ recs = [] for rec in self.records: recs.append(rec.convert_record_obj_to_printable_list()) return recs def get_segment_type_by_segment_name(self, segment_type): """get the menu segment type by a given segment name. if not found, method will return the given segment type """ for rec in self.records: if rec.segment_name == segment_type: segment_type = rec.segment_type return segment_type def verify_support(self, **kwargs): """check if the arguments matches with the menu data. """ dump_type = kwargs["segment"] index1 = kwargs["index1"] index2 = kwargs["index2"] num_of_objs_1 = kwargs["numOfObj1"] num_of_objs_2 = kwargs["numOfObj2"] match_rec = None # Check whether dump type supported for rec in self.records: if rec.segment_type == dump_type or rec.segment_name == dump_type: match_rec = rec break if not match_rec: raise DumpNotSupported("Dump type: {0} is not supported".format(dump_type)) # Check index1 attribute if not index1 and index1 != 0 and match_rec.must_have_index1: raise DumpNotSupported( "Dump type: {0} must have index1 attribute, and it wasn't provided".format(dump_type)) if not index2 and index2 != 0 and match_rec.must_have_index2: raise DumpNotSupported( "Dump type: {0} must have index2 attribute, and it wasn't provided".format(dump_type)) if index1 and not match_rec.supports_index1: raise DumpNotSupported( "Dump type: {0} does not support index1 attribute, and it was provided".format(dump_type)) if index2 and not match_rec.supports_index2: raise DumpNotSupported( "Dump type: {0} does not support index2 attribute, and it was provided".format(dump_type)) if not num_of_objs_1 and match_rec.must_have_num_of_obj1: raise DumpNotSupported( "Dump type: {0} must have numOfObj1 attribute, and it wasn't provided".format(dump_type)) if not num_of_objs_2 and match_rec.must_have_num_of_obj2: raise DumpNotSupported( "Dump type: {0} must have numOfObj2 attribute, and it wasn't provided".format(dump_type)) if num_of_objs_1 and not match_rec.supports_num_of_obj1: raise DumpNotSupported( "Dump type: {0} does not support numOfObj1 attribute, and it was provided".format(dump_type)) if num_of_objs_2 and not match_rec.supports_num_of_obj2: raise DumpNotSupported( "Dump type: {0} does not support numOfObj2 attribute, and it was provided".format(dump_type)) if num_of_objs_1 == cs.NUM_OF_OBJ_ALL and not match_rec.supports_all_num_of_obj1: raise DumpNotSupported( "Dump type: {0} does not support 'all' as numOfObj1 attribute".format(dump_type)) if num_of_objs_2 == cs.NUM_OF_OBJ_ALL and not match_rec.supports_all_num_of_obj2: raise DumpNotSupported( "Dump type: {0} does not support 'all' as numOfObj2 attribute".format(dump_type)) if num_of_objs_1 == cs.NUM_OF_OBJ_ACTIVE and not match_rec.supports_active_num_of_obj1: raise DumpNotSupported( "Dump type: {0} does not support 'active' as numOfObj1 attribute".format(dump_type)) if num_of_objs_2 == cs.NUM_OF_OBJ_ACTIVE and not match_rec.supports_active_num_of_obj2: raise DumpNotSupported( "Dump type: {0} does not support 'active' as numOfObj2 attribute".format(dump_type)) SegmentFactory.register(cs.RESOURCE_DUMP_SEGMENT_TYPE_MENU, MenuSegment) mstflint-4.26.0/resourcetools/segments/__init__.py0000644000175000017500000000301214522641732022545 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. from segments import MenuSegment, RefSegment, NoticeSegment, ResourceSegment, TerminateSegment, ErrorSegment, InfoSegment, CommandSegment mstflint-4.26.0/resourcetools/segments/MenuRecord.py0000644000175000017500000002575514522641732023073 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # MenuRecord.py # Python implementation of the Class MenuRecord # Original author: romany # ####################################################### import math from resourcedump_lib.utils import constants as cs from resourceparse_lib.utils.common_functions import reverse_string_endian import struct import sys class MenuRecord: """This class responsible for managing the records of the menu segment and adjust it for printing a table for the user. """ menu_record_struct = struct.Struct("HH16s16s16s") def __init__(self, rec_data): """initialize the class by set and parse the record data. """ self.raw_data = rec_data props_bitfield, self.segment_type, self.segment_name, self.segment_index1_name, self.segment_index2_name = self.unpack_menu_record() props_str = '{:0b}'.format(props_bitfield).zfill(16) # self.segment_type = hex(int('{:0b}'.format(rec_data[cs.MENU_SEGMENT_TYPE_DWORD_LOCATION]).zfill(32)[16:32], 2)) self.supports_index1 = int(props_str[15:16], 2) self.must_have_index1 = int(props_str[14:15], 2) self.supports_index2 = int(props_str[13:14], 2) self.must_have_index2 = int(props_str[12:13], 2) self.supports_num_of_obj1 = int(props_str[11:12], 2) self.must_have_num_of_obj1 = int(props_str[10:11], 2) self.supports_all_num_of_obj1 = int(props_str[9:10], 2) self.supports_active_num_of_obj1 = int(props_str[8:9], 2) self.supports_num_of_obj2 = int(props_str[7:8], 2) self.must_have_num_of_obj2 = int(props_str[6:7], 2) self.supports_all_num_of_obj2 = int(props_str[5:6], 2) self.supports_active_num_of_obj2 = int(props_str[4:5], 2) self.segment_name = self.segment_name.decode("utf-8").rstrip('\x00') self.segment_index1_name = self.segment_index1_name.decode("utf-8").rstrip('\x00') self.segment_index2_name = self.segment_index2_name.decode("utf-8").rstrip('\x00') # Down goes the code that represents the Menu Record in a pretty table format: # EXAMPLE # __________________________________________________________________ # # Segment Type - 0x1002 (RCV_BUFF) # # Dump Params Applicability Special Values # -------------------------------- -------------- -------------- # index1 (QPN) Mandatory N/A # numOfObj1 N/A N/A # index2 (DS) Optional N/A # numOfObj2 Optional All # __________________________________________________________________ def unpack_menu_record(self): fields = self.menu_record_struct.unpack_from(self.raw_data) props_bitfield, segment_type = fields[:2] if sys.byteorder == 'big' else fields[1::-1] segment_name, segment_index1_name, segment_index2_name = fields[2:] if sys.byteorder == 'little': segment_name = reverse_string_endian(segment_name) segment_index1_name = reverse_string_endian(segment_index1_name) segment_index2_name = reverse_string_endian(segment_index2_name) return props_bitfield, segment_type, segment_name, segment_index1_name, segment_index2_name @staticmethod def _make_separating_line(new_line=False): """This method creates a string that the separation line ('____')""" line = cs.MENU_SEGMENT_TABLE_LINE_LEN * cs.MENU_SEGMENT_TABLE_WRAP if new_line: line += "\n" return line def _make_segment_type_line(self): """This method creates a string that represent segment type line to be printed""" line = cs.MENU_SEGMENT_TABLE_SEGMENT_TYPE + hex(self.segment_type) + " ({0})".format(self.segment_name) + "\n" padding = 0 if len(line) < cs.MENU_SEGMENT_TABLE_LINE_LEN: padding = cs.MENU_SEGMENT_TABLE_LINE_LEN - len(line) line = " " * math.ceil((padding / 2)) + line + " " * round((padding / 2)) return line @staticmethod def _make_table_header_line(): """This method creates a string that represent the header in the table""" padding = cs.MENU_SEGMENT_TABLE_DUMP_PARAMS_LEN - len( cs.MENU_SEGMENT_TABLE_DUMP_PARAMS) + cs.MENU_SEGMENT_TABLE_GAP line = cs.MENU_SEGMENT_TABLE_DUMP_PARAMS + " " * padding padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len( cs.MENU_SEGMENT_TABLE_APPLICABILITY) + cs.MENU_SEGMENT_TABLE_GAP line += cs.MENU_SEGMENT_TABLE_APPLICABILITY + " " * padding padding = cs.MENU_SEGMENT_TABLE_SPECIAL_VALUES_LEN - len(cs.MENU_SEGMENT_TABLE_SPECIAL_VALUES) line += cs.MENU_SEGMENT_TABLE_SPECIAL_VALUES + " " * padding return line @staticmethod def _make_dashes_line(): """This method creates a string that represent split line ('------') for the table""" line = cs.MENU_SEGMENT_TABLE_DASH * cs.MENU_SEGMENT_TABLE_DUMP_PARAMS_LEN padding = cs.MENU_SEGMENT_TABLE_GAP line += " " * padding line += cs.MENU_SEGMENT_TABLE_DASH * cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN line += " " * padding line += cs.MENU_SEGMENT_TABLE_DASH * cs.MENU_SEGMENT_TABLE_SPECIAL_VALUES_LEN return line def _make_index_line(self, index_name, supports, must, table_index_line): """This method creates a string that represent indexX line to be printed""" line = table_index_line + " ({0})".format(index_name) padding = cs.MENU_SEGMENT_TABLE_DUMP_PARAMS_LEN - len(line) + cs.MENU_SEGMENT_TABLE_GAP line += " " * padding if not supports: padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len(cs.MENU_SEGMENT_TABLE_NA) applicability = cs.MENU_SEGMENT_TABLE_NA else: if must: padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len(cs.MENU_SEGMENT_TABLE_MANDATORY) applicability = cs.MENU_SEGMENT_TABLE_MANDATORY else: padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len(cs.MENU_SEGMENT_TABLE_OPTIONAL) applicability = cs.MENU_SEGMENT_TABLE_OPTIONAL applicability = applicability + " " * math.ceil(padding) line += applicability padding = cs.MENU_SEGMENT_TABLE_SPECIAL_VALUES_LEN - len(cs.MENU_SEGMENT_TABLE_NA) special_values = cs.MENU_SEGMENT_TABLE_NA + " " * math.ceil(padding / 2) line += " " * cs.MENU_SEGMENT_TABLE_GAP line += special_values return line @staticmethod def _make_num_of_objs_line(supports, must, table_objs_line, al, active): """This method creates a string that represent numOfObjsX line to be printed""" line = table_objs_line padding = cs.MENU_SEGMENT_TABLE_DUMP_PARAMS_LEN - len(line) + cs.MENU_SEGMENT_TABLE_GAP line += " " * padding if not supports: padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len(cs.MENU_SEGMENT_TABLE_NA) applicability = cs.MENU_SEGMENT_TABLE_NA else: if must: padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len(cs.MENU_SEGMENT_TABLE_MANDATORY) applicability = cs.MENU_SEGMENT_TABLE_MANDATORY else: padding = cs.MENU_SEGMENT_TABLE_APPLICABILITY_LEN - len(cs.MENU_SEGMENT_TABLE_OPTIONAL) applicability = cs.MENU_SEGMENT_TABLE_OPTIONAL applicability = applicability + " " * math.ceil(padding) line += applicability special_values = "" if al: special_values = cs.MENU_SEGMENT_TABLE_ALL if active: if special_values: special_values += cs.MENU_SEGMENT_TABLE_AND special_values += cs.MENU_SEGMENT_TABLE_ACTIVE if not special_values: special_values = cs.MENU_SEGMENT_TABLE_NA padding = cs.MENU_SEGMENT_TABLE_SPECIAL_VALUES_LEN - len(special_values) special_values = special_values + " " * math.ceil(padding / 2) line += " " * cs.MENU_SEGMENT_TABLE_GAP line += special_values return line def convert_record_obj_to_printable_list(self): """This method creates a list of formatted strings that represents the record object """ printable = [] printable.append(self._make_separating_line(new_line=True)) printable.append(self._make_segment_type_line()) printable.append(self._make_table_header_line()) printable.append(self._make_dashes_line()) printable.append(self._make_index_line(self.segment_index1_name, self.supports_index1, self.must_have_index1, cs.MENU_SEGMENT_TABLE_INDEX1)) printable.append(self._make_num_of_objs_line(self.supports_num_of_obj1, self.must_have_num_of_obj1, cs.MENU_SEGMENT_TABLE_NUM_OF_OBJS1, self.supports_all_num_of_obj1, self.supports_active_num_of_obj1)) printable.append(self._make_index_line(self.segment_index2_name, self.supports_index2, self.must_have_index2, cs.MENU_SEGMENT_TABLE_INDEX2)) printable.append(self._make_num_of_objs_line(self.supports_num_of_obj2, self.must_have_num_of_obj2, cs.MENU_SEGMENT_TABLE_NUM_OF_OBJS2, self.supports_all_num_of_obj2, self.supports_active_num_of_obj2)) printable.append(self._make_separating_line()) return printable mstflint-4.26.0/resourcetools/segments/CommandSegment.py0000644000175000017500000000574014522641732023721 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # CommandSegment.py # Python implementation of the Class CommandSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.Segment import Segment from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants import struct import sys class CommandSegment(Segment): """this class is responsible for holding command segment data. """ _segment_type_id = constants.RESOURCE_DUMP_SEGMENT_TYPE_COMMAND command_struct = struct.Struct('HHIIHH') def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) _, _, self.index1, self.index2, _, _ = self.unpack_command() # TODO: for optimization move this line to later stage, before parsing def unpack_command(self): fields = self.command_struct.unpack_from(self.raw_data, self.segment_header_struct.size) segment_id, vhca_id, index1, index2, num_of_obj1, num_of_obj2 = fields if sys.byteorder == 'big' \ else fields[1], fields[0], fields[2], fields[3], fields[5], fields[4] return segment_id, vhca_id, index1, index2, num_of_obj1, num_of_obj2 def additional_title_info(self): """return index1 and index2 if exists in the segment. """ return " ; index1 = {0}, index2 = {1}".format(hex(self.index1), hex(self.index2)) SegmentFactory.register(constants.RESOURCE_DUMP_SEGMENT_TYPE_COMMAND, CommandSegment) mstflint-4.26.0/resourcetools/segments/RefSegment.py0000644000175000017500000000427214522641732023056 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # RefSegment.py # Python implementation of the Class RefSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:58 AM # Original author: talve # ####################################################### from segments.CommandSegment import CommandSegment from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants as cs class RefSegment(CommandSegment): """this class is responsible for holding reference segment data. """ _segment_type_id = cs.RESOURCE_DUMP_SEGMENT_TYPE_REFERENCE def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) SegmentFactory.register(cs.RESOURCE_DUMP_SEGMENT_TYPE_REFERENCE, RefSegment) mstflint-4.26.0/resourcetools/segments/SegmentFactory.py0000644000175000017500000000451414522641732023750 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # SegmentFactory.py # Python implementation of the Class SegmentFactory # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:59 AM # Original author: talve # ####################################################### class SegmentFactory: """This class is responsible for creating and registering the segments. """ segments = {} @classmethod def register(cls, segment_type, obj): """This method should be use from the specific segment in order to perform the segment registration. """ cls.segments.update({segment_type: obj}) @classmethod def create(cls, segment_type, *args): """create the segment and return the segment obj. """ if segment_type not in cls.segments: raise Exception("segment type:{0} is not supported".format(hex(segment_type))) return cls.segments[segment_type](*args) mstflint-4.26.0/resourcetools/segments/NoticeSegment.py0000644000175000017500000000433714522641732023565 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # NoticeSegment.py # Python implementation of the Class NoticeSegment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from segments.ErrorSegment import ErrorSegment from segments.SegmentFactory import SegmentFactory from resourcedump_lib.utils import constants class NoticeSegment(ErrorSegment): """this class is responsible for holding Notice segment data. """ message_name = "notice msg" _segment_type_id = constants.RESOURCE_DUMP_SEGMENT_TYPE_NOTICE def __init__(self, data): """initialize the class by setting the class data. """ super().__init__(data) SegmentFactory.register(constants.RESOURCE_DUMP_SEGMENT_TYPE_NOTICE, NoticeSegment) mstflint-4.26.0/resourcetools/segments/Segment.py0000644000175000017500000000733514522641732022424 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # Segment.py # Python implementation of the Class Segment # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:57 AM # Original author: talve # ####################################################### from abc import ABC, abstractmethod import struct import sys def unpack_segment_header(raw_data, offset): short_1, short_2 = Segment.segment_header_struct.unpack_from(raw_data, offset) length_dw, segment_type = (short_1, short_2) if sys.byteorder == "big" else (short_2, short_1) return length_dw, segment_type class Segment(ABC): """this class is responsible for holding segment data according to its type. """ segment_header_struct = struct.Struct('HH') def __init__(self, data): """initialize the class by setting the class data. """ self.size = 0 self._parsed_data = [] # list of strings representing lines of parsed data self._messages = [] # list of strings representing errors/warning/notices self.raw_data = data def get_size(self): return self.size def get_data(self, byte_order=sys.byteorder): """get the segment data. """ if byte_order == sys.byteorder: return self.raw_data else: ints = [int.from_bytes(self.raw_data[i:i + 4], sys.byteorder) for i in range(0, len(self.raw_data), 4)] reversed_data = bytearray() for number in ints: reversed_data.extend(number.to_bytes(4, byte_order)) return reversed_data def get_type(self): """get the segment type. """ return self._segment_type_id def unpack_segment_header(self): return unpack_segment_header(self.raw_data, 0) def add_parsed_data(self, parsed_line): self._parsed_data.append(parsed_line) def get_parsed_data(self): """get dictionary of parsed segment data. """ return self._parsed_data def add_message(self, message): self._messages.append(message) def get_messages(self): """get dictionary of parsed segment data. """ return self._messages # TODO: check if function below necesarry def additional_title_info(self): """return index1 and index2 if exists in the segment. """ return "" mstflint-4.26.0/resourcetools/__init__.py0000644000175000017500000000257714522641732020737 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/Makefile.am0000644000175000017500000000760414522641732020656 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = resourcedump_lib USER_DIR = $(top_builddir) bin_SCRIPTS = mstresourcedump mstresourceparse PYTHON_WRAPPER=mstresourcedump PYTHON_WRAPPER_SCRIPT=$(USER_DIR)/common/python_wrapper ${PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ PYTHON_WRAPPER2=mstresourceparse ${PYTHON_WRAPPER2}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ pythonlibdir=$(libdir)/mstflint/python_tools/resourcetools dist_pythonlib_SCRIPTS = mstresourcedump.py mstresourceparse.py segmentspythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/segments dist_segmentspythonlib_DATA = $(srcdir)/segments/*.py maindumppythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib dist_maindumppythonlib_DATA = $(srcdir)/resourcedump_lib/*.py validationpythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/validation dist_validationpythonlib_DATA = $(srcdir)/resourcedump_lib/validation/*.py utilspythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/utils dist_utilspythonlib_DATA = $(srcdir)/resourcedump_lib/utils/*.py filterspythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/filters dist_filterspythonlib_DATA = $(srcdir)/resourcedump_lib/filters/*.py fetcherspythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/fetchers dist_fetcherspythonlib_DATA = $(srcdir)/resourcedump_lib/fetchers/*.py commandspythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/commands dist_commandspythonlib_DATA = $(srcdir)/resourcedump_lib/commands/*.py cresourcedumppythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/cresourcedump dist_cresourcedumppythonlib_DATA = $(srcdir)/resourcedump_lib/cresourcedump/*.py mainparsepythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib dist_mainparsepythonlib_DATA = $(srcdir)/resourceparse_lib/*.py parsersparsepythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib/parsers dist_parsersparsepythonlib_DATA = $(srcdir)/resourceparse_lib/parsers/*.py parseutilspythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib/utils dist_parseutilspythonlib_DATA = $(srcdir)/resourceparse_lib/utils/*.py parsedatapythonlibdir=$(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib/resource_data dist_parsedatapythonlib_DATA = $(srcdir)/resourceparse_lib/resource_data/*.py CLEANFILES = ${PYTHON_WRAPPER} ${PYTHON_WRAPPER2} mstflint-4.26.0/resourcetools/mstresourcedump.py0000644000175000017500000002705514522641732022437 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # MlxResDump.py # Python implementation of the Class MlxResDump # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:58 AM # Original author: talve # ####################################################### import tools_version import sys import os import argparse if sys.version_info[0] < 3: print("Error: This tool supports python 3.x only. Exiting...") exit(1) from resourcedump_lib.commands.CommandFactory import CommandFactory from resourcedump_lib.utils import constants as cs from mstresourceparse import ResourceParse from resourceparse_lib.parsers.RawParser import RawParser from resourceparse_lib.parsers.MenuParser import MenuParser from resourceparse_lib.ResourceParseManager import ResourceParseManager from resourceparse_lib.utils.Exceptions import ResourceParseException sys.path.append(os.path.join("common")) class MlxResDump: """This class is responsible for the resource dump UI by handling the user inputs and and running the right command. """ tool_name = os.path.basename(__file__).split('.')[0] @staticmethod def _decimal_hex_to_str_hex(inp): """This method check if the string input is hex or decimal. and convert it to hex number. in case that the input is not a number, the method will return the input as is (str). """ try: return int(inp, 0) except Exception as _: return inp @staticmethod def _num_of_objs_check(inp): """This method check if the num of objects parameter is valid """ if inp in (['all', 'active']): if inp == 'all': inp = cs.NUM_OF_OBJ_ALL else: inp = cs.NUM_OF_OBJ_ACTIVE return inp else: try: return int(inp, 0) except Exception as _: msg = "numOfObj accepts the following values: ['all', 'active', number]" raise argparse.ArgumentTypeError(msg) @staticmethod def _depth_check(inp): """This method check if the num depth parameter is valid """ if inp == "inf": return cs.INF_DEPTH else: try: return int(inp, 0) except Exception as _: msg = "depth accepts the following values: ['inf', number]" raise argparse.ArgumentTypeError(msg) def parse_resourcedump_args(self): # main parser arg_parser = argparse.ArgumentParser(prog=self.tool_name, epilog="Use '{0} -h' to read about a specific command.".format(self.tool_name), formatter_class=argparse.RawTextHelpFormatter) arg_parser.add_argument('-v', '--version', action='version', help='Shows tool version', version=tools_version.GetVersionString(self.tool_name, None)) # commands sub parser commands = arg_parser.add_subparsers(title='commands') # dump sub parser dump_args_description = """This command is used for retrieving resources from a device. Dump Arguments: These arguments control the dump from the device, the type of request and the manner it retrieved. """ dump_arg_parser = commands.add_parser(cs.RESOURCE_DUMP_COMMAND_TYPE_DUMP, description=dump_args_description, formatter_class=argparse.RawDescriptionHelpFormatter) dump_arg_parser.set_defaults(command=cs.RESOURCE_DUMP_COMMAND_TYPE_DUMP) dump_required_args = dump_arg_parser.add_argument_group('required arguments') dump_required_args.add_argument("-d", "--device", help='The device name', required=True) dump_required_args.add_argument("-s", "--segment", help='The segment to dump', required=True, type=self._decimal_hex_to_str_hex) dump_optional_args = dump_arg_parser.add_argument_group('optional arguments') dump_optional_args.add_argument("-v", "--virtual-hca-id", dest="vHCAid", help='The virtual HCA (host channel adapter, NIC) ID', type=lambda x: int(x, 0), default=cs.DEFAULT_VHCA) dump_optional_args.add_argument("-i1", "--index1", help='The first context index to dump (if supported for this segment)', type=lambda x: int(x, 0), default=0) dump_optional_args.add_argument("-i2", "--index2", help='The second context index to dump (if supported for this segment)', type=lambda x: int(x, 0), default=0) dump_optional_args.add_argument("-n1", "--num-of-obj1", dest="numOfObj1", help='The number of objects to be dumped (if supported for this segment). accepts: ["all", "active", number, depends on the capabilities]', type=self._num_of_objs_check, default=0) dump_optional_args.add_argument("-n2", "--num-of-obj2", dest="numOfObj2", help='The number of objects to be dumped (if supported for this segment). accepts: ["all", "active", number, depends on the capabilities]', type=self._num_of_objs_check, default=0) dump_optional_args.add_argument("-de", "--depth", help='The depth of walking through reference segments. 0 stands for flat, ' '1 allows crawling of a single layer down the struct, etc. "inf" for all', type=self._depth_check, default=0) dump_optional_args.add_argument("-b", "--bin", help='The output to a binary file that replaces the default print in hexadecimal,' ' a readable format') dump_optional_args.add_argument("-m", "--mem", metavar="RDMA_NAME", nargs="?", const=cs.DEVICE_RDMA, default="", help='Perform the dump through memory (ofed with rdma-core dependency). optionally accepts: [rdma device (for example "mlx5_4")]') resourceparse_help, resource_parse_usage = ResourceParse.get_help(arg_parser.prog) resourceparse_description = """Parse Arguments: These arguments control the parsing of the dump and the format of the output. There are several methods of parsing (see "Parse Methods"). """ + resource_parse_usage.replace(arg_parser.prog, arg_parser.prog + " ...") help_parser_usage = dump_arg_parser.format_usage().rstrip() + " [PARSE_ARGUMENTS]\n" help_parser_help = help_parser_usage + "\n".join(dump_arg_parser.format_help().split("\n")[1:]) + "\n" help_parser_help += resourceparse_description + resourceparse_help dump_arg_parser.format_help = lambda: help_parser_help # query sub parser query_description = """This command is used for retrieving the menu of all available reources of a device.""" query_parser = commands.add_parser(cs.RESOURCE_DUMP_COMMAND_TYPE_QUERY, description=query_description) query_parser.set_defaults(command=cs.RESOURCE_DUMP_COMMAND_TYPE_QUERY) query_parser.add_argument("-v", "--virtual-hca-id", dest="vHCAid", help='The virtual HCA (host channel adapter, NIC) ID', type=lambda x: int(x, 0), default=cs.DEFAULT_VHCA) query_parser.add_argument("-m", "--mem", metavar="RDMA_NAME", nargs="?", const=cs.DEVICE_RDMA, default="", help='Perform the dump through memory (ofed with rdma-core dependency). optionally accepts: [rdma device (for example "mlx5_4")]') query_parser.set_defaults(resource_parser=MenuParser.PARSER_TYPE, bin=None) # required arguments by query sub parser query_required_args = query_parser.add_argument_group('required arguments') query_required_args.add_argument("-d", "--device", help='The device name', required=True) arguments, resourceparse_argv = arg_parser.parse_known_args() if len(sys.argv) < 2: arg_parser.print_usage() arg_parser.exit(1) if arguments.command == cs.RESOURCE_DUMP_COMMAND_TYPE_DUMP: if arguments.bin: resourceparse_argv += ["-d", arguments.bin] else: resourceparse_argv += ["--segments_provided"] elif arguments.command == cs.RESOURCE_DUMP_COMMAND_TYPE_QUERY: resourceparse_argv += ["-p", "menu"] resourceparse_argv += ["--segments_provided"] return arguments, resourceparse_argv def parse_resourceparse_args(self, resourceparse_argv): parse_manager_args, resource_parser_args = ResourceParse.run_arg_parse(resourceparse_argv, self.tool_name) return parse_manager_args, resource_parser_args def create_command(arguments): """This method creates the right command. """ try: command_type = arguments.command created_command = CommandFactory.create(command_type, **vars(arguments)) return created_command except Exception as exp: raise Exception("failed to create command of type: {0} with exception: {1}".format(command_type, exp)) if __name__ == '__main__': try: dump_args, resourceparse_argv = MlxResDump().parse_resourcedump_args() print("{:#^100}".format(" Dump started ")) command = create_command(dump_args) command.execute() print("{:#^100}".format(" Dump finished successfully ")) except Exception as e: print("Error: {0}. Exiting...".format(e)) sys.exit(1) try: parse_manager_args, resource_parser_args = MlxResDump().parse_resourceparse_args(resourceparse_argv) parse_data = not (parse_manager_args.resource_parser is RawParser and dump_args.bin) if parse_data: print("{:#^100}".format(" Parse started ")) segments = command.get_segments(parse_manager_args.resource_parser is not RawParser) if not dump_args.bin else None parse_manager = ResourceParseManager(parse_manager_args, resource_parser_args, segments) parse_manager.parse() print("{:#^100}".format(" Parse finished successfully ")) except ResourceParseException as rpe: print("ResourceParse failed!\n{0}.\nExiting...".format(rpe)) sys.exit(1) except Exception as e: print("FATAL ERROR!\n{0}.\nExiting...".format(e)) sys.exit(1) mstflint-4.26.0/resourcetools/resourcedump_lib/0000755000175000017500000000000014522641740022155 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/commands/0000755000175000017500000000000014522641732023757 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/commands/CommandFactory.py0000644000175000017500000000451714522641732027246 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # CommandFactory.py # Python implementation of the Class CommandFactory # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:12:00 AM # Original author: talve # ####################################################### class CommandFactory: commands = {} """This class is responsible for creating and registering the commands. """ @classmethod def register(cls, command_type, obj): """This method should be use from the specific command in order to perform the command registration. """ cls.commands.update({command_type: obj}) @classmethod def create(cls, command_type, **kwargs): """create the command and return the command obj. """ if command_type not in cls.commands: raise Exception("command type:{0} is not supported".format(command_type)) return cls.commands[command_type](**kwargs) mstflint-4.26.0/resourcetools/resourcedump_lib/commands/__init__.py0000644000175000017500000000270014522641732026067 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. from resourcedump_lib.commands import QueryCommand, DumpCommand mstflint-4.26.0/resourcetools/resourcedump_lib/commands/ResDumpCommand.py0000644000175000017500000001005414522641732027207 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # ResDumpCommand.py # Python implementation of the Class ResDumpCommand # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:11:58 AM # Original author: talve # ####################################################### from abc import ABC, abstractmethod import ctypes from resourcedump_lib.cresourcedump.CResourceDump import CResourceDump from resourcedump_lib.cresourcedump.cresourcedump_types import c_device_attributes, c_dump_request, c_resource_dump_data from segments.SegmentCreator import SegmentCreator class ResDumpCommand(ABC): """This class is an interface for the resource dump commands and perform a strategy pattern of the execution by calling the internal methods. validate and get_data that will be implemented by each command. """ def execute(self): """Command execution call: 1. validate. 2. retrieve_data. """ self.validate() try: self.retrieve_data() except Exception as e: raise Exception("Failed {} - {}".format(type(self).__name__, e)) @abstractmethod def retrieve_data(self): """get the needed data. """ pass @abstractmethod def validate(self): """validate. """ pass def get_raw_data(self): if self.raw_data is None: self.retrieve_data() return self.raw_data def get_segments(self, aggregate=False): if self.segments is None: self.segments = SegmentCreator().create(self.get_raw_data(), aggregate) return self.segments def __init__(self): self._sdk_dump_data = None self.raw_data = None self.segments = None def __del__(self): if self._sdk_dump_data: CResourceDump.c_destroy_resource_dump(self._sdk_dump_data.contents) def retrieve_data_from_sdk(self): device_name = bytes(self.device_name, "utf-8") rdma_name = bytes(self.mem, "utf-8") device_attrs = c_device_attributes(device_name, self.vHCAid, rdma_name) dump_request = c_dump_request(self.segment, self.index1, self.index2, self.numOfObj1, self.numOfObj2) # dump for display is done with native endianess for ease and efficiency of calculations self._sdk_dump_data = ctypes.pointer(c_resource_dump_data(None, None, 0, 0)) if CResourceDump.c_create_resource_dump(device_attrs, dump_request, self._sdk_dump_data, self.depth) != 0: raise Exception(CResourceDump.c_get_resource_dump_error().decode("utf-8")) self.raw_data = bytes(self._sdk_dump_data.contents.data[0:self._sdk_dump_data.contents.size]) mstflint-4.26.0/resourcetools/resourcedump_lib/commands/QueryCommand.py0000644000175000017500000000670714522641732026747 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # QueryCommand.py # Python implementation of the Class QueryCommand # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:12:00 AM # Original author: talve # ####################################################### from resourcedump_lib.commands.ResDumpCommand import ResDumpCommand from resourcedump_lib.commands.CommandFactory import CommandFactory from resourcedump_lib.utils import constants as cs from resourcedump_lib.validation.CapabilityValidator import CapabilityValidator from resourcedump_lib.filters.SegmentsFilter import SegmentsFilter class QueryCommand(ResDumpCommand): """This class is responsible for performing the query command flow by validate, getting the data and print it. """ def __init__(self, **kwargs): """QueryCommand initialization. """ super().__init__() self.device_name = kwargs['device'] self.segment = cs.RESOURCE_DUMP_SEGMENT_TYPE_MENU self.vHCAid = kwargs.get('vHCAid', cs.DEFAULT_VHCA) self.index1 = 0 self.index2 = 0 self.numOfObj1 = 0 self.numOfObj2 = 0 self.depth = 0 self.mem = kwargs.get('mem', "") def retrieve_data(self): """call the QueryData for getting the menu data. """ self.retrieve_data_from_sdk() def get_segments(self, aggregate=False): if not self.segments: super().get_segments(aggregate) self.segments = SegmentsFilter.get_segments(self.segments, cs.RESOURCE_DUMP_SEGMENT_TYPE_MENU) if len(self.segments) == 0: raise Exception("Menu segment wasn't found after filtering by menu type") return self.segments def validate(self): """call the capability validator and check if the core dump supported by the FW. """ if CapabilityValidator.validate(): return True else: raise Exception("Resource Dump register is not supported by the FW") CommandFactory.register(cs.RESOURCE_DUMP_COMMAND_TYPE_QUERY, QueryCommand) mstflint-4.26.0/resourcetools/resourcedump_lib/commands/DumpCommand.py0000644000175000017500000001141014522641732026532 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # DumpCommand.py # Python implementation of the Class DumpCommand # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:12:00 AM # Original author: talve # ####################################################### from resourcedump_lib.commands.ResDumpCommand import ResDumpCommand from resourcedump_lib.commands.QueryCommand import QueryCommand from resourcedump_lib.commands.CommandFactory import CommandFactory from resourcedump_lib.utils import constants as cs from resourcedump_lib.validation.CapabilityValidator import CapabilityValidator from resourcedump_lib.cresourcedump.CResourceDump import CResourceDump from resourcedump_lib.cresourcedump.cresourcedump_types import c_device_attributes, c_dump_request class DumpCommand(ResDumpCommand): """This class is responsible for performing the dump command flow by validate, getting the data and print it. """ def __init__(self, **kwargs): """DumpCommand initialization. """ super().__init__() self.device_name = kwargs['device'] self.segment = kwargs['segment'] self.vHCAid = kwargs.get('vHCAid', cs.DEFAULT_VHCA) self.index1 = kwargs.get('index1', 0) self.index2 = kwargs.get('index2', 0) self.numOfObj1 = kwargs.get('numOfObj1', 0) self.numOfObj2 = kwargs.get('numOfObj2', 0) self.depth = kwargs.get('depth', cs.INF_DEPTH) self.bin = kwargs.get('bin', None) self.mem = kwargs.get('mem', "") def retrieve_data(self): """Validate request availability with QueryCommand and retrieve dump data using SDK. """ menu = QueryCommand(device=self.device_name, vHCAid=self.vHCAid, mem=self.mem).get_segments()[0] # validate that the dump supported by calling ArgToMenuVerifier menu.verify_support(segment=self.segment, index1=self.index1, index2=self.index2, numOfObj1=self.numOfObj1, numOfObj2=self.numOfObj2) # segment type can be name, this method will convert the name (if needed) to seg number in hex (str) if (type(self.segment is str)): self.segment = menu.get_segment_type_by_segment_name(self.segment) if not self.bin: self.retrieve_data_from_sdk() else: self.dump_to_file_with_sdk() def dump_to_file_with_sdk(self): device_name = bytes(self.device_name, "utf-8") rdma_name = bytes(self.mem, "utf-8") device_attrs = c_device_attributes(device_name, self.vHCAid, rdma_name) dump_request = c_dump_request(self.segment, self.index1, self.index2, self.numOfObj1, self.numOfObj2) bin_filename = bytes(self.bin, "utf-8") # dump to file is done with BE as default as convention if CResourceDump.c_dump_resource_to_file(device_attrs, dump_request, self.depth, bin_filename, 1) != 0: raise Exception(CResourceDump.c_get_resource_dump_error().decode("utf-8")) print("write to file: ", self.bin) def validate(self): """call the capability validator and check if the core dump supported by the FW. """ validation_status = False if CapabilityValidator.validate(): validation_status = True else: print("resource dump register is not supported by FW") return validation_status CommandFactory.register(cs.RESOURCE_DUMP_COMMAND_TYPE_DUMP, DumpCommand) mstflint-4.26.0/resourcetools/resourcedump_lib/src/0000755000175000017500000000000014522641740022744 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/0000755000175000017500000000000014522641740024545 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/query_command.h0000644000175000017500000000461714522641732027572 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_QUERY_COMMAND_H #define RESOURCE_DUMP_QUERY_COMMAND_H #include "resource_dump_command.h" #include namespace mft { namespace resource_dump { struct menu_record_data; class RecordList { public: RecordList(std::string&& retrieved_data); RecordList() = default; const menu_record_data& operator*(); const menu_record_data& operator[](const uint16_t idx); const uint16_t size(); private: uint16_t _size; std::string _full_data; menu_record_data* _record_data; }; class QueryCommand : public ResourceDumpCommand { public: QueryCommand(device_attributes device_attrs); std::string get_big_endian_string(); RecordList menu_records; protected: uint16_t _vhca; std::shared_ptr _sstream; bool validate() override; void parse_data() override; const std::string to_string() const override; private: }; } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_QUERY_COMMAND_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/dump_command.cpp0000644000175000017500000000705714522641732027726 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "dump_command.h" #include "resource_dump_types.h" #include "resource_dump_error_handling.h" #include "utils.h" #include #include #include #include namespace mft { namespace resource_dump { using namespace std; DumpCommand::DumpCommand(device_attributes device_attrs, dump_request segment_params, uint32_t depth, const string bin_filename, bool is_textual) : ResourceDumpCommand{device_attrs, segment_params, depth, is_textual} { _ostream = make_shared(bin_filename, ofstream::binary); if (_ostream->fail()) { throw ResourceDumpException(ResourceDumpException::Reason::OPEN_FILE_FAILED); } _istream = make_shared(bin_filename, ifstream::binary); _istream->tie(_ostream.get()); _allocated_ostream = true; } DumpCommand::DumpCommand(device_attributes device_attrs, dump_request segment_params, uint32_t depth, bool is_textual) : ResourceDumpCommand{device_attrs, segment_params, depth, is_textual} { auto ss = make_shared(); _ostream = ss; _istream = ss; } string DumpCommand::get_big_endian_string() { return _allocated_ostream ? get_big_endian_string_impl(*(static_pointer_cast(_istream)), *(static_pointer_cast(_ostream))) : get_big_endian_string_impl(*(static_pointer_cast(_istream))); } void DumpCommand::reverse_fstream_endianess() { if (!_allocated_ostream) { throw ResourceDumpException(ResourceDumpException::Reason::OPERATION_INVALID_BUFFER_MODE); } auto reversed_string = get_big_endian_string(); _ostream->seekp(0); _ostream->write(reversed_string.c_str(), reversed_string.size()); } bool DumpCommand::validate() { return true; // TODO: go through capability fetcher } const string DumpCommand::to_string() const { auto str = string{"PRINT FUNCTION NOT IMPLEMENTED"}; return str; } } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/dump_command.h0000644000175000017500000000444414522641732027370 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_DUMP_COMMAND_H #define RESOURCE_DUMP_DUMP_COMMAND_H #include "resource_dump_command.h" namespace mft { namespace resource_dump { class DumpCommand : public ResourceDumpCommand { public: // File Stream c'tor DumpCommand(device_attributes device_attrs, dump_request segment_params, uint32_t depth, const std::string bin_filename, bool is_textual = false); // Buffer Stream c'tor DumpCommand(device_attributes device_attrs, dump_request segment_params, uint32_t depth, bool is_textual = false); std::string get_big_endian_string(); void reverse_fstream_endianess(); bool validate() override; const std::string to_string() const override; private: bool _allocated_ostream{false}; }; } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_DUMP_COMMAND_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/resource_dump_command.h0000644000175000017500000000531014522641732031270 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_COMMAND_H #define RESOURCE_DUMP_COMMAND_H #include #include #include #include "resource_dump_types.h" #include "fetcher.h" struct mfile_t; namespace mft { namespace resource_dump { struct device_attributes; struct dump_request; class ResourceDumpCommand { public: virtual void execute() final; const size_t get_dumped_size() const; const bool data_fetched() const; const std::vector& get_segment_offsets() const; std::istream& get_native_stream(); protected: ResourceDumpCommand() = default; ResourceDumpCommand(device_attributes device_attrs, dump_request dump_request, uint32_t depth, bool is_textual); virtual ~ResourceDumpCommand(); virtual bool validate() = 0; virtual void parse_data(); friend std::ostream& operator<<(std::ostream& out, const ResourceDumpCommand& command); virtual const std::string to_string() const; mfile_t* _mf; std::unique_ptr _fetcher; std::shared_ptr _ostream; std::shared_ptr _istream; bool _is_textual{false}; bool _data_fetched{false}; size_t _dumped_size{0}; std::vector _segment_offsets; }; } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_COMMAND_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/Makefile.am0000644000175000017500000000466214522641732026612 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) RESOURCE_DUMP_SRC_DIR = $(USER_DIR)/resourcetools/resourcedump_lib/src RD_COMMON_DIR = $(RESOURCE_DUMP_SRC_DIR)/common SEGMENTS_DIR = $(RESOURCE_DUMP_SRC_DIR)/segments FETCHERS_DIR = $(RESOURCE_DUMP_SRC_DIR)/fetchers MTCR_DIR = $(USER_DIR)/${MTCR_CONF_DIR} MTCR_INC_DIR = $(top_srcdir)/include/mtcr_ul AM_CPPFLAGS = -I$(USER_DIR) -I$(RD_COMMON_DIR) -I$(SEGMENTS_DIR) -I$(FETCHERS_DIR) -I$(MTCR_DIR) -I$(MTCR_INC_DIR) noinst_LTLIBRARIES = libresource_dump_commands.la libresource_dump_commands_la_SOURCES = resource_dump_command.h \ resource_dump_command.cpp \ dump_command.h \ dump_command.cpp \ query_command.h \ query_command.cpp libresource_dump_commands_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_commands_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/query_command.cpp0000644000175000017500000000676314522641732030131 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "query_command.h" #include "resource_dump_error_handling.h" #include "resource_dump_types.h" #include "resource_dump_segments.h" #include "utils.h" #include #include #include namespace mft { namespace resource_dump { using namespace std; QueryCommand::QueryCommand(device_attributes device_attrs) : ResourceDumpCommand{device_attrs, dump_request{static_cast(SegmentType::menu)}, 0, false}, _sstream{make_shared()} { _ostream = _sstream; _istream = _sstream; } string QueryCommand::get_big_endian_string() { return get_big_endian_string_impl(*(static_pointer_cast(_sstream))); } bool QueryCommand::validate() { // TODO: go through capability fetcher, also not available in the python version return true; } void QueryCommand::parse_data() { menu_records = RecordList(_sstream->str()); } const string QueryCommand::to_string() const { auto str = string{"PRINT FUNCTION NOT IMPLEMENTED"}; return str; } RecordList::RecordList(string&& retrieved_data) : _full_data(move(retrieved_data)) { uint16_t prefix_size_bytes = sizeof(resource_dump_segment_header) + sizeof(info_segment_data) + sizeof(resource_dump_segment_header) + sizeof(command_segment_data) + sizeof(resource_dump_segment_header); _size = (reinterpret_cast(&_full_data[prefix_size_bytes]))->num_of_records; prefix_size_bytes += sizeof(menu_segment_sub_header); _record_data = reinterpret_cast(&_full_data[prefix_size_bytes]); // Switch endianness of char* to represent strings } const uint16_t RecordList::size() { return _size; } const menu_record_data& RecordList::operator*() { return operator[](0); } const menu_record_data& RecordList::operator[](const uint16_t idx) { if (idx >= _size) { throw ResourceDumpException(ResourceDumpException::Reason::DATA_OVERFLOW); } return _record_data[idx]; } } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/resource_dump_command.cpp0000644000175000017500000001022114522641732031620 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "resource_dump_command.h" #include "resource_dump_types.h" #include "resource_dump_segments.h" #include "resource_dump_error_handling.h" #include "fetcher_factory.h" #include #include namespace mft { namespace resource_dump { using namespace std; ResourceDumpCommand::ResourceDumpCommand(device_attributes device_attrs, dump_request dump_request, uint32_t depth, bool is_textual) : _mf{mopen(device_attrs.device_name)}, _fetcher{fetchers::create_fetcher(_mf, device_attrs, dump_request, depth)}, _is_textual{is_textual} { if (_mf == nullptr) { throw ResourceDumpException(ResourceDumpException::Reason::OPEN_DEVICE_FAILED); } } ResourceDumpCommand::~ResourceDumpCommand() { if (_mf) { mclose(_mf); } } void ResourceDumpCommand::execute() { if (validate()) { _fetcher->set_streams(_ostream, _istream); _fetcher->fetch_data(); _dumped_size = _ostream->tellp(); _fetcher->pre_parse_process(); parse_data(); _fetcher->post_parse_process(); _data_fetched = true; if (_is_textual) { cout << *this; } } } void ResourceDumpCommand::parse_data() { resource_dump_segment_header header_buffer{0}; _istream->seekg(0); for (size_t pos = _istream->tellg(); pos < _dumped_size; pos = _istream->tellg()) { _segment_offsets.push_back(pos); _istream->read(reinterpret_cast(&header_buffer), sizeof(resource_dump_segment_header)); _istream->seekg(header_buffer.length_dw * 4 - sizeof(resource_dump_segment_header), istream::cur); } } const size_t ResourceDumpCommand::get_dumped_size() const { return _dumped_size; } const bool ResourceDumpCommand::data_fetched() const { return _data_fetched; } const std::vector& ResourceDumpCommand::get_segment_offsets() const { return _segment_offsets; } istream& ResourceDumpCommand::get_native_stream() { if (_data_fetched) { _istream->seekg(0); } else { throw ResourceDumpException(ResourceDumpException::Reason::DATA_NOT_FETCHED); } return *_istream; } ostream& operator<<(ostream& out, const ResourceDumpCommand& command) { if (command._is_textual && command._data_fetched) { out << command.to_string() << endl; } else { throw ResourceDumpException(ResourceDumpException::Reason::TEXT_DATA_UNAVAILABLE); } return out; } const string ResourceDumpCommand::to_string() const { auto str = string{"Textual mode not implemented"}; return str; } } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/commands/Makefile.in0000644000175000017500000006374314522641740026627 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools/resourcedump_lib/src/commands DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libresource_dump_commands_la_LIBADD = am_libresource_dump_commands_la_OBJECTS = \ libresource_dump_commands_la-resource_dump_command.lo \ libresource_dump_commands_la-dump_command.lo \ libresource_dump_commands_la-query_command.lo libresource_dump_commands_la_OBJECTS = \ $(am_libresource_dump_commands_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libresource_dump_commands_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libresource_dump_commands_la_SOURCES) DIST_SOURCES = $(libresource_dump_commands_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) RESOURCE_DUMP_SRC_DIR = $(USER_DIR)/resourcetools/resourcedump_lib/src RD_COMMON_DIR = $(RESOURCE_DUMP_SRC_DIR)/common SEGMENTS_DIR = $(RESOURCE_DUMP_SRC_DIR)/segments FETCHERS_DIR = $(RESOURCE_DUMP_SRC_DIR)/fetchers MTCR_DIR = $(USER_DIR)/${MTCR_CONF_DIR} MTCR_INC_DIR = $(top_srcdir)/include/mtcr_ul AM_CPPFLAGS = -I$(USER_DIR) -I$(RD_COMMON_DIR) -I$(SEGMENTS_DIR) -I$(FETCHERS_DIR) -I$(MTCR_DIR) -I$(MTCR_INC_DIR) noinst_LTLIBRARIES = libresource_dump_commands.la libresource_dump_commands_la_SOURCES = resource_dump_command.h \ resource_dump_command.cpp \ dump_command.h \ dump_command.cpp \ query_command.h \ query_command.cpp libresource_dump_commands_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_commands_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/commands/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/commands/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libresource_dump_commands.la: $(libresource_dump_commands_la_OBJECTS) $(libresource_dump_commands_la_DEPENDENCIES) $(EXTRA_libresource_dump_commands_la_DEPENDENCIES) $(AM_V_CXXLD)$(libresource_dump_commands_la_LINK) $(libresource_dump_commands_la_OBJECTS) $(libresource_dump_commands_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_commands_la-dump_command.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_commands_la-query_command.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_commands_la-resource_dump_command.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libresource_dump_commands_la-resource_dump_command.lo: resource_dump_command.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_commands_la-resource_dump_command.lo -MD -MP -MF $(DEPDIR)/libresource_dump_commands_la-resource_dump_command.Tpo -c -o libresource_dump_commands_la-resource_dump_command.lo `test -f 'resource_dump_command.cpp' || echo '$(srcdir)/'`resource_dump_command.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_commands_la-resource_dump_command.Tpo $(DEPDIR)/libresource_dump_commands_la-resource_dump_command.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='resource_dump_command.cpp' object='libresource_dump_commands_la-resource_dump_command.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_commands_la-resource_dump_command.lo `test -f 'resource_dump_command.cpp' || echo '$(srcdir)/'`resource_dump_command.cpp libresource_dump_commands_la-dump_command.lo: dump_command.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_commands_la-dump_command.lo -MD -MP -MF $(DEPDIR)/libresource_dump_commands_la-dump_command.Tpo -c -o libresource_dump_commands_la-dump_command.lo `test -f 'dump_command.cpp' || echo '$(srcdir)/'`dump_command.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_commands_la-dump_command.Tpo $(DEPDIR)/libresource_dump_commands_la-dump_command.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='dump_command.cpp' object='libresource_dump_commands_la-dump_command.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_commands_la-dump_command.lo `test -f 'dump_command.cpp' || echo '$(srcdir)/'`dump_command.cpp libresource_dump_commands_la-query_command.lo: query_command.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_commands_la-query_command.lo -MD -MP -MF $(DEPDIR)/libresource_dump_commands_la-query_command.Tpo -c -o libresource_dump_commands_la-query_command.lo `test -f 'query_command.cpp' || echo '$(srcdir)/'`query_command.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_commands_la-query_command.Tpo $(DEPDIR)/libresource_dump_commands_la-query_command.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='query_command.cpp' object='libresource_dump_commands_la-query_command.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_commands_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_commands_la-query_command.lo `test -f 'query_command.cpp' || echo '$(srcdir)/'`query_command.cpp mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/0000755000175000017500000000000014522641740024547 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/fetcher.h0000644000175000017500000000416614522641732026350 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_FETCHER_S #define RESOURCE_DUMP_FETCHER_S #include #include #include namespace mft { namespace resource_dump { namespace fetchers { using namespace std; class Fetcher { public: virtual ~Fetcher() = default; virtual void set_streams(std::shared_ptr os, std::shared_ptr is) { static_assert(true, "Abstract class, unimplemented"); }; virtual void fetch_data() { static_assert(true, "Abstract class, unimplemented"); }; virtual void pre_parse_process(){}; virtual void post_parse_process(){}; }; } // namespace fetchers } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_FETCHER_S ././@LongLink0000644000000000000000000000014600000000000011604 Lustar rootrootmstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/reg_access_resource_dump_mkey_fetcher.cppmstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/reg_access_resource_dump_mkey_fetcher.cp0000644000175000017500000002327614522641732034665 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "reg_access_resource_dump_mkey_fetcher.h" #include "resource_dump_error_handling.h" #include "resource_dump_types.h" #include "reg_access/reg_access.h" #include #include "adb_to_c_utils.h" #include #include #include #include namespace mft { namespace resource_dump { namespace fetchers { using namespace std; const uint32_t RegAccessResourceDumpMkeyFetcher::BUFF_SIZE{32 * 1024 * 1024}; const uint16_t RegAccessResourceDumpMkeyFetcher::MLX5_CMD_OP_CREATE_MKEY{0x200}; const uint16_t RegAccessResourceDumpMkeyFetcher::MLX5_CMD_OP_DESTROY_MKEY{0x202}; RegAccessResourceDumpMkeyFetcher::RegAccessResourceDumpMkeyFetcher(mfile_t* mfile, device_attributes device_attrs, dump_request segment_params, uint32_t depth) : RegAccessResourceDumpFetcher{mfile, device_attrs, segment_params, depth} { init_ibv_context(device_attrs.rdma_name); _pd = ibv_alloc_pd(_ibv_context); if (!_pd) { throw ResourceDumpException(ResourceDumpException::Reason::MKEY_FETCHER_ALLOC_PD_FAILED); } auto page_size = sysconf(_SC_PAGESIZE); _umem_size = calculate_aligned_buffer_size(page_size); _mkey_buffer = aligned_alloc(page_size, _umem_size); if (!_mkey_buffer) { throw ResourceDumpException(ResourceDumpException::Reason::MKEY_ALLIGNED_ALLOC_FAILED); } memset(_mkey_buffer, 0, _umem_size); init_umem(page_size); init_mkey(); } RegAccessResourceDumpMkeyFetcher::~RegAccessResourceDumpMkeyFetcher() { if (_mkey_obj) { mlx5dv_devx_obj_destroy(_mkey_obj); } if (_umem) { mlx5dv_devx_umem_dereg(_umem); } if (_mkey_buffer) { free(_mkey_buffer); } if (_pd) { ibv_dealloc_pd(_pd); } if (_ibv_context) { ibv_close_device(_ibv_context); } } void RegAccessResourceDumpMkeyFetcher::init_reg_access_layout() { _reg_access_layout = { _segment_params.reference_segment_type, // segment_type _current_seq_num, // seq_num 0, // vhca_id_valid 0, // inline_dump 0, // more_dump 0, // vhca_id _segment_params.segment_params.index1, // index1 _segment_params.segment_params.index2, // index2 _segment_params.segment_params.num_of_obj2, // num_of_obj2 _segment_params.segment_params.num_of_obj1, // num_of_obj1 0, // device_opaque _dv_mkey.lkey, // mkey _umem_size, // size get_umem_address(), // address 0 // inline_data }; if (_vhca != DEFAULT_VHCA) { _reg_access_layout.vhca_id = _vhca; _reg_access_layout.vhca_id_valid = 1; } } void RegAccessResourceDumpMkeyFetcher::reset_reg_access_layout() { _reg_access_layout.segment_type = _segment_params.reference_segment_type; _reg_access_layout.vhca_id = _vhca != DEFAULT_VHCA ? _vhca : 0; _reg_access_layout.vhca_id_valid = _vhca != DEFAULT_VHCA ? 1 : 0; _reg_access_layout.inline_dump = 0; _reg_access_layout.mkey = _dv_mkey.lkey; _reg_access_layout.size = _umem_size; _reg_access_layout.address = get_umem_address(); } void RegAccessResourceDumpMkeyFetcher::write_payload_data_to_ostream() { for (size_t i = 0; i < _reg_access_layout.size / 4; ++i) { auto offset = adb2c_calc_array_field_address(0, 32, i, _reg_access_layout.size, 1); auto dword = adb2c_pop_integer_from_buff(static_cast(_mkey_buffer), offset, 4); _ostream->write(reinterpret_cast(&dword), 4); } } void RegAccessResourceDumpMkeyFetcher::init_ibv_context(const string rdma_name) { struct ibv_device** ibv_device_list = NULL; int num_ibv_devices = 0; int i = 0; struct mlx5dv_context_attr* my_context_attr; my_context_attr = (struct mlx5dv_context_attr*)malloc(sizeof(struct mlx5dv_context_attr)); memset(my_context_attr, 0, sizeof(struct mlx5dv_context_attr)); my_context_attr->flags = MLX5DV_CONTEXT_FLAGS_DEVX; my_context_attr->comp_mask = 0; char device_rdma_name_buffer[32]; memset(device_rdma_name_buffer, 0, 32); try { if (rdma_name == AUTO_RDMA_NAME) { get_pci_dev_rdma(_mf, device_rdma_name_buffer); } else { strncpy(device_rdma_name_buffer, rdma_name.c_str(), 31); } ibv_device_list = ibv_get_device_list(&num_ibv_devices); if (ibv_device_list) { for (i = 0; i < num_ibv_devices; ++i) { if (ibv_device_list[i] != NULL && strcmp(ibv_get_device_name(ibv_device_list[i]), device_rdma_name_buffer) == 0) { _ibv_context = mlx5dv_open_device(ibv_device_list[i], my_context_attr); if (!_ibv_context) { throw ResourceDumpException(ResourceDumpException::Reason::MKEY_FETCHER_MLX5DV_OPEN_FAILED); } return; } } if (!_ibv_context) { throw ResourceDumpException(ResourceDumpException::Reason::MKEY_FETCHER_RDMA_NAME_INVALID); } } else { throw ResourceDumpException(ResourceDumpException::Reason::MKEY_FETCHER_GET_DEVICE_LIST_FAILED); } } catch (...) { if (my_context_attr) { free(my_context_attr); } if (ibv_device_list) { ibv_free_device_list(ibv_device_list); } throw; } free(my_context_attr); ibv_free_device_list(ibv_device_list); return; } void RegAccessResourceDumpMkeyFetcher::init_umem(uint32_t page_size) { auto umem_in = new mlx5dv_devx_umem_in; memset(umem_in, 0, sizeof(mlx5dv_devx_umem_in)); umem_in->addr = _mkey_buffer; umem_in->size = _umem_size; umem_in->access = IBV_ACCESS_LOCAL_WRITE; umem_in->pgsz_bitmap = page_size; _umem = mlx5dv_devx_umem_reg_ex(_ibv_context, umem_in); if (!_umem) { delete umem_in; throw ResourceDumpException(ResourceDumpException::Reason::MKEY_UMEM_REG_FAILED); } delete umem_in; } void RegAccessResourceDumpMkeyFetcher::init_mkey() { uint32_t out[DEVX_ST_SZ_DW(create_mkey_out)] = {}; uint32_t in[DEVX_ST_SZ_DW(create_mkey_in)] = {}; void* mkc; auto pdn = to_mpd(_pd)->pdn; DEVX_SET(create_mkey_in, in, opcode, MLX5_CMD_OP_CREATE_MKEY); mkc = DEVX_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry); DEVX_SET(mkc, mkc, access_mode_1_0, 0x1); DEVX_SET(mkc, mkc, umr_en, 0); DEVX_SET(mkc, mkc, pd, pdn); DEVX_SET(mkc, mkc, lr, 1); DEVX_SET(mkc, mkc, lw, 1); DEVX_SET(mkc, mkc, qpn, 0xffffff); DEVX_SET64(mkc, mkc, start_addr, reinterpret_cast(_mkey_buffer)); DEVX_SET64(mkc, mkc, len, _umem_size); DEVX_SET(create_mkey_in, in, mkey_umem_valid, 1); DEVX_SET(create_mkey_in, in, mkey_umem_id, _umem->umem_id); _mkey_obj = mlx5dv_devx_obj_create(_ibv_context, in, sizeof(in), out, sizeof(out)); if (!_mkey_obj) { printf("mlx5dv_devx_obj_create failed\n"); // TODO: remove these printfs by enhancing error mechanism and add // minor error printf("status: %u\n", DEVX_GET(create_mkey_out, out, status)); printf("syndrome: %u\n", DEVX_GET(create_mkey_out, out, syndrome)); throw ResourceDumpException(ResourceDumpException::Reason::DEVX_OBJ_CREATE_FAILED); } _dv_mkey.lkey = (DEVX_GET(create_mkey_out, out, mkey_index) << 8) | 0; _dv_mkey.rkey = _dv_mkey.lkey; } uint32_t RegAccessResourceDumpMkeyFetcher::calculate_aligned_buffer_size(uint32_t align) { return (BUFF_SIZE + align - 1) & ~(align - 1); } } // namespace fetchers } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/fetcher_factory.cpp0000644000175000017500000000471114522641732030426 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_FETCHER_FACTORY_S #define RESOURCE_DUMP_FETCHER_FACTORY_S #include "reg_access_resource_dump_fetcher.h" #ifndef NO_RDMEM #include "reg_access_resource_dump_mkey_fetcher.h" #endif #include "resource_dump_types.h" #include "resource_dump_error_handling.h" #include namespace mft { namespace resource_dump { namespace fetchers { unique_ptr create_fetcher(mfile_t* mf, device_attributes device_attrs, dump_request dump_request, uint32_t depth) { if (!device_attrs.rdma_name || std::string(device_attrs.rdma_name).size() == 0) { return unique_ptr{new RegAccessResourceDumpFetcher(mf, device_attrs, dump_request, depth)}; } else { #ifndef NO_RDMEM return unique_ptr{new RegAccessResourceDumpMkeyFetcher(mf, device_attrs, dump_request, depth)}; #else throw ResourceDumpException(ResourceDumpException::Reason::OS_NOT_SUPPORTED); #endif } } } // namespace fetchers } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_FETCHER_FACTORY_S mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/reg_access_resource_dump_fetcher.h0000644000175000017500000000624314522641732033460 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_REGACCESS_RESDUMP_H #define RESOURCE_DUMP_REGACCESS_RESDUMP_H #include "fetcher.h" #include "resource_dump_segments.h" #include "tools_layouts/reg_access_hca_layouts.h" #include #include struct mfile_t; namespace mft { namespace resource_dump { struct dump_request; struct device_attributes; namespace fetchers { class RegAccessResourceDumpFetcher : public Fetcher { public: RegAccessResourceDumpFetcher(mfile_t* mfile, device_attributes device_attrs, dump_request segment_params, uint32_t depth = (uint32_t)-1); virtual ~RegAccessResourceDumpFetcher() = default; void set_streams(std::shared_ptr os, std::shared_ptr is) override; // TODO: find a way to integrate into c'tor void fetch_data() override; protected: virtual void init_reg_access_layout(); virtual void reset_reg_access_layout(); virtual void write_payload_data_to_ostream(); mfile_t* _mf; uint16_t _vhca; shared_ptr _ostream; shared_ptr _istream; reference_segment_data _segment_params; reg_access_hca_resource_dump_ext _reg_access_layout{0}; private: void retrieve_from_reg_access(); void validate_reply(); void enable_streams_exceptions(); void restore_streams_exceptions(); static uint32_t calculate_segment_data_size(uint16_t full_size_dw); std::ios::iostate _orig_os_exceptions; std::ios::iostate _orig_is_exceptions; uint32_t _depth; protected: uint8_t _current_seq_num{0}; }; } // namespace fetchers } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_REGACCESS_RESDUMP_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/reg_access_resource_dump_mkey_fetcher.h0000644000175000017500000001365114522641732034506 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_REGACCESS_RESDUMP_MKEY_H #define RESOURCE_DUMP_REGACCESS_RESDUMP_MKEY_H #include "reg_access_resource_dump_fetcher.h" #include #include #include #include struct mfile_t; namespace mft { namespace resource_dump { struct dump_request; namespace fetchers { class RegAccessResourceDumpMkeyFetcher : public RegAccessResourceDumpFetcher { public: RegAccessResourceDumpMkeyFetcher(mfile_t* mfile, device_attributes device_attrs, dump_request segment_params, uint32_t depth = (uint32_t)-1); ~RegAccessResourceDumpMkeyFetcher(); static const uint32_t BUFF_SIZE; private: void init_reg_access_layout() override; void reset_reg_access_layout() override; void write_payload_data_to_ostream() override; static const uint16_t MLX5_CMD_OP_CREATE_MKEY; static const uint16_t MLX5_CMD_OP_DESTROY_MKEY; struct mlx5_ifc_mkc_bits { uint8_t reserved_at_0[0x1]; uint8_t free[0x1]; uint8_t reserved_at_2[0x1]; uint8_t access_mode_4_2[0x3]; uint8_t reserved_at_6[0x7]; uint8_t relaxed_ordering_write[0x1]; uint8_t reserved_at_e[0x1]; uint8_t small_fence_on_rdma_read_response[0x1]; uint8_t umr_en[0x1]; uint8_t a[0x1]; uint8_t rw[0x1]; uint8_t rr[0x1]; uint8_t lw[0x1]; uint8_t lr[0x1]; uint8_t access_mode_1_0[0x2]; uint8_t reserved_at_18[0x8]; uint8_t qpn[0x18]; uint8_t mkey_7_0[0x8]; uint8_t reserved_at_40[0x20]; uint8_t length64[0x1]; uint8_t bsf_en[0x1]; uint8_t sync_umr[0x1]; uint8_t reserved_at_63[0x2]; uint8_t expected_sigerr_count[0x1]; uint8_t reserved_at_66[0x1]; uint8_t en_rinval[0x1]; uint8_t pd[0x18]; uint8_t start_addr[0x40]; uint8_t len[0x40]; uint8_t bsf_octword_size[0x20]; uint8_t reserved_at_120[0x80]; uint8_t translations_octword_size[0x20]; uint8_t reserved_at_1c0[0x19]; uint8_t relaxed_ordering_read[0x1]; uint8_t reserved_at_1d9[0x1]; uint8_t log_page_size[0x5]; uint8_t reserved_at_1e0[0x3]; uint8_t crypto_en[0x2]; uint8_t reserved_at_1e5[0x1b]; }; struct mlx5_ifc_create_mkey_in_bits { uint8_t opcode[0x10]; uint8_t reserved_at_10[0x10]; uint8_t reserved_at_20[0x10]; uint8_t op_mod[0x10]; uint8_t reserved_at_40[0x20]; uint8_t pg_access[0x1]; uint8_t mkey_umem_valid[0x1]; uint8_t reserved_at_62[0x1e]; struct mlx5_ifc_mkc_bits memory_key_mkey_entry; uint8_t reserved_at_280[0x80]; uint8_t translations_octword_actual_size[0x20]; uint8_t mkey_umem_id[0x20]; uint8_t mkey_umem_offset[0x40]; uint8_t reserved_at_320[0x500]; uint8_t klm_pas_mtt[0][0x20]; }; struct mlx5_ifc_create_mkey_out_bits { uint8_t status[0x8]; uint8_t reserved_at_8[0x18]; uint8_t syndrome[0x20]; uint8_t reserved_at_40[0x8]; uint8_t mkey_index[0x18]; uint8_t reserved_at_60[0x20]; }; // ####### Weird code copied from OFED team. Need to understand if there's another way struct mlx5_pd { ibv_pd ibv_pd_obj; uint32_t pdn; int refcount; struct mlx5_pd* mprotection_domain; struct { void* opaque_buf; struct ibv_mr* opaque_mr; pthread_mutex_t opaque_mr_mutex; }; }; inline mlx5_pd* to_mpd(ibv_pd* ibpd) { mlx5_pd* mpd = (struct mlx5_pd*)((char*)ibpd - __builtin_offsetof(struct mlx5_pd, ibv_pd_obj)); return mpd->mprotection_domain ? mpd->mprotection_domain : mpd; } // ####### static uint32_t calculate_aligned_buffer_size(uint32_t align); void init_ibv_context(const string rdma_name); void init_umem(uint32_t page_size); void init_mkey(); uint64_t get_umem_address() { return reinterpret_cast(_mkey_buffer); } ibv_context* _ibv_context{nullptr}; ibv_pd* _pd{nullptr}; void* _mkey_buffer{nullptr}; mlx5dv_devx_umem* _umem{nullptr}; mlx5dv_devx_obj* _mkey_obj{nullptr}; mlx5dv_mkey _dv_mkey{0, 0}; uint32_t _umem_size{0}; }; } // namespace fetchers } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_REGACCESS_RESDUMP_MKEY_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/reg_access_resource_dump_fetcher.cpp0000644000175000017500000001753014522641732034014 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "reg_access_resource_dump_fetcher.h" #include "resource_dump_error_handling.h" #include "resource_dump_types.h" #include "reg_access/reg_access.h" #include #include namespace mft { namespace resource_dump { namespace fetchers { using namespace std; RegAccessResourceDumpFetcher::RegAccessResourceDumpFetcher(mfile_t* mfile, device_attributes device_attrs, dump_request segment_params, uint32_t depth) : _mf{mfile}, _vhca{device_attrs.vhca}, _segment_params{0, 0, {0, 0, 0, 0}}, _depth{depth} { if (!_mf) { throw ResourceDumpException(ResourceDumpException::Reason::OPEN_DEVICE_FAILED); } //_segment_params fields are set after initialization because the struct is different(by include) between big/little // endian host _segment_params.reference_segment_type = segment_params.resource_id; _segment_params.segment_params.index1 = segment_params.index1; _segment_params.segment_params.index2 = segment_params.index2; _segment_params.segment_params.num_of_obj1 = segment_params.num_of_obj1; _segment_params.segment_params.num_of_obj2 = segment_params.num_of_obj2; } void RegAccessResourceDumpFetcher::set_streams(shared_ptr os, shared_ptr is) { _ostream = os; _istream = is; } void RegAccessResourceDumpFetcher::enable_streams_exceptions() { _orig_os_exceptions = _ostream->exceptions(); _orig_is_exceptions = _istream->exceptions(); _ostream->exceptions(iostream::badbit | iostream::failbit); _istream->exceptions(iostream::badbit | iostream::failbit); } void RegAccessResourceDumpFetcher::restore_streams_exceptions() { _ostream->exceptions(_orig_os_exceptions); _istream->exceptions(_orig_is_exceptions); } void RegAccessResourceDumpFetcher::fetch_data() { if (!_istream || !_ostream) { throw ResourceDumpException(ResourceDumpException::Reason::DATA_NOT_FETCHED); } enable_streams_exceptions(); retrieve_from_reg_access(); resource_dump_segment_header header_buffer{0}; uint32_t level{0}; uint32_t prev_level_refs{1}; uint32_t curr_level_refs{0}; try { while (level < _depth && _ostream->tellp() - _istream->tellg() > 0) { _istream->read(reinterpret_cast(&header_buffer), sizeof(resource_dump_segment_header)); if (header_buffer.segment_type == static_cast(SegmentType::reference)) { _istream->read(reinterpret_cast(&_segment_params), sizeof(reference_segment_data)); retrieve_from_reg_access(); ++curr_level_refs; } else { _istream->seekg(calculate_segment_data_size(header_buffer.length_dw), istream::cur); if (header_buffer.segment_type == static_cast(SegmentType::terminate)) { if (--prev_level_refs == 0) { ++level; prev_level_refs = curr_level_refs; curr_level_refs = 0; } } } } } catch (const istream::failure& e) { if (_istream->eof()) { throw ResourceDumpException(ResourceDumpException::Reason::SEGMENT_DATA_TOO_SHORT); } } restore_streams_exceptions(); } void RegAccessResourceDumpFetcher::retrieve_from_reg_access() { init_reg_access_layout(); do { reg_access_status_t res = reg_access_res_dump(_mf, REG_ACCESS_METHOD_GET, &_reg_access_layout); if (res != ME_REG_ACCESS_OK) { throw ResourceDumpException(ResourceDumpException::Reason::SEND_REG_ACCESS_FAILED, res); } // May throw ios::failure write_payload_data_to_ostream(); validate_reply(); reset_reg_access_layout(); } while (_reg_access_layout.more_dump); } void RegAccessResourceDumpFetcher::init_reg_access_layout() { _reg_access_layout = { _segment_params.reference_segment_type, // segment_type _current_seq_num, // seq_num 0, // vhca_id_valid 1, // inline_dump 0, // more_dump 0, // vhca_id _segment_params.segment_params.index1, // index1 _segment_params.segment_params.index2, // index2 _segment_params.segment_params.num_of_obj2, // num_of_obj2 _segment_params.segment_params.num_of_obj1, // num_of_obj1 0, // device_opaque 0, // mkey 0, // size 0, // address {0} // inline_data }; if (_vhca != DEFAULT_VHCA) { _reg_access_layout.vhca_id = _vhca; _reg_access_layout.vhca_id_valid = 1; } } void RegAccessResourceDumpFetcher::validate_reply() { if ((++_current_seq_num) % 16 != _reg_access_layout.seq_num) { throw ResourceDumpException(ResourceDumpException::Reason::WRONG_SEQUENCE_NUMBER); } } void RegAccessResourceDumpFetcher::reset_reg_access_layout() { _reg_access_layout.segment_type = _segment_params.reference_segment_type; _reg_access_layout.vhca_id = _vhca != DEFAULT_VHCA ? _vhca : 0; _reg_access_layout.vhca_id_valid = _vhca != DEFAULT_VHCA ? 1 : 0; _reg_access_layout.inline_dump = 1; _reg_access_layout.mkey = 0; _reg_access_layout.size = 0; _reg_access_layout.address = 0; } void RegAccessResourceDumpFetcher::write_payload_data_to_ostream() { if (_reg_access_layout.size > NUM_INLINE_DATA_DWORDS * 4) { throw ResourceDumpException(ResourceDumpException::Reason::REGISTER_DATA_SIZE_TOO_LONG); } _ostream->write(reinterpret_cast(_reg_access_layout.inline_data), _reg_access_layout.size); return; } uint32_t RegAccessResourceDumpFetcher::calculate_segment_data_size(uint16_t full_size_dw) { return full_size_dw * 4 - sizeof(resource_dump_segment_header); } } // namespace fetchers } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/Makefile.am0000644000175000017500000000522014522641732026603 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) MTCR_DIR = $(USER_DIR)/${MTCR_CONF_DIR} MTCR_INC_DIR = $(top_srcdir)/include/mtcr_ul RESOURCE_DUMP_SRC_DIR = $(USER_DIR)/resourcetools/resourcedump_lib/src RD_COMMON_DIR = $(RESOURCE_DUMP_SRC_DIR)/common SEGMENTS_DIR = $(RESOURCE_DUMP_SRC_DIR)/segments REG_ACCESS_DIR = $(USER_DIR)/reg_access TOOLS_LAYOUT_DIR = $(USER_DIR)/tools_layouts AM_CPPFLAGS = -I$(USER_DIR) -I$(MTCR_DIR) -I$(MTCR_INC_DIR) -I$(TOOLS_LAYOUT_DIR) -I$(REG_ACCESS_DIR) -I$(RD_COMMON_DIR) -I$(SEGMENTS_DIR) # AM_CFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" # AM_CXXFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) noinst_LTLIBRARIES = libreg_access_resource_dump_fetcher.la libreg_access_resource_dump_fetcher_la_SOURCES = \ fetcher.h fetcher_factory.h fetcher_factory.cpp\ reg_access_resource_dump_fetcher.h reg_access_resource_dump_fetcher.cpp if ENABLE_RDMEM libreg_access_resource_dump_fetcher_la_SOURCES += \ reg_access_resource_dump_mkey_fetcher.h reg_access_resource_dump_mkey_fetcher.cpp endif libreg_access_resource_dump_fetcher_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libreg_access_resource_dump_fetcher_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/fetcher_factory.h0000644000175000017500000000356714522641732030103 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_FETCHER_FACTORY_S #define RESOURCE_DUMP_FETCHER_FACTORY_S struct mfile_t; namespace mft { namespace resource_dump { struct device_attributes; struct dump_request; namespace fetchers { class Fetcher; unique_ptr create_fetcher(mfile_t* mf, device_attributes device_attrs, dump_request dump_request, uint32_t depth); } // namespace fetchers } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_FETCHER_FACTORY_S mstflint-4.26.0/resourcetools/resourcedump_lib/src/fetchers/Makefile.in0000644000175000017500000006715614522641740026633 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @ENABLE_RDMEM_TRUE@am__append_1 = \ @ENABLE_RDMEM_TRUE@ reg_access_resource_dump_mkey_fetcher.h reg_access_resource_dump_mkey_fetcher.cpp subdir = resourcetools/resourcedump_lib/src/fetchers DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libreg_access_resource_dump_fetcher_la_LIBADD = am__libreg_access_resource_dump_fetcher_la_SOURCES_DIST = fetcher.h \ fetcher_factory.h fetcher_factory.cpp \ reg_access_resource_dump_fetcher.h \ reg_access_resource_dump_fetcher.cpp \ reg_access_resource_dump_mkey_fetcher.h \ reg_access_resource_dump_mkey_fetcher.cpp @ENABLE_RDMEM_TRUE@am__objects_1 = libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.lo am_libreg_access_resource_dump_fetcher_la_OBJECTS = \ libreg_access_resource_dump_fetcher_la-fetcher_factory.lo \ libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.lo \ $(am__objects_1) libreg_access_resource_dump_fetcher_la_OBJECTS = \ $(am_libreg_access_resource_dump_fetcher_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libreg_access_resource_dump_fetcher_la_LINK = $(LIBTOOL) $(AM_V_lt) \ --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ $(CXXLD) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libreg_access_resource_dump_fetcher_la_SOURCES) DIST_SOURCES = \ $(am__libreg_access_resource_dump_fetcher_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) MTCR_DIR = $(USER_DIR)/${MTCR_CONF_DIR} MTCR_INC_DIR = $(top_srcdir)/include/mtcr_ul RESOURCE_DUMP_SRC_DIR = $(USER_DIR)/resourcetools/resourcedump_lib/src RD_COMMON_DIR = $(RESOURCE_DUMP_SRC_DIR)/common SEGMENTS_DIR = $(RESOURCE_DUMP_SRC_DIR)/segments REG_ACCESS_DIR = $(USER_DIR)/reg_access TOOLS_LAYOUT_DIR = $(USER_DIR)/tools_layouts AM_CPPFLAGS = -I$(USER_DIR) -I$(MTCR_DIR) -I$(MTCR_INC_DIR) -I$(TOOLS_LAYOUT_DIR) -I$(REG_ACCESS_DIR) -I$(RD_COMMON_DIR) -I$(SEGMENTS_DIR) # AM_CFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" # AM_CXXFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) noinst_LTLIBRARIES = libreg_access_resource_dump_fetcher.la libreg_access_resource_dump_fetcher_la_SOURCES = fetcher.h \ fetcher_factory.h fetcher_factory.cpp \ reg_access_resource_dump_fetcher.h \ reg_access_resource_dump_fetcher.cpp $(am__append_1) libreg_access_resource_dump_fetcher_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libreg_access_resource_dump_fetcher_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/fetchers/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/fetchers/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libreg_access_resource_dump_fetcher.la: $(libreg_access_resource_dump_fetcher_la_OBJECTS) $(libreg_access_resource_dump_fetcher_la_DEPENDENCIES) $(EXTRA_libreg_access_resource_dump_fetcher_la_DEPENDENCIES) $(AM_V_CXXLD)$(libreg_access_resource_dump_fetcher_la_LINK) $(libreg_access_resource_dump_fetcher_la_OBJECTS) $(libreg_access_resource_dump_fetcher_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libreg_access_resource_dump_fetcher_la-fetcher_factory.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libreg_access_resource_dump_fetcher_la-fetcher_factory.lo: fetcher_factory.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) $(CXXFLAGS) -MT libreg_access_resource_dump_fetcher_la-fetcher_factory.lo -MD -MP -MF $(DEPDIR)/libreg_access_resource_dump_fetcher_la-fetcher_factory.Tpo -c -o libreg_access_resource_dump_fetcher_la-fetcher_factory.lo `test -f 'fetcher_factory.cpp' || echo '$(srcdir)/'`fetcher_factory.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libreg_access_resource_dump_fetcher_la-fetcher_factory.Tpo $(DEPDIR)/libreg_access_resource_dump_fetcher_la-fetcher_factory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='fetcher_factory.cpp' object='libreg_access_resource_dump_fetcher_la-fetcher_factory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) $(CXXFLAGS) -c -o libreg_access_resource_dump_fetcher_la-fetcher_factory.lo `test -f 'fetcher_factory.cpp' || echo '$(srcdir)/'`fetcher_factory.cpp libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.lo: reg_access_resource_dump_fetcher.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) $(CXXFLAGS) -MT libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.lo -MD -MP -MF $(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.Tpo -c -o libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.lo `test -f 'reg_access_resource_dump_fetcher.cpp' || echo '$(srcdir)/'`reg_access_resource_dump_fetcher.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.Tpo $(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='reg_access_resource_dump_fetcher.cpp' object='libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) $(CXXFLAGS) -c -o libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_fetcher.lo `test -f 'reg_access_resource_dump_fetcher.cpp' || echo '$(srcdir)/'`reg_access_resource_dump_fetcher.cpp libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.lo: reg_access_resource_dump_mkey_fetcher.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) $(CXXFLAGS) -MT libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.lo -MD -MP -MF $(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.Tpo -c -o libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.lo `test -f 'reg_access_resource_dump_mkey_fetcher.cpp' || echo '$(srcdir)/'`reg_access_resource_dump_mkey_fetcher.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.Tpo $(DEPDIR)/libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='reg_access_resource_dump_mkey_fetcher.cpp' object='libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libreg_access_resource_dump_fetcher_la_CXXFLAGS) $(CXXFLAGS) -c -o libreg_access_resource_dump_fetcher_la-reg_access_resource_dump_mkey_fetcher.lo `test -f 'reg_access_resource_dump_mkey_fetcher.cpp' || echo '$(srcdir)/'`reg_access_resource_dump_mkey_fetcher.cpp mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/resourcedump_lib/src/segments/0000755000175000017500000000000014522641732024572 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/segments/resource_dump_segments_le.h0000644000175000017500000000730014522641732032204 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_SEGMENT_H #define RESOURCE_DUMP_SEGMENT_H #include #ifdef __cplusplus namespace mft { namespace resource_dump { #endif #ifdef __cplusplus enum struct SegmentType : uint16_t #else enum SegmentType #endif { notice = 0xfff9, command, terminate, error, reference, info, menu }; typedef struct resource_dump_segment_header { uint16_t segment_type; uint16_t length_dw; } resource_dump_segment_header_t; typedef struct segment_params_data { uint32_t index1; uint32_t index2; uint16_t num_of_obj2; uint16_t num_of_obj1; } segment_params_data_t; typedef struct resource_segment_sub_header { uint32_t index1; uint32_t index2; } resource_segment_sub_header_t; typedef struct notice_segment_data { uint16_t syndrome_id; uint16_t reserved0; uint32_t reserved1; uint32_t reserved2; char notice[32]; } notice_segment_data_t; typedef struct command_segment_data { uint16_t segment_called; uint16_t vhca_id; segment_params_data_t segment_params; } command_segment_data_t; typedef notice_segment_data_t error_segment_data; struct reference_segment_data { uint16_t reference_segment_type; uint16_t reserved; segment_params_data_t segment_params; }; typedef struct info_segment_data { uint8_t dump_version; uint8_t reserved[3]; uint32_t hw_version; uint32_t fw_version; } info_segment_data_t; typedef struct menu_segment_sub_header { uint16_t num_of_records; uint16_t reserved; } menu_segment_sub_header_t; typedef struct menu_record_data { uint16_t segment_type; uint16_t support_index1 : 1; uint16_t must_have_index1 : 1; uint16_t support_index2 : 1; uint16_t must_have_index2 : 1; uint16_t support_num_of_obj1 : 1; uint16_t must_have_num_of_obj1 : 1; uint16_t num_of_obj1_supports_all : 1; uint16_t num_of_obj1_supports_active : 1; uint16_t support_num_of_obj2 : 1; uint16_t must_have_num_of_obj2 : 1; uint16_t num_of_obj2_supports_all : 1; uint16_t num_of_obj2_supports_active : 1; uint16_t reserved : 4; char segment_name[16]; char index1_name[16]; char index2_name[16]; } menu_record_data_t; #ifdef __cplusplus } // namespace resource_dump } // namespace mft #endif #endif // RESOURCE_DUMP_SEGMENT_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/segments/resource_dump_segments_be.h0000644000175000017500000000734214522641732032200 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_SEGMENT_H #define RESOURCE_DUMP_SEGMENT_H #include #ifdef __cplusplus namespace mft { namespace resource_dump { #endif #ifdef __cplusplus enum struct SegmentType : uint16_t #else enum SegmentType #endif { notice = 0xfff9, command, terminate, error, reference, info, menu }; typedef struct resource_dump_segment_header { uint16_t length_dw; uint16_t segment_type; } resource_dump_segment_header_t; typedef struct segment_params_data { uint32_t index1; uint32_t index2; uint16_t num_of_obj1; uint16_t num_of_obj2; } segment_params_data_t; typedef struct resource_segment_sub_header { uint32_t index1; uint32_t index2; } resource_segment_sub_header_t; typedef struct notice_segment_data { uint16_t reserved0; uint16_t syndrome_id; uint32_t reserved1; uint32_t reserved2; char notice[32]; } notice_segment_data_t; typedef struct command_segment_data { uint16_t segment_called; uint16_t vhca_id; segment_params_data_t segment_params; } command_segment_data_t; typedef notice_segment_data_t error_segment_data; struct reference_segment_data { uint16_t reserved; uint16_t reference_segment_type; segment_params_data_t segment_params; }; typedef struct info_segment_data { uint8_t reserved[3]; uint8_t dump_version; uint32_t hw_version; uint32_t fw_version; } info_segment_data_t; typedef struct menu_segment_sub_header { uint16_t reserved; uint16_t num_of_records; } menu_segment_sub_header_t; typedef struct menu_record_data { uint16_t reserved : 3; uint16_t event_supported : 1; uint16_t num_of_obj2_supports_active : 1; uint16_t num_of_obj2_supports_all : 1; uint16_t must_have_num_of_obj2 : 1; uint16_t support_num_of_obj2 : 1; uint16_t num_of_obj1_supports_active : 1; uint16_t num_of_obj1_supports_all : 1; uint16_t must_have_num_of_obj1 : 1; uint16_t support_num_of_obj1 : 1; uint16_t must_have_index2 : 1; uint16_t support_index2 : 1; uint16_t must_have_index1 : 1; uint16_t support_index1 : 1; uint16_t segment_type; char segment_name[16]; char index1_name[16]; char index2_name[16]; } menu_record_data_t; #ifdef __cplusplus } // namespace resource_dump } // namespace mft #endif #endif // RESOURCE_DUMP_SEGMENT_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/segments/resource_dump_segments.h0000644000175000017500000000310214522641732031520 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #if __BYTE_ORDER == __BIG_ENDIAN #include "resource_dump_segments_be.h" #else #include "resource_dump_segments_le.h" #endif mstflint-4.26.0/resourcetools/resourcedump_lib/src/sdk/0000755000175000017500000000000014522641740023525 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/sdk/resource_dump_sdk.h0000644000175000017500000002005314522641732027414 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_SDK_H #define RESOURCE_DUMP_SDK_H #include "resource_dump_segments.h" #include "resource_dump_types.h" #include #include enum result_t { RD_OK = 0, RD_ERROR = 1, RD_FATAL }; #ifdef __cplusplus typedef mft::resource_dump::menu_record_data menu_record_data_t; typedef mft::resource_dump::device_attributes device_attributes_t; typedef mft::resource_dump::dump_request_t dump_request_t; typedef mft::resource_dump::endianess_t_ endianess_t; #endif typedef struct resource_menu_data { /* number of available resources. */ uint16_t num_of_resources; /* see struct definition. * TODO in phaseII, cast to more readable struct with parameter availability enums. */ menu_record_data_t* resources; } resource_menu_data_t; typedef struct resource_dump_data { void* dump_obj; // opaque object, uniquely represents a dump command to the fw and it's reply unsigned char* data; // dump data, returned by resource-dump, or altered by filters uint32_t size; // valid size of the data endianess_t endianess; // endianness of the data, if non-zero value provided by the user, data byte order can be // reversed to match selection } resource_dump_data_t; #ifdef __cplusplus extern "C" { #endif // __cplusplus /* * Function: get_resources_menu * ---------------------------- * Provides a list of all the available resources for a given device. * * device_attrs: represents the input device. * see device_attributes struct definition. * available_resources: the output list of resources with their parameters. * see resource_menu_data struct definition. * endianess: required endianness of the data, data byte order can be reversed to match selection. * * returns: OK if returned a valid result. * Error reason from resource_dump_error_handling.h on error. */ enum result_t get_resources_menu(device_attributes_t device_attrs, resource_menu_data_t* available_resources, endianess_t endianess); /* * Function: dump_resource_to_file * ---------------------------- * Dumps a requested resource into a binary file. * * device_attrs: represents the input device. * see device_attributes struct definition. * dump_request_t: the requested segment to dump, optionally with parameters. * depth: depth of reference segments. * filename: path to the output file. * endianess: required endianness of the data, data byte order can be reversed to match selection. * * returns: OK if returned a valid result. * Error reason from resource_dump_error_handling.h on error. */ enum result_t dump_resource_to_file(device_attributes_t device_attrs, dump_request_t segment_params, uint32_t depth, const char* filename, endianess_t endianess); /* * Function: dump_resource_to_buffer * ---------------------------- * Dumps a requested resource into a binary file. * * device_attrs: represents the input device. * see device_attributes struct definition. * dump_request_t: the requested segment to dump, optionally with parameters. * depth: depth of reference segments. * buffer: buffer for the dump. assuming that the stated size is allocated * buffer_size: allocated size of the provided buffer * endianess: required endianness of the data, data byte order can be reversed to match selection. * * returns: OK if returned a valid result. * Error reason from resource_dump_error_handling.h on error. */ enum result_t dump_resource_to_buffer(device_attributes_t device_attrs, dump_request_t segment_params, uint32_t depth, unsigned char* buffer, size_t buffer_size, endianess_t endianess); /* * Function: create_resource_dump * ---------------------------- * Requests the requested resource from FW, allocates the required buffer and returns it. * * device_attrs: represents the input device. * see device_attributes struct definition. * dump_request_t: the requested segment to dump, optionally with parameters. * depth: depth of reference segments. * dump_data: pointer to the filled dump result data * * returns: OK if returned a valid result. * Error reason from resource_dump_error_handling.h on error. */ enum result_t create_resource_dump(device_attributes_t device_attrs, dump_request_t segment_params, resource_dump_data_t* dump_data, uint32_t depth); /* * Function: destroy_resource_dump create_resource_dump * ---------------------------- * Frees the memory allocated by * * dump_data: a struct filled by create_resource_dump for destruction */ void destroy_resource_dump(resource_dump_data_t dump_data); /* * Function: strip_control_segments * ---------------------------- * Stripts a resource-dump buffer from control segments * * dump_data: pointer to the filled dump result data, changes by the filter application * * returns: a buffer to a sequence of resource-only segments */ enum result_t strip_control_segments(resource_dump_data_t* dump_obj); // /* // * Function: filter_segments // * ---------------------------- // * filters resource-dump buffer according to a list of required segments-ids // * // * dump_buffer: a buffer contains a valid sequence of resource-dump segments // * // * returns: a buffer to the filtered result // */ // unsigned char* filter_segments(unsigned char* dump_buffer, const uint16_t* segment_ids, uint16_t num_ids); /* * Function: get_resource_dump_error * ---------------------------- * returns: an error message of the last error occured. */ const char* get_resource_dump_error(); #ifdef __cplusplus } #endif // __cplusplus #endif // RESOURCE_DUMP_SDK_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/sdk/resource_dump_sdk.cpp0000644000175000017500000002372314522641732027756 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "resource_dump_sdk.h" #include "resource_dump_error_handling.h" #include "resource_dump_types.h" #include "dump_command.h" #include "query_command.h" #include "strip_control_segments_filter.h" #include #include #include #include #include using namespace std; constexpr uint16_t ERROR_MESSAGE_LEN{512}; char _g_resource_dump_last_error_message__[ERROR_MESSAGE_LEN] = {'\0'}; enum result_t get_resources_menu(device_attributes_t device_attrs, resource_menu_data_t* available_resources, endianess_t endianess) { try { mft::resource_dump::QueryCommand query_command{device_attrs}; query_command.execute(); auto record_data_size = sizeof(mft::resource_dump::menu_record_data) * query_command.menu_records.size(); available_resources->num_of_resources = query_command.menu_records.size(); if (__BYTE_ORDER != __BIG_ENDIAN && endianess == endianess_t::RD_BIG_ENDIAN) { auto big_endian_record_data = query_command.get_big_endian_string(); memcpy(available_resources->resources, big_endian_record_data.c_str(), record_data_size); } else { memcpy(available_resources->resources, &(*query_command.menu_records), record_data_size); } } catch (const mft::resource_dump::ResourceDumpException& rde) { strncpy(_g_resource_dump_last_error_message__, rde.what(), ERROR_MESSAGE_LEN - 1); return static_cast(rde.reason); } catch (const std::exception& e) { strncpy(_g_resource_dump_last_error_message__, (string("Unknown General Error: ") + e.what()).c_str(), ERROR_MESSAGE_LEN - 1); return RD_ERROR; } catch (...) { strncpy(_g_resource_dump_last_error_message__, "- FATAL - Unexpected error occured.", ERROR_MESSAGE_LEN - 1); return RD_FATAL; } return RD_OK; } enum result_t dump_resource_to_file(device_attributes_t device_attrs, dump_request_t segment_params, uint32_t depth, const char* filename, endianess_t endianess) { try { mft::resource_dump::DumpCommand dump_command{device_attrs, segment_params, depth, string(filename)}; dump_command.execute(); if (__BYTE_ORDER != __BIG_ENDIAN && endianess == endianess_t::RD_BIG_ENDIAN) { dump_command.reverse_fstream_endianess(); } } catch (const mft::resource_dump::ResourceDumpException& rde) { strncpy(_g_resource_dump_last_error_message__, rde.what(), ERROR_MESSAGE_LEN - 1); return static_cast(rde.reason); } catch (const std::exception& e) { strncpy(_g_resource_dump_last_error_message__, (string("Unknown General Error: ") + e.what()).c_str(), ERROR_MESSAGE_LEN - 1); return RD_ERROR; } catch (...) { strncpy(_g_resource_dump_last_error_message__, "- FATAL - Unexpected error occured.", ERROR_MESSAGE_LEN - 1); return RD_FATAL; } return RD_OK; } const char* get_resource_dump_error() { return _g_resource_dump_last_error_message__; } enum result_t dump_resource_to_buffer(device_attributes_t device_attrs, dump_request_t segment_params, uint32_t depth, unsigned char* buffer, size_t buffer_size, endianess_t endianess) { try { mft::resource_dump::DumpCommand dump_command{device_attrs, segment_params, depth}; dump_command.execute(); const size_t parsed_size = dump_command.get_dumped_size(); if (parsed_size > buffer_size) { throw mft::resource_dump::ResourceDumpException( mft::resource_dump::ResourceDumpException::Reason::BUFFER_TOO_SMALL); } if (__BYTE_ORDER != __BIG_ENDIAN && endianess == endianess_t::RD_BIG_ENDIAN) { auto big_endian_data = dump_command.get_big_endian_string(); memcpy(reinterpret_cast(buffer), big_endian_data.c_str(), parsed_size); } else { istream& parsed_stream = dump_command.get_native_stream(); parsed_stream.read(reinterpret_cast(buffer), parsed_size); } } catch (const mft::resource_dump::ResourceDumpException& rde) { strncpy(_g_resource_dump_last_error_message__, rde.what(), ERROR_MESSAGE_LEN - 1); return static_cast(rde.reason); } catch (const std::exception& e) { strncpy(_g_resource_dump_last_error_message__, (string("Unknown General Error: ") + e.what()).c_str(), ERROR_MESSAGE_LEN - 1); return RD_ERROR; } catch (...) { strncpy(_g_resource_dump_last_error_message__, "- FATAL - Unexpected error occured.", ERROR_MESSAGE_LEN - 1); return RD_FATAL; } return RD_OK; } enum result_t create_resource_dump(device_attributes_t device_attrs, dump_request_t segment_params, resource_dump_data_t* dump_data, uint32_t depth) { try { auto dump_command = new mft::resource_dump::DumpCommand{device_attrs, segment_params, depth}; dump_command->execute(); istream& parsed_stream = dump_command->get_native_stream(); const size_t parsed_size = dump_command->get_dumped_size(); dump_data->dump_obj = static_cast(dump_command); dump_data->data = new unsigned char[parsed_size]; if (__BYTE_ORDER != __BIG_ENDIAN && dump_data->endianess == endianess_t::RD_BIG_ENDIAN) { auto big_endian_data = dump_command->get_big_endian_string(); memcpy(dump_data->data, big_endian_data.c_str(), parsed_size); } else { parsed_stream.read(reinterpret_cast(dump_data->data), parsed_size); } dump_data->size = parsed_size; return RD_OK; } catch (const mft::resource_dump::ResourceDumpException& rde) { strncpy(_g_resource_dump_last_error_message__, rde.what(), ERROR_MESSAGE_LEN - 1); return static_cast(rde.reason); } catch (const std::exception& e) { strncpy(_g_resource_dump_last_error_message__, (string("Unknown General Error: ") + e.what()).c_str(), ERROR_MESSAGE_LEN - 1); return RD_ERROR; } catch (...) { strncpy(_g_resource_dump_last_error_message__, "- FATAL - Unexpected error occured.", ERROR_MESSAGE_LEN - 1); return RD_FATAL; } return RD_OK; } void destroy_resource_dump(resource_dump_data_t dump_data) { if (dump_data.data) { delete[] dump_data.data; } if (dump_data.dump_obj) { auto dump_command = static_cast(dump_data.dump_obj); delete dump_command; } } enum result_t strip_control_segments(resource_dump_data_t* dump_data) { try { auto dump_command = static_cast(dump_data->dump_obj); mft::resource_dump::filters::StripControlSegmentsFilter filter{*dump_command}; auto filtered_view = filter.apply(); if (__BYTE_ORDER != __BIG_ENDIAN && dump_data->endianess == endianess_t::RD_BIG_ENDIAN) { auto big_endian_data = filter.get_big_endian_string(); memcpy(dump_data->data, big_endian_data.c_str(), big_endian_data.size() + 1); } else { filtered_view.filtered_stream.read(reinterpret_cast(dump_data->data), filtered_view.size); } dump_data->size = filtered_view.size; } catch (const mft::resource_dump::ResourceDumpException& rde) { strncpy(_g_resource_dump_last_error_message__, rde.what(), ERROR_MESSAGE_LEN - 1); return static_cast(rde.reason); } catch (const std::exception& e) { strncpy(_g_resource_dump_last_error_message__, (string("Unknown General Error: ") + e.what()).c_str(), ERROR_MESSAGE_LEN - 1); return RD_ERROR; } catch (...) { strncpy(_g_resource_dump_last_error_message__, "- FATAL - Unexpected error occured.", ERROR_MESSAGE_LEN - 1); return RD_FATAL; } return RD_OK; } mstflint-4.26.0/resourcetools/resourcedump_lib/src/sdk/Makefile.am0000644000175000017500000001007214522641732025562 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/commands \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/common \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/fetchers \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/filters \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/segments noinst_LTLIBRARIES = libresource_dump_sdk.la libresource_dump_sdk_la_SOURCES = resource_dump_sdk.h resource_dump_sdk.cpp libresource_dump_sdk_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_sdk_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) resource_dump_sdk_sodir = $(libdir)/mstflint/sdk # if !WIN_BUILD resource_dump_sdk_so_DATA = libresource_dump_sdk.so # else # resource_dump_sdk_so_DATA = libresource_dump_sdk.dll # endif libraryincludedir=$(includedir)/mstflint/sdk/ libraryinclude_HEADERS = \ resource_dump_sdk.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/segments/resource_dump_segments.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/segments/resource_dump_segments_le.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/segments/resource_dump_segments_be.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/common/resource_dump_types.h # if WIN_BUILD # MTCR_LIB = $(MTCR_DIR)/.libs/libmtcr.dll.a # else MTCR_LIB = $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a # endif if ENABLE_RDMEM OFED_LIBS = -libverbs -lmlx5 else OFED_LIBS = endif resource_dump_sdk_so_DEPS = \ $(top_builddir)/resourcetools/resourcedump_lib/src/commands/.libs/libresource_dump_commands.a \ $(top_builddir)/resourcetools/resourcedump_lib/src/fetchers/.libs/libreg_access_resource_dump_fetcher.a \ $(top_builddir)/resourcetools/resourcedump_lib/src/filters/.libs/libresource_dump_filters.a \ $(top_builddir)/resourcetools/resourcedump_lib/src/common/.libs/libresource_dump_common.a \ $(top_builddir)/reg_access/.libs/libreg_access.a \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a \ $(MTCR_LIB) \ $(OFED_LIBS) \ -lstdc++ # if !WIN_BUILD libresource_dump_sdk.so: libresource_dump_sdk.la $(CC) -Wall -pthread -shared ${CFLAGS} $(COMPILER_FPIC) libresource_dump_sdk_la-resource_dump_sdk.o \ -o libresource_dump_sdk.so ${AM_LDFLAGS} $(resource_dump_sdk_so_DEPS) # else # libresource_dump_sdk.dll: libresource_dump_sdk.la # $(CC) -Wall -pthread -shared -Wl,--no-undefined,--enable-runtime-pseudo-reloc ${CFLAGS} $(COMPILER_FPIC) libresource_dump_sdk_la-resource_dump_sdk.o \ # -o libresource_dump_sdk.dll ${AM_LDFLAGS} $(resource_dump_sdk_so_DEPS) -lws2_32 # endif CLEANFILES = $(resource_dump_sdk_so_DATA) mstflint-4.26.0/resourcetools/resourcedump_lib/src/sdk/Makefile.in0000644000175000017500000007023014522641740025574 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools/resourcedump_lib/src/sdk DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(libraryinclude_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libresource_dump_sdk_la_LIBADD = am_libresource_dump_sdk_la_OBJECTS = \ libresource_dump_sdk_la-resource_dump_sdk.lo libresource_dump_sdk_la_OBJECTS = \ $(am_libresource_dump_sdk_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libresource_dump_sdk_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libresource_dump_sdk_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libresource_dump_sdk_la_SOURCES) DIST_SOURCES = $(libresource_dump_sdk_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(resource_dump_sdk_sodir)" \ "$(DESTDIR)$(libraryincludedir)" DATA = $(resource_dump_sdk_so_DATA) HEADERS = $(libraryinclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/commands \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/common \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/fetchers \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/filters \ -I$(top_srcdir)/resourcetools/resourcedump_lib/src/segments noinst_LTLIBRARIES = libresource_dump_sdk.la libresource_dump_sdk_la_SOURCES = resource_dump_sdk.h resource_dump_sdk.cpp libresource_dump_sdk_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_sdk_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) resource_dump_sdk_sodir = $(libdir)/mstflint/sdk # if !WIN_BUILD resource_dump_sdk_so_DATA = libresource_dump_sdk.so # else # resource_dump_sdk_so_DATA = libresource_dump_sdk.dll # endif libraryincludedir = $(includedir)/mstflint/sdk/ libraryinclude_HEADERS = \ resource_dump_sdk.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/segments/resource_dump_segments.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/segments/resource_dump_segments_le.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/segments/resource_dump_segments_be.h \ $(top_srcdir)/resourcetools/resourcedump_lib/src/common/resource_dump_types.h # if WIN_BUILD # MTCR_LIB = $(MTCR_DIR)/.libs/libmtcr.dll.a # else MTCR_LIB = $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a @ENABLE_RDMEM_FALSE@OFED_LIBS = # endif @ENABLE_RDMEM_TRUE@OFED_LIBS = -libverbs -lmlx5 resource_dump_sdk_so_DEPS = \ $(top_builddir)/resourcetools/resourcedump_lib/src/commands/.libs/libresource_dump_commands.a \ $(top_builddir)/resourcetools/resourcedump_lib/src/fetchers/.libs/libreg_access_resource_dump_fetcher.a \ $(top_builddir)/resourcetools/resourcedump_lib/src/filters/.libs/libresource_dump_filters.a \ $(top_builddir)/resourcetools/resourcedump_lib/src/common/.libs/libresource_dump_common.a \ $(top_builddir)/reg_access/.libs/libreg_access.a \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a \ $(MTCR_LIB) \ $(OFED_LIBS) \ -lstdc++ # else # libresource_dump_sdk.dll: libresource_dump_sdk.la # $(CC) -Wall -pthread -shared -Wl,--no-undefined,--enable-runtime-pseudo-reloc ${CFLAGS} $(COMPILER_FPIC) libresource_dump_sdk_la-resource_dump_sdk.o \ # -o libresource_dump_sdk.dll ${AM_LDFLAGS} $(resource_dump_sdk_so_DEPS) -lws2_32 # endif CLEANFILES = $(resource_dump_sdk_so_DATA) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/sdk/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/sdk/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libresource_dump_sdk.la: $(libresource_dump_sdk_la_OBJECTS) $(libresource_dump_sdk_la_DEPENDENCIES) $(EXTRA_libresource_dump_sdk_la_DEPENDENCIES) $(AM_V_CXXLD)$(libresource_dump_sdk_la_LINK) $(libresource_dump_sdk_la_OBJECTS) $(libresource_dump_sdk_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_sdk_la-resource_dump_sdk.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libresource_dump_sdk_la-resource_dump_sdk.lo: resource_dump_sdk.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_sdk_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_sdk_la-resource_dump_sdk.lo -MD -MP -MF $(DEPDIR)/libresource_dump_sdk_la-resource_dump_sdk.Tpo -c -o libresource_dump_sdk_la-resource_dump_sdk.lo `test -f 'resource_dump_sdk.cpp' || echo '$(srcdir)/'`resource_dump_sdk.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_sdk_la-resource_dump_sdk.Tpo $(DEPDIR)/libresource_dump_sdk_la-resource_dump_sdk.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='resource_dump_sdk.cpp' object='libresource_dump_sdk_la-resource_dump_sdk.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_sdk_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_sdk_la-resource_dump_sdk.lo `test -f 'resource_dump_sdk.cpp' || echo '$(srcdir)/'`resource_dump_sdk.cpp mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-resource_dump_sdk_soDATA: $(resource_dump_sdk_so_DATA) @$(NORMAL_INSTALL) @list='$(resource_dump_sdk_so_DATA)'; test -n "$(resource_dump_sdk_sodir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(resource_dump_sdk_sodir)'"; \ $(MKDIR_P) "$(DESTDIR)$(resource_dump_sdk_sodir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(resource_dump_sdk_sodir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(resource_dump_sdk_sodir)" || exit $$?; \ done uninstall-resource_dump_sdk_soDATA: @$(NORMAL_UNINSTALL) @list='$(resource_dump_sdk_so_DATA)'; test -n "$(resource_dump_sdk_sodir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(resource_dump_sdk_sodir)'; $(am__uninstall_files_from_dir) install-libraryincludeHEADERS: $(libraryinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(libraryinclude_HEADERS)'; test -n "$(libraryincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libraryincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libraryincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libraryincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libraryincludedir)" || exit $$?; \ done uninstall-libraryincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libraryinclude_HEADERS)'; test -n "$(libraryincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(libraryincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(resource_dump_sdk_sodir)" "$(DESTDIR)$(libraryincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-libraryincludeHEADERS \ install-resource_dump_sdk_soDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libraryincludeHEADERS \ uninstall-resource_dump_sdk_soDATA .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libraryincludeHEADERS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-resource_dump_sdk_soDATA install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am \ uninstall-libraryincludeHEADERS \ uninstall-resource_dump_sdk_soDATA # if !WIN_BUILD libresource_dump_sdk.so: libresource_dump_sdk.la $(CC) -Wall -pthread -shared ${CFLAGS} $(COMPILER_FPIC) libresource_dump_sdk_la-resource_dump_sdk.o \ -o libresource_dump_sdk.so ${AM_LDFLAGS} $(resource_dump_sdk_so_DEPS) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/resourcedump_lib/src/Makefile.am0000644000175000017500000000265714522641732025013 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. SUBDIRS = common fetchers commands filters sdk mstflint-4.26.0/resourcetools/resourcedump_lib/src/common/0000755000175000017500000000000014522641740024234 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/common/resource_dump_error_handling.cpp0000644000175000017500000001111314522641732032667 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "resource_dump_error_handling.h" #include namespace mft { namespace resource_dump { using namespace std; ResourceDumpException::ResourceDumpException(Reason r, uint32_t m) : reason{r}, minor{m} { switch (reason) { case Reason::OPEN_DEVICE_FAILED: message = "Failed openning device."; break; case Reason::TEXT_DATA_UNAVAILABLE: message = "Command is not in textual mode or data has not fetched."; break; case Reason::STREAMS_UNINITIALIZED: message = "Fetch data operation was executed, before initializing fetcher streams."; break; case Reason::OPEN_FILE_FAILED: message = "Failed to create the binary file in the provided path."; break; case Reason::DATA_NOT_FETCHED: message = "This operation can only be done, after fetching data."; break; case Reason::OPERATION_INVALID_BUFFER_MODE: message = "This operation is not eligible for dump to a buffer (only to a file)."; break; case Reason::OS_NOT_SUPPORTED: message = "This operation is not supported for this OS."; break; case Reason::SEND_REG_ACCESS_FAILED: message = "Access register request to device failed. FW error code: " + to_string(minor); break; case Reason::WRONG_SEQUENCE_NUMBER: message = "Wrong sequence number received from device, or packet lost."; break; case Reason::REGISTER_DATA_SIZE_TOO_LONG: message = "RD/MORD size field is too long."; break; case Reason::SEGMENT_DATA_TOO_SHORT: message = "Segment data is shorter than segment size field, or segment header is too short, or reference segment is too short."; break; case Reason::DATA_OVERFLOW: message = "Illegal access to dumped data."; break; case Reason::BUFFER_TOO_SMALL: message = "Not enough memory was allocated to retrieve the dump."; break; case Reason::MKEY_FETCHER_GET_DEVICE_LIST_FAILED: message = "ibv_get_device_list failed."; break; case Reason::MKEY_FETCHER_MLX5DV_OPEN_FAILED: message = "mlx5dv_open_device failed."; break; case Reason::MKEY_FETCHER_RDMA_NAME_INVALID: message = "rdma_name provided is invalid or not found by driver."; break; case Reason::MKEY_FETCHER_ALLOC_PD_FAILED: message = "ibv_alloc_pd failed."; break; case Reason::MKEY_ALLIGNED_ALLOC_FAILED: message = "posix_memalign failed."; break; case Reason::MKEY_UMEM_REG_FAILED: message = "mlx5dv_devx_umem_reg failed."; break; case Reason::DEVX_OBJ_CREATE_FAILED: message = "mlx5dv_devx_obj_create failed."; break; default: message = "Unknown error has occured."; break; } } const char* ResourceDumpException::what() const noexcept { return message.c_str(); } } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/common/utils.h0000644000175000017500000000457014522641732025554 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESDUMP_UTILS_H #define RESDUMP_UTILS_H #include #include #include #include namespace mft { namespace resource_dump { using namespace std; template std::string get_big_endian_string_impl(ISTREAM& is, OSTREAM& os) { stringstream be_stream; is.seekg(0); union { char as_bytes[4]; uint32_t as_int; } dword; for (typename OSTREAM::pos_type i = 0; i < os.tellp() / 4; i += 1) { is.read(dword.as_bytes, 4); if (__BYTE_ORDER != __BIG_ENDIAN) { dword.as_int = __cpu_to_be32(dword.as_int); } be_stream.write(dword.as_bytes, 4); } return be_stream.str(); } template std::string get_big_endian_string_impl(STREAM& str) { return get_big_endian_string_impl(str, str); } } // namespace resource_dump } // namespace mft #endif // RESDUMP_UTILS_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/common/resource_dump_types.h0000644000175000017500000000507014522641732030510 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESDUMP_TYPES_H #define RESDUMP_TYPES_H #include #ifdef __cplusplus namespace mft { namespace resource_dump { #endif enum arg_require_t { NA = 0, OPT, REQUIRED }; enum arg_attr_t { ANA = 0, ALL, ACTIVE }; #ifdef __cplusplus constexpr const char* AUTO_RDMA_NAME = "__AUTO__"; constexpr uint8_t NUM_INLINE_DATA_DWORDS = 52; constexpr uint16_t DEFAULT_VHCA = (uint16_t)-1; #else #define AUTO_RDMA_NAME "__AUTO__" #define NUM_INLINE_DATA_DWORDS 52 #define DEFAULT_VHCA ((uint16_t)-1) #endif typedef struct device_attributes { const char* device_name; // MST or PCI format uint16_t vhca; const char* rdma_name; // RDMA for mkey. If given the resource will be dumped im memory mode. } device_attributes_t; typedef struct dump_request { uint16_t resource_id; uint32_t index1; uint32_t index2; uint16_t num_of_obj1; uint16_t num_of_obj2; } dump_request_t; typedef enum endianess_t_ #ifdef __cplusplus : uint8_t #endif { NATIVE = 0, RD_BIG_ENDIAN, RD_LITTLE_ENDIAN } endianess_t; #ifdef __cplusplus } // namespace resource_dump } // namespace mft #endif #endif // RESDUMP_TYPES_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/common/Makefile.am0000644000175000017500000000413014522641732026267 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in # USER_DIR = $(top_srcdir) # COMMON_DIR = $(USER_DIR)/common # MTCR_DIR = $(USER_DIR)/${MTCR_CONFIG_DIR} # UTILS_DIR = $(USER_DIR)/mft_utils # AM_CFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" # AM_CXXFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) noinst_LTLIBRARIES = libresource_dump_common.la libresource_dump_common_la_SOURCES = resource_dump_error_handling.h \ resource_dump_error_handling.cpp resource_dump_constants.h libresource_dump_common_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_common_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) mstflint-4.26.0/resourcetools/resourcedump_lib/src/common/Makefile.in0000644000175000017500000005546514522641740026320 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in # USER_DIR = $(top_srcdir) # COMMON_DIR = $(USER_DIR)/common # MTCR_DIR = $(USER_DIR)/${MTCR_CONFIG_DIR} # UTILS_DIR = $(USER_DIR)/mft_utils # AM_CFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" # AM_CXXFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools/resourcedump_lib/src/common DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libresource_dump_common_la_LIBADD = am_libresource_dump_common_la_OBJECTS = \ libresource_dump_common_la-resource_dump_error_handling.lo libresource_dump_common_la_OBJECTS = \ $(am_libresource_dump_common_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libresource_dump_common_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libresource_dump_common_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libresource_dump_common_la_SOURCES) DIST_SOURCES = $(libresource_dump_common_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libresource_dump_common.la libresource_dump_common_la_SOURCES = resource_dump_error_handling.h \ resource_dump_error_handling.cpp resource_dump_constants.h libresource_dump_common_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_common_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/common/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/common/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libresource_dump_common.la: $(libresource_dump_common_la_OBJECTS) $(libresource_dump_common_la_DEPENDENCIES) $(EXTRA_libresource_dump_common_la_DEPENDENCIES) $(AM_V_CXXLD)$(libresource_dump_common_la_LINK) $(libresource_dump_common_la_OBJECTS) $(libresource_dump_common_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_common_la-resource_dump_error_handling.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libresource_dump_common_la-resource_dump_error_handling.lo: resource_dump_error_handling.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_common_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_common_la-resource_dump_error_handling.lo -MD -MP -MF $(DEPDIR)/libresource_dump_common_la-resource_dump_error_handling.Tpo -c -o libresource_dump_common_la-resource_dump_error_handling.lo `test -f 'resource_dump_error_handling.cpp' || echo '$(srcdir)/'`resource_dump_error_handling.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_common_la-resource_dump_error_handling.Tpo $(DEPDIR)/libresource_dump_common_la-resource_dump_error_handling.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='resource_dump_error_handling.cpp' object='libresource_dump_common_la-resource_dump_error_handling.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_common_la-resource_dump_error_handling.lo `test -f 'resource_dump_error_handling.cpp' || echo '$(srcdir)/'`resource_dump_error_handling.cpp mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/resourcedump_lib/src/common/resource_dump_error_handling.h0000644000175000017500000000526714522641732032351 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_ERROR_HANDLING_H #define RESOURCE_DUMP_ERROR_HANDLING_H #include #include #include namespace mft { namespace resource_dump { class ResourceDumpException : public std::exception { public: enum struct Reason { TEXT_DATA_UNAVAILABLE = 0x100, STREAMS_UNINITIALIZED, OPEN_FILE_FAILED, DATA_NOT_FETCHED, OPERATION_INVALID_BUFFER_MODE, OS_NOT_SUPPORTED, OPEN_DEVICE_FAILED = 0x200, SEND_REG_ACCESS_FAILED, WRONG_SEQUENCE_NUMBER, REGISTER_DATA_SIZE_TOO_LONG = 0x300, SEGMENT_DATA_TOO_SHORT, DATA_OVERFLOW = 0x400, BUFFER_TOO_SMALL, MKEY_FETCHER_GET_DEVICE_LIST_FAILED = 0x500, MKEY_FETCHER_MLX5DV_OPEN_FAILED, MKEY_FETCHER_RDMA_NAME_INVALID, MKEY_FETCHER_ALLOC_PD_FAILED, MKEY_ALLIGNED_ALLOC_FAILED, MKEY_UMEM_REG_FAILED, DEVX_OBJ_CREATE_FAILED, UNKNOWN = (uint16_t)-1 }; const Reason reason; const uint32_t minor; std::string message; ResourceDumpException(Reason r = Reason::UNKNOWN, uint32_t minor = 0); const char* what() const noexcept override; }; } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_ERROR_HANDLING_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/0000755000175000017500000000000014522641740024414 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/include_exclude_segments_filter.cpp0000644000175000017500000000667014522641732033540 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "include_exclude_segments_filter.h" #include "resource_dump_error_handling.h" #include "resource_dump_segments.h" #include "resource_dump_command.h" #include "utils.h" #include #include namespace mft { namespace resource_dump { namespace filters { using namespace std; IncludeExcludeSegmentsFilter::IncludeExcludeSegmentsFilter(ResourceDumpCommand& command, const vector selected_segment_ids, bool include) : Filter{command}, _selected_segment_ids{selected_segment_ids}, _include{include}, _filtered_stream() { } string IncludeExcludeSegmentsFilter::get_big_endian_string() { return get_big_endian_string_impl(_filtered_stream); } Filter::FilteredView IncludeExcludeSegmentsFilter::_apply() { resource_dump_segment_header header_buffer{0}; istream& parsed_istream = _command.get_native_stream(); bool include; for (auto segment_offset : _command.get_segment_offsets()) { parsed_istream.seekg(segment_offset); parsed_istream.read(reinterpret_cast(&header_buffer), sizeof(resource_dump_segment_header)); include = find(_selected_segment_ids.cbegin(), _selected_segment_ids.cend(), header_buffer.segment_type) != _selected_segment_ids.cend(); include = _include ? include : !include; if (include) { _filtered_stream.write(reinterpret_cast(&header_buffer), sizeof(resource_dump_segment_header)); uint16_t segment_payload_size = 4 * header_buffer.length_dw - sizeof(resource_dump_segment_header); copy_n(istreambuf_iterator(parsed_istream), segment_payload_size, ostreambuf_iterator(_filtered_stream)); } } Filter::FilteredView ret{_filtered_stream}; ret.size = _filtered_stream.tellp(); return ret; } } // namespace filters } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/strip_control_segments_filter.h0000644000175000017500000000367214522641732032751 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_STRIPT_CONTROL_SEGMENTS_FILTER_H #define RESOURCE_DUMP_STRIPT_CONTROL_SEGMENTS_FILTER_H #include "include_exclude_segments_filter.h" #include #include namespace mft { namespace resource_dump { namespace filters { class StripControlSegmentsFilter : public IncludeExcludeSegmentsFilter { public: StripControlSegmentsFilter(ResourceDumpCommand& command); }; } // namespace filters } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_STRIPT_CONTROL_SEGMENTS_FILTER_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/strip_control_segments_filter.cpp0000644000175000017500000000413714522641732033301 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "strip_control_segments_filter.h" #include "resource_dump_segments.h" #include namespace mft { namespace resource_dump { namespace filters { using namespace std; StripControlSegmentsFilter::StripControlSegmentsFilter(ResourceDumpCommand& command) : IncludeExcludeSegmentsFilter{ command, vector{static_cast(SegmentType::notice), static_cast(SegmentType::command), static_cast(SegmentType::terminate), static_cast(SegmentType::error), static_cast(SegmentType::info)}, false} { } } // namespace filters } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/include_exclude_segments_filter.h0000644000175000017500000000434114522641732033176 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_INCLUDE_EXCLUDE_FETCHER_H #define RESOURCE_DUMP_INCLUDE_EXCLUDE_FETCHER_H #include "filter.h" #include #include #include namespace mft { namespace resource_dump { namespace filters { class IncludeExcludeSegmentsFilter : public Filter { public: IncludeExcludeSegmentsFilter(ResourceDumpCommand& command, const std::vector selected_segment_ids, bool include = true); std::string get_big_endian_string(); protected: FilteredView _apply() override; const std::vector _selected_segment_ids; bool _include; std::stringstream _filtered_stream; }; } // namespace filters } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_INCLUDE_EXCLUDE_FETCHER_H mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/filter.cpp0000644000175000017500000000376314522641732026417 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "filter.h" #include "resource_dump_error_handling.h" #include "resource_dump_command.h" namespace mft { namespace resource_dump { namespace filters { using namespace std; Filter::Filter(ResourceDumpCommand& command) : _command(command) {} Filter::FilteredView Filter::apply() { if (!_command.data_fetched()) { throw ResourceDumpException(ResourceDumpException::Reason::DATA_NOT_FETCHED); } return _apply(); } Filter::FilteredView::FilteredView(istream& is) : filtered_stream(is) {} } // namespace filters } // namespace resource_dump } // namespace mft mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/filter.h0000644000175000017500000000400414522641732026051 0ustar tzafrirctzafrirc/* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef RESOURCE_DUMP_FILTER_S #define RESOURCE_DUMP_FILTER_S #include namespace mft { namespace resource_dump { class ResourceDumpCommand; namespace filters { class Filter { public: struct FilteredView { FilteredView(std::istream&); std::istream& filtered_stream; size_t size{0}; }; Filter(ResourceDumpCommand& command); FilteredView apply(); protected: virtual FilteredView _apply() = 0; ResourceDumpCommand& _command; public: }; } // namespace filters } // namespace resource_dump } // namespace mft #endif // RESOURCE_DUMP_FILTER_S mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/Makefile.am0000644000175000017500000000530314522641732026452 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) #MTCR_DIR = $(USER_DIR)/${MTCR_CONFIG_DIR} RESOURCE_DUMP_SRC_DIR = $(USER_DIR)/resourcetools/resourcedump_lib/src RD_COMMON_DIR = $(RESOURCE_DUMP_SRC_DIR)/common COMMANDS_DIR = $(RESOURCE_DUMP_SRC_DIR)/commands FETCHERS_DIR = $(RESOURCE_DUMP_SRC_DIR)/fetchers SEGMENTS_DIR = $(RESOURCE_DUMP_SRC_DIR)/segments #REG_ACCESS_DIR = $(USER_DIR)/reg_access #TOOLS_LAYOUT_DIR = $(USER_DIR)/tools_layout AM_CPPFLAGS = -I$(USER_DIR) -I$(COMMANDS_DIR) -I$(FETCHERS_DIR) -I$(RD_COMMON_DIR) -I$(SEGMENTS_DIR) # AM_CFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" # AM_CXXFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) noinst_LTLIBRARIES = libresource_dump_filters.la libresource_dump_filters_la_SOURCES = filter.h \ filter.cpp \ include_exclude_segments_filter.h \ include_exclude_segments_filter.cpp \ strip_control_segments_filter.h \ strip_control_segments_filter.cpp libresource_dump_filters_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_filters_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) mstflint-4.26.0/resourcetools/resourcedump_lib/src/filters/Makefile.in0000644000175000017500000006477514522641740026504 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools/resourcedump_lib/src/filters DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libresource_dump_filters_la_LIBADD = am_libresource_dump_filters_la_OBJECTS = \ libresource_dump_filters_la-filter.lo \ libresource_dump_filters_la-include_exclude_segments_filter.lo \ libresource_dump_filters_la-strip_control_segments_filter.lo libresource_dump_filters_la_OBJECTS = \ $(am_libresource_dump_filters_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libresource_dump_filters_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libresource_dump_filters_la_SOURCES) DIST_SOURCES = $(libresource_dump_filters_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) #MTCR_DIR = $(USER_DIR)/${MTCR_CONFIG_DIR} RESOURCE_DUMP_SRC_DIR = $(USER_DIR)/resourcetools/resourcedump_lib/src RD_COMMON_DIR = $(RESOURCE_DUMP_SRC_DIR)/common COMMANDS_DIR = $(RESOURCE_DUMP_SRC_DIR)/commands FETCHERS_DIR = $(RESOURCE_DUMP_SRC_DIR)/fetchers SEGMENTS_DIR = $(RESOURCE_DUMP_SRC_DIR)/segments #REG_ACCESS_DIR = $(USER_DIR)/reg_access #TOOLS_LAYOUT_DIR = $(USER_DIR)/tools_layout AM_CPPFLAGS = -I$(USER_DIR) -I$(COMMANDS_DIR) -I$(FETCHERS_DIR) -I$(RD_COMMON_DIR) -I$(SEGMENTS_DIR) # AM_CFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" # AM_CXXFLAGS = -Wall -W -MP -MD -pipe -Werror $(COMPILER_FPIC) noinst_LTLIBRARIES = libresource_dump_filters.la libresource_dump_filters_la_SOURCES = filter.h \ filter.cpp \ include_exclude_segments_filter.h \ include_exclude_segments_filter.cpp \ strip_control_segments_filter.h \ strip_control_segments_filter.cpp libresource_dump_filters_la_CFLAGS = $(AM_CFLAGS) $(COMPILER_FPIC) libresource_dump_filters_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMPILER_FPIC) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/filters/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/filters/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libresource_dump_filters.la: $(libresource_dump_filters_la_OBJECTS) $(libresource_dump_filters_la_DEPENDENCIES) $(EXTRA_libresource_dump_filters_la_DEPENDENCIES) $(AM_V_CXXLD)$(libresource_dump_filters_la_LINK) $(libresource_dump_filters_la_OBJECTS) $(libresource_dump_filters_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_filters_la-filter.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_filters_la-include_exclude_segments_filter.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libresource_dump_filters_la-strip_control_segments_filter.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libresource_dump_filters_la-filter.lo: filter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_filters_la-filter.lo -MD -MP -MF $(DEPDIR)/libresource_dump_filters_la-filter.Tpo -c -o libresource_dump_filters_la-filter.lo `test -f 'filter.cpp' || echo '$(srcdir)/'`filter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_filters_la-filter.Tpo $(DEPDIR)/libresource_dump_filters_la-filter.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='filter.cpp' object='libresource_dump_filters_la-filter.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_filters_la-filter.lo `test -f 'filter.cpp' || echo '$(srcdir)/'`filter.cpp libresource_dump_filters_la-include_exclude_segments_filter.lo: include_exclude_segments_filter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_filters_la-include_exclude_segments_filter.lo -MD -MP -MF $(DEPDIR)/libresource_dump_filters_la-include_exclude_segments_filter.Tpo -c -o libresource_dump_filters_la-include_exclude_segments_filter.lo `test -f 'include_exclude_segments_filter.cpp' || echo '$(srcdir)/'`include_exclude_segments_filter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_filters_la-include_exclude_segments_filter.Tpo $(DEPDIR)/libresource_dump_filters_la-include_exclude_segments_filter.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='include_exclude_segments_filter.cpp' object='libresource_dump_filters_la-include_exclude_segments_filter.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_filters_la-include_exclude_segments_filter.lo `test -f 'include_exclude_segments_filter.cpp' || echo '$(srcdir)/'`include_exclude_segments_filter.cpp libresource_dump_filters_la-strip_control_segments_filter.lo: strip_control_segments_filter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) -MT libresource_dump_filters_la-strip_control_segments_filter.lo -MD -MP -MF $(DEPDIR)/libresource_dump_filters_la-strip_control_segments_filter.Tpo -c -o libresource_dump_filters_la-strip_control_segments_filter.lo `test -f 'strip_control_segments_filter.cpp' || echo '$(srcdir)/'`strip_control_segments_filter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libresource_dump_filters_la-strip_control_segments_filter.Tpo $(DEPDIR)/libresource_dump_filters_la-strip_control_segments_filter.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='strip_control_segments_filter.cpp' object='libresource_dump_filters_la-strip_control_segments_filter.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libresource_dump_filters_la_CXXFLAGS) $(CXXFLAGS) -c -o libresource_dump_filters_la-strip_control_segments_filter.lo `test -f 'strip_control_segments_filter.cpp' || echo '$(srcdir)/'`strip_control_segments_filter.cpp mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/resourcedump_lib/src/Makefile.in0000644000175000017500000005006314522641740025015 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools/resourcedump_lib/src DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = common fetchers commands filters sdk all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/resourcedump_lib/validation/0000755000175000017500000000000014522641732024310 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/validation/CapabilityValidator.py0000644000175000017500000000454314522641732030617 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # CapabilityValidator.py # Python implementation of the Class CapabilityValidator # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:12:01 AM # Original author: talve # ####################################################### from resourcedump_lib.fetchers.CapabilityFetcher import CapabilityFetcher class CapabilityValidator: """this class is responsible for validating the capability of the core dump register. """ CAP_BIT_VALUE = 0x0200000 @classmethod def _fetch_cap(cls): """fetch the core dump capability bit by calling the CapabilityFetcher. """ return CapabilityFetcher.fetch() @classmethod def validate(cls): """validate if core dump register is supported by checking the capability. """ capability_value = cls._fetch_cap() if (capability_value & cls.CAP_BIT_VALUE) > 0: return True return False mstflint-4.26.0/resourcetools/resourcedump_lib/validation/__init__.py0000644000175000017500000000257714522641732026434 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourcedump_lib/fetchers/0000755000175000017500000000000014522641732023761 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/fetchers/CapabilityFetcher.py0000644000175000017500000000403514522641732027717 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # CapabilityFetcher.py # Python implementation of the Class CapabilityFetcher # Generated by Enterprise Architect # Created on: 14-Aug-2019 10:12:01 AM # Original author: talve # ####################################################### class CapabilityFetcher: """this class responsible for fetching the core dump capability. """ @classmethod def fetch(cls): """this method responsible for fetching the core dump capability and return it to the caller. """ # return value from regaccess, implementation is missing due to a fw bug return 2097152 mstflint-4.26.0/resourcetools/resourcedump_lib/fetchers/__init__.py0000644000175000017500000000257714522641732026105 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourcedump_lib/__init__.py0000644000175000017500000000257714522641732024302 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourcedump_lib/utils/0000755000175000017500000000000014522641732023316 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/utils/Exceptions.py0000644000175000017500000000332114522641732026010 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # Exceptions.py # Python implementation of the Class Exceptions # Created on: 14-Aug-2019 10:12:03 AM # Original author: romany # ####################################################### class DumpNotSupported(Exception): """Base class for other exceptions""" pass mstflint-4.26.0/resourcetools/resourcedump_lib/utils/__init__.py0000644000175000017500000000257714522641732025442 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourcedump_lib/utils/constants.py0000644000175000017500000000765214522641732025716 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # constants.py # Python implementation of resource dump constants # This file will supply all the constants needed # for the resource dump tool # Original author: romany # ####################################################### TOOL_NAME = "ResourceDump" RESOURCE_DUMP_COMMAND_TYPE_QUERY = "query" RESOURCE_DUMP_COMMAND_TYPE_DUMP = "dump" RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE = 0xffffffff RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE_MIN = 0x0000 RESOURCE_DUMP_SEGMENT_TYPE_RESOURCE_MAX = 0xfeff RESOURCE_DUMP_SEGMENT_TYPE_NOTICE = 0xfff9 RESOURCE_DUMP_SEGMENT_TYPE_COMMAND = 0xfffa RESOURCE_DUMP_SEGMENT_TYPE_TERMINATE = 0xfffb RESOURCE_DUMP_SEGMENT_TYPE_ERROR = 0xfffc RESOURCE_DUMP_SEGMENT_TYPE_INFO = 0xfffe RESOURCE_DUMP_SEGMENT_TYPE_MENU = 0xffff RESOURCE_DUMP_SEGMENT_TYPE_REFERENCE = 0xfffd DEVICE_RDMA = "__AUTO__" INF_DEPTH = -1 + 2**32 DEFAULT_VHCA = 0xFFFF DWORD_SIZE = 4 # segment start/end specify where the 'type' attr starts and ends in the raw_data of each segment. # should be 0-16 bits SEGMENT_TYPE_DWORD_LOCATION = 0 SEGMENT_SIZE_DWORD_LOCATION = 0 SEGMENT_TYPE_START = 16 SEGMENT_TYPE_END = 32 SEGMENT_SIZE_START = 0 SEGMENT_SIZE_END = 16 MENU_SEGMENT_NUM_OF_RECORDS_DWORD_LOCATION = 1 MENU_SEGMENT_NUM_OF_RECORDS_START = 16 MENU_SEGMENT_NUM_OF_RECORDS_END = 32 MENU_SEGMENT_TYPE_DWORD_LOCATION = 0 MENU_SEGMENT_DWORD_SUPPORT_ATTRS_LOCATION = 0 MENU_SEGMENT_SEGMENT_NAME_DWORD_LOCATION_START = 1 MENU_SEGMENT_SEGMENT_NAME_DWORD_LOCATION_END = 5 MENU_SEGMENT_INDEX_NAME_1_DWORD_LOCATION_START = 5 MENU_SEGMENT_INDEX_NAME_1_DWORD_LOCATION_END = 9 MENU_SEGMENT_INDEX_NAME_2_DWORD_LOCATION_START = 9 MENU_SEGMENT_INDEX_NAME_2_DWORD_LOCATION_END = 13 NUM_OF_OBJ_ALL = 65535 NUM_OF_OBJ_ACTIVE = 65534 MENU_SEGMENT_TABLE_SEGMENT_TYPE = "Segment Type - " MENU_SEGMENT_TABLE_DUMP_PARAMS = "Dump Params" MENU_SEGMENT_TABLE_APPLICABILITY = "Applicability" MENU_SEGMENT_TABLE_SPECIAL_VALUES = "Special Values" MENU_SEGMENT_TABLE_MANDATORY = "Mandatory" MENU_SEGMENT_TABLE_OPTIONAL = "Optional" MENU_SEGMENT_TABLE_INDEX1 = "index1" MENU_SEGMENT_TABLE_INDEX2 = "index2" MENU_SEGMENT_TABLE_NUM_OF_OBJS1 = "num_of_obj1" MENU_SEGMENT_TABLE_NUM_OF_OBJS2 = "num_of_obj2" MENU_SEGMENT_TABLE_ALL = "all" MENU_SEGMENT_TABLE_ACTIVE = "active" MENU_SEGMENT_TABLE_LINE_LEN = 66 MENU_SEGMENT_TABLE_DUMP_PARAMS_LEN = 32 MENU_SEGMENT_TABLE_APPLICABILITY_LEN = 14 MENU_SEGMENT_TABLE_SPECIAL_VALUES_LEN = 14 MENU_SEGMENT_TABLE_GAP = 3 MENU_SEGMENT_TABLE_NA = "N/A" MENU_SEGMENT_TABLE_DASH = "-" MENU_SEGMENT_TABLE_AND = "," MENU_SEGMENT_TABLE_WRAP = "_" mstflint-4.26.0/resourcetools/resourcedump_lib/Makefile.am0000644000175000017500000000272714522641732024222 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = src mstflint-4.26.0/resourcetools/resourcedump_lib/filters/0000755000175000017500000000000014522641732023626 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/filters/SegmentsFilter.py0000644000175000017500000000405414522641732027136 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # SegmentsFilter.py # Python implementation of the Class SegmentsFilter # Original author: romany # ####################################################### class SegmentsFilter: """this class is responsible for filtering the segments. """ @staticmethod def get_segments(segments_lst, seg_type): """this method responsible for filtering the segments by returning only the relevant segments according the given type. """ filter_func = (lambda x: x.get_type() == seg_type) filtered = filter(filter_func, segments_lst) return [el for el in filtered] mstflint-4.26.0/resourcetools/resourcedump_lib/filters/__init__.py0000644000175000017500000000257714522641732025752 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourcedump_lib/cresourcedump/0000755000175000017500000000000014522641732025036 5ustar tzafrirctzafrircmstflint-4.26.0/resourcetools/resourcedump_lib/cresourcedump/__init__.py0000644000175000017500000000257714522641732027162 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. mstflint-4.26.0/resourcetools/resourcedump_lib/cresourcedump/cresourcedump_types.py0000644000175000017500000000444314522641732031521 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # types.py # ctypes connection to C SDK # Created on: 29-Aug-2023 5:15:00 PM # Original author: astrutsovsky # ####################################################### import ctypes class c_resource_dump_data(ctypes.Structure): _fields_ = [ ("dump_obj", ctypes.c_void_p), ("data", ctypes.POINTER(ctypes.c_ubyte)), ("size", ctypes.c_uint32), ("endianess", ctypes.c_uint8), ] class c_dump_request(ctypes.Structure): _fields_ = [ ("resource_id", ctypes.c_uint16), ("index1", ctypes.c_uint32), ("index2", ctypes.c_uint32), ("num_of_obj1", ctypes.c_uint16), ("num_of_obj2", ctypes.c_uint16), ] class c_device_attributes(ctypes.Structure): _fields_ = [ ("device_name", ctypes.c_char_p), ("vhca", ctypes.c_uint16), ("rdma_name", ctypes.c_char_p), ] mstflint-4.26.0/resourcetools/resourcedump_lib/cresourcedump/CResourceDump.py0000644000175000017500000001036614522641732030136 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ####################################################### # # CResourceDump.py # ctypes connection to C SDK # Created on: 5-Sep-2023 8:43:00 AM # Original author: astrutsovsky # ####################################################### # from tools_external_libs import get_external_libs_dir import sys import ctypes import platform from pathlib import Path from . import cresourcedump_types class CResourceDump: def CDLL(dist_lib_path, installer_lib_path, *args): try: # print("Openning: {}".format(dist_lib_path)) return ctypes.CDLL(str(dist_lib_path), *args) except BaseException: # print("Openning: {}".format(installer_lib_path)) return ctypes.CDLL(str(installer_lib_path), *args) try: c_resource_dump_sdk = None rd_sdk_lib_basename = "libresource_dump_sdk" so_suffix = '' if platform.system() != 'Windows': so_suffix = 'so' # if debug: # c_resource_dump_sdk = ctypes.CDLL(str((Path(__file__).resolve()).parents[1] / "src" / "sdk" / "libresource_dump_sdk.so"), ctypes.RTLD_GLOBAL) c_resource_dump_sdk = ctypes.CDLL(str((Path(__file__).resolve()).parents[4] / "sdk" / "{}.{}".format(rd_sdk_lib_basename, so_suffix)), ctypes.RTLD_GLOBAL) else: mtcr_lib_basename = "libmtcr-1" so_suffix = 'dll' CDLL(Path(".") / "{}.{}".format(mtcr_lib_basename, so_suffix), Path("..") / "{}.{}".format(mtcr_lib_basename, so_suffix), ctypes.RTLD_GLOBAL) c_resource_dump_sdk = CDLL(Path(".") / "{}.{}".format(rd_sdk_lib_basename, so_suffix), Path("..") / "{}.{}".format(rd_sdk_lib_basename, so_suffix), ctypes.RTLD_GLOBAL) except OSError as ose: print("Error: Failed loading shared-library - {0}. Exiting...".format(ose)) sys.exit(1) c_create_resource_dump = c_resource_dump_sdk.create_resource_dump c_create_resource_dump.restype = ctypes.c_uint16 c_create_resource_dump.argtypes = [ cresourcedump_types.c_device_attributes, cresourcedump_types.c_dump_request, ctypes.POINTER(cresourcedump_types.c_resource_dump_data), ctypes.c_uint32 ] c_destroy_resource_dump = c_resource_dump_sdk.destroy_resource_dump c_destroy_resource_dump.restype = None c_destroy_resource_dump.argtypes = [ cresourcedump_types.c_resource_dump_data ] c_dump_resource_to_file = c_resource_dump_sdk.dump_resource_to_file c_dump_resource_to_file.restype = ctypes.c_uint16 c_dump_resource_to_file.argtypes = [ cresourcedump_types.c_device_attributes, cresourcedump_types.c_dump_request, ctypes.c_uint32, ctypes.c_char_p, ctypes.c_uint8 ] c_get_resource_dump_error = c_resource_dump_sdk.get_resource_dump_error c_get_resource_dump_error.restype = ctypes.c_char_p c_get_resource_dump_error.argtypes = [] mstflint-4.26.0/resourcetools/resourcedump_lib/Makefile.in0000644000175000017500000005011714522641740024226 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools/resourcedump_lib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/resourcedump_lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/Makefile.in0000644000175000017500000012332014522641740020660 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = resourcetools DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_pythonlib_SCRIPTS) $(dist_commandspythonlib_DATA) \ $(dist_cresourcedumppythonlib_DATA) \ $(dist_fetcherspythonlib_DATA) $(dist_filterspythonlib_DATA) \ $(dist_maindumppythonlib_DATA) $(dist_mainparsepythonlib_DATA) \ $(dist_parsedatapythonlib_DATA) \ $(dist_parsersparsepythonlib_DATA) \ $(dist_parseutilspythonlib_DATA) \ $(dist_segmentspythonlib_DATA) $(dist_utilspythonlib_DATA) \ $(dist_validationpythonlib_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pythonlibdir)" \ "$(DESTDIR)$(commandspythonlibdir)" \ "$(DESTDIR)$(cresourcedumppythonlibdir)" \ "$(DESTDIR)$(fetcherspythonlibdir)" \ "$(DESTDIR)$(filterspythonlibdir)" \ "$(DESTDIR)$(maindumppythonlibdir)" \ "$(DESTDIR)$(mainparsepythonlibdir)" \ "$(DESTDIR)$(parsedatapythonlibdir)" \ "$(DESTDIR)$(parsersparsepythonlibdir)" \ "$(DESTDIR)$(parseutilspythonlibdir)" \ "$(DESTDIR)$(segmentspythonlibdir)" \ "$(DESTDIR)$(utilspythonlibdir)" \ "$(DESTDIR)$(validationpythonlibdir)" SCRIPTS = $(bin_SCRIPTS) $(dist_pythonlib_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(dist_commandspythonlib_DATA) \ $(dist_cresourcedumppythonlib_DATA) \ $(dist_fetcherspythonlib_DATA) $(dist_filterspythonlib_DATA) \ $(dist_maindumppythonlib_DATA) $(dist_mainparsepythonlib_DATA) \ $(dist_parsedatapythonlib_DATA) \ $(dist_parsersparsepythonlib_DATA) \ $(dist_parseutilspythonlib_DATA) \ $(dist_segmentspythonlib_DATA) $(dist_utilspythonlib_DATA) \ $(dist_validationpythonlib_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = resourcedump_lib USER_DIR = $(top_builddir) bin_SCRIPTS = mstresourcedump mstresourceparse PYTHON_WRAPPER = mstresourcedump PYTHON_WRAPPER_SCRIPT = $(USER_DIR)/common/python_wrapper PYTHON_WRAPPER2 = mstresourceparse pythonlibdir = $(libdir)/mstflint/python_tools/resourcetools dist_pythonlib_SCRIPTS = mstresourcedump.py mstresourceparse.py segmentspythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/segments dist_segmentspythonlib_DATA = $(srcdir)/segments/*.py maindumppythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib dist_maindumppythonlib_DATA = $(srcdir)/resourcedump_lib/*.py validationpythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/validation dist_validationpythonlib_DATA = $(srcdir)/resourcedump_lib/validation/*.py utilspythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/utils dist_utilspythonlib_DATA = $(srcdir)/resourcedump_lib/utils/*.py filterspythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/filters dist_filterspythonlib_DATA = $(srcdir)/resourcedump_lib/filters/*.py fetcherspythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/fetchers dist_fetcherspythonlib_DATA = $(srcdir)/resourcedump_lib/fetchers/*.py commandspythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/commands dist_commandspythonlib_DATA = $(srcdir)/resourcedump_lib/commands/*.py cresourcedumppythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourcedump_lib/cresourcedump dist_cresourcedumppythonlib_DATA = $(srcdir)/resourcedump_lib/cresourcedump/*.py mainparsepythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib dist_mainparsepythonlib_DATA = $(srcdir)/resourceparse_lib/*.py parsersparsepythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib/parsers dist_parsersparsepythonlib_DATA = $(srcdir)/resourceparse_lib/parsers/*.py parseutilspythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib/utils dist_parseutilspythonlib_DATA = $(srcdir)/resourceparse_lib/utils/*.py parsedatapythonlibdir = $(libdir)/mstflint/python_tools/resourcetools/resourceparse_lib/resource_data dist_parsedatapythonlib_DATA = $(srcdir)/resourceparse_lib/resource_data/*.py CLEANFILES = ${PYTHON_WRAPPER} ${PYTHON_WRAPPER2} all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign resourcetools/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign resourcetools/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) install-dist_pythonlibSCRIPTS: $(dist_pythonlib_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_pythonlib_SCRIPTS)'; test -n "$(pythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(pythonlibdir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(pythonlibdir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_pythonlibSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_pythonlib_SCRIPTS)'; test -n "$(pythonlibdir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(pythonlibdir)'; $(am__uninstall_files_from_dir) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_commandspythonlibDATA: $(dist_commandspythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_commandspythonlib_DATA)'; test -n "$(commandspythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(commandspythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(commandspythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(commandspythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(commandspythonlibdir)" || exit $$?; \ done uninstall-dist_commandspythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_commandspythonlib_DATA)'; test -n "$(commandspythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(commandspythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_cresourcedumppythonlibDATA: $(dist_cresourcedumppythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_cresourcedumppythonlib_DATA)'; test -n "$(cresourcedumppythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(cresourcedumppythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(cresourcedumppythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(cresourcedumppythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(cresourcedumppythonlibdir)" || exit $$?; \ done uninstall-dist_cresourcedumppythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_cresourcedumppythonlib_DATA)'; test -n "$(cresourcedumppythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(cresourcedumppythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_fetcherspythonlibDATA: $(dist_fetcherspythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_fetcherspythonlib_DATA)'; test -n "$(fetcherspythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(fetcherspythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(fetcherspythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(fetcherspythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(fetcherspythonlibdir)" || exit $$?; \ done uninstall-dist_fetcherspythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_fetcherspythonlib_DATA)'; test -n "$(fetcherspythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(fetcherspythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_filterspythonlibDATA: $(dist_filterspythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_filterspythonlib_DATA)'; test -n "$(filterspythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(filterspythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(filterspythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(filterspythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(filterspythonlibdir)" || exit $$?; \ done uninstall-dist_filterspythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_filterspythonlib_DATA)'; test -n "$(filterspythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(filterspythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_maindumppythonlibDATA: $(dist_maindumppythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_maindumppythonlib_DATA)'; test -n "$(maindumppythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(maindumppythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(maindumppythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(maindumppythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(maindumppythonlibdir)" || exit $$?; \ done uninstall-dist_maindumppythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_maindumppythonlib_DATA)'; test -n "$(maindumppythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(maindumppythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_mainparsepythonlibDATA: $(dist_mainparsepythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_mainparsepythonlib_DATA)'; test -n "$(mainparsepythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mainparsepythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mainparsepythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mainparsepythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mainparsepythonlibdir)" || exit $$?; \ done uninstall-dist_mainparsepythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_mainparsepythonlib_DATA)'; test -n "$(mainparsepythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mainparsepythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_parsedatapythonlibDATA: $(dist_parsedatapythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_parsedatapythonlib_DATA)'; test -n "$(parsedatapythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(parsedatapythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(parsedatapythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(parsedatapythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(parsedatapythonlibdir)" || exit $$?; \ done uninstall-dist_parsedatapythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_parsedatapythonlib_DATA)'; test -n "$(parsedatapythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(parsedatapythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_parsersparsepythonlibDATA: $(dist_parsersparsepythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_parsersparsepythonlib_DATA)'; test -n "$(parsersparsepythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(parsersparsepythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(parsersparsepythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(parsersparsepythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(parsersparsepythonlibdir)" || exit $$?; \ done uninstall-dist_parsersparsepythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_parsersparsepythonlib_DATA)'; test -n "$(parsersparsepythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(parsersparsepythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_parseutilspythonlibDATA: $(dist_parseutilspythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_parseutilspythonlib_DATA)'; test -n "$(parseutilspythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(parseutilspythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(parseutilspythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(parseutilspythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(parseutilspythonlibdir)" || exit $$?; \ done uninstall-dist_parseutilspythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_parseutilspythonlib_DATA)'; test -n "$(parseutilspythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(parseutilspythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_segmentspythonlibDATA: $(dist_segmentspythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_segmentspythonlib_DATA)'; test -n "$(segmentspythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(segmentspythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(segmentspythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(segmentspythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(segmentspythonlibdir)" || exit $$?; \ done uninstall-dist_segmentspythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_segmentspythonlib_DATA)'; test -n "$(segmentspythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(segmentspythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_utilspythonlibDATA: $(dist_utilspythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_utilspythonlib_DATA)'; test -n "$(utilspythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(utilspythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(utilspythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(utilspythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(utilspythonlibdir)" || exit $$?; \ done uninstall-dist_utilspythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_utilspythonlib_DATA)'; test -n "$(utilspythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(utilspythonlibdir)'; $(am__uninstall_files_from_dir) install-dist_validationpythonlibDATA: $(dist_validationpythonlib_DATA) @$(NORMAL_INSTALL) @list='$(dist_validationpythonlib_DATA)'; test -n "$(validationpythonlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(validationpythonlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(validationpythonlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(validationpythonlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(validationpythonlibdir)" || exit $$?; \ done uninstall-dist_validationpythonlibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_validationpythonlib_DATA)'; test -n "$(validationpythonlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(validationpythonlibdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(SCRIPTS) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pythonlibdir)" "$(DESTDIR)$(commandspythonlibdir)" "$(DESTDIR)$(cresourcedumppythonlibdir)" "$(DESTDIR)$(fetcherspythonlibdir)" "$(DESTDIR)$(filterspythonlibdir)" "$(DESTDIR)$(maindumppythonlibdir)" "$(DESTDIR)$(mainparsepythonlibdir)" "$(DESTDIR)$(parsedatapythonlibdir)" "$(DESTDIR)$(parsersparsepythonlibdir)" "$(DESTDIR)$(parseutilspythonlibdir)" "$(DESTDIR)$(segmentspythonlibdir)" "$(DESTDIR)$(utilspythonlibdir)" "$(DESTDIR)$(validationpythonlibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dist_commandspythonlibDATA \ install-dist_cresourcedumppythonlibDATA \ install-dist_fetcherspythonlibDATA \ install-dist_filterspythonlibDATA \ install-dist_maindumppythonlibDATA \ install-dist_mainparsepythonlibDATA \ install-dist_parsedatapythonlibDATA \ install-dist_parsersparsepythonlibDATA \ install-dist_parseutilspythonlibDATA \ install-dist_pythonlibSCRIPTS \ install-dist_segmentspythonlibDATA \ install-dist_utilspythonlibDATA \ install-dist_validationpythonlibDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binSCRIPTS \ uninstall-dist_commandspythonlibDATA \ uninstall-dist_cresourcedumppythonlibDATA \ uninstall-dist_fetcherspythonlibDATA \ uninstall-dist_filterspythonlibDATA \ uninstall-dist_maindumppythonlibDATA \ uninstall-dist_mainparsepythonlibDATA \ uninstall-dist_parsedatapythonlibDATA \ uninstall-dist_parsersparsepythonlibDATA \ uninstall-dist_parseutilspythonlibDATA \ uninstall-dist_pythonlibSCRIPTS \ uninstall-dist_segmentspythonlibDATA \ uninstall-dist_utilspythonlibDATA \ uninstall-dist_validationpythonlibDATA .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binSCRIPTS install-data \ install-data-am install-dist_commandspythonlibDATA \ install-dist_cresourcedumppythonlibDATA \ install-dist_fetcherspythonlibDATA \ install-dist_filterspythonlibDATA \ install-dist_maindumppythonlibDATA \ install-dist_mainparsepythonlibDATA \ install-dist_parsedatapythonlibDATA \ install-dist_parsersparsepythonlibDATA \ install-dist_parseutilspythonlibDATA \ install-dist_pythonlibSCRIPTS \ install-dist_segmentspythonlibDATA \ install-dist_utilspythonlibDATA \ install-dist_validationpythonlibDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-binSCRIPTS uninstall-dist_commandspythonlibDATA \ uninstall-dist_cresourcedumppythonlibDATA \ uninstall-dist_fetcherspythonlibDATA \ uninstall-dist_filterspythonlibDATA \ uninstall-dist_maindumppythonlibDATA \ uninstall-dist_mainparsepythonlibDATA \ uninstall-dist_parsedatapythonlibDATA \ uninstall-dist_parsersparsepythonlibDATA \ uninstall-dist_parseutilspythonlibDATA \ uninstall-dist_pythonlibSCRIPTS \ uninstall-dist_segmentspythonlibDATA \ uninstall-dist_utilspythonlibDATA \ uninstall-dist_validationpythonlibDATA ${PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ ${PYTHON_WRAPPER2}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/resourcetools/tools_version.py0000777000175000017500000000000014522641732027051 2../common/tools_version.pyustar tzafrirctzafrircmstflint-4.26.0/mstflint.spec.in0000644000175000017500000002214414522641732017027 0ustar tzafrirctzafrirc%{!?ibmadlib: %define ibmadlib libibmad-devel} %{!?name: %define name mstflint} %{!?version: %define version 4.26.0} %{!?release: %define release 1} %{!?buildtype: %define buildtype "native"} %{!?noinband: %define noinband 0} %{!?nodc: %define nodc 0} %{!?enablecs: %define enablecs 0} %{!?nopenssl: %define nopenssl 0} %{!?enablexml2: %define enablexml2 0} %{!?enablefwmgr: %define enablefwmgr 0} %{!?enableadbgenerictools: %define enableadbgenerictools 1} %{!?CONF_DIR: %define CONF_DIR /etc/mstflint} %define mstflint_python_tools %{_libdir}/mstflint/python_tools %define mstflint_sdkdir %{_libdir}/mstflint/sdk %define _unpackaged_files_terminate_build 0 %define debug_package %{nil} Summary: Mellanox firmware burning application Name: %{name} Version: %{version} Release: %{release} License: GPL/BSD Url: http://openfabrics.org Group: System Environment/Base BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} Source: %{name}-%{version}.tar.gz ExclusiveArch: i386 i486 i586 i686 x86_64 ia64 ppc ppc64 ppc64le arm64 aarch64 %if 0%{?suse_version} %define openssl_devel_lib libopenssl-devel %define expat_devel_lib libexpat-devel %else %define openssl_devel_lib openssl-devel %define expat_devel_lib expat-devel %endif %if "%{nopenssl}" == "0" BuildRequires: %{openssl_devel_lib} %endif %if "%{enableadbgenerictools}" == "1" BuildRequires: %{expat_devel_lib} BuildRequires: xz-devel %endif BuildRequires: zlib-devel %{ibmadlib} %description This package contains firmware update tool, vpd dump and register dump tools for network adapters based on Mellanox Technologies chips. %prep %setup -q %build MSTFLINT_VERSION_STR="%{name} %{version}-%{release}" %if %{nodc} config_flags="$config_flags --disable-dc" %endif %if %{noinband} config_flags="$config_flags --disable-inband" %endif %if %{nopenssl} config_flags="$config_flags --disable-openssl" %endif %if %{enablecs} config_flags="$config_flags --enable-cs" %endif %if %{enablexml2} config_flags="$config_flags --enable-xml2" %endif %if %{enablefwmgr} config_flags="$config_flags --enable-fw-mgr" %endif %if %{enableadbgenerictools} config_flags="$config_flags --enable-adb-generic-tools" %endif %if %{buildtype} == "ppc" config_flags="$config_flags --host=ppc-linux" %endif %if %{buildtype} == "ppc64" config_flags="$config_flags --host=ppc64-linux --enable-static-libstdcpp=yes" %endif %if %{buildtype} == "ppc64le" config_flags="$config_flags --host=powerpc64le-linux-gnu --enable-dynamic-ld=yes" %endif %if %{buildtype} == "arm64" config_flags="$config_flags --host arm" %endif %configure ${config_flags} MSTFLINT_VERSION_STR="${MSTFLINT_VERSION_STR}" make %install rm -rf $RPM_BUILD_ROOT make DESTDIR=${RPM_BUILD_ROOT} install # remove unpackaged files from the buildroot rm -f $RPM_BUILD_ROOT%{_libdir}/*.la # create softlinks to old mtcr header and lib locations # link mtcr_ul to old location mkdir -p %{buildroot}/%{_includedir}/mtcr_ul ln -s %{_includedir}/mstflint/mtcr.h %{buildroot}/%{_includedir}/mtcr_ul/mtcr.h ln -s %{_includedir}/mstflint/mtcr_com_defs.h %{buildroot}/%{_includedir}/mtcr_ul/mtcr_com_defs.h # link mtcr_ul to old lib path ln -s %{_libdir}/mstflint/libmtcr_ul.a %{buildroot}/%{_libdir}/libmtcr_ul.a %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %{_bindir}/mstmread %{_bindir}/mstmwrite %{_bindir}/mstflint %{_bindir}/mstregdump %{_bindir}/mstmtserver %{_bindir}/mstvpd %{_bindir}/mstmcra %{_bindir}/mstconfig %{_bindir}/mstfwreset %{_bindir}/mstcongestion %{_bindir}/mstprivhost %{_bindir}/mstfwtrace %{_bindir}/mstresourcedump %{_bindir}/mstresourceparse %if %{enablefwmgr} %{_bindir}/mstfwmanager %{_bindir}/mstarchive %{CONF_DIR}/ca-bundle.crt %endif %if %{enableadbgenerictools} %{_bindir}/mstreg %{_bindir}/mstlink %endif %{_includedir}/mstflint/cmdif/icmd_cif_common.h %{_includedir}/mstflint/cmdif/icmd_cif_open.h %{_includedir}/mstflint/common/compatibility.h %{_includedir}/mstflint/mtcr.h %{_includedir}/mstflint/mtcr_com_defs.h %{_includedir}/mstflint/mtcr_mf.h %{_includedir}/mstflint/tools_layouts/adb_to_c_utils.h %{_includedir}/mstflint/tools_layouts/icmd_layouts.h %{_includedir}/mtcr_ul/mtcr.h %{_includedir}/mtcr_ul/mtcr_com_defs.h %{_libdir}/mstflint/libmtcr_ul.a %{_libdir}/libmtcr_ul.a %{mstflint_python_tools}/tools_version.py %{mstflint_python_tools}/mft_logger.py %{mstflint_python_tools}/mlxpci/*.py %{mstflint_python_tools}/mstfwtrace/*.py %{mstflint_python_tools}/mstfwreset/mstfwreset.py %{mstflint_python_tools}/mstfwreset/mlxfwresetlib/*.py %{mstflint_python_tools}/mtcr.py %{mstflint_python_tools}/cmtcr.so %{mstflint_python_tools}/cmdif.py %{mstflint_python_tools}/ccmdif.so %{mstflint_python_tools}/regaccess.py %{mstflint_python_tools}/regaccess_hca_ext_structs.py %{mstflint_python_tools}/regaccess_switch_ext_structs.py %{mstflint_python_tools}/rreg_access.so %{mstflint_python_tools}/dev_mgt.py %{mstflint_python_tools}/c_dev_mgt.so %{mstflint_python_tools}/mstprivhost/mstprivhost.py # Usually, python2 is the default python on a machine, # so we want to ignore python2 erros caused by incompatiblity with python3 syntax %define _python_bytecompile_errors_terminate_build 0 %{mstflint_sdkdir}/libresource_dump_sdk.so %{mstflint_python_tools}/resourcetools/*.py %{mstflint_python_tools}/resourcetools/segments/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/commands/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/cresourcedump/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/fetchers/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/filters/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/utils/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/validation/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/parsers/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/resource_data/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/utils/*.py %{_datadir}/mstflint %{_mandir}/man1/* %changelog * Thu Sep 8 2022 Alex Blago MFT 4.22.0 Updates * Sun Jul 31 2022 Tomer Tubi MFT 4.21.0 Updates * Tue May 31 2022 Tomer Tubi MFT 4.20.1 Updates * Thu Apr 28 2022 Tomer Tubi MFT 4.20.0 Updates * Thu Mar 24 2022 Tomer Tubi MFT 4.19.0 Updates * Thu Nov 25 2021 Tomer Tubi MFT 4.18.0 Updates * Thu Jun 10 2021 Konstantin Maksatov MFT 4.17.0 Updates * Mon Mar 22 2021 Konstantin Maksatov Updated mlxconfig, fixed several bugs * Thu Dec 17 2020 Konstantin Maksatov MFT 4.16.0 Updates. * Wed Jun 24 2020 Konstantin Maksatov Added BlueField-2 adapter cards support. * Tue Mar 31 2020 Eran Jakoby MFT 4.14.0 Updates. * Tue Dec 31 2019 Eran Jakoby MFT 4.13.3 Updates. Added new tools: mstresourcedump. * Mon Sep 23 2019 Dan Goldberg Added conditional lib name of the dependencies to support both RH and SLES naming conventions. * Wed May 22 2019 Eran Jakoby MFT 4.12.0 Updates. Added new tools: mstreg, mstfwtrace and mstlink. * Wed Nov 21 2018 Dan Goldberg MFT 4.11.0 Updates. Added new tools: mlxarchive and mstprivhost. * Sun Jul 01 2018 Dan Goldberg MFT 4.10.0 Updates * Mon Jul 17 2017 Adham Masarwah Adding mlxfwreset to mstflint * Mon May 08 2017 Adrian Chiris MFT 4.7.0 Updates * Tue Jan 10 2017 Adham Masarwah Removed hca_self_test.ofed installation from the package * Mon Jan 9 2017 Adham Masarwah MFT 4.6.0 Updates * Tue May 17 2016 Adrian Chiris MFT 4.4.0 Updates * Wed Mar 23 2016 Adrian Chiris MFT 4.4.0 Updates * Mon Jan 11 2016 Adrian Chiris MFT 4.3.0 Updates * Wed Aug 26 2015 Adrian Chiris MFT 4.1.0 Updates * Fri Jun 05 2015 Adrian Chiris MFT 4.0.1 Updates * Thu Feb 05 2015 Adrian Chiris MFT 4.0.0 Updates * Sun Dec 07 2014 Tomer Cohen Added support for multiple architectures * Sun Oct 12 2014 Oren Kladnitsky MFT 3.7.1 * Thu Jul 31 2014 Oren Kladnitsky MFT 3.7.0 Updates * Mon Mar 31 2014 Oren Kladnitsky MFT 3.6.0 Updates * Tue Dec 24 2013 Oren Kladnitsky MFT 3.5.0 Updates * Wed Mar 20 2013 Oren Kladnitsky MFT 3.0.0 * Thu Dec 4 2008 Oren Kladnitsky Added hca_self_test.ofed installation * Sun Dec 23 2007 Oren Kladnitsky Added mtcr.h installation * Fri Dec 07 2007 Ira Weiny 1.0.0 initial creation mstflint-4.26.0/mstflint.spec0000644000175000017500000002217214522641741016423 0ustar tzafrirctzafrirc%{!?ibmadlib: %define ibmadlib libibmad-devel} %{!?name: %define name mstflint} %{!?version: %define version 4.26.0} %{!?release: %define release 1} %{!?buildtype: %define buildtype "native"} %{!?noinband: %define noinband 0} %{!?nodc: %define nodc 0} %{!?enablecs: %define enablecs 0} %{!?nopenssl: %define nopenssl 0} %{!?enablexml2: %define enablexml2 0} %{!?enablefwmgr: %define enablefwmgr 0} %{!?enableadbgenerictools: %define enableadbgenerictools 1} %{!?CONF_DIR: %define CONF_DIR /etc/mstflint} %define mstflint_python_tools %{_libdir}/mstflint/python_tools %define mstflint_sdkdir %{_libdir}/mstflint/sdk %define _unpackaged_files_terminate_build 0 %define debug_package %{nil} Summary: Mellanox firmware burning application Name: %{name} Version: 4.26.0 Release: 1 License: GPL/BSD Url: http://openfabrics.org Group: System Environment/Base BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} Source: http://www.openfabrics.org/downloads/mstflint-4.26.0-1.tar.gz ExclusiveArch: i386 i486 i586 i686 x86_64 ia64 ppc ppc64 ppc64le arm64 aarch64 %if 0%{?suse_version} %define openssl_devel_lib libopenssl-devel %define expat_devel_lib libexpat-devel %else %define openssl_devel_lib openssl-devel %define expat_devel_lib expat-devel %endif %if "%{nopenssl}" == "0" BuildRequires: %{openssl_devel_lib} %endif %if "%{enableadbgenerictools}" == "1" BuildRequires: %{expat_devel_lib} BuildRequires: xz-devel %endif BuildRequires: zlib-devel %{ibmadlib} %description This package contains firmware update tool, vpd dump and register dump tools for network adapters based on Mellanox Technologies chips. %prep %setup -q %build MSTFLINT_VERSION_STR="%{name} %{version}-%{release}" %if %{nodc} config_flags="$config_flags --disable-dc" %endif %if %{noinband} config_flags="$config_flags --disable-inband" %endif %if %{nopenssl} config_flags="$config_flags --disable-openssl" %endif %if %{enablecs} config_flags="$config_flags --enable-cs" %endif %if %{enablexml2} config_flags="$config_flags --enable-xml2" %endif %if %{enablefwmgr} config_flags="$config_flags --enable-fw-mgr" %endif %if %{enableadbgenerictools} config_flags="$config_flags --enable-adb-generic-tools" %endif %if %{buildtype} == "ppc" config_flags="$config_flags --host=ppc-linux" %endif %if %{buildtype} == "ppc64" config_flags="$config_flags --host=ppc64-linux --enable-static-libstdcpp=yes" %endif %if %{buildtype} == "ppc64le" config_flags="$config_flags --host=powerpc64le-linux-gnu --enable-dynamic-ld=yes" %endif %if %{buildtype} == "arm64" config_flags="$config_flags --host arm" %endif %configure ${config_flags} MSTFLINT_VERSION_STR="${MSTFLINT_VERSION_STR}" make %install rm -rf $RPM_BUILD_ROOT make DESTDIR=${RPM_BUILD_ROOT} install # remove unpackaged files from the buildroot rm -f $RPM_BUILD_ROOT%{_libdir}/*.la # create softlinks to old mtcr header and lib locations # link mtcr_ul to old location mkdir -p %{buildroot}/%{_includedir}/mtcr_ul ln -s %{_includedir}/mstflint/mtcr.h %{buildroot}/%{_includedir}/mtcr_ul/mtcr.h ln -s %{_includedir}/mstflint/mtcr_com_defs.h %{buildroot}/%{_includedir}/mtcr_ul/mtcr_com_defs.h # link mtcr_ul to old lib path ln -s %{_libdir}/mstflint/libmtcr_ul.a %{buildroot}/%{_libdir}/libmtcr_ul.a %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %{_bindir}/mstmread %{_bindir}/mstmwrite %{_bindir}/mstflint %{_bindir}/mstregdump %{_bindir}/mstmtserver %{_bindir}/mstvpd %{_bindir}/mstmcra %{_bindir}/mstconfig %{_bindir}/mstfwreset %{_bindir}/mstcongestion %{_bindir}/mstprivhost %{_bindir}/mstfwtrace %{_bindir}/mstresourcedump %{_bindir}/mstresourceparse %if %{enablefwmgr} %{_bindir}/mstfwmanager %{_bindir}/mstarchive %{CONF_DIR}/ca-bundle.crt %endif %if %{enableadbgenerictools} %{_bindir}/mstreg %{_bindir}/mstlink %endif %{_includedir}/mstflint/cmdif/icmd_cif_common.h %{_includedir}/mstflint/cmdif/icmd_cif_open.h %{_includedir}/mstflint/common/compatibility.h %{_includedir}/mstflint/mtcr.h %{_includedir}/mstflint/mtcr_com_defs.h %{_includedir}/mstflint/mtcr_mf.h %{_includedir}/mstflint/tools_layouts/adb_to_c_utils.h %{_includedir}/mstflint/tools_layouts/icmd_layouts.h %{_includedir}/mtcr_ul/mtcr.h %{_includedir}/mtcr_ul/mtcr_com_defs.h %{_libdir}/mstflint/libmtcr_ul.a %{_libdir}/libmtcr_ul.a %{mstflint_python_tools}/tools_version.py %{mstflint_python_tools}/mft_logger.py %{mstflint_python_tools}/mlxpci/*.py %{mstflint_python_tools}/mstfwtrace/*.py %{mstflint_python_tools}/mstfwreset/mstfwreset.py %{mstflint_python_tools}/mstfwreset/mlxfwresetlib/*.py %{mstflint_python_tools}/mtcr.py %{mstflint_python_tools}/cmtcr.so %{mstflint_python_tools}/cmdif.py %{mstflint_python_tools}/ccmdif.so %{mstflint_python_tools}/regaccess.py %{mstflint_python_tools}/regaccess_hca_ext_structs.py %{mstflint_python_tools}/regaccess_switch_ext_structs.py %{mstflint_python_tools}/rreg_access.so %{mstflint_python_tools}/dev_mgt.py %{mstflint_python_tools}/c_dev_mgt.so %{mstflint_python_tools}/mstprivhost/mstprivhost.py # Usually, python2 is the default python on a machine, # so we want to ignore python2 erros caused by incompatiblity with python3 syntax %define _python_bytecompile_errors_terminate_build 0 %{mstflint_sdkdir}/libresource_dump_sdk.so %{mstflint_python_tools}/resourcetools/*.py %{mstflint_python_tools}/resourcetools/segments/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/commands/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/cresourcedump/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/fetchers/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/filters/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/utils/*.py %{mstflint_python_tools}/resourcetools/resourcedump_lib/validation/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/parsers/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/resource_data/*.py %{mstflint_python_tools}/resourcetools/resourceparse_lib/utils/*.py %{_datadir}/mstflint %{_mandir}/man1/* %changelog * Thu Sep 8 2022 Alex Blago MFT 4.22.0 Updates * Sun Jul 31 2022 Tomer Tubi MFT 4.21.0 Updates * Tue May 31 2022 Tomer Tubi MFT 4.20.1 Updates * Thu Apr 28 2022 Tomer Tubi MFT 4.20.0 Updates * Thu Mar 24 2022 Tomer Tubi MFT 4.19.0 Updates * Thu Nov 25 2021 Tomer Tubi MFT 4.18.0 Updates * Thu Jun 10 2021 Konstantin Maksatov MFT 4.17.0 Updates * Mon Mar 22 2021 Konstantin Maksatov Updated mlxconfig, fixed several bugs * Thu Dec 17 2020 Konstantin Maksatov MFT 4.16.0 Updates. * Wed Jun 24 2020 Konstantin Maksatov Added BlueField-2 adapter cards support. * Tue Mar 31 2020 Eran Jakoby MFT 4.14.0 Updates. * Tue Dec 31 2019 Eran Jakoby MFT 4.13.3 Updates. Added new tools: mstresourcedump. * Mon Sep 23 2019 Dan Goldberg Added conditional lib name of the dependencies to support both RH and SLES naming conventions. * Wed May 22 2019 Eran Jakoby MFT 4.12.0 Updates. Added new tools: mstreg, mstfwtrace and mstlink. * Wed Nov 21 2018 Dan Goldberg MFT 4.11.0 Updates. Added new tools: mlxarchive and mstprivhost. * Sun Jul 01 2018 Dan Goldberg MFT 4.10.0 Updates * Mon Jul 17 2017 Adham Masarwah Adding mlxfwreset to mstflint * Mon May 08 2017 Adrian Chiris MFT 4.7.0 Updates * Tue Jan 10 2017 Adham Masarwah Removed hca_self_test.ofed installation from the package * Mon Jan 9 2017 Adham Masarwah MFT 4.6.0 Updates * Tue May 17 2016 Adrian Chiris MFT 4.4.0 Updates * Wed Mar 23 2016 Adrian Chiris MFT 4.4.0 Updates * Mon Jan 11 2016 Adrian Chiris MFT 4.3.0 Updates * Wed Aug 26 2015 Adrian Chiris MFT 4.1.0 Updates * Fri Jun 05 2015 Adrian Chiris MFT 4.0.1 Updates * Thu Feb 05 2015 Adrian Chiris MFT 4.0.0 Updates * Sun Dec 07 2014 Tomer Cohen Added support for multiple architectures * Sun Oct 12 2014 Oren Kladnitsky MFT 3.7.1 * Thu Jul 31 2014 Oren Kladnitsky MFT 3.7.0 Updates * Mon Mar 31 2014 Oren Kladnitsky MFT 3.6.0 Updates * Tue Dec 24 2013 Oren Kladnitsky MFT 3.5.0 Updates * Wed Mar 20 2013 Oren Kladnitsky MFT 3.0.0 * Thu Dec 4 2008 Oren Kladnitsky Added hca_self_test.ofed installation * Sun Dec 23 2007 Oren Kladnitsky Added mtcr.h installation * Fri Dec 07 2007 Ira Weiny 1.0.0 initial creation mstflint-4.26.0/dev_mgt/0000755000175000017500000000000014522641737015335 5ustar tzafrirctzafrircmstflint-4.26.0/dev_mgt/tools_dev_types.h0000644000175000017500000002101014522641732020715 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * End of legal section ...................................................... * * toos_dev_types.h - Defines an enum value for all mellanox chips in order to * have a uniform IDs for all toos. * * Version: $Id$ * * Author: Wasim Abo Moch (wasim@mellanox.co.il) */ #ifndef TOOLS_DEV_TYPE_H #define TOOLS_DEV_TYPE_H #ifdef __cplusplus extern "C" { #endif #include #include #include enum dm_dev_id { DeviceUnknown = -1, // Dummy Device - Marker for indicating error. DeviceStartMarker = 0, // Dummy Device - Marker for first device // to let user iterate from DeviceStartMarker to DeviceEndMarker // Note: Call dm_is_device_supported() to see if a device is supported by the lib. DeviceConnectX3, DeviceConnectIB, DeviceConnectX3Pro, DeviceSwitchIB, DeviceSpectrum, DeviceQuantum, DeviceConnectX4, DeviceConnectX4LX, DeviceConnectX5, DeviceConnectX6, DeviceBlueField, DeviceBlueField2, DeviceBlueField3, DeviceBlueField4, DeviceSwitchIB2, DeviceCable, DeviceCableQSFP, DeviceCableQSFPaging, DeviceCableSFP, DeviceCableSFP51, DeviceCableSFP51Paging, DeviceArdbeg, DeviceBaritone, DeviceMenhit, DeviceSpectrum2, DeviceDummy, DeviceSecureHost, DeviceConnectX6DX, DeviceConnectX6LX, DeviceConnectX7, DeviceConnectX8, DeviceSpectrum3, // Firebird DeviceSpectrum4, // Albatross DeviceQuantum2, // Blackbird DeviceQuantum3, // Sunbird DeviceGearBox, DeviceGearBoxManager, DeviceAbirGearBox, DeviceCableCMIS, DeviceCableCMISPaging, DeviceBW00, // Blackwell DeviceArcusPTC, // ArcusP Test Chip DeviceArcusP, DeviceArcusE, DeviceEndMarker // Dummy Device - Marker for indicating end of devices when iterating }; enum hw_dev_id { DeviceConnectX3_HwId = 0x1f5, DeviceConnectIB_HwId = 0x1ff, DeviceConnectX3Pro_HwId = 0x1f7, DeviceSwitchIB_HwId = 0x247, DeviceSpectrum_HwId = 0x249, DeviceConnectX4_HwId = 0x209, DeviceConnectX4LX_HwId = 0x20b, DeviceConnectX5_HwId = 0x20d, DeviceConnectX6_HwId = 0x20f, DeviceConnectX6DX_HwId = 0x212, DeviceConnectX6LX_HwId = 0x216, DeviceConnectX7_HwId = 0x218, DeviceConnectX8_HwId = 0x21e, DeviceBlueField_HwId = 0x211, DeviceBlueField2_HwId = 0x214, DeviceBlueField3_HwId = 0x21c, DeviceBlueField4_HwId = 0x220, DeviceSwitchIB2_HwId = 0x24b, DeviceCableQSFP_HwId = 0x0d, DeviceCableQSFPaging_HwId = 0x11, DeviceCableCMIS_HwId = 0x19, DeviceCableCMISPaging_HwId = 0x19, DeviceCableSFP_HwId = 0x03, DeviceCableSFP51_HwId = 0x03, DeviceCableSFP51Paging_HwId = 0x03, DeviceSpectrum2_HwId = 0x24e, DeviceQuantum_HwId = 0x24d, DeviceQuantum2_HwId = 0x257, DeviceQuantum3_HwId = 0x25b, DeviceBW00_HwId = 0x2900, DeviceArdbeg_HwId = 0x6e, DeviceBaritone_HwId = 0x6b, DeviceMenhit_HwId = 0x72, DeviceSecureHost_HwId = 0xcafe, DeviceSpectrum3_HwId = 0x250, DeviceSpectrum4_HwId = 0x254, DeviceGearBox_HwId = 0x252, DeviceGearBoxManager_HwId = 0x253, DeviceAbirGearBox_HwId = 0x256, DeviceArcusPTC_HwId = 0x7f, // ArcusP Test Chip DeviceArcusP_HwId = 0x80, DeviceArcusE_HwId = 0x81, }; typedef enum dm_dev_id dm_dev_id_t; /** * Returns 0 on success and 1 on failure. */ int dm_get_device_id(mfile* mf, dm_dev_id_t* ptr_dev_type, u_int32_t* ptr_dev_id, u_int32_t* ptr_chip_rev); int dm_get_device_id_without_prints(mfile* mf, dm_dev_id_t* ptr_dm_dev_id, u_int32_t* ptr_hw_dev_id, u_int32_t* ptr_hw_rev); /** * Returns 0 on success and 1 on failure. */ int dm_get_device_id_offline(u_int32_t devid, u_int32_t chip_rev, dm_dev_id_t* ptr_dev_type); /** * Returns 1 if device is supported and 0 otherwise (library dependant) */ int dm_is_device_supported(dm_dev_id_t type); /** * Returns the device name as a "const char*" */ const char* dm_dev_type2str(dm_dev_id_t type); /** * Returns the device id */ dm_dev_id_t dm_dev_str2type(const char* str); /** * A predicate returning if the device is an hca */ int dm_dev_is_hca(dm_dev_id_t type); /** * A predicate returning if the device is gearbox */ int dm_dev_is_gearbox(dm_dev_id_t type); /** * A predicate returning if the device is menhit */ int dm_is_menhit(dm_dev_id_t type); /** * A predicate returning if the device is dummy */ int dm_dev_is_dummy(dm_dev_id_t type); /** * A predicate returning if the hca supports 200G speed and above */ int dm_dev_is_200g_speed_supported_hca(dm_dev_id_t type); /** * A predicate returning if the device is a switch */ int dm_dev_is_switch(dm_dev_id_t type); /** * A predicate returning if the switch supports 200G speed and above */ int dm_dev_is_200g_speed_supported_switch(dm_dev_id_t type); /** * A predicate returning if the device is a bridge */ int dm_dev_is_bridge(dm_dev_id_t type); /** * A predicate returning if the device is a Cable */ int dm_dev_is_cable(dm_dev_id_t type); /** * A predicate returning if the device is an ArcusE chipset */ int dm_dev_is_retimer_arcuse(dm_dev_id_t type); /** * Returns the max num of ports or -1 on error */ int dm_get_hw_ports_num(dm_dev_id_t type); /** * Returns the HW device id of the givn device type or zero on failure. */ u_int32_t dm_get_hw_dev_id(dm_dev_id_t type); /** * Returns the HW chip revision of the given device type or zero on failures, * This is useful to distinguish between ConnectX2 and ConnectX. */ u_int32_t dm_get_hw_rev_id(dm_dev_id_t type); /** * A predicate returning if the device supports Function Per Port */ int dm_is_fpp_supported(dm_dev_id_t type); int dm_is_4th_gen(dm_dev_id_t type); int dm_is_5th_gen_hca(dm_dev_id_t type); int dm_is_connectib(dm_dev_id_t type); int dm_is_new_gen_switch(dm_dev_id_t type); int dm_dev_is_raven_family_switch(dm_dev_id_t type); int dm_dev_is_ib_switch(dm_dev_id_t type); int dm_dev_is_eth_switch(dm_dev_id_t type); /* * A predicate returning if the device is in LiveFish mode */ int dm_is_livefish_mode(mfile* mf); int dm_is_ib_access(mfile* mf); #ifdef __cplusplus } /* end of 'extern "C"' */ #endif #endif // TOOLS_DEV_TYPE_H mstflint-4.26.0/dev_mgt/Makefile.am0000644000175000017500000000427514522641732017374 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common\ -I$(top_srcdir)/include/mtcr_ul AM_CFLAGS = -W -Wall -g -MP -MD -Wswitch-enum $(COMPILER_FPIC) -DMTCR_EXPORT noinst_LTLIBRARIES = libdev_mgt.la libdev_mgt_la_SOURCES = \ tools_dev_types.c \ tools_dev_types.h dev_mgt_pylibdir = $(libdir)/mstflint/python_tools/ dev_mgt_pylib_DATA = c_dev_mgt.so dist_dev_mgt_pylib_DATA = dev_mgt.py c_dev_mgt.so: libdev_mgt.la $(CC) -g -Wall -pthread -shared ${CFLAGS} tools_dev_types.o -o c_dev_mgt.so \ $(top_builddir)/reg_access/.libs/libreg_access.a \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a \ $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a CLEANFILES = c_dev_mgt.so mstflint-4.26.0/dev_mgt/dev_mgt.py0000755000175000017500000001421214522641732017332 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import os import sys import platform import ctypes import mtcr class DevMgtException(Exception): pass ########################## DEV_MGT = None try: from ctypes import * if platform.system() == "Windows" or os.name == "nt": try: DEV_MGT = CDLL("c_dev_mgt.dll") except BaseException: DEV_MGT = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "c_dev_mgt.dll")) else: try: # c_dev_mgt.so must be specified explicitly for pyinstaller collection DEV_MGT = CDLL("c_dev_mgt.so") except BaseException: DEV_MGT = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "c_dev_mgt.so")) except Exception as exp: raise DevMgtException("Failed to load shared library c_dev_mgt: %s" % exp) if DEV_MGT: class DevMgt: ########################## def __init__(self, dev, i2c_secondary= -1): self.mf = 0 self._isLivefishModeFunc = DEV_MGT.dm_is_livefish_mode # dm_is_livefish_mode(mfile* mf) self._getDeviceIdFunc = DEV_MGT.dm_get_device_id self._isIBAccess = DEV_MGT.dm_is_ib_access if isinstance(dev, (mtcr.MstDevice)): self._mstdev = dev else: self._mstdev = mtcr.MstDevice(dev, i2c_secondary) if not self._mstdev: raise DevMgtException("Failed to open device (%s): %s" % (dev, os.strerror(ctypes.get_errno()))) ########################## def isLivefishMode(self): rc = self._isLivefishModeFunc(self._mstdev.mf) return not (rc == 0) ########################## def getHwId(self): dm_dev_id = ctypes.c_uint16() hw_dev_id = ctypes.c_uint32() hw_rev = ctypes.c_uint32() rc = DEV_MGT.dm_get_device_id(self._mstdev.mf, ctypes.byref(dm_dev_id), ctypes.byref(hw_dev_id), ctypes.byref(hw_rev)) return {"return_code": rc, "dm_device_id": dm_dev_id, "hw_device_id": hw_dev_id, "hw_revision": hw_rev} @classmethod def getDevIdOffline(cls, hw_dev_id): dm_dev_id = ctypes.c_uint16() rc = DEV_MGT.dm_get_device_id_offline(hw_dev_id, -1, ctypes.byref(dm_dev_id)) return {"return_code": rc, "dm_device_id": dm_dev_id, "hw_device_id": hw_dev_id, "hw_revision": -1} @classmethod def str2hwId(cls, name): name_char_p = ctypes.c_char_p(name.lower().encode('utf-8')) dm_dev_id = ctypes.c_uint16() hw_dev_id = ctypes.c_uint32() hw_rev = ctypes.c_uint32() dm_dev_id = DEV_MGT.dm_dev_aproxstr2type(name_char_p) rc = 0 hw_dev_id = DEV_MGT.dm_get_hw_dev_id(dm_dev_id) hw_rev = DEV_MGT.dm_get_hw_rev_id(dm_dev_id) if (hw_dev_id == 0 or hw_rev == 0): rc = 1 return {"return_code": rc, "dm_device_id": dm_dev_id, "hw_device_id": hw_dev_id, "hw_revision": hw_rev} @classmethod def type2str(cls, dm_dev_id): DEV_MGT.dm_dev_type2str.restype = ctypes.c_char_p return DEV_MGT.dm_dev_type2str(dm_dev_id).decode("utf-8") @classmethod def is_ib_switch(cls, dm_dev_id): return DEV_MGT.dm_dev_is_ib_switch(dm_dev_id) @classmethod def is_connectib(cls, dm_dev_id): return DEV_MGT.dm_is_connectib(dm_dev_id) @classmethod def is_bw00(cls, dm_dev_id): return DEV_MGT.dm_is_bw00(dm_dev_id) @classmethod def is_cx7(cls, dm_dev_id): return DEV_MGT.dm_is_cx7(dm_dev_id) @classmethod def is_fs3(cls, dm_dev_id): return DEV_MGT.dm_dev_is_fs3(dm_dev_id) @classmethod def is_fs4(cls, dm_dev_id): return DEV_MGT.dm_dev_is_fs4(dm_dev_id) @classmethod def is_fs5(cls, dm_dev_id): return DEV_MGT.dm_dev_is_fs5(dm_dev_id) @classmethod def is_4th_gen(cls, dm_dev_id): return DEV_MGT.dm_is_4th_gen(dm_dev_id) @classmethod def sw_id2hw_id(cls, sw_dev_id): dm_dev_id = DEV_MGT.dm_dev_sw_id2type(sw_dev_id) rc = 0 hw_dev_id = DEV_MGT.dm_get_hw_dev_id(dm_dev_id) hw_rev = DEV_MGT.dm_get_hw_rev_id(dm_dev_id) if (hw_dev_id == 0 or hw_rev == 0): rc = 1 return {"return_code": rc, "dm_device_id": dm_dev_id, "hw_device_id": hw_dev_id, "hw_revision": hw_rev} def is_ib_access(self): return (self._isIBAccess(self._mstdev.mf) != 0) else: raise DevMgtException("Failed to load c_dev_mgt.so/libdev_mgt.dll") mstflint-4.26.0/dev_mgt/Makefile.in0000644000175000017500000005701414522641737017411 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = dev_mgt DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(dist_dev_mgt_pylib_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libdev_mgt_la_LIBADD = am_libdev_mgt_la_OBJECTS = tools_dev_types.lo libdev_mgt_la_OBJECTS = $(am_libdev_mgt_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libdev_mgt_la_SOURCES) DIST_SOURCES = $(libdev_mgt_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(dev_mgt_pylibdir)" \ "$(DESTDIR)$(dev_mgt_pylibdir)" DATA = $(dev_mgt_pylib_DATA) $(dist_dev_mgt_pylib_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common\ -I$(top_srcdir)/include/mtcr_ul AM_CFLAGS = -W -Wall -g -MP -MD -Wswitch-enum $(COMPILER_FPIC) -DMTCR_EXPORT noinst_LTLIBRARIES = libdev_mgt.la libdev_mgt_la_SOURCES = \ tools_dev_types.c \ tools_dev_types.h dev_mgt_pylibdir = $(libdir)/mstflint/python_tools/ dev_mgt_pylib_DATA = c_dev_mgt.so dist_dev_mgt_pylib_DATA = dev_mgt.py CLEANFILES = c_dev_mgt.so all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign dev_mgt/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign dev_mgt/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libdev_mgt.la: $(libdev_mgt_la_OBJECTS) $(libdev_mgt_la_DEPENDENCIES) $(EXTRA_libdev_mgt_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libdev_mgt_la_OBJECTS) $(libdev_mgt_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools_dev_types.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dev_mgt_pylibDATA: $(dev_mgt_pylib_DATA) @$(NORMAL_INSTALL) @list='$(dev_mgt_pylib_DATA)'; test -n "$(dev_mgt_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(dev_mgt_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(dev_mgt_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dev_mgt_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(dev_mgt_pylibdir)" || exit $$?; \ done uninstall-dev_mgt_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(dev_mgt_pylib_DATA)'; test -n "$(dev_mgt_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(dev_mgt_pylibdir)'; $(am__uninstall_files_from_dir) install-dist_dev_mgt_pylibDATA: $(dist_dev_mgt_pylib_DATA) @$(NORMAL_INSTALL) @list='$(dist_dev_mgt_pylib_DATA)'; test -n "$(dev_mgt_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(dev_mgt_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(dev_mgt_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dev_mgt_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(dev_mgt_pylibdir)" || exit $$?; \ done uninstall-dist_dev_mgt_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_dev_mgt_pylib_DATA)'; test -n "$(dev_mgt_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(dev_mgt_pylibdir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) installdirs: for dir in "$(DESTDIR)$(dev_mgt_pylibdir)" "$(DESTDIR)$(dev_mgt_pylibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dev_mgt_pylibDATA \ install-dist_dev_mgt_pylibDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dev_mgt_pylibDATA \ uninstall-dist_dev_mgt_pylibDATA .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dev_mgt_pylibDATA \ install-dist_dev_mgt_pylibDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am \ uninstall-dev_mgt_pylibDATA uninstall-dist_dev_mgt_pylibDATA c_dev_mgt.so: libdev_mgt.la $(CC) -g -Wall -pthread -shared ${CFLAGS} tools_dev_types.o -o c_dev_mgt.so \ $(top_builddir)/reg_access/.libs/libreg_access.a \ $(top_builddir)/tools_layouts/.libs/libtools_layouts.a \ $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/dev_mgt/tools_dev_types.c0000644000175000017500000012356714522641732020734 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * End of legal section ...................................................... * * toos_dev_types.c - Defines static info records for all mellanox chips in order to * have a uniform IDs and info for all tools. * * Version: $Id$ * * Author: Wasim Abo Moch (wasim@mellanox.co.il) */ #include #include #include #include #include #include #include "tools_dev_types.h" #include "mflash/mflash_types.h" enum dm_dev_type { DM_UNKNOWN = -1, DM_HCA, DM_SWITCH, DM_BRIDGE, DM_QSFP_CABLE, DM_CMIS_CABLE, DM_SFP_CABLE, DM_LINKX, /* linkx chip */ DM_GEARBOX, DM_RETIMER }; struct device_info { dm_dev_id_t dm_id; u_int16_t hw_dev_id; int hw_rev_id; /* -1 means all revisions match this record */ int sw_dev_id; /* -1 means all hw ids match this record */ const char * name; int port_num; enum dm_dev_type dev_type; }; #define DEVID_ADDR 0xf0014 #define CABLEID_ADDR 0x0 #define SFP_DIGITAL_DIAGNOSTIC_MONITORING_IMPLEMENTED_ADDR 92 #define SFP_PAGING_IMPLEMENTED_INDICATOR_ADDR 64 #define ARDBEG_REV0_DEVID 0x6e #define ARDBEG_REV1_DEVID 0x7e #define ARDBEG_MIRRORED_DEVID 0x70 #define BARITONE_DEVID 0x6b #define BARITONE_MIRRORED_DEVID 0x71 #define MENHIT_DEVID_VER0 0x6f #define MENHIT_DEVID_VER1 0x72 #define MENHIT_DEVID_VER2 0x73 #define ARCUS_P_TC_DEVID 0x7f #define ARCUS_P_REV0_DEVID 0x80 #define ARCUS_E_REV0_DEVID 0x81 #ifdef CABLES_SUPP enum dm_dev_type getCableType(u_int8_t id) { switch (id) { case 0xd: case 0x11: case 0xe: case 0xc: return DM_QSFP_CABLE; case 0x3: return DM_SFP_CABLE; case 0x18: case 0x19: /* Stallion2 */ case 0x1e: return DM_CMIS_CABLE; default: return DM_UNKNOWN; } } #endif static struct device_info g_devs_info[] = { { DeviceConnectX3, /* dm_id */ 0x1f5, /* hw_dev_id */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "ConnectX3", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectIB, /* dm_id */ 0x1ff, /* hw_dev_id */ -1, /* hw_rev_id */ 4113, /* sw_dev_id */ "ConnectIB", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX3Pro, /* dm_id */ 0x1f7, /* hw_dev_id */ -1, /* hw_rev_id */ 4103, /* sw_dev_id */ "ConnectX3Pro", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceSwitchIB, /* dm_id */ 0x247, /* hw_dev_id */ -1, /* hw_rev_id */ 52000, /* sw_dev_id */ "SwitchIB", /* name */ 36, /* port_num */ DM_SWITCH /* dev_type */ }, { DeviceSpectrum, /* dm_id */ 0x249, /* hw_dev_id */ -1, /* hw_rev_id */ 52100, /* sw_dev_id */ "Spectrum", /* name */ 64, /* port_num */ DM_SWITCH /* dev_type */ }, { DeviceConnectX4, /* dm_id */ 0x209, /* hw_dev_id */ -1, /* hw_rev_id */ 4115, /* sw_dev_id */ "ConnectX4", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX4LX, /* dm_id */ 0x20b, /* hw_dev_id */ -1, /* hw_rev_id */ 4117, /* sw_dev_id */ "ConnectX4LX", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX5, /* dm_id */ 0x20d, /* hw_dev_id */ -1, /* hw_rev_id */ 4119, /* sw_dev_id */ "ConnectX5", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX6, /* dm_id */ 0x20f, /* hw_dev_id */ -1, /* hw_rev_id */ 4123, /* sw_dev_id */ "ConnectX6", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX6DX, /* dm_id */ 0x212, /* hw_dev_id */ -1, /* hw_rev_id */ 4125, /* sw_dev_id */ "ConnectX6DX", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX6LX, /* dm_id */ 0x216, /* hw_dev_id */ -1, /* hw_rev_id */ 4127, /* sw_dev_id */ "ConnectX6LX", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX7, /* dm_id */ 0x218, /* hw_dev_id */ -1, /* hw_rev_id */ 4129, /* sw_dev_id */ "ConnectX7", /* name */ 4, /* port_num */ DM_HCA /* dev_type */ }, { DeviceConnectX8, /* dm_id */ 0x21e, /* hw_dev_id */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "ConnectX8", /* name */ 4, /* port_num */ DM_HCA /* dev_type */ }, { DeviceBlueField, /* dm_id */ 0x211, /* hw_dev_id */ -1, /* hw_rev_id */ 41682, /* sw_dev_id */ "BlueField", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceBlueField2, /* dm_id */ 0x214, /* hw_dev_id */ -1, /* hw_rev_id */ 41686, /* sw_dev_id */ "BlueField2", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceBlueField3, /* dm_id */ 0x21c, /* hw_dev_id */ -1, /* hw_rev_id */ 41692, /* sw_dev_id */ "BlueField3", /* name */ 4, /* port_num */ DM_HCA /* dev_type */ }, { DeviceBlueField4, /* dm_id */ 0x220, /* hw_dev_id */ -1, /* hw_rev_id */ 41694, /* sw_dev_id */ "BlueField4", /* name */ 4, /* port_num */ DM_HCA /* dev_type */ }, { DeviceSwitchIB2, /* dm_id */ 0x24b, /* hw_dev_id */ -1, /* hw_rev_id */ 53000, /* sw_dev_id */ "SwitchIB2", /* name */ 36, /* port_num */ DM_SWITCH /* dev_type */ }, { DeviceCableQSFP, /* dm_id */ 0x0d, /* hw_dev_id */ 0, /* hw_rev_id */ -1, /* sw_dev_id */ "CableQSFP", /* name */ -1, /* port_num */ DM_QSFP_CABLE /* dev_type */ }, { DeviceCableQSFPaging, /* dm_id */ 0x11, /* hw_dev_id */ 0xab, /* hw_rev_id */ -1, /* sw_dev_id */ "CableQSFPaging", /* name */ -1, /* port_num */ DM_QSFP_CABLE /* dev_type */ }, { DeviceCableCMIS, /* dm_id */ 0x19, /* hw_dev_id */ 0, /* hw_rev_id */ -1, /* sw_dev_id */ "CableCMIS", /* name */ -1, /* port_num */ DM_CMIS_CABLE /* dev_type */ }, { DeviceCableCMISPaging, /* dm_id */ 0x19, /* hw_dev_id */ 0xab, /* hw_rev_id */ -1, /* sw_dev_id */ "CableCMISPaging", /* name */ -1, /* port_num */ DM_CMIS_CABLE /* dev_type */ }, { DeviceCableSFP, /* dm_id */ 0x03, /* hw_dev_id */ 1, /* hw_rev_id */ -1, /* sw_dev_id */ "CableSFP", /* name */ -1, /* port_num */ DM_SFP_CABLE /* dev_type */ }, { DeviceCableSFP51, /* dm_id */ 0x03, /* hw_dev_id */ 1, /* hw_rev_id */ -1, /* sw_dev_id */ "CableSFP51", /* name */ -1, /* port_num */ DM_SFP_CABLE /* dev_type */ }, { DeviceCableSFP51Paging, /* dm_id */ 0x03, /* hw_dev_id */ 1, /* hw_rev_id */ -1, /* sw_dev_id */ "CableSFP51Paging", /* name */ -1, /* port_num */ DM_SFP_CABLE /* dev_type */ }, { DeviceSpectrum2, /* dm_id */ 0x24e, /* hw_dev_id */ -1, /* hw_rev_id */ 53100, /* sw_dev_id */ "Spectrum2", /* name */ 128, /* port_num */ DM_SWITCH /* dev_type */ }, { DeviceDummy, /* dm_id */ 0x1, /* hw_dev_id */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "DummyDevice", /* name */ 2, /* port_num */ DM_HCA /* dev_type */ }, { DeviceQuantum, /* dm_id */ 0x24d, /* hw_dev_id */ -1, /* hw_rev_id */ 54000, /* sw_dev_id */ "Quantum", /* name */ 80, /* port_num */ DM_SWITCH /* dev_type */ }, { DeviceArdbeg, /* dm_id */ 0x6e, /* hw_dev_id (ArdbegMirror 0x70) */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "Ardbeg", /* name */ -1, /* port_num */ DM_LINKX /* dev_type */ }, { DeviceBaritone, /* dm_id */ 0x6b, /* hw_dev_id (BaritoneMirror 0x71) */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "Baritone", /* name */ -1, /* port_num */ DM_LINKX /* dev_type */ }, { DeviceMenhit, /* dm_id */ 0x72, /* hw_dev_id (other versions 0x6f,0x73) */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "Menhit", /* name */ -1, /* port_num */ DM_LINKX /* dev_type */ }, { DeviceArcusPTC, /* dm_id */ 0x7f, /* hw_dev_id */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "ArcusP Test-Chip", /* name */ -1, /* port_num */ DM_LINKX /* dev_type */ }, { DeviceArcusP, /* dm_id */ 0x80, /* hw_dev_id (other versions 0x6f,0x73) */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "ArcusP", /* name */ -1, /* port_num */ DM_LINKX /* dev_type */ }, { DeviceArcusE, /* dm_id */ 0x81, /* hw_dev_id (other versions 0x6f,0x73) */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "ArcusE", /* name */ -1, /* port_num */ DM_LINKX /* dev_type */ }, { DeviceArcusE, // dm_id 0xb200, // hw_dev_id (other versions 0x6f,0x73) -1, // hw_rev_id -1, // sw_dev_id "ArcusE", // name -1, // port_num DM_RETIMER // dev_type }, { DeviceSecureHost, /* dm_id */ 0xcafe, /* hw_dev_id */ 0xd0, /* hw_rev_id */ 0, /* sw_dev_id */ "Unknown Device", /* name */ -1, /* port_num */ DM_UNKNOWN /* dev_type */ }, { DeviceSpectrum3, /* dm_id */ 0x250, /* hw_dev_id */ -1, /* hw_rev_id */ 53104, /* sw_dev_id */ "Spectrum3", /* name */ 128, /* port_num NEED_CHECK */ DM_SWITCH /* dev_type */ }, { DeviceSpectrum4, /* dm_id */ 0x254, /* hw_dev_id */ -1, /* hw_rev_id */ 53120, /* sw_dev_id */ "Spectrum4", /* name */ 128, /* port_num NEED_CHECK */ DM_SWITCH /* dev_type */ }, { DeviceQuantum2, /* dm_id */ 0x257, /* hw_dev_id */ -1, /* hw_rev_id */ 54002, /* sw_dev_id */ "Quantum2", /* name */ 128, /* port_num NEED_CHECK */ DM_SWITCH /* dev_type */ }, { DeviceQuantum3, /* dm_id */ 0x25b, /* hw_dev_id */ -1, /* hw_rev_id */ 54004, /* sw_dev_id */ "Quantum3", /* name */ 128, /* port_num NEED_CHECK */ DM_SWITCH /* dev_type */ }, { DeviceBW00, /* dm_id */ 0x2900, /* hw_dev_id */ -1, /* hw_rev_id */ 10496, /* sw_dev_id */ "BW00", /* name */ 128, /* port_num NEED_CHECK */ DM_SWITCH /* dev_type */ }, { DeviceGearBox, /* dm_id */ 0x252, /* hw_dev_id */ -1, /* hw_rev_id */ 53108, /* sw_dev_id */ "AmosGearBox", /* name */ 128, /* port_num NEED_CHECK */ DM_GEARBOX /* dev_type */ }, { DeviceGearBoxManager, /* dm_id */ 0x253, /* hw_dev_id */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "AmosGearBoxManager", /* name */ -1, /* port_num NEED_CHECK */ DM_GEARBOX /* dev_type */ }, { DeviceAbirGearBox, /* dm_id */ 0x256, /* hw_dev_id */ -1, /* hw_rev_id */ -1, /* sw_dev_id */ "AbirGearBox", /* name */ -1, /* port_num NEED_CHECK */ DM_GEARBOX /* dev_type */ }, { DeviceUnknown, /* dm_id */ 0, /* hw_dev_id */ 0, /* hw_rev_id */ 0, /* sw_dev_id */ "Unknown Device", /* name */ -1, /* port_num */ DM_UNKNOWN /* dev_type */ } }; static const struct device_info* get_entry(dm_dev_id_t type) { const struct device_info* p = g_devs_info; while (p->dm_id != DeviceUnknown) { if (type == p->dm_id) { break; } p++; } return p; } static const struct device_info* get_entry_by_dev_rev_id(u_int32_t hw_dev_id, u_int32_t hw_rev_id) { const struct device_info* p = g_devs_info; while (p->dm_id != DeviceUnknown) { if (hw_dev_id == p->hw_dev_id) { if ((p->hw_rev_id == -1) || ((int)hw_rev_id == p->hw_rev_id)) { break; } } p++; } return p; } typedef enum get_dev_id_error_t { GET_DEV_ID_SUCCESS, GET_DEV_ID_ERROR, CRSPACE_READ_ERROR, CHECK_PTR_DEV_ID, } dev_id_error; static int dm_get_device_id_inner(mfile * mf, dm_dev_id_t* ptr_dm_dev_id, u_int32_t * ptr_hw_dev_id, u_int32_t * ptr_hw_rev) { u_int32_t dword = 0; int rc; u_int32_t dev_flags; #ifdef CABLES_SUPP if (mf->tp == MST_LINKX_CHIP) { switch (mf->linkx_chip_devid) { case ARDBEG_REV0_DEVID: case ARDBEG_REV1_DEVID: case ARDBEG_MIRRORED_DEVID: *ptr_dm_dev_id = DeviceArdbeg; break; case BARITONE_DEVID: case BARITONE_MIRRORED_DEVID: *ptr_dm_dev_id = DeviceBaritone; break; case MENHIT_DEVID_VER0: case MENHIT_DEVID_VER1: case MENHIT_DEVID_VER2: *ptr_dm_dev_id = DeviceMenhit; break; case ARCUS_P_TC_DEVID: *ptr_dm_dev_id = DeviceArcusPTC; break; case ARCUS_P_REV0_DEVID: *ptr_dm_dev_id = DeviceArcusP; break; case ARCUS_E_REV0_DEVID: *ptr_dm_dev_id = DeviceArcusE; break; default: return GET_DEV_ID_ERROR; break; } *ptr_hw_dev_id = (u_int32_t)mf->linkx_chip_devid; return GET_DEV_ID_SUCCESS; } if (mf->tp == MST_CABLE) { /* printf("-D- Getting cable ID\n"); */ if (mread4(mf, CABLEID_ADDR, &dword) != 4) { /* printf("FATAL - crspace read (0x%x) failed: %s\n", DEVID_ADDR, strerror(errno)); */ return GET_DEV_ID_ERROR; } /* dword = __cpu_to_le32(dword); // Cable pages are read in LE, no need to swap */ *ptr_hw_dev_id = 0xffff; u_int8_t id = EXTRACT(dword, 0, 8); enum dm_dev_type cbl_type = getCableType(id); *ptr_hw_dev_id = id; u_int8_t paging; if (cbl_type == DM_QSFP_CABLE) { /* Get Byte 2 bit 2 ~ bit 18 (flat_mem : upper memory flat or paged. 0=paging, 1=page 0 only) */ paging = EXTRACT(dword, 18, 1); /* printf("DWORD: %#x, paging: %d\n", dword, paging); */ if (paging == 0) { *ptr_dm_dev_id = DeviceCableQSFPaging; } else { *ptr_dm_dev_id = DeviceCableQSFP; } } else if (cbl_type == DM_SFP_CABLE) { *ptr_dm_dev_id = DeviceCableSFP; if (mread4(mf, SFP_DIGITAL_DIAGNOSTIC_MONITORING_IMPLEMENTED_ADDR, &dword) != 4) { /* printf("FATAL - crspace read (0x%x) failed: %s\n", DEVID_ADDR, strerror(errno)); */ return GET_DEV_ID_ERROR; } u_int8_t byte = EXTRACT(dword, 6, 1); /* Byte 92 bit 6 (digital diagnostic monitoring implemented) */ if (byte) { *ptr_dm_dev_id = DeviceCableSFP51; if (mread4(mf, SFP_PAGING_IMPLEMENTED_INDICATOR_ADDR, &dword) != 4) { /* printf("FATAL - crspace read (0x%x) failed: %s\n", DEVID_ADDR, strerror(errno)); */ return GET_DEV_ID_ERROR; } byte = EXTRACT(dword, 4, 1); /* Byte 64 bit 4 (paging implemented indicator) */ if (byte) { *ptr_dm_dev_id = DeviceCableSFP51Paging; } } } else if (cbl_type == DM_CMIS_CABLE) { /* Get Byte 2 bit 7 ~ bit 23 (flat_mem : upper memory flat or paged. 0=paging, 1=page 0 only) */ paging = EXTRACT(dword, 23, 1); if (paging == 0) { *ptr_dm_dev_id = DeviceCableCMISPaging; } else { *ptr_dm_dev_id = DeviceCableCMIS; } } else { *ptr_dm_dev_id = DeviceUnknown; } return GET_DEV_ID_SUCCESS; } #endif /* ifdef CABLES_SUPP */ rc = mget_mdevs_flags(mf, &dev_flags); if (rc) { dev_flags = 0; } /* get hw id */ /* Special case for MLNX OS getting dev_id using REG MGIR */ if (dev_flags & MDEVS_MLNX_OS) { reg_access_status_t rc; struct reg_access_hca_mgir_ext mgir; memset(&mgir, 0, sizeof(mgir)); rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, &mgir); /* printf("-D- RC[%s] -- REVID: %d -- DEVID: %d hw_dev_id: %d\n", m_err2str(rc), mgir.HWInfo.REVID, */ /* mgir.HWInfo.DEVID, mgir.HWInfo.hw_dev_id); */ if (rc) { dword = get_entry(DeviceSwitchIB)->hw_dev_id; *ptr_hw_rev = 0; *ptr_hw_dev_id = get_entry(DeviceSwitchIB)->hw_dev_id; } else { dword = mgir.hw_info.hw_dev_id; if (dword == 0) { dword = get_entry(DeviceSwitchIB)->hw_dev_id; *ptr_hw_dev_id = get_entry(DeviceSwitchIB)->hw_dev_id; *ptr_hw_rev = mgir.hw_info.device_hw_revision & 0xf; } else { *ptr_hw_dev_id = dword; *ptr_hw_rev = 0; /* WA: MGIR should have also hw_rev_id and then we can use it. */ } } } else { if (mread4(mf, DEVID_ADDR, &dword) != 4) { return CRSPACE_READ_ERROR; } *ptr_hw_dev_id = EXTRACT(dword, 0, 16); *ptr_hw_rev = EXTRACT(dword, 16, 8); } *ptr_dm_dev_id = get_entry_by_dev_rev_id(*ptr_hw_dev_id, *ptr_hw_rev)->dm_id; return CHECK_PTR_DEV_ID; } /** * Returns 0 on success and 1 on failure. */ int dm_get_device_id(mfile* mf, dm_dev_id_t* ptr_dm_dev_id, u_int32_t* ptr_hw_dev_id, u_int32_t* ptr_hw_rev) { int return_value = 1; return_value = dm_get_device_id_inner(mf, ptr_dm_dev_id, ptr_hw_dev_id, ptr_hw_rev); if (return_value == CRSPACE_READ_ERROR) { printf("FATAL - crspace read (0x%x) failed: %s\n", DEVID_ADDR, strerror(errno)); return GET_DEV_ID_ERROR; } else if (return_value == CHECK_PTR_DEV_ID) { if (*ptr_dm_dev_id == DeviceUnknown) { /* Due to issue 2719128, we prefer to skip this device */ /* and not filter using the 'pciconf' FreeBSD tool */ #ifndef __FreeBSD__ /* Dev id not matched in array */ printf("FATAL - Can't find device id.\n"); #endif return MFE_UNSUPPORTED_DEVICE; } return GET_DEV_ID_SUCCESS; } return return_value; } /* Due to issue 2846942, added this function to be used on mdevices) */ int dm_get_device_id_without_prints(mfile * mf, dm_dev_id_t* ptr_dm_dev_id, u_int32_t * ptr_hw_dev_id, u_int32_t * ptr_hw_rev) { int return_value = 1; return_value = dm_get_device_id_inner(mf, ptr_dm_dev_id, ptr_hw_dev_id, ptr_hw_rev); if (return_value == CHECK_PTR_DEV_ID) { if (*ptr_dm_dev_id == DeviceUnknown) { return MFE_UNSUPPORTED_DEVICE; } return GET_DEV_ID_SUCCESS; } return return_value; } int dm_get_device_id_offline(u_int32_t devid, u_int32_t chip_rev, dm_dev_id_t* ptr_dev_type) { *ptr_dev_type = get_entry_by_dev_rev_id(devid, chip_rev)->dm_id; return *ptr_dev_type == DeviceUnknown ? MFE_UNSUPPORTED_DEVICE : MFE_OK; } const char* dm_dev_type2str(dm_dev_id_t type) { return get_entry(type)->name; } dm_dev_id_t dm_dev_str2type(const char* str) { const struct device_info* p = g_devs_info; if (!str) { return DeviceUnknown; } while (p->dm_id != DeviceUnknown) { if (strcmp(str, p->name) == 0) { return p->dm_id; } p++; } return DeviceUnknown; } dm_dev_id_t dm_dev_aproxstr2type(const char* str) { const struct device_info* p = g_devs_info; char d_str[256]; if (!str) { return DeviceUnknown; } while (p->dm_id != DeviceUnknown) { /* to lowercase */ unsigned short i; for (i = 0; i <= strlen(p->name); ++i) { if (((p->name)[i] >= 'A') && ((p->name)[i] <= 'Z')) { d_str[i] = (p->name)[i] + 'a' - 'A'; } else { d_str[i] = (p->name)[i]; } } if (strncmp(str, d_str, strlen(d_str)) == 0) { return p->dm_id; } p++; } return DeviceUnknown; } dm_dev_id_t dm_dev_sw_id2type(int sw_dev_id) { const struct device_info* p = g_devs_info; while (p->dm_id != DeviceUnknown) { if (sw_dev_id == p->sw_dev_id) { return p->dm_id; } p++; } return DeviceUnknown; } int dm_get_hw_ports_num(dm_dev_id_t type) { return get_entry(type)->port_num; } int dm_dev_is_hca(dm_dev_id_t type) { return (!dm_dev_is_dummy(type)) && (get_entry(type)->dev_type == DM_HCA); } int dm_dev_is_dummy(dm_dev_id_t type) { return type == DeviceDummy; } int dm_dev_is_gearbox(dm_dev_id_t type) { return (get_entry(type)->dev_type == DM_GEARBOX); } int dm_is_menhit(dm_dev_id_t type) { return type == DeviceMenhit || type == DeviceArcusPTC || type == DeviceArcusP || type == DeviceArcusE; } int dm_dev_is_200g_speed_supported_hca(dm_dev_id_t type) { bool isBlueField = (type == DeviceBlueField || type == DeviceBlueField2 || type == DeviceBlueField3); return !isBlueField && (dm_dev_is_hca(type) && (get_entry(type)->hw_dev_id >= get_entry(DeviceConnectX6)->hw_dev_id)); } int dm_dev_is_switch(dm_dev_id_t type) { return get_entry(type)->dev_type == DM_SWITCH; } int dm_dev_is_200g_speed_supported_switch(dm_dev_id_t type) { return (dm_dev_is_switch(type) && (get_entry(type)->hw_dev_id >= get_entry(DeviceQuantum)->hw_dev_id)); } int dm_dev_is_bridge(dm_dev_id_t type) { return get_entry(type)->dev_type == DM_BRIDGE; } int dm_dev_is_qsfp_cable(dm_dev_id_t type) { return get_entry(type)->dev_type == DM_QSFP_CABLE; } int dm_dev_is_sfp_cable(dm_dev_id_t type) { return get_entry(type)->dev_type == DM_SFP_CABLE; } int dm_dev_is_cmis_cable(dm_dev_id_t type) { return get_entry(type)->dev_type == DM_CMIS_CABLE; } int dm_dev_is_cable(dm_dev_id_t type) { return (type == DeviceCable || dm_dev_is_qsfp_cable(type) || dm_dev_is_sfp_cable(type) || dm_dev_is_cmis_cable(type)); } int dm_dev_is_retimer_arcuse(dm_dev_id_t type) { return get_entry(type)->dev_type == DM_RETIMER && type == DeviceArcusE; } u_int32_t dm_get_hw_dev_id(dm_dev_id_t type) { return get_entry(type)->hw_dev_id; } u_int32_t dm_get_hw_rev_id(dm_dev_id_t type) { return get_entry(type)->hw_rev_id; } int dm_is_fpp_supported(dm_dev_id_t type) { /* Function per port is supported only in HCAs that arrived after CX3 */ const struct device_info* dp = get_entry(type); return dm_is_5th_gen_hca(dp->dm_id); } int dm_is_device_supported(dm_dev_id_t type) { return get_entry(type)->dm_id != DeviceUnknown; } int dm_is_livefish_mode(mfile* mf) { if (!mf || !mf->dinfo) { return 0; } if (mf->tp == MST_SOFTWARE) { return 1; } dm_dev_id_t devid_t = DeviceUnknown; u_int32_t devid = 0; u_int32_t revid = 0; int rc = dm_get_device_id(mf, &devid_t, &devid, &revid); if (rc) { /* Could not detrmine , by default is not livefish */ return 0; } u_int32_t swid = mf->dinfo->pci.dev_id; /* printf("-D- swid: %#x, devid: %#x\n", swid, devid); */ if (dm_is_4th_gen(devid_t)) { return (devid == swid - 1); } else { return (devid == swid); } return 0; } int dm_is_4th_gen(dm_dev_id_t type) { return (type == DeviceConnectX3 || type == DeviceConnectX3Pro); } int dm_is_5th_gen_hca(dm_dev_id_t type) { return (dm_dev_is_hca(type) && !dm_is_4th_gen(type)); } int dm_is_connectib(dm_dev_id_t type) { return (type == DeviceConnectIB); } int dm_is_bw00(dm_dev_id_t type) { return (type == DeviceBW00); } int dm_is_cx7(dm_dev_id_t type) { return (type == DeviceConnectX7); } int dm_is_new_gen_switch(dm_dev_id_t type) { return dm_dev_is_switch(type); } int dm_dev_is_raven_family_switch(dm_dev_id_t type) { return (dm_dev_is_switch(type) && (type == DeviceQuantum || type == DeviceQuantum2 || type == DeviceQuantum3 || type == DeviceBW00 || type == DeviceSpectrum2 || type == DeviceSpectrum3 || type == DeviceSpectrum4)); } int dm_dev_is_ib_switch(dm_dev_id_t type) { return (dm_dev_is_switch(type) && (type == DeviceQuantum || type == DeviceQuantum2 || type == DeviceQuantum3 || type == DeviceBW00 || type == DeviceSwitchIB || type == DeviceSwitchIB2)); } int dm_dev_is_eth_switch(dm_dev_id_t type) { return (dm_dev_is_switch(type) && (type == DeviceSpectrum || type == DeviceSpectrum2 || type == DeviceSpectrum3 || type == DeviceSpectrum4)); } int dm_dev_is_fs3(dm_dev_id_t type) { return type == DeviceConnectIB || type == DeviceSwitchIB || type == DeviceConnectX4 || type == DeviceConnectX4LX || type == DeviceSpectrum || type == DeviceSwitchIB2; } int dm_dev_is_fs4(dm_dev_id_t type) { return type == DeviceConnectX5 || type == DeviceConnectX6 || type == DeviceConnectX6DX || type == DeviceConnectX6LX || type == DeviceConnectX7 || type == DeviceBlueField || type == DeviceBlueField2 || type == DeviceBlueField3 || type == DeviceQuantum || type == DeviceQuantum2 || type == DeviceSpectrum4 || type == DeviceSpectrum2 || type == DeviceSpectrum3 || type == DeviceGearBox || type == DeviceGearBoxManager; } int dm_dev_is_fs5(dm_dev_id_t type) { return type == DeviceConnectX8 || type == DeviceQuantum3 || type == DeviceBlueField4; } int dm_is_ib_access(mfile* mf) { return (mf->flags & MDEVS_IB); } mstflint-4.26.0/mlxconfig/0000755000175000017500000000000014522641737015676 5ustar tzafrirctzafrircmstflint-4.26.0/mlxconfig/mlxcfg_parser.cpp0000644000175000017500000005556214522641732021246 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #include #include #include #include "mlxcfg_ui.h" #include "mlxcfg_generic_commander.h" #include "mlxcfg_commander.h" #include "mlxcfg_view.h" #include "mlxcfg_utils.h" #include #include using namespace std; #define IDENT " " #define IDENT2 IDENT IDENT #define IDENT3 "\t\t" #define IDENT4 IDENT2 IDENT #define MAX_SESSION_TIME_IN_MINUTES 10080 // 1 week = 7 * 24 hours * 60 minutes static void printFlagLine(string flag_s, string flag_l, string param, string desc) { string flags = "-" + flag_s + "|--" + flag_l + (param.length() ? " <" + param + ">" : ""); printf(IDENT2 "%-16s", flags.c_str()); printf(IDENT3 ": %s\n", desc.c_str()); } #ifdef MTCR_UL #define DEVICE_NAME "device" #else #define DEVICE_NAME "mst device" #endif void MlxCfg::printHelp() { // print opening printf(IDENT "NAME:\n" IDENT2 MLXCFG_NAME "\n" IDENT "SYNOPSIS:\n" IDENT2 MLXCFG_NAME " [Options] [Parameters]\n"); printf(IDENT "DESCRIPTION:\n" IDENT2 "Allows the user to change some of the device configurations without having " "to\n" IDENT2 "create and burn a new firmware."); // print options printf("\n"); printf(IDENT "OPTIONS:\n"); printFlagLine("d", "dev", "device", "Perform operation for a specified MST device."); printFlagLine("b", "db", "filename", "Use a specific database file."); printFlagLine("f", "file", "conf_file", "raw configuration file."); printFlagLine("h", "help", "", "Display help message."); printFlagLine("v", "version", "", "Display version info."); printFlagLine("e", "enable_verbosity", "", "Show default and current configurations."); printFlagLine("y", "yes", "", "Answer yes in prompt."); printFlagLine("a", "all_attrs", "", "Show all attributes in the XML template"); printFlagLine("p", "private_key", "PKEY", "pem file for private key"); printFlagLine("u", "key_uuid", "UUID", "keypair uuid"); printFlagLine("eng", "openssl_engine", "ENGINE NAME", "OpenSSL engine name"); printFlagLine("k", "openssl_key_id", "IDENTIFIER", "OpenSSL key identifier"); printFlagLine("t", "device_type", "switch/hca", "Specify the device type"); // print commands printf("\n"); printf(IDENT "COMMANDS SUMMARY\n"); printf(IDENT2 "%-24s : %s\n", "clear_semaphore", "clear the tool semaphore."); printf(IDENT2 "%-24s : %s\n", "i|show_confs", "display information about all configurations."); printf(IDENT2 "%-24s : %s\n", "q|query", "query supported configurations."); printf(IDENT2 "%-24s : %s\n", "r|reset", "reset all configurations to their default value."); printf(IDENT2 "%-24s : %s\n", "s|set", "set configurations to a specific device."); printf(IDENT2 "%-24s : %s\n", "set_raw", "set raw configuration file(5th Generation and above)."); printf(IDENT2 "%-24s : %s\n", "get_raw", "get raw configuration (5th Generation and above)."); printf(IDENT2 "%-24s : %s\n", "backup", "backup configurations to a file. Use set_raw command to restore file (5th Generation and above)."); printf(IDENT2 "%-24s : %s\n", "gen_tlvs_file", "Generate List of all TLVs. TLVs output file name must be specified. (*)"); printf(IDENT2 "%-24s : %s\n", "g ", "Generate XML template. TLVs input file name and XML output file name must be specified. (*)"); printf(IDENT2 "%-24s : %s\n", "xml2raw", "Generate Raw file from XML file. XML input file name and raw output file name must be specified. (*)"); printf(IDENT2 "%-24s : %s\n", "raw2xml", "Generate XML file from Raw file. raw input file name and XML output file name must be specified. (*)"); printf(IDENT2 "%-24s : %s\n", "xml2bin", "Generate binary configuration dump file from XML file. XML input file name and bin output file name must " "be specified. (*)"); printf( IDENT2 "%-24s : %s\n", "create_conf", "Generate configuration file from XML file. XML input file name and bin output file name must be specified. (*)"); printf(IDENT2 "%-24s : %s\n", "apply", "Apply a configuration file, that was created with create_conf command. bin input file name must be " "specified. (*)"); // print supported commands printf("\n"); printf(IDENT "(*) These commands do not require MST device\n\n"); printf(IDENT "To show supported configurations by device type, run show_confs command\n"); printf("\n"); // print usage examples printf("\n"); printf(IDENT "Examples:\n"); printf(IDENT2 "%-35s: %s\n", "To query configurations", MLXCFG_NAME " -d " MST_DEV_EXAMPLE " query"); printf(IDENT2 "%-35s: %s\n", "To set configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE " set SRIOV_EN=1 NUM_OF_VFS=16 WOL_MAGIC_EN_P1=1"); printf(IDENT2 "%-35s: %s\n", "To set raw configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE2 " -f conf_file set_raw"); printf(IDENT2 "%-35s: %s\n", "To reset configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE " reset"); printf("\n"); } void MlxCfg::printVersion() { print_version_string(MLXCFG_NAME, ""); } void MlxCfg::printUsage() { printHelp(); } bool MlxCfg::tagExsists(string tag) { VECTOR_ITERATOR(ParamView, _mlxParams.setParams, it) { if (it->mlxconfigName == tag) { return true; } } return false; } inline const char* cmdNVInputFileTag(mlxCfgCmd cmd, const char* def) { return (cmd == Mc_XML2Raw || cmd == Mc_XML2Bin || cmd == Mc_CreateConf) ? "XML" : (cmd == Mc_Raw2XML) ? "Raw" : (cmd == Mc_GenXMLTemplate) ? "TLVs" : (cmd == Mc_Apply) ? "Configuration" : def; } inline const char* cmdNVOutputFileTag(mlxCfgCmd cmd, const char* def) { return (cmd == Mc_XML2Raw) ? "Raw" : (cmd == Mc_Raw2XML) ? "XML" : (cmd == Mc_GenXMLTemplate) ? "XML" : (cmd == Mc_XML2Bin) ? "Bin" : (cmd == Mc_CreateConf) ? "Configuration" : def; } mlxCfgStatus MlxCfg::extractNVInputFile(int argc, char* argv[]) { if (argc < 1) { return err(true, "%s input file is missing", cmdNVInputFileTag(_mlxParams.cmd, "")); } _mlxParams.NVInputFile = argv[0]; return MLX_CFG_OK; } mlxCfgStatus MlxCfg::extractNVOutputFile(int argc, char* argv[]) { if (argc < 1) { return err(true, "%s output file is missing", cmdNVOutputFileTag(_mlxParams.cmd, "")); } _mlxParams.NVOutputFile = argv[0]; return MLX_CFG_OK; } mlxCfgStatus MlxCfg::extractQueryCfgArgs(int argc, char* argv[]) { int i = 0; for (; i < argc; i++) { ParamView pv; string mlxconfigName = argv[i]; if (isIndexedMlxconfigName(mlxconfigName)) { string indexStr = parseIndexStr(mlxconfigName); vector indexes; bool isStartFromOneSupported = false; extractIndexes(indexStr, indexes); if (indexes.size() > 1) { size_t p = mlxconfigName.find('['); if (p == std::string::npos) { return err(true, "Expected a parameter with index"); } mlxconfigName = mlxconfigName.substr(0, p); isStartFromOneSupported = isIndexedStartFromOneSupported(mlxconfigName); VECTOR_ITERATOR(u_int32_t, indexes, it) { ParamView paramView; if (isStartFromOneSupported) { if ((int32_t)*it <= 0) { printf("-E- Index is out of range.Minimal index is 1\n"); return MLX_CFG_ERROR_NO_USAGE; } else { (*it)--; } } paramView.mlxconfigName = mlxconfigName + "[" + numToStr(*it) + "]"; _mlxParams.setParams.push_back(paramView); } continue; } else { size_t p = mlxconfigName.find('['); string subStr = mlxconfigName.substr(0, p); if (isIndexedStartFromOneSupported(subStr)) { if ((int32_t)indexes[0] <= 0) { printf("-E- Index is out of range.Minimal index is 1\n"); return MLX_CFG_ERROR_NO_USAGE; } pv.mlxconfigName = subStr + "[" + numToStr(indexes[0] - 1) + "]"; } else { pv.mlxconfigName = mlxconfigName; } } } else { pv.mlxconfigName = mlxconfigName; } _mlxParams.setParams.push_back(pv); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::extractSetCfgArgs(int argc, char* argv[]) { int i = 0; string tag, strVal; for (; i < argc; i++) { char* ptr; // get the tag ptr = strtok(argv[i], "="); if (!ptr) { return err(true, "Invalid Configuration argument %s", argv[i]); } tag = ptr; // hopefully its calling copy function. // get the val ptr = strtok(NULL, "="); if (!ptr) { return err(true, "Invalid Configuration argument %s", argv[i]); } strVal = ptr; if (strtok(NULL, "=")) { return err(true, "Invalid Configuration argument %s", argv[i]); } if (tagExsists(tag)) { return err(true, "Duplicate parameter, %s.", tag.c_str()); } ParamView pv; if (isIndexedMlxconfigName(tag)) { string indexStr = parseIndexStr(tag); vector indexes; extractIndexes(indexStr, indexes); bool isStartFromOneSupported = false; if (indexes.size() > 1) { size_t p = tag.find('['); if (p == std::string::npos) { return err(true, "Expected a parameter with index"); } string mlxconfigName = tag.substr(0, p); isStartFromOneSupported = isIndexedStartFromOneSupported(mlxconfigName); VECTOR_ITERATOR(u_int32_t, indexes, it) { ParamView paramView; paramView.setVal = strVal; if (isStartFromOneSupported) { if (*it == 0) { printf("-E- Index 0 is out of range.Minimal index is 1\n"); return MLX_CFG_ERROR_NO_USAGE; } else { (*it)--; } } paramView.mlxconfigName = mlxconfigName + "[" + numToStr(*it) + "]"; _mlxParams.setParams.push_back(paramView); } continue; } else { size_t p = tag.find('['); string subStr = tag.substr(0, p); if (isIndexedStartFromOneSupported(subStr)) { if (indexes[0] == 0) { printf("-E- Index 0 is out of range.Minimal index is 1\n"); return MLX_CFG_ERROR_NO_USAGE; } pv.mlxconfigName = subStr + "[" + numToStr(indexes[0] - 1) + "]"; } else { pv.mlxconfigName = tag; } } } else { pv.mlxconfigName = tag; } pv.setVal = strVal; _mlxParams.setParams.push_back(pv); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::getNumberFromString(const char* str, u_int32_t& num) { char* end = NULL; num = strtoul(str, &end, 0); if (*end != '\0') { return err(true, "argument is not a number: %s", str); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::parseArgs(int argc, char* argv[]) { mlxCfgStatus status = MLX_CFG_OK; int i = 1; for (; i < argc; i++) { string arg = argv[i]; if (arg == "-v" || arg == "--version") { printVersion(); return MLX_CFG_OK_EXIT; } else if (arg == "-h" || arg == "--help") { printHelp(); return MLX_CFG_OK_EXIT; } else if (arg == "-d" || arg == "--dev") { if (++i == argc) { return err(true, "missing device name"); } _mlxParams.device = argv[i]; } else if (arg == "-t" || arg == "--device_type") { if (++i == argc) { return err(true, "missing device type"); } Device_Type dType = getDeviceTypeFromString(argv[i]); if (dType == Device_Type::UNSUPPORTED_DEVICE) { return err(true, "Unsupported device name given, please specify \"switch\" or \"hca\"device type"); } _mlxParams.deviceType = dType; } else if (arg == "-b" || arg == "--db") { if (++i == argc) { return err(true, "missing database file name"); } _mlxParams.dbName = argv[i]; } else if (arg == "-y" || arg == "--yes") { _mlxParams.yes = true; } else if (arg == "-f" || arg == "--file") { if (++i == argc) { return err(true, "missing file name"); } _mlxParams.rawTlvFile = argv[i]; } else if (arg == "-e" || arg == "--enable_verbosity") { _mlxParams.enableVerbosity = true; } else if (arg == "-a" || arg == "--all_attrs") { _mlxParams.allAttrs = true; } else if (arg == "-p" || arg == "--private_key") { if (++i == argc) { return err(true, "missing file name"); } _mlxParams.privPemFile = argv[i]; } else if (arg == "-u" || arg == "--key_uuid") { if (++i == argc) { return err(true, "missing file name"); } _mlxParams.keyPairUUID = argv[i]; } else if (arg == "-eng" || arg == "--openssl_engine") { if (++i == argc) { return err(true, "missing OpenSSL engine"); } _mlxParams.opensslEngine = argv[i]; } else if (arg == "-k" || arg == "--openssl_key_id") { if (++i == argc) { return err(true, "missing OpenSSL key identifier"); } _mlxParams.opensslKeyId = argv[i]; } // hidden flag --force used to ignore parameter checks else if (arg == "--force") { _mlxParams.force = true; } else if (arg == "set" || arg == "s") { _mlxParams.cmd = Mc_Set; break; } else if (arg == "query" || arg == "q") { _mlxParams.cmd = Mc_Query; break; } else if (arg == "reset" || arg == "r") { _mlxParams.cmd = Mc_Reset; break; } else if (arg == "clear_semaphore") { _mlxParams.cmd = Mc_Clr_Sem; break; } else if (arg == "set_raw") { _mlxParams.cmd = Mc_Set_Raw; break; } else if (arg == "get_raw") { _mlxParams.cmd = Mc_Get_Raw; break; } else if (arg == "backup") { _mlxParams.cmd = Mc_Backup; break; } else if (arg == "gen_tlvs_file" || arg == "t") { _mlxParams.cmd = Mc_GenTLVsFile; break; } else if (arg == "gen_xml_template" || arg == "g") { _mlxParams.cmd = Mc_GenXMLTemplate; break; } else if (arg == "raw2xml") { _mlxParams.cmd = Mc_Raw2XML; break; } else if (arg == "xml2raw" || arg == "x") { _mlxParams.cmd = Mc_XML2Raw; break; } else if (arg == "xml2bin") { _mlxParams.cmd = Mc_XML2Bin; break; } else if (arg == "create_conf") { _mlxParams.cmd = Mc_CreateConf; break; } else if (arg == "apply") { _mlxParams.cmd = Mc_Apply; break; } else if (arg == "show_confs" || arg == "i") { _mlxParams.cmd = Mc_ShowConfs; break; } else { return err(true, "invalid argument: %s", arg.c_str()); } } i++; if (_mlxParams.cmd == Mc_UnknownCmd) { return err(true, "No command found. For more information please read the help message:"); } // we parsed input until the set/query/reset cmd if (i == argc && _mlxParams.cmd == Mc_Set) { return err(true, "missing configuration arguments. For more information please run " MLXCFG_NAME " -h|--help."); } if (i != argc && (_mlxParams.cmd == Mc_Reset)) { return err(true, "%s command expects no argument but %d argument received", "reset", argc - i); } if ((_mlxParams.cmd == Mc_Set || _mlxParams.cmd == Mc_Clr_Sem || _mlxParams.cmd == Mc_Set_Raw || _mlxParams.cmd == Mc_Get_Raw || _mlxParams.cmd == Mc_Backup || _mlxParams.cmd == Mc_ShowConfs || _mlxParams.cmd == Mc_Apply) && _mlxParams.device.length() == 0) { return err(true, "%s command expects device to be specified.", _mlxParams.cmd == Mc_Set ? "set" : _mlxParams.cmd == Mc_Set_Raw ? "set_raw" : _mlxParams.cmd == Mc_Get_Raw ? "get_raw" : _mlxParams.cmd == Mc_Clr_Sem ? "clear_semaphore" : _mlxParams.cmd == Mc_Backup ? "backup" : _mlxParams.cmd == Mc_Apply ? "apply" : "show_confs"); } if (((_mlxParams.cmd == Mc_Set_Raw || _mlxParams.cmd == Mc_Get_Raw) && _mlxParams.rawTlvFile.size() == 0)) { if (_mlxParams.cmd == Mc_Set_Raw) { return err(true, "set_raw command expects raw TLV file to be specified."); } else { return err(true, "get_raw command expects raw TLV file to be specified."); } } if ((_mlxParams.cmd == Mc_Backup && _mlxParams.rawTlvFile.size() == 0)) { return err(true, "backup command expects file to be specified."); } if ((((_mlxParams.cmd != Mc_Set_Raw && _mlxParams.cmd != Mc_Get_Raw) && _mlxParams.cmd != Mc_Backup) && _mlxParams.rawTlvFile.size() != 0)) { return err(true, "raw TLV file can only be specified with set_raw, get_raw and backup commands."); } if (_mlxParams.cmd == Mc_GenTLVsFile) { return extractNVOutputFile(argc - i, &(argv[i])); } if (_mlxParams.cmd == Mc_Apply) { return extractNVInputFile(argc - i, &(argv[i])); } if (_mlxParams.cmd == Mc_CreateConf) { if (!_mlxParams.privPemFile.empty() && (!_mlxParams.opensslEngine.empty() || !_mlxParams.opensslKeyId.empty())) { return err(true, "Please provide either private pem file or OpenSSL engine and key identifier " "but not both of them"); } if (!_mlxParams.keyPairUUID.empty() ^ (!_mlxParams.privPemFile.empty() || (!_mlxParams.opensslEngine.empty() && !_mlxParams.opensslKeyId.empty()))) { return err(true, "if you want to sign the configuration file you have to " "provide key pair UUID file with either private pem file " "or OpenSSL engine and key identifier"); } } if (_mlxParams.cmd == Mc_GenXMLTemplate || _mlxParams.cmd == Mc_XML2Raw || _mlxParams.cmd == Mc_Raw2XML || _mlxParams.cmd == Mc_XML2Bin || _mlxParams.cmd == Mc_CreateConf) { mlxCfgStatus rc = extractNVInputFile(argc - i, &(argv[i])); if (rc != MLX_CFG_OK) { return rc; } return extractNVOutputFile(argc - i - 1, &(argv[i + 1])); } try { if (_mlxParams.cmd == Mc_Query) { return extractQueryCfgArgs(argc - i, &(argv[i])); } else { return extractSetCfgArgs(argc - i, &(argv[i])); } } catch (MlxcfgException& e) { return err(true, "%s", e._err.c_str()); } } mstflint-4.26.0/mlxconfig/mlxcfg_db_manager.h0000644000175000017500000001044414522641732021464 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * MlxconfigFactory.h * * Created on: May 24, 2016 * Author: ahmads */ #ifndef MLXCFG_FACTORY_H_ #define MLXCFG_FACTORY_H_ #include #include #include "mlxcfg_tlv.h" #include "mlxcfg_param.h" #include enum SPLITBY { PORT, MODULE, }; class MlxcfgDBManager { private: std::string _dbName; sqlite3* _db; const unsigned int _supportedVersion; static int selectAndCreateNewTLVCallBack(void* object, int argc, char** argv, char** azColName); static int selectTLVCallBack(void*, int, char**, char**); static int selectAndCreateParamCallBack(void* object, int argc, char** argv, char** azColName); static int selectParamCallBack(void*, int, char**, char**); static int selectParamByMlxconfigNameCallBack(void*, int, char**, char**); void openDB(); void checkDBVersion(); inline bool isDBFileExists(const std::string& name); TLVConf* fetchTLVByName(std::string tlvName, u_int32_t port, int32_t module); TLVConf* fetchTLVByIndexAndClass(u_int32_t id, TLVClass c); public: MlxcfgDBManager(std::string dbName); ~MlxcfgDBManager(); std::string _callBackErr; bool _isAllFetched; bool isParamMlxconfigNameExist(std::string mlxconfigName); std::shared_ptr _paramSqlResult; std::vector fetchedTLVs; std::vector> fetchedParams; void getAllTLVs(); TLVConf* getTLVByNameAux(std::string tlvName, u_int32_t port, int32_t module); TLVConf* getTLVByNameOnlyAux(std::string tlvName); TLVConf* getAndSetTLVByNameAuxNotInitialized(string tlv_name, u_int32_t port, int32_t module); TLVConf* getTLVByIndexAndClassAux(u_int32_t id, TLVClass c); TLVConf* getTLVByName(std::string tlvName, u_int32_t port, int32_t module); TLVConf* getDependencyTLVByName(string tlvName, u_int32_t cTLVPort, int32_t cTLVModule); TLVConf* getAndCreateTLVByName(std::string tlvName, u_int32_t port, int32_t module); TLVConf* getTLVByParamMlxconfigName(std::string mlxconfigName, u_int32_t index, mfile* mf); TLVConf* findTLVInExisting(std::string mlxconfigName, std::string noPortModuleMlxcfgName, u_int32_t port, u_int32_t index, int32_t module); void findTLVInDB(std::string mlxconfigName, u_int32_t index); TLVConf* getTLVByIndexAndClass(u_int32_t id, TLVClass c); void fillInRelevantParamsOfTlv(TLVConf* tlv, u_int32_t port, int32_t module); static tuple getMlxconfigNamePortModule(std::string mlxconfigName, mfile* mf); static tuple splitMlxcfgNameAndPortOrModule(std::string mlxconfigName, SPLITBY splitBy, mfile* mf); void execSQL(sqlite3_callback f, void* obj, const char* stat, ...); }; #endif mstflint-4.26.0/mlxconfig/mlxcfg_param.h0000644000175000017500000001574014522641732020511 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_param.h * * Created on: May 24, 2016 * Author: ahmads */ #ifndef MLXCFG_PARAM_H_ #define MLXCFG_PARAM_H_ #include #include #include #include "mlxcfg_view.h" #include "mlxcfg_db_items.h" using namespace std; using namespace DB; class ParamValue { public: ParamValue(string size); ParamValue(u_int32_t size) : _size(size) {} virtual string getVal() = 0; virtual void setVal(string s) = 0; virtual void setVal(u_int32_t); virtual void setVal(vector); virtual void pack(u_int8_t* buff, u_int32_t offset) = 0; virtual void unpack(u_int8_t* buff, u_int32_t offset) = 0; virtual u_int32_t getIntVal(); virtual void parseValue(string, u_int32_t&, string&); virtual ~ParamValue(){}; protected: u_int32_t _size; }; class UnsignedParamValue : public ParamValue { public: UnsignedParamValue(string size) : ParamValue(size), _value(0x0) {} UnsignedParamValue(u_int32_t size) : ParamValue(size), _value(0x0) {} virtual string getVal(); virtual void setVal(string s); virtual void setVal(const u_int32_t); void pack(u_int8_t* buff, u_int32_t offset); void unpack(u_int8_t* buff, u_int32_t offset); u_int32_t getIntVal(); virtual void parseValue(string, u_int32_t&, string&); u_int32_t _value; protected: void parseValueAux(string, u_int32_t&, string&, int base = 0); }; class EnumParamValue : public UnsignedParamValue { public: EnumParamValue(string size, map textualValues); EnumParamValue(u_int32_t size, map textualValues); string getVal(); void setVal(string strVal); void setVal(u_int32_t val); void parseValue(string, u_int32_t&, string&); map _textualValues; }; class BoolParamValue : public EnumParamValue { public: BoolParamValue(string size); private: static map initBoolTextualValues(); }; class BinaryParamValue : public UnsignedParamValue { public: BinaryParamValue(string size) : UnsignedParamValue(size){}; BinaryParamValue(u_int32_t size) : UnsignedParamValue(size){}; string getVal(); void setVal(string val); void parseValue(string, u_int32_t&, string&); static void trimHexString(string& s); }; class StringParamValue : public ParamValue { public: StringParamValue(u_int32_t size) : ParamValue(size) {} string getVal(); void setVal(string s); void pack(u_int8_t* buff, u_int32_t bitOffset); void unpack(u_int8_t* buff, u_int32_t bitOffset); string _value; }; class BytesParamValue : public ParamValue { public: BytesParamValue(u_int32_t size) : ParamValue(size) {} using ParamValue::setVal; string getVal(); void setVal(string val); void setVal(const vector& buffVal); void parseValue(string, u_int32_t&, string&); void pack(u_int8_t* buff, u_int32_t offset); void unpack(u_int8_t* buff, u_int32_t offset); private: vector _bytes; }; class ArrayParamValue : public ParamValue { private: u_int32_t offsetToBigEndian(u_int32_t offset); public: ArrayParamValue(string size, u_int32_t count, enum ParamType paramType); ~ArrayParamValue(); using ParamValue::setVal; string getVal(); void setVal(string val); void setVal(vector vals); string getVal(u_int32_t index); void setVal(string val, u_int32_t index); u_int32_t getIntVal(); vector getIntVals(); vector getStrVals(); void parseValue(string, u_int32_t&, string&); void pack(u_int8_t* buff, u_int32_t offset); void unpack(u_int8_t* buff, u_int32_t offset); protected: u_int32_t _elementSizeInBits; vector _values; }; class EnumArrayParamValue : public ArrayParamValue { public: EnumArrayParamValue(string size, u_int32_t count, enum ParamType paramType, map textualValues); }; class Param { private: bool _isNameFound, _isTLVNameFound, _isOffsetFound, _isSizeFound, _isTypeFound, _isDescriptionFound, _isTextualValuesFound, _isMlxconfigNameFound, _isDependencyFound, _isValidBitFound, _isTempVarsFound, _isMinValFound, _isMaxValFound, _isRuleFound, _isRegexFound; public: string _name; string _tlvName; Offset* _offset; string _size; enum ParamType _type; string _description; map _textualValues; string _mlxconfigName; string _dependency; string _validBit; string _tempVars; string _minVal; string _maxVal; string _rule; string _regex; u_int32_t _port; int32_t _module; ParamValue* _value; u_int32_t _supportedFromVersion; u_int32_t _arrayLength; Param(int columnsCount, char** dataRow, char** headerRow); ~Param(); string getDisplayName(); void getView(ParamView& paramView); void helpAux(); void pack(u_int8_t* buff); void unpack(u_int8_t* buff); void setVal(string val); void setVal(string val, u_int32_t index); void setVal(vector vals); string getVal(); string getVal(u_int32_t index); void extractVars(vector& rulesVars, string rule); void getRulesTLV(vector& rulesTlvs); void genXMLTemplate(string& xmlTemplate, bool withVal); void genXMLTemplateAux(string& xmlTemplate, bool withVal, bool isPartOfArray, u_int32_t index); static enum ParamType str2ParamType(const char* s); static string paramType2Str(enum ParamType); static void str2TextualValuesMap(const char* s, map& m); }; #endif mstflint-4.26.0/mlxconfig/mlxcfg_tlv.cpp0000644000175000017500000010644714522641732020556 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_tlv.cpp * * Created on: May 24, 2016 * Author: ahmads */ #include #include #include #include #include #include #include #include #include #include #include "mlxcfg_tlv.h" #include using namespace mu; using namespace std; #define TLV_NAME_HEADER "name" #define TLV_ID_HEADER "id" #define TLV_CAP_HEADER "cap" #define TLV_TARGET_HEADER "target" #define TLV_CLASS_HEADER "class" #define TLV_VERSION_HEADER "version" #define TLV_SIZE_HEADER "size" #define TLV_DESCRIPTION_HEADER "description" #define TLV_MLXCONFIG_NAME_HEADER "mlxconfig_name" #define CHECK_IF_FIELD_FOUND(b, s) \ if (!b) \ { \ throw MlxcfgException("The TLVConf field %s was not initialized", s); \ } TLVConf::TLVConf(int columnsCount, char** dataRow, char** headerRow) : _isNameFound(false), _isIdFound(false), _isSizeFound(false), _isCapFound(false), _isTargetFound(false), _isClassFound(false), _isVersion(false), _isDescriptionFound(false), _isMlxconfigNameFound(false), _port(0), _module(-1), _maxTlvVersionSuppByFw(0) { for (int i = 0; i < columnsCount; i++) { if (strcmp(headerRow[i], TLV_NAME_HEADER) == 0) { _name = dataRow[i]; _isNameFound = true; } else if (strcmp(headerRow[i], TLV_ID_HEADER) == 0) { _id = atoi(dataRow[i]); _isIdFound = true; } else if (strcmp(headerRow[i], TLV_CAP_HEADER) == 0) { if (dataRow[i] == NULL) { _cap = false; } else { _cap = atoi(dataRow[i]); } _isCapFound = true; } else if (strcmp(headerRow[i], TLV_TARGET_HEADER) == 0) { _target = str2TLVTarget(dataRow[i]); _isTargetFound = true; } else if (strcmp(headerRow[i], TLV_CLASS_HEADER) == 0) { _tlvClass = str2TLVClass(dataRow[i]); _isClassFound = true; } else if (strcmp(headerRow[i], TLV_VERSION_HEADER) == 0) { _version = atoi(dataRow[i]); _isVersion = true; } else if (strcmp(headerRow[i], TLV_SIZE_HEADER) == 0) { _size = atoi(dataRow[i]); _isSizeFound = true; } else if (strcmp(headerRow[i], TLV_DESCRIPTION_HEADER) == 0) { _description = dataRow[i] ? dataRow[i] : ""; _isDescriptionFound = true; } else if (strcmp(headerRow[i], TLV_MLXCONFIG_NAME_HEADER) == 0) { _mlxconfigName = dataRow[i] ? dataRow[i] : ""; _isMlxconfigNameFound = true; } else { printf("UNKNOWN - %s = %s\n", headerRow[i], dataRow[i] ? dataRow[i] : "NULL"); } } CHECK_IF_FIELD_FOUND(_isNameFound, TLV_NAME_HEADER) CHECK_IF_FIELD_FOUND(_isIdFound, TLV_ID_HEADER) CHECK_IF_FIELD_FOUND(_isCapFound, TLV_CAP_HEADER) CHECK_IF_FIELD_FOUND(_isTargetFound, TLV_TARGET_HEADER) CHECK_IF_FIELD_FOUND(_isClassFound, TLV_CLASS_HEADER) CHECK_IF_FIELD_FOUND(_isVersion, TLV_VERSION_HEADER) CHECK_IF_FIELD_FOUND(_isSizeFound, TLV_SIZE_HEADER) CHECK_IF_FIELD_FOUND(_isDescriptionFound, TLV_DESCRIPTION_HEADER) CHECK_IF_FIELD_FOUND(_isMlxconfigNameFound, TLV_MLXCONFIG_NAME_HEADER) _alreadyQueried = false; if (_tlvClass == Physical_Port) { _attrs[PORT_ATTR] = "1"; } if (_tlvClass == Module) { _attrs[MODULE_ATTR] = "0"; } else if (_tlvClass == Per_Host_Per_Function) { _attrs[FUNC_ATTR] = "0"; _attrs[HOST_ATTR] = "0"; } _attrs[WRITER_ID_ATTR] = numToStr(WRITER_ID_UNSPECIFIED); _attrs[OVR_EN_ATTR] = "1"; _attrs[RD_EN_ATTR] = "1"; _attrs[PRIORITY_ATTR] = "MLNX"; _buff.resize(_size, 0); _isReadOnly = false; } TLVConf::~TLVConf() { VECTOR_ITERATOR(std::shared_ptr, this->_params, param) { param->reset(); } } int TLVConf::getMaxPort(mfile* mf) { reg_access_status_t rc; struct reg_access_hca_mgir_ext mgir; memset(&mgir, 0, sizeof(mgir)); rc = reg_access_mgir(mf, REG_ACCESS_METHOD_GET, &mgir); if (rc == ME_OK) { return mgir.hw_info.num_ports; } else { /*TODO adding implementation of mst device class*/ return 8; } } int TLVConf::getMaxModule() { /*TODO adding implementation of mst device class*/ return 1; } void TLVConf::CheckModuleAndPortMatchClass(int32_t module, u_int32_t port, string mlxconfigName) { if ((module != -1) && !this->isModuleTargetClass()) { string error = mlxconfigName + " doesn't have a module"; throw MlxcfgException(error.c_str()); } else if ((module == -1) && this->isModuleTargetClass()) { string error = mlxconfigName + " with no module does not exist"; throw MlxcfgException(error.c_str()); } if ((port != 0) && !this->isPortTargetClass()) { string error = mlxconfigName + " doesn't have a physical port"; throw MlxcfgException(error.c_str()); } else if ((port == 0) && this->isPortTargetClass()) { string error = mlxconfigName + " with no port does not exist"; throw MlxcfgException(error.c_str()); } } void TLVConf::getView(TLVConfView& tlvConfView, mfile* mf) { tlvConfView.name = _mlxconfigName; tlvConfView.description = _description; tlvConfView.tlvClass = _tlvClass; for (size_t j = 0; j < _params.size(); j++) { if (!_params[j]->_mlxconfigName.empty()) { if (this->isPortTargetClass()) { for (int i = 1; i <= getMaxPort(mf); i++) { ParamView paramView; _params[j]->getView(paramView); paramView.port = i; paramView.mlxconfigName += "_P" + to_string(i); tlvConfView.params.push_back(paramView); } } else if (this->isModuleTargetClass()) { for (int i = 0; i <= getMaxModule(); i++) { ParamView paramView; _params[j]->getView(paramView); paramView.module = i; paramView.mlxconfigName += "_M" + to_string(i); tlvConfView.params.push_back(paramView); } } else { ParamView paramView; _params[j]->getView(paramView); tlvConfView.params.push_back(paramView); } } } } // This function checks if the mlxconfig tool should support this TLV bool TLVConf::isMlxconfigSupported() { for (size_t i = 0; i < _params.size(); i++) { if (_params[i]->_mlxconfigName.empty() == false) { return true; } } return false; } // This function checks if the FW knows the TLV. bool TLVConf::isFWSupported(mfile* mf, bool isWriteOperation) { bool suppRead = false, suppWrite = false; // printf("-D- tlv=%s\n", _name.c_str()); if (nvqcCom5thGen(mf, getTlvTypeBe(), suppRead, suppWrite, _maxTlvVersionSuppByFw)) { // Don't throw exception if we fail to run nvqc, maybe its an old fw return false; } // EXP_ROM TLVs are SW2SW TLVs always have support read/write and // FW only support to return EXP_ROM TLV version through NVQC register if (_target != EXP_ROM) { if (suppRead && !suppWrite) { _isReadOnly = true; } if (!suppRead) { return false; } if (isWriteOperation && !suppWrite) { return false; } } return true; } void TLVConf::unpack(u_int8_t* buff) { VECTOR_ITERATOR(std::shared_ptr, _params, p) { (*p)->unpack(buff); } } void TLVConf::pack(u_int8_t* buff) { VECTOR_ITERATOR(std::shared_ptr, _params, p) { (*p)->pack(buff); } } void TLVConf::invalidate(mfile* mf) { MError mRc = nvdiCom5thGen(mf, getTlvTypeBe()); if (mRc) { throw MlxcfgException("Failed to reset %s settings %s", _name.c_str(), m_err2str(mRc)); } } u_int32_t TLVConf::getGlobalTypeBe() { struct tools_open_global_type type; u_int32_t tlvType = 0; type.param_class = (u_int8_t)_tlvClass; type.param_idx = _id; tools_open_global_type_pack(&type, (u_int8_t*)&tlvType); return tlvType; } u_int32_t TLVConf::getPhysicalPortTypeBe() { struct tools_open_per_port_type type; u_int32_t tlvType = 0; if (_attrs[PORT_ATTR] == ALL_ATTR_VAL) { type.param_class = Physical_Port_Common; type.port = 0; // port field is reserved } else { type.param_class = Physical_Port; type.port = _port; } type.param_idx = _id; tools_open_per_port_type_pack(&type, (u_int8_t*)&tlvType); return tlvType; } u_int32_t TLVConf::getModuleTypeBe() { struct tools_open_configuration_item_type_class_module type; u_int32_t tlvType = 0; type.type_class = Module; type.module_index = _module; type.parameter_index = _id; tools_open_configuration_item_type_class_module_pack(&type, (u_int8_t*)&tlvType); return tlvType; } u_int32_t TLVConf::getPerHostTypeBe() { u_int32_t tlvType = 0; struct tools_open_host_type type; memset(&type, 0x0, sizeof(type)); type.param_class = (u_int8_t)_tlvClass; type.param_idx = _id; tools_open_host_type_pack(&type, (u_int8_t*)&tlvType); return tlvType; } u_int32_t TLVConf::getPerHostFunctionTypeBe() { struct tools_open_per_host_type type; u_int32_t tlvType = 0, num = 0; string host = _attrs[HOST_ATTR], func = _attrs[FUNC_ATTR]; memset(&type, 0, sizeof(struct tools_open_per_host_type)); if ((host == ALL_ATTR_VAL) && (func == ALL_ATTR_VAL)) { type.param_class = All_Hosts_All_Functions; type.function = 0; type.host = 0; } else if ((host == ALL_ATTR_VAL) && (func != ALL_ATTR_VAL)) { type.param_class = All_Hosts_Per_Function; type.host = 0; if (!strToNum(_attrs[FUNC_ATTR], num)) { throw MlxcfgException(FUNC_ATTR " attribute value %s is not valid", func.c_str()); } type.function = num; } else if ((host != ALL_ATTR_VAL) && (func == ALL_ATTR_VAL)) { type.param_class = Per_Host_All_Functions; type.function = 0; if (!strToNum(_attrs[HOST_ATTR], num)) { throw MlxcfgException(HOST_ATTR " attribute value %s is not valid", host.c_str()); } type.host = num; } else if ((host != ALL_ATTR_VAL) && (func != ALL_ATTR_VAL)) { type.param_class = Per_Host_Per_Function; if (!strToNum(_attrs[HOST_ATTR], num)) { throw MlxcfgException(HOST_ATTR " attribute value %s is not valid", host.c_str()); } type.host = num; if (!strToNum(_attrs[FUNC_ATTR], num)) { throw MlxcfgException(FUNC_ATTR " attribute value %s is not valid", func.c_str()); } type.function = num; } type.param_idx = _id; tools_open_per_host_type_pack(&type, (u_int8_t*)&tlvType); return tlvType; } u_int32_t TLVConf::getTlvTypeBe() { switch (_tlvClass) { case Switch_Global: case NVFile: case Global: return getGlobalTypeBe(); case Physical_Port_Common: case Physical_Port: return getPhysicalPortTypeBe(); case All_Hosts_All_Functions: case All_Hosts_Per_Function: case Per_Host_All_Functions: case Per_Host_Per_Function: return getPerHostFunctionTypeBe(); case Per_Host: return getPerHostTypeBe(); case Module: return getModuleTypeBe(); default: break; } throw MlxcfgException("The tlv %s has unknown class %d", _name.c_str(), _tlvClass); } std::shared_ptr TLVConf::getValidBitParam(string n) { std::shared_ptr vP = getParamByName(n); if (!vP) { throw MlxcfgException("The valid bit %s in the tlv %s was not found\n", n.c_str(), _name.c_str()); } if ((vP->_type != UNSIGNED) && (vP->_type != INTEGER) && (vP->_type != ENUM) && (vP->_type != BOOLEAN_TYPE)) { throw MlxcfgException("The valid bit %s is of invalid type", n.c_str()); } return vP; } bool TLVConf::checkParamValidBit(std::shared_ptr p) { if (!p->_validBit.empty()) { std::shared_ptr vP = getValidBitParam(p->_validBit); if (!vP->_value) { return false; } } return true; } void TLVConf::mnva(mfile* mf, u_int8_t* buff, u_int16_t len, u_int32_t type, reg_access_method_t method, QueryType qT) { bool isSet = (method == REG_ACCESS_METHOD_SET); MError mRc = mnvaCom5thGen(mf, buff, len, type, method, qT); if (mRc) { // Todo: ask for this check: if ((mRc != ME_REG_ACCESS_RES_NOT_AVLBL) || isSet) { throw MlxcfgException("Failed to %s %s settings %s", isSet ? "set" : "get", _name.c_str(), m_err2str(mRc)); } } } void TLVConf::parseParamValue(string paramMlxconfigName, string valToParse, u_int32_t& val, string& strVal, u_int32_t index) { std::shared_ptr p = findParamByMlxconfigName(paramMlxconfigName); if (!p) { p = findParamByMlxconfigName(paramMlxconfigName + getArraySuffixByInterval(index)); } if (!p) { throw MlxcfgException("Unknown Parameter %s", paramMlxconfigName.c_str()); } p->_value->parseValue(valToParse, val, strVal); } vector > TLVConf::query(mfile* mf, QueryType qT) { bool defaultQueried = false; bool getDefault = (qT == QueryDefault); vector > queryResult; vector defaultBuff(_size, 0); mnva(mf, _buff.data(), _size, getTlvTypeBe(), REG_ACCESS_METHOD_GET, qT); unpack(_buff.data()); VECTOR_ITERATOR(std::shared_ptr, _params, it) { ParamView paramView; std::shared_ptr p = *(it); p->_port = this->_port; p->_module = this->_module; if (this->isPortTargetClass() && (p->_mlxconfigName != "")) { auto namePortTuple = MlxcfgDBManager::splitMlxcfgNameAndPortOrModule(p->_mlxconfigName, PORT, mf); if (get<1>(namePortTuple) != 0) { p->_mlxconfigName = get<0>(namePortTuple); } p->_mlxconfigName += "_P" + to_string(p->_port); } else if (this->isModuleTargetClass() && (p->_mlxconfigName != "")) { auto nameModuleTuple = MlxcfgDBManager::splitMlxcfgNameAndPortOrModule(p->_mlxconfigName, MODULE, mf); if (get<1>(nameModuleTuple) != -1) { p->_mlxconfigName = get<0>(nameModuleTuple); } p->_mlxconfigName += "_M" + to_string(p->_module); } if (!getDefault && !checkParamValidBit(p)) { // then take default value if (!defaultQueried) { mnva(mf, defaultBuff.data(), _size, getTlvTypeBe(), REG_ACCESS_METHOD_GET, QueryDefault); defaultQueried = true; } p->unpack(defaultBuff.data()); } if (p->_mlxconfigName.empty() || (p->_supportedFromVersion > _maxTlvVersionSuppByFw)) { continue; } p->getView(paramView); queryResult.push_back(make_pair(paramView, p->_dependency)); } return queryResult; } void TLVConf::updateParamByMlxconfigName(string paramMlxconfigName, string val, mfile* mf) { std::shared_ptr p = findParamByMlxconfigNamePortModule(paramMlxconfigName, this->_port, this->_module); if (!p) { auto ret = MlxcfgDBManager::getMlxconfigNamePortModule(paramMlxconfigName, mf); p = findParamByMlxconfigNamePortModule(get<0>(ret), get<1>(ret), get<2>(ret)); if (!p) { throw MlxcfgException("Unknown parameter: %s", paramMlxconfigName.c_str()); } } p->setVal(val); // check if there is a valid bit if (!p->_validBit.empty()) { (getValidBitParam(p->_validBit))->_value->setVal(1); } } void TLVConf::updateParamByMlxconfigName(string paramMlxconfigName, string val, u_int32_t index) { std::shared_ptr p = findParamByMlxconfigName(paramMlxconfigName); if (!p) { p = findParamByMlxconfigName(paramMlxconfigName + getArraySuffixByInterval(index)); } if (!p) { throw MlxcfgException("Unknown parameter: %s", paramMlxconfigName.c_str()); } p->setVal(val, index % MAX_ARRAY_SIZE); } void TLVConf::updateParamByName(string paramName, string val) { std::shared_ptr p = NULL; VECTOR_ITERATOR(std::shared_ptr, _params, it) { if (paramName == (*it)->_name) { p = *it; break; } } if (!p) { throw MlxcfgException("Unknown parameter %s of the configuration %s", paramName.c_str(), _name.c_str()); } p->setVal(val); // check if there is a valid bit if (!p->_validBit.empty()) { (getValidBitParam(p->_validBit))->_value->setVal(1); } } void TLVConf::updateParamByName(string paramName, vector vals) { std::shared_ptr p = NULL; VECTOR_ITERATOR(std::shared_ptr, _params, it) { if (paramName == (*it)->_name) { p = *it; break; } } if (!p) { throw MlxcfgException("Unknown parameter %s of the configuration %s", paramName.c_str(), _name.c_str()); } p->setVal(vals); } bool TLVConf::isAStringParam(string paramName) { std::shared_ptr param = getParamByName(paramName); if (!param) { throw MlxcfgException("Unknown parameter %s of the configuration %s", paramName.c_str(), _name.c_str()); } return (param->_type == STRING); } TLVTarget TLVConf::str2TLVTarget(char* s) { if (strcmp(s, "NIC") == 0) { return NIC; } else if (strcmp(s, "EXP_ROM") == 0) { return EXP_ROM; } else if (strcmp(s, "NIC-internal") == 0) { return NIC_INTERNAL; } else if (strcmp(s, "SWITCH") == 0) { return SWITCH; } throw MlxcfgException("Unknown target '%s'", s); } TLVClass TLVConf::str2TLVClass(char* s) { int i = atoi(s); switch (i) { case 0: return Global; case 1: return Physical_Port; case 2: return BMC; case 3: return Per_Host_Per_Function; case 6: return NVFile; case 7: return Per_Host; case 8: return Switch_Global; case 9: return Module; } throw MlxcfgException("Unknown TLV class %d", i); } std::shared_ptr TLVConf::getParamByName(string n) { for (size_t i = 0; i < _params.size(); i++) { std::shared_ptr p = _params[i]; if (n == p->_name) { return p; } } return NULL; } std::shared_ptr TLVConf::findParamByMlxconfigName(string mlxconfigname) { VECTOR_ITERATOR(std::shared_ptr, _params, it) { if (mlxconfigname == (*it)->_mlxconfigName) { return *it; } } return NULL; } std::shared_ptr TLVConf::findParamByMlxconfigNamePortModule(string mlxconfigname, u_int32_t port, int32_t module) { VECTOR_ITERATOR(std::shared_ptr, _params, it) { if ((mlxconfigname == (*it)->_mlxconfigName) && (port == (*it)->_port) && (module == (*it)->_module)) { return *it; } } return NULL; } std::shared_ptr TLVConf::findParamByName(string name) { VECTOR_ITERATOR(std::shared_ptr, _params, it) { if (name == (*it)->_name) { return *it; } } return NULL; } u_int32_t TLVConf::getParamValueByName(string n) { std::shared_ptr p = getParamByName(n); if (!p) { throw MlxcfgException("The parameter %s was not found", n.c_str()); } return p->_value->getIntVal(); } void evalExpr(string expr, string var, u_int32_t& varVal, u_int32_t& exprResult) { double x = 0; mu::Parser p; try { if (!var.empty()) { p.DefineVar(var, &x); } p.SetExpr(expr); exprResult = (u_int32_t)p.Eval(); varVal = (u_int32_t)x; } catch (Parser::exception_type& /*e*/) { throw MlxcfgException("Error parsing mathematical expression"); } } void TLVConf::getExprVarsValues(vector& vars, vector ruleTLVs, map& var2ValMap, string expr) { std::shared_ptr vP = NULL; // find value of all vars(w/o temp vars) in the tempVars string: VECTOR_ITERATOR(string, vars, i) { string var = *i; // TODO: make sure: assume temp var starts with '_' if ((var[0] != '_' /*&& !isTempVarsExpr*/) && (var2ValMap.find(var) == var2ValMap.end())) { size_t pos = var.find('.'); if (pos == string::npos) { // the var is in the same tlv or it is a temp var vP = getParamByName(var); } else { string tlvName = var.substr(0, pos); VECTOR_ITERATOR(TLVConf*, ruleTLVs, k) { if ((*k)->_name == tlvName) { vP = (*k)->getParamByName(var.substr(pos + 1)); // printf("tlvName=%s p=%s val=%d\n", tlvName.c_str(), vP->_name.c_str(), vP->_value); break; } } } if (vP == NULL) { throw MlxcfgException("The parameter %s in the rule %s was not found\n", var.c_str(), expr.c_str()); } var2ValMap[var] = vP->_value->getIntVal(); } } } void substituteVarsValues(string orgExpr, string& expr, map& var2ValMap, bool isTempVars, string& tempVar) { string var = ""; expr = ""; tempVar = ""; for (unsigned int j = 0; j < orgExpr.size(); j++) { if (orgExpr[j] == '$') { var = ""; j++; while (j < orgExpr.size() && (orgExpr[j] == '_' || orgExpr[j] == '.' || ('a' <= orgExpr[j] && orgExpr[j] <= 'z') || ('A' <= orgExpr[j] && orgExpr[j] <= 'Z') || ('0' <= orgExpr[j] && orgExpr[j] <= '9'))) { var += orgExpr[j]; j++; } if ((var[0] == '_') && isTempVars) { tempVar = var.substr(1); expr += tempVar; } else { stringstream ss; ss << var2ValMap[var]; expr += ss.str(); } if (j < orgExpr.size()) { expr += orgExpr[j]; } } else { expr += orgExpr[j]; } } // eval temp vars values and update the map: } void TLVConf::evalTempVars(std::shared_ptr p, vector ruleTLVs, map& var2ValMap) { vector vars; p->extractVars(vars, p->_tempVars); getExprVarsValues(vars, ruleTLVs, var2ValMap, p->_tempVars); // Substitute vars (w/o temp vars) with value: string expr = ""; string orgExpr = p->_tempVars; string var = ""; string tempVar = ""; substituteVarsValues(orgExpr, expr, var2ValMap, true, tempVar); u_int32_t v, r; evalExpr(expr, tempVar, v, r); var2ValMap['_' + tempVar] = v; } u_int32_t TLVConf::evalRule(std::shared_ptr p, string rule, vector& ruleTLVs, map& var2ValMap) { string expr = ""; string orgExpr = rule; string var = ""; string temp = ""; vector vars; p->extractVars(vars, rule); getExprVarsValues(vars, ruleTLVs, var2ValMap, rule); substituteVarsValues(orgExpr, expr, var2ValMap, false, temp); u_int32_t v, r; evalExpr(expr, temp, v, r); return r; } void TLVConf::checkRules(vector ruleTLVs) { VECTOR_ITERATOR(std::shared_ptr, _params, it) { std::shared_ptr p = *it; map var2ValMap; if (p->_supportedFromVersion > _maxTlvVersionSuppByFw) { continue; } // first, find values of temp vars if (!p->_tempVars.empty()) { evalTempVars(p, ruleTLVs, var2ValMap); } if (!p->_maxVal.empty()) { u_int32_t r = evalRule(p, p->_maxVal, ruleTLVs, var2ValMap); if (p->_value->getIntVal() > r) { throw MlxcfgException("Parameter %s' value is larger than maximum allowed %d", p->_mlxconfigName.c_str(), r); } } if (!p->_minVal.empty()) { u_int32_t r = evalRule(p, p->_minVal, ruleTLVs, var2ValMap); if (p->_value->getIntVal() < r) { throw MlxcfgException("Parameter %s' value is smaller than minimum allowed %d", p->_mlxconfigName.c_str(), r); } } if (!p->_rule.empty()) { if (evalRule(p, p->_rule, ruleTLVs, var2ValMap) == 0) { string paramsList = ""; vector vars; p->extractVars(vars, p->_tempVars); p->extractVars(vars, p->_rule); VECTOR_ITERATOR(string, vars, it) { if (((*it).find('_') == 0) || (paramsList.find(*it) != string::npos)) { continue; } paramsList += (*it) + ", "; } throw MlxcfgException( "The Parameter %s has Illegal constraint.\n" "Note: The constraint of this parameter is affected by the following parameters:\n%s", p->_mlxconfigName.c_str(), (paramsList.size() <= 2) ? "" : (paramsList.substr(0, paramsList.size() - 2)).c_str()); } } } } void TLVConf::setOnDevice(mfile* mf) { pack(_buff.data()); mnva(mf, _buff.data(), _size, getTlvTypeBe(), REG_ACCESS_METHOD_SET); } void TLVConf::getRuleTLVs(std::set& result) { VECTOR_ITERATOR(std::shared_ptr, _params, p) { vector rulesTLV; (*p)->getRulesTLV(rulesTLV); VECTOR_ITERATOR(string, rulesTLV, r) { result.insert(*r); // printf("-D- rule TLV: %s\n", r->c_str()); } } return; } void TLVConf::genXMLTemplate(string& xmlTemplate, bool allAttrs, bool withVal, bool defaultAttrVal) { map attrs; if (this->isPortTargetClass()) { attrs[PORT_ATTR] = defaultAttrVal ? ALL_ATTR_VAL : _attrs[PORT_ATTR]; } else if (this->isModuleTargetClass()) { attrs[MODULE_ATTR] = defaultAttrVal ? ALL_ATTR_VAL : _attrs[MODULE_ATTR]; } else if ((_tlvClass == Per_Host_Per_Function) && allAttrs) { attrs[HOST_ATTR] = defaultAttrVal ? ALL_ATTR_VAL : _attrs[HOST_ATTR]; attrs[FUNC_ATTR] = defaultAttrVal ? ALL_ATTR_VAL : _attrs[FUNC_ATTR]; } if (allAttrs) { attrs[OVR_EN_ATTR] = defaultAttrVal ? "1" : _attrs[OVR_EN_ATTR]; attrs[RD_EN_ATTR] = defaultAttrVal ? "1" : _attrs[RD_EN_ATTR]; attrs[PRIORITY_ATTR] = defaultAttrVal ? MLNX_PRIORITY_ATTR : _attrs[PRIORITY_ATTR]; attrs[WRITER_ID_ATTR] = defaultAttrVal ? numToStr(WRITER_ID_UNSPECIFIED) : _attrs[WRITER_ID_ATTR]; } xmlTemplate = "<" + _name; MAP_ITERATOR(string, string, attrs, it) { xmlTemplate += " " + it->first + "='" + it->second + "'"; } xmlTemplate += ">\n\n"; VECTOR_ITERATOR(std::shared_ptr, _params, it) { string paramXMLTemplate; (*it)->genXMLTemplate(paramXMLTemplate, withVal); vector lines = splitStr(paramXMLTemplate, '\n'); VECTOR_ITERATOR(string, lines, line) { xmlTemplate += "\t" + *line + "\n"; } xmlTemplate += "\n"; } xmlTemplate += ""; } bool TLVConf::isPortTargetClass() { return this->_tlvClass == 1; } bool TLVConf::isModuleTargetClass() { return this->_tlvClass == 9; } void TLVConf::unpackTLVType(TLVClass tlvClass, tools_open_tlv_type& type, u_int32_t& id) { struct tools_open_global_type global; struct tools_open_host_type per_host; struct tools_open_per_port_type per_port; struct tools_open_configuration_item_type_class_module per_module; struct tools_open_per_host_type per_host_function; switch (tlvClass) { case Switch_Global: case NVFile: case Global: // printf("-D- global\n"); tools_open_global_type_unpack(&global, (u_int8_t*)&(type.tlv_type_dw.tlv_type_dw)); // printf("-D- id=%d\n", global.param_idx); id = global.param_idx; type.global = global; break; case Physical_Port_Common: case Physical_Port: tools_open_per_port_type_unpack(&per_port, (u_int8_t*)&(type.tlv_type_dw.tlv_type_dw)); id = per_port.param_idx; type.per_port = per_port; break; case All_Hosts_All_Functions: case All_Hosts_Per_Function: case Per_Host_All_Functions: case Per_Host_Per_Function: tools_open_per_host_type_unpack(&per_host_function, (u_int8_t*)&(type.tlv_type_dw.tlv_type_dw)); id = per_host_function.param_idx; type.per_host = per_host_function; break; case Module: tools_open_configuration_item_type_class_module_unpack(&per_module, (u_int8_t*)&(type.tlv_type_dw.tlv_type_dw)); id = per_module.parameter_index; type.per_module = per_module; break; case Per_Host: tools_open_host_type_unpack(&per_host, (u_int8_t*)&(type.tlv_type_dw.tlv_type_dw)); id = per_host.param_idx; type.host = per_host; break; default: throw MlxcfgException("Unknown TLV class %d", (u_int32_t)tlvClass); } } void TLVConf::setAttr(string attr, string val) { if (_attrs.find(attr) == _attrs.end()) { throw MlxcfgException("%s attribute does not apply to tlv %s", attr.c_str(), _name.c_str()); } else { _attrs[attr] = val; } } void TLVConf::genRaw(string& raw) { vector buff; ostringstream buffSS; genBin(buff); for (unsigned int i = 0; i < buff.size(); i++) { buff.data()[i] = __be32_to_cpu(buff.data()[i]); buffSS << "0x"; buffSS << std::setfill('0') << std::setw(8) << std::hex; buffSS << buff.data()[i] << " "; } raw = buffSS.str(); } int PriorityStrToNum(string priority) { if (priority == USER_PRIORITY_ATTR) { return 0; } if (priority == OEM_PRIORITY_ATTR) { return 1; } if (priority == MLNX_PRIORITY_ATTR) { return 3; } return -1; } string PriorityNumToStr(u_int8_t priority) { switch (priority) { case 0: return USER_PRIORITY_ATTR; case 1: return OEM_PRIORITY_ATTR; case 3: return MLNX_PRIORITY_ATTR; default: return "ERROR"; } } void TLVConf::genBin(vector& buff, bool withHeader) { u_int32_t writer_id, rd_en, ovr_en; int priority; tools_open_nv_hdr_fifth_gen hdr; if (withHeader) { u_int32_t hdrSize = tools_open_nv_hdr_fifth_gen_size(); buff.resize((_size + hdrSize) >> 2); memset(&hdr, 0, sizeof(hdr)); hdr.length = _size; if (!strToNum(_attrs[WRITER_ID_ATTR], writer_id)) { throw MlxcfgException("Illegal value for " WRITER_ID_ATTR); } hdr.writer_id = (u_int8_t)writer_id; if (!strToNum(_attrs[RD_EN_ATTR], rd_en) || (rd_en > 1)) { throw MlxcfgException("Illegal value for " RD_EN_ATTR); } hdr.rd_en = (u_int8_t)rd_en; if (!strToNum(_attrs[OVR_EN_ATTR], ovr_en) || (ovr_en > 1)) { throw MlxcfgException("Illegal value for " OVR_EN_ATTR); } hdr.over_en = (u_int8_t)ovr_en; priority = PriorityStrToNum(_attrs[PRIORITY_ATTR]); if (priority < 0) { throw MlxcfgException("%s is Illegal value for %s", _attrs[PRIORITY_ATTR].c_str(), PRIORITY_ATTR); } hdr.priority = (u_int8_t)priority; hdr.type.tlv_type_dw.tlv_type_dw = __be32_to_cpu(getTlvTypeBe()); tools_open_nv_hdr_fifth_gen_pack(&hdr, (u_int8_t*)buff.data()); pack((u_int8_t*)buff.data() + hdrSize); } else { buff.resize(_size >> 2); pack((u_int8_t*)buff.data()); } } mstflint-4.26.0/mlxconfig/mlxcfg_utils.cpp0000644000175000017500000003535314522641732021106 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_utils.cpp * * Created on: Jun 21, 2016 * Author: ahmads */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "mlxcfg_utils.h" #include "common/tools_regex.h" using namespace std; typedef struct reg_access_hca_mqis_reg_ext mqisReg; #define MAX_REG_DATA 128 void dealWithSignal() { int sig; sig = mft_signal_is_fired(); if (sig) { // reset received signal mft_signal_set_fired(0); // retore prev handler mft_signal_set_handling(0); // raise signal to let the previous handle deal with it. raise(sig); } mft_signal_set_handling(0); return; } MError mnvaCom5thGen(mfile* mf, u_int8_t* buff, u_int16_t len, u_int32_t tlvType, reg_access_method_t method, QueryType qT) { struct tools_open_mnvda mnvaTlv; memset(&mnvaTlv, 0, sizeof(struct tools_open_mnvda)); if (method == REG_ACCESS_METHOD_GET && mf->tp != MST_IB) { mnvaTlv.nv_hdr.length = sizeof(mnvaTlv.data); } else { mnvaTlv.nv_hdr.length = len; } mnvaTlv.nv_hdr.rd_en = 0; mnvaTlv.nv_hdr.over_en = 1; mnvaTlv.nv_hdr.writer_id = WRITER_ID_ICMD_MLXCONFIG; if (qT == QueryDefault) { mnvaTlv.nv_hdr.default_ = 1; } else if (qT == QueryCurrent) { mnvaTlv.nv_hdr.read_current = 1; } // tlvType should be in the correct endianess mnvaTlv.nv_hdr.type.tlv_type_dw.tlv_type_dw = __be32_to_cpu(tlvType); memcpy(mnvaTlv.data, buff, len); MError rc; // "suspend" signals as we are going to take semaphores mft_signal_set_handling(1); // DEBUG_PRINT_SEND(&mnvaTlv, nvda); rc = reg_access_mnvda(mf, method, &mnvaTlv); // DEBUG_PRINT_RECEIVE(&mnvaTlv, nvda); dealWithSignal(); if (rc) { return rc; } memcpy(buff, mnvaTlv.data, len); return ME_OK; } MError nvqcCom5thGen(mfile* mf, u_int32_t tlvType, bool& suppRead, bool& suppWrite, u_int32_t& version) { struct reg_access_hca_mnvqc_reg_ext nvqcTlv; memset(&nvqcTlv, 0, sizeof(struct reg_access_hca_mnvqc_reg_ext)); // tlvType should be in the correct endianess nvqcTlv.type = __be32_to_cpu(tlvType); MError rc; // "suspend" signals as we are going to take semaphores mft_signal_set_handling(1); rc = reg_access_mnvqc(mf, REG_ACCESS_METHOD_GET, &nvqcTlv); dealWithSignal(); if (rc) { return rc; } suppRead = nvqcTlv.support_rd; suppWrite = nvqcTlv.support_wr; version = nvqcTlv.version; // printf("-D- nvqcTlv.support_rd=%d nvqcTlv.support_wr=%d\n", nvqcTlv.support_rd, nvqcTlv.support_wr); return ME_OK; } MError nvdiCom5thGen(mfile* mf, u_int32_t tlvType) { struct reg_access_hca_mnvdi_reg_ext nvdiTlv; memset(&nvdiTlv, 0, sizeof(struct reg_access_hca_mnvdi_reg_ext)); nvdiTlv.configuration_item_header.length = 0; // nvdiTlv.configuration_item_header.rd_en = 0; // nvdiTlv.configuration_item_header.over_en = 1; // ask Dan // tlvType should be in the correct endianess u_int32_t reversed = __be32_to_cpu(tlvType); u_int8_t* ptr_buff = (u_int8_t*)&reversed; reg_access_hca_config_item_type_auto_ext_pack(&nvdiTlv.configuration_item_header.type, ptr_buff); int type_class = __be32_to_cpu(tlvType) & 0xF000; printf("type_class = %d\n", type_class); // should be some number between 0-9 MError rc; // "suspend" signals as we are going to take semaphores mft_signal_set_handling(1); // DEBUG_PRINT_SEND(&nvdiTlv, nvdi); rc = reg_access_mnvdi(mf, REG_ACCESS_METHOD_SET, &nvdiTlv); // DEBUG_PRINT_RECEIVE(&nvdiTlv, nvdi); dealWithSignal(); if (rc) { return rc; } return ME_OK; } bool strToNum(string str, u_int32_t& num, int base) { char* endp; char* numStr = strcpy(new char[str.size() + 1], str.c_str()); unsigned long tmpNum = strtoul(numStr, &endp, base); if (*endp) { delete[] numStr; return false; } delete[] numStr; // errno will only be set in 32bit arch, in 64bit it can parse much larger numbers, which will be cought on the // second part if (errno == ERANGE || (tmpNum > 0xFFFFFFFF)) { throw MlxcfgException("value is out of range"); } num = tmpNum; return true; } string numToStr(u_int32_t num, bool isHex) { stringstream ss; if (isHex) { ss << std::uppercase << "0x" << std::hex; } ss << num; return ss.str(); } string numToStrFormatted(u_int32_t num, bool isHex) { stringstream ss; if (isHex) { ss << std::uppercase << std::hex; } ss << std::setfill('0') << std::setw(8) << num; return ss.str(); } vector splitStr(const string s, char d) { vector v; stringstream ss(s); string to; while (std::getline(ss, to, d)) { v.push_back(to); } return v; } string mlxcfg_ltrim(string s) { const char* cs = s.c_str(); while (isspace(*cs)) { cs++; } return string(cs); } string mlxcfg_rtrim(string s) { // todo rewrite it unsigned int i = s.size(); if (i == 0) { return s; } while (--i > 0 && isspace(s[i])) { ; } if (i == 0 && isspace(s[i])) { return ""; } return s.substr(0, i + 1); } string mlxcfg_trim(string s) { return mlxcfg_rtrim(mlxcfg_ltrim(s)); } string writerIdToStr(WriterId writerId) { switch (writerId) { case WRITER_ID_UNSPECIFIED: return "Unspecified"; case WRITER_ID_CHASSIS_BMC: return "Chassis BMC"; case WRITER_ID_MAD: return "MAD"; case WRITER_ID_BMC: return "BMC"; case WRITER_ID_CMD_IF: return "CMD IF"; case WRITER_ID_ICMD: return "ICMD"; case WRITER_ID_ICMD_UEFI_HII: return "ICMD UEFI HII"; case WRITER_ID_ICMD_UEFI_CLP: return "ICMD UEFI CLP"; case WRITER_ID_ICMD_FLEXBOOT: return "ICMD FLEXBOOT"; case WRITER_ID_ICMD_MLXCONFIG: return "ICMD MLXCONFIG"; case WRITER_ID_ICMD_USER1: return "ICMD USER1"; case WRITER_ID_ICMD_USER2: return "ICMD USER2"; case WRITER_ID_ICMD_MLXCONFIG_SET_RAW: return "ICMD MLXCONFIG SET RAW"; case WRITER_ID_OTHER: return "OTHER"; default: return "Unknown"; } }; void copyDwVectorToBytesVector(const vector& dwV, vector& bV) { bV.resize(dwV.size() << 2); memcpy(bV.data(), dwV.data(), bV.size()); } void copyBytesVectorToDwVector(const vector& bV, vector& dwV) { dwV.resize(bV.size() >> 2); memcpy(dwV.data(), bV.data(), bV.size()); } string parseIndexStr(const string& indexedMlxconfigName) { size_t pl = indexedMlxconfigName.find('['); size_t pr = indexedMlxconfigName.find(']'); if (pl == std::string::npos || pr == std::string::npos) { throw MlxcfgException("Expected a parameter with index"); } return indexedMlxconfigName.substr(pl + 1, pr - pl - 1); } string increaseIndexIfNeeded(const string& name) { string increasedName = name; if (isIndexedMlxconfigName(name)) { size_t pl = name.find('['); size_t pr = name.find(']'); if (isIndexedStartFromOneSupported(name.substr(0, pl))) { u_int32_t increasedIndex = 0; if (strToNum(name.substr(pl + 1, pr - pl - 1), increasedIndex)) { increasedIndex++; increasedName = name.substr(0, pl) + "[" + numToStr(increasedIndex) + "]"; } } } return increasedName; } bool isIndexedStartFromOneSupported(const string& mlxconfigName) { #if defined(MST_UL) (void)mlxconfigName; return false; #else return mlxconfigName == "SPLIT_PORT"; #endif } void parseIndexedMlxconfigName(const string& indexedMlxconfigName, string& mlxconfigName, u_int32_t& index) { string indexStr = parseIndexStr(indexedMlxconfigName); if (!strToNum(indexStr, index)) { throw MlxcfgException("Can not parse the index of %s\n", indexedMlxconfigName.c_str()); } size_t p = indexedMlxconfigName.find('['); if (p == std::string::npos) { throw MlxcfgException("Expected a parameter with index"); } mlxconfigName = indexedMlxconfigName.substr(0, p); } void extractIndexes(const string& indexesStr, vector& indexes) { size_t p = indexesStr.find(".."); if (p != string::npos) { unsigned int leftIndex = 0, rightIndex = 0; string leftIndexStr = indexesStr.substr(0, p); string rightIndexStr = indexesStr.substr(p + 2); if (!strToNum(leftIndexStr, leftIndex)) { throw MlxcfgException("Can not parse the index %s", leftIndexStr.c_str()); } if (!strToNum(rightIndexStr, rightIndex)) { throw MlxcfgException("Can not parse the index %s", rightIndexStr.c_str()); } if (leftIndex > rightIndex) { throw MlxcfgException("Left index %d can not be greater than right index %d", leftIndex, rightIndex); } while (rightIndex >= leftIndex) { indexes.push_back(leftIndex); leftIndex++; } } else { u_int32_t index = 0; if (!strToNum(indexesStr, index)) { throw MlxcfgException("Can not parse the index %s", indexesStr.c_str()); } indexes.push_back(index); } } bool isIndexedMlxconfigName(const string& mlxconfigName) { return (mlxconfigName.find("[") != string::npos); } string getArraySuffix(const string& mlxconfigName) { #if defined(MST_UL) (void)mlxconfigName; return ""; #else static const mstflint::common::regex::regex EXP_PATTERN("(_[0-9]{2}_[0-9]+)"); string suffix = ""; mstflint::common::regex::smatch match; if (mstflint::common::regex::regex_search(mlxconfigName, match, EXP_PATTERN)) { suffix = match.str(); } return suffix; #endif } string getArrayPrefix(const string& mlxconfigName) { string prefix = mlxconfigName; return prefix.substr(0, mlxconfigName.size() - getArraySuffix(mlxconfigName).size()); } string getArraySuffixByInterval(u_int32_t interval) { string suffix = "_"; u_int32_t low_bound = ((interval / MAX_ARRAY_SIZE) * MAX_ARRAY_SIZE) + 1; u_int32_t upper_bound = low_bound + MAX_ARRAY_SIZE - 1; suffix += numToStr(upper_bound) + "_" + numToStr(low_bound); return suffix; } bool getDeviceInformationString(mfile* mf, info_type_t op, vector& infoString) { mqisReg mqisRegister; reg_access_status_t rc; int maxDataSize = sizeof(mqisRegister.info_string); memset(&mqisRegister, 0, sizeof(mqisReg)); if (op == Device_Name) { mqisRegister.info_type = 0x1; } else if (op == Device_Description) { mqisRegister.info_type = 0x2; } else { return false; } mqisRegister.read_length = maxDataSize; mft_signal_set_handling(1); rc = reg_access_mqis(mf, REG_ACCESS_METHOD_GET, &mqisRegister); dealWithSignal(); if (rc) { return false; } // reg_access_hca_mqis_reg_print(&mqisRegister, stdout, 4); int infoSize = mqisRegister.info_length; if (infoSize == 0) { return false; } infoString.resize(infoSize + 1, 0); // copy the output memcpy(infoString.data(), mqisRegister.info_string, mqisRegister.read_length); if (infoSize > mqisRegister.read_length) { int leftSize = infoSize - mqisRegister.read_length; while (leftSize > 0) { mqisRegister.read_offset = infoSize - leftSize; mqisRegister.read_length = leftSize > maxDataSize ? maxDataSize : leftSize; mft_signal_set_handling(1); rc = reg_access_mqis(mf, REG_ACCESS_METHOD_GET, &mqisRegister); dealWithSignal(); if (rc) { return false; } // reg_access_hca_mqis_reg_print(&mqisRegister, stdout, 4); memcpy(infoString.data() + mqisRegister.read_offset, (mqisRegister.info_string), mqisRegister.read_length); leftSize -= mqisRegister.read_length; } } string str = string(infoString.data()); if (str.length() == 0) { return false; } return true; } Device_Type getDeviceTypeFromString(string inStr) { mft_utils::to_lowercase(inStr); if (inStr == "switch") { return Device_Type::Switch; } else if (inStr == "hca") { return Device_Type::HCA; } else { return Device_Type::UNSUPPORTED_DEVICE; } } MlxcfgException::MlxcfgException(const char* fmt, ...) { const unsigned int max = 1024; char tmp[max]; va_list args; va_start(args, fmt); vsnprintf(tmp, max, fmt, args); va_end(args); _err = tmp; } MlxcfgTLVNotFoundException::MlxcfgTLVNotFoundException(const char* cTLVName) : MlxcfgException("The TLV configuration %s was not found", cTLVName) { } mstflint-4.26.0/mlxconfig/mlxcfg_db_items.h0000644000175000017500000000500514522641732021170 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_db_items.h * * Created on: Nov 15, 2017 * Author: Ahmad Soboh */ #ifndef MLXCFG_DB_ITEMS_H_ #define MLXCFG_DB_ITEMS_H_ #include #include #include using namespace std; namespace DB { class ByteBitString { public: explicit ByteBitString(const string& str); u_int32_t getBytesPart() const { return _bytesPart; } protected: u_int32_t _bytesPart; // describes the bytes part of the offset string ("0x51.3", the bytes part is 0x51) u_int32_t _bitsPart; // describes the bits part of the offset string ("0x51.3", the bits part is 3) }; class Offset : public ByteBitString { public: explicit Offset(const string& offset) : ByteBitString(offset){}; u_int32_t toBigEndian(u_int32_t sizeInBits, u_int32_t withBitsPart = true) const; }; class Size : public ByteBitString { public: explicit Size(const string& size) : ByteBitString(size){}; unsigned int toBits() const { return _bytesPart * 8 + _bitsPart; }; }; }; // namespace DB #endif mstflint-4.26.0/mlxconfig/mlxcfg_view.h0000644000175000017500000000626014522641732020360 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_view.h * * Created on: Jun 22, 2016 * Author: ahmads */ #ifndef MLXCFG_VIEW_H_ #define MLXCFG_VIEW_H_ #include #include #include #include "mlxcfg_utils.h" enum ParamType { BOOLEAN_TYPE, ENUM, INTEGER, UNSIGNED, STRING, BINARY, BYTES }; enum TLVClass { Global, Physical_Port, BMC, Per_Host_Per_Function, Per_SWID, NVLog, NVFile, Per_Host, Switch_Global, Module, Physical_Port_Common = 0x81, Per_Host_All_Functions = 0x43, All_Hosts_Per_Function = 0x83, All_Hosts_All_Functions = 0xC3 }; typedef struct ParamView { ParamView() : mlxconfigName(""), description(""), type(BOOLEAN_TYPE), val(MLXCFG_UNKNOWN), port(0), module(-1), strVal(""), setVal(""), rule(""), isReadOnlyParam(false), supportedFromVersion(0){}; std::string mlxconfigName; std::string description; enum ParamType type; std::map textualVals; u_int32_t val; u_int32_t port; int32_t module; std::string strVal; std::string setVal; std::vector arrayVal; std::vector strArrayVal; std::string rule; bool isReadOnlyParam; // in read only TLV all params are read only u_int32_t supportedFromVersion; } ParamView; typedef struct TLVConfView { std::string name; std::string description; TLVClass tlvClass; std::vector params; } TLVConfView; typedef struct BackupView { u_int32_t type; u_int8_t writerId; u_int8_t writerHostId; std::vector tlvBin; } BackupView; #endif /* MLXCFG_VIEW_H_ */ mstflint-4.26.0/mlxconfig/mlxcfg_commander.h0000644000175000017500000000674414522641732021362 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_commander.h * * Created on: Jun 22, 2016 * Author: ahmads */ #ifndef MLXCFG_COMMANDER_H_ #define MLXCFG_COMMANDER_H_ #include #include "tools_dev_types.h" #include "mlxcfg_view.h" #include "mlxcfg_utils.h" #include "mlxcfg_status.h" class Commander { public: static Commander* create(std::string device, std::string dbName, bool forceCreate = false); // clients can force create skiping any support check, and move // the responsebility to the client. static Commander* create(mfile* mf, std::string dbName); virtual void printLongDesc(FILE*) = 0; virtual bool isDefaultSupported() = 0; virtual bool isCurrentSupported() = 0; virtual void queryParamViews(std::vector& paramsToQuery, bool isWriteOperation, QueryType qt = QueryNext) = 0; virtual void queryAll(std::vector& params, vector& failedTLVs, QueryType qt = QueryNext) = 0; virtual void getCfg(ParamView& cfgParam, QueryType qt = QueryNext) = 0; virtual void setCfg(std::vector&, bool) = 0; virtual void clearSemaphore() = 0; virtual void invalidateCfgs() = 0; virtual const char* loadConfigurationGetStr() = 0; virtual void setRawCfg(std::vector rawTlvVec) = 0; virtual std::vector getRawCfg(std::vector rawTlvVec) = 0; virtual void dumpRawCfg(std::vector rawTlvVec, std::string& tlvDump) = 0; virtual void backupCfgs(vector& views) = 0; virtual void updateParamViewValue(ParamView&, std::string val) = 0; void setExtResourceType(bool extT) { _extResource = extT; } static string getDefaultDBName(bool isSwitch); mfile* mf() { return _mf; } Commander(mfile* mf) : _mf(mf), _extResource(true), _isSwitch(false){}; virtual ~Commander(); protected: mfile* _mf; bool _extResource; bool _isSwitch; }; #endif /* MLXCFG_COMMANDER_H_ */ mstflint-4.26.0/mlxconfig/mlxcfg_status.h0000644000175000017500000000477014522641732020735 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_status.h * * Created on: Mar 23, 2015 * Author: adrianc */ #ifndef MLXCFG_STATUS_H_ #define MLXCFG_STATUS_H_ /* * Enum for handling error messages */ typedef enum { MCE_SUCCESS = 0, MCE_FAILED, MCE_TLV_NOT_FOUND, MCE_TLV_NOT_SUPP, MCE_NVCFG_NOT_SUPP, MCE_TOOLS_HCR_NOT_SUPP, MCE_DRIVER_DOWN, MCE_UNSUPPORTED_DEVICE, MCE_UNSUPPORTED_CFG, MCE_BAD_PARAMS, MCE_BAD_PARAM_VAL, MCE_DEV_BUSY, MCE_UNKNOWN_TLV, MCE_REG_NOT_SUPP, MCE_METHOD_NOT_SUPP, MCE_RES_NOT_AVAIL, MCE_CONF_CORRUPT, MCE_TLV_LEN_TOO_SMALL, MCE_BAD_CONFIG, MCE_ERASE_EXEEDED, MCE_BAD_OP, MCE_BAD_STATUS, MCE_CR_ERROR, MCE_NOT_IMPLEMENTED, MCE_INCOMPLETE_PARAMS, MCE_OPEN_DEVICE, MCE_PCI, MCE_GET_DEFAULT_PARAMS, MCE_UNKNOWN_ERR } McStatus; typedef enum { MLX_CFG_OK, MLX_CFG_OK_EXIT, MLX_CFG_ABORTED, MLX_CFG_ERROR, MLX_CFG_ERROR_EXIT, MLX_CFG_ERROR_NO_USAGE } mlxCfgStatus; #endif /* MLXCFG_STATUS_H_ */ mstflint-4.26.0/mlxconfig/mlxcfg_db_items.cpp0000644000175000017500000000446614522641732021535 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_db_items.cpp * * Created on: Nov 15, 2017 * Author: Ahmad Soboh */ #include #include "mlxcfg_db_items.h" using namespace std; using namespace DB; ByteBitString::ByteBitString(const string& str) { size_t pos = str.find('.'); if (pos == string::npos) { // No bits part in this case (e.g. 0x0) _bitsPart = 0x0; _bytesPart = strtol(str.c_str(), NULL, 0); } else { _bitsPart = atoi(str.substr(pos + 1).c_str()); _bytesPart = strtol(str.substr(0, pos).c_str(), NULL, 0); } } u_int32_t Offset::toBigEndian(u_int32_t sizeInBits, u_int32_t withBitsPart) const { if (!withBitsPart) { return 8 * _bytesPart; } u_int32_t offsetLE = 8 * _bytesPart + _bitsPart; return 32 - (offsetLE % 32) - sizeInBits + ((offsetLE >> 5) << 5); } mstflint-4.26.0/mlxconfig/mlxconfig_dbs/0000755000175000017500000000000014522641737020514 5ustar tzafrirctzafrircmstflint-4.26.0/mlxconfig/mlxconfig_dbs/mlxconfig_switch.db0000644000175000017500000012000014522641732024356 0ustar tzafrirctzafrircSQLite format 3@ (-â) û!û  ›ê“©¾ |håþη×uN4©›^M<ùã͵- LINK CONF GB CONF3SWITCH PHY SEC CONF/SPLIT PORTS 96 65/SPLIT PORTS 64 33-SPLIT PORTS 32 1#SWITCH CONF!SWITCH CAP!ULTRA FAST%MODULE SPLIT%MODULE POWER1MODULE FEATURE CAP3FILE SIGNATURE 3072)FILE DEVICE ID1FILE DEVICE UNIQUE1FILE RMDT TOKEN ID1FILE RMCS TOKEN ID 5FILE PUBLIC KEY 4096 9FILE PUBLIC KEY 4096 B 9FILE PUBLIC KEY 4096 A 7FILE SIGNATURE 4096 B 7FILE SIGNATURE 4096 A+FILE PUBLIC KEY1FILE MAC ADDR LIST/FILE BTC TOKEN ID-FILE CS TOKEN ID5FILE DBG FW TOKEN ID)FILE SIGNATURE1 FILE APPLICABLE TO wê“©¾ |håþη×uN4ˆw[G3ä˲ü—!%nv_link_conf!nv_gb_conf9nv_switch_phy_sec_conf5nv_split_ports_96_655nv_split_ports_64_333nv_split_ports_32_1)nv_switch_conf'nv_switch_cap'nv_ultra_fast+nv_module_split+nv_module_power7nv_module_feature_cap3file_signature_3072)file_device_id1file_device_unique1file_rmdt_token_id1file_rmcs_token_id 5file_public_key_4096 9file_public_key_4096_b 9file_public_key_4096_a 7file_signature_4096_b 7file_signature_4096_a+file_public_key1file_mac_addr_list/file_btc_token_id-file_cs_token_id5file_dbg_fw_token_id)file_signature1 file_applicable_to id INT CHECK((id >= 0) and ((class = 0 and id <= 16777215) or (class = 1 and id <= 65535) or (class = 3 and id <= 1023) or (class = 6 and id <= 16777215) or (class = 8 and id <= 16777215) or (class = 7 and id <= 262144) or (class = 9 and id <= 16777215))), target TEXT CHECK(target IN ("NIC", "NIC-internal", "EXP_ROM", "SWITCH")), cap INT CHECK(cap IN (0, 1)), version TEXT, description TEXT, size INT NOT NULL CHECK(size > 0), class INT NOT NULL CHECK(class IN (0, 1, 3, 6, 7, 8, 9)), mlxconfig_name TEXT UNIQUE CHECK(length(mlxconfig_name) <= 40), PRIMARY KEY (name))œ(ûöñìçâÝØÓÎÉÄ¿ºµ°«¦¡œ%w$s#p"li`TJE@:3/)%   ÷'÷&JNÓ©Nw$'1nonce_versionfile_device_uniqueL+7/running_version_39_32file_btc_token_id %%5keypair_uuidfile_public_key_4096<(/1device_unique_id1file_device_uniqueO (type IN ("ENUM") and (textual_values NOT NULL) and (textual_values NOT IN (""))) ), mlxconfig_name TEXT UNIQUE CHECK((length(mlxconfig_name) <= 40) and (mlxconfig_name NOT LIKE "% %")), dependency TEXT, valid_bit TEXT, temp_vars TEXT, min_val TEXT CHECK(max_val IS NULL or max_val='' or min_val IS NULL or min_val='' or (max_val GLOB '*[0-9]*' and min_val GLOB '*[0-9]*' and CAST(max_val as INT)>=CAST(min_val AS INT)) or NOT(max_val GLOB '*[0-9]*' and min_val GLOB '*[0-9]*')), max_val TEXT, rule TEXT, regex TEXT, supported_from_version INT DEFAULT 0, array_length INT DEFAULT 0, PRIMARY KEY (name, tlv_name)) JJ¸á ¦Ó‡pCtabletlvstlvsCREATE TABLE tlvs( name TEXT NOT NULL CHECK(length(name) <= 45), ';indexsqlite_autoindex_tlvs_1tlvs';indexsqlite_autoindex_tlvs_2tlvs™}tableparamsparamsCREATE TABLE params( name TEXT NOT NULL CHECK(length(name) <= 65), tlv_name TEXT NOT NULL, offset TEXT NOT NULL, size TEXT NOU NULL, type TEXT CHECK((type IN ("BOOL") and size IN ("0x0.1")) or type IN ("UNSIGNED", "INTEGER", "ENUM", "BINARY", "BYTES", "STRING")), description TEXT, textual_values TEXT CHECK( (type NOT IN ("ENUM") and ((textual_values IS NULL) or (textual_values IN ("")))) or +?indexsqlite_autoindex_params_1params+?indexsqlite_autoindex_params_2params rCOê/Ûrg75Erunning_version_39_32file_dbg_fw_token_id0x0.00x0.8BINARYThe current running version.R)5signaturefile_signature0x20.240x100.0BYTESThe signature itself8%)}keypair_uuidfile_signature0x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.c))Ssignature_uuidfile_signature0x0.240x10.0BYTESTime based UUID for this signature.q#1‚gpsid_branchfile_applicable_to0x10.240x10.0STRINGThe PSID-BRANCH that this file is applicable to. This ASCII string must be zero terminated if shorter than 16 characters. If PSID-Branch is not defined, the string is empty.:1‚ psidfile_applicable_to0x0.240x10.0STRINGThe PSID of the NIC that this file is applicable for. This ASCII string must be zero terminated if shorter than 16 characters. Ò˜Ÿ:Öp'ÒS#1-mac_addressfile_mac_addr_list0x0.240x100.0BYTESMAC Address listG 5/ running_version_31_0file_btc_token_id0x4.00x4.0BINARYd 7/Erunning_version_39_32file_btc_token_id0x0.00x0.8BINARYThe current running version.b 5-Erunning_version_31_0file_cs_token_id0x4.00x4.0BINARYThe current running version.c 7-Erunning_version_39_32file_cs_token_id0x0.00x0.8BINARYThe current running version.z 15qdebug_version_31_0file_dbg_fw_token_id0xC.00x4.0BINARYThe debug firmware version approved by this token.{35qdebug_version_39_32file_dbg_fw_token_id0x8.00x0.8BINARYThe debug firmware version approved by this token.f55Erunning_version_31_0file_dbg_fw_token_id0x4.00x4.0BINARYThe current running version. añlå]àa}+fw_enfile_public_key0x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens{#+ cs_token_enfile_public_key0x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level.-+vendor_nvconf_enfile_public_key0x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level.)+mlnx_nvconf_enfile_public_key0x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLNX level.+#frc_enfile_public_key0x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.‚ +‚)auth_typefile_public_key0x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3 UY¶Xì*ÁUj)7Ssignature_uuidfile_signature_4096_b0x0.240x10.0BYTESTime based UUID for this signature.g7Qsignaturefile_signature_4096_a0x20.240x100.0BYTESFirst half of the signature itself?%7}keypair_uuidfile_signature_4096_a0x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.j)7Ssignature_uuidfile_signature_4096_a0x0.240x10.0BYTESTime based UUID for this signature.\+Skeyfile_public_key0x20.240x100.0BYTESA 2048 bit public-key (0x100 bytes) %+Kkeypair_uuidfile_public_key0x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.$)+Qpublic_key_expfile_public_key0xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871). ³Ñô>dŒ´Ú#Dm–¶Û)U¬–×)dasnv_switch_confq)device_idfile_device_ide+auth_typefile_public_key"5auth_typefile_public_key_40963$9auth_typefile_public_key_4096_a$9auth_typefile_public_key_4096_b)%%5btc_token_enfile_public_key_40965'%9btc_token_enfile_public_key_4096_a '%9btc_token_enfile_public_key_4096_b*%%5c_r_token_enfile_public_key_40964'%9c_r_token_enfile_public_key_4096_a 1challengefile_rmcs_token_idC 1challengefile_rmdt_token_idJ(/1challenge_versionfile_rmcs_token_idB(/1challenge_versionfile_rmdt_token_idI#+cs_token_enfile_public_key$#5cs_token_enfile_public_key_40969&#9cs_token_enfile_public_key_4096_a$&#9cs_token_enfile_public_key_4096_b.+15debug_version_31_0file_dbg_fw_token_id )11debug_version_31_0file_rmdt_token_idG,35debug_version_39_32file_dbg_fw_token_id*31debug_version_39_32file_rmdt_token_idF(/1device_unique_id0file_device_uniqueM EÖ*S|¥Î÷ IµEr­Ïñ *Kw^•l„¡Àß%flot_ennv_link_confy!gb_vectornv_gb_confx)!gb_update_modenv_gb_confw-!gb_vector_lengthnv_gb_confv )'efuses_prog_ennv_ultra_fastm)11device_unique_id10file_device_uniquea)11device_unique_id11file_device_uniquec(/1device_unique_id2file_device_uniqueQ(/1device_unique_id3file_device_uniqueS(/1device_unique_id4file_device_uniqueU(/1device_unique_id5file_device_uniqueW(/1device_unique_id6file_device_uniqueY(/1device_unique_id7file_device_unique[(/1device_unique_id8file_device_unique](/1device_unique_id9file_device_unique_+frc_enfile_public_key5frc_enfile_public_key_40966!9frc_enfile_public_key_4096_a!!9frc_enfile_public_key_4096_b++fw_enfile_public_key5fw_enfile_public_key_4096: 9fw_enfile_public_key_4096_a% 9fw_enfile_public_key_4096_b/+keyfile_public_key5keyfile_public_key_4096=9keyfile_public_key_4096_a(9keyfile_public_key_4096_b2 %+keypair_uuidfile_public_key “>Ô*“%9-c_r_token_enfile_public_key_4096_a0x0.250x0.1BOOL[DWIP]: This key can be used for authenticating challenge-response based tokens.ƒ'9ƒgauth_typefile_public_key_4096_a0x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST - not supported for this Key.\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256 - not supported for this Key.\;0x4: _4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3,_4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512=0x4h7Ssignaturefile_signature_4096_b0x20.240x100.0BYTESSecond half of the signature itself?%7}keypair_uuidfile_signature_4096_b0x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image. Àvê[ÌGÀ%9fw_enfile_public_key_4096_a0x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens$#9 cs_token_enfile_public_key_4096_a0x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level. #-9vendor_nvconf_enfile_public_key_4096_a0x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level. ")9mlnx_nvconf_enfile_public_key_4096_a0x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLLNX level. !9#frc_enfile_public_key_4096_a0x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses. %9btc_token_enfile_public_key_4096_a0x0.260x0.1BOOLThis key can be used to authenticating Back to commissioning tokens ‡P¤1‡ƒ')9ƒgauth_typefile_public_key_4096_b0x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST - not supported for this Key.\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256 - not supported for this Key.\;0x4: _4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3,_4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512=0x4q(9okeyfile_public_key_4096_a0x20.240x100.0BYTESFirst half of a 4096 bit public-key (0x200 bytes))'%9Okeypair_uuidfile_public_key_4096_a0x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.\;-&)9Upublic_key_expfile_public_key_4096_a0xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).\; Àvê[ÌGÀ/9fw_enfile_public_key_4096_b0x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens.#9 cs_token_enfile_public_key_4096_b0x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level. --9vendor_nvconf_enfile_public_key_4096_b0x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level. ,)9mlnx_nvconf_enfile_public_key_4096_b0x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLLNX level. +9#frc_enfile_public_key_4096_b0x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.*%9btc_token_enfile_public_key_4096_b0x0.260x0.1BOOLThis key can be used to authenticating Back to commissioning tokens ˆP¤0ˆƒ%35ƒgauth_typefile_public_key_40960x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST - not supported for this Key.\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256 - not supported for this Key.\;0x4: _4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3,_4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512=0x4r29qkeyfile_public_key_4096_b0x20.240x100.0BYTESSecond half of a 4096 bit public-key (0x200 bytes))1%9Okeypair_uuidfile_public_key_4096_b0x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.\;-0)9Upublic_key_expfile_public_key_4096_b0xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).\; 7kãYÌ?¼7:5fw_enfile_public_key_40960x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens9#5 cs_token_enfile_public_key_40960x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level. 8-5vendor_nvconf_enfile_public_key_40960x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level. 7)5mlnx_nvconf_enfile_public_key_40960x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLLNX level.65#frc_enfile_public_key_40960x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.5%5btc_token_enfile_public_key_40960x0.260x0.1BOOLThis key can be used to authenticating Back to commissioning tokens4%5-c_r_token_enfile_public_key_40960x0.250x0.1BOOL[DWIP]: This key can be used for authenticating challenge-response based tokens. §5]…ñ¥Ìó§Ó9a‹µÓñ.Ljˆ¦Äâ+;+mac_assignment_for_lanenv_module_splitl+max_powernv_module_powerk$%3keypair_uuidfile_signature_3072g1nonce11file_device_uniqued'%9keypair_uuidfile_public_key_4096_a''%9keypair_uuidfile_public_key_4096_b1%)keypair_uuidfile_signature&%7keypair_uuidfile_signature_4096_a&%7keypair_uuidfile_signature_4096_b"#1mac_addressfile_mac_addr_list")+mlnx_nvconf_enfile_public_key')5mlnx_nvconf_enfile_public_key_40967))9mlnx_nvconf_enfile_public_key_4096_a"))9mlnx_nvconf_enfile_public_key_4096_b,1nonce0file_device_uniqueN1nonce1file_device_uniqueP1nonce10file_device_uniqueb1nonce2file_device_uniqueR1nonce3file_device_uniqueT1nonce4file_device_uniqueV1nonce5file_device_uniqueX1nonce6file_device_uniqueZ1nonce7file_device_unique\1nonce8file_device_unique^1nonce9file_device_unique` ET¬Y—ÖE@)1source_addressfile_rmcs_token_id0x8.240x10.0BYTESSource address of debug requester. DLID for Infiniband, ETH / IBg2 - TBD.>?51wrunning_version_31_0file_rmcs_token_id0x4.00x4.0BINARYThe current running version.\;Bits 39..32 - Major version\;bits 31..16: Minor version\;Bits 15..0 - Sub-minor version?>71wrunning_version_39_32file_rmcs_token_id0x0.00x0.8BINARYThe current running version.\;Bits 39..32 - Major version\;bits 31..16: Minor version\;Bits 15..0 - Sub-minor versionQ=53keyfile_public_key_40960x20.240x200.0BYTES4096 bit public-key%<%5Kkeypair_uuidfile_public_key_40960x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.);)5Qpublic_key_expfile_public_key_40960xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871). Žr—OŽ>E51wrunning_version_31_0file_rmdt_token_id0x4.00x4.0BINARYThe current running version.\;Bits 39..32 - Major version\;bits 31..16: Minor version\;Bits 15..0 - Sub-minor version?D71wrunning_version_39_32file_rmdt_token_id0x0.00x0.8BINARYThe current running version.\;Bits 39..32 - Major version\;bits 31..16: Minor version\;Bits 15..0 - Sub-minor versionC1challengefile_rmcs_token_id0x1C.240x20.0BYTESRandom generated field. Used for randomness and replay-protection. XB/1‚/challenge_versionfile_rmcs_token_id0x18.240x0.8ENUMVersion of the challenge format.\;0x0: TOKEN - 32 Bytes challenge (used for tokens)\;0x1: FRC - 76 Bytes challenge (used for FRC)TOKEN=0x0,FRC=0x1 A!1!session_idfile_rmcs_token_id0x18.00x0.16BINARYUnique debug session identifier. \;See details in REMOTE_DEBUG_KEEP_ALIVE. b*UÃèbJ1challengefile_rmdt_token_id0x24.240x20.0BYTESRandom generated field. Used for randomness and replay-protection. XI/1‚/challenge_versionfile_rmdt_token_id0x20.240x0.8ENUMVersion of the challenge format.\;0x0: TOKEN - 32 Bytes challenge (used for tokens)\;0x1: FRC - 76 Bytes challenge (used for FRC)TOKEN=0x0,FRC=0x1H)1source_addressfile_rmdt_token_id0x10.240x10.0BYTESSource address of debug requester. DLID for Infiniband, ETH / IBg2 - TBD.RG11‚#debug_version_31_0file_rmdt_token_id0xC.00x4.0BINARYThe debug Firmware version approved by this token.\;Bits 39..32 - Major version\;bits 31..16: Minor version\;Bits 15..0 - Sub-minor versionSF31‚#debug_version_39_32file_rmdt_token_id0x8.00x0.8BINARYThe debug Firmware version approved by this token.\;Bits 39..32 - Major version\;bits 31..16: Minor version\;Bits 15..0 - Sub-minor version &›²N«lÉe&=T1 nonce3file_device_unique0x88.240x20.0BYTES bS/1Cdevice_unique_id3file_device_unique0x80.240x8.0BYTESDevice Unique Identifier \;=R1 nonce2file_device_unique0x60.240x20.0BYTES bQ/1Cdevice_unique_id2file_device_unique0x58.240x8.0BYTESDevice Unique Identifier \;=P1 nonce1file_device_unique0x38.240x20.0BYTES bO/1Cdevice_unique_id1file_device_unique0x30.240x8.0BYTESDevice Unique Identifier \;=N1 nonce0file_device_unique0x10.240x20.0BYTES bM/1Edevice_unique_id0file_device_unique0x8.240x8.0BYTESDevice unique identifier. \;fL'1‚9+nonce_versionfile_device_unique0x0.240x0.8ENUMVersion of challenge format.\;0x0: b32 - 32 bytes challenge (used for tokens)\;0x1: b76 - 76 bytes challenge (used for FRC)\;Other values are Reservedb32=0x0,b76=0x1cK'1Ovalid_entriesfile_device_unique0x0.200x0.4BINARYNumber of unique_id-nonce entries ‘9d“Àíð,Pt–¿è¯‘Ë4Y~¨Ô!)split_modenv_switch_confp'split_capnv_switch_capo$1'split_num_of_portsnv_switch_capn!3signaturefile_signature_3072h&)3signature_uuidfile_signature_3072f*7-running_version_39_32file_cs_token_id .75running_version_39_32file_dbg_fw_token_id,71running_version_39_32file_rmcs_token_id>,71running_version_39_32file_rmdt_token_idD!!1session_idfile_rmcs_token_idA)signaturefile_signature#7signaturefile_signature_4096_a#7signaturefile_signature_4096_b!))signature_uuidfile_signature()7signature_uuidfile_signature_4096_a()7signature_uuidfile_signature_4096_b%)1source_addressfile_rmcs_token_id@%)1source_addressfile_rmdt_token_idH$'1valid_entriesfile_device_uniqueK$-+vendor_nvconf_enfile_public_key)-5vendor_nvconf_enfile_public_key_40968+-9vendor_nvconf_enfile_public_key_4096_a#+-9vendor_nvconf_enfile_public_key_4096_b- 'œ]ùºV±q Ìg'>`1 nonce9file_device_unique0x178.240x20.0BYTES c_/1Cdevice_unique_id9file_device_unique0x170.240x8.0BYTESDevice Unique Identifier \;>^1 nonce8file_device_unique0x150.240x20.0BYTES c]/1Cdevice_unique_id8file_device_unique0x148.240x8.0BYTESDevice Unique Identifier \;>\1 nonce7file_device_unique0x128.240x20.0BYTES c[/1Cdevice_unique_id7file_device_unique0x120.240x8.0BYTESDevice Unique Identifier \;>Z1 nonce6file_device_unique0x100.240x20.0BYTES bY/1Cdevice_unique_id6file_device_unique0xF8.240x8.0BYTESDevice Unique Identifier \;=X1 nonce5file_device_unique0xD8.240x20.0BYTES bW/1Cdevice_unique_id5file_device_unique0xD0.240x8.0BYTESDevice Unique Identifier \;=V1 nonce4file_device_unique0xB0.240x20.0BYTES bU/1Cdevice_unique_id4file_device_unique0xA8.240x8.0BYTESDevice Unique Identifier \; tšYó²lBétsi37anv_module_power_capnv_module_feature_cap0x0.300x0.1BOOLWhen TRUE, NV_MODULE_POWER is configurableWh35signaturefile_signature_30720x20.240x180.0BYTESThe signature itself€=g%3}keypair_uuidfile_signature_30720x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.hf)3Ssignature_uuidfile_signature_30720x0.240x10.0BYTESTime based UUID for this signature.De)device_idfile_device_id0x0.240x20.0BYTESDevice Id ?d1 nonce11file_device_unique0x1C8.240x20.0BYTES dc11Cdevice_unique_id11file_device_unique0x1C0.240x8.0BYTESDevice Unique Identifier \;?b1 nonce10file_device_unique0x1A0.240x20.0BYTES da11Cdevice_unique_id10file_device_unique0x198.240x8.0BYTESDevice Unique Identifier \; aìÉ¥Hc†©Ñûa%Pz¨Ô9pvpmnv_switch_phy_sec_confu#!5port_splitnv_split_ports_96_65t#!5port_splitnv_split_ports_64_33s"!3port_splitnv_split_ports_32_1r-37nv_module_split_capnv_module_feature_capj-37nv_module_power_capnv_module_feature_capi1 psidfile_applicable_to"#1psid_branchfile_applicable_to")+public_key_expfile_public_key')5public_key_expfile_public_key_4096;))9public_key_expfile_public_key_4096_a&))9public_key_expfile_public_key_4096_b0*5/running_version_31_0file_btc_token_id )5-running_version_31_0file_cs_token_id -55running_version_31_0file_dbg_fw_token_id+51running_version_31_0file_rmcs_token_id?+51running_version_31_0file_rmdt_token_idE *Æ“U"ê²€BÄ„HÔ™g*; 3 3file_signature_3072SWITCH0 FILE SIGNATURE 30720 ) )file_device_idSWITCH0 FILE DEVICE ID9 1 1file_device_uniqueSWITCH0èFILE DEVICE UNIQUE8 1 1file_rmdt_token_idSWITCH0dFILE RMDT TOKEN ID8 1 1file_rmcs_token_idSWITCH0\FILE RMCS TOKEN ID: 5 5file_public_key_4096NIC0 FILE PUBLIC KEY 4096> 9 9file_public_key_4096_bNIC0 FILE PUBLIC KEY 4096 B> 9 9file_public_key_4096_a NIC0 FILE PUBLIC KEY 4096 A< 7 7file_signature_4096_b NIC0 FILE SIGNATURE 4096 B< 7 7file_signature_4096_a NIC0 FILE SIGNATURE 4096 A0 + +file_public_key NIC0 FILE PUBLIC KEY6 1 1file_mac_addr_list NIC0FILE MAC ADDR LIST6 / /file_btc_token_idSWITCH0FILE BTC TOKEN ID1 - -file_cs_token_idNIC0FILE CS TOKEN ID< 5 5file_dbg_fw_token_idSWITCH0FILE DBG FW TOKEN ID1 ) )file_signatureSWITCH0@FILE SIGNATURE8 1 1file_applicable_toSWITCH0 FILE APPLICABLE TO ‘Ñc5×a%彑* % nv_link_confSWITCH0LINK CONF& ! nv_gb_confSWITCH0$GB CONF> 9 3nv_switch_phy_sec_confSWITCH0SWITCH PHY SEC CONF: 5 /nv_split_ports_96_65SWITCH0 SPLIT PORTS 96 65: 5 /nv_split_ports_64_33SWITCH0 SPLIT PORTS 64 338 3 -nv_split_ports_32_1SWITCH0 SPLIT PORTS 32 1. ) #nv_switch_confSWITCH0SWITCH CONF, ' !nv_switch_capSWITCH0SWITCH CAP, ' !nv_ultra_fast”SWITCH0 ULTRA FAST, + %nv_module_splitNIC0 MODULE SPLIT0 + %nv_module_power€SWITCH0 MODULE POWER; 7 1nv_module_feature_capSWITCH0 MODULE FEATURE CAP h‹Ìh‚al;+„% mac_assignment_for_lanenv_module_split0x0.240x10.0BINARYMAC number assignment for logical lane .\;MAC numbering starts from value of 1.\;number of logical lanes assigned to the same MAC number will define the port width.\;Value of 0 indicates lane is on default device mapping\;Value of 0xFF indicates lane is unmappedMODULE_SPLITƒ?@ABCDEFGHI /L_dinsx}‚‡Œ‘–› ¥ª¯´¹¾ÃÈÍÒ×ÜáæëðõúÿLQ.CarŽœ«ÂÖëy GB_VECTORxKLMNOPQRSTUVWXYZ[\]^_`abcdefghijm1DISABLE_AUTO_SPLITq)GB_UPDATE_MODEw-GB_VECTOR_LENGTHv?MODULE_MAX_POWER_OVERRIDEk%MODULE_SPLITl;PHY_VIOLATION_PREV_MODEu SPLIT_CAPo!SPLIT_MODEp1SPLIT_NUM_OF_PORTSn+SPLIT_PORT_32_1r-SPLIT_PORT_64_33s-SPLIT_PORT_96_65t yy‚y%‚9flot_ennv_link_conf0x0.00x0.1ENUMFast Link-up On Toggle Enable:\;0: Disable\;1: Enable\;When enabled then a fast link-up flow (less than 1 sec) will be executed in case of a toggle on link without unplugging the cable.Disable=0x0,Enable=0x1‚~x!… gb_vectornv_gb_conf0x4.00x20.0BINARYGearbox flash vector\;Per bit:\;0: do not update this gearbox flash\;1: do update this gearbox flash\;\;Bits order by example:\;gb_vector[0] bit 0: gearbox flash 0\;gb_vector[0] bit 1: gearbox flash 1\;gb_vector[0] bit 31: gearbox flash 31\;gb_vector[1] bit 0: gearbox flash 32\;etc.\;Valid according to vector_lengthGB_VECTORmstflint-4.26.0/mlxconfig/mlxconfig_dbs/mlxconfig_host.db0000644000175000017500000140400014522641732024040 0ustar tzafrirctzafrircSQLite format 3@ ‚-â)  ÐrûöñìçâÜÖÐn^5lÿYpG85$¤käɤAROM ISCSI FIRST TARGET LUN–^1MODULE FEATURE CAP]3FILE SIGNATURE 3072„qÝÀ©„R Cnv_rom_iscsi_initiator_name)nv_roce_cc_qcnhU5nv_internal_cpu_confTAnv_emulation_virtio_fs_cap: id INT CHECK((id >= 0) and ((class = 0 and id <= 16777215) or (class = 1 and id <= 65535) or (class = 3 and id <= 1023) or (class = 6 and id <= 16777215) or (class = 8 and id <= 16777215) or (class = 7 and id <= 262144) or (class = 9 and id <= 16777215))), target TEXT CHECK(target IN ("NIC", "NIC-internal", "EXP_ROM", "SWITCH")), cap INT CHECK(cap IN (0, 1)), version TEXT, description TEXT, size INT NOT NULL CHECK(size > 0), class INT NOT NULL CHECK(class IN (0, 1, 3, 6, 7, 8, 9)), mlxconfig_name TEXT UNIQUE CHECK(length(mlxconfig_name) <= 40), PRIMARY KEY (name))ôjúô¼…{»‚vs´NǽD–%Ðyá´J¿öÔœ…m õs&s!h1MANAGEMENT_PF_MODE P CESWITCH_HAIRPIN_DESCRIPTORS˜#$KVIRTIO_FS_EMULATION_NUM_VF_MSIX\-'QNVME_EMULATION_SUBSYSTEM_VENDOR_ID =PCI_BUS02_HIERARCHY_TYPE{Ñ/GPIO_WAKE1_ENABLEaÍæ3UEFI_DEBUG_LOG_UNDIØ(3'«Œ=PCI_BUS26_HIERARCHY_TYPEóš9PCI_BUS17_SWITCH_INDEX¾Oà'l7BOOT_DBG_LOG_NDRV_DEVÁBº˜µ)RPG_TIME_RESET>¤'PHY_RATE_MASK†}?PCI_DOWNSTREAM_PORT_OWNERUß;PCI_BUS0_RESTRICT_WIDTH;ö7IB_CC_SHAPER_COALESCE:¼)Ú¼.K—!port_enumnv_rom_iniE–!9frc_enfile_public_key_4096_a (type IN ("ENUM") and (textual_values NOT NULL) and (textual_values NOT IN (""))) ), mlxconfig_name TEXT UNIQUE CHECK((length(mlxconfig_name) <= 40) and (mlxconfig_name NOT LIKE "% %")), dependency TEXT, valid_bit TEXT, temp_vars TEXT, min_val TEXT CHECK(max_val IS NULL or max_val='' or min_val IS NULL or min_val='' or (max_val GLOB '*[0-9]*' and min_val GLOB '*[0-9]*' and CAST(max_val as INT)>=CAST(min_val AS INT)) or NOT(max_val GLOB '*[0-9]*' and min_val GLOB '*[0-9]*')), max_val TEXT, rule TEXT, regex TEXT, supported_from_version INT DEFAULT 0, array_length INT DEFAULT 0, PRIMARY KEY (name, tlv_name)) JJ¸á ¦Ó‡pCtabletlvstlvsCREATE TABLE tlvs( name TEXT NOT NULL CHECK(length(name) <= 45), ';indexsqlite_autoindex_tlvs_1tlvs';indexsqlite_autoindex_tlvs_2tlvs™}tableparamsparamsCREATE TABLE params( name TEXT NOT NULL CHECK(length(name) <= 65), tlv_name TEXT NOT NULL, offset TEXT NOT NULL, size TEXT NOU NULL, type TEXT CHECK((type IN ("BOOL") and size IN ("0x0.1")) or type IN ("UNSIGNED", "INTEGER", "ENUM", "BINARY", "BYTES", "STRING")), description TEXT, textual_values TEXT CHECK( (type NOT IN ("ENUM") and ((textual_values IS NULL) or (textual_values IN ("")))) or +?indexsqlite_autoindex_params_1params+?indexsqlite_autoindex_params_2params &COš5z&R)5signaturefile_signature0x20.240x100.0BYTESThe signature itself8%)}keypair_uuidfile_signature0x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.c))Ssignature_uuidfile_signature0x0.240x10.0BYTESTime based UUID for this signature.2%‚  textfile_comment0x0.240x0.8STRINGThe PSID of the NIC that this file is applicable for. This ASCII string must be zero terminated if shorter than 16 characters.q#1‚gpsid_branchfile_applicable_to0x10.240x10.0STRINGThe PSID-BRANCH that this file is applicable to. This ASCII string must be zero terminated if shorter than 16 characters. If PSID-Branch is not defined, the string is empty.:1‚ psidfile_applicable_to0x0.240x10.0STRINGThe PSID of the NIC that this file is applicable for. This ASCII string must be zero terminated if shorter than 16 characters. ~&Çg~ +#frc_enfile_public_key0x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.‚ +‚)auth_typefile_public_key0x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3S #1-mac_addressfile_mac_addr_list0x0.240x100.0BYTESMAC Address list^ +/Erunning_versionfile_btc_token_id0x0.00x4.0BINARYThe current running version.] +-Erunning_versionfile_cs_token_id0x0.00x4.0BINARYThe current running version.u'5qdebug_versionfile_dbg_fw_token_id0x4.00x4.0BINARYThe debug firmware version approved by this token.a+5Erunning_versionfile_dbg_fw_token_id0x0.00x4.0BINARYThe current running version. MyñtõN«M\+Skeyfile_public_key0x20.240x100.0BYTESA 2048 bit public-key (0x100 bytes) %+Kkeypair_uuidfile_public_key0x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.$)+Qpublic_key_expfile_public_key0xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).}+fw_enfile_public_key0x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens{#+ cs_token_enfile_public_key0x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level.-+vendor_nvconf_enfile_public_key0x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level.)+mlnx_nvconf_enfile_public_key0x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLNX level. Ñ”Òiý;Ñh7Ssignaturefile_signature_4096_b0x20.240x100.0BYTESSecond half of the signature itself?%7}keypair_uuidfile_signature_4096_b0x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.j)7Ssignature_uuidfile_signature_4096_b0x0.240x10.0BYTESTime based UUID for this signature.g7Qsignaturefile_signature_4096_a0x20.240x100.0BYTESFirst half of the signature itself?%7}keypair_uuidfile_signature_4096_a0x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.j)7Ssignature_uuidfile_signature_4096_a0x0.240x10.0BYTESTime based UUID for this signature. V¿5© )9mlnx_nvconf_enfile_public_key_4096_a0x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLLNX level. 9#frc_enfile_public_key_4096_a0x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.%9btc_token_enfile_public_key_4096_a0x0.260x0.1BOOLThis key can be used to authenticating Back to commissioning tokens%9-c_r_token_enfile_public_key_4096_a0x0.250x0.1BOOL[DWIP]: This key can be used for authenticating challenge-response based tokens.ƒ'9ƒgauth_typefile_public_key_4096_a0x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST - not supported for this Key.\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256 - not supported for this Key.\;0x4: _4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3,_4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512=0x4 Z¨ãY®ZÕ,Y{¦ÂíŠ (Kp•Äá/K!advanced_pci_settings_supportednv_pci_cap1'!ats_supportednv_pci_cap(:M5Switch0_upstream_port_pex_numbernv_global_pci_conf_4ý:M5Switch1_upstream_port_pex_numbernv_global_pci_conf_4ù:M5Switch2_upstream_port_pex_numbernv_global_pci_conf_4%1'accurate_schedulernv_power_confî.E%accurate_scheduler_supportednv_power_capù&7#advanced_pci_settingsnv_pci_conf-A'advanced_power_settings_ennv_power_confô(5)aes_xts_tweak_inc_64nv_crypto_confø,/7allow_rd_countersnv_external_port_ctrl­!1ar_enablenv_sw_offload_confw*3/ar_enable_supportednv_sw_offload_cap|1arpnv_rom_debug_levelº*-5asymmetric_pcorenv_global_pci_conf_4g##ats_enablednv_pci_conf+auth_typefile_public_key "5auth_typefile_public_key_40960$9auth_typefile_public_key_4096_a$9auth_typefile_public_key_4096_b&.?+auto_power_save_link_downnv_keep_link_upm#%auto_reloadnv_fpga_conf{)#auto_reload_ennv_fpga_cap| ßßý7Y|˜Í,Sz¡Ëî?m޲Ø-base_macnv_base_mac_guid]!!/bay_numbernv_enclosure_info!bofm_ennv_rom_iniH!/!boot_debug_log_ennv_rom_capb"#/boot_ip_vernv_rom_boot_conf2±#!boot_ip_vernv_rom_capc4G/boot_legacy_interrupt_disablenv_rom_boot_conf1ã7[!boot_legacy_interrupt_disable_supportednv_rom_cap[&'3boot_option_0nv_ecpu_boot_option!&'3boot_option_1nv_ecpu_boot_option"&'3boot_option_2nv_ecpu_boot_option#&'3boot_option_3nv_ecpu_boot_option$)1/boot_option_rom_ennv_rom_boot_conf1æ"3boot_pkeynv_rom_ib_boot_confç'-/boot_retry_countnv_rom_boot_conf1â('7boot_to_shellnv_rom_flexboot_debugÎ-)?boot_to_targetnv_rom_iscsi_general_confé /boot_vlannv_rom_boot_conf1à#%/boot_vlan_ennv_rom_boot_conf1å%%5btc_token_enfile_public_key_40962'%9btc_token_enfile_public_key_4096_a –qìeµ –q%9okeyfile_public_key_4096_a0x20.240x100.0BYTESFirst half of a 4096 bit public-key (0x200 bytes))$%9Okeypair_uuidfile_public_key_4096_a0x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.\;-#)9Upublic_key_expfile_public_key_4096_a0xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).\;"9fw_enfile_public_key_4096_a0x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens!#9 cs_token_enfile_public_key_4096_a0x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level. -9vendor_nvconf_enfile_public_key_4096_a0x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level. "VÌ@±" *-9vendor_nvconf_enfile_public_key_4096_b0x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level. ))9mlnx_nvconf_enfile_public_key_4096_b0x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLLNX level. (9#frc_enfile_public_key_4096_b0x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.'%9btc_token_enfile_public_key_4096_b0x0.260x0.1BOOLThis key can be used to authenticating Back to commissioning tokensƒ'&9ƒgauth_typefile_public_key_4096_b0x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST - not supported for this Key.\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256 - not supported for this Key.\;0x4: _4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3,_4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512=0x4 ${ôD˜$r/9qkeyfile_public_key_4096_b0x20.240x100.0BYTESSecond half of a 4096 bit public-key (0x200 bytes)).%9Okeypair_uuidfile_public_key_4096_b0x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.\;--)9Upublic_key_expfile_public_key_4096_b0xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).\;,9fw_enfile_public_key_4096_b0x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens+#9 cs_token_enfile_public_key_4096_b0x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level. $XÃ;±$ 4)5mlnx_nvconf_enfile_public_key_40960x0.280x0.1BOOLThis key can be used for authenticating NVCONFIG files at MLLNX level.35#frc_enfile_public_key_40960x0.270x0.1BOOLThis key can be used for authenticating Factory Re Configuration responses.2%5btc_token_enfile_public_key_40960x0.260x0.1BOOLThis key can be used to authenticating Back to commissioning tokens1%5-c_r_token_enfile_public_key_40960x0.250x0.1BOOL[DWIP]: This key can be used for authenticating challenge-response based tokens.ƒ%05ƒgauth_typefile_public_key_40960x0.00x0.8ENUMThe authentication mechanism used with this key\;0x0: INVALID_ENTRY\;0x1: SHA256_DIGEST - not supported for this Key.\;0x3: _2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256 - not supported for this Key.\;0x4: _4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512INVALID_ENTRY=0x0,SHA256_DIGEST=0x1,_2048BIT_RSASSA_PKCS1_v1_5_WITH_SHA256=0x3,_4096BIT_RSASSA_PKCS1_v1_5_WITH_SHA512=0x4 _sðk¿Ä_c;'1Ovalid_entriesfile_device_unique0x0.200x0.4BINARYNumber of unique_id-nonce entriesQ:53keyfile_public_key_40960x20.240x200.0BYTES4096 bit public-key%9%5Kkeypair_uuidfile_public_key_40960x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.)8)5Qpublic_key_expfile_public_key_40960xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).75fw_enfile_public_key_40960x0.310x0.1BOOLThis key can be used for authenticating firmware, DBG_FW and DBG tokens6#5 cs_token_enfile_public_key_40960x0.300x0.1BOOLThis key can be used for authenticating CS tokens at OEM level. 5-5vendor_nvconf_enfile_public_key_40960x0.290x0.1BOOLThis key can be used for authenticating NVCONFIG files at OEM level. FFk–Êü"Hm˜Ìþ$JošÎ$!5bus00_aspmnv_global_pci_conf_4r*-5bus00_cfg_enablenv_global_pci_conf_4t3?5bus00_pcie_hierarchy_typenv_global_pci_conf_4o1;5bus00_pcie_switch_indexnv_global_pci_conf_4p%#5bus00_speednv_global_pci_conf_4q%#5bus00_widthnv_global_pci_conf_4s$!5bus01_aspmnv_global_pci_conf_4l*-5bus01_cfg_enablenv_global_pci_conf_4n3?5bus01_pcie_hierarchy_typenv_global_pci_conf_4i1;5bus01_pcie_switch_indexnv_global_pci_conf_4j%#5bus01_speednv_global_pci_conf_4k%#5bus01_widthnv_global_pci_conf_4m$!5bus02_aspmnv_global_pci_conf_4~*-5bus02_cfg_enablenv_global_pci_conf_4€3?5bus02_pcie_hierarchy_typenv_global_pci_conf_4{1;5bus02_pcie_switch_indexnv_global_pci_conf_4| '³tÑm.Ê‹'bE/1Cdevice_unique_id4file_device_unique0xA8.240x8.0BYTESDevice Unique Identifier \;=D1 nonce3file_device_unique0x88.240x20.0BYTES bC/1Cdevice_unique_id3file_device_unique0x80.240x8.0BYTESDevice Unique Identifier \;=B1 nonce2file_device_unique0x60.240x20.0BYTES bA/1Cdevice_unique_id2file_device_unique0x58.240x8.0BYTESDevice Unique Identifier \;=@1 nonce1file_device_unique0x38.240x20.0BYTES b?/1Cdevice_unique_id1file_device_unique0x30.240x8.0BYTESDevice Unique Identifier \;=>1 nonce0file_device_unique0x10.240x20.0BYTES b=/1Edevice_unique_id0file_device_unique0x8.240x8.0BYTESDevice unique identifier. \;f<'1‚9+nonce_versionfile_device_unique0x0.240x0.8ENUMVersion of challenge format.\;0x0: b32 - 32 bytes challenge (used for tokens)\;0x1: b76 - 76 bytes challenge (used for FRC)\;Other values are Reservedb32=0x0,b76=0x1 %Á]ºzÕp0Ë‹%dQ11Cdevice_unique_id10file_device_unique0x198.240x8.0BYTESDevice Unique Identifier \;>P1 nonce9file_device_unique0x178.240x20.0BYTES cO/1Cdevice_unique_id9file_device_unique0x170.240x8.0BYTESDevice Unique Identifier \;>N1 nonce8file_device_unique0x150.240x20.0BYTES cM/1Cdevice_unique_id8file_device_unique0x148.240x8.0BYTESDevice Unique Identifier \;>L1 nonce7file_device_unique0x128.240x20.0BYTES cK/1Cdevice_unique_id7file_device_unique0x120.240x8.0BYTESDevice Unique Identifier \;>J1 nonce6file_device_unique0x100.240x20.0BYTES bI/1Cdevice_unique_id6file_device_unique0xF8.240x8.0BYTESDevice Unique Identifier \;=H1 nonce5file_device_unique0xD8.240x20.0BYTES bG/1Cdevice_unique_id5file_device_unique0xD0.240x8.0BYTESDevice Unique Identifier \;=F1 nonce4file_device_unique0xB0.240x20.0BYTES OOz®à,Q|°â.Rx Êï<dˆ®Ö*-5bus26_cfg_enablenv_global_pci_conf_4ø3?5bus26_pcie_hierarchy_typenv_global_pci_conf_4ó1;5bus26_pcie_switch_indexnv_global_pci_conf_4ô%#5bus26_speednv_global_pci_conf_4õ%#5bus26_widthnv_global_pci_conf_4÷$!5bus27_aspmnv_global_pci_conf_4ð*-5bus27_cfg_enablenv_global_pci_conf_4ò3?5bus27_pcie_hierarchy_typenv_global_pci_conf_4í1;5bus27_pcie_switch_indexnv_global_pci_conf_4î%#5bus27_speednv_global_pci_conf_4ï%#5bus27_widthnv_global_pci_conf_4ñ#5bus2_aspmnv_global_pci_conf_3B%%3bus2_aspm_ennv_global_pci_cap_3µ''5bus2_restrictnv_global_pci_conf_3D)-3bus2_restrict_ennv_global_pci_cap_3·$!5bus2_speednv_global_pci_conf_3A')3bus2_speed_maxnv_global_pci_cap_3´$!5bus2_widthnv_global_pci_conf_3C')3bus2_width_maxnv_global_pci_cap_3¶#5bus3_aspmnv_global_pci_conf_3>%%3bus3_aspm_ennv_global_pci_cap_3±''5bus3_restrictnv_global_pci_conf_3@)-3bus3_restrict_ennv_global_pci_cap_3³ e¿YÒh¨OÚesZ37anv_module_split_capnv_module_feature_cap0x0.310x0.1BOOLWhen TRUE, NV_MODULE_SPLIT is configurablesY37anv_module_power_capnv_module_feature_cap0x0.300x0.1BOOLWhen TRUE, NV_MODULE_POWER is configurableWX35signaturefile_signature_30720x20.240x180.0BYTESThe signature itself€=W%3}keypair_uuidfile_signature_30720x10.240x10.0BYTESThe UUID of the key-pair used for signing this file. An all zero UUID means that the signature is a SHA256 of the image.hV)3Ssignature_uuidfile_signature_30720x0.240x10.0BYTESTime based UUID for this signature.DU)device_idfile_device_id0x0.240x20.0BYTESDevice Id ?T1 nonce11file_device_unique0x1C8.240x20.0BYTES dS11Cdevice_unique_id11file_device_unique0x1C0.240x8.0BYTESDevice Unique Identifier \;?R1 nonce10file_device_unique0x1A0.240x20.0BYTES NÉžn3Ë“a#å¥e)ñˆN8 7 1nv_module_feature_capNIC0 MODULE FEATURE CAP8 3 3file_signature_3072NIC0 FILE SIGNATURE 3072- ) )file_device_idNIC0 FILE DEVICE ID6 1 1file_device_uniqueNIC0èFILE DEVICE UNIQUE: 5 5file_public_key_4096NIC0 FILE PUBLIC KEY 4096> 9 9file_public_key_4096_bNIC0 FILE PUBLIC KEY 4096 B> 9 9file_public_key_4096_a NIC0 FILE PUBLIC KEY 4096 A< 7 7file_signature_4096_b NIC0 FILE SIGNATURE 4096 B< 7 7file_signature_4096_a NIC0 FILE SIGNATURE 4096 A0 + +file_public_key NIC0 FILE PUBLIC KEY6 1 1file_mac_addr_list NIC0FILE MAC ADDR LIST3 / /file_btc_token_idNIC0FILE BTC TOKEN ID1 - -file_cs_token_idNIC0FILE CS TOKEN ID9 5 5file_dbg_fw_token_idNIC0FILE DBG FW TOKEN ID. ) )file_signatureNIC0@FILE SIGNATURE) % %file_commentNIC0FILE COMMENT5 1 1file_applicable_toNIC0 FILE APPLICABLE TO MÑ£t=Ú³zC÷À‹V#ôÉŠM;$ ;  5nv_internal_hairpin_capNIC0INTERNAL HAIRPIN CAP=# = 7nv_internal_hairpin_confNIC0INTERNAL HAIRPIN CONF)" ) #nv_host_to_bmcNIC0HOST TO BMC-! - 'nv_roce_1_5_confNIC0ROCE 1 5 CONF1 1  +nv_flex_parser_capNIC0FLEX PARSER CAP3 3 -nv_flex_parser_confNIC0FLEX PARSER CONF3 3  -nv_internal_cpu_cap NIC0INTERNAL CPU CAP5 5 /nv_internal_cpu_conf NIC0INTERNAL CPU CONF# #  nv_fpga_cap NIC0FPGA CAP% % nv_fpga_conf NIC0FPGA CONF5 5  /nv_host_chaining_cap NIC0HOST CHAINING CAP7 7 1nv_host_chaining_confNIC0HOST CHAINING CONF% %  nv_memic_capNIC0MEMIC CAP' ' !nv_memic_confNIC0MEMIC CONF8 7 1nv_forbidden_versionsNIC0FORBIDDEN VERSIONS5 5  /nv_base_mac_guid_capNIC0BASE MAC GUID CAP- - 'nv_base_mac_guidNIC0BASE MAC GUID, + %nv_module_splitNIC0 MODULE SPLIT- + %nv_module_power€NIC0 MODULE POWER °°‚a\;+„% mac_assignment_for_lanenv_module_split0x0.240x10.0BINARYMAC number assignment for logical lane .\;MAC numbering starts from value of 1.\;number of logical lanes assigned to the same MAC number will define the port width.\;Value of 0 indicates lane is on default device mapping\;Value of 0xFF indicates lane is unmappedMODULE_SPLITƒi[+…]?g max_powernv_module_power0x0.00x0.8BINARYMax consumption power allowed, from thermal perspective, for module cage.\;Please advise that change of this field value requires the suitable LFM capability.\;0x0 - Maximum power is from devices default capability\;Other - Maximum power consumption in multiples of 0.25W.\;Note: Device has upper limit of max power consumption to prevent harmful configurationMODULE_MAX_POWER_OVERRIDE$nv_module_feature_cap.nv_module_power_cap==1 +¼òXÂ+a/7#creation_time_daynv_forbidden_versions0x0.00x0.8BINARYThe creation day of this FORBIDDEN_VERSION structure in 2 BCD digits. (GMT)`95num_of_allocated_guidsnv_base_mac_guid_cap0x4.160x0.16UNSIGNEDThe total number of GUIDs that can be derived form this base GUID._75num_of_allocated_macsnv_base_mac_guid_cap0x4.00x0.16UNSIGNEDThe total number of MAC addresses that can be derived from the base MAC.G^-‚!base_guidnv_base_mac_guid0x8.240x8.0BYTESThe base InfiniBand GUID. The InfiniBand addresses for the PCI physical functions of all the network ports are derived from the base GUID.‚A]-„base_macnv_base_mac_guid0x0.240x8.0BYTESThe base MAC address of the device. The MAC addresses for the PCI physical functions of all the network ports are derived from the base MAC.\;Offset 00h, bits 15..0 hold bits 47..32 of the MAC address.\;Offset 04h, bits 31..0 hold bits 31..0 of the MAC address. kÖ?§#f17=creation_time_hournv_forbidden_versions0x4.240x0.8BINARYThe creation hour of this FORBIDDEN_VERSION structure in 2 BCD digits. (GMT, 24h format)e57creation_time_minutenv_forbidden_versions0x4.160x0.8BINARYThe creation minute of this FORBIDDEN_VERSION structure in 2 BCD digits.d57creation_time_secondnv_forbidden_versions0x4.80x0.8BINARYThe creation second of this FORBIDDEN_VERSION structure in 2 BCD digits.c17creation_time_yearnv_forbidden_versions0x0.160x0.16BINARYThe creation year of this FORBIDDEN_VERSION structure in 4 BCD digits.b37creation_time_monthnv_forbidden_versions0x0.80x0.8BINARYThe creation month of this FORBIDDEN_VERSION structure in 2 BCD digits. ssšÁñ %M{»Ûü!Hp¶ß 3\…®×&#9cs_token_enfile_public_key_4096_a!&#9cs_token_enfile_public_key_4096_b+/1;current_cfg_methodnv_current_configurator+daynv_file_id_mlnx•/daynv_file_id_vendor '%7dbr_less_sqpnv_sw_accelerate_confõ-9/dbr_less_sqp_supportednv_sw_offload_cap{!%+dcbx_willingnv_lldp_nb_dcbxg)dce_tcp_gnv_roce_cc_ecnH#)dce_tcp_rttnv_roce_cc_ecnI ''dcr_lifo_sizenv_ib_dc_conf $%1debug_log_ennv_rom_debug_levelµ&'5debug_versionfile_dbg_fw_token_id'/-default_link_typenv_vpi_link_type7)device_idfile_device_idU(/1device_unique_id0file_device_unique=(/1device_unique_id1file_device_unique?)11device_unique_id10file_device_uniqueQ)11device_unique_id11file_device_uniqueS(/1device_unique_id2file_device_uniqueA(/1device_unique_id3file_device_uniqueC(/1device_unique_id4file_device_uniqueE(/1device_unique_id5file_device_uniqueG(/1device_unique_id6file_device_uniqueI fÍf‚di1'ƒ)W U log_memic_bar_sizenv_memic_conf0x0.00x0.8UNSIGNEDThe amount of BAR size assigned for MEMIC. The size in bytes is memic_size_limit*2^log_memic_bar_size.\;When activating MEMIC Atomic access by MEMIC_ATOMIC, the allocated BAR size for MEMIC is doubled.MEMIC_BAR_SIZE$nv_memic_cap.max_memic_size_limit!=0$nv_memic_cap.max_log_memic_bar_size‚0h57ƒOforbidden_fw_versionnv_forbidden_versions0x10.00x80.0BINARYA list of FW versions to which the device must refuse update. The FW version format is identical to the one shown in min_allowed_fw_version description.\;The list has up to 32 entries and is terminated by an entry set to 0x0. }g97‚kmin_allowed_fw_versionnv_forbidden_versions0x8.00x4.0BINARYThe minimal (earliest) firmware version priori to which the device must refuse update.\;Bits 31..24 - Major version\;bits 23..16: Minor version\;Bits 15..0 - Sub-minor version ɨɃ\k%'„a%[ memic_atomicnv_memic_conf0x0.140x0.2ENUMIndicates whether Atomic operations address range is supported for MEMIC. When accessing this range Read and Write operation are translated into 'Atomic test-and-set' and 'Atomic add' respectively.\;0x0: DEVICE_DEFAULT\;0x1: MEMIC_ATOMIC_DISABLE\;0x2: MEMIC_ATOMIC_ENABLE\;other values are reservedDEVICE_DEFAULT=0x0,MEMIC_ATOMIC_DISABLE=0x1,MEMIC_ATOMIC_ENABLE=0x2MEMIC_ATOMIC$nv_memic_cap.memic_atomic_supported==1‚Uj-'‚1i-W Q memic_size_limitnv_memic_conf0x0.80x0.4ENUMThe maximum amount of internal device memory that can be consumed by the MEMIC application.\;0x0: DISABLED\;0x1: _256KB\;0x2: _512KB\;0x3: _1024KBDISABLED=0x0,_256KB=0x1,_512KB=0x2,_1024KB=0x3MEMIC_SIZE_LIMIT$nv_memic_cap.max_memic_size_limit!=0$nv_memic_cap.max_memic_size_limit sVÞso9%%memic_atomic_supportednv_memic_cap0x0.150x0.1BOOLWhen TRUE, MEMIC_ATOMIC can be modified to values other than DEVICE_DEFAULT.Un5%Yimax_memic_size_limitnv_memic_cap0x0.80x0.4ENUMThe maximum value allowed for memic_size_limit.\;0x0: DISABLED\;0x1: _256KB\;0x2: _512KB\;0x3: _1024KBDISABLED=0x0,_256KB=0x1,_512KB=0x2,_1024KB=0x3vm9%mmax_log_memic_bar_sizenv_memic_cap0x0.00x0.8UNSIGNEDThe maximal value allowed for log_memic_bar_sizeƒ'l;'ƒ'79] memic_atomic_endiannessnv_memic_conf0x0.160x0.2ENUMIndicates what is the endianness of MEMIC for DM operations. \;This configuration does not apply to Internal CPU.\;0x0: DEVICE_DEFAULT\;0x1: MEMIC_ATOMIC_ENDIANNESS_BIG\;0x2: MEMIC_ATOMIC_ENDIANNESS_LITTLEDEVICE_DEFAULT=0x0,MEMIC_ATOMIC_ENDIANNESS_BIG=0x1,MEMIC_ATOMIC_ENDIANNESS_LITTLE=0x2MEMIC_ATOMIC_ENDIANESS$nv_memic_cap.memic_atomic_endianness==1 =biž=‚^s17ƒ{? log_num_descriptornv_host_chaining_conf0x4.240x8.0UNSIGNEDLog(base 2) of the number of packets descriptors that should be allocated by the host for host chaining for a given IEEE802.1p priority i.\;0 means that no descriptors are allocated for this priority and traffic with this priority will be dropped.HOST_CHAINING_DESCRIPTORSHr'7Cm cache_disablenv_host_chaining_conf0x0.30x0.1BOOLWhen TRUE, host chaining data is not cached on the device.HOST_CHAINING_CACHE_DISABLE$nv_host_chaining_cap.cache_disable_supported==1vq!7C91s chain_modenv_host_chaining_conf0x0.00x0.2ENUMEnable and select host-chaining mode.\;0x0: DISABLED\;0x1: BASIC\;other values are reservedDISABLED=0x0,BASIC=0x1HOST_CHAINING_MODE$nv_host_chaining_cap.chain_mode_basic_supported==1p;%9memic_atomic_endiannessnv_memic_cap0x0.160x0.1BOOLWhen TRUE, MEMIC_ATOMIC_ENDIANESS can be modified to values other than DEVICE_DEFAULT. GØ%¬G8xK5Mlog_max_num_descriptor_per_prionv_host_chaining_cap0x4.80x0.8UNSIGNEDLog(base 2) of the maximal number of packet descriptors allocated for host chaining per priority'wA55log_max_data_size_per_prionv_host_chaining_cap0x4.00x0.8UNSIGNEDLog(base 2) of the maximal data buffer size allocated for host chaining per prioritywvA5]chain_mode_basic_supportednv_host_chaining_cap0x0.310x0.1BOOLWhen set, chain_mode can be set to BASIC0u;5Scache_disable_supportednv_host_chaining_cap0x0.300x0.1BOOLWhen TRUE, caching of host chaining data can be disabled by cache_disable in NV_HOST_CHAINING_CONF.‚%t'7ƒK log_data_sizenv_host_chaining_conf0xC.240x8.0UNSIGNEDLog(base 2) of the buffer size (in bytes) allocated for host chaining for a given IEEE802.1p priority i.\;0 means no buffer for this priority and traffic with this priority will be dropped.HOST_CHAINING_TOTAL_BUFFER_SIZE ˆBBFKPUZ_dinsx}‚‡Œ‘–› ¥ª¯´¹¾ÃÈÍÒ×Üáæëðõúÿ "',16;@EJOTY^chmrw|†‹•šŸ¤©®³¸½ÂÇÌÑÖÛàåêïôùþ !&+05:?DINSX]bglqv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú       !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ]^_`abcdefghmnopuvwxyz|‚ƒ„…†‡‹ŒŽ‘’“”•—š›œª y**06<BHNTZ`flrx~„Š–œ¢¨®´ºÀÆÌÒØÞäêðöü &,28>DJPV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú¬®¯°±²¹¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâæéðõö÷øùúûüýþ"#$%&01234]^_`hntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøü  !$'*-0 QG‚¾Qk|)#oauto_reload_ennv_fpga_cap0x0.310x0.1BOOLWhen set, NV_FPGA_CONF.auto_rload is configurableA{#%A-I auto_reloadnv_fpga_conf0x0.310x0.1BOOLWhen set, the FPGA bitstream is reloaded from flash as part of the ConnectX boot sequence.FPGA_AUTO_RELOAD$nv_fpga_cap.auto_reload_en==1BzG5clog_max_total_num_descriptorsnv_host_chaining_cap0x4.240x0.8UNSIGNEDLog2 of the maximal total number of packet descriptors allocated for host chaining (sum of all priorities).6y;5Wlog_max_total_data_sizenv_host_chaining_cap0x4.160x0.8UNSIGNEDLog(base 2) of the maximal total data buffer size allocated for host chaining (sum of all priorities) r Éò4cƒ¢Ìÿ9_‡±ä r;a½Ú-;-disable_rshim_supportednv_host_priv_cap<(/1device_unique_id8file_device_uniqueM(/1device_unique_id9file_device_uniqueO1dhcpnv_rom_debug_level¸$'/dhcp_iscsi_ennv_rom_iscsi_dhcpü.I!dhcp_pxe_discovery_control_disnv_rom_iniO+!dhcp_user_classnv_rom_iniL1dhcpv6nv_rom_debug_level¹)1/disable_counter_rdnv_host_priv_conf52E-disable_counter_rd_supportednv_host_priv_cap:9M3disable_offload_engine_supportednv_internal_cpu_cap‚%-+disable_overridenv_file_id_mlnx'-/disable_overridenv_file_id_vendor›)1/disable_port_ownernv_host_priv_conf42E-disable_port_owner_supportednv_host_priv_cap9$'/disable_rshimnv_host_priv_conf71A/disable_rshim_pf_supportednv_global_pci_capÁ%)/disable_tracernv_host_priv_conf6.=-disable_tracer_supportednv_host_priv_cap;,;+do_not_clear_port_statsnv_keep_link_upl##dpa_auth_ennv_dpa_authž%#5dport_ownernv_global_pci_conf_3U ¸*¸‚o~'5‚3=A[ page_suppliernv_internal_cpu_conf0x0.40x0.1ENUMDefines the owner of providing ICM pages to the external host functions\;0x0: ECPF\;0x1: EXT_HOST_PF\;Valid for INTERNAL_CPU_MODEL = EMBEDDED_CPU\;ECPF=0x0,EXT_HOST_PF=0x1INTERNAL_CPU_PAGE_SUPPLIER($nv_internal_cpu_conf.internal_cpu_model==1) && ($nv_internal_cpu_cap.host_page_supplier_supported==1)ƒS}15…S1/ internal_cpu_modelnv_internal_cpu_conf0x0.00x0.4ENUMSelect the model for the Internal CPU\;0x0: SEPARATED_HOST - Supported only when NV_INTERNAL_CPU_CAP.separate_host_model_supported==1.\;0x1: EMBEDDED_CPU - Supported only when NV_INTERNAL_CPU_CAP.embedded_cpu_model_supported==1.\;other values are reserved\;This NVCONFIG parameter can only be configured from the embedded CPU.SEPARATED_HOST=0x0,EMBEDDED_CPU=0x1INTERNAL_CPU_MODELignore_dependency |ž|‚5)=9S ib_vport0nv_internal_cpu_conf0x0.60x0.1ENUMDefines the owner of IB Vport0 responsibilities\;0x0: ECPF\;0x1: EXT_HOST_PF\;ECPF=0x0,EXT_HOST_PF=0x1INTERNAL_CPU_IB_VPORT0($nv_internal_cpu_conf.internal_cpu_model==1) && ($nv_internal_cpu_cap.host_ib_vport0_supported==1)‚_#5‚=EW esw_managernv_internal_cpu_conf0x0.50x0.1ENUMDefines the owner of Eth Embedded Switch responsibilities\;0x0: ECPF\;0x1: EXT_HOST_PF\;Valid for INTERNAL_CPU_MODEL = EMBEDDED_CPU\;ECPF=0x0,EXT_HOST_PF=0x1INTERNAL_CPU_ESWITCH_MANAGER($nv_internal_cpu_conf.internal_cpu_model==1) && ($nv_internal_cpu_cap.host_esw_manager_supported==1) G‘ûoÛGE3 host_page_supplier_supportednv_internal_cpu_cap0x0.290x0.1BOOLWhen TRUE, INTERNAL_CPU_PAGE_SUPPLIER can be set to EXT_HOST_PFA3host_esw_manager_supportednv_internal_cpu_cap0x0.280x0.1BOOLWhen TRUE, INTERNAL_CPU_ESWITCH_MANAGER can be set to EXT_HOST_PF=3host_ib_vport0_supportednv_internal_cpu_cap0x0.270x0.1BOOLWhen TRUE, INTERNAL_CPU_IB_VPORT0 can be set to EXT_HOST_PFM3disable_offload_engine_supportednv_internal_cpu_cap0x0.250x0.1BOOLWhen TRUE, INTERNAL_CPU_OFFLOAD_ENGINE can be set to DISABLED‚k)5‚=Cc offload_enginenv_internal_cpu_conf0x0.80x0.1ENUMDefines whether the Internal CPU is used as an offload engine\;0x0: ENABLED\;0x1: DISABLED\;Valid for INTERNAL_CPU_MODEL = EMBEDDED_CPU\;ENABLED=0x0,DISABLED=0x1INTERNAL_CPU_OFFLOAD_ENGINE($nv_internal_cpu_conf.internal_cpu_model==1) && ($nv_internal_cpu_cap.disable_offload_engine_supported==1) )jÓ)A3ƒOAˆ  flex_parser_profile_enablenv_flex_parser_conf0x0.00x0.8UNSIGNEDIndicates which flex parser profile to enable. Each profile supports a set of protocols. The support indication and the set of protocols supported by profile 'x' reported in NC_FLEX_PARSER_CAP.flex_parser_profile_x_supported.FLEX_PARSER_PROFILE_ENABLE($nv_flex_parser_cap.flex_parser_profile_0_supported==1)||($nv_flex_parser_cap.flex_parser_profile_1_supported==1)||($nv_flex_parser_cap.flex_parser_profile_2_supported==1)||($nv_flex_parser_cap.flex_parser_profile_3_supported==1)||($nv_flex_parser_cap.flex_parser_profile_4_supported==1)||($nv_flex_parser_cap.flex_parser_profile_5_suppor/G3separate_host_model_supportednv_internal_cpu_cap0x0.310x0.1BOOLIf set, SEPARATED_HOST model is supported for INTERNAL_CPU_MODEL.E3embedded_cpu_model_supportednv_internal_cpu_cap0x0.300x0.1BOOLIf set, EMBEDDED_CPU model is supported for INTERNAL_CPU_MODEL.\;ted==1)||($nv_flex_parser_cap.flex_parser_profile_6_supported==1)||($nv_flex_parser_cap.flex_parser_profile_7_supported==1)||($nv_flex_parser_cap.flex_parser_profile_8_supported==1)($flex_parser_profile_enable==0 && $nv_flex_parser_cap.flex_parser_profile_0_supported==1) || ($flex_parser_profile_enable==1 && $nv_flex_parser_cap.flex_parser_profile_1_supported==1) || ($flex_parser_profile_enable==2 && $nv_flex_parser_cap.flex_parser_profile_2_supported==1) || ($flex_parser_profile_enable==3 && $nv_flex_parser_cap.flex_parser_profile_3_supported==1) || ($flex_parser_profile_enable==4 && $nv_flex_parser_cap.flex_parser_profile_4_supported==1) || ($flex_parser_profile_enable==5 && $nv_flex_parser_cap.flex_parser_profile_5_supported==1)|| ($flex_parser_profile_enable==6 && $nv_flex_parser_cap.flex_parser_profile_6_supported==1)|| ($flex_parser_profile_enable==7 && $nv_flex_parser_cap.flex_parser_profile_7_supported==1)|| ($flex_parser_profile_enable==8 && $nv_flex_parser_cap.flex_parser_profile_8_supported==1) 讣è7 A1aprog_parse_graph_supportednv_flex_parser_cap0x0.00x0.1BOOLWhen TRUE, indicated dynamic programming of the device parse graph may be enabled using PROG_ PARSE_GRAPH.‚ ?3‚#?/ flex_ipv4_over_vxlan_portnv_flex_parser_conf0x8.00x0.16UNSIGNEDThe UDP port for incoming IPoVxLAN traffic (non-standard).\;When set, also affects flex_vxlan_gpe_supported when enabled on same profile.\;FLEX_IPV4_OVER_VXLAN_PORTignore_dependency‚N -3ƒ-s prog_parse_graphnv_flex_parser_conf0x0.310x0.1BOOLWhen TRUE, the device parse graph may be dynamically configured. The amount of programmable resources is reduced according to the amount of protocols already supported by FLEX_PARSER_PROFILE_ENABLE.PROG_PARSE_GRAPH($nv_flex_parser_cap.prog_parse_graph_supported==1) ŒŒÇ&Uv–´Ëè3Ow”·Õî &ZŒÂ:C?hairpin_data_lock_supportednv_performance_tuning_capæ8??hairpin_wqe_num_supportednv_performance_tuning_capå%'1hide_port2_pfnv_global_pci_conf·.;/hide_port2_pf_supportednv_global_pci_capÙ -!hii_aim_ucm_ver2nv_rom_iniU+!hii_bdf_decimalnv_rom_ini?'!hii_config_ennv_rom_cap^!hii_ennv_rom_iniJ-hii_ennv_rom_uefi_conf³%7!hii_flexaddr_overridenv_rom_iniP$5!hii_flexaddr_settingnv_rom_iniQ#!hii_ibm_aimnv_rom_ini=';!hii_iscsi_configurationnv_rom_ini<%!hii_mriname2nv_rom_iniT"1!hii_platform_setupnv_rom_ini>'!hii_read_onlynv_rom_ini@!hii_typenv_rom_iniS!!hii_vpi_ennv_rom_ini9)host2bmcnv_host_to_bmc—3A3host_esw_manager_supportednv_internal_cpu_cap„1=3host_ib_vport0_supportednv_internal_cpu_capƒ5E3host_page_supplier_supportednv_internal_cpu_cap…=CEhotplug_virtio_transitionalnv_emulation_pci_switch_conf (b(‚6 K1ƒSflex_parser_profile_8_supportednv_flex_parser_cap0x0.230x0.1BOOLWhen TRUE, profile 8 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;flex_geneve_supported\;flex_geneve_tlv_option_supportedƒ K1…flex_parser_profile_9_supportednv_flex_parser_cap0x0.220x0.1BOOLWhen true, profile 9 is supported and can be enabled by NV_FLEXPARSER_CONF.flex_parser_profile_enable. Enabling this profile does not provide parsing of additional protocols. Instead, it keeps all programmable parsing resources free, restricting programmable parsing resources allocation only to ECPF when in switch mode or PF. ¼!‚ K1‚{flex_parser_profile_5_supportednv_flex_parser_cap0x0.260x0.1BOOLWhen TRUE, profile 5 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;IPoIB_UD_QPƒK1…flex_parser_profile_6_supportednv_flex_parser_cap0x0.250x0.1BOOLWhen TRUE, profile 6 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;flex_vxlan_pad_supported (VXLAN header is padded with additional DWs according to the 8 bit next to the VNI)\;flex_icmp_supported\;flex_icmpv6_supported‚@K1ƒgflex_parser_profile_7_supportednv_flex_parser_cap0x0.240x0.1BOOLWhen TRUE, profile 7 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;flex_geneve_supported\;flex_icmp_supported\;flex_icmpv6_supported ^ÛÌ^‚jK1„;flex_parser_profile_2_supportednv_flex_parser_cap0x0.290x0.1BOOLIf set, indicates profile 2 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;flex_vxlan_gpe_supported\;flex_ipv4_over_vxlan_supported\;flex_icmp_supported\;flex_icmpv6_supported‚ K1‚}flex_parser_profile_3_supportednv_flex_parser_cap0x0.280x0.1BOOLIf set, indicates profile 3 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;GTP-U‚!K1ƒ)flex_parser_profile_4_supportednv_flex_parser_cap0x0.270x0.1BOOLWhen TRUE, profile 4 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows no additional protocols, keeping all programmable parsing resources free ¨a¨ƒ5K1…Qflex_parser_profile_0_supportednv_flex_parser_cap0x0.310x0.1BOOLIf set, indicates profile 0 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;\;flex_geneve_supported\;flex_ipv4_over_vxlan_supported\;flex_ipv4_over_ip_supported\;flex_ipv6_over_ip_supported\;flex_vxlan_gpe_supported\;flex_geneve_tlv_option_0_supportedƒK1…flex_parser_profile_1_supportednv_flex_parser_cap0x0.300x0.1BOOLIf set, indicates profile 1 is supported and can be enabled by NV_FLEX_PARSER_CONF.flex_parser_profile_enable.\;Enabling this profile allows for parsing the following protocols:\;\;flex_geneve_supported\;flex_ctrl_word_over_mpls_over_gre_supported\;flex_ctrl_word_over_mpls_over_udp_supported\;flex_geneve_tlv_option_0_supported EGÑ{E‚21=ƒK log_hpin_data_sizenv_internal_hairpin_conf0x8.240x8.0UNSIGNEDLog(base 2) of the buffer size (in bytes) allocated internally for hairpin for a given IEEE802.1p priority i.\;0 means no buffer for this priority and traffic with this priority will be dropped.ESWITCH_HAIRPIN_TOT_BUFFER_SIZE‚R;=ƒOC log_hpin_num_descriptornv_internal_hairpin_conf0x0.240x8.0UNSIGNEDLog(base 2) of the number of packets descriptors allocated internally for hairpin for a given IEEE802.1p priority i.\;0 means that no descriptors are allocated for this priority and traffic with this priority will be dropped.ESWITCH_HAIRPIN_DESCRIPTORSs)host2bmcnv_host_to_bmc0x0.00x0.1UNSIGNEDWhen set, the host can communicate directly with the BMC.5A-1/ roce_over_ip_next_protocolnv_roce_1_5_conf0x0.00x0.8UNSIGNEDThe next protocol value set in the IPv4/IPv6 packets for RoCE v1.5.ROCE_NEXT_PROTOCOLignore_dependency ^K…Áñ^##w1/ dpa_auth_ennv_dpa_auth0x0.310x0.1BOOLWhen TRUE, DPA code is authenticated before executed.DPA_AUTHENTICATIONignore_dependencyLQ;glog_max_hpin_total_num_descriptorsnv_internal_hairpin_cap0x0.240x0.8UNSIGNEDLog2 of the maximal total number of packet descriptors allocated for eswitch hairpin (sum of all priorities).@E;[log_max_hpin_total_data_sizenv_internal_hairpin_cap0x0.160x0.8UNSIGNEDLog(base 2) of the maximal total data buffer size allocated for eswitch hairpin (sum of all priorities)BU;Qlog_max_hpin_num_descriptor_per_prionv_internal_hairpin_cap0x0.80x0.8UNSIGNEDLog(base 2) of the maximal number of packet descriptors allocated for eswitch hairpin per priority1K;9log_max_hpin_data_size_per_prionv_internal_hairpin_cap0x0.00x0.8UNSIGNEDLog(base 2) of the maximal data buffer size allocated for eswitch hairpin per priority aÛ§uOí±wM%ó·}5ï§aD5 C  =nv_emulation_virtio_net_cap‘NIC0EMULATION VIRTIO NET CAPF4 E ?nv_emulation_virtio_net_confNIC0 EMULATION VIRTIO NET CONFD3 C  =nv_emulation_pci_switch_capŽNIC0EMULATION PCI SWITCH CAPF2 E ?nv_emulation_pci_switch_confNIC0EMULATION PCI SWITCH CONF81 7  1nv_emulation_nvme_capŒNIC0EMULATION NVME CAP:0 9 3nv_emulation_nvme_conf‹NIC0EMULATION NVME CONF0/ / )nv_host_sync_confŠNIC0 HOST SYNC CONF&. %  nv_power_cap‰NIC0POWER CAP(- ' !nv_power_confˆNIC0POWER CONF8, 7  1nv_pci_switch_evb_cap‡NIC0PCI SWITCH EVB CAP:+ 9 3nv_pci_switch_evb_conf†NIC0 PCI SWITCH EVB CONF(* ' !nv_kdnet_data…NIC0KDNET DATA6) 5 /nv_global_pci_conf_2„NIC0GLOBAL PCI CONF 2$( # nv_tpt_conf‚NIC0TPT CONF0' /  )nv_global_pci_capNIC0GLOBAL PCI CAP2& 1 +nv_global_pci_conf€NIC0 GLOBAL PCI CONF#% # nv_dpa_authNIC0DPA AUTH ŸF²Ÿ‚!1{=1q rshim_pfnv_global_pci_conf0x0.130x0.1ENUMDefines whether an RSHIM function will be exposed (when available) to the external host.\;0x0: ENABLED\;0x1: DISABLED\;ENABLED=0x0,DISABLED=0x1INTERNAL_CPU_RSHIM$nv_global_pci_cap.disable_rshim_pf_supported == 1ƒ I1ƒ-=I} dpu_reset_notification_enablednv_global_pci_conf0x0.120x0.1ENUMWhen set, the NIC can report PCIe errors through AER cap to all hosts it is connected to on DPU reset\panic. (If no error reporting is enabled, the DPU will not report any error.)\;0x0: DISABLED\;0x1: ENABLEDDISABLED=0x0,ENABLED=0x1DPU_RESET_NOTIFICATION_ENABLED$nv_global_pci_cap.dpu_reset_notification_supported == 16-1%_ log_pf_bar2_sizenv_global_pci_conf0x0.00x0.8UNSIGNEDLog (base 2) of the size of a PF's BAR2 size, given in MB.PF_BAR2_SIZE$nv_global_pci_cap.pf_bar2_supported == 1 !!‚Z#11„1 per_pf_num_vf_msixnv_global_pci_conf0x0.150x0.1BOOLWhen set to TRUE, the VF MSI-X configuration is defined by NUM_VF_MSIX for each PF individually. In case they are not defined for a PF, device defaults are used for that PF.\;When set to FALSE, the MSI-X configuration is defined by \;NUM_VF_MSIX for all PFs.PER_PF_NUM_VF_MSIX‚}"+1ƒ{1o per_pf_total_vfnv_global_pci_conf0x0.140x0.1BOOLWhen TRUE, the number of VFs is defined for each networking PF individually in PF_NUM_OF_VF. In case they are not defined for a PF, device defaults are used instead.\;When FALSE, the number of VFs is defined symmetrically for all PFs by NUM_OF_VFSPF_NUM_OF_VF_VALID$nv_global_pci_cap.per_pf_total_vf_supported == 1 lºƒ&+1„/5o per_pf_num_msixnv_global_pci_conf0x0.190x0.1BOOLWhen TRUE, the MSI-X configuration is defined by PF_NUM_PF_MSIX for each PF individually. In case they are not defined for a PF, device defaults are used.\;When FALSE, the MSI-X configuration is defined by device defaults\;Valid only when NUM_PF_MSIX_VALID is set to FALSE.PF_NUM_PF_MSIX_VALID$nv_global_pci_cap.per_pf_num_msix_supported == 1.%'1'] vf_vpd_enablenv_global_pci_conf0x0.180x0.1BOOLWhen set, VPD Capability is exposed to Virtual Functions.VF_VPD_ENABLE$nv_global_pci_cap.vf_vpd_supported == 1ƒ$;1ƒA;{G non_prefetchable_pf_barnv_global_pci_conf0x0.170x0.1BOOLWhen set, the PF BAR prefetchable bit is cleared.\;Note: PCI switches and operation systems have dedicated quotas for non-prefetchable memory, hence, you may need to decrease log_pf_uar_bar_size to enable this feature.NON_PREFETCHABLE_PF_BAR$nv_global_pci_cap.non_prefetchable_pf_bar_supported==1non_prefetchable_pf_bar_valid “i€“i)-1a-c vf_nodnic_enablenv_global_pci_conf0x0.220x0.1BOOLWhen set to TRUE, VF has VSC Gateway exposed through PCI, and may access the NODNIC initialization segmentVF_NODNIC_ENABLE$nv_global_pci_cap.vf_nodnic_supported == 1e(A131q strict_vf_msix_num_enablednv_global_pci_conf0x0.210x0.1BOOLWhen set to TRUE, num_vf_msix defines a strict number (no calculation and roundup).STRICT_VF_MSIX_NUM$nv_global_pci_cap.strict_vf_msix_num_supported==1ƒ''1„9'k per_pf_num_sfnv_global_pci_conf0x0.200x0.1BOOLWhen TRUE, the SFs configuration is defined by TOTAL_SF and SF_BAR_SIZE for each PF individually. In case they are not defined for a PF, device defaults are used. \;When FALSE, the SFs configuration is defined by device defaults.\;Valid only when PF_BAR2_ENABLE is set to FALSE.PER_PF_NUM_SF$nv_global_pci_cap.per_pf_num_sf_supported == 1 FFµÓñ/Mk‰§ÅãDi›Ó8O/non_prefetchable_pf_bar_supportednv_global_pci_capÍ5G1non_prefetchable_pf_bar_validnv_global_pci_confª1nonce0file_device_unique>1nonce1file_device_unique@1nonce10file_device_uniqueR1nonce11file_device_uniqueT1nonce2file_device_uniqueB1nonce3file_device_uniqueD1nonce4file_device_uniqueF1nonce5file_device_uniqueH1nonce6file_device_uniqueJ1nonce7file_device_uniqueL1nonce8file_device_uniqueN1nonce9file_device_uniqueP$'1nonce_versionfile_device_unique<$5!np_rtt_int_data_modenv_pcc_intË1G)np_rtt_int_data_mode_last_hopnv_pcc_int_capÚ7S)np_rtt_int_data_mode_most_congestednv_pcc_int_capÙ,=)np_rtt_int_data_nv_int_0nv_pcc_int_capÖ 7:ŠÚç7,./1[num_vf_msix_validnv_global_pci_conf0x0.270x0.1BOOLWhen set, the num_vf_msix field is valid. \;When cleared, the device uses the "factory_settings" value.o-/1i/c num_pf_msix_validnv_global_pci_conf0x0.260x0.1BOOLWhen set, the num_pf_msix field is valid. \;When cleared, the number of PF MSI-X is defined by PER_PF_NUM_MSIXNUM_PF_MSIX_VALID$nv_global_pci_cap.num_pf_msix_supported==1,,/1[vf_bar_size_validnv_global_pci_conf0x0.250x0.1BOOLWhen set, the vf_bar_size field is valid. \;When cleared, the device uses the "factory_settings" value.,+/1[pf_bar_size_validnv_global_pci_conf0x0.240x0.1BOOLWhen set, the pf_bar_size field is valid. \;When cleared, the device uses the "factory_settings" value.B*G1onon_prefetchable_pf_bar_validnv_global_pci_conf0x0.230x0.1BOOLWhen set to TRUE, non_prefetchable_bar field and allow_large_non_prefetchable_pf_bar overrides the default value. dX¸d 2#1Osriov_validnv_global_pci_conf0x0.310x0.1BOOLWhen set, the sriov field is valid. \;When cleared, the device uses the "factory_settings" value.,1/1[full_vf_qos_validnv_global_pci_conf0x0.300x0.1BOOLWhen set, the full_vf_qos field is valid. \;When cleared, the device uses the "factory_settings" value.01Kfpp_validnv_global_pci_conf0x0.290x0.1BOOLWhen set, the fpp field is valid. \;When cleared, the device uses the "factory_settings" value.$/'1Snum_pfs_validnv_global_pci_conf0x0.280x0.1BOOLWhen set, the num_pfs field is valid. \;When cleared, the device uses the "factory_settings" value. Iï>ZŒI°Ý=ei×’Àî=mœÈ#)num_vf_msixnv_pf_pci_conf“-'Anv_cfg_globalnv_external_host_priv_conf+#Anv_cfg_portnv_external_host_priv_conf+#Anv_cfg_hostnv_external_host_priv_conf(//num_pfs_supportednv_global_pci_capÒ%'1num_pfs_validnv_global_pci_conf¯'num_portnv_power_confê1+Enum_switch_portnv_emulation_pci_switch_conf##1num_vf_msixnv_global_pci_conf¾,7/num_vf_msix_supportednv_global_pci_capÑ)/1num_vf_msix_validnv_global_pci_conf®5A7number_of_pci_switch_lanesnv_pci_switch_evb_capé''5number_of_pexnv_global_pci_conf_4a,15number_of_switchesnv_global_pci_conf_4b-37nv_module_power_capnv_module_feature_capY-37nv_module_split_capnv_module_feature_capZ(7'nvia_nvconfig_on_bootnv_debug_mode5%1'nvia_nvlog_on_bootnv_debug_mode6/39nvme_emu_class_codenv_emulation_nvme_conf.19nvme_emu_device_idnv_emulation_nvme_conf++9nvme_emu_enablenv_emulation_nvme_conf7C9nvme_emu_log_pf_queue_depthnv_emulation_nvme_conf ??‡=31{!S#„Q 1…9 total_vfsnv_global_pci_conf0x4.00x0.16UNSIGNEDThe total number of Virtual Functions (VFs) that can be supported, for each PF.\;Valid when PF_NUM_OF_VF_VALID is FALSENUM_OF_VFS$nv_global_pci_cap.sriov_support==1sriov_valid$_calculatedTotalBar=($fpp_en==1?(log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar/$num_pfs - ($log_pf_uar_bar_size)^2) / $total_vfs))) : (log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar - ($log_pf_uar_bar_size)^2) / $total_vfs))))$nv_global_pci_cap.max_vfs_per_pf_valid==1 ? $nv_global_pci_cap.max_vfs_per_pf : 0(($nv_global_pci_cap.max_total_msix_valid==0)||($nv_global_pci_cap.max_total_msix==0)||(($num_pfs * ($num_pf_msix + $total_vfs * $num_vf_msix))<=$nv_global_pci_cap.max_total_msix)) && (($nv_global_pci_cap.max_total_bar_valid==0)||($nv_global_pci_cap.max_total_bar==0)||($sriov_en==0)||($_calculatedTotalBar<=$nv_global_pci_cap.max_total_bar)) offlrx~„Š–œ¢¨®´ºÀÆÌÒØÞäêðöü &,28>DJPV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú56789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦¨©ª«¬­®¯°±²³´µ¶·¸¹ ÒÒ„*41†W/' I num_pfsnv_global_pci_conf0x4.160x0.8UNSIGNEDTotal number of Network PCIe functions (PFs) exposed by the device. In case the number of PFs cannot be equally distributed between the number of ports, the remainder of PFs will be distribute between the ports with the lower numbers. For a Multi-Host device, this number is applied to each host individually.\;Value 0 is only supported when an Emulated PCI Switch is present or another type of PF (e.g. emulated device).NUM_OF_PFignore_dependencynum_pfs_valid0$nv_global_pci_cap.max_num_pfs ##…Y571ƒ?=k ƒ_ partial_wr_cache_modenv_global_pci_conf0x4.240x0.3ENUMSpecifies the mode of operation for PCI write cache, for partial cacheline writes:\;0x0: DEVICE_DEFAULT - device default configuration\;0x1: DISABLED\;0x2: FUNCTION_BASED\;0x3: ADDRESS_BASED\;other values are reservedDEVICE_DEFAULT=0x0,DISABLED=0x1,FUNCTION_BASED=0x2,ADDRESS_BASED=0x3PARTIAL_WRITE_CACHE_MODE($nv_global_pci_cap.partial_wr_cache_mode_function==1) || ($nv_global_pci_cap.partial_wr_cache_mode_address==1)(($partial_wr_cache_mode==0) || ($partial_wr_cache_mode==1) || ($partial_wr_cache_mode==2 && $nv_global_pci_cap.partial_wr_cache_mode_function==1) || ($partial_wr_cache_mode==3 && $nv_global_pci_cap.partial_wr_cache_mode_address==1)) %¯c%‚:81ƒ-O fpp_ennv_global_pci_conf0x4.290x0.1BOOLWhen this bit is cleared, the device exposes a single PCI function for both ports. When set, the device exposes one or more PCI functions for each port (this is the only mode supported by ConnectX-4 devices).FPP_EN$nv_global_pci_cap.fpp_support==1fpp_valid‚H7'1ƒ#'k hide_port2_pfnv_global_pci_conf0x4.280x0.1BOOLWhen TRUE, the device will not advertise the PFs associated with port 2, except for the Embedded CPU (ECPF) if exists. This configuration is available only when NV_PCI_CONF.ADVANCED_PCI_SETTINGS is TRUE.HIDE_PORT2_PF$nv_global_pci_cap.hide_port2_pf_supported != 0‚M6!1ƒ=)_ pf_bar2_ennv_global_pci_conf0x4.270x0.1BOOLWhen TRUE, BAR2 is exposed on all external host PFs (but not on the embedded ARM PFs/ECPFs). The BAR2 size is defined by the log_pf_bar2_size.\;When FALSE, the SFs and BAR2 configurations are defined by PER_PF_NUM_SFPF_BAR2_ENABLE$nv_global_pci_cap.pf_bar2_supported == 1 HeH†:1iS#„Q …9 sriov_ennv_global_pci_conf0x4.310x0.1BOOLEnable Single-Root I/O Virtualization (SR-IOV)SRIOV_EN$nv_global_pci_cap.sriov_support==1sriov_valid$_calculatedTotalBar=($fpp_en==1?(log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar/$num_pfs - ($log_pf_uar_bar_size)^2) / $total_vfs))) : (log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar - ($log_pf_uar_bar_size)^2) / $total_vfs))))(($nv_global_pci_cap.max_total_msix_valid==0)||($nv_global_pci_cap.max_total_msix==0)||(($num_pfs * ($num_pf_msix + $total_vfs * $num_vf_msix))<=$nv_global_pci_cap.max_total_msix)) && (($nv_global_pci_cap.max_total_bar_valid==0)||($nv_global_pci_cap.max_total_bar==0)||($sriov_en==0)||($_calculatedTotalBar<=$nv_global_pci_cap.max_total_bar))9#1=full_vf_qosnv_global_pci_conf0x4.300x0.1BOOLWhen set, Virtual Function has the same number of traffic classes as physical functions. SS…);31c+c/„Q a‚E log_pf_uar_bar_sizenv_global_pci_conf0x8.00x0.6UNSIGNEDLog 2 of the size of a PF"s UAR BAR in MBs.PF_LOG_BAR_SIZE$nv_global_pci_cap.pf_bar_size_supported==1pf_bar_size_valid$_calculatedTotalBar=($fpp_en==1?(log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar/$num_pfs - ($log_pf_uar_bar_size)^2) / $total_vfs))) : (log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar - ($log_pf_uar_bar_size)^2) / $total_vfs))))$nv_global_pci_cap.max_log_pf_uar_bar_size($nv_global_pci_cap.max_total_bar_valid==0)||($nv_global_pci_cap.max_total_bar==0)||($sriov_en==0)||($_calculatedTotalBar<=$nv_global_pci_cap.max_total_bar) SS…)<31c+c/„Q a‚E log_vf_uar_bar_sizenv_global_pci_conf0x8.60x0.6UNSIGNEDLog 2 of the size of a VF"s UAR BAR in MBs.VF_LOG_BAR_SIZE$nv_global_pci_cap.vf_bar_size_supported==1vf_bar_size_valid$_calculatedTotalBar=($fpp_en==1?(log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar/$num_pfs - ($log_pf_uar_bar_size)^2) / $total_vfs))) : (log2($nv_global_pci_cap.max_total_bar==0?1:(($nv_global_pci_cap.max_total_bar - ($log_pf_uar_bar_size)^2) / $total_vfs))))$nv_global_pci_cap.max_log_vf_uar_bar_size($nv_global_pci_cap.max_total_bar_valid==0)||($nv_global_pci_cap.max_total_bar==0)||($sriov_en==0)||($_calculatedTotalBar<=$nv_global_pci_cap.max_total_bar) fvìf?A/{per_pf_device_id_supportednv_global_pci_cap0x0.80x0.1BOOLWhen TRUE, NV_PF_PCI_CONF.pf_device_id_en is supported.ƒ>#1[#c/ Q‚q num_vf_msixnv_global_pci_conf0x8.220x0.10UNSIGNEDNumber of MSI-X vectors and EQs per VF.NUM_VF_MSIX$nv_global_pci_cap.num_vf_msix_supported==1num_vf_msix_valid$nv_global_pci_cap.max_num_vf_msix($nv_global_pci_cap.max_total_msix_valid==0)||($nv_global_pci_cap.max_total_msix==0)||(($num_pfs * ($num_pf_msix + $total_vfs * $num_vf_msix))<=$nv_global_pci_cap.max_total_msix)ƒ=#1[#c/ Q‚q num_pf_msixnv_global_pci_conf0x8.120x0.10UNSIGNEDNumber of MSI-X vectors and EQs per PF.NUM_PF_MSIX$nv_global_pci_cap.num_pf_msix_supported==1num_pf_msix_valid$nv_global_pci_cap.max_num_pf_msix($nv_global_pci_cap.max_total_msix_valid==0)||($nv_global_pci_cap.max_total_msix==0)||(($num_pfs * ($num_pf_msix + $total_vfs * $num_vf_msix))<=$nv_global_pci_cap.max_total_msix) œbÞN¸(œE;/ per_pf_num_sf_supportednv_global_pci_cap0x0.140x0.1BOOLWhen TRUE, NV_GLOBAL_PCI_CONF.per_pf_num_sf can be set to TRUE D?/ per_pf_num_msix_supportednv_global_pci_cap0x0.130x0.1BOOLWhen TRUE, NV_GLOBAL_PCI_CONF.per_pf_num_msix can be set to TRUECE/per_pf_num_vf_msix_supportednv_global_pci_cap0x0.120x0.1BOOLWhen TRUE, NV_GLOBAL_PCI_CONF.per_pf_num_vf_msix can be set to TRUE B?/ per_pf_total_vf_supportednv_global_pci_cap0x0.110x0.1BOOLWhen TRUE, NV_GLOBAL_PCI_CONF.per_pf_total_vf can be set to TRUEAA/udisable_rshim_pf_supportednv_global_pci_cap0x0.100x0.1BOOLWhen TRUE, INTERNAL_CPU_RSHIM can be set to DISABLED@M/dpu_reset_notification_supportednv_global_pci_cap0x0.90x0.1BOOLWhen set, NV_GLOBAL_PCI_CONF.dpu_reset_notification_enabled is supported 4]¸ãF¼4KE/ystrict_vf_msix_num_supportednv_global_pci_cap0x0.210x0.1BOOLWhen set to TRUE, strict_vf_msix_num_enabled is valid.JS/opcie_credit_token_timeout_supportednv_global_pci_cap0x0.190x0.1BOOLWhen set, pcie_credit_token_timeout is supported.I-/9vf_vpd_supportednv_global_pci_cap0x0.180x0.1BOOLWhen set, VPD Capability exposure to Virtual Functions is controlled by vf_vpd_enable.QH[/{max_acc_outstanding_read_byte_supportednv_global_pci_cap0x0.170x0.1BOOLWhen set, maximal accumulated outstanding read bytes can be limited by GLOBAL_PCI_CONF_2 max_acc_outstanding_read_byte.!GI/-partial_wr_cache_mode_functionnv_global_pci_cap0x0.160x0.1BOOLWhen TRUE, NV_GLOBAL_PCI_CONF.partial_wr_cache_mode can be set to FUNCTION_BASEDFG/+partial_wr_cache_mode_addressnv_global_pci_cap0x0.150x0.1BOOLWhen TRUE, NV_GLOBAL_PCI_CONF.partial_wr_cache_mode can be set to ADDRESS_BASED —/ í:—P7/;num_pf_msix_supportednv_global_pci_cap0x0.260x0.1BOOLWhen set, the num_pf_msix field is configurable and the max_num_pf_msix field is valid./O7/[vf_bar_size_supportednv_global_pci_cap0x0.250x0.1BOOLWhen set, the log_vf_uar_bar_size field is configurable and the max_log_vf_uar_bar_size field is valid./N7/[pf_bar_size_supportednv_global_pci_cap0x0.240x0.1BOOLWhen set, the log_pf_uar_bar_size field is configurable and the max_log_pf_uar_bar_size field is valid. MO/}non_prefetchable_pf_bar_supportednv_global_pci_cap0x0.230x0.1BOOLTrue when non_prefetchable_pf_bar field is configurable.ML3/‚vf_nodnic_supportednv_global_pci_cap0x0.220x0.1BOOLWhen TRUE, the device supports enabling a VF to have VSC Gateway exposed through PCI, and may access the NODNIC initialization segment. ¤¤ÙI}¸êBtœÍó"M©Ú4=9pci_switch_lanes_mappingnv_pci_switch_evb_confè9G9pci_switch_lanes_remapping_ennv_pci_switch_evb_confç55Cpci_switch_supportednv_emulation_pci_switch_cap3?5pcie_credit_token_timeoutnv_global_pci_conf_2ä:S/pcie_credit_token_timeout_supportednv_global_pci_capÊ15;pcie_error_injectionnv_advanced_testability.=-pcie_in_band_vdm_disablenv_host_mng_confþ(1-pcie_smbus_disablenv_host_mng_confý1A/per_pf_device_id_supportednv_global_pci_cap¿'+1per_pf_num_msixnv_global_pci_conf¦0?/per_pf_num_msix_supportednv_global_pci_capÄ%'1per_pf_num_sfnv_global_pci_conf§.;/per_pf_num_sf_supportednv_global_pci_capÅ*11per_pf_num_vf_msixnv_global_pci_conf£3E/per_pf_num_vf_msix_supportednv_global_pci_capÃ'+1per_pf_total_vfnv_global_pci_conf¢0?/per_pf_total_vf_supportednv_global_pci_capÂ%-+per_tlv_prioritynv_file_id_mlnx’ É]ÐÊÉ}T5/‚ymax_total_msix_validnv_global_pci_cap0x0.300x0.1BOOLWhen set, the NIC will only respect NV_GLOBAL_PCI_CONF TLV if the total MSIX required for all PFs and VFs is lower or equal to the number specified in the max_total_msix field below.‚S3/ƒmax_total_bar_validnv_global_pci_cap0x0.290x0.1BOOLWhen set, the NIC will only respect an NV_GLOBAL_PCI_CONF TLV if the total bar size required for all PFs and VFs is lower or equal to the number specified in the max_total_bar field below. R//num_pfs_supportednv_global_pci_cap0x0.280x0.1BOOLWhen set, the num_pfs field is configurable and max_num_pfs is valid.Q7/;num_vf_msix_supportednv_global_pci_cap0x0.270x0.1BOOLWhen set, the num_vf_msix field is configurable and the max_num_vf_msix field is valid. '„˜$±'[9/vf_qos_control_supportnv_global_pci_cap0x4.300x0.1BOOLWhen set, the device supports controlling the VF QoS setting.pZ#/sfpp_supportnv_global_pci_cap0x4.290x0.1BOOLWhen set, function per-port setting is configurableqY;/]hide_port2_pf_supportednv_global_pci_cap0x4.280x0.1BOOLWhen TRUE, hide_port2_pf is configurabletX//opf_bar2_supportednv_global_pci_cap0x4.270x0.1BOOLWhen set, exposing BAR2 to host PFs is supported.rW#/omax_num_pfsnv_global_pci_cap0x4.160x0.8UNSIGNEDMaximum number of PFs. Value 0 indicates 256 PFs.V)/%max_vfs_per_pfnv_global_pci_cap0x4.00x0.16UNSIGNEDThe maximum number of VFs that can be set in the total_vfs setting (per PF).cU5/‚Emax_vfs_per_pf_validnv_global_pci_cap0x0.310x0.1BOOLWhen set, the NIC will only respect NV_GLOBAL_PCI_CONF TLV if its total_vfs parameter is lower than or equal to the value of the max_vfs_per_pf field below. ïlèdìtïa)/max_total_msixnv_global_pci_cap0xC.00x4.0UNSIGNEDMaximum number of MSI-X for the aggregate of all PFs and VFs.u`+/kmax_num_vf_msixnv_global_pci_cap0x8.220x0.10UNSIGNEDMaximum number of MSI-X vectors and EQs per VF.u_+/kmax_num_pf_msixnv_global_pci_cap0x8.120x0.10UNSIGNEDMaximum number of MSI-X vectors and EQs per PF.^;/umax_log_vf_uar_bar_sizenv_global_pci_cap0x8.60x0.6UNSIGNEDLog 2 of the maximum size (in MBs) of a VF"s UAR BAR];/umax_log_pf_uar_bar_sizenv_global_pci_cap0x8.00x0.6UNSIGNEDLog 2 of the maximum size (in MBs) of a PF"s UAR BAR\'/-sriov_supportnv_global_pci_cap0x4.310x0.1BOOLWhen set, SR-IOV support is configurable by the NV_GLOBAL_PCI_CONF sriov_en bit. XÅô%S°áLz¨× §:c„X„¨Ô+C!p2p_ordering_mode_supportednv_pci_cap "/#p2p_ordering_modenv_pci_conf -ocsd_ennv_rom_ocsd_ocbb .37nvme_emu_max_num_pfnv_emulation_nvme_cap077nvme_emu_max_total_vfnv_emulation_nvme_cap-/9nvme_emu_num_msixnv_emulation_nvme_conf ++9nvme_emu_num_pfnv_emulation_nvme_conf059nvme_emu_num_vf_msixnv_emulation_nvme_conf 059nvme_emu_revision_idnv_emulation_nvme_conf179nvme_emu_subsystem_idnv_emulation_nvme_conf 8E9nvme_emu_subsystem_vendor_idnv_emulation_nvme_conf -17nvme_emu_supportednv_emulation_nvme_cap-/9nvme_emu_total_vfnv_emulation_nvme_conf.19nvme_emu_vendor_idnv_emulation_nvme_conf5A7nvme_emu_vf_msix_supportednv_emulation_nvme_cap,51nvmf_pacer_supportednv_nvmf_target_capó()5offload_enginenv_internal_cpu_conf -!option_rom_debugnv_rom_iniX#!3pacer_modenv_nvmf_target_confò+13pacer_threshold_rdnv_nvmf_target_confñ+13pacer_threshold_wrnv_nvmf_target_confð + +ƒZd?5„q? pcie_credit_token_timeoutnv_global_pci_conf_20x0.00x0.16UNSIGNEDPCIe credit timeout. In case a pending transaction has no credits longer than this timeout value, buffered transactions will be dropped. Value is given in milliseconds in the range of 10 to 4,000. \;Value 0x0 indicates the device will adjust the timeout automatically.\;Value 0xffff disables the feature.\;PCIE_CREDIT_TOKEN_TIMEOUT$nv_global_pci_cap.pcie_credit_token_timeout_supported == 1sc5#u9=/ log_max_payload_sizenv_tpt_conf0x0.00x0.4ENUMSets the PCIe burst size for the NIC internal Translation and Protection (TPT) mechanism.\;0x0: AUTOMATIC\;0xC: _4KBAUTOMATIC=0x0,_4KB=0xcINT_LOG_MAX_PAYLOAD_SIZEignore_dependency|b'/‚}max_total_barnv_global_pci_cap0x10.00x4.0UNSIGNEDMaximum total of the MMIO space for all PFs and VFs combined, in megabytes.\;Note: if the number of PF or VF per port is not a power of 2, this parameter will also not be a power of 2. IJÄjgG9c?/ pci_switch_lanes_remapping_ennv_pci_switch_evb_conf0x0.310x0.1BOOLWhen set allows remapping of the PCI switch lanes to slots according to the PCI_SW_LANES_MAPPING parameter.PCI_SW_LANES_REMAPPING_ENignore_dependency_f'_kdnet_ennv_kdnet_data0x0.310x0.1BOOLKDNET PF is enabled when this bit is set.ƒheG5„7-a max_acc_outstanding_read_bytenv_global_pci_conf_20x0.160x0.16UNSIGNEDMaximum accumulated outstanding Read requests bytes. Value is given in units of 1K bytes.\;The limit is applied for each PCI bus link individually.\;Value 0x0 indicates the use of device defaults.\;Configuration is available only when NV_PCI_CONF.ADVANCED_PCI_SETTINGS is TRUE.MAX_ACC_OUT_READ($nv_pci_conf.advanced_pci_settings!=0) && ($nv_global_pci_cap.max_acc_outstanding_read_byte_supported==1) "ÍÍí*?Xk‚™­Æáü'A[wŒ¥¸Ôæö/Id„¥¿ßANV_ROM_ROOT_CA_FINGERPRINT€1 file_applicable_to/file_btc_token_id%file_comment-file_cs_token_id5file_dbg_fw_token_id)file_device_id1file_device_unique1file_mac_addr_list+file_public_key5file_public_key_4096 9file_public_key_4096_a 9file_public_key_4096_b )file_signature3file_signature_30727file_signature_4096_a 7file_signature_4096_b ;nv_advanced_testabilityW-nv_base_mac_guid5nv_base_mac_guid_cap)nv_crypto_confS;nv_current_configurator['nv_debug_mode=#nv_dpa_auth%#nv_ecpf_cap|%nv_ecpf_conf{3nv_ecpu_boot_optionb7nv_emulation_nvme_cap19nv_emulation_nvme_conf0Cnv_emulation_pci_switch_cap3 Env_emulation_pci_switch_conf27nv_emulation_upt_confRCnv_emulation_virtio_blk_cap7 Env_emulation_virtio_blk_conf6 %£Ðð1GfФ¸Îåý'8I\rŠ¡ºÓì!0@Ys£¹ˆœ²ÅÖè-nv_host_priv_cap¥/nv_host_priv_conf¤Cnv_emulation_virtio_fs_conf9Cnv_emulation_virtio_net_cap5 Env_emulation_virtio_net_conf4/nv_enclosure_infoZAnv_external_host_priv_confV#Knv_external_host_priv_fast_conf<7nv_external_port_ctrl}+nv_file_id_mlnxC/nv_file_id_vendorD1nv_flex_parser_cap 3nv_flex_parser_conf7nv_forbidden_versions#nv_fpga_cap%nv_fpga_conf%nv_fpga_dataE)nv_global_maskJ/nv_global_pci_cap'3nv_global_pci_cap_3G1nv_global_pci_conf&5nv_global_pci_conf_2)5nv_global_pci_conf_385nv_global_pci_conf_4;7nv_global_roce_cc_capN9nv_global_roce_cc_confM!nv_hca_capz#nv_hca_confy5nv_host_chaining_cap7nv_host_chaining_conf-nv_host_mng_confT+nv_host_sm_confU/nv_host_sync_conf/)nv_host_to_bmc"%nv_ib_dc_capY'nv_ib_dc_confX3nv_internal_cpu_cap j(j:iA7Ynumber_of_pci_switch_lanesnv_pci_switch_evb_cap0x0.00x0.8UNSIGNEDThe number of lanes that can be configured in the PCI switch using the PCI_SW_LANES_MAPPING parameter.…Th=9‰g5 pci_switch_lanes_mappingnv_pci_switch_evb_conf0x4.240x8.0BINARYEvaluated from the LSB, each bit represents the mapping of two PCI lanes to independent PCI buses where a value of zero indicates that the corresponding lanes are the first lanes of a new bus, and a value of 1 indicates that the corresponding lanes belongs to the same bus as the previous lanes.\;Examples:\;11111110b => all 16 lanes are mapped to the host. The actual bus width is learned dynamically so it may also be 8 or 4 lanes.\;00000000b => The host bus width is up to 2 lanes and there are additional 7 independent buses. \;11101110b => The host bus is up to 8 lanes and there is an addition bus of up to 8 lanes.PCI_SW_LANES_MAPPING 8ÇÒ8ƒl)'ƒ}W;W lag_allocationnv_power_conf0x0.200x0.2ENUMDefines the way resources are allocated for LAG\;0x0: DEVICE_DEFAULT\;0x1: PRE_ALLOCATION - resources are preallocated regardless of LAG activation\;using pre-allocation allows LAG activation regardless of functions state\;Other values are reservedDEVICE_DEFAULT=0x0,PRE_ALLOCATION=0x1LAG_RESOURCE_ALLOCATION($nv_power_cap.lag_allocation_pre==1)qk1']?k rt_pps_out_defaultnv_power_conf0x0.190x0.1BOOLWhen TRUE the PPS_OUT will be activated on power up\;Applicable only when REAL_TIME_CLOCK_ENABLE is TRUERT_PPS_ENABLED_ON_POWERUP($nv_power_cap.rt_pps_out_default_supported==1)‚5j'‚k5G A num_portnv_power_conf0x0.00x0.4UNSIGNEDNumber of network ports enabled by the device, If the value exceeds the number of ports supported by the card, this field will be ignored. Value 0x0 indicates device defaults.NETWORK_PORTS_NUMBER$nv_power_cap.max_num_port!=00$nv_power_cap.max_num_port ¡¶¡‚n1'‚%7k accurate_schedulernv_power_conf0x0.240x0.1BOOLWhen TRUE, the device will optimize the transmit scheduler for high accuracy.\;When False, the device defaults will apply for the scheduler.ACCURATE_TX_SCHEDULER($nv_power_cap.accurate_scheduler_supported==1)‚Fm''‚?m;a phy_cnt_delaynv_power_conf0x0.220x0.2ENUMDefines a period after Link UP where phy counters activation is delayed\;0x0: DELAY_NONE\;0x1: DELAY_10_SEC\;0x2: DELAY_20_SEC\;Other values are reservedDELAY_NONE=0x0,DELAY_10_SEC=0x1,DELAY_20_SEC=0x2PHY_COUNT_LINK_UP_DELAY($nv_power_cap.phy_cnt_delay_supported==1) îî&EmšÇè7mЍÒþ&M„½Û7M/dpu_reset_notification_supportednv_global_pci_capÀ1drivernv_rom_debug_level¾'+1driver_settingsnv_rom_debug_levelÊ,15dual_pcores_activenv_global_pci_conf_4e,A%duplicated_mac_action_modenv_mpfs_confy +#dynamic_vf_msixnv_pci_conf)?!dynamic_vf_msix_supportednv_pci_cap)$-)ece_disable_masknv_global_maskÛ5E3embedded_cpu_model_supportednv_internal_cpu_cap†%!en_wol_magicnv_wol_cap‹%#en_wol_magicnv_wol_confŠ)5+erase_lower_prioritynv_file_id_mlnx“+5/erase_lower_prioritynv_file_id_vendorž'-/erase_on_powerupnv_virt_guid_addr™&--erase_on_powerupnv_virt_net_addr–6I1esw_fdb_ipv4_ttl_modify_enablenv_sw_offload_confg8O/esw_fdb_ipv4_ttl_modify_supportednv_sw_offload_cap†#%esw_managernv_ecpf_conf¦$#5esw_managernv_internal_cpu_conf ágÍáhq5'K7o sw_recovery_on_errornv_power_conf0x0.280x0.1BOOLWhen set, SW will be instructed to perform a recovery flow when health buffer reports an error.SW_RECOVERY_ON_ERRORS($nv_power_cap.sw_recovery_on_error_supported==1)p9'/continuous_link_tuningnv_power_conf0x0.270x0.1BOOLWhen set, the device will keep tuning the physical link after the link was raisedƒo''„O-] partial_resetnv_power_conf0x0.250x0.1BOOLWhen set, the partial reset flow is enabled. This reset skips on resetting GPIOs, loading PLL new parameters and performing self-tests. Partial reset will be triggered only if no exceptions requiring full reset were detected (for example, if any of the boot record"s parameter had changed)PARTIAL_RESET_EN$nv_power_cap.partial_reset_supported==1 ¡¡„[s9'†EAK slot_power_limiter_disnv_power_conf0x0.300x0.1BOOLWhen cleared, the device is not allowed to consume more than 25W from the PCIe power rails, unless a PCI slot power limit message statesthat a new power limit is received.\;When set, the slot power limiter is disabled, and the device is allowed to consume more than 25W from the PCIe power rails.\;Note: if the power limiter is active and there is not enough power, the device will shut down the network modules.DISABLE_SLOT_POWER_LIMITER($nv_power_conf.advanced_power_settings_en==1)&&($nv_power_cap.slot_power_limiter_supported==1)|r?'W?y reset_with_host_on_errorsnv_power_conf0x0.290x0.1BOOLWhen set, host reset will trigger a device reset, if the device has previously detected fatal errors.RESET_WITH_HOST_ON_ERRORS($nv_power_cap.reset_with_host_on_errors_supported==1) 'aØVÝ'2yE%]accurate_scheduler_supportednv_power_cap0x0.240x0.1BOOLWhen TRUE, the transmit scheduler may be optimized for high accuracy by NV_POWER_CONF.accurate_schedulervx;%qphy_cnt_delay_supportednv_power_cap0x0.230x0.1BOOLWhen TRUE, PHY_COUNT_LINK_UP_DELAY is configurablew1% lag_allocation_prenv_power_cap0x0.210x0.1BOOLWhen TRUE, LAG_RESOURCE_ALLOCATION can be set to PRE_ALLOCATIONvE%rt_pps_out_default_supportednv_power_cap0x0.190x0.1BOOLWhen TRUE, NV_POWER_CONF.rt_pps_out_default is configurable!u%%Umax_num_portnv_power_cap0x0.00x0.4UNSIGNEDMaximal value supported for NV_POWER_CONF.num_port. Value 0x0 indicates this field is not supported.vtA'_;g advanced_power_settings_ennv_power_conf0x0.310x0.1BOOLShow/hide additional power settings parameters.\;Warning: Wrong power settings may cause physical damage.ADVANCED_POWER_SETTINGS$nv_power_cap.slot_power_limiter_supported==1 (mm†˜®¾×æó#:Ro¤Áßû5Sf‚£ºÐæ÷ %8O`sŠž·Òí5ADVANCED TESTABILITYW'BASE MAC GUID/BASE MAC GUID CAP#CRYPTO CONFS5CURRENT CONFIGURATOR[!DEBUG MODE= DPA AUTH% ECPF CAP| ECPF CONF{-ECPU BOOT OPTIONb1EMULATION NVME CAP13EMULATION NVME CONF0=EMULATION PCI SWITCH CAP3?EMULATION PCI SWITCH CONF21EMULATION UPT CONFR=EMULATION VIRTIO BLK CAP7?EMULATION VIRTIO BLK CONF6;EMULATION VIRTIO FS CAP:=EMULATION VIRTIO FS CONF9=EMULATION VIRTIO NET CAP5?EMULATION VIRTIO NET CONF4)ENCLOSURE INFOZ;EXTERNAL HOST PRIV CONFV EEXTERNAL HOST PRIV FAST CONF<1EXTERNAL PORT CTRL}1 FILE APPLICABLE TO/FILE BTC TOKEN ID%FILE COMMENT-FILE CS TOKEN ID5FILE DBG FW TOKEN ID)FILE DEVICE ID1FILE DEVICE UNIQUE%FILE ID MLNXC)FILE ID VENDORD1FILE MAC ADDR LIST+FILE PUBLIC KEY5FILE PUBLIC KEY 4096 9FILE PUBLIC KEY 4096 A 9FILE PUBLIC KEY 4096 B )FILE SIGNATURE .„„ž¸Ìáø!1DYmƒ™¯ÆÞê÷ $6I]n‘Ÿ®ÃÙò )8IZl|žµÌãñ7FILE SIGNATURE 4096 A 7FILE SIGNATURE 4096 B +FLEX PARSER CAP -FLEX PARSER CONF1FORBIDDEN VERSIONS FPGA CAP FPGA CONF FPGA DATAE#GLOBAL MASKJ)GLOBAL PCI CAP'-GLOBAL PCI CAP 3G+GLOBAL PCI CONF&/GLOBAL PCI CONF 2)/GLOBAL PCI CONF 38/GLOBAL PCI CONF 4;1GLOBAL ROCE CC CAPN3GLOBAL ROCE CC CONFM HCA CAPz HCA CONFy/HOST CHAINING CAP1HOST CHAINING CONF'HOST MNG CONFT'HOST PRIV CAP¥)HOST PRIV CONF¤%HOST SM CONFU)HOST SYNC CONF/#HOST TO BMC" IB DC CAPY!IB DC CONFX-INTERNAL CPU CAP/INTERNAL CPU CONF5INTERNAL HAIRPIN CAP$7INTERNAL HAIRPIN CONF#=INVALIDATE ALL TIMESTAMP\!KDNET DATA*%KEEP LINK UPm%LINK PHY CAPs'LINK PHY CONFr#LLDP NB CAPj%LLDP NB CONFi%LLDP NB DCBXl1LS NV PUBLIC KEY 0^1LS NV PUBLIC KEY 1_1LS NV PUBLIC KEY 2` MEMIC CAP!MEMIC CONF 4Œa´4}~E%uslot_power_limiter_supportednv_power_cap0x0.300x0.1BOOLWhen set, DISABLE_SLOT_POWER_LIMITER is configurable)}S%=reset_with_host_on_errors_supportednv_power_cap0x0.290x0.1BOOLIndicate support for NV_POWER_CONF.reset_with_host_on_errors (RESET_WITH_HOST_ON_ERRORS)|I%+sw_recovery_on_error_supportednv_power_cap0x0.280x0.1BOOLIndicate support for NV_POWER_CONF.sw_recovery_on_error (SW_RECOVERY_ON_ERRORS){M%continuous_link_tuning_supportednv_power_cap0x0.270x0.1BOOLIndicates support for NV_POWER_CONF.continuous_link_tuningqz;%gpartial_reset_supportednv_power_cap0x0.250x0.1BOOLWhen set, the partial reset flow is supported ¸¸ä 6bŠ´à2^†°Ü.Z‚¬Ø+/5perst1_cfg_enablenv_global_pci_conf_4 ''5perst1_enablenv_global_pci_conf_4 )+5perst1_locationnv_global_pci_conf_4 +/5perst2_cfg_enablenv_global_pci_conf_4''5perst2_enablenv_global_pci_conf_4)+5perst2_locationnv_global_pci_conf_4+/5perst3_cfg_enablenv_global_pci_conf_4''5perst3_enablenv_global_pci_conf_4)+5perst3_locationnv_global_pci_conf_4+/5perst4_cfg_enablenv_global_pci_conf_4''5perst4_enablenv_global_pci_conf_4)+5perst4_locationnv_global_pci_conf_4+/5perst5_cfg_enablenv_global_pci_conf_4$''5perst5_enablenv_global_pci_conf_4#)+5perst5_locationnv_global_pci_conf_4"+/5perst6_cfg_enablenv_global_pci_conf_4*''5perst6_enablenv_global_pci_conf_4))+5perst6_locationnv_global_pci_conf_4(+/5perst7_cfg_enablenv_global_pci_conf_40''5perst7_enablenv_global_pci_conf_4/  $*06<BHNTZ`flrx~„Š–œ¢¨®´ºÀÆÌÒØÞäêðöü &,28>DJPV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú»¼½¾¿ÀÁÂÃÄÅÆÇÎÏÐÑÒÓÔÕÖרÙÚÛäåæçèéêëìíïó   !"#$%&'()*+,-./0123456PQRSTUVWXY]^_`abstuvwx€‚‡ˆ‰‹–—˜™š›¡¢£¤¥¨©ª«°´ „–P„H‚I/C; minimal_vsec_gw_expel_durationnv_host_sync_conf0x4.160x0.16UNSIGNEDHost VSEC Gateway expulsion will persist for this period. Value is given in units of 0.1secVSEC_EXPULSION_DURATION‚B‚;/ƒE; icmd_sem_lock_thresholdnv_host_sync_conf0x0.160x0.16UNSIGNEDHost will be expelled from VSEC Gateway usage if it holds the ICMD Global Semaphore for a period longer than this threshold. Value is given in units of 0.1sec\;Value 0xFFFF indicates this threshold is infinite (disabled)ICMD_SEM_LOCK_THRESHOLD‚fE/ƒ{E idle_icmd_sem_lock_thresholdnv_host_sync_conf0x0.00x0.16UNSIGNEDHost will be expelled from VSEC Gateway usage if it holds the ICMD Global Semaphore, without issuing any ICMD, for a period longer than this threshold. Value is given in units of 0.1sec\;Value 0xFFFF indicates this threshold is infinite (disabled)IDLE_ICMD_SEM_LOCK_THRESHOLD P@0$PP‚19=i nvme_emu_vendor_idnv_emulation_nvme_conf0x8.00x0.16UNSIGNEDPCIe vendor_id config register for the NVME emulated device.NVME_EMULATION_VENDOR_ID($nv_emulation_nvme_cap.nvme_emu_supported==1)‚‚+9)7i e nvme_emu_num_pfnv_emulation_nvme_conf0x4.160x0.8UNSIGNEDTotal number of PCIe functions (PFs) exposed by the device for NVME emulation.NVME_EMULATION_NUM_PF($nv_emulation_nvme_cap.nvme_emu_supported==1)($nv_emulation_nvme_cap.nvme_emu_max_num_pf)‚ ‚/9)7i i nvme_emu_total_vfnv_emulation_nvme_conf0x4.00x0.16UNSIGNEDThe total number of Virtual Functions (VFs) that can be supported for each PF.NVME_EMULATION_NUM_VF($nv_emulation_nvme_cap.nvme_emu_supported==1)($nv_emulation_nvme_cap.nvme_emu_max_total_vf)<‚+9s7i nvme_emu_enablenv_emulation_nvme_conf0x0.310x0.1BOOLWhen set to TRUE, NVME device emulation is enabled.NVME_EMULATION_ENABLE($nv_emulation_nvme_cap.nvme_emu_supported==1) ¡+]Œ¡g‚ E9 Qi nvme_emu_subsystem_vendor_idnv_emulation_nvme_conf0x10.00x0.16UNSIGNEDPCIe subsystem_vendor_id register for the NVME emulated deviceNVME_EMULATION_SUBSYSTEM_VENDOR_ID($nv_emulation_nvme_cap.nvme_emu_supported==1)M‚59yAi nvme_emu_revision_idnv_emulation_nvme_conf0xC.240x0.8UNSIGNEDPCIe revision_id register for the NVME emulated deviceNVME_EMULATION_REVISION_ID($nv_emulation_nvme_cap.nvme_emu_supported==1)J‚39w?i nvme_emu_class_codenv_emulation_nvme_conf0xC.00x0.24UNSIGNEDPCIe class_code register for the NVME emulated deviceNVME_EMULATION_CLASS_CODE($nv_emulation_nvme_cap.nvme_emu_supported==1)Q‚19=i nvme_emu_device_idnv_emulation_nvme_conf0x8.160x0.16UNSIGNEDPCIe device_id config register for the NVME emulated device.NVME_EMULATION_DEVICE_ID($nv_emulation_nvme_cap.nvme_emu_supported==1) *#g‚I‚ C9YIi nvme_emu_log_pf_queue_depthnv_emulation_nvme_conf0x14.280x0.4UNSIGNEDLog (base 2) of the maximal queue depth of NVME Physical Functions.\;Value 0 indicates device default.NVME_EMULATION_MAX_QUEUE_DEPTH($nv_emulation_nvme_cap.nvme_emu_supported==1)($nv_emulation_nvme_cap.nvme_emu_max_log_queue_dept_supported)8‚ 59%A nvme_emu_num_vf_msixnv_emulation_nvme_conf0x14.160x0.12UNSIGNEDNumber of MSI-X vectors assigned to each VF associated with this type of PF.NVME_EMULATION_NUM_VF_MSIX‚‚ /9m;i nvme_emu_num_msixnv_emulation_nvme_conf0x14.00x0.16UNSIGNEDNumber of MSI-X Vectors assigned for each PF/VF of the NVME emulation device. Value 0x0 will use device defaultsNVME_EMULATION_NUM_MSIX($nv_emulation_nvme_cap.nvme_emu_supported==1)R‚ 79{Ci nvme_emu_subsystem_idnv_emulation_nvme_conf0x10.160x0.16UNSIGNEDPCIe subsystem_id register for the NVME emulated deviceNVME_EMULATION_SUBSYSTEM_ID($nv_emulation_nvme_cap.nvme_emu_supported==1) z›Åzï4^ºÜþ)VŒ®Ñû.a–±Õ 1pxe_undinv_rom_debug_levelÌ))9public_key_expfile_public_key_4096_b-))7public_key_expnv_ls_nv_public_key_0 +#qos_trust_statenv_qos_confr#1#qos_trust_state_ennv_qos_confs)?!qos_trust_state_supportednv_qos_capx.A)rate_reduce_monitor_periodnv_roce_cc_ecnJ,=)rate_to_set_on_first_cnpnv_roce_cc_ecnG!#-rbt_disablenv_host_mng_confü!#-rde_disablenv_host_mng_confú*+7reneg_on_changenv_external_port_ctrl®,?'reset_with_host_on_errorsnv_power_confò5S%reset_with_host_on_errors_supportednv_power_capý!/!roce_cc_algorithmnv_roce_cc;"1!roce_cc_enable_prinv_roce_cc8)?!roce_cc_shaper_coalescingnv_roce_cc92I)roce_cc_shaper_coalese_5_tuplenv_pcc_int_capÏ2I)roce_cc_shaper_coalese_dest_ipnv_pcc_int_capÑ4M)roce_cc_shaper_coalese_source_qpnv_pcc_int_capÐ#roce_ctrlnv_hca_confž#3!roce_ctrl_supportednv_hca_cap£*3/roce_ctrl_supportednv_sw_offload_cap ïbÒRœï)‚37Cnvme_emu_max_num_pfnv_emulation_nvme_cap0x4.160x0.8UNSIGNEDMaximal number of PCIe physical functions (PFs) supported by the device for NVME emulation.2‚77Qnvme_emu_max_total_vfnv_emulation_nvme_cap0x4.00x0.16UNSIGNEDMaximal number of PCIe virtual functions (VFs) supported by the device for each NVME emulation PF.}‚17wnvme_emu_supportednv_emulation_nvme_cap0x0.310x0.1BOOLWhen set to TRUE, NVME device emulation is supported. ‚A7nvme_emu_vf_msix_supportednv_emulation_nvme_cap0x0.300x0.1BOOLWhen TRUE, setting the number of MSI-X for VFs is supported‚W7nvme_emu_max_log_queue_dept_supportednv_emulation_nvme_cap0x0.240x0.4UNSIGNEDMaximal supported value for NVME_EMULATION_MAX_QUEUE_DEPTH ͸ƒ‚!E„ Cy pci_switchnv_emulation_pci_switch_conf0x0.310x0.1BOOLWhen TRUE, the device will expose a PCI switch. All PF configurations are applied on the switch downstream ports. On such case, each PF will have a different PCI device on the emulated switch. This configuration allows to expose 0 network PFs toward hostPCI_SWITCH_EMULATION_ENABLE($nv_emulation_pci_switch_cap.pci_switch_supported==1)‚‚CE1I hotplug_virtio_transitionalnv_emulation_pci_switch_conf0x0.300x0.1BOOLWhen TRUE, the device will support hotplug of EMulated transitional VIRTIO devicesVIRTIO_EMULATION_HOTPLUG_TRANS($nv_emulation_pci_switch_cap.hotplug_virtio_transitional_supported==1)‚/‚+EAGy q num_switch_portnv_emulation_pci_switch_conf0x0.00x0.8UNSIGNEDNumber of emulated switch ports. Each port can hold a single PCI device (emulated or not).PCI_SWITCH_EMULATION_NUM_PORT($nv_emulation_pci_switch_cap.pci_switch_supported==1)($nv_emulation_pci_switch_cap.max_num_switch_port) Äwß`ă‚EE‚aYQ# virtio_net_emu_vf_pci_layoutnv_emulation_virtio_net_conf0x0.260x0.2ENUMIndicates which VIrtIO specification the PCI layout of the emulated Virtual Function(s) will follow.\;0x0: VIRTIO_1_X\;0x1: VIRTIO_TRANSITIONAL\;other values are reservedVIRTIO_1_X=0x0,VIRTIO_TRANSITIONAL=0x1VIRTIO_NET_EMULATION_VF_PCI_LAYOUT($nv_emulation_virtio_net_cap.virtio_net_emu_pci_layout_trans_supported==1)|‚5Cepci_switch_supportednv_emulation_pci_switch_cap0x0.310x0.1BOOLWhen TRUE, PCI Switch Emulation is supported‚WCshotplug_virtio_transitional_supportednv_emulation_pci_switch_cap0x0.300x0.1BOOLWhen TRUE, hotplug_virtio_transitional is supported‚3Csmax_num_switch_portnv_emulation_pci_switch_cap0x0.00x0.8UNSIGNEDMaximal number supported for emulated switch ports. Bc~B‚8‚;E)C  virtio_net_emu_total_vfnv_emulation_virtio_net_conf0x4.00x0.16UNSIGNEDThe total number of Virtual Functions (VFs) that can be supported for each PF.VIRTIO_NET_EMULATION_NUM_VF($nv_emulation_virtio_net_cap.virtio_net_emu_supported==1)($nv_emulation_virtio_net_cap.virtio_net_emu_max_total_vf)a‚7EC virtio_net_emu_enablenv_emulation_virtio_net_conf0x0.310x0.1BOOLWhen set to TRUE, VIRTIO_NET device emulation is enabled.VIRTIO_NET_EMULATION_ENABLE($nv_emulation_virtio_net_cap.virtio_net_emu_supported==1)ƒ‚EE‚cYQ# virtio_net_emu_pf_pci_layoutnv_emulation_virtio_net_conf0x0.280x0.2ENUMIndicates which VIrtIO specification the PCI layout of the emulated Physical Function(s) will follow.\;0x0: VIRTIO_1_X\;0x1: VIRTIO_TRANSITIONAL\;other values are reservedVIRTIO_1_X=0x0,VIRTIO_TRANSITIONAL=0x1VIRTIO_NET_EMULATION_PF_PCI_LAYOUT($nv_emulation_virtio_net_cap.virtio_net_emu_pci_layout_trans_supported==1) ½Ã¹½x‚CEO virtio_net_emu_subsystem_idnv_emulation_virtio_net_conf0x10.160x0.16UNSIGNEDPCIe subsystem_id register for the VIRTIO_NET emulated deviceVIRTIO_NET_EMULATION_SUBSYSTEM_ID($nv_emulation_virtio_net_cap.virtio_net_emu_supported==1)‚‚QEQ virtio_net_emu_subsystem_vendor_idnv_emulation_virtio_net_conf0x10.00x0.16UNSIGNEDPCIe subsystem_vendor_id register for the VIRTIO_NET emulated deviceVIRTIO_NET_EMU_SUBSYSTEM_VENDOR_ID($nv_emulation_virtio_net_cap.virtio_net_emu_supported==1)‚9‚7E5C } virtio_net_emu_num_pfnv_emulation_virtio_net_conf0x4.160x0.8UNSIGNEDTotal number of PCIe functions (PFs) exposed by the device for VIRTIO_NET emulation.VIRTIO_NET_EMULATION_NUM_PF($nv_emulation_virtio_net_cap.virtio_net_emu_supported==1)($nv_emulation_virtio_net_cap.virtio_net_emu_max_num_pf) S¯¯µ»ÁÇÍÓÙßåëñ÷ý !'-39?EKQW]ciou{‡“™Ÿ¥«±·½ÃÉÏÕÛáçíóùÿ #)/Je‚œ¶ÍÞý%<TvŒ¡¸ÎåÎßæèéêëìíîïðñòóôõö÷øùúûüýþÿ    !"#$%&'()*+,-./019:;<=>7ACCURATE_TX_SCHEDULERî7ADVANCED_PCI_SETTINGS;ADVANCED_POWER_SETTINGSô5ADVANCED_TESTABILITY5AES_XTS_TWEAK_INC_64ø/ALLOW_RD_COUNTERS­#ATS_ENABLED?AUTO_POWER_SAVE_LINK_DOWNm%BOOT_DBG_LOGµ-BOOT_DBG_LOG_ARPº/BOOT_DBG_LOG_DHCP¸1BOOT_DBG_LOG_DHCP6¹!EBOOT_DBG_LOG_DRIVER_SETTINGSÊ-BOOT_DBG_LOG_DRV¾+BOOT_DBG_LOG_IPÈ/BOOT_DBG_LOG_IPV6É-BOOT_DBG_LOG_NDP¼/BOOT_DBG_LOG_NDRV¿7BOOT_DBG_LOG_NDRV_CMDÀ “Ô/“‚#MCvirtio_net_emu_vf_msix_supportednv_emulation_virtio_net_cap0x0.300x0.1BOOLWhen TRUE, setting the number of MSI-X for VFs is supportedS‚"_Cgvirtio_net_emu_pci_layout_trans_supportednv_emulation_virtio_net_cap0x0.290x0.1BOOLWhen TRUE, setting the PCI layout of PFs or VFs to meet VirtIO standard for transitional device is supported.J‚!AE%M virtio_net_emu_num_vf_msixnv_emulation_virtio_net_conf0x14.160x0.12UNSIGNEDNumber of MSI-X vectors assigned to each VF associated with this type of PF.VIRTIO_NET_EMULATION_NUM_VF_MSIX‚(‚ ;EyG virtio_net_emu_num_msixnv_emulation_virtio_net_conf0x14.00x0.16UNSIGNEDNumber of MSI-X Vectors assigned for each PF/VF of the VIRTIO_NET emulation device. Value 0x0 will use device defaultsVIRTIO_NET_EMULATION_NUM_MSIX($nv_emulation_virtio_net_cap.virtio_net_emu_supported==1) Il¤åIƒ‚'EE‚aYQ# virtio_blk_emu_vf_pci_layoutnv_emulation_virtio_blk_conf0x0.260x0.2ENUMIndicates which VIrtIO specification the PCI layout of the emulated Virtual Function(s) will follow.\;0x0: VIRTIO_1_X\;0x1: VIRTIO_TRANSITIONAL\;other values are reservedVIRTIO_1_X=0x0,VIRTIO_TRANSITIONAL=0x1VIRTIO_BLK_EMULATION_VF_PCI_LAYOUT($nv_emulation_virtio_blk_cap.virtio_blk_emu_pci_layout_trans_supported==1);‚&?COvirtio_net_emu_max_num_pfnv_emulation_virtio_net_cap0x4.160x0.8UNSIGNEDMaximal number of PCIe physical functions (PFs) supported by the device for VIRTIO_NET emulation.D‚%CC]virtio_net_emu_max_total_vfnv_emulation_virtio_net_cap0x4.00x0.16UNSIGNEDMaximal number of PCIe virtual functions (VFs) supported by the device for each VIRTIO_NET emulation PF.‚$=Cvirtio_net_emu_supportednv_emulation_virtio_net_cap0x0.310x0.1BOOLWhen set to TRUE, VIRTIO_NET device emulation is supported. éé +Kn‘¬Çè *Ko“´Õ÷<_Š«Ñ!1romprefixnv_rom_debug_level·#)rpg_ai_ratenv_roce_cc_ecnB#)rpg_ai_ratenv_roce_cc_qcnT"))rpg_byte_resetnv_roce_cc_ecn?"))rpg_byte_resetnv_roce_cc_qcnQ)rpg_gdnv_roce_cc_ecnD)rpg_gdnv_roce_cc_qcnV %)rpg_hai_ratenv_roce_cc_ecnC %)rpg_hai_ratenv_roce_cc_qcnU %)rpg_max_ratenv_roce_cc_ecnA %)rpg_max_ratenv_roce_cc_qcnS#+)rpg_min_dec_facnv_roce_cc_ecnE#+)rpg_min_dec_facnv_roce_cc_qcnW %)rpg_min_ratenv_roce_cc_ecnF %)rpg_min_ratenv_roce_cc_qcnX!')rpg_thresholdnv_roce_cc_ecn@!')rpg_thresholdnv_roce_cc_qcnR"))rpg_time_resetnv_roce_cc_ecn>"))rpg_time_resetnv_roce_cc_qcnP*Krshimnv_external_host_priv_fast_conf4 1rshim_pfnv_global_pci_conf¡%1'rt_pps_out_defaultnv_power_confë.E%rt_pps_out_default_supportednv_power_capö 7¸r:ô°w)ÿׯ{I빑m74G 3  -nv_global_pci_cap_3NIC00GLOBAL PCI CAP 3"F ! nv_prog_ccNIC0PROG CC&E % nv_fpga_dataNIC0FPGA DATA0D / )nv_file_id_vendorNIC0FILE ID VENDOR,C + %nv_file_id_mlnxNIC0FILE ID MLNX.B - 'nv_packet_pacing NIC0PACKET PACING0A /  )nv_sw_offload_cap NIC0SW OFFLOAD CAP2@ 1 +nv_sw_offload_conf NIC1SW OFFLOAD CONF&? !  nv_rom_capEXP_ROM0ROM CAP&> !  nv_rom_iniEXP_ROM0ROM INI(= ' !nv_debug_modeÿNIC0DEBUG MODEL< K Env_external_host_priv_fast_conf˜NIC0EXTERNAL HOST PRIV FAST CONF7; 5 /nv_global_pci_conf_4—NIC0€GLOBAL PCI CONF 4B: A  ;nv_emulation_virtio_fs_cap–NIC0EMULATION VIRTIO FS CAPD9 C =nv_emulation_virtio_fs_conf•NIC0 EMULATION VIRTIO FS CONF68 5 /nv_global_pci_conf_3”NIC00GLOBAL PCI CONF 3D7 C  =nv_emulation_virtio_blk_cap“NIC0EMULATION VIRTIO BLK CAPF6 E ?nv_emulation_virtio_blk_conf’NIC0 EMULATION VIRTIO BLK CONF Bc~B‚8‚*;E)C  virtio_blk_emu_total_vfnv_emulation_virtio_blk_conf0x4.00x0.16UNSIGNEDThe total number of Virtual Functions (VFs) that can be supported for each PF.VIRTIO_BLK_EMULATION_NUM_VF($nv_emulation_virtio_blk_cap.virtio_blk_emu_supported==1)($nv_emulation_virtio_blk_cap.virtio_blk_emu_max_total_vf)a‚)7EC virtio_blk_emu_enablenv_emulation_virtio_blk_conf0x0.310x0.1BOOLWhen set to TRUE, VIRTIO_BLK device emulation is enabled.VIRTIO_BLK_EMULATION_ENABLE($nv_emulation_virtio_blk_cap.virtio_blk_emu_supported==1)ƒ‚(EE‚cYQ# virtio_blk_emu_pf_pci_layoutnv_emulation_virtio_blk_conf0x0.280x0.2ENUMIndicates which VIrtIO specification the PCI layout of the emulated Physical Function(s) will follow.\;0x0: VIRTIO_1_X\;0x1: VIRTIO_TRANSITIONAL\;other values are reservedVIRTIO_1_X=0x0,VIRTIO_TRANSITIONAL=0x1VIRTIO_BLK_EMULATION_PF_PCI_LAYOUT($nv_emulation_virtio_blk_cap.virtio_blk_emu_pci_layout_trans_supported==1) ½Ã¹½x‚-CEO virtio_blk_emu_subsystem_idnv_emulation_virtio_blk_conf0x10.160x0.16UNSIGNEDPCIe subsystem_id register for the VIRTIO_BLK emulated deviceVIRTIO_BLK_EMULATION_SUBSYSTEM_ID($nv_emulation_virtio_blk_cap.virtio_blk_emu_supported==1)‚‚,QEQ virtio_blk_emu_subsystem_vendor_idnv_emulation_virtio_blk_conf0x10.00x0.16UNSIGNEDPCIe subsystem_vendor_id register for the VIRTIO_BLK emulated deviceVIRTIO_BLK_EMU_SUBSYSTEM_VENDOR_ID($nv_emulation_virtio_blk_cap.virtio_blk_emu_supported==1)‚9‚+7E5C } virtio_blk_emu_num_pfnv_emulation_virtio_blk_conf0x4.160x0.8UNSIGNEDTotal number of PCIe functions (PFs) exposed by the device for VIRTIO_BLK emulation.VIRTIO_BLK_EMULATION_NUM_PF($nv_emulation_virtio_blk_cap.virtio_blk_emu_supported==1)($nv_emulation_virtio_blk_cap.virtio_blk_emu_max_num_pf) “Ô/“‚1MCvirtio_blk_emu_vf_msix_supportednv_emulation_virtio_blk_cap0x0.300x0.1BOOLWhen TRUE, setting the number of MSI-X for VFs is supportedS‚0_Cgvirtio_blk_emu_pci_layout_trans_supportednv_emulation_virtio_blk_cap0x0.290x0.1BOOLWhen TRUE, setting the PCI layout of PFs or VFs to meet VirtIO standard for transitional device is supported.J‚/AE%M virtio_blk_emu_num_vf_msixnv_emulation_virtio_blk_conf0x14.160x0.12UNSIGNEDNumber of MSI-X vectors assigned to each VF associated with this type of PF.VIRTIO_BLK_EMULATION_NUM_VF_MSIX‚(‚.;EyG virtio_blk_emu_num_msixnv_emulation_virtio_blk_conf0x14.00x0.16UNSIGNEDNumber of MSI-X Vectors assigned for each PF/VF of the VIRTIO_BLK emulation device. Value 0x0 will use device defaultsVIRTIO_BLK_EMULATION_NUM_MSIX($nv_emulation_virtio_blk_cap.virtio_blk_emu_supported==1) €l¤倂a‚5!5c;a' S bus1_speednv_global_pci_conf_30x0.80x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS1_RESTRICT_SPEED$nv_global_pci_cap_3.bus1_restrict_en == 1bus1_restrict$nv_global_pci_cap_3.bus1_speed_max;‚4?COvirtio_blk_emu_max_num_pfnv_emulation_virtio_blk_cap0x4.160x0.8UNSIGNEDMaximal number of PCIe physical functions (PFs) supported by the device for VIRTIO_BLK emulation.D‚3CC]virtio_blk_emu_max_total_vfnv_emulation_virtio_blk_cap0x4.00x0.16UNSIGNEDMaximal number of PCIe virtual functions (VFs) supported by the device for each VIRTIO_BLK emulation PF.‚2=Cvirtio_blk_emu_supportednv_emulation_virtio_blk_cap0x0.310x0.1BOOLWhen set to TRUE, VIRTIO_BLK device emulation is supported. \\’Ë>t¯ë.fžÞQŽÈ55Cvirtio_fs_emu_enablenv_emulation_virtio_fs_confV8=Avirtio_fs_emu_max_num_pfnv_emulation_virtio_fs_cap`:AAvirtio_fs_emu_max_total_vfnv_emulation_virtio_fs_cap_79Cvirtio_fs_emu_num_msixnv_emulation_virtio_fs_conf[55Cvirtio_fs_emu_num_pfnv_emulation_virtio_fs_confX:?Cvirtio_fs_emu_num_vf_msixnv_emulation_virtio_fs_conf\;ACvirtio_fs_emu_subsystem_idnv_emulation_virtio_fs_confZBOCvirtio_fs_emu_subsystem_vendor_idnv_emulation_virtio_fs_confY7;Avirtio_fs_emu_supportednv_emulation_virtio_fs_cap^79Cvirtio_fs_emu_total_vfnv_emulation_virtio_fs_confW?KAvirtio_fs_emu_vf_msix_supportednv_emulation_virtio_fs_cap]77Evirtio_net_emu_enablenv_emulation_virtio_net_conf:?Cvirtio_net_emu_max_num_pfnv_emulation_virtio_net_cap&<CCvirtio_net_emu_max_total_vfnv_emulation_virtio_net_cap%9;Evirtio_net_emu_num_msixnv_emulation_virtio_net_conf 77Evirtio_net_emu_num_pfnv_emulation_virtio_net_conf I(ßI‚8'57/a bus1_restrictnv_global_pci_conf_30x0.150x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS1_RESTRICT$nv_global_pci_cap_3.bus1_restrict_en == 1‚E‚7!5G{;a' S bus1_widthnv_global_pci_conf_30x0.120x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS1_RESTRICT_WIDTH$nv_global_pci_cap_3.bus1_restrict_en == 1bus1_restrict$nv_global_pci_cap_3.bus1_width_maxT‚65A9=' bus1_aspmnv_global_pci_conf_30x0.110x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS1_RESTRICT_ASPM($nv_global_pci_cap_3.bus1_restrict_en == 1) && ($nv_global_pci_cap_3.bus1_aspm_en == 1)bus1_restrict I]I‚‚:579=' bus0_aspmnv_global_pci_conf_30x0.270x0.1BOOLWhen FALSE, PCI bus will not have ASPM enabled.\;Valid when PCI_BUS_RESTRICT is TRUE.PCI_BUS0_RESTRICT_ASPM($nv_global_pci_cap_3.bus0_restrict_en == 1) && ($nv_global_pci_cap_3.bus0_aspm_en == 1)bus0_restrictƒ‚9!5‚];a' S bus0_speednv_global_pci_conf_30x0.240x0.3ENUMRestricts the PCI speed to be smaller or equal to:\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;Valid when PCI_BUS_RESTRICT is TRUE.PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS0_RESTRICT_SPEED$nv_global_pci_cap_3.bus0_restrict_en == 1bus0_restrict$nv_global_pci_cap_3.bus0_speed_max YvY‚‚<'5‚C/a bus0_restrictnv_global_pci_conf_30x0.310x0.1BOOLWhen TRUE, PCI bus width, speed and ASPM will be restricted according to PCI_BUS_RESTRICT_WIDTH, PCI_BUS_RESTRICT_SPEED, PCI_BUS_RESTRICT_ASPM respectivelyPCI_BUS0_RESTRICT$nv_global_pci_cap_3.bus0_restrict_en == 1ƒ‚;!5‚I{;a' S bus0_widthnv_global_pci_conf_30x0.280x0.3ENUMRestricts the PCI bus width to be smaller or equal to:\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16\;Valid when PCI_BUS_RESTRICT is TRUE.PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS0_RESTRICT_WIDTH$nv_global_pci_cap_3.bus0_restrict_en == 1bus0_restrict$nv_global_pci_cap_3.bus0_width_max z›Ãz‚E‚?!5G{;a' S bus3_widthnv_global_pci_conf_30x4.120x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS3_RESTRICT_WIDTH$nv_global_pci_cap_3.bus3_restrict_en == 1bus3_restrict$nv_global_pci_cap_3.bus3_width_maxT‚>5A9=' bus3_aspmnv_global_pci_conf_30x4.110x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS3_RESTRICT_ASPM($nv_global_pci_cap_3.bus3_restrict_en == 1) && ($nv_global_pci_cap_3.bus3_aspm_en == 1)bus3_restrict‚a‚=!5c;a' S bus3_speednv_global_pci_conf_30x4.80x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS3_RESTRICT_SPEED$nv_global_pci_cap_3.bus3_restrict_en == 1bus3_restrict$nv_global_pci_cap_3.bus3_speed_max è %Abоà /Qyè–¾ì^Áã"1!ibm_capi_supportednv_pci_cap0+hournv_file_id_mlnxš/hournv_file_id_vendor¥ /hp_7kd_ennv_enclosure_info';!ib_cc_shaper_coalescingnv_roce_cc:3K)ib_cc_shaper_coalese_remote_lidnv_pcc_int_capÒ!+%ib_routing_modenv_mpfs_conf~*?#ib_routing_mode_supportednv_mpfs_cap‚#5ib_vport0nv_internal_cpu_conf€!-#ibm_as_notify_ennv_pci_conf';!ibm_as_notify_supportednv_pci_cap.##ibm_capi_ennv_pci_conf'9#ibm_tunneled_atomic_ennv_pci_conf-G!ibm_tunneled_atomic_supportednv_pci_cap-.)Aicm_cache_modenv_performance_tuning_confßBS?icm_cache_mode_large_scale_steeringnv_performance_tuning_capê.;/icmd_sem_lock_thresholdnv_host_sync_conf3E/idle_icmd_sem_lock_thresholdnv_host_sync_confÿ!%+ieee_dcbx_ennv_lldp_nb_dcbxe!%image_banknv_fpga_data¦ ,j,T‚B5A9=' bus2_aspmnv_global_pci_conf_30x4.270x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS2_RESTRICT_ASPM($nv_global_pci_cap_3.bus2_restrict_en == 1) && ($nv_global_pci_cap_3.bus2_aspm_en == 1)bus2_restrict‚b‚A!5c;a' S bus2_speednv_global_pci_conf_30x4.240x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS2_RESTRICT_SPEED$nv_global_pci_cap_3.bus2_restrict_en == 1bus2_restrict$nv_global_pci_cap_3.bus2_speed_max‚@'57/a bus3_restrictnv_global_pci_conf_30x4.150x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS3_RESTRICT$nv_global_pci_cap_3.bus3_restrict_en == 1 ¼·!¼‚a‚E!5c;a' S bus5_speednv_global_pci_conf_30x8.80x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS5_RESTRICT_SPEED$nv_global_pci_cap_3.bus5_restrict_en == 1bus5_restrict$nv_global_pci_cap_3.bus5_speed_max‚D'57/a bus2_restrictnv_global_pci_conf_30x4.310x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS2_RESTRICT$nv_global_pci_cap_3.bus2_restrict_en == 1‚E‚C!5G{;a' S bus2_widthnv_global_pci_conf_30x4.280x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS2_RESTRICT_WIDTH$nv_global_pci_cap_3.bus2_restrict_en == 1bus2_restrict$nv_global_pci_cap_3.bus2_width_max ´´Éåú,A]r‰¥Âßö/Lcœ¹Ðì &=Yv“ªÆã+PCI_BUS26_SPEEDõ9PCI_BUS26_SWITCH_INDEXô+PCI_BUS26_WIDTH÷)PCI_BUS27_ASPMð=PCI_BUS27_HIERARCHY_TYPEí+PCI_BUS27_SPEEDï9PCI_BUS27_SWITCH_INDEXî+PCI_BUS27_WIDTHñ/PCI_BUS2_RESTRICTD9PCI_BUS2_RESTRICT_ASPMB;PCI_BUS2_RESTRICT_SPEEDA;PCI_BUS2_RESTRICT_WIDTHC/PCI_BUS3_RESTRICT@9PCI_BUS3_RESTRICT_ASPM>;PCI_BUS3_RESTRICT_SPEED=;PCI_BUS3_RESTRICT_WIDTH?/PCI_BUS4_RESTRICTL9PCI_BUS4_RESTRICT_ASPMJ;PCI_BUS4_RESTRICT_SPEEDI;PCI_BUS4_RESTRICT_WIDTHK/PCI_BUS5_RESTRICTH9PCI_BUS5_RESTRICT_ASPMF;PCI_BUS5_RESTRICT_SPEEDE;PCI_BUS5_RESTRICT_WIDTHG/PCI_BUS6_RESTRICTT9PCI_BUS6_RESTRICT_ASPMR;PCI_BUS6_RESTRICT_SPEEDQ;PCI_BUS6_RESTRICT_WIDTHS/PCI_BUS7_RESTRICTP9PCI_BUS7_RESTRICT_ASPMN;PCI_BUS7_RESTRICT_SPEEDM;PCI_BUS7_RESTRICT_WIDTHO I(ßI‚H'57/a bus5_restrictnv_global_pci_conf_30x8.150x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS5_RESTRICT$nv_global_pci_cap_3.bus5_restrict_en == 1‚E‚G!5G{;a' S bus5_widthnv_global_pci_conf_30x8.120x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS5_RESTRICT_WIDTH$nv_global_pci_cap_3.bus5_restrict_en == 1bus5_restrict$nv_global_pci_cap_3.bus5_width_maxT‚F5A9=' bus5_aspmnv_global_pci_conf_30x8.110x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS5_RESTRICT_ASPM($nv_global_pci_cap_3.bus5_restrict_en == 1) && ($nv_global_pci_cap_3.bus5_aspm_en == 1)bus5_restrict yšÂy‚E‚K!5G{;a' S bus4_widthnv_global_pci_conf_30x8.280x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS4_RESTRICT_WIDTH$nv_global_pci_cap_3.bus4_restrict_en == 1bus4_restrict$nv_global_pci_cap_3.bus4_width_maxT‚J5A9=' bus4_aspmnv_global_pci_conf_30x8.270x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS4_RESTRICT_ASPM($nv_global_pci_cap_3.bus4_restrict_en == 1) && ($nv_global_pci_cap_3.bus4_aspm_en == 1)bus4_restrict‚b‚I!5c;a' S bus4_speednv_global_pci_conf_30x8.240x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS4_RESTRICT_SPEED$nv_global_pci_cap_3.bus4_restrict_en == 1bus4_restrict$nv_global_pci_cap_3.bus4_speed_max ::g“¼ç3Wt£Øô?i–¾è,%Aint_cpu_confnv_external_host_priv_conf+15internal_cpu_modelnv_internal_cpu_conf}(-1ip_over_vxlan_ennv_sw_offload_confe*11ip_over_vxlan_portnv_sw_offload_confo.;/ip_over_vxlan_supportednv_sw_offload_cap1ipv4nv_rom_debug_levelÈ#%/ipv4_dhcp_ennv_rom_iscsi_dhcpý1ipv6nv_rom_debug_levelÉ.+?iscsi_drive_numnv_rom_iscsi_general_confò47?iscsi_keep_san_dev_ennv_rom_iscsi_general_confî'kdnet_ennv_kdnet_dataæ%-+keep_eth_link_upnv_keep_link_uph$++keep_ib_link_upnv_keep_link_upi)5+keep_link_up_on_bootnv_keep_link_upj,;+keep_link_up_on_standbynv_keep_link_upk'1+keep_same_prioritynv_file_id_mlnx‘)1/keep_same_prioritynv_file_id_vendorœ+keyfile_public_key -j-T‚N5A9=' bus7_aspmnv_global_pci_conf_30xC.110x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS7_RESTRICT_ASPM($nv_global_pci_cap_3.bus7_restrict_en == 1) && ($nv_global_pci_cap_3.bus7_aspm_en == 1)bus7_restrict‚a‚M!5c;a' S bus7_speednv_global_pci_conf_30xC.80x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS7_RESTRICT_SPEED$nv_global_pci_cap_3.bus7_restrict_en == 1bus7_restrict$nv_global_pci_cap_3.bus7_speed_max‚L'57/a bus4_restrictnv_global_pci_conf_30x8.310x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS4_RESTRICT$nv_global_pci_cap_3.bus4_restrict_en == 1 »·!»‚b‚Q!5c;a' S bus6_speednv_global_pci_conf_30xC.240x0.3ENUMSee PCI_BUS0_RESTRICT_SPEED\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4PCI_BUS6_RESTRICT_SPEED$nv_global_pci_cap_3.bus6_restrict_en == 1bus6_restrict$nv_global_pci_cap_3.bus6_speed_max‚P'57/a bus7_restrictnv_global_pci_conf_30xC.150x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS7_RESTRICT$nv_global_pci_cap_3.bus7_restrict_en == 1‚E‚O!5G{;a' S bus7_widthnv_global_pci_conf_30xC.120x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS7_RESTRICT_WIDTH$nv_global_pci_cap_3.bus7_restrict_en == 1bus7_restrict$nv_global_pci_cap_3.bus7_width_max I(ßI‚T'57/a bus6_restrictnv_global_pci_conf_30xC.310x0.1BOOLSee PCI_BUS0_RESTRICTPCI_BUS6_RESTRICT$nv_global_pci_cap_3.bus6_restrict_en == 1‚E‚S!5G{;a' S bus6_widthnv_global_pci_conf_30xC.280x0.3ENUMSee PCI_BUS0_RESTRICT_WIDTH\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4PCI_BUS6_RESTRICT_WIDTH$nv_global_pci_cap_3.bus6_restrict_en == 1bus6_restrict$nv_global_pci_cap_3.bus6_width_maxT‚R5A9=' bus6_aspmnv_global_pci_conf_30xC.270x0.1BOOLSee PCI_BUS0_RESTRICT_ASPMPCI_BUS6_RESTRICT_ASPM($nv_global_pci_cap_3.bus6_restrict_en == 1) && ($nv_global_pci_cap_3.bus6_aspm_en == 1)bus6_restrict ,=_,‚/‚W9C)A} } virtio_fs_emu_total_vfnv_emulation_virtio_fs_conf0x4.00x0.16UNSIGNEDThe total number of Virtual Functions (VFs) that can be supported for each PF.VIRTIO_FS_EMULATION_NUM_VF($nv_emulation_virtio_fs_cap.virtio_fs_emu_supported==1)($nv_emulation_virtio_fs_cap.virtio_fs_emu_max_total_vf)Z‚V5C}A} virtio_fs_emu_enablenv_emulation_virtio_fs_conf0x0.310x0.1BOOLWhen set to TRUE, VIRTIO_FS device emulation is enabled.VIRTIO_FS_EMULATION_ENABLE($nv_emulation_virtio_fs_cap.virtio_fs_emu_supported==1)ƒ?‚U#5ƒY‚? dport_ownernv_global_pci_conf_30x10.240x10.0ENUMIdentifies the owner of the respective PCI Downstream Port.\;0x0: DEVICE_DEFAULT\;0x1: HOST_0\;0x2: HOST_1\;0x3: HOST_2\;0x4: HOST_3\;0x5: HOST_4\;0x6: HOST_5\;0x7: HOST_6\;0x8: HOST_7\;0xF: EMBEDDED_CPU\;Other values are reservedDEVICE_DEFAULT=0x0,HOST_0=0x1,HOST_1=0x2,HOST_2=0x3,HOST_3=0x4,HOST_4=0x5,HOST_5=0x6,HOST_6=0x7,HOST_7=0x8,EMBEDDED_CPU=0xfPCI_DOWNSTREAM_PORT_OWNER ÔÌÉÔq‚ZACM} virtio_fs_emu_subsystem_idnv_emulation_virtio_fs_conf0x10.160x0.16UNSIGNEDPCIe subsystem_id register for the VIRTIO_FS emulated deviceVIRTIO_FS_EMULATION_SUBSYSTEM_ID($nv_emulation_virtio_fs_cap.virtio_fs_emu_supported==1)‚YOCO} virtio_fs_emu_subsystem_vendor_idnv_emulation_virtio_fs_conf0x10.00x0.16UNSIGNEDPCIe subsystem_vendor_id register for the VIRTIO_FS emulated deviceVIRTIO_FS_EMU_SUBSYSTEM_VENDOR_ID($nv_emulation_virtio_fs_cap.virtio_fs_emu_supported==1)‚0‚X5C3A} y virtio_fs_emu_num_pfnv_emulation_virtio_fs_conf0x4.160x0.8UNSIGNEDTotal number of PCIe functions (PFs) exposed by the device for VIRTIO_FS emulation.VIRTIO_FS_EMULATION_NUM_PF($nv_emulation_virtio_fs_cap.virtio_fs_emu_supported==1)($nv_emulation_virtio_fs_cap.virtio_fs_emu_max_num_pf)  Ûvå A‚_AA[virtio_fs_emu_max_total_vfnv_emulation_virtio_fs_cap0x4.00x0.16UNSIGNEDMaximal number of PCIe virtual functions (VFs) supported by the device for each VIRTIO_FS emulation PF. ‚^;Avirtio_fs_emu_supportednv_emulation_virtio_fs_cap0x0.310x0.1BOOLWhen set to TRUE, VIRTIO_FS device emulation is supported.‚]KAvirtio_fs_emu_vf_msix_supportednv_emulation_virtio_fs_cap0x0.300x0.1BOOLWhen TRUE, setting the number of MSI-X for VFs is supportedG‚\?C%K virtio_fs_emu_num_vf_msixnv_emulation_virtio_fs_conf0x14.160x0.12UNSIGNEDNumber of MSI-X vectors assigned to each VF associated with this type of PF.VIRTIO_FS_EMULATION_NUM_VF_MSIX‚!‚[9CwE} virtio_fs_emu_num_msixnv_emulation_virtio_fs_conf0x14.00x0.16UNSIGNEDNumber of MSI-X Vectors assigned for each PF/VF of the VIRTIO_FS emulation device. Value 0x0 will use device defaultsVIRTIO_FS_EMULATION_NUM_MSIX($nv_emulation_virtio_fs_cap.virtio_fs_emu_supported==1) D`¸ƒ‚c55ƒ_cE/- secondary_pcore_hostnv_global_pci_conf_40x0.210x0.2ENUMNumber of hosts on the secondary PCORE (matches 2nd_ PCORE_ PART0 and 2nd_ PCORE_ PART1 strap options)\;0x0: HOST_1\;0x1: HOST_2\;0x2: HOST_4\;0x3: HOST_8\;Valid only for asymmetric configurations (STRAP_ASYMMETRIC_PCORE set to TRUE)HOST_1=0x0,HOST_2=0x1,HOST_4=0x2,HOST_8=0x3STRAP_SECONDARY_PCORE_HOSTS1ignore_dependencystrap_cfg_enable$‚b15W3/- number_of_switchesnv_global_pci_conf_40x0.100x0.2UNSIGNEDNumber of PCIe Switches in the deviceSTRAP_PCIE_SWITCHESignore_dependencystrap_cfg_enable`‚a'5/G+/- number_of_pexnv_global_pci_conf_40x0.80x0.2ENUMNumber of PEX cores:\;0x0: PEX_1_CORE\;0x1: PEX_2_CORE\;other values are reservedPEX_1_CORE=0x0,PEX_2_CORE=0x1STRAP_PEX_CORESignore_dependencystrap_cfg_enable8‚`=AMvirtio_fs_emu_max_num_pfnv_emulation_virtio_fs_cap0x4.160x0.8UNSIGNEDMaximal number of PCIe physical functions (PFs) supported by the device for VIRTIO_FS emulation. Ð"g£ÐO‚g-519/- asymmetric_pcorenv_global_pci_conf_40x0.300x0.1BOOLIf TRUE, there is an asymmetric configuration of host number for PCore0 and PCore1STRAP_ASYMMETRIC_PCOREignore_dependencystrap_cfg_enable@‚f=5uI/- secondary_pcore_reversalnv_global_pci_conf_40x0.290x0.1BOOLIf TRUE, the Secondary PCore shall use Lane ReversalSTRAP_SECONDARY_PCORE_REVERSALignore_dependencystrap_cfg_enable7‚e15 -/- dual_pcores_activenv_global_pci_conf_40x0.270x0.1BOOLIf TRUE, both PCore0 and PCore1 are active and facing upstreamSTRAP_DUAL_PCOREignore_dependencystrap_cfg_enableZ‚d5g)/- sd_or_mhnv_global_pci_conf_40x0.250x0.1BOOLIf TRUE, each bus is associated with a unique host (Multi-Host), otherwise it is a Socket-Direct confgurationSTRAP_SD_OR_MHignore_dependencystrap_cfg_enable <„3‚i?5…G'=/- bus01_pcie_hierarchy_typenv_global_pci_conf_40x10.00x0.2ENUMDefines PCI Bus 01 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS01_HIERARCHY_TYPEignore_dependencybus01_cfg_enable@‚h-5‚strap_cfg_enablenv_global_pci_conf_40x0.310x0.1BOOLIf TRUE, the Soft Straps configuration is enforced. Otherwise the straps configuration of lower hierarchy takes precedence ••´Ôö=dÂî#U¡Åñ9eˆ­Õ)!lacp_config_ennv_rom_cap_/lacp_disnv_rom_boot_conf1ä!)'lag_allocationnv_power_confì$1%lag_allocation_prenv_power_cap÷!#-lag_disablenv_packet_pacing&1)large_mtu_tweak_64nv_crypto_conf÷+5/legacy_boot_protocolnv_rom_boot_conf1á1O!legacy_boot_wo_failover_supportednv_rom_cap\++9legacy_cc_dcqcnnv_global_roce_cc_confî4?7legacy_cc_dcqcn_supportednv_global_roce_cc_capï11?link_up_delay_timenv_rom_iscsi_general_confñ)5+lldp_msg_tx_intervalnv_lldp_nb_confY!%+lldp_nb_dcbxnv_lldp_nb_confZ#+)lldp_nb_dcbx_ennv_lldp_nb_cap_+9+lldp_nb_rx_buffer_sizenv_lldp_nb_conf]"))lldp_nb_rx_capnv_lldp_nb_cap`$++lldp_nb_rx_modenv_lldp_nb_conf[+9+lldp_nb_tx_buffer_sizenv_lldp_nb_conf^"))lldp_nb_tx_capnv_lldp_nb_capa$++lldp_nb_tx_modenv_lldp_nb_conf\''7log_data_sizenv_host_chaining_conft*;'log_dcr_hash_table_sizenv_ib_dc_conf ÷¾!‚l!5q)/- bus01_aspmnv_global_pci_conf_40x10.110x0.1BOOLWhen FALSE, PCI bus 01 will not have ASPM enabled.PCI_BUS01_ASPMignore_dependencybus01_cfg_enable‚5‚k#5m3+/- bus01_speednv_global_pci_conf_40x10.80x0.3ENUMPCI bus 01 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS01_SPEEDignore_dependencybus01_cfg_enable‚‚j;5‚9/- bus01_pcie_switch_indexnv_global_pci_conf_40x10.20x0.2UNSIGNEDBus 01 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS01_SWITCH_INDEXignore_dependencybus01_cfg_enable $šš¯Æâÿ0Nc”¨ÆÛ÷  >So„˜¶Ëçü.C_tˆ¦»×ì+PCI_BUS17_WIDTHÁ/PCI_BUS1_RESTRICT89PCI_BUS1_RESTRICT_ASPM6;PCI_BUS1_RESTRICT_SPEED5;PCI_BUS1_RESTRICT_WIDTH7)PCI_BUS20_ASPMÒ=PCI_BUS20_HIERARCHY_TYPEÏ+PCI_BUS20_SPEEDÑ9PCI_BUS20_SWITCH_INDEXÐ+PCI_BUS20_WIDTHÓ)PCI_BUS21_ASPMÌ=PCI_BUS21_HIERARCHY_TYPEÉ+PCI_BUS21_SPEEDË9PCI_BUS21_SWITCH_INDEXÊ+PCI_BUS21_WIDTHÍ)PCI_BUS22_ASPMÞ=PCI_BUS22_HIERARCHY_TYPEÛ+PCI_BUS22_SPEEDÝ9PCI_BUS22_SWITCH_INDEXÜ+PCI_BUS22_WIDTHß)PCI_BUS23_ASPMØ=PCI_BUS23_HIERARCHY_TYPEÕ+PCI_BUS23_SPEED×9PCI_BUS23_SWITCH_INDEXÖ+PCI_BUS23_WIDTHÙ)PCI_BUS24_ASPMê=PCI_BUS24_HIERARCHY_TYPEç+PCI_BUS24_SPEEDé9PCI_BUS24_SWITCH_INDEXè+PCI_BUS24_WIDTHë)PCI_BUS25_ASPMä=PCI_BUS25_HIERARCHY_TYPEá+PCI_BUS25_SPEEDã9PCI_BUS25_SWITCH_INDEXâ+PCI_BUS25_WIDTHå)PCI_BUS26_ASPMö ?Û?‚n-5/bus01_cfg_enablenv_global_pci_conf_40x10.150x0.1BOOLWhen TRUE, PCI bus 01 parameters are enforced, otherwise device defaults are used‚!‚m#5Y+/- bus01_widthnv_global_pci_conf_40x10.120x0.3ENUMPCI bus 01 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS01_WIDTHignore_dependencybus01_cfg_enable ½Ƚ‚‚p;5‚ 9/- bus00_pcie_switch_indexnv_global_pci_conf_40x10.180x0.2UNSIGNEDBus 00 Pointer to a PCIe Switch (Switch0, Switch1, Switch2)\;Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS00_SWITCH_INDEXignore_dependencybus00_cfg_enable„4‚o?5…G'=/- bus00_pcie_hierarchy_typenv_global_pci_conf_40x10.160x0.2ENUMDefines PCI Bus 00 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS00_HIERARCHY_TYPEignore_dependencybus00_cfg_enable `Æ!ü`‚t-5/bus00_cfg_enablenv_global_pci_conf_40x10.310x0.1BOOLWhen TRUE, PCI bus 00 parameters are enforced, otherwise device defaults are used‚!‚s#5Y+/- bus00_widthnv_global_pci_conf_40x10.280x0.3ENUMPCI bus 00 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS00_WIDTHignore_dependencybus00_cfg_enable!‚r!5q)/- bus00_aspmnv_global_pci_conf_40x10.270x0.1BOOLWhen FALSE, PCI bus 00 will not have ASPM enabled.PCI_BUS00_ASPMignore_dependencybus00_cfg_enable‚6‚q#5m3+/- bus00_speednv_global_pci_conf_40x10.240x0.3ENUMPCI bus 00 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS00_SPEEDignore_dependencybus00_cfg_enable ÀÉÀ‚‚v;5‚9/- bus03_pcie_switch_indexnv_global_pci_conf_40x14.20x0.2UNSIGNEDBus 03 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS03_SWITCH_INDEXignore_dependencybus03_cfg_enable„3‚u?5…G'=/- bus03_pcie_hierarchy_typenv_global_pci_conf_40x14.00x0.2ENUMDefines PCI Bus 03 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS03_HIERARCHY_TYPEignore_dependencybus03_cfg_enable ¨¨ÙC€Âü<u¥Ëô%\…ª×01=log_hpin_data_sizenv_internal_hairpin_conf™5;=log_hpin_num_descriptornv_internal_hairpin_conf˜3A5log_max_data_size_per_prionv_host_chaining_capw<K;log_max_hpin_data_size_per_prionv_internal_hairpin_capšAU;log_max_hpin_num_descriptor_per_prionv_internal_hairpin_cap›9E;log_max_hpin_total_data_sizenv_internal_hairpin_capœ?Q;log_max_hpin_total_num_descriptorsnv_internal_hairpin_cap8K5log_max_num_descriptor_per_prionv_host_chaining_capx/;1log_max_outstanding_wqenv_sw_offload_confv%5#log_max_payload_sizenv_tpt_confã('7log_max_queuenv_sw_accelerate_confô0;5log_max_total_data_sizenv_host_chaining_capy6G5log_max_total_num_descriptorsnv_host_chaining_capz(=!log_max_vl15_buffer_sizenv_qos_capw$1'log_memic_bar_sizenv_memic_confi,17log_num_descriptornv_host_chaining_confs(-1log_pf_bar2_sizenv_global_pci_confŸ aÇ"ýa‚z-5/bus03_cfg_enablenv_global_pci_conf_40x14.150x0.1BOOLWhen TRUE, PCI bus 03 parameters are enforced, otherwise device defaults are used‚!‚y#5Y+/- bus03_widthnv_global_pci_conf_40x14.120x0.3ENUMPCI bus 03 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS03_WIDTHignore_dependencybus03_cfg_enable!‚x!5q)/- bus03_aspmnv_global_pci_conf_40x14.110x0.1BOOLWhen FALSE, PCI bus 03 will not have ASPM enabled.PCI_BUS03_ASPMignore_dependencybus03_cfg_enable‚5‚w#5m3+/- bus03_speednv_global_pci_conf_40x14.80x0.3ENUMPCI bus 03 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS03_SPEEDignore_dependencybus03_cfg_enable ¾Ⱦ‚‚|;5‚9/- bus02_pcie_switch_indexnv_global_pci_conf_40x14.180x0.2UNSIGNEDBus 02 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS02_SWITCH_INDEXignore_dependencybus02_cfg_enable„4‚{?5…G'=/- bus02_pcie_hierarchy_typenv_global_pci_conf_40x14.160x0.2ENUMDefines PCI Bus 02 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS02_HIERARCHY_TYPEignore_dependencybus02_cfg_enable `Æ!ü`ƒ-5/bus02_cfg_enablenv_global_pci_conf_40x14.310x0.1BOOLWhen TRUE, PCI bus 02 parameters are enforced, otherwise device defaults are used‚!‚#5Y+/- bus02_widthnv_global_pci_conf_40x14.280x0.3ENUMPCI bus 02 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS02_WIDTHignore_dependencybus02_cfg_enable!‚~!5q)/- bus02_aspmnv_global_pci_conf_40x14.270x0.1BOOLWhen FALSE, PCI bus 02 will not have ASPM enabled.PCI_BUS02_ASPMignore_dependencybus02_cfg_enable‚6‚}#5m3+/- bus02_speednv_global_pci_conf_40x14.240x0.3ENUMPCI bus 02 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS02_SPEEDignore_dependencybus02_cfg_enable ii”Èú Fk–Êü"Hm˜Ìþ$JošÎ*-5bus10_cfg_enablenv_global_pci_conf_4¤3?5bus10_pcie_hierarchy_typenv_global_pci_conf_4Ÿ1;5bus10_pcie_switch_indexnv_global_pci_conf_4 %#5bus10_speednv_global_pci_conf_4¡%#5bus10_widthnv_global_pci_conf_4£$!5bus11_aspmnv_global_pci_conf_4œ*-5bus11_cfg_enablenv_global_pci_conf_4ž3?5bus11_pcie_hierarchy_typenv_global_pci_conf_4™1;5bus11_pcie_switch_indexnv_global_pci_conf_4š%#5bus11_speednv_global_pci_conf_4›%#5bus11_widthnv_global_pci_conf_4$!5bus12_aspmnv_global_pci_conf_4®*-5bus12_cfg_enablenv_global_pci_conf_4°3?5bus12_pcie_hierarchy_typenv_global_pci_conf_4«1;5bus12_pcie_switch_indexnv_global_pci_conf_4¬%#5bus12_speednv_global_pci_conf_4­%#5bus12_widthnv_global_pci_conf_4¯$!5bus13_aspmnv_global_pci_conf_4¨*-5bus13_cfg_enablenv_global_pci_conf_4ª3?5bus13_pcie_hierarchy_typenv_global_pci_conf_4¥1;5bus13_pcie_switch_indexnv_global_pci_conf_4¦]vݱ‡]3 àª{R)ûÅœo]?Ô˜*6I1dpu_reset_notification_enablednv_global_pci_conf |7K1flex_parser_profile_9_supportednv_flex_parser_capŒ47K1flex_parser_profile_0_supportednv_flex_parser_cap•*A!exp_rom_uefi_x86_supportednv_pci_cap+Y+A#esw_manager_ecpf_supportednv_ecpf_capª!(/1device_unique_id7file_device_uniqueKü$#5cs_token_enfile_public_key_40966Ç1G)clamp_tgt_rate_after_time_incnv_roce_cc_ecn<¾)-3bus6_restrict_ennv_global_pci_cap_3Ç$!5bus3_speednv_global_pci_conf_3=²$!5bus26_aspmnv_global_pci_conf_4ö«*-5bus22_cfg_enablenv_global_pci_conf_4à¡1;5bus17_pcie_switch_indexnv_global_pci_conf_4¾•%#5bus13_speednv_global_pci_conf_4§Ü$!5bus10_aspmnv_global_pci_conf_4¢7%#5bus06_speednv_global_pci_conf_4•z%#5bus04_speednv_global_pci_conf_4‰%#5bus02_speednv_global_pci_conf_4}'%9btc_token_enfile_public_key_4096_b'-base_guidnv_base_mac_guid^õ“¿“üh”Ìü$SµäMu¦Òz'3)initial_alpha_valuenv_roce_cc_ecnKC1/Ahairpin_data_locknv_performance_tuning_confà€5keyfile_public_key_4096:1FWChotplug_virtio_transitional_supportednv_emulation_pci_switch_cap~'%7keypair_uuidnv_ls_nv_public_key_0Š33Alog_hairpin_wqe_numnv_performance_tuning_confÝ‘+31log_pf_uar_bar_sizenv_global_pci_conf»$#/%max_dcr_lifo_sizenv_ib_dc_cap\*3/max_total_bar_validnv_global_pci_capÓñ))9mlnx_nvconf_enfile_public_key_4096_a/;1non_prefetchable_pf_barnv_global_pci_conf¤=*9)np_rtt_int_data_rtt_v0nv_pcc_int_capÕ 1num_pfsnv_global_pci_conf´@@W7nvme_emu_max_log_queue_dept_supportednv_emulation_nvme_capQ#'-packet_pacingnv_packet_pacingŽä,!Epci_switchnv_emulation_pci_switch_confM'-/per_tlv_prioritynv_file_id_vendor`)+5perst7_locationnv_global_pci_conf_4. ÀÉÀ‚ƒ;5‚9/- bus05_pcie_switch_indexnv_global_pci_conf_40x18.20x0.2UNSIGNEDBus 05 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS05_SWITCH_INDEXignore_dependencybus05_cfg_enable„3ƒ?5…G'=/- bus05_pcie_hierarchy_typenv_global_pci_conf_40x18.00x0.2ENUMDefines PCI Bus 05 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS05_HIERARCHY_TYPEignore_dependencybus05_cfg_enable aÇ"ýaƒ-5/bus05_cfg_enablenv_global_pci_conf_40x18.150x0.1BOOLWhen TRUE, PCI bus 05 parameters are enforced, otherwise device defaults are used‚!ƒ#5Y+/- bus05_widthnv_global_pci_conf_40x18.120x0.3ENUMPCI bus 05 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS05_WIDTHignore_dependencybus05_cfg_enable!ƒ!5q)/- bus05_aspmnv_global_pci_conf_40x18.110x0.1BOOLWhen FALSE, PCI bus 05 will not have ASPM enabled.PCI_BUS05_ASPMignore_dependencybus05_cfg_enable‚5ƒ#5m3+/- bus05_speednv_global_pci_conf_40x18.80x0.3ENUMPCI bus 05 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS05_SPEEDignore_dependencybus05_cfg_enable &qq…£¸Ôéý0Lau“¨ÄÙí  <Qeƒ˜´ÉÝû,AUsˆ¤¹Íë)PCI_BUS10_ASPM¢=PCI_BUS10_HIERARCHY_TYPEŸ+PCI_BUS10_SPEED¡9PCI_BUS10_SWITCH_INDEX +PCI_BUS10_WIDTH£)PCI_BUS11_ASPMœ=PCI_BUS11_HIERARCHY_TYPE™+PCI_BUS11_SPEED›9PCI_BUS11_SWITCH_INDEXš+PCI_BUS11_WIDTH)PCI_BUS12_ASPM®=PCI_BUS12_HIERARCHY_TYPE«+PCI_BUS12_SPEED­9PCI_BUS12_SWITCH_INDEX¬+PCI_BUS12_WIDTH¯)PCI_BUS13_ASPM¨=PCI_BUS13_HIERARCHY_TYPE¥+PCI_BUS13_SPEED§9PCI_BUS13_SWITCH_INDEX¦+PCI_BUS13_WIDTH©)PCI_BUS14_ASPMº=PCI_BUS14_HIERARCHY_TYPE·+PCI_BUS14_SPEED¹9PCI_BUS14_SWITCH_INDEX¸+PCI_BUS14_WIDTH»)PCI_BUS15_ASPM´=PCI_BUS15_HIERARCHY_TYPE±+PCI_BUS15_SPEED³9PCI_BUS15_SWITCH_INDEX²+PCI_BUS15_WIDTHµ)PCI_BUS16_ASPMÆ=PCI_BUS16_HIERARCHY_TYPEÃ+PCI_BUS16_SPEEDÅ9PCI_BUS16_SWITCH_INDEXÄ+PCI_BUS16_WIDTHÇ)PCI_BUS17_ASPMÀ=PCI_BUS17_HIERARCHY_TYPE½+PCI_BUS17_SPEED¿ ¾Ⱦ‚ƒ;5‚9/- bus04_pcie_switch_indexnv_global_pci_conf_40x18.180x0.2UNSIGNEDBus 04 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS04_SWITCH_INDEXignore_dependencybus04_cfg_enable„4ƒ?5…G'=/- bus04_pcie_hierarchy_typenv_global_pci_conf_40x18.160x0.2ENUMDefines PCI Bus 04 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS04_HIERARCHY_TYPEignore_dependencybus04_cfg_enable `Æ!ü`ƒ -5/bus04_cfg_enablenv_global_pci_conf_40x18.310x0.1BOOLWhen TRUE, PCI bus 04 parameters are enforced, otherwise device defaults are used‚!ƒ #5Y+/- bus04_widthnv_global_pci_conf_40x18.280x0.3ENUMPCI bus 04 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS04_WIDTHignore_dependencybus04_cfg_enable!ƒ !5q)/- bus04_aspmnv_global_pci_conf_40x18.270x0.1BOOLWhen FALSE, PCI bus 04 will not have ASPM enabled.PCI_BUS04_ASPMignore_dependencybus04_cfg_enable‚6ƒ #5m3+/- bus04_speednv_global_pci_conf_40x18.240x0.3ENUMPCI bus 04 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS04_SPEEDignore_dependencybus04_cfg_enable ÀÉÀ‚ƒ;5‚9/- bus07_pcie_switch_indexnv_global_pci_conf_40x1C.20x0.2UNSIGNEDBus 07 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS07_SWITCH_INDEXignore_dependencybus07_cfg_enable„3ƒ ?5…G'=/- bus07_pcie_hierarchy_typenv_global_pci_conf_40x1C.00x0.2ENUMDefines PCI Bus 07 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS07_HIERARCHY_TYPEignore_dependencybus07_cfg_enable aÇ"ýaƒ-5/bus07_cfg_enablenv_global_pci_conf_40x1C.150x0.1BOOLWhen TRUE, PCI bus 07 parameters are enforced, otherwise device defaults are used‚!ƒ#5Y+/- bus07_widthnv_global_pci_conf_40x1C.120x0.3ENUMPCI bus 07 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS07_WIDTHignore_dependencybus07_cfg_enable!ƒ!5q)/- bus07_aspmnv_global_pci_conf_40x1C.110x0.1BOOLWhen FALSE, PCI bus 07 will not have ASPM enabled.PCI_BUS07_ASPMignore_dependencybus07_cfg_enable‚5ƒ#5m3+/- bus07_speednv_global_pci_conf_40x1C.80x0.3ENUMPCI bus 07 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS07_SPEEDignore_dependencybus07_cfg_enable ¾Ⱦ‚ƒ;5‚9/- bus06_pcie_switch_indexnv_global_pci_conf_40x1C.180x0.2UNSIGNEDBus 06 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS06_SWITCH_INDEXignore_dependencybus06_cfg_enable„4ƒ?5…G'=/- bus06_pcie_hierarchy_typenv_global_pci_conf_40x1C.160x0.2ENUMDefines PCI Bus 06 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS06_HIERARCHY_TYPEignore_dependencybus06_cfg_enable `Æ!ü`ƒ-5/bus06_cfg_enablenv_global_pci_conf_40x1C.310x0.1BOOLWhen TRUE, PCI bus 06 parameters are enforced, otherwise device defaults are used‚!ƒ#5Y+/- bus06_widthnv_global_pci_conf_40x1C.280x0.3ENUMPCI bus 06 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS06_WIDTHignore_dependencybus06_cfg_enable!ƒ!5q)/- bus06_aspmnv_global_pci_conf_40x1C.270x0.1BOOLWhen FALSE, PCI bus 06 will not have ASPM enabled.PCI_BUS06_ASPMignore_dependencybus06_cfg_enable‚6ƒ#5m3+/- bus06_speednv_global_pci_conf_40x1C.240x0.3ENUMPCI bus 06 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS06_SPEEDignore_dependencybus06_cfg_enable PPv›Æú,RxÈü.TzŸÊþ0V|¡Ì%#5bus13_widthnv_global_pci_conf_4©$!5bus14_aspmnv_global_pci_conf_4º*-5bus14_cfg_enablenv_global_pci_conf_4¼3?5bus14_pcie_hierarchy_typenv_global_pci_conf_4·1;5bus14_pcie_switch_indexnv_global_pci_conf_4¸%#5bus14_speednv_global_pci_conf_4¹%#5bus14_widthnv_global_pci_conf_4»$!5bus15_aspmnv_global_pci_conf_4´*-5bus15_cfg_enablenv_global_pci_conf_4¶3?5bus15_pcie_hierarchy_typenv_global_pci_conf_4±1;5bus15_pcie_switch_indexnv_global_pci_conf_4²%#5bus15_speednv_global_pci_conf_4³%#5bus15_widthnv_global_pci_conf_4µ$!5bus16_aspmnv_global_pci_conf_4Æ*-5bus16_cfg_enablenv_global_pci_conf_4È3?5bus16_pcie_hierarchy_typenv_global_pci_conf_4Ã1;5bus16_pcie_switch_indexnv_global_pci_conf_4Ä%#5bus16_speednv_global_pci_conf_4Å%#5bus16_widthnv_global_pci_conf_4Ç$!5bus17_aspmnv_global_pci_conf_4À*-5bus17_cfg_enablenv_global_pci_conf_4Â3?5bus17_pcie_hierarchy_typenv_global_pci_conf_4½ ÀÉÀ‚ƒ;5‚9/- bus11_pcie_switch_indexnv_global_pci_conf_40x20.20x0.2UNSIGNEDBus 11 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS11_SWITCH_INDEXignore_dependencybus11_cfg_enable„3ƒ?5…G'=/- bus11_pcie_hierarchy_typenv_global_pci_conf_40x20.00x0.2ENUMDefines PCI Bus 11 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS11_HIERARCHY_TYPEignore_dependencybus11_cfg_enable aÇ"ýaƒ-5/bus11_cfg_enablenv_global_pci_conf_40x20.150x0.1BOOLWhen TRUE, PCI bus 11 parameters are enforced, otherwise device defaults are used‚!ƒ#5Y+/- bus11_widthnv_global_pci_conf_40x20.120x0.3ENUMPCI bus 11 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS11_WIDTHignore_dependencybus11_cfg_enable!ƒ!5q)/- bus11_aspmnv_global_pci_conf_40x20.110x0.1BOOLWhen FALSE, PCI bus 11 will not have ASPM enabled.PCI_BUS11_ASPMignore_dependencybus11_cfg_enable‚5ƒ#5m3+/- bus11_speednv_global_pci_conf_40x20.80x0.3ENUMPCI bus 11 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS11_SPEEDignore_dependencybus11_cfg_enable ÜÜô:Ru˜°Óö:Tsˆ›³ÇÙë+CWq…–ª»Íê1PCI_SWITCH0_ENABLEÿ"GPCI_SWITCH0_UPSTRAEM_PORT_BUSþ"GPCI_SWITCH0_UPSTRAEM_PORT_PEXý1PCI_SWITCH1_ENABLEû"GPCI_SWITCH1_UPSTRAEM_PORT_BUSú"GPCI_SWITCH1_UPSTRAEM_PORT_PEXù1PCI_SWITCH2_ENABLE"GPCI_SWITCH2_UPSTRAEM_PORT_BUS"GPCI_SWITCH2_UPSTRAEM_PORT_PEX CPCI_SWITCH_EMULATION_ENABLE"GPCI_SWITCH_EMULATION_NUM_PORT5PCI_SW_LANES_MAPPINGè?PCI_SW_LANES_REMAPPING_ENç+PCI_WR_ORDERINGŸ'PER_PF_NUM_SF§1PER_PF_NUM_VF_MSIX£)PF_BAR2_ENABLE¶%PF_BAR2_SIZEŸ%PF_DEVICE_ID•3PF_DEVICE_ID_ENABLEŽ+PF_LOG_BAR_SIZE»%PF_NUM_OF_VF”1PF_NUM_OF_VF_VALID¢)PF_NUM_PF_MSIX’5PF_NUM_PF_MSIX_VALID¦)PF_NUM_VF_MSIX“#PF_SD_GROUP)PF_SF_BAR_SIZE‘#PF_TOTAL_SFŒ%PHY_AUTO_NEGƒ;PHY_COUNT_LINK_UP_DELAYí-PHY_FEC_OVERRIDE… ¾Ⱦ‚ƒ ;5‚9/- bus10_pcie_switch_indexnv_global_pci_conf_40x20.180x0.2UNSIGNEDBus 10 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS10_SWITCH_INDEXignore_dependencybus10_cfg_enable„4ƒ?5…G'=/- bus10_pcie_hierarchy_typenv_global_pci_conf_40x20.160x0.2ENUMDefines PCI Bus 10 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS10_HIERARCHY_TYPEignore_dependencybus10_cfg_enable `Æ!ü`ƒ$-5/bus10_cfg_enablenv_global_pci_conf_40x20.310x0.1BOOLWhen TRUE, PCI bus 10 parameters are enforced, otherwise device defaults are used‚!ƒ##5Y+/- bus10_widthnv_global_pci_conf_40x20.280x0.3ENUMPCI bus 10 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS10_WIDTHignore_dependencybus10_cfg_enable!ƒ"!5q)/- bus10_aspmnv_global_pci_conf_40x20.270x0.1BOOLWhen FALSE, PCI bus 10 will not have ASPM enabled.PCI_BUS10_ASPMignore_dependencybus10_cfg_enable‚6ƒ!#5m3+/- bus10_speednv_global_pci_conf_40x20.240x0.3ENUMPCI bus 10 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS10_SPEEDignore_dependencybus10_cfg_enable ÀÉÀ‚ƒ&;5‚9/- bus13_pcie_switch_indexnv_global_pci_conf_40x24.20x0.2UNSIGNEDBus 13 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS13_SWITCH_INDEXignore_dependencybus13_cfg_enable„3ƒ%?5…G'=/- bus13_pcie_hierarchy_typenv_global_pci_conf_40x24.00x0.2ENUMDefines PCI Bus 13 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS13_HIERARCHY_TYPEignore_dependencybus13_cfg_enable aÇ"ýaƒ*-5/bus13_cfg_enablenv_global_pci_conf_40x24.150x0.1BOOLWhen TRUE, PCI bus 13 parameters are enforced, otherwise device defaults are used‚!ƒ)#5Y+/- bus13_widthnv_global_pci_conf_40x24.120x0.3ENUMPCI bus 13 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS13_WIDTHignore_dependencybus13_cfg_enable!ƒ(!5q)/- bus13_aspmnv_global_pci_conf_40x24.110x0.1BOOLWhen FALSE, PCI bus 13 will not have ASPM enabled.PCI_BUS13_ASPMignore_dependencybus13_cfg_enable‚5ƒ'#5m3+/- bus13_speednv_global_pci_conf_40x24.80x0.3ENUMPCI bus 13 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS13_SPEEDignore_dependencybus13_cfg_enable ¾Ⱦ‚ƒ,;5‚9/- bus12_pcie_switch_indexnv_global_pci_conf_40x24.180x0.2UNSIGNEDBus 12 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS12_SWITCH_INDEXignore_dependencybus12_cfg_enable„4ƒ+?5…G'=/- bus12_pcie_hierarchy_typenv_global_pci_conf_40x24.160x0.2ENUMDefines PCI Bus 12 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS12_HIERARCHY_TYPEignore_dependencybus12_cfg_enable `Æ!ü`ƒ0-5/bus12_cfg_enablenv_global_pci_conf_40x24.310x0.1BOOLWhen TRUE, PCI bus 12 parameters are enforced, otherwise device defaults are used‚!ƒ/#5Y+/- bus12_widthnv_global_pci_conf_40x24.280x0.3ENUMPCI Bus 12 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS12_WIDTHignore_dependencybus12_cfg_enable!ƒ.!5q)/- bus12_aspmnv_global_pci_conf_40x24.270x0.1BOOLWhen FALSE, PCI bus 12 will not have ASPM enabled.PCI_BUS12_ASPMignore_dependencybus12_cfg_enable‚6ƒ-#5m3+/- bus12_speednv_global_pci_conf_40x24.240x0.3ENUMPCI bus 12 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS12_SPEEDignore_dependencybus12_cfg_enable UU{¡Åë=bН×ü'[³Ùþ)]µÛ%#5bus17_speednv_global_pci_conf_4¿%#5bus17_widthnv_global_pci_conf_4Á#5bus1_aspmnv_global_pci_conf_36%%3bus1_aspm_ennv_global_pci_cap_3©''5bus1_restrictnv_global_pci_conf_38)-3bus1_restrict_ennv_global_pci_cap_3«$!5bus1_speednv_global_pci_conf_35')3bus1_speed_maxnv_global_pci_cap_3¨$!5bus1_widthnv_global_pci_conf_37')3bus1_width_maxnv_global_pci_cap_3ª$!5bus20_aspmnv_global_pci_conf_4Ò*-5bus20_cfg_enablenv_global_pci_conf_4Ô3?5bus20_pcie_hierarchy_typenv_global_pci_conf_4Ï1;5bus20_pcie_switch_indexnv_global_pci_conf_4Ð%#5bus20_speednv_global_pci_conf_4Ñ%#5bus20_widthnv_global_pci_conf_4Ó$!5bus21_aspmnv_global_pci_conf_4Ì*-5bus21_cfg_enablenv_global_pci_conf_4Î3?5bus21_pcie_hierarchy_typenv_global_pci_conf_4É1;5bus21_pcie_switch_indexnv_global_pci_conf_4Ê%#5bus21_speednv_global_pci_conf_4Ë%#5bus21_widthnv_global_pci_conf_4Í$!5bus22_aspmnv_global_pci_conf_4Þ ÀÉÀ‚ƒ2;5‚9/- bus15_pcie_switch_indexnv_global_pci_conf_40x28.20x0.2UNSIGNEDBus 15 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS15_SWITCH_INDEXignore_dependencybus15_cfg_enable„3ƒ1?5…G'=/- bus15_pcie_hierarchy_typenv_global_pci_conf_40x28.00x0.2ENUMDefines PCI Bus 15 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS15_HIERARCHY_TYPEignore_dependencybus15_cfg_enable aÇ"ýaƒ6-5/bus15_cfg_enablenv_global_pci_conf_40x28.150x0.1BOOLWhen TRUE, PCI bus 15 parameters are enforced, otherwise device defaults are used‚!ƒ5#5Y+/- bus15_widthnv_global_pci_conf_40x28.120x0.3ENUMPCI bus 15 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS15_WIDTHignore_dependencybus15_cfg_enable!ƒ4!5q)/- bus15_aspmnv_global_pci_conf_40x28.110x0.1BOOLWhen FALSE, PCI bus 15 will not have ASPM enabled.PCI_BUS15_ASPMignore_dependencybus15_cfg_enable‚5ƒ3#5m3+/- bus15_speednv_global_pci_conf_40x28.80x0.3ENUMPCI bus 15 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS15_SPEEDignore_dependencybus15_cfg_enable ¾Ⱦ‚ƒ8;5‚9/- bus14_pcie_switch_indexnv_global_pci_conf_40x28.180x0.2UNSIGNEDBus 14 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS14_SWITCH_INDEXignore_dependencybus14_cfg_enable„4ƒ7?5…G'=/- bus14_pcie_hierarchy_typenv_global_pci_conf_40x28.160x0.2ENUMDefines PCI Bus 14 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS14_HIERARCHY_TYPEignore_dependencybus14_cfg_enable `Æ!ü`ƒ<-5/bus14_cfg_enablenv_global_pci_conf_40x28.310x0.1BOOLWhen TRUE, PCI bus 14 parameters are enforced, otherwise device defaults are used‚!ƒ;#5Y+/- bus14_widthnv_global_pci_conf_40x28.280x0.3ENUMPCI Bus 14 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS14_WIDTHignore_dependencybus14_cfg_enable!ƒ:!5q)/- bus14_aspmnv_global_pci_conf_40x28.270x0.1BOOLWhen FALSE, PCI bus 14 will not have ASPM enabled.PCI_BUS14_ASPMignore_dependencybus14_cfg_enable‚6ƒ9#5m3+/- bus14_speednv_global_pci_conf_40x28.240x0.3ENUMPCI bus 14 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS14_SPEEDignore_dependencybus14_cfg_enable ÀÉÀ‚ƒ>;5‚9/- bus17_pcie_switch_indexnv_global_pci_conf_40x2C.20x0.2UNSIGNEDBus 17 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS17_SWITCH_INDEXignore_dependencybus17_cfg_enable„3ƒ=?5…G'=/- bus17_pcie_hierarchy_typenv_global_pci_conf_40x2C.00x0.2ENUMDefines PCI Bus 17 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS17_HIERARCHY_TYPEignore_dependencybus17_cfg_enable aÇ"ýaƒB-5/bus17_cfg_enablenv_global_pci_conf_40x2C.150x0.1BOOLWhen TRUE, PCI bus 17 parameters are enforced, otherwise device defaults are used‚!ƒA#5Y+/- bus17_widthnv_global_pci_conf_40x2C.120x0.3ENUMPCI bus 17 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS17_WIDTHignore_dependencybus17_cfg_enable!ƒ@!5q)/- bus17_aspmnv_global_pci_conf_40x2C.110x0.1BOOLWhen FALSE, PCI bus 17 will not have ASPM enabled.PCI_BUS17_ASPMignore_dependencybus17_cfg_enable‚5ƒ?#5m3+/- bus17_speednv_global_pci_conf_40x2C.80x0.3ENUMPCI bus 17 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS17_SPEEDignore_dependencybus17_cfg_enable HH|®ÔúJ~°Öü!L€²Øþ#N‚´Ú3?5bus22_pcie_hierarchy_typenv_global_pci_conf_4Û1;5bus22_pcie_switch_indexnv_global_pci_conf_4Ü%#5bus22_speednv_global_pci_conf_4Ý%#5bus22_widthnv_global_pci_conf_4ß$!5bus23_aspmnv_global_pci_conf_4Ø*-5bus23_cfg_enablenv_global_pci_conf_4Ú3?5bus23_pcie_hierarchy_typenv_global_pci_conf_4Õ1;5bus23_pcie_switch_indexnv_global_pci_conf_4Ö%#5bus23_speednv_global_pci_conf_4×%#5bus23_widthnv_global_pci_conf_4Ù$!5bus24_aspmnv_global_pci_conf_4ê*-5bus24_cfg_enablenv_global_pci_conf_4ì3?5bus24_pcie_hierarchy_typenv_global_pci_conf_4ç1;5bus24_pcie_switch_indexnv_global_pci_conf_4è%#5bus24_speednv_global_pci_conf_4é%#5bus24_widthnv_global_pci_conf_4ë$!5bus25_aspmnv_global_pci_conf_4ä*-5bus25_cfg_enablenv_global_pci_conf_4æ3?5bus25_pcie_hierarchy_typenv_global_pci_conf_4á1;5bus25_pcie_switch_indexnv_global_pci_conf_4â%#5bus25_speednv_global_pci_conf_4ã%#5bus25_widthnv_global_pci_conf_4å ¾Ⱦ‚ƒD;5‚9/- bus16_pcie_switch_indexnv_global_pci_conf_40x2C.180x0.2UNSIGNEDBus 16 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS16_SWITCH_INDEXignore_dependencybus16_cfg_enable„4ƒC?5…G'=/- bus16_pcie_hierarchy_typenv_global_pci_conf_40x2C.160x0.2ENUMDefines PCI Bus 16 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS16_HIERARCHY_TYPEignore_dependencybus16_cfg_enable `Æ!ü`ƒH-5/bus16_cfg_enablenv_global_pci_conf_40x2C.310x0.1BOOLWhen TRUE, PCI bus 16 parameters are enforced, otherwise device defaults are used‚!ƒG#5Y+/- bus16_widthnv_global_pci_conf_40x2C.280x0.3ENUMPCI bus 16 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS16_WIDTHignore_dependencybus16_cfg_enable!ƒF!5q)/- bus16_aspmnv_global_pci_conf_40x2C.270x0.1BOOLWhen FALSE, PCI bus 16 will not have ASPM enabled.PCI_BUS16_ASPMignore_dependencybus16_cfg_enable‚6ƒE#5m3+/- bus16_speednv_global_pci_conf_40x2C.240x0.3ENUMPCI bus 16 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS16_SPEEDignore_dependencybus16_cfg_enable 4Ie‘«ÁÖö%6T4p­ÄÞõ$<Tq‚–¢´ÆÛí+RENEG_ON_CHANGE®9PHY_RATE_MASK_OVERRIDE„9PLDM_FW_UPDATE_DISABLEû!PORT_OWNER¬5PRIO_TAG_REQUIRED_ENh-PROG_PARSE_GRAPH‰+QOS_TRUST_STATErARATE_REDUCE_MONITOR_PERIODJ=RATE_TO_SET_ON_FIRST_CNPG#RBT_DISABLEü#RDE_DISABLEú=RDMA_SELECTIVE_REPEAT_ENl9REAL_TIME_CLOCK_ENABLEk?RESET_WITH_HOST_ON_ERRORSò=ROCE_ADAPTIVE_ROUTING_ENw/ROCE_CC_ALGORITHM;5ROCE_CC_LEGACY_DCQCNî/ROCE_CC_PRIO_MASK8;ROCE_CC_SHAPER_COALESCE9%ROCE_CONTROLž1ROCE_NEXT_PROTOCOL–1ROCE_RTT_RESP_DSCPc;ROCE_RTT_RESP_DSCP_MODEd#RPG_AI_RATEB)RPG_BYTE_RESET? RPG_GDD%RPG_HAI_RATEC%RPG_MAX_RATEA+RPG_MIN_DEC_FACE%RPG_MIN_RATEF'RPG_THRESHOLD@ ÀÉÀ‚ƒJ;5‚9/- bus21_pcie_switch_indexnv_global_pci_conf_40x30.20x0.2UNSIGNEDBus 21 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS21_SWITCH_INDEXignore_dependencybus21_cfg_enable„3ƒI?5…G'=/- bus21_pcie_hierarchy_typenv_global_pci_conf_40x30.00x0.2ENUMDefines PCI Bus 21 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS21_HIERARCHY_TYPEignore_dependencybus21_cfg_enable aÇ"ýaƒN-5/bus21_cfg_enablenv_global_pci_conf_40x30.150x0.1BOOLWhen TRUE, PCI bus 21 parameters are enforced, otherwise device defaults are used‚!ƒM#5Y+/- bus21_widthnv_global_pci_conf_40x30.120x0.3ENUMPCI bus 21 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS21_WIDTHignore_dependencybus21_cfg_enable!ƒL!5q)/- bus21_aspmnv_global_pci_conf_40x30.110x0.1BOOLWhen FALSE, PCI bus 21 will not have ASPM enabled.PCI_BUS21_ASPMignore_dependencybus21_cfg_enable‚5ƒK#5m3+/- bus21_speednv_global_pci_conf_40x30.80x0.3ENUMPCI bus 21 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS21_SPEEDignore_dependencybus21_cfg_enable ¾Ⱦ‚ƒP;5‚9/- bus20_pcie_switch_indexnv_global_pci_conf_40x30.180x0.2UNSIGNEDBus 20 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS20_SWITCH_INDEXignore_dependencybus20_cfg_enable„4ƒO?5…G'=/- bus20_pcie_hierarchy_typenv_global_pci_conf_40x30.160x0.2ENUMDefines PCI Bus 20 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS20_HIERARCHY_TYPEignore_dependencybus20_cfg_enable `Æ!ü`ƒT-5/bus20_cfg_enablenv_global_pci_conf_40x30.310x0.1BOOLWhen TRUE, PCI bus 20 parameters are enforced, otherwise device defaults are used‚!ƒS#5Y+/- bus20_widthnv_global_pci_conf_40x30.280x0.3ENUMPCI bus 20 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS20_WIDTHignore_dependencybus20_cfg_enable!ƒR!5q)/- bus20_aspmnv_global_pci_conf_40x30.270x0.1BOOLWhen FALSE, PCI bus 20 will not have ASPM enabled.PCI_BUS20_ASPMignore_dependencybus20_cfg_enable‚6ƒQ#5m3+/- bus20_speednv_global_pci_conf_40x30.240x0.3ENUMPCI bus 20 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS20_SPEEDignore_dependencybus20_cfg_enable ÀÉÀ‚ƒV;5‚9/- bus23_pcie_switch_indexnv_global_pci_conf_40x34.20x0.2UNSIGNEDBus 23 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS23_SWITCH_INDEXignore_dependencybus23_cfg_enable„3ƒU?5…G'=/- bus23_pcie_hierarchy_typenv_global_pci_conf_40x34.00x0.2ENUMDefines PCI Bus 23 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS23_HIERARCHY_TYPEignore_dependencybus23_cfg_enablebËËÐÕÚßäéîóøý  %*/49>DJPV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú  %*/4;EQZ\a f"i#k$o%s&x)|+~,-.0 2 345679!:#;&<)>.?2A3C4D5E8F:G;H<I?JEKKLPNTO[PaRdSgViWlXnZq[s\y_~b‚c‚d‚ e‚ g‚h‚i‚j‚k‚m‚#n‚'q‚*r‚-s‚1t‚5v‚8w‚:x‚<y‚?{‚B|‚E~‚H‚K‚N‚‚Qƒ‚T„‚W…‚Z†‚_‡‚cˆ‚g‰‚i‹‚l‚nŽ‚p‚t^ÌÌÒØÞäêðöü &,28>DJPV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú’‚z“‚|”ƒ˜ƒ™ƒ›ƒœƒ ƒžƒŸƒ ƒ¢ƒ£ƒ¥ƒ ¦ƒ$§ƒ&¨ƒ*©ƒ,ªƒ0¬ƒ2­ƒ6®ƒ8¯ƒ<°ƒ>±ƒB³ƒD´ƒH¶ƒJ·ƒN¸ƒP¹ƒTºƒV½ƒZ¿ƒ\Àƒ`ÁƒbƒfÃhălŃnƃrȃtɃxʃ|̄̈́΄ Ï„ЄÒ„Ó„#Ö„)ׄ/Ø„4Ù„=Ú„BÛ„KÝ„Rà„Yá„_â„dã„gå„kç„mè„pé„sê„uë„xì„î…ï… ð…ò…ó…ô…õ…#÷…(ø….ù…3ú…9û…?ý…Eþ…I…L…R…Y…\…^ …` …d …j…o…r…v aÇ"ýaƒZ-5/bus23_cfg_enablenv_global_pci_conf_40x34.150x0.1BOOLWhen TRUE, PCI bus 23 parameters are enforced, otherwise device defaults are used‚!ƒY#5Y+/- bus23_widthnv_global_pci_conf_40x34.120x0.3ENUMPCI bus 23 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS23_WIDTHignore_dependencybus23_cfg_enable!ƒX!5q)/- bus23_aspmnv_global_pci_conf_40x34.110x0.1BOOLWhen FALSE, PCI bus 23 will not have ASPM enabled.PCI_BUS23_ASPMignore_dependencybus23_cfg_enable‚5ƒW#5m3+/- bus23_speednv_global_pci_conf_40x34.80x0.3ENUMPCI bus 23 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS23_SPEEDignore_dependencybus23_cfg_enable ­­Õú"Fl”¾ã 0X|¢ÊôAf޲Ø')3bus3_speed_maxnv_global_pci_cap_3°$!5bus3_widthnv_global_pci_conf_3?')3bus3_width_maxnv_global_pci_cap_3²#5bus4_aspmnv_global_pci_conf_3J%%3bus4_aspm_ennv_global_pci_cap_3½''5bus4_restrictnv_global_pci_conf_3L)-3bus4_restrict_ennv_global_pci_cap_3¿$!5bus4_speednv_global_pci_conf_3I')3bus4_speed_maxnv_global_pci_cap_3¼$!5bus4_widthnv_global_pci_conf_3K')3bus4_width_maxnv_global_pci_cap_3¾#5bus5_aspmnv_global_pci_conf_3F%%3bus5_aspm_ennv_global_pci_cap_3¹''5bus5_restrictnv_global_pci_conf_3H)-3bus5_restrict_ennv_global_pci_cap_3»$!5bus5_speednv_global_pci_conf_3E')3bus5_speed_maxnv_global_pci_cap_3¸$!5bus5_widthnv_global_pci_conf_3G')3bus5_width_maxnv_global_pci_cap_3º#5bus6_aspmnv_global_pci_conf_3R%%3bus6_aspm_ennv_global_pci_cap_3Å''5bus6_restrictnv_global_pci_conf_3T ¾Ⱦ‚ƒ\;5‚9/- bus22_pcie_switch_indexnv_global_pci_conf_40x34.180x0.2UNSIGNEDBus 22 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS22_SWITCH_INDEXignore_dependencybus22_cfg_enable„4ƒ[?5…G'=/- bus22_pcie_hierarchy_typenv_global_pci_conf_40x34.160x0.2ENUMDefines PCI Bus 22 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS22_HIERARCHY_TYPEignore_dependencybus22_cfg_enable `Æ!ü`ƒ`-5/bus22_cfg_enablenv_global_pci_conf_40x34.310x0.1BOOLWhen TRUE, PCI bus 22 parameters are enforced, otherwise device defaults are used‚!ƒ_#5Y+/- bus22_widthnv_global_pci_conf_40x34.280x0.3ENUMPCI Bus 22 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS22_WIDTHignore_dependencybus22_cfg_enable!ƒ^!5q)/- bus22_aspmnv_global_pci_conf_40x34.270x0.1BOOLWhen FALSE, PCI bus 22 will not have ASPM enabled.PCI_BUS22_ASPMignore_dependencybus22_cfg_enable‚6ƒ]#5m3+/- bus22_speednv_global_pci_conf_40x34.240x0.3ENUMPCI bus 22 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS22_SPEEDignore_dependencybus22_cfg_enable ÀÉÀ‚ƒb;5‚9/- bus25_pcie_switch_indexnv_global_pci_conf_40x38.20x0.2UNSIGNEDBus 25 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS25_SWITCH_INDEXignore_dependencybus25_cfg_enable„3ƒa?5…G'=/- bus25_pcie_hierarchy_typenv_global_pci_conf_40x38.00x0.2ENUMDefines PCI Bus 25 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS25_HIERARCHY_TYPEignore_dependencybus25_cfg_enable aÇ"ýaƒf-5/bus25_cfg_enablenv_global_pci_conf_40x38.150x0.1BOOLWhen TRUE, PCI bus 25 parameters are enforced, otherwise device defaults are used‚!ƒe#5Y+/- bus25_widthnv_global_pci_conf_40x38.120x0.3ENUMPCI bus 25 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS25_WIDTHignore_dependencybus25_cfg_enable!ƒd!5q)/- bus25_aspmnv_global_pci_conf_40x38.110x0.1BOOLWhen FALSE, PCI bus 25 will not have ASPM enabled.PCI_BUS25_ASPMignore_dependencybus25_cfg_enable‚5ƒc#5m3+/- bus25_speednv_global_pci_conf_40x38.80x0.3ENUMPCI bus 25 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS25_SPEEDignore_dependencybus25_cfg_enable ¾Ⱦ‚ƒh;5‚9/- bus24_pcie_switch_indexnv_global_pci_conf_40x38.180x0.2UNSIGNEDBus 24 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS24_SWITCH_INDEXignore_dependencybus24_cfg_enable„4ƒg?5…G'=/- bus24_pcie_hierarchy_typenv_global_pci_conf_40x38.160x0.2ENUMDefines PCI Bus 24 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS24_HIERARCHY_TYPEignore_dependencybus24_cfg_enable `Æ!ü`ƒl-5/bus24_cfg_enablenv_global_pci_conf_40x38.310x0.1BOOLWhen TRUE, PCI bus 24 parameters are enforced, otherwise device defaults are used‚!ƒk#5Y+/- bus24_widthnv_global_pci_conf_40x38.280x0.3ENUMPCI bus 24 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS24_WIDTHignore_dependencybus24_cfg_enable!ƒj!5q)/- bus24_aspmnv_global_pci_conf_40x38.270x0.1BOOLWhen FALSE, PCI bus 24 will not have ASPM enabled.PCI_BUS24_ASPMignore_dependencybus24_cfg_enable‚6ƒi#5m3+/- bus24_speednv_global_pci_conf_40x38.240x0.3ENUMPCI bus 24 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS24_SPEEDignore_dependencybus24_cfg_enable ÀÉÀ‚ƒn;5‚9/- bus27_pcie_switch_indexnv_global_pci_conf_40x3C.20x0.2UNSIGNEDBus 27 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS27_SWITCH_INDEXignore_dependencybus27_cfg_enable„3ƒm?5…G'=/- bus27_pcie_hierarchy_typenv_global_pci_conf_40x3C.00x0.2ENUMDefines PCI Bus 27 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS27_HIERARCHY_TYPEignore_dependencybus27_cfg_enable aÇ"ýaƒr-5/bus27_cfg_enablenv_global_pci_conf_40x3C.150x0.1BOOLWhen TRUE, PCI bus 27 parameters are enforced, otherwise device defaults are used‚!ƒq#5Y+/- bus27_widthnv_global_pci_conf_40x3C.120x0.3ENUMPCI bus 27 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS27_WIDTHignore_dependencybus27_cfg_enable!ƒp!5q)/- bus27_aspmnv_global_pci_conf_40x3C.110x0.1BOOLWhen FALSE, PCI bus 27 will not have ASPM enabled.PCI_BUS27_ASPMignore_dependencybus27_cfg_enable‚5ƒo#5m3+/- bus27_speednv_global_pci_conf_40x3C.80x0.3ENUMPCI bus 27 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS27_SPEEDignore_dependencybus27_cfg_enable kÊï<dˆ®Ö%MršÀèAb‡k—»Ý+%?chap_auth_ennv_rom_iscsi_general_confí23?chap_mutual_auth_ennv_rom_iscsi_general_confì$!5bus6_speednv_global_pci_conf_3Q')3bus6_speed_maxnv_global_pci_cap_3Ä$!5bus6_widthnv_global_pci_conf_3S')3bus6_width_maxnv_global_pci_cap_3Æ#5bus7_aspmnv_global_pci_conf_3N%%3bus7_aspm_ennv_global_pci_cap_3Á''5bus7_restrictnv_global_pci_conf_3P)-3bus7_restrict_ennv_global_pci_cap_3Ã$!5bus7_speednv_global_pci_conf_3M')3bus7_speed_maxnv_global_pci_cap_3À$!5bus7_widthnv_global_pci_conf_3O')3bus7_width_maxnv_global_pci_cap_3Â%%5c_r_token_enfile_public_key_40961'%9c_r_token_enfile_public_key_4096_a''7cache_disablenv_host_chaining_confr0;5cache_disable_supportednv_host_chaining_capu #+cee_dcbx_ennv_lldp_nb_dcbxf$!7chain_modenv_host_chaining_confq3A5chain_mode_basic_supportednv_host_chaining_capv!!/chassis_idnv_enclosure_info"))clamp_tgt_ratenv_roce_cc_ecn= ¾Ⱦ‚ƒt;5‚9/- bus26_pcie_switch_indexnv_global_pci_conf_40x3C.180x0.2UNSIGNEDBus 26 Pointer to a Pcie Switch (switch0, switch1, switch2) Valid only for Hierarchy Type PCIE_HIER_TYPE_EXTERNAL_HOST_SWITCHPCI_BUS26_SWITCH_INDEXignore_dependencybus26_cfg_enable„4ƒs?5…G'=/- bus26_pcie_hierarchy_typenv_global_pci_conf_40x3C.160x0.2ENUMDefines PCI Bus 26 connectivity hierarchy\;0x0: PCIE_ENDPOINT - PCI link connected to external host, Device is EP\;0x1: PCIE_EXTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to external host\;0x2: PCIE_INTERNAL_HOST_SWITCH - PCI links connected to an internal switch, upstream link connected to internal hostPCIE_ENDPOINT=0x0,PCIE_EXTERNAL_HOST_SWITCH=0x1,PCIE_INTERNAL_HOST_SWITCH=0x2PCI_BUS26_HIERARCHY_TYPEignore_dependencybus26_cfg_enable `Æ!ü`ƒx-5/bus26_cfg_enablenv_global_pci_conf_40x3C.310x0.1BOOLWhen TRUE, PCI bus 26 parameters are enforced, otherwise device defaults are used‚!ƒw#5Y+/- bus26_widthnv_global_pci_conf_40x3C.280x0.3ENUMPCI bus 26 width:\;0x0: PCI_INACTIVE\;0x1: PCI_X1\;0x2: PCI_X2\;0x3: PCI_X4\;0x4: PCI_X8\;0x5: PCI_X16PCI_INACTIVE=0x0,PCI_X1=0x1,PCI_X2=0x2,PCI_X4=0x3,PCI_X8=0x4,PCI_X16=0x5PCI_BUS26_WIDTHignore_dependencybus26_cfg_enable!ƒv!5q)/- bus26_aspmnv_global_pci_conf_40x3C.270x0.1BOOLWhen FALSE, PCI bus 26 will not have ASPM enabled.PCI_BUS26_ASPMignore_dependencybus26_cfg_enable‚6ƒu#5m3+/- bus26_speednv_global_pci_conf_40x3C.240x0.3ENUMPCI bus 26 speed\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5\;0x5: PCI_GEN_6PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4,PCI_GEN_6=0x5PCI_BUS26_SPEEDignore_dependencybus26_cfg_enable Àô_Àƒ|151switch1_cfg_enablenv_global_pci_conf_40x40.150x0.1BOOLWhen TRUE, PCI Switch1 parameters are enforced, otherwise device defaults are usedƒ{)51 switch1_enablenv_global_pci_conf_40x40.140x0.1BOOLWhen TRUE PCI Switch1 is enabled, otherwise it is disabledPCI_SWITCH1_ENABLE‚ƒzK5‚G/1 switch1_upstream_port_bus_indexnv_global_pci_conf_40x40.20x0.4UNSIGNEDIndex of the bus (i.e. - the 1st logic lane in the PEX of the respective bus) on which the upstream port belonging to Switch1 residesPCI_SWITCH1_UPSTRAEM_PORT_BUSignore_dependencyswitch1_cfg_enablefƒyM5%G/1 Switch1_upstream_port_pex_numbernv_global_pci_conf_40x40.00x0.2UNSIGNEDThe index of the PEX on which the upstream port belonging to Switch1 residesPCI_SWITCH1_UPSTRAEM_PORT_PEXignore_dependencyswitch1_cfg_enable OOšÙ\–ÐQxš¿è 3^…®ÙJ_Cvirtio_net_emu_pci_layout_trans_supportednv_emulation_virtio_net_cap">EEvirtio_net_emu_pf_pci_layoutnv_emulation_virtio_net_conf=CEvirtio_net_emu_subsystem_idnv_emulation_virtio_net_confDQEvirtio_net_emu_subsystem_vendor_idnv_emulation_virtio_net_conf9=Cvirtio_net_emu_supportednv_emulation_virtio_net_cap$9;Evirtio_net_emu_total_vfnv_emulation_virtio_net_confAMCvirtio_net_emu_vf_msix_supportednv_emulation_virtio_net_cap#>EEvirtio_net_emu_vf_pci_layoutnv_emulation_virtio_net_conf&+/virtual_guid_ennv_virt_guid_addrš!#-virtual_macnv_virt_net_addr˜$)-virtual_mac_ennv_virt_net_addr—(//virtual_node_guidnv_virt_guid_addr›#?vlannv_rom_iscsi_general_confï&?vlan_ennv_rom_iscsi_general_confê*-5wake0_cfg_enablenv_global_pci_conf_4 &%5wake0_enablenv_global_pci_conf_4()5wake0_locationnv_global_pci_conf_4*-5wake1_cfg_enablenv_global_pci_conf_4&%5wake1_enablenv_global_pci_conf_4 ¾ò]¾„151switch0_cfg_enablenv_global_pci_conf_40x40.310x0.1BOOLWhen TRUE, PCI Switch0 parameters are enforced, otherwise device defaults are usedƒ)51 switch0_enablenv_global_pci_conf_40x40.300x0.1BOOLWhen TRUE PCI Switch0 is enabled, otherwise it is disabledPCI_SWITCH0_ENABLE‚ƒ~K5‚G/1 switch0_upstream_port_bus_indexnv_global_pci_conf_40x40.180x0.4UNSIGNEDIndex of the bus (i.e. - the 1st logic lane in the PEX of the respective bus) on which the upstream port belonging to Switch0 residesPCI_SWITCH0_UPSTRAEM_PORT_BUSignore_dependencyswitch0_cfg_enablegƒ}M5%G/1 Switch0_upstream_port_pex_numbernv_global_pci_conf_40x40.160x0.2UNSIGNEDThe index of the PEX on which the upstream port belonging to Switch0 residesPCI_SWITCH0_UPSTRAEM_PORT_PEXignore_dependencyswitch0_cfg_enable ò]¾ „C5C-/+ cpld_shift_reg_chain_lengthnv_global_pci_conf_40x50.00x0.10UNSIGNEDCPLD Shift Reg Chain LengthGPIO_CPLD_ENABLEignore_dependencycpld_cfg_enable„151switch2_cfg_enablenv_global_pci_conf_40x44.310x0.1BOOLWhen TRUE, PCI Switch2 parameters are enforced, otherwise device defaults are used„)51 switch2_enablenv_global_pci_conf_40x44.300x0.1BOOLWhen TRUE PCI Switch2 is enabled, otherwise it is disabledPCI_SWITCH2_ENABLE‚„K5‚G/1 switch2_upstream_port_bus_indexnv_global_pci_conf_40x44.180x0.4UNSIGNEDIndex of the bus (i.e. - the 1st logic lane in the PEX of the respective bus) on which the upstream port belonging to Switch2 residesPCI_SWITCH2_UPSTRAEM_PORT_BUSignore_dependencyswitch2_cfg_enableg„M5%G/1 Switch2_upstream_port_pex_numbernv_global_pci_conf_40x44.160x0.2UNSIGNEDThe index of the PEX on which the upstream port belonging to Switch2 residesPCI_SWITCH2_UPSTRAEM_PORT_PEXignore_dependencyswitch2_cfg_enable ffÑ8›f„ '5Q1// perst1_enablenv_global_pci_conf_40x54.140x0.1BOOLWhen TRUE, GPIO PERST1# is enabledGPIO_PERST1_ENABLEignore_dependencyperst1_cfg_enable„ +5;1// perst1_locationnv_global_pci_conf_40x54.00x0.10UNSIGNEDGPIO number for PERST1#GPIO_PERST1_NUMBERignore_dependencyperst1_cfg_enable„ -51wake0_cfg_enablenv_global_pci_conf_40x50.310x0.1BOOLWhen TRUE, GPIO WAKE0# parameters are enforced, otherwise device defaults are used„%5O//- wake0_enablenv_global_pci_conf_40x50.300x0.1BOOLWhen TRUE, GPIO WAKE0# is enabledGPIO_WAKE0_ENABLEignore_dependencywake0_cfg_enable„)59//- wake0_locationnv_global_pci_conf_40x50.160x0.10UNSIGNEDGPIO number for WAKE0#GPIO_WAKE0_NUMBERignore_dependencywake0_cfg_enable„+5-cpld_cfg_enablenv_global_pci_conf_40x50.150x0.1BOOLWhen TRUE, GPIO CPLD parameters are enforced, otherwise device defaults are used aaÌ3–þa„'5Q1// perst2_enablenv_global_pci_conf_40x58.140x0.1BOOLWhen TRUE, GPIO PERST2# is enabledGPIO_PERST2_ENABLEignore_dependencyperst2_cfg_enable„+5;1// perst2_locationnv_global_pci_conf_40x58.00x0.10UNSIGNEDGPIO number for PERST2#GPIO_PERST2_NUMBERignore_dependencyperst2_cfg_enable„-51wake1_cfg_enablenv_global_pci_conf_40x54.310x0.1BOOLWhen TRUE, GPIO WAKE1# parameters are enforced, otherwise device defaults are used„%5O//- wake1_enablenv_global_pci_conf_40x54.300x0.1BOOLWhen TRUE, GPIO WAKE1# is enabledGPIO_WAKE1_ENABLEignore_dependencywake1_cfg_enable„ )59//- wake1_locationnv_global_pci_conf_40x54.160x0.10UNSIGNEDGPIO number for WAKE1#GPIO_WAKE1_NUMBERignore_dependencywake1_cfg_enable„ /53perst1_cfg_enablenv_global_pci_conf_40x54.150x0.1BOOLWhen TRUE, GPIO PERST1# parameters are enforced, otherwise device defaults are used aaÌ3–þa„'5Q1// perst3_enablenv_global_pci_conf_40x5C.140x0.1BOOLWhen TRUE, GPIO PERST3# is enabledGPIO_PERST3_ENABLEignore_dependencyperst3_cfg_enable„+5;1// perst3_locationnv_global_pci_conf_40x5C.00x0.10UNSIGNEDGPIO number for PERST3#GPIO_PERST3_NUMBERignore_dependencyperst3_cfg_enable„-51wake2_cfg_enablenv_global_pci_conf_40x58.310x0.1BOOLWhen TRUE, GPIO WAKE2# parameters are enforced, otherwise device defaults are used„%5O//- wake2_enablenv_global_pci_conf_40x58.300x0.1BOOLWhen TRUE, GPIO WAKE2# is enabledGPIO_WAKE2_ENABLEignore_dependencywake2_cfg_enable„)59//- wake2_locationnv_global_pci_conf_40x58.160x0.10UNSIGNEDGPIO number for WAKE2#GPIO_WAKE2_NUMBERignore_dependencywake2_cfg_enable„/53perst2_cfg_enablenv_global_pci_conf_40x58.150x0.1BOOLWhen TRUE, GPIO PERST2# parameters are enforced, otherwise device defaults are used "NNs—¹Ûó-U} Èð/K`l‚š²Êâú*BZrŠ¢ºÒé$KESWITCH_HAIRPIN_TOT_BUFFER_SIZE™#IESWITCH_IPV4_TTL_MODIFY_ENABLEg!EEXP_ROM_NVME_UEFI_ARM_ENABLE!EEXP_ROM_NVME_UEFI_x86_ENABLE1EXP_ROM_PXE_ENABLE;EXP_ROM_UEFI_ARM_ENABLE;EXP_ROM_UEFI_x86_ENABLE'QEXP_ROM_VIRTIO_BLK_UEFI_ARM_ENABLE'QEXP_ROM_VIRTIO_BLK_UEFI_x86_ENABLE"GEXP_ROM_VIRTIO_NET_PXE_ENABLE'QEXP_ROM_VIRTIO_NET_UEFI_ARM_ENABLE'QEXP_ROM_VIRTIO_NET_UEFI_x86_ENABLE?FLEX_IPV4_OVER_VXLAN_PORTŠAFLEX_PARSER_PROFILE_ENABLEˆ9FORCE_ETH_PCI_SUBCLASS-FPGA_AUTO_RELOAD{ FPP_EN¸-GPIO_CPLD_ENABLE1GPIO_PERST1_ENABLE 1GPIO_PERST1_NUMBER 1GPIO_PERST2_ENABLE1GPIO_PERST2_NUMBER1GPIO_PERST3_ENABLE1GPIO_PERST3_NUMBER1GPIO_PERST4_ENABLE1GPIO_PERST4_NUMBER1GPIO_PERST5_ENABLE#1GPIO_PERST5_NUMBER"1GPIO_PERST6_ENABLE)1GPIO_PERST6_NUMBER(1GPIO_PERST7_ENABLE/1GPIO_PERST7_NUMBER./GPIO_WAKE0_ENABLE/GPIO_WAKE0_NUMBER aaÌ3–þa„'5Q1// perst4_enablenv_global_pci_conf_40x60.140x0.1BOOLWhen TRUE, GPIO PERST4# is enabledGPIO_PERST4_ENABLEignore_dependencyperst4_cfg_enable„+5;1// perst4_locationnv_global_pci_conf_40x60.00x0.10UNSIGNEDGPIO number for PERST4#GPIO_PERST4_NUMBERignore_dependencyperst4_cfg_enable„-51wake3_cfg_enablenv_global_pci_conf_40x5C.310x0.1BOOLWhen TRUE, GPIO WAKE3# parameters are enforced, otherwise device defaults are used„%5O//- wake3_enablenv_global_pci_conf_40x5C.300x0.1BOOLWhen TRUE, GPIO WAKE3# is enabledGPIO_WAKE3_ENABLEignore_dependencywake3_cfg_enable„)59//- wake3_locationnv_global_pci_conf_40x5C.160x0.10UNSIGNEDGPIO number for WAKE3#GPIO_WAKE3_NUMBERignore_dependencywake3_cfg_enable„/53perst3_cfg_enablenv_global_pci_conf_40x5C.150x0.1BOOLWhen TRUE, GPIO PERST3# parameters are enforced, otherwise device defaults are used aaÌ3–þa„#'5Q1// perst5_enablenv_global_pci_conf_40x64.140x0.1BOOLWhen TRUE, GPIO PERST5# is enabledGPIO_PERST5_ENABLEignore_dependencyperst5_cfg_enable„"+5;1// perst5_locationnv_global_pci_conf_40x64.00x0.10UNSIGNEDGPIO number for PERST5#GPIO_PERST5_NUMBERignore_dependencyperst5_cfg_enable„!-51wake4_cfg_enablenv_global_pci_conf_40x60.310x0.1BOOLWhen TRUE, GPIO WAKE4# parameters are enforced, otherwise device defaults are used„ %5O//- wake4_enablenv_global_pci_conf_40x60.300x0.1BOOLWhen TRUE, GPIO WAKE4# is enabledGPIO_WAKE4_ENABLEignore_dependencywake4_cfg_enable„)59//- wake4_locationnv_global_pci_conf_40x60.160x0.10UNSIGNEDGPIO number for WAKE4#GPIO_WAKE4_NUMBERignore_dependencywake4_cfg_enable„/53perst4_cfg_enablenv_global_pci_conf_40x60.150x0.1BOOLWhen TRUE, GPIO PERST4# parameters are enforced, otherwise device defaults are used »â 6]†±Ø,S|§Î÷"IrŒ¨Ó*-5wake2_cfg_enablenv_global_pci_conf_4&%5wake2_enablenv_global_pci_conf_4()5wake2_locationnv_global_pci_conf_4*-5wake3_cfg_enablenv_global_pci_conf_4&%5wake3_enablenv_global_pci_conf_4()5wake3_locationnv_global_pci_conf_4*-5wake4_cfg_enablenv_global_pci_conf_4!&%5wake4_enablenv_global_pci_conf_4 ()5wake4_locationnv_global_pci_conf_4*-5wake5_cfg_enablenv_global_pci_conf_4'&%5wake5_enablenv_global_pci_conf_4&()5wake5_locationnv_global_pci_conf_4%*-5wake6_cfg_enablenv_global_pci_conf_4-&%5wake6_enablenv_global_pci_conf_4,()5wake6_locationnv_global_pci_conf_4+*-5wake7_cfg_enablenv_global_pci_conf_43&%5wake7_enablenv_global_pci_conf_42()5wake7_locationnv_global_pci_conf_41+yearnv_file_id_mlnx—/yearnv_file_id_vendor¢*!Aztt_enablenv_performance_tuning_confã,'?ztt_supportednv_performance_tuning_capí @@Z‡­é.Ju¨Ü5b‹ÅòU‚«å)statenv_secure_host,E!static_component_name_stringnv_rom_ini;%'1status_updatenv_rom_debug_levelË;CAsteering_cache_refresh_ratenv_performance_tuning_confÜDW?steering_cache_refresh_rate_supportednv_performance_tuning_capä1stpnv_rom_debug_level¶*-5strap_cfg_enablenv_global_pci_conf_4h2A1strict_vf_msix_num_enablednv_global_pci_conf¨3E/strict_vf_msix_num_supportednv_global_pci_capË'5'sw_recovery_on_errornv_power_confñ0I%sw_recovery_on_error_supportednv_power_capü,15switch0_cfg_enablenv_global_pci_conf_4()5switch0_enablenv_global_pci_conf_4ÿ9K5switch0_upstream_port_bus_indexnv_global_pci_conf_4þ,15switch1_cfg_enablenv_global_pci_conf_4ü()5switch1_enablenv_global_pci_conf_4û9K5switch1_upstream_port_bus_indexnv_global_pci_conf_4ú,15switch2_cfg_enablenv_global_pci_conf_4()5switch2_enablenv_global_pci_conf_49K5switch2_upstream_port_bus_indexnv_global_pci_conf_4!!system_rttnv_pcc_intÍ aaÌ3–þa„)'5Q1// perst6_enablenv_global_pci_conf_40x68.140x0.1BOOLWhen TRUE, GPIO PERST6# is enabledGPIO_PERST6_ENABLEignore_dependencyperst6_cfg_enable„(+5;1// perst6_locationnv_global_pci_conf_40x68.00x0.10UNSIGNEDGPIO number for PERST6#GPIO_PERST6_NUMBERignore_dependencyperst6_cfg_enable„'-51wake5_cfg_enablenv_global_pci_conf_40x64.310x0.1BOOLWhen TRUE, GPIO WAKE5# parameters are enforced, otherwise device defaults are used„&%5O//- wake5_enablenv_global_pci_conf_40x64.300x0.1BOOLWhen TRUE, GPIO WAKE5# is enabledGPIO_WAKE5_ENABLEignore_dependencywake5_cfg_enable„%)59//- wake5_locationnv_global_pci_conf_40x64.160x0.10UNSIGNEDGPIO number for WAKE5#GPIO_WAKE5_NUMBERignore_dependencywake5_cfg_enable„$/53perst5_cfg_enablenv_global_pci_conf_40x64.150x0.1BOOLWhen TRUE, GPIO PERST5# parameters are enforced, otherwise device defaults are used aaÌ3–þa„/'5Q1// perst7_enablenv_global_pci_conf_40x6C.140x0.1BOOLWhen TRUE, GPIO PERST7# is enabledGPIO_PERST7_ENABLEignore_dependencyperst7_cfg_enable„.+5;1// perst7_locationnv_global_pci_conf_40x6C.00x0.10UNSIGNEDGPIO number for PERST7#GPIO_PERST7_NUMBERignore_dependencyperst7_cfg_enable„--51wake6_cfg_enablenv_global_pci_conf_40x68.310x0.1BOOLWhen TRUE, GPIO WAKE6# parameters are enforced, otherwise device defaults are used„,%5O//- wake6_enablenv_global_pci_conf_40x68.300x0.1BOOLWhen TRUE, GPIO WAKE6# is enabledGPIO_WAKE6_ENABLEignore_dependencywake6_cfg_enable„+)59//- wake6_locationnv_global_pci_conf_40x68.160x0.10UNSIGNEDGPIO number for WAKE6#GPIO_WAKE6_NUMBERignore_dependencywake6_cfg_enable„*/53perst6_cfg_enablenv_global_pci_conf_40x68.150x0.1BOOLWhen TRUE, GPIO PERST6# parameters are enforced, otherwise device defaults are used ¤aÌ3–¤n„4KK_+/ rshimnv_external_host_priv_fast_conf0x0.300x0.2ENUMEnforce state of RSHIM PF towards external host\;0x0: DEVICE_DEFAULT\;0x1: ENABLE\;0x2: DISABLEDEVICE_DEFAULT=0x0,ENABLE=0x1,DISABLE=0x2HOST_PRIV_RSHIMignore_dependency„3-51wake7_cfg_enablenv_global_pci_conf_40x6C.310x0.1BOOLWhen TRUE, GPIO WAKE7# parameters are enforced, otherwise device defaults are used„2%5O//- wake7_enablenv_global_pci_conf_40x6C.300x0.1BOOLWhen TRUE, GPIO WAKE7# is enabledGPIO_WAKE7_ENABLEignore_dependencywake7_cfg_enable„1)59//- wake7_locationnv_global_pci_conf_40x6C.160x0.10UNSIGNEDGPIO number for WAKE7#GPIO_WAKE7_NUMBERignore_dependencywake7_cfg_enable„0/53perst7_cfg_enablenv_global_pci_conf_40x6C.150x0.1BOOLWhen TRUE, GPIO PERST7# parameters are enforced, otherwise device defaults are used /T°@â–0Ñv/D„=#!)hii_ibm_aimnv_rom_ini0x0.100x0.1BOOLEnable AIM HIIX„<;!;hii_iscsi_configurationnv_rom_ini0x0.90x0.1BOOLEnable ISCSI HII config\„;E!9static_component_name_stringnv_rom_ini0x0.80x0.1BOOLUse static device namec„:!mtech_enumnv_rom_ini0x0.30x0.1BOOLAdd technology enumeration to device name stringI„9!!7hii_vpi_ennv_rom_ini0x0.20x0.1BOOLEnable HII VPI config[„8-!Oshared_memory_ennv_rom_ini0x0.10x0.1BOOLEnable HP shared memory functionsm„77'cforce_pf_rate_limiternv_debug_mode0x0.30x0.1BOOLQos mode will be forced as pf rate limiter. „61'Mnvia_nvlog_on_bootnv_debug_mode0x0.10x0.1BOOLDebug only.\;When set, firmware erases the NVLOG partition on BOOT and erases this NVCONFIG TLV.(„57'Wnvia_nvconfig_on_bootnv_debug_mode0x0.00x0.1BOOLDebug only.\;When set, firmware invalidates all NVCONFIG parameters on boot including this parameter. ŸNП‚-„B1!ƒ!Wuefi_fmp_over_ctrlnv_rom_ini0x0.220x0.1BOOLWhen set to TRUE, UEFI driver should load UEFI FMP protocols over the controller. Otherwise, UEFI driver should load UEFI FMP protocols over the child. \;Valid if NV_ROM_CAP.uefi_proto_over_ctrl is TRUE($nv_rom_cap.uefi_proto_over_ctrl==1)‚-„A1!ƒ!Wuefi_aip_over_ctrlnv_rom_ini0x0.210x0.1BOOLWhen set to TRUE, UEFI driver should load UEFI AIP protocols over the controller. Otherwise, UEFI driver should load UEFI AIP protocols over the child. \;Valid if NV_ROM_CAP.uefi_proto_over_ctrl is TRUE($nv_rom_cap.uefi_proto_over_ctrl==1)J„@'!1hii_read_onlynv_rom_ini0x0.130x0.1BOOLHII read only modeL„?+!1hii_bdf_decimalnv_rom_ini0x0.120x0.1BOOLHII read only mode`„>1!Shii_platform_setupnv_rom_ini0x0.110x0.1BOOLUse decimal values for PCIe address @ÏtÏ~5Љ@F„K!5undi_ennv_rom_ini0x0.310x0.1BOOLEnable UNDI protocolD„J!3hii_ennv_rom_ini0x0.300x0.1BOOLEnable HII protocolb„I7!Qplatform_to_driver_ennv_rom_ini0x0.290x0.1BOOLEnable Platform to Driver protocolF„H!5bofm_ennv_rom_ini0x0.280x0.1BOOLEnable BOFM protocolN„G!Gfmp_ennv_rom_ini0x0.270x0.1BOOLEnable FW Management protocolF„F!3flash_ennv_rom_ini0x0.260x0.1BOOLEnable flash accessY„E!Wport_enumnv_rom_ini0x0.250x0.1BOOLAdd port number to device name stringX„D!Wmac_enumnv_rom_ini0x0.240x0.1BOOLAdd MAC address to device name string‚-„C1!ƒ!Wuefi_hii_over_ctrlnv_rom_ini0x0.230x0.1BOOLWhen set to TRUE, UEFI driver should load UEFI HII protocols over the controller. Otherwise, UEFI driver should load UEFI HII protocols over the child. \;Valid if NV_ROM_CAP.uefi_proto_over_ctrl is TRUE($nv_rom_cap.uefi_proto_over_ctrl==1) ¢Bh¸ìDjôŽ¢¶ÛÌ)-3bus0_restrict_ennv_global_pci_cap_3¯')3bus0_width_maxnv_global_pci_cap_3®%%3bus0_aspm_ennv_global_pci_cap_3­')3bus0_speed_maxnv_global_pci_cap_3¬%#5bus06_widthnv_global_pci_conf_4—$!5bus07_aspmnv_global_pci_conf_4*-5bus07_cfg_enablenv_global_pci_conf_4’3?5bus07_pcie_hierarchy_typenv_global_pci_conf_41;5bus07_pcie_switch_indexnv_global_pci_conf_4Ž%#5bus07_speednv_global_pci_conf_4%#5bus07_widthnv_global_pci_conf_4‘#5bus0_aspmnv_global_pci_conf_3:''5bus0_restrictnv_global_pci_conf_3<$!5bus0_speednv_global_pci_conf_39$!5bus0_widthnv_global_pci_conf_3; žX·eÌdžn„R!guid_opsnv_rom_ini0xC.150x0.1BOOLguided_ops in CX3 (show specific fields in HII for Lenovo)R„Q5!3hii_flexaddr_settingnv_rom_ini0xC.140x0.1BOOLFlexaddress settinge„P7!Whii_flexaddr_overridenv_rom_ini0xC.130x0.1BOOLOverride flexaddress displaying logic„OI!#dhcp_pxe_discovery_control_disnv_rom_ini0xC.120x0.1BOOLDisable PXE DISCOVERY_CONTROL DHCP option support (option 43 sub option 6).O„N%!=tivoli_wa_ennv_rom_ini0xC.110x0.1BOOLEnable (Tivoli) Rembo WA„M+!Qucm_single_portnv_rom_ini0xC.100x0.1BOOLWhen set, the mriname string will not include the port number.\; (relevant to Lenovo Purely cards)$„L+!Udhcp_user_classnv_rom_ini0x4.240x8.0UNSIGNEDDHCP user class option (RFC3004) for Flexboot.\;Octet #1 must be equal for 77d.\;octet #2 - length\; ==ˆÇJ„¾J_Cvirtio_blk_emu_pci_layout_trans_supportednv_emulation_virtio_blk_cap0>EEvirtio_blk_emu_pf_pci_layoutnv_emulation_virtio_blk_conf(=CEvirtio_blk_emu_subsystem_idnv_emulation_virtio_blk_conf-DQEvirtio_blk_emu_subsystem_vendor_idnv_emulation_virtio_blk_conf,9=Cvirtio_blk_emu_supportednv_emulation_virtio_blk_cap29;Evirtio_blk_emu_total_vfnv_emulation_virtio_blk_conf*AMCvirtio_blk_emu_vf_msix_supportednv_emulation_virtio_blk_cap1 'CXlŠŸ»Ðä3H\z«ÀÔò#8Lj›°Çã+PCI_BUS02_SPEED}9PCI_BUS02_SWITCH_INDEX|+PCI_BUS02_WIDTH)PCI_BUS03_ASPMx=PCI_BUS03_HIERARCHY_TYPEu+PCI_BUS03_SPEEDw9PCI_BUS03_SWITCH_INDEXv+PCI_BUS03_WIDTHy)PCI_BUS04_ASPMŠ=PCI_BUS04_HIERARCHY_TYPE‡+PCI_BUS04_SPEED‰9PCI_BUS04_SWITCH_INDEXˆ+PCI_BUS04_WIDTH‹)PCI_BUS05_ASPM„=PCI_BUS05_HIERARCHY_TYPE+PCI_BUS05_SPEEDƒ9PCI_BUS05_SWITCH_INDEX‚+PCI_BUS05_WIDTH…)PCI_BUS06_ASPM–=PCI_BUS06_HIERARCHY_TYPE“+PCI_BUS06_SPEED•9PCI_BUS06_SWITCH_INDEX”+PCI_BUS06_WIDTH—)PCI_BUS07_ASPM=PCI_BUS07_HIERARCHY_TYPE+PCI_BUS07_SPEED9PCI_BUS07_SWITCH_INDEXŽ+PCI_BUS07_WIDTH‘/PCI_BUS0_RESTRICT<9PCI_BUS0_RESTRICT_ASPM:;PCI_BUS0_RESTRICT_SPEED9 UÂSù~e„Y-!apromiscuous_vlannv_rom_ini0xC.310x0.1BOOLSet Flexboot to ignore incoming VLAN tags.x„X-!option_rom_debugnv_rom_ini0xC.300x0.1BOOLEnable/disable logs per the configured level for each moduleW„W)!Auri_boot_retrynv_rom_ini0xC.260x0.4UNSIGNEDNumber of uri boot retriesl„V5!_uri_boot_retry_delaynv_rom_ini0xC.220x0.4UNSIGNEDDelay in seconds between uri boot retries„U-!3hii_aim_ucm_ver2nv_rom_ini0xC.210x0.1BOOLExpose AIM ver, and UCM ver HII fields with value equal to 2. For Levovo Agentless.C„T%!‚#hii_mriname2nv_rom_ini0xC.200x0.1BOOLExpose MRI_NAME2 field in HII with hard coded value of "Mellanox Network Adapter, physical ports $p, Logical ports 1" per Lenovo"s HII spec`„S!u}hii_typenv_rom_ini0xC.160x0.4ENUMType of vfr type with HII configuration selector:\;0x0: MLNX_DEFAULT\;0x1: HPE\;0x2: LENOVO\;0x3: DELL\;0x4: FUJITSUMLNX_DEFAULT=0x0,HPE=0x1,LENOVO=0x2,DELL=0x3,FUJITSU=0x4 q¾’ùq„_)!!lacp_config_ennv_rom_cap0x0.270x0.1BOOLWhen set, Flexboot supports configuration of LACP (NV_BOOT_CONF1.lacp_dis)„^'!Ehii_config_ennv_rom_cap0x0.260x0.1BOOLWhen set, NV_ROM_UEFI_CONF.hii_en controls if HII is reported (overriding NV_ROM_INI.hii_en)„]3!uefi_undi_config_ennv_rom_cap0x0.250x0.1BOOLWhen set, NV_ROM_UEFI_CONF.uefi_undi_en controls if UEFI UNDI is reportedl„\O!‚Klegacy_boot_wo_failover_supportednv_rom_cap0x0.230x0.1BOOLWhen set to TRUE, FlexBoot supports configuration of boot protocol, without failover to another protocol upon failure (NV_ROM_BOOT_CONF1.legacy_boot_protocol).,„[[!?boot_legacy_interrupt_disable_supportednv_rom_cap0x0.220x0.1BOOLWhen set to TRUE, legacy interrupt usage can be disabled by boot_legacy_interrupt_disable?„Z5! uefi_proto_over_ctrlnv_rom_cap0x0.210x0.1BOOL …yÕ–é…‚`„d+1ƒSC+/ cqe_compressionnv_sw_offload_conf0x0.00x0.3ENUMConfigure which algorithm should be used by the NIC in order to decide when to activate CQE compression based on PCIe bus condition. Note that the driver can enable compression on a per CQE basis\;0x0: BALANCED\;0x1: AGGRESSIVEBALANCED=0x0,AGGRESSIVE=0x1CQE_COMPRESSIONignore_dependency)„c#!qboot_ip_vernv_rom_cap0x0.310x0.1BOOLThis bit is set when flexboot supports configuration of PXE boot IP version defined in boot settings ext parameter<„b/! boot_debug_log_ennv_rom_cap0x0.300x0.1BOOL „a/!Sflexboot_debug_ennv_rom_cap0x0.290x0.1BOOLWhen set, Flexboot debug is supported (NV_ROM_FLEXBOOT_DEBUG and NV_ROM_DEBUG_LEVEL are applicable)„`%!#uefi_logs_ennv_rom_cap0x0.280x0.1BOOLWhen set, UEFI logging is supported (NV_ROM_UEFI_DEBUG_LEVEL is applicable) ѬäÑ‚„gI1[I esw_fdb_ipv4_ttl_modify_enablenv_sw_offload_conf0x0.60x0.1BOOLWhen TRUE, the device will supports e-switch rules modifying TTL of packets from the uplink to a vport.ESWITCH_IPV4_TTL_MODIFY_ENABLE$nv_sw_offload_cap.esw_fdb_ipv4_ttl_modify_supported == 1D„f%1#%i mkey_by_namenv_sw_offload_conf0x0.50x0.1BOOLWhen TRUE, the device supports allocating MKey numbers by the device driverMKEY_BY_NAME$nv_sw_offload_cap.mkey_by_name_supported == 1‚P„e-1ƒ--g ip_over_vxlan_ennv_sw_offload_conf0x0.40x0.1BOOLThis parameter is only supported if NV_SW_OFFLOAD_CAP.ip_over_vxlan_supported is set.\;mlxconfig_desc: When set, non-standard IPoVxLAN offload is enabled for incoming UDP port specified in IP_OVER_VXLAN_PORT.IP_OVER_VXLAN_EN$nv_sw_offload_cap.ip_over_vxlan_supported!=0 <d <0Q{©Þ8jÞ…­í-l¶³„'%7panic_bannernv_rom_flexboot_debugÍ'%page_suppliernv_ecpf_conf§.I!pci_data_wr_ordering_supportednv_hca_cap¤*?#pci_data_wr_ordering_modenv_hca_confŸ*!Apcc_updatenv_external_host_priv_conf&'5page_suppliernv_internal_cpu_conf~ ''partial_resetnv_power_confï);%partial_reset_supportednv_power_capú-71partial_wr_cache_modenv_global_pci_confµ4G/partial_wr_cache_mode_addressnv_global_pci_capÆ5I/partial_wr_cache_mode_functionnv_global_pci_capÇ#3!pcc_handle_resourcenv_pcc_intÈ1G)pcc_handle_resource_supportednv_pcc_int_capÎ!!pcc_int_ennv_pcc_intÌ'+1pci_atomic_modenv_sw_offload_confm?]/pci_atomics_disabled_ext_atomics_enablednv_sw_offload_cap‡?]/pci_atomics_enabled_ext_atomics_disablednv_sw_offload_cap‰>[/pci_atomics_enabled_ext_atomics_enablednv_sw_offload_cap‹Iq/pci_atomics_enabled_ext_atomics_enabled_nocoherentnv_sw_offload_capŠIq/pci_atomics_enabled_ext_atomics_enabled_serializednv_sw_offload_capˆ  Z¯% ‚„k-1w9q ptp_cyc2realtimenv_sw_offload_conf0x0.100x0.1BOOLWhen enabled, real time clock is enabled on the device, allowing timestamps presented in real time instead of cycles.REAL_TIME_CLOCK_ENABLE$nv_sw_offload_cap.ptp_cyc2realtime_supported == 1„j31i3 vector_calc_disablenv_sw_offload_conf0x0.90x0.1BOOLWhen TRUE, Vector-Calc operations are disabledVECTOR_CALC_DISABLE'„i1 Y uctx_ennv_sw_offload_conf0x0.80x0.1BOOLWhen set to TRUE, the device supports creation of UCTX contexts.UCTX_EN$nv_sw_offload_cap.uctx_supported == 1ƒ"„h51„55s prio_tag_required_ennv_sw_offload_conf0x0.70x0.1BOOLWhen set to TRUE, the system requires to always have prio tag on the network. SW of e-Switch manager should set the required flow table rules to ensure that. This field is supported only when NV_SW_OFFLOAD_CAP.prio_tag_required==1 and is reported in HCA_CAP.prio_tag_required.PRIO_TAG_REQUIRED_EN$nv_sw_offload_cap.prio_tag_required_supported == 1 #¥!¥»@QaoŠ¦ÂØñ<`x“¥¸Õú9ÔPmî„¶Ïè-SAFE_MODE_ENABLE33SAFE_MODE_THRESHOLD25UEFI_DEBUG_LOG_CACHEÛ1UEFI_DEBUG_LOG_GCDÚ7UEFI_DEBUG_LOG_EVENTSÙ?RT_PPS_ENABLED_ON_POWERUPë#SILENT_MODEœ!SM_DISABLEÿ SRIOV_ENº7SRIOV_IB_ROUTING_MODE}9STEERING_CACHE_REFRESHÜ9STRAP_ASYMMETRIC_PCOREg-STRAP_DUAL_PCOREe3STRAP_PCIE_SWITCHESb+STRAP_PEX_CORESa)STRAP_SD_OR_MHd!ESTRAP_SECONDARY_PCORE_HOSTS1c#ISTRAP_SECONDARY_PCORE_REVERSALf1STRICT_VF_MSIX_NUM¨7SW_RECOVERY_ON_ERRORSñ%TLS_OPTIMIZEá'TRACER_ENABLE¯;TUNNEL_ECN_COPY_DISABLEn$KTUNNEL_IP_PROTO_ENTROPY_DISABLEx1TX_SCHEDULER_BURSTâ UCTX_ENi5UEFI_DEBUG_LOG_BLKIOÖ/UEFI_DEBUG_LOG_BMÕ;UEFI_DEBUG_LOG_DISPATCHÔ/UEFI_DEBUG_LOG_FSÑ3UEFI_DEBUG_LOG_INITÏ3UEFI_DEBUG_LOG_LOADÐ3UEFI_DEBUG_LOG_PAGEÓ3UEFI_DEBUG_LOG_POOLÒ1UEFI_DEBUG_LOG_SNI× …G……>„m+1…]ƒq+/ pci_atomic_modenv_sw_offload_conf0x0.120x0.3ENUMPCI Atomic mode.\;0x0: PCI_ATOMIC_DISABLED_EXT_ATOMIC_ENABLED\;0x1: PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED_SERIALIZED - Atomic serialization will guarantee atomicity for multiple accesses to the same address\;0x2: PCI_ATOMICS_ENABLED_EXT_ATOMICS_DISABLED\;0x3: PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED_NONCOHERENT \;0x4: PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLEDPCI_ATOMIC_DISABLED_EXT_ATOMIC_ENABLED=0x0,PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED_SERIALIZED=0x1,PCI_ATOMICS_ENABLED_EXT_ATOMICS_DISABLED=0x2,PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED_NONCOHERENT=0x3,PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED=0x4PCI_ATOMIC_MODEignore_dependency5„l1y=c sr_enablenv_sw_offload_conf0x0.110x0.1BOOLWhen TRUE, Selective Repeat for RDMA QPs is supported.RDMA_SELECTIVE_REPEAT_EN$nv_sw_offload_cap.sr_enable_supported == 1 ^ú“^‚1„p-1ƒ-/ lro_log_timeout0nv_sw_offload_conf0x4.00x0.4UNSIGNEDLog2 of Large Receive Offload (LRO) timeout #0, in microseconds. Driver can select one of the 4 configured LRO timeouts on a per Qp basis in run-time (lro_timeout_period_usecs field of the TIR context)LRO_LOG_TIMEOUT0ignore_dependency‚c„o11‚c1A ip_over_vxlan_portnv_sw_offload_conf0x0.160x0.16UNSIGNEDThis parameter is only supported if NV_SW_OFFLOAD_CAP.ip_over_vxlan_supported is set.\;mlxconfig_desc: The UDP port for incoming IPoVxLAN traffic (non-standard).\;minval:1IP_OVER_VXLAN_PORT($nv_sw_offload_cap.ip_over_vxlan_supported!=0)&&($nv_sw_offload_conf.ip_over_vxlan_en!=0)‚„nK19; tunnel_ecn_copy_offload_disablenv_sw_offload_conf0x0.150x0.1BOOLWhen TRUE, ECN field copy from inner to outer header during encapsulation is disabled.TUNNEL_ECN_COPY_DISABLE$nv_sw_offload_cap.tunnel_ecn_copy_offload_disable_supported == 1 `Ë–`‚2„s-1ƒ-/ lro_log_timeout3nv_sw_offload_conf0x4.120x0.4UNSIGNEDLog2 of Large Receive Offload (LRO) timeout #3, in microseconds. Driver can select one of the 4 configured LRO timeouts on a per Qp basis in run-time (lro_timeout_period_usecs field of the TIR context)LRO_LOG_TIMEOUT3ignore_dependency‚1„r-1ƒ-/ lro_log_timeout2nv_sw_offload_conf0x4.80x0.4UNSIGNEDLog2 of Large Receive Offload (LRO) timeout #2, in microseconds. Driver can select one of the 4 configured LRO timeouts on a per Qp basis in run-time (lro_timeout_period_usecs field of the TIR context)LRO_LOG_TIMEOUT2ignore_dependency‚1„q-1ƒ-/ lro_log_timeout1nv_sw_offload_conf0x4.40x0.4UNSIGNEDLog2 of Large Receive Offload (LRO) timeout #1, in microseconds. Driver can select one of the 4 configured LRO timeouts on a per Qp basis in run-time (lro_timeout_period_usecs field of the TIR context)LRO_LOG_TIMEOUT1ignore_dependency U‚B„u%1‚ /i  vf_migrationnv_sw_offload_conf0x4.220x0.2ENUMDefines support for VF migration\;0x0: DEVICE_DEFAULT\;0x1: MIGRATION_DISABLED\;0x2: MIGRATION_ENABLED\;Other values are reservedDEVICE_DEFAULT=0x0,MIGRATION_DISABLED=0x1,MIGRATION_ENABLED=0x2VF_MIGRATION_MODE$nv_sw_offload_cap.vf_migration_supported == 102ƒ'„t)1„O/e  log_tx_psn_winnv_sw_offload_conf0x4.160x0.6UNSIGNEDLog2 of the transmission PSN window for QPs with Connected Transport Service (RC, DC, XRC).\;Value 0x0 indicates device defaults\;Value 0x3F indicates device maximal supported value\;Values exceeding the device capabilities will be considered as the device maximal supported value as well.LOG_TX_PSN_WINDOW$nv_sw_offload_cap.tx_psn_win_supported == 1063 tO–t‚„xM1mK tunnel_udp_entropy_proto_disablenv_sw_offload_conf0x4.310x0.1BOOLWhen TRUE, tunnel encapsulation offload will exclude IP.protocol from the UDP source port entropy calculation.\;TUNNEL_IP_PROTO_ENTROPY_DISABLE$nv_sw_offload_cap.tunnel_udp_entropy_proto_supported == 15„w1y=c ar_enablenv_sw_offload_conf0x4.290x0.1BOOLWhen TRUE, Adaptive Routing for RDMA QPs is supported.ROCE_ADAPTIVE_ROUTING_EN$nv_sw_offload_cap.ar_enable_supported == 1ƒ-„v;1„+;w  log_max_outstanding_wqenv_sw_offload_conf0x4.240x0.5UNSIGNEDLog2 of the maximal amount of outstanding (uncompleted) WQEs a single Transmit Work Queue may hold. Additional WQEs will be delayed until some of the outstanding WQEs are completed.\;Value 0x0 indicates device default.\;Value 0x1F indicates device maximal supported valueLOG_MAX_OUTSTANDING_WQE$nv_sw_offload_cap.max_outstanding_wqe_supported == 1031 @|¡ jÁ@~„3/roce_ctrl_supportednv_sw_offload_cap0x0.160x0.1BOOLwhen TRUE, NV_SW_OFFLOAD_CONFIG.roce_ctrl is configurable%„~Q/-tunnel_udp_entropy_proto_supportednv_sw_offload_cap0x0.150x0.1BOOLWhen TRUE, NV_SW_OFFLOAD_CONFIG.tunnel_udp_entropy_proto_disable is configurable2„}9/_vf_migration_supportednv_sw_offload_cap0x0.140x0.1BOOLWhen TRUE, NV_SW_OFFLOAD_CONFIG.vf_migration supports both MIGRATION_DISABLED and MIGRATION_ENABLED modes~„|3/ar_enable_supportednv_sw_offload_cap0x0.130x0.1BOOLWhen TRUE, NV_SW_OFFLOAD_CONFIG.ar_enable is configurableo„{9/[dbr_less_sqp_supportednv_sw_offload_cap0x0.120x0.1BOOLWhen TRUE, DBR_LESS_SQP is configurablef„z)/[uctx_supportednv_sw_offload_cap0x0.80x0.1BOOLWhen set to TRUE, UCTX_EN is supported.„yC/uprio_tag_required_supportednv_sw_offload_cap0x0.70x0.1BOOLWhen set to TRUE, PRIO_TAG_REQUIRED_EN is supported. ``|­Ëåû>kˆµë%Gp´Îè;Xt­Êå1tcpnv_rom_debug_levelÆ0/?tcp_timestamps_ennv_rom_iscsi_general_confë1tcpipnv_rom_debug_levelÇ!tech_enumnv_rom_ini:%textfile_comment1tftpnv_rom_debug_levelÄ%Ctimenv_invalidate_all_timestamp,#Ctime_syncednv_invalidate_all_timestamp%!tivoli_wa_ennv_rom_iniN,%Atls_optimizenv_performance_tuning_confá59?tls_optimize_supportednv_performance_tuning_capë)total_sfnv_pf_pci_confŒ)total_vfnv_pf_pci_conf”!1total_vfsnv_global_pci_conf³('7tracer_enablenv_external_port_ctrl¯/tray_idnv_enclosure_info$'/tray_locationnv_enclosure_info'ts_daynv_vts_bank_a('ts_daynv_vts_bank_b1'ts_hournv_vts_bank_a-'ts_hournv_vts_bank_b6'ts_minutenv_vts_bank_a,'ts_minutenv_vts_bank_b5'ts_monthnv_vts_bank_a)'ts_monthnv_vts_bank_b2'ts_secondnv_vts_bank_a+'ts_secondnv_vts_bank_b4'ts_yearnv_vts_bank_a*'ts_yearnv_vts_bank_b3 %võcÖ%-…_//tunnel_ecn_copy_offload_disable_supportednv_sw_offload_cap0x0.220x0.1BOOLWhen TRUE, tunnel_ecn_copy_offload_disable in NV_SW_OFFFLOAD_CONFIG is supported.3…G/Svector_calc_disable_supportednv_sw_offload_cap0x0.210x0.1BOOLWhen TRUE, Vector Calc operations can be disabled using vector_calc_disable on NV_SW_OFFLOAD_CONFIGR…G/‚max_outstanding_wqe_supportednv_sw_offload_cap0x0.200x0.1BOOLWhen TRUE, the maximal number of outstanding WQEs for a single Transmit Work Queue can be configured using in NV_SW_OFFLOAD_CONFIG…A/ptp_cyc2realtime_supportednv_sw_offload_cap0x0.190x0.1BOOLWhen TRUE, NV_SW_OFFLOAD_CONFIG. ptp_cyc2realtime is configurable~…3/sr_enable_supportednv_sw_offload_cap0x0.180x0.1BOOLWhen TRUE, NV_SW_OFFLOAD_CONFIG.sr_enable is configurable…5/ tx_psn_win_supportednv_sw_offload_cap0x0.170x0.1BOOLWhen TRUE, NV_SW_OFFLOAD_CONFIG.log_tx_psn_win is configurable. ÄR‚Ä:… ]/Kpci_atomics_enabled_ext_atomics_disablednv_sw_offload_cap0x0.260x0.1BOOLWhen set, NV_HCA_CONF.pci_atomic_mode supports \;PCI_ATOMICS_ENABLED_EXT_ATOMICS_DISABLED mode.L…q/[pci_atomics_enabled_ext_atomics_enabled_serializednv_sw_offload_cap0x0.250x0.1BOOLWhen set, NV_HCA_CONF.pci_atomic_mode supports PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED_SERIALIZED mode.8…]/Gpci_atomics_disabled_ext_atomics_enablednv_sw_offload_cap0x0.240x0.1BOOLWhen set, NV_HCA_CONF.pci_atomic_mode supports PCI_ATOMICS_DISABLED_EXT_ATOMICS_ENABLED mode.n…O/‚Aesw_fdb_ipv4_ttl_modify_supportednv_sw_offload_cap0x0.230x0.1BOOLWhen set to TRUE, the device supports enabling e-switch rules that modify TTL of packets from the uplink to a vport, using ESWITCH_IPV4_TTL_MODIFY_ENABLE. ¡-qóFò¡N…#-3lag_disablenv_packet_pacing0x0.10x0.1BOOLDisable LAG supportQ…'-5packet_pacingnv_packet_pacing0x0.00x0.1BOOLEnable packet pacing)… ;/Kip_over_vxlan_supportednv_sw_offload_cap0x0.310x0.1BOOLWhen set, both ip_over_vxlan_en and ip_over_vxlan_port in NVSW_OFFLOAD_CONFIG are configurable.{… 9/smkey_by_name_supportednv_sw_offload_cap0x0.300x0.1BOOLWhen TRUE, NV_HCA_CONF mkey_by_name is configurable8… [/Ipci_atomics_enabled_ext_atomics_enablednv_sw_offload_cap0x0.280x0.1BOOLWhen set, NV_HCA_CONF.pci_atomic_mode supports \;PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED mode.O… q/apci_atomics_enabled_ext_atomics_enabled_nocoherentnv_sw_offload_cap0x0.270x0.1BOOLWhen set, NV_HCA_CONF.pci_atomic_mode supports \;PCI_ATOMICS_ENABLED_EXT_ATOMICS_ENABLED_NONCOHERENT mode. ]·Ý /[z£ÍõIt˜Æð&CbŒ]‡µØ.I!mkey_by_name_reserve_supportednv_hca_cap¢*?#mkey_by_name_reserve_modenv_hca_conf%)/max_total_msixnv_global_pci_capá+5/max_total_msix_validnv_global_pci_capÔ%)/max_vfs_per_pfnv_global_pci_capÖ+5/max_vfs_per_pf_validnv_global_pci_capÕ%'memic_atomicnv_memic_confk(;%memic_atomic_endiannessnv_memic_capp);'memic_atomic_endiannessnv_memic_confl'9%memic_atomic_supportednv_memic_capo"-'memic_size_limitnv_memic_confj097min_allowed_fw_versionnv_forbidden_versionsg*=%min_dcr_cnak_buffer_sizenv_ib_dc_cap#/%min_dcr_lifo_sizenv_ib_dc_cap-C%min_log_dcr_hash_table_sizenv_ib_dc_cap )7)min_time_between_cnpsnv_roce_cc_ecnL5I/minimal_vsec_gw_expel_durationnv_host_sync_conf+minutesnv_file_id_mlnx™/minutesnv_file_id_vendor¤$%1mkey_by_namenv_sw_offload_conff-9/mkey_by_name_supportednv_sw_offload_capŒ")+mlnx_nvconf_enfile_public_key')5mlnx_nvconf_enfile_public_key_40964  å ‚…-+ƒper_tlv_prioritynv_file_id_mlnx0x0.300x0.1BOOLWhen TRUE, the priority of each individual TLV in this file will be kept when writing them to the device. When FALSE, the priority of all TLVs will be the same as the priority of this NVCONFIG.P…1+‚'keep_same_prioritynv_file_id_mlnx0x0.290x0.1BOOLWhen TRUE, installation of the file will not erase existing TLVs that are at the same priority unless they are specified in the current file.‚…-+ƒ9disable_overridenv_file_id_mlnx0x0.280x0.1BOOLWhen TRUE, if any existing TLV will be deleted or updated by this file, the whole upload process shall fail and no TLV shall be updated. Can only be TRUE erase_lower_priority is FLASE and keep_same_priority is TRUE P‚Ö‰¡PN…+9secondsnv_file_id_mlnx0xC.80x0.8BINARYseconds - 2 packed BCDd…+‚eyearnv_file_id_mlnx0x8.160x0.16BINARYyear - 4 packed BCD. Note: If year is zero, FW may copy the signature time to this TLV before copying it to flash, so the NVCONFIG component will have a date&time property.J…+5monthnv_file_id_mlnx0x8.80x0.8BINARYmonth - 2 packed BCDF…+1daynv_file_id_mlnx0x8.00x0.8BINARYday - 2 packed BCD`…%+Ofile_versionnv_file_id_mlnx0x4.00x4.0UNSIGNED32bit version number of the file.‚z…5+„werase_lower_prioritynv_file_id_mlnx0x0.310x0.1BOOLWhen set, installation of the file will erase all NVCONFIG parameters that are at lower priority. If the file priority is MLNX, installation of the file will not copy any TLVs from the current NVDAT partition. If the file priority is VENDOR_NVCONF, the installation of the file will only copy MLNX level TLVs. a®\?ia‚…-/ƒper_tlv_prioritynv_file_id_vendor0x0.300x0.1BOOLWhen TRUE, the priority of each individual TLV in this file will be kept when writing them to the device. When FALSE, the priority of all TLVs will be the same as the priority of this NVCONFIG.R…1/‚'keep_same_prioritynv_file_id_vendor0x0.290x0.1BOOLWhen TRUE, installation of the file will not erase existing TLVs that are at the same priority unless they are specified in the current file.‚…-/ƒ9disable_overridenv_file_id_vendor0x0.280x0.1BOOLWhen TRUE, if any existing TLV will be deleted or updated by this file, the whole upload process shall fail and no TLV shall be updated. Can only be TRUE erase_lower_priority is FLASE and keep_same_priority is TRUEO…+?hournv_file_id_mlnx0xC.240x0.8BINARYhour - 2 packed BCD (UTC)O…+9minutesnv_file_id_mlnx0xC.160x0.8BINARYminutes - 2 packed BCD C€Ð–CP…#/9secondsnv_file_id_vendor0xC.80x0.8BINARYseconds - 2 packed BCDg…"/‚gyearnv_file_id_vendor0x8.160x0.16BINARYyear - 4 packed BCD. Note: If year is zero, FW may copy the signature time to this TLV before copying it to flash , so the NVCONFIG component will have a date&time property.L…!/5monthnv_file_id_vendor0x8.80x0.8BINARYmonth - 2 packed BCDH… /1daynv_file_id_vendor0x8.00x0.8BINARYday - 2 packed BCDb…%/Ofile_versionnv_file_id_vendor0x4.00x4.0UNSIGNED32bit version number of the file.‚|…5/„werase_lower_prioritynv_file_id_vendor0x0.310x0.1BOOLWhen set, installation of the file will erase all NVCONFIG parameters that are at lower priority. If the file priority is MLNX, installation of the file will not copy any TLVs from the current NVDAT partition. If the file priority is VENDOR_NVCONF, the installation of the file will only copy MLNX level TLVs. %dd{’©À×î3Jax­ÆÙù.RqަÅáú(AXwލ½Óä/GPIO_WAKE1_NUMBER /GPIO_WAKE2_ENABLE/GPIO_WAKE2_NUMBER/GPIO_WAKE3_ENABLE/GPIO_WAKE3_NUMBER/GPIO_WAKE4_ENABLE /GPIO_WAKE4_NUMBER/GPIO_WAKE5_ENABLE&/GPIO_WAKE5_NUMBER%/GPIO_WAKE6_ENABLE,/GPIO_WAKE6_NUMBER+/GPIO_WAKE7_ENABLE2/GPIO_WAKE7_NUMBER1=HAIRPIN_DATA_BUFFER_LOCKà3HAIRPIN_LOG_WQE_NUMÝ'HIDE_PORT2_PF·CHOST_CHAINING_CACHE_DISABLEr?HOST_CHAINING_DESCRIPTORSs1HOST_CHAINING_MODEq#KHOST_CHAINING_TOTAL_BUFFER_SIZEt?HOST_DISABLE_PORT_COUNTER5;HOST_DISABLE_PORT_OWNER41HOST_DISABLE_RSHIM7?HOST_DISABLE_TRACER_OWNER69HOST_PRIV_FLASH_ACCESS3HOST_PRIV_FW_UPDATE+HOST_PRIV_LEVEL83HOST_PRIV_NIC_RESET3HOST_PRIV_NV_GLOBAL/HOST_PRIV_NV_HOST?HOST_PRIV_NV_INTERNAL_CPU/HOST_PRIV_NV_PORT5HOST_PRIV_PCC_UPDATE+HOST_PRIV_RSHIM4-IBM_AS_NOTIFY_EN#IBM_CAPI_EN9IBM_TUNNELED_ATOMIC_EN 6¬X‰$6j…()3Qbus1_speed_maxnv_global_pci_cap_30x0.80x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4‚a…'!!ƒc5e user_cc_ennv_prog_cc0x0.310x0.1BOOLWhen set to TRUE, loading user programmed CC image is enabled. When FALSE, such image cannot be loaded. If an image already exists when this configuration is changed, the image is ignored. Valid only if ROCE_CC_LEGACY_DCQCN is FALSE.\;USER_PROGRAMMABLE_CC($nv_global_roce_cc_conf.legacy_cc_dcqcn==0)K…&!%‚+image_banknv_fpga_data0x0.300x0.2UNSIGNEDSelect which FPGA Image to load. \;0x0: FACTORY_IMAGE - Factory-default Image\;0x1: USER_IMAGE_1 - User configured Image #1\;Other - Reserved\;Q…%/?hournv_file_id_vendor0xC.240x0.8BINARYhour - 2 packed BCD (UTC)Q…$/9minutesnv_file_id_vendor0xC.160x0.8BINARYminutes - 2 packed BCD ­Û€rk….)3o{bus0_width_maxnv_global_pci_cap_30x0.280x0.3ENUMMaximal supported PCI bus width for restriction\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4i…-%3_bus0_aspm_ennv_global_pci_cap_30x0.270x0.1BOOLWhen TRUE, PCI bus ASPM may be restricted‚ …,)3‚bus0_speed_maxnv_global_pci_cap_30x0.240x0.3ENUMMaximal supported PCI speed width for restriction\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4X…+-35bus1_restrict_ennv_global_pci_cap_30x0.150x0.1BOOLSee bus0_restrict_enN…*)35{bus1_width_maxnv_global_pci_cap_30x0.120x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4P…)%3-bus1_aspm_ennv_global_pci_cap_30x0.110x0.1BOOLSee bus0_aspm_en ¯/Ü ¯X…3-35bus3_restrict_ennv_global_pci_cap_30x4.150x0.1BOOLSee bus0_restrict_enN…2)35{bus3_width_maxnv_global_pci_cap_30x4.120x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4P…1%3-bus3_aspm_ennv_global_pci_cap_30x4.110x0.1BOOLSee bus0_aspm_enj…0)3Qbus3_speed_maxnv_global_pci_cap_30x4.80x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4_…/-3‚Abus0_restrict_ennv_global_pci_cap_30x0.310x0.1BOOLWhen TRUE, PCI bus width, speed and ASPM can be restricted according to PCI_BUS_RESTRICT_WIDTH, PCI_BUS_RESTRICT_SPEED, PCI_BUS_RESTRICT_ASPM respectively P¾ì‘£PP…9%3-bus5_aspm_ennv_global_pci_cap_30x8.110x0.1BOOLSee bus0_aspm_enj…8)3Qbus5_speed_maxnv_global_pci_cap_30x8.80x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4X…7-35bus2_restrict_ennv_global_pci_cap_30x4.310x0.1BOOLSee bus0_restrict_enN…6)35{bus2_width_maxnv_global_pci_cap_30x4.280x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4P…5%3-bus2_aspm_ennv_global_pci_cap_30x4.270x0.1BOOLSee bus0_aspm_enk…4)3Qbus2_speed_maxnv_global_pci_cap_30x4.240x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4 d.Óä‘¿dX…?-35bus4_restrict_ennv_global_pci_cap_30x8.310x0.1BOOLSee bus0_restrict_enN…>)35{bus4_width_maxnv_global_pci_cap_30x8.280x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4P…=%3-bus4_aspm_ennv_global_pci_cap_30x8.270x0.1BOOLSee bus0_aspm_enk…<)3Qbus4_speed_maxnv_global_pci_cap_30x8.240x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4X…;-35bus5_restrict_ennv_global_pci_cap_30x8.150x0.1BOOLSee bus0_restrict_enN…:)35{bus5_width_maxnv_global_pci_cap_30x8.120x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4 ;;fˆ¥Çñ$N„¬Ø4b‘¾à*/3client_identifiernv_rom_ib_dhcp_confè!')cnp_802p_prionv_roce_cc_ecnM)cnp_dscpnv_roce_cc_ecnO!')cnp_prio_modenv_roce_cc_ecnN)9'continuous_link_tuningnv_power_confð2M%continuous_link_tuning_supportednv_power_capû)+5cpld_cfg_enablenv_global_pci_conf_45C5cpld_shift_reg_chain_lengthnv_global_pci_conf_4'+1cqe_compressionnv_sw_offload_confd+/7creation_time_daynv_forbidden_versionsa,17creation_time_hournv_forbidden_versionsf.57creation_time_minutenv_forbidden_versionse-37creation_time_monthnv_forbidden_versionsb.57creation_time_secondnv_forbidden_versionsd,17creation_time_yearnv_forbidden_versionsc!')crypto_policynv_crypto_confù#+cs_token_enfile_public_key P¿í’£PP…E%3-bus6_aspm_ennv_global_pci_cap_30xC.270x0.1BOOLSee bus0_aspm_enk…D)3Qbus6_speed_maxnv_global_pci_cap_30xC.240x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4X…C-35bus7_restrict_ennv_global_pci_cap_30xC.150x0.1BOOLSee bus0_restrict_enN…B)35{bus7_width_maxnv_global_pci_cap_30xC.120x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4P…A%3-bus7_aspm_ennv_global_pci_cap_30xC.110x0.1BOOLSee bus0_aspm_enj…@)3Qbus7_speed_maxnv_global_pci_cap_30xC.80x0.3ENUMSee bus0_speed_max\;0x0: PCI_GEN_1\;0x1: PCI_GEN_2\;0x2: PCI_GEN_3\;0x3: PCI_GEN_4\;0x4: PCI_GEN_5PCI_GEN_1=0x0,PCI_GEN_2=0x1,PCI_GEN_3=0x2,PCI_GEN_4=0x3,PCI_GEN_5=0x4 J.ÓJN…I5!c3sA np_rtt_response_dscpnv_pcc_int0x0.160x0.6UNSIGNEDDefines how DSCP is used in RTT response.\;PCC_INT_NP_RTT_DSCP($nv_pcc_int_cap.np_rtt_response_dscp_supported==1)np_rtt_response_dscp_validƒ3…H3!ƒq5q pcc_handle_resourcenv_pcc_int0x0.120x0.3ENUMDefines PCC handling core utilization\;0x0: DEVICE_DEFAULT\;0x1: DISABLED - no allocated cores, PCC disabled\;0x2: LOW - low core utilization\;0x3: MEDIUM - medium core utilization\;0x4: HIGH - high core utilization\;other values are reservedDEVICE_DEFAULT=0x0,DISABLED=0x1,LOW=0x2,MEDIUM=0x3,HIGH=0x4PCC_HANDLE_CORE_UTIL($nv_pcc_int_cap.pcc_handle_resource_supported==1)X…G-35bus6_restrict_ennv_global_pci_cap_30xC.310x0.1BOOLSee bus0_restrict_enN…F)35{bus6_width_maxnv_global_pci_cap_30xC.280x0.3ENUMSee bus0_width_max\;0x0: PCI_X1\;0x1: PCI_X2\;0x2: PCI_X4\;0x3: PCI_X8\;0x4: PCI_X16PCI_X1=0x0,PCI_X2=0x1,PCI_X4=0x2,PCI_X8=0x3,PCI_X16=0x4 Lܰ„@þˆRäª~N ÜžtL&Y %  nv_ib_dc_cap‘NIC0IB DC CAP(X ' !nv_ib_dc_confNIC1IB DC CONF&OROM ISCSI CONNECT TO FIRST TARGET“'QROM ISCSI CONNECT TO SECOND TARGETš)ROM ISCSI DHCP’ CROM ISCSI FIRST TARGET ADDR”#IROM ISCSI FIRST TARGET CHAP ID˜$KROM ISCSI FIRST TARGET CHAP PWD™ Structure Specification v2.8.6.asn"\;0x0: E_NONE - default config\;0x1: OS - O/S making cfg changes in the absences of any other Mgmt Util (command interface)\;0x2: E_VENDOR_SPEC - e.g. Vendor"s Option ROM, NPAR, O/S Cfg Utils (FW writes this TLV when a TLV is written from mlxconfig, that is when NVDA write for any TLV is coming from the ICMD gateway without a UEFI or flexboot "writer-ID").\;0x3: E_HP_OTHER - (when an extern-DCi-mgmt parameter with value e-None is arriving from the BMC ASN.1 API)\;0x4: E_VC_CLP - Driver or F/W detects HPE Classic C-Class SM-CLP\;0x5: E_HP_CNU - Driver or F/W detects HPE"s Converged Network Utility (when an extern-DCi-mgmt parameter with value is arriving from the BMC ASN.1 API)\;0x6: E_HP_ONEVIEW - If manage-via-DCi value equals to HPE-OneView(6) in BaseDev-Cfg-Now is coming from the BMC ASN.1 API\;0x7: E_UEFI_HII - UEFI Option ROM executingE_NONE=0x0,OS=0x1,E_VENDOR_SPEC=0x2,E_HP_OTHER=0x3,E_VC_CLP=0x4,E_HP_CNU=0x5,E_HP_ONEVIEW=0x6,E_UEFI_HII=0x7 ËA…þrË#† -aocsd_ennv_rom_ocsd_ocbb0x0.310x0.1BOOLEnable HP on-chip temperature monitoring (OCSD) and Active Health Systems support via FW (OCBB) reporting.†7w7 keynv_ls_nv_public_key_20x0.240x100.0BYTESSecond half of 4096 bit public-key (bytes 256 to 511)LC_NV_PUB_KEY_256_511†7q3 keynv_ls_nv_public_key_10x0.240x100.0BYTESfirst half of 4096 bit public-key (bytes 0 to 255)LC_NV_PUB_KEY_0_2558†%7K1 keypair_uuidnv_ls_nv_public_key_00x10.240x10.0BYTESUUID of this key.\;The UUID is created by the sign server when it generates a new RSA key-pair.LC_NV_PUB_KEY_UUID;†)7Q/ public_key_expnv_ls_nv_public_key_00xC.00x4.0UNSIGNEDThe public key exponent.\;In most cases, the standard exponent (65537) will be used (per RFC4871).LC_NV_PUB_KEY_EXP 7Ž2ÖzÙ7†&+'Efw_rev_subminornv_vts_bank_a0x8.00x0.16UNSIGNEDThe MVTS command use this parameter to keep the user defined version timestamp for FW bank A†%%'Gfw_rev_majornv_vts_bank_a0x4.160x0.16UNSIGNEDThe MVTS command use this parameter to keep the user defined version timestamp for FW bank A.Y†$'37boot_option_3nv_ecpu_boot_option0xC.00x4.0UNSIGNEDAll bits are reservedY†#'37boot_option_2nv_ecpu_boot_option0x8.00x4.0UNSIGNEDAll bits are reservedY†"'37boot_option_1nv_ecpu_boot_option0x4.00x4.0UNSIGNEDAll bits are reserved‚n†!'3„_boot_option_0nv_ecpu_boot_option0x0.00x4.0UNSIGNEDBit 0: PXE boot on port[0]\;Bit 1: PXE boot on port[1]\;Bit 2: PXE boot on port[2] \;Bit 3: PXE boot on port[3]\;Bit 4: PXE boot on OOB port\;Bit 5: PXE boot on RBT loopback\;Bit 6: Load pre-installed OS\;Bit 7: Load pre-installed grub image\;Bit 8: Remain in UEFI console\;Other bits are reserved «_ ³[¤L«†.%'Gfw_rev_majornv_vts_bank_b0x4.160x0.16UNSIGNEDThe MVTS command use this parameter to keep the user defined version timestamp for FW bank A.U†-'Gts_hournv_vts_bank_a0x10.240x0.8BINARYTimestamp hour - 2 packed BCDY†,'Kts_minutenv_vts_bank_a0x10.160x0.8BINARYTimestamp minute - 2 packed BCDX†+'Kts_secondnv_vts_bank_a0x10.80x0.8BINARYTimestamp second - 2 packed BCDU†*'Gts_yearnv_vts_bank_a0xC.160x0.16BINARYTimestamp year - 4 packed BCDU†)'Its_monthnv_vts_bank_a0xC.80x0.8BINARYTimestamp month - 2 packed BCDQ†('Ets_daynv_vts_bank_a0xC.00x0.8BINARYTimestamp day - 2 packed BCD†'%'Gfw_rev_minornv_vts_bank_a0x8.160x0.16UNSIGNEDThe MVTS command use this parameter to keep the user defined version timestamp for FW bank A. ª^½i¹^ªU†6'Gts_hournv_vts_bank_b0x10.240x0.8BINARYTimestamp hour - 2 packed BCDY†5'Kts_minutenv_vts_bank_b0x10.160x0.8BINARYTimestamp minute - 2 packed BCDX†4'Kts_secondnv_vts_bank_b0x10.80x0.8BINARYTimestamp second - 2 packed BCDU†3'Gts_yearnv_vts_bank_b0xC.160x0.16BINARYTimestamp year - 4 packed BCDU†2'Its_monthnv_vts_bank_b0xC.80x0.8BINARYTimestamp month - 2 packed BCDQ†1'Ets_daynv_vts_bank_b0xC.00x0.8BINARYTimestamp day - 2 packed BCD†0%'Gfw_rev_minornv_vts_bank_b0x8.160x0.16UNSIGNEDThe MVTS command use this parameter to keep the user defined version timestamp for FW bank A.†/+'Efw_rev_subminornv_vts_bank_b0x8.00x0.16UNSIGNEDThe MVTS command use this parameter to keep the user defined version timestamp for FW bank A %-n%„E†9?!„%;‚S roce_cc_shaper_coalescingnv_roce_cc0x0.240x0.3ENUMSelect CC algorithm shaper coalescing for ROCE\;0x0: DEVICE_DEFAULT\;0x1: DEST_IP - shaper is selected according to dest IP\;0x2: SOURCE_QP - shaper is selected according to source QP\;0x3: _5_TUPLE - shaper is selected according to 5-tuples\;other values are reservedDEVICE_DEFAULT=0x0,DEST_IP=0x1,SOURCE_QP=0x2,_5_TUPLE=0x3ROCE_CC_SHAPER_COALESCE($nv_pcc_int_cap.roce_cc_shaper_coalese_dest_ip==1) || ($nv_pcc_int_cap.roce_cc_shaper_coalese_source_qp==1) || ($nv_pcc_int_cap.roce_cc_shaper_coalese_5_tuple==1);†81!=// roce_cc_enable_prinv_roce_cc0x0.00x0.8UNSIGNEDEach bit in this mask indicates if the RoCE should be enabled on the n-th IEEE priority.ROCE_CC_PRIO_MASKignore_dependencyO†7/-W)/ default_link_typenv_vpi_link_type0x0.20x0.2ENUMSelect the link type (Ethernet or Infiniband) for the port\;0x1: IB - Infiniband\;0x2: ETH - EthernetIB=0x1,ETH=0x2LINK_TYPEignore_dependency þ>þ# Om‡¡ºÏæü0St•»ã 2Z~žÀàUEFI_LOGSÞ-UEFI_LOG_VERBOSEÝ7UEFI_LOG_MIN_SEVERITYÜ#UEFI_HII_EN³=UNKNOWN_UPLINK_MAC_FLOOD|5UPT_EMULATION_ENABLEö5USER_PROGRAMMABLE_CC§3VECTOR_CALC_DISABLEj+VF_LOG_BAR_SIZE¼/VF_MIGRATION_MODEu-VF_NODNIC_ENABLE©'VF_VPD_ENABLE¥ CVIRTIO_BLK_EMULATION_ENABLE)"GVIRTIO_BLK_EMULATION_NUM_MSIX. CVIRTIO_BLK_EMULATION_NUM_PF+ CVIRTIO_BLK_EMULATION_NUM_VF*%MVIRTIO_BLK_EMULATION_NUM_VF_MSIX/'QVIRTIO_BLK_EMULATION_PF_PCI_LAYOUT(&OVIRTIO_BLK_EMULATION_SUBSYSTEM_ID-'QVIRTIO_BLK_EMULATION_VF_PCI_LAYOUT''QVIRTIO_BLK_EMU_SUBSYSTEM_VENDOR_ID,#IVIRTIO_EMULATION_HOTPLUG_TRANSAVIRTIO_FS_EMULATION_ENABLEV!EVIRTIO_FS_EMULATION_NUM_MSIX[AVIRTIO_FS_EMULATION_NUM_PFXAVIRTIO_FS_EMULATION_NUM_VFW ’Ù -T€¦ÌøGp™ÂöEº’^–Õ';!management_pf_supportednv_pci_cap'#management_pfnv_pci_conf /+Alog_sched_burstnv_performance_tuning_confâ#+)log_sf_bar_sizenv_pf_pci_conf‘&)1log_tx_psn_winnv_sw_offload_conft+31log_vf_uar_bar_sizenv_global_pci_conf¼%5#log_vl15_buffer_sizenv_qos_confq%3%loopback_disable_mcnv_mpfs_confz+A#loopback_disable_supportednv_mpfs_cap%3%loopback_disable_ucnv_mpfs_conf{(-1lro_log_timeout0nv_sw_offload_confp(-1lro_log_timeout1nv_sw_offload_confq(-1lro_log_timeout2nv_sw_offload_confr(-1lro_log_timeout3nv_sw_offload_confs35?lun_busy_retry_countnv_rom_iscsi_general_confð"#1mac_addressfile_mac_addr_list +;+mac_assignment_for_lanenv_module_split\!mac_enumnv_rom_iniD7G5max_acc_outstanding_read_bytenv_global_pci_conf_2å>[/max_acc_outstanding_read_byte_supportednv_global_pci_capÈ*=%max_dcr_cnak_buffer_sizenv_ib_dc_cap °ãÏ4†=));)/ clamp_tgt_ratenv_roce_cc_ecn0x0.310x0.1BOOLIf set, whenever a CNP is processed, the target rate is updated to be the current rate.CLAMP_TGT_RATEignore_dependency‚†<G)‚7G/ clamp_tgt_rate_after_time_incnv_roce_cc_ecn0x0.300x0.1BOOLWhen receiving a CNP, the target rate should be updated if the transmission rate was increased due to the timer, and not only due to the byte counterCLAMP_TGT_RATE_AFTER_TIME_INCignore_dependencyI†;/!+/U roce_cc_algorithmnv_roce_cc0x0.310x0.1ENUMSelect RDMA over Converged Ethernet (RoCE) algorithm\;0x0: ECN\;0x1: QCNECN=0x0,QCN=0x1ROCE_CC_ALGORITHM($nv_roce_cc_qcn.rpg_time_reset > 0)‚L†:;!‚KO7u ib_cc_shaper_coalescingnv_roce_cc0x0.280x0.3ENUMSelect CC algorithm shaper coalescing for IB\;0x0: DEVICE_DEFAULT\;0x2: REMOTE_LID - shaper is selected according to remote lid (IB)\;other values are reservedDEVICE_DEFAULT=0x0,REMOTE_LID=0x2IB_CC_SHAPER_COALESCE($nv_pcc_int_cap.ib_cc_shaper_coalese_remote_lid==1) œP»œ‚†A%)ƒ %/ rpg_max_ratenv_roce_cc_ecn0x10.00x4.0UNSIGNEDThe maximum rate, in Mbits per second, at which an RP can transmit. Once this limit is reached, the RP rate limited is released and the flow is not rate limited any more (0=Full Port Speed).RPG_MAX_RATEignore_dependencyP†@')q'/ rpg_thresholdnv_roce_cc_ecn0xC.00x0.5UNSIGNEDThe number of times rpByteStage or rpTimeStage can count before the RP rate control state machine advances states.RPG_THRESHOLDignore_dependency=†?))E)/ rpg_byte_resetnv_roce_cc_ecn0x8.00x0.15UNSIGNEDTransmitted data between rate increases if no CNPs are received. Given in Bytes (0=DISABLED)RPG_BYTE_RESETignore_dependency,†>))#)/ rpg_time_resetnv_roce_cc_ecn0x4.00x0.17UNSIGNEDTime between rate increases if no CNPs are received. Given in microseconds.RPG_TIME_RESETignore_dependency uEƒcuj†E+)‚+/  rpg_min_dec_facnv_roce_cc_ecn0x20.00x0.8UNSIGNEDThe minimum factor by which the current transmit rate can be changed when processing a CNP. Value is given as a percentage (1-100).RPG_MIN_DEC_FACignore_dependency1100‚†D)ƒ#/ rpg_gdnv_roce_cc_ecn0x1C.00x0.4UNSIGNEDIf a CNP is received, the flow rate is reduced at the beginning of the next rate_reduce_monitor_period interval to (1-Alpha/Gd)*CurrentRate. rpg_gd is given as log2(Gd), where Gd may only be powers of 2.RPG_GDignore_dependency>†C%)M%/ rpg_hai_ratenv_roce_cc_ecn0x18.00x0.17UNSIGNEDThe rate, in megabits per second, used to increase rpTargetRate in the RPR_HYPER_INCREASE state.RPG_HAI_RATEignore_dependency7†B#)C#/ rpg_ai_ratenv_roce_cc_ecn0x14.00x0.17UNSIGNEDThe rate, in megabits per second, used to increase rpTargetRate in the RPR_ACTIVE_INCREASE.RPG_AI_RATEignore_dependency [[Œ½î4cЧÖû7`‹¿é$Id‰¯Ð03;uefi_debug_log_pagenv_rom_uefi_debug_levelÓ03;uefi_debug_log_poolnv_rom_uefi_debug_levelÒ03;uefi_debug_log_undinv_rom_uefi_debug_levelØ"1!uefi_fmp_over_ctrlnv_rom_iniB"1!uefi_hii_over_ctrlnv_rom_iniC./;uefi_log_severitynv_rom_uefi_debug_levelÜ&;uefi_logsnv_rom_uefi_debug_levelÞ%!uefi_logs_ennv_rom_cap`./;uefi_logs_verbosenv_rom_uefi_debug_levelÝ$5!uefi_proto_over_ctrlnv_rom_capZ#3!uefi_undi_config_ennv_rom_cap]!undi_ennv_rom_iniK(//undi_network_waitnv_rom_boot_conf2²*=%unknown_uplink_mac_floodnv_mpfs_conf|3Q#unknown_uplink_mac_flood_supportednv_mpfs_cap€))7upt_emu_enablenv_emulation_upt_confö1urinv_rom_debug_level½)!uri_boot_retrynv_rom_iniW$5!uri_boot_retry_delaynv_rom_iniV!!user_cc_ennv_prog_cc§$'1valid_entriesfile_device_unique;%AvalueNV_ROM_ROOT_CA_FINGERPRINT´ 7valuenv_rom_dhcp_vendor_idó/Uvaluenv_rom_iscsi_connect_to_first_targetþ'Ô'UŠ®Û0l ÕO’ÓE))9public_key_expfile_public_key_4096_a#f0A-roce_over_ip_next_protocolnv_roce_1_5_conf–o'%rtt_resp_dscpnv_roce_confc()7signature_uuidfile_signature_4096_aT##1sriov_validnv_global_pci_conf²Õ(5)system_rtt_supportednv_pcc_int_cap×í7K1tunnel_ecn_copy_offload_disablenv_sw_offload_confn/1;uefi_debug_log_netnv_rom_uefi_debug_level×(0Wvaluenv_rom_iscsi_connect_to_second_targetY4G/vector_calc_disable_supportednv_sw_offload_cap„m<AEvirtio_blk_emu_num_vf_msixnv_emulation_virtio_blk_conf/Þ>EEvirtio_blk_emu_vf_pci_layoutnv_emulation_virtio_blk_conf'u<AEvirtio_net_emu_num_vf_msixnv_emulation_virtio_net_conf!Ë()5wake1_locationnv_global_pci_conf_4 (ajÆ(†I#)#/  dce_tcp_rttnv_roce_cc_ecn0x30.00x0.17UNSIGNEDThe time between updates of the alpha value, in microseconds.DCE_TCP_RTTignore_dependency1ƒ †H)…/  dce_tcp_gnv_roce_cc_ecn0x2C.00x0.10UNSIGNEDUsed to update the congestion estimator (alpha) once every dce_tcp_rtt microseconds, according to the equation:\;Alpha = (cnp_received * dceTcpG) + (1 - dceTcpG) * alpha .\;dceTcpG is divided by 2^10.\;cnp_received is set to one if a CNP was received for this flow during period since the previous update and the current updateDCE_TCP_Gignore_dependency1s†G=)‚=/ rate_to_set_on_first_cnpnv_roce_cc_ecn0x28.00x0.17UNSIGNEDThe rate that is set for the flow when a rate limiter is allocated to it upon first CNP received, in Mbps (=Full Port Speed).RATE_TO_SET_ON_FIRST_CNPignore_dependency†F%)%/ rpg_min_ratenv_roce_cc_ecn0x24.00x0.17UNSIGNEDThe minimum value, in megabits per second, for rate to limit.RPG_MIN_RATEignore_dependency ¦áúE¦†M')'/ cnp_802p_prionv_roce_cc_ecn0x40.00x0.3UNSIGNEDThe 802.1p priority value of the generated CNP for this portCNP_802P_PRIOignore_dependency1†L7)7/ min_time_between_cnpsnv_roce_cc_ecn0x3C.00x0.17UNSIGNEDMinimum time between sending CNPs from the port, in microseconds.MIN_TIME_BETWEEN_CNPSignore_dependencyc†K3){3/ initial_alpha_valuenv_roce_cc_ecn0x38.00x0.10UNSIGNEDThe initial value of alpha to use when receiving the first CNP for a flow. Expressed in a fixed point fraction of 2^10.INITIAL_ALPHA_VALUEignore_dependency‚†JA)‚MA/  rate_reduce_monitor_periodnv_roce_cc_ecn0x34.00x0.17UNSIGNEDThe minimum time between 2 consecutive rate reductions for a single flow. Rate reduction will occur only if a CNP is received during the relevant time interval.RATE_REDUCE_MONITOR_PERIODignore_dependency1 §*–_§4†R')urpg_thresholdnv_roce_cc_qcn0xC.00x0.5UNSIGNEDThe number of times rpByteStage or rpTimeStage can count before the RP rate control state machine advances states.\;#†Q))Orpg_byte_resetnv_roce_cc_qcn0x8.00x0.15UNSIGNEDTransmitted data between rate increases if no CNPs are received. Given in Bytes (0 = DISABLED).\; †P))!rpg_time_resetnv_roce_cc_qcn0x4.00x0.17UNSIGNEDTime between rate increases if no CNPs are received. Given in u-seconds.\;†O)/ cnp_dscpnv_roce_cc_ecn0x40.80x0.6UNSIGNEDThe DiffServ Code Point of the generated CNP for this port.CNP_DSCPignore_dependencyR†N')‚/ cnp_prio_modenv_roce_cc_ecn0x40.30x0.1BOOLIf TRUE, CNP packets for this port contain priority from a received request. If FALSE, CNP responses use value set by CNP_802P_PRIO.CNP_RES_PRIO_MODE #¨¨¾×è+FXpŽŸ½Ûû-JYixˆ—¨¿Ðï (Li„Ÿ¿ß-MAX_ACC_OUT_READå3MAX_PACKET_LIFETIME %MEMIC_ATOMICk9MEMIC_ATOMIC_ENDIANESSl)MEMIC_BAR_SIZEi-MEMIC_SIZE_LIMITj7MIN_TIME_BETWEEN_CNPSL%MKEY_BY_NAMEf1MKEY_BY_NAME_RANGE?MODULE_MAX_POWER_OVERRIDE[%MODULE_SPLIT\=MPFS_MC_LOOPBACK_DISABLEz=MPFS_UC_LOOPBACK_DISABLE{AMULTI_PCI_RESOURCE_SHARINGÞ1MULTI_PORT_VHCA_EN 5NETWORK_PORTS_NUMBERê;NON_PREFETCHABLE_PF_BAR¤NUM_OF_PF´!NUM_OF_PFCpNUM_OF_TCo!NUM_OF_VFS³NUM_OF_VLn#NUM_PF_MSIX½/NUM_PF_MSIX_VALID­#NUM_VF_MSIX¾?NVME_EMULATION_CLASS_CODE=NVME_EMULATION_DEVICE_ID7NVME_EMULATION_ENABLE#INVME_EMULATION_MAX_QUEUE_DEPTH ;NVME_EMULATION_NUM_MSIX 7NVME_EMULATION_NUM_PF7NVME_EMULATION_NUM_VFANVME_EMULATION_NUM_VF_MSIX ANVME_EMULATION_REVISION_ID CNVME_EMULATION_SUBSYSTEM_ID ¸hŸ‚ †V)ƒ+rpg_gdnv_roce_cc_qcn0x1C.00x0.4UNSIGNEDWhen a CNP is received, the flow rate is reduced at the beginning of the next rate_reduce_monitor_period interval to (1-Alpha/Gd)*CurrentRate. rpg_gd is given as log2(Gd), where Gd may only be powers of 2.\;†U%)Irpg_hai_ratenv_roce_cc_qcn0x18.00x0.17UNSIGNEDThe rate, in Mbits per second, used to increase rpTargetRate in the RPR_HYPER_INCREASE state\;†T#)Arpg_ai_ratenv_roce_cc_qcn0x14.00x0.17UNSIGNEDThe rate, in Mbits per second, used to increase rpTargetRate in the RPR_ACTIVE_INCREASE.\;v†S%)‚yrpg_max_ratenv_roce_cc_qcn0x10.00x4.0UNSIGNEDThe maximum rate, in Mbits per second, at which an RP can transmit. Once this limit is reached, the RP rate limited is released and the flow stops being limited (0=Full Port Speed)\; {4´={>†Z%+3%Q lldp_nb_dcbxnv_lldp_nb_conf0x0.270x0.1BOOLEnables DCBX (applicable when LLDP_NB_TX_MODE and LLDP_NB_RX_MODE are in ALL mode).LLDP_NB_DCBX$nv_lldp_nb_cap.lldp_nb_dcbx_en!=0t†Y5+elldp_msg_tx_intervalnv_lldp_nb_conf0x0.00x0.12UNSIGNEDInterval for sending LLDP NB PDUs in seconds}†X%)rpg_min_ratenv_roce_cc_qcn0x24.00x0.17UNSIGNEDThe minimum value, in Mbits per second, for rate to limit.\;H†W+)‚rpg_min_dec_facnv_roce_cc_qcn0x20.00x0.8UNSIGNEDThe minimum factor by which the current transmit rate can be changed when processing a CNP. Value is given as a percentage (1-100).\; nnƒ#†\++ƒ}G+O I lldp_nb_tx_modenv_lldp_nb_conf0x0.300x0.2ENUMSelect which LLDP TLV will be generated by the NIC\;0x0: OFF - NIC internal LLDP client will not send LLDP frames \;0x1: MANDATORY - Transmits only mandatory LLDP BPDU (ChassisID, PortID & TTL)\;0x2: ALL - Transmits optional LLDP BPDU if configuredOFF=0x0,MANDATORY=0x1,ALL=0x2LLDP_NB_TX_MODE$nv_lldp_nb_cap.lldp_nb_tx_cap!=0$nv_lldp_nb_cap.lldp_nb_tx_capƒg†[++…G+O I lldp_nb_rx_modenv_lldp_nb_conf0x0.280x0.2ENUMEnable the internal LLDP client, and define which TLV it will process.\;0x0: OFF - Doesnot listen to incoming LLDP BPDU (incoming LLDP frames will be routed to the host)\;0x1: MANDATORY - Listen to incoming LLDP frames, store only the mandatory LLDP BPDUs (1..3)\;0x2: ALL - Receive and store all incoming LLDP BPDUsOFF=0x0,MANDATORY=0x1,ALL=0x2LLDP_NB_RX_MODE$nv_lldp_nb_cap.lldp_nb_rx_cap!=0$nv_lldp_nb_cap.lldp_nb_rx_cap ˆuJàˆ‚T†`))„Elldp_nb_rx_capnv_lldp_nb_cap0x0.280x0.2ENUM0x0: NA - Reception and storing of LLDP frames is not supported (incoming frames will be forwarded to the host)\;0x1: MANDATORY - The client can only store received mandatory LLDP-TLVs \;0x2: ALL - The client can receive and store incoming LLDP TLVsNA=0x0,MANDATORY=0x1,ALL=0x2g†_+)_lldp_nb_dcbx_ennv_lldp_nb_cap0x0.270x0.1BOOLDCB-X supported\;supported_from_version:1‚'†^9+ƒClldp_nb_tx_buffer_sizenv_lldp_nb_conf0x8.160x0.16UNSIGNEDThe size in bytes of LLPD client must reserve for transmitted TLVs. The buffer size must be big enough to hold all mandatory TLVs (chassisID, PortID & TTL) as well as all optional TLVs that the client needs to send.†]9+lldp_nb_rx_buffer_sizenv_lldp_nb_conf0x8.00x0.16UNSIGNEDThe size in bytes LLPD client must reserve for incoming TLVs ¥¦˜¥o†c'%‚)1/ rtt_resp_dscpnv_roce_conf0x0.00x0.6UNSIGNEDThe DiffServ Code Point of the generated RTT response for this port. If not set, RTT request value will be used. Overrides PCC_INT_NP_RTT_DSCPROCE_RTT_RESP_DSCPignore_dependency‚ †bK)‚}max_num_of_tx_optional_lldp_tlvnv_lldp_nb_cap0x8.00x0.7UNSIGNEDThe maximum number of optional LLDP TLVs that are supported by the firmware. The firmware is searching for LLDP NB TLV to send from type 0x110 to type (0x110 + this field)\;Default: 16‚V†a))ƒk_lldp_nb_tx_capnv_lldp_nb_cap0x0.300x0.2ENUM0x0: NA - LLDP transmission not supported \;0x1: MANDATORY - The LLDP client only support sending the mandatory LLDP NB TLVs (ChassisID, PortID & TTL)\;0x2: ALL - The LLDP client support sending mandatory and optional TLVs \;0x3: reservedNA=0x0,MANDATORY=0x1,ALL=0x2,reserved=0x3 Q“#¶QD†h-+S-/ keep_eth_link_upnv_keep_link_up0x0.00x0.1BOOLWhen set, the NIC keeps the link up as long as the server is not in standby mode (Ethernet only).\;KEEP_ETH_LINK_UPignore_dependency†g%+ %/ dcbx_willingnv_lldp_nb_dcbx0x0.20x0.1BOOLAllow the NIC to accept DCBX configuration from the remote peer.DCBX_WILLINGignore_dependencyj†f#+;/ cee_dcbx_ennv_lldp_nb_dcbx0x0.10x0.1BOOLEnable DCBX in CEE modeDCBX_CEEignore_dependencym†e%+=/ ieee_dcbx_ennv_lldp_nb_dcbx0x0.00x0.1BOOLEnable DCBX in IEEE modeDCBX_IEEEignore_dependency‚i†d1%ƒ+q;/ rtt_resp_dscp_modenv_roce_conf0x0.140x0.2ENUMDefines the method for setting IP.DSCP in RTT response packets\;0x0: DEVICE_DEFAULT\;0x1: FIXED_VALUE - taken from ROCE_RTT_RESP_DSCP\;0x2: RTT_REQUEST - taken from the RTT request\;other values are reservedDEVICE_DEFAULT=0x0,FIXED_VALUE=0x1,RTT_REQUEST=0x2ROCE_RTT_RESP_DSCP_MODEignore_dependency µµéS‰¸éS‡½ùAc‡´Í3Q#exp_rom_virtio_blk_uefi_arm_enablenv_pci_conf5W!exp_rom_virtio_blk_uefi_arm_supportednv_pci_cap$3Q#exp_rom_virtio_blk_uefi_x86_enablenv_pci_conf5W!exp_rom_virtio_blk_uefi_x86_supportednv_pci_cap%.G#exp_rom_virtio_net_pxe_enablenv_pci_conf0M!exp_rom_virtio_net_pxe_supportednv_pci_cap!3Q#exp_rom_virtio_net_uefi_arm_enablenv_pci_conf5W!exp_rom_virtio_net_uefi_arm_supportednv_pci_cap"3Q#exp_rom_virtio_net_uefi_x86_enablenv_pci_conf5W!exp_rom_virtio_net_uefi_x86_supportednv_pci_cap#;a#external_host_page_supplier_ecpf_supportednv_ecpf_cap¨Gy#external_host_page_supplier_external_host_pf_supportednv_ecpf_cap©!%+file_versionnv_file_id_mlnx”#%/file_versionnv_file_id_vendorŸ,%Aflash_accessnv_external_host_priv_conf!flash_ennv_rom_iniF2?3flex_ipv4_over_vxlan_portnv_flex_parser_confŠ 7Ò¬ˆ`: ܶ’e4ÚµŒe*ó¾q77 1 +nv_rom_debug_levelEXP_ROM0 ROM DEBUG LEVELJ A ANV_ROM_ROOT_CA_FINGERPRINT—EXP_ROM0 NV ROM ROOT CA FINGERPRINT3 - 'nv_rom_uefi_conf–EXP_ROM0ROM UEFI CONF5~ / )nv_rom_boot_conf2•EXP_ROM2ROM BOOT CONF29} 7 1nv_external_port_ctrl’NIC0EXTERNAL PORT CTRL%| #  nv_ecpf_capNIC0ECPF CAP'{ % nv_ecpf_confNIC0ECPF CONF#z !  nv_hca_capNIC0HCA CAP%y # nv_hca_confNIC0HCA CONF1x / )nv_virt_guid_addrNIC0 VIRT GUID ADDR/w - 'nv_virt_net_addrNIC0 VIRT NET ADDR+v ) #nv_pf_pci_conf€NIC0PF PCI CONF"u !  nv_wol_capNIC0WOL CAP$t # nv_wol_confNIC0WOL CONF,s +   %nv_link_phy_capNIC0LINK PHY CAP.r -  'nv_link_phy_confNIC0LINK PHY CONF$q #   nv_mpfs_cap—NIC0MPFS CAP&p %  nv_mpfs_conf–NIC0MPFS CONF"o !   nv_qos_cap“NIC0QOS CAP$n #  nv_qos_conf’NIC0 QOS CONF,m +  %nv_keep_link_upNIC3KEEP LINK UP ,K~,h†l;+‚; do_not_clear_port_statsnv_keep_link_up0x0.40x0.1BOOLWhen set, the port statistic counters are not cleared on first host init. When cleared the port statistics are cleared on first host initDO_NOT_CLEAR_PORT_STATS‚b†k;+„; keep_link_up_on_standbynv_keep_link_up0x0.30x0.1BOOLWhen set, the NIC keeps the link up from power-up until the server is turned on, and when the server is in standby\;mode (PCI L2/3 state). \;Note: The link will be kept up only if the server can provide enough power during standby (via PCI rails or AUX power).KEEP_LINK_UP_ON_STANDBYI†j5+o5 keep_link_up_on_bootnv_keep_link_up0x0.20x0.1BOOLWhen set, the NIC keeps the link up as long as the server is not in standby mode and a driver is not initialized.KEEP_LINK_UP_ON_BOOT1†i++S+ keep_ib_link_upnv_keep_link_up0x0.10x0.1BOOLWhen set, the NIC keeps the link up as long as the server is not in standby mode (InfiniBand only).KEEP_IB_LINK_UP ""Hm˜Ìþ$JošÎ%#5bus04_widthnv_global_pci_conf_4‹$!5bus05_aspmnv_global_pci_conf_4„*-5bus05_cfg_enablenv_global_pci_conf_4†3?5bus05_pcie_hierarchy_typenv_global_pci_conf_41;5bus05_pcie_switch_indexnv_global_pci_conf_4‚%#5bus05_speednv_global_pci_conf_4ƒ%#5bus05_widthnv_global_pci_conf_4…$!5bus06_aspmnv_global_pci_conf_4–*-5bus06_cfg_enablenv_global_pci_conf_4˜3?5bus06_pcie_hierarchy_typenv_global_pci_conf_4“1;5bus06_pcie_switch_indexnv_global_pci_conf_4” Ê8Ê‚j†n#ƒ#y/ ? num_of_vlnv_qos_conf0x0.00x0.4ENUMNumber of Infiniband Virtual Lanes for this port\;0x1: _1_VL - VL0 only\;0x2: _2_VLs - VL0, VL1\;0x3: _4_VLs - VL0..VL3\;0x4: _8_VLs - VL0..VL7\;0x5: _15_VLs --VL0, VL14 (VL15 is always present for MADs)_1_VL=0x1,_2_VLs=0x2,_4_VLs=0x3,_8_VLs=0x4,_15_VLs=0x5NUM_OF_VLignore_dependency1$nv_qos_cap.max_num_of_vlD†m?+O? auto_power_save_link_downnv_keep_link_up0x0.50x0.1BOOLWhen set to TRUE, the port will automatically power down when it senses the link is disconnected.AUTO_POWER_SAVE_LINK_DOWN 44^†p!#q!/ ; num_of_pfcnv_qos_conf0x0.80x0.4UNSIGNEDNumber of IEEE priorities that may simultaneously support flow control. \; (See pfc_cap_admin DCBX_PARAM Register)NUM_OF_PFCignore_dependency$nv_qos_cap.max_num_pfcƒf†o#ƒS9/ Q num_of_tcnv_qos_conf0x0.40x0.4ENUMNumber of traffic classes, when DCB-X is enabled, this is the maximum number of TC that can negotiate with the remote peer. \;0x0: _8_TCs\;0x1: _1_TC\;0x2: _2_TCs\;0x3: _3_TCs\;0x4: _4_TCs\;0x5: _5_TCs\;0x6: _6_TCs\;0x7: _7_TCs_8_TCs=0x0,_1_TC=0x1,_2_TCs=0x2,_3_TCs=0x3,_4_TCs=0x4,_5_TCs=0x5,_6_TCs=0x6,_7_TCs=0x7NUM_OF_TCignore_dependency($nv_qos_cap.max_num_of_tc==0)?0:1($nv_qos_cap.max_num_of_tc==0)?7:$nv_qos_cap.max_num_of_tc §Ð§m†s1#kqos_trust_state_ennv_qos_conf0x0.190x0.1BOOLqos_trust_state is enabled when this bit is setƒ5†r+#ƒo +]1 qos_trust_statenv_qos_conf0x0.160x0.3ENUMIdentifies the layer trusted to carry QoS/Flow Control information\;0x0: TRUST_PORT - use transmit port\;0x1: TRUST_PCP - use VLAN.PCP field\;0x2: TRUST_DSCP - use IP.DSCP field\;0x3: TRUST_DSCP_PCP - use VLAN.PCP when IP.DSCP is not presentTRUST_PORT=0x0,TRUST_PCP=0x1,TRUST_DSCP=0x2,TRUST_DSCP_PCP=0x3QOS_TRUST_STATE$nv_qos_cap.qos_trust_state_supported!=0qos_trust_state_en‚,†q5#‚%-[ U log_vl15_buffer_sizenv_qos_conf0x0.120x0.4UNSIGNEDLog (base 2) of the VL15 receive port buffer, given in units of 512B. Value 0x0 indicates device defaults.\;Valid only for Infiniband links.VL15_BUFFER_SIZE$nv_qos_cap.log_max_vl15_buffer_size!=0$nv_qos_cap.log_max_vl15_buffer_size ñÇ@ÁñL†w=!‚log_max_vl15_buffer_sizenv_qos_cap0x0.120x0.4UNSIGNEDMaximum value supported for NV_QOS_CONF.log_vl15_buffer_size. Value 0x0 indicates NV_QOS_CONF.log_vl15_buffer_size is not supported.|†v#!max_num_pfcnv_qos_cap0x0.80x0.4UNSIGNEDMaximum number of priority flow control\;supported_from_version: 1†u'!max_num_of_tcnv_qos_cap0x0.40x0.4UNSIGNEDMaximum number of traffic classes supported by the NIC, where 0 => 8 TC‚5†t'!ƒymax_num_of_vlnv_qos_cap0x0.00x0.4ENUMMaximum number of VLs supported by the HBA.\;0x1: _1_VL - VL0 only\;0x2: _2_VLs - VL0, VL1\;0x3: _4_VLs - VL0..VL3\;0x4: _8_VLs - VL0..VL7\;0x5: _15_VLs -- VL0..VL14 (VL15 is always present for MADs)_1_VL=0x1,_2_VLs=0x2,_4_VLs=0x3,_8_VLs=0x4,_15_VLs=0x5 WIWn†z3%e=a loopback_disable_mcnv_mpfs_conf0x0.50x0.1BOOLWhen TRUE, MC traffic from PFs/Hosts will be sent to uplink and not duplicated to any of the other PFs/HostsMPFS_MC_LOOPBACK_DISABLE$nv_mpfs_cap.loopback_disable_supported!=0ƒK†yA%…G)/ duplicated_mac_action_modenv_mpfs_conf0x0.00x0.4ENUMDefines the forwarding behavior in MPFS for MACs which are duplicated in more than one PF.\;0x0: LAST_CFG - last PF which added the MAC will receive the traffic.\;0x1: LOAD_BALANCE - MPFS will load-balance ipv4 traffic for packets with destination MAC addresses that belong to more than one PF between all PFs that have this MACLAST_CFG=0x0,LOAD_BALANCE=0x1DUP_MAC_ACTIONignore_dependencyd†x?!‚Cqos_trust_state_supportednv_qos_cap0x0.160x0.4UNSIGNEDBitmask indicating which modes are supported for VN_QOS_CONF.qos_trust_state\;bit 0: TRUST_PORT\;bit 1: TRUST_PCP\;bit 2: TRUST_DSCP\;bit 3: TRUST_DSCP_PCP §…§Z†}7%+7k sriov_ib_routing_modenv_mpfs_conf0x0.300x0.1ENUMSelect the IB routing mode for Virtual Functions\;0x0: GID\;0x1: LIDGID=0x0,LID=0x1SRIOV_IB_ROUTING_MODE$nv_mpfs_cap.sriov_ib_routing_mode_supported!=0ƒ†|=%„=q unknown_uplink_mac_floodnv_mpfs_conf0x0.70x0.1BOOLDefines the forwarding behavior in MPFS for packets arriving from the network (uplink) with destination MAC address that does not appear in the MPFS FDB.\;When TRUE, these packets are flooded to all local MPFS\;ports.\;When FALSE, these packets are dropped.UNKNOWN_UPLINK_MAC_FLOOD$nv_mpfs_cap.unknown_uplink_mac_flood_supported!=0c†{3%O=a loopback_disable_ucnv_mpfs_conf0x0.60x0.1BOOLWhen TRUE, UC traffic from PFs/Hosts will be sent to uplink regardless of the destination addressMPFS_UC_LOOPBACK_DISABLE$nv_mpfs_cap.loopback_disable_supported!=0 ×ßBÂF×l‡?#[ib_routing_mode_supportednv_mpfs_cap0x0.310x0.1BOOLWhen set, IB_ROUTING_MODE is supported.y‡K#isriov_ib_routing_mode_supportednv_mpfs_cap0x0.290x0.1BOOLSet when SRIOV_IB_ROUTING_MODE is configurable}‡Q#kunknown_uplink_mac_flood_supportednv_mpfs_cap0x0.280x0.1BOOLWhen set, UNKNOWN_UPLINK_MAC_FLOOD is supported†A#1loopback_disable_supportednv_mpfs_cap0x0.270x0.1BOOLWhen TRUE, MPFS_UC_LOOPBACK_DISABLE and MPFS_MC_LOOPBACK_DISABLE can be configured‚†~+%‚?++_ ib_routing_modenv_mpfs_conf0x0.310x0.1ENUMSelect the routing mode for Infiniband among the PFs (and hosts, if applicable)\;0x0: GID - each PF has a unique GID\;0x1: LID - each PF has a unique LIDGID=0x0,LID=0x1IB_ROUTING_MODE$nv_mpfs_cap.ib_routing_mode_supported!=0 Ø·Ø[‡9-9y phy_rate_mask_overridenv_link_phy_conf0x0.260x0.1BOOLWhen TRUE, the supported link speeds can be customized by PHY_RATE_MASKPHY_RATE_MASK_OVERRIDE($nv_link_phy_cap.phy_rate_mask_override_supported==1)‚E‡/-‚%o phy_auto_neg_modenv_link_phy_conf0x0.240x0.2ENUMControl link Auto Negotiation operation\;0x0: DEVICE_DEFAULT\;0x1: AUTO_NEG_ENABLED\;0x2: AUTO_NEG_DISABLED\;other values are reserved.DEVICE_DEFAULT=0x0,AUTO_NEG_ENABLED=0x1,AUTO_NEG_DISABLED=0x2PHY_AUTO_NEG($nv_link_phy_cap.phy_auto_neg_mode_supported==1) ÷÷„‡--… -m phy_fec_overridenv_link_phy_conf0x0.280x0.3ENUMCustomizes FEC configuration of the port\;0x0: DEVICE_DEFAULT\;0x1: MODE_1 - disabled DME, disabled FEC for 25G/50G/100G\;0x2: MODE_2 - disabled DME, RS FEC for 25G/50G/100G\;0x3: MODE_3 - disabled DME, FC FEC for 25G/50G or RS FEC for 100G\;0x4: MODE_4 - disable non_dme (enable Auto Negotiation)\;Other values are reservedDEVICE_DEFAULT=0x0,MODE_1=0x1,MODE_2=0x2,MODE_3=0x3,MODE_4=0x4PHY_FEC_OVERRIDE($nv_link_phy_cap.phy_fec_override_supported==1) #š#t‡C+_phy_auto_neg_mode_supportednv_link_phy_cap0x0.290x0.1BOOLWhen TRUE, PHY_AUTO_NEG is configurable\;†b‡'-‹Y'g phy_rate_masknv_link_phy_conf0x4.00x4.0UNSIGNEDEnables the supported rates for the link. Each bit represents a rate, set bit indicates the speed may be used, if supported by the device,\;Valid when PHY_RATE_MASK_OVERRIDE is TRUE.\;\;Bit 0 - SGMII_100M\;Bit 1 - 1000BASE-X / SGMII\;Bit 3 - 5GBASE-R\;Bit 4 - XFI / XAUI-1 - 10G\;Bit 5 - XLAUI-4/XLPPI-4 - 40G\;Bit 6 - 25GAUI-1/ 25GBASE-CR / KR\;Bit 7 - 50GAUI-2 / LAUI-2/ 50GBASE-CR2/KR2\;Bit 8 - 50GAUI-1 /50GBASE-CR / KR\;Bit 9 - CAUI-4 / 100GBASE-CR4 / KR4\;Bit 10 - 100GAUI-2 / 100GBASE-CR2 / KR2\;Bit 11 - 100GAUI-1 / 100GBASE-CR / KR\;Bit 12 - 200GAUI-4 / 200GBASE-CR4/KR4\;Bit 13 - 200GAUI-2 / 200GBASE-CR2/KR2\;Bit 15 - 400GAUI-8/ 400GBASE-CR8\;Bit 16 - 400GAUI-4/ 400GBASE-CR4\;Bit 19 - 800GAUI-8/ 800GBASE-CR8\;Bit 31 - SGMII_10M\;PHY_RATE_MASK($nv_link_phy_conf.phy_rate_mask_override==1) †y_’†‚‡ )‚#g) total_sfnv_pf_pci_conf0x0.00x0.16UNSIGNEDThe total number of Sub Function partitions (SFs) that can be sup\;ported, for this PF. \;Valid only when PER_PF_NUM_SF is set to TRUEPF_TOTAL_SF$nv_global_pci_cap.per_pf_num_sf_supported==1pf_total_sf_enI‡ %!‚/en_wol_magicnv_wol_cap0x0.100x0.1BOOLThis bit is set when Wake-On-Lan magic packet is supported for this host and port. Note that WOL support mandates a special circuitry on the NIC.‡ %# %C en_wol_magicnv_wol_conf0x0.100x0.1BOOLEnables server Wake-on-LAN upon reception of WOL magic packet.WOL_MAGIC_EN$nv_wol_cap.en_wol_magic!=0u‡ A+cphy_fec_override_supportednv_link_phy_cap0x0.310x0.1BOOLWhen TRUE, PHY_FEC_OVERRIDE is configurable‡M+sphy_rate_mask_override_supportednv_link_phy_cap0x0.300x0.1BOOLWhen set, PHY_RATE_MASK_OVERRIDE may be set to TRUE 66X|¦Àß!Aa¡Äç!9frc_enfile_public_key_4096_b(##1full_vf_qosnv_global_pci_conf¹)/1full_vf_qos_validnv_global_pci_conf±+fw_enfile_public_key5fw_enfile_public_key_40967 9fw_enfile_public_key_4096_a" 9fw_enfile_public_key_4096_b,%'fw_rev_majornv_vts_bank_a%%'fw_rev_majornv_vts_bank_b.%'fw_rev_minornv_vts_bank_a'%'fw_rev_minornv_vts_bank_b0"+'fw_rev_subminornv_vts_bank_a&"+'fw_rev_subminornv_vts_bank_b/!guid_opsnv_rom_iniR ×bºWêׂ‡+)‚)g) log_sf_bar_sizenv_pf_pci_conf0x0.240x0.8UNSIGNEDLog (base 2) of the BAR size of a single SF, given in KB. Valid only when PF_TOTAL_SF is non-zero and PER_PF_NUM_SF is set to TRUE.PF_SF_BAR_SIZE$nv_global_pci_cap.per_pf_num_sf_supported==1pf_total_sf_enj‡))gpf_total_sf_ennv_pf_pci_conf0x0.230x0.1BOOLWhen FALSE, TOTAL_SF and SF_BAR_SIZE ignored.`‡))Spf_total_vf_ennv_pf_pci_conf0x0.220x0.1BOOLWhen FALSE, PF_NUM_OF_VF is ignored$‡+)O3q pf_device_id_ennv_pf_pci_conf0x0.210x0.1BOOLIf FALSE, PF_DEVICE_ID is ignoredPF_DEVICE_ID_ENABLE$nv_global_pci_cap.per_pf_device_id_supported == 1‡ )3# sd_groupnv_pf_pci_conf0x0.160x0.3UNSIGNEDThe Socket Direct group index of the matching PF.\;Value 0x0 indicates no grouping.PF_SD_GROUP ¡>kö¡ÊžÈû7ZƒµØ(1-priv_level_limitednv_host_priv_cap>+7-priv_level_privilegednv_host_priv_cap=!!/priv_levelnv_host_priv_conf8%!7port_ownernv_external_port_ctrl¬,51prio_tag_required_ennv_sw_offload_confh2C/prio_tag_required_supportednv_sw_offload_capy)-3prog_parse_graphnv_flex_parser_conf‰2A1prog_parse_graph_supportednv_flex_parser_cap‹ -!promiscuous_vlannv_rom_iniY1 psidfile_applicable_to"#1psid_branchfile_applicable_to(-1ptp_cyc2realtimenv_sw_offload_confk1A/ptp_cyc2realtime_supportednv_sw_offload_cap‚")+public_key_expfile_public_key')5public_key_expfile_public_key_40968  ÷ ‚d‡)‚i%K) total_vfnv_pf_pci_conf0x8.00x0.16UNSIGNEDThe total number of Virtual Functions (VFs) that will be exposed, for this PF. Value 0x0 indicates SR-IOV will be disabled.\;Valid only when PF_NUM_OF_VF_VALID is set to TRUEPF_NUM_OF_VF($nv_global_pci_cap.per_pf_total_vf_supported == 1 && $nv_global_pci_conf.per_pf_total_vf == 1)pf_total_vf_enk‡#)‚G) num_vf_msixnv_pf_pci_conf0x4.120x0.12UNSIGNEDNumber of MSI-X vectors assigned for each VF associated with the PF.\;Value 0x0 indicates device defaults\;valid only when PER_PF_NUM_VF_MSIX is set to TRUE.PF_NUM_VF_MSIX‚‡#)‚)o num_pf_msixnv_pf_pci_conf0x4.00x0.12UNSIGNEDNumber of MSI-X vectors assigned for this PF\;Value 0x0 indicates device defaults.\;Valid only when PF_NUM_PF_MSIX_VALID is set to TRUEPF_NUM_PF_MSIX$nv_global_pci_cap.per_pf_num_msix_supported == 1 SFªœþS'‡+/Wvirtual_guid_ennv_virt_guid_addr0x0.310x0.1BOOLWhen set, the PF will use the address defined in the "virtual_node_guid" instead of the original MAC.‡-/;erase_on_powerupnv_virt_guid_addr0x0.290x0.1BOOLWhen this bit is set, the GUID is ignored by firmware and the TLV is erased on powerup.h‡#-avirtual_macnv_virt_net_addr0x4.240x8.0BYTESAn alternate MAC for this PCI PF (48bits).‡)-Kvirtual_mac_ennv_virt_net_addr0x0.310x0.1BOOLWhen set, the PF will use the address defined in the "virtual_mac" instead of the original MAC.‡--9erase_on_powerupnv_virt_net_addr0x0.290x0.1BOOLWhen this bit is set, the MAC is ignored by firmware and the TLV is erased on powerup.6‡%)_%q+ pf_device_idnv_pf_pci_conf0x8.160x0.16UNSIGNEDThe PCIe device ID used by this function.PF_DEVICE_ID$nv_global_pci_cap.per_pf_device_id_supported == 1pf_device_id_en ®‡,®‚z‡?#‚w 1g mkey_by_name_reserve_modenv_hca_conf0x0.240x0.2ENUMControl support for reserved Mkey range for Mkeys created by name. See MKEY_BY_NAME.\;0x0: DEVICE_DEFAULT\;0x1: MKEY_RANGE_DISABLE\;0x2: MKEY_RANGE_ENABLE\;other values are reservedDEVICE_DEFAULT=0x0,MKEY_RANGE_DISABLE=0x1,MKEY_RANGE_ENABLE=0x2MKEY_BY_NAME_RANGE$nv_hca_cap.mkey_by_name_reserve_supported!=0‚W‡##ƒm#U silent_modenv_hca_conf0x0.230x0.1BOOLWhen TRUE, the networking function is disconnected from the network. It cannot transmit/received traffic directly to/from the network. Any communication must be done within the function, or by directing the traffic through another function.SILENT_MODE$nv_hca_cap.silent_mode_supported!=0v‡//ovirtual_node_guidnv_virt_guid_addr0x4.240x8.0BYTESAn alternate NODE GUID for this PCI PF (64 Bits). SÙS0‡ 1#}1] multi_port_vhca_ennv_hca_conf0x0.310x0.1BOOLWhen set, the PF reports the multi-port-vhca capability.MULTI_PORT_VHCA_EN$nv_hca_cap.multi_port_vhca_supported!=0ƒN‡?#„mE+g pci_data_wr_ordering_modenv_hca_conf0x0.280x0.2ENUMControls the PCI ordering attribute for write accesses from the device\;0x0: per_mkey - Each MKey may be configured differently for Relaxed Ordering\;0x1: force_relax - All MKeys will be set to use Relaxed Ordering at creation time\;show this setting only when NV_PCI_CONF. advanced_pci_settings is true.per_mkey=0x0,force_relax=0x1PCI_WR_ORDERING$nv_hca_cap.pci_data_wr_ordering_supported!=0‚#‡#‚%s%Q roce_ctrlnv_hca_conf0x0.260x0.2ENUMControl support for RDMA over Converged Ethernet (RoCE)\;0x0: DEVICE_DEFAULT\;0x1: ROCE_DISABLE\;0x2: ROCE_ENABLE\;other values are reservedDEVICE_DEFAULT=0x0,ROCE_DISABLE=0x1,ROCE_ENABLE=0x2ROCE_CONTROL$nv_hca_cap.roce_ctrl_supported!=0 zŠü‹þz‡%?!multi_port_vhca_supportednv_hca_cap0x0.310x0.1BOOLWhen set NV_HCA_CONF.multi_port_vhca_en bit is configurable ‡$I! pci_data_wr_ordering_supportednv_hca_cap0x0.280x0.1BOOLWhen set, NV_HCA_CONF pci_data_wr_ordering_mode is configurablen‡#3!mroce_ctrl_supportednv_hca_cap0x0.270x0.1BOOLwhen TRUE, NV_HCA_CONF.roce_ctrl is configurable ‡"I! mkey_by_name_reserve_supportednv_hca_cap0x0.260x0.1BOOLWhen TRUE, NV_HCA_CONF.mkey_by_name_reserve_mode is configurables‡!7!ssilent_mode_supportednv_hca_cap0x0.250x0.1BOOLWhen TRUE, NV_HCA_CONF.silent_mode is configurable. ƒc‡&#%‚G5] ‚) esw_managernv_ecpf_conf0x0.00x0.2ENUMThis parameter is deprecated for INTERNAL_CPU_ESWITCH_MANAGER\;\;Select who owns the E-switch.\;0x0: EXTERNAL_HOST_PF\;0x1: ECPF\;EXTERNAL_HOST_PF=0x0,ECPF=0x1ECPF_ESWITCH_MANAGER($nv_ecpf_cap.esw_manager_ecpf_supported==1) || ($nv_ecpf_cap.esw_manager_external_host_pf_supported==1)($esw_manager==0 && $nv_ecpf_cap.esw_manager_external_host_pf_supported==1) || ($esw_manager==1 && $nv_ecpf_cap.esw_manager_ecpf_supported==1) ›2›‡(a#external_host_page_supplier_ecpf_supportednv_ecpf_cap0x0.280x0.1BOOLSet when the ECPF option is supported for ECPF_PAGE_SUPPLIER…J‡''%„WG1‚ ‚q page_suppliernv_ecpf_conf0x0.80x0.2ENUMThis parameter is deprecated for INTERNAL_CPU_PAGE_SUPPLIER\;\;Select who supplies ICM pages of the external host functions to device. \;0x0: EXTERNAL_HOST_PF - External host supplies required ICM pages to handle it.\;0x1: ECPF - ECPF supplies required ICM pages to handle the external host.\;EXTERNAL_HOST_PF=0x0,ECPF=0x1ECPF_PAGE_SUPPLIER($nv_ecpf_cap.external_host_page_supplier_ecpf_supported==1) || ($nv_ecpf_cap.external_host_page_supplier_external_host_pf_supported==1)($page_supplier==0 && $nv_ecpf_cap.external_host_page_supplier_external_host_pf_supported==1) || ($page_supplier==1 && $nv_ecpf_cap.external_host_page_supplier_ecpf_supported==1) ¯QÈ'|¯I‡-/7M// allow_rd_countersnv_external_port_ctrl0x0.10x0.1BOOLIf set, indicates the host function which is allowed to read counters of external physical port.ALLOW_RD_COUNTERSignore_dependency'‡,!7%!/ port_ownernv_external_port_ctrl0x0.00x0.1BOOLIf set, indicates the function of the host's own the external physical port.PORT_OWNERignore_dependency‡+Y#!esw_manager_external_host_pf_supportednv_ecpf_cap0x0.310x0.1BOOLSet when the EXTERNAL_HOST_PF option is supported for ECPF_ESWITCH_MANAGER‡*A# esw_manager_ecpf_supportednv_ecpf_cap0x0.300x0.1BOOLSet when the ECPF option is supported for ECPF_ESWITCH_MANAGER+‡)y#external_host_page_supplier_external_host_pf_supportednv_ecpf_cap0x0.290x0.1BOOLSet when the EXTERNAL_HOST_PF option is supported for ECPF_PAGE_SUPPLIER +Rs–·Øþ&Mu³Ðâ%MVIRTIO_FS_EMULATION_SUBSYSTEM_IDZ&OVIRTIO_FS_EMU_SUBSYSTEM_VENDOR_IDY CVIRTIO_NET_EMULATION_ENABLE"GVIRTIO_NET_EMULATION_NUM_MSIX CVIRTIO_NET_EMULATION_NUM_PF CVIRTIO_NET_EMULATION_NUM_VF%MVIRTIO_NET_EMULATION_NUM_VF_MSIX!'QVIRTIO_NET_EMULATION_PF_PCI_LAYOUT&OVIRTIO_NET_EMULATION_SUBSYSTEM_ID'QVIRTIO_NET_EMULATION_VF_PCI_LAYOUT'QVIRTIO_NET_EMU_SUBSYSTEM_VENDOR_ID-VL15_BUFFER_SIZEq;VSEC_EXPULSION_DURATION%WOL_MAGIC_ENŠ=ZERO_TOUCH_TUNING_ENABLEã Ô= ÔH‡0+7‚force_link_downnv_external_port_ctrl0x0.40x0.1BOOLWhen TRUE, link down requests will cause the link to shut down regardless of other considerations. Valid only if PORT_OWNER is set.‡/'7'/ tracer_enablenv_external_port_ctrl0x0.30x0.1BOOLIf set, indicates the function may own the Device Tracer.TRACER_ENABLEignore_dependencyƒ?‡.+7…c+ reneg_on_changenv_external_port_ctrl0x0.20x0.1BOOLWhen cleared, a link-down/up sequence from the driver (PAOS) triggers re-negotiation of the link speed and parameters with the remote peer. When set, a link down/up sequence will trigger re-negotiation only if any link parameters were changed by a driver since last link negotiation. \;This parameter is applicable when the port_owner parameter is set for this PFRENEG_ON_CHANGE )eeœ¸Óï4Lcy§ºÉÞú /ResŠŸ²ÄÒáó&Fc{Ÿ³Îè9BOOT_DBG_LOG_NDRV_PORTÂ7BOOT_DBG_LOG_NEIGHBOR»9BOOT_DBG_LOG_NETDEVICEÃ7BOOT_DBG_LOG_PXE_UNDIÌ9BOOT_DBG_LOG_ROMPREFIX·3BOOT_DBG_LOG_STATUSË-BOOT_DBG_LOG_STP¶-BOOT_DBG_LOG_TCPÆ1BOOT_DBG_LOG_TCPIPÇ/BOOT_DBG_LOG_TFTPÄ-BOOT_DBG_LOG_UDPÅ-BOOT_DBG_LOG_URI½1BOOT_INTERRUPT_DISã'BOOT_LACP_DISäBOOT_PKEYç+BOOT_RETRY_CNT1â9BOOT_UNDI_NETWORK_WAIT²BOOT_VLANà%BOOT_VLAN_ENå)CLAMP_TGT_RATE="GCLAMP_TGT_RATE_AFTER_TIME_INC<'CNP_802P_PRIOM CNP_DSCPO/CNP_RES_PRIO_MODEN+CQE_COMPRESSIONd'CRYPTO_POLICYù%DBR_LESS_SQPõ DCBX_CEEfDCBX_IEEEe%DCBX_WILLINGgDCE_TCP_GH#DCE_TCP_RTTI'DCR_LIFO_SIZE ADISABLE_SLOT_POWER_LIMITERó;DO_NOT_CLEAR_PORT_STATSl1DPA_AUTHENTICATIONž#IDPU_RESET_NOTIFICATION_ENABLED )DUP_MAC_ACTIONy7DYNAMIC_VF_MSIX_TABLE5ECPF_ESWITCH_MANAGER¦1ECPF_PAGE_SUPPLIER§ #De#j‡5%1 %M debug_log_ennv_rom_debug_level0x0.00x0.1BOOLBOOT_DBG_LOG$nv_rom_cap.flexboot_debug_en==1q‡4AgvalueNV_ROM_ROOT_CA_FINGERPRINT0x0.240x20.0STRINGTrusted private root certificate fingerprints ^‡3- #E hii_ennv_rom_uefi_conf0x0.310x0.1BOOLUEFI_HII_EN$nv_rom_cap.hii_config_en!=0[‡2//e9/ undi_network_waitnv_rom_boot_conf20x0.160x0.8UNSIGNEDThe number of seconds Flexboot waits after issuing a UNDI open commands until it starts using the interface.BOOT_UNDI_NETWORK_WAITignore_dependencyƒ8‡1#/„igA boot_ip_vernv_rom_boot_conf20x0.80x0.2ENUMSelect which IP protocol version will be used by Flexboot. If both are configured, Flexboot will try to boot with the 2nd protocol only if DHCP parameters for the first protocol are not available, or if booting with the first protocol has failed.\;0x0: IPv4\;0x1: IPv6\;0x2: IPv4_IPv6\;0x3: IPv6_IPv4\;IPv4=0x0,IPv6=0x1,IPv4_IPv6=0x2,IPv6_IPv4=0x3IP_VER$nv_rom_cap.boot_ip_ver!=0 :Kf}“¢ºÕð "1[r–½å,Po“¸Ü*Wnv_rom_iscsi_connect_to_second_targetš%nv_roce_confk7nv_rom_banner_timeout„/nv_rom_boot_conf1…/nv_rom_boot_conf2~!nv_rom_cap?1nv_rom_debug_level7nv_rom_dhcp_vendor_id‰7nv_rom_flexboot_debug‚3nv_rom_ib_boot_conf†3nv_rom_ib_dhcp_conf‡!nv_rom_ini>)Unv_rom_iscsi_connect_to_first_target“/nv_rom_iscsi_dhcp’#Inv_rom_iscsi_first_target_addr”&Onv_rom_iscsi_first_target_chap_id˜'Qnv_rom_iscsi_first_target_chap_pwd™"Gnv_rom_iscsi_first_target_lun–#Inv_rom_iscsi_first_target_name—#Inv_rom_iscsi_first_target_port•?nv_rom_iscsi_general_confˆ#Inv_rom_iscsi_initiator_chap_id$Knv_rom_iscsi_initiator_chap_pwd‘#Inv_rom_iscsi_initiator_gatewayŒ#Inv_rom_iscsi_initiator_ip_addrŠ ™Ü­™‚‡815a/ dhcpnv_rom_debug_level0x4.40x0.2ENUMDebug level for Flexboot's DHCP\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_DHCP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚+‡71Wa9 romprefixnv_rom_debug_level0x4.20x0.2ENUMDebug level for Flexboot's driver bootstrap code\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_ROMPREFIX($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚ ‡61Ya- stpnv_rom_debug_level0x4.00x0.2ENUMDebug level for Flexboot's Spanning Tree Protocol\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_STP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) //Xu›Åô6a‚ªÛ()7signature_uuidfile_signature_4096_b##silent_modenv_hca_confœ%7!silent_mode_supportednv_hca_cap¡)9'slot_power_limiter_disnv_power_confó.E%slot_power_limiter_supportednv_power_capþ!+sm_disablenv_host_sm_confÿ!1sr_enablenv_sw_offload_confl*3/sr_enable_supportednv_sw_offload_cap 1sriov_ennv_global_pci_confº'7%sriov_ib_routing_modenv_mpfs_conf}0K#sriov_ib_routing_mode_supportednv_mpfs_cap$'/sriov_supportnv_global_pci_capÜ pç¸p‚D‡;1‚ a7 neighbornv_rom_debug_level0x4.100x0.2ENUMDebug level for Flexboot's Neighbor table (which is filled by ARP and NDP)\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NEIGHBOR($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚+‡:1oa- arpnv_rom_debug_level0x4.80x0.2ENUMDebug level for Flexboot's Address resolution Protocol (ARP)\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_ARP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚‡919a1 dhcpv6nv_rom_debug_level0x4.60x0.2ENUMDebug level for Flexboot's DHCPv6\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_DHCP6($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) {Ѳ{‚3‡>1wa- drivernv_rom_debug_level0x4.160x0.2ENUMDebug level for Flexboot"s driver (init, teardown, poll CQ etc) \;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_DRV($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚‡=1Ma- urinv_rom_debug_level0x4.140x0.2ENUMDebug level for Flexboot"s URI parsing code\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_URI($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚+‡<1ma- ndpnv_rom_debug_level0x4.120x0.2ENUMDebug level for Flexboot"s IPv6 Neighbor Discovery Protocol\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NDP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) @Á@‚K‡A'1‚a7 nodnic_devicenv_rom_debug_level0x4.220x0.2ENUMDebug level for Flexboot"s NODNIC Driver tear-down and bring ups operations.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NDRV_DEV($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚.‡@!1[a7 nodnic_cmdnv_rom_debug_level0x4.200x0.2ENUMDebug level for Flexboot"s NODNIC Driver interface\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NDRV_CMD($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚;‡?1‚a/ nodnicnv_rom_debug_level0x4.180x0.2ENUMDebug level for Flexboot"s NODNIC driver (init, teardown, poll CQ etc) \;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NDRV($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) ƒÅŸƒ‚‡D1Ca/ tftpnv_rom_debug_level0x4.280x0.2ENUMDebug level for Flexboot"s TFTP stack.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_TFTP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚"‡C1Ca9 netdevicenv_rom_debug_level0x4.260x0.2ENUMNetwork Device Link status and traffic\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NETDEVICE($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚7‡B#1ia9 nodnic_portnv_rom_debug_level0x4.240x0.2ENUMDebug level for Flexboot"s NODNIC Driver port management.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_NDRV_PORT($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) ddŽ»é<f»å6ižÌ÷%T~©Ô)Ivaluenv_rom_iscsi_first_target_addrÿ,Ovaluenv_rom_iscsi_first_target_chap_id-Qvaluenv_rom_iscsi_first_target_chap_pwd(Gvaluenv_rom_iscsi_first_target_lun)Ivaluenv_rom_iscsi_first_target_name)Ivaluenv_rom_iscsi_first_target_port)Ivaluenv_rom_iscsi_initiator_chap_idú*Kvaluenv_rom_iscsi_initiator_chap_pwdû)Ivaluenv_rom_iscsi_initiator_gatewayö)Ivaluenv_rom_iscsi_initiator_ip_addrô&Cvaluenv_rom_iscsi_initiator_nameù2[valuenv_rom_iscsi_initiator_primary_dns_addr÷4_valuenv_rom_iscsi_initiator_secondary_dns_addrø-Qvaluenv_rom_iscsi_initiator_subnet_maskõ*Kvaluenv_rom_iscsi_second_target_addr-Qvaluenv_rom_iscsi_second_target_chap_id .Svaluenv_rom_iscsi_second_target_chap_pwd )Ivaluenv_rom_iscsi_second_target_lun*Kvaluenv_rom_iscsi_second_target_name *Kvaluenv_rom_iscsi_second_target_port+31vector_calc_disablenv_sw_offload_confj °çϰ‚‡G1Ga1 tcpipnv_rom_debug_level0x8.20x0.2ENUMDebug level for Flexboot"s TCP/IP stack.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_TCPIP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚‡F1Aa- tcpnv_rom_debug_level0x8.00x0.2ENUMDebug level for Flexboot"s TCP stack.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_TCP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚‡E1Aa- udpnv_rom_debug_level0x4.300x0.2ENUMDebug level for Flexboot"s UDP stack.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_UDP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) ‹çÌ‹‚=‡J+1caE driver_settingsnv_rom_debug_level0x8.80x0.2ENUMDebug level for non volatile configuration management.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_DRIVER_SETTINGS($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚‡I1Ca/ ipv6nv_rom_debug_level0x8.60x0.2ENUMDebug level for Flexboot"s IPv6 stack.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_IPV6($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚‡H1Ca+ ipv4nv_rom_debug_level0x8.40x0.2ENUMDebug level for Flexboot"s IPv4 stack.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_IP($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) 66dŒ»ê.b€§Ãæ:a–½Û-C%max_log_dcr_hash_table_sizenv_ib_dc_cap '9%max_log_memic_bar_sizenv_memic_capm.;/max_log_pf_uar_bar_sizenv_global_pci_capÝ.;/max_log_vf_uar_bar_sizenv_global_pci_capÞ%5%max_memic_size_limitnv_memic_capn'!max_num_of_tcnv_qos_capu3K)max_num_of_tx_optional_lldp_tlvnv_lldp_nb_capb'!max_num_of_vlnv_qos_capt&+/max_num_pf_msixnv_global_pci_capß#!max_num_pfcnv_qos_capv"#/max_num_pfsnv_global_pci_cap×%%max_num_portnv_power_capõ43Cmax_num_switch_portnv_emulation_pci_switch_cap&+/max_num_vf_msixnv_global_pci_capà4G/max_outstanding_wqe_supportednv_sw_offload_capƒ&3'max_packet_lifetimenv_ib_dc_conf +max_powernv_module_power[$'/max_total_barnv_global_pci_capâ &×°À&‡N'71boot_to_shellnv_rom_flexboot_debug0x0.310x0.1BOOLWhen this bit is set, Flexboot will boot to ipxe shell instead of the normal boot.l‡M%7‚Opanic_bannernv_rom_flexboot_debug0x0.290x0.2ENUMFlexboot behavior on critical failure \;0x0: PRINT - print error to screen\;0x1: HALT - freeze system\;0x2: OPEN_SHELL - open ipxe shellPRINT=0x0,HALT=0x1,OPEN_SHELL=0x2‚#‡L1Ia7 pxe_undinv_rom_debug_level0x8.120x0.2ENUMDebug level for Flexboot"s UNDI interface\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_PXE_UNDI($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1)‚%‡K'1Ga3 status_updatenv_rom_debug_level0x8.100x0.2ENUMDebug level for status update interface.\;0x0: DISABLE\;0x1: BASIC\;0x2: ADVANCED\;0x3: ALL\;DISABLE=0x0,BASIC=0x1,ADVANCED=0x2,ALL=0x3BOOT_DBG_LOG_STATUS($nv_rom_cap.flexboot_debug_en==1)&&($nv_rom_debug_level.debug_log_en==1) 9À|<ÈŒD±W¡9e _ Ynv_rom_iscsi_initiator_secondary_dns_addr6EXP_ROM0ROM ISCSI INITIATOR SECONDARY DNS ADDRa [ Unv_rom_iscsi_initiator_primary_dns_addr5EXP_ROM0ROM ISCSI INITIATOR PRIMARY DNS ADDRO I Cnv_rom_iscsi_initiator_gateway4EXP_ROM0ROM ISCSI INITIATOR GATEWAYW Q Knv_rom_iscsi_initiator_subnet_mask3EXP_ROM0ROM ISCSI INITIATOR SUBNET MASKO I Cnv_rom_iscsi_initiator_ip_addr2EXP_ROM0ROM ISCSI INITIATOR IP ADDR> 7 1nv_rom_dhcp_vendor_id1EXP_ROM0ROM DHCP VENDOR IDE ? 9nv_rom_iscsi_general_conf0EXP_ROM2 ROM ISCSI GENERAL CONF9 3 -nv_rom_ib_dhcp_conf#EXP_ROM0ROM IB DHCP CONF9 3 -nv_rom_ib_boot_conf"EXP_ROM0ROM IB BOOT CONF5 / )nv_rom_boot_conf1!EXP_ROM1ROM BOOT CONF1= 7 1nv_rom_banner_timeoutEXP_ROM0ROM BANNER TIMEOUTA ; 5nv_rom_uefi_debug_levelEXP_ROM0ROM UEFI DEBUG LEVEL= 7 1nv_rom_flexboot_debugEXP_ROM0ROM FLEXBOOT DEBUG –*Ts–Y‡R3;w3 uefi_debug_log_poolnv_rom_uefi_debug_level0x0.30x0.1BOOLEnable UEFI debug level logs for pool Alloc & Free.\;UEFI_DEBUG_LOG_POOL($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)]‡Q/;/ uefi_debug_log_fsnv_rom_uefi_debug_level0x0.20x0.1BOOLEnable UEFI debug level logs for EFI file system accesses.\;UEFI_DEBUG_LOG_FS($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)R‡P3;i3 uefi_debug_log_loadnv_rom_uefi_debug_level0x0.10x0.1BOOLEnable UEFI debug level logs for load events\;UEFI_DEBUG_LOG_LOAD($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)R‡O3;i3 uefi_debug_log_initnv_rom_uefi_debug_level0x0.00x0.1BOOLEnable UEFI debug level initialization log. \;UEFI_DEBUG_LOG_INIT($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1) ‡#5a‡V‡V5;m5 uefi_debug_log_blkionv_rom_uefi_debug_level0x0.70x0.1BOOLEnable UEFI debug level logs for BlkIo Driver.\;UEFI_DEBUG_LOG_BLKIO($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)P‡U/;m/ uefi_debug_log_bmnv_rom_uefi_debug_level0x0.60x0.1BOOLEnable UEFI debug level logs for Boot Manager.\;UEFI_DEBUG_LOG_BM($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)j‡T;;; uefi_debug_log_dispatchnv_rom_uefi_debug_level0x0.50x0.1BOOLEnable UEFI debug level logs for PEI/DXE/SMM Dis\;patchers.\;UEFI_DEBUG_LOG_DISPATCH($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)Y‡S3;w3 uefi_debug_log_pagenv_rom_uefi_debug_level0x0.40x0.1BOOLEnable UEFI debug level logs for page Alloc & Free.\;UEFI_DEBUG_LOG_PAGE($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1) œ0]‰œi‡Z1;1 uefi_debug_log_gcdnv_rom_uefi_debug_level0x0.110x0.1BOOLEnable UEFI debug level logs for Global Coherency Database changes.\;UEFI_DEBUG_LOG_GCD($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)P‡Y5;]7 uefi_debug_log_eventnv_rom_uefi_debug_level0x0.100x0.1BOOLEnable UEFI debug level logs of Event.\;UEFI_DEBUG_LOG_EVENTS($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)O‡X3;c3 uefi_debug_log_undinv_rom_uefi_debug_level0x0.90x0.1BOOLEnable UEFI debug level logs UNDI Driver.\;UEFI_DEBUG_LOG_UNDI($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)L‡W1;a1 uefi_debug_log_netnv_rom_uefi_debug_level0x0.80x0.1BOOLEnable UEFI debug level logs SNI Driver.\;UEFI_DEBUG_LOG_SNI($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1) ŽŒŽz‡]/;?- uefi_logs_verbosenv_rom_uefi_debug_level0x0.270x0.1BOOLDetailed debug messages that may significantly impact boot\;performance debug messages.\;UEFI_LOG_VERBOSE($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)ƒ‡\/;‚q]7 uefi_log_severitynv_rom_uefi_debug_level0x0.240x0.2ENUMNIC/HBA UEFI expansion ROM\;0x0: ERROR\;0x1: WARNING\;0x2: INFO\;0x3: DEBUG\;Note - Enabling of debug logs for specific modules is possible after setting the severity to DEBUG.\;ERROR=0x0,WARNING=0x1,INFO=0x2,DEBUG=0x3UEFI_LOG_MIN_SEVERITY($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1)l‡[5;5 uefi_debug_log_cachenv_rom_uefi_debug_level0x0.120x0.1BOOLEnable UEFI debug level logs for Memory range cachebility changes.\;UEFI_DEBUG_LOG_CACHE($nv_rom_uefi_debug_level.uefi_logs!=0)&&($nv_rom_cap.uefi_logs_en==1) YüÐYt‡`/C/ boot_vlannv_rom_boot_conf10x0.00x0.12UNSIGNEDVLAN ID for network boot.\;BOOT_VLANignore_dependency‚(‡_;7ƒ;flexboot_banner_timeoutnv_rom_banner_timeout0x0.00x0.4UNSIGNEDNumber of seconds to wait when displaying the timer for the boot menu key-press. If set to 0 the boot menu is disabled. The boot menu is only allowed to write values between 1 and 15. UEFI and mlxconfig may write 0.‚‡^;yQG uefi_logsnv_rom_uefi_debug_level0x0.280x0.4ENUMSelect the output device logs generated by the NIC/HBA\;UEFI expansion ROM.\;0x0: DISABLED\;0x1: STDOUT\;0x2: STDERR\;DISABLED=0x0,STDOUT=0x1,STDERR=0x2UEFI_LOGS($nv_rom_cap.uefi_logs_en==1) @i@‚%‡b-/‚1 + boot_retry_countnv_rom_boot_conf10x0.240x0.3ENUMNumber of retries to attempt in case of boot failure (FlexBoot)\;0x0: NONE\;0x1: _1\;0x2: _2\;0x3: _3\;0x4: _4\;0x5: _5\;0x6: _6\;0x7: UNLIMITED\;NONE=0x0,_1=0x1,_2=0x2,_3=0x3,_4=0x4,_5=0x5,_6=0x6,UNLIMITED=0x7BOOT_RETRY_CNT1…‡a5/‡M5/ legacy_boot_protocolnv_rom_boot_conf10x0.160x0.8ENUMSelect boot protocol for legacy BIOS expansion ROM (Flexboot)\;0x0: NONE - The expansion ROM will not add this PCI PF as a boot target during the POST stage.\;0x1: PXE - The expansion ROM will use PXE boot.\;0x2: ISCSI - The expansion ROM will use iSCSI boot.\;0x4: PXE_WO_FAIL_ISCSI - PXE without fail-over to ISCSI. Supported when legacy_boot_wo_failover_supported==1.\;0x5: ISCSI_WO_FAIL_PXE - ISCSI without fail-over to PXE.Supported when legacy_boot_wo_failover_supported==1.NONE=0x0,PXE=0x1,ISCSI=0x2,PXE_WO_FAIL_ISCSI=0x4,ISCSI_WO_FAIL_PXE=0x5LEGACY_BOOT_PROTOCOLignore_dependency H«ÙYÐH‡g3_/ boot_pkeynv_rom_ib_boot_conf0x0.00x0.16UNSIGNEDInfiniband P_Key to be used by PXE boot\;BOOT_PKEYignore_dependency‡f1/ boot_option_rom_ennv_rom_boot_conf10x0.310x0.1BOOLWhen TRUE, the device is recognized as boot device at POST stage}‡e%/Q%/ boot_vlan_ennv_rom_boot_conf10x0.300x0.1BOOLEnable VLAN mode for network boot.BOOT_VLAN_ENignore_dependencyN‡d/_'G lacp_disnv_rom_boot_conf10x0.290x0.1BOOLDisable IEEE 802.3ad Link Aggregation Control Protocol (LACP) for legacy BIOS expansion ROM (Flexboot).\;BOOT_LACP_DIS$nv_rom_cap.lacp_config_en!=0‚Q‡cG/‚1y boot_legacy_interrupt_disablenv_rom_boot_conf10x0.270x0.1BOOLWhen set to TRUE, legacy interrupts should not be used for receive/transmit indication. Polling should be used instead.\;Supported only if boot_legacy_interrupt_disable_supported =TRUE.BOOT_INTERRUPT_DIS$nv_rom_cap.boot_legacy_interrupt_disable_supported!=0 iwW‡j?9 vlan_ennv_rom_iscsi_general_conf0x0.260x0.1BOOLEnable VLANs for iSCSIƒn‡i)?…{i boot_to_targetnv_rom_iscsi_general_conf0x0.220x0.2ENUMBoot to iSCSI target after connection\;0x0: ENABLED - Boot from target\;0x1: DISABLED - Don"t boot from target (target will be hooked if configured and iscsi_keep_san_dev_en is set)\;0x2: ONE_TIME_DISABLED - Used for installing a new OS on the ISCSI target. Flexboot will not boot from the target once (e.g. DISABLED), and then will automatically change the value to ENABLED.ENABLED=0x0,DISABLED=0x1,ONE_TIME_DISABLED=0x2ƒ‡h/3„client_identifiernv_rom_ib_dhcp_conf0x0.240x0.4ENUMSelect if the expansion ROM should add a Client Identifier to DHCP DISCOVER and REQUEST packets over InfiniBand.\;0x0: ROM_DEFAULT \;0x1: NO_CLIENT_IDENTIFIER\;0x2: SEND_CLIENT_IDENTIFIER\;When set, the UEFI driver modifies the DHCP packet sent by the upper layers.ROM_DEFAULT=0x0,NO_CLIENT_IDENTIFIER=0x1,SEND_CLIENT_IDENTIFIER=0x2 ±uðsÚl±7‡p5?W lun_busy_retry_countnv_rom_iscsi_general_conf0x8.00x0.8UNSIGNEDNumber of connection attempts to make if the iSCSI target is busy. Valid values are between 0 and 60.k‡o?_ vlannv_rom_iscsi_general_conf0x4.00x0.12UNSIGNEDVLAN number. Only valid when vlan_en is 1‡n7?iscsi_keep_san_dev_ennv_rom_iscsi_general_conf0x0.300x0.1BOOLKeep the iSCSI device attached for the OS \;supported_from_version: 2z‡m%?u chap_auth_ennv_rom_iscsi_general_conf0x0.290x0.1BOOLAuthenticate the initiator to the target using CHAP.‡l3?u chap_mutual_auth_ennv_rom_iscsi_general_conf0x0.280x0.1BOOLAuthenticate the target to the initiator using CHAP.‡k/?tcp_timestamps_ennv_rom_iscsi_general_conf0x0.270x0.1BOOLEnable the TCP timestamps option for iSCSI TCP connections. &``u’¦Èá5Vu«ÁÙåû*Gd|•°Çßù/Da~‘¨¾Ôê+IB_ROUTING_MODE~;ICMD_SEM_LOCK_THRESHOLD)ICM_CACHE_MODEß!EIDLE_ICMD_SEM_LOCK_THRESHOLDÿ3INITIAL_ALPHA_VALUEK EINTERNAL_CPU_ESWITCH_MANAGER9INTERNAL_CPU_IB_VPORT0€1INTERNAL_CPU_MODEL} CINTERNAL_CPU_OFFLOAD_ENGINEAINTERNAL_CPU_PAGE_SUPPLIER~1INTERNAL_CPU_RSHIM¡=INT_LOG_MAX_PAYLOAD_SIZEã-IP_OVER_VXLAN_ENe1IP_OVER_VXLAN_PORTo IP_VER±-KEEP_ETH_LINK_UPh+KEEP_IB_LINK_UPi5KEEP_LINK_UP_ON_BOOTj;KEEP_LINK_UP_ON_STANDBYk;LAG_RESOURCE_ALLOCATIONì1LARGE_MTU_TWEAK_64÷3LC_NV_PUB_KEY_0_2557LC_NV_PUB_KEY_256_511/LC_NV_PUB_KEY_EXP1LC_NV_PUB_KEY_UUID5LEGACY_BOOT_PROTOCOLáLINK_TYPE7%LLDP_NB_DCBXZ+LLDP_NB_RX_MODE[+LLDP_NB_TX_MODE\;LOG_DCR_HASH_TABLE_SIZE ;LOG_MAX_OUTSTANDING_WQEv'LOG_MAX_QUEUEô/LOG_TX_PSN_WINDOWt-LRO_LOG_TIMEOUT0p-LRO_LOG_TIMEOUT1q-LRO_LOG_TIMEOUT2r-LRO_LOG_TIMEOUT3s HR`vßH‡vI!valuenv_rom_iscsi_initiator_gateway0x0.240x10.0STRINGIPv4 gateway for the iSCSI initiator in dotted decimal notation (Flexboot)‡uQvaluenv_rom_iscsi_initiator_subnet_mask0x0.240x10.0STRINGiSCSI initiator IPv4 subnet mask in dotted decimal notation (Flexboot) ‡tIvaluenv_rom_iscsi_initiator_ip_addr0x0.240x10.0STRINGiSCSI initiator IPv4 address in dotted decimal notation (Flexboot)X‡s7;valuenv_rom_dhcp_vendor_id0x0.240x100.0STRINGFlexboot DHCP Vendor IDn‡r+?‚[ iscsi_drive_numnv_rom_iscsi_general_conf0x8.160x0.8ENUMThe HDD number for the hooked iSCSI target in legacy BIOS int13 drive table.\;0x80: HDD1\;0x81: HDD2\;0x82: HDD3\;0x83: HDD4HDD1=0x80,HDD2=0x81,HDD3=0x82,HDD4=0x83*‡q1?A link_up_delay_timenv_rom_iscsi_general_conf0x8.80x0.8UNSIGNEDNumber of seconds to wait after the link comes up before sending packets over the network.M2‚†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú€ztnhb\VPJD>82€ˆ8ˆ3}ˆ.{ˆ'yˆ!xˆwˆuˆtˆsˆ pˆoˆl‡{i‡v†††† ††† †& †.!†6"†9%†=&†A'†E*†I+†M,†R.†V/†Z0†\1†`2†c3†h6†l8†n9†p:†s;†w<†z=†}>‡?‡@‡A‡B‡ D‡F‡G‡H‡I‡ J‡%K‡&L‡(M‡-O‡0Q‡5S‡8U‡;V‡>W‡AX‡DZ‡G[‡J]‡N_‡R`‡Va‡Zb‡]c‡`d‡be‡gf‡jg‡p !—«Ìí *LmެÖ'In”µ×ù —7G^q…’¥·ÉØçó)SAFE MODE CONF£ CROM ISCSI FIRST TARGET NAME— CROM ISCSI FIRST TARGET PORT•9ROM ISCSI GENERAL CONFˆ CROM ISCSI INITIATOR CHAP ID!EROM ISCSI INITIATOR CHAP PWD‘ CROM ISCSI INITIATOR GATEWAYŒ CROM ISCSI INITIATOR IP ADDRŠ=ROM ISCSI INITIATOR NAME)UROM ISCSI INITIATOR PRIMARY DNS ADDR+YROM ISCSI INITIATOR SECONDARY DNS ADDRŽ$KROM ISCSI INITIATOR SUBNET MASK‹!EROM ISCSI SECOND TARGET ADDR›$KROM ISCSI SECOND TARGET CHAP IDŸ%MROM ISCSI SECOND TARGET CHAP PWD  CROM ISCSI SECOND TARGET LUN!EROM ISCSI SECOND TARGET NAMEž!EROM ISCSI SECOND TARGET PORTœ'ROM OCSD OCBBa'ROM UEFI CONF5ROM UEFI DEBUG LEVELƒ#SECURE HOST]1SW ACCELERATE CONFQ)SW OFFLOAD CAPA+SW OFFLOAD CONF@ TPT CONF()VIRT GUID ADDRx'VIRT NET ADDRw'VPI LINK TYPEe!VTS BANK Ac!VTS BANK Bd WOL CAPu WOL CONFt ;`»Bº;|‡{Ksvaluenv_rom_iscsi_initiator_chap_pwd0x0.240x10.0STRINGCHAP secret (password) for the initiator (Flexboot)‡zIvaluenv_rom_iscsi_initiator_chap_id0x0.240x80.0STRINGCHAP identifier (user name) for iSCSI initiator (Flexboot)€‚u‡yC„ivaluenv_rom_iscsi_initiator_name0x0.240xe0.0STRINGThis configuration sets the initiator name for iSCSI boot. According to the iSCSI RFC (3270) the name has to be UTF-8 encoded, with total length that does not exceed 223 bytes. It allows international characters, but prohibits the use of invisible characters, such as whitespace characters. (Flexboot)à!‡x_'valuenv_rom_iscsi_initiator_secondary_dns_addr0x0.240x10.0STRINGSecondary IPv4 DNS for iSCSI initiator in dotted decimal notation. (Flexboot)‡w[!valuenv_rom_iscsi_initiator_primary_dns_addr0x0.240x10.0STRINGPrimary IPv4 DNS for iSCSI initiator in dotted decimal notation (Flexboot) ½½â 8d‘»à7b¶ÞQŽÈ$-+vendor_nvconf_enfile_public_key)-5vendor_nvconf_enfile_public_key_40965+-9vendor_nvconf_enfile_public_key_4096_a +-9vendor_nvconf_enfile_public_key_4096_b*,7/vf_bar_size_supportednv_global_pci_capÏ)/1vf_bar_size_validnv_global_pci_conf¬$%1vf_migrationnv_sw_offload_confu-9/vf_migration_supportednv_sw_offload_cap}(-1vf_nodnic_enablenv_global_pci_conf©*3/vf_nodnic_supportednv_global_pci_capÌ-9/vf_qos_control_supportnv_global_pci_capÛ%'1vf_vpd_enablenv_global_pci_conf¥'-/vf_vpd_supportednv_global_pci_capÉ77Evirtio_blk_emu_enablenv_emulation_virtio_blk_conf):?Cvirtio_blk_emu_max_num_pfnv_emulation_virtio_blk_cap4<CCvirtio_blk_emu_max_total_vfnv_emulation_virtio_blk_cap39;Evirtio_blk_emu_num_msixnv_emulation_virtio_blk_conf.77Evirtio_blk_emu_num_pfnv_emulation_virtio_blk_conf+ |³` Ôv$Ò‚/Ö|W Q Knv_rom_iscsi_first_target_chap_pwdGEXP_ROM0ROM ISCSI FIRST TARGET CHAP PWDV O Inv_rom_iscsi_first_target_chap_idEEXP_ROM0€ROM ISCSI FIRST TARGET CHAP IDP I Cnv_rom_iscsi_first_target_nameDEXP_ROM0àROM ISCSI FIRST TARGET NAMEM G Anv_rom_iscsi_first_target_lunCEXP_ROM0ROM ISCSI FIRST TARGET LUNO I Cnv_rom_iscsi_first_target_portBEXP_ROM0ROM ISCSI FIRST TARGET PORTO I Cnv_rom_iscsi_first_target_addrAEXP_ROM0ROM ISCSI FIRST TARGET ADDR[ U Onv_rom_iscsi_connect_to_first_target@EXP_ROM0ROM ISCSI CONNECT TO FIRST TARGET5 / )nv_rom_iscsi_dhcp:EXP_ROM0ROM ISCSI DHCPQ K Env_rom_iscsi_initiator_chap_pwd9EXP_ROM0ROM ISCSI INITIATOR CHAP PWDP I Cnv_rom_iscsi_initiator_chap_id8EXP_ROM0€ROM ISCSI INITIATOR CHAP IDJ C =nv_rom_iscsi_initiator_name7EXP_ROM0àROM ISCSI INITIATOR NAME #rÙyÄ#ˆG7valuenv_rom_iscsi_first_target_lun0x0.240x14.0STRINGISCSI first target boot LUN (Flexboot)\;Decimal integer 1- 18,446,744,073,709,551,6151ˆI_valuenv_rom_iscsi_first_target_port0x0.240x8.0STRINGTCP port for the first iSCSI target (Flexboot)\;Decimal integer in ASCII format up to 5 digits (1-65536).‡I%valuenv_rom_iscsi_first_target_addr0x0.240x10.0STRINGIPv4 address of the first iSCSI target in dotted decimal notation (Flexboot)C‡~Uwvaluenv_rom_iscsi_connect_to_first_target0x0.240x8.0STRINGWhen the string is "Enabled", Flexboot attempta to connect to the first ISCSI target. Other legal value is "Disabled"‡}%/9ipv4_dhcp_ennv_rom_iscsi_dhcp0x0.310x0.1BOOLWhen enabled, Flexboot attempts to discover IPv4 configuration for iSCSI through DHCP. ‡|'/!dhcp_iscsi_ennv_rom_iscsi_dhcp0x0.300x0.1BOOLWhen enabled, Flexboot attempts to discover iSCSI parameters through DHCP. t{ŽÆ+t3ˆKavaluenv_rom_iscsi_second_target_port0x0.240x8.0STRINGTCP port for the second iSCSI target (Flexboot)\;Decimal integer in ASCII format up to 5 digits (1-65536).ˆK'valuenv_rom_iscsi_second_target_addr0x0.240x10.0STRINGIPv4 address of the second iSCSI target in dotted decimal notation (Flexboot)DˆWwvaluenv_rom_iscsi_connect_to_second_target0x0.240x8.0STRINGWhen the string is "Enabled", Flexboot attempts to connect to the first ISCSI target. Other legal value is "Disabled"rˆQYvaluenv_rom_iscsi_first_target_chap_pwd0x0.240x10.0STRINGiSCSI first target password (Flexboot)uˆO_valuenv_rom_iscsi_first_target_chap_id0x0.240x80.0STRINGiSCSI first target username/id (Flexboot)€ˆI}valuenv_rom_iscsi_first_target_name0x0.240xe0.0STRINGFirst iSCSI target name (Flexboot) up to 223 characters.à PHu¤#dÚµþÌáö&@Vm}“¨½ÏáðP)safe_mode_conf£(Snv_rom_iscsi_second_target_chap_pwd 'Qnv_rom_iscsi_second_target_chap_idŸ$Knv_rom_iscsi_second_target_namež#Inv_rom_iscsi_second_target_lun$Knv_rom_iscsi_second_target_portœ$Knv_rom_iscsi_second_target_addr›,[nv_rom_iscsi_initiator_primary_dns_addr._nv_rom_iscsi_initiator_secondary_dns_addrŽ'Qnv_rom_iscsi_initiator_subnet_mask‹-nv_rom_ocsd_ocbba-nv_rom_uefi_conf;nv_rom_uefi_debug_levelƒ)nv_secure_host]7nv_sw_accelerate_confQ/nv_sw_offload_capA1nv_sw_offload_conf@#nv_tpt_conf(/nv_virt_guid_addrx-nv_virt_net_addrw-nv_vpi_link_typee'nv_vts_bank_ac'nv_vts_bank_bd!nv_wol_capu#nv_wol_conft µ Lø¦QöšrLçµ/% -  'nv_host_priv_capNIC0HOST PRIV CAP1$ / )nv_host_priv_confƒNIC0HOST PRIV CONF.# ) )safe_mode_conf‚NIC0SAFE MODE CONF#" !  nv_pci_capNIC0PCI CAP%! # nv_pci_conf€NIC0PCI CONFY S Mnv_rom_iscsi_second_target_chap_pwdWEXP_ROM0ROM ISCSI SECOND TARGET CHAP PWDX Q Knv_rom_iscsi_second_target_chap_idUEXP_ROM0€ROM ISCSI SECOND TARGET CHAP IDR K Env_rom_iscsi_second_target_nameTEXP_ROM0àROM ISCSI SECOND TARGET NAMEO I Cnv_rom_iscsi_second_target_lunSEXP_ROM0ROM ISCSI SECOND TARGET LUNQ K Env_rom_iscsi_second_target_portREXP_ROM0ROM ISCSI SECOND TARGET PORTQ K Env_rom_iscsi_second_target_addrQEXP_ROM0ROM ISCSI SECOND TARGET ADDR] W Qnv_rom_iscsi_connect_to_second_targetPEXP_ROM0ROM ISCSI CONNECT TO SECOND TARGET ‘]Ö\å‘‚Pˆ '#‚U{1_ management_pfnv_pci_conf0x0.100x0.2ENUMControls exposing a management networking PF connected directly to the BMC.\;0x0: DEVICE_DEFAULT\;0x1: MNG_PF_ENABLE\;0x2: MNG_PF_DISABLE\;Other values are reservedDEVICE_DEFAULT=0x0,MNG_PF_ENABLE=0x1,MNG_PF_DISABLE=0x2MANAGEMENT_PF_MODE$nv_pci_cap.management_pf_supported != 0tˆ S[valuenv_rom_iscsi_second_target_chap_pwd0x0.240x10.0STRINGiSCSI second target password (Flexboot)wˆ Qavaluenv_rom_iscsi_second_target_chap_id0x0.240x80.0STRINGiSCSI second target username/id (Flexboot)€ˆ Kvaluenv_rom_iscsi_second_target_name0x0.240xe0.0STRINGSecond iSCSI target name (Flexboot) up to 223 characters.àˆI9valuenv_rom_iscsi_second_target_lun0x0.240x14.0STRINGISCSI second target boot LUN (Flexboot)\;Decimal integer 1- 18,446,744,073,709,551,615 zIszuˆQ#-Qu exp_rom_virtio_net_uefi_arm_enablenv_pci_conf0x0.160x0.1BOOLEnable Expansion ROM option for UEFI for ARM based host for VirtIO-NET functionsEXP_ROM_VIRTIO_NET_UEFI_ARM_ENABLE$nv_pci_cap.exp_rom_virtio_net_uefi_arm_supported==1RˆG#Gk exp_rom_virtio_net_pxe_enablenv_pci_conf0x0.150x0.1BOOLEnable Expansion ROM option for PXE for VirtIO-NET functionsEXP_ROM_VIRTIO_NET_PXE_ENABLE$nv_pci_cap.exp_rom_virtio_net_pxe_supported==1ƒ3ˆ /#ƒ{/a p2p_ordering_modenv_pci_conf0x0.120x0.2ENUMPCI Peer-to-Peer ordering security mode, between read requests completions and writes.\;0x0: DEVICE_DEFAULT\;0x1: SECURE_NONE - no protection/no peer-to-peer\;0x2: SECURE_TRUST - protect untrusted functions\;0x3: SECURE_ALL - protect all functionsDEVICE_DEFAULT=0x0,SECURE_NONE=0x1,SECURE_TRUST=0x2,SECURE_ALL=0x3P2P_ORDERING_MODE$nv_pci_cap.p2p_ordering_mode_supported==1 44]ˆE#!Ei exp_rom_nvme_uefi_arm_enablenv_pci_conf0x0.200x0.1BOOLEnable Expansion ROM option for UEFI for ARM based host for NVMe functionsEXP_ROM_NVME_UEFI_ARM_ENABLE$nv_pci_cap.exp_rom_nvme_uefi_arm_supported==1uˆQ#-Qu exp_rom_virtio_blk_uefi_x86_enablenv_pci_conf0x0.190x0.1BOOLEnable Expansion ROM option for UEFI for x86 based host for VirtIO-BLK functionsEXP_ROM_VIRTIO_BLK_UEFI_x86_ENABLE$nv_pci_cap.exp_rom_virtio_blk_uefi_x86_supported==1uˆQ#-Qu exp_rom_virtio_blk_uefi_arm_enablenv_pci_conf0x0.180x0.1BOOLEnable Expansion ROM option for UEFI for ARM based host for VirtIO-BLK functionsEXP_ROM_VIRTIO_BLK_UEFI_ARM_ENABLE$nv_pci_cap.exp_rom_virtio_blk_uefi_arm_supported==1uˆQ#-Qu exp_rom_virtio_net_uefi_x86_enablenv_pci_conf0x0.170x0.1BOOLEnable Expansion ROM option for UEFI for x86 based host for VirtIO-NET functionsEXP_ROM_VIRTIO_NET_UEFI_x86_ENABLE$nv_pci_cap.exp_rom_virtio_net_uefi_x86_supported==1 í>r¥ÇÞí 8a€£Åà,E!force_eth_subclass_supportednv_pci_cap/#1#force_eth_subclassnv_pci_conf3A3flex_parser_profile_enablenv_flex_parser_confˆ2;7flexboot_banner_timeoutnv_rom_banner_timeoutß!/!flexboot_debug_ennv_rom_capa!fmp_ennv_rom_iniG.57forbidden_fw_versionnv_forbidden_versionsh*+7force_link_downnv_external_port_ctrl°(7'force_pf_rate_limiternv_debug_mode71fpp_ennv_global_pci_conf¸"#/fpp_supportnv_global_pci_capÚ!1fpp_validnv_global_pci_conf°+frc_enfile_public_key 5frc_enfile_public_key_40963 ŒÑ:ˆ;#{;_ exp_rom_uefi_x86_enablenv_pci_conf0x0.250x0.1BOOLEnable Expansion ROM option for UEFI for x86 based hostEXP_ROM_UEFI_x86_ENABLE$nv_pci_cap.exp_rom_uefi_x86_supported==1:ˆ;#{;_ exp_rom_uefi_arm_enablenv_pci_conf0x0.240x0.1BOOLEnable Expansion ROM option for UEFI for ARM based hostEXP_ROM_UEFI_ARM_ENABLE$nv_pci_cap.exp_rom_uefi_arm_supported==1yˆ+#‚ 7] dynamic_vf_msixnv_pci_conf0x0.230x0.1BOOLWhen set to TRUE, the device will support allocation of MSI-Xs to VFs by the PF, after SR-IOV is enabled (while the VF is down).DYNAMIC_VF_MSIX_TABLE$nv_pci_cap.dynamic_vf_msix_supported!=0ˆ##i#K ats_enablednv_pci_conf0x0.220x0.1BOOLWhen set to TRUE, the device will support ATS.ATS_ENABLED$nv_pci_cap.ats_supported != 0]ˆE#!Ei exp_rom_nvme_uefi_x86_enablenv_pci_conf0x0.210x0.1BOOLEnable Expansion ROM option for UEFI for x86 based host for NVMe functionsEXP_ROM_NVME_UEFI_x86_ENABLE$nv_pci_cap.exp_rom_nvme_uefi_x86_supported==1 Fep™F‚Oˆ1#o9‚ force_eth_subclassnv_pci_conf0x0.290x0.1BOOLForce the PCI function identifier with Ethernet subclass (00h). Supported only when ADVANCED_PCI_SETTINGS is set.FORCE_ETH_PCI_SUBCLASS($nv_pci_cap.force_eth_subclass_supported!=0)&&($nv_pci_conf.advanced_pci_settings!=0)&&($nv_pci_cap.advanced_pci_settings_supported!=0)Sˆ-#I-] ibm_as_notify_ennv_pci_conf0x0.280x0.1BOOLEnable IBM's AS Notify feature. Supported only when NV_PCI_CAP.ibm_as_notify_supported is set.IBM_AS_NOTIFY_EN($nv_pci_cap.ibm_as_notify_supported!=0)qˆ9#a9i ibm_tunneled_atomic_ennv_pci_conf0x0.270x0.1BOOLEnable IBM's Tunneled Atomic feature. Supported only when NV_PCI_CAP.ibm_tunneled_atomic_supported is set.IBM_TUNNELED_ATOMIC_EN($nv_pci_cap.ibm_tunneled_atomic_supported!=0)ˆ1#S1U exp_rom_pxe_enablenv_pci_conf0x0.260x0.1BOOLEnable Expansion ROM option for PXEEXP_ROM_PXE_ENABLE$nv_pci_cap.exp_rom_pxe_supported==1 †Æ#–†ˆ!M!exp_rom_virtio_net_pxe_supportednv_pci_cap0x0.150x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_virtio_net_pxe_enable is supported{ˆ C!wp2p_ordering_mode_supportednv_pci_cap0x0.140x0.1BOOLWhen TRUE, NV_PCI_CONF.p2p_ordering_mode is supported ˆ;!management_pf_supportednv_pci_cap0x0.130x0.1BOOLWhen TRUE, NV_PCI_CONF.management_pf can be set to non DEVICE_DEFAULT.ˆ7#C7i advanced_pci_settingsnv_pci_conf0x0.310x0.1BOOLShow advanced PCI settings.ADVANCED_PCI_SETTINGS$nv_pci_cap.advanced_pci_settings_supported!=0‚6ˆ##u#‚ ibm_capi_ennv_pci_conf0x0.300x0.1BOOLEnable IBM's Coherent Accelerator Processor Interface (CAPI) mode. Supported only when ADVANCED_PCI_SETTINGS is set.IBM_CAPI_EN($nv_pci_cap.ibm_capi_supported!=0)&&($nv_pci_conf.advanced_pci_settings!=0)&&($nv_pci_cap.advanced_pci_settings_supported!=0) ""Hm˜Ìþ$JošÎ%#5bus02_widthnv_global_pci_conf_4$!5bus03_aspmnv_global_pci_conf_4x*-5bus03_cfg_enablenv_global_pci_conf_4z3?5bus03_pcie_hierarchy_typenv_global_pci_conf_4u1;5bus03_pcie_switch_indexnv_global_pci_conf_4v%#5bus03_speednv_global_pci_conf_4w%#5bus03_widthnv_global_pci_conf_4y$!5bus04_aspmnv_global_pci_conf_4Š*-5bus04_cfg_enablenv_global_pci_conf_4Œ3?5bus04_pcie_hierarchy_typenv_global_pci_conf_4‡1;5bus04_pcie_switch_indexnv_global_pci_conf_4ˆ pdÈ,p ˆ'K!exp_rom_nvme_uefi_x86_supportednv_pci_cap0x0.210x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_nvme_uefi_x86_enable is supported ˆ&K!exp_rom_nvme_uefi_arm_supportednv_pci_cap0x0.200x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_nvme_uefi_arm_enable is supportedˆ%W!exp_rom_virtio_blk_uefi_x86_supportednv_pci_cap0x0.190x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_virtio_blk_uefi_x86_enable is supportedˆ$W!exp_rom_virtio_blk_uefi_arm_supportednv_pci_cap0x0.180x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_virtio_blk_uefi_arm_enable is supportedˆ#W!exp_rom_virtio_net_uefi_x86_supportednv_pci_cap0x0.170x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_virtio_net_uefi_x86_enable is supportedˆ"W!exp_rom_virtio_net_uefi_arm_supportednv_pci_cap0x0.160x0.1BOOLWhen TRUE, NV_PCI_CONF. exp_rom_virtio_net_uefi_arm_enable is supported @@x°è XÈ7K1flex_parser_profile_1_supportednv_flex_parser_cap”7K1flex_parser_profile_2_supportednv_flex_parser_cap“7K1flex_parser_profile_3_supportednv_flex_parser_cap’7K1flex_parser_profile_4_supportednv_flex_parser_cap‘7K1flex_parser_profile_5_supportednv_flex_parser_cap7K1flex_parser_profile_6_supportednv_flex_parser_cap7K1flex_parser_profile_7_supportednv_flex_parser_capŽ7K1flex_parser_profile_8_supportednv_flex_parser_cap i€ïiåkãiwˆ.;!wibm_as_notify_supportednv_pci_cap0x0.280x0.1BOOLWhen set, the PCI_CONF.ibm_as_notify_en is supported.ˆ-G!ibm_tunneled_atomic_supportednv_pci_cap0x0.270x0.1BOOLWhen set, the PCI_CONF.ibm_tunneled_atomic_en is supported.wˆ,7!{exp_rom_pxe_supportednv_pci_cap0x0.260x0.1BOOLWhen set, NV_PCI_CONF. exp_rom_pxe_enable is supported.ˆ+A!exp_rom_uefi_x86_supportednv_pci_cap0x0.250x0.1BOOLWhen set NV_PCI_CONF. exp_rom_uefi_x86_enable is supportedˆ*A!exp_rom_uefi_arm_supportednv_pci_cap0x0.240x0.1BOOLWhen set, NV_PCI_CONF. exp_rom_uefi_arm_enable is supported. ˆ)?!dynamic_vf_msix_supportednv_pci_cap0x0.230x0.1BOOLWhen set to TRUE, setting NV_PCI_CONF.dynamic_vf_msix will be supported.}ˆ('!ats_supportednv_pci_cap0x0.220x0.1BOOLWhen set to TRUE, setting NV_PCI_CONF.ats_enabled will be supported. BBa€Ÿ¾Ö÷Em²Ù9keyfile_public_key_4096_a%9keyfile_public_key_4096_b/7keynv_ls_nv_public_key_17keynv_ls_nv_public_key_2)keynv_secure_host %+keypair_uuidfile_public_key%%5keypair_uuidfile_public_key_40969'%9keypair_uuidfile_public_key_4096_a$'%9keypair_uuidfile_public_key_4096_b.%)keypair_uuidfile_signature$%3keypair_uuidfile_signature_3072W&%7keypair_uuidfile_signature_4096_a&%7keypair_uuidfile_signature_4096_b H~~HEˆ3-)U-/ safe_mode_enablesafe_mode_conf0x0.300x0.1BOOLEnable Safe Mode activation after crossing a threshold of consecutive failed boots (no driver load).SAFE_MODE_ENABLEignore_dependency‚iˆ23)ƒc3W safe_mode_thresholdsafe_mode_conf0x0.00x0.8UNSIGNEDDefault value of the threshold for failed driver loads (driver load was not detected between reboots). When crossed, the device will load in Safe Mode with some default configurations, suspected as possible causes for driver load fail.SAFE_MODE_THRESHOLD$safe_mode_conf.safe_mode_enable == 1 ˆ1K!advanced_pci_settings_supportednv_pci_cap0x0.310x0.1BOOLWhen set, the PCI_FONF.advanced_pci_settings bit is configurable.mˆ01!mibm_capi_supportednv_pci_cap0x0.300x0.1BOOLWhen set, the PCI_CONF.ibm_capi_en is supported.ˆ/E!}force_eth_subclass_supportednv_pci_cap0x0.290x0.1BOOLWhen set, the PCI_CONF.force_eth_sub_class is supported. YjÃ.Y‚$ˆ8!/ƒ A+ priv_levelnv_host_priv_conf0x0.280x0.2ENUMPrivilege level of the host\;0x0: PRIVILEGED - host has all supported privileges\;0x1: LIMITED - host is not allowed to modify global/per port/parameters or access other hosts parameters\;\;PRIVILEGED=0x0,LIMITED=0x1HOST_PRIV_LEVEL)ˆ7'/=1 disable_rshimnv_host_priv_conf0x0.30x0.1BOOLWhen TRUE, the host does not have an RSHIM function to access the embedded CPU registersHOST_DISABLE_RSHIMˆ6)/? disable_tracernv_host_priv_conf0x0.20x0.1BOOLWhen TRUE, the host will not be allowed to own the TracerHOST_DISABLE_TRACER_OWNER#ˆ51/? disable_counter_rdnv_host_priv_conf0x0.10x0.1BOOLWhen TRUE, the host will not be allowed to read Physical port countersHOST_DISABLE_PORT_COUNTERˆ41/}; disable_port_ownernv_host_priv_conf0x0.00x0.1BOOLWhen TRUE, the host will not be allowed to be Port OwnerHOST_DISABLE_PORT_OWNER EE}«Û 9]ƒ¬×7Y#esw_manager_external_host_pf_supportednv_ecpf_cap«-E#exp_rom_nvme_uefi_arm_enablenv_pci_conf/K!exp_rom_nvme_uefi_arm_supportednv_pci_cap&-E#exp_rom_nvme_uefi_x86_enablenv_pci_conf/K!exp_rom_nvme_uefi_x86_supportednv_pci_cap'#1#exp_rom_pxe_enablenv_pci_conf%7!exp_rom_pxe_supportednv_pci_cap,(;#exp_rom_uefi_arm_enablenv_pci_conf*A!exp_rom_uefi_arm_supportednv_pci_cap*(;#exp_rom_uefi_x86_enablenv_pci_conf ÌpàXÒKÌ|ˆ>1-priv_level_limitednv_host_priv_cap0x0.290x0.1BOOLWhen TRUE, the host may be set to privilege level LIMITEDˆ=7-priv_level_privilegednv_host_priv_cap0x0.280x0.1BOOLWhen TRUE, the host may be set to privilege level PRIVILEGEDˆ<;-disable_rshim_supportednv_host_priv_cap0x0.30x0.1BOOLWhen TRUE, disable_rshim is supported in NV_HOST_PRIV_CONFˆ;=-disable_tracer_supportednv_host_priv_cap0x0.20x0.1BOOLWhen TRUE, disable_tracer is supported in NV_HOST_PRIV_CONF ˆ:E- disable_counter_rd_supportednv_host_priv_cap0x0.10x0.1BOOLWhen TRUE, disable_counter_rd is supported in NV_HOST_PRIV_CONF ˆ9E- disable_port_owner_supportednv_host_priv_cap0x0.00x0.1BOOLWhen TRUE, disable_port_owner is supported in NV_HOST_PRIV_CONFmstflint-4.26.0/mlxconfig/mlxconfig_dbs/Makefile.am0000755000175000017500000000275214522641732022554 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- docdir = $(pkgdatadir)/mlxconfig_dbs dist_doc_DATA = mlxconfig_host.db mlxconfig_switch.db mstflint-4.26.0/mlxconfig/mlxconfig_dbs/Makefile.in0000644000175000017500000004001014522641737022554 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mlxconfig/mlxconfig_dbs DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_doc_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(docdir)" DATA = $(dist_doc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = $(pkgdatadir)/mlxconfig_dbs dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_doc_DATA = mlxconfig_host.db mlxconfig_switch.db all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxconfig/mlxconfig_dbs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxconfig/mlxconfig_dbs/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_docDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_docDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxconfig/mlxcfg_generic_commander.h0000644000175000017500000001316514522641732023051 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_generic_commander.h * * Created on: Jun 22, 2016 * Author: ahmads */ #ifndef MLXCFG_GENERIC_COMMANDER_H_ #define MLXCFG_GENERIC_COMMANDER_H_ #include #include #include "fw_comps_mgr/fw_comps_mgr.h" #include "mlxcfg_commander.h" #include "mlxcfg_db_manager.h" #define BIN_FILE_FINGERPRINT "MLNX.CONFIG.BIN!" #define BIN_FILE_FINGERPRINT_SIZE 16 // bytes class GenericCommander : public Commander { private: MlxcfgDBManager* _dbManager; void supportsNVData(); void printEnums(const ParamView& p, string& s); bool checkDependency(TLVConf* cTLV, string dStr); void filterByDependency(TLVConf* cTLV, const vector >& dependencyTable, vector& result); void queryTLV(TLVConf* conf, std::vector& paramsConf, bool isWriteOperation, QueryType qt); void getAllConfigurations(std::vector& confs); void excludeDuplicatedTLVs(vector& s, vector& d); void printTLVConfViews(FILE* f, vector& v); void printParamViews(FILE* f, vector& v); void genXMLTemplateAux(vector tlvs, string& xmlTemplate, bool allAttrs, bool withVal, bool defaultAttrVal); void removeSignatureTlvs(vector& tlvs); public: GenericCommander(mfile* mf, string dbName, bool isSwitch = false); ~GenericCommander(); void printLongDesc(FILE*); void queryParamViews(std::vector& paramsToQuery, bool isWriteOperation, QueryType qt = QueryNext); void queryAll(std::vector& params, vector& failedTLVs, QueryType qt = QueryNext); void getCfg(ParamView& cfgParam, QueryType qt = QueryNext); void setCfg(std::vector& params, bool force); bool isDefaultSupported(); bool isCurrentSupported(); void clearSemaphore(); void invalidateCfgs(); void invalidateCfg(const std::string& configName); const char* loadConfigurationGetStr(); void setRawCfg(std::vector rawTlvVec); std::vector getRawCfg(std::vector rawTlvVec); void dumpRawCfg(std::vector rawTlvVec, std::string& tlvDump); void backupCfgs(vector& view); void updateParamViewValue(ParamView&, std::string); void queryConfigViews(std::vector& confs, const std::string& configName = "", QueryType qt = QueryNext); void getConfigViews(std::vector& confs, const std::string& configName = ""); void genTLVsList(vector& tlvs); void genXMLTemplate(vector tlvs, string& xmlTemplate, bool allAttrs); void XML2TLVConf(const string& xmlContent, vector& tlvs); void binTLV2XML(const vector& binTLV, string& xml); void binTLV2TLVConf(const vector& binTLV, TLVConf*& tlv); void bin2TLVConfs(const vector& tlvsBin, vector& tlvs); void raw2XML(const vector& lines, string& xml); void XML2Raw(const string& xml, string& raw); void XML2Bin(const string& xml, vector& buff, bool withHeader = true); void TLVConf2Bin(const vector& tlvs, vector& buff, bool withHeader = true); void checkConfTlvs(const vector& tlvs, FwComponent::comps_ids_t& compsId); void orderConfTlvs(vector& tlvs); void createConf(const string& xml, vector& buff); void sign(vector& buff, const string& privateKeyFile = "", const string& keyPairUUid = "", const string& openssl_engine = "", const string& openssl_key_identifier = ""); void apply(const vector& buff); }; class RawCfgParams5thGen : public ErrMsg { public: RawCfgParams5thGen(); ~RawCfgParams5thGen() {} int setRawData(const std::vector& tlvBuff); std::vector getRawData(); int setOnDev(mfile* mf, RawTlvMode mode); std::string dumpTlv(); private: int verifyTlv(); std::vector _tlvBuff; struct tools_open_mnvda _nvdaTlv; }; #endif /* MLXCFG_GENERIC_COMMANDER_H_ */ mstflint-4.26.0/mlxconfig/mlxcfg_ui.h0000644000175000017500000001625014522641732020023 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXCFG_UI_H_ #define MLXCFG_UI_H_ #include #include #include #ifdef CABLES_SUPP #include #endif // #include "mlxcfg_lib.h" #include "mlxcfg_commander.h" #include "mlxcfg_view.h" #include "mlxcfg_utils.h" #define MAX_ERR_STR_LEN 1024 #define MAX_BUF_SIZE 1024 #define PRE_ERR_MSG "-E-" #define MLNX_RAW_TLV_FILE_SIG "MLNX_RAW_TLV_FILE" #ifdef MST_UL #define NO_DEV_ERR "No devices found." #else #define NO_DEV_ERR "No devices found, mst might be stopped. You may need to run 'mst start' to load MST modules. " #endif #define DB_NAME "" typedef enum { Mc_Set, Mc_Query, Mc_Reset, Mc_Clr_Sem, Mc_Set_Raw, Mc_Get_Raw, Mc_Backup, Mc_ShowConfs, Mc_GenTLVsFile, Mc_GenXMLTemplate, Mc_Raw2XML, Mc_XML2Raw, Mc_XML2Bin, Mc_CreateConf, Mc_Apply, Mc_UnknownCmd } mlxCfgCmd; typedef struct QueryOutputItem { string mlxconfigName; bool isReadOnly; u_int32_t nextVal; string strNextVal; u_int32_t currVal; string strCurrVal; u_int32_t defVal; string strDefVal; u_int32_t setVal; string strSetVal; } QueryOutputItem; using namespace std; class MlxCfgParams { public: MlxCfgParams() : device(), deviceType(UNSUPPORTED_DEVICE), rawTlvFile(), NVInputFile(), NVOutputFile(), dbName(DB_NAME), privPemFile(), keyPairUUID(), opensslEngine(), opensslKeyId(), allAttrs(false), cmd(Mc_UnknownCmd), yes(false), force(false), enableVerbosity(false) { } ~MlxCfgParams() {} std::string device; Device_Type deviceType; std::string rawTlvFile; std::string NVInputFile; std::string NVOutputFile; std::string dbName; std::string privPemFile; std::string keyPairUUID; std::string opensslEngine; std::string opensslKeyId; bool allAttrs; mlxCfgCmd cmd; bool yes; std::vector setParams; bool force; // ignore parameter checks bool enableVerbosity; }; class MlxCfg { public: MlxCfg() : _mlxParams(), _errStr(), _devType(DeviceUnknown) {} ~MlxCfg(){}; mlxCfgStatus execute(int argc, char* argv[]); private: // User interface and parsing methods void printHelp(); mlxCfgStatus showDevConfs(); const char* getDeviceName(mfile* mf); void printVersion(); void printUsage(); void printOpening(mfile* mf, const char* dev, int devIndex); void printConfHeader(bool showDefualt, bool showNew, bool showCurrent); mlxCfgStatus getNumberFromString(const char* str, u_int32_t& num); mlxCfgStatus parseArgs(int argc, char* argv[]); // Helper functions for parse args mlxCfgStatus extractNVInputFile(int argc, char* argv[]); mlxCfgStatus extractNVOutputFile(int argc, char* argv[]); mlxCfgStatus extractSetCfgArgs(int argc, char* argv[]); mlxCfgStatus extractQueryCfgArgs(int argc, char* argv[]); void removeContinuanceArray(std::vector& OutputItemOut, std::vector& OutputItemIn); void editAndPushItem(std::vector& queryOutputItemVector, QueryOutputItem& item, u_int32_t arrayIndex); const char* getConfigWarning(const string& mlx_config_name, const string& set_val); bool tagExsists(string tag); // Query cmd mlxCfgStatus queryDevsCfg(); mlxCfgStatus queryDevCfg(const char* dev, const char* pci = (const char*)NULL, int devIndex = 1, bool printNewCfg = false); mlxCfgStatus queryDevCfg(Commander* commander, const char* dev, bool isWriteOperation, const char* pci = (const char*)NULL, int devIndex = 1, bool printNewCfg = false); // Set cmd mlxCfgStatus setDevCfg(); // reset Cmd mlxCfgStatus resetDevsCfg(); mlxCfgStatus resetDevCfg(const char* dev); // Set\Get Raw TLV file mlxCfgStatus devRawCfg(RawTlvMode mode); mlxCfgStatus backupCfg(); mlxCfgStatus tlvLine2DwVec(const std::string& tlvStringLine, std::vector& tlvVec); mlxCfgStatus clrDevSem(); mlxCfgStatus readBinFile(string fileName, vector& buff); mlxCfgStatus readNVInputFile(vector& buff); mlxCfgStatus readNVInputFile(string& content); mlxCfgStatus readNVInputFile(vector& lines); mlxCfgStatus writeNVOutputFile(vector content); mlxCfgStatus writeNVOutputFile(string content); mlxCfgStatus writeNVOutputFile(vector lines); mlxCfgStatus genTLVsFile(); mlxCfgStatus genXMLTemplate(); mlxCfgStatus raw2XMLAux(bool isBin); mlxCfgStatus raw2XML(); mlxCfgStatus XML2RawAux(bool isBin); mlxCfgStatus XML2Raw(); mlxCfgStatus XML2Bin(); mlxCfgStatus createConf(); mlxCfgStatus apply(); // static print functions static int printParam(string param, u_int32_t val); static int printValue(string strVal, u_int32_t val); static void printSingleParam(const char* name, QueryOutputItem& queryOutItem, u_int8_t verbose, bool printNewCfg); bool askUser(const char* question, bool add_prefix = true, bool add_suffix = true); mlxCfgStatus err(bool report, const char* errMsg, ...); void printErr(); // data members MlxCfgParams _mlxParams; std::string _errStr; dm_dev_id_t _devType; }; #endif /* MLXCFG_UI_H_ */ mstflint-4.26.0/mlxconfig/mstprivhost.py0000644000175000017500000004504414522641732020654 0ustar tzafrirctzafrirc# Copyright (c) 2004-2021 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import argparse import os import subprocess import sys import tempfile import re import tools_version PROG = 'mstprivhost' TOOL_VERSION = "1.0.0" DEV_HELP = """\ Perform operation for a specified mst device. """ CMD_HELP = """\ restrict: Set external hosts restricted. privilege: Set external hosts privileged. query: From external HOST: query the status of the host From Embedded ARM CPU: query the status of all external hosts. """ QUERY_FULL_HELP = """\ Run with query command for high verbosity level - valid from embedded ARM CPU only. """ DESCRIPTION = """\ restrict or privilege host Note: New configurations takes effect immediately. Note: privileged host - host has all supported privileges. restricted host - host capabilities are limited. """ DISABLE_RSHIM_HELP = """\ When TRUE, the host does not have an RSHIM function to access the embedded CPU registers (power cycle is required to apply changes) """ DISABLE_TRACER_HELP = """\ When TRUE, the host will not be allowed to own the Tracer (requires FW reset to be applied) """ DISABLE_COUNTER_RD_HELP = """\ When TRUE, the host will not be allowed to read Physical port counters (requires FW reset to be applied) """ DISABLE_PORT_OWNER_HELP = """\ When TRUE, the host will not be allowed to be Port Owner (requires FW reset to be applied) """ def _log(level, msg, *args, **kw): if args: msg = msg % args print(level, msg, end=kw.get('end', '\n')) def info(msg, *args, **kw): if kw.get('hide') is None or kw.get('hide') is False: _log("-I-", msg, *args, **kw) def error(msg, *args, **kw): if kw.get('hide') is None or kw.get('hide') is False: _log("-E-", msg, *args, **kw) class PrivilegeException(Exception): pass class PrivilegeMgr(object): CONFIG_CMD_LINE = "mstconfig -d %s -f %s --yes set_raw" QUERY_CMD_LINE = "mstconfig -d %s -f %s --yes get_raw" QUERY_MMHI_CMD_LINE = "mstreg -d %s --reg_name MMHI --get" QUERY_NVGC_CMD_LINE = "mstreg -d %s --reg_name MNVGC --get" QUERY_HW_ACCESS_STATUS = "mstreg -d %s --reg_id 0x402d --reg_len 0x4 --get" MCRA_CMD_LINE = "mstmcra %s 0xf0014.0:16" TLV_DATA_RE = re.compile(r'Data\s*:\s*(.+)\n', flags=re.MULTILINE) BLUE_FIELD_DEV_ID = 0x211 BLUE_FIELD2_DEV_ID = 0x214 BLUE_FIELD3_DEV_ID = 0x21c PRIVILEGE = 0 RESTRICT = 1 TITLE = "MLNX_RAW_TLV_FILE" TLV_HEADER = 0x03000204 CRC = 0x0 TLV_TYPE = 0x07000083 LIMITED = 0x10000000 DISABLE_PORT_OWNER = 0x01 DISABLE_COUNTER_RD = 0x02 DISABLE_TRACER = 0x04 DISABLE_RSHIM = 0x08 def __init__(self, device, query, q_full, level, port_functions): self._requested_level = level self._device = device self._query = query self._q_full = q_full self._port_function = port_functions self._file_p = tempfile.NamedTemporaryFile(suffix='.raw', prefix="nvconfig_setting_") self._file_name = self._file_p.name self._nv_host_priv_conf = 0 self._current_conf = None self._current_host = 0 self._total_hosts = 1 self._isMH = False self._isARM = False self._disable_out = False @staticmethod def _exec_cmd(cmd): p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True, shell=True) stdout, stderr = p.communicate() exit_code = p.wait() return (exit_code, stdout, stderr) def run(self): self.validate() self.initParams() if self._query: return self.getConf() else: return self.setConf() def initParams(self): priv_other_host = False cmd = self.QUERY_NVGC_CMD_LINE % (self._device) exit_code, stdout, stderr = self._exec_cmd(cmd) if not exit_code: priv_other_host = self.getFieldFromReg( stdout, "priv_nv_other_host") if priv_other_host == 1: self._isARM = True cmd = self.QUERY_MMHI_CMD_LINE % (self._device) exit_code, stdout, stderr = self._exec_cmd(cmd) if not exit_code: self._current_host = self.getFieldFromReg( stdout, "host_number") host_en_mask = self.getFieldFromReg(stdout, "host_en") # don't count the ARM index (last bit) self._total_hosts = bin(host_en_mask).count("1") - 1 self._isMH = self._total_hosts > 1 elif self.isHwAccessDisabled(): raise PrivilegeException("Secure host enabled on the device") else: raise PrivilegeException(stderr.replace("-E- ", "")) def isHwAccessDisabled(self): hw_disable = 0 cmd = self.QUERY_HW_ACCESS_STATUS % (self._device) exit_code, stdout, _ = self._exec_cmd(cmd) if not exit_code: hw_disable = int(stdout.splitlines()[4].split('|')[1], 16) & 0xff return hw_disable def getFieldFromReg(self, reg_output, field_name): field_value = None for line in reg_output.splitlines(): if line.startswith(field_name): field_value = int(line.split()[2], 16) break return field_value def updateTlvFile(self, host_index, disable_info=False): tlv_type = self.TLV_TYPE tlv_type |= (host_index << 18) raw_bytes = "%s\n0x%08x 0x%08x 0x%08x" % (self.TITLE, self.TLV_HEADER, tlv_type, self.CRC) if not disable_info: info( "preparing configuration file...", end='', hide=self._disable_out) # use encode for compatibility with python 2/3 priv_conf_data = '0x%08x' % self._nv_host_priv_conf conf_bytes = " ".join((raw_bytes, priv_conf_data)) self._file_p.seek(0) self._file_p.write(conf_bytes.encode()) self._file_p.flush() if not disable_info: self.printCmd("Done!") def printTitle(self, title): print(title) print("-" * len(title)) def printCmd(self, msg): if not self._disable_out: print(msg) def printConfOut(self, priv_conf): self.printTitle("Host configurations") if self._q_full: self.printCmd( "%-30s: %s" % ("host index", priv_conf["host index"])) self.printCmd("%-30s: %s" % ("level", priv_conf["level"])) self.printTitle("\nPort functions status:") self.printCmd( "%-30s: %s" % ("disable_rshim", priv_conf["disable_rshim"])) self.printCmd( "%-30s: %s" % ("disable_tracer", priv_conf["disable_tracer"])) self.printCmd( "%-30s: %s" % ("disable_port_owner", priv_conf["disable_port_owner"])) self.printCmd( "%-30s: %s\n" % ("disable_counter_rd", priv_conf["disable_counter_rd"])) def getConf(self): if self._q_full and not self._isARM: raise PrivilegeException( "Query command with verbose option is not valid from host") current_conf = self.queryConf(0) # Get all host's status if (full) flag provided if self._q_full: for host in range(self._total_hosts): # Skip the first host info, it's already collected above in # current_conf if host == 0: continue host_conf = self.queryConf(host) current_conf.update({"host index": "%-13s%-13s" % (current_conf["host index"], host_conf["host index"])}) current_conf.update({"level": "%-13s%-13s" % (current_conf["level"], host_conf["level"])}) current_conf.update({"disable_rshim": "%-13s%-13s" % (current_conf["disable_rshim"], host_conf["disable_rshim"])}) current_conf.update({"disable_tracer": "%-13s%-13s" % (current_conf["disable_tracer"], host_conf["disable_tracer"])}) current_conf.update( { "disable_port_owner": "%-13s%-13s" % (current_conf["disable_port_owner"], host_conf["disable_port_owner"])}) current_conf.update( { "disable_counter_rd": "%-13s%-13s" % (current_conf["disable_counter_rd"], host_conf["disable_counter_rd"])}) self.printConfOut(current_conf) # If no configuration queried, then return error code 1 return len(current_conf) == 0 def parseRawTlv(self, host_index, data, valid): tlv = {"host index": host_index, "level": "PRIVILEGED", "disable_rshim": "FALSE", "disable_tracer": "FALSE", "disable_port_owner": "FALSE", "disable_counter_rd": "FALSE"} if valid: conf_data = int(self.TLV_DATA_RE.search(data).group(1), 16) level = int((conf_data & self.LIMITED) / self.LIMITED) disable_rshim = (conf_data & self.DISABLE_RSHIM) / \ self.DISABLE_RSHIM disable_tracer = ( conf_data & self.DISABLE_TRACER) / self.DISABLE_TRACER disable_port_owner = ( conf_data & self.DISABLE_PORT_OWNER) / self.DISABLE_PORT_OWNER disable_counter_rd = ( conf_data & self.DISABLE_COUNTER_RD) / self.DISABLE_COUNTER_RD tlv.update({"level": ("PRIVILEGED", "RESTRICTED")[level]}) tlv.update({"disable_rshim": str(bool(disable_rshim)).upper()}) tlv.update({"disable_tracer": str(bool(disable_tracer)).upper()}) tlv.update({"disable_port_owner": str( bool(disable_port_owner)).upper()}) tlv.update({"disable_counter_rd": str( bool(disable_counter_rd)).upper()}) return tlv def queryConf(self, host_index): # UpdateTlvFile file for query self.updateTlvFile(host_index, True) # Run query operation cmd = self.QUERY_CMD_LINE % (self._device, self._file_name) exit_code, stdout, _ = self._exec_cmd(cmd) return self.parseRawTlv(host_index, stdout, not exit_code) def setPrivilegeConf(self, host_index, disable_info=False): self._nv_host_priv_conf = 0 self.updateTlvFile(host_index, disable_info) if not disable_info: info("configuring device...", end='', hide=self._disable_out) cmd = self.CONFIG_CMD_LINE % (self._device, self._file_name) exit_code, stdout, stderr = self._exec_cmd(cmd) if not disable_info: if not exit_code: self.printCmd("Done!") else: self.printCmd("Failed") return exit_code def setRestrictConf(self, host_index): current_conf = self.queryConf(host_index) # If host is restricted, remove the restiction to applay the new # restrict command if current_conf["level"] == "RESTRICTED": self.setPrivilegeConf(host_index, disable_info=True) # Update the TLV with the restriction bytes and port function # configuration self._nv_host_priv_conf = self.LIMITED for pf in self._port_function: self._nv_host_priv_conf |= self._port_function[pf] self.updateTlvFile(host_index) # Send the new configuration by mlxconfig info("configuring device...", end='', hide=self._disable_out) cmd = self.CONFIG_CMD_LINE % (self._device, self._file_name) exit_code, stdout, stderr = self._exec_cmd(cmd) if not exit_code: self.printCmd("Done!") else: self.printCmd("Failed") return exit_code def setConf(self): exit_code = 0 if self._isARM: for host in range(self._total_hosts): if self._requested_level == self.RESTRICT: exit_code = self.setRestrictConf(host) elif self._requested_level == self.PRIVILEGE: exit_code = self.setPrivilegeConf(host) self._disable_out = True else: error("Operation is not permitted (refer to the DPU user manual)") exit_code = 1 return exit_code def validate(self): # get device ID cmd_line = self.MCRA_CMD_LINE % self._device exit_code, stdout, _ = self._exec_cmd(cmd_line) if exit_code != 0: raise PrivilegeException("Unknown device '%s'!" % self._device) dev_id = int(stdout, 16) if dev_id not in (self.BLUE_FIELD_DEV_ID, self.BLUE_FIELD2_DEV_ID, self.BLUE_FIELD3_DEV_ID): raise PrivilegeException( "Device '%s' is not supported, " "only BlueField devices are supported!" % self._device) def cleanup(self): self._file_p.close() if os.path.isfile(self._file_name): os.remove(self._file_name) def parse_args(): parser = argparse.ArgumentParser( prog=PROG, description=DESCRIPTION, formatter_class=argparse.RawTextHelpFormatter) version = tools_version.GetVersionString(PROG, TOOL_VERSION) parser.add_argument("-v", "--version", action="version", version=version, help="show program's version number and exit") # options arguments options_group = parser.add_argument_group('Options') options_group.add_argument( '-d', '--device', required=True, metavar='', help=DEV_HELP) restrict_options_group = parser.add_argument_group('Restrict Options') restrict_options_group.add_argument('--disable_rshim', action="store_true", help=DISABLE_RSHIM_HELP) restrict_options_group.add_argument( '--disable_tracer', action="store_true", help=DISABLE_TRACER_HELP) restrict_options_group.add_argument( '--disable_counter_rd', action="store_true", help=DISABLE_COUNTER_RD_HELP) restrict_options_group.add_argument( '--disable_port_owner', action="store_true", help=DISABLE_PORT_OWNER_HELP) query_options_group = parser.add_argument_group('Query Options') query_options_group.add_argument('--full', '-f', action="store_true", help=QUERY_FULL_HELP) # command arguments command_group = parser.add_argument_group('Commands') command_group.add_argument( 'command', nargs='?', choices=[ "r", "restrict", "p", "privilege", "q", "query"], help=CMD_HELP) args = parser.parse_args() if args.command is None: parser.error( "Please provide a command to execute, check the help menu") disable_flags = args.disable_rshim or args.disable_tracer or \ args.disable_counter_rd or args.disable_port_owner q_full_flag = args.full rest_flags = args.command in ("r", "restrict") priv_flags = args.command in ("p", "privilege") query_flags = args.command in ("q", "query") if priv_flags and disable_flags: parser.error("disable flags are not allowed in privilege mode") if query_flags and (priv_flags or rest_flags or disable_flags): parser.error( "privilege or restrict commands are not allowed with query") if q_full_flag and not query_flags: parser.error("The verbose option is allowed with query only") return args def main(): args = parse_args() device = args.device command = args.command query = False level = PrivilegeMgr.PRIVILEGE rc = 0 if command in ("r", "restrict"): level = PrivilegeMgr.RESTRICT elif command in ("q", "query"): query = True port_functions = { "disable_rshim": (0, PrivilegeMgr.DISABLE_RSHIM)[args.disable_rshim], "disable_tracer": (0, PrivilegeMgr.DISABLE_TRACER)[args.disable_tracer], "disable_counter_rd": (0, PrivilegeMgr.DISABLE_COUNTER_RD)[args.disable_counter_rd], "disable_port_owner": (0, PrivilegeMgr.DISABLE_PORT_OWNER)[args.disable_port_owner]} mgr = PrivilegeMgr(device, query, args.full, level, port_functions) try: rc = mgr.run() except PrivilegeException as exc: error(str(exc)) rc = 1 except Exception as exc: error("-E- %s", str(exc)) rc = 1 except(KeyboardInterrupt, SystemExit): print("\nInterrupted!\nExiting") rc = 1 finally: mgr.cleanup() return rc if __name__ == "__main__": sys.exit(main()) mstflint-4.26.0/mlxconfig/mlxcfg_ui.cpp0000644000175000017500000013146714522641732020366 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "mlxcfg_ui.h" #include "mlxcfg_generic_commander.h" #define DISABLE_SLOT_POWER_LIMITER "DISABLE_SLOT_POWER_LIMITER" #define DISABLE_SLOT_POWER_LIMITER_WARN \ "\nWARNING: YOU ARE ABOUT TO RE-ENABLE ONE OR MORE NETWORK PORTS THAT HAVE BEEN SHUT DOWN DUE TO INSUFFICIENT " \ "POWER ON THE PCIE SLOT." \ "\nYOUR ACTION MAY RISK PROPER FUNCTIONAL OR PHYSICAL OPERATION OF THE CARD OR OF THE SERVER." \ "\nMELLANOX TECHNOLOGIES HEREBY DISCLAIMS ANY AND ALL LIABILITY RELATED TO ANY DAMAGE CAUSED AS A RESULT OF THIS " \ "RE-ENABLEMENT." \ "\nBY PROCEEDING WITH THIS RE-ENABLEMENT YOU WILL INVALIDATE ANY WARRANTY PROVIDED BY MELLANOX TECHNOLOGIES " \ "RELATED TO THIS CARD." \ "\nIT IS ADVISED TO CHECK THE CARD\'S USER MANUAL FOR POWER SPECIFICATIONS OR TO CONTACT MELLANOX SUPPORT BEFORE " \ "PERFORMING THIS ACTION." \ "\nARE YOU SURE YOU WANT TO CONTINUE? [Y/N] [N]: " #define NEXT_STR "Next Boot" #define DEFAULT_CURRENT_NOT_SUPPORTED_PREFIX "Device Firmware does not support reading " #define TLV_NAME_MAX_LENGTH 256 #define EXIT_IF_RC_NOT_OK(rc) \ if (rc != MLX_CFG_OK) \ { \ return rc; \ } #define PRINT_SYNTAX_ERROR_AND_EXIT \ printf("-E- Syntax error in: %s\n", line->c_str()); \ return MLX_CFG_ERROR; // Signal handler section void TerminationHandler(int signum); #ifdef __WIN__ #include static BOOL CtrlHandler(DWORD fdwCtrlType) { switch (fdwCtrlType) { // Handle the CTRL-C signal. case CTRL_C_EVENT: // CTRL-CLOSE: confirm that the user wants to exit. case CTRL_CLOSE_EVENT: // Pass other signals to the next handler. case CTRL_BREAK_EVENT: case CTRL_LOGOFF_EVENT: case CTRL_SHUTDOWN_EVENT: TerminationHandler(SIGINT); return TRUE; default: return FALSE; } } #endif void TerminationHandler(int signum) { static volatile sig_atomic_t fatal_error_in_progress = 0; if (fatal_error_in_progress) { raise(signum); } fatal_error_in_progress = 1; signal(signum, SIG_DFL); printf("\n Received signal %d.\n", signum); fflush(stdout); raise(signum); } void initHandler() { #ifdef __WIN__ #define SIGNAL_NUM 3 int signalList[SIGNAL_NUM] = {SIGINT, SIGTERM, SIGABRT}; SetConsoleCtrlHandler((PHANDLER_ROUTINE)CtrlHandler, true); #else #define SIGNAL_NUM 4 int signalList[SIGNAL_NUM] = {SIGINT, SIGTERM, SIGPIPE, SIGHUP}; #endif // set the signal handler for (int i = 0; i < SIGNAL_NUM; i++) { void (*prevFunc)(int); prevFunc = signal(signalList[i], TerminationHandler); if (prevFunc == SIG_ERR) { printf("-E- failed to set signal Handler."); exit(MLX_CFG_ERROR); } } } // End of signal handler section. inline void copyVal(QueryOutputItem& o, const ParamView& p, QueryType qT) { if (qT == QueryDefault) { o.defVal = p.val; o.strDefVal = p.strVal; } else if (qT == QueryCurrent) { o.currVal = p.val; o.strCurrVal = p.strVal; } else if (qT == QueryNext) { o.nextVal = p.val; o.strNextVal = p.strVal; } } inline void copySet(QueryOutputItem& o, const ParamView& p) { o.setVal = p.val; o.strSetVal = p.strVal; } mlxCfgStatus MlxCfg::err(bool report, const char* fmt, ...) { va_list args; va_start(args, fmt); char errBuff[MAX_ERR_STR_LEN] = {0}; if (vsnprintf(errBuff, MAX_ERR_STR_LEN, fmt, args) >= MAX_ERR_STR_LEN) { strcpy(&errBuff[MAX_ERR_STR_LEN - 5], "..."); } _errStr = errBuff; if (report) { fprintf(stdout, PRE_ERR_MSG " %s\n", _errStr.c_str()); } va_end(args); return MLX_CFG_ERROR; } void MlxCfg::printErr() { fprintf(stdout, PRE_ERR_MSG " %s\n", _errStr.c_str()); } bool MlxCfg::askUser(const char* question, bool add_prefix, bool add_suffix) { const char* prefix = ""; if (add_prefix) { prefix = "\n "; } const char* suffix = ""; if (add_suffix) { suffix = " (y/n) [n] : "; } if (question == NULL) { question = "Do you want to continue?"; } printf("%s%s%s", prefix, question, suffix); if (_mlxParams.yes) { printf("y\n"); } else { fflush(stdout); std::string answer; std::getline(std::cin, answer); if (strcasecmp(answer.c_str(), "y") && strcasecmp(answer.c_str(), "yes")) { err(false, "Aborted by user."); return false; } } return true; } mlxCfgStatus MlxCfg::queryDevsCfg() { bool shouldFail = false; if (_mlxParams.device.length()) { if (queryDevCfg(_mlxParams.device.c_str())) { printErr(); shouldFail = true; } } else { int numOfDev; dev_info* dev = mdevices_info(MDEVS_TAVOR_CR, &numOfDev); if (dev == NULL) { return err(true, "Failed to get devices."); } if (numOfDev == 0) { mdevices_info_destroy(dev, numOfDev); return err(true, NO_DEV_ERR); } // printf("-D- num of dev: %d , 1st dev : %s\n", numOfDev, buf); dev_info* devPtr = dev; char pcibuf[32] = {0}; for (int i = 0; i < numOfDev; i++) { #ifdef __FREEBSD__ const char* device_name_ptrn = "pci%d:%d:%d:%d"; #else const char* device_name_ptrn = "%04x:%02x:%02x.%x"; #endif snprintf(pcibuf, 32, device_name_ptrn, devPtr->pci.domain, devPtr->pci.bus, devPtr->pci.dev, devPtr->pci.func); if (queryDevCfg(devPtr->pci.conf_dev, pcibuf, i + 1)) { printErr(); shouldFail = true; } devPtr++; } mdevices_info_destroy(dev, numOfDev); } return shouldFail ? MLX_CFG_ERROR : MLX_CFG_OK; } int MlxCfg::printValue(string strVal, u_int32_t val) { string s = numToStr(val); u_int32_t n; if (strVal == "" || strVal == s || (strToNum(strVal, n, 10) && n == val)) { return printf("%-20u", val); } if (strVal.find("Array") == string::npos) { strVal += "(" + s + ")"; } return printf("%-20s", strVal.c_str()); } int MlxCfg::printParam(string param, u_int32_t val) { if (val == MLXCFG_UNKNOWN) { return printf("%-20s", "N/A"); } return printValue(param, val); } #define PRINT_SPACE_IF_NEEDED(width) \ if (width >= 20) \ { \ printf(" "); \ } void MlxCfg::printSingleParam(const char* name, QueryOutputItem& queryOutItem, u_int8_t verbose, bool printNewCfg) { bool showDefault = QUERY_DEFAULT_MASK & verbose; bool showCurrent = QUERY_CURRENT_MASK & verbose; int width = 0; string fieldName = increaseIndexIfNeeded(name); string diff = " "; string readOnly = " "; if ((showDefault && queryOutItem.nextVal != queryOutItem.defVal) || (showCurrent && queryOutItem.nextVal != queryOutItem.currVal)) { diff = "*"; } if (queryOutItem.isReadOnly) { readOnly = "RO"; } printf("%s%s %-44s", diff.c_str(), readOnly.c_str(), fieldName.c_str()); if (showDefault) { width = printParam(queryOutItem.strDefVal, queryOutItem.defVal); } if (showCurrent) { PRINT_SPACE_IF_NEEDED(width) width = printParam(queryOutItem.strCurrVal, queryOutItem.currVal); } PRINT_SPACE_IF_NEEDED(width) width = printParam(queryOutItem.strNextVal, queryOutItem.nextVal); if (printNewCfg) { PRINT_SPACE_IF_NEEDED(width) if (queryOutItem.setVal == MLXCFG_UNKNOWN) { printParam(queryOutItem.strNextVal, queryOutItem.nextVal); } else { printValue(queryOutItem.strSetVal, queryOutItem.setVal); } } printf("\n"); return; } const char* MlxCfg::getDeviceName(mfile* mf) { u_int32_t chip_rev = 0; u_int32_t _dev_id = 0; if (dm_get_device_id(mf, &_devType, &_dev_id, &chip_rev)) { return ""; } return dm_dev_type2str(_devType); } void MlxCfg::printOpening(mfile* mf, const char* dev, int devIndex) { printf("\nDevice #%d:\n", devIndex); printf("----------\n\n"); const char* devType = getDeviceName(mf); printf("%-20s%-20s\n", "Device type:", devType); if (!dm_is_4th_gen(_devType)) { std::vector info; info.reserve(16); if (!getDeviceInformationString(mf, Device_Name, info)) { printf("%-20s%-20s\n", "Name:", "N/A"); } else { printf("%-20s%-20s\n", "Name:", info.data()); } info.clear(); if (!getDeviceInformationString(mf, Device_Description, info)) { printf("%-20s%-20s\n", "Description:", "N/A"); } else { printf("%-20s%-20s\n", "Description:", info.data()); } } printf("%-20s%-20s\n", "Device:", dev); } void MlxCfg::printConfHeader(bool showDefualt, bool showNew, bool showCurrent) { // print configuration Header if (showDefualt) { if (showCurrent) { printf("%-20s%39s%21s%23s", "Configurations:", "Default", "Current", NEXT_STR); } else { printf("%-20s%39s%23s", "Configurations:", "Default", NEXT_STR); } } else { if (showCurrent) { printf("%-20s%41s%18s", "Configurations:", "Current", NEXT_STR); } else { printf("%-20s%41s", "Configurations:", NEXT_STR); } } if (showNew) { printf(" %s", "New"); } } void prepareSetInput(vector& output, vector& params) { VECTOR_ITERATOR(ParamView, params, p) { QueryOutputItem o; o.mlxconfigName = p->mlxconfigName; o.isReadOnly = p->isReadOnlyParam; o.defVal = MLXCFG_UNKNOWN; o.currVal = MLXCFG_UNKNOWN; o.nextVal = MLXCFG_UNKNOWN; copySet(o, *p); output.push_back(o); } } void prepareQueryOutput(vector& output, vector& params, QueryType qT) { VECTOR_ITERATOR(ParamView, params, p) { bool found = false; VECTOR_ITERATOR(QueryOutputItem, output, o) { if (p->mlxconfigName == o->mlxconfigName) { copyVal(*o, *p, qT); found = true; break; } } if (!found) { QueryOutputItem o; o.mlxconfigName = p->mlxconfigName; o.isReadOnly = p->isReadOnlyParam; o.defVal = MLXCFG_UNKNOWN; o.currVal = MLXCFG_UNKNOWN; o.nextVal = MLXCFG_UNKNOWN; o.setVal = MLXCFG_UNKNOWN; copyVal(o, *p, qT); output.push_back(o); } } } void queryAux(Commander* commander, vector& params, vector& paramsToQuery, vector& failedTLVs, QueryType qT, bool isWriteOperation) { if (paramsToQuery.size() != 0) { params = paramsToQuery; commander->queryParamViews(params, isWriteOperation, qT); } else { commander->queryAll(params, failedTLVs, qT); } } string checkFailedTLVsVector(const vector& failedTLVs, string queryType) { string failedTLVsErrorMessage = ""; if (failedTLVs.size() != 0) { failedTLVsErrorMessage += " Failed to query the " + queryType + " values of the following TLVs:\n "; CONST_VECTOR_ITERATOR(string, failedTLVs, it) { failedTLVsErrorMessage += (*it) + " "; } failedTLVsErrorMessage += "\n"; } return failedTLVsErrorMessage; } void MlxCfg::editAndPushItem(std::vector& queryOutputItemVector, QueryOutputItem& item, u_int32_t arrayIndex) { if (isIndexedStartFromOneSupported(getArrayPrefix(item.mlxconfigName))) { item.strNextVal = "Array[1.." + numToStr((arrayIndex * MAX_ARRAY_SIZE)) + "]"; } else { item.strNextVal = "Array[0.." + numToStr((arrayIndex * MAX_ARRAY_SIZE) - 1) + "]"; } item.strCurrVal = item.strNextVal; item.strDefVal = item.strNextVal; if (arrayIndex > 1) { item.mlxconfigName = getArrayPrefix(item.mlxconfigName); } queryOutputItemVector.push_back(item); } void MlxCfg::removeContinuanceArray(std::vector& OutputItemOut, std::vector& OutputItemIn) { QueryOutputItem* queryItem = NULL; u_int32_t arrayCounter = 0; VECTOR_ITERATOR(QueryOutputItem, OutputItemIn, o) { if (getArraySuffix(o->mlxconfigName) == getArraySuffixByInterval(arrayCounter * MAX_ARRAY_SIZE) && !isIndexedMlxconfigName(o->mlxconfigName)) { arrayCounter++; queryItem = &*o; continue; } // in case that we have another continuance array right after end of a continuance array else if (getArraySuffix(o->mlxconfigName) == getArraySuffixByInterval(0) && queryItem != NULL && !isIndexedMlxconfigName(o->mlxconfigName)) { editAndPushItem(OutputItemOut, *queryItem, arrayCounter); arrayCounter = 1; queryItem = &*o; continue; } if (queryItem != NULL) { editAndPushItem(OutputItemOut, *queryItem, arrayCounter); } queryItem = NULL; arrayCounter = 0; OutputItemOut.push_back(*o); } // if item is not null (we have last member that need push) if (queryItem != NULL) { editAndPushItem(OutputItemOut, *queryItem, arrayCounter); } } mlxCfgStatus MlxCfg::queryDevCfg(Commander* commander, const char* dev, bool isWriteOperation, const char* pci, int devIndex, bool printNewCfg) { (void)pci; std::vector output; std::vector newoutput; std::vector params, defaultParams, currentParams; bool failedToGetCfg = false, isParamsDiffer = false; bool isParamsReadOnly = false; bool defaultSupported = false, currentSupported = false; bool showDefault = false, showCurrent = false; printOpening(commander->mf(), dev, devIndex); printf("\n"); vector defaultFailedTLVs, currentFailedTLVs, nextFailedTLVs; try { if (_mlxParams.enableVerbosity) { if (commander->isDefaultSupported()) { defaultSupported = true; } if (commander->isCurrentSupported()) { currentSupported = true; } } showDefault = defaultSupported; showCurrent = currentSupported; printConfHeader(showDefault, printNewCfg, showCurrent); printf("\n"); if (printNewCfg) { VECTOR_ITERATOR(ParamView, _mlxParams.setParams, p) { commander->updateParamViewValue(*p, p->setVal); } prepareSetInput(output, _mlxParams.setParams); } if (showDefault) { queryAux(commander, defaultParams, _mlxParams.setParams, defaultFailedTLVs, QueryDefault, isWriteOperation); } if (showCurrent) { queryAux(commander, currentParams, _mlxParams.setParams, currentFailedTLVs, QueryCurrent, isWriteOperation); } queryAux(commander, params, _mlxParams.setParams, nextFailedTLVs, QueryNext, isWriteOperation); } catch (MlxcfgException& e) { err(false, "%s", e._err.c_str()); return MLX_CFG_ERROR_EXIT; } if (showDefault) { prepareQueryOutput(output, defaultParams, QueryDefault); } if (showCurrent) { prepareQueryOutput(output, currentParams, QueryCurrent); } prepareQueryOutput(output, params, QueryNext); removeContinuanceArray(newoutput, output); // print output table: VECTOR_ITERATOR(QueryOutputItem, newoutput, o) { printSingleParam( o->mlxconfigName.c_str(), *o, QUERY_NEXT_MASK | (showDefault ? QUERY_DEFAULT_MASK : 0) | (showCurrent ? QUERY_CURRENT_MASK : 0), printNewCfg); isParamsDiffer |= (showDefault && (o->nextVal != o->defVal)) || (showCurrent && (o->nextVal != o->currVal)); isParamsReadOnly |= o->isReadOnly; } string failedTLVsErrorMessage = "Failed to query some of the TLVs:\n"; failedTLVsErrorMessage += checkFailedTLVsVector(defaultFailedTLVs, "default"); failedTLVsErrorMessage += checkFailedTLVsVector(currentFailedTLVs, "current"); failedTLVsErrorMessage += checkFailedTLVsVector(nextFailedTLVs, "next"); if (isParamsDiffer) { printf("The '*' shows parameters with next value different " "from default/current value.\n"); } if (isParamsReadOnly) { printf("\nThe 'RO' shows parameters which are for read only and cannot be changed\n"); } if (_mlxParams.enableVerbosity) { if (!defaultSupported && !currentSupported) { printf(DEFAULT_CURRENT_NOT_SUPPORTED_PREFIX "default and current configurations\n"); } else if (!defaultSupported) { printf(DEFAULT_CURRENT_NOT_SUPPORTED_PREFIX "default configurations\n"); } else if (!currentSupported) { printf(DEFAULT_CURRENT_NOT_SUPPORTED_PREFIX "current configurations\n"); } } if (params.size() == 0) { err(false, "Device doesn't support any configuration changes."); return MLX_CFG_ERROR_EXIT; } if (defaultFailedTLVs.size() != 0 || currentFailedTLVs.size() != 0 || nextFailedTLVs.size() != 0) { err(false, "%s", failedTLVsErrorMessage.c_str()); return MLX_CFG_ERROR; } return failedToGetCfg ? MLX_CFG_ERROR : MLX_CFG_OK; } mlxCfgStatus MlxCfg::queryDevCfg(const char* dev, const char* pci, int devIndex, bool printNewCfg) { mlxCfgStatus rc; Commander* commander = NULL; bool isWriteOperation = false; try { commander = Commander::create(string(dev), _mlxParams.dbName); } catch (MlxcfgException& e) { delete commander; return err(false, "%s", e._err.c_str()); } rc = queryDevCfg(commander, dev, isWriteOperation, pci, devIndex, printNewCfg); delete commander; return rc; } const char* MlxCfg::getConfigWarning(const string& mlx_config_name, const string& set_val) { if (mlx_config_name == DISABLE_SLOT_POWER_LIMITER) { if (set_val == "1" || strcasecmp(set_val.c_str(), "true") == 0) { return DISABLE_SLOT_POWER_LIMITER_WARN; } } return NULL; } mlxCfgStatus MlxCfg::setDevCfg() { Commander* commander = NULL; bool isWriteOperation = true; try { commander = Commander::create(string(_mlxParams.device), _mlxParams.dbName); } catch (MlxcfgException& e) { delete commander; err(false, "%s", e._err.c_str()); printErr(); return MLX_CFG_ERROR; } // check if there is a set of DISABLE_SLOT_POWER // for mlx_config_name VECTOR_ITERATOR(ParamView, _mlxParams.setParams, p) { const char* warning_msg = getConfigWarning(p->mlxconfigName, p->setVal); if (warning_msg) { if (!askUser(warning_msg, false, false)) { delete commander; printErr(); return MLX_CFG_ABORTED; } } } if (queryDevCfg(commander, _mlxParams.device.c_str(), isWriteOperation, NULL, 1, true) == MLX_CFG_ERROR_EXIT) { delete commander; printErr(); return MLX_CFG_ERROR; } // even if there is problem fetching the current cfg we will attempt to write the new info // if the user agrees if (_mlxParams.force) { printf("\n-W- Force flag specified, the validity of the Parameters will not be checked !\n"); printf("-W- Incorrect configuration might yield unexpected results. running in this mode is not recommended."); } // ask user if (!askUser("Apply new Configuration?")) { delete commander; printErr(); return MLX_CFG_ABORTED; } try { printf("Applying... "); commander->setCfg(_mlxParams.setParams, _mlxParams.force); printf("Done!\n"); const char* resetStr = commander->loadConfigurationGetStr(); printf("-I- %s\n", resetStr); delete commander; return MLX_CFG_OK; } catch (MlxcfgException& e) { delete commander; printf("Failed!\n"); err(true, "%s", e._err.c_str()); return MLX_CFG_ERROR; } } mlxCfgStatus MlxCfg::resetDevsCfg() { // check if a single device was specified and apply reset for this device only if (_mlxParams.device.length()) { char buff[256] = {0}; snprintf(buff, 256, "Reset configuration for device %s?", _mlxParams.device.c_str()); if (!askUser(buff)) { printErr(); return MLX_CFG_ABORTED; } printf("Applying... "); if (resetDevCfg(_mlxParams.device.c_str())) { printf("Failed!\n"); printErr(); return MLX_CFG_ERROR; } } else { // reset all devices. int numOfDev; dev_info* dev = mdevices_info(MDEVS_TAVOR_CR, &numOfDev); if (dev == NULL) { return err(true, "Failed to get devices."); } if (numOfDev == 0) { mdevices_info_destroy(dev, numOfDev); return err(true, NO_DEV_ERR); } if (!askUser("Reset configuration for all devices?")) { printErr(); mdevices_info_destroy(dev, numOfDev); return MLX_CFG_ABORTED; } printf("Applying... "); dev_info* devPtr = dev; bool shouldFail = false; for (int i = 0; i < numOfDev; i++) { if (resetDevCfg(devPtr->pci.conf_dev)) { shouldFail = true; } devPtr++; } mdevices_info_destroy(dev, numOfDev); if (shouldFail) { printf("Failed!\n"); return MLX_CFG_ERROR; } } // done successfully printf("Done!\n"); printf("-I- Please reboot machine to load new configurations.\n"); return MLX_CFG_OK; } mlxCfgStatus MlxCfg::clrDevSem() { Commander* commander = NULL; mlxCfgStatus rc = MLX_CFG_OK; printf("-W- Forcefully clearing device Semaphore...\n"); try { commander = Commander::create(_mlxParams.device, _mlxParams.dbName); commander->clearSemaphore(); } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (commander != NULL) { delete commander; } if (rc == MLX_CFG_OK) { printf(" Done!\n"); } else { printf(" Failed!\n"); } return rc; } mlxCfgStatus MlxCfg::devRawCfg(RawTlvMode mode) { Commander* commander = NULL; try { commander = Commander::create(_mlxParams.device, _mlxParams.dbName); // open file std::ifstream ifs(_mlxParams.rawTlvFile.c_str()); if (ifs.fail()) { delete commander; return err(true, "Failed to open file: %s", _mlxParams.rawTlvFile.c_str()); } std::vector > rawTlvsAsDw; rawTlvsAsDw.resize(0); // Check file Sig std::string startLine; std::getline(ifs, startLine); if (startLine != MLNX_RAW_TLV_FILE_SIG) { delete commander; return err(true, "Invalid raw TLV file header."); } // parse the rest of the Lines int lineIdx = 1; for (std::string line; std::getline(ifs, line); lineIdx++) { std::vector rawTlvVec; if (line.empty() || line[0] == '%') { // comment - skip continue; } // convert line to DW if (tlvLine2DwVec(line, rawTlvVec)) { delete commander; return err(true, "Failed to parse Raw TLV at line %d: %s", lineIdx, _errStr.c_str()); } rawTlvsAsDw.push_back(rawTlvVec); } ifs.close(); // dump raw TLVs from the file std::string dumpStr; int tlvIdx = 1; if (mode == SET_RAW) { for (std::vector >::iterator it = rawTlvsAsDw.begin(); it != rawTlvsAsDw.end(); it++, tlvIdx++) { commander->dumpRawCfg(*it, dumpStr); printf("Raw TLV #%d Info:\n%s\n", tlvIdx, dumpStr.c_str()); } } // ask user if (mode == SET_RAW) { if (!askUser("Operation intended for advanced users.\n " "Are you sure you want to apply raw TLV file?")) { printErr(); delete commander; return MLX_CFG_ABORTED; } printf("Applying... "); } tlvIdx = 1; // set each of the raw TLVs std::vector queryData; for (std::vector >::iterator it = rawTlvsAsDw.begin(); it != rawTlvsAsDw.end(); it++, tlvIdx++) { if (mode == SET_RAW) { commander->setRawCfg(*it); } else { queryData = commander->getRawCfg(*it); commander->dumpRawCfg(queryData, dumpStr); printf("Raw TLV #%d Info:\n%s\n", tlvIdx, dumpStr.c_str()); } } // send mfrl command to fw // this command indicate to the fw that next time perst signal go down //[reboot] fw need to perform reset ) commander->loadConfigurationGetStr(); } catch (MlxcfgException& e) { delete commander; return err(true, "Failed to run %s command: %s", mode == SET_RAW ? "set_raw" : "get_raw", e._err.c_str()); } if (commander != NULL) { delete commander; } // done successfully printf("Done!\n"); if (mode == SET_RAW) { printf("-I- Please reboot machine to load new configurations.\n"); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::backupCfg() { FILE* file; Commander* commander = NULL; vector views; try { commander = Commander::create(_mlxParams.device, _mlxParams.dbName); printf("Collecting...\n"); commander->backupCfgs(views); delete commander; } catch (MlxcfgException& e) { printf(" Failed!\n"); if (commander) { delete commander; } return err(true, "Failed to backup the configurations: %s", e._err.c_str()); } // check if views empty if (views.empty()) { printf("No TLVs were found.\n"); } else { // open file printf("Saving output...\n"); file = fopen(_mlxParams.rawTlvFile.c_str(), "w"); if (file == NULL) { return err(true, "Failed to open file: %s", _mlxParams.rawTlvFile.c_str()); } fprintf(file, "%s\n", MLNX_RAW_TLV_FILE_SIG); for (std::vector::iterator it = views.begin(); it != views.end(); it++) { // u_int32_t tlvType = it->type_index; // tlvType += it->type_class << 24; fprintf(file, "%% TLV Type: 0x%08x, Writer ID: %s(0x%02x)" ", Writer Host ID: 0x%02x\n", it->type, writerIdToStr((WriterId)(it->writerId)).c_str(), it->writerId, it->writerHostId); vector v = it->tlvBin; for (size_t i = 0; i < v.size() / 4; i++) { fprintf(file, "0x%08x ", __cpu_to_be32(((u_int32_t*)v.data())[i])); } fprintf(file, "\n"); } fclose(file); printf("Done!\n"); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::tlvLine2DwVec(const std::string& tlvStringLine, std::vector& tlvVec) { tlvVec.resize(0); std::string dwStr; u_int32_t dw; char* p = NULL; std::istringstream isstm(tlvStringLine); while (isstm >> dwStr) { dw = strtoul(dwStr.c_str(), &p, 0); if (*p) { return err(false, "Input is not an unsigned number: %s", dwStr.c_str()); } tlvVec.push_back(dw); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::resetDevCfg(const char* dev) { Commander* commander = NULL; mlxCfgStatus rc = MLX_CFG_OK; try { commander = Commander::create(dev, _mlxParams.dbName); commander->invalidateCfgs(); commander->loadConfigurationGetStr(); // why to call this? seems needless } catch (MlxcfgException& e) { err(false, "%s", e._err.c_str()); rc = MLX_CFG_ERROR; } if (commander) { delete commander; } return rc; } mlxCfgStatus MlxCfg::showDevConfs() { Commander* commander = NULL; mlxCfgStatus rc = MLX_CFG_OK; try { commander = Commander::create(_mlxParams.device, _mlxParams.dbName); printf("\nList of configurations the device %s may support:\n", _mlxParams.device.c_str()); commander->printLongDesc(stdout); } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (commander) { delete commander; } return rc; } mlxCfgStatus MlxCfg::readBinFile(string fileName, vector& buff) { streampos size; std::ifstream ifs(fileName.c_str(), ios::in | ios::binary | ios::ate); if (ifs.fail()) { return err(true, "Failed to open file: %s", fileName.c_str()); } size = ifs.tellg(); if (size % 4 != 0) { return err(true, "File %s is not DW aligned", fileName.c_str()); } buff.resize((size_t)size / 4); ifs.seekg(0, ios::beg); ifs.read((char*)buff.data(), size); ifs.close(); return MLX_CFG_OK; } mlxCfgStatus MlxCfg::readNVInputFile(vector& buff) { return readBinFile(_mlxParams.NVInputFile, buff); } mlxCfgStatus MlxCfg::readNVInputFile(vector& lines) { std::ifstream ifs(_mlxParams.NVInputFile.c_str()); if (ifs.fail()) { return err(true, "Failed to open file: %s", _mlxParams.NVInputFile.c_str()); } for (std::string line; std::getline(ifs, line);) { lines.push_back(line); } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::readNVInputFile(string& content) { vector lines; mlxCfgStatus rc = readNVInputFile(lines); if (rc != MLX_CFG_OK) { return rc; } VECTOR_ITERATOR(string, lines, l) { content += *l; } return MLX_CFG_OK; } mlxCfgStatus MlxCfg::writeNVOutputFile(vector content) { FILE* file = fopen(_mlxParams.NVOutputFile.c_str(), "wb"); if (!file) { return err(true, "Failed to open file: %s", _mlxParams.NVOutputFile.c_str()); } for (u_int32_t i = 0; i < content.size() * 4; i += 4) { const size_t count = 4; size_t writtenCount = fwrite(((u_int8_t*)content.data()) + i, 1, count, file); if (writtenCount != count || ferror(file)) { fclose(file); return err(true, "Write failed: %s.", strerror(errno)); } } fclose(file); return MLX_CFG_OK; } mlxCfgStatus MlxCfg::writeNVOutputFile(string content) { FILE* file = fopen(_mlxParams.NVOutputFile.c_str(), "w"); if (!file) { return err(true, "Failed to open file: %s", _mlxParams.NVOutputFile.c_str()); } fprintf(file, "%s", content.c_str()); fclose(file); return MLX_CFG_OK; } mlxCfgStatus MlxCfg::writeNVOutputFile(vector lines) { string content; VECTOR_ITERATOR(string, lines, l) { content += *l; } return writeNVOutputFile(content); } mlxCfgStatus MlxCfg::genTLVsFile() { char buff[TLV_NAME_MAX_LENGTH]; vector tlvs; mlxCfgStatus rc = MLX_CFG_OK; try { GenericCommander commander(NULL, _mlxParams.dbName, _mlxParams.deviceType == Switch); commander.genTLVsList(tlvs); VECTOR_ITERATOR(string, tlvs, it) { sprintf(buff, "%-50s0\n", it->c_str()); (*it) = buff; } } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (rc == MLX_CFG_OK) { printf("Saving output...\n"); rc = writeNVOutputFile(tlvs); if (rc == MLX_CFG_OK) { printf("Done!\n"); } } return rc; } mlxCfgStatus MlxCfg::genXMLTemplate() { string xmlTemplate; vector lines, tlvs; mlxCfgStatus rc = MLX_CFG_OK; rc = readNVInputFile(lines); EXIT_IF_RC_NOT_OK(rc) VECTOR_ITERATOR(string, lines, line) { string tlvName; string tLine = mlxcfg_trim(*line); for (unsigned i = 0; i < tLine.size(); i++) { if (tLine[i] != ' ' && tLine[i] != '\t') { tlvName += tLine[i]; } else { while ((tLine[i] == ' ' || tLine[i] == '\t') && (++i < tLine.size())) { }; if ((i == tLine.size()) || (tLine[i] != '0' && tLine[i] != '1') || (i != tLine.size() - 1) || tlvName.empty()) { PRINT_SYNTAX_ERROR_AND_EXIT } if (tLine[i] == '1') { tlvs.push_back(tlvName); } break; } } if (tlvName == tLine) { PRINT_SYNTAX_ERROR_AND_EXIT } } if (tlvs.size() == 0) { printf("-E- Empty TLV configurations file was provided or no TLV configurations were selected.\n"); return MLX_CFG_ERROR; } try { GenericCommander commander(NULL, _mlxParams.dbName, _mlxParams.deviceType == Switch); commander.genXMLTemplate(tlvs, xmlTemplate, _mlxParams.allAttrs); } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (rc == MLX_CFG_OK) { printf("Saving output...\n"); rc = writeNVOutputFile(xmlTemplate); if (rc == MLX_CFG_OK) { printf("Done!\n"); } } return rc; } mlxCfgStatus MlxCfg::raw2XMLAux(bool isBin) { string xmlTemplate; vector lines; vector buff; mlxCfgStatus rc = MLX_CFG_OK; if (isBin) { rc = readNVInputFile(buff); } else { rc = readNVInputFile(lines); } EXIT_IF_RC_NOT_OK(rc) try { GenericCommander commander(NULL, _mlxParams.dbName, _mlxParams.deviceType == Switch); if (isBin) { // commander.bin2XML(buff, xmlTemplate); } else { if (lines.size() == 0) { fprintf(stderr, "-E- Empty file was provided\n"); rc = MLX_CFG_ERROR; } else { commander.raw2XML(lines, xmlTemplate); } } } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (rc == MLX_CFG_OK) { printf("Saving output...\n"); rc = writeNVOutputFile(xmlTemplate); if (rc == MLX_CFG_OK) { printf("Done!\n"); } } return rc; } mlxCfgStatus MlxCfg::raw2XML() { return raw2XMLAux(false); } mlxCfgStatus MlxCfg::XML2RawAux(bool isBin) { string xml, raw; vector binBuff; mlxCfgStatus rc = MLX_CFG_OK; rc = readNVInputFile(xml); EXIT_IF_RC_NOT_OK(rc) try { GenericCommander commander(NULL, _mlxParams.dbName, _mlxParams.deviceType == Switch); if (isBin) { commander.XML2Bin(xml, binBuff, false); } else { commander.XML2Raw(xml, raw); } } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (rc == MLX_CFG_OK) { printf("Saving output...\n"); if (isBin) { rc = writeNVOutputFile(binBuff); } else { rc = writeNVOutputFile(raw); } if (rc == MLX_CFG_OK) { printf("Done!\n"); } } return rc; } mlxCfgStatus MlxCfg::XML2Raw() { return XML2RawAux(false); } mlxCfgStatus MlxCfg::XML2Bin() { return XML2RawAux(true); } mlxCfgStatus MlxCfg::createConf() { #if defined(NO_OPEN_SSL) printf("-E- Not Implemented"); return MLX_CFG_ERROR_EXIT; #else string xml; vector < u_int32_t > buff; mlxCfgStatus rc = MLX_CFG_OK; rc = readNVInputFile(xml); EXIT_IF_RC_NOT_OK(rc) try { GenericCommander commander(NULL, _mlxParams.dbName, _mlxParams.deviceType == Switch); commander.createConf(xml, buff); if (!_mlxParams.privPemFile.empty() && !_mlxParams.keyPairUUID.empty()) { commander.sign(buff, _mlxParams.privPemFile, _mlxParams.keyPairUUID, "", ""); } else if (!_mlxParams.opensslEngine.empty() && !_mlxParams.opensslKeyId.empty() && !_mlxParams.keyPairUUID.empty()) { commander.sign(buff, "", _mlxParams.keyPairUUID, _mlxParams.opensslEngine, _mlxParams.opensslKeyId); } else { commander.sign(buff); } } catch(MlxcfgException & e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (rc == MLX_CFG_OK) { printf("Saving output...\n"); rc = writeNVOutputFile(buff); if (rc == MLX_CFG_OK) { printf("Done!\n"); } } return rc; #endif } mlxCfgStatus MlxCfg::apply() { vector buff; vector bytesBuff; Commander* commander = NULL; mlxCfgStatus rc = MLX_CFG_OK; rc = readNVInputFile(buff); EXIT_IF_RC_NOT_OK(rc) copyDwVectorToBytesVector(buff, bytesBuff); try { commander = Commander::create(_mlxParams.device, _mlxParams.dbName, true); printf("Applying...\n"); ((GenericCommander*)commander)->apply(bytesBuff); } catch (MlxcfgException& e) { printf("-E- %s\n", e._err.c_str()); rc = MLX_CFG_ERROR; } if (commander != NULL) { delete commander; } if (rc == MLX_CFG_OK) { printf("Done!\n"); } return rc; } mlxCfgStatus MlxCfg::execute(int argc, char* argv[]) { mlxCfgStatus rc = parseArgs(argc, argv); if (rc) { if (rc == MLX_CFG_OK_EXIT) { rc = MLX_CFG_OK; } else if (rc != MLX_CFG_ERROR_NO_USAGE) { printUsage(); } return rc; } mlxCfgStatus ret; switch (_mlxParams.cmd) { case Mc_ShowConfs: ret = showDevConfs(); break; case Mc_Query: ret = queryDevsCfg(); break; case Mc_Set: ret = setDevCfg(); break; case Mc_Reset: ret = resetDevsCfg(); break; case Mc_Clr_Sem: ret = clrDevSem(); break; case Mc_Set_Raw: ret = devRawCfg(SET_RAW); break; case Mc_Get_Raw: ret = devRawCfg(GET_RAW); break; case Mc_Backup: ret = backupCfg(); break; case Mc_GenTLVsFile: ret = genTLVsFile(); break; case Mc_GenXMLTemplate: ret = genXMLTemplate(); break; case Mc_Raw2XML: ret = raw2XML(); break; case Mc_XML2Raw: ret = XML2Raw(); break; case Mc_XML2Bin: ret = XML2Bin(); break; case Mc_CreateConf: ret = createConf(); break; case Mc_Apply: ret = apply(); break; default: // should not reach here. return err(true, "invalid command."); } return ret; } int main(int argc, char* argv[]) { try { initHandler(); MlxCfg mc; return mc.execute(argc, argv); } catch (std::exception& e) { printf("-E- %s\n", e.what()); return MLX_CFG_ERROR; } } mstflint-4.26.0/mlxconfig/mlxcfg_param.cpp0000644000175000017500000007435014522641732021046 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_param.cpp * * Created on: May 24, 2016 * Author: ahmads */ #include #include #include #include #include #include "../tools_layouts/adb_to_c_utils.h" #include "../common/compatibility.h" #include "mlxcfg_param.h" #include "mlxcfg_utils.h" using namespace std; #define ENABLED "True" #define DISABLED "False" #define PARAM_NAME_HEADER "name" #define PARAM_TLVNAME_HEADER "tlv_name" #define PARAM_OFFSET_HEADER "offset" #define PARAM_SIZE_HEADER "size" #define PARAM_TYPE_HEADER "type" #define PARAM_DESCRIPTION_HEADER "description" #define PARAM_TEXTUAL_VALUES_HEADER "textual_values" #define PARAM_MLXCONFIG_NAME_HEADER "mlxconfig_name" #define PARAM_DEPENDENCY_HEADER "dependency" #define PARAM_VALID_BIT_HEADER "valid_bit" #define PARAM_TEMP_VARS_HEADER "temp_vars" #define PARAM_MIN_VAL_HEADER "min_val" #define PARAM_MAX_VAL_HEADER "max_val" #define PARAM_RULE_HEADER "rule" #define PARAM_REGEX_HEADER "regex" #define PARAM_SUPPORTED_FROM_VERSION_HEADER "supported_from_version" #define PARAM_ARRAY_LENGTH "array_length" #define OPERATION_NOT_SUPPORTED "Operation is not supported" #define CHECK_IF_FIELD_FOUND(b, s) \ if (!b) \ { \ throw MlxcfgException("The Parameter field %s was not initialized", s); \ } #define CHECKFIELD(d, n) \ if (!d || (strcmp(d, "") == 0)) \ { \ throw MlxcfgException("The field: %s, cannot be empty", n); \ } u_int32_t getSizeInBits(string size) { u_int32_t bits = 0; size_t pos = size.find('.'); if (pos != string::npos) { bits += atoi(size.substr(pos + 1).c_str()); } bits += (8 * strtol(size.substr(0, pos).c_str(), NULL, 0)); return bits; } Param::Param(int columnsCount, char** dataRow, char** headerRow) : _isNameFound(false), _isTLVNameFound(false), _isOffsetFound(false), _isSizeFound(false), _isTypeFound(false), _isDescriptionFound(false), _isTextualValuesFound(false), _isMlxconfigNameFound(false), _isDependencyFound(false), _isValidBitFound(false), _isTempVarsFound(false), _isMinValFound(false), _isMaxValFound(false), _isRuleFound(false), _isRegexFound(false), _port(0), _module(-1), _supportedFromVersion(0), _arrayLength(0) { _offset = (Offset*)NULL; for (int i = 0; i < columnsCount; i++) { if (strcmp(headerRow[i], PARAM_NAME_HEADER) == 0) { CHECKFIELD(dataRow[i], headerRow[i]) _name = dataRow[i]; _isNameFound = true; } else if (strcmp(headerRow[i], PARAM_TLVNAME_HEADER) == 0) { CHECKFIELD(dataRow[i], headerRow[i]) if (!dataRow[i]) { throw MlxcfgException("Empty tlv_name field"); } _tlvName = dataRow[i]; _isTLVNameFound = true; } else if (strcmp(headerRow[i], PARAM_OFFSET_HEADER) == 0) { CHECKFIELD(dataRow[i], headerRow[i]) if (_offset) { delete _offset; } _offset = new Offset(dataRow[i]); _isOffsetFound = true; } else if (strcmp(headerRow[i], PARAM_SIZE_HEADER) == 0) { CHECKFIELD(dataRow[i], headerRow[i]) _size = dataRow[i]; _isSizeFound = true; } else if (strcmp(headerRow[i], PARAM_TYPE_HEADER) == 0) { CHECKFIELD(dataRow[i], headerRow[i]) _type = Param::str2ParamType(dataRow[i]); _isTypeFound = true; } else if (strcmp(headerRow[i], PARAM_DESCRIPTION_HEADER) == 0) { // CHECKFIELD(dataRow[i], headerRow[i]) _description = dataRow[i] ? dataRow[i] : ""; _isDescriptionFound = true; } else if (strcmp(headerRow[i], "version") == 0) { // TODO there is something in params regarding version.. check it } else if (strcmp(headerRow[i], PARAM_TEXTUAL_VALUES_HEADER) == 0) { if (dataRow[i] != NULL) { Param::str2TextualValuesMap(dataRow[i], _textualValues); } _isTextualValuesFound = true; } else if (strcmp(headerRow[i], PARAM_MLXCONFIG_NAME_HEADER) == 0) { _mlxconfigName = dataRow[i] ? dataRow[i] : ""; _isMlxconfigNameFound = true; } else if (strcmp(headerRow[i], PARAM_DEPENDENCY_HEADER) == 0) { _dependency = dataRow[i] ? dataRow[i] : ""; _isDependencyFound = true; } else if (strcmp(headerRow[i], PARAM_VALID_BIT_HEADER) == 0) { _validBit = dataRow[i] ? dataRow[i] : ""; _isValidBitFound = true; } else if (strcmp(headerRow[i], PARAM_TEMP_VARS_HEADER) == 0) { _tempVars = dataRow[i] ? dataRow[i] : ""; _isTempVarsFound = true; } else if (strcmp(headerRow[i], PARAM_MIN_VAL_HEADER) == 0) { _minVal = dataRow[i] ? dataRow[i] : ""; _isMinValFound = true; } else if (strcmp(headerRow[i], PARAM_MAX_VAL_HEADER) == 0) { _maxVal = dataRow[i] ? dataRow[i] : ""; _isMaxValFound = true; } else if (strcmp(headerRow[i], PARAM_RULE_HEADER) == 0) { _rule = dataRow[i] ? dataRow[i] : ""; _isRuleFound = true; } else if (strcmp(headerRow[i], PARAM_REGEX_HEADER) == 0) { _regex = dataRow[i] ? dataRow[i] : ""; _isRegexFound = true; } else if (strcmp(headerRow[i], PARAM_SUPPORTED_FROM_VERSION_HEADER) == 0) { _supportedFromVersion = atoi(dataRow[i]); } else if (strcmp(headerRow[i], PARAM_ARRAY_LENGTH) == 0) { _arrayLength = atoi(dataRow[i]); } else { throw MlxcfgException("Unknown parameter field: %s", headerRow[i]); } } CHECK_IF_FIELD_FOUND(_isNameFound, PARAM_NAME_HEADER) CHECK_IF_FIELD_FOUND(_isTLVNameFound, PARAM_TLVNAME_HEADER) CHECK_IF_FIELD_FOUND(_isOffsetFound, PARAM_OFFSET_HEADER) CHECK_IF_FIELD_FOUND(_isSizeFound, PARAM_SIZE_HEADER) CHECK_IF_FIELD_FOUND(_isTypeFound, PARAM_TYPE_HEADER) CHECK_IF_FIELD_FOUND(_isDescriptionFound, PARAM_DESCRIPTION_HEADER) CHECK_IF_FIELD_FOUND(_isTextualValuesFound, PARAM_TEXTUAL_VALUES_HEADER) CHECK_IF_FIELD_FOUND(_isMlxconfigNameFound, PARAM_MLXCONFIG_NAME_HEADER) CHECK_IF_FIELD_FOUND(_isDependencyFound, PARAM_DEPENDENCY_HEADER) CHECK_IF_FIELD_FOUND(_isValidBitFound, PARAM_VALID_BIT_HEADER) CHECK_IF_FIELD_FOUND(_isTempVarsFound, PARAM_TEMP_VARS_HEADER) CHECK_IF_FIELD_FOUND(_isMinValFound, PARAM_MIN_VAL_HEADER) CHECK_IF_FIELD_FOUND(_isMaxValFound, PARAM_MAX_VAL_HEADER) CHECK_IF_FIELD_FOUND(_isRuleFound, PARAM_RULE_HEADER) CHECK_IF_FIELD_FOUND(_isRegexFound, PARAM_REGEX_HEADER) if (_type == ENUM && _textualValues.empty()) { throw MlxcfgException("The parameter: %s, " "is type of ENUM but there is no any enum provided", _name.c_str()); } switch (_type) { case BOOLEAN_TYPE: _value = new BoolParamValue(_size); break; case ENUM: if (_arrayLength == 0) { _value = new EnumParamValue(_size, _textualValues); } else { _value = new EnumArrayParamValue(_size, _arrayLength, ENUM, _textualValues); } break; case INTEGER: case UNSIGNED: if (_arrayLength == 0) { _value = new UnsignedParamValue(_size); } else { _value = new ArrayParamValue(_size, _arrayLength, UNSIGNED); } break; case BINARY: if (_arrayLength == 0) { _value = new BinaryParamValue(_size); } else { _value = new ArrayParamValue(_size, _arrayLength, BINARY); } break; case STRING: _value = new StringParamValue(_arrayLength); break; case BYTES: _value = new BytesParamValue(_arrayLength); break; default: throw MlxcfgException("Unknown parameter type %d", _type); } } Param::~Param() { delete _value; delete _offset; } void Param::pack(u_int8_t* buff) { _value->pack(buff, _offset->toBigEndian(getSizeInBits(_size), _arrayLength == 0)); } void Param::unpack(u_int8_t* buff) { _value->unpack(buff, _offset->toBigEndian(getSizeInBits(_size), _arrayLength == 0)); } void Param::setVal(string val) { try { _value->setVal(val); } catch (MlxcfgException& e) { throw MlxcfgException("Cannot set the value %s for the parameter %s: %s", val.c_str(), getDisplayName().c_str(), e._err.c_str()); } } void Param::setVal(string val, u_int32_t index) { if (_arrayLength == 0 || _type == STRING || _type == BYTES) { throw MlxcfgException("Operation not supported for this type of parameters"); } ((ArrayParamValue*)_value)->setVal(val, index); } void Param::setVal(vector vals) { _value->setVal(vals); } string Param::getVal() { return _value->getVal(); } string Param::getVal(u_int32_t index) { if (_arrayLength == 0 || _type == STRING || _type == BYTES) { throw MlxcfgException("Operation not supported for this type of parameters"); } return ((ArrayParamValue*)_value)->getVal(index); } void Param::getView(ParamView& paramView) { if ((_type != BOOLEAN_TYPE && _type != ENUM && _type != INTEGER && _type != UNSIGNED && _type != BINARY) && (_arrayLength == 0 && (_type == STRING || _type == BYTES))) { throw MlxcfgException("Operation not supported"); } paramView.mlxconfigName = _mlxconfigName; paramView.description = _description; paramView.type = _type; paramView.port = _port; paramView.module = _module; paramView.textualVals = _textualValues; paramView.supportedFromVersion = _supportedFromVersion; paramView.rule = _rule; if (_arrayLength != 0 && _type != STRING && _type != BYTES) { string strVal = "Array[0.."; strVal += numToStr(_arrayLength - 1) + "]"; paramView.strVal = strVal; paramView.val = 0x0; paramView.arrayVal = ((ArrayParamValue*)_value)->getIntVals(); paramView.strArrayVal = ((ArrayParamValue*)_value)->getStrVals(); } else { paramView.val = ((UnsignedParamValue*)_value)->_value; paramView.strVal = _value->getVal(); } } string Param::getDisplayName() { string displayName = _name; displayName += (_mlxconfigName.empty()) ? "" : ("(" + _mlxconfigName + ")"); return displayName; } ParamType Param::str2ParamType(const char* s) { if (strcmp(s, "BOOL") == 0) { return BOOLEAN_TYPE; } else if (strcmp(s, "ENUM") == 0) { return ENUM; } else if (strcmp(s, "INTEGER") == 0) { return INTEGER; } else if (strcmp(s, "UNSIGNED") == 0) { return UNSIGNED; } else if (strcmp(s, "STRING") == 0) { return STRING; } else if (strcmp(s, "BINARY") == 0) { return BINARY; } else if (strcmp(s, "BYTES") == 0) { return BYTES; } throw MlxcfgException("Unknown parameter type '%s'", s); } string Param::paramType2Str(enum ParamType paramType) { if (paramType == BOOLEAN_TYPE) { return "BOOL"; ; } else if (paramType == ENUM) { return "ENUM"; } else if (paramType == INTEGER) { return "INTEGER"; } else if (paramType == UNSIGNED) { return "UNSIGNED"; } else if (paramType == STRING) { return "STRING"; } else if (paramType == BINARY) { return "BINARY"; } else if (paramType == BYTES) { return "BYTES"; } else { throw MlxcfgException("Unknown parameter type %d", paramType); } } // split a string by comma, updates result vector with all sub-strings void splitByComma(const char* s, vector& result) { int len = strlen(s); string e2v = ""; for (int i = 0; i < len; i++) { if (s[i] == ',') { result.push_back(e2v); e2v = ""; } else { e2v += s[i]; } } result.push_back(e2v); } void extractEnumAndValue(string e2v, string& e, u_int32_t& v) { size_t eqPos = e2v.find('='); if (eqPos == string::npos) { throw MlxcfgException("Enum syntax error: %s", e2v.c_str()); } e = e2v.substr(0, eqPos); v = strtol(e2v.substr(eqPos + 1).c_str(), NULL, 16); return; } void Param::extractVars(vector& result, string rule) { string tlv; for (unsigned int i = 0; i < rule.size(); i++) { if (rule[i] == '$') { tlv = ""; i++; while (i < rule.size() && (rule[i] == '_' || rule[i] == '.' || ('a' <= rule[i] && rule[i] <= 'z') || ('A' <= rule[i] && rule[i] <= 'Z') || ('0' <= rule[i] && rule[i] <= '9'))) { tlv += rule[i]; i++; } result.push_back(tlv); } } if (!tlv.empty()) { result.push_back(tlv); } } void Param::getRulesTLV(vector& result) { vector vars; extractVars(vars, _rule); extractVars(vars, _minVal); extractVars(vars, _maxVal); extractVars(vars, _tempVars); for (unsigned int i = 0; i < vars.size(); i++) { size_t pos = vars[i].find('.'); if (pos == string::npos) { continue; } // printf("-D- tlv=%s", vars[i].substr(0, pos).c_str()); result.push_back(vars[i].substr(0, pos)); } } void Param::str2TextualValuesMap(const char* s, map& m) { u_int32_t v; string e, e2v; vector e2vVector; // printf("-D- textual_values=%s\n", s); // first split the string by comma splitByComma(s, e2vVector); // extract the enum and update the map with this enum and its value for (size_t i = 0; i < e2vVector.size(); i++) { e2v = e2vVector[i]; e = ""; extractEnumAndValue(e2v, e, v); m[e] = v; } } void Param::genXMLTemplateAux(std::string& xmlTemplate, bool withVal, bool isPartOfArray, u_int32_t index) { if (_type == ENUM) { xmlTemplate += "\n"; } else if (_type == BOOLEAN_TYPE) { xmlTemplate += "\n"; } xmlTemplate += "<" + _name + (isPartOfArray ? (" index='" + numToStr(index) + "' ") : "") + ">" + (withVal ? (isPartOfArray ? getVal(index) : getVal()) : "") + ""; xmlTemplate += isPartOfArray ? "\n" : ""; } void Param::genXMLTemplate(std::string& xmlTemplate, bool withVal) { if (_arrayLength != 0 && _type != STRING && _type != BYTES) { for (u_int32_t i = 0; i < _arrayLength; i++) { genXMLTemplateAux(xmlTemplate, withVal, true, i); } } else { genXMLTemplateAux(xmlTemplate, withVal, false, 0); } } /* ParamValue Class */ ParamValue::ParamValue(string size) { _size = getSizeInBits(size); } u_int32_t ParamValue::getIntVal() { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } void ParamValue::setVal(u_int32_t) { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } void ParamValue::setVal(vector /*vals*/) { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } void ParamValue::parseValue(string, u_int32_t&, string&) { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } /* UnsignedParamValue Class */ string UnsignedParamValue::getVal() { string strVal; stringstream ss; // convert int to string ss << _value; strVal = ss.str(); return strVal; } void UnsignedParamValue::setVal(string s) { string strVal; parseValue(s, _value, strVal); } void UnsignedParamValue::setVal(const u_int32_t value) { _value = value; } void UnsignedParamValue::pack(u_int8_t* buff, u_int32_t bitOffset) { adb2c_push_bits_to_buff(buff, bitOffset, _size, _value); } void UnsignedParamValue::unpack(u_int8_t* buff, u_int32_t bitOffset) { _value = adb2c_pop_bits_from_buff(buff, bitOffset, _size); } u_int32_t UnsignedParamValue::getIntVal() { return _value; } void UnsignedParamValue::parseValueAux(string strToParse, u_int32_t& value, string& strValue, int base) { if (strToNum(strToParse, value, base)) { if ((_size == 32) && (value == MLXCFG_UNKNOWN)) { throw MlxcfgException("The value %s is reserved and cannot be used", strToParse.c_str(), _size); } else if ((_size != 32) && (value > (unsigned)((1 << _size) - 1))) { throw MlxcfgException("The value %s is not valid, as its size is %d bits", strToParse.c_str(), _size); } } else { throw MlxcfgException("Cannot parse the value"); } strValue = strToParse; } void UnsignedParamValue::parseValue(string strToParse, u_int32_t& value, string& strValue) { parseValueAux(strToParse, value, strValue); } /* EnumParamValue Class */ EnumParamValue::EnumParamValue(string size, map textualValues) : UnsignedParamValue(size), _textualValues(textualValues) { } EnumParamValue::EnumParamValue(u_int32_t size, map textualValues) : UnsignedParamValue(size), _textualValues(textualValues) { } string EnumParamValue::getVal() { map::const_iterator it; // printf("-D- textual values size = %u\n", (unsigned int)_textualValues.size()); for (it = _textualValues.begin(); it != _textualValues.end(); ++it) { // printf("-D- textual value - %s=%d\n", it->first.c_str(), it->second); if (it->second == _value) { return it->first; } } // its enum and we did not find the mapping of the value, so what to do? // do not throw exception, print the value as it return UnsignedParamValue::getVal(); }; void EnumParamValue::setVal(string strVal) { string s; parseValue(strVal, _value, s); } void EnumParamValue::setVal(u_int32_t value) { map::const_iterator it; for (it = _textualValues.begin(); it != _textualValues.end(); ++it) { if (it->second == value) { _value = value; return; } } throw MlxcfgException("Unknown value %d", value); } void EnumParamValue::parseValue(string strToParse, u_int32_t& value, string& strValue) { map::const_iterator it; // try to convert to int if (strToNum(strToParse, value)) { // try to find the enum for (it = _textualValues.begin(); it != _textualValues.end(); ++it) { // printf("-D- textual value - %s=%d\n", it->first.c_str(), it->second); if (it->second == value) { strValue = it->first; return; } } } else { for (it = _textualValues.begin(); it != _textualValues.end(); ++it) { if (strcasecmp(it->first.c_str(), strToParse.c_str()) == 0) { value = it->second; strValue = it->first; return; } } } throw MlxcfgException("Unknown value %s", strToParse.c_str()); } /* BoolParamValue Class */ BoolParamValue::BoolParamValue(string size) : EnumParamValue(size, initBoolTextualValues()) {} map BoolParamValue::initBoolTextualValues() { map m; m[DISABLED] = 0; m[ENABLED] = 1; return m; } /* BinaryParamValue Class */ string BinaryParamValue::getVal() { return numToStr(_value, true); } void BinaryParamValue::setVal(string val) { string tmpStr = val; trimHexString(val); if (val.size() > 8) { throw MlxcfgException("Value %s exceeds max allowed value(4 bytes)", tmpStr.c_str()); } parseValue(val, _value, tmpStr); } void BinaryParamValue::parseValue(string strToParse, u_int32_t& value, string& strValue) { parseValueAux(strToParse, value, strValue, 16); } void BinaryParamValue::trimHexString(string& s) { size_t pos = 0; char delimiters[] = {':', '-', ' ', '\n', '\t'}; for (unsigned int i = 0; i < sizeof(delimiters); i++) { while ((pos = s.find(delimiters[i])) != string::npos) { s.replace(pos, 1, ""); } } } /* StringParamValue Class */ string StringParamValue::getVal() { // convert the integer to a hex string return _value; } void StringParamValue::setVal(string val) { if (val.length() > _size) { throw MlxcfgException("Max allowed size is %d", _size); } _value = val; } void StringParamValue::pack(u_int8_t* buff, u_int32_t bitOffset) { unsigned int i = 0; u_int32_t byteOffset = bitOffset / 8; for (; i < _value.length(); i++) { buff[byteOffset + i] = _value[i]; } if (_value.length() < _size) { buff[byteOffset + i] = '\0'; } } void StringParamValue::unpack(u_int8_t* buff, u_int32_t bitOffset) { u_int32_t byteOffset = bitOffset / 8; for (unsigned int i = 0; i < _size; i++) { if (buff[byteOffset + i] == '\0') { break; } _value += buff[byteOffset + i]; } } /* BytesParamValue Class */ string BytesParamValue::getVal() { string strVal = ""; VECTOR_ITERATOR(BinaryParamValue, _bytes, binary) { strVal += binary->getVal(); } return strVal; } void BytesParamValue::setVal(string val) { BinaryParamValue::trimHexString(val); // check if DW aligned: if (val.length() % 8) { throw MlxcfgException("Value is not Dword aligned"); } if (val.length() / 2 > _size) { throw MlxcfgException("Value size %d bytes is larger than max size: %d bytes", val.length() / 2, _size); } u_int32_t i = 0; while (i < val.length()) { BinaryParamValue b("0x4.0"); string s = val.substr(i, 8); b.setVal(s); _bytes.push_back(b); i += 8; } } void BytesParamValue::parseValue(string, u_int32_t&, string&) { throw MlxcfgException("Not supported for BYTES types\n"); } void BytesParamValue::pack(u_int8_t* buff, u_int32_t bitOffset) { VECTOR_ITERATOR(BinaryParamValue, _bytes, binary) { binary->pack(buff, bitOffset); bitOffset += 32; } } void BytesParamValue::unpack(u_int8_t* buff, u_int32_t bitOffset) { VECTOR_ITERATOR(BinaryParamValue, _bytes, binary) { binary->unpack(buff, bitOffset); bitOffset += 32; } } void BytesParamValue::setVal(const vector& buffVal) { CONST_VECTOR_ITERATOR(u_int32_t, buffVal, it) { BinaryParamValue b("0x4.0"); b.UnsignedParamValue::setVal(*it); _bytes.push_back(b); } } ArrayParamValue::ArrayParamValue(string size, u_int32_t count, enum ParamType paramType) : ParamValue(size), _elementSizeInBits(_size / count) { if (_elementSizeInBits != 32 && _elementSizeInBits != 16 && _elementSizeInBits != 8) { throw MlxcfgException("The size of the elements of array values must be 1, 2 or 4 bytes."); } if (paramType == ENUM) { return; } for (u_int32_t i = 0; i < count; i++) { ParamValue* t; switch (paramType) { case UNSIGNED: t = new UnsignedParamValue(_elementSizeInBits); break; case BINARY: t = new BinaryParamValue(_elementSizeInBits); break; default: throw MlxcfgException("% is not supported in Array parameters!", Param::paramType2Str(paramType).c_str()); break; } _values.push_back(t); } }; ArrayParamValue::~ArrayParamValue() { for (u_int32_t i = 0; i < _values.size(); i++) { if (_values[i] != NULL) { delete _values[i]; } } } u_int32_t ArrayParamValue::getIntVal() { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } string ArrayParamValue::getVal() { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } void ArrayParamValue::setVal(string /*val*/) { throw MlxcfgException(OPERATION_NOT_SUPPORTED); } string ArrayParamValue::getVal(u_int32_t index) { if (index >= _values.size()) { // TODO give another message throw MlxcfgException("Index %d is out of range", index); } return _values.at(index)->getVal(); } void ArrayParamValue::setVal(vector vals) { if (_values.size() != vals.size()) { throw MlxcfgException("The size of the given input %d is not the same as the size of the parameter array %d", vals.size(), _values.size()); } for (u_int32_t i = 0; i < vals.size(); i++) { _values[i]->setVal(vals[i]); } } void ArrayParamValue::setVal(string val, u_int32_t index) { if (index >= _values.size()) { throw MlxcfgException("Index %d is out of range", index); } _values[index]->setVal(val); } u_int32_t ArrayParamValue::offsetToBigEndian(u_int32_t offset) { switch (_elementSizeInBits) { case 8: return (offset & 0xFFFFFFE7) + 0x18 - (offset & 0x18); case 16: return (offset & 0xFFFFFFEF) + 0x10 - (offset & 0x10); case 32: return offset; default: throw MlxcfgException("Element size %d bits is not supported", _elementSizeInBits); } } void ArrayParamValue::pack(u_int8_t* buff, u_int32_t offset) { /* The FW expect a big endian buffer for both the order of the elements in the array * and the values of each element. So if elementsInDW = 2, _values[0] will point to buff[16..31] * To understand this piece of code, try to think about these cases: * elementsInDW = 1, 2, 4 */ vector::iterator j; for (vector::iterator it = _values.begin(); it != _values.end();) { int elementsInDW = 32 / _elementSizeInBits; j = it + elementsInDW - 1; unsigned int iterations = elementsInDW; while (iterations) { (*j)->pack(buff, offsetToBigEndian(offset)); offset += _elementSizeInBits; iterations--; j--; } it += elementsInDW; } } void ArrayParamValue::unpack(u_int8_t* buff, u_int32_t offset) { vector::iterator j; for (vector::iterator it = _values.begin(); it != _values.end();) { int elementsInDW = 32 / _elementSizeInBits; j = it + elementsInDW - 1; unsigned int iterations = elementsInDW; while (iterations) { (*j)->unpack(buff, offsetToBigEndian(offset)); offset += _elementSizeInBits; iterations--; j--; } it += elementsInDW; } } void ArrayParamValue::parseValue(string strToParse, u_int32_t& val, string& strVal) { _values[0]->parseValue(strToParse, val, strVal); } vector ArrayParamValue::getIntVals() { vector v; for (vector::iterator it = _values.begin(); it != _values.end(); it++) { v.push_back((*it)->getIntVal()); } return v; } vector ArrayParamValue::getStrVals() { vector v; for (vector::iterator it = _values.begin(); it != _values.end(); it++) { v.push_back((*it)->getVal()); } return v; } EnumArrayParamValue::EnumArrayParamValue(string size, u_int32_t count, enum ParamType paramType, map textualValues) : ArrayParamValue(size, count, paramType) { for (u_int32_t i = 0; i < count; i++) { ParamValue* t = new EnumParamValue(_elementSizeInBits, textualValues); _values.push_back(t); } } mstflint-4.26.0/mlxconfig/mlxcfg_expression.cpp0000644000175000017500000001477414522641732022151 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_expression.cpp * * Created on: May 07, 2017 * Author: Ahmad Soboh */ #include #include #include "mlxcfg_utils.h" #include "mlxcfg_expression.h" using namespace std; using namespace mlxcfg; void extractVars(const string& expression, vector& vars) { string var; for (unsigned int i = 0; i < expression.size(); i++) { if (expression[i] == '$') { var = "$"; i++; while (i < expression.size() && (expression[i] == '_' || expression[i] == '.' || ('a' <= expression[i] && expression[i] <= 'z') || ('A' <= expression[i] && expression[i] <= 'Z') || ('0' <= expression[i] && expression[i] <= '9'))) { var += expression[i]; i++; } vars.push_back(var); } } if (!var.empty()) { vars.push_back(var); } } void substituteVarsValues(const string& orgExpr, const map& var2ValMap, string& expr) { string var = ""; expr = ""; for (unsigned int j = 0; j < orgExpr.size(); j++) { if (orgExpr[j] == '$') { var = "$"; j++; while (j < orgExpr.size() && (orgExpr[j] == '_' || orgExpr[j] == '.' || ('a' <= orgExpr[j] && orgExpr[j] <= 'z') || ('A' <= orgExpr[j] && orgExpr[j] <= 'Z') || ('0' <= orgExpr[j] && orgExpr[j] <= '9'))) { var += orgExpr[j]; j++; } map::const_iterator it = var2ValMap.find(var); if (it == var2ValMap.end()) { expr += var; // no value for var, so append it to expr } else { stringstream ss; ss << ((u_int32_t)it->second); expr += ss.str(); } if (j < orgExpr.size()) { expr += orgExpr[j]; } } else { expr += orgExpr[j]; } } } Expression::Expression(const string& expression) : _expression(expression) { extractVars(expression, _vars); } void Expression::getVars(vector& vars) const { vars.insert(vars.begin(), _vars.begin(), _vars.end()); } double Expression::getVarVal(const string& var) const { map::const_iterator it = _varsVal.find(var); if (it == _varsVal.end()) { throw MlxcfgException("Unknown variable: %s", var.c_str()); } return it->second; } void Expression::setVarVal(const string& var, double val) { if (find(_vars.begin(), _vars.end(), var) == _vars.end()) { throw MlxcfgException("Unknown variable: %s", var.c_str()); } _varsVal[var] = val; } mu::value_type BitwiseOr(mu::value_type a_fVal, mu::value_type b_fVal) { return (int)a_fVal | (int)b_fVal; } mu::value_type BitwiseAnd(mu::value_type a_fVal, mu::value_type b_fVal) { return (int)a_fVal & (int)b_fVal; } double Expression::evaluate() { string expression; string varXName; mu::Parser p; p.DefineFun("BitwiseOr", BitwiseOr,false); p.DefineFun("BitwiseAnd", BitwiseAnd,false); substituteVarsValues(_expression, _varsVal, expression); // find the unknown variable value VECTOR_ITERATOR(string, _vars, it) { if (_varsVal.find(*it) == _varsVal.end()) { if (varXName.empty()) { varXName = *it; } else { throw MlxcfgException("Found More than one variable " "with unknown value in the expression: %s", _expression.c_str()); } } } try { // currently lets support only one var with unknown val if (varXName.empty()) { p.SetExpr(expression); return p.Eval(); } else { double x = 0.0; const string varXTempName = "x"; size_t pos = expression.find(varXName); if (pos == string::npos) { throw MlxcfgException("Unexpected error - " "The variable '%s' was not found in " "the expression '%s'", varXName.c_str(), expression.c_str()); } expression.replace(pos, varXName.length(), varXTempName); p.DefineVar(varXTempName, &x); p.SetExpr(expression); double result = p.Eval(); _varsVal[varXName] = x; return result; } } catch (mu::Parser::exception_type& e) { throw MlxcfgException("Failed to evaluate the expression(%s): %s\n" " the original expression is: %s", expression.c_str(), e.GetMsg().c_str(), _expression.c_str()); } } mstflint-4.26.0/mlxconfig/mlxcfg_commander.cpp0000644000175000017500000001210314522641732021677 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_commander.cpp * * Created on: Jun 22, 2016 * Author: ahmads */ #include #include #include "mlxcfg_generic_commander.h" #include "mlxcfg_utils.h" using namespace std; Commander* Commander::create(std::string device, std::string dbName, bool forceCreate) { mfile* mf; int rc; u_int32_t type = 0; mf = mopen_adv(device.c_str(), (MType)(MST_DEFAULT | MST_CABLE)); if (mf == NULL) { throw MlxcfgException("Failed to open the device"); } rc = mget_mdevs_type(mf, &type); if (rc) { throw MlxcfgException("Failed to get device type"); } if (!forceCreate) { if (type & (MST_USB_DIMAX)) { throw MlxcfgException("MTUSB device is not supported."); } } Commander* cmdr = NULL; try { cmdr = create(mf, dbName); } catch (MlxcfgException& exp) { mclose(mf); throw exp; } cmdr->setExtResourceType(false); return cmdr; } Commander* Commander::create(mfile* mf, std::string dbName) { dm_dev_id_t deviceId = DeviceUnknown; u_int32_t hwDevId, hwRevId; Commander* commander = NULL; if (dm_get_device_id(mf, &deviceId, &hwDevId, &hwRevId)) { throw MlxcfgException("Failed to identify the device"); } if (dm_is_livefish_mode(mf)) { throw MlxcfgException("Device in Livefish mode is not supported"); } if ( dm_dev_is_switch(deviceId) || dm_is_5th_gen_hca(deviceId)) { if (dbName.empty()) { // take internal db file dbName = getDefaultDBName(dm_dev_is_switch(deviceId)); } commander = new GenericCommander(mf, dbName); } else { throw MlxcfgException("Unsupported device"); } return commander; } Commander::~Commander() { if (!_extResource && _mf) { mclose(_mf); } } string Commander::getDefaultDBName(bool isSwitch) { const string dbDirName = "mlxconfig_dbs"; const string hostDBName = "mlxconfig_host.db"; const string switchDBName = "mlxconfig_switch.db"; const string dbFileName = isSwitch ? switchDBName : hostDBName; string dbPathName = ""; #ifdef __WIN__ char execFilePathCStr[1024] = {0x0}; GetModuleFileName(GetModuleHandle("libmtcr-1.dll"), execFilePathCStr, 1024); dbPathName = execFilePathCStr; dbPathName = dbPathName.substr(0, dbPathName.rfind("\\") + 1); dbPathName += dbDirName + "\\" + dbFileName; #elif defined MST_UL dbPathName = DATA_PATH "/" + dbDirName + "/" + dbFileName; #else char line[1024] = {0}; string confFile = string(ROOT_PATH) + string("etc/mft/mft.conf"); FILE* fd = fopen(confFile.c_str(), "r"); if (!fd) { throw MlxcfgException("Failed to open conf file : %s\n", confFile.c_str()); } string prefix = "", dataPath = ""; while ((fgets(line, 1024, fd))) { string l = line; if (l.find(dbDirName) != string::npos) { size_t eqPos = l.find("="); if (eqPos != string::npos) { dataPath = l.substr(eqPos + 1); dataPath = mlxcfg_trim(dataPath); } } else if (l.find("mft_prefix_location") != string::npos) { size_t eqPos = l.find("="); if (eqPos != string::npos) { prefix = l.substr(eqPos + 1); prefix = mlxcfg_trim(prefix); } } } if (!prefix.empty() && !dataPath.empty()) { dbPathName = prefix + dataPath + "/" + dbFileName; } fclose(fd); #endif return dbPathName; } mstflint-4.26.0/mlxconfig/mlxcfg_db_manager.cpp0000644000175000017500000004515114522641732022022 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * MlxconfigFactory.h * * Created on: May 24, 2016 * Author: ahmads */ #include #include //#define NDEBUG //uncomment in order to enable asserts #include #include #include "mlxcfg_db_manager.h" #include "mlxcfg_utils.h" #include // clang-format off #define SQL_SELECT_ALL_TLVS \ "SELECT * FROM tlvs" #define SQL_SELECT_ALL_PARAMS \ "SELECT * FROM params" #define SQL_SELECT_TLV_BY_NAME \ "SELECT * FROM tlvs WHERE name='%s'" #define SQL_SELECT_TLV_BY_INDEX_AND_CLASS \ "SELECT * FROM tlvs WHERE id=%d and class=%d" #define SQL_SELECT_PARAMS_BY_TLV_NAME \ "SELECT * FROM params WHERE tlv_name='%s'" #define SQL_SELECT_PARAM_BY_MLXCONFIG_NAME \ "SELECT * FROM params WHERE mlxconfig_name='%s'" // clang-format on MlxcfgDBManager::MlxcfgDBManager(string dbName) : _dbName(dbName), _db(NULL), _supportedVersion(0x0), _callBackErr(""), _isAllFetched(false), _paramSqlResult(NULL) { openDB(); } MlxcfgDBManager::~MlxcfgDBManager() { VECTOR_ITERATOR(TLVConf*, fetchedTLVs, it) { delete *it; } if (!_db) { return; } sqlite3_close(_db); } void MlxcfgDBManager::checkDBVersion() { int rc; sqlite3_stmt* stmt = NULL; unsigned int dbVersion = 0x0; sqlite3_prepare_v2(_db, "PRAGMA user_version", -1, &stmt, NULL); while ((rc = sqlite3_step(stmt)) == SQLITE_ROW) { if (strcmp(sqlite3_column_name(stmt, 0), "user_version") == 0) { dbVersion = (unsigned int)sqlite3_column_int(stmt, 0); break; } } sqlite3_finalize(stmt); // releasing allocated stmt if (dbVersion != _supportedVersion) { throw MlxcfgException("Unsupported database version"); } } void MlxcfgDBManager::openDB() { if (!isDBFileExists(_dbName)) { throw MlxcfgException("Database file %s does not exist", _dbName.c_str()); } if (sqlite3_open_v2(_dbName.c_str(), &_db, SQLITE_OPEN_READONLY, 0)) { string e = sqlite3_errmsg(_db); sqlite3_close(_db); _db = NULL; throw MlxcfgException("SQL Error when opening DB: %s", e.c_str()); } checkDBVersion(); return; } void MlxcfgDBManager::execSQL(sqlite3_callback f, void* obj, const char* stat, ...) { va_list vl; char sql[1024]; char* zErrMsg = 0; va_start(vl, stat); vsnprintf(sql, sizeof(sql), stat, vl); va_end(vl); if (sqlite3_exec(_db, sql, f, obj, &zErrMsg) != SQLITE_OK) { string e = zErrMsg; sqlite3_free(zErrMsg); if (_callBackErr.empty()) { throw MlxcfgException("Cannot execute %s, %s", sql, e.c_str()); } else { throw MlxcfgException(_callBackErr.c_str()); } } } int MlxcfgDBManager::selectTLVCallBack(void* object, int argc, char** argv, char** azColName) { MlxcfgDBManager* dbManager = reinterpret_cast(object); // TODOO check this casting try { TLVConf* tlv = new TLVConf(argc, argv, azColName); dbManager->fetchedTLVs.push_back(tlv); } catch (MlxcfgException& e) { dbManager->_callBackErr = e._err; return SQLITE_ABORT; } return 0; } int MlxcfgDBManager::selectAndCreateNewTLVCallBack(void* object, int argc, char** argv, char** azColName) { TLVConf** tlv = reinterpret_cast(object); try { *tlv = new TLVConf(argc, argv, azColName); } catch (MlxcfgException& /*e*/) { return SQLITE_ABORT; } return 0; } int MlxcfgDBManager::selectAndCreateParamCallBack(void* object, int argc, char** argv, char** azColName) { TLVConf* tlv = reinterpret_cast(object); try { std::shared_ptr param = std::make_shared(argc, argv, azColName); tlv->_params.push_back(param); } catch (MlxcfgException& e) { return SQLITE_ABORT; } return 0; } int MlxcfgDBManager::selectParamCallBack(void* object, int argc, char** argv, char** azColName) { MlxcfgDBManager* dbManager = reinterpret_cast(object); // TODOO check this casting try { std::shared_ptr param = std::make_shared(argc, argv, azColName); dbManager->fetchedParams.push_back(param); } catch (MlxcfgException& e) { dbManager->_callBackErr = e._err; return SQLITE_ABORT; } // printf("-D- Added new Param = %s\n", param->_name.c_str()); return 0; } int MlxcfgDBManager::selectParamByMlxconfigNameCallBack(void* object, int argc, char** argv, char** azColName) { MlxcfgDBManager* dbManager = reinterpret_cast(object); try { dbManager->_paramSqlResult = std::make_shared(argc, argv, azColName); } catch (MlxcfgException& e) { dbManager->_callBackErr = e._err; return SQLITE_ABORT; } return 0; } void MlxcfgDBManager::getAllTLVs() { size_t i = 0, j = 0; if (_isAllFetched) { return; } // fetch from db all tlvs execSQL(selectTLVCallBack, this, SQL_SELECT_ALL_TLVS); // fetch from db all params execSQL(selectParamCallBack, this, SQL_SELECT_ALL_PARAMS); /* Fill in TLV.params vector we assume that params table is grouped by tlv name */ while (j < fetchedTLVs.size() && i < fetchedParams.size()) { std::shared_ptr p = fetchedParams[i]; if (p->_tlvName == fetchedTLVs[j]->_name && p->_port == fetchedTLVs[j]->_port && p->_module == fetchedTLVs[j]->_module) { fetchedTLVs[j]->_params.push_back(p); i++; // move to next parameter } else { j++; // move to next tlv } } if (j >= fetchedTLVs.size() && i < fetchedParams.size()) { throw MlxcfgException("A parameter without a TLV configuration: %s", fetchedParams[i]->_name.c_str()); } // TODO check if there is a tlv that does not have params _isAllFetched = true; } TLVConf* MlxcfgDBManager::getTLVByNameAux(string tlv_name, u_int32_t port, int32_t module) { VECTOR_ITERATOR(TLVConf*, fetchedTLVs, it) { TLVConf* t = *it; if (t->_name == tlv_name && t->_port == port && t->_module == module) { return t; } } return NULL; } TLVConf* MlxcfgDBManager::getAndSetTLVByNameAuxNotInitialized(string tlv_name, u_int32_t port, int32_t module) { VECTOR_ITERATOR(TLVConf*, fetchedTLVs, it) { TLVConf* tlv = *it; if (tlv->_name == tlv_name && tlv->_port == 0 && tlv->_module == -1) { if (port != 0) { tlv->_port = port; } else if (module != -1) { tlv->_module = module; } return tlv; } } return NULL; } void MlxcfgDBManager::fillInRelevantParamsOfTlv(TLVConf* tlv, u_int32_t port, int32_t module) { VECTOR_ITERATOR(std::shared_ptr, fetchedParams, p) { if ((*p)->_tlvName == tlv->_name && (*p)->_port == port && (*p)->_module == module) { tlv->_params.push_back(*p); } else if ((*p)->_tlvName == tlv->_name && (*p)->_port == 0 && (*p)->_module == -1) { if (port != 0) { (*p)->_port = port; } if (module != -1) { (*p)->_module = module; } tlv->_params.push_back(*p); } } } TLVConf* MlxcfgDBManager::fetchTLVByName(string tlvName, u_int32_t port, int32_t module) { TLVConf* tlv; const char* nc = tlvName.c_str(); execSQL(selectTLVCallBack, this, SQL_SELECT_TLV_BY_NAME, nc); tlv = getTLVByNameAux(tlvName, port, module); if (!tlv) { tlv = getAndSetTLVByNameAuxNotInitialized(tlvName, port, module); if (!tlv) { throw MlxcfgTLVNotFoundException(nc); } } // fetch the parameters execSQL(selectParamCallBack, this, SQL_SELECT_PARAMS_BY_TLV_NAME, nc); // fill in params vector of the tlv this->fillInRelevantParamsOfTlv(tlv, port, module); return tlv; } TLVConf* MlxcfgDBManager::fetchTLVByIndexAndClass(u_int32_t id, TLVClass c) { TLVConf* t; execSQL(selectTLVCallBack, this, SQL_SELECT_TLV_BY_INDEX_AND_CLASS, id, c); t = getTLVByIndexAndClassAux(id, c); if (!t) { throw MlxcfgException("The TLV configuration with index 0x%x and class 0x%x was not found", id, c); } // fetch the parameters execSQL(selectParamCallBack, this, SQL_SELECT_PARAMS_BY_TLV_NAME, t->_name.c_str()); // fill in params vector of the tlv VECTOR_ITERATOR(std::shared_ptr, fetchedParams, p) { if ((*p)->_tlvName == t->_name && (*p)->_port == t->_port) { t->_params.push_back(*p); } } return t; } TLVConf* MlxcfgDBManager::getAndCreateTLVByName(string tlvName, u_int32_t port, int32_t module) { TLVConf* tlv = NULL; const char* nc = tlvName.c_str(); execSQL(selectAndCreateNewTLVCallBack, &tlv, SQL_SELECT_TLV_BY_NAME, nc); if (!tlv) { throw MlxcfgTLVNotFoundException(nc); } if (port != 0) { tlv->_port = port; } else if (module != -1) { tlv->_module = module; } // fetch the parameters execSQL(selectAndCreateParamCallBack, tlv, SQL_SELECT_PARAMS_BY_TLV_NAME, nc); VECTOR_ITERATOR(std::shared_ptr, tlv->_params, p) { (*p)->_port = port; if (port != 0) { (*p)->_port = port; } else if (module != -1) { (*p)->_module = module; } } return tlv; } TLVConf* MlxcfgDBManager::getTLVByNameOnlyAux(string tlv_name) { VECTOR_ITERATOR(TLVConf*, fetchedTLVs, it) { TLVConf* t = *it; if (t->_name == tlv_name) { return t; } } return NULL; } TLVConf* MlxcfgDBManager::getTLVByName(string tlvName, u_int32_t port, int32_t module) { TLVConf* tlv = NULL; tlv = getTLVByNameAux(tlvName, port, module); if (!tlv) { tlv = fetchTLVByName(tlvName, port, module); } return tlv; } TLVConf* MlxcfgDBManager::getDependencyTLVByName(string tlvName, u_int32_t cTLVPort, int32_t cTLVModule) { TLVConf* dependendTLV = getTLVByNameOnlyAux(tlvName); if (!dependendTLV) { getAllTLVs(); dependendTLV = getTLVByNameOnlyAux(tlvName); if (!dependendTLV) { // TLV not in DB return NULL; } } if ((dependendTLV->_tlvClass == TLVClass::Physical_Port) || (dependendTLV->_tlvClass == TLVClass::Module)) { return getTLVByName(tlvName, cTLVPort, cTLVModule); // get TLV with same port and module as the requester TLV } else // this is not port / module related tlv, ignore the requeter port/module (for cross class dependency) { return getTLVByName(tlvName, 0, -1); } } TLVConf* MlxcfgDBManager::getTLVByIndexAndClassAux(u_int32_t id, TLVClass c) { VECTOR_ITERATOR(TLVConf*, fetchedTLVs, it) { TLVConf* t = *it; if (t->_id == id && t->_tlvClass == c) { return t; } } return NULL; } bool MlxcfgDBManager::isParamMlxconfigNameExist(std::string mlxconfigName) { execSQL(selectParamByMlxconfigNameCallBack, this, SQL_SELECT_PARAM_BY_MLXCONFIG_NAME, mlxconfigName.c_str()); return (mlxconfigName == _paramSqlResult->_mlxconfigName); } tuple MlxcfgDBManager::splitMlxcfgNameAndPortOrModule(std::string mlxconfigName, SPLITBY splitBy, mfile* mf) { char* ending = (char*)" "; int maxNum = 0; int minNum = 0; char* ending_position = nullptr; char* last_ending_position = nullptr; if (splitBy == PORT) { ending = (char*)"_P"; maxNum = TLVConf::getMaxPort(mf); minNum = 0; } else { ending = (char*)"_M"; maxNum = TLVConf::getMaxModule(); minNum = -1; } int port_num = minNum; char* mlxconfigName_char = (char*)mlxconfigName.c_str(); ending_position = strstr(mlxconfigName_char, ending); while (ending_position != nullptr) { last_ending_position = ending_position; ending_position = strstr(last_ending_position + strlen(ending), ending); } if (last_ending_position != nullptr) { int index = last_ending_position - mlxconfigName_char; string endingStr = mlxconfigName.substr(index + strlen(ending), mlxconfigName.length() - index); string newMlxconfigName = mlxconfigName; newMlxconfigName.resize(index); try { port_num = std::stoi(endingStr); } catch (const std::exception& e) { return make_tuple(mlxconfigName, minNum); } if (minNum < port_num && port_num <= maxNum) { return make_tuple(newMlxconfigName, port_num); } return make_tuple(mlxconfigName, minNum); } return make_tuple(mlxconfigName, minNum); } TLVConf* MlxcfgDBManager::findTLVInExisting(std::string mlxconfigName, std::string noPortModuleMlxcfgName, u_int32_t port, u_int32_t index, int32_t module) { VECTOR_ITERATOR(TLVConf*, fetchedTLVs, it) { if (((port != 0 || module != -1) && (*it)->findParamByMlxconfigNamePortModule(noPortModuleMlxcfgName, port, module)) || (*it)->findParamByMlxconfigNamePortModule(mlxconfigName, port, module) || (*it)->findParamByMlxconfigNamePortModule(mlxconfigName + getArraySuffixByInterval(index), port, module)) { if (port == (*it)->_port && module == (*it)->_module) { return (*it); } } } return NULL; } void MlxcfgDBManager::findTLVInDB(string mlxconfigName, u_int32_t index) { // Try to find it in DB:dd execSQL(selectParamByMlxconfigNameCallBack, this, SQL_SELECT_PARAM_BY_MLXCONFIG_NAME, mlxconfigName.c_str()); // if not found try to find it with continuance array suffix if (!_paramSqlResult) { string newName = mlxconfigName + getArraySuffixByInterval(index); execSQL(selectParamByMlxconfigNameCallBack, this, SQL_SELECT_PARAM_BY_MLXCONFIG_NAME, newName.c_str()); } if (!_paramSqlResult) { string suffix = ""; if (index > 0) { if (isIndexedStartFromOneSupported(mlxconfigName)) { index++; } suffix = "[" + numToStr(index) + "]"; } throw MlxcfgException("Unknown Parameter: %s", (mlxconfigName + suffix).c_str()); } } tuple MlxcfgDBManager::getMlxconfigNamePortModule(string mlxconfigName, mfile* mf) { u_int32_t port = 0; int32_t module = -1; auto namePortTuple = splitMlxcfgNameAndPortOrModule(mlxconfigName, PORT, mf); auto nameModuleTuple = splitMlxcfgNameAndPortOrModule(mlxconfigName, MODULE, mf); if (get<1>(namePortTuple) != 0) { port = get<1>(namePortTuple); mlxconfigName = get<0>(namePortTuple); } else if (get<1>(nameModuleTuple) != -1) { module = get<1>(nameModuleTuple); mlxconfigName = get<0>(nameModuleTuple); } return make_tuple(mlxconfigName, port, module); } TLVConf* MlxcfgDBManager::getTLVByParamMlxconfigName(std::string mlxconfigName, u_int32_t index, mfile* mf) { string tlvName = ""; auto ret = this->getMlxconfigNamePortModule(mlxconfigName, mf); string mlxconfigNameNoPortModuleName = get<0>(ret); u_int32_t port = get<1>(ret); int32_t module = get<2>(ret); TLVConf* existingTlv = findTLVInExisting(mlxconfigName, mlxconfigNameNoPortModuleName, port, index, module); if (existingTlv != NULL && existingTlv->_port == port && existingTlv->_module == module) { return existingTlv; } mlxconfigName = mlxconfigNameNoPortModuleName; findTLVInDB(mlxconfigName, index); tlvName = _paramSqlResult->_tlvName; _paramSqlResult.reset(); _paramSqlResult = NULL; TLVConf* tlv = fetchTLVByName(tlvName, port, module); tlv->CheckModuleAndPortMatchClass(module, port, mlxconfigName); return tlv; } TLVConf* MlxcfgDBManager::getTLVByIndexAndClass(u_int32_t id, TLVClass c) { TLVConf* t = NULL; t = getTLVByIndexAndClassAux(id, c); if (!t) { t = fetchTLVByIndexAndClass(id, c); } return t; } inline bool MlxcfgDBManager::isDBFileExists(const std::string& name) { if (FILE* file = fopen(name.c_str(), "r")) { fclose(file); return true; } else { return false; } } /* string MlxcfgDBManagerException::getMessageByCode(ExceptionCode c) const{ switch(c) { case DB_FILE_DOES_NOT_EXIST: return "Database file does not exist"; case SQL_ERROR: return "SQL Error: " + _info; case PARAM_DOES_NOT_BELONG_TO_TLV: return "A parameter does not belong to any TLV Configuration: " + _info; case UNKNOWN: default: return "Unknown"; } }*/ mstflint-4.26.0/mlxconfig/mlxcfg_utils.h0000644000175000017500000001411114522641732020540 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_utils.h * * Created on: Jun 20, 2016 * Author: ahmads */ #ifndef MLXCFG_UTILS_H_ #define MLXCFG_UTILS_H_ #define IDENT " " #define IDENT2 IDENT IDENT #define IDENT3 "\t\t" #define IDENT4 IDENT2 IDENT #include #include #include #include using namespace std; enum QueryType { QueryNext, QueryCurrent, QueryDefault }; #define QUERY_NEXT_MASK (1 << QueryNext) #define QUERY_CURRENT_MASK (1 << QueryCurrent) #define QUERY_DEFAULT_MASK (1 << QueryDefault) enum WriterId { WRITER_ID_UNSPECIFIED = 0x0, WRITER_ID_CHASSIS_BMC = 0x1, WRITER_ID_MAD = 0x2, WRITER_ID_BMC = 0x3, WRITER_ID_CMD_IF = 0x4, WRITER_ID_ICMD = 0x5, WRITER_ID_ICMD_UEFI_HII = 0x6, WRITER_ID_ICMD_UEFI_CLP = 0x7, WRITER_ID_ICMD_FLEXBOOT = 0x8, WRITER_ID_ICMD_MLXCONFIG = 0x9, WRITER_ID_ICMD_USER1 = 0xa, WRITER_ID_ICMD_USER2 = 0xb, WRITER_ID_ICMD_MLXCONFIG_SET_RAW = 0xc, WRITER_ID_OTHER = 0x1f, WRITER_ID_LAST = 0x20 }; enum RawTlvMode { SET_RAW, GET_RAW }; typedef enum { UNSUPPORTED_DEVICE = -1, HCA = 0, Switch = 1, LinkX = 2 } Device_Type; #define VECTOR_ITERATOR(t, v, i) for (vector::iterator i = v.begin(); i != v.end(); ++i) #define CONST_VECTOR_ITERATOR(t, v, i) for (vector::const_iterator i = v.begin(); i != v.end(); ++i) #define SET_ITERATOR(t, v, i) for (std::set::iterator i = v.begin(); i != v.end(); ++i) #define MAP_ITERATOR(t1, t2, m, i) for (std::map::iterator i = m.begin(); i != m.end(); ++i) #define VECTOR_BE32_TO_CPU(buff) \ for (unsigned int i = 0; i < buff.size(); i++) \ { \ buff[i] = __be32_to_cpu(buff[i]); \ } #define MAX_ARRAY_SIZE 32 /* * Debug print MACRO of the NV Tlvs: */ // #define _ENABLE_DEBUG_ #ifdef _ENABLE_DEBUG_ #define DEBUG_PRINT_SEND(data_struct, struct_name) \ printf("-I- Data Sent:\n"); \ tools_open_##struct_name##_print(data_struct, stdout, 1) #define DEBUG_PRINT_RECEIVE(data_struct, struct_name) \ printf("-I- Data Received:\n"); \ tools_open_##struct_name##_print(data_struct, stdout, 1) #else #define DEBUG_PRINT_SEND(data_struct, struct_name) #define DEBUG_PRINT_RECEIVE(data_struct, struct_name) #endif #define CHECK_RC(rc) \ if (rc) \ { \ return rc; \ } #define MLXCFG_UNKNOWN 0xffffffff typedef enum { Device_Name, Device_Description } info_type_t; void dealWithSignal(); MError mnvaCom5thGen(mfile* mf, u_int8_t* buff, u_int16_t len, u_int32_t tlvType, reg_access_method_t method, QueryType qT = QueryNext); MError nvqcCom5thGen(mfile* mf, u_int32_t tlvType, bool& suppRead, bool& suppWrite, u_int32_t& version); MError nvdiCom5thGen(mfile* mf, u_int32_t tlvType); bool strToNum(std::string str, u_int32_t& num, int base = 0); std::string numToStr(u_int32_t num, bool isHex = false); std::string numToStrFormatted(u_int32_t num, bool isHex = false); vector splitStr(const string s, char d); string mlxcfg_rtrim(string s); string mlxcfg_ltrim(string s); string mlxcfg_trim(string s); string writerIdToStr(WriterId writerId); void copyDwVectorToBytesVector(const vector& dwV, vector& bV); void copyBytesVectorToDwVector(const vector& bV, vector& dwV); string parseIndexStr(const string& indexedMlxconfigName); void parseIndexedMlxconfigName(const string& indexedMlxconfigName, string& mlxconfigName, u_int32_t& index); void extractIndexes(const string& indexesStr, vector& indexes); bool isIndexedStartFromOneSupported(const string& mlxconfigName); string increaseIndexIfNeeded(const string& name); bool isIndexedMlxconfigName(const string& mlxconfigName); string getArraySuffixByInterval(u_int32_t interval); string getArraySuffix(const string& mlxconfigName); string getArrayPrefix(const string& mlxconfigName); bool getDeviceInformationString(mfile* mf, info_type_t op, vector& infoString); Device_Type getDeviceTypeFromString(string inStr); class MlxcfgException : public exception { public: std::string _err; MlxcfgException(const char* fmt, ...); ~MlxcfgException() throw(){}; virtual const char* what() const throw() { return _err.c_str(); } }; class MlxcfgTLVNotFoundException : public MlxcfgException { public: MlxcfgTLVNotFoundException(const char* cTLVName); ~MlxcfgTLVNotFoundException() throw(){}; }; #endif /* MLXCFG_UTILS_H_ */ mstflint-4.26.0/mlxconfig/Makefile.am0000755000175000017500000001106514522641732017733 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in PYTHON_WRAPPER_SCRIPT = ../common/python_wrapper SUBDIRS = mlxconfig_dbs AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/tools_layouts \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/cmdif \ -I$(top_srcdir)/tools_res_mgmt AM_CPPFLAGS += $(MUPARSER_CFLAGS) $(SQLITE_CFLAGS) $(COMPILER_FPIC) AM_CXXFLAGS = -pthread -Wall -W -g -MP -MD -pipe -Wno-deprecated-declarations $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" bin_PROGRAMS = mstconfig MLXPRIVHOST_PYTHON_WRAPPER = mstprivhost bin_SCRIPTS = ${MLXPRIVHOST_PYTHON_WRAPPER} ${MLXPRIVHOST_PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ mlxprivhostlibdir = $(libdir)/mstflint/python_tools/$(MLXPRIVHOST_PYTHON_WRAPPER) mlxprivhostlib_DATA = $(MLXPRIVHOST_PYTHON_WRAPPER).py noinst_LTLIBRARIES = libmlxcfg.la libmlxcfg_la_SOURCES = mlxcfg_status.h mlxcfg_utils.h mlxcfg_utils.cpp mlxcfg_view.h \ mlxcfg_expression.h mlxcfg_expression.cpp \ mlxcfg_db_items.h mlxcfg_db_items.cpp \ mlxcfg_db_manager.h mlxcfg_db_manager.cpp mlxcfg_param.h mlxcfg_param.cpp mlxcfg_tlv.h mlxcfg_tlv.cpp \ mlxcfg_commander.h mlxcfg_commander.cpp mlxcfg_generic_commander.h mlxcfg_generic_commander.cpp libmlxcfg_la_DEPENDENCIES = \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(MUPARSER_LIBS) \ $(SQLITE_LIBS) libmlxcfg_la_LIBADD = $(libmlxcfg_la_DEPENDENCIES) ${LDL} mstconfig_DEPENDENCIES = \ libmlxcfg.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(MUPARSER_LIBS) \ $(SQLITE_LIBS) mstconfig_LDADD = $(mstconfig_DEPENDENCIES) ${LDL} mstconfig_LDFLAGS = -static if DISABLE_XML2 AM_CXXFLAGS += -DDISABLE_XML2 else mstconfig_LDADD += -lxml2 libmlxcfg_la_LIBADD += -lxml2 endif if ENABLE_INBAND mstconfig_LDADD += $(top_builddir)/mad_ifc/libmad_ifc.la libmlxcfg_la_LIBADD += $(top_builddir)/mad_ifc/libmad_ifc.la else endif if ENABLE_OPENSSL mstconfig_LDADD += $(top_builddir)/mlxsign_lib/libmlxsign.la -lcrypto -lssl libmlxcfg_la_LIBADD += $(top_builddir)/mlxsign_lib/libmlxsign.la -lcrypto -lssl else AM_CXXFLAGS += -DNO_OPEN_SSL endif mstconfig_SOURCES = mlxcfg_ui.h mlxcfg_parser.cpp mlxcfg_ui.cpp # get mst device examples and tool name from makefile AM_CXXFLAGS += -DMLXCFG_NAME=\"mstconfig\" AM_CXXFLAGS += -DMST_DEV_EXAMPLE=\"04:00.0\" -DMST_DEV_EXAMPLE2=\"05:00.0\" mstflint-4.26.0/mlxconfig/mlxcfg_generic_commander.cpp0000644000175000017500000017516014522641732023410 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_generic_commander.cpp * * Created on: Jun 22, 2016 * Author: ahmads */ #include #include #include #include #include #include #include #if !defined(NO_OPEN_SSL) #include #include #if !defined(NO_DYNAMIC_ENGINE) #include #endif #endif #include "mlxcfg_expression.h" #include "mlxcfg_generic_commander.h" #include "mlxcfg_status.h" #include "mlxcfg_tlv.h" #include "mlxcfg_utils.h" #if !defined(DISABLE_XML2) #include #include #endif using namespace std; using namespace mlxcfg; #define TLVCLASS_OFFSET 24 #define TLVCLASS_SIZE 8 #define RAW_FILE_FINGERPRINT "MLNX_RAW_TLV_FILE" #define XMLNS "http://www.mellanox.com/config" #define XML_ROOT "config" #define XML_DOCUMENT_START \ "\n" \ "<" XML_ROOT " xmlns=\"" XMLNS "\">" #define XML_DOCUMENT_END "" #define XML_COMMENT_NODE "comment" #define IGNORE_IF_EMPTY_NODE(n) \ if (!n->name) \ { \ continue; \ } #define IGNORE_IF_TEXT_NODE(n) \ if (xmlNodeIsText(n)) \ { \ n = n->next; \ continue; \ } #define IGNORE_IF_COMMENT_NODE(n) \ if (xmlStrcasecmp(n->name, (const xmlChar*)XML_COMMENT_NODE) == 0) \ { \ n = n->next; \ continue; \ } #define IGNORE_UNUSEFUL_NODE(n) \ IGNORE_IF_EMPTY_NODE(n) \ IGNORE_IF_TEXT_NODE(n) \ IGNORE_IF_COMMENT_NODE(n) #define XMLFREE_AND_SET_NULL(p) \ if (p) \ { \ xmlFree(p); \ p = NULL; \ } #define GET_AND_SET_ATTR(attrVal, currTlv, attr) \ attrVal = xmlGetProp(currTlv, (const xmlChar*)attr); \ if (attrVal) \ { \ tlvConf->setAttr(attr, (const char*)attrVal); \ XMLFREE_AND_SET_NULL(attrVal); \ } #define EQ_STR "==" #define NOT_EQ_STR "!=" enum OP { EQUAL, NOT_EQUAL }; #define PCI_ACCESS_ONLY "Access to device should be through PCI interface only" #define IGNORE_DEPENDENCY_STR "ignore_dependency" const u_int8_t debugTokenId = 0x5; const u_int8_t csTokenId = 0x7; const u_int8_t btcTokenId = 0x8; const u_int8_t rmcsTokenId = 0x10; const u_int8_t rmdtTokenId = 0x11; const u_int32_t idMlnxId = 0x10e; const u_int32_t idVendorId = 0x10f; void GenericCommander::supportsNVData() { struct reg_access_hca_mnvqc_reg_ext nvqcTlv; memset(&nvqcTlv, 0, sizeof(struct reg_access_hca_mnvqc_reg_ext)); MError rc; // "suspend" signals as we are going to take semaphores mft_signal_set_handling(1); rc = reg_access_mnvqc(_mf, REG_ACCESS_METHOD_GET, &nvqcTlv); dealWithSignal(); if (rc == ME_REG_ACCESS_BAD_PARAM || rc == ME_REG_ACCESS_INTERNAL_ERROR) { throw MlxcfgException("Cannot access NV register. Either FW does not " "support NV access register, " "or HW access is disabled."); } if (rc == ME_REG_ACCESS_REG_NOT_SUPP) { throw MlxcfgException("NVQC access register is not supported." " Try a different type of access to the device."); } if (rc) { throw MlxcfgException("Error when trying to check if NV access registers are supported"); } return; } GenericCommander::GenericCommander(mfile* mf, string dbName, bool isSwitch) : Commander(mf), _dbManager(NULL) { if (_mf != NULL) { supportsNVData(); } if (dbName.empty()) { dbName = Commander::getDefaultDBName(isSwitch); } _dbManager = new MlxcfgDBManager(dbName); } GenericCommander::~GenericCommander() { delete _dbManager; } bool sortParamView(const ParamView& a, const ParamView& b) { return a.mlxconfigName < b.mlxconfigName; } void GenericCommander::excludeDuplicatedTLVs(vector& s, vector& d) { VECTOR_ITERATOR(TLVConfView, s, it) { bool found = false; for (vector::reverse_iterator rIt = d.rbegin(); rIt != d.rend(); rIt++) { if ((*it).name == (*rIt).name) { VECTOR_ITERATOR(ParamView, (*it).params, p) { (*rIt).params.push_back(*p); } found = true; break; } } if (!found) { d.push_back(*it); } } } void GenericCommander::getAllConfigurations(vector& confs) { _dbManager->getAllTLVs(); VECTOR_ITERATOR(TLVConf*, _dbManager->fetchedTLVs, it) { TLVConf* tlv = *it; TLVConfView tlvConfView; if (tlv->_cap == 0 && tlv->isMlxconfigSupported() == true) { tlv->getView(tlvConfView, _mf); confs.push_back(tlvConfView); } } return; } void GenericCommander::queryConfigViews(std::vector& confs, const std::string& configName, QueryType qt) { bool added = false; bool config_found = false; std::map tlvViewMap; _dbManager->getAllTLVs(); VECTOR_ITERATOR(TLVConf*, _dbManager->fetchedTLVs, it) { TLVConf* tlv = *it; if (tlv->_cap != 0 || tlv->isMlxconfigSupported() == false) { continue; } if (!configName.empty()) { if (configName != tlv->_mlxconfigName) { continue; } } vector result; if (tlv->isPortTargetClass()) { for (int i = 1; i <= (*it)->getMaxPort(_mf); i++) { (*it)->_port = i; (*it)->_module = -1; queryTLV((*it), result, false, qt); } } else if (tlv->isModuleTargetClass()) { for (int i = 0; i <= (*it)->getMaxModule(); i++) { (*it)->_port = 0; (*it)->_module = i; queryTLV((*it), result, false, qt); } } else { (*it)->_port = 0; (*it)->_module = -1; queryTLV((*it), result, false, qt); } std::map::iterator map_it = tlvViewMap.find(tlv->_mlxconfigName); if (map_it != tlvViewMap.end()) { size_t index = (*map_it).second; VECTOR_ITERATOR(ParamView, result, p) { confs[index].params.push_back(*p); } } else { config_found = true; TLVConfView tlvConfView; tlv->getView(tlvConfView, _mf); tlvConfView.params.clear(); VECTOR_ITERATOR(ParamView, result, p) { tlvConfView.params.push_back(*p); } if (tlvConfView.params.size() > 0) { confs.push_back(tlvConfView); tlvViewMap[tlv->_mlxconfigName] = confs.size() - 1; added = true; } } } if (!configName.empty()) { const char* msg = NULL; if (!config_found) { msg = "The configuration %s was not found"; } else if (!added) { msg = "The configuration %s is empty"; } if (msg != NULL) { throw MlxcfgException(msg, configName.c_str()); } } } void GenericCommander::getConfigViews(std::vector& confs, const std::string& configName) { std::map tlvViewMap; _dbManager->getAllTLVs(); VECTOR_ITERATOR(TLVConf*, _dbManager->fetchedTLVs, it) { TLVConf* tlv = *it; if (tlv->_cap != 0 || tlv->isMlxconfigSupported() == false) { continue; } if (!configName.empty()) { if (configName != tlv->_mlxconfigName) { continue; } } std::map::iterator map_it = tlvViewMap.find(tlv->_mlxconfigName); if (map_it != tlvViewMap.end()) { size_t index = (*map_it).second; TLVConfView tlvConfView; tlv->getView(tlvConfView, _mf); VECTOR_ITERATOR(ParamView, tlvConfView.params, p) { confs[index].params.push_back(*p); } } else { TLVConfView tlvConfView; tlv->getView(tlvConfView, _mf); confs.push_back(tlvConfView); tlvViewMap[tlv->_mlxconfigName] = confs.size() - 1; } } if (tlvViewMap.empty() && !configName.empty()) { throw MlxcfgException("The configuration %s was not found", configName.c_str()); } } void GenericCommander::printParamViews(FILE* f, vector& v) { VECTOR_ITERATOR(ParamView, v, pIt) { string s = (*pIt).mlxconfigName + "=<"; switch ((*pIt).type) { case BOOLEAN_TYPE: s += "False|True>"; break; case UNSIGNED: s += "NUM>"; break; case INTEGER: s += "NUM>"; // todo talk with Dan regarding this??? break; case ENUM: printEnums(*pIt, s); break; case STRING: s += "STRING>"; break; case BINARY: s += "BINARY>"; break; case BYTES: s += "BYTES>"; break; } size_t len = (*pIt).mlxconfigName.length(); // dont print description for parms _P2 - _P8 if ((*pIt).mlxconfigName.rfind("_P1") == std::string::npos) { size_t posP = (*pIt).mlxconfigName.rfind("_P"); if (posP == len - 3) { char charP = (*pIt).mlxconfigName[posP + 2]; if (charP >= '2' && charP <= '8') { fprintf(f, "%20s%-40s\n", " ", s.c_str()); continue; } } } size_t prevPos = 0; size_t pos = (*pIt).description.find("\\;", 0); fprintf(f, "%20s%-40s", " ", s.c_str()); fprintf(f, "%s\n", (*pIt).description.substr(0, pos).c_str()); while (pos != std::string::npos) { prevPos = pos + 2; pos = (*pIt).description.find("\\;", prevPos); if (pos == std::string::npos) { fprintf(f, "%60s%s\n", " ", (*pIt).description.substr(prevPos, ((*pIt).description.length() + 1) - prevPos).c_str()); } else { fprintf(f, "%60s%s\n", " ", (*pIt).description.substr(prevPos, pos - prevPos).c_str()); } } } } void GenericCommander::printTLVConfViews(FILE* f, vector& v) { VECTOR_ITERATOR(TLVConfView, v, it) { TLVConfView tv = (*it); fprintf(f, "\t\t%s:%s\n", tv.name.c_str(), tv.description.c_str()); // sort the params std::sort(tv.params.begin(), tv.params.end(), sortParamView); printParamViews(f, tv.params); } } void GenericCommander::printLongDesc(FILE* f) { vector allConfs, confsForPrint; getAllConfigurations(allConfs); excludeDuplicatedTLVs(allConfs, confsForPrint); printTLVConfViews(f, confsForPrint); } void GenericCommander::printEnums(const ParamView& p, string& s) { std::map::const_iterator it; it = p.textualVals.begin(); if (it == p.textualVals.end()) { throw MlxcfgException("The type of the parameter %s is ENUM, but enums were not found", p.mlxconfigName.c_str()); } s += it->first; it++; for (; it != p.textualVals.end(); ++it) { s += "|" + it->first; } s += ">"; } void parseDependency(string d, string& t, string& p, u_int32_t& v, OP& op) { // we assume there is only one tlv size_t opPos, dotPos, opStrLen; opPos = d.find(EQ_STR); opStrLen = strlen(EQ_STR); op = EQUAL; if (opPos == string::npos) { opPos = d.find(NOT_EQ_STR); opStrLen = strlen(NOT_EQ_STR); op = NOT_EQUAL; if (opPos == string::npos) { throw MlxcfgException("There is no '" EQ_STR "' nor '" NOT_EQ_STR "' in the dependency %s", d.c_str()); } } dotPos = d.find('.'); if (dotPos == string::npos) { // dependency is in the same tlv t = ""; p = d.substr(0, opPos); } else { t = d.substr(0, dotPos); p = d.substr(dotPos + 1, opPos - dotPos - 1); } v = atoi(d.substr(opPos + opStrLen, d.length() - opPos - opStrLen).c_str()); } bool GenericCommander::checkDependency(TLVConf* cTLV, string dStr) { if (dStr.empty()) { dm_dev_id_t deviceId = DeviceUnknown; u_int32_t hwDevId, hwRevId; if (dm_get_device_id(_mf, &deviceId, &hwDevId, &hwRevId)) { throw MlxcfgException("Failed to identify the device"); } if (dm_dev_is_switch(deviceId)) { return true; } return false; } else { string lower = mft_utils::to_lowercase_copy(dStr); if (lower.compare(IGNORE_DEPENDENCY_STR) == 0) { return true; } } Expression expression(dStr); vector vars; expression.getVars(vars); VECTOR_ITERATOR(string, vars, it) { const size_t dotPos = (*it).find('.'); if (dotPos == string::npos) { // parameter of current tlv expression.setVarVal((*it), cTLV->getParamValueByName((*it).replace(0, 1, ""))); } else { string dTLVName = (*it).substr(0, dotPos).replace(0, 1, ""); string dParamName = (*it).substr(dotPos + 1); TLVConf* dTLV = _dbManager->getDependencyTLVByName(dTLVName, cTLV->_port, cTLV->_module); if (dTLV == NULL) { throw MlxcfgTLVNotFoundException(dTLVName.c_str()); } if (!dTLV->isFWSupported(_mf, false)) { return false; } dTLV->query(_mf, QueryNext); expression.setVarVal((*it), dTLV->getParamValueByName(dParamName)); } } return (expression.evaluate() != 0); } void GenericCommander::filterByDependency(TLVConf* cTLV, const vector>& dependencyTable, vector& result) { for (size_t i = 0; i < dependencyTable.size(); i++) { if ((checkDependency(cTLV, dependencyTable[i].second)) || (dependencyTable[i].second.empty() && (!dependencyTable[i].first.rule.empty() || dependencyTable[i].first.supportedFromVersion > 0)) || (!dependencyTable[i].first.arrayVal.empty())) { result.push_back(dependencyTable[i].first); } } } void GenericCommander::queryTLV(TLVConf* tlv, vector& paramsConf, bool isWriteOperation, QueryType qt) { if (!tlv->_cap && tlv->isMlxconfigSupported() && tlv->isFWSupported(_mf, isWriteOperation)) { vector> dependencyTable = tlv->query(_mf, qt); filterByDependency(tlv, dependencyTable, paramsConf); for (auto& p : paramsConf) { p.isReadOnlyParam = tlv->_isReadOnly; } } return; } void GenericCommander::queryParamViews(vector& params, bool isWriteOperation, QueryType qt) { vector pc; std::set uniqueTLVs; map arrayStrs; VECTOR_ITERATOR(ParamView, params, p) { unsigned int index = 0; bool isIndexed = false; bool isStartFromOneSupported = false; string mlxconfigName = (*p).mlxconfigName; if (isIndexedMlxconfigName(mlxconfigName)) { parseIndexedMlxconfigName(mlxconfigName, mlxconfigName, index); isIndexed = true; } isStartFromOneSupported = isIndexedStartFromOneSupported(mlxconfigName); TLVConf* tlv = _dbManager->getTLVByParamMlxconfigName(mlxconfigName, index, _mf); uniqueTLVs.insert(tlv); // if not indexed and has suffix (its continuance array) need to get next // tlv and change the array length (for query) if (!isIndexed && getArraySuffix(tlv->_name).size() > 0 && getArraySuffix(mlxconfigName).size() == 0) { while (_dbManager->isParamMlxconfigNameExist(mlxconfigName + getArraySuffixByInterval(((++index) * MAX_ARRAY_SIZE)))) { } if (isStartFromOneSupported) { arrayStrs[mlxconfigName] = "Array[1.." + numToStr((index * MAX_ARRAY_SIZE)) + "]"; } else { arrayStrs[mlxconfigName] = "Array[0.." + numToStr((index * MAX_ARRAY_SIZE) - 1) + "]"; } index = 0; } } SET_ITERATOR(TLVConf*, uniqueTLVs, it) { queryTLV(*it, pc, isWriteOperation, qt); } VECTOR_ITERATOR(ParamView, params, i) { bool found = false; VECTOR_ITERATOR(ParamView, pc, j) { bool isIIndexed = false; unsigned int iIndex = 0; string mlxconfigNameI = (*i).mlxconfigName; if (isIndexedMlxconfigName(mlxconfigNameI)) { parseIndexedMlxconfigName(mlxconfigNameI, mlxconfigNameI, iIndex); isIIndexed = true; } string mlxconfigNameJ = (*j).mlxconfigName; if (mlxconfigNameI == mlxconfigNameJ || (mlxconfigNameI + getArraySuffixByInterval(iIndex)) == mlxconfigNameJ) { i->isReadOnlyParam = j->isReadOnlyParam; if (isIIndexed) { if (iIndex >= j->arrayVal.size() && (mlxconfigNameI + getArraySuffixByInterval(iIndex)) != mlxconfigNameJ) { throw MlxcfgException("Index %d of the parameter %s is out of " "range. Maximal index is %d", iIndex, mlxconfigNameI.c_str(), int(j->arrayVal.size()) - 1); } i->val = j->arrayVal[iIndex % MAX_ARRAY_SIZE]; i->strVal = j->strArrayVal[iIndex % MAX_ARRAY_SIZE]; } else { i->val = j->val; i->strVal = j->strVal; if (!arrayStrs[mlxconfigNameI].empty()) { i->strVal = arrayStrs[mlxconfigNameI]; } } found = true; break; } } if (!found) { throw MlxcfgException("The Device doesn't support %s parameter", i->mlxconfigName.c_str()); } } } void GenericCommander::queryAll(vector& params, vector& failedTLVs, QueryType qt) { _dbManager->getAllTLVs(); VECTOR_ITERATOR(TLVConf*, _dbManager->fetchedTLVs, it) { try { vector result; if ((*it)->isPortTargetClass()) { for (int i = 1; i <= (*it)->getMaxPort(_mf); i++) { (*it)->_port = i; (*it)->_module = -1; queryTLV((*it), result, false, qt); } } else if ((*it)->isModuleTargetClass()) { for (int i = 0; i <= (*it)->getMaxModule(); i++) { (*it)->_port = 0; (*it)->_module = i; queryTLV((*it), result, false, qt); } } else { (*it)->_port = 0; (*it)->_module = -1; queryTLV((*it), result, false, qt); } params.insert(params.end(), result.begin(), result.end()); } catch (MlxcfgException& e) { failedTLVs.push_back((*it)->_name); } } } void GenericCommander::getCfg(ParamView& pv, QueryType qt) { vector pc; TLVConf* tlv = _dbManager->getTLVByParamMlxconfigName(pv.mlxconfigName, 0, _mf); queryTLV(tlv, pc, false, qt); VECTOR_ITERATOR(ParamView, pc, j) { // printf("-D- pc[j]=%s\n", j->mlxconfigName.c_str()); if (pv.mlxconfigName == j->mlxconfigName) { pv.val = j->val; pv.strVal = j->strVal; break; } } } void GenericCommander::setCfg(vector& params, bool force) { std::set uniqueTLVs; map tlvMap; VECTOR_ITERATOR(ParamView, params, p) { unsigned int index = 0; string mlxconfigName = (*p).mlxconfigName; bool isIndexed = false; if (isIndexedMlxconfigName(mlxconfigName)) { parseIndexedMlxconfigName(mlxconfigName, mlxconfigName, index); isIndexed = true; } TLVConf* tlv = _dbManager->getTLVByParamMlxconfigName(mlxconfigName, index, _mf); tlvMap[mlxconfigName] = tlv; uniqueTLVs.insert(tlv); if (isIndexed) { tlvMap[mlxconfigName]->updateParamByMlxconfigName(mlxconfigName, (*p).strVal, index); } else { tlvMap[(*p).mlxconfigName]->updateParamByMlxconfigName(mlxconfigName, (*p).strVal, _mf); } } // prepare ruleTLVs,and check rules if (!force) { // printf("-D- do not force!\n"); SET_ITERATOR(TLVConf*, uniqueTLVs, it) { TLVConf* tlv = *it; std::set strRuleTLVs; tlv->getRuleTLVs(strRuleTLVs); vector ruleTLVs; SET_ITERATOR(string, strRuleTLVs, j) { string strRuleTLV = *j; TLVConf* ruleTLV = _dbManager->getTLVByName(strRuleTLV, tlv->_port, tlv->_module); if (!ruleTLV->isFWSupported(_mf, false)) { throw MlxcfgException("The Rule TLV configuration %s is not supported by FW", strRuleTLV.c_str()); break; } ruleTLV->query(_mf, QueryNext); ruleTLVs.push_back(ruleTLV); } tlv->checkRules(ruleTLVs); } } // set the tlv on the device SET_ITERATOR(TLVConf*, uniqueTLVs, it) { // printf("-D- t=%s\n", (*it)->_name.c_str()); (*it)->setOnDevice(_mf); } return; } bool GenericCommander::isDefaultSupported() { struct reg_access_hca_mnvgc_reg_ext mnvgc_reg; memset(&mnvgc_reg, 0, sizeof(struct reg_access_hca_mnvgc_reg_ext)); MError rc; mft_signal_set_handling(1); rc = reg_access_mnvgc(_mf, REG_ACCESS_METHOD_GET, &mnvgc_reg); dealWithSignal(); if (rc == ME_REG_ACCESS_BAD_PARAM || rc == ME_REG_ACCESS_INTERNAL_ERROR) { return false; } else if (rc == ME_OK) { return mnvgc_reg.nvda_read_factory_settings; } throw MlxcfgException("Error when checked if Firmware supports querying " "default configurations or not: %s.", m_err2str((MError)rc)); } bool GenericCommander::isCurrentSupported() { struct reg_access_hca_mnvgc_reg_ext mnvgc_reg; memset(&mnvgc_reg, 0, sizeof(struct reg_access_hca_mnvgc_reg_ext)); MError rc; mft_signal_set_handling(1); rc = reg_access_mnvgc(_mf, REG_ACCESS_METHOD_GET, &mnvgc_reg); dealWithSignal(); if (rc == ME_REG_ACCESS_BAD_PARAM || rc == ME_REG_ACCESS_INTERNAL_ERROR) { return false; } else if (rc == ME_OK) { return mnvgc_reg.nvda_read_current_settings; } throw MlxcfgException("Error when checked if Firmware supports " "querying current configurations or not: %s.", m_err2str((MError)rc)); } void GenericCommander::clearSemaphore() { int rc = icmd_clear_semaphore(_mf); if (rc) { throw MlxcfgException("Failed to unlock semaphore: %s.", m_err2str((MError)rc)); } } void GenericCommander::invalidateCfgs() { int rc; struct reg_access_hca_mnvia_reg_ext nviaTlv; u_int8_t buffer[REG_ACCESS_HCA_MNVIA_REG_EXT_SIZE] = {0}; memset(&nviaTlv, 0, sizeof(struct reg_access_hca_mnvia_reg_ext)); reg_access_hca_mnvia_reg_ext_pack(&nviaTlv, buffer); mft_signal_set_handling(1); rc = reg_access_mnvia(_mf, REG_ACCESS_METHOD_SET, &nviaTlv); dealWithSignal(); if (rc) { throw MlxcfgException("Failed to invalidate configurations: %s.", m_err2str((MError)rc)); } } void GenericCommander::invalidateCfg(const std::string& configName) { std::vector tlvArr; _dbManager->getAllTLVs(); VECTOR_ITERATOR(TLVConf*, _dbManager->fetchedTLVs, it) { if ((*it)->_mlxconfigName == configName) { tlvArr.push_back(*it); } } if (tlvArr.empty()) { throw MlxcfgException("The configuration %s was not found", configName.c_str()); } VECTOR_ITERATOR(TLVConf*, tlvArr, it) { (*it)->invalidate(_mf); } } const char* GenericCommander::loadConfigurationGetStr() { int rc; dm_dev_id_t deviceId = DeviceUnknown; u_int32_t hwDevId, hwRevId; struct reg_access_hca_mfrl_reg_ext mfrl; if (dm_get_device_id(_mf, &deviceId, &hwDevId, &hwRevId)) { throw MlxcfgException("Failed to identify the device"); } memset(&mfrl, 0, sizeof(mfrl)); if (dm_is_5th_gen_hca(deviceId)) { // send warm boot (bit 6) mfrl.reset_trigger = 1 << 6; mft_signal_set_handling(1); rc = reg_access_mfrl(_mf, REG_ACCESS_METHOD_SET, &mfrl); dealWithSignal(); if (rc) { return "Please power cycle machine to load new configurations."; } } return "Please reboot machine to load new configurations."; } void GenericCommander::setRawCfg(std::vector rawTlvVec) { RawCfgParams5thGen rawTlv; if (rawTlv.setRawData(rawTlvVec)) { throw MlxcfgException(rawTlv.err()); } if (rawTlv.setOnDev(_mf, SET_RAW)) { throw MlxcfgException(rawTlv.err()); } } std::vector GenericCommander::getRawCfg(std::vector rawTlvVec) { RawCfgParams5thGen rawTlv; if (rawTlv.setRawData(rawTlvVec)) { throw MlxcfgException(rawTlv.err()); } if (rawTlv.setOnDev(_mf, GET_RAW)) { throw MlxcfgException(rawTlv.err()); } std::vector getRawTlvVec; getRawTlvVec = rawTlv.getRawData(); if (getRawTlvVec.empty()) { throw MlxcfgException(rawTlv.err()); } return getRawTlvVec; } void GenericCommander::dumpRawCfg(std::vector rawTlvVec, std::string& tlvDump) { RawCfgParams5thGen rawTlv; if (rawTlv.setRawData(rawTlvVec)) { throw MlxcfgException(rawTlv.err()); } tlvDump = rawTlv.dumpTlv(); } void GenericCommander::backupCfgs(vector& views) { int rc; int status = 0; u_int32_t ptr = 0; struct tools_open_mnvgn mnvgnTlv; do { memset(&mnvgnTlv, 0, sizeof(struct tools_open_mnvgn)); mnvgnTlv.nv_pointer = ptr; mft_signal_set_handling(1); rc = reg_access_mnvgn(_mf, REG_ACCESS_METHOD_GET, &mnvgnTlv, &status); dealWithSignal(); if (rc) { if (status == ME_NOT_IMPLEMENTED) { throw MlxcfgException("Firmware does not support backup command"); } else if (rc == ME_REG_ACCESS_RES_NOT_AVLBL) { throw MlxcfgException("NV data area may be empty, nothing to backup."); } else { throw MlxcfgException("Failed to backup configurations: %s.", m_err2str((MError)rc)); } } ptr = mnvgnTlv.nv_pointer; if (ptr != 0) { BackupView view; view.type = mnvgnTlv.nv_hdr.type.tlv_type_dw.tlv_type_dw; view.writerId = mnvgnTlv.nv_hdr.writer_id; view.writerHostId = mnvgnTlv.nv_hdr.writer_host_id; vector v; v.resize(TOOLS_OPEN_NV_HDR_FIFTH_GEN_SIZE + mnvgnTlv.nv_hdr.length); // Copy header: tools_open_nv_hdr_fifth_gen_pack(&mnvgnTlv.nv_hdr, v.data()); // Copy data: memcpy(v.data() + TOOLS_OPEN_NV_HDR_FIFTH_GEN_SIZE, &mnvgnTlv.nv_data, mnvgnTlv.nv_hdr.length); view.tlvBin = v; views.push_back(view); } } while (ptr != 0); } void GenericCommander::updateParamViewValue(ParamView& p, string v) { unsigned int index = 0; string mlxconfigName = p.mlxconfigName; if (isIndexedMlxconfigName(mlxconfigName)) { parseIndexedMlxconfigName(mlxconfigName, mlxconfigName, index); } TLVConf* tlv = _dbManager->getTLVByParamMlxconfigName(mlxconfigName, index, _mf); if (tlv->_port != 0) { auto res = _dbManager->splitMlxcfgNameAndPortOrModule(mlxconfigName, PORT, _mf); mlxconfigName = get<0>(res); } else if (tlv->_module != -1) { auto res = _dbManager->splitMlxcfgNameAndPortOrModule(mlxconfigName, MODULE, _mf); mlxconfigName = get<0>(res); } p.port = tlv->_port; p.module = tlv->_module; tlv->parseParamValue(mlxconfigName, v, p.val, p.strVal, index); } void GenericCommander::genTLVsList(vector& tlvs) { _dbManager->getAllTLVs(); VECTOR_ITERATOR(TLVConf*, _dbManager->fetchedTLVs, it) { if (find(tlvs.begin(), tlvs.end(), (*it)->_name) == tlvs.end()) { tlvs.push_back((*it)->_name); } } } void GenericCommander::genXMLTemplateAux(vector tlvs, string& xmlTemplate, bool allAttrs, bool withVal, bool defaultAttrVal) { xmlTemplate = XML_DOCUMENT_START; VECTOR_ITERATOR(string, tlvs, it) { string tlvTemplate; TLVConf* tlv = NULL; // user didn't tell us if it is a per port tlv // so try port==0 tlv = _dbManager->getTLVByName(*it, 0, -1); if (tlv && tlv->isPortTargetClass()) { tlv->_port = 1; } else if (tlv && tlv->isModuleTargetClass()) { tlv->_module = 0; } tlv->genXMLTemplate(tlvTemplate, allAttrs, withVal, defaultAttrVal); xmlTemplate += "\n" + tlvTemplate + "\n"; } xmlTemplate += XML_DOCUMENT_END; } void GenericCommander::genXMLTemplate(vector tlvs, string& xmlTemplate, bool allAttrs) { genXMLTemplateAux(tlvs, xmlTemplate, allAttrs, false, true); } void GenericCommander::binTLV2TLVConf(const vector& binTLV, TLVConf*& tlv) { u_int32_t id; tools_open_nv_hdr_fifth_gen hdr; tools_open_nv_hdr_fifth_gen_unpack(&hdr, (u_int8_t*)binTLV.data()); // verify TLV length if (hdr.length != (binTLV.size() - 3) * 4) { throw MlxcfgException("TLV size mismatch. reported length in TLV header: " "0x%x. actual length: 0x%x", hdr.length, (binTLV.size() - 3) * 4); } TLVClass tlvClass = (TLVClass)EXTRACT(hdr.type.tlv_type_dw.tlv_type_dw, TLVCLASS_OFFSET, TLVCLASS_SIZE); TLVClass tlvClassTemp; tools_open_tlv_type type; type.tlv_type_dw.tlv_type_dw = binTLV[1]; TLVConf::unpackTLVType(tlvClass, type, id); if (tlvClass == Physical_Port_Common) { tlvClassTemp = Physical_Port; } else if (tlvClass == Per_Host_All_Functions || tlvClass == All_Hosts_Per_Function || tlvClass == All_Hosts_All_Functions) { tlvClassTemp = Per_Host_Per_Function; } else { tlvClassTemp = tlvClass; } tlv = _dbManager->getTLVByIndexAndClass(id, tlvClassTemp); // set attrs tlv->_attrs[WRITER_ID_ATTR] = numToStr(hdr.writer_id); tlv->_attrs[RD_EN_ATTR] = numToStr(hdr.rd_en); tlv->_attrs[OVR_EN_ATTR] = numToStr(hdr.over_en); tlv->_attrs[PRIORITY_ATTR] = PriorityNumToStr(hdr.priority); if (tlvClass == Physical_Port) { tlv->_attrs[PORT_ATTR] = numToStr(type.per_port.port); } else if (tlvClass == Physical_Port_Common) { tlv->_attrs[PORT_ATTR] = ALL_ATTR_VAL; } else if (tlvClass == Per_Host_All_Functions) { tlv->_attrs[HOST_ATTR] = numToStr(type.per_host.host); tlv->_attrs[FUNC_ATTR] = ALL_ATTR_VAL; } else if (tlvClass == Per_Host_Per_Function) { tlv->_attrs[HOST_ATTR] = numToStr(type.per_host.host); tlv->_attrs[FUNC_ATTR] = numToStr(type.per_host.function); } else if (tlvClass == All_Hosts_All_Functions) { tlv->_attrs[HOST_ATTR] = ALL_ATTR_VAL; tlv->_attrs[FUNC_ATTR] = ALL_ATTR_VAL; } else if (tlvClass == All_Hosts_Per_Function) { tlv->_attrs[HOST_ATTR] = ALL_ATTR_VAL; tlv->_attrs[FUNC_ATTR] = numToStr(type.per_host.function); } tlv->unpack((u_int8_t*)(binTLV.data() + 3)); // the header size is 3dws } void GenericCommander::binTLV2XML(const vector& binTLV, string& xmlTemplate) { TLVConf* tlv = NULL; binTLV2TLVConf(binTLV, tlv); tlv->genXMLTemplate(xmlTemplate, true, true, false); } void GenericCommander::bin2TLVConfs(const vector& tlvsBin, vector& tlvs) { size_t size = 0; size_t hdrSize = (tools_open_nv_hdr_fifth_gen_size() >> 2); while (hdrSize + size < tlvsBin.size()) { TLVConf* tlv = NULL; vector tmpBuff; tools_open_nv_hdr_fifth_gen hdr; tools_open_nv_hdr_fifth_gen_unpack(&hdr, (u_int8_t*)(tlvsBin.data() + size)); size_t tlvSize = hdrSize + (hdr.length >> 2); if (tlvSize > (tlvsBin.size() - size)) { throw MlxcfgException("Invalid Configuration buffer"); } tmpBuff.insert(tmpBuff.begin(), tlvsBin.begin() + size, tlvsBin.begin() + +size + tlvSize); binTLV2TLVConf(tmpBuff, tlv); tlvs.push_back(tlv); size += tlvSize; } if (size != tlvsBin.size()) { throw MlxcfgException("Invalid Configuration buffer"); } } void GenericCommander::XML2TLVConf(const string& xmlContent, vector& tlvs) { #if !defined(DISABLE_XML2) xmlDocPtr doc; xmlNodePtr root, currTlv, currParam; xmlChar *portAttr = NULL, *moduleAttr = NULL, *hostAttr = NULL, *funcAttr = NULL, *rdEnAttr = NULL, *priorityAttr = NULL, *ovrEnAttr = NULL, *xmlVal = NULL, *indexAttr = NULL, *writerIdAttr = NULL; doc = xmlReadMemory(xmlContent.c_str(), xmlContent.size(), "noname.xml", NULL, 0); if (!doc) { throw MlxcfgException("Failed to parse the XML document\n"); } try { root = xmlDocGetRootElement(doc); if (!root || xmlStrcmp(root->name, (const xmlChar*)XML_ROOT)) { throw MlxcfgException("The XML root node must be " XML_ROOT); } // check fingerprint if (!root->ns || xmlStrcmp(root->ns->href, (const xmlChar*)XMLNS)) { throw MlxcfgException("The XML Fingerprint " XMLNS " is missing or incorrect"); } currTlv = root->xmlChildrenNode; while (currTlv) { IGNORE_UNUSEFUL_NODE(currTlv) u_int32_t port; u_int32_t u_module; int32_t module; TLVConf* tlvConf = nullptr; bool isAllPorts = false; bool isAllModules = false; // printf("-D- tlv name=%s\n", (char*)currTlv->name); portAttr = xmlGetProp(currTlv, (const xmlChar*)PORT_ATTR); moduleAttr = xmlGetProp(currTlv, (const xmlChar*)MODULE_ATTR); if (!portAttr) { port = 0; } else if (!xmlStrcasecmp(portAttr, (const xmlChar*)ALL_ATTR_VAL)) { isAllPorts = true; port = 1; } else if (!strToNum((const char*)portAttr, port) || !(1 <= port && (int32_t)port <= tlvConf->getMaxPort(_mf))) { throw MlxcfgException("Illegal value of port attribute %s", (const char*)portAttr); } if (!moduleAttr) { module = -1; } else if (!xmlStrcasecmp(moduleAttr, (const xmlChar*)ALL_ATTR_VAL)) { isAllModules = true; module = 0; } else if (!strToNum((const char*)moduleAttr, u_module) || !(u_module <= (u_int32_t)tlvConf->getMaxModule())) { throw MlxcfgException("Illegal value of module attribute %s", (const char*)portAttr); } else { module = u_module; } tlvConf = _dbManager->getAndCreateTLVByName((char*)currTlv->name, port, module); try { if (isAllPorts) { tlvConf->setAttr(PORT_ATTR, ALL_ATTR_VAL); } if (isAllModules) { tlvConf->setAttr(MODULE_ATTR, ALL_ATTR_VAL); } GET_AND_SET_ATTR(writerIdAttr, currTlv, WRITER_ID_ATTR) GET_AND_SET_ATTR(ovrEnAttr, currTlv, OVR_EN_ATTR) GET_AND_SET_ATTR(rdEnAttr, currTlv, RD_EN_ATTR) GET_AND_SET_ATTR(priorityAttr, currTlv, PRIORITY_ATTR) GET_AND_SET_ATTR(hostAttr, currTlv, HOST_ATTR) GET_AND_SET_ATTR(funcAttr, currTlv, FUNC_ATTR) // loop over the parameters list vector collectedParams; currParam = currTlv->xmlChildrenNode; map> arrayValues; while (currParam) { IGNORE_UNUSEFUL_NODE(currParam) xmlVal = xmlNodeListGetString(doc, currParam->xmlChildrenNode, 1); indexAttr = xmlGetProp(currParam, (const xmlChar*)INDEX_ATTR); if (xmlVal) { if (indexAttr) { string indexAttrStr = (const char*)indexAttr; vector indexes; extractIndexes(indexAttrStr, indexes); VECTOR_ITERATOR(u_int32_t, indexes, it) { arrayValues[(char*)currParam->name][*it] = (char*)xmlVal; } } else { if (find(collectedParams.begin(), collectedParams.end(), (char*)currParam->name) != collectedParams.end()) { throw MlxcfgException("Duplicate use of same parameter: %s\n", (char*)currParam->name); } collectedParams.push_back((char*)currParam->name); tlvConf->updateParamByName((char*)currParam->name, (char*)xmlVal); } } else { if (tlvConf->isAStringParam((char*)currParam->name)) { tlvConf->updateParamByName((char*)currParam->name, ""); } else { throw MlxcfgException("The Parameter %s of the configuration %s " "does not have value", (char*)currParam->name, tlvConf->_name.c_str()); } } XMLFREE_AND_SET_NULL(xmlVal); XMLFREE_AND_SET_NULL(indexAttr) currParam = currParam->next; } // process arrayValues for (map>::iterator p = arrayValues.begin(); p != arrayValues.end(); ++p) { // TODO check validity of indices string paramName = p->first; vector vals(p->second.size()); for (map::iterator v = p->second.begin(); v != p->second.end(); ++v) { vals[v->first] = v->second; } tlvConf->updateParamByName(paramName, vals); } } catch (MlxcfgException& e) { delete tlvConf; throw e; } tlvs.push_back(tlvConf); currTlv = currTlv->next; XMLFREE_AND_SET_NULL(portAttr) XMLFREE_AND_SET_NULL(moduleAttr) } if (tlvs.size() == 0) { throw MlxcfgException("No TLV configurations were found in the XML"); } } catch (MlxcfgException& e) { XMLFREE_AND_SET_NULL(writerIdAttr) XMLFREE_AND_SET_NULL(portAttr) XMLFREE_AND_SET_NULL(moduleAttr) XMLFREE_AND_SET_NULL(ovrEnAttr) XMLFREE_AND_SET_NULL(rdEnAttr) XMLFREE_AND_SET_NULL(priorityAttr) XMLFREE_AND_SET_NULL(hostAttr) XMLFREE_AND_SET_NULL(funcAttr) XMLFREE_AND_SET_NULL(xmlVal) xmlFreeDoc(doc); doc = NULL; VECTOR_ITERATOR(TLVConf*, tlvs, itTlvConf) { delete *itTlvConf; } throw e; } XMLFREE_AND_SET_NULL(writerIdAttr) XMLFREE_AND_SET_NULL(portAttr) XMLFREE_AND_SET_NULL(moduleAttr) XMLFREE_AND_SET_NULL(ovrEnAttr) XMLFREE_AND_SET_NULL(rdEnAttr) XMLFREE_AND_SET_NULL(priorityAttr) XMLFREE_AND_SET_NULL(hostAttr) XMLFREE_AND_SET_NULL(funcAttr) XMLFREE_AND_SET_NULL(xmlVal) xmlFreeDoc(doc); #else (void)xmlContent; (void)tlvs; throw MlxcfgException("Can not run the command, the tool was not compiled against libxml2"); #endif } void GenericCommander::XML2Raw(const string& xmlContent, string& raw) { vector tlvs; XML2TLVConf(xmlContent, tlvs); raw = RAW_FILE_FINGERPRINT; int i = 0; VECTOR_ITERATOR(TLVConf*, tlvs, tlvConf) { if ((*tlvConf)->_attrs[PORT_ATTR] == ALL_ATTR_VAL) { for (i = 1; i <= (*tlvConf)->getMaxPort(_mf); i++) { (*tlvConf)->_attrs[PORT_ATTR] = i; (*tlvConf)->_port = i; string rawTLV; (*tlvConf)->genRaw(rawTLV); raw += '\n' + rawTLV + '\n'; } } else if ((*tlvConf)->_attrs[MODULE_ATTR] == ALL_ATTR_VAL) { for (i = 0; i <= (*tlvConf)->getMaxModule(); i++) { (*tlvConf)->_attrs[MODULE_ATTR] = i; (*tlvConf)->_module = i; string rawTLV; (*tlvConf)->genRaw(rawTLV); raw += '\n' + rawTLV + '\n'; } } else { string rawTLV; (*tlvConf)->genRaw(rawTLV); raw += '\n' + rawTLV + '\n'; } } VECTOR_ITERATOR(TLVConf*, tlvs, tlvConf) { delete *tlvConf; } } void GenericCommander::TLVConf2Bin(const vector& tlvs, vector& buff, bool withHeader) { int i = 0; CONST_VECTOR_ITERATOR(TLVConf*, tlvs, tlvConf) { if ((*tlvConf)->_attrs[PORT_ATTR] == ALL_ATTR_VAL) { for (i = 1; i <= (*tlvConf)->getMaxPort(_mf); i++) { (*tlvConf)->_attrs[PORT_ATTR] = i; (*tlvConf)->_port = i; vector tmpBuff; (*tlvConf)->genBin(tmpBuff, withHeader); buff.insert(buff.end(), tmpBuff.begin(), tmpBuff.end()); } } else if ((*tlvConf)->_attrs[MODULE_ATTR] == ALL_ATTR_VAL) { for (i = 0; i <= (*tlvConf)->getMaxModule(); i++) { (*tlvConf)->_attrs[MODULE_ATTR] = i; (*tlvConf)->_module = i; vector tmpBuff; (*tlvConf)->genBin(tmpBuff, withHeader); buff.insert(buff.end(), tmpBuff.begin(), tmpBuff.end()); } } else { vector tmpBuff; (*tlvConf)->genBin(tmpBuff, withHeader); buff.insert(buff.end(), tmpBuff.begin(), tmpBuff.end()); } } CONST_VECTOR_ITERATOR(TLVConf*, tlvs, tlvConf) { delete *tlvConf; } } void GenericCommander::XML2Bin(const string& xml, vector& buff, bool withHeader) { vector tlvs; XML2TLVConf(xml, tlvs); TLVConf2Bin(tlvs, buff, withHeader); } void GenericCommander::sign(vector& buff, const string& privateKeyFile, const string& keyPairUUid, const string& openssl_engine, const string& openssl_key_identifier) { (void)keyPairUUid; #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) && !defined(NO_DYNAMIC_ENGINE) vector encDigestDW; vector digest, encDigest, bytesBuff; MlxSign::SHAType shaType; unique_ptr signer = nullptr; copyDwVectorToBytesVector(buff, bytesBuff); if (openssl_key_identifier.empty() && privateKeyFile.empty()) { shaType = MlxSign::SHA256; MlxSignSHA256 mlxSignSHA; mlxSignSHA << bytesBuff; mlxSignSHA.getDigest(digest); encDigest.insert(encDigest.begin(), digest.begin(), digest.end()); } else { if (!openssl_key_identifier.empty()) { // Sign with local HSM engine shaType = MlxSign::SHA512; #if !defined(NO_DYNAMIC_ENGINE) signer = unique_ptr(new MlxSign::MlxSignRSAViaHSM(openssl_engine, openssl_key_identifier)); #else reportErr(true, "Open SSL functionality is not supported.\n"); #endif } else { signer = unique_ptr(new MlxSign::MlxSignRSAViaOpenssl(privateKeyFile)); } if (signer != nullptr && signer->Init() != MlxSign::MLX_SIGN_SUCCESS) { signer.reset(); throw MlxcfgException("Failed to initialize signer.\n"); } signer->Sign(bytesBuff, encDigest); } // fetch the signature tlv from the database and fill in the data if (shaType == MlxSign::SHA256) { vector signTlvBin; TLVConf* signTLV = _dbManager->getTLVByName("file_signature", 0, -1); std::shared_ptr keyPairUUidParam = signTLV->findParamByName("keypair_uuid"); ((BytesParamValue*)keyPairUUidParam->_value)->setVal(keyPairUUid); std::shared_ptr signatureParam = signTLV->findParamByName("signature"); if (NULL == signatureParam) { throw MlxcfgException("The signature parameter was not found\n"); } copyBytesVectorToDwVector(encDigest, encDigestDW); VECTOR_BE32_TO_CPU(encDigestDW) ((BytesParamValue*)signatureParam->_value)->setVal(encDigestDW); signTLV->genBin(signTlvBin); buff.insert(buff.end(), signTlvBin.begin(), signTlvBin.end()); } else { TLVConf* signTLV1 = _dbManager->getTLVByName("file_signature_4096_a", 0, -1); TLVConf* signTLV2 = _dbManager->getTLVByName("file_signature_4096_b", 0, -1); std::shared_ptr keyPairUUidParam1 = signTLV1->findParamByName("keypair_uuid"); ((BytesParamValue*)keyPairUUidParam1->_value)->setVal(keyPairUUid); std::shared_ptr keyPairUUidParam2 = signTLV2->findParamByName("keypair_uuid"); ((BytesParamValue*)keyPairUUidParam2->_value)->setVal(keyPairUUid); copyBytesVectorToDwVector(encDigest, encDigestDW); VECTOR_BE32_TO_CPU(encDigestDW) std::shared_ptr signatureParam1 = signTLV1->findParamByName("signature"); std::shared_ptr signatureParam2 = signTLV2->findParamByName("signature"); // For Debug: /*for(unsigned int i = 0; i < encDigestDW.size(); i++) { printf("0x%x ", encDigestDW[i]); } printf("\n");*/ // split encDigestDW unsigned int middleOfEncDigestDW = encDigestDW.size() / 2; vector encDigestDW1(middleOfEncDigestDW), encDigestDW2(middleOfEncDigestDW); for (unsigned int i = 0; i < middleOfEncDigestDW; i++) { encDigestDW1[i] = encDigestDW[i]; encDigestDW2[i] = encDigestDW[encDigestDW.size() / 2 + i]; } ((BytesParamValue*)signatureParam1->_value)->setVal(encDigestDW1); ((BytesParamValue*)signatureParam2->_value)->setVal(encDigestDW2); // For Debug: /*for(unsigned int i = 0; i < encDigestDW1.size(); i++) { printf("0x%x ", encDigestDW1[i]); } printf("\n"); for(unsigned int i = 0; i < encDigestDW2.size(); i++) { printf("0x%x ", encDigestDW2[i]); } printf("\n");*/ vector signTlvBin1; signTLV1->genBin(signTlvBin1); buff.insert(buff.end(), signTlvBin1.begin(), signTlvBin1.end()); vector signTlvBin2; signTLV2->genBin(signTlvBin2); buff.insert(buff.end(), signTlvBin2.begin(), signTlvBin2.end()); } #else (void)buff; (void)privateKeyFile; (void)openssl_engine; (void)openssl_key_identifier; throw MlxcfgException("Sign command is not implemented\n"); #endif } void GenericCommander::checkConfTlvs(const vector& tlvs, FwComponent::comps_ids_t& compsId) { bool dbgCompFound = false; bool csCompFound = false; bool rmdtCompFound = false; bool rmcsCompFound = false; bool foundApplicableTLV = false; bool idMlnxCompFound = false; bool idVendorCompFound = false; bool deviceUniqueFound = false; compsId = FwComponent::COMPID_UNKNOWN; u_int32_t type = 0; mget_mdevs_type(_mf, &type); CONST_VECTOR_ITERATOR(TLVConf*, tlvs, it) { const TLVConf* tlv = *it; if (tlv->_tlvClass == NVFile && tlv->_id == debugTokenId) { dbgCompFound = true; compsId = FwComponent::COMPID_DBG_TOKEN; } else if (tlv->_tlvClass == NVFile && tlv->_id == csTokenId) { csCompFound = true; compsId = FwComponent::COMPID_CS_TOKEN; } else if (tlv->_tlvClass == NVFile && tlv->_id == btcTokenId) { csCompFound = true; compsId = FwComponent::COMPID_CRYPTO_TO_COMMISSIONING; } else if (tlv->_tlvClass == NVFile && tlv->_id == rmcsTokenId) { rmcsCompFound = true; compsId = FwComponent::COMPID_RMCS_TOKEN; } else if (tlv->_tlvClass == NVFile && tlv->_id == rmdtTokenId) { rmdtCompFound = true; compsId = FwComponent::COMPID_RMDT_TOKEN; } else if (tlv->_tlvClass == 0x0 && tlv->_id == idMlnxId) { idMlnxCompFound = true; compsId = FwComponent::COMPID_MLNX_NVCONFIG; } else if (tlv->_tlvClass == 0x0 && tlv->_id == idVendorId) { idVendorCompFound = true; compsId = FwComponent::COMPID_OEM_NVCONFIG; } else if (tlv->_name == "file_applicable_to") { foundApplicableTLV = true; } else if (tlv->_name == "file_device_unique") { deviceUniqueFound = true; } if ((type & (MST_USB_DIMAX)) && (compsId == FwComponent::COMPID_UNKNOWN)) { // MST_USB tlv's must have component throw MlxcfgException("MTUSB device is not supported."); } } if (deviceUniqueFound) { if (compsId == FwComponent::COMPID_CS_TOKEN) { compsId = FwComponent::COMPID_CRCS_TOKEN; } else if (compsId == FwComponent::COMPID_DBG_TOKEN) { compsId = FwComponent::COMPID_CRDT_TOKEN; } } u_int32_t numOfCompsFound = (dbgCompFound ? 1 : 0) + (csCompFound ? 1 : 0) + (rmcsCompFound ? 1 : 0) + (rmdtCompFound ? 1 : 0) + (idMlnxCompFound ? 1 : 0) + (idVendorCompFound ? 1 : 0); if (numOfCompsFound == 0) { throw MlxcfgException("Unsupported device: No debug tokens or CS tokens or " "MLNX/Vendor ID Components were found for " "this device"); } if (numOfCompsFound > 1) { throw MlxcfgException("Only one component is allowed"); } // At least one TLV must be file_applicable_to if (!foundApplicableTLV) { throw MlxcfgException("At least one file_applicable_to tlv must be in the " "configuration file"); } } void GenericCommander::orderConfTlvs(vector& tlvs) { VECTOR_ITERATOR(TLVConf*, tlvs, it) { TLVConf* tlv = *it; if (((tlv->_tlvClass == NVFile) && (tlv->_id == debugTokenId || tlv->_id == csTokenId || tlv->_id == btcTokenId)) || ((tlv->_tlvClass == Global) && (tlv->_id == idMlnxId || tlv->_id == idVendorId))) { *it = tlvs.front(); tlvs.front() = tlv; break; } } // file_applicable_to must be after the component VECTOR_ITERATOR(TLVConf*, tlvs, it) { TLVConf* tlv = *it; if (tlv->_name == "file_applicable_to") { *it = *(tlvs.begin() + 1); *(tlvs.begin() + 1) = tlv; break; } } } void GenericCommander::createConf(const string& xml, vector& buff) { vector tlvs; vector tlvsBuff; FwComponent::comps_ids_t compsId; // Add the fingerprint string fingerPrint(BIN_FILE_FINGERPRINT); for (unsigned int i = 0; i < fingerPrint.length(); i += 4) { buff.push_back(*(u_int32_t*)(fingerPrint.c_str() + i)); } XML2TLVConf(xml, tlvs); removeSignatureTlvs(tlvs); checkConfTlvs(tlvs, compsId); orderConfTlvs(tlvs); TLVConf2Bin(tlvs, tlvsBuff, true); buff.insert(buff.end(), tlvsBuff.begin(), tlvsBuff.end()); } void GenericCommander::apply(const vector& buff) { FwComponent comp; vector tlvs; vector dwBuff; FwCompsMgr fwCompsAccess(_mf); vector compsToBurn; FwComponent::comps_ids_t compsId = FwComponent::comps_ids_t::COMPID_UNKNOWN; size_t fingerPrintLength = strlen(BIN_FILE_FINGERPRINT); // Check if there is a fingerprint: if (buff.size() < fingerPrintLength) { throw MlxcfgException("Invalid Configuration file"); } for (unsigned int i = 0; i < fingerPrintLength; i += 4) { if (buff[i] != BIN_FILE_FINGERPRINT[i]) { throw MlxcfgException("Fingerprint is missing in the Configuration file"); } } dwBuff.resize((buff.size() - fingerPrintLength) >> 2); memcpy(dwBuff.data(), buff.data() + fingerPrintLength, buff.size() - fingerPrintLength); bin2TLVConfs(dwBuff, tlvs); checkConfTlvs(tlvs, compsId); if (!fwCompsAccess.getFwSupport()) { throw MlxcfgException("Firmware does not support applying configurations files"); } comp.init(buff, buff.size(), compsId); compsToBurn.push_back(comp); if (!fwCompsAccess.burnComponents(compsToBurn)) { throw MlxcfgException("Error applying the component: %s", fwCompsAccess.getLastErrMsg()); } } void GenericCommander::raw2XML(const vector& lines, string& xmlTemplate) { bool foundTlv = false; xmlTemplate = XML_DOCUMENT_START; // check fingerprint in first line vector::const_iterator it = lines.begin(); if (it == lines.end() || *it != RAW_FILE_FINGERPRINT) { throw MlxcfgException("Raw Content Fingerprint " RAW_FILE_FINGERPRINT " is missing or incorrect"); } it++; for (; it != lines.end(); it++) { string tlvXMLTemplate; if ((*it)[0] == '%') { // a FILE_COMMENT tlv // TODO } else { // printf("-D- line=%s\n", it->c_str()); char* p = NULL; vector binTLV; vector dws = splitStr(*it, ' '); VECTOR_ITERATOR(string, dws, s) { // printf("s=%s\n", s->c_str()); u_int32_t dw = __cpu_to_be32(strtoul((*s).c_str(), &p, 0)); // printf("-D- s=%s dw=0x%x\n", s->c_str(), dw); if (!p) { throw MlxcfgException("Input is not an unsigned number: %s", (*s).c_str()); } binTLV.push_back(dw); } if (!binTLV.empty()) { binTLV2XML(binTLV, tlvXMLTemplate); xmlTemplate += '\n' + tlvXMLTemplate + '\n'; foundTlv = true; } } } if (!foundTlv) { throw MlxcfgException("No TLV configurations were found in the raw file"); } xmlTemplate += ""; // printf("xmlTemplate=\n%s", xmlTemplate.c_str()); } void GenericCommander::removeSignatureTlvs(vector& tlvs) { auto tlv = tlvs.begin(); while (tlv != tlvs.end()) { if ((*tlv)->_name == "file_signature") { tlv = tlvs.erase(tlv); } else { ++tlv; } } } /* * RawCfgParams5thGen Class implementation */ RawCfgParams5thGen::RawCfgParams5thGen() { memset(&_nvdaTlv, 0, sizeof(tools_open_mnvda)); } int RawCfgParams5thGen::setRawData(const std::vector& tlvBuff) { if (tlvBuff.size() * 4 > TOOLS_OPEN_MNVDA_SIZE) { return errmsg(MCE_BAD_PARAM_VAL, "TLV size exceeds maximal limit. Maximum size is 0x%x bytes, " "actual length is 0x%x bytes", TOOLS_OPEN_MNVDA_SIZE, (u_int32_t)(tlvBuff.size() * 4)); } _tlvBuff = tlvBuff; memset(&_nvdaTlv, 0, sizeof(struct tools_open_mnvda)); std::vector tlvBuffBe = _tlvBuff; tlvBuffBe.resize(TOOLS_OPEN_MNVDA_SIZE >> 2); memset(&tlvBuffBe[0], 0, TOOLS_OPEN_MNVDA_SIZE); tlvBuffBe.insert(tlvBuffBe.begin(), _tlvBuff.begin(), _tlvBuff.end()); for (std::vector::iterator it = tlvBuffBe.begin(); it != tlvBuffBe.end(); it++) { *it = __cpu_to_be32(*it); } tools_open_mnvda_unpack(&_nvdaTlv, ((u_int8_t*)(&tlvBuffBe[0]))); _nvdaTlv.nv_hdr.writer_id = WRITER_ID_ICMD_MLXCONFIG_SET_RAW; return verifyTlv(); } std::vector RawCfgParams5thGen::getRawData() { std::vector tlvBuff; tlvBuff.resize(TOOLS_OPEN_MNVDA_SIZE >> 2); memset(&tlvBuff[0], 0, TOOLS_OPEN_MNVDA_SIZE >> 2); tools_open_mnvda_pack(&_nvdaTlv, ((u_int8_t*)(&tlvBuff[0]))); for (std::vector::iterator it = tlvBuff.begin(); it != tlvBuff.end(); it++) { *it = __be32_to_cpu(*it); } // Truncate to the correct data size tlvBuff.resize(this->_tlvBuff.size()); return tlvBuff; } int RawCfgParams5thGen::setOnDev(mfile* mf, RawTlvMode mode) { int rc; mft_signal_set_handling(1); DEBUG_PRINT_SEND(&_nvdaTlv, nvda); rc = reg_access_mnvda(mf, mode == SET_RAW ? REG_ACCESS_METHOD_SET : REG_ACCESS_METHOD_GET, &_nvdaTlv); DEBUG_PRINT_RECEIVE(&_nvdaTlv, nvda); dealWithSignal(); if (rc) { return errmsg("Failed to set raw TLV: %s", m_err2str((MError)rc)); } return MCE_SUCCESS; } std::string RawCfgParams5thGen::dumpTlv() { char str[1024] = {0}; snprintf(str, 1024, "Length: 0x%x\nVersion: %d\nOverrideEn: %d\nType: 0x%08x\nData: ", _nvdaTlv.nv_hdr.length, _nvdaTlv.nv_hdr.version, _nvdaTlv.nv_hdr.over_en, _nvdaTlv.nv_hdr.type.tlv_type_dw.tlv_type_dw); for (size_t i = 3; i < _tlvBuff.size(); i++) { char numStr[64] = {0}; snprintf(numStr, 64, "0x%08x ", _tlvBuff[i]); strcat(str, numStr); } strcat(str, "\n"); return str; } int RawCfgParams5thGen::verifyTlv() { // check TLV length int tlvLength = (_tlvBuff.size() - 3) << 2; if (tlvLength != _nvdaTlv.nv_hdr.length) { return errmsg(MCE_BAD_PARAM_VAL, "TLV size mismatch. reported length in TLV header: 0x%x. " "actual length: 0x%x", _nvdaTlv.nv_hdr.length, tlvLength); } return MCE_SUCCESS; } mstflint-4.26.0/mlxconfig/mlxcfg_expression.h0000644000175000017500000000415614522641732021607 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlxcfg_expression.h * * Created on: May 07, 2017 * Author: Ahmad Soboh */ #ifndef MLXCFG_EXPRESSION_H_ #define MLXCFG_EXPRESSION_H_ #include #include #include using namespace std; namespace mlxcfg { class Expression { private: string _expression; vector _vars; map _varsVal; public: explicit Expression(const string& expression); void getVars(vector& vars) const; double getVarVal(const string& var) const; void setVarVal(const string& var, double val); double evaluate(); }; } // namespace mlxcfg #endif /* MLXCFG_EXPRESSION_H_ */ mstflint-4.26.0/mlxconfig/mlxcfg_tlv.h0000644000175000017500000001365214522641732020216 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * TLV.h * * Created on: May 24, 2016 * Author: ahmads */ #ifndef MLXCFG_TLV_H_ #define MLXCFG_TLV_H_ #include #include #include #include #include #include #include "mlxcfg_param.h" #include "mlxcfg_view.h" #include "mlxcfg_utils.h" #define PORT_ATTR "port" #define MODULE_ATTR "module" #define OVR_EN_ATTR "ovr_en" #define RD_EN_ATTR "rd_en" #define PRIORITY_ATTR "priority" #define USER_PRIORITY_ATTR "USER" #define OEM_PRIORITY_ATTR "OEM" #define MLNX_PRIORITY_ATTR "MLNX" #define WRITER_ID_ATTR "writer_id" #define HOST_ATTR "host" #define FUNC_ATTR "function" #define ALL_ATTR_VAL "all" #define INDEX_ATTR "index" /* Forward declaration */ union tools_open_tlv_type; /* End of forward declaration */ enum TLVTarget { NIC, EXP_ROM, NIC_INTERNAL, SWITCH }; class TLVConf { private: bool _isNameFound, _isIdFound, _isSizeFound, _isCapFound, _isTargetFound, _isClassFound, _isVersion, _isDescriptionFound, _isMlxconfigNameFound; std::shared_ptr getParamByName(std::string n); void pack(u_int8_t* buff); u_int32_t getGlobalTypeBe(); u_int32_t getPhysicalPortTypeBe(); u_int32_t getPerHostFunctionTypeBe(); u_int32_t getPerHostTypeBe(); u_int32_t getModuleTypeBe(); u_int32_t getTlvTypeBe(); void mnva(mfile* mf, u_int8_t* buff, u_int16_t len, u_int32_t type, reg_access_method_t method, QueryType qT = QueryNext); static TLVTarget str2TLVTarget(char* s); static TLVClass str2TLVClass(char* s); public: std::string _name; u_int32_t _id; u_int16_t _size; bool _cap; TLVTarget _target; TLVClass _tlvClass; u_int32_t _version; std::string _description; std::vector> _params; std::string _mlxconfigName; u_int32_t _port; int32_t _module; bool _alreadyQueried; map _attrs; vector _buff; u_int32_t _maxTlvVersionSuppByFw; bool _isReadOnly; TLVConf(int columnsCount, char** dataRow, char** headerRow); ~TLVConf(); bool isMlxconfigSupported(); void getView(TLVConfView& tlvConfView, mfile* mf); bool isFWSupported(mfile* mf, bool isWriteOperation); std::shared_ptr getValidBitParam(std::string n); bool checkParamValidBit(std::shared_ptr p); std::vector> query(mfile* mf, QueryType qT); void updateParamByMlxconfigName(std::string param, std::string val, mfile* mf); void updateParamByMlxconfigName(std::string param, std::string val, u_int32_t index); void updateParamByName(string param, string val); void updateParamByName(string paramName, vector vals); u_int32_t getParamValueByName(std::string n); std::shared_ptr findParamByMlxconfigName(std::string mlxconfigName); std::shared_ptr findParamByMlxconfigNamePortModule(std::string mlxconfigName, u_int32_t port, int32_t module); std::shared_ptr findParamByName(std::string n); void CheckModuleAndPortMatchClass(int32_t module, u_int32_t port, std::string mlxconfigName); void getExprVarsValues(std::vector&, std::vector, std::map&, std::string); void evalTempVars(std::shared_ptr, std::vector, std::map&); u_int32_t evalRule(std::shared_ptr, std::string, std::vector&, std::map&); void checkRules(std::vector ruleTLVs); void setOnDevice(mfile* mf); void getRuleTLVs(std::set& result); void parseParamValue(std::string, std::string, u_int32_t&, std::string&, u_int32_t index); void unpack(u_int8_t* buff); void genXMLTemplate(string& xmlTemplate, bool allAttrs, bool withVal, bool defaultAttrVal); void genRaw(string& raw); void genBin(vector& buff, bool withHeader = true); bool isAStringParam(string paramName); bool isPortTargetClass(); bool isModuleTargetClass(); static int getMaxPort(mfile* mf); static int getMaxModule(); void setAttr(string attr, string val); void invalidate(mfile* mf); static void unpackTLVType(TLVClass tlvClass, tools_open_tlv_type& type, u_int32_t& id); }; int PriorityStrToNum(string priority); string PriorityNumToStr(u_int8_t priority); #endif /* MLXCFG_TLV_H_ */ mstflint-4.26.0/mlxconfig/Makefile.in0000644000175000017500000010753614522641737017757 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstconfig$(EXEEXT) @DISABLE_XML2_TRUE@am__append_1 = -DDISABLE_XML2 @DISABLE_XML2_FALSE@am__append_2 = -lxml2 @DISABLE_XML2_FALSE@am__append_3 = -lxml2 @ENABLE_INBAND_TRUE@am__append_4 = $(top_builddir)/mad_ifc/libmad_ifc.la @ENABLE_INBAND_TRUE@am__append_5 = $(top_builddir)/mad_ifc/libmad_ifc.la @ENABLE_OPENSSL_TRUE@am__append_6 = $(top_builddir)/mlxsign_lib/libmlxsign.la -lcrypto -lssl @ENABLE_OPENSSL_TRUE@am__append_7 = $(top_builddir)/mlxsign_lib/libmlxsign.la -lcrypto -lssl @ENABLE_OPENSSL_FALSE@am__append_8 = -DNO_OPEN_SSL subdir = mlxconfig DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) @ENABLE_OPENSSL_TRUE@am__DEPENDENCIES_3 = $(top_builddir)/mlxsign_lib/libmlxsign.la am_libmlxcfg_la_OBJECTS = mlxcfg_utils.lo mlxcfg_expression.lo \ mlxcfg_db_items.lo mlxcfg_db_manager.lo mlxcfg_param.lo \ mlxcfg_tlv.lo mlxcfg_commander.lo mlxcfg_generic_commander.lo libmlxcfg_la_OBJECTS = $(am_libmlxcfg_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(mlxprivhostlibdir)" PROGRAMS = $(bin_PROGRAMS) am_mstconfig_OBJECTS = mlxcfg_parser.$(OBJEXT) mlxcfg_ui.$(OBJEXT) mstconfig_OBJECTS = $(am_mstconfig_OBJECTS) am__DEPENDENCIES_4 = libmlxcfg.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) mstconfig_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(mstconfig_LDFLAGS) $(LDFLAGS) -o $@ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(bin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmlxcfg_la_SOURCES) $(mstconfig_SOURCES) DIST_SOURCES = $(libmlxcfg_la_SOURCES) $(mstconfig_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(mlxprivhostlib_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ PYTHON_WRAPPER_SCRIPT = ../common/python_wrapper SUBDIRS = mlxconfig_dbs AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common \ -I$(top_builddir)/common -I$(top_srcdir)/tools_layouts \ -I$(top_srcdir)/mft_utils -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/cmdif -I$(top_srcdir)/tools_res_mgmt \ $(MUPARSER_CFLAGS) $(SQLITE_CFLAGS) $(COMPILER_FPIC) # get mst device examples and tool name from makefile AM_CXXFLAGS = -pthread -Wall -W -g -MP -MD -pipe \ -Wno-deprecated-declarations $(COMPILER_FPIC) \ -DDATA_PATH=\"$(pkgdatadir)\" $(am__append_1) $(am__append_8) \ -DMLXCFG_NAME=\"mstconfig\" -DMST_DEV_EXAMPLE=\"04:00.0\" \ -DMST_DEV_EXAMPLE2=\"05:00.0\" MLXPRIVHOST_PYTHON_WRAPPER = mstprivhost bin_SCRIPTS = ${MLXPRIVHOST_PYTHON_WRAPPER} mlxprivhostlibdir = $(libdir)/mstflint/python_tools/$(MLXPRIVHOST_PYTHON_WRAPPER) mlxprivhostlib_DATA = $(MLXPRIVHOST_PYTHON_WRAPPER).py noinst_LTLIBRARIES = libmlxcfg.la libmlxcfg_la_SOURCES = mlxcfg_status.h mlxcfg_utils.h mlxcfg_utils.cpp mlxcfg_view.h \ mlxcfg_expression.h mlxcfg_expression.cpp \ mlxcfg_db_items.h mlxcfg_db_items.cpp \ mlxcfg_db_manager.h mlxcfg_db_manager.cpp mlxcfg_param.h mlxcfg_param.cpp mlxcfg_tlv.h mlxcfg_tlv.cpp \ mlxcfg_commander.h mlxcfg_commander.cpp mlxcfg_generic_commander.h mlxcfg_generic_commander.cpp libmlxcfg_la_DEPENDENCIES = \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(MUPARSER_LIBS) \ $(SQLITE_LIBS) libmlxcfg_la_LIBADD = $(libmlxcfg_la_DEPENDENCIES) ${LDL} \ $(am__append_3) $(am__append_5) $(am__append_7) mstconfig_DEPENDENCIES = \ libmlxcfg.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(MUPARSER_LIBS) \ $(SQLITE_LIBS) mstconfig_LDADD = $(mstconfig_DEPENDENCIES) ${LDL} $(am__append_2) \ $(am__append_4) $(am__append_6) mstconfig_LDFLAGS = -static mstconfig_SOURCES = mlxcfg_ui.h mlxcfg_parser.cpp mlxcfg_ui.cpp all: all-recursive .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxconfig/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxconfig/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmlxcfg.la: $(libmlxcfg_la_OBJECTS) $(libmlxcfg_la_DEPENDENCIES) $(EXTRA_libmlxcfg_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmlxcfg_la_OBJECTS) $(libmlxcfg_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstconfig$(EXEEXT): $(mstconfig_OBJECTS) $(mstconfig_DEPENDENCIES) $(EXTRA_mstconfig_DEPENDENCIES) @rm -f mstconfig$(EXEEXT) $(AM_V_CXXLD)$(mstconfig_LINK) $(mstconfig_OBJECTS) $(mstconfig_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_commander.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_db_items.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_db_manager.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_expression.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_generic_commander.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_param.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_parser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_tlv.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_ui.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxcfg_utils.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-mlxprivhostlibDATA: $(mlxprivhostlib_DATA) @$(NORMAL_INSTALL) @list='$(mlxprivhostlib_DATA)'; test -n "$(mlxprivhostlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mlxprivhostlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mlxprivhostlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mlxprivhostlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mlxprivhostlibdir)" || exit $$?; \ done uninstall-mlxprivhostlibDATA: @$(NORMAL_UNINSTALL) @list='$(mlxprivhostlib_DATA)'; test -n "$(mlxprivhostlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mlxprivhostlibdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mlxprivhostlibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-mlxprivhostlibDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-binSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ uninstall-mlxprivhostlibDATA .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-binSCRIPTS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man \ install-mlxprivhostlibDATA install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-binSCRIPTS uninstall-mlxprivhostlibDATA ${MLXPRIVHOST_PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_git_sha0000644000175000017500000000001014522641732016453 0ustar tzafrirctzafrirc9f7f49c mstflint-4.26.0/mlxreg/0000755000175000017500000000000014522641740015200 5ustar tzafrirctzafrircmstflint-4.26.0/mlxreg/mlxreg_ui.cpp0000644000175000017500000006336714522641732017717 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #include #include #include #include #include #include #include #include #ifndef MST_UL #include #include #endif #include "mlxreg_ui.h" #define IDENT " " #define IDENT2 IDENT IDENT #define IDENT3 "\t\t" #ifdef MST_UL #define MLXREG_EXEC "mstreg" #else #define MLXREG_EXEC "mlxreg" #endif #define CHECK_UNIQUE_OP(op) \ if (op != CMD_UNKNOWN) \ { \ throw MlxRegException("incompatible flags combination, please read help"); \ } #define CHECK_UNIQUE_STR(op) \ if (op != "") \ { \ throw MlxRegException("incompatible flags combination, please read help"); \ } #define CHECK_UNIQUE_UINT(op) \ if (op != 0) \ { \ throw MlxRegException("incompatible flags combination, please read help"); \ } #define PRINT_LINE(len) \ for (int i = 0; i < len; i++) \ { \ printf("="); \ } \ printf("\n"); /************************************ * FLAGS Constants ************************************/ #define DEVICE_FLAG "device" #define DEVICE_FLAG_SHORT 'd' #define HELP_FLAG "help" #define HELP_FLAG_SHORT 'h' #define VERSION_FLAG "version" #define VERSION_FLAG_SHORT 'v' #define ADB_FILE_FLAG "adb_file" #define ADB_FILE_FLAG_SHORT 'a' #define REG_NAME_FLAG "reg_name" #define REG_NAME_FLAG_SHORT ' ' #define REG_ID_FLAG "reg_id" #define REG_ID_FLAG_SHORT ' ' #define IDXES_FLAG "indexes" #define IDXES_FLAG_SHORT 'i' #define OPS_FLAG "op" #define OPS_FLAG_SHORT 'o' #define REG_LEN_FLAG "reg_len" #define REG_LEN_FLAG_SHORT ' ' #define OP_GET_FLAG "get" #define OP_GET_FLAG_SHORT 'g' #define OP_SET_FLAG "set" #define OP_SET_FLAG_SHORT 's' #define OP_SHOW_REG_FLAG "show_reg" #define OP_SHOW_REG_FLAG_SHORT ' ' #define OP_SHOW_REGS_FLAG "show_regs" #define OP_SHOW_REGS_FLAG_SHORT ' ' #define OP_SHOW_ALL_REGS_FLAG "show_all_regs" #define OP_SHOW_ALL_REGS_FLAG_SHORT ' ' #define IGNORE_CAP_CHECK_FLAG "ignore_cap_check" #define IGNORE_CAP_CHECK_FLAG_SHORT ' ' #define IGNORE_REG_CHECK_FLAG "ignore_reg_check" #define IGNORE_REG_CHECK_FLAG_SHORT ' ' #define FORCE_FLAG "yes" #define FORCE_FLAG_SHORT ' ' #define IGNORE_RO "ignore_ro" #define IGNORE_RO_SHORT ' ' #define FILE_TO_DUMP_BUFFER "output_file" #define FILE_TO_DUMP_BUFFER_SHORT ' ' #define FILE_IO "file_io" #define FILE_IO_SHORT ' ' using namespace mlxreg; /************************************ * Function: MlxRegUi ************************************/ MlxRegUi::MlxRegUi() : CommandLineRequester("mlxreg OPTIONS"), _cmdParser("mlxreg") { initCmdParser(); _device = ""; _mf = NULL; _extAdbFile = ""; _regName = ""; _regID = 0; _dataStr = ""; _indexesStr = ""; _dataLen = 0; _ignoreCapCheck = false; _op = CMD_UNKNOWN; _mlxRegLib = NULL; _force = false; _ignore_ro = false; _output_file = ""; _file_io = ""; #if defined(EXTERNAL) || defined(MST_UL) _isExternal = true; #else _isExternal = false; #endif } /************************************ * Function: ~MlxRegUi ************************************/ MlxRegUi::~MlxRegUi() { if (_mf) { mclose(_mf); } if (_mlxRegLib) { delete _mlxRegLib; } } /************************************ * Function: initCmdParser ************************************/ void MlxRegUi::initCmdParser() { AddOptions(DEVICE_FLAG, DEVICE_FLAG_SHORT, "MstDevice", "Mellanox mst device name"); AddOptions(HELP_FLAG, HELP_FLAG_SHORT, "", "Show help message and exit"); AddOptions(VERSION_FLAG, VERSION_FLAG_SHORT, "", "Show version and exit"); AddOptions(ADB_FILE_FLAG, ADB_FILE_FLAG_SHORT, "AdbFile", "External ADB file"); AddOptions(REG_NAME_FLAG, REG_NAME_FLAG_SHORT, "RegisterName", "Access register name"); AddOptions(REG_ID_FLAG, REG_ID_FLAG_SHORT, "RegisterID", "Access register ID"); AddOptions(IDXES_FLAG, IDXES_FLAG_SHORT, "RegisterData", "Register data"); AddOptions(OPS_FLAG, OPS_FLAG_SHORT, "RegisterData", "Register data"); AddOptions(REG_LEN_FLAG, REG_LEN_FLAG_SHORT, "RegisterDataLen", "Register data length"); AddOptions(IGNORE_CAP_CHECK_FLAG, IGNORE_CAP_CHECK_FLAG_SHORT, "", ""); AddOptions(IGNORE_REG_CHECK_FLAG, IGNORE_REG_CHECK_FLAG_SHORT, "", ""); AddOptions(OP_GET_FLAG, OP_GET_FLAG_SHORT, "", "Register access GET"); AddOptions(OP_SET_FLAG, OP_SET_FLAG_SHORT, "RegisterData", "Register access SET"); AddOptions(OP_SHOW_REG_FLAG, OP_SHOW_REG_FLAG_SHORT, "RegisterName", "Print register properties and exit"); AddOptions(OP_SHOW_REGS_FLAG, OP_SHOW_REGS_FLAG_SHORT, "", "Print available registers names and exit"); AddOptions(OP_SHOW_ALL_REGS_FLAG, OP_SHOW_ALL_REGS_FLAG_SHORT, "", ""); AddOptions(FORCE_FLAG, FORCE_FLAG_SHORT, "", ""); AddOptions(IGNORE_RO, IGNORE_RO_SHORT, "", "Ignore the access check in the SET operation"); AddOptions(FILE_TO_DUMP_BUFFER, FILE_TO_DUMP_BUFFER_SHORT, "OutputFile", "Dump buffer to file instead of sending to device"); AddOptions(FILE_IO, FILE_IO_SHORT, "FilePath", "Work with file for IO instead of CLI flags"); _cmdParser.AddRequester(this); } /************************************ * Function: printFlagLine ************************************/ static void printFlagLine(const char flag_s, string flag_l, string param, string desc) { string sflags_s(1, flag_s); if (sflags_s != " ") { printf(IDENT2 "-%-2s|--%-10s", sflags_s.c_str(), flag_l.c_str()); } else { printf(IDENT2 "--%-14s", flag_l.c_str()); } if (param.length()) { printf(" <%s>", param.c_str()); } else { printf("\t"); } printf(IDENT3 ": %-30s\n", desc.c_str()); } /************************************ * Function: PrintHelp ************************************/ void MlxRegUi::printHelp() { // print opening printf(IDENT "NAME:\n" IDENT2 MLXREG_EXEC "\n" IDENT "SYNOPSIS:\n" IDENT2 MLXREG_EXEC " [OPTIONS]\n"); printf(IDENT "DESCRIPTION:\n" IDENT2 "Exposes supported access registers, and allows users to obtain information regarding\n" IDENT2 "the registers fields and attributes, and to set and get data with specific\n" IDENT2 "register.\n"); // print options printf("\n"); printf(IDENT "OPTIONS:\n"); printFlagLine(HELP_FLAG_SHORT, HELP_FLAG, "", "Display help message."); printFlagLine(VERSION_FLAG_SHORT, VERSION_FLAG, "", "Display version info."); printFlagLine(DEVICE_FLAG_SHORT, DEVICE_FLAG, "device", "Perform operation for a specified mst device."); printFlagLine(ADB_FILE_FLAG_SHORT, ADB_FILE_FLAG, "adb_file", "An external ADB file"); printFlagLine(REG_NAME_FLAG_SHORT, REG_NAME_FLAG, "reg_name", "Known access register name"); printFlagLine(REG_ID_FLAG_SHORT, REG_ID_FLAG, "reg_ID", "Access register ID"); printFlagLine(REG_LEN_FLAG_SHORT, REG_LEN_FLAG, "reg_length", "Access register layout length (bytes)"); printFlagLine(IDXES_FLAG_SHORT, IDXES_FLAG, "idxs_vals", "Register indexes"); printFlagLine(OPS_FLAG_SHORT, OPS_FLAG, "ops_vals", "Register optional fields"); printFlagLine(OP_GET_FLAG_SHORT, OP_GET_FLAG, "", "Register access GET"); printFlagLine(OP_SET_FLAG_SHORT, OP_SET_FLAG, "reg_dataStr", "Register access SET"); printFlagLine(OP_SHOW_REG_FLAG_SHORT, OP_SHOW_REG_FLAG, "reg_name", "Print the fields of a given reg access (must have reg_name)"); printFlagLine(OP_SHOW_REGS_FLAG_SHORT, OP_SHOW_REGS_FLAG, "", "Print all available reg access'"); printFlagLine(FORCE_FLAG_SHORT, FORCE_FLAG, "", "Non-interactive mode, answer yes to all questions"); // print usage examples printf("\n"); printf(IDENT "Examples:\n"); printf(IDENT2 "%-40s: %s\n", "Show all available access register", MLXREG_EXEC " -d --show_regs"); printf(IDENT2 "%-40s: %s\n", "Show all fields of register PAOS", MLXREG_EXEC " -d --show_reg PAOS"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "GET PAOS with indexes: local port 0x1 and swid 0x5", MLXREG_EXEC " -d --get --reg_name PAOS --indexes \"local_port=0x1,swid=0x5\""); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "SET PAOS with indexes: local port 0x1 and swid 0x5, and data: e 0x0", MLXREG_EXEC " -d --set \"e=0x0\" --reg_name PAOS --indexes \"local_port=0x1,swid=0x5\""); printf("\n"); } /************************************ * Function: getLongestNodeLen ************************************/ size_t getLongestNodeLen(std::vector root) { size_t len = 0; for (std::vector::size_type i = 0; i != root.size(); i++) { if (strlen(root[i]->get_field_name().c_str()) > len) { len = strlen(root[i]->get_field_name().c_str()); } } return (len + 3); } /************************************ * Function: printRegFields ************************************/ void MlxRegUi::printRegFields(vector nodeFields) { int largestName = (int)getLongestNodeLen(nodeFields); printf("%-*s | %-10s | %-8s | %-8s | %-8s\n", largestName, "Field Name", "Address (Bytes)", "Offset (Bits)", "Size (Bits)", "Access"); PRINT_LINE(58 + largestName); for (std::vector::size_type i = 0; i != nodeFields.size(); i++) { printf("%-*s | 0x%08x | %-8d | %-8d | %-15s\n", largestName, nodeFields[i]->get_field_name().c_str(), (nodeFields[i]->offset >> 3) & ~0x3, nodeFields[i]->startBit(), nodeFields[i]->fieldDesc->eSize(), RegAccessParser::getAccess(nodeFields[i]).c_str()); } PRINT_LINE(58 + largestName); ; } /************************************ * Function: printRegNames ************************************/ void MlxRegUi::printRegNames(std::vector regs) { printf("Available Access Registers\n"); PRINT_LINE(104); for (std::vector::size_type i = 0; i != regs.size(); i++) { printf("%-30s\n", regs[i].c_str()); } } /************************************ * Function: printAdbContext ************************************/ void MlxRegUi::printAdbContext(AdbInstance* node, std::vector buff) { std::vector subItems = node->getLeafFields(true); int largestName = (int)getLongestNodeLen(subItems); printf("%-*s | %-8s\n", largestName, "Field Name", "Data"); PRINT_LINE(largestName + 14); for (std::vector::size_type i = 0; i != subItems.size(); i++) { printf("%-*s | 0x%08x\n", largestName, subItems[i]->get_field_name().c_str(), (unsigned int)subItems[i]->popBuf((u_int8_t*)&buff[0])); } PRINT_LINE(largestName + 14); } /************************************ * Function: printAdbContext ************************************/ void MlxRegUi::printBuff(std::vector buff) { u_int32_t rawAddr = 0; printf("Address | Data\n"); PRINT_LINE(23); for (std::vector::size_type i = 0; i != buff.size(); i++) { printf("0x%08x | 0x%08x\n", rawAddr, CPU_TO_BE32(buff[i])); rawAddr += 4; } PRINT_LINE(23); } /************************************ * Function: askUser ************************************/ bool MlxRegUi::askUser(const char* question) { printf("\n %s ? (y/n) [n] : ", question); if (_force) { printf("y\n"); } else { mft_restore_and_raise(); fflush(stdout); std::string answer; std::getline(std::cin, answer); if (strcasecmp(answer.c_str(), "y") && strcasecmp(answer.c_str(), "yes")) { return false; } mft_signal_set_handling(1); // set again in case we move from here to another critical section. } return true; } /************************************ * Function: HandleOption ************************************/ ParseStatus MlxRegUi::HandleOption(string name, string value) { if (name == HELP_FLAG) { printHelp(); return PARSE_OK_WITH_EXIT; } else if (name == VERSION_FLAG) { #if defined(EXTERNAL) || defined(MST_UL) print_version_string(MLXREG_EXEC, NULL); #else print_version_string("mlxreg (internal)", NULL); #endif return PARSE_OK_WITH_EXIT; } else if (name == DEVICE_FLAG) { _device = value; return PARSE_OK; } else if (name == ADB_FILE_FLAG) { _extAdbFile = value; return PARSE_OK; } else if (name == IDXES_FLAG) { _indexesStr = value; return PARSE_OK; } else if (name == OPS_FLAG) { _opsStr = value; return PARSE_OK; } else if (name == REG_NAME_FLAG) { CHECK_UNIQUE_UINT(_regID); CHECK_UNIQUE_UINT(_dataLen); _regName = value; return PARSE_OK; } else if (name == REG_ID_FLAG) { CHECK_UNIQUE_STR(_regName); RegAccessParser::strToUint32((char*)value.c_str(), _regID); return PARSE_OK; } else if (name == REG_LEN_FLAG) { CHECK_UNIQUE_STR(_regName); RegAccessParser::strToUint32((char*)value.c_str(), _dataLen); return PARSE_OK; } #if !defined(EXTERNAL) && !defined(MST_UL) else if (name == IGNORE_CAP_CHECK_FLAG) { _ignoreCapCheck = true; return PARSE_OK; } #endif else if (name == IGNORE_REG_CHECK_FLAG) { // TODO: remove IGNORE_REG_CHECK_FLAG from UI after 4.14.0 release, it's deprecated cout << endl << "-W- The flag --" << IGNORE_REG_CHECK_FLAG << " is deprecated and will be removed." << endl << endl; return PARSE_OK; } else if (name == FORCE_FLAG) { _force = true; return PARSE_OK; } else if (name == OP_SET_FLAG) { CHECK_UNIQUE_OP(_op); _op = CMD_SET; _dataStr = value; return PARSE_OK; } else if (name == OP_GET_FLAG) { CHECK_UNIQUE_OP(_op); _op = CMD_GET; return PARSE_OK; } else if (name == OP_SHOW_REG_FLAG) { CHECK_UNIQUE_OP(_op); _op = CMD_SHOW_REG; _regName = value; return PARSE_OK; } else if (name == OP_SHOW_REGS_FLAG) { CHECK_UNIQUE_OP(_op); _op = CMD_SHOW_REGS; return PARSE_OK; } else if (name == OP_SHOW_ALL_REGS_FLAG) { CHECK_UNIQUE_OP(_op); _op = CMD_SHOW_ALL_REGS; return PARSE_OK; } #if !defined(EXTERNAL) && !defined(MST_UL) else if (name == IGNORE_RO) { _ignore_ro = true; return PARSE_OK; } else if (name == FILE_TO_DUMP_BUFFER) { _output_file = value; return PARSE_OK; } else if (name == FILE_IO) { _file_io = value; return PARSE_OK; } #endif return PARSE_ERROR; } /************************************ * Function: paramValidate ************************************/ void MlxRegUi::paramValidate() { if (_device == "") { throw MlxRegException("you must provide a device name"); } if (_op == CMD_UNKNOWN) { throw MlxRegException("no operation flag, please read help"); } if (_op == CMD_SHOW_REG) { if (_regName == "") { throw MlxRegException("you must provide reg_name in order to use show_register"); } if (_regID != 0) { throw MlxRegException("you can't use show_register with reg_id"); } } if (_op == CMD_GET || _op == CMD_SET) { if (_regID == 0 && _regName == "") { throw MlxRegException("you must provide register name or register id when SET/GET"); } // Unknown mode if (_regID != 0) { if (_dataLen == 0) { throw MlxRegException("you must provide register length when SET/GET using register id"); } } } if (_op == CMD_SET && _dataStr == "") { throw MlxRegException("you must provide registers data string to use SET"); } } void MlxRegUi::readFromFile(string file_name, vector& buff, int len) { ifstream file(file_name.c_str(), ios::binary); for (int idx = 0; idx < (len / 4); idx++) { u_int32_t data; file.read((char*)&data, sizeof(u_int32_t)); if (!file) { MlxRegException("Failed to read from file"); } buff.push_back(__cpu_to_be32(data)); } file.close(); } void MlxRegUi::writeToFile(string file_name, vector buff) { ofstream file(file_name.c_str(), ios::binary | ios::in | ios::out);// Overwrite the file (in/out) for (unsigned int idx = 0; idx < buff.size(); idx++) { u_int32_t data = __cpu_to_be32(buff[idx]); file.write((char*)&data, sizeof(u_int32_t)); } file.close(); } void MlxRegUi::sendCmdBasedOnFileIo(maccess_reg_method_t cmd, int reg_size) { std::vector buff; //* read input from file readFromFile(_file_io, buff, reg_size); //* Send GET command _mlxRegLib->sendRegister(_regName, cmd, buff); //* Write output to file (for GET) if (cmd == MACCESS_REG_METHOD_GET) { writeToFile(_file_io, buff); } } void MlxRegUi::run(int argc, char** argv) { ParseStatus rc = _cmdParser.ParseOptions(argc, argv); if (rc == PARSE_OK_WITH_EXIT) { return; } else if (rc == PARSE_ERROR) { cout << _cmdParser.GetUsage(); throw MlxRegException("failed to parse arguments. %s", _cmdParser.GetErrDesc()); } paramValidate(); // Init device _mf = mopen(_device.c_str()); if (!_mf) { throw MlxRegException("Failed to open device: \"" + _device + "\", " + strerror(errno)); } if (!MlxRegLib::isDeviceSupported(_mf)) { throw MlxRegException("Device is not supported"); } if (_ignoreCapCheck == false) { try { MlxRegLib::isAccessRegisterSupported(_mf); } catch (MlxRegException& exp) { #if defined(EXTERNAL) || defined(MST_UL) throw exp; #else throw MlxRegException("%s. \n internal only: FW might be old, consider running " "with --%s (This flag is deprecated)", exp.what(), IGNORE_CAP_CHECK_FLAG); #endif } } _mlxRegLib = new MlxRegLib(_mf, _extAdbFile, _isExternal); std::vector regFields; std::vector regs; AdbInstance* regNode = NULL; std::vector buff; switch (_op) { case CMD_SHOW_REG: _mlxRegLib->showRegister(_regName, regFields); printRegFields(regFields); break; case CMD_SHOW_REGS: _mlxRegLib->showRegisters(regs); printRegNames(regs); break; case CMD_SHOW_ALL_REGS: // TODO: remove CMD_SHOW_ALL_REGS from UI after 4.14.0 release, it's deprecated cout << endl << "-W- The option --" << OP_SHOW_ALL_REGS_FLAG << " is deprecated and will be removed, please use --" << OP_SHOW_REGS_FLAG << " instead." << endl << endl; _mlxRegLib->showRegisters(regs); printRegNames(regs); break; case CMD_GET: { if (_file_io != "") { assert(_regName != ""); int reg_size = (_mlxRegLib->findAdbNode(_regName)->size) / 8; // in Bytes sendCmdBasedOnFileIo(MACCESS_REG_METHOD_GET, reg_size); break; } if (_regName != "") { regNode = _mlxRegLib->findAdbNode(_regName); } RegAccessParser parser(_dataStr, _indexesStr, _opsStr, regNode, _dataLen); buff = parser.genBuff(); printf("Sending access register...\n\n"); if (_regName != "") { // Known mode _mlxRegLib->sendRegister(_regName, MACCESS_REG_METHOD_GET, buff); printAdbContext(regNode, buff); } else { // Unknown mode _mlxRegLib->sendRegister(_regID, MACCESS_REG_METHOD_GET, buff); printBuff(buff); } } break; case CMD_SET: { if (_file_io != "") { int reg_size = (_mlxRegLib->findAdbNode(_regName)->size) / 8; // in Bytes sendCmdBasedOnFileIo(MACCESS_REG_METHOD_SET, reg_size); break; } if (_regName != "") { regNode = _mlxRegLib->findAdbNode(_regName); } // Read current register data into buffer RegAccessParser parserGet(_dataStr, _indexesStr, _opsStr, regNode, _dataLen, _ignore_ro); buff = parserGet.genBuff(); if (_regName != "") { // Known mode _mlxRegLib->sendRegister(_regName, MACCESS_REG_METHOD_GET, buff); } else { // Unknown mode _mlxRegLib->sendRegister(_regID, MACCESS_REG_METHOD_GET, buff); } // Update the register buffer with user inputs RegAccessParser parser(_dataStr, _indexesStr, _opsStr, regNode, buff, _ignore_ro); buff = parser.genBuff(); if (_output_file != "") { printAdbContext(regNode, buff); _mlxRegLib->dumpRegisterData(_output_file, buff); break; } if (_regName != "") { // Known mode printf("You are about to send access register: %s with the following data:\n", _regName.c_str()); printAdbContext(regNode, buff); if (askUser("Do you want to continue")) { printf(" Sending access register...\n"); _mlxRegLib->sendRegister(_regName, MACCESS_REG_METHOD_SET, buff); } } else { // Unknown mode printf("You are about to send access register id: 0x%x with the following data:\n", _regID); printBuff(buff); if (askUser("Do you want to continue")) { printf(" Sending access register...\n"); _mlxRegLib->sendRegister(_regID, MACCESS_REG_METHOD_SET, buff); } } } break; default: break; } } /************************************ * Function: main ************************************/ int main(int argc, char** argv) { try { mft_signal_set_msg((char*)"Interrupted, Exiting..."); mft_signal_set_handling(1); MlxRegUi mlxReg; mlxReg.run(argc, argv); } catch (MlxRegException& exp) { fprintf(stderr, "-E- %s\n", exp.what()); return 1; } catch (AdbException& exp) { fprintf(stderr, "-E- %s\n", exp.what()); return 1; } catch (const std::exception& exp) { fprintf(stderr, "-E- General Exception:%s\n", exp.what()); return 1; } return 0; } mstflint-4.26.0/mlxreg/mlxreg_lib/0000755000175000017500000000000014522641740017324 5ustar tzafrirctzafrircmstflint-4.26.0/mlxreg/mlxreg_lib/mlxreg_lib.cpp0000644000175000017500000002370114522641732022160 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include "mlxreg_lib.h" #include "cmdif/icmd_cif_open.h" #ifndef MST_UL #include #endif #include #include #include #define REG_ACCESS_UNION_NODE "access_reg_summary" using namespace mlxreg; const int MlxRegLib::RETRIES_COUNT = 3; const int MlxRegLib::SLEEP_INTERVAL = 100; MlxRegLib::MlxRegLib(mfile* mf, string extAdbFile, bool isExternal) { _mf = mf; _isExternal = isExternal; try { if (_isExternal && extAdbFile == "") { dm_dev_id_t devID = getDevId(); extAdbFile = PrmAdbDB::getDefaultDBName(dm_dev_is_switch(devID)); } initAdb(extAdbFile); } catch (MlxRegException& adbInitExp) { if (_adb) { delete _adb; } throw adbInitExp; } string unionNode = REG_ACCESS_UNION_NODE; string rootNode = unionNode + "_selector"; if (_isExternal) { rootNode = rootNode + "_ext"; } _regAccessRootNode = _adb->createLayout(rootNode); if (!_regAccessRootNode) { throw MlxRegException("No supported access registers found"); } _regAccessUnionNode = _regAccessRootNode->getChildByPath(unionNode); if (!_regAccessUnionNode) { throw MlxRegException("No supported access registers found"); } if (!_regAccessUnionNode->isUnion()) { throw MlxRegException("No supported access registers found"); } try { _regAccessMap = _regAccessUnionNode->unionSelector->getEnumMap(); } catch (AdbException& exp) { throw MlxRegException("Failed to extract registers info. %s", exp.what()); } // Set error map std::map errmap; errmap[MRLS_SUCCESS] = "Success"; errmap[MRLS_GENERAL] = "General error"; updateErrCodes(errmap); } /************************************ * Function: ~MlxRegLib ************************************/ MlxRegLib::~MlxRegLib() { if (_regAccessRootNode) { delete _regAccessRootNode; } if (_adb) { delete _adb; } } dm_dev_id_t MlxRegLib::getDevId() { return getDevId(_mf); } dm_dev_id_t MlxRegLib::getDevId(mfile* mf) { dm_dev_id_t devID = DeviceUnknown; u_int32_t hwDevID = 0; u_int32_t hwChipRev = 0; if (dm_get_device_id(mf, &devID, &hwDevID, &hwChipRev)) { throw MlxRegException("Failed to read device ID"); } return devID; } bool MlxRegLib::isDeviceSupported(mfile* mf) { dm_dev_id_t devID = getDevId(mf); return !dm_is_4th_gen(devID); } void MlxRegLib::initAdb(string extAdbFile) { _adb = new Adb(); if (extAdbFile != "") { if (!_adb->load(extAdbFile, false, false, false)) { throw MlxRegException("Failure in loading Adabe file. %s", _adb->getLastError().c_str()); } } else { throw MlxRegException("No Adabe was provided, please provide Adabe file to continue"); } } /************************************ * Function: findAdbNode ************************************/ AdbInstance* MlxRegLib::findAdbNode(string name) { if (_regAccessMap.find(name) == _regAccessMap.end()) { throw MlxRegException("Can't find access register name: %s", name.c_str()); } return _regAccessUnionNode->getUnionSelectedNodeName(name); } /************************************ * Function: showRegister ************************************/ MlxRegLibStatus MlxRegLib::showRegister(string regName, std::vector& fields) { AdbInstance* adbNode = findAdbNode(regName); fields = adbNode->getLeafFields(true); return MRLS_SUCCESS; } /************************************ * Function: showRegisters ************************************/ MlxRegLibStatus MlxRegLib::showRegisters(std::vector& regs) { for (std::map::iterator it = _regAccessMap.begin(); it != _regAccessMap.end(); ++it) { regs.push_back(it->first); } return MRLS_SUCCESS; } /************************************ * Function: sendMaccessReg ************************************/ int MlxRegLib::sendMaccessReg(u_int16_t regId, int method, std::vector& data) { int status = 0; int rc; std::vector temp_data; copy(data.begin(), data.end(), back_inserter(temp_data)); int i = RETRIES_COUNT; do { rc = maccess_reg(_mf, regId, (maccess_reg_method_t)method, (u_int32_t*)&data[0], (sizeof(u_int32_t) * data.size()), (sizeof(u_int32_t) * data.size()), (sizeof(u_int32_t) * data.size()), &status); if ((rc != ME_ICMD_STATUS_IFC_BUSY && status != ME_REG_ACCESS_BAD_PARAM) || !(_mf->flags & MDEVS_REM)) { break; } data.clear(); copy(temp_data.begin(), temp_data.end(), back_inserter(data)); msleep(SLEEP_INTERVAL); } while (i-- > 0); temp_data.clear(); return rc; } /************************************ * Function: sendRegister ************************************/ MlxRegLibStatus MlxRegLib::sendRegister(string regName, int method, std::vector& data) { u_int16_t regId = (u_int16_t)_regAccessMap.find(regName)->second; int rc; rc = sendMaccessReg(regId, method, data); if (rc) { throw MlxRegException("Failed to send access register: %s", m_err2str((MError)rc)); } return MRLS_SUCCESS; } /************************************ * Function: sendRegister ************************************/ MlxRegLibStatus MlxRegLib::sendRegister(u_int16_t regId, int method, std::vector& data) { int rc; rc = sendMaccessReg(regId, method, data); if (rc) { throw MlxRegException("Failed send access register: %s", m_err2str((MError)rc)); } return MRLS_SUCCESS; } /************************************ * Function: getLastErrMsg ************************************/ string MlxRegLib::getLastErrMsg() { std::stringstream sstm; int lastErrCode = getLastErrCode(); string errCodeStr = err2Str(lastErrCode); string errStr = err(); sstm << errCodeStr; if (errStr != errCodeStr) { sstm << ": " << errStr; } return sstm.str(); } /************************************ * Function: isRegSizeSupported ************************************/ bool MlxRegLib::isRegSizeSupported(string regName) { AdbInstance* adbNode = _regAccessUnionNode->getUnionSelectedNodeName(regName); return (((adbNode->size >> 3) <= (u_int32_t)mget_max_reg_size(_mf, MACCESS_REG_METHOD_SET)) || ((adbNode->size >> 3) <= (u_int32_t)mget_max_reg_size(_mf, MACCESS_REG_METHOD_GET))); } /************************************ * Function: isAccessRegisterSupported ************************************/ void MlxRegLib::isAccessRegisterSupported(mfile* mf) { int status; struct icmd_hca_icmd_query_cap_general icmd_cap; int i = RETRIES_COUNT; if (mf->tp == MST_MLX5_CONTROL_DRIVER) { return; } do { memset(&icmd_cap, 0, sizeof(icmd_cap)); status = get_icmd_query_cap(mf, &icmd_cap); if (!(status || icmd_cap.allow_icmd_access_reg_on_all_registers == 0)) break; msleep(SLEEP_INTERVAL); } while (i-- > 0); if (status || icmd_cap.allow_icmd_access_reg_on_all_registers == 0) { throw MlxRegException("FW burnt on device does not support generic access register"); } } /************************************ * Function: isAccessRegisterGMPSupported ************************************/ bool MlxRegLib::isAccessRegisterGMPSupported(maccess_reg_method_t reg_method) { return (bool)(supports_reg_access_gmp(_mf, reg_method)); } /************************************ * Function: isIBDevice ************************************/ bool MlxRegLib::isIBDevice() { return (bool)(_mf->flags & MDEVS_IB); } /************************************ * Function: dumpRegisterData ************************************/ MlxRegLibStatus MlxRegLib::dumpRegisterData(string output_file_name, std::vector& data) { FILE* outputFile = fopen(output_file_name.c_str(), "w"); if (outputFile) { for (std::vector::size_type i = 0; i != data.size(); i++) { fprintf(outputFile, "%08x\n", CPU_TO_BE32(data[i])); } } else { throw MlxRegException("Failed to open file"); } fclose(outputFile); return MRLS_SUCCESS; } mstflint-4.26.0/mlxreg/mlxreg_lib/mlxreg_parser.cpp0000644000175000017500000004042014522641732022703 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include "mlxreg_parser.h" #include using namespace mlxreg; /************************************ * Function: RegParser ************************************/ RegAccessParser::RegAccessParser(string data, string indexes, string ops, AdbInstance* regNode, std::vector buffer, bool ignore_ro) { _data = data; _indexes = indexes; _ops = ops; _regNode = regNode; _ignore_ro = ignore_ro; output_file = ""; if (!regNode) { _parseMode = Pm_Unknown; } else { _parseMode = Pm_Known; } _len = buffer.size(); _buffer = buffer; /* * Initiate byte-swapping * At this point we know the the buffer argument already been trough byte- * swapping process, we need to re-commit this process so the data will be correct. */ for (std::vector::size_type j = 0; j < _buffer.size(); j++) { _buffer[j] = CPU_TO_BE32((_buffer[j])); } } /************************************ * Function: RegParser ************************************/ RegAccessParser::RegAccessParser(string data, string indexes, string ops, AdbInstance* regNode, u_int32_t len, bool ignore_ro) { _data = data; _indexes = indexes; _ops = ops; _regNode = regNode; _ignore_ro = ignore_ro; output_file = ""; _len = len; // Set parsing method if (!regNode) { if (_len > MAX_REG_SIZE) { throw MlxRegException("Register length: 0x%08x is too large", _len); } _parseMode = Pm_Unknown; _len = (_len + 3) / 4; } else { _parseMode = Pm_Known; _len = (_regNode->size) >> 5; } // Resize buffer _buffer.resize(_len); } /************************************ * Function: parse ************************************/ std::vector RegAccessParser::genBuff() { if (_parseMode == Pm_Known) { return genBuffKnown(); } else { return genBuffUnknown(); } } /************************************ * Function: genBuffKnown ************************************/ std::vector RegAccessParser::genBuffKnown() { parseIndexes(); parseOps(); // Update buffer with data values if (_data != "") { parseData(); } // Convert to BE32 for (std::vector::size_type j = 0; j < _buffer.size(); j++) { _buffer[j] = CPU_TO_BE32((_buffer[j])); } return _buffer; } /************************************ * Function: genBuffUnknown ************************************/ std::vector RegAccessParser::genBuffUnknown() { parseUnknown(); // Convert to BE32 for (std::vector::size_type j = 0; j < _buffer.size(); j++) { _buffer[j] = CPU_TO_BE32((_buffer[j])); } return _buffer; } /************************************ * Function: parseIndexes ************************************/ void RegAccessParser::parseIndexes() { std::vector tokens = strSplit(_indexes, ',', false); std::vector valid_tokens = getAllIndexes(_regNode); parseAccessType(tokens, valid_tokens, INDEX); } /************************************ * Function: parseOps ************************************/ void RegAccessParser::parseOps() { std::vector tokens = strSplit(_ops, ',', false); std::vector valid_tokens = getAllOps(_regNode); parseAccessType(tokens, valid_tokens, OP); } /************************************ * Function: accessTypeToString ************************************/ const string RegAccessParser::accessTypeToString(access_type_t accessType) { static map access_type_map; if (access_type_map.size() == 0) { access_type_map.insert(pair(INDEX, "INDEX")); access_type_map.insert(pair(OP, "OP")); } map::iterator itr = access_type_map.find(accessType); if (itr != access_type_map.end()) { return itr->second; } return string("Unknown"); // should not get here } /************************************ * Function: parseAccessType ************************************/ void RegAccessParser::parseAccessType(std::vector tokens, std::vector validTokens, access_type_t accessType) { std::vector foundTokens; // Update buffer with values (indexes/ops) for (std::vector::size_type i = 0; i != tokens.size(); i++) { std::vector tokenPair = strSplit(tokens[i], '=', true); string name = tokenPair[0]; string val = tokenPair[1]; u_int32_t uintVal; strToUint32((char*)val.c_str(), uintVal); AdbInstance* field = getField(name); // Make sure that the given field name is valid if (std::find(validTokens.begin(), validTokens.end(), name) != validTokens.end()) { if (std::find(foundTokens.begin(), foundTokens.end(), name) != foundTokens.end()) { throw MlxRegException("Field: %s appears twice.", name.c_str()); } foundTokens.push_back(name); } else { throw MlxRegException("Field: %s is not a %s.", name.c_str(), this->accessTypeToString(accessType).c_str()); } updateBuffer(field->offset, field->size, uintVal); } if (accessType == INDEX) { // Make sure that all the indexes are set for (std::vector::size_type i = 0; i != validTokens.size(); i++) { bool idxFound = false; for (std::vector::size_type j = 0; j != foundTokens.size(); j++) { if (validTokens[i] == foundTokens[j]) { idxFound = true; } } if (!idxFound) { throw MlxRegException("Index: %s was not provided", validTokens[i].c_str()); } } } } /************************************ * Function: parseData ************************************/ void RegAccessParser::parseData() { std::vector datTokens = strSplit(_data, ',', false); // Update buffer with data values for (std::vector::size_type i = 0; i != datTokens.size(); i++) { std::vector dat = strSplit(datTokens[i], '=', true); string datName = dat[0]; string datVal = dat[1]; u_int32_t uintVal; strToUint32((char*)datVal.c_str(), uintVal); AdbInstance* field = getField(datName); if (isRO(field)) { throw MlxRegException("Field: %s is ReadOnly", datName.c_str()); } updateBuffer(field->offset, field->size, uintVal); } } /************************************ * Function: parseUnknown ************************************/ void RegAccessParser::parseUnknown() { // Split input strings std::vector idxTokens = strSplit(_indexes, ',', false); updateBufferUnknwon(idxTokens); if (_data != "") { std::vector datTokens = strSplit(_data, ',', false); updateBufferUnknwon(datTokens); } } /************************************ * Function: updateBuffer ************************************/ void RegAccessParser::updateBuffer(u_int32_t offset, u_int32_t size, u_int32_t val) { _buffer[offset >> 5] = MERGE(_buffer[offset >> 5], val, (offset % 32), size); } /************************************ * Function: updateBufferUnknown * * Raw Data/Indexes Pattern is: * Address.Offset:Size=Data * Where: * Address: In bytes (DWORD aligned). * Offset: In bits within the address. * Size: In bits. ************************************/ void RegAccessParser::updateBufferUnknwon(std::vector fieldTokens) { // Parse fields for (std::vector::size_type i = 0; i != fieldTokens.size(); i++) { std::vector fieldToken = strSplit(fieldTokens[i], '=', true); // extract u_int32_t fieldDataUint; string fieldDataStr = fieldToken[1]; strToUint32((char*)fieldDataStr.c_str(), fieldDataUint); //
.: string fieldPropStr = fieldToken[0]; std::vector fieldPropVec = strSplit(fieldPropStr, ':', true); // extract u_int32_t fieldSizeUint; string fieldSizeStr = fieldPropVec[1]; strToUint32((char*)fieldSizeStr.c_str(), fieldSizeUint); // validate if (fieldSizeUint > 32) { throw MlxRegException("Invalid size: %d. max size = 32 (bits)", fieldSizeUint); } // extract
string fieldLocStr = fieldPropVec[0]; std::vector fieldLocVec = strSplit(fieldLocStr, '.', true); // extract
u_int32_t fieldAddrUint; string fieldAddrStr = fieldLocVec[0]; strToUint32((char*)fieldAddrStr.c_str(), fieldAddrUint); // extract u_int32_t fieldOffsetUint; string fieldOffsetStr = fieldLocVec[1]; strToUint32((char*)fieldOffsetStr.c_str(), fieldOffsetUint); // validation // Address out of range if (fieldAddrUint > (_buffer.size() << 2)) { throw MlxRegException("Address: 0x%08x is out of range", fieldOffsetUint); } // Address not 4 bytes aligned if (fieldAddrUint % 0x4 != 0) { throw MlxRegException("Address: 0x%08x is not 4-bytes aligned", fieldOffsetUint); } // offset + size out of address range if ((fieldOffsetUint + fieldSizeUint) > 32) { throw MlxRegException("Offset: %d and Size: %d is out of address range", fieldOffsetUint, fieldSizeUint); } // Update buffer u_int32_t val = _buffer[fieldAddrUint >> 2]; val = MERGE(val, fieldDataUint, fieldOffsetUint, fieldSizeUint); _buffer[fieldAddrUint >> 2] = val; } } /************************************ * Function: strSplit ************************************/ std::vector RegAccessParser::strSplit(string str, char delimiter, bool forcePairs) { std::vector internal; std::stringstream ss(str); // Turn the string into a stream. std::string tok; while (getline(ss, tok, delimiter)) { internal.push_back((const string)tok); } // Vector must contain otherwise it's invalid. if (forcePairs) { if (internal.size() != 2) { throw MlxRegException("Argument: %s is invalid", str.c_str()); } } // Can't have an empty key/value for (std::vector::size_type i = 0; i != internal.size(); i++) { if (internal[i].length() == 0) { throw MlxRegException("Argument: %s is invalid", str.c_str()); } } return internal; } /************************************ * Function: strToUint32 ************************************/ void RegAccessParser::strToUint32(char* str, u_int32_t& uint) { char* endp; errno = 0; uint = strtoul(str, &endp, 0); if (*endp || errno == ERANGE) { throw MlxRegException("Argument: %s is invalid.", str); } if (str[0] == '-') { throw MlxRegException("Argument: %s is invalid. It must be non-negative.", str); } return; } /************************************ * Function: getFieldWithParents ************************************/ bool RegAccessParser::checkFieldWithPath(AdbInstance* field, u_int32_t idx, std::vector& fieldsChain) { if (idx == 0 && (field->get_field_name() == fieldsChain[0])) { return true; } else if (field->get_field_name() == fieldsChain[idx]) { return checkFieldWithPath(field->parent, --idx, fieldsChain); } else { return false; } } /************************************ * Function: getField ************************************/ AdbInstance* RegAccessParser::getField(string name) { // this will allow to access the leaf field by specifying it's parent. std::vector fieldsChain = strSplit(name, '.', false); std::vector subItems = _regNode->getLeafFields(true); for (std::vector::size_type i = 0; i != subItems.size(); i++) { if (checkFieldWithPath(subItems[i], fieldsChain.size() - 1, fieldsChain)) { return subItems[i]; } } throw MlxRegException("Can't find field name: \"%s\"", name.c_str()); } string RegAccessParser::getAccess(const AdbInstance* field) { string access = field->getInstanceAttr("access"); if (access.empty()) { access = "N/A"; if (field->parent) { access = getAccess(field->parent); } } return access; } bool RegAccessParser::checkAccess(const AdbInstance* field, const string accessStr) { return getAccess(field) == accessStr; } bool RegAccessParser::isRO(AdbInstance* field) { if (_ignore_ro) { return false; } return checkAccess(field, "RO"); } bool RegAccessParser::isIndex(AdbInstance* field) { return checkAccess(field, "INDEX"); } bool RegAccessParser::isOP(AdbInstance* field) { return checkAccess(field, "OP"); } /************************************ * Function: getAllIndexes ************************************/ std::vector RegAccessParser::getAllIndexes(AdbInstance* node) { std::vector indexes; std::vector subItems = node->getLeafFields(true); for (std::vector::size_type i = 0; i != subItems.size(); i++) { if (isIndex(subItems[i])) { indexes.push_back(subItems[i]->get_field_name()); } } return indexes; } std::vector RegAccessParser::getAllOps(AdbInstance* node) { std::vector ops; std::vector subItems = node->getLeafFields(true); for (std::vector::size_type i = 0; i != subItems.size(); i++) { if (isOP(subItems[i])) { ops.push_back(subItems[i]->get_field_name()); } } return ops; } void RegAccessParser::updateField(string field_name, u_int32_t value) { AdbInstance* field = getField(field_name); updateBuffer(field->offset, field->size, value); } u_int32_t RegAccessParser::getFieldValue(string field_name, std::vector& buff) { AdbInstance* field = getField(field_name); return (u_int32_t)field->popBuf((u_int8_t*)&buff[0]); } mstflint-4.26.0/mlxreg/mlxreg_lib/mlxreg_exception.cpp0000644000175000017500000000471514522641732023414 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include "mlxreg_exception.h" using namespace mlxreg; /************************************ * Function: MlxRegException ************************************/ MlxRegException::MlxRegException(const char* fmt, ...) { char tmp[1024]; va_list args; va_start(args, fmt); vsprintf(tmp, fmt, args); va_end(args); _msg = tmp; } /************************************ * Function: MlxRegException ************************************/ MlxRegException::MlxRegException(const std::string& msg) : _msg(msg) {} /************************************ * Function: ~MlxRegException ************************************/ MlxRegException::~MlxRegException() throw() {} /************************************ * Function: what_s ************************************/ std::string MlxRegException::what_s() const { return _msg; } /************************************ * Function: what ************************************/ const char* MlxRegException::what() const throw() { return _msg.c_str(); } mstflint-4.26.0/mlxreg/mlxreg_lib/mlxreg_exception.h0000644000175000017500000000361214522641732023054 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXREG_EXCEPTION_H #define MLXREG_EXCEPTION_H #include #include namespace mlxreg { class MlxRegException : public std::exception { public: MlxRegException(const char* fmt, ...); MlxRegException(const std::string& msg); virtual ~MlxRegException() throw(); virtual std::string what_s() const; virtual const char* what() const throw(); protected: std::string _msg; }; } // namespace mlxreg #endif /* MLXREG_EXCEPTION_H */ mstflint-4.26.0/mlxreg/mlxreg_lib/mlxreg_lib.h0000644000175000017500000000703214522641732021624 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXREG_LIB_H #define MLXREG_LIB_H #include #include #include #include #include #include "mlxreg_exception.h" namespace mlxreg { typedef enum { MRLS_SUCCESS = 0, MRLS_GENERAL } MlxRegLibStatus; class MlxRegLib : public ErrMsg { public: MlxRegLib(mfile* mf, string extAdbFile, bool isExternal = true); ~MlxRegLib(); // Dto'r /* * * * * * * * * * * * * * * library Getters/Setters * * * * * * * * * * * * * * */ AdbInstance* findAdbNode(string name); AdbInstance* getAdbTable() { return _regAccessRootNode; }; /* * * * * * * * * library API * * * * * * * * */ string getLastErrMsg(); MlxRegLibStatus showRegisters(std::vector& regs); // Return all available register names MlxRegLibStatus showRegister(string regName, std::vector& fields); // Return all fields of given register MlxRegLibStatus sendRegister(string regName, int method, std::vector& data); // Send register by name MlxRegLibStatus sendRegister(u_int16_t regId, int method, std::vector& data); // Send register by ID dm_dev_id_t getDevId(); static dm_dev_id_t getDevId(mfile* mf); static bool isDeviceSupported(mfile* mf); static void isAccessRegisterSupported(mfile* mf); bool isAccessRegisterGMPSupported(maccess_reg_method_t reg_method); bool isIBDevice(); MlxRegLibStatus dumpRegisterData(string output_file_name, std::vector& data); protected: /* Functions */ bool isRegSizeSupported(string regName); int sendMaccessReg(u_int16_t regId, int method, std::vector& data); void initAdb(string extAdbFile); /* Data Members */ mfile* _mf; static map _adbDBs; static const int RETRIES_COUNT; static const int SLEEP_INTERVAL; Adb* _adb; AdbInstance* _regAccessRootNode; AdbInstance* _regAccessUnionNode; std::map _regAccessMap; bool _isExternal; }; } // namespace mlxreg #endif /* MLXREG_LIB_H */ mstflint-4.26.0/mlxreg/mlxreg_lib/Makefile.am0000644000175000017500000000424714522641732021370 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxreg AM_CXXFLAGS = -Wall -W -DMST_UL -g -MP -MD -pipe noinst_LTLIBRARIES = libmstreg_lib.la libmstreg_lib_la_SOURCES = \ mlxreg_exception.cpp \ mlxreg_exception.h \ mlxreg_lib.cpp \ mlxreg_lib.h \ mlxreg_parser.cpp \ mlxreg_parser.h libmstreg_lib_la_DEPENDENCIES = \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/dev_mgt/libdev_mgt.la libmstreg_lib_la_LIBADD = $(libmstreg_lib_la_DEPENDENCIES) mstflint-4.26.0/mlxreg/mlxreg_lib/mlxreg_parser.h0000644000175000017500000000732514522641732022357 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXREG_PARSER_H #define MLXREG_PARSER_H #include #include #include #include "mlxreg_exception.h" namespace mlxreg { #define MAX_REG_SIZE 0x2000 typedef enum { Pm_Known = 0, Pm_Unknown } parseMode; class RegAccessParser { public: RegAccessParser(string data, string indexes, string ops, AdbInstance* regNode, std::vector buffer, bool ignore_ro = false); RegAccessParser(string data, string indexes, string ops, AdbInstance* regNode, u_int32_t len, bool ignore_ro = false); std::vector genBuff(); u_int32_t getDataLen() { return _len; }; static void strToUint32(char* str, u_int32_t& uint); static string getAccess(const AdbInstance* field); enum access_type_t { INDEX, OP }; protected: string _data; string _indexes; string _ops; u_int32_t _len; AdbInstance* _regNode; parseMode _parseMode; string output_file; std::vector _buffer; bool _ignore_ro; std::vector genBuffUnknown(); std::vector genBuffKnown(); void parseAccessType(std::vector tokens, std::vector validTokens, access_type_t accessType); void parseIndexes(); void parseOps(); void parseData(); void parseUnknown(); bool checkFieldWithPath(AdbInstance* field, u_int32_t idx, std::vector& fieldsChain); AdbInstance* getField(string name); std::vector strSplit(string str, char delimiter, bool forcePairs); void updateBuffer(u_int32_t offset, u_int32_t size, u_int32_t val); void updateBufferUnknwon(std::vector fieldTokens); void updateField(string field_name, u_int32_t value); u_int32_t getFieldValue(string field_name, std::vector& buff); bool isRO(AdbInstance* field); bool isIndex(AdbInstance* field); bool isOP(AdbInstance* field); std::vector getAllIndexes(AdbInstance* node); std::vector getAllOps(AdbInstance* node); const std::string accessTypeToString(access_type_t accessType); private: bool checkAccess(const AdbInstance* field, const string accessStr); }; } // namespace mlxreg #endif /* MLXREG_PARSER_H */ mstflint-4.26.0/mlxreg/mlxreg_lib/Makefile.in0000644000175000017500000005206514522641740021401 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mlxreg/mlxreg_lib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libmstreg_lib_la_OBJECTS = mlxreg_exception.lo mlxreg_lib.lo \ mlxreg_parser.lo libmstreg_lib_la_OBJECTS = $(am_libmstreg_lib_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmstreg_lib_la_SOURCES) DIST_SOURCES = $(libmstreg_lib_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxreg AM_CXXFLAGS = -Wall -W -DMST_UL -g -MP -MD -pipe noinst_LTLIBRARIES = libmstreg_lib.la libmstreg_lib_la_SOURCES = \ mlxreg_exception.cpp \ mlxreg_exception.h \ mlxreg_lib.cpp \ mlxreg_lib.h \ mlxreg_parser.cpp \ mlxreg_parser.h libmstreg_lib_la_DEPENDENCIES = \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/dev_mgt/libdev_mgt.la libmstreg_lib_la_LIBADD = $(libmstreg_lib_la_DEPENDENCIES) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxreg/mlxreg_lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxreg/mlxreg_lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmstreg_lib.la: $(libmstreg_lib_la_OBJECTS) $(libmstreg_lib_la_DEPENDENCIES) $(EXTRA_libmstreg_lib_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmstreg_lib_la_OBJECTS) $(libmstreg_lib_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxreg_exception.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxreg_lib.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxreg_parser.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxreg/mlxreg_ui.h0000644000175000017500000000600714522641732017350 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXREG_UI_H #define MLXREG_UI_H #include #include #include #include #include #include #include using namespace mlxreg; typedef enum { // Debug register commands CMD_SET = 0, CMD_GET, CMD_SHOW_REG, CMD_SHOW_REGS, CMD_SHOW_ALL_REGS, CMD_UNKNOWN } MlxRegOper; class MlxRegUi : public CommandLineRequester { public: MlxRegUi(); ~MlxRegUi(); ParseStatus HandleOption(string name, string value); void run(int agc, char** argv); private: void initCmdParser(); void printHelp(); void paramValidate(); bool askUser(const char* question); // Print void printRegFields(vector nodeFields); void printRegNames(std::vector regs); void printAdbContext(AdbInstance* node, std::vector buff); void printBuff(std::vector buff); void readFromFile(string file_name, vector& buff, int len); void writeToFile(string file_name, vector buff); void sendCmdBasedOnFileIo(maccess_reg_method_t cmd, int reg_size); CommandLineParser _cmdParser; string _device; mfile* _mf; string _extAdbFile; string _regName; u_int32_t _regID; string _dataStr; string _indexesStr; string _opsStr; u_int32_t _dataLen; bool _ignoreCapCheck; MlxRegOper _op; bool _force; MlxRegLib* _mlxRegLib; bool _isExternal; bool _ignore_ro; string _output_file; string _file_io; }; #endif /* MLXREG_UI_H */ mstflint-4.26.0/mlxreg/Makefile.am0000644000175000017500000000471114522641732017240 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = mlxreg_lib AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxreg AM_CXXFLAGS = -Wall -W -DMST_UL -g -MP -MD -pipe mstreg_SOURCES = mlxreg_ui.cpp mlxreg_ui.h bin_PROGRAMS = mstreg mstreg_DEPENDENCIES = \ $(top_builddir)/mlxreg/mlxreg_lib/libmstreg_lib.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/common/libcommon.la mstreg_LDADD = $(mstreg_DEPENDENCIES) -llzma ${LDL} -lexpat mstreg_LDFLAGS = -static mstflint-4.26.0/mlxreg/Makefile.in0000644000175000017500000006635014522641740017257 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstreg$(EXEEXT) subdir = mlxreg DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_mstreg_OBJECTS = mlxreg_ui.$(OBJEXT) mstreg_OBJECTS = $(am_mstreg_OBJECTS) am__DEPENDENCIES_1 = AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstreg_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(mstreg_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(mstreg_SOURCES) DIST_SOURCES = $(mstreg_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = mlxreg_lib AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxreg AM_CXXFLAGS = -Wall -W -DMST_UL -g -MP -MD -pipe mstreg_SOURCES = mlxreg_ui.cpp mlxreg_ui.h mstreg_DEPENDENCIES = \ $(top_builddir)/mlxreg/mlxreg_lib/libmstreg_lib.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/common/libcommon.la mstreg_LDADD = $(mstreg_DEPENDENCIES) -llzma ${LDL} -lexpat mstreg_LDFLAGS = -static all: all-recursive .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxreg/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxreg/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstreg$(EXEEXT): $(mstreg_OBJECTS) $(mstreg_DEPENDENCIES) $(EXTRA_mstreg_DEPENDENCIES) @rm -f mstreg$(EXEEXT) $(AM_V_CXXLD)$(mstreg_LINK) $(mstreg_OBJECTS) $(mstreg_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxreg_ui.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-binPROGRAMS clean-generic clean-libtool \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxarchive/0000755000175000017500000000000014522641737016052 5ustar tzafrirctzafrircmstflint-4.26.0/mlxarchive/mlxarchive_mfa2_builder.h0000644000175000017500000000556514522641732023006 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_builder.h * * Created on: March 26, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_BUILDER_H_ #define MLXARCHIVE_MFA2_BUILDER_H_ #include #include #include #include #include #include #include "mlxarchive_mfa2_descriptor.h" #include "mlxarchive_mfa2_extension.h" #include "mlxarchive_mfa2_component.h" using namespace std; namespace mfa2 { class MFA2Builder { public: MFA2Builder(){}; virtual PackageDescriptor getPackageDescriptor() const = 0; virtual vector getDeviceDescriptors() const = 0; virtual vector getComponents() const = 0; virtual ~MFA2Builder(){}; }; class FWDirectoryBuilder : MFA2Builder { private: VersionExtension _version; string _directory; vector _files; // vector _imgsFwOps; vector _deviceDescriptors; vector _components; /*struct FWInfo { string psid; u_int16_t version[3]; u_int16_t date[3]; }; map _imgsFwOps;*/ public: FWDirectoryBuilder(const string& version, string directory); PackageDescriptor getPackageDescriptor() const; vector getDeviceDescriptors() const; vector getComponents() const; }; } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_component.h0000644000175000017500000000556214522641732023357 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_component.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_COMPONENT_H_ #define MLXARCHIVE_MFA2_COMPONENT_H_ #include #include #include #include "mlxarchive_mfa2_descriptor.h" using namespace std; #define FINGERPRINT_MFA2 "#BIN.COMPONENT!#" namespace mfa2 { class Component { private: FingerPrint _fingerPrint; ComponentDescriptor _descriptor; public: explicit Component(ComponentDescriptor descriptor) : _fingerPrint(FINGERPRINT_MFA2), _descriptor(descriptor){}; void packDescriptor(vector& buff) const { _descriptor.pack(buff); }; void packData(vector& buff) { _fingerPrint.pack(buff); _descriptor.packData(buff); }; u_int32_t getComponentBinarySize() const; u_int64_t getBinaryComponentOffset(); void setComponentBinaryOffset(u_int64_t offset); const ComponentDescriptor& getComponentDescriptor() const { return _descriptor; } }; inline u_int32_t Component::getComponentBinarySize() const { return _fingerPrint.getSize() + _descriptor.getBinarySize(); } inline void Component::setComponentBinaryOffset(u_int64_t offset) { _descriptor.setComponentBinaryOffset(offset); } inline u_int64_t Component::getBinaryComponentOffset() { return _descriptor.getComponentBinaryOffset(); } } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2.h0000644000175000017500000000752714522641732021300 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_H_ #define MLXARCHIVE_MFA2_H_ #include #include #include #include #include "mlxarchive_mfa2_utils.h" #include "mlxarchive_mfa2_descriptor.h" #include "mlxarchive_mfa2_component.h" #include "mfa2_buff.h" using namespace std; namespace mfa2 { typedef map map_string_to_component; class MFA2 { private: FingerPrint _fingerPrint; PackageDescriptor _packageDescriptor; vector _deviceDescriptors; vector _components; string _latestComponentKey; long _zipOffset; // void updateSHA256(); vector mfa2Buffer; void pack(vector& buff); void packDescriptors(vector& buff) const; bool unpack(Mfa2Buffer& buff); bool extractComponent(Component* requiredComponent, vector& fwBinaryData); public: MFA2(PackageDescriptor packageDescriptor, vector deviceDescriptors, vector components) : _fingerPrint(MFA2_FINGER_PRINT), _packageDescriptor(packageDescriptor), _deviceDescriptors(deviceDescriptors), _components(components), _zipOffset(0){}; virtual ~MFA2() {} static MFA2* LoadMFA2Package(const string& file_name); void generateBinary(vector& buff); void dump(); void minidump(); PackageDescriptor getPackageDescriptor() const { return _packageDescriptor; } DeviceDescriptor getDeviceDescriptor(int index) const { return _deviceDescriptors[index]; } Component getComponentObject(int compIndex) const { return _components[compIndex]; } void setBufferAndZipOffset(u_int8_t* buffer, long length, long zipOffset) { mfa2Buffer.resize(length); for (int i = 0; i < length; i++) { mfa2Buffer[i] = buffer[i]; } _zipOffset = zipOffset; } vector getBuffer() { return mfa2Buffer; } map_string_to_component getMatchingComponents(char* psid, u_int16_t fw_ver[3]); bool unzipComponent(map_string_to_component& matchingComponentsMap, u_int32_t choice, vector& fwBinaryData); bool unzipLatestVersionComponent(map_string_to_component& matchingComponentsMap, vector& fwBinaryData); }; } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_descriptor.h0000644000175000017500000001552614522641732023534 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_desc.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_DESCRIPTOR_H_ #define MLXARCHIVE_MFA2_DESCRIPTOR_H_ #include #include #include #include #include "mlxarchive_mfa2_element.h" #include "mlxarchive_mfa2_extension.h" #include "mlxarchive_mfa2_utils.h" #include "mfa2_buff.h" using namespace std; namespace mfa2 { class Descriptor : protected Element { protected: enum DescriptorType { PackageDescriptorType, DeviceDescriptorType, ComponentDescriptorType }; MFA2Type descriptorTypeToMFA2Type(DescriptorType type); vector _extensions; public: Descriptor(u_int8_t vesrion, DescriptorType type, u_int32_t length); virtual ~Descriptor(); void addExtension(Extension* extension); void packMultiPart(u_int8_t extensionsCount, u_int16_t totalLength, vector& buff) const; bool unpackMultiPart(u_int8_t& extensionsCount, u_int16_t& totalLength, Mfa2Buffer& buff); virtual void pack(vector& buff) const = 0; virtual bool unpack(Mfa2Buffer& buff) = 0; }; inline void Descriptor::addExtension(Extension* extension) { _extensions.push_back(extension); } class PackageDescriptor : public Descriptor { private: u_int16_t _deviceDescriptorsCount; u_int16_t _componentsCount; VersionExtension _version; u_int32_t _componentsBlockOffset; u_int32_t _componentsBlockArchiveSize; u_int64_t _componentsBlockSize; SHA256Extension _SHA256Extension; SHA256Extension _descriptorsSHA256Extension; public: const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = MLXARCHIVE_PACKAGE_DESCRIPTOR_SIZE; PackageDescriptor(u_int16_t deviceDescriptorsCount, u_int16_t componentsCount, VersionExtension version); void setComponentsBlockOffset(u_int64_t offset); void setComponentsBlockArchiveSize(u_int32_t size); void setComponentsBlockSize(u_int64_t size); void setDescriptorsSHA256(const vector& digest); void setSHA256(const vector& digest); void pack(vector& buff) const; virtual bool unpack(Mfa2Buffer& buff); u_int16_t getDeviceDescriptorsCount() const { return _deviceDescriptorsCount; } u_int16_t getComponentsCount() const { return _componentsCount; } const VersionExtension& getVersionExtension() const { return _version; } u_int64_t getComponentsBlockSize(); u_int32_t getComponentsBlockOffset(); }; inline void PackageDescriptor::setComponentsBlockOffset(u_int64_t offset) { _componentsBlockOffset = offset; } inline u_int32_t PackageDescriptor::getComponentsBlockOffset() { return _componentsBlockOffset; } inline void PackageDescriptor::setComponentsBlockArchiveSize(u_int32_t size) { _componentsBlockArchiveSize = size; } inline void PackageDescriptor::setComponentsBlockSize(u_int64_t size) { _componentsBlockSize = size; } inline u_int64_t PackageDescriptor::getComponentsBlockSize() { return _componentsBlockSize; } class DeviceDescriptor : public Descriptor { private: vector _componentPointers; PSIDExtension _PSID; public: const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = 0x0; DeviceDescriptor(vector componentPointers, PSIDExtension PSID); void pack(vector& buff) const; virtual bool unpack(Mfa2Buffer& buff); const PSIDExtension& getPSIDExtension() const { return _PSID; } u_int8_t getComponentPointerExtensionsCount() const { return _componentPointers.size(); } const ComponentPointerExtension& getComponentPointerExtension(int index) { return _componentPointers[index]; } }; class ComponentDescriptor : public Descriptor { private: VersionExtension _version; // string _source; u_int64_t _componentBlockOffset; u_int64_t _binarySize; vector _data; public: const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = MLXARCHIVE_COMPONENT_DESCIPTOR_SIZE; ComponentDescriptor(VersionExtension version, string source); ComponentDescriptor(VersionExtension version, vector data); virtual bool unpack(Mfa2Buffer& buff); const VersionExtension& getVersionExtension() const { return _version; } // string getSource () const; void setComponentBinaryOffset(u_int64_t offset); u_int64_t getComponentBinaryOffset() const; void pack(vector& buff) const; u_int32_t getBinarySize() const; void packData(vector& buff) const; void unpackData(vector& buff); }; /*inline string ComponentDescriptor::getSource() const { return _source; };*/ inline u_int64_t ComponentDescriptor::getComponentBinaryOffset() const { return _componentBlockOffset; } inline void ComponentDescriptor::setComponentBinaryOffset(u_int64_t offset) { _componentBlockOffset = offset; } inline u_int32_t ComponentDescriptor::getBinarySize() const { return _binarySize; }; inline void ComponentDescriptor::unpackData(vector& buff) { unpackBytesArray(_data.data(), _data.size(), buff); } inline void ComponentDescriptor::packData(vector& buff) const { packBytesArray(_data.data(), _data.size(), buff); } } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2.cpp0000644000175000017500000003300114522641732021615 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include #include #include "mlxarchive_mfa2.h" #include "mlxarchive_mfa2_utils.h" using namespace mfa2; /*void MFA2::updateSHA256() { vector digest; MlxSignSHA256 mlxSignSHA256; //compute descriptors SHA256 vector descriptorsBuff; packDescriptors(descriptorsBuff); mlxSignSHA256 << descriptorsBuff; mlxSignSHA256.getDigest(digest); _packageDescriptor.setDescriptorsSHA256(digest); //append the zipped components block packBytesArray(zippedComponentBlockBuff.data(), zippedComponentBlockBuff.size(), buff); //compute SHA256 mlxSignSHA256 << zippedComponentBlockBuff; mlxSignSHA256.getDigest(digest); }*/ void MFA2::packDescriptors(vector& buff) const { _fingerPrint.pack(buff); _packageDescriptor.pack(buff); CONST_VECTOR_ITERATOR(DeviceDescriptor, _deviceDescriptors, it) { (*it).pack(buff); } CONST_VECTOR_ITERATOR(Component, _components, it) { (*it).packDescriptor(buff); } } void MFA2::pack(vector& buff) { // find size of components block: u_int64_t componentsBlockSize = 0; CONST_VECTOR_ITERATOR(Component, _components, it) { componentsBlockSize += (*it).getComponentBinarySize(); } _packageDescriptor.setComponentsBlockSize(componentsBlockSize); _fingerPrint.pack(buff); _packageDescriptor.pack(buff); CONST_VECTOR_ITERATOR(DeviceDescriptor, _deviceDescriptors, it) { (*it).pack(buff); } CONST_VECTOR_ITERATOR(Component, _components, it) { (*it).packDescriptor(buff); } _packageDescriptor.setComponentsBlockOffset(buff.size()); // compress components block vector componentsBlockBuff; VECTOR_ITERATOR(Component, _components, it) { (*it).setComponentBinaryOffset(componentsBlockBuff.size()); (*it).packData(componentsBlockBuff); } u_int32_t zippedSize = componentsBlockBuff.size(); zippedSize = xz_compress_crc32(9, componentsBlockBuff.data(), componentsBlockBuff.size(), NULL, 0); if (zippedSize <= 0) { // TODO throw exception printf("-E- Error while compressing\n"); exit(1); } _packageDescriptor.setComponentsBlockArchiveSize(zippedSize); vector zippedComponentBlockBuff(zippedSize); u_int32_t actualZippedSize = xz_compress_crc32(9, componentsBlockBuff.data(), componentsBlockBuff.size(), zippedComponentBlockBuff.data(), zippedSize); if (zippedSize != actualZippedSize) { printf("-E- zipped size not as expected\n"); exit(1); } // compute descriptors SHA256 vector descriptorsBuff; packDescriptors(descriptorsBuff); vector digest; MlxSignSHA256 mlxSignSHA256; mlxSignSHA256 << descriptorsBuff; mlxSignSHA256.getDigest(digest); _packageDescriptor.setDescriptorsSHA256(digest); // append the zipped components block packBytesArray(zippedComponentBlockBuff.data(), zippedComponentBlockBuff.size(), buff); // compute SHA256 mlxSignSHA256 << zippedComponentBlockBuff; mlxSignSHA256.getDigest(digest); _packageDescriptor.setSHA256(digest); } /*void MFA2::update(vector& buff) { //update components descriptors with information about components blocks u_int64_t offset = 0x0; VECTOR_ITERATOR(_components, ); }*/ void MFA2::generateBinary(vector& buff) { vector tmpBuff; // do first pass pack(tmpBuff); // do second pass pack(buff); // compute SHA256 } MFA2* MFA2::LoadMFA2Package(const string& file_name) { Mfa2Buffer mfa2buff; if (!mfa2buff.loadFile(file_name)) { fprintf(stderr, "Failed to load mfa2 package: %s\n", file_name.c_str()); return NULL; } FingerPrint finger_print(""); VersionExtension version(""); PackageDescriptor packageDescriptor(0, 0, version); vector deviceDescriptors; vector components; MFA2* mfa2pkg = new MFA2(packageDescriptor, deviceDescriptors, components); if (!mfa2pkg->unpack(mfa2buff)) { delete mfa2pkg; mfa2pkg = NULL; return NULL; } mfa2pkg->setBufferAndZipOffset(mfa2buff.getBuffer(), mfa2buff.getSize(), mfa2buff.tell()); return mfa2pkg; } bool MFA2::unpack(Mfa2Buffer& buff) { if (!_fingerPrint.unpack(buff)) { return false; } _packageDescriptor.unpack(buff); u_int16_t devCount = _packageDescriptor.getDeviceDescriptorsCount(); u_int16_t compCount = _packageDescriptor.getComponentsCount(); for (u_int16_t devIdx = 0; devIdx < devCount; devIdx++) { vector componentPointers; PSIDExtension psidExt(""); DeviceDescriptor devDescriptor(componentPointers, psidExt); devDescriptor.unpack(buff); _deviceDescriptors.push_back(devDescriptor); } for (u_int16_t compIdx = 0; compIdx < compCount; compIdx++) { VersionExtension version(""); ComponentDescriptor compDescriptor(version, ""); compDescriptor.unpack(buff); Component comp(compDescriptor); _components.push_back(comp); } return true; } void MFA2::minidump() { printf("Package Version : %s\n", _packageDescriptor.getVersionExtension().getVersion(false).c_str()); } void MFA2::dump() { // printf("Finger print : %s\n", _fingerPrint.toString().c_str()); u_int16_t devCount = _packageDescriptor.getDeviceDescriptorsCount(); // u_int16_t compCount = _packageDescriptor.getComponentsCount(); printf("Package Version : %s\n", _packageDescriptor.getVersionExtension().getVersion(false).c_str()); printf("Creation Time : %s\n", _packageDescriptor.getVersionExtension().getDateAndTime().c_str()); // printf("Extensions : %u\n", _packageDescriptor.getExtensionsCount()); printf("Devices : %u\n", devCount); for (u_int16_t index = 0; index < devCount; index++) { DeviceDescriptor& devDescriptor = _deviceDescriptors[index]; string psid = devDescriptor.getPSIDExtension().getString(); u_int8_t compPtrCount = devDescriptor.getComponentPointerExtensionsCount(); printf(" PSID : %s\n", psid.c_str()); printf(" Num of Images : %u\n", compPtrCount); for (u_int8_t comp = 0; comp < compPtrCount; comp++) { const ComponentPointerExtension& compPtr = devDescriptor.getComponentPointerExtension(comp); u_int16_t compIndex = compPtr.getComponentIndex(); Component compObj = _components[compIndex]; const ComponentDescriptor& compDescr = compObj.getComponentDescriptor(); printf(" Index : %u\n", compIndex); printf(" Version : %s\n", compDescr.getVersionExtension().getVersion(true).c_str()); char buffer[32] = {0}; compDescr.getVersionExtension().getDateAndTime(buffer); printf(" Date : %s\n", buffer); } } } bool MFA2::extractComponent(Component* requiredComponent, vector& fwBinaryData) { PackageDescriptor packageDescriptor = getPackageDescriptor(); u_int64_t totalSize = packageDescriptor.getComponentsBlockSize(); u_int32_t zipOffset = packageDescriptor.getComponentsBlockOffset(); vector unzippedBlockBuff; unzippedBlockBuff.resize(totalSize); vector zippedBuff = getBuffer(); u_int8_t* zippedData = (u_int8_t*)zippedBuff.data() + zipOffset; int32_t retVal = xz_decompress_crc32(zippedData, zippedBuff.size() - zipOffset, unzippedBlockBuff.data(), totalSize); if (retVal != (int32_t)totalSize) { printf("Decompress error occurred %s\n", xz_get_error(retVal)); return false; } u_int32_t requiredOffset = requiredComponent->getBinaryComponentOffset(); u_int32_t componentBinarySize = requiredComponent->getComponentBinarySize() - strlen(FINGERPRINT_MFA2); fwBinaryData.resize(componentBinarySize); for (unsigned int index = 0; index < componentBinarySize; index++) { fwBinaryData[index] = unzippedBlockBuff[requiredOffset + index + strlen(FINGERPRINT_MFA2)]; // skip 16 bytes from decompressed file // ! } return true; } bool MFA2::unzipLatestVersionComponent(map_string_to_component& matchingComponentsMap, vector& fwBinaryData) { map_string_to_component::iterator itAtKey = matchingComponentsMap.find(_latestComponentKey); if (itAtKey == matchingComponentsMap.end()) { return false; } Component* requiredComponent = &itAtKey->second; return extractComponent(requiredComponent, fwBinaryData); } bool MFA2::unzipComponent(map_string_to_component& matchingComponentsMap, u_int32_t choice, vector& fwBinaryData) { if (choice >= matchingComponentsMap.size()) { return false; } map_string_to_component::iterator itAtOffset = matchingComponentsMap.begin(); std::advance(itAtOffset, choice); Component* requiredComponent = &itAtOffset->second; return extractComponent(requiredComponent, fwBinaryData); } map_string_to_component MFA2::getMatchingComponents(char* device_psid, u_int16_t fw_ver[3]) { map_string_to_component matchingComponentsMap; PackageDescriptor packageDescriptor = getPackageDescriptor(); u_int16_t devCount = packageDescriptor.getDeviceDescriptorsCount(); Version currentLatestVersion; u_int8_t deviceMajorVer = (u_int8_t)fw_ver[0]; u_int8_t deviceMinorVer = (u_int8_t)fw_ver[1]; u_int16_t deviceSubMinorVer = fw_ver[2]; for (u_int16_t index = 0; index < devCount; index++) { DeviceDescriptor devDescriptor = getDeviceDescriptor(index); string psid = devDescriptor.getPSIDExtension().getString(); if (device_psid != NULL) { if (strcmp((char*)psid.c_str(), device_psid)) { continue; } } u_int8_t compPtrCount = devDescriptor.getComponentPointerExtensionsCount(); for (u_int8_t comp = 0; comp < compPtrCount; comp++) { const ComponentPointerExtension& compPtr = devDescriptor.getComponentPointerExtension(comp); u_int16_t compIndex = compPtr.getComponentIndex(); Component compObj = getComponentObject(compIndex); const ComponentDescriptor& compDescr = compObj.getComponentDescriptor(); u_int8_t majorVer = compDescr.getVersionExtension().getMajor(); u_int8_t minorVer = compDescr.getVersionExtension().getMinor(); u_int16_t subMinorVer = compDescr.getVersionExtension().getSubMinor(); if (deviceMajorVer != 0xff) { if (deviceMajorVer != majorVer) { continue; } } if (deviceMinorVer != 0xff) { if (minorVer != deviceMinorVer) { continue; } } if (deviceSubMinorVer != 0xffff) { if (subMinorVer != deviceSubMinorVer) { continue; } } char dateTimeBuffer[32] = {0}; compDescr.getVersionExtension().getDateAndTime(dateTimeBuffer); VersionExtension currentVersion = compDescr.getVersionExtension(); string currentVersionString = currentVersion.getVersion(true); string mapKey = currentVersionString + " " + dateTimeBuffer; matchingComponentsMap.insert(std::pair(mapKey, compObj)); Version version(currentVersionString); // find the latest matching FW version if (version > currentLatestVersion) { currentLatestVersion = version; _latestComponentKey = mapKey; } } } return matchingComponentsMap; } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_common_header.h0000644000175000017500000000435414522641732024153 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_common_header.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_COMMON_HEADER_H_ #define MLXARCHIVE_MFA2_COMMON_HEADER_H_ #include #include #include #include "mlxarchive_mfa2_utils.h" #include "mfa2_buff.h" using namespace std; namespace mfa2 { class CommonHeader { private: u_int8_t _version; MFA2Type _type; u_int16_t _length; public: CommonHeader(u_int8_t version, MFA2Type type, u_int16_t length); // inline void setLength(u_int16_t length) { _length = length; } void pack(vector& buff) const; bool unpack(Mfa2Buffer& buff); const u_int16_t& getLength() const { return _length; } }; } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_element.h0000644000175000017500000000406514522641732023003 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_element.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_ELEMENT_HEADER_H_ #define MLXARCHIVE_MFA2_ELEMENT_HEADER_H_ #include "mlxarchive_mfa2_common_header.h" namespace mfa2 { class Element { private: CommonHeader buildCommonHeader(u_int8_t version, MFA2Type type, u_int32_t length); protected: CommonHeader _commonHeader; public: Element(u_int8_t version, MFA2Type type, u_int32_t length); // virtual void pack(vector& buff) const = 0; ~Element(){}; }; } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/mfa2_buff.cpp0000644000175000017500000000721514522641732020405 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_buff.cpp * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #include #include #include #include #include "mfa2_buff.h" Mfa2Buffer::Mfa2Buffer() : m_buff(NULL), m_pos(0), m_size(0) {} Mfa2Buffer::~Mfa2Buffer() { if (m_buff) { delete[] m_buff; m_buff = NULL; } } bool Mfa2Buffer::loadFile(const std::string& fname) { // open the file: FILE* fp; fp = fopen(fname.c_str(), "rb"); if (!fp) { return false; } // Get file length fseek(fp, 0, SEEK_END); m_size = ftell(fp); fseek(fp, 0, SEEK_SET); // Allocate memory if (m_buff) { delete[] m_buff; m_buff = NULL; } m_buff = new u_int8_t[m_size + 1]; if (!m_buff) { return false; } // Read file contents into buffer if (fread(m_buff, m_size, 1, fp)) { } // TODO: temporary fix - handle the return value! fclose(fp); return true; } void Mfa2Buffer::read(u_int8_t& val) { val = *(m_buff + m_pos); m_pos += sizeof(u_int8_t); } void Mfa2Buffer::read(u_int16_t& val) { val = *(u_int16_t*)(m_buff + m_pos); m_pos += sizeof(u_int16_t); val = __le16_to_cpu(val); } void Mfa2Buffer::read(u_int32_t& val) { val = *(u_int32_t*)(m_buff + m_pos); m_pos += sizeof(u_int32_t); val = __le32_to_cpu(val); } void Mfa2Buffer::read(std::string& str, size_t str_size) { u_int8_t* arr = new u_int8_t[str_size]; read(arr, str_size); str = std::string(reinterpret_cast(arr), str_size); delete[] arr; } void Mfa2Buffer::read(u_int8_t* arr, size_t arr_size) { memcpy(arr, m_buff + m_pos, arr_size); m_pos += arr_size; } int Mfa2Buffer::seek(long offset, int whence) { long new_pos = -1; switch (whence) { case SEEK_SET: new_pos = offset; break; case SEEK_CUR: new_pos = m_pos + offset; break; case SEEK_END: new_pos = m_size + offset; break; } if (new_pos < 0 || new_pos > m_size) { return -1; } m_pos = new_pos; return 0; } long Mfa2Buffer::tell() { return m_pos; } void Mfa2Buffer::rewind() { m_pos = 0; } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_package_gen.cpp0000644000175000017500000000410414522641732024123 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_package_gen.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include "mlxarchive_mfa2_package_gen.h" #include "mlxarchive_mfa2_builder.h" void MFA2PackageGen::generateBinFromFWDirectory(const string& directory, const string& version, vector& buff) const { FWDirectoryBuilder builder(version, directory); MFA2 mfa2(builder.getPackageDescriptor(), builder.getDeviceDescriptors(), builder.getComponents()); mfa2.generateBinary(buff); } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_builder.cpp0000644000175000017500000001505614522641732023335 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_builder.cpp * * Created on: March 26, 2017 * Author: Ahmad Soboh */ #include #include #include "mlxfwops/lib/mlxfwops_com.h" #include "mlxfwops/lib/fw_ops.h" #include "mlxarchive_mfa2_builder.h" using namespace mfa2; #define VERSION_STR "Version" #define CREATION_TIME_STR "Creation Time" #define COMMENT_STR "Comment" #define DEVICEDESCRIPTORS_STR "Device Descriptors" #define COMPONENTS_STR "Components" #define PSID_STR "PSID" #define SOURCE_STR "Source" /* Class FWDirectoryBuilder */ FWDirectoryBuilder::FWDirectoryBuilder(const string& version, string directory) : _version(VersionExtension(version)), _directory(directory) { string fileExtension = ".bin"; vector files; int index = 0; try { listDir(directory.c_str(), files); } catch (std::exception& e) { std::string err_str = "locale::facet::_S_create_c_locale name not valid"; if (!err_str.compare(e.what())) { fprintf( stderr, "Exception: '%s' was catched.\nPlease try to add the following line into your /etc/profile file and " "retry:\nexport LC_ALL=C; unset LANGUAGE\n" "Please note, you need to reload the .profile file, after editing. \nsource /etc/profile might help.\n", e.what()); exit(1); } throw e; } VECTOR_ITERATOR(string, files, file) { if ((*file).rfind(fileExtension) == ((*file).size() - fileExtension.size())) { string fullPath = directory + "/" + (*file); //_files.push_back(fullPath); // Query FW Image retrieve version, date, psid info char errBuff[1024]; FwOperations* ops = FwOperations::FwOperationsCreate((void*)fullPath.c_str(), NULL, NULL, FHT_FW_FILE, errBuff, 1024); if (!ops) { printf("Can't handle the FW image file %s\n", fullPath.c_str()); exit(1); } fw_info_t fwQueryResult; if (!ops->FwQuery(&fwQueryResult, true, false)) { // throw exception printf("Can't query FW image file %s:%s\n", fullPath.c_str(), ops->err()); exit(1); } /*FWInfo fwInfo; memcpy(fwInfo.version, fwQueryResult.fw_info.fw_ver, sizeof(fwInfo.version)); memcpy(fwInfo.date, fwQueryResult.fw_info.fw_rel_date, sizeof(fwInfo.date)); fwInfo.psid = fwQueryResult.fw_info.psid; _fwInfo[fullPath] = fwInfo;*/ //_imgsFwOps[fullPath] = ops; vector componentPointers; PSIDExtension PSID(fwQueryResult.fw_info.psid); ComponentPointerExtension componentPointer(index++); componentPointers.push_back(componentPointer); DeviceDescriptor deviceDescriptor(componentPointers, PSID); _deviceDescriptors.push_back(deviceDescriptor); VersionExtension version(fwQueryResult.fw_info.fw_ver, fwQueryResult.fw_info.fw_rel_date); vector data; if (!ops->FwExtract4MBImage(data, true)) { printf("Can't Extract FW data from the image file %s:%s\n", fullPath.c_str(), ops->err()); exit(1); } ComponentDescriptor componentDescriptor(version, data); Component component(componentDescriptor); _components.push_back(component); } } }; PackageDescriptor FWDirectoryBuilder::getPackageDescriptor() const { PackageDescriptor packageDescriptor(_deviceDescriptors.size(), _components.size(), _version); return packageDescriptor; } vector FWDirectoryBuilder::getDeviceDescriptors() const { return _deviceDescriptors; /*vector deviceDescriptors; CONST_VECTOR_ITERATOR(string, _files, file) { PSIDExtension PSID("MT_0000000"); vector componentPointers; ComponentPointerExtension componentPointer( distance(_files.begin(), file)); componentPointers.push_back(componentPointer); DeviceDescriptor deviceDescriptor(componentPointers, PSID); deviceDescriptors.push_back(deviceDescriptor); } return deviceDescriptors;*/ } vector FWDirectoryBuilder::getComponents() const { return _components; /*vector components; CONST_VECTOR_ITERATOR(string, _files, file) { VersionExtension version("4.5.666", "20.9.1992"); vector data; _imgsFwOps[(*file)]->FwExtract4MBImage(data, false); ComponentDescriptor componentDescriptor(version, data); Component component(componentDescriptor); components.push_back(component); } return components;*/ } /*FWDirectoryBuilder::~FWDirectoryBuilder() { VECTOR_ITERATOR(FwOperations*, _imgsFwOps, imgFwOps) { if ((*imgFwOps)) { (*imgFwOps)->FwCleanUp(); delete (*imgFwOps); } } }*/ mstflint-4.26.0/mlxarchive/mlxarchive.cpp0000644000175000017500000002233314522641732020716 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include #include #include #include #include "common/tools_regex.h" #include "mlxarchive_mfa2_package_gen.h" #include #include "mlxarchive.h" #define IDENT " " #define IDENT2 IDENT IDENT #define IDENT3 "\t\t" #ifdef MST_UL #define MLXARCHIVE_EXEC "mstarchive" #else #define MLXARCHIVE_EXEC "mlxarchive" #endif /************************************ * * FLAGS Constants * ************************************/ #define HELP_FLAG "help" #define HELP_FLAG_SHORT 'h' #define BINS_DIR_FLAG "bins-dir" #define BINS_DIR_FLAG_SHORT 'b' #define OUT_FILE_FLAG "out-file" #define OUT_FILE_FLAG_SHORT 'o' #define DATE_FLAG "date" #define DATE_FLAG_SHORT 'd' #define VERSION_FLAG "version" #define VERSION_FLAG_SHORT 'v' #define MFA2_FILE_FLAG "mfa2-file" #define MFA2_FILE_FLAG_SHORT 'm' using namespace mlxarchive; bool writeToFile(const string&, const vector&); /************************************ * * Function: Mlxarchive * ************************************/ Mlxarchive::Mlxarchive() : CommandLineRequester(MLXARCHIVE_EXEC " OPTIONS"), _cmdParser(MLXARCHIVE_EXEC) { initCmdParser(); _binsDir = ""; _outFile = ""; _version = ""; _mfa2file = ""; _printMiniDump = false; } /************************************ * * Function: initCmdParser * ************************************/ void Mlxarchive::initCmdParser() { AddDescription("Allows the user to create a file with the MFA2 extension. The new file contains several " "binary files of a given firmware for different adapter cards."); AddOptions(HELP_FLAG, HELP_FLAG_SHORT, "", "Show help message and exit"); AddOptions( VERSION_FLAG, VERSION_FLAG_SHORT, "version", "MFA2 version in the following format: x.x.x, if creating MFA2 file or existing MFA2 file for print its version"); AddOptions(OUT_FILE_FLAG, OUT_FILE_FLAG_SHORT, "out_file", "Output file"); AddOptions(BINS_DIR_FLAG, BINS_DIR_FLAG_SHORT, "bins_dir", "Directory with the binaries files"); AddOptions(MFA2_FILE_FLAG, MFA2_FILE_FLAG_SHORT, "mfa2_file", "Mfa2 file to parse"); _cmdParser.AddRequester(this); } void Mlxarchive::paramValidate() { std::string err = "Missing mandatory parameter: %s\n"; std::string big_err = "Missing mandatory parameters: %s %s %s\n"; std::string err_regex = "Bad format in: %s(%s), the format should be like: %s\n"; mstflint::common::regex::smatch match; bool status_match; bool success = true; if (!_mfa2file.empty()) { if (!(_binsDir.empty() && _outFile.empty() && _version.empty())) { fprintf(stderr, "Cannot use any parameter when using mfa2_file parameter!\n"); exit(1); } return; } if (_binsDir.empty() && _outFile.empty()) { if (!_version.empty()) { _printMiniDump = true; _mfa2file = _version; _version.clear(); } else { // all three options are empty! fprintf(stderr, big_err.c_str(), "bins_dir", "out_file", "version"); success = false; } } else { if (_binsDir.empty()) { fprintf(stderr, err.c_str(), "bins_dir"); success = false; } if (_outFile.empty()) { fprintf(stderr, err.c_str(), "out_file"); success = false; } else { if (fexists(_outFile)) { if (!isFile(_outFile)) { fprintf(stderr, "Output file: %s is expected to be a file\n", _outFile.c_str()); } else { fprintf(stderr, "Output file: %s already exists\n", _outFile.c_str()); } success = false; } } if (_version.empty()) { fprintf(stderr, err.c_str(), "version"); success = false; } else { mstflint::common::regex::regex version_expression("^[0-9].[0-9].[0-9]$"); status_match = mstflint::common::regex::regex_match(_version, match, version_expression); if (!status_match) { fprintf(stderr, err_regex.c_str(), "version", _version.c_str(), "x.x.x"); success = false; } } } if (!success) { exit(1); } } ParseStatus Mlxarchive::HandleOption(string name, string value) { if (name == HELP_FLAG) { cout << _cmdParser.GetUsage(); return PARSE_OK_WITH_EXIT; } else if (name == VERSION_FLAG) { if (_version.empty() == false) { cout << "Version flag cannot be specified more than once" << endl; return PARSE_ERROR; } _version = value; return PARSE_OK; } else if (name == OUT_FILE_FLAG) { if (_outFile.empty() == false) { cout << "Output file flag cannot be specified more than once" << endl; return PARSE_ERROR; } _outFile = value; return PARSE_OK; } else if (name == BINS_DIR_FLAG) { if (_binsDir.empty() == false) { cout << "Binary directory flag cannot be specified more than once" << endl; return PARSE_ERROR; } _binsDir = value; return PARSE_OK; } else if (name == MFA2_FILE_FLAG) { if (_mfa2file.empty() == false) { cout << "MFA2 file flag cannot be specified more than once" << endl; return PARSE_ERROR; } _mfa2file = value; return PARSE_OK; } else { cout << "Unknown flag specified" << endl; return PARSE_ERROR; } return PARSE_ERROR; } int Mlxarchive::run(int argc, char** argv) { ParseStatus rc = _cmdParser.ParseOptions(argc, argv); if (rc == PARSE_OK_WITH_EXIT) { return 0; } else if (rc == PARSE_ERROR) { cerr << "Failed to parse arguments: " << _cmdParser.GetErrDesc() << endl; return 1; } else if (rc == PARSE_ERROR_SHOW_USAGE) { cerr << "Failed to parse arguments: " << _cmdParser.GetErrDesc() << endl; return 1; } paramValidate(); if (_mfa2file.empty()) { string outputFile = _outFile; string content = ""; vector buff; MFA2PackageGen mfa2PackageGen; string dir = _binsDir; string version = _version; buff.clear(); mfa2PackageGen.generateBinFromFWDirectory(dir, version, buff); // Save output to a file if (!writeToFile(outputFile, buff)) { fprintf(stderr, "-E- Cannot write to the file %s\n", outputFile.c_str()); exit(1); } } else { MFA2* mfa2Pkg = MFA2::LoadMFA2Package(_mfa2file); if (!mfa2Pkg) { fprintf(stderr, "-E- Failed to parse mfa2 file %s\n", _mfa2file.c_str()); exit(1); } if (_printMiniDump) { mfa2Pkg->minidump(); } else { mfa2Pkg->dump(); } delete mfa2Pkg; } return 0; } Mlxarchive::~Mlxarchive(){}; bool writeToFile(const string& fname, const vector& data) { FILE* fh; if ((fh = fopen(fname.c_str(), "wb")) == NULL) { return false; } // Write output if (fwrite(data.data(), 1, data.size(), fh) != data.size()) { fclose(fh); return false; } fclose(fh); return true; } int main(int argc, char* argv[]) { Mlxarchive mlxarch; return mlxarch.run(argc, argv); } mstflint-4.26.0/mlxarchive/mlxarchive.h0000644000175000017500000000404214522641732020360 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include namespace mlxarchive { class Mlxarchive : public CommandLineRequester { public: Mlxarchive(); ~Mlxarchive(); ParseStatus HandleOption(string name, string value); int run(int agc, char** argv); private: void initCmdParser(); void printHelp(); void paramValidate(); CommandLineParser _cmdParser; std::string _binsDir; std::string _outFile; std::string _date; std::string _version; std::string _mfa2file; bool _printMiniDump; }; } // namespace mlxarchive mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_utils.cpp0000644000175000017500000001041514522641732023041 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_utils.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include #include #include #include #include #include #include "mlxarchive_mfa2_utils.h" void packString(const string& str, vector& buff) { for (unsigned int i = 0; i < str.length(); i++) { buff.push_back((u_int8_t)str[i]); } } void packBytesArray(const u_int8_t* arr, unsigned int len, vector& buff) { for (unsigned int i = 0; i < len; i++) { buff.push_back(arr[i]); } } void unpackBytesArray(u_int8_t* arr, unsigned int len, vector& buff) { for (unsigned int i = 0; i < len; i++) { arr[i] = buff[i]; } } void packBinFile(const string& file, vector& buff) { vector fileBuff; streampos size; std::ifstream ifs(file.c_str(), ios::in | ios::binary | ios::ate); if (ifs.fail()) { // TODO throw PLDMException("Failed to open file: %s", file.c_str()); return; } size = ifs.tellg(); fileBuff.resize((size_t)size); ifs.seekg(0, ios::beg); ifs.read((char*)fileBuff.data(), size); ifs.close(); packBytesArray(fileBuff.data(), fileBuff.size(), buff); } unsigned int getFileSize(const string& file) { struct stat stat_buf; int rc = stat(file.c_str(), &stat_buf); if (!rc) { // printf("stat_buf.st_size=%d\n", stat_buf.st_size); return stat_buf.st_size; } return 0; // TODO throw exception } bool fexists(const std::string& filename) { struct stat buffer; return (stat(filename.c_str(), &buffer) == 0); } // check if filename points to regular file: bool isFile(const std::string& filename) { struct stat buffer; stat(filename.c_str(), &buffer); return S_ISREG(buffer.st_mode); } bool endsWith(const std::string& str, const std::string& suffix) { return (str.size() >= suffix.size()) && (str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0); } void listDir(const char* path, vector& files) { struct dirent* entry; DIR* dir = opendir(path); if (dir == NULL) { fprintf(stderr, "Failed to open directory: %s\n", path); exit(1); } while ((entry = readdir(dir)) != NULL) { if (endsWith(entry->d_name, ".bin")) { files.push_back(entry->d_name); } else { // skipping hidden files if (entry->d_name[0] != '.') { fprintf(stderr, "Skipping file: %s, not a binary...\n", entry->d_name); } } } if (files.empty()) { fprintf(stderr, "No binray files found in the given directory: %s\n", path); exit(1); } closedir(dir); } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_common_header.cpp0000644000175000017500000000644314522641732024507 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_common_header.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include #include "mlxarchive_mfa2_common_header.h" using namespace mfa2; CommonHeader::CommonHeader(u_int8_t version, MFA2Type type, u_int16_t length) : _version(version), _type(type), _length(length){}; void CommonHeader::pack(vector& buff) const { vector tmpBuff; struct mlxarchive_common_header commonHeader; // padding buff if it is not DW aligned: for (unsigned int i = 0; i < (buff.size() % 4); i++) { buff.push_back(0x0); } /*switch () { case 3: buff.push_back(0x0); case 2: buff.push_back(0x0); case 1: buff.push_back(0x0); break; default: break; }*/ tmpBuff.resize(mlxarchive_common_header_size(), 0x0); memset(&commonHeader, 0x0, sizeof(commonHeader)); commonHeader.version = _version; commonHeader.type = (u_int8_t)_type; commonHeader.length = _length; mlxarchive_common_header_pack(&commonHeader, tmpBuff.data()); packBytesArray(tmpBuff.data(), tmpBuff.size(), buff); } bool CommonHeader::unpack(Mfa2Buffer& buff) { // align header long pos = buff.tell(); if (pos % 4 != 0) { buff.seek(4 - (pos % 4), SEEK_CUR); } int arr_size = mlxarchive_common_header_size(); u_int8_t* arr = new u_int8_t[arr_size]; buff.read(arr, arr_size); struct mlxarchive_common_header commonHeader; memset(&commonHeader, 0x0, sizeof(commonHeader)); mlxarchive_common_header_unpack(&commonHeader, arr); delete[] arr; arr = NULL; _version = commonHeader.version; _type = (MFA2Type)commonHeader.type; _length = commonHeader.length; return true; } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_utils.h0000644000175000017500000000744514522641732022517 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_utils.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_UTILS_H_ #define MLXARCHIVE_MFA2_UTILS_H_ #include #include #include #include #include "mfa2_buff.h" #define MFA2_FINGER_PRINT "MLNX.MFA2.XZ.00!" #define FINGER_PRINT_SIZE (strlen(MFA2_FINGER_PRINT)) using namespace std; #define VECTOR_ITERATOR(t, v, i) for (vector::iterator i = v.begin(); i != v.end(); ++i) #define CONST_VECTOR_ITERATOR(t, v, i) for (vector::const_iterator i = v.begin(); i != v.end(); ++i) enum MFA2Type { MFA2Type_MULTI_PART = 0x1, MFA2Type_PACKAGE_DESCRIPTOR = 0x2, MFA2Type_DEVICE_DESCRIPTOR = 0x3, MFA2Type_COMPONENT_DESCRIPTOR = 0X4, MFA2Type_USER_DATA = 0X5, MFA2Type_COMMENTS = 0X20, MFA2Type_VERSION = 0X21, MFA2Type_COMPONENT_PTR = 0X22, MFA2Type_VENDOR_NAME = 0x23, MFA2Type_PRODUCT_NAME = 0x24, MFA2Type_PRODUCT_DESC = 0x25, MFA2Type_PACKAGE_CREATOR_URL = 0x26, MFA2Type_SOURCE_FILENAME = 0x27, MFA2Type_FILENAME = 0x28, MFA2Type_SECURITY_INFO = 0x29, MFA2Type_PSID = 0x2A, MFA2Type_PSID_BRANCH = 0x2B, MFA2Type_PCI_IDs = 0x2C, MFA2Type_EXP_ROM_VERSION = 0x2D, MFA2Type_USER_TIMESTAMP = 0x2E, MFA2Type_SHA256 = 0x2F, MFA2Type_DESCRIPTORSSHA256 = 0x30, MFA2Type_PADDING = 0x31 }; void packString(const string& str, vector& buff); void packBytesArray(const u_int8_t* arr, unsigned int len, vector& buff); void unpackBytesArray(u_int8_t* arr, unsigned int len, vector& buff); void packBinFile(const string& file, vector& buff); unsigned int getFileSize(const string& file); bool fexists(const string& filename); bool isFile(const string& filename); void listDir(const char* path, vector& files); class FingerPrint { private: string _fingerPrint; public: FingerPrint(string fingerPrint) : _fingerPrint(fingerPrint){}; void pack(vector& buff) const { packString(_fingerPrint, buff); }; inline u_int32_t getSize() const { return _fingerPrint.length(); } bool unpack(Mfa2Buffer& buff) { buff.read(_fingerPrint, FINGER_PRINT_SIZE); if (_fingerPrint != MFA2_FINGER_PRINT) { return false; } return true; } }; #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_types.h0000644000175000017500000000323214522641732022511 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_types.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_TYPES_H_ #define MLXARCHIVE_MFA2_TYPES_H_ #endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_extension.h0000644000175000017500000001511014522641732023357 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_extension.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_EXTENSION_H_ #define MLXARCHIVE_MFA2_EXTENSION_H_ #include #include #include #include #include #include "mlxarchive_mfa2_element.h" #include "mfa2_buff.h" using namespace std; namespace mfa2 { class Version { public: Version() { major = -1; minor = -1; subminor = -1; } Version(std::string version) { sscanf(version.c_str(), "%d.%d.%d", &major, &minor, &subminor); } private: int major; int minor; int subminor; public: bool operator>(const Version& other) { if (major > other.major) return true; if (minor > other.minor) return true; if (subminor > other.subminor) return true; return false; } friend std::ostream& operator<<(std::ostream& stream, const Version& ver) { stream << ver.major; stream << '.'; stream << ver.minor; stream << '.'; stream << ver.subminor; return stream; } }; class Extension : protected Element { protected: enum ExtensionType { VersionExtensionType, SecurityInfoExtensionType, ComponentPointerExtensionType, SHA256ExtensionType, DescriptorsSHA256ExtensionType, CommentExtensionType, PSIDExtensionType, SourceFileNameExtensionType }; MFA2Type extensionTypeToMFA2Type(ExtensionType type); protected: public: Extension(u_int8_t vesrion, ExtensionType type, u_int32_t length); virtual void pack(vector& buff) const = 0; virtual bool unpack(Mfa2Buffer& buff) = 0; virtual ~Extension(){}; }; class VersionExtension : Extension { private: u_int8_t _major; u_int16_t _subMinor; u_int8_t _minor; u_int8_t _seconds; u_int8_t _minutes; u_int8_t _hours; u_int8_t _day; u_int8_t _month; u_int16_t _year; public: const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = MLXARCHIVE_VERSION_SIZE; void fillTimeAndDate(); VersionExtension(const string& version); VersionExtension(const u_int16_t* version, const u_int16_t* fw_rel_date); void pack(vector& buff) const; bool unpack(Mfa2Buffer& buff); string getVersion(bool pad_sub_minor) const; string getDateAndTime() const; void getDateAndTime(char* buffer) const; u_int8_t getMajor() const { return _major; } u_int8_t getMinor() const { return _minor; } u_int16_t getSubMinor() const { return _subMinor; } }; class ComponentPointerExtension : Extension { private: u_int16_t _componentIndex; u_int8_t _storageId; // TODO: use enums u_int32_t _storageAddress; public: const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = MLXARCHIVE_COMPONENT_PTR_SIZE; explicit ComponentPointerExtension(u_int16_t componentIndex) : Extension(ELEMENT_VERSION, ComponentPointerExtensionType, LENGTH), _componentIndex(componentIndex), _storageId(0x1), _storageAddress(0x0){}; void pack(vector& buff) const; bool unpack(Mfa2Buffer& buff); u_int16_t getComponentIndex() const { return _componentIndex; } }; class SHA256Extension : Extension { public: enum SHA256Scope { SHA256Scope_Descriptors, SHA256Scope_All }; const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = 0x20; explicit SHA256Extension(enum SHA256Scope scope); void setDigest(vector digest); void pack(vector& buff) const; bool unpack(Mfa2Buffer& buff); private: vector _digest; ExtensionType scopeToExtensionType(enum SHA256Scope); }; /*class DescriptorsSHA256Extension : Extension, Extension::Digest { private: const static u_int8_t ELEMENT_VERSION = 0x0; const static u_int32_t LENGTH = Extension::Digest::_length; public: DescriptorsSHA256Extension() : Extension(ELEMENT_VERSION, DescriptorsSHA256ExtensionType, LENGTH) {}; void pack(vector& buff) const; };*/ class StringExtension : public Extension { private: string _str; public: StringExtension(u_int8_t vesrion, ExtensionType type, string str) : Extension(vesrion, type, str.length()), _str(str){}; u_int32_t length() const; void pack(vector& buff) const; bool unpack(Mfa2Buffer& buff); const string& getString() const { return _str; } }; inline u_int32_t StringExtension::length() const { return _str.length(); } class CommentExtension : public StringExtension { private: const static u_int8_t ELEMENT_VERSION = 0x0; public: explicit CommentExtension(string comment) : StringExtension(ELEMENT_VERSION, CommentExtensionType, comment){}; }; class PSIDExtension : public StringExtension { private: const static u_int8_t ELEMENT_VERSION = 0x0; public: explicit PSIDExtension(string psid) : StringExtension(ELEMENT_VERSION, PSIDExtensionType, psid){}; }; } // namespace mfa2 #endif mstflint-4.26.0/mlxarchive/Makefile.am0000755000175000017500000001047714522641732020115 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in CURL_LIBS = -lcurl -lssl -lcrypto -lrt AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/libmfa \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mflash \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxfwops/lib \ -I$(top_srcdir)/dev_mgt \ -I$(top_srcdir)/tools_layouts AM_CPPFLAGS += $(JSON_CFLAGS) noinst_LTLIBRARIES = libmstarchive.la libmstarchive_la_SOURCES = \ mlxarchive_mfa2_utils.h mlxarchive_mfa2_utils.cpp \ mlxarchive_mfa2_common_header.h mlxarchive_mfa2_common_header.cpp \ mlxarchive_mfa2_element.h mlxarchive_mfa2_element.cpp \ mlxarchive_mfa2_extension.h mlxarchive_mfa2_extension.cpp \ mlxarchive_mfa2_descriptor.h mlxarchive_mfa2_descriptor.cpp \ mlxarchive_mfa2_component.h \ mlxarchive_mfa2.h mlxarchive_mfa2.cpp \ mlxarchive_mfa2_builder.h mlxarchive_mfa2_builder.cpp \ mlxarchive_mfa2_package_gen.h mlxarchive_mfa2_package_gen.cpp \ mfa2_buff.h mfa2_buff.cpp AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) bin_PROGRAMS = mstarchive mstarchive_SOURCES = mlxarchive.cpp mlxarchive.h mstarchive_CXXFLAGS = mstarchive_LDADD = libmstarchive.la \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/mft_utils/libmftutils.la \ $(JSON_LIBS) \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libmlxarchive_layouts.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(CURL_LIBS) \ -llzma -lm ${LDL} mstarchive_LDFLAGS = -static if ENABLE_OPENSSL mstarchive_LDADD += $(top_builddir)/mlxsign_lib/libmlxsign.la -lcrypto -lssl else endif if ENABLE_CS mstarchive_LDADD += $(top_builddir)/tools_crypto/libtools_crypto.a -lcrypto else endif if ENABLE_INBAND mstarchive_LDADD += $(top_builddir)/mad_ifc/libmad_ifc.la else endif if ENABLE_DPA mstarchive_CXXFLAGS += -DENABLE_DPA mstarchive_LDADD += $(top_builddir)/mlxdpa/libmstdpa.a endif mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_element.cpp0000644000175000017500000000370414522641732023335 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_element.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include "mlxarchive_mfa2_element.h" using namespace mfa2; CommonHeader Element::buildCommonHeader(u_int8_t version, MFA2Type type, u_int32_t length) { CommonHeader commonHeader(version, type, length); return commonHeader; } Element::Element(u_int8_t version, MFA2Type type, u_int32_t length) : _commonHeader(buildCommonHeader(version, type, length)) { } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_extension.cpp0000644000175000017500000002156514522641732023725 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_extension.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include #include "mlxarchive_mfa2_extension.h" #include using namespace mfa2; void VersionExtension::fillTimeAndDate() { time_t tt; time(&tt); tm TM = *localtime(&tt); _seconds = TM.tm_sec; _minutes = TM.tm_min; _hours = TM.tm_hour; _day = TM.tm_mday; _month = TM.tm_mon; _year = 1900 + TM.tm_year; } MFA2Type Extension::extensionTypeToMFA2Type(ExtensionType type) { switch (type) { case VersionExtensionType: return MFA2Type_VERSION; case SecurityInfoExtensionType: return MFA2Type_SECURITY_INFO; case ComponentPointerExtensionType: return MFA2Type_COMPONENT_PTR; case CommentExtensionType: return MFA2Type_COMMENTS; case PSIDExtensionType: return MFA2Type_PSID; case SourceFileNameExtensionType: return MFA2Type_SOURCE_FILENAME; default: // TODO throw exception return MFA2Type_SOURCE_FILENAME; } } Extension::Extension(u_int8_t version, ExtensionType type, u_int32_t length) : Element(version, extensionTypeToMFA2Type(type), length) { } VersionExtension::VersionExtension(const string& version) : Extension(ELEMENT_VERSION, VersionExtensionType, LENGTH) { int a, b, c; sscanf(version.c_str(), "%d.%d.%d", &a, &b, &c); _major = a; _subMinor = c; _minor = b; fillTimeAndDate(); } VersionExtension::VersionExtension(const u_int16_t* version, const u_int16_t* fw_rel_date) : Extension(ELEMENT_VERSION, VersionExtensionType, LENGTH) { _major = version[0]; _subMinor = version[2]; _minor = version[1]; _seconds = 0; _minutes = 0; _hours = 12; _day = fw_rel_date[0]; _month = fw_rel_date[1]; _year = fw_rel_date[2]; } void VersionExtension::pack(vector& buff) const { vector tmpBuff; struct mlxarchive_version version; // pack common header _commonHeader.pack(buff); // pack version info tmpBuff.resize(mlxarchive_version_size()); memset(&version, 0x0, sizeof(version)); version.version_major = _major; version.version_sub_minor = _subMinor; version.version_minor = _minor; version.day = _day; version.month = _month; version.year = _year; version.seconds = _seconds; version.minutes = _minutes; version.hour = _hours; mlxarchive_version_pack(&version, tmpBuff.data()); buff.insert(buff.end(), tmpBuff.begin(), tmpBuff.end()); } bool VersionExtension::unpack(Mfa2Buffer& buff) { // unpack common header _commonHeader.unpack(buff); struct mlxarchive_version version; int arr_size = mlxarchive_version_size(); u_int8_t* arr = new u_int8_t[arr_size]; buff.read(arr, arr_size); memset(&version, 0x0, arr_size); mlxarchive_version_unpack(&version, arr); delete[] arr; arr = NULL; // unpack version info _major = version.version_major; _subMinor = version.version_sub_minor; _minor = version.version_minor; _day = version.day; _month = version.month; _year = version.year; _seconds = version.seconds; _minutes = version.minutes; _hours = version.hour; return true; } string VersionExtension::getVersion(bool pad_sub_minor) const { stringstream ss; string res; if (pad_sub_minor) { char _sub_minor_str[5] = {0}; snprintf(_sub_minor_str, sizeof(_sub_minor_str), "%04d", (int)_subMinor % 10000); // "% 10000" since subminor can be represented by 4 digits ss << (int)_major << '.' << (int)_minor << '.' << _sub_minor_str; // and it helps the compiler to understand there are only 4 characters } // so it can fit into _sub_minor_str variable else { ss << (int)_major << '.' << (int)_minor << '.' << (int)_subMinor; } ss >> res; return res; } string VersionExtension::getDateAndTime() const { tm tm_obj = tm(); tm_obj.tm_sec = _seconds; tm_obj.tm_min = _minutes; tm_obj.tm_hour = _hours; tm_obj.tm_mday = _day; tm_obj.tm_mon = _month; tm_obj.tm_year = _year - 1900; char buffer[64] = {0}; strftime(buffer, 64, "%Y-%m-%d %H:%M:%S", &tm_obj); return string(buffer); } void VersionExtension::getDateAndTime(char* buffer) const { sprintf(buffer, "%x.%x.%x", _day, _month, _year); } void ComponentPointerExtension::pack(vector& buff) const { vector tmpBuff; struct mlxarchive_component_ptr componentPointer; // pack common header _commonHeader.pack(buff); tmpBuff.resize(mlxarchive_component_ptr_size()); memset(&componentPointer, 0x0, sizeof(componentPointer)); componentPointer.component_index = _componentIndex; componentPointer.storage_id = _storageId; componentPointer.storage_address = _storageAddress; mlxarchive_component_ptr_pack(&componentPointer, tmpBuff.data()); buff.insert(buff.end(), tmpBuff.begin(), tmpBuff.end()); } bool ComponentPointerExtension::unpack(Mfa2Buffer& buff) { // unpack common header _commonHeader.unpack(buff); struct mlxarchive_component_ptr componentPointer; int arr_size = mlxarchive_component_ptr_size(); u_int8_t* arr = new u_int8_t[arr_size]; buff.read(arr, arr_size); memset(&componentPointer, 0x0, arr_size); mlxarchive_component_ptr_unpack(&componentPointer, arr); delete[] arr; arr = NULL; // unpack version info _componentIndex = componentPointer.component_index; _storageId = componentPointer.storage_id; _storageAddress = componentPointer.storage_address; return true; } SHA256Extension::SHA256Extension(enum SHA256Scope scope) : Extension(ELEMENT_VERSION, scopeToExtensionType(scope), LENGTH) { _digest.resize(LENGTH); }; Extension::ExtensionType SHA256Extension::scopeToExtensionType(enum SHA256Scope scope) { switch (scope) { case SHA256Scope_Descriptors: return DescriptorsSHA256ExtensionType; case SHA256Scope_All: return SHA256ExtensionType; default: // throw exception TODO return SHA256ExtensionType; } } void SHA256Extension::setDigest(vector digest) { _digest = digest; } void SHA256Extension::pack(vector& buff) const { // pack common header _commonHeader.pack(buff); packBytesArray(_digest.data(), _digest.size(), buff); } bool SHA256Extension::unpack(Mfa2Buffer& buff) { // unpack common header _commonHeader.unpack(buff); u_int16_t length = _commonHeader.getLength(); u_int8_t* arr = new u_int8_t[length]; buff.read(arr, length); _digest.resize(length); for (u_int16_t i = 0; i < length; i++) { _digest.push_back(arr[i]); } delete[] arr; arr = NULL; return true; } /*void DescriptorsSHA256Extension::pack(vector& buff) const { u_int8_t sha[0x140] = {0}; packBytesArray(sha, 0x140, buff); }*/ /*StringExtension::StringExtension(HeaderType type, string str) :_str(str) { }*/ void StringExtension::pack(vector& buff) const { // pack common header _commonHeader.pack(buff); packString(_str, buff); } bool StringExtension::unpack(Mfa2Buffer& buff) { // unpack common header _commonHeader.unpack(buff); u_int16_t length = _commonHeader.getLength(); buff.read(_str, length); return true; } mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_descriptor.cpp0000644000175000017500000002660514522641732024067 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_descriptor.cpp * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #include "mlxarchive_mfa2_descriptor.h" using namespace mfa2; /* Class Descriptor */ MFA2Type Descriptor::descriptorTypeToMFA2Type(DescriptorType type) { switch (type) { case PackageDescriptorType: return MFA2Type_PACKAGE_DESCRIPTOR; case DeviceDescriptorType: return MFA2Type_DEVICE_DESCRIPTOR; case ComponentDescriptorType: return MFA2Type_COMPONENT_DESCRIPTOR; default: // TODO throw exception return MFA2Type_COMPONENT_DESCRIPTOR; } } Descriptor::Descriptor(u_int8_t version, DescriptorType type, u_int32_t length) : Element(version, descriptorTypeToMFA2Type(type), length) { } void Descriptor::packMultiPart(u_int8_t extensionsCount, u_int16_t totalLength, vector& buff) const { struct mlxarchive_multi_part multiPart; vector tmpBuff(mlxarchive_multi_part_size(), 0x0); CommonHeader commonHeader(0x0, MFA2Type_MULTI_PART, mlxarchive_multi_part_size()); commonHeader.pack(buff); memset(&multiPart, 0x0, sizeof(multiPart)); multiPart.number_of_extensions = extensionsCount; multiPart.total_length = totalLength + ((extensionsCount + 1) * mlxarchive_common_header_size()); mlxarchive_multi_part_pack(&multiPart, tmpBuff.data()); packBytesArray(tmpBuff.data(), tmpBuff.size(), buff); } bool Descriptor::unpackMultiPart(u_int8_t& extensionsCount, u_int16_t& totalLength, Mfa2Buffer& buff) { CommonHeader commonHeader(0x0, MFA2Type_MULTI_PART, 0x0); commonHeader.unpack(buff); struct mlxarchive_multi_part multiPart; int arr_size = mlxarchive_multi_part_size(); u_int8_t* arr = new u_int8_t[arr_size]; buff.read(arr, arr_size); memset(&multiPart, 0x0, arr_size); mlxarchive_multi_part_unpack(&multiPart, arr); delete[] arr; arr = NULL; extensionsCount = multiPart.number_of_extensions; totalLength = multiPart.total_length - ((extensionsCount + 1) * mlxarchive_common_header_size()); return true; } Descriptor::~Descriptor(){VECTOR_ITERATOR(Extension*, _extensions, it){delete (*it); } } ; /* Class PackageDescriptor */ PackageDescriptor::PackageDescriptor(u_int16_t deviceDescriptorsCount, u_int16_t componentsCount, VersionExtension version) : Descriptor(ELEMENT_VERSION, Descriptor::PackageDescriptorType, LENGTH), _deviceDescriptorsCount(deviceDescriptorsCount), _componentsCount(componentsCount), _version(version), _componentsBlockOffset(0x0), _componentsBlockArchiveSize(0x0), _componentsBlockSize(0x0), _SHA256Extension(SHA256Extension::SHA256Scope_All), _descriptorsSHA256Extension(SHA256Extension::SHA256Scope_Descriptors) { } void PackageDescriptor::pack(vector& buff) const { vector tmpBuff; struct mlxarchive_package_descriptor packageDescriptor; // TODO: pack the multipart, it comes before the desc' itself packMultiPart(_extensions.size() + 3, LENGTH + VersionExtension::LENGTH + 2 * SHA256Extension::LENGTH, buff); // pack common header _commonHeader.pack(buff); // pack the packageDescriptor struct memset(&packageDescriptor, 0x0, sizeof(packageDescriptor)); packageDescriptor.num_of_devices = _deviceDescriptorsCount; packageDescriptor.num_of_components = _componentsCount; packageDescriptor.cb_offset = _componentsBlockOffset; packageDescriptor.cb_archive_size = _componentsBlockArchiveSize; packageDescriptor.cb_size_l = (u_int32_t)_componentsBlockSize; packageDescriptor.cb_size_h = _componentsBlockSize >> 32; // printf("cb_size_l=0x%x cb_size_h=0x%x\n", // packageDescriptor.cb_size_l, packageDescriptor.cb_size_h); packageDescriptor.cb_compression = 0x1; // TODO use enums packageDescriptor.user_data_offset = 0x0; // TODO tmpBuff.resize(mlxarchive_package_descriptor_size(), 0x0); mlxarchive_package_descriptor_pack(&packageDescriptor, tmpBuff.data()); packBytesArray(tmpBuff.data(), tmpBuff.size(), buff); // pack Version Extension _version.pack(buff); // pack SHA256 Extension _SHA256Extension.pack(buff); // pack DescriptorSHA256 Extension _descriptorsSHA256Extension.pack(buff); // pack optional extensions CONST_VECTOR_ITERATOR(Extension*, _extensions, it) { (*it)->pack(buff); } } bool PackageDescriptor::unpack(Mfa2Buffer& buff) { u_int8_t extensionsCount; u_int16_t totalLength; unpackMultiPart(extensionsCount, totalLength, buff); // pack common header _commonHeader.unpack(buff); // unpack descriptor struct mlxarchive_package_descriptor packageDescriptor; int arr_size = mlxarchive_package_descriptor_size(); u_int8_t* arr = new u_int8_t[arr_size]; buff.read(arr, arr_size); memset(&packageDescriptor, 0x0, arr_size); mlxarchive_package_descriptor_unpack(&packageDescriptor, arr); delete[] arr; arr = NULL; _deviceDescriptorsCount = packageDescriptor.num_of_devices; _componentsCount = packageDescriptor.num_of_components; _componentsBlockOffset = packageDescriptor.cb_offset; _componentsBlockArchiveSize = packageDescriptor.cb_archive_size; _componentsBlockSize = (u_int64_t)(packageDescriptor.cb_size_l | (u_int64_t)packageDescriptor.cb_size_h << 32); u_int8_t extIdx = 0; // pack Version Extension _version.unpack(buff); extIdx++; // pack SHA256 Extension _SHA256Extension.unpack(buff); extIdx++; // pack DescriptorSHA256 Extension _descriptorsSHA256Extension.unpack(buff); extIdx++; ; // pack optional extensions for (; extIdx < extensionsCount; extIdx++) { CommentExtension* extension = new CommentExtension(""); extension->unpack(buff); addExtension(extension); //_extensions.push_back(extension); } return true; } void PackageDescriptor::setDescriptorsSHA256(const vector& digest) { _descriptorsSHA256Extension.setDigest(digest); } void PackageDescriptor::setSHA256(const vector& digest) { _SHA256Extension.setDigest(digest); } /* Class DeviceDescriptor */ DeviceDescriptor::DeviceDescriptor(vector componentPointers, PSIDExtension PSID) : Descriptor(ELEMENT_VERSION, Descriptor::DeviceDescriptorType, LENGTH), _componentPointers(componentPointers), _PSID(PSID){}; void DeviceDescriptor::pack(vector& buff) const { // TODO: pack the multipart, it comes before the desc' itself packMultiPart( _extensions.size() + 2, DeviceDescriptor::LENGTH + _PSID.length() + ComponentPointerExtension::LENGTH, buff); // pack common header _commonHeader.pack(buff); // pack PSID _PSID.pack(buff); // pack component pointers CONST_VECTOR_ITERATOR(ComponentPointerExtension, _componentPointers, it) { (*it).pack(buff); } } bool DeviceDescriptor::unpack(Mfa2Buffer& buff) { // unpack extensions u_int8_t extensionsCount; u_int16_t totalLength; unpackMultiPart(extensionsCount, totalLength, buff); _commonHeader.unpack(buff); // pack PSID _PSID.unpack(buff); ComponentPointerExtension compExt(0); compExt.unpack(buff); _componentPointers.push_back(compExt); return true; } /* Class ComponentDescriptor */ ComponentDescriptor::ComponentDescriptor(VersionExtension version, string source) : Descriptor(ELEMENT_VERSION, Descriptor::ComponentDescriptorType, LENGTH), _version(version) /*, _source(source)*/, _componentBlockOffset(0x0), _binarySize(getFileSize(source)) { packBinFile(source, _data); }; ComponentDescriptor::ComponentDescriptor(VersionExtension version, vector data) : Descriptor(ELEMENT_VERSION, Descriptor::ComponentDescriptorType, LENGTH), _version(version), _componentBlockOffset(0x0), _binarySize(data.size()), _data(data){ // printf("_data.size()=%d\n", (int)_data.size()); }; void ComponentDescriptor::pack(vector& buff) const { // TODO: pack the multipart, it comes before the desc' itself /*memset(&multi_part, 0x0, sizeof(multi_part)); multi_part.number_of_extensions = _extensions.size() +*/ packMultiPart(_extensions.size() + 1, ComponentDescriptor::LENGTH + VersionExtension::LENGTH, buff); vector tmpBuff; struct mlxarchive_component_desciptor componentDescriptor; // pack common header _commonHeader.pack(buff); // pack the packageDescriptor struct memset(&componentDescriptor, 0x0, sizeof(componentDescriptor)); componentDescriptor.identifier = 0x0; // TODO componentDescriptor.pldm_classification = 0x0; // TODO componentDescriptor.cb_offset_h = _componentBlockOffset >> 32; componentDescriptor.cb_offset_l = (u_int32_t)_componentBlockOffset; componentDescriptor.size = _binarySize; tmpBuff.resize(mlxarchive_component_desciptor_size()); mlxarchive_component_desciptor_pack(&componentDescriptor, tmpBuff.data()); packBytesArray(tmpBuff.data(), tmpBuff.size(), buff); _version.pack(buff); } bool ComponentDescriptor::unpack(Mfa2Buffer& buff) { // unpack extensions u_int8_t extensionsCount; u_int16_t totalLength; unpackMultiPart(extensionsCount, totalLength, buff); // unpack common header _commonHeader.unpack(buff); // unpack descriptor struct mlxarchive_component_desciptor componentDescriptor; int arr_size = mlxarchive_component_desciptor_size(); u_int8_t* arr = new u_int8_t[arr_size]; buff.read(arr, arr_size); memset(&componentDescriptor, 0x0, arr_size); mlxarchive_component_desciptor_unpack(&componentDescriptor, arr); delete[] arr; arr = NULL; _binarySize = componentDescriptor.size; _componentBlockOffset = (u_int64_t)(componentDescriptor.cb_offset_l | (u_int64_t)componentDescriptor.cb_offset_h << 32); // unpack version _version.unpack(buff); return true; } mstflint-4.26.0/mlxarchive/mfa2_buff.h0000644000175000017500000000423014522641732020044 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * pldm_utils.h * * Created on: Feb 27, 2019 * Author: Samer Deeb */ #ifndef _MFA2_BUFF_H_ #define _MFA2_BUFF_H_ #include #include "common/compatibility.h" class Mfa2Buffer { public: Mfa2Buffer(); virtual ~Mfa2Buffer(); bool loadFile(const std::string& fname); void read(u_int8_t& val); void read(u_int16_t& val); void read(u_int32_t& val); void read(std::string& str, size_t str_size); void read(u_int8_t* arr, size_t arr_size); int seek(long offset, int whence); long tell(); void rewind(); u_int8_t* getBuffer() const { return m_buff; } long getSize() const { return m_size; } private: u_int8_t* m_buff; long m_pos; long m_size; }; #endif /* _MFA2_BUFF_H_ */ mstflint-4.26.0/mlxarchive/mlxarchive_mfa2_package_gen.h0000644000175000017500000000375614522641732023604 0ustar tzafrirctzafrirc /* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * mlxarchive_mfa2_package_gen.h * * Created on: March 23, 2017 * Author: Ahmad Soboh */ #ifndef MLXARCHIVE_MFA2_PACKAGE_GEN_H_ #define MLXARCHIVE_MFA2_PACKAGE_GEN_H_ #include #include #include #include "mlxarchive_mfa2.h" using namespace std; using namespace mfa2; class MFA2PackageGen { private: public: MFA2PackageGen(){}; void generateBinFromFWDirectory(const string& directory, const string& version, vector& buff) const; }; #endif mstflint-4.26.0/mlxarchive/Makefile.in0000644000175000017500000007264314522641737020133 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstarchive$(EXEEXT) @ENABLE_OPENSSL_TRUE@am__append_1 = $(top_builddir)/mlxsign_lib/libmlxsign.la -lcrypto -lssl @ENABLE_CS_TRUE@am__append_2 = $(top_builddir)/tools_crypto/libtools_crypto.a -lcrypto @ENABLE_INBAND_TRUE@am__append_3 = $(top_builddir)/mad_ifc/libmad_ifc.la @ENABLE_DPA_TRUE@am__append_4 = -DENABLE_DPA @ENABLE_DPA_TRUE@am__append_5 = $(top_builddir)/mlxdpa/libmstdpa.a subdir = mlxarchive DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmstarchive_la_LIBADD = am_libmstarchive_la_OBJECTS = mlxarchive_mfa2_utils.lo \ mlxarchive_mfa2_common_header.lo mlxarchive_mfa2_element.lo \ mlxarchive_mfa2_extension.lo mlxarchive_mfa2_descriptor.lo \ mlxarchive_mfa2.lo mlxarchive_mfa2_builder.lo \ mlxarchive_mfa2_package_gen.lo mfa2_buff.lo libmstarchive_la_OBJECTS = $(am_libmstarchive_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_mstarchive_OBJECTS = mstarchive-mlxarchive.$(OBJEXT) mstarchive_OBJECTS = $(am_mstarchive_OBJECTS) am__DEPENDENCIES_1 = @ENABLE_OPENSSL_TRUE@am__DEPENDENCIES_2 = $(top_builddir)/mlxsign_lib/libmlxsign.la @ENABLE_CS_TRUE@am__DEPENDENCIES_3 = $(top_builddir)/tools_crypto/libtools_crypto.a mstarchive_DEPENDENCIES = libmstarchive.la \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/mft_utils/libmftutils.la $(am__DEPENDENCIES_1) \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libmlxarchive_layouts.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/xz_utils/libxz_utils.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ $(am__DEPENDENCIES_3) $(am__append_3) $(am__append_5) mstarchive_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(mstarchive_CXXFLAGS) \ $(CXXFLAGS) $(mstarchive_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmstarchive_la_SOURCES) $(mstarchive_SOURCES) DIST_SOURCES = $(libmstarchive_la_SOURCES) $(mstarchive_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ CURL_LIBS = -lcurl -lssl -lcrypto -lrt AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/libmfa \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/mflash \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/mft_utils -I$(top_srcdir)/mlxfwops/lib \ -I$(top_srcdir)/dev_mgt -I$(top_srcdir)/tools_layouts \ $(JSON_CFLAGS) noinst_LTLIBRARIES = libmstarchive.la libmstarchive_la_SOURCES = \ mlxarchive_mfa2_utils.h mlxarchive_mfa2_utils.cpp \ mlxarchive_mfa2_common_header.h mlxarchive_mfa2_common_header.cpp \ mlxarchive_mfa2_element.h mlxarchive_mfa2_element.cpp \ mlxarchive_mfa2_extension.h mlxarchive_mfa2_extension.cpp \ mlxarchive_mfa2_descriptor.h mlxarchive_mfa2_descriptor.cpp \ mlxarchive_mfa2_component.h \ mlxarchive_mfa2.h mlxarchive_mfa2.cpp \ mlxarchive_mfa2_builder.h mlxarchive_mfa2_builder.cpp \ mlxarchive_mfa2_package_gen.h mlxarchive_mfa2_package_gen.cpp \ mfa2_buff.h mfa2_buff.cpp AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) mstarchive_SOURCES = mlxarchive.cpp mlxarchive.h mstarchive_CXXFLAGS = $(am__append_4) mstarchive_LDADD = libmstarchive.la \ $(top_builddir)/mlxfwops/lib/libmlxfwops.a \ $(top_builddir)/libmfa/libmfa.la \ $(top_builddir)/fw_comps_mgr/libfw_comps_mgr.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/mflash/libmflash.la \ $(top_builddir)/tools_res_mgmt/libtools_res_mgmt.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/mft_utils/libmftutils.la $(JSON_LIBS) \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libmlxarchive_layouts.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/xz_utils/libxz_utils.la $(CURL_LIBS) -llzma \ -lm ${LDL} $(am__append_1) $(am__append_2) $(am__append_3) \ $(am__append_5) mstarchive_LDFLAGS = -static all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxarchive/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxarchive/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmstarchive.la: $(libmstarchive_la_OBJECTS) $(libmstarchive_la_DEPENDENCIES) $(EXTRA_libmstarchive_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmstarchive_la_OBJECTS) $(libmstarchive_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstarchive$(EXEEXT): $(mstarchive_OBJECTS) $(mstarchive_DEPENDENCIES) $(EXTRA_mstarchive_DEPENDENCIES) @rm -f mstarchive$(EXEEXT) $(AM_V_CXXLD)$(mstarchive_LINK) $(mstarchive_OBJECTS) $(mstarchive_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mfa2_buff.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_builder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_common_header.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_descriptor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_element.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_extension.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_package_gen.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxarchive_mfa2_utils.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstarchive-mlxarchive.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mstarchive-mlxarchive.o: mlxarchive.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstarchive_CXXFLAGS) $(CXXFLAGS) -MT mstarchive-mlxarchive.o -MD -MP -MF $(DEPDIR)/mstarchive-mlxarchive.Tpo -c -o mstarchive-mlxarchive.o `test -f 'mlxarchive.cpp' || echo '$(srcdir)/'`mlxarchive.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstarchive-mlxarchive.Tpo $(DEPDIR)/mstarchive-mlxarchive.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxarchive.cpp' object='mstarchive-mlxarchive.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstarchive_CXXFLAGS) $(CXXFLAGS) -c -o mstarchive-mlxarchive.o `test -f 'mlxarchive.cpp' || echo '$(srcdir)/'`mlxarchive.cpp mstarchive-mlxarchive.obj: mlxarchive.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstarchive_CXXFLAGS) $(CXXFLAGS) -MT mstarchive-mlxarchive.obj -MD -MP -MF $(DEPDIR)/mstarchive-mlxarchive.Tpo -c -o mstarchive-mlxarchive.obj `if test -f 'mlxarchive.cpp'; then $(CYGPATH_W) 'mlxarchive.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxarchive.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstarchive-mlxarchive.Tpo $(DEPDIR)/mstarchive-mlxarchive.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxarchive.cpp' object='mstarchive-mlxarchive.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstarchive_CXXFLAGS) $(CXXFLAGS) -c -o mstarchive-mlxarchive.obj `if test -f 'mlxarchive.cpp'; then $(CYGPATH_W) 'mlxarchive.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxarchive.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/tools_res_mgmt/0000755000175000017500000000000014522641741016740 5ustar tzafrirctzafrircmstflint-4.26.0/tools_res_mgmt/tools_res_mgmt.c0000644000175000017500000004751214522641732022152 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #include #include #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) #include #endif #ifdef __WIN__ #include #define getpid() _getpid() #endif #include "tools_res_mgmt.h" #include "tools_time.h" #define VSEC_SEM_NUM 10 #define HW_SEM_NUM VSEC_SEM_NUM static const char* status_to_str[] = {"Ok", "Resource is busy", "Tools resource management interface not available", "Device not supported", "Resource not supported", "CR-Space access error", "Memory allocation failed"}; struct device_sem_info { dm_dev_id_t dev_id; u_int32_t hw_sem_addr[HW_SEM_NUM]; // if semaphore entry supported: value != 0 , main semaphore is at [0] int vsec_sem_supported; }; static u_int32_t g_vsec_sem_addr[VSEC_SEM_NUM] = {0x0, 0x10}; #define HW_SEM_ADDR_MASK 0xf static struct device_sem_info g_dev_sem_info_db[] = { { DeviceConnectX3, // dev_id {0xf03bc, 0xf03a0}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceConnectX3Pro, // dev_id {0xf03bc, 0xf03a0}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceConnectIB, // dev_id {0xe27f8}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceConnectX4, // dev_id {0xe250c}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceSwitchIB, // dev_id {0xa24f8}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceSpectrum, // dev_id {0xa24f8}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceConnectX4LX, // dev_id {0xe250c}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceSwitchIB2, // dev_id {0xa24f8}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceConnectX5, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceBlueField, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceBlueField2, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceBlueField3, // dev_id {0xe5660}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceBlueField4, // dev_id {0xe5660}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceQuantum, // dev_id {0xa68f8}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceSpectrum2, // dev_id {0xa68f8}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceConnectX6, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceConnectX6DX, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceConnectX6LX, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceConnectX7, // dev_id {0xe5660}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceConnectX8, // dev_id {0x54b80}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceGearBox, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceGearBoxManager, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceSpectrum3, // dev_id {0xa68f8}, // hw_sem_addr 0, // vsec_sem_supported }, { DeviceQuantum2, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceQuantum3, // dev_id {0x154800}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceArcusE, // dev_id {0x145800}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceBW00, // dev_id {0xe74e0}, // hw_sem_addr find correct one for 0x2900 1, // vsec_sem_supported }, { DeviceSpectrum4, // dev_id {0xa68f8}, // hw_sem_addr 1, // vsec_sem_supported }, { DeviceAbirGearBox, // dev_id {0xe74e0}, // hw_sem_addr 1, // vsec_sem_supported }, }; #define MAX_SEMAPHORE_ADDRES 8 #define FLASH_SEM_SLEEP 500 struct mad_lock_info { u_int32_t lock_key; u_int32_t lease_time_ms; tt_ctx_t start_time; }; struct trm_t { mfile* mf; const struct device_sem_info* dev_sem_info; struct mad_lock_info mad_lock[MAX_SEMAPHORE_ADDRES]; int ib_semaphore_lock_is_supported; }; /************************************ * Function: lock_hw_semaphore ************************************/ static trm_sts lock_hw_semaphore(mfile* mf, u_int32_t addr, unsigned int max_retries, int sleep_t) { u_int32_t val = 0; unsigned int cnt = 0; int rc; while (((rc = mread4(mf, addr, &val)) == 4) && val == 1 && cnt < max_retries) { cnt++; int sleep_time = sleep_t != 0 ? sleep_t : ((rand() % 5) + 1); msleep(sleep_time); } if (rc != 4) { return TRM_STS_CR_ACCESS_ERR; } else if (val == 0) { return TRM_STS_OK; } else { return TRM_STS_RES_BUSY; } } /************************************ * Function: unlock_hw_semaphore ************************************/ static trm_sts unlock_hw_semaphore(mfile* mf, u_int32_t addr) { int rc = mwrite4(mf, addr, 0) == 4 ? TRM_STS_OK : TRM_STS_CR_ACCESS_ERR; // give up the rest of the time slice msleep(0); return rc; } /************************************ * Function: lock_icommand_gateway_semaphore() ************************************/ static trm_sts lock_icommand_gateway_semaphore(mfile* mf, u_int32_t addr, unsigned int max_retries) { static u_int32_t pid = 0; u_int32_t read_val = 0; unsigned cnt = 0; if (!pid) { pid = getpid(); } do { // loop while the semaphore is taken by someone else if (cnt++ > max_retries) { return TRM_STS_RES_BUSY; } // write pid to semaphore if (MWRITE4_SEMAPHORE(mf, addr, pid)) { return TRM_STS_CR_ACCESS_ERR; } // Read back if (MREAD4_SEMAPHORE(mf, addr, &read_val)) { return TRM_STS_CR_ACCESS_ERR; } if (read_val == pid) { break; } msleep(((rand() % 5) + 1)); } while (read_val != pid); return TRM_STS_OK; } /************************************ * Function: unlock_icommand_gateway_semaphore() ************************************/ static trm_sts unlock_icommand_gateway_semaphore(mfile* mf, u_int32_t addr) { if (MWRITE4_SEMAPHORE(mf, addr, 0)) { return TRM_STS_CR_ACCESS_ERR; } return TRM_STS_OK; } #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) /************************************ * Function: release_vs_mad_semaphore() ************************************/ #define GET_LEASE_TIME_MS(is_leaseable, lease_time_exp) ((is_leaseable) ? (50 * (1 << (lease_time_exp))) : 0) static trm_sts release_vs_mad_semaphore(trm_ctx trm, trm_resourse resource) { u_int32_t lock_key = 0; u_int8_t new_lease_exponent = 0; int is_leaseable = 0; int rc = TRM_STS_OK; if (!trm->mad_lock[resource].lock_key) { return TRM_STS_OK; } if (trm->ib_semaphore_lock_is_supported == 0) { return TRM_STS_RES_NOT_SUPPORTED; } rc = mib_semaphore_lock_vs_mad(trm->mf, SMP_SEM_RELEASE, g_vsec_sem_addr[resource], trm->mad_lock[resource].lock_key, &lock_key, &is_leaseable, &new_lease_exponent, SEM_LOCK_SET); if (rc == (int)ME_MAD_BUSY) { return TRM_STS_RES_BUSY; } else if (rc) { return TRM_STS_RES_NOT_SUPPORTED; } else if (lock_key != 0) { return TRM_STS_CR_ACCESS_ERR; } trm->mad_lock[resource].lock_key = 0; trm->mad_lock[resource].lease_time_ms = 0; return TRM_STS_OK; } /************************************ * Function: lock_vs_mad_semaphore() ************************************/ static trm_sts lock_vs_mad_semaphore(trm_ctx trm, trm_resourse resource, unsigned int max_retries) { u_int32_t new_lock_key = 0; u_int8_t new_lease_exponent = 0; int is_leaseable = 0; tt_ctx_t curr_time; int rc = TRM_STS_OK; unsigned int cnt = 0; if (trm->ib_semaphore_lock_is_supported == 0) { return TRM_STS_RES_NOT_SUPPORTED; } // check if we got lock_key if (trm->mad_lock[resource].lock_key) { // TODO: use threads to extend lock every ~20 seconds untill releasing the lock // check if extension is needed if (trm->mad_lock[resource].lease_time_ms == 0) { // no need to extend lease is untill device reboot return TRM_STS_OK; } tt_get_time(&curr_time); double diff = tt_diff_in_ms(trm->mad_lock[resource].start_time, curr_time); if (diff <= trm->mad_lock[resource].lease_time_ms * 0.6) { return TRM_STS_OK; } // extension needed try to extend rc = mib_semaphore_lock_vs_mad(trm->mf, SMP_SEM_EXTEND, g_vsec_sem_addr[resource], trm->mad_lock[resource].lock_key, &new_lock_key, &is_leaseable, &new_lease_exponent, SEM_LOCK_SET); if (rc == ME_OK && new_lock_key == trm->mad_lock[resource].lock_key) { // extend OK trm->mad_lock[resource].lease_time_ms = GET_LEASE_TIME_MS(is_leaseable, new_lease_exponent); trm->mad_lock[resource].start_time = curr_time; return TRM_STS_OK; } else { // extend failed try to re-lock the semaphore trm->mad_lock[resource].lock_key = 0; trm->mad_lock[resource].lease_time_ms = 0; new_lock_key = 0; } } // if not or extend failed try to lock do { if (cnt++ > max_retries) { return TRM_STS_RES_BUSY; } rc = mib_semaphore_lock_vs_mad(trm->mf, SMP_SEM_LOCK, g_vsec_sem_addr[resource], 0, &new_lock_key, &is_leaseable, &new_lease_exponent, SEM_LOCK_SET); if (rc == (int)ME_MAD_BUSY || new_lock_key == 0) { msleep(((rand() % 5) + 1)); } } while (rc == (int)ME_MAD_BUSY || new_lock_key == 0); if (rc) { return TRM_STS_RES_NOT_SUPPORTED; } trm->mad_lock[resource].lock_key = new_lock_key; trm->mad_lock[resource].lease_time_ms = GET_LEASE_TIME_MS(is_leaseable, new_lease_exponent); tt_get_time(&(trm->mad_lock[resource].start_time)); return TRM_STS_OK; } #endif /************************************ * Function: get_device_sem_info ************************************/ static struct device_sem_info* get_device_sem_info(dm_dev_id_t dev_id) { size_t i; for (i = 0; i < sizeof(g_dev_sem_info_db) / sizeof(g_dev_sem_info_db[0]); i++) { if (g_dev_sem_info_db[i].dev_id == dev_id) { return &g_dev_sem_info_db[i]; } } return NULL; } /************************************ * Function: trm_create ************************************/ trm_sts trm_create(trm_ctx* trm_p, mfile* mf) { dm_dev_id_t dev_id = DeviceStartMarker; u_int32_t hw_dev_id; u_int32_t chip_rev; *trm_p = (trm_ctx)malloc(sizeof(struct trm_t)); if (!(*trm_p)) { return TRM_STS_MEM_ERROR; } memset((*trm_p), 0, sizeof(struct trm_t)); (*trm_p)->mf = mf; #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) u_int32_t dev_flags = 0; if (!mget_mdevs_flags(mf, &dev_flags)) { if ((dev_flags & MDEVS_IB) && mib_semaphore_lock_is_supported(mf) == 1) { (*trm_p)->ib_semaphore_lock_is_supported = 1; } } #endif if (dm_get_device_id((*trm_p)->mf, &dev_id, &hw_dev_id, &chip_rev)) { free(*trm_p); *trm_p = (trm_ctx)NULL; return dev_id == DeviceUnknown ? TRM_STS_DEV_NOT_SUPPORTED : TRM_STS_CR_ACCESS_ERR; } (*trm_p)->dev_sem_info = get_device_sem_info(dev_id); // Not supported device if (!((*trm_p)->dev_sem_info)) { free(*trm_p); *trm_p = (trm_ctx)NULL; return TRM_STS_DEV_NOT_SUPPORTED; } return TRM_STS_OK; } /************************************ * Function: trm_destroy ************************************/ trm_sts trm_destroy(trm_ctx trm) { if (trm) { free(trm); } return TRM_STS_OK; } /************************************ * Function: trm_lock ************************************/ trm_sts trm_lock(trm_ctx trm, trm_resourse res, unsigned int max_retries) { u_int32_t dev_type = 0; if (mget_mdevs_flags(trm->mf, &dev_type)) { return TRM_STS_DEV_NOT_SUPPORTED; } // lock resource on appropriate ifc if supported switch ((int)res) { case TRM_RES_ICMD: if (trm->dev_sem_info->vsec_sem_supported && mget_vsec_supp(trm->mf)) { return lock_icommand_gateway_semaphore(trm->mf, g_vsec_sem_addr[TRM_RES_ICMD], max_retries); #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) } else if (trm->dev_sem_info->vsec_sem_supported && (dev_type & MDEVS_IB)) { return lock_vs_mad_semaphore(trm, TRM_RES_ICMD, max_retries); #endif } else if (trm->dev_sem_info->hw_sem_addr[TRM_RES_MAIN_SEM & HW_SEM_ADDR_MASK]) { // lock hw semaphore return lock_hw_semaphore(trm->mf, trm->dev_sem_info->hw_sem_addr[TRM_RES_MAIN_SEM & HW_SEM_ADDR_MASK], max_retries, 0); } break; case TRM_RES_FLASH_PROGRAMING: if (trm->dev_sem_info->vsec_sem_supported && mget_vsec_supp(trm->mf)) { return lock_icommand_gateway_semaphore(trm->mf, g_vsec_sem_addr[TRM_RES_FLASH_PROGRAMING], max_retries); #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) } else if (trm->dev_sem_info->vsec_sem_supported && (dev_type & MDEVS_IB)) { return lock_vs_mad_semaphore(trm, TRM_RES_FLASH_PROGRAMING, max_retries); #endif } break; case TRM_RES_HCR_FLASH_PROGRAMING: if (trm->dev_sem_info->hw_sem_addr[TRM_RES_HCR_FLASH_PROGRAMING & HW_SEM_ADDR_MASK]) { // lock hw semaphore return lock_hw_semaphore( trm->mf, trm->dev_sem_info->hw_sem_addr[TRM_RES_HCR_FLASH_PROGRAMING & HW_SEM_ADDR_MASK], max_retries, FLASH_SEM_SLEEP); } break; case TRM_RES_HW_TRACER: if (trm->dev_sem_info->hw_sem_addr[TRM_RES_HW_TRACER & HW_SEM_ADDR_MASK]) { // lock hw semaphore return lock_hw_semaphore(trm->mf, trm->dev_sem_info->hw_sem_addr[TRM_RES_HW_TRACER & HW_SEM_ADDR_MASK], max_retries, 0); } break; default: break; } return TRM_STS_RES_NOT_SUPPORTED; } /************************************ * Function: trm_try_lock ************************************/ trm_sts trm_try_lock(trm_ctx trm, trm_resourse res) { return trm_lock(trm, res, 1); } /************************************ * Function: trm_unlock ************************************/ trm_sts trm_unlock(trm_ctx trm, trm_resourse res) { u_int32_t dev_type = 0; if (mget_mdevs_flags(trm->mf, &dev_type)) { return TRM_STS_DEV_NOT_SUPPORTED; } // lock resource on appropriate ifc if supported switch ((int)res) { case TRM_RES_ICMD: if (trm->dev_sem_info->vsec_sem_supported && mget_vsec_supp(trm->mf)) { return unlock_icommand_gateway_semaphore(trm->mf, g_vsec_sem_addr[TRM_RES_ICMD]); #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) } else if (trm->dev_sem_info->vsec_sem_supported && (dev_type & MDEVS_IB)) { return release_vs_mad_semaphore(trm, TRM_RES_ICMD); #endif } else if (trm->dev_sem_info->hw_sem_addr[TRM_RES_MAIN_SEM & HW_SEM_ADDR_MASK]) { // lock hw semaphore return unlock_hw_semaphore(trm->mf, trm->dev_sem_info->hw_sem_addr[TRM_RES_MAIN_SEM & HW_SEM_ADDR_MASK]); } break; case TRM_RES_FLASH_PROGRAMING: if (trm->dev_sem_info->vsec_sem_supported && mget_vsec_supp(trm->mf)) { return unlock_icommand_gateway_semaphore(trm->mf, g_vsec_sem_addr[TRM_RES_FLASH_PROGRAMING]); #if !defined(__FreeBSD__) && !defined(UEFI_BUILD) } else if (trm->dev_sem_info->vsec_sem_supported && (dev_type & MDEVS_IB)) { return release_vs_mad_semaphore(trm, TRM_RES_FLASH_PROGRAMING); #endif } break; case TRM_RES_HCR_FLASH_PROGRAMING: if (trm->dev_sem_info->hw_sem_addr[TRM_RES_HCR_FLASH_PROGRAMING & HW_SEM_ADDR_MASK]) { // lock hw semaphore return unlock_hw_semaphore( trm->mf, trm->dev_sem_info->hw_sem_addr[TRM_RES_HCR_FLASH_PROGRAMING & HW_SEM_ADDR_MASK]); } break; case TRM_RES_HW_TRACER: if (trm->dev_sem_info->hw_sem_addr[TRM_RES_HW_TRACER & HW_SEM_ADDR_MASK]) { // lock hw semaphore return unlock_hw_semaphore(trm->mf, trm->dev_sem_info->hw_sem_addr[TRM_RES_HW_TRACER & HW_SEM_ADDR_MASK]); } break; default: break; } return TRM_STS_RES_NOT_SUPPORTED; } /************************************ * Function: trm_sts2str ************************************/ const char* trm_sts2str(trm_sts status) { size_t num_of_sts = sizeof(status_to_str) / sizeof(status_to_str[0]); if ((size_t)status >= num_of_sts) { return "Unknown status code"; } return status_to_str[status]; } mstflint-4.26.0/tools_res_mgmt/tools_time.h0000644000175000017500000000341214522641732021267 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifdef __cplusplus extern "C" { #endif #include typedef struct tt_ctx { time_t now; } tt_ctx_t; // update context with the current time void tt_get_time(tt_ctx_t* tt); // get diff in ms between the time t1 was created and t2 double tt_diff_in_ms(tt_ctx_t t1, tt_ctx_t t2); #ifdef __cplusplus } #endif mstflint-4.26.0/tools_res_mgmt/tools_time.c0000644000175000017500000000331514522641732021264 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include "tools_time.h" void tt_get_time(tt_ctx_t* tt) { if (!tt) { return; } time(&(tt->now)); return; } double tt_diff_in_ms(tt_ctx_t t1, tt_ctx_t t2) { return difftime(t2.now, t1.now) * 1000; } mstflint-4.26.0/tools_res_mgmt/Makefile.am0000644000175000017500000000347314522641732021003 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libtools_res_mgmt.la libtools_res_mgmt_la_SOURCES = tools_res_mgmt.c tools_res_mgmt.h tools_time.c tools_time.h mstflint-4.26.0/tools_res_mgmt/tools_res_mgmt.h0000644000175000017500000000772114522641732022155 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef TOOLS_RESOURCE_MGMT_H #define TOOLS_RESOURCE_MGMT_H #include #ifdef __cplusplus extern "C" { #endif typedef enum { TRM_STS_OK = 0, TRM_STS_RES_BUSY, TRM_STS_IFC_NA, TRM_STS_DEV_NOT_SUPPORTED, TRM_STS_RES_NOT_SUPPORTED, TRM_STS_CR_ACCESS_ERR, TRM_STS_MEM_ERROR } trm_sts; typedef enum { // vsec semaphores TRM_RES_ICMD = 0x0, TRM_RES_FLASH_PROGRAMING = 0x1, // hw semaphores TRM_RES_MAIN_SEM = 0x10, TRM_RES_HW_TRACER = TRM_RES_MAIN_SEM, TRM_RES_TOOLS_HCR = TRM_RES_MAIN_SEM, TRM_RES_HCR_FLASH_PROGRAMING = 0x11, TRM_RES_ALL = 0xffff, } trm_resourse; typedef struct trm_t* trm_ctx; /* * Create tools resource context * trm_p: trm_ctx pointer to be allocated * Parameter (mf) - an opened mst device handler * Return TOOLS_STS_OK on success of creating the context, otherwise any other error code. */ trm_sts trm_create(trm_ctx* trm_p, mfile* mf); /* * Destroy the context * trm: trm_ctx to be destroyed * Return TOOLS_STS_OK on success of destroying the context, otherwise any other error code. */ trm_sts trm_destroy(trm_ctx trm); /* * Lock tools resource * Parameter (mf) - an opened mst device handler * Parameter (res) - resource to acquire. * Parameter (max_retry) - max retry count before declaring resource busy. * Return TOOLS_STS_OK on success of locking all the desired resources, otherwise any other error code. */ trm_sts trm_lock(trm_ctx trm, trm_resourse res, unsigned int max_retry); /* * Try to lock tools resource (returns immediately if resource busy) * Parameter (mf) - an opened mst device handler * Parameter (res) - resource to acquire. * Return TOOLS_STS_OK on success of locking all the desired resources, otherwise any other error code. */ trm_sts trm_try_lock(trm_ctx trm, trm_resourse res); /* * Unlock tools resource * Parameter (mf) - an opened mst device handler * Parameter (res) - resource to release. * Return TOOLS_STS_OK if all given resources were unlocked successfully. */ trm_sts trm_unlock(trm_ctx trm, trm_resourse res); /* * Translate tools_sem_mgmt_sts status code to a human readable string. * Parameter (status) - status code to translate. * Return descriptive string. */ const char* trm_sts2str(trm_sts status); #ifdef __cplusplus } #endif #endif // TOOLS_RESOURCE_MGMT_H mstflint-4.26.0/tools_res_mgmt/Makefile.in0000644000175000017500000004755714522641741021027 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tools_res_mgmt DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libtools_res_mgmt_la_LIBADD = am_libtools_res_mgmt_la_OBJECTS = tools_res_mgmt.lo tools_time.lo libtools_res_mgmt_la_OBJECTS = $(am_libtools_res_mgmt_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libtools_res_mgmt_la_SOURCES) DIST_SOURCES = $(libtools_res_mgmt_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libtools_res_mgmt.la libtools_res_mgmt_la_SOURCES = tools_res_mgmt.c tools_res_mgmt.h tools_time.c tools_time.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools_res_mgmt/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools_res_mgmt/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libtools_res_mgmt.la: $(libtools_res_mgmt_la_OBJECTS) $(libtools_res_mgmt_la_DEPENDENCIES) $(EXTRA_libtools_res_mgmt_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libtools_res_mgmt_la_OBJECTS) $(libtools_res_mgmt_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools_res_mgmt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools_time.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxdpa/0000755000175000017500000000000014522641737015175 5ustar tzafrirctzafrircmstflint-4.26.0/mlxdpa/hostelf.h0000755000175000017500000000205214522641732017007 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #ifndef MLXDPA_HOSTELF_H_ #define MLXDPA_HOSTELF_H_ #include #include #include using namespace std; class HostElf { public: HostElf(string path, string outputPath); vector GetListOfDpaApps(); vector GetDpaApp(const AppHandle& app); void AddSection(string sectionName, const vector& section); void RemoveSection(string sectionName); private: string _filePath; string _outputPath; vector _data; AppTable _dpaAppsTable; }; #endif /* MLXDPA_HOSTELF_H_ */mstflint-4.26.0/mlxdpa/certcontainerbase.h0000755000175000017500000000476414522641732021052 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #ifndef MLXDPA_CACERTCONTAINER_H_ #define MLXDPA_CACERTCONTAINER_H_ #include #include #include #include "compatibility.h" using namespace std; class CertStructHeader { public: enum class StructType { CertificateX509 = 0x0, Signature = 0x1, CacertMetadata = 0x2, Cacert = 0x3, CertChainMetadata = 0x4, CacertRemove = 0x5, CertChainRemove = 0x6, Unknown }; enum class StructPriority { User = 0x0, Vendor = 0x1, Nvidia = 0x3, Unknown }; CertStructHeader(); CertStructHeader(StructPriority priority, StructType type, u_int16_t structLength); vector Serialize(); bool Deserialize(vector header); bool Deserialize(vector::const_iterator begin, vector::const_iterator end); StructType GetType() { return _type; } static StructPriority ToStructPriority(string priority); enum class StructSecurityMethod { None = 0x0, Crc16OfHeader = 0x1, Crc16OfHeaderAndData = 0x2 }; static const u_int32_t HEADER_SIZE = 12; private: u_int16_t _length; StructType _type; u_int8_t _version; StructPriority _priority; u_int8_t _valid; StructSecurityMethod _securityMethod; u_int16_t _crc; }; class CertStructBase { public: virtual ~CertStructBase() {} virtual vector Serialize() = 0; virtual void Deserialize(vector buf) = 0; virtual u_int16_t GetSize() = 0; virtual CertStructHeader::StructType GetType() = 0; static const u_int32_t METADATA_SIZE = 36; private: }; class CertContainerItem { public: CertContainerItem(CertStructHeader::StructPriority priority, CertStructBase* data); CertContainerItem(CertStructHeader header, CertStructBase* data); vector Serialize(bool toBigEndian = false); private: CertStructHeader _header; shared_ptr _struct; }; #endif /* MLXDPA_CACERTCONTAINER_H_ */mstflint-4.26.0/mlxdpa/mlxdpa_utils.h0000755000175000017500000000460014522641732020051 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #ifndef MLXDPA_UTILS_H_ #define MLXDPA_UTILS_H_ #include #include #include #include #define MLX_DPA_DPRINTF(args) \ do \ { \ char* reacDebug = getenv("MLX_DPA_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("[MLX_DPA_DEBUG]: "); \ printf args; \ fflush(stdout); \ } \ } while (0) #define CPUTOn(s, n) \ do \ { \ u_int32_t* p = (u_int32_t*)(s); \ for (u_int32_t ii = 0; ii < (n); ii++, p++) \ *p = __cpu_to_be32(*p); \ } while (0) using namespace std; void RunCommand(string cmd, string errorMsg); string OpenTempFile(string path, ofstream& f); vector ReadFromFile(string filename); bool strToNum(const string& str, u_int32_t& num, int base); bool ParseUUID(string uuidStr, u_int32_t uuid[]); class Crc16 { public: Crc16(bool d = false) : _debug(d) { clear(); } u_int16_t get() { return _crc; } void clear() { _crc = 0xffff; } void operator<<(u_int32_t val) { add(val); } void operator<<(std::vector v); void add(u_int32_t val); void finish(); private: u_int16_t _crc; bool _debug; }; class MlxDpaException : public exception { public: std::string _err; MlxDpaException(const char* fmt, ...); ~MlxDpaException() throw(){}; virtual const char* what() const throw() { return _err.c_str(); } }; #endif /* MLXDPA_UTILS_H_ */mstflint-4.26.0/mlxdpa/certcontainerimp.h0000755000175000017500000000523014522641732020712 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include "certcontainerbase.h" class CACertMetaData : public CertStructBase { public: CACertMetaData(u_int32_t certUUID[4], u_int32_t keypairUUID[4]); virtual ~CACertMetaData() {} vector Serialize() override; void Deserialize(vector buf) override; u_int16_t GetSize() override { return 0x24; }; CertStructHeader::StructType GetType() override { return CertStructHeader::StructType::CacertMetadata; }; private: const u_int32_t _keypairUUIDSize = 16; const u_int32_t _certUUIDSize = 16; u_int32_t _certUUID[4]; u_int8_t _dpaRotEn; u_int32_t _keypairUUID[4]; }; class CACertRemove : public CertStructBase { public: CACertRemove(u_int32_t certUUID[4], u_int32_t keypairUUID[4], bool removeAll); virtual ~CACertRemove() {} vector Serialize() override; void Deserialize(vector buf) override; u_int16_t GetSize() override { return 0x24; }; CertStructHeader::StructType GetType() override { return CertStructHeader::StructType::CacertRemove; }; bool IsRemoveAll() { return !(_removeAll == 0); } private: const u_int32_t _keypairUUIDSize = 16; const u_int32_t _certUUIDSize = 16; u_int32_t _certUUID[4]; u_int8_t _removeAll; u_int32_t _keypairUUID[4]; }; class CACert : public CertStructBase { public: CACert(string certPath); virtual ~CACert() {} vector Serialize() override { return _cert; } void Deserialize(vector buf) override { _cert = buf; } u_int16_t GetSize() override { return _cert.size(); } CertStructHeader::StructType GetType() override { return CertStructHeader::StructType::CertificateX509; }; private: vector _cert; }; class CertStructSignature : public CertStructBase { public: CertStructSignature(vector signature) : _signature(signature) {} vector Serialize() override { return _signature; } void Deserialize(vector buf) override { _signature = buf; } u_int16_t GetSize() override { return _signature.size(); } CertStructHeader::StructType GetType() override { return CertStructHeader::StructType::Signature; }; private: vector _signature; };mstflint-4.26.0/mlxdpa/cryptodata.h0000755000175000017500000000560614522641732017525 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #ifndef MLXDPA_CRYPTODATA_H_ #define MLXDPA_CRYPTODATA_H_ #include #include #include "include/mtcr_ul/mtcr_com_defs.h" #include "mlxsign_signer_interface.h" using namespace std; class CryptoDataSection { public: class HashListTable { public: enum class EntryType { dpaApp, elfHeader, programHeaders, programData, sectionHeaders, sectionData }; HashListTable(); vector Serialize(); void AddHash(EntryType type, const vector& data); private: u_int8_t _magicPattern[8]; u_int8_t _numOfSegments; u_int8_t _reserved[3]; u_int8_t _numOfSections; u_int8_t _reserved2[19]; vector _dpaAppElfHash; vector _elfHeaderHash; vector _programHeadersHash; vector> _programsHashes; vector _sectionHeadersHash; vector> _sectionsHashes; }; class CertChain { public: CertChain(); vector Serialize(); void AddCertificates(string path); void SetCount(u_int32_t count) { _metadata.count = count; } private: enum CertChainType { Unknown = 0, ThirdPartyCodeAuthentication = 1 }; struct CertChainMetadata { u_int32_t type : 4; u_int32_t count : 4; u_int32_t length : 16; u_int32_t reserved3 : 8; u_int32_t reserved; u_int16_t crc; u_int16_t reserved2; }; void AddCertificate(vector certificate); CertChainMetadata _metadata; vector _certificates; }; struct Metadata { u_int32_t _metadataVersion; u_int32_t _dpaFwType; u_int8_t _reserved[52]; u_int32_t _signatureType; }; enum class SignatureType : u_int16_t { RsaSha512 = 2, None = 0xffff }; CryptoDataSection(CertChain certChain); void GenerateHashListFromELF(const vector& elf); void Sign(const MlxSign::Signer& signer); vector Serialize(); private: Metadata _metadata; HashListTable _hashList; vector _cryptoSignature; CertChain _certChain; }; #endif /* MLXDPA_CRYPTODATA_H_ */mstflint-4.26.0/mlxdpa/mlxdpa.h0000755000175000017500000000634314522641732016637 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #ifndef MLXDPA_H_ #define MLXDPA_H_ #include #include #include #include #include "cryptodata.h" #include "hostelf.h" #include "certcontainerbase.h" class MlxDpa : public CommandLineRequester { public: MlxDpa(); ~MlxDpa(); void Run(int argc, char** argv); void SignHostElf(); void SignCertContainer(); void CreateCertContainer(); private: enum MlxDpaCmd { SignDPAApps, SignDPACertContainer, CreateDPACertContainer, Unknown }; enum CertContainerType { AddCert, RemoveCert, UnknownType }; unique_ptr CreateSigner(string privateKeyPem, string keyLabel); vector GetCertContainer(CertContainerType type); CertContainerType ToContainerType(string type); void InitCmdParser(); void PrintHelp(); ParseStatus ParseCommandLine(int argc, char** argv); bool ParseAndFindCommand(int argc, char** argv); ParseStatus HandleOption(string name, string value); void ParamValidate(); static const map _cmdStringToEnum; static const string HOST_ELF_FLAG; static const char HOST_ELF_FLAG_SHORT; static const string CERTIFICATE_FLAG; static const char CERTIFICATE_FLAG_SHORT; static const string AWS_HSM_FLAG; static const char AWS_HSM_FLAG_SHORT; static const string KEY_LABEL_FLAG; static const char KEY_LABEL_FLAG_SHORT; static const string PRIVATE_KEY_FLAG; static const char PRIVATE_KEY_FLAG_SHORT; static const string OUTPUT_FILE_FLAG; static const char OUTPUT_FILE_FLAG_SHORT; static const string HELP_FLAG; static const char HELP_FLAG_SHORT; static const string VERSION_FLAG; static const char VERSION_FLAG_SHORT; static const string CERT_CHAIN_COUNT_FLAG; static const string LIFE_CYCLE_PRIORITY_FLAG; static const string KEYPAIR_UUID_FLAG; static const string CERT_UUID_FLAG; static const string REMOVE_ALL_CERTS_FLAG; static const string CERT_CONTAINER_FLAG; static const string CERT_CONTAINER_TYPE_FLAG; static const string SIGN_DPA_APPS; static const string CERT_CONTAINER_FINGERPRINT; CommandLineParser _cmdParser; string _hostELFPath; string _certificatePath; bool _isAwsHsm; string _keyLabel; string _privateKeyPem; string _outputPath; u_int32_t _certChainCount; CertStructHeader::StructPriority _priority; bool _keypairUUIDSpecified; bool _certUUIDSpecified; u_int32_t _keypairUUID[4]; u_int32_t _certUUID[4]; bool _removeAllCertsSpecified; bool _removeAllCerts; string _certContainerPath; CertContainerType _certContainerType; MlxDpaCmd _command; }; #endif /* MLXDPA_H_ */mstflint-4.26.0/mlxdpa/dpa_elf/0000755000175000017500000000000014522641732016562 5ustar tzafrirctzafrircmstflint-4.26.0/mlxdpa/dpa_elf/dpa_elf.h0000644000175000017500000000370114522641732020326 0ustar tzafrirctzafrirc/* * NVIDIA_COPYRIGHT_BEGIN * * Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. * * NVIDIA_COPYRIGHT_END */ #include #include #define DPA_OBJ_SECTION_NAME ".dpa_obj" #define DPA_BIN_SECTION_PREFIX ".dpa_bin_" #define DPA_SIG_NAME_SECTION_PREFIX ".dpa_sig_name_" #define SIG_SECTION_NAME_MAX_LEN 256 typedef Elf64_Ehdr ELFHeader; typedef Elf64_Shdr SectionHeader; typedef Elf64_Off ELFOffset; typedef struct { char* name; Elf64_Off offset; uint64_t size; } AppHandle; typedef struct { AppHandle* table; uint64_t count; } AppTable; #ifdef __cplusplus extern "C" { #endif /// \brief Returns an AppTable object containing a /// list of AppHandle objects which contain the name, /// offset, size and signature section name for all apps /// /// \param[in] file File handle of an executable containing DPA apps /// \return AppTable object AppTable getAppList(FILE* file); /// \brief Updates the signature blob section name in the section which /// is reserved to contain the signature section name. This function /// asserts if the sigSectionName string length is greater than 255 bytes or /// if the file handle is not open for both reading and writing /// /// \param[in] fHandle File handle of the executable with read and write permission /// \param[in] appName Name of the app /// \param[in] sigSectionName Name of the signature blob section /// \return Returns 0 on success or non-zero value otherwise int updateSigSectionName(FILE* fHandle, char* appName, char* sigSectionName); #ifdef __cplusplus } #endif mstflint-4.26.0/mlxdpa/dpa_elf/x86_64/0000755000175000017500000000000014522641732017520 5ustar tzafrirctzafrircmstflint-4.26.0/mlxdpa/dpa_elf/x86_64/libdpa_elf0000644000175000017500000001321414522641732021525 0ustar tzafrirctzafrirc! / 1674792142 0 0 0 44 ` ppgetAppListupdateSigSectionNamedpa_elf.o/ 1674792142 0 0 100644 5600 ` ELF> @@ UH‰åHƒìpH‰}˜H‰uH‹E˜º¾H‰ÇèH‹U˜HE H‰Ñº¾@H‰Çè·EÜ·ÀH‰EøHƒ}øue·EÚ·ÀH‰ÇèH‰EðH‹EÈH‰ÁH‹E˜ºH‰ÎH‰Çè·EÚ·ðH‹U˜H‹EðH‰ÑºH‰ÇèH‹EðH‹@ H‰EøH‹EðH‰Çè·EÚ·ÀH¯EøH‰ÇèH‰EèH‹EÈH‰ÁH‹E˜ºH‰ÎH‰Çè·EÚ·ðH‹M˜H‹UøH‹EèH‰ÇèH‹EH‹UøH‰H‹EèÉÃUH‰åHƒì`H‰}¨H‰u H‹E¨º¾H‰ÇèH‹U¨HE°H‰Ñº¾@H‰Çè·Eî·À‰Eü}üÿÿu H‹E ‹@(‰Eü‹EüHÁàH‰ÂH‹E HÐH‹@ H‰ÇèH‰Eð‹EüHÁàH‰ÂH‹E HÐH‹@H‰ÁH‹E¨ºH‰ÎH‰Çè‹EüHÁàH‰ÂH‹E HÐH‹p H‹U¨H‹EðH‰ÑºH‰ÇèH‹EðÉÃUH‰åHƒÄ€H‰}ˆHƒ}ˆuH ºOH5H=è¿èH‰E°HÇE¸HÇEøHU¨H‹EˆH‰ÖH‰Çè¤ýÿÿH‰EèH‹UèH‹EˆH‰ÖH‰Çè¦þÿÿH‰EàHÇEðéAH‹EðHÁàH‰ÂH‹EèHЋ‰ÂH‹EàHÐH‰EØH‹EØH‰ÇèH‰EÐH‹Eغ H‰ÆH=è…À…ëH‹EÐHƒèH‰EÈH‹EȾH‰ÇèH‰EH‹EØHH H‹EH‹UÈH‰ÎH‰ÇèH‹EðHÁàH‰ÂH‹EèHÐH‹@H‰E˜H‹EðHÁàH‰ÂH‹EèHÐH‹@ H‰E H‹E¸HƒÀH‰E¸H‹E¸H9Eøs2H‹E¸HÀH‰EøH‹UøH‰ÐHÀHÐHÁàH‰ÂH‹E°H‰ÖH‰ÇèH‰E°H‹M°H‹U¸H‰ÐHÀHÐHÁàHƒèHÁH‹EH‹U˜H‰H‰QH‹E H‰AHƒEðH‹E¨H9Eð‚±þÿÿH‹E¸H…ÀuH‹E°H‰ÇèHÇE°H‹EèH‰ÇèH‹EàH‰ÇèH‹E°H‹U¸ÉÃUH‰åHƒì`H‰}¸H‰u°H‰U¨Hƒ}¸uH ºH5H=èH‹E¸H‰Ç辉Ǹèƒà…ÀuH º‚H5H=èH‹E¨H‰ÇèH=ÿvH ºƒH5H=èHUÀH‹E¸H‰ÖH‰Çè+ûÿÿH‰EàH‹UàH‹E¸H‰ÖH‰Çè-üÿÿH‰EØH‹E°H‰ÇèHƒÀ¾H‰ÇèH‰EÐH‹EÐHÇÁÿÿÿÿH‰Â¸H‰×ò®H‰ÈH÷ÐHPÿH‹EÐHÐH¾.dpa_sigH‰0Ç@_namfÇ@ e_Æ@H‹E°H‰ÇèH‰ÂH‹M°H‹EÐH‰ÎH‰ÇèÇEìHÇEðëoH‹EðHÁàH‰ÂH‹EàHЋ‰ÂH‹EØHÐH‰EÈH‹EÐH‰ÇèH‰ÂH‹MÈH‹EÐH‰ÎH‰Çè…Àu#H‹EðHÁàH‰ÂH‹EàHÐH‹@H‰EøÇEìëHƒEðH‹EÀH9Eðr‡ƒ}ìu¸ÿÿÿÿëlH‹MøH‹E¸ºH‰ÎH‰ÇèH‹E¨H‰ÇèHpH‹U¸H‹E¨H‰ÑH‰ò¾H‰ÇèH‹EÐH‰ÇèH‹EØH‰ÇèH‹EàH‰Çè¸ÉÃ/tmp/workspace/dpacc_compiler_nightly_dpacc-1.3.x/dpacc/lib/dpa_elf/dpa_elf.cfHandle.dpa_bin_fHandle && "file handle is NULL"(fcntl(fileno(fHandle), 3) & 02) && "file is not available for reading and writing"strlen(sigSectionName) < 256 && "signature section names greater than supported maximum"getAppListupdateSigSectionNameGCC: (GNU) 8.5.0zRx A†C  <àA†C Û \A†C  |mA†C h ñÿ !à=@ VPo…‹‘˜ù¨¶½ÅÌÔÜmñøþdpa_elf.cgetSectionHeaderTablegetSectionHeaderStringTable__PRETTY_FUNCTION__.3503__PRETTY_FUNCTION__.3522_GLOBAL_OFFSET_TABLE_fseekfreadmallocfreegetAppList__assert_failstrlenstrncmpcallocstrncpyreallocupdateSigSectionNamefilenofcntlstrncatfwrite"üÿÿÿÿÿÿÿ?üÿÿÿÿÿÿÿ`üÿÿÿÿÿÿÿüÿÿÿÿÿÿÿžüÿÿÿÿÿÿÿ¶üÿÿÿÿÿÿÿÊüÿÿÿÿÿÿÿéüÿÿÿÿÿÿÿüÿÿÿÿÿÿÿ;üÿÿÿÿÿÿÿXüÿÿÿÿÿÿÿ’üÿÿÿÿÿÿÿÂüÿÿÿÿÿÿÿïüÿÿÿÿÿÿÿ<üÿÿÿÿÿÿÿ"J'üÿÿÿÿÿÿÿ1üÿÿÿÿÿÿÿ­üÿÿÿÿÿÿÿÄRÉüÿÿÿÿÿÿÿîüÿÿÿÿÿÿÿ üÿÿÿÿÿÿÿ…üÿÿÿÿÿÿÿäüÿÿÿÿÿÿÿøüÿÿÿÿÿÿÿüÿÿÿÿÿÿÿ0L<üÿÿÿÿÿÿÿC\HüÿÿÿÿÿÿÿTüÿÿÿÿÿÿÿeüÿÿÿÿÿÿÿsLüÿÿÿÿÿÿÿ†„‹üÿÿÿÿÿÿÿ—üÿÿÿÿÿÿÿ¦L²üÿÿÿÿÿÿÿ¹ܾüÿÿÿÿÿÿÿøüÿÿÿÿÿÿÿ üÿÿÿÿÿÿÿ`üÿÿÿÿÿÿÿvüÿÿÿÿÿÿÿ´üÿÿÿÿÿÿÿÊüÿÿÿÿÿÿÿ%üÿÿÿÿÿÿÿ1üÿÿÿÿÿÿÿPüÿÿÿÿÿÿÿ\üÿÿÿÿÿÿÿhüÿÿÿÿÿÿÿtüÿÿÿÿÿÿÿ @`ù€.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @@° ( &¿,¿1Àe90%B7W8˜R@Ø` ÐÐ    8amstflint-4.26.0/mlxdpa/dpa_elf/arm64/0000755000175000017500000000000014522641732017513 5ustar tzafrirctzafrircmstflint-4.26.0/mlxdpa/dpa_elf/arm64/libdpa_elf0000644000175000017500000001370414522641732021524 0ustar tzafrirctzafrirc! / 1674792124 0 0 0 44 ` ppgetAppListupdateSigSectionNamedpa_elf.o/ 1674792124 0 0 100644 5912 ` ELF·Ø@@ ý{¸©ý‘àùá ù€R€Òà@ù”࣑ã@ù"€Ò€Ò”àË@y<@’à?ùà?@ùñÁTàÇ@y<@’”à;ùà+@ù€Ráªà@ù”àÇ@y<@’ã@ù"€Òáªà;@ù”à;@ù@ùà?ùà;@ù”àÇ@y<@’à?@ù |›”à7ùà+@ù€Ráªà@ù”àÇ@y<@’ã@ùâ?@ùáªà7@ù”à @ùá?@ùùà7@ùý{ȨÀ_Öý{¹©ý‘àùá ù€R€Òà@ù”àƒ‘ã@ù"€Ò€Ò”à¿@yào¹áo@¹àÿŸR?kTà @ù(@¹ào¹ào@¹äzÓá @ù ‹@ù”à3ùào@¹äzÓá @ù ‹ @ù€Ráªà@ù”ào@¹äzÓá @ù ‹@ùã@ù"€Òáªà3@ù”à3@ùý{ǨÀ_Öý{·©ý‘àùà@ùñ!T‘â €R‘‘”€Ò”à'ùÿ+ù €ÒàGùà‘áªà@ùvÿÿ—à?ùá?@ùà@ù²ÿÿ—à;ùÿCùSàC@ùäzÓá?@ù ‹@¹à*á;@ù ‹à7ùà7@ù”à3ù"€Òá7@ù‘”q¡Tà3@ù Ñà/ù!€Òà/@ù”àùã@ùà7@ù$‘â/@ùáªàª”àC@ùäzÓá?@ù ‹ @ùàùàC@ùäzÓá?@ù ‹@ùàùà+@ù‘à+ùà+@ùáG@ù?ëÂTà+@ùøÓàGùâ'@ùáG@ùàªøÓ‹ð}Óáªàª”à'ùâ'@ùá+@ùàªøÓ‹ð}Ó`Ñ@‹ãªâ£‘@@©`©@@ù`ùàC@ù‘àCùà#@ùáC@ù?ëcõÿTà+@ùñTà'@ù”ÿ'ùà?@ù”à;@ù”à‡D©ý{ɨÀ_Öý{¹©ý‘àùáùâùà@ùñ!T‘"€R‘‘”à@ù”a€R”q!T‘B€R‘‘”à@ù”üñ)T‘b€R‘‘”àÑáªà@ùÝþÿ—à+ùá+@ùà@ùÿÿ—à'ùà@ù”<‘!€Ò”à#ùà#@ù”áªà#@ù‹‘àª"@ùù!p@øpøà@ù”âªá@ùà#@ù”ÿ_¹ÿ3ùà3@ùäzÓá+@ù ‹@¹à*á'@ù ‹àùà#@ù”âªá@ùà#@ù”qATà3@ùäzÓá+@ù ‹ @ùà7ù €Rà_¹à3@ù‘à3ùà@ùá3@ù?ëüÿTà_@¹qaT€à7@ù€Ráªà@ù”à@ù”‘ã@ùâª!€Òà@ù”à#@ù”à'@ù”à+@ù”€Rý{ǨÀ_Ö/tmp/workspace/dpacc_compiler_nightly_dpacc-1.3.x/dpacc/lib/dpa_elf/dpa_elf.cfHandle.dpa_bin_fHandle && "file handle is NULL"(fcntl(fileno(fHandle), 3) & 02) && "file is not available for reading and writing"strlen(sigSectionName) < 256 && "signature section names greater than supported maximum".dpa_sig_name_getAppListupdateSigSectionNameGCC: (GNU) 8.5.0zRx A€ž~ÞÝ8ÌApž qÞÝXAž€ÞÝ x,Apž ‰ÞÝñÿ $Ì@CX \h@u{ˆÌ˜¦­µ¼ÄÌÔ,áèîödpa_elf.c$xgetSectionHeaderTablegetSectionHeaderStringTable$d__PRETTY_FUNCTION__.5033__PRETTY_FUNCTION__.5052fseekfreadmallocfreegetAppList__assert_failstrlenstrncmpcallocstrncpyreallocupdateSigSectionNamefilenofcntlstrncatfwrite0Tlˆœ°Èä0l”¼äXèXðôøPüPp€X„Xˆ¨ÈD°¼Äôhøhh h 0h4h<@DHLT`hdhlptèxè|¨´ÀÐHÔHð8H¸ÀØàèð<\Ì|Ô.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @@h ¨ &@,@1@}90½BÏWИR@` pah  h ýmstflint-4.26.0/mlxdpa/mlxdpa.cpp0000755000175000017500000005614514522641732017177 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include #include #include #include "mlxdpa.h" #include "mft_utils.h" #include "mlxdpa_utils.h" #include "certcontainerimp.h" #include "tools_version.h" #define INDENT " " #define INDENT2 INDENT INDENT #define INDENT3 "\t\t" static void printFlagLine(string flag_l, char flag_s, string param, string desc) { string shortFlag(1, flag_s); string flags = (flag_s != ' ' ? "-" + shortFlag + "|" : " "); flags += "--" + flag_l + (param.length() ? " <" + param + ">" : ""); printf(INDENT2 "%-40s", flags.c_str()); printf(INDENT3 ": %s\n", desc.c_str()); } const string MlxDpa::HOST_ELF_FLAG = "host_elf"; const char MlxDpa::HOST_ELF_FLAG_SHORT = 'e'; const string MlxDpa::CERTIFICATE_FLAG = "certificate"; const char MlxDpa::CERTIFICATE_FLAG_SHORT = 'c'; const string MlxDpa::PRIVATE_KEY_FLAG = "private_key"; const char MlxDpa::PRIVATE_KEY_FLAG_SHORT = 'p'; const string MlxDpa::OUTPUT_FILE_FLAG = "output_file"; const char MlxDpa::OUTPUT_FILE_FLAG_SHORT = 'o'; const string MlxDpa::HELP_FLAG = "help"; const char MlxDpa::HELP_FLAG_SHORT = 'h'; const string MlxDpa::VERSION_FLAG = "version"; const char MlxDpa::VERSION_FLAG_SHORT = 'v'; const string MlxDpa::CERT_CHAIN_COUNT_FLAG = "cert_chain_count"; const string MlxDpa::LIFE_CYCLE_PRIORITY_FLAG = "life_cycle_priority"; const string MlxDpa::KEYPAIR_UUID_FLAG = "keypair_uuid"; const string MlxDpa::CERT_UUID_FLAG = "cert_uuid"; const string MlxDpa::REMOVE_ALL_CERTS_FLAG = "remove_all_certs"; const string MlxDpa::CERT_CONTAINER_FLAG = "cert_container"; const string MlxDpa::CERT_CONTAINER_TYPE_FLAG = "cert_container_type"; const string MlxDpa::SIGN_DPA_APPS = "sign_dpa_apps"; const string MlxDpa::CERT_CONTAINER_FINGERPRINT = "CERTIFICATE.BIN!"; const map MlxDpa::_cmdStringToEnum = {{"sign_dpa_apps", SignDPAApps}, {"create_cert_container", CreateDPACertContainer}, {"sign_cert_container", SignDPACertContainer}}; MlxDpa::MlxDpa() : CommandLineRequester("mstdpa OPTIONS"), _cmdParser("mstdpa"), _hostELFPath(""), _certificatePath(""), _privateKeyPem(""), _outputPath(""), _certChainCount(3), _priority(CertStructHeader::StructPriority::Unknown), _keypairUUIDSpecified(false), _certUUIDSpecified(false), _keypairUUID{0, 0, 0, 0}, _certUUID{0, 0, 0, 0}, _removeAllCertsSpecified(false), _removeAllCerts(false), _certContainerPath(""), _command(Unknown) { InitCmdParser(); } MlxDpa::~MlxDpa() {} void MlxDpa::PrintHelp() { printf(INDENT "NAME:\n" INDENT2 "mlxdpa" "\n" INDENT "SYNOPSIS:\n" INDENT2 "mlxdpa" " [Options] \n"); printf(INDENT "DESCRIPTION:\n" INDENT2 "Signs DPA Host ELF files, using AWS sign server or private key pem file.\n" INDENT2 "Crypto data section is created for each DPA app in the Host ELF file."); printf("\n"); printf(INDENT "OPTIONS:\n"); printFlagLine(HOST_ELF_FLAG, HOST_ELF_FLAG_SHORT, "Host ELF", "Path to the Host ELF file containing DPA apps"); printFlagLine(CERT_CHAIN_COUNT_FLAG, ' ', "Hex number", "Number of certificates in the provided certificate chain"); printFlagLine(CERTIFICATE_FLAG, CERTIFICATE_FLAG_SHORT, "Certificate", "Path to a certificate or certificate chain file to embed in the crypto data sections"); printFlagLine(PRIVATE_KEY_FLAG, PRIVATE_KEY_FLAG_SHORT, "Private key PEM", "Path to private key PEM file for signature generation"); printFlagLine(OUTPUT_FILE_FLAG, OUTPUT_FILE_FLAG_SHORT, "Path", "Path to output signed Host ELF"); printFlagLine( LIFE_CYCLE_PRIORITY_FLAG, ' ', "Nvidia, OEM, User", "Life-cycle priority of requested certificate container"); printFlagLine(KEYPAIR_UUID_FLAG, ' ', "UUID", "Key-pair UUID of the private key used for sign"); printFlagLine(CERT_UUID_FLAG, ' ', "UUID", "Time base UUID generated right before signing"); printFlagLine( REMOVE_ALL_CERTS_FLAG, ' ', "", "Remove all CA Certificates, provide with the sign_cert_remove command"); printFlagLine(CERT_CONTAINER_FLAG, ' ', "Path", "Path to a certificate container to sign"); printFlagLine(CERT_CONTAINER_TYPE_FLAG, ' ', "Add/Remove", "Type of certificate container to create"); printFlagLine(HELP_FLAG, HELP_FLAG_SHORT, "", "Show help message and exit"); printFlagLine(VERSION_FLAG, VERSION_FLAG_SHORT, "", "Show version and exit"); printf(INDENT "COMMANDS SUMMARY:\n"); printf(INDENT2 "%-24s: %s\n", "sign_dpa_apps", "signs all dpa apps in the provided host elf, creating crypto data section for each app."); printf(INDENT2 "%-24s: %s\n", "create_cert_container", "generate a certificate container, used for adding or removing certificates from a DPA device."); printf(INDENT2 "%-24s: %s\n", "sign_cert_container", "sign a previously generated certificate container."); printf(INDENT "Examples:\n"); printf( INDENT2 "%-24s: %s\n", "Sign Host ELF using PEM file", "mlxdpa -e /tmp/host.elf -c /tmp/chain.cert -p /tmp/p_key.pem [--cert_chain_count 5] -o /tmp/signed_host.elf sign_dpa_apps"); printf( INDENT2 "%-24s: %s\n", "Create certificate upload container", "mstdpa --cert_container_type add -c /tmp/cert.der -o /tmp/cert_container.bin --life_cycle_priority OEM create_cert_container"); printf( INDENT2 "%-24s: %s\n", "Create certificate remove all container", "mstdpa --cert_container_type remove --remove_all_certs -o /tmp/cert_container.bin --life_cycle_priority OEM create_cert_container"); printf( INDENT2 "%-24s: %s\n", "Create certificate remove container", "mstdpa --cert_container_type remove --cert_uuid 7c0ab0fc-082e-11ee-bd9d-e43d1a1f06ae -o /tmp/cert_container.bin --life_cycle_priority OEM create_cert_container"); printf( INDENT2 "%-24s: %s\n", "Sign certificate container", "mstdpa --cert_container /tmp/cert_container.bin -p /tmp/p_key.pem --keypair_uuid 3c8f46b2-159f-11ee-9ac4-e43d1a1f06ae " "--cert_uuid 7c0ab0fc-082e-11ee-bd9d-e43d1a1f06ae --life_cycle_priority OEM -o /tmp/signed_cert_container.bin sign_cert_container"); printf("\n"); } void MlxDpa::InitCmdParser() { AddOptions(HOST_ELF_FLAG, HOST_ELF_FLAG_SHORT, "", "Path to host ELF file"); AddOptions(CERTIFICATE_FLAG, CERTIFICATE_FLAG_SHORT, "", "Path to a certificate or certificate chain"); AddOptions(CERT_CHAIN_COUNT_FLAG, ' ', "", "Number of certificates in the certificate chain"); AddOptions(PRIVATE_KEY_FLAG, PRIVATE_KEY_FLAG_SHORT, "", "Private key for DPA App signature"); AddOptions(HELP_FLAG, HELP_FLAG_SHORT, "", "Show help message and exit"); AddOptions(VERSION_FLAG, VERSION_FLAG_SHORT, "", "Show version and exit"); AddOptions(OUTPUT_FILE_FLAG, OUTPUT_FILE_FLAG_SHORT, "", "Path to output file"); AddOptions( LIFE_CYCLE_PRIORITY_FLAG, ' ', "", "Life-cycle priority of certificate addition/removal container"); AddOptions(KEYPAIR_UUID_FLAG, ' ', "", "Key-pair UUID of signing key."); AddOptions(CERT_UUID_FLAG, ' ', "", "RFC-4122 compliant time-based UUID."); AddOptions(REMOVE_ALL_CERTS_FLAG, ' ', "", "Remove all CA Certificates."); AddOptions(CERT_CONTAINER_FLAG, ' ', "", "Certificate container to sign."); AddOptions(CERT_CONTAINER_TYPE_FLAG, ' ', "", "Type of certificate container to create."); _cmdParser.AddRequester(this); } ParseStatus MlxDpa::HandleOption(string name, string value) { if (name == HELP_FLAG) { PrintHelp(); return PARSE_OK_WITH_EXIT; } else if (name == VERSION_FLAG) { print_version_string("mlxdpa", NULL); return PARSE_OK_WITH_EXIT; } else if (name == HOST_ELF_FLAG) { _hostELFPath = value; return PARSE_OK; } else if (name == CERTIFICATE_FLAG) { _certificatePath = value; return PARSE_OK; } else if (name == PRIVATE_KEY_FLAG) { _privateKeyPem = value; return PARSE_OK; } else if (name == OUTPUT_FILE_FLAG) { _outputPath = value; return PARSE_OK; } else if (name == CERT_CHAIN_COUNT_FLAG) { u_int32_t count = 0; if (!strToNum(value, count, 16)) { throw MlxDpaException("value given to cert_chain_count is not a hex number."); } _certChainCount = count; return PARSE_OK; } else if (name == LIFE_CYCLE_PRIORITY_FLAG) { _priority = CertStructHeader::ToStructPriority(value); if (_priority == CertStructHeader::StructPriority::Unknown) { throw MlxDpaException("Unknown life-cycle priority given."); } return PARSE_OK; } else if (name == KEYPAIR_UUID_FLAG) { _keypairUUIDSpecified = true; if (!ParseUUID(value, _keypairUUID)) { throw MlxDpaException("Unknown key-pair uuid format given."); } return PARSE_OK; } else if (name == CERT_UUID_FLAG) { _certUUIDSpecified = true; if (!ParseUUID(value, _certUUID)) { throw MlxDpaException("Unknown cert uuid format given."); } return PARSE_OK; } else if (name == CERT_CONTAINER_FLAG) { _certContainerPath = value; return PARSE_OK; } else if (name == CERT_CONTAINER_TYPE_FLAG) { _certContainerType = ToContainerType(value); if (_certContainerType == UnknownType) { throw MlxDpaException("Unknown certificate container type provided."); } return PARSE_OK; } else if (name == REMOVE_ALL_CERTS_FLAG) { _removeAllCertsSpecified = true; _removeAllCerts = true; if (_certContainerType != RemoveCert) { throw MlxDpaException("remove_all_certs can be provided only with containter type \"remove\"."); } return PARSE_OK; } return PARSE_ERROR; } bool MlxDpa::ParseAndFindCommand(int argc, char** argv) { // first argument is tool name if (argc == 1) { throw MlxDpaException("No commands or flags have been specified."); } // a command must be specified as the last argument for (int i = 1; i < argc - 1; ++i) { if (_cmdStringToEnum.find(argv[i]) != _cmdStringToEnum.end()) { throw MlxDpaException("Commands must be specified at the end of the CLI."); } } auto lastArg = _cmdStringToEnum.find(argv[argc - 1]); if (lastArg != _cmdStringToEnum.end()) { _command = lastArg->second; return true; } return false; } void MlxDpa::ParamValidate() { if (_command == SignDPAApps) { if (_hostELFPath.empty()) { throw MlxDpaException("path to Host ELF must be specified to sign DPA apps."); } if (_certificatePath.empty()) { throw MlxDpaException("path to OEM certificate chain must be specified to sign DPA apps."); } if (_privateKeyPem.empty()) { throw MlxDpaException("Must provide private key."); } } else if (_command == CreateDPACertContainer) { if (_priority == CertStructHeader::StructPriority::Unknown) { throw MlxDpaException("Valid priority must be specified to create certificte container."); } if (_outputPath.empty()) { throw MlxDpaException("Output file path must be specified to create certificte container."); } if (_certContainerType == AddCert) { if (_certificatePath.empty()) { throw MlxDpaException("Path to a certificate must be specified to create certificte container."); } struct stat stat_buf; int rc = stat(_certificatePath.c_str(), &stat_buf); if (rc) { throw MlxDpaException("Couldn't open %s, %s.", _certificatePath.c_str(), strerror(errno)); } if (stat_buf.st_size >= 1792) // FW limitation of certs is less than 1792 { throw MlxDpaException("Certificate size limited to less than 1792 bytes."); } } if (_certContainerType == RemoveCert) { if (!_removeAllCertsSpecified && !_certUUIDSpecified) { throw MlxDpaException( "must provide cert_uuid or remove_all_certs to create remove certificate cotainer."); } } } else if (_command == SignDPACertContainer) { if (_priority == CertStructHeader::StructPriority::Unknown) { throw MlxDpaException("Valid priority must be specified to sign a certificte container."); } if (!_keypairUUIDSpecified) { throw MlxDpaException("Keypair UUID must be specified to create certificte container."); } if (_privateKeyPem.empty()) { throw MlxDpaException("Must provide private key."); } if (_certContainerPath.empty()) { throw MlxDpaException("Must provide path to the certificate container to sign."); } if (_outputPath.empty()) { throw MlxDpaException("Output file path must be specified to create certificte container."); } } else if (_command == Unknown) { throw MlxDpaException("Please specify a command."); } } ParseStatus MlxDpa::ParseCommandLine(int argc, char** argv) { ParseStatus rc = PARSE_OK; if (ParseAndFindCommand(argc, argv)) { argc--; } rc = _cmdParser.ParseOptions(argc, argv); if (rc == PARSE_OK_WITH_EXIT) { return rc; } else if (rc == PARSE_ERROR) { PrintHelp(); throw MlxDpaException("Failed to parse arguments. %s", _cmdParser.GetErrDesc()); } ParamValidate(); return rc; } /********************************************************************************************************************/ /* */ /* tool logic */ /* */ /********************************************************************************************************************/ MlxDpa::CertContainerType MlxDpa::ToContainerType(string type) { mft_utils::to_lowercase(type); if (type == "add") { return CertContainerType::AddCert; } else if (type == "remove") { return CertContainerType::RemoveCert; } else { return CertContainerType::UnknownType; } } unique_ptr MlxDpa::CreateSigner(string privateKeyPem, string keyLabel) { unique_ptr signer = nullptr; #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) signer = unique_ptr(new MlxSign::MlxSignRSAViaOpenssl(privateKeyPem)); if (signer != nullptr && signer->Init() != MlxSign::MLX_SIGN_SUCCESS) { throw MlxDpaException("failed to create signer."); } #else throw MlxDpaException("mstdpa sign is not supported."); #endif return signer; } vector MlxDpa::GetCertContainer(CertContainerType type) { vector container; if (type == AddCert) { container.push_back(CertContainerItem(_priority, new CACertMetaData(_certUUID, _keypairUUID))); container.push_back(CertContainerItem(_priority, new CACert(_certificatePath))); } else if (type == RemoveCert) { container.push_back(CertContainerItem(_priority, new CACertRemove(_certUUID, _keypairUUID, _removeAllCerts))); } else { throw MlxDpaException("Unsupported command for container creation."); } return container; } void MlxDpa::CreateCertContainer() { vector serializedContainer; vector container = GetCertContainer(_certContainerType); const string X = "CERTIFICATE.BIN!"; serializedContainer.insert(end(serializedContainer), begin(X), end(X)); for (auto item : container) { vector serializedItem = item.Serialize(true); serializedContainer.insert(end(serializedContainer), begin(serializedItem), end(serializedItem)); } ofstream certContainer(_outputPath, std::ios::binary); certContainer.write((char*)serializedContainer.data(), serializedContainer.size()); cout << "Certificate container created successfully!" << endl; } void MlxDpa::SignCertContainer() { unique_ptr signer = CreateSigner(_privateKeyPem, _keyLabel); std::fstream certContainerFile(_certContainerPath, ios::in | ios::out | std::ios::binary); if ((certContainerFile.rdstate() & std::ifstream::failbit) != 0) { throw MlxDpaException("Error opening '%s'", _certContainerPath.c_str()); } vector certContainer((std::istreambuf_iterator(certContainerFile)), std::istreambuf_iterator()); if (certContainer.size() < CERT_CONTAINER_FINGERPRINT.size() + CertStructHeader::HEADER_SIZE + CertStructBase::METADATA_SIZE) { throw MlxDpaException("Invalid certificate container."); } if (strncmp( (const char*)certContainer.data(), CERT_CONTAINER_FINGERPRINT.c_str(), CERT_CONTAINER_FINGERPRINT.size()) != 0) { throw MlxDpaException("Invalid certificate container."); } vector::iterator containerIter = certContainer.begin() + CERT_CONTAINER_FINGERPRINT.size(); CertStructHeader metadataHeader; if (!metadataHeader.Deserialize(containerIter, containerIter + CertStructHeader::HEADER_SIZE)) { throw MlxDpaException("Invalid header size in given container."); } containerIter += CertStructHeader::HEADER_SIZE; CPUTOn(_keypairUUID, sizeof(_keypairUUID) / 4); if (metadataHeader.GetType() == CertStructHeader::StructType::CacertMetadata) { if (!_certUUIDSpecified) { throw MlxDpaException("Cert UUID must be specified to create certificte container."); } CPUTOn(_certUUID, sizeof(_certUUID) / 4); memcpy(&(*containerIter), _certUUID, sizeof(_certUUID)); containerIter += sizeof(_certUUID); containerIter += 4; memcpy(&(*containerIter), _keypairUUID, sizeof(_keypairUUID)); } else if (metadataHeader.GetType() == CertStructHeader::StructType::CacertRemove) { containerIter += sizeof(_certUUID); memcpy(&(*containerIter), _keypairUUID, sizeof(_keypairUUID)); } else { throw MlxDpaException("Invalid certificate container, unknown header type."); } vector signature; MlxSign::ErrorCode rc = signer->Sign(certContainer, signature); if (rc != MlxSign::MLX_SIGN_SUCCESS) { throw MlxDpaException("Signing certificate container failed with error %#x.", rc); } CertContainerItem signatureItem(_priority, new CertStructSignature(signature)); vector serializedItem = signatureItem.Serialize(true); certContainer.insert(end(certContainer), begin(serializedItem), end(serializedItem)); ofstream signedCertContainer(_outputPath, std::ios::binary); signedCertContainer.write((char*)certContainer.data(), certContainer.size()); cout << "Certificate container signed successfully!" << endl; } void MlxDpa::SignHostElf() { const u_int32_t ALIGNMENT = 4; HostElf hostElf(_hostELFPath, _outputPath); CryptoDataSection::CertChain certChain; unique_ptr signer = CreateSigner(_privateKeyPem, _keyLabel); vector dpaAppsList = hostElf.GetListOfDpaApps(); certChain.AddCertificates(_certificatePath); certChain.SetCount(_certChainCount); for (auto app : dpaAppsList) { CryptoDataSection cryptoDataSection(certChain); vector dpaAppElf = hostElf.GetDpaApp(*app); MLX_DPA_DPRINTF(("Generating Hash List for %s.\n", app->name)); cryptoDataSection.GenerateHashListFromELF(dpaAppElf); cryptoDataSection.Sign(*signer); vector cryptoDataSectionByteStream = cryptoDataSection.Serialize(); CPUTOn(cryptoDataSectionByteStream.data(), cryptoDataSectionByteStream.size() / 4); // Converting crypto data blob to bin-endian // Add padding if required, after crypto data blob is converted to big-endian if (cryptoDataSectionByteStream.size() % ALIGNMENT) { u_int32_t paddingSize = ALIGNMENT - (cryptoDataSectionByteStream.size() % ALIGNMENT); cryptoDataSectionByteStream.resize(cryptoDataSectionByteStream.size() + paddingSize, 0xff); } // remove preexisting section to avoid collision string sigSectionName = "sig_" + string(app->name); hostElf.RemoveSection(sigSectionName); hostElf.AddSection(sigSectionName, cryptoDataSectionByteStream); // invoke 3rd party function to update metadata in host elf output file FILE* outHostELF = fopen(_outputPath.c_str(), "r+"); if (outHostELF == NULL) { throw MlxDpaException("Failed to open Host ELF file with error: %s", strerror(errno)); } if (updateSigSectionName(outHostELF, app->name, (char*)sigSectionName.c_str())) { throw MlxDpaException("Failed to update signature section name in metadata for %s.\n", app->name); } } cout << _outputPath << " was signed successfully." << endl; } void MlxDpa::Run(int argc, char** argv) { if (ParseCommandLine(argc, argv) != PARSE_OK) { return; } switch (_command) { case SignDPAApps: SignHostElf(); break; case CreateDPACertContainer: CreateCertContainer(); break; case SignDPACertContainer: SignCertContainer(); break; default: throw MlxDpaException("Unknown command code %d", _command); } } int main(int argc, char** argv) { try { MlxDpa mlxDpa; mlxDpa.Run(argc, argv); } catch (const MlxDpaException& ex) { cerr << "-E- " << ex.what() << endl; return 1; } catch (const std::exception& ex) { cerr << "-E- General Exception: " << ex.what() << endl; return 1; } return 0; }mstflint-4.26.0/mlxdpa/hostelf.cpp0000755000175000017500000000575714522641732017361 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include #include #include #include "hostelf.h" #include "mlxdpa_utils.h" HostElf::HostElf(string path, string outputPath) : _filePath(path), _outputPath(outputPath) { ifstream hostElf(_filePath, std::ios::binary); _data.assign(std::istreambuf_iterator(hostElf), std::istreambuf_iterator()); const char elfMagicNumber[5] = {0x7f, 0x45, 0x4c, 0x46, 0x0}; if (_data.size() < 4 || string(_data.begin(), _data.begin() + 4).compare(elfMagicNumber) != 0) { throw MlxDpaException("Provided Host ELF is not an ELF file."); } FILE* hostELF = fopen(_filePath.c_str(), "r"); if (hostELF == NULL) { throw MlxDpaException("Failed to open Host ELF file with error: %s", strerror(errno)); } // TODO should i release resources in _dpaAppsTable? _dpaAppsTable = getAppList(hostELF); if (_outputPath.empty()) { _outputPath = _filePath; } else { string cmd("cp " + _filePath + " " + _outputPath); RunCommand(cmd, "Failed to create output file"); } fclose(hostELF); } vector HostElf::GetListOfDpaApps() { vector apps; AppHandle* handle = _dpaAppsTable.table; for (uint64_t i = 0; i < _dpaAppsTable.count; i++) { apps.push_back(handle); handle++; } return apps; } vector HostElf::GetDpaApp(const AppHandle& app) { auto dpaAppBegin = _data.begin() + app.offset; auto dpaAppEnd = dpaAppBegin + app.size; return vector(dpaAppBegin, dpaAppEnd); } void HostElf::AddSection(string sectionName, const vector& section) { ofstream sectionFile; string sectionFilePath = OpenTempFile("/tmp", sectionFile); if (!sectionFile.is_open()) { throw MlxDpaException("Failed writing to disk."); } for (const auto& byte : section) { sectionFile << byte; } sectionFile.close(); string cmd("objcopy --add-section " + sectionName + "=" + sectionFilePath + " --set-section-flags " + sectionName + "=noload,readonly " + _outputPath + " " + _outputPath); RunCommand(cmd, "Failed to add section to Host ELF"); if (remove(sectionFilePath.c_str()) != 0) { throw MlxDpaException("Failed to delete temp file with error: %s", strerror(errno)); } } void HostElf::RemoveSection(string sectionName) { string cmd("objcopy --remove-section " + sectionName + " " + _outputPath); RunCommand(cmd, "Failed to remove section from Host ELF"); }mstflint-4.26.0/mlxdpa/cryptodata.cpp0000755000175000017500000002421714522641732020057 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include #include #include "elfio/elfio.hpp" #include "mlxdpa_utils.h" #include "cryptodata.h" #include "mlxsign_lib.h" /********************************************************************************************************************/ /* */ /* CryptoDataSection::HashListTable */ /* */ /********************************************************************************************************************/ CryptoDataSection::HashListTable::HashListTable() : _magicPattern{'H', 'S', 'A', 'H', 'T', 'S', 'I', 'L'}, // magic-pattern will be converted to "HASHLIST" once swapped to big-endian _numOfSegments(0), _numOfSections(0) { memset(&_reserved, 0xff, sizeof(_reserved)); memset(&_reserved2, 0xff, sizeof(_reserved2)); } void CryptoDataSection::HashListTable::AddHash(EntryType type, const vector& data) { MlxSignSHA256 mlxSignSHA; mlxSignSHA << data; vector sha; mlxSignSHA.getDigest(sha); CPUTOn(sha.data(), sha.size() / 4); // Converting SHA (which is big-endian) to platform endianness switch (type) { case EntryType::dpaApp: _dpaAppElfHash = sha; break; case EntryType::elfHeader: _elfHeaderHash = sha; break; case EntryType::programHeaders: _programHeadersHash = sha; break; case EntryType::programData: _programsHashes.push_back(sha); _numOfSegments++; break; case EntryType::sectionHeaders: _sectionHeadersHash = sha; break; case EntryType::sectionData: _sectionsHashes.push_back(sha); _numOfSections++; break; default: throw MlxDpaException("Unknown hash entry type"); break; } } vector CryptoDataSection::HashListTable::Serialize() { vector rawData; rawData.insert(rawData.end(), begin(_magicPattern), end(_magicPattern)); rawData.push_back(_numOfSegments); rawData.insert(rawData.end(), begin(_reserved), end(_reserved)); rawData.push_back(_numOfSections); rawData.insert(rawData.end(), begin(_reserved2), end(_reserved2)); rawData.insert(end(rawData), begin(_dpaAppElfHash), end(_dpaAppElfHash)); rawData.insert(end(rawData), begin(_elfHeaderHash), end(_elfHeaderHash)); rawData.insert(end(rawData), begin(_programHeadersHash), end(_programHeadersHash)); for (auto hash : _programsHashes) { rawData.insert(end(rawData), begin(hash), end(hash)); } rawData.insert(end(rawData), begin(_sectionHeadersHash), end(_sectionHeadersHash)); for (auto hash : _sectionsHashes) { rawData.insert(end(rawData), begin(hash), end(hash)); } return rawData; } /********************************************************************************************************************/ /* */ /* CertChain */ /* */ /********************************************************************************************************************/ CryptoDataSection::CertChain::CertChain() : _metadata{Unknown, 0, sizeof(_metadata), 0xff, 0xffffffff, 0, 0xffff} {} vector CryptoDataSection::CertChain::Serialize() { vector rawData; rawData.insert(rawData.end(), (u_int8_t*)&_metadata, ((u_int8_t*)&_metadata) + sizeof(_metadata)); rawData.insert(rawData.end(), _certificates.begin(), _certificates.end()); return rawData; } void CryptoDataSection::CertChain::AddCertificate(vector certificate) { _certificates.insert(_certificates.end(), certificate.cbegin(), certificate.cend()); _metadata.count++; _metadata.length += certificate.size(); _metadata.type = ThirdPartyCodeAuthentication; Crc16 crc; u_int32_t firstDWord = _metadata.type; firstDWord |= _metadata.count << 4; firstDWord |= _metadata.length << 16; // crc is calculated on the first two dwords crc.add(firstDWord); crc.add(_metadata.reserved); crc.finish(); _metadata.crc = crc.get(); } void CryptoDataSection::CertChain::AddCertificates(string path) { try { vector cert = ReadFromFile(path); CPUTOn(cert.data(), cert.size() / 4); // Converting certificate (which is big-endian) to platform endianness // TODO validate certificate // openssl x509 -inform der -in .\leaf.cert.cer -outform pem | openssl verify -CAfile CA/ca.crt AddCertificate(cert); } catch (...) { throw MlxDpaException("Failed reading certificate chain file %s.", path.c_str()); } } /********************************************************************************************************************/ /* */ /* CryptoDataSection */ /* */ /********************************************************************************************************************/ CryptoDataSection::CryptoDataSection(CertChain certChain) { memset(&_metadata, 0x0, sizeof(_metadata)); // TODO - temp until we have a definition on how to set metadata fields _metadata._signatureType = (u_int32_t)SignatureType::None; _certChain = certChain; } vector CryptoDataSection::Serialize() { vector cryptoDataBlob; vector serializedData; cryptoDataBlob.insert(cryptoDataBlob.end(), (u_int8_t*)&_metadata, ((u_int8_t*)&_metadata) + sizeof(_metadata)); serializedData = _hashList.Serialize(); cryptoDataBlob.insert(cryptoDataBlob.end(), serializedData.cbegin(), serializedData.cend()); cryptoDataBlob.insert(cryptoDataBlob.end(), _cryptoSignature.cbegin(), _cryptoSignature.cend()); serializedData = _certChain.Serialize(); cryptoDataBlob.insert(cryptoDataBlob.end(), serializedData.cbegin(), serializedData.cend()); return cryptoDataBlob; } void CryptoDataSection::GenerateHashListFromELF(const vector& elf) { ELFIO::elfio reader; stringstream ioss; std::copy(elf.cbegin(), elf.cend(), ostream_iterator(ioss)); if (!reader.load(ioss)) { throw MlxDpaException("Failed loading DPA app ELF"); } _hashList.AddHash(HashListTable::EntryType::dpaApp, elf); vector data(elf.cbegin(), elf.cbegin() + reader.get_header_size()); _hashList.AddHash(HashListTable::EntryType::elfHeader, data); // program(segment) headers consists of number of entries, one after the other. // each header points to the segment data in the file. auto programHeaderIter = elf.cbegin() + reader.get_segments_offset(); // reader.segments.size() is number of segments entries auto programHeaderSize = reader.segments.size() * reader.get_segment_entry_size(); data.assign(programHeaderIter, programHeaderIter + programHeaderSize); _hashList.AddHash(HashListTable::EntryType::programHeaders, data); // segments list contains segments data (not headers) for (auto it = reader.segments.begin(); it < reader.segments.end(); ++it) { data.assign((*it)->get_data(), (*it)->get_data() + (*it)->get_file_size()); _hashList.AddHash(HashListTable::EntryType::programData, data); } // section headers consists of number of entries, one after the other. // each header points to the section data in the file, if exists. auto sectionHeaderIter = elf.cbegin() + reader.get_sections_offset(); // reader.sections.size() is number of sections entries auto sectionHeaderSize = reader.sections.size() * reader.get_section_entry_size(); data.assign(sectionHeaderIter, sectionHeaderIter + sectionHeaderSize); _hashList.AddHash(HashListTable::EntryType::sectionHeaders, data); // sections list contains segments data (not headers) for (auto it = reader.sections.begin(); it < reader.sections.end(); ++it) { if ((*it)->get_data() != nullptr) { data.assign((*it)->get_data(), (*it)->get_data() + (*it)->get_size()); _hashList.AddHash(HashListTable::EntryType::sectionData, data); } } } void CryptoDataSection::Sign(const MlxSign::Signer& signer) { vector hashListBytes = _hashList.Serialize(); vector dataForSign(sizeof(_metadata), 0); _metadata._signatureType = (u_int32_t)SignatureType::RsaSha512; memcpy(dataForSign.data(), &_metadata, sizeof(_metadata)); dataForSign.insert(end(dataForSign), begin(hashListBytes), end(hashListBytes)); CPUTOn( dataForSign.data(), dataForSign.size() / 4); // Converting data for sign to big-endian, since eventually we'll deliver this data as BE if (signer.Sign(dataForSign, _cryptoSignature) != MlxSign::MLX_SIGN_SUCCESS) { throw MlxDpaException("Signing Host ELF failed."); } CPUTOn(_cryptoSignature.data(), _cryptoSignature.size() / 4); // Converting signature (which is big-endian) to platform endianness }mstflint-4.26.0/mlxdpa/Makefile.am0000755000175000017500000000562114522641732017233 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONFIG_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxsign_lib XML_FLAGS = -DUSE_XML -DLIBXML_STATIC AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) $(XML_FLAGS) noinst_LIBRARIES = libmstdpa.a libmstdpa_a_SOURCES = \ certcontainerbase.cpp \ certcontainerbase.h \ certcontainerimp.cpp \ certcontainerimp.h libmstdpa_a_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) $(XML_FLAGS) libmstdpa_a_DEPENDENCIES = $(top_builddir)/mft_utils/libmftutils.la libmstdpa_a_LIBADD = $(libmstdpa_a_DEPENDENCIES) bin_PROGRAMS = mstdpa mstdpa_SOURCES = \ certcontainerbase.cpp \ certcontainerbase.h \ certcontainerimp.cpp \ certcontainerimp.h \ cryptodata.cpp \ cryptodata.h \ hostelf.cpp \ hostelf.h \ mlxdpa.cpp \ mlxdpa.h \ mlxdpa_utils.cpp \ mlxdpa_utils.h mstdpa_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) $(XML_FLAGS) mstdpa_LDADD = \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mlxsign_lib/libmlxsign.la \ $(top_builddir)/mft_utils/libmftutils.la # these are precompiled if ARM64_BUILD mstdpa_LDADD += $(srcdir)/dpa_elf/arm64/libdpa_elf endif if X86_64_BUILD mstdpa_LDADD += $(srcdir)/dpa_elf/x86_64/libdpa_elf endif if ENABLE_OPENSSL mstdpa_LDADD += -lcrypto -lssl else mstdpa_CXXFLAGS += -DNO_OPEN_SSL endif mstflint-4.26.0/mlxdpa/certcontainerimp.cpp0000755000175000017500000000452414522641732021252 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include "certcontainerimp.h" #include "mlxdpa_utils.h" #include CACertMetaData::CACertMetaData(u_int32_t certUUID[4], u_int32_t keypairUUID[4]) : _dpaRotEn(1) { memcpy(&_certUUID, certUUID, 16); memcpy(&_keypairUUID, keypairUUID, 16); } vector CACertMetaData::Serialize() { vector serializedData(GetSize()); memcpy(serializedData.data(), _certUUID, _certUUIDSize); memcpy(serializedData.data() + GetSize() - _keypairUUIDSize, _keypairUUID, _keypairUUIDSize); serializedData[0x12] |= (_dpaRotEn << 5); // dpa_rot_en is bit 21 at offset 0x10 -> byte 0x12, bit 5 return serializedData; } void CACertMetaData::Deserialize(vector buf) { memcpy(_certUUID, buf.data(), _certUUIDSize); memcpy(_keypairUUID, buf.data() + GetSize() - _keypairUUIDSize, _keypairUUIDSize); _dpaRotEn = (buf[12] >> 5) & 0x1; } CACertRemove::CACertRemove(u_int32_t certUUID[4], u_int32_t keypairUUID[4], bool removeAll) : _removeAll(removeAll) { memcpy(_certUUID, certUUID, 16); memcpy(_keypairUUID, keypairUUID, 16); } vector CACertRemove::Serialize() { vector serializedData(GetSize()); memcpy(serializedData.data(), _certUUID, _certUUIDSize); memcpy(serializedData.data() + _certUUIDSize, _keypairUUID, _keypairUUIDSize); serializedData[32] |= (_removeAll ? 1 : 0); return serializedData; } void CACertRemove::Deserialize(vector buf) { memcpy(_certUUID, buf.data(), _certUUIDSize); memcpy(_keypairUUID, buf.data() + _certUUIDSize, _keypairUUIDSize); _removeAll = buf[32] & 1; } CACert::CACert(string certPath) { const u_int32_t ALIGNMENT = 4; _cert = ReadFromFile(certPath); if (_cert.size() % ALIGNMENT) { u_int32_t paddingSize = ALIGNMENT - (_cert.size() % ALIGNMENT); _cert.resize(_cert.size() + paddingSize, 0x0); } } mstflint-4.26.0/mlxdpa/mlxdpa_utils.cpp0000755000175000017500000000773514522641732020420 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include "mlxdpa_utils.h" #include #include #include #include #include #include #include "compatibility.h" void RunCommand(string cmd, string errorMsg) { MLX_DPA_DPRINTF(("Running command: %s\n", cmd.c_str())); int status = system(cmd.c_str()); if (WIFEXITED(status)) { MLX_DPA_DPRINTF(("Running command %s exited with status: %d\n", cmd.c_str(), WEXITSTATUS(status))); } else { MLX_DPA_DPRINTF(("Running command %s exited with signal no: %d\n", cmd.c_str(), WTERMSIG(status))); throw MlxDpaException(errorMsg.c_str()); } } string OpenTempFile(string path, ofstream& f) { path += "/XXXXXX"; vector dst_path(path.begin(), path.end()); dst_path.push_back('\0'); int fd = mkstemp(dst_path.data()); if (fd == -1) { throw MlxDpaException("Failed to create file with error: %s", strerror(errno)); } path.assign(dst_path.begin(), dst_path.end() - 1); f.open(path.c_str(), ios_base::trunc | ios_base::out); close(fd); return path; } vector ReadFromFile(string filename) { // open the file: std::ifstream file(filename, std::ios::binary); if ((file.rdstate() & std::ifstream::failbit) != 0) { fprintf(stderr, "Error opening '%s'\n", filename.c_str()); exit(1); } // read the data: return vector((std::istreambuf_iterator(file)), std::istreambuf_iterator()); } bool strToNum(const string& str, u_int32_t& num, int base) { char* endp; char* numStr = strcpy(new char[str.size() + 1], str.c_str()); num = strtoul(numStr, &endp, base); if (*endp) { delete[] numStr; return false; } delete[] numStr; // check errno if (errno == ERANGE) { return false; } return true; } bool ParseUUID(string uuidStr, u_int32_t uuid[]) { uuidStr.erase(std::remove(begin(uuidStr), end(uuidStr), '-'), end(uuidStr)); // erase-remove idiom if (uuidStr.length() != 32) { return false; } for (u_int32_t i = 0; i < 32; i += 8) { string str = uuidStr.substr(i, 8); if (!strToNum(str, uuid[i / 8], 16)) { return false; } } return true; } void Crc16::operator<<(std::vector v) { if (v.size() % 4) { fprintf(stderr, "Internal error: Image section size should be 4-bytes aligned"); exit(1); } for (u_int32_t i = 0; i < v.size(); i += 4) { u_int32_t dw_be = __cpu_to_be32(*((u_int32_t*)(&v[i]))); add(dw_be); } } void Crc16::add(u_int32_t o) { if (_debug) { printf("Crc16::add(%08x)\n", o); } for (int i = 0; i < 32; i++) { if (_crc & 0x8000) { _crc = (((_crc << 1) | (o >> 31)) ^ 0x100b) & 0xffff; } else { _crc = ((_crc << 1) | (o >> 31)) & 0xffff; } o = (o << 1) & 0xffffffff; } } void Crc16::finish() { for (int i = 0; i < 16; i++) { if (_crc & 0x8000) { _crc = ((_crc << 1) ^ 0x100b) & 0xffff; } else { _crc = (_crc << 1) & 0xffff; } } // Revert 16 low bits _crc = _crc ^ 0xffff; } MlxDpaException::MlxDpaException(const char* fmt, ...) { const unsigned int max = 1024; char tmp[max]; va_list args; va_start(args, fmt); vsnprintf(tmp, max, fmt, args); va_end(args); _err = tmp; }mstflint-4.26.0/mlxdpa/certcontainerbase.cpp0000755000175000017500000001032614522641732021374 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. * * This software product is a proprietary product of Nvidia Corporation and its affiliates * (the "Company") and all right, title, and interest in and to the software * product, including all associated intellectual property rights, are and * shall remain exclusively with the Company. * * This software product is governed by the End User License Agreement * provided with the software product. */ #include "certcontainerbase.h" #include "mlxdpa_utils.h" #include #include CertStructHeader::CertStructHeader() : _length(HEADER_SIZE), _type(StructType::Unknown), _version(0), _priority(StructPriority::Unknown), _valid(0), _securityMethod(StructSecurityMethod::None), _crc(0x0) { } CertStructHeader::CertStructHeader(StructPriority priority, StructType type, u_int16_t structLength) : _length(HEADER_SIZE + structLength), _type(type), _version(0), _priority(priority), _valid(0b10), _securityMethod(StructSecurityMethod::None), _crc(0x0) { switch (_type) { case StructType::CertificateX509: case StructType::CacertMetadata: case StructType::Cacert: case StructType::CertChainMetadata: case StructType::CacertRemove: case StructType::CertChainRemove: _securityMethod = StructSecurityMethod::Crc16OfHeaderAndData; break; case StructType::Signature: _securityMethod = StructSecurityMethod::Crc16OfHeader; break; default: _securityMethod = StructSecurityMethod::None; } } vector CertStructHeader::Serialize() { vector serializedData(HEADER_SIZE, 0x0); serializedData[0] = ((u_int8_t*)&_length)[0]; serializedData[1] = ((u_int8_t*)&_length)[1]; serializedData[2] = (u_int8_t)_type; serializedData[3] = _version; serializedData[3] |= ((u_int8_t)_priority << 4); serializedData[3] |= (_valid << 6); serializedData[7] = ((u_int8_t)_securityMethod << 4); serializedData[8] = ((u_int8_t*)&_crc)[0]; serializedData[9] = ((u_int8_t*)&_crc)[1]; return serializedData; } bool CertStructHeader::Deserialize(vector::const_iterator begin, vector::const_iterator end) { if (end - begin != HEADER_SIZE) { return false; } _version = (*begin & 0x0F); _priority = CertStructHeader::StructPriority((*begin >> 4) & 0x03); _valid = ((*begin >> 6) & 0x03); begin++; _type = CertStructHeader::StructType(*begin); begin++; _length = *(reinterpret_cast(&(*begin))); begin += 2; _securityMethod = CertStructHeader::StructSecurityMethod((*begin >> 4) & 0x0F); begin += 4; _crc = *(reinterpret_cast(&(*begin))); return true; } bool CertStructHeader::Deserialize(vector header) { return Deserialize(header.cbegin(), header.cend()); } CertStructHeader::StructPriority CertStructHeader::ToStructPriority(string priority) { mft_utils::to_lowercase(priority); if (priority == "user") { return StructPriority::User; } else if (priority == "vendor" || priority == "oem") { return StructPriority::Vendor; } else if (priority == "nvidia") { return StructPriority::Nvidia; } else { return StructPriority::Unknown; } } CertContainerItem::CertContainerItem(CertStructHeader::StructPriority priority, CertStructBase* data) : _header(priority, data->GetType(), data->GetSize()), _struct(data) { } vector CertContainerItem::Serialize(bool toBigEndian) { vector serializedData = _header.Serialize(); vector structData = _struct->Serialize(); if (toBigEndian) { CPUTOn(serializedData.data(), serializedData.size() / 4); if (_struct->GetType() != CertStructHeader::StructType::Signature && _struct->GetType() != CertStructHeader::StructType::CertificateX509) { CPUTOn(structData.data(), structData.size() / 4); } } serializedData.insert(serializedData.end(), structData.cbegin(), structData.cend()); return serializedData; } mstflint-4.26.0/mlxdpa/elfio/0000755000175000017500000000000014522641732016266 5ustar tzafrirctzafrircmstflint-4.26.0/mlxdpa/elfio/elfio_versym.hpp0000755000175000017500000001417314522641732021513 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_VERSYM_HPP #define ELFIO_VERSYM_HPP namespace ELFIO { //------------------------------------------------------------------------------ template class versym_section_accessor_template { public: //------------------------------------------------------------------------------ versym_section_accessor_template( S* section ) : versym_section( section ) { if ( section ) { entries_num = section->get_size() / sizeof( Elf_Half ); } } //------------------------------------------------------------------------------ Elf_Word get_entries_num() const { if ( versym_section ) { return entries_num; } return 0; } //------------------------------------------------------------------------------ bool get_entry( Elf_Word no, Elf_Half& value ) const { if ( versym_section && ( no < get_entries_num() ) ) { value = ( (Elf_Half*)versym_section->get_data() )[no]; return true; } return false; } //------------------------------------------------------------------------------ bool modify_entry( Elf_Word no, Elf_Half value ) { if ( versym_section && ( no < get_entries_num() ) ) { ( (Elf_Half*)versym_section->get_data() )[no] = value; return true; } return false; } //------------------------------------------------------------------------------ bool add_entry( Elf_Half value ) { if ( !versym_section ) { return false; } versym_section->append_data( (const char*)&value, sizeof( Elf_Half ) ); ++entries_num; return true; } //------------------------------------------------------------------------------ private: S* versym_section; Elf_Word entries_num; }; using versym_section_accessor = versym_section_accessor_template
; using const_versym_section_accessor = versym_section_accessor_template; //------------------------------------------------------------------------------ template class versym_r_section_accessor_template { public: //------------------------------------------------------------------------------ versym_r_section_accessor_template( const elfio& elf_file, S* versym_r_section ) : elf_file( elf_file ), versym_r_section( versym_r_section ), entries_num( 0 ) { // Find .dynamic section const section* dynamic_section = elf_file.sections[".dynamic"]; if ( dynamic_section == nullptr ) { return; } const_dynamic_section_accessor dynamic_section_acc( elf_file, dynamic_section ); Elf_Xword dyn_sec_num = dynamic_section_acc.get_entries_num(); for ( Elf_Xword i = 0; i < dyn_sec_num; ++i ) { Elf_Xword tag; Elf_Xword value; std::string str; if ( dynamic_section_acc.get_entry( i, tag, value, str ) && tag == DT_VERNEEDNUM ) { entries_num = value; break; } } } //------------------------------------------------------------------------------ Elf_Word get_entries_num() const { return entries_num; } //------------------------------------------------------------------------------ bool get_entry( Elf_Word no, Elf_Half& version, std::string& file_name, Elf_Word& hash, Elf_Half& flags, Elf_Half& other, std::string& dep_name ) const { if ( versym_r_section == nullptr || ( no >= get_entries_num() ) ) { return false; } const_string_section_accessor string_section_acc( elf_file.sections[versym_r_section->get_link()] ); Elfxx_Verneed* verneed = (Elfxx_Verneed*)versym_r_section->get_data(); Elfxx_Vernaux* veraux = (Elfxx_Vernaux*)( (char*)verneed + verneed->vn_aux ); for ( Elf_Word i = 0; i < no; ++i ) { verneed = (Elfxx_Verneed*)( (char*)verneed + verneed->vn_next ); veraux = (Elfxx_Vernaux*)( (char*)verneed + verneed->vn_aux ); } version = verneed->vn_version; file_name = string_section_acc.get_string( verneed->vn_file ); hash = veraux->vna_hash; flags = veraux->vna_flags; other = veraux->vna_other; dep_name = string_section_acc.get_string( veraux->vna_name ); return true; } //------------------------------------------------------------------------------ private: const elfio& elf_file; S* versym_r_section; Elf_Word entries_num; }; using versym_r_section_accessor = versym_r_section_accessor_template
; using const_versym_r_section_accessor = versym_r_section_accessor_template; } // namespace ELFIO #endif // ELFIO_VERSYM_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_segment.hpp0000755000175000017500000002076314522641732021632 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_SEGMENT_HPP #define ELFIO_SEGMENT_HPP #include #include #include #include namespace ELFIO { class segment { friend class elfio; public: virtual ~segment() = default; ELFIO_GET_ACCESS_DECL( Elf_Half, index ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, type ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, flags ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, align ); ELFIO_GET_SET_ACCESS_DECL( Elf64_Addr, virtual_address ); ELFIO_GET_SET_ACCESS_DECL( Elf64_Addr, physical_address ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, file_size ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, memory_size ); ELFIO_GET_ACCESS_DECL( Elf64_Off, offset ); virtual const char* get_data() const = 0; virtual Elf_Half add_section( section* psec, Elf_Xword addr_align ) = 0; virtual Elf_Half add_section_index( Elf_Half index, Elf_Xword addr_align ) = 0; virtual Elf_Half get_sections_num() const = 0; virtual Elf_Half get_section_index_at( Elf_Half num ) const = 0; virtual bool is_offset_initialized() const = 0; protected: ELFIO_SET_ACCESS_DECL( Elf64_Off, offset ); ELFIO_SET_ACCESS_DECL( Elf_Half, index ); virtual const std::vector& get_sections() const = 0; virtual void load( std::istream& stream, std::streampos header_offset ) = 0; virtual void save( std::ostream& stream, std::streampos header_offset, std::streampos data_offset ) = 0; }; //------------------------------------------------------------------------------ template class segment_impl : public segment { public: //------------------------------------------------------------------------------ segment_impl( const endianess_convertor* convertor, const address_translator* translator ) : index( 0 ), data( nullptr ), convertor( convertor ), translator( translator ), stream_size( 0 ), is_offset_set( false ) { std::fill_n( reinterpret_cast( &ph ), sizeof( ph ), '\0' ); } //------------------------------------------------------------------------------ ~segment_impl() override { delete[] data; } //------------------------------------------------------------------------------ // Section info functions ELFIO_GET_SET_ACCESS( Elf_Word, type, ph.p_type ); ELFIO_GET_SET_ACCESS( Elf_Word, flags, ph.p_flags ); ELFIO_GET_SET_ACCESS( Elf_Xword, align, ph.p_align ); ELFIO_GET_SET_ACCESS( Elf64_Addr, virtual_address, ph.p_vaddr ); ELFIO_GET_SET_ACCESS( Elf64_Addr, physical_address, ph.p_paddr ); ELFIO_GET_SET_ACCESS( Elf_Xword, file_size, ph.p_filesz ); ELFIO_GET_SET_ACCESS( Elf_Xword, memory_size, ph.p_memsz ); ELFIO_GET_ACCESS( Elf64_Off, offset, ph.p_offset ); //------------------------------------------------------------------------------ Elf_Half get_index() const override { return index; } //------------------------------------------------------------------------------ const char* get_data() const override { return data; } //------------------------------------------------------------------------------ Elf_Half add_section_index( Elf_Half sec_index, Elf_Xword addr_align ) override { sections.emplace_back( sec_index ); if ( addr_align > get_align() ) { set_align( addr_align ); } return (Elf_Half)sections.size(); } //------------------------------------------------------------------------------ Elf_Half add_section( section* psec, Elf_Xword addr_align ) override { return add_section_index( psec->get_index(), addr_align ); } //------------------------------------------------------------------------------ Elf_Half get_sections_num() const override { return (Elf_Half)sections.size(); } //------------------------------------------------------------------------------ Elf_Half get_section_index_at( Elf_Half num ) const override { if ( num < sections.size() ) { return sections[num]; } return Elf_Half( -1 ); } //------------------------------------------------------------------------------ protected: //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ void set_offset( Elf64_Off value ) override { ph.p_offset = value; ph.p_offset = ( *convertor )( ph.p_offset ); is_offset_set = true; } //------------------------------------------------------------------------------ bool is_offset_initialized() const override { return is_offset_set; } //------------------------------------------------------------------------------ const std::vector& get_sections() const override { return sections; } //------------------------------------------------------------------------------ void set_index( Elf_Half value ) override { index = value; } //------------------------------------------------------------------------------ void load( std::istream& stream, std::streampos header_offset ) override { if ( translator->empty() ) { stream.seekg( 0, stream.end ); set_stream_size( stream.tellg() ); } else { set_stream_size( std::numeric_limits::max() ); } stream.seekg( ( *translator )[header_offset] ); stream.read( reinterpret_cast( &ph ), sizeof( ph ) ); is_offset_set = true; if ( PT_NULL != get_type() && 0 != get_file_size() ) { stream.seekg( ( *translator )[( *convertor )( ph.p_offset )] ); Elf_Xword size = get_file_size(); if ( size > get_stream_size() ) { data = nullptr; } else { data = new ( std::nothrow ) char[size + 1]; if ( nullptr != data ) { stream.read( data, size ); data[size] = 0; } } } } //------------------------------------------------------------------------------ void save( std::ostream& stream, std::streampos header_offset, std::streampos data_offset ) override { ph.p_offset = data_offset; ph.p_offset = ( *convertor )( ph.p_offset ); adjust_stream_size( stream, header_offset ); stream.write( reinterpret_cast( &ph ), sizeof( ph ) ); } //------------------------------------------------------------------------------ size_t get_stream_size() const { return stream_size; } //------------------------------------------------------------------------------ void set_stream_size( size_t value ) { stream_size = value; } //------------------------------------------------------------------------------ private: T ph; Elf_Half index; char* data; std::vector sections; const endianess_convertor* convertor; const address_translator* translator; size_t stream_size; bool is_offset_set; }; } // namespace ELFIO #endif // ELFIO_SEGMENT_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_relocation.hpp0000755000175000017500000004134314522641732022324 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_RELOCATION_HPP #define ELFIO_RELOCATION_HPP namespace ELFIO { template struct get_sym_and_type; template <> struct get_sym_and_type { static int get_r_sym( Elf_Xword info ) { return ELF32_R_SYM( (Elf_Word)info ); } static int get_r_type( Elf_Xword info ) { return ELF32_R_TYPE( (Elf_Word)info ); } }; template <> struct get_sym_and_type { static int get_r_sym( Elf_Xword info ) { return ELF32_R_SYM( (Elf_Word)info ); } static int get_r_type( Elf_Xword info ) { return ELF32_R_TYPE( (Elf_Word)info ); } }; template <> struct get_sym_and_type { static int get_r_sym( Elf_Xword info ) { return ELF64_R_SYM( info ); } static int get_r_type( Elf_Xword info ) { return ELF64_R_TYPE( info ); } }; template <> struct get_sym_and_type { static int get_r_sym( Elf_Xword info ) { return ELF64_R_SYM( info ); } static int get_r_type( Elf_Xword info ) { return ELF64_R_TYPE( info ); } }; //------------------------------------------------------------------------------ template class relocation_section_accessor_template { public: //------------------------------------------------------------------------------ relocation_section_accessor_template( const elfio& elf_file, S* section ) : elf_file( elf_file ), relocation_section( section ) { } //------------------------------------------------------------------------------ Elf_Xword get_entries_num() const { Elf_Xword nRet = 0; if ( 0 != relocation_section->get_entry_size() ) { nRet = relocation_section->get_size() / relocation_section->get_entry_size(); } return nRet; } //------------------------------------------------------------------------------ bool get_entry( Elf_Xword index, Elf64_Addr& offset, Elf_Word& symbol, unsigned char& type, Elf_Sxword& addend ) const { if ( index >= get_entries_num() ) { // Is index valid return false; } if ( elf_file.get_class() == ELFCLASS32 ) { if ( SHT_REL == relocation_section->get_type() ) { generic_get_entry_rel( index, offset, symbol, type, addend ); } else if ( SHT_RELA == relocation_section->get_type() ) { generic_get_entry_rela( index, offset, symbol, type, addend ); } } else { if ( SHT_REL == relocation_section->get_type() ) { generic_get_entry_rel( index, offset, symbol, type, addend ); } else if ( SHT_RELA == relocation_section->get_type() ) { generic_get_entry_rela( index, offset, symbol, type, addend ); } } return true; } //------------------------------------------------------------------------------ bool get_entry( Elf_Xword index, Elf64_Addr& offset, Elf64_Addr& symbolValue, std::string& symbolName, unsigned char& type, Elf_Sxword& addend, Elf_Sxword& calcValue ) const { // Do regular job Elf_Word symbol; bool ret = get_entry( index, offset, symbol, type, addend ); // Find the symbol Elf_Xword size; unsigned char bind; unsigned char symbolType; Elf_Half section; unsigned char other; symbol_section_accessor symbols( elf_file, elf_file.sections[get_symbol_table_index()] ); ret = ret && symbols.get_symbol( symbol, symbolName, symbolValue, size, bind, symbolType, section, other ); if ( ret ) { // Was it successful? switch ( type ) { case R_386_NONE: // none calcValue = 0; break; case R_386_32: // S + A calcValue = symbolValue + addend; break; case R_386_PC32: // S + A - P calcValue = symbolValue + addend - offset; break; case R_386_GOT32: // G + A - P calcValue = 0; break; case R_386_PLT32: // L + A - P calcValue = 0; break; case R_386_COPY: // none calcValue = 0; break; case R_386_GLOB_DAT: // S case R_386_JMP_SLOT: // S calcValue = symbolValue; break; case R_386_RELATIVE: // B + A calcValue = addend; break; case R_386_GOTOFF: // S + A - GOT calcValue = 0; break; case R_386_GOTPC: // GOT + A - P calcValue = 0; break; default: // Not recognized symbol! calcValue = 0; break; } } return ret; } //------------------------------------------------------------------------------ bool set_entry( Elf_Xword index, Elf64_Addr offset, Elf_Word symbol, unsigned char type, Elf_Sxword addend ) { if ( index >= get_entries_num() ) { // Is index valid return false; } if ( elf_file.get_class() == ELFCLASS32 ) { if ( SHT_REL == relocation_section->get_type() ) { generic_set_entry_rel( index, offset, symbol, type, addend ); } else if ( SHT_RELA == relocation_section->get_type() ) { generic_set_entry_rela( index, offset, symbol, type, addend ); } } else { if ( SHT_REL == relocation_section->get_type() ) { generic_set_entry_rel( index, offset, symbol, type, addend ); } else if ( SHT_RELA == relocation_section->get_type() ) { generic_set_entry_rela( index, offset, symbol, type, addend ); } } return true; } //------------------------------------------------------------------------------ void add_entry( Elf64_Addr offset, Elf_Xword info ) { if ( elf_file.get_class() == ELFCLASS32 ) { generic_add_entry( offset, info ); } else { generic_add_entry( offset, info ); } } //------------------------------------------------------------------------------ void add_entry( Elf64_Addr offset, Elf_Word symbol, unsigned char type ) { Elf_Xword info; if ( elf_file.get_class() == ELFCLASS32 ) { info = ELF32_R_INFO( (Elf_Xword)symbol, type ); } else { info = ELF64_R_INFO( (Elf_Xword)symbol, type ); } add_entry( offset, info ); } //------------------------------------------------------------------------------ void add_entry( Elf64_Addr offset, Elf_Xword info, Elf_Sxword addend ) { if ( elf_file.get_class() == ELFCLASS32 ) { generic_add_entry( offset, info, addend ); } else { generic_add_entry( offset, info, addend ); } } //------------------------------------------------------------------------------ void add_entry( Elf64_Addr offset, Elf_Word symbol, unsigned char type, Elf_Sxword addend ) { Elf_Xword info; if ( elf_file.get_class() == ELFCLASS32 ) { info = ELF32_R_INFO( (Elf_Xword)symbol, type ); } else { info = ELF64_R_INFO( (Elf_Xword)symbol, type ); } add_entry( offset, info, addend ); } //------------------------------------------------------------------------------ void add_entry( string_section_accessor str_writer, const char* str, symbol_section_accessor sym_writer, Elf64_Addr value, Elf_Word size, unsigned char sym_info, unsigned char other, Elf_Half shndx, Elf64_Addr offset, unsigned char type ) { Elf_Word str_index = str_writer.add_string( str ); Elf_Word sym_index = sym_writer.add_symbol( str_index, value, size, sym_info, other, shndx ); add_entry( offset, sym_index, type ); } //------------------------------------------------------------------------------ void swap_symbols( Elf_Xword first, Elf_Xword second ) { Elf64_Addr offset; Elf_Word symbol; unsigned char rtype; Elf_Sxword addend; for ( Elf_Word i = 0; i < get_entries_num(); i++ ) { get_entry( i, offset, symbol, rtype, addend ); if ( symbol == first ) { set_entry( i, offset, (Elf_Word)second, rtype, addend ); } if ( symbol == second ) { set_entry( i, offset, (Elf_Word)first, rtype, addend ); } } } //------------------------------------------------------------------------------ private: //------------------------------------------------------------------------------ Elf_Half get_symbol_table_index() const { return (Elf_Half)relocation_section->get_link(); } //------------------------------------------------------------------------------ template void generic_get_entry_rel( Elf_Xword index, Elf64_Addr& offset, Elf_Word& symbol, unsigned char& type, Elf_Sxword& addend ) const { const endianess_convertor& convertor = elf_file.get_convertor(); const T* pEntry = reinterpret_cast( relocation_section->get_data() + index * relocation_section->get_entry_size() ); offset = convertor( pEntry->r_offset ); Elf_Xword tmp = convertor( pEntry->r_info ); symbol = get_sym_and_type::get_r_sym( tmp ); type = get_sym_and_type::get_r_type( tmp ); addend = 0; } //------------------------------------------------------------------------------ template void generic_get_entry_rela( Elf_Xword index, Elf64_Addr& offset, Elf_Word& symbol, unsigned char& type, Elf_Sxword& addend ) const { const endianess_convertor& convertor = elf_file.get_convertor(); const T* pEntry = reinterpret_cast( relocation_section->get_data() + index * relocation_section->get_entry_size() ); offset = convertor( pEntry->r_offset ); Elf_Xword tmp = convertor( pEntry->r_info ); symbol = get_sym_and_type::get_r_sym( tmp ); type = get_sym_and_type::get_r_type( tmp ); addend = convertor( pEntry->r_addend ); } //------------------------------------------------------------------------------ template void generic_set_entry_rel( Elf_Xword index, Elf64_Addr offset, Elf_Word symbol, unsigned char type, Elf_Sxword ) { const endianess_convertor& convertor = elf_file.get_convertor(); T* pEntry = const_cast( reinterpret_cast( relocation_section->get_data() + index * relocation_section->get_entry_size() ) ); if ( elf_file.get_class() == ELFCLASS32 ) { pEntry->r_info = ELF32_R_INFO( (Elf_Xword)symbol, type ); } else { pEntry->r_info = ELF64_R_INFO( (Elf_Xword)symbol, type ); } pEntry->r_offset = offset; pEntry->r_offset = convertor( pEntry->r_offset ); pEntry->r_info = convertor( pEntry->r_info ); } //------------------------------------------------------------------------------ template void generic_set_entry_rela( Elf_Xword index, Elf64_Addr offset, Elf_Word symbol, unsigned char type, Elf_Sxword addend ) { const endianess_convertor& convertor = elf_file.get_convertor(); T* pEntry = const_cast( reinterpret_cast( relocation_section->get_data() + index * relocation_section->get_entry_size() ) ); if ( elf_file.get_class() == ELFCLASS32 ) { pEntry->r_info = ELF32_R_INFO( (Elf_Xword)symbol, type ); } else { pEntry->r_info = ELF64_R_INFO( (Elf_Xword)symbol, type ); } pEntry->r_offset = offset; pEntry->r_addend = addend; pEntry->r_offset = convertor( pEntry->r_offset ); pEntry->r_info = convertor( pEntry->r_info ); pEntry->r_addend = convertor( pEntry->r_addend ); } //------------------------------------------------------------------------------ template void generic_add_entry( Elf64_Addr offset, Elf_Xword info ) { const endianess_convertor& convertor = elf_file.get_convertor(); T entry; entry.r_offset = offset; entry.r_info = info; entry.r_offset = convertor( entry.r_offset ); entry.r_info = convertor( entry.r_info ); relocation_section->append_data( reinterpret_cast( &entry ), sizeof( entry ) ); } //------------------------------------------------------------------------------ template void generic_add_entry( Elf64_Addr offset, Elf_Xword info, Elf_Sxword addend ) { const endianess_convertor& convertor = elf_file.get_convertor(); T entry; entry.r_offset = offset; entry.r_info = info; entry.r_addend = addend; entry.r_offset = convertor( entry.r_offset ); entry.r_info = convertor( entry.r_info ); entry.r_addend = convertor( entry.r_addend ); relocation_section->append_data( reinterpret_cast( &entry ), sizeof( entry ) ); } //------------------------------------------------------------------------------ private: const elfio& elf_file; S* relocation_section; }; using relocation_section_accessor = relocation_section_accessor_template
; using const_relocation_section_accessor = relocation_section_accessor_template; } // namespace ELFIO #endif // ELFIO_RELOCATION_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_note.hpp0000755000175000017500000001573614522641732021141 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_NOTE_HPP #define ELFIO_NOTE_HPP namespace ELFIO { //------------------------------------------------------------------------------ // There are discrepancies in documentations. SCO documentation // (http://www.sco.com/developers/gabi/latest/ch5.pheader.html#note_section) // requires 8 byte entries alignment for 64-bit ELF file, // but Oracle's definition uses the same structure // for 32-bit and 64-bit formats. // (https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter6-18048.html) // // It looks like EM_X86_64 Linux implementation is similar to Oracle's // definition. Therefore, the same alignment works for both formats //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ template class note_section_accessor_template { public: //------------------------------------------------------------------------------ note_section_accessor_template( const elfio& elf_file, S* section ) : elf_file( elf_file ), notes( section ) { process_section(); } //------------------------------------------------------------------------------ Elf_Word get_notes_num() const { return (Elf_Word)note_start_positions.size(); } //------------------------------------------------------------------------------ bool get_note( Elf_Word index, Elf_Word& type, std::string& name, void*& desc, Elf_Word& descSize ) const { if ( index >= ( notes->*F_get_size )() ) { return false; } const char* pData = notes->get_data() + note_start_positions[index]; int align = sizeof( Elf_Word ); const endianess_convertor& convertor = elf_file.get_convertor(); type = convertor( *(const Elf_Word*)( pData + 2 * (size_t)align ) ); Elf_Word namesz = convertor( *(const Elf_Word*)( pData ) ); descSize = convertor( *(const Elf_Word*)( pData + sizeof( namesz ) ) ); Elf_Xword max_name_size = ( notes->*F_get_size )() - note_start_positions[index]; if ( namesz < 1 || namesz > max_name_size || (Elf_Xword)namesz + descSize > max_name_size ) { return false; } name.assign( pData + 3 * (size_t)align, namesz - 1 ); if ( 0 == descSize ) { desc = nullptr; } else { desc = const_cast( pData + 3 * (size_t)align + ( ( namesz + align - 1 ) / align ) * (size_t)align ); } return true; } //------------------------------------------------------------------------------ void add_note( Elf_Word type, const std::string& name, const void* desc, Elf_Word descSize ) { const endianess_convertor& convertor = elf_file.get_convertor(); int align = sizeof( Elf_Word ); Elf_Word nameLen = (Elf_Word)name.size() + 1; Elf_Word nameLenConv = convertor( nameLen ); std::string buffer( reinterpret_cast( &nameLenConv ), align ); Elf_Word descSizeConv = convertor( descSize ); buffer.append( reinterpret_cast( &descSizeConv ), align ); type = convertor( type ); buffer.append( reinterpret_cast( &type ), align ); buffer.append( name ); buffer.append( 1, '\x00' ); const char pad[] = { '\0', '\0', '\0', '\0' }; if ( nameLen % align != 0 ) { buffer.append( pad, (size_t)align - nameLen % align ); } if ( desc != nullptr && descSize != 0 ) { buffer.append( reinterpret_cast( desc ), descSize ); if ( descSize % align != 0 ) { buffer.append( pad, (size_t)align - descSize % align ); } } note_start_positions.emplace_back( ( notes->*F_get_size )() ); notes->append_data( buffer ); } private: //------------------------------------------------------------------------------ void process_section() { const endianess_convertor& convertor = elf_file.get_convertor(); const char* data = notes->get_data(); Elf_Xword size = ( notes->*F_get_size )(); Elf_Xword current = 0; note_start_positions.clear(); // Is it empty? if ( nullptr == data || 0 == size ) { return; } Elf_Word align = sizeof( Elf_Word ); while ( current + (Elf_Xword)3 * align <= size ) { note_start_positions.emplace_back( current ); Elf_Word namesz = convertor( *(const Elf_Word*)( data + current ) ); Elf_Word descsz = convertor( *(const Elf_Word*)( data + current + sizeof( namesz ) ) ); current += (Elf_Xword)3 * sizeof( Elf_Word ) + ( ( namesz + align - 1 ) / align ) * (Elf_Xword)align + ( ( descsz + align - 1 ) / align ) * (Elf_Xword)align; } } //------------------------------------------------------------------------------ private: const elfio& elf_file; S* notes; std::vector note_start_positions; }; using note_section_accessor = note_section_accessor_template; using const_note_section_accessor = note_section_accessor_template; using note_segment_accessor = note_section_accessor_template; using const_note_segment_accessor = note_section_accessor_template; } // namespace ELFIO #endif // ELFIO_NOTE_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_array.hpp0000755000175000017500000000615214522641732021302 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_ARRAY_HPP #define ELFIO_ARRAY_HPP #include namespace ELFIO { //------------------------------------------------------------------------------ template class array_section_accessor_template { public: //------------------------------------------------------------------------------ array_section_accessor_template( const elfio& elf_file, S* section ) : elf_file( elf_file ), array_section( section ) { } //------------------------------------------------------------------------------ Elf_Xword get_entries_num() const { Elf_Xword entry_size = sizeof( T ); return array_section->get_size() / entry_size; } //------------------------------------------------------------------------------ bool get_entry( Elf_Xword index, Elf64_Addr& address ) const { if ( index >= get_entries_num() ) { // Is index valid return false; } const endianess_convertor& convertor = elf_file.get_convertor(); const T temp = *reinterpret_cast( array_section->get_data() + index * sizeof( T ) ); address = convertor( temp ); return true; } //------------------------------------------------------------------------------ void add_entry( Elf64_Addr address ) { const endianess_convertor& convertor = elf_file.get_convertor(); T temp = convertor( (T)address ); array_section->append_data( reinterpret_cast( &temp ), sizeof( temp ) ); } private: //------------------------------------------------------------------------------ const elfio& elf_file; S* array_section; }; template using array_section_accessor = array_section_accessor_template; template using const_array_section_accessor = array_section_accessor_template; } // namespace ELFIO #endif // ELFIO_ARRAY_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_version.hpp0000755000175000017500000000003514522641732021643 0ustar tzafrirctzafrirc#define ELFIO_VERSION "3.10" mstflint-4.26.0/mlxdpa/elfio/elfio_strings.hpp0000755000175000017500000000632114522641732021653 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_STRINGS_HPP #define ELFIO_STRINGS_HPP #include #include #include namespace ELFIO { //------------------------------------------------------------------------------ template class string_section_accessor_template { public: //------------------------------------------------------------------------------ explicit string_section_accessor_template( S* section ) : string_section( section ) { } //------------------------------------------------------------------------------ const char* get_string( Elf_Word index ) const { if ( string_section ) { if ( index < string_section->get_size() ) { const char* data = string_section->get_data(); if ( nullptr != data ) { return data + index; } } } return nullptr; } //------------------------------------------------------------------------------ Elf_Word add_string( const char* str ) { Elf_Word current_position = 0; if ( string_section ) { // Strings are addeded to the end of the current section data current_position = static_cast( string_section->get_size() ); if ( current_position == 0 ) { char empty_string = '\0'; string_section->append_data( &empty_string, 1 ); current_position++; } string_section->append_data( str, static_cast( std::strlen( str ) + 1 ) ); } return current_position; } //------------------------------------------------------------------------------ Elf_Word add_string( const std::string& str ) { return add_string( str.c_str() ); } //------------------------------------------------------------------------------ private: S* string_section; }; using string_section_accessor = string_section_accessor_template
; using const_string_section_accessor = string_section_accessor_template; } // namespace ELFIO #endif // ELFIO_STRINGS_HPP mstflint-4.26.0/mlxdpa/elfio/elf_types.hpp0000755000175000017500000015103614522641732021002 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFTYPES_H #define ELFTYPES_H #ifdef __cplusplus namespace ELFIO { #endif using Elf_Half = uint16_t; using Elf_Word = uint32_t; using Elf_Sword = int32_t; using Elf_Xword = uint64_t; using Elf_Sxword = int64_t; using Elf32_Addr = uint32_t; using Elf32_Off = uint32_t; using Elf64_Addr = uint64_t; using Elf64_Off = uint64_t; using Elf32_Half = Elf_Half; using Elf64_Half = Elf_Half; using Elf32_Word = Elf_Word; using Elf64_Word = Elf_Word; using Elf32_Sword = Elf_Sword; using Elf64_Sword = Elf_Sword; /////////////////////// // ELF Header Constants // File type constexpr Elf_Half ET_NONE = 0; constexpr Elf_Half ET_REL = 1; constexpr Elf_Half ET_EXEC = 2; constexpr Elf_Half ET_DYN = 3; constexpr Elf_Half ET_CORE = 4; constexpr Elf_Half ET_LOOS = 0xFE00; constexpr Elf_Half ET_HIOS = 0xFEFF; constexpr Elf_Half ET_LOPROC = 0xFF00; constexpr Elf_Half ET_HIPROC = 0xFFFF; // clang-format off // Machine number constexpr Elf_Half EM_NONE = 0 ; // No machine constexpr Elf_Half EM_M32 = 1 ; // AT&T WE 32100 constexpr Elf_Half EM_SPARC = 2 ; // SUN SPARC constexpr Elf_Half EM_386 = 3 ; // Intel 80386 constexpr Elf_Half EM_68K = 4 ; // Motorola m68k family constexpr Elf_Half EM_88K = 5 ; // Motorola m88k family constexpr Elf_Half EM_486 = 6 ; // Intel 80486// Reserved for future use constexpr Elf_Half EM_860 = 7 ; // Intel 80860 constexpr Elf_Half EM_MIPS = 8 ; // MIPS R3000 (officially, big-endian only) constexpr Elf_Half EM_S370 = 9 ; // IBM System/370 constexpr Elf_Half EM_MIPS_RS3_LE = 10; // MIPS R3000 little-endian (Deprecated) constexpr Elf_Half EM_res011 = 11; // Reserved constexpr Elf_Half EM_res012 = 12; // Reserved constexpr Elf_Half EM_res013 = 13; // Reserved constexpr Elf_Half EM_res014 = 14; // Reserved constexpr Elf_Half EM_PARISC = 15; // HPPA constexpr Elf_Half EM_res016 = 16; // Reserved constexpr Elf_Half EM_VPP550 = 17; // Fujitsu VPP500 constexpr Elf_Half EM_SPARC32PLUS = 18; // Sun's "v8plus" constexpr Elf_Half EM_960 = 19; // Intel 80960 constexpr Elf_Half EM_PPC = 20; // PowerPC constexpr Elf_Half EM_PPC64 = 21; // 64-bit PowerPC constexpr Elf_Half EM_S390 = 22; // IBM S/390 constexpr Elf_Half EM_SPU = 23; // Sony/Toshiba/IBM SPU constexpr Elf_Half EM_res024 = 24; // Reserved constexpr Elf_Half EM_res025 = 25; // Reserved constexpr Elf_Half EM_res026 = 26; // Reserved constexpr Elf_Half EM_res027 = 27; // Reserved constexpr Elf_Half EM_res028 = 28; // Reserved constexpr Elf_Half EM_res029 = 29; // Reserved constexpr Elf_Half EM_res030 = 30; // Reserved constexpr Elf_Half EM_res031 = 31; // Reserved constexpr Elf_Half EM_res032 = 32; // Reserved constexpr Elf_Half EM_res033 = 33; // Reserved constexpr Elf_Half EM_res034 = 34; // Reserved constexpr Elf_Half EM_res035 = 35; // Reserved constexpr Elf_Half EM_V800 = 36; // NEC V800 series constexpr Elf_Half EM_FR20 = 37; // Fujitsu FR20 constexpr Elf_Half EM_RH32 = 38; // TRW RH32 constexpr Elf_Half EM_MCORE = 39; // Motorola M*Core // May also be taken by Fujitsu MMA constexpr Elf_Half EM_RCE = 39; // Old name for MCore constexpr Elf_Half EM_ARM = 40; // ARM constexpr Elf_Half EM_OLD_ALPHA = 41; // Digital Alpha constexpr Elf_Half EM_SH = 42; // Renesas (formerly Hitachi) / SuperH SH constexpr Elf_Half EM_SPARCV9 = 43; // SPARC v9 64-bit constexpr Elf_Half EM_TRICORE = 44; // Siemens Tricore embedded processor constexpr Elf_Half EM_ARC = 45; // ARC Cores constexpr Elf_Half EM_H8_300 = 46; // Renesas (formerly Hitachi) H8/300 constexpr Elf_Half EM_H8_300H = 47; // Renesas (formerly Hitachi) H8/300H constexpr Elf_Half EM_H8S = 48; // Renesas (formerly Hitachi) H8S constexpr Elf_Half EM_H8_500 = 49; // Renesas (formerly Hitachi) H8/500 constexpr Elf_Half EM_IA_64 = 50; // Intel IA-64 Processor constexpr Elf_Half EM_MIPS_X = 51; // Stanford MIPS-X constexpr Elf_Half EM_COLDFIRE = 52; // Motorola Coldfire constexpr Elf_Half EM_68HC12 = 53; // Motorola M68HC12 constexpr Elf_Half EM_MMA = 54; // Fujitsu Multimedia Accelerator constexpr Elf_Half EM_PCP = 55; // Siemens PCP constexpr Elf_Half EM_NCPU = 56; // Sony nCPU embedded RISC processor constexpr Elf_Half EM_NDR1 = 57; // Denso NDR1 microprocesspr constexpr Elf_Half EM_STARCORE = 58; // Motorola Star*Core processor constexpr Elf_Half EM_ME16 = 59; // Toyota ME16 processor constexpr Elf_Half EM_ST100 = 60; // STMicroelectronics ST100 processor constexpr Elf_Half EM_TINYJ = 61; // Advanced Logic Corp. TinyJ embedded processor constexpr Elf_Half EM_X86_64 = 62; // Advanced Micro Devices X86-64 processor constexpr Elf_Half EM_PDSP = 63; // Sony DSP Processor constexpr Elf_Half EM_PDP10 = 64; // Digital Equipment Corp. PDP-10 constexpr Elf_Half EM_PDP11 = 65; // Digital Equipment Corp. PDP-11 constexpr Elf_Half EM_FX66 = 66; // Siemens FX66 microcontroller constexpr Elf_Half EM_ST9PLUS = 67; // STMicroelectronics ST9+ 8/16 bit microcontroller constexpr Elf_Half EM_ST7 = 68 ; // STMicroelectronics ST7 8-bit microcontroller constexpr Elf_Half EM_68HC16 = 69 ; // Motorola MC68HC16 Microcontroller constexpr Elf_Half EM_68HC11 = 70 ; // Motorola MC68HC11 Microcontroller constexpr Elf_Half EM_68HC08 = 71 ; // Motorola MC68HC08 Microcontroller constexpr Elf_Half EM_68HC05 = 72 ; // Motorola MC68HC05 Microcontroller constexpr Elf_Half EM_SVX = 73 ; // Silicon Graphics SVx constexpr Elf_Half EM_ST19 = 74 ; // STMicroelectronics ST19 8-bit cpu constexpr Elf_Half EM_VAX = 75 ; // Digital VAX constexpr Elf_Half EM_CRIS = 76 ; // Axis Communications 32-bit embedded processor constexpr Elf_Half EM_JAVELIN = 77 ; // Infineon Technologies 32-bit embedded cpu constexpr Elf_Half EM_FIREPATH = 78 ; // Element 14 64-bit DSP processor constexpr Elf_Half EM_ZSP = 79 ; // LSI Logic's 16-bit DSP processor constexpr Elf_Half EM_MMIX = 80 ; // Donald Knuth's educational 64-bit processor constexpr Elf_Half EM_HUANY = 81 ; // Harvard's machine-independent format constexpr Elf_Half EM_PRISM = 82 ; // SiTera Prism constexpr Elf_Half EM_AVR = 83 ; // Atmel AVR 8-bit microcontroller constexpr Elf_Half EM_FR30 = 84 ; // Fujitsu FR30 constexpr Elf_Half EM_D10V = 85 ; // Mitsubishi D10V constexpr Elf_Half EM_D30V = 86 ; // Mitsubishi D30V constexpr Elf_Half EM_V850 = 87 ; // NEC v850 constexpr Elf_Half EM_M32R = 88 ; // Renesas M32R (formerly Mitsubishi M32R) constexpr Elf_Half EM_MN10300 = 89 ; // Matsushita MN10300 constexpr Elf_Half EM_MN10200 = 90 ; // Matsushita MN10200 constexpr Elf_Half EM_PJ = 91 ; // picoJava constexpr Elf_Half EM_OPENRISC = 92 ; // OpenRISC 32-bit embedded processor constexpr Elf_Half EM_ARC_A5 = 93 ; // ARC Cores Tangent-A5 constexpr Elf_Half EM_XTENSA = 94 ; // Tensilica Xtensa Architecture constexpr Elf_Half EM_VIDEOCORE = 95 ; // Alphamosaic VideoCore processor constexpr Elf_Half EM_TMM_GPP = 96 ; // Thompson Multimedia General Purpose Processor constexpr Elf_Half EM_NS32K = 97 ; // National Semiconductor 32000 series constexpr Elf_Half EM_TPC = 98 ; // Tenor Network TPC processor constexpr Elf_Half EM_SNP1K = 99 ; // Trebia SNP 1000 processor constexpr Elf_Half EM_ST200 = 100; // STMicroelectronics ST200 microcontroller constexpr Elf_Half EM_IP2K = 101; // Ubicom IP2022 micro controller constexpr Elf_Half EM_MAX = 102; // MAX Processor constexpr Elf_Half EM_CR = 103; // National Semiconductor CompactRISC constexpr Elf_Half EM_F2MC16 = 104; // Fujitsu F2MC16 constexpr Elf_Half EM_MSP430 = 105; // TI msp430 micro controller constexpr Elf_Half EM_BLACKFIN = 106; // ADI Blackfin constexpr Elf_Half EM_SE_C33 = 107; // S1C33 Family of Seiko Epson processors constexpr Elf_Half EM_SEP = 108; // Sharp embedded microprocessor constexpr Elf_Half EM_ARCA = 109; // Arca RISC Microprocessor constexpr Elf_Half EM_UNICORE = 110; // Microprocessor series from PKU-Unity Ltd. constexpr Elf_Half EM_EXCESS = 111; // eXcess: 16/32/64-bit configurable embedded CPU constexpr Elf_Half EM_DXP = 112; // Icera Semiconductor Inc. Deep Execution Processor constexpr Elf_Half EM_ALTERA_NIOS2 = 113; // Altera Nios II soft-core processor constexpr Elf_Half EM_CRX = 114; // National Semiconductor CRX constexpr Elf_Half EM_XGATE = 115; // Motorola XGATE embedded processor constexpr Elf_Half EM_C166 = 116; // Infineon C16x/XC16x processor constexpr Elf_Half EM_M16C = 117; // Renesas M16C series microprocessors constexpr Elf_Half EM_DSPIC30F = 118; // Microchip Technology dsPIC30F DSignal Controller constexpr Elf_Half EM_CE = 119; // Freescale Communication Engine RISC core constexpr Elf_Half EM_M32C = 120; // Renesas M32C series microprocessors constexpr Elf_Half EM_res121 = 121; // Reserved constexpr Elf_Half EM_res122 = 122; // Reserved constexpr Elf_Half EM_res123 = 123; // Reserved constexpr Elf_Half EM_res124 = 124; // Reserved constexpr Elf_Half EM_res125 = 125; // Reserved constexpr Elf_Half EM_res126 = 126; // Reserved constexpr Elf_Half EM_res127 = 127; // Reserved constexpr Elf_Half EM_res128 = 128; // Reserved constexpr Elf_Half EM_res129 = 129; // Reserved constexpr Elf_Half EM_res130 = 130; // Reserved constexpr Elf_Half EM_TSK3000 = 131; // Altium TSK3000 core constexpr Elf_Half EM_RS08 = 132; // Freescale RS08 embedded processor constexpr Elf_Half EM_res133 = 133; // Reserved constexpr Elf_Half EM_ECOG2 = 134; // Cyan Technology eCOG2 microprocessor constexpr Elf_Half EM_SCORE = 135; // Sunplus Score constexpr Elf_Half EM_SCORE7 = 135; // Sunplus S+core7 RISC processor constexpr Elf_Half EM_DSP24 = 136; // New Japan Radio (NJR) 24-bit DSP Processor constexpr Elf_Half EM_VIDEOCORE3 = 137; // Broadcom VideoCore III processor constexpr Elf_Half EM_LATTICEMICO32 = 138; // RISC processor for Lattice FPGA architecture constexpr Elf_Half EM_SE_C17 = 139; // Seiko Epson C17 family constexpr Elf_Half EM_TI_C6000 = 140; // Texas Instruments TMS320C6000 DSP family constexpr Elf_Half EM_TI_C2000 = 141; // Texas Instruments TMS320C2000 DSP family constexpr Elf_Half EM_TI_C5500 = 142; // Texas Instruments TMS320C55x DSP family constexpr Elf_Half EM_res143 = 143; // Reserved constexpr Elf_Half EM_res144 = 144; // Reserved constexpr Elf_Half EM_res145 = 145; // Reserved constexpr Elf_Half EM_res146 = 146; // Reserved constexpr Elf_Half EM_res147 = 147; // Reserved constexpr Elf_Half EM_res148 = 148; // Reserved constexpr Elf_Half EM_res149 = 149; // Reserved constexpr Elf_Half EM_res150 = 150; // Reserved constexpr Elf_Half EM_res151 = 151; // Reserved constexpr Elf_Half EM_res152 = 152; // Reserved constexpr Elf_Half EM_res153 = 153; // Reserved constexpr Elf_Half EM_res154 = 154; // Reserved constexpr Elf_Half EM_res155 = 155; // Reserved constexpr Elf_Half EM_res156 = 156; // Reserved constexpr Elf_Half EM_res157 = 157; // Reserved constexpr Elf_Half EM_res158 = 158; // Reserved constexpr Elf_Half EM_res159 = 159; // Reserved constexpr Elf_Half EM_MMDSP_PLUS = 160; // STMicroelectronics 64bit VLIW Data Signal Processor constexpr Elf_Half EM_CYPRESS_M8C = 161; // Cypress M8C microprocessor constexpr Elf_Half EM_R32C = 162; // Renesas R32C series microprocessors constexpr Elf_Half EM_TRIMEDIA = 163; // NXP Semiconductors TriMedia architecture family constexpr Elf_Half EM_QDSP6 = 164; // QUALCOMM DSP6 Processor constexpr Elf_Half EM_8051 = 165; // Intel 8051 and variants constexpr Elf_Half EM_STXP7X = 166; // STMicroelectronics STxP7x family constexpr Elf_Half EM_NDS32 = 167; // Andes Technology embedded RISC processor family constexpr Elf_Half EM_ECOG1 = 168; // Cyan Technology eCOG1X family constexpr Elf_Half EM_ECOG1X = 168; // Cyan Technology eCOG1X family constexpr Elf_Half EM_MAXQ30 = 169; // Dallas Semiconductor MAXQ30 Core Micro-controllers constexpr Elf_Half EM_XIMO16 = 170; // New Japan Radio (NJR) 16-bit DSP Processor constexpr Elf_Half EM_MANIK = 171; // M2000 Reconfigurable RISC Microprocessor constexpr Elf_Half EM_CRAYNV2 = 172; // Cray Inc. NV2 vector architecture constexpr Elf_Half EM_RX = 173; // Renesas RX family constexpr Elf_Half EM_METAG = 174; // Imagination Technologies META processor architecture constexpr Elf_Half EM_MCST_ELBRUS = 175; // MCST Elbrus general purpose hardware architecture constexpr Elf_Half EM_ECOG16 = 176; // Cyan Technology eCOG16 family constexpr Elf_Half EM_CR16 = 177; // National Semiconductor CompactRISC 16-bit processor constexpr Elf_Half EM_ETPU = 178; // Freescale Extended Time Processing Unit constexpr Elf_Half EM_SLE9X = 179; // Infineon Technologies SLE9X core constexpr Elf_Half EM_L1OM = 180; // Intel L1OM constexpr Elf_Half EM_INTEL181 = 181; // Reserved by Intel constexpr Elf_Half EM_INTEL182 = 182; // Reserved by Intel constexpr Elf_Half EM_AARCH64 = 183; // ARM AArch64 constexpr Elf_Half EM_res184 = 184; // Reserved by ARM constexpr Elf_Half EM_AVR32 = 185; // Atmel Corporation 32-bit microprocessor family constexpr Elf_Half EM_STM8 = 186; // STMicroeletronics STM8 8-bit microcontroller constexpr Elf_Half EM_TILE64 = 187; // Tilera TILE64 multicore architecture family constexpr Elf_Half EM_TILEPRO = 188; // Tilera TILEPro multicore architecture family constexpr Elf_Half EM_MICROBLAZE = 189; // Xilinx MicroBlaze 32-bit RISC soft processor core constexpr Elf_Half EM_CUDA = 190; // NVIDIA CUDA architecture constexpr Elf_Half EM_TILEGX = 191; // Tilera TILE-Gx multicore architecture family constexpr Elf_Half EM_CLOUDSHIELD = 192; // CloudShield architecture family constexpr Elf_Half EM_COREA_1ST = 193; // KIPO-KAIST Core-A 1st generation processor family constexpr Elf_Half EM_COREA_2ND = 194; // KIPO-KAIST Core-A 2nd generation processor family constexpr Elf_Half EM_ARC_COMPACT2 = 195; // Synopsys ARCompact V2 constexpr Elf_Half EM_OPEN8 = 196; // Open8 8-bit RISC soft processor core constexpr Elf_Half EM_RL78 = 197; // Renesas RL78 family constexpr Elf_Half EM_VIDEOCORE5 = 198; // Broadcom VideoCore V processor constexpr Elf_Half EM_78KOR = 199; // Renesas 78KOR family constexpr Elf_Half EM_56800EX = 200; // Freescale 56800EX Digital Signal Controller (DSC) constexpr Elf_Half EM_BA1 = 201; // Beyond BA1 CPU architecture constexpr Elf_Half EM_BA2 = 202; // Beyond BA2 CPU architecture constexpr Elf_Half EM_XCORE = 203; // XMOS xCORE processor family constexpr Elf_Half EM_MCHP_PIC = 204; // Microchip 8-bit PIC(r) family constexpr Elf_Half EM_INTEL205 = 205; // Reserved by Intel constexpr Elf_Half EM_INTEL206 = 206; // Reserved by Intel constexpr Elf_Half EM_INTEL207 = 207; // Reserved by Intel constexpr Elf_Half EM_INTEL208 = 208; // Reserved by Intel constexpr Elf_Half EM_INTEL209 = 209; // Reserved by Intel constexpr Elf_Half EM_KM32 = 210; // KM211 KM32 32-bit processor constexpr Elf_Half EM_KMX32 = 211; // KM211 KMX32 32-bit processor constexpr Elf_Half EM_KMX16 = 212; // KM211 KMX16 16-bit processor constexpr Elf_Half EM_KMX8 = 213; // KM211 KMX8 8-bit processor constexpr Elf_Half EM_KVARC = 214; // KM211 KVARC processor constexpr Elf_Half EM_CDP = 215; // Paneve CDP architecture family constexpr Elf_Half EM_COGE = 216; // Cognitive Smart Memory Processor constexpr Elf_Half EM_COOL = 217; // iCelero CoolEngine constexpr Elf_Half EM_NORC = 218; // Nanoradio Optimized RISC constexpr Elf_Half EM_CSR_KALIMBA = 219; // CSR Kalimba architecture family constexpr Elf_Half EM_Z80 = 220; // Zilog Z80 constexpr Elf_Half EM_VISIUM = 221; // Controls and Data Services VISIUMcore processor constexpr Elf_Half EM_FT32 = 222; // FTDI Chip FT32 high performance 32-bit RISC architecture constexpr Elf_Half EM_MOXIE = 223; // Moxie processor family constexpr Elf_Half EM_AMDGPU = 224; // AMD GPU architecture constexpr Elf_Half EM_RISCV = 243; // RISC-V constexpr Elf_Half EM_LANAI = 244; // Lanai processor constexpr Elf_Half EM_CEVA = 245; // CEVA Processor Architecture Family constexpr Elf_Half EM_CEVA_X2 = 246; // CEVA X2 Processor Family constexpr Elf_Half EM_BPF = 247; // Linux BPF – in-kernel virtual machine constexpr Elf_Half EM_GRAPHCORE_IPU = 248; // Graphcore Intelligent Processing Unit constexpr Elf_Half EM_IMG1 = 249; // Imagination Technologies constexpr Elf_Half EM_NFP = 250; // Netronome Flow Processor (P) constexpr Elf_Half EM_CSKY = 252; // C-SKY processor family constexpr Elf_Half EM_ARC_COMPACT3_64 = 253; // "Synopsys ARCv2.3 64-bit"; constexpr Elf_Half EM_MCS6502 = 254; // "MOS Technology MCS 6502 processor"; constexpr Elf_Half EM_ARC_COMPACT3 = 255; // "Synopsys ARCv2.3 32-bit"; constexpr Elf_Half EM_KVX = 256; // "Kalray VLIW core of the MPPA processor family"; constexpr Elf_Half EM_65816 = 257; // "WDC 65816/65C816"; constexpr Elf_Half EM_LOONGARCH = 258; // "Loongson Loongarch"; constexpr Elf_Half EM_KF32 = 259; // "ChipON KungFu32"; constexpr Elf_Half EM_MT = 0x2530; // "Morpho Techologies MT processor"; constexpr Elf_Half EM_ALPHA = 0x9026; // "Alpha"; constexpr Elf_Half EM_WEBASSEMBLY = 0x4157; // "Web Assembly"; constexpr Elf_Half EM_DLX = 0x5aa5; // "OpenDLX"; constexpr Elf_Half EM_XSTORMY16 = 0xad45; // "Sanyo XStormy16 CPU core"; constexpr Elf_Half EM_IQ2000 = 0xFEBA; // "Vitesse IQ2000"; constexpr Elf_Half EM_M32C_OLD = 0xFEB; constexpr Elf_Half EM_NIOS32 = 0xFEBB; // "Altera Nios"; constexpr Elf_Half EM_CYGNUS_MEP = 0xF00D; // "Toshiba MeP Media Engine"; constexpr Elf_Half EM_ADAPTEVA_EPIPHANY = 0x1223; // "Adapteva EPIPHANY"; constexpr Elf_Half EM_CYGNUS_FRV = 0x5441; // "Fujitsu FR-V"; constexpr Elf_Half EM_S12Z = 0x4DEF; // "Freescale S12Z"; // clang-format on // File version constexpr unsigned char EV_NONE = 0; constexpr unsigned char EV_CURRENT = 1; // Identification index constexpr unsigned char EI_MAG0 = 0; constexpr unsigned char EI_MAG1 = 1; constexpr unsigned char EI_MAG2 = 2; constexpr unsigned char EI_MAG3 = 3; constexpr unsigned char EI_CLASS = 4; constexpr unsigned char EI_DATA = 5; constexpr unsigned char EI_VERSION = 6; constexpr unsigned char EI_OSABI = 7; constexpr unsigned char EI_ABIVERSION = 8; constexpr unsigned char EI_PAD = 9; constexpr unsigned char EI_NIDENT = 16; // Magic number constexpr unsigned char ELFMAG0 = 0x7F; constexpr unsigned char ELFMAG1 = 'E'; constexpr unsigned char ELFMAG2 = 'L'; constexpr unsigned char ELFMAG3 = 'F'; // File class constexpr unsigned char ELFCLASSNONE = 0; constexpr unsigned char ELFCLASS32 = 1; constexpr unsigned char ELFCLASS64 = 2; // Encoding constexpr unsigned char ELFDATANONE = 0; constexpr unsigned char ELFDATA2LSB = 1; constexpr unsigned char ELFDATA2MSB = 2; // clang-format off // OS extensions constexpr unsigned char ELFOSABI_NONE = 0; // No extensions or unspecified constexpr unsigned char ELFOSABI_HPUX = 1; // Hewlett-Packard HP-UX constexpr unsigned char ELFOSABI_NETBSD = 2; // NetBSD constexpr unsigned char ELFOSABI_LINUX = 3; // Linux constexpr unsigned char ELFOSABI_SOLARIS = 6; // Sun Solaris constexpr unsigned char ELFOSABI_AIX = 7; // AIX constexpr unsigned char ELFOSABI_IRIX = 8; // IRIX constexpr unsigned char ELFOSABI_FREEBSD = 9; // FreeBSD constexpr unsigned char ELFOSABI_TRU64 = 10; // Compaq TRU64 UNIX constexpr unsigned char ELFOSABI_MODESTO = 11; // Novell Modesto constexpr unsigned char ELFOSABI_OPENBSD = 12; // Open BSD constexpr unsigned char ELFOSABI_OPENVMS = 13; // Open VMS constexpr unsigned char ELFOSABI_NSK = 14; // Hewlett-Packard Non-Stop Kernel constexpr unsigned char ELFOSABI_AROS = 15; // Amiga Research OS constexpr unsigned char ELFOSABI_FENIXOS = 16; // The FenixOS highly scalable multi-core OS // 64-255 Architecture-specific value range // AMDGPU OS for HSA compatible compute kernels constexpr unsigned char ELFOSABI_AMDGPU_HSA = 64; // AMDGPU OS for AMD PAL compatible graphics // shaders and compute kernels constexpr unsigned char ELFOSABI_AMDGPU_PAL = 65; // AMDGPU OS for Mesa3D compatible graphics // shaders and compute kernels constexpr unsigned char ELFOSABI_AMDGPU_MESA3D = 66; // clang-format on constexpr unsigned char ELFABIVERSION_AMDGPU_HSA_V2 = 0; constexpr unsigned char ELFABIVERSION_AMDGPU_HSA_V3 = 1; constexpr unsigned char ELFABIVERSION_AMDGPU_HSA_V4 = 2; // AMDGPU specific e_flags constexpr Elf_Word EF_AMDGPU_MACH = 0x0ff; // AMDGPU processor selection mask. // Indicates if the XNACK target feature is // enabled for all code contained in the ELF. constexpr Elf_Word EF_AMDGPU_XNACK = 0x100; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_V2 = 0x01; constexpr Elf_Word EF_AMDGPU_FEATURE_TRAP_HANDLER_V2 = 0x02; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_V3 = 0x100; constexpr Elf_Word EF_AMDGPU_FEATURE_SRAMECC_V3 = 0x200; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_V4 = 0x300; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_UNSUPPORTED_V4 = 0x000; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_ANY_V4 = 0x100; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_OFF_V4 = 0x200; constexpr Elf_Word EF_AMDGPU_FEATURE_XNACK_ON_V4 = 0x300; constexpr Elf_Word EF_AMDGPU_FEATURE_SRAMECC_V4 = 0xc00; constexpr Elf_Word EF_AMDGPU_FEATURE_SRAMECC_UNSUPPORTED_V4 = 0x000; constexpr Elf_Word EF_AMDGPU_FEATURE_SRAMECC_ANY_V4 = 0x400; constexpr Elf_Word EF_AMDGPU_FEATURE_SRAMECC_OFF_V4 = 0x800; constexpr Elf_Word EF_AMDGPU_FEATURE_SRAMECC_ON_V4 = 0xc00; // AMDGPU processors constexpr Elf_Word EF_AMDGPU_MACH_NONE = 0x000; // Unspecified processor. constexpr Elf_Word EF_AMDGPU_MACH_R600_R600 = 0x001; constexpr Elf_Word EF_AMDGPU_MACH_R600_R630 = 0x002; constexpr Elf_Word EF_AMDGPU_MACH_R600_RS880 = 0x003; constexpr Elf_Word EF_AMDGPU_MACH_R600_RV670 = 0x004; constexpr Elf_Word EF_AMDGPU_MACH_R600_RV710 = 0x005; constexpr Elf_Word EF_AMDGPU_MACH_R600_RV730 = 0x006; constexpr Elf_Word EF_AMDGPU_MACH_R600_RV770 = 0x007; constexpr Elf_Word EF_AMDGPU_MACH_R600_CEDAR = 0x008; constexpr Elf_Word EF_AMDGPU_MACH_R600_CYPRESS = 0x009; constexpr Elf_Word EF_AMDGPU_MACH_R600_JUNIPER = 0x00a; constexpr Elf_Word EF_AMDGPU_MACH_R600_REDWOOD = 0x00b; constexpr Elf_Word EF_AMDGPU_MACH_R600_SUMO = 0x00c; constexpr Elf_Word EF_AMDGPU_MACH_R600_BARTS = 0x00d; constexpr Elf_Word EF_AMDGPU_MACH_R600_CAICOS = 0x00e; constexpr Elf_Word EF_AMDGPU_MACH_R600_CAYMAN = 0x00f; constexpr Elf_Word EF_AMDGPU_MACH_R600_TURKS = 0x010; constexpr Elf_Word EF_AMDGPU_MACH_R600_RESERVED_FIRST = 0x011; constexpr Elf_Word EF_AMDGPU_MACH_R600_RESERVED_LAST = 0x01f; constexpr Elf_Word EF_AMDGPU_MACH_R600_FIRST = EF_AMDGPU_MACH_R600_R600; constexpr Elf_Word EF_AMDGPU_MACH_R600_LAST = EF_AMDGPU_MACH_R600_TURKS; // AMDGCN-based processors. constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX600 = 0x020; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX601 = 0x021; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX700 = 0x022; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX701 = 0x023; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX702 = 0x024; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX703 = 0x025; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX704 = 0x026; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_RESERVED_0X27 = 0x027; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX801 = 0x028; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX802 = 0x029; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX803 = 0x02a; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX810 = 0x02b; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX900 = 0x02c; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX902 = 0x02d; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX904 = 0x02e; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX906 = 0x02f; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX908 = 0x030; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX909 = 0x031; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX90C = 0x032; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1010 = 0x033; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1011 = 0x034; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1012 = 0x035; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1030 = 0x036; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1031 = 0x037; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1032 = 0x038; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1033 = 0x039; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX602 = 0x03a; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX705 = 0x03b; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX805 = 0x03c; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_RESERVED_0X3D = 0x03d; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1034 = 0x03e; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX90A = 0x03f; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_RESERVED_0X40 = 0x040; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_RESERVED_0X41 = 0x041; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_GFX1013 = 0x042; // First/last AMDGCN-based processors. constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_FIRST = EF_AMDGPU_MACH_AMDGCN_GFX600; constexpr Elf_Word EF_AMDGPU_MACH_AMDGCN_LAST = EF_AMDGPU_MACH_AMDGCN_GFX1013; ///////////////////// // Sections constants // Section indexes constexpr Elf_Word SHN_UNDEF = 0; constexpr Elf_Word SHN_LORESERVE = 0xFF00; constexpr Elf_Word SHN_LOPROC = 0xFF00; constexpr Elf_Word SHN_HIPROC = 0xFF1F; constexpr Elf_Word SHN_LOOS = 0xFF20; constexpr Elf_Word SHN_HIOS = 0xFF3F; constexpr Elf_Word SHN_ABS = 0xFFF1; constexpr Elf_Word SHN_COMMON = 0xFFF2; constexpr Elf_Word SHN_XINDEX = 0xFFFF; constexpr Elf_Word SHN_HIRESERVE = 0xFFFF; // Section types constexpr Elf_Word SHT_NULL = 0; constexpr Elf_Word SHT_PROGBITS = 1; constexpr Elf_Word SHT_SYMTAB = 2; constexpr Elf_Word SHT_STRTAB = 3; constexpr Elf_Word SHT_RELA = 4; constexpr Elf_Word SHT_HASH = 5; constexpr Elf_Word SHT_DYNAMIC = 6; constexpr Elf_Word SHT_NOTE = 7; constexpr Elf_Word SHT_NOBITS = 8; constexpr Elf_Word SHT_REL = 9; constexpr Elf_Word SHT_SHLIB = 10; constexpr Elf_Word SHT_DYNSYM = 11; constexpr Elf_Word SHT_INIT_ARRAY = 14; constexpr Elf_Word SHT_FINI_ARRAY = 15; constexpr Elf_Word SHT_PREINIT_ARRAY = 16; constexpr Elf_Word SHT_GROUP = 17; constexpr Elf_Word SHT_SYMTAB_SHNDX = 18; constexpr Elf_Word SHT_GNU_ATTRIBUTES = 0x6ffffff5; constexpr Elf_Word SHT_GNU_HASH = 0x6ffffff6; constexpr Elf_Word SHT_GNU_LIBLIST = 0x6ffffff7; constexpr Elf_Word SHT_CHECKSUM = 0x6ffffff8; constexpr Elf_Word SHT_LOSUNW = 0x6ffffffa; constexpr Elf_Word SHT_SUNW_move = 0x6ffffffa; constexpr Elf_Word SHT_SUNW_COMDAT = 0x6ffffffb; constexpr Elf_Word SHT_SUNW_syminfo = 0x6ffffffc; constexpr Elf_Word SHT_GNU_verdef = 0x6ffffffd; constexpr Elf_Word SHT_GNU_verneed = 0x6ffffffe; constexpr Elf_Word SHT_GNU_versym = 0x6fffffff; constexpr Elf_Word SHT_LOOS = 0x60000000; constexpr Elf_Word SHT_HIOS = 0x6fffffff; constexpr Elf_Word SHT_LOPROC = 0x70000000; constexpr Elf_Word SHT_HIPROC = 0x7FFFFFFF; constexpr Elf_Word SHT_LOUSER = 0x80000000; constexpr Elf_Word SHT_HIUSER = 0xFFFFFFFF; // Section attribute flags constexpr Elf_Xword SHF_WRITE = 0x1; constexpr Elf_Xword SHF_ALLOC = 0x2; constexpr Elf_Xword SHF_EXECINSTR = 0x4; constexpr Elf_Xword SHF_MERGE = 0x10; constexpr Elf_Xword SHF_STRINGS = 0x20; constexpr Elf_Xword SHF_INFO_LINK = 0x40; constexpr Elf_Xword SHF_LINK_ORDER = 0x80; constexpr Elf_Xword SHF_OS_NONCONFORMING = 0x100; constexpr Elf_Xword SHF_GROUP = 0x200; constexpr Elf_Xword SHF_TLS = 0x400; constexpr Elf_Xword SHF_MASKOS = 0x0ff00000; constexpr Elf_Xword SHF_MASKPROC = 0xF0000000; // Section group flags constexpr Elf_Word GRP_COMDAT = 0x1; constexpr Elf_Word GRP_MASKOS = 0x0ff00000; constexpr Elf_Word GRP_MASKPROC = 0xf0000000; // Symbol binding constexpr unsigned char STB_LOCAL = 0; constexpr unsigned char STB_GLOBAL = 1; constexpr unsigned char STB_WEAK = 2; constexpr unsigned char STB_LOOS = 10; constexpr unsigned char STB_HIOS = 12; constexpr unsigned char STB_MULTIDEF = 13; constexpr unsigned char STB_LOPROC = 13; constexpr unsigned char STB_HIPROC = 15; // Values of note segment descriptor types for core files constexpr Elf_Word NT_PRSTATUS = 1; // Contains copy of prstatus struct constexpr Elf_Word NT_FPREGSET = 2; // Contains copy of fpregset struct constexpr Elf_Word NT_PRPSINFO = 3; // Contains copy of prpsinfo struct constexpr Elf_Word NT_TASKSTRUCT = 4; // Contains copy of task struct constexpr Elf_Word NT_AUXV = 6; // Contains copy of Elfxx_auxv_t constexpr Elf_Word NT_SIGINFO = 0x53494749; // Fields of siginfo_t. constexpr Elf_Word NT_FILE = 0x46494c45; // Description of mapped files. // Note segments for core files on dir-style procfs systems. constexpr Elf_Word NT_PSTATUS = 10; // Has a struct pstatus constexpr Elf_Word NT_FPREGS = 12; // Has a struct fpregset constexpr Elf_Word NT_PSINFO = 13; // Has a struct psinfo constexpr Elf_Word NT_LWPSTATUS = 16; // Has a struct lwpstatus_t constexpr Elf_Word NT_LWPSINFO = 17; // Has a struct lwpsinfo_t constexpr Elf_Word NT_WIN32PSTATUS = 18; // Has a struct win32_pstatus // clang-format off // Note name must be "LINUX" constexpr Elf_Word NT_PRXFPREG = 0x46e62b7f; // Contains a user_xfpregs_struct; constexpr Elf_Word NT_PPC_VMX = 0x100; // PowerPC Altivec/VMX registers constexpr Elf_Word NT_PPC_VSX = 0x102; // PowerPC VSX registers constexpr Elf_Word NT_PPC_TAR = 0x103; // PowerPC Target Address Register constexpr Elf_Word NT_PPC_PPR = 0x104; // PowerPC Program Priority Register constexpr Elf_Word NT_PPC_DSCR = 0x105; // PowerPC Data Stream Control Register constexpr Elf_Word NT_PPC_EBB = 0x106; // PowerPC Event Based Branch Registers constexpr Elf_Word NT_PPC_PMU = 0x107; // PowerPC Performance Monitor Registers constexpr Elf_Word NT_PPC_TM_CGPR = 0x108; // PowerPC TM checkpointed GPR Registers constexpr Elf_Word NT_PPC_TM_CFPR = 0x109; // PowerPC TM checkpointed FPR Registers constexpr Elf_Word NT_PPC_TM_CVMX = 0x10a; // PowerPC TM checkpointed VMX Registers constexpr Elf_Word NT_PPC_TM_CVSX = 0x10b; // PowerPC TM checkpointed VSX Registers constexpr Elf_Word NT_PPC_TM_SPR = 0x10c; // PowerPC TM Special Purpose Registers constexpr Elf_Word NT_PPC_TM_CTAR = 0x10d; // PowerPC TM checkpointed TAR constexpr Elf_Word NT_PPC_TM_CPPR = 0x10e; // PowerPC TM checkpointed PPR constexpr Elf_Word NT_PPC_TM_CDSCR = 0x10f; // PowerPC TM checkpointed Data SCR constexpr Elf_Word NT_386_TLS = 0x200; // x86 TLS information constexpr Elf_Word NT_386_IOPERM = 0x201; // x86 io permissions constexpr Elf_Word NT_X86_XSTATE = 0x202; // x86 XSAVE extended state constexpr Elf_Word NT_X86_CET = 0x203; // x86 CET state. constexpr Elf_Word NT_S390_HIGH_GPRS = 0x300; // S/390 upper halves of GPRs constexpr Elf_Word NT_S390_TIMER = 0x301; // S390 timer constexpr Elf_Word NT_S390_TODCMP = 0x302; // S390 TOD clock comparator constexpr Elf_Word NT_S390_TODPREG = 0x303; // S390 TOD programmable register constexpr Elf_Word NT_S390_CTRS = 0x304; // S390 control registers constexpr Elf_Word NT_S390_PREFIX = 0x305; // S390 prefix register constexpr Elf_Word NT_S390_LAST_BREAK = 0x306; // S390 breaking event address constexpr Elf_Word NT_S390_SYSTEM_CALL = 0x307; // S390 system call restart data constexpr Elf_Word NT_S390_TDB = 0x308; // S390 transaction diagnostic block constexpr Elf_Word NT_S390_VXRS_LOW = 0x309; // S390 vector registers 0-15 upper half constexpr Elf_Word NT_S390_VXRS_HIGH = 0x30a; // S390 vector registers 16-31 constexpr Elf_Word NT_S390_GS_CB = 0x30b; // s390 guarded storage registers constexpr Elf_Word NT_S390_GS_BC = 0x30c; // s390 guarded storage broadcast control block constexpr Elf_Word NT_ARM_VFP = 0x400; // ARM VFP registers constexpr Elf_Word NT_ARM_TLS = 0x401; // AArch TLS registers constexpr Elf_Word NT_ARM_HW_BREAK = 0x402; // AArch hardware breakpoint registers constexpr Elf_Word NT_ARM_HW_WATCH = 0x403; // AArch hardware watchpoint registers constexpr Elf_Word NT_ARM_SVE = 0x405; // AArch SVE registers. constexpr Elf_Word NT_ARM_PAC_MASK = 0x406; // AArch pointer authentication code masks constexpr Elf_Word NT_ARM_PACA_KEYS = 0x407; // ARM pointer authentication address keys constexpr Elf_Word NT_ARM_PACG_KEYS = 0x408; // ARM pointer authentication generic keys constexpr Elf_Word NT_ARM_TAGGED_ADDR_CTRL = 0x409; // AArch64 tagged address control (prctl()) constexpr Elf_Word NT_ARM_PAC_ENABLED_KEYS = 0x40a; // AArch64 pointer authentication enabled keys (prctl()) constexpr Elf_Word NT_ARC_V2 = 0x600; // ARC HS accumulator/extra registers. constexpr Elf_Word NT_LARCH_CPUCFG = 0xa00; // LoongArch CPU config registers constexpr Elf_Word NT_LARCH_CSR = 0xa01; // LoongArch Control State Registers constexpr Elf_Word NT_LARCH_LSX = 0xa02; // LoongArch SIMD eXtension registers constexpr Elf_Word NT_LARCH_LASX = 0xa03; // LoongArch Advanced SIMD eXtension registers constexpr Elf_Word NT_RISCV_CSR = 0x900; // RISC-V Control and Status Registers // Note name must be "CORE" constexpr Elf_Word NT_LARCH_LBT = 0xa04; // LoongArch Binary Translation registers /* The range 0xff000000 to 0xffffffff is set aside for notes that don't originate from any particular operating system. */ constexpr Elf_Word NT_GDB_TDESC = 0xff000000; // Contains copy of GDB's target description XML. constexpr Elf_Word NT_MEMTAG = 0xff000001; // Contains a copy of the memory tags. /* ARM-specific NT_MEMTAG types. */ constexpr Elf_Word NT_MEMTAG_TYPE_AARCH_MTE = 0x400; // MTE memory tags for AArch64. /* Note segment for SystemTap probes. */ #define NT_STAPSDT 3 // Note name is "FreeBSD" constexpr Elf_Word NT_FREEBSD_THRMISC = 7; // Thread miscellaneous info. constexpr Elf_Word NT_FREEBSD_PROCSTAT_PROC = 8; // Procstat proc data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_FILES = 9; // Procstat files data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_VMMAP = 10; // Procstat vmmap data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_GROUPS = 11; // Procstat groups data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_UMASK = 12; // Procstat umask data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_RLIMIT = 13; // Procstat rlimit data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_OSREL = 14; // Procstat osreldate data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_PSSTRINGS = 15; // Procstat ps_strings data. constexpr Elf_Word NT_FREEBSD_PROCSTAT_AUXV = 16; // Procstat auxv data. constexpr Elf_Word NT_FREEBSD_PTLWPINFO = 17; // Thread ptrace miscellaneous info. // Note name must start with "NetBSD-CORE" constexpr Elf_Word NT_NETBSDCORE_PROCINFO = 1; // Has a struct procinfo constexpr Elf_Word NT_NETBSDCORE_AUXV = 2; // Has auxv data constexpr Elf_Word NT_NETBSDCORE_LWPSTATUS = 24; // Has LWPSTATUS data constexpr Elf_Word NT_NETBSDCORE_FIRSTMACH = 32; // start of machdep note types // Note name is "OpenBSD" constexpr Elf_Word NT_OPENBSD_PROCINFO = 10; constexpr Elf_Word NT_OPENBSD_AUXV = 11; constexpr Elf_Word NT_OPENBSD_REGS = 20; constexpr Elf_Word NT_OPENBSD_FPREGS = 21; constexpr Elf_Word NT_OPENBSD_XFPREGS = 22; constexpr Elf_Word NT_OPENBSD_WCOOKIE = 23; // Note name must start with "SPU" constexpr Elf_Word NT_SPU = 1; // Values of note segment descriptor types for object files constexpr Elf_Word NT_VERSION = 1; // Contains a version string. constexpr Elf_Word NT_ARCH = 2; // Contains an architecture string. constexpr Elf_Word NT_GO_BUILDID = 4; // Contains GO buildid data. // Values for notes in non-core files using name "GNU" constexpr Elf_Word NT_GNU_ABI_TAG = 1; constexpr Elf_Word NT_GNU_HWCAP = 2; // Used by ld.so and kernel vDSO. constexpr Elf_Word NT_GNU_BUILD_ID = 3; // Generated by ld --build-id. constexpr Elf_Word NT_GNU_GOLD_VERSION = 4; // Generated by gold. constexpr Elf_Word NT_GNU_PROPERTY_TYPE_0 = 5; // Generated by gcc. // clang-format on constexpr Elf_Word NT_GNU_BUILD_ATTRIBUTE_OPEN = 0x100; constexpr Elf_Word NT_GNU_BUILD_ATTRIBUTE_FUNC = 0x101; // Symbol types constexpr Elf_Word STT_NOTYPE = 0; constexpr Elf_Word STT_OBJECT = 1; constexpr Elf_Word STT_FUNC = 2; constexpr Elf_Word STT_SECTION = 3; constexpr Elf_Word STT_FILE = 4; constexpr Elf_Word STT_COMMON = 5; constexpr Elf_Word STT_TLS = 6; constexpr Elf_Word STT_LOOS = 10; constexpr Elf_Word STT_AMDGPU_HSA_KERNEL = 10; constexpr Elf_Word STT_HIOS = 12; constexpr Elf_Word STT_LOPROC = 13; constexpr Elf_Word STT_HIPROC = 15; // Symbol visibility constexpr unsigned char STV_DEFAULT = 0; constexpr unsigned char STV_INTERNAL = 1; constexpr unsigned char STV_HIDDEN = 2; constexpr unsigned char STV_PROTECTED = 3; // Undefined name constexpr Elf_Word STN_UNDEF = 0; // Relocation types constexpr unsigned char R_386_NONE = 0; constexpr unsigned char R_X86_64_NONE = 0; constexpr unsigned char R_AMDGPU_NONE = 0; constexpr unsigned char R_386_32 = 1; constexpr unsigned char R_X86_64_64 = 1; constexpr unsigned char R_AMDGPU_ABS32_LO = 1; constexpr unsigned char R_386_PC32 = 2; constexpr unsigned char R_X86_64_PC32 = 2; constexpr unsigned char R_AMDGPU_ABS32_HI = 2; constexpr unsigned char R_386_GOT32 = 3; constexpr unsigned char R_X86_64_GOT32 = 3; constexpr unsigned char R_AMDGPU_ABS64 = 3; constexpr unsigned char R_386_PLT32 = 4; constexpr unsigned char R_X86_64_PLT32 = 4; constexpr unsigned char R_AMDGPU_REL32 = 4; constexpr unsigned char R_386_COPY = 5; constexpr unsigned char R_X86_64_COPY = 5; constexpr unsigned char R_AMDGPU_REL64 = 5; constexpr unsigned char R_386_GLOB_DAT = 6; constexpr unsigned char R_X86_64_GLOB_DAT = 6; constexpr unsigned char R_AMDGPU_ABS32 = 6; constexpr unsigned char R_386_JMP_SLOT = 7; constexpr unsigned char R_X86_64_JUMP_SLOT = 7; constexpr unsigned char R_AMDGPU_GOTPCREL = 7; constexpr unsigned char R_386_RELATIVE = 8; constexpr unsigned char R_X86_64_RELATIVE = 8; constexpr unsigned char R_AMDGPU_GOTPCREL32_LO = 8; constexpr unsigned char R_386_GOTOFF = 9; constexpr unsigned char R_X86_64_GOTPCREL = 9; constexpr unsigned char R_AMDGPU_GOTPCREL32_HI = 9; constexpr unsigned char R_386_GOTPC = 10; constexpr unsigned char R_X86_64_32 = 10; constexpr unsigned char R_AMDGPU_REL32_LO = 10; constexpr unsigned char R_386_32PLT = 11; constexpr unsigned char R_X86_64_32S = 11; constexpr unsigned char R_AMDGPU_REL32_HI = 11; constexpr unsigned char R_X86_64_16 = 12; constexpr unsigned char R_X86_64_PC16 = 13; constexpr unsigned char R_AMDGPU_RELATIVE64 = 13; constexpr unsigned char R_386_TLS_TPOFF = 14; constexpr unsigned char R_X86_64_8 = 14; constexpr unsigned char R_386_TLS_IE = 15; constexpr unsigned char R_X86_64_PC8 = 15; constexpr unsigned char R_386_TLS_GOTIE = 16; constexpr unsigned char R_X86_64_DTPMOD64 = 16; constexpr unsigned char R_386_TLS_LE = 17; constexpr unsigned char R_X86_64_DTPOFF64 = 17; constexpr unsigned char R_386_TLS_GD = 18; constexpr unsigned char R_X86_64_TPOFF64 = 18; constexpr unsigned char R_386_TLS_LDM = 19; constexpr unsigned char R_X86_64_TLSGD = 19; constexpr unsigned char R_386_16 = 20; constexpr unsigned char R_X86_64_TLSLD = 20; constexpr unsigned char R_386_PC16 = 21; constexpr unsigned char R_X86_64_DTPOFF32 = 21; constexpr unsigned char R_386_8 = 22; constexpr unsigned char R_X86_64_GOTTPOFF = 22; constexpr unsigned char R_386_PC8 = 23; constexpr unsigned char R_X86_64_TPOFF32 = 23; constexpr unsigned char R_386_TLS_GD_32 = 24; constexpr unsigned char R_X86_64_PC64 = 24; constexpr unsigned char R_386_TLS_GD_PUSH = 25; constexpr unsigned char R_X86_64_GOTOFF64 = 25; constexpr unsigned char R_386_TLS_GD_CALL = 26; constexpr unsigned char R_X86_64_GOTPC32 = 26; constexpr unsigned char R_386_TLS_GD_POP = 27; constexpr unsigned char R_X86_64_GOT64 = 27; constexpr unsigned char R_386_TLS_LDM_32 = 28; constexpr unsigned char R_X86_64_GOTPCREL64 = 28; constexpr unsigned char R_386_TLS_LDM_PUSH = 29; constexpr unsigned char R_X86_64_GOTPC64 = 29; constexpr unsigned char R_386_TLS_LDM_CALL = 30; constexpr unsigned char R_X86_64_GOTPLT64 = 30; constexpr unsigned char R_386_TLS_LDM_POP = 31; constexpr unsigned char R_X86_64_PLTOFF64 = 31; constexpr unsigned char R_386_TLS_LDO_32 = 32; constexpr unsigned char R_386_TLS_IE_32 = 33; constexpr unsigned char R_386_TLS_LE_32 = 34; constexpr unsigned char R_X86_64_GOTPC32_TLSDESC = 34; constexpr unsigned char R_386_TLS_DTPMOD32 = 35; constexpr unsigned char R_X86_64_TLSDESC_CALL = 35; constexpr unsigned char R_386_TLS_DTPOFF32 = 36; constexpr unsigned char R_X86_64_TLSDESC = 36; constexpr unsigned char R_386_TLS_TPOFF32 = 37; constexpr unsigned char R_X86_64_IRELATIVE = 37; constexpr unsigned char R_386_SIZE32 = 38; constexpr unsigned char R_386_TLS_GOTDESC = 39; constexpr unsigned char R_386_TLS_DESC_CALL = 40; constexpr unsigned char R_386_TLS_DESC = 41; constexpr unsigned char R_386_IRELATIVE = 42; constexpr unsigned char R_386_GOT32X = 43; constexpr unsigned char R_X86_64_GNU_VTINHERIT = 250; constexpr unsigned char R_X86_64_GNU_VTENTRY = 251; // Segment types constexpr Elf_Word PT_NULL = 0; constexpr Elf_Word PT_LOAD = 1; constexpr Elf_Word PT_DYNAMIC = 2; constexpr Elf_Word PT_INTERP = 3; constexpr Elf_Word PT_NOTE = 4; constexpr Elf_Word PT_SHLIB = 5; constexpr Elf_Word PT_PHDR = 6; constexpr Elf_Word PT_TLS = 7; constexpr Elf_Word PT_LOOS = 0X60000000; constexpr Elf_Word PT_GNU_EH_FRAME = 0X6474E550; // Frame unwind information constexpr Elf_Word PT_GNU_STACK = 0X6474E551; // Stack flags constexpr Elf_Word PT_GNU_RELRO = 0X6474E552; // Read only after relocs constexpr Elf_Word PT_GNU_PROPERTY = 0X6474E553; // GNU property constexpr Elf_Word PT_GNU_MBIND_LO = 0X6474E555; // Mbind segments start constexpr Elf_Word PT_GNU_MBIND_HI = 0X6474F554; // Mbind segments finish constexpr Elf_Word PT_PAX_FLAGS = 0X65041580; constexpr Elf_Word PT_OPENBSD_RANDOMIZE = 0X65A3DBE6; constexpr Elf_Word PT_OPENBSD_WXNEEDED = 0X65A3DBE7; constexpr Elf_Word PT_OPENBSD_BOOTDATA = 0X65A41BE6; constexpr Elf_Word PT_SUNWSTACK = 0X6FFFFFFB; constexpr Elf_Word PT_HIOS = 0X6FFFFFFF; constexpr Elf_Word PT_LOPROC = 0X70000000; constexpr Elf_Word PT_HIPROC = 0X7FFFFFFF; // Segment flags constexpr Elf_Word PF_X = 1; // Execute constexpr Elf_Word PF_W = 2; // Write constexpr Elf_Word PF_R = 4; // Read constexpr Elf_Word PF_MASKOS = 0x0ff00000; // Unspecified constexpr Elf_Word PF_MASKPROC = 0xf0000000; // Unspecified // Dynamic Array Tags constexpr Elf_Word DT_NULL = 0; constexpr Elf_Word DT_NEEDED = 1; constexpr Elf_Word DT_PLTRELSZ = 2; constexpr Elf_Word DT_PLTGOT = 3; constexpr Elf_Word DT_HASH = 4; constexpr Elf_Word DT_STRTAB = 5; constexpr Elf_Word DT_SYMTAB = 6; constexpr Elf_Word DT_RELA = 7; constexpr Elf_Word DT_RELASZ = 8; constexpr Elf_Word DT_RELAENT = 9; constexpr Elf_Word DT_STRSZ = 10; constexpr Elf_Word DT_SYMENT = 11; constexpr Elf_Word DT_INIT = 12; constexpr Elf_Word DT_FINI = 13; constexpr Elf_Word DT_SONAME = 14; constexpr Elf_Word DT_RPATH = 15; constexpr Elf_Word DT_SYMBOLIC = 16; constexpr Elf_Word DT_REL = 17; constexpr Elf_Word DT_RELSZ = 18; constexpr Elf_Word DT_RELENT = 19; constexpr Elf_Word DT_PLTREL = 20; constexpr Elf_Word DT_DEBUG = 21; constexpr Elf_Word DT_TEXTREL = 22; constexpr Elf_Word DT_JMPREL = 23; constexpr Elf_Word DT_BIND_NOW = 24; constexpr Elf_Word DT_INIT_ARRAY = 25; constexpr Elf_Word DT_FINI_ARRAY = 26; constexpr Elf_Word DT_INIT_ARRAYSZ = 27; constexpr Elf_Word DT_FINI_ARRAYSZ = 28; constexpr Elf_Word DT_RUNPATH = 29; constexpr Elf_Word DT_FLAGS = 30; constexpr Elf_Word DT_ENCODING = 32; constexpr Elf_Word DT_PREINIT_ARRAY = 32; constexpr Elf_Word DT_PREINIT_ARRAYSZ = 33; constexpr Elf_Word DT_MAXPOSTAGS = 34; constexpr Elf_Word DT_GNU_HASH = 0x6ffffef5; constexpr Elf_Word DT_VERSYM = 0x6ffffff0; constexpr Elf_Word DT_FLAGS_1 = 0x6ffffffb; constexpr Elf_Word DT_VERNEED = 0x6ffffffe; constexpr Elf_Word DT_VERNEEDNUM = 0x6fffffff; constexpr Elf_Word DT_LOOS = 0x6000000D; constexpr Elf_Word DT_HIOS = 0x6ffff000; constexpr Elf_Word DT_LOPROC = 0x70000000; constexpr Elf_Word DT_HIPROC = 0x7FFFFFFF; // DT_FLAGS values constexpr Elf_Word DF_ORIGIN = 0x1; constexpr Elf_Word DF_SYMBOLIC = 0x2; constexpr Elf_Word DF_TEXTREL = 0x4; constexpr Elf_Word DF_BIND_NOW = 0x8; constexpr Elf_Word DF_STATIC_TLS = 0x10; // ELF file header struct Elf32_Ehdr { unsigned char e_ident[EI_NIDENT]; Elf_Half e_type; Elf_Half e_machine; Elf_Word e_version; Elf32_Addr e_entry; Elf32_Off e_phoff; Elf32_Off e_shoff; Elf_Word e_flags; Elf_Half e_ehsize; Elf_Half e_phentsize; Elf_Half e_phnum; Elf_Half e_shentsize; Elf_Half e_shnum; Elf_Half e_shstrndx; }; struct Elf64_Ehdr { unsigned char e_ident[EI_NIDENT]; Elf_Half e_type; Elf_Half e_machine; Elf_Word e_version; Elf64_Addr e_entry; Elf64_Off e_phoff; Elf64_Off e_shoff; Elf_Word e_flags; Elf_Half e_ehsize; Elf_Half e_phentsize; Elf_Half e_phnum; Elf_Half e_shentsize; Elf_Half e_shnum; Elf_Half e_shstrndx; }; // Section header struct Elf32_Shdr { Elf_Word sh_name; Elf_Word sh_type; Elf_Word sh_flags; Elf32_Addr sh_addr; Elf32_Off sh_offset; Elf_Word sh_size; Elf_Word sh_link; Elf_Word sh_info; Elf_Word sh_addralign; Elf_Word sh_entsize; }; struct Elf64_Shdr { Elf_Word sh_name; Elf_Word sh_type; Elf_Xword sh_flags; Elf64_Addr sh_addr; Elf64_Off sh_offset; Elf_Xword sh_size; Elf_Word sh_link; Elf_Word sh_info; Elf_Xword sh_addralign; Elf_Xword sh_entsize; }; // Segment header struct Elf32_Phdr { Elf_Word p_type; Elf32_Off p_offset; Elf32_Addr p_vaddr; Elf32_Addr p_paddr; Elf_Word p_filesz; Elf_Word p_memsz; Elf_Word p_flags; Elf_Word p_align; }; struct Elf64_Phdr { Elf_Word p_type; Elf_Word p_flags; Elf64_Off p_offset; Elf64_Addr p_vaddr; Elf64_Addr p_paddr; Elf_Xword p_filesz; Elf_Xword p_memsz; Elf_Xword p_align; }; // Symbol table entry struct Elf32_Sym { Elf_Word st_name; Elf32_Addr st_value; Elf_Word st_size; unsigned char st_info; unsigned char st_other; Elf_Half st_shndx; }; struct Elf64_Sym { Elf_Word st_name; unsigned char st_info; unsigned char st_other; Elf_Half st_shndx; Elf64_Addr st_value; Elf_Xword st_size; }; #define ELF_ST_BIND( i ) ( ( i ) >> 4 ) #define ELF_ST_TYPE( i ) ( (i)&0xf ) #define ELF_ST_INFO( b, t ) ( ( ( b ) << 4 ) + ( (t)&0xf ) ) #define ELF_ST_VISIBILITY( o ) ( (o)&0x3 ) // Relocation entries struct Elf32_Rel { Elf32_Addr r_offset; Elf_Word r_info; }; struct Elf32_Rela { Elf32_Addr r_offset; Elf_Word r_info; Elf_Sword r_addend; }; struct Elf64_Rel { Elf64_Addr r_offset; Elf_Xword r_info; }; struct Elf64_Rela { Elf64_Addr r_offset; Elf_Xword r_info; Elf_Sxword r_addend; }; #define ELF32_R_SYM( i ) ( ( i ) >> 8 ) #define ELF32_R_TYPE( i ) ( (unsigned char)( i ) ) #define ELF32_R_INFO( s, t ) ( ( ( s ) << 8 ) + (unsigned char)( t ) ) #define ELF64_R_SYM( i ) ( ( i ) >> 32 ) #define ELF64_R_TYPE( i ) ( (i)&0xffffffffL ) #define ELF64_R_INFO( s, t ) \ ( ( ( (int64_t)( s ) ) << 32 ) + ( (t)&0xffffffffL ) ) // Dynamic structure struct Elf32_Dyn { Elf_Sword d_tag; union { Elf_Word d_val; Elf32_Addr d_ptr; } d_un; }; struct Elf64_Dyn { Elf_Sxword d_tag; union { Elf_Xword d_val; Elf64_Addr d_ptr; } d_un; }; struct Elfxx_Verneed { Elf_Half vn_version; Elf_Half vn_cnt; Elf_Word vn_file; Elf_Word vn_aux; Elf_Word vn_next; }; struct Elfxx_Vernaux { Elf_Word vna_hash; Elf_Half vna_flags; Elf_Half vna_other; Elf_Word vna_name; Elf_Word vna_next; }; #ifdef __cplusplus } // namespace ELFIO #endif #endif // ELFTYPES_H mstflint-4.26.0/mlxdpa/elfio/elfio_utils.hpp0000755000175000017500000002131114522641732021316 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_UTILS_HPP #define ELFIO_UTILS_HPP #include #include #define ELFIO_GET_ACCESS_DECL( TYPE, NAME ) virtual TYPE get_##NAME() const = 0 #define ELFIO_SET_ACCESS_DECL( TYPE, NAME ) \ virtual void set_##NAME( TYPE value ) = 0 #define ELFIO_GET_SET_ACCESS_DECL( TYPE, NAME ) \ virtual TYPE get_##NAME() const = 0; \ virtual void set_##NAME( TYPE value ) = 0 #define ELFIO_GET_ACCESS( TYPE, NAME, FIELD ) \ TYPE get_##NAME() const override { return ( *convertor )( FIELD ); } #define ELFIO_SET_ACCESS( TYPE, NAME, FIELD ) \ void set_##NAME( TYPE value ) override \ { \ FIELD = value; \ FIELD = ( *convertor )( FIELD ); \ } #define ELFIO_GET_SET_ACCESS( TYPE, NAME, FIELD ) \ TYPE get_##NAME() const override { return ( *convertor )( FIELD ); } \ void set_##NAME( TYPE value ) override \ { \ FIELD = value; \ FIELD = ( *convertor )( FIELD ); \ } namespace ELFIO { //------------------------------------------------------------------------------ class endianess_convertor { public: //------------------------------------------------------------------------------ endianess_convertor() { need_conversion = false; } //------------------------------------------------------------------------------ void setup( unsigned char elf_file_encoding ) { need_conversion = ( elf_file_encoding != get_host_encoding() ); } //------------------------------------------------------------------------------ uint64_t operator()( uint64_t value ) const { if ( !need_conversion ) { return value; } value = ( ( value & 0x00000000000000FFull ) << 56 ) | ( ( value & 0x000000000000FF00ull ) << 40 ) | ( ( value & 0x0000000000FF0000ull ) << 24 ) | ( ( value & 0x00000000FF000000ull ) << 8 ) | ( ( value & 0x000000FF00000000ull ) >> 8 ) | ( ( value & 0x0000FF0000000000ull ) >> 24 ) | ( ( value & 0x00FF000000000000ull ) >> 40 ) | ( ( value & 0xFF00000000000000ull ) >> 56 ); return value; } //------------------------------------------------------------------------------ int64_t operator()( int64_t value ) const { if ( !need_conversion ) { return value; } return (int64_t)(*this)( (uint64_t)value ); } //------------------------------------------------------------------------------ uint32_t operator()( uint32_t value ) const { if ( !need_conversion ) { return value; } value = ( ( value & 0x000000FF ) << 24 ) | ( ( value & 0x0000FF00 ) << 8 ) | ( ( value & 0x00FF0000 ) >> 8 ) | ( ( value & 0xFF000000 ) >> 24 ); return value; } //------------------------------------------------------------------------------ int32_t operator()( int32_t value ) const { if ( !need_conversion ) { return value; } return (int32_t)(*this)( (uint32_t)value ); } //------------------------------------------------------------------------------ uint16_t operator()( uint16_t value ) const { if ( !need_conversion ) { return value; } value = ( ( value & 0x00FF ) << 8 ) | ( ( value & 0xFF00 ) >> 8 ); return value; } //------------------------------------------------------------------------------ int16_t operator()( int16_t value ) const { if ( !need_conversion ) { return value; } return (int16_t)(*this)( (uint16_t)value ); } //------------------------------------------------------------------------------ int8_t operator()( int8_t value ) const { return value; } //------------------------------------------------------------------------------ uint8_t operator()( uint8_t value ) const { return value; } //------------------------------------------------------------------------------ private: //------------------------------------------------------------------------------ unsigned char get_host_encoding() const { static const int tmp = 1; if ( 1 == *reinterpret_cast( &tmp ) ) { return ELFDATA2LSB; } else { return ELFDATA2MSB; } } //------------------------------------------------------------------------------ bool need_conversion; }; //------------------------------------------------------------------------------ struct address_translation { address_translation( uint64_t start, uint64_t size, uint64_t mapped_to ) : start( start ), size( size ), mapped_to( mapped_to ){}; std::streampos start; std::streampos size; std::streampos mapped_to; }; //------------------------------------------------------------------------------ class address_translator { public: //------------------------------------------------------------------------------ void set_address_translation( std::vector& addr_trans ) { addr_translations = addr_trans; std::sort( addr_translations.begin(), addr_translations.end(), [](const address_translation& a, const address_translation& b ) -> bool { return a.start < b.start; } ); } //------------------------------------------------------------------------------ std::streampos operator[]( std::streampos value ) const { if ( addr_translations.empty() ) { return value; } for ( auto& t : addr_translations ) { if ( ( t.start <= value ) && ( ( value - t.start ) < t.size ) ) { return value - t.start + t.mapped_to; } } return value; } bool empty() const { return addr_translations.empty(); } private: std::vector addr_translations; }; //------------------------------------------------------------------------------ inline uint32_t elf_hash( const unsigned char* name ) { uint32_t h = 0, g = 0; while ( *name != '\0' ) { h = ( h << 4 ) + *name++; g = h & 0xf0000000; if ( g != 0 ) h ^= g >> 24; h &= ~g; } return h; } //------------------------------------------------------------------------------ inline uint32_t elf_gnu_hash( const unsigned char* s ) { uint32_t h = 0x1505; for ( unsigned char c = *s; c != '\0'; c = *++s ) h = ( h << 5 ) + h + c; return h; } //------------------------------------------------------------------------------ inline std::string to_hex_string( uint64_t value ) { std::string str; while ( value ) { auto digit = value & 0xF; if ( digit < 0xA ) { str = char( '0' + digit ) + str; } else { str = char( 'A' + digit - 0xA ) + str; } value >>= 4; } return "0x" + str; } //------------------------------------------------------------------------------ inline void adjust_stream_size( std::ostream& stream, std::streamsize offset ) { stream.seekp( 0, std::ios_base::end ); if ( stream.tellp() < offset ) { std::streamsize size = offset - stream.tellp(); stream.write( std::string( size, '\0' ).c_str(), size ); } stream.seekp( offset ); } } // namespace ELFIO #endif // ELFIO_UTILS_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_header.hpp0000755000175000017500000001500714522641732021413 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELF_HEADER_HPP #define ELF_HEADER_HPP #include namespace ELFIO { class elf_header { public: virtual ~elf_header() = default; virtual bool load( std::istream& stream ) = 0; virtual bool save( std::ostream& stream ) const = 0; // ELF header functions ELFIO_GET_ACCESS_DECL( unsigned char, class ); ELFIO_GET_ACCESS_DECL( unsigned char, elf_version ); ELFIO_GET_ACCESS_DECL( unsigned char, encoding ); ELFIO_GET_ACCESS_DECL( Elf_Half, header_size ); ELFIO_GET_ACCESS_DECL( Elf_Half, section_entry_size ); ELFIO_GET_ACCESS_DECL( Elf_Half, segment_entry_size ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, version ); ELFIO_GET_SET_ACCESS_DECL( unsigned char, os_abi ); ELFIO_GET_SET_ACCESS_DECL( unsigned char, abi_version ); ELFIO_GET_SET_ACCESS_DECL( Elf_Half, type ); ELFIO_GET_SET_ACCESS_DECL( Elf_Half, machine ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, flags ); ELFIO_GET_SET_ACCESS_DECL( Elf64_Addr, entry ); ELFIO_GET_SET_ACCESS_DECL( Elf_Half, sections_num ); ELFIO_GET_SET_ACCESS_DECL( Elf64_Off, sections_offset ); ELFIO_GET_SET_ACCESS_DECL( Elf_Half, segments_num ); ELFIO_GET_SET_ACCESS_DECL( Elf64_Off, segments_offset ); ELFIO_GET_SET_ACCESS_DECL( Elf_Half, section_name_str_index ); }; template struct elf_header_impl_types; template <> struct elf_header_impl_types { using Phdr_type = Elf32_Phdr; using Shdr_type = Elf32_Shdr; static const unsigned char file_class = ELFCLASS32; }; template <> struct elf_header_impl_types { using Phdr_type = Elf64_Phdr; using Shdr_type = Elf64_Shdr; static const unsigned char file_class = ELFCLASS64; }; template class elf_header_impl : public elf_header { public: //------------------------------------------------------------------------------ elf_header_impl( endianess_convertor* convertor, unsigned char encoding, const address_translator* translator ) { this->convertor = convertor; this->translator = translator; std::fill_n( reinterpret_cast( &header ), sizeof( header ), '\0' ); header.e_ident[EI_MAG0] = ELFMAG0; header.e_ident[EI_MAG1] = ELFMAG1; header.e_ident[EI_MAG2] = ELFMAG2; header.e_ident[EI_MAG3] = ELFMAG3; header.e_ident[EI_CLASS] = elf_header_impl_types::file_class; header.e_ident[EI_DATA] = encoding; header.e_ident[EI_VERSION] = EV_CURRENT; header.e_version = ( *convertor )( (Elf_Word)EV_CURRENT ); header.e_ehsize = ( sizeof( header ) ); header.e_ehsize = ( *convertor )( header.e_ehsize ); header.e_shstrndx = ( *convertor )( (Elf_Half)1 ); header.e_phentsize = sizeof( typename elf_header_impl_types::Phdr_type ); header.e_shentsize = sizeof( typename elf_header_impl_types::Shdr_type ); header.e_phentsize = ( *convertor )( header.e_phentsize ); header.e_shentsize = ( *convertor )( header.e_shentsize ); } //------------------------------------------------------------------------------ bool load( std::istream& stream ) override { stream.seekg( ( *translator )[0] ); stream.read( reinterpret_cast( &header ), sizeof( header ) ); return ( stream.gcount() == sizeof( header ) ); } //------------------------------------------------------------------------------ bool save( std::ostream& stream ) const override { stream.seekp( ( *translator )[0] ); stream.write( reinterpret_cast( &header ), sizeof( header ) ); return stream.good(); } //------------------------------------------------------------------------------ // ELF header functions ELFIO_GET_ACCESS( unsigned char, class, header.e_ident[EI_CLASS] ); ELFIO_GET_ACCESS( unsigned char, elf_version, header.e_ident[EI_VERSION] ); ELFIO_GET_ACCESS( unsigned char, encoding, header.e_ident[EI_DATA] ); ELFIO_GET_ACCESS( Elf_Half, header_size, header.e_ehsize ); ELFIO_GET_ACCESS( Elf_Half, section_entry_size, header.e_shentsize ); ELFIO_GET_ACCESS( Elf_Half, segment_entry_size, header.e_phentsize ); ELFIO_GET_SET_ACCESS( Elf_Word, version, header.e_version ); ELFIO_GET_SET_ACCESS( unsigned char, os_abi, header.e_ident[EI_OSABI] ); ELFIO_GET_SET_ACCESS( unsigned char, abi_version, header.e_ident[EI_ABIVERSION] ); ELFIO_GET_SET_ACCESS( Elf_Half, type, header.e_type ); ELFIO_GET_SET_ACCESS( Elf_Half, machine, header.e_machine ); ELFIO_GET_SET_ACCESS( Elf_Word, flags, header.e_flags ); ELFIO_GET_SET_ACCESS( Elf_Half, section_name_str_index, header.e_shstrndx ); ELFIO_GET_SET_ACCESS( Elf64_Addr, entry, header.e_entry ); ELFIO_GET_SET_ACCESS( Elf_Half, sections_num, header.e_shnum ); ELFIO_GET_SET_ACCESS( Elf64_Off, sections_offset, header.e_shoff ); ELFIO_GET_SET_ACCESS( Elf_Half, segments_num, header.e_phnum ); ELFIO_GET_SET_ACCESS( Elf64_Off, segments_offset, header.e_phoff ); private: T header; endianess_convertor* convertor; const address_translator* translator; }; } // namespace ELFIO #endif // ELF_HEADER_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_dump.hpp0000755000175000017500000015027214522641732021134 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_DUMP_HPP #define ELFIO_DUMP_HPP #include #include #include #include #include #include namespace ELFIO { static const struct class_table_t { const char key; const char* str; } class_table[] = { { ELFCLASS32, "ELF32" }, { ELFCLASS64, "ELF64" }, }; static const struct endian_table_t { const char key; const char* str; } endian_table[] = { { ELFDATANONE, "None" }, { ELFDATA2LSB, "Little endian" }, { ELFDATA2MSB, "Big endian" }, }; static const struct version_table_t { const Elf64_Word key; const char* str; } version_table[] = { { EV_NONE, "None" }, { EV_CURRENT, "Current" }, }; static const struct type_table_t { const Elf32_Half key; const char* str; } type_table[] = { { ET_NONE, "No file type" }, { ET_REL, "Relocatable file" }, { ET_EXEC, "Executable file" }, { ET_DYN, "Shared object file" }, { ET_CORE, "Core file" }, }; static const struct machine_table_t { const Elf64_Half key; const char* str; } machine_table[] = { { EM_NONE, "No machine" }, { EM_M32, "AT&T WE 32100" }, { EM_SPARC, "SUN SPARC" }, { EM_386, "Intel 80386" }, { EM_68K, "Motorola m68k family" }, { EM_88K, "Motorola m88k family" }, { EM_486, "Intel 80486// Reserved for future use" }, { EM_860, "Intel 80860" }, { EM_MIPS, "MIPS R3000 (officially, big-endian only)" }, { EM_S370, "IBM System/370" }, { EM_MIPS_RS3_LE, "MIPS R3000 little-endian (Oct 4 1999 Draft) Deprecated" }, { EM_res011, "Reserved" }, { EM_res012, "Reserved" }, { EM_res013, "Reserved" }, { EM_res014, "Reserved" }, { EM_PARISC, "HPPA" }, { EM_res016, "Reserved" }, { EM_VPP550, "Fujitsu VPP500" }, { EM_SPARC32PLUS, "Sun's v8plus" }, { EM_960, "Intel 80960" }, { EM_PPC, "PowerPC" }, { EM_PPC64, "64-bit PowerPC" }, { EM_S390, "IBM S/390" }, { EM_SPU, "Sony/Toshiba/IBM SPU" }, { EM_res024, "Reserved" }, { EM_res025, "Reserved" }, { EM_res026, "Reserved" }, { EM_res027, "Reserved" }, { EM_res028, "Reserved" }, { EM_res029, "Reserved" }, { EM_res030, "Reserved" }, { EM_res031, "Reserved" }, { EM_res032, "Reserved" }, { EM_res033, "Reserved" }, { EM_res034, "Reserved" }, { EM_res035, "Reserved" }, { EM_V800, "NEC V800 series" }, { EM_FR20, "Fujitsu FR20" }, { EM_RH32, "TRW RH32" }, { EM_MCORE, "Motorola M*Core // May also be taken by Fujitsu MMA" }, { EM_RCE, "Old name for MCore" }, { EM_ARM, "ARM" }, { EM_OLD_ALPHA, "Digital Alpha" }, { EM_SH, "Renesas (formerly Hitachi) / SuperH SH" }, { EM_SPARCV9, "SPARC v9 64-bit" }, { EM_TRICORE, "Siemens Tricore embedded processor" }, { EM_ARC, "ARC Cores" }, { EM_H8_300, "Renesas (formerly Hitachi) H8/300" }, { EM_H8_300H, "Renesas (formerly Hitachi) H8/300H" }, { EM_H8S, "Renesas (formerly Hitachi) H8S" }, { EM_H8_500, "Renesas (formerly Hitachi) H8/500" }, { EM_IA_64, "Intel IA-64 Processor" }, { EM_MIPS_X, "Stanford MIPS-X" }, { EM_COLDFIRE, "Motorola Coldfire" }, { EM_68HC12, "Motorola M68HC12" }, { EM_MMA, "Fujitsu Multimedia Accelerator" }, { EM_PCP, "Siemens PCP" }, { EM_NCPU, "Sony nCPU embedded RISC processor" }, { EM_NDR1, "Denso NDR1 microprocesspr" }, { EM_STARCORE, "Motorola Star*Core processor" }, { EM_ME16, "Toyota ME16 processor" }, { EM_ST100, "STMicroelectronics ST100 processor" }, { EM_TINYJ, "Advanced Logic Corp. TinyJ embedded processor" }, { EM_X86_64, "Advanced Micro Devices X86-64 processor" }, { EM_PDSP, "Sony DSP Processor" }, { EM_PDP10, "Digital Equipment Corp. PDP-10" }, { EM_PDP11, "Digital Equipment Corp. PDP-11" }, { EM_FX66, "Siemens FX66 microcontroller" }, { EM_ST9PLUS, "STMicroelectronics ST9+ 8/16 bit microcontroller" }, { EM_ST7, "STMicroelectronics ST7 8-bit microcontroller" }, { EM_68HC16, "Motorola MC68HC16 Microcontroller" }, { EM_68HC11, "Motorola MC68HC11 Microcontroller" }, { EM_68HC08, "Motorola MC68HC08 Microcontroller" }, { EM_68HC05, "Motorola MC68HC05 Microcontroller" }, { EM_SVX, "Silicon Graphics SVx" }, { EM_ST19, "STMicroelectronics ST19 8-bit cpu" }, { EM_VAX, "Digital VAX" }, { EM_CRIS, "Axis Communications 32-bit embedded processor" }, { EM_JAVELIN, "Infineon Technologies 32-bit embedded cpu" }, { EM_FIREPATH, "Element 14 64-bit DSP processor" }, { EM_ZSP, "LSI Logic's 16-bit DSP processor" }, { EM_MMIX, "Donald Knuth's educational 64-bit processor" }, { EM_HUANY, "Harvard's machine-independent format" }, { EM_PRISM, "SiTera Prism" }, { EM_AVR, "Atmel AVR 8-bit microcontroller" }, { EM_FR30, "Fujitsu FR30" }, { EM_D10V, "Mitsubishi D10V" }, { EM_D30V, "Mitsubishi D30V" }, { EM_V850, "NEC v850" }, { EM_M32R, "Renesas M32R (formerly Mitsubishi M32R)" }, { EM_MN10300, "Matsushita MN10300" }, { EM_MN10200, "Matsushita MN10200" }, { EM_PJ, "picoJava" }, { EM_OPENRISC, "OpenRISC 32-bit embedded processor" }, { EM_ARC_A5, "ARC Cores Tangent-A5" }, { EM_XTENSA, "Tensilica Xtensa Architecture" }, { EM_VIDEOCORE, "Alphamosaic VideoCore processor" }, { EM_TMM_GPP, "Thompson Multimedia General Purpose Processor" }, { EM_NS32K, "National Semiconductor 32000 series" }, { EM_TPC, "Tenor Network TPC processor" }, { EM_SNP1K, "Trebia SNP 1000 processor" }, { EM_ST200, "STMicroelectronics ST200 microcontroller" }, { EM_IP2K, "Ubicom IP2022 micro controller" }, { EM_MAX, "MAX Processor" }, { EM_CR, "National Semiconductor CompactRISC" }, { EM_F2MC16, "Fujitsu F2MC16" }, { EM_MSP430, "TI msp430 micro controller" }, { EM_BLACKFIN, "ADI Blackfin" }, { EM_SE_C33, "S1C33 Family of Seiko Epson processors" }, { EM_SEP, "Sharp embedded microprocessor" }, { EM_ARCA, "Arca RISC Microprocessor" }, { EM_UNICORE, "Microprocessor series from PKU-Unity Ltd. and MPRC of " "Peking University" }, { EM_EXCESS, "eXcess: 16/32/64-bit configurable embedded CPU" }, { EM_DXP, "Icera Semiconductor Inc. Deep Execution Processor" }, { EM_ALTERA_NIOS2, "Altera Nios II soft-core processor" }, { EM_CRX, "National Semiconductor CRX" }, { EM_XGATE, "Motorola XGATE embedded processor" }, { EM_C166, "Infineon C16x/XC16x processor" }, { EM_M16C, "Renesas M16C series microprocessors" }, { EM_DSPIC30F, "Microchip Technology dsPIC30F Digital Signal Controller" }, { EM_CE, "Freescale Communication Engine RISC core" }, { EM_M32C, "Renesas M32C series microprocessors" }, { EM_res121, "Reserved" }, { EM_res122, "Reserved" }, { EM_res123, "Reserved" }, { EM_res124, "Reserved" }, { EM_res125, "Reserved" }, { EM_res126, "Reserved" }, { EM_res127, "Reserved" }, { EM_res128, "Reserved" }, { EM_res129, "Reserved" }, { EM_res130, "Reserved" }, { EM_TSK3000, "Altium TSK3000 core" }, { EM_RS08, "Freescale RS08 embedded processor" }, { EM_res133, "Reserved" }, { EM_ECOG2, "Cyan Technology eCOG2 microprocessor" }, { EM_SCORE, "Sunplus Score" }, { EM_SCORE7, "Sunplus S+core7 RISC processor" }, { EM_DSP24, "New Japan Radio (NJR) 24-bit DSP Processor" }, { EM_VIDEOCORE3, "Broadcom VideoCore III processor" }, { EM_LATTICEMICO32, "RISC processor for Lattice FPGA architecture" }, { EM_SE_C17, "Seiko Epson C17 family" }, { EM_TI_C6000, "Texas Instruments TMS320C6000 DSP family" }, { EM_TI_C2000, "Texas Instruments TMS320C2000 DSP family" }, { EM_TI_C5500, "Texas Instruments TMS320C55x DSP family" }, { EM_res143, "Reserved" }, { EM_res144, "Reserved" }, { EM_res145, "Reserved" }, { EM_res146, "Reserved" }, { EM_res147, "Reserved" }, { EM_res148, "Reserved" }, { EM_res149, "Reserved" }, { EM_res150, "Reserved" }, { EM_res151, "Reserved" }, { EM_res152, "Reserved" }, { EM_res153, "Reserved" }, { EM_res154, "Reserved" }, { EM_res155, "Reserved" }, { EM_res156, "Reserved" }, { EM_res157, "Reserved" }, { EM_res158, "Reserved" }, { EM_res159, "Reserved" }, { EM_MMDSP_PLUS, "STMicroelectronics 64bit VLIW Data Signal Processor" }, { EM_CYPRESS_M8C, "Cypress M8C microprocessor" }, { EM_R32C, "Renesas R32C series microprocessors" }, { EM_TRIMEDIA, "NXP Semiconductors TriMedia architecture family" }, { EM_QDSP6, "QUALCOMM DSP6 Processor" }, { EM_8051, "Intel 8051 and variants" }, { EM_STXP7X, "STMicroelectronics STxP7x family" }, { EM_NDS32, "Andes Technology compact code size embedded RISC processor family" }, { EM_ECOG1, "Cyan Technology eCOG1X family" }, { EM_ECOG1X, "Cyan Technology eCOG1X family" }, { EM_MAXQ30, "Dallas Semiconductor MAXQ30 Core Micro-controllers" }, { EM_XIMO16, "New Japan Radio (NJR) 16-bit DSP Processor" }, { EM_MANIK, "M2000 Reconfigurable RISC Microprocessor" }, { EM_CRAYNV2, "Cray Inc. NV2 vector architecture" }, { EM_RX, "Renesas RX family" }, { EM_METAG, "Imagination Technologies META processor architecture" }, { EM_MCST_ELBRUS, "MCST Elbrus general purpose hardware architecture" }, { EM_ECOG16, "Cyan Technology eCOG16 family" }, { EM_CR16, "National Semiconductor CompactRISC 16-bit processor" }, { EM_ETPU, "Freescale Extended Time Processing Unit" }, { EM_SLE9X, "Infineon Technologies SLE9X core" }, { EM_L1OM, "Intel L1OM" }, { EM_INTEL181, "Reserved by Intel" }, { EM_INTEL182, "Reserved by Intel" }, { EM_AARCH64, "ARM AArch64" }, { EM_res184, "Reserved by ARM" }, { EM_AVR32, "Atmel Corporation 32-bit microprocessor family" }, { EM_STM8, "STMicroeletronics STM8 8-bit microcontroller" }, { EM_TILE64, "Tilera TILE64 multicore architecture family" }, { EM_TILEPRO, "Tilera TILEPro multicore architecture family" }, { EM_MICROBLAZE, "Xilinx MicroBlaze 32-bit RISC soft processor core" }, { EM_CUDA, "NVIDIA CUDA architecture " }, { EM_TILEGX, "Tilera TILE-Gx multicore architecture family" }, { EM_CLOUDSHIELD, "CloudShield architecture family" }, { EM_COREA_1ST, "KIPO-KAIST Core-A 1st generation processor family" }, { EM_COREA_2ND, "KIPO-KAIST Core-A 2nd generation processor family" }, { EM_ARC_COMPACT2, "Synopsys ARCompact V2" }, { EM_OPEN8, "Open8 8-bit RISC soft processor core" }, { EM_RL78, "Renesas RL78 family" }, { EM_VIDEOCORE5, "Broadcom VideoCore V processor" }, { EM_78KOR, "Renesas 78KOR family" }, { EM_56800EX, "Freescale 56800EX Digital Signal Controller (DSC)" }, { EM_BA1, "Beyond BA1 CPU architecture" }, { EM_BA2, "Beyond BA2 CPU architecture" }, { EM_XCORE, "XMOS xCORE processor family" }, { EM_MCHP_PIC, "Microchip 8-bit PIC(r) family" }, { EM_INTEL205, "Reserved by Intel" }, { EM_INTEL206, "Reserved by Intel" }, { EM_INTEL207, "Reserved by Intel" }, { EM_INTEL208, "Reserved by Intel" }, { EM_INTEL209, "Reserved by Intel" }, { EM_KM32, "KM211 KM32 32-bit processor" }, { EM_KMX32, "KM211 KMX32 32-bit processor" }, { EM_KMX16, "KM211 KMX16 16-bit processor" }, { EM_KMX8, "KM211 KMX8 8-bit processor" }, { EM_KVARC, "KM211 KVARC processor" }, { EM_CDP, "Paneve CDP architecture family" }, { EM_COGE, "Cognitive Smart Memory Processor" }, { EM_COOL, "iCelero CoolEngine" }, { EM_NORC, "Nanoradio Optimized RISC" }, { EM_CSR_KALIMBA, "CSR Kalimba architecture family" }, { EM_Z80, "Zilog Z80" }, { EM_VISIUM, "Controls and Data Services VISIUMcore processor" }, { EM_FT32, "FTDI Chip FT32 high performance 32-bit RISC architecture" }, { EM_MOXIE, "Moxie processor family" }, { EM_AMDGPU, "AMD GPU architecture" }, { EM_RISCV, "RISC-V" }, { EM_LANAI, "Lanai processor" }, { EM_CEVA, "CEVA Processor Architecture Family" }, { EM_CEVA_X2, "CEVA X2 Processor Family" }, { EM_BPF, "Linux BPF – in-kernel virtual machine" }, { EM_GRAPHCORE_IPU, "Graphcore Intelligent Processing Unit" }, { EM_IMG1, "Imagination Technologies" }, { EM_NFP, "Netronome Flow Processor (P)" }, { EM_CSKY, "C-SKY processor family" }, { EM_ARC_COMPACT3_64, "Synopsys ARCv2.3 64-bit" }, { EM_MCS6502, "MOS Technology MCS 6502 processor" }, { EM_ARC_COMPACT3, "Synopsys ARCv2.3 32-bit" }, { EM_KVX, "Kalray VLIW core of the MPPA processor family" }, { EM_65816, "WDC 65816/65C816" }, { EM_LOONGARCH, "Loongson Loongarch" }, { EM_KF32, "ChipON KungFu32" }, { EM_MT, "Morpho Techologies MT processor" }, { EM_ALPHA, "Alpha" }, { EM_WEBASSEMBLY, "Web Assembly" }, { EM_DLX, "OpenDLX" }, { EM_XSTORMY16, "Sanyo XStormy16 CPU core" }, { EM_IQ2000, "Vitesse IQ2000" }, { EM_M32C_OLD, "M32C_OLD" }, { EM_NIOS32, "Altera Nios" }, { EM_CYGNUS_MEP, "Toshiba MeP Media Engine" }, { EM_ADAPTEVA_EPIPHANY, "Adapteva EPIPHANY" }, { EM_CYGNUS_FRV, "Fujitsu FR-V" }, { EM_S12Z, "Freescale S12Z" }, }; static const struct section_type_table_t { const Elf64_Word key; const char* str; } section_type_table[] = { { SHT_NULL, "NULL" }, { SHT_PROGBITS, "PROGBITS" }, { SHT_SYMTAB, "SYMTAB" }, { SHT_STRTAB, "STRTAB" }, { SHT_RELA, "RELA" }, { SHT_HASH, "HASH" }, { SHT_DYNAMIC, "DYNAMIC" }, { SHT_NOTE, "NOTE" }, { SHT_NOBITS, "NOBITS" }, { SHT_REL, "REL" }, { SHT_SHLIB, "SHLIB" }, { SHT_DYNSYM, "DYNSYM" }, { SHT_INIT_ARRAY, "INIT_ARRAY" }, { SHT_FINI_ARRAY, "FINI_ARRAY" }, { SHT_PREINIT_ARRAY, "PREINIT_ARRAY" }, { SHT_GROUP, "GROUP" }, { SHT_SYMTAB_SHNDX, "SYMTAB_SHNDX" }, { SHT_GNU_ATTRIBUTES, "GNU_ATTRIBUTES" }, { SHT_GNU_HASH, "GNU_HASH" }, { SHT_GNU_LIBLIST, "GNU_LIBLIST" }, { SHT_CHECKSUM, "CHECKSUM" }, { SHT_LOSUNW, "LOSUNW" }, { SHT_SUNW_move, "SUNW_move" }, { SHT_SUNW_COMDAT, "SUNW_COMDAT" }, { SHT_SUNW_syminfo, "SUNW_syminfo" }, { SHT_GNU_verdef, "GNU_verdef" }, { SHT_GNU_verneed, "GNU_verneed" }, { SHT_GNU_versym, "GNU_versym" }, }; static const struct segment_type_table_t { const Elf_Word key; const char* str; } segment_type_table[] = { { PT_NULL, "NULL" }, { PT_LOAD, "LOAD" }, { PT_DYNAMIC, "DYNAMIC" }, { PT_INTERP, "INTERP" }, { PT_NOTE, "NOTE" }, { PT_SHLIB, "SHLIB" }, { PT_PHDR, "PHDR" }, { PT_TLS, "TLS" }, { PT_GNU_EH_FRAME, "GNU_EH_FRAME" }, { PT_GNU_STACK, "GNU_STACK" }, { PT_GNU_RELRO, "GNU_RELRO" }, { PT_GNU_PROPERTY, "GNU_PROPERTY" }, { PT_GNU_MBIND_LO, "GNU_MBIND_LO" }, { PT_GNU_MBIND_HI, "GNU_MBIND_HI" }, { PT_PAX_FLAGS, "PAX_FLAGS" }, { PT_OPENBSD_RANDOMIZE, "OPENBSD_RANDOMIZE" }, { PT_OPENBSD_WXNEEDED, "OPENBSD_WXNEEDED " }, { PT_OPENBSD_BOOTDATA, "OPENBSD_BOOTDATA " }, { PT_SUNWSTACK, "SUNWSTACK" }, }; static const struct segment_flag_table_t { const Elf_Word key; const char* str; } segment_flag_table[] = { { 0, " " }, { 1, " E" }, { 2, " W " }, { 3, " WE" }, { 4, "R " }, { 5, "R E" }, { 6, "RW " }, { 7, "RWE" }, }; static const struct symbol_bind_t { const Elf_Word key; const char* str; } symbol_bind_table[] = { { STB_LOCAL, "LOCAL" }, { STB_GLOBAL, "GLOBAL" }, { STB_WEAK, "WEAK" }, { STB_LOOS, "LOOS" }, { STB_HIOS, "HIOS" }, { STB_MULTIDEF, "MULTIDEF" }, { STB_LOPROC, "LOPROC" }, { STB_HIPROC, "HIPROC" }, }; static const struct symbol_type_t { const Elf_Word key; const char* str; } symbol_type_table[] = { { STT_NOTYPE, "NOTYPE" }, { STT_OBJECT, "OBJECT" }, { STT_FUNC, "FUNC" }, { STT_SECTION, "SECTION" }, { STT_FILE, "FILE" }, { STT_COMMON, "COMMON" }, { STT_TLS, "TLS" }, { STT_LOOS, "LOOS" }, { STT_HIOS, "HIOS" }, { STT_LOPROC, "LOPROC" }, { STT_HIPROC, "HIPROC" }, }; static const struct dynamic_tag_t { const Elf_Word key; const char* str; } dynamic_tag_table[] = { { DT_NULL, "NULL" }, { DT_NEEDED, "NEEDED" }, { DT_PLTRELSZ, "PLTRELSZ" }, { DT_PLTGOT, "PLTGOT" }, { DT_HASH, "HASH" }, { DT_STRTAB, "STRTAB" }, { DT_SYMTAB, "SYMTAB" }, { DT_RELA, "RELA" }, { DT_RELASZ, "RELASZ" }, { DT_RELAENT, "RELAENT" }, { DT_STRSZ, "STRSZ" }, { DT_SYMENT, "SYMENT" }, { DT_INIT, "INIT" }, { DT_FINI, "FINI" }, { DT_SONAME, "SONAME" }, { DT_RPATH, "RPATH" }, { DT_SYMBOLIC, "SYMBOLIC" }, { DT_REL, "REL" }, { DT_RELSZ, "RELSZ" }, { DT_RELENT, "RELENT" }, { DT_PLTREL, "PLTREL" }, { DT_DEBUG, "DEBUG" }, { DT_TEXTREL, "TEXTREL" }, { DT_JMPREL, "JMPREL" }, { DT_BIND_NOW, "BIND_NOW" }, { DT_INIT_ARRAY, "INIT_ARRAY" }, { DT_FINI_ARRAY, "FINI_ARRAY" }, { DT_INIT_ARRAYSZ, "INIT_ARRAYSZ" }, { DT_FINI_ARRAYSZ, "FINI_ARRAYSZ" }, { DT_RUNPATH, "RUNPATH" }, { DT_FLAGS, "FLAGS" }, { DT_ENCODING, "ENCODING" }, { DT_PREINIT_ARRAY, "PREINIT_ARRAY" }, { DT_PREINIT_ARRAYSZ, "PREINIT_ARRAYSZ" }, { DT_MAXPOSTAGS, "MAXPOSTAGS" }, { DT_GNU_HASH, "GNU_HASH" }, { DT_VERSYM, "VERSYM" }, { DT_FLAGS_1, "FLAGS_1" }, { DT_VERNEED, "VERNEED" }, { DT_VERNEEDNUM, "VERNEEDNUM" }, }; // clang-format off static const struct note_tag_t { struct note_values_t { Elf64_Word type; std::string type_str; std::string description; }; std::string name; std::vector values; } note_tag_table[] = { { "", { { NT_PRSTATUS, "NT_PRSTATUS", "prstatus struct" }, { NT_FPREGSET, "NT_FPREGSET", "fpregset struct" }, { NT_PRPSINFO, "NT_PRPSINFO", "prpsinfo struct" }, { NT_TASKSTRUCT, "NT_TASKSTRUCT", "task struct" }, { NT_AUXV, "NT_AUXV", "Elfxx_auxv_t" }, { NT_PSTATUS, "NT_PSTATUS", "pstatus struct" }, { NT_FPREGS, "NT_FPREGS", "fpregset struct" }, { NT_PSINFO, "NT_PSINFO", "psinfo struct" }, { NT_LWPSTATUS, "NT_LWPSTATUS", "lwpstatus_t struct" }, { NT_LWPSINFO, "NT_LWPSINFO", "lwpsinfo_t struct" }, { NT_WIN32PSTATUS, "NT_WIN32PSTATUS", "win32_pstatus struct" }, } }, { "LINUX", { { NT_PRXFPREG, "NT_PRXFPREG", "Contains a user_xfpregs_struct;" }, { NT_PPC_VMX, "NT_PPC_VMX", "PowerPC Altivec/VMX registers" }, { NT_PPC_VSX, "NT_PPC_VSX", "PowerPC VSX registers" }, { NT_PPC_TAR, "NT_PPC_TAR", "PowerPC Target Address Register" }, { NT_PPC_PPR, "NT_PPC_PPR", "PowerPC Program Priority Register" }, { NT_PPC_DSCR, "NT_PPC_DSCR", "PowerPC Data Stream Control Register" }, { NT_PPC_EBB, "NT_PPC_EBB", "PowerPC Event Based Branch Registers" }, { NT_PPC_PMU, "NT_PPC_PMU", "PowerPC Performance Monitor Registers" }, { NT_PPC_TM_CGPR, "NT_PPC_TM_CGPR", "PowerPC TM checkpointed GPR Registers" }, { NT_PPC_TM_CFPR, "NT_PPC_TM_CFPR", "PowerPC TM checkpointed FPR Registers" }, { NT_PPC_TM_CVMX, "NT_PPC_TM_CVMX", "PowerPC TM checkpointed VMX Registers" }, { NT_PPC_TM_CVSX, "NT_PPC_TM_CVSX", "PowerPC TM checkpointed VSX Registers" }, { NT_PPC_TM_SPR, "NT_PPC_TM_SPR", "PowerPC TM Special Purpose Registers" }, { NT_PPC_TM_CTAR, "NT_PPC_TM_CTAR", "PowerPC TM checkpointed TAR" }, { NT_PPC_TM_CPPR, "NT_PPC_TM_CPPR", "PowerPC TM checkpointed PPR" }, { NT_PPC_TM_CDSCR, "NT_PPC_TM_CDSCR", "PowerPC TM checkpointed Data SCR" }, { NT_386_TLS, "NT_386_TLS", "x86 TLS information" }, { NT_386_IOPERM, "NT_386_IOPERM", "x86 io permissions" }, { NT_X86_XSTATE, "NT_X86_XSTATE", "x86 XSAVE extended state" }, { NT_X86_CET, "NT_X86_CET", "x86 CET state" }, { NT_S390_HIGH_GPRS, "NT_S390_HIGH_GPRS", "S/390 upper halves of GPRs " }, { NT_S390_TIMER, "NT_S390_TIMER", "S390 timer" }, { NT_S390_TODCMP, "NT_S390_TODCMP", "S390 TOD clock comparator" }, { NT_S390_TODPREG, "NT_S390_TODPREG", "S390 TOD programmable register" }, { NT_S390_CTRS, "NT_S390_CTRS", "S390 control registers" }, { NT_S390_PREFIX, "NT_S390_PREFIX", "S390 prefix register" }, { NT_S390_LAST_BREAK, "NT_S390_LAST_BREAK", "S390 breaking event address" }, { NT_S390_SYSTEM_CALL, "NT_S390_SYSTEM_CALL", "S390 system call restart data" }, { NT_S390_TDB, "NT_S390_TDB", "S390 transaction diagnostic block" }, { NT_S390_VXRS_LOW, "NT_S390_VXRS_LOW", "S390 vector registers 0-15 upper half" }, { NT_S390_VXRS_HIGH, "NT_S390_VXRS_HIGH", "S390 vector registers 16-31" }, { NT_S390_GS_CB, "NT_S390_GS_CB", "s390 guarded storage registers" }, { NT_S390_GS_BC, "NT_S390_GS_BC", "s390 guarded storage broadcast control block" }, { NT_ARM_VFP, "NT_ARM_VFP", "ARM VFP registers" }, { NT_ARM_TLS, "NT_ARM_TLS", "AArch TLS registers" }, { NT_ARM_HW_BREAK, "NT_ARM_HW_BREAK", "AArch hardware breakpoint registers" }, { NT_ARM_HW_WATCH, "NT_ARM_HW_WATCH", "AArch hardware watchpoint registers" }, { NT_ARM_SVE, "NT_ARM_SVE", "AArch SVE registers. " }, { NT_ARM_PAC_MASK, "NT_ARM_PAC_MASK", "AArch pointer authentication code masks" }, { NT_ARM_PACA_KEYS, "NT_ARM_PACA_KEYS", "ARM pointer authentication address keys" }, { NT_ARM_PACG_KEYS, "NT_ARM_PACG_KEYS", "ARM pointer authentication generic keys" }, { NT_ARM_TAGGED_ADDR_CTRL, "NT_ARM_TAGGED_ADDR_CTRL", "AArch64 tagged address control (prctl())" }, { NT_ARM_PAC_ENABLED_KEYS, "NT_ARM_PAC_ENABLED_KEYS", "AArch64 pointer authentication enabled keys (prctl())" }, { NT_ARC_V2, "NT_ARC_V2", "ARC HS accumulator/extra registers. " }, { NT_LARCH_CPUCFG, "NT_LARCH_CPUCFG", "LoongArch CPU config registers" }, { NT_LARCH_CSR, "NT_LARCH_CSR", "LoongArch Control State Registers" }, { NT_LARCH_LSX, "NT_LARCH_LSX", "LoongArch SIMD eXtension registers" }, { NT_LARCH_LASX, "NT_LARCH_LASX", "LoongArch Advanced SIMD eXtension registers" }, { NT_RISCV_CSR, "NT_RISCV_CSR", "RISC-V Control and Status Registers" }, } }, { "CORE", { { NT_LARCH_LBT, "NT_LARCH_LBT", "LoongArch Binary Translation registers" } } }, { "FreeBSD", { { NT_FREEBSD_THRMISC, "NT_FREEBSD_THRMISC", "Thread miscellaneous info." }, { NT_FREEBSD_PROCSTAT_PROC, "NT_FREEBSD_PROCSTAT_PROC", "Procstat proc data." }, { NT_FREEBSD_PROCSTAT_FILES, "NT_FREEBSD_PROCSTAT_FILES", "Procstat files data." }, { NT_FREEBSD_PROCSTAT_VMMAP, "NT_FREEBSD_PROCSTAT_VMMAP", "Procstat vmmap data." }, { NT_FREEBSD_PROCSTAT_GROUPS, "NT_FREEBSD_PROCSTAT_GROUPS", "Procstat groups data." }, { NT_FREEBSD_PROCSTAT_UMASK, "NT_FREEBSD_PROCSTAT_UMASK", "Procstat umask data." }, { NT_FREEBSD_PROCSTAT_RLIMIT, "NT_FREEBSD_PROCSTAT_RLIMIT", "Procstat rlimit data." }, { NT_FREEBSD_PROCSTAT_OSREL, "NT_FREEBSD_PROCSTAT_OSREL", "Procstat osreldate data." }, { NT_FREEBSD_PROCSTAT_PSSTRINGS, "NT_FREEBSD_PROCSTAT_PSSTRINGS", "Procstat ps_strings data." }, { NT_FREEBSD_PROCSTAT_AUXV, "NT_FREEBSD_PROCSTAT_AUXV", "Procstat auxv data." }, { NT_FREEBSD_PTLWPINFO, "NT_FREEBSD_PTLWPINFO", "Thread ptrace miscellaneous info." }, } }, { "NetBSD-CORE", { { NT_NETBSDCORE_PROCINFO, "NT_NETBSDCORE_PROCINFO", "Has a struct procinfo" }, { NT_NETBSDCORE_AUXV, "NT_NETBSDCORE_AUXV", "Has auxv data" }, { NT_NETBSDCORE_LWPSTATUS, "NT_NETBSDCORE_LWPSTATUS", "Has LWPSTATUS data" }, { NT_NETBSDCORE_FIRSTMACH, "NT_NETBSDCORE_FIRSTMACH", "start of machdep note types" }, } }, { "OpenBSD", { { NT_OPENBSD_PROCINFO, "NT_OPENBSD_PROCINFO", "" }, { NT_OPENBSD_AUXV, "NT_OPENBSD_AUXV", "" }, { NT_OPENBSD_REGS, "NT_OPENBSD_REGS", "" }, { NT_OPENBSD_FPREGS, "NT_OPENBSD_FPREGS", "" }, { NT_OPENBSD_XFPREGS, "NT_OPENBSD_XFPREGS", "" }, { NT_OPENBSD_WCOOKIE, "NT_OPENBSD_WCOOKIE", "" }, } }, { "SPU", { { NT_SPU, "NT_SPU", "" } } }, { "GNU", { { NT_GNU_ABI_TAG, "NT_GNU_ABI_TAG", "GNU ABI tag" }, { NT_GNU_HWCAP, "NT_GNU_HWCAP", "Used by ld.so and kernel vDSO" }, { NT_GNU_BUILD_ID, "NT_GNU_BUILD_ID", "Build ID of the binary" }, { NT_GNU_GOLD_VERSION, "NT_GNU_GOLD_VERSION", "Version of GNU gold used to link the binary" }, { NT_GNU_PROPERTY_TYPE_0, "NT_GNU_PROPERTY_TYPE_0", "Property type 0" }, // { NT_GNU_PROPERTY_TYPE_1, "NT_GNU_PROPERTY_TYPE_1", "Property type 1" }, // { NT_GNU_PROPERTY_TYPE_2, "NT_GNU_PROPERTY_TYPE_2", "Property type 2" }, // { NT_GNU_PROPERTY_TYPE_3, "NT_GNU_PROPERTY_TYPE_3", "Property type 3" }, // { NT_GNU_PROPERTY_TYPE_4, "NT_GNU_PROPERTY_TYPE_4", "Property type 4" }, // { NT_GNU_PROPERTY_TYPE_5, "NT_GNU_PROPERTY_TYPE_5", "Property type 5" }, // { NT_GNU_PROPERTY_TYPE_6, "NT_GNU_PROPERTY_TYPE_6", "Property type 6" }, // { NT_GNU_PROPERTY_TYPE_7, "NT_GNU_PROPERTY_TYPE_7", "Property type 7" }, // { NT_GNU_PROPERTY_TYPE_8, "NT_GNU_PROPERTY_TYPE_8", "Property type 8" }, // { NT_GNU_PROPERTY_TYPE_9, "NT_GNU_PROPERTY_TYPE_9", "Property type 9" }, // { NT_GNU_PROPERTY_TYPE_10, "NT_GNU_PROPERTY_TYPE_10", "Property type 10" }, // { NT_GNU_PROPERTY_TYPE_11, "NT_GNU_PROPERTY_TYPE_11", "Property type 11" }, // { NT_GNU_PROPERTY_TYPE_12, "NT_GNU_PROPERTY_TYPE_12", "Property type 12" }, // { NT_GNU_PROPERTY_TYPE_13, "NT_GNU_PROPERTY_TYPE_13", "Property type 13" }, // { NT_GNU_PROPERTY_TYPE_14, "NT_GNU_PROPERTY_TYPE_14", "Property type 14" }, } }, // { "SOLARIS", // { { NT_SOLARIS_AUXV, "NT_SOLARIS_AUXV", "" } // } }, // { "AIX", // { { NT_AIX_AUXV, "NT_AIX_AUXV", "" } // } }, // { "IRIX", // { { NT_IRIX_FPREGS, "NT_IRIX_FPREGS", "" } // } }, }; // clang-format on #define NT_LARCH_LBT 0xa04 /* LoongArch Binary Translation registers */ /* note name must be "CORE". */ static const ELFIO::Elf_Xword MAX_DATA_ENTRIES = 64; //------------------------------------------------------------------------------ class dump { #define DUMP_DEC_FORMAT( width ) \ std::setw( width ) << std::setfill( ' ' ) << std::dec << std::right #define DUMP_HEX0x_FORMAT( width ) \ "0x" << std::setw( width ) << std::setfill( '0' ) << std::hex << std::right #define DUMP_HEX_FORMAT( width ) \ std::setw( width ) << std::setfill( '0' ) << std::hex << std::right #define DUMP_STR_FORMAT( width ) \ std::setw( width ) << std::setfill( ' ' ) << std::hex << std::left public: //------------------------------------------------------------------------------ static void header( std::ostream& out, const elfio& reader ) { if ( !reader.get_header_size() ) { return; } out << "ELF Header" << std::endl << std::endl << " Class: " << str_class( reader.get_class() ) << std::endl << " Encoding: " << str_endian( reader.get_encoding() ) << std::endl << " ELFVersion: " << str_version( reader.get_elf_version() ) << std::endl << " Type: " << str_type( reader.get_type() ) << std::endl << " Machine: " << str_machine( reader.get_machine() ) << std::endl << " Version: " << str_version( reader.get_version() ) << std::endl << " Entry: " << "0x" << std::hex << reader.get_entry() << std::endl << " Flags: " << "0x" << std::hex << reader.get_flags() << std::endl << std::endl; } //------------------------------------------------------------------------------ static void section_headers( std::ostream& out, const elfio& reader ) { Elf_Half n = reader.sections.size(); if ( n == 0 ) { return; } out << "Section Headers:" << std::endl; if ( reader.get_class() == ELFCLASS32 ) { // Output for 32-bit out << "[ Nr ] Type Addr Size ES Flg " "Lk Inf Al Name" << std::endl; } else { // Output for 64-bit out << "[ Nr ] Type Addr Size " " Offset Flg" << std::endl << " ES Lk Inf Al Name" << std::endl; } for ( Elf_Half i = 0; i < n; ++i ) { // For all sections section* sec = reader.sections[i]; section_header( out, i, sec, reader.get_class() ); } out << "Key to Flags: W (write), A (alloc), X (execute)\n\n" << std::endl; } //------------------------------------------------------------------------------ static void section_header( std::ostream& out, Elf_Half no, const section* sec, unsigned char elf_class ) { std::ios_base::fmtflags original_flags = out.flags(); // clang-format off if ( elf_class == ELFCLASS32 ) { // Output for 32-bit out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_STR_FORMAT( 17 ) << str_section_type( sec->get_type() ) << " " << DUMP_HEX0x_FORMAT( 8 ) << sec->get_address() << " " << DUMP_HEX0x_FORMAT( 8 ) << sec->get_size() << " " << DUMP_HEX0x_FORMAT( 2 ) << sec->get_entry_size() << " " << DUMP_STR_FORMAT( 3 ) << section_flags( sec->get_flags() ) << " " << DUMP_HEX0x_FORMAT( 2 ) << sec->get_link() << " " << DUMP_HEX0x_FORMAT( 3 ) << sec->get_info() << " " << DUMP_HEX0x_FORMAT( 2 ) << sec->get_addr_align() << " " << DUMP_STR_FORMAT( 17 ) << sec->get_name() << " " << std::endl; } else { // Output for 64-bit out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_STR_FORMAT( 17 ) << str_section_type( sec->get_type() ) << " " << DUMP_HEX0x_FORMAT( 16 ) << sec->get_address() << " " << DUMP_HEX0x_FORMAT( 16 ) << sec->get_size() << " " << DUMP_HEX0x_FORMAT( 8 ) << sec->get_offset() << " " << DUMP_STR_FORMAT( 3) << section_flags( sec->get_flags() ) << std::endl << DUMP_STR_FORMAT( 8 ) << " " << DUMP_HEX0x_FORMAT( 4 ) << sec->get_entry_size() << " " << DUMP_HEX0x_FORMAT( 4 ) << sec->get_link() << " " << DUMP_HEX0x_FORMAT( 4 ) << sec->get_info() << " " << DUMP_HEX0x_FORMAT( 4 ) << sec->get_addr_align() << " " << DUMP_STR_FORMAT( 17 ) << sec->get_name() << std::endl; } // clang-format on out.flags( original_flags ); return; } //------------------------------------------------------------------------------ static void segment_headers( std::ostream& out, const elfio& reader ) { Elf_Half n = reader.segments.size(); if ( n == 0 ) { return; } out << "Program Headers:" << std::endl; if ( reader.get_class() == ELFCLASS32 ) { // Output for 32-bit out << "[ Nr ] Type VirtAddr PhysAddr FileSize " "Mem.Size Flags Align" << std::endl; } else { // Output for 64-bit out << "[ Nr ] Type Offset VirtAddr " " PhysAddr" << std::endl << " FileSize MemSize " " Flags Align" << std::endl; } for ( Elf_Half i = 0; i < n; ++i ) { segment* seg = reader.segments[i]; segment_header( out, i, seg, reader.get_class() ); } out << std::endl; } //------------------------------------------------------------------------------ static void segment_header( std::ostream& out, Elf_Half no, const segment* seg, unsigned int elf_class ) { std::ios_base::fmtflags original_flags = out.flags(); // clang-format off if ( elf_class == ELFCLASS32 ) { // Output for 32-bit out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_STR_FORMAT( 14 ) << str_segment_type( seg->get_type() ) << " " << DUMP_HEX0x_FORMAT( 8 ) << seg->get_virtual_address() << " " << DUMP_HEX0x_FORMAT( 8 ) << seg->get_physical_address() << " " << DUMP_HEX0x_FORMAT( 8 ) << seg->get_file_size() << " " << DUMP_HEX0x_FORMAT( 8 ) << seg->get_memory_size() << " " << DUMP_STR_FORMAT( 8 ) << str_segment_flag( seg->get_flags() ) << " " << DUMP_HEX0x_FORMAT( 8 ) << seg->get_align() << " " << std::endl; } else { // Output for 64-bit out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_STR_FORMAT( 14 ) << str_segment_type( seg->get_type() ) << " " << DUMP_HEX0x_FORMAT( 16 ) << seg->get_offset() << " " << DUMP_HEX0x_FORMAT( 16 ) << seg->get_virtual_address() << " " << DUMP_HEX0x_FORMAT( 16 ) << seg->get_physical_address() << std::endl << DUMP_STR_FORMAT( 23 ) << " " << DUMP_HEX0x_FORMAT( 16 ) << seg->get_file_size() << " " << DUMP_HEX0x_FORMAT( 16 ) << seg->get_memory_size() << " " << DUMP_STR_FORMAT( 3 ) << str_segment_flag( seg->get_flags() ) << " " << DUMP_HEX0x_FORMAT( 1 ) << seg->get_align() << std::endl; } // clang-format on out.flags( original_flags ); } //------------------------------------------------------------------------------ static void symbol_tables( std::ostream& out, const elfio& reader ) { Elf_Half n = reader.sections.size(); for ( Elf_Half i = 0; i < n; ++i ) { // For all sections section* sec = reader.sections[i]; if ( SHT_SYMTAB == sec->get_type() || SHT_DYNSYM == sec->get_type() ) { symbol_section_accessor symbols( reader, sec ); Elf_Xword sym_no = symbols.get_symbols_num(); if ( sym_no > 0 ) { out << "Symbol table (" << sec->get_name() << ")" << std::endl; if ( reader.get_class() == ELFCLASS32 ) { // Output for 32-bit out << "[ Nr ] Value Size Type Bind " " Sect Name" << std::endl; } else { // Output for 64-bit out << "[ Nr ] Value Size " "Type Bind Sect" << std::endl << " Name" << std::endl; } for ( Elf_Xword i = 0; i < sym_no; ++i ) { std::string name; Elf64_Addr value = 0; Elf_Xword size = 0; unsigned char bind = 0; unsigned char type = 0; Elf_Half section = 0; unsigned char other = 0; symbols.get_symbol( i, name, value, size, bind, type, section, other ); symbol_table( out, i, name, value, size, bind, type, section, reader.get_class() ); } out << std::endl; } } } } //------------------------------------------------------------------------------ static void symbol_table( std::ostream& out, Elf_Xword no, std::string& name, Elf64_Addr value, Elf_Xword size, unsigned char bind, unsigned char type, Elf_Half section, unsigned int elf_class ) { std::ios_base::fmtflags original_flags = out.flags(); if ( elf_class == ELFCLASS32 ) { // Output for 32-bit out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_HEX0x_FORMAT( 8 ) << value << " " << DUMP_HEX0x_FORMAT( 8 ) << size << " " << DUMP_STR_FORMAT( 7 ) << str_symbol_type( type ) << " " << DUMP_STR_FORMAT( 8 ) << str_symbol_bind( bind ) << " " << DUMP_DEC_FORMAT( 5 ) << section << " " << DUMP_STR_FORMAT( 1 ) << name << " " << std::endl; } else { // Output for 64-bit out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_HEX0x_FORMAT( 16 ) << value << " " << DUMP_HEX0x_FORMAT( 16 ) << size << " " << DUMP_STR_FORMAT( 7 ) << str_symbol_type( type ) << " " << DUMP_STR_FORMAT( 8 ) << str_symbol_bind( bind ) << " " << DUMP_DEC_FORMAT( 5 ) << section << " " << std::endl << " " << DUMP_STR_FORMAT( 1 ) << name << " " << std::endl; } out.flags( original_flags ); } //------------------------------------------------------------------------------ static void notes( std::ostream& out, const elfio& reader ) { Elf_Half no = reader.sections.size(); for ( Elf_Half i = 0; i < no; ++i ) { // For all sections section* sec = reader.sections[i]; if ( SHT_NOTE == sec->get_type() ) { // Look at notes note_section_accessor notes( reader, sec ); Elf_Word no_notes = notes.get_notes_num(); if ( no > 0 ) { out << "Note section (" << sec->get_name() << ")" << std::endl << " No Name Data size Description" << std::endl; for ( Elf_Word j = 0; j < no_notes; ++j ) { // For all notes Elf_Word type; std::string name; void* desc; Elf_Word descsz; if ( notes.get_note( j, type, name, desc, descsz ) ) { // 'name' usually contains \0 at the end. Remove it name = name.c_str(); note( out, j, type, name, desc, descsz ); out << std::endl; } } out << std::endl; } } } no = reader.segments.size(); for ( Elf_Half i = 0; i < no; ++i ) { // For all segments segment* seg = reader.segments[i]; if ( PT_NOTE == seg->get_type() ) { // Look at notes note_segment_accessor notes( reader, seg ); Elf_Word no_notes = notes.get_notes_num(); if ( no > 0 ) { out << "Note segment (" << i << ")" << std::endl << " No Name Data size Description" << std::endl; for ( Elf_Word j = 0; j < no_notes; ++j ) { // For all notes Elf_Word type; std::string name; void* desc; Elf_Word descsz; if ( notes.get_note( j, type, name, desc, descsz ) ) { // 'name' usually contains \0 at the end. Remove it name = name.c_str(); note( out, j, type, name, desc, descsz ); out << std::endl; } } out << std::endl; } } } } //------------------------------------------------------------------------------ static void note( std::ostream& out, int no, Elf_Word type, const std::string& name, void* desc, Elf_Word descsz ) { out << " [" << DUMP_DEC_FORMAT( 2 ) << no << "] "; const note_tag_t* name_group = std::end( note_tag_table ); std::vector::const_iterator type_value; name_group = std::find_if( std::begin( note_tag_table ), std::end( note_tag_table ), [&name]( const note_tag_t& entry ) { return entry.name == name; } ); if ( name_group != std::end( note_tag_table ) ) { type_value = std::find_if( name_group->values.begin(), name_group->values.end(), [&type]( const note_tag_t::note_values_t& e ) { return e.type == type; } ); } if ( name_group != std::end( note_tag_table ) && type_value != name_group->values.end() ) { out << DUMP_STR_FORMAT( 12 ) << name_group->name << " " << DUMP_HEX0x_FORMAT( 8 ) << descsz << " " << type_value->type_str << " (" << type_value->description << ")"; } else { out << DUMP_STR_FORMAT( 12 ) << name << " " << DUMP_HEX0x_FORMAT( 8 ) << descsz << " " << DUMP_HEX0x_FORMAT( 8 ) << type; } if ( descsz != 0 ) { for ( Elf_Word i = 0; i < descsz; ++i ) { if ( i % 16 == 0 ) { out << std::endl << " "; } out << DUMP_HEX_FORMAT( 2 ) << (uint32_t)( (uint8_t*)( desc ) )[i]; } } } //------------------------------------------------------------------------------ static void modinfo( std::ostream& out, const elfio& reader ) { Elf_Half no = reader.sections.size(); for ( Elf_Half i = 0; i < no; ++i ) { // For all sections section* sec = reader.sections[i]; if ( ".modinfo" == sec->get_name() ) { // Look for the section out << "Section .modinfo" << std::endl; const_modinfo_section_accessor modinfo( sec ); for ( Elf_Word i = 0; i < modinfo.get_attribute_num(); i++ ) { std::string field; std::string value; if ( modinfo.get_attribute( i, field, value ) ) { out << " " << std::setw( 20 ) << field << std::setw( 0 ) << " = " << value << std::endl; } } out << std::endl; break; } } } //------------------------------------------------------------------------------ static void dynamic_tags( std::ostream& out, const elfio& reader ) { Elf_Half n = reader.sections.size(); for ( Elf_Half i = 0; i < n; ++i ) { // For all sections section* sec = reader.sections[i]; if ( SHT_DYNAMIC == sec->get_type() ) { dynamic_section_accessor dynamic( reader, sec ); Elf_Xword dyn_no = dynamic.get_entries_num(); if ( dyn_no > 0 ) { out << "Dynamic section (" << sec->get_name() << ")" << std::endl; out << "[ Nr ] Tag Name/Value" << std::endl; for ( Elf_Xword i = 0; i < dyn_no; ++i ) { Elf_Xword tag = 0; Elf_Xword value = 0; std::string str; dynamic.get_entry( i, tag, value, str ); dynamic_tag( out, i, tag, value, str, reader.get_class() ); if ( DT_NULL == tag ) { break; } } out << std::endl; } } } } //------------------------------------------------------------------------------ static void dynamic_tag( std::ostream& out, Elf_Xword no, Elf_Xword tag, Elf_Xword value, std::string str, unsigned int /*elf_class*/ ) { out << "[" << DUMP_DEC_FORMAT( 5 ) << no << "] " << DUMP_STR_FORMAT( 16 ) << str_dynamic_tag( tag ) << " "; if ( str.empty() ) { out << DUMP_HEX0x_FORMAT( 16 ) << value << " "; } else { out << DUMP_STR_FORMAT( 32 ) << str << " "; } out << std::endl; } //------------------------------------------------------------------------------ static void section_data( std::ostream& out, const section* sec ) { std::ios_base::fmtflags original_flags = out.flags(); out << sec->get_name() << std::endl; const char* pdata = sec->get_data(); if ( pdata ) { ELFIO::Elf_Xword i; for ( i = 0; i < std::min( sec->get_size(), MAX_DATA_ENTRIES ); ++i ) { if ( i % 16 == 0 ) { out << "[" << DUMP_HEX0x_FORMAT( 8 ) << i << "]"; } out << " " << DUMP_HEX0x_FORMAT( 2 ) << ( pdata[i] & 0x000000FF ); if ( i % 16 == 15 ) { out << std::endl; } } if ( i % 16 != 0 ) { out << std::endl; } out.flags( original_flags ); } return; } //------------------------------------------------------------------------------ static void section_datas( std::ostream& out, const elfio& reader ) { Elf_Half n = reader.sections.size(); if ( n == 0 ) { return; } out << "Section Data:" << std::endl; for ( Elf_Half i = 1; i < n; ++i ) { // For all sections section* sec = reader.sections[i]; if ( sec->get_type() == SHT_NOBITS ) { continue; } section_data( out, sec ); } out << std::endl; } //------------------------------------------------------------------------------ static void segment_data( std::ostream& out, Elf_Half no, const segment* seg ) { std::ios_base::fmtflags original_flags = out.flags(); out << "Segment # " << no << std::endl; const char* pdata = seg->get_data(); if ( pdata ) { ELFIO::Elf_Xword i; for ( i = 0; i < std::min( seg->get_file_size(), MAX_DATA_ENTRIES ); ++i ) { if ( i % 16 == 0 ) { out << "[" << DUMP_HEX0x_FORMAT( 8 ) << i << "]"; } out << " " << DUMP_HEX0x_FORMAT( 2 ) << ( pdata[i] & 0x000000FF ); if ( i % 16 == 15 ) { out << std::endl; } } if ( i % 16 != 0 ) { out << std::endl; } out.flags( original_flags ); } return; } //------------------------------------------------------------------------------ static void segment_datas( std::ostream& out, const elfio& reader ) { Elf_Half n = reader.segments.size(); if ( n == 0 ) { return; } out << "Segment Data:" << std::endl; for ( Elf_Half i = 0; i < n; ++i ) { // For all sections segment* seg = reader.segments[i]; segment_data( out, i, seg ); } out << std::endl; } //------------------------------------------------------------------------------ #define STR_FUNC_TABLE( name ) \ template static std::string str_##name( const T key ) \ { \ return format_assoc( name##_table, key ); \ } STR_FUNC_TABLE( class ) STR_FUNC_TABLE( endian ) STR_FUNC_TABLE( version ) STR_FUNC_TABLE( type ) STR_FUNC_TABLE( machine ) STR_FUNC_TABLE( section_type ) STR_FUNC_TABLE( segment_type ) STR_FUNC_TABLE( segment_flag ) STR_FUNC_TABLE( symbol_bind ) STR_FUNC_TABLE( symbol_type ) STR_FUNC_TABLE( dynamic_tag ) #undef STR_FUNC_TABLE private: //------------------------------------------------------------------------------ template std::string static find_value_in_table( const T& table, const K& key ) { std::string res = "?"; for ( unsigned int i = 0; i < sizeof( table ) / sizeof( table[0] ); ++i ) { if ( table[i].key == key ) { res = table[i].str; break; } } return res; } //------------------------------------------------------------------------------ template static std::string format_assoc( const T& table, const K& key ) { std::string str = find_value_in_table( table, key ); if ( str == "?" ) { std::ostringstream oss; oss << str << " (0x" << std::hex << key << ")"; str = oss.str(); } return str; } //------------------------------------------------------------------------------ template static std::string format_assoc( const T& table, const char key ) { return format_assoc( table, (const int)key ); } //------------------------------------------------------------------------------ static std::string section_flags( Elf_Xword flags ) { std::string ret = ""; if ( flags & SHF_WRITE ) { ret += "W"; } if ( flags & SHF_ALLOC ) { ret += "A"; } if ( flags & SHF_EXECINSTR ) { ret += "X"; } return ret; } #undef DUMP_DEC_FORMAT #undef DUMP_HEX0x_FORMAT #undef DUMP_STR_FORMAT }; // class dump } // namespace ELFIO #endif // ELFIO_DUMP_HPP mstflint-4.26.0/mlxdpa/elfio/elfio.hpp0000755000175000017500000011533014522641732020103 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_HPP #define ELFIO_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define ELFIO_HEADER_ACCESS_GET( TYPE, FNAME ) \ TYPE get_##FNAME() const { return header ? ( header->get_##FNAME() ) : 0; } #define ELFIO_HEADER_ACCESS_GET_SET( TYPE, FNAME ) \ TYPE get_##FNAME() const \ { \ return header ? ( header->get_##FNAME() ) : 0; \ } \ void set_##FNAME( TYPE val ) \ { \ if ( header ) { \ header->set_##FNAME( val ); \ } \ } namespace ELFIO { //------------------------------------------------------------------------------ class elfio { public: //------------------------------------------------------------------------------ elfio() noexcept : sections( this ), segments( this ) { header = nullptr; current_file_pos = 0; create( ELFCLASS32, ELFDATA2LSB ); } elfio( elfio&& other ) noexcept : sections( this ), segments( this ) { header = std::move( other.header ); sections_ = std::move( other.sections_ ); segments_ = std::move( other.segments_ ); convertor = std::move( other.convertor ); addr_translator = std::move( other.addr_translator ); current_file_pos = std::move( other.current_file_pos ); other.header = nullptr; other.sections_.clear(); other.segments_.clear(); } elfio& operator=( elfio&& other ) noexcept { if ( this != &other ) { clean(); header = std::move( other.header ); sections_ = std::move( other.sections_ ); segments_ = std::move( other.segments_ ); convertor = std::move( other.convertor ); addr_translator = std::move( other.addr_translator ); current_file_pos = std::move( other.current_file_pos ); other.header = nullptr; other.sections_.clear(); other.segments_.clear(); } return *this; } //------------------------------------------------------------------------------ // clang-format off elfio( const elfio& ) = delete; elfio& operator=( const elfio& ) = delete; // clang-format on //------------------------------------------------------------------------------ ~elfio() { clean(); } //------------------------------------------------------------------------------ void create( unsigned char file_class, unsigned char encoding ) { clean(); convertor.setup( encoding ); header = create_header( file_class, encoding ); create_mandatory_sections(); } void set_address_translation( std::vector& addr_trans ) { addr_translator.set_address_translation( addr_trans ); } //------------------------------------------------------------------------------ bool load( const std::string& file_name ) { std::ifstream stream; stream.open( file_name.c_str(), std::ios::in | std::ios::binary ); if ( !stream ) { return false; } return load( stream ); } //------------------------------------------------------------------------------ bool load( std::istream& stream ) { clean(); unsigned char e_ident[EI_NIDENT] = { 0 }; // Read ELF file signature stream.seekg( addr_translator[0] ); stream.read( reinterpret_cast( &e_ident ), sizeof( e_ident ) ); // Is it ELF file? if ( stream.gcount() != sizeof( e_ident ) || e_ident[EI_MAG0] != ELFMAG0 || e_ident[EI_MAG1] != ELFMAG1 || e_ident[EI_MAG2] != ELFMAG2 || e_ident[EI_MAG3] != ELFMAG3 ) { return false; } if ( ( e_ident[EI_CLASS] != ELFCLASS64 ) && ( e_ident[EI_CLASS] != ELFCLASS32 ) ) { return false; } if ( ( e_ident[EI_DATA] != ELFDATA2LSB ) && ( e_ident[EI_DATA] != ELFDATA2MSB ) ) { return false; } convertor.setup( e_ident[EI_DATA] ); header = create_header( e_ident[EI_CLASS], e_ident[EI_DATA] ); if ( nullptr == header ) { return false; } if ( !header->load( stream ) ) { return false; } load_sections( stream ); bool is_still_good = load_segments( stream ); return is_still_good; } //------------------------------------------------------------------------------ bool save( const std::string& file_name ) { std::ofstream stream; stream.open( file_name.c_str(), std::ios::out | std::ios::binary ); if ( !stream ) { return false; } return save( stream ); } //------------------------------------------------------------------------------ bool save( std::ostream& stream ) { if ( !stream || header == nullptr ) { return false; } // Define layout specific header fields // The position of the segment table is fixed after the header. // The position of the section table is variable and needs to be fixed // before saving. header->set_segments_num( segments.size() ); header->set_segments_offset( segments.size() > 0 ? header->get_header_size() : 0 ); header->set_sections_num( sections.size() ); header->set_sections_offset( 0 ); // Layout the first section right after the segment table current_file_pos = header->get_header_size() + header->get_segment_entry_size() * static_cast( header->get_segments_num() ); calc_segment_alignment(); bool is_still_good = layout_segments_and_their_sections(); is_still_good = is_still_good && layout_sections_without_segments(); is_still_good = is_still_good && layout_section_table(); is_still_good = is_still_good && save_header( stream ); is_still_good = is_still_good && save_sections( stream ); is_still_good = is_still_good && save_segments( stream ); return is_still_good; } //------------------------------------------------------------------------------ // ELF header access functions ELFIO_HEADER_ACCESS_GET( unsigned char, class ); ELFIO_HEADER_ACCESS_GET( unsigned char, elf_version ); ELFIO_HEADER_ACCESS_GET( unsigned char, encoding ); ELFIO_HEADER_ACCESS_GET( Elf_Word, version ); ELFIO_HEADER_ACCESS_GET( Elf_Half, header_size ); ELFIO_HEADER_ACCESS_GET( Elf_Half, section_entry_size ); ELFIO_HEADER_ACCESS_GET( Elf_Half, segment_entry_size ); ELFIO_HEADER_ACCESS_GET_SET( unsigned char, os_abi ); ELFIO_HEADER_ACCESS_GET_SET( unsigned char, abi_version ); ELFIO_HEADER_ACCESS_GET_SET( Elf_Half, type ); ELFIO_HEADER_ACCESS_GET_SET( Elf_Half, machine ); ELFIO_HEADER_ACCESS_GET_SET( Elf_Word, flags ); ELFIO_HEADER_ACCESS_GET_SET( Elf64_Addr, entry ); ELFIO_HEADER_ACCESS_GET_SET( Elf64_Off, sections_offset ); ELFIO_HEADER_ACCESS_GET_SET( Elf64_Off, segments_offset ); ELFIO_HEADER_ACCESS_GET_SET( Elf_Half, section_name_str_index ); //------------------------------------------------------------------------------ const endianess_convertor& get_convertor() const { return convertor; } //------------------------------------------------------------------------------ Elf_Xword get_default_entry_size( Elf_Word section_type ) const { switch ( section_type ) { case SHT_RELA: if ( header->get_class() == ELFCLASS64 ) { return sizeof( Elf64_Rela ); } else { return sizeof( Elf32_Rela ); } case SHT_REL: if ( header->get_class() == ELFCLASS64 ) { return sizeof( Elf64_Rel ); } else { return sizeof( Elf32_Rel ); } case SHT_SYMTAB: if ( header->get_class() == ELFCLASS64 ) { return sizeof( Elf64_Sym ); } else { return sizeof( Elf32_Sym ); } case SHT_DYNAMIC: if ( header->get_class() == ELFCLASS64 ) { return sizeof( Elf64_Dyn ); } else { return sizeof( Elf32_Dyn ); } default: return 0; } } //------------------------------------------------------------------------------ //! returns an empty string if no problems are detected, //! or a string containing an error message if problems are found, //! with one error per line. std::string validate() const { // clang-format off std::string errors; // Check for overlapping sections in the file // This is explicitly forbidden by ELF specification for ( int i = 0; i < sections.size(); ++i) { for ( int j = i+1; j < sections.size(); ++j ) { const section* a = sections[i]; const section* b = sections[j]; if ( ((a->get_type() & SHT_NOBITS) == 0) && ((b->get_type() & SHT_NOBITS) == 0) && (a->get_size() > 0) && (b->get_size() > 0) && (a->get_offset() > 0) && (b->get_offset() > 0)) { if ( is_offset_in_section( a->get_offset(), b ) || is_offset_in_section( a->get_offset()+a->get_size()-1, b ) || is_offset_in_section( b->get_offset(), a ) || is_offset_in_section( b->get_offset()+b->get_size()-1, a )) { errors += "Sections " + a->get_name() + " and " + b->get_name() + " overlap in file\n"; } } } } // Check for conflicting section / program header tables, where // the same offset has different vaddresses in section table and // program header table. // This doesn't seem to be explicitly forbidden by ELF specification, // but: // - it doesn't make any sense // - ELFIO relies on this being consistent when writing ELF files, // since offsets are re-calculated from vaddress for ( int h = 0; h < segments.size(); ++h ) { const segment* seg = segments[h]; if ( seg->get_type() == PT_LOAD && seg->get_file_size() > 0 ) { const section* sec = find_prog_section_for_offset( seg->get_offset() ); if ( sec != nullptr ) { Elf64_Addr sec_addr = get_virtual_addr( seg->get_offset(), sec ); if ( sec_addr != seg->get_virtual_address() ) { errors += "Virtual address of segment " + std::to_string( h ) + " (" + to_hex_string( seg->get_virtual_address() ) + ")" + " conflicts with address of section " + sec->get_name() + " (" + to_hex_string( sec_addr ) + ")" + " at offset " + to_hex_string( seg->get_offset() ) + "\n"; } } } } // more checks to be added here... return errors; // clang-format on } private: //------------------------------------------------------------------------------ static bool is_offset_in_section( Elf64_Off offset, const section* sec ) { return ( offset >= sec->get_offset() ) && ( offset < ( sec->get_offset() + sec->get_size() ) ); } //------------------------------------------------------------------------------ static Elf64_Addr get_virtual_addr( Elf64_Off offset, const section* sec ) { return sec->get_address() + offset - sec->get_offset(); } //------------------------------------------------------------------------------ const section* find_prog_section_for_offset( Elf64_Off offset ) const { for ( auto* sec : sections ) { if ( sec->get_type() == SHT_PROGBITS && is_offset_in_section( offset, sec ) ) { return sec; } } return nullptr; } //------------------------------------------------------------------------------ void clean() { delete header; header = nullptr; for ( auto* it : sections_ ) { delete it; } sections_.clear(); for ( auto* it : segments_ ) { delete it; } segments_.clear(); } //------------------------------------------------------------------------------ elf_header* create_header( unsigned char file_class, unsigned char encoding ) { elf_header* new_header = nullptr; if ( file_class == ELFCLASS64 ) { new_header = new elf_header_impl( &convertor, encoding, &addr_translator ); } else if ( file_class == ELFCLASS32 ) { new_header = new elf_header_impl( &convertor, encoding, &addr_translator ); } else { return nullptr; } return new_header; } //------------------------------------------------------------------------------ section* create_section() { section* new_section = nullptr; unsigned char file_class = get_class(); if ( file_class == ELFCLASS64 ) { new_section = new section_impl( &convertor, &addr_translator ); } else if ( file_class == ELFCLASS32 ) { new_section = new section_impl( &convertor, &addr_translator ); } else { return nullptr; } new_section->set_index( static_cast( sections_.size() ) ); sections_.emplace_back( new_section ); return new_section; } //------------------------------------------------------------------------------ segment* create_segment() { segment* new_segment = nullptr; unsigned char file_class = header->get_class(); if ( file_class == ELFCLASS64 ) { new_segment = new segment_impl( &convertor, &addr_translator ); } else if ( file_class == ELFCLASS32 ) { new_segment = new segment_impl( &convertor, &addr_translator ); } else { return nullptr; } new_segment->set_index( static_cast( segments_.size() ) ); segments_.emplace_back( new_segment ); return new_segment; } //------------------------------------------------------------------------------ void create_mandatory_sections() { // Create null section without calling to 'add_section' as no string // section containing section names exists yet section* sec0 = create_section(); sec0->set_index( 0 ); sec0->set_name( "" ); sec0->set_name_string_offset( 0 ); set_section_name_str_index( 1 ); section* shstrtab = sections.add( ".shstrtab" ); shstrtab->set_type( SHT_STRTAB ); shstrtab->set_addr_align( 1 ); } //------------------------------------------------------------------------------ Elf_Half load_sections( std::istream& stream ) { Elf_Half entry_size = header->get_section_entry_size(); Elf_Half num = header->get_sections_num(); Elf64_Off offset = header->get_sections_offset(); for ( Elf_Half i = 0; i < num; ++i ) { section* sec = create_section(); sec->load( stream, static_cast( offset ) + static_cast( i ) * entry_size ); sec->set_index( i ); // To mark that the section is not permitted to reassign address // during layout calculation sec->set_address( sec->get_address() ); } Elf_Half shstrndx = get_section_name_str_index(); if ( SHN_UNDEF != shstrndx ) { string_section_accessor str_reader( sections[shstrndx] ); for ( Elf_Half i = 0; i < num; ++i ) { Elf_Word section_offset = sections[i]->get_name_string_offset(); const char* p = str_reader.get_string( section_offset ); if ( p != nullptr ) { sections[i]->set_name( p ); } } } return num; } //------------------------------------------------------------------------------ //! Checks whether the addresses of the section entirely fall within the given segment. //! It doesn't matter if the addresses are memory addresses, or file offsets, //! they just need to be in the same address space static bool is_sect_in_seg( Elf64_Off sect_begin, Elf_Xword sect_size, Elf64_Off seg_begin, Elf64_Off seg_end ) { return ( seg_begin <= sect_begin ) && ( sect_begin + sect_size <= seg_end ) && ( sect_begin < seg_end ); // this is important criteria when sect_size == 0 // Example: seg_begin=10, seg_end=12 (-> covering the bytes 10 and 11) // sect_begin=12, sect_size=0 -> shall return false! } //------------------------------------------------------------------------------ bool load_segments( std::istream& stream ) { Elf_Half entry_size = header->get_segment_entry_size(); Elf_Half num = header->get_segments_num(); Elf64_Off offset = header->get_segments_offset(); for ( Elf_Half i = 0; i < num; ++i ) { segment* seg = nullptr; unsigned char file_class = header->get_class(); if ( file_class == ELFCLASS64 ) { seg = new segment_impl( &convertor, &addr_translator ); } else if ( file_class == ELFCLASS32 ) { seg = new segment_impl( &convertor, &addr_translator ); } else { return false; } seg->load( stream, static_cast( offset ) + static_cast( i ) * entry_size ); seg->set_index( i ); // Add sections to the segments (similar to readelfs algorithm) Elf64_Off segBaseOffset = seg->get_offset(); Elf64_Off segEndOffset = segBaseOffset + seg->get_file_size(); Elf64_Off segVBaseAddr = seg->get_virtual_address(); Elf64_Off segVEndAddr = segVBaseAddr + seg->get_memory_size(); for ( auto* psec : sections ) { // SHF_ALLOC sections are matched based on the virtual address // otherwise the file offset is matched if ( ( ( psec->get_flags() & SHF_ALLOC ) == SHF_ALLOC ) ? is_sect_in_seg( psec->get_address(), psec->get_size(), segVBaseAddr, segVEndAddr ) : is_sect_in_seg( psec->get_offset(), psec->get_size(), segBaseOffset, segEndOffset ) ) { // Alignment of segment shall not be updated, to preserve original value // It will be re-calculated on saving. seg->add_section_index( psec->get_index(), 0 ); } } // Add section into the segments' container segments_.emplace_back( seg ); } return true; } //------------------------------------------------------------------------------ bool save_header( std::ostream& stream ) { return header->save( stream ); } //------------------------------------------------------------------------------ bool save_sections( std::ostream& stream ) { for ( auto* sec : sections_ ) { std::streampos headerPosition = static_cast( header->get_sections_offset() ) + static_cast( header->get_section_entry_size() ) * sec->get_index(); sec->save( stream, headerPosition, sec->get_offset() ); } return true; } //------------------------------------------------------------------------------ bool save_segments( std::ostream& stream ) { for ( auto* seg : segments_ ) { std::streampos headerPosition = static_cast( header->get_segments_offset() ) + static_cast( header->get_segment_entry_size() ) * seg->get_index(); seg->save( stream, headerPosition, seg->get_offset() ); } return true; } //------------------------------------------------------------------------------ bool is_section_without_segment( unsigned int section_index ) const { bool found = false; for ( unsigned int j = 0; !found && ( j < segments.size() ); ++j ) { for ( unsigned int k = 0; !found && ( k < segments[j]->get_sections_num() ); ++k ) { found = segments[j]->get_section_index_at( k ) == section_index; } } return !found; } //------------------------------------------------------------------------------ static bool is_subsequence_of( segment* seg1, segment* seg2 ) { // Return 'true' if sections of seg1 are a subset of sections in seg2 const std::vector& sections1 = seg1->get_sections(); const std::vector& sections2 = seg2->get_sections(); bool found = false; if ( sections1.size() < sections2.size() ) { found = std::includes( sections2.begin(), sections2.end(), sections1.begin(), sections1.end() ); } return found; } //------------------------------------------------------------------------------ std::vector get_ordered_segments() { std::vector res; std::deque worklist; res.reserve( segments.size() ); std::copy( segments_.begin(), segments_.end(), std::back_inserter( worklist ) ); // Bring the segments which start at address 0 to the front size_t nextSlot = 0; for ( size_t i = 0; i < worklist.size(); ++i ) { if ( i != nextSlot && worklist[i]->is_offset_initialized() && worklist[i]->get_offset() == 0 ) { if ( worklist[nextSlot]->get_offset() == 0 ) { ++nextSlot; } std::swap( worklist[i], worklist[nextSlot] ); ++nextSlot; } } while ( !worklist.empty() ) { segment* seg = worklist.front(); worklist.pop_front(); size_t i = 0; for ( ; i < worklist.size(); ++i ) { if ( is_subsequence_of( seg, worklist[i] ) ) { break; } } if ( i < worklist.size() ) { worklist.emplace_back( seg ); } else { res.emplace_back( seg ); } } return res; } //------------------------------------------------------------------------------ bool layout_sections_without_segments() { for ( unsigned int i = 0; i < sections_.size(); ++i ) { if ( is_section_without_segment( i ) ) { section* sec = sections_[i]; Elf_Xword section_align = sec->get_addr_align(); if ( section_align > 1 && current_file_pos % section_align != 0 ) { current_file_pos += section_align - current_file_pos % section_align; } if ( 0 != sec->get_index() ) { sec->set_offset( current_file_pos ); } if ( SHT_NOBITS != sec->get_type() && SHT_NULL != sec->get_type() ) { current_file_pos += sec->get_size(); } } } return true; } //------------------------------------------------------------------------------ void calc_segment_alignment() { for ( auto* seg : segments_ ) { for ( int i = 0; i < seg->get_sections_num(); ++i ) { section* sect = sections_[seg->get_section_index_at( i )]; if ( sect->get_addr_align() > seg->get_align() ) { seg->set_align( sect->get_addr_align() ); } } } } //------------------------------------------------------------------------------ bool layout_segments_and_their_sections() { std::vector worklist; std::vector section_generated( sections.size(), false ); // Get segments in a order in where segments which contain a // sub sequence of other segments are located at the end worklist = get_ordered_segments(); for ( auto* seg : worklist ) { Elf_Xword segment_memory = 0; Elf_Xword segment_filesize = 0; Elf_Xword seg_start_pos = current_file_pos; // Special case: PHDR segment // This segment contains the program headers but no sections if ( seg->get_type() == PT_PHDR && seg->get_sections_num() == 0 ) { seg_start_pos = header->get_segments_offset(); segment_memory = segment_filesize = header->get_segment_entry_size() * static_cast( header->get_segments_num() ); } // Special case: else if ( seg->is_offset_initialized() && seg->get_offset() == 0 ) { seg_start_pos = 0; if ( seg->get_sections_num() > 0 ) { segment_memory = segment_filesize = current_file_pos; } } // New segments with not generated sections // have to be aligned else if ( seg->get_sections_num() > 0 && !section_generated[seg->get_section_index_at( 0 )] ) { Elf_Xword align = seg->get_align() > 0 ? seg->get_align() : 1; Elf64_Off cur_page_alignment = current_file_pos % align; Elf64_Off req_page_alignment = seg->get_virtual_address() % align; Elf64_Off error = req_page_alignment - cur_page_alignment; current_file_pos += ( seg->get_align() + error ) % align; seg_start_pos = current_file_pos; } else if ( seg->get_sections_num() > 0 ) { seg_start_pos = sections[seg->get_section_index_at( 0 )]->get_offset(); } // Write segment's data for ( auto j = 0; j < seg->get_sections_num(); ++j ) { Elf_Half index = seg->get_section_index_at( j ); section* sec = sections[index]; // The NULL section is always generated if ( SHT_NULL == sec->get_type() ) { section_generated[index] = true; continue; } Elf_Xword section_align = 0; // Fix up the alignment if ( !section_generated[index] && sec->is_address_initialized() && SHT_NOBITS != sec->get_type() && SHT_NULL != sec->get_type() && 0 != sec->get_size() ) { // Align the sections based on the virtual addresses // when possible (this is what matters for execution) Elf64_Off req_offset = sec->get_address() - seg->get_virtual_address(); Elf64_Off cur_offset = current_file_pos - seg_start_pos; if ( req_offset < cur_offset ) { // something has gone awfully wrong, abort! // section_align would turn out negative, seeking backwards and overwriting previous data return false; } section_align = req_offset - cur_offset; } else if ( !section_generated[index] && !sec->is_address_initialized() ) { // If no address has been specified then only the section // alignment constraint has to be matched Elf_Xword align = sec->get_addr_align(); if ( align == 0 ) { align = 1; } Elf64_Off error = current_file_pos % align; section_align = ( align - error ) % align; } else if ( section_generated[index] ) { // Alignment for already generated sections section_align = sec->get_offset() - seg_start_pos - segment_filesize; } // Determine the segment file and memory sizes // Special case .tbss section (NOBITS) in non TLS segment if ( ( ( sec->get_flags() & SHF_ALLOC ) == SHF_ALLOC ) && !( ( ( sec->get_flags() & SHF_TLS ) == SHF_TLS ) && ( seg->get_type() != PT_TLS ) && ( SHT_NOBITS == sec->get_type() ) ) ) { segment_memory += sec->get_size() + section_align; } if ( SHT_NOBITS != sec->get_type() ) { segment_filesize += sec->get_size() + section_align; } // Nothing to be done when generating nested segments if ( section_generated[index] ) { continue; } current_file_pos += section_align; // Set the section addresses when missing if ( !sec->is_address_initialized() ) { sec->set_address( seg->get_virtual_address() + current_file_pos - seg_start_pos ); } if ( 0 != sec->get_index() ) { sec->set_offset( current_file_pos ); } if ( SHT_NOBITS != sec->get_type() ) { current_file_pos += sec->get_size(); } section_generated[index] = true; } seg->set_file_size( segment_filesize ); // If we already have a memory size from loading an elf file (value > 0), // it must not shrink! // Memory size may be bigger than file size and it is the loader's job to do something // with the surplus bytes in memory, like initializing them with a defined value. if ( seg->get_memory_size() < segment_memory ) { seg->set_memory_size( segment_memory ); } seg->set_offset( seg_start_pos ); } return true; } //------------------------------------------------------------------------------ bool layout_section_table() { // Simply place the section table at the end for now Elf64_Off alignmentError = current_file_pos % 4; current_file_pos += ( 4 - alignmentError ) % 4; header->set_sections_offset( current_file_pos ); return true; } //------------------------------------------------------------------------------ public: friend class Sections; class Sections { public: //------------------------------------------------------------------------------ explicit Sections( elfio* parent ) : parent( parent ) {} //------------------------------------------------------------------------------ Elf_Half size() const { return static_cast( parent->sections_.size() ); } //------------------------------------------------------------------------------ section* operator[]( unsigned int index ) const { section* sec = nullptr; if ( index < parent->sections_.size() ) { sec = parent->sections_[index]; } return sec; } //------------------------------------------------------------------------------ section* operator[]( const std::string& name ) const { section* sec = nullptr; for ( auto* it : parent->sections_ ) { if ( it->get_name() == name ) { sec = it; break; } } return sec; } //------------------------------------------------------------------------------ section* add( const std::string& name ) { section* new_section = parent->create_section(); new_section->set_name( name ); Elf_Half str_index = parent->get_section_name_str_index(); section* string_table( parent->sections_[str_index] ); string_section_accessor str_writer( string_table ); Elf_Word pos = str_writer.add_string( name ); new_section->set_name_string_offset( pos ); return new_section; } //------------------------------------------------------------------------------ std::vector::iterator begin() { return parent->sections_.begin(); } //------------------------------------------------------------------------------ std::vector::iterator end() { return parent->sections_.end(); } //------------------------------------------------------------------------------ std::vector::const_iterator begin() const { return parent->sections_.cbegin(); } //------------------------------------------------------------------------------ std::vector::const_iterator end() const { return parent->sections_.cend(); } //------------------------------------------------------------------------------ private: elfio* parent; } sections; //------------------------------------------------------------------------------ friend class Segments; class Segments { public: //------------------------------------------------------------------------------ explicit Segments( elfio* parent ) : parent( parent ) {} //------------------------------------------------------------------------------ Elf_Half size() const { return static_cast( parent->segments_.size() ); } //------------------------------------------------------------------------------ segment* operator[]( unsigned int index ) const { return parent->segments_[index]; } //------------------------------------------------------------------------------ segment* add() { return parent->create_segment(); } //------------------------------------------------------------------------------ std::vector::iterator begin() { return parent->segments_.begin(); } //------------------------------------------------------------------------------ std::vector::iterator end() { return parent->segments_.end(); } //------------------------------------------------------------------------------ std::vector::const_iterator begin() const { return parent->segments_.cbegin(); } //------------------------------------------------------------------------------ std::vector::const_iterator end() const { return parent->segments_.cend(); } //------------------------------------------------------------------------------ private: elfio* parent; } segments; //------------------------------------------------------------------------------ private: elf_header* header; std::vector sections_; std::vector segments_; endianess_convertor convertor; address_translator addr_translator; Elf_Xword current_file_pos; }; } // namespace ELFIO #include #include #include #include #include #include #include #endif // ELFIO_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_section.hpp0000755000175000017500000002617314522641732021635 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_SECTION_HPP #define ELFIO_SECTION_HPP #include #include #include #include namespace ELFIO { class section { friend class elfio; public: virtual ~section() = default; ELFIO_GET_ACCESS_DECL( Elf_Half, index ); ELFIO_GET_SET_ACCESS_DECL( std::string, name ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, type ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, flags ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, info ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, link ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, addr_align ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, entry_size ); ELFIO_GET_SET_ACCESS_DECL( Elf64_Addr, address ); ELFIO_GET_SET_ACCESS_DECL( Elf_Xword, size ); ELFIO_GET_SET_ACCESS_DECL( Elf_Word, name_string_offset ); ELFIO_GET_ACCESS_DECL( Elf64_Off, offset ); virtual const char* get_data() const = 0; virtual void set_data( const char* pData, Elf_Word size ) = 0; virtual void set_data( const std::string& data ) = 0; virtual void append_data( const char* pData, Elf_Word size ) = 0; virtual void append_data( const std::string& data ) = 0; virtual size_t get_stream_size() const = 0; virtual void set_stream_size( size_t value ) = 0; protected: ELFIO_SET_ACCESS_DECL( Elf64_Off, offset ); ELFIO_SET_ACCESS_DECL( Elf_Half, index ); virtual void load( std::istream& stream, std::streampos header_offset ) = 0; virtual void save( std::ostream& stream, std::streampos header_offset, std::streampos data_offset ) = 0; virtual bool is_address_initialized() const = 0; }; template class section_impl : public section { public: //------------------------------------------------------------------------------ section_impl( const endianess_convertor* convertor, const address_translator* translator ) : convertor( convertor ), translator( translator ) { std::fill_n( reinterpret_cast( &header ), sizeof( header ), '\0' ); is_address_set = false; data = nullptr; data_size = 0; index = 0; stream_size = 0; } //------------------------------------------------------------------------------ ~section_impl() override { delete[] data; } //------------------------------------------------------------------------------ // Section info functions ELFIO_GET_SET_ACCESS( Elf_Word, type, header.sh_type ); ELFIO_GET_SET_ACCESS( Elf_Xword, flags, header.sh_flags ); ELFIO_GET_SET_ACCESS( Elf_Xword, size, header.sh_size ); ELFIO_GET_SET_ACCESS( Elf_Word, link, header.sh_link ); ELFIO_GET_SET_ACCESS( Elf_Word, info, header.sh_info ); ELFIO_GET_SET_ACCESS( Elf_Xword, addr_align, header.sh_addralign ); ELFIO_GET_SET_ACCESS( Elf_Xword, entry_size, header.sh_entsize ); ELFIO_GET_SET_ACCESS( Elf_Word, name_string_offset, header.sh_name ); ELFIO_GET_ACCESS( Elf64_Addr, address, header.sh_addr ); //------------------------------------------------------------------------------ Elf_Half get_index() const override { return index; } //------------------------------------------------------------------------------ std::string get_name() const override { return name; } //------------------------------------------------------------------------------ void set_name( std::string name ) override { this->name = name; } //------------------------------------------------------------------------------ void set_address( Elf64_Addr value ) override { header.sh_addr = value; header.sh_addr = ( *convertor )( header.sh_addr ); is_address_set = true; } //------------------------------------------------------------------------------ bool is_address_initialized() const override { return is_address_set; } //------------------------------------------------------------------------------ const char* get_data() const override { return data; } //------------------------------------------------------------------------------ void set_data( const char* raw_data, Elf_Word size ) override { if ( get_type() != SHT_NOBITS ) { delete[] data; data = new ( std::nothrow ) char[size]; if ( nullptr != data && nullptr != raw_data ) { data_size = size; std::copy( raw_data, raw_data + size, data ); } else { data_size = 0; } } set_size( data_size ); if ( translator->empty() ) { set_stream_size( data_size ); } } //------------------------------------------------------------------------------ void set_data( const std::string& str_data ) override { return set_data( str_data.c_str(), (Elf_Word)str_data.size() ); } //------------------------------------------------------------------------------ void append_data( const char* raw_data, Elf_Word size ) override { if ( get_type() != SHT_NOBITS ) { if ( get_size() + size < data_size ) { std::copy( raw_data, raw_data + size, data + get_size() ); } else { data_size = 2 * ( data_size + size ); char* new_data = new ( std::nothrow ) char[data_size]; if ( nullptr != new_data ) { std::copy( data, data + get_size(), new_data ); std::copy( raw_data, raw_data + size, new_data + get_size() ); delete[] data; data = new_data; } else { size = 0; } } set_size( get_size() + size ); if ( translator->empty() ) { set_stream_size( get_stream_size() + size ); } } } //------------------------------------------------------------------------------ void append_data( const std::string& str_data ) override { return append_data( str_data.c_str(), (Elf_Word)str_data.size() ); } //------------------------------------------------------------------------------ size_t get_stream_size() const override { return stream_size; } //------------------------------------------------------------------------------ void set_stream_size( size_t value ) override { stream_size = value; } //------------------------------------------------------------------------------ protected: //------------------------------------------------------------------------------ ELFIO_GET_SET_ACCESS( Elf64_Off, offset, header.sh_offset ); //------------------------------------------------------------------------------ void set_index( Elf_Half value ) override { index = value; } //------------------------------------------------------------------------------ void load( std::istream& stream, std::streampos header_offset ) override { std::fill_n( reinterpret_cast( &header ), sizeof( header ), '\0' ); if ( translator->empty() ) { stream.seekg( 0, stream.end ); set_stream_size( stream.tellg() ); } else { set_stream_size( std::numeric_limits::max() ); } stream.seekg( ( *translator )[header_offset] ); stream.read( reinterpret_cast( &header ), sizeof( header ) ); Elf_Xword size = get_size(); if ( nullptr == data && SHT_NULL != get_type() && SHT_NOBITS != get_type() && size < get_stream_size() ) { data = new ( std::nothrow ) char[size + 1]; if ( ( 0 != size ) && ( nullptr != data ) ) { stream.seekg( ( *translator )[( *convertor )( header.sh_offset )] ); stream.read( data, size ); data[size] = 0; // Ensure data is ended with 0 to avoid oob read data_size = size; } else { data_size = 0; } } } //------------------------------------------------------------------------------ void save( std::ostream& stream, std::streampos header_offset, std::streampos data_offset ) override { if ( 0 != get_index() ) { header.sh_offset = data_offset; header.sh_offset = ( *convertor )( header.sh_offset ); } save_header( stream, header_offset ); if ( get_type() != SHT_NOBITS && get_type() != SHT_NULL && get_size() != 0 && data != nullptr ) { save_data( stream, data_offset ); } } //------------------------------------------------------------------------------ private: //------------------------------------------------------------------------------ void save_header( std::ostream& stream, std::streampos header_offset ) const { adjust_stream_size( stream, header_offset ); stream.write( reinterpret_cast( &header ), sizeof( header ) ); } //------------------------------------------------------------------------------ void save_data( std::ostream& stream, std::streampos data_offset ) const { adjust_stream_size( stream, data_offset ); stream.write( get_data(), get_size() ); } //------------------------------------------------------------------------------ private: T header; Elf_Half index; std::string name; char* data; Elf_Word data_size; const endianess_convertor* convertor; const address_translator* translator; bool is_address_set; size_t stream_size; }; } // namespace ELFIO #endif // ELFIO_SECTION_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_dynamic.hpp0000755000175000017500000002022114522641732021601 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_DYNAMIC_HPP #define ELFIO_DYNAMIC_HPP #include namespace ELFIO { //------------------------------------------------------------------------------ template class dynamic_section_accessor_template { public: //------------------------------------------------------------------------------ dynamic_section_accessor_template( const elfio& elf_file, S* section ) : elf_file( elf_file ), dynamic_section( section ), entries_num( 0 ) { } //------------------------------------------------------------------------------ Elf_Xword get_entries_num() const { if ( ( 0 == entries_num ) && ( 0 != dynamic_section->get_entry_size() ) ) { entries_num = dynamic_section->get_size() / dynamic_section->get_entry_size(); Elf_Xword i; Elf_Xword tag; Elf_Xword value; std::string str; for ( i = 0; i < entries_num; i++ ) { get_entry( i, tag, value, str ); if ( tag == DT_NULL ) break; } entries_num = std::min( entries_num, i + 1 ); } return entries_num; } //------------------------------------------------------------------------------ bool get_entry( Elf_Xword index, Elf_Xword& tag, Elf_Xword& value, std::string& str ) const { if ( index >= get_entries_num() ) { // Is index valid return false; } if ( elf_file.get_class() == ELFCLASS32 ) { generic_get_entry_dyn( index, tag, value ); } else { generic_get_entry_dyn( index, tag, value ); } // If the tag may have a string table reference, prepare the string if ( tag == DT_NEEDED || tag == DT_SONAME || tag == DT_RPATH || tag == DT_RUNPATH ) { string_section_accessor strsec( elf_file.sections[get_string_table_index()] ); const char* result = strsec.get_string( value ); if ( nullptr == result ) { str.clear(); return false; } str = result; } else { str.clear(); } return true; } //------------------------------------------------------------------------------ void add_entry( Elf_Xword tag, Elf_Xword value ) { if ( elf_file.get_class() == ELFCLASS32 ) { generic_add_entry_dyn( tag, value ); } else { generic_add_entry_dyn( tag, value ); } } //------------------------------------------------------------------------------ void add_entry( Elf_Xword tag, const std::string& str ) { string_section_accessor strsec( elf_file.sections[get_string_table_index()] ); Elf_Xword value = strsec.add_string( str ); add_entry( tag, value ); } //------------------------------------------------------------------------------ private: //------------------------------------------------------------------------------ Elf_Half get_string_table_index() const { return (Elf_Half)dynamic_section->get_link(); } //------------------------------------------------------------------------------ template void generic_get_entry_dyn( Elf_Xword index, Elf_Xword& tag, Elf_Xword& value ) const { const endianess_convertor& convertor = elf_file.get_convertor(); // Check unusual case when dynamic section has no data if ( dynamic_section->get_data() == nullptr || ( index + 1 ) * dynamic_section->get_entry_size() > dynamic_section->get_size() ) { tag = DT_NULL; value = 0; return; } const T* pEntry = reinterpret_cast( dynamic_section->get_data() + index * dynamic_section->get_entry_size() ); tag = convertor( pEntry->d_tag ); switch ( tag ) { case DT_NULL: case DT_SYMBOLIC: case DT_TEXTREL: case DT_BIND_NOW: value = 0; break; case DT_NEEDED: case DT_PLTRELSZ: case DT_RELASZ: case DT_RELAENT: case DT_STRSZ: case DT_SYMENT: case DT_SONAME: case DT_RPATH: case DT_RELSZ: case DT_RELENT: case DT_PLTREL: case DT_INIT_ARRAYSZ: case DT_FINI_ARRAYSZ: case DT_RUNPATH: case DT_FLAGS: case DT_PREINIT_ARRAYSZ: value = convertor( pEntry->d_un.d_val ); break; case DT_PLTGOT: case DT_HASH: case DT_STRTAB: case DT_SYMTAB: case DT_RELA: case DT_INIT: case DT_FINI: case DT_REL: case DT_DEBUG: case DT_JMPREL: case DT_INIT_ARRAY: case DT_FINI_ARRAY: case DT_PREINIT_ARRAY: default: value = convertor( pEntry->d_un.d_ptr ); break; } } //------------------------------------------------------------------------------ template void generic_add_entry_dyn( Elf_Xword tag, Elf_Xword value ) { const endianess_convertor& convertor = elf_file.get_convertor(); T entry; switch ( tag ) { case DT_NULL: case DT_SYMBOLIC: case DT_TEXTREL: case DT_BIND_NOW: entry.d_un.d_val = convertor( 0 ); break; case DT_NEEDED: case DT_PLTRELSZ: case DT_RELASZ: case DT_RELAENT: case DT_STRSZ: case DT_SYMENT: case DT_SONAME: case DT_RPATH: case DT_RELSZ: case DT_RELENT: case DT_PLTREL: case DT_INIT_ARRAYSZ: case DT_FINI_ARRAYSZ: case DT_RUNPATH: case DT_FLAGS: case DT_PREINIT_ARRAYSZ: entry.d_un.d_val = convertor( value ); break; case DT_PLTGOT: case DT_HASH: case DT_STRTAB: case DT_SYMTAB: case DT_RELA: case DT_INIT: case DT_FINI: case DT_REL: case DT_DEBUG: case DT_JMPREL: case DT_INIT_ARRAY: case DT_FINI_ARRAY: case DT_PREINIT_ARRAY: default: entry.d_un.d_ptr = convertor( value ); break; } entry.d_tag = convertor( tag ); dynamic_section->append_data( reinterpret_cast( &entry ), sizeof( entry ) ); } //------------------------------------------------------------------------------ private: const elfio& elf_file; S* dynamic_section; mutable Elf_Xword entries_num; }; using dynamic_section_accessor = dynamic_section_accessor_template
; using const_dynamic_section_accessor = dynamic_section_accessor_template; } // namespace ELFIO #endif // ELFIO_DYNAMIC_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_symbols.hpp0000755000175000017500000005101514522641732021652 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_SYMBOLS_HPP #define ELFIO_SYMBOLS_HPP namespace ELFIO { //------------------------------------------------------------------------------ template class symbol_section_accessor_template { public: //------------------------------------------------------------------------------ symbol_section_accessor_template( const elfio& elf_file, S* symbol_section ) : elf_file( elf_file ), symbol_section( symbol_section ) { hash_section = nullptr; hash_section_index = 0; find_hash_section(); } //------------------------------------------------------------------------------ Elf_Xword get_symbols_num() const { Elf_Xword nRet = 0; if ( 0 != symbol_section->get_entry_size() && symbol_section->get_size() <= symbol_section->get_stream_size() ) { nRet = symbol_section->get_size() / symbol_section->get_entry_size(); } return nRet; } //------------------------------------------------------------------------------ bool get_symbol( Elf_Xword index, std::string& name, Elf64_Addr& value, Elf_Xword& size, unsigned char& bind, unsigned char& type, Elf_Half& section_index, unsigned char& other ) const { bool ret = false; if ( elf_file.get_class() == ELFCLASS32 ) { ret = generic_get_symbol( index, name, value, size, bind, type, section_index, other ); } else { ret = generic_get_symbol( index, name, value, size, bind, type, section_index, other ); } return ret; } //------------------------------------------------------------------------------ bool get_symbol( const std::string& name, Elf64_Addr& value, Elf_Xword& size, unsigned char& bind, unsigned char& type, Elf_Half& section_index, unsigned char& other ) const { bool ret = false; if ( 0 != get_hash_table_index() ) { if ( hash_section->get_type() == SHT_HASH ) { ret = hash_lookup( name, value, size, bind, type, section_index, other ); } if ( hash_section->get_type() == SHT_GNU_HASH || hash_section->get_type() == DT_GNU_HASH ) { if ( elf_file.get_class() == ELFCLASS32 ) { ret = gnu_hash_lookup( name, value, size, bind, type, section_index, other ); } else { ret = gnu_hash_lookup( name, value, size, bind, type, section_index, other ); } } } if ( !ret ) { for ( Elf_Xword i = 0; !ret && i < get_symbols_num(); i++ ) { std::string symbol_name; if ( get_symbol( i, symbol_name, value, size, bind, type, section_index, other ) ) { if ( symbol_name == name ) { ret = true; } } } } return ret; } //------------------------------------------------------------------------------ bool get_symbol( const Elf64_Addr& value, std::string& name, Elf_Xword& size, unsigned char& bind, unsigned char& type, Elf_Half& section_index, unsigned char& other ) const { const endianess_convertor& convertor = elf_file.get_convertor(); Elf_Xword idx = 0; bool match = false; Elf64_Addr v = 0; if ( elf_file.get_class() == ELFCLASS32 ) { match = generic_search_symbols( [&]( const Elf32_Sym* sym ) { return convertor( sym->st_value ) == value; }, idx ); } else { match = generic_search_symbols( [&]( const Elf64_Sym* sym ) { return convertor( sym->st_value ) == value; }, idx ); } if ( match ) { return get_symbol( idx, name, v, size, bind, type, section_index, other ); } return false; } //------------------------------------------------------------------------------ Elf_Word add_symbol( Elf_Word name, Elf64_Addr value, Elf_Xword size, unsigned char info, unsigned char other, Elf_Half shndx ) { Elf_Word nRet; if ( symbol_section->get_size() == 0 ) { if ( elf_file.get_class() == ELFCLASS32 ) { nRet = generic_add_symbol( 0, 0, 0, 0, 0, 0 ); } else { nRet = generic_add_symbol( 0, 0, 0, 0, 0, 0 ); } } if ( elf_file.get_class() == ELFCLASS32 ) { nRet = generic_add_symbol( name, value, size, info, other, shndx ); } else { nRet = generic_add_symbol( name, value, size, info, other, shndx ); } return nRet; } //------------------------------------------------------------------------------ Elf_Word add_symbol( Elf_Word name, Elf64_Addr value, Elf_Xword size, unsigned char bind, unsigned char type, unsigned char other, Elf_Half shndx ) { return add_symbol( name, value, size, ELF_ST_INFO( bind, type ), other, shndx ); } //------------------------------------------------------------------------------ Elf_Word add_symbol( string_section_accessor& pStrWriter, const char* str, Elf64_Addr value, Elf_Xword size, unsigned char info, unsigned char other, Elf_Half shndx ) { Elf_Word index = pStrWriter.add_string( str ); return add_symbol( index, value, size, info, other, shndx ); } //------------------------------------------------------------------------------ Elf_Word add_symbol( string_section_accessor& pStrWriter, const char* str, Elf64_Addr value, Elf_Xword size, unsigned char bind, unsigned char type, unsigned char other, Elf_Half shndx ) { return add_symbol( pStrWriter, str, value, size, ELF_ST_INFO( bind, type ), other, shndx ); } //------------------------------------------------------------------------------ Elf_Xword arrange_local_symbols( std::function func = nullptr ) { int nRet = 0; if ( elf_file.get_class() == ELFCLASS32 ) { nRet = generic_arrange_local_symbols( func ); } else { nRet = generic_arrange_local_symbols( func ); } return nRet; } //------------------------------------------------------------------------------ private: //------------------------------------------------------------------------------ void find_hash_section() { Elf_Half nSecNo = elf_file.sections.size(); for ( Elf_Half i = 0; i < nSecNo; ++i ) { const section* sec = elf_file.sections[i]; if ( sec->get_link() == symbol_section->get_index() && ( sec->get_type() == SHT_HASH || sec->get_type() == SHT_GNU_HASH || sec->get_type() == DT_GNU_HASH ) ) { hash_section = sec; hash_section_index = i; break; } } } //------------------------------------------------------------------------------ Elf_Half get_string_table_index() const { return (Elf_Half)symbol_section->get_link(); } //------------------------------------------------------------------------------ Elf_Half get_hash_table_index() const { return hash_section_index; } //------------------------------------------------------------------------------ bool hash_lookup( const std::string& name, Elf64_Addr& value, Elf_Xword& size, unsigned char& bind, unsigned char& type, Elf_Half& section_index, unsigned char& other ) const { bool ret = false; const endianess_convertor& convertor = elf_file.get_convertor(); Elf_Word nbucket = *(const Elf_Word*)hash_section->get_data(); nbucket = convertor( nbucket ); Elf_Word nchain = *(const Elf_Word*)( hash_section->get_data() + sizeof( Elf_Word ) ); nchain = convertor( nchain ); Elf_Word val = elf_hash( (const unsigned char*)name.c_str() ); Elf_Word y = *(const Elf_Word*)( hash_section->get_data() + ( 2 + val % nbucket ) * sizeof( Elf_Word ) ); y = convertor( y ); std::string str; get_symbol( y, str, value, size, bind, type, section_index, other ); while ( str != name && STN_UNDEF != y && y < nchain ) { y = *(const Elf_Word*)( hash_section->get_data() + ( 2 + nbucket + y ) * sizeof( Elf_Word ) ); y = convertor( y ); get_symbol( y, str, value, size, bind, type, section_index, other ); } if ( str == name ) { ret = true; } return ret; } //------------------------------------------------------------------------------ template bool gnu_hash_lookup( const std::string& name, Elf64_Addr& value, Elf_Xword& size, unsigned char& bind, unsigned char& type, Elf_Half& section_index, unsigned char& other ) const { bool ret = false; const endianess_convertor& convertor = elf_file.get_convertor(); uint32_t nbuckets = *( (uint32_t*)hash_section->get_data() + 0 ); uint32_t symoffset = *( (uint32_t*)hash_section->get_data() + 1 ); uint32_t bloom_size = *( (uint32_t*)hash_section->get_data() + 2 ); uint32_t bloom_shift = *( (uint32_t*)hash_section->get_data() + 3 ); nbuckets = convertor( nbuckets ); symoffset = convertor( symoffset ); bloom_size = convertor( bloom_size ); bloom_shift = convertor( bloom_shift ); T* bloom_filter = (T*)( hash_section->get_data() + 4 * sizeof( uint32_t ) ); uint32_t hash = elf_gnu_hash( (const unsigned char*)name.c_str() ); uint32_t bloom_index = ( hash / ( 8 * sizeof( T ) ) ) % bloom_size; T bloom_bits = ( (T)1 << ( hash % ( 8 * sizeof( T ) ) ) ) | ( (T)1 << ( ( hash >> bloom_shift ) % ( 8 * sizeof( T ) ) ) ); if ( ( convertor( bloom_filter[bloom_index] ) & bloom_bits ) == bloom_bits ) { uint32_t bucket = hash % nbuckets; auto* buckets = (uint32_t*)( hash_section->get_data() + 4 * sizeof( uint32_t ) + bloom_size * sizeof( T ) ); auto* chains = (uint32_t*)( hash_section->get_data() + 4 * sizeof( uint32_t ) + bloom_size * sizeof( T ) + nbuckets * sizeof( uint32_t ) ); if ( convertor( buckets[bucket] ) >= symoffset ) { uint32_t chain_index = convertor( buckets[bucket] ) - symoffset; uint32_t chain_hash = convertor( chains[chain_index] ); std::string symname; while ( true ) { if ( ( chain_hash >> 1 ) == ( hash >> 1 ) && get_symbol( chain_index + symoffset, symname, value, size, bind, type, section_index, other ) && name == symname ) { ret = true; break; } if ( chain_hash & 1 ) break; chain_hash = convertor( chains[++chain_index] ); } } } return ret; } //------------------------------------------------------------------------------ template const T* generic_get_symbol_ptr( Elf_Xword index ) const { if ( 0 != symbol_section->get_data() && index < get_symbols_num() ) { const T* pSym = reinterpret_cast( symbol_section->get_data() + index * symbol_section->get_entry_size() ); return pSym; } return nullptr; } //------------------------------------------------------------------------------ template bool generic_search_symbols( std::function match, Elf_Xword& idx ) const { for ( Elf_Xword i = 0; i < get_symbols_num(); i++ ) { const T* symPtr = generic_get_symbol_ptr( i ); if ( symPtr == nullptr ) return false; if ( match( symPtr ) ) { idx = i; return true; } } return false; } //------------------------------------------------------------------------------ template bool generic_get_symbol( Elf_Xword index, std::string& name, Elf64_Addr& value, Elf_Xword& size, unsigned char& bind, unsigned char& type, Elf_Half& section_index, unsigned char& other ) const { bool ret = false; if ( nullptr != symbol_section->get_data() && index < get_symbols_num() ) { const T* pSym = reinterpret_cast( symbol_section->get_data() + index * symbol_section->get_entry_size() ); const endianess_convertor& convertor = elf_file.get_convertor(); section* string_section = elf_file.sections[get_string_table_index()]; string_section_accessor str_reader( string_section ); const char* pStr = str_reader.get_string( convertor( pSym->st_name ) ); if ( nullptr != pStr ) { name = pStr; } value = convertor( pSym->st_value ); size = convertor( pSym->st_size ); bind = ELF_ST_BIND( pSym->st_info ); type = ELF_ST_TYPE( pSym->st_info ); section_index = convertor( pSym->st_shndx ); other = pSym->st_other; ret = true; } return ret; } //------------------------------------------------------------------------------ template Elf_Word generic_add_symbol( Elf_Word name, Elf64_Addr value, Elf_Xword size, unsigned char info, unsigned char other, Elf_Half shndx ) { const endianess_convertor& convertor = elf_file.get_convertor(); T entry; entry.st_name = convertor( name ); entry.st_value = value; entry.st_value = convertor( entry.st_value ); entry.st_size = size; entry.st_size = convertor( entry.st_size ); entry.st_info = convertor( info ); entry.st_other = convertor( other ); entry.st_shndx = convertor( shndx ); symbol_section->append_data( reinterpret_cast( &entry ), sizeof( entry ) ); Elf_Word nRet = symbol_section->get_size() / sizeof( entry ) - 1; return nRet; } //------------------------------------------------------------------------------ template Elf_Xword generic_arrange_local_symbols( std::function func ) { const endianess_convertor& convertor = elf_file.get_convertor(); Elf_Xword first_not_local = 1; // Skip the first entry. It is always NOTYPE Elf_Xword current = 0; Elf_Xword count = get_symbols_num(); while ( true ) { T* p1 = nullptr; T* p2 = nullptr; while ( first_not_local < count ) { p1 = const_cast( generic_get_symbol_ptr( first_not_local ) ); if ( ELF_ST_BIND( convertor( p1->st_info ) ) != STB_LOCAL ) break; ++first_not_local; } current = first_not_local + 1; while ( current < count ) { p2 = const_cast( generic_get_symbol_ptr( current ) ); if ( ELF_ST_BIND( convertor( p2->st_info ) ) == STB_LOCAL ) break; ++current; } if ( first_not_local < count && current < count ) { if ( func ) func( first_not_local, current ); std::swap( *p1, *p2 ); } else { // Update 'info' field of the section symbol_section->set_info( first_not_local ); break; } } // Elf_Word nRet = symbol_section->get_size() / sizeof(entry) - 1; return first_not_local; } //------------------------------------------------------------------------------ private: const elfio& elf_file; S* symbol_section; Elf_Half hash_section_index; const section* hash_section; }; using symbol_section_accessor = symbol_section_accessor_template
; using const_symbol_section_accessor = symbol_section_accessor_template; } // namespace ELFIO #endif // ELFIO_SYMBOLS_HPP mstflint-4.26.0/mlxdpa/elfio/elfio_modinfo.hpp0000755000175000017500000001027514522641732021620 0ustar tzafrirctzafrirc/* Copyright (C) 2001-present by Serge Lamikhov-Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef ELFIO_MODINFO_HPP #define ELFIO_MODINFO_HPP #include #include namespace ELFIO { //------------------------------------------------------------------------------ template class modinfo_section_accessor_template { public: //------------------------------------------------------------------------------ modinfo_section_accessor_template( S* section ) : modinfo_section( section ) { process_section(); } //------------------------------------------------------------------------------ Elf_Word get_attribute_num() const { return (Elf_Word)content.size(); } //------------------------------------------------------------------------------ bool get_attribute( Elf_Word no, std::string& field, std::string& value ) const { if ( no < content.size() ) { field = content[no].first; value = content[no].second; return true; } return false; } //------------------------------------------------------------------------------ bool get_attribute( const std::string field_name, std::string& value ) const { for ( auto i : content ) { if ( field_name == i.first ) { value = i.second; return true; } } return false; } //------------------------------------------------------------------------------ Elf_Word add_attribute( const std::string field, const std::string value ) { Elf_Word current_position = 0; if ( modinfo_section ) { // Strings are addeded to the end of the current section data current_position = (Elf_Word)modinfo_section->get_size(); std::string attribute = field + "=" + value; modinfo_section->append_data( attribute + '\0' ); content.emplace_back( field, value ); } return current_position; } //------------------------------------------------------------------------------ private: void process_section() { const char* pdata = modinfo_section->get_data(); if ( pdata ) { ELFIO::Elf_Xword i = 0; while ( i < modinfo_section->get_size() ) { while ( i < modinfo_section->get_size() && !pdata[i] ) i++; if ( i < modinfo_section->get_size() ) { std::string info = pdata + i; size_t loc = info.find( '=' ); content.emplace_back( info.substr( 0, loc ), info.substr( loc + 1 ) ); i += info.length(); } } } } //------------------------------------------------------------------------------ private: S* modinfo_section; std::vector> content; }; using modinfo_section_accessor = modinfo_section_accessor_template
; using const_modinfo_section_accessor = modinfo_section_accessor_template; } // namespace ELFIO #endif // ELFIO_MODINFO_HPP mstflint-4.26.0/mlxdpa/Makefile.in0000644000175000017500000012171314522641737017247 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstdpa$(EXEEXT) # these are precompiled @ARM64_BUILD_TRUE@am__append_1 = $(srcdir)/dpa_elf/arm64/libdpa_elf @X86_64_BUILD_TRUE@am__append_2 = $(srcdir)/dpa_elf/x86_64/libdpa_elf @ENABLE_OPENSSL_TRUE@am__append_3 = -lcrypto -lssl @ENABLE_OPENSSL_FALSE@am__append_4 = -DNO_OPEN_SSL subdir = mlxdpa DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libmstdpa_a_AR = $(AR) $(ARFLAGS) am_libmstdpa_a_OBJECTS = libmstdpa_a-certcontainerbase.$(OBJEXT) \ libmstdpa_a-certcontainerimp.$(OBJEXT) libmstdpa_a_OBJECTS = $(am_libmstdpa_a_OBJECTS) am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_mstdpa_OBJECTS = mstdpa-certcontainerbase.$(OBJEXT) \ mstdpa-certcontainerimp.$(OBJEXT) mstdpa-cryptodata.$(OBJEXT) \ mstdpa-hostelf.$(OBJEXT) mstdpa-mlxdpa.$(OBJEXT) \ mstdpa-mlxdpa_utils.$(OBJEXT) mstdpa_OBJECTS = $(am_mstdpa_OBJECTS) am__DEPENDENCIES_1 = mstdpa_DEPENDENCIES = $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mlxsign_lib/libmlxsign.la \ $(top_builddir)/mft_utils/libmftutils.la $(am__append_1) \ $(am__append_2) $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstdpa_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(mstdpa_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmstdpa_a_SOURCES) $(mstdpa_SOURCES) DIST_SOURCES = $(libmstdpa_a_SOURCES) $(mstdpa_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONFIG_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxsign_lib XML_FLAGS = -DUSE_XML -DLIBXML_STATIC AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) $(XML_FLAGS) noinst_LIBRARIES = libmstdpa.a libmstdpa_a_SOURCES = \ certcontainerbase.cpp \ certcontainerbase.h \ certcontainerimp.cpp \ certcontainerimp.h libmstdpa_a_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) $(XML_FLAGS) libmstdpa_a_DEPENDENCIES = $(top_builddir)/mft_utils/libmftutils.la libmstdpa_a_LIBADD = $(libmstdpa_a_DEPENDENCIES) mstdpa_SOURCES = \ certcontainerbase.cpp \ certcontainerbase.h \ certcontainerimp.cpp \ certcontainerimp.h \ cryptodata.cpp \ cryptodata.h \ hostelf.cpp \ hostelf.h \ mlxdpa.cpp \ mlxdpa.h \ mlxdpa_utils.cpp \ mlxdpa_utils.h mstdpa_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) \ $(XML_FLAGS) $(am__append_4) mstdpa_LDADD = $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mlxsign_lib/libmlxsign.la \ $(top_builddir)/mft_utils/libmftutils.la $(am__append_1) \ $(am__append_2) $(am__append_3) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxdpa/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxdpa/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libmstdpa.a: $(libmstdpa_a_OBJECTS) $(libmstdpa_a_DEPENDENCIES) $(EXTRA_libmstdpa_a_DEPENDENCIES) $(AM_V_at)-rm -f libmstdpa.a $(AM_V_AR)$(libmstdpa_a_AR) libmstdpa.a $(libmstdpa_a_OBJECTS) $(libmstdpa_a_LIBADD) $(AM_V_at)$(RANLIB) libmstdpa.a install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstdpa$(EXEEXT): $(mstdpa_OBJECTS) $(mstdpa_DEPENDENCIES) $(EXTRA_mstdpa_DEPENDENCIES) @rm -f mstdpa$(EXEEXT) $(AM_V_CXXLD)$(mstdpa_LINK) $(mstdpa_OBJECTS) $(mstdpa_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmstdpa_a-certcontainerbase.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmstdpa_a-certcontainerimp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstdpa-certcontainerbase.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstdpa-certcontainerimp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstdpa-cryptodata.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstdpa-hostelf.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstdpa-mlxdpa.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstdpa-mlxdpa_utils.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libmstdpa_a-certcontainerbase.o: certcontainerbase.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -MT libmstdpa_a-certcontainerbase.o -MD -MP -MF $(DEPDIR)/libmstdpa_a-certcontainerbase.Tpo -c -o libmstdpa_a-certcontainerbase.o `test -f 'certcontainerbase.cpp' || echo '$(srcdir)/'`certcontainerbase.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmstdpa_a-certcontainerbase.Tpo $(DEPDIR)/libmstdpa_a-certcontainerbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerbase.cpp' object='libmstdpa_a-certcontainerbase.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -c -o libmstdpa_a-certcontainerbase.o `test -f 'certcontainerbase.cpp' || echo '$(srcdir)/'`certcontainerbase.cpp libmstdpa_a-certcontainerbase.obj: certcontainerbase.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -MT libmstdpa_a-certcontainerbase.obj -MD -MP -MF $(DEPDIR)/libmstdpa_a-certcontainerbase.Tpo -c -o libmstdpa_a-certcontainerbase.obj `if test -f 'certcontainerbase.cpp'; then $(CYGPATH_W) 'certcontainerbase.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerbase.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmstdpa_a-certcontainerbase.Tpo $(DEPDIR)/libmstdpa_a-certcontainerbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerbase.cpp' object='libmstdpa_a-certcontainerbase.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -c -o libmstdpa_a-certcontainerbase.obj `if test -f 'certcontainerbase.cpp'; then $(CYGPATH_W) 'certcontainerbase.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerbase.cpp'; fi` libmstdpa_a-certcontainerimp.o: certcontainerimp.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -MT libmstdpa_a-certcontainerimp.o -MD -MP -MF $(DEPDIR)/libmstdpa_a-certcontainerimp.Tpo -c -o libmstdpa_a-certcontainerimp.o `test -f 'certcontainerimp.cpp' || echo '$(srcdir)/'`certcontainerimp.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmstdpa_a-certcontainerimp.Tpo $(DEPDIR)/libmstdpa_a-certcontainerimp.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerimp.cpp' object='libmstdpa_a-certcontainerimp.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -c -o libmstdpa_a-certcontainerimp.o `test -f 'certcontainerimp.cpp' || echo '$(srcdir)/'`certcontainerimp.cpp libmstdpa_a-certcontainerimp.obj: certcontainerimp.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -MT libmstdpa_a-certcontainerimp.obj -MD -MP -MF $(DEPDIR)/libmstdpa_a-certcontainerimp.Tpo -c -o libmstdpa_a-certcontainerimp.obj `if test -f 'certcontainerimp.cpp'; then $(CYGPATH_W) 'certcontainerimp.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerimp.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmstdpa_a-certcontainerimp.Tpo $(DEPDIR)/libmstdpa_a-certcontainerimp.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerimp.cpp' object='libmstdpa_a-certcontainerimp.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmstdpa_a_CXXFLAGS) $(CXXFLAGS) -c -o libmstdpa_a-certcontainerimp.obj `if test -f 'certcontainerimp.cpp'; then $(CYGPATH_W) 'certcontainerimp.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerimp.cpp'; fi` mstdpa-certcontainerbase.o: certcontainerbase.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-certcontainerbase.o -MD -MP -MF $(DEPDIR)/mstdpa-certcontainerbase.Tpo -c -o mstdpa-certcontainerbase.o `test -f 'certcontainerbase.cpp' || echo '$(srcdir)/'`certcontainerbase.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-certcontainerbase.Tpo $(DEPDIR)/mstdpa-certcontainerbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerbase.cpp' object='mstdpa-certcontainerbase.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-certcontainerbase.o `test -f 'certcontainerbase.cpp' || echo '$(srcdir)/'`certcontainerbase.cpp mstdpa-certcontainerbase.obj: certcontainerbase.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-certcontainerbase.obj -MD -MP -MF $(DEPDIR)/mstdpa-certcontainerbase.Tpo -c -o mstdpa-certcontainerbase.obj `if test -f 'certcontainerbase.cpp'; then $(CYGPATH_W) 'certcontainerbase.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerbase.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-certcontainerbase.Tpo $(DEPDIR)/mstdpa-certcontainerbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerbase.cpp' object='mstdpa-certcontainerbase.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-certcontainerbase.obj `if test -f 'certcontainerbase.cpp'; then $(CYGPATH_W) 'certcontainerbase.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerbase.cpp'; fi` mstdpa-certcontainerimp.o: certcontainerimp.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-certcontainerimp.o -MD -MP -MF $(DEPDIR)/mstdpa-certcontainerimp.Tpo -c -o mstdpa-certcontainerimp.o `test -f 'certcontainerimp.cpp' || echo '$(srcdir)/'`certcontainerimp.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-certcontainerimp.Tpo $(DEPDIR)/mstdpa-certcontainerimp.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerimp.cpp' object='mstdpa-certcontainerimp.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-certcontainerimp.o `test -f 'certcontainerimp.cpp' || echo '$(srcdir)/'`certcontainerimp.cpp mstdpa-certcontainerimp.obj: certcontainerimp.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-certcontainerimp.obj -MD -MP -MF $(DEPDIR)/mstdpa-certcontainerimp.Tpo -c -o mstdpa-certcontainerimp.obj `if test -f 'certcontainerimp.cpp'; then $(CYGPATH_W) 'certcontainerimp.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerimp.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-certcontainerimp.Tpo $(DEPDIR)/mstdpa-certcontainerimp.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='certcontainerimp.cpp' object='mstdpa-certcontainerimp.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-certcontainerimp.obj `if test -f 'certcontainerimp.cpp'; then $(CYGPATH_W) 'certcontainerimp.cpp'; else $(CYGPATH_W) '$(srcdir)/certcontainerimp.cpp'; fi` mstdpa-cryptodata.o: cryptodata.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-cryptodata.o -MD -MP -MF $(DEPDIR)/mstdpa-cryptodata.Tpo -c -o mstdpa-cryptodata.o `test -f 'cryptodata.cpp' || echo '$(srcdir)/'`cryptodata.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-cryptodata.Tpo $(DEPDIR)/mstdpa-cryptodata.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cryptodata.cpp' object='mstdpa-cryptodata.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-cryptodata.o `test -f 'cryptodata.cpp' || echo '$(srcdir)/'`cryptodata.cpp mstdpa-cryptodata.obj: cryptodata.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-cryptodata.obj -MD -MP -MF $(DEPDIR)/mstdpa-cryptodata.Tpo -c -o mstdpa-cryptodata.obj `if test -f 'cryptodata.cpp'; then $(CYGPATH_W) 'cryptodata.cpp'; else $(CYGPATH_W) '$(srcdir)/cryptodata.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-cryptodata.Tpo $(DEPDIR)/mstdpa-cryptodata.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cryptodata.cpp' object='mstdpa-cryptodata.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-cryptodata.obj `if test -f 'cryptodata.cpp'; then $(CYGPATH_W) 'cryptodata.cpp'; else $(CYGPATH_W) '$(srcdir)/cryptodata.cpp'; fi` mstdpa-hostelf.o: hostelf.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-hostelf.o -MD -MP -MF $(DEPDIR)/mstdpa-hostelf.Tpo -c -o mstdpa-hostelf.o `test -f 'hostelf.cpp' || echo '$(srcdir)/'`hostelf.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-hostelf.Tpo $(DEPDIR)/mstdpa-hostelf.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='hostelf.cpp' object='mstdpa-hostelf.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-hostelf.o `test -f 'hostelf.cpp' || echo '$(srcdir)/'`hostelf.cpp mstdpa-hostelf.obj: hostelf.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-hostelf.obj -MD -MP -MF $(DEPDIR)/mstdpa-hostelf.Tpo -c -o mstdpa-hostelf.obj `if test -f 'hostelf.cpp'; then $(CYGPATH_W) 'hostelf.cpp'; else $(CYGPATH_W) '$(srcdir)/hostelf.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-hostelf.Tpo $(DEPDIR)/mstdpa-hostelf.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='hostelf.cpp' object='mstdpa-hostelf.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-hostelf.obj `if test -f 'hostelf.cpp'; then $(CYGPATH_W) 'hostelf.cpp'; else $(CYGPATH_W) '$(srcdir)/hostelf.cpp'; fi` mstdpa-mlxdpa.o: mlxdpa.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-mlxdpa.o -MD -MP -MF $(DEPDIR)/mstdpa-mlxdpa.Tpo -c -o mstdpa-mlxdpa.o `test -f 'mlxdpa.cpp' || echo '$(srcdir)/'`mlxdpa.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-mlxdpa.Tpo $(DEPDIR)/mstdpa-mlxdpa.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxdpa.cpp' object='mstdpa-mlxdpa.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-mlxdpa.o `test -f 'mlxdpa.cpp' || echo '$(srcdir)/'`mlxdpa.cpp mstdpa-mlxdpa.obj: mlxdpa.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-mlxdpa.obj -MD -MP -MF $(DEPDIR)/mstdpa-mlxdpa.Tpo -c -o mstdpa-mlxdpa.obj `if test -f 'mlxdpa.cpp'; then $(CYGPATH_W) 'mlxdpa.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxdpa.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-mlxdpa.Tpo $(DEPDIR)/mstdpa-mlxdpa.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxdpa.cpp' object='mstdpa-mlxdpa.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-mlxdpa.obj `if test -f 'mlxdpa.cpp'; then $(CYGPATH_W) 'mlxdpa.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxdpa.cpp'; fi` mstdpa-mlxdpa_utils.o: mlxdpa_utils.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-mlxdpa_utils.o -MD -MP -MF $(DEPDIR)/mstdpa-mlxdpa_utils.Tpo -c -o mstdpa-mlxdpa_utils.o `test -f 'mlxdpa_utils.cpp' || echo '$(srcdir)/'`mlxdpa_utils.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-mlxdpa_utils.Tpo $(DEPDIR)/mstdpa-mlxdpa_utils.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxdpa_utils.cpp' object='mstdpa-mlxdpa_utils.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-mlxdpa_utils.o `test -f 'mlxdpa_utils.cpp' || echo '$(srcdir)/'`mlxdpa_utils.cpp mstdpa-mlxdpa_utils.obj: mlxdpa_utils.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -MT mstdpa-mlxdpa_utils.obj -MD -MP -MF $(DEPDIR)/mstdpa-mlxdpa_utils.Tpo -c -o mstdpa-mlxdpa_utils.obj `if test -f 'mlxdpa_utils.cpp'; then $(CYGPATH_W) 'mlxdpa_utils.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxdpa_utils.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstdpa-mlxdpa_utils.Tpo $(DEPDIR)/mstdpa-mlxdpa_utils.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxdpa_utils.cpp' object='mstdpa-mlxdpa_utils.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstdpa_CXXFLAGS) $(CXXFLAGS) -c -o mstdpa-mlxdpa_utils.obj `if test -f 'mlxdpa_utils.cpp'; then $(CYGPATH_W) 'mlxdpa_utils.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxdpa_utils.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstLIBRARIES mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/xz_utils/0000755000175000017500000000000014522641741015564 5ustar tzafrirctzafrircmstflint-4.26.0/xz_utils/xz_utils.h0000644000175000017500000000437014522641732017622 0ustar tzafrirctzafrirc/* * Copyright (c) 2006-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef __XZ_H__ #define __XZ_H__ #include #ifdef __cplusplus extern "C" { #endif enum { XZ_ERR_UNKNOWN = -1, XZ_ERR_MEM_EXCEEDED = -2, XZ_ERR_INTERNAL_MEM = -3, XZ_ERR_PRESET_NO_SUPP = -4, XZ_ERR_INTEGRITY_NOT_SUPP = -5, XZ_ERR_ENCODE_FAULT = -6 }; int32_t xz_compress(u_int32_t preset, u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz); int32_t xz_decompress(u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz); int32_t xz_compress_crc32(u_int32_t preset, u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz); int32_t xz_decompress_crc32(u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz); const char* xz_get_error(int32_t error); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/xz_utils/xz_utils.c0000644000175000017500000002501014522641732017607 0ustar tzafrirctzafrirc/* * Copyright (c) 2006-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #ifdef _MSC_VER #define LZMA_API_STATIC #endif #include #include "xz_utils.h" static int32_t init_encoder(lzma_stream* strm, u_int32_t preset, lzma_check check) { // Initialize the encoder using a preset. Set the integrity to check // to CRC64, which is the default in the xz command line tool. If // the .xz file needs to be decompressed with XZ Embedded, use // LZMA_CHECK_CRC32 instead. lzma_ret ret = lzma_easy_encoder(strm, preset, check); // Return successfully if the initialization went fine. if (ret == LZMA_OK) { return 0; } // Something went wrong. The possible errors are documented in // lzma/container.h (src/liblzma/api/lzma/container.h in the source // package or e.g. /usr/include/lzma/container.h depending on the // install prefix). // const char *msg; switch (ret) { case LZMA_MEM_ERROR: return XZ_ERR_INTERNAL_MEM; case LZMA_OPTIONS_ERROR: return XZ_ERR_PRESET_NO_SUPP; break; case LZMA_UNSUPPORTED_CHECK: return XZ_ERR_INTEGRITY_NOT_SUPP; default: // This is most likely LZMA_PROG_ERROR indicating a bug in // this program or in liblzma. It is inconvenient to have a // separate error message for errors that should be impossible // to occur, but knowing the error code is important for // debugging. That's why it is good to print the error code // at least when there is no good error message to show. return XZ_ERR_UNKNOWN; } } static int32_t init_decoder(lzma_stream* strm) { lzma_ret ret = lzma_stream_decoder(strm, UINT64_MAX, LZMA_CONCATENATED); // Return successfully if the initialization went fine. if (ret == LZMA_OK) { return 0; } // const char *msg; switch (ret) { case LZMA_MEM_ERROR: return XZ_ERR_INTERNAL_MEM; default: // This is most likely LZMA_PROG_ERROR indicating a bug in // this program or in liblzma. It is inconvenient to have a // separate error message for errors that should be impossible // to occur, but knowing the error code is important for // debugging. That's why it is good to print the error code // at least when there is no good error message to show. return XZ_ERR_UNKNOWN; } } static int32_t xcompress(lzma_stream* strm, u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz) { // This will be LZMA_RUN until the end of the input file is reached. // This tells lzma_code() when there will be no more input. lzma_action action = LZMA_RUN; // Buffers to temporarily hold uncompressed input // and compressed output. u_int8_t obuf[BUFSIZ]; strm->next_in = NULL; strm->avail_in = 0; strm->next_out = obuf; strm->avail_out = sizeof(obuf); u_int32_t rpos = 0; u_int32_t wpos = 0; u_int32_t chunk_sz = 0; // Loop until the file has been successfully compressed or until // an error occurs. while (1) { // Fill the input buffer if it is empty. if (strm->avail_in == 0 && (rpos < insz)) { strm->next_in = &inbuf[rpos]; chunk_sz = insz - rpos; strm->avail_in = chunk_sz; } if (rpos >= insz) { action = LZMA_FINISH; } lzma_ret ret = lzma_code(strm, action); // If the output buffer is full or if the compression finished // successfully, write the data from the output bufffer to // the output file. if (((strm->avail_out == 0) && (ret == LZMA_OK)) || (ret == LZMA_STREAM_END)) { u_int32_t write_size = sizeof(obuf) - strm->avail_out; if (outbuf) { if (wpos + write_size > outsz) { return XZ_ERR_MEM_EXCEEDED; } memcpy(&(outbuf[wpos]), obuf, write_size); } wpos += write_size; // Reset next_out and avail_out. strm->next_out = obuf; strm->avail_out = sizeof(obuf); } // Normally the return value of lzma_code() will be LZMA_OK // until everything has been encoded. if (ret != LZMA_OK) { // Once everything has been encoded successfully, the // return value of lzma_code() will be LZMA_STREAM_END. // // It is important to check for LZMA_STREAM_END. Do not // assume that getting ret != LZMA_OK would mean that // everything has gone well. if (ret == LZMA_STREAM_END) { break; } // It's not LZMA_OK nor LZMA_STREAM_END, // so it must be an error code. See lzma/base.h // (src/liblzma/api/lzma/base.h in the source package // or e.g. /usr/include/lzma/base.h depending on the // install prefix) for the list and documentation of // possible values. Most values listen in lzma_ret // enumeration aren't possible in this example. // const char *msg; switch (ret) { case LZMA_MEM_ERROR: return XZ_ERR_INTERNAL_MEM; case LZMA_DATA_ERROR: // This error is returned if the compressed // or uncompressed size get near 8 EiB // (2^63 bytes) because that's where the .xz // file format size limits currently are. // That is, the possibility of this error // is mostly theoretical unless you are doing // something very unusual. // // Note that strm->total_in and strm->total_out // have nothing to do with this error. Changing // those variables won't increase or decrease // the chance of getting this error. return XZ_ERR_MEM_EXCEEDED; default: // This is most likely LZMA_PROG_ERROR, but // if this program is buggy (or liblzma has // a bug), it may be e.g. LZMA_BUF_ERROR or // LZMA_OPTIONS_ERROR too. // // It is inconvenient to have a separate // error message for errors that should be // impossible to occur, but knowing the error // code is important for debugging. That's why // it is good to print the error code at least // when there is no good error message to show. return XZ_ERR_UNKNOWN; } return XZ_ERR_ENCODE_FAULT; } rpos += chunk_sz; chunk_sz = 0; } // In case wpos is zero (for any lzma unknown reason, LZMA_STREAM_END reached immediately) perform clean up. if (wpos == 0) { return XZ_ERR_ENCODE_FAULT; } // return size return wpos; } static int32_t xpress(int comp_decomp_, u_int32_t preset, u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz, lzma_check check) { int32_t rc; u_int32_t sz; lzma_stream strm; lzma_stream init_strm = LZMA_STREAM_INIT; strm = init_strm; if (comp_decomp_) { rc = init_decoder(&strm); } else { rc = init_encoder(&strm, preset, check); } if (rc) { return rc; } sz = xcompress(&strm, inbuf, insz, outbuf, outsz); lzma_end(&strm); return sz; } int32_t xz_compress_crc32(u_int32_t preset, u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz) { return xpress(0, preset, inbuf, insz, outbuf, outsz, LZMA_CHECK_CRC32); } int32_t xz_compress(u_int32_t preset, u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz) { return xpress(0, preset, inbuf, insz, outbuf, outsz, LZMA_CHECK_CRC64); } int32_t xz_decompress(u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz) { return xpress(1, 0, inbuf, insz, outbuf, outsz, LZMA_CHECK_CRC64); } int32_t xz_decompress_crc32(u_int8_t* inbuf, u_int32_t insz, u_int8_t* outbuf, u_int32_t outsz) { return xpress(1, 0, inbuf, insz, outbuf, outsz, LZMA_CHECK_CRC32); } const char* xz_get_error(int32_t error) { if (error == XZ_ERR_MEM_EXCEEDED) { return "XZ_ERR_MEM_EXCEEDED"; } else if (error == XZ_ERR_INTERNAL_MEM) { return "XZ_ERR_INTERNAL_MEM"; } else if (error == XZ_ERR_PRESET_NO_SUPP) { return "XZ_ERR_PRESET_NO_SUPP"; } else if (error == XZ_ERR_INTEGRITY_NOT_SUPP) { return "XZ_ERR_INTEGRITY_NOT_SUPP"; } else if (error == XZ_ERR_ENCODE_FAULT) { return "XZ_ERR_ENCODE_FAULT"; } else { return "UNKNOWN ERROR"; } } mstflint-4.26.0/xz_utils/Makefile.am0000755000175000017500000000353614522641732017632 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common AM_CFLAGS = -W -g -MP -MD ${COMPILER_FPIC} noinst_LTLIBRARIES = libxz_utils.la libxz_utils_la_SOURCES = \ xz_utils.c \ xz_utils.h libxz_utils_la_DEPENDENCIES = libxz_utils_la_LIBADD = -llzma libraryincludedir = $(includedir)/mstflint/xz_utils/ mstflint-4.26.0/xz_utils/Makefile.in0000644000175000017500000004727314522641741017646 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = xz_utils DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libxz_utils_la_OBJECTS = xz_utils.lo libxz_utils_la_OBJECTS = $(am_libxz_utils_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libxz_utils_la_SOURCES) DIST_SOURCES = $(libxz_utils_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/common -I$(top_builddir)/common AM_CFLAGS = -W -g -MP -MD ${COMPILER_FPIC} noinst_LTLIBRARIES = libxz_utils.la libxz_utils_la_SOURCES = \ xz_utils.c \ xz_utils.h libxz_utils_la_DEPENDENCIES = libxz_utils_la_LIBADD = -llzma libraryincludedir = $(includedir)/mstflint/xz_utils/ all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign xz_utils/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign xz_utils/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libxz_utils.la: $(libxz_utils_la_OBJECTS) $(libxz_utils_la_DEPENDENCIES) $(EXTRA_libxz_utils_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libxz_utils_la_OBJECTS) $(libxz_utils_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xz_utils.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mtcr_freebsd/0000755000175000017500000000000014522641740016341 5ustar tzafrirctzafrircmstflint-4.26.0/mtcr_freebsd/mtcr_ul.c0000644000175000017500000021627314522641732020166 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #define _WITH_GETLINE #include #include #include #include #include #include #include #include "mtcr.h" #include #include #include #include #include "mtcr_icmd_cif.h" #include "mtcr_tools_cif.h" #ifndef MST_UL #include "mtcr_utils.h" #else #include #include #include #include #include #include #include #include #endif #include "packets_common.h" #include "packets_layout.h" #include #include #include #define MST_VPD_DFLT_TIMEOUT 2000 #define PCI_VPD_ADDR 0x2 #define PCI_CAP_ID_VPD 0x3 #define PCI_VPD_DATA 0x4 #define HW_ID_ADDR 0xf0014 #define _PATH_DEVPCI "/dev/pci" typedef enum { Clear_Vsec_Semaphore = 0x1 } adv_opt_t; #define FREEBSD_LOCK_FILE_DIR "/tmp/mft_lockfiles" #define FREEBSD_LOCK_FILE_FORMAT "/tmp/mft_lockfiles/%s" #define CHECK_LOCK(rc) \ if (rc) \ { \ return rc; \ } #define FREEBSD_MAX_RETRY_CNT 8192 static int _flock_int(int fdlock, int operation) { int cnt = 0; if (fdlock == 0) { // in case we failed to create the lock file we ignore the locking mechanism return 0; } do { if (flock(fdlock, operation | LOCK_NB) == 0) { return 0; } else if (errno != EWOULDBLOCK) { break; // BAD! lock/free failed } usleep(10); cnt++; } while (cnt < FREEBSD_MAX_RETRY_CNT); perror("failed to perform lock operation."); return -1; } static int _create_lock(mfile* mf, char* devname) { char fname[64] = {0}; int rc; int fd = 0; snprintf(fname, sizeof(fname) - 1, FREEBSD_LOCK_FILE_FORMAT, devname); rc = mkdir("/tmp", 0777); if (rc && errno != EEXIST) { goto cl_clean_up; } rc = mkdir(FREEBSD_LOCK_FILE_DIR, 0777); if (rc && errno != EEXIST) { goto cl_clean_up; } fd = open(fname, O_RDONLY | O_CREAT, 0777); if (fd < 0) { goto cl_clean_up; } mf->fdlock = fd; return 0; cl_clean_up: fprintf(stderr, "Warrning: Failed to create lockfile: %s (parallel access not supported)\n", fname); return 0; } /*End of Lock file section */ void mtcr_connectx_flush(void* ptr, int fdlock) { u_int32_t value; int rc = _flock_int(fdlock, LOCK_EX); if (rc) { return; } *((u_int32_t*)((char*)ptr + 0xf0380)) = 0x0; do { asm volatile("" ::: "memory"); value = __be32_to_cpu(*((u_int32_t*)((char*)ptr + 0xf0380))); } while (value); rc = _flock_int(fdlock, LOCK_UN); if (rc) { return; } } int read_device_id(mfile* mf, u_int32_t* device_id) { return mread4(mf, HW_ID_ADDR, device_id); } int mtcr_check_signature(mfile* mf) { unsigned signature; int rc; rc = read_device_id(mf, &signature); if (rc != 4) { if (!errno) { errno = EIO; } return -1; } switch (signature & 0xffff) { case 0x190: /* 400 */ if (signature == 0xa00190 && mf->ptr) { mf->connectx_flush = 1; mtcr_connectx_flush(mf->ptr, mf->fdlock); } case 0x5a44: /* 23108 */ case 0x6278: /* 25208 */ case 0x5e8c: /* 24204 */ case 0x6274: /* 25204 */ return 0; default: errno = ENOTTY; return -1; } } #define READ4_PCI(mf, val_ptr, pci_offs, err_prefix, action_on_fail) \ do \ { \ int rc; \ int lock_rc; \ lock_rc = _flock_int(mf->fdlock, LOCK_EX); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ rc = read_config(mf, pci_offs, val_ptr, 4); \ lock_rc = _flock_int(mf->fdlock, LOCK_UN); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ if (rc) \ { \ return rc; \ } \ } while (0) #define WRITE4_PCI(mf, val, pci_offs, err_prefix, action_on_fail) \ do \ { \ int rc; \ int lock_rc; \ lock_rc = _flock_int(mf->fdlock, LOCK_EX); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ rc = write_config(mf, pci_offs, val, 4); \ lock_rc = _flock_int(mf->fdlock, LOCK_UN); \ if (lock_rc) \ { \ perror(err_prefix); \ action_on_fail; \ } \ if (rc) \ { \ return rc; \ } \ } while (0) #define PCI_CONF_ADDR (0x00000058) #define PCI_CONF_DATA (0x0000005c) #define MLNX_VENDOR_SPECIFIC_CAP_ID 0x9 /* PCI address space related enum*/ enum { PCI_CAP_PTR = 0x34, PCI_HDR_SIZE = 0x40, PCI_EXT_SPACE_ADDR = 0xff, PCI_CTRL_OFFSET = 0x4, // for space / semaphore / auto-increment bit PCI_COUNTER_OFFSET = 0x8, PCI_SEMAPHORE_OFFSET = 0xc, PCI_ADDR_OFFSET = 0x10, PCI_DATA_OFFSET = 0x14, PCI_FLAG_BIT_OFFS = 31, PCI_SPACE_BIT_OFFS = 0, PCI_SPACE_BIT_LEN = 16, PCI_STATUS_BIT_OFFS = 29, PCI_STATUS_BIT_LEN = 3, PCI_HEADER_OFFS = 0x0, PCI_SUBSYS_OFFS = 0x2c, PCI_CLASS_OFFS = 0x8, }; /* Mellanox vendor specific enum */ enum { CAP_ID = 0x9, IFC_MAX_RETRIES = 0x10000, SEM_MAX_RETRIES = 0x1000 }; /* PCI operation enum(read or write)*/ enum { READ_OP = 0, WRITE_OP = 1, }; int read_config(mfile* mf, unsigned int reg, uint32_t* data, int width) { struct pci_io pi = {}; pi.pi_sel = mf->sel; pi.pi_reg = reg; pi.pi_width = width; if (ioctl(mf->fd, PCIOCREAD, &pi) < 0) { errno = EIO; return -1; } // printf("%s: dev:%d reg=%x width=%d data=%x\n", __FUNCTION__, pi.pi_sel.pc_dev, reg, width, pi.pi_data); *data = (pi.pi_data); return 0; } int write_config(mfile* mf, unsigned int reg, uint32_t data, int width) { struct pci_io pi = {}; pi.pi_sel = mf->sel; pi.pi_reg = reg; pi.pi_width = width; pi.pi_data = data; // printf("%s: dev:%d reg:%x width:%d data:%x\n", __FUNCTION__, pi.pi_sel.pc_dev, pi.pi_reg, pi.pi_width, // pi.pi_data); if (ioctl(mf->fd, PCIOCWRITE, &pi) < 0) { errno = EIO; return -1; } return 0; } #define WO_REG_ADDR_DATA 0xbadacce5 #define PCICONF_ADDR_OFF 0x58 #define PCICONF_DATA_OFF 0x5c static int is_wo_pciconf_gw(mfile* mf) { unsigned offset = HW_ID_ADDR; u_int32_t data = 0; int lock_rc; lock_rc = _flock_int(mf->fdlock, LOCK_EX); if (lock_rc) { return 0; } int rc = write_config(mf, PCI_CONF_ADDR, (unsigned long)offset, 4); if (rc < 0) { goto cleanup; } rc = read_config(mf, PCI_CONF_ADDR, &data, 4); if (rc < 0) { rc = 0; goto cleanup; } // printf("-D- Data: %#x\n", data); if (data == WO_REG_ADDR_DATA) { rc = 1; } cleanup: lock_rc = _flock_int(mf->fdlock, LOCK_UN); if (lock_rc) { return rc; } return rc; } /*Find PCI Capability*/ /*semaphore*/ /*set addr space*/ /* Read Write new functions (4Bytes, Block)*/ int pci_find_capability(mfile* mf, int cap_id) { unsigned offset; unsigned char visited[256] = {0}; /* Prevent infinite loops */ uint32_t reg; int ret; int curr_cap; int lock_rc; lock_rc = _flock_int(mf->fdlock, LOCK_EX); if (lock_rc) { return 0; } ret = read_config(mf, PCI_CAP_PTR, ®, 4); if (ret) { ret = 0; goto cleanup; } offset = ((unsigned char*)®)[0]; while (1) { if (offset < PCI_HDR_SIZE || offset > PCI_EXT_SPACE_ADDR) { ret = 0; goto cleanup; } ret = read_config(mf, offset, ®, 4); if (ret) { ret = 0; goto cleanup; } visited[offset] = 1; curr_cap = ((unsigned char*)®)[0]; if (curr_cap == cap_id) { ret = offset; goto cleanup; } offset = ((unsigned char*)®)[1]; if (visited[offset]) { ret = 0; goto cleanup; } } cleanup: lock_rc = _flock_int(mf->fdlock, LOCK_UN); if (lock_rc) { return ret; } return ret; } static int _vendor_specific_sem(mfile* mf, int state) { uint32_t lock_val; uint32_t counter = 0; int retries = 0; if (!state) { // unlock WRITE4_PCI(mf, 0, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "unlock semaphore", return -1); } else { // lock do { if (retries > SEM_MAX_RETRIES) { return -1; } // read semaphore untill 0x0 READ4_PCI(mf, &lock_val, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "read counter", return -1); if (lock_val) { // semaphore is taken retries++; msleep(1); // wait for current op to end continue; } // read ticket READ4_PCI(mf, &counter, mf->vsec_addr + PCI_COUNTER_OFFSET, "read counter", return -1); // write ticket to semaphore dword WRITE4_PCI(mf, counter, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "write counter to semaphore", return -1); // read back semaphore make sure ticket == semaphore else repeat READ4_PCI(mf, &lock_val, mf->vsec_addr + PCI_SEMAPHORE_OFFSET, "read counter", return -1); retries++; } while (counter != lock_val); } return 0; } static int _wait_on_flag(mfile* mf, u_int8_t expected_val) { int retries = 0; uint32_t flag; do { if (retries > IFC_MAX_RETRIES) { return -1; } READ4_PCI(mf, &flag, mf->vsec_addr + PCI_ADDR_OFFSET, "read flag", return -1); flag = EXTRACT(flag, PCI_FLAG_BIT_OFFS, 1); retries++; if ((retries & 0xf) == 0) { // dont sleep always // usleep_range(1,5); } } while (flag != expected_val); return 0; } static int _set_addr_space(mfile* mf, u_int16_t space) { // read modify write uint32_t val; READ4_PCI(mf, &val, mf->vsec_addr + PCI_CTRL_OFFSET, "read domain", return -1); val = MERGE(val, space, PCI_SPACE_BIT_OFFS, PCI_SPACE_BIT_LEN); WRITE4_PCI(mf, val, mf->vsec_addr + PCI_CTRL_OFFSET, "write domain", return -1); // read status and make sure space is supported READ4_PCI(mf, &val, mf->vsec_addr + PCI_CTRL_OFFSET, "read status", return -1); if (EXTRACT(val, PCI_STATUS_BIT_OFFS, PCI_STATUS_BIT_LEN) == 0) { return -1; } return 0; } static int _pciconf_rw(mfile* mf, unsigned int offset, uint32_t* data, int rw) { int ret = 0; uint32_t address = offset; // last 2 bits must be zero as we only allow 30 bits addresses if (EXTRACT(address, 30, 2)) { return -1; } address = MERGE(address, (rw ? 1 : 0), PCI_FLAG_BIT_OFFS, 1); if (rw == WRITE_OP) { // write data WRITE4_PCI(mf, *data, mf->vsec_addr + PCI_DATA_OFFSET, "write value", return -1); // write address WRITE4_PCI(mf, address, mf->vsec_addr + PCI_ADDR_OFFSET, "write offset", return -1); // wait on flag ret = _wait_on_flag(mf, 0); } else { // write address WRITE4_PCI(mf, address, mf->vsec_addr + PCI_ADDR_OFFSET, "write offset", return -1); // wait on flag ret = _wait_on_flag(mf, 1); // read data READ4_PCI(mf, data, mf->vsec_addr + PCI_DATA_OFFSET, "read value", return -1); } return ret; } static int _send_pci_cmd_int(mfile* mf, int space, unsigned int offset, uint32_t* data, int rw) { int ret = 0; // take semaphore ret = _vendor_specific_sem(mf, 1); if (ret) { // printf("-D- Failed to take Semaphore!\n"); return ret; } // set address space ret = _set_addr_space(mf, space); if (ret) { // printf("-D- Failed to set space!\n"); goto cleanup; } // read/write the data ret = _pciconf_rw(mf, offset, data, rw); cleanup: // clear semaphore _vendor_specific_sem(mf, 0); return ret; } static int _block_op(mfile* mf, int space, unsigned int offset, int size, uint32_t* data, int rw) { int i; int ret = 0; int wrote_or_read = size; if (size % 4) { return -1; } // lock semaphore and set address space ret = _vendor_specific_sem(mf, 1); if (ret) { return -1; } // set address space ret = _set_addr_space(mf, space); if (ret) { wrote_or_read = -1; goto cleanup; } for (i = 0; i < size; i += 4) { if (_pciconf_rw(mf, offset + i, &(data[(i >> 2)]), rw)) { wrote_or_read = i; goto cleanup; } } cleanup: _vendor_specific_sem(mf, 0); return wrote_or_read; } static int mwrite4_new(mfile* mf, unsigned int offset, uint32_t data) { int ret; ret = _send_pci_cmd_int(mf, mf->address_space, offset, &data, WRITE_OP); if (ret) { return -1; } return 4; } static int mread4_new(mfile* mf, unsigned int offset, uint32_t* data) { int ret; ret = _send_pci_cmd_int(mf, mf->address_space, offset, data, READ_OP); if (ret) { return -1; } return 4; } static int mwrite4_block_new(mfile* mf, unsigned int offset, int size, uint32_t* data) { return _block_op(mf, mf->address_space, offset, size, data, WRITE_OP); } static int mread4_block_new(mfile* mf, unsigned int offset, int size, uint32_t* data) { return _block_op(mf, mf->address_space, offset, size, data, READ_OP); } static int vsec_spaces_supported(mfile* mf) { // take semaphore int supported = 1; int ret = _vendor_specific_sem(mf, 1); if (ret) { return supported; } if (_set_addr_space(mf, AS_CR_SPACE) || _set_addr_space(mf, AS_ICMD) || _set_addr_space(mf, AS_SEMAPHORE)) { supported = 0; } // clear semaphore _vendor_specific_sem(mf, 0); return supported; } /* * End of Capabilities section */ /* * Open Mellanox Software tools (mst) driver. Device type==INFINIHOST * Return valid mfile ptr or 0 on failure */ int device_exists(const char* devname); #if __FreeBSD_version > 700000 int getsel(const char* str, struct pcisel* selout) { char* ep = strchr(str, '@'); char* epbase; struct pcisel sel; unsigned long selarr[4]; int i; // printf("__FreeBSD_version > 700000 detected.\n"); if (ep == NULL) { ep = (char*)str; } else { ep++; } epbase = ep; if (strncmp(ep, "pci", 3) == 0) { ep += 3; i = 0; do { selarr[i++] = strtoul(ep, &ep, 10); } while ((*ep == ':' || *ep == '.') && *++ep != '\0' && i < 4); if (i > 2) { sel.pc_func = selarr[--i]; } else { sel.pc_func = 0; } sel.pc_dev = selarr[--i]; sel.pc_bus = selarr[--i]; if (i > 0) { sel.pc_domain = selarr[--i]; } else { sel.pc_domain = 0; } } if (*ep != '\x0' || ep == epbase) { return 1; // errx(1, "cannot parse selector %s ep:'%s' epbase:%s, %d", str, ep, epbase, *ep); } *selout = sel; return 0; } #else int getsel(const char* str, struct pcisel* selout) { char* ep = strchr(str, '@'); char* epbase; struct pcisel sel; // printf("__FreeBSD_version < 700000 detected: %d\n", __FreeBSD_version); if (ep == NULL) { ep = (char*)str; } else { ep++; } epbase = ep; if (strncmp(ep, "pci", 3) == 0) { ep += 3; sel.pc_bus = strtoul(ep, &ep, 0); if (!ep || *ep++ != ':') { errno = EINVAL; return 1; // errx(1, "cannot parse selector %s", str); } sel.pc_dev = strtoul(ep, &ep, 0); if (!ep || *ep != ':') { sel.pc_func = 0; } else { ep++; sel.pc_func = strtoul(ep, &ep, 0); } if (*ep == ':') { ep++; } } if (*ep != '\x0' || ep == epbase) { return 1; // errx(1, "cannot parse selector %s", str); } *selout = sel; return 0; } #endif int mtcr_open_config(mfile* mf, const char* name) { // printf("open_config %s %s mf:%p\n", name, _PATH_DEVPCI, mf); if (!mf) { printf("Internal: Uninitialized mfile\n"); exit(1); } mf->fd = open(_PATH_DEVPCI, O_RDWR, 0); if (mf->fd < 0) { printf("err opening: %s", _PATH_DEVPCI); return -1; } // printf("open_config name:%s fd:%d\n", name, mf->fd); int ret = getsel(name, &mf->sel); // printf("open_config getsel done %d\n", mf->sel.pc_dev); mf->tp = MST_PCICONF; return ret; } mfile* mopen_int(const char* name, u_int32_t adv_opt) { char* real_name = (char*)name; int is_cable = 0; #ifndef MST_UL int port = 0; #endif if (getuid() != 0) { errno = EACCES; return NULL; } // printf("%s: open %s\n", __FUNCTION__, name); #ifndef MST_UL char tmp_name[512] = {0}; char* p_cable = strstr(name, "_cable"); if (p_cable != 0) { strncpy(tmp_name, name, 512 - 1); tmp_name[p_cable - name] = 0; is_cable = 1; real_name = tmp_name; // printf("-D- splitting name: %s\n", real_name); if (strstr(p_cable + 1, "_") != NULL) { p_cable += 7; if (*p_cable != '\0') { port = atoi(p_cable); } } } #endif if (!device_exists(real_name)) { errno = ENOENT; return NULL; } mfile* mf = malloc(sizeof(mfile)); memset(mf, 0, sizeof(mfile)); if (!mf) { return NULL; } mf->sock = -1; mf->user_page_list.page_amount = 0; mf->flags = MDEVS_TAVOR_CR; if (!mtcr_open_config(mf, real_name)) { _create_lock(mf, real_name); mf->wo_addr = is_wo_pciconf_gw(mf); // printf("-D- is_wo_pciconf_gw: %d\n", mf->wo_addr); mf->vsec_addr = pci_find_capability(mf, MLNX_VENDOR_SPECIFIC_CAP_ID); mf->vpd_cap_addr = pci_find_capability(mf, PCI_CAP_ID_VPD); mf->is_cable = is_cable; mf->vsec_supp = 0; if (mf->vsec_addr) { if (adv_opt & Clear_Vsec_Semaphore) { _vendor_specific_sem(mf, 0); } mf->vsec_supp = vsec_spaces_supported(mf); mf->address_space = AS_CR_SPACE; } // printf("mtcr_open_config Succeeded VSEC_SUPP: %d\n", mf->vsec_supp); #ifndef MST_UL if (mf->is_cable) { mf->flags = MDEVS_CABLE; mf->dl_context = mtcr_utils_load_dl_ctx(DL_CABLES); dl_handle_t* hdl = (dl_handle_t*)mf->dl_context; if (!hdl || !hdl->mcables.mcables_open || hdl->mcables.mcables_open(mf, port)) { mclose(mf); return 0; } } #endif return mf; } else { // printf("mtcr_open_config failed\n"); errno = ENOENT; free(mf); return NULL; } } mfile* mopen(const char* name) { return mopen_adv(name, MST_DEFAULT); } mfile* mopend(char const* name, DType dtype) { (void)dtype; return mopen_int(name, 0); } mfile* mopen_adv(const char* name, MType mtype) { mfile* mf = mopend(name, MST_TAVOR); if (mf) { if (mf->tp & mtype) { return mf; } else { errno = EPERM; mclose(mf); return NULL; } } return mf; } mfile* mopen_fw_ctx(void* fw_cmd_context, void* fw_cmd_func, void* dma_func, void* extra_data) { // not relevant for freebsd (void)fw_cmd_context; (void)fw_cmd_func; (void)dma_func; (void)extra_data; return NULL; } /* * Close Mellanox driver * req. descriptor */ int mclose(mfile* mf) { if (!mf) { return 0; } #ifndef MST_UL if (mf->tp == MST_CABLE) { int ret = -1; CALL_DL_FUNC(mcables, mcables_close, ret, mf); if (ret != -1) { mtcr_utils_free_dl_ctx(mf->dl_context); } } #endif // printf("closing\n"); close(mf->fd); if (mf->fdlock) { close(mf->fdlock); } if (mf->user_page_list.page_amount) { release_dma_pages(mf, mf->user_page_list.page_amount); } // printf("freeing\n"); free(mf); return 0; } #define MY_DELAY 20 /* * Read 4 bytes, return number of succ. read bytes or -1 on failure */ int mread4_old(mfile* mf, unsigned int offset, u_int32_t* value) { int rc; offset = __cpu_to_le32(offset); if (mf->wo_addr) { offset |= 0x1; } int lock_rc; lock_rc = _flock_int(mf->fdlock, LOCK_EX); if (lock_rc) { return 0; } rc = write_config(mf, PCI_CONF_ADDR, (unsigned long)offset, 4); if (rc) { goto cleanup; } rc = read_config(mf, PCI_CONF_DATA, value, 4); if (rc) { goto cleanup; } *value = __le32_to_cpu(*value); cleanup: lock_rc = _flock_int(mf->fdlock, LOCK_UN); if (lock_rc || rc) { return 0; } return 4; } int mread4(mfile* mf, unsigned int offset, u_int32_t* value) { #ifndef MST_UL if (mf->tp == MST_CABLE) { int rc = 0; CALL_DL_FUNC(mcables, mcables_read4, rc, mf, offset, value); if (!rc) { return 4; } else { return -1; } } #endif if (mf->vsec_supp) { return mread4_new(mf, offset, value); } return mread4_old(mf, offset, value); } /* * HACK- Only to pass freebsd compilation */ int mread64(mfile* mf, unsigned int offset, void* data, int length) { (void)mf; (void)offset; (void)data; (void)length; return -1; } /* * HACK- Only to pass freebsd compilation */ int mwrite64(mfile* mf, unsigned int offset, void* data, int length) { (void)mf; (void)offset; (void)data; (void)length; return -1; } // read_config(int fd, struct pcisel *sel, unsigned long reg, int width); // write_config(mf->fd, int fd, struct pcisel *sel, unsigned long reg, unsigned long data, int width) /* * Write 4 bytes, return number of succ. written bytes or -1 on failure */ int mwrite4_old(mfile* mf, unsigned int offset, u_int32_t value) { int rc; offset = __cpu_to_le32(offset); value = __cpu_to_le32(value); int lock_rc; lock_rc = _flock_int(mf->fdlock, LOCK_EX); if (lock_rc) { return 0; } if (mf->wo_addr) { rc = write_config(mf, PCI_CONF_DATA, (unsigned long)value, 4); if (rc) { goto cleanup; } rc = write_config(mf, PCI_CONF_ADDR, (unsigned long)offset, 4); if (rc) { goto cleanup; } } else { rc = write_config(mf, PCI_CONF_ADDR, (unsigned long)offset, 4); if (rc) { goto cleanup; } rc = write_config(mf, PCI_CONF_DATA, (unsigned long)value, 4); if (rc) { goto cleanup; } } cleanup: lock_rc = _flock_int(mf->fdlock, LOCK_UN); if (lock_rc || rc) { return 0; } return 4; } int mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { #ifndef MST_UL if (mf->tp == MST_CABLE) { int rc = 0; CALL_DL_FUNC(mcables, mcables_write4, rc, mf, offset, value); if (!rc) { return 4; } else { return -1; } } #endif if (mf->vsec_supp) { return mwrite4_new(mf, offset, value); } return mwrite4_old(mf, offset, value); } //////////// NEW //////////////////// static int mread_chunk_as_multi_mread4(mfile* mf, unsigned int offset, void* data, int length) { int i; if (length % 4) { return -EINVAL; } for (i = 0; i < length; i += 4) { u_int32_t value; if (mread4(mf, offset + i, &value) != 4) { return -1; } memcpy((char*)data + i, &value, 4); } return length; } static int mwrite_chunk_as_multi_mwrite4(mfile* mf, unsigned int offset, void* data, int length) { int i; if (length % 4) { return -EINVAL; } for (i = 0; i < length; i += 4) { u_int32_t value; memcpy(&value, (char*)data + i, 4); if (mwrite4(mf, offset + i, value) != 4) { return -1; } } return length; } int mread4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { int rc = byte_len; #ifndef MST_UL if (mf->tp == MST_CABLE) { int ret = 0; CALL_DL_FUNC(mcables, mcables_read4_block, ret, mf, offset, data, byte_len); if (ret != 0) { rc -= ret; // Return less than byte_len to ensure error in reading } return rc; } #endif if (mf->vsec_supp) { int rc = mread4_block_new(mf, offset, byte_len, data); // printf("-D- MREAD BLOCK LEN: %d, RC: %d\n", byte_len, rc); return rc; } rc = mread_chunk_as_multi_mread4(mf, offset, data, byte_len); return rc; } int mwrite4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { int rc = byte_len; #ifndef MST_UL if (mf->tp == MST_CABLE) { int ret = 0; CALL_DL_FUNC(mcables, mcables_write4_block, ret, mf, offset, data, byte_len); if (ret != 0) { rc -= ret; // Return less than byte_len to ensure error in reading } return rc; } #endif if (mf->vsec_supp) { return mwrite4_block_new(mf, offset, byte_len, data); } rc = mwrite_chunk_as_multi_mwrite4(mf, offset, data, byte_len); return rc; } int msw_reset(mfile* mf) { (void)mf; return -1; } int mhca_reset(mfile* mf) { (void)mf; return -1; } int mi2c_detect(mfile* mf, u_int8_t slv_arr[SLV_ADDRS_NUM]) { (void)mf; (void)slv_arr; return 1; } int mread_i2cblock(mfile* mf, unsigned char i2c_slave, u_int8_t addr_width, unsigned int offset, void* data, int length) { (void)mf; (void)i2c_slave; (void)addr_width; (void)offset; (void)data; (void)length; return 0; } int mwrite_i2cblock(mfile* mf, unsigned char i2c_slave, u_int8_t addr_width, unsigned int offset, void* data, int length) { (void)mf; (void)i2c_slave; (void)addr_width; (void)offset; (void)data; (void)length; return 0; } static void fix_endianness(u_int32_t* buf, int len) { int i; for (i = 0; i < (len / 4); ++i) { // printf("-D- before: buf[%d] = %#x\n", i, buf[i]); buf[i] = __be32_to_cpu(buf[i]); // printf("-D- before: buf[%d] = %#x\n", i, buf[i]); } } int mread_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { int rc; rc = mread4_block(mf, offset, (u_int32_t*)data, byte_len); fix_endianness((u_int32_t*)data, byte_len); return rc; } int mwrite_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { fix_endianness((u_int32_t*)data, byte_len); return mwrite4_block(mf, offset, (u_int32_t*)data, byte_len); } int mget_mdevs_flags(mfile* mf, u_int32_t* devs_flags) { if (mf == NULL || devs_flags == NULL) { errno = -EINVAL; return 1; } *devs_flags = mf->flags; return 0; } int mget_mdevs_type(mfile* mf, u_int32_t* mtype) { if (mf == NULL || mtype == NULL) { errno = -EINVAL; return 1; } *mtype = mf->tp; return 0; } unsigned char mset_i2c_slave(mfile* mf, unsigned char new_i2c_slave) { unsigned char ret; if (mf) { ret = mf->i2c_slave; mf->i2c_slave = new_i2c_slave; } else { ret = 0xff; } return ret; } int mget_i2c_slave(mfile* mf, unsigned char* new_i2c_slave_p) { if (mf) { *new_i2c_slave_p = mf->i2c_slave; return 0; } return -1; } #define MLX_DEV_PREFIX1 "mlx4_core" #define MLX_DEV_PREFIX2 "mlx5_core" static int get_device_ids(const char* dev_name, dev_info* dinfo) { mfile* mf = mopen(dev_name); int rc = 0; u_int32_t buf = 0; if (!mf) { return 1; } int lock_rc = _flock_int(mf->fdlock, LOCK_EX); if (lock_rc) { return 1; } rc = read_config(mf, PCI_HEADER_OFFS, &buf, 4); if (rc) { goto exit; } dinfo->pci.vend_id = EXTRACT(buf, 0, 16); dinfo->pci.dev_id = EXTRACT(buf, 16, 16); rc = read_config(mf, PCI_CLASS_OFFS, &buf, 4); if (rc) { goto exit; } dinfo->pci.class_id = EXTRACT(buf, 8, 24); rc = read_config(mf, PCI_SUBSYS_OFFS, &buf, 4); if (rc) { goto exit; } dinfo->pci.subsys_vend_id = EXTRACT(buf, 0, 16); dinfo->pci.subsys_id = EXTRACT(buf, 16, 16); exit: lock_rc = _flock_int(mf->fdlock, LOCK_UN); mclose(mf); if (lock_rc) { return 1; } return rc; } static int get_dev_dbdf(const char* dev_name, unsigned int* domain, unsigned int* bus, unsigned int* dev, unsigned int* func) { char* dbdf_str = strstr(dev_name, "pci"); int rc = 0; if (!dbdf_str) { return 1; } rc = sscanf(dbdf_str, "pci%u:%u:%u:%u", domain, bus, dev, func); if (rc != 4) { return 1; } return 0; } int get_device_flags(const char* name) { int mask = 0; mask = MDEVS_TAVOR_CR; if (strstr(name, "cable")) { mask = MDEVS_CABLE; } return mask; } #define CABLES_DIR "/etc/mft/cables" #define PUTC(c) \ do \ { \ *p++ = (c); \ if (++cnt >= len) \ { \ closedir(dir); \ return -1; \ } \ } while (0) #define PUTS(s) \ do \ { \ for (i = 0; (s)[i]; i++) \ { \ PUTC((s)[i]); \ } \ } while (0) int mdevices_v(char* buf, int len, int mask, int verbosity) { int i; int s, b, d, f, tmp; int rc = 0; int cnt = 0; FILE* fp; char dev_line[1035]; char* p = buf; if (mask & MDEVS_TAVOR_CR) { /* Get all Mellanox devices - this cmd will return the needed devices one in every line */ fp = popen("pciconf -lv | grep -B 1 Mellanox | grep pci | cut -f1 | cut -f2 -d \"@\" | cut -f1-4 -d \":\"", "r"); if (fp == NULL) { return -1; } /* Read the output one line at a time */ while (fgets(dev_line, sizeof(dev_line) - 1, fp) != NULL) { tmp = sscanf(dev_line, "pci%d:%d:%d:%d\n", &s, &b, &d, &f); (void)tmp; // TODO: check sscanf ret value if (!verbosity && f != 0) { continue; } for (i = 0; !(dev_line[i] == '\n'); i++) { *p++ = dev_line[i]; if (++cnt >= len) { pclose(fp); return -1; } } *p++ = 0; /* terminate device */ rc++; /* increament the device count */ } /* close */ pclose(fp); } if (mask & MDEVS_CABLE) { /* * Get cables */ DIR* dir = opendir(CABLES_DIR); struct dirent* dirent; if (dir != NULL) { dirent = readdir(dir); while (dirent != NULL) { char* name = dirent->d_name; /* According to mask */ if (get_device_flags(name) & MDEVS_CABLE) { PUTS(name); PUTC('\0'); rc++; } dirent = readdir(dir); } closedir(dir); } } return rc; } int mdevices(char* buf, int len, int mask) { return mdevices_v(buf, len, mask, 0); } static void remove_newline_chars(char* str) { int i; for (i = strlen(str) - 1; i >= 0 && (str[i] == '\n' || str[i] == '\r'); i--) { str[i] = '\0'; } } // replace with a new string // free the old one static char* manipulate_ib_dev_line(char* line) { if (!line) { return NULL; } char* old_str = line; char* new_str = NULL; while (*line != '.') { if (!(*line)) { goto cleanup; } line++; } line++; char* end = line; char* num = NULL; int count_dots = 0; while (1) { if (!(*end)) { goto cleanup; } else if (*end == '.') { if (count_dots) { *end = '\0'; break; } else { count_dots++; if (*(end + 1)) { num = end + 1; } else { goto cleanup; } } } else if (*end == '_') { *(end + 1) = '\0'; } end++; } line = strcat(line, num); new_str = (char*)malloc(strlen(line) + 1); if (!new_str) { errno = ENOMEM; goto cleanup; } strcpy(new_str, line); cleanup: free(old_str); return new_str; } // number_of_first_entries_to_skip should be 0 for regular array destruction static void destroy_str_arr(char** arr, int number_of_first_entries_to_skip) { if (!arr) { return; } int i; for (i = number_of_first_entries_to_skip; arr[i]; i++) { free(arr[i]); arr[i] = NULL; } free(arr); arr = NULL; } // copying file lines into a an array of char*, while manipulating each line with a special function (if supplied) // caller should destroy the array static char** file2array(FILE* fp, char* (*string_mainpulation_func_ptr)(char*)) { char* line = NULL; size_t len = 0; int lines_allocated = 8; // can realloc later int error = 0; int i = 0; char** arr = (char**)malloc((lines_allocated + 1) * sizeof(char*)); if (!arr) { errno = ENOMEM; error = 1; goto cleanup; } memset(arr, 0, (lines_allocated + 1) * sizeof(char*)); while (getline(&line, &len, fp) != -1) { arr[i] = (char*)malloc(len * sizeof(char)); if (!arr[i]) { errno = ENOMEM; error = 1; goto cleanup; } strcpy(arr[i], line); free(line); line = NULL; len = 0; remove_newline_chars(arr[i]); if (string_mainpulation_func_ptr) { arr[i] = (*string_mainpulation_func_ptr)(arr[i]); } if (!arr[i]) { continue; } i++; if (i >= lines_allocated) { lines_allocated *= 2; char** tmp = realloc(arr, (lines_allocated + 1) * sizeof(char*)); if (!tmp) { errno = ENOMEM; error = 1; goto cleanup; } arr = tmp; } } cleanup: // This is done so the caller can free all the array cells without knowing its size // Iterate until NULL termination if (arr) { arr[i] = NULL; } if (line) { free(line); } if (error || i == 0) { destroy_str_arr(arr, 0); return NULL; } return arr; } // Execute cmd and get output in a strings array, after desired output manipulation // via a speacial manipulation function (if supplied) // if there is relevant input to the special function pass it as well. static char** exec_cmd_get_output(char* cmd, char* (*string_mainpulation_func_ptr)(char*)) { char* wrapped_cmd = (char*)malloc(strlen(cmd) + strlen(" 2>/dev/null") + 2); if (!wrapped_cmd) { return NULL; } sprintf(wrapped_cmd, "%s %s", cmd, " 2>/dev/null"); FILE* fp = popen(wrapped_cmd, "r"); free(wrapped_cmd); if (!fp) { return NULL; } char** output = file2array(fp, string_mainpulation_func_ptr); pclose(fp); return output; } static char* exec_cmd_get_output_first_line(char* cmd, char* (*string_mainpulation_func_ptr)(char*)) { char** res = exec_cmd_get_output(cmd, string_mainpulation_func_ptr); char* out = res[0]; destroy_str_arr(res, 1); return out; } static char** get_ports(char* ib_dev) { char* cmd = (char*)malloc(strlen("sysctl sys.class.infiniband..ports | awk -F. '{print $6}' | uniq | sort") + strlen(ib_dev) + 1); if (!cmd) { return NULL; } sprintf(cmd, "sysctl sys.class.infiniband.%s.ports | awk -F. '{print $6}' | uniq | sort", ib_dev); char** out = exec_cmd_get_output(cmd, NULL); free(cmd); return out; } static char* get_link_layer(char* ib_dev, char* port) { char* cmd = (char*)malloc(strlen("sysctl -n sys.class.infiniband..ports..link_layer") + strlen(ib_dev) + strlen(port) + 1); if (!cmd) { return NULL; } sprintf(cmd, "sysctl -n sys.class.infiniband.%s.ports.%s.link_layer", ib_dev, port); char* out = exec_cmd_get_output_first_line(cmd, NULL); free(cmd); return out; } static char* get_eth_net_dev(char* ib_dev, char* port) { char* cmd = (char*)malloc(strlen("sysctl -n sysctl sys.class.infiniband..ports..gid_attrs.ndevs.0") + strlen(ib_dev) + strlen(port) + 1); if (!cmd) { return NULL; } sprintf(cmd, "sysctl -n sysctl sys.class.infiniband.%s.ports.%s.gid_attrs.ndevs.0", ib_dev, port); char* out = exec_cmd_get_output_first_line(cmd, NULL); free(cmd); return out; } static char** get_ifcs() { return exec_cmd_get_output("ifconfig -l | tr \" \" \"\\n\"", NULL); } static char* get_gid(char* ib_dev, char* port) { char* cmd = (char*)malloc(strlen("sysctl -n sys.class.infiniband..ports..gids.0 |" " cut -b 21- | sed -e 's/://g'") + strlen(ib_dev) + strlen(port) + 1); if (!cmd) { return NULL; } sprintf(cmd, "sysctl -n sys.class.infiniband.%s.ports.%s.gids.0 | cut -b 21- | sed -e 's/://g'", ib_dev, port); char* out = exec_cmd_get_output_first_line(cmd, NULL); free(cmd); return out; } static char* lladdr_to_gid_format(char* lladdr) { if (!lladdr) { return NULL; } int end = strlen(lladdr) - 1; int i; int dot_count = 0; for (i = end; i >= 0; i--) { if (lladdr[i] == '.') { dot_count++; } if (dot_count == 8) { lladdr = &lladdr[i]; break; } if (i == 0) { return NULL; } } if (*(lladdr + 1) && *(lladdr + 2) && *(lladdr + 2) != '.') { lladdr++; } char* curptr = lladdr; while (*curptr) { if (*curptr == '.') { if (*(curptr + 1) && ((*(curptr + 2) == '.') || !(*(curptr + 2)))) { *curptr = '0'; curptr++; } else { *curptr = '\0'; if (*(curptr + 1)) { lladdr = strcat(lladdr, curptr + 1); } } } else { curptr++; } } return lladdr; } static char* get_lladdr(char* ifc) { char* cmd = (char*)malloc(strlen("ifconfig | grep lladdr | awk '{print $2}'") + strlen(ifc) + 1); if (!cmd) { return NULL; } sprintf(cmd, "ifconfig %s | grep lladdr | awk '{print $2}'", ifc); char* lladdr = exec_cmd_get_output_first_line(cmd, NULL); free(cmd); return lladdr_to_gid_format(lladdr); } static char* get_inband_net_dev(char* ib_dev, char* port, char** ifcs) { char* gid = get_gid(ib_dev, port); if (!gid) { return NULL; } int i; for (i = 0; ifcs[i]; i++) { if (strstr(ifcs[i], "ib") == ifcs[i]) { char* lladdr = get_lladdr(ifcs[i]); if (!strcmp(lladdr, gid)) { free(lladdr); free(gid); char* netdev = (char*)malloc(strlen(ifcs[i]) + 1); if (!netdev) { errno = ENOMEM; return NULL; } strcpy(netdev, ifcs[i]); return netdev; } free(lladdr); } } free(gid); return NULL; } static char** get_net_devs(char** ib_devs) { if (!ib_devs) { return NULL; } char** ifcs = get_ifcs(); if (!ifcs) { return NULL; } char** ports = NULL; char* link_layer = NULL; int i; int error = 0; int lines_allocated = 8; // can realloc later char** net_devs = (char**)malloc((lines_allocated + 1) * sizeof(char*)); if (!net_devs) { errno = ENOMEM; error = 1; goto cleanup; } memset(net_devs, 0, (lines_allocated + 1) * sizeof(char*)); int k = 0; for (i = 0; ib_devs[i]; i++) { ports = get_ports(ib_devs[i]); if (!ports) { error = 1; goto cleanup; } int j; for (j = 0; ports[j]; j++) { link_layer = get_link_layer(ib_devs[i], ports[j]); if (!link_layer) { error = 1; goto cleanup; } char* netdev; if (!strcmp(link_layer, "Ethernet")) { netdev = get_eth_net_dev(ib_devs[i], ports[j]); } else if (!strcmp(link_layer, "InfiniBand")) { netdev = get_inband_net_dev(ib_devs[i], ports[j], ifcs); } else { error = 1; goto cleanup; } if (netdev) { net_devs[k] = netdev; k++; if (k > lines_allocated) { lines_allocated *= 2; char** tmp = realloc(net_devs, (lines_allocated + 1) * sizeof(char*)); if (!tmp) { errno = ENOMEM; error = 1; goto cleanup; } net_devs = tmp; } } } } net_devs[k] = NULL; cleanup: if (error) { destroy_str_arr(net_devs, 0); net_devs = NULL; } destroy_str_arr(ifcs, 0); destroy_str_arr(net_devs, 0); destroy_str_arr(ports, 0); free(link_layer); return net_devs; } static char** get_ib_devs(char conf_dev[512]) { char* cmd = (char*)malloc(strlen("sysctl -a | grep mlx | grep pci | grep ") + strlen(conf_dev) + 1); if (!cmd) { return NULL; } sprintf(cmd, "sysctl -a | grep mlx | grep pci | grep %s", conf_dev); char** ib_devs = exec_cmd_get_output(cmd, manipulate_ib_dev_line); free(cmd); return ib_devs; } dev_info* mdevices_info(int mask, int* len) { return mdevices_info_v(mask, len, 0); } dev_info* mdevices_info_v(int mask, int* len, int verbosity) { char* devs = 0; char* dev_name; int size = 2048; int rc; int i; // Get list of devices do { if (devs) { free(devs); } size *= 2; devs = malloc(size); if (!devs) { errno = ENOMEM; return NULL; } rc = mdevices_v(devs, size, mask, verbosity); } while (rc == -1); *len = rc; dev_info* dev_info_arr = malloc(sizeof(dev_info) * rc); if (!dev_info_arr) { errno = ENOMEM; free(devs); return NULL; } memset(dev_info_arr, 0, sizeof(dev_info) * rc); dev_name = devs; for (i = 0; i < *len; i++) { unsigned int domain = 0; unsigned int bus = 0; unsigned int dev = 0; unsigned int func = 0; dev_info_arr[i].type = get_device_flags(dev_name); strcpy(dev_info_arr[i].dev_name, dev_name); strcpy(dev_info_arr[i].pci.conf_dev, dev_name); if (dev_info_arr[i].type & MDEVS_TAVOR_CR) { if (get_dev_dbdf(dev_name, &domain, &bus, &dev, &func)) { goto next; } dev_info_arr[i].pci.domain = domain; dev_info_arr[i].pci.bus = bus; dev_info_arr[i].pci.dev = dev; dev_info_arr[i].pci.func = func; if (get_device_ids(dev_name, &dev_info_arr[i])) { goto next; } } if (verbosity) { dev_info_arr[i].pci.ib_devs = get_ib_devs(dev_info_arr[i].pci.conf_dev); dev_info_arr[i].pci.net_devs = get_net_devs(dev_info_arr[i].pci.ib_devs); } next: dev_name += strlen(dev_name) + 1; } free(devs); return dev_info_arr; } void mdevices_info_destroy(dev_info* dev_info, int len) { int i; if (dev_info) { for (i = 0; i < len; i++) { if (dev_info[i].pci.ib_devs) { destroy_str_arr(dev_info[i].pci.ib_devs, 0); } if (dev_info[i].pci.net_devs) { destroy_str_arr(dev_info[i].pci.net_devs, 0); } } free(dev_info); dev_info = NULL; } } #define TLV_OPERATION_SIZE 4 #define OP_TLV_SIZE 16 #define REG_TLV_HEADER_LEN 4 enum { MAD_CLASS_REG_ACCESS = 1, }; enum { TLV_END = 0, TLV_OPERATION = 1, TLV_DR = 2, TLV_REG = 3, TLV_USER_DATA = 4, }; #define REGISTER_HEADERS_SIZE 20 #define INBAND_MAX_REG_SIZE 44 #define ICMD_MAX_REG_SIZE (ICMD_MAX_CMD_SIZE - REGISTER_HEADERS_SIZE) #define FWCTX_MAX_REG_SIZE 16 #define TOOLS_HCR_MAX_REG_SIZE (TOOLS_HCR_MAX_MBOX - REGISTER_HEADERS_SIZE) static int supports_icmd(mfile* mf); static int supports_tools_cmdif_reg(mfile* mf); static int init_operation_tlv(struct OperationTlv* operation_tlv, u_int16_t reg_id, u_int8_t method); static int mreg_send_wrapper(mfile* mf, u_int8_t* data, int r_icmd_size, int w_icmd_size); static int mreg_send_raw(mfile* mf, u_int16_t reg_id, maccess_reg_method_t method, void* reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int* reg_status); int mget_max_reg_size(mfile* mf, maccess_reg_method_t reg_method); // maccess_reg: Do a reg_access for the mf device. // - reg_data is both in and out // TODO: When the reg operation succeeds but the reg status is != 0, // a specific int maccess_reg(mfile* mf, u_int16_t reg_id, maccess_reg_method_t reg_method, void* reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int* reg_status) { int rc; if (mf == NULL || reg_data == NULL || reg_status == NULL || reg_size <= 0) { return ME_BAD_PARAMS; } // check register size u_int32_t max_size = (u_int32_t)mget_max_reg_size(mf, reg_method); if (reg_size > max_size) { // reg too big return ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT; } rc = mreg_send_raw(mf, reg_id, reg_method, reg_data, reg_size, r_size_reg, w_size_reg, reg_status); if (rc) { return rc; } else if (*reg_status) { switch (*reg_status) { case 1: return ME_REG_ACCESS_DEV_BUSY; case 2: return ME_REG_ACCESS_VER_NOT_SUPP; case 3: return ME_REG_ACCESS_UNKNOWN_TLV; case 4: return ME_REG_ACCESS_REG_NOT_SUPP; case 5: return ME_REG_ACCESS_CLASS_NOT_SUPP; case 6: return ME_REG_ACCESS_METHOD_NOT_SUPP; case 7: return ME_REG_ACCESS_BAD_PARAM; case 8: return ME_REG_ACCESS_RES_NOT_AVLBL; case 9: return ME_REG_ACCESS_MSG_RECPT_ACK; case 0x22: return ME_REG_ACCESS_CONF_CORRUPT; case 0x24: return ME_REG_ACCESS_LEN_TOO_SMALL; case 0x20: return ME_REG_ACCESS_BAD_CONFIG; case 0x21: return ME_REG_ACCESS_ERASE_EXEEDED; case 0x70: return ME_REG_ACCESS_INTERNAL_ERROR; default: return ME_REG_ACCESS_UNKNOWN_ERR; } } return ME_OK; } static int init_operation_tlv(struct OperationTlv* operation_tlv, u_int16_t reg_id, u_int8_t method) { memset(operation_tlv, 0, sizeof(*operation_tlv)); operation_tlv->Type = TLV_OPERATION; operation_tlv->class = MAD_CLASS_REG_ACCESS; operation_tlv->len = TLV_OPERATION_SIZE; operation_tlv->method = method; operation_tlv->register_id = reg_id; return 0; } /////////////////// Function that sends the register via the correct interface /////////////////////////// static int mreg_send_wrapper(mfile* mf, u_int8_t* data, int r_icmd_size, int w_icmd_size) { int rc; if (supports_icmd(mf)) { rc = icmd_send_command_int(mf, FLASH_REG_ACCESS, data, w_icmd_size, r_icmd_size, 0); if (rc) { return rc; } } else if (supports_tools_cmdif_reg(mf)) { rc = tools_cmdif_reg_access(mf, data, w_icmd_size, r_icmd_size); if (rc) { return rc; } } else { return ME_NOT_IMPLEMENTED; } return ME_OK; } static int mreg_send_raw(mfile* mf, u_int16_t reg_id, maccess_reg_method_t method, void* reg_data, u_int32_t reg_size, u_int32_t r_size_reg, u_int32_t w_size_reg, int* reg_status) { // printf("-D- reg_id = %d, reg_size = %d, r_size_reg = %d , w_size_reg = // %d\n",reg_id,reg_size,r_size_reg,w_size_reg); int mad_rc, cmdif_size = 0; struct OperationTlv tlv; struct reg_tlv tlv_info; u_int8_t buffer[1024]; init_operation_tlv(&(tlv), reg_id, method); // Fill Reg TLV memset(&tlv_info, 0, sizeof(tlv_info)); tlv_info.Type = TLV_REG; tlv_info.len = (reg_size + REG_TLV_HEADER_LEN) >> 2; // length is in dwords // Pack the mad cmdif_size += OperationTlv_pack(&tlv, buffer); cmdif_size += reg_tlv_pack(&tlv_info, buffer + OP_TLV_SIZE); // put the reg itself into the buffer memcpy(buffer + OP_TLV_SIZE + REG_TLV_HEADER_LEN, reg_data, reg_size); cmdif_size += reg_size; #ifdef _ENABLE_DEBUG_ fprintf(stdout, "-I-Tlv's of Data Sent:\n"); fprintf(stdout, "\tOperation Tlv\n"); OperationTlv_dump(&tlv, stdout); fprintf(stdout, "\tReg Tlv\n"); reg_tlv_dump(&tlv_info, stdout); #endif // printf("-D- reg_info.len = |%d, OP_TLV: %d, REG_TLV= %d, cmdif_size = %d\n", reg_info.len, OP_TLV_SIZE, // REG_RLV_HEADER_LEN, cmdif_size); update r/w_size_reg with the size of op tlv and reg tlv as we need to read/write // them as well r_size_reg += OP_TLV_SIZE + REG_TLV_HEADER_LEN; w_size_reg += OP_TLV_SIZE + REG_TLV_HEADER_LEN; // printf("-D- reg_size = %d, r_size_reg = %d , w_size_reg = %d\n",reg_size,r_size_reg,w_size_reg); mad_rc = mreg_send_wrapper(mf, buffer, r_size_reg, w_size_reg); // Unpack the mad OperationTlv_unpack(&tlv, buffer); reg_tlv_unpack(&tlv_info, buffer + OP_TLV_SIZE); // copy register back from the buffer memcpy(reg_data, buffer + OP_TLV_SIZE + REG_TLV_HEADER_LEN, reg_size); #ifdef _ENABLE_DEBUG_ fprintf(stdout, "-I-Tlv's of Data Received:\n"); fprintf(stdout, "\tOperation Tlv\n"); OperationTlv_dump(&tlv, stdout); fprintf(stdout, "\tReg Tlv\n"); reg_tlv_dump(&tlv_info, stdout); #endif // Check the return value *reg_status = tlv.status; if (mad_rc) { return mad_rc; } return ME_OK; } #define CONNECTX3_HW_ID 0x1f5 #define CONNECTX3_PRO_HW_ID 0x1f7 static int supports_icmd(mfile* mf) { u_int32_t dev_id; if (read_device_id(mf, &dev_id) != 4) { // cr might be locked and retured 0xbad0cafe but we dont care we search for device that supports icmd return 0; } switch (dev_id & 0xffff) { // that the hw device id case CONNECTX3_HW_ID: case CONNECTX3_PRO_HW_ID: return 0; default: break; } return 1; } static int supports_tools_cmdif_reg(mfile* mf) { u_int32_t dev_id; if (read_device_id(mf, &dev_id) != 4) { return 0; } switch (dev_id & 0xffff) { // that the hw device id case CONNECTX3_HW_ID: // Cx3 case CONNECTX3_PRO_HW_ID: // Cx3-pro if (tools_cmdif_is_supported(mf) == ME_OK) { return 1; } return 0; default: return 0; } } int mget_max_reg_size(mfile* mf, maccess_reg_method_t reg_method) { if (mf->acc_reg_params.max_reg_size[reg_method]) { return mf->acc_reg_params.max_reg_size[reg_method]; } else if (supports_icmd(mf)) { // we support icmd and we dont use IB interface -> we use icmd for reg access // TOOD: get size dynamically from icmd_params once we have support by fw for mfba with size field greater than // 8 bits mf->acc_reg_params.max_reg_size[reg_method] = ICMD_MAX_REG_SIZE; } else if (supports_tools_cmdif_reg(mf)) { mf->acc_reg_params.max_reg_size[reg_method] = TOOLS_HCR_MAX_REG_SIZE; } return mf->acc_reg_params.max_reg_size[reg_method]; } /************************************ * Function: m_err2str ************************************/ const char* m_err2str(MError status) { switch (status) { case ME_OK: return "ME_OK"; case ME_ERROR: return "General error"; case ME_BAD_PARAMS: return "ME_BAD_PARAMS"; case ME_CR_ERROR: return "ME_CR_ERROR"; case ME_NOT_IMPLEMENTED: return "ME_NOT_IMPLEMENTED"; case ME_SEM_LOCKED: return "Semaphore locked"; case ME_MEM_ERROR: return "ME_MEM_ERROR"; case ME_UNSUPPORTED_OPERATION: return "ME_UNSUPPORTED_OPERATION"; case ME_MAD_SEND_FAILED: return "ME_MAD_SEND_FAILED"; case ME_UNKOWN_ACCESS_TYPE: return "ME_UNKOWN_ACCESS_TYPE"; case ME_UNSUPPORTED_ACCESS_TYPE: return "ME_UNSUPPORTED_ACCESS_TYPE"; case ME_UNSUPPORTED_DEVICE: return "ME_UNSUPPORTED_DEVICE"; // Reg access errors case ME_REG_ACCESS_BAD_STATUS_ERR: return "ME_REG_ACCESS_BAD_STATUS_ERR"; case ME_REG_ACCESS_BAD_METHOD: return "Bad method"; case ME_REG_ACCESS_NOT_SUPPORTED: return "The Register access is not supported by the device"; case ME_REG_ACCESS_DEV_BUSY: return "Device is busy"; case ME_REG_ACCESS_VER_NOT_SUPP: return "Version not supported"; case ME_REG_ACCESS_UNKNOWN_TLV: return "Unknown TLV"; case ME_REG_ACCESS_REG_NOT_SUPP: return "Register not supported"; case ME_REG_ACCESS_CLASS_NOT_SUPP: return "Class not supported"; case ME_REG_ACCESS_METHOD_NOT_SUPP: return "Method not supported"; case ME_REG_ACCESS_BAD_PARAM: return "Bad parameter"; case ME_REG_ACCESS_RES_NOT_AVLBL: return "Resource unavailable"; case ME_REG_ACCESS_MSG_RECPT_ACK: return "Message receipt ack"; case ME_REG_ACCESS_UNKNOWN_ERR: return "Unknown register error"; case ME_REG_ACCESS_SIZE_EXCCEEDS_LIMIT: return "Register is too large"; case ME_REG_ACCESS_CONF_CORRUPT: return "Config Section Corrupted"; case ME_REG_ACCESS_LEN_TOO_SMALL: return "The given Register length is too small for the Tlv"; case ME_REG_ACCESS_BAD_CONFIG: return "The configuration is rejected"; case ME_REG_ACCESS_ERASE_EXEEDED: return "The erase count exceeds its limit"; case ME_REG_ACCESS_INTERNAL_ERROR: return "Firmware internal error"; // ICMD access errors case ME_ICMD_STATUS_CR_FAIL: return "ME_ICMD_STATUS_CR_FAIL"; case ME_ICMD_STATUS_SEMAPHORE_TO: return "ME_ICMD_STATUS_SEMAPHORE_TO"; case ME_ICMD_STATUS_EXECUTE_TO: return "ME_ICMD_STATUS_EXECUTE_TO"; case ME_ICMD_STATUS_IFC_BUSY: return "ME_ICMD_STATUS_IFC_BUSY"; case ME_ICMD_STATUS_ICMD_NOT_READY: return "ME_ICMD_STATUS_ICMD_NOT_READY"; case ME_ICMD_UNSUPPORTED_ICMD_VERSION: return "ME_ICMD_UNSUPPORTED_ICMD_VERSION"; case ME_ICMD_NOT_SUPPORTED: return "ME_REG_ACCESS_ICMD_NOT_SUPPORTED"; case ME_ICMD_INVALID_OPCODE: return "ME_ICMD_INVALID_OPCODE"; case ME_ICMD_INVALID_CMD: return "ME_ICMD_INVALID_CMD"; case ME_ICMD_OPERATIONAL_ERROR: return "ME_ICMD_OPERATIONAL_ERROR"; case ME_ICMD_BAD_PARAM: return "ME_ICMD_BAD_PARAM"; case ME_ICMD_BUSY: return "ME_ICMD_BUSY"; case ME_ICMD_ICM_NOT_AVAIL: return "ME_ICMD_ICM_NOT_AVAIL"; case ME_ICMD_WRITE_PROTECT: return "ME_ICMD_WRITE_PROTECT"; case ME_ICMD_UNKNOWN_STATUS: return "ME_ICMD_UNKNOWN_STATUS"; case ME_ICMD_SIZE_EXCEEDS_LIMIT: return "ME_ICMD_SIZE_EXCEEDS_LIMIT"; // MAD IFC errors case ME_MAD_BUSY: return "Temporarily busy. MAD discarded. This is not an error"; case ME_MAD_REDIRECT: return "Redirection. This is not an error"; case ME_MAD_BAD_VER: return "Bad version"; case ME_MAD_METHOD_NOT_SUPP: return "Method not supported"; case ME_MAD_METHOD_ATTR_COMB_NOT_SUPP: return "Method and attribute combination isn't supported"; case ME_MAD_BAD_DATA: return "Bad attribute modifer or field"; case ME_MAD_GENERAL_ERR: return "Unknown MAD error"; default: return "Unknown error code"; } } void mpci_change(mfile* mf) { (void)mf; } int mib_smp_get(mfile* mf, u_int8_t* data, u_int16_t attr_id, u_int32_t attr_mod) { (void)mf; (void)data; (void)attr_id; (void)attr_mod; errno = ENOSYS; return -1; } int mib_smp_set(mfile* mf, u_int8_t* data, u_int16_t attr_id, u_int32_t attr_mod) { (void)mf; (void)data; (void)attr_id; (void)attr_mod; errno = ENOSYS; return -1; } int mset_cr_access(mfile* mf, int access) { (void)mf; (void)access; errno = ENOSYS; return -1; } int mget_vsec_supp(mfile* mf) { return mf->vsec_supp; } int mget_addr_space(mfile* mf) { return mf->address_space; } int mset_addr_space(mfile* mf, int space) { switch (space) { case AS_CR_SPACE: case AS_ICMD: case AS_SEMAPHORE: break; default: return -1; } mf->address_space = space; return 0; } int device_exists(const char* devname) { char* devs = NULL; char* pdevs; int size = 512; int rc = 0; int i = 0; int res = 0; // Get list of devices do { if (devs) { free(devs); } size *= 2; devs = malloc(size); if (!devs) { errno = ENOMEM; return 0; } rc = mdevices_v(devs, size, MDEVS_ALL, 1); } while (rc == -1); pdevs = devs; while (i < rc) { if (!strcmp(devname, pdevs)) { res = 1; goto cleanup; } pdevs += strlen(pdevs) + 1; i++; } cleanup: if (devs) { free(devs); } return res; } int mclear_pci_semaphore(const char* name) { mfile* mf; int rc = ME_OK; mf = mopen_int(name, Clear_Vsec_Semaphore); if (!mf) { return ME_ERROR; } if (mf->tp != MST_PCICONF) { rc = ME_UNSUPPORTED_ACCESS_TYPE; } mclose(mf); return rc; } int mvpd_read4_int(mfile* mf, unsigned int offset, u_int8_t value[4]) { int vpd_cap = mf->vpd_cap_addr; uint16_t write_addr; uint32_t read_addr; int res; int count_to_timeout; int done = 0; if (!mf || !value) { return ME_BAD_PARAMS; } if (!vpd_cap) { return ME_UNSUPPORTED_OPERATION; } int lock_rc = _flock_int(mf->fdlock, LOCK_EX); if (lock_rc) { perror("READ VPD"); return ME_ERROR; } /* sets F bit to zero and write VPD addr */ write_addr = (0x7fff & offset); res = write_config(mf, vpd_cap + PCI_VPD_ADDR, write_addr, 2); if (res) { res = ME_CR_ERROR; goto cleanup; } /* wait for data until F bit is set with one */ for (count_to_timeout = 0; count_to_timeout < MST_VPD_DFLT_TIMEOUT; count_to_timeout++) { res = read_config(mf, vpd_cap + PCI_VPD_ADDR, &read_addr, 2); if (res) { res = ME_CR_ERROR; goto cleanup; } if (read_addr & 0x8000) { done = 1; break; } sched_yield(); } if (done) { res = read_config(mf, vpd_cap + PCI_VPD_DATA, (uint32_t*)value, 4); if (res) { res = ME_CR_ERROR; } } else { res = ME_TIMEOUT; } cleanup: lock_rc = _flock_int(mf->fdlock, LOCK_UN); if (lock_rc) { perror("READ VPD"); return ME_ERROR; } return res; } int mvpd_read4(mfile* mf, unsigned int offset, u_int8_t value[4]) { if (offset % 4) { u_int8_t qword[8] = {0}; int rc = 0; unsigned int aligned_offset = (offset / 4) * 4; rc = mvpd_read4_int(mf, aligned_offset, qword); if (rc) { return rc; } rc = mvpd_read4_int(mf, aligned_offset + 4, qword + 4); memcpy(value, qword + (offset % 4), 4); return 0; } else { return mvpd_read4_int(mf, offset, value); } } int mvpd_write4(mfile* mf, unsigned int offset, u_int8_t value[4]) { (void)mf; (void)offset; (void)value; return ME_UNSUPPORTED_OPERATION; } int supports_reg_access_gmp(mfile* mf, maccess_reg_method_t reg_method) { (void)mf; (void)reg_method; return 0; } int get_dma_pages(mfile* mf, struct mtcr_page_info* page_info, int page_amount) { int page_allocated_counter = 0; int page_counter = 0; int ret_code = ME_OK; // Parameter validation. if (!mf || !page_info) { return ME_BAD_PARAMS; } // Open the memory device file. int file_descriptor = open("/dev/mem", O_RDWR); // Pin the memory in the kernel space. for (page_counter = 0; page_counter < page_amount; page_counter++) { // Allocate the buffer. char* current_page = aligned_alloc(PAGE_SIZE, PAGE_SIZE); // Page allocated ? if (!current_page) { ret_code = ME_MEM_ERROR; break; } page_allocated_counter++; if ((uintptr_t)current_page % PAGE_SIZE) { ret_code = ME_MEM_ERROR; break; } // We need to call mlock after the pages allocation in order to // lock the virtual address space into RAM and preventing that // memory from being paged to the swap area. if (mlock(current_page, PAGE_SIZE)) { ret_code = ME_MEM_ERROR; break; } // Save the virtual address in order to deallocate // the memory at the close function. mf->user_page_list.page_list[page_counter] = current_page; // Building the ioctl structure. struct mem_extract memory_user = {}; memory_user.me_vaddr = (uintptr_t)current_page; // Pin the user memory in the kernel space. int return_code = ioctl(file_descriptor, MEM_EXTRACT_PADDR, &memory_user); if (return_code || (memory_user.me_state != ME_STATE_MAPPED)) { ret_code = ME_MEM_ERROR; break; } // Save the PA and VA for the tool. page_info->page_addresses_array[page_counter].dma_address = memory_user.me_paddr; page_info->page_addresses_array[page_counter].virtual_address = (uintptr_t)current_page; } // Close the device file /dev/mem. close(file_descriptor); if (ret_code) { release_dma_pages(mf, page_allocated_counter); } else { mf->user_page_list.page_amount = page_amount; } return ret_code; } int release_dma_pages(mfile* mf, int page_amount) { // Parameter validation. if (!mf) { return -1; } // Deallocate the pages. for (int page_counter = 0; page_counter < page_amount; page_counter++) { if (!mf->user_page_list.page_list[page_counter]) { continue; } // Unlocking the virtual address of the page, // so that pages in the specified virtual address range may // once more to be swapped out if required by the kernel memory manager. munlock(mf->user_page_list.page_list[page_counter], PAGE_SIZE); // Free the user space memory. free(mf->user_page_list.page_list[page_counter]); mf->user_page_list.page_list[page_counter] = NULL; } mf->user_page_list.page_amount = 0; return 0; } int mset_i2c_addr_width(mfile* mf, u_int8_t addr_width) { (void)mf; (void)addr_width; return 1; } int mget_i2c_addr_width(mfile* mf, u_int8_t* addr_width) { (void)mf; (void)addr_width; return 1; } int set_i2c_freq(mfile* mf, u_int8_t freq) { (void)mf; (void)freq; return 1; } int get_i2c_freq(mfile* mf, u_int8_t* freq) { (void)mf; (void)freq; return 1; } int read_dword_from_conf_space(mfile* mf, u_int32_t offset, u_int32_t* data) { int ret = 0; // Parameters validation. if (!mf || !data) { return -1; } // take semaphore. ret = _vendor_specific_sem(mf, 1); if (ret) { return ret; } // set address space. ret = _set_addr_space(mf, mf->address_space); if (!ret) { // read the data. READ4_PCI(mf, data, offset, "read value", return -1); } // clear semaphore _vendor_specific_sem(mf, 0); return ret; } int mcables_remote_operation_server_side(mfile* mf, u_int32_t address, u_int32_t length, u_int8_t* data, int remote_op) { (void)mf; (void)address; (void)length; (void)data; (void)remote_op; return 0; } int mcables_remote_operation_client_side(mfile* mf, u_int32_t address, u_int32_t length, u_int8_t* data, int remote_op) { (void)mf; (void)address; (void)length; (void)data; (void)remote_op; return 0; } int mlxcables_remote_operation_client_side(mfile* mf, const char* device_name, char op, char flags, const char* reg_name) { (void)mf; (void)device_name; (void)op; (void)flags; (void)reg_name; return 0; }mstflint-4.26.0/mtcr_freebsd/Makefile.am0000755000175000017500000000523414522641732020405 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mtcr_ul noinst_LTLIBRARIES = libmtcr_ul.la libmtcr_ul_la_SOURCES = \ $(top_srcdir)/mtcr_ul/mtcr_ib.h \ $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c \ $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.h \ $(top_srcdir)/mtcr_ul/mtcr_icmd_cif.h \ $(top_srcdir)/mtcr_ul/mtcr_int_defs.h \ $(top_srcdir)/mtcr_ul/mtcr_mem_ops.c \ $(top_srcdir)/mtcr_ul/mtcr_mem_ops.h \ $(top_srcdir)/mtcr_ul/mtcr_tools_cif.c \ $(top_srcdir)/mtcr_ul/mtcr_tools_cif.h\ $(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c \ $(top_srcdir)/mtcr_ul/packets_common.c \ $(top_srcdir)/mtcr_ul/packets_common.h\ $(top_srcdir)/mtcr_ul/packets_layout.c \ $(top_srcdir)/mtcr_ul/packets_layout.h \ mtcr_mf.h \ mtcr_ul.c \ mtcr_ul_com_defs.h libmtcr_ul_la_CFLAGS = -W -Wall -g -MP -MD -fPIC -DMTCR_API="" -DMST_UL if ENABLE_INBAND libmtcr_ul_la_SOURCES += $(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c endif libraryincludedir=$(includedir)/mstflint libraryinclude_HEADERS = \ $(top_srcdir)/include/mtcr_ul/mtcr.h \ $(top_srcdir)/include/mtcr_ul/mtcr_com_defs.h mstflint-4.26.0/mtcr_freebsd/Makefile.in0000644000175000017500000011334714522641740020417 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @ENABLE_INBAND_TRUE@am__append_1 = $(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c subdir = mtcr_freebsd DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(libraryinclude_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmtcr_ul_la_LIBADD = am__libmtcr_ul_la_SOURCES_DIST = $(top_srcdir)/mtcr_ul/mtcr_ib.h \ $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c \ $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.h \ $(top_srcdir)/mtcr_ul/mtcr_icmd_cif.h \ $(top_srcdir)/mtcr_ul/mtcr_int_defs.h \ $(top_srcdir)/mtcr_ul/mtcr_mem_ops.c \ $(top_srcdir)/mtcr_ul/mtcr_mem_ops.h \ $(top_srcdir)/mtcr_ul/mtcr_tools_cif.c \ $(top_srcdir)/mtcr_ul/mtcr_tools_cif.h \ $(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c \ $(top_srcdir)/mtcr_ul/packets_common.c \ $(top_srcdir)/mtcr_ul/packets_common.h \ $(top_srcdir)/mtcr_ul/packets_layout.c \ $(top_srcdir)/mtcr_ul/packets_layout.h mtcr_mf.h mtcr_ul.c \ mtcr_ul_com_defs.h $(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c am__dirstamp = $(am__leading_dot)dirstamp @ENABLE_INBAND_TRUE@am__objects_1 = $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo am_libmtcr_ul_la_OBJECTS = \ $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo \ $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo \ $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo \ $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo \ $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo \ $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo \ libmtcr_ul_la-mtcr_ul.lo $(am__objects_1) libmtcr_ul_la_OBJECTS = $(am_libmtcr_ul_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libmtcr_ul_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libmtcr_ul_la_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmtcr_ul_la_SOURCES) DIST_SOURCES = $(am__libmtcr_ul_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libraryincludedir)" HEADERS = $(libraryinclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mtcr_ul noinst_LTLIBRARIES = libmtcr_ul.la libmtcr_ul_la_SOURCES = $(top_srcdir)/mtcr_ul/mtcr_ib.h \ $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c \ $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.h \ $(top_srcdir)/mtcr_ul/mtcr_icmd_cif.h \ $(top_srcdir)/mtcr_ul/mtcr_int_defs.h \ $(top_srcdir)/mtcr_ul/mtcr_mem_ops.c \ $(top_srcdir)/mtcr_ul/mtcr_mem_ops.h \ $(top_srcdir)/mtcr_ul/mtcr_tools_cif.c \ $(top_srcdir)/mtcr_ul/mtcr_tools_cif.h \ $(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c \ $(top_srcdir)/mtcr_ul/packets_common.c \ $(top_srcdir)/mtcr_ul/packets_common.h \ $(top_srcdir)/mtcr_ul/packets_layout.c \ $(top_srcdir)/mtcr_ul/packets_layout.h mtcr_mf.h mtcr_ul.c \ mtcr_ul_com_defs.h $(am__append_1) libmtcr_ul_la_CFLAGS = -W -Wall -g -MP -MD -fPIC -DMTCR_API="" -DMST_UL libraryincludedir = $(includedir)/mstflint libraryinclude_HEADERS = \ $(top_srcdir)/include/mtcr_ul/mtcr.h \ $(top_srcdir)/include/mtcr_ul/mtcr_com_defs.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mtcr_freebsd/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mtcr_freebsd/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } $(top_srcdir)/mtcr_ul/$(am__dirstamp): @$(MKDIR_P) $(top_srcdir)/mtcr_ul @: > $(top_srcdir)/mtcr_ul/$(am__dirstamp) $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) $(top_srcdir)/mtcr_ul/$(DEPDIR) @: > $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo: \ $(top_srcdir)/mtcr_ul/$(am__dirstamp) \ $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) libmtcr_ul.la: $(libmtcr_ul_la_OBJECTS) $(libmtcr_ul_la_DEPENDENCIES) $(EXTRA_libmtcr_ul_la_DEPENDENCIES) $(AM_V_CCLD)$(libmtcr_ul_la_LINK) $(libmtcr_ul_la_OBJECTS) $(libmtcr_ul_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f $(top_srcdir)/mtcr_ul/*.$(OBJEXT) -rm -f $(top_srcdir)/mtcr_ul/*.lo distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_common.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_layout.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmtcr_ul_la-mtcr_ul.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo: $(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_res_mgt.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_res_mgt.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_ib_res_mgt.c $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo: $(top_srcdir)/mtcr_ul/mtcr_mem_ops.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_mem_ops.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_mem_ops.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_mem_ops.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/mtcr_mem_ops.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_mem_ops.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_mem_ops.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_mem_ops.c $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo: $(top_srcdir)/mtcr_ul/mtcr_tools_cif.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_tools_cif.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_tools_cif.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_tools_cif.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/mtcr_tools_cif.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_tools_cif.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_tools_cif.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_tools_cif.c $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo: $(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ul_icmd_cif.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ul_icmd_cif.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_ul_icmd_cif.c $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo: $(top_srcdir)/mtcr_ul/packets_common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_common.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo `test -f '$(top_srcdir)/mtcr_ul/packets_common.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/packets_common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_common.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_common.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/packets_common.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_common.lo `test -f '$(top_srcdir)/mtcr_ul/packets_common.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/packets_common.c $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo: $(top_srcdir)/mtcr_ul/packets_layout.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_layout.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo `test -f '$(top_srcdir)/mtcr_ul/packets_layout.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/packets_layout.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_layout.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-packets_layout.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/packets_layout.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-packets_layout.lo `test -f '$(top_srcdir)/mtcr_ul/packets_layout.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/packets_layout.c libmtcr_ul_la-mtcr_ul.lo: mtcr_ul.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT libmtcr_ul_la-mtcr_ul.lo -MD -MP -MF $(DEPDIR)/libmtcr_ul_la-mtcr_ul.Tpo -c -o libmtcr_ul_la-mtcr_ul.lo `test -f 'mtcr_ul.c' || echo '$(srcdir)/'`mtcr_ul.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmtcr_ul_la-mtcr_ul.Tpo $(DEPDIR)/libmtcr_ul_la-mtcr_ul.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtcr_ul.c' object='libmtcr_ul_la-mtcr_ul.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o libmtcr_ul_la-mtcr_ul.lo `test -f 'mtcr_ul.c' || echo '$(srcdir)/'`mtcr_ul.c $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo: $(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -MT $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo -MD -MP -MF $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Tpo -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Tpo $(top_srcdir)/mtcr_ul/$(DEPDIR)/libmtcr_ul_la-mtcr_ib_ofed.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c' object='$(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmtcr_ul_la_CFLAGS) $(CFLAGS) -c -o $(top_srcdir)/mtcr_ul/libmtcr_ul_la-mtcr_ib_ofed.lo `test -f '$(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c' || echo '$(srcdir)/'`$(top_srcdir)/mtcr_ul/mtcr_ib_ofed.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf $(top_srcdir)/mtcr_ul/.libs $(top_srcdir)/mtcr_ul/_libs -rm -rf .libs _libs install-libraryincludeHEADERS: $(libraryinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(libraryinclude_HEADERS)'; test -n "$(libraryincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libraryincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libraryincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libraryincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libraryincludedir)" || exit $$?; \ done uninstall-libraryincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libraryinclude_HEADERS)'; test -n "$(libraryincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(libraryincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(libraryincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp)" || rm -f $(top_srcdir)/mtcr_ul/$(DEPDIR)/$(am__dirstamp) -test -z "$(top_srcdir)/mtcr_ul/$(am__dirstamp)" || rm -f $(top_srcdir)/mtcr_ul/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf $(top_srcdir)/mtcr_ul/$(DEPDIR) ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-libraryincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf $(top_srcdir)/mtcr_ul/$(DEPDIR) ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libraryincludeHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libraryincludeHEADERS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-libraryincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/.clang-format0000755000175000017500000000425614522641732016270 0ustar tzafrirctzafrirc--- # BasedOnStyle: Google AccessModifierOffset: -4 AlignConsecutiveAssignments: false AlignConsecutiveDeclarations: false ConstructorInitializerIndentWidth: 4 ConstructorInitializerAllOnOneLineOrOnePerLine: true AlignEscapedNewlinesLeft: true AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: false AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false AlwaysBreakTemplateDeclarations: true AlwaysBreakBeforeMultilineStrings: false BreakBeforeBinaryOperators: false BreakBeforeTernaryOperators: false BreakConstructorInitializers: AfterColon BreakConstructorInitializersBeforeComma: false BinPackParameters: false Standard: Auto IndentWidth: 4 TabWidth: 8 UseTab: Never BraceWrapping: AfterClass: false AfterControlStatement: true AfterEnum: true AfterFunction: true AfterNamespace: true AfterObjCDeclaration: true AfterStruct: true AfterUnion: true AfterExternBlock: true BeforeCatch: true BeforeElse: true IndentBraces: true SplitEmptyFunction: true SplitEmptyRecord: true SplitEmptyNamespace: true CommentPragmas: '^ ignore_styling:' ColumnLimit: 200 DerivePointerBinding: true DerivePointerAlignment: false ExperimentalAutoDetectBinPacking: true IndentCaseLabels: true KeepEmptyLinesAtTheStartOfBlocks: false MaxEmptyLinesToKeep: 1 NamespaceIndentation: None ObjCSpaceBeforeProtocolList: false PenaltyBreakBeforeFirstCallParameter: 1 PenaltyBreakComment: 60 PenaltyBreakString: 60 PenaltyBreakFirstLessLess: 60 PenaltyExcessCharacter: 60 PenaltyReturnTypeOnItsOwnLine: 60 PointerBindsToType: true PointerAlignment: Left SpacesBeforeTrailingComments: 1 Cpp11BracedListStyle: true BreakBeforeBraces: Allman IndentFunctionDeclarationAfterType: true SpacesInParentheses: false SpacesInAngles: false SpaceInEmptyParentheses: false SpacesInCStyleCastParentheses: false SpaceAfterControlStatementKeyword: true SpaceBeforeAssignmentOperators: true ContinuationIndentWidth: 2 ReflowComments: true SortIncludes: false SortUsingDeclarations: false SpaceAfterTemplateKeyword: false SpacesInContainerLiterals: false AllowShortFunctionsOnASingleLine: Inline BreakStringLiterals: false ... mstflint-4.26.0/.gitignore0000644000175000017500000000114514522641732015674 0ustar tzafrirctzafrirc*.a *.o *.lo *.so .deps/ Makefile Makefile.in /aclocal.m4 /autom4te.cache/ /common/gitversion.h /common/python_wrapper /common/tools_version.py /config.h /config.h.in /config.h.in~ /config.log /config.status config/ /configure flint/mstflint libtool /m4/*.m4 /mlxconfig/mstconfig /mlxconfig/mstprivhost /mstdump/crd_main/mstregdump /mstflint.spec /resourcetools/mstresourcedump /resourcetools/mstresourceparse /small_utils/mstcongestion /small_utils/mstfwreset /small_utils/mstmcra /small_utils/mstmread /small_utils/mstmtserver /small_utils/mstmwrite /small_utils/mstvpd /stamp-h1 /tracers/fwtrace/mstfwtrace mstflint-4.26.0/mad_ifc/0000755000175000017500000000000014522641737015272 5ustar tzafrirctzafrircmstflint-4.26.0/mad_ifc/Makefile.am0000644000175000017500000000357014522641732017326 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/tools_layouts AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libmad_ifc.la libmad_ifc_la_SOURCES = mad_ifc.c mad_ifc.h libmad_ifc_la_DEPENDENCIES = $(top_builddir)/tools_layouts/libtools_layouts.la libmad_ifc_la_LIBADD = $(libmad_ifc_la_DEPENDENCIES) mstflint-4.26.0/mad_ifc/mad_ifc.c0000644000175000017500000001451714522641732017023 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mad_ifc.h" #define MAD_ATTR_PORT_INFO 0x15 #define MAD_ATTR_NODE_INFO 0x11 #define MAD_ATTR_GENERAL_INFO_SMP 0xff17 #define MAX_DATA_SIZE 64 // for debug: // #define _ENABLE_DEBUG_ #ifdef _ENABLE_DEBUG_ #define DEBUG_PRINT_SEND(data_struct, struct_name, method) \ printf("-I- Data Sent (Method: %s):\n", method == MAD_IFC_METHOD_SET ? "SET" : "GET"); \ tools_open_##struct_name##_print(data_struct, stdout, 1) #define DEBUG_PRINT_RECEIVE(data_struct, struct_name, method) \ printf("-I- Data Received (Mehtod: %s):\n", method == MAD_IFC_METHOD_SET ? "SET" : "GET"); \ tools_open_##struct_name##_print(data_struct, stdout, 1) #else #define DEBUG_PRINT_SEND(data_struct, struct_name, method) #define DEBUG_PRINT_RECEIVE(data_struct, struct_name, method) #endif /***************************************************/ #if !defined(DISABLE_OFED) && !defined(NO_INBAND) // register access for variable size registers (like mfba) #define MAD_IFC_ACCESS(mf, method, attr_id, attr_mod, data_struct, struct_name, prefix) \ int status = 0; \ u_int8_t data[MAX_DATA_SIZE] = {0}; \ prefix##_##struct_name##_pack(data_struct, data); \ if (method != MAD_IFC_METHOD_GET && method != MAD_IFC_METHOD_SET) \ { \ return ME_ERROR; \ } \ DEBUG_PRINT_SEND(data_struct, struct_name, method); \ if (method == MAD_IFC_METHOD_GET) \ { \ status = mib_smp_get(mf, data, attr_id, attr_mod); \ } \ else \ { \ status = mib_smp_set(mf, data, attr_id, attr_mod); \ } \ prefix##_##struct_name##_unpack(data_struct, data); \ DEBUG_PRINT_RECEIVE(data_struct, struct_name, method); \ if (status) \ { \ return (mad_ifc_status_t)status; \ } \ return ME_OK #else #define MAD_IFC_ACCESS(method, attr_id, attr_mod, data_struct, struct_name, prefix) \ (void)mf; \ (void)method; \ (void)attr_id; \ (void)attr_mod; \ (void)data_struct; \ return ME_NOT_IMPLEMENTED #endif /************************************ * Function: mad_ifc_general_info_hw ************************************/ mad_ifc_status_t mad_ifc_general_info_hw(mfile* mf, struct reg_access_hca_mgir_hardware_info_ext* mgir_hardware_info) { MAD_IFC_ACCESS(mf, MAD_IFC_METHOD_GET, MAD_ATTR_GENERAL_INFO_SMP, 0, mgir_hardware_info, mgir_hardware_info_ext, reg_access_hca); } /************************************ * Function: mad_ifc_general_info_fw ************************************/ mad_ifc_status_t mad_ifc_general_info_fw(mfile* mf, struct reg_access_hca_mgir_fw_info_ext* mgir_fw_info) { MAD_IFC_ACCESS(mf, MAD_IFC_METHOD_GET, MAD_ATTR_GENERAL_INFO_SMP, 1, mgir_fw_info, mgir_fw_info_ext, reg_access_hca); } /************************************ * Function: mad_ifc_general_info_sw ************************************/ mad_ifc_status_t mad_ifc_general_info_sw(mfile* mf, struct reg_access_hca_mgir_sw_info_ext* mgir_sw_info) { MAD_IFC_ACCESS(mf, MAD_IFC_METHOD_GET, MAD_ATTR_GENERAL_INFO_SMP, 2, mgir_sw_info, mgir_sw_info_ext, reg_access_hca); } /************************************ * Function: mad_ifc_err2str ************************************/ const char* mad_ifc_err2str(mad_ifc_status_t status) { return m_err2str(status); } mstflint-4.26.0/mad_ifc/mad_ifc.h0000644000175000017500000000456714522641732017034 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MAD_IFC_H #define MAD_IFC_H #ifdef __cplusplus extern "C" { #endif #include #ifndef NO_INBAND #include "mtcr_ib.h" #endif #include #include typedef enum { MAD_IFC_METHOD_GET = MACCESS_REG_METHOD_GET, MAD_IFC_METHOD_SET = MACCESS_REG_METHOD_SET } mad_ifc_method_t; // we use the same error messages as mtcr typedef MError mad_ifc_status_t; const char* mad_ifc_err2str(mad_ifc_status_t status); mad_ifc_status_t mad_ifc_general_info_hw(mfile* mf, struct reg_access_hca_mgir_hardware_info_ext* hw_info); mad_ifc_status_t mad_ifc_general_info_fw(mfile* mf, struct reg_access_hca_mgir_fw_info_ext* fw_info); mad_ifc_status_t mad_ifc_general_info_sw(mfile* mf, struct reg_access_hca_mgir_sw_info_ext* sw_info); #ifdef __cplusplus } #endif #endif // MAD_IFC_H mstflint-4.26.0/mad_ifc/Makefile.in0000644000175000017500000004730514522641737017350 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mad_ifc DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libmad_ifc_la_OBJECTS = mad_ifc.lo libmad_ifc_la_OBJECTS = $(am_libmad_ifc_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmad_ifc_la_SOURCES) DIST_SOURCES = $(libmad_ifc_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/tools_layouts AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libmad_ifc.la libmad_ifc_la_SOURCES = mad_ifc.c mad_ifc.h libmad_ifc_la_DEPENDENCIES = $(top_builddir)/tools_layouts/libtools_layouts.la libmad_ifc_la_LIBADD = $(libmad_ifc_la_DEPENDENCIES) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mad_ifc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mad_ifc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmad_ifc.la: $(libmad_ifc_la_OBJECTS) $(libmad_ifc_la_DEPENDENCIES) $(EXTRA_libmad_ifc_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libmad_ifc_la_OBJECTS) $(libmad_ifc_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mad_ifc.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mft_utils/0000755000175000017500000000000014522641737015716 5ustar tzafrirctzafrircmstflint-4.26.0/mft_utils/errmsg.h0000644000175000017500000000703514522641732017366 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * errmsg.h - base class that provides the returning of error messages for classes that inherit it. * * Created on: May 7, 2014 * Author: adrianc * */ #ifndef ERRMSG_H_ #define ERRMSG_H_ #include #include #include /** * ErrMsg Class Provides API for returning both error codes and error messages to the user app. */ class ErrMsg { public: ErrMsg(); ErrMsg(std::map& errCodeMap); virtual ~ErrMsg(); const char* err() const { return _err; } void updateErrCodes(std::map& errCodeMap) { _errMap = errCodeMap; return; } const char* getFormatErr(const char* prefix, ...) #ifdef __GNUC__ __attribute__((format(printf, 2, 3))) #endif ; void err_clear(); int getLastErrCode() const { return _lastErrCode; } const char* err2Str(int errCode) const; protected: char* vprint(const char* format, va_list args); int errmsg(const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 2, 3))) #endif ; int errmsg(int errCode, const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 3, 4))) #endif ; int errmsg(int errCode); int errmsgConcatMsg(int errCode, const ErrMsg& errMsgObj, const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 4, 5))) #endif ; int errmsgConcatMsg(const ErrMsg& errMsgObj, const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 3, 4))) #endif ; int errmsgConcatMsg(int errCode, const ErrMsg& errMsgObj); int errmsgConcatMsg(const ErrMsg& errMsgObj); int errmsgConcatErrCd(int errCode, const ErrMsg& errMsgObj, const char* format, ...) #ifdef __GNUC__ __attribute__((format(printf, 4, 5))) #endif ; int errmsgConcatErrCd(int errCode, const ErrMsg& errMsgObj); int errmsgConcatErrCd(const ErrMsg& errMsgObj); private: void errmsgConcatCom(const char* format, va_list args, const char* suffix); std::map _errMap; char* _err; char* _formatErr; int _lastErrCode; }; #endif /* ERRMSG_H_ */ mstflint-4.26.0/mft_utils/mlarge_buffer.cpp0000644000175000017500000001452714522641732021226 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlarge_buffer.cpp * * Created on: Mar 9, 2016 * Author: adrianc */ #include #include "mlarge_buffer.h" #define MFT_MIN(x, y) ((x) < (y) ? (x) : (y)) #define MFT_MAX(x, y) ((x) > (y) ? (x) : (y)) #ifdef _DEBUG_MODE #define DBG_PRINTF(...) fprintf(stderr, __VA_ARGS__) #else #define DBG_PRINTF(...) #endif MBufferUnit& operator<<(MBufferUnit& a, MBufferUnit& b) { if (!a.intersects(b)) { return a; } u_int32_t newSize = MFT_MAX(a.offset() + a.size(), b.offset() + b.size()) - MFT_MIN(a.offset(), b.offset()); u_int32_t newOffset = MFT_MIN(a.offset(), b.offset()); std::vector newData(newSize, 0); // merge b onto a u_int32_t relativeOffsInBuffer = a.offset() - newOffset; memcpy(&newData[0] + relativeOffsInBuffer, &(a.data()[0]), a.size()); relativeOffsInBuffer = b.offset() - newOffset; memcpy(&newData[0] + relativeOffsInBuffer, &(b.data()[0]), b.size()); a = MBufferUnit(newData, newOffset); return a; } MBufferUnit& MBufferUnit::operator=(const MBufferUnit& other) { if (this != &other) { this->_data = other._data; this->_offset = other._offset; } return *this; } bool MBufferUnit::intersects(const MBufferUnit& other) const { if (this->offset() > (other.offset() + other.size()) || (this->offset() + this->size()) < other.offset()) { return false; } return true; } void MlargeBuffer::add(const std::vector& data, u_int32_t offset) { if (data.size() == 0) { return; } DBG_PRINTF("-D- adding chunk: 0x%08x - 0x%08x (0x%08x)\n", offset, (unsigned)data.size() + offset, (unsigned)data.size()); // create MBufferUnit MBufferUnit bufferUnit(data, offset); bool unitInserted = false; bool unitIntersects = false; unsigned intersecIdx = 0; unsigned bSize = _bData.size(); for (unsigned idx = 0; idx < bSize; idx++) { if (unitIntersects) { if (_bData[idx].intersects(_bData[intersecIdx])) { // merge element in intersecIdx onto it _bData[idx] << _bData[intersecIdx]; _bData.erase(_bData.begin() + intersecIdx); intersecIdx = --idx; bSize--; } else { break; // done :) } } else if (bufferUnit.offset() + bufferUnit.size() < _bData[idx].offset()) { // check if we can insert before _bData.insert(_bData.begin() + idx, bufferUnit); unitInserted = true; break; } else if (bufferUnit.intersects(_bData[idx])) { unitIntersects = true; unitInserted = true; _bData[idx] << bufferUnit; intersecIdx = idx; continue; } } if (!unitInserted) { _bData.push_back(bufferUnit); } DBG_PRINTF("-D- bData size: %d\n", (int)_bData.size()); #ifdef _DEBUG_MODE std::vector::iterator it = _bData.begin(); for (; it != _bData.end(); it++) { DBG_PRINTF("-D- chunk : 0x%08x - 0x%08x (0x%08x)\n", it->offset(), it->size() + it->offset(), it->size()); } #endif } void MlargeBuffer::add(const u_int8_t* data, u_int32_t offset, u_int32_t size) { std::vector dataVec(data, data + size); return add(dataVec, offset); } u_int8_t MlargeBuffer::operator[](const u_int32_t offset) { u_int8_t data; get(&data, offset, 1); return data; } void MlargeBuffer::get(std::vector& data, u_int32_t offset, u_int32_t size) { if (data.size() < size) { data.resize(size); } return get(&data[0], offset, size); } void MlargeBuffer::get(u_int8_t* data, u_int32_t offset, u_int32_t size) { DBG_PRINTF("-D- get request on offset: 0x%08x with size 0x%x\n", offset, size); if (!data || size == 0) { return; } memset(data, _defaultValue, size); u_int8_t* ptr = data; for (std::vector::iterator it = _bData.begin(); it != _bData.end(); it++) { if (offset < (it->offset() + it->size()) && (offset + size) > it->offset()) { // intersects with current MBufferUnit u_int32_t offsetInBuffer = ((long int)it->offset() - (long int)offset) < 0 ? 0 : it->offset() - offset; u_int32_t copySize = MFT_MIN(offset + size, it->offset() + it->size()) - MFT_MAX(offset, it->offset()); u_int32_t offsetInData = ((long int)offset - (long int)it->offset()) < 0 ? 0 : offset - it->offset(); DBG_PRINTF("-D- getting from chunk at offset 0x%08x , size: 0x%x\n", it->offset(), (unsigned)it->size()); DBG_PRINTF("-D- integrating at buffer offset : 0x%08x size: 0x%x, offset in data: 0x%08x\n", offsetInBuffer, copySize, offsetInData); memcpy(ptr + offsetInBuffer, &(it->data())[0] + offsetInData, copySize); } } return; } mstflint-4.26.0/mft_utils/mft_utils.cpp0000644000175000017500000001044714522641732020431 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * mft_utils.cpp * * Created on: April 3, 2017 * Author: Ahmad Soboh */ #include #include #include #include #include #include #include #include #include "mft_utils.h" using namespace std; namespace mft_utils { string numToStr(u_int32_t num) { stringstream ss; ss << num; return ss.str(); } bool strToNum(const string& str, u_int32_t& num, int base) { char* endp; char* numStr = strcpy(new char[str.size() + 1], str.c_str()); num = strtoul(numStr, &endp, base); if (*endp) { delete[] numStr; return false; } delete[] numStr; // check errno if (errno == ERANGE) { return false; } return true; } void splitCommaSperatedString(string str, vector& strv) { size_t pos; while ((pos = str.find(',')) != string::npos) { string tmp = str.substr(0, pos); strv.push_back((string)tmp); str = str.substr(pos + 1); } if (str != "") { strv.push_back((string)str); } } void ltrim(string& str, const string& chars) { str.erase(0, str.find_first_not_of(chars)); } void rtrim(string& str, const string& chars) { str.erase(str.find_last_not_of(chars) + 1); } void trim(string& str, const string& chars) { rtrim(str, chars); ltrim(str, chars); } string ltrim_copy(string str, const string& chars) { ltrim(str, chars); return str; } string rtrim_copy(string str, const string& chars) { rtrim(str, chars); return str; } string trim_copy(string str, const string& chars) { trim(str, chars); return str; } void to_lowercase(string& str) { for (string::size_type i = 0; i < str.length(); ++i) { str[i] = std::tolower(str[i]); } } void to_uppercase(string& str) { for (string::size_type i = 0; i < str.length(); ++i) { str[i] = std::toupper(str[i]); } } string to_lowercase_copy(string str) { to_lowercase(str); return str; } string to_uppercase_copy(string str) { to_uppercase(str); return str; } u_int32_t greatest_common_divisor(u_int32_t a, u_int32_t b) { if (b == 0) return a; return greatest_common_divisor(b, a % b); } u_int32_t least_common_multiple(u_int32_t a, u_int32_t b) { return (a * b) / greatest_common_divisor(a, b); } bool askUser(const char* question, bool force) { if (question == NULL) { printf("\n Do you want to continue ? (y/n) [n] : "); } else { printf("\n %s ? (y/n) [n] : ", question); } if (force) { printf("y\n"); } else { fflush(stdout); std::string answer; std::getline(std::cin, answer); if (strcasecmp(answer.c_str(), "y") && strcasecmp(answer.c_str(), "yes")) { return false; } } return true; } } // namespace mft_utils mstflint-4.26.0/mft_utils/calc_hw_crc.c0000644000175000017500000000755414522641732020317 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "calc_hw_crc.h" u_int16_t crc16table2[256] = { 0x0000, 0x1BA1, 0x3742, 0x2CE3, 0x6E84, 0x7525, 0x59C6, 0x4267, 0xDD08, 0xC6A9, 0xEA4A, 0xF1EB, 0xB38C, 0xA82D, 0x84CE, 0x9F6F, 0x1A01, 0x01A0, 0x2D43, 0x36E2, 0x7485, 0x6F24, 0x43C7, 0x5866, 0xC709, 0xDCA8, 0xF04B, 0xEBEA, 0xA98D, 0xB22C, 0x9ECF, 0x856E, 0x3402, 0x2FA3, 0x0340, 0x18E1, 0x5A86, 0x4127, 0x6DC4, 0x7665, 0xE90A, 0xF2AB, 0xDE48, 0xC5E9, 0x878E, 0x9C2F, 0xB0CC, 0xAB6D, 0x2E03, 0x35A2, 0x1941, 0x02E0, 0x4087, 0x5B26, 0x77C5, 0x6C64, 0xF30B, 0xE8AA, 0xC449, 0xDFE8, 0x9D8F, 0x862E, 0xAACD, 0xB16C, 0x6804, 0x73A5, 0x5F46, 0x44E7, 0x0680, 0x1D21, 0x31C2, 0x2A63, 0xB50C, 0xAEAD, 0x824E, 0x99EF, 0xDB88, 0xC029, 0xECCA, 0xF76B, 0x7205, 0x69A4, 0x4547, 0x5EE6, 0x1C81, 0x0720, 0x2BC3, 0x3062, 0xAF0D, 0xB4AC, 0x984F, 0x83EE, 0xC189, 0xDA28, 0xF6CB, 0xED6A, 0x5C06, 0x47A7, 0x6B44, 0x70E5, 0x3282, 0x2923, 0x05C0, 0x1E61, 0x810E, 0x9AAF, 0xB64C, 0xADED, 0xEF8A, 0xF42B, 0xD8C8, 0xC369, 0x4607, 0x5DA6, 0x7145, 0x6AE4, 0x2883, 0x3322, 0x1FC1, 0x0460, 0x9B0F, 0x80AE, 0xAC4D, 0xB7EC, 0xF58B, 0xEE2A, 0xC2C9, 0xD968, 0xD008, 0xCBA9, 0xE74A, 0xFCEB, 0xBE8C, 0xA52D, 0x89CE, 0x926F, 0x0D00, 0x16A1, 0x3A42, 0x21E3, 0x6384, 0x7825, 0x54C6, 0x4F67, 0xCA09, 0xD1A8, 0xFD4B, 0xE6EA, 0xA48D, 0xBF2C, 0x93CF, 0x886E, 0x1701, 0x0CA0, 0x2043, 0x3BE2, 0x7985, 0x6224, 0x4EC7, 0x5566, 0xE40A, 0xFFAB, 0xD348, 0xC8E9, 0x8A8E, 0x912F, 0xBDCC, 0xA66D, 0x3902, 0x22A3, 0x0E40, 0x15E1, 0x5786, 0x4C27, 0x60C4, 0x7B65, 0xFE0B, 0xE5AA, 0xC949, 0xD2E8, 0x908F, 0x8B2E, 0xA7CD, 0xBC6C, 0x2303, 0x38A2, 0x1441, 0x0FE0, 0x4D87, 0x5626, 0x7AC5, 0x6164, 0xB80C, 0xA3AD, 0x8F4E, 0x94EF, 0xD688, 0xCD29, 0xE1CA, 0xFA6B, 0x6504, 0x7EA5, 0x5246, 0x49E7, 0x0B80, 0x1021, 0x3CC2, 0x2763, 0xA20D, 0xB9AC, 0x954F, 0x8EEE, 0xCC89, 0xD728, 0xFBCB, 0xE06A, 0x7F05, 0x64A4, 0x4847, 0x53E6, 0x1181, 0x0A20, 0x26C3, 0x3D62, 0x8C0E, 0x97AF, 0xBB4C, 0xA0ED, 0xE28A, 0xF92B, 0xD5C8, 0xCE69, 0x5106, 0x4AA7, 0x6644, 0x7DE5, 0x3F82, 0x2423, 0x08C0, 0x1361, 0x960F, 0x8DAE, 0xA14D, 0xBAEC, 0xF88B, 0xE32A, 0xCFC9, 0xD468, 0x4B07, 0x50A6, 0x7C45, 0x67E4, 0x2583, 0x3E22, 0x12C1, 0x0960}; u_int16_t calc_hw_crc(u_int8_t* d, int size) { int i; unsigned crc = 0xffff; for (i = 0; i < size; i++) { u_int8_t data = i > 1 ? d[i] : ~d[i]; int table_index = ((crc ^ data) & 0xff); crc = ((crc >> 8) ^ crc16table2[table_index]); }; crc = ((crc << 8) & 0xff00) | ((crc >> 8) & 0xff); return crc; } mstflint-4.26.0/mft_utils/mlarge_buffer.h0000644000175000017500000000605114522641732020664 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * mlarge_buffer.h * * Created on: Mar 9, 2016 * Author: adrianc */ #ifndef USER_MFT_UTILS_MLARGE_BUFFER_H_ #define USER_MFT_UTILS_MLARGE_BUFFER_H_ #include #include class MBufferUnit { public: MBufferUnit(const std::vector& data, u_int32_t offset) : _data(data), _offset(offset) {} u_int32_t size() const { return (u_int32_t)_data.size(); } u_int32_t offset() const { return _offset; } std::vector& data() { return _data; } u_int8_t& operator[](const u_int32_t idx) { return _data[idx]; } MBufferUnit& operator=(const MBufferUnit& other); bool intersects(const MBufferUnit& other) const; ~MBufferUnit() = default; private: std::vector _data; u_int32_t _offset; }; MBufferUnit& operator<<(MBufferUnit& a, MBufferUnit& b); /* * Large buffer with minimal memory footprint */ class MlargeBuffer { public: MlargeBuffer(u_int8_t defaultVal = 0x0) : _defaultValue(defaultVal) {} void add(const std::vector& data, u_int32_t offset); void add(const u_int8_t* data, u_int32_t offset, u_int32_t size); u_int8_t operator[](const u_int32_t offset); // for read only void get(std::vector& data, u_int32_t offset, u_int32_t size); void get(std::vector& data, u_int32_t size) { return get(data, 0, size); } void get(u_int8_t* data, u_int32_t offset, u_int32_t size); void get(u_int8_t* data, u_int32_t size) { return get(data, 0, size); } void clear() { _bData.clear(); } private: u_int8_t _defaultValue; std::vector _bData; }; #endif /* USER_MFT_UTILS_MLARGE_BUFFER_H_ */ mstflint-4.26.0/mft_utils/hsmclient/0000755000175000017500000000000014522641737017704 5ustar tzafrirctzafrircmstflint-4.26.0/mft_utils/hsmclient/src/0000755000175000017500000000000014522641732020466 5ustar tzafrirctzafrircmstflint-4.26.0/mft_utils/hsmclient/src/hsmaesencryption.cpp0000644000175000017500000001227614522641732024575 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __WIN__ #include "hsmlunaclient.h" CK_BYTE* P_DecText = NULL; CK_BYTE* P_EncText = NULL; CK_ULONG EncSz = 0; CK_ULONG PlainSz = 0; /* FUNCTION: CK_RV Generate3DESKey( CK_SESSION_HANDLE hSession ) */ CK_RV HSMLunaClient::Generate3DESKey() { CK_RV retCode = CKR_OK; CK_MECHANISM mech; CK_OBJECT_CLASS obClass = CKO_SECRET_KEY; CK_KEY_TYPE keyType = CKK_DES3; CK_CHAR pDESKeyLabel[] = "DES3 Encryption Key"; CK_BBOOL yes = CK_TRUE; // CK_BBOOL no = CK_FALSE; CK_ULONG templateSz; CK_ATTRIBUTE pDESKeyAttributes[] = {{CKA_CLASS, &obClass, sizeof(CK_OBJECT_CLASS)}, {CKA_KEY_TYPE, &keyType, sizeof(CK_KEY_TYPE)}, {CKA_LABEL, pDESKeyLabel, sizeof(pDESKeyLabel) - 1}, {CKA_PRIVATE, &yes, sizeof(CK_BBOOL)}, {CKA_SENSITIVE, &yes, sizeof(CK_BBOOL)}, {CKA_ENCRYPT, &yes, sizeof(CK_BBOOL)}, {CKA_DECRYPT, &yes, sizeof(CK_BBOOL)}, {CKA_WRAP, &yes, sizeof(CK_BBOOL)}, {CKA_UNWRAP, &yes, sizeof(CK_BBOOL)}, {CKA_EXTRACTABLE, &yes, sizeof(CK_BBOOL)}}; // Build mechanism mech.mechanism = CKM_DES3_KEY_GEN; mech.pParameter = NULL; mech.ulParameterLen = 0; templateSz = sizeof(pDESKeyAttributes) / sizeof(*pDESKeyAttributes); retCode = P11Functions->C_GenerateKey(m_hSession, &mech, pDESKeyAttributes, templateSz, &hSymKey); return retCode; } CK_RV HSMLunaClient::AES_EncryptData() { CK_MECHANISM mech; CK_RV rv = CKR_OK; mech.mechanism = CKM_DES3_CBC; mech.pParameter = (void*)"12345678"; // 8 byte IV mech.ulParameterLen = 8; rv = P11Functions->C_EncryptInit(m_hSession, &mech, hSymKey); if (rv != CKR_OK) { return rv; } rv = P11Functions->C_Encrypt(m_hSession, PlainText, sizeof(PlainText), NULL, &EncSz); if (rv != CKR_OK) { return rv; } P_EncText = (CK_BYTE*)new CK_BYTE[EncSz]; if (P_EncText == NULL) { return CKR_GENERAL_ERROR; } rv = P11Functions->C_Encrypt(m_hSession, PlainText, sizeof(PlainText), P_EncText, &EncSz); if (rv != CKR_OK) { return rv; } return rv; } CK_RV HSMLunaClient::AES_DecryptData() { CK_MECHANISM mech; CK_RV rv = CKR_OK; mech.mechanism = CKM_DES3_CBC; mech.pParameter = (void*)"12345678"; // 8 byte IV mech.ulParameterLen = 8; rv = P11Functions->C_DecryptInit(m_hSession, &mech, hSymKey); if (rv != CKR_OK) { return rv; } rv = P11Functions->C_Decrypt(m_hSession, P_EncText, EncSz, NULL, &PlainSz); if (rv != CKR_OK) { return rv; } P_DecText = (CK_BYTE*)new CK_BYTE[PlainSz]; if (P_DecText == NULL) { return rv; } rv = P11Functions->C_Decrypt(m_hSession, P_EncText, EncSz, P_DecText, &PlainSz); if (rv != CKR_OK) { return rv; } return rv; } CK_RV HSMLunaClient::TestAESEncryption() { CK_RV rv = Generate3DESKey(); if (rv != CKR_OK) { return rv; } rv = AES_EncryptData(); if (rv != CKR_OK) { return rv; } rv = AES_DecryptData(); if (rv != CKR_OK) { return rv; } if (P_DecText && (memcmp(PlainText, P_DecText, sizeof(PlainText)) == 0)) { printf("AES encryption is OKAY!\n"); rv = 0; } else { printf("TestAESEncryption NOT OKAY! rv = 0x%x\n", (unsigned int)rv); rv = -1; } if (P_DecText) { delete[](P_DecText); } if (P_EncText) { delete[](P_EncText); } return rv; } #endif mstflint-4.26.0/mft_utils/hsmclient/src/hsmlunaclientinit.cpp0000644000175000017500000001462214522641732024731 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __WIN__ #include "hsmlunaclient.h" #include using namespace std; static char EnvLib[4096] = {0}; /* FUNCTION: CK_BBOOL GetLibrary() */ CK_BBOOL HSMLunaClient::GetLibrary(string libPath) { memset(EnvLib, 0, sizeof(EnvLib)); #ifdef OS_WIN32 _snprintf(EnvLib, sizeof(EnvLib) - 1, "%s\\cryptoki.dll", pPath); #else #ifdef OS_HPUX snprintf(EnvLib, sizeof(EnvLib) - 1, "%s/libCryptoki2.sl", pPath); #else if (libPath.empty()) { const char* pLibraryPath = this->pLibraryPath.c_str(); const char* pLibraryName = this->pLibraryName.c_str(); sprintf(EnvLib, "%s/%s", pLibraryPath, pLibraryName); } else { strncpy(EnvLib, (char*)libPath.c_str(), libPath.size()); } #endif #endif return CK_TRUE; } /* FUNCTION: CK_BBOOL LoadP11Functions() */ CK_BBOOL HSMLunaClient::LoadP11Functions(string libPath) { CK_C_GetFunctionList C_GetFunctionList = NULL; CK_RV rv = CKR_TOKEN_NOT_PRESENT; if (GetLibrary(libPath) == CK_FALSE) { return CK_FALSE; } int flag = RTLD_LAZY; LibHandle = dlopen((char*)EnvLib, flag); if (LibHandle == NULL) { char* error = dlerror(); printf("Shared object loading error %s, EnvLib is %s\n", error, (char*)EnvLib); return CK_FALSE; } C_GetFunctionList = (CK_C_GetFunctionList)dlsym(LibHandle, "C_GetFunctionList"); if (C_GetFunctionList == NULL) { printf("C_GetFunctionList is NULL\n"); return CK_FALSE; } rv = C_GetFunctionList(&P11Functions); if (rv != CKR_OK || P11Functions == NULL) { printf("P11Functions is NULL or return code is not OK %d\n", (int)rv); return rv; } rv = P11Functions->C_Initialize(NULL_PTR); if (rv == CKR_OK || rv == CKR_CRYPTOKI_ALREADY_INITIALIZED) { return CK_TRUE; } return CK_FALSE; } /* FUNCTION: CK_BBOOL LoadSfntExtensionFunctions() */ CK_BBOOL HSMLunaClient::LoadSfntExtensionFunctions() { CK_CA_GetFunctionList CA_GetFunctionList = NULL; CK_RV rv = CKR_TOKEN_NOT_PRESENT; CA_GetFunctionList = (CK_CA_GetFunctionList)dlsym(LibHandle, "CA_GetFunctionList"); if (CA_GetFunctionList == NULL) { printf("CA_GetFunctionList failed\n"); return CK_FALSE; } rv = CA_GetFunctionList(&SfntFunctions); if (rv != CKR_OK || SfntFunctions == NULL) { printf("CA_GetFunctionList SfntFunctions failed or return code is not OK : %d\n", (int)rv); return rv; } return CK_TRUE; } /* FUNCTION: CK_RV FindFirstSlot( CK_SLOT_ID& pckSlot ) */ CK_RV HSMLunaClient::FindFirstSlot(CK_SLOT_ID& pckSlot) { CK_SLOT_ID_PTR pSlotList = NULL; CK_ULONG ulCount = 0; CK_RV retCode = CKR_OK; retCode = P11Functions->C_GetSlotList(CK_TRUE, NULL, &ulCount); if (retCode != CKR_OK) { printf("C_GetSlotList Failed.\n"); return retCode; } else { if (ulCount == 0) { printf("C_GetSlotList returns 0 slots.\n"); return retCode; } } pSlotList = (CK_SLOT_ID_PTR) new CK_SLOT_ID[ulCount * sizeof(CK_SLOT_ID)]; if (pSlotList == NULL) { printf("Memory allocation error. ulCount = %u\n", (unsigned int)ulCount); return retCode; } memset(pSlotList, 0, ulCount * sizeof(CK_SLOT_ID) * sizeof(CK_SLOT_ID)); retCode = P11Functions->C_GetSlotList(CK_TRUE, pSlotList, &ulCount); if (retCode != CKR_OK) { delete[] pSlotList; return retCode; } pckSlot = pSlotList[0]; if (pSlotList) { delete[] pSlotList; } cout << "Working with slot " << pckSlot << endl; return retCode; } CK_BBOOL HSMLunaClient::Init(string password, string libPath) { if (LoadP11Functions(libPath) == CK_FALSE) { printf("Failed to load PKCS11 library!\n"); return CK_FALSE; } if (LoadSfntExtensionFunctions() == CK_FALSE) { printf("Failed to load SafeNet extension functions!\n"); return CK_FALSE; } CK_RV rv = FindFirstSlot(m_ckSlot); if ((rv != CKR_OK)) { return CK_FALSE; } rv = P11Functions->C_OpenSession(m_ckSlot, CKF_RW_SESSION | CKF_SERIAL_SESSION, NULL, NULL, &m_hSession); if (rv != CKR_OK) { return CK_FALSE; } if (!password.empty()) { memset(bPassword, 0, sizeof(bPassword)); memcpy(bPassword, password.c_str(), password.size()); } rv = P11Functions->C_Login(m_hSession, CKU_USER, bPassword, (CK_ULONG)strlen((char*)bPassword)); if (rv != CKR_OK) { return CK_FALSE; } return CK_TRUE; } void HSMLunaClient::CleanUp() { if (P11Functions) { if (m_hSession) { P11Functions->C_CloseSession(m_hSession); } P11Functions->C_Finalize(NULL_PTR); } if (LibHandle) { #ifdef OS_WIN32 FreeLibrary(LibHandle); #else #ifdef OS_HPUX shl_unload(LibHandle); #else dlclose(LibHandle); #endif #endif } } #endif mstflint-4.26.0/mft_utils/hsmclient/src/hsmcreatersasignature.cpp0000644000175000017500000002526214522641732025604 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __WIN__ #include "hsmlunaclient.h" #include #include using namespace std; CK_RV HSMLunaClient::RSA_CreateSignature(vector data, string privateKeyLabel, string publicKeyLabel, vector& result_signature) { CK_ULONG dataLength = data.size(); unsigned int labelSize = privateKeyLabel.size() + 1; CK_BYTE* pLabel = new CK_BYTE[labelSize]; memset(pLabel, 0, labelSize); for (unsigned int i = 0; i < privateKeyLabel.size(); i++) { pLabel[i] = privateKeyLabel[i]; } CK_ATTRIBUTE RSAFindPriTemplate = {CKA_LABEL, pLabel, labelSize}; CK_OBJECT_HANDLE priv_key; CK_ULONG numHandles = 0; CK_OBJECT_HANDLE handles[MAX_NUM_OF_HANDLES] = {0}; CK_RV rv = P11Functions->C_FindObjectsInit(m_hSession, &RSAFindPriTemplate, 1); rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (rv != CKR_OK) { delete[] pLabel; return rv; } if (numHandles == 0) { RSAFindPriTemplate.ulValueLen--; rv = P11Functions->C_FindObjectsInit(m_hSession, &RSAFindPriTemplate, 1); if (rv != CKR_OK) { delete[] pLabel; return rv; } rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (rv != CKR_OK) { delete[] pLabel; return rv; } } if (numHandles == 0) { cout << "Private key not found!" << endl; delete[] pLabel; return CKR_FUNCTION_FAILED; } priv_key = handles[0]; cout << " The private key is " << hex << priv_key << endl; CK_MECHANISM mechanism = {CKM_SHA512_RSA_PKCS, NULL_PTR, 0}; CK_BYTE* signature = NULL; CK_ULONG signatureLength = 0; if (rv != CKR_OK) { delete[] pLabel; return rv; } rv = P11Functions->C_SignInit(m_hSession, &mechanism, priv_key); if (rv != CKR_OK) { cout << " C_SignInit has failed rv = " << hex << rv << endl; delete[] pLabel; return rv; } rv = P11Functions->C_Sign(m_hSession, &data[0], dataLength, NULL, &signatureLength); if (rv != CKR_OK) { cout << " C_Sign1 has failed rv = " << hex << rv << endl; delete[] pLabel; return rv; } signature = new CK_BYTE[signatureLength]; memset(signature, 0, signatureLength * sizeof(CK_BYTE)); rv = P11Functions->C_Sign(m_hSession, &data[0], dataLength, signature, &signatureLength); if (rv != CKR_OK) { cout << " C_Sign2 has failed rv = " << hex << rv << endl; delete[] signature; delete[] pLabel; return rv; } printf("Signature length is %lu bytes \n", (unsigned long)signatureLength); for (unsigned int i = 0; i < signatureLength; i++) { printf("0x%02x ", signature[i]); } cout << endl; if (publicKeyLabel.empty() == false) { unsigned int publicLabelSize = publicKeyLabel.size() + 1; CK_BYTE* pPublicLabel = new CK_BYTE[publicLabelSize]; memset(pPublicLabel, 0, publicLabelSize); for (unsigned int i = 0; i < publicKeyLabel.size(); i++) { pPublicLabel[i] = publicKeyLabel[i]; } CK_ATTRIBUTE RSAFindPubTemplate = {CKA_LABEL, pPublicLabel, publicLabelSize}; CK_OBJECT_HANDLE pub_key; numHandles = 0; rv = P11Functions->C_FindObjectsInit(m_hSession, &RSAFindPubTemplate, 1); rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (numHandles == 0) { RSAFindPubTemplate.ulValueLen--; rv = P11Functions->C_FindObjectsInit(m_hSession, &RSAFindPubTemplate, 1); if (rv != CKR_OK) { delete[] pPublicLabel; delete[] pLabel; return rv; } rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (rv != CKR_OK) { delete[] pPublicLabel; return rv; } } if (numHandles == 0) { cout << "Public key not found!" << endl; delete[] pPublicLabel; return CKR_FUNCTION_FAILED; } pub_key = handles[0]; cout << " The public key is " << hex << pub_key << endl; /* Verify the known hash using the public key. */ rv = P11Functions->C_VerifyInit(m_hSession, &mechanism, pub_key); if (rv != CKR_OK) { cout << "Signature C_VerifyInit failed. Error is " << hex << rv << endl; delete[] signature; return rv; } rv = P11Functions->C_Verify(m_hSession, &data[0], dataLength, signature, signatureLength); if (rv != CKR_OK) { cout << "Signature verifying failed. Error is " << hex << rv << endl; return CKR_GENERAL_ERROR; } cout << " RSA_CreateSignature is verified!" << endl; } result_signature.resize(signatureLength); for (unsigned int i = 0; i < signatureLength; i++) { result_signature[i] = signature[i]; } delete[] signature; delete[] pLabel; return rv; } CK_RV HSMLunaClient::RSA_EncryptDataTest(string privateKeyLabel, string publicKeyLebel) { CK_MECHANISM mech2; CK_OBJECT_HANDLE publ_key, priv_key; /** generate data **/ CK_BYTE cipher[1024 * 4] = {0}; unsigned int orig_len = 256; CK_BYTE original[256] = {0}; CK_ULONG cipher_len, decipher_len; for (unsigned int i = 0; i < orig_len; i++) original[i] = i % 255; /** set mech2 for RSA crypto **/ mech2.mechanism = CKM_RSA_PKCS; mech2.ulParameterLen = 0; mech2.pParameter = NULL; CK_ATTRIBUTE RSAFindPriTemplate[] = {{CKA_LABEL, (void*)privateKeyLabel.c_str(), privateKeyLabel.size()}}; CK_ULONG numHandles = 0; CK_OBJECT_HANDLE handles[MAX_NUM_OF_HANDLES] = {0}; CK_OBJECT_HANDLE handles1[MAX_NUM_OF_HANDLES] = {0}; CK_RV rv = P11Functions->C_FindObjectsInit(m_hSession, RSAFindPriTemplate, 1); rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); priv_key = handles[0]; numHandles = 0; CK_ATTRIBUTE RSAFindPubTemplate[] = {{CKA_LABEL, (void*)publicKeyLebel.c_str(), publicKeyLebel.size()}}; rv = P11Functions->C_FindObjectsInit(m_hSession, RSAFindPubTemplate, 1); rv = P11Functions->C_FindObjects(m_hSession, handles1, MAX_NUM_OF_HANDLES, &numHandles); publ_key = handles1[0]; if (rv == CKR_OK) { /** initialize RSA encryption (with private key) **/ rv = P11Functions->C_EncryptInit(m_hSession, &mech2, publ_key); if (rv != CKR_OK) { cout << "C_EncryptInit " << hex << rv << endl; // testcase_error("C_EncryptInit rc=%s", p11_get_ckr(rc)); return rv; } cipher_len = sizeof(cipher); // set cipher buffer size /** do RSA decryption (with public key) **/ rv = P11Functions->C_Encrypt(m_hSession, original, orig_len, cipher, (CK_ULONG_PTR)&cipher_len); if (rv != CKR_OK) { cout << "C_Encrypt " << hex << rv << endl; return rv; } rv = P11Functions->C_DecryptInit(m_hSession, &mech2, priv_key); if (rv != CKR_OK) { cout << "C_DecryptInit " << hex << rv << endl; return rv; } // do (private key) decryption decipher_len = 0; rv = P11Functions->C_Decrypt(m_hSession, cipher, cipher_len, NULL, &decipher_len); if (rv != CKR_OK) { cout << "C_Decrypt " << hex << rv << endl; cout << "Error in decryption process 1 !" << endl; return rv; } CK_BYTE* decipher = new CK_BYTE[decipher_len]; memset(decipher, 0, decipher_len * sizeof(CK_BYTE)); rv = P11Functions->C_Decrypt(m_hSession, cipher, cipher_len, decipher, &decipher_len); if (rv != CKR_OK) { cout << "Error in decryption process 2 !" << hex << rv << endl; return rv; } rv = P11Functions->C_DestroyObject(m_hSession, publ_key); if (rv != CKR_OK) { cout << "C_DestroyObject public " << hex << rv << endl; delete[] decipher; return rv; } rv = P11Functions->C_DestroyObject(m_hSession, priv_key); if (rv != CKR_OK) { cout << "C_DestroyObject private " << hex << rv << endl; return rv; } if (orig_len == decipher_len) { unsigned int i = 0; for (i = 0; i < orig_len; i++) { if (original[i] != decipher[i]) { cout << "Error in decrypted data - data mismath !" << endl; delete[] decipher; return -1; } } cout << "Success in encrypt/decrypt !" << endl; delete[] decipher; return 0; } cout << "Error in decryption process - size mismatch !" << endl; delete[] decipher; return -1; // compare original and decipher } return rv; } #endif mstflint-4.26.0/mft_utils/hsmclient/src/burnprivatekey.cpp0000644000175000017500000002742514522641732024256 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __WIN__ #include "hsmlunaclient.h" #include using namespace std; static unsigned char PublicExponent[] = {0x01, 0x00, 0x01}; CK_RV HSMLunaClient::CreatePublicKey(string publicKeyLabel, unsigned char* PublicModulus, unsigned int PublicModulusSize) { CK_OBJECT_CLASS publicKey = CKO_PUBLIC_KEY; CK_KEY_TYPE rsaType = CKK_RSA; CK_BBOOL bTrue = 1; CK_BBOOL bSign = bTrue, bToken = bTrue, bPrivate = bTrue, bDecrypt = bTrue, bWrap = bTrue; // CK_BBOOL bToken = bTrue, bDecrypt = bTrue, bSign = bTrue, bWrap = bTrue; CK_OBJECT_HANDLE hPublicRSAKey = 0; CK_RV rv = CKR_TOKEN_NOT_PRESENT; unsigned int publicLabelSize = publicKeyLabel.size() + 1; CK_BYTE* pLabelPub = new CK_BYTE[publicLabelSize]; memset(pLabelPub, 0, publicLabelSize); for (unsigned int i = 0; i < publicKeyLabel.size(); i++) { pLabelPub[i] = publicKeyLabel[i]; } CK_ATTRIBUTE pPublicRSAKeyTemplate[] = {{CKA_CLASS, &publicKey, sizeof(publicKey)}, {CKA_KEY_TYPE, &rsaType, sizeof(rsaType)}, {CKA_TOKEN, &bToken, sizeof(bToken)}, {CKA_PRIVATE, &bPrivate, sizeof(bPrivate)}, {CKA_ENCRYPT, &bDecrypt, sizeof(bDecrypt)}, {CKA_VERIFY, &bSign, sizeof(bSign)}, {CKA_WRAP, &bWrap, sizeof(bWrap)}, {CKA_MODULUS, PublicModulus, PublicModulusSize}, {CKA_PUBLIC_EXPONENT, PublicExponent, sizeof(PublicExponent)}, {CKA_LABEL, pLabelPub, publicLabelSize}}; unsigned int usTemplateSize = DIM(pPublicRSAKeyTemplate); rv = P11Functions->C_CreateObject(m_hSession, pPublicRSAKeyTemplate, usTemplateSize, &hPublicRSAKey); if (rv != CKR_OK) { cout << "C_Create public Object FAILED...rv = " << hex << rv << endl; return -1; } cout << "Create public key success handle = " << hex << hPublicRSAKey << endl; delete[] pLabelPub; return CKR_OK; } CK_RV HSMLunaClient::CheckExistingLabel(string label, CK_ULONG& numOfLabels) { CK_RV rv = CKR_TOKEN_NOT_PRESENT; unsigned int LabelSize = label.size() + 1; CK_BYTE* pLabel = new CK_BYTE[LabelSize]; memset(pLabel, 0, LabelSize); for (unsigned int i = 0; i < label.size(); i++) { pLabel[i] = label[i]; } CK_ATTRIBUTE Template[] = {{CKA_LABEL, pLabel, LabelSize}}; CK_ULONG numHandles = 0; CK_OBJECT_HANDLE handles[MAX_NUM_OF_HANDLES] = {0}; rv = P11Functions->C_FindObjectsInit(m_hSession, Template, 1); if (rv != CKR_OK) { delete[] pLabel; return rv; } rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (rv != CKR_OK) { delete[] pLabel; return rv; } numOfLabels = numHandles; if (numHandles != 0) { delete[] pLabel; return CKR_GENERAL_ERROR; } if (numHandles == 0) { Template[0].ulValueLen--; rv = P11Functions->C_FindObjectsInit(m_hSession, Template, 1); if (rv != CKR_OK) { delete[] pLabel; return rv; } rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (rv != CKR_OK) { delete[] pLabel; return rv; } } numOfLabels = numHandles; delete[] pLabel; if (numHandles != 0) { return CKR_GENERAL_ERROR; } return CKR_OK; } CK_RV HSMLunaClient::BurnPrivateKey(string privateKeyLabel, string publicKeyLabel, vector PrivateKeyData) { protectedInfo_T protectedInfo; CK_RV rv = CKR_TOKEN_NOT_PRESENT; CK_OBJECT_HANDLE hPrivateRSAKey = 0; char* pbWrappedKey; unsigned long ulWrappedKeySize; CK_OBJECT_CLASS privateKey = CKO_PRIVATE_KEY; CK_USHORT usOutDataLen = 0; char* pPlainData = 0; unsigned long ulPlainDataLength; char* pEncryptedData = 0; unsigned long ulEncryptedDataLength = 0; CK_MECHANISM mech; // CK_BYTE pLabel[] = "Super New RSA private Key222"; CK_KEY_TYPE rsaType = CKK_RSA; CK_ULONG usTemplateSize; rv = P11Functions->C_GetInfo(&protectedInfo.info); if (rv != CKR_OK) { cout << "C_GetInfo FAILED..." << endl; return -1; } CK_BBOOL bFalse = 0; CK_BBOOL bTrue = 1; CK_BBOOL bToken = bTrue; CK_BBOOL bPrivate = bTrue; CK_BBOOL bEncrypt = bTrue; CK_BBOOL bSign = bTrue; CK_BBOOL bWrap = bTrue; CK_BBOOL bSensitive = bTrue; unsigned int privateLabelSize = privateKeyLabel.size() + 1; CK_BYTE* pLabel = new CK_BYTE[privateLabelSize]; memset(pLabel, 0, privateLabelSize); unsigned int publicLabelSize = publicKeyLabel.size() + 1; CK_BYTE* pLabelPub = new CK_BYTE[publicLabelSize]; memset(pLabelPub, 0, publicLabelSize); for (unsigned int i = 0; i < privateKeyLabel.size(); i++) { pLabel[i] = privateKeyLabel[i]; } for (unsigned int i = 0; i < publicKeyLabel.size(); i++) { pLabelPub[i] = publicKeyLabel[i]; } CK_ATTRIBUTE pPrivateKeyTemplate[] = {{CKA_CLASS, &privateKey, sizeof(privateKey)}, {CKA_KEY_TYPE, &rsaType, sizeof(rsaType)}, {CKA_TOKEN, &bToken, sizeof(bToken)}, {CKA_SENSITIVE, &bSensitive, sizeof(bSensitive)}, {CKA_PRIVATE, &bPrivate, sizeof(bPrivate)}, {CKA_DECRYPT, &bEncrypt, sizeof(bEncrypt)}, {CKA_SIGN, &bSign, sizeof(bSign)}, {CKA_SIGN_RECOVER, &bTrue, sizeof(bTrue)}, // here may be remark! {CKA_UNWRAP, &bWrap, sizeof(bWrap)}, {CKA_EXTRACTABLE, &bFalse, sizeof(bFalse)}, {CKA_LABEL, pLabel, privateLabelSize}}; rv = Generate3DESKey(); if (rv != CKR_OK) { cout << "\n" "Error 0x" << hex << rv; cout << " generating the DES3 Key.\n"; delete[] pLabelPub; return -11; } // Encrypt the RSA Key unsigned char iv[8] = {'1', '2', '3', '4', '5', '6', '7', '8'}; mech.mechanism = CKM_DES3_CBC; mech.pParameter = iv; mech.usParameterLen = sizeof(iv); unsigned char* _PrivateKeyData = &PrivateKeyData[0]; PrivateKeyDataSize = PrivateKeyData.size(); pPlainData = (char*)(_PrivateKeyData); ulPlainDataLength = PrivateKeyDataSize; pEncryptedData = new char[ulPlainDataLength + 2048]; rv = P11Functions->C_EncryptInit(m_hSession, &mech, hSymKey); CK_USHORT usInDataLen; usOutDataLen = (CK_USHORT)(ulPlainDataLength + 2048); CK_ULONG ulBytesRemaining = ulPlainDataLength; char* pPlainTextPointer = pPlainData; char* pEncryptedDataPointer = pEncryptedData; while (ulBytesRemaining > 0) { if (ulBytesRemaining > 0xfff0) { usInDataLen = 0xfff0; ulBytesRemaining -= usInDataLen; } else { usInDataLen = (CK_USHORT)ulBytesRemaining; ulBytesRemaining -= usInDataLen; } rv = P11Functions->C_EncryptUpdate(m_hSession, (CK_BYTE_PTR)pPlainTextPointer, usInDataLen, (CK_BYTE_PTR)pEncryptedDataPointer, &usOutDataLen); if (rv == CKR_OK) { cout << "Encrypting key..." << endl; } else { cout << "\n" "Error 0x" << hex << rv; cout << " while encrypting the RSA key.\n"; return -1; } pPlainTextPointer += usInDataLen; pEncryptedDataPointer += usOutDataLen; ulEncryptedDataLength += usOutDataLen; } usOutDataLen = 0; CK_BYTE_PTR pOutData = (CK_BYTE_PTR)pEncryptedData; pOutData += ulEncryptedDataLength; rv = P11Functions->C_EncryptFinal(m_hSession, pOutData, &usOutDataLen); if (rv != CKR_OK) { cout << "C_EncryptFinal FAILED..." << endl; return -1; } ulEncryptedDataLength += usOutDataLen; mech.mechanism = CKM_DES3_CBC; mech.pParameter = (void*)"12345678"; // 8 byte IV mech.usParameterLen = 8; usTemplateSize = DIM(pPrivateKeyTemplate); pbWrappedKey = pEncryptedData; ulWrappedKeySize = ulEncryptedDataLength; rv = P11Functions->C_UnwrapKey(m_hSession, &mech, hSymKey, (CK_BYTE_PTR)pbWrappedKey, (CK_USHORT)ulWrappedKeySize, pPrivateKeyTemplate, usTemplateSize, &hPrivateRSAKey); if (rv != CKR_OK) { cout << "C_UnwrapKey FAILED...rv = " << hex << rv << endl; delete[] pEncryptedData; return -1; } else { cout << "Unwrapped Private key is " << hex << hPrivateRSAKey << endl; } if (pEncryptedData) { delete[] pEncryptedData; } /*rv = P11Functions->C_CreateObject(m_hSession, pPrivateKeyTemplate, usTemplateSize, &hPrivateRSAKey); if (rv != CKR_OK) { cout << "C_Create private Object FAILED...rv = " << hex << rv << endl; return -1; }*/ CK_ATTRIBUTE RSAFindPriTemplate[] = {{CKA_LABEL, pLabel, privateLabelSize}}; CK_ULONG numHandles = 0; CK_OBJECT_HANDLE handles[MAX_NUM_OF_HANDLES] = {0}; CK_OBJECT_HANDLE handles1[MAX_NUM_OF_HANDLES] = {0}; rv = P11Functions->C_FindObjectsInit(m_hSession, RSAFindPriTemplate, 1); rv = P11Functions->C_FindObjects(m_hSession, handles, MAX_NUM_OF_HANDLES, &numHandles); if (numHandles == 0) { cout << "Private key was not created " << endl; return CKR_CANCEL; } for (unsigned int i = 0; i < numHandles; i++) { cout << "Private key is " << handles[i] << endl; } numHandles = 0; CK_ATTRIBUTE RSAFindPubTemplate[] = {{CKA_LABEL, (CK_VOID_PTR)pLabelPub, publicLabelSize}}; rv = P11Functions->C_FindObjectsInit(m_hSession, RSAFindPubTemplate, 1); rv = P11Functions->C_FindObjects(m_hSession, handles1, MAX_NUM_OF_HANDLES, &numHandles); for (unsigned int i = 0; i < numHandles; i++) { cout << "Public key is " << handles1[i] << endl; } return rv; } #endif mstflint-4.26.0/mft_utils/hsmclient/src/hsmlunaclient.cpp0000644000175000017500000007113014522641732024042 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __WIN__ #include "hsmlunaclient.h" #include "hex64.h" using namespace std; unsigned char HSMLunaClient::Modulus[MODULUS_SIZE] = { #if 1 0xd2, 0xd9, 0xc8, 0x96, 0x04, 0xd5, 0xeb, 0xfc, 0x5d, 0x45, 0x34, 0xc5, 0xdb, 0x02, 0x65, 0xc7, 0x4c, 0x15, 0xcf, 0xde, 0xee, 0x10, 0x93, 0x15, 0x1a, 0xb7, 0xb2, 0xcc, 0x70, 0x0b, 0x8c, 0xdb, 0x3a, 0xa7, 0x23, 0xc5, 0x59, 0xf6, 0xc0, 0x88, 0xfb, 0x50, 0x74, 0x33, 0xb3, 0x58, 0xd2, 0x5f, 0x21, 0xcf, 0x3d, 0x8c, 0x52, 0xb1, 0x5a, 0x25, 0xd3, 0x68, 0x76, 0x25, 0xda, 0x08, 0xc7, 0x4d, 0x80, 0x39, 0xfa, 0x7c, 0xd7, 0xfe, 0xea, 0x35, 0xe8, 0x49, 0x9d, 0xd8, 0xe2, 0x43, 0x85, 0xcc, 0xb2, 0xa6, 0x40, 0xe4, 0x0e, 0x63, 0xf8, 0x2b, 0x72, 0xa9, 0xf8, 0xfe, 0x7d, 0x47, 0x59, 0x71, 0x03, 0x20, 0x0e, 0x6e, 0x27, 0xf6, 0x2d, 0xba, 0xf5, 0x75, 0xc1, 0xb4, 0x9f, 0xd4, 0x67, 0xb3, 0x3c, 0xea, 0x16, 0xe8, 0x9b, 0xe5, 0xd2, 0xd4, 0xf9, 0xfe, 0xdc, 0x6c, 0x42, 0xe6, 0x33, 0x0e, 0xd5, 0x21, 0x09, 0x22, 0xc3, 0x14, 0x2c, 0x49, 0xad, 0xe8, 0xb4, 0xb8, 0x65, 0x9e, 0xa9, 0x5d, 0x6f, 0x95, 0x0e, 0x02, 0x39, 0x63, 0x0a, 0xa8, 0xe8, 0x51, 0x82, 0x1c, 0xa3, 0x8f, 0x20, 0xbf, 0x3e, 0x72, 0xee, 0x58, 0x24, 0x97, 0xe6, 0xc1, 0x84, 0x84, 0x6d, 0x32, 0x21, 0xe8, 0x4c, 0xd5, 0x98, 0xcf, 0xb5, 0x60, 0x85, 0xef, 0x3d, 0x99, 0x76, 0x55, 0x10, 0x46, 0x34, 0x05, 0x22, 0xc6, 0xf2, 0x06, 0x79, 0xaf, 0x33, 0x3f, 0x36, 0x08, 0xcb, 0xcd, 0xa4, 0xa5, 0xd5, 0xd7, 0xc8, 0x70, 0x4b, 0xe0, 0x78, 0x00, 0x6c, 0x67, 0xf6, 0x7d, 0xda, 0x0d, 0x7c, 0x5f, 0x09, 0x83, 0xc1, 0x6e, 0x0c, 0x51, 0x25, 0x1e, 0x2d, 0x4c, 0xee, 0xf7, 0xa9, 0xb6, 0x91, 0x1a, 0x38, 0xb7, 0x7c, 0xbd, 0x1c, 0x17, 0x4e, 0xb6, 0xc6, 0x23, 0x03, 0x39, 0x39, 0xa7, 0xee, 0x4e, 0x4d, 0x3a, 0x5f, 0xf5, 0x2e, 0xd0, 0x0c, 0x87, 0xea, 0xab, 0x4b, 0xbf, 0x5d, 0x1d, 0x4d, 0x27, 0x1e, 0x70, 0x3f, 0x2e, 0xf7, 0xf8, 0xa4, 0x2b, 0x45, 0xcb, 0x09, 0x6f, 0x5a, 0xcd, 0x08, 0xdc, 0x08, 0x17, 0xb0, 0x59, 0x53, 0xad, 0xb6, 0xbd, 0x8d, 0xb6, 0xa6, 0xb3, 0x13, 0xab, 0x00, 0xfe, 0x5e, 0x5b, 0xa7, 0xbd, 0xfa, 0xc4, 0x89, 0xb0, 0xcc, 0x88, 0x5c, 0xc4, 0xec, 0xc4, 0x73, 0x2c, 0x23, 0x14, 0x6c, 0x08, 0xe7, 0x8b, 0x9c, 0x83, 0x8c, 0xa8, 0xe6, 0x14, 0x37, 0x0d, 0xa0, 0xf9, 0x8b, 0xa9, 0x04, 0x1c, 0xfe, 0x2d, 0x08, 0x98, 0x5b, 0x16, 0x20, 0xf2, 0x20, 0xe0, 0x07, 0x58, 0xde, 0x7d, 0xa9, 0xda, 0x78, 0x02, 0x74, 0x92, 0x4b, 0xa3, 0x26, 0x2f, 0x27, 0xb3, 0xa0, 0xe1, 0x0c, 0x2e, 0xb1, 0x25, 0x34, 0x6f, 0xec, 0x02, 0xb5, 0xbd, 0x43, 0xf1, 0x8f, 0x81, 0xc8, 0xf0, 0x58, 0x8d, 0x61, 0x62, 0x37, 0x8d, 0x58, 0x1e, 0xe0, 0xed, 0x52, 0x15, 0x18, 0xd7, 0x99, 0x72, 0x8e, 0x85, 0x1b, 0xe8, 0x50, 0x67, 0x67, 0x77, 0xc5, 0x91, 0x54, 0xa4, 0x5a, 0x61, 0x72, 0x27, 0x09, 0x95, 0xa2, 0x73, 0x0d, 0xf9, 0x86, 0x6d, 0x7f, 0xb7, 0xad, 0x87, 0x5d, 0xd0, 0x6e, 0x3d, 0xeb, 0x0e, 0xab, 0xe9, 0x02, 0x26, 0x78, 0x22, 0x32, 0xb8, 0x3d, 0x70, 0x74, 0x5d, 0x86, 0x4b, 0xac, 0x6a, 0x43, 0xe5, 0x08, 0x60, 0x95, 0xc4, 0xcc, 0x74, 0xb4, 0x86, 0x06, 0x55, 0xa1, 0xbc, 0xfb, 0xc2, 0x28, 0x85, 0xc0, 0x62, 0x8d, 0xef, 0x47, 0x95, 0xa8, 0x4b, 0x53, 0x0a, 0x7f, 0xfe, 0x11, 0x49, 0xb7, 0xf2, 0xab, 0x38, 0xb5, 0x10, 0x32, 0xd9, 0xe5, 0x16, 0x78, 0xe2, 0xeb, 0xf7, 0xa9, 0xe9, 0x4b, 0xca, 0x41, 0xa4, 0x6f, 0x5f, 0x8c, 0x7a, 0x11, 0x3d, 0xfc, 0x3a, 0x7e, 0xa2, 0xc0, 0x0f, 0xd5, 0xd1 #else 0xb8, 0xb5, 0x0f, 0x49, 0x46, 0xb5, 0x5d, 0x58, 0x04, 0x8e, 0x52, 0x59, 0x39, 0xdf, 0xd6, 0x29, 0x45, 0x6b, 0x6c, 0x96, 0xbb, 0xab, 0xa5, 0x6f, 0x72, 0x1b, 0x16, 0x96, 0x74, 0xd5, 0xf9, 0xb4, 0x41, 0xa3, 0x7c, 0xe1, 0x94, 0x73, 0x4b, 0xa7, 0x23, 0xff, 0x61, 0xeb, 0xce, 0x5a, 0xe7, 0x7f, 0xe3, 0x74, 0xe8, 0x52, 0x5b, 0xd6, 0x5d, 0x5c, 0xdc, 0x98, 0x49, 0xfe, 0x51, 0xc2, 0x7e, 0x8f, 0x3b, 0x37, 0x5c, 0xb3, 0x11, 0xed, 0x85, 0x91, 0x15, 0x92, 0x24, 0xd8, 0xf1, 0x7b, 0x3d, 0x2f, 0x8b, 0xcd, 0x1b, 0x30, 0x14, 0xa3, 0x6b, 0x1b, 0x4d, 0x27, 0xff, 0x6a, 0x58, 0x84, 0x9e, 0x79, 0x94, 0xca, 0x78, 0x64, 0x01, 0x33, 0xc3, 0x58, 0xfc, 0xd3, 0x83, 0xeb, 0x2f, 0xab, 0x6f, 0x85, 0x5a, 0x38, 0x41, 0x3d, 0x73, 0x20, 0x1b, 0x82, 0xbc, 0x7e, 0x76, 0xde, 0x5c, 0xfe, 0x42, 0xd6, 0x7b, 0x86, 0x4f, 0x79, 0x78, 0x29, 0x82, 0x87, 0xa6, 0x24, 0x43, 0x39, 0x74, 0xfe, 0xf2, 0x0c, 0x08, 0xbe, 0xfa, 0x1e, 0x0a, 0x48, 0x6f, 0x14, 0x86, 0xc5, 0xcd, 0x9a, 0x98, 0x09, 0x2d, 0xf3, 0xf3, 0x5a, 0x7a, 0xa4, 0xe6, 0x8a, 0x2e, 0x49, 0x8a, 0xde, 0x73, 0xe9, 0x37, 0xa0, 0x5b, 0xef, 0xd0, 0xe0, 0x13, 0xac, 0x88, 0x5f, 0x59, 0x47, 0x96, 0x7f, 0x78, 0x18, 0x0e, 0x44, 0x6a, 0x5d, 0xec, 0x6e, 0xed, 0x4f, 0xf6, 0x6a, 0x7a, 0x58, 0x6b, 0xfe, 0x6c, 0x5a, 0xb9, 0xd2, 0x22, 0x3a, 0x1f, 0xdf, 0xc3, 0x09, 0x3f, 0x6b, 0x2e, 0xf1, 0x6d, 0xc3, 0xfb, 0x4e, 0xd4, 0xf2, 0xa3, 0x94, 0x13, 0xb0, 0xbf, 0x1e, 0x06, 0x2e, 0x29, 0x55, 0x00, 0xaa, 0x98, 0xd9, 0xe8, 0x77, 0x84, 0x8b, 0x3f, 0x5f, 0x5e, 0xf7, 0xf8, 0xa7, 0xe6, 0x02, 0xd2, 0x18, 0xb0, 0x52, 0xd0, 0x37, 0x2e, 0x53 #endif }; unsigned char HSMLunaClient::PrivateKeyData[PRIVATE_DATA_SIZE] = { #if 1 0x30, 0x82, 0x09, 0x44, 0x02, 0x01, 0x00, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x04, 0x82, 0x09, 0x2e, 0x30, 0x82, 0x09, 0x2a, 0x02, 0x01, 0x00, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd2, 0xd9, 0xc8, 0x96, 0x04, 0xd5, 0xeb, 0xfc, 0x5d, 0x45, 0x34, 0xc5, 0xdb, 0x02, 0x65, 0xc7, 0x4c, 0x15, 0xcf, 0xde, 0xee, 0x10, 0x93, 0x15, 0x1a, 0xb7, 0xb2, 0xcc, 0x70, 0x0b, 0x8c, 0xdb, 0x3a, 0xa7, 0x23, 0xc5, 0x59, 0xf6, 0xc0, 0x88, 0xfb, 0x50, 0x74, 0x33, 0xb3, 0x58, 0xd2, 0x5f, 0x21, 0xcf, 0x3d, 0x8c, 0x52, 0xb1, 0x5a, 0x25, 0xd3, 0x68, 0x76, 0x25, 0xda, 0x08, 0xc7, 0x4d, 0x80, 0x39, 0xfa, 0x7c, 0xd7, 0xfe, 0xea, 0x35, 0xe8, 0x49, 0x9d, 0xd8, 0xe2, 0x43, 0x85, 0xcc, 0xb2, 0xa6, 0x40, 0xe4, 0x0e, 0x63, 0xf8, 0x2b, 0x72, 0xa9, 0xf8, 0xfe, 0x7d, 0x47, 0x59, 0x71, 0x03, 0x20, 0x0e, 0x6e, 0x27, 0xf6, 0x2d, 0xba, 0xf5, 0x75, 0xc1, 0xb4, 0x9f, 0xd4, 0x67, 0xb3, 0x3c, 0xea, 0x16, 0xe8, 0x9b, 0xe5, 0xd2, 0xd4, 0xf9, 0xfe, 0xdc, 0x6c, 0x42, 0xe6, 0x33, 0x0e, 0xd5, 0x21, 0x09, 0x22, 0xc3, 0x14, 0x2c, 0x49, 0xad, 0xe8, 0xb4, 0xb8, 0x65, 0x9e, 0xa9, 0x5d, 0x6f, 0x95, 0x0e, 0x02, 0x39, 0x63, 0x0a, 0xa8, 0xe8, 0x51, 0x82, 0x1c, 0xa3, 0x8f, 0x20, 0xbf, 0x3e, 0x72, 0xee, 0x58, 0x24, 0x97, 0xe6, 0xc1, 0x84, 0x84, 0x6d, 0x32, 0x21, 0xe8, 0x4c, 0xd5, 0x98, 0xcf, 0xb5, 0x60, 0x85, 0xef, 0x3d, 0x99, 0x76, 0x55, 0x10, 0x46, 0x34, 0x05, 0x22, 0xc6, 0xf2, 0x06, 0x79, 0xaf, 0x33, 0x3f, 0x36, 0x08, 0xcb, 0xcd, 0xa4, 0xa5, 0xd5, 0xd7, 0xc8, 0x70, 0x4b, 0xe0, 0x78, 0x00, 0x6c, 0x67, 0xf6, 0x7d, 0xda, 0x0d, 0x7c, 0x5f, 0x09, 0x83, 0xc1, 0x6e, 0x0c, 0x51, 0x25, 0x1e, 0x2d, 0x4c, 0xee, 0xf7, 0xa9, 0xb6, 0x91, 0x1a, 0x38, 0xb7, 0x7c, 0xbd, 0x1c, 0x17, 0x4e, 0xb6, 0xc6, 0x23, 0x03, 0x39, 0x39, 0xa7, 0xee, 0x4e, 0x4d, 0x3a, 0x5f, 0xf5, 0x2e, 0xd0, 0x0c, 0x87, 0xea, 0xab, 0x4b, 0xbf, 0x5d, 0x1d, 0x4d, 0x27, 0x1e, 0x70, 0x3f, 0x2e, 0xf7, 0xf8, 0xa4, 0x2b, 0x45, 0xcb, 0x09, 0x6f, 0x5a, 0xcd, 0x08, 0xdc, 0x08, 0x17, 0xb0, 0x59, 0x53, 0xad, 0xb6, 0xbd, 0x8d, 0xb6, 0xa6, 0xb3, 0x13, 0xab, 0x00, 0xfe, 0x5e, 0x5b, 0xa7, 0xbd, 0xfa, 0xc4, 0x89, 0xb0, 0xcc, 0x88, 0x5c, 0xc4, 0xec, 0xc4, 0x73, 0x2c, 0x23, 0x14, 0x6c, 0x08, 0xe7, 0x8b, 0x9c, 0x83, 0x8c, 0xa8, 0xe6, 0x14, 0x37, 0x0d, 0xa0, 0xf9, 0x8b, 0xa9, 0x04, 0x1c, 0xfe, 0x2d, 0x08, 0x98, 0x5b, 0x16, 0x20, 0xf2, 0x20, 0xe0, 0x07, 0x58, 0xde, 0x7d, 0xa9, 0xda, 0x78, 0x02, 0x74, 0x92, 0x4b, 0xa3, 0x26, 0x2f, 0x27, 0xb3, 0xa0, 0xe1, 0x0c, 0x2e, 0xb1, 0x25, 0x34, 0x6f, 0xec, 0x02, 0xb5, 0xbd, 0x43, 0xf1, 0x8f, 0x81, 0xc8, 0xf0, 0x58, 0x8d, 0x61, 0x62, 0x37, 0x8d, 0x58, 0x1e, 0xe0, 0xed, 0x52, 0x15, 0x18, 0xd7, 0x99, 0x72, 0x8e, 0x85, 0x1b, 0xe8, 0x50, 0x67, 0x67, 0x77, 0xc5, 0x91, 0x54, 0xa4, 0x5a, 0x61, 0x72, 0x27, 0x09, 0x95, 0xa2, 0x73, 0x0d, 0xf9, 0x86, 0x6d, 0x7f, 0xb7, 0xad, 0x87, 0x5d, 0xd0, 0x6e, 0x3d, 0xeb, 0x0e, 0xab, 0xe9, 0x02, 0x26, 0x78, 0x22, 0x32, 0xb8, 0x3d, 0x70, 0x74, 0x5d, 0x86, 0x4b, 0xac, 0x6a, 0x43, 0xe5, 0x08, 0x60, 0x95, 0xc4, 0xcc, 0x74, 0xb4, 0x86, 0x06, 0x55, 0xa1, 0xbc, 0xfb, 0xc2, 0x28, 0x85, 0xc0, 0x62, 0x8d, 0xef, 0x47, 0x95, 0xa8, 0x4b, 0x53, 0x0a, 0x7f, 0xfe, 0x11, 0x49, 0xb7, 0xf2, 0xab, 0x38, 0xb5, 0x10, 0x32, 0xd9, 0xe5, 0x16, 0x78, 0xe2, 0xeb, 0xf7, 0xa9, 0xe9, 0x4b, 0xca, 0x41, 0xa4, 0x6f, 0x5f, 0x8c, 0x7a, 0x11, 0x3d, 0xfc, 0x3a, 0x7e, 0xa2, 0xc0, 0x0f, 0xd5, 0xd1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc1, 0xc1, 0xdf, 0xd1, 0xfc, 0x1f, 0x98, 0xfc, 0x0f, 0xb9, 0xc9, 0x05, 0x08, 0x7c, 0xeb, 0x8a, 0x79, 0x20, 0x92, 0x25, 0x0a, 0x1f, 0xb1, 0x09, 0x73, 0xc3, 0xdb, 0x4a, 0x82, 0xac, 0x1a, 0x84, 0x5b, 0x21, 0xbc, 0x7d, 0x5e, 0x6e, 0xa1, 0xff, 0x3e, 0xf2, 0x6f, 0xd6, 0x12, 0xb9, 0x4c, 0x98, 0x9f, 0x39, 0x12, 0x16, 0x20, 0xe7, 0x59, 0x2f, 0xe9, 0x55, 0xd5, 0x3c, 0x73, 0x60, 0x1d, 0xc5, 0xda, 0x4f, 0x6d, 0x1f, 0xcc, 0x5d, 0x34, 0x5c, 0xd5, 0x58, 0xd0, 0xf4, 0xbc, 0xf7, 0xcf, 0xbc, 0x8b, 0x6e, 0xbb, 0xb2, 0xd6, 0x86, 0x87, 0x47, 0x65, 0xd7, 0x4c, 0x38, 0x90, 0x67, 0x40, 0x89, 0xd9, 0x95, 0x5b, 0xad, 0x5e, 0x8b, 0x9a, 0xfa, 0x73, 0x16, 0x03, 0x2b, 0x38, 0xb4, 0xb7, 0x96, 0xbe, 0x23, 0x5f, 0x69, 0xe1, 0xd9, 0x10, 0x25, 0x26, 0x96, 0x4d, 0x78, 0x2f, 0x01, 0xdb, 0x69, 0x85, 0xf1, 0x15, 0xb4, 0x1c, 0x10, 0x2d, 0xa2, 0x87, 0x6d, 0x90, 0xa4, 0xe2, 0xbd, 0x2a, 0x65, 0xf2, 0x63, 0xc6, 0xbb, 0xc4, 0x80, 0x7f, 0x0b, 0x38, 0x71, 0xae, 0x5f, 0x22, 0xee, 0x23, 0xe9, 0x9a, 0x39, 0x83, 0x4c, 0xfc, 0x53, 0x9a, 0x79, 0xba, 0x8c, 0xf6, 0xcb, 0x5a, 0xdd, 0x5d, 0xbd, 0xea, 0xee, 0xf4, 0x7d, 0xfe, 0x96, 0x1a, 0xc5, 0x2b, 0x38, 0x7f, 0xfc, 0x03, 0x51, 0xb4, 0xe3, 0x9d, 0x04, 0xd6, 0x4d, 0x69, 0x8a, 0x6c, 0xdd, 0x28, 0x6b, 0x91, 0x21, 0xd3, 0xa0, 0xb7, 0x50, 0x7a, 0x69, 0x8b, 0xdc, 0xd7, 0xc1, 0xb1, 0x81, 0x75, 0x1f, 0x6f, 0x6a, 0xe6, 0x13, 0x6d, 0x6c, 0xf3, 0x64, 0x9d, 0xf7, 0x5d, 0x29, 0x95, 0x6f, 0x81, 0x45, 0x83, 0x91, 0xd5, 0x0c, 0xc8, 0x53, 0xff, 0xbc, 0x6b, 0x59, 0x0a, 0x3a, 0xa2, 0x7b, 0xb3, 0xbf, 0xdd, 0xfd, 0x96, 0x7a, 0x4e, 0x32, 0x15, 0x98, 0x88, 0xa7, 0xf8, 0x5a, 0x1c, 0x7b, 0x5c, 0xd5, 0xab, 0x63, 0xa8, 0xfa, 0x65, 0xcd, 0x02, 0x49, 0xc3, 0x86, 0x3b, 0x52, 0x50, 0x76, 0x0b, 0x65, 0x74, 0xfc, 0x1b, 0xa8, 0x08, 0xef, 0x50, 0xb6, 0xa8, 0x42, 0xc3, 0x4d, 0x50, 0x66, 0x19, 0x44, 0x9f, 0x03, 0xa7, 0x69, 0x10, 0x1e, 0x41, 0xac, 0x15, 0x66, 0xf8, 0x29, 0x22, 0xfd, 0x8d, 0x9a, 0xdb, 0x6c, 0x1a, 0x7f, 0x18, 0x48, 0x16, 0xed, 0xef, 0x48, 0x60, 0xf7, 0x40, 0xce, 0xb3, 0x98, 0xde, 0xac, 0x71, 0x07, 0x8a, 0x47, 0x8e, 0x6e, 0x08, 0xc0, 0x22, 0x55, 0x85, 0x26, 0xfd, 0xd4, 0x91, 0x98, 0x69, 0xe0, 0x89, 0x52, 0xc9, 0xe5, 0x4b, 0xdd, 0x44, 0xa8, 0x14, 0x07, 0x44, 0xcf, 0x4f, 0x0e, 0xf2, 0x92, 0x0d, 0xf7, 0x41, 0x67, 0xab, 0x0e, 0xda, 0x81, 0x2b, 0x09, 0xcb, 0xea, 0x40, 0x38, 0xe1, 0xc2, 0x04, 0x07, 0x94, 0xa8, 0x7b, 0xb7, 0x7a, 0x52, 0x97, 0x1d, 0xcb, 0x67, 0x4e, 0x67, 0xbb, 0xa9, 0xde, 0x5f, 0xf9, 0xc4, 0xdb, 0x90, 0x7e, 0xaa, 0xa9, 0x36, 0xeb, 0x05, 0x0d, 0x4d, 0x69, 0x6b, 0x81, 0x40, 0x76, 0xf9, 0x8a, 0x31, 0x75, 0xbe, 0x66, 0xdf, 0xf1, 0x97, 0xd9, 0x7f, 0x8a, 0xbf, 0xae, 0xec, 0x51, 0xfc, 0x1d, 0x62, 0x27, 0x8d, 0xe4, 0x84, 0xc4, 0x62, 0xf4, 0x1f, 0x4a, 0xf6, 0x41, 0x7f, 0x4f, 0xd3, 0x8d, 0xda, 0x0b, 0x04, 0x85, 0xde, 0xbf, 0xba, 0x2b, 0x70, 0x3a, 0xb7, 0x6c, 0xb7, 0x84, 0xca, 0xe6, 0x6a, 0x54, 0xf6, 0xdd, 0x99, 0xdf, 0xbb, 0x45, 0xa1, 0xa9, 0x81, 0x4c, 0x18, 0x4a, 0x03, 0xfc, 0x9b, 0xf7, 0x75, 0x1f, 0x5e, 0x4b, 0xc1, 0x0d, 0x0a, 0xd5, 0x5e, 0xb5, 0x11, 0x0b, 0xef, 0x54, 0x20, 0xdc, 0x68, 0x04, 0x25, 0x31, 0x58, 0x1b, 0xb7, 0xd9, 0x09, 0x80, 0x01, 0x02, 0x82, 0x01, 0x01, 0x00, 0xf3, 0x94, 0xdf, 0x22, 0xe1, 0x32, 0x89, 0x47, 0xbb, 0x42, 0x47, 0x54, 0x55, 0xa0, 0x3a, 0x21, 0x35, 0xb4, 0xea, 0x15, 0x17, 0xe9, 0x66, 0xd3, 0x0c, 0x8c, 0xac, 0xef, 0xd8, 0xc2, 0xff, 0x38, 0xdc, 0x0e, 0xc9, 0x3e, 0x0a, 0x6e, 0x86, 0x59, 0xa5, 0x38, 0x23, 0x6d, 0x7a, 0xd6, 0xdb, 0x38, 0xd0, 0x14, 0xa3, 0x91, 0x1b, 0xd2, 0xbb, 0x3e, 0x30, 0xad, 0x3d, 0x15, 0xb1, 0x95, 0xb4, 0x53, 0x00, 0xb3, 0x6e, 0x99, 0xd1, 0x90, 0x5a, 0x4b, 0x2b, 0x0d, 0x99, 0xf2, 0x2a, 0x2b, 0x72, 0x69, 0x2f, 0xe6, 0x2a, 0xfe, 0x3e, 0x7f, 0xcd, 0xb3, 0x2d, 0xc2, 0x5b, 0xff, 0x88, 0xed, 0x62, 0xc9, 0xf7, 0xf6, 0xfc, 0xb6, 0x80, 0xbd, 0x78, 0x80, 0xd4, 0x70, 0xdf, 0x89, 0x13, 0xc2, 0x43, 0x15, 0x10, 0x00, 0xc3, 0xe3, 0x47, 0xff, 0xd2, 0xf2, 0x71, 0xd4, 0x34, 0x22, 0xf5, 0xc4, 0xec, 0x8d, 0x35, 0x94, 0x0e, 0x8b, 0xdf, 0xf1, 0x48, 0xd6, 0xb1, 0xc5, 0x77, 0xee, 0xd4, 0x81, 0x37, 0x53, 0xdb, 0xe1, 0xe8, 0x32, 0xd0, 0x48, 0x97, 0xf8, 0xf6, 0x2f, 0x28, 0x4c, 0xa1, 0xdf, 0xcf, 0x5e, 0xd9, 0x5e, 0xc3, 0x34, 0x39, 0xf0, 0xb5, 0xe9, 0x44, 0x6f, 0x8d, 0x1b, 0x44, 0x4c, 0xfe, 0xe3, 0xcf, 0x9c, 0x8d, 0xca, 0xb7, 0x9b, 0x85, 0xb2, 0xa9, 0x13, 0x0a, 0x29, 0x12, 0xde, 0xb5, 0xf6, 0x80, 0xc4, 0x7b, 0x8f, 0x84, 0xe0, 0xbe, 0x2e, 0x09, 0x3f, 0xe3, 0x8b, 0x51, 0x32, 0x66, 0x1c, 0x5d, 0xfa, 0xf8, 0xc1, 0x21, 0x7d, 0x41, 0xcf, 0xbc, 0x7b, 0xd4, 0x26, 0xe7, 0xd2, 0xda, 0x52, 0xdf, 0xf9, 0x6e, 0x26, 0x52, 0xb7, 0x97, 0x67, 0x02, 0xee, 0xda, 0x18, 0x28, 0xfd, 0x05, 0x37, 0xbe, 0x90, 0x3d, 0x7f, 0x8a, 0xbd, 0x28, 0xa7, 0xef, 0x76, 0x7e, 0xf7, 0xe7, 0xd2, 0xca, 0xf1, 0x02, 0x82, 0x01, 0x01, 0x00, 0xdd, 0x99, 0xb8, 0xf4, 0x67, 0x52, 0x0a, 0x32, 0x8f, 0x48, 0x9f, 0xd5, 0x25, 0x74, 0x46, 0x96, 0x28, 0x75, 0x7c, 0xce, 0xa2, 0x7c, 0xa7, 0x78, 0xd2, 0x14, 0x49, 0x02, 0x26, 0x78, 0xb8, 0x19, 0xd4, 0x3a, 0x92, 0x1d, 0xee, 0xf2, 0x13, 0x12, 0x85, 0x64, 0x35, 0x21, 0x97, 0xb2, 0xcf, 0xc0, 0xf1, 0x3d, 0x8a, 0x16, 0xed, 0x4e, 0xf3, 0xcb, 0x15, 0xc3, 0x84, 0x68, 0xa5, 0x45, 0xea, 0x48, 0x10, 0x82, 0xba, 0x9a, 0xc4, 0x58, 0xe0, 0xe9, 0x78, 0x61, 0x58, 0x13, 0xd4, 0x13, 0x37, 0x96, 0xdd, 0x03, 0x06, 0xc1, 0xeb, 0x86, 0xa6, 0x82, 0x22, 0x33, 0x18, 0x85, 0xb2, 0xa2, 0x8f, 0x36, 0x3b, 0xcb, 0x2b, 0xf2, 0x07, 0xd0, 0x5a, 0x81, 0x0f, 0x26, 0xeb, 0xed, 0x51, 0xc9, 0xbd, 0xbc, 0x03, 0x62, 0x74, 0x10, 0xb6, 0xda, 0x86, 0xfc, 0x6f, 0x12, 0x75, 0xe9, 0x43, 0x3f, 0x2e, 0x9a, 0x23, 0xc6, 0x9d, 0xc6, 0x31, 0x18, 0x41, 0x5a, 0x46, 0xf2, 0x76, 0x9a, 0x43, 0x99, 0x23, 0x61, 0xc0, 0x44, 0x62, 0xe2, 0xa2, 0xdf, 0x8e, 0x47, 0x30, 0xcb, 0xc2, 0x05, 0x6d, 0xb9, 0xb9, 0x51, 0xb8, 0xd8, 0xc9, 0x06, 0xab, 0xdd, 0x6d, 0x03, 0xbe, 0x01, 0x12, 0x01, 0x4e, 0x9d, 0x85, 0x1d, 0x22, 0x50, 0xda, 0xfa, 0x6b, 0x21, 0x04, 0xec, 0xaf, 0x5f, 0x76, 0xf4, 0xe6, 0x2c, 0x02, 0xf5, 0x41, 0xe2, 0x6f, 0xfb, 0x7f, 0xc3, 0x3a, 0x34, 0xde, 0xc8, 0x06, 0x61, 0x1c, 0xed, 0x2d, 0x66, 0x74, 0x13, 0xe1, 0x20, 0xd6, 0x83, 0xea, 0xe6, 0x83, 0xf7, 0xcb, 0xd1, 0xca, 0xe9, 0xfc, 0xcd, 0x21, 0xe9, 0x47, 0xdd, 0xaf, 0x17, 0x98, 0xb0, 0x5d, 0x9b, 0x8c, 0x3e, 0xd8, 0xe4, 0x11, 0xdd, 0x0c, 0xbc, 0x2f, 0xa1, 0x3a, 0x8f, 0x10, 0xcb, 0x24, 0xfd, 0x58, 0x8f, 0x6a, 0x52, 0xf8, 0xe1, 0x02, 0x82, 0x01, 0x00, 0x02, 0x50, 0xc4, 0xfa, 0x40, 0xe7, 0xc9, 0x14, 0x4c, 0x7c, 0x69, 0xcf, 0x2c, 0x6d, 0x34, 0x80, 0x42, 0x51, 0x70, 0xf4, 0x38, 0x60, 0xf8, 0xa0, 0x42, 0xfb, 0x47, 0x5d, 0x94, 0x52, 0xee, 0x38, 0x2d, 0x27, 0x5a, 0xd4, 0x63, 0x26, 0xff, 0xd1, 0xf4, 0x57, 0x1f, 0x47, 0x18, 0x26, 0xd8, 0xb8, 0xa6, 0x89, 0xbb, 0xb0, 0x52, 0x72, 0x63, 0x63, 0x48, 0xf5, 0x2c, 0xa2, 0x7b, 0x28, 0xb0, 0x29, 0x25, 0xd5, 0x8e, 0xd4, 0x99, 0x80, 0x64, 0xcb, 0x58, 0x22, 0x6d, 0xf7, 0x36, 0x5d, 0x69, 0x5e, 0x04, 0x9d, 0x8c, 0x85, 0x14, 0x35, 0x04, 0xd0, 0x92, 0x3b, 0xc9, 0xc2, 0x19, 0x1c, 0x20, 0x97, 0x48, 0xeb, 0x29, 0x25, 0xd6, 0xfd, 0x76, 0x1a, 0xcb, 0x6a, 0x33, 0x45, 0xcb, 0x51, 0x4a, 0x6f, 0xf5, 0xd1, 0xfc, 0x0a, 0xba, 0x11, 0x7d, 0x80, 0xde, 0x82, 0x24, 0xe8, 0xbc, 0x2b, 0x5e, 0x10, 0x4d, 0x95, 0x15, 0xba, 0x50, 0xab, 0xab, 0x84, 0x96, 0xf6, 0x08, 0x98, 0xd5, 0x9e, 0x50, 0xd7, 0x54, 0x3c, 0xc6, 0x87, 0x4d, 0x21, 0x93, 0x88, 0x43, 0x56, 0xd9, 0x6c, 0x39, 0x11, 0xb6, 0x97, 0xf1, 0x3b, 0x0c, 0x61, 0xff, 0xb7, 0x01, 0x13, 0xb1, 0x99, 0xd9, 0xde, 0x8b, 0x7c, 0xab, 0xe3, 0xa0, 0x82, 0x9d, 0x7a, 0x72, 0xda, 0x60, 0x9f, 0xfd, 0x29, 0x78, 0x2c, 0x41, 0xc8, 0xaa, 0x34, 0x28, 0xaf, 0x35, 0x79, 0x7c, 0xca, 0xe2, 0x23, 0xef, 0xe4, 0x92, 0x96, 0x2d, 0x74, 0x6c, 0x32, 0x12, 0xd6, 0xa2, 0xec, 0xbb, 0x13, 0xc4, 0xbf, 0x63, 0xcc, 0x4d, 0x8c, 0xfd, 0x21, 0x2d, 0x00, 0x22, 0xae, 0xed, 0x54, 0x21, 0xef, 0x2a, 0xda, 0x48, 0xd5, 0xda, 0x6e, 0xe6, 0x5c, 0xd9, 0x62, 0xd9, 0x45, 0xe7, 0xbf, 0xc1, 0xa2, 0xe0, 0xb3, 0x0f, 0xfc, 0xb1, 0x62, 0x4b, 0xea, 0xde, 0x11, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa4, 0x5c, 0x9d, 0x4b, 0x61, 0xca, 0xfe, 0xd7, 0x4b, 0x61, 0x41, 0x73, 0x95, 0x89, 0x2d, 0xc5, 0xb8, 0x12, 0x94, 0x54, 0xab, 0x3e, 0x2b, 0xf5, 0x38, 0x54, 0x65, 0x66, 0x5b, 0xe4, 0x94, 0x20, 0x4c, 0x42, 0x79, 0x18, 0x0c, 0x9f, 0xae, 0x37, 0xc1, 0x8a, 0x76, 0xc2, 0x08, 0xc3, 0x4e, 0xc6, 0xbb, 0xe7, 0xba, 0x21, 0x91, 0x38, 0x4b, 0x28, 0xe9, 0x66, 0x90, 0x32, 0x11, 0xcb, 0xce, 0x9e, 0x4e, 0xe8, 0xb7, 0xc1, 0x8d, 0x3a, 0xa2, 0xef, 0x68, 0x23, 0x43, 0x71, 0xc9, 0x8d, 0xcb, 0x60, 0x71, 0x63, 0x0a, 0x43, 0x11, 0x0f, 0x59, 0x37, 0x12, 0x68, 0xb5, 0x9a, 0x8c, 0xc9, 0x77, 0xd1, 0x70, 0xfe, 0x1c, 0x05, 0x33, 0x78, 0x7d, 0x78, 0x56, 0x25, 0xb7, 0x3d, 0xd9, 0xb8, 0xf9, 0xaa, 0x97, 0x14, 0x12, 0x24, 0x47, 0x8b, 0xc4, 0x2d, 0x3d, 0xb1, 0x02, 0x95, 0xd6, 0x13, 0xe9, 0xdb, 0xd8, 0x07, 0x3c, 0x04, 0xc1, 0x6b, 0x4d, 0x25, 0xc9, 0x93, 0x93, 0x16, 0x8e, 0x66, 0xea, 0x50, 0x59, 0x8c, 0x1f, 0x90, 0x1b, 0xe0, 0x16, 0xa6, 0x84, 0xf1, 0xcc, 0x61, 0xbc, 0x65, 0xd1, 0xa7, 0x64, 0xa4, 0x1e, 0x4e, 0x7d, 0x71, 0x09, 0xa7, 0x89, 0xe9, 0x3f, 0x52, 0x8a, 0xdd, 0xd8, 0xda, 0xa8, 0x16, 0x32, 0xa5, 0x24, 0x8a, 0x64, 0x1d, 0xad, 0x61, 0xf0, 0x58, 0x6a, 0xd4, 0x60, 0x09, 0x4b, 0x29, 0xc9, 0x87, 0x4f, 0xd7, 0x1c, 0xb8, 0x14, 0x39, 0x66, 0x49, 0xe7, 0x6b, 0x9f, 0x8d, 0xeb, 0x30, 0xc7, 0x7d, 0x54, 0xbe, 0x99, 0x9f, 0x0a, 0x68, 0xe3, 0xdb, 0x22, 0x56, 0xf4, 0xf3, 0xad, 0x60, 0x5a, 0xb6, 0x79, 0x64, 0xd6, 0x12, 0x92, 0x0b, 0x8a, 0x35, 0x1f, 0x27, 0xe2, 0x7c, 0x03, 0x33, 0x1d, 0x5c, 0xc7, 0x93, 0x4f, 0x90, 0x6d, 0x4a, 0x1f, 0xc2, 0x97, 0xc9, 0x1c, 0xe1, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0xce, 0xd4, 0x72, 0xa0, 0xe6, 0x7c, 0x12, 0xee, 0x9e, 0x81, 0x18, 0x25, 0x07, 0x9e, 0x43, 0xb5, 0x98, 0x08, 0xa8, 0x8d, 0x82, 0x8c, 0x2b, 0x43, 0xa1, 0x85, 0xe1, 0xf5, 0x03, 0x56, 0xd6, 0x9c, 0xbe, 0x3a, 0xc5, 0x04, 0x18, 0x78, 0x32, 0xd3, 0xbf, 0xdf, 0xfb, 0x03, 0xf4, 0x2d, 0x21, 0xd3, 0xef, 0x84, 0xfe, 0xa5, 0xeb, 0xe6, 0xa2, 0x37, 0x2c, 0xf6, 0xdb, 0x09, 0xaf, 0x51, 0x44, 0x05, 0x10, 0xa7, 0xaa, 0x41, 0xcb, 0x87, 0x95, 0xd1, 0x5a, 0xcc, 0x61, 0x0c, 0x66, 0x95, 0x65, 0x4c, 0x11, 0x61, 0x80, 0x9b, 0x73, 0xb2, 0x9d, 0x8e, 0xbe, 0xaf, 0x20, 0xb7, 0x6a, 0x2a, 0x46, 0x1b, 0x3f, 0xdc, 0x87, 0x1e, 0x9d, 0xbd, 0xa7, 0x07, 0x22, 0xab, 0xc4, 0xd0, 0x91, 0x9c, 0xc8, 0x02, 0x24, 0x1c, 0x68, 0xe3, 0x20, 0xc7, 0x03, 0x59, 0x12, 0xee, 0xe2, 0x88, 0xc8, 0x6c, 0xc7, 0x60, 0x19, 0xea, 0x5f, 0x56, 0x31, 0xca, 0x73, 0x1c, 0xee, 0x97, 0x2e, 0xbb, 0x3c, 0x44, 0x16, 0x47, 0xb6, 0x6d, 0x39, 0x06, 0xad, 0x1a, 0x27, 0x7a, 0x35, 0x70, 0x8c, 0x8f, 0x4b, 0x5e, 0x97, 0xf0, 0x82, 0x9a, 0xe0, 0x4b, 0x7e, 0x89, 0xb2, 0x4f, 0x61, 0xa6, 0x45, 0x25, 0x61, 0x06, 0xdd, 0x65, 0x1b, 0x7f, 0x9a, 0x50, 0xdc, 0xbd, 0x05, 0xf7, 0xd1, 0x4d, 0x84, 0x5a, 0x30, 0xcf, 0xcd, 0x63, 0x9e, 0x4a, 0x06, 0x03, 0x30, 0x1a, 0xea, 0x43, 0x2a, 0x35, 0xd9, 0xf4, 0xfe, 0x34, 0xec, 0xc5, 0x04, 0x15, 0x07, 0x7c, 0x1e, 0xa4, 0xcd, 0x2c, 0x76, 0x69, 0x96, 0x2a, 0xf8, 0xf2, 0x70, 0x55, 0x18, 0x66, 0xbe, 0x42, 0x28, 0xf8, 0x12, 0x51, 0x2a, 0xc8, 0xcc, 0x78, 0xce, 0x31, 0x0d, 0xb2, 0xb6, 0x2e, 0x9c, 0xf3, 0x48, 0xd9, 0x74, 0x2b, 0x53, 0xb3, 0x57, 0x57, 0x38, 0x83, 0x00}; #else 0x30, 0x82, 0x04, 0xbc, 0x02, 0x01, 0x00, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x04, 0x82, 0x04, 0xa6, 0x30, 0x82, 0x04, 0xa2, 0x02, 0x01, 0x00, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb8, 0xb5, 0x0f, 0x49, 0x46, 0xb5, 0x5d, 0x58, 0x04, 0x8e, 0x52, 0x59, 0x39, 0xdf, 0xd6, 0x29, 0x45, 0x6b, 0x6c, 0x96, 0xbb, 0xab, 0xa5, 0x6f, 0x72, 0x1b, 0x16, 0x96, 0x74, 0xd5, 0xf9, 0xb4, 0x41, 0xa3, 0x7c, 0xe1, 0x94, 0x73, 0x4b, 0xa7, 0x23, 0xff, 0x61, 0xeb, 0xce, 0x5a, 0xe7, 0x7f, 0xe3, 0x74, 0xe8, 0x52, 0x5b, 0xd6, 0x5d, 0x5c, 0xdc, 0x98, 0x49, 0xfe, 0x51, 0xc2, 0x7e, 0x8f, 0x3b, 0x37, 0x5c, 0xb3, 0x11, 0xed, 0x85, 0x91, 0x15, 0x92, 0x24, 0xd8, 0xf1, 0x7b, 0x3d, 0x2f, 0x8b, 0xcd, 0x1b, 0x30, 0x14, 0xa3, 0x6b, 0x1b, 0x4d, 0x27, 0xff, 0x6a, 0x58, 0x84, 0x9e, 0x79, 0x94, 0xca, 0x78, 0x64, 0x01, 0x33, 0xc3, 0x58, 0xfc, 0xd3, 0x83, 0xeb, 0x2f, 0xab, 0x6f, 0x85, 0x5a, 0x38, 0x41, 0x3d, 0x73, 0x20, 0x1b, 0x82, 0xbc, 0x7e, 0x76, 0xde, 0x5c, 0xfe, 0x42, 0xd6, 0x7b, 0x86, 0x4f, 0x79, 0x78, 0x29, 0x82, 0x87, 0xa6, 0x24, 0x43, 0x39, 0x74, 0xfe, 0xf2, 0x0c, 0x08, 0xbe, 0xfa, 0x1e, 0x0a, 0x48, 0x6f, 0x14, 0x86, 0xc5, 0xcd, 0x9a, 0x98, 0x09, 0x2d, 0xf3, 0xf3, 0x5a, 0x7a, 0xa4, 0xe6, 0x8a, 0x2e, 0x49, 0x8a, 0xde, 0x73, 0xe9, 0x37, 0xa0, 0x5b, 0xef, 0xd0, 0xe0, 0x13, 0xac, 0x88, 0x5f, 0x59, 0x47, 0x96, 0x7f, 0x78, 0x18, 0x0e, 0x44, 0x6a, 0x5d, 0xec, 0x6e, 0xed, 0x4f, 0xf6, 0x6a, 0x7a, 0x58, 0x6b, 0xfe, 0x6c, 0x5a, 0xb9, 0xd2, 0x22, 0x3a, 0x1f, 0xdf, 0xc3, 0x09, 0x3f, 0x6b, 0x2e, 0xf1, 0x6d, 0xc3, 0xfb, 0x4e, 0xd4, 0xf2, 0xa3, 0x94, 0x13, 0xb0, 0xbf, 0x1e, 0x06, 0x2e, 0x29, 0x55, 0x00, 0xaa, 0x98, 0xd9, 0xe8, 0x77, 0x84, 0x8b, 0x3f, 0x5f, 0x5e, 0xf7, 0xf8, 0xa7, 0xe6, 0x02, 0xd2, 0x18, 0xb0, 0x52, 0xd0, 0x37, 0x2e, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x02, 0x82, 0x01, 0x00, 0x0c, 0xdf, 0xd1, 0xe8, 0xf1, 0x9c, 0xc2, 0x9c, 0xd7, 0xf4, 0x73, 0x98, 0xf4, 0x87, 0xbd, 0x8d, 0xb2, 0xe1, 0x01, 0xf8, 0x9f, 0xac, 0x1f, 0x23, 0xdd, 0x78, 0x35, 0xe2, 0xd6, 0xd1, 0xf3, 0x4d, 0xb5, 0x25, 0x88, 0x16, 0xd1, 0x1a, 0x18, 0x33, 0xd6, 0x36, 0x7e, 0xc4, 0xc8, 0xe5, 0x5d, 0x2d, 0x74, 0xd5, 0x39, 0x3c, 0x44, 0x5a, 0x74, 0xb7, 0x7c, 0x48, 0xc1, 0x1f, 0x90, 0xe3, 0x55, 0x9e, 0xf6, 0x29, 0xad, 0xb4, 0x6d, 0x93, 0x78, 0xb3, 0xdc, 0x25, 0x0b, 0x9c, 0x73, 0x78, 0x7b, 0x93, 0x4c, 0xd3, 0x47, 0x09, 0xda, 0xe6, 0x69, 0x18, 0xc6, 0x0f, 0xfb, 0xa5, 0x95, 0xf5, 0xe8, 0x75, 0xe1, 0x01, 0x1b, 0xd3, 0x1c, 0xa2, 0x57, 0x03, 0x64, 0xdb, 0xf9, 0x5d, 0xf3, 0x3c, 0xa7, 0xd1, 0x4b, 0xb0, 0x90, 0x1b, 0x90, 0x62, 0xb4, 0x88, 0x30, 0x4b, 0x40, 0x4d, 0xcf, 0x7d, 0x89, 0x7a, 0xfb, 0x29, 0xc9, 0x64, 0x34, 0x0a, 0x52, 0xf6, 0x70, 0x7c, 0x76, 0x5a, 0x2e, 0x8f, 0x50, 0xd4, 0x92, 0x15, 0x97, 0xed, 0x4c, 0x2e, 0xf2, 0x3a, 0xd0, 0x58, 0x7e, 0xdb, 0xf1, 0xf4, 0xdd, 0x07, 0x76, 0x04, 0xf0, 0x55, 0x8b, 0x72, 0x2b, 0xa7, 0xa8, 0x78, 0x78, 0x67, 0xe6, 0xd8, 0xa5, 0xde, 0xe7, 0xc9, 0x1f, 0x5a, 0xa0, 0x89, 0xc7, 0x24, 0xa2, 0x71, 0xb6, 0x7b, 0x3b, 0xe6, 0x92, 0x69, 0x22, 0xaa, 0xe2, 0x47, 0x4b, 0x80, 0x3f, 0x6a, 0xab, 0xce, 0x4e, 0xcd, 0xe8, 0x94, 0x6c, 0xf7, 0x84, 0x73, 0x85, 0xfd, 0x85, 0x1d, 0xae, 0x81, 0xf7, 0xec, 0x12, 0x31, 0x7d, 0xc1, 0x99, 0xc0, 0x3c, 0x51, 0xb0, 0xdc, 0xb0, 0xba, 0x9c, 0x84, 0xb8, 0x70, 0xc2, 0x09, 0x7f, 0x96, 0x3d, 0xa1, 0xe2, 0x64, 0x27, 0x7a, 0x22, 0xb8, 0x75, 0xb9, 0xd1, 0x5f, 0xa5, 0x23, 0xf9, 0x62, 0xe0, 0x41, 0x02, 0x81, 0x81, 0x00, 0xf4, 0xf3, 0x08, 0xcf, 0x83, 0xb0, 0xab, 0xf2, 0x0f, 0x1a, 0x08, 0xaf, 0xc2, 0x42, 0x29, 0xa7, 0x9c, 0x5e, 0x52, 0x19, 0x69, 0x8d, 0x5b, 0x52, 0x29, 0x9c, 0x06, 0x6a, 0x5a, 0x32, 0x8f, 0x08, 0x45, 0x6c, 0x43, 0xb5, 0xac, 0xc3, 0xbb, 0x90, 0x7b, 0xec, 0xbb, 0x5d, 0x71, 0x25, 0x82, 0xf8, 0x40, 0xbf, 0x38, 0x00, 0x20, 0xf3, 0x8a, 0x38, 0x43, 0xde, 0x04, 0x41, 0x19, 0x5f, 0xeb, 0xb0, 0x50, 0x59, 0x10, 0xe1, 0x54, 0x62, 0x5c, 0x93, 0xd9, 0xdc, 0x63, 0x24, 0xd0, 0x17, 0x00, 0xc0, 0x44, 0x3e, 0xfc, 0xd1, 0xda, 0x4b, 0x24, 0xf7, 0xcb, 0x16, 0x35, 0xe6, 0x9f, 0x67, 0x96, 0x5f, 0xb0, 0x94, 0xde, 0xfa, 0xa1, 0xfd, 0x8c, 0x8a, 0xd1, 0x5c, 0x02, 0x8d, 0xe0, 0xa0, 0xa0, 0x02, 0x1d, 0x56, 0xaf, 0x13, 0x3a, 0x65, 0x5e, 0x8e, 0xde, 0xd1, 0xa8, 0x28, 0x8b, 0x71, 0xc9, 0x65, 0x02, 0x81, 0x81, 0x00, 0xc1, 0x0a, 0x47, 0x39, 0x91, 0x06, 0x1e, 0xb9, 0x43, 0x7c, 0x9e, 0x97, 0xc5, 0x09, 0x08, 0xbc, 0x22, 0x47, 0xe2, 0x96, 0x8e, 0x1c, 0x74, 0x80, 0x50, 0x6c, 0x9f, 0xef, 0x2f, 0xe5, 0x06, 0x3e, 0x73, 0x66, 0x76, 0x02, 0xbd, 0x9a, 0x1c, 0xfc, 0xf9, 0x6a, 0xb8, 0xf9, 0x36, 0x15, 0xb5, 0x20, 0x0b, 0x6b, 0x54, 0x83, 0x9c, 0x86, 0xba, 0x13, 0xb7, 0x99, 0x54, 0xa0, 0x93, 0x0d, 0xd6, 0x1e, 0xc1, 0x12, 0x72, 0x0d, 0xea, 0xb0, 0x14, 0x30, 0x70, 0x73, 0xef, 0x6b, 0x4c, 0xae, 0xb6, 0xff, 0xd4, 0xbb, 0x89, 0xa1, 0xec, 0xca, 0xa6, 0xe9, 0x95, 0x56, 0xac, 0xe2, 0x9b, 0x97, 0x2f, 0x2c, 0xdf, 0xa3, 0x6e, 0x59, 0xff, 0xcd, 0x3c, 0x6f, 0x57, 0xcc, 0x6e, 0x44, 0xc4, 0x27, 0xbf, 0xc3, 0xdd, 0x19, 0x9e, 0x81, 0x16, 0xe2, 0x8f, 0x65, 0x34, 0xa7, 0x0f, 0x22, 0xba, 0xbf, 0x79, 0x57, 0x02, 0x81, 0x80, 0x2e, 0x21, 0x0e, 0xc9, 0xb5, 0xad, 0x31, 0xd4, 0x76, 0x0f, 0x9b, 0x0f, 0x2e, 0x70, 0x33, 0x54, 0x03, 0x58, 0xa7, 0xf1, 0x6d, 0x35, 0x57, 0xbb, 0x53, 0x66, 0xb4, 0xb6, 0x96, 0xa1, 0xea, 0xd9, 0xcd, 0xe9, 0x23, 0x9f, 0x35, 0x17, 0xef, 0x5c, 0xb8, 0x59, 0xce, 0xb7, 0x3c, 0x35, 0xaa, 0x42, 0x82, 0x3f, 0x00, 0x96, 0xd5, 0x9d, 0xc7, 0xab, 0xec, 0xec, 0x04, 0xb5, 0x15, 0xc8, 0x40, 0xa4, 0x85, 0x9d, 0x20, 0x56, 0xaf, 0x03, 0x8f, 0x17, 0xb0, 0xf1, 0x96, 0x22, 0x3a, 0xa5, 0xfa, 0x58, 0x3b, 0x01, 0xf9, 0xae, 0xb3, 0x83, 0x6f, 0x44, 0xd3, 0x14, 0x2d, 0xb6, 0x6e, 0xd2, 0x9d, 0x39, 0x0c, 0x12, 0x1d, 0x23, 0xea, 0x19, 0xcb, 0xbb, 0xe0, 0xcd, 0x89, 0x15, 0x9a, 0xf5, 0xe4, 0xec, 0x41, 0x06, 0x30, 0x16, 0x58, 0xea, 0xfa, 0x31, 0xc1, 0xb8, 0x8e, 0x08, 0x84, 0xaa, 0x3b, 0x19, 0x02, 0x81, 0x80, 0x70, 0x4c, 0xf8, 0x6e, 0x86, 0xed, 0xd6, 0x85, 0xd4, 0xba, 0xf4, 0xd0, 0x3a, 0x32, 0x2d, 0x40, 0xb5, 0x78, 0xb8, 0x5a, 0xf9, 0xc5, 0x98, 0x08, 0xe5, 0xc0, 0xab, 0xb2, 0x4c, 0x5c, 0xa2, 0x2b, 0x46, 0x9b, 0x3e, 0xe0, 0x0d, 0x49, 0x50, 0xbf, 0xe2, 0xa1, 0xb1, 0x86, 0x59, 0x6e, 0x7b, 0x76, 0x6e, 0xee, 0x3b, 0xb6, 0x6d, 0x22, 0xfb, 0xb1, 0x68, 0xc7, 0xec, 0xb1, 0x95, 0x9b, 0x21, 0x0b, 0xb7, 0x2a, 0x71, 0xeb, 0xa2, 0xb2, 0x58, 0xac, 0x6d, 0x5f, 0x24, 0xd3, 0x79, 0x42, 0xd2, 0xf7, 0x35, 0xdc, 0xfc, 0x0e, 0x95, 0x60, 0xb7, 0x85, 0x7f, 0xf9, 0x72, 0x8e, 0x4a, 0x11, 0xc3, 0xc2, 0x09, 0x40, 0x5c, 0x7c, 0x43, 0x12, 0x34, 0xac, 0x59, 0x99, 0x76, 0x34, 0xcf, 0x20, 0x88, 0xb0, 0xfb, 0x39, 0x62, 0x3a, 0x9b, 0x03, 0xa6, 0x84, 0x2c, 0x03, 0x5c, 0x0c, 0xca, 0x33, 0x85, 0xf5, 0x02, 0x81, 0x80, 0x56, 0x99, 0xe9, 0x17, 0xdc, 0x33, 0xe1, 0x33, 0x8d, 0x5c, 0xba, 0x17, 0x32, 0xb7, 0x8c, 0xbd, 0x4b, 0x7f, 0x42, 0x3a, 0x79, 0x90, 0xe3, 0x70, 0xe3, 0x27, 0xce, 0x22, 0x59, 0x02, 0xc0, 0xb1, 0x0e, 0x57, 0xf5, 0xdf, 0x07, 0xbf, 0xf8, 0x4e, 0x10, 0xef, 0x2a, 0x62, 0x30, 0x03, 0xd4, 0x80, 0xcf, 0x20, 0x84, 0x25, 0x66, 0x3f, 0xc7, 0x4f, 0x56, 0x8c, 0x1e, 0xe1, 0x18, 0x91, 0xc1, 0xfd, 0x71, 0x5f, 0x65, 0x9b, 0xe4, 0x4f, 0xe0, 0x1a, 0x3a, 0xf8, 0xc1, 0x69, 0xdb, 0xd3, 0xbb, 0x8d, 0x91, 0xd1, 0x11, 0x4f, 0x7e, 0x91, 0x1b, 0xb4, 0x27, 0xa5, 0xab, 0x7c, 0x7b, 0x76, 0xd4, 0x78, 0xfe, 0x63, 0x44, 0x63, 0x7e, 0xe3, 0xa6, 0x60, 0x4f, 0xb9, 0x55, 0x28, 0xba, 0xba, 0x83, 0x1a, 0x2d, 0x43, 0xd5, 0xf7, 0x2e, 0xe0, 0xfc, 0xa8, 0x14, 0x9b, 0x91, 0x2a, 0x36, 0xbf, 0xc7, 0x14}; #endif #define BURN_TEST 1 #define SIGN_TEST 1 #define PEM_TEST 1 /* FUNCTION: int main(int argc, char* argv[]) */ int HsmTest(int argc, char* argv[]) { HSMLunaClient m_HSMLunaClient; if (m_HSMLunaClient.Init() == CK_FALSE) { cout << "Initialization error" << endl; return -1; } #ifdef PEM_TEST if (argc == 2) { vector outputBuffer; Hex64Manipulations hex64; hex64.ParsePemFile(argv[1], outputBuffer); } #endif #ifdef BURN_TEST string pPrivateKeyLabel = "Super New RSA private Key2", pbPublicKeyLabel = "Super New RSA Public Key2"; m_HSMLunaClient.BurnPrivateKey(pPrivateKeyLabel, pbPublicKeyLabel); #endif #ifdef SIGN_TEST vector data(64, 0); for (int i = 0; i < 64; i++) { data[i] = i + 1; } m_HSMLunaClient.RSA_CreateSignature(data, pPrivateKeyLabel); #endif m_HSMLunaClient.CleanUp(); return 0; } #endif mstflint-4.26.0/mft_utils/hsmclient/src/hsmlunatest.cpp0000644000175000017500000000500014522641732023534 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __WIN__ #include "hsmlunaclient.h" #include "hex64.h" using namespace std; #define BURN_TEST 0 #define SIGN_TEST 0 #define PEM_TEST 0 /* FUNCTION: int HsmTest(int argc, char* argv[]) test function to check HSM features */ int HsmTest(int argc, char* argv[]) { (void)argc; (void)argv; HSMLunaClient m_HSMLunaClient; if (m_HSMLunaClient.Init() == CK_FALSE) { cout << "Initialization error" << endl; return -1; } #if PEM_TEST if (argc == 2) { vector outputBuffer; Hex64Manipulations hex64; hex64.ParsePemFile(argv[1], outputBuffer); } #endif #if BURN_TEST string pPrivateKeyLabel = "CMU Unwrapped RSA Private Key", pbPublicKeyLabel = "RSA Public Key 18_06"; m_HSMLunaClient.BurnPrivateKey(pPrivateKeyLabel, pbPublicKeyLabel); #endif #if SIGN_TEST vector data(64, 0); for (int i = 0; i < 64; i++) { data[i] = i + 1; } m_HSMLunaClient.RSA_CreateSignature(data, pPrivateKeyLabel, pbPublicKeyLabel); #endif m_HSMLunaClient.CleanUp(); return 0; } #endif mstflint-4.26.0/mft_utils/hsmclient/src/hex64.cpp0000644000175000017500000003016614522641732022136 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "hex64.h" #include #include using namespace std; static const char* base64_chars[2] = {"ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" "0123456789" "+/", "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" "0123456789" "-_"}; #ifndef UEFI_BUILD #define DPRINTF(args) \ do \ { \ char* reacDebug = getenv("HEX64_DEBUG"); \ if (reacDebug != NULL) \ { \ printf("\33[2K\r"); \ printf("[HEX64_DEBUG]: -D- "); \ printf args; \ fflush(stdout); \ } \ } while (0) #else #define DPRINTF(...) #endif size_t Hex64Manipulations::pos_of_char(const unsigned char chr) { // // Return the position of chr within base64_encode() // if (chr >= 'A' && chr <= 'Z') return chr - 'A'; else if (chr >= 'a' && chr <= 'z') return chr - 'a' + ('Z' - 'A') + 1; else if (chr >= '0' && chr <= '9') return chr - '0' + ('Z' - 'A') + ('z' - 'a') + 2; else if (chr == '+' || chr == '-') return 62; // Be liberal with input and accept both url ('-') and non-url ('+') base 64 characters ( else if (chr == '/' || chr == '_') return 63; // Ditto for '/' and '_' return 0xffff; } string Hex64Manipulations::base64_encode(unsigned char const* bytes_to_encode, unsigned int in_len) { string ret; int i = 0; int j = 0; unsigned char char_array_3[3]; unsigned char char_array_4[4]; while (in_len--) { char_array_3[i++] = *(bytes_to_encode++); if (i == 3) { char_array_4[0] = (char_array_3[0] & 0xfc) >> 2; char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4); char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6); char_array_4[3] = char_array_3[2] & 0x3f; for (i = 0; (i < 4); i++) ret += base64_chars[char_array_4[i]]; i = 0; } } if (i) { for (j = i; j < 3; j++) char_array_3[j] = '\0'; char_array_4[0] = (char_array_3[0] & 0xfc) >> 2; char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4); char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6); char_array_4[3] = char_array_3[2] & 0x3f; for (j = 0; (j < i + 1); j++) ret += base64_chars[char_array_4[j]]; while ((i++ < 3)) ret += '='; } return ret; } bool Hex64Manipulations::PrintHexData(const string& data) { unsigned int input_length = data.size(); int j = 1; for (size_t i = 0; i < input_length; i++) { unsigned char scanResult = 0; scanResult = (unsigned char)data[i]; DPRINTF(("0x%02x, ", scanResult)); if ((j % 16) == 0) { DPRINTF(("\n")); } j++; } return true; } bool writeToFile(const std::vector& buff, string filePath) { FILE* fh = fopen(filePath.c_str(), "wb"); if (fh == NULL) { return false; } // Write if (fwrite(&buff[0], 1, buff.size(), fh) != buff.size()) { fclose(fh); return false; } fclose(fh); return true; } bool Hex64Manipulations::ParsePemFile(string inputFile, vector& outputBuffer, bool& IsPemFile8Format) { vector inputBuffer; unsigned int inputSize = 0; vector finalBuffer; bool IsPem8Format = false; IsPemFile8Format = false; if (ReadInputPemFile(inputFile.c_str(), inputBuffer, inputSize, IsPem8Format) == false) { return false; } string inputStr(inputBuffer.begin(), inputBuffer.end()); string copy(inputStr); size_t pos = 0; while ((pos = copy.find("\n", pos)) != string::npos) { copy.erase(pos, 1); } string decoded_array = base64_decode(copy); if (decoded_array.empty()) { return false; } finalBuffer.resize(decoded_array.size()); for (unsigned int i = 0; i < decoded_array.size(); i++) { finalBuffer[i] = decoded_array[i]; } if (IsPem8Format) { IsPemFile8Format = true; if (finalBuffer.size() < 2376) { // details here http://lapo.it/asn1js/ unsigned int NumPlacesToFix = 2376 - finalBuffer.size(); // actually the decoded file is absolutely legal from TLV point of view, but we must pad it to required size // important that we will not "fix" more then required! // it's actually zero's padding, but simple padding at the end of file doesn't work DPRINTF(("-D- PEM buffer size is %u places to fix %u\n", (unsigned int)finalBuffer.size(), NumPlacesToFix)); vector outputFixedBuffer(2376, 0); unsigned int corruptedIndex = 0; unsigned int fixedIndex = 0; while (fixedIndex != 2376) { outputFixedBuffer[fixedIndex] = finalBuffer[corruptedIndex]; if (NumPlacesToFix > 0) { if (corruptedIndex >= 3) { if (finalBuffer[corruptedIndex - 3] == 0x02 && finalBuffer[corruptedIndex - 2] == 0x82 && (finalBuffer[corruptedIndex - 1] == 0x02 || finalBuffer[corruptedIndex - 1] == 0x01) && finalBuffer[corruptedIndex] == 0) { //"CORRUPTED" TLV outputFixedBuffer[3] = outputFixedBuffer[3] + 1; // change the main TLV size outputFixedBuffer[25] = outputFixedBuffer[25] + 1; // change the secondary TLV size outputFixedBuffer[29] = outputFixedBuffer[29] + 1; // the same outputFixedBuffer[fixedIndex] = 1; // increase current TLV by 1 fixedIndex++; // don't need to put 0, it's there already DPRINTF(("-D- PEM buffer fixed at index %u to index %u\n", corruptedIndex, fixedIndex)); NumPlacesToFix--; } } } corruptedIndex++; fixedIndex++; } finalBuffer = outputFixedBuffer; } else { DPRINTF(("-D- size of decoded buffer is illegal %u\n", (unsigned int)finalBuffer.size())); return false; } outputBuffer.resize(finalBuffer.size()); for (unsigned int i = 0; i < finalBuffer.size(); i++) { outputBuffer[i] = finalBuffer[i]; } return true; } else { // NOT IsPem8Format, just copy the result to output buffer outputBuffer.resize(finalBuffer.size()); for (unsigned int i = 0; i < finalBuffer.size(); i++) { outputBuffer[i] = finalBuffer[i]; } DPRINTF(("-D- PEM outputBuffer buffer size is %u\n", (unsigned int)outputBuffer.size())); } return true; } string Hex64Manipulations::base64_decode(string encoded_string) { int length_of_string = encoded_string.length(); if (!length_of_string) { return string(""); } size_t in_len = length_of_string; size_t pos = 0; size_t approx_length_of_decoded_string = length_of_string / 4 * 3; string ret; ret.reserve(approx_length_of_decoded_string); while (pos < in_len) { unsigned int pos_of_char_1 = pos_of_char(encoded_string[pos + 1]); if (pos_of_char_1 == 0xffff) { return string(); } ret.push_back(((pos_of_char(encoded_string[pos + 0])) << 2) + ((pos_of_char_1 & 0x30) >> 4)); if (encoded_string[pos + 2] != '=' && encoded_string[pos + 2] != '.') { // accept URL-safe base 64 strings, too, so check for '.' also. unsigned int pos_of_char_2 = pos_of_char(encoded_string[pos + 2]); ret.push_back(((pos_of_char_1 & 0x0f) << 4) + ((pos_of_char_2 & 0x3c) >> 2)); if (encoded_string[pos + 3] != '=' && encoded_string[pos + 3] != '.') { ret.push_back(((pos_of_char_2 & 0x03) << 6) + pos_of_char(encoded_string[pos + 3])); } } pos += 4; } return ret; } bool Hex64Manipulations::ReadInputPemFile(const char* fileName, vector& outputBuffer, unsigned int& inputSize, bool& IsPem8Format) { bool IsPem1File = false; bool IsPem8File = false; IsPem8Format = false; vector tempBuffer; FILE* fd = fopen(fileName, "rb"); if (fd == NULL) { return false; } if (fseek(fd, 0, SEEK_END) < 0) { fclose(fd); return false; } size_t fileSize = ftell(fd); rewind(fd); tempBuffer.resize(fileSize); // Read if (fread(&tempBuffer[0], 1, fileSize, fd) != fileSize) { fclose(fd); return false; } if (memcmp(&tempBuffer[0], PEM_1_PREFIX, PEM_1_PREFIX_LENGTH) == 0) { IsPem1File = true; } else if (memcmp(&tempBuffer[0], PEM_8_PREFIX, PEM_8_PREFIX_LENGTH) == 0) { IsPem8File = true; } else { fclose(fd); return false; } /* If PEM8, Skip first 28 bytes */ if (IsPem8File) { fseek(fd, PEM_8_PREFIX_LENGTH + 1, SEEK_SET); inputSize = fileSize - 55; // suffix is 27 bytes outputBuffer.resize(inputSize); // Read if (fread(&outputBuffer[0], 1, inputSize, fd) != inputSize) { fclose(fd); return false; } IsPem8Format = true; } else if (IsPem1File) { /* If PEM1, Skip first 32 bytes */ fseek(fd, PEM_1_PREFIX_LENGTH + 1, SEEK_SET); inputSize = fileSize - 63; // suffix is 31 bytes outputBuffer.resize(inputSize); // Read if (fread(&outputBuffer[0], 1, inputSize, fd) != inputSize) { fclose(fd); return false; } } fclose(fd); return true; } mstflint-4.26.0/mft_utils/hsmclient/inc/0000755000175000017500000000000014522641732020450 5ustar tzafrirctzafrircmstflint-4.26.0/mft_utils/hsmclient/inc/sfnt_ext_typedef_members.h0000644000175000017500000022152714522641732025716 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* WARNING: This is a generated file. Do not edit.*/ typedef CK_RV CK_ENTRY(CK_PTR CK_CA_WaitForSlotEvent)(CK_FLAGS flags, CK_ULONG* history, CK_SLOT_ID_PTR pSlot, CK_VOID_PTR pReserved); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitIndirectToken)(CK_SLOT_ID slotID, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_CHAR_PTR pLabel, CK_SESSION_HANDLE hPrimarySession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitIndirectPIN)(CK_SESSION_HANDLE hSession, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_SESSION_HANDLE hPrimarySession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ResetPIN)(CK_SESSION_HANDLE hSession, CK_CHAR_PTR pPin, CK_ULONG usPinLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitRolePIN)(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_CHAR_PTR pPin, CK_ULONG usPinLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitSlotRolePIN)(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_USER_TYPE userType, CK_CHAR_PTR pPin, CK_ULONG usPinLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_RoleStateGet)(CK_SLOT_ID slotID, CK_USER_TYPE userType, CA_ROLE_STATE* pRoleState); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CreateLoginChallenge)(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_ULONG ulChallengeDataSize, CK_CHAR_PTR pChallengeData, CK_ULONG_PTR ulOutputDataSize, CK_CHAR_PTR pOutputData); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CreateContainerLoginChallenge)(CK_SESSION_HANDLE hSession, CK_SLOT_ID targetSlotID, CK_USER_TYPE userType, CK_ULONG ulChallengeDataSize, CK_CHAR_PTR pChallengeData, CK_ULONG_PTR ulOutputDataSize, CK_CHAR_PTR pOutputData); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Deactivate)(CK_SLOT_ID slotId, CK_USER_TYPE userType); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FindAdminSlotForSlot)(CK_SLOT_ID inputSlot, CK_SLOT_ID* pSlotId, CK_SLOT_ID* pPrevSlotId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TokenInsert)(CK_SESSION_HANDLE hSession, const CT_TokenHndle token, CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TokenInsertNoAuth)(const CT_TokenHndle token, CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TokenZeroize)(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_FLAGS flags); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TokenDelete)(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetFirmwareVersion)(CK_SLOT_ID slotID, CK_ULONG_PTR fwMajor, CK_ULONG_PTR fwMinor, CK_ULONG_PTR fwSubminor); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_OpenSession)(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_FLAGS flags, CK_VOID_PTR pApplication, CK_NOTIFY Notify, CK_SESSION_HANDLE_PTR phSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_OpenSessionWithAppID)(CK_SLOT_ID slotID, CK_FLAGS flags, CK_ULONG ulHigh, CK_ULONG ulLow, CK_VOID_PTR pApplication, CK_NOTIFY Notify, CK_SESSION_HANDLE_PTR phSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_IndirectLogin)(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_SESSION_HANDLE hPrimarySession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitializeRemotePEDVector)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DeleteRemotePEDVector)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetRemotePEDVectorStatus)(CK_SLOT_ID slotID, CK_ULONG_PTR pulStatus); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ConfigureRemotePED)(CK_SLOT_ID slotId, CK_CHAR_PTR pHostName, CK_ULONG ulPort, CK_ULONG_PTR pulPedId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DismantleRemotePED)(CK_SLOT_ID slotId, CK_ULONG ulPedId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Restart)(CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_RestartForContainer)(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloseApplicationID)(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloseApplicationIDForContainer)(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow, CK_ULONG ulContainerNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_OpenApplicationID)(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_OpenApplicationIDForContainer)(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow, CK_ULONG ulContainerNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetApplicationID)(CK_ULONG ulHigh, CK_ULONG ulLow); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ManualKCV)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetLKCV)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pLegacyCloningDomainString, CK_ULONG ulLegacyCloningDomainStringLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetKCV)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pCloningDomainString, CK_ULONG ulCloningDomainStringLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetRDK)(CK_SESSION_HANDLE hSession, const CK_BYTE* pCloningDomainString, CK_ULONG ulCloningDomainStringLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetCloningDomain)(CK_BYTE_PTR pCloningDomainString, CK_ULONG ulCloningDomainStringLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ClonePrivateKey)(CK_SESSION_HANDLE hTargetSession, CK_SESSION_HANDLE hSourceSession, CK_OBJECT_HANDLE hObjectToCloneHandle, CK_OBJECT_HANDLE_PTR phClonedKey); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneObject)(CK_SESSION_HANDLE hTargetSession, CK_SESSION_HANDLE hSourceSession, CK_ULONG ulObjectType, CK_OBJECT_HANDLE hObjectHandle, CK_OBJECT_HANDLE_PTR phClonedObject); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GenerateCloningKEV)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pKEV, CK_ULONG_PTR pulKEVSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneAsTargetInit)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pTWC, CK_ULONG ulTWCSize, CK_BYTE_PTR pKEV, CK_ULONG ulKEVSize, CK_BBOOL bReplicate, CK_BYTE_PTR pPart1, CK_ULONG_PTR pulPart1Size); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneAsSource)(CK_SESSION_HANDLE hSession, CK_ULONG hType, CK_ULONG hHandle, CK_BYTE_PTR pPart1, CK_ULONG ulPart1Size, CK_BBOOL bReplicate, CK_BYTE_PTR pPart2, CK_ULONG_PTR pulPart2Size); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneAsTarget)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pKEV, CK_ULONG ulKEVSize, CK_BYTE_PTR pPart2, CK_ULONG ulPart2Size, CK_ULONG hType, CK_ULONG hHandle, CK_BBOOL bReplicate, CK_OBJECT_HANDLE_PTR phClonedHandle); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetMofN)(CK_BBOOL bFlag); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GenerateMofN)(CK_SESSION_HANDLE hSession, CK_ULONG ulM, CA_MOFN_GENERATION_PTR pVectors, CK_ULONG ulVectorCount, CK_ULONG isSecurePortUsed, CK_VOID_PTR pReserved); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GenerateCloneableMofN)(CK_SESSION_HANDLE hSession, CK_ULONG ulM, CA_MOFN_GENERATION_PTR pVectors, CK_ULONG ulVectorCount, CK_ULONG isSecurePortUsed, CK_VOID_PTR pReserved); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ModifyMofN)(CK_SESSION_HANDLE hSession, CK_ULONG ulM, CA_MOFN_GENERATION_PTR pVectors, CK_ULONG ulVectorCount, CK_ULONG isSecurePortUsed, CK_VOID_PTR pReserved); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneMofN)(CK_SESSION_HANDLE hSession, CK_SESSION_HANDLE hPrimarySession, CK_VOID_PTR pReserved); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneModifyMofN)(CK_SESSION_HANDLE hSession, CK_SESSION_HANDLE hPrimarySession, CK_VOID_PTR pReserved); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ActivateMofN)(CK_SESSION_HANDLE hSession, CA_MOFN_ACTIVATION_PTR pVectors, CK_ULONG ulVectorCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DeactivateMofN)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetMofNStatus)(CK_SLOT_ID slotID, CA_MOFN_STATUS_PTR pMofNStatus); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DuplicateMofN)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_IsMofNEnabled)(CK_SLOT_ID slotID, CK_ULONG_PTR enabled); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_IsMofNRequired)(CK_SLOT_ID slotID, CK_ULONG_PTR required); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GenerateTokenKeys)(CK_SESSION_HANDLE hSession, CK_ATTRIBUTE_PTR pTemplate, CK_ULONG usTemplateLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GenerateTWK)(CK_SLOT_ID slotID, CK_SESSION_HANDLE hSession, CK_ULONG ulKeyType, CK_ULONG ulExpSize, CK_BYTE_PTR pExponent, CK_ULONG ulModulusBitSize, CK_ULONG_PTR pulModSize, CK_BYTE_PTR pModulus); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenCertificateInfo)(CK_SLOT_ID slotID, CK_ULONG ulAccessLevel, CK_BYTE_PTR pCertificate, CK_ULONG_PTR pulCertificateLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetTokenCertificateSignature)(CK_SESSION_HANDLE hSession, CK_ULONG ulAccessLevel, CK_ULONG ulCustomerId, CK_ATTRIBUTE_PTR pPublicTemplate, CK_ULONG usPublicTemplateLen, CK_BYTE_PTR pSignature, CK_ULONG ulSignatureLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetModuleList)(CK_SLOT_ID slotId, CKCA_MODULE_ID_PTR pList, CK_ULONG ulListLen, CK_ULONG_PTR pulReturnedSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetModuleInfo)(CK_SLOT_ID slotId, CKCA_MODULE_ID moduleId, CKCA_MODULE_INFO_PTR pInfo); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LoadModule)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pModuleCode, CK_ULONG ulModuleCodeSize, CK_BYTE_PTR pModuleSignature, CK_ULONG ulModuleSignatureSize, CK_BYTE_PTR pCertificate, CK_ULONG ulCertificateSize, CK_BYTE_PTR pControlData, CK_ULONG ulControlDataSize, CKCA_MODULE_ID_PTR pModuleId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LoadEncryptedModule)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hKey, CK_BYTE_PTR pIv, CK_ULONG ulIvLen, CK_BYTE_PTR pModuleCode, CK_ULONG ulModuleCodeSize, CK_BYTE_PTR pModuleSignature, CK_ULONG ulModuleSignatureSize, CK_BYTE_PTR pCertificate, CK_ULONG ulCertificateSize, CKCA_MODULE_ID_PTR pModuleId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_UnloadModule)(CK_SESSION_HANDLE hSession, CKCA_MODULE_ID moduleId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_PerformModuleCall)(CK_SESSION_HANDLE hSession, CKCA_MODULE_ID moduleId, CK_BYTE_PTR pRequest, CK_ULONG ulRequestSize, CK_BYTE_PTR pAnswer, CK_ULONG ulAnswerSize, CK_ULONG_PTR pulAnswerAvailable); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FirmwareUpdate)(CK_SESSION_HANDLE hSession, CK_ULONG ulTargetHardwarePlatform, CK_ULONG ulAuthCodeLen, CK_BYTE_PTR pAuthCode, CK_ULONG ulManifestLen, CK_BYTE_PTR pManifest, CK_ULONG ulFirmwareLen, CK_BYTE_PTR pFirmware); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FirmwareRollback)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CapabilityUpdate)(CK_SESSION_HANDLE hSession, CK_ULONG ulManifestLen, CK_BYTE_PTR pManifest, CK_ULONG ulAuthcodeLen, CK_BYTE_PTR pAuthcode); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetUserContainerNumber)(CK_SLOT_ID slotID, CK_ULONG_PTR pulContainerNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetUserContainerName)(CK_SLOT_ID slotID, CK_BYTE_PTR pName, CK_ULONG_PTR pulNameLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetUserContainerName)(CK_SLOT_ID slotID, CK_BYTE_PTR pName, CK_ULONG ulNameLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenInsertionCount)(CK_SLOT_ID slotID, CK_ULONG_PTR pulCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetRollbackFirmwareVersion)(CK_SLOT_ID slotID, CK_ULONG_PTR pulVersion); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetFPV)(CK_SLOT_ID slotID, CK_ULONG_PTR pulFpv); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTPV)(CK_SLOT_ID slotID, CK_ULONG_PTR pulTpv); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetExtendedTPV)(CK_SLOT_ID slotID, CK_ULONG_PTR pulTpv, CK_ULONG_PTR pulTpvExt); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetConfigurationElementDescription)(CK_SLOT_ID slotID, CK_ULONG ulIsContainerElement, CK_ULONG ulIsCapabilityElement, CK_ULONG ulElementId, CK_ULONG_PTR pulElementBitLength, CK_ULONG_PTR pulElementDestructive, CK_ULONG_PTR pulElementWriteRestricted, CK_CHAR_PTR pDescription, CK_ULONG_PTR pDesBufSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHSMCapabilitySet)(CK_SLOT_ID uPhysicalSlot, CK_ULONG_PTR pulCapIdArray, CK_ULONG_PTR pulCapIdSize, CK_ULONG_PTR pulCapValArray, CK_ULONG_PTR pulCapValSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHSMCapabilitySetting)(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHSMPolicySet)(CK_SLOT_ID uPhysicalSlot, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyIdSize, CK_ULONG_PTR pulPolicyValArray, CK_ULONG_PTR pulPolicyValSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHSMPolicySetting)(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerCapabilitySet)(CK_SLOT_ID uPhysicalSlot, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulCapIdArray, CK_ULONG_PTR pulCapIdSize, CK_ULONG_PTR pulCapValArray, CK_ULONG_PTR pulCapValSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerCapabilitySetting)(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerPolicySet)(CK_SLOT_ID uPhysicalSlot, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyIdSize, CK_ULONG_PTR pulPolicyValArray, CK_ULONG_PTR pulPolicyValSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerPolicySetting)(CK_SLOT_ID uPhysicalSlot, CK_ULONG ulContainerNumber, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetPartitionPolicyTemplate)(CK_SLOT_ID uPhysicalSlot, CK_ULONG_PTR pulVersion, CK_ULONG_PTR pulBufSize, CK_BYTE_PTR pbBuf); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetTPV)(CK_SESSION_HANDLE hSession, CK_ULONG ulTpv); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetExtendedTPV)(CK_SESSION_HANDLE hSession, CK_ULONG ulTpv, CK_ULONG ulTpvExt); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetHSMPolicy)(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyId, CK_ULONG ulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetHSMPolicies)(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetDestructiveHSMPolicy)(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyId, CK_ULONG ulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetDestructiveHSMPolicies)(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetContainerPolicy)(CK_SESSION_HANDLE hSession, CK_ULONG ulContainer, CK_ULONG ulPolicyId, CK_ULONG ulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetContainerPolicies)(CK_SESSION_HANDLE hSession, CK_ULONG ulContainer, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenCapabilities)(CK_SLOT_ID ulSlotID, CK_ULONG_PTR pulCapIdArray, CK_ULONG_PTR pulCapIdSize, CK_ULONG_PTR pulCapValArray, CK_ULONG_PTR pulCapValSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetTokenPolicies)(CK_SESSION_HANDLE hSession, CK_SLOT_ID ulSlotID, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenPolicies)(CK_SLOT_ID ulSlotID, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyIdSize, CK_ULONG_PTR pulPolicyValArray, CK_ULONG_PTR pulPolicyValSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_RetrieveLicenseList)(CK_SLOT_ID slotID, CK_ULONG_PTR pulidArraySize, CK_ULONG_PTR pulidArray); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_QueryLicense)(CK_SLOT_ID slotID, CK_ULONG licenseIdLow, CK_ULONG licenseIdHigh, CK_ULONG_PTR pulLicenseType, CK_ULONG_PTR pulDescVersion, CK_ULONG_PTR pulDescSize, CK_BYTE_PTR pbDescBuffer); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerStatus)(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulContainerStatusFlags, CK_ULONG_PTR pulFailedSOLogins, CK_ULONG_PTR pulFailedUserLogins, CK_ULONG_PTR pulFailedLimitedUserLogins); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenStatus)(CK_SLOT_ID slotID, CK_ULONG_PTR pulStatusFlags, CK_ULONG_PTR pulCurSessionCnt, CK_ULONG_PTR pulCurRdWrSessionCnt); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetSessionInfo)(CK_SESSION_HANDLE hSession, CK_ULONG_PTR pulAidHigh, CK_ULONG_PTR pulAidLow, CK_ULONG_PTR pulContainerNumber, CK_ULONG_PTR pulAuthenticationLevel); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ReadCommonStore)(CK_ULONG index, CK_BYTE_PTR pBuffer, CK_ULONG_PTR pulBufferSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_WriteCommonStore)(CK_ULONG index, CK_BYTE_PTR pBuffer, CK_ULONG ulBufferSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetPrimarySlot)(CK_SESSION_HANDLE hSession, CK_SLOT_ID_PTR slotId_p); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetSecondarySlot)(CK_SESSION_HANDLE hSession, CK_SLOT_ID_PTR slotId_p); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SwitchSecondarySlot)(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_ULONG slotInstance); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloseSecondarySession)(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_ULONG slotInstance); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloseAllSecondarySessions)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ChoosePrimarySlot)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ChooseSecondarySlot)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneObjectToAllSessions)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hObject); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloneAllObjectsToSession)(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ResetDevice)(CK_SLOT_ID slotId, CK_FLAGS flags); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Zeroize)(CK_SLOT_ID slotId, CK_FLAGS flags); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FactoryReset)(CK_SLOT_ID slotId, CK_FLAGS flags); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetPedId)(CK_SLOT_ID slotId, CK_ULONG usPedId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetPedId)(CK_SLOT_ID slotId, CK_ULONG* usPedId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SpRawRead)(CK_SLOT_ID slotId, CK_ULONG_PTR data); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SpRawWrite)(CK_SLOT_ID slotId, CK_ULONG_PTR data); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CheckOperationState)(CK_SESSION_HANDLE hSession, CK_ULONG operation, CK_BBOOL* pactive); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DestroyMultipleObjects)(CK_SESSION_HANDLE hSession, CK_ULONG ulHandleCount, CK_OBJECT_HANDLE_PTR pHandleList, CK_ULONG_PTR pulIndex); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_OpenSecureToken)(CK_SESSION_HANDLE hSession, CK_ULONG storagePath, CK_ULONG devID, CK_ULONG mode, CK_ULONG pedId, CK_ULONG_PTR numberOfElems, CK_ULONG_PTR phID, CK_ULONG ParNameLength, CK_CHAR_PTR pPartitionName); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CloseSecureToken)(CK_SESSION_HANDLE hSession, CK_ULONG hID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ListSecureTokenInit)(CK_SESSION_HANDLE hSession, CK_ULONG hID, CK_ULONG PartNameSize, CK_ULONG_PTR numElements, CK_ULONG_PTR filenameLen, CK_BYTE_PTR pPartName); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ListSecureTokenUpdate)(CK_SESSION_HANDLE hSession, CK_ULONG hID, CK_ULONG index, CK_BYTE_PTR pData, CK_ULONG dataLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetSecureElementMeta)(CK_SESSION_HANDLE hSession, CK_ULONG hID, CK_MECHANISM_PTR pMechanism, CK_ULONG_PTR pObjClass, CK_ULONG_PTR pKeyType, CK_BYTE_PTR pLabel, CK_ULONG ulLabelLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Bip32ExportPublicKey)(CK_SESSION_HANDLE hSession, CK_ULONG ulObjectHandle, CK_BYTE_PTR pPublicSerialData, CK_ULONG_PTR pulPublicSerialLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Bip32ImportPublicKey)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pBase58Key, CK_ULONG usKeyLen, CK_ATTRIBUTE_PTR pTemplate, CK_ULONG usCount, CK_OBJECT_HANDLE_PTR phImportedObject); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HAInit)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hLoginPrivateKey); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HAGetMasterPublic)(CK_SLOT_ID slotId, CK_BYTE_PTR pCertificate, CK_ULONG_PTR pulCertificate); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HAGetLoginChallenge)(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_BYTE_PTR pCertificate, CK_ULONG ulCertificateLen, CK_BYTE_PTR pChallengeBlob, CK_ULONG_PTR pulChallengeBlobLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HAAnswerLoginChallenge)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hLoginPrivateKey, CK_BYTE_PTR pChallengeBlob, CK_ULONG ulChallengeBlobLen, CK_BYTE_PTR pEncryptedPin, CK_ULONG_PTR pulEncryptedPinLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HALogin)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pEncryptedPin, CK_ULONG ulEncryptedPinLen, CK_BYTE_PTR pMofNBlob, CK_ULONG_PTR pulMofNBlobLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HAAnswerMofNChallenge)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pMofNBlob, CK_ULONG ulMofNBlobLen, CK_BYTE_PTR pMofNSecretBlob, CK_ULONG_PTR pulMofNSecretBlobLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_HAActivateMofN)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pMofNSecretBlob, CK_ULONG ulMofNSecretBlobLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHAState)(CK_SLOT_ID slotId, CK_HA_STATE_PTR pState); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenCertificates)(CK_SLOT_ID slotID, CK_ULONG ulCertType, CK_BYTE_PTR pCertificate, CK_ULONG_PTR pulCertificateLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ExtractMaskedObject)(CK_SESSION_HANDLE hSession, CK_ULONG ulObjectHandle, CK_BYTE_PTR pMaskedKey, CK_ULONG_PTR pusMaskedKeyLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InsertMaskedObject)(CK_SESSION_HANDLE hSession, CK_ULONG_PTR pulObjectHandle, CK_BYTE_PTR pMaskedKey, CK_ULONG usMaskedKeyLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MultisignValue)(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, CK_ULONG ulMaskedKeyLen, CK_BYTE_PTR pMaskedKey, CK_ULONG_PTR pulBlobCount, CK_ULONG_PTR pulBlobLens, CK_BYTE_PTR CK_PTR ppBlobs, CK_ULONG_PTR pulSignatureLens, CK_BYTE_PTR CK_PTR ppSignatures); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SIMExtract)(CK_SESSION_HANDLE hSession, CK_ULONG ulHandleCount, CK_OBJECT_HANDLE_PTR pHandleList, CK_ULONG ulAuthSecretCount, CK_ULONG ulAuthSubsetCount, CKA_SIM_AUTH_FORM authForm, CK_ULONG_PTR pulAuthSecretSizes, CK_BYTE_PTR* ppbAuthSecretList, CK_BBOOL deleteAfterExtract, CK_ULONG_PTR pulBlobSize, CK_BYTE_PTR pBlob); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SIMInsert)(CK_SESSION_HANDLE hSession, CK_ULONG ulAuthSecretCount, CKA_SIM_AUTH_FORM authForm, CK_ULONG_PTR pulAuthSecretSizes, CK_BYTE_PTR* ppbAuthSecretList, CK_ULONG ulBlobSize, CK_BYTE_PTR pBlob, CK_ULONG_PTR pulHandleCount, CK_OBJECT_HANDLE_PTR pHandleList); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SIMMultiSign)(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, CK_ULONG ulAuthSecretCount, CKA_SIM_AUTH_FORM authForm, CK_ULONG_PTR pulAuthSecretSizes, CK_BYTE_PTR* ppbAuthSecretList, CK_ULONG ulBlobSize, CK_BYTE_PTR pBlob, CK_ULONG ulInputDataCount, CK_ULONG_PTR pulInputDataLengths, CK_BYTE_PTR* ppbInputDataList, CK_ULONG_PTR pulSignatureLengths, CK_BYTE_PTR* ppbSignatureList); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Extract)(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Insert)(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenObjectUID)(CK_SLOT_ID slotID, CK_ULONG ulObjectType, CK_ULONG ulObjectHandle, CK_BYTE* ouid); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenObjectHandle)(CK_SLOT_ID slotID, CK_BYTE* ouid, CK_ULONG_PTR pulObjectType, CK_ULONG_PTR pulObjectHandle); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetObjectUID)(CK_SLOT_ID slotID, CK_ULONG ulContainerNum, CK_ULONG ulObjectType, CK_ULONG ulObjectHandle, CK_BYTE* ouid); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetObjectHandle)(CK_SLOT_ID slotID, CK_ULONG ulContainerNum, CK_BYTE* ouid, CK_ULONG_PTR pulObjectType, CK_ULONG_PTR pulObjectHandle); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DeleteContainer)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MTKSetStorage)(CK_SESSION_HANDLE ulSessionNumber, CK_ULONG ulStorageSetting); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MTKRestore)(CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MTKResplit)(CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MTKZeroize)(CK_SLOT_ID slotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MTKGetState)(CK_SLOT_ID slotID, CK_ULONG_PTR state); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TamperClear)(CK_SESSION_HANDLE ulSessionNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STMToggle)(CK_SESSION_HANDLE ulSessionNumber, CK_ULONG ulValue, CK_ULONG ulInputDataSize, CK_CHAR_PTR pInputData, CK_ULONG_PTR pulOutputDataSize, CK_CHAR_PTR pOutputData); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STMGetState)(CK_SLOT_ID slotID, CK_ULONG_PTR state); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTSV)(CK_SLOT_ID slotID, CK_ULONG_PTR pTSV); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InvokeServiceInit)(CK_SESSION_HANDLE hSession, CK_ULONG ulPortNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InvokeService)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pBufferIn, CK_ULONG ulBufferInLength, CK_ULONG_PTR pulBufferOutLength); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InvokeServiceFinal)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pBufferOut, CK_ULONG_PTR pulBufferOutLength); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InvokeServiceAsynch)(CK_SESSION_HANDLE hSession, CK_ULONG ulPortNumber, CK_BYTE_PTR pBufferIn, CK_ULONG ulBufferInLength); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InvokeServiceSinglePart)(CK_SESSION_HANDLE hSession, CK_ULONG ulPortNumber, CK_BYTE_PTR pBufferIn, CK_ULONG ulBufferInLength, CK_BYTE_PTR pBufferOut, CK_ULONG_PTR pulBufferOutLength); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_EncodeECPrimeParams)(CK_BYTE_PTR DerECParams, CK_ULONG_PTR DerECParamsLen, CK_BYTE_PTR prime, CK_ULONG primelen, CK_BYTE_PTR a, CK_ULONG alen, CK_BYTE_PTR b, CK_ULONG blen, CK_BYTE_PTR seed, CK_ULONG seedlen, CK_BYTE_PTR x, CK_ULONG xlen, CK_BYTE_PTR y, CK_ULONG ylen, CK_BYTE_PTR order, CK_ULONG orderlen, CK_BYTE_PTR cofactor, CK_ULONG cofactorlen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_EncodeECChar2Params)(CK_BYTE_PTR DerECParams, CK_ULONG_PTR DerECParamsLen, CK_ULONG m, CK_ULONG k1, CK_ULONG k2, CK_ULONG k3, CK_BYTE_PTR a, CK_ULONG alen, CK_BYTE_PTR b, CK_ULONG blen, CK_BYTE_PTR seed, CK_ULONG seedlen, CK_BYTE_PTR x, CK_ULONG xlen, CK_BYTE_PTR y, CK_ULONG ylen, CK_BYTE_PTR order, CK_ULONG orderlen, CK_BYTE_PTR cofactor, CK_ULONG cofactorlen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_EncodeECParamsFromFile)(CK_BYTE_PTR DerECParams, CK_ULONG_PTR DerECParamsLen, CK_BYTE_PTR paramsFile); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHSMStats)(CK_SLOT_ID slotID, CK_ULONG ulStatsIdsCount, CK_ULONG_PTR pStatsIds, HSM_STATS_PARAMS* pStatsParams); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetHSMStorageInformation)(CK_SLOT_ID slotID, CK_ULONG_PTR pulContainerOverhead, CK_ULONG_PTR pulTotal, CK_ULONG_PTR pulUsed, CK_ULONG_PTR pulFree); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTokenStorageInformation)(CK_SLOT_ID slotID, CK_ULONG_PTR pulContainerOverhead, CK_ULONG_PTR pulTotal, CK_ULONG_PTR pulUsed, CK_ULONG_PTR pulFree, CK_ULONG_PTR pulObjectCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerStorageInformation)(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulContainerOverhead, CK_ULONG_PTR pulTotal, CK_ULONG_PTR pulUsed, CK_ULONG_PTR pulFree, CK_ULONG_PTR pulObjectCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_SetContainerSize)(CK_SESSION_HANDLE hSession, CK_ULONG ulContainerNumber, CK_ULONG ulSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CreateContainerWithPolicy)(CK_SESSION_HANDLE hSession, CK_ULONG ulUSV, CK_CHAR_PTR pContainerName, CK_ULONG usContainerNameLen, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_ULONG ulIDHigh, CK_ULONG ulIDLow, CK_ULONG ulOwnerHandle, CK_ULONG ulStorageFlags, CK_ULONG ulContainerSize, CK_ULONG_PTR pulContainerNumber, CK_ULONG policyVersion, CK_ULONG policySize, CK_BYTE_PTR pPolicyBuf); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_CreateContainer)(CK_SESSION_HANDLE hSession, CK_ULONG ulUSV, CK_CHAR_PTR pContainerName, CK_ULONG usContainerNameLen, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_ULONG ulIDHigh, CK_ULONG ulIDLow, CK_ULONG ulOwnerHandle, CK_ULONG ulStorageFlags, CK_ULONG ulContainerSize, CK_ULONG_PTR pulContainerNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitAudit)(CK_SLOT_ID slotID, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_CHAR_PTR pLabel); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogVerify)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pLogMsgs, CK_ULONG ulMsgCount, CK_ULONG bChainToHSM, CK_ULONG_PTR pulNumVerified); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogVerifyFile)(CK_SESSION_HANDLE hSession, CK_CHAR_PTR pFileName, CK_ULONG_PTR ulNumVerified); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogExternal)(CK_SLOT_ID slotID, CK_SESSION_HANDLE hSession, const CK_CHAR* pStr, CK_ULONG ulLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogImportSecret)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pStr, CK_ULONG strSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogExportSecret)(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pStr, CK_ULONG_PTR pStrSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TimeSync)(CK_SESSION_HANDLE hSession, CK_ULONG ulTime); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTime)(CK_SESSION_HANDLE hSession, CK_ULONG_PTR pulTime); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogSetConfig)(CK_SESSION_HANDLE hSession, CK_ULONG mask, CK_ULONG logRotateOffset, CK_ULONG logRotateInterval, CK_ULONG maxLogSize, CK_BYTE_PTR pLogPath); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogGetConfig)(CK_SESSION_HANDLE hSession, CK_ULONG* mask, CK_ULONG* logRotateOffset, CK_ULONG* logRotateInterval, CK_ULONG* maxLogSize, CK_BYTE_PTR pLogPath); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ReplaceFastPathKEK)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LogGetStatus)(CK_SLOT_ID slotId, CK_ULONG* auditInitStatus, CK_ULONG* lastPollResult, CK_ULONG* lastSetConfigResult, CK_ULONG* isConfigInParamArea, CK_ULONG* numRecordsInFlash); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DeleteContainerWithHandle)(CK_SESSION_HANDLE hSession, CK_ULONG ulContainerNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerList)(CK_SLOT_ID slotID, CK_ULONG ulGroupHandle, CK_ULONG ulContainerType, CK_ULONG_PTR pulContainerHandles, CK_ULONG_PTR pulNumberOfHandles); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetContainerName)(CK_SLOT_ID slotID, CK_ULONG ulContainerHandle, CK_BYTE_PTR pContainerName, CK_ULONG_PTR pulContainerNameLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetNumberOfAllowedContainers)(CK_SLOT_ID slot, CK_ULONG_PTR pulAllowedContainers); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetTunnelSlotNumber)(CK_SLOT_ID slotID, CK_SLOT_ID_PTR pTunnelSlotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetClusterState)(CK_SLOT_ID slotId, CK_CLUSTER_STATE_PTR pState); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_LockClusteredSlot)(CK_SLOT_ID slotId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_UnlockClusteredSlot)(CK_SLOT_ID slotId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ModifyUsageCount)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hObject, CK_ULONG ulCommandType, CK_ULONG ulValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_EnableUnauthTokenInsertion)(CK_SESSION_HANDLE hSession, CK_ULONG ulMaxUsageCount, CK_ULONG_PTR ulContextHandle); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetUnauthTokenInsertionStatus)(CK_SESSION_HANDLE hSession, CK_ULONG ulContextHandle, CK_ULONG* pulMaxUsageCount, CK_ULONG* pulCurUsageCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DisableUnauthTokenInsertion)(CK_SESSION_HANDLE hSession, CK_ULONG ulContextHandle); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCRegister)(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, const CK_CHAR* username, CK_ULONG access, const CK_CHAR* pmod, CK_ULONG mod_len, const CK_CHAR* pexp, CK_ULONG exp_len); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCDeregister)(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetslotID, const CK_CHAR* username); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetPubKey)(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, const CK_CHAR* username, CK_CHAR* pmod, CK_ULONG_PTR mod_len, CK_CHAR* pexp, CK_ULONG_PTR exp_len); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetClientsList)(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, CK_ULONG_PTR pulCIDArray, CK_ULONG_PTR pulCIDArraySize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetClientInfo)(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, CK_ULONG ulHandke, CK_CHAR* username, CK_ULONG_PTR name_len, CK_ULONG_PTR access, CK_CHAR* mod, CK_ULONG_PTR mod_len, CK_CHAR* exp, CK_ULONG_PTR exp_len); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetPartPubKey)(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, CK_CHAR* mod, CK_ULONG_PTR modSize, CK_CHAR* exp, CK_ULONG_PTR expSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetAdminPubKey)(CK_SLOT_ID slotId, CK_CHAR* mod, CK_ULONG_PTR modSize, CK_CHAR* exp, CK_ULONG_PTR expSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCSetCipherAlgorithm)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG CipherID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetCipherAlgorithm)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_BYTE_PTR pIDCount, CK_ULONG_PTR pIDs); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCClearCipherAlgorithm)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG CipherID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCSetDigestAlgorithm)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG DigestID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetDigestAlgorithm)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_BYTE_PTR pIDCount, CK_ULONG_PTR pIDs); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCClearDigestAlgorithm)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG DigestID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCSetKeyLifeTime)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG lifeTime); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetKeyLifeTime)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR plifeTime); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCSetKeyActivationTimeOut)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG timeOut); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetKeyActivationTimeOut)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR ptimeOut); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCSetMaxSessions)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG maxSessions); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetMaxSessions)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR pmaxSessions); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCSetSequenceWindowSize)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG windowSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetSequenceWindowSize)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR pwindowSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCIsEnabled)(CK_ULONG TargetSlotID, CK_BYTE_PTR pbenabled); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetState)(CK_ULONG TargetSlotID, CK_CHAR* str, CK_BYTE bbufferSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetCurrentKeyLife)(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR pcurKeyLife); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetSlotIdForPhysicalSlot)(CK_ULONG physicalSlot, CK_SLOT_ID_PTR pSlotId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetSlotIdForContainer)(CK_ULONG slotID, CK_ULONG ulContainerNumber, CK_SLOT_ID_PTR pSlotID); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetChannelID)(CK_SLOT_ID slotId, CK_ULONG_PTR ulChannelId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetCipherID)(CK_SLOT_ID slotId, CK_ULONG_PTR ulCipherId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetDigestID)(CK_SLOT_ID slotId, CK_ULONG_PTR ulDigestId); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetCipherIDs)(CK_SLOT_ID slotID, CK_ULONG_PTR pulArray, CK_BYTE_PTR pbArraySize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetCipherNameByID)(CK_SLOT_ID slotID, CK_ULONG ulCipherID, CK_CHAR_PTR pszName, CK_BYTE bNameBufSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetDigestIDs)(CK_SLOT_ID slotID, CK_ULONG_PTR pulArray, CK_BYTE_PTR pbArraySize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_STCGetDigestNameByID)(CK_SLOT_ID slotID, CK_ULONG ulDigestID, CK_CHAR_PTR pszName, CK_BYTE bNameBufSize); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetServerInstanceBySlotID)(CK_SLOT_ID slotID, CK_ULONG_PTR pulInstanceNumber); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetSlotListFromServerInstance)(CK_ULONG instanceNumber, CK_SLOT_ID_PTR slotList, CK_ULONG_PTR pulCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ChangeLabel)(CK_SESSION_HANDLE hSession, CK_SLOT_ID ulSlotID, CK_CHAR_PTR pulLabel, CK_ULONG ulLabelLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_PerformSelfTest)(CK_SLOT_ID slotID, CK_ULONG typeOfTest, CK_BYTE_PTR inputData, CK_ULONG sizeOfInputData, CK_BYTE_PTR outputData, CK_ULONG_PTR sizeOfOutputData); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FMDownload)(CK_SESSION_HANDLE hTokenSession, CK_OBJECT_HANDLE hObject, CK_ULONG ulParamLen, CK_BYTE_PTR pParam, CK_ULONG ulImageLen, CK_BYTE_PTR pImage, CK_ULONG ulSignatureLen, CK_BYTE_PTR pSignature); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FMDelete)(CK_SESSION_HANDLE hTokenSession, CK_ULONG fmid); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_FMActivateSMFS)(CK_SESSION_HANDLE hTokenSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetActualSlotList)(CK_SLOT_ID slotId, CK_ULONG_PTR phsmidx, CK_SLOT_ID_PTR pActualslotID, CK_ULONG_PTR pulCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DeriveKeyAndWrap)(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanismDerive, CK_OBJECT_HANDLE hBaseKey, CK_ATTRIBUTE_PTR pTemplate, CK_ULONG ulAttributeCount, CK_MECHANISM_PTR pMechanismWrap, CK_OBJECT_HANDLE hWrappingKey, CK_BYTE_PTR pWrappedKey, CK_ULONG_PTR pulWrappedKeyLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_MdPriv_Initialize)(void* pMdPrivIf, unsigned int len, void* pLogIf); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Get)(CK_SLOT_ID slotID, CK_ULONG ulItem, CK_BYTE_PTR pBuffer, CK_ULONG_PTR pulBufferLen); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_Put)(CK_SLOT_ID slotID, CK_SESSION_HANDLE hSession, CK_ULONG ulParamId, CK_ULONG ulParamSize, CK_BYTE_PTR pParamBuffer); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetDefaultPartitionPolicyValue)(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetDefaultHSMPolicyValue)(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ValidateHSMPolicySet)(CK_SLOT_ID slotId, CK_POLICY_INFO_PTR policyInfo, CK_ULONG policyCount, CK_RV_PTR policyResults); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ValidateContainerPolicySet)(CK_SLOT_ID slotId, CK_ULONG ulContainerNumber, CK_POLICY_INFO_PTR policyInfo, CK_ULONG policyCount, CK_RV_PTR policyResults); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ZeroizeContainer)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_InitToken)(CK_SLOT_ID slotID, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_CHAR_PTR pLabel, CK_BYTE_PTR pDomain, CK_ULONG ulDomainLen, CK_ULONG ulPolicyCount, CK_POLICY_INFO_PTR pPolicyData, CK_ULONG ulHSMPolicyCount, CK_POLICY_INFO_PTR pHSMPolicyData); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ReadUtilizationMetrics)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ReadAndResetUtilizationMetrics)(CK_SESSION_HANDLE hSession); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ReadAllUtilizationCounters)(CK_SESSION_HANDLE hSession, CK_UTILIZATION_COUNTER_PTR buff, CK_ULONG_PTR length); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_ReadUtilizationCount)(CK_SESSION_HANDLE hSession, CK_ULONGLONG serialNum, CK_ULONG ulBinId, CK_ULONG ulCounterId, CK_UTILIZATION_COUNT_PTR pCount); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DescribeUtilizationBinId)(CK_ULONG ulBinId, CK_CHAR_PTR CK_PTR describe); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_DescribeUtilizationCounterId)(CK_ULONG ulCounterId, CK_CHAR_PTR CK_PTR describe); typedef CK_RV CK_ENTRY(CK_PTR CK_CA_TestTrace)(CK_SLOT_ID slotID, CK_ULONG ulTypeOfTrace, CK_BYTE_PTR pInData, CK_ULONG ulInDataLength, CK_BYTE_PTR pOutData, CK_ULONG_PTR pulOutDataLength); mstflint-4.26.0/mft_utils/hsmclient/inc/hex64.h0000644000175000017500000000465414522641732021570 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef HEX_64 #define HEX_64 #include #include #include #include #include #define PEM_1_PREFIX "-----BEGIN RSA PRIVATE KEY-----" #define PEM_1_PREFIX_LENGTH strlen(PEM_1_PREFIX) #define PEM_8_PREFIX "-----BEGIN PRIVATE KEY-----" #define PEM_8_PREFIX_LENGTH strlen(PEM_8_PREFIX) class Hex64Manipulations { private: std::string base64_decode(std::string encoded_string); bool PrintHexData(const std::string& data); std::string base64_encode(unsigned char const* bytes_to_encode, unsigned int in_len); std::size_t pos_of_char(const unsigned char chr); bool ReadInputPemFile(const char* fileName, std::vector& outputBuffer, unsigned int& inputSize, bool& IsPem8Format); public: Hex64Manipulations() {} virtual ~Hex64Manipulations() {} bool ParsePemFile(std::string inputFile, std::vector& outputBuffer, bool& IsPemFile8Format); }; #endif mstflint-4.26.0/mft_utils/hsmclient/inc/sfnt_extensions.h0000644000175000017500000020327714522641732024065 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /**************************************************************************** * ALSO VERY IMPORTANT: * * This file is the source for files that are generated using a simple awk * script that is not terribly tolerant to all the possible ways functions * can be defined. * * Rules: * 0/ The function names are expected to start with CA_. * 1/ No white space before the CK_RV part of the line. * 2/ Don't use embedded comments. C++ style at the end of a line is ok. * 3/ Keep the "CK_RV CK_ENTRY CA_SomeFunc(" part on a single line. * 4/ Others will be added or removed as needed... */ CK_RV CK_ENTRY CA_GetFunctionList(CK_SFNT_CA_FUNCTION_LIST_PTR_PTR ppSfntFunctionList); CK_RV CK_ENTRY CA_WaitForSlotEvent(CK_FLAGS flags, CK_ULONG history[2], CK_SLOT_ID_PTR pSlot, CK_VOID_PTR pReserved); CK_RV CK_ENTRY CA_InitIndirectToken(CK_SLOT_ID slotID, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_CHAR_PTR pLabel, CK_SESSION_HANDLE hPrimarySession); CK_RV CK_ENTRY CA_InitIndirectPIN(CK_SESSION_HANDLE hSession, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_SESSION_HANDLE hPrimarySession); CK_RV CK_ENTRY CA_ResetPIN(CK_SESSION_HANDLE hSession, CK_CHAR_PTR pPin, CK_ULONG usPinLen); CK_RV CK_ENTRY CA_InitRolePIN(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_CHAR_PTR pPin, CK_ULONG usPinLen); CK_RV CK_ENTRY CA_InitSlotRolePIN(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_USER_TYPE userType, CK_CHAR_PTR pPin, CK_ULONG usPinLen); CK_RV CK_ENTRY CA_RoleStateGet(CK_SLOT_ID slotID, CK_USER_TYPE userType, CA_ROLE_STATE* pRoleState); CK_RV CK_ENTRY CA_CreateLoginChallenge(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_ULONG ulChallengeDataSize, CK_CHAR_PTR pChallengeData, CK_ULONG_PTR ulOutputDataSize, CK_CHAR_PTR pOutputData); CK_RV CK_ENTRY CA_CreateContainerLoginChallenge(CK_SESSION_HANDLE hSession, CK_SLOT_ID targetSlotID, CK_USER_TYPE userType, CK_ULONG ulChallengeDataSize, CK_CHAR_PTR pChallengeData, CK_ULONG_PTR ulOutputDataSize, CK_CHAR_PTR pOutputData); CK_RV CK_ENTRY CA_Deactivate(CK_SLOT_ID slotId, CK_USER_TYPE userType); CK_RV CK_ENTRY CA_FindAdminSlotForSlot(CK_SLOT_ID inputSlot, CK_SLOT_ID* pSlotId, CK_SLOT_ID* pPrevSlotId); CK_RV CK_ENTRY CA_TokenInsert(CK_SESSION_HANDLE hSession, const CT_TokenHndle token, CK_SLOT_ID slotID); CK_RV CK_ENTRY CA_TokenInsertNoAuth(const CT_TokenHndle token, CK_SLOT_ID slotID); CK_RV CK_ENTRY CA_TokenZeroize(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_FLAGS flags); CK_RV CK_ENTRY CA_TokenDelete(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID); // To support firmware version beyond 255 (minor*10 + subminor, as defined // in the firmware code) we no longer provide subminor version in PKCS11 // structures. To obtain the full version number use this function CK_RV CK_ENTRY CA_GetFirmwareVersion(CK_SLOT_ID slotID, CK_ULONG_PTR fwMajor, CK_ULONG_PTR fwMinor, CK_ULONG_PTR fwSubminor); /****************************************************************************\ * * * Session management * * * \****************************************************************************/ CK_RV CK_ENTRY CA_OpenSession(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_FLAGS flags, CK_VOID_PTR pApplication, CK_NOTIFY Notify, CK_SESSION_HANDLE_PTR phSession); CK_RV CK_ENTRY CA_OpenSessionWithAppID(CK_SLOT_ID slotID, CK_FLAGS flags, CK_ULONG ulHigh, CK_ULONG ulLow, CK_VOID_PTR pApplication, CK_NOTIFY Notify, CK_SESSION_HANDLE_PTR phSession); CK_RV CK_ENTRY CA_IndirectLogin(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_SESSION_HANDLE hPrimarySession); /****************************************************************************\ * * * Remote PED * * * \****************************************************************************/ CK_RV CK_ENTRY CA_InitializeRemotePEDVector(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_DeleteRemotePEDVector(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_GetRemotePEDVectorStatus(CK_SLOT_ID slotID, CK_ULONG_PTR pulStatus); CK_RV CK_ENTRY CA_ConfigureRemotePED(CK_SLOT_ID slotId, CK_CHAR_PTR pHostName, CK_ULONG ulPort, CK_ULONG_PTR pulPedId); CK_RV CK_ENTRY CA_DismantleRemotePED(CK_SLOT_ID slotId, CK_ULONG ulPedId); /****************************************************************************\ * * * Application access management * * * \****************************************************************************/ CK_RV CK_ENTRY CA_Restart(CK_SLOT_ID slotID); CK_RV CK_ENTRY CA_RestartForContainer(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber); CK_RV CK_ENTRY CA_CloseApplicationID(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow); CK_RV CK_ENTRY CA_CloseApplicationIDForContainer(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow, CK_ULONG ulContainerNumber); CK_RV CK_ENTRY CA_OpenApplicationID(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow); CK_RV CK_ENTRY CA_OpenApplicationIDForContainer(CK_SLOT_ID slotID, CK_ULONG ulHigh, CK_ULONG ulLow, CK_ULONG ulContainerNumber); CK_RV CK_ENTRY CA_SetApplicationID(CK_ULONG ulHigh, CK_ULONG ulLow); /****************************************************************************\ * * * Callbacks * * * \****************************************************************************/ /*CK_RV CK_ENTRY Notify(CK_SESSION_HANDLE hSession, CK_NOTIFICATION event, CK_VOID_PTR pApplication);*/ /****************************************************************************\ * * Certificate Authority * \****************************************************************************/ CK_RV CK_ENTRY CA_ManualKCV(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_SetLKCV(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pLegacyCloningDomainString, CK_ULONG ulLegacyCloningDomainStringLen); CK_RV CK_ENTRY CA_SetKCV(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pCloningDomainString, CK_ULONG ulCloningDomainStringLen); CK_RV CK_ENTRY CA_SetRDK(CK_SESSION_HANDLE hSession, const CK_BYTE* pCloningDomainString, CK_ULONG ulCloningDomainStringLen); CK_RV CK_ENTRY CA_SetCloningDomain(CK_BYTE_PTR pCloningDomainString, CK_ULONG ulCloningDomainStringLen); CK_RV CK_ENTRY CA_ClonePrivateKey(CK_SESSION_HANDLE hTargetSession, CK_SESSION_HANDLE hSourceSession, CK_OBJECT_HANDLE hObjectToCloneHandle, CK_OBJECT_HANDLE_PTR phClonedKey); CK_RV CK_ENTRY CA_CloneObject(CK_SESSION_HANDLE hTargetSession, CK_SESSION_HANDLE hSourceSession, CK_ULONG ulObjectType, CK_OBJECT_HANDLE hObjectHandle, CK_OBJECT_HANDLE_PTR phClonedObject); CK_RV CK_ENTRY CA_GenerateCloningKEV(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pKEV, CK_ULONG_PTR pulKEVSize); CK_RV CK_ENTRY CA_CloneAsTargetInit(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pTWC, CK_ULONG ulTWCSize, CK_BYTE_PTR pKEV, CK_ULONG ulKEVSize, CK_BBOOL bReplicate, CK_BYTE_PTR pPart1, CK_ULONG_PTR pulPart1Size); CK_RV CK_ENTRY CA_CloneAsSource(CK_SESSION_HANDLE hSession, CK_ULONG hType, CK_ULONG hHandle, CK_BYTE_PTR pPart1, CK_ULONG ulPart1Size, CK_BBOOL bReplicate, CK_BYTE_PTR pPart2, CK_ULONG_PTR pulPart2Size); CK_RV CK_ENTRY CA_CloneAsTarget(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pKEV, CK_ULONG ulKEVSize, CK_BYTE_PTR pPart2, CK_ULONG ulPart2Size, CK_ULONG hType, CK_ULONG hHandle, CK_BBOOL bReplicate, CK_OBJECT_HANDLE_PTR phClonedHandle); CK_RV CK_ENTRY CA_SetMofN(CK_BBOOL bFlag); CK_RV CK_ENTRY CA_GenerateMofN(CK_SESSION_HANDLE hSession, CK_ULONG ulM, CA_MOFN_GENERATION_PTR pVectors, CK_ULONG ulVectorCount, CK_ULONG isSecurePortUsed, CK_VOID_PTR pReserved); CK_RV CK_ENTRY CA_GenerateCloneableMofN(CK_SESSION_HANDLE hSession, CK_ULONG ulM, CA_MOFN_GENERATION_PTR pVectors, CK_ULONG ulVectorCount, CK_ULONG isSecurePortUsed, CK_VOID_PTR pReserved); CK_RV CK_ENTRY CA_ModifyMofN(CK_SESSION_HANDLE hSession, CK_ULONG ulM, CA_MOFN_GENERATION_PTR pVectors, CK_ULONG ulVectorCount, CK_ULONG isSecurePortUsed, CK_VOID_PTR pReserved); CK_RV CK_ENTRY CA_CloneMofN(CK_SESSION_HANDLE hSession, CK_SESSION_HANDLE hPrimarySession, CK_VOID_PTR pReserved); CK_RV CK_ENTRY CA_CloneModifyMofN(CK_SESSION_HANDLE hSession, CK_SESSION_HANDLE hPrimarySession, CK_VOID_PTR pReserved); CK_RV CK_ENTRY CA_ActivateMofN(CK_SESSION_HANDLE hSession, CA_MOFN_ACTIVATION_PTR pVectors, CK_ULONG ulVectorCount); CK_RV CK_ENTRY CA_DeactivateMofN(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_GetMofNStatus(CK_SLOT_ID slotID, CA_MOFN_STATUS_PTR pMofNStatus); CK_RV CK_ENTRY CA_DuplicateMofN(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_IsMofNEnabled(CK_SLOT_ID slotID, CK_ULONG_PTR enabled); CK_RV CK_ENTRY CA_IsMofNRequired(CK_SLOT_ID slotID, CK_ULONG_PTR required); /****************************************************************************\ * * Token Certificate Management * \****************************************************************************/ CK_RV CK_ENTRY CA_GenerateTokenKeys(CK_SESSION_HANDLE hSession, CK_ATTRIBUTE_PTR pTemplate, CK_ULONG usTemplateLen); CK_RV CK_ENTRY CA_GenerateTWK(CK_SLOT_ID slotID, CK_SESSION_HANDLE hSession, CK_ULONG ulKeyType, CK_ULONG ulExpSize, CK_BYTE_PTR pExponent, CK_ULONG ulModulusBitSize, CK_ULONG_PTR pulModSize, CK_BYTE_PTR pModulus); CK_RV CK_ENTRY CA_GetTokenCertificateInfo(CK_SLOT_ID slotID, CK_ULONG ulAccessLevel, CK_BYTE_PTR pCertificate, CK_ULONG_PTR pulCertificateLen); CK_RV CK_ENTRY CA_SetTokenCertificateSignature(CK_SESSION_HANDLE hSession, CK_ULONG ulAccessLevel, CK_ULONG ulCustomerId, CK_ATTRIBUTE_PTR pPublicTemplate, CK_ULONG usPublicTemplateLen, CK_BYTE_PTR pSignature, CK_ULONG ulSignatureLen); CK_RV CK_ENTRY CA_GetModuleList(CK_SLOT_ID slotId, CKCA_MODULE_ID_PTR pList, CK_ULONG ulListLen, CK_ULONG_PTR pulReturnedSize); CK_RV CK_ENTRY CA_GetModuleInfo(CK_SLOT_ID slotId, CKCA_MODULE_ID moduleId, CKCA_MODULE_INFO_PTR pInfo); CK_RV CK_ENTRY CA_LoadModule(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pModuleCode, CK_ULONG ulModuleCodeSize, CK_BYTE_PTR pModuleSignature, CK_ULONG ulModuleSignatureSize, CK_BYTE_PTR pCertificate, CK_ULONG ulCertificateSize, CK_BYTE_PTR pControlData, CK_ULONG ulControlDataSize, CKCA_MODULE_ID_PTR pModuleId); CK_RV CK_ENTRY CA_LoadEncryptedModule(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hKey, CK_BYTE_PTR pIv, CK_ULONG ulIvLen, CK_BYTE_PTR pModuleCode, CK_ULONG ulModuleCodeSize, CK_BYTE_PTR pModuleSignature, CK_ULONG ulModuleSignatureSize, CK_BYTE_PTR pCertificate, CK_ULONG ulCertificateSize, CKCA_MODULE_ID_PTR pModuleId); CK_RV CK_ENTRY CA_UnloadModule(CK_SESSION_HANDLE hSession, CKCA_MODULE_ID moduleId); CK_RV CK_ENTRY CA_PerformModuleCall(CK_SESSION_HANDLE hSession, CKCA_MODULE_ID moduleId, CK_BYTE_PTR pRequest, CK_ULONG ulRequestSize, CK_BYTE_PTR pAnswer, CK_ULONG ulAnswerSize, CK_ULONG_PTR pulAnswerAvailable); /****************************************************************************\ * * HSM Update * \****************************************************************************/ CK_RV CK_ENTRY CA_FirmwareUpdate(CK_SESSION_HANDLE hSession, CK_ULONG ulTargetHardwarePlatform, CK_ULONG ulAuthCodeLen, CK_BYTE_PTR pAuthCode, CK_ULONG ulManifestLen, CK_BYTE_PTR pManifest, CK_ULONG ulFirmwareLen, CK_BYTE_PTR pFirmware); CK_RV CK_ENTRY CA_FirmwareRollback(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_CapabilityUpdate(CK_SESSION_HANDLE hSession, CK_ULONG ulManifestLen, CK_BYTE_PTR pManifest, CK_ULONG ulAuthcodeLen, CK_BYTE_PTR pAuthcode); /****************************************************************************\ * * Policy bit manipulations * \****************************************************************************/ CK_RV CK_ENTRY CA_GetUserContainerNumber(CK_SLOT_ID slotID, CK_ULONG_PTR pulContainerNumber); CK_RV CK_ENTRY CA_GetUserContainerName(CK_SLOT_ID slotID, CK_BYTE_PTR pName, CK_ULONG_PTR pulNameLen); CK_RV CK_ENTRY CA_SetUserContainerName(CK_SLOT_ID slotID, CK_BYTE_PTR pName, CK_ULONG ulNameLen); CK_RV CK_ENTRY CA_GetTokenInsertionCount(CK_SLOT_ID slotID, CK_ULONG_PTR pulCount); CK_RV CK_ENTRY CA_GetRollbackFirmwareVersion(CK_SLOT_ID slotID, CK_ULONG_PTR pulVersion); CK_RV CK_ENTRY CA_GetFPV(CK_SLOT_ID slotID, CK_ULONG_PTR pulFpv); CK_RV CK_ENTRY CA_GetTPV(CK_SLOT_ID slotID, CK_ULONG_PTR pulTpv); CK_RV CK_ENTRY CA_GetExtendedTPV(CK_SLOT_ID slotID, CK_ULONG_PTR pulTpv, CK_ULONG_PTR pulTpvExt); CK_RV CK_ENTRY CA_GetConfigurationElementDescription(CK_SLOT_ID slotID, CK_ULONG ulIsContainerElement, CK_ULONG ulIsCapabilityElement, CK_ULONG ulElementId, CK_ULONG_PTR pulElementBitLength, CK_ULONG_PTR pulElementDestructive, CK_ULONG_PTR pulElementWriteRestricted, CK_CHAR_PTR pDescription, CK_ULONG_PTR pDesBufSize); CK_RV CK_ENTRY CA_GetHSMCapabilitySet(CK_SLOT_ID uPhysicalSlot, CK_ULONG_PTR pulCapIdArray, CK_ULONG_PTR pulCapIdSize, CK_ULONG_PTR pulCapValArray, CK_ULONG_PTR pulCapValSize); CK_RV CK_ENTRY CA_GetHSMCapabilitySetting(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); CK_RV CK_ENTRY CA_GetHSMPolicySet(CK_SLOT_ID uPhysicalSlot, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyIdSize, CK_ULONG_PTR pulPolicyValArray, CK_ULONG_PTR pulPolicyValSize); CK_RV CK_ENTRY CA_GetHSMPolicySetting(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); CK_RV CK_ENTRY CA_GetContainerCapabilitySet(CK_SLOT_ID uPhysicalSlot, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulCapIdArray, CK_ULONG_PTR pulCapIdSize, CK_ULONG_PTR pulCapValArray, CK_ULONG_PTR pulCapValSize); CK_RV CK_ENTRY CA_GetContainerCapabilitySetting(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); CK_RV CK_ENTRY CA_GetContainerPolicySet(CK_SLOT_ID uPhysicalSlot, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyIdSize, CK_ULONG_PTR pulPolicyValArray, CK_ULONG_PTR pulPolicyValSize); CK_RV CK_ENTRY CA_GetContainerPolicySetting(CK_SLOT_ID uPhysicalSlot, CK_ULONG ulContainerNumber, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); CK_RV CK_ENTRY CA_GetPartitionPolicyTemplate(CK_SLOT_ID uPhysicalSlot, CK_ULONG_PTR pulVersion, CK_ULONG_PTR pulBufSize, CK_BYTE_PTR pbBuf); CK_RV CK_ENTRY CA_SetTPV(CK_SESSION_HANDLE hSession, CK_ULONG ulTpv); CK_RV CK_ENTRY CA_SetExtendedTPV(CK_SESSION_HANDLE hSession, CK_ULONG ulTpv, CK_ULONG ulTpvExt); CK_RV CK_ENTRY CA_SetHSMPolicy(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyId, CK_ULONG ulPolicyValue); CK_RV CK_ENTRY CA_SetHSMPolicies(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); CK_RV CK_ENTRY CA_SetDestructiveHSMPolicy(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyId, CK_ULONG ulPolicyValue); CK_RV CK_ENTRY CA_SetDestructiveHSMPolicies(CK_SESSION_HANDLE hSession, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); CK_RV CK_ENTRY CA_SetContainerPolicy(CK_SESSION_HANDLE hSession, CK_ULONG ulContainer, CK_ULONG ulPolicyId, CK_ULONG ulPolicyValue); CK_RV CK_ENTRY CA_SetContainerPolicies(CK_SESSION_HANDLE hSession, CK_ULONG ulContainer, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); CK_RV CK_ENTRY CA_GetTokenCapabilities(CK_SLOT_ID ulSlotID, CK_ULONG_PTR pulCapIdArray, CK_ULONG_PTR pulCapIdSize, CK_ULONG_PTR pulCapValArray, CK_ULONG_PTR pulCapValSize); CK_RV CK_ENTRY CA_SetTokenPolicies(CK_SESSION_HANDLE hSession, CK_SLOT_ID ulSlotID, CK_ULONG ulPolicyCount, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyValueArray); CK_RV CK_ENTRY CA_GetTokenPolicies(CK_SLOT_ID ulSlotID, CK_ULONG_PTR pulPolicyIdArray, CK_ULONG_PTR pulPolicyIdSize, CK_ULONG_PTR pulPolicyValArray, CK_ULONG_PTR pulPolicyValSize); /****************************************************************************\ * * SafeNet functions * * These functions are implemented for use by SafeNet, Inc. tools. They * should not be used by Toolkit customers * \****************************************************************************/ CK_RV CK_ENTRY CA_RetrieveLicenseList(CK_SLOT_ID slotID, CK_ULONG_PTR pulidArraySize, CK_ULONG_PTR pulidArray); CK_RV CK_ENTRY CA_QueryLicense(CK_SLOT_ID slotID, CK_ULONG licenseIdLow, CK_ULONG licenseIdHigh, CK_ULONG_PTR pulLicenseType, CK_ULONG_PTR pulDescVersion, CK_ULONG_PTR pulDescSize, CK_BYTE_PTR pbDescBuffer); // Duplicated from luna2if.h. Can appear in the status flags // value for CA_GetContainerStatus() and CA_GetTokenStatus(). #define LUNA_CF_CONTAINER_ENABLED 0x01000000 #define LUNA_CF_KCV_CREATED 0x02000000 #define LUNA_CF_LKCV_CREATED 0x04000000 #define LUNA_CF_HA_INITIALIZED 0x08000000 // To be mapped to PKCS #11's CKF_TOKEN_INITIALIZED #define LUNA_CF_PARTITION_INITIALIZED 0x00000400 /** * These flags are not emitted by firmware after (version TBD: 9.1.1). * They need to remain available to software only for backwards compatibility. * Note that future firmware versions may re-use these values again. */ #define LUNA_CF_CONTAINER_ACTIVATED 0x00000001 #define LUNA_CF_CONTAINER_LUSR_ACTIVATED 0x00000002 #define LUNA_CF_SO_PIN_LOCKED 0x00010000 #define LUNA_CF_SO_PIN_TO_BE_CHANGED 0x00020000 #define LUNA_CF_USER_PIN_LOCKED 0x00040000 #define LUNA_CF_LIMITED_USER_PIN_LOCKED 0x00080000 #define LUNA_CF_LIMITED_USER_CREATED 0x00200000 #define LUNA_CF_USER_PIN_TO_BE_CHANGED 0x00400000 #define LUNA_CF_LIMITED_USER_PIN_TO_BE_CHANGED 0x00800000 CK_RV CK_ENTRY CA_GetContainerStatus(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulContainerStatusFlags, CK_ULONG_PTR pulFailedSOLogins, CK_ULONG_PTR pulFailedUserLogins, CK_ULONG_PTR pulFailedLimitedUserLogins); CK_RV CK_ENTRY CA_GetTokenStatus(CK_SLOT_ID slotID, CK_ULONG_PTR pulStatusFlags, CK_ULONG_PTR pulCurSessionCnt, CK_ULONG_PTR pulCurRdWrSessionCnt); CK_RV CK_ENTRY CA_GetSessionInfo(CK_SESSION_HANDLE hSession, CK_ULONG_PTR pulAidHigh, CK_ULONG_PTR pulAidLow, CK_ULONG_PTR pulContainerNumber, CK_ULONG_PTR pulAuthenticationLevel); CK_RV CK_ENTRY CA_ReadCommonStore(CK_ULONG index, CK_BYTE_PTR pBuffer, CK_ULONG_PTR pulBufferSize); CK_RV CK_ENTRY CA_WriteCommonStore(CK_ULONG index, CK_BYTE_PTR pBuffer, CK_ULONG ulBufferSize); CK_RV CK_ENTRY CA_GetPrimarySlot(CK_SESSION_HANDLE hSession, CK_SLOT_ID_PTR slotId_p); CK_RV CK_ENTRY CA_GetSecondarySlot(CK_SESSION_HANDLE hSession, CK_SLOT_ID_PTR slotId_p); CK_RV CK_ENTRY CA_SwitchSecondarySlot(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_ULONG slotInstance); CK_RV CK_ENTRY CA_CloseSecondarySession(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotID, CK_ULONG slotInstance); CK_RV CK_ENTRY CA_CloseAllSecondarySessions(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_ChoosePrimarySlot(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_ChooseSecondarySlot(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_CloneObjectToAllSessions(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hObject); CK_RV CK_ENTRY CA_CloneAllObjectsToSession(CK_SESSION_HANDLE hSession, CK_SLOT_ID slotId); CK_RV CK_ENTRY CA_ResetDevice(CK_SLOT_ID slotId, CK_FLAGS flags); CK_RV CK_ENTRY CA_Zeroize(CK_SLOT_ID slotId, CK_FLAGS flags); CK_RV CK_ENTRY CA_FactoryReset(CK_SLOT_ID slotId, CK_FLAGS flags); CK_RV CK_ENTRY CA_SetPedId(CK_SLOT_ID slotId, CK_ULONG usPedId); CK_RV CK_ENTRY CA_GetPedId(CK_SLOT_ID slotId, CK_ULONG* usPedId); CK_RV CK_ENTRY CA_SpRawRead(CK_SLOT_ID slotId, CK_ULONG_PTR data); CK_RV CK_ENTRY CA_SpRawWrite(CK_SLOT_ID slotId, CK_ULONG_PTR data); CK_RV CK_ENTRY CA_CheckOperationState(CK_SESSION_HANDLE hSession, CK_ULONG operation, CK_BBOOL* pactive); CK_RV CK_ENTRY CA_DestroyMultipleObjects(CK_SESSION_HANDLE hSession, CK_ULONG ulHandleCount, CK_OBJECT_HANDLE_PTR pHandleList, CK_ULONG_PTR pulIndex); CK_RV CK_ENTRY CA_OpenSecureToken(CK_SESSION_HANDLE hSession, CK_ULONG storagePath, CK_ULONG devID, CK_ULONG mode, CK_ULONG pedId, CK_ULONG_PTR numberOfElems, CK_ULONG_PTR phID, CK_ULONG ParNameLength, CK_CHAR_PTR pPartitionName); CK_RV CK_ENTRY CA_CloseSecureToken(CK_SESSION_HANDLE hSession, CK_ULONG hID); CK_RV CK_ENTRY CA_ListSecureTokenInit(CK_SESSION_HANDLE hSession, CK_ULONG hID, CK_ULONG PartNameSize, CK_ULONG_PTR numElements, CK_ULONG_PTR filenameLen, CK_BYTE_PTR pPartName); CK_RV CK_ENTRY CA_ListSecureTokenUpdate(CK_SESSION_HANDLE hSession, CK_ULONG hID, CK_ULONG index, CK_BYTE_PTR pData, CK_ULONG dataLen); CK_RV CK_ENTRY CA_GetSecureElementMeta(CK_SESSION_HANDLE hSession, CK_ULONG hID, CK_MECHANISM_PTR pMechanism, CK_ULONG_PTR pObjClass, CK_ULONG_PTR pKeyType, CK_BYTE_PTR pLabel, CK_ULONG ulLabelLen); CK_RV CK_ENTRY CA_Bip32ExportPublicKey(CK_SESSION_HANDLE hSession, CK_ULONG ulObjectHandle, CK_BYTE_PTR pPublicSerialData, CK_ULONG_PTR pulPublicSerialLen); // in: max.buffer size, out: returned size CK_RV CK_ENTRY CA_Bip32ImportPublicKey(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pBase58Key, // Base58 encoded data src. CK_ULONG usKeyLen, // encoded data size CK_ATTRIBUTE_PTR pTemplate, CK_ULONG usCount, CK_OBJECT_HANDLE_PTR phImportedObject); /****************************************************************************\ * * SafeNet High Availability Recovery functions * \****************************************************************************/ CK_RV CK_ENTRY CA_HAInit(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hLoginPrivateKey); CK_RV CK_ENTRY CA_HAGetMasterPublic(CK_SLOT_ID slotId, CK_BYTE_PTR pCertificate, CK_ULONG_PTR pulCertificate); CK_RV CK_ENTRY CA_HAGetLoginChallenge(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_BYTE_PTR pCertificate, CK_ULONG ulCertificateLen, CK_BYTE_PTR pChallengeBlob, CK_ULONG_PTR pulChallengeBlobLen); CK_RV CK_ENTRY CA_HAAnswerLoginChallenge(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hLoginPrivateKey, CK_BYTE_PTR pChallengeBlob, CK_ULONG ulChallengeBlobLen, CK_BYTE_PTR pEncryptedPin, CK_ULONG_PTR pulEncryptedPinLen); CK_RV CK_ENTRY CA_HALogin(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pEncryptedPin, CK_ULONG ulEncryptedPinLen, CK_BYTE_PTR pMofNBlob, CK_ULONG_PTR pulMofNBlobLen); CK_RV CK_ENTRY CA_HAAnswerMofNChallenge(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pMofNBlob, CK_ULONG ulMofNBlobLen, CK_BYTE_PTR pMofNSecretBlob, CK_ULONG_PTR pulMofNSecretBlobLen); CK_RV CK_ENTRY CA_HAActivateMofN(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pMofNSecretBlob, CK_ULONG ulMofNSecretBlobLen); CK_RV CK_ENTRY CA_GetHAState(CK_SLOT_ID slotId, CK_HA_STATE_PTR pState); CK_RV CK_ENTRY CA_GetTokenCertificates(CK_SLOT_ID slotID, CK_ULONG ulCertType, CK_BYTE_PTR pCertificate, CK_ULONG_PTR pulCertificateLen); /****************************************************************************\ * * SafeNet Offboard Key Storage Functions * \****************************************************************************/ CK_RV CK_ENTRY CA_ExtractMaskedObject(CK_SESSION_HANDLE hSession, CK_ULONG ulObjectHandle, CK_BYTE_PTR pMaskedKey, CK_ULONG_PTR pusMaskedKeyLen); CK_RV CK_ENTRY CA_InsertMaskedObject(CK_SESSION_HANDLE hSession, CK_ULONG_PTR pulObjectHandle, CK_BYTE_PTR pMaskedKey, CK_ULONG usMaskedKeyLen); CK_RV CK_ENTRY CA_MultisignValue(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, CK_ULONG ulMaskedKeyLen, CK_BYTE_PTR pMaskedKey, CK_ULONG_PTR pulBlobCount, CK_ULONG_PTR pulBlobLens, CK_BYTE_PTR CK_PTR ppBlobs, CK_ULONG_PTR pulSignatureLens, CK_BYTE_PTR CK_PTR ppSignatures); ////////////////////////////////////////////////////////////////////// // // Function: CA_SIMExtract // // Description: Use the SIM functionality to extract a set of objects // from the HSM. The objects are returned as a "blob". This // blob may be reinserted later (using CA_SIMInsert) or used with // the CA_SIMMultiSign function. // // Note that this function supports the ability to return the size // of the blob and the blob itself in two separate calls. If the // function is invoked with a null pBlob pointer, only the size of // the blob will be returned. A subsequent call with identical // parameters will return the blob itself. If the blob is to // be retrieved, the *pulBlobSize value should be initialized with // the size of the buffer available to receive the blob. // // The blob is protected by authorization data, as specified by // the parameters. The ulAuthSecretCount specifies how many // authorization secrets are defined, and the ulAuthSubsetCount // parameter specifies how many must be presented before the // blob may be used with CA_SIMInsert or CA_SIMMultiSign. // // Any number of objects may be extracted with a single call to // CA_SIMExtract. The ulHandleCount and pHandleList parameters // specify a list of handles of the objects to be extracted. // If a ulHandleCount of zero is given, all objects within the // HSM are extracted. // // The deleteAfterExtract parameter indicates whether or not the // objects should be left on the HSM after they are extracted. // If this parameter is given a value of TRUE, all indicated // objects are deleted after the extract is complete. Note that // this might be a dangerous use of the function, as the objects // are deleted before the calling application gets an opportunity // to store the resulting key blob -- a power failure at this // point could result in lost data. // ////////////////////////////////////////////////////////////////////// CK_RV CK_ENTRY CA_SIMExtract(CK_SESSION_HANDLE hSession, CK_ULONG ulHandleCount, CK_OBJECT_HANDLE_PTR pHandleList, CK_ULONG ulAuthSecretCount, // N value CK_ULONG ulAuthSubsetCount, // M value CKA_SIM_AUTH_FORM authForm, CK_ULONG_PTR pulAuthSecretSizes, CK_BYTE_PTR* ppbAuthSecretList, CK_BBOOL deleteAfterExtract, CK_ULONG_PTR pulBlobSize, CK_BYTE_PTR pBlob); ////////////////////////////////////////////////////////////////////// // // Function: CA_SIMInsert // // Description: Insert a set of objects that had previously been extracted // using the CA_SIMExtract function. // // The SIM blob is provided along with authorization data. If the // authorization data is correct and sufficient, the objects contained // in the blob are inserted into the HSM. Note that a number of // authorization secrets equal to the ulAuthSubsetCount of the // CA_SIMExtract call must be provided. // // If the pHandleList parameter is null, only the handle count will // be returned. The handle list itself may be retrieved on a subsequent // call. If the handle list is to be retrieved, the *pulHandleCount // value should be initialized to the size of the pHandleList buffer // provided. // // Object handles in the handle list will be ordered as they were // in the CA_SIMExtract call. That is, if a particular object was // specified in the nth place in the handle list given to CA_SIMExtract, // it will be returned in the nth place in the list when CA_SIMInsert // returns. // ////////////////////////////////////////////////////////////////////// CK_RV CK_ENTRY CA_SIMInsert(CK_SESSION_HANDLE hSession, CK_ULONG ulAuthSecretCount, // M value CKA_SIM_AUTH_FORM authForm, CK_ULONG_PTR pulAuthSecretSizes, CK_BYTE_PTR* ppbAuthSecretList, CK_ULONG ulBlobSize, CK_BYTE_PTR pBlob, CK_ULONG_PTR pulHandleCount, CK_OBJECT_HANDLE_PTR pHandleList); ////////////////////////////////////////////////////////////////////// // // Function: CA_SIMMultiSign // // Description: This function uses a key extracted from the HSM using // the CA_SIMExtract function to perform signature operations on // a set of input data. // // The input SIM blob may only contain a single object. This // object must be a key of the appropriate type for the given // mechanism. // // If the authorization data is correct for the given blob, the // key is used to sign each element of the input data list. The // resulting signatures are stored in the signature list output // buffers. // // Note that this function does *NOT* support providing null // pointers for the output signature buffers. The provided // buffers must be large enough to accept the given signature. // ////////////////////////////////////////////////////////////////////// CK_RV CK_ENTRY CA_SIMMultiSign(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, CK_ULONG ulAuthSecretCount, // M value CKA_SIM_AUTH_FORM authForm, CK_ULONG_PTR pulAuthSecretSizes, CK_BYTE_PTR* ppbAuthSecretList, CK_ULONG ulBlobSize, CK_BYTE_PTR pBlob, CK_ULONG ulInputDataCount, CK_ULONG_PTR pulInputDataLengths, CK_BYTE_PTR* ppbInputDataList, CK_ULONG_PTR pulSignatureLengths, CK_BYTE_PTR* ppbSignatureList); ////////////////////////////////////////////////////////////////////// // SIM3 Functions ////////////////////////////////////////////////////////////////////// CK_RV CK_ENTRY CA_Extract(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism); CK_RV CK_ENTRY CA_Insert(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism); CK_RV CK_ENTRY CA_GetTokenObjectUID(CK_SLOT_ID slotID, CK_ULONG ulObjectType, CK_ULONG ulObjectHandle, CK_BYTE ouid[12]); CK_RV CK_ENTRY CA_GetTokenObjectHandle(CK_SLOT_ID slotID, CK_BYTE ouid[12], CK_ULONG_PTR pulObjectType, CK_ULONG_PTR pulObjectHandle); CK_RV CK_ENTRY CA_GetObjectUID(CK_SLOT_ID slotID, CK_ULONG ulContainerNum, CK_ULONG ulObjectType, CK_ULONG ulObjectHandle, CK_BYTE ouid[12]); CK_RV CK_ENTRY CA_GetObjectHandle(CK_SLOT_ID slotID, CK_ULONG ulContainerNum, CK_BYTE ouid[12], CK_ULONG_PTR pulObjectType, CK_ULONG_PTR pulObjectHandle); CK_RV CK_ENTRY CA_DeleteContainer(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_MTKSetStorage(CK_SESSION_HANDLE ulSessionNumber, CK_ULONG ulStorageSetting); CK_RV CK_ENTRY CA_MTKRestore(CK_SLOT_ID slotID); CK_RV CK_ENTRY CA_MTKResplit(CK_SLOT_ID slotID); CK_RV CK_ENTRY CA_MTKZeroize(CK_SLOT_ID slotID); CK_RV CK_ENTRY CA_MTKGetState(CK_SLOT_ID slotID, CK_ULONG_PTR state); CK_RV CK_ENTRY CA_TamperClear(CK_SESSION_HANDLE ulSessionNumber); CK_RV CK_ENTRY CA_STMToggle(CK_SESSION_HANDLE ulSessionNumber, CK_ULONG ulValue, CK_ULONG ulInputDataSize, CK_CHAR_PTR pInputData, CK_ULONG_PTR pulOutputDataSize, CK_CHAR_PTR pOutputData); CK_RV CK_ENTRY CA_STMGetState(CK_SLOT_ID slotID, CK_ULONG_PTR state); CK_RV CK_ENTRY CA_GetTSV(CK_SLOT_ID slotID, CK_ULONG_PTR pTSV); // /****************************************************************************\ * * SafeNet High Availability Recovery functions * \****************************************************************************/ CK_RV CK_ENTRY CA_InvokeServiceInit(CK_SESSION_HANDLE hSession, CK_ULONG ulPortNumber); CK_RV CK_ENTRY CA_InvokeService(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pBufferIn, CK_ULONG ulBufferInLength, CK_ULONG_PTR pulBufferOutLength); CK_RV CK_ENTRY CA_InvokeServiceFinal(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pBufferOut, CK_ULONG_PTR pulBufferOutLength); CK_RV CK_ENTRY CA_InvokeServiceAsynch(CK_SESSION_HANDLE hSession, CK_ULONG ulPortNumber, CK_BYTE_PTR pBufferIn, CK_ULONG ulBufferInLength); CK_RV CK_ENTRY CA_InvokeServiceSinglePart(CK_SESSION_HANDLE hSession, CK_ULONG ulPortNumber, CK_BYTE_PTR pBufferIn, CK_ULONG ulBufferInLength, CK_BYTE_PTR pBufferOut, CK_ULONG_PTR pulBufferOutLength); CK_RV CK_ENTRY CA_EncodeECPrimeParams(CK_BYTE_PTR DerECParams, CK_ULONG_PTR DerECParamsLen, CK_BYTE_PTR prime, CK_ULONG primelen, CK_BYTE_PTR a, CK_ULONG alen, CK_BYTE_PTR b, CK_ULONG blen, CK_BYTE_PTR seed, // Can be NULL CK_ULONG seedlen, CK_BYTE_PTR x, CK_ULONG xlen, CK_BYTE_PTR y, CK_ULONG ylen, CK_BYTE_PTR order, CK_ULONG orderlen, CK_BYTE_PTR cofactor, // Can be NULL CK_ULONG cofactorlen); CK_RV CK_ENTRY CA_EncodeECChar2Params(CK_BYTE_PTR DerECParams, CK_ULONG_PTR DerECParamsLen, CK_ULONG m, CK_ULONG k1, CK_ULONG k2, CK_ULONG k3, CK_BYTE_PTR a, CK_ULONG alen, CK_BYTE_PTR b, CK_ULONG blen, CK_BYTE_PTR seed, // Can be NULL CK_ULONG seedlen, CK_BYTE_PTR x, CK_ULONG xlen, CK_BYTE_PTR y, CK_ULONG ylen, CK_BYTE_PTR order, CK_ULONG orderlen, CK_BYTE_PTR cofactor, // Can be NULL CK_ULONG cofactorlen); CK_RV CK_ENTRY CA_EncodeECParamsFromFile(CK_BYTE_PTR DerECParams, CK_ULONG_PTR DerECParamsLen, CK_BYTE_PTR paramsFile); CK_RV CK_ENTRY CA_GetHSMStats(CK_SLOT_ID slotID, CK_ULONG ulStatsIdsCount, CK_ULONG_PTR pStatsIds, HSM_STATS_PARAMS* pStatsParams); CK_RV CK_ENTRY CA_GetHSMStorageInformation(CK_SLOT_ID slotID, CK_ULONG_PTR pulContainerOverhead, CK_ULONG_PTR pulTotal, CK_ULONG_PTR pulUsed, CK_ULONG_PTR pulFree); CK_RV CK_ENTRY CA_GetTokenStorageInformation(CK_SLOT_ID slotID, CK_ULONG_PTR pulContainerOverhead, CK_ULONG_PTR pulTotal, CK_ULONG_PTR pulUsed, CK_ULONG_PTR pulFree, CK_ULONG_PTR pulObjectCount); CK_RV CK_ENTRY CA_GetContainerStorageInformation(CK_SLOT_ID slotID, CK_ULONG ulContainerNumber, CK_ULONG_PTR pulContainerOverhead, CK_ULONG_PTR pulTotal, CK_ULONG_PTR pulUsed, CK_ULONG_PTR pulFree, CK_ULONG_PTR pulObjectCount); CK_RV CK_ENTRY CA_SetContainerSize(CK_SESSION_HANDLE hSession, CK_ULONG ulContainerNumber, CK_ULONG ulSize); CK_RV CK_ENTRY CA_CreateContainerWithPolicy(CK_SESSION_HANDLE hSession, CK_ULONG ulUSV, CK_CHAR_PTR pContainerName, CK_ULONG usContainerNameLen, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_ULONG ulIDHigh, CK_ULONG ulIDLow, CK_ULONG ulOwnerHandle, CK_ULONG ulStorageFlags, CK_ULONG ulContainerSize, CK_ULONG_PTR pulContainerNumber, CK_ULONG policyVersion, CK_ULONG policySize, CK_BYTE_PTR pPolicyBuf); CK_RV CK_ENTRY CA_CreateContainer(CK_SESSION_HANDLE hSession, CK_ULONG ulUSV, CK_CHAR_PTR pContainerName, CK_ULONG usContainerNameLen, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_ULONG ulIDHigh, CK_ULONG ulIDLow, CK_ULONG ulOwnerHandle, CK_ULONG ulStorageFlags, CK_ULONG ulContainerSize, CK_ULONG_PTR pulContainerNumber); CK_RV CK_ENTRY CA_InitAudit(CK_SLOT_ID slotID, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_CHAR_PTR pLabel); CK_RV CK_ENTRY CA_LogVerify(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pLogMsgs, CK_ULONG ulMsgCount, CK_ULONG bChainToHSM, CK_ULONG_PTR pulNumVerified); CK_RV CK_ENTRY CA_LogVerifyFile(CK_SESSION_HANDLE hSession, CK_CHAR_PTR pFileName, CK_ULONG_PTR ulNumVerified); CK_RV CK_ENTRY CA_LogExternal(CK_SLOT_ID slotID, CK_SESSION_HANDLE hSession, const CK_CHAR* pStr, CK_ULONG ulLen); CK_RV CK_ENTRY CA_LogImportSecret(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pStr, CK_ULONG strSize); CK_RV CK_ENTRY CA_LogExportSecret(CK_SESSION_HANDLE hSession, CK_BYTE_PTR pStr, CK_ULONG_PTR pStrSize); CK_RV CK_ENTRY CA_TimeSync(CK_SESSION_HANDLE hSession, CK_ULONG ulTime); CK_RV CK_ENTRY CA_GetTime(CK_SESSION_HANDLE hSession, CK_ULONG_PTR pulTime); CK_RV CK_ENTRY CA_LogSetConfig(CK_SESSION_HANDLE hSession, CK_ULONG mask, CK_ULONG logRotateOffset, CK_ULONG logRotateInterval, CK_ULONG maxLogSize, CK_BYTE_PTR pLogPath); CK_RV CK_ENTRY CA_LogGetConfig(CK_SESSION_HANDLE hSession, CK_ULONG* mask, CK_ULONG* logRotateOffset, CK_ULONG* logRotateInterval, CK_ULONG* maxLogSize, CK_BYTE_PTR pLogPath); CK_RV CK_ENTRY CA_ReplaceFastPathKEK(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_LogGetStatus(CK_SLOT_ID slotId, CK_ULONG* auditInitStatus, CK_ULONG* lastPollResult, CK_ULONG* lastSetConfigResult, CK_ULONG* isConfigInParamArea, CK_ULONG* numRecordsInFlash); CK_RV CK_ENTRY CA_DeleteContainerWithHandle(CK_SESSION_HANDLE hSession, CK_ULONG ulContainerNumber); CK_RV CK_ENTRY CA_GetContainerList(CK_SLOT_ID slotID, CK_ULONG ulGroupHandle, CK_ULONG ulContainerType, CK_ULONG_PTR pulContainerHandles, CK_ULONG_PTR pulNumberOfHandles); CK_RV CK_ENTRY CA_GetContainerName(CK_SLOT_ID slotID, CK_ULONG ulContainerHandle, CK_BYTE_PTR pContainerName, CK_ULONG_PTR pulContainerNameLen); CK_RV CK_ENTRY CA_GetNumberOfAllowedContainers(CK_SLOT_ID slot, CK_ULONG_PTR pulAllowedContainers); CK_RV CK_ENTRY CA_GetTunnelSlotNumber(CK_SLOT_ID slotID, CK_SLOT_ID_PTR pTunnelSlotID); CK_RV CK_ENTRY CA_GetClusterState(CK_SLOT_ID slotId, CK_CLUSTER_STATE_PTR pState); CK_RV CK_ENTRY CA_LockClusteredSlot(CK_SLOT_ID slotId); CK_RV CK_ENTRY CA_UnlockClusteredSlot(CK_SLOT_ID slotId); CK_RV CK_ENTRY CA_ModifyUsageCount(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE hObject, CK_ULONG ulCommandType, CK_ULONG ulValue); CK_RV CK_ENTRY CA_EnableUnauthTokenInsertion(CK_SESSION_HANDLE hSession, CK_ULONG ulMaxUsageCount, CK_ULONG_PTR ulContextHandle); CK_RV CK_ENTRY CA_GetUnauthTokenInsertionStatus(CK_SESSION_HANDLE hSession, CK_ULONG ulContextHandle, CK_ULONG* pulMaxUsageCount, CK_ULONG* pulCurUsageCount); CK_RV CK_ENTRY CA_DisableUnauthTokenInsertion(CK_SESSION_HANDLE hSession, CK_ULONG ulContextHandle); CK_RV CK_ENTRY CA_STCRegister(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, const CK_CHAR* username, CK_ULONG access, const CK_CHAR* pmod, CK_ULONG mod_len, const CK_CHAR* pexp, CK_ULONG exp_len); CK_RV CK_ENTRY CA_STCDeregister(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetslotID, const CK_CHAR* username); CK_RV CK_ENTRY CA_STCGetPubKey(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, const CK_CHAR* username, CK_CHAR* pmod, CK_ULONG_PTR mod_len, CK_CHAR* pexp, CK_ULONG_PTR exp_len); CK_RV CK_ENTRY CA_STCGetClientsList(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, CK_ULONG_PTR pulCIDArray, CK_ULONG_PTR pulCIDArraySize); CK_RV CK_ENTRY CA_STCGetClientInfo(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, CK_ULONG ulHandke, CK_CHAR* username, CK_ULONG_PTR name_len, CK_ULONG_PTR access, CK_CHAR* mod, CK_ULONG_PTR mod_len, CK_CHAR* exp, CK_ULONG_PTR exp_len); CK_RV CK_ENTRY CA_STCGetPartPubKey(CK_SESSION_HANDLE hSession, CK_SLOT_ID TargetSlotID, CK_CHAR* mod, CK_ULONG_PTR modSize, CK_CHAR* exp, CK_ULONG_PTR expSize); CK_RV CK_ENTRY CA_STCGetAdminPubKey(CK_SLOT_ID slotId, CK_CHAR* mod, CK_ULONG_PTR modSize, CK_CHAR* exp, CK_ULONG_PTR expSize); CK_RV CK_ENTRY CA_STCSetCipherAlgorithm(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG CipherID); CK_RV CK_ENTRY CA_STCGetCipherAlgorithm(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_BYTE_PTR pIDCount, CK_ULONG_PTR pIDs); CK_RV CK_ENTRY CA_STCClearCipherAlgorithm(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG CipherID); CK_RV CK_ENTRY CA_STCSetDigestAlgorithm(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG DigestID); CK_RV CK_ENTRY CA_STCGetDigestAlgorithm(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_BYTE_PTR pIDCount, CK_ULONG_PTR pIDs); CK_RV CK_ENTRY CA_STCClearDigestAlgorithm(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG DigestID); CK_RV CK_ENTRY CA_STCSetKeyLifeTime(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG lifeTime); CK_RV CK_ENTRY CA_STCGetKeyLifeTime(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR plifeTime); CK_RV CK_ENTRY CA_STCSetKeyActivationTimeOut(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG timeOut); CK_RV CK_ENTRY CA_STCGetKeyActivationTimeOut(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR ptimeOut); CK_RV CK_ENTRY CA_STCSetMaxSessions(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG maxSessions); CK_RV CK_ENTRY CA_STCGetMaxSessions(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR pmaxSessions); CK_RV CK_ENTRY CA_STCSetSequenceWindowSize(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG windowSize); CK_RV CK_ENTRY CA_STCGetSequenceWindowSize(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR pwindowSize); CK_RV CK_ENTRY CA_STCIsEnabled(CK_ULONG TargetSlotID, CK_BYTE_PTR pbenabled); CK_RV CK_ENTRY CA_STCGetState(CK_ULONG TargetSlotID, CK_CHAR* str, CK_BYTE bbufferSize); CK_RV CK_ENTRY CA_STCGetCurrentKeyLife(CK_SESSION_HANDLE hSession, CK_ULONG TargetSlotID, CK_ULONG_PTR pcurKeyLife); CK_RV CK_ENTRY CA_GetSlotIdForPhysicalSlot(CK_ULONG physicalSlot, CK_SLOT_ID_PTR pSlotId); CK_RV CK_ENTRY CA_GetSlotIdForContainer(CK_ULONG slotID, CK_ULONG ulContainerNumber, CK_SLOT_ID_PTR pSlotID); CK_RV CK_ENTRY CA_STCGetChannelID(CK_SLOT_ID slotId, CK_ULONG_PTR ulChannelId); CK_RV CK_ENTRY CA_STCGetCipherID(CK_SLOT_ID slotId, CK_ULONG_PTR ulCipherId); CK_RV CK_ENTRY CA_STCGetDigestID(CK_SLOT_ID slotId, CK_ULONG_PTR ulDigestId); CK_RV CK_ENTRY CA_STCGetCipherIDs(CK_SLOT_ID slotID, CK_ULONG_PTR pulArray, CK_BYTE_PTR pbArraySize); CK_RV CK_ENTRY CA_STCGetCipherNameByID(CK_SLOT_ID slotID, CK_ULONG ulCipherID, CK_CHAR_PTR pszName, CK_BYTE bNameBufSize); CK_RV CK_ENTRY CA_STCGetDigestIDs(CK_SLOT_ID slotID, CK_ULONG_PTR pulArray, CK_BYTE_PTR pbArraySize); CK_RV CK_ENTRY CA_STCGetDigestNameByID(CK_SLOT_ID slotID, CK_ULONG ulDigestID, CK_CHAR_PTR pszName, CK_BYTE bNameBufSize); CK_RV CK_ENTRY CA_GetServerInstanceBySlotID(CK_SLOT_ID slotID, CK_ULONG_PTR pulInstanceNumber); CK_RV CK_ENTRY CA_GetSlotListFromServerInstance(CK_ULONG instanceNumber, CK_SLOT_ID_PTR slotList, CK_ULONG_PTR pulCount); CK_RV CK_ENTRY CA_ChangeLabel(CK_SESSION_HANDLE hSession, CK_SLOT_ID ulSlotID, CK_CHAR_PTR pulLabel, CK_ULONG ulLabelLen); CK_RV CK_ENTRY CA_PerformSelfTest(CK_SLOT_ID slotID, CK_ULONG typeOfTest, CK_BYTE_PTR inputData, CK_ULONG sizeOfInputData, CK_BYTE_PTR outputData, CK_ULONG_PTR sizeOfOutputData); // // Support from FMs // CK_RV CK_ENTRY CA_FMDownload(CK_SESSION_HANDLE hTokenSession, CK_OBJECT_HANDLE hObject, CK_ULONG ulParamLen, CK_BYTE_PTR pParam, CK_ULONG ulImageLen, CK_BYTE_PTR pImage, CK_ULONG ulSignatureLen, CK_BYTE_PTR pSignature); CK_RV CK_ENTRY CA_FMDelete(CK_SESSION_HANDLE hTokenSession, CK_ULONG fmid); CK_RV CK_ENTRY CA_FMActivateSMFS(CK_SESSION_HANDLE hTokenSession); CK_RV CK_ENTRY CA_GetActualSlotList(CK_SLOT_ID slotId, CK_ULONG_PTR phsmidx, // index of HSM CK_SLOT_ID_PTR pActualslotID, // 'collected' slot ID CK_ULONG_PTR pulCount); CK_RV CK_ENTRY CA_DeriveKeyAndWrap(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanismDerive, CK_OBJECT_HANDLE hBaseKey, CK_ATTRIBUTE_PTR pTemplate, CK_ULONG ulAttributeCount, CK_MECHANISM_PTR pMechanismWrap, CK_OBJECT_HANDLE hWrappingKey, CK_BYTE_PTR pWrappedKey, CK_ULONG_PTR pulWrappedKeyLen); /* This function called by ethsm library to get access to the HSMs */ CK_RV CK_ENTRY CA_MdPriv_Initialize(void* pMdPrivIf, unsigned int len, void* pLogIf); CK_RV CK_ENTRY CA_Get(CK_SLOT_ID slotID, CK_ULONG ulItem, CK_BYTE_PTR pBuffer, CK_ULONG_PTR pulBufferLen); CK_RV CK_ENTRY CA_Put(CK_SLOT_ID slotID, CK_SESSION_HANDLE hSession, CK_ULONG ulParamId, CK_ULONG ulParamSize, CK_BYTE_PTR pParamBuffer); CK_RV CK_ENTRY CA_GetDefaultPartitionPolicyValue(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); CK_RV CK_ENTRY CA_GetDefaultHSMPolicyValue(CK_SLOT_ID slotID, CK_ULONG ulPolicyId, CK_ULONG_PTR pulPolicyValue); CK_RV CK_ENTRY CA_ValidateHSMPolicySet(CK_SLOT_ID slotId, CK_POLICY_INFO_PTR policyInfo, CK_ULONG policyCount, CK_RV_PTR policyResults); CK_RV CK_ENTRY CA_ValidateContainerPolicySet(CK_SLOT_ID slotId, CK_ULONG ulContainerNumber, CK_POLICY_INFO_PTR policyInfo, CK_ULONG policyCount, CK_RV_PTR policyResults); CK_RV CK_ENTRY CA_ZeroizeContainer(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_InitToken(CK_SLOT_ID slotID, CK_CHAR_PTR pPin, CK_ULONG usPinLen, CK_CHAR_PTR pLabel, CK_BYTE_PTR pDomain, CK_ULONG ulDomainLen, CK_ULONG ulPolicyCount, CK_POLICY_INFO_PTR pPolicyData, CK_ULONG ulHSMPolicyCount, CK_POLICY_INFO_PTR pHSMPolicyData); /****************************************************************************\ * * SafeNet Partition Utilization Metrics functions * \****************************************************************************/ CK_RV CK_ENTRY CA_ReadUtilizationMetrics(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_ReadAndResetUtilizationMetrics(CK_SESSION_HANDLE hSession); CK_RV CK_ENTRY CA_ReadAllUtilizationCounters(CK_SESSION_HANDLE hSession, CK_UTILIZATION_COUNTER_PTR buff, CK_ULONG_PTR length); CK_RV CK_ENTRY CA_ReadUtilizationCount(CK_SESSION_HANDLE hSession, CK_ULONGLONG serialNum, CK_ULONG ulBinId, CK_ULONG ulCounterId, CK_UTILIZATION_COUNT_PTR pCount); CK_RV CK_ENTRY CA_DescribeUtilizationBinId(CK_ULONG ulBinId, CK_CHAR_PTR CK_PTR describe); CK_RV CK_ENTRY CA_DescribeUtilizationCounterId(CK_ULONG ulCounterId, CK_CHAR_PTR CK_PTR describe); // This typedef is needed externally. Others are not. The script used to generate extension typedefs // omits this typedef to prevent a redefinition error typedef CK_RV CK_ENTRY(CK_PTR CK_CA_GetFunctionList)(CK_SFNT_CA_FUNCTION_LIST_PTR_PTR ppSfntFunctionList); /*** * The following items break the rules in some way, so are explicitly ignored * by the parser, and as such, do not have all the generated elements. */ // These two don't start with CA_. CK_RV CK_ENTRY GetTotalOperations(CK_SLOT_ID slotId, int* operations); typedef CK_RV CK_ENTRY(CK_PTR CK_GetTotalOperations)(CK_SLOT_ID slotId, int* operations); CK_RV CK_ENTRY ResetTotalOperations(CK_SLOT_ID slotId); typedef CK_RV CK_ENTRY(CK_PTR CK_ResetTotalOperations)(CK_SLOT_ID slotId); CK_RV CK_ENTRY CA_TestTrace(CK_SLOT_ID slotID, CK_ULONG ulTypeOfTrace, CK_BYTE_PTR pInData, CK_ULONG ulInDataLength, CK_BYTE_PTR pOutData, CK_ULONG_PTR pulOutDataLength); mstflint-4.26.0/mft_utils/hsmclient/inc/hsmlunaclient.h0000644000175000017500000001032414522641732023467 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifdef OS_WIN32 #include #else #ifdef OS_HPUX #include #else #include #endif #endif #include #include #include #include #include #include #include #include #include "cryptoki_v2.h" #define PLAIN_SZ 512 #define BIG_REQUEST 1048576 #define AES_BLOCK_SIZE 2048 #define MAX_NUM_OF_HANDLES 100 #define DIM(a) (sizeof(a) / sizeof(a[0])) //#define PRIVATE_DATA_SIZE 2350 #define MODULUS_SIZE 512 typedef struct { CK_INFO info; char reserved[100]; // This is in case the library that we are } protectedInfo_T; class HSMLunaClient { private: #ifdef OS_WIN32 HINSTANCE LibHandle; #else #ifdef OS_HPUX shl_t LibHandle; #else void* LibHandle; #endif #endif CK_FUNCTION_LIST* P11Functions; CK_SFNT_CA_FUNCTION_LIST* SfntFunctions; CK_SESSION_HANDLE m_hSession; CK_OBJECT_HANDLE hSymKey; CK_BYTE PlainText[PLAIN_SZ]; CK_SLOT_ID m_ckSlot; CK_BYTE bPassword[64]; CK_BBOOL GetLibrary(std::string libPath = std::string()); CK_BBOOL LoadP11Functions(std::string libPath = std::string()); CK_BBOOL LoadSfntExtensionFunctions(); CK_RV Generate3DESKey(); static unsigned char Modulus[MODULUS_SIZE]; static unsigned char* _PrivateKeyData; unsigned int PrivateKeyDataSize; unsigned int ModulusSize; const std::string pLibraryPath; const std::string pLibraryName; public: HSMLunaClient() : LibHandle(NULL), P11Functions(NULL), SfntFunctions(NULL), m_hSession(0), hSymKey(0), m_ckSlot(0xffff), pLibraryPath("/usr/safenet/lunaclient/lib"), pLibraryName("libcklog2.so") { memset(PlainText, 65, sizeof(PlainText)); strcpy((char*)bPassword, "edwardg"); // PrivateKeyDataSize = PRIVATE_DATA_SIZE; ModulusSize = MODULUS_SIZE; } CK_BBOOL Init(std::string password = std::string(), std::string libPath = std::string()); CK_RV TestAESEncryption(); CK_RV AES_DecryptData(); CK_RV AES_EncryptData(); CK_RV BurnPrivateKey(std::string privateKeyLabel, std::string publicKeyLabel, std::vector PrivateKeyData); CK_RV FindFirstSlot(CK_SLOT_ID& pckSlot); void CleanUp(); CK_RV RSA_EncryptDataTest(std::string privateKeyLabel, std::string publicKeyLebel); CK_RV RSA_CreateSignature(std::vector data, std::string privateKeyLabel, std::string publicKeyLabel, std::vector& signature); CK_RV CreatePublicKey(std::string publicKeyLabel, unsigned char* PublicModulus, unsigned int PublicModulusSize); CK_RV CheckExistingLabel(std::string label, CK_ULONG& numOfLabels); }; mstflint-4.26.0/mft_utils/hsmclient/inc/rsa/0000755000175000017500000000000014522641732021235 5ustar tzafrirctzafrircmstflint-4.26.0/mft_utils/hsmclient/inc/rsa/pkcs11f.h0000644000175000017500000006456214522641732022673 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* General-purpose */ /* C_Initialize initializes the Cryptoki library. */ CK_PKCS11_FUNCTION_INFO(C_Initialize) #ifdef CK_NEED_ARG_LIST (CK_VOID_PTR pInitArgs /* if this is not NULL_PTR, it gets * cast to CK_C_INITIALIZE_ARGS_PTR * and dereferenced */ ); #endif /* C_Finalize indicates that an application is done with the * Cryptoki library. */ CK_PKCS11_FUNCTION_INFO(C_Finalize) #ifdef CK_NEED_ARG_LIST (CK_VOID_PTR pReserved /* reserved. Should be NULL_PTR */ ); #endif /* C_GetInfo returns general information about Cryptoki. */ CK_PKCS11_FUNCTION_INFO(C_GetInfo) #ifdef CK_NEED_ARG_LIST (CK_INFO_PTR pInfo /* location that receives information */ ); #endif /* C_GetFunctionList returns the function list. */ CK_PKCS11_FUNCTION_INFO(C_GetFunctionList) #ifdef CK_NEED_ARG_LIST (CK_FUNCTION_LIST_PTR_PTR ppFunctionList /* receives pointer to * function list */ ); #endif /* Slot and token management */ /* C_GetSlotList obtains a list of slots in the system. */ CK_PKCS11_FUNCTION_INFO(C_GetSlotList) #ifdef CK_NEED_ARG_LIST (CK_BBOOL tokenPresent, /* only slots with tokens? */ CK_SLOT_ID_PTR pSlotList, /* receives array of slot IDs */ CK_ULONG_PTR pulCount /* receives number of slots */ ); #endif /* C_GetSlotInfo obtains information about a particular slot in * the system. */ CK_PKCS11_FUNCTION_INFO(C_GetSlotInfo) #ifdef CK_NEED_ARG_LIST (CK_SLOT_ID slotID, /* the ID of the slot */ CK_SLOT_INFO_PTR pInfo /* receives the slot information */ ); #endif /* C_GetTokenInfo obtains information about a particular token * in the system. */ CK_PKCS11_FUNCTION_INFO(C_GetTokenInfo) #ifdef CK_NEED_ARG_LIST (CK_SLOT_ID slotID, /* ID of the token's slot */ CK_TOKEN_INFO_PTR pInfo /* receives the token information */ ); #endif /* C_GetMechanismList obtains a list of mechanism types * supported by a token. */ CK_PKCS11_FUNCTION_INFO(C_GetMechanismList) #ifdef CK_NEED_ARG_LIST (CK_SLOT_ID slotID, /* ID of token's slot */ CK_MECHANISM_TYPE_PTR pMechanismList, /* gets mech. array */ CK_ULONG_PTR pulCount /* gets # of mechs. */ ); #endif /* C_GetMechanismInfo obtains information about a particular * mechanism possibly supported by a token. */ CK_PKCS11_FUNCTION_INFO(C_GetMechanismInfo) #ifdef CK_NEED_ARG_LIST (CK_SLOT_ID slotID, /* ID of the token's slot */ CK_MECHANISM_TYPE type, /* type of mechanism */ CK_MECHANISM_INFO_PTR pInfo /* receives mechanism info */ ); #endif /* C_InitToken initializes a token. */ CK_PKCS11_FUNCTION_INFO(C_InitToken) #ifdef CK_NEED_ARG_LIST /* pLabel changed from CK_CHAR_PTR to CK_UTF8CHAR_PTR for v2.10 */ (CK_SLOT_ID slotID, /* ID of the token's slot */ CK_UTF8CHAR_PTR pPin, /* the SO's initial PIN */ CK_ULONG ulPinLen, /* length in bytes of the PIN */ CK_UTF8CHAR_PTR pLabel /* 32-byte token label (blank padded) */ ); #endif /* C_InitPIN initializes the normal user's PIN. */ CK_PKCS11_FUNCTION_INFO(C_InitPIN) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_UTF8CHAR_PTR pPin, /* the normal user's PIN */ CK_ULONG ulPinLen /* length in bytes of the PIN */ ); #endif /* C_SetPIN modifies the PIN of the user who is logged in. */ CK_PKCS11_FUNCTION_INFO(C_SetPIN) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_UTF8CHAR_PTR pOldPin, /* the old PIN */ CK_ULONG ulOldLen, /* length of the old PIN */ CK_UTF8CHAR_PTR pNewPin, /* the new PIN */ CK_ULONG ulNewLen /* length of the new PIN */ ); #endif /* Session management */ /* C_OpenSession opens a session between an application and a * token. */ CK_PKCS11_FUNCTION_INFO(C_OpenSession) #ifdef CK_NEED_ARG_LIST (CK_SLOT_ID slotID, /* the slot's ID */ CK_FLAGS flags, /* from CK_SESSION_INFO */ CK_VOID_PTR pApplication, /* passed to callback */ CK_NOTIFY Notify, /* callback function */ CK_SESSION_HANDLE_PTR phSession /* gets session handle */ ); #endif /* C_CloseSession closes a session between an application and a * token. */ CK_PKCS11_FUNCTION_INFO(C_CloseSession) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession /* the session's handle */ ); #endif /* C_CloseAllSessions closes all sessions with a token. */ CK_PKCS11_FUNCTION_INFO(C_CloseAllSessions) #ifdef CK_NEED_ARG_LIST (CK_SLOT_ID slotID /* the token's slot */ ); #endif /* C_GetSessionInfo obtains information about the session. */ CK_PKCS11_FUNCTION_INFO(C_GetSessionInfo) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_SESSION_INFO_PTR pInfo /* receives session info */ ); #endif /* C_GetOperationState obtains the state of the cryptographic operation * in a session. */ CK_PKCS11_FUNCTION_INFO(C_GetOperationState) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pOperationState, /* gets state */ CK_ULONG_PTR pulOperationStateLen /* gets state length */ ); #endif /* C_SetOperationState restores the state of the cryptographic * operation in a session. */ CK_PKCS11_FUNCTION_INFO(C_SetOperationState) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pOperationState, /* holds state */ CK_ULONG ulOperationStateLen, /* holds state length */ CK_OBJECT_HANDLE hEncryptionKey, /* en/decryption key */ CK_OBJECT_HANDLE hAuthenticationKey /* sign/verify key */ ); #endif /* C_Login logs a user into a token. */ CK_PKCS11_FUNCTION_INFO(C_Login) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_USER_TYPE userType, /* the user type */ CK_UTF8CHAR_PTR pPin, /* the user's PIN */ CK_ULONG ulPinLen /* the length of the PIN */ ); #endif /* C_Logout logs a user out from a token. */ CK_PKCS11_FUNCTION_INFO(C_Logout) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession /* the session's handle */ ); #endif /* Object management */ /* C_CreateObject creates a new object. */ CK_PKCS11_FUNCTION_INFO(C_CreateObject) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_ATTRIBUTE_PTR pTemplate, /* the object's template */ CK_ULONG ulCount, /* attributes in template */ CK_OBJECT_HANDLE_PTR phObject /* gets new object's handle. */ ); #endif /* C_CopyObject copies an object, creating a new object for the * copy. */ CK_PKCS11_FUNCTION_INFO(C_CopyObject) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_OBJECT_HANDLE hObject, /* the object's handle */ CK_ATTRIBUTE_PTR pTemplate, /* template for new object */ CK_ULONG ulCount, /* attributes in template */ CK_OBJECT_HANDLE_PTR phNewObject /* receives handle of copy */ ); #endif /* C_DestroyObject destroys an object. */ CK_PKCS11_FUNCTION_INFO(C_DestroyObject) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_OBJECT_HANDLE hObject /* the object's handle */ ); #endif /* C_GetObjectSize gets the size of an object in bytes. */ CK_PKCS11_FUNCTION_INFO(C_GetObjectSize) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_OBJECT_HANDLE hObject, /* the object's handle */ CK_ULONG_PTR pulSize /* receives size of object */ ); #endif /* C_GetAttributeValue obtains the value of one or more object * attributes. */ CK_PKCS11_FUNCTION_INFO(C_GetAttributeValue) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_OBJECT_HANDLE hObject, /* the object's handle */ CK_ATTRIBUTE_PTR pTemplate, /* specifies attrs; gets vals */ CK_ULONG ulCount /* attributes in template */ ); #endif /* C_SetAttributeValue modifies the value of one or more object * attributes */ CK_PKCS11_FUNCTION_INFO(C_SetAttributeValue) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_OBJECT_HANDLE hObject, /* the object's handle */ CK_ATTRIBUTE_PTR pTemplate, /* specifies attrs and values */ CK_ULONG ulCount /* attributes in template */ ); #endif /* C_FindObjectsInit initializes a search for token and session * objects that match a template. */ CK_PKCS11_FUNCTION_INFO(C_FindObjectsInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_ATTRIBUTE_PTR pTemplate, /* attribute values to match */ CK_ULONG ulCount /* attrs in search template */ ); #endif /* C_FindObjects continues a search for token and session * objects that match a template, obtaining additional object * handles. */ CK_PKCS11_FUNCTION_INFO(C_FindObjects) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_OBJECT_HANDLE_PTR phObject, /* gets obj. handles */ CK_ULONG ulMaxObjectCount, /* max handles to get */ CK_ULONG_PTR pulObjectCount /* actual # returned */ ); #endif /* C_FindObjectsFinal finishes a search for token and session * objects. */ CK_PKCS11_FUNCTION_INFO(C_FindObjectsFinal) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession /* the session's handle */ ); #endif /* Encryption and decryption */ /* C_EncryptInit initializes an encryption operation. */ CK_PKCS11_FUNCTION_INFO(C_EncryptInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the encryption mechanism */ CK_OBJECT_HANDLE hKey /* handle of encryption key */ ); #endif /* C_Encrypt encrypts single-part data. */ CK_PKCS11_FUNCTION_INFO(C_Encrypt) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pData, /* the plaintext data */ CK_ULONG ulDataLen, /* bytes of plaintext */ CK_BYTE_PTR pEncryptedData, /* gets ciphertext */ CK_ULONG_PTR pulEncryptedDataLen /* gets c-text size */ ); #endif /* C_EncryptUpdate continues a multiple-part encryption * operation. */ CK_PKCS11_FUNCTION_INFO(C_EncryptUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pPart, /* the plaintext data */ CK_ULONG ulPartLen, /* plaintext data len */ CK_BYTE_PTR pEncryptedPart, /* gets ciphertext */ CK_ULONG_PTR pulEncryptedPartLen /* gets c-text size */ ); #endif /* C_EncryptFinal finishes a multiple-part encryption * operation. */ CK_PKCS11_FUNCTION_INFO(C_EncryptFinal) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session handle */ CK_BYTE_PTR pLastEncryptedPart, /* last c-text */ CK_ULONG_PTR pulLastEncryptedPartLen /* gets last size */ ); #endif /* C_DecryptInit initializes a decryption operation. */ CK_PKCS11_FUNCTION_INFO(C_DecryptInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the decryption mechanism */ CK_OBJECT_HANDLE hKey /* handle of decryption key */ ); #endif /* C_Decrypt decrypts encrypted data in a single part. */ CK_PKCS11_FUNCTION_INFO(C_Decrypt) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pEncryptedData, /* ciphertext */ CK_ULONG ulEncryptedDataLen, /* ciphertext length */ CK_BYTE_PTR pData, /* gets plaintext */ CK_ULONG_PTR pulDataLen /* gets p-text size */ ); #endif /* C_DecryptUpdate continues a multiple-part decryption * operation. */ CK_PKCS11_FUNCTION_INFO(C_DecryptUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pEncryptedPart, /* encrypted data */ CK_ULONG ulEncryptedPartLen, /* input length */ CK_BYTE_PTR pPart, /* gets plaintext */ CK_ULONG_PTR pulPartLen /* p-text size */ ); #endif /* C_DecryptFinal finishes a multiple-part decryption * operation. */ CK_PKCS11_FUNCTION_INFO(C_DecryptFinal) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pLastPart, /* gets plaintext */ CK_ULONG_PTR pulLastPartLen /* p-text size */ ); #endif /* Message digesting */ /* C_DigestInit initializes a message-digesting operation. */ CK_PKCS11_FUNCTION_INFO(C_DigestInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism /* the digesting mechanism */ ); #endif /* C_Digest digests data in a single part. */ CK_PKCS11_FUNCTION_INFO(C_Digest) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pData, /* data to be digested */ CK_ULONG ulDataLen, /* bytes of data to digest */ CK_BYTE_PTR pDigest, /* gets the message digest */ CK_ULONG_PTR pulDigestLen /* gets digest length */ ); #endif /* C_DigestUpdate continues a multiple-part message-digesting * operation. */ CK_PKCS11_FUNCTION_INFO(C_DigestUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pPart, /* data to be digested */ CK_ULONG ulPartLen /* bytes of data to be digested */ ); #endif /* C_DigestKey continues a multi-part message-digesting * operation, by digesting the value of a secret key as part of * the data already digested. */ CK_PKCS11_FUNCTION_INFO(C_DigestKey) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_OBJECT_HANDLE hKey /* secret key to digest */ ); #endif /* C_DigestFinal finishes a multiple-part message-digesting * operation. */ CK_PKCS11_FUNCTION_INFO(C_DigestFinal) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pDigest, /* gets the message digest */ CK_ULONG_PTR pulDigestLen /* gets byte count of digest */ ); #endif /* Signing and MACing */ /* C_SignInit initializes a signature (private key encryption) * operation, where the signature is (will be) an appendix to * the data, and plaintext cannot be recovered from the *signature. */ CK_PKCS11_FUNCTION_INFO(C_SignInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the signature mechanism */ CK_OBJECT_HANDLE hKey /* handle of signature key */ ); #endif /* C_Sign signs (encrypts with private key) data in a single * part, where the signature is (will be) an appendix to the * data, and plaintext cannot be recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_Sign) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pData, /* the data to sign */ CK_ULONG ulDataLen, /* count of bytes to sign */ CK_BYTE_PTR pSignature, /* gets the signature */ CK_ULONG_PTR pulSignatureLen /* gets signature length */ ); #endif /* C_SignUpdate continues a multiple-part signature operation, * where the signature is (will be) an appendix to the data, * and plaintext cannot be recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_SignUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pPart, /* the data to sign */ CK_ULONG ulPartLen /* count of bytes to sign */ ); #endif /* C_SignFinal finishes a multiple-part signature operation, * returning the signature. */ CK_PKCS11_FUNCTION_INFO(C_SignFinal) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pSignature, /* gets the signature */ CK_ULONG_PTR pulSignatureLen /* gets signature length */ ); #endif /* C_SignRecoverInit initializes a signature operation, where * the data can be recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_SignRecoverInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the signature mechanism */ CK_OBJECT_HANDLE hKey /* handle of the signature key */ ); #endif /* C_SignRecover signs data in a single operation, where the * data can be recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_SignRecover) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pData, /* the data to sign */ CK_ULONG ulDataLen, /* count of bytes to sign */ CK_BYTE_PTR pSignature, /* gets the signature */ CK_ULONG_PTR pulSignatureLen /* gets signature length */ ); #endif /* Verifying signatures and MACs */ /* C_VerifyInit initializes a verification operation, where the * signature is an appendix to the data, and plaintext cannot * cannot be recovered from the signature (e.g. DSA). */ CK_PKCS11_FUNCTION_INFO(C_VerifyInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the verification mechanism */ CK_OBJECT_HANDLE hKey /* verification key */ ); #endif /* C_Verify verifies a signature in a single-part operation, * where the signature is an appendix to the data, and plaintext * cannot be recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_Verify) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pData, /* signed data */ CK_ULONG ulDataLen, /* length of signed data */ CK_BYTE_PTR pSignature, /* signature */ CK_ULONG ulSignatureLen /* signature length*/ ); #endif /* C_VerifyUpdate continues a multiple-part verification * operation, where the signature is an appendix to the data, * and plaintext cannot be recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_VerifyUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pPart, /* signed data */ CK_ULONG ulPartLen /* length of signed data */ ); #endif /* C_VerifyFinal finishes a multiple-part verification * operation, checking the signature. */ CK_PKCS11_FUNCTION_INFO(C_VerifyFinal) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pSignature, /* signature to verify */ CK_ULONG ulSignatureLen /* signature length */ ); #endif /* C_VerifyRecoverInit initializes a signature verification * operation, where the data is recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_VerifyRecoverInit) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the verification mechanism */ CK_OBJECT_HANDLE hKey /* verification key */ ); #endif /* C_VerifyRecover verifies a signature in a single-part * operation, where the data is recovered from the signature. */ CK_PKCS11_FUNCTION_INFO(C_VerifyRecover) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pSignature, /* signature to verify */ CK_ULONG ulSignatureLen, /* signature length */ CK_BYTE_PTR pData, /* gets signed data */ CK_ULONG_PTR pulDataLen /* gets signed data len */ ); #endif /* Dual-function cryptographic operations */ /* C_DigestEncryptUpdate continues a multiple-part digesting * and encryption operation. */ CK_PKCS11_FUNCTION_INFO(C_DigestEncryptUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pPart, /* the plaintext data */ CK_ULONG ulPartLen, /* plaintext length */ CK_BYTE_PTR pEncryptedPart, /* gets ciphertext */ CK_ULONG_PTR pulEncryptedPartLen /* gets c-text length */ ); #endif /* C_DecryptDigestUpdate continues a multiple-part decryption and * digesting operation. */ CK_PKCS11_FUNCTION_INFO(C_DecryptDigestUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pEncryptedPart, /* ciphertext */ CK_ULONG ulEncryptedPartLen, /* ciphertext length */ CK_BYTE_PTR pPart, /* gets plaintext */ CK_ULONG_PTR pulPartLen /* gets plaintext len */ ); #endif /* C_SignEncryptUpdate continues a multiple-part signing and * encryption operation. */ CK_PKCS11_FUNCTION_INFO(C_SignEncryptUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pPart, /* the plaintext data */ CK_ULONG ulPartLen, /* plaintext length */ CK_BYTE_PTR pEncryptedPart, /* gets ciphertext */ CK_ULONG_PTR pulEncryptedPartLen /* gets c-text length */ ); #endif /* C_DecryptVerifyUpdate continues a multiple-part decryption and * verify operation. */ CK_PKCS11_FUNCTION_INFO(C_DecryptVerifyUpdate) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_BYTE_PTR pEncryptedPart, /* ciphertext */ CK_ULONG ulEncryptedPartLen, /* ciphertext length */ CK_BYTE_PTR pPart, /* gets plaintext */ CK_ULONG_PTR pulPartLen /* gets p-text length */ ); #endif /* Key management */ /* C_GenerateKey generates a secret key, creating a new key * object. */ CK_PKCS11_FUNCTION_INFO(C_GenerateKey) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* key generation mech. */ CK_ATTRIBUTE_PTR pTemplate, /* template for new key */ CK_ULONG ulCount, /* # of attrs in template */ CK_OBJECT_HANDLE_PTR phKey /* gets handle of new key */ ); #endif /* C_GenerateKeyPair generates a public-key/private-key pair, * creating new key objects. */ CK_PKCS11_FUNCTION_INFO(C_GenerateKeyPair) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session * handle */ CK_MECHANISM_PTR pMechanism, /* key-gen * mech. */ CK_ATTRIBUTE_PTR pPublicKeyTemplate, /* template * for pub. * key */ CK_ULONG ulPublicKeyAttributeCount, /* # pub. * attrs. */ CK_ATTRIBUTE_PTR pPrivateKeyTemplate, /* template * for priv. * key */ CK_ULONG ulPrivateKeyAttributeCount, /* # priv. * attrs. */ CK_OBJECT_HANDLE_PTR phPublicKey, /* gets pub. * key * handle */ CK_OBJECT_HANDLE_PTR phPrivateKey /* gets * priv. key * handle */ ); #endif /* C_WrapKey wraps (i.e., encrypts) a key. */ CK_PKCS11_FUNCTION_INFO(C_WrapKey) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_MECHANISM_PTR pMechanism, /* the wrapping mechanism */ CK_OBJECT_HANDLE hWrappingKey, /* wrapping key */ CK_OBJECT_HANDLE hKey, /* key to be wrapped */ CK_BYTE_PTR pWrappedKey, /* gets wrapped key */ CK_ULONG_PTR pulWrappedKeyLen /* gets wrapped key size */ ); #endif /* C_UnwrapKey unwraps (decrypts) a wrapped key, creating a new * key object. */ CK_PKCS11_FUNCTION_INFO(C_UnwrapKey) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_MECHANISM_PTR pMechanism, /* unwrapping mech. */ CK_OBJECT_HANDLE hUnwrappingKey, /* unwrapping key */ CK_BYTE_PTR pWrappedKey, /* the wrapped key */ CK_ULONG ulWrappedKeyLen, /* wrapped key len */ CK_ATTRIBUTE_PTR pTemplate, /* new key template */ CK_ULONG ulAttributeCount, /* template length */ CK_OBJECT_HANDLE_PTR phKey /* gets new handle */ ); #endif /* C_DeriveKey derives a key from a base key, creating a new key * object. */ CK_PKCS11_FUNCTION_INFO(C_DeriveKey) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* session's handle */ CK_MECHANISM_PTR pMechanism, /* key deriv. mech. */ CK_OBJECT_HANDLE hBaseKey, /* base key */ CK_ATTRIBUTE_PTR pTemplate, /* new key template */ CK_ULONG ulAttributeCount, /* template length */ CK_OBJECT_HANDLE_PTR phKey /* gets new handle */ ); #endif /* Random number generation */ /* C_SeedRandom mixes additional seed material into the token's * random number generator. */ CK_PKCS11_FUNCTION_INFO(C_SeedRandom) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR pSeed, /* the seed material */ CK_ULONG ulSeedLen /* length of seed material */ ); #endif /* C_GenerateRandom generates random data. */ CK_PKCS11_FUNCTION_INFO(C_GenerateRandom) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession, /* the session's handle */ CK_BYTE_PTR RandomData, /* receives the random data */ CK_ULONG ulRandomLen /* # of bytes to generate */ ); #endif /* Parallel function management */ /* C_GetFunctionStatus is a legacy function; it obtains an * updated status of a function running in parallel with an * application. */ CK_PKCS11_FUNCTION_INFO(C_GetFunctionStatus) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession /* the session's handle */ ); #endif /* C_CancelFunction is a legacy function; it cancels a function * running in parallel. */ CK_PKCS11_FUNCTION_INFO(C_CancelFunction) #ifdef CK_NEED_ARG_LIST (CK_SESSION_HANDLE hSession /* the session's handle */ ); #endif /* Functions added in for Cryptoki Version 2.01 or later */ /* C_WaitForSlotEvent waits for a slot event (token insertion, * removal, etc.) to occur. */ CK_PKCS11_FUNCTION_INFO(C_WaitForSlotEvent) #ifdef CK_NEED_ARG_LIST (CK_FLAGS flags, /* blocking/nonblocking flag */ CK_SLOT_ID_PTR pSlot, /* location that receives the slot ID */ CK_VOID_PTR pRserved /* reserved. Should be NULL_PTR */ ); #endif mstflint-4.26.0/mft_utils/hsmclient/inc/rsa/pkcs11t.h0000644000175000017500000017257314522641732022713 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _PKCS11T_H_ #define _PKCS11T_H_ 1 #define CRYPTOKI_VERSION_MAJOR 2 #define CRYPTOKI_VERSION_MINOR 20 #define CRYPTOKI_VERSION_AMENDMENT 3 #define CK_TRUE 1 #define CK_FALSE 0 #ifndef CK_DISABLE_TRUE_FALSE #ifndef FALSE #define FALSE CK_FALSE #endif #ifndef TRUE #define TRUE CK_TRUE #endif #endif /* an unsigned 8-bit value */ typedef unsigned char CK_BYTE; /* an unsigned 8-bit character */ typedef CK_BYTE CK_CHAR; /* an 8-bit UTF-8 character */ typedef CK_BYTE CK_UTF8CHAR; /* a BYTE-sized Boolean flag */ typedef CK_BYTE CK_BBOOL; /* an unsigned value, at least 32 bits long */ typedef unsigned long int CK_ULONG; /* a signed value, the same size as a CK_ULONG */ /* CK_LONG is new for v2.0 */ typedef long int CK_LONG; /* at least 32 bits; each bit is a Boolean flag */ typedef CK_ULONG CK_FLAGS; /* some special values for certain CK_ULONG variables */ #define CK_UNAVAILABLE_INFORMATION (~0UL) #define CK_EFFECTIVELY_INFINITE 0 typedef CK_BYTE CK_PTR CK_BYTE_PTR; typedef CK_CHAR CK_PTR CK_CHAR_PTR; typedef CK_UTF8CHAR CK_PTR CK_UTF8CHAR_PTR; typedef CK_ULONG CK_PTR CK_ULONG_PTR; typedef void CK_PTR CK_VOID_PTR; /* Pointer to a CK_VOID_PTR-- i.e., pointer to pointer to void */ typedef CK_VOID_PTR CK_PTR CK_VOID_PTR_PTR; /* The following value is always invalid if used as a session */ /* handle or object handle */ #define CK_INVALID_HANDLE 0 typedef struct CK_VERSION { CK_BYTE major; /* integer portion of version number */ CK_BYTE minor; /* 1/100ths portion of version number */ } CK_VERSION; typedef CK_VERSION CK_PTR CK_VERSION_PTR; typedef struct CK_INFO { /* manufacturerID and libraryDecription have been changed from * CK_CHAR to CK_UTF8CHAR for v2.10 */ CK_VERSION cryptokiVersion; /* Cryptoki interface ver */ CK_UTF8CHAR manufacturerID[32]; /* blank padded */ CK_FLAGS flags; /* must be zero */ /* libraryDescription and libraryVersion are new for v2.0 */ CK_UTF8CHAR libraryDescription[32]; /* blank padded */ CK_VERSION libraryVersion; /* version of library */ } CK_INFO; typedef CK_INFO CK_PTR CK_INFO_PTR; /* CK_NOTIFICATION enumerates the types of notifications that * Cryptoki provides to an application */ /* CK_NOTIFICATION has been changed from an enum to a CK_ULONG * for v2.0 */ typedef CK_ULONG CK_NOTIFICATION; #define CKN_SURRENDER 0 /* The following notification is new for PKCS #11 v2.20 amendment 3 */ #define CKN_OTP_CHANGED 1 typedef CK_ULONG CK_SLOT_ID; typedef CK_SLOT_ID CK_PTR CK_SLOT_ID_PTR; /* CK_SLOT_INFO provides information about a slot */ typedef struct CK_SLOT_INFO { /* slotDescription and manufacturerID have been changed from * CK_CHAR to CK_UTF8CHAR for v2.10 */ CK_UTF8CHAR slotDescription[64]; /* blank padded */ CK_UTF8CHAR manufacturerID[32]; /* blank padded */ CK_FLAGS flags; /* hardwareVersion and firmwareVersion are new for v2.0 */ CK_VERSION hardwareVersion; /* version of hardware */ CK_VERSION firmwareVersion; /* version of firmware */ } CK_SLOT_INFO; /* flags: bit flags that provide capabilities of the slot * Bit Flag Mask Meaning */ #define CKF_TOKEN_PRESENT 0x00000001 /* a token is there */ #define CKF_REMOVABLE_DEVICE 0x00000002 /* removable devices*/ #define CKF_HW_SLOT 0x00000004 /* hardware slot */ typedef CK_SLOT_INFO CK_PTR CK_SLOT_INFO_PTR; /* CK_TOKEN_INFO provides information about a token */ typedef struct CK_TOKEN_INFO { /* label, manufacturerID, and model have been changed from * CK_CHAR to CK_UTF8CHAR for v2.10 */ CK_UTF8CHAR label[32]; /* blank padded */ CK_UTF8CHAR manufacturerID[32]; /* blank padded */ CK_UTF8CHAR model[16]; /* blank padded */ CK_CHAR serialNumber[16]; /* blank padded */ CK_FLAGS flags; /* see below */ /* ulMaxSessionCount, ulSessionCount, ulMaxRwSessionCount, * ulRwSessionCount, ulMaxPinLen, and ulMinPinLen have all been * changed from CK_USHORT to CK_ULONG for v2.0 */ CK_ULONG ulMaxSessionCount; /* max open sessions */ CK_ULONG ulSessionCount; /* sess. now open */ CK_ULONG ulMaxRwSessionCount; /* max R/W sessions */ CK_ULONG ulRwSessionCount; /* R/W sess. now open */ CK_ULONG ulMaxPinLen; /* in bytes */ CK_ULONG ulMinPinLen; /* in bytes */ CK_ULONG ulTotalPublicMemory; /* in bytes */ CK_ULONG ulFreePublicMemory; /* in bytes */ CK_ULONG ulTotalPrivateMemory; /* in bytes */ CK_ULONG ulFreePrivateMemory; /* in bytes */ /* hardwareVersion, firmwareVersion, and time are new for * v2.0 */ CK_VERSION hardwareVersion; /* version of hardware */ CK_VERSION firmwareVersion; /* version of firmware */ CK_CHAR utcTime[16]; /* time */ } CK_TOKEN_INFO; /* The flags parameter is defined as follows: * Bit Flag Mask Meaning */ #define CKF_RNG \ 0x00000001 /* has random # \ * generator */ #define CKF_WRITE_PROTECTED \ 0x00000002 /* token is \ * write- \ * protected */ #define CKF_LOGIN_REQUIRED \ 0x00000004 /* user must \ * login */ #define CKF_USER_PIN_INITIALIZED \ 0x00000008 /* normal user's \ * PIN is set */ /* CKF_RESTORE_KEY_NOT_NEEDED is new for v2.0. If it is set, * that means that *every* time the state of cryptographic * operations of a session is successfully saved, all keys * needed to continue those operations are stored in the state */ #define CKF_RESTORE_KEY_NOT_NEEDED 0x00000020 /* CKF_CLOCK_ON_TOKEN is new for v2.0. If it is set, that means * that the token has some sort of clock. The time on that * clock is returned in the token info structure */ #define CKF_CLOCK_ON_TOKEN 0x00000040 /* CKF_PROTECTED_AUTHENTICATION_PATH is new for v2.0. If it is * set, that means that there is some way for the user to login * without sending a PIN through the Cryptoki library itself */ #define CKF_PROTECTED_AUTHENTICATION_PATH 0x00000100 /* CKF_DUAL_CRYPTO_OPERATIONS is new for v2.0. If it is true, * that means that a single session with the token can perform * dual simultaneous cryptographic operations (digest and * encrypt; decrypt and digest; sign and encrypt; and decrypt * and sign) */ #define CKF_DUAL_CRYPTO_OPERATIONS 0x00000200 /* CKF_TOKEN_INITIALIZED if new for v2.10. If it is true, the * token has been initialized using C_InitializeToken or an * equivalent mechanism outside the scope of PKCS #11. * Calling C_InitializeToken when this flag is set will cause * the token to be reinitialized. */ #define CKF_TOKEN_INITIALIZED 0x00000400 /* CKF_SECONDARY_AUTHENTICATION if new for v2.10. If it is * true, the token supports secondary authentication for * private key objects. This flag is deprecated in v2.11 and onwards. */ #define CKF_SECONDARY_AUTHENTICATION 0x00000800 /* CKF_USER_PIN_COUNT_LOW if new for v2.10. If it is true, an * incorrect user login PIN has been entered at least once * since the last successful authentication. */ #define CKF_USER_PIN_COUNT_LOW 0x00010000 /* CKF_USER_PIN_FINAL_TRY if new for v2.10. If it is true, * supplying an incorrect user PIN will it to become locked. */ #define CKF_USER_PIN_FINAL_TRY 0x00020000 /* CKF_USER_PIN_LOCKED if new for v2.10. If it is true, the * user PIN has been locked. User login to the token is not * possible. */ #define CKF_USER_PIN_LOCKED 0x00040000 /* CKF_USER_PIN_TO_BE_CHANGED if new for v2.10. If it is true, * the user PIN value is the default value set by token * initialization or manufacturing, or the PIN has been * expired by the card. */ #define CKF_USER_PIN_TO_BE_CHANGED 0x00080000 /* CKF_SO_PIN_COUNT_LOW if new for v2.10. If it is true, an * incorrect SO login PIN has been entered at least once since * the last successful authentication. */ #define CKF_SO_PIN_COUNT_LOW 0x00100000 /* CKF_SO_PIN_FINAL_TRY if new for v2.10. If it is true, * supplying an incorrect SO PIN will it to become locked. */ #define CKF_SO_PIN_FINAL_TRY 0x00200000 /* CKF_SO_PIN_LOCKED if new for v2.10. If it is true, the SO * PIN has been locked. SO login to the token is not possible. */ #define CKF_SO_PIN_LOCKED 0x00400000 /* CKF_SO_PIN_TO_BE_CHANGED if new for v2.10. If it is true, * the SO PIN value is the default value set by token * initialization or manufacturing, or the PIN has been * expired by the card. */ #define CKF_SO_PIN_TO_BE_CHANGED 0x00800000 typedef CK_TOKEN_INFO CK_PTR CK_TOKEN_INFO_PTR; /* CK_SESSION_HANDLE is a Cryptoki-assigned value that * identifies a session */ typedef CK_ULONG CK_SESSION_HANDLE; typedef CK_SESSION_HANDLE CK_PTR CK_SESSION_HANDLE_PTR; /* CK_USER_TYPE enumerates the types of Cryptoki users */ /* CK_USER_TYPE has been changed from an enum to a CK_ULONG for * v2.0 */ typedef CK_ULONG CK_USER_TYPE; /* Security Officer */ #define CKU_SO 0 /* Normal user */ #define CKU_USER 1 /* Context specific (added in v2.20) */ #define CKU_CONTEXT_SPECIFIC 2 /* CK_STATE enumerates the session states */ /* CK_STATE has been changed from an enum to a CK_ULONG for * v2.0 */ typedef CK_ULONG CK_STATE; #define CKS_RO_PUBLIC_SESSION 0 #define CKS_RO_USER_FUNCTIONS 1 #define CKS_RW_PUBLIC_SESSION 2 #define CKS_RW_USER_FUNCTIONS 3 #define CKS_RW_SO_FUNCTIONS 4 /* CK_SESSION_INFO provides information about a session */ typedef struct CK_SESSION_INFO { CK_SLOT_ID slotID; CK_STATE state; CK_FLAGS flags; /* see below */ /* ulDeviceError was changed from CK_USHORT to CK_ULONG for * v2.0 */ CK_ULONG ulDeviceError; /* device-dependent error code */ } CK_SESSION_INFO; /* The flags are defined in the following table: * Bit Flag Mask Meaning */ #define CKF_RW_SESSION 0x00000002 /* session is r/w */ #define CKF_SERIAL_SESSION 0x00000004 /* no parallel */ typedef CK_SESSION_INFO CK_PTR CK_SESSION_INFO_PTR; /* CK_OBJECT_HANDLE is a token-specific identifier for an * object */ typedef CK_ULONG CK_OBJECT_HANDLE; typedef CK_OBJECT_HANDLE CK_PTR CK_OBJECT_HANDLE_PTR; /* CK_OBJECT_CLASS is a value that identifies the classes (or * types) of objects that Cryptoki recognizes. It is defined * as follows: */ /* CK_OBJECT_CLASS was changed from CK_USHORT to CK_ULONG for * v2.0 */ typedef CK_ULONG CK_OBJECT_CLASS; /* The following classes of objects are defined: */ /* CKO_HW_FEATURE is new for v2.10 */ /* CKO_DOMAIN_PARAMETERS is new for v2.11 */ /* CKO_MECHANISM is new for v2.20 */ #define CKO_DATA 0x00000000 #define CKO_CERTIFICATE 0x00000001 #define CKO_PUBLIC_KEY 0x00000002 #define CKO_PRIVATE_KEY 0x00000003 #define CKO_SECRET_KEY 0x00000004 #define CKO_HW_FEATURE 0x00000005 #define CKO_DOMAIN_PARAMETERS 0x00000006 #define CKO_MECHANISM 0x00000007 /* CKO_OTP_KEY is new for PKCS #11 v2.20 amendment 1 */ #define CKO_OTP_KEY 0x00000008 #define CKO_VENDOR_DEFINED 0x80000000 typedef CK_OBJECT_CLASS CK_PTR CK_OBJECT_CLASS_PTR; /* CK_HW_FEATURE_TYPE is new for v2.10. CK_HW_FEATURE_TYPE is a * value that identifies the hardware feature type of an object * with CK_OBJECT_CLASS equal to CKO_HW_FEATURE. */ typedef CK_ULONG CK_HW_FEATURE_TYPE; /* The following hardware feature types are defined */ /* CKH_USER_INTERFACE is new for v2.20 */ #define CKH_MONOTONIC_COUNTER 0x00000001 #define CKH_CLOCK 0x00000002 #define CKH_USER_INTERFACE 0x00000003 #define CKH_VENDOR_DEFINED 0x80000000 /* CK_KEY_TYPE is a value that identifies a key type */ /* CK_KEY_TYPE was changed from CK_USHORT to CK_ULONG for v2.0 */ typedef CK_ULONG CK_KEY_TYPE; /* the following key types are defined: */ #define CKK_RSA 0x00000000 #define CKK_DSA 0x00000001 #define CKK_DH 0x00000002 /* CKK_ECDSA and CKK_KEA are new for v2.0 */ /* CKK_ECDSA is deprecated in v2.11, CKK_EC is preferred. */ #define CKK_ECDSA 0x00000003 #define CKK_EC 0x00000003 #define CKK_X9_42_DH 0x00000004 #define CKK_KEA 0x00000005 #define CKK_GENERIC_SECRET 0x00000010 #define CKK_RC2 0x00000011 #define CKK_RC4 0x00000012 #define CKK_DES 0x00000013 #define CKK_DES2 0x00000014 #define CKK_DES3 0x00000015 /* all these key types are new for v2.0 */ #define CKK_CAST 0x00000016 #define CKK_CAST3 0x00000017 /* CKK_CAST5 is deprecated in v2.11, CKK_CAST128 is preferred. */ #define CKK_CAST5 0x00000018 #define CKK_CAST128 0x00000018 #define CKK_RC5 0x00000019 #define CKK_IDEA 0x0000001A #define CKK_SKIPJACK 0x0000001B #define CKK_BATON 0x0000001C #define CKK_JUNIPER 0x0000001D #define CKK_CDMF 0x0000001E #define CKK_AES 0x0000001F /* BlowFish and TwoFish are new for v2.20 */ #define CKK_BLOWFISH 0x00000020 #define CKK_TWOFISH 0x00000021 /* SecurID, HOTP, and ACTI are new for PKCS #11 v2.20 amendment 1 */ #define CKK_SECURID 0x00000022 #define CKK_HOTP 0x00000023 #define CKK_ACTI 0x00000024 /* Camellia is new for PKCS #11 v2.20 amendment 3 */ #define CKK_CAMELLIA 0x00000025 /* ARIA is new for PKCS #11 v2.20 amendment 3 */ #define CKK_ARIA 0x00000026 #define CKK_VENDOR_DEFINED 0x80000000 /* CK_CERTIFICATE_TYPE is a value that identifies a certificate * type */ /* CK_CERTIFICATE_TYPE was changed from CK_USHORT to CK_ULONG * for v2.0 */ typedef CK_ULONG CK_CERTIFICATE_TYPE; /* The following certificate types are defined: */ /* CKC_X_509_ATTR_CERT is new for v2.10 */ /* CKC_WTLS is new for v2.20 */ #define CKC_X_509 0x00000000 #define CKC_X_509_ATTR_CERT 0x00000001 #define CKC_WTLS 0x00000002 #define CKC_VENDOR_DEFINED 0x80000000 /* CK_ATTRIBUTE_TYPE is a value that identifies an attribute * type */ /* CK_ATTRIBUTE_TYPE was changed from CK_USHORT to CK_ULONG for * v2.0 */ typedef CK_ULONG CK_ATTRIBUTE_TYPE; /* The CKF_ARRAY_ATTRIBUTE flag identifies an attribute which consists of an array of values. */ #define CKF_ARRAY_ATTRIBUTE 0x40000000 /* The following OTP-related defines are new for PKCS #11 v2.20 amendment 1 and relates to the CKA_OTP_FORMAT attribute */ #define CK_OTP_FORMAT_DECIMAL 0 #define CK_OTP_FORMAT_HEXADECIMAL 1 #define CK_OTP_FORMAT_ALPHANUMERIC 2 #define CK_OTP_FORMAT_BINARY 3 /* The following OTP-related defines are new for PKCS #11 v2.20 amendment 1 and relates to the CKA_OTP_..._REQUIREMENT attributes */ #define CK_OTP_PARAM_IGNORED 0 #define CK_OTP_PARAM_OPTIONAL 1 #define CK_OTP_PARAM_MANDATORY 2 /* The following attribute types are defined: */ #define CKA_CLASS 0x00000000 #define CKA_TOKEN 0x00000001 #define CKA_PRIVATE 0x00000002 #define CKA_LABEL 0x00000003 #define CKA_APPLICATION 0x00000010 #define CKA_VALUE 0x00000011 /* CKA_OBJECT_ID is new for v2.10 */ #define CKA_OBJECT_ID 0x00000012 #define CKA_CERTIFICATE_TYPE 0x00000080 #define CKA_ISSUER 0x00000081 #define CKA_SERIAL_NUMBER 0x00000082 /* CKA_AC_ISSUER, CKA_OWNER, and CKA_ATTR_TYPES are new * for v2.10 */ #define CKA_AC_ISSUER 0x00000083 #define CKA_OWNER 0x00000084 #define CKA_ATTR_TYPES 0x00000085 /* CKA_TRUSTED is new for v2.11 */ #define CKA_TRUSTED 0x00000086 /* CKA_CERTIFICATE_CATEGORY ... * CKA_CHECK_VALUE are new for v2.20 */ #define CKA_CERTIFICATE_CATEGORY 0x00000087 #define CKA_JAVA_MIDP_SECURITY_DOMAIN 0x00000088 #define CKA_URL 0x00000089 #define CKA_HASH_OF_SUBJECT_PUBLIC_KEY 0x0000008A #define CKA_HASH_OF_ISSUER_PUBLIC_KEY 0x0000008B #define CKA_CHECK_VALUE 0x00000090 #define CKA_KEY_TYPE 0x00000100 #define CKA_SUBJECT 0x00000101 #define CKA_ID 0x00000102 #define CKA_SENSITIVE 0x00000103 #define CKA_ENCRYPT 0x00000104 #define CKA_DECRYPT 0x00000105 #define CKA_WRAP 0x00000106 #define CKA_UNWRAP 0x00000107 #define CKA_SIGN 0x00000108 #define CKA_SIGN_RECOVER 0x00000109 #define CKA_VERIFY 0x0000010A #define CKA_VERIFY_RECOVER 0x0000010B #define CKA_DERIVE 0x0000010C #define CKA_START_DATE 0x00000110 #define CKA_END_DATE 0x00000111 #define CKA_MODULUS 0x00000120 #define CKA_MODULUS_BITS 0x00000121 #define CKA_PUBLIC_EXPONENT 0x00000122 #define CKA_PRIVATE_EXPONENT 0x00000123 #define CKA_PRIME_1 0x00000124 #define CKA_PRIME_2 0x00000125 #define CKA_EXPONENT_1 0x00000126 #define CKA_EXPONENT_2 0x00000127 #define CKA_COEFFICIENT 0x00000128 #define CKA_PRIME 0x00000130 #define CKA_SUBPRIME 0x00000131 #define CKA_BASE 0x00000132 /* CKA_PRIME_BITS and CKA_SUB_PRIME_BITS are new for v2.11 */ #define CKA_PRIME_BITS 0x00000133 #define CKA_SUBPRIME_BITS 0x00000134 #define CKA_SUB_PRIME_BITS CKA_SUBPRIME_BITS /* (To retain backwards-compatibility) */ #define CKA_VALUE_BITS 0x00000160 #define CKA_VALUE_LEN 0x00000161 /* CKA_EXTRACTABLE, CKA_LOCAL, CKA_NEVER_EXTRACTABLE, * CKA_ALWAYS_SENSITIVE, CKA_MODIFIABLE, CKA_ECDSA_PARAMS, * and CKA_EC_POINT are new for v2.0 */ #define CKA_EXTRACTABLE 0x00000162 #define CKA_LOCAL 0x00000163 #define CKA_NEVER_EXTRACTABLE 0x00000164 #define CKA_ALWAYS_SENSITIVE 0x00000165 /* CKA_KEY_GEN_MECHANISM is new for v2.11 */ #define CKA_KEY_GEN_MECHANISM 0x00000166 #define CKA_MODIFIABLE 0x00000170 /* CKA_ECDSA_PARAMS is deprecated in v2.11, * CKA_EC_PARAMS is preferred. */ #define CKA_ECDSA_PARAMS 0x00000180 #define CKA_EC_PARAMS 0x00000180 #define CKA_EC_POINT 0x00000181 /* CKA_SECONDARY_AUTH, CKA_AUTH_PIN_FLAGS, * are new for v2.10. Deprecated in v2.11 and onwards. */ #define CKA_SECONDARY_AUTH 0x00000200 #define CKA_AUTH_PIN_FLAGS 0x00000201 /* CKA_ALWAYS_AUTHENTICATE ... * CKA_UNWRAP_TEMPLATE are new for v2.20 */ #define CKA_ALWAYS_AUTHENTICATE 0x00000202 #define CKA_WRAP_WITH_TRUSTED 0x00000210 #define CKA_WRAP_TEMPLATE (CKF_ARRAY_ATTRIBUTE | 0x00000211) #define CKA_UNWRAP_TEMPLATE (CKF_ARRAY_ATTRIBUTE | 0x00000212) #define CKA_DERIVE_TEMPLATE (CKF_ARRAY_ATTRIBUTE | 0x00000213) /* CKA_OTP... atttributes are new for PKCS #11 v2.20 amendment 3. */ #define CKA_OTP_FORMAT 0x00000220 #define CKA_OTP_LENGTH 0x00000221 #define CKA_OTP_TIME_INTERVAL 0x00000222 #define CKA_OTP_USER_FRIENDLY_MODE 0x00000223 #define CKA_OTP_CHALLENGE_REQUIREMENT 0x00000224 #define CKA_OTP_TIME_REQUIREMENT 0x00000225 #define CKA_OTP_COUNTER_REQUIREMENT 0x00000226 #define CKA_OTP_PIN_REQUIREMENT 0x00000227 #define CKA_OTP_COUNTER 0x0000022E #define CKA_OTP_TIME 0x0000022F #define CKA_OTP_USER_IDENTIFIER 0x0000022A #define CKA_OTP_SERVICE_IDENTIFIER 0x0000022B #define CKA_OTP_SERVICE_LOGO 0x0000022C #define CKA_OTP_SERVICE_LOGO_TYPE 0x0000022D /* CKA_HW_FEATURE_TYPE, CKA_RESET_ON_INIT, and CKA_HAS_RESET * are new for v2.10 */ #define CKA_HW_FEATURE_TYPE 0x00000300 #define CKA_RESET_ON_INIT 0x00000301 #define CKA_HAS_RESET 0x00000302 /* The following attributes are new for v2.20 */ #define CKA_PIXEL_X 0x00000400 #define CKA_PIXEL_Y 0x00000401 #define CKA_RESOLUTION 0x00000402 #define CKA_CHAR_ROWS 0x00000403 #define CKA_CHAR_COLUMNS 0x00000404 #define CKA_COLOR 0x00000405 #define CKA_BITS_PER_PIXEL 0x00000406 #define CKA_CHAR_SETS 0x00000480 #define CKA_ENCODING_METHODS 0x00000481 #define CKA_MIME_TYPES 0x00000482 #define CKA_MECHANISM_TYPE 0x00000500 #define CKA_REQUIRED_CMS_ATTRIBUTES 0x00000501 #define CKA_DEFAULT_CMS_ATTRIBUTES 0x00000502 #define CKA_SUPPORTED_CMS_ATTRIBUTES 0x00000503 #define CKA_ALLOWED_MECHANISMS (CKF_ARRAY_ATTRIBUTE | 0x00000600) #define CKA_VENDOR_DEFINED 0x80000000 /* CK_ATTRIBUTE is a structure that includes the type, length * and value of an attribute */ typedef struct CK_ATTRIBUTE { CK_ATTRIBUTE_TYPE type; CK_VOID_PTR pValue; /* ulValueLen went from CK_USHORT to CK_ULONG for v2.0 */ CK_ULONG ulValueLen; /* in bytes */ } CK_ATTRIBUTE; typedef CK_ATTRIBUTE CK_PTR CK_ATTRIBUTE_PTR; /* CK_DATE is a structure that defines a date */ typedef struct CK_DATE { CK_CHAR year[4]; /* the year ("1900" - "9999") */ CK_CHAR month[2]; /* the month ("01" - "12") */ CK_CHAR day[2]; /* the day ("01" - "31") */ } CK_DATE; /* CK_MECHANISM_TYPE is a value that identifies a mechanism * type */ /* CK_MECHANISM_TYPE was changed from CK_USHORT to CK_ULONG for * v2.0 */ typedef CK_ULONG CK_MECHANISM_TYPE; /* the following mechanism types are defined: */ #define CKM_RSA_PKCS_KEY_PAIR_GEN 0x00000000 #define CKM_RSA_PKCS 0x00000001 #define CKM_RSA_9796 0x00000002 #define CKM_RSA_X_509 0x00000003 /* CKM_MD2_RSA_PKCS, CKM_MD5_RSA_PKCS, and CKM_SHA1_RSA_PKCS * are new for v2.0. They are mechanisms which hash and sign */ #define CKM_MD2_RSA_PKCS 0x00000004 #define CKM_MD5_RSA_PKCS 0x00000005 #define CKM_SHA1_RSA_PKCS 0x00000006 /* CKM_RIPEMD128_RSA_PKCS, CKM_RIPEMD160_RSA_PKCS, and * CKM_RSA_PKCS_OAEP are new for v2.10 */ #define CKM_RIPEMD128_RSA_PKCS 0x00000007 #define CKM_RIPEMD160_RSA_PKCS 0x00000008 #define CKM_RSA_PKCS_OAEP 0x00000009 /* CKM_RSA_X9_31_KEY_PAIR_GEN, CKM_RSA_X9_31, CKM_SHA1_RSA_X9_31, * CKM_RSA_PKCS_PSS, and CKM_SHA1_RSA_PKCS_PSS are new for v2.11 */ #define CKM_RSA_X9_31_KEY_PAIR_GEN 0x0000000A #define CKM_RSA_X9_31 0x0000000B #define CKM_SHA1_RSA_X9_31 0x0000000C #define CKM_RSA_PKCS_PSS 0x0000000D #define CKM_SHA1_RSA_PKCS_PSS 0x0000000E #define CKM_DSA_KEY_PAIR_GEN 0x00000010 #define CKM_DSA 0x00000011 #define CKM_DSA_SHA1 0x00000012 #define CKM_DH_PKCS_KEY_PAIR_GEN 0x00000020 #define CKM_DH_PKCS_DERIVE 0x00000021 /* CKM_X9_42_DH_KEY_PAIR_GEN, CKM_X9_42_DH_DERIVE, * CKM_X9_42_DH_HYBRID_DERIVE, and CKM_X9_42_MQV_DERIVE are new for * v2.11 */ #define CKM_X9_42_DH_KEY_PAIR_GEN 0x00000030 #define CKM_X9_42_DH_DERIVE 0x00000031 #define CKM_X9_42_DH_HYBRID_DERIVE 0x00000032 #define CKM_X9_42_MQV_DERIVE 0x00000033 /* CKM_SHA256/384/512 are new for v2.20 */ #define CKM_SHA256_RSA_PKCS 0x00000040 #define CKM_SHA384_RSA_PKCS 0x00000041 #define CKM_SHA512_RSA_PKCS 0x00000042 #define CKM_SHA256_RSA_PKCS_PSS 0x00000043 #define CKM_SHA384_RSA_PKCS_PSS 0x00000044 #define CKM_SHA512_RSA_PKCS_PSS 0x00000045 /* SHA-224 RSA mechanisms are new for PKCS #11 v2.20 amendment 3 */ #define CKM_SHA224_RSA_PKCS 0x00000046 #define CKM_SHA224_RSA_PKCS_PSS 0x00000047 #define CKM_RC2_KEY_GEN 0x00000100 #define CKM_RC2_ECB 0x00000101 #define CKM_RC2_CBC 0x00000102 #define CKM_RC2_MAC 0x00000103 /* CKM_RC2_MAC_GENERAL and CKM_RC2_CBC_PAD are new for v2.0 */ #define CKM_RC2_MAC_GENERAL 0x00000104 #define CKM_RC2_CBC_PAD 0x00000105 #define CKM_RC4_KEY_GEN 0x00000110 #define CKM_RC4 0x00000111 #define CKM_DES_KEY_GEN 0x00000120 #define CKM_DES_ECB 0x00000121 #define CKM_DES_CBC 0x00000122 #define CKM_DES_MAC 0x00000123 /* CKM_DES_MAC_GENERAL and CKM_DES_CBC_PAD are new for v2.0 */ #define CKM_DES_MAC_GENERAL 0x00000124 #define CKM_DES_CBC_PAD 0x00000125 #define CKM_DES2_KEY_GEN 0x00000130 #define CKM_DES3_KEY_GEN 0x00000131 #define CKM_DES3_ECB 0x00000132 #define CKM_DES3_CBC 0x00000133 #define CKM_DES3_MAC 0x00000134 /* CKM_DES3_MAC_GENERAL, CKM_DES3_CBC_PAD, CKM_CDMF_KEY_GEN, * CKM_CDMF_ECB, CKM_CDMF_CBC, CKM_CDMF_MAC, * CKM_CDMF_MAC_GENERAL, and CKM_CDMF_CBC_PAD are new for v2.0 */ #define CKM_DES3_MAC_GENERAL 0x00000135 #define CKM_DES3_CBC_PAD 0x00000136 #define CKM_DES3_CMAC_GENERAL 0x00000137 #define CKM_DES3_CMAC 0x00000138 #define CKM_CDMF_KEY_GEN 0x00000140 #define CKM_CDMF_ECB 0x00000141 #define CKM_CDMF_CBC 0x00000142 #define CKM_CDMF_MAC 0x00000143 #define CKM_CDMF_MAC_GENERAL 0x00000144 #define CKM_CDMF_CBC_PAD 0x00000145 /* the following four DES mechanisms are new for v2.20 */ #define CKM_DES_OFB64 0x00000150 #define CKM_DES_OFB8 0x00000151 #define CKM_DES_CFB64 0x00000152 #define CKM_DES_CFB8 0x00000153 #define CKM_MD2 0x00000200 /* CKM_MD2_HMAC and CKM_MD2_HMAC_GENERAL are new for v2.0 */ #define CKM_MD2_HMAC 0x00000201 #define CKM_MD2_HMAC_GENERAL 0x00000202 #define CKM_MD5 0x00000210 /* CKM_MD5_HMAC and CKM_MD5_HMAC_GENERAL are new for v2.0 */ #define CKM_MD5_HMAC 0x00000211 #define CKM_MD5_HMAC_GENERAL 0x00000212 #define CKM_SHA_1 0x00000220 /* CKM_SHA_1_HMAC and CKM_SHA_1_HMAC_GENERAL are new for v2.0 */ #define CKM_SHA_1_HMAC 0x00000221 #define CKM_SHA_1_HMAC_GENERAL 0x00000222 /* CKM_RIPEMD128, CKM_RIPEMD128_HMAC, * CKM_RIPEMD128_HMAC_GENERAL, CKM_RIPEMD160, CKM_RIPEMD160_HMAC, * and CKM_RIPEMD160_HMAC_GENERAL are new for v2.10 */ #define CKM_RIPEMD128 0x00000230 #define CKM_RIPEMD128_HMAC 0x00000231 #define CKM_RIPEMD128_HMAC_GENERAL 0x00000232 #define CKM_RIPEMD160 0x00000240 #define CKM_RIPEMD160_HMAC 0x00000241 #define CKM_RIPEMD160_HMAC_GENERAL 0x00000242 /* CKM_SHA256/384/512 are new for v2.20 */ #define CKM_SHA256 0x00000250 #define CKM_SHA256_HMAC 0x00000251 #define CKM_SHA256_HMAC_GENERAL 0x00000252 /* SHA-224 is new for PKCS #11 v2.20 amendment 3 */ #define CKM_SHA224 0x00000255 #define CKM_SHA224_HMAC 0x00000256 #define CKM_SHA224_HMAC_GENERAL 0x00000257 #define CKM_SHA384 0x00000260 #define CKM_SHA384_HMAC 0x00000261 #define CKM_SHA384_HMAC_GENERAL 0x00000262 #define CKM_SHA512 0x00000270 #define CKM_SHA512_HMAC 0x00000271 #define CKM_SHA512_HMAC_GENERAL 0x00000272 /* SecurID is new for PKCS #11 v2.20 amendment 1 */ #define CKM_SECURID_KEY_GEN 0x00000280 #define CKM_SECURID 0x00000282 /* HOTP is new for PKCS #11 v2.20 amendment 1 */ #define CKM_HOTP_KEY_GEN 0x00000290 #define CKM_HOTP 0x00000291 /* ACTI is new for PKCS #11 v2.20 amendment 1 */ #define CKM_ACTI 0x000002A0 #define CKM_ACTI_KEY_GEN 0x000002A1 /* All of the following mechanisms are new for v2.0 */ /* Note that CAST128 and CAST5 are the same algorithm */ #define CKM_CAST_KEY_GEN 0x00000300 #define CKM_CAST_ECB 0x00000301 #define CKM_CAST_CBC 0x00000302 #define CKM_CAST_MAC 0x00000303 #define CKM_CAST_MAC_GENERAL 0x00000304 #define CKM_CAST_CBC_PAD 0x00000305 #define CKM_CAST3_KEY_GEN 0x00000310 #define CKM_CAST3_ECB 0x00000311 #define CKM_CAST3_CBC 0x00000312 #define CKM_CAST3_MAC 0x00000313 #define CKM_CAST3_MAC_GENERAL 0x00000314 #define CKM_CAST3_CBC_PAD 0x00000315 #define CKM_CAST5_KEY_GEN 0x00000320 #define CKM_CAST128_KEY_GEN 0x00000320 #define CKM_CAST5_ECB 0x00000321 #define CKM_CAST128_ECB 0x00000321 #define CKM_CAST5_CBC 0x00000322 #define CKM_CAST128_CBC 0x00000322 #define CKM_CAST5_MAC 0x00000323 #define CKM_CAST128_MAC 0x00000323 #define CKM_CAST5_MAC_GENERAL 0x00000324 #define CKM_CAST128_MAC_GENERAL 0x00000324 #define CKM_CAST5_CBC_PAD 0x00000325 #define CKM_CAST128_CBC_PAD 0x00000325 #define CKM_RC5_KEY_GEN 0x00000330 #define CKM_RC5_ECB 0x00000331 #define CKM_RC5_CBC 0x00000332 #define CKM_RC5_MAC 0x00000333 #define CKM_RC5_MAC_GENERAL 0x00000334 #define CKM_RC5_CBC_PAD 0x00000335 #define CKM_IDEA_KEY_GEN 0x00000340 #define CKM_IDEA_ECB 0x00000341 #define CKM_IDEA_CBC 0x00000342 #define CKM_IDEA_MAC 0x00000343 #define CKM_IDEA_MAC_GENERAL 0x00000344 #define CKM_IDEA_CBC_PAD 0x00000345 #define CKM_GENERIC_SECRET_KEY_GEN 0x00000350 #define CKM_CONCATENATE_BASE_AND_KEY 0x00000360 #define CKM_CONCATENATE_BASE_AND_DATA 0x00000362 #define CKM_CONCATENATE_DATA_AND_BASE 0x00000363 #define CKM_XOR_BASE_AND_DATA 0x00000364 #define CKM_EXTRACT_KEY_FROM_KEY 0x00000365 #define CKM_SSL3_PRE_MASTER_KEY_GEN 0x00000370 #define CKM_SSL3_MASTER_KEY_DERIVE 0x00000371 #define CKM_SSL3_KEY_AND_MAC_DERIVE 0x00000372 /* CKM_SSL3_MASTER_KEY_DERIVE_DH, CKM_TLS_PRE_MASTER_KEY_GEN, * CKM_TLS_MASTER_KEY_DERIVE, CKM_TLS_KEY_AND_MAC_DERIVE, and * CKM_TLS_MASTER_KEY_DERIVE_DH are new for v2.11 */ #define CKM_SSL3_MASTER_KEY_DERIVE_DH 0x00000373 #define CKM_TLS_PRE_MASTER_KEY_GEN 0x00000374 #define CKM_TLS_MASTER_KEY_DERIVE 0x00000375 #define CKM_TLS_KEY_AND_MAC_DERIVE 0x00000376 #define CKM_TLS_MASTER_KEY_DERIVE_DH 0x00000377 /* CKM_TLS_PRF is new for v2.20 */ #define CKM_TLS_PRF 0x00000378 #define CKM_SSL3_MD5_MAC 0x00000380 #define CKM_SSL3_SHA1_MAC 0x00000381 #define CKM_MD5_KEY_DERIVATION 0x00000390 #define CKM_MD2_KEY_DERIVATION 0x00000391 #define CKM_SHA1_KEY_DERIVATION 0x00000392 /* CKM_SHA256/384/512 are new for v2.20 */ #define CKM_SHA256_KEY_DERIVATION 0x00000393 #define CKM_SHA384_KEY_DERIVATION 0x00000394 #define CKM_SHA512_KEY_DERIVATION 0x00000395 /* SHA-224 key derivation is new for PKCS #11 v2.20 amendment 3 */ #define CKM_SHA224_KEY_DERIVATION 0x00000396 #define CKM_PBE_MD2_DES_CBC 0x000003A0 #define CKM_PBE_MD5_DES_CBC 0x000003A1 #define CKM_PBE_MD5_CAST_CBC 0x000003A2 #define CKM_PBE_MD5_CAST3_CBC 0x000003A3 #define CKM_PBE_MD5_CAST5_CBC 0x000003A4 #define CKM_PBE_MD5_CAST128_CBC 0x000003A4 #define CKM_PBE_SHA1_CAST5_CBC 0x000003A5 #define CKM_PBE_SHA1_CAST128_CBC 0x000003A5 #define CKM_PBE_SHA1_RC4_128 0x000003A6 #define CKM_PBE_SHA1_RC4_40 0x000003A7 #define CKM_PBE_SHA1_DES3_EDE_CBC 0x000003A8 #define CKM_PBE_SHA1_DES2_EDE_CBC 0x000003A9 #define CKM_PBE_SHA1_RC2_128_CBC 0x000003AA #define CKM_PBE_SHA1_RC2_40_CBC 0x000003AB /* CKM_PKCS5_PBKD2 is new for v2.10 */ #define CKM_PKCS5_PBKD2 0x000003B0 #define CKM_PBA_SHA1_WITH_SHA1_HMAC 0x000003C0 /* WTLS mechanisms are new for v2.20 */ #define CKM_WTLS_PRE_MASTER_KEY_GEN 0x000003D0 #define CKM_WTLS_MASTER_KEY_DERIVE 0x000003D1 #define CKM_WTLS_MASTER_KEY_DERIVE_DH_ECC 0x000003D2 #define CKM_WTLS_PRF 0x000003D3 #define CKM_WTLS_SERVER_KEY_AND_MAC_DERIVE 0x000003D4 #define CKM_WTLS_CLIENT_KEY_AND_MAC_DERIVE 0x000003D5 #define CKM_KEY_WRAP_LYNKS 0x00000400 #define CKM_KEY_WRAP_SET_OAEP 0x00000401 /* CKM_CMS_SIG is new for v2.20 */ #define CKM_CMS_SIG 0x00000500 /* CKM_KIP mechanisms are new for PKCS #11 v2.20 amendment 2 */ #define CKM_KIP_DERIVE 0x00000510 #define CKM_KIP_WRAP 0x00000511 #define CKM_KIP_MAC 0x00000512 /* Camellia is new for PKCS #11 v2.20 amendment 3 */ #define CKM_CAMELLIA_KEY_GEN 0x00000550 #define CKM_CAMELLIA_ECB 0x00000551 #define CKM_CAMELLIA_CBC 0x00000552 #define CKM_CAMELLIA_MAC 0x00000553 #define CKM_CAMELLIA_MAC_GENERAL 0x00000554 #define CKM_CAMELLIA_CBC_PAD 0x00000555 #define CKM_CAMELLIA_ECB_ENCRYPT_DATA 0x00000556 #define CKM_CAMELLIA_CBC_ENCRYPT_DATA 0x00000557 #define CKM_CAMELLIA_CTR 0x00000558 /* ARIA is new for PKCS #11 v2.20 amendment 3 */ #define CKM_ARIA_KEY_GEN 0x00000560 #define CKM_ARIA_ECB 0x00000561 #define CKM_ARIA_CBC 0x00000562 #define CKM_ARIA_MAC 0x00000563 #define CKM_ARIA_MAC_GENERAL 0x00000564 #define CKM_ARIA_CBC_PAD 0x00000565 #define CKM_ARIA_ECB_ENCRYPT_DATA 0x00000566 #define CKM_ARIA_CBC_ENCRYPT_DATA 0x00000567 /* Fortezza mechanisms */ #define CKM_SKIPJACK_KEY_GEN 0x00001000 #define CKM_SKIPJACK_ECB64 0x00001001 #define CKM_SKIPJACK_CBC64 0x00001002 #define CKM_SKIPJACK_OFB64 0x00001003 #define CKM_SKIPJACK_CFB64 0x00001004 #define CKM_SKIPJACK_CFB32 0x00001005 #define CKM_SKIPJACK_CFB16 0x00001006 #define CKM_SKIPJACK_CFB8 0x00001007 #define CKM_SKIPJACK_WRAP 0x00001008 #define CKM_SKIPJACK_PRIVATE_WRAP 0x00001009 #define CKM_SKIPJACK_RELAYX 0x0000100a #define CKM_KEA_KEY_PAIR_GEN 0x00001010 #define CKM_KEA_KEY_DERIVE 0x00001011 #define CKM_FORTEZZA_TIMESTAMP 0x00001020 #define CKM_BATON_KEY_GEN 0x00001030 #define CKM_BATON_ECB128 0x00001031 #define CKM_BATON_ECB96 0x00001032 #define CKM_BATON_CBC128 0x00001033 #define CKM_BATON_COUNTER 0x00001034 #define CKM_BATON_SHUFFLE 0x00001035 #define CKM_BATON_WRAP 0x00001036 /* CKM_ECDSA_KEY_PAIR_GEN is deprecated in v2.11, * CKM_EC_KEY_PAIR_GEN is preferred */ #define CKM_ECDSA_KEY_PAIR_GEN 0x00001040 #define CKM_EC_KEY_PAIR_GEN 0x00001040 #define CKM_ECDSA 0x00001041 #define CKM_ECDSA_SHA1 0x00001042 /* CKM_ECDH1_DERIVE, CKM_ECDH1_COFACTOR_DERIVE, and CKM_ECMQV_DERIVE * are new for v2.11 */ #define CKM_ECDH1_DERIVE 0x00001050 #define CKM_ECDH1_COFACTOR_DERIVE 0x00001051 #define CKM_ECMQV_DERIVE 0x00001052 #define CKM_JUNIPER_KEY_GEN 0x00001060 #define CKM_JUNIPER_ECB128 0x00001061 #define CKM_JUNIPER_CBC128 0x00001062 #define CKM_JUNIPER_COUNTER 0x00001063 #define CKM_JUNIPER_SHUFFLE 0x00001064 #define CKM_JUNIPER_WRAP 0x00001065 #define CKM_FASTHASH 0x00001070 /* CKM_AES_KEY_GEN, CKM_AES_ECB, CKM_AES_CBC, CKM_AES_MAC, * CKM_AES_MAC_GENERAL, CKM_AES_CBC_PAD, CKM_DSA_PARAMETER_GEN, * CKM_DH_PKCS_PARAMETER_GEN, and CKM_X9_42_DH_PARAMETER_GEN are * new for v2.11 */ #define CKM_AES_KEY_GEN 0x00001080 #define CKM_AES_ECB 0x00001081 #define CKM_AES_CBC 0x00001082 #define CKM_AES_MAC 0x00001083 #define CKM_AES_MAC_GENERAL 0x00001084 #define CKM_AES_CBC_PAD 0x00001085 /* AES counter mode is new for PKCS #11 v2.20 amendment 3 */ #define CKM_AES_CTR 0x00001086 /* AES GCM mode as defined in PKCS11 v2.30 draft */ #define CKM_AES_GCM 0x00001087 #define CKM_AES_CMAC_GENERAL 0x00001089 #define CKM_AES_CMAC 0x0000108A /* BlowFish and TwoFish are new for v2.20 */ #define CKM_BLOWFISH_KEY_GEN 0x00001090 #define CKM_BLOWFISH_CBC 0x00001091 #define CKM_TWOFISH_KEY_GEN 0x00001092 #define CKM_TWOFISH_CBC 0x00001093 /* CKM_xxx_ENCRYPT_DATA mechanisms are new for v2.20 */ #define CKM_DES_ECB_ENCRYPT_DATA 0x00001100 #define CKM_DES_CBC_ENCRYPT_DATA 0x00001101 #define CKM_DES3_ECB_ENCRYPT_DATA 0x00001102 #define CKM_DES3_CBC_ENCRYPT_DATA 0x00001103 #define CKM_AES_ECB_ENCRYPT_DATA 0x00001104 #define CKM_AES_CBC_ENCRYPT_DATA 0x00001105 #define CKM_DSA_PARAMETER_GEN 0x00002000 #define CKM_DH_PKCS_PARAMETER_GEN 0x00002001 #define CKM_X9_42_DH_PARAMETER_GEN 0x00002002 #define CKM_AES_KEY_WRAP 0x00002109 #define CKM_AES_KEY_WRAP_PAD 0x0000210A #define CKM_VENDOR_DEFINED 0x80000000 typedef CK_MECHANISM_TYPE CK_PTR CK_MECHANISM_TYPE_PTR; /* CK_MECHANISM is a structure that specifies a particular * mechanism */ typedef struct CK_MECHANISM { CK_MECHANISM_TYPE mechanism; CK_VOID_PTR pParameter; /* ulParameterLen was changed from CK_USHORT to CK_ULONG for * v2.0 */ CK_ULONG ulParameterLen; /* in bytes */ } CK_MECHANISM; typedef CK_MECHANISM CK_PTR CK_MECHANISM_PTR; /* CK_MECHANISM_INFO provides information about a particular * mechanism */ typedef struct CK_MECHANISM_INFO { CK_ULONG ulMinKeySize; CK_ULONG ulMaxKeySize; CK_FLAGS flags; } CK_MECHANISM_INFO; /* The flags are defined as follows: * Bit Flag Mask Meaning */ #define CKF_HW 0x00000001 /* performed by HW */ /* The flags CKF_ENCRYPT, CKF_DECRYPT, CKF_DIGEST, CKF_SIGN, * CKG_SIGN_RECOVER, CKF_VERIFY, CKF_VERIFY_RECOVER, * CKF_GENERATE, CKF_GENERATE_KEY_PAIR, CKF_WRAP, CKF_UNWRAP, * and CKF_DERIVE are new for v2.0. They specify whether or not * a mechanism can be used for a particular task */ #define CKF_ENCRYPT 0x00000100 #define CKF_DECRYPT 0x00000200 #define CKF_DIGEST 0x00000400 #define CKF_SIGN 0x00000800 #define CKF_SIGN_RECOVER 0x00001000 #define CKF_VERIFY 0x00002000 #define CKF_VERIFY_RECOVER 0x00004000 #define CKF_GENERATE 0x00008000 #define CKF_GENERATE_KEY_PAIR 0x00010000 #define CKF_WRAP 0x00020000 #define CKF_UNWRAP 0x00040000 #define CKF_DERIVE 0x00080000 /* CKF_EC_F_P, CKF_EC_F_2M, CKF_EC_ECPARAMETERS, CKF_EC_NAMEDCURVE, * CKF_EC_UNCOMPRESS, and CKF_EC_COMPRESS are new for v2.11. They * describe a token's EC capabilities not available in mechanism * information. */ #define CKF_EC_F_P 0x00100000 #define CKF_EC_F_2M 0x00200000 #define CKF_EC_ECPARAMETERS 0x00400000 #define CKF_EC_NAMEDCURVE 0x00800000 #define CKF_EC_UNCOMPRESS 0x01000000 #define CKF_EC_COMPRESS 0x02000000 #define CKF_EXTENSION 0x80000000 /* FALSE for this version */ typedef CK_MECHANISM_INFO CK_PTR CK_MECHANISM_INFO_PTR; /* CK_RV is a value that identifies the return value of a * Cryptoki function */ /* CK_RV was changed from CK_USHORT to CK_ULONG for v2.0 */ typedef CK_ULONG CK_RV; #define CKR_OK 0x00000000 #define CKR_CANCEL 0x00000001 #define CKR_HOST_MEMORY 0x00000002 #define CKR_SLOT_ID_INVALID 0x00000003 /* CKR_FLAGS_INVALID was removed for v2.0 */ /* CKR_GENERAL_ERROR and CKR_FUNCTION_FAILED are new for v2.0 */ #define CKR_GENERAL_ERROR 0x00000005 #define CKR_FUNCTION_FAILED 0x00000006 /* CKR_ARGUMENTS_BAD, CKR_NO_EVENT, CKR_NEED_TO_CREATE_THREADS, * and CKR_CANT_LOCK are new for v2.01 */ #define CKR_ARGUMENTS_BAD 0x00000007 #define CKR_NO_EVENT 0x00000008 #define CKR_NEED_TO_CREATE_THREADS 0x00000009 #define CKR_CANT_LOCK 0x0000000A #define CKR_ATTRIBUTE_READ_ONLY 0x00000010 #define CKR_ATTRIBUTE_SENSITIVE 0x00000011 #define CKR_ATTRIBUTE_TYPE_INVALID 0x00000012 #define CKR_ATTRIBUTE_VALUE_INVALID 0x00000013 #define CKR_DATA_INVALID 0x00000020 #define CKR_DATA_LEN_RANGE 0x00000021 #define CKR_DEVICE_ERROR 0x00000030 #define CKR_DEVICE_MEMORY 0x00000031 #define CKR_DEVICE_REMOVED 0x00000032 #define CKR_ENCRYPTED_DATA_INVALID 0x00000040 #define CKR_ENCRYPTED_DATA_LEN_RANGE 0x00000041 #define CKR_FUNCTION_CANCELED 0x00000050 #define CKR_FUNCTION_NOT_PARALLEL 0x00000051 /* CKR_FUNCTION_NOT_SUPPORTED is new for v2.0 */ #define CKR_FUNCTION_NOT_SUPPORTED 0x00000054 #define CKR_KEY_HANDLE_INVALID 0x00000060 /* CKR_KEY_SENSITIVE was removed for v2.0 */ #define CKR_KEY_SIZE_RANGE 0x00000062 #define CKR_KEY_TYPE_INCONSISTENT 0x00000063 /* CKR_KEY_NOT_NEEDED, CKR_KEY_CHANGED, CKR_KEY_NEEDED, * CKR_KEY_INDIGESTIBLE, CKR_KEY_FUNCTION_NOT_PERMITTED, * CKR_KEY_NOT_WRAPPABLE, and CKR_KEY_UNEXTRACTABLE are new for * v2.0 */ #define CKR_KEY_NOT_NEEDED 0x00000064 #define CKR_KEY_CHANGED 0x00000065 #define CKR_KEY_NEEDED 0x00000066 #define CKR_KEY_INDIGESTIBLE 0x00000067 #define CKR_KEY_FUNCTION_NOT_PERMITTED 0x00000068 #define CKR_KEY_NOT_WRAPPABLE 0x00000069 #define CKR_KEY_UNEXTRACTABLE 0x0000006A #define CKR_MECHANISM_INVALID 0x00000070 #define CKR_MECHANISM_PARAM_INVALID 0x00000071 /* CKR_OBJECT_CLASS_INCONSISTENT and CKR_OBJECT_CLASS_INVALID * were removed for v2.0 */ #define CKR_OBJECT_HANDLE_INVALID 0x00000082 #define CKR_OPERATION_ACTIVE 0x00000090 #define CKR_OPERATION_NOT_INITIALIZED 0x00000091 #define CKR_PIN_INCORRECT 0x000000A0 #define CKR_PIN_INVALID 0x000000A1 #define CKR_PIN_LEN_RANGE 0x000000A2 /* CKR_PIN_EXPIRED and CKR_PIN_LOCKED are new for v2.0 */ #define CKR_PIN_EXPIRED 0x000000A3 #define CKR_PIN_LOCKED 0x000000A4 #define CKR_SESSION_CLOSED 0x000000B0 #define CKR_SESSION_COUNT 0x000000B1 #define CKR_SESSION_HANDLE_INVALID 0x000000B3 #define CKR_SESSION_PARALLEL_NOT_SUPPORTED 0x000000B4 #define CKR_SESSION_READ_ONLY 0x000000B5 #define CKR_SESSION_EXISTS 0x000000B6 /* CKR_SESSION_READ_ONLY_EXISTS and * CKR_SESSION_READ_WRITE_SO_EXISTS are new for v2.0 */ #define CKR_SESSION_READ_ONLY_EXISTS 0x000000B7 #define CKR_SESSION_READ_WRITE_SO_EXISTS 0x000000B8 #define CKR_SIGNATURE_INVALID 0x000000C0 #define CKR_SIGNATURE_LEN_RANGE 0x000000C1 #define CKR_TEMPLATE_INCOMPLETE 0x000000D0 #define CKR_TEMPLATE_INCONSISTENT 0x000000D1 #define CKR_TOKEN_NOT_PRESENT 0x000000E0 #define CKR_TOKEN_NOT_RECOGNIZED 0x000000E1 #define CKR_TOKEN_WRITE_PROTECTED 0x000000E2 #define CKR_UNWRAPPING_KEY_HANDLE_INVALID 0x000000F0 #define CKR_UNWRAPPING_KEY_SIZE_RANGE 0x000000F1 #define CKR_UNWRAPPING_KEY_TYPE_INCONSISTENT 0x000000F2 #define CKR_USER_ALREADY_LOGGED_IN 0x00000100 #define CKR_USER_NOT_LOGGED_IN 0x00000101 #define CKR_USER_PIN_NOT_INITIALIZED 0x00000102 #define CKR_USER_TYPE_INVALID 0x00000103 /* CKR_USER_ANOTHER_ALREADY_LOGGED_IN and CKR_USER_TOO_MANY_TYPES * are new to v2.01 */ #define CKR_USER_ANOTHER_ALREADY_LOGGED_IN 0x00000104 #define CKR_USER_TOO_MANY_TYPES 0x00000105 #define CKR_WRAPPED_KEY_INVALID 0x00000110 #define CKR_WRAPPED_KEY_LEN_RANGE 0x00000112 #define CKR_WRAPPING_KEY_HANDLE_INVALID 0x00000113 #define CKR_WRAPPING_KEY_SIZE_RANGE 0x00000114 #define CKR_WRAPPING_KEY_TYPE_INCONSISTENT 0x00000115 #define CKR_RANDOM_SEED_NOT_SUPPORTED 0x00000120 /* These are new to v2.0 */ #define CKR_RANDOM_NO_RNG 0x00000121 /* These are new to v2.11 */ #define CKR_DOMAIN_PARAMS_INVALID 0x00000130 /* These are new to v2.0 */ #define CKR_BUFFER_TOO_SMALL 0x00000150 #define CKR_SAVED_STATE_INVALID 0x00000160 #define CKR_INFORMATION_SENSITIVE 0x00000170 #define CKR_STATE_UNSAVEABLE 0x00000180 /* These are new to v2.01 */ #define CKR_CRYPTOKI_NOT_INITIALIZED 0x00000190 #define CKR_CRYPTOKI_ALREADY_INITIALIZED 0x00000191 #define CKR_MUTEX_BAD 0x000001A0 #define CKR_MUTEX_NOT_LOCKED 0x000001A1 /* The following return values are new for PKCS #11 v2.20 amendment 3 */ #define CKR_NEW_PIN_MODE 0x000001B0 #define CKR_NEXT_OTP 0x000001B1 /* This is new to v2.20 */ #define CKR_FUNCTION_REJECTED 0x00000200 #define CKR_VENDOR_DEFINED 0x80000000 /* CK_NOTIFY is an application callback that processes events */ typedef CK_CALLBACK_FUNCTION(CK_RV, CK_NOTIFY)(CK_SESSION_HANDLE hSession, /* the session's handle */ CK_NOTIFICATION event, CK_VOID_PTR pApplication /* passed to C_OpenSession */ ); /* CK_FUNCTION_LIST is a structure holding a Cryptoki spec * version and pointers of appropriate types to all the * Cryptoki functions */ /* CK_FUNCTION_LIST is new for v2.0 */ typedef struct CK_FUNCTION_LIST CK_FUNCTION_LIST; typedef CK_FUNCTION_LIST CK_PTR CK_FUNCTION_LIST_PTR; typedef CK_FUNCTION_LIST_PTR CK_PTR CK_FUNCTION_LIST_PTR_PTR; /* CK_CREATEMUTEX is an application callback for creating a * mutex object */ typedef CK_CALLBACK_FUNCTION(CK_RV, CK_CREATEMUTEX)(CK_VOID_PTR_PTR ppMutex /* location to receive ptr to mutex */ ); /* CK_DESTROYMUTEX is an application callback for destroying a * mutex object */ typedef CK_CALLBACK_FUNCTION(CK_RV, CK_DESTROYMUTEX)(CK_VOID_PTR pMutex /* pointer to mutex */ ); /* CK_LOCKMUTEX is an application callback for locking a mutex */ typedef CK_CALLBACK_FUNCTION(CK_RV, CK_LOCKMUTEX)(CK_VOID_PTR pMutex /* pointer to mutex */ ); /* CK_UNLOCKMUTEX is an application callback for unlocking a * mutex */ typedef CK_CALLBACK_FUNCTION(CK_RV, CK_UNLOCKMUTEX)(CK_VOID_PTR pMutex /* pointer to mutex */ ); /* CK_C_INITIALIZE_ARGS provides the optional arguments to * C_Initialize */ typedef struct CK_C_INITIALIZE_ARGS { CK_CREATEMUTEX CreateMutex; CK_DESTROYMUTEX DestroyMutex; CK_LOCKMUTEX LockMutex; CK_UNLOCKMUTEX UnlockMutex; CK_FLAGS flags; CK_VOID_PTR pReserved; } CK_C_INITIALIZE_ARGS; /* flags: bit flags that provide capabilities of the slot * Bit Flag Mask Meaning */ #define CKF_LIBRARY_CANT_CREATE_OS_THREADS 0x00000001 #define CKF_OS_LOCKING_OK 0x00000002 typedef CK_C_INITIALIZE_ARGS CK_PTR CK_C_INITIALIZE_ARGS_PTR; /* additional flags for parameters to functions */ /* CKF_DONT_BLOCK is for the function C_WaitForSlotEvent */ #define CKF_DONT_BLOCK 1 /* CK_RSA_PKCS_OAEP_MGF_TYPE is new for v2.10. * CK_RSA_PKCS_OAEP_MGF_TYPE is used to indicate the Message * Generation Function (MGF) applied to a message block when * formatting a message block for the PKCS #1 OAEP encryption * scheme. */ typedef CK_ULONG CK_RSA_PKCS_MGF_TYPE; typedef CK_RSA_PKCS_MGF_TYPE CK_PTR CK_RSA_PKCS_MGF_TYPE_PTR; /* The following MGFs are defined */ /* CKG_MGF1_SHA256, CKG_MGF1_SHA384, and CKG_MGF1_SHA512 * are new for v2.20 */ #define CKG_MGF1_SHA1 0x00000001 #define CKG_MGF1_SHA256 0x00000002 #define CKG_MGF1_SHA384 0x00000003 #define CKG_MGF1_SHA512 0x00000004 /* SHA-224 is new for PKCS #11 v2.20 amendment 3 */ #define CKG_MGF1_SHA224 0x00000005 /* CK_RSA_PKCS_OAEP_SOURCE_TYPE is new for v2.10. * CK_RSA_PKCS_OAEP_SOURCE_TYPE is used to indicate the source * of the encoding parameter when formatting a message block * for the PKCS #1 OAEP encryption scheme. */ typedef CK_ULONG CK_RSA_PKCS_OAEP_SOURCE_TYPE; typedef CK_RSA_PKCS_OAEP_SOURCE_TYPE CK_PTR CK_RSA_PKCS_OAEP_SOURCE_TYPE_PTR; /* The following encoding parameter sources are defined */ #define CKZ_DATA_SPECIFIED 0x00000001 /* CK_RSA_PKCS_OAEP_PARAMS is new for v2.10. * CK_RSA_PKCS_OAEP_PARAMS provides the parameters to the * CKM_RSA_PKCS_OAEP mechanism. */ typedef struct CK_RSA_PKCS_OAEP_PARAMS { CK_MECHANISM_TYPE hashAlg; CK_RSA_PKCS_MGF_TYPE mgf; CK_RSA_PKCS_OAEP_SOURCE_TYPE source; CK_VOID_PTR pSourceData; CK_ULONG ulSourceDataLen; } CK_RSA_PKCS_OAEP_PARAMS; typedef CK_RSA_PKCS_OAEP_PARAMS CK_PTR CK_RSA_PKCS_OAEP_PARAMS_PTR; /* CK_RSA_PKCS_PSS_PARAMS is new for v2.11. * CK_RSA_PKCS_PSS_PARAMS provides the parameters to the * CKM_RSA_PKCS_PSS mechanism(s). */ typedef struct CK_RSA_PKCS_PSS_PARAMS { CK_MECHANISM_TYPE hashAlg; CK_RSA_PKCS_MGF_TYPE mgf; CK_ULONG sLen; } CK_RSA_PKCS_PSS_PARAMS; typedef CK_RSA_PKCS_PSS_PARAMS CK_PTR CK_RSA_PKCS_PSS_PARAMS_PTR; /* CK_EC_KDF_TYPE is new for v2.11. */ typedef CK_ULONG CK_EC_KDF_TYPE; /* The following EC Key Derivation Functions are defined */ #define CKD_NULL 0x00000001 #define CKD_SHA1_KDF 0x00000002 typedef struct CK_GCM_PARAMS { CK_BYTE_PTR pIv; CK_ULONG ulIvLen; CK_BYTE_PTR pAAD; CK_ULONG ulAADLen; CK_ULONG ulTagBits; } CK_GCM_PARAMS; typedef CK_GCM_PARAMS CK_GCM_PARAMS_PTR; /* CK_ECDH1_DERIVE_PARAMS is new for v2.11. * CK_ECDH1_DERIVE_PARAMS provides the parameters to the * CKM_ECDH1_DERIVE and CKM_ECDH1_COFACTOR_DERIVE mechanisms, * where each party contributes one key pair. */ typedef struct CK_ECDH1_DERIVE_PARAMS { CK_EC_KDF_TYPE kdf; CK_ULONG ulSharedDataLen; CK_BYTE_PTR pSharedData; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; } CK_ECDH1_DERIVE_PARAMS; typedef CK_ECDH1_DERIVE_PARAMS CK_PTR CK_ECDH1_DERIVE_PARAMS_PTR; /* CK_ECDH2_DERIVE_PARAMS is new for v2.11. * CK_ECDH2_DERIVE_PARAMS provides the parameters to the * CKM_ECMQV_DERIVE mechanism, where each party contributes two key pairs. */ typedef struct CK_ECDH2_DERIVE_PARAMS { CK_EC_KDF_TYPE kdf; CK_ULONG ulSharedDataLen; CK_BYTE_PTR pSharedData; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; CK_ULONG ulPrivateDataLen; CK_OBJECT_HANDLE hPrivateData; CK_ULONG ulPublicDataLen2; CK_BYTE_PTR pPublicData2; } CK_ECDH2_DERIVE_PARAMS; typedef CK_ECDH2_DERIVE_PARAMS CK_PTR CK_ECDH2_DERIVE_PARAMS_PTR; typedef struct CK_ECMQV_DERIVE_PARAMS { CK_EC_KDF_TYPE kdf; CK_ULONG ulSharedDataLen; CK_BYTE_PTR pSharedData; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; CK_ULONG ulPrivateDataLen; CK_OBJECT_HANDLE hPrivateData; CK_ULONG ulPublicDataLen2; CK_BYTE_PTR pPublicData2; CK_OBJECT_HANDLE publicKey; } CK_ECMQV_DERIVE_PARAMS; typedef CK_ECMQV_DERIVE_PARAMS CK_PTR CK_ECMQV_DERIVE_PARAMS_PTR; /* Typedefs and defines for the CKM_X9_42_DH_KEY_PAIR_GEN and the * CKM_X9_42_DH_PARAMETER_GEN mechanisms (new for PKCS #11 v2.11) */ typedef CK_ULONG CK_X9_42_DH_KDF_TYPE; typedef CK_X9_42_DH_KDF_TYPE CK_PTR CK_X9_42_DH_KDF_TYPE_PTR; /* The following X9.42 DH key derivation functions are defined (besides CKD_NULL already defined : */ #define CKD_SHA1_KDF_ASN1 0x00000003 #define CKD_SHA1_KDF_CONCATENATE 0x00000004 /* CK_X9_42_DH1_DERIVE_PARAMS is new for v2.11. * CK_X9_42_DH1_DERIVE_PARAMS provides the parameters to the * CKM_X9_42_DH_DERIVE key derivation mechanism, where each party * contributes one key pair */ typedef struct CK_X9_42_DH1_DERIVE_PARAMS { CK_X9_42_DH_KDF_TYPE kdf; CK_ULONG ulOtherInfoLen; CK_BYTE_PTR pOtherInfo; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; } CK_X9_42_DH1_DERIVE_PARAMS; typedef struct CK_X9_42_DH1_DERIVE_PARAMS CK_PTR CK_X9_42_DH1_DERIVE_PARAMS_PTR; /* CK_X9_42_DH2_DERIVE_PARAMS is new for v2.11. * CK_X9_42_DH2_DERIVE_PARAMS provides the parameters to the * CKM_X9_42_DH_HYBRID_DERIVE and CKM_X9_42_MQV_DERIVE key derivation * mechanisms, where each party contributes two key pairs */ typedef struct CK_X9_42_DH2_DERIVE_PARAMS { CK_X9_42_DH_KDF_TYPE kdf; CK_ULONG ulOtherInfoLen; CK_BYTE_PTR pOtherInfo; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; CK_ULONG ulPrivateDataLen; CK_OBJECT_HANDLE hPrivateData; CK_ULONG ulPublicDataLen2; CK_BYTE_PTR pPublicData2; } CK_X9_42_DH2_DERIVE_PARAMS; typedef CK_X9_42_DH2_DERIVE_PARAMS CK_PTR CK_X9_42_DH2_DERIVE_PARAMS_PTR; typedef struct CK_X9_42_MQV_DERIVE_PARAMS { CK_X9_42_DH_KDF_TYPE kdf; CK_ULONG ulOtherInfoLen; CK_BYTE_PTR pOtherInfo; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; CK_ULONG ulPrivateDataLen; CK_OBJECT_HANDLE hPrivateData; CK_ULONG ulPublicDataLen2; CK_BYTE_PTR pPublicData2; CK_OBJECT_HANDLE publicKey; } CK_X9_42_MQV_DERIVE_PARAMS; typedef CK_X9_42_MQV_DERIVE_PARAMS CK_PTR CK_X9_42_MQV_DERIVE_PARAMS_PTR; /* CK_KEA_DERIVE_PARAMS provides the parameters to the * CKM_KEA_DERIVE mechanism */ /* CK_KEA_DERIVE_PARAMS is new for v2.0 */ typedef struct CK_KEA_DERIVE_PARAMS { CK_BBOOL isSender; CK_ULONG ulRandomLen; CK_BYTE_PTR pRandomA; CK_BYTE_PTR pRandomB; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; } CK_KEA_DERIVE_PARAMS; typedef CK_KEA_DERIVE_PARAMS CK_PTR CK_KEA_DERIVE_PARAMS_PTR; /* CK_RC2_PARAMS provides the parameters to the CKM_RC2_ECB and * CKM_RC2_MAC mechanisms. An instance of CK_RC2_PARAMS just * holds the effective keysize */ typedef CK_ULONG CK_RC2_PARAMS; typedef CK_RC2_PARAMS CK_PTR CK_RC2_PARAMS_PTR; /* CK_RC2_CBC_PARAMS provides the parameters to the CKM_RC2_CBC * mechanism */ typedef struct CK_RC2_CBC_PARAMS { /* ulEffectiveBits was changed from CK_USHORT to CK_ULONG for * v2.0 */ CK_ULONG ulEffectiveBits; /* effective bits (1-1024) */ CK_BYTE iv[8]; /* IV for CBC mode */ } CK_RC2_CBC_PARAMS; typedef CK_RC2_CBC_PARAMS CK_PTR CK_RC2_CBC_PARAMS_PTR; /* CK_RC2_MAC_GENERAL_PARAMS provides the parameters for the * CKM_RC2_MAC_GENERAL mechanism */ /* CK_RC2_MAC_GENERAL_PARAMS is new for v2.0 */ typedef struct CK_RC2_MAC_GENERAL_PARAMS { CK_ULONG ulEffectiveBits; /* effective bits (1-1024) */ CK_ULONG ulMacLength; /* Length of MAC in bytes */ } CK_RC2_MAC_GENERAL_PARAMS; typedef CK_RC2_MAC_GENERAL_PARAMS CK_PTR CK_RC2_MAC_GENERAL_PARAMS_PTR; /* CK_RC5_PARAMS provides the parameters to the CKM_RC5_ECB and * CKM_RC5_MAC mechanisms */ /* CK_RC5_PARAMS is new for v2.0 */ typedef struct CK_RC5_PARAMS { CK_ULONG ulWordsize; /* wordsize in bits */ CK_ULONG ulRounds; /* number of rounds */ } CK_RC5_PARAMS; typedef CK_RC5_PARAMS CK_PTR CK_RC5_PARAMS_PTR; /* CK_RC5_CBC_PARAMS provides the parameters to the CKM_RC5_CBC * mechanism */ /* CK_RC5_CBC_PARAMS is new for v2.0 */ typedef struct CK_RC5_CBC_PARAMS { CK_ULONG ulWordsize; /* wordsize in bits */ CK_ULONG ulRounds; /* number of rounds */ CK_BYTE_PTR pIv; /* pointer to IV */ CK_ULONG ulIvLen; /* length of IV in bytes */ } CK_RC5_CBC_PARAMS; typedef CK_RC5_CBC_PARAMS CK_PTR CK_RC5_CBC_PARAMS_PTR; /* CK_RC5_MAC_GENERAL_PARAMS provides the parameters for the * CKM_RC5_MAC_GENERAL mechanism */ /* CK_RC5_MAC_GENERAL_PARAMS is new for v2.0 */ typedef struct CK_RC5_MAC_GENERAL_PARAMS { CK_ULONG ulWordsize; /* wordsize in bits */ CK_ULONG ulRounds; /* number of rounds */ CK_ULONG ulMacLength; /* Length of MAC in bytes */ } CK_RC5_MAC_GENERAL_PARAMS; typedef CK_RC5_MAC_GENERAL_PARAMS CK_PTR CK_RC5_MAC_GENERAL_PARAMS_PTR; /* CK_MAC_GENERAL_PARAMS provides the parameters to most block * ciphers' MAC_GENERAL mechanisms. Its value is the length of * the MAC */ /* CK_MAC_GENERAL_PARAMS is new for v2.0 */ typedef CK_ULONG CK_MAC_GENERAL_PARAMS; typedef CK_MAC_GENERAL_PARAMS CK_PTR CK_MAC_GENERAL_PARAMS_PTR; /* CK_DES/AES_ECB/CBC_ENCRYPT_DATA_PARAMS are new for v2.20 */ typedef struct CK_DES_CBC_ENCRYPT_DATA_PARAMS { CK_BYTE iv[8]; CK_BYTE_PTR pData; CK_ULONG length; } CK_DES_CBC_ENCRYPT_DATA_PARAMS; typedef CK_DES_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_DES_CBC_ENCRYPT_DATA_PARAMS_PTR; typedef struct CK_AES_CBC_ENCRYPT_DATA_PARAMS { CK_BYTE iv[16]; CK_BYTE_PTR pData; CK_ULONG length; } CK_AES_CBC_ENCRYPT_DATA_PARAMS; typedef CK_AES_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_AES_CBC_ENCRYPT_DATA_PARAMS_PTR; /* CK_SKIPJACK_PRIVATE_WRAP_PARAMS provides the parameters to the * CKM_SKIPJACK_PRIVATE_WRAP mechanism */ /* CK_SKIPJACK_PRIVATE_WRAP_PARAMS is new for v2.0 */ typedef struct CK_SKIPJACK_PRIVATE_WRAP_PARAMS { CK_ULONG ulPasswordLen; CK_BYTE_PTR pPassword; CK_ULONG ulPublicDataLen; CK_BYTE_PTR pPublicData; CK_ULONG ulPAndGLen; CK_ULONG ulQLen; CK_ULONG ulRandomLen; CK_BYTE_PTR pRandomA; CK_BYTE_PTR pPrimeP; CK_BYTE_PTR pBaseG; CK_BYTE_PTR pSubprimeQ; } CK_SKIPJACK_PRIVATE_WRAP_PARAMS; typedef CK_SKIPJACK_PRIVATE_WRAP_PARAMS CK_PTR CK_SKIPJACK_PRIVATE_WRAP_PTR; /* CK_SKIPJACK_RELAYX_PARAMS provides the parameters to the * CKM_SKIPJACK_RELAYX mechanism */ /* CK_SKIPJACK_RELAYX_PARAMS is new for v2.0 */ typedef struct CK_SKIPJACK_RELAYX_PARAMS { CK_ULONG ulOldWrappedXLen; CK_BYTE_PTR pOldWrappedX; CK_ULONG ulOldPasswordLen; CK_BYTE_PTR pOldPassword; CK_ULONG ulOldPublicDataLen; CK_BYTE_PTR pOldPublicData; CK_ULONG ulOldRandomLen; CK_BYTE_PTR pOldRandomA; CK_ULONG ulNewPasswordLen; CK_BYTE_PTR pNewPassword; CK_ULONG ulNewPublicDataLen; CK_BYTE_PTR pNewPublicData; CK_ULONG ulNewRandomLen; CK_BYTE_PTR pNewRandomA; } CK_SKIPJACK_RELAYX_PARAMS; typedef CK_SKIPJACK_RELAYX_PARAMS CK_PTR CK_SKIPJACK_RELAYX_PARAMS_PTR; typedef struct CK_PBE_PARAMS { CK_BYTE_PTR pInitVector; CK_UTF8CHAR_PTR pPassword; CK_ULONG ulPasswordLen; CK_BYTE_PTR pSalt; CK_ULONG ulSaltLen; CK_ULONG ulIteration; } CK_PBE_PARAMS; typedef CK_PBE_PARAMS CK_PTR CK_PBE_PARAMS_PTR; /* CK_KEY_WRAP_SET_OAEP_PARAMS provides the parameters to the * CKM_KEY_WRAP_SET_OAEP mechanism */ /* CK_KEY_WRAP_SET_OAEP_PARAMS is new for v2.0 */ typedef struct CK_KEY_WRAP_SET_OAEP_PARAMS { CK_BYTE bBC; /* block contents byte */ CK_BYTE_PTR pX; /* extra data */ CK_ULONG ulXLen; /* length of extra data in bytes */ } CK_KEY_WRAP_SET_OAEP_PARAMS; typedef CK_KEY_WRAP_SET_OAEP_PARAMS CK_PTR CK_KEY_WRAP_SET_OAEP_PARAMS_PTR; typedef struct CK_SSL3_RANDOM_DATA { CK_BYTE_PTR pClientRandom; CK_ULONG ulClientRandomLen; CK_BYTE_PTR pServerRandom; CK_ULONG ulServerRandomLen; } CK_SSL3_RANDOM_DATA; typedef struct CK_SSL3_MASTER_KEY_DERIVE_PARAMS { CK_SSL3_RANDOM_DATA RandomInfo; CK_VERSION_PTR pVersion; } CK_SSL3_MASTER_KEY_DERIVE_PARAMS; typedef struct CK_SSL3_MASTER_KEY_DERIVE_PARAMS CK_PTR CK_SSL3_MASTER_KEY_DERIVE_PARAMS_PTR; typedef struct CK_SSL3_KEY_MAT_OUT { CK_OBJECT_HANDLE hClientMacSecret; CK_OBJECT_HANDLE hServerMacSecret; CK_OBJECT_HANDLE hClientKey; CK_OBJECT_HANDLE hServerKey; CK_BYTE_PTR pIVClient; CK_BYTE_PTR pIVServer; } CK_SSL3_KEY_MAT_OUT; typedef CK_SSL3_KEY_MAT_OUT CK_PTR CK_SSL3_KEY_MAT_OUT_PTR; typedef struct CK_SSL3_KEY_MAT_PARAMS { CK_ULONG ulMacSizeInBits; CK_ULONG ulKeySizeInBits; CK_ULONG ulIVSizeInBits; CK_BBOOL bIsExport; CK_SSL3_RANDOM_DATA RandomInfo; CK_SSL3_KEY_MAT_OUT_PTR pReturnedKeyMaterial; } CK_SSL3_KEY_MAT_PARAMS; typedef CK_SSL3_KEY_MAT_PARAMS CK_PTR CK_SSL3_KEY_MAT_PARAMS_PTR; /* CK_TLS_PRF_PARAMS is new for version 2.20 */ typedef struct CK_TLS_PRF_PARAMS { CK_BYTE_PTR pSeed; CK_ULONG ulSeedLen; CK_BYTE_PTR pLabel; CK_ULONG ulLabelLen; CK_BYTE_PTR pOutput; CK_ULONG_PTR pulOutputLen; } CK_TLS_PRF_PARAMS; typedef CK_TLS_PRF_PARAMS CK_PTR CK_TLS_PRF_PARAMS_PTR; /* WTLS is new for version 2.20 */ typedef struct CK_WTLS_RANDOM_DATA { CK_BYTE_PTR pClientRandom; CK_ULONG ulClientRandomLen; CK_BYTE_PTR pServerRandom; CK_ULONG ulServerRandomLen; } CK_WTLS_RANDOM_DATA; typedef CK_WTLS_RANDOM_DATA CK_PTR CK_WTLS_RANDOM_DATA_PTR; typedef struct CK_WTLS_MASTER_KEY_DERIVE_PARAMS { CK_MECHANISM_TYPE DigestMechanism; CK_WTLS_RANDOM_DATA RandomInfo; CK_BYTE_PTR pVersion; } CK_WTLS_MASTER_KEY_DERIVE_PARAMS; typedef CK_WTLS_MASTER_KEY_DERIVE_PARAMS CK_PTR CK_WTLS_MASTER_KEY_DERIVE_PARAMS_PTR; typedef struct CK_WTLS_PRF_PARAMS { CK_MECHANISM_TYPE DigestMechanism; CK_BYTE_PTR pSeed; CK_ULONG ulSeedLen; CK_BYTE_PTR pLabel; CK_ULONG ulLabelLen; CK_BYTE_PTR pOutput; CK_ULONG_PTR pulOutputLen; } CK_WTLS_PRF_PARAMS; typedef CK_WTLS_PRF_PARAMS CK_PTR CK_WTLS_PRF_PARAMS_PTR; typedef struct CK_WTLS_KEY_MAT_OUT { CK_OBJECT_HANDLE hMacSecret; CK_OBJECT_HANDLE hKey; CK_BYTE_PTR pIV; } CK_WTLS_KEY_MAT_OUT; typedef CK_WTLS_KEY_MAT_OUT CK_PTR CK_WTLS_KEY_MAT_OUT_PTR; typedef struct CK_WTLS_KEY_MAT_PARAMS { CK_MECHANISM_TYPE DigestMechanism; CK_ULONG ulMacSizeInBits; CK_ULONG ulKeySizeInBits; CK_ULONG ulIVSizeInBits; CK_ULONG ulSequenceNumber; CK_BBOOL bIsExport; CK_WTLS_RANDOM_DATA RandomInfo; CK_WTLS_KEY_MAT_OUT_PTR pReturnedKeyMaterial; } CK_WTLS_KEY_MAT_PARAMS; typedef CK_WTLS_KEY_MAT_PARAMS CK_PTR CK_WTLS_KEY_MAT_PARAMS_PTR; /* CMS is new for version 2.20 */ typedef struct CK_CMS_SIG_PARAMS { CK_OBJECT_HANDLE certificateHandle; CK_MECHANISM_PTR pSigningMechanism; CK_MECHANISM_PTR pDigestMechanism; CK_UTF8CHAR_PTR pContentType; CK_BYTE_PTR pRequestedAttributes; CK_ULONG ulRequestedAttributesLen; CK_BYTE_PTR pRequiredAttributes; CK_ULONG ulRequiredAttributesLen; } CK_CMS_SIG_PARAMS; typedef CK_CMS_SIG_PARAMS CK_PTR CK_CMS_SIG_PARAMS_PTR; typedef struct CK_KEY_DERIVATION_STRING_DATA { CK_BYTE_PTR pData; CK_ULONG ulLen; } CK_KEY_DERIVATION_STRING_DATA; typedef CK_KEY_DERIVATION_STRING_DATA CK_PTR CK_KEY_DERIVATION_STRING_DATA_PTR; /* The CK_EXTRACT_PARAMS is used for the * CKM_EXTRACT_KEY_FROM_KEY mechanism. It specifies which bit * of the base key should be used as the first bit of the * derived key */ /* CK_EXTRACT_PARAMS is new for v2.0 */ typedef CK_ULONG CK_EXTRACT_PARAMS; typedef CK_EXTRACT_PARAMS CK_PTR CK_EXTRACT_PARAMS_PTR; /* CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE is new for v2.10. * CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE is used to * indicate the Pseudo-Random Function (PRF) used to generate * key bits using PKCS #5 PBKDF2. */ typedef CK_ULONG CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE; typedef CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE CK_PTR CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE_PTR; /* The following PRFs are defined in PKCS #5 v2.0. */ #define CKP_PKCS5_PBKD2_HMAC_SHA1 0x00000001 /* CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE is new for v2.10. * CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE is used to indicate the * source of the salt value when deriving a key using PKCS #5 * PBKDF2. */ typedef CK_ULONG CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE; typedef CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE CK_PTR CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE_PTR; /* The following salt value sources are defined in PKCS #5 v2.0. */ #define CKZ_SALT_SPECIFIED 0x00000001 /* CK_PKCS5_PBKD2_PARAMS is new for v2.10. * CK_PKCS5_PBKD2_PARAMS is a structure that provides the * parameters to the CKM_PKCS5_PBKD2 mechanism. */ typedef struct CK_PKCS5_PBKD2_PARAMS { CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE saltSource; CK_VOID_PTR pSaltSourceData; CK_ULONG ulSaltSourceDataLen; CK_ULONG iterations; CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE prf; CK_VOID_PTR pPrfData; CK_ULONG ulPrfDataLen; CK_UTF8CHAR_PTR pPassword; // CK_ULONG_PTR ulPasswordLen; CK_ULONG ulPasswordLen; } CK_PKCS5_PBKD2_PARAMS; typedef CK_PKCS5_PBKD2_PARAMS CK_PTR CK_PKCS5_PBKD2_PARAMS_PTR; /* All CK_OTP structs are new for PKCS #11 v2.20 amendment 3 */ typedef CK_ULONG CK_OTP_PARAM_TYPE; typedef CK_OTP_PARAM_TYPE CK_PARAM_TYPE; /* B/w compatibility */ typedef struct CK_OTP_PARAM { CK_OTP_PARAM_TYPE type; CK_VOID_PTR pValue; CK_ULONG ulValueLen; } CK_OTP_PARAM; typedef CK_OTP_PARAM CK_PTR CK_OTP_PARAM_PTR; typedef struct CK_OTP_PARAMS { CK_OTP_PARAM_PTR pParams; CK_ULONG ulCount; } CK_OTP_PARAMS; typedef CK_OTP_PARAMS CK_PTR CK_OTP_PARAMS_PTR; typedef struct CK_OTP_SIGNATURE_INFO { CK_OTP_PARAM_PTR pParams; CK_ULONG ulCount; } CK_OTP_SIGNATURE_INFO; typedef CK_OTP_SIGNATURE_INFO CK_PTR CK_OTP_SIGNATURE_INFO_PTR; /* The following OTP-related defines are new for PKCS #11 v2.20 amendment 1 */ #define CK_OTP_VALUE 0 #define CK_OTP_PIN 1 #define CK_OTP_CHALLENGE 2 #define CK_OTP_TIME 3 #define CK_OTP_COUNTER 4 #define CK_OTP_FLAGS 5 #define CK_OTP_OUTPUT_LENGTH 6 #define CK_OTP_OUTPUT_FORMAT 7 /* The following OTP-related defines are new for PKCS #11 v2.20 amendment 1 */ #define CKF_NEXT_OTP 0x00000001 #define CKF_EXCLUDE_TIME 0x00000002 #define CKF_EXCLUDE_COUNTER 0x00000004 #define CKF_EXCLUDE_CHALLENGE 0x00000008 #define CKF_EXCLUDE_PIN 0x00000010 #define CKF_USER_FRIENDLY_OTP 0x00000020 /* CK_KIP_PARAMS is new for PKCS #11 v2.20 amendment 2 */ typedef struct CK_KIP_PARAMS { CK_MECHANISM_PTR pMechanism; CK_OBJECT_HANDLE hKey; CK_BYTE_PTR pSeed; CK_ULONG ulSeedLen; } CK_KIP_PARAMS; typedef CK_KIP_PARAMS CK_PTR CK_KIP_PARAMS_PTR; /* CK_AES_CTR_PARAMS is new for PKCS #11 v2.20 amendment 3 */ typedef struct CK_AES_CTR_PARAMS { CK_ULONG ulCounterBits; CK_BYTE cb[16]; } CK_AES_CTR_PARAMS; typedef CK_AES_CTR_PARAMS CK_PTR CK_AES_CTR_PARAMS_PTR; /* CK_CAMELLIA_CTR_PARAMS is new for PKCS #11 v2.20 amendment 3 */ typedef struct CK_CAMELLIA_CTR_PARAMS { CK_ULONG ulCounterBits; CK_BYTE cb[16]; } CK_CAMELLIA_CTR_PARAMS; typedef CK_CAMELLIA_CTR_PARAMS CK_PTR CK_CAMELLIA_CTR_PARAMS_PTR; /* CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS is new for PKCS #11 v2.20 amendment 3 */ typedef struct CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS { CK_BYTE iv[16]; CK_BYTE_PTR pData; CK_ULONG length; } CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS; typedef CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS_PTR; /* CK_ARIA_CBC_ENCRYPT_DATA_PARAMS is new for PKCS #11 v2.20 amendment 3 */ typedef struct CK_ARIA_CBC_ENCRYPT_DATA_PARAMS { CK_BYTE iv[16]; CK_BYTE_PTR pData; CK_ULONG length; } CK_ARIA_CBC_ENCRYPT_DATA_PARAMS; typedef CK_ARIA_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_ARIA_CBC_ENCRYPT_DATA_PARAMS_PTR; #endif mstflint-4.26.0/mft_utils/hsmclient/inc/rsa/pkcs11.h0000644000175000017500000002340614522641732022515 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _PKCS11_H_ #define _PKCS11_H_ 1 #ifdef __cplusplus extern "C" { #endif /* Before including this file (pkcs11.h) (or pkcs11t.h by * itself), 6 platform-specific macros must be defined. These * macros are described below, and typical definitions for them * are also given. Be advised that these definitions can depend * on both the platform and the compiler used (and possibly also * on whether a Cryptoki library is linked statically or * dynamically). * * In addition to defining these 6 macros, the packing convention * for Cryptoki structures should be set. The Cryptoki * convention on packing is that structures should be 1-byte * aligned. * * If you're using Microsoft Developer Studio 5.0 to produce * Win32 stuff, this might be done by using the following * preprocessor directive before including pkcs11.h or pkcs11t.h: * * #pragma pack(push, cryptoki, 1) * * and using the following preprocessor directive after including * pkcs11.h or pkcs11t.h: * * #pragma pack(pop, cryptoki) * * If you're using an earlier version of Microsoft Developer * Studio to produce Win16 stuff, this might be done by using * the following preprocessor directive before including * pkcs11.h or pkcs11t.h: * * #pragma pack(1) * * In a UNIX environment, you're on your own for this. You might * not need to do (or be able to do!) anything. * * * Now for the macros: * * * 1. CK_PTR: The indirection string for making a pointer to an * object. It can be used like this: * * typedef CK_BYTE CK_PTR CK_BYTE_PTR; * * If you're using Microsoft Developer Studio 5.0 to produce * Win32 stuff, it might be defined by: * * #define CK_PTR * * * If you're using an earlier version of Microsoft Developer * Studio to produce Win16 stuff, it might be defined by: * * #define CK_PTR far * * * In a typical UNIX environment, it might be defined by: * * #define CK_PTR * * * * 2. CK_DEFINE_FUNCTION(returnType, name): A macro which makes * an exportable Cryptoki library function definition out of a * return type and a function name. It should be used in the * following fashion to define the exposed Cryptoki functions in * a Cryptoki library: * * CK_DEFINE_FUNCTION(CK_RV, C_Initialize)( * CK_VOID_PTR pReserved * ) * { * ... * } * * If you're using Microsoft Developer Studio 5.0 to define a * function in a Win32 Cryptoki .dll, it might be defined by: * * #define CK_DEFINE_FUNCTION(returnType, name) \ * returnType __declspec(dllexport) name * * If you're using an earlier version of Microsoft Developer * Studio to define a function in a Win16 Cryptoki .dll, it * might be defined by: * * #define CK_DEFINE_FUNCTION(returnType, name) \ * returnType __export _far _pascal name * * In a UNIX environment, it might be defined by: * * #define CK_DEFINE_FUNCTION(returnType, name) \ * returnType name * * * 3. CK_DECLARE_FUNCTION(returnType, name): A macro which makes * an importable Cryptoki library function declaration out of a * return type and a function name. It should be used in the * following fashion: * * extern CK_DECLARE_FUNCTION(CK_RV, C_Initialize)( * CK_VOID_PTR pReserved * ); * * If you're using Microsoft Developer Studio 5.0 to declare a * function in a Win32 Cryptoki .dll, it might be defined by: * * #define CK_DECLARE_FUNCTION(returnType, name) \ * returnType __declspec(dllimport) name * * If you're using an earlier version of Microsoft Developer * Studio to declare a function in a Win16 Cryptoki .dll, it * might be defined by: * * #define CK_DECLARE_FUNCTION(returnType, name) \ * returnType __export _far _pascal name * * In a UNIX environment, it might be defined by: * * #define CK_DECLARE_FUNCTION(returnType, name) \ * returnType name * * * 4. CK_DECLARE_FUNCTION_POINTER(returnType, name): A macro * which makes a Cryptoki API function pointer declaration or * function pointer type declaration out of a return type and a * function name. It should be used in the following fashion: * * // Define funcPtr to be a pointer to a Cryptoki API function * // taking arguments args and returning CK_RV. * CK_DECLARE_FUNCTION_POINTER(CK_RV, funcPtr)(args); * * or * * // Define funcPtrType to be the type of a pointer to a * // Cryptoki API function taking arguments args and returning * // CK_RV, and then define funcPtr to be a variable of type * // funcPtrType. * typedef CK_DECLARE_FUNCTION_POINTER(CK_RV, funcPtrType)(args); * funcPtrType funcPtr; * * If you're using Microsoft Developer Studio 5.0 to access * functions in a Win32 Cryptoki .dll, in might be defined by: * * #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \ * returnType __declspec(dllimport) (* name) * * If you're using an earlier version of Microsoft Developer * Studio to access functions in a Win16 Cryptoki .dll, it might * be defined by: * * #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \ * returnType __export _far _pascal (* name) * * In a UNIX environment, it might be defined by: * * #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \ * returnType (* name) * * * 5. CK_CALLBACK_FUNCTION(returnType, name): A macro which makes * a function pointer type for an application callback out of * a return type for the callback and a name for the callback. * It should be used in the following fashion: * * CK_CALLBACK_FUNCTION(CK_RV, myCallback)(args); * * to declare a function pointer, myCallback, to a callback * which takes arguments args and returns a CK_RV. It can also * be used like this: * * typedef CK_CALLBACK_FUNCTION(CK_RV, myCallbackType)(args); * myCallbackType myCallback; * * If you're using Microsoft Developer Studio 5.0 to do Win32 * Cryptoki development, it might be defined by: * * #define CK_CALLBACK_FUNCTION(returnType, name) \ * returnType (* name) * * If you're using an earlier version of Microsoft Developer * Studio to do Win16 development, it might be defined by: * * #define CK_CALLBACK_FUNCTION(returnType, name) \ * returnType _far _pascal (* name) * * In a UNIX environment, it might be defined by: * * #define CK_CALLBACK_FUNCTION(returnType, name) \ * returnType (* name) * * * 6. NULL_PTR: This macro is the value of a NULL pointer. * * In any ANSI/ISO C environment (and in many others as well), * this should best be defined by * * #ifndef NULL_PTR * #define NULL_PTR 0 * #endif */ /* All the various Cryptoki types and #define'd values are in the * file pkcs11t.h. */ #include "pkcs11t.h" #define __PASTE(x, y) x##y /* ============================================================== * Define the "extern" form of all the entry points. * ============================================================== */ #define CK_NEED_ARG_LIST 1 #define CK_PKCS11_FUNCTION_INFO(name) extern CK_DECLARE_FUNCTION(CK_RV, name) /* pkcs11f.h has all the information about the Cryptoki * function prototypes. */ #include "pkcs11f.h" #undef CK_NEED_ARG_LIST #undef CK_PKCS11_FUNCTION_INFO /* ============================================================== * Define the typedef form of all the entry points. That is, for * each Cryptoki function C_XXX, define a type CK_C_XXX which is * a pointer to that kind of function. * ============================================================== */ #define CK_NEED_ARG_LIST 1 #define CK_PKCS11_FUNCTION_INFO(name) typedef CK_DECLARE_FUNCTION_POINTER(CK_RV, __PASTE(CK_, name)) /* pkcs11f.h has all the information about the Cryptoki * function prototypes. */ #include "pkcs11f.h" #undef CK_NEED_ARG_LIST #undef CK_PKCS11_FUNCTION_INFO /* ============================================================== * Define structed vector of entry points. A CK_FUNCTION_LIST * contains a CK_VERSION indicating a library's Cryptoki version * and then a whole slew of function pointers to the routines in * the library. This type was declared, but not defined, in * pkcs11t.h. * ============================================================== */ #define CK_PKCS11_FUNCTION_INFO(name) __PASTE(CK_, name) name; struct CK_FUNCTION_LIST { CK_VERSION version; /* Cryptoki version */ /* Pile all the function pointers into the CK_FUNCTION_LIST. */ /* pkcs11f.h has all the information about the Cryptoki * function prototypes. */ #include "pkcs11f.h" }; #undef CK_PKCS11_FUNCTION_INFO #undef __PASTE #ifdef __cplusplus } #endif #endif mstflint-4.26.0/mft_utils/hsmclient/inc/sfnt_ext_list_members.h0000644000175000017500000003146414522641732025230 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* WARNING: This is a generated file. Do not edit.*/ CK_CA_GetFunctionList CA_GetFunctionList; CK_CA_WaitForSlotEvent CA_WaitForSlotEvent; CK_CA_InitIndirectToken CA_InitIndirectToken; CK_CA_InitIndirectPIN CA_InitIndirectPIN; CK_CA_ResetPIN CA_ResetPIN; CK_CA_InitRolePIN CA_InitRolePIN; CK_CA_InitSlotRolePIN CA_InitSlotRolePIN; CK_CA_RoleStateGet CA_RoleStateGet; CK_CA_CreateLoginChallenge CA_CreateLoginChallenge; CK_CA_CreateContainerLoginChallenge CA_CreateContainerLoginChallenge; CK_CA_Deactivate CA_Deactivate; CK_CA_FindAdminSlotForSlot CA_FindAdminSlotForSlot; CK_CA_TokenInsert CA_TokenInsert; CK_CA_TokenInsertNoAuth CA_TokenInsertNoAuth; CK_CA_TokenZeroize CA_TokenZeroize; CK_CA_TokenDelete CA_TokenDelete; CK_CA_GetFirmwareVersion CA_GetFirmwareVersion; CK_CA_OpenSession CA_OpenSession; CK_CA_OpenSessionWithAppID CA_OpenSessionWithAppID; CK_CA_IndirectLogin CA_IndirectLogin; CK_CA_InitializeRemotePEDVector CA_InitializeRemotePEDVector; CK_CA_DeleteRemotePEDVector CA_DeleteRemotePEDVector; CK_CA_GetRemotePEDVectorStatus CA_GetRemotePEDVectorStatus; CK_CA_ConfigureRemotePED CA_ConfigureRemotePED; CK_CA_DismantleRemotePED CA_DismantleRemotePED; CK_CA_Restart CA_Restart; CK_CA_RestartForContainer CA_RestartForContainer; CK_CA_CloseApplicationID CA_CloseApplicationID; CK_CA_CloseApplicationIDForContainer CA_CloseApplicationIDForContainer; CK_CA_OpenApplicationID CA_OpenApplicationID; CK_CA_OpenApplicationIDForContainer CA_OpenApplicationIDForContainer; CK_CA_SetApplicationID CA_SetApplicationID; CK_CA_ManualKCV CA_ManualKCV; CK_CA_SetLKCV CA_SetLKCV; CK_CA_SetKCV CA_SetKCV; CK_CA_SetRDK CA_SetRDK; CK_CA_SetCloningDomain CA_SetCloningDomain; CK_CA_ClonePrivateKey CA_ClonePrivateKey; CK_CA_CloneObject CA_CloneObject; CK_CA_GenerateCloningKEV CA_GenerateCloningKEV; CK_CA_CloneAsTargetInit CA_CloneAsTargetInit; CK_CA_CloneAsSource CA_CloneAsSource; CK_CA_CloneAsTarget CA_CloneAsTarget; CK_CA_SetMofN CA_SetMofN; CK_CA_GenerateMofN CA_GenerateMofN; CK_CA_GenerateCloneableMofN CA_GenerateCloneableMofN; CK_CA_ModifyMofN CA_ModifyMofN; CK_CA_CloneMofN CA_CloneMofN; CK_CA_CloneModifyMofN CA_CloneModifyMofN; CK_CA_ActivateMofN CA_ActivateMofN; CK_CA_DeactivateMofN CA_DeactivateMofN; CK_CA_GetMofNStatus CA_GetMofNStatus; CK_CA_DuplicateMofN CA_DuplicateMofN; CK_CA_IsMofNEnabled CA_IsMofNEnabled; CK_CA_IsMofNRequired CA_IsMofNRequired; CK_CA_GenerateTokenKeys CA_GenerateTokenKeys; CK_CA_GenerateTWK CA_GenerateTWK; CK_CA_GetTokenCertificateInfo CA_GetTokenCertificateInfo; CK_CA_SetTokenCertificateSignature CA_SetTokenCertificateSignature; CK_CA_GetModuleList CA_GetModuleList; CK_CA_GetModuleInfo CA_GetModuleInfo; CK_CA_LoadModule CA_LoadModule; CK_CA_LoadEncryptedModule CA_LoadEncryptedModule; CK_CA_UnloadModule CA_UnloadModule; CK_CA_PerformModuleCall CA_PerformModuleCall; CK_CA_FirmwareUpdate CA_FirmwareUpdate; CK_CA_FirmwareRollback CA_FirmwareRollback; CK_CA_CapabilityUpdate CA_CapabilityUpdate; CK_CA_GetUserContainerNumber CA_GetUserContainerNumber; CK_CA_GetUserContainerName CA_GetUserContainerName; CK_CA_SetUserContainerName CA_SetUserContainerName; CK_CA_GetTokenInsertionCount CA_GetTokenInsertionCount; CK_CA_GetRollbackFirmwareVersion CA_GetRollbackFirmwareVersion; CK_CA_GetFPV CA_GetFPV; CK_CA_GetTPV CA_GetTPV; CK_CA_GetExtendedTPV CA_GetExtendedTPV; CK_CA_GetConfigurationElementDescription CA_GetConfigurationElementDescription; CK_CA_GetHSMCapabilitySet CA_GetHSMCapabilitySet; CK_CA_GetHSMCapabilitySetting CA_GetHSMCapabilitySetting; CK_CA_GetHSMPolicySet CA_GetHSMPolicySet; CK_CA_GetHSMPolicySetting CA_GetHSMPolicySetting; CK_CA_GetContainerCapabilitySet CA_GetContainerCapabilitySet; CK_CA_GetContainerCapabilitySetting CA_GetContainerCapabilitySetting; CK_CA_GetContainerPolicySet CA_GetContainerPolicySet; CK_CA_GetContainerPolicySetting CA_GetContainerPolicySetting; CK_CA_GetPartitionPolicyTemplate CA_GetPartitionPolicyTemplate; CK_CA_SetTPV CA_SetTPV; CK_CA_SetExtendedTPV CA_SetExtendedTPV; CK_CA_SetHSMPolicy CA_SetHSMPolicy; CK_CA_SetHSMPolicies CA_SetHSMPolicies; CK_CA_SetDestructiveHSMPolicy CA_SetDestructiveHSMPolicy; CK_CA_SetDestructiveHSMPolicies CA_SetDestructiveHSMPolicies; CK_CA_SetContainerPolicy CA_SetContainerPolicy; CK_CA_SetContainerPolicies CA_SetContainerPolicies; CK_CA_GetTokenCapabilities CA_GetTokenCapabilities; CK_CA_SetTokenPolicies CA_SetTokenPolicies; CK_CA_GetTokenPolicies CA_GetTokenPolicies; CK_CA_RetrieveLicenseList CA_RetrieveLicenseList; CK_CA_QueryLicense CA_QueryLicense; CK_CA_GetContainerStatus CA_GetContainerStatus; CK_CA_GetTokenStatus CA_GetTokenStatus; CK_CA_GetSessionInfo CA_GetSessionInfo; CK_CA_ReadCommonStore CA_ReadCommonStore; CK_CA_WriteCommonStore CA_WriteCommonStore; CK_CA_GetPrimarySlot CA_GetPrimarySlot; CK_CA_GetSecondarySlot CA_GetSecondarySlot; CK_CA_SwitchSecondarySlot CA_SwitchSecondarySlot; CK_CA_CloseSecondarySession CA_CloseSecondarySession; CK_CA_CloseAllSecondarySessions CA_CloseAllSecondarySessions; CK_CA_ChoosePrimarySlot CA_ChoosePrimarySlot; CK_CA_ChooseSecondarySlot CA_ChooseSecondarySlot; CK_CA_CloneObjectToAllSessions CA_CloneObjectToAllSessions; CK_CA_CloneAllObjectsToSession CA_CloneAllObjectsToSession; CK_CA_ResetDevice CA_ResetDevice; CK_CA_Zeroize CA_Zeroize; CK_CA_FactoryReset CA_FactoryReset; CK_CA_SetPedId CA_SetPedId; CK_CA_GetPedId CA_GetPedId; CK_CA_SpRawRead CA_SpRawRead; CK_CA_SpRawWrite CA_SpRawWrite; CK_CA_CheckOperationState CA_CheckOperationState; CK_CA_DestroyMultipleObjects CA_DestroyMultipleObjects; CK_CA_OpenSecureToken CA_OpenSecureToken; CK_CA_CloseSecureToken CA_CloseSecureToken; CK_CA_ListSecureTokenInit CA_ListSecureTokenInit; CK_CA_ListSecureTokenUpdate CA_ListSecureTokenUpdate; CK_CA_GetSecureElementMeta CA_GetSecureElementMeta; CK_CA_Bip32ExportPublicKey CA_Bip32ExportPublicKey; CK_CA_Bip32ImportPublicKey CA_Bip32ImportPublicKey; CK_CA_HAInit CA_HAInit; CK_CA_HAGetMasterPublic CA_HAGetMasterPublic; CK_CA_HAGetLoginChallenge CA_HAGetLoginChallenge; CK_CA_HAAnswerLoginChallenge CA_HAAnswerLoginChallenge; CK_CA_HALogin CA_HALogin; CK_CA_HAAnswerMofNChallenge CA_HAAnswerMofNChallenge; CK_CA_HAActivateMofN CA_HAActivateMofN; CK_CA_GetHAState CA_GetHAState; CK_CA_GetTokenCertificates CA_GetTokenCertificates; CK_CA_ExtractMaskedObject CA_ExtractMaskedObject; CK_CA_InsertMaskedObject CA_InsertMaskedObject; CK_CA_MultisignValue CA_MultisignValue; CK_CA_SIMExtract CA_SIMExtract; CK_CA_SIMInsert CA_SIMInsert; CK_CA_SIMMultiSign CA_SIMMultiSign; CK_CA_Extract CA_Extract; CK_CA_Insert CA_Insert; CK_CA_GetTokenObjectUID CA_GetTokenObjectUID; CK_CA_GetTokenObjectHandle CA_GetTokenObjectHandle; CK_CA_GetObjectUID CA_GetObjectUID; CK_CA_GetObjectHandle CA_GetObjectHandle; CK_CA_DeleteContainer CA_DeleteContainer; CK_CA_MTKSetStorage CA_MTKSetStorage; CK_CA_MTKRestore CA_MTKRestore; CK_CA_MTKResplit CA_MTKResplit; CK_CA_MTKZeroize CA_MTKZeroize; CK_CA_MTKGetState CA_MTKGetState; CK_CA_TamperClear CA_TamperClear; CK_CA_STMToggle CA_STMToggle; CK_CA_STMGetState CA_STMGetState; CK_CA_GetTSV CA_GetTSV; CK_CA_InvokeServiceInit CA_InvokeServiceInit; CK_CA_InvokeService CA_InvokeService; CK_CA_InvokeServiceFinal CA_InvokeServiceFinal; CK_CA_InvokeServiceAsynch CA_InvokeServiceAsynch; CK_CA_InvokeServiceSinglePart CA_InvokeServiceSinglePart; CK_CA_EncodeECPrimeParams CA_EncodeECPrimeParams; CK_CA_EncodeECChar2Params CA_EncodeECChar2Params; CK_CA_EncodeECParamsFromFile CA_EncodeECParamsFromFile; CK_CA_GetHSMStats CA_GetHSMStats; CK_CA_GetHSMStorageInformation CA_GetHSMStorageInformation; CK_CA_GetTokenStorageInformation CA_GetTokenStorageInformation; CK_CA_GetContainerStorageInformation CA_GetContainerStorageInformation; CK_CA_SetContainerSize CA_SetContainerSize; CK_CA_CreateContainerWithPolicy CA_CreateContainerWithPolicy; CK_CA_CreateContainer CA_CreateContainer; CK_CA_InitAudit CA_InitAudit; CK_CA_LogVerify CA_LogVerify; CK_CA_LogVerifyFile CA_LogVerifyFile; CK_CA_LogExternal CA_LogExternal; CK_CA_LogImportSecret CA_LogImportSecret; CK_CA_LogExportSecret CA_LogExportSecret; CK_CA_TimeSync CA_TimeSync; CK_CA_GetTime CA_GetTime; CK_CA_LogSetConfig CA_LogSetConfig; CK_CA_LogGetConfig CA_LogGetConfig; CK_CA_ReplaceFastPathKEK CA_ReplaceFastPathKEK; CK_CA_LogGetStatus CA_LogGetStatus; CK_CA_DeleteContainerWithHandle CA_DeleteContainerWithHandle; CK_CA_GetContainerList CA_GetContainerList; CK_CA_GetContainerName CA_GetContainerName; CK_CA_GetNumberOfAllowedContainers CA_GetNumberOfAllowedContainers; CK_CA_GetTunnelSlotNumber CA_GetTunnelSlotNumber; CK_CA_GetClusterState CA_GetClusterState; CK_CA_LockClusteredSlot CA_LockClusteredSlot; CK_CA_UnlockClusteredSlot CA_UnlockClusteredSlot; CK_CA_ModifyUsageCount CA_ModifyUsageCount; CK_CA_EnableUnauthTokenInsertion CA_EnableUnauthTokenInsertion; CK_CA_GetUnauthTokenInsertionStatus CA_GetUnauthTokenInsertionStatus; CK_CA_DisableUnauthTokenInsertion CA_DisableUnauthTokenInsertion; CK_CA_STCRegister CA_STCRegister; CK_CA_STCDeregister CA_STCDeregister; CK_CA_STCGetPubKey CA_STCGetPubKey; CK_CA_STCGetClientsList CA_STCGetClientsList; CK_CA_STCGetClientInfo CA_STCGetClientInfo; CK_CA_STCGetPartPubKey CA_STCGetPartPubKey; CK_CA_STCGetAdminPubKey CA_STCGetAdminPubKey; CK_CA_STCSetCipherAlgorithm CA_STCSetCipherAlgorithm; CK_CA_STCGetCipherAlgorithm CA_STCGetCipherAlgorithm; CK_CA_STCClearCipherAlgorithm CA_STCClearCipherAlgorithm; CK_CA_STCSetDigestAlgorithm CA_STCSetDigestAlgorithm; CK_CA_STCGetDigestAlgorithm CA_STCGetDigestAlgorithm; CK_CA_STCClearDigestAlgorithm CA_STCClearDigestAlgorithm; CK_CA_STCSetKeyLifeTime CA_STCSetKeyLifeTime; CK_CA_STCGetKeyLifeTime CA_STCGetKeyLifeTime; CK_CA_STCSetKeyActivationTimeOut CA_STCSetKeyActivationTimeOut; CK_CA_STCGetKeyActivationTimeOut CA_STCGetKeyActivationTimeOut; CK_CA_STCSetMaxSessions CA_STCSetMaxSessions; CK_CA_STCGetMaxSessions CA_STCGetMaxSessions; CK_CA_STCSetSequenceWindowSize CA_STCSetSequenceWindowSize; CK_CA_STCGetSequenceWindowSize CA_STCGetSequenceWindowSize; CK_CA_STCIsEnabled CA_STCIsEnabled; CK_CA_STCGetState CA_STCGetState; CK_CA_STCGetCurrentKeyLife CA_STCGetCurrentKeyLife; CK_CA_GetSlotIdForPhysicalSlot CA_GetSlotIdForPhysicalSlot; CK_CA_GetSlotIdForContainer CA_GetSlotIdForContainer; CK_CA_STCGetChannelID CA_STCGetChannelID; CK_CA_STCGetCipherID CA_STCGetCipherID; CK_CA_STCGetDigestID CA_STCGetDigestID; CK_CA_STCGetCipherIDs CA_STCGetCipherIDs; CK_CA_STCGetCipherNameByID CA_STCGetCipherNameByID; CK_CA_STCGetDigestIDs CA_STCGetDigestIDs; CK_CA_STCGetDigestNameByID CA_STCGetDigestNameByID; CK_CA_GetServerInstanceBySlotID CA_GetServerInstanceBySlotID; CK_CA_GetSlotListFromServerInstance CA_GetSlotListFromServerInstance; CK_CA_ChangeLabel CA_ChangeLabel; CK_CA_PerformSelfTest CA_PerformSelfTest; CK_CA_FMDownload CA_FMDownload; CK_CA_FMDelete CA_FMDelete; CK_CA_FMActivateSMFS CA_FMActivateSMFS; CK_CA_GetActualSlotList CA_GetActualSlotList; CK_CA_DeriveKeyAndWrap CA_DeriveKeyAndWrap; CK_CA_MdPriv_Initialize CA_MdPriv_Initialize; CK_CA_Get CA_Get; CK_CA_Put CA_Put; CK_CA_GetDefaultPartitionPolicyValue CA_GetDefaultPartitionPolicyValue; CK_CA_GetDefaultHSMPolicyValue CA_GetDefaultHSMPolicyValue; CK_CA_ValidateHSMPolicySet CA_ValidateHSMPolicySet; CK_CA_ValidateContainerPolicySet CA_ValidateContainerPolicySet; CK_CA_ZeroizeContainer CA_ZeroizeContainer; CK_CA_InitToken CA_InitToken; CK_CA_ReadUtilizationMetrics CA_ReadUtilizationMetrics; CK_CA_ReadAndResetUtilizationMetrics CA_ReadAndResetUtilizationMetrics; CK_CA_ReadAllUtilizationCounters CA_ReadAllUtilizationCounters; CK_CA_ReadUtilizationCount CA_ReadUtilizationCount; CK_CA_DescribeUtilizationBinId CA_DescribeUtilizationBinId; CK_CA_DescribeUtilizationCounterId CA_DescribeUtilizationCounterId; CK_CA_TestTrace CA_TestTrace; mstflint-4.26.0/mft_utils/hsmclient/inc/cryptoki_v2.h0000644000175000017500000016041314522641732023101 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _CRYPTOKI_H_ #define _CRYPTOKI_H_ #ifdef __cplusplus extern "C" { #endif /****************************************************************************\ * * * Operating System/Platform linking constructs * * * \****************************************************************************/ #if defined(VXD) #define CK_ENTRY #define CK_POINTER * #pragma pack(push, 1) #elif defined(OS_WIN32) #define CK_ENTRY __declspec(dllexport) #define CK_POINTER * #define CK_DEFINE_FUNCTION(returnType, name) returnType __declspec(dllexport) name #define CK_DECLARE_FUNCTION(returnType, name) returnType __declspec(dllexport) name #define CK_DECLARE_FUNCTION_POINTER(returnType, name) returnType __declspec(dllexport)(*name) #define CK_CALLBACK_FUNCTION(returnType, name) returnType(*name) #pragma pack(push, cryptoki, 1) #elif defined(OS_UNIX) || defined(OS_LINUX) #define CK_ENTRY #define CK_POINTER * #define CK_DEFINE_FUNCTION(returnType, name) returnType name #define CK_DECLARE_FUNCTION(returnType, name) returnType name #define CK_DECLARE_FUNCTION_POINTER(returnType, name) returnType(*name) #define CK_CALLBACK_FUNCTION(returnType, name) returnType(*name) // #pragma pack(1) #else #error "Unknown platform!" #endif #define ulMaxSessionCount usMaxSessionCount #define ulSessionCount usSessionCount #define ulMaxRwSessionCount usMaxRwSessionCount #define ulRwSessionCount usRwSessionCount #define ulMaxPinLen usMaxPinLen #define ulMinPinLen usMinPinLen #define ulDeviceError usDeviceError #define ulValueLen usValueLen #define ulParameterLen usParameterLen #define ulEffectiveBits usEffectiveBits #define ulPasswordLen usPasswordLen #define sLen ulSaltLen #define ulSaltLen usSaltLen #define ulIteration usIteration #define NULL_PTR 0 #define CK_PTR * #include "pkcs11.h" // Define same as ulong #ifdef __GNUC__ typedef unsigned long int CK_USHORT; typedef CK_USHORT CK_PTR CK_USHORT_PTR; #else typedef unsigned long int CK_USHORT; typedef CK_USHORT CK_PTR CK_USHORT_PTR; #endif #ifndef CK_MAKE_C_VERSION #define CK_MAKE_C_VERSION(_major, _minor) (((_major) << 8) + (_minor)) #endif #define C_VERSION CK_MAKE_C_VERSION(CRYPTOKI_VERSION_MAJOR, CRYPTOKI_VERSION_MINOR) /* v2.20 decimal */ /* Serial number size is fixed, but not using a #define. Must match sizeof(CK_TOKEN_INFO.serialNumber). * NOTE: Assume all serial numbers are space padded and there is no trailing 0. */ #define CK_TOKEN_SERIAL_NUMBER_SIZE 16 /* some special values for certain CK_ULONG variables */ #define CK_UNAVAILABLE_INFORMATION (~0UL) #define CK_EFFECTIVELY_INFINITE 0 #define CKU_CRYPTO_OFFICER CKU_USER #define CKU_LIMITED_USER 0x80000001 #define CKU_LIMITED_USER_OLD 0x8000001 #define CKU_CRYPTO_USER CKU_LIMITED_USER #define CKU_AUDIT 0x80000002 #define CKU_INVALID_USER_TYPE 0xffffffff #define CKU_VENDOR_DEFINED 0x80000000 #define CKF_EXCLUSIVE_SESSION 0x0001 #define CKF_EXCLUSIVE_EXISTS 0x0010 #define CKF_SO_SESSION 0x8000 #define CKF_AUDIT_SESSION 0x10000 /* For internal use only */ #define CKF_VENDER_DEFINED 0x10000000 #define CKF_IGNORE_HAONLY (CKF_VENDER_DEFINED << 3) #define CKF_USE_APPID (CKF_VENDER_DEFINED << 2) /* Reset Flags */ #define CKF_RESET_LONG_BOOT 0x1 /* From ProtectServer */ #define CKF_ADMIN_TOKEN 0x10000000 /* ProtectServer Security Mode flags */ #define CKF_ENTRUST_READY 0x00000001 #define CKF_NO_CLEAR_PINS 0x00000002 #define CKF_AUTH_PROTECTION 0x00000004 #define CKF_NO_PUBLIC_CRYPTO 0x00000008 #define CKF_TAMPER_BEFORE_UPGRADE 0x00000010 #define CKF_INCREASED_SECURITY 0x00000020 #define CKF_FIPS_ALGORITHMS 0x00000040 #define CKF_FULL_SMS_ENC 0x00000080 #define CKF_FULL_SMS_SIGN 0x00000100 #define CKF_PURE_P11 0x00000200 #define CKF_DES_EVEN_PARITY_ALLOWED 0x00000400 #define CKF_USER_ECC_DP_ALLOWED 0x00000800 #define CKF_MODE_LOCKED 0x10000000 /* CKA_HSM_FEATURES flags */ #define CKF_SUPPORTS_FMS 0x00000001 // HSM is FM Capable and enabled #define CKF_FM_HOK_AVAIL 0x00000002 // FM HOK Data installed #define CKF_NO_FM_FUNCTS 0x00000004 // FW does not support FM commands #define CKF_STD_HOK_AVAIL 0x00000008 // Standard HOK avail #define CKF_FM_SMFS_ACTIV 0x00000010 // SMFS Activated #define CKF_STM_MODE 0x00000100 // Secure Transport Mode #define CKF_TAMP_MODE 0x00000200 // Tampered #define CKA_START_DATE_OLD_XXX \ 0x0083 // Kept temporarily for backward compatibility with Beta version. Use CKA_START_DATE #define CKA_END_DATE_OLD_XXX 0x0084 // Kept temporarily for backward compatibility with Beta version. Use CKA_END_DATE #define CKD_SHA224_KDF 0x00000005 #define CKD_SHA224_KDF_OLD 0x80000003 #define CKD_SHA256_KDF 0x00000006 #define CKD_SHA256_KDF_OLD 0x80000004 #define CKD_SHA384_KDF 0x00000007 #define CKD_SHA384_KDF_OLD 0x80000005 #define CKD_SHA512_KDF 0x00000008 #define CKD_SHA512_KDF_OLD 0x80000006 #define CKD_RIPEMD160_KDF 0x80000007 #define CKD_SHA1_NIST_KDF 0x00000012 #define CKD_SHA224_NIST_KDF 0x80000013 #define CKD_SHA256_NIST_KDF 0x80000014 #define CKD_SHA384_NIST_KDF 0x80000015 #define CKD_SHA512_NIST_KDF 0x80000016 #define CKD_RIPEMD160_NIST_KDF 0x80000017 #define CKD_SHA1_SES_KDF 0x82000000 #define CKD_SHA224_SES_KDF 0x83000000 #define CKD_SHA256_SES_KDF 0x84000000 #define CKD_SHA384_SES_KDF 0x85000000 #define CKD_SHA512_SES_KDF 0x86000000 #define CKD_RIPEMD160_SES_KDF 0x87000000 #define CKD_SES_ENC_CTR 0x00000001 #define CKD_SES_AUTH_CTR 0x00000002 #define CKD_SES_ALT_ENC_CTR 0x00000003 #define CKD_SES_ALT_AUTH_CTR 0x00000004 /* X9.42 Diffie-Hellman Key Derivation Functions */ #define CKD_SHA1_KDF_ASN1 0x00000003 // not supported #define CKD_SHA1_KDF_CONCATENATE 0x00000004 #define CKD_SHA1_KDF_CONCATENATE_X9_42 CKD_SHA1_KDF_CONCATENATE #define CKD_SHA1_KDF_CONCATENATE_NIST 0x80000001 #define CKD_SHA1_KDF_ASN1_X9_42 CKD_SHA1_KDF_ASN1 // not supported #define CKD_SHA1_KDF_ASN1_NIST 0x80000002 // not supported /* AES GCM as per PKCS11 v2.20 Ammendment 5 draft 1 Superceded by v2.30 draft CK_GCM_PARAMS - see pkcs11t.h */ typedef struct CK_AES_GCM_PARAMS { CK_BYTE_PTR pIv; CK_ULONG ulIvLen; CK_ULONG ulIvBits; CK_BYTE_PTR pAAD; CK_ULONG ulAADLen; CK_ULONG ulTagBits; } CK_AES_GCM_PARAMS; typedef CK_AES_GCM_PARAMS CK_PTR CK_AES_GCM_PARAMS_PTR; // XOR data with KDF of base key and shared data encryption mechanism parameters typedef struct CK_XOR_BASE_DATA_KDF_PARAMS { CK_EC_KDF_TYPE kdf; // KDF to use CK_ULONG ulSharedDataLen; // optional shared data to add to base key data CK_BYTE_PTR pSharedData; } CK_XOR_BASE_DATA_KDF_PARAMS; typedef CK_XOR_BASE_DATA_KDF_PARAMS CK_PTR CK_XOR_BASE_DATA_KDF_PARAMS_PTR; typedef struct CK_AES_XTS_PARAMS { CK_OBJECT_HANDLE hTweakKey; CK_BYTE cb[16]; } CK_AES_XTS_PARAMS; typedef CK_AES_XTS_PARAMS CK_PTR CK_AES_XTS_PARAMS_PTR; // CKK_VENDOR_DEFINED #define CKK_KCDSA (CKK_VENDOR_DEFINED + 0x10) #define CKK_SEED (CKK_VENDOR_DEFINED + 0x11) #define CKK_EC_EDWARDS (CKK_VENDOR_DEFINED + 0x12) #define CKK_EC_MONTGOMERY (CKK_VENDOR_DEFINED + 0x13) #define CKK_BIP32 (CKK_VENDOR_DEFINED + 0x14) // CKA_VENDOR_DEFINED #define CKA_CCM_PRIVATE (CKA_VENDOR_DEFINED | 0x0001) #define CKA_FINGERPRINT_SHA1 (CKA_VENDOR_DEFINED | 0x0002) #define CKA_PKC_TCTRUST (CKA_VENDOR_DEFINED | 0x0003) #define CKA_PKC_CITS (CKA_VENDOR_DEFINED | 0x0004) #define CKA_OUID (CKA_VENDOR_DEFINED | 0x0005) #define CKA_X9_31_GENERATED (CKA_VENDOR_DEFINED | 0x0006) #define CKA_PKC_ECC (CKA_VENDOR_DEFINED | 0x0007) #define CKA_EKM_UID (CKA_VENDOR_DEFINED | 0x0008) #define CKA_CHECK_VALUE_PTK (CKA_VENDOR_DEFINED | 0x0103) #define CKA_TOKEN_ROLE_POLICIES (CKA_VENDOR_DEFINED | 0x0010) #define CKA_ROLE_DESCRIPTORS (CKA_VENDOR_DEFINED | 0x0011) #define CKA_USER_VALUE (CKA_VENDOR_DEFINED | 0x0012) #define CKA_INITIALIZER (CKA_VENDOR_DEFINED | 0x0013) #define CKA_POLICY (CKA_VENDOR_DEFINED | 0x0014) #define CKA_ACTIVE (CKA_VENDOR_DEFINED | 0x0015) // Initially defined for role states. #define CKA_INITIALIZED (CKA_VENDOR_DEFINED | 0x0016) #define CKA_PIN_TO_BE_CHANGED (CKA_VENDOR_DEFINED | 0x0017) #define CKA_LOCKED_OUT (CKA_VENDOR_DEFINED | 0x0018) #define CKA_ACTIVATED (CKA_VENDOR_DEFINED | 0x0019) #define CKA_HAS_DOMAIN (CKA_VENDOR_DEFINED | 0x001A) #define CKA_LOGIN_ATTEMPTS_LEFT (CKA_VENDOR_DEFINED | 0x001B) #define CKA_PRIMARY_AUTH_METHOD (CKA_VENDOR_DEFINED | 0x001C) #define CKA_SECONDARY_AUTH_METHOD (CKA_VENDOR_DEFINED | 0x001D) #define CKA_ROLE_SHORT_NAME (CKA_VENDOR_DEFINED | 0x001E) // Generic CK_ULONG version field for any objects that need to report a version #define CKA_VERSION (CKA_VENDOR_DEFINED | 0x001F) // These match the ones already defined for PTK #define CKA_USAGE_COUNT (CKA_VENDOR_DEFINED + 0x0101) #define CKA_SLOT_ID (CKA_VENDOR_DEFINED + 0x0151) #define CKA_MAX_SESSIONS (CKA_VENDOR_DEFINED | 0x0155) #define CKA_MIN_PIN_LEN (CKA_VENDOR_DEFINED | 0x0156) #define CKA_FLAGS (CKA_VENDOR_DEFINED | 0x0159) #define CKA_USAGE_LIMIT (CKA_VENDOR_DEFINED + 0x0200) #define CKA_SECURITY_MODE (CKA_VENDOR_DEFINED + 0x0140) #define CKA_TRANSPORT_MODE (CKA_VENDOR_DEFINED + 0x0141) #define CKA_BATCH (CKA_VENDOR_DEFINED + 0x0142) #define CKA_HW_STATUS (CKA_VENDOR_DEFINED + 0x0143) #define CKA_FREE_MEM (CKA_VENDOR_DEFINED + 0x0144) #define CKA_TAMPER_CMD (CKA_VENDOR_DEFINED + 0x0145) #define CKA_DATE_OF_MANUFACTURE (CKA_VENDOR_DEFINED + 0x0146) #define CKA_HALT_CMD (CKA_VENDOR_DEFINED + 0x0147) #define CKA_APPLICATION_COUNT (CKA_VENDOR_DEFINED + 0x0148) #define CKA_FW_VERSION (CKA_VENDOR_DEFINED + 0x0149) #define CKA_RESCAN_PERIPHERALS_CMD (CKA_VENDOR_DEFINED + 0x014A) #define CKA_RTC_AAC_ENABLED (CKA_VENDOR_DEFINED + 0x014B) #define CKA_RTC_AAC_GUARD_SECONDS (CKA_VENDOR_DEFINED + 0x014C) #define CKA_RTC_AAC_GUARD_COUNT (CKA_VENDOR_DEFINED + 0x014D) #define CKA_RTC_AAC_GUARD_DURATION (CKA_VENDOR_DEFINED + 0x014E) #define CKA_HW_EXT_INFO_STR (CKA_VENDOR_DEFINED + 0x014F) #define CKA_TEMPERATURE_STR (CKA_VENDOR_DEFINED + 0x0150) #define CKA_HSM_FEATURES (CKA_VENDOR_DEFINED + 0x0152) #define CKA_FM_VERSION (CKA_VENDOR_DEFINED + 0x0181) #define CKA_MANUFACTURER (CKA_VENDOR_DEFINED + 0x0182) #define CKA_BUILD_DATE (CKA_VENDOR_DEFINED + 0x0183) #define CKA_FINGERPRINT (CKA_VENDOR_DEFINED + 0x0184) #define CKA_ROM_SPACE (CKA_VENDOR_DEFINED + 0x0185) #define CKA_RAM_SPACE (CKA_VENDOR_DEFINED + 0x0186) /* not used */ #define CKA_FM_STATUS (CKA_VENDOR_DEFINED + 0x0187) #define CKA_DELETE_FM (CKA_VENDOR_DEFINED + 0x0188) #define CKA_FM_STARTUP_STATUS (CKA_VENDOR_DEFINED + 0x0189) #define CKA_FM_ID (CKA_VENDOR_DEFINED + 0x018a) #define CKA_GENERIC_1 (CKA_VENDOR_DEFINED + 0x1000) #define CKA_GENERIC_2 (CKA_VENDOR_DEFINED + 0x1001) #define CKA_GENERIC_3 (CKA_VENDOR_DEFINED + 0x1002) #define CKA_FINGERPRINT_SHA256 (CKA_VENDOR_DEFINED + 0x1003) #define CKA_WARNING_THRESHOLD (CKA_VENDOR_DEFINED + 0x1004) #define CKA_PARTITION_ATTRIBUTE 0x40000000 #define CKA_KEK_GROUP_ID (CKA_VENDOR_DEFINED + CKA_PARTITION_ATTRIBUTE + 0x1005) #define CKA_KEK_MAX_LIFETIME (CKA_VENDOR_DEFINED + CKA_PARTITION_ATTRIBUTE + 0x1006) #define CKA_KEK_ACTUAL_LIFETIME (CKA_VENDOR_DEFINED + CKA_PARTITION_ATTRIBUTE + 0x1007) #define CKA_KEK_MANAGEMENT_FLAGS (CKA_VENDOR_DEFINED + CKA_PARTITION_ATTRIBUTE + 0x1008) // BIP32 attributes #define CKA_BIP32_CHAIN_CODE (CKA_VENDOR_DEFINED | 0x1100) #define CKA_BIP32_VERSION_BYTES (CKA_VENDOR_DEFINED | 0x1101) #define CKA_BIP32_CHILD_INDEX (CKA_VENDOR_DEFINED | 0x1102) #define CKA_BIP32_CHILD_DEPTH (CKA_VENDOR_DEFINED | 0x1103) #define CKA_BIP32_ID (CKA_VENDOR_DEFINED | 0x1104) #define CKA_BIP32_FINGERPRINT (CKA_VENDOR_DEFINED | 0x1105) #define CKA_BIP32_PARENT_FINGERPRINT (CKA_VENDOR_DEFINED | 0x1106) // Vendor defined HW Feature objects (HW Objeects) #define CKH_TEMPERATURE (CKH_VENDOR_DEFINED | 0x00000001) #define CKH_BATTERY (CKH_VENDOR_DEFINED | 0x00000002) #define CKH_FAN (CKH_VENDOR_DEFINED | 0x00000003) #define CKM_VENDOR_DEFINED_OLD_XXX 0x00008000 #define CKM_CAST_KEY_GEN_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 0 // Entrust added capabilities #define CKM_CAST_ECB_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 1 // Entrust added capabilities #define CKM_CAST_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 2 // Entrust added capabilities #define CKM_CAST_MAC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 3 // Entrust added capabilities #define CKM_CAST3_KEY_GEN_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 4 // Entrust added capabilities #define CKM_CAST3_ECB_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 5 // Entrust added capabilities #define CKM_CAST3_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 6 // Entrust added capabilities #define CKM_CAST3_MAC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 7 // Entrust added capabilities #define CKM_PBE_MD2_DES_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 8 // Password based encryption #define CKM_PBE_MD5_DES_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 9 // Password based encryption #define CKM_PBE_MD5_CAST_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 10 // Password based encryption #define CKM_PBE_MD5_CAST3_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 11 // Password based encryption #define CKM_CONCATENATE_BASE_AND_KEY_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 12 // SPKM & SLL added capabilities #define CKM_CONCATENATE_KEY_AND_BASE_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 13 // SPKM & SLL added capabilities #define CKM_CONCATENATE_BASE_AND_DATA_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 14 // SPKM & SLL added capabilities #define CKM_CONCATENATE_DATA_AND_BASE_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 15 // SPKM & SLL added capabilities #define CKM_XOR_BASE_AND_DATA_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 16 // SPKM & SLL added capabilities #define CKM_EXTRACT_KEY_FROM_KEY_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 17 // SPKM & SLL added capabilities #define CKM_MD5_KEY_DERIVATION_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 18 // SPKM & SLL added capabilities #define CKM_MD2_KEY_DERIVATION_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 19 // SPKM & SLL added capabilities #define CKM_SHA1_KEY_DERIVATION_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 20 // SPKM & SLL added capabilities #define CKM_GENERIC_SECRET_KEY_GEN_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 21 // Generation of secret keys #define CKM_CAST5_KEY_GEN_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 22 // Entrust added capabilities #define CKM_CAST5_ECB_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 23 // Entrust added capabilities #define CKM_CAST5_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 24 // Entrust added capabilities #define CKM_CAST5_MAC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 25 // Entrust added capabilities #define CKM_PBE_SHA1_CAST5_CBC_OLD_XXX CKM_VENDOR_DEFINED_OLD_XXX + 26 // Entrust added capabilities #define CKM_KEY_TRANSLATION CKM_VENDOR_DEFINED_OLD_XXX + 27 // Entrust added capabilities #define CKM_XOR_BASE_AND_KEY CKM_VENDOR_DEFINED + 27 #define CKM_2DES_KEY_DERIVATION CKM_VENDOR_DEFINED_OLD_XXX + 28 // Custom Gemplus Capabilities #define CKM_INDIRECT_LOGIN_REENCRYPT CKM_VENDOR_DEFINED_OLD_XXX + 29 // Used for indirect login // Old DES PBE Mechanism #define CKM_PBE_SHA1_DES3_EDE_CBC_OLD CKM_VENDOR_DEFINED_OLD_XXX + 30 #define CKM_PBE_SHA1_DES2_EDE_CBC_OLD CKM_VENDOR_DEFINED_OLD_XXX + 31 // Korean algorithms #define CKM_HAS160 (CKM_VENDOR_DEFINED + 0x100) #define CKM_KCDSA_KEY_PAIR_GEN (CKM_VENDOR_DEFINED + 0x101) #define CKM_KCDSA_HAS160 (CKM_VENDOR_DEFINED + 0x102) #define CKM_SEED_KEY_GEN (CKM_VENDOR_DEFINED + 0x103) #define CKM_SEED_ECB (CKM_VENDOR_DEFINED + 0x104) #define CKM_SEED_CBC (CKM_VENDOR_DEFINED + 0x105) #define CKM_SEED_CBC_PAD (CKM_VENDOR_DEFINED + 0x106) #define CKM_SEED_MAC (CKM_VENDOR_DEFINED + 0x107) #define CKM_SEED_MAC_GENERAL (CKM_VENDOR_DEFINED + 0x108) #define CKM_KCDSA_SHA1 (CKM_VENDOR_DEFINED + 0x109) #define CKM_KCDSA_SHA224 (CKM_VENDOR_DEFINED + 0x10A) #define CKM_KCDSA_SHA256 (CKM_VENDOR_DEFINED + 0x10B) #define CKM_KCDSA_SHA384 (CKM_VENDOR_DEFINED + 0x10C) #define CKM_KCDSA_SHA512 (CKM_VENDOR_DEFINED + 0x10D) #define CKM_KCDSA_PARAMETER_GEN (CKM_VENDOR_DEFINED + 0x10F) // Defined prior PKCS#11. Must be redefined when PKCS#11 is updated // Defined prior PKCS#11 and renamed to CKM_SHA224_xxx_OLD after PKCS#11 was updated #define CKM_SHA224_RSA_PKCS_OLD (CKM_VENDOR_DEFINED + 0x110) #define CKM_SHA224_RSA_PKCS_PSS_OLD (CKM_VENDOR_DEFINED + 0x111) #define CKM_SHA224_OLD (CKM_VENDOR_DEFINED + 0x112) #define CKM_SHA224_HMAC_OLD (CKM_VENDOR_DEFINED + 0x113) #define CKM_SHA224_HMAC_GENERAL_OLD (CKM_VENDOR_DEFINED + 0x114) #define CKM_SHA224_KEY_DERIVATION_OLD (CKM_VENDOR_DEFINED + 0x115) #define CKM_DES3_CTR (CKM_VENDOR_DEFINED + 0x116) #define CKM_AES_CFB8 (CKM_VENDOR_DEFINED + 0x118) #define CKM_AES_CFB128 (CKM_VENDOR_DEFINED + 0x119) #define CKM_AES_OFB (CKM_VENDOR_DEFINED + 0x11a) //#define CKM_AES_CTR (CKM_VENDOR_DEFINED + 0x11b) // Legacy vendor defined per P11 v2.20 ammendment 5 draft 1 - adopting // standard definition as per v2.30 - see pkcs11t.h #define CKM_AES_GCM_2_20a5d1 (CKM_VENDOR_DEFINED + 0x11c) #define CKM_ARIA_CFB8 (CKM_VENDOR_DEFINED + 0x11d) #define CKM_ARIA_CFB128 (CKM_VENDOR_DEFINED + 0x11e) #define CKM_ARIA_OFB (CKM_VENDOR_DEFINED + 0x11f) #define CKM_ARIA_CTR (CKM_VENDOR_DEFINED + 0x120) #define CKM_ARIA_GCM (CKM_VENDOR_DEFINED + 0x121) #define CKM_ECDSA_SHA224 (CKM_VENDOR_DEFINED + 0x122) #define CKM_ECDSA_SHA256 (CKM_VENDOR_DEFINED + 0x123) #define CKM_ECDSA_SHA384 (CKM_VENDOR_DEFINED + 0x124) #define CKM_ECDSA_SHA512 (CKM_VENDOR_DEFINED + 0x125) #define CKM_AES_GMAC (CKM_VENDOR_DEFINED + 0x126) #define CKM_ARIA_CMAC (CKM_VENDOR_DEFINED + 0x128) #define CKM_ARIA_CMAC_GENERAL (CKM_VENDOR_DEFINED + 0x129) #define CKM_SEED_CMAC (CKM_VENDOR_DEFINED + 0x12c) #define CKM_SEED_CMAC_GENERAL (CKM_VENDOR_DEFINED + 0x12d) #define CKM_DES3_CBC_PAD_IPSEC_OLD 0x00000137 #define CKM_DES3_CBC_PAD_IPSEC (CKM_VENDOR_DEFINED + 0x12e) #define CKM_AES_CBC_PAD_IPSEC_OLD 0x00001089 #define CKM_AES_CBC_PAD_IPSEC (CKM_VENDOR_DEFINED + 0x12f) #define CKM_ARIA_L_ECB (CKM_VENDOR_DEFINED + 0x130) #define CKM_ARIA_L_CBC (CKM_VENDOR_DEFINED + 0x131) #define CKM_ARIA_L_CBC_PAD (CKM_VENDOR_DEFINED + 0x132) #define CKM_ARIA_L_MAC (CKM_VENDOR_DEFINED + 0x133) #define CKM_ARIA_L_MAC_GENERAL (CKM_VENDOR_DEFINED + 0x134) #define CKM_SHA224_RSA_X9_31 (CKM_VENDOR_DEFINED + 0x135) #define CKM_SHA256_RSA_X9_31 (CKM_VENDOR_DEFINED + 0x136) #define CKM_SHA384_RSA_X9_31 (CKM_VENDOR_DEFINED + 0x137) #define CKM_SHA512_RSA_X9_31 (CKM_VENDOR_DEFINED + 0x138) #define CKM_SHA1_RSA_X9_31_NON_FIPS (CKM_VENDOR_DEFINED + 0x139) #define CKM_SHA224_RSA_X9_31_NON_FIPS (CKM_VENDOR_DEFINED + 0x13a) #define CKM_SHA256_RSA_X9_31_NON_FIPS (CKM_VENDOR_DEFINED + 0x13b) #define CKM_SHA384_RSA_X9_31_NON_FIPS (CKM_VENDOR_DEFINED + 0x13c) #define CKM_SHA512_RSA_X9_31_NON_FIPS (CKM_VENDOR_DEFINED + 0x13d) #define CKM_RSA_X9_31_NON_FIPS (CKM_VENDOR_DEFINED + 0x13e) #define CKM_DSA_SHA224 (CKM_VENDOR_DEFINED + 0x140) // DH -moved here to keep ECDSA SHA 2 same as FW4 #define CKM_DSA_SHA256 (CKM_VENDOR_DEFINED + 0x141) #define CKM_RSA_FIPS_186_3_AUX_PRIME_KEY_PAIR_GEN (CKM_VENDOR_DEFINED + 0x142) #define CKM_RSA_FIPS_186_3_PRIME_KEY_PAIR_GEN (CKM_VENDOR_DEFINED + 0x143) // Korean algorithms #define CKM_SEED_CTR (CKM_VENDOR_DEFINED + 0x144) #define CKM_KCDSA_HAS160_NO_PAD (CKM_VENDOR_DEFINED + 0x145) #define CKM_KCDSA_SHA1_NO_PAD (CKM_VENDOR_DEFINED + 0x146) #define CKM_KCDSA_SHA224_NO_PAD (CKM_VENDOR_DEFINED + 0x147) #define CKM_KCDSA_SHA256_NO_PAD (CKM_VENDOR_DEFINED + 0x148) #define CKM_KCDSA_SHA384_NO_PAD (CKM_VENDOR_DEFINED + 0x149) #define CKM_KCDSA_SHA512_NO_PAD (CKM_VENDOR_DEFINED + 0x151) #define CKM_DES3_X919_MAC (CKM_VENDOR_DEFINED + 0x150) #define CKM_ECDSA_KEY_PAIR_GEN_W_EXTRA_BITS (CKM_VENDOR_DEFINED + 0x160) #define CKM_ECDSA_GBCS_SHA256 (CKM_VENDOR_DEFINED + 0x161) // Vendor specific key wrapping mechanisms #define CKM_AES_KW (CKM_VENDOR_DEFINED + 0x170) #define CKM_AES_KWP (CKM_VENDOR_DEFINED + 0x171) #define CKM_TDEA_KW (CKM_VENDOR_DEFINED + 0x172) #define CKM_TDEA_KWP (CKM_VENDOR_DEFINED + 0x173) // SIM3 mechanisms #define CKM_AES_CBC_PAD_EXTRACT (CKM_VENDOR_DEFINED + 0x200) #define CKM_AES_CBC_PAD_INSERT (CKM_VENDOR_DEFINED + 0x201) #define CKM_AES_CBC_PAD_EXTRACT_FLATTENED (CKM_VENDOR_DEFINED + 0x202) #define CKM_AES_CBC_PAD_INSERT_FLATTENED (CKM_VENDOR_DEFINED + 0x203) // Etoken mechanisms #define CKM_AES_CBC_PAD_EXTRACT_DOMAIN_CTRL (CKM_VENDOR_DEFINED + 0x204) #define CKM_AES_CBC_PAD_INSERT_DOMAIN_CTRL (CKM_VENDOR_DEFINED + 0x205) // defined as CKM_DES3_DERIVE_ECB in Eracom PTKC #define CKM_PLACE_HOLDER_FOR_ERACOME_DEF_IN_SHIM (CKM_VENDOR_DEFINED + 0x502) #define CKM_DES2_DUKPT_PIN (CKM_VENDOR_DEFINED + 0x611) #define CKM_DES2_DUKPT_MAC (CKM_VENDOR_DEFINED + 0x612) #define CKM_DES2_DUKPT_MAC_RESP (CKM_VENDOR_DEFINED + 0x613) #define CKM_DES2_DUKPT_DATA (CKM_VENDOR_DEFINED + 0x614) #define CKM_DES2_DUKPT_DATA_RESP (CKM_VENDOR_DEFINED + 0x615) /*** EC IES mechanism (X9.63) */ #define CKM_ECIES (CKM_VENDOR_DEFINED + 0xA00) #define CKM_XOR_BASE_AND_DATA_W_KDF (CKM_VENDOR_DEFINED + 0xA01) #define CKM_NIST_PRF_KDF (CKM_VENDOR_DEFINED + 0xA02) #define CKM_PRF_KDF (CKM_VENDOR_DEFINED + 0xA03) #define CKM_AES_XTS (CKM_VENDOR_DEFINED + 0xA04) // SM2/SM3/SM4 mechs #define CKM_SM3 (CKM_VENDOR_DEFINED + 0xB01) #define CKM_SM3_HMAC (CKM_VENDOR_DEFINED + 0xB02) #define CKM_SM3_HMAC_GENERAL (CKM_VENDOR_DEFINED + 0xB03) #define CKM_SM3_KEY_DERIVATION (CKM_VENDOR_DEFINED + 0xB04) #define CKM_EC_EDWARDS_KEY_PAIR_GEN (CKM_VENDOR_DEFINED + 0xC01) #define CKM_EDDSA_NACL (CKM_VENDOR_DEFINED + 0xC02) // ed25519 sign/verify - NaCl compatible #define CKM_EDDSA (CKM_VENDOR_DEFINED + 0xC03) // ed25519 sign/verify #define CKM_SHA1_EDDSA_NACL (CKM_VENDOR_DEFINED + 0xC04) #define CKM_SHA224_EDDSA_NACL (CKM_VENDOR_DEFINED + 0xC05) #define CKM_SHA256_EDDSA_NACL (CKM_VENDOR_DEFINED + 0xC06) #define CKM_SHA384_EDDSA_NACL (CKM_VENDOR_DEFINED + 0xC07) #define CKM_SHA512_EDDSA_NACL (CKM_VENDOR_DEFINED + 0xC08) #define CKM_SHA1_EDDSA (CKM_VENDOR_DEFINED + 0xC09) #define CKM_SHA224_EDDSA (CKM_VENDOR_DEFINED + 0xC0A) #define CKM_SHA256_EDDSA (CKM_VENDOR_DEFINED + 0xC0B) #define CKM_SHA384_EDDSA (CKM_VENDOR_DEFINED + 0xC0C) #define CKM_SHA512_EDDSA (CKM_VENDOR_DEFINED + 0xC0D) #define CKM_EC_MONTGOMERY_KEY_PAIR_GEN (CKM_VENDOR_DEFINED + 0xD01) // SM2/SM3/SM4 mechs #define CKM_SM3 (CKM_VENDOR_DEFINED + 0xB01) #define CKM_SM3_HMAC (CKM_VENDOR_DEFINED + 0xB02) #define CKM_SM3_HMAC_GENERAL (CKM_VENDOR_DEFINED + 0xB03) #define CKM_SM3_KEY_DERIVATION (CKM_VENDOR_DEFINED + 0xB04) // BIP32 mechs #define CKM_BIP32_MASTER_DERIVE (CKM_VENDOR_DEFINED + 0xE00) #define CKM_BIP32_CHILD_DERIVE (CKM_VENDOR_DEFINED + 0xE01) /** * Mechanism parameters for CKM_ECIES. */ /** EC Diffie-Hellman (DH) primitive to use for shared secret derivation */ typedef CK_ULONG CK_EC_DH_PRIMITIVE; /** EC DH primitives */ #define CKDHP_STANDARD 0x00000001 #define CKDHP_ECDH1_COFACTOR 0x00000001 #define CKDHP_MODIFIED 0x00000002 /* Not implemented */ #define CKDHP_ECDH1 0x00000003 /** Inner encryption scheme to use for ECIES */ typedef CK_ULONG CK_EC_ENC_SCHEME; /** Inner encryption schemes */ #define CKES_XOR 0x00000001 #define CKES_DES3_CBC_PAD 0x00000002 #define CKES_AES_CBC_PAD 0x00000003 #define CKES_DES3_CBC 0x00000004 #define CKES_AES_CBC 0x00000005 /** Message Authentication Code (MAC) scheme to use for ECIES */ typedef CK_ULONG CK_EC_MAC_SCHEME; /** MAC schemes */ #define CKMS_HMAC_SHA1 0x00000001 #define CKMS_SHA1 0x00000002 #define CKMS_HMAC_SHA224 0x00000003 #define CKMS_SHA224 0x00000004 #define CKMS_HMAC_SHA256 0x00000005 #define CKMS_SHA256 0x00000006 #define CKMS_HMAC_SHA384 0x00000007 #define CKMS_SHA384 0x00000008 #define CKMS_HMAC_SHA512 0x00000009 #define CKMS_SHA512 0x0000000a #define CKMS_HMAC_RIPEMD160 0x0000000b #define CKMS_RIPEMD160 0x0000000c /** Mechanism parameter structure for ECIES */ typedef struct CK_ECIES_PARAMS { /** Diffie-Hellman primitive used to derive the shared secret value */ CK_EC_DH_PRIMITIVE dhPrimitive; /** key derivation function used on the shared secret value */ CK_EC_KDF_TYPE kdf; /** the length in bytes of the key derivation shared data */ CK_ULONG ulSharedDataLen1; /** the key derivation padding data shared between the two parties */ CK_BYTE_PTR pSharedData1; /** the encryption scheme used to transform the input data */ CK_EC_ENC_SCHEME encScheme; /** the bit length of the key to use for the encryption scheme */ CK_ULONG ulEncKeyLenInBits; /** the MAC scheme used for MAC generation or validation */ CK_EC_MAC_SCHEME macScheme; /** the bit length of the key to use for the MAC scheme */ CK_ULONG ulMacKeyLenInBits; /** the bit length of the MAC scheme output */ CK_ULONG ulMacLenInBits; /** the length in bytes of the MAC shared data */ CK_ULONG ulSharedDataLen2; /** the MAC padding data shared between the two parties */ CK_BYTE_PTR pSharedData2; } CK_ECIES_PARAMS; typedef CK_ECIES_PARAMS CK_PTR CK_ECIES_PARAMS_PTR; /* Parameter and values used with CKM_PRF_KDF and * CKM_NIST_PRF_KDF. */ typedef CK_ULONG CK_KDF_PRF_TYPE; typedef CK_ULONG CK_KDF_PRF_ENCODING_SCHEME; /** PRF KDF schemes */ #define CK_NIST_PRF_KDF_DES3_CMAC 0x00000001 #define CK_NIST_PRF_KDF_AES_CMAC 0x00000002 #define CK_PRF_KDF_ARIA_CMAC 0x00000003 #define CK_PRF_KDF_SEED_CMAC 0x00000004 #define CK_NIST_PRF_KDF_HMAC_SHA1 0x00000005 #define CK_NIST_PRF_KDF_HMAC_SHA224 0x00000006 #define CK_NIST_PRF_KDF_HMAC_SHA256 0x00000007 #define CK_NIST_PRF_KDF_HMAC_SHA384 0x00000008 #define CK_NIST_PRF_KDF_HMAC_SHA512 0x00000009 #define CK_PRF_KDF_HMAC_RIPEMD160 0x0000000A /* * Affects the format of the fixed data passed to the PRF. * Scheme #3 is the one described in NIST SP 800-108. */ #define LUNA_PRF_KDF_ENCODING_SCHEME_1 0x00000000 // Context || 0x00 || Label || Length #define LUNA_PRF_KDF_ENCODING_SCHEME_2 0x00000001 // Context || Label #define LUNA_PRF_KDF_ENCODING_SCHEME_3 0x00000002 // Label || 0x00 || Context || Length #define LUNA_PRF_KDF_ENCODING_SCHEME_4 0x00000003 // Label || Context #define LUNA_PRF_KDF_ENCODING_SCHEME_SCP03 0x00000004 #define LUNA_PRF_KDF_ENCODING_SCHEME_HID_KD 0x00000005 typedef struct CK_KDF_PRF_PARAMS { CK_KDF_PRF_TYPE prfType; CK_BYTE_PTR pLabel; CK_ULONG ulLabelLen; CK_BYTE_PTR pContext; CK_ULONG ulContextLen; CK_ULONG ulCounter; CK_KDF_PRF_ENCODING_SCHEME ulEncodingScheme; } CK_PRF_KDF_PARAMS; typedef CK_PRF_KDF_PARAMS CK_PTR CK_KDF_PRF_PARAMS_PTR; /* Additional CTR parameter structures based on CK_AES_CTR_PARAMS PKCS has not defined these yet. */ #ifndef CK_SEED_CTR_PARAMS typedef CK_AES_CTR_PARAMS CK_SEED_CTR_PARAMS; typedef CK_SEED_CTR_PARAMS CK_PTR CK_SEED_CTR_PARAMS_PTR; #endif #ifndef CK_SEED_CTR_PARAMS typedef CK_AES_CTR_PARAMS CK_ARIA_CTR_PARAMS; typedef CK_ARIA_CTR_PARAMS CK_PTR CK_ARIA_CTR_PARAMS_PTR; #endif #ifndef CK_DES_CTR_PARAMS typedef struct CK_DES_CTR_PARAMS { CK_ULONG ulCounterBits; CK_BYTE cb[8]; } CK_DES_CTR_PARAMS; typedef CK_DES_CTR_PARAMS CK_PTR CK_DES_CTR_PARAMS_PTR; #endif /* Additional GMAC parameter structures based on CK_AES_GCM_PARAMS PKCS has not defined these yet. */ #ifndef CK_AES_GMAC_PARAMS typedef CK_AES_GCM_PARAMS CK_AES_GMAC_PARAMS; typedef CK_AES_GMAC_PARAMS CK_PTR CK_AES_GMAC_PARAMS_PTR; #endif // Get statistcs from HSM. // The high and low values will need to be put together // into a 64-bit by the caller. typedef struct { CK_ULONG ulId; // stats parameter id CK_ULONG ulHighValue; // stats parameter high 32-bit value CK_ULONG ulLowValue; // stats parameter low 32-bit value } HSM_STATS_PARAMS; // CKR_VENDOR_DEFINED #define CKR_INSERTION_CALLBACK_NOT_SUPPORTED 0x00000141 #define CKR_FUNCTION_PARALLEL 0x0052 #define CKR_SESSION_EXCLUSIVE_EXISTS 0x00B2 #define CKR_RC_ERROR (CKR_VENDOR_DEFINED + 0x04) #define CKR_CONTAINER_HANDLE_INVALID (CKR_VENDOR_DEFINED + 0x05) #define CKR_TOO_MANY_CONTAINERS (CKR_VENDOR_DEFINED + 0x06) #define CKR_USER_LOCKED_OUT (CKR_VENDOR_DEFINED + 0x07) #define CKR_CLONING_PARAMETER_ALREADY_EXISTS (CKR_VENDOR_DEFINED + 0x08) #define CKR_CLONING_PARAMETER_MISSING (CKR_VENDOR_DEFINED + 0x09) #define CKR_CERTIFICATE_DATA_MISSING (CKR_VENDOR_DEFINED + 0x0a) #define CKR_CERTIFICATE_DATA_INVALID (CKR_VENDOR_DEFINED + 0x0b) #define CKR_ACCEL_DEVICE_ERROR (CKR_VENDOR_DEFINED + 0x0c) #define CKR_WRAPPING_ERROR (CKR_VENDOR_DEFINED + 0x0d) #define CKR_UNWRAPPING_ERROR (CKR_VENDOR_DEFINED + 0x0e) #define CKR_MAC_MISSING (CKR_VENDOR_DEFINED + 0x0f) #define CKR_DAC_POLICY_PID_MISMATCH (CKR_VENDOR_DEFINED + 0x10) #define CKR_DAC_MISSING (CKR_VENDOR_DEFINED + 0x11) #define CKR_BAD_DAC (CKR_VENDOR_DEFINED + 0x12) #define CKR_SSK_MISSING (CKR_VENDOR_DEFINED + 0x13) #define CKR_BAD_MAC (CKR_VENDOR_DEFINED + 0x14) #define CKR_DAK_MISSING (CKR_VENDOR_DEFINED + 0x15) #define CKR_BAD_DAK (CKR_VENDOR_DEFINED + 0x16) #define CKR_SIM_AUTHORIZATION_FAILED (CKR_VENDOR_DEFINED + 0x17) #define CKR_SIM_VERSION_UNSUPPORTED (CKR_VENDOR_DEFINED + 0x18) #define CKR_SIM_CORRUPT_DATA (CKR_VENDOR_DEFINED + 0x19) #define CKR_USER_NOT_AUTHORIZED (CKR_VENDOR_DEFINED + 0x1a) #define CKR_MAX_OBJECT_COUNT_EXCEEDED (CKR_VENDOR_DEFINED + 0x1b) #define CKR_SO_LOGIN_FAILURE_THRESHOLD (CKR_VENDOR_DEFINED + 0x1c) #define CKR_SIM_AUTHFORM_INVALID (CKR_VENDOR_DEFINED + 0x1d) #define CKR_CITS_DAK_MISSING (CKR_VENDOR_DEFINED + 0x1e) #define CKR_UNABLE_TO_CONNECT (CKR_VENDOR_DEFINED + 0x1f) #define CKR_PARTITION_DISABLED (CKR_VENDOR_DEFINED + 0x20) #define CKR_CALLBACK_ERROR (CKR_VENDOR_DEFINED + 0x21) #define CKR_SECURITY_PARAMETER_MISSING (CKR_VENDOR_DEFINED + 0x22) #define CKR_SP_TIMEOUT (CKR_VENDOR_DEFINED + 0x23) #define CKR_TIMEOUT (CKR_VENDOR_DEFINED + 0x24) #define CKR_ECC_UNKNOWN_CURVE (CKR_VENDOR_DEFINED + 0x25) #define CKR_MTK_ZEROIZED (CKR_VENDOR_DEFINED + 0x26) #define CKR_MTK_STATE_INVALID (CKR_VENDOR_DEFINED + 0x27) #define CKR_INVALID_ENTRY_TYPE (CKR_VENDOR_DEFINED + 0x28) #define CKR_MTK_SPLIT_INVALID (CKR_VENDOR_DEFINED + 0x29) #define CKR_HSM_STORAGE_FULL (CKR_VENDOR_DEFINED + 0x2a) #define CKR_DEVICE_TIMEOUT (CKR_VENDOR_DEFINED + 0x2b) #define CKR_CONTAINER_OBJECT_STORAGE_FULL (CKR_VENDOR_DEFINED + 0x2C) #define CKR_PED_CLIENT_NOT_RUNNING (CKR_VENDOR_DEFINED + 0x2D) #define CKR_PED_UNPLUGGED (CKR_VENDOR_DEFINED + 0x2E) #define CKR_ECC_POINT_INVALID (CKR_VENDOR_DEFINED + 0x2F) #define CKR_OPERATION_NOT_ALLOWED (CKR_VENDOR_DEFINED + 0x30) #define CKR_LICENSE_CAPACITY_EXCEEDED (CKR_VENDOR_DEFINED + 0x31) #define CKR_LOG_FILE_NOT_OPEN (CKR_VENDOR_DEFINED + 0x32) #define CKR_LOG_FILE_WRITE_ERROR (CKR_VENDOR_DEFINED + 0x33) #define CKR_LOG_BAD_FILE_NAME (CKR_VENDOR_DEFINED + 0x34) #define CKR_LOG_FULL (CKR_VENDOR_DEFINED + 0x35) #define CKR_LOG_NO_KCV (CKR_VENDOR_DEFINED + 0x36) #define CKR_LOG_BAD_RECORD_HMAC (CKR_VENDOR_DEFINED + 0x37) #define CKR_LOG_BAD_TIME (CKR_VENDOR_DEFINED + 0x38) #define CKR_LOG_AUDIT_NOT_INITIALIZED (CKR_VENDOR_DEFINED + 0x39) #define CKR_LOG_RESYNC_NEEDED (CKR_VENDOR_DEFINED + 0x3A) #define CKR_AUDIT_LOGIN_TIMEOUT_IN_PROGRESS (CKR_VENDOR_DEFINED + 0x3B) #define CKR_AUDIT_LOGIN_FAILURE_THRESHOLD (CKR_VENDOR_DEFINED + 0x3C) #define CKR_INVALID_FUF_TARGET (CKR_VENDOR_DEFINED + 0x3D) #define CKR_INVALID_FUF_HEADER (CKR_VENDOR_DEFINED + 0x3E) #define CKR_INVALID_FUF_VERSION (CKR_VENDOR_DEFINED + 0x3F) #define CKR_ECC_ECC_RESULT_AT_INF (CKR_VENDOR_DEFINED + 0x40) #define CKR_AGAIN (CKR_VENDOR_DEFINED + 0x41) #define CKR_TOKEN_COPIED (CKR_VENDOR_DEFINED + 0x42) #define CKR_SLOT_NOT_EMPTY (CKR_VENDOR_DEFINED + 0x43) #define CKR_USER_ALREADY_ACTIVATED (CKR_VENDOR_DEFINED + 0x44) #define CKR_STC_NO_CONTEXT (CKR_VENDOR_DEFINED + 0x45) #define CKR_STC_CLIENT_IDENTITY_NOT_CONFIGURED (CKR_VENDOR_DEFINED + 0x46) #define CKR_STC_PARTITION_IDENTITY_NOT_CONFIGURED (CKR_VENDOR_DEFINED + 0x47) #define CKR_STC_DH_KEYGEN_ERROR (CKR_VENDOR_DEFINED + 0x48) #define CKR_STC_CIPHER_SUITE_REJECTED (CKR_VENDOR_DEFINED + 0x49) #define CKR_STC_DH_KEY_NOT_FROM_SAME_GROUP (CKR_VENDOR_DEFINED + 0x4a) #define CKR_STC_COMPUTE_DH_KEY_ERROR (CKR_VENDOR_DEFINED + 0x4b) #define CKR_STC_FIRST_PHASE_KDF_ERROR (CKR_VENDOR_DEFINED + 0x4c) #define CKR_STC_SECOND_PHASE_KDF_ERROR (CKR_VENDOR_DEFINED + 0x4d) #define CKR_STC_KEY_CONFIRMATION_FAILED (CKR_VENDOR_DEFINED + 0x4e) #define CKR_STC_NO_SESSION_KEY (CKR_VENDOR_DEFINED + 0x4f) #define CKR_STC_RESPONSE_BAD_MAC (CKR_VENDOR_DEFINED + 0x50) #define CKR_STC_NOT_ENABLED (CKR_VENDOR_DEFINED + 0x51) #define CKR_STC_CLIENT_HANDLE_INVALID (CKR_VENDOR_DEFINED + 0x52) #define CKR_STC_SESSION_INVALID (CKR_VENDOR_DEFINED + 0x53) #define CKR_STC_CONTAINER_INVALID (CKR_VENDOR_DEFINED + 0x54) #define CKR_STC_SEQUENCE_NUM_INVALID (CKR_VENDOR_DEFINED + 0x55) #define CKR_STC_NO_CHANNEL (CKR_VENDOR_DEFINED + 0x56) #define CKR_STC_RESPONSE_DECRYPT_ERROR (CKR_VENDOR_DEFINED + 0x57) #define CKR_STC_RESPONSE_REPLAYED (CKR_VENDOR_DEFINED + 0X58) #define CKR_STC_REKEY_CHANNEL_MISMATCH (CKR_VENDOR_DEFINED + 0X59) #define CKR_STC_RSA_ENCRYPT_ERROR (CKR_VENDOR_DEFINED + 0X5a) #define CKR_STC_RSA_SIGN_ERROR (CKR_VENDOR_DEFINED + 0X5b) #define CKR_STC_RSA_DECRYPT_ERROR (CKR_VENDOR_DEFINED + 0X5c) #define CKR_STC_RESPONSE_UNEXPECTED_KEY (CKR_VENDOR_DEFINED + 0X5d) #define CKR_STC_UNEXPECTED_NONCE_PAYLOAD_SIZE (CKR_VENDOR_DEFINED + 0X5e) #define CKR_STC_UNEXPECTED_DH_DATA_SIZE (CKR_VENDOR_DEFINED + 0X5f) #define CKR_STC_OPEN_CIPHER_MISMATCH (CKR_VENDOR_DEFINED + 0X60) #define CKR_STC_OPEN_DHNIST_PUBKEY_ERROR (CKR_VENDOR_DEFINED + 0X61) #define CKR_STC_OPEN_KEY_MATERIAL_GEN_FAIL (CKR_VENDOR_DEFINED + 0X62) #define CKR_STC_OPEN_RESP_GEN_FAIL (CKR_VENDOR_DEFINED + 0X63) #define CKR_STC_ACTIVATE_MACTAG_U_VERIFY_FAIL (CKR_VENDOR_DEFINED + 0X64) #define CKR_STC_ACTIVATE_MACTAG_V_GEN_FAIL (CKR_VENDOR_DEFINED + 0X65) #define CKR_STC_ACTIVATE_RESP_GEN_FAIL (CKR_VENDOR_DEFINED + 0X66) #define CKR_CHALLENGE_INCORRECT (CKR_VENDOR_DEFINED + 0X67) #define CKR_ACCESS_ID_INVALID (CKR_VENDOR_DEFINED + 0X68) #define CKR_ACCESS_ID_ALREADY_EXISTS (CKR_VENDOR_DEFINED + 0X69) #define CKR_KEY_NOT_KEKABLE (CKR_VENDOR_DEFINED + 0x6a) #define CKR_MECHANISM_INVALID_FOR_FP (CKR_VENDOR_DEFINED + 0x6b) #define CKR_OPERATION_INVALID_FOR_FP (CKR_VENDOR_DEFINED + 0x6c) #define CKR_SESSION_HANDLE_INVALID_FOR_FP (CKR_VENDOR_DEFINED + 0x6d) #define CKR_CMD_NOT_ALLOWED_HSM_IN_TRANSPORT (CKR_VENDOR_DEFINED + 0x6e) #define CKR_OBJECT_ALREADY_EXISTS (CKR_VENDOR_DEFINED + 0X6f) #define CKR_PARTITION_ROLE_DESC_VERSION_INVALID (CKR_VENDOR_DEFINED + 0X70) #define CKR_PARTITION_ROLE_POLICY_VERSION_INVALID (CKR_VENDOR_DEFINED + 0X71) #define CKR_PARTITION_ROLE_POLICY_SET_VERSION_INVALID (CKR_VENDOR_DEFINED + 0X72) #define CKR_REKEK_KEY (CKR_VENDOR_DEFINED + 0X73) #define CKR_KEK_RETRY_FAILURE (CKR_VENDOR_DEFINED + 0X74) #define CKR_RNG_RESEED_TOO_EARLY (CKR_VENDOR_DEFINED + 0X75) #define CKR_HSM_TAMPERED (CKR_VENDOR_DEFINED + 0X76) #define CKR_CONFIG_CHANGE_ILLEGAL (CKR_VENDOR_DEFINED + 0x77) #define CKR_SESSION_CONTEXT_NOT_ALLOCATED (CKR_VENDOR_DEFINED + 0x78) #define CKR_SESSION_CONTEXT_ALREADY_ALLOCATED (CKR_VENDOR_DEFINED + 0x79) #define CKR_INVALID_BL_ITB_AUTH_HEADER (CKR_VENDOR_DEFINED + 0x7A) #define CKR_POLICY_ID_INVALID (CKR_VENDOR_DEFINED + 0x7B) #define CKR_CONFIG_ILLEGAL (CKR_VENDOR_DEFINED + 0x7C) #define CKR_CONFIG_FAILS_DEPENDENCIES (CKR_VENDOR_DEFINED + 0x7D) #define CKR_CERTIFICATE_TYPE_INVALID (CKR_VENDOR_DEFINED + 0x7E) // utilization metrics #define CKR_INVALID_UTILIZATION_METRICS (CKR_VENDOR_DEFINED + 0x7F) #define CKR_UTILIZATION_BIN_ID_INVALID (CKR_VENDOR_DEFINED + 0x80) #define CKR_UTILIZATION_COUNTER_ID_INVALID (CKR_VENDOR_DEFINED + 0x81) #define CKR_INVALID_SERIAL_NUM (CKR_VENDOR_DEFINED + 0x82) // BIP32 errors #define CKR_BIP32_CHILD_INDEX_INVALID (CKR_VENDOR_DEFINED | 0x83) #define CKR_BIP32_INVALID_HARDENED_DERIVATION (CKR_VENDOR_DEFINED | 0x84) #define CKR_BIP32_MASTER_SEED_LEN_INVALID (CKR_VENDOR_DEFINED | 0x85) #define CKR_BIP32_MASTER_SEED_INVALID (CKR_VENDOR_DEFINED | 0x86) #define CKR_BIP32_INVALID_KEY_PATH_LEN (CKR_VENDOR_DEFINED | 0x87) #define CKR_FM_ID_INVALID (CKR_VENDOR_DEFINED + 0x88) #define CKR_FM_NOT_SUPPORTED (CKR_VENDOR_DEFINED + 0x89) #define CKR_FM_NEVER_ENABLED (CKR_VENDOR_DEFINED + 0x8a) #define CKR_FM_DISABLED (CKR_VENDOR_DEFINED + 0x8b) #define CKR_FM_SMFS_INACTIVE (CKR_VENDOR_DEFINED + 0x8c) // HSM restart required before the operation can be performed. #define CKR_HSM_RESTART_REQUIRED (CKR_VENDOR_DEFINED + 0x8d) #define CKR_FM_CFG_ALLOWEDFLAG_DISABLED (CKR_VENDOR_DEFINED + 0x8e) // These match the ones already defined for PTK #define CKR_OBJECT_READ_ONLY (CKR_VENDOR_DEFINED + 0x114) #define CKR_KEY_NOT_ACTIVE (CKR_VENDOR_DEFINED + 0x136) // CKO_VENDOR_DEFINED #define CKO_TOKEN_ROLE_POLICY_SET (CKO_VENDOR_DEFINED + 0x0001) #define CKO_TOKEN_ROLE_POLICY (CKO_VENDOR_DEFINED + 0x0002) #define CKO_TOKEN_ROLE_DESCRIPTOR (CKO_VENDOR_DEFINED + 0x0003) #define CKO_TOKEN_ROLE_STATE (CKO_VENDOR_DEFINED + 0x0004) // Vendor defined objects ported from PTK. #define CKO_CERTIFICATE_REQUEST (CKO_VENDOR_DEFINED + 0x0201) #define CKO_CRL (CKO_VENDOR_DEFINED + 0x0202) #define CKO_ADAPTER (CKO_VENDOR_DEFINED + 0x020A) #define CKO_SLOT (CKO_VENDOR_DEFINED + 0x020B) #define CKO_FM (CKO_VENDOR_DEFINED + 0x020C) // CKS_VENDOR_DEFINED: NOTE: PKCS #11 does not define vendor extensions for states. #define CKS_RO_SO_FUNCTIONS 5 /* still in PKCS #11 space */ #define CKS_RO_VENDOR_DEFINED 0x80000000 #define CKS_RW_VENDOR_DEFINED 0x90000000 #define CKS_RW_AUDIT_FUNCTIONS (CKS_RW_VENDOR_DEFINED + 0x001) /****************************************************************************\ * * FASTPATH configuration flags * \****************************************************************************/ #define CKF_FP_NONE 0x00 #define CKF_FP_KEK_REPLACEMENT_ON_SESSION_KEY_DELETION 0x01 #define CKF_FP_KEK_REPLACEMENT_ON_TOKEN_KEY_DELETION 0x02 #define CKF_FP_KEK_REPLACEMENT_ON_ATTRIBUTE_CHANGE 0x04 #define CKF_FP_KEK_FLAG_ALLOW_MIXED_MODE_KEYS 0x08 /***************************************************************************** * * Role state * *****************************************************************************/ /* NOTE: These match the flag values out of the HSM. */ #define CAF_ROLE_STATE_INITIALIZED 0x01 #define CAF_ROLE_STATE_LOCKED_OUT 0x02 #define CAF_ROLE_STATE_ACTIVATED 0x04 #define CAF_ROLE_STATE_HAS_RDK 0x08 #define CAF_ROLE_STATE_PIN_CHANGE 0x10 #define CAF_ROLE_STATE_CHALLENGE_CHANGE 0x20 /* These do not; they need to be translated from values in luna2if.h. */ #define CKA_ROLE_AUTH_NONE 0x00 #define CKA_ROLE_AUTH_PASSWORD 0x01 #define CKA_ROLE_AUTH_PED 0x02 #define CKA_ROLE_AUTH_INVALID 0xFF typedef struct { CK_BYTE flags; /* see CAF_ROLE_STATE_* values */ CK_BYTE loginAttemptsLeft; /* before being locked out */ CK_BYTE primaryAuthMech; /* use CKA_ROLE_* values */ CK_BYTE secondaryAuthMech; /* CKA_ROLE_AUTH_NONE if not set. */ } CA_ROLE_STATE; #define CA_MAX_ROLE_NAME_LEN 24 #define CA_MAX_ROLE_SHORT_NAME_LEN 4 #define CA_MAX_PRP_LABEL_LEN 24 #define CA_MAX_ROLES_PER_PARTITION 4 #define CA_MAX_PRP_PER_SET 3 /****************************************************************************\ * * M of N * \****************************************************************************/ typedef struct { CK_ULONG ulWeight; CK_BYTE_PTR pVector; CK_ULONG ulVectorLen; } CA_MOFN_GENERATION; typedef CA_MOFN_GENERATION* CA_MOFN_GENERATION_PTR; typedef struct { CK_BYTE_PTR pVector; CK_ULONG ulVectorLen; } CA_MOFN_ACTIVATION; typedef CA_MOFN_ACTIVATION* CA_MOFN_ACTIVATION_PTR; typedef struct CA_M_OF_N_STATUS { CK_ULONG ulID; CK_ULONG ulM; CK_ULONG ulN; CK_ULONG ulSecretSize; CK_ULONG ulFlag; // contains 3 bits: bActive, bGenerated, and bRequired, bMofNCloneable } CA_MOFN_STATUS; typedef CA_MOFN_STATUS* CA_MOFN_STATUS_PTR; #define CAF_M_OF_N_REQUIRED 0x00000001 #define CAF_M_OF_N_ACTIVATED 0x00000002 #define CAF_M_OF_N_GENERATED 0x00000004 #define CAF_M_OF_N_CLONEABLE 0x00000008 /****************************************************************************\ * * Custom module loading and management * \****************************************************************************/ typedef CK_ULONG CKCA_MODULE_ID; typedef CKCA_MODULE_ID CK_POINTER CKCA_MODULE_ID_PTR; typedef struct CKCA_MODULE_INFO { CK_ULONG ulModuleSize; CK_CHAR developerName[32]; CK_CHAR moduleDescription[32]; CK_VERSION moduleVersion; } CKCA_MODULE_INFO; typedef CKCA_MODULE_INFO CK_POINTER CKCA_MODULE_INFO_PTR; #define CKCAO_Encrypt 0 #define CKCAO_Decrypt 1 #define CKCAO_Sign 2 #define CKCAO_Verify 3 #define CKCAO_Digest 4 /****************************************************************************\ * * SafeNet High Availability Status function * \****************************************************************************/ // assume a client doesn't look at more than 32 Vipers #define CK_HA_MAX_MEMBERS 32 typedef struct CK_HA_MEMBER { CK_CHAR memberSerial[CK_TOKEN_SERIAL_NUMBER_SIZE + 4]; CK_RV memberStatus; } CK_HA_MEMBER; typedef struct CK_HA_STATUS { CK_CHAR groupSerial[CK_TOKEN_SERIAL_NUMBER_SIZE + 4]; CK_HA_MEMBER memberList[CK_HA_MAX_MEMBERS]; CK_ULONG listSize; } CK_HA_STATUS; typedef CK_HA_MEMBER CK_POINTER CK_HA_MEMBER_PTR; typedef CK_HA_STATUS CK_POINTER CK_HA_STATE_PTR; /****************************************************************************\ * * SafeNet Hardware Secured Certificate functions * \****************************************************************************/ #define CKHSC_CERT_TYPE_TCTRUST_MAC 0x00000001 #define CKHSC_CERT_TYPE_TCTRUST_DAC 0x00000002 #define CKHSC_CERT_TYPE_CITS_ROOT 0x00000003 #define CKHSC_CERT_TYPE_CITS_MICHOC 0x00000004 #define CKHSC_CERT_TYPE_CITS_DAC 0x00000005 #define CKHSC_CERT_TYPE_ECC_MIC 0x00000006 #define CKHSC_CERT_TYPE_ECC_HOC 0x00000007 #define CKHSC_CERT_TYPE_ECC_DAC 0x00000008 #define CKHSC_CERT_TYPE_TWC 0x00000009 #define CKHSC_CERT_TYPE_TWC2 0x0000000A #define CKHSC_CERT_TYPE_TWC3 0x0000000B #define CKHSC_CERT_TYPE_PEC 0x00000010 // FM Certs #define CKHSC_CERT_TYPE_CITS_MICHOC_FM 0x00000011 #define CKHSC_CERT_TYPE_TWC3_FM 0x00000012 #define CKHSC_CERT_TYPE_ECC_HOC_FM 0x00000013 typedef CK_ULONG CKA_SIM_AUTH_FORM; #define CKA_SIM_NO_AUTHORIZATION 0 // no authorization needed #define CKA_SIM_PASSWORD 1 // plain-text passwords #define CKA_SIM_CHALLENGE 2 // challenge secrets emitted through the secure port #define CKA_SIM_SECURE_PORT 3 // PED keys // Portable SIM #define CKA_SIM_PORTABLE_NO_AUTHORIZATION 4 // no authorization needed, portable #define CKA_SIM_PORTABLE_PASSWORD 5 // plain-text passwords, portable #define CKA_SIM_PORTABLE_CHALLENGE 6 // challenge secrets emitted through the secure port, portable #define CKA_SIM_PORTABLE_SECURE_PORT 7 // PED keys, portable #ifndef _TOKEN_HNDLE_DEFINED typedef struct CT_Token* CT_TokenHndle; #define _TOKEN_HNDLE_DEFINED /* avoid multiple definitions */ #endif ////////////////////////////////////////////////////////////////////// // SIM3 Mechanisms // // Note: These are defined in the standard cryptoki mechanism list, // elsewhere in this file, they're copied here to ease their use //////////////////////////////////////////////////////////////////////. // CKM_AES_CBC_PAD_EXTRACT (CKM_VENDOR_DEFINED + 0x200) // CKM_AES_CBC_PAD_INSERT (CKM_VENDOR_DEFINED + 0x201) // CKM_AES_CBC_PAD_EXTRACT_FLATTENED (CKM_VENDOR_DEFINED + 0x202) // CKM_AES_CBC_PAD_INSERT_FLATTENED (CKM_VENDOR_DEFINED + 0x203) ////////////////////////////////////////////////////////////////////// // SIM3 Element types ////////////////////////////////////////////////////////////////////// #define CK_NULL_ELEMENT (-1) #define CK_CRYPTOKI_ELEMENT 0x00000000 #define CK_PARAM_ELEMENT 0x00000001 #define CK_CONTAINER_ACTIVATION_ELEMENT 0x00000002 #define CK_MOFN_ACTIVATION_ELEMENT 0x00000003 #define CK_CONTAINER_ELEMENT 0x00000004 ////////////////////////////////////////////////////////////////////// // Various Cloning size definitions ////////////////////////////////////////////////////////////////////// #define CK_CLONING_PART1_OVERHEAD 8192 #define CK_CLONING_PART2_OVERHEAD 76 #define CK_FLATTENED_OBJECT_OVERHEAD 3264 ////////////////////////////////////////////////////////////////////// // SIM3 Mechanism parameters ////////////////////////////////////////////////////////////////////// typedef struct CK_AES_CBC_PAD_EXTRACT_PARAMS { CK_ULONG ulType; // in CK_ULONG ulHandle; // in CK_ULONG ulDeleteAfterExtract; // in CK_BYTE_PTR pBuffer; // out CK_ULONG_PTR pulBufferLen; // out // Additional PED CF related parameters: CK_ULONG ulStorage; // in: place of HSM object storage: HSM_T, HSM_PED_T, etc. See luna2if.h . CK_ULONG pedId; // in: PED ID: 0 (local), 1, 2,... CK_BYTE_PTR pbFileName; // in: name of the file at ulStorage, where the object stored. // Secure backup additional parameter CK_ULONG ctxID; // in: parameter specifying secure backup context handle } CK_AES_CBC_PAD_EXTRACT_PARAMS; typedef CK_AES_CBC_PAD_EXTRACT_PARAMS CK_POINTER CK_AES_CBC_PAD_EXTRACT_PARAMS_PTR; typedef struct CK_AES_CBC_PAD_INSERT_PARAMS { CK_ULONG ulStorageType; // in CK_ULONG ulContainerState; // in CK_BYTE_PTR pBuffer; // in CK_ULONG ulBufferLen; // in CK_ULONG_PTR pulType; // out CK_ULONG_PTR pulHandle; // out // Additional PED CF related parameters: CK_ULONG ulStorage; // in: place of HSM object storage: HSM_T, HSM_PED_T, etc. See luna2if.h . CK_ULONG pedId; // in: PED ID: 0 (local), 1, 2,... CK_BYTE_PTR pbFileName; // in: name of the file at ulStorage, where the object stored. // Secure backup additional parameter CK_ULONG ctxID; // in: parameter specifying secure backup context handle } CK_AES_CBC_PAD_INSERT_PARAMS; typedef CK_AES_CBC_PAD_INSERT_PARAMS CK_POINTER CK_AES_CBC_PAD_INSERT_PARAMS_PTR; ////////////////////////////////////////////////////////////////////////////// // SIM3: // List of available storage location (tokens) for keeping extracted objects. ////////////////////////////////////////////////////////////////////////////// #define CK_STORAGE_HOST 0x00000000 #define CK_STORAGE_PED_USB_MEMORY 0x00000001 #define CK_STORAGE_HSM_USB_MEMORY 0x00000002 /****************************************************************************\ * * * MTK management * * * \****************************************************************************/ #define CK_MTK_STATE_FLAG_RESPLIT_ABORTED 0x00000001 #define CK_MTK_STATE_FLAG_HARD_ZEROIZE 0x00000002 #define CK_MTK_STATE_FLAG_SOFT_ZEROIZE 0x00000004 #define CK_MTK_STATE_FLAG_LOCKED 0x00000008 /****************************************************************************\ * * * STM management * * * \****************************************************************************/ #define CK_STM_STATE_FLAG_STM_TURNED_ON 0x00000004 /****************************************************************************\ * * * GET Types * * * \****************************************************************************/ //[...] Expose these as necessary and make sure they match LUNA ones #define CK_GT_TSN 0x00000003 #define CK_GT_HSM_SN 0x0000002B #define CK_GT_TAMPER_INFO 0x00000054 #define CK_GT_LIVE_TAMPER_INFO 0x00000057 #define CK_GT_HW_ORIGIN_CERT_FM 0x00000059 // retrieves HOC-FM+MIC #define CK_GT_ECC_HOC_FM 0x0000005B //[...] /****************************************************************************************/ /****************************************************************************\ * * SafeNet Cluster functions * \****************************************************************************/ #ifndef CK_MAX_CLUSTER_MEMBERS #define CK_MAX_CLUSTER_MEMBERS 8 typedef struct CK_CLUSTER_STATE { CK_BYTE bMembers[CK_MAX_CLUSTER_MEMBERS][32]; CK_ULONG ulMemberStatus[CK_MAX_CLUSTER_MEMBERS]; } CK_CLUSTER_STATE; typedef CK_CLUSTER_STATE CK_POINTER CK_CLUSTER_STATE_PTR; #endif /****************************************************************************\ * * SafeNet PED ID constants * \****************************************************************************/ #define CK_PED_ID_LOCAL 0x0000 #define CK_PED_ID_MAX 0xFFFE /****************************************************************************\ * * SafeNet Usage Counter definitions and functions * \****************************************************************************/ #define CK_MODIFY_USAGE_COUNT_COMMAND_TYPE_INCREMENT 0x00000001 #define CK_MODIFY_USAGE_COUNT_COMMAND_TYPE_SET 0x00000002 /****************************************************************************\ * * SafeNet Partition Utilization Metrics definitions and functions * \****************************************************************************/ #define CK_UTILIZATION_BIN_SIGN 0 #define CK_UTILIZATION_BIN_VERIFY 1 #define CK_UTILIZATION_BIN_ENCRYPT 2 #define CK_UTILIZATION_BIN_DECRYPT 3 #define CK_UTILIZATION_BIN_KEY_GENERATION 4 #define CK_UTILIZATION_BIN_KEY_DERIVATION 5 #define LUNA_UTILIZATION_BIN_MAX 6 #define CK_UTILIZATION_COUNTER_REQUESTS 0 #define LUNA_UTILIZATION_COUNTER_MAX 1 #define CK_LABLE_LENGTH_MAX (64 + 2) // 2 bytes for UTF-8 terminator \0\0 typedef unsigned long long CK_ULONGLONG; typedef CK_ULONGLONG CK_PTR CK_ULONGLONG_PTR; typedef CK_ULONGLONG CK_UTILIZATION_COUNT; typedef CK_UTILIZATION_COUNT CK_PTR CK_UTILIZATION_COUNT_PTR; typedef struct CK_UTILIZATION_COUNTER { CK_ULONGLONG serNum; CK_CHAR label[CK_LABLE_LENGTH_MAX]; CK_ULONG ulBinId; CK_ULONG ulCounterId; CK_UTILIZATION_COUNT count; } CK_UTILIZATION_COUNTER; typedef CK_UTILIZATION_COUNTER CK_PTR CK_UTILIZATION_COUNTER_PTR; /****************************************************************************\ * * BIP32 structures and definitions * \****************************************************************************/ typedef struct CK_BIP32_MASTER_DERIVE_PARAMS { CK_ATTRIBUTE_PTR pPublicKeyTemplate; CK_ULONG ulPublicKeyAttributeCount; CK_ATTRIBUTE_PTR pPrivateKeyTemplate; CK_ULONG ulPrivateKeyAttributeCount; CK_OBJECT_HANDLE hPublicKey; // output parameter CK_OBJECT_HANDLE hPrivateKey; // output parameter } CK_BIP32_MASTER_DERIVE_PARAMS; typedef CK_BIP32_MASTER_DERIVE_PARAMS CK_PTR CK_BIP32_MASTER_DERIVE_PARAMS_PTR; typedef struct CK_BIP32_CHILD_DERIVE_PARAMS { CK_ATTRIBUTE_PTR pPublicKeyTemplate; CK_ULONG ulPublicKeyAttributeCount; CK_ATTRIBUTE_PTR pPrivateKeyTemplate; CK_ULONG ulPrivateKeyAttributeCount; CK_ULONG_PTR pulPath; CK_ULONG ulPathLen; CK_OBJECT_HANDLE hPublicKey; // output parameter CK_OBJECT_HANDLE hPrivateKey; // output parameter CK_ULONG ulPathErrorIndex; // output parameter } CK_BIP32_CHILD_DERIVE_PARAMS; typedef CK_BIP32_CHILD_DERIVE_PARAMS CK_PTR CK_BIP32_CHILD_DERIVE_PARAMS_PTR; // BIP32 defines #define CKG_BIP32_VERSION_MAINNET_PUB (0x0488B21E) #define CKG_BIP32_VERSION_MAINNET_PRIV (0x0488ADE4) #define CKG_BIP32_VERSION_TESTNET_PUB (0x043587CF) #define CKG_BIP32_VERSION_TESTNET_PRIV (0x04358394) #define CKG_BIP44_PURPOSE (0x0000002C) #define CKG_BIP44_COIN_TYPE_BTC (0x00000000) #define CKG_BIP44_COIN_TYPE_BTC_TESTNET (0x00000001) #define CKG_BIP32_EXTERNAL_CHAIN (0x00000000) #define CKG_BIP32_INTERNAL_CHAIN (0x00000001) #define CKG_BIP32_MAX_SERIALIZED_LEN (112) #define CKG_BIP32_MAX_PATH_LEN (255) #define CKF_BIP32_HARDENED (0x80000000) // EDDSA Parameters typedef struct CK_EDDSA_PARAMS { CK_BBOOL phFlag; CK_ULONG ulContextDataLen; CK_BYTE_PTR pContextData; } CK_EDDSA_PARAMS; typedef CK_EDDSA_PARAMS CK_PTR CK_EDDSA_PARAMS_PTR; /****************************************************************************\ * * * Luna Pseudo Random Functions * * * \****************************************************************************/ /*#define CKP_PKCS5_PBKD2_HMAC_SHA1 0x00000001*/ #define CKP_PKCS5_PBKD2_HMAC_SM3 0x80000B01 typedef struct _CK_POLICY_INFO { CK_ULONG ulID; CK_ULONG ulValue; CK_ULONG ulOffToOnDestructive; CK_ULONG ulOnToOffDestructive; } CK_POLICY_INFO; typedef CK_POLICY_INFO CK_POINTER CK_POLICY_INFO_PTR; typedef CK_RV CK_POINTER CK_RV_PTR; /****************************************************************************\ * * SafeNet function list for CA_ function pointers * \****************************************************************************/ #ifndef DISABLE_CA_EXT /* CK_SFNT_CA_FUNCTION_LIST is a structure holding a Cryptoki spec * version and pointers of appropriate types to all the * Cryptoki functions */ typedef struct CK_SFNT_CA_FUNCTION_LIST CK_SFNT_CA_FUNCTION_LIST; typedef CK_SFNT_CA_FUNCTION_LIST CK_PTR CK_SFNT_CA_FUNCTION_LIST_PTR; typedef CK_SFNT_CA_FUNCTION_LIST_PTR CK_PTR CK_SFNT_CA_FUNCTION_LIST_PTR_PTR; #include "sfnt_extensions.h" /* the typedefs are in a generated file. */ #include "sfnt_ext_typedef_members.h" struct CK_SFNT_CA_FUNCTION_LIST { CK_VERSION version; /* Cryptoki version */ /* The remainder are taken from a generated file. */ #include "sfnt_ext_list_members.h" }; #endif // DISABLE_CA_EXT #if defined(VXD) #pragma pack(pop) #elif defined(OS_WIN32) #pragma pack(pop, cryptoki) #elif defined(OS_UNIX) || defined(OS_LINUX) // #pragma pack #else #error "Unknown platform!" #endif #ifdef __cplusplus } #endif #if !(defined(OS_LINUX) || defined(OS_HPUX) || defined(OS_AIX) || defined(OS_SOLARIS)) #pragma deprecated(CK_USHORT, CK_USHORT_PTR) #endif // not LINUX or HPUX or AIX or Solaris (Solaris gives "unrecognized #pragma....") #endif /* CRYPTOKI_H_ */ mstflint-4.26.0/mft_utils/hsmclient/Makefile.am0000644000175000017500000000371614522641732021742 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(srcdir)/inc \ -I$(srcdir)/inc/rsa \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ $(COMPILER_FPIC) -DUNIX -DOS_UNIX -DOS_LINUX AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) noinst_HEADERS = noinst_LIBRARIES = libhsmclient.a libhsmclient_a_SOURCES = \ src/burnprivatekey.cpp \ src/hex64.cpp \ src/hsmaesencryption.cpp \ src/hsmcreatersasignature.cpp \ src/hsmlunaclientinit.cpp \ src/hsmlunatest.cpp mstflint-4.26.0/mft_utils/hsmclient/Makefile.in0000644000175000017500000005252514522641737021762 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mft_utils/hsmclient DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(noinst_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libhsmclient_a_AR = $(AR) $(ARFLAGS) libhsmclient_a_LIBADD = am__dirstamp = $(am__leading_dot)dirstamp am_libhsmclient_a_OBJECTS = src/burnprivatekey.$(OBJEXT) \ src/hex64.$(OBJEXT) src/hsmaesencryption.$(OBJEXT) \ src/hsmcreatersasignature.$(OBJEXT) \ src/hsmlunaclientinit.$(OBJEXT) src/hsmlunatest.$(OBJEXT) libhsmclient_a_OBJECTS = $(am_libhsmclient_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libhsmclient_a_SOURCES) DIST_SOURCES = $(libhsmclient_a_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(srcdir)/inc \ -I$(srcdir)/inc/rsa \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common \ $(COMPILER_FPIC) -DUNIX -DOS_UNIX -DOS_LINUX AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) noinst_HEADERS = noinst_LIBRARIES = libhsmclient.a libhsmclient_a_SOURCES = \ src/burnprivatekey.cpp \ src/hex64.cpp \ src/hsmaesencryption.cpp \ src/hsmcreatersasignature.cpp \ src/hsmlunaclientinit.cpp \ src/hsmlunatest.cpp all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mft_utils/hsmclient/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mft_utils/hsmclient/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) src/$(am__dirstamp): @$(MKDIR_P) src @: > src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/$(DEPDIR) @: > src/$(DEPDIR)/$(am__dirstamp) src/burnprivatekey.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/hex64.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) src/hsmaesencryption.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/hsmcreatersasignature.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/hsmlunaclientinit.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/hsmlunatest.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) libhsmclient.a: $(libhsmclient_a_OBJECTS) $(libhsmclient_a_DEPENDENCIES) $(EXTRA_libhsmclient_a_DEPENDENCIES) $(AM_V_at)-rm -f libhsmclient.a $(AM_V_AR)$(libhsmclient_a_AR) libhsmclient.a $(libhsmclient_a_OBJECTS) $(libhsmclient_a_LIBADD) $(AM_V_at)$(RANLIB) libhsmclient.a mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f src/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/burnprivatekey.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/hex64.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/hsmaesencryption.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/hsmcreatersasignature.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/hsmlunaclientinit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/hsmlunatest.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(HEADERS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f src/$(DEPDIR)/$(am__dirstamp) -rm -f src/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf src/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf src/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mft_utils/mft_utils.h0000644000175000017500000000502314522641732020070 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * * Created on: April 3, 2017 * Author: Ahmad Soboh * */ #ifndef MFT_UTILS_H_ #define MFT_UTILS_H_ #include #include #include using namespace std; namespace mft_utils { string numToStr(u_int32_t num); bool strToNum(const string& str, u_int32_t& num, int base); void splitCommaSperatedString(string str, vector& strv); void ltrim(string& str, const string& chars = "\t\n\v\f\r "); void rtrim(string& str, const string& chars = "\t\n\v\f\r "); void trim(string& str, const string& chars = "\t\n\v\f\r "); string ltrim_copy(string str, const string& chars = "\t\n\v\f\r "); string rtrim_copy(string str, const string& chars = "\t\n\v\f\r "); string trim_copy(string str, const string& chars = "\t\n\v\f\r "); void to_lowercase(string& str); void to_uppercase(string& str); string to_lowercase_copy(string str); string to_uppercase_copy(string str); u_int32_t greatest_common_divisor(u_int32_t a, u_int32_t b); u_int32_t least_common_multiple(u_int32_t a, u_int32_t b); bool askUser(const char* question, bool force); } // namespace mft_utils #endif /* MFT_UTILS_H_ */ mstflint-4.26.0/mft_utils/errmsg.cpp0000644000175000017500000001357414522641732017726 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * errmsg.cpp - ErrMsg class implementation. * * Created on: May 7, 2014 * Author: adrianc * */ #include #include #include #include "errmsg.h" enum { SUCCESS = 0, FAILURE = 1 }; ErrMsg::ErrMsg() { _errMap[SUCCESS] = "SUCCESS"; _errMap[FAILURE] = "FAILURE"; _err = NULL; _formatErr = NULL; _lastErrCode = SUCCESS; } ErrMsg::ErrMsg(std::map& errCodeMap) { _errMap = errCodeMap; _err = NULL; _formatErr = NULL; _lastErrCode = SUCCESS; } ErrMsg::~ErrMsg() { err_clear(); } const char* ErrMsg::getFormatErr(const char* prefix, ...) { va_list args; char* prevFormatErr = _formatErr; va_start(args, prefix); char* preStr = vprint(prefix, args); int formatErrSz = strlen(_err) + strlen(preStr) + 10; _formatErr = new char[formatErrSz]; snprintf(_formatErr, formatErrSz, "-E- %s. %s", preStr, _err); va_end(args); delete[] prevFormatErr; delete[] preStr; return _formatErr; } const char* ErrMsg::err2Str(int errCode) const { std::map::const_iterator it; if ((it = _errMap.find(errCode)) == _errMap.end()) { return "Unknown Error Code"; } return it->second.c_str(); } char* ErrMsg::vprint(const char* format, va_list args) { const int INIT_VAL = 1024; int max_str, max_buf = INIT_VAL; char* out_buf; while (1) { out_buf = new char[max_buf]; max_str = max_buf - 1; if (vsnprintf(out_buf, max_str, format, args) < max_str) { return out_buf; } delete[] out_buf; max_buf *= 2; } } int ErrMsg::errmsg(const char* format, ...) { va_list args; char* prev_err = _err; va_start(args, format); _err = vprint(format, args); va_end(args); delete[] prev_err; _lastErrCode = FAILURE; return FAILURE; } int ErrMsg::errmsg(int errCode, const char* format, ...) { va_list args; char* prev_err = _err; va_start(args, format); _err = vprint(format, args); va_end(args); delete[] prev_err; _lastErrCode = errCode; return errCode; } int ErrMsg::errmsg(int errCode) { char* prevErr = _err; int errSz = strlen(err2Str(errCode)) + 1; char* newError = new char[errSz]; snprintf(newError, errSz, "%s", err2Str(errCode)); _err = newError; delete[] prevErr; _lastErrCode = errCode; return errCode; } void ErrMsg::errmsgConcatCom(const char* format, va_list args, const char* suffix) { char* prevErr = _err; char* currError = vprint(format, args); int errSz = strlen(currError) + strlen(suffix) + 10; char* newError = new char[errSz]; if (strlen(currError) == 0) { snprintf(newError, errSz, "%s", suffix); } else { if (strlen(suffix) == 0) { snprintf(newError, errSz, "%s", currError); } else { snprintf(newError, errSz, "%s. %s", currError, suffix); } } _err = newError; delete[] prevErr; delete[] currError; } int ErrMsg::errmsgConcatMsg(int errCode, const ErrMsg& errMsgObj, const char* format, ...) { va_list args; va_start(args, format); errmsgConcatCom(format, args, errMsgObj.err()); va_end(args); _lastErrCode = errCode; return errCode; } int ErrMsg::errmsgConcatMsg(const ErrMsg& errMsgObj, const char* format, ...) { va_list args; va_start(args, format); errmsgConcatCom(format, args, errMsgObj.err()); va_end(args); _lastErrCode = FAILURE; return FAILURE; } int ErrMsg::errmsgConcatMsg(int errCode, const ErrMsg& errMsgObj) { return errmsg(errCode, "%s", errMsgObj.err()); } int ErrMsg::errmsgConcatMsg(const ErrMsg& errMsgObj) { return errmsg("%s", errMsgObj.err()); } int ErrMsg::errmsgConcatErrCd(int errCode, const ErrMsg& errMsgObj, const char* format, ...) { va_list args; va_start(args, format); errMsgObj.getLastErrCode(); errmsgConcatCom(format, args, errMsgObj.err2Str(errMsgObj.getLastErrCode())); va_end(args); _lastErrCode = errCode; return errCode; } int ErrMsg::errmsgConcatErrCd(int errCode, const ErrMsg& errMsgObj) { return errmsg(errCode, "%s", errMsgObj.err2Str(errMsgObj.getLastErrCode())); } int ErrMsg::errmsgConcatErrCd(const ErrMsg& errMsgObj) { return errmsg("%s", errMsgObj.err2Str(errMsgObj.getLastErrCode())); } void ErrMsg::err_clear() { delete[] _err; delete[] _formatErr; _err = NULL; _formatErr = NULL; } mstflint-4.26.0/mft_utils/mft_sig_handler.h0000644000175000017500000000612414522641732021212 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MFT_SIG_HANDLER #define MFT_SIG_HANDLER #ifdef __cplusplus extern "C" { #endif /** @file * mft_sig_hanndler - Generic signal handling API * Re place the default sig handlers for user interrupts with a * 'thin' handler that sets a flag and prints message to user * (to stderr), and returns. * * This allows application to place this handler in the main * loop and do a propper exit with cleanup on signal. * * NOTE: mft_sig_handler saves on first call to * mft_signal_set_handling(1), the current handlers * and restores them each time we turn the thin handler off * thus the main program should not change its default signal * handlers after their initial initilization. */ /** * @brief Start/Stop the thin handler * @param [in] is_on: 1 - enable thin handler. 0 - restore * previous handlers * @return 0 on success, 1 otherwise. */ int mft_signal_set_handling(int is_on); /** * @brief signal accepted indication * @return N - signal N was accepted. 0 otherwise... */ int mft_signal_is_fired(); /** * @brief set value for signal accepted indication. * Can be used to clear signal * @param [in] is_fired */ void mft_signal_set_fired(int is_fired); /** * @brief Set teh message to be printed on signal * @param [in] msg - the mesage or NULL if no message is to be * printed. */ void mft_signal_set_msg(char* msg); /** * @brief Deal with signals, if got signal - raise, otherwise restore it */ void mft_restore_and_raise(); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/mft_utils/mft_sig_handler.c0000644000175000017500000001131614522641732021204 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include static int s_is_fired = 0; static char* s_interrupt_message = NULL; // siganls to handle #ifdef __WIN__ static int signals_array[] = {SIGINT}; #else static int signals_array[] = {SIGINT, SIGQUIT, SIGTERM, SIGUSR1}; #endif static void (*prev_handlers[sizeof(signals_array) / sizeof(signals_array[0])])(int sig); static void my_termination_handler(int sig) { s_is_fired = sig; // assuming signals received are always different then zero if (s_interrupt_message) { fprintf(stderr, "%s", s_interrupt_message); } } #ifdef __WIN__ static BOOL CtrlHandler(DWORD fdwCtrlType) { switch (fdwCtrlType) { // Handle the CTRL-C signal. case CTRL_C_EVENT: // CTRL-CLOSE: confirm that the user wants to exit. case CTRL_CLOSE_EVENT: // Pass other signals to the next handler. case CTRL_BREAK_EVENT: case CTRL_LOGOFF_EVENT: case CTRL_SHUTDOWN_EVENT: my_termination_handler(SIGINT); return TRUE; default: return FALSE; } } #endif int mft_signal_set_handling(int is_on) { unsigned int i; #ifdef __WIN__ SetConsoleCtrlHandler((PHANDLER_ROUTINE)CtrlHandler, is_on); #endif static int first_on = 0; static int is_on_counter = 0; if (is_on_counter == 0 && is_on == 0) { // if we reach here it means previous handler is already set so there is no need to restore it once more. return 0; } // incr/decr counter if (is_on) { is_on_counter += 1; } else { is_on_counter = is_on_counter > 0 ? is_on_counter - 1 : is_on_counter; } if (is_on == 1 && first_on == 0) { /* first time we turned thin handler on so we save previous handlers in prev_handlers array */ for (i = 0; i < sizeof(signals_array) / sizeof(signals_array[0]); i++) { prev_handlers[i] = signal(signals_array[i], my_termination_handler); if (prev_handlers[i] == SIG_ERR) { return -1; } } first_on = 1; return 0; } /* not the first time we turned on the signals */ /* register term/kill signal handler */ /* we need to call signal routine only when is_on_counter == 0 or 1 (more precisely when it goes from zero to one or * visa versa )*/ if ((is_on_counter == 0 && is_on == 0) || (is_on_counter == 1 && is_on == 1)) { for (i = 0; i < sizeof(signals_array) / sizeof(signals_array[0]); i++) { if (signal(signals_array[i], is_on_counter > 0 ? my_termination_handler : prev_handlers[i]) == SIG_ERR) { return -1; } } } return 0; } int mft_signal_is_fired() { return s_is_fired; } void mft_signal_set_fired(int is_fired) { s_is_fired = is_fired; } void mft_signal_set_msg(char* msg) { s_interrupt_message = msg; } void mft_restore_and_raise() { int sig; sig = mft_signal_is_fired(); if (sig) { // reset received signal mft_signal_set_fired(0); // retore prev handler mft_signal_set_handling(0); // raise signal to let the previous handle deal with it. raise(sig); } mft_signal_set_handling(0); return; } mstflint-4.26.0/mft_utils/Makefile.am0000644000175000017500000000351414522641732017750 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = -I. -I$(USER_DIR)/common $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -Wall -W $(COMPILER_FPIC) AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) noinst_HEADERS = mft_sig_handler.h errmsg.h noinst_LTLIBRARIES = libmftutils.la libmftutils_la_SOURCES = mft_sig_handler.c errmsg.cpp calc_hw_crc.c mlarge_buffer.cpp mft_utils.cpp mstflint-4.26.0/mft_utils/calc_hw_crc.h0000644000175000017500000000316614522641732020317 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MFT_CALC_HW_CRC #define MFT_CALC_HW_CRC #include #ifdef __cplusplus extern "C" { #endif u_int16_t calc_hw_crc(u_int8_t* data, int size); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/mft_utils/Makefile.in0000644000175000017500000005462714522641737020001 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mft_utils DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(noinst_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmftutils_la_LIBADD = am_libmftutils_la_OBJECTS = mft_sig_handler.lo errmsg.lo \ calc_hw_crc.lo mlarge_buffer.lo mft_utils.lo libmftutils_la_OBJECTS = $(am_libmftutils_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libmftutils_la_SOURCES) DIST_SOURCES = $(libmftutils_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = $(top_srcdir) AM_CPPFLAGS = -I. -I$(USER_DIR)/common $(COMPILER_FPIC) AM_CFLAGS = -MD -pipe -Wall -W $(COMPILER_FPIC) AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) noinst_HEADERS = mft_sig_handler.h errmsg.h noinst_LTLIBRARIES = libmftutils.la libmftutils_la_SOURCES = mft_sig_handler.c errmsg.cpp calc_hw_crc.c mlarge_buffer.cpp mft_utils.cpp all: all-am .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mft_utils/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mft_utils/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmftutils.la: $(libmftutils_la_OBJECTS) $(libmftutils_la_DEPENDENCIES) $(EXTRA_libmftutils_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmftutils_la_OBJECTS) $(libmftutils_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/calc_hw_crc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/errmsg.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mft_sig_handler.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mft_utils.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlarge_buffer.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/small_utils/0000755000175000017500000000000014522641740016232 5ustar tzafrirctzafrircmstflint-4.26.0/small_utils/vpd.c0000644000175000017500000002402214522641732017170 0ustar tzafrirctzafrirc/* * * vpd.c - PCI VPD (Vital Product Data) parser * * Author: Michael S. Tsirkin * * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include "tools_version.h" #include "mvpd/mvpd.h" static clock_t timeout_t = 5; // Just for compatibility, no meaning #define VPD_MAX_SIZE 4096 #define VPD_TOOL_VERSON "2.0.0" #define OPTSTR "mvhnsrt:" typedef unsigned char vpd_t[VPD_MAX_SIZE]; void print_field(char* key, char* val) { if (strcmp(key, "RV") == 0) { return; } else if (strlen(val)) { printf("%s: %s\n", key, val); } } void print_bin_field(char* key, char* val) { char* valTmp = malloc((strlen(val) * 2 + 1) * sizeof(char)); if (!valTmp) { printf("-E- Failed to Allocate Memory"); return; } memset(valTmp, 0, (strlen(val) * 2 + 1) * sizeof(char)); int i = 0; while (val[i] != '\0') { sprintf(valTmp + i * 2, "%02x", (u_int8_t)val[i]); i++; } printf("%s(BIN): %s\n", key, valTmp); free(valTmp); } int is_printable(const char* value) { int i = 0; while (value[i] != '\0') { if (isprint((int)value[i])) { i++; continue; } else { return 0; } } return 1; } static int is_keyword_valid(const char* kw) { if (!kw || strlen(kw) == 0 || !is_printable(kw)) { return 0; } return 1; } // If you want to print all, pass NULL keyword // TODO adrianc: use common func - there is alot of duplicate code here. void find_and_print_vpd_data(vpd_result_t* vpd_data, vpd_tags_type_t vpd_type, const char* keyword) { if (vpd_type & VPD_RO) { int i; if (!keyword || strcmp(keyword, "ID") == 0) { print_field("ID", vpd_data->id.data); if (keyword) { return; } } for (i = 0; i < vpd_data->ro_fields_size; i++) { if (!keyword || strcmp(vpd_data->ro_fields[i].id, keyword) == 0) { if (is_keyword_valid(vpd_data->ro_fields[i].id)) { // skip empty/non-printable keywords print_field(vpd_data->ro_fields[i].id, vpd_data->ro_fields[i].data); } if (keyword) { return; } } } } if (vpd_type & VPD_RW) { int i; for (i = 0; i < vpd_data->rw_fields_size; i++) { if (!keyword || strcmp(vpd_data->rw_fields[i].id, keyword) == 0) { if (is_keyword_valid(vpd_data->rw_fields[i].id)) { // skip empty/non-printable keywords if (is_printable(vpd_data->rw_fields[i].data) == 1) { print_field(vpd_data->rw_fields[i].id, vpd_data->rw_fields[i].data); } else { print_bin_field(vpd_data->rw_fields[i].id, vpd_data->rw_fields[i].data); } } if (keyword) { return; } } } } } // Returns a pointer to the position of the arg in OPTSTR, or NULL if not found char const* get_opt_pos(const char* option_suspect, int enforce_option_with_args) { if (!(strlen(option_suspect) == 2 && option_suspect[0] == '-')) { return NULL; } char suspect_to_search[3]; suspect_to_search[0] = option_suspect[1]; if (enforce_option_with_args) { suspect_to_search[1] = ':'; suspect_to_search[2] = 0; } else { suspect_to_search[1] = 0; } return strstr(OPTSTR, suspect_to_search); } int verify_command_layout(int argc, char const** argv) { if (argc < 2) { return 0; } int i; for (i = 1; i < argc; i++) { if (get_opt_pos(argv[i], 0) || get_opt_pos(argv[i - 1], 1)) { continue; } else { break; } } // i is file argument or at the end of argv for (i = i + 1; i < argc; i++) { if (get_opt_pos(argv[i], 0)) { return 0; } } return 1; } int main(int argc, char** argv) { const char* name; char* endptr; int i; int rc = 0; vpd_t d; int m = 0; int n = 0; int strict = 0; mfile* mf; vpd_result_t* read_result; vpd_tags_type_t read_type = VPD_ALL; if (!verify_command_layout(argc, (char const**)argv)) { fprintf(stderr, "-E- Bad input parameter.\n"); rc = 1; goto usage; } do { i = getopt(argc, argv, OPTSTR); if (i < 0) { break; } switch (i) { case 'm': m = 1; break; case 'n': n = 1; break; case 's': strict = 1; break; case 'h': rc = 0; goto usage; case 'v': print_version_string("mstvpd", VPD_TOOL_VERSON); exit(0); case 'r': read_type = VPD_RO; break; case 't': timeout_t = strtol(optarg, &endptr, 0); if (*endptr != '\0') { fprintf(stderr, "-E- Invalid timeout argument: %s.\n", optarg); return 1; } if (timeout_t <= 0) { fprintf(stderr, "-E- Wrong timeout, it should be > 0 !\n"); return 1; } break; default: rc = 1; goto usage; } } while (1 == 1); name = argv[optind]; argc -= optind; argv += optind; if (name == NULL) { fprintf(stderr, "-E- Missing argument !\n"); return 33; } if (!strcmp("-", name)) { if (fread(d, VPD_MAX_SIZE, 1, stdin) != 1) { return 3; } } else { mf = mopen(name); if (!mf) { fprintf(stderr, "-E- Failed to open device %s!\n", name); return MVPD_BAD_PARAMS; } int mvpd_len = VPD_MAX_SIZE; rc = mvpd_get_vpd_size(mf, &mvpd_len); if (rc != 0) { fprintf(stderr, "-E- Failed to get VPD size from %s!\n", name); return MVPD_ERR; } rc = mvpd_get_raw_vpd(mf, (u_int8_t*)d, mvpd_len); if (rc) { fprintf(stderr, "-E- Failed to read VPD from %s!\n", name); return MVPD_ERR; } } if (m) { return fwrite(d, VPD_MAX_SIZE, 1, stdout) != 1; } rc = mvpd_parse_adv((u_int8_t*)d, VPD_MAX_SIZE, &read_result, read_type, strict, !n); if (rc) { fprintf(stderr, "-E- Failed to parse VPD from %s!\n", name); return MVPD_ERR; } if (argc == 1) { find_and_print_vpd_data(read_result, read_type, NULL); } else { for (i = 0; i < argc - 1; ++i) { if (!strcmp(argv[i + 1], "--")) { continue; } find_and_print_vpd_data(read_result, read_type, argv[i + 1]); } } if (read_result) { mvpd_result_free(read_result); } return 0; usage: printf("Usage: %s [-m|-n|-r] [-t ##] [-- keyword ...]\n", argv[0]); printf("-h\tPrint this help.\n"); printf("-v\tPrint tool version.\n"); printf("-m\tDump raw VPD data to stdout.\n"); printf("-n\tDo not validate check sum.\n"); printf("-r\tDo not check and display the VPD_W tag in the vpd data.\n"); printf("-t ##\tTime out after ## seconds. (Default is 30.)\n\n"); // Currently ignored - for compatibility // We have also "-s" ("s" for "strict"), which is a hidden flag used by production. // There are cards out there with inconsistent format, ~200K cards, // which will cause the tool to fail if this flag is specified. printf("file\tThe PCI id number of the HCA (for example, \"2:00.0\"),\n"); printf("\tthe device name (such as \"mlx4_0\")\n"); printf("\tthe absolute path to the device (\"/sys/class/infiniband/mlx4_0/device\")\n"); printf("\tor '-' to read VPD data from the standard input.\n\n"); printf("keyword(s): Only display the requested information. (ID, PN, EC, SN, etc...)\n"); return rc; } mstflint-4.26.0/small_utils/congestion.cpp0000644000175000017500000002363414522641732021117 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "congestion.h" #include "reg_access/reg_access.h" #include #include #include #include #include using namespace std; enum { BIT_TX_LOSSY_OPER = 1, BIT_TX_SENSE = 1 << 3, BIT_MARK_TX_CQE = 1 << 4, BIT_MARK_TX_CNP = 1 << 5, }; int main(int argc, char** argv) { CongestionUI congestObject; CongestionUI::exit_status_t exit_code = congestObject.run(argc, argv); int rc = 0; switch (exit_code) { case CongestionUI::EXIT_STATUS_OK: congestObject.printSuccess(); break; case CongestionUI::EXIT_STATUS_ERROR: congestObject.printError(); rc = 1; break; case CongestionUI::EXIT_STATUS_USAGE: congestObject.printUsage(); rc = 1; break; case CongestionUI::EXIT_STATUS_DEV_ID_ERR: congestObject.printErrorNotSupported(); rc = 1; break; case CongestionUI::EXIT_STATUS_CAP_ERR: congestObject.printErrorNotSupported(); rc = 1; break; } return rc; } CongestionUI::CongestionUI() : CommandLineRequester("mstcongestion [OPTIONS]"), _cmdParser("mstcongestion") { _devname = ""; _mf = NULL; _action = ACTION_NA; _mode = MODE_NA; _query = false; _ops = 0; _dynamicSupp = 0; _markCqeSupp = 0; _markCnpSupp = 0; initCmdParser(); } CongestionUI::~CongestionUI() { if (_mf) { mclose(_mf); _mf = NULL; } } void CongestionUI::initCmdParser() { AddOptions("device", 'd', "", "Mellanox PCI device address", false, true); AddOptions("mode", ' ', "", "Set Mode, options are: [aggressive | dynamic]"); AddOptions("action", ' ', "", "Set Action, options are: [disabled | drop | mark]"); AddOptions("query", 'q', "", "Query congestion"); AddOptions("help", 'h', "", "Show help message and exit"); AddOptions("version", 'v', "", "Show version and exit"); AddDescription("mstcongestion is a utility for configuring Mellanox device's receive congestion handling."); _cmdParser.AddRequester(this); } bool CongestionUI::isDeviceSupported(dm_dev_id_t devid) { /* Supported devices are CX4+ */ return (dm_is_5th_gen_hca(devid) && !dm_is_connectib(devid)); } ParseStatus CongestionUI::HandleOption(string name, string value) { if (name == "device") { _devname = value; } else if (name == "mode") { _ops++; if (value == "aggressive") { _mode = MODE_AGGRESSIVE; } else if (value == "dynamic") { _mode = MODE_DYNAMIC; } else { _errorMsg = "Invalid mode, options are: [aggressive | dynamic]"; return PARSE_ERROR; } } else if (name == "action") { _ops++; if (value == "disabled") { _action = ACTION_DISABLED; } else if (value == "drop") { _action = ACTION_DROP; } else if (value == "mark") { _action = ACTION_MARK; } else { _errorMsg = "Invalid action, options are: [disabled | drop | mark]"; return PARSE_ERROR; } } else if (name == "help") { printUsage(); return PARSE_OK_WITH_EXIT; } else if (name == "version") { print_version_string("mstcongestion", NULL); return PARSE_OK_WITH_EXIT; } else if (name == "query") { _ops++; _query = true; } else { _errorMsg = "Invalid option: " + name; return PARSE_ERROR; } return PARSE_OK; } CongestionUI::exit_status_t CongestionUI::run(int argc, char** argv) { ParseStatus rc = _cmdParser.ParseOptions(argc, argv); if ((rc == PARSE_OK) && (_devname == "")) { _errorMsg = "Missing device."; rc = PARSE_ERROR; } if (rc == PARSE_OK_WITH_EXIT) { return EXIT_STATUS_OK; } else if (rc == PARSE_ERROR) { if (_errorMsg == "") { _errorMsg = "Failed while parsing the arguments."; } return EXIT_STATUS_USAGE; } else if (rc == PARSE_ERROR_SHOW_USAGE) { return EXIT_STATUS_USAGE; } _mf = mopen(_devname.c_str()); if (!_mf) { _errorMsg = "Failed to open device: " + _devname; return EXIT_STATUS_ERROR; } /* Check supported device */ dm_dev_id_t devID = DeviceUnknown; u_int32_t hwDevID = 0; u_int32_t hwChipRev = 0; dm_get_device_id(_mf, &devID, &hwDevID, &hwChipRev); if (!isDeviceSupported(devID)) { _errorMsg = "mstcongestion is supported for CX4+ devices."; return EXIT_STATUS_DEV_ID_ERR; } struct reg_access_hca_mcam_reg_ext mcam; memset(&mcam, 0, sizeof(mcam)); reg_access_status_t status = reg_access_mcam(_mf, REG_ACCESS_METHOD_GET, &mcam); if (status) { _errorMsg = "mstcongestion is not supported on this device (Failed to get device capabilities)."; return EXIT_STATUS_CAP_ERR; } _dynamicSupp = EXTRACT(mcam.mng_feature_cap_mask[3], 0x9, 1); _markCqeSupp = EXTRACT(mcam.mng_feature_cap_mask[3], 0x10, 1); _markCnpSupp = EXTRACT(mcam.mng_feature_cap_mask[3], 0x11, 1); if (_ops != 1) { _errorMsg = "Please choose one operation."; return EXIT_STATUS_ERROR; } bool op_ret = true; if (_mode != MODE_NA) { op_ret = setMode(_mode); } else if (_action != ACTION_NA) { op_ret = setAction(_action); } else if (_query) { op_ret = query(); } return op_ret ? EXIT_STATUS_OK : EXIT_STATUS_ERROR; } bool CongestionUI::setMode(cong_mode_t mode) { if (!_dynamicSupp) { _errorMsg = "Dynamic overflow is not supported."; return false; } _successMsg = "Mode was set successfully."; struct reg_access_hca_mpegc_reg_ext mpegc; memset(&mpegc, 0, sizeof(mpegc)); mpegc.tx_overflow_sense = (int)mode; mpegc.field_select |= BIT_TX_SENSE; reg_access_status_t status = reg_access_mpegc(_mf, REG_ACCESS_METHOD_SET, &mpegc); if (status) { _errorMsg = string(reg_access_err2str(status)); return false; } return true; } bool CongestionUI::setAction(cong_action_t action) { _successMsg = "Action was set successfully."; struct reg_access_hca_mpegc_reg_ext mpegc; memset(&mpegc, 0, sizeof(mpegc)); mpegc.tx_lossy_overflow_oper = (int)action; mpegc.field_select |= BIT_TX_LOSSY_OPER; if (action == ACTION_MARK) { if (_markCqeSupp) { mpegc.field_select |= BIT_MARK_TX_CQE; mpegc.mark_cqe = 1; } if (_markCnpSupp) { mpegc.field_select |= BIT_MARK_TX_CNP; mpegc.mark_cnp = 1; } if (!mpegc.mark_cnp && !mpegc.mark_cqe) { _errorMsg = "Mark action is not supported!"; return false; } } reg_access_status_t status = reg_access_mpegc(_mf, REG_ACCESS_METHOD_SET, &mpegc); if (status) { _errorMsg = string(reg_access_err2str(status)); return false; } return true; } bool CongestionUI::query() { struct reg_access_hca_mpegc_reg_ext mpegc; memset(&mpegc, 0, sizeof(mpegc)); reg_access_status_t status = reg_access_mpegc(_mf, REG_ACCESS_METHOD_GET, &mpegc); if (status) { _errorMsg = string(reg_access_err2str(status)); return false; } printf("Action: %s\nMode: %s\n", getActionString((cong_action_t)mpegc.tx_lossy_overflow_oper).c_str(), getModeString((cong_mode_t)mpegc.tx_overflow_sense).c_str()); return true; } string CongestionUI::getModeString(cong_mode_t mode) { switch (mode) { case MODE_AGGRESSIVE: return "aggressive"; case MODE_DYNAMIC: return "dynamic"; default: return "N/A"; } } string CongestionUI::getActionString(cong_action_t action) { switch (action) { case ACTION_DISABLED: return "disabled"; case ACTION_DROP: return "drop"; case ACTION_MARK: return "mark"; default: return "N/A"; } } void CongestionUI::printUsage() { if (getError() != "") { cout << "-E- Usage error: " << getError() << endl; } cout << _cmdParser.GetUsage() << endl; } void CongestionUI::printError() { cout << "-E- Failed to perform the operation: " << getError() << endl; } void CongestionUI::printErrorNotSupported() { cout << "-E- Not supported device: " << getError() << endl; } void CongestionUI::printSuccess() { if (getSuccess() != "") { cout << "-I- " << getSuccess() << endl; } } mstflint-4.26.0/small_utils/mcra.c0000644000175000017500000003335214522641732017327 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /* * * mcra.c - Mellanox Configuratio Register Access tool * */ #include #include #include #include #include #include #include "mtcr.h" #include "tools_version.h" #include #define ONES32(size) ((size) ? (0xffffffff >> (32 - (size))) : 0) #define MASK32(offset, size) (ONES32(size) << (offset)) #define EXTRACT_C(source, offset, size) ((((unsigned)(source)) >> (offset)) & ONES32(size)) #define EXTRACT(src, start, len) (((len) == 32) ? (src) : EXTRACT_C(src, start, len)) #define MERGE_C(rsrc1, rsrc2, start, len) \ ((((rsrc2) << (start)) & (MASK32((start), (len)))) | ((rsrc1) & (~MASK32((start), (len))))) #define MERGE(rsrc1, rsrc2, start, len) (((len) == 32) ? (rsrc2) : MERGE_C(rsrc1, rsrc2, start, len)) #define ADB_DUMP_VAR "ADB_DUMP" #define MAX_DEV_LEN 512 void usage(int with_exit) { printf(" Mellanox Configuration Registers Access tool\n"); printf(" Usage: mstmcra [-s ] [-a ] [-v] [-h] [-c] \n"); printf(" :]|[,]> [data]\n"); printf(" If data is given, operation is write. Otherwise it is read.\n"); printf(" If a bit range is given in the address (E.G.: 0xf0014.16:8):\n"); printf(" For read - Only the requested bits are printed.\n"); printf(" For write - Read-Modify-Write. Only the requested bits are changed.\n"); printf(" If 'bytes number' is given in the address (E.G.: 0xf0014,16):\n"); printf(" For read - Will read a block (its size is the given bytes number).\n"); printf(" For write - User need to give list of dwrods to write, \n" " number of dwords should be (bytes number/4).\n\n"); printf("\nDESCRIPTION:\n\n\tReads/writes a single word from/to a device configuration register space\n\n"); printf(" -s : I2C slave address.\n"); printf(" -a : adb dump file, used for access by path.\n"); printf(" -c : clear the device's PCI semaphore.\n"); printf(" -h : Print this help message.\n"); printf(" -v : Display version info\n"); printf("\n"); printf("Environment Variables:\n"); printf(" ADB_DUMP : Holds the path to adb dump, used for access by path (can be overridden by \"-a\").\n"); if (with_exit) { exit(1); } } #define MCRA_TOOL_NAME "mcra" #define MCRA_TOOL_VERSON "1.0.0" int main(int argc, char* argv[]) { char* endp; char* dev = NULL; char device[MAX_DEV_LEN] = {0}; char* adb_dump = NULL; char* path = NULL; int rc = 0; unsigned int addr = 0, val = 0; // Temp variable for using strtoul and then check if it's greater than UINT_MAX before assigning it to addr unsigned long int parsed_addr = 0; mfile* mf; unsigned int i2c_slave = 0; int c; int read_op = 0; int bit_offs = 0; int bit_size = 32; int byte_size = 0; int read_block = 0; /* if 0 then read field according to "addr.bit:size", else read block of size "byte_size" */ int clear_semaphore = 0; const char* op_name = "cr write"; #if 0 int i, rc1; char buf[1024], *p = buf; rc1 = mdevices(buf, 1024); for (i = 0; i < rc1; i++) { printf("Found: \"%s\"\n", p); p += strlen(p) + 1; } exit(0); #endif (void)rc; // avoid warnings (we dont use it just assign) // Parse cmd line: if (argc < 2) { usage(1); } while ((c = getopt(argc, argv, "s:a:hvc")) != -1) { switch (c) { case 's': i2c_slave = strtoul(optarg, &endp, 0); if (*endp || i2c_slave == 0 || i2c_slave > 0x7f) { fprintf(stderr, "-E- Bad slave address given (%s).Expecting a non-negative number\n", optarg); exit(1); } break; case 'a': adb_dump = optarg; break; case 'v': print_version_string(MCRA_TOOL_NAME, MCRA_TOOL_VERSON); exit(0); case 'h': usage(0); exit(0); case 'c': clear_semaphore = 1; break; case '?': usage(0); exit(1); default: fprintf(stderr, "-E- Unknown flag \"%c\"\n", c); usage(0); exit(1); } } // parse non-optons argv elements if (optind >= argc) { fprintf(stderr, "-E- Missing device argument\n"); exit(1); } else { dev = argv[optind]; optind++; } if (clear_semaphore) { if ((rc = mclear_pci_semaphore(dev))) { fprintf(stderr, "-E- Failed to clear PCI semaphore for device: %s. %s\n", dev, m_err2str((MError)rc)); exit(1); } printf("-I- PCI Semaphore cleared successfully.\n"); exit(0); } if (optind >= argc) { fprintf(stderr, "-E- Missing address argument\n"); exit(1); } else { parsed_addr = strtoul(argv[optind], &endp, 0); if (parsed_addr > UINT_MAX) { fprintf(stderr, "-E- Address is out of the range\n"); exit(1); } addr = (unsigned int)parsed_addr; if (*endp != '\0' && *endp != '.' && *endp != ',') { // fprintf(stderr, "-E- Bad address given (%s). Unparsed string: \"%s\"\n", av[ap] ,endp); // exit(1); path = argv[optind]; } if (*endp == ',') { if (path) { fprintf(stderr, "-E- Can't read block with full path\n"); exit(1); } read_block = 1; byte_size = strtoul(endp + 1, &endp, 0); if (*endp != '\0' || byte_size == 0) { fprintf( stderr, "-E- Bad byte size in given address (%s). Unparsed string: \"%s\"\n", argv[optind], endp); exit(1); } } if (*endp == '.') { if (path) { fprintf(stderr, "-E- Full path with bit address notation is illegal\n"); exit(1); } bit_offs = strtoul(endp + 1, &endp, 0); if ((*endp != '\0' && *endp != ':') || bit_offs >= 32) { fprintf( stderr, "-E- Bad bit offset in given address (%s). Unparsed string: \"%s\"\n", argv[optind], endp); exit(1); } } if (*endp == ':') { if (path) { fprintf(stderr, "-E- Full path with bit size notation is illegal\n"); exit(1); } bit_size = strtoul(endp + 1, &endp, 0); if (*endp != '\0') { fprintf( stderr, "-E- Bad bit size in given address (%s). Unparsed string: \"%s\"\n", argv[optind], endp); exit(1); } if (bit_size + bit_offs > 32) { fprintf(stderr, "-E- Bad bit offset/size in given address (%s) - exceeds 32 bits\n", argv[optind]); exit(1); } } if (!path && *endp) { fprintf(stderr, "-E- Bad address given (%s). Unparsed string: \"%s\"\n", argv[optind], endp); exit(1); } // Allow the bit_size to be ommited if (bit_size + bit_offs > 32) { bit_size = 32 - bit_offs; } optind++; } if (optind >= argc) { read_op = 1; op_name = "cr read"; } else { val = strtoul(argv[optind], &endp, 0); if (*endp) { fprintf(stderr, "-E- Bad data given (%s)\n", argv[optind]); exit(1); } optind++; } if (optind < argc) { fprintf(stderr, "-E- Extra argument given (%s)\n", argv[optind]); exit(1); } if (!adb_dump) { adb_dump = getenv(ADB_DUMP_VAR); } strncpy(device, dev, MAX_DEV_LEN - 1); // Do the job mf = mopen_adv((const char*)device, (MType)(MST_DEFAULT | MST_CABLE | MST_LINKX_CHIP)); if (!mf) { perror("mopen"); return 1; } if (i2c_slave) { mset_i2c_slave(mf, (u_int8_t)i2c_slave); } if (path) { FILE* fp; char* fpath; char line[1024]; char *offset, *size; int path_found = 0; if (!adb_dump) { fprintf(stderr, "-E- Can't access by path without providing adb dump file path\n"); goto error; } fp = fopen(adb_dump, "r"); if (!fp) { fprintf(stderr, "-E- Can't open adb dump (%s) file: %s\n", adb_dump, strerror(errno)); goto error; } while (fgets(line, sizeof(line), fp) != NULL) { if (!strstr(line, path)) { continue; } fpath = strtok(line, " "); if (!fpath) { fprintf(stderr, "-E- Bad register map file format (%s), Can't find path\n", line); fclose(fp); goto error; } if (strcmp(fpath, path)) { continue; } offset = strtok(NULL, " "); size = strtok(NULL, " "); if (!offset || !size) { fprintf(stderr, "-E- Bad register map file format (%s), Can't find offset/size\n", line); fclose(fp); goto error; } path_found = 1; if (sscanf(offset, "0x%x.%d", &addr, &bit_offs) != 2) { if (sscanf(offset, "0x%x", &addr) != 1) { fprintf(stderr, "-E- Bad offset format in adb dump file, offset=%s\n", offset); fclose(fp); goto error; } bit_offs = 0; } if (sscanf(size, "%d", &bit_size) != 1) { fprintf(stderr, "-E- Bad size format in adb dump file, size=%s\n", size); fclose(fp); goto error; } break; } fclose(fp); if (!path_found) { fprintf(stderr, "-E- Can't find path (%s)\n", path); goto error; } } if (read_op) { if (read_block) { int i; int dowrd_size = ((byte_size - 1) / 4) + 1; u_int32_t* data = malloc(sizeof(u_int32_t) * dowrd_size); if (!data) { fprintf(stderr, "-E- Failed to allocate memmory for read block buffer\n"); goto error; } addr = (addr >> 2) << 2; rc = (mread4_block(mf, addr, data, dowrd_size * 4) != dowrd_size * 4); if (rc) { free(data); goto access_error; } // print the dowrds for (i = 0; i < dowrd_size; i++) { printf("0x%08x 0x%08x\n", addr + i * 4, data[i]); } free(data); } else { rc = (mread4(mf, addr, &val) != 4); if (rc) { goto access_error; } val = EXTRACT(val, bit_offs, bit_size); printf("0x%08x\n", val); } } else { if (read_block) { fprintf(stderr, "-E- Writing blocks is not supported yet\n"); exit(1); } if (bit_offs != 0 || bit_size != 32) { // read-modify-write u_int32_t tmp_val; rc = (mread4(mf, addr, &tmp_val) != 4); if (rc) { goto access_error; } val = MERGE(tmp_val, val, bit_offs, bit_size); } rc = (mwrite4(mf, addr, val) != 4); if (rc) { goto access_error; } } goto success; access_error: perror(op_name); error: mclose(mf); return 1; success: mclose(mf); return 0; } mstflint-4.26.0/small_utils/tcp.h0000644000175000017500000000655114522641732017201 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * * tcp.h - simple socket library definitions * */ #ifndef _MST_SOCKETS_H #define _MST_SOCKETS_H #ifndef __WIN__ #define ATTRIBUTE __attribute__((format(printf, 1, 2))) #else #define ATTRIBUTE #endif typedef enum proto_type { PT_TCP = 0, PT_UDP, } proto_type_t; /* ** logset - call it w/ non-zero to see output via log. ** Otherwise all log calls will be ignored */ void logset(const int ena); /* ** plog - debug printouts (like printf). Set 1 via logset to see output */ int plog(const char* fmt, ...) ATTRIBUTE; /* ** open_cli_connection - open client TCP/UDP connection and return socket fd */ int open_cli_connection(const char* host, const int port, proto_type_t proto); /* ** open_serv_connection - open server TCP connection and return socket fd */ int open_serv_connection(const int port); /* ** readn - read n bytes from the socket "fd" ** ** Attempt to read "nbytes" bytes from socket "fd" into "ptr". ** Returns number of bytes read, or -1 if an error occurs. ** Will read less than the specified count *only* if the peer sends ** EOF */ /* int readn(int fd, void *vptr, int nbytes, proto_type_t proto); */ /* ** reads - reads string (till \0) from the socket "fd" */ int reads(int fd, char* ptr, int maxlen, proto_type_t proto); /* ** readnl - reads till till newline from the socket "fd" */ /* int readnl(int fd, char *ptr, int maxlen, proto_type_t proto); */ /* ** writen - write n bytes to the socket "fd" ** ** Attempt to write "nbytes" bytes to socket "fd" from "ptr". ** Returns number of bytes written, or -1 if an error occurs. ** Return value will always be either -1 or "nbytes" */ int writen(int fd, void* vptr, int nbytes, proto_type_t proto); /* ** writes - write string (null ternminated buffer) to the socket "fd" */ int writes(int fd, char* ptr, proto_type_t proto); /* ** writenl - write newline ternminated buffer to the socket "fd" */ /* int writenl(int fd, char *ptr, proto_type_t proto); */ #endif mstflint-4.26.0/small_utils/tcp.c0000644000175000017500000003330514522641732017171 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * * tcp.c - simple socket library routines * */ #ifndef INSIDE_MTCR #define INSIDE_MTCR #include "tcp.h" #else // HACK: We redefine it here also because when including from mtcr.c tcp.h is not included typedef enum proto_type { PT_TCP = 0, PT_UDP, } proto_type_t; #endif #include #include #include #include #include #include #include #include #define UDP_RECV_FLAGS 0 #ifndef __WIN__ #include #include #include #include #include #include #include #include #include #define SOCKET_BACKLOG 1 #undef COMP_CLOSE #define COMP_CLOSE close #define TCP_COMP_READ(s, b, l) read(s, b, l) #define TCP_COMP_WRITE(s, b, l) write(s, b, l) #define UDP_COMP_READ(s, b, l) recv(s, b, l, UDP_RECV_FLAGS) #define UDP_COMP_WRITE(s, b, l) send(s, b, l, UDP_RECV_FLAGS) #define GET_CHILD_PID(child_pid) child_pid = fork() #define EXEC_SIGNAL() \ if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) \ { \ return -1; \ } #define EXEC_FOR() for (;;) #define RET_ZERO_IN_WIN() #define WIN_INIT() #else #include #include #define socklen_t int #define SOCKET_BACKLOG 5 #ifdef COMP_CLOSE #undef COMP_CLOSE #undef COMP_READ #undef COMP_WRITE #endif #define COMP_CLOSE closesocket #define TCP_COMP_READ(s, b, l) recv(s, b, l, 0) #define TCP_COMP_WRITE(s, b, l) send(s, b, l, 0) #define UDP_COMP_READ(s, b, l) recv(s, b, l, UDP_RECV_FLAGS) #define UDP_COMP_WRITE(s, b, l) send(s, b, l, UDP_RECV_FLAGS) #define GET_CHILD_PID(child_pid) child_pid = 0 #define EXEC_SIGNAL() #define EXEC_FOR() #define RET_ZERO_IN_WIN() return 0 #define WIN_INIT() \ { \ int rc; \ WSADATA wsaData; \ rc = WSAStartup(MAKEWORD(2, 2), &wsaData); \ if (rc != 0) \ { \ return -1; \ } \ } #endif #undef COMP_READ #define COMP_ACCESS(s, b, l, p, f1, f2) (p == PT_UDP) ? f1(s, b, l) : f2(s, b, l); #define COMP_READ(s, b, l, p) COMP_ACCESS(s, b, l, p, UDP_COMP_READ, TCP_COMP_READ) #define COMP_WRITE(s, b, l, p) COMP_ACCESS(s, b, l, p, UDP_COMP_WRITE, TCP_COMP_WRITE) #define EXEC_PROTO_FUNC(proto, tcp_func, udp_func, args) \ { \ if (proto == PT_UDP) \ { \ return udp_func args; \ } \ return tcp_func args; \ } /* ----------------------------------------------------- */ /* ------------------------------ Log all socket traffic */ /* ----------------------------------------------------- */ /* ////////////////////////////////////////////////////////////////////// */ static int log_ena = 0; INSIDE_MTCR void logset(const int ena) { log_ena = ena; } INSIDE_MTCR int plog(const char* fmt, ...) { va_list ap; int rc = 0; if (log_ena) { va_start(ap, fmt); rc = vprintf(fmt, ap); va_end(ap); } return rc; } /* --------------------------------------------------- */ /* ------------------------------ Base socket routines */ /* --------------------------------------------------- */ /* ////////////////////////////////////////////////////////////////////// */ /* ** readn - read n bytes from the socket "fd" ** ** Attempt to read "nbytes" bytes from socket "fd" into "ptr". ** Returns number of bytes read, or -1 if an error occurs. ** Will read less than the specified count *only* if the peer sends ** EOF */ /* INSIDE_MTCR int readn(int fd, void *vptr, int nbytes, proto_type_t proto) { int nleft, nread; char *ptr = (char *)vptr; nleft = nbytes; while (nleft > 0) { do { nread = COMP_READ(fd, ptr, nleft, proto); } while (nread < 0 && errno == EINTR); if (nread < 0) return -1; // error, return -1 else if (nread == 0) break; // EOF nleft -= nread; ptr += nread; } return(nbytes - nleft); // return >= 0 } */ INSIDE_MTCR int tcp_reads(int fd, char* ptr, int maxlen) { int n, done = 0, rc; char c; for (n = 0; (n < maxlen - 1) && !done; n++) { do { rc = COMP_READ(fd, &c, 1, PT_TCP); } while (rc < 0 && errno == EINTR); switch (rc) { case 1: *ptr++ = c; if (c == '\0') { done = 1; } break; case 0: done = 1; break; default: return -1; /* error */ } } *ptr = '\0'; return n - 1; } INSIDE_MTCR int udp_reads(int fd, char* ptr, int maxlen) { int rc = 0; char* tmp_ptr = ptr; do { rc = COMP_READ(fd, tmp_ptr, maxlen - 1, PT_UDP); } while (rc < 0 && errno == EINTR); if (rc > 0) { tmp_ptr[rc] = '\0'; } else { *tmp_ptr = '\0'; } return rc - 1; } /* ////////////////////////////////////////////////////////////////////// */ /* ** reads - reads string (till \0) from the socket "fd" */ INSIDE_MTCR int reads(int fd, char* ptr, int maxlen, proto_type_t proto) { if (proto == PT_UDP) { return udp_reads(fd, ptr, maxlen); } return tcp_reads(fd, ptr, maxlen); } /* ////////////////////////////////////////////////////////////////////// */ /* ** readnl - reads till till newline from the socket "fd" */ /* INSIDE_MTCR int readnl(int fd, char *ptr, int maxlen, proto_type_t proto) { int n, done=0, rc; char c; for (n = 0; n <= maxlen-1 && !done; n++) { do { rc = COMP_READ(fd, &c, 1, proto); } while (rc < 0 && errno == EINTR); switch (rc) { case 1: * ptr++ = c; if (c == '\n') { * ptr = '\0'; done=1; } break; case 0: done=1; break; default: return -1; // error } } return n-1; } */ /* ////////////////////////////////////////////////////////////////////// */ /* ** writen - write n bytes to the socket "fd" ** ** Attempt to write "nbytes" bytes to socket "fd" from "ptr". ** Returns number of bytes written, or -1 if an error occurs. ** Return value will always be either -1 or "nbytes" */ INSIDE_MTCR int writen(int fd, void* vptr, int nbytes, proto_type_t proto) { int nleft, nwritten; char* ptr = (char*)vptr; nleft = nbytes; while (nleft > 0) { do { nwritten = COMP_WRITE(fd, ptr, nleft, proto); } while (nwritten < 0 && errno == EINTR); if (nwritten < 0) { return -1; } nleft -= nwritten; ptr += nwritten; } return (nbytes - nleft); } /* ////////////////////////////////////////////////////////////////////// */ /* ** writes - write string (null ternminated buffer) to the socket "fd" */ INSIDE_MTCR int writes(int fd, char* ptr, proto_type_t proto) { return writen(fd, ptr, strlen(ptr) + 1, proto); } /* ////////////////////////////////////////////////////////////////////// */ /* ** writenl - write newline ternminated buffer to the socket "fd" */ /* INSIDE_MTCR int writenl(int fd, char *ptr, proto_type_t proto) { char *last = strchr(ptr, '\n'); if (last) return writen(fd, ptr, last - ptr + 1, proto); return 0; } */ /* ////////////////////////////////////////////////////////////////////// */ /* ** open_cli_connection - open client TCP connection and return socket fd */ INSIDE_MTCR int open_cli_connection(const char* host, const int port, proto_type_t proto) { int SockFD; struct sockaddr_in serv_addr; struct hostent* hent; int needs_bind = 0; int type = SOCK_STREAM, domain = AF_INET; if (proto == PT_UDP) { needs_bind = 1; type = SOCK_DGRAM; domain = PF_INET; } plog("open_connection(%s, %d)\n", host, port); // Initialize Winsock WIN_INIT(); /* Try to determinate server IP address */ if ((hent = gethostbyname(host)) == NULL) { errno = EINVAL; return -1; } /* * Fill in the structure "serv_addr" with the address of the * server that we want to connect with. */ memset((char*)&serv_addr, 0, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; memcpy(&serv_addr.sin_addr, (*(hent->h_addr_list)), sizeof(struct in_addr)); serv_addr.sin_port = (short)htons((short)port); /* Open a TCP socket (an Internet stream socket). */ if ((SockFD = socket(domain, type, 0)) < 0) { return -1; } if (needs_bind) { struct sockaddr_in my_addr; /* Bind our local address so that the client can send to us. */ memset((char*)&my_addr, 0, sizeof(my_addr)); my_addr.sin_family = AF_INET; my_addr.sin_addr.s_addr = htonl(INADDR_ANY); my_addr.sin_port = (short)(htons((short)port)); /* Bind our local address so that the client can send to us. */ if (bind(SockFD, (const struct sockaddr*)&my_addr, (socklen_t)sizeof(my_addr)) < 0) { COMP_CLOSE(SockFD); perror("bind failed\n"); return -1; } } /* * Connect to the server. */ if (connect(SockFD, (struct sockaddr*)&serv_addr, sizeof(serv_addr)) < 0) { COMP_CLOSE(SockFD); return -1; } /* All OK */ return SockFD; } /* ////////////////////////////////////////////////////////////////////// */ /* ** open_serv_connection - open server TCP connection and return socket fd */ INSIDE_MTCR int open_serv_connection(const int port) { struct hostent* hent; struct sockaddr_in serv_addr; struct sockaddr_in cli_inet_addr; int SockFD, newsockfd; int clilen = sizeof(cli_inet_addr); int childpid; EXEC_SIGNAL() if ((SockFD = socket(AF_INET, SOCK_STREAM, 0)) < 0) { return -1; } /* Bind our local address so that the client can send to us. */ memset((char*)&serv_addr, 0, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_addr.s_addr = htonl(INADDR_ANY); serv_addr.sin_port = (short)(htons((short)port)); if (bind(SockFD, (const struct sockaddr*)&serv_addr, (socklen_t)sizeof(serv_addr)) < 0) { #ifdef __WIN__ errno = WSAGetLastError(); #endif COMP_CLOSE(SockFD); return -1; } /* Get ready to accept connection */ if (listen(SockFD, SOCKET_BACKLOG) < 0) { COMP_CLOSE(SockFD); return -1; } /* Accept connection */ EXEC_FOR() { plog("Waiting for connection on port %d\n", port); while ((newsockfd = accept(SockFD, (struct sockaddr*)&cli_inet_addr, (socklen_t*)&clilen)) < 0) { if (errno != EINTR) { COMP_CLOSE(SockFD); return -1; } } GET_CHILD_PID(childpid); if (childpid < 0) { COMP_CLOSE(newsockfd); COMP_CLOSE(SockFD); return -1; } if (childpid) { /* We are parent */ COMP_CLOSE(newsockfd); RET_ZERO_IN_WIN(); /* ... and try accept next connection */ } else { /* We are child */ COMP_CLOSE(SockFD); /* Determine the client host name */ hent = gethostbyaddr((char*)&cli_inet_addr.sin_addr, sizeof(cli_inet_addr.sin_addr), AF_INET); plog("Accepted connection from host \"%s\" ", hent ? hent->h_name : "????"); /* Determine the client host address */ plog(" (%s)", inet_ntoa(cli_inet_addr.sin_addr)); plog(", port %d\n", port); return newsockfd; } } } mstflint-4.26.0/small_utils/mlxfwresetlib/0000755000175000017500000000000014522641740021121 5ustar tzafrirctzafrircmstflint-4.26.0/small_utils/mlxfwresetlib/pci_device.py0000644000175000017500000000716614522641732023600 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- """ * $Id : pci_device.py 2017-11-28 * $Authors : Roei Yitzhak (roei@mellanox.com) """ from __future__ import print_function from mtcr import MstDevice from .mcra import Mcra # TODO fix it latter - need to import the function from mlxfwreset.py import sys import os mlxfwreset_dir = os.path.dirname(os.path.dirname(__file__)) sys.path.append(mlxfwreset_dir) from dev_mgt import DevMgt from regaccess import RegAccess class PciDevice(object): def __init__(self, aliases, domain, bus, device, fn): ''' :param aliases: windows 'mt4115_pciconf0' Linux '/dev/mst/mt4119_pciconf1' , '0e:00.0' , '0000:0e:00.0' FreeBSD 'pci0:2:0:0' ''' assert isinstance(domain, int) and isinstance(bus, int) and isinstance(device, int) and isinstance(fn, int) assert isinstance(aliases, list) self.aliases = aliases self.domain = domain self.bus = bus self.device = device self.fn = fn def __str__(self): return '{0} pci_address={1:04x}:{2:02x}:{3:02x}.{4:01x}'.format([alias for alias in self.aliases], self.domain, self.bus, self.device, self.fn) def has_alias(self, alias): return alias in self.aliases def get_alias(self): return self.aliases[0] def get_cfg_did(self): DEVID_ADDR = [0xf0014, 0, 16] # Adresses [Base offset length] mcra = Mcra() return mcra.read(self.aliases[0], DEVID_ADDR[0], DEVID_ADDR[1], DEVID_ADDR[2]) # return get_cfg_did(self.aliases[0]) # PCI configuration DID def is_livefish_mode(self): mst_device = MstDevice(self.aliases[0]) try: device_mgt = DevMgt(mst_device) res = device_mgt.isLivefishMode() == 1 finally: mst_device.close() return res def get_manufacturing_base_mac(self): # Be-careful : The logic won't work for all devices mst_device = MstDevice(self.aliases[0]) try: reg_access = RegAccess(mst_device) manufacturing_base_mac = reg_access.getManufacturingBaseMac() finally: mst_device.close() return manufacturing_base_mac mstflint-4.26.0/small_utils/mlxfwresetlib/mlxfwreset_mlnxdriver.py0000644000175000017500000006134314522641732026155 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- """ * $Id : mlnxdriver.py 2017-11-28 * $Authors : Ahmad Soboh (ahmads@mellanox.com) """ from __future__ import print_function import abc import os import platform from . import mlxfwreset_utils from .mlxfwreset_utils import cmdExec, is_in_internal_host from functools import reduce from time import sleep class DriverNotExist(Exception): pass class DriverDisabled(Exception): pass class DriverUnknownMode(Exception): pass ###################################################################### # Description: Driver Class , use factory to get instance # OS Support : Linux/Windows. ###################################################################### class MlnxDriver(object): __metaclass__ = abc.ABCMeta """ Abstract driver Class that provides a simple start stop status methods """ # Driver status constants DRIVER_IGNORE = 0 DRIVER_LOADED = 1 def __init__(self, logger, driverStatus): self.logger = logger self.driverStatus = driverStatus def driverStart(self): raise NotImplementedError("driverStart() is not implemented") def driverStop(self): raise NotImplementedError("driverStop() is not implemented") def getDriverStatus(self): return self.driverStatus class LinuxRshimUserSpaceDriver: # The rshim user-space driver exists from BL2 (and up) # To start/stop all the rshim user-space drivers manually you can use "systemctl start/stop rshim" # In the future this driver might be started/stopped automatically (???) def _scan_rshim_drivers(self): result = [] DRIVERS_PATH = "/dev/" rshim_drivers_names = [dir_name for dir_name in os.listdir(DRIVERS_PATH) if dir_name.startswith('rshim')] for rshim_driver_name in rshim_drivers_names: rshim_pci_device_name, rshim_drop_mode = None, None rshim_misc_file = DRIVERS_PATH + rshim_driver_name + "/misc" with open(rshim_misc_file) as f: for line in f: if "DEV_NAME" in line: rshim_pci_device_name = line.split()[1] if "DROP_MODE" in line: # Exist only in BL2 rshim_drop_mode = int(line.split()[1][0]) if rshim_pci_device_name is not None and rshim_drop_mode is not None: result.append((rshim_misc_file, rshim_pci_device_name, rshim_drop_mode)) return result def __init__(self, logger, user_pci_device_name): self.logger = logger for rshim_misc_file, rshim_pci_device_name, rshim_drop_mode in self._scan_rshim_drivers(): if user_pci_device_name[5:11] in rshim_pci_device_name and rshim_drop_mode == 0: self.rshim_misc_file = rshim_misc_file self.pci_device_name = rshim_pci_device_name[5:] break else: raise DriverNotExist("There is no running user-space rshim driver") def _update_drop_mode(self, action): if self.rshim_misc_file: cmd = 'echo "DROP_MODE {0}" > {1}'.format(1 if action == 'stop' else 0, self.rshim_misc_file) self.logger.info('{0}'.format(cmd)) rc, _, _ = cmdExec(cmd) if rc != 0: raise RuntimeError('Failed to {0} user-space rshim driver ({1})'.format(action, self.rshim_misc_file)) def stop(self): self._update_drop_mode('stop') def start(self): self._update_drop_mode('start') class MlnxDriverLinux(MlnxDriver): # blocklist_file_path = '/etc/modprobe.d/mlxfwreset.conf' PCI_DRIVERS_PATH = '/sys/bus/pci/drivers' mlnx_drivers = ['mlx5_core', 'rshim_pcie', 'nvme'] def __init__(self, devices, logger, skip): # devices : 1 physical function per card self.drivers_dbdf = [] # A List of tuples (,) # Check if opensm is running in the background (rc, _, _) = cmdExec("pgrep opensm") if rc == 0: raise RuntimeError('Please stop "opensm" manually and resume operation!') if not skip: if not os.path.exists(MlnxDriverLinux.PCI_DRIVERS_PATH): raise RuntimeError("path {0} doesn't exist!".format(MlnxDriverLinux.PCI_DRIVERS_PATH)) # Handle rshim user-space driver ################################# self.rshim_driver = None if len(devices) == 1: # BL devices has only one PCI device name (There is no BL socket-direct device) pci_device_name = mlxfwreset_utils.getDevDBDF(devices[0], logger) # domain:bus:device.fn try: self.rshim_driver = LinuxRshimUserSpaceDriver(logger, pci_device_name) except DriverNotExist: pass for device in devices: dbdf = mlxfwreset_utils.getDevDBDF(device, logger) dbd = dbdf.split('.')[0] # Reset virtual functions (reset pf1 is speculative - only if exists) for pf_num in range(2): num_vfs_file_path = '/sys/bus/pci/devices/{0}.{1}/sriov_numvfs'.format(dbd, pf_num) if os.path.exists(num_vfs_file_path): cmd = "echo 0 > {0} ".format(num_vfs_file_path) logger.info('{0}'.format(cmd)) (rc, out, _) = cmdExec(cmd) if rc != 0: logger.info('Reset virtual functions failed : {0}'.format(out)) # Verify the reset of the VFs with open(num_vfs_file_path) as file: if int(file.read()) != 0: raise RuntimeError('Reset virtual functions failed! Please reset virtual functions manually and resume operation') # insert all the instances of the driver that need unbind/bind cmd = "find {0} | grep {1}".format(MlnxDriverLinux.PCI_DRIVERS_PATH, dbd) logger.info('{0}'.format(cmd)) (_, out, _) = cmdExec(cmd) for line in out.split('\n')[:-1]: line = line.split('/') driver_name, dbdf = line[-2], line[-1] if self.rshim_driver is not None and self.rshim_driver.pci_device_name == dbdf and driver_name in ["vfio-pci", "uio_pci_generic"]: logger.info("skip on vfio/uio driver (rshim user-space driver will stop it)") continue if driver_name not in MlnxDriverLinux.mlnx_drivers: raise RuntimeError("mlxfwreset doesn't support 3rd party driver ({0})!\nPlease, stop the driver manually and resume operation with --skip_driver".format(driver_name)) self.drivers_dbdf.append((dbdf, driver_name)) self.drivers_dbdf.sort() logger.info('{0}'.format(self.drivers_dbdf)) driverStatus = MlnxDriver.DRIVER_IGNORE if skip or not self.drivers_dbdf else MlnxDriver.DRIVER_LOADED super(MlnxDriverLinux, self).__init__(logger, driverStatus) def driverStart(self): self.logger.info('MlnxDriverLinux driverStart()') driver_err, rshim_err = None, None # * Start NIC driver for dbdf, driver_name in self.drivers_dbdf: driver_path = '{0}/{1}'.format(MlnxDriverLinux.PCI_DRIVERS_PATH, driver_name) assert os.path.exists(driver_path) # In case of hotplug the OS *might* start the driver automatically as part of the rescan/enumeration stage. # On kernel XXXX we saw that the driver file (sysfs) doesn't exist 'on time' and as a result the tool will # start the driver even though the OS already triggered the driver start. In this case the tool gets error # from the CLI but we don't want the tool to exit with error. For that reason we added the retry mechanism MAX_NUM_OF_TRIES = 10 try_num = 1 while try_num <= MAX_NUM_OF_TRIES: if os.path.exists('/sys/bus/pci/devices/{0}/driver'.format(dbdf)): # driver is up driver_err = False break else: # driver is down cmd = 'echo "{0}" > {1}/bind'.format(dbdf, driver_path) self.logger.info('{0}'.format(cmd)) (rc, _, _) = cmdExec(cmd) if rc == 0: # bind succeeded driver_err = False break else: # bind failed try_num += 1 driver_err = True sleep(0.1) # * Configure the driver in BlueField's internal host (ARM) if is_in_internal_host() and driver_err is False: # This code is WA. FR will be opened in rel1 cmd = "mlnx_bf_configure" # 2022 to address this issue (RM #2831210) rc, _, _ = cmdExec(cmd) if rc != 0: print("-W- Failed to configure the driver") # * Start RSHIM driver (BlueField) try: if self.rshim_driver: self.rshim_driver.start() except Exception as err: rshim_err = err # * Handle Errors (Best effort to try to start both drivers before indicating on error) if driver_err: raise RuntimeError("Failed to start driver! please start driver manually") if rshim_err: raise rshim_err def driverStop(self): self.logger.info('MlnxDriverLinux driverStop()') if self.rshim_driver: self.rshim_driver.stop() for dbdf, driver_name in self.drivers_dbdf: driver_path = '{0}/{1}'.format(MlnxDriverLinux.PCI_DRIVERS_PATH, driver_name) assert os.path.exists(driver_path) cmd = 'echo "{0}" > {1}/unbind'.format(dbdf, driver_path) self.logger.info('{0}'.format(cmd)) (rc, _, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to stop driver! please stop driver manually and resume Operation") class MlnxDriverFreeBSD(MlnxDriver): def __init__(self, logger, skip): logger.info('MlnxDriverFreeBSD object created') if skip: self.driverStatus = MlnxDriver.DRIVER_IGNORE return self._knownModules = [("mlx5en", False), ("mlx5ib", False), ("mlx4ib", False), ("mlxen", False), ("mlx5", False)] # check whats loaded for i in range(0, len(self._knownModules)): cmd = "kldstat -n %s" % (self._knownModules[i][0]) (rc, _, _) = cmdExec(cmd) if rc == 0: self._knownModules[i] = (self._knownModules[i][0], True) super(MlnxDriverFreeBSD, self).__init__(logger, self.getDriverStatusAux()) def driverStart(self): self.logger.info('MlnxDriverFreeBSD driverStart()') for moduleName, isPresent in self._knownModules: if isPresent: cmd = "kldload %s" % moduleName (rc, stdout, stderr) = cmdExec(cmd) if rc and not ("module already loaded" in stderr): raise RuntimeError("Failed to start driver! Please start driver manually") def driverStop(self): self.logger.info('MlnxDriverFreeBSD driverStop()') for moduleName, isPresent in self._knownModules: if isPresent: cmd = "kldunload %s" % moduleName (rc, stdout, stderr) = cmdExec(cmd) if rc and not ("can't find file" in stderr): raise RuntimeError("Failed to stop driver! Please stop driver manually and resume Operation") def getDriverStatusAux(self): cmd = "ls -l /boot/kernel/ | grep mlx -c" (rc, stdout, _) = cmdExec(cmd) if rc != 0: raise DriverUnknownMode("Can not run the command: %s" % cmd) # the voodoo below checks if we had at least one kernel object loaded return (MlnxDriver.DRIVER_IGNORE, MlnxDriver.DRIVER_LOADED)[reduce(lambda x, y: x or y, map(lambda x: x[1], self._knownModules))] class WindowsRshimDriver: """ Rshim-driver is the "SOC management driver" (the driver that communicates with the ARMs) in a SmartNIC device This driver is located in the 'System devices' (and not under the 'Network adapters') We use the pnp-device utility to find/start/stop the management driver """ def _powershell(self, cmd): powershell_cmd = 'powershell.exe -c "{0}"'.format(cmd) self.logger.info("{0}".format(powershell_cmd)) result = cmdExec(powershell_cmd) self.logger.info("rc={0}\nstdout={1}\nstderr={2}".format(*result)) return result def _get_pnp_device_name_for_network_adapter(self, network_adapter_name): """ The method will convert network_adapter name e.g "Ethernet 8" to pnp_device name (instance-id) e.g "PCI\\VEN_15B3&DEV_A2D6&SUBSYS_004815B3&REV_00\4&2E75E12A&0&0110" """ cmd = "(Get-NetAdapterHardwareInfo -name '{0}').InterfaceDescription".format(network_adapter_name) rc, output, _ = self._powershell(cmd) if rc != 0: raise RuntimeError("Failed to execute {0}".format(cmd)) interface_description = output.strip() cmd = "(Get-PnpDevice -FriendlyName '{0}').InstanceId".format(interface_description) # We use the InterfaceDescription from the previous command rc, output, _ = self._powershell(cmd) # as FriendlyName in the current command if rc != 0: raise RuntimeError("Failed to execute {0}".format(cmd)) pnp_device_name = output.strip() self.logger.info("network_adapter_name : {} ; pnp_device_name : {}".format(network_adapter_name, pnp_device_name)) return pnp_device_name def __init__(self, logger, network_adapters, network_adapter_pci_device_id): self.logger = logger # * Network-adapter to SOC-management PCI-device-id mapping table PCI_DEVICE_ID_MAPPING_TABLE = {0xA2D2: 0xC2D2, 0xA2D6: 0xC2D3, 0xA2D9: 0xC2D4, 0xA2DC: 0xC2D5} # * Check if it's a Smart NIC. If yes, extract pci-device-id of the management device if network_adapter_pci_device_id in PCI_DEVICE_ID_MAPPING_TABLE: soc_management_pci_device_id = PCI_DEVICE_ID_MAPPING_TABLE[network_adapter_pci_device_id] else: self.logger.info("Not a SmartNIC device") raise DriverNotExist("Not a SmartNic device") # * Assertion if len(network_adapters) == 0: raise DriverNotExist("There is no management driver when there are no network adapters") # * Check if "Get-PnpDevice" command exists #! The "Get-PnpDevice" is not supported in "Windows server 2012" #! and "Windows server 2012 R2" so we can't support Bluefield in #! these OS versions powershell_cmd = 'powershell.exe -c "Get-PnpDevice > $null"' result = cmdExec(powershell_cmd) if result[0] != 0: self.logger.debug("Get-PnpDevice is not supported in this OS version") raise RuntimeError("Get-PnpDevice is not supported in this OS version") # * Create a network-adapter as pnp device network_adapter_as_pnp_device = self._get_pnp_device_name_for_network_adapter(network_adapters[0]) self.logger.debug("Network adapter as pnp device: {0}".format(network_adapter_as_pnp_device)) # * Extract the "common part" from the pnp-device # The "common part" is common for both the network-adapter and SOC management # Example: # pnp-device : PCI\VEN_15B3&DEV_A2D6&SUBSYS_004815B3&REV_00\4&2E75E12A&0&0110 # common part : 2E75E12A pnp_device_common_part = network_adapter_as_pnp_device.split("&")[4] self.logger.debug("pnp_device_common_part = {0}".format(pnp_device_common_part)) # * Set the name of the management driver cmd = "(Get-PnpDevice -InstanceId '*VEN_15B3*DEV_{0:x}*{1}*').InstanceId".format(soc_management_pci_device_id, pnp_device_common_part) rc, output, _ = self._powershell(cmd) if rc != 0: raise RuntimeError("Faild to execute {0}".format(cmd)) self.driver_name = output.strip() self.logger.info("rshim-driver name : {0}".format(self.driver_name)) # * Check if the management driver is enabled cmd = "(Get-PnpDevice -InstanceId '{0}').Status".format(self.driver_name) rc, output, _ = self._powershell(cmd) if rc == 0 and output.strip() == 'OK': self.logger.debug("rshim-driver name : {0} is enabled".format(self.driver_name)) else: self.logger.debug("rshim-driver name : {0} is disabled".format(self.driver_name)) raise DriverDisabled("rshim-driver is disabled") def start(self): cmd = "Enable-PnpDevice -InstanceId '{0}' -confirm:$false".format(self.driver_name) rc, _, _ = self._powershell(cmd) if rc != 0: raise RuntimeError("Failed to start rshim-driver") def stop(self): cmd = "Disable-PnpDevice -InstanceId '{0}' -confirm:$false".format(self.driver_name) rc, _, _ = self._powershell(cmd) if rc != 0: raise RuntimeError("Failed to stop rshim-driver") class MlnxDriverWindows(MlnxDriver): def get_device_drivers(self, logger, seg_bus_device_list): def read_5_lines(txt): 'Generator to read 5 non-empty lines' lines = [line.strip() for line in txt.split('\n') if line.strip()] # remove empty lines and convert to list assert len(lines) % 5 == 0 lines = iter(lines) try: while True: yield (next(lines), next(lines), next(lines), next(lines), next(lines)) except StopIteration: return cmd = 'powershell.exe -c "Get-NetAdapterHardwareInfo | Format-List -Property Segment,Bus,Device,Name,InterfaceDescription' logger.debug(cmd) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to get Adapters Hardware Information") logger.debug(out) drivers_names = [] for seg_line, bus_line, device_line, name_line, description_line in read_5_lines(out): seg_num_ii = int(seg_line.split(':')[1]) bus_num_ii = int(bus_line.split(':')[1]) device_num_ii = int(device_line.split(':')[1]) seg_bus_device_list_ii = (seg_num_ii, bus_num_ii, device_num_ii) name_ii = name_line.split(':')[1].strip() # Filter only relevant drivers # 1. Ignore drivers that are not relevant to required PCI address # 2. Ignore the management driver ('rshim bus' in the 'Network Adapters' section) if seg_bus_device_list_ii in seg_bus_device_list and 'Management' not in description_line: drivers_names.append(name_ii) return drivers_names def _is_powershell_exists(self): rc, _, _ = cmdExec('where powershell.exe') return rc == 0 def __init__(self, logger, skip, devices, pci_device_id): logger.info('MlnxDriverWindows object created') if skip: super(MlnxDriverWindows, self).__init__(logger, MlnxDriver.DRIVER_IGNORE) return # Check if Powershell installed if self._is_powershell_exists() is False: raise RuntimeError("PowerShell.exe is not installed. Please stop the driver manually and re-run the tool with --skip_driver ") # Find seg:bus:device of the device(s) seg_bus_device_list = [] for device in devices: seg_bus_device = mlxfwreset_utils.getDevDBDF(device, logger).split('.')[0] seg_num = int(seg_bus_device.split(':')[0], 16) bus_num = int(seg_bus_device.split(':')[1], 16) device_num = int(seg_bus_device.split(':')[2], 16) seg_bus_device_list.append((seg_num, bus_num, device_num)) # Find the relevant network adapters for the seg:bus:device targetedAdaptersTemp = self.get_device_drivers(logger, seg_bus_device_list) logger.debug(targetedAdaptersTemp) # Create Rshim-driver (for Bluefield devices) logger.info("Create Rshim driver") try: self.rshim_driver = WindowsRshimDriver(logger, targetedAdaptersTemp, pci_device_id) except (DriverNotExist, DriverDisabled): self.rshim_driver = None # Filter the network adapters that are disabled self.targetedAdapters = [] for targetedAdapter in targetedAdaptersTemp: cmd = 'powershell.exe -c "Get-NetAdapter \'%s\' | Format-List -Property Status' % targetedAdapter logger.debug(cmd) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to get Adapter '%s' Information" % targetedAdapter) if ("Disabled" not in out): self.targetedAdapters.append(targetedAdapter) logger.debug(self.targetedAdapters) drivers_exist = len(self.targetedAdapters) > 0 or self.rshim_driver driverStatus = MlnxDriver.DRIVER_LOADED if drivers_exist else MlnxDriver.DRIVER_IGNORE super(MlnxDriverWindows, self).__init__(logger, driverStatus) def driverStart(self): self.logger.info('MlnxDriverWindows driverStart()') driver_err, rshim_err = None, None try: # rshim-driver must be enabled before network adapaters if self.rshim_driver: self.rshim_driver.start() except Exception as err: rshim_err = err for targetedAdapter in self.targetedAdapters: cmd = "powershell.exe -c Enable-NetAdapter '%s' " % targetedAdapter self.logger.info(cmd) (rc, _, _) = cmdExec(cmd) if rc != 0: driver_err = True # Error (Best effort to try to start both drivers before indicating on error) if driver_err: raise RuntimeError("Failed to start driver! please start driver manually") if rshim_err: raise rshim_err def driverStop(self): self.logger.info('MlnxDriverWindows driverStop()') for targetedAdapter in self.targetedAdapters: cmd = "powershell.exe -c Disable-NetAdapter '%s' -confirm:$false" % targetedAdapter self.logger.info(cmd) (rc, stdout, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to stop driver! Please stop driver manually and resume Operation") if self.rshim_driver: # must be disabled after network adapaters self.rshim_driver.stop() # reason: The manangement network adapter is a dependency of the SoC management i/f class MlnxDriverFactory(object): def getDriverObj(self, logger, skip, devices, pci_device_id): operatingSystem = platform.system() if operatingSystem == "Linux": return MlnxDriverLinux(devices, logger, skip) elif operatingSystem == "FreeBSD": return MlnxDriverFreeBSD(logger, skip) elif operatingSystem == "Windows": return MlnxDriverWindows(logger, skip, devices, pci_device_id) else: raise RuntimeError("Unsupported OS: %s" % operatingSystem) mstflint-4.26.0/small_utils/mlxfwresetlib/mlxfwreset_status_checker.py0000755000175000017500000000737314522641732027000 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- """ * $Id : fwreset_status_checker.py 2017-11-28 * $Authors : Ahmad Soboh (ahmads@mellanox.com) """ ###################################################################### # Description: FirmwareResetStatusChecker # OS Support : Linux/Windows. ###################################################################### class FirmwareResetStatusChecker(object): FirmwareUptimeStatusInit = 0x0 FirmwareUptimeStatusBeforeDone = 0x1 FirmwareUptimeStatusAfterDone = 0x2 FirmwareUptimeStatusError = 0x3 FirmwareResetStatusDone = 0x0 FirmwareResetStatusFailed = 0x1 FirmwareResetStatusUnknown = 0x2 def __init__(self, regAccessObj): self._RegAccessObj = regAccessObj self._UptimeBeforeReset = 0x0 self._UptimeBeforeStatus = FirmwareResetStatusChecker.FirmwareUptimeStatusInit self._UptimeAfterReset = 0x0 self._UptimeAfterStatus = FirmwareResetStatusChecker.FirmwareUptimeStatusInit def UpdateUptimeBeforeReset(self): try: self._UptimeBeforeReset = self._RegAccessObj.getFWUptime() self._UptimeBeforeStatus = FirmwareResetStatusChecker.FirmwareUptimeStatusBeforeDone except Exception as e: self._UptimeBeforeStatus = FirmwareResetStatusChecker.FirmwareUptimeStatusError def UpdateUptimeAfterReset(self): try: self._UptimeAfterReset = self._RegAccessObj.getFWUptime() self._UptimeAfterStatus = FirmwareResetStatusChecker.FirmwareUptimeStatusAfterDone except Exception as e: self._UptimeAfterStatus = FirmwareResetStatusChecker.FirmwareUptimeStatusError def GetStatus(self): if self._UptimeBeforeStatus == FirmwareResetStatusChecker.FirmwareUptimeStatusBeforeDone and\ self._UptimeAfterStatus == FirmwareResetStatusChecker.FirmwareUptimeStatusAfterDone: if self._UptimeAfterReset < self._UptimeBeforeReset: return FirmwareResetStatusChecker.FirmwareResetStatusDone else: if self._UptimeBeforeReset > 5: # 5 seconds return FirmwareResetStatusChecker.FirmwareResetStatusFailed else: return FirmwareResetStatusChecker.FirmwareResetStatusUnknown return FirmwareResetStatusChecker.FirmwareResetStatusUnknown mstflint-4.26.0/small_utils/mlxfwresetlib/mcra.py0000644000175000017500000000565214522641732022426 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- """ * $Id : mcra.py 2017-11-28 * $Authors : Roei Yitzhak (roei@mellanox.com) """ from __future__ import print_function import platform from .mlxfwreset_utils import cmdExec class Mcra(object): def __init__(self): self.mcra_cmd = self.pick_mcra_cmd() # mcra or mstmcra (in mstflint) def pick_mcra_cmd(self): SUCCESS = 0 os = platform.system() if os in ['Linux', 'FreeBSD']: identify_location_cmd = 'which' elif os == 'Windows': identify_location_cmd = 'where' else: raise RuntimeError("Unsupported OS") (rc, _, _) = cmdExec(identify_location_cmd + ' mcra') if rc == SUCCESS: return 'mcra' else: (rc, _, _) = cmdExec(identify_location_cmd + ' mstmcra') if rc == SUCCESS: return 'mstmcra' else: raise RuntimeError("Can't identify the location of mcra/mstmcra command") def read(self, device, addr, offset, length): cmd = "%s %s %s.%s:%s" % (self.mcra_cmd, device, addr, offset, length) (rc, stdout, stderr) = cmdExec(cmd) if rc: raise RuntimeError(str(stderr)) return int(stdout, 16) def write(self, device, addr, offset, length, value): cmd = "%s %s %s.%s:%s %s" % (self.mcra_cmd, device, addr, offset, length, value) (rc, _, stderr) = cmdExec(cmd) if rc: raise RuntimeError(str(stderr)) mstflint-4.26.0/small_utils/mlxfwresetlib/logger.py0000644000175000017500000000516014522641732022755 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import logging class LoggerFactory(object): def get(self, name, level): if level is None: log_level = logging.CRITICAL elif level == 'critical': log_level = logging.CRITICAL elif level == 'error': log_level = logging.ERROR elif level == 'warning': log_level = logging.WARNING elif level == 'info': log_level = logging.INFO elif level == 'debug': log_level = logging.DEBUG #import logging logging.basicConfig(level=log_level, format='%(asctime)s - %(name)s - %(levelname)s - {%(pathname)s:%(lineno)d} - %(message)s') logger = logging.getLogger(name) #logger = logging.getLogger(name) # logger.setLevel(logging.INFO) # create a file handler #handler = logging.FileHandler(name+'.log') # handler.setLevel(logging.INFO) # create a logging format #formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') # handler.setFormatter(formatter) # add the handlers to the logger # logger.addHandler(handler) return logger mstflint-4.26.0/small_utils/mlxfwresetlib/cmd_reg_mcam.py0000755000175000017500000001160014522641732024072 0ustar tzafrirctzafrirc# Copyright (c) Sep 2019 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import sys try: from regaccess import RegAccException, extractField except Exception as e: print("-E- could not import : %s" % str(e)) sys.exit(1) class CmdRegMcam(): def __init__(self, reg_access): self._reg_access = reg_access self._mcam_get_results = [None] * 3 def get_mcam(self, access_reg_group=0): try: if self._mcam_get_results[access_reg_group] is None: self._mcam_get_results[access_reg_group] = self._reg_access.getMCAM(access_reg_group) return self._mcam_get_results[access_reg_group] except IndexError as ie: raise Exception("get_mcam() was called with invalid access_reg_group=%s\n" % str(access_reg_group)) except Exception as e: raise e def is_pci_rescan_required_supported(self): """ Read MCAM and check if the feature "PCI rescan required" is supported """ try: mcam_get_result = self.get_mcam() except BaseException: pci_rescan_required_sup = 0 else: # bit 45 is bit 13 in 2nd DWORD. # due to FW bug, MCAM mng_feature_cap_mask dwords are set in reversed order # so we actually access the 3rd DWORD (index 2) pci_rescan_required_sup = extractField(mcam_get_result["mng_feature_cap_mask"][3 - 1], 13, 1) return True if pci_rescan_required_sup == 1 else False def is_mrsi_supported(self): """ send MCAM access_reg_group=2 and then read mng_access_reg_cap_mask (bit 10 in 2nd DWORD) to see if MRSI is supported. """ try: mcam_get_result = self.get_mcam(2) except RegAccException as e: mrsi_sup = 0 else: # bit 42 is bit 10 in 2nd DWORD. # due to FW bug, MCAM mng_feature_cap_mask dwords are set in reversed order # so we actually access the 3rd DWORD (index 2) mrsi_sup = extractField(mcam_get_result["mng_access_reg_cap_mask"][3 - 1], 10, 1) return True if mrsi_sup == 1 else False def is_reset_by_fw_driver_sync_supported(self): """ Read MCAM and check if the feature "reset by fw-driver sync" is supported """ try: mcam_get_result = self.get_mcam() except RegAccException as e: pci_sync_for_fw_update_sup = 0 else: # bit 19 in 1st DWORD. # due to FW bug, MCAM mng_feature_cap_mask dwords are set in reversed order # so we actually access the 4th DWORD (index 3) pci_sync_for_fw_update_sup = extractField(mcam_get_result["mng_feature_cap_mask"][3 - 0], 19, 1) return True if pci_sync_for_fw_update_sup == 1 else False def reset_sync_query_text(self, tool_owner_support): result = "" result += "Reset-sync (relevant only for reset-level 3):\n" result += "{0}: {1:<62}-{2:<14}{3}\n".format(0, "Tool is the owner", "Supported" if tool_owner_support else "Not supported", "(default)" if tool_owner_support else "") is_supported = self.is_reset_by_fw_driver_sync_supported() supported_text = "Supported" if is_supported is True else "Not supported" result += "{0}: {1:<62}-{2:<14}{3}\n".format(1, "Driver is the owner", supported_text, "" if tool_owner_support else "(default)") return result mstflint-4.26.0/small_utils/mlxfwresetlib/mlnx_peripheral_components.py0000755000175000017500000001626014522641732027142 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- """ * $Id : mlnx_peripheral_components.py 2017-11-28 * $Authors : Roei Yitzhak (roei@mellanox.com) """ from __future__ import print_function from __future__ import print_function import platform import re from .pci_device import PciDevice from .mlxfwreset_utils import cmdExec class MlnxPeripheralComponents(object): SD_SUPPORTED_DID = [0x21e, 0x218, 0x216, 0x212, 0x20f, 0x20d, 0x209, 0x20b, 0x21c] # Connectx8,Connectx7,Connectx6LX,Connectx6DX,Connectx6,Connectx5 (SD device) ,Connectx4/Connectx4Lx (MH device connected as SD), BF-3 def __init__(self): self.pci_devices = [] self.os = platform.system() self.discover_pci_devices() def discover_pci_devices(self): if self.os == 'Linux': cmd = 'mdevices_info -vv' pattern = r'.*\s+(\S+)\s+(([0-9A-Fa-f]{4})*:*([0-9A-Fa-f]{2}):([0-9A-Fa-f]{2})\.([0-9A-Fa-f]{1,2})).*' elif self.os == 'FreeBSD': cmd = 'mst status -v' pattern = r'.*\s(pci(\d+):(\d+):(\d+):(\d+))\s.*' elif self.os == 'Windows': cmd = 'mdevices status -v' pattern = r'\s*(\S+)\s+\S*bus:dev.fn=(([0-9A-Fa-f]{4})*:*([0-9A-Fa-f]{2}):([0-9A-Fa-f]{2})\.([0-9A-Fa-f]{1})).*' else: raise RuntimeError("Unsupported OS") (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to get device PCI address") for line in out.split('\n'): # print(line) try: result = re.match(pattern, line) if result: aliases = [] if self.os == 'Linux': if result.group(1) != 'NA': aliases.append(result.group(1)) aliases.append(result.group(2)) if result.group(3) is None: domain = 0 aliases.append('0000:' + result.group(2)) else: domain = int(result.group(3), 16) bus = int(result.group(4), 16) dev = int(result.group(5), 16) fn = int(result.group(6), 16) elif self.os == 'FreeBSD': aliases.append(result.group(1)) domain = int(result.group(2)) bus = int(result.group(3)) dev = int(result.group(4)) fn = int(result.group(5)) elif self.os == 'Windows': aliases.append(result.group(1)) # mt_pciconf aliases.append(result.group(2)) # dbdf if result.group(3) is None: # no domain domain = 0 aliases.append('0000:' + result.group(2)) else: domain = int(result.group(3), 16) bus = int(result.group(4), 16) dev = int(result.group(5), 16) fn = int(result.group(6), 16) else: RuntimeError("Unsupported OS") pci_device = PciDevice(aliases, domain, bus, dev, fn) self.pci_devices.append(pci_device) except BaseException: raise RuntimeError("Failed to get device PCI Address") # Why it's required??? You don't do anything in the excpetion def get_pci_device(self, alias): for pci_device in self.pci_devices: if pci_device.has_alias(alias): return pci_device # TODO think if you need to copy else: raise RuntimeError("Failed to find {0} in pci-devices".format(alias)) def get_socket_direct_pci_devices(self, usr_pci_device): sd_pci_devices = [] if usr_pci_device.get_cfg_did() in MlnxPeripheralComponents.SD_SUPPORTED_DID: usr_manufacturing_base_mac = usr_pci_device.get_manufacturing_base_mac() if usr_manufacturing_base_mac == 0: raise RuntimeError('Base MAC is N/A') else: for pci_device in self.pci_devices: # Skip if the current pci-device is the same as user's pci-device if pci_device.domain == usr_pci_device.domain \ and pci_device.bus == usr_pci_device.bus \ and pci_device.device == usr_pci_device.device: continue # Skip if the current pci-device is not supported for Socket-Direct if pci_device.get_cfg_did() not in MlnxPeripheralComponents.SD_SUPPORTED_DID: continue # Check only function 0 (skip otherwise) if pci_device.fn != 0: continue # Skip if device in livefish mode if pci_device.is_livefish_mode(): continue if usr_manufacturing_base_mac == pci_device.get_manufacturing_base_mac(): sd_pci_devices.append(pci_device) return sd_pci_devices if __name__ == '__main__': import sys device = sys.argv[1] peripherals = MlnxPeripheralComponents() for pci_device in peripherals.pci_devices: print(pci_device) user_pci_device = peripherals.get_pci_device(device) print('user pci_device: {0}'.format(user_pci_device)) res = peripherals.get_socket_direct_pci_devices(user_pci_device) print("Socket direct discovery:") if len(res): for pci_device in res: print(pci_device) else: print("device is not part of socket direct") mstflint-4.26.0/small_utils/mlxfwresetlib/cmd_reg_mpcir.py0000755000175000017500000000564614522641732024304 0ustar tzafrirctzafrirc# Copyright (c) Sep 2019 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import time class CmdRegMpcir(): def __init__(self, reg_access): self._reg_access = reg_access def _wait_for_fw_idle(self): DELAY_BETWEEN_SAMPLES = 0.01 # [sec] NUM_OF_SAMPLES = 10 MPCIR_STATUS_IDLE = 0 for _ in range(NUM_OF_SAMPLES): if self._reg_access.sendMpcir(command="status") == MPCIR_STATUS_IDLE: break time.sleep(DELAY_BETWEEN_SAMPLES) else: raise RuntimeError("FW is not ready to start ISSU flow (MPCIR)") def _start_preperations(self): self._reg_access.sendMpcir(command="start") def _wait_for_completion(self): DELAY_BETWEEN_SAMPLES = 0.01 # [sec] NUM_OF_SAMPLES = 10 MPCIR_STATUS_DONE = 1 for _ in range(NUM_OF_SAMPLES): if self._reg_access.sendMpcir(command="status") == MPCIR_STATUS_DONE: break time.sleep(DELAY_BETWEEN_SAMPLES) else: raise RuntimeError("FW didn't finish preperations for FW upgrade on time (MPCIR)") def prepare_for_phyless_fw_upgrade(self): 'send FW an indication to perpare to PHY-less FW upgrade and wait for completion' # self._wait_for_fw_idle() # Removed since it caused failure on MH setup. # The first host will pass this wait, but others won't and raise exception. self._start_preperations() self._wait_for_completion() mstflint-4.26.0/small_utils/mlxfwresetlib/mlxfwreset_utils.py0000755000175000017500000001517114522641732025124 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- """ * $Id : mlxfwreset_utils.py 2017-11-28 * $Authors : Ahmad Soboh (ahmads@mellanox.com) """ from __future__ import print_function import subprocess import platform import re import time MLX5CTL_PREFIX = 'mlx5ctl-' ###################################################################### # Description: Execute command and get (rc, stdout-output, stderr-output) # OS Support : Linux/Windows. ###################################################################### def cmdExec(cmd): p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=False, shell=True) output = p.communicate() stat = p.wait() return (stat, output[0].decode('utf-8'), output[1].decode('utf-8')) # RC, Stdout, Stderr ###################################################################### # Description: Run cmd in loops # OS Support : N/A ###################################################################### def cmdExecLoop(cmd, sleep_time, max_retries): retries_num = 0 rc = 1 while rc and retries_num < max_retries: (rc, stdout, stderr) = cmdExec(cmd) retries_num += 1 time.sleep(sleep_time) return (rc, stdout, stderr) ###################################################################### # Description: DBDF string manipulation # OS Support : N/A ###################################################################### def getDomain(devAddr): devAddr = devAddr.split(":") if len(devAddr) == 3: return devAddr[0] return None def addDomainToAddress(devAddr): if len(devAddr.split(":")) == 2: return "0000:" + devAddr return devAddr def removeDomainFromAddress(devAddr): if len(devAddr.split(":")) == 3: return devAddr[5:] return devAddr def CheckIfMlx5CtlFormat(dev): if dev.startswith(MLX5CTL_PREFIX): prefix_length = len(MLX5CTL_PREFIX) dev_new_name = dev[prefix_length:] return dev_new_name else: return dev def isDevDBDFFormat(dev): dev = CheckIfMlx5CtlFormat(dev) pat = r"[0-9,A-F,a-f]{4}:[0-9,A-F,a-f]{2}:[0-9,A-F,a-f]{2}\.[0-9,A-F,a-f]{1,2}" if re.match(pat, dev): return True return False def isDevBDFFormat(dev): pat = r"[0-9,A-F,a-f]{2}:[0-9,A-F,a-f]{2}\.[0-9,A-F,a-f]{1,2}" if re.match(pat, dev): return True return False ###################################################################### # Description: get device DBDF format # OS Support : Linux/Windows. ###################################################################### def getDevDBDF(device, logger=None): if isDevDBDFFormat(device): return device if isDevBDFFormat(device): return addDomainToAddress(device) operatingSys = platform.system() if (operatingSys == "FreeBSD"): if not(device.startswith("pci")): raise RuntimeError("Unexpected device name format") return device[3:] elif (operatingSys == "Linux"): cmd = "mdevices_info -vv" (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to get device PCI address") # extract bdf bdf = None for line in out.split('\n'): if device in line: if len(line.split()) > 2: bdf = line.split()[2] if not bdf: raise RuntimeError("Failed to get device PCI Address") return addDomainToAddress(bdf) elif (operatingSys == "Windows"): cmd = "mdevices status -vv" (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to get device PCI address") # extract bdf bdf = None for line in out.split('\n'): l = line.split() if (len(l) > 1) and (device in l[0]) and ("seg:bus:dev.fn" in l[1]): bdf = line.split('=')[1] if not bdf: raise RuntimeError("Failed to get device PCI Address") return bdf else: raise RuntimeError("Unsupported OS") def is_in_internal_host(): ''' The function checks if the tool is running on the BlueField's internal host (ARM) The function will return true is the OS is Linux and PCIe root-port 00:00.0 is Mellanox ''' # Return value from cache if 'result' in dir(is_in_internal_host): # We need to cache the result to avoid accessing the device return is_in_internal_host.result # when it's still not ready to get PCI packets (after PCI "toggle") if platform.system() == "Linux": cmd = "setpci -s 00:00.0 0x0.w" rc, out, _ = cmdExec(cmd) if rc == 0 and out.strip() == "15b3": is_in_internal_host.result = True else: is_in_internal_host.result = False else: is_in_internal_host.result = False return is_in_internal_host.result def is_uefi_secureboot(): if platform.system() == "Linux": cmd = "mokutil --sb-state" rc, out, _ = cmdExec(cmd) if rc == 0 and out.strip() == "SecureBoot enabled": return True return False mstflint-4.26.0/small_utils/mlxfwresetlib/__init__.py0000644000175000017500000000270314522641732023235 0ustar tzafrirctzafrirc# copyright (c) 2004-2020 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- mstflint-4.26.0/small_utils/mlxfwresetlib/cmd_reg_mfrl.py0000755000175000017500000003071614522641732024126 0ustar tzafrirctzafrirc# Copyright (c) Sep 2019 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import regaccess class CmdNotSupported(Exception): pass class CmdRegMfrl(): LIVE_PATCH, PCI_RESET, WARM_REBOOT = 0, 3, 4 reset_levels_db = [ {'level': LIVE_PATCH, 'description': 'Driver, PCI link, network link will remain up ("live-Patch")', 'mask': 0x1, 'support_reset_type': False}, {'level': PCI_RESET, 'description': 'Driver restart and PCI reset', 'mask': 0x8, 'support_reset_type': True}, {'level': WARM_REBOOT, 'description': 'Warm Reboot', 'mask': 0x40, 'support_reset_type': True}, ] FULL_CHIP, PHY_LESS, NIC_ONLY = 0, 1, 2 reset_types_db = [ {'type': FULL_CHIP, 'description': 'Full chip reset', 'mask': 0x1, 'supported': True}, {'type': PHY_LESS, 'description': 'Phy-less reset (keep network port active during reset)', 'mask': 0x2}, {'type': NIC_ONLY, 'description': 'NIC only reset (for SoC devices)', 'mask': 0x4} ] RESET_STATE_ARM_OS_SHUTDOWN_IN_PROGRESS = 7 @classmethod def descriptions(cls): result = "Reset levels:\n" for reset_level_ii in cls.reset_levels_db: result += "\t{0}: {1}\n".format(reset_level_ii['level'], reset_level_ii['description']) result += "\nReset types:\n" for reset_types_ii in cls.reset_types_db: result += "\t{0}: {1}\n".format(reset_types_ii['type'], reset_types_ii['description']) result += "\n" return result @classmethod def reset_levels(cls): 'Return a list with all the optional reset-levels' return [reset_level_ii['level'] for reset_level_ii in cls.reset_levels_db] @classmethod def reset_types(cls): 'Return a list with all the optional reset-types' return [reset_type_ii['type'] for reset_type_ii in cls.reset_types_db] @classmethod def reset_level_description(cls, reset_level): 'Return the text description for the input reset-level' for reset_level_ii in cls.reset_levels_db: if reset_level_ii['level'] == reset_level: return reset_level_ii['description'] else: raise RuntimeError("Reset-level {0} doesn't exist in reset-levels !".format(reset_level)) @classmethod def reset_type_description(cls, reset_type): 'Return the text description for the input reset-type' for reset_type_ii in cls.reset_types_db: if reset_type_ii['type'] == reset_type: return reset_type_ii['description'] else: raise RuntimeError("Reset-type {0} doesn't exist in reset-types !".format(reset_type)) @classmethod def is_phy_less_reset(cls, reset_type): return reset_type == cls.PHY_LESS @classmethod def is_reset_level_trigger_is_pci_link(cls, reset_level): for reset_level_ii in cls.reset_levels_db: if reset_level_ii['level'] == reset_level: return True if (reset_level_ii['mask'] & 0x8) else False else: raise RuntimeError("Reset-level {0} doesn't exist in reset-levels !".format(reset_level)) def __init__(self, reg_access, logger): self._reg_access = reg_access self.logger = logger self._reset_levels = CmdRegMfrl.reset_levels_db[:] # copy self._reset_types = CmdRegMfrl.reset_types_db[:] # copy # Read register ('get' command) from device self.read() def _update_variables(self, reg): # Update 'pci_rescan_required' field self._pci_rescan_required = reg['pci_rescan_required'] # Update 'supported' field in reset_levels reset_level = reg['reset_level'] for reset_level_ii in self._reset_levels: reset_level_ii['supported'] = (reset_level & reset_level_ii['mask']) != 0 # Update 'supported' field in reset_types reset_type = reg['reset_type'] for reset_type_ii in self._reset_types: if 'supported' not in reset_type_ii: reset_type_ii['supported'] = (reset_type & reset_type_ii['mask']) != 0 self._reset_state = reg['reset_state'] def _send(self, method, reset_level=None, reset_type=None, reset_sync=None): try: self.logger.debug("sending MFRL with method={}, reset_level={}, reset_type={}, reset_sync={}".format( method, reset_level, reset_type, reset_sync )) return self._reg_access.sendMFRL(method, reset_level, reset_type, reset_sync) except regaccess.RegAccException as e: if reset_sync == 1: raise e # FW bug first mfrl register might fail self.logger.debug("Retry MFRL with method={}, reset_level={}, reset_type={}, reset_sync={}".format( method, reset_level, reset_type, reset_sync )) return self._reg_access.sendMFRL(method, reset_level, reset_type, reset_sync) def _read_reg(self): reset_level, reset_type, pci_rescan_required, reset_state = self._send(self._reg_access.GET) return { 'reset_level': reset_level, 'reset_type': reset_type, 'pci_rescan_required': pci_rescan_required, 'reset_state': reset_state } def _write_reg(self, reset_level, reset_type, reset_sync): self._send(self._reg_access.SET, reset_level, reset_type, reset_sync) def is_pci_rescan_required(self): return True if self._pci_rescan_required == 1 else False def query_text(self, is_cedar=False): 'return the text for the query operation in mlxfwreset' # Reset levels default_reset_level = self.default_reset_level() result = "Reset-levels:\n" for reset_level_ii in self._reset_levels: level = reset_level_ii['level'] description = reset_level_ii['description'] if is_cedar: supported = "Supported" if reset_level_ii['supported'] and reset_level_ii['level'] is CmdRegMfrl.WARM_REBOOT else "Not Supported" default = "(default)" if reset_level_ii['level'] is CmdRegMfrl.WARM_REBOOT else "" else: supported = "Supported" if reset_level_ii['supported'] else "Not Supported" default = "(default)" if reset_level_ii["level"] == default_reset_level else "" result += "{0}: {1:<62}-{2:<14}{3}\n".format(level, description, supported, default) # Reset types relevant_levels = [] for reset_level_ii in self._reset_levels: if reset_level_ii['support_reset_type']: relevant_levels.append(str(reset_level_ii['level'])) result += "\nReset-types " result += "(relevant only for reset-levels {0}):\n".format(','.join(relevant_levels)) default_reset_type = self.default_reset_type() for reset_type_ii in self._reset_types: type_ = reset_type_ii['type'] description = reset_type_ii['description'] supported = "Supported" if reset_type_ii['supported'] else "Not Supported" default = "(default)" if reset_type_ii["type"] == default_reset_type else "" result += "{0}: {1:<62}-{2:<14}{3}\n".format(type_, description, supported, default) return result def is_reset_level_supported(self, reset_level): 'check if the input reset-level is supported' for reset_level_ii in self._reset_levels: if reset_level_ii['level'] == reset_level: return reset_level_ii['supported'] else: return False def is_reset_type_supported(self, reset_type): 'Check if the input reset-type is supported' for reset_type_ii in self._reset_types: if reset_type_ii['type'] == reset_type: return reset_type_ii['supported'] else: return False def is_reset_level_support_reset_type(self, reset_level): 'Check if the input reset-level can be executed with reset_type (different than the default)' for reset_level_ii in self._reset_levels: if reset_level_ii['level'] == reset_level: return reset_level_ii['support_reset_type'] else: return False def default_reset_level(self): 'Return the default reset-level (minimal supported reset-level)' for reset_level_ii in CmdRegMfrl.reset_levels(): if self.is_reset_level_supported(reset_level_ii) is True: return reset_level_ii raise CmdNotSupported("There is no supported reset-level") def default_reset_type(self): 'Return the default reset-type' # Return NIC_ONLY if supported (Will be supported only in SmartNIC) for reset_type_ii in self._reset_types: if reset_type_ii['supported'] and reset_type_ii['type'] == CmdRegMfrl.NIC_ONLY: return reset_type_ii['type'] # Return FULL_CHIP for reset_type_ii in self._reset_types: if reset_type_ii['supported'] and reset_type_ii['type'] == CmdRegMfrl.FULL_CHIP: return reset_type_ii['type'] raise CmdNotSupported("There is no supported reset-type") def is_default_reset_type(self, reset_type): return reset_type == self.default_reset_type() def is_default_reset_level(self, reset_level): return reset_level == self.default_reset_level() def is_reset_state_in_progress(self): return True if self._reset_state == CmdRegMfrl.RESET_STATE_ARM_OS_SHUTDOWN_IN_PROGRESS else False def read(self): # Read register ('get' command) from device reg = self._read_reg() # Update privates variables. self._update_variables(reg) def send(self, reset_level, reset_type, reset_sync, is_cedar=False): """ send MFRL Set command Verify that reset-level and reset-type are supported (reset-sync is not verified) """ # Reset-level to send for reset_level_ii in self._reset_levels: if reset_level_ii['level'] == reset_level and reset_level_ii['supported']: reset_level_2_send = reset_level_ii['mask'] break else: raise CmdNotSupported('Failed to send MFRL! reset-level {0} is not supported!'.format(reset_level)) if is_cedar: for reset_level_ii in self._reset_levels: if reset_level_ii['level'] == CmdRegMfrl.PCI_RESET: reset_level_2_send = reset_level_2_send | reset_level_ii['mask'] # Reset-type to send for reset_type_ii in self._reset_types: if reset_type_ii['type'] == reset_type and reset_type_ii['supported']: reset_type_2_send = reset_type break else: raise CmdNotSupported('Failed to send MFRL! reset-type {0} is not supported!'.format(reset_type)) self._write_reg(reset_level_2_send, reset_type_2_send, reset_sync) mstflint-4.26.0/small_utils/mlxfwresetlib/Makefile.am0000644000175000017500000000326614522641732023165 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- docdir = $(libdir)/mstflint/python_tools/mstfwreset/mlxfwresetlib dist_doc_DATA = __init__.py mlxfwreset_mlnxdriver.py mlxfwreset_status_checker.py mlxfwreset_utils.py logger.py mcra.py mlnx_peripheral_components.py pci_device.py cmd_reg_mfrl.py cmd_reg_mpcir.py cmd_reg_mcam.py cmd_reg_mrsi.py mstflint-4.26.0/small_utils/mlxfwresetlib/cmd_reg_mrsi.py0000644000175000017500000000752214522641732024134 0ustar tzafrirctzafrirc# Copyright (c) Sep 2019 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import sys try: from regaccess import RegAccException, extractField except Exception as e: print("-E- could not import : %s" % str(e)) sys.exit(1) class CmdRegMrsi(): ECOS_VALS = [ {0, 'Reset/Boot-ROM'}, {1, 'BL2'}, {2, 'BL31'}, {3, 'UEFI'}, {4, 'OS starting'}, {5, 'OS is running'}, {6, 'Low - Power standby'}, {7, 'Firmware update in progress'}, {8, 'OS Crash Dump in progress'}, {9, 'OS Crash Dump is complete'}, {10, 'FW Fault Crash Dump in progress'}, {11, 'FW Fault Crash Dump is complete'} ] def __init__(self, reg_access): self._reg_access = reg_access self._mrsi_get_result = None def get_mrsi(self): if self._mrsi_get_result is None: self._mrsi_get_result = self._reg_access.getMRSI() return self._mrsi_get_result # returns {"reset_reason":value of reset_reason, "crts":value of crts, "ecos":value of ecos} def is_warm_reset(self): mrsi_get_result = self.get_mrsi() if mrsi_get_result["reset_reason"] == 1: return True return False def get_crts(self): mrsi_get_result = self.get_mrsi() return mrsi_get_result["crts"] def get_ecos(self): mrsi_get_result = self.get_mrsi() return mrsi_get_result["ecos"] def query_text(self, is_bluefield): try: warm_reset = self.is_warm_reset() timestamp = self.get_crts() reset_reason = "Warm reset" if warm_reset else "Cold reset" except Exception as e: reset_reason = "Unknown. Please check driver is up." timestamp = "Unknown. Please check driver is up." result = "" result += "{0}: {1:<51}{2:<14}\n".format("Reset-reason", "", reset_reason) result += "{0}: {1:<7}{2:<14}\n".format("Timestamp (number of clock cycles) since last cold reset", "", timestamp) # if is_bluefield: # will be uncommented when FW will implement their support. # ecos_result = self.ecos_query_text() # result += ecos_result return result def ecos_query_text(self): state = self.get_ecos() description = CmdRegMrsi.ecos_vals[state] result = "" result = "Embedded CPU OS state:\n" result += "{0}: {1:<62}-{2:<14}{3}\n".format(state, description, "", "") return result mstflint-4.26.0/small_utils/mlxfwresetlib/Makefile.in0000644000175000017500000004033214522641740023170 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = small_utils/mlxfwresetlib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_doc_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(docdir)" DATA = $(dist_doc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = $(libdir)/mstflint/python_tools/mstfwreset/mlxfwresetlib dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_doc_DATA = __init__.py mlxfwreset_mlnxdriver.py mlxfwreset_status_checker.py mlxfwreset_utils.py logger.py mcra.py mlnx_peripheral_components.py pci_device.py cmd_reg_mfrl.py cmd_reg_mpcir.py cmd_reg_mcam.py cmd_reg_mrsi.py all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign small_utils/mlxfwresetlib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign small_utils/mlxfwresetlib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_docDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_docDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/small_utils/binary_file.py0000755000175000017500000001532114522641732021075 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Author: Ahmed Awwad ahmadaw@mellanox.com Created: 2019-Jan import binascii class BinaryFile(object): """ Binary File class is dealing with r/w of binary files """ def __init__(self, file_path): self._file_path = file_path def read_byte(self, offset): """ Read 1B from the pci configuration """ return self.read(1, offset)[0] def read_word(self, offset): """ Read 2B for the pci configuration """ bytes_list = self.read(2, offset) if bytes_list != []: byte0 = "{0:x}".format(bytes_list[0]).zfill(2) byte1 = "{0:x}".format(bytes_list[1]).zfill(2) return int("{0}{1}".format(byte1, byte0), 16) else: return None def read_long(self, offset): """ Reads 4B from the pci configuration """ bytes_list = self.read(4, offset) if bytes_list != []: byte0 = "{0:x}".format(bytes_list[0]).zfill(2) byte1 = "{0:x}".format(bytes_list[1]).zfill(2) byte2 = "{0:x}".format(bytes_list[2]).zfill(2) byte3 = "{0:x}".format(bytes_list[3]).zfill(2) return int("{0}{1}{2}{3}".format(byte3, byte2, byte1, byte0), 16) else: return None def read(self, size, offset=0, skip_offset_list=None): """ Read a given binary file and return the output as a string in hex representation Skip-list is a list of addresses the function need to skip. The function will insert '00' on every address that is skipped Example read(size=10, offset=0, skip_offset_list=[0x5]) will read from address 0x0 to address 0x9 and replace address 0x5 with '00' """ try: with open(self._file_path, "rb") as f: if skip_offset_list: data = binascii.unhexlify("") # Initialization zero_binary = binascii.unhexlify("00") # Initialization offset_interval = self._get_read_intervals(skip_offset_list, offset, size) for interval_start, interval_size in offset_interval: if interval_size: # read interval f.seek(interval_start) data += f.read(interval_size) else: # add '00' to data data += zero_binary else: f.seek(offset) data = f.read(size) except Exception as err: raise RuntimeError("Failed to parse file: {0} for reading. ERROR: {1}".format(self._file_path, err)) data = binascii.hexlify(data) bytes_as_string = self.chunkstring(data, 2) bytes_list = [] for byte in bytes_as_string: if byte != "": bytes_list.append(int(byte, 16)) else: bytes_list.append(None) return bytes_list @staticmethod def _get_read_intervals(skip_offset_list, offset, size): """ The method prepare the skip list in order to read a range and skipping on some (dangerous) offsets The method return list of tuples Example , offset:0, size:10, skiplist=[4, 5] The function return [(0, 4),(4, 0), (5, 0) (6, 10)] when each item is (start, size) when size is 0 it means we need to skip this offset """ # remove out of range skip addresses for skip_offset in skip_offset_list: if skip_offset not in range(offset, size + 1): skip_offset_list.remove(skip_offset) read_interval_set = set(skip_offset_list) # Add offset, offset+size to skip_list read_interval_set.add(offset - 1) read_interval_set.add(offset + size) read_interval_list = sorted(list(read_interval_set)) result = [] for start, end in zip(read_interval_list[:-1], read_interval_list[1:]): interval_start = start + 1 interval_end = end result.append((interval_start, interval_end - interval_start)) # interval result.append((interval_end, 0)) # skip interval result = result[:-1] # remove the last tuple (offset+size, 0) return sorted(set(result)) def write(self, bytes_list, size, offset=0): """ A method to write data to a binary file data is a list of values """ data_to_write = "" for byte in bytes_list: data_to_write += "{0:x}".format(byte).zfill(2) if len(data_to_write) > size * 2: raise RuntimeError("Failed to write data {0} invalid size".format(data_to_write)) bin_data = binascii.unhexlify(data_to_write) # Return the binary data represented by the hexadecimal string try: with open(self._file_path, "wb") as f: f.seek(offset) f.write(bin_data) except Exception as e: raise RuntimeError("Failed writing to a file: {0}. ERROR: {1}".format(self._file_path, e)) def chunkstring(self, string, length): """ Chunks the string to list of strings in the given length """ return (string[0 + i:length + i] for i in range(0, len(string), length)) mstflint-4.26.0/small_utils/mstfwreset.py0000644000175000017500000026255714522641732021031 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function """ * $Id : mlxfwreset.py 2014-06-25 * $Authors : Adrian Chiris (adrianc@mellanox.com) * $Tool : Main file. """ __version__ = '1.0' # Python Imports ###################### import sys try: import argparse import textwrap import os import platform import struct import re import time import signal import abc import mtcr import regaccess import tools_version import dev_mgt import cmdif from mlxfwresetlib import mlxfwreset_utils from mlxfwresetlib.mlxfwreset_utils import cmdExec from mlxfwresetlib.mlxfwreset_utils import is_in_internal_host, is_uefi_secureboot from mlxfwresetlib.mlxfwreset_mlnxdriver import MlnxDriver from mlxfwresetlib.mlxfwreset_mlnxdriver import DriverUnknownMode from mlxfwresetlib.mlxfwreset_mlnxdriver import MlnxDriverFactory, MlnxDriverLinux from mlxfwresetlib.mlxfwreset_status_checker import FirmwareResetStatusChecker from mlxfwresetlib.logger import LoggerFactory from mlxfwresetlib.cmd_reg_mfrl import CmdRegMfrl, CmdNotSupported # from mlxfwresetlib.cmd_reg_mpcir import CmdRegMpcir from mlxfwresetlib.cmd_reg_mcam import CmdRegMcam from mlxfwresetlib.cmd_reg_mrsi import CmdRegMrsi if os.name != 'nt': if not getattr(sys, 'frozen', False): sys.path.append(os.sep.join( (os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "mlxpci"))) from mlxpci_lib import PCIDeviceFactory from mlxfwresetlib.mlnx_peripheral_components import MlnxPeripheralComponents if (sys.version_info > (3, 0)): import queue from builtins import input as raw_input else: import Queue as queue except Exception as e: print("-E- could not import : %s" % str(e)) sys.exit(1) # Constants ########################### class SyncOwner(): TOOL = 0 DRIVER = 1 MLNX_DEVICES = [ dict(name="ConnectX3", devid=0x1f5), dict(name="ConnectX3Pro", devid=0x1f7), dict(name="ConnectIB", devid=0x1ff, status_config_not_done=(0xb0004, 31)), dict(name="ConnectX4", devid=0x209, status_config_not_done=(0xb0004, 31)), dict(name="ConnectX4LX", devid=0x20b, status_config_not_done=(0xb0004, 31)), dict(name="ConnectX5", devid=0x20d, status_config_not_done=(0xb5e04, 31)), dict(name="BlueField", devid=0x211, status_config_not_done=(0xb5e04, 31)), dict(name="BlueField2", devid=0x214, status_config_not_done=(0xb5f04, 31), allowed_sync_method=SyncOwner.DRIVER), dict(name="BlueField3", devid=0x21c, status_config_not_done=(0xb5f04, 31), allowed_sync_method=SyncOwner.DRIVER), dict(name="BlueField4", devid=0x220, status_config_not_done=(0xb5f04, 31)), dict(name="ConnectX6", devid=0x20f, status_config_not_done=(0xb5f04, 31)), dict(name="ConnectX6DX", devid=0x212, status_config_not_done=(0xb5f04, 31)), dict(name="ConnectX6LX", devid=0x216, status_config_not_done=(0xb5f04, 31)), dict(name="ConnectX7", devid=0x218, status_config_not_done=(0xb5f04, 31)), dict(name="ConnectX8", devid=0x21e, status_config_not_done=(0xb5f04, 31)), dict(name="Switch-IB", devid=0x247, status_config_not_done=(0x80010, 0)), dict(name="Switch-IB-2", devid=0x24b, status_config_not_done=(0x80010, 0)), dict(name="Quantum", devid=0x24d, status_config_not_done=(0x100010, 0)), dict(name="Quantum-2", devid=0x257, status_config_not_done=(0x100010, 0)), dict(name="Quantum-3", devid=0x25b, status_config_not_done=(0x200010, 0)), dict(name="Spectrum", devid=0x249, status_config_not_done=(0x80010, 0)), dict(name="Spectrum-2", devid=0x24E, status_config_not_done=(0x100010, 0)), dict(name="Spectrum-3", devid=0x250, status_config_not_done=(0x100010, 0)), dict(name="Spectrum-4", devid=0x254, status_config_not_done=(0x100010, 0)), ] # Supported devices. SUPP_DEVICES = ["ConnectIB", "ConnectX4", "ConnectX4LX", "ConnectX5", "BlueField", "ConnectX6", "ConnectX6DX", "ConnectX6LX", "BlueField2", "ConnectX7", "BlueField3", "ConnectX8", "BlueField4"] SUPP_SWITCH_DEVICES = ["Spectrum", "Spectrum-2", "Spectrum-3", "Spectrum-4", "Switch-IB", "Switch-IB-2", "Quantum", "Quantum-2", "Quantum-3"] SUPP_OS = ["FreeBSD", "Linux", "Windows"] IS_MSTFLINT = os.path.basename(__file__) == "mstfwreset.py" # TODO later remove mcra to the new class MCRA = 'mcra' if IS_MSTFLINT: MCRA = "mstmcra" PROG = 'mlxfwreset' if IS_MSTFLINT: PROG = 'mstfwreset' TOOL_VERSION = "1.0.0" DESCRIPTION = textwrap.dedent('''\ %s : The tool provides the following functionality in order to load new firmware: 1. Query the device for the supported reset-level and reset-type 2. Perform reset operation on the device ''' % PROG) # Adresses [Base offset length] DEVID_ADDR = [0xf0014, 0, 16] COMMAND_ADDR = 0x4 # sync constants: SYNC_TYPE_FW_RESET = 0x1 SYNC_STATE_IDLE = 0x0 SYNC_STATE_GET_READY = 0x1 SYNC_STATE_GO = 0x2 SYNC_STATE_DONE = 0x3 # reg access Object RegAccessObj = None RegAccessObjsSD = [] # mst device object MstDevObj = None MstDevObjsSD = [] MstFlags = "" # Pci device Obj PciOpsObj = None DevDBDF = None # icmd object CmdifObj = None CmdifObjsSD = [] # FirmwareResetStatusChecker object FWResetStatusChecker = None # Global options SkipMstRestart = False SkipMultihostSync = False is_cedar = False is_bluefield = False logger = None device_global = None pciModuleName = "mst_ppc_pci_reset.ko" pathToPciModuleDir = "/etc/mft/mlxfwreset" SUPPORTED_DEVICES_WITH_SWITCHES = [ "15b3", "10ee", "1af4"] # 1af4 for Red Hat (virtio) ###################################################################### # Description: Pcnr Exception # OS Support : Linux. ###################################################################### class PcnrError(Exception): pass ###################################################################### # Description: NoError Exception # OS Support : Linux/FreeBSD/Windows. ###################################################################### class NoError(Exception): pass ###################################################################### # Description: Warning Exception # OS Support : Linux/FreeBSD/Windows. ###################################################################### class WarningException(Exception): pass ###################################################################### # Description: NoPciBridge Exception # OS Support : Linux/FreeBSD/Windows. ###################################################################### class NoPciBridgeException(Exception): pass ###################################################################### # Description: Get device dictionary from MLNX_DEVICES ###################################################################### def getDeviceDict(devid): logger.info('getDeviceDict() called. Inputs : devid = {0}'.format(devid)) for devDict in MLNX_DEVICES: if devDict["devid"] == devid: return devDict else: raise RuntimeError("Failed to Identify devid: %s" % (devid)) ###################################################################### # Description: is_fw_ready # OS Support : Linux/FreeBSD/Windows. ###################################################################### def is_fw_ready(device): 'Check if FW is ready to get icmd' try: address, offset = None, None devid = getDevidFromDevice(device) devDict = getDeviceDict(devid) address, offset = devDict['status_config_not_done'] status_config_not_done = mcraRead(device, address, offset, 1) return False if status_config_not_done == 1 else True except BaseException: raise RuntimeError("Failed to check if fw is ready to get ICMD") ###################################################################### # Description: wait_for_fw_ready # OS Support : Linux/FreeBSD/Windows. ###################################################################### def wait_for_fw_ready(device): 'Wait for FW to be ready to get icmd' MAX_POLL_CNTR = 1000 POLL_SLEEP_INTERVAL = 0.001 for ii in range(MAX_POLL_CNTR): if is_fw_ready(device): break else: time.sleep(POLL_SLEEP_INTERVAL) if ii % 100 == 0: logger.debug("FW isn't ready ii={0}".format(ii)) else: logger.debug("Exit polling before FW is ready!!!!") ###################################################################### # Description: reset_fsm_register # OS Support : Linux/FreeBSD/Windows. ###################################################################### def reset_fsm_register(): if device_global: MstDev = mtcr.MstDevice(device_global) Cmdif = cmdif.CmdIf(MstDev) if Cmdif.isMultiHostSyncSupported(): status = Cmdif.multiHostSyncStatus() Cmdif.multiHostSync(SYNC_STATE_IDLE, status.sync_type) MstDev.close() ###################################################################### # Description: Signal handler # OS Support : Linux/FreeBSDWindows. ###################################################################### def sigHndl(signal, frame): reset_fsm_register() print("\nSignal %d received, Exiting..." % signal) sys.exit(1) def set_signal_handler(): "Call sigHndl() when the user exit the process by typing ctrl+c or kill the process" signal.signal(signal.SIGINT, sigHndl) signal.signal(signal.SIGTERM, sigHndl) def ignore_signals(): "Disable the option to cancel operation with ctrl+c or kill" signal.signal(signal.SIGINT, signal.SIG_IGN) signal.signal(signal.SIGTERM, signal.SIG_IGN) ###################################################################### # Description: Check if the given module is loaded # OS Support : Linux. ###################################################################### def isModuleLoaded(moduleName): cmd = "lsmod" (rc, out, _) = cmdExec(cmd) if rc: raise RuntimeError("Failed to run lsmod") if moduleName in out: return True return False ###################################################################### # Description: print str to stdout and flush stdout. # use when txt needs to appear immediately on screen # OS Support : Linux/Windows. ###################################################################### def printAndFlush(str, endChar='\n'): print(str, end=endChar) sys.stdout.flush() ###################################################################### # Description: ask user Y/N question if N/n/No/no was received raise # RuntimeError. # OS Support : Linux/Windows. ###################################################################### def AskUser(question, autoYes=False): qStr = question + "?[y/N] " if autoYes: print(qStr + "y") return ans = raw_input(qStr) if ans.lower() in ['y', "yes"]: return raise RuntimeError("Aborted by user") ###################################################################### # Description: Mcra Read/Write functions # OS Support : Linux/Windows. ###################################################################### def mcraRead(device, addr, offset, length): cmd = "%s %s %s.%s:%s" % (MCRA, device, addr, offset, length) (rc, stdout, stderr) = cmdExec(cmd) if rc: raise RuntimeError(str(stderr)) return int(stdout, 16) def mcraWrite(device, addr, offset, length, value): cmd = "%s %s %s.%s:%s %s" % (MCRA, device, addr, offset, length, value) (rc, _, stderr) = cmdExec(cmd) if rc: raise RuntimeError(str(stderr)) ###################################################################### # Description: Get Linux kernel version # OS Support : Linux ###################################################################### def getLinuxKernelVersion(): cmd = 'uname -r' (rc, stdout, stderr) = cmdExec(cmd) if rc: raise RuntimeError(str(stderr)) pattern = r'(\d+\.\d+)\..*' result = re.match(pattern, stdout) if result: kernel_version = float(result.group(1)) else: raise RuntimeError( 'Failed when trying to get the version of Linux kernel') return kernel_version ###################################################################### # Description: MlnxPciOperation class # OS Support : Linux/FreeBSD. ###################################################################### class MlnxPciOp(object): """ Abstract Class that provides a unified way to perform pci operations """ def __init__(self): self.bridgeAddr = None def read(self, devAddr, addr, width="L"): raise NotImplementedError("read() is not implemented") def write(self, devAddr, addr, val, width="L"): raise NotImplementedError("write() is not implemented") def isMellanoxDevice(self, devAddr): raise NotImplementedError("isMellanoxDevice() is not implemented") def getPciBridgeAddr(self, devAddr): raise NotImplementedError("getPciBridgeAddr() is not implemented") def getPcieCapAddr(self, bridgeDev): raise NotImplementedError("getPcieCapAddr() is not implemented") def getMFDeviceList(self, devAddr): raise NotImplementedError("getMFDeviceList() is not implemented") def savePCIConfigurationSpace(self, devAddr, pci_device): raise NotImplementedError( "savePCIConfigurationSpace() is not implemented") def loadPCIConfigurationSpace(self, devAddr, pci_device, full=True): raise NotImplementedError( "loadPCIConfigurationSpace() is not implemented") def waitForDevice(self, devAddr): pass # TODO need to implement for FreeBSD def getAllBuses(self, devices): raise NotImplementedError("getAllBuses() is not implemented") def removeDevice(self, devAddr): raise NotImplementedError("removeDevice() is not implemented") def rescan(self): raise NotImplementedError("rescan() is not implemented") def setPciBridgeAddr(self, bridgeAddr): self.bridgeAddr = bridgeAddr def printBuf(buf): bytes = buf.tolist() for i in range(len(bytes)): if i % 16 == 0: print("") print("%02x " % bytes[i], end=''), print("") class MlnxPciOpLinux(MlnxPciOp): pciWidthToStructSize = {'Q': 'Q', 'L': 'I', 'W': 'H', 'B': 'B'} pciWidthToByteCount = {'Q': 8, 'L': 4, 'W': 2, 'B': 1} def __init__(self): super(MlnxPciOpLinux, self).__init__() self.pciConfSpaceMap = {} # key is dbdf, value is configuration of "device_control_register" self.device_control_register_old = {} def savePciConfOptimalValues(self, devAddr): logger.debug("Saving device control register for device: %s" % devAddr) # Save the BIOS values of "device control register" (need to restore in case of OS 'remove'/'rescan') assert devAddr not in self.device_control_register_old, 'savePCIConfigurationSpace - {0} is already in dictionary'.format( devAddr) self.device_control_register_old[devAddr] = self.read( devAddr, 0x68, 'w') # Reading "Device Control Register" (BIOS values) logger.debug( "Saving device control register for device: %s - DONE" % devAddr) def loadPciConfOptimalValues(self, devAddr): logger.debug( "Restoring device control register for device: %s" % devAddr) # bits 5-7 max_payload_size ; bits 12-14 max_read_request_size in "Device Control Register" MASK = 0b0111000011100000 MASK__ = 0b1000111100011111 assert devAddr in self.device_control_register_old, 'loadPciConfOptimalValues: {0} is not in dictionay'.format( devAddr) # Reading "Device Control Register" (after pci 'rescan') device_control_register_new = self.read(devAddr, 0x68, 'w') device_control_register_updated = (device_control_register_new & MASK__) | ( self.device_control_register_old[devAddr] & MASK) self.write(devAddr, 0x68, device_control_register_updated, 'w') # Overwriting "Device Control Register" logger.debug( "Restoring device control register for device: %s - Done" % devAddr) def read(self, devAddr, addr, width="L"): cmd = "setpci -s %s 0x%x.%s" % (devAddr, addr, width) (rc, out, _) = cmdExec(cmd) logger.debug('read : cmd={0} rc={1} out={2}'.format(cmd, rc, out)) if rc != 0 or not out: raise RuntimeError( "Failed to read address 0x%x from device %s " % (addr, devAddr)) return int(out, 16) def write(self, devAddr, addr, val, width="L"): cmd = "setpci -s %s 0x%x.%s=0x%x" % (devAddr, addr, width, val) (rc, out, _) = cmdExec(cmd) logger.debug('write : cmd={0} rc={1} out={2}'.format(cmd, rc, out)) if rc != 0: raise RuntimeError( "Failed to write 0x%x to address 0x%x to device %s " % (val, addr, devAddr)) return def getVendorId(self, devAddr): cmd = "setpci -s %s 0x0.w" % (devAddr) (rc, output, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to run '%s'" % (cmd)) return output.strip() def isMellanoxDevice(self, devAddr): if "15b3" in self.getVendorId(devAddr): return True return False def getPciBridgeAddr(self, devAddr): if self.bridgeAddr: # user specified the bridge address return self.bridgeAddr devAddr = mlxfwreset_utils.addDomainToAddress(devAddr) cmd = r'readlink /sys/bus/pci/devices/%s | sed -e "s/.*\/\([0-9a-f:.]*\)\/%s/\1/g"' % ( devAddr, devAddr) (rc, out, _) = cmdExec(cmd) bridgeDev = out.strip() result = re.match( r'^[0-9A-Fa-f]{4}:[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}\.[0-9A-Fa-f]$', bridgeDev) if rc != 0 or result is None: raise NoPciBridgeException( "Failed to get Bridge Device for the given PCI device! You might be running on a Virtual Machine!") return bridgeDev def getPciECapAddr(self, bridgeDev): cmd = "lspci -s %s -v | grep 'Capabilities: \\[.*\\] Express' | sed -e 's/.*\\[\\([0-9,a-f].*\\)\\].*/\\1/g'" % bridgeDev (rc, capAddr, _) = cmdExec(cmd) if rc != 0 or len(capAddr.strip()) == 0: raise RuntimeError( "Failed to find PCI bridge Pci Express Capability") return int(capAddr, 16) def getAllPciDevices(self, devAddr): devices = [] pciPath = "/sys/bus/pci/devices/%s" % devAddr q = queue.Queue() q.put(pciPath) devices.append(devAddr) while not q.empty(): i = q.get() files = os.listdir(i) for file in files: if re.match(r'^[0-9A-Fa-f]{4}:[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}\.[0-9A-Fa-f]$', file) is not None: if self.getVendorId(file) in SUPPORTED_DEVICES_WITH_SWITCHES: q.put(i + "/" + file) devices.append(file) return devices def getMFDeviceList(self, devAddr): """ Return the device and the sibling devices """ MFDevices = [] domainBus = ":".join(devAddr.split(":")[:2]) if "ppc64" in platform.machine(): # list without NVME emulation (on bluefield) cmd = "lspci -d 15b3: -s {0}: -D | grep -v DMA".format(domainBus) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to execute: {0}".format(cmd)) for line in out.splitlines(): MFDevices.append(line.split()[0]) else: pci_device_bridge1 = self.getPciBridgeAddr(devAddr) if is_in_internal_host(): # Bluefield (NIC only reset) pci_device_bridge2 = self.getPciBridgeAddr(pci_device_bridge1) pci_device_bridge3 = self.getPciBridgeAddr(pci_device_bridge2) return self.getAllPciDevices(pci_device_bridge3) else: cmd = "lspci -s {0}: -D".format(domainBus) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to execute: {0}".format(cmd)) for line in out.splitlines(): MFDevices.append(line.split()[0]) return MFDevices def savePCIConfigurationSpace(self, devAddr, pci_device): self.savePciConfOptimalValues(devAddr) pci_device.save_configuration_space() def loadPCIConfigurationSpace(self, devAddr, pci_device, full=True): if full: pci_device.restore_configuration_space() else: # OS 'remove'/'rescan' -> need to restore optimal value in "device control register" for old kernel module if getLinuxKernelVersion() < 4.2: logger.info('old kernel') self.loadPciConfOptimalValues(devAddr) def waitForDevice(self, devAddr): logger.info('waitForDevice() called. Input is {0}'.format(devAddr)) path = '/sys/bus/pci/devices/{0}/config'.format(devAddr) TIMEOUT = 100 for _ in range(TIMEOUT): if os.path.exists(path): return else: time.sleep(0.1) raise RuntimeError('Failed to find device in {0}'.format(path)) def removeDevice(self, devAddr): cmd = 'echo 1 > /sys/bus/pci/devices/{0}/remove'.format(devAddr) (rc, _, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to execute: %s" % cmd) def rescan(self): # TODO check how to exit if rescan is not back logger.info('rescan() is called') cmd = 'echo 1 > /sys/bus/pci/rescan' (rc, _, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to execute: %s" % cmd) def getAllBuses(self, devices): buses = [] for dev in devices: busId = mlxfwreset_utils.getDevDBDF(dev) buses += self.getMFDeviceList(busId) return buses class MlnxPciOpFreeBSD(MlnxPciOp): def __init__(self): super(MlnxPciOpFreeBSD, self).__init__() self.pciConfSpaceMap = {} def read(self, devAddr, addr, width="L"): if not (devAddr.startswith("pci")): devAddr = "pci" + devAddr cmd = "pciconf -r %s 0x%x" % (devAddr, addr) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError( "Failed to read address 0x%x from device %s " % (addr, devAddr)) return int(out, 16) def write(self, devAddr, addr, val, width="L"): if not (devAddr.startswith("pci")): devAddr = "pci" + devAddr cmd = "pciconf -w %s 0x%x 0x%x" % (devAddr, addr, val) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError( "Failed to write 0x%x to address 0x%x to device %s " % (val, addr, devAddr)) return def isMellanoxDevice(self, devAddr): cmd = "pciconf -r %s 0x0.w" % devAddr (rc, output, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to run '%s'" % (cmd)) if "15b3" in output: return True return False def getPciBridgeAddr(self, devAddr): if self.bridgeAddr: # user specified bridge addr return self.bridgeAddr if re.match("^\\d+\\:\\d+\\:\\d+\\:\\d+$", devAddr) is None: raise RuntimeError( "Illegal format for the device PCI address: %s" % devAddr) busNum = devAddr.split(":")[1] cmd = "sysctl -a | grep \"secbus: %s\"" % busNum (rc, out, _) = cmdExec(cmd) if rc != 0: raise NoPciBridgeException( "Failed to get Bridge Device for the given PCI device! You might be running on a Virtual Machine!") linesCount = len(out.splitlines()) if (linesCount == 0): raise RuntimeError( "There is no secbus with the value: %s" % busNum) if (linesCount > 1): raise RuntimeError( "Found more than one secbus with the value: %s" % busNum) hostBridge = "pcib%s" % (out.split("pcib.")[1].split(".")[0]) # get pci address of hostBridge cmd = "pciconf -l | grep {0}".format(hostBridge) rc, out, _ = cmdExec(cmd) if rc != 0: raise RuntimeError( "Failed to extract PCI bridge address ({0})".format(cmd)) try: # Extract the pci device from the output bridgeDevAddr = out.split()[0].split('@')[1][:-1] except BaseException: raise RuntimeError( "Failed to extract PCI bridge address ({0})".format(out)) return bridgeDevAddr def getPciECapAddr(self, bridgeDev): cmd = "pciconf -lc %s | grep \"cap 10\" | sed -e 's/.*\\[\\([0-9,a-f]*\\)\\].*/\\1/g'" % bridgeDev (rc, capAddr, _) = cmdExec(cmd) if rc != 0 or len(capAddr.strip()) == 0: raise RuntimeError( "Failed to find PCI bridge Pci Express Capability") return int(capAddr, 16) def getMFDeviceList(self, devAddr): MFDevices = [] domainBus = ":".join(devAddr.split(":")[:-2]) domainBus = "pci" + domainBus cmd = "pciconf -l | grep 'chip=0x[0-9,a-f]\\{4\\}15b3 \\|vendor=0x15b3' | grep %s | cut -f1 | cut -d@ -f2" % domainBus (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("failed to get execure: %s" % cmd) out = out.strip().split('\n') for dev in out: MFDevices.append(dev[:-1]) return MFDevices def savePCIConfigurationSpace(self, devAddr, pci_device): self.pciConfSpaceMap[devAddr] = {} pci_device.save_configuration_space() def loadPCIConfigurationSpace(self, devAddr, pci_device, full=True): pci_device.restore_configuration_space() # TODO are we using this class ??? class MlnxPciOpWindows(MlnxPciOp): def __init__(self): super(MlnxPciOpWindows, self).__init__() self.lspciPath = os.path.join("c:", "pciutils-3.3.0", "lspci") self.setPciPath = os.path.join("c:", "pciutils-3.3.0", "setpci") def read(self, devAddr, addr, width="L"): cmd = self.setPciPath + " -s %s 0x%x.%s" % (devAddr, addr, width) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError( "Failed to read address 0x%x from device %s " % (addr, devAddr)) return int(out, 16) def write(self, devAddr, addr, val, width="L"): cmd = self.setPciPath + \ " -s %s 0x%x.%s=0x%x" % (devAddr, addr, width, val) (rc, out, _) = cmdExec(cmd) if rc != 0: raise RuntimeError( "Failed to write 0x%x to address 0x%x to device %s " % (val, addr, devAddr)) return def getPciBridgeAddr(self, devAddr): raise NotImplementedError( "getPciBridgeAddr() not implemented for windows") def getPciECapAddr(self, bridgeDev): raise NotImplementedError( "getPciECapAddr() not implemented for windows") def savePCIConfigurationSpace(self, devAddr, pci_device): raise NotImplementedError( "savePCIConfigurationSpace() not implemented for windows") def loadPCIConfigurationSpace(self, devAddr, pci_device, full=True): raise NotImplementedError( "loadPCIConfigurationSpace() not implemented for windows") class MlnxPciOpFactory(object): def getPciOpObj(self, dbdf): operatingSystem = platform.system() if operatingSystem == "Linux": return MlnxPciOpLinux() elif operatingSystem == "FreeBSD": return MlnxPciOpFreeBSD() elif operatingSystem == "Windows": return MlnxPciOpWindows() else: raise RuntimeError("Unsupported OS: %s" % operatingSystem) ###################################################################### # Description: Perform mst restart # OS Support : Linux. ###################################################################### def mstRestart(busId): global MstFlags if platform.system() == "FreeBSD" or platform.system() == "Windows": return 1 # poll till module ref count is zero before restarting cmd = "lsmod" logger.debug('Execute {0}'.format(cmd)) for _ in range(0, 30): (rc, stdout, _) = cmdExec(cmd) if rc != 0: raise WarningException( "Failed to get the status of the mst module, please restart MST manually") matchedLines = [line for line in stdout.split( '\n') if "mst_pciconf" in line] logger.debug('matchedLines = {0}'.format(matchedLines)) if len(matchedLines) == 0: return 1 if matchedLines[0].split()[-1] == '0': break else: time.sleep(2) cmd = "lspci -s %s" % busId logger.debug('Execute {0}'.format(cmd)) foundBus = False rc = 0 for _ in range(0, 30): (rc, stdout, _) = cmdExec(cmd) if rc == 0 and stdout != "": foundBus = True break else: time.sleep(2) if rc != 0: raise WarningException( "Failed to run lspci command, please restart MST manually") if not foundBus: raise RuntimeError("The device is not appearing in lspci output!") ignore_signals() cmd = "/etc/init.d/mst restart %s" % MstFlags logger.debug('Execute {0}'.format(cmd)) (rc, stdout, stderr) = cmdExec(cmd) if rc != 0: logger.debug('stdout:\n{0}\nstderr:\n{1}'.format(stdout, stderr)) raise WarningException( "Failed to restart MST, please restart MST manually") set_signal_handler() return 0 ###################################################################### # Description: Get Device ID / Device Rev-ID # OS Support : Linux/Windows. ###################################################################### def getDevidFromDevice(device): return mcraRead(device, DEVID_ADDR[0], DEVID_ADDR[1], DEVID_ADDR[2]) ###################################################################### # Description: Check if device is supported # OS Support : Linux/Windows. ###################################################################### def isDevSupp(device): logger.info('isDevSupp() called. Inputs : device = {0}'.format(device)) try: devid = getDevidFromDevice(device) logger.debug('devid = {0:x}'.format(devid)) except Exception as e: raise RuntimeError("Failed to Identify Device: %s, %s" % (device, str(e))) devDict = getDeviceDict(devid) if devDict["name"] in SUPP_DEVICES: return devid else: raise RuntimeError("Unsupported Device: %s (%s)" % (device, devDict["name"])) ###################################################################### # Description: Check if device is a switch # OS Support : Linux/Windows ###################################################################### def isSwitchDevice(device): try: devid = getDevidFromDevice(device) logger.debug('devid = {0:x}'.format(devid)) except Exception as e: raise RuntimeError("Failed to Identify Device: %s, %s" % (device, str(e))) devDict = getDeviceDict(devid) if devDict["name"] in SUPP_SWITCH_DEVICES: return True return False ###################################################################### # Description: Get All PCI Module Paths # OS Support : Linux ###################################################################### def getAllPciModulePaths(): global pciModuleName global pathToPciModuleDir paths = [] for f in os.listdir(pathToPciModuleDir): if os.path.isdir(os.path.join(pathToPciModuleDir, f)): p = os.path.join(pathToPciModuleDir, f, pciModuleName) if os.path.isfile(p): paths.append(p) return paths ###################################################################### # Description: Get PCI Module Path # OS Support : Linux ###################################################################### def getPciModulePath(): global pciModuleName global pathToPciModuleDir cmd = "uname -r" (rc, unameOutput, _) = cmdExec(cmd) if rc != 0: return (False, getAllPciModulePaths()) pathToModule = os.path.join( pathToPciModuleDir, unameOutput.strip(), pciModuleName) if os.path.isfile(pathToModule): return (True, pathToModule) else: return (False, getAllPciModulePaths()) ###################################################################### # Description: Run PPC Pci Reset Module # OS Support: Linux ##################################################################### def runPPCPciResetModule(path, busIds): busIdStr = ",".join(busIds) cmd = "insmod %s pci_dev=%s" % (path, busIdStr) logger.debug(cmd) (rc, out, err) = cmdExec(cmd) if rc != 0: # check if failure is related to SELinux if "Permission denied" in err: chconCmd = "chcon -t modules_object_t %s" % path (rc, out, err) = cmdExec(chconCmd) if rc != 0: return (False, err) (rc, out, err) = cmdExec(cmd) if rc != 0: return (False, err) return (True, "") ###################################################################### # Description: reset PCI of a certain device for PPC setup (special flow) # OS Support : Linux ###################################################################### def resetPciAddrPPC(busIds): logger.debug('resetPciAddrPPC() called. input is {0}'.format(busIds)) # check supported system if platform.system() != "Linux": raise RuntimeError( "Unsupported OS(%s) for PPC reset flow" % (platform.system())) if isModuleLoaded("mst_ppc_pci_reset"): logger.debug('Unload the module "mst_ppc_pci_reset"') cmd = "rmmod mst_ppc_pci_reset" logger.debug(cmd) (rc, out, _) = cmdExec(cmd) if isModuleLoaded("mst_ppc_pci_reset"): raise RuntimeError( "Failed to unload mst_ppc_pci_reset module. please unload it manually and try again.") logger.debug('Load the module "mst_ppc_pci_reset"') (foundModule, path) = getPciModulePath() if foundModule: (res, err) = runPPCPciResetModule(path, busIds) if not res: raise RuntimeError( "Failed to load pci reset module, make sure kernel-mft is installed properly: %s" % err) else: foundWorkingModule = False for p in path: (res, err) = runPPCPciResetModule(path, busIds) if res: foundWorkingModule = True break if not foundWorkingModule: raise RuntimeError("Can not find the module: %s" % pciModuleName) logger.debug('Unload the module "mst_ppc_pci_reset"') cmd = "rmmod mst_ppc_pci_reset" logger.debug(cmd) (rc, out, err) = cmdExec(cmd) if rc != 0: raise RuntimeError( "Failed to unload pci reset module: %s please unload the module manually" % err) ###################################################################### # Description: reset PCI of a certain device for Windows setup (special flow) # OS Support : Windows ###################################################################### def resetPciAddrWindows(dbdf_list): global MstDevObj MstDevObj.mHcaReset(dbdf_list) return ###################################################################### # Description: reset PCI of a certain device for Linux/FBSD setup # OS Support : Linux, FreeBSD ###################################################################### def disablePci(bridgeDev, capAddr): logger.debug('disablePci() called') disableAddr = capAddr + 0x10 width = "L" oldCapDw = PciOpsObj.read(bridgeDev, disableAddr, width) # turn on Link Disable bit logger.debug('Disable PCI bridge {0} Link Control Register address {1:x}'.format( bridgeDev, disableAddr)) newCapDw = oldCapDw | 0x10 logger.debug('old value: {0:x}; new value: {1:x}'.format( oldCapDw, newCapDw)) PciOpsObj.write(bridgeDev, disableAddr, newCapDw, width) return (bridgeDev, disableAddr, oldCapDw, width) def enablePci(bridgeDev, disableAddr, oldCapDw, width): logger.debug('enablePci() called') PciOpsObj.write(bridgeDev, disableAddr, oldCapDw, width) ###################################################################### # Description: reset PCI of a certain device # OS Support : Linux, FreeBSD, Windows ###################################################################### def resetPciAddr(device, devicesSD, driverObj, cmdLineArgs): isPPC = "ppc64" in platform.machine() isWindows = platform.system() == "Windows" busId = DevDBDF # Determine the pci-device to poll (first Mellanox device in the pci tree) if isWindows is False: pci_devices_to_poll_devid = [] root_pci_devices = [] if is_in_internal_host(): # Bluefied (NIC only reset) pci_device_bridge1 = PciOpsObj.getPciBridgeAddr(DevDBDF) pci_device_bridge2 = PciOpsObj.getPciBridgeAddr(pci_device_bridge1) pci_device_bridge3 = PciOpsObj.getPciBridgeAddr(pci_device_bridge2) pci_devices_to_poll_devid.append(pci_device_bridge3) root_pci_devices.append( PCIDeviceFactory().get(pci_device_bridge3, "debug")) else: for dev in [device] + devicesSD: dbdf = mlxfwreset_utils.getDevDBDF(dev, logger) pci_devices_to_poll_devid.append(dbdf) if not isPPC: # PPC can run on VM (no PCI bridge device) pci_device_bridge = PciOpsObj.getPciBridgeAddr(dbdf) root_pci_devices.append( PCIDeviceFactory().get(pci_device_bridge, "debug")) for pci_device_to_poll_devid in pci_devices_to_poll_devid: logger.info('pci_device_to_poll_devid={0}'.format( pci_device_to_poll_devid)) if not isPPC: for root_pci_device in root_pci_devices: logger.info('root_pci_device={0}'.format(root_pci_device.dbdf)) # relevant for ppc(p7) TODO check power8/9 shouldn't use mst-save/load if isWindows is False: logger.info('Save PCI Configuration space ...') # Get all devices that you want to save/load pci configuration devList = PciOpsObj.getMFDeviceList(busId) logger.debug('devList is {0}'.format(devList)) # for each PF/VF save its configuration space pci_device_dict = {} for pciDev in devList: pci_device_object = PCIDeviceFactory().get(pciDev, "debug") pci_device_dict[pciDev] = pci_device_object PciOpsObj.savePCIConfigurationSpace(pciDev, pci_device_object) # Socket Direct - save all buses and PCI configuration for all "other" devices in SD busIdsSD = [] devListsSD = [] for deviceSD in devicesSD: busIdSD = mlxfwreset_utils.getDevDBDF(deviceSD, logger) busIdsSD.append(busIdSD) busIdSD_list = PciOpsObj.getMFDeviceList(busIdSD) logger.debug('Socket Direct List is {0}'.format(devList)) logger.debug("Saving socket direct list ...") for pciDev in busIdSD_list: pci_device_object = PCIDeviceFactory().get(pciDev, "debug") pci_device_dict[pciDev] = pci_device_object PciOpsObj.savePCIConfigurationSpace(pciDev, pci_device_object) devListsSD += busIdSD_list # update FWResetStatusChecker FWResetStatusChecker.UpdateUptimeBeforeReset() # calculate bridge devices to reset and capaddr - we do it before the critical time if not isWindows and not isPPC: bridgeDevs = [] for busId in [busId] + busIdsSD: bridgeDev = PciOpsObj.getPciBridgeAddr(busId) # Link Control Register : PCI_EXPRESS_CAP_OFFS + 0x10 capAddr = PciOpsObj.getPciECapAddr(bridgeDev) bridgeDevs.append((bridgeDev, capAddr)) if SkipMultihostSync or not CmdifObj.isMultiHostSyncSupported(): stopDriver(driverObj) else: # Isolated Smart-NIC support try: cmd = 'echo 0xde31001 > /sys/bus/platform/drivers/mlx-bootctl/fw_reset' rc, _, _ = cmdExec(cmd) if rc == 0: logger.debug( 'GPIO signal was sent from Smart-NIC integrated ARM') # For debug: if signal sent ok, out should be 0x4: # cmd = 'mcra 0xf3404' # rc, out, _ = cmdExec(cmd) # logger.debug("read val of yu.gpio.gpios_bits.gpio_internal.datain = " + str(out)) else: raise Exception except BaseException: logger.debug( 'Not inside Smart-NIC integrated ARM or command is not supported in FW') stopDriverSync(driverObj) logger.debug('start critical time (driver is unloaded)') # Close the mst device because the file handler is about to be removed # In windows we use the mstdevice to execute the reset pci if isWindows is False: MstDevObj.close() for MstDevObjSD in MstDevObjsSD: MstDevObjSD.close() logger.debug('finished to close mst device') printAndFlush("-I- %-40s-" % ("Resetting PCI"), endChar="") ignore_signals() try: if isWindows: dbdf_list = [] for deviceSD in devicesSD: dbdf = mlxfwreset_utils.getDevDBDF(deviceSD, logger) dbdf.encode("utf-8") dbdf_list.append(dbdf) busId.encode("utf-8") dbdf_list.append(busId) resetPciAddrWindows(dbdf_list) elif isPPC: busIdsSD.append(busId) pfs = PciOpsObj.getAllBuses(busIdsSD) resetPciAddrPPC(pfs) else: info = [] # Disable logger.debug('[Timing Test] PCI Disable') for bridgeDev, capAddr in bridgeDevs: info.append(disablePci(bridgeDev, capAddr)) # Sleep logger.debug('sleeping... ({0} sec)'.format( cmdLineArgs.pci_link_downtime)) time.sleep(cmdLineArgs.pci_link_downtime) # Enable if not is_in_internal_host(): logger.debug('[Timing Test] PCI Enable') for info_ii in info: enablePci(*info_ii) except Exception as e: raise RuntimeError( "Failed To reset PCI(Driver starting will be skipped). %s" % str(e)) if isWindows is False: logger.debug( 'WaitForDevice: in case of OS remove/rescan -> wait for pci-device to be part of pci-tree') for pciDevList in [devList] + [devListsSD]: for pciDev in pciDevList: PciOpsObj.waitForDevice(pciDev) # Poll DLL Link Active (required to support AMD - RM #1599465) for root_pci_device in root_pci_devices: # in BlueField's internal host (ARM) the root-port will if not isPPC and not is_in_internal_host() and root_pci_device.dll_link_active_reporting_capable: # sec # return a valid response (blocking) or 0xffff0001 when MAX_WAIT_TIME = 2 # it's not ready (depending on its configuration) poll_start_time = time.time() for _ in range(1000 * MAX_WAIT_TIME): if root_pci_device.dll_link_active == 1: poll_end_time = (time.time() - poll_start_time) * 1000 logger.debug( 'DLL link active is ready after {0} msec'.format(poll_end_time)) break time.sleep(0.001) else: print( "\n-W- DLL link is not active (PCI device {0})".format(root_pci_device.dbdf)) # Wait for FW (Iron) - Read devid MAX_WAIT_TIME = 2 # sec poll_start_time = time.time() for pci_device_to_poll_devid in pci_devices_to_poll_devid: for _ in range(1000 * MAX_WAIT_TIME): # device-id (0x2.W) if PciOpsObj.read(pci_device_to_poll_devid, 0) >> 16 != 0xffff: iron_end_time = (time.time() - poll_start_time) * 1000 logger.debug( 'IRON is ready after {0} msec'.format(iron_end_time)) break time.sleep(0.001) else: print("\n-W- FW is not ready") # Restore PCI configuration ############################# logger.debug('Restore PCI configuration') if isPPC: logger.debug( 'PPC : indication for re-enumeration by MSE bit on each PCI device') for pciDev in devList + devListsSD: pci_device_object = pci_device_dict[pciDev] command_reg = PciOpsObj.read(pciDev, COMMAND_ADDR, "W") logger.debug('command_reg for [{0}]is {1:x}.'.format( pciDev, command_reg)) # command_reg[MSE] - Indication for re-enumeration (OS rescan) if (command_reg & 0x2) == 0: PciOpsObj.loadPCIConfigurationSpace( pciDev, pci_device_object, full=True) else: PciOpsObj.loadPCIConfigurationSpace( pciDev, pci_device_object, full=False) else: logger.debug( 'Indication for re-enumeration is by HotPlug on bridge') to_restore_pci_conf = not ( root_pci_devices[0].hotplug_capable and root_pci_devices[0].hotplug_interrupt_enable) logger.debug('hotplug_capable={0}'.format( root_pci_devices[0].hotplug_capable)) logger.debug('hotplug_interrupt_enable={0}'.format( root_pci_devices[0].hotplug_interrupt_enable)) logger.debug('to_restore_pci_conf={0}'.format(to_restore_pci_conf)) for pciDev in devList + devListsSD: pci_device_object = pci_device_dict[pciDev] if to_restore_pci_conf: PciOpsObj.loadPCIConfigurationSpace( pciDev, pci_device_object, full=True) else: # os re-enumeration PciOpsObj.loadPCIConfigurationSpace( pciDev, pci_device_object, full=False) # Need to re-open the file handler because PCI tree is updated (OS remove/rescan) if isWindows is False: try: MstDevObj.open() except Exception as e: time.sleep(2) MstDevObj.open() try: for MstDevObjSD in MstDevObjsSD: MstDevObjSD.open() except Exception as e: time.sleep(2) for MstDevObjSD in MstDevObjsSD: MstDevObjSD.open() set_signal_handler() printAndFlush("Done") def is_mellanox_device(devAddr): try: return PciOpsObj.isMellanoxDevice(devAddr) except NotImplementedError: # Windows return False def is_pci_bridge_is_mellanox_device(devAddr): try: pci_bridge_device = PciOpsObj.getPciBridgeAddr(devAddr) return is_mellanox_device(pci_bridge_device) except NoPciBridgeException: return False def send_reset_cmd_to_cedar_devices(reset_level, reset_type, reset_sync): # # We are going to send MFRL request for all the Cedar devices on the host. # # Discover all Cedar devices. peripherals = MlnxPeripheralComponents() for pci_device in peripherals.pci_devices: logger.debug("Creating regaccess obj for device %s" % pci_device.get_alias()) pci_device_mst = mtcr.MstDevice(pci_device.get_alias()) pci_device_reg_access = regaccess.RegAccess(pci_device_mst) if is_cedar_device(pci_device.get_cfg_did(), pci_device_reg_access): # Create MFRL for each Cedar device. logger.debug("Creating MFRL for device %s" % pci_device.get_alias()) cedar_device_mfrl = CmdRegMfrl(pci_device_reg_access, logger) # Send MFRL reset. printAndFlush("-I- %-40s-" % ("Sending Reset Command To Fw"), endChar="") logger.debug('[Timing Test] MFRL') cedar_device_mfrl.send(reset_level, reset_type, reset_sync, True) printAndFlush("Done") def send_reset_cmd_to_fw(mfrl, reset_level, reset_type, reset_sync=SyncOwner.TOOL): try: if is_cedar: send_reset_cmd_to_cedar_devices(reset_level, reset_type, reset_sync) return printAndFlush("-I- %-40s-" % ("Sending Reset Command To Fw"), endChar="") logger.debug('[Timing Test] MFRL') mfrl.send(reset_level, reset_type, reset_sync) printAndFlush("Done") except Exception as e: raise e def is_cedar_device(devid, reg_access_obj=None): res = False reg_access_obj = RegAccessObj if reg_access_obj is None else reg_access_obj devDict = getDeviceDict(devid) if devDict['name'] == 'ConnectX7': psid = reg_access_obj.getPSID() logger.debug("ConnectX7 device with PSID: %s" % psid) if psid in ["MT_0000000891", "MT_0000000929", "MT_0000000937"]: logger.debug("Found Cedar device") res = True return res def is_prometheus_device(devid, reg_access_obj=None): res = False reg_access_obj = RegAccessObj if reg_access_obj is None else reg_access_obj devDict = getDeviceDict(devid) if devDict['name'] == 'ConnectX7': psid = reg_access_obj.getPSID() logger.debug("ConnectX7 device with PSID: %s" % psid) if psid in ["NVD0000000033"]: logger.debug("Found Prometheus device") res = True return res ###################################################################### # Description: Send MFRL to FW in Multihost setup ###################################################################### def sendResetToFWSync(mfrl, reset_level, reset_type): status = CmdifObj.multiHostSyncStatus() if (status.state == SYNC_STATE_GET_READY and status.sync_type != SYNC_TYPE_FW_RESET) or\ status.state == SYNC_STATE_GO: raise RuntimeError( "The fsm register is busy, run \"%s -d reset_fsm_register\" to reset the register." % PROG) elif status.state == SYNC_STATE_IDLE: # First Host arrived logger.debug('[Timing Test] MH SYNC send GET_READY (first host)') CmdifObj.multiHostSync(SYNC_STATE_GET_READY, SYNC_TYPE_FW_RESET, 0x1) # WA: send again because in single host case the firmware will wait for a second call (fw bug ??) CmdifObj.multiHostSync(SYNC_STATE_GET_READY, SYNC_TYPE_FW_RESET) logger.info('send SYNC_STATE_GET_READY command') try: send_reset_cmd_to_fw(mfrl, reset_level, reset_type) except CmdNotSupported: CmdifObj.multiHostSync(SYNC_STATE_IDLE, SYNC_TYPE_FW_RESET) raise RuntimeError("Command is not supported") except Exception as e: CmdifObj.multiHostSync(SYNC_STATE_IDLE, SYNC_TYPE_FW_RESET) raise e # Socket Direct - send SYNC_STATE_GET_READY for all other devices in SD for CmdifObjSD in CmdifObjsSD: CmdifObjSD.multiHostSync(SYNC_STATE_GET_READY, SYNC_TYPE_FW_RESET) logger.info('send SYNC_STATE_GET_READY command (SD)') # TODO (update after GA) and status.sync_type == SYNC_TYPE_FW_RESET elif status.state == SYNC_STATE_GET_READY: logger.debug('[Timing Test] MH SYNC send GET_READY') CmdifObj.multiHostSync(SYNC_STATE_GET_READY, SYNC_TYPE_FW_RESET) logger.info('send SYNC_STATE_GET_READY command') # Socket Direct - send SYNC_STATE_GET_READY for all other devices in SD - to support MH device that connected as socket direct (4 'devices' on 2 servers) for CmdifObjSD in CmdifObjsSD: CmdifObjSD.multiHostSync(SYNC_STATE_GET_READY, SYNC_TYPE_FW_RESET) logger.info('send SYNC_STATE_GET_READY command') # TODO (update after GA) else: reset_fsm_register ###################################################################### # Description: Stop Driver ###################################################################### def stopDriver(driverObj): if driverObj.getDriverStatus() == MlnxDriver.DRIVER_LOADED: printAndFlush("-I- %-40s-" % ("Stopping Driver"), endChar="") try: driverObj.driverStop() logger.debug('[Timing Test] Driver unbind') except Exception as e: # try again, that will prevent problems in multihost time.sleep(1) driverObj.driverStop() printAndFlush("Done") ###################################################################### # Description: Stop Driver in Multihost setup ###################################################################### def stopDriverSync(driverObj): def reloadDriver(driverObj): if driverObj.getDriverStatus() == MlnxDriver.DRIVER_LOADED: try: driverObj.driverStart() msg = " (driver was reloaded)" except Exception as e: msg = " (driver failed to reload: %s)" % str(e) return msg else: return "" status = CmdifObj.multiHostSyncStatus() timestamp = time.time() print_waiting_msg = True while (status.state == SYNC_STATE_GET_READY and status.sync_type == SYNC_TYPE_FW_RESET): status = CmdifObj.multiHostSyncStatus() diffTime = time.time() - timestamp if diffTime > 180: raise RuntimeError("fsm sync timed out") if print_waiting_msg and diffTime > 2: print( "Waiting for %s to run on all other hosts, press 'ctrl+c' to abort" % PROG) print_waiting_msg = False time.sleep(0.01) logger.debug('[Timing Test] MH SYNC state is GO') if status.state != SYNC_STATE_GO or status.sync_type != SYNC_TYPE_FW_RESET: raise RuntimeError( "Operation failed, the fsm register state or type is not as expected") stopDriver(driverObj) logger.debug('[Timing Test] MH SYNC send GO') CmdifObj.multiHostSync(SYNC_STATE_GO, SYNC_TYPE_FW_RESET) # Socket Direct - send SYNC_STATE_GO for all other devices in SD for CmdifObjSD in CmdifObjsSD: CmdifObjSD.multiHostSync(SYNC_STATE_GO, SYNC_TYPE_FW_RESET) status = CmdifObj.multiHostSyncStatus() timestamp = time.time() print_waiting_msg = True while status.host_ready != 0x0: status = CmdifObj.multiHostSyncStatus() if status.sync_type != SYNC_TYPE_FW_RESET or status.state != SYNC_STATE_GO: errmsg = "Operation failed, the fsm register state or type is not as expected" msg = reloadDriver(driverObj) raise RuntimeError(errmsg + msg) diffTime = time.time() - timestamp if diffTime > 180: errmsg = "fsm sync timed out" msg = reloadDriver(driverObj) raise RuntimeError(errmsg + msg) if print_waiting_msg and diffTime > 2: print("Synchronizing with other hosts...") print_waiting_msg = False time.sleep(0.01) logger.debug('[Timing Test] MH SYNC done') if status.sync_type != SYNC_TYPE_FW_RESET or status.state != SYNC_STATE_GO: # Roei errmsg = "Operation failed, the fsm register state or type is not as expected" msg = reloadDriver(driverObj) raise RuntimeError(errmsg + msg) # raise RuntimeError("Operation failed, the fsm register state or type is not as expected") ###################################################################### # Description: Driver restart (link/managment up/down flow) w/wo PCI RESET # OS Support : Linux ###################################################################### def sendPcnr(regAccess, port_num): try: logger.debug("Sending PCNR...") regAccess.sendPcnr(1, port_num) logger.debug("Sending PCNR - Done") except Exception as e: # port doesn't exist / old FW version, burn FW with allow_pcnr (ini file) logger.debug('Failed to send pcnr. {0}'.format(e)) raise PcnrError def resetFlow(device, devicesSD, reset_level, reset_type, cmdLineArgs, mfrl): global PciOpsObj logger.info('resetFlow() called') all_devices = [device] + devicesSD # A temporary solution to get the pci-device-id (required for SmartNic) # This solution is not good when the user insert device in PCI address format (-d xx:xx.x) pci_device_id = None if platform.system() == "Windows": if '_' in device_global: pci_device_id = int(device_global.split('_')[0][2:]) skipDriverFinal = skipDriver or reset_level == CmdRegMfrl.WARM_REBOOT driverObj = MlnxDriverFactory().getDriverObj( logger, skipDriverFinal, all_devices, pci_device_id) try: # Check if device with PCIe switch (BL) is supported # Skip check on Windows OS (is_pci_bridge_is_mellanox_device is not implemented on Windows) if platform.system() != "Windows" and is_pci_bridge_is_mellanox_device(DevDBDF): if platform.system() != "Linux": raise RuntimeError( "Resetting a device that contains a PCIe switch is supported only in Linux") if "ppc64" in platform.machine(): raise RuntimeError( "Resetting a device that contains a PCIe switch is not supported on PPC64") if SkipMultihostSync or not CmdifObj.isMultiHostSyncSupported(): send_reset_cmd_to_fw(mfrl, reset_level, reset_type) else: sendResetToFWSync(mfrl, reset_level, reset_type) try: # PCNR - Reduce link up time (from ~4 sec to ~1.5 sec) # port #0 (will fail if pcnr isn't supported by FW) sendPcnr(RegAccessObj, 0) # port #1 (will fail if HW has only one port) sendPcnr(RegAccessObj, 1) except PcnrError: pass # # Socket direct # for RegAccessSD in RegAccessObjsSD: # try: # sendPcnr(RegAccessSD, 0) # port #0 (will fail if pcnr isn't supported by FW) # sendPcnr(RegAccessSD, 1) # port #1 (will fail if HW has only one port) # except PcnrError: # pass try: driverStat = driverObj.getDriverStatus() except DriverUnknownMode as e: print("-E- Failed to get the driver status: %s" % str(e)) print( "-E- Please make sure the driver is down, and re-run the tool with --skip_driver") raise e if reset_level == CmdRegMfrl.PCI_RESET: # reset PCI resetPciAddr(device, devicesSD, driverObj, cmdLineArgs) elif reset_level == CmdRegMfrl.WARM_REBOOT: if SkipMultihostSync or not CmdifObj.isMultiHostSyncSupported(): stopDriver(driverObj) else: stopDriverSync(driverObj) rebootMachine() # Wait for FW to be ready to get ICMD try: wait_for_fw_ready(device) # bug 1980064 ('mst driver' is non-operational after PCI reset) except BaseException: logger.warning( "wait_for_fw_ready failed. Waiting 1 sec and continue") time.sleep(1) logger.debug('end critical time (start to load driver)') if driverStat == MlnxDriver.DRIVER_LOADED: printAndFlush("-I- %-40s-" % ("Starting Driver"), endChar="") logger.debug('[Timing Test] Driver Bind') driverObj.driverStart() printAndFlush("Done") logger.debug('UpdateUptimeAfterReset') FWResetStatusChecker.UpdateUptimeAfterReset() # we close MstDevObj to allow a clean operation of mst restart MstDevObj.close() for MstDevObjSD in MstDevObjsSD: # Roei close mst devices for all "other" devices MstDevObjSD.close() if SkipMstRestart == False and platform.system() == "Linux" and not IS_MSTFLINT: printAndFlush("-I- %-40s-" % ("Restarting MST"), endChar="") if mstRestart(DevDBDF) == 0: printAndFlush("Done") else: printAndFlush("Skipped") except Exception as e: reset_fsm_register() printAndFlush("Failed") raise e return ###################################################################### # Description: Warm reboot reset Flow ###################################################################### def rebootMachine(): printAndFlush("-I- %-40s-" % ("Sending reboot command to machine"), endChar="") if platform.system() == "Windows": cmd = "shutdown /r" else: cmd = "reboot" rc, _, _ = cmdExec(cmd) if rc == 0: printAndFlush("Done") else: printAndFlush("Failed") raise RuntimeError( "Failed to reboot machine please reboot machine manually") ###################################################################### # BF3 reset ###################################################################### def bluefield_reset(mfrl, DevDBDF, dtor_result): if is_bluefield is False: return logger.debug('bluefield reset workflow started') pci_device_bridge = PciOpsObj.getPciBridgeAddr(DevDBDF) root_pci_device = PCIDeviceFactory().get(pci_device_bridge, "debug") check_if_pci_link_is_down(root_pci_device, mfrl, dtor_result) check_if_pci_link_is_up(root_pci_device, dtor_result) def check_if_pci_link_is_down(root_pci_device, mfrl, dtor_result): nic_driver_to_be_unloaded = 60000 # 1 minute in milliseconds. timeout_in_milliseconds_until_the_pci_link_goes_down = nic_driver_to_be_unloaded + get_timeout_in_miliseconds(dtor_result, "DRIVER_UNLOAD_AND_RESET_TO") logger.debug('timeout_in_milliseconds_until_the_pci_link_goes_down = {0}'.format(timeout_in_milliseconds_until_the_pci_link_goes_down)) # Send MFRL in order to check the reset state. # Verify if we won't enter the loop. is_in_shutdown_progress = check_if_shut_down_in_progress(mfrl) start_time = time.time() # Continuously monitoring the active register of the DLL link until the link goes down while root_pci_device.dll_link_active == 1: if is_in_shutdown_progress is False: is_in_shutdown_progress = check_if_shut_down_in_progress(mfrl) check_if_elapsed_time(start_time, "up", timeout_in_milliseconds_until_the_pci_link_goes_down / 1000) logger.debug("Link is down") def get_timeout_in_miliseconds(dtor_result, timeout): timeout_value = dtor_result[timeout].to_value timeout_multiplier = dtor_result[timeout].to_multiplier if timeout_multiplier == 0x0: # Time in milliseconds. return timeout_value elif timeout_multiplier == 0x1: # Time in seconds. return (timeout_value * 1000) elif timeout_multiplier == 0x2: # Time in minutes. return (timeout_value * 60 * 1000) elif timeout_multiplier == 0x3: # Time in hours. return (timeout_value * 60 * 60 * 1000) else: raise RuntimeError("Unknown timeout multiplier, exit..") def check_if_pci_link_is_up(root_pci_device, dtor_result): timeout_in_milliseconds_until_the_pci_link_goes_up = get_timeout_in_miliseconds(dtor_result, "PCIE_TOGGLE_TO") start_time = time.time() logger.debug('timeout_in_milliseconds_until_the_pci_link_goes_up = {0}'.format(timeout_in_milliseconds_until_the_pci_link_goes_up)) # Continuously monitoring the active register of the DLL link until the link goes up while root_pci_device.dll_link_active == 0: check_if_elapsed_time(start_time, "down", timeout_in_milliseconds_until_the_pci_link_goes_up / 1000) logger.debug("Link is up") def check_if_elapsed_time(start_time, state, timeout): current_time = time.time() elapsed_time = current_time - start_time if elapsed_time >= timeout: raise RuntimeError("The PCI link is still {0} even after the expected time ({1}) seconds has passed. Exiting the process.".format(state, timeout)) def check_if_shut_down_in_progress(mfrl): res = False try: # Send MFRL in order to check the reset state. mfrl.read() except BaseException: pass else: if mfrl.is_reset_state_in_progress() is True: print("Arm OS shut down in progress, the completion of the process may take several minutes.") res = True return res ###################################################################### # Description: execute sync 1 reset ###################################################################### def execute_driver_sync_reset(mfrl, reset_level, reset_type): logger.debug('UpdateUptimeBeforeReset') FWResetStatusChecker.UpdateUptimeBeforeReset() try: send_reset_cmd_to_fw(mfrl, reset_level, reset_type, SyncOwner.DRIVER) except regaccess.RegAccException as e: logger.debug('UpdateUptimeAfterReset') FWResetStatusChecker.UpdateUptimeAfterReset() if FWResetStatusChecker.GetStatus() == FirmwareResetStatusChecker.FirmwareResetStatusFailed: exception_str = "MGIR.uptime check failed after MFRL failure: {}".format(str(e)) raise Exception(exception_str) else: logger.debug("MFRL sync 1 worked although MFRL returned with error: {0}".format(e)) printAndFlush("Done") else: # Adding a sleep for cases where reset didn't take place yet so MGIR.uptime wasn't reset yet time.sleep(1) logger.debug('UpdateUptimeAfterReset') FWResetStatusChecker.UpdateUptimeAfterReset() ###################################################################### # Description: execute sync 1 reset for BF ###################################################################### def execute_driver_sync_reset_bf(mfrl, reset_level, reset_type): logger.debug('UpdateUptimeBeforeReset') FWResetStatusChecker.UpdateUptimeBeforeReset() try: mfrl_error = None dtor_result = RegAccessObj.getDTOR() # The maximum reset time for HCA or BF2/3 in NIC mode is PCI_SYNC_UPDATE_TO + PCIE_TOGGLE_TO (probably 4 seconds) sync_reset_TO = get_timeout_in_miliseconds(dtor_result, "PCI_SYNC_UPDATE_TO") toggle_TO = get_timeout_in_miliseconds(dtor_result, "PCIE_TOGGLE_TO") send_reset_cmd_to_fw(mfrl, reset_level, reset_type, SyncOwner.DRIVER) except regaccess.RegAccException as e: mfrl_error = str(e) except Exception as e: raise e finally: time.sleep((sync_reset_TO + toggle_TO) / 1000) logger.debug('UpdateUptimeAfterReset') FWResetStatusChecker.UpdateUptimeAfterReset() if FWResetStatusChecker.GetStatus() == FirmwareResetStatusChecker.FirmwareResetStatusFailed: if mfrl_error and "Method not supported" in mfrl_error: raise Exception(mfrl_error) # BF2/3 full chip reset flow. bluefield_reset(mfrl, DevDBDF, dtor_result) FWResetStatusChecker.UpdateUptimeAfterReset() if FWResetStatusChecker.GetStatus() == FirmwareResetStatusChecker.FirmwareResetStatusFailed: raise Exception("BF reset flow failed based on MGIR") elif mfrl_error: logger.debug("MFRL sync 1 worked although MFRL returned with error: {0}".format(mfrl_error)) ###################################################################### # Description: execute reset level for device ###################################################################### def execResLvl(device, devicesSD, reset_level, reset_type, reset_sync, cmdLineArgs, mfrl): # mpcir usage removed due to RM #2214400 # # In new FW, the FW doesn't need this command any more # if mfrl.is_phy_less_reset(reset_type): # logger.debug('[Timing Test] MPCIR') # mpcir.prepare_for_phyless_fw_upgrade() if reset_level == mfrl.LIVE_PATCH: send_reset_cmd_to_fw(mfrl, reset_level, reset_type) elif reset_level in [mfrl.PCI_RESET, mfrl.WARM_REBOOT]: if reset_sync == SyncOwner.DRIVER: if is_bluefield is True: execute_driver_sync_reset_bf(mfrl, reset_level, reset_type) else: execute_driver_sync_reset(mfrl, reset_level, reset_type) else: resetFlow(device, devicesSD, reset_level, reset_type, cmdLineArgs, mfrl) else: raise RuntimeError("Unknown reset level") ###################################################################### # Description: Search given mst status output for net entity device name # and return mst device path. # OS Support : Linux ###################################################################### def map2DevPathAux(mstOutput, device): for l in mstOutput.split('\n'): lineList = l.split() if device in lineList: if len(lineList) > 2: d = lineList[1] if d == "NA": d = lineList[2] return d return None ###################################################################### # Description: Convert net entity device name to mst device path. # OS Support : Linux ###################################################################### def map2DevPath(device): deviceStartsWith00000 = device.startswith("0000:") if deviceStartsWith00000: device = mlxfwreset_utils.removeDomainFromAddress(device) cmd = "mst status -v" (rc, output, _) = cmdExec(cmd) if rc != 0: raise RuntimeError("Failed to run: " + cmd) d = map2DevPathAux(output, device) if d is not None: return d # if not found and the device starts with 0000 try again with 0000 if deviceStartsWith00000: d = map2DevPathAux(output, "0000:" + device) if d is not None: return d raise RuntimeError( "Can not find path of the provided mst device: " + device) ###################################################################### # Description: provide host/nic reset flow ###################################################################### def reset_flow_host(device, args, command): # open reg access obj global MstDevObj global RegAccessObj global SkipMstRestart global PciOpsObj global MstFlags global CmdifObj global SkipMultihostSync global DevDBDF global skipDriver global FWResetStatusChecker # Exit in case of virtual-machine (not implemented for FreeBSD and Windows) if command == "reset" and platform.system() == "Linux" and "ppc64" not in platform.machine() and "xenenterprise" not in platform.platform(): rc, out, _ = cmdExec('lscpu') if rc == 0: if "Hypervisor vendor" in out: raise RuntimeError( "The tool is not supported on virtual machines") else: logger.debug( "Failed to execute 'lscpu' command rc = {0}".format(rc)) if platform.system() == "Linux": # Convert ib-device , net-device to mst-device(mst started) or pci-device if IS_MSTFLINT: if device.startswith('mlx') and not device.startswith(mlxfwreset_utils.MLX5CTL_PREFIX): driver_path = '/sys/class/infiniband/{0}/device'.format(device) try: device = os.path.basename(os.readlink(driver_path)) except BaseException: raise RuntimeError( 'Failed to Identify Device: {0}'.format(device)) else: device = map2DevPath(device) # function takes ~330msec - TODO remove it if you need performace devid = isDevSupp(device) reset_sync = args.reset_sync if args.reset_sync is not None else get_default_reset_sync(devid, args.reset_level) if args.reset_sync == SyncOwner.TOOL and command == "reset" and is_uefi_secureboot() \ and args.reset_level != CmdRegMfrl.WARM_REBOOT: # The tool is using sysfs to access PCI config # and it's restricted on UEFI secure boot raise RuntimeError( "The tool supports only reset-level 4 on UEFI Secure Boot") DevDBDF = mlxfwreset_utils.getDevDBDF(device, logger) logger.info('device domain:bus:dev.fn (DBDF) is {0}'.format(DevDBDF)) SkipMstRestart = args.no_mst_restart skipDriver = args.skip_driver SkipMultihostSync = args.skip_fsm_sync MstDevObj = mtcr.MstDevice(device) RegAccessObj = regaccess.RegAccess(MstDevObj) CmdifObj = cmdif.CmdIf(MstDevObj) PciOpsObj = MlnxPciOpFactory().getPciOpObj(DevDBDF) mfrl = CmdRegMfrl(RegAccessObj, logger) # mpcir = CmdRegMpcir(RegAccessObj) mcam = CmdRegMcam(RegAccessObj) mrsi = CmdRegMrsi(RegAccessObj) if is_prometheus_device(devid): raise RuntimeError("Prometheus device is not supported") logger.info('Check if device is livefish') DevMgtObj = dev_mgt.DevMgt(MstDevObj) # check if device is in livefish if DevMgtObj.isLivefishMode() == 1: raise RuntimeError( "%s is not supported for device in Flash Recovery mode" % PROG) # Check if other process is accessing the device (burning the device) # Supported on Windows OS only if platform.system() == "Windows": from tools_sync import ToolsSync if ToolsSync(MstDevObj.mf).lock() == False: raise RuntimeError( "Other tool is accessing the device! Please try again later") # Socket Direct - Create a list of command i/f for all "other" devices global CmdifObjsSD global MstDevObjsSD global RegAccessObjsSD devicesSD = [] if command == "reset" and not args.skip_socket_direct: try: peripherals = MlnxPeripheralComponents() usr_pci_device = peripherals.get_pci_device(device) socket_direct_pci_devices = peripherals.get_socket_direct_pci_devices( usr_pci_device) for socket_direct_pci_device in socket_direct_pci_devices: devicesSD.append(socket_direct_pci_device.get_alias()) for deviceSD in devicesSD: MstDevObjsSD.append(mtcr.MstDevice(deviceSD)) RegAccessObjsSD.append(regaccess.RegAccess(MstDevObjsSD[-1])) CmdifObjsSD.append(cmdif.CmdIf(MstDevObjsSD[-1])) except BaseException: logger.warning("Failed to check if device is Socket Direct!") devicesSD = [] for MstDevObjSD in MstDevObjsSD: MstDevObjSD.close() MstDevObjsSD = [] CmdifObjsSD = [] RegAccessObjsSD = [] MstFlags = "" if (args.mst_flags is None) else args.mst_flags logger.info('Create FWResetStatusChecker') FWResetStatusChecker = FirmwareResetStatusChecker(RegAccessObj) try: if args.pci_bridge: PciOpsObj.setPciBridgeAddr(args.pci_bridge[0]) except NotImplementedError as re: if platform.system() == "Windows": pass else: raise re print("") devDict = getDeviceDict(devid) if devDict['name'] in ['BlueField2', 'BlueField3']: global is_bluefield is_bluefield = True if command == "query": print(mfrl.query_text(is_cedar_device(devid))) tool_owner_support = True if platform.system() == "Linux" and is_bluefield: tool_owner_support = False print(mcam.reset_sync_query_text(tool_owner_support)) if mcam.is_mrsi_supported(): print(mrsi.query_text(is_bluefield)) elif command == "reset": if is_cedar_device(devid): if args.reset_level is None: args.reset_level = CmdRegMfrl.WARM_REBOOT if args.reset_level is not CmdRegMfrl.WARM_REBOOT: raise RuntimeError("Only reboot is supported for Cedar device") else: global is_cedar is_cedar = True reset_level = mfrl.default_reset_level( ) if args.reset_level is None else args.reset_level # print(" * reset-level is '{0}' ({1})".format(reset_level, mfrl.reset_level_description(reset_level))) if mfrl.is_reset_level_supported(reset_level) is False: raise RuntimeError( "Reset-level '{0}' is not supported in the current state of this device".format(reset_level)) reset_type = mfrl.default_reset_type() if args.reset_type is None else args.reset_type # print(" * reset-type is '{0}' ({1})".format(reset_type, mfrl.reset_type_description(reset_type))) if mfrl.is_reset_type_supported(reset_type) is False: raise RuntimeError( "Reset-type '{0}' is not supported in the current state of this device".format(reset_type)) if args.reset_type and mfrl.is_reset_level_support_reset_type(reset_level) is False: raise RuntimeError( "Reset-level '{0}' is not supported with reset-type '{1}'".format(reset_level, reset_type)) if reset_sync == SyncOwner.DRIVER and mcam.is_reset_by_fw_driver_sync_supported() is False: raise RuntimeError( "Synchronization by driver is not supported in the current state of this device") if reset_sync != SyncOwner.TOOL and reset_level != CmdRegMfrl.PCI_RESET: raise RuntimeError( "Reset-sync '{0}' is not supported with reset-level '{1}'".format(reset_sync, reset_level)) minimal_or_requested = 'Minimal' if args.reset_level is None else 'Requested' print("{0} reset level for device, {1}:\n".format( minimal_or_requested, device)) print("{0}: {1}".format(reset_level, mfrl.reset_level_description(reset_level))) if CmdRegMfrl.is_reset_level_trigger_is_pci_link(reset_level) and mcam.is_pci_rescan_required_supported() and mfrl.is_pci_rescan_required(): print("-W- PCI rescan is required after device reset.") if is_bluefield: print("Please be aware that resetting the Bluefield may take several minutes. Exiting the process in the middle of the waiting period will not halt the reset") AskUser("Continue with reset", args.yes) execResLvl(device, devicesSD, reset_level, reset_type, reset_sync, args, mfrl) if FWResetStatusChecker.GetStatus() == FirmwareResetStatusChecker.FirmwareResetStatusFailed: reset_fsm_register() print("-E- Firmware reset failed, retry operation or reboot machine.") return 1 else: print("-I- FW was loaded successfully.") elif command == "reset_fsm_register": reset_fsm_register() print("-I- FSM register was reset successfully.") return 0 ###################################################################### # Description: provide switch reset flow ###################################################################### def reset_flow_switch(device, args, command): global MstDevObj global RegAccessObj global FWResetStatusChecker MstDevObj = mtcr.MstDevice(device) RegAccessObj = regaccess.RegAccess(MstDevObj) if not is_fw_ready(device): raise RuntimeError("FW is not ready to handle ICMD") DevMgtObj = dev_mgt.DevMgt(MstDevObj) if DevMgtObj.is_mlnx_os(): raise RuntimeError("fwreset is not allowed on switch sdk") # Check if device is connected via IB, as this method is not supported if DevMgtObj.is_ib_access(): raise RuntimeError("Switch FW reset is not supported via IB") # Check if other process is accessing the device (burning the device) # Supportted on Windows OS only if platform.system() == "Windows": from tools_sync import ToolsSync if ToolsSync(MstDevObj.mf).lock() == False: raise RuntimeError( "Other tool is accessing the device! Please try again later") logger.info('Create FWResetStatusChecker') FWResetStatusChecker = FirmwareResetStatusChecker(RegAccessObj) if command == "query": raise RuntimeError("query is not supported for switch devices") elif command == "reset": AskUser("Continue with reset", args.yes) logger.debug('UpdateUptimeBeforeReset') FWResetStatusChecker.UpdateUptimeBeforeReset() if not is_fw_ready(device): raise RuntimeError("FW is not ready to handle ICMD") RegAccessObj.sendMRSR(0x1) # Min wait time until fw is ready to answer time.sleep(5) # Polling until fw is ready for i in range(10): if i == 10: raise Exception( "Timeout waiting for FW to respond after reset command sent") time.sleep(1) try: if is_fw_ready(device): logger.debug("FW is ready after = " + str(i) + " seconds") break except BaseException: logger.debug("FW is still not ready after = " + str(i) + " seconds") logger.debug('UpdateUptimeAfterReset') FWResetStatusChecker.UpdateUptimeAfterReset() if FWResetStatusChecker.GetStatus() == FirmwareResetStatusChecker.FirmwareResetStatusFailed: print("-E- Firmware reset failed, retry operation or reboot machine.") return 1 else: print("-I- FW reset success.") return 0 ###################################################################### # Description: Returns default reset sync ###################################################################### def get_default_reset_sync(devid, reset_level): reset_sync = SyncOwner.TOOL devDict = getDeviceDict(devid) if platform.system() == "Linux" and reset_level != CmdRegMfrl.WARM_REBOOT and devDict.get('allowed_sync_method'): reset_sync = devDict['allowed_sync_method'] return reset_sync ###################################################################### # Description: Main ###################################################################### def main(): global logger global IS_MSTFLINT if platform.system() not in SUPP_OS: print("-E- Unsupported OS.") return 1 if platform.system() != "Windows" and os.geteuid() != 0: print("-E- Only root user can run this tool.") return 1 if IS_MSTFLINT and "ppc64" in platform.machine(): print("-E- Mstfwreset is not supported on PPC64 platforms") return 1 parser = argparse.ArgumentParser(description=DESCRIPTION, formatter_class=argparse.RawDescriptionHelpFormatter, prog=PROG, epilog=CmdRegMfrl.descriptions(), add_help=False) # options arguments options_group = parser.add_argument_group('Options') options_group.add_argument('--device', '-d', required=True, help=': Device to work with') options_group.add_argument('--level', '-l', type=int, choices=CmdRegMfrl.reset_levels(), dest='reset_level', help=': Run reset with the specified reset-level') options_group.add_argument('--type', '-t', type=int, choices=CmdRegMfrl.reset_types(), dest='reset_type', help=': Run reset with the specified reset-type') options_group.add_argument('--sync', type=int, choices=[SyncOwner.TOOL, SyncOwner.DRIVER], dest='reset_sync', help=': Run reset with the specified reset-sync. Sync 0 flow is not supported by BlueField2 and BlueField3 devices') options_group.add_argument('--yes', '-y', help=': answer "yes" on prompt', action="store_true") options_group.add_argument('--skip_driver', '-s', help=": Skip driver start/stop stage (driver must be stopped manually)", action="store_true") options_group.add_argument('--mst_flags', '-m', help=": Provide mst flags to be used when invoking mst restart step. For example: --mst_flags=\"--with_i2cdev\"" if platform.system() == "Linux" and not IS_MSTFLINT else argparse.SUPPRESS) options_group.add_argument('--version', '-v', help=': Print tool version', action="version", version=tools_version.GetVersionString(PROG, TOOL_VERSION)) options_group.add_argument('--help', '-h', help=': show this help message and exit', action="help") # hidden flag for skipping mst restart when performing pci reset options_group.add_argument('--no_mst_restart', action="store_true", help=argparse.SUPPRESS) # hidden flag for specifying the host bridge of the device for the PCI reset stage options_group.add_argument('--pci_bridge', nargs=1, help=argparse.SUPPRESS) options_group.add_argument('--skip_fsm_sync', action="store_true", help=argparse.SUPPRESS) # Skip on the self discover devices logic for socket direct(option to disable the feature in case of bug) options_group.add_argument('--skip_socket_direct', action="store_true", help=argparse.SUPPRESS) # log level options_group.add_argument('--log', choices=['critical', 'error', 'warning', 'info', 'debug'], help=argparse.SUPPRESS) def check_positive_float(val): try: val = float(val) assert val >= 0 except BaseException: raise argparse.ArgumentTypeError( "{0} is an invalid positive float value".format(val)) return val # configuration of sleep-time (sec) between 'disable-pci' to 'enable-pci' options_group.add_argument('--pci_link_downtime', type=check_positive_float, default=1.25, help=argparse.SUPPRESS) # command arguments command_group = parser.add_argument_group('Commands') command_group.add_argument('command', nargs=1, choices=["q", "query", "r", "reset", "reset_fsm_register"], help=': query: Query reset Level.\n reset: Execute reset.\n reset_fsm_register: Reset the fsm register.') args = parser.parse_args() device = args.device global device_global # required for reset_fsm_register when exiting with ctrl+c/exception (later think how to move the global) device_global = args.device command = args.command[0] if command in ["r", "reset"]: command = "reset" elif command in ["q", "query"]: command = "query" elif command in ["reset_fsm_register"]: command = "reset_fsm_register" # logger logger = LoggerFactory().get('mlxfwreset', args.log) # Insert Flow here if isSwitchDevice(device): return reset_flow_switch(device, args, command) else: return reset_flow_host(device, args, command) if __name__ == '__main__': rc = 0 try: set_signal_handler() rc = main() except NoError as e: print("-I- %s." % str(e)) except WarningException as e: print("-W- %s." % str(e)) except Exception as e: print("-E- %s." % str(e)) rc = 1 sys.exit(rc) mstflint-4.26.0/small_utils/Makefile.am0000644000175000017500000000743714522641732020302 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in PYTHON_WRAPPER_SCRIPT = ../common/python_wrapper AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common -I$(top_builddir)/common -I$(top_srcdir)/mvpd $(COMPILER_FPIC) bin_PROGRAMS = \ mstmread \ mstmwrite \ mstmcra \ mstmtserver \ mstvpd \ mstcongestion bin_SCRIPTS = mstfwreset mstmread_SOURCES = mread.c mstmread_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmread_LDADD = $(mstmread_DEPENDENCIES) ${LDL} mstmread_LDFLAGS = -static mstmwrite_SOURCES = mwrite.c mstmwrite_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmwrite_LDADD = $(mstmwrite_DEPENDENCIES) ${LDL} mstmwrite_LDFLAGS = -static mstvpd_SOURCES = vpd.c mstvpd_DEPENDENCIES = $(top_builddir)/mvpd/libmvpd.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la mstvpd_LDADD = $(mstvpd_DEPENDENCIES) ${LDL} mstvpd_LDFLAGS = -static mstcongestion_SOURCES = congestion.cpp mstcongestion_DEPENDENCIES = $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstcongestion_LDADD = $(mstcongestion_DEPENDENCIES) ${LDL} mstcongestion_LDFLAGS = -static mstmcra_SOURCES = mcra.c mstmcra_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmcra_LDADD = $(mstmcra_DEPENDENCIES) ${LDL} mstmcra_LDFLAGS = -static mstmtserver_SOURCES = mtserver.c tcp.c tcp.h mstmtserver_CFLAGS = -DMST_UL mstmtserver_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmtserver_LDADD = $(mstmtserver_DEPENDENCIES) ${LDL} mstmtserver_LDFLAGS = -static SUBDIRS = mlxfwresetlib MSTFWRESET_PYTHON_WRAPPER=mstfwreset ${MSTFWRESET_PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ mstfwresetlibdir=$(libdir)/mstflint/python_tools/$(MSTFWRESET_PYTHON_WRAPPER) mlxpcilibdir=$(libdir)/mstflint/python_tools/mlxpci mlxpcilib_DATA = binary_file.py mlxpci_lib.py mstfwresetlib_DATA = $(MSTFWRESET_PYTHON_WRAPPER).py mstflint-4.26.0/small_utils/congestion.h0000644000175000017500000000570414522641732020562 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "cmdparser/cmdparser.h" #include #include #include using namespace std; class CongestionUI : public CommandLineRequester { public: typedef enum { EXIT_STATUS_OK = 0, EXIT_STATUS_ERROR = 1, EXIT_STATUS_USAGE = 2, EXIT_STATUS_DEV_ID_ERR = 3, EXIT_STATUS_CAP_ERR = 4 } exit_status_t; CongestionUI(); ~CongestionUI(); ParseStatus HandleOption(string name, string value); exit_status_t run(int argc, char** argv); void printUsage(); void printError(); void printSuccess(); void printErrorNotSupported(); string getError() { return _errorMsg; }; string getSuccess() { return _successMsg; }; private: typedef enum { MODE_AGGRESSIVE = 0, MODE_DYNAMIC = 1, MODE_NA } cong_mode_t; typedef enum { ACTION_DISABLED = 0, ACTION_DROP = 1, ACTION_MARK = 2, ACTION_NA } cong_action_t; bool setMode(cong_mode_t mode); bool setAction(cong_action_t action); bool query(); void initCmdParser(); bool isDeviceSupported(dm_dev_id_t dev_id); string getModeString(cong_mode_t mode); string getActionString(cong_action_t action); private: CommandLineParser _cmdParser; string _devname; cong_action_t _action; cong_mode_t _mode; mfile* _mf; string _errorMsg; string _successMsg; bool _query; int _ops; u_int8_t _dynamicSupp; u_int8_t _markCqeSupp; u_int8_t _markCnpSupp; }; mstflint-4.26.0/small_utils/mlxpci_lib.py0000644000175000017500000005421014522641732020731 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Author: Ahmed Awwad ahmadaw@mellanox.com Created: 2019-Jan # Python Imports import os import pickle import tempfile import platform import subprocess # Common Imports from binary_file import BinaryFile from mft_logger import LoggerFactory # Common Constant CONFIG_SPACE_PTR_OFFSET = 0X34 MAXIMUN_LEGACY_CAP_SIZE = 0x100 MAX_PCI_OFFSET = 0xfff MELLANOX_PCI_SKIP_LIST = [0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f] # it is harmful for the device to read offset 0x58 and 0x5c for example VENDOR_ID_ADDR = 0X0 DEVICE_ID_ADDR = 0x2 # Legacy Capabilities CAP_PCI_EXPRESS = 0x10 CAP_MSI = 0x05 CAP_MSI_X = 0x11 CAP_POWER_MANAGEMENT = 0x01 CAP_VPD = 0x03 CAP_VSC = 0x09 # Key:ID, value:size CAP_LEGACY_DICT = {CAP_PCI_EXPRESS: 0x3c, CAP_MSI: 0x10, CAP_MSI_X: 0x8, CAP_POWER_MANAGEMENT: 0x8 } # Extended Capabilities CAP_AER = 0X1 CAP_ARI = 0X0e CAP_SRIOV = 0x10 CAP_SECONDRY_PCI_EXPRESS = 0x19 CAP_PHYSICAL_LAYER_GEN4 = 0x26 CAP_DPC = 0x1d CAP_ACS = 0xd CAP_ATS = 0xf # Key:ID, value:size CAP_EXTENDED_DICT = {CAP_AER: 0x48, CAP_SRIOV: 0x40, CAP_SECONDRY_PCI_EXPRESS: 0x10, CAP_PHYSICAL_LAYER_GEN4: 0x40, CAP_DPC: 0x40, CAP_ATS: 0x8 } class NotSupportedDeviceException(Exception): pass class PCIDeviceBase(object): """ Base class that represent a PCI device """ def __init__(self, dbdf, debug_level="critical"): """ """ self.dbdf = dbdf self.logger = LoggerFactory().get('mlxpci', debug_level) temp_dir = tempfile.gettempdir() self.dump_file_path = os.path.join(temp_dir, "{0}.pkl".format(str(self.dbdf))) self._pci_conf_space = {} # : self._pci_express_offset = None def read(self, offset, size, skip_offset_list=None): """ Read from PCI configuration space skip_offset_list is a list of offsets to skip reading for some offsets """ if self._is_valid_range(offset, size) is False: raise Exception("offset [{0}] with size {1} is not a valid offset to read from.".format(offset, size)) self.logger.debug("Reading offset[{0}] with size [{1}] for PCI device[{2}]".format(offset, size, self.dbdf)) def write(self, offset, size, bytes_list): """ Write to PCI configuration space """ if self._is_valid_range(offset, size) is False: raise Exception("offset [{0}] with size {1} is not a valid offset to write.".format(offset, size)) self.logger.debug("Writing [{0}] on offset[{1}] for PCI device[{2}]".format(bytes_list, offset, self.dbdf)) def save_configuration_space(self, to_file=False): """ Save PCI configuration space of the device """ self.logger.debug("Saving configurations for PCI device[{0}]".format(self.dbdf)) visited_capabilities = [] # A variable to save the visited capability to avoid an infinite loop # read and save PCI header 0x0-0x3f self.logger.debug("Reading and saving pci header [0x0-0x3f] ...") self._pci_conf_space["pci_header_start"] = self.read(0x0, 16) self._pci_conf_space["pci_header_bars"] = self.read(0x10, 24) self._pci_conf_space["pci_header_end"] = self.read(0x28, 24) self.logger.debug("Reading and saving legacy list ...") pci_legacy_ptr = self.read_byte(CONFIG_SPACE_PTR_OFFSET) while pci_legacy_ptr != 0: assert 0 < pci_legacy_ptr < MAXIMUN_LEGACY_CAP_SIZE, "Legacy pointer (<{0:#x}>) is out of range".format(pci_legacy_ptr) capability_id = self.read_byte(pci_legacy_ptr) if capability_id in CAP_LEGACY_DICT: if capability_id in visited_capabilities: raise RuntimeError("Capability id {0} was seen before (avoid infinite loop).".format(capability_id)) cap_size = CAP_LEGACY_DICT[capability_id] self._pci_conf_space["{0}_leg".format(capability_id)] = self.read(pci_legacy_ptr, cap_size) visited_capabilities.append(capability_id) pci_legacy_ptr = self.read_byte(pci_legacy_ptr + 1) self.logger.debug("Reading and saving extended list ...") pci_extended_ptr = MAXIMUN_LEGACY_CAP_SIZE visited_capabilities = [] while pci_extended_ptr and pci_extended_ptr != 0xfff: # Reading PCI Extended Configurations on VM will return 0XFFF For FBSD assert pci_extended_ptr >= MAXIMUN_LEGACY_CAP_SIZE, "Extended pointer (<{0:#x}>) is out of range".format(pci_extended_ptr) capability_id = self.read_word(pci_extended_ptr) if capability_id is None: # Reading PCI Extended Configurations on VM will return None break if capability_id in CAP_EXTENDED_DICT: if capability_id in visited_capabilities: raise RuntimeError("Capability id {0} was seen before (avoid infinite loop).".format(capability_id)) cap_size = CAP_EXTENDED_DICT[capability_id] self._pci_conf_space["{0}_ext".format(capability_id)] = self.read(pci_extended_ptr, cap_size) visited_capabilities.append(capability_id) pci_extended_ptr = self.read_word(pci_extended_ptr + 2) >> 4 if to_file: self.logger.debug("Save PCI configuration space to a file ...") with open(self.dump_file_path, 'wb') as f: pickle.dump(self._pci_conf_space, f, pickle.HIGHEST_PROTOCOL) self.logger.debug("PCI Configuration space dict {0} saved to a file {1}".format(self._pci_conf_space, self.dump_file_path)) self._pci_conf_space = {} self.logger.info("PCI Configurations for [{0} was saved successfully]".format(self.dbdf)) def restore_configuration_space(self): """ Restore PCI configuration space of the device """ self.logger.debug("Restoring configurations for PCI device[{0}]".format(self.dbdf)) if self._pci_conf_space == {}: self._pci_conf_space = self._get_pci_conf_from_file() visited_capabilities = [] # Save the visited capability to avoid infinit loop # Read and save PCI configuration space offset from 0x0-0xfff # Reading the pci conf space one time to have better performance cached_data = self.read(offset=0x0, size=MAX_PCI_OFFSET, skip_offset_list=MELLANOX_PCI_SKIP_LIST) # write pci header 0x0-0x3f self.logger.debug("Writing PCI header [0x0-0x3f] ...") self.write(0x10, 24, self._pci_conf_space["pci_header_bars"]) # Restore the BAR self.write(0x0, 16, self._pci_conf_space["pci_header_start"]) # and then restore bar_enable (part of the "start") self.write(0x28, 24, self._pci_conf_space["pci_header_end"]) # Write Legacy list self.logger.debug("Writing back Legacy list ...") pci_legacy_ptr = self._fetch_byte(cached_data, CONFIG_SPACE_PTR_OFFSET) while pci_legacy_ptr: assert 0 < pci_legacy_ptr < MAXIMUN_LEGACY_CAP_SIZE, "Legacy pointer (<{0:#x}>) is out of range".format(pci_legacy_ptr) capability_id = self._fetch_byte(cached_data, pci_legacy_ptr) if capability_id in CAP_LEGACY_DICT and "{0}_leg".format(capability_id) in self._pci_conf_space: if capability_id in visited_capabilities: raise RuntimeError("Capability id {0} was seen before (avoid infinite loop).".format(capability_id)) cap_size = CAP_LEGACY_DICT[capability_id] self.write(pci_legacy_ptr, cap_size, self._pci_conf_space["{0}_leg".format(capability_id)]) visited_capabilities.append(capability_id) pci_legacy_ptr = self._fetch_byte(cached_data, pci_legacy_ptr + 1) # Write Extended list self.logger.debug("Writing back Extended list ...") pci_extended_ptr = MAXIMUN_LEGACY_CAP_SIZE visited_capabilities = [] while pci_extended_ptr and pci_extended_ptr != 0xfff: assert pci_extended_ptr >= MAXIMUN_LEGACY_CAP_SIZE, "Extended pointer (<{0:#x}>) is out of range".format(pci_extended_ptr) capability_id = self._fetch_word(cached_data, pci_extended_ptr) if capability_id is None: # Reading PCI Extended Configurations on VM will return None break if capability_id in CAP_EXTENDED_DICT and "{0}_ext".format(capability_id) in self._pci_conf_space: if capability_id in visited_capabilities: raise RuntimeError("Capability id {0} was seen before (avoid infinite loop).".format(capability_id)) cap_size = CAP_EXTENDED_DICT[capability_id] self.write(pci_extended_ptr, cap_size, self._pci_conf_space["{0}_ext".format(capability_id)]) visited_capabilities.append(capability_id) pci_extended_ptr = self._fetch_word(cached_data, pci_extended_ptr + 2) >> 4 self.logger.info("PCI Configurations for [{0} was restored successfully]".format(self.dbdf)) def _is_valid_range(self, offset, size): """ A method to validate offset and size it returns True if the offset is valid, else False """ return (offset + size <= 0xfffe) def _is_valid_device(self): """ Checks if the device is valid or not """ self._vendor_id = self.read_word(VENDOR_ID_ADDR) self._dev_id = self.read_word(DEVICE_ID_ADDR) if self._vendor_id == 0xffff and self._dev_id == 0xffff: return False return True def _get_pci_express_offset(self): """ Get PCI express offset """ visited_capabilities = [] pci_legacy_ptr = self.read_byte(CONFIG_SPACE_PTR_OFFSET) while pci_legacy_ptr != 0: assert 0 < pci_legacy_ptr < MAXIMUN_LEGACY_CAP_SIZE, "Legacy pointer (<{0:#x}>) is out of range".format(pci_legacy_ptr) capability_id = self.read_byte(pci_legacy_ptr) if capability_id == 0x10: return pci_legacy_ptr if capability_id in CAP_LEGACY_DICT: if capability_id in visited_capabilities: raise RuntimeError("Capability id {0} was seen before (avoid infinite loop).".format(capability_id)) visited_capabilities.append(capability_id) pci_legacy_ptr = self.read_byte(pci_legacy_ptr + 1) raise RuntimeError("Failed to find pci express offset") @property def dll_link_active(self): """ Get dll link active value """ LINK_STATUS_REG_OFFSET = 0x12 link_status_reg_address = self._pci_express_offset + LINK_STATUS_REG_OFFSET link_status_reg_value = self.read_word(link_status_reg_address) dll_value_bin = bin(link_status_reg_value).replace('0b', '').zfill(16)[-13 - 1] # bit 13 return int(dll_value_bin) @property def dll_link_active_reporting_capable(self): """ return Link-capabilites[dll-link-active-reporting-capbale] bit (indicates if dll-link-active is valid) """ LINK_CAPABILITIES_REG_OFFSET = 0xc link_capabilities_reg_address = self._pci_express_offset + LINK_CAPABILITIES_REG_OFFSET link_capabilities_reg_value = self.read_long(link_capabilities_reg_address) dll_reporting_cable_bin = bin(link_capabilities_reg_value).replace('0b', '').zfill(32)[-20 - 1] # bit 20 return int(dll_reporting_cable_bin) @property def hotplug_capable(self): """ Get slot_capabilities[hotplug_capable] """ SLOT_CAPABILITIES_REG_OFFSET = 0x14 slot_capabilities_address = self._pci_express_offset + SLOT_CAPABILITIES_REG_OFFSET slot_capabilities_value = self.read_long(slot_capabilities_address) hotplug_capable_value_str = bin(slot_capabilities_value).replace('0b', '').zfill(32)[-6 - 1] # bit 6 return int(hotplug_capable_value_str) @property def hotplug_interrupt_enable(self): """ Get slot_control[hotplug_interrupt_enable] """ SLOT_CONTROL_REG_OFFSET = 0x18 slot_control_address = self._pci_express_offset + SLOT_CONTROL_REG_OFFSET slot_control_value = self.read_word(slot_control_address) hotplug_interrupt_enable_value_str = bin(slot_control_value).replace('0b', '').zfill(16)[-5 - 1] # bit 5 return int(hotplug_interrupt_enable_value_str) # Helper methods ################ def _fetch_byte(self, cached_pci_conf, offset): """ Helper method that extract a byte from a data that was read before """ return cached_pci_conf[offset] def _fetch_word(self, cached_pci_conf, offset): """ Helper method that extract a word from a data that was read before """ if offset + 1 < len(cached_pci_conf): # Device does not have extended PCI configurationfor VMs byte0 = "{0:x}".format(cached_pci_conf[offset]).zfill(2) byte1 = "{0:x}".format(cached_pci_conf[offset + 1]).zfill(2) return int("{0}{1}".format(byte1, byte0), 16) else: return None def _get_pci_conf_from_file(self): """ This is to load pci conf space from a saved pickle """ self.logger.debug("Reading pci space conf from [{0}]".format(self.dump_file_path)) try: with open(self.dump_file_path, 'rb') as f: return pickle.load(f) except Exception: raise RuntimeError( "{0} doesn't exist. Please save before load".format(self.dump_file_path)) class LinuxPCIDevice(PCIDeviceBase): """ PCI device for Linux """ PCI_CONF_FILE_BASE_PATH = "/sys/bus/pci/devices" def __init__(self, dbdf, debug_level="critical"): super(LinuxPCIDevice, self).__init__(dbdf, debug_level) self._pci_conf_file = "{0}/{1}/config".format(LinuxPCIDevice.PCI_CONF_FILE_BASE_PATH, self.dbdf) self._bin_file = BinaryFile(self._pci_conf_file) if self._is_valid_device() == False: self.logger.debug("Device is not supported to save/load pci configurations") raise NotSupportedDeviceException("Device is not supported to save/load pci configurations") self._pci_express_offset = self._get_pci_express_offset() def read(self, offset, size, skip_offset_list=None): super(LinuxPCIDevice, self).read(offset, size, skip_offset_list) try: return self._bin_file.read(offset=offset, size=size, skip_offset_list=skip_offset_list) except Exception as e: raise RuntimeError("Failed to read offset [{0}] with size [{1}] for PCI device [{2}]. Error is [{3}]".format(offset, size, self.dbdf, e)) def read_byte(self, offset): return self._bin_file.read_byte(offset) def read_word(self, offset): assert offset % 2 == 0, "Offset should be aligned to 2" return self._bin_file.read_word(offset) def read_long(self, offset): assert offset % 4 == 0, "Offset should be aligned to 4" return self._bin_file.read_long(offset) def write(self, offset, size, bytes_list): super(LinuxPCIDevice, self).write(offset, size, bytes_list) self._bin_file.write(bytes_list=bytes_list, offset=offset, size=size) self.logger.debug("Data was Written [{0}] to offset[{1}] for PCI device [{2}]".format(bytes_list, offset, self.dbdf)) class FreeBSDPCIDevice(PCIDeviceBase): """ PCI device for FreeBSD """ def __init__(self, dbdf, debug_level="debug"): super(FreeBSDPCIDevice, self).__init__(dbdf, debug_level) if self._is_valid_device() == False: self.logger.debug("Device is not supported to save/load pci configurations") raise NotSupportedDeviceException("Device is not supported to save/load pci configurations") self._pci_express_offset = self._get_pci_express_offset() def align_to(self, number, base, round="down"): if number % base == 0: ret_number = number elif round == "down": ret_number = number - number % base elif round == "up": ret_number = number - number % base + base else: raise RuntimeError("Please add valid round: up/down") return ret_number def read(self, offset, size, skip_offset_list=None): super(FreeBSDPCIDevice, self).read(offset, size, skip_offset_list) try: if skip_offset_list: read_intervals = BinaryFile._get_read_intervals(skip_offset_list, offset, size) else: read_intervals = [(offset, size)] bytes_as_string = [] for interval_start, interval_size in read_intervals: if interval_size: address_start = self.align_to(number=interval_start, base=4, round="down") address_end = self.align_to(number=(interval_start + interval_size), base=4, round="up") - 1 read_cmd = "pciconf -r {0} {1}:{2}".format(self.dbdf, address_start, address_end) rc, out, err = exec_cmd(read_cmd) if rc: raise RuntimeError("Failed to read using cmd {0}, Error[{1}]".format(read_cmd, err)) pci_hex_data_list = out.replace("\n", " ").split(" ") # Remove new lines + split on spaces for hex_str in pci_hex_data_list: if hex_str != '': # little endian bytes_as_string += [hex_str[6:8], hex_str[4:6], hex_str[2:4], hex_str[0:2]] else: bytes_as_string.append("00") except Exception as e: raise RuntimeError("Failed to read offset [{0}] with size [{1}] for PCI device [{2}]. Error is [{3}]".format(offset, size, self.dbdf, e)) bytes_list = [] start = offset % 4 end = start + size bytes_as_string = bytes_as_string[start:end] for byte in bytes_as_string: if byte != "": bytes_list.append(int(byte, 16)) else: bytes_list.append(None) return bytes_list def read_byte(self, offset): """ Reads 1B from the pci configuration """ return self.read(offset, 1)[0] def read_word(self, offset): """ Reads 2B from the pci configuration """ assert offset % 2 == 0, "Offset should be aligned to 2" bytes_list = self.read(offset, 2) if bytes_list != []: byte0 = "{0:x}".format(bytes_list[0]).zfill(2) byte1 = "{0:x}".format(bytes_list[1]).zfill(2) return int("{0}{1}".format(byte1, byte0), 16) else: return None def read_long(self, offset): """ Read 4B from the pci configuration """ assert offset % 4 == 0, "Offset should be aligned to 4" bytes_list = self.read(offset, 4) if bytes_list != []: byte0 = "{0:x}".format(bytes_list[0]).zfill(2) byte1 = "{0:x}".format(bytes_list[1]).zfill(2) byte2 = "{0:x}".format(bytes_list[2]).zfill(2) byte3 = "{0:x}".format(bytes_list[3]).zfill(2) return int("{0}{1}{2}{3}".format(byte3, byte2, byte1, byte0), 16) else: return None def write(self, offset, size, bytes_list): super(FreeBSDPCIDevice, self).write(offset, size, bytes_list) # assert offset % 4 == 0, "Offset {0} is not aligned to 4".format(offset) for ii, byte in enumerate(bytes_list): write_cmd = "pciconf -wb {0} {1} {2:02x}".format(self.dbdf, offset + ii, byte) rc, _, err = exec_cmd(write_cmd) if rc: raise RuntimeError("Failed to write pci conf space data using cmd {0}, Error[{1}]".format(write_cmd, err)) def exec_cmd(cmd): """ This is for executing commands """ p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=False, shell=True) output = p.communicate() stat = p.wait() return stat, output[0].decode('utf-8'), output[1].decode('utf-8') # RC, Stdout, Stderr class PCIDeviceFactory(object): """ A factory class for get the right PCIDevice """ @staticmethod def get(dbdf, debug_level="critical"): machine_platform = platform.platform() if "Linux" in machine_platform: return LinuxPCIDevice(dbdf, debug_level) elif "FreeBSD" in machine_platform: return FreeBSDPCIDevice(dbdf, debug_level) else: raise RuntimeError("OS [%s] is not supported yet." % machine_platform) mstflint-4.26.0/small_utils/mtserver.c0000644000175000017500000011270114522641732020250 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * * mtserver.c - Mellanox Software tools (mst) server (remote mtcr calls) * * The buffers foramt: * * Send buff: The buffer which send by the client side. * Rcv buff: The buffer which send by the server side. * Mopen: * Send buff: O Dtype DevName * O 0x00000001 /dev/mst/mt25418_pci_cr0 * Send buff(W/O Dtype, deprecated): O DevName * O /dev/mst/mt25418_pci_cr0 * Rcv buff: O VSEC_SUPP * O 1 * * Mclose: * Send buff: C * Rcv buff: O * * Mdevices: * Send buff: L * Rcv buff: O DevsNum * [List of devices] * O 4 * /dev/mst/mtusb-1 * /dev/mst/mt25418_pciconf0 * /dev/mst/mt25418_pci_uar0 * /dev/mst/mt25418_pci_cr0 * * Mread4: * Send buff: R Offset * R 0x000f0014 * Rcv buff: O Value * O 0x00a00190 * * Mwrite4: * Send buff: W Offset Value * W 0x000f0018 0x12345678 * Rcv buff: O * * * Mread64: * Send buff: r AddrWidth SlaveAddr Size Offset * r 0 0x77 0x1 0x0 * Rcv buff: O Size data * O 0x1 00 * * Mwrite64: * Send buff: r AddrWidth SlaveAddr Size Offset data * r 0 0x77 0x1 0x0 00 * Rcv buff: O * * Mread4Block: * Send buff: B Offset size[bytes] * B 0 0x100 (maximum size is 512 bytes) * Rcv buff: O dword1 dword2 ... dwordN * * Mwrite4Block: * Send buff: U Offset size[bytes] dowrd1 dword2 ... dwordN * U 0 0x100 (maximum size is 512 bytes) * Rcv buff: O * * Version: * Send buff: V * Rcv buff: O Version * O 1.4 * * Mi2c_detect: * Send buff: S * Rcv buff: S [SlaveAdrr] ... [SlaveAdrr] * O 0x70 0x48 * * Mpci_change: * Send buff: P * Rcv buff: O * * Mset_addr_space: * Send buff: A * Rcv buff: O */ #ifndef __WIN__ #define PREP_SIGNAL(signal_handler) signal(SIGPIPE, signal_handler); #define WIN_INIT() #define WIN_CLOSE(mf, cmd) #define WIN_WHILE() #else #include #define PREP_SIGNAL(signal_handler) #define WIN_INIT() \ { \ int rc; \ WSADATA wsaData; \ rc = WSAStartup(MAKEWORD(2, 2), &wsaData); \ if (rc != 0) \ { \ printf("-E- Winsock initialization failed (WSAStartup returned %d\n", rc); \ exit(1); \ } \ } #define WIN_CLOSE(mf, cmd) \ { \ if (!mf && cmd != 'V') \ { \ break; \ } \ } #define WIN_WHILE() while (1) #endif #include #include #include #include #include #include #include "mtcr.h" #include "tcp.h" #include "tools_version.h" #include "common/tools_utils.h" /* * Constants */ #define DEF_PORT 23108 #define MAX_DWORDS 128 #define BUF_LEN (MAX_DWORDS * 4 * 3) #define DEV_LEN 2048 int sdebug = 0; int port = DEF_PORT; /* Default port */ /* ////////////////////////////////////////////////////////////////////// */ static void writes_deb(int con, char* s) { writes(con, s, PT_TCP); if (sdebug) { printf("-> %s\n", s); } } /* ////////////////////////////////////////////////////////////////////// */ void write_err(int con) { writen(con, "E ", 2, PT_TCP); writes(con, strerror(errno), PT_TCP); if (sdebug) { printf("-> E %s\n", strerror(errno)); } } /* ////////////////////////////////////////////////////////////////////// */ void write_ok(int con) { writes_deb(con, "O"); } // On windows we don't have simulator in the meantime! #if defined(SIMULATOR) && !defined(__WIN__) #include #include #include #include #include #define FILE_PATH "/tmp/mmap.log" #define NUM_INTS (0x20000000) #define FILE_SIZE (NUM_INTS * sizeof(int)) u_int32_t* cr_space; char sim_str[] = "\t-i[d] - set the device id.\n" "\t-f[ile] - load cr-space snapshot from dump file.\n"; int id; char* dump_file = NULL; int fd; mfile* mopen(const char* name) { TOOLS_UNUSED(name); return (mfile*)0; } mfile* mopend(const char* name, DType dtype) { TOOLS_UNUSED(name); TOOLS_UNUSED(dtype); return (mfile*)1; } int mclose(mfile* mf) { TOOLS_UNUSED(mf); return 0; } int mdevices(char* buf, int len, int mask) { TOOLS_UNUSED(len); TOOLS_UNUSED(mask); strcpy(buf, "Simulator"); return 1; } int mread4(mfile* mf, unsigned int offset, u_int32_t* value) { TOOLS_UNUSED(mf); *value = __be32_to_cpu(cr_space[offset / 4]); return 4; } int mwrite4(mfile* mf, unsigned int offset, u_int32_t value) { TOOLS_UNUSED(mf); cr_space[offset / 4] = __cpu_to_be32(value); // cr_space[offset/4] = value; return 4; } int mi2c_detect(mfile* mf, u_int8_t slv_arr[SLV_ADDRS_NUM]) { TOOLS_UNUSED(mf); TOOLS_UNUSED(slv_arr); return -1; } int mread_i2cblock(mfile* mf, unsigned char i2c_slave, u_int8_t addr_width, unsigned int offset, void* data, int length) { TOOLS_UNUSED(mf); TOOLS_UNUSED(i2c_slave); TOOLS_UNUSED(addr_width); TOOLS_UNUSED(offset); TOOLS_UNUSED(data); TOOLS_UNUSED(length); return 0; } int mcables_remote_operation_server_side(mfile* mf, u_int32_t address, u_int32_t length, u_int8_t* data, int remote_op) { TOOLS_UNUSED(mf); TOOLS_UNUSED(address); TOOLS_UNUSED(length); TOOLS_UNUSED(data); TOOLS_UNUSED(remote_op); return 0; } int mwrite_i2cblock(mfile* mf, unsigned char i2c_slave, u_int8_t addr_width, unsigned int offset, void* data, int length) { TOOLS_UNUSED(mf); TOOLS_UNUSED(i2c_slave); TOOLS_UNUSED(addr_width); TOOLS_UNUSED(offset); TOOLS_UNUSED(data); TOOLS_UNUSED(length); return 0; } int mwrite4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { int i; // printf("-D- inside mtserver\n"); if (byte_len % 4) { return EINVAL; // verify byte_len is multiplation of dword size } mf = NULL; for (i = 0; i < byte_len; i += 4) { mwrite4(mf, offset + i, *(data++)); } return byte_len; } static void fix_endianness(u_int32_t* buf, int len) { int i; for (i = 0; i < (len / 4); ++i) { // printf("-D- before: buf[%d] = %#x\n", i, buf[i]); buf[i] = __be32_to_cpu(buf[i]); // printf("-D- before: buf[%d] = %#x\n", i, buf[i]); } } int mwrite_buffer(mfile* mf, unsigned int offset, u_int8_t* data, int byte_len) { // printf("-D- inside: mstsim:mwrite_buffer\n"); fix_endianness((u_int32_t*)data, byte_len); return mwrite4_block(mf, offset, (u_int32_t*)data, byte_len); } int mread4_block(mfile* mf, unsigned int offset, u_int32_t* data, int byte_len) { int i; if (byte_len % 4) { return EINVAL; // verify byte_len is multiplation of dword size } mf = NULL; for (i = 0; i < byte_len; i += 4) { mread4(mf, offset + i, data++); } return byte_len; } int check_id_arg(char* av[], int ac, int* i) { char* end; if (++(*i) >= ac) { printf("After switch \"%s\" device id is expected.\n", av[--(*i)]); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } id = (int)strtol(av[*i], &end, 0); if (*end) { printf("Invalid id: \"%s\" -- ?\n", end); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } return 0; } void check_file_arg(char* av[], int ac, int* i) { if (++(*i) >= ac) { printf("After switch \"%s\" dump file is expected.\n", av[--(*i)]); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } dump_file = av[*i]; } void load_dump_file() { #define BUFSIZE 40 char buf[BUFSIZE]; int line; FILE* fh = fopen(dump_file, "r"); if (!fh) { printf("-E- Error opening dump file for reading: %s\n", strerror(errno)); exit(1); } for (line = 1;; ++line) { int address, value; if (!fgets(buf, BUFSIZE, fh)) { if (feof(fh)) { break; } fclose(fh); printf("-E- Error reading dump file: %s\n", strerror(errno)); exit(1); } if (sscanf(buf, "%x %x", &address, &value) < 2) { fclose(fh); printf("-E- Error parsing dump file at line %d\n", line); exit(1); } mwrite4(NULL, address, value); } fclose(fh); } int prepare_the_map_file(void) { int i; int result; fd = open(FILE_PATH, O_RDWR | O_CREAT | O_TRUNC, (mode_t)0600); if (fd == -1) { printf("-E- Error opening file for writing\n"); exit(1); } result = lseek(fd, FILE_SIZE - 1, SEEK_SET); if (result == -1) { close(fd); perror("Error calling lseek() to 'stretch' the file"); exit(1); } result = write(fd, "", 1); if (result != 1) { close(fd); perror("Error writing last byte of the file"); exit(1); } cr_space = mmap(0, FILE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if (cr_space == MAP_FAILED) { close(fd); perror("Error mmapping the file"); exit(1); } for (i = 0; i < NUM_INTS; ++i) { cr_space[i] = 0; } // load cr-space snapshot if (dump_file) { load_dump_file(); } // write id if (id != 0) { mwrite4(NULL, 0xf0014, id); } return 0; } int unmap_and_close_file(void) { if (munmap(cr_space, FILE_SIZE) == -1) { perror("Error un-mmapping the file"); } close(fd); return 0; } void mpci_change(mfile* mf) { TOOLS_UNUSED(mf); } void get_devices_list(int con) { char dev_buf[DEV_LEN]; int i, rc; rc = mdevices(dev_buf, DEV_LEN, MDEVS_ALL); if (rc < 0) { write_err(con); } else { char *p = &dev_buf[0], vbuf[16]; sprintf(vbuf, "O %d", rc); writes_deb(con, vbuf); for (i = 0; i < rc; i++, p += strlen(p) + 1) { writes_deb(con, p); } } } int mget_vsec_supp(mfile* mf) { TOOLS_UNUSED(mf); return 0; } int mset_addr_space(mfile* mf, int space) { TOOLS_UNUSED(mf); TOOLS_UNUSED(space); return 0; } #else extern void mpci_change(mfile* mf); #if defined(__linux__) && !defined(__VMKERNEL_UW_NATIVE__) && !defined(__VMKERNEL_UW_VMKLINUX__) extern int check_ul_mode(); #endif char sim_str[100] = ""; int check_id_arg(char* av[], int ac, int* i) { (void)ac; printf("Invalid switch \"%s\".\n", av[*i]); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } void check_file_arg(char* av[], int ac, int* i) { (void)ac; printf("Invalid switch \"%s\".\n", av[*i]); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } int prepare_the_map_file(void) { return 0; } int unmap_and_close_file(void) { return 0; } void get_devices_list(int con) { #ifndef MST_UL dev_info* mdevs_inf = NULL; int devs_num = -1, i = 0; mdevs_inf = mdevices_info_v(MDEVS_ALL, &devs_num, 1); if (devs_num < 0 || !mdevs_inf) { write_err(con); } else { char vbuf[16]; int n = devs_num; for (i = 0; i < devs_num; i++) { if (mdevs_inf[i].pci.cr_dev[0]) { n++; } } sprintf(vbuf, "O %d", n); writes_deb(con, vbuf); for (i = 0; i < devs_num; i++) { if (mdevs_inf[i].pci.conf_dev[0]) { writes_deb(con, mdevs_inf[i].pci.conf_dev); } else { writes_deb(con, mdevs_inf[i].dev_name); } if (mdevs_inf[i].pci.cr_dev[0]) { writes_deb(con, mdevs_inf[i].pci.cr_dev); } } } mdevices_info_destroy(mdevs_inf, devs_num); #else (void)con; #endif } #endif /* ////////////////////////////////////////////////////////////////////// */ /* ////////////////////////////////////////////////////////////////////// */ void usage(const char* s) { printf("Usage:\n\t%s [switches]\n\n", s); printf("Switches may be:\n"); printf("\t-p[ort] - Listen to specify port (default is %d).\n", port); printf("\t-d[ebug] - Print all socket traffic (for debugging only).\n"); printf("%s", sim_str); printf("\t-h[elp] - Print help message.\n"); printf("\t-v[ersion] - Print version.\n"); exit(1); } /* ////////////////////////////////////////////////////////////////////// */ void mySignal() { exit(0); } #define GET_PARAM(param, str, type, param_name, err_msg) \ { \ char* end; \ param = (type)strtoul(str, &end, 0); \ if (*end) \ { \ sprintf(err_msg, "E Invalid %s", param_name); \ return 1; \ } \ } int parse_cables_cmd(char* buf, u_int32_t* addr, u_int32_t* length, u_int8_t* data, char* err_msg) { char* args_array[3]; u_int8_t args_num = 2; int i; args_array[0] = buf + 2; for (i = 1; i <= args_num; i++) { args_array[i] = strchr(args_array[i - 1], ' '); if (args_array[i] == NULL) { break; } *(args_array[i]) = '\0'; args_array[i]++; } if (i < args_num) { sprintf(err_msg, "E Bad msg internal error"); return 1; } GET_PARAM(*addr, args_array[0], u_int32_t, "address", err_msg); GET_PARAM(*length, args_array[1], u_int32_t, "length", err_msg); GET_PARAM(*data, args_array[2], u_int8_t, "data", err_msg); return 0; } int parse_i2c_cmd(char* buf, u_int8_t* addr_width, u_int8_t* slave_addr, int* size, unsigned int* offset, u_int8_t* data, char* err_msg) { char* p_arr[5]; u_int8_t args_num; int i; if (*buf == 'r') { args_num = 4; } else { args_num = 5; } p_arr[0] = buf + 2; for (i = 1; i <= args_num; i++) { p_arr[i] = strchr(p_arr[i - 1], ' '); if (p_arr[i] == NULL) { break; } *(p_arr[i]) = '\0'; p_arr[i]++; } if (i < args_num) { sprintf(err_msg, "E Bad msg internal error"); return 1; } GET_PARAM(*addr_width, p_arr[0], u_int8_t, "address width", err_msg); GET_PARAM(*slave_addr, p_arr[1], u_int8_t, "slave address", err_msg); GET_PARAM(*size, p_arr[2], u_int8_t, "length", err_msg); GET_PARAM(*offset, p_arr[3], u_int32_t, "offset", err_msg); if (args_num == 5) { char* p = p_arr[4]; if (*size > 64) { sprintf(err_msg, "E Bad size which should be less than 64"); return 1; } if ((*size * 2) != (int)strlen(p)) { sprintf(err_msg, "E Bad data section"); return 1; } for (i = 0; i < *size; i++) { char tmp_num[10]; // TODO: use 16 on the strtoul strncpy(tmp_num, "0x", 3); strncpy(tmp_num + 2, p, 2); tmp_num[4] = '\0'; ((u_int8_t*)data)[i] = (u_int8_t)strtoul(tmp_num, 0, 0); p += 2; } } return 0; } int copy_buff_to_str(char* str, u_int8_t* data, int size) { char* p = str; int i; for (i = 0; i < size; i++) { sprintf(p, "%02x", data[i]); p += 2; } return 0; } /* ////////////////////////////////////////////////////////////////////// */ #define CHK2(f, m) \ do \ { \ if ((f) < 0) \ { \ perror(m); \ exit(1); \ } \ } while (0) #define MSTSERVER_VERSION "1.4" #define MSTSERVER_NAME "mtserver" int main(int ac, char* av[]) { char* end; char* local_dev = NULL; char buf[BUF_LEN], dev_buf[DEV_LEN]; int i, con, rc; mfile* mf = 0; /* Command line parsing. */ for (i = 1; i < ac; i++) { switch (*av[i]) { case '-': ++av[i]; if (!strcmp(av[i], "p") || !strcmp(av[i], "port")) { if (++i >= ac) { printf("After switch \"%s\" port number is expected.\n", av[--i]); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } port = (int)strtol(av[i], &end, 0); if (*end) { printf("Invalid port: \"%s\" -- ?\n", end); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } if (port < 1 || port > 65535) { printf("-E- Invalid port value: %d, port should be 16-bit number (Range: 1-65535)\n", port); exit(1); } } else if (!strcmp(av[i], "dev")) { if (++i >= ac) { printf("After switch \"%s\" a device is expected.\n", av[--i]); printf("Type \"%s -h\" for help.\n", av[0]); exit(1); } local_dev = av[i]; } else if (!strcmp(av[i], "d") || !strcmp(av[i], "debug")) { sdebug = 1; } else if (!strcmp(av[i], "h") || !strcmp(av[i], "help")) { usage(av[0]); } else if (!strcmp(av[i], "v") || !strcmp(av[i], "version")) { print_version_string(MSTSERVER_NAME, MSTSERVER_VERSION); exit(0); } else if (!strcmp(av[i], "i") || !strcmp(av[i], "id")) { check_id_arg(av, ac, &i); } else if (!strcmp(av[i], "f") || !strcmp(av[i], "file")) { check_file_arg(av, ac, &i); } else { printf("Invalid switch \"%s\".\n", av[i]); usage(av[0]); exit(1); } break; case '?': usage(av[0]); break; default: printf("Invalid parameter \"%s\".\n", av[i]); usage(av[0]); exit(1); } } #ifdef MST_UL if (local_dev == NULL) { printf("When accessing via user level mst, -dev flag must be provided\n"); exit(1); } #endif prepare_the_map_file(); PREP_SIGNAL(mySignal); WIN_INIT(); /* Now open and start work */ logset(1); WIN_WHILE() { con = open_serv_connection(port); int addrInUseError = 0; if (con < 0) { #ifdef __WIN__ addrInUseError = WSAEADDRINUSE; #else addrInUseError = EADDRINUSE; #endif if (errno == addrInUseError) { printf("Open connection (server side): Address already in use\n"); exit(1); } } CHK2(con, "Open connection (server side)"); for (;;) { memset(buf, 0, BUF_LEN); rc = reads(con, buf, BUF_LEN, PT_TCP); if (rc <= 0) { if (sdebug) { printf("-D- read failed - closing connection. rc=%d, %s\n", rc, strerror(errno)); } close(con); // In windows: // A client socket is handled in teh main thread (single connection at a time). // On a connection close the socket and mf are closed and a new listening socket is opened. // In Linux: // The client socket is handled in a child process - which exits when teh client connection closes. // // TODO: Move to thread handling and unify Win and Lin behavior. // #ifndef __WIN__ if (rc < 0) { perror(""); exit(1); } #endif break; /* EOF */ } if (sdebug) { printf("<- %s\n", buf); } switch (*buf) { case 'O': /* Open mfile */ if (mf) { writes_deb(con, "E Already opened"); } else { #ifndef MST_UL DType dtype = strtoul(buf + 2, &end, 0); if (*end != ' ') { /* Old style (O DEV_NAME) */ mf = mopen(buf + 2); } else { /* New style (O FLAG DEV_NAME) */ mf = mopend(end + 1, dtype); } #else mf = mopen(local_dev); #endif if (mf) { #if defined(__linux__) && !defined(SIMULATOR) // set request came from client mf->is_mtserver_req = 1; #endif // write Recv buffer char res_buf[16]; snprintf(res_buf, 16, "O %d", mget_vsec_supp(mf)); writes_deb(con, res_buf); } else { write_err(con); } } break; case 'C': /* Close mfile */ if (!mf) { writes_deb(con, "E Not opened"); } else { if (mclose(mf) < 0) { write_err(con); } else { write_ok(con); mf = 0; } } break; case 'V': /* Get version */ writes_deb(con, "O " MSTSERVER_VERSION); break; case 'L': /* Get devices list */ if (local_dev == NULL) { get_devices_list(con); } else { strcpy(dev_buf, "/dev/mst/mt25204_pci_cr0"); printf("-D- local_dev=%s dev_buf=%s\n", local_dev, dev_buf); writes_deb(con, "O 1"); writes_deb(con, dev_buf); } break; case 'R': /* Read word */ if (!mf) { writes_deb(con, "E Not opened"); } else { unsigned int offset; u_int32_t value; offset = strtoul(buf + 2, &end, 0); if (*end) { writes_deb(con, "E Invalid offset"); } else { if (mread4(mf, offset, &value) < 4) { write_err(con); } else { char vbuf[16]; sprintf(vbuf, "O 0x%08x", value); writes_deb(con, vbuf); } } } break; #ifndef MST_UL case 'S': /* Scan I2C bus */ if (!mf) { writes_deb(con, "E Not opened"); } else { u_int8_t slv_arr[SLV_ADDRS_NUM] = {0}; if (mi2c_detect(mf, slv_arr) < 0) { write_err(con); } else { int i; char *p, buf[1024]; sprintf(buf, "O"); p = buf + 1; for (i = 0; i < SLV_ADDRS_NUM; i++) { if (slv_arr[i]) { sprintf(p, " 0x%02x", i); p += strlen(p); } } writes_deb(con, buf); } } break; case 'B': if (!mf) { writes_deb(con, "E Not opened"); } else { unsigned int offset; int size; u_int32_t buf_data[MAX_DWORDS]; offset = strtoul(buf + 2, &end, 0); if (*end != ' ') { writes_deb(con, "E Invalid offset"); } size = strtoul(end, &end, 0); if (*end != '\0') { writes_deb(con, "E Invalid size"); } if (mread4_block(mf, offset, buf_data, size) != size) { write_err(con); } else { int i; int div4 = size >> 2; int mod4 = size % 4; sprintf(buf, "O"); char* last = buf + 1; for (i = 0; i < div4; i++) { last += sprintf(last, " 0x%08x", buf_data[i]); } /* If the size is not divided by 4 need to read the remained bytes */ if (mod4) { last += sprintf(last, " 0x"); for (i = mod4 - 1; i >= 0; i--) { last += sprintf(last, "%02x", ((u_int8_t*)buf_data)[div4 * 4 + i]); } } writes_deb(con, buf); } } break; case 'U': if (!mf) { writes_deb(con, "E Not opened"); } else { unsigned int offset; int size; u_int32_t buf_data[MAX_DWORDS]; int i; offset = strtoul(buf + 2, &end, 0); if (*end != ' ') { writes_deb(con, "E Invalid offset"); } size = strtoul(end, &end, 0); if (*end != ' ' || size > (MAX_DWORDS << 2)) { writes_deb(con, "E Invalid size"); } for (i = 0; i < ((size + 3) >> 2); i++) { ((u_int32_t*)buf_data)[i] = strtoul(end, &end, 0); if (*end != (i < ((size + 3) >> 2) - 1 ? ' ' : '\0')) { writes_deb(con, "E Invalid data"); } } if (mwrite4_block(mf, offset, buf_data, size) != size) { write_err(con); } else { write_ok(con); } } break; case 'r': /* Read I2C */ if (!mf) { writes_deb(con, "E Not opened"); } else { u_int8_t data[64]; char err_msg[256]; u_int8_t addr_width, slave_addr; unsigned int offset; int size; rc = parse_i2c_cmd(buf, &addr_width, &slave_addr, &size, &offset, data, err_msg); if (rc) { writes_deb(con, err_msg); } else { if (mread_i2cblock(mf, slave_addr, addr_width, offset, data, size) < size) { write_err(con); } else { char vbuff[256]; sprintf(vbuff, "O 0x%x ", size); copy_buff_to_str(&vbuff[strlen(vbuff)], data, size); writes_deb(con, vbuff); } } } break; case 'w': /* Read I2C */ if (!mf) { writes_deb(con, "E Not opened"); } else { u_int8_t data[64]; char err_msg[256]; u_int8_t addr_width, slave_addr; unsigned int offset; int size; rc = parse_i2c_cmd(buf, &addr_width, &slave_addr, &size, &offset, data, err_msg); if (rc) { writes_deb(con, err_msg); } else { if (mwrite_i2cblock(mf, slave_addr, addr_width, offset, data, size) < size) { write_err(con); } else { write_ok(con); } } } break; #endif case 'P': if (!mf) { writes_deb(con, "E Not opened"); } else { mpci_change(mf); write_ok(con); } break; case 'W': /* Write word */ if (!mf) { writes_deb(con, "E Not opened"); } else { unsigned int offset; u_int32_t value; char* p = strchr(buf + 2, ' '); if (!p) { writes_deb(con, "E Invalid format (should be OFFS DATA)"); } else { *p = '\0'; p++; offset = strtoul(buf + 2, &end, 0); if (*end) { writes_deb(con, "E Invalid offset"); } else { value = strtoul(p, &end, 0); if (*end) { writes_deb(con, "E Invalid data"); } else { if (mwrite4(mf, offset, value) < 4) { write_err(con); } else { write_ok(con); } } } } } break; case 'A': if (!mf) { writes_deb(con, "E Not opened"); } else { char* p = buf + 2; int space; space = strtol(p, &end, 0); if (*end) { writes_deb(con, "E Invalid offset"); } if (mset_addr_space(mf, space)) { write_err(con); } else { write_ok(con); } } break; default: writes(con, "E Invalid command", PT_TCP); if (sdebug) { printf("-> E Invalid command (len:%d cmd:\"%s\")\n", (int)strlen(buf), buf); } break; } WIN_CLOSE(mf, *buf); } if (mf) { if (sdebug) { printf("-D- mf opened from a prev connection - closing\n"); } mclose(mf); mf = 0; } } unmap_and_close_file(); return 0; } mstflint-4.26.0/small_utils/mwrite.c0000644000175000017500000000446114522641732017713 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * * mwrite.c - CR Space write access * */ #include "mtcr.h" #include #include #include void usage(const char* n) { printf("%s \n", n); exit(1); } int main(int ac, char* av[]) { char* endp; int rc = 0; unsigned int addr, val; mfile* mf; if (ac != 4) { usage(av[0]); } addr = strtoul(av[2], &endp, 0); if (*endp) { usage(av[0]); } val = strtoul(av[3], &endp, 0); if (*endp) { usage(av[0]); } mf = mopen(av[1]); if (!mf) { perror("mopen"); return 1; } if ((rc = mwrite4(mf, addr, val)) < 0) { mclose(mf); perror("mwrite"); return 1; } if (rc < 4) { mclose(mf); printf("Write only %d bytes\n", rc); return 1; } mclose(mf); return 0; } mstflint-4.26.0/small_utils/mread.c0000644000175000017500000000440214522641732017467 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * * mread.c - CR Space read access * */ #include "mtcr.h" #include #include #include void usage(const char* n) { printf("%s \n", n); exit(1); } int main(int ac, char* av[]) { char* endp; int rc = 0; unsigned int addr, val; mfile* mf; if (ac != 3) { usage(av[0]); } addr = strtoul(av[2], &endp, 0); if (*endp) { usage(av[0]); } mf = mopen(av[1]); if (!mf) { perror("mopen"); return 1; } if ((rc = mread4(mf, addr, &val)) < 0) { perror("mread"); mclose(mf); return 1; } if (rc < 4) { mclose(mf); printf("Read only %d bytes\n", rc); return 1; } mclose(mf); printf("Read 0x%08x:0x%08x\n", addr, val); return rc; } mstflint-4.26.0/small_utils/Makefile.in0000644000175000017500000012252214522641740020303 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstmread$(EXEEXT) mstmwrite$(EXEEXT) mstmcra$(EXEEXT) \ mstmtserver$(EXEEXT) mstvpd$(EXEEXT) mstcongestion$(EXEEXT) subdir = small_utils DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(mlxpcilibdir)" "$(DESTDIR)$(mstfwresetlibdir)" PROGRAMS = $(bin_PROGRAMS) am_mstcongestion_OBJECTS = congestion.$(OBJEXT) mstcongestion_OBJECTS = $(am_mstcongestion_OBJECTS) am__DEPENDENCIES_1 = AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstcongestion_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(AM_CXXFLAGS) $(CXXFLAGS) $(mstcongestion_LDFLAGS) $(LDFLAGS) \ -o $@ am_mstmcra_OBJECTS = mcra.$(OBJEXT) mstmcra_OBJECTS = $(am_mstmcra_OBJECTS) mstmcra_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(mstmcra_LDFLAGS) $(LDFLAGS) -o $@ am_mstmread_OBJECTS = mread.$(OBJEXT) mstmread_OBJECTS = $(am_mstmread_OBJECTS) mstmread_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(mstmread_LDFLAGS) $(LDFLAGS) -o $@ am_mstmtserver_OBJECTS = mstmtserver-mtserver.$(OBJEXT) \ mstmtserver-tcp.$(OBJEXT) mstmtserver_OBJECTS = $(am_mstmtserver_OBJECTS) mstmtserver_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(mstmtserver_CFLAGS) \ $(CFLAGS) $(mstmtserver_LDFLAGS) $(LDFLAGS) -o $@ am_mstmwrite_OBJECTS = mwrite.$(OBJEXT) mstmwrite_OBJECTS = $(am_mstmwrite_OBJECTS) mstmwrite_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(mstmwrite_LDFLAGS) $(LDFLAGS) -o $@ am_mstvpd_OBJECTS = vpd.$(OBJEXT) mstvpd_OBJECTS = $(am_mstvpd_OBJECTS) mstvpd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(mstvpd_LDFLAGS) $(LDFLAGS) -o $@ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(bin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(mstcongestion_SOURCES) $(mstmcra_SOURCES) \ $(mstmread_SOURCES) $(mstmtserver_SOURCES) \ $(mstmwrite_SOURCES) $(mstvpd_SOURCES) DIST_SOURCES = $(mstcongestion_SOURCES) $(mstmcra_SOURCES) \ $(mstmread_SOURCES) $(mstmtserver_SOURCES) \ $(mstmwrite_SOURCES) $(mstvpd_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(mlxpcilib_DATA) $(mstfwresetlib_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ PYTHON_WRAPPER_SCRIPT = ../common/python_wrapper AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/common -I$(top_builddir)/common -I$(top_srcdir)/mvpd $(COMPILER_FPIC) bin_SCRIPTS = mstfwreset mstmread_SOURCES = mread.c mstmread_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmread_LDADD = $(mstmread_DEPENDENCIES) ${LDL} mstmread_LDFLAGS = -static mstmwrite_SOURCES = mwrite.c mstmwrite_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmwrite_LDADD = $(mstmwrite_DEPENDENCIES) ${LDL} mstmwrite_LDFLAGS = -static mstvpd_SOURCES = vpd.c mstvpd_DEPENDENCIES = $(top_builddir)/mvpd/libmvpd.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la mstvpd_LDADD = $(mstvpd_DEPENDENCIES) ${LDL} mstvpd_LDFLAGS = -static mstcongestion_SOURCES = congestion.cpp mstcongestion_DEPENDENCIES = $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstcongestion_LDADD = $(mstcongestion_DEPENDENCIES) ${LDL} mstcongestion_LDFLAGS = -static mstmcra_SOURCES = mcra.c mstmcra_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmcra_LDADD = $(mstmcra_DEPENDENCIES) ${LDL} mstmcra_LDFLAGS = -static mstmtserver_SOURCES = mtserver.c tcp.c tcp.h mstmtserver_CFLAGS = -DMST_UL mstmtserver_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la mstmtserver_LDADD = $(mstmtserver_DEPENDENCIES) ${LDL} mstmtserver_LDFLAGS = -static SUBDIRS = mlxfwresetlib MSTFWRESET_PYTHON_WRAPPER = mstfwreset mstfwresetlibdir = $(libdir)/mstflint/python_tools/$(MSTFWRESET_PYTHON_WRAPPER) mlxpcilibdir = $(libdir)/mstflint/python_tools/mlxpci mlxpcilib_DATA = binary_file.py mlxpci_lib.py mstfwresetlib_DATA = $(MSTFWRESET_PYTHON_WRAPPER).py all: all-recursive .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign small_utils/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign small_utils/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstcongestion$(EXEEXT): $(mstcongestion_OBJECTS) $(mstcongestion_DEPENDENCIES) $(EXTRA_mstcongestion_DEPENDENCIES) @rm -f mstcongestion$(EXEEXT) $(AM_V_CXXLD)$(mstcongestion_LINK) $(mstcongestion_OBJECTS) $(mstcongestion_LDADD) $(LIBS) mstmcra$(EXEEXT): $(mstmcra_OBJECTS) $(mstmcra_DEPENDENCIES) $(EXTRA_mstmcra_DEPENDENCIES) @rm -f mstmcra$(EXEEXT) $(AM_V_CCLD)$(mstmcra_LINK) $(mstmcra_OBJECTS) $(mstmcra_LDADD) $(LIBS) mstmread$(EXEEXT): $(mstmread_OBJECTS) $(mstmread_DEPENDENCIES) $(EXTRA_mstmread_DEPENDENCIES) @rm -f mstmread$(EXEEXT) $(AM_V_CCLD)$(mstmread_LINK) $(mstmread_OBJECTS) $(mstmread_LDADD) $(LIBS) mstmtserver$(EXEEXT): $(mstmtserver_OBJECTS) $(mstmtserver_DEPENDENCIES) $(EXTRA_mstmtserver_DEPENDENCIES) @rm -f mstmtserver$(EXEEXT) $(AM_V_CCLD)$(mstmtserver_LINK) $(mstmtserver_OBJECTS) $(mstmtserver_LDADD) $(LIBS) mstmwrite$(EXEEXT): $(mstmwrite_OBJECTS) $(mstmwrite_DEPENDENCIES) $(EXTRA_mstmwrite_DEPENDENCIES) @rm -f mstmwrite$(EXEEXT) $(AM_V_CCLD)$(mstmwrite_LINK) $(mstmwrite_OBJECTS) $(mstmwrite_LDADD) $(LIBS) mstvpd$(EXEEXT): $(mstvpd_OBJECTS) $(mstvpd_DEPENDENCIES) $(EXTRA_mstvpd_DEPENDENCIES) @rm -f mstvpd$(EXEEXT) $(AM_V_CCLD)$(mstvpd_LINK) $(mstvpd_OBJECTS) $(mstvpd_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/congestion.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mcra.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mread.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstmtserver-mtserver.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstmtserver-tcp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mwrite.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vpd.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mstmtserver-mtserver.o: mtserver.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -MT mstmtserver-mtserver.o -MD -MP -MF $(DEPDIR)/mstmtserver-mtserver.Tpo -c -o mstmtserver-mtserver.o `test -f 'mtserver.c' || echo '$(srcdir)/'`mtserver.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstmtserver-mtserver.Tpo $(DEPDIR)/mstmtserver-mtserver.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtserver.c' object='mstmtserver-mtserver.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -c -o mstmtserver-mtserver.o `test -f 'mtserver.c' || echo '$(srcdir)/'`mtserver.c mstmtserver-mtserver.obj: mtserver.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -MT mstmtserver-mtserver.obj -MD -MP -MF $(DEPDIR)/mstmtserver-mtserver.Tpo -c -o mstmtserver-mtserver.obj `if test -f 'mtserver.c'; then $(CYGPATH_W) 'mtserver.c'; else $(CYGPATH_W) '$(srcdir)/mtserver.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstmtserver-mtserver.Tpo $(DEPDIR)/mstmtserver-mtserver.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mtserver.c' object='mstmtserver-mtserver.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -c -o mstmtserver-mtserver.obj `if test -f 'mtserver.c'; then $(CYGPATH_W) 'mtserver.c'; else $(CYGPATH_W) '$(srcdir)/mtserver.c'; fi` mstmtserver-tcp.o: tcp.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -MT mstmtserver-tcp.o -MD -MP -MF $(DEPDIR)/mstmtserver-tcp.Tpo -c -o mstmtserver-tcp.o `test -f 'tcp.c' || echo '$(srcdir)/'`tcp.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstmtserver-tcp.Tpo $(DEPDIR)/mstmtserver-tcp.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tcp.c' object='mstmtserver-tcp.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -c -o mstmtserver-tcp.o `test -f 'tcp.c' || echo '$(srcdir)/'`tcp.c mstmtserver-tcp.obj: tcp.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -MT mstmtserver-tcp.obj -MD -MP -MF $(DEPDIR)/mstmtserver-tcp.Tpo -c -o mstmtserver-tcp.obj `if test -f 'tcp.c'; then $(CYGPATH_W) 'tcp.c'; else $(CYGPATH_W) '$(srcdir)/tcp.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstmtserver-tcp.Tpo $(DEPDIR)/mstmtserver-tcp.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tcp.c' object='mstmtserver-tcp.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstmtserver_CFLAGS) $(CFLAGS) -c -o mstmtserver-tcp.obj `if test -f 'tcp.c'; then $(CYGPATH_W) 'tcp.c'; else $(CYGPATH_W) '$(srcdir)/tcp.c'; fi` .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-mlxpcilibDATA: $(mlxpcilib_DATA) @$(NORMAL_INSTALL) @list='$(mlxpcilib_DATA)'; test -n "$(mlxpcilibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mlxpcilibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mlxpcilibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mlxpcilibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mlxpcilibdir)" || exit $$?; \ done uninstall-mlxpcilibDATA: @$(NORMAL_UNINSTALL) @list='$(mlxpcilib_DATA)'; test -n "$(mlxpcilibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mlxpcilibdir)'; $(am__uninstall_files_from_dir) install-mstfwresetlibDATA: $(mstfwresetlib_DATA) @$(NORMAL_INSTALL) @list='$(mstfwresetlib_DATA)'; test -n "$(mstfwresetlibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mstfwresetlibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mstfwresetlibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mstfwresetlibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mstfwresetlibdir)" || exit $$?; \ done uninstall-mstfwresetlibDATA: @$(NORMAL_UNINSTALL) @list='$(mstfwresetlib_DATA)'; test -n "$(mstfwresetlibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mstfwresetlibdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mlxpcilibdir)" "$(DESTDIR)$(mstfwresetlibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-mlxpcilibDATA install-mstfwresetlibDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-binSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ uninstall-mlxpcilibDATA uninstall-mstfwresetlibDATA .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-binPROGRAMS clean-generic clean-libtool \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-binSCRIPTS install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-mlxpcilibDATA \ install-mstfwresetlibDATA install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-binSCRIPTS uninstall-mlxpcilibDATA \ uninstall-mstfwresetlibDATA ${MSTFWRESET_PYTHON_WRAPPER}: $(PYTHON_WRAPPER_SCRIPT) cp $(PYTHON_WRAPPER_SCRIPT) $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mtcr_py/0000755000175000017500000000000014522641740015357 5ustar tzafrirctzafrircmstflint-4.26.0/mtcr_py/cmtcr.c0000644000175000017500000002070414522641732016637 0ustar tzafrirctzafrirc /* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include #include #include #define CMTCR_UNUSED(var) ((void)(var)) static PyObject* mtcrModule = 0; static PyObject* mtcrExceptionType = 0; /********************************************** * mtcr_init * @return *********************************************/ PyObject* mtcr_init(PyObject* self, PyObject* args) { PyObject* mfileObj; const char* dev; mfile* mf; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "Os", &mfileObj, &dev)) { return NULL; } mf = mopen(dev); if (!mf) { PyErr_SetString(mtcrExceptionType, strerror(errno)); return NULL; } PyObject* mfLong = PyLong_FromVoidPtr(mf); PyObject_SetAttrString(mfileObj, "mf", mfLong); Py_DecRef(mfLong); return Py_None; } /********************************************** * mtcr_close *********************************************/ PyObject* mtcr_close(PyObject* self, PyObject* args) { PyObject* mfileObj; const char* dev; mfile* mf; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "Os", &mfileObj, &dev)) { return NULL; } PyObject* mfLong = PyObject_GetAttrString(mfileObj, "mf"); mf = (mfile*)PyLong_AsVoidPtr(mfLong); if (mf) { mclose(mf); } Py_DecRef(mfLong); return Py_None; } /********************************************** * mtcr_del *********************************************/ PyObject* mtcr_del(PyObject* self, PyObject* args) { PyObject* mfileObj; const char* dev; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "Os", &mfileObj, &dev)) { return NULL; } mtcr_close(self, args); PyObject* mfLong = PyLong_FromLong(0); PyObject_SetAttrString(mfLong, "mf", mfLong); Py_DecRef(mfLong); return Py_None; } /********************************************** * mtcr_read4 *********************************************/ PyObject* mtcr_read4(PyObject* self, PyObject* args) { PyObject* mfileObj; int addr; mfile* mf; u_int32_t value; PyObject* valueObj; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "Oi", &mfileObj, &addr)) { return NULL; } PyObject* mfLong = PyObject_GetAttrString(mfileObj, "mf"); mf = (mfile*)PyLong_AsVoidPtr(mfLong); Py_DecRef(mfLong); if (mread4(mf, addr, &value) != 4) { PyErr_SetString(mtcrExceptionType, strerror(errno)); return NULL; } valueObj = PyLong_FromLong(value); return valueObj; } /********************************************** * mtcr_read4 *********************************************/ PyObject* mtcr_read4block(PyObject* self, PyObject* args) { PyObject* mfileObj; int addr; int i; mfile* mf; int dword_len; PyObject* data_list; u_int32_t* data_buf; PyObject* mfLong; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "Oii", &mfileObj, &addr, &dword_len)) { return NULL; } mfLong = PyObject_GetAttrString(mfileObj, "mf"); mf = (mfile*)PyLong_AsVoidPtr(mfLong); Py_DecRef(mfLong); data_buf = malloc(sizeof(u_int32_t) * dword_len); if (!data_buf) { PyErr_SetString(mtcrExceptionType, "Out read of memory"); return NULL; } if (mread4_block(mf, addr, data_buf, dword_len * 4) != (dword_len * 4)) { PyErr_SetString(mtcrExceptionType, strerror(errno)); return NULL; } data_list = PyList_New(dword_len); for (i = 0; i < dword_len; i++) { PyList_SET_ITEM(data_list, i, PyInt_FromLong((long)data_buf[i])); } return data_list; } /********************************************** * mtcr_write4 *********************************************/ PyObject* mtcr_write4(PyObject* self, PyObject* args) { PyObject* mfileObj; int addr; mfile* mf; u_int32_t value; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "Oii", &mfileObj, &addr, &value)) { return NULL; } PyObject* mfLong = PyObject_GetAttrString(mfileObj, "mf"); mf = (mfile*)PyLong_AsVoidPtr(mfLong); Py_DecRef(mfLong); if (mwrite4(mf, addr, value) != 4) { PyErr_SetString(mtcrExceptionType, strerror(errno)); return NULL; } return Py_None; } /********************************************** * mtcr_write4block *********************************************/ PyObject* mtcr_write4block(PyObject* self, PyObject* args) { PyObject* mfileObj; int addr; int i; mfile* mf; int dword_len; PyObject* data_list; u_int32_t* data_buf; PyObject* mfLong; CMTCR_UNUSED(self); // Parse args if (!PyArg_ParseTuple(args, "OiO", &mfileObj, &addr, &data_list)) { return NULL; } mfLong = PyObject_GetAttrString(mfileObj, "mf"); mf = (mfile*)PyLong_AsVoidPtr(mfLong); Py_DecRef(mfLong); dword_len = PyList_Size(data_list); data_buf = malloc(sizeof(u_int32_t) * dword_len); if (!data_buf) { PyErr_SetString(mtcrExceptionType, "Write Out of memory"); return NULL; } for (i = 0; i < dword_len; i++) { data_buf[i] = PyLong_AsUnsignedLong(PyList_GET_ITEM(data_list, i)); } if (mwrite4_block(mf, addr, data_buf, dword_len * 4) != (dword_len * 4)) { PyErr_SetString(mtcrExceptionType, strerror(errno)); return NULL; } return Py_None; } /********************************************** * mtcr_funcs static db *********************************************/ static PyMethodDef mtcr_funcs[] = { {"mtcr_init", (PyCFunction)mtcr_init, METH_VARARGS, "Init mfile object"}, {"mtcr_close", (PyCFunction)mtcr_close, METH_VARARGS, "Close internal mfile"}, {"mtcr_del", (PyCFunction)mtcr_del, METH_VARARGS, "Free resources"}, {"mtcr_read4", (PyCFunction)mtcr_read4, METH_VARARGS, "Read dword"}, {"mtcr_write4", (PyCFunction)mtcr_write4, METH_VARARGS, "Write dword"}, {"mtcr_read4block", (PyCFunction)mtcr_read4block, METH_VARARGS, "Read block of dwords"}, {"mtcr_write4block", (PyCFunction)mtcr_write4block, METH_VARARGS, "Write block of dwords"}, {NULL, NULL, 0, NULL}}; #define STR_EXPAND(tok) #tok #define STR(tok) STR_EXPAND(tok) #define TOK_PASTE(x, y) x##y #define TOK_PASTE2(x, y) TOK_PASTE(x, y) #define MODULE_NAME "cmtcr" STR(PY_VER) #define INIT_FUNC TOK_PASTE2(initcmtcr, PY_VER) /********************************************** * initcmtcr * @return *********************************************/ #ifndef PyMODINIT_FUNC /* declarations for DLL import/export */ #define PyMODINIT_FUNC void #endif PyMODINIT_FUNC INIT_FUNC() { Py_InitModule(MODULE_NAME, mtcr_funcs); mtcrModule = PyImport_ImportModule("mtcr"); if (!mtcrModule) { PyErr_SetString(mtcrExceptionType, "Failed to import module"); return; } mtcrExceptionType = PyObject_GetAttrString(mtcrModule, "MtcrException"); if (!mtcrExceptionType) { PyErr_SetString(PyExc_ImportError, "Failed to import MtcrException class"); return; } } mstflint-4.26.0/mtcr_py/mtcr.py0000644000175000017500000002270414522641732016704 0ustar tzafrirctzafrirc # Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- import os import sys import platform import ctypes import struct def ones(n): return (1 << n) - 1 def extractField(val, start, size): return (val & (ones(size) << start)) >> start def insertField(val1, start1, val2, start2, size): return val1 & ~(ones(size) << start1) | (extractField(val2, start2, size) << start1) class MtcrException(Exception): pass class CmdIfException(Exception): pass ########################## CMTCR = None try: from ctypes import * ctypes.CDLL._func_restype_ = ctypes.c_ulonglong if platform.system() == "Windows" or os.name == "nt": try: CMTCR = CDLL("libmtcr-1.dll", use_errno=True) except BaseException: CMTCR = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "libmtcr-1.dll"), use_errno=True) else: try: CMTCR = CDLL("cmtcr.so", use_errno=True) except BaseException: CMTCR = CDLL(os.path.join(os.path.dirname(os.path.realpath(__file__)), "cmtcr.so"), use_errno=True) except BaseException: CMTCR = None if CMTCR: class MstDevice: ########################## def __init__(self, dev): self.mdev = dev.encode('ascii') self.mf = 0 self.mopenFunc = CMTCR.mopen self.mopenFunc.restype = c_void_p self.mopenFuncAdv = CMTCR.mopen_adv self.mopenFuncAdv.argtypes = [ctypes.c_char_p, ctypes.c_uint] self.mcloseFunc = CMTCR.mclose self.mread4Func = CMTCR.mread4 self.mwrite4Func = CMTCR.mwrite4 self.mread4BlockFunc = CMTCR.mread4_block self.mwrite4BlockFunc = CMTCR.mwrite4_block self.icmdSendCommandFunc = CMTCR.icmd_send_command self.mHcaResetFunc = CMTCR.mhca_reset self.open() ########################## def close(self): if self.mf: self.mcloseFunc(self.mf) self.mf = None def is_cable(self): return '_cable' in str(self.mdev) def is_linkx(self): return '_lx' in str(self.mdev) def open(self): if self.is_cable() or self.is_linkx(): self.mf = ctypes.c_void_p(self.mopenFuncAdv(self.mdev, 0xffffffff)) else: self.mf = ctypes.c_void_p(self.mopenFunc(self.mdev)) if not self.mf: error = os.strerror(ctypes.get_errno()) raise MtcrException("Failed to re-open device (%s): %s" % (self.mdev.decode("utf-8"), error)) ########################## def __del__(self): self.close() ########################## def read4(self, addr): val = c_uint32() if self.mread4Func(self.mf, addr, byref(val)) != 4: raise MtcrException("Failed to read from mst device from address: 0x%x" % addr) return val.value ########################## def readField(self, addr, startBit, size): return extractField(self.read4(addr), startBit, size) ########################## def write4(self, addr, val): cval = c_uint32(val) if self.mwrite4Func(self.mf, addr, cval) != 4: raise MtcrException("Failed to write to mst device to address: 0x%x" % addr) ########################## def writeField(self, val, addr, startBit, size): oldVal = self.read4(addr) newVal = insertField(oldVal, startBit, val, 0, size) self.write4(addr, newVal) ########################## def read4Block(self, addr, size): # size in dwords dataArr = (c_uint32 * size)() if self.mread4BlockFunc(self.mf, addr, cast(dataArr, POINTER(c_uint32)), size * 4) != size * 4: raise MtcrException("Failed to read block from mst device from address 0x%x of size %d bytes" % (addr, size)) return list(dataArr) ########################## def write4Block(self, addr, dataList): size = len(dataList) dataArr = (c_uint32 * size)(*dataList) if self.mwrite4BlockFunc(self.mf, addr, cast(dataArr, POINTER(c_uint32)), size * 4) != size * 4: raise MtcrException("Failed to write block to mst device to address 0x%x of size %d bytes" % (addr, size)) ########################## def icmdSendCmd(self, opcode, data, skipWrite): dataArr = (c_uint8 * len(data))(*data) rc = self.icmdSendCommandFunc(self.mf, opcode, cast(dataArr, POINTER(c_uint8)), len(data), skipWrite) # data can also be used as output so need to convert back from dataArr. for i, x in enumerate(dataArr): data[i] = dataArr[i] if rc: raise CmdIfException("Failed to send command") ########################## def mHcaReset(self, dbdf_list): bus_array_size = len(dbdf_list) bus_array = (ctypes.c_ulong * bus_array_size)() # Extract the bus value from the dbdf list. for idx, dbdf in enumerate(dbdf_list): bus_array[idx] = int(dbdf[5:7], 16) if self.mHcaResetFunc(self.mf, bus_array, bus_array_size) != 0: raise MtcrException("Failed to reset device") ########################## def getPCIDeviceRdma(self): dev_rdma = ctypes.create_string_buffer(32) CMTCR.get_pci_dev_rdma(self.mf, dev_rdma) rdma_str = dev_rdma.value.decode("utf-8") return rdma_str else: import subprocess import string def getstatusoutput(cmd): pipe = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) cout = pipe.stdout output = cout.read() cout.close() rc = pipe.wait() return rc, output class MstDevice: ########################## def __init__(self, dev): self.dev = dev self.mf = 0 ########################## def is_cable(self): return '_cable' in str(self.dev) ########################## def is_linkx(self): return '_lx' in str(self.dev) ########################## def close(self): pass ########################## def read4(self, addr): cmd = ["mcra", self.dev, hex(addr)] rc, out = getstatusoutput(cmd) if rc: raise MtcrException("Failed to read from mst device from address 0x%x: %s" % (addr, out)) return int(out, 16) ########################## def readField(self, addr, startBit, size): return extractField(self.read4(addr), startBit, size) ########################## def write4(self, addr, val): cmd = ["mcra", self.dev, hex(addr), hex(val)] rc, out = getstatusoutput(cmd) if rc: raise MtcrException("Failed to wrtie to mst device to address 0x%x: %s" % (addr, out)) ########################## def writeField(self, val, addr, startBit, size): oldVal = self.read4(addr) newVal = insertField(oldVal, startBit, val, 0, size) self.write4(addr, newVal) ########################## def read4Block(self, addr, size): # size in dwords l = [] for add in range(addr, addr + size * 4, 4): l.append(self.read4(add)) return l ########################## def write4Block(self, addr, dataList): size = len(dataList) for i, current_addr in enumerate(range(addr, addr + size * 4, 4)): self.write4(current_addr, dataList[i]) ########################## def icmdSendCmd(self, opcode, data, skipWrite): raise MtcrException("icmd isn't supported in MCRA mode") ########################## def mHcaReset(self, dbdf_list): raise MtcrException("mswReset isn't supported in MCRA mode") mstflint-4.26.0/mtcr_py/Makefile.am0000644000175000017500000000335414522641732017421 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in mtcr_pylibdir = $(libdir)/mstflint/python_tools/ mtcr_pylib_DATA = cmtcr.so dist_mtcr_pylib_DATA = mtcr.py cmtcr.so: $(CC) -g -Wall -pthread -shared ${CFLAGS} -o cmtcr.so -Wl,--whole-archive $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a -Wl,--no-whole-archive CLEANFILES = cmtcr.so mstflint-4.26.0/mtcr_py/test.py0000755000175000017500000000347014522641732016720 0ustar tzafrirctzafrirc# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -- from __future__ import print_function import mtcr device = "/dev/mst/l-apps08:23108,@dev@mst@mt26448_pci_cr0" device = "/dev/mst/mt26448_pciconf0" device = "mlx4_core0@pci0:0:5:0" mf = mtcr.MstDevice(device) print(("0x%x" % mf.read4(0xf0014))) for d in mf.read4Block(0xf0014, 8): print(("[0x%08x]" % d)) mf.write4Block(0xf0014, [0, 0, 0, 0, 0, 0, 0, 0]) mstflint-4.26.0/mtcr_py/Makefile.in0000644000175000017500000004262514522641740017435 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mtcr_py DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_mtcr_pylib_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(mtcr_pylibdir)" \ "$(DESTDIR)$(mtcr_pylibdir)" DATA = $(dist_mtcr_pylib_DATA) $(mtcr_pylib_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ mtcr_pylibdir = $(libdir)/mstflint/python_tools/ mtcr_pylib_DATA = cmtcr.so dist_mtcr_pylib_DATA = mtcr.py CLEANFILES = cmtcr.so all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mtcr_py/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mtcr_py/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_mtcr_pylibDATA: $(dist_mtcr_pylib_DATA) @$(NORMAL_INSTALL) @list='$(dist_mtcr_pylib_DATA)'; test -n "$(mtcr_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mtcr_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mtcr_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mtcr_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mtcr_pylibdir)" || exit $$?; \ done uninstall-dist_mtcr_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(dist_mtcr_pylib_DATA)'; test -n "$(mtcr_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mtcr_pylibdir)'; $(am__uninstall_files_from_dir) install-mtcr_pylibDATA: $(mtcr_pylib_DATA) @$(NORMAL_INSTALL) @list='$(mtcr_pylib_DATA)'; test -n "$(mtcr_pylibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mtcr_pylibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mtcr_pylibdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mtcr_pylibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mtcr_pylibdir)" || exit $$?; \ done uninstall-mtcr_pylibDATA: @$(NORMAL_UNINSTALL) @list='$(mtcr_pylib_DATA)'; test -n "$(mtcr_pylibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mtcr_pylibdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(mtcr_pylibdir)" "$(DESTDIR)$(mtcr_pylibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_mtcr_pylibDATA install-mtcr_pylibDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_mtcr_pylibDATA uninstall-mtcr_pylibDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_mtcr_pylibDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man \ install-mtcr_pylibDATA install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am \ uninstall-dist_mtcr_pylibDATA uninstall-mtcr_pylibDATA cmtcr.so: $(CC) -g -Wall -pthread -shared ${CFLAGS} -o cmtcr.so -Wl,--whole-archive $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a -Wl,--no-whole-archive # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/.bazelrc0000644000175000017500000000003214522641732015321 0ustar tzafrirctzafrircbuild --copt="-std=c++14" mstflint-4.26.0/mvpd/0000755000175000017500000000000014522641740014650 5ustar tzafrirctzafrircmstflint-4.26.0/mvpd/mvpd.h0000644000175000017500000000662614522641732016002 0ustar tzafrirctzafrirc /* * * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * */ #ifndef _MVPD_H #define _MVPD_H #include #ifdef __cplusplus extern "C" { #endif #ifdef _MSC_VER #define MVPD_DLL_EXPORT __declspec(dllexport) #else #define MVPD_DLL_EXPORT #endif enum { MVPD_OK = 0, MVPD_ERR, MVPD_MEM_ERR, MVPD_BAD_PARAMS, MVPD_ACCESS_ERR, MVPD_FORMAT_ERR, MVPD_TRUNCATED, MVPD_BAD_CHECKSUM, MVPD_EMPTY, MVPD_END, }; typedef enum { VPD_RO = 1 << 0, /* Read-only VPD tags type */ VPD_RW = 1 << 1, /* Read-Write VPD tags type */ VPD_ALL = VPD_RO | VPD_RW, /* Read All VPD tags */ } vpd_tags_type_t; typedef struct vpd_tag { char id[3]; // Leave a slot for NULL termination int len; char* data; int offset; // start of this tag in vpd address space } vpd_tag_t; typedef struct { int vpd_size; vpd_tag_t id; int ro_fields_size; vpd_tag_t* ro_fields; int rw_fields_size; vpd_tag_t* rw_fields; } vpd_result_t; MVPD_DLL_EXPORT int mvpd_get_vpd_size(mfile* mf, int* size); MVPD_DLL_EXPORT int mvpd_read(mfile* mf, vpd_result_t** result, vpd_tags_type_t read_type); MVPD_DLL_EXPORT int mvpd_read_adv(mfile* mf, vpd_result_t** result, vpd_tags_type_t read_type, int strict); MVPD_DLL_EXPORT int mvpd_parse(u_int8_t* raw_vpd, int size, vpd_result_t** result, vpd_tags_type_t read_type); MVPD_DLL_EXPORT int mvpd_parse_adv(u_int8_t* raw_vpd, int size, vpd_result_t** result, vpd_tags_type_t read_type, int strict, int checksum_verify); MVPD_DLL_EXPORT int mvpd_result_free(vpd_result_t* result); MVPD_DLL_EXPORT int mvpd_get_raw_vpd(mfile* mf, u_int8_t* raw_data_buf, int size); #ifdef __cplusplus } #endif #endif mstflint-4.26.0/mvpd/Makefile.am0000644000175000017500000000400514522641732016704 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/tools_layouts -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/dev_mgt AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libmvpd.la libmvpd_la_SOURCES = mvpd.c mvpd.h libmvpd_la_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la libmvpd_la_LIBADD = $(libmvpd_la_DEPENDENCIES) RMVPD_SO = rmvpd.so noinst_HEADERS = mvpd.h ${RMVPD_SO}: libmvpd.la $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RMVPD_SO} \ $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a CLEANFILES = ${RMVPD_SO} mstflint-4.26.0/mvpd/mvpd.c0000644000175000017500000004123514522641732015770 0ustar tzafrirctzafrirc/* * Copyright (c) 2013-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #ifdef MST_UL #include #endif #include "mvpd.h" #if defined(__MINGW32__) || defined(__MINGW64__) || defined(_MSC_VER) /* Windows */ #define syslog(lvl, format, ...) #else #include #endif enum { INTERNAL_PARAMS_ERROR = 0x33444, }; enum { VPD_TAG_ID = 0x02, /* Product name of the device */ VPD_TAG_R = 0x10, /* Read-only keywords */ VPD_TAG_W = 0x11, /* Read-write keywords */ VPD_TAG_END = 0x0F /* End Tag */ }; #define VPD_MAX_SIZE 1 << 15 #define VPD_TAG_LARGE(a) (a[0] & 0x80) #define VPD_TAG_NAME(a) (VPD_TAG_LARGE(a) ? (a[0] & 0x7F) : (a[0] >> 3)) #define VPD_TAG_LENGTH(a) (VPD_TAG_LARGE(a) ? ((a[2] << 8) | (a[1])) : (a[0] & 0x7)) #define VPD_TAG_HEAD(a) (VPD_TAG_LARGE(a) ? 0x3 : 0x1) #define VPD_TAG_DATA(d) (d + VPD_TAG_HEAD(d)) #define CONVERT(r) (r == VPD_RO ? VPD_TAG_R : VPD_TAG_W) #if defined(_MSC_VER) #define PACK(__declaration__) __pragma(pack(push, 1)) __declaration__ __pragma(pack(pop)) #else #define PACK(__declaration__) __declaration__ __attribute__((__packed__)) #endif PACK(struct vpd_field { unsigned char keyword[2]; unsigned char length; unsigned char data[0]; }); int my_vpd_read(mfile* mf, u_int8_t* raw_vpd, int raw_vpd_size, u_int8_t* buf, unsigned offset, int size) { unsigned i; int ret; if (mf != NULL) { for (i = 0; (int)i < size; i += 0x4) { u_int8_t value[4] = {0}; ret = mvpd_read4(mf, offset + i, value); if (ret) { syslog(3, "LIBMVPD: MVPD_READ4 failed on offset:%d, RC[%d]", offset, ret); return MVPD_ACCESS_ERR; } memcpy(buf + i, value, 4 * sizeof(u_int8_t)); } } else if (raw_vpd != NULL) { if ((int)(offset + size) > raw_vpd_size) { size = raw_vpd_size - offset; if (size < 0) { return MVPD_TRUNCATED; } } memcpy(buf, raw_vpd + offset, size * sizeof(u_int8_t)); } else { return INTERNAL_PARAMS_ERROR; } return MVPD_OK; } int mvpd_get_raw_vpd(mfile* mf, u_int8_t* raw_data_buf, int size) { dm_dev_id_t dev_type; u_int32_t dev_id; u_int32_t rev_id; if (mf == NULL) { return INTERNAL_PARAMS_ERROR; } if (dm_get_device_id(mf, &dev_type, &dev_id, &rev_id) != 0) { return INTERNAL_PARAMS_ERROR; } if (dm_dev_is_hca(dev_type) == true) { return my_vpd_read(mf, NULL, 0, raw_data_buf, 0, size); } else { return MVPD_OK; } } int allocate_result(vpd_result_t** result) { vpd_result_t* res; res = (vpd_result_t*)malloc(sizeof(vpd_result_t)); if (res == NULL) { return MVPD_MEM_ERR; } memset(res, 0, sizeof(vpd_result_t)); *result = res; return MVPD_OK; } int fill_id(vpd_result_t* result, u_int8_t* data, unsigned offset) { vpd_tag_t id_tag; strcpy(id_tag.id, "ID"); id_tag.len = VPD_TAG_LENGTH(data); id_tag.data = (char*)malloc(id_tag.len + 1); if (id_tag.data == NULL) { return MVPD_MEM_ERR; } memcpy(id_tag.data, VPD_TAG_DATA(data), id_tag.len); id_tag.data[id_tag.len] = '\0'; id_tag.offset = offset; result->id = id_tag; result->vpd_size += VPD_TAG_LENGTH(data); return MVPD_OK; } int fill_fields(vpd_result_t* result, u_int8_t* data, unsigned offset, int read_type, unsigned* checksum_offset, int strict) { int i; int fields_num = 0; int fields_idx = 0; vpd_tag_t id_tag; vpd_tag_t* fields_list; struct vpd_field* field = NULL; if (read_type == VPD_TAG_R) { if (result->ro_fields_size != 0) { syslog(3, "LIBMVPD: Format error RO fields !"); return MVPD_FORMAT_ERR; } } else { if (result->rw_fields_size != 0) { syslog(3, "LIBMVPD: Format error RW fields !"); return MVPD_FORMAT_ERR; } } for (i = 0; i < VPD_TAG_LENGTH(data); i += 0x3 + field->length) { field = (struct vpd_field*)(VPD_TAG_DATA(data) + i); if (strict) { if (i + 0x3 > VPD_TAG_LENGTH(data) || i + 0x3 + field->length > VPD_TAG_LENGTH(data)) { fprintf(stderr, "-E- In tag %s offset 0x%x+0x%x there is an invalid field (keyword: 0x%x).\n", VPD_TAG_NAME(data) == VPD_TAG_R ? "VPD_R" : "VPD_W", offset, i, field->keyword[0]); return MVPD_FORMAT_ERR; } } fields_num++; } fields_list = (vpd_tag_t*)malloc(fields_num * sizeof(vpd_tag_t)); if (fields_list == NULL) { return MVPD_MEM_ERR; } for (i = 0; i < VPD_TAG_LENGTH(data); i += 0x3 + field->length) { field = (struct vpd_field*)(VPD_TAG_DATA(data) + i); id_tag.id[0] = field->keyword[0]; id_tag.id[1] = field->keyword[1]; id_tag.id[2] = '\0'; if (strict && (strlen(id_tag.id) == 0 || !isprint(field->keyword[0]) || !isprint(field->keyword[1]))) { // fail if keywords are non printable/empty if strict==1 (indicates corrupt VPD) free(fields_list); return MVPD_FORMAT_ERR; } id_tag.len = field->length; id_tag.data = (char*)malloc(id_tag.len + 1); if (id_tag.data == NULL) { free(fields_list); return MVPD_MEM_ERR; } memcpy(id_tag.data, field->data, id_tag.len); id_tag.data[id_tag.len] = '\0'; id_tag.offset = offset + i + VPD_TAG_HEAD(data); if (strcmp(id_tag.id, "RV") == 0) { *checksum_offset = id_tag.offset + 0x3; /* 0x3 is the header of the field */ } // syslog(3, "LIBMVPD: Filed TAG: %s, data: %s", id_tag.id, id_tag.data); fields_list[fields_idx++] = id_tag; } if (read_type == VPD_TAG_R) { result->ro_fields_size += fields_num; result->ro_fields = fields_list; } else { result->rw_fields_size += fields_num; result->rw_fields = fields_list; } return MVPD_OK; } int check_checksum(u_int8_t* id_data, int id_size, u_int8_t* ro_data, unsigned rv_offset) { int i; u_int8_t sum = 0; // printf("-D- RV OFF: 0x%x, id_size: %x\n", rv_offset, id_size); if ((int)rv_offset < id_size) { return MVPD_BAD_CHECKSUM; } for (i = 0; i < id_size; i++) { sum += id_data[i]; } for (i = 0; i <= (int)(rv_offset - id_size); i++) { sum += ro_data[i]; } if (sum) { return MVPD_BAD_CHECKSUM; } return MVPD_OK; } #define CHECK_RC(rc) \ do \ { \ if (rc) \ { \ goto error; \ } \ } while (0) #define CHECK_NULL(ptr) \ do \ { \ if (NULL == ptr) \ { \ goto error; \ } \ } while (0) int mvpd_read_or_parse(mfile* mf, u_int8_t* raw_vpd, int raw_vpd_size, vpd_result_t** result, vpd_tags_type_t read_type, int strict, int checksum_verify) { struct vpd_tags_info_t { unsigned id_tag_offset; int id_tag_len; unsigned ro_tag_offset; int ro_tag_len; unsigned rw_tag_offset; int rw_tag_len; }; struct vpd_tags_info_t vpd_tags_info = {.id_tag_len = -1, .ro_tag_len = -1, .rw_tag_len = -1}; u_int8_t buff[4] = {0}; unsigned offset = 0; unsigned checksum_offset = 0; u_int8_t* id_data = NULL; u_int8_t* ro_data = NULL; u_int8_t* rw_data = NULL; int checksum_res = -1; int rc = MVPD_MEM_ERR; unsigned actual_size = 1 << 15; /*MAX SIZE OF VPD */ int len = 0; dm_dev_id_t dev_type; u_int32_t dev_id; u_int32_t rev_id; // when mf is NULL we parse the raw_vpd inside my_vpd_read method, no need to check if it's a NIC in case of parse if (mf != NULL) { if (dm_get_device_id(mf, &dev_type, &dev_id, &rev_id) != 0) { return INTERNAL_PARAMS_ERROR; } if (dm_dev_is_hca(dev_type) == false) { return MVPD_OK; } } if (raw_vpd != NULL) { actual_size = raw_vpd_size; } if (allocate_result(result)) { return MVPD_MEM_ERR; } for (offset = 0; offset < actual_size; offset += len) { rc = my_vpd_read(mf, raw_vpd, raw_vpd_size, buff, offset, 4); CHECK_RC(rc); len = VPD_TAG_HEAD(buff) + VPD_TAG_LENGTH(buff); if (VPD_TAG_NAME(buff) == VPD_TAG_END) { break; } else if (VPD_TAG_NAME(buff) == VPD_TAG_ID) { vpd_tags_info.id_tag_len = len; vpd_tags_info.id_tag_offset = offset; } else if (VPD_TAG_NAME(buff) == VPD_TAG_R) { vpd_tags_info.ro_tag_len = len; vpd_tags_info.ro_tag_offset = offset; } else if (VPD_TAG_NAME(buff) == VPD_TAG_W) { vpd_tags_info.rw_tag_len = len; vpd_tags_info.rw_tag_offset = offset; } else { syslog(3, "LIBMVPD: Unknown TAG %x in offset: %x !", VPD_TAG_NAME(buff), offset); rc = MVPD_FORMAT_ERR; goto error; } } if (offset == 0) { rc = MVPD_EMPTY; goto error; } if (vpd_tags_info.ro_tag_len <= 0 || vpd_tags_info.id_tag_len <= 0) { rc = MVPD_FORMAT_ERR; goto error; } if (read_type & VPD_RO) { /* TAKE THE ID TAG */ // syslog(3, "LIBMVPD: Reading VPD RO SECTION"); int id_len = vpd_tags_info.id_tag_len; int ro_len = vpd_tags_info.ro_tag_len; int read_size = (id_len + 3) & ~3; size_t alocated_read_size = read_size * sizeof(u_int8_t); offset = vpd_tags_info.id_tag_offset; id_data = (u_int8_t*)malloc(alocated_read_size); CHECK_NULL(id_data); memset(id_data, 0, alocated_read_size); rc = my_vpd_read(mf, raw_vpd, raw_vpd_size, id_data, offset, read_size); CHECK_RC(rc); rc = fill_id(*result, id_data, offset); CHECK_RC(rc); (*result)->vpd_size += id_len; /* TAKE THE RO FIELDS */ read_size = (ro_len + 3) & ~3; alocated_read_size = read_size * sizeof(u_int8_t); offset = vpd_tags_info.ro_tag_offset; ro_data = (u_int8_t*)malloc(alocated_read_size); CHECK_NULL(ro_data); memset(ro_data, 0, alocated_read_size); rc = my_vpd_read(mf, raw_vpd, raw_vpd_size, ro_data, offset, read_size); CHECK_RC(rc); // syslog(3, "LIBMVPD: Reading VPD RO Done, filling fields !"); rc = fill_fields(*result, ro_data, offset, VPD_TAG_NAME(ro_data), &checksum_offset, strict); CHECK_RC(rc); // syslog(3, "LIBMVPD: Filling fields done, checking CHECKSUM: %d!", checksum_offset); (*result)->vpd_size += ro_len; checksum_res = check_checksum(id_data, id_len, ro_data, checksum_offset); // syslog(3, "LIBMVPD: checking CHECKSUM Done !"); free(ro_data); ro_data = NULL; free(id_data); id_data = NULL; } if ((read_type & VPD_RW) && vpd_tags_info.rw_tag_len > 0) { // syslog(3, "LIBMVPD: Reading VPD RW SECTION"); int len = vpd_tags_info.rw_tag_len; int read_size = (len + 3) & ~3; size_t allocated_rw_size = read_size * sizeof(u_int8_t); offset = vpd_tags_info.rw_tag_offset; rw_data = (u_int8_t*)malloc(allocated_rw_size); CHECK_NULL(rw_data); memset(rw_data, 0, allocated_rw_size); rc = my_vpd_read(mf, raw_vpd, raw_vpd_size, rw_data, offset, read_size); CHECK_RC(rc); rc = fill_fields(*result, rw_data, offset, VPD_TAG_NAME(rw_data), &checksum_offset, strict); CHECK_RC(rc); (*result)->vpd_size += len; free(rw_data); } /* If the RO field were read check the checksum */ if (checksum_verify && checksum_res != -1) { return checksum_res; } return MVPD_OK; error: if (id_data != NULL) { free(id_data); } if (ro_data != NULL) { free(ro_data); } if (rw_data != NULL) { free(rw_data); } mvpd_result_free(*result); return rc; } int mvpd_read(mfile* mf, vpd_result_t** result, vpd_tags_type_t read_type) { return mvpd_read_adv(mf, result, read_type, 0); } int mvpd_read_adv(mfile* mf, vpd_result_t** result, vpd_tags_type_t read_type, int strict) { if (mf == NULL || result == NULL) { return MVPD_BAD_PARAMS; } return mvpd_read_or_parse(mf, NULL, -1, result, read_type, strict, 0); } int mvpd_parse(u_int8_t* raw_vpd, int size, vpd_result_t** result, vpd_tags_type_t read_type) { return mvpd_parse_adv(raw_vpd, size, result, read_type, 0, 0); } int mvpd_parse_adv(u_int8_t* raw_vpd, int size, vpd_result_t** result, vpd_tags_type_t read_type, int strict, int checksum_ver) { if (raw_vpd == NULL || size <= 0 || result == NULL) { return MVPD_BAD_PARAMS; } return mvpd_read_or_parse(NULL, raw_vpd, size, result, read_type, strict, checksum_ver); } void free_fields(vpd_tag_t* fields_list, int len) { int i; for (i = 0; i < len; i++) { free(fields_list[i].data); } free(fields_list); } int mvpd_result_free(vpd_result_t* result) { if (result == NULL) { return 1; } if (result->ro_fields != NULL) { free_fields(result->ro_fields, result->ro_fields_size); } if (result->rw_fields != NULL) { free_fields(result->rw_fields, result->rw_fields_size); } if (result->id.data != NULL) { free(result->id.data); } free(result); return MVPD_OK; } int mvpd_get_vpd_size(mfile* mf, int* size) { int mvpd_len; int len = 0; u_int8_t buff[4] = {0}; int res; dm_dev_id_t dev_type; u_int32_t dev_id; u_int32_t rev_id; if (mf == NULL) { return INTERNAL_PARAMS_ERROR; } if (dm_get_device_id(mf, &dev_type, &dev_id, &rev_id) != 0) { return INTERNAL_PARAMS_ERROR; } if (dm_dev_is_hca(dev_type) == true) { for (mvpd_len = 0; mvpd_len < VPD_MAX_SIZE; mvpd_len += len) { res = my_vpd_read(mf, NULL, 0, buff, mvpd_len, 4); if (res != MVPD_OK) { return res; } len = VPD_TAG_HEAD(buff) + VPD_TAG_LENGTH(buff); if (VPD_TAG_NAME(buff) == VPD_TAG_END) { break; } if (VPD_TAG_NAME(buff) != VPD_TAG_ID && VPD_TAG_NAME(buff) != VPD_TAG_R && VPD_TAG_NAME(buff) != VPD_TAG_W) { syslog(3, "LIBMVPD: Unknown TAG %x in offset: %x !", VPD_TAG_NAME(buff), mvpd_len); return MVPD_FORMAT_ERR; } } *size = mvpd_len; } return 0; } mstflint-4.26.0/mvpd/Makefile.in0000644000175000017500000004760714522641740016733 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mvpd DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(noinst_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libmvpd_la_OBJECTS = mvpd.lo libmvpd_la_OBJECTS = $(am_libmvpd_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmvpd_la_SOURCES) DIST_SOURCES = $(libmvpd_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/tools_layouts -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/dev_mgt AM_CFLAGS = -W -Wall -g -MP -MD $(COMPILER_FPIC) noinst_LTLIBRARIES = libmvpd.la libmvpd_la_SOURCES = mvpd.c mvpd.h libmvpd_la_DEPENDENCIES = $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la libmvpd_la_LIBADD = $(libmvpd_la_DEPENDENCIES) RMVPD_SO = rmvpd.so noinst_HEADERS = mvpd.h CLEANFILES = ${RMVPD_SO} all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mvpd/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mvpd/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmvpd.la: $(libmvpd_la_OBJECTS) $(libmvpd_la_DEPENDENCIES) $(EXTRA_libmvpd_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libmvpd_la_OBJECTS) $(libmvpd_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mvpd.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am ${RMVPD_SO}: libmvpd.la $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RMVPD_SO} \ $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/aclocal.m40000644000175000017500000125065414522641735015563 0ustar tzafrirctzafrirc# generated automatically by aclocal 1.13.4 -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.13' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.13.4], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.13.4])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) ]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/ax_check_compile_flag.m4]) mstflint-4.26.0/mlxlink/0000755000175000017500000000000014522641737015366 5ustar tzafrirctzafrircmstflint-4.26.0/mlxlink/modules/0000755000175000017500000000000014522641737017036 5ustar tzafrirctzafrircmstflint-4.26.0/mlxlink/modules/mlxlink_utils.cpp0000644000175000017500000010737014522641732022443 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_utils.h" void termHandler(int sig) { printf("Interrupted, Exiting...\n"); exit(sig); } u_int32_t findMaxKey(vector keys) { u_int32_t maxKeySize = 0; for (vector::iterator it = keys.begin(); it != keys.end(); ++it) { if ((*it).length() > maxKeySize) { maxKeySize = (*it).length(); } } return maxKeySize; } string convertIntToHexString(int toConvert) { stringstream hexStr; hexStr << hex << toConvert; return hexStr.str(); } string deleteLastChar(const string& s, u_int32_t numOfCharsToRemove) { string newStr = s; if (newStr.size() && newStr.size() > numOfCharsToRemove) { newStr.erase(newStr.size() - numOfCharsToRemove); } return newStr; } float convertFloatPrec(float value) { string s; char strVal[32]; float res; u_int32_t prec = 3; snprintf(strVal, sizeof(strVal), "%.*f", prec, value); res = stof(string(strVal)); return res; } string getStringFromVector(vector values) { string s; for (vector::const_iterator i = values.begin(); i != values.end(); ++i) { s += *i + ','; } return deleteLastChar(s); } string getStringFromVector(vector values) { string s; char strVal[32]; u_int32_t prec = 0; for (vector::const_iterator i = values.begin(); i != values.end(); ++i) { if (abs((*i - ((int)*i))) > 0) { prec = 3; } else { prec = 0; } snprintf(strVal, sizeof(strVal), "%.*f", prec, *i); s += string(strVal) + ','; } return deleteLastChar(s); } u_int64_t add32BitTo64(u_int32_t value1, u_int32_t value2) { return (((u_int64_t)value1) << 32 | value2); } string getFullString(u_int64_t intVal) { string strVal = ""; if (intVal) { for (int i = 56; i > -1; i -= 8) { strVal.push_back((char)(intVal >> i)); } } else { strVal = "N/A"; } return strVal; } string status2Color(u_int32_t status) { return (status == 0 || status == 1023) ? ANSI_COLOR_GREEN : ANSI_COLOR_RED; } string getLoopbackColor(u_int32_t loopbackMode) { switch (loopbackMode) { case LOOPBACK_MODE_NO: return ANSI_COLOR_GREEN; break; case LOOPBACK_MODE_REMOTE: return ANSI_COLOR_CYAN; break; case LOOPBACK_MODE_LOCAL: return ANSI_COLOR_BLUE; break; case LOOPBACK_MODE_EXTERNAL: return ANSI_COLOR_MAGENTA; case LOOPBACK_MODE_LL: return ANSI_COLOR_YELLOW; default: return ANSI_COLOR_RED; } return ANSI_COLOR_RED; } string getAnDisableColor(u_int32_t anDisable) { switch (anDisable) { case AN_DISABLE_NORMAL: return ANSI_COLOR_GREEN; case AN_DISABLE_FORCE: return ANSI_COLOR_BLUE; default: return ANSI_COLOR_RED; } } string IBSupportedSpeeds2Str(u_int32_t mask) { string maskStr = ""; if (mask & IB_LINK_SPEED_XDR) { maskStr += "XDR,"; } if (mask & IB_LINK_SPEED_NDR) { maskStr += "NDR,"; } if (mask & IB_LINK_SPEED_HDR) { maskStr += "HDR,"; } if (mask & IB_LINK_SPEED_EDR) { maskStr += "EDR,"; } if (mask & IB_LINK_SPEED_FDR) { maskStr += "FDR,"; } if (mask & IB_LINK_SPEED_FDR10) { maskStr += "FDR10,"; } if (mask & IB_LINK_SPEED_QDR) { maskStr += "QDR,"; } if (mask & IB_LINK_SPEED_DDR) { maskStr += "DDR,"; } if (mask & IB_LINK_SPEED_SDR) { maskStr += "SDR,"; } return deleteLastChar(maskStr); } string EthSupportedSpeeds2Str(u_int32_t int_mask) { string maskStr = ""; if ((int_mask & ETH_LINK_SPEED_100G_CR4) || (int_mask & ETH_LINK_SPEED_100G_KR4) || (int_mask & ETH_LINK_SPEED_100G_SR4) || (int_mask & ETH_LINK_SPEED_100G_LR4)) { maskStr += "100G,"; } if ((int_mask & ETH_LINK_SPEED_56G_R4) || (int_mask & ETH_LINK_SPEED_56G_CR4) || (int_mask & ETH_LINK_SPEED_56G_KR4)) { maskStr += "56G,"; } if ((int_mask & ETH_LINK_SPEED_50G_CR2) || (int_mask & ETH_LINK_SPEED_50G_KR2) || (int_mask & ETH_LINK_SPEED_50G_SR2) || (int_mask & ETH_LINK_SPEED_50G_KR4)) { maskStr += "50G,"; } if ((int_mask & ETH_LINK_SPEED_40G_CR4) || (int_mask & ETH_LINK_SPEED_40G_KR4) || (int_mask & ETH_LINK_SPEED_40G_SR4) || (int_mask & ETH_LINK_SPEED_40G_LR4)) { maskStr += "40G,"; } if ((int_mask & ETH_LINK_SPEED_25G_CR) || (int_mask & ETH_LINK_SPEED_25G_KR) || (int_mask & ETH_LINK_SPEED_25G_SR)) { maskStr += "25G,"; } if (int_mask & ETH_LINK_SPEED_20G_KR2) { maskStr += "20G,"; } if ((int_mask & ETH_LINK_SPEED_10G_CR) || (int_mask & ETH_LINK_SPEED_10G_KR) || (int_mask & ETH_LINK_SPEED_10G_SR) || (int_mask & ETH_LINK_SPEED_10G_LR) || (int_mask & ETH_LINK_SPEED_10G_CX4) || (int_mask & ETH_LINK_SPEED_10G_KX4) || (int_mask & ETH_LINK_SPEED_10G_BaseT)) { maskStr += "10G,"; } if ((int_mask & ETH_LINK_SPEED_1000_SGMII) || (int_mask & ETH_LINK_SPEED_1000_KX) || (int_mask & ETH_LINK_SPEED_1000_BaseT)) { maskStr += "1G,"; } if (int_mask & ETH_LINK_SPEED_100_BaseTx) { maskStr += "100M,"; } if (int_mask & ETH_LINK_SPEED_10M) { maskStr += "10M,"; } return deleteLastChar(maskStr); } string EthExtSupportedSpeeds2Str(u_int32_t int_mask) { string maskStr = ""; if (int_mask & ETH_LINK_SPEED_EXT_800GAUI_8) { maskStr += "800G_8X,"; } if (int_mask & ETH_LINK_SPEED_EXT_400GAUI_4) { maskStr += "400G_4X,"; } if (int_mask & ETH_LINK_SPEED_EXT_400GAUI_8) { maskStr += "400G_8X,"; } if (int_mask & ETH_LINK_SPEED_EXT_200GAUI_2) { maskStr += "200G_2X,"; } if (int_mask & ETH_LINK_SPEED_EXT_200GAUI_4) { maskStr += "200G_4X,"; } if (int_mask & ETH_LINK_SPEED_EXT_100GAUI_1) { maskStr += "100G_1X,"; } if (int_mask & ETH_LINK_SPEED_EXT_100GAUI_2) { maskStr += "100G_2X,"; } if (int_mask & ETH_LINK_SPEED_EXT_CAUI_4) { maskStr += "100G_4X,"; } if (int_mask & ETH_LINK_SPEED_EXT_50GAUI_1) { maskStr += "50G_1X,"; } if (int_mask & ETH_LINK_SPEED_EXT_50GAUI_2) { maskStr += "50G_2X,"; } if (int_mask & ETH_LINK_SPEED_EXT_XLAUI_4) { maskStr += "40G,"; } if (int_mask & ETH_LINK_SPEED_EXT_25GAUI_1) { maskStr += "25G,"; } if (int_mask & ETH_LINK_SPEED_EXT_XFI) { maskStr += "10G,"; } if (int_mask & ETH_LINK_SPEED_EXT_5GBASE_R) { maskStr += "5G,"; } if (int_mask & ETH_LINK_SPEED_EXT_2_5GBASE_X) { maskStr += "2.5G,"; } if (int_mask & ETH_LINK_SPEED_EXT_1000BASE_X) { maskStr += "1G,"; } if (int_mask & ETH_LINK_SPEED_EXT_SGMII_100M) { maskStr += "100M,"; } if (int_mask & ETH_LINK_SPEED_EXT_SGMII_10M) { maskStr += "10M,"; } return deleteLastChar(maskStr); } string SupportedSpeeds2Str(u_int32_t proto_active, u_int32_t mask, bool extended) { switch (proto_active) { case IB: return IBSupportedSpeeds2Str(mask); case ETH: if (extended) { return EthExtSupportedSpeeds2Str(mask); } } return EthSupportedSpeeds2Str(mask); } string getOui(u_int32_t oui) { string ouiStr; switch (oui) { case OTHER: ouiStr = "Other"; break; case MELLANOX: ouiStr = "Mellanox"; break; case KNOWN_OUI: ouiStr = "Known OUI"; break; case NVIDIA: ouiStr = "Nvidia"; break; default: ouiStr = "Other"; } return ouiStr; } int getBitvalue(u_int32_t mask, int idx) { return (1 & (mask >> (idx - 1))); } string getPowerClass(MlxlinkMaps* mlxlinkMaps, u_int32_t cableIdentifier, u_int32_t powerClass, u_int32_t maxPower) { string powerClassStr = "N/A"; string val = ""; float maxPowerValue = maxPower * 0.25; float powerClassVal = 0; switch (cableIdentifier) { case IDENTIFIER_SFP_DD: val = mlxlinkMaps->_sfpddPowerClass[powerClass]; powerClassVal = mlxlinkMaps->_sfpddPowerClassToValue[powerClass]; break; case IDENTIFIER_QSFP_DD: case IDENTIFIER_OSFP: val = mlxlinkMaps->_qsfpddOsfpPowerClass[powerClass]; powerClassVal = mlxlinkMaps->_qsfpddPowerClassToValue[powerClass]; break; default: val = mlxlinkMaps->_sfpQsfpPowerClass[powerClass]; } if ((maxPowerValue > powerClassVal) || (powerClass == POWER_CLASS8)) { char frmtValue[64]; sprintf(frmtValue, "%.1f W max", maxPowerValue); powerClassStr = string(frmtValue); } else if (!val.empty()) { powerClassStr = val; } return powerClassStr; } int ptysSpeedToExtMaskETH(const string& speed) { if (speed == "10M") { return (ETH_LINK_SPEED_EXT_SGMII_10M); } if (speed == "100M") { return (ETH_LINK_SPEED_EXT_SGMII_100M); } if (speed == "1G") { return (ETH_LINK_SPEED_EXT_1000BASE_X); } if (speed == "2.5G") { return (ETH_LINK_SPEED_EXT_2_5GBASE_X); } if (speed == "5G") { return (ETH_LINK_SPEED_EXT_5GBASE_R); } if (speed == "10G") { return (ETH_LINK_SPEED_EXT_XFI); } if (speed == "25G") { return (ETH_LINK_SPEED_EXT_25GAUI_1); } if (speed == "40G") { return (ETH_LINK_SPEED_EXT_XLAUI_4); } if (speed == "50G_2X") { return (ETH_LINK_SPEED_EXT_50GAUI_2); } if (speed == "50G_1X") { return (ETH_LINK_SPEED_EXT_50GAUI_1); } if (speed == "100G_4X") { return (ETH_LINK_SPEED_EXT_CAUI_4); } if (speed == "100G_1X") { return (ETH_LINK_SPEED_EXT_100GAUI_1); } if (speed == "100G_2X") { return (ETH_LINK_SPEED_EXT_100GAUI_2); } if (speed == "200G_2X") { return ETH_LINK_SPEED_EXT_200GAUI_2; } if (speed == "200G_4X") { return ETH_LINK_SPEED_EXT_200GAUI_4; } if (speed == "400G_4X") { return ETH_LINK_SPEED_EXT_400GAUI_4; } if (speed == "400G_8X") { return ETH_LINK_SPEED_EXT_400GAUI_8; } if (speed == "800G_8X") { return ETH_LINK_SPEED_EXT_800GAUI_8; } return 0x0; } int ptysSpeedToMaskETH(const string& speed) { if (speed == "1G") { return (ETH_LINK_SPEED_1000_SGMII | ETH_LINK_SPEED_1000_KX | ETH_LINK_SPEED_1000_BaseT); } if (speed == "10G") { return (ETH_LINK_SPEED_10G_CX4 | ETH_LINK_SPEED_10G_KX4 | ETH_LINK_SPEED_10G_CR | ETH_LINK_SPEED_10G_KR | ETH_LINK_SPEED_10G_LR | ETH_LINK_SPEED_10G_SR | ETH_LINK_SPEED_10G_BaseT); } if (speed == "20G") { return ETH_LINK_SPEED_20G_KR2; } if (speed == "40G") { return (ETH_LINK_SPEED_40G_CR4 | ETH_LINK_SPEED_40G_KR4 | ETH_LINK_SPEED_40G_LR4 | ETH_LINK_SPEED_40G_SR4); } if (speed == "56G") { return (ETH_LINK_SPEED_56G_CR4 | ETH_LINK_SPEED_56G_KR4 | ETH_LINK_SPEED_56G_R4); } if (speed == "50G") { return (ETH_LINK_SPEED_50G_CR2 | ETH_LINK_SPEED_50G_KR2 | ETH_LINK_SPEED_50G_SR2 | ETH_LINK_SPEED_50G_KR4); } if (speed == "100G") { return (ETH_LINK_SPEED_100G_CR4 | ETH_LINK_SPEED_100G_KR4 | ETH_LINK_SPEED_100G_LR4 | ETH_LINK_SPEED_100G_SR4); } if (speed == "100M") { return ETH_LINK_SPEED_100_BaseTx; } if (speed == "10M") { return ETH_LINK_SPEED_10M; } if (speed == "25G") { return (ETH_LINK_SPEED_25G_CR | ETH_LINK_SPEED_25G_KR | ETH_LINK_SPEED_25G_SR); } return 0x0; } int ptysSpeedToMaskIB(const string& speed) { if (speed == "SDR") { return IB_LINK_SPEED_SDR; } if (speed == "DDR") { return IB_LINK_SPEED_DDR; } if (speed == "QDR") { return IB_LINK_SPEED_QDR; } if (speed == "FDR10") { return IB_LINK_SPEED_FDR10; } if (speed == "FDR") { return IB_LINK_SPEED_FDR; } if (speed == "EDR") { return IB_LINK_SPEED_EDR; } if (speed == "HDR") { return IB_LINK_SPEED_HDR; } if (speed == "NDR") { return IB_LINK_SPEED_NDR; } if (speed == "XDR") { return IB_LINK_SPEED_XDR; } return 0x0; } bool isPAM4Speed(u_int32_t activeSpeed, u_int32_t protoActive, bool extended) { bool pam4Signal = false; if (protoActive == ETH && extended) { if (activeSpeed == ETH_LINK_SPEED_EXT_50GAUI_1 || activeSpeed == ETH_LINK_SPEED_EXT_100GAUI_2 || activeSpeed == ETH_LINK_SPEED_EXT_200GAUI_4 || activeSpeed == ETH_LINK_SPEED_EXT_400GAUI_8) { pam4Signal = true; } } else if (protoActive == IB) { if (activeSpeed == IB_LINK_SPEED_HDR || activeSpeed == IB_LINK_SPEED_NDR || activeSpeed == IB_LINK_SPEED_XDR) { pam4Signal = true; } } return pam4Signal; } string getStrByValue(u_int32_t flags, std::map map) { string flagsStr = map[flags]; if (flagsStr.empty()) { flagsStr = "N/A"; } return flagsStr; } string getStrByMaskFromPair(u_int32_t bitmask, map> maskMap, const string& fieldSeparator, u_int32_t pairIndex) { map strMap; for (auto it = maskMap.begin(); it != maskMap.end(); it++) { strMap.insert(pair(it->first, pairIndex == 0 ? it->second.first : it->second.second)); } return getStrByMask(bitmask, strMap, fieldSeparator); } string getStrByMask(u_int32_t bitmask, std::map maskMap, const string& fieldSeparator) { string bitMaskStr = ""; string tmpMaskStr = ""; u_int32_t i = 1; u_int32_t bitmask_tmp = bitmask; if (bitmask) { while (bitmask_tmp != 0) { if (getBitvalue(bitmask, i)) { tmpMaskStr = maskMap[pow(2.0, i - 1)]; if (!tmpMaskStr.empty()) { bitMaskStr += tmpMaskStr + fieldSeparator; } } i++; bitmask_tmp >>= 1; } bitMaskStr = deleteLastChar(bitMaskStr, fieldSeparator.size()); } else { bitMaskStr = "N/A"; } return bitMaskStr; } bool checkPaosCmd(const string& paosCmd) { if (paosCmd != "UP" && paosCmd != "DN" && paosCmd != "TG") { return false; } return true; } bool checkPepcForceMode(const string& forceMode) { if (forceMode != "MA" && forceMode != "SL") { return false; } return true; } bool checkPepcANMode(const string& anMode) { if (anMode != "AU" && anMode != "MA" && anMode != "SL") { return false; } return true; } bool checkPplrCmd(const string& pplrCmd) { if (pplrCmd != "NO" && pplrCmd != "PH" && pplrCmd != "EX") { return false; } return true; } u_int32_t prbsMaskToRateNum(u_int32_t mask) { if (mask == PRBS_SDR) { return 1; } if (mask == PRBS_DDR) { return 5; } if (mask == PRBS_QDR) { return 10; } if (mask == PRBS_FDR10) { return 40; } if (mask == PRBS_FDR) { return 56; } if (mask == PRBS_EDR) { return 100; } if (mask == PRBS_HDR) { return 200; } if (mask == PRBS_NDR) { return 400; } if (mask == PRBS_XDR) { return 800; } if (mask == PRBS_1G) { return 1; } if (mask == PRBS_XAUI) { return 2; } if (mask == PRBS_50G) { return 12; } return 0; } string prbsMaskToLockStatus(u_int32_t mask, u_int32_t numOfLanesToUse) { string res = ""; for (u_int32_t i = 0; i < numOfLanesToUse; i++) { if (mask & 1 << i) { res += "Locked"; } else { res += "Not Locked"; } if (i < numOfLanesToUse - 1) { res += MlxlinkRecord::jsonFormat ? "," : ", "; } } return res; } bool checkPrbsCmd(const string& prbsCmd) { if (prbsCmd != "DS" && prbsCmd != "EN" && prbsCmd != "TU") { return false; } return true; } bool checkTestMode(const string& testMode) { if (testMode != "Nominal" && testMode != "NOMINAL" && testMode != "CORNER" && testMode != "DRIFT" && testMode != "") { return false; } return true; } PAOS_CMD paos_to_int(const string& cmd) { if (cmd == "UP") { return UP; } if (cmd == "DN") { return DN; } if (cmd == "TG") { return TG; } return NO; } int pepc_force_mode_to_int(const string& forceMode) { if (forceMode == "MA") { return 0; } if (forceMode == "SL") { return 1; } return 0; } int pepc_an_mode_to_int(const string& anMode) { if (anMode == "AU") { return 0; } if (anMode == "MA") { return 1; } if (anMode == "SL") { return 2; } return 0; } bool endsWith(string const& value, string const& ending) { if (ending.size() >= value.size()) { return false; } return equal(ending.rbegin(), ending.rend(), value.rbegin()); } void findAndReplace(string& source, string const& find, string const& replace) { for (string::size_type i = 0; (i = source.find(find, i)) != string::npos;) { source.replace(i, find.length(), replace); i += replace.length(); } } string getCableIdentifier(u_int32_t identifier) { string identifierStr; switch (identifier) { case IDENTIFIER_QSFP28: identifierStr = "QSFP28"; break; case IDENTIFIER_QSFP_PLUS: identifierStr = "QSFP+"; break; case IDENTIFIER_SFP: identifierStr = "SFP28/SFP+"; break; case IDENTIFIER_QSA: identifierStr = "QSA (QSFP->SFP)"; break; case IDENTIFIER_BACKPLANE: identifierStr = "Backplane"; break; case IDENTIFIER_SFP_DD: identifierStr = "SFP-DD"; break; case IDENTIFIER_QSFP_DD: identifierStr = "QSFP-DD"; break; case IDENTIFIER_QSFP_CMIS: identifierStr = "QSFP_CMIS"; break; case IDENTIFIER_OSFP: identifierStr = "OSFP"; break; case IDENTIFIER_DSFP: identifierStr = "DSFP"; break; default: identifierStr = "N/A"; } return identifierStr; } bool isCMISCable(u_int32_t identifier) { bool cmisCable = (identifier == IDENTIFIER_SFP_DD) || (identifier == IDENTIFIER_QSFP_DD) || (identifier == IDENTIFIER_QSFP_CMIS) || (identifier == IDENTIFIER_OSFP) || (identifier == IDENTIFIER_DSFP); return cmisCable; } bool isQsfpCable(u_int32_t identifier) { bool qsfpCable = (identifier == IDENTIFIER_QSFP28) || (identifier == IDENTIFIER_QSFP_PLUS) || (identifier == IDENTIFIER_QSFP_DD) || (identifier == IDENTIFIER_DSFP); return qsfpCable; } string getCableType(u_int32_t cableType) { string cableTypeStr; switch (cableType) { case UNIDENTIFIED: cableTypeStr = "Unidentified"; break; case ACTIVE: cableTypeStr = "Active cable (active copper / optics)"; break; case OPTICAL_MODULE: cableTypeStr = "Optical Module (separated)"; break; case PASSIVE: cableTypeStr = "Passive copper cable"; break; case UNPLUGGED: cableTypeStr = "Cable unplugged"; break; default: cableTypeStr = "Unidentified"; break; } return cableTypeStr; } string getTemp(u_int32_t temp, int celsParam) { if (temp & 0x8000) { return "-" + to_string(((~temp & 0xFFFF) + 1) / celsParam); } return to_string(temp / celsParam); } float getPower(u_int16_t power, bool isModuleExtSupported) { double result = -40; if (isModuleExtSupported) { if (power != 0) { result = 10 * log10(float(power) / 1000.0); } return result; } else { if (power & 0x8000) { return -((~power & 0xFFFF) + 1); } return power; } } int getHeight(u_int16_t height) { if (height & 0x8000) { return -((~height & 0xFFFF) + 1); } return height; } int getPhase(u_int8_t phase) { if (phase & 0x80) { return -((~phase & 0xFF) + 1); } return phase; } int getVersion(u_int8_t version) { if (version & 0x8) { return -((~version & 0xF) + 1); } return version; } string getGroupStr(u_int32_t advancedOpcode) { if (advancedOpcode == 0 || advancedOpcode == 1023) { return "N/A"; } else if (advancedOpcode < 1023) { return "PHY FW"; } else if (advancedOpcode < 2048) { return "MNG FW"; } return "CORE/DRIVER"; } string toUpperCase(string& str) { for (u_int32_t i = 0; i < str.length(); i++) { str[i] = toupper(str[i]); } return str; } string toLowerCase(string& str) { for (u_int32_t i = 0; i < str.length(); i++) { str[i] = tolower(str[i]); } return str; } string getCableMedia(u_int32_t cableType) { string cableTypeStr; switch (cableType) { case UNIDENTIFIED: cableTypeStr = "Unidentified"; break; case ACTIVE: cableTypeStr = "Active"; break; case OPTICAL_MODULE: cableTypeStr = "Optical Module"; break; case PASSIVE: cableTypeStr = "Passive"; break; case UNPLUGGED: cableTypeStr = "Unplugged"; break; default: cableTypeStr = "Unidentified"; } return cableTypeStr; } string pcieSpeedStr(u_int32_t linkSpeedActive) { string linkSpeedActiveStr; if (linkSpeedActive & GEN5) { linkSpeedActiveStr = "32G-Gen 5"; } else if (linkSpeedActive & GEN4) { linkSpeedActiveStr = "16G-Gen 4"; } else if (linkSpeedActive & GEN3) { linkSpeedActiveStr = "8G-Gen 3"; } else if (linkSpeedActive & GEN2) { linkSpeedActiveStr = "5G-Gen 2"; } else if (linkSpeedActive & GEN1) { linkSpeedActiveStr = "2.5G-Gen 1"; } else { linkSpeedActiveStr = "N/A"; } return linkSpeedActiveStr; } string getCompliance(u_int32_t compliance, std::map complianceMap, bool bitMasked) { string compliance_str = ""; static const string separator = ","; static const size_t separator_size = separator.size(); std::map::iterator it; if (!compliance) { return complianceMap.begin()->second; } if (bitMasked) { for (it = complianceMap.begin(); it != complianceMap.end(); ++it) { u_int32_t comp_bit = it->first; string curr_compliance = it->second; if (compliance & comp_bit) { if (curr_compliance != "" && (comp_bit != QSFP_ETHERNET_COMPLIANCE_CODE_EXT)) { compliance_str += (curr_compliance + separator); } } } size_t str_size = compliance_str.size(); if (!compliance_str.empty() && compliance_str.rfind(separator) == str_size - separator_size) { compliance_str.erase(str_size - separator_size, separator_size); } } else { it = complianceMap.find(compliance); if (it == complianceMap.end()) { compliance_str = "Unknown compliance " + to_string(compliance); } else { compliance_str = it->second; } } return compliance_str; } string getModuleFwVersion(bool passive, u_int32_t moduleFWVer) { string moduleFWVersion = "N/A"; if (!passive) { u_int32_t moduleFWVerChip = (moduleFWVer & 0xFF000000) >> 24; u_int32_t moduleFWVerQtr = (moduleFWVer & 0x00FF0000) >> 16; u_int32_t moduleFWVerFree = (moduleFWVer & 0x0000FFFF); if (moduleFWVer) { moduleFWVersion = to_string(moduleFWVerChip) + "." + to_string(moduleFWVerQtr) + "." + to_string(moduleFWVerFree); } } return moduleFWVersion; } string getVendorRev(u_int32_t rev) { string value = ""; u_int32_t shift = 0xFF000000; for (u_int32_t i = 0; i < 4; i++) { char c = (char)((rev & shift) >> (3 - i) * 8); if (c != 0 && c != 32) { value.push_back(c); } shift = shift >> 8; } return (value != "") ? value : "N/A"; } string getCableLengthStr(u_int32_t cableLength, bool cmisCable) { char cableLengthStr[32]; u_int32_t prec = 0; if (cmisCable) { u_int32_t lengthValue = (cableLength & 0x3f); float multiplier = 0; u_int32_t multiplierMask = (cableLength >> 6) & 0x7; switch (multiplierMask) { case CABLE_0_0_MUL: multiplier = 0.1; prec = 1; break; case CABLE_0_1_MUL: multiplier = 1; break; case CABLE_1_0_MUL: multiplier = 10; break; case CABLE_1_1_MUL: multiplier = 100; break; } snprintf(cableLengthStr, sizeof(cableLengthStr), "%.*f", prec, ((float)lengthValue * multiplier)); } else { snprintf(cableLengthStr, sizeof(cableLengthStr), "%d", cableLength); } return string(cableLengthStr); } string getRxTxCDRState(u_int32_t state, u_int32_t numOfLanes) { string stateMask = ""; u_int32_t mask = 1; for (u_int32_t i = 0; i < numOfLanes; i++) { if (state & mask) { stateMask += "ON,"; } else { stateMask += "OFF,"; } mask = mask << 1; } return deleteLastChar(stateMask); } double mw_to_dbm(double x) { return 10 * log10(x); } string floatToStr(float num, int resolution) { char fmt[32]; if (!(num - static_cast(num))) { snprintf(fmt, sizeof(fmt), "%.0f", num); } else if (resolution < 0) { snprintf(fmt, sizeof(fmt), "%f", num); } else { snprintf(fmt, sizeof(fmt), "%.*f", resolution, num); } return string(fmt); } int readSigned(u_int32_t value, u_int32_t fieldSize) { u_int32_t signMask = (u_int32_t)pow(2.0, (1.0 * fieldSize) - 1); u_int32_t valueMask = (u_int32_t)pow(2.0, 1.0 * fieldSize) - 1; if (value & signMask) { return -((~value & valueMask) + 1); } return value; } int readSignedByte(u_int32_t value) { return readSigned(value, 8); } void setPrintVal(MlxlinkCmdPrint& mlxlinkCmdPrint, string key, string value, string color, bool print, bool valid, bool arrayValue, bool colorKey) { mlxlinkCmdPrint.mlxlinkRecords[mlxlinkCmdPrint.lastInsertedRow].key = key; mlxlinkCmdPrint.mlxlinkRecords[mlxlinkCmdPrint.lastInsertedRow].val = valid ? value : "N/A"; mlxlinkCmdPrint.mlxlinkRecords[mlxlinkCmdPrint.lastInsertedRow].color = color; mlxlinkCmdPrint.mlxlinkRecords[mlxlinkCmdPrint.lastInsertedRow].visible = print; mlxlinkCmdPrint.mlxlinkRecords[mlxlinkCmdPrint.lastInsertedRow].arrayValue = arrayValue; mlxlinkCmdPrint.mlxlinkRecords[mlxlinkCmdPrint.lastInsertedRow].colorKey = colorKey; mlxlinkCmdPrint.lastInsertedRow++; } int getPrintRowIndex(MlxlinkCmdPrint& mlxlinkCmdPrint, const string& key) { int recordIndex = 0; for (const auto& record : mlxlinkCmdPrint.mlxlinkRecords) { if (record.key == key) { break; } recordIndex++; } return recordIndex; } void setPrintTitle(MlxlinkCmdPrint& mlxlinkCmdPrint, string title, u_int32_t size, bool print) { mlxlinkCmdPrint.title = title; mlxlinkCmdPrint.visible = print; mlxlinkCmdPrint.initRecords(size); } bool isSpeed25GPerLane(u_int32_t speed, u_int32_t protocol) { bool valid = false; if (protocol == IB) { if (speed == IB_LINK_SPEED_EDR) { valid = true; } } else if (protocol == ETH) { if (speed == ETH_LINK_SPEED_100G_CR4 || speed == ETH_LINK_SPEED_100G_KR4 || speed == ETH_LINK_SPEED_100G_LR4 || speed == ETH_LINK_SPEED_100G_SR4 || speed == ETH_LINK_SPEED_50G_KR2 || speed == ETH_LINK_SPEED_50G_SR2 || speed == ETH_LINK_SPEED_50G_CR2 || speed == ETH_LINK_SPEED_25G_CR || speed == ETH_LINK_SPEED_25G_KR || speed == ETH_LINK_SPEED_25G_SR || speed == ETH_LINK_SPEED_50G_KR4) { valid = true; } } return valid; } bool isSpeed50GPerLane(u_int32_t speed, u_int32_t protocol) { bool valid = false; if (protocol == IB) { if (speed == IB_LINK_SPEED_HDR) { valid = true; } } else if (protocol == ETH) { if (speed == ETH_LINK_SPEED_EXT_50GAUI_1 || speed == ETH_LINK_SPEED_EXT_100GAUI_2 || speed == ETH_LINK_SPEED_EXT_200GAUI_4 || speed == ETH_LINK_SPEED_EXT_400GAUI_8) { valid = true; } } return valid; } bool isSpeed100GPerLane(u_int32_t speed, u_int32_t protocol) { bool valid = false; if (protocol == IB) { if (speed == IB_LINK_SPEED_NDR) { valid = true; } } else if (protocol == ETH) { if (speed == ETH_LINK_SPEED_EXT_100GAUI_1 || speed == ETH_LINK_SPEED_EXT_200GAUI_2 || speed == ETH_LINK_SPEED_EXT_400GAUI_4 || speed == ETH_LINK_SPEED_EXT_800GAUI_8) { valid = true; } } return valid; } bool isSpeed200GPerLane(u_int32_t speed, u_int32_t protocol) { bool valid = false; if (protocol == IB) { if (speed == IB_LINK_SPEED_XDR) { valid = true; } } return valid; } bool isNRZSpeed(u_int32_t speed, u_int32_t protocol) { return isSpeed25GPerLane(speed, protocol) || !(isSpeed50GPerLane(speed, protocol) || isSpeed100GPerLane(speed, protocol) || isSpeed100GPerLane(speed, protocol)); } string linkWidthMaskToStr(u_int32_t width) { string widthStr = ""; if (width) { if (width & 1) { widthStr += "1x_"; } if (width & 2) { widthStr += "2x_"; } if (width & 4) { widthStr += "4x_"; } if (width & 8) { widthStr += "8x_"; } widthStr = deleteLastChar(widthStr); } else { widthStr = "N/A"; } return widthStr; } string getBDFStr(u_int32_t bdf) { char bdfBuff[128]; snprintf( bdfBuff, sizeof(bdfBuff), "%02x:%02x.%x", (u_int8_t)(bdf >> 8), (u_int8_t)(bdf >> 3) & 0x1f, (u_int8_t)(bdf)&7); return string(bdfBuff); } int getBDFInt(const string& bdfStr) { u_int32_t bdf = 0; try { auto pfStr = MlxlinkRecord::split(bdfStr, ":"); size_t sz; // make sure that there is one ":" symbol if (pfStr.size() != 2) { return -1; } // parse the port function par xx:00.0, split the sec auto funcStr = MlxlinkRecord::split(pfStr[1], "."); // make sure that there it's matching this format xx:xx.x if (pfStr[0].size() > 2 || pfStr[1].size() > 4 || funcStr.size() != 2) { return -1; } // append 0x to work with hex format only pfStr[0] = "0x" + pfStr[0]; pfStr[1] = "0x" + pfStr[1]; // parse the main pcie function 00:xx.x bdf = stoi(pfStr[0], &sz, 16); bdf <<= 8; if (sz != pfStr[0].size()) { return -1; } u_int32_t tmp = stoi(funcStr[0], &sz, 16); tmp <<= 3; bdf |= tmp; if (sz != funcStr[0].size()) { return -1; } // get the function number bdf |= stoi(funcStr[1], &sz, 0); if (sz != funcStr[1].size()) { return -1; } } catch (const exception& exp) { return -1; } return bdf; } size_t LevStrMatch(const string& source, const string& target) { const size_t srcLen = source.size(); const size_t trgLen = target.size(); size_t idx = 0; if (srcLen == 0) return trgLen; if (trgLen == 0) return srcLen; vector costs(trgLen + 1); for (idx = 0; idx < costs.size(); idx++) { costs[idx] = idx; } idx = 0; for (auto srcChar : source) { costs[0] = idx + 1; size_t corner = idx; size_t jdx = 0; for (auto trgChar : target) { size_t upper = costs[jdx + 1]; costs[jdx + 1] = (srcChar == trgChar) ? corner : 1 + min(min(upper, corner), costs[jdx]); corner = upper; ++jdx; } ++idx; } return costs[trgLen]; } bool askUser(const char* question, bool force) { if (MlxlinkRecord::jsonFormat && force) { return true; } bool ret = true; void (*old)(int); old = signal(SIGINT, termHandler); printf("\n %s ? (y/n) [n] : ", question); if (force) { printf("y\n"); } else { fflush(stdout); string answer; getline(cin, answer); if (strcasecmp(answer.c_str(), "y") && strcasecmp(answer.c_str(), "yes")) { return false; } } signal(SIGINT, old); return ret; } mstflint-4.26.0/mlxlink/modules/mlxlink_user_input.cpp0000644000175000017500000000716114522641732023475 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include #include "mlxlink_user_input.h" using namespace std; UserInput::UserInput() { _labelPort = 1; _splitPort = 1; _secondSplitPort = 1; _depth = 0; _pcieIndex = 0; _node = 0; _lane = 0; _sendPrbs = false; _sendPprt = false; _sendPptt = false; _sendPepc = false; _prbsTxInv = false; _prbsRxInv = false; _sendPepcForceMode = false; _sendPepcANMode = false; _pprtTuningTypeFlag = false; _toggle = true; _pcie = false; _links = false; _showSltp = false; _showSlrp = false; _showCounters = false; _showEyeInfo = false; _sendDepth = false; _sendPcieIndex = false; _sendNode = false; _sendDpn = false; _db = false; _sltpLane = false; _txPolicy = false; _advancedMode = false; _portSpecified = false; _splitProvided = false; _secondSplitProvided = false; _cable = false; _dump = false; _ddm = false; _write = false; _read = false; _portType = "NETWORK"; _paosCmd = ""; _pplmFec = ""; _speedFec = ""; _pplrLB = ""; _prbsMode = ""; _pprtMode = "PRBS31"; _ppttMode = "PRBS31"; _pprtRate = ""; _ppttRate = ""; _pprtTuningType = ""; _csvBer = ""; _testMode = "Nominal"; _forceMode = ""; _anMode = ""; _iteration = 0; _testTime = 0.05; _feedbackIndex = 0; _feedbackData = 0; _gvmiAddress = 0; _page = -1; _offset = -1; _len = -1; _setGroup = -1; _showGroup = -1; eyeSelect = ""; eyeSelectSpecified = false; measureTime = -1; force = false; gradeScanPerLane = false; enableRxErrInj = false; mixerOffset0 = -1; mixerOffset1 = -1; showMixers = false; enableFecHistogram = false; showFecHistogram = false; clearFecHistogram = false; isPrbsSelProvided = false; isPrbsModeProvided = false; isPrbsChProvided = false; isPrbsGenProvided = false; isPrbsShowDiagProvided = false; isPrbsClearDiagProvided = false; prbsModuleAccess = MODULE_PRBS_ACCESS_BOTH; isModuleConfigParamsProvided = false; isPcieErrInjProvided = false; errorType = ""; errorDuration = -1; injDelay = -1; dbdf = ""; } mstflint-4.26.0/mlxlink/modules/printutil/0000755000175000017500000000000014522641737021070 5ustar tzafrirctzafrircmstflint-4.26.0/mlxlink/modules/printutil/mlxlink_cmd_print.h0000644000175000017500000000374314522641732024760 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_CMD_PRINT_H #define MLXLINK_CMD_PRINT_H #include #include "mlxlink_record.h" #include class MlxlinkCmdPrint { public: MlxlinkCmdPrint(); virtual ~MlxlinkCmdPrint(); friend std::ostream& operator<<(std::ostream& out, const MlxlinkCmdPrint& cmdPrint); void initRecords(int size); void toJsonFormat(Json::Value& jsonRoot); u_int32_t getCurrRow(); std::string title; std::vector mlxlinkRecords; bool visible; u_int32_t lastInsertedRow; }; #endif /* MLXLINK_CMD_PRINT_H */ mstflint-4.26.0/mlxlink/modules/printutil/mlxlink_record.cpp0000644000175000017500000002100714522641732024603 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_record.h" #define MAX_LEN_OF_GRADE 6 #define MAX_LEN_OF_DDM_FIELD 14 #define MAX_LEN_OF_MODULE_PRBS_FIELD 15 bool MlxlinkRecord::jsonFormat = false; std::ostream* MlxlinkRecord::cOut = &std::cout; FILE* MlxlinkRecord::stdOut = stdout; MlxlinkRecord::MlxlinkRecord() { key = ""; val = "N/A"; color = ANSI_COLOR_RESET; visible = true; arrayValue = false; colorKey = false; } MlxlinkRecord::~MlxlinkRecord() {} std::vector MlxlinkRecord::split(const std::string& str, const std::string& delim) { std::vector list; std::string tmp = str; std::string token; std::size_t found = tmp.find(delim); while (found != std::string::npos) { token = tmp.substr(0, found); if (!token.empty()) { MlxlinkRecord::trim(token); list.push_back(token); } tmp = tmp.substr(found + delim.length()); found = tmp.find(delim); } list.push_back(tmp); return list; } void MlxlinkRecord::trim(std::string& str, const std::string& chars) { str.erase(0, str.find_first_not_of(chars)); str.erase(str.find_last_not_of(chars) + 1); } std::string MlxlinkRecord::ddmFlagValue2Color(u_int32_t val, u_int32_t type) { std::string color; if (!val) { color = MlxlinkRecord::state2Color(GREEN); } else { switch (type) { case DDM_FLAG_WARN: color = MlxlinkRecord::state2Color(YELLOW); break; case DDM_FLAG_ALARM: color = MlxlinkRecord::state2Color(RED); break; default: color = MlxlinkRecord::state2Color(GREEN); } } return color; } std::string MlxlinkRecord::state2Color(u_int32_t state) { std::string color; switch (state) { case RED: color = ANSI_COLOR_RED; break; case BLUE: color = ANSI_COLOR_BLUE; break; case YELLOW: color = ANSI_COLOR_YELLOW; break; case GREEN: color = ANSI_COLOR_GREEN; break; case MAGENTA: color = ANSI_COLOR_MAGENTA; break; case CYAN: color = ANSI_COLOR_CYAN; break; default: color = ANSI_COLOR_RESET; } return color; } std::string MlxlinkRecord::supported2Color(const std::string& supported) { return (supported != "") ? ANSI_COLOR_GREEN : ANSI_COLOR_RED; } void MlxlinkRecord::changeColorOS(const std::string& color, bool newLine) { #if defined(__linux__) || defined(__FreeBSD__) std::cout << color << ""; #elif defined(_WIN32) || defined(_WIN64) || defined(__MINGW32__) || defined(__MINGW64__) short unsigned int col = MlxlinkRecord::getWinColor(color); SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), col); #endif std::cout << ""; if (newLine) { std::cout << " " << std::endl; } } #if defined(_WIN32) || defined(_WIN64) || defined(__MINGW32__) || defined(__MINGW64__) short unsigned int MlxlinkRecord::getWinColor(const std::string& color) { short unsigned int col = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE; if (color == ANSI_COLOR_RESET) { col = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE; } else if (color == ANSI_COLOR_RED) { col = FOREGROUND_RED | FOREGROUND_INTENSITY; } else if (color == ANSI_COLOR_GREEN) { col = FOREGROUND_GREEN | FOREGROUND_INTENSITY; } else if (color == ANSI_COLOR_BLUE) { col = FOREGROUND_BLUE | FOREGROUND_INTENSITY; } else if (color == ANSI_COLOR_YELLOW) { col = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY; } else if (color == ANSI_COLOR_CYAN) { col = FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_INTENSITY; } else if (color == ANSI_COLOR_MAGENTA) { col = FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_INTENSITY; } return col; } #endif void MlxlinkRecord::printFlagLine(const char flag_s, const std::string& flag_l, const std::string& param, const std::string& desc) { std::string sflags_s(1, flag_s); if (sflags_s != " ") { printf(IDENT2 "-%-2s|--%-10s", sflags_s.c_str(), flag_l.c_str()); } else { printf(IDENT2 "--%-14s", flag_l.c_str()); } if (param.length()) { printf(" <%s> ", param.c_str()); } else { printf("\t"); } printf(IDENT3 ": %-30s\n", desc.c_str()); } std::string MlxlinkRecord::addSpace(const std::string& str, u_int32_t size, bool right) { if (MlxlinkRecord::jsonFormat) { return str; } u_int32_t strSize = (size > str.length()) ? size - str.length() : 0; std::string spacesToAdd = std::string(strSize, ' '); return right ? (spacesToAdd + str) : (str + spacesToAdd); } std::string MlxlinkRecord::addSpaceForSlrg(const std::string& str) { return MlxlinkRecord::addSpace(str, MAX_LEN_OF_GRADE); } std::string MlxlinkRecord::addSpaceForDDM(const std::string& str) { return MlxlinkRecord::addSpace(str, MAX_LEN_OF_DDM_FIELD, false); } std::string MlxlinkRecord::addSpaceForModulePrbs(const std::string& str) { return MlxlinkRecord::addSpace(str, MAX_LEN_OF_MODULE_PRBS_FIELD, false); } void MlxlinkRecord::printErrorsSection(const std::string& title, const std::string& lines) { changeColorOS(ANSI_COLOR_RED, true); std::cout << std::endl << title << std::endl; PRINT_UNDER_TITLE((int)title.length()); std::cout << lines; changeColorOS(ANSI_COLOR_RESET, false); } void MlxlinkRecord::printCmdLine(const std::string& line, Json::Value& jsonRoot) { if (MlxlinkRecord::jsonFormat) { jsonRoot[JSON_RESULT_SECTION][JSON_CONFIG_SECTION].append(line); return; } std::cout << std::endl << line << "..." << std::endl; } void MlxlinkRecord::printErr(const std::string& err) { changeColorOS(ANSI_COLOR_RED, true); std::cerr << err << std::endl; changeColorOS(ANSI_COLOR_RESET, true); } void MlxlinkRecord::printWar(const std::string& war, Json::Value& jsonRoot) { if (MlxlinkRecord::jsonFormat) { jsonRoot[JSON_RESULT_SECTION][JSON_WARN_SECTION][JSON_MSG] = jsonRoot[JSON_RESULT_SECTION][JSON_WARN_SECTION][JSON_MSG].asString() + war; return; } changeColorOS(ANSI_COLOR_YELLOW, true); std::cerr << war << std::endl; changeColorOS(ANSI_COLOR_RESET, false); } std::ostream& operator<<(std::ostream& out, const MlxlinkRecord& mlxlinkRecord) { if (!mlxlinkRecord.visible || mlxlinkRecord.key == "") { return out; } bool changeColor = mlxlinkRecord.color != ANSI_COLOR_RESET; out << mlxlinkRecord.key << std::setw(PDDR_LINE_LEN - mlxlinkRecord.key.length()) << ": "; if (changeColor) { MlxlinkRecord::changeColorOS(mlxlinkRecord.color); } out << mlxlinkRecord.val << std::endl; if (changeColor) { MlxlinkRecord::changeColorOS(ANSI_COLOR_RESET); } return out; } mstflint-4.26.0/mlxlink/modules/printutil/mlxlink_cmd_print.cpp0000644000175000017500000001024514522641732025306 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_cmd_print.h" MlxlinkCmdPrint::MlxlinkCmdPrint() { lastInsertedRow = 0; } MlxlinkCmdPrint::~MlxlinkCmdPrint() {} void MlxlinkCmdPrint::initRecords(int size) { mlxlinkRecords.insert(mlxlinkRecords.begin(), size, MlxlinkRecord()); } u_int32_t MlxlinkCmdPrint::getCurrRow() { if (!lastInsertedRow) { return lastInsertedRow; } else { return lastInsertedRow + 1; } } void MlxlinkCmdPrint::toJsonFormat(Json::Value& jsonRoot) { if (!visible) { return; } Json::Value outputGroup; MlxlinkRecord record; for (u_int32_t i = 0; i < mlxlinkRecords.size(); i++) { record = mlxlinkRecords[i]; MlxlinkRecord::trim(record.key); MlxlinkRecord::trim(record.val); if (record.visible && record.key != "") { if (record.arrayValue) { Json::Value subObject; subObject[JSON_VALUES_TITLE] = Json::Value(Json::arrayValue); std::string val = record.val; if (title == HEADER_SUPPORTED_INFO || title == HEADER_FEC_INFO) { std::string mask = val.substr(0, val.find("(") - 1); val = val.substr(val.find("(") + 1, val.find_last_of(")") - mask.length() - 2); subObject[JSON_MASK_TITLE] = mask; } if (!val.empty()) { std::vector vals; if (title == HEADER_FEC_INFO) { vals = MlxlinkRecord::split(val, ", "); } else { vals = MlxlinkRecord::split(val, ","); } for (std::vector::iterator it = vals.begin(); it != vals.end(); ++it) { subObject[JSON_VALUES_TITLE].append(*it); } } outputGroup[record.key] = subObject; } else { outputGroup[record.key] = record.val; } } } if (!outputGroup.isNull()) { jsonRoot[JSON_RESULT_SECTION][JSON_OUTPUT_SECTION][title] = outputGroup; } } std::ostream& operator<<(std::ostream& out, const MlxlinkCmdPrint& cmdPrint) { if (!MlxlinkRecord::jsonFormat) { if (!cmdPrint.visible) { return out; } out << std::endl << cmdPrint.title << std::endl; out << std::string(cmdPrint.title.length(), '-') << std::endl; for (u_int32_t i = 0; i < cmdPrint.mlxlinkRecords.size(); i++) { out << cmdPrint.mlxlinkRecords[i]; } } return out; } mstflint-4.26.0/mlxlink/modules/printutil/Makefile.am0000644000175000017500000000373414522641732023126 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxreg AM_CPPFLAGS += $(JSON_CFLAGS) AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" noinst_LTLIBRARIES = libprint_util_lib.la libprint_util_lib_la_SOURCES = \ mlxlink_cmd_print.cpp \ mlxlink_cmd_print.h \ mlxlink_record.cpp \ mlxlink_record.h libprint_util_lib_la_LIBDADD = $(JSON_LIBS) mstflint-4.26.0/mlxlink/modules/printutil/mlxlink_record.h0000644000175000017500000001225014522641732024250 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINKRECORD_H #define MLXLINKRECORD_H #include #include #include #include #include #include #include #define PDDR_LINE_LEN 34 /* * Json output objects name */ #define JSON_WARN_SECTION "warning" #define JSON_MSG "message" #define JSON_STATUS_SECTION "status" #define JSON_STATUS_CODE "code" #define JSON_RESULT_SECTION "result" #define JSON_CONFIG_SECTION "configurations" #define JSON_OUTPUT_SECTION "output" #define JSON_MASK_TITLE "mask" #define JSON_VALUES_TITLE "values" /* * Output headers name */ #define HEADER_SUPPORTED_INFO "Supported Info" #define HEADER_FEC_INFO "FEC Capability Info" #define PRINT_UNDER_TITLE(len) \ for (int i = 0; i < len; i++) \ { \ printf("-"); \ } \ printf("\n"); #define IDENT " " #define IDENT2 IDENT IDENT #define IDENT3 IDENT IDENT2 #define ANSI_COLOR_RED "\x1b[31m" #define ANSI_COLOR_GREEN "\x1b[32m" #define ANSI_COLOR_YELLOW "\x1b[33m" #define ANSI_COLOR_BLUE "\x1b[34m" #define ANSI_COLOR_MAGENTA "\x1b[35m" #define ANSI_COLOR_CYAN "\x1b[36m" #define ANSI_COLOR_RESET "\x1b[0m" enum STATUS_COLOR { RED, BLUE, YELLOW, GREEN, MAGENTA, CYAN, RESET }; enum STATUS_DDM_FLAGS_TYPE { DDM_FLAG_WARN, DDM_FLAG_ALARM }; /* * Records size */ #define TOOL_INFORMAITON_INFO_LAST 4 #define PDDR_OPERATIONAL_INFO_LAST 7 #define PDDR_SUPPORTED_INFO_LAST 2 #define PDDR_TRUOBLESHOOTING_INFO_LAST 4 #define TEST_MODE_INFO_LAST 6 #define PCIE_INFO_LAST 4 #define MODULE_INFO_LAST 23 #define MODULE_INFO_AMBER 126 #define BER_INFO_LAST 7 #define BER_INFO_NDR_LAST 12 #define TEST_MODE_BER_INFO_LAST 4 #define MPCNT_PERFORMANCE_INFO_LAST 4 #define MPCNT_TIMER_INFO_LAST 1 #define EYE_OPENING_INFO_LAST 9 #define FEC_CAP_INFO_LAST 6 #define DEVICE_INFO_LAST 5 #define BER_MONITOR_INFO_LAST 2 #define EXT_PHY_INFO_INFO_LAST 1 #define LINK_DOWN_BLAME_INFO_LAST 2 #define MODULE_PMPT_INFO_LAST 8 #define MODULE_PMPD_INFO_LAST 6 class MlxlinkRecord { public: MlxlinkRecord(); virtual ~MlxlinkRecord(); friend std::ostream& operator<<(std::ostream& out, const MlxlinkRecord& mlxlinkRecord); static std::string state2Color(u_int32_t state); static std::string ddmFlagValue2Color(u_int32_t val, u_int32_t type); static std::string supported2Color(const std::string& supported); static void changeColorOS(const std::string& color, bool newLine = false); static short unsigned int getWinColor(const std::string& color); static void printFlagLine(const char sflag_s, const std::string& flag_l, const std::string& param, const std::string& desc); static std::string addSpace(const std::string& str, u_int32_t size, bool right = true); static std::string addSpaceForDDM(const std::string& str); static std::string addSpaceForSlrg(const std::string& str); static std::string addSpaceForModulePrbs(const std::string& str); static void printErrorsSection(const std::string& title, const std::string& lines); static void printCmdLine(const std::string& line, Json::Value& jsonRoot); static void printErr(const std::string& err); static void printWar(const std::string& war, Json::Value& jsonRoot); static std::vector split(const std::string& str, const std::string& delim = " "); static void trim(std::string& str, const std::string& chars = "\t\n\v\f\r "); std::string key; std::string val; std::string color; bool visible; bool arrayValue; bool colorKey; static bool jsonFormat; static std::ostream* cOut; static FILE* stdOut; }; std::ostream& operator<<(std::ostream& out, const MlxlinkRecord& mlxlinkRecord); #endif /* MLXLINKRECORD_H */ mstflint-4.26.0/mlxlink/modules/printutil/Makefile.in0000644000175000017500000005151314522641737023142 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mlxlink/modules/printutil DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libprint_util_lib_la_LIBADD = am_libprint_util_lib_la_OBJECTS = mlxlink_cmd_print.lo \ mlxlink_record.lo libprint_util_lib_la_OBJECTS = $(am_libprint_util_lib_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libprint_util_lib_la_SOURCES) DIST_SOURCES = $(libprint_util_lib_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxreg $(JSON_CFLAGS) AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" noinst_LTLIBRARIES = libprint_util_lib.la libprint_util_lib_la_SOURCES = \ mlxlink_cmd_print.cpp \ mlxlink_cmd_print.h \ mlxlink_record.cpp \ mlxlink_record.h libprint_util_lib_la_LIBDADD = $(JSON_LIBS) all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxlink/modules/printutil/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxlink/modules/printutil/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libprint_util_lib.la: $(libprint_util_lib_la_OBJECTS) $(libprint_util_lib_la_DEPENDENCIES) $(EXTRA_libprint_util_lib_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libprint_util_lib_la_OBJECTS) $(libprint_util_lib_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_cmd_print.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_record.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxlink/modules/mlxlink_reg_parser.cpp0000644000175000017500000001472714522641732023437 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_reg_parser.h" MlxlinkRegParser::MlxlinkRegParser() : RegAccessParser("", "", "", NULL, 0) { _mf = NULL; _regLib = NULL; _gvmiAddress = 0; _localPort = 0; _portType = 0; _pnat = 0; _isHCA = false; } MlxlinkRegParser::~MlxlinkRegParser() {} void MlxlinkRegParser::resetParser(const string& regName) { _regNode = (_regLib)->findAdbNode(regName); _data = ""; _indexes = ""; _len = 0; if (!_regNode) { if (_len > MAX_REG_SIZE) { throw MlxRegException("Register length: 0x%08x is too large", _len); } _parseMode = Pm_Unknown; _len = (_len + 3) / 4; } else { _parseMode = Pm_Known; _len = (_regNode->size) >> 5; } _buffer.resize(_len); for (std::vector::size_type j = 0; j < _len; j++) { _buffer[j] = 0; } } void MlxlinkRegParser::genBuffSendRegister(const string& regName, maccess_reg_method_t method) { if (_gvmiAddress) { writeGvmi(1); } _buffer = genBuffUnknown(); (_regLib)->sendRegister(regName, method, _buffer); if (_gvmiAddress) { writeGvmi(0); } } void MlxlinkRegParser::writeGvmi(u_int32_t data) { mwrite4(_mf, _gvmiAddress, data); } void MlxlinkRegParser::updateField(string field_name, u_int32_t value) { RegAccessParser::updateField(field_name, value); if (field_name == "local_port") { try { // the full value for local port is 10 bits, [0:7] in local_port, and [8:9] in lp_msb // this should be provided for all access registers which have local_port field index updateField("lp_msb", ((value >> 8) & 0x3)); } catch (...) { // If the lp_msb does not exists on some access register, no need to fail the command } } } void MlxlinkRegParser::updateWithDefault(const string& fieldName, const string& fieldsStr, u_int32_t val) { if (fieldsStr.find(fieldName) == string::npos) { try { updateField(fieldName, val); } catch (...) { } } } void MlxlinkRegParser::setDefaultFields(const string& regName, const string& fieldsStr) { updateWithDefault("local_port", fieldsStr, _localPort); updateWithDefault("pnat", fieldsStr, _pnat); if (!_isHCA) { updateWithDefault("port_type", fieldsStr, _portType); } // Some registers need to have another indication for localport 255 to deal with it as a localport by setting lp_gl // field if (regName == ACCESS_REG_PPCNT && _localPort == 255) { updateWithDefault("lp_gl", fieldsStr, 1); } } void MlxlinkRegParser::sendPrmReg(const string& regName, maccess_reg_method_t method) { resetParser(regName); setDefaultFields(regName, ""); genBuffSendRegister(regName, method); } void MlxlinkRegParser::sendPrmReg(const string& regName, maccess_reg_method_t method, const char* fields, ...) { char fieldsCstr[MAX_FIELDS_BUFFER]; va_list args; va_start(args, fields); vsnprintf(fieldsCstr, MAX_FIELDS_BUFFER, fields, args); va_end(args); string fieldsStr = string(fieldsCstr); auto vectorOffields = MlxlinkRecord::split(fieldsStr, ","); resetParser(regName); for (const auto& token : vectorOffields) { auto fieldToken = MlxlinkRecord::split(token, "="); string fieldName = fieldToken[0]; u_int32_t fieldValue = stoi(fieldToken[1], nullptr, 0); updateField(fieldName, fieldValue); } setDefaultFields(regName, fieldsStr); genBuffSendRegister(regName, method); } string MlxlinkRegParser::getFieldStr(const string& field) { return to_string(getFieldValue(field)); } string MlxlinkRegParser::getRawFieldValueStr(const string fieldName) { string fullStr = ""; char hexFormat[32]; u_int32_t fieldBuf = 0; for (int i = 0;; i++) { string path = fieldName; path.append("["); path.append(to_string(i)); path.append("]"); try { fieldBuf = getFieldValue(path); } catch (...) { break; } if (fieldBuf) { sprintf(hexFormat, "%08x", fieldBuf); fullStr.append(string(hexFormat)); } } return fullStr; } u_int32_t MlxlinkRegParser::getFieldValue(string field_name) { return RegAccessParser::getFieldValue(field_name, _buffer); } u_int32_t MlxlinkRegParser::getFieldSize(string field_name) { return RegAccessParser::getField(field_name)->size; } string MlxlinkRegParser::getAscii(const string& name, u_int32_t size) { string value = ""; char c; u_int32_t name_tmp; for (u_int32_t i = 0; i < size / 4; i++) { name_tmp = getFieldValue(name + "[" + to_string(i) + "]"); for (int k = 24; k > -1; k -= 8) { c = (char)(name_tmp >> k); if ((int)c != 0 && (int)c != 32) { value.push_back(c); } } } return (value != "") ? value : "N/A"; } mstflint-4.26.0/mlxlink/modules/mlxlink_amBER_collector.h0000644000175000017500000001636414522641732023746 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXLINK_AMBER_COLLECTOR_H #define MLXLINK_AMBER_COLLECTOR_H #include "mlxlink_reg_parser.h" #include "amber_field.h" // Un-comment to see access register failures // #define VALIDATE_REG_REQUEST using namespace std; struct FIELDS_COUNT { u_int32_t numOfIbFields; u_int32_t numOfEthFields; u_int32_t numOfPcieFields; }; class MlxlinkAmBerCollector : public MlxlinkRegParser { public: MlxlinkAmBerCollector(Json::Value& jsonRoot); virtual ~MlxlinkAmBerCollector(); virtual void init(); // Main functions vector getIndexesInfo(); vector getGeneralInfo(); virtual vector getSystemInfo(); virtual vector getLinkStatus(); virtual vector getSerdesHDR(); virtual vector getSerdesNDR(); virtual vector getModuleStatus(); virtual vector getPortCounters(); virtual vector getTroubleshootingInfo(); virtual vector getPhyOperationInfo(); virtual vector getLinkUpInfo(); virtual vector getLinkDownInfo(); virtual vector getTestModeInfo(); virtual vector getTestModeModuleInfo(); virtual vector getPhyDebugInfo(); virtual vector getExtModuleStatus(); void getPpcntBer(u_int32_t portType, vector& fields); bool isGBValid(); bool isMCMValid(); void startCollector(); u_int32_t _pnat; u_int32_t _localPort; u_int32_t _depth; u_int32_t _pcieIndex; u_int32_t _node; u_int32_t _devID; u_int32_t _productTechnology; string _csvFileName; string _mstDevName; u_int32_t _iteration; string _testMode; MlxlinkMaps* _mlxlinkMaps; vector _localPorts; // will be valid for switches bool _isHca; vector _sheetsToDump; private: string getRawFieldValue(const string fieldName); string getNodeGUID(); string getMACAddress(); string getCurrentTimeStamp(); void getEthComplianceCodes(u_int32_t cableTechnology, string& ethComplianceStr, string& extComplianceStr, u_int32_t cableMediaType); void getIbComplianceCodes(string& ibComplianceCodeStr); string getCableTechnologyStr(u_int32_t cableTechnology); string getCableBreakoutStr(u_int32_t cableBreakout, u_int32_t cableIdentifier); void getModuleInfoPage(vector& fields); string getSmfLength(const u_int32_t smfLength, const u_int32_t cableTechnology, const bool optical); string getDateCode(u_int64_t dateCode); void getTxBiasLane(vector& fields); string getByMap(u_int32_t flags, std::map map); void getCmisComplianceCode(u_int32_t ethComplianceCode, u_int32_t extEthComplianceCode, string& ethComplianceStr, string& extComplianceStr, u_int32_t cableMediaType, u_int32_t cableTechnology); void initCableIdentifier(u_int32_t cableIdentifier); void getModuleLatchedFlagInfoPage(vector& fields); string getPrbsModeCap(u_int32_t modeSelector, u_int32_t capsMask); string getPrpsRateCap(u_int32_t capsMask); void groupValidIf(bool condition); void getTestModeModulePMPT(vector& fields, string moduleSide, ModuleAccess_t mode); void getTestModeModulePMPD(vector& fields, string moduleSide); u_int32_t getSheetIndex(AMBER_SHEET sheet); void getPemiSnr(vector& fields, bool isGroupSupported); void collect(); vector collectSheet(AMBER_SHEET sheet); void initAmberSheetsToDump(); u_int32_t fixFieldsData(); void exportToCSV(); void exportToConsole(); bool _isQsfpCable; bool _isSfpCable; bool _cablePlugged; bool _invalidate; u_int32_t _labelPort; u_int32_t _splitPort; u_int32_t _secondSplit; map> _amberCollection; map _baseSheetsList; protected: void resetLocalParser(const string& regName); string getLocalFieldStr(const string& fieldName); u_int32_t getLocalFieldValue(const string& fieldName); void sendRegister(const string& regName, maccess_reg_method_t method); void sendLocalPrmReg(const string& regName, maccess_reg_method_t method, const char* fields, ...); void sendLocalPrmReg(const string& regName, maccess_reg_method_t method); string getBitmaskPerLaneStr(u_int32_t bitmask); void fillParamsToFields(const string& title, const vector& values, vector& fields); void pushModulePerLaneField(vector& fields, string fieldName, float valueCorrection = 1.0, string laneSep = "_"); void pushModuleDpPerLane(vector& fields, const string str); // Helper functions virtual string getBerAndErrorTitle(u_int32_t portType); virtual void getTestModePrpsInfo(const string& prbsReg, vector>& params); string getClRawBer(); // Callers bool _isCmisCable; bool _isPortIB; bool _isPortETH; bool _isPortPCIE; bool _isMCMSysValid; bool _isGBSysValid; bool _isValidSensorMvcap; bool _isValidSensorMtcap; bool _inPRBSMode; u_int32_t _moduleHostSt; u_int32_t _moduleMediaSt; Json::Value& _jsonRoot; vector _amBerCollectorOutput; vector> _sheetsList; u_int32_t _activeSpeed; u_int32_t _protoActive; u_int32_t _numOfLanes; u_int32_t _moduleIndex; u_int32_t _slotIndex; u_int32_t _maxLanes; }; #endif /* MLXLINK_AMBER_COLLECTOR_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_cables_commander.cpp0000644000175000017500000021254314522641732024560 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mlxlink_cables_commander.h" MlxlinkCablesCommander::MlxlinkCablesCommander(Json::Value& jsonRoot) : _jsonRoot(jsonRoot) { _moduleNumber = 0; _slotIndex = 0; _sfp51Paging = false; _passiveQsfp = false; _localPort = 0; _numOfLanes = 0; _prbsRate = MODULE_PRBS_LANE_RATE_HDR; _prbsMode = PRBS31; _prbsInv = false; _prbsSwap = false; _prbsLanes = 0; memset(&_cableDdm, 0, sizeof(cable_ddm_q_t)); // PMCR control fields names // pair(UI name, PMCR field name) _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_TX_EQ] = make_pair("TX Equalization", "tx_equ_override"); _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_EMPH] = make_pair("RX Emphasis", "rx_emp_override"); _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_POST_EMPH] = make_pair("RX Post Emphasis", "rx_post_emp_override"); _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_AMP] = make_pair("RX Amplitude", "rx_amp_override"); } MlxlinkCablesCommander::~MlxlinkCablesCommander() {} // Read EEPROM data from MCIA register void MlxlinkCablesCommander::readMCIA(u_int32_t page, u_int32_t size, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress) { sendPrmReg(ACCESS_REG_MCIA, GET, "module=%d,slot_index=%d,size=%d,page_number=%d,device_address=%d,i2c_device_address=%d", _moduleNumber, _slotIndex, size, page, offset, i2cAddress); u_int32_t i = 0; char fieldName[32]; for (; i < size / 4; i++) { sprintf(fieldName, "dword[%d]", i); u_int32_t s = getFieldValue(std::string(fieldName)); s = __be32_to_cpu(s); memcpy(data + (i * 4), &s, sizeof(u_int32_t)); } } // Write EEPROM data to MCIA register void MlxlinkCablesCommander::writeMCIA(u_int32_t page, u_int32_t size, u_int32_t numberOfZeroBytes, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress) { u_int32_t dataSize = size - numberOfZeroBytes; if ((dataSize + offset - 1) > EEPROM_PAGE_LENGTH) { throw MlxRegException("Data exceeded the maximum page size (255 bytes), check the offset or data size"); } u_int32_t i = 0; char fieldName[64]; string dataCmd = ""; u_int32_t dwordDataSize = (u_int32_t)ceil((double)size / sizeof(u_int32_t)); u_int32_t* dwordData = (u_int32_t*)malloc(dwordDataSize); memset(dwordData, 0, dwordDataSize); memcpy(dwordData, data, size); for (; i < dwordDataSize; i++) { sprintf(fieldName, ",dword[%d]=%d", i, __cpu_to_be32(dwordData[i])); dataCmd += string(fieldName); } free(dwordData); sendPrmReg(ACCESS_REG_MCIA, SET, "module=%d,slot_index=%d,size=%d,page_number=%d,device_address=%d,i2c_device_address=%d%s", _moduleNumber, _slotIndex, size, page, offset, i2cAddress, dataCmd.c_str()); } // Reading EEPROM data from MCIA register and loading it to readable pages void MlxlinkCablesCommander::loadEEPRMPage(u_int32_t pageNum, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress) { memset(data, 0, CABLE_PAGE_SIZE); u_int32_t pageOffset = 0; for (u_int8_t i = 0; i < (CABLE_PAGE_SIZE / EEPROM_MAX_BYTES); i++) { pageOffset = EEPROM_MAX_BYTES * i; readMCIA(pageNum, EEPROM_MAX_BYTES, offset + pageOffset, data + pageOffset, i2cAddress); } } // Reading specific addres from the page bool MlxlinkCablesCommander::readFromPage(u_int8_t* pageBuffer, u_int32_t fieldOffset, void* data, u_int32_t size) { if (pageBuffer) { memcpy((u_int8_t*)data, &pageBuffer[fieldOffset], sizeof(u_int8_t) * size); return true; } return false; } // Converting byte to u_int16_t void MlxlinkCablesCommander::bytesToInt16(u_int16_t* bytes) { u_int8_t bytesArr[2]; memcpy(bytesArr, bytes, 2); *bytes = bytesArr[0] << 8 | bytesArr[1]; } // Converting threshold fields from byte to u_int16_t void MlxlinkCablesCommander::convertThreshold(ddm_threshold_t& field) { bytesToInt16(&(field.high_alarm)); bytesToInt16(&(field.low_alarm)); bytesToInt16(&(field.high_warn)); bytesToInt16(&(field.low_warn)); } // Fixing DDM fields from bytes to u_int16_t void MlxlinkCablesCommander::fixThresholdBytes() { int i = 0; convertThreshold(_cableDdm.temperature); convertThreshold(_cableDdm.voltage); for (i = 0; i < _cableDdm.channels; i++) { convertThreshold(_cableDdm.rx_power[i]); convertThreshold(_cableDdm.tx_power[i]); convertThreshold(_cableDdm.tx_bias[i]); } } // Reading the flag status accroding to channel number and the status mask u_int16_t MlxlinkCablesCommander::getStatusBit(u_int32_t channel, u_int16_t val, u_int32_t statusMask) { // For channels 2 and 4, we need the lower nibble statusMask = channel % 2 ? statusMask : statusMask >> 4; return (val & statusMask) >> ((u_int32_t)log2(statusMask)); } void MlxlinkCablesCommander::getDdmValuesFromPddr() { sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d", PDDR_MODULE_INFO_PAGE); _cableDdm.channels = _numOfLanes; _cableDdm.temperature.val = getFieldValue("temperature") / 256; _cableDdm.voltage.val = getFieldValue("voltage") / MILLIVOLT_UNIT; string laneStr = ""; for (int lane = 0; lane < _cableDdm.channels; lane++) { laneStr = to_string(lane); _cableDdm.rx_power[lane].val = getPower(getFieldValue("rx_power_lane" + laneStr)); _cableDdm.tx_power[lane].val = getPower(getFieldValue("tx_power_lane" + laneStr)); _cableDdm.tx_bias[lane].val = getFieldValue("tx_bias_lane" + laneStr); } } void MlxlinkCablesCommander::getQsfpDdThresholds(u_int8_t* page2H) { readFromPage(page2H, QSFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.temperature.high_alarm, 2); readFromPage(page2H, QSFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.temperature.low_alarm, 2); readFromPage(page2H, QSFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.temperature.high_warn, 2); readFromPage(page2H, QSFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.temperature.low_warn, 2); readFromPage(page2H, QSFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.voltage.high_alarm, 2); readFromPage(page2H, QSFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.voltage.low_alarm, 2); readFromPage(page2H, QSFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.voltage.high_warn, 2); readFromPage(page2H, QSFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.voltage.low_warn, 2); readFromPage(page2H, QSFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.tx_power[0].high_alarm, 2); readFromPage(page2H, QSFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.tx_power[0].low_alarm, 2); readFromPage(page2H, QSFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.tx_power[0].high_warn, 2); readFromPage(page2H, QSFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.tx_power[0].low_warn, 2); readFromPage(page2H, QSFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.tx_bias[0].high_alarm, 2); readFromPage(page2H, QSFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.tx_bias[0].low_alarm, 2); readFromPage(page2H, QSFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.tx_bias[0].high_warn, 2); readFromPage(page2H, QSFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.tx_bias[0].low_warn, 2); readFromPage(page2H, QSFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.rx_power[0].high_alarm, 2); readFromPage(page2H, QSFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.rx_power[0].low_alarm, 2); readFromPage(page2H, QSFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.rx_power[0].high_warn, 2); readFromPage(page2H, QSFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.rx_power[0].low_warn, 2); } void MlxlinkCablesCommander::getCmisModuleFlags(u_int32_t moduleOffset, u_int8_t* page0L) { u_int32_t tempVal = 0; readFromPage(page0L, moduleOffset, &tempVal); _cableDdm.temperature.high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_TEMP_HWARN_STATUS); _cableDdm.temperature.low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_TEMP_LWARN_STATUS); _cableDdm.temperature.high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_TEMP_HALARM_STATUS); _cableDdm.temperature.low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_TEMP_LALARM_STATUS); tempVal = 0; readFromPage(page0L, moduleOffset, &tempVal); _cableDdm.voltage.high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_VCC_HWARN_STATUS); _cableDdm.voltage.low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_VCC_LWARN_STATUS); _cableDdm.voltage.high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_VCC_HALARM_STATUS); _cableDdm.voltage.low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, tempVal, CMIS_VCC_LALARM_STATUS); } void MlxlinkCablesCommander::getQsfpDddLanesFlags(u_int8_t* page11H) { u_int16_t txPowerHAlarm = 0; u_int16_t txPowerLAlarm = 0; u_int16_t txPowerHWarn = 0; u_int16_t txPowerLWarn = 0; readFromPage(page11H, QSFP_DD_TX_POWER_HALARM_OFFSET - UPPER_PAGE_OFFSET, &txPowerHAlarm); readFromPage(page11H, QSFP_DD_TX_POWER_LALARM_OFFSET - UPPER_PAGE_OFFSET, &txPowerLAlarm); readFromPage(page11H, QSFP_DD_TX_POWER_HWARN_OFFSET - UPPER_PAGE_OFFSET, &txPowerHWarn); readFromPage(page11H, QSFP_DD_TX_POWER_LWARN_OFFSET - UPPER_PAGE_OFFSET, &txPowerLWarn); u_int16_t txBiasHAlarm = 0; u_int16_t txBiasLAlarm = 0; u_int16_t txBiasHWarn = 0; u_int16_t txBiasLWarn = 0; readFromPage(page11H, QSFP_DD_TX_BIAS_HALARM_OFFSET - UPPER_PAGE_OFFSET, &txBiasHAlarm); readFromPage(page11H, QSFP_DD_TX_BIAS_LALARM_OFFSET - UPPER_PAGE_OFFSET, &txBiasLAlarm); readFromPage(page11H, QSFP_DD_TX_BIAS_HWARN_OFFSET - UPPER_PAGE_OFFSET, &txBiasHWarn); readFromPage(page11H, QSFP_DD_TX_BIAS_LWARN_OFFSET - UPPER_PAGE_OFFSET, &txBiasLWarn); u_int16_t rxPowerHAlarm = 0; u_int16_t rxPowerLAlarm = 0; u_int16_t rxPowerHWarn = 0; u_int16_t rxPowerLWarn = 0; readFromPage(page11H, QSFP_DD_RX_POWER_HALARM_OFFSET - UPPER_PAGE_OFFSET, &rxPowerHAlarm); readFromPage(page11H, QSFP_DD_RX_POWER_LALARM_OFFSET - UPPER_PAGE_OFFSET, &rxPowerLAlarm); readFromPage(page11H, QSFP_DD_RX_POWER_HWARN_OFFSET - UPPER_PAGE_OFFSET, &rxPowerHWarn); readFromPage(page11H, QSFP_DD_RX_POWER_LWARN_OFFSET - UPPER_PAGE_OFFSET, &rxPowerLWarn); for (int i = 0; i < _cableDdm.channels; i++) { _cableDdm.rx_power[i].low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerLWarn, i); _cableDdm.rx_power[i].high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerHWarn, i); _cableDdm.rx_power[i].low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerLAlarm, i); _cableDdm.rx_power[i].high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerHAlarm, i); _cableDdm.tx_power[i].low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerLWarn, i); _cableDdm.tx_power[i].high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerHWarn, i); _cableDdm.tx_power[i].low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerLAlarm, i); _cableDdm.tx_power[i].high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerHAlarm, i); _cableDdm.tx_bias[i].low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasLWarn, i); _cableDdm.tx_bias[i].high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasHWarn, i); _cableDdm.tx_bias[i].low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasLAlarm, i); _cableDdm.tx_bias[i].high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasHAlarm, i); } } void MlxlinkCablesCommander::prepareQsfpddDdmInfo() { // Read DDM fields from PDDR getDdmValuesFromPddr(); // Read module flags u_int8_t* page0L = (u_int8_t*)malloc(sizeof(u_int8_t) * CABLE_PAGE_SIZE); loadEEPRMPage(PAGE_0, LOWER_PAGE_OFFSET, page0L); getCmisModuleFlags(QSFP_DD_MODULE_INFO_OFFSET, page0L); // Read lanes flags u_int8_t* page11H = (u_int8_t*)malloc(sizeof(u_int8_t) * CABLE_PAGE_SIZE); loadEEPRMPage(PAGE_11, UPPER_PAGE_OFFSET, page11H); getQsfpDddLanesFlags(page11H); // Get cable thresholds u_int8_t* page2H = (u_int8_t*)malloc(sizeof(u_int8_t) * CABLE_PAGE_SIZE); loadEEPRMPage(PAGE_02, UPPER_PAGE_OFFSET, page2H); getQsfpDdThresholds(page2H); free(page0L); free(page11H); free(page2H); } void MlxlinkCablesCommander::getSfpDdThresholds(u_int8_t* page0H) { readFromPage(page0H, SFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.temperature.high_alarm, 2); readFromPage(page0H, SFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.temperature.low_alarm, 2); readFromPage(page0H, SFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.temperature.high_warn, 2); readFromPage(page0H, SFP_DD_TEMP_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.temperature.low_warn, 2); readFromPage(page0H, SFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.voltage.high_alarm, 2); readFromPage(page0H, SFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.voltage.low_alarm, 2); readFromPage(page0H, SFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.voltage.high_warn, 2); readFromPage(page0H, SFP_DD_VCC_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.voltage.low_warn, 2); readFromPage(page0H, SFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.tx_power[0].high_alarm, 2); readFromPage(page0H, SFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.tx_power[0].low_alarm, 2); readFromPage(page0H, SFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.tx_power[0].high_warn, 2); readFromPage(page0H, SFP_DD_TX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.tx_power[0].low_warn, 2); readFromPage(page0H, SFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.tx_bias[0].high_alarm, 2); readFromPage(page0H, SFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.tx_bias[0].low_alarm, 2); readFromPage(page0H, SFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.tx_bias[0].high_warn, 2); readFromPage(page0H, SFP_DD_TX_BIAS_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.tx_bias[0].low_warn, 2); readFromPage(page0H, SFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET, &_cableDdm.rx_power[0].high_alarm, 2); readFromPage(page0H, SFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 2, &_cableDdm.rx_power[0].low_alarm, 2); readFromPage(page0H, SFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 4, &_cableDdm.rx_power[0].high_warn, 2); readFromPage(page0H, SFP_DD_RX_POWER_THR_OFFSET - UPPER_PAGE_OFFSET + 6, &_cableDdm.rx_power[0].low_warn, 2); } void MlxlinkCablesCommander::getSfpDddLanesFlags(u_int8_t* page0L) { u_int32_t txPowerInturrept = 0; u_int32_t txBiasInturrept = 0; u_int32_t rxPowerInturrept = 0; readFromPage(page0L, SFP_DD_TX_POWER_INT_OFFSET, &txPowerInturrept); readFromPage(page0L, SFP_DD_TX_BIAS_INT_OFFSET, &txBiasInturrept); readFromPage(page0L, SFP_DD_RX_POWER_INT_OFFSET, &rxPowerInturrept); for (int i = 0; i < _cableDdm.channels; i++) { _cableDdm.rx_power[i].low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerInturrept >> SFP_DD_LWARN_STATUS, i); _cableDdm.rx_power[i].high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerInturrept >> SFP_DD_HWARN_STATUS, i); _cableDdm.rx_power[i].low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerInturrept >> SFP_DD_LALARM_STATUS, i); _cableDdm.rx_power[i].high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, rxPowerInturrept >> SFP_DD_HALARM_STATUS, i); _cableDdm.tx_power[i].low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerInturrept >> SFP_DD_LWARN_STATUS, i); _cableDdm.tx_power[i].high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerInturrept >> SFP_DD_HWARN_STATUS, i); _cableDdm.tx_power[i].low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerInturrept >> SFP_DD_LALARM_STATUS, i); _cableDdm.tx_power[i].high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txPowerInturrept >> SFP_DD_HALARM_STATUS, i); _cableDdm.tx_bias[i].low_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasInturrept >> SFP_DD_LWARN_STATUS, i); _cableDdm.tx_bias[i].high_warn_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasInturrept >> SFP_DD_HWARN_STATUS, i); _cableDdm.tx_bias[i].low_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasInturrept >> SFP_DD_LALARM_STATUS, i); _cableDdm.tx_bias[i].high_alarm_flag = getStatusBit(CMIS_MODULE_CHANNEL, txBiasInturrept >> SFP_DD_HALARM_STATUS, i); } } void MlxlinkCablesCommander::prepareSfpddDdmInfo() { // Read DDM fields from PDDR getDdmValuesFromPddr(); // Read module flags u_int8_t* page0L = (u_int8_t*)malloc(sizeof(u_int8_t) * CABLE_PAGE_SIZE); loadEEPRMPage(PAGE_0, LOWER_PAGE_OFFSET, page0L); getCmisModuleFlags(QSFP_DD_MODULE_INFO_OFFSET, page0L); // Read lanes flags getSfpDddLanesFlags(page0L); // Get cable thresholds u_int8_t* page0H = (u_int8_t*)malloc(sizeof(u_int8_t) * CABLE_PAGE_SIZE); loadEEPRMPage(PAGE_0, UPPER_PAGE_OFFSET, page0H); getSfpDdThresholds(page0H); free(page0H); free(page0L); } // Preparing QSFP DDM information void MlxlinkCablesCommander::prepareQSFPDdmInfo() { u_int32_t tempVal = 0; u_int8_t* page0L = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); if (page0L != NULL) { loadEEPRMPage(PAGE_0, LOWER_PAGE_OFFSET, page0L); readFromPage(page0L, QSFP_TEMP_AW_OFFSET, &tempVal); _cableDdm.temperature.high_warn_flag = (tempVal & QSFP_TEMP_HWARN_STATUS); _cableDdm.temperature.low_warn_flag = (tempVal & QSFP_TEMP_LWARN_STATUS); _cableDdm.temperature.high_alarm_flag = (tempVal & QSFP_TEMP_HALARM_STATUS); _cableDdm.temperature.low_alarm_flag = (tempVal & QSFP_TEMP_LALARM_STATUS); tempVal = 0; readFromPage(page0L, QSFP_VCC_AW_OFFSET, &tempVal); _cableDdm.voltage.high_warn_flag = (tempVal & QSFP_VCC_HWARN_STATUS); _cableDdm.voltage.low_warn_flag = (tempVal & QSFP_VCC_LWARN_STATUS); _cableDdm.voltage.high_alarm_flag = (tempVal & QSFP_VCC_HALARM_STATUS); _cableDdm.voltage.low_alarm_flag = (tempVal & QSFP_VCC_LALARM_STATUS); getDdmValuesFromPddr(); u_int8_t nextTwoChannels = 0; for (u_int32_t i = 1; i <= QSFP_CHANNELS; i++) { nextTwoChannels = (i > QSFP_CHANNELS / 2) ? 1 : 0; tempVal = 0; readFromPage(page0L, QSFP_RX_PWR_12_AW_OFFSET + nextTwoChannels, &tempVal); _cableDdm.rx_power[i - 1].low_warn_flag = getStatusBit(i, tempVal, QSFP_RX_PWR_1_LWARN); _cableDdm.rx_power[i - 1].high_warn_flag = getStatusBit(i, tempVal, QSFP_RX_PWR_1_HWARN); _cableDdm.rx_power[i - 1].low_alarm_flag = getStatusBit(i, tempVal, QSFP_RX_PWR_1_LALARM); _cableDdm.rx_power[i - 1].high_alarm_flag = getStatusBit(i, tempVal, QSFP_RX_PWR_1_HALARM); tempVal = 0; readFromPage(page0L, QSFP_TX_PWR_12_AW_OFFSET + nextTwoChannels, &tempVal); _cableDdm.tx_power[i - 1].low_warn_flag = getStatusBit(i, tempVal, QSFP_TX_PWR_1_LWARN); _cableDdm.tx_power[i - 1].high_warn_flag = getStatusBit(i, tempVal, QSFP_TX_PWR_1_HWARN); _cableDdm.tx_power[i - 1].low_alarm_flag = getStatusBit(i, tempVal, QSFP_TX_PWR_1_LALARM); _cableDdm.tx_power[i - 1].high_alarm_flag = getStatusBit(i, tempVal, QSFP_TX_PWR_1_HALARM); tempVal = 0; readFromPage(page0L, QSFP_TX_BIAS_12_AW_OFFSET + nextTwoChannels, &tempVal); _cableDdm.tx_bias[i - 1].low_warn_flag = getStatusBit(i, tempVal, QSFP_TX_BIAS_1_LWARN); _cableDdm.tx_bias[i - 1].high_warn_flag = getStatusBit(i, tempVal, QSFP_TX_BIAS_1_HWARN); _cableDdm.tx_bias[i - 1].low_alarm_flag = getStatusBit(i, tempVal, QSFP_TX_BIAS_1_LALARM); _cableDdm.tx_bias[i - 1].high_alarm_flag = getStatusBit(i, tempVal, QSFP_TX_BIAS_1_HALARM); } free(page0L); } } // Preparing SFP DDM information void MlxlinkCablesCommander::prepareSFPDdmInfo() { u_int32_t tempVal = 0; u_int8_t* sfp51Page = (u_int8_t*)malloc(sizeof(u_int8_t) * CABLE_PAGE_SIZE); loadEEPRMPage(PAGE_01, LOWER_PAGE_OFFSET, sfp51Page, I2C_ADDR_HIGH); getDdmValuesFromPddr(); readFromPage(sfp51Page, SFP51_ALRM_FLG, &tempVal, 2); _cableDdm.tx_power[0].low_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TX_PWR_LWARN_FLG); _cableDdm.tx_power[0].high_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TX_PWR_HWARN_FLG); _cableDdm.tx_bias[0].low_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_BIAS_LWARN_FLG); _cableDdm.tx_bias[0].high_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_BIAS_HWARN_FLG); _cableDdm.voltage.low_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_VCC_LWARN_FLG); _cableDdm.voltage.high_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_VCC_HWARN_FLG); _cableDdm.temperature.low_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TEMP_LWARN_FLG); _cableDdm.temperature.high_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TEMP_HWARN_FLG); _cableDdm.rx_power[0].low_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_RX_PWR_LWARN_FLG); _cableDdm.rx_power[0].high_warn_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_RX_PWR_HWARN_FLG); tempVal = 0; readFromPage(sfp51Page, SFP51_WARN_FLG, &tempVal, 2); _cableDdm.tx_power[0].low_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TX_PWR_LALRM_FLG); _cableDdm.tx_power[0].high_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TX_PWR_HALRM_FLG); _cableDdm.tx_bias[0].low_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_BIAS_LALRM_FLG); _cableDdm.tx_bias[0].high_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_BIAS_HALRM_FLG); _cableDdm.voltage.low_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_VCC_LALRM_FLG); _cableDdm.voltage.high_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_VCC_HALRM_FLG); _cableDdm.temperature.low_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TEMP_LALRM_FLG); _cableDdm.temperature.high_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_TEMP_HALRM_FLG); _cableDdm.rx_power[0].low_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_RX_PWR_LALRM_FLG); _cableDdm.rx_power[0].high_alarm_flag = getStatusBit(SFP_CHANNELS, tempVal, SFP51_RX_PWR_HALRM_FLG); free(sfp51Page); } // Preparing thresholds information void MlxlinkCablesCommander::prepareThresholdInfo(u_int8_t* thresholdPage) { readFromPage(thresholdPage, _sfp51Paging ? SFP51_TEMP_HALRM : QSFP_TEMP_HALRM, &_cableDdm.temperature.high_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TEMP_LALRM : QSFP_TEMP_LALRM, &_cableDdm.temperature.low_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TEMP_HWARN : QSFP_TEMP_HWARN, &_cableDdm.temperature.high_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TEMP_LWARN : QSFP_TEMP_LWARN, &_cableDdm.temperature.low_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_VCC_HALRM : QSFP_VCC_HALRM, &_cableDdm.voltage.high_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_VCC_LALRM : QSFP_VCC_LALRM, &_cableDdm.voltage.low_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_VCC_HWARN : QSFP_VCC_HWARN, &_cableDdm.voltage.high_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_VCC_LWARN : QSFP_VCC_LWARN, &_cableDdm.voltage.low_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_RX_PWR_HALRM : QSFP_RX_PWR_HALRM, &_cableDdm.rx_power[0].high_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_RX_PWR_LALRM : QSFP_RX_PWR_LALRM, &_cableDdm.rx_power[0].low_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_RX_PWR_HWARN : QSFP_RX_PWR_HWARN, &_cableDdm.rx_power[0].high_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_RX_PWR_LWARN : QSFP_RX_PWR_LWARN, &_cableDdm.rx_power[0].low_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TX_PWR_HALRM : QSFP_TX_PWR_HALRM, &_cableDdm.tx_power[0].high_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TX_PWR_LALRM : QSFP_TX_PWR_LALRM, &_cableDdm.tx_power[0].low_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TX_PWR_HWARN : QSFP_TX_PWR_HWARN, &_cableDdm.tx_power[0].high_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_TX_PWR_LWARN : QSFP_TX_PWR_LWARN, &_cableDdm.tx_power[0].low_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_BIAS_HALRM : QSFP_TX_BIAS_HALRM, &_cableDdm.tx_bias[0].high_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_BIAS_LALRM : QSFP_TX_BIAS_LALRM, &_cableDdm.tx_bias[0].low_alarm, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_BIAS_HWARN : QSFP_TX_BIAS_HWARN, &_cableDdm.tx_bias[0].high_warn, 2); readFromPage(thresholdPage, _sfp51Paging ? SFP51_BIAS_LWARN : QSFP_TX_BIAS_LWARN, &_cableDdm.tx_bias[0].low_warn, 2); } // Reading cable DDM information void MlxlinkCablesCommander::readCableDDMInfo() { u_int8_t* thresholdPage = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); switch (_cableIdentifier) { case IDENTIFIER_QSFP28: case IDENTIFIER_QSFP_PLUS: case IDENTIFIER_QSFP_SPLIT_CABLE: prepareQSFPDdmInfo(); loadEEPRMPage(PAGE_03, UPPER_PAGE_OFFSET, thresholdPage); prepareThresholdInfo(thresholdPage); break; case IDENTIFIER_SFP: case IDENTIFIER_QSA: prepareSFPDdmInfo(); loadEEPRMPage(PAGE_01, LOWER_PAGE_OFFSET, thresholdPage, I2C_ADDR_HIGH); prepareThresholdInfo(thresholdPage); break; case IDENTIFIER_SFP_DD: prepareSfpddDdmInfo(); break; case IDENTIFIER_QSFP_DD: case IDENTIFIER_OSFP: case IDENTIFIER_DSFP: case IDENTIFIER_QSFP_CMIS: prepareQsfpddDdmInfo(); break; default: free(thresholdPage); throw MlxRegException("Cable does not support DDM"); } fixThresholdBytes(); free(thresholdPage); } // Preparing and formating DDM flags section void MlxlinkCablesCommander::setPrintDDMFlagsSection(MlxlinkCmdPrint& cmdPrint, const ddm_threshold_t& flags, const string& flagGroup) { char strBuff[32]; string flagColor; sprintf(strBuff, "%0d", flags.high_alarm_flag); flagColor = MlxlinkRecord::ddmFlagValue2Color(atoi(strBuff), DDM_FLAG_ALARM); setPrintVal(cmdPrint, IDENT + flagGroup + " Alarm high", strBuff, flagColor, true, true, false, true); sprintf(strBuff, "%0d", flags.high_warn_flag); flagColor = MlxlinkRecord::ddmFlagValue2Color(atoi(strBuff), DDM_FLAG_WARN); setPrintVal(cmdPrint, IDENT + flagGroup + " Warning high", strBuff, flagColor, true, true, false, true); sprintf(strBuff, "%0d", flags.low_warn_flag); flagColor = MlxlinkRecord::ddmFlagValue2Color(atoi(strBuff), DDM_FLAG_WARN); setPrintVal(cmdPrint, IDENT + flagGroup + " Warning low", strBuff, flagColor, true, true, false, true); sprintf(strBuff, "%0d\n", flags.low_alarm_flag); flagColor = MlxlinkRecord::ddmFlagValue2Color(atoi(strBuff), DDM_FLAG_ALARM); setPrintVal(cmdPrint, IDENT + flagGroup + " Alarm low", strBuff, flagColor, true, true, false, true); } // Preparing threshold row for all DDM fields string MlxlinkCablesCommander::getDDMThresholdRow(u_int16_t temp, u_int16_t volt, u_int16_t rxPower, u_int16_t txPower, u_int16_t txBias) { string row = ""; char strBuff[32]; sprintf(strBuff, "%dC", (signed char)(temp >> 8)); row = MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fV", ((double)volt) / 10000); row += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fdBm", mw_to_dbm(((double)rxPower) / 10000)); row += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fdBm", mw_to_dbm(((double)txPower) / 10000)); row += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fmA", ((double)txBias) / 500); row += MlxlinkRecord::addSpaceForDDM(string(strBuff)); return row; } // Preparing DDM output by filling MlxlinkCmdPrint objects void MlxlinkCablesCommander::prepareDDMOutput() { MlxlinkCmdPrint cableDDMCmd = MlxlinkCmdPrint(); setPrintTitle(cableDDMCmd, "Cable DDM Information", 6); char strBuff[32]; sprintf(strBuff, "%dC", (int)_cableDdm.temperature.val); setPrintVal(cableDDMCmd, "Temperature", strBuff, ANSI_COLOR_RESET, true); sprintf(strBuff, "%.4fV", ((double)_cableDdm.voltage.val) / VOLT_UNIT); setPrintVal(cableDDMCmd, "Voltage", strBuff, ANSI_COLOR_RESET, true); int i = 0; string title = ""; string rxPower = ""; string txPower = ""; string txBias = ""; for (i = 0; i < _cableDdm.channels; i++) { sprintf(strBuff, "Channel %d", i + 1); title += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fdBm", (double)_cableDdm.rx_power[i].val); rxPower += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fdBm", (double)_cableDdm.tx_power[i].val); txPower += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; sprintf(strBuff, "%.3fmA", ((double)_cableDdm.tx_bias[i].val) / 500); txBias += MlxlinkRecord::addSpaceForDDM(string(strBuff)) + ","; } title = deleteLastChar(title); rxPower = deleteLastChar(rxPower); txPower = deleteLastChar(txPower); txBias = deleteLastChar(txBias); int skipTitle = (_cableDdm.channels == 1); if (!skipTitle) { setPrintVal(cableDDMCmd, "Channels", title, ANSI_COLOR_RESET, true, _cableDdm.channels > 0, true); } setPrintVal(cableDDMCmd, "RX Power", rxPower, ANSI_COLOR_RESET, true, _cableDdm.channels > 0, true); setPrintVal(cableDDMCmd, "TX Power", txPower, ANSI_COLOR_RESET, true, _cableDdm.channels > 0, true); setPrintVal(cableDDMCmd, "TX Bias", txBias, ANSI_COLOR_RESET, true, _cableDdm.channels > 0, true); cableDDMCmd.toJsonFormat(_jsonRoot); _cableDDMOutput.push_back(cableDDMCmd); MlxlinkCmdPrint cableDDMFlags = MlxlinkCmdPrint(); string flagStr = "Status"; setPrintTitle(cableDDMFlags, "DDM Flags", 9); setPrintDDMFlagsSection(cableDDMFlags, _cableDdm.temperature, "Temperature"); setPrintDDMFlagsSection(cableDDMFlags, _cableDdm.voltage, "Voltage"); cableDDMFlags.toJsonFormat(_jsonRoot); _cableDDMOutput.push_back(cableDDMFlags); for (i = 0; i < _cableDdm.channels; i++) { MlxlinkCmdPrint channelFlags = MlxlinkCmdPrint(); if (_cableDdm.channels == 1) { sprintf(strBuff, "Channel"); } else { sprintf(strBuff, "Channel %d", i + 1); } setPrintTitle(channelFlags, string(strBuff) + " Flags", 13); setPrintDDMFlagsSection(channelFlags, _cableDdm.rx_power[i], "RX Power"); setPrintDDMFlagsSection(channelFlags, _cableDdm.tx_power[i], "TX Power"); setPrintDDMFlagsSection(channelFlags, _cableDdm.tx_bias[i], "TX Bias"); channelFlags.toJsonFormat(_jsonRoot); _cableDDMOutput.push_back(channelFlags); } MlxlinkCmdPrint cableDDMThresholds = MlxlinkCmdPrint(); setPrintTitle(cableDDMThresholds, "DDM Thresholds", 50); setPrintVal( cableDDMThresholds, "Thresholds", MlxlinkRecord::addSpaceForDDM(string("Temperature")) + "," + MlxlinkRecord::addSpaceForDDM(string("Voltage")) + "," + MlxlinkRecord::addSpaceForDDM(string("RX Power")) + "," + MlxlinkRecord::addSpaceForDDM(string("TX Power")) + "," + MlxlinkRecord::addSpaceForDDM(string("TX Bias")), ANSI_COLOR_RESET, true, true, true); string row = getDDMThresholdRow(_cableDdm.temperature.high_alarm, _cableDdm.voltage.high_alarm, _cableDdm.rx_power[0].high_alarm, _cableDdm.tx_power[0].high_alarm, _cableDdm.tx_bias[0].high_alarm); setPrintVal(cableDDMThresholds, "High alarm threshold", row, ANSI_COLOR_RESET, true, true, true); row = getDDMThresholdRow(_cableDdm.temperature.high_warn, _cableDdm.voltage.high_warn, _cableDdm.rx_power[0].high_warn, _cableDdm.tx_power[0].high_warn, _cableDdm.tx_bias[0].high_warn); setPrintVal(cableDDMThresholds, "High warning threshold", row, ANSI_COLOR_RESET, true, true, true); row = getDDMThresholdRow(_cableDdm.temperature.low_warn, _cableDdm.voltage.low_warn, _cableDdm.rx_power[0].low_warn, _cableDdm.tx_power[0].low_warn, _cableDdm.tx_bias[0].low_warn); setPrintVal(cableDDMThresholds, "Low warning threshold", row, ANSI_COLOR_RESET, true, true, true); row = getDDMThresholdRow(_cableDdm.temperature.low_alarm, _cableDdm.voltage.low_alarm, _cableDdm.rx_power[0].low_alarm, _cableDdm.tx_power[0].low_alarm, _cableDdm.tx_bias[0].low_alarm); setPrintVal(cableDDMThresholds, "Low alarm threshold", row, ANSI_COLOR_RESET, true, true, true); cableDDMThresholds.toJsonFormat(_jsonRoot); _cableDDMOutput.push_back(cableDDMThresholds); } // Query cable DDM info from cable EEPRM vector MlxlinkCablesCommander::getCableDDM() { readCableDDMInfo(); prepareDDMOutput(); return _cableDDMOutput; } // Preparing pages to be dumped void MlxlinkCablesCommander::addPageToOutputVector(u_int8_t* pageBuffer, u_int32_t page, u_int32_t offset, u_int32_t length) { MlxlinkCmdPrint pageDump = MlxlinkCmdPrint(); char title[64]; char LineOffset[32]; char val[32]; u_int32_t bytesPerLine = 4; sprintf(title, "Page: 0x%x, Offset: %03d, Length: 0x%x", page, offset, length); setPrintTitle(pageDump, string(title), CABLE_PAGE_SIZE / bytesPerLine); u_int32_t row; for (row = 0; row < length / bytesPerLine; row++) { sprintf(LineOffset, "%03d", row * bytesPerLine + offset); sprintf(val, "%02x,%02x,%02x,%02x", pageBuffer[row * bytesPerLine], pageBuffer[row * bytesPerLine + 1], pageBuffer[row * bytesPerLine + 2], pageBuffer[row * bytesPerLine + 3]); setPrintVal(pageDump, LineOffset, val, ANSI_COLOR_RESET, true, true, true); } pageDump.toJsonFormat(_jsonRoot); _pagesToDump.push_back(pageDump); } // Fetching supported pages from cable EEPROM void MlxlinkCablesCommander::initValidPages() { page_t p = page_t{PAGE_0, LOWER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); bool qsfpCable = (_cableIdentifier == IDENTIFIER_QSFP28 || _cableIdentifier == IDENTIFIER_QSFP_PLUS); bool cmisCable = (_cableIdentifier == IDENTIFIER_SFP_DD || _cableIdentifier == IDENTIFIER_QSFP_DD || _cableIdentifier == IDENTIFIER_OSFP || _cableIdentifier == IDENTIFIER_DSFP || _cableIdentifier == IDENTIFIER_QSFP_CMIS); if (cmisCable || qsfpCable || _sfp51Paging) { p = page_t{PAGE_0, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); } if (_sfp51Paging) { p = page_t{PAGE_01, LOWER_PAGE_OFFSET, I2C_ADDR_HIGH}; _validPages.push_back(p); } if (qsfpCable && !_passiveQsfp) { u_int8_t* page0H = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); loadEEPRMPage(PAGE_0, UPPER_PAGE_OFFSET, page0H); u_int8_t optionsValue = 0; readFromPage(page0H, 195 - 0x80, &optionsValue); free(page0H); if (optionsValue & 0x40) { // check bit 6 for support page_01 p = page_t{PAGE_01, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); } if (optionsValue & 0x80) { // check bit 7 for support page_02 p = page_t{PAGE_02, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); } p = page_t{PAGE_03, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); if (optionsValue & 0x01) { // check bit 0 for support page_20 and page_21 p = page_t{PAGE_20, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); p = page_t{PAGE_21, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); } } if (cmisCable) { // (QSFP-DD) // if 2:7=0, dump page 0x1 // dump page 0x2 // dump page 0x10 // dump page 0x11 // (SFP-DD) // if 2:7=0, dump page 0x1 u_int8_t extendedPages = 0; u_int8_t* page0L = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); loadEEPRMPage(PAGE_0, LOWER_PAGE_OFFSET, page0L); ; readFromPage(page0L, EXTENDED_PAGES_1_2_10_11_ADDR, &extendedPages); free(page0L); if (!(extendedPages & EXTENDED_PAGES_1_2_10_11_MASK)) { p = page_t{PAGE_01, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); if (_cableIdentifier != IDENTIFIER_SFP_DD) { p = page_t{PAGE_02, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); p = page_t{PAGE_10, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); p = page_t{PAGE_11, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); // if p 1, B155:6=1, dump page 0x4 (H) // dump page 0x12 (H) // B142:5=1, dump page 0x13 (H) // dump page 0x14 (H) u_int8_t* page1H = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); loadEEPRMPage(PAGE_01, UPPER_PAGE_OFFSET, page1H); ; u_int8_t extendedQsfpPages = 0; readFromPage(page1H, (EXTENDED_PAGES_4_12_ADDR - UPPER_PAGE_OFFSET), &extendedQsfpPages); if (extendedQsfpPages & EXTENDED_PAGES_4_12_MASK) { p = page_t{PAGE_04, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); p = page_t{PAGE_12, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); } extendedQsfpPages = 0; readFromPage(page1H, (EXTENDED_PAGES_13_14_ADDR - UPPER_PAGE_OFFSET), &extendedQsfpPages); if (extendedQsfpPages & EXTENDED_PAGES_13_14_MASK) { p = page_t{PAGE_13, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); p = page_t{PAGE_14, UPPER_PAGE_OFFSET, I2C_ADDR_LOW}; _validPages.push_back(p); } free(page1H); } } } } // Query dump EEPROM pages vector MlxlinkCablesCommander::getPagesToDump() { initValidPages(); for (u_int32_t i = 0; i < _validPages.size(); i++) { u_int8_t* pageP = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); if (pageP != NULL) { loadEEPRMPage(_validPages[i].page, _validPages[i].offset, pageP, _validPages[i].i2cAddress); ; addPageToOutputVector(pageP, _validPages[i].page, _validPages[i].offset, CABLE_PAGE_SIZE); free(pageP); } } return _pagesToDump; } // Write a vector of bytes to cable EEPROM void MlxlinkCablesCommander::writeToEEPROM(u_int16_t page, u_int16_t offset, vector& bytesToWrite) { // check the page, offset and data size validity checkParams(page, offset, bytesToWrite.size()); u_int32_t numberOfZeroBytes = 0; // adding zero bytes to work with dword blocks for (; numberOfZeroBytes < bytesToWrite.size() % 4; numberOfZeroBytes++) { bytesToWrite.push_back(0x0); } u_int32_t numberOfAllignedBytes = bytesToWrite.size(); u_int8_t* data = (u_int8_t*)malloc(sizeof(u_int8_t) * bytesToWrite.size()); memcpy(data, &bytesToWrite[0], sizeof(u_int8_t) * bytesToWrite.size()); u_int32_t i2cAddress = I2C_ADDR_LOW; if (_sfp51Paging && page == PAGE_01) { i2cAddress = I2C_ADDR_HIGH; } writeMCIA(page, numberOfAllignedBytes, numberOfZeroBytes, offset, data, i2cAddress); free(data); } // Checking read command parameters and initializing the valid pages void MlxlinkCablesCommander::checkParams(u_int16_t page, u_int16_t offset, u_int16_t length) { if (offset > (EEPROM_PAGE_LENGTH + 1)) { throw MlxRegException("Invalid offset value %d. It must be within range [0-255].", offset); } if (length > (EEPROM_PAGE_LENGTH + 1)) { throw MlxRegException("Invalid length value %d. It must be within range [0-255].", length); } if ((length + offset) > (EEPROM_PAGE_LENGTH + 1)) { throw MlxRegException("The length of bytes exceeded the page size.", length); } initValidPages(); bool lowerPageAccess = offset < CABLE_PAGE_SIZE; bool upperPageAccess = (offset > (CABLE_PAGE_SIZE - 1)) || ((length + offset) > CABLE_PAGE_SIZE); bool lowerValid = false; bool upperValid = false; for (u_int32_t i = 0; i < _validPages.size(); i++) { if (_validPages[i].page == page) { if (lowerPageAccess) { if (_validPages[i].offset == LOWER_PAGE_OFFSET) { lowerValid = true; } } if (upperPageAccess) { if (_validPages[i].offset == UPPER_PAGE_OFFSET) { upperValid = true; } } if (lowerPageAccess && upperPageAccess) { if (lowerValid && upperValid) { break; } } else if (lowerValid || upperValid) { break; } } else if (i == _validPages.size() - 1) { throw MlxRegException("Invalid access to page 0x%x", page); } } if (lowerPageAccess && !lowerValid) { throw MlxRegException("Invalid access to page 0x%x low", page); } else if (upperPageAccess && !upperValid) { throw MlxRegException("Invalid access to page 0x%x high", page); } } // Reading specific offset\page from cable EEPRM MlxlinkCmdPrint MlxlinkCablesCommander::readFromEEPRM(u_int16_t page, u_int16_t offset, u_int16_t length) { checkParams(page, offset, length); u_int8_t* pageL = NULL; u_int8_t* pageH = NULL; u_int32_t i2cAddress = I2C_ADDR_LOW; // if SFP51 paging is supported, then we use i2c 0x51 to Access page 1 if (_sfp51Paging && page == PAGE_01) { i2cAddress = I2C_ADDR_HIGH; } pageL = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); loadEEPRMPage(page, LOWER_PAGE_OFFSET, pageL, i2cAddress); if ((length + offset) > CABLE_PAGE_SIZE) { pageH = (u_int8_t*)calloc(CABLE_PAGE_SIZE, sizeof(u_int8_t)); loadEEPRMPage(page, UPPER_PAGE_OFFSET, pageH); } char label[32]; char val[32]; u_int8_t byteVal = 0; u_int32_t i = 0; MlxlinkCmdPrint bytesOutput = MlxlinkCmdPrint(); setPrintTitle(bytesOutput, "Cable Read Output", length + 1); u_int32_t currOffset = 0; for (i = 0; i < length; ++i) { currOffset = offset + i; sprintf(label, "page[%d].Byte[%d]", page, currOffset); if (currOffset < CABLE_PAGE_SIZE) { readFromPage(pageL, currOffset, &byteVal); sprintf(val, "0x%02x", byteVal); } else { readFromPage(pageH, currOffset - UPPER_PAGE_OFFSET, &byteVal); sprintf(val, "0x%02x", byteVal); } setPrintVal(bytesOutput, label, val, ANSI_COLOR_RESET, true, true, true); } bytesOutput.toJsonFormat(_jsonRoot); free(pageL); free(pageH); return bytesOutput; } u_int32_t MlxlinkCablesCommander::getModeAdminFromStr(u_int32_t cap, const string& adminStr, ModuleAccess_t moduleAccess) { int modeAdmin = _prbsMode; string confStr = adminStr.empty() ? DEFAULT_PRBS_MODE_STR : adminStr; modeAdmin = _mlxlinkMaps->_modulePrbsModeStrToCap[confStr]; if (!modeAdmin || !(modeAdmin & cap)) { string validRates = "["; for (auto it = _mlxlinkMaps->_modulePrbsModeCapToStr.begin(); it != _mlxlinkMaps->_modulePrbsModeCapToStr.end(); it++) { if (it->first & cap) { validRates += it->second + ","; } } validRates = deleteLastChar(validRates); validRates += "]"; throw MlxRegException("Invalid PRBS pattern for the %s [%s]\nValid values are: %s", _mlxlinkMaps->_moduleScopeToStr[moduleAccess].c_str(), confStr.c_str(), validRates.c_str()); } return (int)log2((float)modeAdmin); } u_int32_t MlxlinkCablesCommander::getRateAdminFromStr(u_int32_t cap, const string& rateStr) { int rateAdmin = _prbsRate; string confStr = rateStr.empty() ? DEFAULT_PRBS_RATE_STR : rateStr; rateAdmin = _mlxlinkMaps->_modulePrbsRateStrToCap[confStr]; if (!rateAdmin || !(rateAdmin & cap)) { string validRates = "["; for (auto it = _mlxlinkMaps->_modulePrbsRateStrToCap.begin(); it != _mlxlinkMaps->_modulePrbsRateStrToCap.end(); it++) { if (it->second & cap) { validRates += it->first + ","; } } validRates = deleteLastChar(validRates); validRates += "]"; throw MlxRegException("Invalid PRBS lane rate configuration [%s]\nValid configurations are: %s", confStr.c_str(), validRates.c_str()); } return rateAdmin; } bool MlxlinkCablesCommander::getInvAdminFromStr(u_int32_t cap, const string& invStr, ModuleAccess_t moduleAccess) { bool invAdmin = false; if (!invStr.empty()) { invAdmin = true; if (!cap) { throw MlxRegException("PRBS inversion is not supported by the %s", _mlxlinkMaps->_moduleScopeToStr[moduleAccess].c_str()); } } return invAdmin; } bool MlxlinkCablesCommander::getSwapAdminFromStr(u_int32_t cap, const string& swapStr, ModuleAccess_t moduleAccess) { bool swapAdmin = false; if (!swapStr.empty()) { swapAdmin = true; if (!cap) { throw MlxRegException("PAM4 MSB <-> LSB swapping is not supported by the %s", _mlxlinkMaps->_moduleScopeToStr[moduleAccess].c_str()); } } return swapAdmin; } u_int32_t MlxlinkCablesCommander::getLanesFromStr(u_int32_t cap, const string& lanesStr) { u_int32_t laneMask = 0; string temp = lanesStr; if (!lanesStr.empty()) { if (!cap) { throw MlxRegException("No support of per lane configuration by the module"); } auto lanesVec = MlxlinkRecord::split(temp, ","); u_int32_t val = 0; for (auto it = lanesVec.begin(); it != lanesVec.end(); it++) { strToUint32((char*)(*it).c_str(), val); if (val > (_numOfLanes - 1)) { throw MlxRegException("Invalid lane index [%d], valid lanes range is [0 to %d]", val, (_numOfLanes - 1)); } laneMask |= (u_int32_t)pow(2.0, (double)val); } } return laneMask; } void MlxlinkCablesCommander::getNumOfModuleLanes() { try { // As a WA, use module_width for MEDIA and HOST lanes // TODO: use module_media_width once it be supported // if (_modulePrbsParams[MODULE_PRBS_SELECT] == "HOST") { sendPrmReg(ACCESS_REG_PMTM, GET, "module=%d,slot_index=%d", _moduleNumber, _slotIndex); _numOfLanes = getFieldValue("module_width"); //} else { //_numOfLanes = getFieldValue("module_media_width"); //} } catch (MlxRegException& exc) { } } void MlxlinkCablesCommander::checkAndParsePMPTCap(ModuleAccess_t moduleAccess) { bool regFaild = false; try { sendPrmReg(ACCESS_REG_PMPT, GET, "module=%d,slot_index=%d,lane_mask=%d", _moduleNumber, _slotIndex, 1); } catch (MlxRegException& exc) { regFaild = true; } if (regFaild || getFieldValue("status") == PMPT_STATUS_NOT_SUPPORTED) { throw MlxRegException("Module doesn't support PRBS and diagnostics data"); } _prbsRate = getRateAdminFromStr(getFieldValue("lane_rate_cap"), _modulePrbsParams[ModulePrbs_t(MODULE_PRBS_RATE)]); // read the other PMPT caps according to the prbsRate sendPrmReg(ACCESS_REG_PMPT, GET, "module=%d,slot_index=%d,host_media=%d,lane_mask=%d,ch_ge=%d,modulation=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", 1, (u_int32_t)moduleAccess, _prbsRate >= MODULE_PRBS_LANE_RATE_HDR); u_int32_t chAccessShift = moduleAccess == MODULE_PRBS_ACCESS_CH ? MODULE_PRBS_GEN_INV : 0; _prbsMode = getModeAdminFromStr(getFieldValue("prbs_modes_cap"), _modulePrbsParams[ModulePrbs_t(MODULE_PRBS_GEN_PAT + chAccessShift)], moduleAccess); _prbsInv = getInvAdminFromStr(getFieldValue("invt_cap"), _modulePrbsParams[ModulePrbs_t(MODULE_PRBS_GEN_INV + chAccessShift)], moduleAccess); _prbsSwap = getSwapAdminFromStr( getFieldValue("swap_cap"), _modulePrbsParams[ModulePrbs_t(MODULE_PRBS_GEN_SWAP + chAccessShift)], moduleAccess); _prbsLanes = getLanesFromStr(getFieldValue("ls"), _modulePrbsParams[ModulePrbs_t(MODULE_PRBS_GEN_LANES + chAccessShift)]); } u_int32_t MlxlinkCablesCommander::getPMPTStatus(ModuleAccess_t moduleAccess) { sendPrmReg(ACCESS_REG_PMPT, GET, "module=%d,slot_index=%d,host_media=%d,lane_mask=%d,ch_ge=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", 1, (u_int32_t)moduleAccess); return getFieldValue("status"); } void MlxlinkCablesCommander::sendPMPT(ModuleAccess_t moduleAccess) { checkAndParsePMPTCap(moduleAccess); sendPrmReg(ACCESS_REG_PMPT, SET, "module=%d,slot_index=%d,host_media=%d,lane_mask=%d,ch_ge=%d,e=%d,prbs_mode_admin=%d,lane_rate_admin=%d," "invt_admin=%d,swap_admin=%d,le=%d,modulation=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", _prbsLanes ? _prbsLanes : 0xff, (u_int32_t)moduleAccess, 1, _prbsMode, _prbsRate, _prbsInv, _prbsSwap, _prbsLanes != 0, _prbsRate >= MODULE_PRBS_LANE_RATE_HDR); if (getPMPTStatus(moduleAccess) == PMPT_STATUS_CONFIG_ERROR) { throw MlxRegException("Unsupported configuration setting"); } } void MlxlinkCablesCommander::enablePMPT(ModuleAccess_t moduleAccess) { switch (moduleAccess) { case MODULE_PRBS_ACCESS_CH: case MODULE_PRBS_ACCESS_GEN: sendPMPT(moduleAccess); break; case MODULE_PRBS_ACCESS_CH_GEN: sendPMPT(MODULE_PRBS_ACCESS_CH); sendPMPT(MODULE_PRBS_ACCESS_GEN); break; default: sendPMPT(MODULE_PRBS_ACCESS_BOTH); } } void MlxlinkCablesCommander::disablePMPT() { sendPrmReg(ACCESS_REG_PMPT, SET, "module=%d,slot_index=%d,host_media=%d,lane_mask=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", 0xff); } void MlxlinkCablesCommander::handlePrbsTestMode(const string& ctrl, ModuleAccess_t moduleAccess) { if (ctrl == "EN") { MlxlinkRecord::printCmdLine("Enabling Module PRBS Test Mode", _jsonRoot); getNumOfModuleLanes(); enablePMPT(moduleAccess); } else if (ctrl == "DS") { MlxlinkRecord::printCmdLine("Disabling Module PRBS Test Mode", _jsonRoot); disablePMPT(); } else { throw MlxRegException("Invalid PRBS Module mode, please check the help menu"); } } void MlxlinkCablesCommander::getPMPTConfiguration(ModuleAccess_t moduleAccess, vector& prbsPattern, vector& prbsRate, vector& prbsInv, vector& prbsSwap) { sendPrmReg(ACCESS_REG_PMPT, GET, "module=%d,slot_index=%d,host_media=%d,lane_mask=%d,ch_ge=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", 1, (u_int32_t)moduleAccess); u_int32_t index = (u_int32_t)pow(2.0, (double)getFieldValue("prbs_mode_admin")); prbsPattern.push_back(MlxlinkRecord::addSpaceForModulePrbs(_mlxlinkMaps->_modulePrbsModeCapToStr[index])); index = getFieldValue("lane_rate_admin"); prbsRate.push_back(MlxlinkRecord::addSpaceForModulePrbs(_mlxlinkMaps->_modulePrbsRateCapToStr[index])); string capStr = getFieldValue("invt_cap") ? "" : "Not Supported"; string adminStr = getFieldValue("invt_admin") ? "Yes" : "No"; prbsInv.push_back(MlxlinkRecord::addSpaceForModulePrbs(!capStr.empty() ? capStr : adminStr)); capStr = getFieldValue("swap_cap") ? "" : "Not Supported"; adminStr = getFieldValue("swap_admin") ? "Yes" : "No"; prbsSwap.push_back(MlxlinkRecord::addSpaceForModulePrbs(!capStr.empty() ? capStr : adminStr)); } string MlxlinkCablesCommander::getPMPDLockStatus() { string lockStatusStr = ""; for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { sendPrmReg(ACCESS_REG_PMPD, GET, "module=%d,slot_index=%d,host_media=%d,lane=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", lane); lockStatusStr += MlxlinkRecord::addSpaceForModulePrbs(_mlxlinkMaps->_modulePMPDStatus[getFieldValue("status")]); lockStatusStr += ","; // Print only one indecation for each cap if it's not supported if (getFieldValue("status") == PMPD_STATUS_NOT_SUPPORTED) { break; } } if (!lockStatusStr.empty()) { lockStatusStr = deleteLastChar(lockStatusStr); } return lockStatusStr; } void MlxlinkCablesCommander::showPrbsTestMode() { MlxlinkCmdPrint prbsOutput = MlxlinkCmdPrint(); setPrintTitle(prbsOutput, "Module PRBS Test Mode", MODULE_PMPT_INFO_LAST); getNumOfModuleLanes(); try { sendPrmReg(ACCESS_REG_PMPT, GET, "module=%d,slot_index=%d,host_media=%d,lane_mask=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", 1); } catch (MlxRegException& exc) { throw MlxRegException("Device doesn't support Module PRBS and diagnostics data"); } setPrintVal(prbsOutput, "Status", _mlxlinkMaps->_modulePrbsSt[getFieldValue("status")]); setPrintVal(prbsOutput, "Lock Status [per lane]", getPMPDLockStatus(), ANSI_COLOR_RESET, true, true, true); vector prbsAcces, prbsPattern, prbsRate, prbsInv, prbsSwap; prbsAcces.push_back(MlxlinkRecord::addSpaceForModulePrbs("Checker")); prbsAcces.push_back(MlxlinkRecord::addSpaceForModulePrbs("Generator")); getPMPTConfiguration(MODULE_PRBS_ACCESS_CH, prbsPattern, prbsRate, prbsInv, prbsSwap); getPMPTConfiguration(MODULE_PRBS_ACCESS_GEN, prbsPattern, prbsRate, prbsInv, prbsSwap); setPrintVal(prbsOutput, "PRBS Access", getStringFromVector(prbsAcces), ANSI_COLOR_RESET, true, true, true); setPrintVal(prbsOutput, "PRBS Pattern", getStringFromVector(prbsPattern), ANSI_COLOR_RESET, true, true, true); setPrintVal(prbsOutput, "PRBS Lane Rate ", getStringFromVector(prbsRate), ANSI_COLOR_RESET, true, true, true); setPrintVal(prbsOutput, "PRBS Inversion", getStringFromVector(prbsInv), ANSI_COLOR_RESET, true, true, true); setPrintVal(prbsOutput, "PRBS MSB<->LSB Swap", getStringFromVector(prbsSwap), ANSI_COLOR_RESET, true, true, true); prbsOutput.toJsonFormat(_jsonRoot); cout << prbsOutput; } void MlxlinkCablesCommander::getPMPDInfo(vector& traffic, vector& errors, vector& ber, vector& snr) { string traficStr, errorsStr, berStr, snrStr; bool skipErrorCap = false; bool skipBerCap = false; bool skipSnrCap = false; for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { sendPrmReg(ACCESS_REG_PMPD, GET, "module=%d,slot_index=%d,host_media=%d,lane=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", lane); traficStr = to_string(add32BitTo64(getFieldValue("prbs_bits_high"), getFieldValue("prbs_bits_low"))); errorsStr = to_string(add32BitTo64(getFieldValue("prbs_errors_high"), getFieldValue("prbs_errors_low"))); berStr = to_string(getFieldValue("ber_coef")) + "E-" + to_string(getFieldValue("ber_magnitude")); snrStr = getFieldValue("measured_snr") ? (to_string(getFieldValue("measured_snr")) + " dB") : "N/A"; traffic.push_back(MlxlinkRecord::addSpaceForModulePrbs(traficStr)); if (!skipErrorCap) { errors.push_back( MlxlinkRecord::addSpaceForModulePrbs(getFieldValue("errors_cap") ? errorsStr : "Not Supported")); } if (!skipBerCap) { ber.push_back(MlxlinkRecord::addSpaceForModulePrbs(getFieldValue("ber_cap") ? berStr : "Not Supported")); } if (!skipSnrCap) { snr.push_back(MlxlinkRecord::addSpaceForModulePrbs(getFieldValue("snr_cap") ? snrStr : "Not Supported")); } // Print only one indication for each cap if it's not supported if (getFieldValue("errors_cap") == 0) { skipErrorCap = true; } if (getFieldValue("ber_cap") == 0) { skipBerCap = true; } if (getFieldValue("snr_cap") == 0) { skipSnrCap = true; } } } void MlxlinkCablesCommander::showPrpsDiagInfo() { vector traffic, errors, ber, snr; MlxlinkCmdPrint diagOutput = MlxlinkCmdPrint(); getNumOfModuleLanes(); setPrintTitle(diagOutput, "Module PRBS Diagnostic Counters", MODULE_PMPD_INFO_LAST); getPMPDInfo(traffic, errors, ber, snr); setPrintVal(diagOutput, "PRBS Traffic (bits) [per lane]", getStringFromVector(traffic), ANSI_COLOR_RESET, true, true, true); setPrintVal(diagOutput, "PRBS Errors [per lane]", getStringFromVector(errors), ANSI_COLOR_RESET, true, true, true); setPrintVal(diagOutput, "PRBS BER [per lane]", getStringFromVector(ber), ANSI_COLOR_RESET, true, true, true); setPrintVal(diagOutput, "Measured SNR [per lane]", getStringFromVector(snr), ANSI_COLOR_RESET, true, true, true); diagOutput.toJsonFormat(_jsonRoot); cout << diagOutput; } void MlxlinkCablesCommander::clearPrbsDiagInfo() { MlxlinkRecord::printCmdLine("Clearing PRBS Diagnostic Counters", _jsonRoot); sendPrmReg(ACCESS_REG_PMPD, GET, "module=%d,slot_index=%d,host_media=%d,cl=%d", _moduleNumber, _slotIndex, _modulePrbsParams[MODULE_PRBS_SELECT] == "HOST", 1); } void MlxlinkCablesCommander::showControlParams() { MlxlinkCmdPrint controlParamsOutput = MlxlinkCmdPrint(); setPrintTitle(controlParamsOutput, "Module Control Parameters", CABLE_CONTROL_PARAMETERS_SET_RX_AMP); sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d", PDDR_MODULE_INFO_PAGE); u_int32_t txEq = getFieldValue("cable_tx_equalization"); float rxEmph = (double)getFieldValue("cable_rx_emphasis"); u_int32_t rxPostEmph = getFieldValue("cable_rx_post_emphasis"); u_int32_t rxAmp = getFieldValue("cable_rx_amp"); bool isCmis = _cableIdentifier >= IDENTIFIER_SFP_DD; sendPrmReg(ACCESS_REG_PMCR, GET); if (isCmis) { _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_EMPH].first += " (pre)"; rxEmph /= 2; } char rxEmphStr[64]; sprintf(rxEmphStr, "%.1f", rxEmph); string strFmt = txEq ? to_string(txEq) + " dB" : "No Equalization"; strFmt = getFieldValue("tx_equ_override_cap") ? strFmt : "Not Supported"; setPrintVal(controlParamsOutput, _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_TX_EQ].first, strFmt); strFmt = (isCmis ? rxEmphStr : to_string((u_int32_t)rxEmph)) + " dB"; strFmt = (rxEmph > 0) ? strFmt : "No Equalization"; strFmt = getFieldValue("rx_emp_override_cap") ? strFmt : "Not Supported"; setPrintVal(controlParamsOutput, _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_EMPH].first, strFmt); strFmt = rxPostEmph ? to_string(rxPostEmph) + " dB" : "No Equalization"; strFmt = getFieldValue("rx_post_emp_override_cap") ? strFmt : "Not Supported"; setPrintVal(controlParamsOutput, _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_POST_EMPH].first, strFmt, ANSI_COLOR_RESET, isCmis); strFmt = _mlxlinkMaps->_moduleRxAmp[rxAmp]; strFmt = getFieldValue("rx_amp_override_cap") ? strFmt : "Not Supported"; setPrintVal(controlParamsOutput, _modulePMCRParams[CABLE_CONTROL_PARAMETERS_SET_RX_AMP].first, strFmt); controlParamsOutput.toJsonFormat(_jsonRoot); cout << controlParamsOutput; } u_int32_t MlxlinkCablesCommander::pmcrStrToValue(ControlParam paramId, const string& value) { double valueToSet = 0; bool invalidConfiguration = false; bool isCmis = _cableIdentifier >= IDENTIFIER_SFP_DD; bool isDecemal = false; string valueStr = value; try { toUpperCase(valueStr); valueToSet = valueStr == "NE" ? 0 : stod(value); isDecemal = (valueToSet - (int)valueToSet) > 0; } catch (exception& exc) { invalidConfiguration = true; } if (isDecemal && !isCmis && paramId == CABLE_CONTROL_PARAMETERS_SET_RX_EMPH) { invalidConfiguration = true; } if (isCmis && paramId == CABLE_CONTROL_PARAMETERS_SET_RX_EMPH) { _modulePMCRParams[paramId].first += " (pre)"; valueToSet *= 2; if ((valueToSet - (int)valueToSet) > 0) { invalidConfiguration = true; } } if ((valueToSet < 0) || (valueStr == "0" && paramId != CABLE_CONTROL_PARAMETERS_SET_RX_AMP) || (valueToSet > MAX_SFF_CODE_VALUE) || (isDecemal && paramId != CABLE_CONTROL_PARAMETERS_SET_RX_EMPH)) { invalidConfiguration = true; } if (invalidConfiguration) { u_int32_t capVal = getFieldValue(_modulePMCRParams[paramId].second + "_value_cap"); string capStr = ""; if (capVal) { capStr = "\nSupported configuration values are ["; capStr += getPMCRCapValueStr(capVal, paramId); capStr += "]"; } throw MlxRegException("Invalid %s configuration: %s %s", _modulePMCRParams[paramId].first.c_str(), value.c_str(), capStr.c_str()); } return (u_int32_t)valueToSet; } string MlxlinkCablesCommander::getPMCRCapValueStr(u_int32_t valueCap, ControlParam paramId) { string capStr = ""; if (paramId == CABLE_CONTROL_PARAMETERS_SET_RX_AMP) { capStr = getStrByMask(valueCap, _mlxlinkMaps->_moduleRxAmpCap); } else { char tmpFmt[64]; for (u_int32_t val = 0; val <= valueCap; val++) { if (val == 0) { capStr += "NE,"; } else if (_cableIdentifier >= IDENTIFIER_SFP_DD && paramId == CABLE_CONTROL_PARAMETERS_SET_RX_EMPH) { sprintf(tmpFmt, "%.1f,", ((float)val / 2.0)); capStr += string(tmpFmt); } else { sprintf(tmpFmt, "%d,", val); capStr += string(tmpFmt); } } capStr = deleteLastChar(capStr); } return capStr; } void MlxlinkCablesCommander::checkPMCRFieldsCap(vector>& params) { sendPrmReg(ACCESS_REG_PMCR, GET); // Check provided params exestance capability string fieldName = ""; for (auto it = params.begin(); it != params.end(); it++) { fieldName = _modulePMCRParams[it->first].first; if (it->first == CABLE_CONTROL_PARAMETERS_SET_RX_POST_EMPH && _cableIdentifier < IDENTIFIER_SFP_DD) { throw MlxRegException("%s configuration is valid for CMIS only", fieldName.c_str()); } if (!getFieldValue(_modulePMCRParams[it->first].second + "_cap")) { throw MlxRegException("%s configuration is not supported for the current module", fieldName.c_str()); } } // Check provided params value capability bool invalidVal = false; u_int32_t valueToSet = 0; u_int32_t valueCap = 0; string validCapStr = ""; for (auto it = params.begin(); it != params.end(); it++) { fieldName = _modulePMCRParams[it->first].second; valueToSet = pmcrStrToValue(it->first, it->second); valueCap = getFieldValue(fieldName + "_value_cap"); if (it->first == CABLE_CONTROL_PARAMETERS_SET_RX_AMP) { valueToSet = (u_int32_t)pow(2.0, (double)valueToSet); if (!(valueCap & valueToSet)) { invalidVal = true; } } else if (valueToSet > valueCap) { invalidVal = true; } if (invalidVal) { if (valueCap) { validCapStr = "\nSupported configuration values are ["; validCapStr += getPMCRCapValueStr(valueCap, it->first); validCapStr += "]"; } throw MlxRegException("Not supported %s configuration value: %s %s", _modulePMCRParams[it->first].first.c_str(), it->second.c_str(), validCapStr.c_str()); } } } string MlxlinkCablesCommander::buildPMCRRequest(ControlParam paramId, const string& value) { u_int32_t valueToSet = pmcrStrToValue(paramId, value); string pmcrReq = _modulePMCRParams[paramId].second + "_cntl=2,"; pmcrReq += _modulePMCRParams[paramId].second + "_value=" + to_string((u_int32_t)valueToSet); return pmcrReq; } void MlxlinkCablesCommander::setControlParams(vector>& params) { MlxlinkRecord::printCmdLine("Overriding Cable Control Parameters", _jsonRoot); checkPMCRFieldsCap(params); string fieldsStr = ""; string pmcrFieldsRequest = ""; try { for (auto it = params.begin(); it != params.end(); it++) { fieldsStr += _modulePMCRParams[it->first].first + ", "; pmcrFieldsRequest += buildPMCRRequest(it->first, it->second); pmcrFieldsRequest += ","; } pmcrFieldsRequest = deleteLastChar(pmcrFieldsRequest); sendPrmReg(ACCESS_REG_PMCR, SET, pmcrFieldsRequest.c_str()); } catch (MlxRegException& exc) { fieldsStr = deleteLastChar(fieldsStr, 2); throw MlxRegException("Failed to set Control Parameters [%s]:\n%s", fieldsStr.c_str(), exc.what()); } } mstflint-4.26.0/mlxlink/modules/mlxlink_port_info.cpp0000644000175000017500000000776514522641732023311 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_port_info.h" #include "mlxlink_maps.h" MlxlinkPortInfo::MlxlinkPortInfo(Json::Value& jsonRoot) : _jsonRoot(jsonRoot) { _fecActive = 0; _histType = HIST_TYPE_AUTO; _numOfBins = 0; _fieldSep = " \t"; } MlxlinkPortInfo::~MlxlinkPortInfo() {} void MlxlinkPortInfo::init() { sendPrmReg(ACCESS_REG_PPHCR, GET); if (!getFieldValue("active_hist_type")) { throw MlxRegException("No histogram info available for the current active FEC"); } if (MlxlinkRecord::jsonFormat) { _fieldSep = ","; } _numOfBins = getFieldValue("num_of_bins"); } void MlxlinkPortInfo::updateBinsRange() { sendPrmReg(ACCESS_REG_PPHCR, GET); for (u_int32_t binIdx = 0; binIdx < _numOfBins; ++binIdx) { HISTOGRAM_BIN histBin = HISTOGRAM_BIN(binIdx, getFieldValue("low_val_" + to_string(binIdx)), getFieldValue("high_val_" + to_string(binIdx)), 0); _binsList.insert(_binsList.begin() + binIdx, histBin); } } void MlxlinkPortInfo::updateBinsErrorsCount() { sendPrmReg(ACCESS_REG_PPCNT, GET, "grp=%d", PPCNT_HISTOGRAM_GROUP); for (u_int32_t binIdx = 0; binIdx < _numOfBins; ++binIdx) { _binsList[binIdx].numOfErrors = add32BitTo64(getFieldValue("hist[" + to_string(binIdx) + "]_hi"), getFieldValue("hist[" + to_string(binIdx) + "]_lo")); } } void MlxlinkPortInfo::showHistogram() { updateBinsRange(); updateBinsErrorsCount(); MlxlinkCmdPrint cmdOut = MlxlinkCmdPrint(); setPrintTitle(cmdOut, "Histogram of FEC Errors", _numOfBins + 2); setPrintVal(cmdOut, "Header", "Range" + _fieldSep + "Occurrences", ANSI_COLOR_RESET, true, true, true); char infoRow[64]; for (vector::iterator it = _binsList.begin(); it != _binsList.end(); ++it) { if (it->minRange == it->maxRange) { sprintf(infoRow, "[%d] %s%lld", it->maxRange, _fieldSep.c_str(), (unsigned long long int)it->numOfErrors); } else { sprintf(infoRow, "[%d:%d]%s%lld", it->minRange, it->maxRange, _fieldSep.c_str(), (unsigned long long int)it->numOfErrors); } setPrintVal(cmdOut, "Bin " + to_string(it->bin), string(infoRow), ANSI_COLOR_RESET, true, true, true); } cmdOut.toJsonFormat(_jsonRoot); cout << cmdOut; } void MlxlinkPortInfo::clearHistogram() { MlxlinkRecord::printCmdLine("Clearing Histogram Counters", _jsonRoot); sendPrmReg(ACCESS_REG_PPCNT, SET, "grp=%d,clr=%d", PPCNT_HISTOGRAM_GROUP, 1); } mstflint-4.26.0/mlxlink/modules/mlxlink_ui.h0000644000175000017500000000533314522641732021361 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_UI_H #define MLXLINK_UI_H #include "mlxlink_commander.h" #include "printutil/mlxlink_record.h" class MlxlinkUi : public CommandLineRequester { public: MlxlinkUi(); virtual ~MlxlinkUi(); int run(int argc, char** argv); protected: virtual void addCmd(OPTION_TYPE option); virtual ParseStatus HandleOption(string name, string value); virtual void printSynopsisHeader(); virtual void printSynopsisQueries(); virtual void printSynopsisCommands(); virtual void printSynopsis(); virtual void printHelp(); virtual void initCmdParser(); virtual void commandsCaller(); virtual void validateMandatoryParams(); virtual void validatePCIeParams(); virtual void validateGeneralCmdsParams(); virtual void validatePRBSParams(); virtual void validateModulePRBSParams(); virtual void validateSpeedAndCSVBerParams(); virtual void validateCableParams(); virtual void validateTxGroupParams(); virtual void validateGradeScanParams(); virtual void validateErrInjParams(); virtual void validatePortInfoParams(); virtual void paramValidate(); virtual void createMlxlinkCommander(); CommandLineParser _cmdParser; std::vector _sendRegFuncMap; MlxlinkCommander* _mlxlinkCommander; }; #endif /* MLXLINK_UI_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_ui.cpp0000644000175000017500000022107414522641732021716 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_ui.h" MlxlinkUi::MlxlinkUi() : CommandLineRequester(MLXLINK_EXEC " OPTIONS"), _cmdParser(MLXLINK_EXEC) { _mlxlinkCommander = nullptr; } MlxlinkUi::~MlxlinkUi() { if (_mlxlinkCommander) { delete _mlxlinkCommander; } } void MlxlinkUi::createMlxlinkCommander() { _mlxlinkCommander = new MlxlinkCommander(); } void MlxlinkUi::printSynopsisHeader() { printf(IDENT "NAME:\n" IDENT2 MLXLINK_EXEC "\n\n" IDENT "SYNOPSIS:\n" IDENT2 MLXLINK_EXEC " [OPTIONS]\n\n" IDENT "DESCRIPTION:\n" IDENT2 "The " MLXLINK_EXEC " tool is used to check and debug link status and issues related to them.\n" IDENT2 "The tool can be used on different links and cables (passive, active, transceiver and backplane).\n"); printf("\n"); printf(IDENT "OPTIONS:\n"); MlxlinkRecord::printFlagLine(HELP_FLAG_SHORT, HELP_FLAG, "", "Display help message."); MlxlinkRecord::printFlagLine(VERSION_FLAG_SHORT, VERSION_FLAG, "", "Display version info."); MlxlinkRecord::printFlagLine(DEVICE_FLAG_SHORT, DEVICE_FLAG, "device", "Perform operation for a specified mst device"); MlxlinkRecord::printFlagLine(LABEL_PORT_FLAG_SHORT, LABEL_PORT_FLAG, "port_number", "Port Number"); MlxlinkRecord::printFlagLine(PORT_TYPE_FLAG_SHORT, PORT_TYPE_FLAG, "port_type", "Port Type [NETWORK(Default)/PCIE]"); MlxlinkRecord::printFlagLine(DEPTH_FLAG_SHORT, DEPTH_FLAG, "depth", "depth level of the DUT of some hierarchy (PCIE only)"); MlxlinkRecord::printFlagLine(PCIE_INDEX_FLAG_SHORT, PCIE_INDEX_FLAG, "pcie_index", "PCIe index number (Internal domain index) (PCIE only)"); MlxlinkRecord::printFlagLine(NODE_FLAG_SHORT, NODE_FLAG, "node", "the node within each depth (PCIE only)"); MlxlinkRecord::printFlagLine(PRINT_JSON_OUTPUT_FLAG_SHORT, PRINT_JSON_OUTPUT_FLAG, "", "Print the output in json format"); } void MlxlinkUi::printSynopsisQueries() { printf(IDENT "QUERIES:\n"); MlxlinkRecord::printFlagLine(PCIE_LINKS_FLAG_SHORT, PCIE_LINKS_FLAG, "", "Show valid PCIe links (PCIE only)"); MlxlinkRecord::printFlagLine(MODULE_INFO_FLAG_SHORT, MODULE_INFO_FLAG, "", "Show Module Info"); MlxlinkRecord::printFlagLine(BER_FLAG_SHORT, BER_FLAG, "", "Show Physical Counters and BER Info"); MlxlinkRecord::printFlagLine(EYE_OPENING_FLAG_SHORT, EYE_OPENING_FLAG, "", "Show Eye Opening Info"); MlxlinkRecord::printFlagLine(FEC_DATA_FLAG_SHORT, FEC_DATA_FLAG, "", "Show FEC Capabilities"); MlxlinkRecord::printFlagLine(SLTP_SHOW_FLAG_SHORT, SLTP_SHOW_FLAG, "", "Show Transmitter Info"); MlxlinkRecord::printFlagLine( SHOW_TX_GROUP_MAP_FLAG_SHORT, SHOW_TX_GROUP_MAP_FLAG, "group_num", "Display all label ports mapped to group (for Spectrum-2 and Quantum devices)"); MlxlinkRecord::printFlagLine(DEVICE_DATA_FLAG_SHORT, DEVICE_DATA_FLAG, "", "General Device Info"); MlxlinkRecord::printFlagLine(BER_MONITOR_INFO_FLAG_SHORT, BER_MONITOR_INFO_FLAG, "", "Show BER Monitor Info (not supported for HCA)"); MlxlinkRecord::printFlagLine(PEPC_SHOW_FLAG_SHORT, PEPC_SHOW_FLAG, "", "Show External PHY Info (for Ethernet switches only)"); } void MlxlinkUi::printSynopsisCommands() { printf(IDENT "COMMANDS:\n"); MlxlinkRecord::printFlagLine(PAOS_FLAG_SHORT, PAOS_FLAG, "port_state", "Configure Port State [UP(up)/DN(down)/TG(toggle)]"); MlxlinkRecord::printFlagLine( PTYS_FLAG_SHORT, PTYS_FLAG, "speeds", "Configure Speeds " "[NDR,HDR,EDR,FDR10,FDR,QDR,DDR,SDR,800G_8X,400G_4X,200G_2X,100G_1X,400G_8X,200G_4X,100G_2X," "50G_1X,100G,100G_4X,50G,50G_2X,25G,40G,10G,2.5G,1G]"); printf(IDENT); MlxlinkRecord::printFlagLine(PTYS_LINK_MODE_FORCE_FLAG_SHORT, PTYS_LINK_MODE_FORCE_FLAG, "", "Configure Link Mode Force (Disable AN)"); MlxlinkRecord::printFlagLine( PPLR_FLAG_SHORT, PPLR_FLAG, "loopback", "Configure Loopback Mode [NO(no loopback)/RM(phy remote Rx-to-Tx loopback)/PH(internal phy Tx-to-Rx " "loopback)/EX(external loopback connector needed)/LL(link layer local loopback)]"); MlxlinkRecord::printFlagLine( PPLM_FLAG_SHORT, PPLM_FLAG, "fec_override", "Configure FEC [AU(Auto)/NF(No-FEC)/FC(FireCode " "FEC)/RS(RS-FEC)/LL(LL-RS-FEC)/DF-RS(Interleaved_RS-FEC)/DF-LL(Interleaved_LL_RS-FEC)]"); printf(IDENT); MlxlinkRecord::printFlagLine(FEC_SPEED_FLAG_SHORT, FEC_SPEED_FLAG, "fec_speed", "Speed to Configure FEC " "[100G,56G,50G,40G,25G,10G,800G_8X,400G_4x,400G_8X,200G_2X,200G_4X,100G_2X,50G_1X," "100G_4X] (Default is Active Speed)"); MlxlinkRecord::printFlagLine(SLTP_SET_FLAG_SHORT, SLTP_SET_FLAG, "params", "Configure Transmitter Parameters. " "For 7nm devices (lane rate specifies the valid Parameters): " "[fir_pre3,fir_pre2,fir_pre1,fir_main,fir_post1], " "For 16nm devices: [pre2Tap,preTap,mainTap,postTap,m2lp,amp], " "For 28nm devices: [Pol,tap0,tap1,tap2,bias,preemp_mode]"); printf(IDENT); MlxlinkRecord::printFlagLine(LANE_FLAG_SHORT, LANE_FLAG, "transmitter_lane", "Transmitter Lane to Set (Optional - Default All Lanes)"); printf(IDENT); MlxlinkRecord::printFlagLine(DATABASE_FLAG_SHORT, DATABASE_FLAG, "", "Save Transmitter Configuration for Current Speed Permanently (Optional)"); printf(IDENT); MlxlinkRecord::printFlagLine( SLTP_TX_POLICY_FLAG_SHORT, SLTP_TX_POLICY_FLAG, "", "Set the parameters according to Data Base only, otherwise it will be set according to the best possible " "configuration chosen by the system (e.g. KR-startup) (Optional)"); MlxlinkRecord::printFlagLine(SET_TX_GROUP_MAP_FLAG_SHORT, SET_TX_GROUP_MAP_FLAG, "group_num", "Map ports to group (for Spectrum-2 and Quantum devices)"); printf(IDENT); MlxlinkRecord::printFlagLine(TX_GROUP_PORTS_FLAG_SHORT, TX_GROUP_PORTS_FLAG, "ports", "Ports to be mapped [1,2,3,4,...,128]"); MlxlinkRecord::printFlagLine(PRBS_MODE_FLAG_SHORT, PRBS_MODE_FLAG, "prbs_mode", "Physical Test Mode Configuration [EN(enable)/DS(disable)/TU(perform tuning)]"); printf(IDENT); MlxlinkRecord::printFlagLine(PPRT_PRBS_FLAG_SHORT, PPRT_PRBS_FLAG, "rx_prbs_mode", "RX PRBS Mode " "[PRBS31/PRBS23A/PRBS23B/PRBS23C/PRBS23D/PRBS7/PRBS11/PRBS11A/PRBS11B/PRBS11C/PRBS11D/" "PRBS9/IDLE/SQUARE_WAVEA/SQUARE_WAVEB/SQUARE_WAVEC/SQUARE_WAVED/PRBS13A/PRBS13B/" "PRBS13C/PRBS13D/SSPR/SSPRQ/LT_frames/PRBS15/PRBS28] (Optional - Default PRBS31)"); printf(IDENT); MlxlinkRecord::printFlagLine( PPTT_PRBS_FLAG_SHORT, PPTT_PRBS_FLAG, "tx_prbs_mode", "TX PRBS Mode " "[PRBS31/PRBS23A/PRBS23B/PRBS23C/PRBS23D/PRBS7/PRBS11/PRBS11A/PRBS11B/PRBS11C/PRBS11D/PRBS9/IDLE/SQUARE_WAVEA/" "SQUARE_WAVEB/SQUARE_WAVEC/SQUARE_WAVED/PRBS13A/PRBS13B/PRBS13C/PRBS13D/SSPR/SSPRQ/LT_frames/PRBS15/PRBS28/" "SQUARE_WAVE3,SQUARE_WAVE13,SQUARE_WAVE30] (Optional - Default PRBS31] (Optional - Default PRBS31)"); printf(IDENT); MlxlinkRecord::printFlagLine( PPRT_RATE_FLAG_SHORT, PPRT_RATE_FLAG, "rx_lane_rate", "RX Lane Rate " "[NDR,HDR,EDR,FDR10,FDR,QDR,DDR,SDR,800G_8X,400G_8X,200G_4X,100G_2X,50G_1X,100G,100G_4X,50G,50G_" "2X,25G,40G,10G,2.5G,1G] (Optional - Default 25G)"); printf(IDENT); MlxlinkRecord::printFlagLine( PPTT_RATE_FLAG_SHORT, PPTT_RATE_FLAG, "tx_lane_rate", "TX Lane Rate " "[NDR,HDR,EDR,FDR10,FDR,QDR,DDR,SDR,800G_8X,400G_8X,200G_4X,100G_2X,50G_1X,100G,100G_4X,50G,50G_" "2X,25G,40G,10G,2.5G,1G] (Optional - Default 25G)"); printf(IDENT); MlxlinkRecord::printFlagLine(PRBS_INVERT_TX_POL_FLAG_SHORT, PRBS_INVERT_TX_POL_FLAG, "", "PRBS TX polarity inversion (Optional - Default No Inversion)"); printf(IDENT); MlxlinkRecord::printFlagLine(PRBS_INVERT_RX_POL_FLAG_SHORT, PRBS_INVERT_RX_POL_FLAG, "", "PRBS RX polarity inversion (Optional - Default No Inversion)"); printf(IDENT); MlxlinkRecord::printFlagLine( PRBS_LANES_FLAG_SHORT, PRBS_LANES_FLAG, "lanes", "PRBS lanes to set (one or more lane separated by comma)[0,1,2,...,7] (Optional - Default all lanes)"); MlxlinkRecord::printFlagLine(BER_COLLECT_FLAG_SHORT, BER_COLLECT_FLAG, "csv_file", "Port Extended Information Collection [CSV File]"); MlxlinkRecord::printFlagLine(AMBER_COLLECT_FLAG_SHORT, AMBER_COLLECT_FLAG, "csv_file", "AmBER Port Extended Information Collection For 16nm Products and Later [CSV File]"); printf(IDENT); MlxlinkRecord::printFlagLine(BER_LIMIT_FLAG_SHORT, BER_LIMIT_FLAG, "limit_criteria", "BER Limit Criteria [Nominal(Default)/Corner/Drift] (Optional - Default Nominal)"); printf(IDENT); MlxlinkRecord::printFlagLine(ITERATION_FLAG_SHORT, ITERATION_FLAG, "iteration", "Iteration Number of BER Collection"); MlxlinkRecord::printFlagLine(PPCNT_CLEAR_FLAG_SHORT, PPCNT_CLEAR_FLAG, "", "Clear Counters"); MlxlinkRecord::printFlagLine(PEPC_SET_FLAG_SHORT, PEPC_SET_FLAG, "", "Set External PHY (for Ethernet switches only)"); printf(IDENT); MlxlinkRecord::printFlagLine(PEPC_FORCE_MODE_FLAG_SHORT, PEPC_FORCE_MODE_FLAG, "twisted_pair_force_mode", "Twisted Pair Force Mode [MA(Master)/SL(Slave)]"); MlxlinkRecord::printFlagLine(CABLE_FLAG_SHORT, CABLE_FLAG, "", "Perform operations on the cables"); printf(IDENT); MlxlinkRecord::printFlagLine(CABLE_DUMP_FLAG_SHORT, CABLE_DUMP_FLAG, "", "Dump cable pages in raw format"); printf(IDENT); MlxlinkRecord::printFlagLine(CABLE_DDM_FLAG_SHORT, CABLE_DDM_FLAG, "", "Get cable Digital Diagnostic Monitoring information"); printf(IDENT); MlxlinkRecord::printFlagLine(CABLE_READ_FLAG_SHORT, CABLE_READ_FLAG, "", "Perform read operation from specific page"); printf(IDENT2); MlxlinkRecord::printFlagLine(READ_LEN_FLAG_SHORT, READ_LEN_FLAG, "length", "Length of data to read in bytes (Optional - Default 1 byte)"); printf(IDENT2); MlxlinkRecord::printFlagLine(WRITE_PAGE_FLAG_SHORT, WRITE_PAGE_FLAG, "pageNum", "Specific page number to read/write"); printf(IDENT2); MlxlinkRecord::printFlagLine(WRITE_OFFSET_FLAG_SHORT, WRITE_OFFSET_FLAG, "offset", "Specific page offset to read/write"); printf(IDENT); MlxlinkRecord::printFlagLine(CABLE_WRITE_FLAG_SHORT, CABLE_WRITE_FLAG, "bytes", "Perform write operation with specific data (list of bytes, separated by ',')"); printf(IDENT2); MlxlinkRecord::printFlagLine(WRITE_PAGE_FLAG_SHORT, WRITE_PAGE_FLAG, "pageNum", "Specific page number to read/write"); printf(IDENT2); MlxlinkRecord::printFlagLine(WRITE_OFFSET_FLAG_SHORT, WRITE_OFFSET_FLAG, "offset", "Specific page offset to read/write"); printf(IDENT); MlxlinkRecord::printFlagLine(CABLE_PRBS_SELECT_SHORT, CABLE_PRBS_SELECT, "side", "Module PRBS test mode side selector [MEDIA, HOST]"); printf(IDENT2); MlxlinkRecord::printFlagLine(CABLE_PRBS_MODE_SHORT, CABLE_PRBS_MODE, "cmd", "Perform PRBS test mode on the Module [EN(Enable),DS(Disable)]"); printf(IDENT3); MlxlinkRecord::printFlagLine( CABLE_PRBS_GEN_PAT_SHORT, CABLE_PRBS_GEN_PAT, "pattern", "Set PRBS generator pattern [PRBS31(default),PRBS23,PRBS7,PRBS11,PRBS9,PRBS13,SSPR,SSPRQ]"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_GEN_SWAP_SHORT, CABLE_PRBS_GEN_SWAP, "", "Enable PAM4 MSB <-> LSB generator swapping (Optional)"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_GEN_INV_SHORT, CABLE_PRBS_GEN_INV, "", "Enable PRBS generator inversion (Optional)"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_GEN_LANES_SHORT, CABLE_PRBS_GEN_LANES, "lanes", "PRBS generator lanes to set (one or more lane separated by comma)[0,1,2,3,4,5,6,7] " "(Optional - Default all lanes)"); printf(IDENT3); MlxlinkRecord::printFlagLine( CABLE_PRBS_CH_PAT_SHORT, CABLE_PRBS_CH_PAT, "pattern", "Set PRBS checker pattern [PRBS31(default),PRBS23,PRBS7,PRBS11,PRBS9,PRBS13,SSPR,SSPRQ]"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_CH_SWAP_SHORT, CABLE_PRBS_CH_SWAP, "", "Enable PAM4 MSB <-> LSB checker swapping (Optional)"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_CH_INV_SHORT, CABLE_PRBS_CH_INV, "", "Enable PRBS checker inversion (Optional)"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_CH_LANES_SHORT, CABLE_PRBS_CH_LANES, "lanes", "PRBS checker lanes to set (one or more lane separated by comma)[0,1,2,3,4,5,6,7] " "(Optional - Default all lanes)"); printf(IDENT3); MlxlinkRecord::printFlagLine(CABLE_PRBS_LANE_RATE_SHORT, CABLE_PRBS_LANE_RATE, "rate", "Set PRBS checker and generator lane rate " "[HDR(50G)(default),1.25G,SDR(2.5G),10.3125G,FDR(14G),EDR(25G),NDR(100G)]"); printf(IDENT2); MlxlinkRecord::printFlagLine(CABLE_PRBS_SHOW_DIAG_SHORT, CABLE_PRBS_SHOW_DIAG, "", "Show PRBS diagnostic counters information"); printf(IDENT2); MlxlinkRecord::printFlagLine(CABLE_PRBS_CLEAR_DIAG_SHORT, CABLE_PRBS_CLEAR_DIAG, "", "Clear PRBS diagnostic counters"); MlxlinkRecord::printFlagLine(CABLE_DDM_FLAG_SHORT, CTRL_PARAM_FLAG, "", "Show Module Control Parameters"); printf(IDENT2); MlxlinkRecord::printFlagLine( CTRL_PARAM_TX_EQ_FLAG_SHORT, CTRL_PARAM_TX_EQ_FLAG, "value", "Set Module Tx Input Equalization in dB [NE(No Equalization),1,2,3,4,5,6,7,8,9,10,11,12]"); printf(IDENT2); MlxlinkRecord::printFlagLine(CTRL_PARAM_RX_EMPH_FLAG_SHORT, CTRL_PARAM_RX_EMPH_FLAG, "value", "Set Module RX Output Emphasis in dB. for CMIS, pre-emphasis value will be set " "[NE(No Equalization),0.5,1,1.5,2,2.5,3,3.5,4,5,6,7]"); printf(IDENT2); MlxlinkRecord::printFlagLine(CTRL_PARAM_RX_POST_EMPH_FLAG_SHORT, CTRL_PARAM_RX_POST_EMPH_FLAG, "value", "Set Module Rx Post Emphasis in dB [NE(No Equalization),1,2,3,4,5,6,7]"); printf(IDENT2); MlxlinkRecord::printFlagLine( CTRL_PARAM_RX_AMP_FLAG_SHORT, CTRL_PARAM_RX_AMP_FLAG, "value", "Set Module Rx Output Amplitude [0(100-400mV),1(300-600mV),2(400-800mV),3(600-1200mV)]"); MlxlinkRecord::printFlagLine(MARGIN_SCAN_FLAG_SHORT, MARGIN_SCAN_FLAG, "", "Read the SerDes eye margins per lane"); printf(IDENT); MlxlinkRecord::printFlagLine(EYE_MEASURE_TIME_FLAG_SHORT, EYE_MEASURE_TIME_FLAG, "time", "Measure time in seconds for single eye [10/30/60/90/120/240/480/600/900] (Optional - " "Default 60 for PCIe and 30 for Network ports)"); printf(IDENT); MlxlinkRecord::printFlagLine(EYE_SEL_FLAG_SHORT, EYE_SEL_FLAG, "eye_sel", "Eye selection for PAM4 [UP/MID/DOWN/ALL] (Optional - Default ALL)"); printf(IDENT); MlxlinkRecord::printFlagLine(LANE_INDEX_FLAG_SHORT, LANE_INDEX_FLAG, "lane_index", "Run eye for specific lane index (Optional - Default all lanes)"); MlxlinkRecord::printFlagLine(PREI_RX_ERR_INJ_FLAG_SHORT, PREI_RX_ERR_INJ_FLAG, "", "Enable the RX link deterioration"); printf(IDENT); MlxlinkRecord::printFlagLine(PREI_MIXER_OFFSET_0_SHORT, PREI_MIXER_OFFSET_0, "value", "Fine change to the center of the eye 0x0 to 0x7ff"); printf(IDENT); MlxlinkRecord::printFlagLine(PREI_MIXER_OFFSET_1_SHORT, PREI_MIXER_OFFSET_1, "value", "Coarse change to the center of the eye 0x0 to 0x3ff"); printf(IDENT); MlxlinkRecord::printFlagLine(PREI_SHOW_MIXERS_FLAG_SHORT, PREI_SHOW_MIXERS_FLAG, "", "Show mixer offset 0 and mixer offset 1"); MlxlinkRecord::printFlagLine(MPEINJ_PCIE_ERR_INJ_FLAG_SHORT, MPEINJ_PCIE_ERR_INJ_FLAG, "", "Start/show PCIe error injection"); printf(IDENT); MlxlinkRecord::printFlagLine(MPEINJ_ERR_TYPE_FLAG_SHORT, MPEINJ_ERR_TYPE_FLAG, "type", "PCIe error type [ABORT(0),BAD_DLLP_LCRC(1),BAD_TLP_LCRC(2),BAD_TLP_ECRC(3)," "ERR_MSG(4),MALFORMED_TLP(5),POISONED_TLP(6),UNEXPECTED_CPL(7),ACS_VIOLATION(8)," "SURPRISE_LINK_DOWN(9),RECEIVER_ERROR(10)]"); printf(IDENT); MlxlinkRecord::printFlagLine(MPEINJ_ERR_DURATION_FLAG_SHORT, MPEINJ_ERR_DURATION_FLAG, "duration", "Error duration, depend on the error type, refer to the UM for more info (Optional)"); printf(IDENT); MlxlinkRecord::printFlagLine(MPEINJ_INJ_DELAY_FLAG_SHORT, MPEINJ_INJ_DELAY_FLAG, "delay", "Delay in micro-seconds before applying the error (Optional)"); printf(IDENT); MlxlinkRecord::printFlagLine(MPEINJ_ERR_PARAMETERS_FLAG_SHORT, MPEINJ_ERR_PARAMETERS_FLAG, "params", "Comma-separated parameters for selected error type (param0,param1,param2,param3), " "refer to the UM for more info (Optional)"); printf(IDENT); MlxlinkRecord::printFlagLine(MPEINJ_DBDF_FLAG_SHORT, MPEINJ_DBDF_FLAG, "dbdf", "Destination bus device function, e.g af:00.0 (Optional used for specific error " "type)"); MlxlinkRecord::printFlagLine(PPHCR_FEC_HIST_FLAG_SHORT, PPHCR_FEC_HIST_FLAG, "", "Provide histogram of FEC errors. The result is divided to bins. " "Each bin is holding different number of errored bit within FEC protected block"); printf(IDENT); MlxlinkRecord::printFlagLine(PPHCR_SHOW_FEC_HIST_FLAG_SHORT, PPHCR_SHOW_FEC_HIST_FLAG, "", "Show FEC errors histograms"); printf(IDENT); MlxlinkRecord::printFlagLine(PPHCR_CLEAR_HISTOGRAM_FLAG_SHORT, PPHCR_CLEAR_HISTOGRAM_FLAG, "", "Clears FEC errors histograms"); MlxlinkRecord::printFlagLine(FORCE_YES_FLAG_SHORT, FORCE_YES_FLAG, "", "Non-interactive mode, answer yes to all questions"); } void MlxlinkUi::printSynopsis() { printSynopsisHeader(); printf("\n"); printSynopsisQueries(); printf("\n"); printSynopsisCommands(); } void MlxlinkUi::printHelp() { printSynopsis(); printf("\n"); printf(IDENT "Examples:\n"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "get info of , ", MLXLINK_EXEC " -d -p "); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "get info of , and BER Counters", MLXLINK_EXEC " -d -p -c"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "get info of , and Transmitter Parameters", MLXLINK_EXEC " -d -p --show_serdes_tx"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure Port State", MLXLINK_EXEC " -d -p --port_state UP"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure Port Speeds", MLXLINK_EXEC " -d -p --speeds 25G,50G,100G"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure FEC", MLXLINK_EXEC " -d -p --fec RS"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure Port for Physical Test Mode", MLXLINK_EXEC " -d -p --test_mode EN (--rx_prbs PRBS31 --rx_rate 25G --tx_prbs PRBS7 " "--tx_rate 10G)"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Perform PRBS Tuning", MLXLINK_EXEC " -d -p --test_mode TU"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Cable operations", MLXLINK_EXEC " -d --cable options"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Dump cable EEPROM pages", MLXLINK_EXEC " -d --cable --dump"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Get cable DDM info", MLXLINK_EXEC " -d --cable --ddm"); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Read from cable", MLXLINK_EXEC " -d --cable --read --page --offset --length "); printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Write to cable", MLXLINK_EXEC " -d --cable --write --page --offset "); if (_mlxlinkCommander->_userInput._advancedMode) { printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure Transmitter Parameters (on lane, to database)", MLXLINK_EXEC " -d -p --serdes_tx " ",,,,,,, " "(--serdes_tx_lane ) (--database)"); } else { printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure Transmitter Parameters (on lane, to database)", MLXLINK_EXEC " -d -p --serdes_tx " ",,,,, (--serdes_tx_lane " ") (--database)"); } printf(IDENT2 "%-40s: \n" IDENT3 "%s\n", "Configure Transmitter Parameters for 16nm devices", MLXLINK_EXEC " -d -p --serdes_tx ,,,,,"); } void MlxlinkUi::validateMandatoryParams() { if (_mlxlinkCommander->_device == "") { throw MlxRegException("Please provide a device name"); } if (_mlxlinkCommander->_userInput._links && _mlxlinkCommander->_userInput._portType != "PCIE") { throw MlxRegException("The --" PCIE_LINKS_FLAG " option is valid only with --port_type PCIE"); } if (_mlxlinkCommander->_userInput._links && (_mlxlinkCommander->_userInput._showEyeInfo || _mlxlinkCommander->_userInput._showSltp || _mlxlinkCommander->_userInput._showCounters || _mlxlinkCommander->_userInput._showSlrp)) { throw MlxRegException("No options allowed to use while querying --" PCIE_LINKS_FLAG); } if ((_mlxlinkCommander->_userInput._labelPort == 0) && (_mlxlinkCommander->_userInput._portType != "PCIE")) { throw MlxRegException("Please provide a valid port number"); } } void MlxlinkUi::validatePCIeParams() { bool dpnFlags = _mlxlinkCommander->_userInput._sendNode || _mlxlinkCommander->_userInput._sendDepth || _mlxlinkCommander->_userInput._sendPcieIndex; if (_mlxlinkCommander->_userInput._portType == "PCIE") { _mlxlinkCommander->_userInput._pcie = true; if (_mlxlinkCommander->_uniqueCmds) { throw MlxRegException("Command flags are not available for PCIE"); } if (_mlxlinkCommander->_networkCmds) { throw MlxRegException("FEC and Module Info flags are not available for PCIE"); } if (_mlxlinkCommander->_uniquePcieCmds > 1) { throw MlxRegException("Commands are mutually exclusive!"); } replace(_sendRegFuncMap.begin(), _sendRegFuncMap.end(), SHOW_PDDR, SHOW_PCIE); if (dpnFlags) { if (!(_mlxlinkCommander->_userInput._sendNode && _mlxlinkCommander->_userInput._sendDepth && _mlxlinkCommander->_userInput._sendPcieIndex)) { throw MlxRegException("The --depth, --pcie_index and --node must be specified for PCIE"); } else { _mlxlinkCommander->_userInput._sendDpn = true; } } if (_mlxlinkCommander->_userInput._portSpecified) { if (dpnFlags) { throw MlxRegException("For PCIE port, either port flag or depth, pcie_index and node flags should be " "specified"); } } } else if (dpnFlags) { throw MlxRegException("The --depth, --node and --pcie_index flags are valid only with --port_type PCIE"); } } void MlxlinkUi::validateGeneralCmdsParams() { if (_mlxlinkCommander->_uniqueCmds > 1) { throw MlxRegException("Commands are mutually exclusive!"); } if (isIn(SEND_PAOS, _sendRegFuncMap) && !checkPaosCmd(_mlxlinkCommander->_userInput._paosCmd)) { throw MlxRegException("Please provide a valid paos command [UP(up)/DN(down)/TG(toggle)]"); } if (!isIn(SEND_PPLM, _sendRegFuncMap) && _mlxlinkCommander->_userInput._speedFec != "") { throw MlxRegException("The --fec_speed flag is valid only with --fec flag"); } if (isIn(SEND_SLTP, _sendRegFuncMap)) { if (_mlxlinkCommander->_userInput._sltpLane && _mlxlinkCommander->_userInput._db) { throw MlxRegException("Lane and Database flags are mutually exclusive"); } } else if (_mlxlinkCommander->_userInput._sltpLane || _mlxlinkCommander->_userInput._db || _mlxlinkCommander->_userInput._txPolicy) { throw MlxRegException(LANE_FLAG ", --" DATABASE_FLAG " and --" SLTP_TX_POLICY_FLAG " flags are valid only with Configure Transmitter Parameters flag (--" SLTP_SET_FLAG ")"); } } void MlxlinkUi::validatePRBSParams() { bool prbsFlags = _mlxlinkCommander->_userInput._sendPprt || _mlxlinkCommander->_userInput._sendPptt || _mlxlinkCommander->_userInput._pprtRate != "" || _mlxlinkCommander->_userInput._pprtRate != "" || _mlxlinkCommander->_userInput._prbsTxInv || _mlxlinkCommander->_userInput._prbsRxInv || _mlxlinkCommander->_userInput._prbsLanesToSet.size() > 0; if (isIn(SEND_PRBS, _sendRegFuncMap)) { if (!checkPrbsCmd(_mlxlinkCommander->_userInput._prbsMode)) { throw MlxRegException("you must provide a valid PRBS test mode [DS/EN/TU]"); } if (_mlxlinkCommander->_userInput._prbsMode == "DS" || _mlxlinkCommander->_userInput._prbsMode == "TU") { if (prbsFlags) { throw MlxRegException("PRBS parameters flags valid only with PRBS Enable flag (--test_mode EN)"); } } } else if (prbsFlags) { // add check for lanes flag to work with PRBS and eye scan only throw MlxRegException("PRBS parameters flags valid only with PRBS Enable flag (--test_mode EN)"); } } void MlxlinkUi::validateModulePRBSParams() { if (!_mlxlinkCommander->_userInput.isPrbsSelProvided && (_mlxlinkCommander->_userInput.isPrbsModeProvided || _mlxlinkCommander->_userInput.isPrbsChProvided || _mlxlinkCommander->_userInput.isPrbsGenProvided || _mlxlinkCommander->_userInput.isPrbsShowDiagProvided || _mlxlinkCommander->_userInput.isPrbsClearDiagProvided)) { throw MlxRegException("Please select PRBS module side using --" CABLE_PRBS_SELECT " [MEDIA|HOST] flag!"); } if (!_mlxlinkCommander->_userInput.isPrbsModeProvided && (_mlxlinkCommander->_userInput.isPrbsChProvided || _mlxlinkCommander->_userInput.isPrbsGenProvided || !_mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_RATE].empty())) { throw MlxRegException("--" CABLE_PRBS_MODE " flag should be provided!"); } if (_mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_MODE] == "DS" && _mlxlinkCommander->_userInput.modulePrbsParams.size() > 2) { throw MlxRegException("PRBS module parameters flags are valid only with PRBS enable mode (--prbs_mode EN)"); } if (_mlxlinkCommander->_userInput.isPrbsModeProvided && (_mlxlinkCommander->_userInput.isPrbsShowDiagProvided || _mlxlinkCommander->_userInput.isPrbsClearDiagProvided)) { throw MlxRegException("PRBS Module Diagnostic info flags are not working while configuring the PRBS test " "mode!"); } if (_mlxlinkCommander->_userInput.isPrbsShowDiagProvided && _mlxlinkCommander->_userInput.isPrbsClearDiagProvided) { throw MlxRegException("are mutually exclusive, please select one command only"); } } void MlxlinkUi::validateSpeedAndCSVBerParams() { bool berCollect = isIn(SEND_BER_COLLECT, _sendRegFuncMap); bool amBerCollect = isIn(SEND_AMBER_COLLECT, _sendRegFuncMap); if (berCollect && amBerCollect) { throw MlxRegException("--" BER_COLLECT_FLAG " and --" AMBER_COLLECT_FLAG " " "are mutually exclusive, please select one command only"); } if (berCollect || amBerCollect) { if (!endsWith(_mlxlinkCommander->_userInput._csvBer, ".csv")) { throw MlxRegException("you must provide a valid .csv file"); } if (!checkTestMode(_mlxlinkCommander->_userInput._testMode)) { throw MlxRegException("Please provide a valid test mode [Nominal(Default)/Corner/Drift]"); } } else if (_mlxlinkCommander->_userInput._testMode != "Nominal") { throw MlxRegException("BER Limit Criteria flag is valid only with Port Information Collection flag (--bc)"); } if (isIn(SEND_PEPC, _sendRegFuncMap)) { if (!_mlxlinkCommander->_userInput._sendPepcForceMode) { throw MlxRegException("Please provide --twisted_pair_force_mode"); } if (_mlxlinkCommander->_userInput._sendPepcForceMode && !checkPepcForceMode(_mlxlinkCommander->_userInput._forceMode)) { throw MlxRegException("Please provide a valid twisted pair force mode [MA(Master)/SL(Slave)]"); } } else { if (_mlxlinkCommander->_userInput._sendPepcForceMode) { throw MlxRegException("Please provide --set_external_phy option to configure the twisted pair force mode"); } } if (_mlxlinkCommander->_linkModeForce && _mlxlinkCommander->_ptysSpeeds.size() != 1) { throw MlxRegException("--link_mode_force should receive exactly one speed using --speeds"); } } void MlxlinkUi::validateCableParams() { bool readWriteFlags = _mlxlinkCommander->_userInput._page >= 0 || _mlxlinkCommander->_userInput._offset >= 0 || _mlxlinkCommander->_userInput._len >= 0; bool prbsParamProvided = _mlxlinkCommander->_userInput.modulePrbsParams.size(); bool cablePrbsParamProvided = _mlxlinkCommander->_userInput.isPrbsSelProvided || prbsParamProvided; bool cableConfigParamProvided = _mlxlinkCommander->_userInput.isModuleConfigParamsProvided; bool paramSetProvided = _mlxlinkCommander->_userInput.configParamsToSet.size(); bool cableCommandProvided = _mlxlinkCommander->_userInput._dump || _mlxlinkCommander->_userInput._write || _mlxlinkCommander->_userInput._read || _mlxlinkCommander->_userInput._ddm || cablePrbsParamProvided || cableConfigParamProvided; if (!_mlxlinkCommander->_userInput._cable && (cableCommandProvided || readWriteFlags)) { throw MlxRegException("\"--" CABLE_FLAG "\" flag should be specified!"); } else if (_mlxlinkCommander->_userInput._cable) { if ((_mlxlinkCommander->_uniqueCableCmds > 1) || !cableCommandProvided) { throw MlxRegException("Please choose one of " CABLE_FLAG " operations!"); } if ((_mlxlinkCommander->_userInput._read || _mlxlinkCommander->_userInput._write) && (_mlxlinkCommander->_userInput._page == -1 || _mlxlinkCommander->_userInput._offset == -1)) { throw MlxRegException("\"--" WRITE_PAGE_FLAG "\" and \"--" WRITE_OFFSET_FLAG "\" flags should be specified!"); } if (!cableConfigParamProvided && paramSetProvided) { throw MlxRegException("--" CTRL_PARAM_FLAG " should be specified!"); } if (readWriteFlags) { if (!_mlxlinkCommander->_userInput._write && !_mlxlinkCommander->_userInput._read) { throw MlxRegException("Read or Write flag should be specified!"); } if (_mlxlinkCommander->_userInput._read) { if (_mlxlinkCommander->_userInput._len == -1) { _mlxlinkCommander->_userInput._len = 1; // default number of bytes to read } else if (_mlxlinkCommander->_userInput._len == 0) { throw MlxRegException("The length cannot be zero!"); } } else if (_mlxlinkCommander->_userInput._len >= 0) { throw MlxRegException("\"--" READ_LEN_FLAG "\" flag is working with read option only!"); } } } } void MlxlinkUi::validateTxGroupParams() { if (_mlxlinkCommander->_userInput._showGroup >= 0) { if (!_mlxlinkCommander->_userInput._labelPorts.empty()) { throw MlxRegException("\"--" TX_GROUP_PORTS_FLAG "\" flag is working with " SET_TX_GROUP_MAP_FLAG " only!"); } } if (_mlxlinkCommander->_userInput._setGroup >= 0 && _mlxlinkCommander->_userInput._showGroup >= 0) { throw MlxRegException("Choose one of operations!"); } if (_mlxlinkCommander->_userInput._setGroup >= 0) { if (_mlxlinkCommander->_userInput._labelPorts.empty()) { throw MlxRegException("\"--" TX_GROUP_PORTS_FLAG "\" should be specified!"); } } if (_mlxlinkCommander->_userInput._setGroup >= MAX_TX_GROUP_COUNT || _mlxlinkCommander->_userInput._showGroup >= MAX_TX_GROUP_COUNT) { throw MlxRegException("Tx group is invalid, it can be in range [0-9]!"); } if (_mlxlinkCommander->_userInput._setGroup == -1 && !_mlxlinkCommander->_userInput._labelPorts.empty()) { throw MlxRegException("\"--" SET_TX_GROUP_MAP_FLAG "\" should be specified!"); } } void MlxlinkUi::validateGradeScanParams() { if (_mlxlinkCommander->_userInput.eyeSelectSpecified) { if (_mlxlinkCommander->_userInput._portType == "PCIE") { throw MlxRegException(EYE_SEL_FLAG " flag is working with Network ports only!"); } } } void MlxlinkUi::validateErrInjParams() { bool errInjEnable = _mlxlinkCommander->_userInput.enableRxErrInj; bool showMixers = _mlxlinkCommander->_userInput.showMixers; bool mixerControl = _mlxlinkCommander->_userInput.mixerOffset0 >= 0 || _mlxlinkCommander->_userInput.mixerOffset1 >= 0; if ((errInjEnable) && ((!mixerControl && !showMixers) || (mixerControl && showMixers))) { throw MlxRegException("Please provide either mixers offset configuration, " "or show mixers option\n"); } if (!errInjEnable && (showMixers || mixerControl)) { throw MlxRegException(PREI_RX_ERR_INJ_FLAG " flag should be specified!"); } if (mixerControl) { if (_mlxlinkCommander->_userInput.mixerOffset0 > MAX_MIXER_OFFSET_0 || _mlxlinkCommander->_userInput.mixerOffset1 > MAX_MIXER_OFFSET_1) { char errMsg[64]; sprintf(errMsg, "For mixer_offset0 [0 to 0x%x] and mixer_offset1 [0 to 0x%x]", MAX_MIXER_OFFSET_0, MAX_MIXER_OFFSET_1); throw MlxRegException("Invalid mixer offset value, " + string(errMsg)); } } if (_mlxlinkCommander->_userInput.isPcieErrInjProvided) { if (!_mlxlinkCommander->_userInput._pcie) { throw MlxRegException("The PCIE error injection feature is applicable to the PCIe links only!"); } if (_mlxlinkCommander->_userInput.errorType.empty()) { if (_mlxlinkCommander->_userInput.errorDuration != -1 || !_mlxlinkCommander->_userInput.dbdf.empty() || _mlxlinkCommander->_userInput.injDelay != -1) { throw MlxRegException(MPEINJ_ERR_TYPE_FLAG " flag should be specified!"); } } } if (_mlxlinkCommander->_userInput.errorDuration != -1 || !_mlxlinkCommander->_userInput.dbdf.empty() || _mlxlinkCommander->_userInput.injDelay != -1 || !_mlxlinkCommander->_userInput.errorType.empty() || !_mlxlinkCommander->_userInput.parameters.empty()) { if (!_mlxlinkCommander->_userInput.isPcieErrInjProvided) { throw MlxRegException(MPEINJ_PCIE_ERR_INJ_FLAG " flag should be specified!"); } } } void MlxlinkUi::validatePortInfoParams() { if (_mlxlinkCommander->_userInput.enableFecHistogram && !_mlxlinkCommander->_userInput.showFecHistogram && !_mlxlinkCommander->_userInput.clearFecHistogram) { throw MlxRegException("Please provide one of FEC Histogram options: " "--" PPHCR_SHOW_FEC_HIST_FLAG " or --" PPHCR_CLEAR_HISTOGRAM_FLAG); } if (!_mlxlinkCommander->_userInput.enableFecHistogram && (_mlxlinkCommander->_userInput.showFecHistogram || _mlxlinkCommander->_userInput.clearFecHistogram)) { throw MlxRegException(PPHCR_FEC_HIST_FLAG " flag should be specified"); } if (_mlxlinkCommander->_userInput.showFecHistogram && _mlxlinkCommander->_userInput.clearFecHistogram) { throw MlxRegException("Options are mutually exclusive, please select one option only"); } } void MlxlinkUi::paramValidate() { validateMandatoryParams(); validatePCIeParams(); validateGeneralCmdsParams(); validatePRBSParams(); validateSpeedAndCSVBerParams(); validateCableParams(); validateModulePRBSParams(); validateTxGroupParams(); validateGradeScanParams(); validateErrInjParams(); validatePortInfoParams(); } void MlxlinkUi::initCmdParser() { AddOptions(DEVICE_FLAG, DEVICE_FLAG_SHORT, "MstDevice", "Mellanox mst device name"); AddOptions(HELP_FLAG, HELP_FLAG_SHORT, "", "Show help message and exit"); AddOptions(VERSION_FLAG, VERSION_FLAG_SHORT, "", "Show version and exit"); AddOptions(PORT_TYPE_FLAG, PORT_TYPE_FLAG_SHORT, "port_type", "Port Type"); AddOptions(DEPTH_FLAG, DEPTH_FLAG_SHORT, "depth", "depth"); AddOptions(PCIE_INDEX_FLAG, PCIE_INDEX_FLAG_SHORT, "pcie_index", "PCIe Index"); AddOptions(NODE_FLAG, NODE_FLAG_SHORT, "node", "node"); AddOptions(LABEL_PORT_FLAG, LABEL_PORT_FLAG_SHORT, "LabelPort", "Label Port"); AddOptions(PCIE_LINKS_FLAG, PCIE_LINKS_FLAG_SHORT, "", "Show valid PCIe links"); AddOptions(BER_FLAG, BER_FLAG_SHORT, "", "Show BER Info"); AddOptions(EYE_OPENING_FLAG, EYE_OPENING_FLAG_SHORT, "", "Show Eye Opening Info"); AddOptions(MODULE_INFO_FLAG, MODULE_INFO_FLAG_SHORT, "", "Show Module Info"); AddOptions(PPCNT_CLEAR_FLAG, PPCNT_CLEAR_FLAG_SHORT, "", "Clear PPCNT Counters"); AddOptions(DEVICE_DATA_FLAG, DEVICE_DATA_FLAG_SHORT, "", "Device Info"); AddOptions(BER_MONITOR_INFO_FLAG, BER_MONITOR_INFO_FLAG_SHORT, "", "Show BER Monitor Info"); AddOptions(PEPC_SHOW_FLAG, PEPC_SHOW_FLAG_SHORT, "", "Show External PHY Info"); AddOptions(PRINT_JSON_OUTPUT_FLAG, PRINT_JSON_OUTPUT_FLAG_SHORT, "", "Print the output in json format"); AddOptions(FEC_DATA_FLAG, FEC_DATA_FLAG_SHORT, "", "FEC Data"); AddOptions(PAOS_FLAG, PAOS_FLAG_SHORT, "PAOS", "Send PAOS"); AddOptions(PTYS_FLAG, PTYS_FLAG_SHORT, "PTYS", "Send PTYS"); AddOptions(PTYS_LINK_MODE_FORCE_FLAG, PTYS_LINK_MODE_FORCE_FLAG_SHORT, "", "Set Link Mode Force"); AddOptions(PPLM_FLAG, PPLM_FLAG_SHORT, "PPLM", "Send PPLM"); AddOptions(FEC_SPEED_FLAG, FEC_SPEED_FLAG_SHORT, "FECSPEED", "Send PPLM with Speed"); AddOptions(PPLR_FLAG, PPLR_FLAG_SHORT, "PPLR", "Send PPLR"); AddOptions(BER_COLLECT_FLAG, BER_COLLECT_FLAG_SHORT, "BERCollectFile", "BER Collection csv file"); AddOptions(AMBER_COLLECT_FLAG, AMBER_COLLECT_FLAG_SHORT, "AMBERCollectFile", "AMBER Collection csv file"); AddOptions(BER_LIMIT_FLAG, BER_LIMIT_FLAG_SHORT, "Mode", "Test Mode of Ber Collect (Nominal/Corner/Drift)"); AddOptions(ITERATION_FLAG, ITERATION_FLAG_SHORT, "Iteration", "Iteration of BER Collect"); AddOptions(PRBS_MODE_FLAG, PRBS_MODE_FLAG_SHORT, "PRBS", "Enable/Disable PRBS Test Mode"); AddOptions(PPRT_PRBS_FLAG, PPRT_PRBS_FLAG_SHORT, "PPRT", "PPRT Mode"); AddOptions(PPTT_PRBS_FLAG, PPTT_PRBS_FLAG_SHORT, "PPTT", "PPTT Mode"); AddOptions(PPRT_RATE_FLAG, PPRT_RATE_FLAG_SHORT, "PPRT_RATE", "PPRT Lane Rate"); AddOptions(PPTT_RATE_FLAG, PPTT_RATE_FLAG_SHORT, "PPTT_RATE", "PPTT Lane Rate"); AddOptions(PRBS_LANES_FLAG, PRBS_LANES_FLAG_SHORT, "lanes", "PRBS lanes to set"); AddOptions(PRBS_INVERT_TX_POL_FLAG, PRBS_INVERT_TX_POL_FLAG_SHORT, "", "PRBS TX polarity inversion"); AddOptions(PRBS_INVERT_RX_POL_FLAG, PRBS_INVERT_RX_POL_FLAG_SHORT, "", "PRBS RX polarity inversion"); AddOptions(CABLE_FLAG, CABLE_FLAG_SHORT, "", "Cable operations"); AddOptions(CABLE_DUMP_FLAG, CABLE_DUMP_FLAG_SHORT, "", "Dump cable EEPROM pages"); AddOptions(CABLE_DDM_FLAG, CABLE_DDM_FLAG_SHORT, "", "Show DDM information"); AddOptions(CABLE_WRITE_FLAG, CABLE_WRITE_FLAG_SHORT, "bytes", "Perform write operation"); AddOptions(CABLE_READ_FLAG, CABLE_READ_FLAG_SHORT, "", "Perform read operation"); AddOptions(WRITE_PAGE_FLAG, WRITE_PAGE_FLAG_SHORT, "pageNum", "Specify page number"); AddOptions(WRITE_OFFSET_FLAG, WRITE_OFFSET_FLAG_SHORT, "offset", "Specify page offset"); AddOptions(READ_LEN_FLAG, READ_LEN_FLAG_SHORT, "length", "Length of data to read in bytes"); AddOptions(CABLE_PRBS_SELECT, CABLE_PRBS_SELECT_SHORT, "side", ""); AddOptions(CABLE_PRBS_MODE, CABLE_PRBS_MODE_SHORT, "cmd", ""); AddOptions(CABLE_PRBS_GEN_PAT, CABLE_PRBS_GEN_PAT_SHORT, "pattern", ""); AddOptions(CABLE_PRBS_GEN_SWAP, CABLE_PRBS_GEN_SWAP_SHORT, "", ""); AddOptions(CABLE_PRBS_GEN_INV, CABLE_PRBS_GEN_INV_SHORT, "", ""); AddOptions(CABLE_PRBS_GEN_LANES, CABLE_PRBS_GEN_LANES_SHORT, "lanes", ""); AddOptions(CABLE_PRBS_CH_PAT, CABLE_PRBS_CH_PAT_SHORT, "pattern", ""); AddOptions(CABLE_PRBS_CH_SWAP, CABLE_PRBS_CH_SWAP_SHORT, "", ""); AddOptions(CABLE_PRBS_CH_INV, CABLE_PRBS_CH_INV_SHORT, "", ""); AddOptions(CABLE_PRBS_CH_LANES, CABLE_PRBS_CH_LANES_SHORT, "lanes", ""); AddOptions(CABLE_PRBS_LANE_RATE, CABLE_PRBS_LANE_RATE_SHORT, "rate", ""); AddOptions(CABLE_PRBS_SHOW_DIAG, CABLE_PRBS_SHOW_DIAG_SHORT, "", ""); AddOptions(CABLE_PRBS_CLEAR_DIAG, CABLE_PRBS_CLEAR_DIAG_SHORT, "", ""); AddOptions(CTRL_PARAM_FLAG, CTRL_PARAM_FLAG_SHORT, "", "Cable Control Params"); AddOptions(CTRL_PARAM_TX_EQ_FLAG, CTRL_PARAM_TX_EQ_FLAG_SHORT, "value", "TX Eq override"); AddOptions(CTRL_PARAM_RX_EMPH_FLAG, CTRL_PARAM_RX_EMPH_FLAG_SHORT, "value", "RX Emp override"); AddOptions(CTRL_PARAM_RX_POST_EMPH_FLAG, CTRL_PARAM_RX_POST_EMPH_FLAG_SHORT, "value", "RX post emp"); AddOptions(CTRL_PARAM_RX_AMP_FLAG, CTRL_PARAM_RX_AMP_FLAG_SHORT, "value", "RX Amp"); AddOptions(SHOW_TX_GROUP_MAP_FLAG, SHOW_TX_GROUP_MAP_FLAG_SHORT, "group_num", "Display all label ports mapped to group "); AddOptions(SET_TX_GROUP_MAP_FLAG, SET_TX_GROUP_MAP_FLAG_SHORT, "group_num", "Map ports to group "); AddOptions(TX_GROUP_PORTS_FLAG, TX_GROUP_PORTS_FLAG_SHORT, "ports", "Ports to be mapped [1,2,3,4,..,128]"); AddOptions(SLTP_SHOW_FLAG, SLTP_SHOW_FLAG_SHORT, "", "get SLTP"); AddOptions(SLTP_SET_FLAG, SLTP_SET_FLAG_SHORT, "set", "set SLTP"); AddOptions(SLTP_SET_ADVANCED_FLAG, SLTP_SET_ADVANCED_FLAG_SHORT, "", "set SLTP"); AddOptions(SLTP_TX_POLICY_FLAG, SLTP_TX_POLICY_FLAG_SHORT, "", "set TX Policy"); AddOptions(LANE_FLAG, LANE_FLAG_SHORT, "lane", "Lane"); AddOptions(DATABASE_FLAG, DATABASE_FLAG_SHORT, "", "DB"); AddOptions(GVMI_ADDRESS_FLAG, GVMI_ADDRESS_FLAG_SHORT, "gvmi", "GVMI"); AddOptions(PEPC_SET_FLAG, PEPC_SET_FLAG_SHORT, "", "set External PHY"); AddOptions(PEPC_FORCE_MODE_FLAG, PEPC_FORCE_MODE_FLAG_SHORT, "Twisted_Pair_Force_Mode", "Twisted Pair Force Mode"); AddOptions(MARGIN_SCAN_FLAG, MARGIN_SCAN_FLAG_SHORT, "", "Read the SerDes receive eye diagram for each lane"); AddOptions(EYE_MEASURE_TIME_FLAG, EYE_MEASURE_TIME_FLAG_SHORT, "time", "Max measure time in seconds for single eye diagram"); AddOptions(LANE_INDEX_FLAG, LANE_INDEX_FLAG_SHORT, "lane", "Run eye for specific lane"); AddOptions(EYE_SEL_FLAG, EYE_SEL_FLAG_SHORT, "eye_sel", "Run for specific eye"); AddOptions(FORCE_YES_FLAG, FORCE_YES_FLAG_SHORT, "", "Non-interactive mode, answer yes to all questions"); AddOptions(PREI_RX_ERR_INJ_FLAG, PREI_RX_ERR_INJ_FLAG_SHORT, "", "Get the RX link deterioration status"); AddOptions(PREI_MIXER_OFFSET_0, PREI_MIXER_OFFSET_0_SHORT, "value", "Eye centering control"); AddOptions(PREI_MIXER_OFFSET_1, PREI_MIXER_OFFSET_1_SHORT, "value", "Eye centering control"); AddOptions(PREI_SHOW_MIXERS_FLAG, PREI_SHOW_MIXERS_FLAG_SHORT, "", "Show mixers offset values"); AddOptions(MPEINJ_PCIE_ERR_INJ_FLAG, MPEINJ_PCIE_ERR_INJ_FLAG_SHORT, "", ""); AddOptions(MPEINJ_ERR_TYPE_FLAG, MPEINJ_ERR_TYPE_FLAG_SHORT, "type", ""); AddOptions(MPEINJ_ERR_DURATION_FLAG, MPEINJ_ERR_DURATION_FLAG_SHORT, "duration", ""); AddOptions(MPEINJ_INJ_DELAY_FLAG, MPEINJ_INJ_DELAY_FLAG_SHORT, "delay", ""); AddOptions(MPEINJ_DBDF_FLAG, MPEINJ_DBDF_FLAG_SHORT, "dbdf", ""); AddOptions(MPEINJ_ERR_PARAMETERS_FLAG, MPEINJ_ERR_PARAMETERS_FLAG_SHORT, "params", ""); AddOptions(PPHCR_FEC_HIST_FLAG, PPHCR_FEC_HIST_FLAG_SHORT, "", "Provide histogram of FEC errors"); AddOptions(PPHCR_SHOW_FEC_HIST_FLAG, PPHCR_SHOW_FEC_HIST_FLAG_SHORT, "", "Show FEC errors histograms"); AddOptions(PPHCR_CLEAR_HISTOGRAM_FLAG, PPHCR_CLEAR_HISTOGRAM_FLAG_SHORT, "", "Clears FEC errors histograms"); _cmdParser.AddRequester(this); } void MlxlinkUi::commandsCaller() { for (vector::iterator it = _sendRegFuncMap.begin(); it != _sendRegFuncMap.end(); it++) { switch (*it) { case SHOW_PDDR: _mlxlinkCommander->showPddr(); break; case SHOW_PCIE: _mlxlinkCommander->showPcie(); break; case SHOW_MODULE: _mlxlinkCommander->showModuleInfo(); break; case SHOW_BER: _mlxlinkCommander->showBer(); break; case SHOW_EYE: _mlxlinkCommander->showEye(); break; case SHOW_FEC: _mlxlinkCommander->showFEC(); break; case SHOW_SLTP: _mlxlinkCommander->showSltp(); break; case SHOW_DEVICE: _mlxlinkCommander->showDeviceData(); break; case SHOW_BER_MONITOR: _mlxlinkCommander->showBerMonitorInfo(); break; case SHOW_EXTERNAL_PHY: _mlxlinkCommander->showExternalPhy(); break; case SHOW_PCIE_LINKS: _mlxlinkCommander->showPcieLinks(); break; case SEND_BER_COLLECT: _mlxlinkCommander->collectBER(); break; case SEND_AMBER_COLLECT: _mlxlinkCommander->collectAMBER(); break; case SEND_PAOS: _mlxlinkCommander->sendPaos(); break; case SEND_PTYS: _mlxlinkCommander->sendPtys(); break; case SEND_PPLM: _mlxlinkCommander->sendPplm(); break; case SEND_PPLR: _mlxlinkCommander->sendPplr(); break; case SEND_PRBS: _mlxlinkCommander->handlePrbs(); break; case SEND_SLTP: _mlxlinkCommander->sendSltp(); break; case SEND_CLEAR_COUNTERS: _mlxlinkCommander->clearCounters(); break; case SEND_PEPC: _mlxlinkCommander->sendPepc(); break; case CABLE_SHOW_DUMP: _mlxlinkCommander->showCableDump(); break; case CABLE_SHOW_DDM: _mlxlinkCommander->showCableDDM(); break; case CABLE_EEPROM_WRITE: _mlxlinkCommander->writeCableEEPROM(); break; case CABLE_EEPROM_READ: _mlxlinkCommander->readCableEEPROM(); break; case SHOW_TX_GROUP_MAP: _mlxlinkCommander->showTxGroupMapping(); break; case SET_TX_GROUP_MAP: _mlxlinkCommander->setTxGroupMapping(); break; case GRADE_SCAN_ENABLE: _mlxlinkCommander->initEyeOpener(); break; case ERR_INJ_ENABLE: _mlxlinkCommander->handleRxErrInj(); break; case RS_FEC_HISTOGRAM: _mlxlinkCommander->initPortInfo(); break; case CABLE_PRBS_CMDS: _mlxlinkCommander->performModulePrbsCommands(); break; case CABLE_CTRL_PARM: _mlxlinkCommander->performControlParams(); break; case PCIE_ERROR_INJ: _mlxlinkCommander->handlePCIeErrInj(); break; default: break; } } } void MlxlinkUi::addCmd(OPTION_TYPE option) { if (!isIn(option, _sendRegFuncMap)) { _sendRegFuncMap.push_back(option); } } ParseStatus MlxlinkUi::HandleOption(string name, string value) { addCmd(SHOW_PDDR); if (name == PRINT_JSON_OUTPUT_FLAG) { MlxlinkRecord::jsonFormat = true; MlxlinkRecord::cOut = &cerr; MlxlinkRecord::stdOut = stderr; return PARSE_OK; } else if (name == HELP_FLAG) { printHelp(); return PARSE_OK_WITH_EXIT; } else if (name == VERSION_FLAG) { print_version_string(MLXLINK_EXEC, NULL); return PARSE_OK_WITH_EXIT; } else if (name == DEVICE_FLAG) { _mlxlinkCommander->_device = value; return PARSE_OK; } else if (name == MODULE_INFO_FLAG) { addCmd(SHOW_MODULE); _mlxlinkCommander->_networkCmds++; return PARSE_OK; } else if (name == BER_FLAG) { addCmd(SHOW_BER); _mlxlinkCommander->_userInput._showCounters = true; return PARSE_OK; } else if (name == PPCNT_CLEAR_FLAG) { addCmd(SEND_CLEAR_COUNTERS); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == EYE_OPENING_FLAG) { addCmd(SHOW_EYE); _mlxlinkCommander->_userInput._showEyeInfo = true; return PARSE_OK; } else if (name == SLTP_SHOW_FLAG) { addCmd(SHOW_SLTP); _mlxlinkCommander->_userInput._showSltp = true; return PARSE_OK; } else if (name == SLTP_SET_FLAG) { string sltpParamsLine = toUpperCase(value); std::vector sltpParams = _mlxlinkCommander->parseParamsFromLine(sltpParamsLine); _mlxlinkCommander->getSltpParamsFromVector(sltpParams); addCmd(SEND_SLTP); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == LANE_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), _mlxlinkCommander->_userInput._lane); _mlxlinkCommander->_userInput._sltpLane = true; return PARSE_OK; } else if (name == DATABASE_FLAG) { _mlxlinkCommander->_userInput._db = true; return PARSE_OK; } else if (name == SLTP_TX_POLICY_FLAG) { _mlxlinkCommander->_userInput._txPolicy = true; return PARSE_OK; } else if (name == GVMI_ADDRESS_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), _mlxlinkCommander->_userInput._gvmiAddress); return PARSE_OK; } else if (name == SLTP_SET_ADVANCED_FLAG) { _mlxlinkCommander->_userInput._advancedMode = true; return PARSE_OK; } else if (name == PORT_TYPE_FLAG) { _mlxlinkCommander->_userInput._portType = toUpperCase(value); return PARSE_OK; } else if (name == LABEL_PORT_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->handlePortStr(value); return PARSE_OK; } else if (name == DEPTH_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), _mlxlinkCommander->_userInput._depth); _mlxlinkCommander->_userInput._sendDepth = true; return PARSE_OK; } else if (name == PCIE_INDEX_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), _mlxlinkCommander->_userInput._pcieIndex); _mlxlinkCommander->_userInput._sendPcieIndex = true; return PARSE_OK; } else if (name == NODE_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), _mlxlinkCommander->_userInput._node); _mlxlinkCommander->_userInput._sendNode = true; return PARSE_OK; } else if (name == PCIE_LINKS_FLAG) { addCmd(SHOW_PCIE_LINKS); _mlxlinkCommander->_userInput._links = true; return PARSE_OK; } else if (name == DEVICE_DATA_FLAG) { addCmd(SHOW_DEVICE); return PARSE_OK; } else if (name == FEC_DATA_FLAG) { addCmd(SHOW_FEC); _mlxlinkCommander->_networkCmds++; return PARSE_OK; } else if (name == PAOS_FLAG) { addCmd(SEND_PAOS); _mlxlinkCommander->_userInput._paosCmd = toUpperCase(value); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == PTYS_FLAG) { addCmd(SEND_PTYS); _mlxlinkCommander->_ptysSpeeds = _mlxlinkCommander->parseParamsFromLine(toUpperCase(value)); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == PPLM_FLAG) { addCmd(SEND_PPLM); _mlxlinkCommander->_userInput._pplmFec = toUpperCase(value); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == FEC_SPEED_FLAG) { _mlxlinkCommander->_userInput._speedFec = toLowerCase(value); return PARSE_OK; } else if (name == PPLR_FLAG) { addCmd(SEND_PPLR); _mlxlinkCommander->_userInput._pplrLB = toUpperCase(value); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == PRBS_MODE_FLAG) { addCmd(SEND_PRBS); _mlxlinkCommander->_userInput._prbsMode = toUpperCase(value); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == PPRT_PRBS_FLAG) { _mlxlinkCommander->_userInput._sendPprt = true; _mlxlinkCommander->_userInput._pprtMode = toUpperCase(value); return PARSE_OK; } else if (name == PPTT_PRBS_FLAG) { _mlxlinkCommander->_userInput._sendPptt = true; _mlxlinkCommander->_userInput._ppttMode = toUpperCase(value); return PARSE_OK; } else if (name == PPRT_RATE_FLAG) { _mlxlinkCommander->_userInput._pprtRate = toUpperCase(value); return PARSE_OK; } else if (name == PPTT_RATE_FLAG) { _mlxlinkCommander->_userInput._ppttRate = toUpperCase(value); return PARSE_OK; } else if (name == PRBS_LANES_FLAG) { std::vector prbsLanesParams = _mlxlinkCommander->parseParamsFromLine(value); _mlxlinkCommander->getprbsLanesFromParams(prbsLanesParams); return PARSE_OK; } else if (name == PRBS_INVERT_TX_POL_FLAG) { _mlxlinkCommander->_userInput._prbsTxInv = true; return PARSE_OK; } else if (name == PRBS_INVERT_RX_POL_FLAG) { _mlxlinkCommander->_userInput._prbsRxInv = true; return PARSE_OK; } else if (name == BER_COLLECT_FLAG) { addCmd(SEND_BER_COLLECT); _mlxlinkCommander->_userInput._csvBer = value; return PARSE_OK; } else if (name == AMBER_COLLECT_FLAG) { addCmd(SEND_AMBER_COLLECT); _mlxlinkCommander->_userInput._csvBer = value; return PARSE_OK; } else if (name == BER_LIMIT_FLAG) { _mlxlinkCommander->_userInput._testMode = toUpperCase(value); return PARSE_OK; } else if (name == ITERATION_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), _mlxlinkCommander->_userInput._iteration); return PARSE_OK; } else if (name == BER_MONITOR_INFO_FLAG) { addCmd(SHOW_BER_MONITOR); return PARSE_OK; } else if (name == PEPC_SHOW_FLAG) { addCmd(SHOW_EXTERNAL_PHY); return PARSE_OK; } else if (name == PEPC_FORCE_MODE_FLAG) { _mlxlinkCommander->_userInput._sendPepcForceMode = true; _mlxlinkCommander->_userInput._forceMode = toUpperCase(value); return PARSE_OK; } else if (name == PEPC_AN_MODE_FLAG) { _mlxlinkCommander->_userInput._sendPepcANMode = true; _mlxlinkCommander->_userInput._anMode = toUpperCase(value); return PARSE_OK; } else if (name == PEPC_SET_FLAG) { addCmd(SEND_PEPC); _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == PTYS_LINK_MODE_FORCE_FLAG) { _mlxlinkCommander->_linkModeForce = true; return PARSE_OK; } else if (name == CABLE_FLAG) { _mlxlinkCommander->_userInput._cable = true; return PARSE_OK; } else if (name == CABLE_DUMP_FLAG) { _mlxlinkCommander->_userInput._dump = true; addCmd(CABLE_SHOW_DUMP); _mlxlinkCommander->_uniqueCableCmds++; return PARSE_OK; } else if (name == CABLE_DDM_FLAG) { _mlxlinkCommander->_userInput._ddm = true; addCmd(CABLE_SHOW_DDM); _mlxlinkCommander->_uniqueCableCmds++; return PARSE_OK; } else if (name == CABLE_WRITE_FLAG) { _mlxlinkCommander->_userInput._write = true; _mlxlinkCommander->_userInput._bytesToWrite = _mlxlinkCommander->parseParamsFromLine(value); addCmd(CABLE_EEPROM_WRITE); _mlxlinkCommander->_uniqueCableCmds++; return PARSE_OK; } else if (name == WRITE_PAGE_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput._page); return PARSE_OK; } else if (name == WRITE_OFFSET_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput._offset); return PARSE_OK; } else if (name == CABLE_READ_FLAG) { _mlxlinkCommander->_userInput._read = true; _mlxlinkCommander->_uniqueCableCmds++; addCmd(CABLE_EEPROM_READ); return PARSE_OK; } else if (name == READ_LEN_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput._len); return PARSE_OK; } else if (name == SHOW_TX_GROUP_MAP_FLAG) { addCmd(SHOW_TX_GROUP_MAP); _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput._showGroup); return PARSE_OK; } else if (name == SET_TX_GROUP_MAP_FLAG) { addCmd(SET_TX_GROUP_MAP); _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput._setGroup); return PARSE_OK; } else if (name == TX_GROUP_PORTS_FLAG) { _mlxlinkCommander->_userInput._labelPorts = _mlxlinkCommander->parseParamsFromLine(value); return PARSE_OK; } else if (name == MARGIN_SCAN_FLAG) { addCmd(GRADE_SCAN_ENABLE); _mlxlinkCommander->_uniquePcieCmds++; return PARSE_OK; } else if (name == EYE_MEASURE_TIME_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput.measureTime); return PARSE_OK; } else if (name == FORCE_YES_FLAG) { _mlxlinkCommander->_userInput.force = true; return PARSE_OK; } else if (name == LANE_INDEX_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput._lane); _mlxlinkCommander->_userInput.gradeScanPerLane = true; return PARSE_OK; } else if (name == EYE_SEL_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.eyeSelect = toUpperCase(value); _mlxlinkCommander->_userInput.eyeSelectSpecified = true; return PARSE_OK; } else if (name == PREI_RX_ERR_INJ_FLAG) { addCmd(ERR_INJ_ENABLE); _mlxlinkCommander->_userInput.enableRxErrInj = true; _mlxlinkCommander->_uniqueCmds++; return PARSE_OK; } else if (name == PREI_MIXER_OFFSET_0) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput.mixerOffset0); return PARSE_OK; } else if (name == PREI_MIXER_OFFSET_1) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput.mixerOffset1); return PARSE_OK; } else if (name == PREI_SHOW_MIXERS_FLAG) { _mlxlinkCommander->_userInput.showMixers = true; return PARSE_OK; } else if (name == PPHCR_FEC_HIST_FLAG) { addCmd(RS_FEC_HISTOGRAM); _mlxlinkCommander->_userInput.enableFecHistogram = true; return PARSE_OK; } else if (name == PPHCR_SHOW_FEC_HIST_FLAG) { _mlxlinkCommander->_userInput.showFecHistogram = true; return PARSE_OK; } else if (name == PPHCR_CLEAR_HISTOGRAM_FLAG) { _mlxlinkCommander->_userInput.clearFecHistogram = true; return PARSE_OK; } else if (name == CABLE_PRBS_SELECT) { addCmd(CABLE_PRBS_CMDS); _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_SELECT] = toUpperCase(value); _mlxlinkCommander->_userInput.isPrbsSelProvided = true; _mlxlinkCommander->_uniqueCableCmds++; return PARSE_OK; } else if (name == CABLE_PRBS_MODE) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_MODE] = toUpperCase(value); _mlxlinkCommander->_userInput.isPrbsModeProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_GEN_PAT) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_GEN_PAT] = toUpperCase(value); _mlxlinkCommander->_userInput.isPrbsGenProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_GEN_SWAP) { _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_GEN_SWAP] = "SWAP"; _mlxlinkCommander->_userInput.isPrbsGenProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_GEN_INV) { _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_GEN_INV] = "INV"; _mlxlinkCommander->_userInput.isPrbsGenProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_GEN_LANES) { _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_GEN_LANES] = value; _mlxlinkCommander->_userInput.isPrbsGenProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_CH_PAT) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_CH_PAT] = toUpperCase(value); _mlxlinkCommander->_userInput.isPrbsChProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_CH_SWAP) { _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_CH_SWAP] = "SWAP"; _mlxlinkCommander->_userInput.isPrbsChProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_CH_INV) { _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_CH_INV] = "INV"; _mlxlinkCommander->_userInput.isPrbsChProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_CH_LANES) { _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_CH_LANES] = value; _mlxlinkCommander->_userInput.isPrbsChProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_LANE_RATE) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_RATE] = toUpperCase(value); return PARSE_OK; } else if (name == CABLE_PRBS_SHOW_DIAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_SHOW_DIAG] = value; _mlxlinkCommander->_userInput.isPrbsShowDiagProvided = true; return PARSE_OK; } else if (name == CABLE_PRBS_CLEAR_DIAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.modulePrbsParams[MODULE_PRBS_CLEAR_DIAG] = value; _mlxlinkCommander->_userInput.isPrbsClearDiagProvided = true; return PARSE_OK; } else if (name == CTRL_PARAM_FLAG) { addCmd(CABLE_CTRL_PARM); _mlxlinkCommander->_userInput.isModuleConfigParamsProvided = true; return PARSE_OK; } else if (name == CTRL_PARAM_TX_EQ_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.configParamsToSet.push_back(make_pair(CABLE_CONTROL_PARAMETERS_SET_TX_EQ, value)); return PARSE_OK; } else if (name == CTRL_PARAM_RX_EMPH_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.configParamsToSet.push_back( make_pair(CABLE_CONTROL_PARAMETERS_SET_RX_EMPH, value)); return PARSE_OK; } else if (name == CTRL_PARAM_RX_POST_EMPH_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.configParamsToSet.push_back( make_pair(CABLE_CONTROL_PARAMETERS_SET_RX_POST_EMPH, value)); return PARSE_OK; } else if (name == CTRL_PARAM_RX_AMP_FLAG) { _mlxlinkCommander->checkStrLength(value); _mlxlinkCommander->_userInput.configParamsToSet.push_back(make_pair(CABLE_CONTROL_PARAMETERS_SET_RX_AMP, value)); return PARSE_OK; } else if (name == MPEINJ_PCIE_ERR_INJ_FLAG) { addCmd(PCIE_ERROR_INJ); _mlxlinkCommander->_userInput.isPcieErrInjProvided = true; _mlxlinkCommander->_uniquePcieCmds++; return PARSE_OK; } else if (name == MPEINJ_ERR_TYPE_FLAG) { _mlxlinkCommander->_userInput.errorType = toUpperCase(value); return PARSE_OK; } else if (name == MPEINJ_ERR_DURATION_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput.errorDuration); return PARSE_OK; } else if (name == MPEINJ_INJ_DELAY_FLAG) { _mlxlinkCommander->strToUint32((char*)value.c_str(), (u_int32_t&)_mlxlinkCommander->_userInput.injDelay); return PARSE_OK; } else if (name == MPEINJ_ERR_PARAMETERS_FLAG) { _mlxlinkCommander->_userInput.parameters = _mlxlinkCommander->parseParamsFromLine(value); return PARSE_OK; } else if (name == MPEINJ_DBDF_FLAG) { _mlxlinkCommander->_userInput.dbdf = value; return PARSE_OK; } return PARSE_ERROR; } int MlxlinkUi::run(int argc, char** argv) { int exit_code = 0; createMlxlinkCommander(); initCmdParser(); ParseStatus rc = _cmdParser.ParseOptions(argc, argv); if (rc == PARSE_OK_WITH_EXIT) { return exit_code; } else if ((rc == PARSE_ERROR) || (rc == PARSE_ERROR_SHOW_USAGE)) { throw MlxRegException("failed to parse arguments. " + string(_cmdParser.GetErrDesc())); } paramValidate(); _mlxlinkCommander->_mf = mopen(_mlxlinkCommander->_device.c_str()); if (!_mlxlinkCommander->_mf) { throw MlxRegException("Failed to open device: \"" + _mlxlinkCommander->_device + "\", " + strerror(errno)); } if (!MlxRegLib::isDeviceSupported(_mlxlinkCommander->_mf)) { throw MlxRegException("Device is not supported"); } MlxRegLib::isAccessRegisterSupported(_mlxlinkCommander->_mf); _mlxlinkCommander->_regLib = new MlxRegLib(_mlxlinkCommander->_mf, _mlxlinkCommander->_extAdbFile, _mlxlinkCommander->_useExtAdb); if (_mlxlinkCommander->_regLib->isIBDevice() && !_mlxlinkCommander->_regLib->isAccessRegisterGMPSupported(MACCESS_REG_METHOD_GET)) { MlxlinkRecord::printWar("Warning: AccessRegisterGMP Get() method is not supported.\n" " mlxlink has limited functionality", _mlxlinkCommander->_jsonRoot); } _mlxlinkCommander->_gvmiAddress = _mlxlinkCommander->_userInput._gvmiAddress; _mlxlinkCommander->_devID = _mlxlinkCommander->_regLib->getDevId(); _mlxlinkCommander->_isHCA = dm_dev_is_hca(_mlxlinkCommander->_devID); _mlxlinkCommander->labelToLocalPort(); _mlxlinkCommander->validatePortType(_mlxlinkCommander->_userInput._portType); if (!_mlxlinkCommander->_userInput._pcie) { _mlxlinkCommander->checkValidFW(); } _mlxlinkCommander->getProductTechnology(); if (!_mlxlinkCommander->_userInput._pcie) { _mlxlinkCommander->_prbsTestMode = _mlxlinkCommander->inPrbsTestMode(); _mlxlinkCommander->getCableParams(); } else if (!_mlxlinkCommander->_userInput._sendDpn) { _mlxlinkCommander->initValidDPNList(); } commandsCaller(); if (_mlxlinkCommander->_allUnhandledErrors != "") { exit_code = 1; if (!MlxlinkRecord::jsonFormat) { MlxlinkRecord::printErrorsSection(_mlxlinkCommander->_mlxlinkMaps->_showErrorsTitle, _mlxlinkCommander->_allUnhandledErrors); } } if (MlxlinkRecord::jsonFormat) { _mlxlinkCommander->prepareJsonOut(); cout << _mlxlinkCommander->_jsonRoot.toStyledString(); } cout << endl; return exit_code; } mstflint-4.26.0/mlxlink/modules/amber_field.h0000644000175000017500000000501514522641732021434 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef AMBER_FIELD_H #define AMBER_FIELD_H #include #include #include using namespace std; class AmberField { public: AmberField(const string& uiField, const string& uiValue, bool visible = true); AmberField(const string& uiField, const string& uiValue, u_int32_t fieldIndex, bool visible = true); ~AmberField(); friend bool operator<(const AmberField& first, const AmberField& second); friend ostream& operator<<(ostream& os, const AmberField& amberField); string getUiField() const; string getUiValue() const; u_int64_t getPrmValue() const; bool isVisible() const; u_int32_t getFieldIndex() const; static void reset(); static string getValueFromFields(const vector& fields, const string& uiField, bool matchUiField = true); static u_int32_t _lastFieldIndex; static bool _dataValid; private: u_int32_t _fieldIndex; string _prmReg; string _prmField; string _uiField; u_int64_t _prmValue; string _uiValue; string _fieldGroup; bool _visible; }; #endif /* AMBER_FIELD_H */ mstflint-4.26.0/mlxlink/modules/amber_field.cpp0000644000175000017500000001025314522641732021767 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "amber_field.h" #include "mlxlink_utils.h" #include "mlxlink_reg_parser.h" u_int32_t AmberField::_lastFieldIndex = 1; bool AmberField::_dataValid = true; AmberField::AmberField(const string& uiField, const string& uiValue, bool visible) : _uiField(uiField), _visible(visible) { _prmReg = ""; _prmField = ""; _prmValue = 0; _fieldGroup = ""; _uiValue = AmberField::_dataValid ? uiValue : "N/A"; if (visible) { _fieldIndex = _lastFieldIndex; _lastFieldIndex++; } else { _fieldIndex = 0; } findAndReplace(_uiValue, ",", "_"); } AmberField::AmberField(const string& uiField, const string& uiValue, u_int32_t fieldIndex, bool visible) : _uiField(uiField), _visible(visible) { _prmReg = ""; _prmField = ""; _fieldGroup = ""; _prmValue = 0; _uiValue = AmberField::_dataValid ? uiValue : "N/A"; _fieldIndex = fieldIndex; _lastFieldIndex = _fieldIndex + 1; findAndReplace(_uiValue, ",", "_"); } AmberField::~AmberField() {} string AmberField::getValueFromFields(const vector& fields, const string& uiField, bool matchUiField) { string value = ""; bool found = false; for (auto it = fields.begin(); it != fields.end(); it++) { if (it->getUiField().find(uiField) != string::npos) { if (matchUiField) { if (it->getUiField() == uiField) { value = it->getUiValue(); found = true; break; } } else { value += it->getUiValue() + "_"; found = true; } } } if (!found) { throw MlxRegException("Requested field does not exist: %s", uiField.c_str()); } if (!matchUiField) { value = deleteLastChar(value); } return value; } ostream& operator<<(ostream& os, const AmberField& amberField) { if (amberField._visible) { char fieldName[128]; sprintf(fieldName, "%-40s", amberField._uiField.c_str()); os << amberField._fieldIndex << "\t" << fieldName << "\t\"" << amberField._uiValue << "\""; } return os; } bool operator<(const AmberField& first, const AmberField& second) { return first._fieldIndex < second._fieldIndex; } string AmberField::getUiField() const { return _uiField; } string AmberField::getUiValue() const { return _uiValue; } u_int64_t AmberField::getPrmValue() const { return _prmValue; } bool AmberField::isVisible() const { return _visible; } u_int32_t AmberField::getFieldIndex() const { return _fieldIndex; } void AmberField::reset() { AmberField::_lastFieldIndex = 1; AmberField::_dataValid = true; } mstflint-4.26.0/mlxlink/modules/mlxlink_amBER_collector.cpp0000644000175000017500000026320614522641732024300 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mlxlink_amBER_collector.h" #include MlxlinkAmBerCollector::MlxlinkAmBerCollector(Json::Value& jsonRoot) : _jsonRoot(jsonRoot) { _pnat = 0; _localPort = 1; _labelPort = _localPort; _splitPort = 0; _secondSplit = 0; _numOfLanes = 0; _maxLanes = MAX_NETWORK_LANES; _csvFileName = ""; _mstDevName = ""; _iteration = 0; _testMode = "NOMINAL"; _depth = 0; _pcieIndex = 0; _node = 0; _protoActive = 0; _productTechnology = PRODUCT_16NM; _activeSpeed = 0; _devID = 0; _moduleIndex = 0; _slotIndex = 0; _isPortIB = false; _isPortETH = false; _isPortPCIE = false; _isMCMSysValid = false; _isGBSysValid = false; _isValidSensorMvcap = false; _isValidSensorMtcap = false; _isHca = false; _isCmisCable = false; _isQsfpCable = false; _isSfpCable = false; _cablePlugged = false; _inPRBSMode = false; _invalidate = false; _mlxlinkMaps = NULL; _baseSheetsList[AMBER_SHEET_GENERAL] = FIELDS_COUNT{4, 4, 4}; _baseSheetsList[AMBER_SHEET_INDEXES] = FIELDS_COUNT{2, 2, 4}; _baseSheetsList[AMBER_SHEET_LINK_STATUS] = FIELDS_COUNT{50, 143, 6}; _baseSheetsList[AMBER_SHEET_MODULE_STATUS] = FIELDS_COUNT{94, 110, 0}; _baseSheetsList[AMBER_SHEET_SYSTEM] = FIELDS_COUNT{16, 21, 11}; _baseSheetsList[AMBER_SHEET_SERDES_16NM] = FIELDS_COUNT{376, 736, 0}; _baseSheetsList[AMBER_SHEET_SERDES_7NM] = FIELDS_COUNT{182, 362, 406}; _baseSheetsList[AMBER_SHEET_PORT_COUNTERS] = FIELDS_COUNT{35, 0, 50}; _baseSheetsList[AMBER_SHEET_TROUBLESHOOTING] = FIELDS_COUNT{2, 2, 0}; _baseSheetsList[AMBER_SHEET_PHY_OPERATION_INFO] = FIELDS_COUNT{17, 17, 15}; _baseSheetsList[AMBER_SHEET_LINK_UP_INFO] = FIELDS_COUNT{9, 9, 0}; _baseSheetsList[AMBER_SHEET_LINK_DOWN_INFO] = FIELDS_COUNT{11, 14, 0}; _baseSheetsList[AMBER_SHEET_TEST_MODE_INFO] = FIELDS_COUNT{68, 136, 0}; _baseSheetsList[AMBER_SHEET_TEST_MODE_MODULE_INFO] = FIELDS_COUNT{70, 110, 0}; _baseSheetsList[AMBER_SHEET_PHY_DEBUG_INFO] = FIELDS_COUNT{4, 4, 0}; _baseSheetsList[AMBER_SHEET_EXT_MODULE_STATUS] = FIELDS_COUNT{76, 116, 0}; for_each(_baseSheetsList.begin(), _baseSheetsList.end(), [&](pair sheet) { _sheetsList.push_back({sheet.first, sheet.second}); }); } MlxlinkAmBerCollector::~MlxlinkAmBerCollector() {} void MlxlinkAmBerCollector::resetLocalParser(const string& regName) { #ifndef VALIDATE_REG_REQUEST AmberField::_dataValid = !_invalidate; #endif resetParser(regName); } void MlxlinkAmBerCollector::sendRegister(const string& regName, maccess_reg_method_t method) { try { if (AmberField::_dataValid) { genBuffSendRegister(regName, method); } } catch (MlxRegException& exc) { #ifdef VALIDATE_REG_REQUEST throw MlxRegException(regName + ": " + exc.what()); #else AmberField::_dataValid = false; #endif } } void MlxlinkAmBerCollector::sendLocalPrmReg(const string& regName, maccess_reg_method_t method, const char* fields, ...) { char fieldsCstr[MAX_FIELDS_BUFFER]; try { if (AmberField::_dataValid) { va_list args; va_start(args, fields); vsnprintf(fieldsCstr, MAX_FIELDS_BUFFER, fields, args); va_end(args); sendPrmReg(regName, method, fieldsCstr); } } catch (MlxRegException& exc) { #ifdef VALIDATE_REG_REQUEST throw MlxRegException(regName + ": " + exc.what()); #else AmberField::_dataValid = false; #endif } } void MlxlinkAmBerCollector::sendLocalPrmReg(const string& regName, maccess_reg_method_t method) { try { if (AmberField::_dataValid) { sendPrmReg(regName, method); } } catch (MlxRegException& exc) { #ifdef VALIDATE_REG_REQUEST throw MlxRegException(regName + ": " + exc.what()); #else AmberField::_dataValid = false; #endif } } string MlxlinkAmBerCollector::getLocalFieldStr(const string& fieldName) { string fieldVal = "N/A"; try { fieldVal = getFieldStr(fieldName); } catch (MlxRegException& exc) { #ifdef VALIDATE_REG_REQUEST throw MlxRegException(exc.what()); #endif } return fieldVal; } u_int32_t MlxlinkAmBerCollector::getLocalFieldValue(const string& fieldName) { u_int32_t fieldVal = 0; try { fieldVal = getFieldValue(fieldName); } catch (MlxRegException& exc) { #ifdef VALIDATE_REG_REQUEST throw MlxRegException(exc.what()); #endif } return fieldVal; } void MlxlinkAmBerCollector::startCollector() { if (_localPorts.empty()) { _localPorts.push_back(PortGroup(_localPort, _localPort, 0, 0)); } for (auto it = _localPorts.begin(); it != _localPorts.end(); it++) { _localPort = it->localPort; _labelPort = it->labelPort; _splitPort = it->split; _secondSplit = it->secondSplit; init(); collect(); exportToCSV(); _amberCollection.clear(); AmberField::reset(); } } void MlxlinkAmBerCollector::init() { try { _isPortPCIE = (_pnat == PNAT_PCIE); if (!_isPortPCIE) { resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_OPERATIONAL_INFO_PAGE); genBuffSendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); bool linkUp = getFieldValue("phy_mngr_fsm_state") == PHY_MNGR_ACTIVE_LINKUP; _protoActive = getFieldValue("proto_active"); _isPortIB = (_protoActive == IB) && (_pnat != PNAT_PCIE); _isPortETH = (_protoActive == ETH) && (_pnat != PNAT_PCIE); _maxLanes = MAX_NETWORK_LANES; if (_protoActive == IB) { _activeSpeed = getFieldValue("link_speed_active"); _numOfLanes = getFieldValue("link_width_active"); _maxLanes = MAX_IB_LANES; } else { if (linkUp) { resetParser(ACCESS_REG_PTYS); updateField("local_port", _localPort); updateField("proto_mask", _protoActive); genBuffSendRegister(ACCESS_REG_PTYS, MACCESS_REG_METHOD_GET); _activeSpeed = _productTechnology >= PRODUCT_16NM ? getFieldValue("ext_eth_proto_oper") : getFieldValue("eth_proto_oper"); _numOfLanes = _productTechnology >= PRODUCT_16NM ? _mlxlinkMaps->_ExtETHSpeed2Lanes[_activeSpeed] : _mlxlinkMaps->_ETHSpeed2Lanes[_activeSpeed]; } else { resetParser(ACCESS_REG_PMLP); updateField("local_port", _localPort); genBuffSendRegister(ACCESS_REG_PMLP, MACCESS_REG_METHOD_GET); _activeSpeed = 0; _numOfLanes = getFieldValue("width"); } } resetLocalParser(ACCESS_REG_PPAOS); updateField("local_port", _localPort); genBuffSendRegister(ACCESS_REG_PPAOS, MACCESS_REG_METHOD_GET); _inPRBSMode = getFieldValue("phy_test_mode_status") == 1; resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("pnat", PNAT_LOCAL); updateField("page_select", PDDR_MODULE_INFO_PAGE); genBuffSendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); u_int32_t cableType = getFieldValue("cable_type"); _cablePlugged = (cableType != UNIDENTIFIED) && (cableType != UNPLUGGED); resetLocalParser(ACCESS_REG_PMLP); updateField("local_port", _localPort); genBuffSendRegister(ACCESS_REG_PMLP, MACCESS_REG_METHOD_GET); _moduleIndex = getFieldValue("module_0"); _slotIndex = getFieldValue("slot_index_0"); resetLocalParser(ACCESS_REG_PMPT); updateField("module", _moduleIndex); updateField("slot_index", _slotIndex); updateField("host_media", 1); updateField("lane_mask", 0x1); sendRegister(ACCESS_REG_PMPT, MACCESS_REG_METHOD_GET); _moduleHostSt = getFieldValue("status"); resetLocalParser(ACCESS_REG_PMPT); updateField("module", _moduleIndex); updateField("slot_index", _slotIndex); updateField("host_media", 0); updateField("lane_mask", 0x1); sendRegister(ACCESS_REG_PMPT, MACCESS_REG_METHOD_GET); _moduleMediaSt = getFieldValue("status"); _inPRBSMode |= (_moduleHostSt >= PMPT_STATUS_GEN_ONLY || _moduleMediaSt >= PMPT_STATUS_GEN_ONLY); } else { resetParser(ACCESS_REG_MPEIN); updateField("pcie_index", _pcieIndex); updateField("depth", _depth); updateField("node", _node); genBuffSendRegister(ACCESS_REG_MPEIN, MACCESS_REG_METHOD_GET); _numOfLanes = getFieldValue("link_width_active"); _maxLanes = MAX_PCIE_LANES; } initAmberSheetsToDump(); } catch (...) { } } void MlxlinkAmBerCollector::initAmberSheetsToDump() { // Custom sheet\s dump if (!_sheetsToDump.empty()) { _sheetsList.clear(); for_each(_sheetsToDump.begin(), _sheetsToDump.end(), [&](AMBER_SHEET& sheet) { _sheetsList.push_back({sheet, _baseSheetsList[sheet]}); }); } } bool MlxlinkAmBerCollector::isGBValid() { return _isGBSysValid; } bool MlxlinkAmBerCollector::isMCMValid() { return _isMCMSysValid; } string MlxlinkAmBerCollector::getCurrentTimeStamp() { timeval curTime; gettimeofday(&curTime, NULL); int millis = curTime.tv_usec / 1000; char buffer[80]; std::time_t curTime_secs = curTime.tv_sec; strftime(buffer, 80, "%x-%X", localtime(&curTime_secs)); char currentTime[84] = ""; sprintf(currentTime, "%s.%03d", buffer, millis); return string(currentTime); } string MlxlinkAmBerCollector::getNodeGUID() { string strGuid; if (_isHca) { resetLocalParser(ACCESS_REG_PGUID); updateField("local_port", _localPort); sendRegister(ACCESS_REG_PGUID, MACCESS_REG_METHOD_GET); strGuid = getRawFieldValueStr("node_guid"); } else { char charGuid[64]; resetLocalParser(ACCESS_REG_SPZR); sendRegister(ACCESS_REG_SPZR, MACCESS_REG_METHOD_GET); sprintf(charGuid, "0x%llx", (unsigned long long)add32BitTo64(getFieldValue("node_guid_h"), getFieldValue("node_guid_l"))); strGuid = string(charGuid); } return strGuid.empty() ? "N/A" : strGuid; } string MlxlinkAmBerCollector::getMACAddress() { char charMac[64]; string strMac; string fieldName; if (_isHca) { resetLocalParser(ACCESS_REG_MGIR); sendRegister(ACCESS_REG_MGIR, MACCESS_REG_METHOD_GET); fieldName = "manufacturing_base_mac"; } else { resetLocalParser(ACCESS_REG_SPAD); sendRegister(ACCESS_REG_SPAD, MACCESS_REG_METHOD_GET); fieldName = "base_mac"; } sprintf(charMac, "0x%llx", (unsigned long long)add32BitTo64(getFieldValue(fieldName + "_47_32"), getFieldValue(fieldName + "_31_0"))); strMac = string(charMac); return strMac.empty() ? "N/A" : strMac; } vector MlxlinkAmBerCollector::getIndexesInfo() { vector fields; if (_isPortIB || _isPortPCIE) { fields.push_back(AmberField("Node_GUID", getNodeGUID())); } if (_isPortETH) { fields.push_back(AmberField("MAC_Address", getMACAddress())); } AmberField::_dataValid = true; string labelPortStr = to_string(_labelPort); if ((_splitPort && _splitPort != 1) || (_devID == DeviceQuantum2) || (_devID == DeviceQuantum3) || (_devID == DeviceBW00)) { /* For Quantum-2, the split notation will stand for the port in the cage * For other, only add the split notation if it's not 1 */ labelPortStr += "/" + to_string(_splitPort); } if ((_secondSplit && _secondSplit != 1) && ((_devID == DeviceQuantum2) || (_devID == DeviceQuantum3) || (_devID == DeviceBW00))) { labelPortStr += "/" + to_string(_secondSplit); } fields.push_back(AmberField("Port_Number", labelPortStr + "(" + to_string(_localPort) + ")", !_isPortPCIE)); fields.push_back(AmberField("depth", to_string(_depth), _isPortPCIE)); fields.push_back(AmberField("pcie_index", to_string(_pcieIndex), _isPortPCIE)); fields.push_back(AmberField("node", to_string(_node), _isPortPCIE)); return fields; } vector MlxlinkAmBerCollector::getGeneralInfo() { vector fields; AmberField::_dataValid = true; fields.push_back(AmberField("amBer_Version", AMBER_VERSION)); fields.push_back(AmberField("TimeStamp", getCurrentTimeStamp())); fields.push_back(AmberField("Iteration/Sweep", to_string(_iteration))); fields.push_back(AmberField("Test_Description", _testMode)); return fields; } vector MlxlinkAmBerCollector::getSystemInfo() { vector fields; try { string sysVol = "N/A"; string sysCur = "N/A"; string sensNameVoltage = "N/A"; string sensNameTemp = "N/A"; string temp = "N/A"; fields.push_back(AmberField("Device_Description", _mstDevName.c_str())); resetLocalParser(ACCESS_REG_MSGI); sendRegister(ACCESS_REG_MSGI, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("Device_Part_Number", getAscii("part_number", 20))); resetLocalParser(ACCESS_REG_MGIR); sendRegister(ACCESS_REG_MGIR, MACCESS_REG_METHOD_GET); string fwVersion = getFieldStr("extended_major") + "." + getFieldStr("extended_minor") + "." + getFieldStr("extended_sub_minor"); string tech = _mlxlinkMaps->_tech[getFieldValue("technology")]; fields.push_back(AmberField("Device_FW_Version", fwVersion)); resetLocalParser(ACCESS_REG_MDIR); sendRegister(ACCESS_REG_MDIR, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("Device_ID", getRawFieldValueStr("device_id"))); fields.push_back(AmberField("SerDes_Technology_(16nm/7nm_5nm)", tech)); resetLocalParser(ACCESS_REG_MVCAP); sendRegister(ACCESS_REG_MVCAP, MACCESS_REG_METHOD_GET); _isValidSensorMvcap = getFieldValue("sensor_map_lo") & 0x1; if (_isValidSensorMvcap) { resetLocalParser(ACCESS_REG_MVCR); sendRegister(ACCESS_REG_MVCR, MACCESS_REG_METHOD_GET); sysVol = to_string(getFieldValue("voltage_sensor_value") * 0.01) + "V"; sysCur = getFieldStr("current_sensor_value"); sensNameVoltage = getFullString(add32BitTo64(getFieldValue("sensor_name_hi"), getFieldValue("sensor_name_lo"))); } fields.push_back(AmberField("System_Voltage", sysVol)); fields.push_back(AmberField("System_Current", sysCur)); fields.push_back(AmberField("Voltage/Current_sensor_name", sensNameVoltage)); resetLocalParser(ACCESS_REG_MTCAP); sendRegister(ACCESS_REG_MTCAP, MACCESS_REG_METHOD_GET); _isValidSensorMtcap = getFieldValue("sensor_map_lo") & 0x1; if (_isValidSensorMtcap) { resetLocalParser(ACCESS_REG_MTMP); sendRegister(ACCESS_REG_MTMP, MACCESS_REG_METHOD_GET); temp = getTemp(getFieldValue("temperature"), 8); sensNameTemp = getFullString(add32BitTo64(getFieldValue("sensor_name_hi"), getFieldValue("sensor_name_lo"))); } fields.push_back(AmberField("Chip_Temp", temp)); resetLocalParser(ACCESS_REG_MSGI); sendRegister(ACCESS_REG_MSGI, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("Device_SN", getAscii("serial_number", 24))); fields.push_back(AmberField("Temp_sensor_name", sensNameTemp)); resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_MODULE_INFO_PAGE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("Module_Temp", getTemp(getFieldValue("temperature")), !_isPortPCIE)); } catch (const std::exception& exc) { throw MlxRegException("Failed to get Device information: %s", exc.what()); } return fields; } string MlxlinkAmBerCollector::getClRawBer() { double rawBerCoef = getFieldValue("raw_ber_coef"); double rawBerMag = getFieldValue("raw_ber_magnitude"); double rawBer = rawBerCoef * std::pow(10, -rawBerMag); double timeSinceLinkUp = ((double)add32BitTo64(getFieldValue("time_since_last_clear_high"), getFieldValue("time_since_last_clear_low"))) / 1000.0; double activeRate = _protoActive == IB ? _mlxlinkMaps->_IBSpeed2gNum[_activeSpeed] : _mlxlinkMaps->_EthExtSpeed2gNum[_activeSpeed]; double rateBerLane = (activeRate / _numOfLanes) * pow(10.0, 9); double clBer = 0; char clBerStr[128]; if (activeRate) { clBer = 1 - exp(-1 * rateBerLane * timeSinceLinkUp * rawBer); } sprintf(clBerStr, "%.1E", clBer); return string(clBerStr); } vector MlxlinkAmBerCollector::getPhyOperationInfo() { vector fields; try { resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_OPERATIONAL_INFO_PAGE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); string phyManagerLinkEnabledStr = "N/A"; string coreToPhyLinkEnabledStr = "N/A"; string cableProtoCapStr = "N/A"; fields.push_back(AmberField("eth_an_fsm_state", _mlxlinkMaps->_ethANFsmState[getFieldValue("eth_an_fsm_" "state")], !_isPortPCIE)); fields.push_back(AmberField("ib_phy_fsm_state", _mlxlinkMaps->_ibPhyFsmState[getFieldValue("ib_phy_fsm_" "state")], !_isPortPCIE)); if (_isPortIB) { phyManagerLinkEnabledStr = getStrByMask(getFieldValue("phy_manager_link_proto_enabled"), _mlxlinkMaps->_IBSpeed2Str); coreToPhyLinkEnabledStr = getStrByMask(getFieldValue("core_to_phy_link_proto_enabled"), _mlxlinkMaps->_IBSpeed2Str); cableProtoCapStr = getStrByMask(getFieldValue("cable_link_speed_cap"), _mlxlinkMaps->_IBSpeed2Str); } else if (_isPortETH) { phyManagerLinkEnabledStr = getStrByMask(getFieldValue("phy_manager_link_eth_enabled"), _mlxlinkMaps->_EthExtSpeed2Str); coreToPhyLinkEnabledStr = getStrByMask(getFieldValue("core_to_phy_link_eth_enabled"), _mlxlinkMaps->_EthExtSpeed2Str); cableProtoCapStr = getStrByMask(getFieldValue("cable_ext_eth_proto_cap"), _mlxlinkMaps->_EthExtSpeed2Str); } fields.push_back(AmberField("phy_manager_link_enabled", phyManagerLinkEnabledStr, !_isPortPCIE)); fields.push_back(AmberField("core_to_phy_link_enabled", coreToPhyLinkEnabledStr, !_isPortPCIE)); fields.push_back(AmberField("cable_proto_cap", cableProtoCapStr, !_isPortPCIE)); u_int32_t phyMngrFsmState = getFieldValue("phy_mngr_fsm_state"); string loopbackMode = (phyMngrFsmState != PHY_MNGR_DISABLED) ? _mlxlinkMaps->_loopbackModeList[getFieldValue("loopback_mode")].second : "-1"; u_int32_t fecModeRequest = (u_int32_t)log2((float)getFieldValue("fec_mode_request")); fields.push_back(AmberField("loopback_mode", loopbackMode, !_isPortPCIE)); fields.push_back(AmberField("fec_mode_request", _mlxlinkMaps->_fecModeActive[fecModeRequest], !_isPortPCIE)); if (_isPortPCIE) { resetLocalParser(ACCESS_REG_MPEIN); updateField("depth", _depth); updateField("pcie_index", _pcieIndex); updateField("node", _node); sendRegister(ACCESS_REG_MPEIN, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("link_width_enabled", getFieldStr("link_width_enabled") + "x")); fields.push_back(AmberField("link_speed_enabled", pcieSpeedStr(getFieldValue("link_speed_enabled")))); fields.push_back(AmberField("lane0_physical_position", getFieldStr("lane0_physical_position"))); fields.push_back(AmberField("num_of_pfs", getFieldStr("num_of_pfs"))); fields.push_back(AmberField("num_of_vfs", getFieldStr("num_of_vfs"))); fields.push_back(AmberField("bdf0", getFieldStr("bdf0"))); fields.push_back(AmberField("max_read_request_size", _mlxlinkMaps->_maxReadReqSize[getFieldValue("max_read_request_size")])); fields.push_back(AmberField("max_payload_size", _mlxlinkMaps->_maxReadReqSize[getFieldValue("max_payload_" "size")])); fields.push_back(AmberField("pwr_status", _mlxlinkMaps->_pwrStatus[getFieldValue("pwr_status")])); fields.push_back(AmberField("port_type", _mlxlinkMaps->_portType[getFieldValue("port_type")])); fields.push_back( AmberField("link_peer_max_speed", _mlxlinkMaps->_linkPeerMaxSpeed[getFieldValue("link_peer_max_speed")])); fields.push_back(AmberField("pci_power", getFieldStr("pci_power") + 'W')); fields.push_back( AmberField("device_status", getStrByMask(getFieldValue("device_status"), _mlxlinkMaps->_pcieDevStatus))); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get Phy Operation status: %s", exc.what()); } return fields; } string MlxlinkAmBerCollector::getBerAndErrorTitle(u_int32_t portType) { string title = ""; if (portType) { title = "N/A"; } return title; } void MlxlinkAmBerCollector::getPpcntBer(u_int32_t portType, vector& fields) { resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("lp_gl", (u_int32_t)(_localPort == 255)); if (portType != NETWORK_PORT_TYPE && !_isHca) { updateField("port_type", portType); } updateField("grp", PPCNT_STATISTICAL_GROUP); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); string preTitle = getBerAndErrorTitle(portType); string berStr = to_string(getFieldValue("raw_ber_coef")) + "E-" + to_string(getFieldValue("raw_ber_magnitude")); string confLevelStr = preTitle + "Conf_Level_Raw_BER"; if (portType == NETWORK_PORT_TYPE_MAIN_USR || portType == NETWORK_PORT_TYPE_TILE_USR) { confLevelStr = "Conf_Level_" + preTitle + "Raw_BER"; } fields.push_back(AmberField(confLevelStr, getClRawBer())); fields.push_back(AmberField(preTitle + "Raw_BER", berStr)); berStr = to_string(getFieldValue("effective_ber_coef")) + "E-" + to_string(getFieldValue("effective_ber_magnitude")); fields.push_back(AmberField(preTitle + "Effective_BER", berStr)); if (_isPortETH && (portType == NETWORK_PORT_TYPE_NEAR || portType == NETWORK_PORT_TYPE_FAR)) { string effErrorsStr = to_string( add32BitTo64(getFieldValue("phy_effective_errors_high"), getFieldValue("phy_effective_errors_low"))); fields.push_back(AmberField(preTitle + "Effective_Errors", effErrorsStr)); } if (portType != NETWORK_PORT_TYPE || (portType == NETWORK_PORT_TYPE && _isPortIB)) { berStr = getLocalFieldStr("symbol_ber_coef") + "E-" + getLocalFieldStr("symbol_ber_magnitude"); fields.push_back(AmberField(preTitle + "Symbol_BER", berStr)); if (portType != NETWORK_PORT_TYPE) { u_int64_t symErrors = add32BitTo64(getFieldValue("phy_symbol_errors_high"), getFieldValue("phy_symbol_errors_low")); fields.push_back(AmberField(preTitle + "Symbol_Errors", to_string(symErrors))); } } } vector MlxlinkAmBerCollector::getLinkStatus() { vector fields; try { if (!_isPortPCIE) { // Getting link status fields for IB and ETH ports resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_OPERATIONAL_INFO_PAGE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("Phy_Manager_State", _mlxlinkMaps->_pmFsmState[getFieldValue("phy_mngr_fsm_" "state")])); fields.push_back(AmberField("Protocol", _mlxlinkMaps->_networkProtocols[_protoActive])); resetLocalParser(ACCESS_REG_PTYS); updateField("local_port", _localPort); updateField("proto_mask", _protoActive); sendRegister(ACCESS_REG_PTYS, MACCESS_REG_METHOD_GET); float dataRate = ((float)getFieldValue("data_rate_oper")) * 0.1; char dataRateStr[64]; sprintf(dataRateStr, "%.2f", dataRate); u_int32_t ethLinkActive = getFieldValue("ext_eth_proto_oper"); fields.push_back(AmberField("Speed_[Gb/s]", string(dataRateStr))); fields.push_back(AmberField("Ethernet_Protocol_Active", ethLinkActive ? _mlxlinkMaps->_EthExtSpeed2Str[ethLinkActive] : "N/A", _isPortETH)); resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_OPERATIONAL_INFO_PAGE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); string linkSpeedActive = SupportedSpeeds2Str(IB, getFieldValue("link_speed_active"), true); fields.push_back( AmberField("Link_Speed_Active", linkSpeedActive.empty() ? "N/A" : linkSpeedActive, _isPortIB)); fields.push_back( AmberField("Link_Width_Active", linkWidthMaskToStr(getFieldValue("link_width_active")), _isPortIB)); fields.push_back(AmberField("Active_FEC", _mlxlinkMaps->_fecModeActive[getFieldValue("fec_mode_active")])); string roundTripLatency = "N/A"; try { resetLocalParser(ACCESS_REG_PRTL); updateField("local_port", _localPort); sendRegister(ACCESS_REG_PRTL, MACCESS_REG_METHOD_GET); roundTripLatency = getFieldStr("round_trip_latency"); } catch (MlxRegException& exc) { } fields.push_back(AmberField("round_trip_latency", roundTripLatency, _isPortIB)); } else { // Getting link info for PCIE resetLocalParser(ACCESS_REG_MPEIN); updateField("depth", _depth); updateField("pcie_index", _pcieIndex); updateField("node", _node); sendRegister(ACCESS_REG_MPEIN, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("pci_link_speed_active", pcieSpeedStr(getFieldValue("link_speed_active")))); fields.push_back(AmberField("pci_link_width_active", to_string(getFieldValue("link_width_active")) + "x")); } if (!_isPortPCIE) { resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_STATISTICAL_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); float lastClear = (float)add32BitTo64(getFieldValue("time_since_last_clear_high"), getFieldValue("time_since_last_clear_low")) / 60000.0; char timeFrmt[64]; sprintf(timeFrmt, "%.1f", lastClear); fields.push_back(AmberField("Time_since_last_clear_[Min]", string(timeFrmt))); getPpcntBer(NETWORK_PORT_TYPE, fields); u_int32_t numOfBins = 0; bool skipBinLimit = false; try { resetLocalParser(ACCESS_REG_PPHCR); updateField("local_port", _localPort); genBuffSendRegister(ACCESS_REG_PPHCR, MACCESS_REG_METHOD_GET); numOfBins = getFieldValue("num_of_bins"); } catch (...) { skipBinLimit = true; } // Getting histogram info for ETH and IB only resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_HISTOGRAM_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); vector histPerLane; u_int64_t histBin = 0; string val = ""; int firstZeroHist = -1; for (u_int32_t idx = 0; idx < NUM_OF_BINS; idx++) { val = "N/A"; if (idx < numOfBins || (skipBinLimit || !numOfBins)) { histBin = add32BitTo64(getFieldValue("hist[" + to_string(idx) + "]_hi"), getFieldValue("hist[" + to_string(idx) + "]_lo")); val = to_string(histBin); if (!histBin && firstZeroHist < 0) { firstZeroHist = idx; } } histPerLane.push_back(val); } fields.push_back(AmberField("FC_Zero_Hist", firstZeroHist >= 0 ? to_string(firstZeroHist) : "N/A")); fields.push_back(AmberField("Number_of_histogram_bins", to_string(numOfBins))); for (u_int32_t idx = 0; idx < NUM_OF_BINS; idx++) { fields.push_back(AmberField("hist" + to_string(idx), histPerLane[idx])); } // Getting raw errors per lane for ETH and IB only resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_STATISTICAL_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); u_int64_t rawError = 0; for (u_int32_t lane = 0; lane < MAX_NETWORK_LANES; lane++) { val = "N/A"; if (lane < _numOfLanes) { rawError = add32BitTo64(getFieldValue("phy_raw_errors_lane" + to_string(lane) + "_high"), getFieldValue("phy_raw_errors_lane" + to_string(lane) + "_low")); val = to_string(rawError); } fields.push_back(AmberField("Raw_Errors_lane" + to_string(lane), val)); } resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_STATISTICAL_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); string effErrorsStr = to_string( add32BitTo64(getFieldValue("phy_effective_errors_high"), getFieldValue("phy_effective_errors_low"))); fields.push_back(AmberField("Effective_Errors", effErrorsStr)); u_int64_t symErrors = add32BitTo64(getFieldValue("phy_symbol_errors_high"), getFieldValue("phy_symbol_errors_low")); fields.push_back(AmberField("Symbol_Errors", to_string(symErrors))); } else { // Getting link errors info for PCIE resetLocalParser(ACCESS_REG_MPCNT); updateField("depth", _depth); updateField("pcie_index", _pcieIndex); updateField("node", _node); updateField("grp", MPCNT_PERFORMANCE_GROUP); sendRegister(ACCESS_REG_MPCNT, MACCESS_REG_METHOD_GET); string berStr = to_string(getFieldValue("effective_ber_coef")) + "E-" + to_string(getFieldValue("effective_ber_magnitude")); fields.push_back(AmberField("effective_ber_pci", berStr)); fields.push_back(AmberField("Rx_error_pci", to_string(getFieldValue("rx_errors")))); fields.push_back(AmberField("Tx_error_pci", to_string(getFieldValue("tx_errors")))); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get Link Status information: %s", exc.what()); } return fields; } void MlxlinkAmBerCollector::fillParamsToFields(const string& title, const vector& values, vector& fields) { string val = ""; string fieldName = ""; for (u_int32_t idx = 0; idx < values.size(); idx++) { val = "N/A"; if (((_numOfLanes - 1) < values.size()) && (idx < _numOfLanes)) { val = values[idx]; } fieldName = "Lane" + to_string(idx) + "_" + title; fields.push_back(AmberField(fieldName, val)); } } vector MlxlinkAmBerCollector::getSerdesHDR() { vector fields; try { if (!_isPortPCIE) { vector> slrgParams(SLRG_PARAMS_LAST, vector(_maxLanes, "")); vector> sltpParams(SLTP_HDR_LAST, vector(_maxLanes, "")); vector sltpStatus; u_int32_t lane = 0; // Getting 16nm SLRG information for all lanes for (; lane < _maxLanes; lane++) { resetLocalParser(ACCESS_REG_SLRG); updateField("local_port", _localPort); updateField("lane", lane); sendRegister(ACCESS_REG_SLRG, MACCESS_REG_METHOD_GET); slrgParams[SLRG_PARAMS_INITIAL_FOM][lane] = getFieldStr("grade"); slrgParams[SLRG_PARAMS_UPPER_EYE][lane] = getFieldStr("up_eye_grade"); slrgParams[SLRG_PARAMS_MID_EYE][lane] = getFieldStr("mid_eye_grade"); slrgParams[SLRG_PARAMS_LOWER_EYE][lane] = getFieldStr("dn_eye_grade"); } fillParamsToFields("Grade", slrgParams[SLRG_PARAMS_INITIAL_FOM], fields); fillParamsToFields("up_eye_grade", slrgParams[SLRG_PARAMS_UPPER_EYE], fields); fillParamsToFields("mid_eye_grade", slrgParams[SLRG_PARAMS_MID_EYE], fields); fillParamsToFields("low_eye_grade", slrgParams[SLRG_PARAMS_LOWER_EYE], fields); // Getting 16nm SLTP information for all lanes for (u_int32_t lane = 0; lane < _maxLanes; lane++) { resetLocalParser(ACCESS_REG_SLTP); updateField("local_port", _localPort); updateField("lane", lane); sendRegister(ACCESS_REG_SLTP, MACCESS_REG_METHOD_GET); sltpParams[SLTP_HDR_PRE_2_TAP][lane] = getFieldStr("pre_2_tap"); sltpParams[SLTP_HDR_PRE_TAP][lane] = getFieldStr("pre_tap"); sltpParams[SLTP_HDR_MAIN_TAP][lane] = getFieldStr("main_tap"); sltpParams[SLTP_HDR_POST_TAP][lane] = getFieldStr("post_tap"); sltpParams[SLTP_HDR_OB_M2LP][lane] = getFieldStr("ob_m2lp"); sltpParams[SLTP_HDR_OB_AMP][lane] = getFieldStr("ob_amp"); sltpParams[SLTP_HDR_OB_ALEV_OUT][lane] = getFieldStr("ob_alev_out"); sltpStatus.push_back(getFieldValue("status") ? "Valid" : "Invalid"); } fillParamsToFields("tx_status", sltpStatus, fields); fillParamsToFields("pre_2_tap", sltpParams[SLTP_HDR_PRE_2_TAP], fields); fillParamsToFields("pre_tap", sltpParams[SLTP_HDR_PRE_TAP], fields); fillParamsToFields("main_tap", sltpParams[SLTP_HDR_MAIN_TAP], fields); fillParamsToFields("post_tap", sltpParams[SLTP_HDR_POST_TAP], fields); fillParamsToFields("ob_m2lp", sltpParams[SLTP_HDR_OB_M2LP], fields); fillParamsToFields("ob_amp", sltpParams[SLTP_HDR_OB_AMP], fields); fillParamsToFields("ob_alev_out", sltpParams[SLTP_HDR_OB_ALEV_OUT], fields); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get SerDes[16nm] information: %s", exc.what()); } return fields; } vector MlxlinkAmBerCollector::getSerdesNDR() { vector fields; try { fields.push_back(AmberField("UPHY_version", "N/A")); fields.push_back(AmberField("BKV_version", "N/A")); vector> sltpParams(SLTP_NDR_LAST + 1, vector(_maxLanes, "")); if (!_isPortPCIE) { // Getting 7nm SLTP information for all lanes for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { resetLocalParser(ACCESS_REG_SLTP); updateField("local_port", _localPort); updateField("lane", lane); updateField("pnat", _pnat); sendRegister(ACCESS_REG_SLTP, MACCESS_REG_METHOD_GET); sltpParams[SLTP_NDR_FIR_PRE3][lane] = getFieldStr("fir_pre3"); sltpParams[SLTP_NDR_FIR_PRE2][lane] = getFieldStr("fir_pre2"); sltpParams[SLTP_NDR_FIR_PRE1][lane] = getFieldStr("fir_pre1"); sltpParams[SLTP_NDR_FIR_MAIN][lane] = getFieldStr("fir_main"); sltpParams[SLTP_NDR_FIR_POST1][lane] = getFieldStr("fir_post1"); } fillParamsToFields("pre_3_tap", sltpParams[SLTP_NDR_FIR_PRE3], fields); fillParamsToFields("pre_2_tap", sltpParams[SLTP_NDR_FIR_PRE2], fields); fillParamsToFields("pre_1_tap", sltpParams[SLTP_NDR_FIR_PRE1], fields); fillParamsToFields("main_tap", sltpParams[SLTP_NDR_FIR_MAIN], fields); fillParamsToFields("post_1_tap", sltpParams[SLTP_NDR_FIR_POST1], fields); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get SerDes[7nm] information: %s", exc.what()); } return fields; } void MlxlinkAmBerCollector::initCableIdentifier(u_int32_t cableIdentifier) { switch (cableIdentifier) { case IDENTIFIER_QSFP28: case IDENTIFIER_QSFP_PLUS: _isQsfpCable = true; break; case IDENTIFIER_SFP: case IDENTIFIER_QSA: _isSfpCable = true; break; case IDENTIFIER_SFP_DD: case IDENTIFIER_QSFP_DD: case IDENTIFIER_OSFP: case IDENTIFIER_DSFP: case IDENTIFIER_QSFP_CMIS: _isCmisCable = true; break; } } void MlxlinkAmBerCollector::getCmisComplianceCode(u_int32_t ethComplianceCode, u_int32_t extEthComplianceCode, string& ethComplianceStr, string& extComplianceStr, u_int32_t cableMediaType, u_int32_t cableTechnology) { switch (cableMediaType) { case UNIDENTIFIED: case UNPLUGGED: default: ethComplianceStr = "N/A"; extComplianceStr = "N/A"; break; case ACTIVE: ethComplianceStr = _mlxlinkMaps->_activeCableCompliance[ethComplianceCode]; ethComplianceStr = ethComplianceStr.empty() ? "N/A" : ethComplianceStr; extComplianceStr = _mlxlinkMaps->_cmisHostCompliance[extEthComplianceCode]; break; case OPTICAL_MODULE: if (cableTechnology == TECHNOLOGY_850NM_VCSEL) { ethComplianceStr = _mlxlinkMaps->_mmfCompliance[ethComplianceCode]; } else if (cableTechnology >= TECHNOLOGY_1310NM_VCSEL && cableTechnology <= TECHNOLOGY_1550NM_EML) { ethComplianceStr = _mlxlinkMaps->_smfCompliance[ethComplianceCode]; } extComplianceStr = _mlxlinkMaps->_cmisHostCompliance[extEthComplianceCode]; break; case PASSIVE: ethComplianceStr = "N/A"; extComplianceStr = _mlxlinkMaps->_cmisHostCompliance[extEthComplianceCode]; break; } } void MlxlinkAmBerCollector::getEthComplianceCodes(u_int32_t cableTechnology, string& ethComplianceStr, string& extComplianceStr, u_int32_t cableMediaType) { u_int32_t ethComplianceCode = getFieldValue("ethernet_compliance_code"); u_int32_t extEthComplianceCode = getFieldValue("ext_ethernet_compliance_code"); if (_isQsfpCable) { ethComplianceStr = ethComplianceCode ? getCompliance(ethComplianceCode, _mlxlinkMaps->_cableComplianceQsfp, true) : "N/A"; extComplianceStr = (extEthComplianceCode & QSFP_ETHERNET_COMPLIANCE_CODE_EXT) ? _mlxlinkMaps->_cableComplianceExt[extEthComplianceCode] : "N/A"; } if (_isSfpCable) { ethComplianceStr = ethComplianceCode ? getCompliance(ethComplianceCode, _mlxlinkMaps->_cableComplianceSfp, true) : "N/A"; extComplianceStr = extEthComplianceCode ? _mlxlinkMaps->_cableComplianceExt[extEthComplianceCode] : "N/A"; } if (_isCmisCable) { getCmisComplianceCode(ethComplianceCode, extEthComplianceCode, ethComplianceStr, extComplianceStr, cableMediaType, cableTechnology); } } void MlxlinkAmBerCollector::getIbComplianceCodes(string& ibComplianceCodeStr) { u_int32_t ibComplianceCode = getFieldValue("ib_compliance_code"); ibComplianceCodeStr = ibComplianceCode ? getCompliance(ibComplianceCode, _mlxlinkMaps->_cableComplianceCmisIb, true) : "N/A"; } string MlxlinkAmBerCollector::getCableTechnologyStr(u_int32_t cableTechnology) { string technologyStr = "N/A"; if (_isCmisCable) { technologyStr = _mlxlinkMaps->_cableTechnologyQsfp[cableTechnology]; } else if (_isQsfpCable) { technologyStr = _mlxlinkMaps->_cableTechnologyQsfp[(cableTechnology & 240) >> 4]; } else { technologyStr = _mlxlinkMaps->_cableTechnologySfp[(cableTechnology & 15)]; } return technologyStr; } string MlxlinkAmBerCollector::getCableBreakoutStr(u_int32_t cableBreakout, u_int32_t cableIdentifier) { string cableBreakoutStr = ""; string impCh = ""; string notImpCh = ""; if (_isCmisCable) { cableBreakoutStr = _mlxlinkMaps->_cimsCableBreakout[cableBreakout]; findAndReplace(cableBreakoutStr, "X", getCableIdentifier(cableIdentifier)); } else if (_isQsfpCable) { u_int32_t near_end_bits = cableBreakout & 0xF; u_int32_t far_end_bits = (cableBreakout >> 4) & 0xF; for (u_int32_t channel = 1; channel < QSFP_CHANNELS + 1; channel++) { if (getBitvalue(near_end_bits, channel)) { notImpCh += to_string(channel) + "_"; } else { impCh += to_string(channel) + "_"; } } impCh = deleteLastChar(impCh); notImpCh = deleteLastChar(notImpCh); if (!impCh.empty()) { cableBreakoutStr = "Channels implemented [" + impCh + "]"; } if (!notImpCh.empty()) { cableBreakoutStr += ",Channels not implemented [" + notImpCh + "]"; } cableBreakoutStr += '/' + _mlxlinkMaps->_qsfpFarEndCableBreakout[far_end_bits]; } else { cableBreakoutStr = "N/A"; } return cableBreakoutStr; } void MlxlinkAmBerCollector::pushModulePerLaneField(vector& fields, string fieldName, float valueCorrection, string laneSep) { float value = 0; u_int32_t lanes = MAX_NETWORK_LANES; if (_isPortIB) { lanes = MAX_IB_LANES; } for (u_int32_t lane = 0; lane < lanes; lane++) { value = getLocalFieldValue(fieldName + to_string(lane)); if (fieldName.find("power") != string::npos) { value = getPower(value); } fields.push_back(AmberField(fieldName + laneSep + to_string(lane), floatToStr(value / valueCorrection, 2))); } } void MlxlinkAmBerCollector::pushModuleDpPerLane(vector& fields, const string str) { string dpStateStr = "N/A"; string fieldName = str; fieldName = toLowerCase(fieldName); for (u_int32_t lane = 0; lane < MAX_NETWORK_LANES; lane++) { string laneStr = to_string(lane); dpStateStr = getStrByMask(getLocalFieldValue(fieldName + laneStr), _mlxlinkMaps->_dataPathSt); fields.push_back(AmberField(str + laneStr, dpStateStr)); dpStateStr = "N/A"; } } string MlxlinkAmBerCollector::getSmfLength(const u_int32_t smfLength, const u_int32_t cableTechnology, const bool optical) { string lengthStr = "N/A"; if (cableTechnology >= TECHNOLOGY_1310NM_VCSEL && cableTechnology <= TECHNOLOGY_1550NM_EML && optical) { bool lengthBasedOn100m = getBitvalue(smfLength, 9); u_int32_t length = smfLength & 0XFF; if (lengthBasedOn100m) { length *= 100; lengthStr = to_string(length) + "m"; } else { lengthStr = to_string(length) + "km"; } } return lengthStr; } string MlxlinkAmBerCollector::getDateCode(u_int64_t dateCode) { string dateCodeStr; u_int64_t dateCodeRev = 0; u_int64_t tmpDateCode = dateCode; while (tmpDateCode) { dateCodeRev = (dateCodeRev << 16) | (tmpDateCode & 0xffff); tmpDateCode = tmpDateCode >> 16; } if (dateCodeRev) { for (int i = 56; i > -1; i -= 8) { char ch = (char)(dateCodeRev >> i); if (ch) { dateCodeStr.push_back(ch); if (i % 16 == 0) { dateCodeStr.push_back('_'); } } } dateCodeStr = deleteLastChar(dateCodeStr); MlxlinkRecord::trim(dateCodeStr); MlxlinkRecord::trim(dateCodeStr, "_"); } else { dateCodeStr = "N/A"; } return dateCodeStr; } void MlxlinkAmBerCollector::getModuleInfoPage(vector& fields) { u_int32_t cableIdentifier = getFieldValue("cable_identifier"); u_int32_t ibWidth = getFieldValue("ib_width"); u_int32_t cableTechnology = getFieldValue("cable_technology"); u_int32_t cableBreakout = getFieldValue("cable_breakout"); u_int32_t cableMediaType = getFieldValue("cable_type"); u_int32_t vendorOUI = getFieldValue("vendor_oui"); bool passive = cableMediaType == PASSIVE; bool optical = cableMediaType == OPTICAL_MODULE; string ethComplianceStr = "N/A"; string extComplianceStr = "N/A"; string ibComplianceCodeStr = "N/A"; string ibWidthStr = linkWidthMaskToStr(ibWidth); string moduleSt = "N/A"; string activeSetHostComplianceCode = "N/A"; string activeSetMediaComplianceCode = "N/A"; string nbrString = "N/A"; string error_code_res = "N/A"; char vendorOUIStr[32]; sprintf(vendorOUIStr, "0x%X", vendorOUI); initCableIdentifier(cableIdentifier); if (_isPortETH || _isCmisCable) { getEthComplianceCodes(cableTechnology, ethComplianceStr, extComplianceStr, cableMediaType); } if (_isPortIB) { getIbComplianceCodes(ibComplianceCodeStr); } fields.push_back(AmberField("ethernet_compliance_code", ethComplianceStr, _isPortETH)); fields.push_back(AmberField("ext_ethernet_compliance_code", extComplianceStr, _isPortETH)); fields.push_back(AmberField("ib_compliance_code", ibComplianceCodeStr, _isPortIB)); fields.push_back(AmberField("ib_width", ibWidthStr, _isPortIB)); fields.push_back(AmberField("Memory_map_rev", getFieldStr("memory_map_rev"))); fields.push_back(AmberField("Vendor_OUI", string(vendorOUIStr))); fields.push_back(AmberField("Cable_PN", getAscii("vendor_pn", 16))); fields.push_back(AmberField("Cable_SN", getAscii("vendor_sn", 16))); fields.push_back(AmberField("cable_technology", getCableTechnologyStr(cableTechnology))); fields.push_back(AmberField("linear_direct_drive", getFieldStr("did_cap"))); fields.push_back(AmberField("cable_breakout", getCableBreakoutStr(cableBreakout, cableIdentifier))); fields.push_back(AmberField("cable_type", getCableType(getFieldValue("cable_type")))); fields.push_back(AmberField("cable_vendor", getOui(getFieldValue("cable_vendor")))); fields.push_back(AmberField("cable_length", getCableLengthStr(getFieldValue("cable_length"), _isCmisCable) + 'm')); fields.push_back(AmberField("smf_length", getSmfLength(getFieldValue("smf_length"), cableTechnology, optical))); fields.push_back(AmberField("cable_identifier", getCableIdentifier(getFieldValue("cable_identifier")))); fields.push_back(AmberField( "cable_power_class", getPowerClass(_mlxlinkMaps, cableIdentifier, getFieldValue("cable_power_class"), getFieldValue("max_power")))); fields.push_back(AmberField("max_power", getFieldStr("max_power"))); fields.push_back(AmberField("cable_rx_amp", passive ? "N/A" : getFieldStr("cable_rx_amp"))); fields.push_back(AmberField("cable_rx_pre_emphasis", passive ? "N/A" : getFieldStr("cable_rx_emphasis"))); fields.push_back(AmberField("cable_rx_post_emphasis", passive ? "N/A" : getFieldStr("cable_rx_post_emphasis"))); fields.push_back(AmberField("cable_tx_equalization", passive ? "N/A" : getFieldStr("cable_tx_equalization"))); fields.push_back(AmberField("cable_attenuation_25g", getFieldStr("cable_attenuation_25g"))); fields.push_back(AmberField("cable_attenuation_12g", getFieldStr("cable_attenuation_12g"))); fields.push_back(AmberField("cable_attenuation_7g", getFieldStr("cable_attenuation_7g"))); fields.push_back(AmberField("cable_attenuation_5g", getFieldStr("cable_attenuation_5g"))); fields.push_back( AmberField("tx_input_freq_sync", getStrByValue(getFieldValue("tx_input_freq_sync"), _mlxlinkMaps->_txInputFreq))); fields.push_back(AmberField("rx_cdr_cap", _mlxlinkMaps->_rxTxCdrCap[getFieldValue("rx_cdr_cap")])); fields.push_back(AmberField("tx_cdr_cap", _mlxlinkMaps->_rxTxCdrCap[getFieldValue("tx_cdr_cap")])); fields.push_back(AmberField("rx_cdr_state", getRxTxCDRState(getFieldValue("rx_cdr_state"), _maxLanes))); fields.push_back(AmberField("tx_cdr_state", getRxTxCDRState(getFieldValue("tx_cdr_state"), _maxLanes))); fields.push_back(AmberField("vendor_name", getAscii("vendor_name", 16))); fields.push_back(AmberField("vendor_rev", getVendorRev(getFieldValue("vendor_rev")))); fields.push_back(AmberField("module_fw_version", getModuleFwVersion(passive, getFieldValue("fw_version")))); pushModulePerLaneField(fields, "rx_power_lane"); pushModulePerLaneField(fields, "tx_power_lane"); pushModulePerLaneField(fields, "tx_bias_lane", 500.0); fields.push_back(AmberField("temperature_high_th", getTemp(getFieldValue("temperature_high_th")))); fields.push_back(AmberField("temperature_low_th", getTemp(getFieldValue("temperature_low_th")))); fields.push_back(AmberField("voltage_high_th", to_string(getFieldValue("voltage_high_th") / 10.0))); fields.push_back(AmberField("voltage_low_th", to_string(getFieldValue("voltage_low_th") / 10.0))); fields.push_back(AmberField("rx_power_high_th", to_string(getPower(getFieldValue("rx_power_high_th"))))); fields.push_back(AmberField("rx_power_low_th", to_string(getPower(getFieldValue("rx_power_low_th"))))); fields.push_back(AmberField("tx_power_high_th", to_string(getPower(getFieldValue("tx_power_high_th"))))); fields.push_back(AmberField("tx_power_low_th", to_string(getPower(getFieldValue("tx_power_low_th"))))); fields.push_back(AmberField("tx_bias_high_th", to_string(getFieldValue("tx_bias_high_th") / 500.0))); fields.push_back(AmberField("tx_bias_low_th", to_string(getFieldValue("tx_bias_low_th") / 500.0))); fields.push_back(AmberField("wavelength", getFieldStr("wavelength"))); float waveLenTol = float(getFieldValue("wavelength_tolerance")) / 200.0; char waveLenTolCh[64]; sprintf(waveLenTolCh, "%.1f", waveLenTol); string waveLenTolStr = waveLenTolCh; fields.push_back(AmberField("wavelength_tolerance", passive ? "N/A" : waveLenTolStr + "nm")); if (_isCmisCable) { moduleSt = _mlxlinkMaps->_cimsModuleSt[getFieldValue("module_st")]; } fields.push_back(AmberField("Module_st", moduleSt)); pushModuleDpPerLane(fields, "Dp_st_lane"); fields.push_back(AmberField("rx_output_valid", getBitmaskPerLaneStr(getFieldValue("rx_output_valid")))); if (cableIdentifier < IDENTIFIER_SFP_DD) { float nbr = float(getFieldValue("nbr250") * 250) / float(1000); char nbrCh[64]; sprintf(nbrCh, "%.3f", nbr); nbrString = nbrCh + string("Gb/s"); } fields.push_back(AmberField("Nominal_Bit_Rate", nbrString)); fields.push_back(AmberField("Rx_Power_Type", _mlxlinkMaps->_rxPowerType[getFieldValue("rx_power_type")])); fields.push_back( AmberField("Date_Code", getDateCode(add32BitTo64(getFieldValue("date_code_hi"), getFieldValue("date_code_lo"))))); fields.push_back(AmberField("Module_Temperature", getTemp(getFieldValue("temperature")))); fields.push_back(AmberField("Module_Voltage", to_string(getFieldValue("voltage") / 10.0))); if (_isCmisCable) { activeSetHostComplianceCode = extComplianceStr; activeSetMediaComplianceCode = ethComplianceStr; } fields.push_back(AmberField("Active_set_host_compliance_code", activeSetHostComplianceCode)); fields.push_back(AmberField("Active_set_media_compliance_code", activeSetMediaComplianceCode)); if (_isCmisCable) { error_code_res = getStrByValue(getFieldValue("error_code"), _mlxlinkMaps->_errorCodeRes); } fields.push_back(AmberField("error_code_response", error_code_res)); } string MlxlinkAmBerCollector::getBitmaskPerLaneStr(u_int32_t bitmask) { string bitMaskStr = ""; for (u_int32_t lane = 0; lane < MAX_NETWORK_LANES; lane++) { bitMaskStr += getBitvalue(bitmask, lane + 1) ? "1" : "0"; if (lane != 7) { bitMaskStr += ","; } } return bitMaskStr; } void MlxlinkAmBerCollector::getModuleLatchedFlagInfoPage(vector& fields) { string modFwFault = "N/A"; string dpFwFault = "N/A"; string txLoss = "N/A"; string txAdEqFault = "N/A"; if (_isCmisCable) { modFwFault = getFieldStr("mod_fw_fault"); dpFwFault = getFieldStr("dp_fw_fault"); } fields.push_back(AmberField("Temp_flags", getStrByMask(getFieldValue("temp_flags"), _mlxlinkMaps->_tempFlags))); fields.push_back(AmberField("Vcc_flags", getStrByMask(getFieldValue("vcc_flags"), _mlxlinkMaps->_vccFlags))); fields.push_back(AmberField("Mod_fw_fault", modFwFault)); fields.push_back(AmberField("Dp_fw_fault", dpFwFault)); fields.push_back(AmberField("tx_fault", getBitmaskPerLaneStr(getFieldValue("tx_fault")))); if (!_isSfpCable) { txLoss = getBitmaskPerLaneStr(getFieldValue("tx_los")); } fields.push_back(AmberField("tx_los", txLoss)); fields.push_back(AmberField("tx_cdr_lol", getBitmaskPerLaneStr(getFieldValue("tx_cdr_lol")))); if (!_isSfpCable) { txAdEqFault = getBitmaskPerLaneStr(getFieldValue("tx_ad_eq_fault")); } fields.push_back(AmberField("tx_ad_eq_fault", txAdEqFault)); fields.push_back(AmberField("tx_power_hi_al", getBitmaskPerLaneStr(getFieldValue("tx_power_hi_al")))); fields.push_back(AmberField("tx_power_lo_al", getBitmaskPerLaneStr(getFieldValue("tx_power_lo_al")))); fields.push_back(AmberField("tx_power_hi_war", getBitmaskPerLaneStr(getFieldValue("tx_power_hi_war")))); fields.push_back(AmberField("tx_power_lo_war", getBitmaskPerLaneStr(getFieldValue("tx_power_lo_war")))); fields.push_back(AmberField("tx_bias_hi_al", getBitmaskPerLaneStr(getFieldValue("tx_bias_hi_al")))); fields.push_back(AmberField("tx_bias_lo_al", getBitmaskPerLaneStr(getFieldValue("tx_bias_lo_al")))); fields.push_back(AmberField("tx_bias_hi_war", getBitmaskPerLaneStr(getFieldValue("tx_bias_hi_war")))); fields.push_back(AmberField("tx_bias_lo_war", getBitmaskPerLaneStr(getFieldValue("tx_bias_lo_war")))); fields.push_back(AmberField("rx_los", getBitmaskPerLaneStr(getFieldValue("rx_los")))); fields.push_back(AmberField("rx_cdr_lol", getBitmaskPerLaneStr(getFieldValue("rx_cdr_lol")))); fields.push_back(AmberField("rx_power_hi_al", getBitmaskPerLaneStr(getFieldValue("rx_power_hi_al")))); fields.push_back(AmberField("rx_power_lo_al", getBitmaskPerLaneStr(getFieldValue("rx_power_lo_al")))); fields.push_back(AmberField("rx_power_hi_war", getBitmaskPerLaneStr(getFieldValue("rx_power_hi_war")))); fields.push_back(AmberField("rx_power_lo_war", getBitmaskPerLaneStr(getFieldValue("rx_power_lo_war")))); } vector MlxlinkAmBerCollector::getModuleStatus() { vector fields; try { if (!_isPortPCIE) { resetLocalParser(ACCESS_REG_PMAOS); updateField("module", _moduleIndex); updateField("slot_index", _slotIndex); sendRegister(ACCESS_REG_PMAOS, MACCESS_REG_METHOD_GET); u_int32_t operSt = getFieldValue("oper_status"); string operStStr = getStrByValue(operSt, _mlxlinkMaps->_moduleOperSt); string errTypeStr = "N/A"; if (operSt == MODULE_OPER_STATUS_PLUGGED_WITH_ERROR) { errTypeStr = getStrByValue(getFieldValue("error_type"), _mlxlinkMaps->_moduleErrType); } fields.push_back(AmberField("module_oper_status", operStStr)); fields.push_back(AmberField("module_error_type", errTypeStr)); resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_MODULE_INFO_PAGE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); if (!_cablePlugged) { AmberField::_dataValid = false; } getModuleInfoPage(fields); resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("page_select", PDDR_MODULE_LATCHED_FLAG_INFO_PAGE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); if (!_cablePlugged) { AmberField::_dataValid = false; } getModuleLatchedFlagInfoPage(fields); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get Module status: %s", exc.what()); } return fields; } vector MlxlinkAmBerCollector::getPortCounters() { vector fields; try { // Getting counters for ETH and IB ports if (!_isPortPCIE) { // Getting IB link errors if (_isPortIB) { resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_IB_PORT_COUNTERS_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("LinkErrorRecoveryCounter", getFieldStr("link_error_recovery_counter"))); fields.push_back(AmberField("PortRcvRemotePhysicalErrors", getFieldStr("port_rcv_remote_physical_" "errors"))); fields.push_back(AmberField("PortRcvErrors", getFieldStr("port_rcv_errors"))); fields.push_back(AmberField("PortXmitDiscards", getFieldStr("port_xmit_discards"))); fields.push_back(AmberField("PortRcvSwitchRelayErrors", getFieldStr("port_rcv_switch_relay_errors"))); fields.push_back(AmberField("ExcessiveBufferOverrunErrors", getFieldStr("excessive_buffer_overrun_" "errors"))); fields.push_back(AmberField("LocalLinkIntegrityErrors", getFieldStr("local_link_integrity_errors"))); fields.push_back(AmberField("PortRcvConstraintErrors", getFieldStr("port_rcv_constraint_errors"))); fields.push_back(AmberField("PortXmitConstraintErrors", getFieldStr("port_xmit_constraint_errors"))); fields.push_back(AmberField("VL15Dropped", getFieldStr("vl_15_dropped"))); fields.push_back(AmberField("PortXmitData", getFieldStr("port_xmit_data"))); fields.push_back(AmberField("PortRcvData", getFieldStr("port_rcv_data"))); fields.push_back(AmberField("PortXmitPkts", getFieldStr("port_xmit_pkts"))); fields.push_back(AmberField("PortRcvPkts", getFieldStr("port_rcv_pkts"))); fields.push_back(AmberField("PortXmitWait", getFieldStr("port_xmit_wait"))); // Getting port extended counters info resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_EXT_IB_PORT_COUNTERS_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); fields.push_back(AmberField( "PortXmitDataExtended", to_string(add32BitTo64(getFieldValue("port_xmit_data_high"), getFieldValue("port_xmit_data_low"))))); fields.push_back(AmberField( "PortRcvDataExtended", to_string(add32BitTo64(getFieldValue("port_rcv_data_high"), getFieldValue("port_rcv_data_low"))))); fields.push_back(AmberField( "PortXmitPktsExtended", to_string(add32BitTo64(getFieldValue("port_xmit_pkts_high"), getFieldValue("port_xmit_pkts_low"))))); fields.push_back(AmberField( "PortRcvPktsExtended", to_string(add32BitTo64(getFieldValue("port_rcv_pkts_high"), getFieldValue("port_rcv_pkts_low"))))); // Getting engress counters resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_DISC_COUNTERS_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); fields.push_back(AmberField( "PortSwLifetimeLimitDiscards", to_string(add32BitTo64(getFieldValue("egress_sll_high"), getFieldValue("egress_sll_low"))))); fields.push_back(AmberField("PortSwHOQLifetimeLimitDiscards", to_string(add32BitTo64(getFieldValue("egress_hoq_stall_high"), getFieldValue("egress_hoq_stall_low"))))); // Getting PLR counters data resetLocalParser(ACCESS_REG_PPCNT); updateField("local_port", _localPort); updateField("grp", PPCNT_PLR_GROUP); updateField("lp_gl", (u_int32_t)(_localPort == 255)); sendRegister(ACCESS_REG_PPCNT, MACCESS_REG_METHOD_GET); fields.push_back(AmberField( "PlrRcvCodes", to_string(add32BitTo64(getFieldValue("plr_rcv_codes_high"), getFieldValue("plr_rcv_codes_low"))))); fields.push_back(AmberField("PlrRcvCodeErr", to_string(add32BitTo64(getFieldValue("plr_rcv_code_err_high"), getFieldValue("plr_rcv_code_err_low"))))); fields.push_back(AmberField("PlrRcvUncorrectableCode", to_string(add32BitTo64(getFieldValue("plr_rcv_uncorrectable_code_high"), getFieldValue("plr_rcv_uncorrectable_code_low"))))); fields.push_back(AmberField( "PlrXmitCodes", to_string(add32BitTo64(getFieldValue("plr_xmit_codes_high"), getFieldValue("plr_xmit_codes_low"))))); fields.push_back(AmberField("PlrXmitRetryCodes", to_string(add32BitTo64(getFieldValue("plr_xmit_retry_codes_high"), getFieldValue("plr_xmit_retry_codes_low"))))); fields.push_back(AmberField("PlrXmitRetryEvents", to_string(add32BitTo64(getFieldValue("plr_rcv_codes_high"), getFieldValue("plr_xmit_retry_events_low"))))); fields.push_back(AmberField("PlrSyncEvents", to_string(add32BitTo64(getFieldValue("plr_sync_events_high"), getFieldValue("plr_sync_events_low"))))); fields.push_back(AmberField("PlrCodesLoss", to_string(add32BitTo64(getLocalFieldValue("plr_codes_loss_high"), getLocalFieldValue("plr_codes_loss_low"))))); fields.push_back(AmberField( "PlrXmitRetryEventsWithinTSecMax", to_string(add32BitTo64(getLocalFieldValue("plr_xmit_retry_events_within_t_sec_max_high"), getLocalFieldValue("plr_xmit_retry_events_within_t_sec_max_low"))))); } } else { // Getting the PCIE errors fields (PCIE only) resetLocalParser(ACCESS_REG_MPCNT); updateField("depth", _depth); updateField("pcie_index", _pcieIndex); updateField("node", _node); updateField("grp", MPCNT_PERFORMANCE_GROUP); sendRegister(ACCESS_REG_MPCNT, MACCESS_REG_METHOD_GET); fields.push_back(AmberField("crc_error_dllp", getFieldStr("crc_error_dllp"))); fields.push_back(AmberField("crc_error_tlp", getFieldStr("crc_error_tlp"))); fields.push_back(AmberField("tx_overflow_buffer_pkt", to_string(add32BitTo64(getFieldValue("tx_overflow_buffer_pkt_hi"), getFieldValue("tx_overflow_buffer_pkt_lo"))))); fields.push_back(AmberField("outbound_stalled_reads", getFieldStr("outbound_stalled_reads"))); fields.push_back(AmberField("outbound_stalled_writes", getFieldStr("outbound_stalled_writes"))); fields.push_back(AmberField("outbound_stalled_reads_events", getFieldStr("outbound_stalled_reads_events"))); fields.push_back(AmberField("outbound_stalled_writes_events", getFieldStr("outbound_stalled_writes_" "events"))); fields.push_back(AmberField("tx_overflow_buffer_marked_pkt", to_string(add32BitTo64(getFieldValue("tx_overflow_buffer_marked_pkt_hi"), getFieldValue("tx_overflow_buffer_marked_pkt_lo"))))); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get Port Counters information: %s", exc.what()); } return fields; } vector MlxlinkAmBerCollector::getTroubleshootingInfo() { vector fields; try { if (!_isPortPCIE) { resetLocalParser(ACCESS_REG_PDDR); updateField("local_port", _localPort); updateField("pnat", PNAT_LOCAL); updateField("page_select", PDDR_TROUBLESHOOTING_INFO_PAGE); updateField("group_opcode", MONITOR_OPCODE); sendRegister(ACCESS_REG_PDDR, MACCESS_REG_METHOD_GET); string message = ""; char txt[16], c; u_int32_t message_buf; bool finalize = false; for (int i = 0; i < PDDR_STATUS_MESSAGE_LENGTH_SWITCH; i++) { string path = "status_message["; sprintf(txt, "%d", i); path.append(txt); path.append("]"); message_buf = getFieldValue(path); for (int k = 24; k > -1; k -= 8) { c = (char)(message_buf >> k); if (c == '\0') { finalize = true; break; } message.push_back(c); } if (finalize == true) { break; } } fields.push_back(AmberField("Advanced_Status_Opcode", getFieldStr("monitor_opcode"))); fields.push_back(AmberField("Status_Message", message)); } } catch (const std::exception& exc) { throw MlxRegException("Failed to get Troubleshooting information: %s", exc.what()); } return fields; } vector MlxlinkAmBerCollector::getLinkUpInfo() { vector fields; try { // Access regs: [PDDR.linkup_info_page] } catch (const std::exception& exc) { throw MlxRegException("Failed to get LinkUp information: %s", exc.what()); } return fields; } vector MlxlinkAmBerCollector::getLinkDownInfo() { vector fields; try { // Access regs: [PDDR.linkdown_info_page] } catch (const std::exception& exc) { throw MlxRegException("Failed to get LinkDown information: %s", exc.what()); } return fields; } string MlxlinkAmBerCollector::getPrbsModeCap(u_int32_t modeSelector, u_int32_t capsMask) { string modeCapStr = ""; u_int32_t mask = 0; for (map::iterator it = _mlxlinkMaps->_prbsModesList.begin(); it != _mlxlinkMaps->_prbsModesList.end(); it++) { mask = PRBS31_CAP << it->first; if (capsMask & mask) { modeCapStr += it->second; if (modeSelector == PRBS_RX && mask == SQUARE_WAVEA_CAP) { // return SQUARE_WAVE without A for RX pattern modeCapStr = deleteLastChar(modeCapStr); } modeCapStr += ","; } } return deleteLastChar(modeCapStr); } void MlxlinkAmBerCollector::getTestModePrpsInfo(const string& prbsReg, vector>& params) { string laneRateStr = "lane_rate_admin"; if (prbsReg == ACCESS_REG_PPRT) { laneRateStr = "lane_rate_oper"; } for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { resetLocalParser(prbsReg); updateField("local_port", _localPort); updateField("lane", lane); updateField("pnat", _pnat); sendRegister(prbsReg, MACCESS_REG_METHOD_GET); if (prbsReg == ACCESS_REG_PPRT) { params[PRBS_PARAMS_RX_TUNING_STATUS][lane] = getStrByValue(getFieldValue("prbs_rx_tuning_status"), _mlxlinkMaps->_prbsRxTuningStatus); params[PRBS_PARAMS_LOCK_STATUS][lane] = getStrByValue(getFieldValue("prbs_lock_status"), _mlxlinkMaps->_prbsLockStatus); } params[PRBS_PARAMS_E][lane] = getStrByValue(getFieldValue("e"), _mlxlinkMaps->_prbsEStatus); params[PRBS_PARAMS_P][lane] = getStrByValue(getFieldValue("p"), _mlxlinkMaps->_prbsPStatus); params[PRBS_PARAMS_MODES_CAP][lane] = getPrbsModeCap(PRBS_TX, getFieldValue("prbs_modes_cap")); params[PRBS_PARAMS_MODE_ADMIN][lane] = getStrByValue(getFieldValue("prbs_mode_admin"), _mlxlinkMaps->_prbsModesList); params[PRBS_PARAMS_MODULATION][lane] = getStrByValue(getFieldValue("modulation"), _mlxlinkMaps->_prbsModulation); params[PRBS_PARAMS_LANE_RATE_CAP][lane] = getStrByMask(getFieldValue("lane_rate_cap"), _mlxlinkMaps->_prbsLaneRateCap); params[PRBS_PARAMS_LANE_RATE_ADMIN][lane] = getStrByValue(getFieldValue(laneRateStr), _mlxlinkMaps->_prbsLaneRateList); } } vector MlxlinkAmBerCollector::getTestModeInfo() { vector fields; try { vector> pprtParams(PRBS_PARAMS_LAST, vector(_maxLanes, "")); vector> ppttParams(PRBS_PARAMS_LAST, vector(_maxLanes, "")); getTestModePrpsInfo(ACCESS_REG_PPRT, pprtParams); getTestModePrpsInfo(ACCESS_REG_PPTT, ppttParams); fillParamsToFields("prbs_rx_tuning_status", pprtParams[PRBS_PARAMS_RX_TUNING_STATUS], fields); fillParamsToFields("prbs_rx_lock_status", pprtParams[PRBS_PARAMS_LOCK_STATUS], fields); fillParamsToFields("prbs_rx_enable", pprtParams[PRBS_PARAMS_E], fields); fillParamsToFields("prbs_rx_polarity", pprtParams[PRBS_PARAMS_P], fields); fillParamsToFields("prbs_rx_modes_cap", pprtParams[PRBS_PARAMS_MODES_CAP], fields); fillParamsToFields("prbs_rx_mode_admin", pprtParams[PRBS_PARAMS_MODE_ADMIN], fields); fillParamsToFields("prbs_rx_modulation", pprtParams[PRBS_PARAMS_MODULATION], fields); fillParamsToFields("prbs_rx_lane_rate_cap", pprtParams[PRBS_PARAMS_LANE_RATE_CAP], fields); fillParamsToFields("prbs_rx_lane_rate_admin", pprtParams[PRBS_PARAMS_LANE_RATE_ADMIN], fields); fillParamsToFields("prbs_tx_enable", ppttParams[PRBS_PARAMS_E], fields); fillParamsToFields("prbs_tx_polarity", ppttParams[PRBS_PARAMS_P], fields); fillParamsToFields("prbs_tx_modes_cap", ppttParams[PRBS_PARAMS_MODES_CAP], fields); fillParamsToFields("prbs_tx_mode_admin", ppttParams[PRBS_PARAMS_MODE_ADMIN], fields); fillParamsToFields("prbs_tx_modulation", ppttParams[PRBS_PARAMS_MODULATION], fields); fillParamsToFields("prbs_tx_lane_rate_cap", ppttParams[PRBS_PARAMS_LANE_RATE_CAP], fields); fillParamsToFields("prbs_tx_lane_rate_admin", ppttParams[PRBS_PARAMS_LANE_RATE_ADMIN], fields); } catch (const std::exception& exc) { throw MlxRegException("Failed to get Test Mode information: %s", exc.what()); } return fields; } void MlxlinkAmBerCollector::getTestModeModulePMPT(vector& fields, string moduleSide, ModuleAccess_t mode) { resetLocalParser(ACCESS_REG_PMPT); updateField("module", _moduleIndex); updateField("slot_index", _slotIndex); updateField("host_media", moduleSide == "host"); updateField("ch_ge", (u_int32_t)mode); sendRegister(ACCESS_REG_PMPT, MACCESS_REG_METHOD_GET); string modeStr = mode == MODULE_PRBS_ACCESS_GEN ? "generator" : "checker"; fields.push_back(AmberField("prbs_" + modeStr + "_pattern_cap_" + moduleSide, getPrbsModeCap(PRBS_RX, getFieldValue("prbs_modes_cap")))); fields.push_back(AmberField("prbs_" + modeStr + "_pattern_admin_" + moduleSide, getStrByValue(getFieldValue("prbs_mode_admin"), _mlxlinkMaps->_prbsModesList))); fields.push_back(AmberField("prbs_" + modeStr + "_msb_lsb_swap_" + moduleSide, getStrByValue(getFieldValue("swap_admin"), _mlxlinkMaps->_modulePrbsSwapAdmin))); fields.push_back(AmberField("prbs_" + modeStr + "_polarity_" + moduleSide, getStrByValue(getFieldValue("invt_admin"), _mlxlinkMaps->_modulePrbsInvAdmin))); fields.push_back(AmberField("prbs_" + modeStr + "_modulation_" + moduleSide, getStrByValue(getFieldValue("modulation"), _mlxlinkMaps->_modulePrbsModulation))); fields.push_back(AmberField("prbs_" + modeStr + "_lane_rate_cap_" + moduleSide, getStrByMask(getFieldValue("lane_rate_cap"), _mlxlinkMaps->_modulePrbsRateCapToStr))); fields.push_back(AmberField("prbs_" + modeStr + "_lane_rate_admin_" + moduleSide, getStrByValue(getFieldValue("lane_rate_admin"), _mlxlinkMaps->_modulePrbsRateCapToStr))); } void MlxlinkAmBerCollector::getTestModeModulePMPD(vector& fields, string moduleSide) { vector> pmpdParams(PMPD_PARAM_LAST, vector(_maxLanes, "")); for (u_int32_t lane = 0; lane < _maxLanes; lane++) { resetLocalParser(ACCESS_REG_PMPD); updateField("module", _moduleIndex); updateField("slot_index", _slotIndex); updateField("host_media", moduleSide == "host"); updateField("lane", lane); sendRegister(ACCESS_REG_PMPD, MACCESS_REG_METHOD_GET); pmpdParams[PMPD_PARAM_STATUS][lane] = getStrByValue(getFieldValue("status"), _mlxlinkMaps->_modulePMPDStatus); pmpdParams[PMPD_PARAM_PRBS_BITS][lane] = to_string(add32BitTo64(getFieldValue("prbs_bits_high"), getFieldValue("prbs_bits_low"))); pmpdParams[PMPD_PARAM_PRBS_ERRORS][lane] = to_string(add32BitTo64(getFieldValue("prbs_errors_high"), getFieldValue("prbs_errors_low"))); pmpdParams[PMPD_PARAM_SNR][lane] = getFieldStr("measured_snr") + "dB"; pmpdParams[PMPD_PARAM_BER][lane] = getFieldStr("ber_coef") + "E-" + getFieldStr("ber_magnitude"); } fillParamsToFields("prbs_checker_status_" + moduleSide, pmpdParams[PMPD_PARAM_STATUS], fields); fillParamsToFields("prbs_checker_bits_" + moduleSide, pmpdParams[PMPD_PARAM_PRBS_BITS], fields); fillParamsToFields("prbs_checker_errors_" + moduleSide, pmpdParams[PMPD_PARAM_PRBS_ERRORS], fields); fillParamsToFields("prbs_checker_snr_" + moduleSide, pmpdParams[PMPD_PARAM_SNR], fields); fillParamsToFields("prbs_checker_ber_" + moduleSide, pmpdParams[PMPD_PARAM_BER], fields); } vector MlxlinkAmBerCollector::getTestModeModuleInfo() { vector fields; try { fields.push_back(AmberField("prbs_status_host", getStrByValue(_moduleHostSt, _mlxlinkMaps->_modulePrbsSt))); getTestModeModulePMPT(fields, "host", MODULE_PRBS_ACCESS_CH); getTestModeModulePMPT(fields, "host", MODULE_PRBS_ACCESS_GEN); getTestModeModulePMPD(fields, "host"); fields.push_back(AmberField("prbs_status_media", getStrByValue(_moduleMediaSt, _mlxlinkMaps->_modulePrbsSt))); getTestModeModulePMPT(fields, "media", MODULE_PRBS_ACCESS_CH); getTestModeModulePMPT(fields, "media", MODULE_PRBS_ACCESS_GEN); getTestModeModulePMPD(fields, "media"); } catch (const std::exception& exc) { throw MlxRegException("Failed to get Test Mode Module information: %s", exc.what()); } return fields; } vector MlxlinkAmBerCollector::getPhyDebugInfo() { vector fields; try { } catch (const std::exception& exc) { throw MlxRegException("Failed to get Phy Debug information: %s", exc.what()); } return fields; } void MlxlinkAmBerCollector::getPemiSnr(vector& fields, bool isGroupSupported) { if (!isGroupSupported) { AmberField::_dataValid = false; } sendLocalPrmReg(ACCESS_REG_PEMI, GET, "local_port=%d,page_select=%d", _localPort, PEMI_GROUP_SEL_SNR_SAMPLES); pushModulePerLaneField(fields, "snr_media_lane", 256, ""); pushModulePerLaneField(fields, "snr_host_lane", 256, ""); AmberField::_dataValid = true; } vector MlxlinkAmBerCollector::getExtModuleStatus() { vector fields; try { if (!_isPortPCIE) { // sendLocalPrmReg(ACCESS_REG_PEMI, GET, "local_port=%d", _localPort); // u_int32_t groupCapMask = getLocalFieldValue("group_cap_mask"); getPemiSnr(fields, true); // Change to groupCapMask & PEMI_GROUP_CAP_SNR when become supported } } catch (const std::exception& exc) { throw MlxRegException("Failed to get Extended Module information: %s", exc.what()); } return fields; } void MlxlinkAmBerCollector::groupValidIf(bool condition) { if (condition) { _invalidate = false; } else { _invalidate = true; } } vector MlxlinkAmBerCollector::collectSheet(AMBER_SHEET sheet) { vector fields; bool invalidSheet = false; _invalidate = false; fields.push_back(AmberField("N/A", "N/A")); AmberField::reset(); switch (sheet) { case AMBER_SHEET_GENERAL: fields = getGeneralInfo(); break; case AMBER_SHEET_INDEXES: fields = getIndexesInfo(); break; case AMBER_SHEET_LINK_STATUS: fields = getLinkStatus(); break; case AMBER_SHEET_MODULE_STATUS: fields = getModuleStatus(); break; case AMBER_SHEET_SYSTEM: fields = getSystemInfo(); break; case AMBER_SHEET_SERDES_16NM: groupValidIf(_productTechnology == PRODUCT_16NM); fields = getSerdesHDR(); break; case AMBER_SHEET_SERDES_7NM: groupValidIf(_productTechnology == PRODUCT_7NM); fields = getSerdesNDR(); break; case AMBER_SHEET_PORT_COUNTERS: if (!_inPRBSMode) { fields = getPortCounters(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_TROUBLESHOOTING: if (!_inPRBSMode) { fields = getTroubleshootingInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_PHY_OPERATION_INFO: if (!_inPRBSMode) { fields = getPhyOperationInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_LINK_UP_INFO: if (!_inPRBSMode) { fields = getLinkUpInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_LINK_DOWN_INFO: if (!_inPRBSMode) { fields = getLinkDownInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_TEST_MODE_INFO: if (_inPRBSMode) { fields = getTestModeInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_TEST_MODE_MODULE_INFO: if (_inPRBSMode) { fields = getTestModeModuleInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_PHY_DEBUG_INFO: if (!_inPRBSMode) { fields = getPhyDebugInfo(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; case AMBER_SHEET_EXT_MODULE_STATUS: if (!_inPRBSMode) { fields = getExtModuleStatus(); } else if (isIn(sheet, _sheetsToDump)) { invalidSheet = true; } break; default: throw MlxRegException("Invalid amBER page index: %d", sheet); } if (!_sheetsToDump.empty()) { if (invalidSheet) { string mode = _inPRBSMode ? "Operational mode" : "PRBS test mode"; throw MlxRegException("Page %d is valid in %s only!", sheet, mode.c_str()); } } return fields; } void MlxlinkAmBerCollector::collect() { for (const auto& sheet : _sheetsList) { auto sheetFields = collectSheet(sheet.first); if (sheetFields.empty() || sheetFields.back().getUiField() != "N/A") { _amberCollection[sheet.first] = sheetFields; } } } u_int32_t MlxlinkAmBerCollector::fixFieldsData() { u_int32_t lastFieldIndexPerGroup = 0; u_int32_t totalFields = 0; for (auto it = _amberCollection.begin(); it != _amberCollection.end(); it++) { for (auto fieldIt = (*it).second.begin(); fieldIt != (*it).second.end();) { if ((*fieldIt).getFieldIndex() == 0) { (*it).second.erase(fieldIt); } else { ++fieldIt; } } } for (auto it = _amberCollection.begin(); it != _amberCollection.end(); it++) { if (_isPortPCIE) { lastFieldIndexPerGroup = _sheetsList[getSheetIndex((*it).first)].second.numOfPcieFields; } else if (_isPortETH) { lastFieldIndexPerGroup = _sheetsList[getSheetIndex((*it).first)].second.numOfEthFields; } else if (_isPortIB) { lastFieldIndexPerGroup = _sheetsList[getSheetIndex((*it).first)].second.numOfIbFields; } for (u_int32_t fieldIdx = (*it).second.size() + 1; fieldIdx <= lastFieldIndexPerGroup; fieldIdx++) { (*it).second.push_back(AmberField("F" + to_string(totalFields + fieldIdx), "N/A", fieldIdx)); } totalFields += lastFieldIndexPerGroup; } return totalFields; } u_int32_t MlxlinkAmBerCollector::getSheetIndex(AMBER_SHEET sheet) { u_int32_t index = 0; for (; index < _sheetsList.size(); index++) { if (_sheetsList[index].first == sheet) { break; } } return index; } void MlxlinkAmBerCollector::exportToCSV() { const char* fileName = _csvFileName.c_str(); ifstream ifile(fileName); ofstream berFile(fileName, std::ofstream::app); u_int32_t totalNumOfFields = fixFieldsData(); // Preparing CSV header line if (!ifile.good()) { if (!berFile.good()) { throw MlxRegException("The provided file path does not exist!"); } // Going over all groups inside _amberCollection and getting the field name for each one for (const auto& sheet : _sheetsList) { for (const auto& field : _amberCollection[sheet.first]) { if (field.isVisible()) { berFile << field.getUiField(); if (field.getFieldIndex() < totalNumOfFields) { berFile << ","; } } } } berFile << endl; } // Preparing CSV values // Going over all groups inside _amberCollection and getting the field value for each one for (const auto& sheet : _sheetsList) { for (const auto& field : _amberCollection[sheet.first]) { if (field.isVisible()) { berFile << field.getUiValue(); if (field.getFieldIndex() < totalNumOfFields) { berFile << ","; } } } } berFile << endl; berFile.close(); } void MlxlinkAmBerCollector::exportToConsole() { // Printing all fields to the console (for debugging, will be removed later) for (auto it = _amberCollection.begin(); it != _amberCollection.end(); it++) { for (auto fieldIt = (*it).second.begin(); fieldIt != (*it).second.end(); fieldIt++) { if ((*fieldIt).isVisible()) { cout << *fieldIt << endl; } } } } mstflint-4.26.0/mlxlink/modules/mlxlink_user_input.h0000644000175000017500000001011114522641732023127 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_USER_INPUT_H #define MLXLINK_USER_INPUT_H #include #include #include #include #include #include "mlxlink_enums.h" using namespace std; class UserInput { public: UserInput(); virtual ~UserInput(){}; u_int32_t _labelPort; u_int32_t _splitPort; u_int32_t _secondSplitPort; u_int32_t _depth; u_int32_t _pcieIndex; u_int32_t _node; bool _sendPrbs; bool _sendPprt; bool _sendPptt; bool _prbsTxInv; bool _prbsRxInv; bool _sendPepc; bool _sendPepcForceMode; bool _sendPepcANMode; bool _pprtTuningTypeFlag; bool _toggle; bool _pcie; bool _links; bool _sendDepth; bool _sendPcieIndex; bool _sendNode; bool _sendDpn; bool _db; bool _sltpLane; bool _txPolicy; bool _advancedMode; bool _portSpecified; bool _splitProvided; bool _secondSplitProvided; bool _showSltp; bool _showSlrp; bool _showCounters; bool _showEyeInfo; bool _cable; bool _dump; bool _ddm; bool _write; bool _read; bool gradeScanPerLane; string _portType; string _paosCmd; string _pplmFec; string _speedFec; string _pplrLB; string _prbsMode; string _pprtMode; string _ppttMode; string _pprtRate; string _ppttRate; string _pprtTuningType; string _csvBer; string _testMode; string _forceMode; string _anMode; u_int32_t _iteration; double _testTime; u_int32_t _feedbackIndex; u_int32_t _feedbackData; std::map _sltpParams; u_int32_t _lane; u_int32_t _gvmiAddress; vector _bytesToWrite; int _page; int _offset; int _len; std::map _prbsLanesToSet; int _setGroup; int _showGroup; vector _labelPorts; string eyeSelect; int measureTime; bool force; bool eyeSelectSpecified; bool enableRxErrInj; int mixerOffset0; int mixerOffset1; bool showMixers; bool enableFecHistogram; bool showFecHistogram; bool clearFecHistogram; map modulePrbsParams; bool isPrbsSelProvided; bool isPrbsModeProvided; bool isPrbsChProvided; bool isPrbsGenProvided; bool isPrbsShowDiagProvided; bool isPrbsClearDiagProvided; ModuleAccess_t prbsModuleAccess; bool isModuleConfigParamsProvided; vector> configParamsToSet; bool isPcieErrInjProvided; string errorType; int errorDuration; int injDelay; string dbdf; vector parameters; }; #endif /* MLXLINK_USER_INPUT_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_port_info.h0000644000175000017500000000512614522641732022743 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_PORT_INFO_H #define MLXLINK_PORT_INFO_H #include "mlxlink_reg_parser.h" enum HISTOGRAM_TYPE { HIST_TYPE_AUTO, HIST_TYPE_KP4, HIST_TYPE_LL, HIST_TYPE_KR4 }; struct HISTOGRAM_BIN { HISTOGRAM_BIN() { bin = 0; minRange = 0; maxRange = 0; numOfErrors = 0; } HISTOGRAM_BIN(u_int32_t _bin, u_int32_t _minRange, u_int32_t _maxRange, u_int64_t _numOfErrors) { bin = _bin; minRange = _minRange; maxRange = _maxRange; numOfErrors = _numOfErrors; } u_int32_t bin; u_int32_t minRange; u_int32_t maxRange; u_int64_t numOfErrors; }; using namespace std; class MlxlinkPortInfo : public MlxlinkRegParser { public: MlxlinkPortInfo(Json::Value& jsonRoot); virtual ~MlxlinkPortInfo(); void init(); void showHistogram(); void clearHistogram(); u_int32_t _fecActive; private: u_int32_t getNumberOfBins(); void updateBinsRange(); void updateBinsErrorsCount(); Json::Value& _jsonRoot; HISTOGRAM_TYPE _histType; u_int32_t _numOfBins; vector _binsList; string _fieldSep; }; #endif /* MLXLINK_PORT_INFO_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_err_inj_commander.cpp0000644000175000017500000003003014522641732024744 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_err_inj_commander.h" MlxlinkErrInjCommander::MlxlinkErrInjCommander(Json::Value& jsonRoot) : _jsonRoot(jsonRoot) { _mixerOffset0 = -1; _mixerOffset1 = -1; _force = false; } MlxlinkErrInjCommander::~MlxlinkErrInjCommander() {} bool MlxlinkErrInjCommander::getUserConfirm(const string& msg) { MlxlinkRecord::printWar(msg, _jsonRoot); return askUser("Do you want to continue", _force); } u_int16_t MlxlinkErrInjCommander::getMixerOffset(u_int32_t id) { sendPrmReg(ACCESS_REG_PREI, GET); return getFieldValue("mixer_offset" + to_string(id)); } void MlxlinkErrInjCommander::setMixersOffset() { u_int16_t mixer0 = getMixerOffset(0); u_int16_t mixer1 = getMixerOffset(1); if (_mixerOffset0 >= 0) { mixer0 = (u_int16_t)_mixerOffset0; } if (_mixerOffset1 >= 0) { mixer1 = (u_int16_t)_mixerOffset1; } sendPrmReg(ACCESS_REG_PREI, SET, "mixer_offset0=%d,mixer_offset1=%d", mixer0, mixer1); } void MlxlinkErrInjCommander::updateMixerOffsets() { MlxlinkRecord::printCmdLine("Configuring Eye Center", _jsonRoot); if (MlxlinkRecord::jsonFormat && !_force) { throw MlxRegException("Interactive mode is not available with JSON format, " "use --yes flag to force the execution"); } if (getUserConfirm("Using this feature may result degradation of " "the link or even link failure.\nFor the link to return to normal " "operation, link needs to be toggled.")) { setMixersOffset(); } } void MlxlinkErrInjCommander::showMixersOffset() { MlxlinkCmdPrint cmdOut = MlxlinkCmdPrint(); setPrintTitle(cmdOut, "Eye Centering Control Information", 2); char valueStr[32]; sprintf(valueStr, "0x%x", getMixerOffset(0)); setPrintVal(cmdOut, "mixer_offset0", valueStr, ANSI_COLOR_RESET, true); sprintf(valueStr, "0x%x", getMixerOffset(1)); setPrintVal(cmdOut, "mixer_offset1", valueStr, ANSI_COLOR_RESET, true); cmdOut.toJsonFormat(_jsonRoot); cout << cmdOut; } string MlxlinkErrInjCommander::getPcieErrInjStatus(u_int32_t errorType) { string status = "Ready"; if (errorType) { status = "In Progress"; } return status; } void MlxlinkErrInjCommander::showPcieErrInjState(const DPN& dpn) { sendPrmReg(ACCESS_REG_MPEINJ, GET, "depth=%d,pcie_index=%d,node=%d,error_type=%d", dpn.depth, dpn.pcieIndex, dpn.node, PCIE_ERR_TYPE_BAD_DLLP_LCRC); u_int32_t errType = getFieldValue("error_type"); string errorStatus = getPcieErrInjStatus(errType); string errorTypeStr = _mlxlinkMaps->_pcieErrType[errType].errorTypeStr; string errorDuration = getFieldStr("error_duration"); errorDuration += " " + _mlxlinkMaps->_pcieErrType[errType].unit; errorDuration += getFieldValue("error_duration") > 1 ? "s" : ""; MlxlinkCmdPrint cmdOut = MlxlinkCmdPrint(); setPrintTitle(cmdOut, "PCIe Error Injection Info", 4); setPrintVal(cmdOut, "Error Injection Status", errorStatus); setPrintVal(cmdOut, "Error Injection Type", errorTypeStr, ANSI_COLOR_RESET, true, errType); setPrintVal(cmdOut, "Error Injection Duration", errorDuration, ANSI_COLOR_RESET, true, errType); cmdOut.toJsonFormat(_jsonRoot); cout << cmdOut; } string MlxlinkErrInjCommander::getValidErrorTypes(bool perDbdf) { string errTypeListStr = ""; for (const auto& errType : _mlxlinkMaps->_pcieErrType) { if (!errType.second.errorTypeStr.empty()) { if (errType.second.dbdfValid || !perDbdf) { errTypeListStr += errType.second.errorTypeStr; errTypeListStr += "(" + to_string(errType.first); errTypeListStr += "),"; } } } return deleteLastChar(errTypeListStr); } string MlxlinkErrInjCommander::getNumOfValidParams(PcieErrType& errTypeSt) { u_int32_t numOfParams = 0; for (const auto& paramValid : errTypeSt.paramsValid) { if (paramValid) { numOfParams++; } } if (numOfParams) { return "Number of valid parameters is " + to_string(numOfParams); } else { return "No valid parameters to set"; } } ReqParms MlxlinkErrInjCommander::validateErrType(const string& type, int duration, int injDelay, vector params, const string& dbdf) { ReqParms request; // Error type validation int errTypeSet = -1; int dbdfIntSet = 0; int paramsSet[4] = {0}; try { size_t cptr; errTypeSet = stoi(type, &cptr, 0); if (cptr != type.size()) { errTypeSet = -1; } } catch (...) { for (const auto& errType : _mlxlinkMaps->_pcieErrType) { if (type == errType.second.errorTypeStr) { errTypeSet = errType.first; } } } if (errTypeSet < 0) { string suggestion = ""; size_t cost = SIZE_MAX; for (const auto& errType : _mlxlinkMaps->_pcieErrType) { if (!errType.second.errorTypeStr.empty()) { size_t leveCost = LevStrMatch(type, errType.second.errorTypeStr); if (leveCost < cost) { suggestion = errType.second.errorTypeStr; cost = leveCost; } } } if (type.size() <= suggestion.size()) { suggestion = ", do you mean \"" + suggestion + string("\"?\n"); } else { suggestion = ". "; } throw MlxRegException("Invalid Error Type %s%sValid error types are [%s]", type.c_str(), suggestion.c_str(), getValidErrorTypes().c_str()); } request.errorType = (u_int32_t)errTypeSet; // Error duration validity check PcieErrType errTypeSt = _mlxlinkMaps->_pcieErrType[errTypeSet]; request.errorDuration = errTypeSt.defaultErrDuration; request.injectionDelay = errTypeSt.defaultInjDelay; if (duration != -1 && !errTypeSt.errorDurationValid) { throw MlxRegException("The error_duration flag is not valid with error type %s", errTypeSt.errorTypeStr.c_str()); } else if (duration != -1) { if (((u_int32_t)duration) > errTypeSt.maxErrDuration || ((u_int32_t)duration) < errTypeSt.defaultErrDuration) { throw MlxRegException("Invalid error duration value for %s: %d", errTypeSt.errorTypeStr.c_str(), duration); } request.errorDuration = (u_int32_t)duration; } // Error parameter validity check if (params.size() > PCIE_MAX_ERR_PARAM) { throw MlxRegException("Invalid error parameters set for error type %s. %s", errTypeSt.errorTypeStr.c_str(), getNumOfValidParams(errTypeSt).c_str()); } for (u_int32_t idx = 0; idx < params.size(); idx++) { if (!errTypeSt.paramsValid[idx]) { throw MlxRegException("Invalid parameters list for error type %s, %s", errTypeSt.errorTypeStr.c_str(), getNumOfValidParams(errTypeSt).c_str()); } strToUint32((char*)params[idx].c_str(), (u_int32_t&)paramsSet[idx]); } if (request.errorType == PCIE_ERR_TYPE_UNEXPECTED_CPL && paramsSet[0] == 1 && paramsSet[1] > PCIE_MAX_DURATION_HW_COUNTERS) { throw MlxRegException("Invalid error parameter value: %d", paramsSet[1]); } memcpy(request.parameters, paramsSet, sizeof(paramsSet)); // dbdf validity check if (dbdf.empty() && errTypeSt.dbdfValid) { throw MlxRegException("The dbdf flag should be specified for error type %s", errTypeSt.errorTypeStr.c_str()); } if (!dbdf.empty() && !errTypeSt.dbdfValid) { throw MlxRegException("The dbdf flag is not valid with error type %s, It's valid with error types [%s]", errTypeSt.errorTypeStr.c_str(), getValidErrorTypes(true).c_str()); } if (!dbdf.empty()) { dbdfIntSet = getBDFInt(dbdf); if (dbdfIntSet == -1) { throw MlxRegException("Invalid dbdf address: %s", dbdf.c_str()); } } request.dbdf = (u_int32_t)dbdfIntSet; // Injection delay validity check if (injDelay != -1) { if (injDelay > PCIE_MAX_DURATION) { throw MlxRegException("Invalid injection delay value for %s: %d", errTypeSt.errorTypeStr.c_str(), injDelay); } request.injectionDelay = (u_int32_t)injDelay; } return request; } void MlxlinkErrInjCommander::startPcieErrInj(const DPN& dpn, const string& type, int duration, int injDelay, const string& dbdf, vector params) { MlxlinkRecord::printCmdLine("Starting PCIe Error Injection...", _jsonRoot); ReqParms req = validateErrType(type, duration, injDelay, params, dbdf); if (MlxlinkRecord::jsonFormat && !_force) { throw MlxRegException("Interactive mode is not available with JSON format, " "use --yes flag to force the execution"); } if (getUserConfirm("PCIe error injection might cause a PCIe bus failures or a system hang")) { sendPrmReg(ACCESS_REG_MPEINJ, GET, "depth=%d,pcie_index=%d,node=%d", dpn.depth, dpn.pcieIndex, dpn.node); if (getFieldValue("error_type") && req.errorType != 0) { throw MlxRegException("There is a PCIe error injection process in progress!"); } else { try { sendPrmReg(ACCESS_REG_MPEINJ, SET, "depth=%d,pcie_index=%d,node=%d,error_type=%d,error_duration=%d,start_delay=%d,dest_bdf=%d," "error_params_0=%d,error_params_1=%d,error_params_2=%d,error_params_3=%d", dpn.depth, dpn.pcieIndex, dpn.node, req.errorType, req.errorDuration, req.injectionDelay, req.dbdf, req.parameters[0], req.parameters[1], req.parameters[2], req.parameters[3]); } catch (MlxRegException& exc) { throw MlxRegException("Invalid PCIe error injection configuration: %s", exc.what()); } } } } mstflint-4.26.0/mlxlink/modules/mlxlink_commander.h0000644000175000017500000005345514522641732022721 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_COMMANDER_H #define MLXLINK_COMMANDER_H #include #include #include #ifndef MST_UL #include #else #include #endif #include #include "mlxlink_cables_commander.h" #include "mlxlink_eye_opener.h" #include "mlxlink_err_inj_commander.h" #include "mlxlink_port_info.h" #include "mlxlink_amBER_collector.h" #ifdef MST_UL #define MLXLINK_EXEC "mstlink" #define PKG_NAME "MSTFLINT" #define PKG_VER MSTFLINT_VERSION_STR #else #define MLXLINK_EXEC "mlxlink" #define PKG_NAME "MFT" #define PKG_VER MFT_VERSION_STR #endif //------------------------------------------------------------ // Mlxlink OPTIONS Flags #define HELP_FLAG "help" #define HELP_FLAG_SHORT 'h' #define VERSION_FLAG "version" #define VERSION_FLAG_SHORT 'v' #define DEVICE_FLAG "device" #define DEVICE_FLAG_SHORT 'd' #define LABEL_PORT_FLAG "port" #define LABEL_PORT_FLAG_SHORT 'p' #define PORT_TYPE_FLAG "port_type" #define PORT_TYPE_FLAG_SHORT ' ' #define DEPTH_FLAG "depth" #define DEPTH_FLAG_SHORT ' ' #define PCIE_INDEX_FLAG "pcie_index" #define PCIE_INDEX_FLAG_SHORT ' ' #define NODE_FLAG "node" #define NODE_FLAG_SHORT ' ' #define PRINT_JSON_OUTPUT_FLAG "json" #define PRINT_JSON_OUTPUT_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink QUERIES Flags #define PCIE_LINKS_FLAG "show_links" #define PCIE_LINKS_FLAG_SHORT ' ' #define MODULE_INFO_FLAG "show_module" #define MODULE_INFO_FLAG_SHORT 'm' #define BER_FLAG "show_counters" #define BER_FLAG_SHORT 'c' #define EYE_OPENING_FLAG "show_eye" #define EYE_OPENING_FLAG_SHORT 'e' #define FEC_DATA_FLAG "show_fec" #define FEC_DATA_FLAG_SHORT ' ' #define SLTP_SHOW_FLAG "show_serdes_tx" #define SLTP_SHOW_FLAG_SHORT ' ' #define DEVICE_DATA_FLAG "show_device" #define DEVICE_DATA_FLAG_SHORT ' ' #define BER_MONITOR_INFO_FLAG "show_ber_monitor" #define BER_MONITOR_INFO_FLAG_SHORT ' ' #define PEPC_SHOW_FLAG "show_external_phy" #define PEPC_SHOW_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink COMMANDS Flags #define PAOS_FLAG "port_state" #define PAOS_FLAG_SHORT 'a' #define PTYS_FLAG "speeds" #define PTYS_FLAG_SHORT 's' #define PPLR_FLAG "loopback" #define PPLR_FLAG_SHORT 'l' #define PPLM_FLAG "fec" #define PPLM_FLAG_SHORT 'k' #define FEC_SPEED_FLAG "fec_speed" #define FEC_SPEED_FLAG_SHORT ' ' #define SLTP_SET_FLAG "serdes_tx" #define SLTP_SET_FLAG_SHORT ' ' #define LANE_FLAG "serdes_tx_lane" #define LANE_FLAG_SHORT ' ' #define SLTP_TX_POLICY_FLAG "tx_params_override" #define SLTP_TX_POLICY_FLAG_SHORT ' ' #define DATABASE_FLAG "database" #define DATABASE_FLAG_SHORT ' ' #define PRBS_MODE_FLAG "test_mode" #define PRBS_MODE_FLAG_SHORT ' ' #define PPRT_PRBS_FLAG "rx_prbs" #define PPRT_PRBS_FLAG_SHORT ' ' #define PPTT_PRBS_FLAG "tx_prbs" #define PPTT_PRBS_FLAG_SHORT ' ' #define PPRT_RATE_FLAG "rx_rate" #define PPRT_RATE_FLAG_SHORT ' ' #define PPTT_RATE_FLAG "tx_rate" #define PPTT_RATE_FLAG_SHORT ' ' #define PRBS_LANES_FLAG "lanes" #define PRBS_LANES_FLAG_SHORT ' ' #define PRBS_INVERT_TX_POL_FLAG "invert_tx_polarity" #define PRBS_INVERT_TX_POL_FLAG_SHORT ' ' #define PRBS_INVERT_RX_POL_FLAG "invert_rx_polarity" #define PRBS_INVERT_RX_POL_FLAG_SHORT ' ' #define PPRT_TUNING_TYPE_FLAG "tuning_type" #define PPRT_TUNING_TYPE_FLAG_SHORT ' ' #define BER_COLLECT_FLAG "ber_collect" #define BER_COLLECT_FLAG_SHORT 'b' #define BER_LIMIT_FLAG "ber_limit" #define BER_LIMIT_FLAG_SHORT ' ' #define ITERATION_FLAG "iteration" #define ITERATION_FLAG_SHORT ' ' #define AMBER_COLLECT_FLAG "amber_collect" #define AMBER_COLLECT_FLAG_SHORT ' ' #define PPCNT_CLEAR_FLAG "pc" #define PPCNT_CLEAR_FLAG_SHORT ' ' #define PEPC_SET_FLAG "set_external_phy" #define PEPC_SET_FLAG_SHORT ' ' #define PEPC_FORCE_MODE_FLAG "twisted_pair_force_mode" #define PEPC_FORCE_MODE_FLAG_SHORT ' ' #define PEPC_AN_MODE_FLAG "twisted_pair_an_mode" #define PEPC_AN_MODE_FLAG_SHORT ' ' #define PTYS_LINK_MODE_FORCE_FLAG "link_mode_force" #define PTYS_LINK_MODE_FORCE_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink Cable info flags #define CABLE_FLAG "cable" #define CABLE_FLAG_SHORT ' ' #define CABLE_DUMP_FLAG "dump" #define CABLE_DUMP_FLAG_SHORT ' ' #define CABLE_DDM_FLAG "ddm" #define CABLE_DDM_FLAG_SHORT ' ' #define CABLE_WRITE_FLAG "write" #define CABLE_WRITE_FLAG_SHORT ' ' #define CABLE_READ_FLAG "read" #define CABLE_READ_FLAG_SHORT ' ' #define WRITE_PAGE_FLAG "page" #define WRITE_PAGE_FLAG_SHORT ' ' #define WRITE_OFFSET_FLAG "offset" #define WRITE_OFFSET_FLAG_SHORT ' ' #define READ_LEN_FLAG "length" #define READ_LEN_FLAG_SHORT ' ' #define CABLE_PRBS_SELECT "prbs_select" #define CABLE_PRBS_SELECT_SHORT ' ' #define CABLE_PRBS_MODE "prbs_mode" #define CABLE_PRBS_MODE_SHORT ' ' #define CABLE_PRBS_GEN_PAT "generator_pattern" #define CABLE_PRBS_GEN_PAT_SHORT ' ' #define CABLE_PRBS_GEN_SWAP "swap_generator" #define CABLE_PRBS_GEN_SWAP_SHORT ' ' #define CABLE_PRBS_GEN_INV "invert_generator" #define CABLE_PRBS_GEN_INV_SHORT ' ' #define CABLE_PRBS_GEN_LANES "generator_lanes" #define CABLE_PRBS_GEN_LANES_SHORT ' ' #define CABLE_PRBS_CH_PAT "checker_pattern" #define CABLE_PRBS_CH_PAT_SHORT ' ' #define CABLE_PRBS_CH_SWAP "swap_checker" #define CABLE_PRBS_CH_SWAP_SHORT ' ' #define CABLE_PRBS_CH_INV "invert_checker" #define CABLE_PRBS_CH_INV_SHORT ' ' #define CABLE_PRBS_CH_LANES "checker_lanes" #define CABLE_PRBS_CH_LANES_SHORT ' ' #define CABLE_PRBS_LANE_RATE "lane_rate" #define CABLE_PRBS_LANE_RATE_SHORT ' ' #define CABLE_PRBS_SHOW_DIAG "show_diagnostic_info" #define CABLE_PRBS_SHOW_DIAG_SHORT ' ' #define CABLE_PRBS_CLEAR_DIAG "clear_diagnostic_info" #define CABLE_PRBS_CLEAR_DIAG_SHORT ' ' #define CTRL_PARAM_FLAG "control_parameters" #define CTRL_PARAM_FLAG_SHORT ' ' #define CTRL_PARAM_TX_EQ_FLAG "tx_equalization" #define CTRL_PARAM_TX_EQ_FLAG_SHORT ' ' #define CTRL_PARAM_RX_EMPH_FLAG "rx_emphasis" #define CTRL_PARAM_RX_EMPH_FLAG_SHORT ' ' #define CTRL_PARAM_RX_POST_EMPH_FLAG "rx_post_emphasis" #define CTRL_PARAM_RX_POST_EMPH_FLAG_SHORT ' ' #define CTRL_PARAM_RX_AMP_FLAG "rx_amplitude" #define CTRL_PARAM_RX_AMP_FLAG_SHORT ' ' #define SHOW_TX_GROUP_MAP_FLAG "show_tx_group_map" #define SHOW_TX_GROUP_MAP_FLAG_SHORT ' ' #define SET_TX_GROUP_MAP_FLAG "tx_group_map" #define SET_TX_GROUP_MAP_FLAG_SHORT ' ' #define TX_GROUP_PORTS_FLAG "ports" #define TX_GROUP_PORTS_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink Eye Opener Flags #define MARGIN_SCAN_FLAG "margin" #define MARGIN_SCAN_FLAG_SHORT ' ' #define EYE_SEL_FLAG "eye_select" #define EYE_SEL_FLAG_SHORT ' ' #define EYE_MEASURE_TIME_FLAG "measure_time" #define EYE_MEASURE_TIME_FLAG_SHORT ' ' #define LANE_INDEX_FLAG "lane" #define LANE_INDEX_FLAG_SHORT ' ' #define FORCE_YES_FLAG "yes" #define FORCE_YES_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink Error Injection Flags #define PREI_RX_ERR_INJ_FLAG "rx_error_injection" #define PREI_RX_ERR_INJ_FLAG_SHORT ' ' #define PREI_MIXER_OFFSET_0 "mixer_offset0" #define PREI_MIXER_OFFSET_0_SHORT ' ' #define PREI_MIXER_OFFSET_1 "mixer_offset1" #define PREI_MIXER_OFFSET_1_SHORT ' ' #define PREI_SHOW_MIXERS_FLAG "show_mixers_offset" #define PREI_SHOW_MIXERS_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink PCIE Error Injection Flags #define MPEINJ_PCIE_ERR_INJ_FLAG "pcie_error_injection" #define MPEINJ_PCIE_ERR_INJ_FLAG_SHORT ' ' #define MPEINJ_ERR_TYPE_FLAG "error_type" #define MPEINJ_ERR_TYPE_FLAG_SHORT ' ' #define MPEINJ_ERR_DURATION_FLAG "error_duration" #define MPEINJ_ERR_DURATION_FLAG_SHORT ' ' #define MPEINJ_INJ_DELAY_FLAG "injection_delay" #define MPEINJ_INJ_DELAY_FLAG_SHORT ' ' #define MPEINJ_ERR_PARAMETERS_FLAG "error_parameters" #define MPEINJ_ERR_PARAMETERS_FLAG_SHORT ' ' #define MPEINJ_DBDF_FLAG "dbdf" #define MPEINJ_DBDF_FLAG_SHORT ' ' //------------------------------------------------------------ // Histogram Counters Flags #define PPHCR_FEC_HIST_FLAG "rx_fec_histogram" #define PPHCR_FEC_HIST_FLAG_SHORT ' ' #define PPHCR_SHOW_FEC_HIST_FLAG "show_histogram" #define PPHCR_SHOW_FEC_HIST_FLAG_SHORT ' ' #define PPHCR_CLEAR_HISTOGRAM_FLAG "clear_histogram" #define PPHCR_CLEAR_HISTOGRAM_FLAG_SHORT ' ' //------------------------------------------------------------ // Mlxlink HIDDEN Flags #define SLTP_SET_ADVANCED_FLAG "advanced" #define SLTP_SET_ADVANCED_FLAG_SHORT ' ' #define GVMI_ADDRESS_FLAG "gvmi_address" #define GVMI_ADDRESS_FLAG_SHORT ' ' #define LOG_FLAG "log" #define LOG_FLAG_SHORT ' ' //------------------------------------------------------------ #define REG_ACCESS_UNION_NODE "access_reg_summary" //------------------------------------------------------------ // Mlxlink commands enumerations enum OPTION_TYPE { SHOW_PDDR = 1, SHOW_PCIE, SHOW_BER, SHOW_EYE, SHOW_FEC, SHOW_SLTP, SHOW_SLRP, SHOW_MODULE, SHOW_DEVICE, SHOW_BER_MONITOR, SHOW_EXTERNAL_PHY, SHOW_LINK_DOWN_BLAME, SHOW_TX_GROUP_MAP, CABLE_SHOW_DUMP, CABLE_SHOW_DDM, CABLE_EEPROM_WRITE, CABLE_EEPROM_READ, CABLE_PRBS_CMDS, CABLE_CTRL_PARM, SEND_BER_COLLECT, SEND_AMBER_COLLECT, SEND_PAOS, SEND_PTYS, SEND_PPLM, SEND_PPLR, SEND_PRBS, SEND_SLTP, SEND_CLEAR_COUNTERS, SEND_PEPC, SHOW_PCIE_LINKS, SET_TX_GROUP_MAP, GRADE_SCAN_ENABLE, ERR_INJ_ENABLE, RS_FEC_HISTOGRAM, SLRG_TEST, PCIE_ERROR_INJ, // Any new function's index should be added before FUNCTION_LAST in this enum FUNCTION_LAST }; /////////// struct MODULE_FIELD { string uiName; string amberName; bool multiVal; bool perLane; bool requireDdm; }; using namespace std; class MlxlinkCommander : public MlxlinkRegParser { public: MlxlinkCommander(); virtual ~MlxlinkCommander(); void checkRegCmd(); void validatePortToLC(); virtual void validatePortType(const string& portTypeStr); void updatePortType(); void gearboxBlock(const string& option); void checkLocalPortDPNMapping(u_int32_t localPort); int getLocalPortFromMPIR(DPN& dpn); void checkValidFW(); u_int32_t getTechnologyFromMGIR(); void getProductTechnology(); bool checkPortStatus(u_int32_t localPort); void checkAllPortsStatus(); void handlePortStr(const string& portStr); void labelToLocalPort(); void labelToHCALocalPort(); void labeltoDSlocalPort(); bool isDSdevice(); void labelToSpectLocalPort(); void labelToQtm3LocalPort(); void labelToIBLocalPort(); bool isIBSplitReady(); u_int32_t calculatePanelPort(bool ibSplitReady); u_int32_t maxLocalPort(); void checkStrLength(const string& str); void getActualNumOfLanes(u_int32_t linkSpeedActive, bool extended); u_int32_t activeSpeed2gNum(u_int32_t mask, bool extended); string activeSpeed2Str(u_int32_t mask, bool extended); void getCableParams(); bool inPrbsTestMode(); bool checkGBPpaosDown(); bool checkPaosDown(); bool checkPpaosTestMode(); void getSltpParamsFromVector(std::vector sltpParams); void getprbsLanesFromParams(std::vector prbsLanesParams); std::vector parseParamsFromLine(const string& ParamsLine); bool isSpect2WithGb(); bool isIbLocalPortValid(u_int32_t localPort); void fillIbPortGroupMap(u_int32_t localPort, u_int32_t labelPort, u_int32_t group, bool splitReady); void fillEthPortGroupMap(u_int32_t localPort, u_int32_t labelPort, u_int32_t group, u_int32_t width, bool spect2WithGb); bool handleIBLocalPort(u_int32_t labelPort, bool ibSplitReady); bool handleEthLocalPort(u_int32_t labelPort, bool spect2WithGb); bool handleQTM3LocalPort(u_int32_t labelPort); void handleLabelPorts(std::vector labelPortsStr, bool skipException = false); vector localToPortsPerGroup(vector localPorts); u_int32_t getPortGroup(u_int32_t localPort); string getValuesOfActiveLanes(const string& row); bool checkIfModuleExtSupported(); // Mlxlink query functions virtual void showModuleInfo(); void prepareBerModuleInfoNdr(bool valid, const vector& moduleInfoFields); void pushSnrModuleInfoFields(bool valid); void runningVersion(); virtual void operatingInfoPage(); virtual void supportedInfoPage(); virtual void troubInfoPage(); void showPddr(); void getPtys(); virtual void showBer(); void prepare40_28_16nmEyeInfo(u_int32_t numOfLanesToUse); void prepare7nmEyeInfo(u_int32_t numOfLanesToUse); virtual void showEye(); virtual void showFEC(); virtual void showSltp(); void showDeviceData(); void showBerMonitorInfo(); void showExternalPhy(); void showPcie(); void showPcieLinks(); virtual void collectAMBER(); void collectBER(); void showTxGroupMapping(); // Query helper functions string getCableTechnologyStr(u_int32_t cableTechnology); string getCompliaceLabelForCIMIS(u_int32_t hostCompliance, u_int32_t mediaCompliance); string getComplianceLabel(u_int32_t compliance, u_int32_t extCompliance, bool ignoreExtBitChk = false); string getCableTypeStr(u_int32_t cableType); void prepareStaticInfoSection(bool valid); void prepareAttenuationAndFwSection(bool valid); void preparePowerAndCdrSection(bool valid); void prepareDDMSection(bool valid, bool isModuleExtSupported); virtual void preparePrtlSection(); void strToInt32(char* str, u_int32_t& value); template string getValueAndThresholdsStr(T value, Q lowTH, Q highTH); string getSltpFieldStr(const PRM_FIELD& field); void prepareSltpEdrHdrGen(vector>& sltpLanes, u_int32_t laneNumber); virtual void prepareSltpNdrGen(vector>& sltpLanes, u_int32_t laneNumber); virtual string getSltpHeader(); void startSlrgPciScan(u_int32_t numOfLanesToUse); void initValidDPNList(); u_int32_t readBitFromField(const string& fieldName, u_int32_t bitIndex); string getSupportedFecForSpeed(const string& speed); string fecMaskToUserInputStr(u_int32_t fecCapMask); string fecMaskToStr(u_int32_t mask); void showTestMode(); void showTestModeBer(); void showMpcntPerformance(DPN& dpn); void showMpcntTimers(DPN& dpn); void showMpcntLane(); void showPcieState(DPN& dpn); void checkPCIeValidity(); virtual void prepareBerInfo(); virtual void prepareBerInfoEDR(); virtual void getPcieNdrCounters(); virtual vector getBerFields(); std::map getPprt(); std::map getPptt(); std::map getRawEffectiveErrors(); std::map getRawEffectiveErrorsinTestMode(); int prbsModeToMask(const string& mode); string prbsMaskToMode(u_int32_t mask, u_int32_t modeSelector); string getPrbsModeRX(); u_int32_t getPrbsRateRX(); string getSupportedPrbsRates(u_int32_t modeSelector); string getSupportedPrbsModes(u_int32_t modeSelector); u_int32_t getLoopbackMode(const string& lb); string getLoopbackStr(u_int32_t loopbackCapMask); int getLinkDown(); float getRawBERLimit(); bool getResult(std::map errors_vector, float raw_ber_limit, int link_down); string getDevicePN(); virtual string getFwVersion(); void printOuptputVector(vector& cmdOut); virtual void prepareJsonOut(); // Cable operation bool isPassiveQSFP(); bool isSFP51Paging(); void initCablesCommander(); void initEyeOpener(); void initErrInj(); void initPortInfo(); void setAmBerCollectorFields(); virtual void initAmBerCollector(); void showCableDump(); void showCableDDM(); vector validateBytes(const vector& strBytes); void writeCableEEPROM(); void readCableEEPROM(); void performModulePrbsCommands(); void performControlParams(); MlxlinkCmdPrint _toolInfoCmd; MlxlinkCmdPrint _operatingInfoCmd; MlxlinkCmdPrint _supportedInfoCmd; MlxlinkCmdPrint _troubInfoCmd; MlxlinkCmdPrint _testModeInfoCmd; MlxlinkCmdPrint _moduleInfoCmd; MlxlinkCmdPrint _berInfoCmd; MlxlinkCmdPrint _testModeBerInfoCmd; MlxlinkCmdPrint _mpcntPerfInfCmd; MlxlinkCmdPrint _mpcntTimerInfCmd; MlxlinkCmdPrint _eyeOpeningInfoCmd; MlxlinkCmdPrint _fecCapInfoCmd; MlxlinkCmdPrint _sltpInfoCmd; MlxlinkCmdPrint _showDeviceInfoCmd; MlxlinkCmdPrint _showBerMonitorInfo; MlxlinkCmdPrint _extPhyInfoCmd; MlxlinkCmdPrint _linkBlameInfoCmd; MlxlinkCmdPrint _validPcieLinks; MlxlinkCmdPrint _cableDumpRawCmd; MlxlinkCmdPrint _cableDDMCmd; MlxlinkCmdPrint _portGroupMapping; // Mlxlink config functions void clearCounters(); void sendPaos(); void handlePrbs(); void sendPtys(); virtual void sendPplm(); void sendSltp(); void sendPplr(); void sendPepc(); void setTxGroupMapping(); void handleRxErrInj(); void handlePCIeErrInj(); // Config helper functions bool isForceDownSupported(); bool isPPHCRSupported(); void sendGBPaosCmd(PAOS_ADMIN adminStatus, bool forceDown); void sendPaosCmd(PAOS_ADMIN adminStatus, bool forceDown = false); void sendPaosDown(bool toggleCommand = false); void sendPaosUP(); void sendPaosToggle(); void checkPRBSModeCap(u_int32_t modeSelector, u_int32_t capMask); void checkPrbsRegsCap(const string& prbsReg, const string& laneRate); void checkPrbsPolCap(const string& prbsReg); void checkPprtPptt(); void checkPplrCap(); void sendPrbsPpaos(bool); void startTuning(); void prbsConfiguration(const string& prbsReg, bool enable, u_int32_t laneRate, u_int32_t prbsMode, bool perLaneConfig, bool prbsPolInv); void sendPprtPptt(); void resetPprtPptt(); u_int32_t ptysSpeedToMask(const string& speed); void validateSpeedStr(); void checkSupportedSpeed(const string& speed, u_int32_t cap, bool extSpeed = false); string speedToFecSpeedStr(const string& speed, u_int32_t numOfLanes); u_int32_t fecToBit(const string& fec, const string& speedStrG); u_int32_t getFecCapForCheck(const string& speedStr); void checkPplmCap(); string updateSltpEdrHdrFields(); string updateSltpNdrFields(); string getSltpStatus(); void getSltpAlevOut(u_int32_t lane); void getSltpRegAndLeva(u_int32_t lane); u_int32_t getLaneSpeed(u_int32_t lane); void validateNumOfParamsForNDRGen(); void checkSltpParamsSize(); bool isMpeinjSupported(); // Mlxlink params UserInput _userInput; dm_dev_id_t _devID; DPN _dpn; u_int32_t _numOfLanes; u_int32_t _numOfLanesPcie; u_int32_t _cableMediaType; u_int32_t _fecActive; u_int32_t _protoActive; u_int32_t _uniqueCmds; u_int32_t _uniqueCableCmds; u_int32_t _uniquePcieCmds; u_int32_t _networkCmds; u_int32_t _anDisable; u_int32_t _speedBerCsv; u_int32_t _cableIdentifier; u_int32_t _cableTechnology; u_int32_t _cableAtten12G; u_int32_t _cableLen; u_int32_t _activeSpeed; u_int32_t _activeSpeedEx; u_int32_t _protoCapability; u_int32_t _deviceCapability; u_int32_t _protoAdmin; u_int32_t _protoAdminEx; u_int32_t _productTechnology; u_int32_t _moduleNumber; u_int32_t _slotIndex; u_int32_t _linkSpeed; u_int32_t _groupOpcode; string _extAdbFile; string _device; string _fwVersion; string _speedStrG; string _speedForce; string _cablePN; string _cableSN; string _moduleTemp; bool _protoCapabilityEx; bool _linkUP; bool _prbsTestMode; bool _plugged; bool _linkModeForce; bool _useExtAdb; bool _ddmSupported; bool _cmisCable; bool _qsfpCable; bool _portPolling; bool _mngCableUnplugged; bool _isPam4Speed; bool _ignorePortType; bool _ignorePortStatus; bool _isGboxPort; bool _ignoreIbFECCheck; std::vector _ptysSpeeds; std::vector _localPortsPerGroup; std::vector _validDpns; string _allUnhandledErrors; Json::Value _jsonRoot; MlxlinkMaps* _mlxlinkMaps; MlxlinkCablesCommander* _cablesCommander; MlxlinkEyeOpener* _eyeOpener; MlxlinkErrInjCommander* _errInjector; MlxlinkPortInfo* _portInfo; MlxlinkAmBerCollector* _amberCollector; protected: vector _ppcntFields; }; #endif /* MLXLINK_COMMANDER_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_eye_opener.h0000644000175000017500000001300714522641732023073 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXLINK_EYE_OPENER_H #define MLXLINK_EYE_OPENER_H #include "mlxlink_reg_parser.h" #include #define TIME_DELTA 15 #define MAX_LM_TIME 45 #define LM_WAIT_TIME 3 #define MAX_NUMBER_OF_EYES 3 #define MAX_PROGRESS_VAL 85 #define MAX_NUMBER_OF_LANES 8 // SLRED Defaults #define DFLT_ERR_RES_SCALE 1 #define DFLT_ERR_RES_BASE 3 // SLRED PCIE Defaults #define DFLT_MSUR_TIME_PCIE 60 #define DFLT_EYE_DIAG_DIM_PCIE 3 #define MAX_ITERATION_SCAN_PCIE 3 // SLRED Network Defaults #define DFLT_MSUR_TIME_PORT 30 #define DFLT_EYE_DIAG_DIM_PORT 1 #define MAX_ITERATION_SCAN_PORT 1 #define CMD_TITLE "Eye Grades per lane info" enum SCAN_TIME { MEASURE_10_SEC, MEASURE_30_SEC, MEASURE_60_SEC, MEASURE_90_SEC, MEASURE_120_SEC, MEASURE_240_SEC, MEASURE_480_SEC, MEASURE_600_SEC, MEASURE_900_SEC }; enum EYE_SELECT { EYE_UP, EYE_MID, EYE_DOWN, EYE_ALL }; enum SCAN_STATUS { EYE_SCAN_NOT_PERFORMED, UNSUPPORTED_SCAN_FOR_CURRENT_SPEED, SYSTEM_BUSY, PERFORMING_EYE_SCAN, EYE_SCAN_COMPLETED, ERROR_EYE_SCAN_NOT_COMPLETED }; enum SLRED_LANE_SPEED { SLRED_LANE_SPEED_QDR = 2, SLRED_LANE_SPEED_FDR10 = 3, SLRED_LANE_SPEED_FDR = 4, SLRED_LANE_SPEED_EDR = 5, SLRED_LANE_SPEED_HDR = 6 }; enum MARGIN_VERSION { NO_MARGIN, FIGURE_OF_MERIT }; struct MarginInfo { u_int32_t lane, eye, value, status, version, iteration; MarginInfo() { lane = 0; eye = 0; value = 0; status = 0; version = 0; iteration = 0; } MarginInfo(u_int32_t iLane, u_int32_t iEye, u_int32_t iVal, u_int32_t iStatus, u_int32_t iVersion, u_int32_t iIteration) { lane = iLane; eye = iEye; value = iVal; status = iStatus; version = iVersion; iteration = iIteration; } }; using namespace std; class MlxlinkEyeOpener : public MlxlinkRegParser { public: MlxlinkEyeOpener(Json::Value& jsonRoot); virtual ~MlxlinkEyeOpener(); // Fields setters void setMeasureTime(u_int32_t measureTime); void setEyeSel(const string& eyeSel); void setNonInteractiveMode(bool force); // Eye scan starter function void enableGradeScan(); // Global fields should be taken from mlxlink_commander u_int32_t version; u_int32_t portType; u_int32_t depth; u_int32_t pcieIndex; u_int32_t node; u_int32_t protoActive; u_int32_t numOfLanes; u_int32_t scanIterations; bool isPam4Speed; int lane; string activeSpeedStr; private: // Helper functions void initSlredMaps(); void initWarMsgs(); void gradeEyeScanner(u_int32_t iteration, u_int32_t lane, u_int32_t eye); void laneEyesScanner(u_int32_t iteration, u_int32_t lane); void printField(const string& key, const string& val, bool newLine = true); void printTitle(const string& title); bool isActiveGenSupported(); void preChecks(); void printFinalResults(); string prepareSlred(u_int32_t lane, u_int32_t eye); void enableSlredGradeScan(u_int32_t lane, u_int32_t eye); void slredStopSignalHandler(); void getSlredMargin(u_int32_t iteration, u_int32_t lane, u_int32_t eye); u_int32_t getSlredStatus(u_int32_t lane, u_int32_t eye); string getSlredLaneSpeedStr(u_int32_t lane, u_int32_t eye); MarginInfo getMarginInfoFromVector(vector& margins, u_int32_t iteration, u_int32_t lane, u_int32_t eye); vector calculateAvgMargins(); void printAvgMargins(); void printMarginsSummary(); // Internal fields Json::Value& _jsonRoot; int _measureTime; int _eyeSel; u_int32_t _numOfEyes; bool _force; bool _oneLaneScan; bool _oneEyeScan; string _symWaiter; MlxlinkCmdPrint _cmdOut; vector _measuredMargins; vector _avgMargins; map _measureTimeMap; map _eyeSelctorMap; map _scanStatusMap; map _laneSpeedMap; }; #endif /* MLXLINK_EYE_OPENER_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_reg_parser.h0000644000175000017500000000563414522641732023101 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_REG_PARSER_H #define MLXLINK_REG_PARSER_H #include "mlxlink_utils.h" #include using namespace mlxreg; #define PDDR_STATUS_MESSAGE_LENGTH_HCA 236 #define PDDR_STATUS_MESSAGE_LENGTH_SWITCH 59 #define MAX_FIELDS_BUFFER 1024 class MlxlinkRegParser : public RegAccessParser { public: MlxlinkRegParser(); virtual ~MlxlinkRegParser(); virtual void resetParser(const string& regName); void readMCIA(u_int32_t page, u_int32_t size, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress); virtual void genBuffSendRegister(const string& regName, maccess_reg_method_t method); void writeGvmi(u_int32_t data); virtual void updateField(string field_name, u_int32_t value); void updateWithDefault(const string& fieldName, const string& fieldsStr, u_int32_t val); void setDefaultFields(const string& regName, const string& fieldsStr); void sendPrmReg(const string& regName, maccess_reg_method_t method, const char* fields, ...); void sendPrmReg(const string& regName, maccess_reg_method_t method); virtual u_int32_t getFieldValue(string field_name); string getFieldStr(const string& field); string getRawFieldValueStr(const string fieldName); u_int32_t getFieldSize(string field_name); string getAscii(const string& name, u_int32_t size = 4); u_int32_t _gvmiAddress; MlxRegLib* _regLib; mfile* _mf; u_int32_t _localPort; u_int32_t _pnat; u_int32_t _portType; bool _isHCA; }; #endif /* MLXLINK_REG_PARSER_H */ mstflint-4.26.0/mlxlink/modules/Makefile.am0000644000175000017500000000571314522641732021073 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = printutil USER_DIR = $(top_srcdir) COMMON_DIR = $(top_srcdir)/common MTCR_DIR = $(top_srcdir)/${MTCR_CONF_DIR} MTCR_INC_DIR = $(top_srcdir)/include/mtcr_ul UTILS_DIR = $(top_srcdir)/mft_utils MLXREG_DIR = $(top_srcdir)/mlxreg MLXLINK_MODULES_DIR = $(top_srcdir)/mlxlink AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxlink \ -I$(top_srcdir)/mlxreg AM_CPPFLAGS += $(JSON_CFLAGS) AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe #$(COMPILER_FPIC) noinst_LTLIBRARIES = libmodules_lib.la libmodules_lib_la_SOURCES = \ amber_field.cpp \ amber_field.h \ mlxlink_amBER_collector.cpp \ mlxlink_amBER_collector.h \ mlxlink_cables_commander.cpp \ mlxlink_cables_commander.h \ mlxlink_commander.cpp \ mlxlink_commander.h \ mlxlink_enums.h \ mlxlink_err_inj_commander.cpp \ mlxlink_err_inj_commander.h \ mlxlink_eye_opener.cpp \ mlxlink_eye_opener.h \ mlxlink_maps.cpp \ mlxlink_maps.h \ mlxlink_port_info.cpp \ mlxlink_port_info.h \ mlxlink_reg_parser.cpp \ mlxlink_reg_parser.h \ mlxlink_ui.cpp \ mlxlink_ui.h \ mlxlink_user_input.cpp \ mlxlink_user_input.h \ mlxlink_utils.cpp \ mlxlink_utils.h libmodules_lib_la_LIBADD = \ $(top_builddir)/mlxlink/modules/printutil/libprint_util_lib.la \ $(JSON_LIBS) mstflint-4.26.0/mlxlink/modules/mlxlink_eye_opener.cpp0000644000175000017500000004616414522641732023440 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mlxlink_eye_opener.h" MlxlinkEyeOpener::MlxlinkEyeOpener(Json::Value& jsonRoot) : _jsonRoot(jsonRoot) { _measureTime = -1; _eyeSel = -1; _numOfEyes = 0; _symWaiter = "-\\|/"; _oneLaneScan = false; _oneEyeScan = false; scanIterations = MAX_ITERATION_SCAN_PCIE; initSlredMaps(); } MlxlinkEyeOpener::~MlxlinkEyeOpener() {} void MlxlinkEyeOpener::initSlredMaps() { _measureTimeMap[MEASURE_10_SEC] = 10; _measureTimeMap[MEASURE_30_SEC] = 30; _measureTimeMap[MEASURE_60_SEC] = 60; _measureTimeMap[MEASURE_90_SEC] = 90; _measureTimeMap[MEASURE_120_SEC] = 120; _measureTimeMap[MEASURE_240_SEC] = 240; _measureTimeMap[MEASURE_480_SEC] = 480; _measureTimeMap[MEASURE_600_SEC] = 600; _measureTimeMap[MEASURE_900_SEC] = 900; _eyeSelctorMap[EYE_UP] = "UP"; _eyeSelctorMap[EYE_MID] = "MID"; _eyeSelctorMap[EYE_DOWN] = "DOWN"; _eyeSelctorMap[EYE_ALL] = "ALL"; _scanStatusMap[EYE_SCAN_NOT_PERFORMED] = "Eye scan was not performed"; _scanStatusMap[UNSUPPORTED_SCAN_FOR_CURRENT_SPEED] = "Unsupported scan for current speed"; _scanStatusMap[SYSTEM_BUSY] = "System busy"; _scanStatusMap[PERFORMING_EYE_SCAN] = "Performing eye scan"; _scanStatusMap[EYE_SCAN_COMPLETED] = "Eye scan completed"; _scanStatusMap[ERROR_EYE_SCAN_NOT_COMPLETED] = "Error, eye scan not completed"; _laneSpeedMap[SLRED_LANE_SPEED_QDR] = "QDR (10 Gb/s) / Gen3 (PCIe)"; _laneSpeedMap[SLRED_LANE_SPEED_FDR10] = "FDR10 (10GE / 40GE) (10.3125 Gb/s)"; _laneSpeedMap[SLRED_LANE_SPEED_FDR] = "FDR (56GE) (14.0625 Gb/s) / Gen4 (PCIe)"; _laneSpeedMap[SLRED_LANE_SPEED_EDR] = "EDR (25GE / 50GE / 100GE) (25.78125 Gb/s) / Gen5 (PCIe)"; _laneSpeedMap[SLRED_LANE_SPEED_HDR] = "HDR (50GE / 200GE / 400GE) (26.5625Gbd / 53.125Gb/s)"; } void MlxlinkEyeOpener::setMeasureTime(u_int32_t measureTime) { string timesStr = ""; for (map::iterator it = _measureTimeMap.begin(); it != _measureTimeMap.end(); it++) { if (it->second == measureTime) { _measureTime = it->first; break; } else { timesStr += to_string(it->second) + ","; } } if (_measureTime < 0) { string errorMsg = "Invalid measure time : " + to_string(measureTime); errorMsg += "\nValid measure times are [" + deleteLastChar(timesStr) + "]"; throw MlxRegException(errorMsg); } } void MlxlinkEyeOpener::setEyeSel(const string& eyeSel) { if (_pnat == PNAT_PCIE) { return; } string defaultEye = eyeSel; if (!eyeSel.empty()) { if (!isPam4Speed) { throw MlxRegException("Eye selection valid for PAM4 only"); } } else { defaultEye = "ALL"; } string eyeList = ""; for (map::iterator it = _eyeSelctorMap.begin(); it != _eyeSelctorMap.end(); it++) { if (it->second == defaultEye) { _eyeSel = it->first; break; } else { eyeList += it->second + ","; } } if (_eyeSel < 0) { string errorMsg = "Invalid eye : " + eyeSel; errorMsg += "\nValid eyes selection are [" + deleteLastChar(eyeList) + "]"; throw MlxRegException(errorMsg); } } void MlxlinkEyeOpener::setNonInteractiveMode(bool force) { _force = force; } void MlxlinkEyeOpener::initWarMsgs() { MlxlinkRecord::printCmdLine("Reading the SerDes receive eye grades", _jsonRoot); MlxlinkRecord::printWar("Link measurement or configuration change using Eye Opening may" " cause the link to fail and renegotiate.\nOn the PCI express port," " this may lead to link speed degradation or a system hang.", _jsonRoot); MlxlinkRecord::printWar("Eye Opening is a tool to quickly obtain link quality evaluation.\n" "It is not intended to replace extensive BER testing. the two evaluation mechanisms\n" "should be used in conjunction to guarantee the desired link quality.", _jsonRoot); u_int32_t eyeSelectTime = _measureTimeMap[_measureTime]; u_int32_t totalEysScanTime = eyeSelectTime * (_eyeSel != MAX_NUMBER_OF_EYES ? 1 : MAX_NUMBER_OF_EYES); if (lane >= 0) { numOfLanes = 1; } scanIterations = (_pnat == PNAT_PCIE) ? MAX_ITERATION_SCAN_PCIE : MAX_ITERATION_SCAN_PORT; u_int32_t totalScan = totalEysScanTime * numOfLanes * scanIterations; char scanTitle[64]; u_int32_t min = (u_int32_t)totalScan / 60; u_int32_t sec = (u_int32_t)totalScan % 60; if (min) { sprintf(scanTitle, "Estimated total scan time %02d minute\\s and %02d seconds", min, sec); } else { sprintf(scanTitle, "Estimated total scan time %02d seconds", sec); } MlxlinkRecord::printWar(scanTitle, _jsonRoot); } bool MlxlinkEyeOpener::isActiveGenSupported() { sendPrmReg(ACCESS_REG_MPEIN, GET, "depth=%d,pcie_index=%d,node=%d", depth, pcieIndex, node); return (getFieldValue("link_speed_active") >= GEN3); } string MlxlinkEyeOpener::prepareSlred(u_int32_t lane, u_int32_t eye) { string fields = "lane=" + to_string(lane); fields += ",measure_time=" + to_string(_measureTime); fields += ",err_res_scale=" + to_string(DFLT_ERR_RES_SCALE); fields += ",err_res_base=" + to_string(DFLT_ERR_RES_BASE); fields += ",eye_diag_dim=" + to_string((_pnat == PNAT_PCIE) ? DFLT_EYE_DIAG_DIM_PCIE : DFLT_EYE_DIAG_DIM_PORT); if (_pnat != PNAT_PCIE && isPam4Speed) { fields += ",eye_sel=" + to_string(eye); } return fields; } void MlxlinkEyeOpener::enableSlredGradeScan(u_int32_t lane, u_int32_t eye) { string fields = prepareSlred(lane, eye); if ((_numOfEyes == EYE_ALL && eye == EYE_DOWN) || (_numOfEyes != EYE_ALL)) { fields += ",last_scan=1"; } sendPrmReg(ACCESS_REG_SLRED, SET, "en=%d,%s", 1, fields.c_str()); } void MlxlinkEyeOpener::slredStopSignalHandler() { if (mft_signal_is_fired()) { string fields = prepareSlred(0, 0); sendPrmReg(ACCESS_REG_SLRED, SET, "abort=%d,%s", 1, fields.c_str()); printf("\n\n"); exit(1); } } void MlxlinkEyeOpener::getSlredMargin(u_int32_t iteration, u_int32_t lane, u_int32_t eye) { string fields = prepareSlred(lane, eye); sendPrmReg(ACCESS_REG_SLRED, SET, fields.c_str()); // put all margins in one vector for later calculations _measuredMargins.push_back(MarginInfo(lane, (_pnat != PNAT_PCIE && isPam4Speed) ? eye : 0, getFieldValue("margin"), getFieldValue("status"), getFieldValue("margin_version"), iteration)); } // Get the status of scan for specific lane\eye u_int32_t MlxlinkEyeOpener::getSlredStatus(u_int32_t lane, u_int32_t eye) { string fields = prepareSlred(lane, eye); sendPrmReg(ACCESS_REG_SLRED, GET, fields.c_str()); return getFieldValue("status"); } string MlxlinkEyeOpener::getSlredLaneSpeedStr(u_int32_t lane, u_int32_t eye) { string fields = prepareSlred(lane, eye); sendPrmReg(ACCESS_REG_SLRED, GET, fields.c_str()); return _laneSpeedMap[getFieldValue("lane_speed")]; } // Scan specific eye for specific lane with progress indicator void MlxlinkEyeOpener::gradeEyeScanner(u_int32_t iteration, u_int32_t lane, u_int32_t eye) { double measureTime = _measureTimeMap[_measureTime] + MAX_LM_TIME; u_int32_t currTime = 0; enableSlredGradeScan(lane, eye); // Throw error if the current speed not supported if (getSlredStatus(lane, eye) == UNSUPPORTED_SCAN_FOR_CURRENT_SPEED) { string errMsg = getSlredLaneSpeedStr(lane, eye).c_str(); errMsg = errMsg.empty() ? activeSpeedStr : errMsg; errMsg = _scanStatusMap[UNSUPPORTED_SCAN_FOR_CURRENT_SPEED] + ": " + errMsg; throw MlxRegException(errMsg); } u_int32_t status = getSlredStatus(lane, eye); if (status != EYE_SCAN_COMPLETED) { while ((status == SYSTEM_BUSY || status == PERFORMING_EYE_SCAN) && (currTime < measureTime)) { fprintf(MlxlinkRecord::stdOut, "\r"); printField("Scanning status", "", false); msleep(1000); try { status = getSlredStatus(lane, eye); } catch (MlxRegException& exp) { continue; } currTime++; fprintf(MlxlinkRecord::stdOut, "In progress %c", _symWaiter.at(currTime % (_symWaiter.length()))); fflush(MlxlinkRecord::stdOut); slredStopSignalHandler(); } } getSlredMargin(iteration, lane, eye); } // scan all grades per lane void MlxlinkEyeOpener::laneEyesScanner(u_int32_t iteration, u_int32_t lane) { if (isPam4Speed && _eyeSel == MAX_NUMBER_OF_EYES && _pnat != PNAT_PCIE) { // scan all eyes for (u_int32_t i = 0; i < MAX_NUMBER_OF_EYES; i++) { gradeEyeScanner(iteration, lane, i); slredStopSignalHandler(); } } else { // scan: specified eye, pcie margin, or NRZ scan gradeEyeScanner(iteration, lane, _eyeSel); } } void MlxlinkEyeOpener::printField(const string& key, const string& val, bool newLine) { // for JSON format if (MlxlinkRecord::jsonFormat && newLine) { setPrintVal(_cmdOut, key, val, ANSI_COLOR_RESET, true, true, true); } *MlxlinkRecord::cOut << key << std::setw(PDDR_LINE_LEN - key.length()) << ": "; if (newLine) { *MlxlinkRecord::cOut << val << std::endl; } } void MlxlinkEyeOpener::printTitle(const string& title) { *MlxlinkRecord::cOut << std::endl << title << std::endl; *MlxlinkRecord::cOut << std::string(title.length(), '-') << std::endl; } // eye scan is working for 16 nm devices only, and Gen4 pcie speeds void MlxlinkEyeOpener::preChecks() { if (MlxlinkRecord::jsonFormat && !_force) { throw MlxRegException("Interactive mode is not available with JSON format, " "use --yes flag to force the execution"); } if (version != PRODUCT_16NM) { throw MlxRegException("Device not supported!"); } if (_pnat == PNAT_PCIE) { if (!isActiveGenSupported()) { throw MlxRegException("The current link speed not supported (supports only Gen4)!"); } } else { if (!isPam4Speed) { _eyeSel = -1; } } if (lane != -1) { if ((u_int16_t)lane > (numOfLanes - 1)) { throw MlxRegException("Invalid lane index!"); } } } MarginInfo MlxlinkEyeOpener::getMarginInfoFromVector(vector& margins, u_int32_t iteration, u_int32_t lane, u_int32_t eye) { MarginInfo found; vector::iterator it = margins.begin(); for (; it != margins.end(); it++) { if (it->iteration == iteration && it->lane == lane && it->eye == eye) { found = *it; } } return found; } vector MlxlinkEyeOpener::calculateAvgMargins() { u_int32_t value = 0; u_int32_t count = 0; u_int32_t status = EYE_SCAN_COMPLETED; u_int32_t version = 1; MarginInfo margin; /* Execute the loop over the selected lane(perLane) if onLaneScan selected, * else go over all lanes * Execute the loop over the selected eye(perEye) if _eyeSel >= 0, * else go over all lanes */ u_int32_t perLane = _oneLaneScan ? (u_int32_t)this->lane : 0; u_int32_t perEye = _oneEyeScan ? (u_int32_t)_eyeSel : 0; for (u_int32_t lane = perLane; lane < numOfLanes || _oneLaneScan; lane++) { for (u_int32_t eye = perEye; eye < _numOfEyes || _oneEyeScan; eye++) { value = 0; count = 0; status = EYE_SCAN_COMPLETED; version = 1; for (u_int32_t i = 0; i < scanIterations; i++) { margin = getMarginInfoFromVector(_measuredMargins, i, lane, eye); if (margin.value != 0) { value += margin.value; count++; } else { status = margin.status; version = margin.version; } } _avgMargins.push_back(MarginInfo(lane, eye, count ? value / count : 0, count ? (u_int32_t)EYE_SCAN_COMPLETED : status, count ? (u_int32_t)FIGURE_OF_MERIT : version, 0)); if (_oneEyeScan) { break; } } if (_oneLaneScan) { break; } } return _avgMargins; } void MlxlinkEyeOpener::printAvgMargins() { bool valid = true; string val = ""; MarginInfo margin; /* Execute the loop over the selected lane(perLane) if onLaneScan selected, * else go over all lanes * Execute the loop over the selected eye(perEye) if _eyeSel >= 0, * else go over all lanes */ u_int32_t perLane = _oneLaneScan ? (u_int32_t)this->lane : 0; u_int32_t perEye = _oneEyeScan ? (u_int32_t)_eyeSel : 0; for (u_int32_t lane = perLane; lane < numOfLanes || _oneLaneScan; lane++) { val = ""; for (u_int32_t eye = perEye; eye < _numOfEyes || _oneEyeScan; eye++) { margin = getMarginInfoFromVector(_avgMargins, 0, lane, eye); valid = (margin.version != 0); val += (valid ? to_string(margin.value) : "err") + string("\t,"); if (_oneEyeScan) { break; } } printField("Lane " + to_string(lane) + " margin", val.substr(0, val.length() - 1)); if (_oneLaneScan) { break; } } } void MlxlinkEyeOpener::printMarginsSummary() { u_int32_t status = 0; char failureStr[128]; char laneIdxStr[64]; vector::iterator it = _avgMargins.begin(); MarginInfo finalMargin = *it; for (; it != _avgMargins.end(); it++) { status = it->status; if (status != EYE_SCAN_COMPLETED || (status == EYE_SCAN_COMPLETED && it->version == NO_MARGIN)) { sprintf(laneIdxStr, "Failure of lane %d", it->lane); if (_pnat != PNAT_PCIE && isPam4Speed) { sprintf(failureStr, "%s, %s eye", laneIdxStr, _eyeSelctorMap[it->eye].c_str()); } else { sprintf(failureStr, "%s", laneIdxStr); } printField(string(failureStr), (status == EYE_SCAN_COMPLETED && it->version == NO_MARGIN) ? "Margin not available" : _scanStatusMap[status]); } else { // find the minimum valid margin if ((it->value < finalMargin.value) || finalMargin.value == 0) { finalMargin = *it; } } } fprintf(MlxlinkRecord::stdOut, "\n"); string finalMarginValue = (finalMargin.value == 0 && finalMargin.version == 0) ? "N/A" : to_string(finalMargin.value); printField("Final margin", finalMarginValue); } // print the final grades and failure information if exists void MlxlinkEyeOpener::printFinalResults() { calculateAvgMargins(); printAvgMargins(); printMarginsSummary(); if (MlxlinkRecord::jsonFormat) { _cmdOut.toJsonFormat(_jsonRoot); cout << _cmdOut; } } // start eye scanner for all lanes void MlxlinkEyeOpener::enableGradeScan() { preChecks(); initWarMsgs(); setPrintTitle(_cmdOut, CMD_TITLE, numOfLanes + 10); if (askUser("Do you want to continue", _force)) { printTitle(CMD_TITLE); _numOfEyes = (_eyeSel != MAX_NUMBER_OF_EYES) ? 1 : MAX_NUMBER_OF_EYES; u_int32_t timePerLane = (_measureTimeMap[_measureTime]) * _numOfEyes * scanIterations; char timePerLaneStr[64]; char totalTimeStr[64]; sprintf(timePerLaneStr, "%02d:%02d", (u_int32_t)timePerLane / 60, (u_int32_t)timePerLane % 60); sprintf(totalTimeStr, "%02d:%02d", (u_int32_t)(timePerLane * numOfLanes) / 60, (u_int32_t)(timePerLane * numOfLanes) % 60); printField("Estimated Total Time [min:sec]", string(totalTimeStr)); if (lane >= 0) { _oneLaneScan = true; for (u_int32_t i = 0; i < scanIterations; i++) { laneEyesScanner(i, lane); } } else { for (u_int32_t i = 0; i < scanIterations; i++) { for (u_int32_t lane = 0; lane < numOfLanes; lane++) { laneEyesScanner(i, lane); slredStopSignalHandler(); } } } fprintf(MlxlinkRecord::stdOut, "\r"); printField("Scanning status", "Completed ", true); fflush(MlxlinkRecord::stdOut); if (_pnat != PNAT_PCIE && isPam4Speed) { char gradeTitle[64]; if (_eyeSel != EYE_ALL) { sprintf(gradeTitle, "%-8s", _eyeSelctorMap[_eyeSel].c_str()); _oneEyeScan = true; } else { sprintf(gradeTitle, "%-8s,%-8s,%-8s", "UP", "MID", "DOWN"); _oneEyeScan = false; } printField("Eye grade", string(gradeTitle)); } printFinalResults(); } else { MlxlinkRecord::printCmdLine("Operation canceled", _jsonRoot); } } mstflint-4.26.0/mlxlink/modules/mlxlink_maps.h0000644000175000017500000002541714522641732021711 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_MAPS_H #define MLXLINK_MAPS_H #include #include #include #include #include #include #include #include #include #include #include "mlxlink_user_input.h" #include "printutil/mlxlink_cmd_print.h" #include "mlxlink_enums.h" struct PortGroup { PortGroup() { localPort = 0; labelPort = 0; groupId = 0; split = 0; secondSplit = 0; } PortGroup(u_int32_t _localPort, u_int32_t _labelPort, u_int32_t _groupId, u_int32_t _split) { localPort = _localPort; labelPort = _labelPort; groupId = _groupId; split = _split; secondSplit = 0; } PortGroup(u_int32_t _localPort, u_int32_t _labelPort, u_int32_t _groupId, u_int32_t _split, u_int32_t _secondSplit) { localPort = _localPort; labelPort = _labelPort; groupId = _groupId; split = _split; secondSplit = _secondSplit; } u_int32_t localPort; u_int32_t labelPort; u_int32_t groupId; u_int32_t split; u_int32_t secondSplit; }; struct CAP_VALUE { CAP_VALUE() { capMask = 0; value = 0; name = ""; } CAP_VALUE(u_int32_t _cap, u_int32_t _val) { capMask = _cap; value = _val; name = ""; } CAP_VALUE(string _name, u_int32_t _cap, u_int32_t _val) { capMask = _cap; value = _val; name = _name; } u_int32_t capMask; u_int32_t value; string name; }; struct PRM_FIELD { string prmField; string uiField; u_int32_t fieldAccess; bool isSigned; }; class MlxlinkMaps { private: MlxlinkMaps(); static MlxlinkMaps* instance; void initPublicStrings(); void initPortStateMapping(); void initFecAndLoopbackMapping(); void ethSpeedMapping(); void extEthSpeedMapping(); void ibSpeedMapping(); void speedToLanesMapping(); void initPortSpeedMapping(); void initPrbsMapping(); void initPpbmcAndPepcMapping(); void initLinkDownInfoMapping(); void initSltpStatusMapping(); void qsfpComlianceMapping(); void cmisIbComlianceMapping(); void cimsCableBreakoutMapping(); void qsfpFarEndCableBreakoutMapping(); void qsfpNearEndCableBreakoutMapping(); void rxTxCdrCapMapping(); void sfpComplianceMapping(); void extComplianceMapping(); void hostComplianceMapping(); void mediaComplianceMapping(); void activeComplianceMapping(); void initCableComplianceMapping(); void initCableTechnologyMapping(); void initCablePowerClassMapping(); void cmisModuleStMapping(); void tempFlagsMapping(); void vccFlagsMapping(); void dataPathStateMapping(); void errorCodeResMapping(); void modulePrbsMapping(); void rxPowerTypeMapping(); void phyHstFsmHdrStateMapping(); void maxReadReqSizeMapping(); void pwrStatusMapping(); void portTypeMapping(); void linkPeerMaxSpeedMapping(); void portStateMapping(); void techMapping(); void pcieEnumMapping(); public: static MlxlinkMaps* getInstance(); virtual ~MlxlinkMaps(); std::map _pmFsmState; std::map _proFileFecInUse; std::map _ETHSpeed2gRate; std::map _IBSpeed2gRate; std::map _ibPhyFsmState; std::map _phyHstFsmNdrState; std::map _phyHstFsmHdrState; std::map _psiFsmState; std::map _retranModeActive; std::map _groupMap; std::map _prbsModesList; std::map _prbsLaneRateList; std::map _prbsLaneRate; std::map _prbsLaneRateCap; std::map _prbsTuningType; std::map _prbsEStatus; std::map _prbsPStatus; std::map _prbsRxTuningStatus; std::map _prbsLockStatus; std::map _prbsModulation; std::map _modulePrbsSt; std::map _modulePrbsSwapAdmin; std::map _modulePrbsInvAdmin; std::map _modulePrbsModulation; std::map _modulePrbsRateCapToStr; std::map _modulePrbsRateStrToCap; std::map _modulePMPDStatus; std::map _modulePrbsModeCapToStr; std::map _modulePrbsModeStrToCap; std::map _moduleScopeToStr; std::map _moduleRxAmp; std::map _moduleRxAmpCap; std::map _pepcStatus; std::map _IBSpeed2Str; std::map _EthExtSpeed2Str; std::map _IBSpeed2gNum; std::map _ETHSpeed2gNum; std::map _ETHSpeed2Str; std::map _EthExtSpeed2gNum; std::map _ETHSpeed2Lanes; std::map _ExtETHSpeed2Lanes; std::map _SLTPBadSetStatus2Str; std::map _SLTP16BadSetStatus2Str; std::map _SLTP7BadSetStatus2Str; std::map _SltpEdrParams; std::map _SltpHdrParams; std::map _SltpNdrParams; std::map _ethANFsmState; std::map _fecModeActive; std::map> _fecModeMask; std::vector> _fecPerSpeed; std::map> _loopbackModeList; std::map _anDisableList; std::map _tech; std::map _cableComplianceSfp; std::map _cableComplianceQsfp; std::map _cableComplianceCmisIb; std::map _tempFlags; std::map _vccFlags; std::map _dataPathSt; std::map _moduleOperSt; std::map _moduleErrType; std::map _errorCodeRes; std::map _cimsCableBreakout; std::map _qsfpNearEndCableBreakout; std::map _qsfpFarEndCableBreakout; std::map _cableComplianceExt; std::map _cmisHostCompliance; std::map _txInputFreq; std::map _rxTxCdrCap; std::map _rxPowerType; std::map _maxReadReqSize; std::map _pwrStatus; std::map _portType; std::map _linkPeerMaxSpeed; std::map _portState; std::map _downBlame; std::map _pdFsmState; std::map _pdFsmStateNdr; std::map _negModeActive; std::map _upReasonPwr; std::map _upReasonDrv; std::map _upReasonMng; std::map _fastLinkUpStatus; std::map _localReasonOpcode; std::map _cimsModuleSt; std::map _mmfCompliance; std::map _smfCompliance; std::map _activeCableCompliance; std::map _sfpQsfpPowerClass; std::map _sfpddPowerClass; std::map _qsfpddOsfpPowerClass; std::map _qsfpddPowerClassToValue; std::map _sfpddPowerClassToValue; std::map _cableTechnologyQsfp; std::map _cableTechnologySfp; std::map _ppbmcBerMonitorState; std::map _ppbmcBerMonitorType; std::map _pepcTwistedPairAn; std::map _pepcTwistedPairForceMode; std::map _pepcTwistedPairAnMode; std::map _pddrLinkDownBlame; std::map _pddrLinkDownE2EReasonOpcode; std::map _slrgTestStatus; std::map> _slrgTestFields; std::map _networkPorts; std::map _networkProtocols; std::map _rxUglState; std::map _txUglState; std::map _aeState; std::map _pllUglState; std::map _slrgFomMode; std::map _pcieDevStatus; std::map _pcieErrType; string _sltpHeader; string _showErrorsTitle; }; #endif /* MLXLINK_MAPS_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_err_inj_commander.h0000644000175000017500000000536414522641732024425 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_ERR_INJ_COMMANDER_H #define MLXLINK_ERR_INJ_COMMANDER_H #include "mlxlink_reg_parser.h" #define MAX_MIXER_OFFSET_0 0x7ff #define MAX_MIXER_OFFSET_1 0x3ff using namespace std; class MlxlinkErrInjCommander : public MlxlinkRegParser { public: MlxlinkErrInjCommander(Json::Value& jsonRoot); virtual ~MlxlinkErrInjCommander(); void showMixersOffset(); void updateMixerOffsets(); void showPcieErrInjState(const DPN& dpn); void startPcieErrInj(const DPN& dpn, const string& type, int duration, int injDelay, const string& dbdf, vector params); int _mixerOffset0; int _mixerOffset1; bool _force; MlxlinkMaps* _mlxlinkMaps; private: bool getUserConfirm(const string& msg); u_int16_t getMixerOffset(u_int32_t id); void setMixersOffset(); string getNumOfValidParams(PcieErrType& errTypeSt); string getDbdfUsage(); string getValidErrorTypes(bool perDbdf = false); string getPcieErrInjStatus(u_int32_t errorType); ReqParms validateErrType(const string& type, int duration, int injDelay, vector params, const string& dbdf); Json::Value& _jsonRoot; MlxlinkCmdPrint _errInjOutput; }; #endif /* MLXLINK_ERR_INJ_COMMANDER_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_utils.h0000644000175000017500000001522514522641732022105 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef MLXLINK_UTILS_H #define MLXLINK_UTILS_H #include "mlxlink_maps.h" #include #include #include using namespace std; enum CABLE_MULTIPLIER { CABLE_0_0_MUL, CABLE_0_1_MUL, CABLE_1_0_MUL, CABLE_1_1_MUL }; #if __cplusplus <= 199711L template std::string to_string(T toConvert) { std::stringstream out; out << toConvert; return out.str(); } #endif template bool isIn(const T& val, std::vector& vect) { auto it = find(vect.begin(), vect.end(), val); return (it != vect.end()); } u_int32_t findMaxKey(std::vector keys); string getCompliance(u_int32_t compliance, std::map complianceMap, bool bitMasked = false); string getComplianceIb(u_int32_t compliance, std::map complianceMap, bool bitMasked = false); void termHandler(int sig); string deleteLastChar(const string& s, u_int32_t numOfCharsToRemove = 1); string getStringFromVector(std::vector values); string getStringFromVector(std::vector values); float convertFloatPrec(float value); u_int64_t add32BitTo64(u_int32_t value1, u_int32_t value2); string getFullString(u_int64_t intVal); string status2Color(u_int32_t status); string getLoopbackColor(u_int32_t loopbackMode); string getAnDisableColor(u_int32_t anDisable); string IBSupportedSpeeds2Str(u_int32_t mask); string EthSupportedSpeeds2Str(u_int32_t int_mask); string EthExtSupportedSpeeds2Str(u_int32_t int_mask); string SupportedSpeeds2Str(u_int32_t proto_active, u_int32_t mask, bool extended = false); string getOui(u_int32_t oui); int getBitvalue(u_int32_t mask, int idx); string getPowerClass(MlxlinkMaps* mlxlinkMaps, u_int32_t cableIdentifier, u_int32_t powerClass, u_int32_t maxPower); int ptysSpeedToExtMaskETH(const string& speed); int ptysSpeedToMaskETH(const string& speed); int ptysSpeedToMaskIB(const string& speed); bool isPAM4Speed(u_int32_t speedMask, u_int32_t protoActive, bool extended = false); bool checkPaosCmd(const string& paosCmd); bool checkPepcForceMode(const string& forceMode); bool checkPepcANMode(const string& anMode); bool checkPplmCmd(const string& pplmCmd); bool checkPplrCmd(const string& pplrCmd); u_int32_t prbsMaskToRateNum(u_int32_t mask); string prbsMaskToLockStatus(u_int32_t mask, u_int32_t numOfLanesToUse); bool checkPrbsCmd(const string& prbsCmd); bool checkTestMode(const string& testMode); string FEC2Str(const string& fecShort, const string& speedStrG); string speedToFecSpeedStr(const string& speed, u_int32_t numOfLanes); PAOS_CMD paos_to_int(const string& cmd); int pepc_force_mode_to_int(const string& forceMode); int pepc_an_mode_to_int(const string& anMode); bool endsWith(const std::string& value, const std::string& ending); void findAndReplace(string& source, const string& find, const string& replace); string getCableIdentifier(u_int32_t identifier); bool isCMISCable(u_int32_t identifier); bool isQsfpCable(u_int32_t identifier); string getCmisCableType(u_int32_t cableType, u_int32_t cableLength); string getCableType(u_int32_t cableType); string getTemp(u_int32_t temp, int celsParam = 256); float getPower(u_int16_t power, bool isModuleExtSupported = false); int getHeight(u_int16_t height); int getPhase(u_int8_t phase); int getVersion(u_int8_t version); string getGroupStr(u_int32_t advancedOpcode); string toUpperCase(string& str); string toLowerCase(string& str); string getCableMedia(u_int32_t cableType); string pcieSpeedStr(u_int32_t linkSpeedActive); double mw_to_dbm(double x); string floatToStr(float num, int resolution = -1); int readSigned(u_int32_t value, u_int32_t fieldSize); int readSignedByte(u_int32_t value); void setPrintTitle(MlxlinkCmdPrint& mlxlinkCmdPrint, string title, u_int32_t size, bool print = true); void setPrintVal(MlxlinkCmdPrint& mlxlinkCmdPrint, string key, string value, string color = ANSI_COLOR_RESET, bool print = true, bool valid = true, bool arrayValue = false, bool colorKey = false); int getPrintRowIndex(MlxlinkCmdPrint& mlxlinkCmdPrint, const string& key); bool isNRZSpeed(u_int32_t speed, u_int32_t protocol); bool isSpeed25GPerLane(u_int32_t speed, u_int32_t protocol); string linkWidthMaskToStr(u_int32_t width); bool isSpeed50GPerLane(u_int32_t speed, u_int32_t protocol); bool isSpeed100GPerLane(u_int32_t speed, u_int32_t protocol); bool isSpeed200GPerLane(u_int32_t speed, u_int32_t protocol); bool askUser(const char* question, bool force = false); string getCableLengthStr(u_int32_t cableLength, bool cmisCable); string getRxTxCDRState(u_int32_t state, u_int32_t numOfLanes); string getModuleFwVersion(bool passive, u_int32_t moduleFWVer); string getVendorRev(u_int32_t rev); string getBDFStr(u_int32_t bdf); int getBDFInt(const string& bdfStr); size_t LevStrMatch(const string& s1, const string& s2); string getStrByValue(u_int32_t flags, map map); string getStrByMask(u_int32_t bitmask, map maskMap, const string& fieldSeparator = ","); string getStrByMaskFromPair(u_int32_t bitmask, map> maskMap, const string& fieldSeparator = ",", u_int32_t pairIndex = 0); #endif mstflint-4.26.0/mlxlink/modules/mlxlink_cables_commander.h0000644000175000017500000001722014522641732024220 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXLINK_CABLES_COMMANDER_H #define MLXLINK_CABLES_COMMANDER_H #include "mlxlink_reg_parser.h" typedef struct { float val; u_int16_t high_warn; u_int16_t low_warn; u_int16_t high_alarm; u_int16_t low_alarm; bool high_warn_flag; bool low_warn_flag; bool high_alarm_flag; bool low_alarm_flag; } ddm_threshold_t; typedef struct { ddm_threshold_t temperature; ddm_threshold_t voltage; ddm_threshold_t rx_power[8]; ddm_threshold_t tx_power[8]; ddm_threshold_t tx_bias[8]; int channels; } cable_ddm_q_t; #define LOWER_PAGE_OFFSET 0x0 #define UPPER_PAGE_OFFSET 0x80 #define EEPROM_MAX_BYTES 32 #define EEPROM_IDENTIFIER_BYTE_MASK 0xff #define I2C_ADDR_LOW 0x50 #define I2C_ADDR_HIGH 0x51 #define EEPROM_PAGE_LENGTH 255 #define CABLE_PAGE_SIZE 0x80 #define DWORD_BLOCK_SIZE 32 #define QSFP_CHANNELS 4 #define SFP_CHANNELS 1 #define DDM_THRES_B_SZ 2 #define CMIS_CHANNELS 8 #define CMIS_MODULE_CHANNEL 1 #define MAX_SFF_CODE_VALUE 15 #define EXTENDED_PAGES_1_2_10_11_ADDR 2 #define EXTENDED_PAGES_1_2_10_11_MASK 0x80 #define EXTENDED_PAGES_4_12_ADDR 155 #define EXTENDED_PAGES_4_12_MASK 0x40 #define EXTENDED_PAGES_13_14_ADDR 142 #define EXTENDED_PAGES_13_14_MASK 0x20 #define VOLT_UNIT 1000 #define MILLIVOLT_UNIT 10 #define DEFAULT_PRBS_MODE_STR "PRBS31" #define DEFAULT_PRBS_RATE_STR "HDR" typedef struct Page { u_int32_t page; u_int16_t offset; u_int16_t i2cAddress; } page_t; enum MODULE_PAGE { PAGE_0 = 0x0, PAGE_01 = 0x1, PAGE_02 = 0x2, PAGE_03 = 0x3, PAGE_04 = 0x4, PAGE_10 = 0x10, PAGE_11 = 0x11, PAGE_12 = 0x12, PAGE_13 = 0x13, PAGE_14 = 0x14, PAGE_20 = 0x20, PAGE_21 = 0x21, PAGE_LAST }; using namespace std; class MlxlinkCablesCommander : public MlxlinkRegParser { public: MlxlinkCablesCommander(Json::Value& jsonRoot); virtual ~MlxlinkCablesCommander(); vector getPagesToDump(); vector getCableDDM(); void writeToEEPROM(u_int16_t page, u_int16_t offset, vector& bytesToWrite); MlxlinkCmdPrint readFromEEPRM(u_int16_t page, u_int16_t offset, u_int16_t length); void handlePrbsTestMode(const string& ctrl, ModuleAccess_t moduleAccess); void showPrbsTestMode(); void showPrpsDiagInfo(); void clearPrbsDiagInfo(); void showControlParams(); void setControlParams(vector>& params); u_int32_t _moduleNumber; u_int32_t _slotIndex; u_int32_t _cableIdentifier; bool _sfp51Paging; bool _passiveQsfp; u_int32_t _numOfLanes; MlxlinkMaps* _mlxlinkMaps; map _modulePrbsParams; private: /**** MCIA helper funcitons ****/ void readMCIA(u_int32_t page, u_int32_t size, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress); void writeMCIA(u_int32_t page, u_int32_t size, u_int32_t numberOfZeroBytes, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress); void initValidPages(); void loadEEPRMPage(u_int32_t pageNum, u_int32_t offset, u_int8_t* data, u_int32_t i2cAddress = I2C_ADDR_LOW); void bytesToInt16(u_int16_t* bytes); void convertThreshold(ddm_threshold_t& field); void fixThresholdBytes(); void prepareDDMOutput(); /**** CMIS helper functions *******/ void getCmisModuleFlags(u_int32_t moduleOffset, u_int8_t* page0L); void getQsfpDdThresholds(u_int8_t* page2H); void getSfpDdThresholds(u_int8_t* page0H); void getQsfpDddLanesFlags(u_int8_t* page11H); void getSfpDddLanesFlags(u_int8_t* page0L); void getDdmValuesFromPddr(); void prepareQsfpddDdmInfo(); void prepareSfpddDdmInfo(); /**********************************/ void prepareQSFPDdmInfo(); void prepareSFPDdmInfo(); void prepareThresholdInfo(u_int8_t* page); void readCableDDMInfo(); void setPrintDDMFlagsSection(MlxlinkCmdPrint& cmdPrint, const ddm_threshold_t& flags, const string& flagGroup); string getDDMThresholdRow(u_int16_t temp, u_int16_t volt, u_int16_t rxPower, u_int16_t txPower, u_int16_t txBias); bool readFromPage(u_int8_t* pageBuffer, u_int32_t fieldOffset, void* data, u_int32_t size = 1); void addPageToOutputVector(u_int8_t* pageBuffer, u_int32_t page, u_int32_t offset, u_int32_t length); void checkParams(u_int16_t page, u_int16_t offset, u_int16_t length); u_int16_t getStatusBit(u_int32_t channel, u_int16_t val, u_int32_t statusMask); void getNumOfModuleLanes(); u_int32_t getRateAdminFromStr(u_int32_t cap, const string& rateStr); u_int32_t getModeAdminFromStr(u_int32_t cap, const string& adminStr, ModuleAccess_t moduleAccess); bool getInvAdminFromStr(u_int32_t cap, const string& invStr, ModuleAccess_t moduleAccess); bool getSwapAdminFromStr(u_int32_t cap, const string& swapStr, ModuleAccess_t moduleAccess); u_int32_t getLanesFromStr(u_int32_t cap, const string& lanesStr); void getPMPTConfiguration(ModuleAccess_t moduleAccess, vector& prbsPattern, vector& prbsRate, vector& prbsInv, vector& prbsSwap); void getPMPDInfo(vector& traffic, vector& errors, vector& ber, vector& snr); string getPMPDLockStatus(); void checkAndParsePMPTCap(ModuleAccess_t moduleAccess); u_int32_t getPMPTStatus(ModuleAccess_t moduleAccess); void sendPMPT(ModuleAccess_t moduleAccess); void enablePMPT(ModuleAccess_t moduleAccess); void disablePMPT(); u_int32_t pmcrStrToValue(ControlParam paramId, const string& value); string getPMCRCapValueStr(u_int32_t valueCap, ControlParam paramId); void checkPMCRFieldsCap(vector>& params); string buildPMCRRequest(ControlParam paramId, const string& value); Json::Value& _jsonRoot; vector _validPages; vector _pagesToDump; vector _cableDDMOutput; cable_ddm_q_t _cableDdm; u_int32_t _prbsRate; u_int32_t _prbsMode; bool _prbsInv; bool _prbsSwap; u_int32_t _prbsLanes; map> _modulePMCRParams; }; #endif /* MLXLINK_CABLES_COMMANDER_H */ mstflint-4.26.0/mlxlink/modules/mlxlink_commander.cpp0000644000175000017500000053276514522641732023262 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_commander.h" using namespace mlxreg; MlxlinkCommander::MlxlinkCommander() : _userInput() { _device = ""; _extAdbFile = ""; _localPort = 0; _portType = 0; _numOfLanes = MAX_LANES_NUMBER; _numOfLanesPcie = 0; _linkUP = false; _plugged = false; _linkModeForce = false; _prbsTestMode = false; _useExtAdb = true; _portPolling = false; _speedForce = ""; _anDisable = 0; _cableIdentifier = 0; _cableTechnology = 0; _cableAtten12G = 0; _cableLen = 0; _cablePN = "N/A"; _cableSN = "N/A"; _moduleTemp = "N/A"; _cableMediaType = 0; _moduleNumber = 0; _slotIndex = 0; _uniqueCmds = 0; _networkCmds = 0; _activeSpeed = 0; _activeSpeedEx = 0; _protoCapability = 0; _deviceCapability = 0; _linkSpeed = 0; _protoCapabilityEx = false; _ddmSupported = false; _cmisCable = false; _qsfpCable = false; _mngCableUnplugged = false; _isPam4Speed = false; _ignorePortType = true; _ignorePortStatus = true; _isGboxPort = false; _ignoreIbFECCheck = true; _protoAdmin = 0; _protoAdminEx = 0; _speedBerCsv = 0; _fecActive = 0; _protoActive = 0; _productTechnology = 0; _allUnhandledErrors = ""; _mlxlinkMaps = MlxlinkMaps::getInstance(); _cablesCommander = NULL; _eyeOpener = NULL; _errInjector = NULL; _portInfo = NULL; _amberCollector = NULL; _uniqueCableCmds = 0; _uniquePcieCmds = 0; _groupOpcode = MONITOR_OPCODE; } MlxlinkCommander::~MlxlinkCommander() { if (_cablesCommander) { delete _cablesCommander; } if (_eyeOpener) { delete _eyeOpener; } if (_errInjector) { delete _errInjector; } if (_portInfo) { delete _portInfo; } if (_amberCollector) { delete _amberCollector; } if (_gvmiAddress) { writeGvmi(0); } if (_mf) { mclose(_mf); } if (_regLib) { delete _regLib; } if (_mlxlinkMaps) { delete _mlxlinkMaps; } } void MlxlinkCommander::validatePortType(const string& portTypeStr) { _portType = NETWORK_PORT_TYPE; map::iterator it = _mlxlinkMaps->_networkPorts.find(portTypeStr); if (it == _mlxlinkMaps->_networkPorts.end()) { string errMsg = ""; for (it = _mlxlinkMaps->_networkPorts.begin(); it != _mlxlinkMaps->_networkPorts.end(); it++) { errMsg += it->first; if (it->second == NETWORK_PORT_TYPE) { errMsg += "(Default)"; } errMsg += ", "; } errMsg = deleteLastChar(errMsg, 2); throw MlxRegException("Invalid port type, valid port types are [" + errMsg + "]"); } else if (it->second != NETWORK_PORT_TYPE_LAST) { _portType = it->second; } if ((_portType == NETWORK_PORT_TYPE_NEAR) || (_portType == NETWORK_PORT_TYPE_IC_LR) || (_portType == NETWORK_PORT_TYPE_FAR)) { _isGboxPort = true; } if (_isGboxPort && !isDSdevice()) { throw MlxRegException("Port types of GEARBOX_HOST, INTERNAL_IC_LR and " "GEARBOX_LINE can be used with Switches supporting downstream devices only"); } } void MlxlinkCommander::gearboxBlock(const string& option) { if (_isGboxPort) { throw MlxRegException("--" + option + " flag is not applicable for " + _userInput._portType + " port type"); } } void MlxlinkCommander::checkRegCmd() { try { sendPrmReg(ACCESS_REG_PAOS, GET, "local_port=%d,swid=%d", _localPort, SWID); } catch (MlxRegException& exp) { throw MlxRegException("Problem accessing the device. Please verify that driver is up"); } throw MlxRegException("FW Version " + _fwVersion + " is not supported. Please update FW."); } void MlxlinkCommander::checkValidFW() { try { char fwVersion[32]; u_int32_t tmpLocalPort = _localPort; sendPrmReg(ACCESS_REG_MGIR, GET); sprintf(fwVersion, "%02d.%02d.%04d", getFieldValue("extended_major"), getFieldValue("extended_minor"), getFieldValue("extended_sub_minor")); _fwVersion = string(fwVersion); if (_userInput._pcie) { // Fw validity should be checked, so set the local port to 1. _localPort = 1; } try { sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d", PDDR_OPERATIONAL_INFO_PAGE); } catch (MlxRegException& exp) { if (exp.what_s() != "Please Provide Valid gvmi Address (--gvmi_address
)") { checkRegCmd(); } else { throw MlxRegException(exp); } } u_int32_t phyMngrFsmState = getFieldValue("phy_mngr_fsm_state"); sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d,group_opcode=%d", PDDR_TROUBLESHOOTING_INFO_PAGE, MONITOR_OPCODE); u_int32_t statusOpcode = getFieldValue("monitor_opcode"); if (phyMngrFsmState == 0 && statusOpcode == 0) { checkAllPortsStatus(); } _localPort = tmpLocalPort; } catch (const std::exception& exc) { throw MlxRegException(string("Checking valid firmware raised the following exception: ") + string(exc.what()) + string("\n")); } } u_int32_t MlxlinkCommander::getTechnologyFromMGIR() { sendPrmReg(ACCESS_REG_MGIR, GET); return getFieldValue("technology"); } void MlxlinkCommander::getProductTechnology() { _productTechnology = getTechnologyFromMGIR(); if (_productTechnology) { if (_productTechnology <= 2) { _productTechnology = PRODUCT_28NM; } } else { // Use SLRG to get the product technology, for backward compatibility try { sendPrmReg(ACCESS_REG_SLRG, GET); _productTechnology = getVersion(getFieldValue("version")); } catch (MlxRegException& exc) { if (!_productTechnology) { throw MlxRegException("Unable to get product technology: %s", exc.what_s().c_str()); } } } } u_int32_t MlxlinkCommander::maxLocalPort() { switch (_devID) { case DeviceSpectrum: return MAX_LOCAL_PORT_ETH; case DeviceSwitchIB: case DeviceSwitchIB2: return MAX_LOCAL_PORT_IB; case DeviceQuantum: return MAX_LOCAL_PORT_QUANTUM; case DeviceQuantum2: case DeviceBW00: return MAX_LOCAL_PORT_QUANTUM2; case DeviceQuantum3: return MAX_LOCAL_PORT_QUANTUM3; case DeviceSpectrum2: case DeviceSpectrum3: return MAX_LOCAL_PORT_SPECTRUM2; case DeviceSpectrum4: return MAX_LOCAL_PORT_SPECTRUM4; default: return 0; } return 0; } bool MlxlinkCommander::checkPortStatus(u_int32_t localPort) { sendPrmReg(ACCESS_REG_PDDR, GET, "local_port=%d,page_select=%d", localPort, PDDR_OPERATIONAL_INFO_PAGE); u_int32_t phyMngrFsmState = getFieldValue("phy_mngr_fsm_state"); sendPrmReg(ACCESS_REG_PDDR, GET, "local_port=%d,page_select=%d,group_opcode=%d", localPort, PDDR_TROUBLESHOOTING_INFO_PAGE, MONITOR_OPCODE); u_int32_t statusOpcode = getFieldValue("monitor_opcode"); if (!(phyMngrFsmState == 0 && statusOpcode == 0)) { return true; } return false; } void MlxlinkCommander::checkAllPortsStatus() { if (_isHCA) { checkRegCmd(); } if (_devID == DeviceSpectrum) { for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { sendPrmReg(ACCESS_REG_PMLP, GET, "local_port=%d", localPort); if (getFieldValue("width") == 0) { continue; } if (checkPortStatus(localPort)) { return; } } throw MlxRegException("FW Version " + _fwVersion + " is not supported. Please update FW."); } else if (dm_dev_is_ib_switch(_devID)) { for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { sendPrmReg(ACCESS_REG_PLIB, GET, "local_port=%d", localPort); if (getFieldValue("ib_port") == 0) { continue; } if (checkPortStatus(localPort)) { return; } } throw MlxRegException("FW Version " + _fwVersion + " is not supported. Please update FW."); } } void MlxlinkCommander::validatePortToLC() { bool isDownStreamDevValid = true; sendPrmReg(ACCESS_REG_PMLP, GET); u_int32_t slotIndex = getFieldValue("slot_index_0"); try { sendPrmReg(ACCESS_REG_MDDQ, GET, "query_type=%d,slot_index=%d", 1, slotIndex); } catch (MlxRegException& exc) { isDownStreamDevValid = false; } if (!isDownStreamDevValid) { if (slotIndex == 0 && _isGboxPort) { throw MlxRegException("No cards detected on the device."); } } else if (_isGboxPort) { if (getFieldValue("lc_ready") != 1) { throw MlxRegException("Invalid port number, Line card %d is not ready", slotIndex); } } } void MlxlinkCommander::handlePortStr(const string& portStr) { auto portParts = MlxlinkRecord::split(portStr, "/"); // validate arguments for (auto it = portParts.begin(); it != portParts.end(); it++) { if ((*it).empty()) { throw MlxRegException("Argument: %s is invalid.", portStr.c_str()); } } /* For Quantum-2: * portStr should represent: (cage/port/split) if split sign provided * (cage/port) if no split sign provided * For Other Switches: * portStr should represent: (port/split) if split sign provided * (port) if no split sign provided */ if (portParts.size() > 1) { strToUint32((char*)portParts[1].c_str(), _userInput._splitPort); _userInput._splitProvided = true; if (portParts.size() > SECOND_LEVEL_PORT_ACCESS) { // it's the split part of Quantum-2 (xx/xx/split) strToUint32((char*)portParts[2].c_str(), _userInput._secondSplitPort); _userInput._secondSplitProvided = true; } else if (portParts.size() > THIRD_LEVEL_PORT_ACCESS) { throw MlxRegException("Failed to handle option port"); } } strToUint32((char*)portParts[0].c_str(), _userInput._labelPort); _userInput._portSpecified = true; } void MlxlinkCommander::labelToLocalPort() { _pnat = _userInput._pcie ? PNAT_PCIE : PNAT_LOCAL; if (_isHCA && _userInput._pcie) { _dpn.depth = _userInput._depth; _dpn.pcieIndex = _userInput._pcieIndex; _dpn.node = _userInput._node; initValidDPNList(); if (_userInput._sendDpn) { int localPort = getLocalPortFromMPIR(_dpn); if (localPort >= 0) { _localPort = localPort; } else { throw MlxRegException("Invalid PCIe link: depth, pcie_index and node [%d, %d, %d]", _dpn.depth, _dpn.pcieIndex, _dpn.node); } } else if (_userInput._portSpecified) { checkLocalPortDPNMapping(_userInput._labelPort); _localPort = _userInput._labelPort; } else { if (!_validDpns.empty()) { _dpn = _validDpns[0]; // default DPN link } _localPort = _dpn.pcieIndex; if (_dpn.depth > 0) { _localPort = _dpn.node + DBN_TO_LOCAL_PORT_BASE; } } return; } if (_isHCA) { labelToHCALocalPort(); return; } else if (_userInput._pcie) { throw MlxRegException("No PCIE in Switch!"); } if (_devID == DeviceSpectrum || _devID == DeviceSpectrum2 || _devID == DeviceSpectrum3 || _devID == DeviceSpectrum4) { if (isDSdevice()) { labeltoDSlocalPort(); } else { labelToSpectLocalPort(); } } else if (dm_dev_is_ib_switch(_devID)) { if (_devID == DeviceQuantum3 || _devID == DeviceBW00) { labelToQtm3LocalPort(); } else { labelToIBLocalPort(); } } } bool MlxlinkCommander::isDSdevice() { bool isDownStreamDevValid = true; try { sendPrmReg(ACCESS_REG_MDDQ, GET, "query_type=1,slot_index=1"); } catch (MlxRegException& exc) { isDownStreamDevValid = false; } return isDownStreamDevValid; } void MlxlinkCommander::labeltoDSlocalPort() { u_int32_t lineCard = _userInput._labelPort; u_int32_t port = _userInput._splitPort; bool isLocalPortValid = false; if (_userInput._secondSplitProvided) { throw MlxRegException("No split supported for downstream devices"); } sendPrmReg(ACCESS_REG_MDDQ, GET, "query_type=%d,slot_index=%d", 1, lineCard); if (getFieldValue("lc_ready") != 1) { throw MlxRegException("Invalid port number, Line card %d is not ready", lineCard); } for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { try { sendPrmReg(ACCESS_REG_PLLP, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { continue; } if ((getFieldValue("label_port") == port) && (getFieldValue("slot_num") == lineCard)) { _localPort = localPort; _slotIndex = lineCard; isLocalPortValid = true; break; } } if (!isLocalPortValid) { throw MlxRegException("Invalid port number"); } } void MlxlinkCommander::checkLocalPortDPNMapping(u_int32_t localPort) { for (u_int32_t i = 0; i < _validDpns.size(); i++) { try { sendPrmReg(ACCESS_REG_MPIR, GET, "depth=%d,pcie_index=%d,node=%d", _validDpns[i].depth, _validDpns[i].pcieIndex, _validDpns[i].node); } catch (MlxRegException& exc) { continue; } if (getFieldValue("local_port") == localPort) { _dpn = _validDpns[i]; return; } } throw MlxRegException("Invalid PCIe local port to depth, pcie_index and node mapping: %d", localPort); } int MlxlinkCommander::getLocalPortFromMPIR(DPN& dpn) { if (!isIn(dpn, _validDpns)) { throw MlxRegException("Invalid PCIe link: depth, pcie_index and node [%d, %d, %d]", dpn.depth, dpn.pcieIndex, dpn.node); } int localPort = -1; if (!_userInput._portSpecified && !(dpn.depth == 0 && dpn.node == 0 && dpn.pcieIndex == 0)) { try { sendPrmReg(ACCESS_REG_MPIR, GET, "depth=%d,pcie_index=%d,node=%d", dpn.depth, dpn.pcieIndex, dpn.node); localPort = getFieldValue("local_port"); dpn.bdf = getBDFStr(getFieldValue("bdf0")); } catch (MlxRegException& exc) { } } else if (_userInput._portSpecified) { localPort = _userInput._labelPort; } else { localPort = 0; } return localPort; } void MlxlinkCommander::labelToHCALocalPort() { u_int32_t mtype = 0; mget_mdevs_type(_mf, &mtype); if (_userInput._splitProvided) { throw MlxRegException("No Splits in HCA!"); } else if (_userInput._labelPort > 1 && !(mtype & (MST_USB_DIMAX))) { throw MlxRegException("Please Provide the Physical Device of Port " + to_string(_userInput._labelPort)); } else if (_userInput._labelPort > 1 && (mtype & (MST_USB_DIMAX))) { if (_userInput._labelPort == 2) { if (_userInput._gvmiAddress == 0) { throw MlxRegException("Please Provide Valid gvmi Address (--gvmi_address
)"); } } else { throw MlxRegException("Please Provide Valid Port Number (1/2)"); } } _localPort = 1; } void MlxlinkCommander::labelToSpectLocalPort() { if (_userInput._secondSplitProvided) { throw MlxRegException("Invalid port number!"); } if (_userInput._splitProvided) { if (_userInput._splitPort == 1) { throw MlxRegException("Invalid split number!"); } if (_userInput._splitPort > MAX_ETH_SW_SPLIT) { throw MlxRegException("Port %d/%d does not exist!", _userInput._labelPort, _userInput._splitPort); } } for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { try { sendPrmReg(ACCESS_REG_PLLP, GET, "local_port=%d", localPort); } catch (...) { } // access register will fail if local port does not exist if ((getFieldValue("label_port") == _userInput._labelPort) && (getFieldValue("split_num") == (_userInput._splitPort - 1))) { _localPort = localPort; break; } } if (!_localPort) { throw MlxRegException("Failed to find Local Port, please provide valid Port Number"); } } void MlxlinkCommander::labelToQtm3LocalPort() { u_int32_t cage_in = _userInput._labelPort; u_int32_t ipil_in = _userInput._splitProvided ? _userInput._splitPort : 1; u_int32_t split_in = _userInput._secondSplitProvided ? _userInput._secondSplitPort : 1; u_int32_t founded_local_port = 0; u_int32_t split_stat = 0; u_int32_t ipil_stat = 0; for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { try { sendPrmReg(ACCESS_REG_PLLP, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { continue; } ipil_stat = getFieldValue("ipil_stat"); split_stat = getFieldValue("split_stat"); if (ipil_in > (u_int32_t)(1 << ipil_stat)) { throw MlxRegException("Invalid inter-port number!"); } if (split_in > (u_int32_t)(1 << split_stat)) { throw MlxRegException("Invalid split number!"); } if (cage_in == getFieldValue("label_port") && (ipil_stat == 0 || ipil_in == getFieldValue("ipil_num")) && (split_stat == 0 || split_in == getFieldValue("split_num") - 1)) { founded_local_port = localPort; break; } } if (!founded_local_port) { throw MlxRegException("Invalid port number!"); } _localPort = founded_local_port; } void MlxlinkCommander::labelToIBLocalPort() { u_int32_t labelPort = _userInput._labelPort; bool ibSplitReady = isIBSplitReady() && (_devID == DeviceQuantum || _devID == DeviceQuantum2); if (_userInput._splitProvided && _devID != DeviceQuantum && _devID != DeviceQuantum2) { throw MlxRegException("No split in IB!"); } u_int32_t maxLabelPort = _devID == DeviceQuantum2 ? maxLocalPort() / 4 : _devID == DeviceQuantum ? maxLocalPort() / 2 - 1 : maxLocalPort(); if ((labelPort > maxLabelPort) || (_userInput._secondSplitProvided && _devID != DeviceQuantum2 && _devID != DeviceBW00) || (_userInput._splitPort > 2)) { throw MlxRegException("Invalid port number!"); } if (_devID == DeviceQuantum || _devID == DeviceQuantum2) { labelPort = calculatePanelPort(ibSplitReady); } for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { try { sendPrmReg(ACCESS_REG_PLIB, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { continue; // no reason to fail when one of the ports is not supported, such as in split mode. } if (getFieldValue("ib_port") == labelPort) { _localPort = localPort; return; } } if ((_devID == DeviceQuantum || _devID == DeviceQuantum2) && ibSplitReady) { string portStr = "Port " + to_string(_userInput._labelPort); string swSplitCmd = "module-type qsfp-split-2"; if (_devID == DeviceQuantum2) { portStr = portStr + "/" + to_string(_userInput._splitPort); swSplitCmd = "port-type split-2"; } throw MlxRegException( "%s is not splitted physically from switch side, Use this command to split it physically:\n" "interface ib %s", portStr.c_str(), swSplitCmd.c_str()); } } bool MlxlinkCommander::isIBSplitReady() { u_int32_t max_port = maxLocalPort(); for (u_int32_t localPort = 1; localPort <= max_port; localPort++) { try { sendPrmReg(ACCESS_REG_PLIB, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { continue; // no reason to fail when one of the ports is not supported, such as in split mode. } if (getFieldValue("ib_port") == max_port / 2) { return true; } } return false; } u_int32_t MlxlinkCommander::calculatePanelPort(bool ibSplitReady) { u_int32_t panelPort = _userInput._labelPort; // by default, the label port is equal to panel port if no split bool splitProvided = _devID == DeviceQuantum ? _userInput._splitProvided : _userInput._secondSplitProvided; u_int32_t split = _devID == DeviceQuantum ? _userInput._splitPort : _userInput._secondSplitPort; if (_devID == DeviceQuantum2) { // For Quantum-2, user should provide cage/port to access the ports in the cage // cage"panelPort"/port"_userInput._splitPort" is converted to label port according to the following equation: panelPort = 2 * panelPort + _userInput._splitPort - 2; } if (ibSplitReady) { // If split ready, then the panelPort mapping will be chaned if (!splitProvided) { panelPort = (panelPort * 2) - 1; // Access the main port (without providing the split) // For Quantum will be e.g (port/split): 2/1 // For Quantum-2 will be e.g (cage/port/split): 1/2/1 } else { if (split != 2) { throw MlxRegException("Invalid split number!"); } panelPort = 2 * panelPort; // Access the second port (with providing the split) // For Quantum will be e.g (port/split): 2/2 // For Quantum-2 will be e.g (cage/port/split): 1/2/2 } } else if (splitProvided) { throw MlxRegException("Split mode is not ready!" "\nThis command is used to set the split mode ready from switch side:" "\nsystem profile ib split-ready"); } return panelPort; } void MlxlinkCommander::checkStrLength(const string& str) { if (str.size() > MAX_INPUT_LENGTH) { throw MlxRegException("Argument: %s... is invalid.", str.substr(0, MAX_INPUT_LENGTH).c_str()); } } void MlxlinkCommander::getActualNumOfLanes(u_int32_t linkSpeedActive, bool extended) { if (_protoActive == IB) { sendPrmReg(ACCESS_REG_PTYS, GET, "proto_mask=%d", _protoActive); _numOfLanes = getFieldValue("ib_link_width_oper"); } else if (_protoActive == ETH) { if (_linkUP) { if (extended) { _numOfLanes = _mlxlinkMaps->_ExtETHSpeed2Lanes[linkSpeedActive]; } else { _numOfLanes = _mlxlinkMaps->_ETHSpeed2Lanes[linkSpeedActive]; } } else { sendPrmReg(ACCESS_REG_PMLP, GET); _numOfLanes = getFieldValue("width"); } } } u_int32_t MlxlinkCommander::activeSpeed2gNum(u_int32_t mask, bool extended) { if (extended) { return _mlxlinkMaps->_EthExtSpeed2gNum[mask]; } return (_protoActive == IB) ? _mlxlinkMaps->_IBSpeed2gNum[mask] : _mlxlinkMaps->_ETHSpeed2gNum[mask]; } string MlxlinkCommander::activeSpeed2Str(u_int32_t mask, bool extended) { if (extended) { return _mlxlinkMaps->_EthExtSpeed2Str[mask]; } return (_protoActive == IB) ? _mlxlinkMaps->_IBSpeed2Str[mask] : _mlxlinkMaps->_ETHSpeed2Str[mask]; } void MlxlinkCommander::getCableParams() { try { sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d", PDDR_MODULE_INFO_PAGE); _cableMediaType = getFieldValue("cable_type"); _cableIdentifier = getFieldValue("cable_identifier"); _cableTechnology = getFieldValue("cable_technology"); _plugged = (_cableMediaType != UNPLUGGED); _cableAtten12G = (_cableMediaType == PASSIVE) ? getFieldValue("cable_attenuation_12g") : 0; _cableLen = getFieldValue("cable_length"); _cablePN = getAscii("vendor_pn", 16); _cableSN = getAscii("vendor_sn", 16); _moduleTemp = getTemp(getFieldValue("temperature")); _cmisCable = isCMISCable(_cableIdentifier); _qsfpCable = isQsfpCable(_cableIdentifier); sendPrmReg(ACCESS_REG_PMLP, GET); _moduleNumber = getFieldValue("module_0"); } catch (const std::exception& exc) { _allUnhandledErrors += string("Getting cable parameters via PDDR raised the following exception: ") + string(exc.what()) + string("\n"); } } bool MlxlinkCommander::inPrbsTestMode() { try { bool res = checkPaosDown() && checkPpaosTestMode(); return res; } catch (const std::exception& exc) { _allUnhandledErrors += string("Checking in PRBS test mode raised the following exception: ") + string(exc.what()) + string("\n"); } return false; } bool MlxlinkCommander::checkGBPpaosDown() { sendPrmReg(ACCESS_REG_PPAOS, GET); return getFieldValue("phy_status") != PAOS_UP; } bool MlxlinkCommander::checkPaosDown() { if (_isGboxPort) { return checkGBPpaosDown(); } else { sendPrmReg(ACCESS_REG_PAOS, GET); u_int32_t paosOperStatus = getFieldValue("oper_status"); if (paosOperStatus == PAOS_DOWN) { return true; } return false; } } bool MlxlinkCommander::checkPpaosTestMode() { sendPrmReg(ACCESS_REG_PPAOS, GET); u_int32_t ppaosPhyTestModeStatus = getFieldValue("phy_test_mode_status"); if (ppaosPhyTestModeStatus == PHY_TEST_MODE_STATUS) { return true; } return false; } void MlxlinkCommander::getSltpParamsFromVector(std::vector sltpParams) { for (u_int32_t i = 0; i < sltpParams.size(); i++) { strToInt32((char*)sltpParams[i].c_str(), _userInput._sltpParams[i]); } } std::vector MlxlinkCommander::parseParamsFromLine(const string& ParamsLine) { std::vector paramVector; string param; stringstream stream(ParamsLine); while (getline(stream, param, ',')) { if (param == "") { throw MlxRegException("Wrong input format"); } paramVector.push_back(param.c_str()); } return paramVector; } void MlxlinkCommander::getprbsLanesFromParams(std::vector prbsLanesParams) { u_int32_t lane = 0; vector::iterator it = prbsLanesParams.begin(); while (it != prbsLanesParams.end()) { strToUint32((char*)(*it).c_str(), lane); _userInput._prbsLanesToSet[lane] = true; it++; } } bool MlxlinkCommander::handleIBLocalPort(u_int32_t labelPort, bool ibSplitReady) { bool isLabelPortValid = false; if ((_devID == DeviceQuantum2 || (_devID == DeviceQuantum && ibSplitReady))) { labelPort = 2 * labelPort - 1; } if ((_devID == DeviceQuantum2) && ibSplitReady) { labelPort = 2 * labelPort - 1; } for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { try { sendPrmReg(ACCESS_REG_PLIB, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { continue; } if (getFieldValue("ib_port") == labelPort) { fillIbPortGroupMap(localPort, labelPort, _userInput._setGroup, ibSplitReady); isLabelPortValid = true; break; } } return isLabelPortValid; } bool MlxlinkCommander::handleQTM3LocalPort(u_int32_t labelPort) { bool isLabelPortValid = false; for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { try { sendPrmReg(ACCESS_REG_PLLP, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { continue; } if (getFieldValue("label_port") == labelPort) { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, _userInput._setGroup, getFieldValue("ipil_num"), getFieldValue("split_num"))); isLabelPortValid = true; } } return isLabelPortValid; } bool MlxlinkCommander::handleEthLocalPort(u_int32_t labelPort, bool spect2WithGb) { bool isLabelPortValid = false; for (u_int32_t localPort = 1; localPort <= maxLocalPort(); localPort++) { sendPrmReg(ACCESS_REG_PMLP, GET, "local_port=%d", localPort); if (getFieldValue("width") == 0) { continue; } if (getFieldValue("module_0") + 1 == labelPort) { isLabelPortValid = true; fillEthPortGroupMap(localPort, labelPort, _userInput._setGroup, getFieldValue("width"), spect2WithGb); break; } } return isLabelPortValid; } void MlxlinkCommander::fillEthPortGroupMap(u_int32_t localPort, u_int32_t labelPort, u_int32_t group, u_int32_t width, bool spect2WithGb) { if (_ignorePortStatus) { if (!width) { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 0)); } } if (spect2WithGb) { switch (width) { case 2: _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 1)); _localPortsPerGroup.push_back(PortGroup(localPort + 1, labelPort, group, 2)); break; case 4: _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 0)); break; } } else { sendPrmReg(ACCESS_REG_PLLP, GET, "local_port=%d", localPort); u_int32_t splitStat = getFieldValue("split_stat"); if (splitStat == 0) { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 0)); } else { int found = 0; for (int i = 0; i < (int)(pow(2.0, (double)splitStat)) || found < (int)(pow(2.0, (double)splitStat)); i++) { try { sendPrmReg(ACCESS_REG_PMLP, GET, "local_port=%d", localPort + i); if (getFieldValue("width") == 0) { continue; } } catch (...) { continue; } _localPortsPerGroup.push_back(PortGroup(localPort + i, labelPort, group, found + 1)); found++; } } } } bool MlxlinkCommander::isIbLocalPortValid(u_int32_t localPort) { bool valid = true; try { sendPrmReg(ACCESS_REG_PLIB, GET, "local_port=%d", localPort); } catch (MlxRegException& exp) { valid = false; } return valid; } void MlxlinkCommander::fillIbPortGroupMap(u_int32_t localPort, u_int32_t labelPort, u_int32_t group, bool splitReady) { if (splitReady) { labelPort = (labelPort + 1) / 2; if (_devID == DeviceQuantum) { if (isIbLocalPortValid(localPort + 1)) { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 1)); _localPortsPerGroup.push_back(PortGroup(localPort + 1, labelPort, group, 2)); } else { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 1)); } } else if (_devID == DeviceQuantum2) { labelPort = (labelPort / 2) + 1; if (isIbLocalPortValid(localPort + 1)) { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 1, 1)); _localPortsPerGroup.push_back(PortGroup(localPort + 1, labelPort, group, 1, 2)); } else { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 1, 1)); } if (isIbLocalPortValid(localPort + 3)) { _localPortsPerGroup.push_back(PortGroup(localPort + 2, labelPort, group, 2, 1)); _localPortsPerGroup.push_back(PortGroup(localPort + 3, labelPort, group, 2, 2)); } else { _localPortsPerGroup.push_back(PortGroup(localPort + 2, labelPort, group, 2, 1)); } } } else { if (_devID == DeviceQuantum) { _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 0)); } else if (_devID == DeviceQuantum2) { labelPort = (labelPort / 2) + 1; _localPortsPerGroup.push_back(PortGroup(localPort, labelPort, group, 1)); _localPortsPerGroup.push_back(PortGroup(localPort + 2, labelPort, group, 2)); } } } bool MlxlinkCommander::isSpect2WithGb() { sendPrmReg(ACCESS_REG_MGPIR, GET); return getFieldValue("num_of_devices") > 0; } vector MlxlinkCommander::localToPortsPerGroup(vector localPorts) { u_int32_t labelPort = 0; vector labelPorts; vector labelPortsStr; string regName = ""; string labelPortField = ""; switch (_devID) { case DeviceSpectrum2: regName = ACCESS_REG_PMLP; labelPortField = "module_0"; break; case DeviceQuantum: case DeviceQuantum2: case DeviceBW00: regName = ACCESS_REG_PLIB; labelPortField = "ib_port"; break; case DeviceQuantum3: regName = ACCESS_REG_PLLP; labelPortField = "label_port"; break; default: regName = ACCESS_REG_PMLP; labelPortField = "module_0"; } for (vector::iterator it = localPorts.begin(); it != localPorts.end(); ++it) { try { sendPrmReg(regName, GET, "local_port=%d", *it); if (regName == ACCESS_REG_PMLP && getFieldValue("width") == 0) { continue; } labelPort = getFieldValue(labelPortField); labelPort = regName == ACCESS_REG_PMLP ? labelPort + 1 : labelPort; } catch (MlxRegException& exc) { continue; } labelPorts.push_back(labelPort); } sort(labelPorts.begin(), labelPorts.end()); for (vector::iterator it = labelPorts.begin(); it != labelPorts.end(); it++) { if (!isIn(to_string(*it), labelPortsStr)) { labelPortsStr.push_back(to_string(*it)); } } return labelPortsStr; } void MlxlinkCommander::handleLabelPorts(std::vector labelPortsStr, bool skipException) { u_int32_t labelPort = 0; bool isLabelPortValid = false; if (labelPortsStr.size() > maxLocalPort() && !skipException) { throw MlxRegException("The number of ports is invalid"); } bool ibSplitReady = (_devID == DeviceQuantum || _devID == DeviceQuantum2) ? isIBSplitReady() : false; bool spect2WithGb = (_devID == DeviceSpectrum2) ? isSpect2WithGb() : false; for (vector::iterator it = labelPortsStr.begin(); it != labelPortsStr.end(); ++it) { strToUint32((char*)(*it).c_str(), labelPort); if (_devID == DeviceSpectrum2 || _devID == DeviceSpectrum3 || _devID == DeviceSpectrum4) { isLabelPortValid = handleEthLocalPort(labelPort, spect2WithGb); } else if (_devID == DeviceQuantum || _devID == DeviceQuantum2) { isLabelPortValid = handleIBLocalPort(labelPort, ibSplitReady); } else if (_devID == DeviceQuantum3 || _devID == DeviceBW00) { isLabelPortValid = handleQTM3LocalPort(labelPort); } if (!isLabelPortValid && !skipException) { throw MlxRegException("Invalid port number %d!\n", labelPort); } } } string MlxlinkCommander::getCableTechnologyStr(u_int32_t cableTechnology) { string technologyStr = "N/A"; if (_cmisCable) { technologyStr = _mlxlinkMaps->_cableTechnologyQsfp[cableTechnology]; } else if (_qsfpCable) { technologyStr = _mlxlinkMaps->_cableTechnologyQsfp[(cableTechnology & 240) >> 4]; } else { technologyStr = _mlxlinkMaps->_cableTechnologySfp[(cableTechnology & 15)]; } return technologyStr; } string MlxlinkCommander::getCableTypeStr(u_int32_t cableType) { string cableTypeStr = "N/A"; cableTypeStr = getCableType(cableType); return cableTypeStr; } // Query functions void MlxlinkCommander::prepareStaticInfoSection(bool valid) { u_int32_t cableVendor = getFieldValue("cable_vendor"); string complianceStr = getComplianceLabel(getFieldValue("ethernet_compliance_code"), getFieldValue("ext_ethernet_compliance_code"), (cableVendor != NVIDIA && cableVendor != MELLANOX)); u_int32_t cableLength = getFieldValue("cable_length"); setPrintVal(_moduleInfoCmd, "Identifier", _plugged ? getCableIdentifier(_cableIdentifier) : "N/A", ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Compliance", complianceStr, ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Cable Technology", _plugged ? getCableTechnologyStr(_cableTechnology) : "N/A", ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Cable Type", getCableTypeStr(getFieldValue("cable_type")), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "OUI", _plugged ? getOui(cableVendor) : "N/A", ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Vendor Name", getAscii("vendor_name", 16), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Vendor Part Number", getAscii("vendor_pn", 16), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Vendor Serial Number", getAscii("vendor_sn", 16), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Rev", getVendorRev(getFieldValue("vendor_rev")), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Wavelength [nm]", (_cableMediaType == PASSIVE) ? "N/A" : to_string(getFieldValue("wavelength")), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Transfer Distance [m]", getCableLengthStr(cableLength, _cmisCable), ANSI_COLOR_RESET, true, valid); } void MlxlinkCommander::prepareAttenuationAndFwSection(bool valid) { string cableAttenuation = "N/A"; string attenuationTitle = "Attenuation (5g,7g,12g"; bool passive = _cableMediaType == PASSIVE; if (_cmisCable) { attenuationTitle += ",25g"; } attenuationTitle += ") [dB]"; if (_cableIdentifier != IDENTIFIER_SFP && _cableIdentifier != IDENTIFIER_QSA) { if (passive) { cableAttenuation = getFieldStr("cable_attenuation_5g") + "," + getFieldStr("cable_attenuation_7g") + "," + getFieldStr("cable_attenuation_12g"); if (_cmisCable) { cableAttenuation += "," + getFieldStr("cable_attenuation_25g"); } } } setPrintVal(_moduleInfoCmd, attenuationTitle, cableAttenuation, ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "FW Version", getModuleFwVersion(passive, getFieldValue("fw_version")), ANSI_COLOR_RESET, true, valid); } void MlxlinkCommander::preparePowerAndCdrSection(bool valid) { string rxCdrState = "N/A"; string txCdrState = "N/A"; if (getFieldValue("rx_cdr_cap") > 0) { rxCdrState = getRxTxCDRState(getFieldValue("rx_cdr_state"), _numOfLanes); } if (getFieldValue("tx_cdr_cap") > 0) { txCdrState = getRxTxCDRState(getFieldValue("tx_cdr_state"), _numOfLanes); } string powerClassStr = getPowerClass(_mlxlinkMaps, _cableIdentifier, getFieldValue("cable_power_class"), getFieldValue("max_power")); setPrintVal(_moduleInfoCmd, "Digital Diagnostic Monitoring", _ddmSupported ? "Yes" : "No", ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Power Class", (_plugged && _cableMediaType != PASSIVE) ? powerClassStr : "N/A", ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "CDR RX", _plugged ? rxCdrState : "N/A", ANSI_COLOR_RESET, true, valid, true); setPrintVal(_moduleInfoCmd, "CDR TX", _plugged ? txCdrState : "N/A", ANSI_COLOR_RESET, true, valid, true); setPrintVal(_moduleInfoCmd, "LOS Alarm", "N/A", ANSI_COLOR_RESET, true, valid); } void MlxlinkCommander::prepareDDMSection(bool valid, bool isModuleExtSupported) { std::vector rxPowerLane, txPowerLane, biasCurrentLane; float rxPowerHighTH; float rxPowerLowTH; float txPowerHighTH; float txPowerLowTH; u_int32_t tempNum = getFieldValue("temperature"); string temp = getTemp(tempNum); string tempHighTH = getTemp(getFieldValue("temperature_high_th")); string tempLowTH = getTemp(getFieldValue("temperature_low_th")); float voltage = getFieldValue("voltage") / 10.0; float voltageHighTH = getFieldValue("voltage_high_th") / 10.0; float voltageLowTH = getFieldValue("voltage_low_th") / 10.0; rxPowerHighTH = getPower(getFieldValue("rx_power_high_th"), isModuleExtSupported); rxPowerLowTH = getPower(getFieldValue("rx_power_low_th"), isModuleExtSupported); txPowerHighTH = getPower(getFieldValue("tx_power_high_th"), isModuleExtSupported); txPowerLowTH = getPower(getFieldValue("tx_power_low_th"), isModuleExtSupported); if (isModuleExtSupported) { rxPowerHighTH = convertFloatPrec(rxPowerHighTH); rxPowerLowTH = convertFloatPrec(rxPowerLowTH); txPowerHighTH = convertFloatPrec(txPowerHighTH); txPowerLowTH = convertFloatPrec(txPowerLowTH); } float biasLowTH = getFieldValue("tx_bias_low_th") / 500.0; float biasHighTH = getFieldValue("tx_bias_high_th") / 500.0; for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { string laneStr = to_string(lane); rxPowerLane.push_back(getPower(getFieldValue("rx_power_lane" + laneStr), isModuleExtSupported)); txPowerLane.push_back(getPower(getFieldValue("tx_power_lane" + laneStr), isModuleExtSupported)); biasCurrentLane.push_back(getFieldValue("tx_bias_lane" + laneStr) / 500.0); } setPrintVal(_moduleInfoCmd, "Temperature [C]", getValueAndThresholdsStr(temp, tempLowTH, tempHighTH), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Voltage [mV]", getValueAndThresholdsStr(voltage, voltageLowTH, voltageHighTH), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Bias Current [mA]", getValueAndThresholdsStr(getStringFromVector(biasCurrentLane), biasLowTH, biasHighTH), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Rx Power Current [dBm]", getValueAndThresholdsStr(getStringFromVector(rxPowerLane), rxPowerLowTH, rxPowerHighTH), ANSI_COLOR_RESET, true, valid); setPrintVal(_moduleInfoCmd, "Tx Power Current [dBm]", getValueAndThresholdsStr(getStringFromVector(txPowerLane), txPowerLowTH, txPowerHighTH), ANSI_COLOR_RESET, true, valid); } string MlxlinkCommander::getValuesOfActiveLanes(const string& row) { string newValue = row; auto valuesPerLane = MlxlinkRecord::split(newValue, ","); if (valuesPerLane.size() > 1) { valuesPerLane.erase(valuesPerLane.begin() + _numOfLanes, valuesPerLane.end()); newValue = getStringFromVector(valuesPerLane); } return newValue; } void MlxlinkCommander::pushSnrModuleInfoFields(bool valid) { vector fieldsToQuery; string snrMediaLanes = "N/A"; string snrHostLanes = "N/A"; try { vector moduleInfoFields = _amberCollector->getExtModuleStatus(); snrMediaLanes = AmberField::getValueFromFields(moduleInfoFields, "snr_media_lane", false); snrHostLanes = AmberField::getValueFromFields(moduleInfoFields, "snr_host_lane", false); if (snrMediaLanes.find("N/A") != string::npos) { snrMediaLanes = "N/A"; } else { findAndReplace(snrMediaLanes, "_", ","); snrMediaLanes = getValuesOfActiveLanes(snrMediaLanes); } if (snrHostLanes.find("N/A") != string::npos) { snrHostLanes = "N/A"; } else { findAndReplace(snrHostLanes, "_", ","); snrHostLanes = getValuesOfActiveLanes(snrHostLanes); } } catch (MlxRegException& excep) { } setPrintVal(_moduleInfoCmd, "SNR Media Lanes [dB]", snrMediaLanes, ANSI_COLOR_RESET, true, valid && _ddmSupported, true); setPrintVal(_moduleInfoCmd, "SNR Host Lanes [dB]", snrHostLanes, ANSI_COLOR_RESET, true, valid && _ddmSupported, true); } void MlxlinkCommander::prepareBerModuleInfoNdr(bool valid, const vector& moduleInfoFields) { vector fieldsToQuery; fieldsToQuery.push_back(MODULE_FIELD{"IB Cable Width", "ib_width", true, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Memory Map Revision", "Memory_map_rev", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Linear Direct Drive", "linear_direct_drive", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Cable Breakout", "cable_breakout", true, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"SMF Length", "smf_length", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"MAX Power", "max_power", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Cable Rx AMP", "cable_rx_amp", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Cable Rx Emphasis", "cable_rx_pre_emphasis", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Cable Rx Post Emphasis", "cable_rx_post_emphasis", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Cable Tx Equalization", "cable_tx_equalization", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Wavelength Tolerance", "wavelength_tolerance", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Module State", "Module_st", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"DataPath state [per lane]", "Dp_st_lane", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Rx Output Valid [per lane]", "rx_output_valid", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Nominal bit rate", "Nominal_Bit_Rate", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Rx Power Type", "Rx_Power_Type", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Manufacturing Date", "Date_Code", false, false, false}); fieldsToQuery.push_back( MODULE_FIELD{"Active Set Host Compliance Code", "Active_set_host_compliance_code", false, false, false}); fieldsToQuery.push_back( MODULE_FIELD{"Active Set Media Compliance Code", "Active_set_media_compliance_code", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Error Code Response", "error_code_response", false, false, false}); fieldsToQuery.push_back(MODULE_FIELD{"Module FW Fault", "Mod_fw_fault", false, false, true}); fieldsToQuery.push_back(MODULE_FIELD{"DataPath FW Fault", "Dp_fw_fault", false, false, true}); fieldsToQuery.push_back(MODULE_FIELD{"Tx Fault [per lane]", "tx_fault", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Tx LOS [per lane]", "tx_los", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Tx CDR LOL [per lane]", "tx_cdr_lol", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Rx LOS [per lane]", "rx_los", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Rx CDR LOL [per lane]", "rx_cdr_lol", true, true, true}); fieldsToQuery.push_back(MODULE_FIELD{"Tx Adaptive EQ Fault [per lane]", "tx_ad_eq_fault", true, true, true}); pushSnrModuleInfoFields(valid); string fieldValue = ""; for (auto it = fieldsToQuery.begin(); it != fieldsToQuery.end(); it++) { fieldValue = AmberField::getValueFromFields(moduleInfoFields, it->amberName, !it->perLane); if (it->multiVal) { findAndReplace(fieldValue, "_", ","); } if (it->perLane) { fieldValue = getValuesOfActiveLanes(fieldValue); } if (it->uiName == "Cable Rx Emphasis" && _cmisCable) { it->uiName += " (Pre)"; } setPrintVal(_moduleInfoCmd, it->uiName, fieldValue, ANSI_COLOR_RESET, true, it->requireDdm ? valid && _ddmSupported : valid, it->perLane); } } bool MlxlinkCommander::checkIfModuleExtSupported() { bool isModuleExtSupported = false; sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d , module_info_ext=0", PDDR_MODULE_INFO_PAGE); float rxPowerHighTH_fst = getFieldValue("rx_power_high_th"); sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d , module_info_ext=1", PDDR_MODULE_INFO_PAGE); float rxPowerHighTH_sec = getFieldValue("rx_power_high_th"); if (rxPowerHighTH_sec != rxPowerHighTH_fst) { isModuleExtSupported = true; } return isModuleExtSupported; } void MlxlinkCommander::showModuleInfo() { try { gearboxBlock(MODULE_INFO_FLAG); sendPrmReg(ACCESS_REG_PMAOS, GET, "module=%d,slot_index=%d", _moduleNumber, _slotIndex); u_int32_t oper_status = getFieldValue("oper_status"); bool isModuleExtSupported = checkIfModuleExtSupported(); setPrintTitle(_moduleInfoCmd, "Module Info", _productTechnology >= PRODUCT_16NM ? MODULE_INFO_AMBER : MODULE_INFO_LAST); bool valid = (_cableMediaType != UNIDENTIFIED) && _plugged; prepareStaticInfoSection(valid); prepareAttenuationAndFwSection(valid); preparePowerAndCdrSection(valid); prepareDDMSection(valid, isModuleExtSupported); if (_productTechnology >= PRODUCT_16NM) { preparePrtlSection(); initAmBerCollector(); _amberCollector->init(); vector moduleInfoFields = _amberCollector->getModuleStatus(); prepareBerModuleInfoNdr(valid, moduleInfoFields); } cout << _moduleInfoCmd; if (oper_status != 1) { MlxlinkRecord::printWar( "Warning: Cannot get module EEPROM information, module operation status is not 'plugged and enabled'", _jsonRoot); } } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing Module Info via PDDR raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::preparePrtlSection() { if (_userInput._advancedMode) { char rttFrmt[64]; bool isRttSupported = false; u_int16_t asicLatency = 0; u_int16_t moduleLatency = 0; bool valid = true; try { sendPrmReg(ACCESS_REG_PRTL, GET); } catch (const std::exception& exc) { valid = false; } if (valid) { u_int32_t rttLatencyInt = getFieldValue("round_trip_latency"); isRttSupported = rttLatencyInt && rttLatencyInt != 0xffffff; asicLatency = (u_int16_t)getFieldValue("local_phy_latency"); moduleLatency = (u_int16_t)getFieldValue("local_mod_dp_latency"); float rttLatency = ((float)rttLatencyInt) / ((float)getFieldValue("latency_res")); snprintf(rttFrmt, sizeof(rttFrmt), "%0.2f", rttLatency); } setPrintVal(_moduleInfoCmd, "Intra-ASIC Latency [ns]", to_string(asicLatency), ANSI_COLOR_RESET, true, valid && isRttSupported); setPrintVal(_moduleInfoCmd, "Module Datapath Latency [ns]", to_string(moduleLatency), ANSI_COLOR_RESET, true, asicLatency != 0); setPrintVal(_moduleInfoCmd, "Round Trip Latency [ns]", string(rttFrmt), ANSI_COLOR_RESET, true, moduleLatency != 0); } } string MlxlinkCommander::getCompliaceLabelForCIMIS(u_int32_t hostCompliance, u_int32_t mediaCompliance) { string complianceStr = "N/A"; string hostComplianceStr = ""; string mediaComplianceStr = ""; switch (_cableMediaType) { case PASSIVE: hostComplianceStr = _mlxlinkMaps->_cmisHostCompliance[hostCompliance]; break; case ACTIVE: mediaComplianceStr = _mlxlinkMaps->_activeCableCompliance[mediaCompliance]; hostComplianceStr = _mlxlinkMaps->_cmisHostCompliance[hostCompliance]; break; case OPTICAL_MODULE: if (_cableTechnology == TECHNOLOGY_850NM_VCSEL) { mediaComplianceStr = _mlxlinkMaps->_mmfCompliance[mediaCompliance]; } else if (_cableTechnology >= TECHNOLOGY_1310NM_VCSEL && _cableTechnology <= TECHNOLOGY_1550NM_EML) { mediaComplianceStr = _mlxlinkMaps->_smfCompliance[mediaCompliance]; } hostComplianceStr = _mlxlinkMaps->_cmisHostCompliance[hostCompliance]; break; } complianceStr = hostComplianceStr; if (!mediaComplianceStr.empty()) { complianceStr += "," + mediaComplianceStr; } return complianceStr; } string MlxlinkCommander::getComplianceLabel(u_int32_t compliance, u_int32_t extCompliance, bool ignoreExtBitChk) { string complianceLabel = "N/A"; if (_cmisCable) { complianceLabel = getCompliaceLabelForCIMIS(extCompliance, compliance); } else if (_protoActive == ETH) { if (_qsfpCable) { if (compliance) { complianceLabel = getCompliance(compliance, _mlxlinkMaps->_cableComplianceQsfp, true); if (ignoreExtBitChk || (compliance & QSFP_ETHERNET_COMPLIANCE_CODE_EXT)) { complianceLabel += !complianceLabel.empty() ? "," : ""; complianceLabel += getCompliance(extCompliance, _mlxlinkMaps->_cableComplianceExt); } } else if (ignoreExtBitChk) { complianceLabel = getCompliance(extCompliance, _mlxlinkMaps->_cableComplianceExt); } } else if (_cableIdentifier == IDENTIFIER_SFP || _cableIdentifier == IDENTIFIER_QSA) { if (compliance) { complianceLabel = getCompliance(compliance, _mlxlinkMaps->_cableComplianceSfp, true); } if (extCompliance) { complianceLabel = (compliance ? complianceLabel + ", " : "") + getCompliance(extCompliance, _mlxlinkMaps->_cableComplianceExt); } } } return complianceLabel; } string MlxlinkCommander::getSltpFieldStr(const PRM_FIELD& field) { string fieldStr = getFieldStr(field.prmField); if (field.isSigned) { fieldStr = to_string(readSigned(getFieldValue(field.prmField), getFieldSize(field.prmField))); } return MlxlinkRecord::addSpace(fieldStr, field.uiField.size() + 1, false); } void MlxlinkCommander::prepareSltpEdrHdrGen(vector>& sltpLanes, u_int32_t laneNumber) { map sltpParam = _mlxlinkMaps->_SltpEdrParams; if (_productTechnology == PRODUCT_16NM) { sltpParam = _mlxlinkMaps->_SltpHdrParams; } for (auto const& param : sltpParam) { if ((param.second.fieldAccess & FIELD_ACCESS_R) || (_userInput._advancedMode && (param.second.fieldAccess & FIELD_ACCESS_ADVANCED))) { sltpLanes[laneNumber].push_back(getSltpFieldStr(param.second)); } } } void MlxlinkCommander::prepareSltpNdrGen(std::vector>& sltpLanes, u_int32_t laneNumber) { if (isSpeed100GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { sltpLanes[laneNumber].push_back(getSltpFieldStr(_mlxlinkMaps->_SltpNdrParams[SLTP_NDR_FIR_PRE3])); sltpLanes[laneNumber].push_back(getSltpFieldStr(_mlxlinkMaps->_SltpNdrParams[SLTP_NDR_FIR_PRE2])); } else if (isSpeed50GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { sltpLanes[laneNumber].push_back(getSltpFieldStr(_mlxlinkMaps->_SltpNdrParams[SLTP_NDR_FIR_PRE2])); } sltpLanes[laneNumber].push_back(getSltpFieldStr(_mlxlinkMaps->_SltpNdrParams[SLTP_NDR_FIR_PRE1])); sltpLanes[laneNumber].push_back(getSltpFieldStr(_mlxlinkMaps->_SltpNdrParams[SLTP_NDR_FIR_MAIN])); sltpLanes[laneNumber].push_back(getSltpFieldStr(_mlxlinkMaps->_SltpNdrParams[SLTP_NDR_FIR_POST1])); } template string MlxlinkCommander::getValueAndThresholdsStr(T value, Q lowTH, Q highTH) { stringstream out; if (_ddmSupported) { out << value << " [" << lowTH << ".." << highTH << "]"; } else { out << "N/A"; } return out.str(); } void MlxlinkCommander::strToInt32(char* str, u_int32_t& value) { char* endp; value = strtol(str, &endp, 0); if (*endp) { throw MlxRegException("Argument: %s is invalid.", str); } } void MlxlinkCommander::runningVersion() { setPrintTitle(_toolInfoCmd, "Tool Information", TOOL_INFORMAITON_INFO_LAST, !_prbsTestMode); setPrintVal(_toolInfoCmd, "Firmware Version", getFwVersion(), ANSI_COLOR_GREEN, true, !_prbsTestMode); setPrintVal(_toolInfoCmd, "amBER Version", AMBER_VERSION, ANSI_COLOR_GREEN, _productTechnology >= PRODUCT_16NM, !_prbsTestMode); setPrintVal(_toolInfoCmd, PKG_NAME " Version", PKG_VER, ANSI_COLOR_GREEN, true, !_prbsTestMode); } void MlxlinkCommander::operatingInfoPage() { try { sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d", PDDR_OPERATIONAL_INFO_PAGE); u_int32_t phyMngrFsmState = getFieldValue("phy_mngr_fsm_state"); int loopbackMode = (phyMngrFsmState != PHY_MNGR_DISABLED) ? getFieldValue("loopback_mode") : -1; u_int32_t ethAnFsmState = getFieldValue("eth_an_fsm_state"); string color = MlxlinkRecord::state2Color(phyMngrFsmState == PHY_MNGR_RX_DISABLE ? YELLOW : (STATUS_COLOR)phyMngrFsmState); _protoActive = getFieldValue("proto_active"); _fecActive = getFieldValue("fec_mode_active"); _linkUP = (phyMngrFsmState == PHY_MNGR_ACTIVE_LINKUP); _portPolling = phyMngrFsmState == PHY_MNGR_POLLING; _protoCapability = getFieldValue("cable_ext_eth_proto_cap"); if (_protoActive == IB) { _protoCapability = getFieldValue("cable_link_speed_cap"); _activeSpeed = getFieldValue("link_speed_active"); _protoAdmin = (phyMngrFsmState != 0) ? getFieldValue("core_to_phy_link_proto_enabled") : getFieldValue("phy_manager_link_proto_enabled"); } getPtys(); bool extended = _activeSpeedEx && _protoAdminEx; _isPam4Speed = isPAM4Speed(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive, extended); _linkSpeed = extended ? _activeSpeedEx : _activeSpeed; _speedBerCsv = activeSpeed2gNum(_linkSpeed, extended); _speedStrG = activeSpeed2Str(_linkSpeed, extended); getActualNumOfLanes(_linkSpeed, extended); setPrintTitle(_operatingInfoCmd, "Operational Info", PDDR_OPERATIONAL_INFO_LAST, !_prbsTestMode); setPrintVal(_operatingInfoCmd, "State", getStrByValue(phyMngrFsmState, _mlxlinkMaps->_pmFsmState), color, true, !_prbsTestMode); setPrintVal(_operatingInfoCmd, "Physical state", getStrByValue(ethAnFsmState, _mlxlinkMaps->_ethANFsmState), color, !_prbsTestMode); setPrintVal(_operatingInfoCmd, "Speed", _speedStrG, color, !_prbsTestMode, _linkUP); setPrintVal(_operatingInfoCmd, "Width", to_string(_numOfLanes) + "x", color, !_prbsTestMode, _linkUP); setPrintVal(_operatingInfoCmd, "FEC", getStrByValue(_fecActive, _mlxlinkMaps->_fecModeActive), _mlxlinkMaps->_fecModeActive[_fecActive] == "" ? MlxlinkRecord::state2Color(0) : color, !_prbsTestMode, _linkUP); setPrintVal(_operatingInfoCmd, "Loopback Mode", _mlxlinkMaps->_loopbackModeList[loopbackMode].second, getLoopbackColor(loopbackMode), true, !_prbsTestMode && loopbackMode != -1); setPrintVal(_operatingInfoCmd, "Auto Negotiation", _mlxlinkMaps->_anDisableList[_anDisable] + _speedForce, getAnDisableColor(_anDisable), true, !_prbsTestMode); // Checking cable DDM capability sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d", PDDR_MODULE_INFO_PAGE); _ddmSupported = getFieldValue("temperature") && _numOfLanes; } catch (const std::exception& exc) { throw MlxRegException(string(exc.what())); } } void MlxlinkCommander::supportedInfoPage() { try { setPrintTitle(_supportedInfoCmd, HEADER_SUPPORTED_INFO, PDDR_SUPPORTED_INFO_LAST, !_prbsTestMode); u_int32_t speeds_mask = _protoAdminEx ? _protoAdminEx : _protoAdmin; string supported_speeds = SupportedSpeeds2Str(_protoActive, speeds_mask, (bool)_protoAdminEx); string color = MlxlinkRecord::supported2Color(supported_speeds); stringstream value; value << "0x" << std::hex << setfill('0') << setw(8) << speeds_mask << " (" << supported_speeds << ")" << setfill(' '); string extStr = ""; if (_protoCapabilityEx && _protoActive == ETH) { extStr = " (Ext.)"; } string title = "Enabled Link Speed" + extStr; setPrintVal(_supportedInfoCmd, title, value.str(), color, true, !_prbsTestMode, true); // Supported cable speed supported_speeds = SupportedSpeeds2Str(_protoActive, _protoCapability, _protoCapabilityEx); color = MlxlinkRecord::supported2Color(supported_speeds); value.str(""); value.clear(); value << "0x" << std::hex << setfill('0') << setw(8) << _protoCapability << " (" << supported_speeds << ")" << setfill(' '); title = "Supported Cable Speed" + extStr; setPrintVal(_supportedInfoCmd, title, value.str(), color, true, !_prbsTestMode, true); } catch (const std::exception& exc) { throw MlxRegException(string(exc.what())); } } void MlxlinkCommander::troubInfoPage() { try { sendPrmReg(ACCESS_REG_PDDR, GET, "page_select=%d,group_opcode=%d", PDDR_TROUBLESHOOTING_INFO_PAGE, _groupOpcode); u_int32_t monitorOpcode = getFieldValue("monitor_opcode"); string color = status2Color(monitorOpcode); setPrintTitle(_troubInfoCmd, "Troubleshooting Info", PDDR_TRUOBLESHOOTING_INFO_LAST, !_prbsTestMode); if (monitorOpcode == CABLE_IS_UNPLUGGED) { _mngCableUnplugged = true; } stringstream statusOp; statusOp << std::dec << monitorOpcode; setPrintVal(_troubInfoCmd, "Status Opcode", statusOp.str(), color, true, !_prbsTestMode); string groupOpcode = getGroupStr(monitorOpcode); setPrintVal(_troubInfoCmd, "Group Opcode", groupOpcode, color, true, !_prbsTestMode); string message = ""; char txt[16], c; u_int32_t message_buf; bool finalize = false; for (int i = 0; i < PDDR_STATUS_MESSAGE_LENGTH_SWITCH; i++) { string path = "status_message["; sprintf(txt, "%d", i); path.append(txt); path.append("]"); message_buf = getFieldValue(path); for (int k = 24; k > -1; k -= 8) { c = (char)(message_buf >> k); if (c == '\0') { finalize = true; break; } message.push_back(c); } if (finalize == true) { break; } } setPrintVal(_troubInfoCmd, "Recommendation", message, color, true, !_prbsTestMode); } catch (const std::exception& exc) { throw MlxRegException(string(exc.what())); } } void MlxlinkCommander::showPddr() { try { operatingInfoPage(); supportedInfoPage(); troubInfoPage(); runningVersion(); if (_prbsTestMode) { showTestMode(); } else { std::cout << _operatingInfoCmd; std::cout << _supportedInfoCmd; std::cout << _troubInfoCmd; std::cout << _toolInfoCmd; } } catch (const std::exception& exc) { throw MlxRegException(string("Showing PDDR raised the following exception: \n") + string(exc.what())); } } void MlxlinkCommander::getPtys() { sendPrmReg(ACCESS_REG_PTYS, GET, "proto_mask=%d", _protoActive); if (_protoActive == ETH) { _activeSpeedEx = getFieldValue("ext_eth_proto_oper"); _activeSpeed = getFieldValue("eth_proto_oper"); _protoAdmin = getFieldValue("eth_proto_admin"); _protoAdminEx = getFieldValue("ext_eth_proto_admin"); _protoCapabilityEx = getFieldValue("ext_eth_proto_capability"); _deviceCapability = _protoCapabilityEx ? getFieldValue("ext_eth_proto_capability") : getFieldValue("eth_proto_capability"); } else { _deviceCapability = getFieldValue("ib_proto_capability"); } _anDisable = getFieldValue("an_disable_admin"); if (_anDisable) { u_int32_t val = _protoAdminEx ? _protoAdminEx : _protoAdmin; _speedForce = " - " + SupportedSpeeds2Str(_protoActive, val, (bool)_protoAdminEx); } } void MlxlinkCommander::showTestMode() { std::map pprtMap = getPprt(); std::map ppttMap = getPptt(); setPrintTitle(_testModeInfoCmd, "Test Mode Info", TEST_MODE_INFO_LAST); setPrintVal(_testModeInfoCmd, "RX PRBS Mode", pprtMap["pprtPrbsMode"]); setPrintVal(_testModeInfoCmd, "TX PRBS Mode", ppttMap["ppttPrbsMode"]); setPrintVal(_testModeInfoCmd, "RX Lane Rate", pprtMap["pprtLaneRate"]); setPrintVal(_testModeInfoCmd, "TX Lane Rate", ppttMap["ppttLaneRate"]); setPrintVal(_testModeInfoCmd, "Tuning Status", pprtMap["pprtTuningStatus"]); setPrintVal(_testModeInfoCmd, "Lock Status", pprtMap["pprtLockStatus"]); cout << _testModeInfoCmd; } int MlxlinkCommander::prbsModeToMask(const string& mode) { // SQUARE_WAVE and SQUARE_WAVEA have the same enum string modeToCheck = mode; if (mode == "SQUARE_WAVE") { modeToCheck += "A"; } int mask = PRBS31; for (map::iterator it = _mlxlinkMaps->_prbsModesList.begin(); it != _mlxlinkMaps->_prbsModesList.end(); it++) { if (modeToCheck == it->second) { mask = it->first; break; } } return mask; } string MlxlinkCommander::prbsMaskToMode(u_int32_t mask, u_int32_t modeSelector) { string val = "N/A"; val = _mlxlinkMaps->_prbsModesList[mask]; if (modeSelector == PRBS_RX && mask == SQUARE_WAVEA) { val = deleteLastChar(val); // return SQUARE_WAVE without A } return val; } std::map MlxlinkCommander::getPprt() { std::map pprtMap; sendPrmReg(ACCESS_REG_PPRT, GET, "e=%d", PPRT_PPTT_ENABLE); u_int32_t statusMask = getFieldValue("prbs_lock_status"); statusMask |= (getFieldValue("prbs_lock_status_ext") << 4); pprtMap["pprtPrbsMode"] = prbsMaskToMode(getFieldValue("prbs_mode_admin"), PRBS_RX); pprtMap["pprtLaneRate"] = getStrByValue(getFieldValue("lane_rate_oper"), _mlxlinkMaps->_prbsLaneRateList); pprtMap["pprtTuningStatus"] = getStrByValue(getFieldValue("prbs_rx_tuning_status"), _mlxlinkMaps->_prbsRxTuningStatus); pprtMap["pprtLockStatus"] = prbsMaskToLockStatus(statusMask, _numOfLanes); return pprtMap; } std::map MlxlinkCommander::getPptt() { std::map ppttMap; sendPrmReg(ACCESS_REG_PPTT, GET, "e=%d", PPRT_PPTT_ENABLE); ppttMap["ppttPrbsMode"] = prbsMaskToMode(getFieldValue("prbs_mode_admin"), PRBS_TX); ppttMap["ppttLaneRate"] = getStrByValue(getFieldValue("lane_rate_admin"), _mlxlinkMaps->_prbsLaneRateList); return ppttMap; } void MlxlinkCommander::prepareBerInfo() { initAmBerCollector(); _amberCollector->init(); _ppcntFields = _amberCollector->getLinkStatus(); setPrintVal(_berInfoCmd, "Time Since Last Clear [Min]", AmberField::getValueFromFields(_ppcntFields, "Time_since_last_clear_[Min]"), ANSI_COLOR_RESET, true, _linkUP); if (_protoActive == IB) { setPrintVal(_berInfoCmd, "Symbol Errors", AmberField::getValueFromFields(_ppcntFields, "Symbol_Errors"), ANSI_COLOR_RESET, true, _linkUP); setPrintVal(_berInfoCmd, "Symbol BER", AmberField::getValueFromFields(_ppcntFields, "Symbol_BER"), ANSI_COLOR_RESET, true, _linkUP); } setPrintVal(_berInfoCmd, "Effective Physical Errors", AmberField::getValueFromFields(_ppcntFields, "Effective_Errors", true), ANSI_COLOR_RESET, true, _linkUP); setPrintVal(_berInfoCmd, "Effective Physical BER", AmberField::getValueFromFields(_ppcntFields, "Effective_BER"), ANSI_COLOR_RESET, true, _linkUP); string phyRawErr = AmberField::getValueFromFields(_ppcntFields, "Raw_Errors_lane", false); findAndReplace(phyRawErr, "_", ","); phyRawErr = getValuesOfActiveLanes(phyRawErr); setPrintVal(_berInfoCmd, "Raw Physical Errors Per Lane", phyRawErr, ANSI_COLOR_RESET, true, _linkUP, true); } void MlxlinkCommander::prepareBerInfoEDR() { char lastClearTimerBuff[64]; sendPrmReg(ACCESS_REG_PPCNT, GET, "grp=%d", PPCNT_STATISTICAL_GROUP); double lastClearTimer = (double)add32BitTo64(getFieldValue("time_since_last_clear_high"), getFieldValue("time_since_last_clear_low")) / 60000.0; sprintf(lastClearTimerBuff, "%.01f", lastClearTimer); string symbolErrors = to_string(add32BitTo64(getFieldValue("phy_symbol_errors_high"), getFieldValue("phy_symbol_errors_low"))); setPrintVal(_berInfoCmd, "Time Since Last Clear [Min]", lastClearTimerBuff, ANSI_COLOR_RESET, true, _linkUP); setPrintVal(_berInfoCmd, "Effective Physical Errors", symbolErrors, ANSI_COLOR_RESET, true, _linkUP); std::vector rawErrorsPerLane; string phy_raw_err = ""; for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { string laneStr = to_string(lane); phy_raw_err = to_string(add32BitTo64(getFieldValue("phy_raw_errors_lane" + laneStr + "_high"), getFieldValue("phy_raw_errors_lane" + laneStr + "_low"))); rawErrorsPerLane.push_back(phy_raw_err); } setPrintVal(_berInfoCmd, "Raw Physical Errors Per Lane", getStringFromVector(rawErrorsPerLane), ANSI_COLOR_RESET, true, _linkUP); setPrintVal(_berInfoCmd, "Effective Physical BER", getFieldStr("effective_ber_coef") + "E-" + getFieldStr("effective_ber_magnitude"), ANSI_COLOR_RESET, true, _linkUP); setPrintVal(_berInfoCmd, "Raw Physical BER", getFieldStr("raw_ber_coef") + "E-" + getFieldStr("raw_ber_magnitude"), ANSI_COLOR_RESET, true, _linkUP); } void MlxlinkCommander::showBer() { try { if (_prbsTestMode) { showTestModeBer(); return; } if (_userInput._pcie) { showMpcntPerformance(_dpn); return; } setPrintTitle(_berInfoCmd, "Physical Counters and BER Info", _productTechnology >= PRODUCT_16NM ? BER_INFO_NDR_LAST : BER_INFO_LAST); if (_productTechnology < PRODUCT_16NM) { prepareBerInfoEDR(); } else { prepareBerInfo(); setPrintVal(_berInfoCmd, "Raw Physical BER", AmberField::getValueFromFields(_ppcntFields, "Raw_BER"), ANSI_COLOR_RESET, true, _linkUP); } if (_protoActive == IB) { sendPrmReg(ACCESS_REG_PPCNT, GET, "grp=%d", PPCNT_IB_PORT_COUNTERS_GROUP); setPrintVal(_berInfoCmd, "Link Down Counter", getFieldStr("link_downed_counter"), ANSI_COLOR_RESET, true, _linkUP); setPrintVal(_berInfoCmd, "Link Error Recovery Counter", getFieldStr("link_error_recovery_counter"), ANSI_COLOR_RESET, true, _linkUP); } cout << _berInfoCmd; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing BER via PPCNT raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::showTestModeBer() { sendPrmReg(ACCESS_REG_PPCNT, GET, "grp=%d", PPCNT_STATISTICAL_GROUP); std::vector errors; for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { errors.push_back(to_string(add32BitTo64(getFieldValue("phy_raw_errors_lane" + to_string(lane) + "_high"), getFieldValue("phy_raw_errors_lane" + to_string(lane) + "_low")))); } char buff[64]; double val = (double)add32BitTo64(getFieldValue("time_since_last_clear_high"), getFieldValue("time_since_last_clear_low")) / 60000.0; sprintf(buff, "%.01f", val); setPrintTitle(_testModeBerInfoCmd, "Physical Counters and BER Info (PRBS)", TEST_MODE_BER_INFO_LAST); setPrintVal(_testModeBerInfoCmd, "Time Since Last Clear [Min]", buff); setPrintVal(_testModeBerInfoCmd, "PRBS Errors", getStringFromVector(errors)); setPrintVal(_testModeBerInfoCmd, "PRBS BER", getFieldStr("raw_ber_coef") + "E-" + getFieldStr("raw_ber_magnitude")); cout << _testModeBerInfoCmd; } void MlxlinkCommander::getPcieNdrCounters() { if (_productTechnology >= PRODUCT_16NM) { string berStr = to_string(getFieldValue("effective_ber_coef")) + "E-" + to_string(getFieldValue("effective_ber_magnitude")); setPrintVal(_mpcntPerfInfCmd, "Effective ber", berStr); } } void MlxlinkCommander::showMpcntPerformance(DPN& dpn) { sendPrmReg(ACCESS_REG_MPCNT, GET, "depth=%d,pcie_index=%d,node=%d,grp=%d", dpn.depth, dpn.pcieIndex, dpn.node, MPCNT_PERFORMANCE_GROUP); setPrintTitle(_mpcntPerfInfCmd, "Management PCIe Performance Counters Info", MPCNT_PERFORMANCE_INFO_LAST + 2); setPrintVal(_mpcntPerfInfCmd, "RX Errors", getFieldStr("rx_errors")); setPrintVal(_mpcntPerfInfCmd, "TX Errors", getFieldStr("tx_errors")); setPrintVal(_mpcntPerfInfCmd, "CRC Error dllp", getFieldStr("crc_error_dllp")); setPrintVal(_mpcntPerfInfCmd, "CRC Error tlp", getFieldStr("crc_error_tlp")); getPcieNdrCounters(); cout << _mpcntPerfInfCmd; } void MlxlinkCommander::checkPCIeValidity() { if (!_userInput._sendDpn) { if (_validDpns.size() == 0) { throw MlxRegException("No valid depth, node and pcie_index detected!"); } else if (_validDpns.size() == 1) { _dpn = _validDpns[0]; _localPort = getLocalPortFromMPIR(_dpn); } else if (_validDpns.size() > 1 && !_userInput._portSpecified) { throw MlxRegException("The --depth, --pcie_index and --node must be specified!"); } } } void MlxlinkCommander::prepare40_28_16nmEyeInfo(u_int32_t numOfLanes) { std::vector physicalGrades; std::vector heightLengths; std::vector phaseWidths; string phaseEONegStr = "N/A"; string offsetEONegStr = "N/A"; bool validPhaseHeight = _productTechnology <= PRODUCT_16NM || _userInput._pcie; string height_eo_pos("height_eo_pos"); string height_eo_neg("height_eo_neg"); string phase_eo_pos("phase_eo_pos"); string phase_eo_neg("phase_eo_neg"); if (_productTechnology == PRODUCT_16NM) { height_eo_pos.append("_mid"); height_eo_neg.append("_mid"); phase_eo_pos.append("_mid"); phase_eo_neg.append("_mid"); } for (u_int32_t lane = 0; lane < numOfLanes; lane++) { sendPrmReg(ACCESS_REG_SLRG, GET, "lane=%d", lane); physicalGrades.push_back(MlxlinkRecord::addSpaceForSlrg(to_string(getFieldValue("grade")))); if (validPhaseHeight) { int offsetEOPos = getHeight(getFieldValue(height_eo_pos)); int offsetEONeg = getHeight(getFieldValue(height_eo_neg)); if (_productTechnology == PRODUCT_16NM && (offsetEOPos + offsetEONeg) == 0) { offsetEONegStr = "N/A"; } else { offsetEONegStr = to_string(offsetEOPos + offsetEONeg); } int phaseEOPos = getPhase(getFieldValue(phase_eo_pos)); int phaseEONeg = getPhase(getFieldValue(phase_eo_neg)); if (_productTechnology == PRODUCT_16NM && (phaseEOPos + phaseEONeg) == 0) { phaseEONegStr = "N/A"; } else { phaseEONegStr = to_string(phaseEOPos + phaseEONeg); } } heightLengths.push_back(MlxlinkRecord::addSpaceForSlrg(offsetEONegStr)); phaseWidths.push_back(MlxlinkRecord::addSpaceForSlrg(phaseEONegStr)); } setPrintVal(_eyeOpeningInfoCmd, "Physical Grade", getStringFromVector(physicalGrades), ANSI_COLOR_RESET, true, true, true); setPrintVal(_eyeOpeningInfoCmd, "Height Eye Opening [mV]", getStringFromVector(heightLengths), ANSI_COLOR_RESET, true, true, true); setPrintVal(_eyeOpeningInfoCmd, "Phase Eye Opening [psec]", getStringFromVector(phaseWidths), ANSI_COLOR_RESET, true, true, true); } void MlxlinkCommander::startSlrgPciScan(u_int32_t numOfLanesToUse) { // Start EOM measurements per lane for (u_int32_t lane = 0; lane < numOfLanesToUse; lane++) { sendPrmReg(ACCESS_REG_SLRG, GET, "lane=%d,fom_measurment=%d", lane, SLRG_EOM_COMPOSITE); } // For each lane, wait until process finish for (u_int32_t lane = 0; lane < numOfLanesToUse; lane++) { u_int32_t it = 0; while (it < SLRG_PCIE_7NM_TIMEOUT) { sendPrmReg(ACCESS_REG_SLRG, GET, "lane=%d", lane); if (getFieldValue("status")) { break; } it++; msleep(SLRG_PCIE_7NM_SLEEP); } } } void MlxlinkCommander::prepare7nmEyeInfo(u_int32_t numOfLanesToUse) { std::vector legand, initialFom, lastFom, upperFom, midFom, lowerFom; u_int32_t status = 0; u_int32_t fomMeasurement = SLRG_EOM_NONE; if (!_userInput._pcie) { fomMeasurement = SLRG_EOM_COMPOSITE; if (!isNRZSpeed(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { fomMeasurement |= (SLRG_EOM_UPPER | SLRG_EOM_MIDDLE | SLRG_EOM_LOWER); } } else { startSlrgPciScan(numOfLanesToUse); } for (u_int32_t lane = 0; lane < numOfLanesToUse; lane++) { status = 0; sendPrmReg(ACCESS_REG_SLRG, GET, "lane=%d,fom_measurment=%d", lane, fomMeasurement); status = getFieldValue("status"); initialFom.push_back(MlxlinkRecord::addSpaceForSlrg(status ? getFieldStr("initial_fom") : "N/A")); lastFom.push_back(MlxlinkRecord::addSpaceForSlrg(status ? getFieldStr("last_fom") : "N/A")); upperFom.push_back(MlxlinkRecord::addSpaceForSlrg(status ? getFieldStr("upper_eye") : "N/A")); midFom.push_back(MlxlinkRecord::addSpaceForSlrg(status ? getFieldStr("mid_eye") : "N/A")); lowerFom.push_back(MlxlinkRecord::addSpaceForSlrg(status ? getFieldStr("lower_eye") : "N/A")); legand.push_back(MlxlinkRecord::addSpaceForSlrg(to_string(lane))); } string fomMode = _mlxlinkMaps->_slrgFomMode[getFieldValue("fom_mode")]; setPrintVal(_eyeOpeningInfoCmd, "FOM Mode", fomMode, ANSI_COLOR_RESET, true, true, true); setPrintVal(_eyeOpeningInfoCmd, "Lane", getStringFromVector(legand), ANSI_COLOR_RESET, true, true, true); setPrintVal(_eyeOpeningInfoCmd, "Initial FOM", getStringFromVector(initialFom), ANSI_COLOR_RESET, true, true, true); setPrintVal(_eyeOpeningInfoCmd, "Last FOM", getStringFromVector(lastFom), ANSI_COLOR_RESET, true, true, true); setPrintVal(_eyeOpeningInfoCmd, "Upper Grades", getStringFromVector(upperFom), ANSI_COLOR_RESET, (fomMeasurement & SLRG_EOM_UPPER), true, true); setPrintVal(_eyeOpeningInfoCmd, "Mid Grades", getStringFromVector(midFom), ANSI_COLOR_RESET, (fomMeasurement & SLRG_EOM_MIDDLE), true, true); setPrintVal(_eyeOpeningInfoCmd, "Lower Grades", getStringFromVector(lowerFom), ANSI_COLOR_RESET, (fomMeasurement & SLRG_EOM_LOWER), true, true); } void MlxlinkCommander::showEye() { if (_userInput._pcie) { checkPCIeValidity(); } try { if (_userInput._pcie) { sendPrmReg(ACCESS_REG_MPEIN, GET, "depth=%d,pcie_index=%d,node=%d", _dpn.depth, _dpn.pcieIndex, _dpn.node); if (getFieldValue("link_speed_active") < GEN3) { throw MlxRegException("Eye information available for Gen3 and above"); } } u_int32_t numOfLanesToUse = (_userInput._pcie) ? _numOfLanesPcie : _numOfLanes; string showEyeTitle = "EYE Opening Info"; if (_userInput._pcie) { showEyeTitle += " (PCIe)"; } setPrintTitle(_eyeOpeningInfoCmd, showEyeTitle, EYE_OPENING_INFO_LAST); if (_productTechnology <= PRODUCT_16NM) { prepare40_28_16nmEyeInfo(numOfLanesToUse); } else if (_productTechnology >= PRODUCT_7NM) { prepare7nmEyeInfo(numOfLanesToUse); } cout << _eyeOpeningInfoCmd; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing Eye via SLRG raised the following exception: ") + string(exc.what()) + string("\n"); } } string MlxlinkCommander::fecMaskToUserInputStr(u_int32_t fecCapMask) { u_int32_t mask = 0; string validFecStr = ""; string shortFec = ""; for (double bitIdx = 0; bitIdx < 16; bitIdx++) { mask = (u_int32_t)pow(2.0, bitIdx); if (fecCapMask & mask) { if (_mlxlinkMaps->_fecModeMask.count(mask)) { shortFec = _mlxlinkMaps->_fecModeMask[mask].second; if (shortFec.find("PLR") != string::npos) { continue; } if (shortFec.find("-544") != string::npos || shortFec.find("-272") != string::npos) { shortFec = shortFec.substr(0, 2); } validFecStr += shortFec + "(" + _mlxlinkMaps->_fecModeMask[mask].first + ")/"; } } } string auFec = _mlxlinkMaps->_fecModeMask[0].second + "(" + _mlxlinkMaps->_fecModeMask[0].first + ")"; validFecStr = validFecStr.empty() ? "" : (auFec + "/" + deleteLastChar(validFecStr)); return validFecStr; } string MlxlinkCommander::getSupportedFecForSpeed(const string& speed) { string fecCap = "0x0 (N/A)"; string protoStr = _protoActive == IB ? "ib_" : ""; if (!_prbsTestMode) { string speedToCheck = speed; speedToCheck = toLowerCase(speedToCheck); if (speedToCheck == "10g" || speedToCheck == "40g") { speedToCheck = "10g_40g"; } if (speedToCheck == "50g_2x") { speedToCheck = "50g"; } if (speedToCheck == "100g_4x") { speedToCheck = "100g"; } fecCap = fecMaskToStr(getFieldValue(protoStr + "fec_override_cap_" + speedToCheck)); } return fecCap; } string MlxlinkCommander::fecMaskToStr(u_int32_t mask) { char strMask[32]; snprintf(strMask, sizeof(strMask), "0x%x (", mask); string fecStr = string(strMask); if (mask) { fecStr += getStrByMaskFromPair(mask, _mlxlinkMaps->_fecModeMask, ", "); } else { fecStr = "0x0 (N/A"; } fecStr += ")"; return fecStr; } void MlxlinkCommander::showFEC() { try { sendPrmReg(ACCESS_REG_PPLM, GET); string supportedSpeedsStr = SupportedSpeeds2Str(_protoActive, _deviceCapability, _protoCapabilityEx); vector supportedSpeeds = MlxlinkRecord::split(supportedSpeedsStr, ","); for (auto it = _mlxlinkMaps->_fecPerSpeed.begin(); it != _mlxlinkMaps->_fecPerSpeed.end(); it++) { if (isIn((*it).first, supportedSpeeds)) { it->second = getSupportedFecForSpeed((*it).first); } } setPrintTitle(_fecCapInfoCmd, HEADER_FEC_INFO, supportedSpeeds.size() + 1); bool noFecDetected = true; string bitEthIndecator = "bE"; for (auto it = _mlxlinkMaps->_fecPerSpeed.begin(); it != _mlxlinkMaps->_fecPerSpeed.end(); it++) { if (!(*it).second.empty()) { noFecDetected = false; } if (isIn((*it).first, supportedSpeeds)) { setPrintVal(_fecCapInfoCmd, "FEC Capability " + (*it).first + ((_productTechnology < PRODUCT_16NM && _protoActive == ETH) ? bitEthIndecator : ""), (*it).second, ANSI_COLOR_RESET, true, true, true); } } if (noFecDetected) { MlxlinkRecord::printWar("FEC information is not available for InfiniBand protocol", _jsonRoot); } else { cout << _fecCapInfoCmd; } } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing FEC raised the following exception: ") + string(exc.what()) + string("\n"); } } string MlxlinkCommander::getSltpHeader() { string sep = ","; vector sltpHeader; map sltpParam = _mlxlinkMaps->_SltpNdrParams; if (_productTechnology >= PRODUCT_7NM) { bool is100gPerLane = isSpeed100GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive); bool is50gPerLane = isSpeed50GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive); if (is100gPerLane) { sltpHeader.push_back(MlxlinkRecord::addSpace(sltpParam[SLTP_NDR_FIR_PRE3].uiField, sltpParam[SLTP_NDR_FIR_PRE3].uiField.size() + 1, false)); } if (is50gPerLane || is100gPerLane) { sltpHeader.push_back(MlxlinkRecord::addSpace(sltpParam[SLTP_NDR_FIR_PRE2].uiField, sltpParam[SLTP_NDR_FIR_PRE2].uiField.size() + 1, false)); } sltpHeader.push_back(MlxlinkRecord::addSpace(sltpParam[SLTP_NDR_FIR_PRE1].uiField, sltpParam[SLTP_NDR_FIR_PRE1].uiField.size() + 1, false)); sltpHeader.push_back(MlxlinkRecord::addSpace(sltpParam[SLTP_NDR_FIR_MAIN].uiField, sltpParam[SLTP_NDR_FIR_MAIN].uiField.size() + 1, false)); sltpHeader.push_back(MlxlinkRecord::addSpace(sltpParam[SLTP_NDR_FIR_POST1].uiField, sltpParam[SLTP_NDR_FIR_POST1].uiField.size() + 1, false)); } else { sltpParam = _mlxlinkMaps->_SltpEdrParams; if (_productTechnology == PRODUCT_16NM) { sltpParam = _mlxlinkMaps->_SltpHdrParams; } for (auto const& param : sltpParam) { if ((param.second.fieldAccess & FIELD_ACCESS_R) || (_userInput._advancedMode && (param.second.fieldAccess & FIELD_ACCESS_ADVANCED))) { sltpHeader.push_back( MlxlinkRecord::addSpace(param.second.uiField, param.second.uiField.size() + 1, false)); } } } return getStringFromVector(sltpHeader); } void MlxlinkCommander::showSltp() { if (_userInput._pcie) { checkPCIeValidity(); } try { bool valid = true; u_int32_t numOfLanesToUse = (_userInput._pcie) ? _numOfLanesPcie : _numOfLanes; std::vector> sltpLanes(numOfLanesToUse, std::vector()); string showSltpTitle = "Serdes Tuning Transmitter Info"; string sltpHeader = getSltpHeader(); if (_userInput._pcie) { showSltpTitle += " (PCIe)"; } setPrintTitle(_sltpInfoCmd, showSltpTitle, numOfLanesToUse + 1); if (!_linkUP && !_userInput._pcie && !_prbsTestMode) { setPrintVal(_sltpInfoCmd, "Serdes TX parameters", sltpHeader, ANSI_COLOR_RESET, true, false, true); cout << _sltpInfoCmd; return; } setPrintVal(_sltpInfoCmd, "Serdes TX parameters", sltpHeader, ANSI_COLOR_RESET, true, true, true); for (u_int32_t lane = 0; lane < numOfLanesToUse; lane++) { sendPrmReg(ACCESS_REG_SLTP, GET, "lane=%d,c_db=%d", lane, _userInput._db); if (_productTechnology >= PRODUCT_7NM) { prepareSltpNdrGen(sltpLanes, lane); } else { prepareSltpEdrHdrGen(sltpLanes, lane); } if (!getFieldValue("status")) { valid = false; } setPrintVal(_sltpInfoCmd, "Lane " + to_string(lane), getStringFromVector(sltpLanes[lane]), ANSI_COLOR_RESET, true, valid, true); } cout << _sltpInfoCmd; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing SLTP raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::showDeviceData() { try { std::vector showDeviceDataValues; bool success = false; try { sendPrmReg(ACCESS_REG_MSGI, GET); success = true; } catch (...) { } setPrintTitle(_showDeviceInfoCmd, "Device Info", DEVICE_INFO_LAST); setPrintVal(_showDeviceInfoCmd, "Part Number", success ? getAscii("part_number", 20) : "N/A"); setPrintVal(_showDeviceInfoCmd, "Part Name", success ? getAscii("product_name", 64) : "N/A"); setPrintVal(_showDeviceInfoCmd, "Serial Number", success ? getAscii("serial_number", 24) : "N/A"); setPrintVal(_showDeviceInfoCmd, "Revision", success ? getVendorRev(getFieldValue("revision")) : "N/A"); setPrintVal(_showDeviceInfoCmd, "FW Version", getFwVersion()); cout << _showDeviceInfoCmd; if (_isHCA) { MlxlinkRecord::printWar("Note: P/N, Product Name, S/N and Revision are supported only in switches", _jsonRoot); } } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing Device Data via MSGI raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::showBerMonitorInfo() { if (_isHCA) { throw MlxRegException("\"--" BER_MONITOR_INFO_FLAG "\" option is not supported for HCA"); } try { string monitor_state = "N/A"; string monitor_type = "N/A"; string alarm_th = "N/A"; string warning_th = "N/A"; string normal_th = "N/A"; sendPrmReg(ACCESS_REG_PPBMC, GET); monitor_state = _mlxlinkMaps->_ppbmcBerMonitorState[getFieldValue("monitor_state")]; u_int32_t monitor_type_int = getFieldValue("monitor_type"); monitor_type = _mlxlinkMaps->_ppbmcBerMonitorType[monitor_type_int]; setPrintTitle(_showBerMonitorInfo, "BER Monitor Info", BER_MONITOR_INFO_LAST); setPrintVal(_showBerMonitorInfo, "BER Monitor State", monitor_state); setPrintVal(_showBerMonitorInfo, "BER Monitor Type", monitor_type); cout << _showBerMonitorInfo; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing BER Monitor via PPBMC raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::showExternalPhy() { try { gearboxBlock(PEPC_SHOW_FLAG); if (_isHCA || _devID == DeviceSwitchIB || _devID == DeviceSwitchIB2 || _devID == DeviceQuantum || _devID == DeviceQuantum2 || _devID == DeviceQuantum3 || _devID == DeviceBW00) { throw MlxRegException("\"--" PEPC_SHOW_FLAG "\" option is not supported for HCA and InfiniBand switches"); } sendPrmReg(ACCESS_REG_PEPC, GET); setPrintTitle(_extPhyInfoCmd, "External PHY Info", EXT_PHY_INFO_INFO_LAST); setPrintVal(_extPhyInfoCmd, "Twisted Pair Force Mode", getStrByValue(getFieldValue("twisted_pair_force_mode"), _mlxlinkMaps->_pepcTwistedPairForceMode)); cout << _extPhyInfoCmd; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing External PHY via PEPC raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::initValidDPNList() { bool valid = false; u_int32_t maxNumOfHost = 4; u_int32_t maxNumOfDsPort = 16; u_int32_t maxDepth = 4; u_int32_t depth, pcieIndex, node; string bdf = ""; if (_validDpns.empty()) { for (pcieIndex = 0; pcieIndex < maxNumOfHost; pcieIndex++) { try { sendPrmReg(ACCESS_REG_MPEIN, GET, "depth=%d,pcie_index=%d,node=%d", 0, pcieIndex, 0); valid = getFieldValue("bdf0"); } catch (...) { valid = false; } if (valid && getFieldValue("port_type") == PORT_TYPE_EP) { _validDpns.push_back(DPN(0, pcieIndex, 0, getBDFStr(getFieldValue("bdf0")))); } else { if (valid && getFieldValue("port_type") == PORT_TYPE_US) { _validDpns.push_back(DPN(0, pcieIndex, 0, getBDFStr(getFieldValue("bdf0")))); } for (depth = 1; depth < maxDepth; depth++) { try { sendPrmReg(ACCESS_REG_MPEIN, GET, "depth=%d,pcie_index=%d,node=%d", depth, pcieIndex, 0); if (getFieldValue("port_type") == PORT_TYPE_DS) { _validDpns.push_back(DPN(depth, pcieIndex, 0, getBDFStr(getFieldValue("bdf0")))); for (node = 1; node < maxNumOfDsPort; node++) { try { sendPrmReg(ACCESS_REG_MPEIN, GET, "depth=%d,pcie_index=%d,node=%d", depth, pcieIndex, node); _validDpns.push_back(DPN(depth, pcieIndex, node, getBDFStr(getFieldValue("bdf0")))); } catch (...) { break; } } } } catch (...) { } } } if (!_isHCA) { break; } } } } void MlxlinkCommander::showPcieLinks() { try { if (_validDpns.size() == 0) { throw MlxRegException("No valid DPN's detected!"); } setPrintTitle(_validPcieLinks, "Valid PCIe Links", _validDpns.size() + 1); setPrintVal(_validPcieLinks, "Legend", "depth ,pcie_index ,node ,port ,bdf", ANSI_COLOR_RESET, true, true, true); for (u_int32_t i = 0; i < _validDpns.size(); i++) { char dpnStr[128]; int localPort = getLocalPortFromMPIR(_validDpns[i]); snprintf(dpnStr, sizeof(dpnStr), "%-5d ,%-10d ,%-4d ,%-4d ,%s", _validDpns[i].depth, _validDpns[i].pcieIndex, _validDpns[i].node, localPort, _validDpns[i].bdf.c_str()); setPrintVal(_validPcieLinks, "Link " + to_string(i + 1), dpnStr, ANSI_COLOR_RESET, localPort >= 0, true, true); } cout << _validPcieLinks; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing valid PCIe links raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::showPcie() { try { if (_userInput._links) { return; } if (!_userInput._sendDpn && !_userInput._portSpecified) { if (_validDpns.size() == 0) { throw MlxRegException("No valid DPN's detected!"); } int localPort = 0; for (u_int32_t i = 0; i < _validDpns.size(); i++) { localPort = getLocalPortFromMPIR(_validDpns[i]); if (localPort >= 0) { showPcieState(_validDpns[i]); } if (_userInput.isPcieErrInjProvided) { break; } } } else { showPcieState(_dpn); } } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing Pcie via MPEIN raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::showPcieState(DPN& dpn) { MlxlinkCmdPrint pcieInfoCmd; sendPrmReg(ACCESS_REG_MPEIN, GET, "depth=%d,pcie_index=%d,node=%d", dpn.depth, dpn.pcieIndex, dpn.node); string linkSpeedEnabled = " (" + pcieSpeedStr(getFieldValue("link_speed_enabled")) + ")"; string linkWidthEnabled = " (" + to_string((getFieldValue("link_width_enabled"))) + "X)"; _numOfLanesPcie = getFieldValue("link_width_active"); setPrintTitle(pcieInfoCmd, "PCIe Operational (Enabled) Info", PCIE_INFO_LAST); char dpnStr[15]; sprintf(dpnStr, "%d, %d, %d", dpn.depth, dpn.pcieIndex, dpn.node); setPrintVal(pcieInfoCmd, "Depth, pcie index, node", dpnStr); setPrintVal(pcieInfoCmd, "Link Speed Active (Enabled)", pcieSpeedStr(getFieldValue("link_speed_active")) + linkSpeedEnabled); setPrintVal(pcieInfoCmd, "Link Width Active (Enabled)", to_string(_numOfLanesPcie) + "X" + linkWidthEnabled); pcieInfoCmd.toJsonFormat(_jsonRoot); cout << pcieInfoCmd; } void MlxlinkCommander::collectAMBER() { try { if (_productTechnology >= PRODUCT_16NM) { MlxlinkRecord::printCmdLine("Collecting amBER and producing report to " + _userInput._csvBer, _jsonRoot); initAmBerCollector(); if (!_isHCA) { // If port provided, collect one port only if (_userInput._portSpecified) { PortGroup pg{_localPort, _userInput._labelPort, 0, _userInput._splitPort}; if (_devID == DeviceQuantum2 || _devID == DeviceQuantum3 || _devID == DeviceBW00) { pg.secondSplit = _userInput._secondSplitProvided ? _userInput._secondSplitPort : 0; } _amberCollector->_localPorts.push_back(pg); } else { // collect all ports info if the port flag wasn't provided sendPrmReg(ACCESS_REG_MGPIR, GET); u_int32_t numOfPorts = getFieldValue("num_of_modules"); vector labelPorts; _ignorePortStatus = false; for (u_int32_t labelPort = 1; labelPort <= numOfPorts; labelPort++) { labelPorts.push_back(to_string(labelPort)); } handleLabelPorts(labelPorts, true); _amberCollector->_localPorts = _localPortsPerGroup; } } _amberCollector->startCollector(); } else { throw MlxRegException(AMBER_COLLECT_FLAG " is not available for " "this device, please use " BER_COLLECT_FLAG " flag instead"); } } catch (const std::exception& exc) { _allUnhandledErrors += string("Collecting AMBER raised the following exception: \n") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::collectBER() { try { if (_productTechnology >= PRODUCT_16NM) { throw MlxRegException(BER_COLLECT_FLAG " is not available for " "this device, please use " AMBER_COLLECT_FLAG " flag instead"); } MlxlinkRecord::printCmdLine("Collecting BER and producing report to " + _userInput._csvBer, _jsonRoot); const char* fileName = _userInput._csvBer.c_str(); ifstream ifile(fileName); ofstream berFile(fileName, std::ofstream::app); vector fields = getBerFields(); if (!ifile.good()) { for (const auto& field : fields) { if (field.isVisible()) { berFile << field.getUiField(); if (field.getFieldIndex() < fields.size()) { berFile << ","; } } } berFile << endl; } // Preparing CSV values for (const auto& field : fields) { if (field.isVisible()) { berFile << field.getUiValue(); if (field.getFieldIndex() < fields.size()) { berFile << ","; } } } berFile << endl; berFile.close(); } catch (const std::exception& exc) { _allUnhandledErrors += string("Collecting BER and producing report raised the following exception: \n") + string(exc.what()) + string("\n"); } } vector MlxlinkCommander::getBerFields() { vector fields; try { string active_fec = _prbsTestMode ? "N/A" : _mlxlinkMaps->_fecModeActive[_fecActive]; findAndReplace(active_fec, ",", " "); string devicePN = getDevicePN(); string deviceFW = _fwVersion; getCableParams(); std::map errorsVector = getRawEffectiveErrors(); string protocol = _prbsTestMode ? getPrbsModeRX() : _speedStrG; float speed = _prbsTestMode ? getPrbsRateRX() : _speedBerCsv; if (_protoActive == IB) { speed = (speed * _numOfLanes) / MAX_LANES_NUMBER; } string port = to_string(_userInput._labelPort); if (_userInput._splitProvided) { port += "/" + to_string(_userInput._splitPort); } fields.push_back(AmberField("Test Mode (Nominal/Corner/Drift)", _userInput._testMode)); fields.push_back(AmberField("Protocol", protocol)); fields.push_back(AmberField("Speed [Gb/s]", to_string(speed))); fields.push_back(AmberField("Active FEC", active_fec)); fields.push_back(AmberField("Iteration Number", to_string(_userInput._iteration))); fields.push_back(AmberField("Device PN", devicePN)); fields.push_back(AmberField("FW Version", deviceFW)); fields.push_back(AmberField("Device ID", "1")); fields.push_back(AmberField("Port Number", port)); fields.push_back(AmberField("Media", getCableMedia(_cableMediaType))); fields.push_back(AmberField("Cable PN", _cablePN)); fields.push_back(AmberField("Length [m]", getCableLengthStr(_cableLen, _cmisCable))); fields.push_back(AmberField("Attenuation [dB]", to_string(_cableAtten12G))); fields.push_back(AmberField("Test time [Min]", errorsVector["time_since_last_clear_sec"])); fields.push_back(AmberField("Raw Errors Lane 0", errorsVector["phy_corrected_bits_lane0"])); fields.push_back(AmberField("Raw Errors Lane 1", errorsVector["phy_corrected_bits_lane1"])); fields.push_back(AmberField("Raw Errors Lane 2", errorsVector["phy_corrected_bits_lane2"])); fields.push_back(AmberField("Raw Errors Lane 3", errorsVector["phy_corrected_bits_lane3"])); fields.push_back(AmberField("Raw Errors Lane 4", errorsVector["phy_corrected_bits_lane4"])); fields.push_back(AmberField("Raw Errors Lane 5", errorsVector["phy_corrected_bits_lane5"])); fields.push_back(AmberField("Raw Errors Lane 6", errorsVector["phy_corrected_bits_lane6"])); fields.push_back(AmberField("Raw Errors Lane 7", errorsVector["phy_corrected_bits_lane7"])); fields.push_back(AmberField("Total Raw BER", errorsVector["raw_ber"])); fields.push_back(AmberField("Raw BER limit", to_string(getRawBERLimit()))); fields.push_back(AmberField("Effective Errors", errorsVector["eff_errors_counter"])); fields.push_back(AmberField("Effective BER", errorsVector["eff_ber"])); fields.push_back(AmberField("System Voltage", "N/A")); fields.push_back(AmberField("Chip Start Temp", "N/A")); fields.push_back(AmberField("Chip End Temp", "N/A")); fields.push_back(AmberField("Module Start Temp", _moduleTemp)); fields.push_back(AmberField("Module End Temp", "N/A")); fields.push_back(AmberField("Active RTN", "N/A")); fields.push_back(AmberField("Device SN", "N/A")); fields.push_back(AmberField("Cable SN", _cableSN)); fields.push_back(AmberField("RX End BW [Gb/s]", "N/A")); } catch (const std::exception& exc) { _allUnhandledErrors += string("Collecting BER and producing report raised the following exception: \n") + string(exc.what()) + string("\n"); } return fields; } u_int32_t MlxlinkCommander::readBitFromField(const string& fieldName, u_int32_t bitIndex) { char blockName[128]; u_int32_t blockSelector = bitIndex / MAX_DWORD_BLOCK_SIZE; sprintf(blockName, "%s[%d]", fieldName.c_str(), blockSelector); u_int32_t bitMask = (u_int32_t)pow(2.0, (int)(bitIndex - (blockSelector * MAX_DWORD_BLOCK_SIZE))); u_int32_t bitValue = (getFieldValue(string(blockName)) & bitMask); return bitValue; } void MlxlinkCommander::showTxGroupMapping() { try { if (_devID != DeviceSpectrum2 && _devID != DeviceQuantum && _devID != DeviceQuantum2 && _devID != DeviceQuantum3 && _devID != DeviceBW00) { throw MlxRegException("Port group mapping supported for Spectrum-2 and Quantum switches only!"); } sendPrmReg(ACCESS_REG_PGMR, GET, "local_port=%d,group=%d,pg_sel=%d", 1, _userInput._showGroup, TX_GROUP); vector localPorts; u_int32_t localPortMask = 0; for (size_t i = 1; i <= maxLocalPort(); i++) { localPortMask = readBitFromField("ports_mapping_of_group", i - 1); if (localPortMask) { localPorts.push_back(i); } } string ports = getStringFromVector(localToPortsPerGroup(localPorts)); setPrintTitle(_portGroupMapping, "Tx Port Group Mapping ", 1); char title[64]; sprintf(title, "Ports Mapped to Group %d", _userInput._showGroup); setPrintVal(_portGroupMapping, title, ports, ANSI_COLOR_RESET, true, !_prbsTestMode && !ports.empty(), true); cout << _portGroupMapping; } catch (const std::exception& exc) { _allUnhandledErrors += string("Showing ports group mapping raised the " "following exception: ") + string(exc.what()) + string("\n"); } } std::map MlxlinkCommander::getRawEffectiveErrorsinTestMode() { std::map errorsVector; sendPrmReg(ACCESS_REG_PPCNT, GET, "grp=%d", PPCNT_PHY_GROUP); errorsVector["phy_corrected_bits_lane0"] = to_string(add32BitTo64(getFieldValue("edpl_bip_errors_lane0_high"), getFieldValue("edpl_bip_errors_lane0_low"))); errorsVector["phy_corrected_bits_lane1"] = to_string(add32BitTo64(getFieldValue("edpl_bip_errors_lane1_high"), getFieldValue("edpl_bip_errors_lane1_low"))); errorsVector["phy_corrected_bits_lane2"] = to_string(add32BitTo64(getFieldValue("edpl_bip_errors_lane2_high"), getFieldValue("edpl_bip_errors_lane2_low"))); errorsVector["phy_corrected_bits_lane3"] = to_string(add32BitTo64(getFieldValue("edpl_bip_errors_lane3_high"), getFieldValue("edpl_bip_errors_lane3_low"))); errorsVector["phy_corrected_bits_lane4"] = "0"; errorsVector["phy_corrected_bits_lane5"] = "0"; errorsVector["phy_corrected_bits_lane6"] = "0"; errorsVector["phy_corrected_bits_lane7"] = "0"; return errorsVector; } std::map MlxlinkCommander::getRawEffectiveErrors() { std::map errorsVector; if (_prbsTestMode) { errorsVector = getRawEffectiveErrorsinTestMode(); } else { sendPrmReg(ACCESS_REG_PPCNT, GET, "grp=%d", PPCNT_STATISTICAL_GROUP); errorsVector["phy_corrected_bits_lane0"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane0_high"), getFieldValue("phy_raw_errors_lane0_low"))); errorsVector["phy_corrected_bits_lane1"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane1_high"), getFieldValue("phy_raw_errors_lane1_low"))); errorsVector["phy_corrected_bits_lane2"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane2_high"), getFieldValue("phy_raw_errors_lane2_low"))); errorsVector["phy_corrected_bits_lane3"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane3_high"), getFieldValue("phy_raw_errors_lane3_low"))); errorsVector["phy_corrected_bits_lane4"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane4_high"), getFieldValue("phy_raw_errors_lane4_low"))); errorsVector["phy_corrected_bits_lane5"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane5_high"), getFieldValue("phy_raw_errors_lane5_low"))); errorsVector["phy_corrected_bits_lane6"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane6_high"), getFieldValue("phy_raw_errors_lane6_low"))); errorsVector["phy_corrected_bits_lane7"] = to_string( add32BitTo64(getFieldValue("phy_raw_errors_lane7_high"), getFieldValue("phy_raw_errors_lane7_low"))); } errorsVector["time_since_last_clear_sec"] = to_string( (add32BitTo64((float)getFieldValue("time_since_last_clear_high"), getFieldValue("time_since_last_clear_low"))) / 1000.0 / 60.0); errorsVector["raw_errors_counter"] = to_string(add32BitTo64(getFieldValue("phy_corrected_bits_high"), getFieldValue("phy_corrected_bits_low"))); errorsVector["raw_ber"] = getFieldStr("raw_ber_coef") + "E-" + getFieldStr("raw_ber_magnitude"); errorsVector["eff_errors_counter"] = to_string(add32BitTo64(getFieldValue("phy_symbol_errors_high"), getFieldValue("phy_symbol_errors_low"))); errorsVector["eff_ber"] = getFieldStr("effective_ber_coef") + "E-" + getFieldStr("effective_ber_magnitude"); return errorsVector; } string MlxlinkCommander::getSupportedPrbsRates(u_int32_t modeSelector) { string regName = ACCESS_REG_PPRT; if (modeSelector == PRBS_TX) { regName = ACCESS_REG_PPTT; } sendPrmReg(regName, GET); u_int32_t capsMask = getFieldValue("lane_rate_cap"); string modeCapStr = ""; for (auto it = _mlxlinkMaps->_prbsLaneRate.begin(); it != _mlxlinkMaps->_prbsLaneRate.end(); it++) { if (capsMask & (it->second).capMask) { modeCapStr += it->first + string(","); } } return deleteLastChar(modeCapStr); } string MlxlinkCommander::getSupportedPrbsModes(u_int32_t modeSelector) { string regName = ACCESS_REG_PPRT; if (modeSelector == PRBS_TX) { regName = ACCESS_REG_PPTT; } sendPrmReg(regName, GET); u_int32_t capsMask = getFieldValue("prbs_modes_cap"); capsMask = modeSelector == PRBS_RX ? capsMask & 0x1ffe3fff : capsMask; string modeCapStr = ""; // Iterating over the supported modes according to capability mask // And preparing them in one string u_int32_t mask = 0; for (map::iterator it = _mlxlinkMaps->_prbsModesList.begin(); it != _mlxlinkMaps->_prbsModesList.end(); it++) { mask = PRBS31_CAP << it->first; if (capsMask & mask) { modeCapStr += it->second; if (modeSelector == PRBS_RX && mask == SQUARE_WAVEA_CAP) { // return SQUARE_WAVE without A for RX pattern modeCapStr = deleteLastChar(modeCapStr); } modeCapStr += ","; } } return deleteLastChar(modeCapStr); } string MlxlinkCommander::getPrbsModeRX() { sendPrmReg(ACCESS_REG_PPRT, GET, "e=%d", PPRT_PPTT_ENABLE); return prbsMaskToMode(getFieldValue("prbs_mode_admin"), PRBS_RX); } u_int32_t MlxlinkCommander::getPrbsRateRX() { sendPrmReg(ACCESS_REG_PPRT, GET, "e=%d", PPRT_PPTT_ENABLE); return prbsMaskToRateNum(getFieldValue("lane_rate_oper")); } float MlxlinkCommander::getRawBERLimit() { float limit; if (_userInput._testMode == "NOMINAL" || _userInput._testMode == "Nominal") { switch (_speedBerCsv) { case 25: case 50: case 100: if (_mlxlinkMaps->_fecModeActive[_fecActive] == _mlxlinkMaps->_fecModeActive[0]) { limit = pow(10.0, NOMINAL_25G_NO_FEC); } else if (_cableAtten12G <= 15) { limit = pow(10.0, NOMINAL_25G_LOW_ATTN); } else { limit = pow(10.0, NOMINAL_25G_HIGH_ATTN); } break; case 10: limit = pow(10.0, NOMINAL_10G); break; case 56: case 40: limit = pow(10.0, NOMINAL_56G_40G); break; default: limit = pow(10.0, NOMINAL_DEFAULT); } } else { switch (_speedBerCsv) { case 25: case 50: case 100: if (_mlxlinkMaps->_fecModeActive[_fecActive] == _mlxlinkMaps->_fecModeActive[0]) { limit = 3.0 * pow(10.0, CORNER_25G_NO_FEC); } else if (_cableAtten12G <= 15) { limit = pow(10.0, CORNER_25G_LOW_ATTN); } else { limit = pow(10.0, CORNER_25G_HIGH_ATTN); } break; case 10: limit = pow(10.0, CORNER_10G); break; case 56: case 40: limit = pow(10.0, CORNER_56G_40G); break; default: limit = pow(10.0, CORNER_DEFAULT); } } return limit; } string MlxlinkCommander::getFwVersion() { return _fwVersion; } string MlxlinkCommander::getDevicePN() { try { sendPrmReg(ACCESS_REG_MSGI, GET); } catch (...) { return "N/A"; } return getAscii("part_number", 20); } // Config functions void MlxlinkCommander::clearCounters() { try { MlxlinkRecord::printCmdLine("Clearing Counters", _jsonRoot); sendPrmReg(ACCESS_REG_PPCNT, SET, "clr=%d,grp=%d", 1, PPCNT_ALL_GROUPS); } catch (const std::exception& exc) { _allUnhandledErrors += string("Clearing counters via PPCNT raised the following exception: ") + string(exc.what()) + string("\n"); } } bool MlxlinkCommander::isForceDownSupported() { bool supported = false; if (_isHCA) { // checking force_down cap u_int64_t fdCapMask = PCAM_FORCE_DOWN_CAP_MASK; // feature_cap_mask.Bit 45 (feature_cap_mask[2].bit 13) sendPrmReg(ACCESS_REG_PCAM, GET); supported = getFieldValue("feature_cap_mask[2]") & fdCapMask; } return supported; } void MlxlinkCommander::sendGBPaosCmd(PAOS_ADMIN adminStatus, bool forceDown) { try { string forceDownCmd = ""; if (forceDown) { forceDownCmd = ",fpd=1"; } sendPrmReg(ACCESS_REG_PPAOS, SET, "phy_status_admin=%d%s", adminStatus == PAOS_UP, forceDownCmd.c_str()); } catch (const std::exception& exc) { string portCommand = (adminStatus == PAOS_DOWN) ? "down" : "up"; throw MlxRegException("Sending port " + portCommand + " command failed, " + string(exc.what())); } } void MlxlinkCommander::sendPaosCmd(PAOS_ADMIN adminStatus, bool forceDown) { try { if (_isGboxPort) { sendGBPaosCmd(adminStatus, forceDown); } else { // Send force down for test mode only string forceDownCmd = ""; if (!_userInput._prbsMode.empty()) { if (forceDown) { forceDownCmd = ",fd=1"; } } sendPrmReg(ACCESS_REG_PAOS, SET, "admin_status=%d,ase=%d%s", adminStatus, 1, forceDownCmd.c_str()); } } catch (const std::exception& exc) { string portCommand = (adminStatus == PAOS_DOWN) ? "down" : "up"; throw MlxRegException("Sending port " + portCommand + " command failed"); } } void MlxlinkCommander::sendPaos() { try { PAOS_CMD paosCmd = paos_to_int(_userInput._paosCmd); switch (paosCmd) { case UP: sendPaosUP(); return; case DN: sendPaosDown(); return; case TG: sendPaosToggle(); return; case NO: default: return; } } catch (const std::exception& exc) { _allUnhandledErrors += string("Sending PAOS raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::sendPaosDown(bool toggleCommand) { MlxlinkRecord::printCmdLine("Configuring Port State (Down)", _jsonRoot); bool forceDown = isForceDownSupported(); // try to force down the port sendPaosCmd(PAOS_DOWN, forceDown); msleep(1000); // wait for 1 sec before checking the status // Verify the link status after down command if (!checkPaosDown()) { if (_isHCA) { // in case of using old fw version (older than xx.28.xxxx) if (!forceDown && !_userInput._prbsMode.empty()) { string message = "Enabling PRBS is not supported in the " "current FW version. Please contact Nvidia networking division support."; throw MlxRegException(message); } else if (!toggleCommand) { string protocol = (_protoActive == IB) ? "IB" : "ETH"; string message = "port is not Down, for some reasons:\n"; message += "1- The link is configured to be up, run this command if KEEP_" + protocol + "_LINK_UP_Px is True:\n"; message += " mlxconfig -d " + _device + " set KEEP_" + protocol + "_LINK_UP_P=0\n"; message += "2- Port management is enabled (management protocol requiring the link to remain up, PAOS " "won't manage to disable the port)\n"; message += "3- In case of multi-host please verify all hosts are not holding the port up"; throw MlxRegException(message); } } else { throw MlxRegException("Port is not Down, Aborting..."); } } } void MlxlinkCommander::sendPaosUP() { MlxlinkRecord::printCmdLine("Configuring Port State (Up)", _jsonRoot); sendPaosCmd(PAOS_UP); } void MlxlinkCommander::sendPaosToggle() { sendPaosDown(true); sendPaosUP(); } void MlxlinkCommander::handlePrbs() { try { if (_userInput._prbsMode == "EN") { checkPprtPptt(); if (_prbsTestMode) { sendPrbsPpaos(false); } sendPaosDown(); if (checkPaosDown()) { MlxlinkRecord::printCmdLine("Configuring Port to Physical Test Mode", _jsonRoot); resetPprtPptt(); sendPprtPptt(); sendPrbsPpaos(true); } else { throw MlxRegException("Port is not down, unable to enter test mode"); } } else if (_userInput._prbsMode == "DS") { MlxlinkRecord::printCmdLine("Configuring Port to Regular Operation", _jsonRoot); if (_prbsTestMode) { sendPrbsPpaos(false); } resetPprtPptt(); sendPaosToggle(); } else if (_userInput._prbsMode == "TU") { if (_prbsTestMode) { MlxlinkRecord::printCmdLine("Performing Tuning", _jsonRoot); startTuning(); } else { throw MlxRegException("Port is not configured for physical test mode. Please see help"); } } } catch (const std::exception& exc) { _allUnhandledErrors += string("Handling PRBS raised the following exception: ") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::checkPRBSModeCap(u_int32_t modeSelector, u_int32_t capMask) { string modeToCheck = _userInput._pprtMode; string prbsModeStr = "RX"; if (modeSelector == PRBS_TX) { modeToCheck = _userInput._ppttMode; prbsModeStr = "TX"; } // for RX mode: SQUARE_WAVE and SQUARE_WAVEA have the same enum if (modeSelector == PRBS_RX && modeToCheck == "SQUARE_WAVE") { modeToCheck += "A"; } // Fetching mode capability from mode list u_int32_t modeCap = 0; for (map::iterator it = _mlxlinkMaps->_prbsModesList.begin(); it != _mlxlinkMaps->_prbsModesList.end(); it++) { if (modeToCheck == it->second) { modeCap = PRBS31_CAP << it->first; break; } } // checking if the fetched capability supported in cap mask or not if (!(modeCap & capMask)) { string errStr = "Device does not support " + prbsModeStr + " PRBS pattern \"" + (modeSelector == PRBS_TX ? _userInput._ppttMode : _userInput._pprtMode) + "\" in physical test mode."; errStr += "\nValid RX PRBS modes Are: " + getSupportedPrbsModes(PRBS_RX); errStr += "\nValid TX PRBS modes Are: " + getSupportedPrbsModes(PRBS_TX); errStr += "\nDefault PRBS Mode is PRBS31"; throw MlxRegException(errStr); } } void MlxlinkCommander::checkPrbsRegsCap(const string& prbsReg, const string& laneRate) { u_int32_t modeSelector = (prbsReg == "PPTT") ? PRBS_TX : PRBS_RX; sendPrmReg(prbsReg, GET); bool invalidRateStr = !laneRate.empty() && !_mlxlinkMaps->_prbsLaneRate[laneRate].capMask; u_int32_t laneRateCap = _mlxlinkMaps->_prbsLaneRate[laneRate].capMask ? _mlxlinkMaps->_prbsLaneRate[laneRate].capMask : (u_int32_t)LANE_RATE_EDR_CAP; string laneRateStr = laneRate.empty() ? "EDR/25G/50G/100G (25.78125 Gb/s)" : laneRate; if (invalidRateStr || !(laneRateCap & getFieldValue("lane_rate_cap"))) { string errStr = "Device does not support lane rate " + laneRateStr + " in physical test mode.\n"; string rxRates = getSupportedPrbsRates(PRBS_RX); string txRates = getSupportedPrbsRates(PRBS_TX); if (rxRates.empty()) { rxRates = "No Valid RX PRBS lane rate"; } else { rxRates = "Valid RX PRBS lane rates: " + rxRates; } errStr += rxRates + "\n"; if (txRates.empty()) { txRates = "No Valid TX PRBS lane rate"; } else { txRates = "Valid TX PRBS lane rates: " + txRates; } errStr += txRates + "\n"; errStr += "Default PRBS Lane Rate is EDR / 25GE / 50GE / 100GE (25.78125 Gb/s)"; throw MlxRegException(errStr); } checkPRBSModeCap(modeSelector, getFieldValue("prbs_modes_cap")); if (!_userInput._prbsLanesToSet.empty()) { if (getFieldValue("ls") != 1) { throw MlxRegException("Device does not support per lane configuration"); } } } void MlxlinkCommander::checkPprtPptt() { if (!_userInput._prbsLanesToSet.empty()) { u_int32_t maxLaneIndex = _numOfLanes - 1; for (map::iterator it = _userInput._prbsLanesToSet.begin(); it != _userInput._prbsLanesToSet.end(); it++) { if (it->second && (it->first > maxLaneIndex)) { throw MlxRegException("Invalid lane index: %d", it->first); } } } checkPrbsRegsCap("PPRT", _userInput._pprtRate); checkPrbsRegsCap("PPTT", _userInput._ppttRate); if (_userInput._prbsTxInv) { checkPrbsPolCap("PPTT"); } if (_userInput._prbsRxInv) { checkPrbsPolCap("PPRT"); } } void MlxlinkCommander::checkPrbsPolCap(const string& prbsReg) { string invalidPol = "TX"; if (prbsReg == "PPRT") { invalidPol = "RX"; } sendPrmReg(prbsReg, GET); if (!getFieldValue("p_c")) { throw MlxRegException("PRBS " + invalidPol + " polarity inversion not supported"); } } void MlxlinkCommander::sendPrbsPpaos(bool testMode) { sendPrmReg(ACCESS_REG_PPAOS, SET, "phy_test_mode_admin=%d", (testMode ? PPAOS_PHY_TEST_MODE : PPAOS_REGULAR_OPERATION)); } void MlxlinkCommander::startTuning() { sendPrmReg(ACCESS_REG_PPRT, SET, "e=%d,s=%d", PPRT_PPTT_ENABLE, PPRT_PPTT_START_TUNING); } void MlxlinkCommander::prbsConfiguration(const string& prbsReg, bool enable, u_int32_t laneRate, u_int32_t prbsMode, bool perLaneConfig, bool prbsPolInv) { string rateToUpdate = prbsReg == "PPRT" ? "lane_rate_oper" : "lane_rate_admin"; string prbsExtraCmd = ""; if (perLaneConfig) { for (const auto& lane : _userInput._prbsLanesToSet) { prbsExtraCmd = ""; if (prbsPolInv) { prbsExtraCmd += ",p=1"; } if (laneRate == PRBS_HDR) { prbsExtraCmd += ",modulation=" + to_string(PRBS_PAM4_ENCODING); } sendPrmReg(prbsReg, SET, "e=%d,%s=%d,prbs_mode_admin=%d,le=%d,lane=%d%s", enable, rateToUpdate.c_str(), laneRate, prbsMode, perLaneConfig, lane.first, prbsExtraCmd.c_str()); } } else { prbsExtraCmd = ""; if (prbsPolInv) { prbsExtraCmd += ",p=1"; } if (laneRate == PRBS_HDR) { prbsExtraCmd += ",modulation=" + to_string(PRBS_PAM4_ENCODING); } sendPrmReg(prbsReg, SET, "e=%d,%s=%d,prbs_mode_admin=%d%s", enable, rateToUpdate.c_str(), laneRate, prbsMode, prbsExtraCmd.c_str()); } } void MlxlinkCommander::sendPprtPptt() { bool perLaneConfig = (!_userInput._prbsLanesToSet.empty()) && (_userInput._prbsLanesToSet.size() != _numOfLanes); u_int32_t rxRate = _mlxlinkMaps->_prbsLaneRate[_userInput._pprtRate].capMask ? _mlxlinkMaps->_prbsLaneRate[_userInput._pprtRate].value : (u_int32_t)PRBS_EDR; u_int32_t txRate = _mlxlinkMaps->_prbsLaneRate[_userInput._ppttRate].capMask ? _mlxlinkMaps->_prbsLaneRate[_userInput._ppttRate].value : (u_int32_t)PRBS_EDR; prbsConfiguration("PPRT", true, rxRate, prbsModeToMask(_userInput._pprtMode), perLaneConfig, _userInput._prbsRxInv); prbsConfiguration("PPTT", true, txRate, prbsModeToMask(_userInput._ppttMode), perLaneConfig, _userInput._prbsTxInv); } void MlxlinkCommander::resetPprtPptt() { try { if (_prbsTestMode) { prbsConfiguration("PPRT", false, PRBS_EDR, PRBS31, false, false); prbsConfiguration("PPTT", false, PRBS_EDR, PRBS31, false, false); } } catch (MlxRegException& exc) { // Not necessary to handle if clearing PPRT and PPTT failed // They already cleared before enabling the test mode } } void MlxlinkCommander::validateSpeedStr() { // Normalize IB speeds (Ignore IB- from infiniband speeds) for (vector::iterator it = _ptysSpeeds.begin(); it != _ptysSpeeds.end(); it++) { size_t found = (*it).find("IB-"); if (found != std::string::npos) { *it = (*it).erase(found, found + 3); } } // get list of all valid speeds (ETH, ETH extended, and IB) string validSpeedStr = ""; // include NRZ speeds only for devices not supporting extended speeds if (!(_protoCapabilityEx && _protoActive == ETH)) { validSpeedStr = SupportedSpeeds2Str(ETH, BIT_MASK_ALL_DWORD, false); } validSpeedStr += "," + SupportedSpeeds2Str(ETH, BIT_MASK_ALL_DWORD, true); validSpeedStr += "," + SupportedSpeeds2Str(IB, BIT_MASK_ALL_DWORD, false); string speedToCheck = ""; size_t fromIndex = 0; size_t toIndex = 0; for (vector::iterator it = _ptysSpeeds.begin(); it != _ptysSpeeds.end(); it++) { fromIndex = validSpeedStr.find(*it); toIndex = validSpeedStr.find_first_of(',', fromIndex); if (fromIndex != string::npos) { speedToCheck = validSpeedStr.substr(fromIndex, toIndex - fromIndex); } if (toUpperCase(speedToCheck) != *it) { throw MlxRegException("%s is invalid speed configuration", (*it).c_str()); } } if (isIn(string("56G"), _ptysSpeeds) && _linkModeForce == true) { throw MlxRegException("No support of 56G FORCE mode"); } } void MlxlinkCommander::sendPtys() { try { if (_prbsTestMode) { throw MlxRegException("Cannot Configure Port Speeds in Physical Test Mode. Please Disable First"); } MlxlinkRecord::printCmdLine("Configuring Port Speeds", _jsonRoot); validateSpeedStr(); u_int32_t ptysMask = 0x0; string ptysExtraCmd = ""; string protoAdminField = ""; for (u_int32_t i = 0; i < _ptysSpeeds.size(); i++) { ptysMask |= ptysSpeedToMask(_ptysSpeeds[i]); } if (_linkModeForce == true) { gearboxBlock(PTYS_LINK_MODE_FORCE_FLAG); ptysExtraCmd += ",an_disable_admin=1"; } if (_protoActive == IB) { if (_linkModeForce == false) { ptysMask |= 0x1; } ptysExtraCmd += ",ib_link_width_admin=7"; protoAdminField = "ib_proto_admin"; } else { if (_productTechnology >= PRODUCT_16NM) { protoAdminField = "ext_eth_proto_admin"; } else { protoAdminField = "eth_proto_admin"; } } sendPrmReg(ACCESS_REG_PTYS, SET, "proto_mask=%d,%s=%d%s", _protoActive, protoAdminField.c_str(), ptysMask, ptysExtraCmd.c_str()); } catch (const std::exception& exc) { string errMsg = string(exc.what()); if (errMsg.find(OPERATIONAL_ERROR_STR) != string::npos) { errMsg = "Invalid speed configurations"; } _allUnhandledErrors += string("Sending PTYS (Configuring port speeds) " "raised the following exception: ") + errMsg + string("\n"); } } u_int32_t MlxlinkCommander::ptysSpeedToMask(const string& speed) { bool extended = _productTechnology >= PRODUCT_16NM; u_int32_t speedMask = 0; checkSupportedSpeed(speed, _protoCapability, extended); if (_protoActive == IB) { speedMask = ptysSpeedToMaskIB(speed); } else if (extended) { speedMask = ptysSpeedToExtMaskETH(speed); } else { speedMask = ptysSpeedToMaskETH(speed); } return speedMask; } void MlxlinkCommander::checkSupportedSpeed(const string& speed, u_int32_t protoCap, bool extSpeed) { u_int32_t mask = 0; u_int32_t diffProto = 0; string errStr = ""; string supportedSpeedStr = ""; if (!extSpeed) { mask = (_protoActive == IB) ? ptysSpeedToMaskIB(speed) : ptysSpeedToMaskETH(speed); diffProto = (_protoActive == IB) ? ptysSpeedToMaskETH(speed) : ptysSpeedToMaskIB(speed); } else { mask = (_protoActive == IB) ? ptysSpeedToMaskIB(speed) : ptysSpeedToExtMaskETH(speed); diffProto = (_protoActive == IB) ? ptysSpeedToExtMaskETH(speed) : ptysSpeedToMaskIB(speed); } supportedSpeedStr = SupportedSpeeds2Str(_protoActive, protoCap, extSpeed); if (!supportedSpeedStr.empty()) { errStr = "Supported Speeds Are: " + supportedSpeedStr; } if (diffProto) { throw MlxRegException(speed + " is not supported by Protocol!\n" + errStr); } if (!(mask & protoCap) && _linkUP) { throw MlxRegException(speed + " is not supported by Device!\n" + errStr); } } void MlxlinkCommander::sendPplm() { try { if (_prbsTestMode) { throw MlxRegException("Cannot Configure FEC in Physical Test Mode. Please Disable First."); } MlxlinkRecord::printCmdLine("Configuring Port FEC", _jsonRoot); if (_protoActive == IB && _ignoreIbFECCheck) { throw MlxRegException("FEC Configuration is Valid for ETHERNET only!"); } if (!_linkUP && _userInput._speedFec == "") { throw MlxRegException("When Port is Not Active, You Must Specify the Speed to Configure FEC (--fec_speed " ")"); } checkPplmCap(); // after calling checkPplmCap, _userInput._speedFec will be changed to the correct fec speed string fecSpeedStr = speedToFecSpeedStr(_speedStrG, _numOfLanes); string speedToConfigure = (_linkUP && _userInput._speedFec == "") ? fecSpeedStr : _userInput._speedFec; u_int32_t fecAdmin = fecToBit(_userInput._pplmFec, speedToConfigure); string pplmFecCmd = ""; if (speedToConfigure == "50g" || speedToConfigure == "25g") { // 25g and 50g must be set the same pplmFecCmd += "fec_override_admin_25g=" + to_string(fecAdmin); pplmFecCmd += ",fec_override_admin_50g=" + to_string(fecAdmin); } else { pplmFecCmd = string(_protoActive == IB ? "ib_" : "") + "fec_override_admin_" + speedToConfigure; pplmFecCmd += "=" + to_string(fecAdmin); } sendPrmReg(ACCESS_REG_PPLM, SET, pplmFecCmd.c_str()); } catch (const std::exception& exc) { _allUnhandledErrors += string("Sending PPLM (Configuring port FEC) raised the following exception: ") + string(exc.what()) + string("\n"); } } string MlxlinkCommander::speedToFecSpeedStr(const string& speed, u_int32_t numOfLanes) { string fecSpeedStrFormat = ""; string numberOfLanesStr = to_string(numOfLanes) + "x"; if (_protoActive == IB) { string speedStr = speed; if (speedStr.find("IB-") != string::npos) { speedStr = speedStr.substr(3); } fecSpeedStrFormat = toLowerCase(speedStr); } else { if (speed == "800G") { fecSpeedStrFormat = "800g_" + numberOfLanesStr; } if (speed == "400G") { fecSpeedStrFormat = "400g_" + numberOfLanesStr; } if (speed == "200G") { fecSpeedStrFormat = "200g_" + numberOfLanesStr; } if (speed == "100G") { if (numOfLanes == 4) { fecSpeedStrFormat = "100g"; } else { fecSpeedStrFormat = "100g_" + numberOfLanesStr; } } if (speed == "50G") { if (numOfLanes == 1) { fecSpeedStrFormat = "50g_" + numberOfLanesStr; } else { fecSpeedStrFormat = "50g"; } } if (speed == "100GbE") { fecSpeedStrFormat = "100g"; } if (speed == "50GbE") { fecSpeedStrFormat = "50g"; } if (speed == "25GbE" || speed == "25G") { fecSpeedStrFormat = "25g"; } if (speed == "40GbE" || speed == "40G" || speed == "10GbE" || speed == "10G") { fecSpeedStrFormat = "10g_40g"; } if (speed == "56GbE") { fecSpeedStrFormat = "56g"; } } return fecSpeedStrFormat; } u_int32_t MlxlinkCommander::fecToBit(const string& fec, const string& speedStrG) { string fecToCheck = fec; u_int32_t fecAdmin = FEC_MODE_MASK_AU; // Work with different RS and LL FEC for HDR, NDR and ETH PAM4 speeds if ((speedStrG == "ndr" || speedStrG == "hdr") || (speedStrG.find("x") != string::npos && speedStrG != "100g_4x" && speedStrG != "50g_2x")) { if (fec == _mlxlinkMaps->_fecModeMask[FEC_MODE_MASK_RS_528].second) { fecToCheck += "-544"; } else if (fec == _mlxlinkMaps->_fecModeMask[FEC_MODE_MASK_LL_271].second && speedStrG != "hdr") { fecToCheck += "-272"; } } for (auto it = _mlxlinkMaps->_fecModeMask.begin(); it != _mlxlinkMaps->_fecModeMask.end(); it++) { if (it->second.second == fecToCheck) { fecAdmin = it->first; } } return fecAdmin; } u_int32_t MlxlinkCommander::getFecCapForCheck(const string& speedStr) { u_int32_t fecCapMask = 0; sendPrmReg(ACCESS_REG_PPLM, GET); try { fecCapMask = getFieldValue(string(_protoActive == IB ? "ib_" : "") + "fec_override_cap_" + speedStr); } catch (MlxRegException& exc) { throw MlxRegException("\nFEC configuration is not available for this speed: " + speedStr); } return fecCapMask; } void MlxlinkCommander::checkPplmCap() { string speedFec = _userInput._speedFec; string uiSpeed = _userInput._speedFec; if (_linkUP && _userInput._speedFec.empty()) { speedFec = speedToFecSpeedStr(_speedStrG, _numOfLanes); uiSpeed = _speedStrG; } // Validate the speed if (!_userInput._speedFec.empty()) { vector supportedSpeeds = MlxlinkRecord::split(SupportedSpeeds2Str(_protoActive, _deviceCapability, _protoCapabilityEx), ","); string speedToCheck = _userInput._speedFec; speedToCheck = toUpperCase(speedToCheck); if (_protoCapabilityEx) { if (speedToCheck == "50G") { speedToCheck += "_2X"; } else if (speedToCheck == "100G") { speedToCheck += "_4X"; } } if (!isIn(speedToCheck, supportedSpeeds)) { string validSpeeds = ""; if (!supportedSpeeds.empty()) { validSpeeds = ", valid FEC speed configurations are ["; for (auto it = _mlxlinkMaps->_fecPerSpeed.begin(); it != _mlxlinkMaps->_fecPerSpeed.end(); it++) { if (isIn(it->first, supportedSpeeds)) { validSpeeds += it->first + ","; } } validSpeeds = !validSpeeds.empty() ? deleteLastChar(validSpeeds) : validSpeeds; validSpeeds = validSpeeds + "]"; } throw MlxRegException("\nFEC speed %s is not valid%s", uiSpeed.c_str(), validSpeeds.c_str()); } } // Validate the FEC for the speed if (speedFec == "10g" || speedFec == "40g") { speedFec = "10g_40g"; } if (speedFec == "50g_2x") { speedFec = "50g"; } if (speedFec == "100g_4x") { speedFec = "100g"; } _userInput._speedFec = speedFec; u_int32_t fecCap = getFecCapForCheck(_userInput._speedFec); if (_userInput._pplmFec != "AU" && !(fecToBit(_userInput._pplmFec, _userInput._speedFec) & fecCap)) { string supportedFec = fecMaskToUserInputStr(fecCap); string validFecs = fecMaskToUserInputStr(BIT_MASK_ALL_DWORD); string errorMsg = _userInput._pplmFec + " FEC is not supported in " + uiSpeed + " speed, "; if (validFecs.find(_userInput._pplmFec) == string::npos || _userInput._pplmFec.size() <= 1) { errorMsg = _userInput._pplmFec + " FEC configuration is not valid, "; } if (supportedFec.empty()) { errorMsg += "it's not available for this speed"; } else { errorMsg += "valid FEC configurations are [" + supportedFec + "]"; } throw MlxRegException("\n" + errorMsg); } } void MlxlinkCommander::getSltpAlevOut(u_int32_t lane) { sendPrmReg(ACCESS_REG_SLTP, GET, "lane=%d", lane); _userInput._sltpParams[SLTP_HDR_OB_ALEV_OUT] = getFieldValue("ob_alev_out"); } void MlxlinkCommander::getSltpRegAndLeva(u_int32_t lane) { sendPrmReg(ACCESS_REG_SLTP, GET, "lane=%d", lane); _userInput._sltpParams[SLTP_EDR_OB_REG] = getFieldValue("ob_reg"); _userInput._sltpParams[SLTP_EDR_OB_LEVA] = getFieldValue("ob_leva"); } u_int32_t MlxlinkCommander::getLaneSpeed(u_int32_t lane) { sendPrmReg(ACCESS_REG_SLTP, GET, "lane=%d", lane); return getFieldValue("lane_speed"); } void MlxlinkCommander::validateNumOfParamsForNDRGen() { u_int32_t params; string errMsg = "Invalid set of Transmitter Parameters, "; errMsg += "valid parameters for the active speed are: "; if ((!_activeSpeed && _devID == DeviceSpectrum4) || isSpeed100GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { params = SLTP_NDR_LAST; errMsg += "fir_pre3,fir_pre2,fir_pre1,fir_main,fir_post1"; } else if (isSpeed50GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { params = SLTP_NDR_FIR_POST1; errMsg += "fir_pre2,fir_pre1,fir_main,fir_post1"; } else { params = SLTP_NDR_FIR_MAIN; errMsg += "fir_pre1,fir_main,fir_post1"; } if (_userInput._sltpParams.size() != params) { throw MlxRegException(errMsg); } for (map::iterator it = _userInput._sltpParams.begin(); it != _userInput._sltpParams.end(); it++) { if (((int)it->second) > MAX_SBYTE || ((int)it->second) < MIN_SBYTE) { throw MlxRegException("Invalid Transmitter Parameters values"); } } } void MlxlinkCommander::checkSltpParamsSize() { u_int32_t sltpParamsSize = SLTP_EDR_OB_REG; if (_productTechnology == PRODUCT_16NM) { sltpParamsSize = SLTP_HDR_OB_ALEV_OUT; for (map::iterator it = _userInput._sltpParams.begin(); it != _userInput._sltpParams.end(); it++) { if (((int)it->second) > MAX_SBYTE || ((int)it->second) < MIN_SBYTE) { throw MlxRegException("Invalid Transmitter Parameters values"); } } } else if (_productTechnology >= PRODUCT_7NM) { validateNumOfParamsForNDRGen(); } else if (_userInput._advancedMode) { sltpParamsSize = SLTP_EDR_LAST; } if (_userInput._sltpParams.size() != sltpParamsSize && _productTechnology != PRODUCT_7NM && _productTechnology != PRODUCT_5NM) { throw MlxRegException("Invalid set of Transmitter Parameters"); } } string MlxlinkCommander::updateSltpEdrHdrFields() { map sltpParam = _mlxlinkMaps->_SltpEdrParams; string sltpParamCmd = ""; char hdrEdrParamBuff[32] = ""; if (_productTechnology == PRODUCT_16NM) { sltpParam = _mlxlinkMaps->_SltpHdrParams; } for (auto const& param : sltpParam) { if (param.second.fieldAccess & (FIELD_ACCESS_W | FIELD_ACCESS_ADVANCED)) { snprintf(hdrEdrParamBuff, 32, "%s=%d,", param.second.prmField.c_str(), _userInput._sltpParams[param.first]); sltpParamCmd += string(hdrEdrParamBuff); } } return deleteLastChar(sltpParamCmd); } string MlxlinkCommander::updateSltpNdrFields() { u_int32_t indexCorrection = 0; char ndrParamBuff[64] = ""; char hdrParamBuff[32] = ""; char paramBuff[128] = ""; string sltpParamsCmd = ""; if ((!_activeSpeed && _devID == DeviceSpectrum4) || isSpeed100GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { snprintf(ndrParamBuff, 64, ",fir_pre3=%d,fir_pre2=%d", _userInput._sltpParams[SLTP_NDR_FIR_PRE3], _userInput._sltpParams[SLTP_NDR_FIR_PRE2]); } else if (isSpeed50GPerLane(_protoActive == IB ? _activeSpeed : _activeSpeedEx, _protoActive)) { indexCorrection = 1; snprintf(hdrParamBuff, 32, ",fir_pre2=%d", _userInput._sltpParams[SLTP_NDR_FIR_PRE2 - indexCorrection]); } else { indexCorrection = 2; } snprintf(paramBuff, 128, "fir_pre1=%d,fir_main=%d,fir_post1=%d", _userInput._sltpParams[SLTP_NDR_FIR_PRE1 - indexCorrection], _userInput._sltpParams[SLTP_NDR_FIR_MAIN - indexCorrection], _userInput._sltpParams[SLTP_NDR_FIR_POST1 - indexCorrection]); return string(paramBuff) + string(hdrParamBuff) + string(ndrParamBuff); } string MlxlinkCommander::getSltpStatus() { sendPrmReg(ACCESS_REG_SLTP, GET); string statusStr = "Invalid parameters"; u_int32_t status = getFieldValue("ob_bad_stat"); if (status) { switch (_productTechnology) { case PRODUCT_40NM: case PRODUCT_28NM: statusStr = _mlxlinkMaps->_SLTPBadSetStatus2Str[status]; break; case PRODUCT_16NM: statusStr = _mlxlinkMaps->_SLTP16BadSetStatus2Str[status]; break; case PRODUCT_7NM: case PRODUCT_5NM: statusStr = _mlxlinkMaps->_SLTP7BadSetStatus2Str[status]; break; } } return statusStr; } void MlxlinkCommander::sendSltp() { MlxlinkRecord::printCmdLine("Configuring Port Transmitter Parameters", _jsonRoot); checkSltpParamsSize(); if (_userInput._sltpLane && _userInput._lane >= _numOfLanes) { throw MlxRegException("Could Not find Lane " + to_string(_userInput._lane)); } if (_userInput._txPolicy && _productTechnology < PRODUCT_7NM) { throw MlxRegException("--" SLTP_TX_POLICY_FLAG " flag is not valid for this device"); } try { if ((_devID == DeviceSpectrum2 || _devID == DeviceQuantum || _devID == DeviceQuantum2 || _devID == DeviceQuantum3 || _devID == DeviceBW00) && _userInput._db) { u_int32_t portGroup = getPortGroup(_localPort); MlxlinkRecord::printWar("Port " + to_string(_userInput._labelPort) + " is mapped to group " + to_string(portGroup) + ".\nPlease " "notice that the new settings will be implemented in all ports " "mapped to group " + to_string(portGroup), _jsonRoot); } u_int32_t laneSpeed = 0; string sltpParamsCmd = ""; for (u_int32_t lane = 0; lane < _numOfLanes; lane++) { if (_userInput._sltpLane && _userInput._lane != lane) { continue; } if (_userInput._db && lane != 0) { break; } laneSpeed = getLaneSpeed(lane); if (_productTechnology < PRODUCT_16NM && !_userInput._advancedMode) { getSltpRegAndLeva(lane); } else if (_productTechnology == PRODUCT_16NM) { getSltpAlevOut(lane); } if (_productTechnology >= PRODUCT_7NM) { sltpParamsCmd = updateSltpNdrFields(); } else { sltpParamsCmd = updateSltpEdrHdrFields(); } sendPrmReg(ACCESS_REG_SLTP, SET, "lane=%d,lane_speed=%d,tx_policy=%d,c_db=%d,%s", lane, laneSpeed, _userInput._txPolicy, _userInput._db || _userInput._txPolicy, sltpParamsCmd.c_str()); } } catch (MlxRegException& exc) { string errorMsg = getSltpStatus(); _allUnhandledErrors += string("Configuring Port Transmitter Parameters raised the following exception:\n" "Failed to send parameter set: ") + errorMsg + "\n"; } } string MlxlinkCommander::getLoopbackStr(u_int32_t loopbackCapMask) { string loopbackStr = _mlxlinkMaps->_loopbackModeList[LOOPBACK_MODE_NO].first + "(" + _mlxlinkMaps->_loopbackModeList[LOOPBACK_MODE_NO].second + ")/"; for (const auto& lbConf : _mlxlinkMaps->_loopbackModeList) { if ((lbConf.first & loopbackCapMask) && !lbConf.second.second.empty()) { loopbackStr += lbConf.second.first + "(" + lbConf.second.second + ")/"; } } return deleteLastChar(loopbackStr); } void MlxlinkCommander::checkPplrCap() { sendPrmReg(ACCESS_REG_PPLR, GET); u_int32_t loopBackCap = getFieldValue("lb_cap"); u_int32_t loopBackVal = getLoopbackMode(_userInput._pplrLB); if (loopBackVal != LOOPBACK_MODE_NO) { if (!(loopBackCap & getLoopbackMode(_userInput._pplrLB))) { string supportedLoopbacks = getLoopbackStr(loopBackCap); throw MlxRegException( "\n%s Loopback configuration is not supported, supported Loopback configurations are [%s]", _userInput._pplrLB.c_str(), supportedLoopbacks.c_str()); } } if (loopBackVal == LOOPBACK_MODE_REMOTE && _productTechnology < PRODUCT_7NM) { string warMsg = "Remote loopback mode pre-request (all should be satisfied):\n"; warMsg += "1. Remote loopback is supported only in force mode.\n"; warMsg += " please use the --link_mode_force flag if force mode not configured\n"; warMsg += "2. Remote loopback is supported for 25G per lane only.\n"; warMsg += "3. If the NIC has 2 ports, please make sure that both ports are in the same speed."; MlxlinkRecord::printWar(warMsg, _jsonRoot); } } void MlxlinkCommander::sendPplr() { try { MlxlinkRecord::printCmdLine("Configuring Port Loopback", _jsonRoot); checkPplrCap(); sendPrmReg(ACCESS_REG_PPLR, SET, "lb_en=%d", getLoopbackMode(_userInput._pplrLB)); } catch (const std::exception& exc) { _allUnhandledErrors += string("Sending PPLR (Configuring port loopback) raised the following exception: ") + string(exc.what()) + string("\n"); } } u_int32_t MlxlinkCommander::getLoopbackMode(const string& lb) { auto it = find_if(_mlxlinkMaps->_loopbackModeList.begin(), _mlxlinkMaps->_loopbackModeList.end(), [lb](pair> lpConf) { return lb == lpConf.second.first; }); if (it == _mlxlinkMaps->_loopbackModeList.end()) { throw MlxRegException("Invalid loopback option: %s, see tool usage \"%s --help\"", lb.c_str(), MLXLINK_EXEC); } return it->first; } void MlxlinkCommander::sendPepc() { try { gearboxBlock(PEPC_SET_FLAG); if (_isHCA || _devID == DeviceSwitchIB || _devID == DeviceSwitchIB2 || _devID == DeviceQuantum || _devID == DeviceQuantum2 || _devID == DeviceQuantum3 || _devID == DeviceBW00) { throw MlxRegException("\"--" PEPC_SET_FLAG "\" option is not supported for HCA and InfiniBand switches"); } MlxlinkRecord::printCmdLine("Configuring External PHY", _jsonRoot); string regName = "PEPC"; // Get old values of PEPC fields sendPrmReg(ACCESS_REG_PEPC, GET); u_int32_t forceMode_int = getFieldValue("twisted_pair_force_mode"); u_int32_t anMode_int = getFieldValue("twisted_pair_an_mode"); // Set new values of PEPC fields u_int32_t forceMode = forceMode_int; if (_userInput._sendPepcForceMode) { forceMode = pepc_force_mode_to_int(_userInput._forceMode); } sendPrmReg(ACCESS_REG_PEPC, SET, "twisted_pair_an_mode=%d,twisted_pair_force_mode=%d", anMode_int, forceMode); } catch (const std::exception& exc) { _allUnhandledErrors += string("Sending PEPC (Configuring External PHY parameters) raised the following exception: ") + string(exc.what()) + string("\n"); } } u_int32_t MlxlinkCommander::getPortGroup(u_int32_t localPort) { sendPrmReg(ACCESS_REG_PGMR, GET, "local_port=%d,pg_sel=%d", (localPort - 1), TX_LOCAL_PORT); return getFieldValue("group_of_port"); } void MlxlinkCommander::setTxGroupMapping() { try { if (_devID != DeviceSpectrum2 && _devID != DeviceQuantum && _devID != DeviceQuantum2 && _devID != DeviceQuantum3 && _devID != DeviceBW00) { throw MlxRegException("Port group mapping supported for Spectrum-2 and Quantum switches only!"); } MlxlinkRecord::printCmdLine("Configuring Ports-Group Mapping", _jsonRoot); handleLabelPorts(_userInput._labelPorts); u_int32_t blockSelector, bitMask; u_int32_t blocksToSet[4] = {0, 0, 0, 0}; u_int32_t localPort = 0; for (vector::iterator it = _localPortsPerGroup.begin(); it != _localPortsPerGroup.end(); it++) { localPort = it->localPort; blockSelector = (localPort - 1) / MAX_DWORD_BLOCK_SIZE; bitMask = (u_int32_t)pow(2.0, (int)((localPort - 1) - (blockSelector * MAX_DWORD_BLOCK_SIZE))); blocksToSet[blockSelector] |= (bitMask); } sendPrmReg(ACCESS_REG_PGMR, SET, "local_port=%d,pg_sel=%d,group=%d," "ports_mapping_of_group[0]=%d,ports_mapping_of_group[1]=%d," "ports_mapping_of_group[2]=%d,ports_mapping_of_group[3]=%d", 1, TX_GROUP, _userInput._setGroup, blocksToSet[0], blocksToSet[1], blocksToSet[2], blocksToSet[3]); } catch (const std::exception& exc) { string errorMsg = string(exc.what()); if (errorMsg == OPERATIONAL_ERROR_STR) { errorMsg = "Invalid configuration values"; } _allUnhandledErrors += string("Configuring ports group mapping raised the following exception: ") + errorMsg + string("\n"); } } /////////////////////////////////////////////// // Cable operation // Cable helper functions bool MlxlinkCommander::isPassiveQSFP() { switch (_cableIdentifier) { case IDENTIFIER_QSFP28: case IDENTIFIER_QSFP_PLUS: return (_cableMediaType == PASSIVE); } return false; } bool MlxlinkCommander::isSFP51Paging() { // TODO check page 0 byte 64 bit 4, if set, then SFP51, else SFP. bool sfpQsaCable = (_cableIdentifier == IDENTIFIER_SFP || _cableIdentifier == IDENTIFIER_QSA); bool readSfp51 = false; if (_ddmSupported && sfpQsaCable) { readSfp51 = true; } return readSfp51; } void MlxlinkCommander::printOuptputVector(vector& cmdOut) { for (vector::iterator ptr = cmdOut.begin(); ptr < cmdOut.end(); ptr++) { cout << *ptr; } } void MlxlinkCommander::initCablesCommander() { gearboxBlock(CABLE_FLAG); if (_plugged && !_mngCableUnplugged) { _cablesCommander = new MlxlinkCablesCommander(_jsonRoot); _cablesCommander->_mf = _mf; _cablesCommander->_regLib = _regLib; _cablesCommander->_gvmiAddress = _gvmiAddress; _cablesCommander->_moduleNumber = _moduleNumber; _cablesCommander->_slotIndex = _slotIndex; _cablesCommander->_localPort = _localPort; _cablesCommander->_numOfLanes = _numOfLanes; _cablesCommander->_cableIdentifier = _cableIdentifier; _cablesCommander->_mlxlinkMaps = _mlxlinkMaps; _cablesCommander->_sfp51Paging = isSFP51Paging(); _cablesCommander->_passiveQsfp = isPassiveQSFP(); } else { throw MlxRegException("No plugged cable detected"); } } void MlxlinkCommander::showCableDump() { try { initCablesCommander(); vector dumpOutput = _cablesCommander->getPagesToDump(); printOuptputVector(dumpOutput); } catch (MlxRegException& exc) { _allUnhandledErrors += "Dumping EEPROM pages raised the following exception: " + exc.what_s() + "\n"; } } void MlxlinkCommander::showCableDDM() { try { initCablesCommander(); if (_ddmSupported) { vector ddmOutput = _cablesCommander->getCableDDM(); printOuptputVector(ddmOutput); } else { throw MlxRegException("Cable does not support DDM"); } } catch (MlxRegException& exc) { _allUnhandledErrors += "Showing DDM info raised the following exception: "; _allUnhandledErrors += exc.what_s(); _allUnhandledErrors += "\n"; } } vector MlxlinkCommander::validateBytes(const vector& strBytes) { vector intData; u_int32_t byteVal = 0; for (u_int32_t i = 0; i < strBytes.size(); i++) { strToUint32((char*)strBytes[i].c_str(), byteVal); if (byteVal > 255) { throw MlxRegException("Invalid byte value %d. It must be within range [0-255].", byteVal); } intData.push_back(byteVal); } return intData; } void MlxlinkCommander::writeCableEEPROM() { try { initCablesCommander(); MlxlinkRecord::printCmdLine("Writing To Cable EEPROM", _jsonRoot); if (_plugged && !_mngCableUnplugged) { vector bytesToWrite = validateBytes(_userInput._bytesToWrite); _cablesCommander->writeToEEPROM(_userInput._page, _userInput._offset, bytesToWrite); } } catch (MlxRegException& exc) { _allUnhandledErrors += "Writing cable EEPROM raised the following exception: "; _allUnhandledErrors += exc.what_s(); _allUnhandledErrors += "\n"; } } void MlxlinkCommander::readCableEEPROM() { try { initCablesCommander(); MlxlinkCmdPrint bytesOutput = _cablesCommander->readFromEEPRM(_userInput._page, _userInput._offset, _userInput._len); cout << bytesOutput; } catch (MlxRegException& exc) { _allUnhandledErrors += "Reading cable EEPROM raised the following exception: " + exc.what_s() + "\n"; } } void MlxlinkCommander::performControlParams() { try { initCablesCommander(); if (_cableMediaType == ACTIVE || _cableMediaType == OPTICAL_MODULE) { if (_userInput.configParamsToSet.empty()) { _cablesCommander->showControlParams(); } else { if (_linkUP) { throw MlxRegException("Control parameters can be configured when the port is Disabled only\n"); } else { _cablesCommander->setControlParams(_userInput.configParamsToSet); } } } else { throw MlxRegException("Control parameters are valid over Active/Optical modules only"); } } catch (MlxRegException& exc) { _allUnhandledErrors += "Reading cable EEPROM raised the following exception: "; _allUnhandledErrors += exc.what_s(); _allUnhandledErrors += "\n"; } } void MlxlinkCommander::performModulePrbsCommands() { try { initCablesCommander(); if (_cmisCable) { if (_cableMediaType == ACTIVE || _cableMediaType == OPTICAL_MODULE) { if (_userInput.modulePrbsParams[MODULE_PRBS_SELECT] != "HOST" && _userInput.modulePrbsParams[MODULE_PRBS_SELECT] != "MEDIA") { throw MlxRegException("Invalid module side PRBS select, please check the help menu"); } _cablesCommander->_modulePrbsParams = _userInput.modulePrbsParams; if (_userInput.isPrbsModeProvided) { ModuleAccess_t prbsModuleAccess = MODULE_PRBS_ACCESS_BOTH; if (_userInput.isPrbsChProvided && !_userInput.isPrbsGenProvided) { prbsModuleAccess = MODULE_PRBS_ACCESS_CH; } else if (!_userInput.isPrbsChProvided && _userInput.isPrbsGenProvided) { prbsModuleAccess = MODULE_PRBS_ACCESS_GEN; } else if (_userInput.isPrbsChProvided && _userInput.isPrbsGenProvided) { prbsModuleAccess = MODULE_PRBS_ACCESS_CH_GEN; } _cablesCommander->handlePrbsTestMode(_userInput.modulePrbsParams[MODULE_PRBS_MODE], prbsModuleAccess); } else { _cablesCommander->showPrbsTestMode(); } if (_userInput.isPrbsShowDiagProvided) { _cablesCommander->showPrpsDiagInfo(); } if (_userInput.isPrbsClearDiagProvided) { _cablesCommander->clearPrbsDiagInfo(); } } else { throw MlxRegException("The PRBS test mode supported over Active/Optical modules only"); } } else { throw MlxRegException("The PRBS test mode supported for CMIS modules only"); } } catch (MlxRegException& exc) { _allUnhandledErrors += "Module PRBS test mode raised the following exception: "; _allUnhandledErrors += exc.what_s(); _allUnhandledErrors += "\n"; } } void MlxlinkCommander::initEyeOpener() { try { gearboxBlock(MARGIN_SCAN_FLAG); if (_linkUP || _userInput._pcie) { _eyeOpener = new MlxlinkEyeOpener(_jsonRoot); _eyeOpener->_mf = _mf; _eyeOpener->_regLib = _regLib; _eyeOpener->_gvmiAddress = _gvmiAddress; _eyeOpener->_localPort = _localPort; _eyeOpener->_pnat = _pnat; _eyeOpener->version = _productTechnology; _eyeOpener->depth = _dpn.depth; _eyeOpener->pcieIndex = _dpn.pcieIndex; _eyeOpener->node = _dpn.node; _eyeOpener->numOfLanes = _userInput._pcie ? _numOfLanesPcie : _numOfLanes; _eyeOpener->lane = _userInput.gradeScanPerLane ? _userInput._lane : -1; _eyeOpener->isPam4Speed = _isPam4Speed || ((_linkSpeed == IB_LINK_SPEED_HDR) && (_protoActive == IB)); _eyeOpener->activeSpeedStr = _speedStrG; if (_userInput.measureTime < 0) { if (_userInput._pcie) { _userInput.measureTime = DFLT_MSUR_TIME_PCIE; } else { _userInput.measureTime = DFLT_MSUR_TIME_PORT; } } _eyeOpener->setMeasureTime(_userInput.measureTime); _eyeOpener->setEyeSel(_userInput.eyeSelect); _eyeOpener->setNonInteractiveMode(_userInput.force); _eyeOpener->enableGradeScan(); } else { throw MlxRegException("port must be active"); } } catch (MlxRegException& exc) { _allUnhandledErrors += string("Reading SerDes receive eye grade raised the following" " exception:\n") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::initErrInj() { _errInjector = new MlxlinkErrInjCommander(_jsonRoot); _errInjector->_regLib = _regLib; _errInjector->_localPort = _localPort; _errInjector->_force = _userInput.force; _errInjector->_mlxlinkMaps = _mlxlinkMaps; } void MlxlinkCommander::handleRxErrInj() { try { gearboxBlock(PREI_RX_ERR_INJ_FLAG); if (!_isHCA) { throw MlxRegException("This feature supporting NIC's only"); } if (_productTechnology != PRODUCT_28NM) { throw MlxRegException("This feature supporting 28nm products only"); } if (_prbsTestMode) { throw MlxRegException("This feature not working while PRBS test mode is active"); } if (!_linkUP) { throw MlxRegException("Port must be active"); } if (!isSpeed25GPerLane(_activeSpeed, _protoActive)) { throw MlxRegException("This feature supporting 25G per lane speeds only"); } if (_fecActive != FEC_MODE_NO_FEC) { throw MlxRegException("This feature supporting links running with NO-FEC only"); } initErrInj(); if (_userInput.mixerOffset0 >= 0 || _userInput.mixerOffset1 >= 0) { _errInjector->_mixerOffset0 = _userInput.mixerOffset0; _errInjector->_mixerOffset1 = _userInput.mixerOffset1; _errInjector->updateMixerOffsets(); } else { _errInjector->showMixersOffset(); } } catch (MlxRegException& exc) { _allUnhandledErrors += string("Reading RX error injection raised the following exception:\n") + string(exc.what()) + string("\n"); } } bool MlxlinkCommander::isMpeinjSupported() { try { sendPrmReg(ACCESS_REG_MPEINJ, GET, "depth=%d,pcie_index=%d,node=%d", _dpn.depth, _dpn.pcieIndex, _dpn.node); return true; } catch (...) { return false; } } void MlxlinkCommander::handlePCIeErrInj() { if (!isMpeinjSupported()) { throw MlxRegException("The current device does not support PCIe Error Injection!"); } initErrInj(); if (_userInput.errorType.empty()) { _errInjector->showPcieErrInjState(_dpn); } else { _errInjector->startPcieErrInj(_dpn, _userInput.errorType, _userInput.errorDuration, _userInput.injDelay, _userInput.dbdf, _userInput.parameters); } } bool MlxlinkCommander::isPPHCRSupported() { bool supported = true; try { sendPrmReg(ACCESS_REG_PPHCR, GET, "local_port=1,pnat=1"); } catch (MlxRegException& exc) { supported = false; } return supported; } void MlxlinkCommander::initPortInfo() { try { if (_prbsTestMode) { throw MlxRegException("FEC Histogram is valid with normal link operation only"); } if (!isPPHCRSupported()) { throw MlxRegException("FEC Histogram is not supported for the current device"); } if (_userInput._pcie) { throw MlxRegException("FEC Histogram is not available for PCIe links"); } if (!_linkUP) { throw MlxRegException("FEC Histogram is valid with active link operation only"); } _portInfo = new MlxlinkPortInfo(_jsonRoot); _portInfo->_regLib = _regLib; _portInfo->_localPort = _localPort; _portInfo->_portType = _portType; _portInfo->_fecActive = _fecActive; _portInfo->init(); if (_userInput.showFecHistogram) { _portInfo->showHistogram(); } else if (_userInput.clearFecHistogram) { _portInfo->clearHistogram(); } } catch (MlxRegException& exc) { _allUnhandledErrors += string("Providing FEC histogram cause the following" " exception:\n") + string(exc.what()) + string("\n"); } } void MlxlinkCommander::setAmBerCollectorFields() { _amberCollector->_regLib = _regLib; _amberCollector->_pnat = _pnat; _amberCollector->_localPort = _localPort; _amberCollector->_csvFileName = _userInput._csvBer; _amberCollector->_iteration = _userInput._iteration; _amberCollector->_testMode = _userInput._testMode; _amberCollector->_depth = _dpn.depth; _amberCollector->_pcieIndex = _dpn.pcieIndex; _amberCollector->_node = _dpn.node; _amberCollector->_mlxlinkMaps = _mlxlinkMaps; _amberCollector->_isHca = _isHCA; _amberCollector->_devID = _devID; _amberCollector->_productTechnology = _productTechnology; _amberCollector->_mstDevName = _device; } void MlxlinkCommander::initAmBerCollector() { if (!_amberCollector) { _amberCollector = new MlxlinkAmBerCollector(_jsonRoot); setAmBerCollectorFields(); } } void MlxlinkCommander::prepareJsonOut() { _operatingInfoCmd.toJsonFormat(_jsonRoot); _supportedInfoCmd.toJsonFormat(_jsonRoot); _troubInfoCmd.toJsonFormat(_jsonRoot); _toolInfoCmd.toJsonFormat(_jsonRoot); _testModeInfoCmd.toJsonFormat(_jsonRoot); _moduleInfoCmd.toJsonFormat(_jsonRoot); _berInfoCmd.toJsonFormat(_jsonRoot); _testModeBerInfoCmd.toJsonFormat(_jsonRoot); _mpcntPerfInfCmd.toJsonFormat(_jsonRoot); _mpcntTimerInfCmd.toJsonFormat(_jsonRoot); _eyeOpeningInfoCmd.toJsonFormat(_jsonRoot); _fecCapInfoCmd.toJsonFormat(_jsonRoot); _sltpInfoCmd.toJsonFormat(_jsonRoot); _showDeviceInfoCmd.toJsonFormat(_jsonRoot); _showBerMonitorInfo.toJsonFormat(_jsonRoot); _extPhyInfoCmd.toJsonFormat(_jsonRoot); _linkBlameInfoCmd.toJsonFormat(_jsonRoot); _validPcieLinks.toJsonFormat(_jsonRoot); _portGroupMapping.toJsonFormat(_jsonRoot); bool errorExist = _allUnhandledErrors != ""; _jsonRoot[JSON_STATUS_SECTION][JSON_STATUS_CODE] = errorExist ? 1 : 0; _jsonRoot[JSON_STATUS_SECTION][JSON_MSG] = errorExist ? _allUnhandledErrors : "success"; if (!_jsonRoot[JSON_RESULT_SECTION][JSON_OUTPUT_SECTION]) { _jsonRoot[JSON_RESULT_SECTION][JSON_OUTPUT_SECTION] = "N/A"; } } mstflint-4.26.0/mlxlink/modules/mlxlink_enums.h0000644000175000017500000013054614522641732022100 0ustar tzafrirctzafrirc/* * Copyright (c) 2020-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXLINK_ENUMS_H #define MLXLINK_ENUMS_H // Common definitions #define AMBER_VERSION "2.17" #define ACCESS_REG_MCIA "MCIA" #define ACCESS_REG_MDDQ "MDDQ" #define ACCESS_REG_MDIR "MDIR" #define ACCESS_REG_MGIR "MGIR" #define ACCESS_REG_MGPIR "MGPIR" #define ACCESS_REG_MPCNT "MPCNT" #define ACCESS_REG_MPEIN "MPEIN" #define ACCESS_REG_MPEINJ "MPEINJ" #define ACCESS_REG_MPIR "MPIR" #define ACCESS_REG_MSGI "MSGI" #define ACCESS_REG_MTCAP "MTCAP" #define ACCESS_REG_MTMP "MTMP" #define ACCESS_REG_MVCAP "MVCAP" #define ACCESS_REG_MVCR "MVCR" #define ACCESS_REG_PAOS "PAOS" #define ACCESS_REG_PCAM "PCAM" #define ACCESS_REG_PDDR "PDDR" #define ACCESS_REG_PEPC "PEPC" #define ACCESS_REG_PEMI "PEMI" #define ACCESS_REG_PGMR "PGMR" #define ACCESS_REG_PGUID "PGUID" #define ACCESS_REG_PLIB "PLIB" #define ACCESS_REG_PLLP "PLLP" #define ACCESS_REG_PMAOS "PMAOS" #define ACCESS_REG_PMCR "PMCR" #define ACCESS_REG_PMLP "PMLP" #define ACCESS_REG_PMPD "PMPD" #define ACCESS_REG_PMPT "PMPT" #define ACCESS_REG_PMTM "PMTM" #define ACCESS_REG_PPAOS "PPAOS" #define ACCESS_REG_PPBMC "PPBMC" #define ACCESS_REG_PPCNT "PPCNT" #define ACCESS_REG_PPHCR "PPHCR" #define ACCESS_REG_PPLM "PPLM" #define ACCESS_REG_PPLR "PPLR" #define ACCESS_REG_PPRT "PPRT" #define ACCESS_REG_PPTT "PPTT" #define ACCESS_REG_PREI "PREI" #define ACCESS_REG_PRTL "PRTL" #define ACCESS_REG_PTYS "PTYS" #define ACCESS_REG_SLRED "SLRED" #define ACCESS_REG_SLRG "SLRG" #define ACCESS_REG_SLTP "SLTP" #define ACCESS_REG_SPAD "SPAD" #define ACCESS_REG_SPZR "SPZR" // define all used regs above this line #define QSFP_CHANNELS 4 #define LANES_NUM 8 #define NUM_OF_BINS 16 #define MTMP_GEARBOX_SENSOR_OFFSET 256 #define MAX_NETWORK_LANES 8 #define MAX_IB_LANES 4 #define MAX_PCIE_LANES 16 #define SLRG_PCIE_7NM_SLEEP 10 #define SLRG_PCIE_7NM_TIMEOUT SLRG_PCIE_7NM_SLEEP * 50 // cables parse definition #define SHIFT_0 0 #define SHIFT_1 1 #define SHIFT_2 2 #define SHIFT_3 3 #define SHIFT_4 4 #define SHIFT_5 5 #define SHIFT_6 6 #define SHIFT_7 7 #define SHIFT_8 8 #define SHIFT_9 9 #define SHIFT_10 10 #define SHIFT_11 11 #define SHIFT_12 12 #define SHIFT_13 13 #define SHIFT_14 14 #define SHIFT_15 15 /* * QSFP Paging, Page 0 Low */ /* Module Monitor Interrupt Flags - 6-8 */ #define QSFP_TEMP_AW_OFFSET 0x06 #define QSFP_TEMP_HALARM_STATUS (1 << SHIFT_7) #define QSFP_TEMP_LALARM_STATUS (1 << SHIFT_6) #define QSFP_TEMP_HWARN_STATUS (1 << SHIFT_5) #define QSFP_TEMP_LWARN_STATUS (1 << SHIFT_4) #define QSFP_VCC_AW_OFFSET 0x07 #define QSFP_VCC_HALARM_STATUS (1 << SHIFT_7) #define QSFP_VCC_LALARM_STATUS (1 << SHIFT_6) #define QSFP_VCC_HWARN_STATUS (1 << SHIFT_5) #define QSFP_VCC_LWARN_STATUS (1 << SHIFT_4) /* Channel Monitor Interrupt Flags - 9-21 */ #define QSFP_RX_PWR_12_AW_OFFSET 0x09 #define QSFP_RX_PWR_1_HALARM (1 << SHIFT_7) #define QSFP_RX_PWR_1_LALARM (1 << SHIFT_6) #define QSFP_RX_PWR_1_HWARN (1 << SHIFT_5) #define QSFP_RX_PWR_1_LWARN (1 << SHIFT_4) #define QSFP_RX_PWR_2_HALARM (1 << SHIFT_3) #define QSFP_RX_PWR_2_LALARM (1 << SHIFT_2) #define QSFP_RX_PWR_2_HWARN (1 << SHIFT_1) #define QSFP_RX_PWR_2_LWARN (1 << SHIFT_0) #define QSFP_RX_PWR_34_AW_OFFSET 0x0A #define QSFP_RX_PWR_3_HALARM (1 << SHIFT_7) #define QSFP_RX_PWR_3_LALARM (1 << SHIFT_6) #define QSFP_RX_PWR_3_HWARN (1 << SHIFT_5) #define QSFP_RX_PWR_3_LWARN (1 << SHIFT_4) #define QSFP_RX_PWR_4_HALARM (1 << SHIFT_3) #define QSFP_RX_PWR_4_LALARM (1 << SHIFT_2) #define QSFP_RX_PWR_4_HWARN (1 << SHIFT_1) #define QSFP_RX_PWR_4_LWARN (1 << SHIFT_0) #define QSFP_TX_BIAS_12_AW_OFFSET 0x0B #define QSFP_TX_BIAS_1_HALARM (1 << SHIFT_7) #define QSFP_TX_BIAS_1_LALARM (1 << SHIFT_6) #define QSFP_TX_BIAS_1_HWARN (1 << SHIFT_5) #define QSFP_TX_BIAS_1_LWARN (1 << SHIFT_4) #define QSFP_TX_BIAS_2_HALARM (1 << SHIFT_3) #define QSFP_TX_BIAS_2_LALARM (1 << SHIFT_2) #define QSFP_TX_BIAS_2_HWARN (1 << SHIFT_1) #define QSFP_TX_BIAS_2_LWARN (1 << SHIFT_0) #define QSFP_TX_BIAS_34_AW_OFFSET 0x0C #define QSFP_TX_BIAS_3_HALARM (1 << SHIFT_7) #define QSFP_TX_BIAS_3_LALARM (1 << SHIFT_6) #define QSFP_TX_BIAS_3_HWARN (1 << SHIFT_5) #define QSFP_TX_BIAS_3_LWARN (1 << SHIFT_4) #define QSFP_TX_BIAS_4_HALARM (1 << SHIFT_3) #define QSFP_TX_BIAS_4_LALARM (1 << SHIFT_2) #define QSFP_TX_BIAS_4_HWARN (1 << SHIFT_1) #define QSFP_TX_BIAS_4_LWARN (1 << SHIFT_0) #define QSFP_TX_PWR_12_AW_OFFSET 0x0D #define QSFP_TX_PWR_1_HALARM (1 << SHIFT_7) #define QSFP_TX_PWR_1_LALARM (1 << SHIFT_6) #define QSFP_TX_PWR_1_HWARN (1 << SHIFT_5) #define QSFP_TX_PWR_1_LWARN (1 << SHIFT_4) #define QSFP_TX_PWR_2_HALARM (1 << SHIFT_3) #define QSFP_TX_PWR_2_LALARM (1 << SHIFT_2) #define QSFP_TX_PWR_2_HWARN (1 << SHIFT_1) #define QSFP_TX_PWR_2_LWARN (1 << SHIFT_0) #define QSFP_TX_PWR_34_AW_OFFSET 0x0E #define QSFP_TX_PWR_3_HALARM (1 << SHIFT_7) #define QSFP_TX_PWR_3_LALARM (1 << SHIFT_6) #define QSFP_TX_PWR_3_HWARN (1 << SHIFT_5) #define QSFP_TX_PWR_3_LWARN (1 << SHIFT_4) #define QSFP_TX_PWR_4_HALARM (1 << SHIFT_3) #define QSFP_TX_PWR_4_LALARM (1 << SHIFT_2) #define QSFP_TX_PWR_4_HWARN (1 << SHIFT_1) #define QSFP_TX_PWR_4_LWARN (1 << SHIFT_0) /* Module Monitoring Values - 22-33 */ #define QSFP_TEMP_CURR 0x16 #define QSFP_TEMP_MSB_OFFSET 0x16 #define QSFP_TEMP_LSB_OFFSET 0x17 #define QSFP_VCC_CURR 0x1A #define QSFP_VCC_MSB_OFFSET 0x1A #define QSFP_VCC_LSB_OFFSET 0x1B /* Channel Monitoring Values - 34-81 */ #define QSFP_RX_PWR_1_OFFSET 0x22 #define QSFP_RX_PWR_2_OFFSET 0x24 #define QSFP_RX_PWR_3_OFFSET 0x26 #define QSFP_RX_PWR_4_OFFSET 0x28 #define QSFP_TX_BIAS_1_OFFSET 0x2A #define QSFP_TX_BIAS_2_OFFSET 0x2C #define QSFP_TX_BIAS_3_OFFSET 0x2E #define QSFP_TX_BIAS_4_OFFSET 0x30 #define QSFP_TX_PWR_1_OFFSET 0x32 #define QSFP_TX_PWR_2_OFFSET 0x34 #define QSFP_TX_PWR_3_OFFSET 0x36 #define QSFP_TX_PWR_4_OFFSET 0x38 // Page 3 High #define QSFP_TEMP_HALRM 0x00 #define QSFP_TEMP_LALRM 0x02 #define QSFP_TEMP_HWARN 0x04 #define QSFP_TEMP_LWARN 0x06 #define QSFP_VCC_HALRM 0x10 #define QSFP_VCC_LALRM 0x12 #define QSFP_VCC_HWARN 0x14 #define QSFP_VCC_LWARN 0x16 #define QSFP_RX_PWR_HALRM 0x30 #define QSFP_RX_PWR_LALRM 0x32 #define QSFP_RX_PWR_HWARN 0x34 #define QSFP_RX_PWR_LWARN 0x36 #define QSFP_TX_BIAS_HALRM 0x38 #define QSFP_TX_BIAS_LALRM 0x3A #define QSFP_TX_BIAS_HWARN 0x3C #define QSFP_TX_BIAS_LWARN 0x3E #define QSFP_TX_PWR_HALRM 0x40 #define QSFP_TX_PWR_LALRM 0x42 #define QSFP_TX_PWR_HWARN 0x44 #define QSFP_TX_PWR_LWARN 0x46 // SFP 51 Paging, Page 0x1 Low #define SFP51_BASE 0x100 /* A2-based offsets for DOM */ #define SFP51_TEMP_HALRM 0 #define SFP51_TEMP_LALRM 2 #define SFP51_TEMP_HWARN 4 #define SFP51_TEMP_LWARN 6 #define SFP51_VCC_HALRM 8 #define SFP51_VCC_LALRM 10 #define SFP51_VCC_HWARN 12 #define SFP51_VCC_LWARN 14 #define SFP51_BIAS_HALRM 16 #define SFP51_BIAS_LALRM 18 #define SFP51_BIAS_HWARN 20 #define SFP51_BIAS_LWARN 22 #define SFP51_TX_PWR_HALRM 24 #define SFP51_TX_PWR_LALRM 26 #define SFP51_TX_PWR_HWARN 28 #define SFP51_TX_PWR_LWARN 30 #define SFP51_RX_PWR_HALRM 32 #define SFP51_RX_PWR_LALRM 34 #define SFP51_RX_PWR_HWARN 36 #define SFP51_RX_PWR_LWARN 38 #define SFP51_TEMP 96 #define SFP51_VCC 98 #define SFP51_BIAS 100 #define SFP51_TX_PWR 102 #define SFP51_RX_PWR 104 #define SFP51_ALRM_FLG 112 #define SFP51_TX_PWR_LALRM_FLG (1 << SHIFT_0) #define SFP51_TX_PWR_HALRM_FLG (1 << SHIFT_1) #define SFP51_BIAS_LALRM_FLG (1 << SHIFT_2) #define SFP51_BIAS_HALRM_FLG (1 << SHIFT_3) #define SFP51_VCC_LALRM_FLG (1 << SHIFT_4) #define SFP51_VCC_HALRM_FLG (1 << SHIFT_5) #define SFP51_TEMP_LALRM_FLG (1 << SHIFT_6) #define SFP51_TEMP_HALRM_FLG (1 << SHIFT_7) #define SFP51_RX_PWR_LALRM_FLG (1 << SHIFT_14) #define SFP51_RX_PWR_HALRM_FLG (1 << SHIFT_15) #define SFP51_WARN_FLG 116 #define SFP51_TX_PWR_LWARN_FLG (1 << SHIFT_0) #define SFP51_TX_PWR_HWARN_FLG (1 << SHIFT_1) #define SFP51_BIAS_LWARN_FLG (1 << SHIFT_2) #define SFP51_BIAS_HWARN_FLG (1 << SHIFT_3) #define SFP51_VCC_LWARN_FLG (1 << SHIFT_4) #define SFP51_VCC_HWARN_FLG (1 << SHIFT_5) #define SFP51_TEMP_LWARN_FLG (1 << SHIFT_6) #define SFP51_TEMP_HWARN_FLG (1 << SHIFT_7) #define SFP51_RX_PWR_LWARN_FLG (1 << SHIFT_14) #define SFP51_RX_PWR_HWARN_FLG (1 << SHIFT_15) /* * QSFP-DD Paging, Page 0 Low */ /* Module Monitor Interrupt Flags */ #define QSFP_DD_MODULE_INFO_OFFSET 0x09 #define CMIS_TEMP_HALARM_STATUS (1 << SHIFT_0) #define CMIS_TEMP_LALARM_STATUS (1 << SHIFT_1) #define CMIS_TEMP_HWARN_STATUS (1 << SHIFT_2) #define CMIS_TEMP_LWARN_STATUS (1 << SHIFT_3) #define CMIS_VCC_HALARM_STATUS (1 << SHIFT_4) #define CMIS_VCC_LALARM_STATUS (1 << SHIFT_5) #define CMIS_VCC_HWARN_STATUS (1 << SHIFT_6) #define CMIS_VCC_LWARN_STATUS (1 << SHIFT_7) /* Channels Monitor Interrupt Flags */ // QSFP-DD from upper page 0x11 #define QSFP_DD_TX_POWER_HALARM_OFFSET 0x8b // 0:7 for 8 channels #define QSFP_DD_TX_POWER_LALARM_OFFSET 0x8c // 0:7 for 8 channels #define QSFP_DD_TX_POWER_HWARN_OFFSET 0x8d // 0:7 for 8 channels #define QSFP_DD_TX_POWER_LWARN_OFFSET 0x8e // 0:7 for 8 channels #define QSFP_DD_TX_BIAS_HALARM_OFFSET 0x8f // 0:7 for 8 channels #define QSFP_DD_TX_BIAS_LALARM_OFFSET 0x90 // 0:7 for 8 channels #define QSFP_DD_TX_BIAS_HWARN_OFFSET 0x91 // 0:7 for 8 channels #define QSFP_DD_TX_BIAS_LWARN_OFFSET 0x92 // 0:7 for 8 channels #define QSFP_DD_RX_POWER_HALARM_OFFSET 0x95 // 0:7 for 8 channels #define QSFP_DD_RX_POWER_LALARM_OFFSET 0x96 // 0:7 for 8 channels #define QSFP_DD_RX_POWER_HWARN_OFFSET 0x97 // 0:7 for 8 channels #define QSFP_DD_RX_POWER_LWARN_OFFSET 0x98 // 0:7 for 8 channels // Thresholds from upper page 0x2 #define QSFP_DD_TEMP_THR_OFFSET 0x80 // halarm 80, lalarm 82, hwarn 84, lwarn 86 #define QSFP_DD_VCC_THR_OFFSET 0x88 // halarm 88, lalarm 90, hwarn 92, lwarn 94 #define QSFP_DD_TX_POWER_THR_OFFSET 0xb0 // halarm b0, lalarm b2, hwarn b4, lwarn b6 #define QSFP_DD_TX_BIAS_THR_OFFSET 0xb8 // halarm b8, lalarm ba, hwarn bc, lwarn be #define QSFP_DD_RX_POWER_THR_OFFSET 0xc0 // halarm c0, lalarm c2, hwar9n c4, lwarn c6 // SFP-DD from lower page 0 /* Module Monitor Interrupt Flags */ #define SFP_DD_MODULE_INFO_OFFSET 0x11 // See QSFP-DD module section for mask info #define SFP_DD_VCC_AW_OFFSET 0x11 #define SFP_DD_VCC_HALARM_STATUS (1 << SHIFT_7) #define SFP_DD_VCC_LALARM_STATUS (1 << SHIFT_6) #define SFP_DD_VCC_HWARN_STATUS (1 << SHIFT_5) #define SFP_DD_VCC_LWARN_STATUS (1 << SHIFT_4) // Channels monitor interrupt flags from lower page 0x0 #define SFP_DD_TX_POWER_INT_OFFSET 0x8 #define SFP_DD_TX_BIAS_INT_OFFSET 0x9 #define SFP_DD_RX_POWER_INT_OFFSET 0x7 #define SFP_DD_HALARM_STATUS SHIFT_0 // 0:1 for 2 channels #define SFP_DD_LALARM_STATUS SHIFT_2 // 2:3 for 2 channels #define SFP_DD_HWARN_STATUS SHIFT_4 // 4:5 for 2 channels #define SFP_DD_LWARN_STATUS SHIFT_6 // 6:7 for 2 channels // Thresholds from upper page 0x2 #define SFP_DD_TEMP_THR_OFFSET 0xb1 // halarm b1, lalarm b3, hwarn b5, lwarn b7 #define SFP_DD_VCC_THR_OFFSET 0xb9 // halarm b9, lalarm bb, hwarn bd, lwarn bf #define SFP_DD_TX_POWER_THR_OFFSET 0xd1 // halarm d1, lalarm d3, hwarn d5, lwarn d7 #define SFP_DD_TX_BIAS_THR_OFFSET 0xd9 // halarm d9, lalarm db, hwarn dd, lwarn df #define SFP_DD_RX_POWER_THR_OFFSET 0xe1 // halarm e1, lalarm e3, hwarn e5, lwarn e7 // Mlxlink Values definition #define SWID 0 #define PPRT_PPTT_ENABLE 1 #define PPRT_PPTT_START_TUNING 1 #define PHY_TEST_MODE_STATUS 1 #define BIT_MASK_ALL_DWORD 0xffffffff #define OB_TAP_SUM 120 #define OB_TAP_DIFF 10 #define OB_BIAS_LOW_THRESHOLD 15 #define OB_BIAS_MID_1_THRESHOLD 31 #define OB_BIAS_MID_2_THRESHOLD 48 #define OB_BIAS_HIGH_THRESHOLD 63 #define MAX_LOCAL_PORT_ETH 64 #define MAX_LOCAL_PORT_IB 36 #define MAX_LOCAL_PORT_QUANTUM 82 #define MAX_LOCAL_PORT_QUANTUM2 130 #define MAX_LOCAL_PORT_QUANTUM3 148 #define MAX_LOCAL_PORT_SPECTRUM2 128 #define MAX_LOCAL_PORT_SPECTRUM4 258 #define MAX_ETH_SW_SPLIT 8 #define DBN_TO_LOCAL_PORT_BASE 60 #define MAX_LANES_NUMBER 4 #define MAX_DWORD_BLOCK_SIZE 32 #define MAX_TX_GROUP_COUNT 10 #define PCAM_FORCE_DOWN_CAP_MASK 0x2000 #define OPERATIONAL_ERROR_STR "ME_ICMD_OPERATIONAL_ERROR" #define MAX_SBYTE 127 #define MIN_SBYTE -128 #define MAX_INPUT_LENGTH 10 #define SECOND_LEVEL_PORT_ACCESS 2 #define THIRD_LEVEL_PORT_ACCESS 3 #define GET MACCESS_REG_METHOD_GET #define SET MACCESS_REG_METHOD_SET #define PCIE_MAX_DURATION 16777215 #define PCIE_MAX_DURATION_HW_COUNTERS 255 #define PCIE_MAX_ERR_PARAM 4 struct DPN { DPN() { depth = 0; pcieIndex = 0; node = 0; bdf = ""; } DPN(u_int32_t _depth, u_int32_t _pcieIndex, u_int32_t _node, string _bdf) { depth = _depth; pcieIndex = _pcieIndex; node = _node; bdf = _bdf; } bool operator==(DPN dpn) { return (dpn.depth == depth && dpn.pcieIndex == pcieIndex && dpn.node == node); } u_int32_t depth; u_int32_t pcieIndex; u_int32_t node; string bdf; }; struct PcieErrType { PcieErrType() { errorTypeStr = ""; defaultInjDelay = 0; defaultErrDuration = 0; maxErrDuration = 0; errorDurationValid = false; paramsValid[0] = false; paramsValid[1] = false; paramsValid[2] = false; paramsValid[3] = false; dbdfValid = false; unit = ""; } PcieErrType(string _errorTypeStr, u_int32_t _defaultInjDelay, u_int32_t _defaultErrDuration, u_int32_t _maxErrDuration, bool _errorDurationValid, bool _param0Valid, bool _param1Valid, bool _param2Valid, bool _param3Valid, bool _dbdfValid, string _unit) { errorTypeStr = _errorTypeStr; defaultInjDelay = _defaultInjDelay; defaultErrDuration = _defaultErrDuration; maxErrDuration = _maxErrDuration; errorDurationValid = _errorDurationValid; paramsValid[0] = _param0Valid; paramsValid[1] = _param1Valid; paramsValid[2] = _param2Valid; paramsValid[3] = _param3Valid; dbdfValid = _dbdfValid; unit = _unit; } string errorTypeStr; u_int32_t defaultInjDelay; u_int32_t defaultErrDuration; u_int32_t maxErrDuration; bool errorDurationValid; bool paramsValid[4]; bool dbdfValid; string unit; }; struct ReqParms { u_int8_t errorType; u_int32_t errorDuration; u_int32_t injectionDelay; u_int16_t dbdf; u_int32_t parameters[4]; }; enum FIELD_ACCESS { FIELD_ACCESS_R = 0x1, FIELD_ACCESS_W = 0x2, FIELD_ACCESS_RW = FIELD_ACCESS_R | FIELD_ACCESS_W, FIELD_ACCESS_ADVANCED = 0x8, }; // mlxlink commander enums enum PPAOS_ADMIN { PPAOS_REGULAR_OPERATION = 0, PPAOS_PHY_TEST_MODE = 1 }; enum TX_INDEX_SELECTOR { TX_LOCAL_PORT, TX_GROUP }; enum BER_LIMIT { NOMINAL_25G_NO_FEC = -15, NOMINAL_25G_LOW_ATTN = -13, NOMINAL_25G_HIGH_ATTN = -9, NOMINAL_10G = -14, NOMINAL_56G_40G = -15, NOMINAL_DEFAULT = -15, CORNER_25G_NO_FEC = -14, CORNER_25G_LOW_ATTN = -10, CORNER_25G_HIGH_ATTN = -7, CORNER_10G = -13, CORNER_56G_40G = -14, CORNER_DEFAULT = -14 }; enum PAOS_ADMIN { PAOS_UP = 1, PAOS_DOWN = 2 }; enum PCIE_PORT_TYPE { PORT_TYPE_EP = 0, PORT_TYPE_US = 5, PORT_TYPE_DS = 6 }; enum MODULE_ID { MODULE_ID_SFP = 0x3, MODULE_ID_QSFP = 0xC, MODULE_ID_QSFP_PLUS = 0xD, MODULE_ID_QSFP28 = 0x11, }; // common enums typedef enum { NO, UP, DN, TG } PAOS_CMD; enum MPCNT_GROUPS { MPCNT_PERFORMANCE_GROUP = 0, MPCNT_LANE_GROUP = 1, MPCNT_TIMERS_GROUPS = 2 }; enum PDDR_PAGES { PDDR_OPERATIONAL_INFO_PAGE = 0, PDDR_TROUBLESHOOTING_INFO_PAGE = 1, PDDR_MODULE_INFO_PAGE = 3, PDDR_MODULE_LATCHED_FLAG_INFO_PAGE = 9, }; enum GROUP_OPCODE { MONITOR_OPCODE = 0, ADVANCED_OPCODE = 1 }; enum PPCNT_GROUPS { PPCNT_RFC_2863_GROUP = 0x1, PPCNT_DISC_COUNTERS_GROUP = 0x6, PPCNT_PHY_GROUP = 0x12, PPCNT_STATISTICAL_GROUP = 0x16, PPCNT_IB_PORT_COUNTERS_GROUP = 0x20, PPCNT_EXT_IB_PORT_COUNTERS_GROUP = 0x21, PPCNT_PLR_GROUP = 0x22, PPCNT_HISTOGRAM_GROUP = 0x23, PPCNT_IB_PKTS_GROUP = 0x25, PPCNT_ALL_GROUPS = 63, }; enum NETWORK_PORT_TYPE { NETWORK_PORT_TYPE = 0, NETWORK_PORT_TYPE_NEAR, NETWORK_PORT_TYPE_IC_LR, NETWORK_PORT_TYPE_FAR, NETWORK_PORT_TYPE_MAIN_USR, NETWORK_PORT_TYPE_TILE_USR, NETWORK_PORT_TYPE_LAST // PCIE always last enum }; enum CABLE_TYPE { UNIDENTIFIED, ACTIVE, OPTICAL_MODULE, PASSIVE, UNPLUGGED }; enum PCIE_LINK_SPEED { GEN1 = 1, GEN2 = 2, GEN3 = 4, GEN4 = 16, GEN5 = 32 }; enum POWER_CLASS { POWER_CLASS0, POWER_CLASS1, POWER_CLASS2, POWER_CLASS3, POWER_CLASS4, POWER_CLASS5, POWER_CLASS6, POWER_CLASS7, POWER_CLASS8 }; enum PRBS_MODES { PRBS_TX, PRBS_RX }; enum PRBS_TX_MODE { SQUARE_WAVEA = 13, SQUARE_WAVEB, SQUARE_WAVEC, SQUARE_WAVED }; enum PRBS_RX_MODE { SQUARE_WAVE = 13 }; enum PRBS_RX_TX_MODE { PRBS31, PRBS23A, PRBS23B, PRBS23C, PRBS23D, PRBS7, PRBS11, PRBS11A, PRBS11B, PRBS11C, PRBS11D, PRBS9, IDLE, PRBS13A = 17, PRBS13B, PRBS13C, PRBS13D, SSPR, SSPRQ, LT_frames, PRBS15, PRBS28, SQUARE_WAVE3, SQUARE_WAVE13, SQUARE_WAVE30 }; enum PRBS_CAP { PRBS31_CAP = 0x1, PRBS23A_CAP = 0x2, PRBS23B_CAP = 0x4, PRBS23C_CAP = 0x8, PRBS23D_CAP = 0x10, PRBS7_CAP = 0x20, PRBS11_CAP = 0x40, PRBS11A_CAP = 0x80, PRBS11B_CAP = 0x100, PRBS11C_CAP = 0x200, PRBS11D_CAP = 0x400, PRBS9_CAP = 0x800, PRBSIDLE_CAP = 0x1000, SQUARE_WAVEA_CAP = 0x2000, SQUARE_WAVEB_CAP = 0x4000, SQUARE_WAVEC_CAP = 0x8000, SQUARE_WAVED_CAP = 0x10000, PRBS13A_CAP = 0x20000, PRBS13B_CAP = 0x40000, PRBS13C_CAP = 0x80000, PRBS13D_CAP = 0x100000, SSPR_CAP = 0x200000, SSPRQ_CAP = 0x400000 }; enum LANE_RATE_CAP { LANE_RATE_1G_CAP = 0x1, LANE_RATE_SDR_CAP = 0x2, LANE_RATE_XAUI_CAP = 0x4, LANE_RATE_DDR_CAP = 0x8, LANE_RATE_QDR_CAP = 0x10, LANE_RATE_FDR10_CAP = 0x20, LANE_RATE_FDR_CAP = 0x40, LANE_RATE_EDR_CAP = 0x80, LANE_RATE_50G_CAP = 0x100, LANE_RATE_HDR_CAP = 0x200, LANE_RATE_NDR_CAP = 0x400, LANE_RATE_XDR_CAP = 0x800 }; enum PRBS_LANE_RATE { PRBS_SDR, PRBS_DDR, PRBS_QDR, PRBS_FDR10, PRBS_FDR, PRBS_EDR, PRBS_HDR, PRBS_NDR, PRBS_XDR, PRBS_1G = 10, PRBS_XAUI = 11, PRBS_50G = 12 }; enum PRBS_TUNING_STATUS { PRBS_TUNING_NOT_PERFORMED, PRBS_TUNING_PERFORMING, PRBS_TUNING_COMPLETE, PRBS_SIGNAL_DETECT }; enum SLRG_PARAMS { SLRG_PARAMS_INITIAL_FOM, SLRG_PARAMS_FOM_MODE, SLRG_PARAMS_UPPER_EYE, SLRG_PARAMS_MID_EYE, SLRG_PARAMS_LOWER_EYE, SLRG_PARAMS_LAST_FOM, SLRG_PARAMS_LAST }; enum SLTP_EDR { SLTP_EDR_POLARITY, SLTP_EDR_OB_TAP0, SLTP_EDR_OB_TAP1, SLTP_EDR_OB_TAP2, SLTP_EDR_OB_BIAS, SLTP_EDR_OB_PREEMP_MODE, SLTP_EDR_OB_REG, SLTP_EDR_OB_LEVA, SLTP_EDR_LAST }; enum SLTP_HDR { SLTP_HDR_PRE_2_TAP, SLTP_HDR_PRE_TAP, SLTP_HDR_MAIN_TAP, SLTP_HDR_POST_TAP, SLTP_HDR_OB_M2LP, SLTP_HDR_OB_AMP, SLTP_HDR_OB_ALEV_OUT, SLTP_HDR_LAST }; enum SLTP_NDR { SLTP_NDR_FIR_PRE3, SLTP_NDR_FIR_PRE2, SLTP_NDR_FIR_PRE1, SLTP_NDR_FIR_MAIN, SLTP_NDR_FIR_POST1, SLTP_NDR_LAST }; enum FEC_MODE { NO_FEC = 1, FC_FEC = 2, RS_FEC = 4 }; enum FEC_REQUSET { FEC_REQUSET_NF = 0x1, FEC_REQUSET_FC = 0x2, FEC_REQUSET_RS528 = 0x4, FEC_REQUSET_RS271 = 0x8, FEC_REQUSET_RS277 = 0x10, FEC_REQUSET_RS163 = 0x20, FEC_REQUSET_ZLF = 0x40, }; enum FEC_MODE_ACTIVE { FEC_MODE_NO_FEC = 0, FEC_MODE_FIRECODE_FEC = 1, FEC_MODE_STANDARD_RS_FEC_528_514 = 2, FEC_MODE_STANDARD_LL_FEC_271_257 = 3, FEC_MODE_INTERLEAVED_STANDARD_RS_FEC_544_514 = 6, FEC_MODE_STANDARD_RS_FEC_544_514 = 7, FEC_MODE_RS_FEC_272_257 = 9, FEC_MODE_INTERLEAVED_RS_FEC_272_257 = 10, FEC_MODE_RS_FEC_544_514_PLR = 12, FEC_MODE_RS_FEC_271_257_PLR = 13, FEC_MODE_RS_FEC_PLR_272_257 = 14, }; enum FEC_MODE_MASK { FEC_MODE_MASK_AU = 0, FEC_MODE_MASK_NF = 0x1, FEC_MODE_MASK_FC = 0x2, FEC_MODE_MASK_RS_528 = 0x4, FEC_MODE_MASK_LL_271 = 0x8, FEC_MODE_MASK_DF_RS = 0x40, FEC_MODE_MASK_RS_544 = 0x80, FEC_MODE_MASK_LL_272 = 0x200, FEC_MODE_MASK_DF_LL_272 = 0x400, FEC_MODE_MASK_DF_RS_PLR = 0x800, FEC_MODE_MASK_RS_PLR = 0x1000, FEC_MODE_MASK_LL_271_PLR = 0x2000, FEC_MODE_MASK_LL_272_PLR = 0x4000, FEC_MODE_MASK_DF_LL_272_PLR = 0x8000 }; enum DATA_PATH_STATE { DATA_PATH_STATE_RES = 0, DATA_PATH_STATE_DEACTIVATED = 0x1, DATA_PATH_STATE_INIT = 0x2, DATA_PATH_STATE_DEINIT = 0x3, DATA_PATH_STATE_ACTIVATED = 0x4, DATA_PATH_STATE_TX_TURN_ON = 0x5, DATA_PATH_STATE_TX_TURN_OFF = 0x6, DATA_PATH_STATE_INITALIZED = 0x7, }; enum MODULE_OPER_STATUS { MODULE_OPER_STATUS_INIT = 0, MODULE_OPER_STATUS_PLUGGED_EN, MODULE_OPER_STATUS_UNPLUGGED, MODULE_OPER_STATUS_PLUGGED_WITH_ERROR, MODULE_OPER_STATUS_PLUGGED_DS }; enum MODULE_ERROR_TYPE { MODULE_ERROR_TYPE_POWER = 0, MODULE_ERROR_TYPE_LONG_RANGE, MODULE_ERROR_TYPE_BUS_STUCK, MODULE_ERROR_TYPE_BAD, MODULE_ERROR_TYPE_ENF, MODULE_ERROR_TYPE_UNSUPPORTED, MODULE_ERROR_TYPE_HIGH_TEMP, MODULE_ERROR_TYPE_BAD_CBL, MODULE_ERROR_TYPE_PMD, MODULE_ERROR_TYPE_LASTER, MODULE_ERROR_TYPE_HIGH_CUR, MODULE_ERROR_TYPE_HIGH_VOLT, MODULE_ERROR_TYPE_PCIE, MODULE_ERROR_TYPE_HIGH_PWR, MODULE_ERROR_TYPE_ST_FAULT }; enum PEMI_GROUP_CAP_EXT { PEMI_GROUP_CAP_SNR = 0x2 }; enum PEMI_GROUP_SEL_EXT { PEMI_GROUP_SEL_SNR_SAMPLES = 1, PEMI_GROUP_SEL_SNR_PROP = 17 }; enum ERROR_CODE_RES { ERROR_CODE_RES_CONFIG_UNDEF = 0, ERROR_CODE_RES_CONFIG_SUCC = 0x1, ERROR_CODE_RES_CONFIG_REJ = 0x2, ERROR_CODE_RES_CONFIG_REJ_INV_APP_SEI = 0x3, ERROR_CODE_RES_CONFIG_REJ_INV_DATA_PTH = 0x4, ERROR_CODE_RES_CONFIG_REJ_INV_SI = 0x5, ERROR_CODE_RES_CONFIG_REJ_LANES_IN_USE = 0x6, ERROR_CODE_RES_CONFIG_REJ_PART_DATA_PTH = 0x7, ERROR_CODE_RES_CONFIG_IN_PROG = 0xc }; enum CABLE_IDENTIFIER { IDENTIFIER_QSFP28, IDENTIFIER_QSFP_PLUS, IDENTIFIER_SFP, IDENTIFIER_QSA, IDENTIFIER_BACKPLANE, IDENTIFIER_SFP_DD, IDENTIFIER_QSFP_DD, IDENTIFIER_QSFP_CMIS, IDENTIFIER_OSFP, IDENTIFIER_C2C, IDENTIFIER_DSFP, IDENTIFIER_QSFP_SPLIT_CABLE }; enum CABLE_TECHNOLOGY { TECHNOLOGY_850NM_VCSEL = 0x0, TECHNOLOGY_1310NM_VCSEL, TECHNOLOGY_1550NM_VCSEL, TECHNOLOGY_1310NM_FP, TECHNOLOGY_1310NM_DFB, TECHNOLOGY_1550NM_DFB, TECHNOLOGY_1310NM_EML, TECHNOLOGY_1550NM_EML, TECHNOLOGY_OTHERS, TECHNOLOGY_1490NM_DFB, TECHNOLOGY_COP_UNEQ, TECHNOLOGY_COP_PASV, TECHNOLOGY_COP_NEAR_FAR_END, TECHNOLOGY_COP_FAR_END, TECHNOLOGY_COP_NEAR_END, TECHNOLOGY_COP_LINEAR }; enum OUI { OTHER, MELLANOX, KNOWN_OUI, NVIDIA }; enum ProtoActive { IB = 1, ETH = 4 }; enum BAD_SET_STATUS_40_28NM { SET_STATUS_INVALID_PARM = 0, SET_STATUS_ILLEGAL_OB_BAIS = 0x1, SET_STATUS_ILLEGAL_OB_TAPS_POLARITY = 0x2, SET_STATUS_UNKNOWN }; enum BAD_SET_STATUS_16NM { SET_STATUS16_INVALID_PARM = 0x1, SET_STATUS16_ILLEGAL_M2LP_AMP = 0x800, SET_STATUS16_ILLEGAL_M2LP = 0x1000, SET_STATUS16_ILLEGAL_AMP = 0x2000, SET_STATUS16_ILLEGAL_ALEV_OUT = 0x4000, SET_STATUS16_ILLEGAL_TAPS = 0x8000, SET_STATUS16_UNKNOWN }; enum BAD_STAT_7NM { BAD_STAT_7NM_INVALID_PRE3 = 0x1, BAD_STAT_7NM_INVALID_PRE2 = 0x2, BAD_STAT_7NM_INVALID_PRE1 = 0x4, BAD_STAT_7NM_INVALID_MAIN = 0x8, BAD_STAT_7NM_INVALID_POST = 0x10, BAD_STAT_7NM_INVALID_SUM = 0x20, BAD_STAT_7NM_TAP_SPEED_MISMATCH = 0x40 }; enum EXT_ETHERNET_COMPLIANCE_CODE { EXT_ETHERNET_COMPLIANCE_CODE_Unspecified = 0, EXT_ETHERNET_COMPLIANCE_CODE_100G_AOC_FEC = 0x1, EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_SR4 = 0x2, EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_LR4 = 0x3, EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_ER4 = 0x4, EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_SR10 = 0x5, EXT_ETHERNET_COMPLIANCE_CODE_100G_CWDM4 = 0x6, EXT_ETHERNET_COMPLIANCE_CODE_100G_PSM4 = 0x7, EXT_ETHERNET_COMPLIANCE_CODE_100G_ACC_FEC = 0x8, EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_CR4 = 0xB, EXT_ETHERNET_COMPLIANCE_CODE_25GBASE_CR_CA_S = 0xC, EXT_ETHERNET_COMPLIANCE_CODE_25GBASE_CR_CA_N = 0xD, EXT_ETHERNET_COMPLIANCE_CODE_40GBASE_ER4 = 0x10, EXT_ETHERNET_COMPLIANCE_CODE_4_x_10GBASE_SR = 0x11, EXT_ETHERNET_COMPLIANCE_CODE_40G_PSM4 = 0x12, EXT_ETHERNET_COMPLIANCE_CODE_G959_1_P1I1_2D1 = 0x13, EXT_ETHERNET_COMPLIANCE_CODE_G959_1_P1S1_2D2 = 0x14, EXT_ETHERNET_COMPLIANCE_CODE_G959_1_P1L1_2D2 = 0x15, EXT_ETHERNET_COMPLIANCE_CODE_10GBASE_T = 0x16, EXT_ETHERNET_COMPLIANCE_CODE_100G_CLR4 = 0x17, EXT_ETHERNET_COMPLIANCE_CODE_100G_AOC = 0x18, EXT_ETHERNET_COMPLIANCE_CODE_100G_ACC = 0x19, EXT_ETHERNET_COMPLIABCE_CODE_100G_DWDM2 = 0X1A, EXT_ETHERNET_COMPLIABCE_CODE_100G_1550NM_WDM = 0X1B, EXT_ETHERNET_COMPLIABCE_CODE_10GBASE_T = 0X1C, EXT_ETHERNET_COMPLIABCE_CODE_5GBASE_T = 0X1D, EXT_ETHERNET_COMPLIABCE_CODE_2_5GBASE_T = 0X1E, EXT_ETHERNET_COMPLIABCE_CODE_40G_SWDM4 = 0X1F, EXT_ETHERNET_COMPLIABCE_CODE_100G_SWDM4 = 0X20, EXT_ETHERNET_COMPLIABCE_CODE_100G_PAM4 = 0X21, EXT_ETHERNET_COMPLIABCE_CODE_4WDM10_MSA = 0X22, EXT_ETHERNET_COMPLIABCE_CODE_4WDM20_MSA = 0X23, EXT_ETHERNET_COMPLIABCE_CODE_4WDM40_MSA = 0X24, EXT_ETHERNET_COMPLIABCE_CODE_100GBASE_DR = 0X25, EXT_ETHERNET_COMPLIABCE_CODE_100G_FR = 0X26, EXT_ETHERNET_COMPLIABCE_CODE_100G_LR = 0X27, EXT_ETHERNET_COMPLIABCE_CODE_ACC_10_6 = 0X30, EXT_ETHERNET_COMPLIABCE_CODE_AOC_10_6 = 0X31, EXT_ETHERNET_COMPLIABCE_CODE_ACC_10_4 = 0X32, EXT_ETHERNET_COMPLIABCE_CODE_AOC_10_4 = 0X33, EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_CR = 0X40, EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_SR = 0X41, EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_FR = 0X42, EXT_ETHERNET_COMPLIABCE_CODE_200GBASE_FR4 = 0X43, EXT_ETHERNET_COMPLIABCE_CODE_200GBASE_1550NM_PSM4 = 0X44, EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_LR = 0X45, EXT_ETHERNET_COMPLIABCE_CODE_200GBASE_LR4 = 0X46, }; enum CMIS_IB_COMPLIANCE_CODE { CMIS_IB_COMPLIANCE_CODE_SDR = 0, CMIS_IB_COMPLIANCE_CODE_DDR = 0x2, CMIS_IB_COMPLIANCE_CODE_QDR = 0x4, CMIS_IB_COMPLIANCE_CODE_FDR = 0x8, CMIS_IB_COMPLIANCE_CODE_EDR = 0x10, CMIS_IB_COMPLIANCE_CODE_HDR = 0x20, CMIS_IB_COMPLIANCE_CODE_NDR = 0x40, CMIS_IB_COMPLIANCE_CODE_XDR = 0x80 }; enum QSFP_CABLE_BREAKOUT_NEAR_END { QSFP_CABLE_BREAKOUT_CHANNEL_1_STATUS = 0, QSFP_CABLE_BREAKOUT_CHANNEL_2_STATUS = 0x2, QSFP_CABLE_BREAKOUT_CHANNEL_3_STATUS = 0x4, QSFP_CABLE_BREAKOUT_CHANNEL_4_STATUS = 0x8, }; enum RX_TX_CDR_CAP { RX_TX_CDR_CAP_NO_CDR = 0, RX_TX_CDR_CAP_BUILD_IN_CDR_WITH_ON_OFF_CONTROL = 0x1, RX_TX_CDR_CAP_BUILD_IN_CDR_WITHOUT_ON_OFF_CONTROL = 0x2, }; enum RX_POWER_TYPE { RX_POWER_TYPE_OMA = 0, RX_POWER_TYPE_AVERAGE_POWER = 0x1, }; enum CIMS_MODULE_ST { CIMS_MODULE_ST_RESERVED = 0, CIMS_MODULE_ST_LOWPWR_STATE = 0x1, CIMS_MODULE_ST_PWRUP_STATE = 0x2, CIMS_MODULE_ST_READY_STATE = 0x3, CIMS_MODULE_ST_PWRDN_STATE = 0x4, CIMS_MODULE_ST_FAULT_STATE = 0x5, }; enum TEMP_FLAGS { TEMP_FLAGS_NO_ALARM_WARN = 0, TEMP_FLAGS_HI_TEMP_ALARM = 0x1, TEMP_FLAGS_LO_TEMP_ALARM = 0x2, TEMP_FLAGS_HI_TEMP_WARNING = 0x4, TEMP_FLAGS_LO_TEMP_WARNING = 0x8, }; enum VCC_FLAGS { VCC_FLAGS_NO_ALARM_WARN = 0, VCC_FLAGS_HI_VCC_ALARM = 0x1, VCC_FLAGS_LO_VCC_ALARM = 0x2, VCC_FLAGS_HI_VCC_WARNING = 0x4, VCC_FLAGS_LO_VCC_WARNING = 0x8, }; enum QSFP_CABLE_BREAKOUT_FAR_END { QSFP_CABLE_BREAKOUT_CABLE_FAR_END_IS_UNSPECIFIED = 0, QSFP_CABLE_BREAKOUT_CABLE_SINGLE_FAR_END_4_CHANNELS_IMPLEM_OR_SEPAR_MOD_4_CHANNEL_CONN = 0x1, QSFP_CABLE_BREAKOUT_CABLE_SINGLE_FAR_END_2_CHANNELS_IMPLEM_OR_SEPAR_MOD_2_CHANNEL_CONN = 0x2, QSFP_CABLE_BREAKOUT_CABLE_SINGLE_FAR_END_1_CHANNELS_IMPLEM_OR_SEPAR_MOD_1_CHANNEL_CONN = 0x3, QSFP_CABLE_BREAKOUT_4_FAR_ENDS_1_CHANNELS_IMPLEM_IN_EACH = 0x4, QSFP_CABLE_BREAKOUT_2_FAR_ENDS_2_CHANNELS_IMPLEM_IN_EACH = 0x5, QSFP_CABLE_BREAKOUT_2_FAR_ENDS_1_CHANNELS_IMPLEM_IN_EACH = 0x6, }; enum CMIS_CABLE_BREAKOUT { CMIS_CABLE_BREAKOUT_UNSPECIFIED = 0, CMIS_CABLE_BREAKOUT_QSFPDD_to_QSFPDD = 0x1, CMIS_CABLE_BREAKOUT_QSFPDD_to_2QSFP_or_2QSFPDD = 0x2, CMIS_CABLE_BREAKOUT_QSFPDD_to_4SFPDD_or_4QSFP = 0x3, CMIS_CABLE_BREAKOUT_QSFPDD_to_8SFP = 0x4, CMIS_CABLE_BREAKOUT_QSFPDD_to_QSFP_or_QSFPDD = 0x5, CMIS_CABLE_BREAKOUT_QSFPDD_to_2QSFP = 0x6, CMIS_CABLE_BREAKOUT_QSFPDD_to_4SFP = 0x7, CMIS_CABLE_BREAKOUT_SFPDD_to_SFPDD = 0x8, CMIS_CABLE_BREAKOUT_SFPDD_to_2SFPDD = 0x9, }; enum QSFP_ETHERNET_COMPLIANCE_CODE { QSFP_ETHERNET_COMPLIANCE_CODE_Unspecified = 0, QSFP_ETHERNET_COMPLIANCE_CODE_40G_ACTIVE_CABLE_XLPPI = 0x1, QSFP_ETHERNET_COMPLIANCE_CODE_40GBASE_LR4 = 0x2, QSFP_ETHERNET_COMPLIANCE_CODE_40GBASE_SR4 = 0x4, QSFP_ETHERNET_COMPLIANCE_CODE_40GBASE_CR4 = 0x8, QSFP_ETHERNET_COMPLIANCE_CODE_10GBASE_SR = 0x10, QSFP_ETHERNET_COMPLIANCE_CODE_10GBASE_LR = 0x20, QSFP_ETHERNET_COMPLIANCE_CODE_10GBASE_LRM = 0x40, QSFP_ETHERNET_COMPLIANCE_CODE_EXT = 0x80, }; enum SFP_ETHERNET_COMPLIANCE_CODE { SFP_ETHERNET_COMPLIANCE_CODE_Unspecified = 0, SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_SR = 0x10, SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_LR = 0x20, SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_LRM = 0x40, SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_ER = 0x80, }; enum CMIS_PASSIVE_COPPER_COMPLIANCE { CMIS_COMPLIANCE_UNSPECIFIED = 0x0, CMIS_COMPLIANCE_1000_BASE_CX = 0x1, CMIS_COMPLIANCE_XAUI = 0x2, CMIS_COMPLIANCE_XFI = 0x3, CMIS_COMPLIANCE_SFI = 0x4, CMIS_COMPLIANCE_25G_AUI = 0x5, CMIS_COMPLIANCE_XL_AUI = 0x6, CMIS_COMPLIANCE_XL_PPI = 0x7, CMIS_COMPLIANCE_L_AUI2 = 0x8, CMIS_COMPLIANCE_50G_AUI2 = 0x9, CMIS_COMPLIANCE_50G_AUI1 = 0xa, CMIS_COMPLIANCE_C_AUI4 = 0xb, CMIS_COMPLIANCE_100G_AUI4 = 0xc, CMIS_COMPLIANCE_100G_AUI2 = 0xd, CMIS_COMPLIANCE_200G_AUI8 = 0xe, CMIS_COMPLIANCE_200G_AUI4 = 0xf, CMIS_COMPLIANCE_400G_AUI16 = 0x10, CMIS_COMPLIANCE_400G_AUI8 = 0x11, CMIS_COMPLIANCE_10G_BASE_CX4 = 0x13, CMIS_COMPLIANCE_25G_CR_L = 0x14, CMIS_COMPLIANCE_25G_CR_S = 0x15, CMIS_COMPLIANCE_25G_CR_N = 0x16, CMIS_COMPLIANCE_40G_BASE_CR4 = 0x17, CMIS_COMPLIANCE_50G_BASE_CR = 0x18, CMIS_COMPLIANCE_100G_BASE_CR10 = 0x19, CMIS_COMPLIANCE_100G_BASE_CR4 = 0x1a, CMIS_COMPLIANCE_100G_BASE_CR2 = 0x1b, CMIS_COMPLIANCE_200G_BASE_CR4 = 0x1c, CMIS_COMPLIANCE_400G_CR8 = 0x1d, CMIS_COMPLIANCE_1000_BASE_T = 0x1e, CMIS_COMPLIANCE_2_5G_BASE_T = 0x1f, CMIS_COMPLIANCE_5G_BASE_T = 0x20, CMIS_COMPLIANCE_10G_BASE_T = 0x21, CMIS_COMPLIANCE_25_BASE_T = 0x22, CMIS_COMPLIANCE_40_BASE_T = 0x23, CMIS_COMPLIANCE_50_BASE_T = 0x24, CMIS_COMPLIANCE_SDR = 0x2c, CMIS_COMPLIANCE_DDR = 0x2d, CMIS_COMPLIANCE_QDR = 0x2e, CMIS_COMPLIANCE_FDR = 0x2f, CMIS_COMPLIANCE_EDR = 0x30, CMIS_COMPLIANCE_HDR = 0x31, CMIS_COMPLIANCE_NDR = 0x32, CMIS_COMPLIANCE_XDR = 0x33 }; enum CMIS_MM_COMPLIANCE_CODE { CMIS_COMPLIANCE_10G_BASE_SW = 0x1, CMIS_COMPLIANCE_10G_BASE_SR = 0x2, CMIS_COMPLIANCE_25G_BASE_SR = 0x3, CMIS_COMPLIANCE_40G_BASE_SR4 = 0x4, CMIS_COMPLIANCE_40G_SWDM4 = 0x5, CMIS_COMPLIANCE_40G_BIDI = 0x6, CMIS_COMPLIANCE_50G_BASE_SR = 0x7, CMIS_COMPLIANCE_100G_BASE_SR10 = 0x8, CMIS_COMPLIANCE_100G_BASE_SR4 = 0x9, CMIS_COMPLIANCE_100G_SWDM4 = 0xa, CMIS_COMPLIANCE_100G_BIDI = 0xb, CMIS_COMPLIANCE_100G_SR2 = 0xc, CMIS_COMPLIANCE_100G_SR = 0xd, CMIS_COMPLIANCE_200G_BASE_SR4 = 0xe, CMIS_COMPLIANCE_400G_BASE_SR16 = 0xf, CMIS_COMPLIANCE_400G_BASE_SR8 = 0x10, CMIS_COMPLIANCE_400G_SR4 = 0x11, CMIS_COMPLIANCE_800G_SR8 = 0x12, CMIS_COMPLIANCE_400G_BIDI = 0x1a }; enum CMIS_SM_COMPLIANCE_CODE { CMIS_COMPLIANCE_10G_BASE_LW = 0x1, CMIS_COMPLIANCE_10G_BASE_EW = 0x2, CMIS_COMPLIANCE_10G_ZW = 0x3, CMIS_COMPLIANCE_10G_BASE_LR = 0x4, CMIS_COMPLIANCE_10G_BASE_ER = 0x5, CMIS_COMPLIANCE_10G_BASE_ZR = 0x6, CMIS_COMPLIANCE_25G_BASE_LR = 0x7, CMIS_COMPLIANCE_25G_BASE_ER = 0x8, CMIS_COMPLIANCE_40G_BASE_LR4 = 0x9, CMIS_COMPLIANCE_40G_BASE_FR = 0xa, CMIS_COMPLIANCE_50G_BASE_FR = 0xb, CMIS_COMPLIANCE_50G_BASE_LR = 0xc, CMIS_COMPLIANCE_100G_BASE_LR4 = 0xd, CMIS_COMPLIANCE_100G_BASE_ER4 = 0xe, CMIS_COMPLIANCE_100G_PSM4 = 0xf, CMIS_COMPLIANCE_100G_CWDM4_OCP = 0x34, CMIS_COMPLIANCE_100G_CWDM4 = 0x10, CMIS_COMPLIANCE_100G_4WDM_10 = 0x11, CMIS_COMPLIANCE_100G_4WDM_20 = 0x12, CMIS_COMPLIANCE_100G_4WDM_40 = 0x13, CMIS_COMPLIANCE_100G_BASE_DR = 0x14, CMIS_COMPLIANCE_100G_FR = 0x15, CMIS_COMPLIANCE_100G_LR = 0x16, CMIS_COMPLIANCE_200G_BASE_DR4 = 0x17, CMIS_COMPLIANCE_200G_BASE_FR4 = 0x18, CMIS_COMPLIANCE_200G_BASE_LR4 = 0x19, CMIS_COMPLIANCE_400G_BASE_FR8 = 0x1a, CMIS_COMPLIANCE_400G_BASE_LR8 = 0x1b, CMIS_COMPLIANCE_400G_BASE_DR4 = 0x1c, CMIS_COMPLIANCE_400G_FR4 = 0x1d, CMIS_COMPLIANCE_400G_LR4 = 0x1e, CMIS_COMPLIANCE_10G_SR = 0x38, CMIS_COMPLIANCE_10G_LR = 0x39, CMIS_COMPLIANCE_25G_SR = 0x3a, CMIS_COMPLIANCE_25G_LR = 0x3b, CMIS_COMPLIANCE_10G_LR_BIDI = 0x3c, CMIS_COMPLIANCE_25G_LR_BIDI = 0x3d }; enum PHY_MNGR_FSM_STATE { PHY_MNGR_DISABLED = 0, PHY_MNGR_OPEN_PORT = 1, PHY_MNGR_POLLING = 2, PHY_MNGR_ACTIVE_LINKUP = 3, PHY_MNGR_CLOSE_PORT = 4, PHY_MNGR_PHYSICAL_LINKUP = 5, PHY_MNGR_RX_DISABLE = 7 }; enum IB_PHY_FSM_STATE { IB_AN_FSM_DISABLED = 0, IB_AN_FSM_INITIALY = 1, IB_AN_FSM_RCVR_CFG = 2, IB_AN_FSM_CFG_TEST = 3, IB_AN_FSM_WAIT_RMT_TEST = 4, IB_AN_FSM_WAIT_CFG_ENHANCED = 5, IB_AN_FSM_CFG_IDLE = 6, IB_AN_FSM_LINK_UP = 7 }; enum TECH { TECH_NA = 0, TECH_40 = 1, TECH_28 = 2, TECH_16 = 3, TECH_7 = 4, TECH_5 = 5 }; enum PHY_HST_FSM_HDR_STATE { PHY_HST_FSM_HDR_DISABLED = 0, PHY_HST_FSM_HDR_ADAPTATION = 0x1, PHY_HST_FSM_HDR_DESKEW_FIX_REVERSALS = 0x2, PHY_HST_FSM_HDR_WAIT_TS2 = 0x3, PHY_HST_FSM_HDR_WAIT_MCB = 0x4, PHY_HST_FSM_HDR_MCB_AN = 0x5, PHY_HST_FSM_HDR_RECEIVER_READY = 0x6, PHY_HST_FSM_HDR_LINKUP = 0x7, PHY_HST_FSM_HDR_SUBFSM_FAIL = 0x8, PHY_HST_FSM_HDR_BASIC_DETECT = 0x9, PHY_HST_FSM_HDR_BASIC_STABILITY = 0xa, PHY_HST_FSM_HDR_CONFIG = 0xb, PHY_HST_HDR_ERROR = 0xff, }; enum MAX_READ_REQUEST_SIZE { MAX_READ_REQUEST_SIZE_128B = 0, MAX_READ_REQUEST_SIZE_256B = 0x1, MAX_READ_REQUEST_SIZE_512B = 0x2, MAX_READ_REQUEST_SIZE_1024B = 0x3, MAX_READ_REQUEST_SIZE_2048B = 0x4, MAX_READ_REQUEST_SIZE_4096B = 0x5, }; enum PWR_STATUS { PWR_STATUS_0 = 0, PWR_STATUS_1 = 0x1, PWR_STATUS_2 = 0x2, }; enum PORT_TYPE_MPEIN { PORT_TYPE_EP_MPEIN = 0, PORT_TYPE_RC_MPEIN = 0x4, PORT_TYPE_UP_MPEIN = 0x5, PORT_TYPE_DP_MPEIN = 0x6, }; enum LINK_PEER_MAX_SPEED { LINK_PEER_MAX_SPEED_2_5G = 0x1, LINK_PEER_MAX_SPEED_5G = 0x2, LINK_PEER_MAX_SPEED_8G = 0x4, LINK_PEER_MAX_SPEED_16G = 0x16, LINK_PEER_MAX_SPEED_32G = 0x32, }; enum PORT_STATE { PORT_STATE_0 = 0x0, PORT_STATE_1 = 0x1, PORT_STATE_2 = 0x2, PORT_STATE_3 = 0x10, PORT_STATE_4 = 0x20, PORT_STATE_5 = 0x21, PORT_STATE_6 = 0x31, PORT_STATE_7 = 0x32, PORT_STATE_8 = 0x33, PORT_STATE_9 = 0x34, PORT_STATE_10 = 0x35, PORT_STATE_11 = 0x36, PORT_STATE_12 = 0x40, PORT_STATE_13 = 0x41, PORT_STATE_14 = 0x42, PORT_STATE_15 = 0x50, PORT_STATE_16 = 0x51, PORT_STATE_17 = 0x52, PORT_STATE_18 = 0x53, PORT_STATE_19 = 0x54, PORT_STATE_20 = 0x60, PORT_STATE_21 = 0x61, PORT_STATE_22 = 0x62, PORT_STATE_23 = 0x63, PORT_STATE_24 = 0x64, PORT_STATE_25 = 0x65, PORT_STATE_26 = 0x70, PORT_STATE_27 = 0x71, PORT_STATE_28 = 0x80, PORT_STATE_29 = 0x81, PORT_STATE_30 = 0x90, PORT_STATE_31 = 0xa0, PORT_STATE_32 = 0xa1, PORT_STATE_33 = 0xa2, PORT_STATE_34 = 0xa5, PORT_STATE_35 = 0xa8, PORT_STATE_36 = 0xa9, PORT_STATE_37 = 0xaa, PORT_STATE_38 = 0xab, PORT_STATE_39 = 0xac, PORT_STATE_40 = 0xb0, PORT_STATE_41 = 0xc0, PORT_STATE_42 = 0xd0, PORT_STATE_43 = 0xe0, PORT_STATE_44 = 0xf0, }; enum LOOPBACK_MODE { LOOPBACK_MODE_NO = 0x0, LOOPBACK_MODE_REMOTE = 0x1, LOOPBACK_MODE_LOCAL = 0x2, LOOPBACK_MODE_EXTERNAL = 0x4, LOOPBACK_MODE_LL = 0x80 }; enum AN_DISABLE { AN_DISABLE_NORMAL = 0, AN_DISABLE_FORCE = 1 }; enum ETH_LINK_SPEED { ETH_LINK_SPEED_UNKNOWN = 0x0, ETH_LINK_SPEED_1000_SGMII = 0x1, ETH_LINK_SPEED_1000_KX = 0x2, ETH_LINK_SPEED_10G_CX4 = 0x4, ETH_LINK_SPEED_10G_KX4 = 0x8, ETH_LINK_SPEED_10G_KR = 0x10, ETH_LINK_SPEED_20G_KR2 = 0x20, ETH_LINK_SPEED_40G_CR4 = 0x40, ETH_LINK_SPEED_40G_KR4 = 0x80, ETH_LINK_SPEED_56G_KR4 = 0x100, ETH_LINK_SPEED_56G_R4 = 0x100, ETH_LINK_SPEED_10M = 0x400, ETH_LINK_SPEED_10G_CR = 0x1000, ETH_LINK_SPEED_10G_SR = 0x2000, ETH_LINK_SPEED_10G_LR = 0x4000, ETH_LINK_SPEED_40G_SR4 = 0x8000, ETH_LINK_SPEED_40G_LR4 = 0x10000, ETH_LINK_SPEED_56G_CR4 = 0x20000, ETH_LINK_SPEED_50G_SR2 = 0x40000, ETH_LINK_SPEED_50G_KR4 = 0x80000, ETH_LINK_SPEED_100G_CR4 = 0x100000, ETH_LINK_SPEED_100G_SR4 = 0x200000, ETH_LINK_SPEED_100G_KR4 = 0x400000, ETH_LINK_SPEED_100G_LR4 = 0x800000, ETH_LINK_SPEED_100_BaseTx = 0x01000000, ETH_LINK_SPEED_1000_BaseT = 0x02000000, ETH_LINK_SPEED_10G_BaseT = 0x04000000, ETH_LINK_SPEED_25G_CR = 0x8000000, ETH_LINK_SPEED_25G_KR = 0x10000000, ETH_LINK_SPEED_25G_SR = 0x20000000, ETH_LINK_SPEED_50G_CR2 = 0x40000000, ETH_LINK_SPEED_50G_KR2 = 0x80000000, }; enum ETH_LINK_SPEED_EXT { ETH_LINK_SPEED_EXT_UNKNOWN = 0x0, ETH_LINK_SPEED_EXT_SGMII_100M = 0x1, ETH_LINK_SPEED_EXT_1000BASE_X = 0x2, ETH_LINK_SPEED_EXT_2_5GBASE_X = 0x4, ETH_LINK_SPEED_EXT_5GBASE_R = 0x8, ETH_LINK_SPEED_EXT_XFI = 0x10, ETH_LINK_SPEED_EXT_XLAUI_4 = 0x20, ETH_LINK_SPEED_EXT_25GAUI_1 = 0x40, ETH_LINK_SPEED_EXT_50GAUI_2 = 0x80, ETH_LINK_SPEED_EXT_50GAUI_1 = 0x100, ETH_LINK_SPEED_EXT_CAUI_4 = 0x200, ETH_LINK_SPEED_EXT_100GAUI_2 = 0x400, ETH_LINK_SPEED_EXT_100GAUI_1 = 0x800, ETH_LINK_SPEED_EXT_200GAUI_4 = 0x1000, ETH_LINK_SPEED_EXT_200GAUI_2 = 0x2000, ETH_LINK_SPEED_EXT_Reserved_14 = 0x4000, ETH_LINK_SPEED_EXT_400GAUI_8 = 0x8000, ETH_LINK_SPEED_EXT_400GAUI_4 = 0x10000, ETH_LINK_SPEED_EXT_800GAUI_8 = 0x80000, ETH_LINK_SPEED_EXT_SGMII_10M = 0x8000000 }; enum IB_LINK_SPEED { IB_LINK_SPEED_SDR = 0x1, IB_LINK_SPEED_DDR = 0x2, IB_LINK_SPEED_QDR = 0x4, IB_LINK_SPEED_FDR10 = 0x8, IB_LINK_SPEED_FDR = 0x10, IB_LINK_SPEED_EDR = 0x20, IB_LINK_SPEED_HDR = 0x40, IB_LINK_SPEED_NDR = 0x80, IB_LINK_SPEED_XDR = 0x100 }; enum PRBS_MODULATION { PRBS_NRZ = 0, PRBS_PAM4_ENCODING = 1 }; enum PNAT_ACCESS { PNAT_LOCAL = 0, PNAT_LABEL = 1, PNAT_PCIE = 3 }; enum PRODUCT_TECHNOLOGY { PRODUCT_40NM = 0, PRODUCT_28NM = 1, PRODUCT_16NM = 3, PRODUCT_7NM = 4, PRODUCT_5NM = 5 }; enum STATUS_OPCODE { CABLE_IS_UNPLUGGED = 1024 }; enum SLRG_EOM { SLRG_EOM_NONE = 0x0, SLRG_EOM_UPPER = 0x1, SLRG_EOM_MIDDLE = 0x2, SLRG_EOM_LOWER = 0x4, SLRG_EOM_COMPOSITE = 0x8 }; enum SLRG_FOM_MODE { SLRG_FOM_MODE_EYEC, SLRG_FOM_MODE_EYEO, SLRG_FOM_MODE_EYEM, SLRG_FOM_MODE_BER, SLRG_FOM_MODE_EYEC_VN, SLRG_FOM_MODE_EYEC_VP, SLRG_FOM_MODE_EYEM_VN, SLRG_FOM_MODE_EYEM_VP }; enum PRBS_PARAMS { PRBS_PARAMS_RX_TUNING_STATUS, PRBS_PARAMS_LOCK_STATUS, PRBS_PARAMS_E, PRBS_PARAMS_P, PRBS_PARAMS_MODES_CAP, PRBS_PARAMS_MODE_ADMIN, PRBS_PARAMS_TUNING_TYPE, PRBS_PARAMS_MODULATION, PRBS_PARAMS_LANE_RATE_CAP, PRBS_PARAMS_LANE_RATE_ADMIN, PRBS_PARAMS_LAST }; enum AMBER_SHEET { AMBER_SHEET_GENERAL = 1, AMBER_SHEET_INDEXES = 2, AMBER_SHEET_LINK_STATUS = 3, AMBER_SHEET_MODULE_STATUS = 4, AMBER_SHEET_SYSTEM = 5, AMBER_SHEET_SERDES_16NM = 6, AMBER_SHEET_SERDES_7NM = 7, AMBER_SHEET_PORT_COUNTERS = 8, AMBER_SHEET_TROUBLESHOOTING = 9, AMBER_SHEET_PHY_OPERATION_INFO = 10, AMBER_SHEET_LINK_UP_INFO = 11, AMBER_SHEET_LINK_DOWN_INFO = 12, AMBER_SHEET_TEST_MODE_INFO = 13, AMBER_SHEET_TEST_MODE_MODULE_INFO = 14, AMBER_SHEET_PHY_DEBUG_INFO = 15, AMBER_SHEET_EXT_MODULE_STATUS = 16, AMBER_SHEET_ALL // Keep this enum last }; enum PCIE_DEVICE_STATUS { PCIE_DEVICE_STATUS_CORRECTABLE_ERROR = 0x1, PCIE_DEVICE_STATUS_NON_FATAL_ERROR = 0x2, PCIE_DEVICE_STATUS_FATAL_ERROR = 0x4, PCIE_DEVICE_STATUS_UNSUP_REQ = 0x8, PCIE_DEVICE_STATUS_AUX = 0x10, PCIE_DEVICE_STATUS_TRANSACTION_PEN = 0x20 }; typedef enum MODULE_PRBS { MODULE_PRBS_SELECT, MODULE_PRBS_MODE, MODULE_PRBS_GEN_PAT, MODULE_PRBS_GEN_SWAP, MODULE_PRBS_GEN_INV, MODULE_PRBS_GEN_LANES, MODULE_PRBS_CH_PAT, MODULE_PRBS_CH_SWAP, MODULE_PRBS_CH_INV, MODULE_PRBS_CH_LANES, MODULE_PRBS_RATE, MODULE_PRBS_SHOW_DIAG, MODULE_PRBS_CLEAR_DIAG } ModulePrbs_t; typedef enum MODULE_PRBS_ACCESS { MODULE_PRBS_ACCESS_BOTH, MODULE_PRBS_ACCESS_GEN, MODULE_PRBS_ACCESS_CH, MODULE_PRBS_ACCESS_CH_GEN } ModuleAccess_t; enum MODULE_PRBS_LANE_RATE { MODULE_PRBS_LANE_RATE_1G = 0x1, MODULE_PRBS_LANE_RATE_SDR = 0x2, MODULE_PRBS_LANE_RATE_40G_40G = 0x8, MODULE_PRBS_LANE_RATE_FDR = 0x10, MODULE_PRBS_LANE_RATE_EDR = 0x20, MODULE_PRBS_LANE_RATE_HDR = 0x80, MODULE_PRBS_LANE_RATE_NDR = 0x100 }; enum PMPT_STATUS { PMPT_STATUS_NORMAL_MODE = 0, PMPT_STATUS_NOT_SUPPORTED = 1, PMPT_STATUS_CONFIG_ERROR = 2, PMPT_STATUS_GEN_ONLY = 3, PMPT_STATUS_CH_ONLY = 4, PMPT_STATUS_BOTH = 5 }; enum PMPD_STATUS { PMPD_STATUS_NOT_SUPPORTED = 0, PMPD_STATUS_NORMAL_MODE = 1, PMPD_STATUS_NOT_LOCKED = 2, PMPD_STATUS_LOCKED = 3 }; enum PMPD_PARAM { PMPD_PARAM_STATUS, PMPD_PARAM_PRBS_BITS, PMPD_PARAM_PRBS_ERRORS, PMPD_PARAM_SNR, PMPD_PARAM_BER, PMPD_PARAM_LAST }; enum PMCR_RX_AMP { PMCR_RX_AMP_BIT0 = 0x1, PMCR_RX_AMP_BIT1 = 0x2, PMCR_RX_AMP_BIT2 = 0x4, PMCR_RX_AMP_BIT3 = 0x8, PMCR_RX_AMP_BIT4 = 0x10, PMCR_RX_AMP_BIT5 = 0x20, PMCR_RX_AMP_BIT6 = 0x40, PMCR_RX_AMP_BIT7 = 0x80, PMCR_RX_AMP_BIT8 = 0x100, PMCR_RX_AMP_BIT9 = 0x200, PMCR_RX_AMP_BIT10 = 0x400, PMCR_RX_AMP_BIT11 = 0x800, PMCR_RX_AMP_BIT12 = 0x1000, PMCR_RX_AMP_BIT13 = 0x2000, PMCR_RX_AMP_BIT14 = 0x4000, PMCR_RX_AMP_BIT15 = 0x8000 }; typedef enum { CABLE_CONTROL_PARAMETERS_QUERY, CABLE_CONTROL_PARAMETERS_SET_TX_EQ, CABLE_CONTROL_PARAMETERS_SET_RX_EMPH, CABLE_CONTROL_PARAMETERS_SET_RX_POST_EMPH, CABLE_CONTROL_PARAMETERS_SET_RX_AMP } ControlParam; enum PCIE_ERR_INJ_TYPE { PCIE_ERR_TYPE_ABORT = 0, PCIE_ERR_TYPE_BAD_DLLP_LCRC, PCIE_ERR_TYPE_BAD_TLP_LCRC, PCIE_ERR_TYPE_BAD_TLP_ECRC, PCIE_ERR_TYPE_ERR_MSG, PCIE_ERR_TYPE_MALFORMED_TLP, PCIE_ERR_TYPE_POISONED_TLP, PCIE_ERR_TYPE_UNEXPECTED_CPL, PCIE_ERR_TYPE_ACS_VIOLATION, PCIE_ERR_TYPE_SURP_LINK_DOWN = 100, PCIE_ERR_TYPE_RECEIVER_ERROR = 101 }; #endif /* MLXLINK_ENUMS_H */ mstflint-4.26.0/mlxlink/modules/Makefile.in0000644000175000017500000006615414522641737021117 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = mlxlink/modules DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = libmodules_lib_la_DEPENDENCIES = $(top_builddir)/mlxlink/modules/printutil/libprint_util_lib.la \ $(am__DEPENDENCIES_1) am_libmodules_lib_la_OBJECTS = amber_field.lo \ mlxlink_amBER_collector.lo mlxlink_cables_commander.lo \ mlxlink_commander.lo mlxlink_err_inj_commander.lo \ mlxlink_eye_opener.lo mlxlink_maps.lo mlxlink_port_info.lo \ mlxlink_reg_parser.lo mlxlink_ui.lo mlxlink_user_input.lo \ mlxlink_utils.lo libmodules_lib_la_OBJECTS = $(am_libmodules_lib_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmodules_lib_la_SOURCES) DIST_SOURCES = $(libmodules_lib_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = printutil USER_DIR = $(top_srcdir) COMMON_DIR = $(top_srcdir)/common MTCR_DIR = $(top_srcdir)/${MTCR_CONF_DIR} MTCR_INC_DIR = $(top_srcdir)/include/mtcr_ul UTILS_DIR = $(top_srcdir)/mft_utils MLXREG_DIR = $(top_srcdir)/mlxreg MLXLINK_MODULES_DIR = $(top_srcdir)/mlxlink AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxlink -I$(top_srcdir)/mlxreg $(JSON_CFLAGS) AM_CFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) -DDATA_PATH=\"$(pkgdatadir)\" AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe #$(COMPILER_FPIC) noinst_LTLIBRARIES = libmodules_lib.la libmodules_lib_la_SOURCES = \ amber_field.cpp \ amber_field.h \ mlxlink_amBER_collector.cpp \ mlxlink_amBER_collector.h \ mlxlink_cables_commander.cpp \ mlxlink_cables_commander.h \ mlxlink_commander.cpp \ mlxlink_commander.h \ mlxlink_enums.h \ mlxlink_err_inj_commander.cpp \ mlxlink_err_inj_commander.h \ mlxlink_eye_opener.cpp \ mlxlink_eye_opener.h \ mlxlink_maps.cpp \ mlxlink_maps.h \ mlxlink_port_info.cpp \ mlxlink_port_info.h \ mlxlink_reg_parser.cpp \ mlxlink_reg_parser.h \ mlxlink_ui.cpp \ mlxlink_ui.h \ mlxlink_user_input.cpp \ mlxlink_user_input.h \ mlxlink_utils.cpp \ mlxlink_utils.h libmodules_lib_la_LIBADD = \ $(top_builddir)/mlxlink/modules/printutil/libprint_util_lib.la \ $(JSON_LIBS) all: all-recursive .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxlink/modules/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxlink/modules/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmodules_lib.la: $(libmodules_lib_la_OBJECTS) $(libmodules_lib_la_DEPENDENCIES) $(EXTRA_libmodules_lib_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmodules_lib_la_OBJECTS) $(libmodules_lib_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amber_field.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_amBER_collector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_cables_commander.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_commander.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_err_inj_commander.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_eye_opener.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_maps.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_port_info.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_reg_parser.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_ui.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_user_input.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxlink_utils.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxlink/modules/mlxlink_maps.cpp0000644000175000017500000020540514522641732022241 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "mlxlink_maps.h" MlxlinkMaps* MlxlinkMaps::instance = NULL; MlxlinkMaps* MlxlinkMaps::getInstance() { if (!instance) { instance = new MlxlinkMaps(); } return instance; } void MlxlinkMaps::initPublicStrings() { _showErrorsTitle = "Errors"; } void MlxlinkMaps::initPortStateMapping() { _pmFsmState[PHY_MNGR_DISABLED] = "Disable"; _pmFsmState[PHY_MNGR_OPEN_PORT] = "Port PLL Down"; _pmFsmState[PHY_MNGR_POLLING] = "Polling"; _pmFsmState[PHY_MNGR_ACTIVE_LINKUP] = "Active"; _pmFsmState[PHY_MNGR_CLOSE_PORT] = "Close port"; _pmFsmState[PHY_MNGR_PHYSICAL_LINKUP] = "Physical LinkUp"; _pmFsmState[PHY_MNGR_RX_DISABLE] = "Rx disable"; _networkProtocols[IB] = "InfiniBand"; _networkProtocols[ETH] = "Ethernet"; _ethANFsmState[0x0] = "ETH_AN_FSM_ENABLE"; _ethANFsmState[0x1] = "ETH_AN_FSM_XMIT_DISABLE"; _ethANFsmState[0x2] = "ETH_AN_FSM_ABILITY_DETECT"; _ethANFsmState[0x3] = "ETH_AN_FSM_ACK_DETECT"; _ethANFsmState[0x4] = "ETH_AN_FSM_COMPLETE_ACK"; _ethANFsmState[0x5] = "ETH_AN_FSM_AN_GOOD_CHECK"; _ethANFsmState[0x6] = "LinkUp"; _ethANFsmState[0x7] = "ETH_AN_FSM_NEXT_PAGE_WAIT"; _ethANFsmState[0x8] = "ETH_AN_FSM_LINK_STAT_CHECK"; _ethANFsmState[0x9] = "ETH_AN_FSM_EXTRA_TUNE"; _ethANFsmState[0xa] = "ETH_AN_FSM_FIX_REVERSALS"; _ethANFsmState[0xb] = "ETH_AN_FSM_IB_FAIL"; _ethANFsmState[0xc] = "ETH_AN_FSM_POST_LOCK_TUNE"; _ibPhyFsmState[IB_AN_FSM_DISABLED] = "Disabled"; _ibPhyFsmState[IB_AN_FSM_INITIALY] = "Initializing"; _ibPhyFsmState[IB_AN_FSM_RCVR_CFG] = "Recover Config"; _ibPhyFsmState[IB_AN_FSM_CFG_TEST] = "Config Test"; _ibPhyFsmState[IB_AN_FSM_WAIT_RMT_TEST] = "Wait Remote Test"; _ibPhyFsmState[IB_AN_FSM_WAIT_CFG_ENHANCED] = "Wait Config Enhanced"; _ibPhyFsmState[IB_AN_FSM_CFG_IDLE] = "Config Idle"; _ibPhyFsmState[IB_AN_FSM_LINK_UP] = "LinkUp"; _anDisableList[AN_DISABLE_NORMAL] = "ON"; _anDisableList[AN_DISABLE_FORCE] = "FORCE"; _slrgFomMode[SLRG_FOM_MODE_EYEC] = "SLRG_FOM_MODE_EYEC"; _slrgFomMode[SLRG_FOM_MODE_EYEO] = "SLRG_FOM_MODE_EYEO"; _slrgFomMode[SLRG_FOM_MODE_EYEM] = "SLRG_FOM_MODE_EYEM"; _slrgFomMode[SLRG_FOM_MODE_BER] = "SLRG_FOM_MODE_BER"; _slrgFomMode[SLRG_FOM_MODE_EYEC_VN] = "SLRG_FOM_MODE_EYEC_VN"; _slrgFomMode[SLRG_FOM_MODE_EYEC_VP] = "SLRG_FOM_MODE_EYEC_VP"; _slrgFomMode[SLRG_FOM_MODE_EYEM_VN] = "SLRG_FOM_MODE_EYEM_VN"; _slrgFomMode[SLRG_FOM_MODE_EYEM_VP] = "SLRG_FOM_MODE_EYEM_VP"; _networkPorts["NETWORK"] = NETWORK_PORT_TYPE; _networkPorts["PCIE"] = NETWORK_PORT_TYPE_LAST; _networkPorts["GEARBOX_HOST"] = NETWORK_PORT_TYPE_NEAR; _networkPorts["INTERNAL_IC_LR"] = NETWORK_PORT_TYPE_IC_LR; _networkPorts["GEARBOX_LINE"] = NETWORK_PORT_TYPE_FAR; _pcieDevStatus[PCIE_DEVICE_STATUS_CORRECTABLE_ERROR] = "Correctable Error detected"; _pcieDevStatus[PCIE_DEVICE_STATUS_NON_FATAL_ERROR] = "Non-Fatal Error detected"; _pcieDevStatus[PCIE_DEVICE_STATUS_FATAL_ERROR] = "Fatal Error detected"; _pcieDevStatus[PCIE_DEVICE_STATUS_UNSUP_REQ] = "Unsupported Request detected"; _pcieDevStatus[PCIE_DEVICE_STATUS_AUX] = "AUX power"; _pcieDevStatus[PCIE_DEVICE_STATUS_TRANSACTION_PEN] = "Transaction Pending"; } void MlxlinkMaps::phyHstFsmHdrStateMapping() { _phyHstFsmHdrState[PHY_HST_FSM_HDR_DISABLED] = "DISABLED"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_ADAPTATION] = "ADAPTATION"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_DESKEW_FIX_REVERSALS] = "DESKEW_FIX_REVERSALS"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_WAIT_TS2] = "WAIT_TS2"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_WAIT_MCB] = "WAIT_MCB"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_MCB_AN] = "MCB_AN"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_RECEIVER_READY] = "RECEIVER_READY"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_LINKUP] = "LINKUP"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_SUBFSM_FAIL] = "SUBFSM_FAIL"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_BASIC_DETECT] = "BASIC_DETECT"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_BASIC_STABILITY] = "BASIC_STABILITY"; _phyHstFsmHdrState[PHY_HST_FSM_HDR_CONFIG] = "CONFIG"; _phyHstFsmHdrState[PHY_HST_HDR_ERROR] = "ERROR"; } void MlxlinkMaps::initFecAndLoopbackMapping() { _fecModeActive[FEC_MODE_NO_FEC] = "No FEC"; _fecModeActive[FEC_MODE_FIRECODE_FEC] = "Firecode FEC"; _fecModeActive[FEC_MODE_STANDARD_RS_FEC_528_514] = "Standard RS-FEC - RS(528,514)"; _fecModeActive[FEC_MODE_STANDARD_LL_FEC_271_257] = "Standard LL RS-FEC - RS(271,257)"; _fecModeActive[FEC_MODE_INTERLEAVED_STANDARD_RS_FEC_544_514] = "Interleaved_Standard_RS-FEC - (544,514)"; _fecModeActive[FEC_MODE_STANDARD_RS_FEC_544_514] = "Standard_RS-FEC - (544,514)"; _fecModeActive[FEC_MODE_RS_FEC_272_257] = "Ethernet_Consortium_LL_50G_RS_FEC- (272,257+1)"; _fecModeActive[FEC_MODE_INTERLEAVED_RS_FEC_272_257] = "Interleaved_Ethernet_Consortium_LL_50G_RS_FEC -(272,257+1)"; _fecModeActive[FEC_MODE_RS_FEC_544_514_PLR] = "RS-FEC - (544,514) + PLR"; _fecModeActive[FEC_MODE_RS_FEC_271_257_PLR] = "LL-FEC - (271,257) + PLR"; _fecModeActive[FEC_MODE_RS_FEC_PLR_272_257] = "Ethernet_Consortium_LL_50G_RS_FEC_PLR -(272,257+1)"; _fecModeMask[FEC_MODE_MASK_AU] = make_pair("Auto-FEC", "AU"); _fecModeMask[FEC_MODE_MASK_NF] = make_pair("No-FEC", "NF"); _fecModeMask[FEC_MODE_MASK_FC] = make_pair("Firecode_FEC", "FC"); _fecModeMask[FEC_MODE_MASK_RS_528] = make_pair("RS-FEC (528,514)", "RS"); _fecModeMask[FEC_MODE_MASK_LL_271] = make_pair("LL_RS-FEC (271,257)", "LL"); _fecModeMask[FEC_MODE_MASK_DF_RS] = make_pair("Interleaved_RS-FEC (544,514)", "DF-RS"); _fecModeMask[FEC_MODE_MASK_RS_544] = make_pair("RS-FEC (544,514)", "RS-544"); _fecModeMask[FEC_MODE_MASK_LL_272] = make_pair("LL_RS-FEC (272,257+1)", "LL-272"); _fecModeMask[FEC_MODE_MASK_DF_LL_272] = make_pair("Interleaved_LL_RS-FEC (272,257+1)", "DF-LL"); _fecPerSpeed.push_back(make_pair("800G_8X", "")); _fecPerSpeed.push_back(make_pair("400G_4X", "")); _fecPerSpeed.push_back(make_pair("200G_2X", "")); _fecPerSpeed.push_back(make_pair("100G_1X", "")); _fecPerSpeed.push_back(make_pair("400G_8X", "")); _fecPerSpeed.push_back(make_pair("200G_4X", "")); _fecPerSpeed.push_back(make_pair("100G_2X", "")); _fecPerSpeed.push_back(make_pair("50G_1X", "")); _fecPerSpeed.push_back(make_pair("50G_2X", "")); _fecPerSpeed.push_back(make_pair("100G_4X", "")); _fecPerSpeed.push_back(make_pair("100G", "")); _fecPerSpeed.push_back(make_pair("56G", "")); _fecPerSpeed.push_back(make_pair("50G", "")); _fecPerSpeed.push_back(make_pair("40G", "")); _fecPerSpeed.push_back(make_pair("25G", "")); _fecPerSpeed.push_back(make_pair("10G", "")); _loopbackModeList[LOOPBACK_MODE_NO] = make_pair("NO", "No Loopback"); _loopbackModeList[LOOPBACK_MODE_REMOTE] = make_pair("RM", "PHY Remote Loopback"); _loopbackModeList[LOOPBACK_MODE_LOCAL] = make_pair("PH", "PHY Local Loopback"); _loopbackModeList[LOOPBACK_MODE_EXTERNAL] = make_pair("EX", "External Local Loopback"); _loopbackModeList[LOOPBACK_MODE_LL] = make_pair("LL", "Link Layer Local Loopback"); } void MlxlinkMaps::ethSpeedMapping() { _ETHSpeed2gNum[ETH_LINK_SPEED_10G_KR] = 10; _ETHSpeed2gNum[ETH_LINK_SPEED_10G_CR] = 10; _ETHSpeed2gNum[ETH_LINK_SPEED_10G_SR] = 10; _ETHSpeed2gNum[ETH_LINK_SPEED_10G_LR] = 10; _ETHSpeed2gNum[ETH_LINK_SPEED_20G_KR2] = 20; _ETHSpeed2gNum[ETH_LINK_SPEED_25G_CR] = 25; _ETHSpeed2gNum[ETH_LINK_SPEED_25G_KR] = 25; _ETHSpeed2gNum[ETH_LINK_SPEED_25G_SR] = 25; _ETHSpeed2gNum[ETH_LINK_SPEED_40G_CR4] = 40; _ETHSpeed2gNum[ETH_LINK_SPEED_40G_KR4] = 40; _ETHSpeed2gNum[ETH_LINK_SPEED_40G_LR4] = 40; _ETHSpeed2gNum[ETH_LINK_SPEED_40G_SR4] = 40; _ETHSpeed2gNum[ETH_LINK_SPEED_50G_CR2] = 50; _ETHSpeed2gNum[ETH_LINK_SPEED_50G_KR2] = 50; _ETHSpeed2gNum[ETH_LINK_SPEED_50G_SR2] = 50; _ETHSpeed2gNum[ETH_LINK_SPEED_50G_KR4] = 50; _ETHSpeed2gNum[ETH_LINK_SPEED_56G_R4] = 56; _ETHSpeed2gNum[ETH_LINK_SPEED_100G_CR4] = 100; _ETHSpeed2gNum[ETH_LINK_SPEED_100G_KR4] = 100; _ETHSpeed2gNum[ETH_LINK_SPEED_100G_LR4] = 100; _ETHSpeed2gNum[ETH_LINK_SPEED_100G_SR4] = 100; _ETHSpeed2Str[ETH_LINK_SPEED_100_BaseTx] = "BaseTx100M"; _ETHSpeed2Str[ETH_LINK_SPEED_1000_BaseT] = "BaseT1000M"; _ETHSpeed2Str[ETH_LINK_SPEED_10M] = "BaseT10M"; _ETHSpeed2Str[ETH_LINK_SPEED_1000_SGMII] = "CX"; _ETHSpeed2Str[ETH_LINK_SPEED_1000_KX] = "KX"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_CX4] = "CX4"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_KX4] = "KX4"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_BaseT] = "BaseT10G"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_KR] = "10GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_CR] = "10GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_SR] = "10GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_10G_LR] = "10GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_20G_KR2] = "20GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_25G_CR] = "25GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_25G_KR] = "25GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_25G_SR] = "25GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_40G_CR4] = "40GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_40G_KR4] = "40GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_40G_LR4] = "40GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_40G_SR4] = "40GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_50G_CR2] = "50GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_50G_KR2] = "50GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_50G_SR2] = "50GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_50G_KR4] = "50GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_56G_R4] = "56GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_100G_CR4] = "100GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_100G_KR4] = "100GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_100G_LR4] = "100GbE"; _ETHSpeed2Str[ETH_LINK_SPEED_100G_SR4] = "100GbE"; } void MlxlinkMaps::extEthSpeedMapping() { _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_1000BASE_X] = 1; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_5GBASE_R] = 5; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_XFI] = 10; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_XLAUI_4] = 40; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_25GAUI_1] = 25; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_50GAUI_2] = 50; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_50GAUI_1] = 50; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_CAUI_4] = 100; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_100GAUI_2] = 100; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_100GAUI_1] = 100; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_200GAUI_4] = 200; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_200GAUI_2] = 200; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_400GAUI_8] = 400; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_400GAUI_4] = 400; _EthExtSpeed2gNum[ETH_LINK_SPEED_EXT_800GAUI_8] = 800; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_SGMII_100M] = "100M"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_1000BASE_X] = "1G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_2_5GBASE_X] = "2.5G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_5GBASE_R] = "5G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_XFI] = "10G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_XLAUI_4] = "40G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_25GAUI_1] = "25G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_50GAUI_2] = "50G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_50GAUI_1] = "50G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_CAUI_4] = "100G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_100GAUI_2] = "100G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_100GAUI_1] = "100G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_200GAUI_4] = "200G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_200GAUI_2] = "200G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_400GAUI_8] = "400G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_400GAUI_4] = "400G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_800GAUI_8] = "800G"; _EthExtSpeed2Str[ETH_LINK_SPEED_EXT_SGMII_10M] = "10M"; } void MlxlinkMaps::ibSpeedMapping() { _IBSpeed2gNum[IB_LINK_SPEED_SDR] = 10; _IBSpeed2gNum[IB_LINK_SPEED_DDR] = 20; _IBSpeed2gNum[IB_LINK_SPEED_QDR] = 40; _IBSpeed2gNum[IB_LINK_SPEED_FDR10] = 40; _IBSpeed2gNum[IB_LINK_SPEED_FDR] = 56; _IBSpeed2gNum[IB_LINK_SPEED_EDR] = 100; _IBSpeed2gNum[IB_LINK_SPEED_HDR] = 200; _IBSpeed2gNum[IB_LINK_SPEED_NDR] = 400; _IBSpeed2gNum[IB_LINK_SPEED_XDR] = 800; _IBSpeed2Str[IB_LINK_SPEED_SDR] = "IB-SDR"; _IBSpeed2Str[IB_LINK_SPEED_DDR] = "IB-DDR"; _IBSpeed2Str[IB_LINK_SPEED_QDR] = "IB-QDR"; _IBSpeed2Str[IB_LINK_SPEED_FDR10] = "IB-FDR10"; _IBSpeed2Str[IB_LINK_SPEED_FDR] = "IB-FDR"; _IBSpeed2Str[IB_LINK_SPEED_EDR] = "IB-EDR"; _IBSpeed2Str[IB_LINK_SPEED_HDR] = "IB-HDR"; _IBSpeed2Str[IB_LINK_SPEED_NDR] = "IB-NDR"; _IBSpeed2Str[IB_LINK_SPEED_XDR] = "IB-XDR"; } void MlxlinkMaps::speedToLanesMapping() { _ETHSpeed2Lanes[ETH_LINK_SPEED_100_BaseTx] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_1000_BaseT] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_1000_SGMII] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_1000_KX] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_10M] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_CX4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_KX4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_BaseT] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_KR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_CR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_SR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_10G_LR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_20G_KR2] = 2; _ETHSpeed2Lanes[ETH_LINK_SPEED_25G_CR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_25G_KR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_25G_SR] = 1; _ETHSpeed2Lanes[ETH_LINK_SPEED_40G_CR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_40G_KR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_40G_LR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_40G_SR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_50G_CR2] = 2; _ETHSpeed2Lanes[ETH_LINK_SPEED_50G_KR2] = 2; _ETHSpeed2Lanes[ETH_LINK_SPEED_50G_SR2] = 2; _ETHSpeed2Lanes[ETH_LINK_SPEED_50G_KR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_56G_R4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_100G_CR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_100G_KR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_100G_LR4] = 4; _ETHSpeed2Lanes[ETH_LINK_SPEED_100G_SR4] = 4; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_SGMII_10M] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_SGMII_100M] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_1000BASE_X] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_2_5GBASE_X] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_5GBASE_R] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_XFI] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_XLAUI_4] = 4; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_25GAUI_1] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_50GAUI_2] = 2; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_50GAUI_1] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_CAUI_4] = 4; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_100GAUI_2] = 2; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_100GAUI_1] = 1; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_200GAUI_4] = 4; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_200GAUI_2] = 2; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_400GAUI_8] = 8; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_400GAUI_4] = 4; _ExtETHSpeed2Lanes[ETH_LINK_SPEED_EXT_800GAUI_8] = 8; } void MlxlinkMaps::initPortSpeedMapping() { ethSpeedMapping(); extEthSpeedMapping(); ibSpeedMapping(); speedToLanesMapping(); } void MlxlinkMaps::initPrbsMapping() { _prbsModesList[0] = "PRBS31"; _prbsModesList[1] = "PRBS23A"; _prbsModesList[2] = "PRBS23B"; _prbsModesList[3] = "PRBS23C"; _prbsModesList[4] = "PRBS23D"; _prbsModesList[5] = "PRBS7"; _prbsModesList[6] = "PRBS11"; _prbsModesList[7] = "PRBS11A"; _prbsModesList[8] = "PRBS11B"; _prbsModesList[9] = "PRBS11C"; _prbsModesList[10] = "PRBS11D"; _prbsModesList[11] = "PRBS9"; _prbsModesList[12] = "IDLE"; _prbsModesList[13] = "SQUARE_WAVEA"; _prbsModesList[14] = "SQUARE_WAVEB"; _prbsModesList[15] = "SQUARE_WAVEC"; _prbsModesList[16] = "SQUARE_WAVED"; _prbsModesList[17] = "PRBS13A"; _prbsModesList[18] = "PRBS13B"; _prbsModesList[19] = "PRBS13C"; _prbsModesList[20] = "PRBS13D"; _prbsModesList[21] = "SSPR"; _prbsModesList[22] = "SSPRQ"; _prbsModesList[23] = "LT_FRAMES"; _prbsModesList[24] = "PRBS15"; _prbsModesList[25] = "PRBS28"; _prbsModesList[26] = "SQUARE_WAVE3"; _prbsModesList[27] = "SQUARE_WAVE13"; _prbsModesList[28] = "SQUARE_WAVE30"; _prbsLaneRateList[0] = "2.5G"; _prbsLaneRateList[1] = "5G"; _prbsLaneRateList[2] = "10G"; _prbsLaneRateList[3] = "10.3125G"; _prbsLaneRateList[4] = "14.0625G"; _prbsLaneRateList[5] = "25.78125G"; _prbsLaneRateList[6] = "53.125G"; _prbsLaneRateList[7] = "106.25G"; _prbsLaneRateList[8] = "212.5G"; _prbsLaneRateList[9] = "N/A"; _prbsLaneRateList[10] = "1.25G"; _prbsLaneRateList[11] = "3.125G"; _prbsLaneRateList[12] = "12.89G"; // 1G _prbsLaneRate["1G"] = {LANE_RATE_1G_CAP, PRBS_1G}; // 2.5G _prbsLaneRate["XAUI"] = {LANE_RATE_XAUI_CAP, PRBS_XAUI}; _prbsLaneRate["2.5G"] = {LANE_RATE_XAUI_CAP, PRBS_XAUI}; // 50G-KR4 _prbsLaneRate["50GE-KR4"] = {LANE_RATE_50G_CAP, PRBS_50G}; _prbsLaneRate["12.89G"] = {LANE_RATE_50G_CAP, PRBS_50G}; // SDR _prbsLaneRate["IB-SDR"] = {LANE_RATE_SDR_CAP, PRBS_SDR}; _prbsLaneRate["SDR"] = {LANE_RATE_SDR_CAP, PRBS_SDR}; // DDR _prbsLaneRate["IB-DDR"] = {LANE_RATE_DDR_CAP, PRBS_DDR}; _prbsLaneRate["DDR"] = {LANE_RATE_DDR_CAP, PRBS_DDR}; _prbsLaneRate["5G"] = {LANE_RATE_DDR_CAP, PRBS_DDR}; // QDR _prbsLaneRate["IB-QDR"] = {LANE_RATE_QDR_CAP, PRBS_QDR}; _prbsLaneRate["QDR"] = {LANE_RATE_QDR_CAP, PRBS_QDR}; // FDR10 _prbsLaneRate["IB-FDR10"] = {LANE_RATE_FDR10_CAP, PRBS_FDR10}; _prbsLaneRate["FDR10"] = {LANE_RATE_FDR10_CAP, PRBS_FDR10}; _prbsLaneRate["10G"] = {LANE_RATE_FDR10_CAP, PRBS_FDR10}; _prbsLaneRate["40G"] = {LANE_RATE_FDR10_CAP, PRBS_FDR10}; // FDR _prbsLaneRate["IB-FDR"] = {LANE_RATE_FDR_CAP, PRBS_FDR}; _prbsLaneRate["FDR"] = {LANE_RATE_FDR_CAP, PRBS_FDR}; _prbsLaneRate["14G"] = {LANE_RATE_FDR_CAP, PRBS_FDR}; // EDR _prbsLaneRate["IB-EDR"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; _prbsLaneRate["EDR"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; _prbsLaneRate["25G"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; _prbsLaneRate["50G"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; _prbsLaneRate["50G_2X"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; _prbsLaneRate["100G"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; _prbsLaneRate["100G_4X"] = {LANE_RATE_EDR_CAP, PRBS_EDR}; // HDR _prbsLaneRate["IB-HDR"] = {LANE_RATE_HDR_CAP, PRBS_HDR}; _prbsLaneRate["HDR"] = {LANE_RATE_HDR_CAP, PRBS_HDR}; _prbsLaneRate["50G_1X"] = {LANE_RATE_HDR_CAP, PRBS_HDR}; _prbsLaneRate["100G_2X"] = {LANE_RATE_HDR_CAP, PRBS_HDR}; _prbsLaneRate["200G_4X"] = {LANE_RATE_HDR_CAP, PRBS_HDR}; _prbsLaneRate["400G_8X"] = {LANE_RATE_HDR_CAP, PRBS_HDR}; // NDR _prbsLaneRate["IB-NDR"] = {LANE_RATE_NDR_CAP, PRBS_NDR}; _prbsLaneRate["NDR"] = {LANE_RATE_NDR_CAP, PRBS_NDR}; _prbsLaneRate["100G_1X"] = {LANE_RATE_NDR_CAP, PRBS_NDR}; _prbsLaneRate["200G_2X"] = {LANE_RATE_NDR_CAP, PRBS_NDR}; _prbsLaneRate["400G_4X"] = {LANE_RATE_NDR_CAP, PRBS_NDR}; _prbsLaneRate["800G_8X"] = {LANE_RATE_NDR_CAP, PRBS_NDR}; // XDR _prbsLaneRate["IB-XDR"] = {LANE_RATE_XDR_CAP, PRBS_XDR}; _prbsLaneRate["XDR"] = {LANE_RATE_XDR_CAP, PRBS_XDR}; _prbsRxTuningStatus[0] = "PRBS mode tuning was not performed."; _prbsRxTuningStatus[1] = "Performing PRBS mode tuning."; _prbsRxTuningStatus[2] = "PRBS mode tuning completed."; _prbsRxTuningStatus[3] = "Signal Detect in progress."; _prbsLaneRateCap[LANE_RATE_1G_CAP] = "1G (1.25 Gb/s)"; _prbsLaneRateCap[LANE_RATE_SDR_CAP] = "SDR (2.5 Gb/s)"; _prbsLaneRateCap[LANE_RATE_XAUI_CAP] = "XAUI/2.5G (3.125 Gb/s)"; _prbsLaneRateCap[LANE_RATE_DDR_CAP] = "DDR/5G (5 Gb/s)"; _prbsLaneRateCap[LANE_RATE_QDR_CAP] = "QDR (10 Gb/s)"; _prbsLaneRateCap[LANE_RATE_FDR10_CAP] = "FDR10/10G/40G (10.3125 Gb/s)"; _prbsLaneRateCap[LANE_RATE_FDR_CAP] = "FDR/14G (14.0625 Gb/s)"; _prbsLaneRateCap[LANE_RATE_EDR_CAP] = "EDR/25G/50G/100G (25.78125 Gb/s)"; _prbsLaneRateCap[LANE_RATE_50G_CAP] = "50GE-KR4/12.89G (12.89 Gb/s)"; _prbsLaneRateCap[LANE_RATE_HDR_CAP] = "HDR/50G/100G/200G/400G (26.5625Gbd/53.125Gb/s)"; _prbsLaneRateCap[LANE_RATE_NDR_CAP] = "NDR/100G/200G/400G/800G (53.125Gbd/106.25Gb/s)"; _prbsLaneRateCap[LANE_RATE_XDR_CAP] = "XDR (106.25Gbd/212.5Gb/s)"; _prbsLockStatus[0] = "Not locked"; _prbsLockStatus[1] = "Locked"; _prbsEStatus[0] = "PRBS RX is disabled"; _prbsEStatus[1] = "PRBS RX is enabled"; _prbsPStatus[0] = "No polarity inversion"; _prbsPStatus[1] = "PRBS RX polarity inversion."; _prbsModulation[0] = "NRZ test pattern"; _prbsModulation[1] = "PAM4 encoding"; _prbsModulation[2] = "PAM4 with precoding"; _prbsModulation[3] = "PAM4 without gray no precoding"; _prbsModulation[4] = "PAM4 without gray with precoding"; } void MlxlinkMaps::initPpbmcAndPepcMapping() { _ppbmcBerMonitorState[0] = "No BER Monitor support"; _ppbmcBerMonitorState[1] = "Normal"; _ppbmcBerMonitorState[2] = "Warning"; _ppbmcBerMonitorState[3] = "Alarm"; _ppbmcBerMonitorType[0] = "Post FEC / No FEC BER monitoring"; _ppbmcBerMonitorType[1] = "Pre FEC BER monitoring"; _pepcStatus[0] = "Good"; _pepcStatus[1] = "No support of the required configuration"; _pepcStatus[2] = "Unknown External PHY"; _pepcStatus[15] = "No External PHY"; _pepcTwistedPairAn[0] = "Normal operation - AN is determine by MDI"; _pepcTwistedPairAn[1] = "Disable AN"; _pepcTwistedPairForceMode[0] = "Master mode"; _pepcTwistedPairForceMode[1] = "Slave mode"; _pepcTwistedPairAnMode[0] = "auto Master/Slave mode for AN links"; _pepcTwistedPairAnMode[1] = "Master mode"; _pepcTwistedPairAnMode[2] = "Slave mode"; } void MlxlinkMaps::initLinkDownInfoMapping() { _pddrLinkDownBlame[0] = "Unknown"; _pddrLinkDownBlame[1] = "Local phy"; _pddrLinkDownBlame[2] = "Remote phy"; _pddrLinkDownE2EReasonOpcode[0] = "No link down indication"; _pddrLinkDownE2EReasonOpcode[1] = "Unknown reason"; _pddrLinkDownE2EReasonOpcode[2] = "Hi_SER / Hi_BER"; _pddrLinkDownE2EReasonOpcode[3] = "Block_Lock loss"; _pddrLinkDownE2EReasonOpcode[4] = "Alignment loss"; _pddrLinkDownE2EReasonOpcode[5] = "FEC sync loss"; _pddrLinkDownE2EReasonOpcode[6] = "PLL lock loss"; _pddrLinkDownE2EReasonOpcode[7] = "FIFO overflow"; _pddrLinkDownE2EReasonOpcode[8] = "false SKIP condition"; _pddrLinkDownE2EReasonOpcode[9] = "Minor Error threshold exceeded"; _pddrLinkDownE2EReasonOpcode[10] = "Physical layer retransmission timeout"; _pddrLinkDownE2EReasonOpcode[11] = "Heartbeat errors"; _pddrLinkDownE2EReasonOpcode[12] = "Link Layer credit monitoring watchdog"; _pddrLinkDownE2EReasonOpcode[13] = "Link Layer integrity threshold exceeded"; _pddrLinkDownE2EReasonOpcode[14] = "Link Layer buffer overrun"; _pddrLinkDownE2EReasonOpcode[15] = "Down by outband command with healthy link"; _pddrLinkDownE2EReasonOpcode[16] = "Down by outband command for link with hi ber"; _pddrLinkDownE2EReasonOpcode[17] = "Down by inband command with healthy link"; _pddrLinkDownE2EReasonOpcode[18] = "Down by inband command for link with hi ber"; _pddrLinkDownE2EReasonOpcode[19] = "Down by verification GW"; _pddrLinkDownE2EReasonOpcode[20] = "Received Remote Fault"; _pddrLinkDownE2EReasonOpcode[21] = "Received TS1"; _pddrLinkDownE2EReasonOpcode[22] = "Down by management command"; _pddrLinkDownE2EReasonOpcode[23] = "Cable was unplugged"; _pddrLinkDownE2EReasonOpcode[24] = "Cable access issue"; _pddrLinkDownE2EReasonOpcode[25] = "Thermal shutdown"; _pddrLinkDownE2EReasonOpcode[26] = "Current issue"; _pddrLinkDownE2EReasonOpcode[27] = "Power budget"; _pddrLinkDownE2EReasonOpcode[28] = "MNG forced down the port"; _pddrLinkDownE2EReasonOpcode[100] = "Peer - No link down indication"; _pddrLinkDownE2EReasonOpcode[101] = "Peer - Unknown reason"; _pddrLinkDownE2EReasonOpcode[102] = "Peer - Hi_SER / Hi_BER"; _pddrLinkDownE2EReasonOpcode[103] = "Peer - Block_Lock loss"; _pddrLinkDownE2EReasonOpcode[104] = "Peer - Alignment loss"; _pddrLinkDownE2EReasonOpcode[105] = "Peer - FEC sync loss"; _pddrLinkDownE2EReasonOpcode[106] = "Peer - PLL lock loss"; _pddrLinkDownE2EReasonOpcode[107] = "Peer - FIFO overflow"; _pddrLinkDownE2EReasonOpcode[108] = "Peer - false SKIP condition"; _pddrLinkDownE2EReasonOpcode[109] = "Peer - Minor Error threshold exceeded"; _pddrLinkDownE2EReasonOpcode[110] = "Peer - Physical layer retransmission timeout"; _pddrLinkDownE2EReasonOpcode[111] = "Peer - Heartbeat errors"; _pddrLinkDownE2EReasonOpcode[112] = "Peer - Link Layer credit monitoring watchdog"; _pddrLinkDownE2EReasonOpcode[113] = "Peer - Link Layer integrity threshold exceeded"; _pddrLinkDownE2EReasonOpcode[114] = "Peer - Link Layer buffer overrun"; _pddrLinkDownE2EReasonOpcode[115] = "Peer - Down by outband command with healthy link"; _pddrLinkDownE2EReasonOpcode[116] = "Peer - Down by outband command for link with hi ber"; _pddrLinkDownE2EReasonOpcode[117] = "Peer - Down by inband command with healthy link"; _pddrLinkDownE2EReasonOpcode[118] = "Peer - Down by inband command for link with hi ber"; _pddrLinkDownE2EReasonOpcode[119] = "Peer - Down by verification GW"; _pddrLinkDownE2EReasonOpcode[120] = "Peer - Received Remote Fault"; _pddrLinkDownE2EReasonOpcode[121] = "Peer - Received TS1"; _pddrLinkDownE2EReasonOpcode[122] = "Peer - Down by management command"; _pddrLinkDownE2EReasonOpcode[123] = "Peer - Cable was unplugged"; _pddrLinkDownE2EReasonOpcode[124] = "Peer - Cable access issue"; _pddrLinkDownE2EReasonOpcode[125] = "Peer - Thermal shutdown"; _pddrLinkDownE2EReasonOpcode[126] = "Peer - Current issue"; _pddrLinkDownE2EReasonOpcode[127] = "Peer - Power budget"; _pddrLinkDownE2EReasonOpcode[128] = "Peer - MNG forced down the port"; } void MlxlinkMaps::initSltpStatusMapping() { _SltpEdrParams[SLTP_EDR_POLARITY] = PRM_FIELD{"polarity", "Pol", FIELD_ACCESS_RW, false}; _SltpEdrParams[SLTP_EDR_OB_TAP0] = PRM_FIELD{"ob_tap0", "tap0", FIELD_ACCESS_RW, false}; _SltpEdrParams[SLTP_EDR_OB_TAP1] = PRM_FIELD{"ob_tap1", "tap1", FIELD_ACCESS_RW, false}; _SltpEdrParams[SLTP_EDR_OB_TAP2] = PRM_FIELD{"ob_tap2", "tap2", FIELD_ACCESS_RW, false}; _SltpEdrParams[SLTP_EDR_OB_BIAS] = PRM_FIELD{"ob_bias", "bias", FIELD_ACCESS_RW, false}; _SltpEdrParams[SLTP_EDR_OB_PREEMP_MODE] = PRM_FIELD{"ob_preemp_mode", "preemp_mode", FIELD_ACCESS_RW, false}; _SltpEdrParams[SLTP_EDR_OB_REG] = PRM_FIELD{"ob_reg", "reg", FIELD_ACCESS_ADVANCED, false}; _SltpEdrParams[SLTP_EDR_OB_LEVA] = PRM_FIELD{"ob_leva", "leva", FIELD_ACCESS_ADVANCED, false}; _SltpHdrParams[SLTP_HDR_PRE_2_TAP] = PRM_FIELD{"pre_2_tap", "pre2Tap", FIELD_ACCESS_RW, true}; _SltpHdrParams[SLTP_HDR_PRE_TAP] = PRM_FIELD{"pre_tap", "preTap", FIELD_ACCESS_RW, true}; _SltpHdrParams[SLTP_HDR_MAIN_TAP] = PRM_FIELD{"main_tap", "mainTap", FIELD_ACCESS_RW, true}; _SltpHdrParams[SLTP_HDR_POST_TAP] = PRM_FIELD{"post_tap", "postTap", FIELD_ACCESS_RW, true}; _SltpHdrParams[SLTP_HDR_OB_M2LP] = PRM_FIELD{"ob_m2lp", "m2lp", FIELD_ACCESS_RW, true}; _SltpHdrParams[SLTP_HDR_OB_AMP] = PRM_FIELD{"ob_amp", "amp", FIELD_ACCESS_RW, false}; _SltpHdrParams[SLTP_HDR_OB_ALEV_OUT] = PRM_FIELD{"ob_alev_out", "alev_out", FIELD_ACCESS_W, false}; _SltpNdrParams[SLTP_NDR_FIR_PRE3] = PRM_FIELD{"fir_pre3", "fir_pre3", FIELD_ACCESS_RW, true}; _SltpNdrParams[SLTP_NDR_FIR_PRE2] = PRM_FIELD{"fir_pre2", "fir_pre2", FIELD_ACCESS_RW, true}; _SltpNdrParams[SLTP_NDR_FIR_PRE1] = PRM_FIELD{"fir_pre1", "fir_pre1", FIELD_ACCESS_RW, true}; _SltpNdrParams[SLTP_NDR_FIR_MAIN] = PRM_FIELD{"fir_main", "fir_main", FIELD_ACCESS_RW, true}; _SltpNdrParams[SLTP_NDR_FIR_POST1] = PRM_FIELD{"fir_post1", "fir_post1", FIELD_ACCESS_RW, true}; _SLTP7BadSetStatus2Str[BAD_STAT_7NM_INVALID_PRE3] = "pre3 is out of range"; _SLTP7BadSetStatus2Str[BAD_STAT_7NM_INVALID_PRE2] = "pre2 is out of range"; _SLTP7BadSetStatus2Str[BAD_STAT_7NM_INVALID_PRE1] = "pre1 is out of range"; _SLTP7BadSetStatus2Str[BAD_STAT_7NM_INVALID_MAIN] = "main tap is out of range"; _SLTP7BadSetStatus2Str[BAD_STAT_7NM_INVALID_POST] = "sum of taps is out of range"; _SLTP7BadSetStatus2Str[BAD_STAT_7NM_TAP_SPEED_MISMATCH] = "taps not aligned with speed"; _SLTP16BadSetStatus2Str[SET_STATUS16_INVALID_PARM] = "taps values can't be set to serdes due to internal limitations. "; _SLTP16BadSetStatus2Str[SET_STATUS16_ILLEGAL_M2LP_AMP] = "ob_m2lp, ob_amp and ob_alev is in legal range each, " "but the total combination can't be set to serdes due to internal " "limitations."; _SLTP16BadSetStatus2Str[SET_STATUS16_ILLEGAL_M2LP] = "Illegal ob_m2lp"; _SLTP16BadSetStatus2Str[SET_STATUS16_ILLEGAL_AMP] = "Illegal ob_amp"; _SLTP16BadSetStatus2Str[SET_STATUS16_ILLEGAL_ALEV_OUT] = "Illegal ob_alev_out"; _SLTP16BadSetStatus2Str[SET_STATUS16_ILLEGAL_TAPS] = "Illegal taps"; _SLTP16BadSetStatus2Str[SET_STATUS16_UNKNOWN] = "Unknown failure status"; _SLTPBadSetStatus2Str[SET_STATUS16_INVALID_PARM] = "Invalid parameter"; _SLTPBadSetStatus2Str[SET_STATUS_ILLEGAL_OB_BAIS] = "Illegal ob_bais value"; _SLTPBadSetStatus2Str[SET_STATUS_ILLEGAL_OB_TAPS_POLARITY] = "Illegal ob_taps polarity (distance between taps)"; _SLTPBadSetStatus2Str[SET_STATUS_UNKNOWN] = "Unknown failure status"; } void MlxlinkMaps::cmisIbComlianceMapping() { _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_SDR] = "SDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_DDR] = "DDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_QDR] = "QDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_FDR] = "FDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_EDR] = "EDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_HDR] = "HDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_NDR] = "NDR"; _cableComplianceCmisIb[CMIS_IB_COMPLIANCE_CODE_XDR] = "XDR"; } void MlxlinkMaps::cimsCableBreakoutMapping() { _cimsCableBreakout[CMIS_CABLE_BREAKOUT_UNSPECIFIED] = "Unspecified"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_QSFPDD] = "X to X"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_2QSFP_or_2QSFPDD] = "X to 2xQSFP or 2xX (depopulated / 4 lanes)"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_4SFPDD_or_4QSFP] = "X to 4xDSFP or 4xQSFP (depopulated / 2 lanes)"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_8SFP] = "X to 8xSFP"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_QSFP_or_QSFPDD] = "X (depopulated / 4 lanes) to QSFP or X (depopulated / 4 lanes)"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_2QSFP] = "X (depopulated / 4 lanes) to 2xX(depopulated / 2 lanes) or 2xSFP-DD"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_QSFPDD_to_4SFP] = "X (depopulated / 4 lanes) to 4xSFP"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_SFPDD_to_SFPDD] = "X(/ 2 lane module) to X"; _cimsCableBreakout[CMIS_CABLE_BREAKOUT_SFPDD_to_2SFPDD] = "X(/ 2 lane module) to 2xSFP"; } void MlxlinkMaps::rxTxCdrCapMapping() { _txInputFreq[0] = "Tx_input_lanes_1_8"; _txInputFreq[1] = "Tx_input_lanes_1_4_and_5-8"; _txInputFreq[2] = "Tx_input_lanes_1_2_and_3_4_and_5_6_and_7_8"; _txInputFreq[3] = "Lanes_may_be_asynchronous_in_frequency"; _rxTxCdrCap[RX_TX_CDR_CAP_NO_CDR] = "No CDR"; _rxTxCdrCap[RX_TX_CDR_CAP_BUILD_IN_CDR_WITH_ON_OFF_CONTROL] = "Build-in CDR with on/off control"; _rxTxCdrCap[RX_TX_CDR_CAP_BUILD_IN_CDR_WITHOUT_ON_OFF_CONTROL] = "Build-in CDR without on/off control"; _moduleRxAmp[0] = "100-400 mV (P-P)"; _moduleRxAmp[1] = "300-600 mV (P-P)"; _moduleRxAmp[2] = "400-800 mV (P-P)"; _moduleRxAmp[3] = "600-1200 mV (P-P)"; _moduleRxAmp[4] = "Custom"; _moduleRxAmp[5] = "Custom"; _moduleRxAmp[6] = "Custom"; _moduleRxAmp[7] = "Custom"; _moduleRxAmp[8] = "Custom"; _moduleRxAmp[9] = "Custom"; _moduleRxAmp[10] = "Custom"; _moduleRxAmp[11] = "Custom"; _moduleRxAmp[12] = "Custom"; _moduleRxAmp[13] = "Custom"; _moduleRxAmp[14] = "Custom"; _moduleRxAmp[15] = "Custom"; _moduleRxAmpCap[PMCR_RX_AMP_BIT0] = "0 (" + _moduleRxAmp[0] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT1] = "1 (" + _moduleRxAmp[1] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT2] = "2 (" + _moduleRxAmp[2] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT3] = "3 (" + _moduleRxAmp[3] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT4] = "4 (" + _moduleRxAmp[4] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT5] = "5 (" + _moduleRxAmp[5] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT6] = "6 (" + _moduleRxAmp[6] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT7] = "7 (" + _moduleRxAmp[7] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT8] = "8 (" + _moduleRxAmp[8] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT9] = "9 (" + _moduleRxAmp[9] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT10] = "10 (" + _moduleRxAmp[10] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT11] = "11 (" + _moduleRxAmp[11] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT12] = "12 (" + _moduleRxAmp[12] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT13] = "13 (" + _moduleRxAmp[13] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT14] = "14 (" + _moduleRxAmp[14] + ")"; _moduleRxAmpCap[PMCR_RX_AMP_BIT15] = "15 (" + _moduleRxAmp[15] + ")"; } void MlxlinkMaps::rxPowerTypeMapping() { _rxPowerType[RX_POWER_TYPE_OMA] = "OMA"; _rxPowerType[RX_POWER_TYPE_AVERAGE_POWER] = "Average power"; } void MlxlinkMaps::maxReadReqSizeMapping() { _maxReadReqSize[MAX_READ_REQUEST_SIZE_128B] = "128B"; _maxReadReqSize[MAX_READ_REQUEST_SIZE_256B] = "256B"; _maxReadReqSize[MAX_READ_REQUEST_SIZE_512B] = "512B"; _maxReadReqSize[MAX_READ_REQUEST_SIZE_1024B] = "1024B"; _maxReadReqSize[MAX_READ_REQUEST_SIZE_2048B] = "2048B"; _maxReadReqSize[MAX_READ_REQUEST_SIZE_4096B] = "4096B"; } void MlxlinkMaps::pwrStatusMapping() { _pwrStatus[PWR_STATUS_0] = "PCI power report could not be read"; _pwrStatus[PWR_STATUS_1] = "Sufficient power reported"; _pwrStatus[PWR_STATUS_2] = "Insufficient power reported"; } void MlxlinkMaps::portTypeMapping() { _portType[PORT_TYPE_EP_MPEIN] = "PCI Express Endpoint port"; _portType[PORT_TYPE_RC_MPEIN] = "Root Port of PCI Express Root Complex"; _portType[PORT_TYPE_UP_MPEIN] = "PCI Express Upstream port"; _portType[PORT_TYPE_DP_MPEIN] = "PCI Express Downstream port"; } void MlxlinkMaps::linkPeerMaxSpeedMapping() { _linkPeerMaxSpeed[LINK_PEER_MAX_SPEED_2_5G] = "2.5G - (Gen1)"; _linkPeerMaxSpeed[LINK_PEER_MAX_SPEED_5G] = "5G - (Gen2)"; _linkPeerMaxSpeed[LINK_PEER_MAX_SPEED_8G] = "8G - (Gen3)"; _linkPeerMaxSpeed[LINK_PEER_MAX_SPEED_16G] = "16G - (Gen4)"; _linkPeerMaxSpeed[LINK_PEER_MAX_SPEED_32G] = "32G (Gen5)"; } void MlxlinkMaps::portStateMapping() { _portState[PORT_STATE_0] = "Disable TS1"; _portState[PORT_STATE_1] = "Disable Ack"; _portState[PORT_STATE_2] = "Disable Wait"; _portState[PORT_STATE_3] = "RESET"; _portState[PORT_STATE_4] = "Loop Back Master Active"; _portState[PORT_STATE_5] = "Loop Back Master Exit"; _portState[PORT_STATE_6] = "Loop Back Slave Entry"; _portState[PORT_STATE_7] = "Loop Back Slave Align"; _portState[PORT_STATE_8] = "Loop Back Slave EB Threshold"; _portState[PORT_STATE_9] = "Loop Back Slave Active"; _portState[PORT_STATE_10] = "Loop Back Slave Idle"; _portState[PORT_STATE_11] = "Loop Back Slave Exit"; _portState[PORT_STATE_12] = "Detect Quiet"; _portState[PORT_STATE_13] = "Detect Active 1"; _portState[PORT_STATE_14] = "Detect Active 2"; _portState[PORT_STATE_15] = "Polling Active"; _portState[PORT_STATE_16] = "Polling Compliance Entry"; _portState[PORT_STATE_17] = "Polling Compliance"; _portState[PORT_STATE_18] = "Polling Compliance Exit"; _portState[PORT_STATE_19] = "Polling Config"; _portState[PORT_STATE_20] = "Config Width Start"; _portState[PORT_STATE_21] = "Config Width Ack"; _portState[PORT_STATE_22] = "Config Lane Wait"; _portState[PORT_STATE_23] = "Config Lane Ack"; _portState[PORT_STATE_24] = "Config Complete"; _portState[PORT_STATE_25] = "Config Idle"; _portState[PORT_STATE_26] = "L0s"; _portState[PORT_STATE_27] = "L1 ENTER"; _portState[PORT_STATE_28] = "L1 ACTIVE"; _portState[PORT_STATE_29] = "L1 EXIT"; _portState[PORT_STATE_30] = "Recover Receiver Lock"; _portState[PORT_STATE_31] = "Recover Speed"; _portState[PORT_STATE_32] = "Recover Config"; _portState[PORT_STATE_33] = "Recover Idle"; _portState[PORT_STATE_34] = "Recover ESpeed"; _portState[PORT_STATE_35] = "Recover Equalization Phase 0"; _portState[PORT_STATE_36] = "Recover Equalization Phase 1"; _portState[PORT_STATE_37] = "Recover Equalization Phase 2"; _portState[PORT_STATE_38] = "Recover Equalization Phase 3"; _portState[PORT_STATE_39] = "Recover Equalization Idle"; _portState[PORT_STATE_40] = "Force TS1"; _portState[PORT_STATE_41] = "Force TS2"; _portState[PORT_STATE_42] = "Force IDLE"; _portState[PORT_STATE_43] = "Force COMP"; _portState[PORT_STATE_44] = "Force Force disable"; } void MlxlinkMaps::cmisModuleStMapping() { _cimsModuleSt[CIMS_MODULE_ST_RESERVED] = "N/A"; _cimsModuleSt[CIMS_MODULE_ST_LOWPWR_STATE] = "LowPwr state"; _cimsModuleSt[CIMS_MODULE_ST_PWRUP_STATE] = "PwrUp state"; _cimsModuleSt[CIMS_MODULE_ST_READY_STATE] = "Ready state"; _cimsModuleSt[CIMS_MODULE_ST_PWRDN_STATE] = "PwrDn state"; _cimsModuleSt[CIMS_MODULE_ST_FAULT_STATE] = "Fault state"; } void MlxlinkMaps::tempFlagsMapping() { _tempFlags[TEMP_FLAGS_NO_ALARM_WARN] = "N/A"; _tempFlags[TEMP_FLAGS_HI_TEMP_ALARM] = "high_temp_alarm"; _tempFlags[TEMP_FLAGS_LO_TEMP_ALARM] = "low_temp_alarm"; _tempFlags[TEMP_FLAGS_HI_TEMP_WARNING] = "high_temp_warning"; _tempFlags[TEMP_FLAGS_LO_TEMP_WARNING] = "low_temp_warning"; } void MlxlinkMaps::vccFlagsMapping() { _vccFlags[VCC_FLAGS_NO_ALARM_WARN] = "N/A"; _vccFlags[VCC_FLAGS_HI_VCC_ALARM] = "high_vcc_alarm"; _vccFlags[VCC_FLAGS_LO_VCC_ALARM] = "low_vcc_alarm"; _vccFlags[VCC_FLAGS_HI_VCC_WARNING] = "high_vcc_warning"; _vccFlags[VCC_FLAGS_LO_VCC_WARNING] = "low_vcc_warning"; } void MlxlinkMaps::dataPathStateMapping() { _dataPathSt[DATA_PATH_STATE_RES] = "N/A"; _dataPathSt[DATA_PATH_STATE_DEACTIVATED] = "DPDeactivated"; _dataPathSt[DATA_PATH_STATE_INIT] = "DPInit"; _dataPathSt[DATA_PATH_STATE_DEINIT] = "DPDeinit"; _dataPathSt[DATA_PATH_STATE_ACTIVATED] = "DPActivated"; _dataPathSt[DATA_PATH_STATE_TX_TURN_ON] = "DPTxTurnOn"; _dataPathSt[DATA_PATH_STATE_TX_TURN_OFF] = "DPTxTurnOff"; _dataPathSt[DATA_PATH_STATE_INITALIZED] = "DPInitialized"; } void MlxlinkMaps::errorCodeResMapping() { _moduleOperSt[MODULE_OPER_STATUS_INIT] = "initializing"; _moduleOperSt[MODULE_OPER_STATUS_PLUGGED_EN] = "plugged_enable"; _moduleOperSt[MODULE_OPER_STATUS_UNPLUGGED] = "unplugged"; _moduleOperSt[MODULE_OPER_STATUS_PLUGGED_WITH_ERROR] = "module_plugged_with_error"; _moduleErrType[MODULE_ERROR_TYPE_POWER] = "Power_Budget_Exceeded"; _moduleErrType[MODULE_ERROR_TYPE_LONG_RANGE] = "Long_Range_for_non_MLNX_cable_or_module"; _moduleErrType[MODULE_ERROR_TYPE_BUS_STUCK] = "Bus_stuck - (I2C Data or clock shorted)"; _moduleErrType[MODULE_ERROR_TYPE_BAD] = "bad_or_unsupported_EEPROM"; _moduleErrType[MODULE_ERROR_TYPE_ENF] = "Enforce_part_number_list"; _moduleErrType[MODULE_ERROR_TYPE_UNSUPPORTED] = "unsupported_cable"; _moduleErrType[MODULE_ERROR_TYPE_HIGH_TEMP] = "unsupported_cable"; _moduleErrType[MODULE_ERROR_TYPE_BAD_CBL] = "bad_cable - (Module/Cable is shorted)"; _moduleErrType[MODULE_ERROR_TYPE_PMD] = "PMD_type_is_not_enabled"; _moduleErrType[MODULE_ERROR_TYPE_PCIE] = "pcie_system_power_slot_Exceeded"; _errorCodeRes[ERROR_CODE_RES_CONFIG_UNDEF] = "ConfigUndefined"; _errorCodeRes[ERROR_CODE_RES_CONFIG_SUCC] = "ConfigSuccess"; _errorCodeRes[ERROR_CODE_RES_CONFIG_REJ] = "ConfigRejected"; _errorCodeRes[ERROR_CODE_RES_CONFIG_REJ_INV_APP_SEI] = "ConfigRejectedInvalidAppSel"; _errorCodeRes[ERROR_CODE_RES_CONFIG_REJ_INV_DATA_PTH] = "ConfigRejectedInvalidDataPath"; _errorCodeRes[ERROR_CODE_RES_CONFIG_REJ_INV_SI] = "ConfigRejectedInvalidSI"; _errorCodeRes[ERROR_CODE_RES_CONFIG_REJ_LANES_IN_USE] = "ConfigRejectedLanesInUse"; _errorCodeRes[ERROR_CODE_RES_CONFIG_REJ_PART_DATA_PTH] = "ConfigRejectedPartialDataPath"; _errorCodeRes[ERROR_CODE_RES_CONFIG_IN_PROG] = "ConfigInProgress"; } void MlxlinkMaps::qsfpFarEndCableBreakoutMapping() { _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_CABLE_FAR_END_IS_UNSPECIFIED] = "Far end is unspecified"; _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_CABLE_SINGLE_FAR_END_4_CHANNELS_IMPLEM_OR_SEPAR_MOD_4_CHANNEL_CONN] = "Cable with single far-end with 4 channels implemented, or separable module with a 4-channel connector"; _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_CABLE_SINGLE_FAR_END_2_CHANNELS_IMPLEM_OR_SEPAR_MOD_2_CHANNEL_CONN] = "Cable with single far-end with 4 channels implemented, or separable module with a 4-channel connector"; _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_CABLE_SINGLE_FAR_END_1_CHANNELS_IMPLEM_OR_SEPAR_MOD_1_CHANNEL_CONN] = "Cable with single far-end with 1 channel implemented, or separable module with a 1-channel connector"; _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_4_FAR_ENDS_1_CHANNELS_IMPLEM_IN_EACH] = "4 far-ends with 1 channel implemented in each (i.e. 4x1 break out)"; _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_2_FAR_ENDS_2_CHANNELS_IMPLEM_IN_EACH] = "2 far-ends with 2 channels implemented in each (i.e. 2x2 break out)"; _qsfpFarEndCableBreakout[QSFP_CABLE_BREAKOUT_2_FAR_ENDS_1_CHANNELS_IMPLEM_IN_EACH] = "2 far-ends with 1 channel implemented in each (i.e. 2x1 break out)"; } void MlxlinkMaps::modulePrbsMapping() { _modulePrbsSt[PMPT_STATUS_NORMAL_MODE] = "Normal mission mode"; _modulePrbsSt[PMPT_STATUS_NOT_SUPPORTED] = "Module is disabled/not connected"; _modulePrbsSt[PMPT_STATUS_CONFIG_ERROR] = "unsupported configuration setting"; _modulePrbsSt[PMPT_STATUS_GEN_ONLY] = "PRBS Generator only"; _modulePrbsSt[PMPT_STATUS_CH_ONLY] = "PRBS Checker only"; _modulePrbsSt[PMPT_STATUS_BOTH] = "PRBS traffic both Checker and Generator"; _modulePrbsSwapAdmin[0] = "NO MSB <-> LSB swapping"; _modulePrbsSwapAdmin[1] = "MSB <-> LSB swapping"; _modulePrbsInvAdmin[0] = "NO PRBS inversion"; _modulePrbsInvAdmin[1] = "PRBS inversion"; _modulePrbsModulation[0] = "NRZ test pattern"; _modulePrbsModulation[1] = "PAM4 encoding"; _modulePrbsRateCapToStr[0] = "Non Selected"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_1G] = "1.25 Gb/s"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_SDR] = "2.5 Gb/s"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_40G_40G] = "10.3125 Gb/s"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_FDR] = "14.0625 Gb/s"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_EDR] = "25.78125 Gb/s"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_HDR] = "53.125 Gb/s"; _modulePrbsRateCapToStr[MODULE_PRBS_LANE_RATE_NDR] = "106.25 Gb/s"; _modulePrbsRateStrToCap["1G"] = MODULE_PRBS_LANE_RATE_1G; _modulePrbsRateStrToCap["1.25G"] = MODULE_PRBS_LANE_RATE_1G; _modulePrbsRateStrToCap["IB-SDR"] = MODULE_PRBS_LANE_RATE_SDR; _modulePrbsRateStrToCap["SDR"] = MODULE_PRBS_LANE_RATE_SDR; _modulePrbsRateStrToCap["2.5G"] = MODULE_PRBS_LANE_RATE_SDR; _modulePrbsRateStrToCap["10G"] = MODULE_PRBS_LANE_RATE_40G_40G; _modulePrbsRateStrToCap["40G"] = MODULE_PRBS_LANE_RATE_40G_40G; _modulePrbsRateStrToCap["10.3125G"] = MODULE_PRBS_LANE_RATE_40G_40G; _modulePrbsRateStrToCap["IB-FDR"] = MODULE_PRBS_LANE_RATE_FDR; _modulePrbsRateStrToCap["FDR"] = MODULE_PRBS_LANE_RATE_FDR; _modulePrbsRateStrToCap["14G"] = MODULE_PRBS_LANE_RATE_FDR; _modulePrbsRateStrToCap["14.0625G"] = MODULE_PRBS_LANE_RATE_FDR; _modulePrbsRateStrToCap["IB-EDR"] = MODULE_PRBS_LANE_RATE_EDR; _modulePrbsRateStrToCap["EDR"] = MODULE_PRBS_LANE_RATE_EDR; _modulePrbsRateStrToCap["25G"] = MODULE_PRBS_LANE_RATE_EDR; _modulePrbsRateStrToCap["25.78125G"] = MODULE_PRBS_LANE_RATE_EDR; _modulePrbsRateStrToCap["IB-HDR"] = MODULE_PRBS_LANE_RATE_HDR; _modulePrbsRateStrToCap["HDR"] = MODULE_PRBS_LANE_RATE_HDR; _modulePrbsRateStrToCap["50G"] = MODULE_PRBS_LANE_RATE_HDR; _modulePrbsRateStrToCap["53.125G"] = MODULE_PRBS_LANE_RATE_HDR; _modulePrbsRateStrToCap["IB-NDR"] = MODULE_PRBS_LANE_RATE_NDR; _modulePrbsRateStrToCap["NDR"] = MODULE_PRBS_LANE_RATE_NDR; _modulePrbsRateStrToCap["100G"] = MODULE_PRBS_LANE_RATE_NDR; _modulePrbsRateStrToCap["106.25G"] = MODULE_PRBS_LANE_RATE_NDR; _modulePrbsModeCapToStr[PRBS31_CAP] = "PRBS31"; _modulePrbsModeCapToStr[PRBS23A_CAP] = "PRBS23"; _modulePrbsModeCapToStr[PRBS7_CAP] = "PRBS7"; _modulePrbsModeCapToStr[PRBS11_CAP] = "PRBS11"; _modulePrbsModeCapToStr[PRBS9_CAP] = "PRBS9"; _modulePrbsModeCapToStr[PRBS13A_CAP] = "PRBS13"; _modulePrbsModeCapToStr[SSPR_CAP] = "SSPR"; _modulePrbsModeCapToStr[SSPRQ_CAP] = "SSPRQ"; _modulePrbsModeStrToCap["PRBS31"] = PRBS31_CAP; _modulePrbsModeStrToCap["PRBS23"] = PRBS23A_CAP; _modulePrbsModeStrToCap["PRBS7"] = PRBS7_CAP; _modulePrbsModeStrToCap["PRBS11"] = PRBS11_CAP; _modulePrbsModeStrToCap["PRBS9"] = PRBS9_CAP; _modulePrbsModeStrToCap["PRBS13"] = PRBS13A_CAP; _modulePrbsModeStrToCap["SSPR"] = SSPR_CAP; _modulePrbsModeStrToCap["SSPRQ"] = SSPRQ_CAP; _modulePMPDStatus[PMPD_STATUS_NOT_SUPPORTED] = "Not Supported"; _modulePMPDStatus[PMPD_STATUS_NORMAL_MODE] = "Normal Mode"; _modulePMPDStatus[PMPD_STATUS_NOT_LOCKED] = "Not Locked"; _modulePMPDStatus[PMPD_STATUS_LOCKED] = "Locked"; _moduleScopeToStr[MODULE_PRBS_ACCESS_CH] = "Checker"; _moduleScopeToStr[MODULE_PRBS_ACCESS_GEN] = "Generator"; _moduleScopeToStr[MODULE_PRBS_ACCESS_BOTH] = "Module"; _moduleScopeToStr[MODULE_PRBS_ACCESS_CH_GEN] = "Module"; } void MlxlinkMaps::qsfpComlianceMapping() { _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_Unspecified] = "Unspecified"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_40G_ACTIVE_CABLE_XLPPI] = "40G Active Cable (XLPPI)"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_40GBASE_LR4] = "40GBASE-LR4"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_40GBASE_SR4] = "40GBASE-SR4"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_40GBASE_CR4] = "40GBASE-CR4"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_10GBASE_SR] = "10GBASE-SR"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_10GBASE_LR] = "10GBASE-LR"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_10GBASE_LRM] = "10GBASE-LRM"; _cableComplianceQsfp[QSFP_ETHERNET_COMPLIANCE_CODE_EXT] = "Extended Specification Compliance valid"; } void MlxlinkMaps::sfpComplianceMapping() { _cableComplianceSfp[SFP_ETHERNET_COMPLIANCE_CODE_Unspecified] = "Unspecified"; _cableComplianceSfp[SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_SR] = "10G Base-SR"; _cableComplianceSfp[SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_LR] = "10G Base-LR"; _cableComplianceSfp[SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_LRM] = "10G Base-LRM"; _cableComplianceSfp[SFP_ETHERNET_COMPLIANCE_CODE_10G_BASE_ER] = "10G Base-ER"; } void MlxlinkMaps::techMapping() { _tech[TECH_NA] = "N/A"; _tech[TECH_40] = "40nm"; _tech[TECH_28] = "28nm"; _tech[TECH_16] = "16nm"; _tech[TECH_7] = "7nm"; _tech[TECH_5] = "5nm"; } void MlxlinkMaps::extComplianceMapping() { _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_Unspecified] = "Unspecified"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_AOC_FEC] = "100G AOC (Active Optical Cable) or 25GAUI C2M AOC with FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_SR4] = "100GBASE-SR4 or 25GBASE-SR"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_LR4] = "100GBASE-LR4 or 25GBASE-LR"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_ER4] = "100GBASE-ER4 or 25GBASE-ER"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_SR10] = "100GBASE-SR10"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_CWDM4] = "100G CWDM4"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_PSM4] = "100G PSM4 Parallel SMF"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_ACC_FEC] = "100G ACC (Active Copper Cable) or 25GAUI C2M ACC. with FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100GBASE_CR4] = "100GBASE-CR4, 25GBASE-CR CA-25G-L or 50GBASE-CR2 with RS (Clause91) FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_25GBASE_CR_CA_S] = "25GBASE-CR CA-25G-S or 50GBASE-CR2 with BASE-R (Clause 74 Fire code) FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_25GBASE_CR_CA_N] = "25GBASE-CR CA-25G-N or 50GBASE-CR2 with no FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_40GBASE_ER4] = "40GBASE-ER4"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_4_x_10GBASE_SR] = "4 x 10GBASE-SR"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_40G_PSM4] = "40G PSM4 Parallel SMF"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_G959_1_P1I1_2D1] = "G959.1 profile P1I1-2D1 (10709 MBd, 2km, 1310nm SM)"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_G959_1_P1S1_2D2] = "G959.1 profile P1S1-2D2 (10709 MBd, 40km, 1550nm SM)"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_G959_1_P1L1_2D2] = "G959.1 profile P1L1-2D2 (10709 MBd, 80km, 1550nm SM)"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_10GBASE_T] = "10GBASE-T with SFI electrical interface"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_CLR4] = "100G CLR4"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_AOC] = "100G AOC or 25GAUI C2M AOC. No FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIANCE_CODE_100G_ACC] = "100G ACC or 25GAUI C2M ACC. No FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100G_DWDM2] = "100GE-DWDM2 (DWDM transceiver using 2 wavelengths on a 1550 nm" " DWDM grid with a reach up to 80 km)"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100G_1550NM_WDM] = "100G 1550nm WDM (4 wavelengths)"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_10GBASE_T] = "10GBASE-T Short Reach (30 meters)"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_5GBASE_T] = "5GBASE-T"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_2_5GBASE_T] = "2.5GBASE-T"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_40G_SWDM4] = "40G SWDM4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100G_SWDM4] = "100G SWDM4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100G_PAM4] = "100G PAM4 BiDi"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_4WDM10_MSA] = "4WDM-10 MSA (10km version of 100G CWDM4 with same RS(528,514) " "FEC in host system)"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_4WDM20_MSA] = "4WDM-10 MSA (20km version of 100G CWDM4 with same RS(528,514) " "FEC in host system)"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_4WDM40_MSA] = "4WDM-10 MSA (40km version of 100G CWDM4 with same RS(528,514) " "FEC in host system)"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100GBASE_DR] = "100GBASE-DR, with CAUI-4 without FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100G_FR] = "100G-FR, with CAUI-4 without FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_100G_LR] = "100G-LR, with CAUI-4 without FEC"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_ACC_10_6] = "Active Copper Cable with 50GAUI, 100GAUI-2 or 200GAUI-4 C2M. " "Providing a worst BER of 10^(-6) or below"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_AOC_10_6] = "Active Optical Cable with 50GAUI, 100GAUI-2 or 200GAUI-4 C2M. " "Providing a worst BER of 10^(-6) or below"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_ACC_10_4] = "Active Copper Cable with 50GAUI, 100GAUI-2 or 200GAUI-4 C2M. " "Providing a worst BER of 2.6x10^(-4) for ACC, 10^(-5) for AUI, " "or below"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_AOC_10_4] = "Active Optical Cable with 50GAUI, 100GAUI-2 or 200GAUI-4 C2M. " "Providing a worst BER of 2.6x10^(-4) for AOC, 10^(-5) for AUI, " "or below"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_CR] = "50GBASE-CR, 100GBASE-CR2, or 200GBASE-CR4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_SR] = "50GBASE-SR, 100GBASE-SR2, or 200GBASE-SR4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_FR] = "50GBASE-FR or 200GBASE-DR4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_200GBASE_FR4] = "200GBASE-FR4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_200GBASE_1550NM_PSM4] = "200G 1550 nm PSM4"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_50GBASE_LR] = "50GBASE-LR"; _cableComplianceExt[EXT_ETHERNET_COMPLIABCE_CODE_200GBASE_LR4] = "200GBASE-LR4"; } void MlxlinkMaps::hostComplianceMapping() { _cmisHostCompliance[CMIS_COMPLIANCE_UNSPECIFIED] = "Unspecified"; _cmisHostCompliance[CMIS_COMPLIANCE_1000_BASE_CX] = "1000BASE-CX"; _cmisHostCompliance[CMIS_COMPLIANCE_XAUI] = "XAUI"; _cmisHostCompliance[CMIS_COMPLIANCE_XFI] = "XFI"; _cmisHostCompliance[CMIS_COMPLIANCE_SFI] = "SFI"; _cmisHostCompliance[CMIS_COMPLIANCE_25G_AUI] = "25GAUI"; _cmisHostCompliance[CMIS_COMPLIANCE_XL_AUI] = "XLAUI"; _cmisHostCompliance[CMIS_COMPLIANCE_XL_PPI] = "XLPPI"; _cmisHostCompliance[CMIS_COMPLIANCE_L_AUI2] = "LAUI-2"; _cmisHostCompliance[CMIS_COMPLIANCE_50G_AUI2] = "50GAUI-2"; _cmisHostCompliance[CMIS_COMPLIANCE_50G_AUI1] = "50GAUI-1"; _cmisHostCompliance[CMIS_COMPLIANCE_C_AUI4] = "CAUI-4"; _cmisHostCompliance[CMIS_COMPLIANCE_100G_AUI4] = "100GAUI-4"; _cmisHostCompliance[CMIS_COMPLIANCE_100G_AUI2] = "100GAUI-2"; _cmisHostCompliance[CMIS_COMPLIANCE_200G_AUI8] = "200GAUI-8"; _cmisHostCompliance[CMIS_COMPLIANCE_200G_AUI4] = "200GAUI-4"; _cmisHostCompliance[CMIS_COMPLIANCE_400G_AUI16] = "400GAUI-16"; _cmisHostCompliance[CMIS_COMPLIANCE_400G_AUI8] = "400GAUI-8"; _cmisHostCompliance[CMIS_COMPLIANCE_10G_BASE_CX4] = "10GBASE-CX4"; _cmisHostCompliance[CMIS_COMPLIANCE_25G_CR_L] = "25GBASE-CR CA-L"; _cmisHostCompliance[CMIS_COMPLIANCE_25G_CR_S] = "25GBASE-CR CA-S"; _cmisHostCompliance[CMIS_COMPLIANCE_25G_CR_N] = "25GBASE-CR CA-N"; _cmisHostCompliance[CMIS_COMPLIANCE_40G_BASE_CR4] = "40GBASE-CR4"; _cmisHostCompliance[CMIS_COMPLIANCE_50G_BASE_CR] = "50GBASE-CR"; _cmisHostCompliance[CMIS_COMPLIANCE_100G_BASE_CR10] = "100GBASE-CR10"; _cmisHostCompliance[CMIS_COMPLIANCE_100G_BASE_CR4] = "100GBASE-CR4"; _cmisHostCompliance[CMIS_COMPLIANCE_100G_BASE_CR2] = "100GBASE-CR2"; _cmisHostCompliance[CMIS_COMPLIANCE_200G_BASE_CR4] = "200GBASE-CR4"; _cmisHostCompliance[CMIS_COMPLIANCE_400G_CR8] = "400G CR8"; _cmisHostCompliance[CMIS_COMPLIANCE_1000_BASE_T] = "1000BASE-T"; _cmisHostCompliance[CMIS_COMPLIANCE_2_5G_BASE_T] = "2.5GBASE-T"; _cmisHostCompliance[CMIS_COMPLIANCE_5G_BASE_T] = "5GBASE-T"; _cmisHostCompliance[CMIS_COMPLIANCE_10G_BASE_T] = "10GBASE-dT"; _cmisHostCompliance[CMIS_COMPLIANCE_25_BASE_T] = "25GBASE-T"; _cmisHostCompliance[CMIS_COMPLIANCE_40_BASE_T] = "40GBASE-T"; _cmisHostCompliance[CMIS_COMPLIANCE_50_BASE_T] = "50GBASE-T"; _cmisHostCompliance[CMIS_COMPLIANCE_SDR] = "IB SDR"; _cmisHostCompliance[CMIS_COMPLIANCE_DDR] = "IB DDR"; _cmisHostCompliance[CMIS_COMPLIANCE_QDR] = "IB QDR"; _cmisHostCompliance[CMIS_COMPLIANCE_FDR] = "IB FDR"; _cmisHostCompliance[CMIS_COMPLIANCE_EDR] = "IB EDR"; _cmisHostCompliance[CMIS_COMPLIANCE_HDR] = "IB HDR"; _cmisHostCompliance[CMIS_COMPLIANCE_NDR] = "IB NDR"; _cmisHostCompliance[CMIS_COMPLIANCE_XDR] = "IB XDR"; } void MlxlinkMaps::mediaComplianceMapping() { _mmfCompliance[CMIS_COMPLIANCE_UNSPECIFIED] = "Unspecified"; _mmfCompliance[CMIS_COMPLIANCE_10G_BASE_SW] = "10GBASE-SW"; _mmfCompliance[CMIS_COMPLIANCE_10G_BASE_SR] = "10GBASE-SR"; _mmfCompliance[CMIS_COMPLIANCE_25G_BASE_SR] = "25GBASE-SR"; _mmfCompliance[CMIS_COMPLIANCE_40G_BASE_SR4] = "40GBASE-SR4"; _mmfCompliance[CMIS_COMPLIANCE_40G_SWDM4] = "40GE SWDM4"; _mmfCompliance[CMIS_COMPLIANCE_40G_BIDI] = "40GE BiDi"; _mmfCompliance[CMIS_COMPLIANCE_50G_BASE_SR] = "50GBASE-SR"; _mmfCompliance[CMIS_COMPLIANCE_100G_BASE_SR10] = "100GBASE-SR10"; _mmfCompliance[CMIS_COMPLIANCE_100G_BASE_SR4] = "100GBASE-SR4"; _mmfCompliance[CMIS_COMPLIANCE_100G_SWDM4] = "100GE SWDM4"; _mmfCompliance[CMIS_COMPLIANCE_100G_BIDI] = "100GE BiDi"; _mmfCompliance[CMIS_COMPLIANCE_100G_SR2] = "100GBASE-SR2"; _mmfCompliance[CMIS_COMPLIANCE_100G_SR] = "100G-SR"; _mmfCompliance[CMIS_COMPLIANCE_200G_BASE_SR4] = "200GBASE-SR4"; _mmfCompliance[CMIS_COMPLIANCE_400G_BASE_SR16] = "400GBASE-SR16"; _mmfCompliance[CMIS_COMPLIANCE_400G_BASE_SR8] = "400G-SR8"; _mmfCompliance[CMIS_COMPLIANCE_400G_SR4] = "400G-SR4"; _mmfCompliance[CMIS_COMPLIANCE_800G_SR8] = "800G-SR8"; _mmfCompliance[CMIS_COMPLIANCE_400G_BIDI] = "400GE BiDI"; _smfCompliance[CMIS_COMPLIANCE_UNSPECIFIED] = "Unspecified"; _smfCompliance[CMIS_COMPLIANCE_10G_BASE_LW] = "10GBASE-LW"; _smfCompliance[CMIS_COMPLIANCE_10G_BASE_EW] = "10GBASE-EW"; _smfCompliance[CMIS_COMPLIANCE_10G_ZW] = "10G-ZW"; _smfCompliance[CMIS_COMPLIANCE_10G_BASE_LR] = "10GBASE-LR"; _smfCompliance[CMIS_COMPLIANCE_10G_BASE_ER] = "10GBASE-ER"; _smfCompliance[CMIS_COMPLIANCE_10G_BASE_ZR] = "10G-ZR"; _smfCompliance[CMIS_COMPLIANCE_25G_BASE_LR] = "25GBASE-LR"; _smfCompliance[CMIS_COMPLIANCE_25G_BASE_ER] = "25GBASE-ER"; _smfCompliance[CMIS_COMPLIANCE_40G_BASE_LR4] = "40GBASE-LR4"; _smfCompliance[CMIS_COMPLIANCE_40G_BASE_FR] = "40GBASE-FR"; _smfCompliance[CMIS_COMPLIANCE_50G_BASE_FR] = "50GBASE-FR"; _smfCompliance[CMIS_COMPLIANCE_50G_BASE_LR] = "50GBASE-LR"; _smfCompliance[CMIS_COMPLIANCE_100G_BASE_LR4] = "100GBASE-LR4"; _smfCompliance[CMIS_COMPLIANCE_100G_BASE_ER4] = "100GBASE-ER4"; _smfCompliance[CMIS_COMPLIANCE_100G_PSM4] = "100G PSM4"; _smfCompliance[CMIS_COMPLIANCE_100G_CWDM4_OCP] = "100G CWDM4-OCP"; _smfCompliance[CMIS_COMPLIANCE_100G_CWDM4] = "100G CWDM4"; _smfCompliance[CMIS_COMPLIANCE_100G_4WDM_10] = "100G 4WDM-10"; _smfCompliance[CMIS_COMPLIANCE_100G_4WDM_20] = "100G 4WDM-20"; _smfCompliance[CMIS_COMPLIANCE_100G_4WDM_40] = "100G 4WDM-40"; _smfCompliance[CMIS_COMPLIANCE_100G_BASE_DR] = "100GBASE-DR"; _smfCompliance[CMIS_COMPLIANCE_100G_FR] = "100G-FR"; _smfCompliance[CMIS_COMPLIANCE_100G_LR] = "100G-LR"; _smfCompliance[CMIS_COMPLIANCE_200G_BASE_DR4] = "200GBASE-DR4"; _smfCompliance[CMIS_COMPLIANCE_200G_BASE_FR4] = "200GBASE-FR4"; _smfCompliance[CMIS_COMPLIANCE_200G_BASE_LR4] = "200GBASE-LR4"; _smfCompliance[CMIS_COMPLIANCE_400G_BASE_FR8] = "400GBASE-FR8"; _smfCompliance[CMIS_COMPLIANCE_400G_BASE_LR8] = "400GBASE-LR8"; _smfCompliance[CMIS_COMPLIANCE_400G_BASE_DR4] = "400GBASE-DR4"; _smfCompliance[CMIS_COMPLIANCE_400G_FR4] = "400G-FR4"; _smfCompliance[CMIS_COMPLIANCE_400G_LR4] = "400G-LR4"; _smfCompliance[CMIS_COMPLIANCE_10G_SR] = "10G-SR"; _smfCompliance[CMIS_COMPLIANCE_10G_LR] = "10G-LR"; _smfCompliance[CMIS_COMPLIANCE_25G_SR] = "25G-SR"; _smfCompliance[CMIS_COMPLIANCE_25G_LR] = "25G-LR"; _smfCompliance[CMIS_COMPLIANCE_10G_LR_BIDI] = "10G-LR-BiDi"; _smfCompliance[CMIS_COMPLIANCE_25G_LR_BIDI] = "25G-LR-BiDi"; } void MlxlinkMaps::activeComplianceMapping() { _activeCableCompliance[0] = "Undefined"; _activeCableCompliance[1] = "Active Cable assembly with BER < 10-12"; _activeCableCompliance[2] = "Active Cable assembly with BER < 5x10-5"; _activeCableCompliance[3] = "Active Cable assembly with BER < 2.6x10-4"; _activeCableCompliance[4] = "Active Cable assembly with BER < 10-6"; } void MlxlinkMaps::pcieEnumMapping() { _pcieErrType[PCIE_ERR_TYPE_ABORT] = PcieErrType{"ABORT", 0, 0, 0, false, false, false, false, false, false, ""}; _pcieErrType[PCIE_ERR_TYPE_BAD_DLLP_LCRC] = PcieErrType{ "BAD_DLLP_LCRC", 100000, 1, PCIE_MAX_DURATION_HW_COUNTERS, true, false, false, false, false, false, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_BAD_TLP_LCRC] = PcieErrType{ "BAD_TLP_LCRC", 100000, 1, PCIE_MAX_DURATION_HW_COUNTERS, true, true, false, false, false, false, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_BAD_TLP_ECRC] = PcieErrType{ "BAD_TLP_ECRC", 100000, 1, PCIE_MAX_DURATION_HW_COUNTERS, true, true, false, false, false, false, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_ERR_MSG] = PcieErrType{"ERR_MSG", 0, 1, PCIE_MAX_DURATION, true, true, false, false, false, false, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_MALFORMED_TLP] = PcieErrType{"MALFORMED_TLP", 0, 1, PCIE_MAX_DURATION, true, false, false, false, false, true, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_POISONED_TLP] = PcieErrType{"POISONED_TLP", 0, 1, PCIE_MAX_DURATION, true, false, false, false, false, true, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_UNEXPECTED_CPL] = PcieErrType{"UNEXPECTED_CPL", 0, 1, PCIE_MAX_DURATION, true, true, true, true, false, true, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_ACS_VIOLATION] = PcieErrType{"ACS_VIOLATION", 0, 1, PCIE_MAX_DURATION, true, false, false, false, false, false, "Packet"}; _pcieErrType[PCIE_ERR_TYPE_SURP_LINK_DOWN] = PcieErrType{"SURPRISE_LINK_DOWN", 100000, 1, PCIE_MAX_DURATION, true, true, false, false, false, false, "usec"}; _pcieErrType[PCIE_ERR_TYPE_RECEIVER_ERROR] = PcieErrType{"RECEIVER_ERROR", 100000, 0, PCIE_MAX_DURATION, true, false, false, false, false, false, "usec"}; } void MlxlinkMaps::initCableComplianceMapping() { qsfpComlianceMapping(); sfpComplianceMapping(); extComplianceMapping(); hostComplianceMapping(); mediaComplianceMapping(); activeComplianceMapping(); cmisIbComlianceMapping(); cimsCableBreakoutMapping(); qsfpFarEndCableBreakoutMapping(); rxTxCdrCapMapping(); cmisModuleStMapping(); rxPowerTypeMapping(); maxReadReqSizeMapping(); pwrStatusMapping(); portTypeMapping(); linkPeerMaxSpeedMapping(); portStateMapping(); tempFlagsMapping(); vccFlagsMapping(); dataPathStateMapping(); errorCodeResMapping(); techMapping(); modulePrbsMapping(); pcieEnumMapping(); } void MlxlinkMaps::initCableTechnologyMapping() { _cableTechnologyQsfp[TECHNOLOGY_850NM_VCSEL] = "850 nm VCSEL"; _cableTechnologyQsfp[TECHNOLOGY_1310NM_VCSEL] = "1310 nm VCSEL"; _cableTechnologyQsfp[TECHNOLOGY_1550NM_VCSEL] = "1550 nm VCSEL"; _cableTechnologyQsfp[TECHNOLOGY_1310NM_FP] = "1310 nm FP"; _cableTechnologyQsfp[TECHNOLOGY_1310NM_DFB] = "1310 nm DFB"; _cableTechnologyQsfp[TECHNOLOGY_1550NM_DFB] = "1550 nm DFB"; _cableTechnologyQsfp[TECHNOLOGY_1310NM_EML] = "1310 nm EML"; _cableTechnologyQsfp[TECHNOLOGY_1550NM_EML] = "1550 nm EML"; _cableTechnologyQsfp[TECHNOLOGY_OTHERS] = "Other / Undefined"; _cableTechnologyQsfp[TECHNOLOGY_1490NM_DFB] = "1490 nm DFB"; _cableTechnologyQsfp[TECHNOLOGY_COP_UNEQ] = "Copper cable unequalized"; _cableTechnologyQsfp[TECHNOLOGY_COP_PASV] = "Copper cable passive equalized"; _cableTechnologyQsfp[TECHNOLOGY_COP_NEAR_FAR_END] = "Copper cable, near and far end limiting active equalizers"; _cableTechnologyQsfp[TECHNOLOGY_COP_FAR_END] = "Copper cable, far end limiting active equalizers"; _cableTechnologyQsfp[TECHNOLOGY_COP_NEAR_END] = "Copper cable, near end limiting active equalizers"; _cableTechnologyQsfp[TECHNOLOGY_COP_LINEAR] = "Copper cable, linear active equalizers"; _cableTechnologySfp[0] = "N/A"; _cableTechnologySfp[4] = "Passive"; _cableTechnologySfp[8] = "Active"; } void MlxlinkMaps::initCablePowerClassMapping() { _sfpQsfpPowerClass[POWER_CLASS0] = "1.0 W max"; _sfpQsfpPowerClass[POWER_CLASS1] = "1.5 W max"; _sfpQsfpPowerClass[POWER_CLASS2] = "2.0 W max"; _sfpQsfpPowerClass[POWER_CLASS3] = "2.5 W max"; _sfpQsfpPowerClass[POWER_CLASS4] = "3.5 W max"; _sfpQsfpPowerClass[POWER_CLASS5] = "4.0 W max"; _sfpQsfpPowerClass[POWER_CLASS6] = "4.5 W max"; _sfpQsfpPowerClass[POWER_CLASS7] = "5.0 W max"; _sfpddPowerClass[POWER_CLASS0] = "0.5 W max"; _sfpddPowerClass[POWER_CLASS1] = "1.0 W max"; _sfpddPowerClass[POWER_CLASS2] = "1.5 W max"; _sfpddPowerClass[POWER_CLASS3] = "2.0 W max"; _sfpddPowerClass[POWER_CLASS4] = "3.5 W max"; _sfpddPowerClass[POWER_CLASS5] = "5.0 W max"; _sfpddPowerClass[POWER_CLASS8] = "> 5.0 W max"; _qsfpddOsfpPowerClass[POWER_CLASS1] = "1.5 W max"; _qsfpddOsfpPowerClass[POWER_CLASS2] = "3.5 W max"; _qsfpddOsfpPowerClass[POWER_CLASS3] = "7.0 W max"; _qsfpddOsfpPowerClass[POWER_CLASS4] = "8.0 W max"; _qsfpddOsfpPowerClass[POWER_CLASS5] = "10 W max"; _qsfpddOsfpPowerClass[POWER_CLASS6] = "12 W max"; _qsfpddOsfpPowerClass[POWER_CLASS7] = "14 W max"; _qsfpddOsfpPowerClass[POWER_CLASS8] = "> 14 W max"; _qsfpddPowerClassToValue[POWER_CLASS1] = 1.5; _qsfpddPowerClassToValue[POWER_CLASS2] = 3.5; _qsfpddPowerClassToValue[POWER_CLASS3] = 7.0; _qsfpddPowerClassToValue[POWER_CLASS4] = 8; _qsfpddPowerClassToValue[POWER_CLASS5] = 10; _qsfpddPowerClassToValue[POWER_CLASS6] = 12; _qsfpddPowerClassToValue[POWER_CLASS7] = 14; _sfpddPowerClassToValue[POWER_CLASS0] = 0.5; _sfpddPowerClassToValue[POWER_CLASS1] = 1.0; _sfpddPowerClassToValue[POWER_CLASS2] = 1.5; _sfpddPowerClassToValue[POWER_CLASS3] = 2.0; _sfpddPowerClassToValue[POWER_CLASS4] = 3.5; _sfpddPowerClassToValue[POWER_CLASS5] = 5.0; } MlxlinkMaps::MlxlinkMaps() { initPublicStrings(); initPortStateMapping(); initFecAndLoopbackMapping(); initPortSpeedMapping(); initPrbsMapping(); initPpbmcAndPepcMapping(); initLinkDownInfoMapping(); initSltpStatusMapping(); initCableComplianceMapping(); initCableTechnologyMapping(); initCablePowerClassMapping(); phyHstFsmHdrStateMapping(); } MlxlinkMaps::~MlxlinkMaps() {} mstflint-4.26.0/mlxlink/mlxlink_main.cpp0000644000175000017500000000416614522641732020556 0ustar tzafrirctzafrirc/* * Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #include "modules/mlxlink_ui.h" int main(int argc, char** argv) { int exitCode = 0; try { mft_signal_set_msg((char*)"Interrupted, Exiting..."); mft_signal_set_handling(1); MlxlinkUi mlxlink; exitCode = mlxlink.run(argc, argv); } catch (MlxRegException& exp) { MlxlinkRecord::printErr("-E- " + string(exp.what_s())); exitCode = 1; } catch (AdbException& exp) { MlxlinkRecord::printErr("-E- " + string(exp.what_s())); exitCode = 1; } catch (const std::exception& exp) { MlxlinkRecord::printErr("-E- General Exception: " + string(exp.what())); exitCode = 1; } return exitCode; } mstflint-4.26.0/mlxlink/Makefile.am0000644000175000017500000000525614522641732017425 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = modules AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul \ -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxlink \ -I$(top_srcdir)/mlxreg AM_CPPFLAGS += $(JSON_CFLAGS) AM_CXXFLAGS = -Wall -W -DMST_UL -g -MP -MD -pipe bin_PROGRAMS = mstlink mstlink_CXXFLAGS = -DEXTERNAL mstlink_SOURCES = mlxlink_main.cpp mstlink_DEPENDENCIES = \ $(top_builddir)/mlxlink/modules/libmodules_lib.la \ $(top_builddir)/mlxlink/modules/printutil/libprint_util_lib.la \ $(top_builddir)/mlxreg/mlxreg_lib/libmstreg_lib.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/common/libcommon.la \ $(JSON_LIBS) mstlink_LDADD = $(mstlink_DEPENDENCIES) -llzma ${LDL} -lexpat mstlink_LDFLAGS = -static mstflint-4.26.0/mlxlink/Makefile.in0000644000175000017500000007260114522641737017441 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mstlink$(EXEEXT) subdir = mlxlink DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_mstlink_OBJECTS = mstlink-mlxlink_main.$(OBJEXT) mstlink_OBJECTS = $(am_mstlink_OBJECTS) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = \ $(top_builddir)/mlxlink/modules/libmodules_lib.la \ $(top_builddir)/mlxlink/modules/printutil/libprint_util_lib.la \ $(top_builddir)/mlxreg/mlxreg_lib/libmstreg_lib.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/common/libcommon.la $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = mstlink_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(mstlink_CXXFLAGS) \ $(CXXFLAGS) $(mstlink_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(mstlink_SOURCES) DIST_SOURCES = $(mstlink_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = modules AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) \ -I$(top_srcdir)/${MTCR_CONF_DIR} \ -I$(top_srcdir)/include/mtcr_ul -I$(top_srcdir)/mft_utils \ -I$(top_srcdir)/mlxlink -I$(top_srcdir)/mlxreg $(JSON_CFLAGS) AM_CXXFLAGS = -Wall -W -DMST_UL -g -MP -MD -pipe mstlink_CXXFLAGS = -DEXTERNAL mstlink_SOURCES = mlxlink_main.cpp mstlink_DEPENDENCIES = \ $(top_builddir)/mlxlink/modules/libmodules_lib.la \ $(top_builddir)/mlxlink/modules/printutil/libprint_util_lib.la \ $(top_builddir)/mlxreg/mlxreg_lib/libmstreg_lib.la \ $(top_builddir)/cmdparser/libcmdparser.a \ $(top_builddir)/mft_utils/libmftutils.la \ $(top_builddir)/${MTCR_CONF_DIR}/libmtcr_ul.la \ $(top_builddir)/adb_parser/libadb_parser.la \ $(top_builddir)/cmdif/libcmdif.la \ $(top_builddir)/dev_mgt/libdev_mgt.la \ $(top_builddir)/reg_access/libreg_access.la \ $(top_builddir)/tools_layouts/libtools_layouts.la \ $(top_builddir)/xz_utils/libxz_utils.la \ $(top_builddir)/ext_libs/minixz/libminixz.la \ $(top_builddir)/common/libcommon.la \ $(JSON_LIBS) mstlink_LDADD = $(mstlink_DEPENDENCIES) -llzma ${LDL} -lexpat mstlink_LDFLAGS = -static all: all-recursive .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxlink/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxlink/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list mstlink$(EXEEXT): $(mstlink_OBJECTS) $(mstlink_DEPENDENCIES) $(EXTRA_mstlink_DEPENDENCIES) @rm -f mstlink$(EXEEXT) $(AM_V_CXXLD)$(mstlink_LINK) $(mstlink_OBJECTS) $(mstlink_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mstlink-mlxlink_main.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mstlink-mlxlink_main.o: mlxlink_main.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstlink_CXXFLAGS) $(CXXFLAGS) -MT mstlink-mlxlink_main.o -MD -MP -MF $(DEPDIR)/mstlink-mlxlink_main.Tpo -c -o mstlink-mlxlink_main.o `test -f 'mlxlink_main.cpp' || echo '$(srcdir)/'`mlxlink_main.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstlink-mlxlink_main.Tpo $(DEPDIR)/mstlink-mlxlink_main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxlink_main.cpp' object='mstlink-mlxlink_main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstlink_CXXFLAGS) $(CXXFLAGS) -c -o mstlink-mlxlink_main.o `test -f 'mlxlink_main.cpp' || echo '$(srcdir)/'`mlxlink_main.cpp mstlink-mlxlink_main.obj: mlxlink_main.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstlink_CXXFLAGS) $(CXXFLAGS) -MT mstlink-mlxlink_main.obj -MD -MP -MF $(DEPDIR)/mstlink-mlxlink_main.Tpo -c -o mstlink-mlxlink_main.obj `if test -f 'mlxlink_main.cpp'; then $(CYGPATH_W) 'mlxlink_main.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxlink_main.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mstlink-mlxlink_main.Tpo $(DEPDIR)/mstlink-mlxlink_main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='mlxlink_main.cpp' object='mstlink-mlxlink_main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mstlink_CXXFLAGS) $(CXXFLAGS) -c -o mstlink-mlxlink_main.obj `if test -f 'mlxlink_main.cpp'; then $(CYGPATH_W) 'mlxlink_main.cpp'; else $(CYGPATH_W) '$(srcdir)/mlxlink_main.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-binPROGRAMS clean-generic clean-libtool \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxsign_lib/0000755000175000017500000000000014522641740016211 5ustar tzafrirctzafrircmstflint-4.26.0/mlxsign_lib/mlxsign_openssl_engine.cpp0000644000175000017500000001764014522641732023477 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2021 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #if !defined(NO_OPEN_SSL) && !defined(NO_DYNAMIC_ENGINE) #include "mlxsign_openssl_engine.h" #include #include #include #include #include #include #include #include #include #include #include #include using namespace MlxSign; string to_lowercase_copy(string str) { // temporary instead of mft_utils due to linkage issues for (string::size_type i = 0; i < str.length(); ++i) { str[i] = std::tolower(str[i]); } return str; } OpensslEngineException::OpensslEngineException(const string& exceptionMsg, ErrorCode errorCode) : msg(exceptionMsg), errorCode(errorCode) { } OpensslEngineException::OpensslEngineException(const char* exceptionMsg, ErrorCode errorCode) : msg(exceptionMsg), errorCode(errorCode) { } const string OpensslEngineException::getErrorString() const throw() { return msg; } const char* OpensslEngineException::what() const throw() { return msg.c_str(); } ErrorCode OpensslEngineException::getErrorCode() { return errorCode; } OpensslEngineSigner::OpensslEngineSigner(const string& engineName, const string& keyIdentifier) : mdCtx(NULL), key(NULL), engineName(engineName), keyIdentifier(keyIdentifier) { SSL_library_init(); SSL_load_error_strings(); ENGINE_load_builtin_engines(); ENGINE_load_dynamic(); ENGINE_register_all_complete(); this->engineName = to_lowercase_copy(engineName); } OpensslEngineSigner::~OpensslEngineSigner() { if (mdCtx != NULL) { EVP_MD_CTX_destroy(mdCtx); } if (key != NULL) { EVP_PKEY_free(key); } if (engine != NULL) { ENGINE_finish(engine); ENGINE_free(engine); } CONF_modules_unload(1); #if OPENSSL_VERSION_NUMBER < 0x10100000L ENGINE_cleanup(); EVP_cleanup(); ERR_free_strings(); #endif CRYPTO_cleanup_all_ex_data(); #if OPENSSL_VERSION_NUMBER >= 0x10100000L OPENSSL_thread_stop(); OPENSSL_cleanup(); #endif } string OpensslEngineSigner::getOpenSSLError() const { BIO* bio = BIO_new(BIO_s_mem()); ERR_print_errors(bio); char* buf = NULL; size_t len = BIO_get_mem_data(bio, &buf); string errorString(buf, len); BIO_free(bio); return errorString; } void OpensslEngineSigner::initOpenSSLEngine() { engine = ENGINE_by_id(engineName.c_str()); if (engine == NULL) { throw OpensslEngineException("Invalid engine: " + engineName, MlxSign::MLX_SIGN_RSA_KEY_INIT_ENGINE_OPENSSL_ERROR); } if (!ENGINE_init(engine)) { throw OpensslEngineException("Failed to init engine: " + engineName, MlxSign::MLX_SIGN_RSA_KEY_INIT_ENGINE_OPENSSL_ERROR); } if (!ENGINE_set_default(engine, ENGINE_METHOD_ALL)) { throw OpensslEngineException("Failed to use engine: " + engineName, MlxSign::MLX_SIGN_RSA_KEY_INIT_ENGINE_OPENSSL_ERROR); } } void OpensslEngineSigner::loadPrivateKey() { key = ENGINE_load_private_key(engine, keyIdentifier.c_str(), NULL, NULL); if (!key) { throw OpensslEngineException("Failed to load key from engine with key identifier:" + keyIdentifier, MlxSign::MLX_SIGN_RSA_KEY_ILLEGAL_OPENSSL_URI); } privateKeySize = EVP_PKEY_size(key); } int OpensslEngineSigner::getPrivateKeySize() { return privateKeySize; } void OpensslEngineSigner::createContext() { mdCtx = EVP_MD_CTX_create(); if (!mdCtx) { throw OpensslEngineException("Failed to create conxtext:" + getOpenSSLError(), MLX_SIGN_RSA_KEY_DIGEST_INIT_OPENSSL_ERROR); } } void OpensslEngineSigner::digest(const vector& msg, vector& signed_msg) const { int rc = EVP_DigestSignInit(mdCtx, NULL, EVP_sha512(), NULL, (EVP_PKEY*)key); if (rc != 1) { throw OpensslEngineException("Failed to init digest:" + getOpenSSLError(), MLX_SIGN_RSA_KEY_DIGEST_INIT_OPENSSL_ERROR); } /* Call update with the message */ rc = EVP_DigestSignUpdate(mdCtx, msg.data(), msg.size()); if (rc != 1) { throw OpensslEngineException("EVP_DigestSignUpdate failed: " + getOpenSSLError(), MlxSign::MLX_SIGN_RSA_KEY_DIGEST_UPDATE_OPENSSL_ERROR); } size_t slen = 0; /* Finalise the DigestSign operation */ /* First call EVP_DigestSignFinal with a NULL sig parameter to obtain the length of the * signature. Length is returned in slen */ rc = EVP_DigestSignFinal(mdCtx, NULL, &slen); if (rc != 1) { throw OpensslEngineException("Digest failed: " + getOpenSSLError(), MlxSign::MLX_SIGN_RSA_KEY_DIGEST_FINAL_OPENSSL_ERROR); } /* Allocate memory for the signature based on size in slen */ unsigned char* sig; if (!(sig = (unsigned char*)OPENSSL_malloc(sizeof(unsigned char) * (slen)))) { throw OpensslEngineException("Digest failed: " + getOpenSSLError(), MlxSign::MLX_SIGN_RSA_KEY_MEMORY_ALLOC_OPENSSL_ERROR); } signed_msg.resize(slen); /* Obtain the signature */ rc = EVP_DigestSignFinal(mdCtx, sig, &slen); if (rc != 1) { OPENSSL_free(sig); throw OpensslEngineException("Digest failed: " + getOpenSSLError(), MlxSign::MLX_SIGN_RSA_KEY_DIGEST_FINAL_OPENSSL_ERROR); } for (unsigned int i = 0; i < slen; i++) { signed_msg[i] = sig[i]; } OPENSSL_free(sig); } ErrorCode OpensslEngineSigner::init() { MlxSign::ErrorCode errorCode = MlxSign::MLX_SIGN_SUCCESS; try { initOpenSSLEngine(); loadPrivateKey(); createContext(); } catch (OpensslEngineException& ex) { cout << ex.getErrorString() << endl; errorCode = ex.getErrorCode(); } return errorCode; } ErrorCode OpensslEngineSigner::sign(const vector& msg, vector& signed_msg) const { MlxSign::ErrorCode errorCode = MlxSign::MLX_SIGN_SUCCESS; try { digest(msg, signed_msg); } catch (OpensslEngineException& ex) { cout << ex.getErrorString() << endl; errorCode = ex.getErrorCode(); } return errorCode; } #endif // ENABLE_OPENSSL mstflint-4.26.0/mlxsign_lib/mlxsign_signer_interface.h0000644000175000017500000000570514522641732023442 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef USER_MLXSIGN_LIB_MLXSIGN_SIGNER_INTERFACE_H_ #define USER_MLXSIGN_LIB_MLXSIGN_SIGNER_INTERFACE_H_ #include "mlxsign_lib.h" #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) && !defined(NO_DYNAMIC_ENGINE) #include "mlxsign_openssl_engine.h" #endif using namespace std; namespace MlxSign { /* * Class Signer: interface for various types of signers */ class Signer { public: virtual ~Signer(){}; virtual MlxSign::ErrorCode Init() = 0; virtual MlxSign::ErrorCode Sign(const vector& msg, vector& signature) const = 0; }; #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) class MlxSignRSAViaOpenssl : public Signer { public: MlxSignRSAViaOpenssl(string privPemFileStr); MlxSign::ErrorCode Init() override; MlxSign::ErrorCode Sign(const vector& msg, vector& signature) const override; MlxSign::SHAType GetShaType() { return _shaType; }; private: string _privPemFileStr; MlxSign::SHAType _shaType; MlxSignRSA _rsa; }; #if !defined(NO_DYNAMIC_ENGINE) class MlxSignRSAViaHSM : public Signer { public: MlxSignRSAViaHSM(string opensslEngine, string opensslKeyID); MlxSign::ErrorCode Init() override; MlxSign::ErrorCode Sign(const vector& msg, vector& signature) const override; private: MlxSign::OpensslEngineSigner _engineSigner; string _opensslEngine; }; #endif // #if !defined(NO_DYNAMIC_ENGINE) #endif // #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) } // namespace MlxSign #endif /* USER_MLXSIGN_LIB_MLXSIGN_SIGNER_INTERFACE_H_ */mstflint-4.26.0/mlxsign_lib/mlxsign_openssl_engine.h0000644000175000017500000000570414522641732023142 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2021 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXSIGN_OPENSSL_ENGINE_H_ #define MLXSIGN_OPENSSL_ENGINE_H_ #include "mlxsign_com_def.h" #include #include #include #include #include #include using namespace std; #define KEY_SIZE_256 256 #define KEY_SIZE_512 512 namespace MlxSign { class OpensslEngineException : public exception { public: OpensslEngineException(const string& exceptionMsg, ErrorCode errorCode); OpensslEngineException(const char* exceptionMsg, ErrorCode errorCode); virtual const string getErrorString() const throw(); virtual const char* what() const throw(); virtual ~OpensslEngineException() throw(){}; ErrorCode getErrorCode(); private: string msg; ErrorCode errorCode; OpensslEngineException(); }; class OpensslEngineSigner { public: OpensslEngineSigner(const string& engineName, const string& keyIdentifier); virtual ~OpensslEngineSigner(); ErrorCode init(); ErrorCode sign(const vector& msg, vector& signed_msg) const; int getPrivateKeySize(); private: EVP_MD_CTX* mdCtx; EVP_PKEY* key; int privateKeySize; ENGINE* engine; string engineName; string keyIdentifier; string getOpenSSLError() const; void initOpenSSLEngine(); void loadPrivateKey(); void createContext(); void digest(const vector& msg, vector& signed_msg) const; }; } // namespace MlxSign #endif // MLXSIGN_OPENSSL_ENGINE_H_ mstflint-4.26.0/mlxsign_lib/mlxsign_lib.cpp0000644000175000017500000002505114522641732021230 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef NO_OPEN_SSL #include #include #include #include #include #include #include #include #include #include "mlxsign_lib.h" using namespace std; using namespace MlxSign; #define CHECK_RC(rc, expRc, errCode) \ do \ { \ if ((rc) != (expRc)) \ { \ return (errCode); \ } \ } while (0) MlxSignSHA::MlxSignSHA(u_int32_t digestLength) { _digestLength = digestLength; } int MlxSignSHA::getDigest(std::string& digest) { int rc = 0; std::vector digestVec; char* digestStr = new char[_digestLength * 2 + 1]; digestStr = (char*)memset(digestStr, 0, (_digestLength * 2 + 1)); rc = getDigest(digestVec); if (rc != MlxSign::MLX_SIGN_SUCCESS) { delete[] digestStr; return rc; } // transform to string for (u_int64_t i = 0; i < digestVec.size(); i++) { snprintf(digestStr + i * 2, 3, "%02x", digestVec[i]); } digest = digestStr; delete[] digestStr; return MlxSign::MLX_SIGN_SUCCESS; } void MlxSignSHA::reset() { _buff.resize(0); } MlxSignSHA& operator<<(MlxSignSHA& lhs, u_int8_t data) { lhs._buff.push_back(data); return lhs; } MlxSignSHA& operator<<(MlxSignSHA& lhs, const std::vector& buff) { for (std::vector::const_iterator it = buff.begin(); it != buff.end(); it++) { lhs._buff.push_back(*it); } return lhs; } /* * MlxSignSHA256 * */ MlxSignSHA256::MlxSignSHA256() : MlxSignSHA(SHA256_DIGEST_LENGTH) {} int MlxSignSHA256::getDigest(std::vector& digest) { int rc; SHA256_CTX ctx; digest.resize(_digestLength); memset(&digest[0], 0, digest.size()); rc = SHA256_Init(&ctx); CHECK_RC(rc, 1, MlxSign::MLX_SIGN_SHA_INIT_ERROR); rc = SHA256_Update(&ctx, (void*)(&_buff[0]), _buff.size()); CHECK_RC(rc, 1, MlxSign::MLX_SIGN_SHA_CALCULATION_ERROR); rc = SHA256_Final(&digest[0], &ctx); CHECK_RC(rc, 1, MlxSign::MLX_SIGN_SHA_CALCULATION_ERROR); return MlxSign::MLX_SIGN_SUCCESS; } /* * MlxSignSHA512 * */ MlxSignSHA512::MlxSignSHA512() : MlxSignSHA(SHA512_DIGEST_LENGTH) {} int MlxSignSHA512::getDigest(std::vector& digest) { int rc; SHA512_CTX ctx; digest.resize(_digestLength); memset(&digest[0], 0, digest.size()); rc = SHA512_Init(&ctx); CHECK_RC(rc, 1, MlxSign::MLX_SIGN_SHA_INIT_ERROR); rc = SHA512_Update(&ctx, (void*)(&_buff[0]), _buff.size()); CHECK_RC(rc, 1, MlxSign::MLX_SIGN_SHA_CALCULATION_ERROR); rc = SHA512_Final(&digest[0], &ctx); CHECK_RC(rc, 1, MlxSign::MLX_SIGN_SHA_CALCULATION_ERROR); return MlxSign::MLX_SIGN_SUCCESS; } MlxSignRSA::MlxSignRSA() : _privCtx(NULL), _pubCtx(NULL) {} MlxSignRSA::~MlxSignRSA() { if (_privCtx) { RSA_free((RSA*)_privCtx); } if (_pubCtx) { RSA_free((RSA*)_pubCtx); } } int MlxSignRSA::setPrivKeyFromFile(const std::string& pemKeyFilePath) { return createRSAFromPEMFileName(pemKeyFilePath, true); } int MlxSignRSA::setPrivKey(const std::string& pemKey) { return createRSAFromPEMKeyString(pemKey, true); } int MlxSignRSA::getPrivKeyLength() const { if (_privCtx) { return RSA_size((RSA*)_privCtx); } else { return 0x0; } } int MlxSignRSA::setPubKeyFromFile(const std::string& pemKeyFilePath) { return createRSAFromPEMFileName(pemKeyFilePath, false); } int MlxSignRSA::setPubKey(const std::string& pemKey) { return createRSAFromPEMKeyString(pemKey, false); } int MlxSignRSA::sign(MlxSign::SHAType shaType, const std::vector& msg, std::vector& encryptedMsg) const { unsigned int maxMsgSize, signLen; std::vector encryptedMsgTemp; if (!_privCtx) { return MlxSign::MLX_SIGN_RSA_NO_PRIV_KEY_ERROR; } // size check maxMsgSize = RSA_size((RSA*)_privCtx); if (msg.size() > maxMsgSize) { return MlxSign::MLX_SIGN_RSA_MESSAGE_TOO_LONG_ERROR; } // do the job encryptedMsgTemp.resize(maxMsgSize, 0); int type; if (shaType == MlxSign::SHA256) { type = NID_sha256; } else if (shaType == MlxSign::SHA512) { type = NID_sha512; } else { return MlxSign::MLX_SIGN_UNSUPPORTED_SHA_TYPE; } if (!RSA_sign(type, msg.data(), msg.size(), encryptedMsgTemp.data(), &signLen, (RSA*)_privCtx)) { return MlxSign::MLX_SIGN_RSA_CALCULATION_ERROR; } encryptedMsg.resize(signLen, 0); memcpy(encryptedMsg.data(), encryptedMsgTemp.data(), signLen); return MlxSign::MLX_SIGN_SUCCESS; } int MlxSignRSA::verify(MlxSign::SHAType shaType, const std::vector& digest, const std::vector& sig, bool& result) { if (!_pubCtx) { return MlxSign::MLX_SIGN_RSA_NO_PUB_KEY_ERROR; } int type; if (shaType == MlxSign::SHA256) { type = NID_sha256; } else if (shaType == MlxSign::SHA512) { type = NID_sha512; } else { return MlxSign::MLX_SIGN_UNSUPPORTED_SHA_TYPE; } result = RSA_verify(type, digest.data(), digest.size(), sig.data(), sig.size(), (RSA*)_pubCtx); return MlxSign::MLX_SIGN_SUCCESS; } std::string MlxSignRSA::str(const std::vector& msg) { char* digestStr = NULL; try { digestStr = new char[msg.size() * 2 + 1]; memset(digestStr, 0, sizeof(char) * (msg.size() * 2 + 1)); } catch (...) { return ""; } for (u_int64_t i = 0; i < msg.size(); i++) { snprintf(digestStr + i * 2, 3, "%02x", msg[i]); } std::string result = digestStr; delete[] digestStr; return result; } #define REPLACE_RSA_CTX(ctx, newCtx) \ do \ { \ if ((newCtx)) \ { \ if ((ctx)) \ { \ RSA_free((RSA*)(ctx)); \ } \ (ctx) = (void*)(newCtx); \ } \ } while (0) int MlxSignRSA::createRSAFromPEMFileName(const std::string& fname, bool isPrivateKey) { FILE* fp = fopen(fname.c_str(), "rb"); RSA* rsa = NULL; if (!fp) { return MlxSign::MLX_SIGN_RSA_FILE_OPEN_ERROR; } if (isPrivateKey) { rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL); REPLACE_RSA_CTX(_privCtx, rsa); } else { rsa = PEM_read_RSA_PUBKEY(fp, NULL, NULL, NULL); REPLACE_RSA_CTX(_pubCtx, rsa); } fclose(fp); if (rsa == NULL) { return MlxSign::MLX_SIGN_RSA_INIT_CTX_ERROR; } return MlxSign::MLX_SIGN_SUCCESS; } int MlxSignRSA::createRSAFromPEMKeyString(const std::string& pemKey, bool isPrivateKey) { RSA* rsa = NULL; BIO* keybio; // TODO: check if this may leak keybio = BIO_new_mem_buf((void*)pemKey.c_str(), -1); if (keybio == NULL) { return MlxSign::MLX_SIGN_RSA_KEY_BIO_ERROR; } if (isPrivateKey) { rsa = PEM_read_bio_RSAPrivateKey(keybio, &rsa, NULL, NULL); REPLACE_RSA_CTX(_privCtx, rsa); } else { rsa = PEM_read_bio_RSA_PUBKEY(keybio, &rsa, NULL, NULL); REPLACE_RSA_CTX(_pubCtx, rsa); } BIO_free_all(keybio); if (rsa == NULL) { return MlxSign::MLX_SIGN_RSA_INIT_CTX_ERROR; } return MlxSign::MLX_SIGN_SUCCESS; } MlxSignHMAC::MlxSignHMAC() { #if OPENSSL_VERSION_NUMBER < 0x10100000L ctx = malloc(sizeof(HMAC_CTX)); HMAC_CTX_init((HMAC_CTX*)ctx); #else ctx = HMAC_CTX_new(); #endif } int MlxSignHMAC::setKey(const std::vector& key) { if (HMAC_Init_ex((HMAC_CTX*)ctx, (char*)key.data(), key.size(), EVP_sha512(), NULL) == 0) { return MlxSign::MLX_SIGN_HMAC_ERROR; } return MlxSign::MLX_SIGN_SUCCESS; } MlxSignHMAC& operator<<(MlxSignHMAC& lhs, const std::vector& buff) { for (std::vector::const_iterator it = buff.begin(); it != buff.end(); it++) { lhs.data.push_back(*it); } return lhs; } int MlxSignHMAC::getDigest(std::vector& digest) { unsigned int len = 64; // 512 bits if (HMAC_Update((HMAC_CTX*)ctx, (unsigned char*)data.data(), data.size()) == 0) { return MlxSign::MLX_SIGN_HMAC_ERROR; } digest.resize(len); // TODO why len is passed by reference? // TODO HMAC_Final must return 1 on success and 0 on failure but that is not happening! HMAC_Final((HMAC_CTX*)ctx, digest.data(), &len); return MlxSign::MLX_SIGN_SUCCESS; } MlxSignHMAC::~MlxSignHMAC() { #if OPENSSL_VERSION_NUMBER < 0x10100000L HMAC_CTX_cleanup((HMAC_CTX*)ctx); free(ctx); #else HMAC_CTX_free((HMAC_CTX*)ctx); #endif } #endif // ENABLE_OPENSSL mstflint-4.26.0/mlxsign_lib/mlxsign_com_def.h0000644000175000017500000000502114522641732021516 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2021 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef MLXSIGN_ERRORS_H_ #define MLXSIGN_ERRORS_H_ namespace MlxSign { enum SHAType { SHA256, SHA512 }; enum ErrorCode { MLX_SIGN_SUCCESS = 0, MLX_SIGN_SHA_INIT_ERROR, MLX_SIGN_SHA_CALCULATION_ERROR, MLX_SIGN_ERROR, MLX_SIGN_RSA_PEM_FILE_ERROR = 0x100, MLX_SIGN_RSA_MESSAGE_TOO_LONG_ERROR, MLX_SIGN_RSA_FILE_OPEN_ERROR, MLX_SIGN_RSA_FILE_READ_ERROR, MLX_SIGN_RSA_INIT_CTX_ERROR, MLX_SIGN_RSA_CALCULATION_ERROR, MLX_SIGN_RSA_NO_PRIV_KEY_ERROR, MLX_SIGN_RSA_NO_PUB_KEY_ERROR, MLX_SIGN_RSA_KEY_BIO_ERROR, MLX_SIGN_UNSUPPORTED_SHA_TYPE, MLX_SIGN_RSA_KEY_ILLEGAL_OPENSSL_URI, MLX_SIGN_RSA_KEY_ILLEGAL_OPENSSL_ENGINE, MLX_SIGN_RSA_KEY_NOT_FOUND_OPENSSL_ENGINE, MLX_SIGN_RSA_KEY_INIT_ENGINE_OPENSSL_ERROR, MLX_SIGN_RSA_KEY_DIGEST_INIT_OPENSSL_ERROR, MLX_SIGN_RSA_KEY_DIGEST_UPDATE_OPENSSL_ERROR, MLX_SIGN_RSA_KEY_DIGEST_FINAL_OPENSSL_ERROR, MLX_SIGN_RSA_KEY_MEMORY_ALLOC_OPENSSL_ERROR, MLX_SIGN_HMAC_ERROR, }; } // namespace MlxSign #endif // MLXSIGN_ERRORS_H_mstflint-4.26.0/mlxsign_lib/Makefile.am0000644000175000017500000000402414522641732020246 0ustar tzafrirctzafrirc# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) AM_CXXFLAGS += -DTOOLS_CRYPTO_KEY='$(TOOLS_CRYPTO_KEY)' -DTOOLS_CRYPTO_IV='$(TOOLS_CRYPTO_IV)' noinst_LTLIBRARIES = libmlxsign.la libmlxsign_la_SOURCES = mlxsign_lib.cpp mlxsign_lib.h mlxsign_com_def.h \ mlxsign_openssl_engine.h mlxsign_openssl_engine.cpp \ mlxsign_signer_interface.h mlxsign_signer_interface.cpp if ENABLE_OPENSSL else AM_CXXFLAGS += -DNO_OPEN_SSL endif mstflint-4.26.0/mlxsign_lib/mlxsign_lib.h0000644000175000017500000001034014522641732020670 0ustar tzafrirctzafrirc/* * Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef USER_MLXSIGN_LIB_MLXSIGN_LIB_H_ #define USER_MLXSIGN_LIB_MLXSIGN_LIB_H_ #include #include #include #include #include "mlxsign_com_def.h" using namespace std; /* * Class MlxSignSHA: used for calculating SHA digest on a data buffer. * Usage: * use operator << to fill the class's internal buffer. * call getDigest() method to get the digest in either string or raw buffer format. * Example: * string digest; * vector dataVec; * // fill dataVec with data..... * MlxSignSHA sha256; * sha256 << dataVec; * sha256.getDigest(result); * cout << result; */ class MlxSignSHA { public: MlxSignSHA(u_int32_t); virtual ~MlxSignSHA(){}; friend MlxSignSHA& operator<<(MlxSignSHA& lhs, u_int8_t data); friend MlxSignSHA& operator<<(MlxSignSHA& lhs, const std::vector& buff); int getDigest(std::string& digest); virtual int getDigest(std::vector& digest) = 0; void reset(); protected: u_int32_t _digestLength; std::vector _buff; }; class MlxSignSHA256 : public MlxSignSHA { public: MlxSignSHA256(); int getDigest(std::vector& digest); }; class MlxSignSHA512 : public MlxSignSHA { public: MlxSignSHA512(); int getDigest(std::vector& digest); }; /* * Class MlxSignRSA: used for signing messages using RSA algorithm * Usage: * set private and/or public keys * sign your message. */ class MlxSignRSA { public: ~MlxSignRSA(); MlxSignRSA(); int setPrivKeyFromFile(const std::string& pemKeyFilePath); int setPrivKey(const std::string& pemKey); int getPrivKeyLength() const; int setPubKeyFromFile(const std::string& pemKeyFilePath); int setPubKey(const std::string& pemKey); int sign(MlxSign::SHAType shaType, const std::vector& msg, std::vector& encryptedMsg) const; int verify(MlxSign::SHAType shaType, const std::vector& sha256Dgst, const std::vector& sig, bool& result); std::string str(const std::vector& msg); private: int createRSAFromPEMFileName(const std::string& fname, bool isPrivateKey); int createRSAFromPEMKeyString(const std::string& pemKey, bool isPrivateKey); void* _privCtx; void* _pubCtx; }; class MlxSignHMAC { public: MlxSignHMAC(); int setKey(const std::vector& key); // int update(const std::vector& buff); friend MlxSignHMAC& operator<<(MlxSignHMAC& lhs, const std::vector& buff); int getDigest(std::vector& digest); ~MlxSignHMAC(); private: void* ctx; std::vector data; }; #endif /* USER_MLXSIGN_LIB_MLXSIGN_LIB_H_ */ mstflint-4.26.0/mlxsign_lib/Makefile.in0000644000175000017500000005165214522641740020267 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @ENABLE_OPENSSL_FALSE@am__append_1 = -DNO_OPEN_SSL subdir = mlxsign_lib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmlxsign_la_LIBADD = am_libmlxsign_la_OBJECTS = mlxsign_lib.lo mlxsign_openssl_engine.lo \ mlxsign_signer_interface.lo libmlxsign_la_OBJECTS = $(am_libmlxsign_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmlxsign_la_SOURCES) DIST_SOURCES = $(libmlxsign_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(srcdir) \ -I$(top_srcdir) \ -I$(top_srcdir)/common -I$(top_builddir)/common AM_CXXFLAGS = -Wall -W -g -MP -MD -pipe $(COMPILER_FPIC) \ -DTOOLS_CRYPTO_KEY='$(TOOLS_CRYPTO_KEY)' \ -DTOOLS_CRYPTO_IV='$(TOOLS_CRYPTO_IV)' $(am__append_1) noinst_LTLIBRARIES = libmlxsign.la libmlxsign_la_SOURCES = mlxsign_lib.cpp mlxsign_lib.h mlxsign_com_def.h \ mlxsign_openssl_engine.h mlxsign_openssl_engine.cpp \ mlxsign_signer_interface.h mlxsign_signer_interface.cpp all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign mlxsign_lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign mlxsign_lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmlxsign.la: $(libmlxsign_la_OBJECTS) $(libmlxsign_la_DEPENDENCIES) $(EXTRA_libmlxsign_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmlxsign_la_OBJECTS) $(libmlxsign_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxsign_lib.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxsign_openssl_engine.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mlxsign_signer_interface.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/mlxsign_lib/mlxsign_signer_interface.cpp0000644000175000017500000000756414522641732024002 0ustar tzafrirctzafrirc/* * Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mlxsign_signer_interface.h" #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL) using namespace MlxSign; MlxSignRSAViaOpenssl::MlxSignRSAViaOpenssl(string privPemFileStr) : _privPemFileStr(privPemFileStr), _shaType(MlxSign::SHA512) { } ErrorCode MlxSignRSAViaOpenssl::Init() { int keyLength = 0; int rc = _rsa.setPrivKeyFromFile(_privPemFileStr); if (rc) { printf("-E- Failed to set private key from file (rc = 0x%x)\n", rc); return MLX_SIGN_ERROR; } keyLength = _rsa.getPrivKeyLength(); if (keyLength == 0x100) { _shaType = MlxSign::SHA256; } else if (keyLength == 0x200) { _shaType = MlxSign::SHA512; } else { printf("Unexpected length of key(%d bytes)", keyLength); return MLX_SIGN_ERROR; } return MLX_SIGN_SUCCESS; } ErrorCode MlxSignRSAViaOpenssl::Sign(const vector& data, vector& signature) const { vector sha; int rc; if (_shaType == MlxSign::SHA256) { MlxSignSHA256 mlxSignSHA; mlxSignSHA << data; mlxSignSHA.getDigest(sha); } else { MlxSignSHA512 mlxSignSHA; mlxSignSHA << data; mlxSignSHA.getDigest(sha); } rc = _rsa.sign(_shaType, sha, signature); if (rc) { printf("-E- Failed to encrypt the SHA (rc = 0x%x)\n", rc); return MLX_SIGN_ERROR; } return MLX_SIGN_SUCCESS; } #if !defined(NO_DYNAMIC_ENGINE) MlxSignRSAViaHSM::MlxSignRSAViaHSM(string opensslEngine, string opensslKeyID) : _engineSigner(opensslEngine, opensslKeyID), _opensslEngine(opensslEngine) { } ErrorCode MlxSignRSAViaHSM::Init() { int rc = _engineSigner.init(); if (rc) { printf("-E- Failed to initialize %s engine (rc = 0x%x)\n", _opensslEngine.c_str(), rc); return MLX_SIGN_ERROR; } int keySize = _engineSigner.getPrivateKeySize(); if (keySize != KEY_SIZE_512) { printf("-E- The HSM key has to be 4096 bit!\n"); return MLX_SIGN_ERROR; } return MLX_SIGN_SUCCESS; } ErrorCode MlxSignRSAViaHSM::Sign(const vector& data, vector& signature) const { int rc = _engineSigner.sign(data, signature); if (rc) { printf("-E- Failed to create secured FW signature (rc = 0x%x)", rc); return MLX_SIGN_ERROR; } return MLX_SIGN_SUCCESS; } #endif // #if !defined(NO_DYNAMIC_ENGINE) #endif // #if !defined(UEFI_BUILD) && !defined(NO_OPEN_SSL)mstflint-4.26.0/ext_libs/0000755000175000017500000000000014522641737015521 5ustar tzafrirctzafrircmstflint-4.26.0/ext_libs/json/0000755000175000017500000000000014522641737016472 5ustar tzafrirctzafrircmstflint-4.26.0/ext_libs/json/json_valueiterator.inl0000644000175000017500000001213614522641732023113 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE // included by json_value.cpp namespace Json { // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class ValueIteratorBase // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// ValueIteratorBase::ValueIteratorBase() : current_() {} ValueIteratorBase::ValueIteratorBase( const Value::ObjectValues::iterator& current) : current_(current), isNull_(false) {} Value& ValueIteratorBase::deref() { return current_->second; } const Value& ValueIteratorBase::deref() const { return current_->second; } void ValueIteratorBase::increment() { ++current_; } void ValueIteratorBase::decrement() { --current_; } ValueIteratorBase::difference_type ValueIteratorBase::computeDistance(const SelfType& other) const { // Iterator for null value are initialized using the default // constructor, which initialize current_ to the default // std::map::iterator. As begin() and end() are two instance // of the default std::map::iterator, they can not be compared. // To allow this, we handle this comparison specifically. if (isNull_ && other.isNull_) { return 0; } // Usage of std::distance is not portable (does not compile with Sun Studio 12 // RogueWave STL, // which is the one used by default). // Using a portable hand-made version for non random iterator instead: // return difference_type( std::distance( current_, other.current_ ) ); difference_type myDistance = 0; for (Value::ObjectValues::iterator it = current_; it != other.current_; ++it) { ++myDistance; } return myDistance; } bool ValueIteratorBase::isEqual(const SelfType& other) const { if (isNull_) { return other.isNull_; } return current_ == other.current_; } void ValueIteratorBase::copy(const SelfType& other) { current_ = other.current_; isNull_ = other.isNull_; } Value ValueIteratorBase::key() const { const Value::CZString czstring = (*current_).first; if (czstring.data()) { if (czstring.isStaticString()) return Value(StaticString(czstring.data())); return Value(czstring.data(), czstring.data() + czstring.length()); } return Value(czstring.index()); } UInt ValueIteratorBase::index() const { const Value::CZString czstring = (*current_).first; if (!czstring.data()) return czstring.index(); return Value::UInt(-1); } String ValueIteratorBase::name() const { char const* keey; char const* end; keey = memberName(&end); if (!keey) return String(); return String(keey, end); } char const* ValueIteratorBase::memberName() const { const char* cname = (*current_).first.data(); return cname ? cname : ""; } char const* ValueIteratorBase::memberName(char const** end) const { const char* cname = (*current_).first.data(); if (!cname) { *end = nullptr; return nullptr; } *end = cname + (*current_).first.length(); return cname; } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class ValueConstIterator // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// ValueConstIterator::ValueConstIterator() = default; ValueConstIterator::ValueConstIterator( const Value::ObjectValues::iterator& current) : ValueIteratorBase(current) {} ValueConstIterator::ValueConstIterator(ValueIterator const& other) : ValueIteratorBase(other) {} ValueConstIterator& ValueConstIterator:: operator=(const ValueIteratorBase& other) { copy(other); return *this; } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class ValueIterator // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// ValueIterator::ValueIterator() = default; ValueIterator::ValueIterator(const Value::ObjectValues::iterator& current) : ValueIteratorBase(current) {} ValueIterator::ValueIterator(const ValueConstIterator& other) : ValueIteratorBase(other) { throwRuntimeError("ConstIterator to Iterator should never be allowed."); } ValueIterator::ValueIterator(const ValueIterator& other) = default; ValueIterator& ValueIterator::operator=(const SelfType& other) { copy(other); return *this; } } // namespace Json mstflint-4.26.0/ext_libs/json/json_value.cpp0000644000175000017500000013605514522641732021350 0ustar tzafrirctzafrirc// Copyright 2011 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #if !defined(JSON_IS_AMALGAMATION) #include #include #include #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include #include #include #include // Provide implementation equivalent of std::snprintf for older _MSC compilers #if defined(_MSC_VER) && _MSC_VER < 1900 #include static int msvc_pre1900_c99_vsnprintf(char* outBuf, size_t size, const char* format, va_list ap) { int count = -1; if (size != 0) count = _vsnprintf_s(outBuf, size, _TRUNCATE, format, ap); if (count == -1) count = _vscprintf(format, ap); return count; } int JSON_API msvc_pre1900_c99_snprintf(char* outBuf, size_t size, const char* format, ...) { va_list ap; va_start(ap, format); const int count = msvc_pre1900_c99_vsnprintf(outBuf, size, format, ap); va_end(ap); return count; } #endif // Disable warning C4702 : unreachable code #if defined(_MSC_VER) #pragma warning(disable : 4702) #endif #define JSON_ASSERT_UNREACHABLE assert(false) namespace Json { template static std::unique_ptr cloneUnique(const std::unique_ptr& p) { std::unique_ptr r; if (p) { r = std::unique_ptr(new T(*p)); } return r; } // This is a walkaround to avoid the static initialization of Value::null. // kNull must be word-aligned to avoid crashing on ARM. We use an alignment of // 8 (instead of 4) as a bit of future-proofing. #if defined(__ARMEL__) #define ALIGNAS(byte_alignment) __attribute__((aligned(byte_alignment))) #else #define ALIGNAS(byte_alignment) #endif // static Value const& Value::nullSingleton() { static Value const nullStatic; return nullStatic; } #if JSON_USE_NULLREF // for backwards compatibility, we'll leave these global references around, but // DO NOT use them in JSONCPP library code any more! // static Value const& Value::null = Value::nullSingleton(); // static Value const& Value::nullRef = Value::nullSingleton(); #endif #if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) template static inline bool InRange(double d, T min, U max) { // The casts can lose precision, but we are looking only for // an approximate range. Might fail on edge cases though. ~cdunn return d >= static_cast(min) && d <= static_cast(max); } #else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) static inline double integerToDouble(Json::UInt64 value) { return static_cast(Int64(value / 2)) * 2.0 + static_cast(Int64(value & 1)); } template static inline double integerToDouble(T value) { return static_cast(value); } template static inline bool InRange(double d, T min, U max) { return d >= integerToDouble(min) && d <= integerToDouble(max); } #endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) /** Duplicates the specified string value. * @param value Pointer to the string to duplicate. Must be zero-terminated if * length is "unknown". * @param length Length of the value. if equals to unknown, then it will be * computed using strlen(value). * @return Pointer on the duplicate instance of string. */ static inline char* duplicateStringValue(const char* value, size_t length) { // Avoid an integer overflow in the call to malloc below by limiting length // to a sane value. if (length >= static_cast(Value::maxInt)) length = Value::maxInt - 1; auto newString = static_cast(malloc(length + 1)); if (newString == nullptr) { throwRuntimeError("in Json::Value::duplicateStringValue(): " "Failed to allocate string value buffer"); } memcpy(newString, value, length); newString[length] = 0; return newString; } /* Record the length as a prefix. */ static inline char* duplicateAndPrefixStringValue(const char* value, unsigned int length) { // Avoid an integer overflow in the call to malloc below by limiting length // to a sane value. JSON_ASSERT_MESSAGE(length <= static_cast(Value::maxInt) - sizeof(unsigned) - 1U, "in Json::Value::duplicateAndPrefixStringValue(): " "length too big for prefixing"); size_t actualLength = sizeof(length) + length + 1; auto newString = static_cast(malloc(actualLength)); if (newString == nullptr) { throwRuntimeError("in Json::Value::duplicateAndPrefixStringValue(): " "Failed to allocate string value buffer"); } *reinterpret_cast(newString) = length; memcpy(newString + sizeof(unsigned), value, length); newString[actualLength - 1U] = 0; // to avoid buffer over-run accidents by users later return newString; } inline static void decodePrefixedString(bool isPrefixed, char const* prefixed, unsigned* length, char const** value) { if (!isPrefixed) { *length = static_cast(strlen(prefixed)); *value = prefixed; } else { *length = *reinterpret_cast(prefixed); *value = prefixed + sizeof(unsigned); } } /** Free the string duplicated by * duplicateStringValue()/duplicateAndPrefixStringValue(). */ #if JSONCPP_USING_SECURE_MEMORY static inline void releasePrefixedStringValue(char* value) { unsigned length = 0; char const* valueDecoded; decodePrefixedString(true, value, &length, &valueDecoded); size_t const size = sizeof(unsigned) + length + 1U; memset(value, 0, size); free(value); } static inline void releaseStringValue(char* value, unsigned length) { // length==0 => we allocated the strings memory size_t size = (length == 0) ? strlen(value) : length; memset(value, 0, size); free(value); } #else // !JSONCPP_USING_SECURE_MEMORY static inline void releasePrefixedStringValue(char* value) { free(value); } static inline void releaseStringValue(char* value, unsigned) { free(value); } #endif // JSONCPP_USING_SECURE_MEMORY } // namespace Json // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ValueInternals... // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// #if !defined(JSON_IS_AMALGAMATION) #include "json_valueiterator.inl" #endif // if !defined(JSON_IS_AMALGAMATION) namespace Json { #if JSON_USE_EXCEPTION Exception::Exception(String msg) : msg_(std::move(msg)) {} Exception::~Exception() noexcept = default; char const* Exception::what() const noexcept { return msg_.c_str(); } RuntimeError::RuntimeError(String const& msg) : Exception(msg) {} LogicError::LogicError(String const& msg) : Exception(msg) {} JSONCPP_NORETURN void throwRuntimeError(String const& msg) { throw RuntimeError(msg); } JSONCPP_NORETURN void throwLogicError(String const& msg) { throw LogicError(msg); } #else // !JSON_USE_EXCEPTION JSONCPP_NORETURN void throwRuntimeError(String const& msg) { std::cerr << msg << std::endl; abort(); } JSONCPP_NORETURN void throwLogicError(String const& msg) { std::cerr << msg << std::endl; abort(); } #endif // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class Value::CZString // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // Notes: policy_ indicates if the string was allocated when // a string is stored. Value::CZString::CZString(ArrayIndex index) : cstr_(nullptr), index_(index) {} Value::CZString::CZString(char const* str, unsigned length, DuplicationPolicy allocate) : cstr_(str) { // allocate != duplicate storage_.policy_ = allocate & 0x3; storage_.length_ = length & 0x3FFFFFFF; } Value::CZString::CZString(const CZString& other) { cstr_ = (other.storage_.policy_ != noDuplication && other.cstr_ != nullptr ? duplicateStringValue(other.cstr_, other.storage_.length_) : other.cstr_); storage_.policy_ = static_cast( other.cstr_ ? (static_cast(other.storage_.policy_) == noDuplication ? noDuplication : duplicate) : static_cast(other.storage_.policy_)) & 3U; storage_.length_ = other.storage_.length_; } Value::CZString::CZString(CZString&& other) noexcept : cstr_(other.cstr_), index_(other.index_) { other.cstr_ = nullptr; } Value::CZString::~CZString() { if (cstr_ && storage_.policy_ == duplicate) { releaseStringValue(const_cast(cstr_), storage_.length_ + 1U); // +1 for null terminating // character for sake of // completeness but not actually // necessary } } void Value::CZString::swap(CZString& other) { std::swap(cstr_, other.cstr_); std::swap(index_, other.index_); } Value::CZString& Value::CZString::operator=(const CZString& other) { cstr_ = other.cstr_; index_ = other.index_; return *this; } Value::CZString& Value::CZString::operator=(CZString&& other) noexcept { cstr_ = other.cstr_; index_ = other.index_; other.cstr_ = nullptr; return *this; } bool Value::CZString::operator<(const CZString& other) const { if (!cstr_) return index_ < other.index_; // return strcmp(cstr_, other.cstr_) < 0; // Assume both are strings. unsigned this_len = this->storage_.length_; unsigned other_len = other.storage_.length_; unsigned min_len = std::min(this_len, other_len); JSON_ASSERT(this->cstr_ && other.cstr_); int comp = memcmp(this->cstr_, other.cstr_, min_len); if (comp < 0) return true; if (comp > 0) return false; return (this_len < other_len); } bool Value::CZString::operator==(const CZString& other) const { if (!cstr_) return index_ == other.index_; // return strcmp(cstr_, other.cstr_) == 0; // Assume both are strings. unsigned this_len = this->storage_.length_; unsigned other_len = other.storage_.length_; if (this_len != other_len) return false; JSON_ASSERT(this->cstr_ && other.cstr_); int comp = memcmp(this->cstr_, other.cstr_, this_len); return comp == 0; } ArrayIndex Value::CZString::index() const { return index_; } // const char* Value::CZString::c_str() const { return cstr_; } const char* Value::CZString::data() const { return cstr_; } unsigned Value::CZString::length() const { return storage_.length_; } bool Value::CZString::isStaticString() const { return storage_.policy_ == noDuplication; } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class Value::Value // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// /*! \internal Default constructor initialization must be equivalent to: * memset( this, 0, sizeof(Value) ) * This optimization is used in ValueInternalMap fast allocator. */ Value::Value(ValueType type) { static char const emptyString[] = ""; initBasic(type); switch (type) { case nullValue: break; case intValue: case uintValue: value_.int_ = 0; break; case realValue: value_.real_ = 0.0; break; case stringValue: // allocated_ == false, so this is safe. value_.string_ = const_cast(static_cast(emptyString)); break; case arrayValue: case objectValue: value_.map_ = new ObjectValues(); break; case booleanValue: value_.bool_ = false; break; default: JSON_ASSERT_UNREACHABLE; } } Value::Value(Int value) { initBasic(intValue); value_.int_ = value; } Value::Value(UInt value) { initBasic(uintValue); value_.uint_ = value; } #if defined(JSON_HAS_INT64) Value::Value(Int64 value) { initBasic(intValue); value_.int_ = value; } Value::Value(UInt64 value) { initBasic(uintValue); value_.uint_ = value; } #endif // defined(JSON_HAS_INT64) Value::Value(double value) { initBasic(realValue); value_.real_ = value; } Value::Value(const char* value) { initBasic(stringValue, true); JSON_ASSERT_MESSAGE(value != nullptr, "Null Value Passed to Value Constructor"); value_.string_ = duplicateAndPrefixStringValue( value, static_cast(strlen(value))); } Value::Value(const char* begin, const char* end) { initBasic(stringValue, true); value_.string_ = duplicateAndPrefixStringValue(begin, static_cast(end - begin)); } Value::Value(const String& value) { initBasic(stringValue, true); value_.string_ = duplicateAndPrefixStringValue( value.data(), static_cast(value.length())); } Value::Value(const StaticString& value) { initBasic(stringValue); value_.string_ = const_cast(value.c_str()); } Value::Value(bool value) { initBasic(booleanValue); value_.bool_ = value; } Value::Value(const Value& other) { dupPayload(other); dupMeta(other); } Value::Value(Value&& other) noexcept { initBasic(nullValue); swap(other); } Value::~Value() { releasePayload(); value_.uint_ = 0; } Value& Value::operator=(const Value& other) { Value(other).swap(*this); return *this; } Value& Value::operator=(Value&& other) noexcept { other.swap(*this); return *this; } void Value::swapPayload(Value& other) { std::swap(bits_, other.bits_); std::swap(value_, other.value_); } void Value::copyPayload(const Value& other) { releasePayload(); dupPayload(other); } void Value::swap(Value& other) { swapPayload(other); std::swap(comments_, other.comments_); std::swap(start_, other.start_); std::swap(limit_, other.limit_); } void Value::copy(const Value& other) { copyPayload(other); dupMeta(other); } ValueType Value::type() const { return static_cast(bits_.value_type_); } int Value::compare(const Value& other) const { if (*this < other) return -1; if (*this > other) return 1; return 0; } bool Value::operator<(const Value& other) const { int typeDelta = type() - other.type(); if (typeDelta) return typeDelta < 0; switch (type()) { case nullValue: return false; case intValue: return value_.int_ < other.value_.int_; case uintValue: return value_.uint_ < other.value_.uint_; case realValue: return value_.real_ < other.value_.real_; case booleanValue: return value_.bool_ < other.value_.bool_; case stringValue: { if ((value_.string_ == nullptr) || (other.value_.string_ == nullptr)) { return other.value_.string_ != nullptr; } unsigned this_len; unsigned other_len; char const* this_str; char const* other_str; decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, &this_str); decodePrefixedString(other.isAllocated(), other.value_.string_, &other_len, &other_str); unsigned min_len = std::min(this_len, other_len); JSON_ASSERT(this_str && other_str); int comp = memcmp(this_str, other_str, min_len); if (comp < 0) return true; if (comp > 0) return false; return (this_len < other_len); } case arrayValue: case objectValue: { auto thisSize = value_.map_->size(); auto otherSize = other.value_.map_->size(); if (thisSize != otherSize) return thisSize < otherSize; return (*value_.map_) < (*other.value_.map_); } default: JSON_ASSERT_UNREACHABLE; } return false; // unreachable } bool Value::operator<=(const Value& other) const { return !(other < *this); } bool Value::operator>=(const Value& other) const { return !(*this < other); } bool Value::operator>(const Value& other) const { return other < *this; } bool Value::operator==(const Value& other) const { if (type() != other.type()) return false; switch (type()) { case nullValue: return true; case intValue: return value_.int_ == other.value_.int_; case uintValue: return value_.uint_ == other.value_.uint_; case realValue: return value_.real_ == other.value_.real_; case booleanValue: return value_.bool_ == other.value_.bool_; case stringValue: { if ((value_.string_ == nullptr) || (other.value_.string_ == nullptr)) { return (value_.string_ == other.value_.string_); } unsigned this_len; unsigned other_len; char const* this_str; char const* other_str; decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, &this_str); decodePrefixedString(other.isAllocated(), other.value_.string_, &other_len, &other_str); if (this_len != other_len) return false; JSON_ASSERT(this_str && other_str); int comp = memcmp(this_str, other_str, this_len); return comp == 0; } case arrayValue: case objectValue: return value_.map_->size() == other.value_.map_->size() && (*value_.map_) == (*other.value_.map_); default: JSON_ASSERT_UNREACHABLE; } return false; // unreachable } bool Value::operator!=(const Value& other) const { return !(*this == other); } const char* Value::asCString() const { JSON_ASSERT_MESSAGE(type() == stringValue, "in Json::Value::asCString(): requires stringValue"); if (value_.string_ == nullptr) return nullptr; unsigned this_len; char const* this_str; decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, &this_str); return this_str; } #if JSONCPP_USING_SECURE_MEMORY unsigned Value::getCStringLength() const { JSON_ASSERT_MESSAGE(type() == stringValue, "in Json::Value::asCString(): requires stringValue"); if (value_.string_ == 0) return 0; unsigned this_len; char const* this_str; decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, &this_str); return this_len; } #endif bool Value::getString(char const** begin, char const** end) const { if (type() != stringValue) return false; if (value_.string_ == nullptr) return false; unsigned length; decodePrefixedString(this->isAllocated(), this->value_.string_, &length, begin); *end = *begin + length; return true; } String Value::asString() const { switch (type()) { case nullValue: return ""; case stringValue: { if (value_.string_ == nullptr) return ""; unsigned this_len; char const* this_str; decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, &this_str); return String(this_str, this_len); } case booleanValue: return value_.bool_ ? "true" : "false"; case intValue: return valueToString(value_.int_); case uintValue: return valueToString(value_.uint_); case realValue: return valueToString(value_.real_); default: JSON_FAIL_MESSAGE("Type is not convertible to string"); } } Value::Int Value::asInt() const { switch (type()) { case intValue: JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range"); return Int(value_.int_); case uintValue: JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range"); return Int(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range"); return Int(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to Int."); } Value::UInt Value::asUInt() const { switch (type()) { case intValue: JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range"); return UInt(value_.int_); case uintValue: JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range"); return UInt(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt), "double out of UInt range"); return UInt(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to UInt."); } #if defined(JSON_HAS_INT64) Value::Int64 Value::asInt64() const { switch (type()) { case intValue: return Int64(value_.int_); case uintValue: JSON_ASSERT_MESSAGE(isInt64(), "LargestUInt out of Int64 range"); return Int64(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64), "double out of Int64 range"); return Int64(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to Int64."); } Value::UInt64 Value::asUInt64() const { switch (type()) { case intValue: JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); return UInt64(value_.int_); case uintValue: return UInt64(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt64), "double out of UInt64 range"); return UInt64(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to UInt64."); } #endif // if defined(JSON_HAS_INT64) LargestInt Value::asLargestInt() const { #if defined(JSON_NO_INT64) return asInt(); #else return asInt64(); #endif } LargestUInt Value::asLargestUInt() const { #if defined(JSON_NO_INT64) return asUInt(); #else return asUInt64(); #endif } double Value::asDouble() const { switch (type()) { case intValue: return static_cast(value_.int_); case uintValue: #if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) return static_cast(value_.uint_); #else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) return integerToDouble(value_.uint_); #endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) case realValue: return value_.real_; case nullValue: return 0.0; case booleanValue: return value_.bool_ ? 1.0 : 0.0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to double."); } float Value::asFloat() const { switch (type()) { case intValue: return static_cast(value_.int_); case uintValue: #if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) return static_cast(value_.uint_); #else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) // This can fail (silently?) if the value is bigger than MAX_FLOAT. return static_cast(integerToDouble(value_.uint_)); #endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) case realValue: return static_cast(value_.real_); case nullValue: return 0.0; case booleanValue: return value_.bool_ ? 1.0F : 0.0F; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to float."); } bool Value::asBool() const { switch (type()) { case booleanValue: return value_.bool_; case nullValue: return false; case intValue: return value_.int_ != 0; case uintValue: return value_.uint_ != 0; case realValue: { // According to JavaScript language zero or NaN is regarded as false const auto value_classification = std::fpclassify(value_.real_); return value_classification != FP_ZERO && value_classification != FP_NAN; } default: break; } JSON_FAIL_MESSAGE("Value is not convertible to bool."); } bool Value::isConvertibleTo(ValueType other) const { switch (other) { case nullValue: return (isNumeric() && asDouble() == 0.0) || (type() == booleanValue && !value_.bool_) || (type() == stringValue && asString().empty()) || (type() == arrayValue && value_.map_->empty()) || (type() == objectValue && value_.map_->empty()) || type() == nullValue; case intValue: return isInt() || (type() == realValue && InRange(value_.real_, minInt, maxInt)) || type() == booleanValue || type() == nullValue; case uintValue: return isUInt() || (type() == realValue && InRange(value_.real_, 0, maxUInt)) || type() == booleanValue || type() == nullValue; case realValue: return isNumeric() || type() == booleanValue || type() == nullValue; case booleanValue: return isNumeric() || type() == booleanValue || type() == nullValue; case stringValue: return isNumeric() || type() == booleanValue || type() == stringValue || type() == nullValue; case arrayValue: return type() == arrayValue || type() == nullValue; case objectValue: return type() == objectValue || type() == nullValue; } JSON_ASSERT_UNREACHABLE; return false; } /// Number of values in array or object ArrayIndex Value::size() const { switch (type()) { case nullValue: case intValue: case uintValue: case realValue: case booleanValue: case stringValue: return 0; case arrayValue: // size of the array is highest index + 1 if (!value_.map_->empty()) { ObjectValues::const_iterator itLast = value_.map_->end(); --itLast; return (*itLast).first.index() + 1; } return 0; case objectValue: return ArrayIndex(value_.map_->size()); } JSON_ASSERT_UNREACHABLE; return 0; // unreachable; } bool Value::empty() const { if (isNull() || isArray() || isObject()) return size() == 0U; return false; } Value::operator bool() const { return !isNull(); } void Value::clear() { JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue || type() == objectValue, "in Json::Value::clear(): requires complex value"); start_ = 0; limit_ = 0; switch (type()) { case arrayValue: case objectValue: value_.map_->clear(); break; default: break; } } void Value::resize(ArrayIndex newSize) { JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, "in Json::Value::resize(): requires arrayValue"); if (type() == nullValue) *this = Value(arrayValue); ArrayIndex oldSize = size(); if (newSize == 0) clear(); else if (newSize > oldSize) for (ArrayIndex i = oldSize; i < newSize; ++i) (*this)[i]; else { for (ArrayIndex index = newSize; index < oldSize; ++index) { value_.map_->erase(index); } JSON_ASSERT(size() == newSize); } } Value& Value::operator[](ArrayIndex index) { JSON_ASSERT_MESSAGE( type() == nullValue || type() == arrayValue, "in Json::Value::operator[](ArrayIndex): requires arrayValue"); if (type() == nullValue) *this = Value(arrayValue); CZString key(index); auto it = value_.map_->lower_bound(key); if (it != value_.map_->end() && (*it).first == key) return (*it).second; ObjectValues::value_type defaultValue(key, nullSingleton()); it = value_.map_->insert(it, defaultValue); return (*it).second; } Value& Value::operator[](int index) { JSON_ASSERT_MESSAGE( index >= 0, "in Json::Value::operator[](int index): index cannot be negative"); return (*this)[ArrayIndex(index)]; } const Value& Value::operator[](ArrayIndex index) const { JSON_ASSERT_MESSAGE( type() == nullValue || type() == arrayValue, "in Json::Value::operator[](ArrayIndex)const: requires arrayValue"); if (type() == nullValue) return nullSingleton(); CZString key(index); ObjectValues::const_iterator it = value_.map_->find(key); if (it == value_.map_->end()) return nullSingleton(); return (*it).second; } const Value& Value::operator[](int index) const { JSON_ASSERT_MESSAGE( index >= 0, "in Json::Value::operator[](int index) const: index cannot be negative"); return (*this)[ArrayIndex(index)]; } void Value::initBasic(ValueType type, bool allocated) { setType(type); setIsAllocated(allocated); comments_ = Comments{}; start_ = 0; limit_ = 0; } void Value::dupPayload(const Value& other) { setType(other.type()); setIsAllocated(false); switch (type()) { case nullValue: case intValue: case uintValue: case realValue: case booleanValue: value_ = other.value_; break; case stringValue: if (other.value_.string_ && other.isAllocated()) { unsigned len; char const* str; decodePrefixedString(other.isAllocated(), other.value_.string_, &len, &str); value_.string_ = duplicateAndPrefixStringValue(str, len); setIsAllocated(true); } else { value_.string_ = other.value_.string_; } break; case arrayValue: case objectValue: value_.map_ = new ObjectValues(*other.value_.map_); break; default: JSON_ASSERT_UNREACHABLE; } } void Value::releasePayload() { switch (type()) { case nullValue: case intValue: case uintValue: case realValue: case booleanValue: break; case stringValue: if (isAllocated()) releasePrefixedStringValue(value_.string_); break; case arrayValue: case objectValue: delete value_.map_; break; default: JSON_ASSERT_UNREACHABLE; } } void Value::dupMeta(const Value& other) { comments_ = other.comments_; start_ = other.start_; limit_ = other.limit_; } // Access an object value by name, create a null member if it does not exist. // @pre Type of '*this' is object or null. // @param key is null-terminated. Value& Value::resolveReference(const char* key) { JSON_ASSERT_MESSAGE( type() == nullValue || type() == objectValue, "in Json::Value::resolveReference(): requires objectValue"); if (type() == nullValue) *this = Value(objectValue); CZString actualKey(key, static_cast(strlen(key)), CZString::noDuplication); // NOTE! auto it = value_.map_->lower_bound(actualKey); if (it != value_.map_->end() && (*it).first == actualKey) return (*it).second; ObjectValues::value_type defaultValue(actualKey, nullSingleton()); it = value_.map_->insert(it, defaultValue); Value& value = (*it).second; return value; } // @param key is not null-terminated. Value& Value::resolveReference(char const* key, char const* end) { JSON_ASSERT_MESSAGE( type() == nullValue || type() == objectValue, "in Json::Value::resolveReference(key, end): requires objectValue"); if (type() == nullValue) *this = Value(objectValue); CZString actualKey(key, static_cast(end - key), CZString::duplicateOnCopy); auto it = value_.map_->lower_bound(actualKey); if (it != value_.map_->end() && (*it).first == actualKey) return (*it).second; ObjectValues::value_type defaultValue(actualKey, nullSingleton()); it = value_.map_->insert(it, defaultValue); Value& value = (*it).second; return value; } Value Value::get(ArrayIndex index, const Value& defaultValue) const { const Value* value = &((*this)[index]); return value == &nullSingleton() ? defaultValue : *value; } bool Value::isValidIndex(ArrayIndex index) const { return index < size(); } Value const* Value::find(char const* begin, char const* end) const { JSON_ASSERT_MESSAGE(type() == nullValue || type() == objectValue, "in Json::Value::find(begin, end): requires " "objectValue or nullValue"); if (type() == nullValue) return nullptr; CZString actualKey(begin, static_cast(end - begin), CZString::noDuplication); ObjectValues::const_iterator it = value_.map_->find(actualKey); if (it == value_.map_->end()) return nullptr; return &(*it).second; } Value* Value::demand(char const* begin, char const* end) { JSON_ASSERT_MESSAGE(type() == nullValue || type() == objectValue, "in Json::Value::demand(begin, end): requires " "objectValue or nullValue"); return &resolveReference(begin, end); } const Value& Value::operator[](const char* key) const { Value const* found = find(key, key + strlen(key)); if (!found) return nullSingleton(); return *found; } Value const& Value::operator[](const String& key) const { Value const* found = find(key.data(), key.data() + key.length()); if (!found) return nullSingleton(); return *found; } Value& Value::operator[](const char* key) { return resolveReference(key, key + strlen(key)); } Value& Value::operator[](const String& key) { return resolveReference(key.data(), key.data() + key.length()); } Value& Value::operator[](const StaticString& key) { return resolveReference(key.c_str()); } Value& Value::append(const Value& value) { return append(Value(value)); } Value& Value::append(Value&& value) { JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, "in Json::Value::append: requires arrayValue"); if (type() == nullValue) { *this = Value(arrayValue); } return this->value_.map_->emplace(size(), std::move(value)).first->second; } bool Value::insert(ArrayIndex index, const Value& newValue) { return insert(index, Value(newValue)); } bool Value::insert(ArrayIndex index, Value&& newValue) { JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, "in Json::Value::insert: requires arrayValue"); ArrayIndex length = size(); if (index > length) { return false; } for (ArrayIndex i = length; i > index; i--) { (*this)[i] = std::move((*this)[i - 1]); } (*this)[index] = std::move(newValue); return true; } Value Value::get(char const* begin, char const* end, Value const& defaultValue) const { Value const* found = find(begin, end); return !found ? defaultValue : *found; } Value Value::get(char const* key, Value const& defaultValue) const { return get(key, key + strlen(key), defaultValue); } Value Value::get(String const& key, Value const& defaultValue) const { return get(key.data(), key.data() + key.length(), defaultValue); } bool Value::removeMember(const char* begin, const char* end, Value* removed) { if (type() != objectValue) { return false; } CZString actualKey(begin, static_cast(end - begin), CZString::noDuplication); auto it = value_.map_->find(actualKey); if (it == value_.map_->end()) return false; if (removed) *removed = std::move(it->second); value_.map_->erase(it); return true; } bool Value::removeMember(const char* key, Value* removed) { return removeMember(key, key + strlen(key), removed); } bool Value::removeMember(String const& key, Value* removed) { return removeMember(key.data(), key.data() + key.length(), removed); } void Value::removeMember(const char* key) { JSON_ASSERT_MESSAGE(type() == nullValue || type() == objectValue, "in Json::Value::removeMember(): requires objectValue"); if (type() == nullValue) return; CZString actualKey(key, unsigned(strlen(key)), CZString::noDuplication); value_.map_->erase(actualKey); } void Value::removeMember(const String& key) { removeMember(key.c_str()); } bool Value::removeIndex(ArrayIndex index, Value* removed) { if (type() != arrayValue) { return false; } CZString key(index); auto it = value_.map_->find(key); if (it == value_.map_->end()) { return false; } if (removed) *removed = it->second; ArrayIndex oldSize = size(); // shift left all items left, into the place of the "removed" for (ArrayIndex i = index; i < (oldSize - 1); ++i) { CZString keey(i); (*value_.map_)[keey] = (*this)[i + 1]; } // erase the last one ("leftover") CZString keyLast(oldSize - 1); auto itLast = value_.map_->find(keyLast); value_.map_->erase(itLast); return true; } bool Value::isMember(char const* begin, char const* end) const { Value const* value = find(begin, end); return nullptr != value; } bool Value::isMember(char const* key) const { return isMember(key, key + strlen(key)); } bool Value::isMember(String const& key) const { return isMember(key.data(), key.data() + key.length()); } Value::Members Value::getMemberNames() const { JSON_ASSERT_MESSAGE( type() == nullValue || type() == objectValue, "in Json::Value::getMemberNames(), value must be objectValue"); if (type() == nullValue) return Value::Members(); Members members; members.reserve(value_.map_->size()); ObjectValues::const_iterator it = value_.map_->begin(); ObjectValues::const_iterator itEnd = value_.map_->end(); for (; it != itEnd; ++it) { members.push_back(String((*it).first.data(), (*it).first.length())); } return members; } static bool IsIntegral(double d) { double integral_part; return modf(d, &integral_part) == 0.0; } bool Value::isNull() const { return type() == nullValue; } bool Value::isBool() const { return type() == booleanValue; } bool Value::isInt() const { switch (type()) { case intValue: #if defined(JSON_HAS_INT64) return value_.int_ >= minInt && value_.int_ <= maxInt; #else return true; #endif case uintValue: return value_.uint_ <= UInt(maxInt); case realValue: return value_.real_ >= minInt && value_.real_ <= maxInt && IsIntegral(value_.real_); default: break; } return false; } bool Value::isUInt() const { switch (type()) { case intValue: #if defined(JSON_HAS_INT64) return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); #else return value_.int_ >= 0; #endif case uintValue: #if defined(JSON_HAS_INT64) return value_.uint_ <= maxUInt; #else return true; #endif case realValue: return value_.real_ >= 0 && value_.real_ <= maxUInt && IsIntegral(value_.real_); default: break; } return false; } bool Value::isInt64() const { #if defined(JSON_HAS_INT64) switch (type()) { case intValue: return true; case uintValue: return value_.uint_ <= UInt64(maxInt64); case realValue: // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a // double, so double(maxInt64) will be rounded up to 2^63. Therefore we // require the value to be strictly less than the limit. return value_.real_ >= double(minInt64) && value_.real_ < double(maxInt64) && IsIntegral(value_.real_); default: break; } #endif // JSON_HAS_INT64 return false; } bool Value::isUInt64() const { #if defined(JSON_HAS_INT64) switch (type()) { case intValue: return value_.int_ >= 0; case uintValue: return true; case realValue: // Note that maxUInt64 (= 2^64 - 1) is not exactly representable as a // double, so double(maxUInt64) will be rounded up to 2^64. Therefore we // require the value to be strictly less than the limit. return value_.real_ >= 0 && value_.real_ < maxUInt64AsDouble && IsIntegral(value_.real_); default: break; } #endif // JSON_HAS_INT64 return false; } bool Value::isIntegral() const { switch (type()) { case intValue: case uintValue: return true; case realValue: #if defined(JSON_HAS_INT64) // Note that maxUInt64 (= 2^64 - 1) is not exactly representable as a // double, so double(maxUInt64) will be rounded up to 2^64. Therefore we // require the value to be strictly less than the limit. return value_.real_ >= double(minInt64) && value_.real_ < maxUInt64AsDouble && IsIntegral(value_.real_); #else return value_.real_ >= minInt && value_.real_ <= maxUInt && IsIntegral(value_.real_); #endif // JSON_HAS_INT64 default: break; } return false; } bool Value::isDouble() const { return type() == intValue || type() == uintValue || type() == realValue; } bool Value::isNumeric() const { return isDouble(); } bool Value::isString() const { return type() == stringValue; } bool Value::isArray() const { return type() == arrayValue; } bool Value::isObject() const { return type() == objectValue; } Value::Comments::Comments(const Comments& that) : ptr_{cloneUnique(that.ptr_)} {} Value::Comments::Comments(Comments&& that) noexcept : ptr_{std::move(that.ptr_)} {} Value::Comments& Value::Comments::operator=(const Comments& that) { ptr_ = cloneUnique(that.ptr_); return *this; } Value::Comments& Value::Comments::operator=(Comments&& that) noexcept { ptr_ = std::move(that.ptr_); return *this; } bool Value::Comments::has(CommentPlacement slot) const { return ptr_ && !(*ptr_)[slot].empty(); } String Value::Comments::get(CommentPlacement slot) const { if (!ptr_) return {}; return (*ptr_)[slot]; } void Value::Comments::set(CommentPlacement slot, String comment) { if (slot >= CommentPlacement::numberOfCommentPlacement) return; if (!ptr_) ptr_ = std::unique_ptr(new Array()); (*ptr_)[slot] = std::move(comment); } void Value::setComment(String comment, CommentPlacement placement) { if (!comment.empty() && (comment.back() == '\n')) { // Always discard trailing newline, to aid indentation. comment.pop_back(); } JSON_ASSERT(!comment.empty()); JSON_ASSERT_MESSAGE( comment[0] == '\0' || comment[0] == '/', "in Json::Value::setComment(): Comments must start with /"); comments_.set(placement, std::move(comment)); } bool Value::hasComment(CommentPlacement placement) const { return comments_.has(placement); } String Value::getComment(CommentPlacement placement) const { return comments_.get(placement); } void Value::setOffsetStart(ptrdiff_t start) { start_ = start; } void Value::setOffsetLimit(ptrdiff_t limit) { limit_ = limit; } ptrdiff_t Value::getOffsetStart() const { return start_; } ptrdiff_t Value::getOffsetLimit() const { return limit_; } String Value::toStyledString() const { StreamWriterBuilder builder; String out = this->hasComment(commentBefore) ? "\n" : ""; out += Json::writeString(builder, *this); out += '\n'; return out; } Value::const_iterator Value::begin() const { switch (type()) { case arrayValue: case objectValue: if (value_.map_) return const_iterator(value_.map_->begin()); break; default: break; } return {}; } Value::const_iterator Value::end() const { switch (type()) { case arrayValue: case objectValue: if (value_.map_) return const_iterator(value_.map_->end()); break; default: break; } return {}; } Value::iterator Value::begin() { switch (type()) { case arrayValue: case objectValue: if (value_.map_) return iterator(value_.map_->begin()); break; default: break; } return iterator(); } Value::iterator Value::end() { switch (type()) { case arrayValue: case objectValue: if (value_.map_) return iterator(value_.map_->end()); break; default: break; } return iterator(); } // class PathArgument // ////////////////////////////////////////////////////////////////// PathArgument::PathArgument() = default; PathArgument::PathArgument(ArrayIndex index) : index_(index), kind_(kindIndex) {} PathArgument::PathArgument(const char* key) : key_(key), kind_(kindKey) {} PathArgument::PathArgument(String key) : key_(std::move(key)), kind_(kindKey) {} // class Path // ////////////////////////////////////////////////////////////////// Path::Path(const String& path, const PathArgument& a1, const PathArgument& a2, const PathArgument& a3, const PathArgument& a4, const PathArgument& a5) { InArgs in; in.reserve(5); in.push_back(&a1); in.push_back(&a2); in.push_back(&a3); in.push_back(&a4); in.push_back(&a5); makePath(path, in); } void Path::makePath(const String& path, const InArgs& in) { const char* current = path.c_str(); const char* end = current + path.length(); auto itInArg = in.begin(); while (current != end) { if (*current == '[') { ++current; if (*current == '%') addPathInArg(path, in, itInArg, PathArgument::kindIndex); else { ArrayIndex index = 0; for (; current != end && *current >= '0' && *current <= '9'; ++current) index = index * 10 + ArrayIndex(*current - '0'); args_.push_back(index); } if (current == end || *++current != ']') invalidPath(path, int(current - path.c_str())); } else if (*current == '%') { addPathInArg(path, in, itInArg, PathArgument::kindKey); ++current; } else if (*current == '.' || *current == ']') { ++current; } else { const char* beginName = current; while (current != end && !strchr("[.", *current)) ++current; args_.push_back(String(beginName, current)); } } } void Path::addPathInArg(const String& /*path*/, const InArgs& in, InArgs::const_iterator& itInArg, PathArgument::Kind kind) { if (itInArg == in.end()) { // Error: missing argument %d } else if ((*itInArg)->kind_ != kind) { // Error: bad argument type } else { args_.push_back(**itInArg++); } } void Path::invalidPath(const String& /*path*/, int /*location*/) { // Error: invalid path. } const Value& Path::resolve(const Value& root) const { const Value* node = &root; for (const auto& arg : args_) { if (arg.kind_ == PathArgument::kindIndex) { if (!node->isArray() || !node->isValidIndex(arg.index_)) { // Error: unable to resolve path (array value expected at position... ) return Value::nullSingleton(); } node = &((*node)[arg.index_]); } else if (arg.kind_ == PathArgument::kindKey) { if (!node->isObject()) { // Error: unable to resolve path (object value expected at position...) return Value::nullSingleton(); } node = &((*node)[arg.key_]); if (node == &Value::nullSingleton()) { // Error: unable to resolve path (object has no member named '' at // position...) return Value::nullSingleton(); } } } return *node; } Value Path::resolve(const Value& root, const Value& defaultValue) const { const Value* node = &root; for (const auto& arg : args_) { if (arg.kind_ == PathArgument::kindIndex) { if (!node->isArray() || !node->isValidIndex(arg.index_)) return defaultValue; node = &((*node)[arg.index_]); } else if (arg.kind_ == PathArgument::kindKey) { if (!node->isObject()) return defaultValue; node = &((*node)[arg.key_]); if (node == &Value::nullSingleton()) return defaultValue; } } return *node; } Value& Path::make(Value& root) const { Value* node = &root; for (const auto& arg : args_) { if (arg.kind_ == PathArgument::kindIndex) { if (!node->isArray()) { // Error: node is not an array at position ... } node = &((*node)[arg.index_]); } else if (arg.kind_ == PathArgument::kindKey) { if (!node->isObject()) { // Error: node is not an object at position... } node = &((*node)[arg.key_]); } } return *node; } } // namespace Json mstflint-4.26.0/ext_libs/json/json_writer.cpp0000644000175000017500000011050214522641732021535 0ustar tzafrirctzafrirc// Copyright 2011 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #if !defined(JSON_IS_AMALGAMATION) #include "json_tool.h" #include #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include #include #include #include #include #if __cplusplus >= 201103L #include #include #if !defined(isnan) #define isnan std::isnan #endif #if !defined(isfinite) #define isfinite std::isfinite #endif #else #include #include #if defined(_MSC_VER) #if !defined(isnan) #include #define isnan _isnan #endif #if !defined(isfinite) #include #define isfinite _finite #endif #if !defined(_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES) #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1 #endif //_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES #endif //_MSC_VER #if defined(__sun) && defined(__SVR4) // Solaris #if !defined(isfinite) #include #define isfinite finite #endif #endif #if defined(__hpux) #if !defined(isfinite) #if defined(__ia64) && !defined(finite) #define isfinite(x) \ ((sizeof(x) == sizeof(float) ? _Isfinitef(x) : _IsFinite(x))) #endif #endif #endif #if !defined(isnan) // IEEE standard states that NaN values will not compare to themselves #define isnan(x) ((x) != (x)) #endif #if !defined(__APPLE__) #if !defined(isfinite) #define isfinite finite #endif #endif #endif #if defined(_MSC_VER) // Disable warning about strdup being deprecated. #pragma warning(disable : 4996) #endif namespace Json { #if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520) using StreamWriterPtr = std::unique_ptr; #else using StreamWriterPtr = std::auto_ptr; #endif String valueToString(LargestInt value) { UIntToStringBuffer buffer; char* current = buffer + sizeof(buffer); if (value == Value::minLargestInt) { uintToString(LargestUInt(Value::maxLargestInt) + 1, current); *--current = '-'; } else if (value < 0) { uintToString(LargestUInt(-value), current); *--current = '-'; } else { uintToString(LargestUInt(value), current); } assert(current >= buffer); return current; } String valueToString(LargestUInt value) { UIntToStringBuffer buffer; char* current = buffer + sizeof(buffer); uintToString(value, current); assert(current >= buffer); return current; } #if defined(JSON_HAS_INT64) String valueToString(Int value) { return valueToString(LargestInt(value)); } String valueToString(UInt value) { return valueToString(LargestUInt(value)); } #endif // # if defined(JSON_HAS_INT64) namespace { String valueToString(double value, bool useSpecialFloats, unsigned int precision, PrecisionType precisionType) { // Print into the buffer. We need not request the alternative representation // that always has a decimal point because JSON doesn't distinguish the // concepts of reals and integers. if (!isfinite(value)) { static const char* const reps[2][3] = {{"NaN", "-Infinity", "Infinity"}, {"null", "-1e+9999", "1e+9999"}}; return reps[useSpecialFloats ? 0 : 1] [isnan(value) ? 0 : (value < 0) ? 1 : 2]; } String buffer(size_t(36), '\0'); while (true) { int len = jsoncpp_snprintf( &*buffer.begin(), buffer.size(), (precisionType == PrecisionType::significantDigits) ? "%.*g" : "%.*f", precision, value); assert(len >= 0); auto wouldPrint = static_cast(len); if (wouldPrint >= buffer.size()) { buffer.resize(wouldPrint + 1); continue; } buffer.resize(wouldPrint); break; } buffer.erase(fixNumericLocale(buffer.begin(), buffer.end()), buffer.end()); // try to ensure we preserve the fact that this was given to us as a double on // input if (buffer.find('.') == buffer.npos && buffer.find('e') == buffer.npos) { buffer += ".0"; } // strip the zero padding from the right if (precisionType == PrecisionType::decimalPlaces) { buffer.erase(fixZerosInTheEnd(buffer.begin(), buffer.end(), precision), buffer.end()); } return buffer; } } // namespace String valueToString(double value, unsigned int precision, PrecisionType precisionType) { return valueToString(value, false, precision, precisionType); } String valueToString(bool value) { return value ? "true" : "false"; } static bool doesAnyCharRequireEscaping(char const* s, size_t n) { assert(s || !n); return std::any_of(s, s + n, [](unsigned char c) { return c == '\\' || c == '"' || c < 0x20 || c > 0x7F; }); } static unsigned int utf8ToCodepoint(const char*& s, const char* e) { const unsigned int REPLACEMENT_CHARACTER = 0xFFFD; unsigned int firstByte = static_cast(*s); if (firstByte < 0x80) return firstByte; if (firstByte < 0xE0) { if (e - s < 2) return REPLACEMENT_CHARACTER; unsigned int calculated = ((firstByte & 0x1F) << 6) | (static_cast(s[1]) & 0x3F); s += 1; // oversized encoded characters are invalid return calculated < 0x80 ? REPLACEMENT_CHARACTER : calculated; } if (firstByte < 0xF0) { if (e - s < 3) return REPLACEMENT_CHARACTER; unsigned int calculated = ((firstByte & 0x0F) << 12) | ((static_cast(s[1]) & 0x3F) << 6) | (static_cast(s[2]) & 0x3F); s += 2; // surrogates aren't valid codepoints itself // shouldn't be UTF-8 encoded if (calculated >= 0xD800 && calculated <= 0xDFFF) return REPLACEMENT_CHARACTER; // oversized encoded characters are invalid return calculated < 0x800 ? REPLACEMENT_CHARACTER : calculated; } if (firstByte < 0xF8) { if (e - s < 4) return REPLACEMENT_CHARACTER; unsigned int calculated = ((firstByte & 0x07) << 18) | ((static_cast(s[1]) & 0x3F) << 12) | ((static_cast(s[2]) & 0x3F) << 6) | (static_cast(s[3]) & 0x3F); s += 3; // oversized encoded characters are invalid return calculated < 0x10000 ? REPLACEMENT_CHARACTER : calculated; } return REPLACEMENT_CHARACTER; } static const char hex2[] = "000102030405060708090a0b0c0d0e0f" "101112131415161718191a1b1c1d1e1f" "202122232425262728292a2b2c2d2e2f" "303132333435363738393a3b3c3d3e3f" "404142434445464748494a4b4c4d4e4f" "505152535455565758595a5b5c5d5e5f" "606162636465666768696a6b6c6d6e6f" "707172737475767778797a7b7c7d7e7f" "808182838485868788898a8b8c8d8e8f" "909192939495969798999a9b9c9d9e9f" "a0a1a2a3a4a5a6a7a8a9aaabacadaeaf" "b0b1b2b3b4b5b6b7b8b9babbbcbdbebf" "c0c1c2c3c4c5c6c7c8c9cacbcccdcecf" "d0d1d2d3d4d5d6d7d8d9dadbdcdddedf" "e0e1e2e3e4e5e6e7e8e9eaebecedeeef" "f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff"; static String toHex16Bit(unsigned int x) { const unsigned int hi = (x >> 8) & 0xff; const unsigned int lo = x & 0xff; String result(4, ' '); result[0] = hex2[2 * hi]; result[1] = hex2[2 * hi + 1]; result[2] = hex2[2 * lo]; result[3] = hex2[2 * lo + 1]; return result; } static void appendRaw(String& result, unsigned ch) { result += static_cast(ch); } static void appendHex(String& result, unsigned ch) { result.append("\\u").append(toHex16Bit(ch)); } static String valueToQuotedStringN(const char* value, size_t length, bool emitUTF8 = false) { if (value == nullptr) return ""; if (!doesAnyCharRequireEscaping(value, length)) return String("\"") + value + "\""; // We have to walk value and escape any special characters. // Appending to String is not efficient, but this should be rare. // (Note: forward slashes are *not* rare, but I am not escaping them.) String::size_type maxsize = length * 2 + 3; // allescaped+quotes+NULL String result; result.reserve(maxsize); // to avoid lots of mallocs result += "\""; char const* end = value + length; for (const char* c = value; c != end; ++c) { switch (*c) { case '\"': result += "\\\""; break; case '\\': result += "\\\\"; break; case '\b': result += "\\b"; break; case '\f': result += "\\f"; break; case '\n': result += "\\n"; break; case '\r': result += "\\r"; break; case '\t': result += "\\t"; break; // case '/': // Even though \/ is considered a legal escape in JSON, a bare // slash is also legal, so I see no reason to escape it. // (I hope I am not misunderstanding something.) // blep notes: actually escaping \/ may be useful in javascript to avoid (*c); if (codepoint < 0x20) { appendHex(result, codepoint); } else { appendRaw(result, codepoint); } } else { unsigned codepoint = utf8ToCodepoint(c, end); // modifies `c` if (codepoint < 0x20) { appendHex(result, codepoint); } else if (codepoint < 0x80) { appendRaw(result, codepoint); } else if (codepoint < 0x10000) { // Basic Multilingual Plane appendHex(result, codepoint); } else { // Extended Unicode. Encode 20 bits as a surrogate pair. codepoint -= 0x10000; appendHex(result, 0xd800 + ((codepoint >> 10) & 0x3ff)); appendHex(result, 0xdc00 + (codepoint & 0x3ff)); } } } break; } } result += "\""; return result; } String valueToQuotedString(const char* value) { return valueToQuotedStringN(value, strlen(value)); } // Class Writer // ////////////////////////////////////////////////////////////////// Writer::~Writer() = default; // Class FastWriter // ////////////////////////////////////////////////////////////////// FastWriter::FastWriter() = default; void FastWriter::enableYAMLCompatibility() { yamlCompatibilityEnabled_ = true; } void FastWriter::dropNullPlaceholders() { dropNullPlaceholders_ = true; } void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; } String FastWriter::write(const Value& root) { document_.clear(); writeValue(root); if (!omitEndingLineFeed_) document_ += '\n'; return document_; } void FastWriter::writeValue(const Value& value) { switch (value.type()) { case nullValue: if (!dropNullPlaceholders_) document_ += "null"; break; case intValue: document_ += valueToString(value.asLargestInt()); break; case uintValue: document_ += valueToString(value.asLargestUInt()); break; case realValue: document_ += valueToString(value.asDouble()); break; case stringValue: { // Is NULL possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) document_ += valueToQuotedStringN(str, static_cast(end - str)); break; } case booleanValue: document_ += valueToString(value.asBool()); break; case arrayValue: { document_ += '['; ArrayIndex size = value.size(); for (ArrayIndex index = 0; index < size; ++index) { if (index > 0) document_ += ','; writeValue(value[index]); } document_ += ']'; } break; case objectValue: { Value::Members members(value.getMemberNames()); document_ += '{'; for (auto it = members.begin(); it != members.end(); ++it) { const String& name = *it; if (it != members.begin()) document_ += ','; document_ += valueToQuotedStringN(name.data(), name.length()); document_ += yamlCompatibilityEnabled_ ? ": " : ":"; writeValue(value[name]); } document_ += '}'; } break; } } // Class StyledWriter // ////////////////////////////////////////////////////////////////// StyledWriter::StyledWriter() = default; String StyledWriter::write(const Value& root) { document_.clear(); addChildValues_ = false; indentString_.clear(); writeCommentBeforeValue(root); writeValue(root); writeCommentAfterValueOnSameLine(root); document_ += '\n'; return document_; } void StyledWriter::writeValue(const Value& value) { switch (value.type()) { case nullValue: pushValue("null"); break; case intValue: pushValue(valueToString(value.asLargestInt())); break; case uintValue: pushValue(valueToString(value.asLargestUInt())); break; case realValue: pushValue(valueToString(value.asDouble())); break; case stringValue: { // Is NULL possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) pushValue(valueToQuotedStringN(str, static_cast(end - str))); else pushValue(""); break; } case booleanValue: pushValue(valueToString(value.asBool())); break; case arrayValue: writeArrayValue(value); break; case objectValue: { Value::Members members(value.getMemberNames()); if (members.empty()) pushValue("{}"); else { writeWithIndent("{"); indent(); auto it = members.begin(); for (;;) { const String& name = *it; const Value& childValue = value[name]; writeCommentBeforeValue(childValue); writeWithIndent(valueToQuotedString(name.c_str())); document_ += " : "; writeValue(childValue); if (++it == members.end()) { writeCommentAfterValueOnSameLine(childValue); break; } document_ += ','; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("}"); } } break; } } void StyledWriter::writeArrayValue(const Value& value) { size_t size = value.size(); if (size == 0) pushValue("[]"); else { bool isArrayMultiLine = isMultilineArray(value); if (isArrayMultiLine) { writeWithIndent("["); indent(); bool hasChildValue = !childValues_.empty(); ArrayIndex index = 0; for (;;) { const Value& childValue = value[index]; writeCommentBeforeValue(childValue); if (hasChildValue) writeWithIndent(childValues_[index]); else { writeIndent(); writeValue(childValue); } if (++index == size) { writeCommentAfterValueOnSameLine(childValue); break; } document_ += ','; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("]"); } else // output on a single line { assert(childValues_.size() == size); document_ += "[ "; for (size_t index = 0; index < size; ++index) { if (index > 0) document_ += ", "; document_ += childValues_[index]; } document_ += " ]"; } } } bool StyledWriter::isMultilineArray(const Value& value) { ArrayIndex const size = value.size(); bool isMultiLine = size * 3 >= rightMargin_; childValues_.clear(); for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) { const Value& childValue = value[index]; isMultiLine = ((childValue.isArray() || childValue.isObject()) && !childValue.empty()); } if (!isMultiLine) // check if line length > max line length { childValues_.reserve(size); addChildValues_ = true; ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]' for (ArrayIndex index = 0; index < size; ++index) { if (hasCommentForValue(value[index])) { isMultiLine = true; } writeValue(value[index]); lineLength += static_cast(childValues_[index].length()); } addChildValues_ = false; isMultiLine = isMultiLine || lineLength >= rightMargin_; } return isMultiLine; } void StyledWriter::pushValue(const String& value) { if (addChildValues_) childValues_.push_back(value); else document_ += value; } void StyledWriter::writeIndent() { if (!document_.empty()) { char last = document_[document_.length() - 1]; if (last == ' ') // already indented return; if (last != '\n') // Comments may add new-line document_ += '\n'; } document_ += indentString_; } void StyledWriter::writeWithIndent(const String& value) { writeIndent(); document_ += value; } void StyledWriter::indent() { indentString_ += String(indentSize_, ' '); } void StyledWriter::unindent() { assert(indentString_.size() >= indentSize_); indentString_.resize(indentString_.size() - indentSize_); } void StyledWriter::writeCommentBeforeValue(const Value& root) { if (!root.hasComment(commentBefore)) return; document_ += '\n'; writeIndent(); const String& comment = root.getComment(commentBefore); String::const_iterator iter = comment.begin(); while (iter != comment.end()) { document_ += *iter; if (*iter == '\n' && ((iter + 1) != comment.end() && *(iter + 1) == '/')) writeIndent(); ++iter; } // Comments are stripped of trailing newlines, so add one here document_ += '\n'; } void StyledWriter::writeCommentAfterValueOnSameLine(const Value& root) { if (root.hasComment(commentAfterOnSameLine)) document_ += " " + root.getComment(commentAfterOnSameLine); if (root.hasComment(commentAfter)) { document_ += '\n'; document_ += root.getComment(commentAfter); document_ += '\n'; } } bool StyledWriter::hasCommentForValue(const Value& value) { return value.hasComment(commentBefore) || value.hasComment(commentAfterOnSameLine) || value.hasComment(commentAfter); } // Class StyledStreamWriter // ////////////////////////////////////////////////////////////////// StyledStreamWriter::StyledStreamWriter(String indentation) : document_(nullptr), indentation_(std::move(indentation)), addChildValues_(), indented_(false) {} void StyledStreamWriter::write(OStream& out, const Value& root) { document_ = &out; addChildValues_ = false; indentString_.clear(); indented_ = true; writeCommentBeforeValue(root); if (!indented_) writeIndent(); indented_ = true; writeValue(root); writeCommentAfterValueOnSameLine(root); *document_ << "\n"; document_ = nullptr; // Forget the stream, for safety. } void StyledStreamWriter::writeValue(const Value& value) { switch (value.type()) { case nullValue: pushValue("null"); break; case intValue: pushValue(valueToString(value.asLargestInt())); break; case uintValue: pushValue(valueToString(value.asLargestUInt())); break; case realValue: pushValue(valueToString(value.asDouble())); break; case stringValue: { // Is NULL possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) pushValue(valueToQuotedStringN(str, static_cast(end - str))); else pushValue(""); break; } case booleanValue: pushValue(valueToString(value.asBool())); break; case arrayValue: writeArrayValue(value); break; case objectValue: { Value::Members members(value.getMemberNames()); if (members.empty()) pushValue("{}"); else { writeWithIndent("{"); indent(); auto it = members.begin(); for (;;) { const String& name = *it; const Value& childValue = value[name]; writeCommentBeforeValue(childValue); writeWithIndent(valueToQuotedString(name.c_str())); *document_ << " : "; writeValue(childValue); if (++it == members.end()) { writeCommentAfterValueOnSameLine(childValue); break; } *document_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("}"); } } break; } } void StyledStreamWriter::writeArrayValue(const Value& value) { unsigned size = value.size(); if (size == 0) pushValue("[]"); else { bool isArrayMultiLine = isMultilineArray(value); if (isArrayMultiLine) { writeWithIndent("["); indent(); bool hasChildValue = !childValues_.empty(); unsigned index = 0; for (;;) { const Value& childValue = value[index]; writeCommentBeforeValue(childValue); if (hasChildValue) writeWithIndent(childValues_[index]); else { if (!indented_) writeIndent(); indented_ = true; writeValue(childValue); indented_ = false; } if (++index == size) { writeCommentAfterValueOnSameLine(childValue); break; } *document_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("]"); } else // output on a single line { assert(childValues_.size() == size); *document_ << "[ "; for (unsigned index = 0; index < size; ++index) { if (index > 0) *document_ << ", "; *document_ << childValues_[index]; } *document_ << " ]"; } } } bool StyledStreamWriter::isMultilineArray(const Value& value) { ArrayIndex const size = value.size(); bool isMultiLine = size * 3 >= rightMargin_; childValues_.clear(); for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) { const Value& childValue = value[index]; isMultiLine = ((childValue.isArray() || childValue.isObject()) && !childValue.empty()); } if (!isMultiLine) // check if line length > max line length { childValues_.reserve(size); addChildValues_ = true; ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]' for (ArrayIndex index = 0; index < size; ++index) { if (hasCommentForValue(value[index])) { isMultiLine = true; } writeValue(value[index]); lineLength += static_cast(childValues_[index].length()); } addChildValues_ = false; isMultiLine = isMultiLine || lineLength >= rightMargin_; } return isMultiLine; } void StyledStreamWriter::pushValue(const String& value) { if (addChildValues_) childValues_.push_back(value); else *document_ << value; } void StyledStreamWriter::writeIndent() { // blep intended this to look at the so-far-written string // to determine whether we are already indented, but // with a stream we cannot do that. So we rely on some saved state. // The caller checks indented_. *document_ << '\n' << indentString_; } void StyledStreamWriter::writeWithIndent(const String& value) { if (!indented_) writeIndent(); *document_ << value; indented_ = false; } void StyledStreamWriter::indent() { indentString_ += indentation_; } void StyledStreamWriter::unindent() { assert(indentString_.size() >= indentation_.size()); indentString_.resize(indentString_.size() - indentation_.size()); } void StyledStreamWriter::writeCommentBeforeValue(const Value& root) { if (!root.hasComment(commentBefore)) return; if (!indented_) writeIndent(); const String& comment = root.getComment(commentBefore); String::const_iterator iter = comment.begin(); while (iter != comment.end()) { *document_ << *iter; if (*iter == '\n' && ((iter + 1) != comment.end() && *(iter + 1) == '/')) // writeIndent(); // would include newline *document_ << indentString_; ++iter; } indented_ = false; } void StyledStreamWriter::writeCommentAfterValueOnSameLine(const Value& root) { if (root.hasComment(commentAfterOnSameLine)) *document_ << ' ' << root.getComment(commentAfterOnSameLine); if (root.hasComment(commentAfter)) { writeIndent(); *document_ << root.getComment(commentAfter); } indented_ = false; } bool StyledStreamWriter::hasCommentForValue(const Value& value) { return value.hasComment(commentBefore) || value.hasComment(commentAfterOnSameLine) || value.hasComment(commentAfter); } ////////////////////////// // BuiltStyledStreamWriter /// Scoped enums are not available until C++11. struct CommentStyle { /// Decide whether to write comments. enum Enum { None, ///< Drop all comments. Most, ///< Recover odd behavior of previous versions (not implemented yet). All ///< Keep all comments. }; }; struct BuiltStyledStreamWriter : public StreamWriter { BuiltStyledStreamWriter(String indentation, CommentStyle::Enum cs, String colonSymbol, String nullSymbol, String endingLineFeedSymbol, bool useSpecialFloats, bool emitUTF8, unsigned int precision, PrecisionType precisionType); int write(Value const& root, OStream* sout) override; private: void writeValue(Value const& value); void writeArrayValue(Value const& value); bool isMultilineArray(Value const& value); void pushValue(String const& value); void writeIndent(); void writeWithIndent(String const& value); void indent(); void unindent(); void writeCommentBeforeValue(Value const& root); void writeCommentAfterValueOnSameLine(Value const& root); static bool hasCommentForValue(const Value& value); using ChildValues = std::vector; ChildValues childValues_; String indentString_; unsigned int rightMargin_; String indentation_; CommentStyle::Enum cs_; String colonSymbol_; String nullSymbol_; String endingLineFeedSymbol_; bool addChildValues_ : 1; bool indented_ : 1; bool useSpecialFloats_ : 1; bool emitUTF8_ : 1; unsigned int precision_; PrecisionType precisionType_; }; BuiltStyledStreamWriter::BuiltStyledStreamWriter( String indentation, CommentStyle::Enum cs, String colonSymbol, String nullSymbol, String endingLineFeedSymbol, bool useSpecialFloats, bool emitUTF8, unsigned int precision, PrecisionType precisionType) : rightMargin_(74), indentation_(std::move(indentation)), cs_(cs), colonSymbol_(std::move(colonSymbol)), nullSymbol_(std::move(nullSymbol)), endingLineFeedSymbol_(std::move(endingLineFeedSymbol)), addChildValues_(false), indented_(false), useSpecialFloats_(useSpecialFloats), emitUTF8_(emitUTF8), precision_(precision), precisionType_(precisionType) {} int BuiltStyledStreamWriter::write(Value const& root, OStream* sout) { sout_ = sout; addChildValues_ = false; indented_ = true; indentString_.clear(); writeCommentBeforeValue(root); if (!indented_) writeIndent(); indented_ = true; writeValue(root); writeCommentAfterValueOnSameLine(root); *sout_ << endingLineFeedSymbol_; sout_ = nullptr; return 0; } void BuiltStyledStreamWriter::writeValue(Value const& value) { switch (value.type()) { case nullValue: pushValue(nullSymbol_); break; case intValue: pushValue(valueToString(value.asLargestInt())); break; case uintValue: pushValue(valueToString(value.asLargestUInt())); break; case realValue: pushValue(valueToString(value.asDouble(), useSpecialFloats_, precision_, precisionType_)); break; case stringValue: { // Is NULL is possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) pushValue( valueToQuotedStringN(str, static_cast(end - str), emitUTF8_)); else pushValue(""); break; } case booleanValue: pushValue(valueToString(value.asBool())); break; case arrayValue: writeArrayValue(value); break; case objectValue: { Value::Members members(value.getMemberNames()); if (members.empty()) pushValue("{}"); else { writeWithIndent("{"); indent(); auto it = members.begin(); for (;;) { String const& name = *it; Value const& childValue = value[name]; writeCommentBeforeValue(childValue); writeWithIndent( valueToQuotedStringN(name.data(), name.length(), emitUTF8_)); *sout_ << colonSymbol_; writeValue(childValue); if (++it == members.end()) { writeCommentAfterValueOnSameLine(childValue); break; } *sout_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("}"); } } break; } } void BuiltStyledStreamWriter::writeArrayValue(Value const& value) { unsigned size = value.size(); if (size == 0) pushValue("[]"); else { bool isMultiLine = (cs_ == CommentStyle::All) || isMultilineArray(value); if (isMultiLine) { writeWithIndent("["); indent(); bool hasChildValue = !childValues_.empty(); unsigned index = 0; for (;;) { Value const& childValue = value[index]; writeCommentBeforeValue(childValue); if (hasChildValue) writeWithIndent(childValues_[index]); else { if (!indented_) writeIndent(); indented_ = true; writeValue(childValue); indented_ = false; } if (++index == size) { writeCommentAfterValueOnSameLine(childValue); break; } *sout_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("]"); } else // output on a single line { assert(childValues_.size() == size); *sout_ << "["; if (!indentation_.empty()) *sout_ << " "; for (unsigned index = 0; index < size; ++index) { if (index > 0) *sout_ << ((!indentation_.empty()) ? ", " : ","); *sout_ << childValues_[index]; } if (!indentation_.empty()) *sout_ << " "; *sout_ << "]"; } } } bool BuiltStyledStreamWriter::isMultilineArray(Value const& value) { ArrayIndex const size = value.size(); bool isMultiLine = size * 3 >= rightMargin_; childValues_.clear(); for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) { Value const& childValue = value[index]; isMultiLine = ((childValue.isArray() || childValue.isObject()) && !childValue.empty()); } if (!isMultiLine) // check if line length > max line length { childValues_.reserve(size); addChildValues_ = true; ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]' for (ArrayIndex index = 0; index < size; ++index) { if (hasCommentForValue(value[index])) { isMultiLine = true; } writeValue(value[index]); lineLength += static_cast(childValues_[index].length()); } addChildValues_ = false; isMultiLine = isMultiLine || lineLength >= rightMargin_; } return isMultiLine; } void BuiltStyledStreamWriter::pushValue(String const& value) { if (addChildValues_) childValues_.push_back(value); else *sout_ << value; } void BuiltStyledStreamWriter::writeIndent() { // blep intended this to look at the so-far-written string // to determine whether we are already indented, but // with a stream we cannot do that. So we rely on some saved state. // The caller checks indented_. if (!indentation_.empty()) { // In this case, drop newlines too. *sout_ << '\n' << indentString_; } } void BuiltStyledStreamWriter::writeWithIndent(String const& value) { if (!indented_) writeIndent(); *sout_ << value; indented_ = false; } void BuiltStyledStreamWriter::indent() { indentString_ += indentation_; } void BuiltStyledStreamWriter::unindent() { assert(indentString_.size() >= indentation_.size()); indentString_.resize(indentString_.size() - indentation_.size()); } void BuiltStyledStreamWriter::writeCommentBeforeValue(Value const& root) { if (cs_ == CommentStyle::None) return; if (!root.hasComment(commentBefore)) return; if (!indented_) writeIndent(); const String& comment = root.getComment(commentBefore); String::const_iterator iter = comment.begin(); while (iter != comment.end()) { *sout_ << *iter; if (*iter == '\n' && ((iter + 1) != comment.end() && *(iter + 1) == '/')) // writeIndent(); // would write extra newline *sout_ << indentString_; ++iter; } indented_ = false; } void BuiltStyledStreamWriter::writeCommentAfterValueOnSameLine( Value const& root) { if (cs_ == CommentStyle::None) return; if (root.hasComment(commentAfterOnSameLine)) *sout_ << " " + root.getComment(commentAfterOnSameLine); if (root.hasComment(commentAfter)) { writeIndent(); *sout_ << root.getComment(commentAfter); } } // static bool BuiltStyledStreamWriter::hasCommentForValue(const Value& value) { return value.hasComment(commentBefore) || value.hasComment(commentAfterOnSameLine) || value.hasComment(commentAfter); } /////////////// // StreamWriter StreamWriter::StreamWriter() : sout_(nullptr) {} StreamWriter::~StreamWriter() = default; StreamWriter::Factory::~Factory() = default; StreamWriterBuilder::StreamWriterBuilder() { setDefaults(&settings_); } StreamWriterBuilder::~StreamWriterBuilder() = default; StreamWriter* StreamWriterBuilder::newStreamWriter() const { const String indentation = settings_["indentation"].asString(); const String cs_str = settings_["commentStyle"].asString(); const String pt_str = settings_["precisionType"].asString(); const bool eyc = settings_["enableYAMLCompatibility"].asBool(); const bool dnp = settings_["dropNullPlaceholders"].asBool(); const bool usf = settings_["useSpecialFloats"].asBool(); const bool emitUTF8 = settings_["emitUTF8"].asBool(); unsigned int pre = settings_["precision"].asUInt(); CommentStyle::Enum cs = CommentStyle::All; if (cs_str == "All") { cs = CommentStyle::All; } else if (cs_str == "None") { cs = CommentStyle::None; } else { throwRuntimeError("commentStyle must be 'All' or 'None'"); } PrecisionType precisionType(significantDigits); if (pt_str == "significant") { precisionType = PrecisionType::significantDigits; } else if (pt_str == "decimal") { precisionType = PrecisionType::decimalPlaces; } else { throwRuntimeError("precisionType must be 'significant' or 'decimal'"); } String colonSymbol = " : "; if (eyc) { colonSymbol = ": "; } else if (indentation.empty()) { colonSymbol = ":"; } String nullSymbol = "null"; if (dnp) { nullSymbol.clear(); } if (pre > 17) pre = 17; String endingLineFeedSymbol; return new BuiltStyledStreamWriter(indentation, cs, colonSymbol, nullSymbol, endingLineFeedSymbol, usf, emitUTF8, pre, precisionType); } bool StreamWriterBuilder::validate(Json::Value* invalid) const { static const auto& valid_keys = *new std::set{ "indentation", "commentStyle", "enableYAMLCompatibility", "dropNullPlaceholders", "useSpecialFloats", "emitUTF8", "precision", "precisionType", }; for (auto si = settings_.begin(); si != settings_.end(); ++si) { auto key = si.name(); if (valid_keys.count(key)) continue; if (invalid) (*invalid)[key] = *si; else return false; } return invalid ? invalid->empty() : true; } Value& StreamWriterBuilder::operator[](const String& key) { return settings_[key]; } // static void StreamWriterBuilder::setDefaults(Json::Value* settings) { //! [StreamWriterBuilderDefaults] (*settings)["commentStyle"] = "All"; (*settings)["indentation"] = "\t"; (*settings)["enableYAMLCompatibility"] = false; (*settings)["dropNullPlaceholders"] = false; (*settings)["useSpecialFloats"] = false; (*settings)["emitUTF8"] = false; (*settings)["precision"] = 17; (*settings)["precisionType"] = "significant"; //! [StreamWriterBuilderDefaults] } String writeString(StreamWriter::Factory const& factory, Value const& root) { OStringStream sout; StreamWriterPtr const writer(factory.newStreamWriter()); writer->write(root, &sout); return sout.str(); } OStream& operator<<(OStream& sout, Value const& root) { StreamWriterBuilder builder; StreamWriterPtr const writer(builder.newStreamWriter()); writer->write(root, &sout); return sout; } } // namespace Json mstflint-4.26.0/ext_libs/json/json_tool.h0000644000175000017500000000751114522641732020650 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef LIB_JSONCPP_JSON_TOOL_H_INCLUDED #define LIB_JSONCPP_JSON_TOOL_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include #endif // Also support old flag NO_LOCALE_SUPPORT #ifdef NO_LOCALE_SUPPORT #define JSONCPP_NO_LOCALE_SUPPORT #endif #ifndef JSONCPP_NO_LOCALE_SUPPORT #include #endif /* This header provides common string manipulation support, such as UTF-8, * portable conversion from/to string... * * It is an internal header that must not be exposed. */ namespace Json { static inline char getDecimalPoint() { #ifdef JSONCPP_NO_LOCALE_SUPPORT return '\0'; #else struct lconv* lc = localeconv(); return lc ? *(lc->decimal_point) : '\0'; #endif } /// Converts a unicode code-point to UTF-8. static inline String codePointToUTF8(unsigned int cp) { String result; // based on description from http://en.wikipedia.org/wiki/UTF-8 if (cp <= 0x7f) { result.resize(1); result[0] = static_cast(cp); } else if (cp <= 0x7FF) { result.resize(2); result[1] = static_cast(0x80 | (0x3f & cp)); result[0] = static_cast(0xC0 | (0x1f & (cp >> 6))); } else if (cp <= 0xFFFF) { result.resize(3); result[2] = static_cast(0x80 | (0x3f & cp)); result[1] = static_cast(0x80 | (0x3f & (cp >> 6))); result[0] = static_cast(0xE0 | (0xf & (cp >> 12))); } else if (cp <= 0x10FFFF) { result.resize(4); result[3] = static_cast(0x80 | (0x3f & cp)); result[2] = static_cast(0x80 | (0x3f & (cp >> 6))); result[1] = static_cast(0x80 | (0x3f & (cp >> 12))); result[0] = static_cast(0xF0 | (0x7 & (cp >> 18))); } return result; } enum { /// Constant that specify the size of the buffer that must be passed to /// uintToString. uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1 }; // Defines a char buffer for use with uintToString(). using UIntToStringBuffer = char[uintToStringBufferSize]; /** Converts an unsigned integer to string. * @param value Unsigned integer to convert to string * @param current Input/Output string buffer. * Must have at least uintToStringBufferSize chars free. */ static inline void uintToString(LargestUInt value, char*& current) { *--current = 0; do { *--current = static_cast(value % 10U + static_cast('0')); value /= 10; } while (value != 0); } /** Change ',' to '.' everywhere in buffer. * * We had a sophisticated way, but it did not work in WinCE. * @see https://github.com/open-source-parsers/jsoncpp/pull/9 */ template Iter fixNumericLocale(Iter begin, Iter end) { for (; begin != end; ++begin) { if (*begin == ',') { *begin = '.'; } } return begin; } template void fixNumericLocaleInput(Iter begin, Iter end) { char decimalPoint = getDecimalPoint(); if (decimalPoint == '\0' || decimalPoint == '.') { return; } for (; begin != end; ++begin) { if (*begin == '.') { *begin = decimalPoint; } } } /** * Return iterator that would be the new end of the range [begin,end), if we * were to delete zeros in the end of string, but not the last zero before '.'. */ template Iter fixZerosInTheEnd(Iter begin, Iter end, unsigned int precision) { for (; begin != end; --end) { if (*(end - 1) != '0') { return end; } // Don't delete the last zero before the decimal point. if (begin != (end - 1) && begin != (end - 2) && *(end - 2) == '.') { if (precision) { return end; } return end - 2; } } return end; } } // namespace Json #endif // LIB_JSONCPP_JSON_TOOL_H_INCLUDED mstflint-4.26.0/ext_libs/json/LICENSE0000644000175000017500000000515014522641732017473 0ustar tzafrirctzafrircThe JsonCpp library's source code, including accompanying documentation, tests and demonstration applications, are licensed under the following conditions... The author (Baptiste Lepilleur) explicitly disclaims copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, this software is released into the Public Domain. In jurisdictions which do not recognize Public Domain property (e.g. Germany as of 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is released under the terms of the MIT License (see below). In jurisdictions which recognize Public Domain property, the user of this software may choose to accept it either as 1) Public Domain, 2) under the conditions of the MIT License (see below), or 3) under the terms of dual Public Domain/MIT License conditions described here, as they choose. The MIT License is about as close to Public Domain as a license can get, and is described in clear, concise terms at: http://en.wikipedia.org/wiki/MIT_License The full text of the MIT License follows: ======================================================================== Copyright (c) 2007-2010 Baptiste Lepilleur Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================== (END LICENSE TEXT) The MIT license is compatible with both the GPL and commercial software, affording one all of the rights of Public Domain with the minor nuisance of being required to keep the above copyright notice and license text in the source code. Note also that by accepting the Public Domain "license" you can re-license your copy using whatever license you like.mstflint-4.26.0/ext_libs/json/json/0000755000175000017500000000000014522641732017436 5ustar tzafrirctzafrircmstflint-4.26.0/ext_libs/json/json/config.h0000755000175000017500000001223014522641732021055 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_CONFIG_H_INCLUDED #define JSON_CONFIG_H_INCLUDED #include #include #include #include #include #include #include #include // If non-zero, the library uses exceptions to report bad input instead of C // assertion macros. The default is to use exceptions. #ifndef JSON_USE_EXCEPTION #define JSON_USE_EXCEPTION 1 #endif // Temporary, tracked for removal with issue #982. #ifndef JSON_USE_NULLREF #define JSON_USE_NULLREF 1 #endif /// If defined, indicates that the source file is amalgamated /// to prevent private header inclusion. /// Remarks: it is automatically defined in the generated amalgamated header. // #define JSON_IS_AMALGAMATION // Export macros for DLL visibility #if defined(JSON_DLL_BUILD) #if defined(_MSC_VER) || defined(__MINGW32__) #define JSON_API __declspec(dllexport) #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING #elif defined(__GNUC__) || defined(__clang__) #define JSON_API __attribute__((visibility("default"))) #endif // if defined(_MSC_VER) #elif defined(JSON_DLL) #if defined(_MSC_VER) || defined(__MINGW32__) #define JSON_API __declspec(dllimport) #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING #endif // if defined(_MSC_VER) #endif // ifdef JSON_DLL_BUILD #if !defined(JSON_API) #define JSON_API #endif #if defined(_MSC_VER) && _MSC_VER < 1800 #error \ "ERROR: Visual Studio 12 (2013) with _MSC_VER=1800 is the oldest supported compiler with sufficient C++11 capabilities" #endif #if defined(_MSC_VER) && _MSC_VER < 1900 // As recommended at // https://stackoverflow.com/questions/2915672/snprintf-and-visual-studio-2010 extern JSON_API int msvc_pre1900_c99_snprintf(char* outBuf, size_t size, const char* format, ...); #define jsoncpp_snprintf msvc_pre1900_c99_snprintf #else #define jsoncpp_snprintf std::snprintf #endif // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for // integer // Storages, and 64 bits integer support is disabled. // #define JSON_NO_INT64 1 // JSONCPP_OVERRIDE is maintained for backwards compatibility of external tools. // C++11 should be used directly in JSONCPP. #define JSONCPP_OVERRIDE override #ifdef __clang__ #if __has_extension(attribute_deprecated_with_message) #define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message))) #endif #elif defined(__GNUC__) // not clang (gcc comes later since clang emulates gcc) #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) #define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message))) #elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) #define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__)) #endif // GNUC version #elif defined(_MSC_VER) // MSVC (after clang because clang on Windows emulates // MSVC) #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) #endif // __clang__ || __GNUC__ || _MSC_VER #if !defined(JSONCPP_DEPRECATED) #define JSONCPP_DEPRECATED(message) #endif // if !defined(JSONCPP_DEPRECATED) #if defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 6)) #define JSON_USE_INT64_DOUBLE_CONVERSION 1 #endif #if !defined(JSON_IS_AMALGAMATION) #include "allocator.h" #include "version.h" #endif // if !defined(JSON_IS_AMALGAMATION) namespace Json { using Int = int; using UInt = unsigned int; #if defined(JSON_NO_INT64) using LargestInt = int; using LargestUInt = unsigned int; #undef JSON_HAS_INT64 #else // if defined(JSON_NO_INT64) // For Microsoft Visual use specific types as long long is not supported #if defined(_MSC_VER) // Microsoft Visual Studio using Int64 = __int64; using UInt64 = unsigned __int64; #else // if defined(_MSC_VER) // Other platforms, use long long using Int64 = int64_t; using UInt64 = uint64_t; #endif // if defined(_MSC_VER) using LargestInt = Int64; using LargestUInt = UInt64; #define JSON_HAS_INT64 #endif // if defined(JSON_NO_INT64) template using Allocator = typename std::conditional, std::allocator>::type; using String = std::basic_string, Allocator>; using IStringStream = std::basic_istringstream; using OStringStream = std::basic_ostringstream; using IStream = std::istream; using OStream = std::ostream; } // namespace Json // Legacy names (formerly macros). using JSONCPP_STRING = Json::String; using JSONCPP_ISTRINGSTREAM = Json::IStringStream; using JSONCPP_OSTRINGSTREAM = Json::OStringStream; using JSONCPP_ISTREAM = Json::IStream; using JSONCPP_OSTREAM = Json::OStream; #endif // JSON_CONFIG_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/reader.h0000755000175000017500000003350314522641732021060 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_READER_H_INCLUDED #define JSON_READER_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "json_features.h" #include "value.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include // Disable warning C4251: : needs to have dll-interface to // be used by... #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(push) #pragma warning(disable : 4251) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma pack(push, 8) namespace Json { /** \brief Unserialize a JSON document into a * Value. * * \deprecated Use CharReader and CharReaderBuilder. */ class JSON_API Reader { public: using Char = char; using Location = const Char*; /** \brief An error tagged with where in the JSON text it was encountered. * * The offsets give the [start, limit) range of bytes within the text. Note * that this is bytes, not codepoints. */ struct StructuredError { ptrdiff_t offset_start; ptrdiff_t offset_limit; String message; }; /** \brief Constructs a Reader allowing all features for parsing. * \deprecated Use CharReader and CharReaderBuilder. */ Reader(); /** \brief Constructs a Reader allowing the specified feature set for parsing. * \deprecated Use CharReader and CharReaderBuilder. */ Reader(const Features& features); /** \brief Read a Value from a JSON * document. * * \param document UTF-8 encoded string containing the document * to read. * \param[out] root Contains the root value of the document if it * was successfully parsed. * \param collectComments \c true to collect comment and allow writing * them back during serialization, \c false to * discard comments. This parameter is ignored * if Features::allowComments_ is \c false. * \return \c true if the document was successfully parsed, \c false if an * error occurred. */ bool parse(const std::string& document, Value& root, bool collectComments = true); /** \brief Read a Value from a JSON * document. * * \param beginDoc Pointer on the beginning of the UTF-8 encoded * string of the document to read. * \param endDoc Pointer on the end of the UTF-8 encoded string * of the document to read. Must be >= beginDoc. * \param[out] root Contains the root value of the document if it * was successfully parsed. * \param collectComments \c true to collect comment and allow writing * them back during serialization, \c false to * discard comments. This parameter is ignored * if Features::allowComments_ is \c false. * \return \c true if the document was successfully parsed, \c false if an * error occurred. */ bool parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments = true); /// \brief Parse from input stream. /// \see Json::operator>>(std::istream&, Json::Value&). bool parse(IStream& is, Value& root, bool collectComments = true); /** \brief Returns a user friendly string that list errors in the parsed * document. * * \return Formatted error message with the list of errors with their * location in the parsed document. An empty string is returned if no error * occurred during parsing. * \deprecated Use getFormattedErrorMessages() instead (typo fix). */ JSONCPP_DEPRECATED("Use getFormattedErrorMessages() instead.") String getFormatedErrorMessages() const; /** \brief Returns a user friendly string that list errors in the parsed * document. * * \return Formatted error message with the list of errors with their * location in the parsed document. An empty string is returned if no error * occurred during parsing. */ String getFormattedErrorMessages() const; /** \brief Returns a vector of structured errors encountered while parsing. * * \return A (possibly empty) vector of StructuredError objects. Currently * only one error can be returned, but the caller should tolerate multiple * errors. This can occur if the parser recovers from a non-fatal parse * error and then encounters additional errors. */ std::vector getStructuredErrors() const; /** \brief Add a semantic error message. * * \param value JSON Value location associated with the error * \param message The error message. * \return \c true if the error was successfully added, \c false if the Value * offset exceeds the document size. */ bool pushError(const Value& value, const String& message); /** \brief Add a semantic error message with extra context. * * \param value JSON Value location associated with the error * \param message The error message. * \param extra Additional JSON Value location to contextualize the error * \return \c true if the error was successfully added, \c false if either * Value offset exceeds the document size. */ bool pushError(const Value& value, const String& message, const Value& extra); /** \brief Return whether there are any errors. * * \return \c true if there are no errors to report \c false if errors have * occurred. */ bool good() const; private: enum TokenType { tokenEndOfStream = 0, tokenObjectBegin, tokenObjectEnd, tokenArrayBegin, tokenArrayEnd, tokenString, tokenNumber, tokenTrue, tokenFalse, tokenNull, tokenArraySeparator, tokenMemberSeparator, tokenComment, tokenError }; class Token { public: TokenType type_; Location start_; Location end_; }; class ErrorInfo { public: Token token_; String message_; Location extra_; }; using Errors = std::deque; bool readToken(Token& token); void skipSpaces(); bool match(const Char* pattern, int patternLength); bool readComment(); bool readCStyleComment(); bool readCppStyleComment(); bool readString(); void readNumber(); bool readValue(); bool readObject(Token& token); bool readArray(Token& token); bool decodeNumber(Token& token); bool decodeNumber(Token& token, Value& decoded); bool decodeString(Token& token); bool decodeString(Token& token, String& decoded); bool decodeDouble(Token& token); bool decodeDouble(Token& token, Value& decoded); bool decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode); bool decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& unicode); bool addError(const String& message, Token& token, Location extra = nullptr); bool recoverFromError(TokenType skipUntilToken); bool addErrorAndRecover(const String& message, Token& token, TokenType skipUntilToken); void skipUntilSpace(); Value& currentValue(); Char getNextChar(); void getLocationLineAndColumn(Location location, int& line, int& column) const; String getLocationLineAndColumn(Location location) const; void addComment(Location begin, Location end, CommentPlacement placement); void skipCommentTokens(Token& token); static bool containsNewLine(Location begin, Location end); static String normalizeEOL(Location begin, Location end); using Nodes = std::stack; Nodes nodes_; Errors errors_; String document_; Location begin_{}; Location end_{}; Location current_{}; Location lastValueEnd_{}; Value* lastValue_{}; String commentsBefore_; Features features_; bool collectComments_{}; }; // Reader /** Interface for reading JSON from a char array. */ class JSON_API CharReader { public: virtual ~CharReader() = default; /** \brief Read a Value from a JSON * document. The document must be a UTF-8 encoded string containing the * document to read. * * \param beginDoc Pointer on the beginning of the UTF-8 encoded string * of the document to read. * \param endDoc Pointer on the end of the UTF-8 encoded string of the * document to read. Must be >= beginDoc. * \param[out] root Contains the root value of the document if it was * successfully parsed. * \param[out] errs Formatted error messages (if not NULL) a user * friendly string that lists errors in the parsed * document. * \return \c true if the document was successfully parsed, \c false if an * error occurred. */ virtual bool parse(char const* beginDoc, char const* endDoc, Value* root, String* errs) = 0; class JSON_API Factory { public: virtual ~Factory() = default; /** \brief Allocate a CharReader via operator new(). * \throw std::exception if something goes wrong (e.g. invalid settings) */ virtual CharReader* newCharReader() const = 0; }; // Factory }; // CharReader /** \brief Build a CharReader implementation. * * Usage: * \code * using namespace Json; * CharReaderBuilder builder; * builder["collectComments"] = false; * Value value; * String errs; * bool ok = parseFromStream(builder, std::cin, &value, &errs); * \endcode */ class JSON_API CharReaderBuilder : public CharReader::Factory { public: // Note: We use a Json::Value so that we can add data-members to this class // without a major version bump. /** Configuration of this builder. * These are case-sensitive. * Available settings (case-sensitive): * - `"collectComments": false or true` * - true to collect comment and allow writing them back during * serialization, false to discard comments. This parameter is ignored * if allowComments is false. * - `"allowComments": false or true` * - true if comments are allowed. * - `"allowTrailingCommas": false or true` * - true if trailing commas in objects and arrays are allowed. * - `"strictRoot": false or true` * - true if root must be either an array or an object value * - `"allowDroppedNullPlaceholders": false or true` * - true if dropped null placeholders are allowed. (See * StreamWriterBuilder.) * - `"allowNumericKeys": false or true` * - true if numeric object keys are allowed. * - `"allowSingleQuotes": false or true` * - true if '' are allowed for strings (both keys and values) * - `"stackLimit": integer` * - Exceeding stackLimit (recursive depth of `readValue()`) will cause an * exception. * - This is a security issue (seg-faults caused by deeply nested JSON), so * the default is low. * - `"failIfExtra": false or true` * - If true, `parse()` returns false when extra non-whitespace trails the * JSON value in the input string. * - `"rejectDupKeys": false or true` * - If true, `parse()` returns false when a key is duplicated within an * object. * - `"allowSpecialFloats": false or true` * - If true, special float values (NaNs and infinities) are allowed and * their values are lossfree restorable. * - `"skipBom": false or true` * - If true, if the input starts with the Unicode byte order mark (BOM), * it is skipped. * * You can examine 'settings_` yourself to see the defaults. You can also * write and read them just like any JSON Value. * \sa setDefaults() */ Json::Value settings_; CharReaderBuilder(); ~CharReaderBuilder() override; CharReader* newCharReader() const override; /** \return true if 'settings' are legal and consistent; * otherwise, indicate bad settings via 'invalid'. */ bool validate(Json::Value* invalid) const; /** A simple way to update a specific setting. */ Value& operator[](const String& key); /** Called by ctor, but you can use this to reset settings_. * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_reader.cpp CharReaderBuilderDefaults */ static void setDefaults(Json::Value* settings); /** Same as old Features::strictMode(). * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_reader.cpp CharReaderBuilderStrictMode */ static void strictMode(Json::Value* settings); }; /** Consume entire stream and use its begin/end. * Someday we might have a real StreamReader, but for now this * is convenient. */ bool JSON_API parseFromStream(CharReader::Factory const&, IStream&, Value* root, String* errs); /** \brief Read from 'sin' into 'root'. * * Always keep comments from the input JSON. * * This can be used to read a file into a particular sub-object. * For example: * \code * Json::Value root; * cin >> root["dir"]["file"]; * cout << root; * \endcode * Result: * \verbatim * { * "dir": { * "file": { * // The input stream JSON would be nested here. * } * } * } * \endverbatim * \throw std::exception on parse error. * \see Json::operator<<() */ JSON_API IStream& operator>>(IStream&, Value&); } // namespace Json #pragma pack(pop) #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #endif // JSON_READER_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/json.h0000755000175000017500000000067714522641732020575 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_JSON_H_INCLUDED #define JSON_JSON_H_INCLUDED #include "config.h" #include "json_features.h" #include "reader.h" #include "value.h" #include "writer.h" #endif // JSON_JSON_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/version.h0000644000175000017500000000170614522641732021300 0ustar tzafrirctzafrirc#ifndef JSON_VERSION_H_INCLUDED #define JSON_VERSION_H_INCLUDED // Note: version must be updated in three places when doing a release. This // annoying process ensures that amalgamate, CMake, and meson all report the // correct version. // 1. /meson.build // 2. /include/json/version.h // 3. /CMakeLists.txt // IMPORTANT: also update the SOVERSION!! #define JSONCPP_VERSION_STRING "1.9.5" #define JSONCPP_VERSION_MAJOR 1 #define JSONCPP_VERSION_MINOR 9 #define JSONCPP_VERSION_PATCH 5 #define JSONCPP_VERSION_QUALIFIER #define JSONCPP_VERSION_HEXA \ ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \ (JSONCPP_VERSION_PATCH << 8)) #ifdef JSONCPP_USING_SECURE_MEMORY #undef JSONCPP_USING_SECURE_MEMORY #endif #define JSONCPP_USING_SECURE_MEMORY 0 // If non-zero, the library zeroes any memory that it has allocated before // it frees its memory. #endif // JSON_VERSION_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/forwards.h0000755000175000017500000000162514522641732021445 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_FORWARDS_H_INCLUDED #define JSON_FORWARDS_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "config.h" #endif // if !defined(JSON_IS_AMALGAMATION) namespace Json { // writer.h class StreamWriter; class StreamWriterBuilder; class Writer; class FastWriter; class StyledWriter; class StyledStreamWriter; // reader.h class Reader; class CharReader; class CharReaderBuilder; // json_features.h class Features; // value.h using ArrayIndex = unsigned int; class StaticString; class Path; class PathArgument; class Value; class ValueIteratorBase; class ValueIterator; class ValueConstIterator; } // namespace Json #endif // JSON_FORWARDS_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/allocator.h0000644000175000017500000000461714522641732021577 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_ALLOCATOR_H_INCLUDED #define JSON_ALLOCATOR_H_INCLUDED #include #include #pragma pack(push, 8) namespace Json { template class SecureAllocator { public: // Type definitions using value_type = T; using pointer = T*; using const_pointer = const T*; using reference = T&; using const_reference = const T&; using size_type = std::size_t; using difference_type = std::ptrdiff_t; /** * Allocate memory for N items using the standard allocator. */ pointer allocate(size_type n) { // allocate using "global operator new" return static_cast(::operator new(n * sizeof(T))); } /** * Release memory which was allocated for N items at pointer P. * * The memory block is filled with zeroes before being released. */ void deallocate(pointer p, size_type n) { // memset_s is used because memset may be optimized away by the compiler memset_s(p, n * sizeof(T), 0, n * sizeof(T)); // free using "global operator delete" ::operator delete(p); } /** * Construct an item in-place at pointer P. */ template void construct(pointer p, Args&&... args) { // construct using "placement new" and "perfect forwarding" ::new (static_cast(p)) T(std::forward(args)...); } size_type max_size() const { return size_t(-1) / sizeof(T); } pointer address(reference x) const { return std::addressof(x); } const_pointer address(const_reference x) const { return std::addressof(x); } /** * Destroy an item in-place at pointer P. */ void destroy(pointer p) { // destroy using "explicit destructor" p->~T(); } // Boilerplate SecureAllocator() {} template SecureAllocator(const SecureAllocator&) {} template struct rebind { using other = SecureAllocator; }; }; template bool operator==(const SecureAllocator&, const SecureAllocator&) { return true; } template bool operator!=(const SecureAllocator&, const SecureAllocator&) { return false; } } // namespace Json #pragma pack(pop) #endif // JSON_ALLOCATOR_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/json_features.h0000644000175000017500000000340114522641732022454 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_FEATURES_H_INCLUDED #define JSON_FEATURES_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "forwards.h" #endif // if !defined(JSON_IS_AMALGAMATION) #pragma pack(push, 8) namespace Json { /** \brief Configuration passed to reader and writer. * This configuration object can be used to force the Reader or Writer * to behave in a standard conforming way. */ class JSON_API Features { public: /** \brief A configuration that allows all features and assumes all strings * are UTF-8. * - C & C++ comments are allowed * - Root object can be any JSON value * - Assumes Value strings are encoded in UTF-8 */ static Features all(); /** \brief A configuration that is strictly compatible with the JSON * specification. * - Comments are forbidden. * - Root object must be either an array or an object value. * - Assumes Value strings are encoded in UTF-8 */ static Features strictMode(); /** \brief Initialize the configuration like JsonConfig::allFeatures; */ Features(); /// \c true if comments are allowed. Default: \c true. bool allowComments_{true}; /// \c true if root must be either an array or an object value. Default: \c /// false. bool strictRoot_{false}; /// \c true if dropped null placeholders are allowed. Default: \c false. bool allowDroppedNullPlaceholders_{false}; /// \c true if numeric object key are allowed. Default: \c false. bool allowNumericKeys_{false}; }; } // namespace Json #pragma pack(pop) #endif // JSON_FEATURES_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/writer.h0000755000175000017500000002747614522641732021146 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_WRITER_H_INCLUDED #define JSON_WRITER_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "value.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include // Disable warning C4251: : needs to have dll-interface to // be used by... #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) && defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4251) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma pack(push, 8) namespace Json { class Value; /** * * Usage: * \code * using namespace Json; * void writeToStdout(StreamWriter::Factory const& factory, Value const& value) * { std::unique_ptr const writer( factory.newStreamWriter()); * writer->write(value, &std::cout); * std::cout << std::endl; // add lf and flush * } * \endcode */ class JSON_API StreamWriter { protected: OStream* sout_; // not owned; will not delete public: StreamWriter(); virtual ~StreamWriter(); /** Write Value into document as configured in sub-class. * Do not take ownership of sout, but maintain a reference during function. * \pre sout != NULL * \return zero on success (For now, we always return zero, so check the * stream instead.) \throw std::exception possibly, depending on * configuration */ virtual int write(Value const& root, OStream* sout) = 0; /** \brief A simple abstract factory. */ class JSON_API Factory { public: virtual ~Factory(); /** \brief Allocate a CharReader via operator new(). * \throw std::exception if something goes wrong (e.g. invalid settings) */ virtual StreamWriter* newStreamWriter() const = 0; }; // Factory }; // StreamWriter /** \brief Write into stringstream, then return string, for convenience. * A StreamWriter will be created from the factory, used, and then deleted. */ String JSON_API writeString(StreamWriter::Factory const& factory, Value const& root); /** \brief Build a StreamWriter implementation. * Usage: * \code * using namespace Json; * Value value = ...; * StreamWriterBuilder builder; * builder["commentStyle"] = "None"; * builder["indentation"] = " "; // or whatever you like * std::unique_ptr writer( * builder.newStreamWriter()); * writer->write(value, &std::cout); * std::cout << std::endl; // add lf and flush * \endcode */ class JSON_API StreamWriterBuilder : public StreamWriter::Factory { public: // Note: We use a Json::Value so that we can add data-members to this class // without a major version bump. /** Configuration of this builder. * Available settings (case-sensitive): * - "commentStyle": "None" or "All" * - "indentation": "". * - Setting this to an empty string also omits newline characters. * - "enableYAMLCompatibility": false or true * - slightly change the whitespace around colons * - "dropNullPlaceholders": false or true * - Drop the "null" string from the writer's output for nullValues. * Strictly speaking, this is not valid JSON. But when the output is being * fed to a browser's JavaScript, it makes for smaller output and the * browser can handle the output just fine. * - "useSpecialFloats": false or true * - If true, outputs non-finite floating point values in the following way: * NaN values as "NaN", positive infinity as "Infinity", and negative * infinity as "-Infinity". * - "precision": int * - Number of precision digits for formatting of real values. * - "precisionType": "significant"(default) or "decimal" * - Type of precision for formatting of real values. * - "emitUTF8": false or true * - If true, outputs raw UTF8 strings instead of escaping them. * You can examine 'settings_` yourself * to see the defaults. You can also write and read them just like any * JSON Value. * \sa setDefaults() */ Json::Value settings_; StreamWriterBuilder(); ~StreamWriterBuilder() override; /** * \throw std::exception if something goes wrong (e.g. invalid settings) */ StreamWriter* newStreamWriter() const override; /** \return true if 'settings' are legal and consistent; * otherwise, indicate bad settings via 'invalid'. */ bool validate(Json::Value* invalid) const; /** A simple way to update a specific setting. */ Value& operator[](const String& key); /** Called by ctor, but you can use this to reset settings_. * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_writer.cpp StreamWriterBuilderDefaults */ static void setDefaults(Json::Value* settings); }; /** \brief Abstract class for writers. * \deprecated Use StreamWriter. (And really, this is an implementation detail.) */ class JSON_API Writer { public: virtual ~Writer(); virtual String write(const Value& root) = 0; }; /** \brief Outputs a Value in JSON format *without formatting (not human friendly). * * The JSON document is written in a single line. It is not intended for 'human' *consumption, * but may be useful to support feature such as RPC where bandwidth is limited. * \sa Reader, Value * \deprecated Use StreamWriterBuilder. */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4996) // Deriving from deprecated class #endif class JSON_API FastWriter : public Writer { public: FastWriter(); ~FastWriter() override = default; void enableYAMLCompatibility(); /** \brief Drop the "null" string from the writer's output for nullValues. * Strictly speaking, this is not valid JSON. But when the output is being * fed to a browser's JavaScript, it makes for smaller output and the * browser can handle the output just fine. */ void dropNullPlaceholders(); void omitEndingLineFeed(); public: // overridden from Writer String write(const Value& root) override; private: void writeValue(const Value& value); String document_; bool yamlCompatibilityEnabled_{false}; bool dropNullPlaceholders_{false}; bool omitEndingLineFeed_{true}; }; #if defined(_MSC_VER) #pragma warning(pop) #endif /** \brief Writes a Value in JSON format in a *human friendly way. * * The rules for line break and indent are as follow: * - Object value: * - if empty then print {} without indent and line break * - if not empty the print '{', line break & indent, print one value per *line * and then unindent and line break and print '}'. * - Array value: * - if empty then print [] without indent and line break * - if the array contains no object value, empty array or some other value *types, * and all the values fit on one lines, then print the array on a single *line. * - otherwise, it the values do not fit on one line, or the array contains * object or non empty array, then print one value per line. * * If the Value have comments then they are outputed according to their *#CommentPlacement. * * \sa Reader, Value, Value::setComment() * \deprecated Use StreamWriterBuilder. */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4996) // Deriving from deprecated class #endif class JSON_API StyledWriter : public Writer { public: StyledWriter(); ~StyledWriter() override = default; public: // overridden from Writer /** \brief Serialize a Value in JSON format. * \param root Value to serialize. * \return String containing the JSON document that represents the root value. */ String write(const Value& root) override; private: void writeValue(const Value& value); void writeArrayValue(const Value& value); bool isMultilineArray(const Value& value); void pushValue(const String& value); void writeIndent(); void writeWithIndent(const String& value); void indent(); void unindent(); void writeCommentBeforeValue(const Value& root); void writeCommentAfterValueOnSameLine(const Value& root); static bool hasCommentForValue(const Value& value); static String normalizeEOL(const String& text); using ChildValues = std::vector; ChildValues childValues_; String document_; String indentString_; unsigned int rightMargin_{74}; unsigned int indentSize_{3}; bool addChildValues_{false}; }; #if defined(_MSC_VER) #pragma warning(pop) #endif /** \brief Writes a Value in JSON format in a human friendly way, to a stream rather than to a string. * * The rules for line break and indent are as follow: * - Object value: * - if empty then print {} without indent and line break * - if not empty the print '{', line break & indent, print one value per line * and then unindent and line break and print '}'. * - Array value: * - if empty then print [] without indent and line break * - if the array contains no object value, empty array or some other value types, * and all the values fit on one lines, then print the array on a single line. * - otherwise, it the values do not fit on one line, or the array contains * object or non empty array, then print one value per line. * * If the Value have comments then they are outputed according to their #CommentPlacement. * * \sa Reader, Value, Value::setComment() * \deprecated Use StreamWriterBuilder. */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4996) // Deriving from deprecated class #endif class JSON_API StyledStreamWriter { public: /** * \param indentation Each level will be indented by this amount extra. */ StyledStreamWriter(String indentation = "\t"); ~StyledStreamWriter() = default; public: /** \brief Serialize a Value in JSON format. * \param out Stream to write to. (Can be ostringstream, e.g.) * \param root Value to serialize. * \note There is no point in deriving from Writer, since write() should not * return a value. */ void write(OStream& out, const Value& root); private: void writeValue(const Value& value); void writeArrayValue(const Value& value); bool isMultilineArray(const Value& value); void pushValue(const String& value); void writeIndent(); void writeWithIndent(const String& value); void indent(); void unindent(); void writeCommentBeforeValue(const Value& root); void writeCommentAfterValueOnSameLine(const Value& root); static bool hasCommentForValue(const Value& value); static String normalizeEOL(const String& text); using ChildValues = std::vector; ChildValues childValues_; OStream* document_; String indentString_; unsigned int rightMargin_{74}; String indentation_; bool addChildValues_ : 1; bool indented_ : 1; }; #if defined(_MSC_VER) #pragma warning(pop) #endif #if defined(JSON_HAS_INT64) String JSON_API valueToString(Int value); String JSON_API valueToString(UInt value); #endif // if defined(JSON_HAS_INT64) String JSON_API valueToString(LargestInt value); String JSON_API valueToString(LargestUInt value); String JSON_API valueToString( double value, unsigned int precision = Value::defaultRealPrecision, PrecisionType precisionType = PrecisionType::significantDigits); String JSON_API valueToString(bool value); String JSON_API valueToQuotedString(const char* value); /// \brief Output using the StyledStreamWriter. /// \see Json::operator>>() JSON_API OStream& operator<<(OStream&, const Value& root); } // namespace Json #pragma pack(pop) #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #endif // JSON_WRITER_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/assertions.h0000644000175000017500000000540114522641732022001 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_ASSERTIONS_H_INCLUDED #define JSON_ASSERTIONS_H_INCLUDED #include #include #if !defined(JSON_IS_AMALGAMATION) #include "config.h" #endif // if !defined(JSON_IS_AMALGAMATION) /** It should not be possible for a maliciously designed file to * cause an abort() or seg-fault, so these macros are used only * for pre-condition violations and internal logic errors. */ #if JSON_USE_EXCEPTION // @todo <= add detail about condition in exception #define JSON_ASSERT(condition) \ do { \ if (!(condition)) { \ Json::throwLogicError("assert json failed"); \ } \ } while (0) #define JSON_FAIL_MESSAGE(message) \ do { \ OStringStream oss; \ oss << message; \ Json::throwLogicError(oss.str()); \ abort(); \ } while (0) #else // JSON_USE_EXCEPTION #define JSON_ASSERT(condition) assert(condition) // The call to assert() will show the failure message in debug builds. In // release builds we abort, for a core-dump or debugger. #define JSON_FAIL_MESSAGE(message) \ { \ OStringStream oss; \ oss << message; \ assert(false && oss.str().c_str()); \ abort(); \ } #endif #define JSON_ASSERT_MESSAGE(condition, message) \ do { \ if (!(condition)) { \ JSON_FAIL_MESSAGE(message); \ } \ } while (0) #endif // JSON_ASSERTIONS_H_INCLUDED mstflint-4.26.0/ext_libs/json/json/value.h0000755000175000017500000007312714522641732020740 0ustar tzafrirctzafrirc// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_H_INCLUDED #define JSON_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "forwards.h" #endif // if !defined(JSON_IS_AMALGAMATION) // Conditional NORETURN attribute on the throw functions would: // a) suppress false positives from static code analysis // b) possibly improve optimization opportunities. #if !defined(JSONCPP_NORETURN) #if defined(_MSC_VER) && _MSC_VER == 1800 #define JSONCPP_NORETURN __declspec(noreturn) #else #define JSONCPP_NORETURN [[noreturn]] #endif #endif // Support for '= delete' with template declarations was a late addition // to the c++11 standard and is rejected by clang 3.8 and Apple clang 8.2 // even though these declare themselves to be c++11 compilers. #if !defined(JSONCPP_TEMPLATE_DELETE) #if defined(__clang__) && defined(__apple_build_version__) #if __apple_build_version__ <= 8000042 #define JSONCPP_TEMPLATE_DELETE #endif #elif defined(__clang__) #if __clang_major__ == 3 && __clang_minor__ <= 8 #define JSONCPP_TEMPLATE_DELETE #endif #endif #if !defined(JSONCPP_TEMPLATE_DELETE) #define JSONCPP_TEMPLATE_DELETE = delete #endif #endif #include #include #include #include #include #include // Disable warning C4251: : needs to have dll-interface to // be used by... #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(push) #pragma warning(disable : 4251 4275) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma pack(push, 8) /** \brief JSON (JavaScript Object Notation). */ namespace Json { #if JSON_USE_EXCEPTION /** Base class for all exceptions we throw. * * We use nothing but these internally. Of course, STL can throw others. */ class JSON_API Exception : public std::exception { public: Exception(String msg); ~Exception() noexcept override; char const* what() const noexcept override; protected: String msg_; }; /** Exceptions which the user cannot easily avoid. * * E.g. out-of-memory (when we use malloc), stack-overflow, malicious input * * \remark derived from Json::Exception */ class JSON_API RuntimeError : public Exception { public: RuntimeError(String const& msg); }; /** Exceptions thrown by JSON_ASSERT/JSON_FAIL macros. * * These are precondition-violations (user bugs) and internal errors (our bugs). * * \remark derived from Json::Exception */ class JSON_API LogicError : public Exception { public: LogicError(String const& msg); }; #endif /// used internally JSONCPP_NORETURN void throwRuntimeError(String const& msg); /// used internally JSONCPP_NORETURN void throwLogicError(String const& msg); /** \brief Type of the value held by a Value object. */ enum ValueType { nullValue = 0, ///< 'null' value intValue, ///< signed integer value uintValue, ///< unsigned integer value realValue, ///< double value stringValue, ///< UTF-8 string value booleanValue, ///< bool value arrayValue, ///< array value (ordered list) objectValue ///< object value (collection of name/value pairs). }; enum CommentPlacement { commentBefore = 0, ///< a comment placed on the line before a value commentAfterOnSameLine, ///< a comment just after a value on the same line commentAfter, ///< a comment on the line after a value (only make sense for /// root value) numberOfCommentPlacement }; /** \brief Type of precision for formatting of real values. */ enum PrecisionType { significantDigits = 0, ///< we set max number of significant digits in string decimalPlaces ///< we set max number of digits after "." in string }; /** \brief Lightweight wrapper to tag static string. * * Value constructor and objectValue member assignment takes advantage of the * StaticString and avoid the cost of string duplication when storing the * string or the member name. * * Example of usage: * \code * Json::Value aValue( StaticString("some text") ); * Json::Value object; * static const StaticString code("code"); * object[code] = 1234; * \endcode */ class JSON_API StaticString { public: explicit StaticString(const char* czstring) : c_str_(czstring) {} operator const char*() const { return c_str_; } const char* c_str() const { return c_str_; } private: const char* c_str_; }; /** \brief Represents a JSON value. * * This class is a discriminated union wrapper that can represents a: * - signed integer [range: Value::minInt - Value::maxInt] * - unsigned integer (range: 0 - Value::maxUInt) * - double * - UTF-8 string * - boolean * - 'null' * - an ordered list of Value * - collection of name/value pairs (javascript object) * * The type of the held value is represented by a #ValueType and * can be obtained using type(). * * Values of an #objectValue or #arrayValue can be accessed using operator[]() * methods. * Non-const methods will automatically create the a #nullValue element * if it does not exist. * The sequence of an #arrayValue will be automatically resized and initialized * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue. * * The get() methods can be used to obtain default value in the case the * required element does not exist. * * It is possible to iterate over the list of member keys of an object using * the getMemberNames() method. * * \note #Value string-length fit in size_t, but keys must be < 2^30. * (The reason is an implementation detail.) A #CharReader will raise an * exception if a bound is exceeded to avoid security holes in your app, * but the Value API does *not* check bounds. That is the responsibility * of the caller. */ class JSON_API Value { friend class ValueIteratorBase; public: using Members = std::vector; using iterator = ValueIterator; using const_iterator = ValueConstIterator; using UInt = Json::UInt; using Int = Json::Int; #if defined(JSON_HAS_INT64) using UInt64 = Json::UInt64; using Int64 = Json::Int64; #endif // defined(JSON_HAS_INT64) using LargestInt = Json::LargestInt; using LargestUInt = Json::LargestUInt; using ArrayIndex = Json::ArrayIndex; // Required for boost integration, e. g. BOOST_TEST using value_type = std::string; #if JSON_USE_NULLREF // Binary compatibility kludges, do not use. static const Value& null; static const Value& nullRef; #endif // null and nullRef are deprecated, use this instead. static Value const& nullSingleton(); /// Minimum signed integer value that can be stored in a Json::Value. static constexpr LargestInt minLargestInt = LargestInt(~(LargestUInt(-1) / 2)); /// Maximum signed integer value that can be stored in a Json::Value. static constexpr LargestInt maxLargestInt = LargestInt(LargestUInt(-1) / 2); /// Maximum unsigned integer value that can be stored in a Json::Value. static constexpr LargestUInt maxLargestUInt = LargestUInt(-1); /// Minimum signed int value that can be stored in a Json::Value. static constexpr Int minInt = Int(~(UInt(-1) / 2)); /// Maximum signed int value that can be stored in a Json::Value. static constexpr Int maxInt = Int(UInt(-1) / 2); /// Maximum unsigned int value that can be stored in a Json::Value. static constexpr UInt maxUInt = UInt(-1); #if defined(JSON_HAS_INT64) /// Minimum signed 64 bits int value that can be stored in a Json::Value. static constexpr Int64 minInt64 = Int64(~(UInt64(-1) / 2)); /// Maximum signed 64 bits int value that can be stored in a Json::Value. static constexpr Int64 maxInt64 = Int64(UInt64(-1) / 2); /// Maximum unsigned 64 bits int value that can be stored in a Json::Value. static constexpr UInt64 maxUInt64 = UInt64(-1); #endif // defined(JSON_HAS_INT64) /// Default precision for real value for string representation. static constexpr UInt defaultRealPrecision = 17; // The constant is hard-coded because some compiler have trouble // converting Value::maxUInt64 to a double correctly (AIX/xlC). // Assumes that UInt64 is a 64 bits integer. static constexpr double maxUInt64AsDouble = 18446744073709551615.0; // Workaround for bug in the NVIDIAs CUDA 9.1 nvcc compiler // when using gcc and clang backend compilers. CZString // cannot be defined as private. See issue #486 #ifdef __NVCC__ public: #else private: #endif #ifndef JSONCPP_DOC_EXCLUDE_IMPLEMENTATION class CZString { public: enum DuplicationPolicy { noDuplication = 0, duplicate, duplicateOnCopy }; CZString(ArrayIndex index); CZString(char const* str, unsigned length, DuplicationPolicy allocate); CZString(CZString const& other); CZString(CZString&& other) noexcept; ~CZString(); CZString& operator=(const CZString& other); CZString& operator=(CZString&& other) noexcept; bool operator<(CZString const& other) const; bool operator==(CZString const& other) const; ArrayIndex index() const; // const char* c_str() const; ///< \deprecated char const* data() const; unsigned length() const; bool isStaticString() const; private: void swap(CZString& other); struct StringStorage { unsigned policy_ : 2; unsigned length_ : 30; // 1GB max }; char const* cstr_; // actually, a prefixed string, unless policy is noDup union { ArrayIndex index_; StringStorage storage_; }; }; public: typedef std::map ObjectValues; #endif // ifndef JSONCPP_DOC_EXCLUDE_IMPLEMENTATION public: /** * \brief Create a default Value of the given type. * * This is a very useful constructor. * To create an empty array, pass arrayValue. * To create an empty object, pass objectValue. * Another Value can then be set to this one by assignment. * This is useful since clear() and resize() will not alter types. * * Examples: * \code * Json::Value null_value; // null * Json::Value arr_value(Json::arrayValue); // [] * Json::Value obj_value(Json::objectValue); // {} * \endcode */ Value(ValueType type = nullValue); Value(Int value); Value(UInt value); #if defined(JSON_HAS_INT64) Value(Int64 value); Value(UInt64 value); #endif // if defined(JSON_HAS_INT64) Value(double value); Value(const char* value); ///< Copy til first 0. (NULL causes to seg-fault.) Value(const char* begin, const char* end); ///< Copy all, incl zeroes. /** * \brief Constructs a value from a static string. * * Like other value string constructor but do not duplicate the string for * internal storage. The given string must remain alive after the call to * this constructor. * * \note This works only for null-terminated strings. (We cannot change the * size of this class, so we have nowhere to store the length, which might be * computed later for various operations.) * * Example of usage: * \code * static StaticString foo("some text"); * Json::Value aValue(foo); * \endcode */ Value(const StaticString& value); Value(const String& value); Value(bool value); Value(std::nullptr_t ptr) = delete; Value(const Value& other); Value(Value&& other) noexcept; ~Value(); /// \note Overwrite existing comments. To preserve comments, use /// #swapPayload(). Value& operator=(const Value& other); Value& operator=(Value&& other) noexcept; /// Swap everything. void swap(Value& other); /// Swap values but leave comments and source offsets in place. void swapPayload(Value& other); /// copy everything. void copy(const Value& other); /// copy values but leave comments and source offsets in place. void copyPayload(const Value& other); ValueType type() const; /// Compare payload only, not comments etc. bool operator<(const Value& other) const; bool operator<=(const Value& other) const; bool operator>=(const Value& other) const; bool operator>(const Value& other) const; bool operator==(const Value& other) const; bool operator!=(const Value& other) const; int compare(const Value& other) const; const char* asCString() const; ///< Embedded zeroes could cause you trouble! #if JSONCPP_USING_SECURE_MEMORY unsigned getCStringLength() const; // Allows you to understand the length of // the CString #endif String asString() const; ///< Embedded zeroes are possible. /** Get raw char* of string-value. * \return false if !string. (Seg-fault if str or end are NULL.) */ bool getString(char const** begin, char const** end) const; Int asInt() const; UInt asUInt() const; #if defined(JSON_HAS_INT64) Int64 asInt64() const; UInt64 asUInt64() const; #endif // if defined(JSON_HAS_INT64) LargestInt asLargestInt() const; LargestUInt asLargestUInt() const; float asFloat() const; double asDouble() const; bool asBool() const; bool isNull() const; bool isBool() const; bool isInt() const; bool isInt64() const; bool isUInt() const; bool isUInt64() const; bool isIntegral() const; bool isDouble() const; bool isNumeric() const; bool isString() const; bool isArray() const; bool isObject() const; /// The `as` and `is` member function templates and specializations. template T as() const JSONCPP_TEMPLATE_DELETE; template bool is() const JSONCPP_TEMPLATE_DELETE; bool isConvertibleTo(ValueType other) const; /// Number of values in array or object ArrayIndex size() const; /// \brief Return true if empty array, empty object, or null; /// otherwise, false. bool empty() const; /// Return !isNull() explicit operator bool() const; /// Remove all object members and array elements. /// \pre type() is arrayValue, objectValue, or nullValue /// \post type() is unchanged void clear(); /// Resize the array to newSize elements. /// New elements are initialized to null. /// May only be called on nullValue or arrayValue. /// \pre type() is arrayValue or nullValue /// \post type() is arrayValue void resize(ArrayIndex newSize); //@{ /// Access an array element (zero based index). If the array contains less /// than index element, then null value are inserted in the array so that /// its size is index+1. /// (You may need to say 'value[0u]' to get your compiler to distinguish /// this from the operator[] which takes a string.) Value& operator[](ArrayIndex index); Value& operator[](int index); //@} //@{ /// Access an array element (zero based index). /// (You may need to say 'value[0u]' to get your compiler to distinguish /// this from the operator[] which takes a string.) const Value& operator[](ArrayIndex index) const; const Value& operator[](int index) const; //@} /// If the array contains at least index+1 elements, returns the element /// value, otherwise returns defaultValue. Value get(ArrayIndex index, const Value& defaultValue) const; /// Return true if index < size(). bool isValidIndex(ArrayIndex index) const; /// \brief Append value to array at the end. /// /// Equivalent to jsonvalue[jsonvalue.size()] = value; Value& append(const Value& value); Value& append(Value&& value); /// \brief Insert value in array at specific index bool insert(ArrayIndex index, const Value& newValue); bool insert(ArrayIndex index, Value&& newValue); /// Access an object value by name, create a null member if it does not exist. /// \note Because of our implementation, keys are limited to 2^30 -1 chars. /// Exceeding that will cause an exception. Value& operator[](const char* key); /// Access an object value by name, returns null if there is no member with /// that name. const Value& operator[](const char* key) const; /// Access an object value by name, create a null member if it does not exist. /// \param key may contain embedded nulls. Value& operator[](const String& key); /// Access an object value by name, returns null if there is no member with /// that name. /// \param key may contain embedded nulls. const Value& operator[](const String& key) const; /** \brief Access an object value by name, create a null member if it does not * exist. * * If the object has no entry for that name, then the member name used to * store the new entry is not duplicated. * Example of use: * \code * Json::Value object; * static const StaticString code("code"); * object[code] = 1234; * \endcode */ Value& operator[](const StaticString& key); /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy Value get(const char* key, const Value& defaultValue) const; /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy /// \note key may contain embedded nulls. Value get(const char* begin, const char* end, const Value& defaultValue) const; /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy /// \param key may contain embedded nulls. Value get(const String& key, const Value& defaultValue) const; /// Most general and efficient version of isMember()const, get()const, /// and operator[]const /// \note As stated elsewhere, behavior is undefined if (end-begin) >= 2^30 Value const* find(char const* begin, char const* end) const; /// Most general and efficient version of object-mutators. /// \note As stated elsewhere, behavior is undefined if (end-begin) >= 2^30 /// \return non-zero, but JSON_ASSERT if this is neither object nor nullValue. Value* demand(char const* begin, char const* end); /// \brief Remove and return the named member. /// /// Do nothing if it did not exist. /// \pre type() is objectValue or nullValue /// \post type() is unchanged void removeMember(const char* key); /// Same as removeMember(const char*) /// \param key may contain embedded nulls. void removeMember(const String& key); /// Same as removeMember(const char* begin, const char* end, Value* removed), /// but 'key' is null-terminated. bool removeMember(const char* key, Value* removed); /** \brief Remove the named map member. * * Update 'removed' iff removed. * \param key may contain embedded nulls. * \return true iff removed (no exceptions) */ bool removeMember(String const& key, Value* removed); /// Same as removeMember(String const& key, Value* removed) bool removeMember(const char* begin, const char* end, Value* removed); /** \brief Remove the indexed array element. * * O(n) expensive operations. * Update 'removed' iff removed. * \return true if removed (no exceptions) */ bool removeIndex(ArrayIndex index, Value* removed); /// Return true if the object has a member named key. /// \note 'key' must be null-terminated. bool isMember(const char* key) const; /// Return true if the object has a member named key. /// \param key may contain embedded nulls. bool isMember(const String& key) const; /// Same as isMember(String const& key)const bool isMember(const char* begin, const char* end) const; /// \brief Return a list of the member names. /// /// If null, return an empty list. /// \pre type() is objectValue or nullValue /// \post if type() was nullValue, it remains nullValue Members getMemberNames() const; /// \deprecated Always pass len. JSONCPP_DEPRECATED("Use setComment(String const&) instead.") void setComment(const char* comment, CommentPlacement placement) { setComment(String(comment, strlen(comment)), placement); } /// Comments must be //... or /* ... */ void setComment(const char* comment, size_t len, CommentPlacement placement) { setComment(String(comment, len), placement); } /// Comments must be //... or /* ... */ void setComment(String comment, CommentPlacement placement); bool hasComment(CommentPlacement placement) const; /// Include delimiters and embedded newlines. String getComment(CommentPlacement placement) const; String toStyledString() const; const_iterator begin() const; const_iterator end() const; iterator begin(); iterator end(); // Accessors for the [start, limit) range of bytes within the JSON text from // which this value was parsed, if any. void setOffsetStart(ptrdiff_t start); void setOffsetLimit(ptrdiff_t limit); ptrdiff_t getOffsetStart() const; ptrdiff_t getOffsetLimit() const; private: void setType(ValueType v) { bits_.value_type_ = static_cast(v); } bool isAllocated() const { return bits_.allocated_; } void setIsAllocated(bool v) { bits_.allocated_ = v; } void initBasic(ValueType type, bool allocated = false); void dupPayload(const Value& other); void releasePayload(); void dupMeta(const Value& other); Value& resolveReference(const char* key); Value& resolveReference(const char* key, const char* end); // struct MemberNamesTransform //{ // typedef const char *result_type; // const char *operator()( const CZString &name ) const // { // return name.c_str(); // } //}; union ValueHolder { LargestInt int_; LargestUInt uint_; double real_; bool bool_; char* string_; // if allocated_, ptr to { unsigned, char[] }. ObjectValues* map_; } value_; struct { // Really a ValueType, but types should agree for bitfield packing. unsigned int value_type_ : 8; // Unless allocated_, string_ must be null-terminated. unsigned int allocated_ : 1; } bits_; class Comments { public: Comments() = default; Comments(const Comments& that); Comments(Comments&& that) noexcept; Comments& operator=(const Comments& that); Comments& operator=(Comments&& that) noexcept; bool has(CommentPlacement slot) const; String get(CommentPlacement slot) const; void set(CommentPlacement slot, String comment); private: using Array = std::array; std::unique_ptr ptr_; }; Comments comments_; // [start, limit) byte offsets in the source JSON text from which this Value // was extracted. ptrdiff_t start_; ptrdiff_t limit_; }; template <> inline bool Value::as() const { return asBool(); } template <> inline bool Value::is() const { return isBool(); } template <> inline Int Value::as() const { return asInt(); } template <> inline bool Value::is() const { return isInt(); } template <> inline UInt Value::as() const { return asUInt(); } template <> inline bool Value::is() const { return isUInt(); } #if defined(JSON_HAS_INT64) template <> inline Int64 Value::as() const { return asInt64(); } template <> inline bool Value::is() const { return isInt64(); } template <> inline UInt64 Value::as() const { return asUInt64(); } template <> inline bool Value::is() const { return isUInt64(); } #endif template <> inline double Value::as() const { return asDouble(); } template <> inline bool Value::is() const { return isDouble(); } template <> inline String Value::as() const { return asString(); } template <> inline bool Value::is() const { return isString(); } /// These `as` specializations are type conversions, and do not have a /// corresponding `is`. template <> inline float Value::as() const { return asFloat(); } template <> inline const char* Value::as() const { return asCString(); } /** \brief Experimental and untested: represents an element of the "path" to * access a node. */ class JSON_API PathArgument { public: friend class Path; PathArgument(); PathArgument(ArrayIndex index); PathArgument(const char* key); PathArgument(String key); private: enum Kind { kindNone = 0, kindIndex, kindKey }; String key_; ArrayIndex index_{}; Kind kind_{kindNone}; }; /** \brief Experimental and untested: represents a "path" to access a node. * * Syntax: * - "." => root node * - ".[n]" => elements at index 'n' of root node (an array value) * - ".name" => member named 'name' of root node (an object value) * - ".name1.name2.name3" * - ".[0][1][2].name1[3]" * - ".%" => member name is provided as parameter * - ".[%]" => index is provided as parameter */ class JSON_API Path { public: Path(const String& path, const PathArgument& a1 = PathArgument(), const PathArgument& a2 = PathArgument(), const PathArgument& a3 = PathArgument(), const PathArgument& a4 = PathArgument(), const PathArgument& a5 = PathArgument()); const Value& resolve(const Value& root) const; Value resolve(const Value& root, const Value& defaultValue) const; /// Creates the "path" to access the specified node and returns a reference on /// the node. Value& make(Value& root) const; private: using InArgs = std::vector; using Args = std::vector; void makePath(const String& path, const InArgs& in); void addPathInArg(const String& path, const InArgs& in, InArgs::const_iterator& itInArg, PathArgument::Kind kind); static void invalidPath(const String& path, int location); Args args_; }; /** \brief base class for Value iterators. * */ class JSON_API ValueIteratorBase { public: using iterator_category = std::bidirectional_iterator_tag; using size_t = unsigned int; using difference_type = int; using SelfType = ValueIteratorBase; bool operator==(const SelfType& other) const { return isEqual(other); } bool operator!=(const SelfType& other) const { return !isEqual(other); } difference_type operator-(const SelfType& other) const { return other.computeDistance(*this); } /// Return either the index or the member name of the referenced value as a /// Value. Value key() const; /// Return the index of the referenced Value, or -1 if it is not an /// arrayValue. UInt index() const; /// Return the member name of the referenced Value, or "" if it is not an /// objectValue. /// \note Avoid `c_str()` on result, as embedded zeroes are possible. String name() const; /// Return the member name of the referenced Value. "" if it is not an /// objectValue. /// \deprecated This cannot be used for UTF-8 strings, since there can be /// embedded nulls. JSONCPP_DEPRECATED("Use `key = name();` instead.") char const* memberName() const; /// Return the member name of the referenced Value, or NULL if it is not an /// objectValue. /// \note Better version than memberName(). Allows embedded nulls. char const* memberName(char const** end) const; protected: /*! Internal utility functions to assist with implementing * other iterator functions. The const and non-const versions * of the "deref" protected methods expose the protected * current_ member variable in a way that can often be * optimized away by the compiler. */ const Value& deref() const; Value& deref(); void increment(); void decrement(); difference_type computeDistance(const SelfType& other) const; bool isEqual(const SelfType& other) const; void copy(const SelfType& other); private: Value::ObjectValues::iterator current_; // Indicates that iterator is for a null value. bool isNull_{true}; public: // For some reason, BORLAND needs these at the end, rather // than earlier. No idea why. ValueIteratorBase(); explicit ValueIteratorBase(const Value::ObjectValues::iterator& current); }; /** \brief const iterator for object and array value. * */ class JSON_API ValueConstIterator : public ValueIteratorBase { friend class Value; public: using value_type = const Value; // typedef unsigned int size_t; // typedef int difference_type; using reference = const Value&; using pointer = const Value*; using SelfType = ValueConstIterator; ValueConstIterator(); ValueConstIterator(ValueIterator const& other); private: /*! \internal Use by Value to create an iterator. */ explicit ValueConstIterator(const Value::ObjectValues::iterator& current); public: SelfType& operator=(const ValueIteratorBase& other); SelfType operator++(int) { SelfType temp(*this); ++*this; return temp; } SelfType operator--(int) { SelfType temp(*this); --*this; return temp; } SelfType& operator--() { decrement(); return *this; } SelfType& operator++() { increment(); return *this; } reference operator*() const { return deref(); } pointer operator->() const { return &deref(); } }; /** \brief Iterator for object and array value. */ class JSON_API ValueIterator : public ValueIteratorBase { friend class Value; public: using value_type = Value; using size_t = unsigned int; using difference_type = int; using reference = Value&; using pointer = Value*; using SelfType = ValueIterator; ValueIterator(); explicit ValueIterator(const ValueConstIterator& other); ValueIterator(const ValueIterator& other); private: /*! \internal Use by Value to create an iterator. */ explicit ValueIterator(const Value::ObjectValues::iterator& current); public: SelfType& operator=(const SelfType& other); SelfType operator++(int) { SelfType temp(*this); ++*this; return temp; } SelfType operator--(int) { SelfType temp(*this); --*this; return temp; } SelfType& operator--() { decrement(); return *this; } SelfType& operator++() { increment(); return *this; } /*! The return value of non-const iterators can be * changed, so the these functions are not const * because the returned references/pointers can be used * to change state of the base class. */ reference operator*() const { return const_cast(deref()); } pointer operator->() const { return const_cast(&deref()); } }; inline void swap(Value& a, Value& b) { a.swap(b); } } // namespace Json #pragma pack(pop) #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #endif // JSON_H_INCLUDED mstflint-4.26.0/ext_libs/json/json_reader.cpp0000644000175000017500000016127214522641732021475 0ustar tzafrirctzafrirc// Copyright 2007-2011 Baptiste Lepilleur and The JsonCpp Authors // Copyright (C) 2016 InfoTeCS JSC. All rights reserved. // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #if !defined(JSON_IS_AMALGAMATION) #include "json_tool.h" #include #include #include #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include #include #include #include #include #include #include #if __cplusplus >= 201103L #if !defined(sscanf) #define sscanf std::sscanf #endif #endif //__cplusplus #if defined(_MSC_VER) #if !defined(_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES) #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1 #endif //_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES #endif //_MSC_VER #if defined(_MSC_VER) // Disable warning about strdup being deprecated. #pragma warning(disable : 4996) #endif // Define JSONCPP_DEPRECATED_STACK_LIMIT as an appropriate integer at compile // time to change the stack limit #if !defined(JSONCPP_DEPRECATED_STACK_LIMIT) #define JSONCPP_DEPRECATED_STACK_LIMIT 1000 #endif static size_t const stackLimit_g = JSONCPP_DEPRECATED_STACK_LIMIT; // see readValue() namespace Json { #if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520) using CharReaderPtr = std::unique_ptr; #else using CharReaderPtr = std::auto_ptr; #endif // Implementation of class Features // //////////////////////////////// Features::Features() = default; Features Features::all() { return {}; } Features Features::strictMode() { Features features; features.allowComments_ = false; features.strictRoot_ = true; features.allowDroppedNullPlaceholders_ = false; features.allowNumericKeys_ = false; return features; } // Implementation of class Reader // //////////////////////////////// bool Reader::containsNewLine(Reader::Location begin, Reader::Location end) { return std::any_of(begin, end, [](char b) { return b == '\n' || b == '\r'; }); } // Class Reader // ////////////////////////////////////////////////////////////////// Reader::Reader() : features_(Features::all()) {} Reader::Reader(const Features& features) : features_(features) {} bool Reader::parse(const std::string& document, Value& root, bool collectComments) { document_.assign(document.begin(), document.end()); const char* begin = document_.c_str(); const char* end = begin + document_.length(); return parse(begin, end, root, collectComments); } bool Reader::parse(std::istream& is, Value& root, bool collectComments) { // std::istream_iterator begin(is); // std::istream_iterator end; // Those would allow streamed input from a file, if parse() were a // template function. // Since String is reference-counted, this at least does not // create an extra copy. String doc(std::istreambuf_iterator(is), {}); return parse(doc.data(), doc.data() + doc.size(), root, collectComments); } bool Reader::parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments) { if (!features_.allowComments_) { collectComments = false; } begin_ = beginDoc; end_ = endDoc; collectComments_ = collectComments; current_ = begin_; lastValueEnd_ = nullptr; lastValue_ = nullptr; commentsBefore_.clear(); errors_.clear(); while (!nodes_.empty()) nodes_.pop(); nodes_.push(&root); bool successful = readValue(); Token token; skipCommentTokens(token); if (collectComments_ && !commentsBefore_.empty()) root.setComment(commentsBefore_, commentAfter); if (features_.strictRoot_) { if (!root.isArray() && !root.isObject()) { // Set error location to start of doc, ideally should be first token found // in doc token.type_ = tokenError; token.start_ = beginDoc; token.end_ = endDoc; addError( "A valid JSON document must be either an array or an object value.", token); return false; } } return successful; } bool Reader::readValue() { // readValue() may call itself only if it calls readObject() or ReadArray(). // These methods execute nodes_.push() just before and nodes_.pop)() just // after calling readValue(). parse() executes one nodes_.push(), so > instead // of >=. if (nodes_.size() > stackLimit_g) throwRuntimeError("Exceeded stackLimit in readValue()."); Token token; skipCommentTokens(token); bool successful = true; if (collectComments_ && !commentsBefore_.empty()) { currentValue().setComment(commentsBefore_, commentBefore); commentsBefore_.clear(); } switch (token.type_) { case tokenObjectBegin: successful = readObject(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenArrayBegin: successful = readArray(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenNumber: successful = decodeNumber(token); break; case tokenString: successful = decodeString(token); break; case tokenTrue: { Value v(true); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenFalse: { Value v(false); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNull: { Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenArraySeparator: case tokenObjectEnd: case tokenArrayEnd: if (features_.allowDroppedNullPlaceholders_) { // "Un-read" the current token and mark the current value as a null // token. current_--; Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(current_ - begin_ - 1); currentValue().setOffsetLimit(current_ - begin_); break; } // Else, fall through... default: currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return addError("Syntax error: value, object or array expected.", token); } if (collectComments_) { lastValueEnd_ = current_; lastValue_ = ¤tValue(); } return successful; } void Reader::skipCommentTokens(Token& token) { if (features_.allowComments_) { do { readToken(token); } while (token.type_ == tokenComment); } else { readToken(token); } } bool Reader::readToken(Token& token) { skipSpaces(); token.start_ = current_; Char c = getNextChar(); bool ok = true; switch (c) { case '{': token.type_ = tokenObjectBegin; break; case '}': token.type_ = tokenObjectEnd; break; case '[': token.type_ = tokenArrayBegin; break; case ']': token.type_ = tokenArrayEnd; break; case '"': token.type_ = tokenString; ok = readString(); break; case '/': token.type_ = tokenComment; ok = readComment(); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '-': token.type_ = tokenNumber; readNumber(); break; case 't': token.type_ = tokenTrue; ok = match("rue", 3); break; case 'f': token.type_ = tokenFalse; ok = match("alse", 4); break; case 'n': token.type_ = tokenNull; ok = match("ull", 3); break; case ',': token.type_ = tokenArraySeparator; break; case ':': token.type_ = tokenMemberSeparator; break; case 0: token.type_ = tokenEndOfStream; break; default: ok = false; break; } if (!ok) token.type_ = tokenError; token.end_ = current_; return ok; } void Reader::skipSpaces() { while (current_ != end_) { Char c = *current_; if (c == ' ' || c == '\t' || c == '\r' || c == '\n') ++current_; else break; } } bool Reader::match(const Char* pattern, int patternLength) { if (end_ - current_ < patternLength) return false; int index = patternLength; while (index--) if (current_[index] != pattern[index]) return false; current_ += patternLength; return true; } bool Reader::readComment() { Location commentBegin = current_ - 1; Char c = getNextChar(); bool successful = false; if (c == '*') successful = readCStyleComment(); else if (c == '/') successful = readCppStyleComment(); if (!successful) return false; if (collectComments_) { CommentPlacement placement = commentBefore; if (lastValueEnd_ && !containsNewLine(lastValueEnd_, commentBegin)) { if (c != '*' || !containsNewLine(commentBegin, current_)) placement = commentAfterOnSameLine; } addComment(commentBegin, current_, placement); } return true; } String Reader::normalizeEOL(Reader::Location begin, Reader::Location end) { String normalized; normalized.reserve(static_cast(end - begin)); Reader::Location current = begin; while (current != end) { char c = *current++; if (c == '\r') { if (current != end && *current == '\n') // convert dos EOL ++current; // convert Mac EOL normalized += '\n'; } else { normalized += c; } } return normalized; } void Reader::addComment(Location begin, Location end, CommentPlacement placement) { assert(collectComments_); const String& normalized = normalizeEOL(begin, end); if (placement == commentAfterOnSameLine) { assert(lastValue_ != nullptr); lastValue_->setComment(normalized, placement); } else { commentsBefore_ += normalized; } } bool Reader::readCStyleComment() { while ((current_ + 1) < end_) { Char c = getNextChar(); if (c == '*' && *current_ == '/') break; } return getNextChar() == '/'; } bool Reader::readCppStyleComment() { while (current_ != end_) { Char c = getNextChar(); if (c == '\n') break; if (c == '\r') { // Consume DOS EOL. It will be normalized in addComment. if (current_ != end_ && *current_ == '\n') getNextChar(); // Break on Moc OS 9 EOL. break; } } return true; } void Reader::readNumber() { Location p = current_; char c = '0'; // stopgap for already consumed character // integral part while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; // fractional part if (c == '.') { c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } // exponential part if (c == 'e' || c == 'E') { c = (current_ = p) < end_ ? *p++ : '\0'; if (c == '+' || c == '-') c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } } bool Reader::readString() { Char c = '\0'; while (current_ != end_) { c = getNextChar(); if (c == '\\') getNextChar(); else if (c == '"') break; } return c == '"'; } bool Reader::readObject(Token& token) { Token tokenName; String name; Value init(objectValue); currentValue().swapPayload(init); currentValue().setOffsetStart(token.start_ - begin_); while (readToken(tokenName)) { bool initialTokenOk = true; while (tokenName.type_ == tokenComment && initialTokenOk) initialTokenOk = readToken(tokenName); if (!initialTokenOk) break; if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object return true; name.clear(); if (tokenName.type_ == tokenString) { if (!decodeString(tokenName, name)) return recoverFromError(tokenObjectEnd); } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) { Value numberName; if (!decodeNumber(tokenName, numberName)) return recoverFromError(tokenObjectEnd); name = numberName.asString(); } else { break; } Token colon; if (!readToken(colon) || colon.type_ != tokenMemberSeparator) { return addErrorAndRecover("Missing ':' after object member name", colon, tokenObjectEnd); } Value& value = currentValue()[name]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenObjectEnd); Token comma; if (!readToken(comma) || (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && comma.type_ != tokenComment)) { return addErrorAndRecover("Missing ',' or '}' in object declaration", comma, tokenObjectEnd); } bool finalizeTokenOk = true; while (comma.type_ == tokenComment && finalizeTokenOk) finalizeTokenOk = readToken(comma); if (comma.type_ == tokenObjectEnd) return true; } return addErrorAndRecover("Missing '}' or object member name", tokenName, tokenObjectEnd); } bool Reader::readArray(Token& token) { Value init(arrayValue); currentValue().swapPayload(init); currentValue().setOffsetStart(token.start_ - begin_); skipSpaces(); if (current_ != end_ && *current_ == ']') // empty array { Token endArray; readToken(endArray); return true; } int index = 0; for (;;) { Value& value = currentValue()[index++]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenArrayEnd); Token currentToken; // Accept Comment after last item in the array. ok = readToken(currentToken); while (currentToken.type_ == tokenComment && ok) { ok = readToken(currentToken); } bool badTokenType = (currentToken.type_ != tokenArraySeparator && currentToken.type_ != tokenArrayEnd); if (!ok || badTokenType) { return addErrorAndRecover("Missing ',' or ']' in array declaration", currentToken, tokenArrayEnd); } if (currentToken.type_ == tokenArrayEnd) break; } return true; } bool Reader::decodeNumber(Token& token) { Value decoded; if (!decodeNumber(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool Reader::decodeNumber(Token& token, Value& decoded) { // Attempts to parse the number as an integer. If the number is // larger than the maximum supported value of an integer then // we decode the number as a double. Location current = token.start_; bool isNegative = *current == '-'; if (isNegative) ++current; // TODO: Help the compiler do the div and mod at compile time or get rid of // them. Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(Value::maxLargestInt) + 1 : Value::maxLargestUInt; Value::LargestUInt threshold = maxIntegerValue / 10; Value::LargestUInt value = 0; while (current < token.end_) { Char c = *current++; if (c < '0' || c > '9') return decodeDouble(token, decoded); auto digit(static_cast(c - '0')); if (value >= threshold) { // We've hit or exceeded the max value divided by 10 (rounded down). If // a) we've only just touched the limit, b) this is the last digit, and // c) it's small enough to fit in that rounding delta, we're okay. // Otherwise treat this number as a double to avoid overflow. if (value > threshold || current != token.end_ || digit > maxIntegerValue % 10) { return decodeDouble(token, decoded); } } value = value * 10 + digit; } if (isNegative && value == maxIntegerValue) decoded = Value::minLargestInt; else if (isNegative) decoded = -Value::LargestInt(value); else if (value <= Value::LargestUInt(Value::maxInt)) decoded = Value::LargestInt(value); else decoded = value; return true; } bool Reader::decodeDouble(Token& token) { Value decoded; if (!decodeDouble(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool Reader::decodeDouble(Token& token, Value& decoded) { double value = 0; String buffer(token.start_, token.end_); IStringStream is(buffer); if (!(is >> value)) return addError( "'" + String(token.start_, token.end_) + "' is not a number.", token); decoded = value; return true; } bool Reader::decodeString(Token& token) { String decoded_string; if (!decodeString(token, decoded_string)) return false; Value decoded(decoded_string); currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool Reader::decodeString(Token& token, String& decoded) { decoded.reserve(static_cast(token.end_ - token.start_ - 2)); Location current = token.start_ + 1; // skip '"' Location end = token.end_ - 1; // do not include '"' while (current != end) { Char c = *current++; if (c == '"') break; if (c == '\\') { if (current == end) return addError("Empty escape sequence in string", token, current); Char escape = *current++; switch (escape) { case '"': decoded += '"'; break; case '/': decoded += '/'; break; case '\\': decoded += '\\'; break; case 'b': decoded += '\b'; break; case 'f': decoded += '\f'; break; case 'n': decoded += '\n'; break; case 'r': decoded += '\r'; break; case 't': decoded += '\t'; break; case 'u': { unsigned int unicode; if (!decodeUnicodeCodePoint(token, current, end, unicode)) return false; decoded += codePointToUTF8(unicode); } break; default: return addError("Bad escape sequence in string", token, current); } } else { decoded += c; } } return true; } bool Reader::decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode) { if (!decodeUnicodeEscapeSequence(token, current, end, unicode)) return false; if (unicode >= 0xD800 && unicode <= 0xDBFF) { // surrogate pairs if (end - current < 6) return addError( "additional six characters expected to parse unicode surrogate pair.", token, current); if (*(current++) == '\\' && *(current++) == 'u') { unsigned int surrogatePair; if (decodeUnicodeEscapeSequence(token, current, end, surrogatePair)) { unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF); } else return false; } else return addError("expecting another \\u token to begin the second half of " "a unicode surrogate pair", token, current); } return true; } bool Reader::decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& ret_unicode) { if (end - current < 4) return addError( "Bad unicode escape sequence in string: four digits expected.", token, current); int unicode = 0; for (int index = 0; index < 4; ++index) { Char c = *current++; unicode *= 16; if (c >= '0' && c <= '9') unicode += c - '0'; else if (c >= 'a' && c <= 'f') unicode += c - 'a' + 10; else if (c >= 'A' && c <= 'F') unicode += c - 'A' + 10; else return addError( "Bad unicode escape sequence in string: hexadecimal digit expected.", token, current); } ret_unicode = static_cast(unicode); return true; } bool Reader::addError(const String& message, Token& token, Location extra) { ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = extra; errors_.push_back(info); return false; } bool Reader::recoverFromError(TokenType skipUntilToken) { size_t const errorCount = errors_.size(); Token skip; for (;;) { if (!readToken(skip)) errors_.resize(errorCount); // discard errors caused by recovery if (skip.type_ == skipUntilToken || skip.type_ == tokenEndOfStream) break; } errors_.resize(errorCount); return false; } bool Reader::addErrorAndRecover(const String& message, Token& token, TokenType skipUntilToken) { addError(message, token); return recoverFromError(skipUntilToken); } Value& Reader::currentValue() { return *(nodes_.top()); } Reader::Char Reader::getNextChar() { if (current_ == end_) return 0; return *current_++; } void Reader::getLocationLineAndColumn(Location location, int& line, int& column) const { Location current = begin_; Location lastLineStart = current; line = 0; while (current < location && current != end_) { Char c = *current++; if (c == '\r') { if (*current == '\n') ++current; lastLineStart = current; ++line; } else if (c == '\n') { lastLineStart = current; ++line; } } // column & line start at 1 column = int(location - lastLineStart) + 1; ++line; } String Reader::getLocationLineAndColumn(Location location) const { int line, column; getLocationLineAndColumn(location, line, column); char buffer[18 + 16 + 16 + 1]; jsoncpp_snprintf(buffer, sizeof(buffer), "Line %d, Column %d", line, column); return buffer; } // Deprecated. Preserved for backward compatibility String Reader::getFormatedErrorMessages() const { return getFormattedErrorMessages(); } String Reader::getFormattedErrorMessages() const { String formattedMessage; for (const auto& error : errors_) { formattedMessage += "* " + getLocationLineAndColumn(error.token_.start_) + "\n"; formattedMessage += " " + error.message_ + "\n"; if (error.extra_) formattedMessage += "See " + getLocationLineAndColumn(error.extra_) + " for detail.\n"; } return formattedMessage; } std::vector Reader::getStructuredErrors() const { std::vector allErrors; for (const auto& error : errors_) { Reader::StructuredError structured; structured.offset_start = error.token_.start_ - begin_; structured.offset_limit = error.token_.end_ - begin_; structured.message = error.message_; allErrors.push_back(structured); } return allErrors; } bool Reader::pushError(const Value& value, const String& message) { ptrdiff_t const length = end_ - begin_; if (value.getOffsetStart() > length || value.getOffsetLimit() > length) return false; Token token; token.type_ = tokenError; token.start_ = begin_ + value.getOffsetStart(); token.end_ = begin_ + value.getOffsetLimit(); ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = nullptr; errors_.push_back(info); return true; } bool Reader::pushError(const Value& value, const String& message, const Value& extra) { ptrdiff_t const length = end_ - begin_; if (value.getOffsetStart() > length || value.getOffsetLimit() > length || extra.getOffsetLimit() > length) return false; Token token; token.type_ = tokenError; token.start_ = begin_ + value.getOffsetStart(); token.end_ = begin_ + value.getOffsetLimit(); ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = begin_ + extra.getOffsetStart(); errors_.push_back(info); return true; } bool Reader::good() const { return errors_.empty(); } // Originally copied from the Features class (now deprecated), used internally // for features implementation. class OurFeatures { public: static OurFeatures all(); bool allowComments_; bool allowTrailingCommas_; bool strictRoot_; bool allowDroppedNullPlaceholders_; bool allowNumericKeys_; bool allowSingleQuotes_; bool failIfExtra_; bool rejectDupKeys_; bool allowSpecialFloats_; bool skipBom_; size_t stackLimit_; }; // OurFeatures OurFeatures OurFeatures::all() { return {}; } // Implementation of class Reader // //////////////////////////////// // Originally copied from the Reader class (now deprecated), used internally // for implementing JSON reading. class OurReader { public: using Char = char; using Location = const Char*; struct StructuredError { ptrdiff_t offset_start; ptrdiff_t offset_limit; String message; }; explicit OurReader(OurFeatures const& features); bool parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments = true); String getFormattedErrorMessages() const; std::vector getStructuredErrors() const; private: OurReader(OurReader const&); // no impl void operator=(OurReader const&); // no impl enum TokenType { tokenEndOfStream = 0, tokenObjectBegin, tokenObjectEnd, tokenArrayBegin, tokenArrayEnd, tokenString, tokenNumber, tokenTrue, tokenFalse, tokenNull, tokenNaN, tokenPosInf, tokenNegInf, tokenArraySeparator, tokenMemberSeparator, tokenComment, tokenError }; class Token { public: TokenType type_; Location start_; Location end_; }; class ErrorInfo { public: Token token_; String message_; Location extra_; }; using Errors = std::deque; bool readToken(Token& token); void skipSpaces(); void skipBom(bool skipBom); bool match(const Char* pattern, int patternLength); bool readComment(); bool readCStyleComment(bool* containsNewLineResult); bool readCppStyleComment(); bool readString(); bool readStringSingleQuote(); bool readNumber(bool checkInf); bool readValue(); bool readObject(Token& token); bool readArray(Token& token); bool decodeNumber(Token& token); bool decodeNumber(Token& token, Value& decoded); bool decodeString(Token& token); bool decodeString(Token& token, String& decoded); bool decodeDouble(Token& token); bool decodeDouble(Token& token, Value& decoded); bool decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode); bool decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& unicode); bool addError(const String& message, Token& token, Location extra = nullptr); bool recoverFromError(TokenType skipUntilToken); bool addErrorAndRecover(const String& message, Token& token, TokenType skipUntilToken); void skipUntilSpace(); Value& currentValue(); Char getNextChar(); void getLocationLineAndColumn(Location location, int& line, int& column) const; String getLocationLineAndColumn(Location location) const; void addComment(Location begin, Location end, CommentPlacement placement); void skipCommentTokens(Token& token); static String normalizeEOL(Location begin, Location end); static bool containsNewLine(Location begin, Location end); using Nodes = std::stack; Nodes nodes_{}; Errors errors_{}; String document_{}; Location begin_ = nullptr; Location end_ = nullptr; Location current_ = nullptr; Location lastValueEnd_ = nullptr; Value* lastValue_ = nullptr; bool lastValueHasAComment_ = false; String commentsBefore_{}; OurFeatures const features_; bool collectComments_ = false; }; // OurReader // complete copy of Read impl, for OurReader bool OurReader::containsNewLine(OurReader::Location begin, OurReader::Location end) { return std::any_of(begin, end, [](char b) { return b == '\n' || b == '\r'; }); } OurReader::OurReader(OurFeatures const& features) : features_(features) {} bool OurReader::parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments) { if (!features_.allowComments_) { collectComments = false; } begin_ = beginDoc; end_ = endDoc; collectComments_ = collectComments; current_ = begin_; lastValueEnd_ = nullptr; lastValue_ = nullptr; commentsBefore_.clear(); errors_.clear(); while (!nodes_.empty()) nodes_.pop(); nodes_.push(&root); // skip byte order mark if it exists at the beginning of the UTF-8 text. skipBom(features_.skipBom_); bool successful = readValue(); nodes_.pop(); Token token; skipCommentTokens(token); if (features_.failIfExtra_ && (token.type_ != tokenEndOfStream)) { addError("Extra non-whitespace after JSON value.", token); return false; } if (collectComments_ && !commentsBefore_.empty()) root.setComment(commentsBefore_, commentAfter); if (features_.strictRoot_) { if (!root.isArray() && !root.isObject()) { // Set error location to start of doc, ideally should be first token found // in doc token.type_ = tokenError; token.start_ = beginDoc; token.end_ = endDoc; addError( "A valid JSON document must be either an array or an object value.", token); return false; } } return successful; } bool OurReader::readValue() { // To preserve the old behaviour we cast size_t to int. if (nodes_.size() > features_.stackLimit_) throwRuntimeError("Exceeded stackLimit in readValue()."); Token token; skipCommentTokens(token); bool successful = true; if (collectComments_ && !commentsBefore_.empty()) { currentValue().setComment(commentsBefore_, commentBefore); commentsBefore_.clear(); } switch (token.type_) { case tokenObjectBegin: successful = readObject(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenArrayBegin: successful = readArray(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenNumber: successful = decodeNumber(token); break; case tokenString: successful = decodeString(token); break; case tokenTrue: { Value v(true); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenFalse: { Value v(false); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNull: { Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNaN: { Value v(std::numeric_limits::quiet_NaN()); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenPosInf: { Value v(std::numeric_limits::infinity()); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNegInf: { Value v(-std::numeric_limits::infinity()); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenArraySeparator: case tokenObjectEnd: case tokenArrayEnd: if (features_.allowDroppedNullPlaceholders_) { // "Un-read" the current token and mark the current value as a null // token. current_--; Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(current_ - begin_ - 1); currentValue().setOffsetLimit(current_ - begin_); break; } // else, fall through ... default: currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return addError("Syntax error: value, object or array expected.", token); } if (collectComments_) { lastValueEnd_ = current_; lastValueHasAComment_ = false; lastValue_ = ¤tValue(); } return successful; } void OurReader::skipCommentTokens(Token& token) { if (features_.allowComments_) { do { readToken(token); } while (token.type_ == tokenComment); } else { readToken(token); } } bool OurReader::readToken(Token& token) { skipSpaces(); token.start_ = current_; Char c = getNextChar(); bool ok = true; switch (c) { case '{': token.type_ = tokenObjectBegin; break; case '}': token.type_ = tokenObjectEnd; break; case '[': token.type_ = tokenArrayBegin; break; case ']': token.type_ = tokenArrayEnd; break; case '"': token.type_ = tokenString; ok = readString(); break; case '\'': if (features_.allowSingleQuotes_) { token.type_ = tokenString; ok = readStringSingleQuote(); } else { // If we don't allow single quotes, this is a failure case. ok = false; } break; case '/': token.type_ = tokenComment; ok = readComment(); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': token.type_ = tokenNumber; readNumber(false); break; case '-': if (readNumber(true)) { token.type_ = tokenNumber; } else { token.type_ = tokenNegInf; ok = features_.allowSpecialFloats_ && match("nfinity", 7); } break; case '+': if (readNumber(true)) { token.type_ = tokenNumber; } else { token.type_ = tokenPosInf; ok = features_.allowSpecialFloats_ && match("nfinity", 7); } break; case 't': token.type_ = tokenTrue; ok = match("rue", 3); break; case 'f': token.type_ = tokenFalse; ok = match("alse", 4); break; case 'n': token.type_ = tokenNull; ok = match("ull", 3); break; case 'N': if (features_.allowSpecialFloats_) { token.type_ = tokenNaN; ok = match("aN", 2); } else { ok = false; } break; case 'I': if (features_.allowSpecialFloats_) { token.type_ = tokenPosInf; ok = match("nfinity", 7); } else { ok = false; } break; case ',': token.type_ = tokenArraySeparator; break; case ':': token.type_ = tokenMemberSeparator; break; case 0: token.type_ = tokenEndOfStream; break; default: ok = false; break; } if (!ok) token.type_ = tokenError; token.end_ = current_; return ok; } void OurReader::skipSpaces() { while (current_ != end_) { Char c = *current_; if (c == ' ' || c == '\t' || c == '\r' || c == '\n') ++current_; else break; } } void OurReader::skipBom(bool skipBom) { // The default behavior is to skip BOM. if (skipBom) { if ((end_ - begin_) >= 3 && strncmp(begin_, "\xEF\xBB\xBF", 3) == 0) { begin_ += 3; current_ = begin_; } } } bool OurReader::match(const Char* pattern, int patternLength) { if (end_ - current_ < patternLength) return false; int index = patternLength; while (index--) if (current_[index] != pattern[index]) return false; current_ += patternLength; return true; } bool OurReader::readComment() { const Location commentBegin = current_ - 1; const Char c = getNextChar(); bool successful = false; bool cStyleWithEmbeddedNewline = false; const bool isCStyleComment = (c == '*'); const bool isCppStyleComment = (c == '/'); if (isCStyleComment) { successful = readCStyleComment(&cStyleWithEmbeddedNewline); } else if (isCppStyleComment) { successful = readCppStyleComment(); } if (!successful) return false; if (collectComments_) { CommentPlacement placement = commentBefore; if (!lastValueHasAComment_) { if (lastValueEnd_ && !containsNewLine(lastValueEnd_, commentBegin)) { if (isCppStyleComment || !cStyleWithEmbeddedNewline) { placement = commentAfterOnSameLine; lastValueHasAComment_ = true; } } } addComment(commentBegin, current_, placement); } return true; } String OurReader::normalizeEOL(OurReader::Location begin, OurReader::Location end) { String normalized; normalized.reserve(static_cast(end - begin)); OurReader::Location current = begin; while (current != end) { char c = *current++; if (c == '\r') { if (current != end && *current == '\n') // convert dos EOL ++current; // convert Mac EOL normalized += '\n'; } else { normalized += c; } } return normalized; } void OurReader::addComment(Location begin, Location end, CommentPlacement placement) { assert(collectComments_); const String& normalized = normalizeEOL(begin, end); if (placement == commentAfterOnSameLine) { assert(lastValue_ != nullptr); lastValue_->setComment(normalized, placement); } else { commentsBefore_ += normalized; } } bool OurReader::readCStyleComment(bool* containsNewLineResult) { *containsNewLineResult = false; while ((current_ + 1) < end_) { Char c = getNextChar(); if (c == '*' && *current_ == '/') break; if (c == '\n') *containsNewLineResult = true; } return getNextChar() == '/'; } bool OurReader::readCppStyleComment() { while (current_ != end_) { Char c = getNextChar(); if (c == '\n') break; if (c == '\r') { // Consume DOS EOL. It will be normalized in addComment. if (current_ != end_ && *current_ == '\n') getNextChar(); // Break on Moc OS 9 EOL. break; } } return true; } bool OurReader::readNumber(bool checkInf) { Location p = current_; if (checkInf && p != end_ && *p == 'I') { current_ = ++p; return false; } char c = '0'; // stopgap for already consumed character // integral part while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; // fractional part if (c == '.') { c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } // exponential part if (c == 'e' || c == 'E') { c = (current_ = p) < end_ ? *p++ : '\0'; if (c == '+' || c == '-') c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } return true; } bool OurReader::readString() { Char c = 0; while (current_ != end_) { c = getNextChar(); if (c == '\\') getNextChar(); else if (c == '"') break; } return c == '"'; } bool OurReader::readStringSingleQuote() { Char c = 0; while (current_ != end_) { c = getNextChar(); if (c == '\\') getNextChar(); else if (c == '\'') break; } return c == '\''; } bool OurReader::readObject(Token& token) { Token tokenName; String name; Value init(objectValue); currentValue().swapPayload(init); currentValue().setOffsetStart(token.start_ - begin_); while (readToken(tokenName)) { bool initialTokenOk = true; while (tokenName.type_ == tokenComment && initialTokenOk) initialTokenOk = readToken(tokenName); if (!initialTokenOk) break; if (tokenName.type_ == tokenObjectEnd && (name.empty() || features_.allowTrailingCommas_)) // empty object or trailing comma return true; name.clear(); if (tokenName.type_ == tokenString) { if (!decodeString(tokenName, name)) return recoverFromError(tokenObjectEnd); } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) { Value numberName; if (!decodeNumber(tokenName, numberName)) return recoverFromError(tokenObjectEnd); name = numberName.asString(); } else { break; } if (name.length() >= (1U << 30)) throwRuntimeError("keylength >= 2^30"); if (features_.rejectDupKeys_ && currentValue().isMember(name)) { String msg = "Duplicate key: '" + name + "'"; return addErrorAndRecover(msg, tokenName, tokenObjectEnd); } Token colon; if (!readToken(colon) || colon.type_ != tokenMemberSeparator) { return addErrorAndRecover("Missing ':' after object member name", colon, tokenObjectEnd); } Value& value = currentValue()[name]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenObjectEnd); Token comma; if (!readToken(comma) || (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && comma.type_ != tokenComment)) { return addErrorAndRecover("Missing ',' or '}' in object declaration", comma, tokenObjectEnd); } bool finalizeTokenOk = true; while (comma.type_ == tokenComment && finalizeTokenOk) finalizeTokenOk = readToken(comma); if (comma.type_ == tokenObjectEnd) return true; } return addErrorAndRecover("Missing '}' or object member name", tokenName, tokenObjectEnd); } bool OurReader::readArray(Token& token) { Value init(arrayValue); currentValue().swapPayload(init); currentValue().setOffsetStart(token.start_ - begin_); int index = 0; for (;;) { skipSpaces(); if (current_ != end_ && *current_ == ']' && (index == 0 || (features_.allowTrailingCommas_ && !features_.allowDroppedNullPlaceholders_))) // empty array or trailing // comma { Token endArray; readToken(endArray); return true; } Value& value = currentValue()[index++]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenArrayEnd); Token currentToken; // Accept Comment after last item in the array. ok = readToken(currentToken); while (currentToken.type_ == tokenComment && ok) { ok = readToken(currentToken); } bool badTokenType = (currentToken.type_ != tokenArraySeparator && currentToken.type_ != tokenArrayEnd); if (!ok || badTokenType) { return addErrorAndRecover("Missing ',' or ']' in array declaration", currentToken, tokenArrayEnd); } if (currentToken.type_ == tokenArrayEnd) break; } return true; } bool OurReader::decodeNumber(Token& token) { Value decoded; if (!decodeNumber(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool OurReader::decodeNumber(Token& token, Value& decoded) { // Attempts to parse the number as an integer. If the number is // larger than the maximum supported value of an integer then // we decode the number as a double. Location current = token.start_; const bool isNegative = *current == '-'; if (isNegative) { ++current; } // We assume we can represent the largest and smallest integer types as // unsigned integers with separate sign. This is only true if they can fit // into an unsigned integer. static_assert(Value::maxLargestInt <= Value::maxLargestUInt, "Int must be smaller than UInt"); // We need to convert minLargestInt into a positive number. The easiest way // to do this conversion is to assume our "threshold" value of minLargestInt // divided by 10 can fit in maxLargestInt when absolute valued. This should // be a safe assumption. static_assert(Value::minLargestInt <= -Value::maxLargestInt, "The absolute value of minLargestInt must be greater than or " "equal to maxLargestInt"); static_assert(Value::minLargestInt / 10 >= -Value::maxLargestInt, "The absolute value of minLargestInt must be only 1 magnitude " "larger than maxLargest Int"); static constexpr Value::LargestUInt positive_threshold = Value::maxLargestUInt / 10; static constexpr Value::UInt positive_last_digit = Value::maxLargestUInt % 10; // For the negative values, we have to be more careful. Since typically // -Value::minLargestInt will cause an overflow, we first divide by 10 and // then take the inverse. This assumes that minLargestInt is only a single // power of 10 different in magnitude, which we check above. For the last // digit, we take the modulus before negating for the same reason. static constexpr auto negative_threshold = Value::LargestUInt(-(Value::minLargestInt / 10)); static constexpr auto negative_last_digit = Value::UInt(-(Value::minLargestInt % 10)); const Value::LargestUInt threshold = isNegative ? negative_threshold : positive_threshold; const Value::UInt max_last_digit = isNegative ? negative_last_digit : positive_last_digit; Value::LargestUInt value = 0; while (current < token.end_) { Char c = *current++; if (c < '0' || c > '9') return decodeDouble(token, decoded); const auto digit(static_cast(c - '0')); if (value >= threshold) { // We've hit or exceeded the max value divided by 10 (rounded down). If // a) we've only just touched the limit, meaing value == threshold, // b) this is the last digit, or // c) it's small enough to fit in that rounding delta, we're okay. // Otherwise treat this number as a double to avoid overflow. if (value > threshold || current != token.end_ || digit > max_last_digit) { return decodeDouble(token, decoded); } } value = value * 10 + digit; } if (isNegative) { // We use the same magnitude assumption here, just in case. const auto last_digit = static_cast(value % 10); decoded = -Value::LargestInt(value / 10) * 10 - last_digit; } else if (value <= Value::LargestUInt(Value::maxLargestInt)) { decoded = Value::LargestInt(value); } else { decoded = value; } return true; } bool OurReader::decodeDouble(Token& token) { Value decoded; if (!decodeDouble(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool OurReader::decodeDouble(Token& token, Value& decoded) { double value = 0; const String buffer(token.start_, token.end_); IStringStream is(buffer); if (!(is >> value)) { return addError( "'" + String(token.start_, token.end_) + "' is not a number.", token); } decoded = value; return true; } bool OurReader::decodeString(Token& token) { String decoded_string; if (!decodeString(token, decoded_string)) return false; Value decoded(decoded_string); currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool OurReader::decodeString(Token& token, String& decoded) { decoded.reserve(static_cast(token.end_ - token.start_ - 2)); Location current = token.start_ + 1; // skip '"' Location end = token.end_ - 1; // do not include '"' while (current != end) { Char c = *current++; if (c == '"') break; if (c == '\\') { if (current == end) return addError("Empty escape sequence in string", token, current); Char escape = *current++; switch (escape) { case '"': decoded += '"'; break; case '/': decoded += '/'; break; case '\\': decoded += '\\'; break; case 'b': decoded += '\b'; break; case 'f': decoded += '\f'; break; case 'n': decoded += '\n'; break; case 'r': decoded += '\r'; break; case 't': decoded += '\t'; break; case 'u': { unsigned int unicode; if (!decodeUnicodeCodePoint(token, current, end, unicode)) return false; decoded += codePointToUTF8(unicode); } break; default: return addError("Bad escape sequence in string", token, current); } } else { decoded += c; } } return true; } bool OurReader::decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode) { if (!decodeUnicodeEscapeSequence(token, current, end, unicode)) return false; if (unicode >= 0xD800 && unicode <= 0xDBFF) { // surrogate pairs if (end - current < 6) return addError( "additional six characters expected to parse unicode surrogate pair.", token, current); if (*(current++) == '\\' && *(current++) == 'u') { unsigned int surrogatePair; if (decodeUnicodeEscapeSequence(token, current, end, surrogatePair)) { unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF); } else return false; } else return addError("expecting another \\u token to begin the second half of " "a unicode surrogate pair", token, current); } return true; } bool OurReader::decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& ret_unicode) { if (end - current < 4) return addError( "Bad unicode escape sequence in string: four digits expected.", token, current); int unicode = 0; for (int index = 0; index < 4; ++index) { Char c = *current++; unicode *= 16; if (c >= '0' && c <= '9') unicode += c - '0'; else if (c >= 'a' && c <= 'f') unicode += c - 'a' + 10; else if (c >= 'A' && c <= 'F') unicode += c - 'A' + 10; else return addError( "Bad unicode escape sequence in string: hexadecimal digit expected.", token, current); } ret_unicode = static_cast(unicode); return true; } bool OurReader::addError(const String& message, Token& token, Location extra) { ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = extra; errors_.push_back(info); return false; } bool OurReader::recoverFromError(TokenType skipUntilToken) { size_t errorCount = errors_.size(); Token skip; for (;;) { if (!readToken(skip)) errors_.resize(errorCount); // discard errors caused by recovery if (skip.type_ == skipUntilToken || skip.type_ == tokenEndOfStream) break; } errors_.resize(errorCount); return false; } bool OurReader::addErrorAndRecover(const String& message, Token& token, TokenType skipUntilToken) { addError(message, token); return recoverFromError(skipUntilToken); } Value& OurReader::currentValue() { return *(nodes_.top()); } OurReader::Char OurReader::getNextChar() { if (current_ == end_) return 0; return *current_++; } void OurReader::getLocationLineAndColumn(Location location, int& line, int& column) const { Location current = begin_; Location lastLineStart = current; line = 0; while (current < location && current != end_) { Char c = *current++; if (c == '\r') { if (*current == '\n') ++current; lastLineStart = current; ++line; } else if (c == '\n') { lastLineStart = current; ++line; } } // column & line start at 1 column = int(location - lastLineStart) + 1; ++line; } String OurReader::getLocationLineAndColumn(Location location) const { int line, column; getLocationLineAndColumn(location, line, column); char buffer[18 + 16 + 16 + 1]; jsoncpp_snprintf(buffer, sizeof(buffer), "Line %d, Column %d", line, column); return buffer; } String OurReader::getFormattedErrorMessages() const { String formattedMessage; for (const auto& error : errors_) { formattedMessage += "* " + getLocationLineAndColumn(error.token_.start_) + "\n"; formattedMessage += " " + error.message_ + "\n"; if (error.extra_) formattedMessage += "See " + getLocationLineAndColumn(error.extra_) + " for detail.\n"; } return formattedMessage; } std::vector OurReader::getStructuredErrors() const { std::vector allErrors; for (const auto& error : errors_) { OurReader::StructuredError structured; structured.offset_start = error.token_.start_ - begin_; structured.offset_limit = error.token_.end_ - begin_; structured.message = error.message_; allErrors.push_back(structured); } return allErrors; } class OurCharReader : public CharReader { bool const collectComments_; OurReader reader_; public: OurCharReader(bool collectComments, OurFeatures const& features) : collectComments_(collectComments), reader_(features) {} bool parse(char const* beginDoc, char const* endDoc, Value* root, String* errs) override { bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_); if (errs) { *errs = reader_.getFormattedErrorMessages(); } return ok; } }; CharReaderBuilder::CharReaderBuilder() { setDefaults(&settings_); } CharReaderBuilder::~CharReaderBuilder() = default; CharReader* CharReaderBuilder::newCharReader() const { bool collectComments = settings_["collectComments"].asBool(); OurFeatures features = OurFeatures::all(); features.allowComments_ = settings_["allowComments"].asBool(); features.allowTrailingCommas_ = settings_["allowTrailingCommas"].asBool(); features.strictRoot_ = settings_["strictRoot"].asBool(); features.allowDroppedNullPlaceholders_ = settings_["allowDroppedNullPlaceholders"].asBool(); features.allowNumericKeys_ = settings_["allowNumericKeys"].asBool(); features.allowSingleQuotes_ = settings_["allowSingleQuotes"].asBool(); // Stack limit is always a size_t, so we get this as an unsigned int // regardless of it we have 64-bit integer support enabled. features.stackLimit_ = static_cast(settings_["stackLimit"].asUInt()); features.failIfExtra_ = settings_["failIfExtra"].asBool(); features.rejectDupKeys_ = settings_["rejectDupKeys"].asBool(); features.allowSpecialFloats_ = settings_["allowSpecialFloats"].asBool(); features.skipBom_ = settings_["skipBom"].asBool(); return new OurCharReader(collectComments, features); } bool CharReaderBuilder::validate(Json::Value* invalid) const { static const auto& valid_keys = *new std::set{ "collectComments", "allowComments", "allowTrailingCommas", "strictRoot", "allowDroppedNullPlaceholders", "allowNumericKeys", "allowSingleQuotes", "stackLimit", "failIfExtra", "rejectDupKeys", "allowSpecialFloats", "skipBom", }; for (auto si = settings_.begin(); si != settings_.end(); ++si) { auto key = si.name(); if (valid_keys.count(key)) continue; if (invalid) (*invalid)[key] = *si; else return false; } return invalid ? invalid->empty() : true; } Value& CharReaderBuilder::operator[](const String& key) { return settings_[key]; } // static void CharReaderBuilder::strictMode(Json::Value* settings) { //! [CharReaderBuilderStrictMode] (*settings)["allowComments"] = false; (*settings)["allowTrailingCommas"] = false; (*settings)["strictRoot"] = true; (*settings)["allowDroppedNullPlaceholders"] = false; (*settings)["allowNumericKeys"] = false; (*settings)["allowSingleQuotes"] = false; (*settings)["stackLimit"] = 1000; (*settings)["failIfExtra"] = true; (*settings)["rejectDupKeys"] = true; (*settings)["allowSpecialFloats"] = false; (*settings)["skipBom"] = true; //! [CharReaderBuilderStrictMode] } // static void CharReaderBuilder::setDefaults(Json::Value* settings) { //! [CharReaderBuilderDefaults] (*settings)["collectComments"] = true; (*settings)["allowComments"] = true; (*settings)["allowTrailingCommas"] = true; (*settings)["strictRoot"] = false; (*settings)["allowDroppedNullPlaceholders"] = false; (*settings)["allowNumericKeys"] = false; (*settings)["allowSingleQuotes"] = false; (*settings)["stackLimit"] = 1000; (*settings)["failIfExtra"] = false; (*settings)["rejectDupKeys"] = false; (*settings)["allowSpecialFloats"] = false; (*settings)["skipBom"] = true; //! [CharReaderBuilderDefaults] } ////////////////////////////////// // global functions bool parseFromStream(CharReader::Factory const& fact, IStream& sin, Value* root, String* errs) { OStringStream ssin; ssin << sin.rdbuf(); String doc = ssin.str(); char const* begin = doc.data(); char const* end = begin + doc.size(); // Note that we do not actually need a null-terminator. CharReaderPtr const reader(fact.newCharReader()); return reader->parse(begin, end, root, errs); } IStream& operator>>(IStream& sin, Value& root) { CharReaderBuilder b; String errs; bool ok = parseFromStream(b, sin, &root, &errs); if (!ok) { throwRuntimeError(errs); } return sin; } } // namespace Json mstflint-4.26.0/ext_libs/json/Makefile.am0000755000175000017500000000352514522641732020531 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in USER_DIR = ../ AM_CPPFLAGS = -W -Werror -g -MP -MD ${COMPILER_FPIC} -Wno-missing-field-initializers -Wno-unused-parameter noinst_LTLIBRARIES = libjson.la libjson_la_SOURCES = json_reader.cpp json_value.cpp json_tool.h json_writer.cpp json/*.h libjson_la_DEPENDENCIES = libjson_la_LIBADD = EXTRA_DIST = *.inl mstflint-4.26.0/ext_libs/json/Makefile.in0000644000175000017500000005120614522641737020543 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = ext_libs/json DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am_libjson_la_OBJECTS = json_reader.lo json_value.lo json_writer.lo libjson_la_OBJECTS = $(am_libjson_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libjson_la_SOURCES) DIST_SOURCES = $(libjson_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ USER_DIR = ../ AM_CPPFLAGS = -W -Werror -g -MP -MD ${COMPILER_FPIC} -Wno-missing-field-initializers -Wno-unused-parameter noinst_LTLIBRARIES = libjson.la libjson_la_SOURCES = json_reader.cpp json_value.cpp json_tool.h json_writer.cpp json/*.h libjson_la_DEPENDENCIES = libjson_la_LIBADD = EXTRA_DIST = *.inl all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ext_libs/json/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign ext_libs/json/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libjson.la: $(libjson_la_OBJECTS) $(libjson_la_DEPENDENCIES) $(EXTRA_libjson_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libjson_la_OBJECTS) $(libjson_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_reader.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_value.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_writer.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/ext_libs/muparser/0000755000175000017500000000000014522641737017357 5ustar tzafrirctzafrircmstflint-4.26.0/ext_libs/muparser/muParserTest.cpp0000644000175000017500000017363014522641732022526 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParserTest.h" #include #include #include #include #define PARSER_CONST_PI 3.141592653589793238462643 #define PARSER_CONST_E 2.718281828459045235360287 using namespace std; /** \file \brief This file contains the implementation of parser test cases. */ namespace mu { namespace Test { int ParserTester::c_iCount = 0; //--------------------------------------------------------------------------------------------- ParserTester::ParserTester() : m_vTestFun() { AddTest(&ParserTester::TestNames); AddTest(&ParserTester::TestSyntax); AddTest(&ParserTester::TestPostFix); AddTest(&ParserTester::TestInfixOprt); AddTest(&ParserTester::TestVarConst); AddTest(&ParserTester::TestMultiArg); AddTest(&ParserTester::TestExpression); AddTest(&ParserTester::TestIfThenElse); AddTest(&ParserTester::TestInterface); AddTest(&ParserTester::TestBinOprt); AddTest(&ParserTester::TestException); AddTest(&ParserTester::TestStrArg); AddTest(&ParserTester::TestBulkMode); ParserTester::c_iCount = 0; } //--------------------------------------------------------------------------------------------- int ParserTester::IsHexVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal) { if (a_szExpr[1] == 0 || (a_szExpr[0] != '0' || a_szExpr[1] != 'x')) return 0; unsigned iVal(0); // New code based on streams for UNICODE compliance: stringstream_type::pos_type nPos(0); stringstream_type ss(a_szExpr + 2); ss >> std::hex >> iVal; nPos = ss.tellg(); if (nPos == (stringstream_type::pos_type)0) return 1; *a_iPos += (int)(2 + nPos); *a_fVal = (value_type)iVal; return 1; } //--------------------------------------------------------------------------------------------- int ParserTester::TestInterface() { int iStat = 0; mu::console() << _T("testing member functions..."); // Test RemoveVar value_type afVal[3] = {1, 2, 3}; Parser p; try { p.DefineVar(_T("a"), &afVal[0]); p.DefineVar(_T("b"), &afVal[1]); p.DefineVar(_T("c"), &afVal[2]); p.SetExpr(_T("a+b+c")); p.Eval(); } catch (...) { iStat += 1; // this is not supposed to happen } try { p.RemoveVar(_T("c")); p.Eval(); iStat += 1; // not supposed to reach this, nonexisting variable "c" deleted... } catch (...) { // failure is expected... } if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------------------------- int ParserTester::TestStrArg() { int iStat = 0; mu::console() << _T("testing string arguments..."); iStat += EqnTest(_T("valueof(\"\")"), 123, true); // empty string arguments caused a crash iStat += EqnTest(_T("valueof(\"aaa\")+valueof(\"bbb\") "), 246, true); iStat += EqnTest(_T("2*(valueof(\"aaa\")-23)+valueof(\"bbb\")"), 323, true); // use in expressions with variables iStat += EqnTest(_T("a*(atof(\"10\")-b)"), 8, true); iStat += EqnTest(_T("a-(atof(\"10\")*b)"), -19, true); // string + numeric arguments iStat += EqnTest(_T("strfun1(\"100\")"), 100, true); iStat += EqnTest(_T("strfun2(\"100\",1)"), 101, true); iStat += EqnTest(_T("strfun3(\"99\",1,2)"), 102, true); // string constants iStat += EqnTest(_T("atof(str1)+atof(str2)"), 3.33, true); if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------------------------- int ParserTester::TestBulkMode() { int iStat = 0; mu::console() << _T("testing bulkmode..."); #define EQN_TEST_BULK(EXPR, R1, R2, R3, R4, PASS) \ { \ double res[] = {R1, R2, R3, R4}; \ iStat += EqnTestBulk(_T(EXPR), res, (PASS)); \ } // Bulk Variables for the test: // a: 1,2,3,4 // b: 2,2,2,2 // c: 3,3,3,3 // d: 5,4,3,2 EQN_TEST_BULK("a", 1, 1, 1, 1, false) EQN_TEST_BULK("a", 1, 2, 3, 4, true) EQN_TEST_BULK("b=a", 1, 2, 3, 4, true) EQN_TEST_BULK("b=a, b*10", 10, 20, 30, 40, true) EQN_TEST_BULK("b=a, b*10, a", 1, 2, 3, 4, true) EQN_TEST_BULK("a+b", 3, 4, 5, 6, true) EQN_TEST_BULK("c*(a+b)", 9, 12, 15, 18, true) #undef EQN_TEST_BULK if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------------------------- int ParserTester::TestBinOprt() { int iStat = 0; mu::console() << _T("testing binary operators..."); // built in operators // xor operator iStat += EqnTest(_T("a++b"), 3, true); iStat += EqnTest(_T("a ++ b"), 3, true); iStat += EqnTest(_T("1++2"), 3, true); iStat += EqnTest(_T("1 ++ 2"), 3, true); iStat += EqnTest(_T("a add b"), 3, true); iStat += EqnTest(_T("1 add 2"), 3, true); iStat += EqnTest(_T("aa"), 1, true); iStat += EqnTest(_T("a>a"), 0, true); iStat += EqnTest(_T("aa"), 0, true); iStat += EqnTest(_T("a<=a"), 1, true); iStat += EqnTest(_T("a<=b"), 1, true); iStat += EqnTest(_T("b<=a"), 0, true); iStat += EqnTest(_T("a>=a"), 1, true); iStat += EqnTest(_T("b>=a"), 1, true); iStat += EqnTest(_T("a>=b"), 0, true); // Test logical operators, especially if user defined "&" and the internal "&&" collide iStat += EqnTest(_T("1 && 1"), 1, true); iStat += EqnTest(_T("1 && 0"), 0, true); iStat += EqnTest(_T("(aa)"), 1, true); iStat += EqnTest(_T("(ab)"), 0, true); // iStat += EqnTest(_T("12 and 255"), 12, true); // iStat += EqnTest(_T("12 and 0"), 0, true); iStat += EqnTest(_T("12 & 255"), 12, true); iStat += EqnTest(_T("12 & 0"), 0, true); iStat += EqnTest(_T("12&255"), 12, true); iStat += EqnTest(_T("12&0"), 0, true); // Assignment operator iStat += EqnTest(_T("a = b"), 2, true); iStat += EqnTest(_T("a = sin(b)"), 0.909297, true); iStat += EqnTest(_T("a = 1+sin(b)"), 1.909297, true); iStat += EqnTest(_T("(a=b)*2"), 4, true); iStat += EqnTest(_T("2*(a=b)"), 4, true); iStat += EqnTest(_T("2*(a=b+1)"), 6, true); iStat += EqnTest(_T("(a=b+1)*2"), 6, true); iStat += EqnTest(_T("a=c, a*10"), 30, true); iStat += EqnTest(_T("2^2^3"), 256, true); iStat += EqnTest(_T("1/2/3"), 1.0 / 6.0, true); // reference: http://www.wolframalpha.com/input/?i=3%2B4*2%2F%281-5%29^2^3 iStat += EqnTest(_T("3+4*2/(1-5)^2^3"), 3.0001220703125, true); // Test user defined binary operators iStat += EqnTestInt(_T("1 | 2"), 3, true); iStat += EqnTestInt(_T("1 || 2"), 1, true); iStat += EqnTestInt(_T("123 & 456"), 72, true); iStat += EqnTestInt(_T("(123 & 456) % 10"), 2, true); iStat += EqnTestInt(_T("1 && 0"), 0, true); iStat += EqnTestInt(_T("123 && 456"), 1, true); iStat += EqnTestInt(_T("1 << 3"), 8, true); iStat += EqnTestInt(_T("8 >> 3"), 1, true); iStat += EqnTestInt(_T("9 / 4"), 2, true); iStat += EqnTestInt(_T("9 % 4"), 1, true); iStat += EqnTestInt(_T("if(5%2,1,0)"), 1, true); iStat += EqnTestInt(_T("if(4%2,1,0)"), 0, true); iStat += EqnTestInt(_T("-10+1"), -9, true); iStat += EqnTestInt(_T("1+2*3"), 7, true); iStat += EqnTestInt(_T("const1 != const2"), 1, true); iStat += EqnTestInt(_T("const1 != const2"), 0, false); iStat += EqnTestInt(_T("const1 == const2"), 0, true); iStat += EqnTestInt(_T("const1 == 1"), 1, true); iStat += EqnTestInt(_T("10*(const1 == 1)"), 10, true); iStat += EqnTestInt(_T("2*(const1 | const2)"), 6, true); iStat += EqnTestInt(_T("2*(const1 | const2)"), 7, false); iStat += EqnTestInt(_T("const1 < const2"), 1, true); iStat += EqnTestInt(_T("const2 > const1"), 1, true); iStat += EqnTestInt(_T("const1 <= 1"), 1, true); iStat += EqnTestInt(_T("const2 >= 2"), 1, true); iStat += EqnTestInt(_T("2*(const1 + const2)"), 6, true); iStat += EqnTestInt(_T("2*(const1 - const2)"), -2, true); iStat += EqnTestInt(_T("a != b"), 1, true); iStat += EqnTestInt(_T("a != b"), 0, false); iStat += EqnTestInt(_T("a == b"), 0, true); iStat += EqnTestInt(_T("a == 1"), 1, true); iStat += EqnTestInt(_T("10*(a == 1)"), 10, true); iStat += EqnTestInt(_T("2*(a | b)"), 6, true); iStat += EqnTestInt(_T("2*(a | b)"), 7, false); iStat += EqnTestInt(_T("a < b"), 1, true); iStat += EqnTestInt(_T("b > a"), 1, true); iStat += EqnTestInt(_T("a <= 1"), 1, true); iStat += EqnTestInt(_T("b >= 2"), 1, true); iStat += EqnTestInt(_T("2*(a + b)"), 6, true); iStat += EqnTestInt(_T("2*(a - b)"), -2, true); iStat += EqnTestInt(_T("a + (a << b)"), 5, true); iStat += EqnTestInt(_T("-2^2"), -4, true); iStat += EqnTestInt(_T("3--a"), 4, true); iStat += EqnTestInt(_T("3+-3^2"), -6, true); // Test reading of hex values: iStat += EqnTestInt(_T("0xff"), 255, true); iStat += EqnTestInt(_T("10+0xff"), 265, true); iStat += EqnTestInt(_T("0xff+10"), 265, true); iStat += EqnTestInt(_T("10*0xff"), 2550, true); iStat += EqnTestInt(_T("0xff*10"), 2550, true); iStat += EqnTestInt(_T("10+0xff+1"), 266, true); iStat += EqnTestInt(_T("1+0xff+10"), 266, true); // incorrect: '^' is yor here, not power // iStat += EqnTestInt("-(1+2)^2", -9, true); // iStat += EqnTestInt("-1^3", -1, true); // Test precedence // a=1, b=2, c=3 iStat += EqnTestInt(_T("a + b * c"), 7, true); iStat += EqnTestInt(_T("a * b + c"), 5, true); iStat += EqnTestInt(_T("a10"), 0, true); iStat += EqnTestInt(_T("a"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("?<"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("**"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("xor"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("and"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("or"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("not"), f1of1) PARSER_THROWCHECK(PostfixOprt, true, _T("!"), f1of1) // Binary operator // The following must fail with builtin operators activated // p.EnableBuiltInOp(true); -> this is the default p.ClearPostfixOprt(); PARSER_THROWCHECK(Oprt, false, _T("+"), f1of2) PARSER_THROWCHECK(Oprt, false, _T("-"), f1of2) PARSER_THROWCHECK(Oprt, false, _T("*"), f1of2) PARSER_THROWCHECK(Oprt, false, _T("/"), f1of2) PARSER_THROWCHECK(Oprt, false, _T("^"), f1of2) PARSER_THROWCHECK(Oprt, false, _T("&&"), f1of2) PARSER_THROWCHECK(Oprt, false, _T("||"), f1of2) // without activated built in operators it should work p.EnableBuiltInOprt(false); PARSER_THROWCHECK(Oprt, true, _T("+"), f1of2) PARSER_THROWCHECK(Oprt, true, _T("-"), f1of2) PARSER_THROWCHECK(Oprt, true, _T("*"), f1of2) PARSER_THROWCHECK(Oprt, true, _T("/"), f1of2) PARSER_THROWCHECK(Oprt, true, _T("^"), f1of2) PARSER_THROWCHECK(Oprt, true, _T("&&"), f1of2) PARSER_THROWCHECK(Oprt, true, _T("||"), f1of2) #undef PARSER_THROWCHECK if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestSyntax() { int iStat = 0; mu::console() << _T("testing syntax engine..."); iStat += ThrowTest(_T("1,"), ecUNEXPECTED_EOF); // incomplete hex definition iStat += ThrowTest(_T("a,"), ecUNEXPECTED_EOF); // incomplete hex definition iStat += ThrowTest(_T("sin(8),"), ecUNEXPECTED_EOF); // incomplete hex definition iStat += ThrowTest(_T("(sin(8)),"), ecUNEXPECTED_EOF); // incomplete hex definition iStat += ThrowTest(_T("a{m},"), ecUNEXPECTED_EOF); // incomplete hex definition iStat += EqnTest(_T("(1+ 2*a)"), 3, true); // Spaces within formula iStat += EqnTest(_T("sqrt((4))"), 2, true); // Multiple brackets iStat += EqnTest(_T("sqrt((2)+2)"), 2, true); // Multiple brackets iStat += EqnTest(_T("sqrt(2+(2))"), 2, true); // Multiple brackets iStat += EqnTest(_T("sqrt(a+(3))"), 2, true); // Multiple brackets iStat += EqnTest(_T("sqrt((3)+a)"), 2, true); // Multiple brackets iStat += EqnTest(_T("order(1,2)"), 1, true); // May not cause name collision with operator "or" iStat += EqnTest(_T("(2+"), 0, false); // missing closing bracket iStat += EqnTest(_T("2++4"), 0, false); // unexpected operator iStat += EqnTest(_T("2+-4"), 0, false); // unexpected operator iStat += EqnTest(_T("(2+)"), 0, false); // unexpected closing bracket iStat += EqnTest(_T("--2"), 0, false); // double sign iStat += EqnTest(_T("ksdfj"), 0, false); // unknown token iStat += EqnTest(_T("()"), 0, false); // empty bracket without a function iStat += EqnTest(_T("5+()"), 0, false); // empty bracket without a function iStat += EqnTest(_T("sin(cos)"), 0, false); // unexpected function iStat += EqnTest(_T("5t6"), 0, false); // unknown token iStat += EqnTest(_T("5 t 6"), 0, false); // unknown token iStat += EqnTest(_T("8*"), 0, false); // unexpected end of formula iStat += EqnTest(_T(",3"), 0, false); // unexpected comma iStat += EqnTest(_T("3,5"), 0, false); // unexpected comma iStat += EqnTest(_T("sin(8,8)"), 0, false); // too many function args iStat += EqnTest(_T("(7,8)"), 0, false); // too many function args iStat += EqnTest(_T("sin)"), 0, false); // unexpected closing bracket iStat += EqnTest(_T("a)"), 0, false); // unexpected closing bracket iStat += EqnTest(_T("pi)"), 0, false); // unexpected closing bracket iStat += EqnTest(_T("sin(())"), 0, false); // unexpected closing bracket iStat += EqnTest(_T("sin()"), 0, false); // unexpected closing bracket if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestVarConst() { int iStat = 0; mu::console() << _T("testing variable/constant detection..."); // Test if the result changes when a variable changes iStat += EqnTestWithVarChange(_T("a"), 1, 1, 2, 2); iStat += EqnTestWithVarChange(_T("2*a"), 2, 4, 3, 6); // distinguish constants with same basename iStat += EqnTest(_T("const"), 1, true); iStat += EqnTest(_T("const1"), 2, true); iStat += EqnTest(_T("const2"), 3, true); iStat += EqnTest(_T("2*const"), 2, true); iStat += EqnTest(_T("2*const1"), 4, true); iStat += EqnTest(_T("2*const2"), 6, true); iStat += EqnTest(_T("2*const+1"), 3, true); iStat += EqnTest(_T("2*const1+1"), 5, true); iStat += EqnTest(_T("2*const2+1"), 7, true); iStat += EqnTest(_T("const"), 0, false); iStat += EqnTest(_T("const1"), 0, false); iStat += EqnTest(_T("const2"), 0, false); // distinguish variables with same basename iStat += EqnTest(_T("a"), 1, true); iStat += EqnTest(_T("aa"), 2, true); iStat += EqnTest(_T("2*a"), 2, true); iStat += EqnTest(_T("2*aa"), 4, true); iStat += EqnTest(_T("2*a-1"), 1, true); iStat += EqnTest(_T("2*aa-1"), 3, true); // custom value recognition iStat += EqnTest(_T("0xff"), 255, true); iStat += EqnTest(_T("0x97 + 0xff"), 406, true); // Finally test querying of used variables try { int idx; mu::Parser p; mu::value_type vVarVal[] = {1, 2, 3, 4, 5}; p.DefineVar(_T("a"), &vVarVal[0]); p.DefineVar(_T("b"), &vVarVal[1]); p.DefineVar(_T("c"), &vVarVal[2]); p.DefineVar(_T("d"), &vVarVal[3]); p.DefineVar(_T("e"), &vVarVal[4]); // Test lookup of defined variables // 4 used variables p.SetExpr(_T("a+b+c+d")); mu::varmap_type UsedVar = p.GetUsedVar(); int iCount = (int)UsedVar.size(); if (iCount != 4) throw false; // the next check will fail if the parser // erroneously creates new variables internally if (p.GetVar().size() != 5) throw false; mu::varmap_type::const_iterator item = UsedVar.begin(); for (idx = 0; item != UsedVar.end(); ++item) { if (&vVarVal[idx++] != item->second) throw false; } // Test lookup of undefined variables p.SetExpr(_T("undef1+undef2+undef3")); UsedVar = p.GetUsedVar(); iCount = (int)UsedVar.size(); if (iCount != 3) throw false; // the next check will fail if the parser // erroneously creates new variables internally if (p.GetVar().size() != 5) throw false; for (item = UsedVar.begin(); item != UsedVar.end(); ++item) { if (item->second != 0) throw false; // all pointers to undefined variables must be null } // 1 used variables p.SetExpr(_T("a+b")); UsedVar = p.GetUsedVar(); iCount = (int)UsedVar.size(); if (iCount != 2) throw false; item = UsedVar.begin(); for (idx = 0; item != UsedVar.end(); ++item) if (&vVarVal[idx++] != item->second) throw false; } catch (...) { iStat += 1; } if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestMultiArg() { int iStat = 0; mu::console() << _T("testing multiarg functions..."); // Compound expressions iStat += EqnTest(_T("1,2,3"), 3, true); iStat += EqnTest(_T("a,b,c"), 3, true); iStat += EqnTest(_T("a=10,b=20,c=a*b"), 200, true); iStat += EqnTest(_T("1,\n2,\n3"), 3, true); iStat += EqnTest(_T("a,\nb,\nc"), 3, true); iStat += EqnTest(_T("a=10,\nb=20,\nc=a*b"), 200, true); iStat += EqnTest(_T("1,\r\n2,\r\n3"), 3, true); iStat += EqnTest(_T("a,\r\nb,\r\nc"), 3, true); iStat += EqnTest(_T("a=10,\r\nb=20,\r\nc=a*b"), 200, true); // picking the right argument iStat += EqnTest(_T("f1of1(1)"), 1, true); iStat += EqnTest(_T("f1of2(1, 2)"), 1, true); iStat += EqnTest(_T("f2of2(1, 2)"), 2, true); iStat += EqnTest(_T("f1of3(1, 2, 3)"), 1, true); iStat += EqnTest(_T("f2of3(1, 2, 3)"), 2, true); iStat += EqnTest(_T("f3of3(1, 2, 3)"), 3, true); iStat += EqnTest(_T("f1of4(1, 2, 3, 4)"), 1, true); iStat += EqnTest(_T("f2of4(1, 2, 3, 4)"), 2, true); iStat += EqnTest(_T("f3of4(1, 2, 3, 4)"), 3, true); iStat += EqnTest(_T("f4of4(1, 2, 3, 4)"), 4, true); iStat += EqnTest(_T("f1of5(1, 2, 3, 4, 5)"), 1, true); iStat += EqnTest(_T("f2of5(1, 2, 3, 4, 5)"), 2, true); iStat += EqnTest(_T("f3of5(1, 2, 3, 4, 5)"), 3, true); iStat += EqnTest(_T("f4of5(1, 2, 3, 4, 5)"), 4, true); iStat += EqnTest(_T("f5of5(1, 2, 3, 4, 5)"), 5, true); // Too few arguments / Too many arguments iStat += EqnTest(_T("1+ping()"), 11, true); iStat += EqnTest(_T("ping()+1"), 11, true); iStat += EqnTest(_T("2*ping()"), 20, true); iStat += EqnTest(_T("ping()*2"), 20, true); iStat += EqnTest(_T("ping(1,2)"), 0, false); iStat += EqnTest(_T("1+ping(1,2)"), 0, false); iStat += EqnTest(_T("f1of1(1,2)"), 0, false); iStat += EqnTest(_T("f1of1()"), 0, false); iStat += EqnTest(_T("f1of2(1, 2, 3)"), 0, false); iStat += EqnTest(_T("f1of2(1)"), 0, false); iStat += EqnTest(_T("f1of3(1, 2, 3, 4)"), 0, false); iStat += EqnTest(_T("f1of3(1)"), 0, false); iStat += EqnTest(_T("f1of4(1, 2, 3, 4, 5)"), 0, false); iStat += EqnTest(_T("f1of4(1)"), 0, false); iStat += EqnTest(_T("(1,2,3)"), 0, false); iStat += EqnTest(_T("1,2,3"), 0, false); iStat += EqnTest(_T("(1*a,2,3)"), 0, false); iStat += EqnTest(_T("1,2*a,3"), 0, false); // correct calculation of arguments iStat += EqnTest(_T("min(a, 1)"), 1, true); iStat += EqnTest(_T("min(3*2, 1)"), 1, true); iStat += EqnTest(_T("min(3*2, 1)"), 6, false); iStat += EqnTest(_T("firstArg(2,3,4)"), 2, true); iStat += EqnTest(_T("lastArg(2,3,4)"), 4, true); iStat += EqnTest(_T("min(3*a+1, 1)"), 1, true); iStat += EqnTest(_T("max(3*a+1, 1)"), 4, true); iStat += EqnTest(_T("max(3*a+1, 1)*2"), 8, true); iStat += EqnTest(_T("2*max(3*a+1, 1)+2"), 10, true); // functions with Variable argument count iStat += EqnTest(_T("sum(a)"), 1, true); iStat += EqnTest(_T("sum(1,2,3)"), 6, true); iStat += EqnTest(_T("sum(a,b,c)"), 6, true); iStat += EqnTest(_T("sum(1,-max(1,2),3)*2"), 4, true); iStat += EqnTest(_T("2*sum(1,2,3)"), 12, true); iStat += EqnTest(_T("2*sum(1,2,3)+2"), 14, true); iStat += EqnTest(_T("2*sum(-1,2,3)+2"), 10, true); iStat += EqnTest(_T("2*sum(-1,2,-(-a))+2"), 6, true); iStat += EqnTest(_T("2*sum(-1,10,-a)+2"), 18, true); iStat += EqnTest(_T("2*sum(1,2,3)*2"), 24, true); iStat += EqnTest(_T("sum(1,-max(1,2),3)*2"), 4, true); iStat += EqnTest(_T("sum(1*3, 4, a+2)"), 10, true); iStat += EqnTest(_T("sum(1*3, 2*sum(1,2,2), a+2)"), 16, true); iStat += EqnTest(_T("sum(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2)"), 24, true); // some failures iStat += EqnTest(_T("sum()"), 0, false); iStat += EqnTest(_T("sum(,)"), 0, false); iStat += EqnTest(_T("sum(1,2,)"), 0, false); iStat += EqnTest(_T("sum(,1,2)"), 0, false); if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestInfixOprt() { int iStat(0); mu::console() << "testing infix operators..."; iStat += EqnTest(_T("+1"), +1, true); iStat += EqnTest(_T("-(+1)"), -1, true); iStat += EqnTest(_T("-(+1)*2"), -2, true); iStat += EqnTest(_T("-(+2)*sqrt(4)"), -4, true); iStat += EqnTest(_T("3-+a"), 2, true); iStat += EqnTest(_T("+1*3"), 3, true); iStat += EqnTest(_T("-1"), -1, true); iStat += EqnTest(_T("-(-1)"), 1, true); iStat += EqnTest(_T("-(-1)*2"), 2, true); iStat += EqnTest(_T("-(-2)*sqrt(4)"), 4, true); iStat += EqnTest(_T("-_pi"), -PARSER_CONST_PI, true); iStat += EqnTest(_T("-a"), -1, true); iStat += EqnTest(_T("-(a)"), -1, true); iStat += EqnTest(_T("-(-a)"), 1, true); iStat += EqnTest(_T("-(-a)*2"), 2, true); iStat += EqnTest(_T("-(8)"), -8, true); iStat += EqnTest(_T("-8"), -8, true); iStat += EqnTest(_T("-(2+1)"), -3, true); iStat += EqnTest(_T("-(f1of1(1+2*3)+1*2)"), -9, true); iStat += EqnTest(_T("-(-f1of1(1+2*3)+1*2)"), 5, true); iStat += EqnTest(_T("-sin(8)"), -0.989358, true); iStat += EqnTest(_T("3-(-a)"), 4, true); iStat += EqnTest(_T("3--a"), 4, true); iStat += EqnTest(_T("-1*3"), -3, true); // Postfix / infix priorities iStat += EqnTest(_T("~2#"), 8, true); iStat += EqnTest(_T("~f1of1(2)#"), 8, true); iStat += EqnTest(_T("~(b)#"), 8, true); iStat += EqnTest(_T("(~b)#"), 12, true); iStat += EqnTest(_T("~(2#)"), 8, true); iStat += EqnTest(_T("~(f1of1(2)#)"), 8, true); // iStat += EqnTest(_T("-2^2"), -4, true); iStat += EqnTest(_T("-(a+b)^2"), -9, true); iStat += EqnTest(_T("(-3)^2"), 9, true); iStat += EqnTest(_T("-(-2^2)"), 4, true); iStat += EqnTest(_T("3+-3^2"), -6, true); // The following assumes use of sqr as postfix operator ("§") together // with a sign operator of low priority: iStat += EqnTest(_T("-2'"), -4, true); iStat += EqnTest(_T("-(1+1)'"), -4, true); iStat += EqnTest(_T("2+-(1+1)'"), -2, true); iStat += EqnTest(_T("2+-2'"), -2, true); // This is the classic behaviour of the infix sign operator (here: "$") which is // now deprecated: iStat += EqnTest(_T("$2^2"), 4, true); iStat += EqnTest(_T("$(a+b)^2"), 9, true); iStat += EqnTest(_T("($3)^2"), 9, true); iStat += EqnTest(_T("$($2^2)"), -4, true); iStat += EqnTest(_T("3+$3^2"), 12, true); // infix operators sharing the first few characters iStat += EqnTest(_T("~ 123"), 123 + 2, true); iStat += EqnTest(_T("~~ 123"), 123 + 2, true); if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestPostFix() { int iStat = 0; mu::console() << _T("testing postfix operators..."); // application iStat += EqnTest(_T("3{m}+5"), 5.003, true); iStat += EqnTest(_T("1000{m}"), 1, true); iStat += EqnTest(_T("1000 {m}"), 1, true); iStat += EqnTest(_T("(a){m}"), 1e-3, true); iStat += EqnTest(_T("a{m}"), 1e-3, true); iStat += EqnTest(_T("a {m}"), 1e-3, true); iStat += EqnTest(_T("-(a){m}"), -1e-3, true); iStat += EqnTest(_T("-2{m}"), -2e-3, true); iStat += EqnTest(_T("-2 {m}"), -2e-3, true); iStat += EqnTest(_T("f1of1(1000){m}"), 1, true); iStat += EqnTest(_T("-f1of1(1000){m}"), -1, true); iStat += EqnTest(_T("-f1of1(-1000){m}"), 1, true); iStat += EqnTest(_T("f4of4(0,0,0,1000){m}"), 1, true); iStat += EqnTest(_T("2+(a*1000){m}"), 3, true); // can postfix operators "m" und "meg" be told apart properly? iStat += EqnTest(_T("2*3000meg+2"), 2 * 3e9 + 2, true); // some incorrect results iStat += EqnTest(_T("1000{m}"), 0.1, false); iStat += EqnTest(_T("(a){m}"), 2, false); // failure due to syntax checking iStat += ThrowTest(_T("0x"), ecUNASSIGNABLE_TOKEN); // incomplete hex definition iStat += ThrowTest(_T("3+"), ecUNEXPECTED_EOF); iStat += ThrowTest(_T("4 + {m}"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("{m}4"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("sin({m})"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("{m} {m}"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("{m}(8)"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("4,{m}"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("-{m}"), ecUNASSIGNABLE_TOKEN); iStat += ThrowTest(_T("2(-{m})"), ecUNEXPECTED_PARENS); iStat += ThrowTest(_T("2({m})"), ecUNEXPECTED_PARENS); iStat += ThrowTest(_T("multi*1.0"), ecUNASSIGNABLE_TOKEN); if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestExpression() { int iStat = 0; mu::console() << _T("testing expression samples..."); value_type b = 2; // Optimization iStat += EqnTest(_T("2*b*5"), 20, true); iStat += EqnTest(_T("2*b*5 + 4*b"), 28, true); iStat += EqnTest(_T("2*a/3"), 2.0 / 3.0, true); // Addition auf cmVARMUL iStat += EqnTest(_T("3+b"), b + 3, true); iStat += EqnTest(_T("b+3"), b + 3, true); iStat += EqnTest(_T("b*3+2"), b * 3 + 2, true); iStat += EqnTest(_T("3*b+2"), b * 3 + 2, true); iStat += EqnTest(_T("2+b*3"), b * 3 + 2, true); iStat += EqnTest(_T("2+3*b"), b * 3 + 2, true); iStat += EqnTest(_T("b+3*b"), b + 3 * b, true); iStat += EqnTest(_T("3*b+b"), b + 3 * b, true); iStat += EqnTest(_T("2+b*3+b"), 2 + b * 3 + b, true); iStat += EqnTest(_T("b+2+b*3"), b + 2 + b * 3, true); iStat += EqnTest(_T("(2*b+1)*4"), (2 * b + 1) * 4, true); iStat += EqnTest(_T("4*(2*b+1)"), (2 * b + 1) * 4, true); // operator precedences iStat += EqnTest(_T("1+2-3*4/5^6"), 2.99923, true); iStat += EqnTest(_T("1^2/3*4-5+6"), 2.33333333, true); iStat += EqnTest(_T("1+2*3"), 7, true); iStat += EqnTest(_T("1+2*3"), 7, true); iStat += EqnTest(_T("(1+2)*3"), 9, true); iStat += EqnTest(_T("(1+2)*(-3)"), -9, true); iStat += EqnTest(_T("2/4"), 0.5, true); iStat += EqnTest(_T("exp(ln(7))"), 7, true); iStat += EqnTest(_T("e^ln(7)"), 7, true); iStat += EqnTest(_T("e^(ln(7))"), 7, true); iStat += EqnTest(_T("(e^(ln(7)))"), 7, true); iStat += EqnTest(_T("1-(e^(ln(7)))"), -6, true); iStat += EqnTest(_T("2*(e^(ln(7)))"), 14, true); iStat += EqnTest(_T("10^log(5)"), pow(10.0, log(5.0)), true); iStat += EqnTest(_T("10^log10(5)"), 5, true); iStat += EqnTest(_T("2^log2(4)"), 4, true); iStat += EqnTest(_T("-(sin(0)+1)"), -1, true); iStat += EqnTest(_T("-(2^1.1)"), -2.14354692, true); iStat += EqnTest(_T("(cos(2.41)/b)"), -0.372056, true); iStat += EqnTest(_T("(1*(2*(3*(4*(5*(6*(a+b)))))))"), 2160, true); iStat += EqnTest(_T("(1*(2*(3*(4*(5*(6*(7*(a+b))))))))"), 15120, true); iStat += EqnTest(_T("(a/((((b+(((e*(((((pi*((((3.45*((pi+a)+pi))+b)+b)*a))+0.68)+e)+a)/a))+a)+b))+b)*a)-pi))"), 0.00377999, true); // long formula (Reference: Matlab) iStat += EqnTest( _T("(((-9))-e/(((((((pi-(((-7)+(-3)/4/e))))/(((-5))-2)-((pi+(-0))*(sqrt((e+e))*(-8))*(((-pi)+(-pi)-(-9)*(6*5))") _T("/(-e)-e))/2)/((((sqrt(2/(-e)+6)-(4-2))+((5/(-2))/(1*(-pi)+3))/8)*pi*((pi/((-2)/(-6)*1*(-1))*(-6)+(-e)))))/") _T("((e+(-2)+(-e)*((((-3)*9+(-e)))+(-9)))))))-((((e-7+(((5/pi-(3/1+pi)))))/e)/(-5))/(sqrt((((((1+(-7))))+((((-") _T("e)*(-e)))-8))*(-5)/((-e)))*(-6)-((((((-2)-(-9)-(-e)-1)/3))))/(sqrt((8+(e-((-6))+(9*(-9))))*(((3+2-8))*(7+6") _T("+(-5))+((0/(-e)*(-pi))+7)))+(((((-e)/e/e)+((-6)*5)*e+(3+(-5)/pi))))+pi))/sqrt((((9))+((((pi))-8+2))+pi))/e") _T("*4)*((-5)/(((-pi))*(sqrt(e)))))-(((((((-e)*(e)-pi))/4+(pi)*(-9)))))))+(-pi)"), -12.23016549, true); // long formula (Reference: Matlab) iStat += EqnTest( _T("(atan(sin((((((((((((((((pi/cos((a/((((0.53-b)-pi)*e)/b))))+2.51)+a)-0.54)/0.98)+b)*b)+e)/a)+b)+a)+b)+pi)/e") _T(")+a)))*2.77)"), -2.16995656, true); // long formula (Reference: Matlab) iStat += EqnTest(_T("1+2-3*4/5^6*(2*(1-5+(3*7^9)*(4+6*7-3)))+12"), -7995810.09926, true); if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- int ParserTester::TestIfThenElse() { int iStat = 0; mu::console() << _T("testing if-then-else operator..."); // Test error detection iStat += ThrowTest(_T(":3"), ecUNEXPECTED_CONDITIONAL); iStat += ThrowTest(_T("? 1 : 2"), ecUNEXPECTED_CONDITIONAL); iStat += ThrowTest(_T("(ab) ? 10 : 11"), 11, true); iStat += EqnTest(_T("(ab) ? c : d"), -2, true); iStat += EqnTest(_T("(a>b) ? 1 : 0"), 0, true); iStat += EqnTest(_T("((a>b) ? 1 : 0) ? 1 : 2"), 2, true); iStat += EqnTest(_T("((a>b) ? 1 : 0) ? 1 : sum((a>b) ? 1 : 2)"), 2, true); iStat += EqnTest(_T("((a>b) ? 0 : 1) ? 1 : sum((a>b) ? 1 : 2)"), 1, true); iStat += EqnTest(_T("sum((a>b) ? 1 : 2)"), 2, true); iStat += EqnTest(_T("sum((1) ? 1 : 2)"), 1, true); iStat += EqnTest(_T("sum((a>b) ? 1 : 2, 100)"), 102, true); iStat += EqnTest(_T("sum((1) ? 1 : 2, 100)"), 101, true); iStat += EqnTest(_T("sum(3, (a>b) ? 3 : 10)"), 13, true); iStat += EqnTest(_T("sum(3, (ab) ? 3 : 10)"), 130, true); iStat += EqnTest(_T("10*sum(3, (ab) ? 3 : 10)*10"), 130, true); iStat += EqnTest(_T("sum(3, (ab) ? sum(3, (ab) ? sum(3, (ab) ? sum(3, (ab)&&(a2)&&(1<2) ? 128 : 255"), 255, true); iStat += EqnTest(_T("((1<2)&&(1<2)) ? 128 : 255"), 128, true); iStat += EqnTest(_T("((1>2)&&(1<2)) ? 128 : 255"), 255, true); iStat += EqnTest(_T("((ab)&&(a0 ? 1>2 ? 128 : 255 : 1>0 ? 32 : 64"), 255, true); iStat += EqnTest(_T("1>0 ? 1>2 ? 128 : 255 :(1>0 ? 32 : 64)"), 255, true); iStat += EqnTest(_T("1>0 ? 1>0 ? 128 : 255 : 1>2 ? 32 : 64"), 128, true); iStat += EqnTest(_T("1>0 ? 1>0 ? 128 : 255 :(1>2 ? 32 : 64)"), 128, true); iStat += EqnTest(_T("1>2 ? 1>2 ? 128 : 255 : 1>0 ? 32 : 64"), 32, true); iStat += EqnTest(_T("1>2 ? 1>0 ? 128 : 255 : 1>2 ? 32 : 64"), 64, true); iStat += EqnTest(_T("1>0 ? 50 : 1>0 ? 128 : 255"), 50, true); iStat += EqnTest(_T("1>0 ? 50 : (1>0 ? 128 : 255)"), 50, true); iStat += EqnTest(_T("1>0 ? 1>0 ? 128 : 255 : 50"), 128, true); iStat += EqnTest(_T("1>2 ? 1>2 ? 128 : 255 : 1>0 ? 32 : 1>2 ? 64 : 16"), 32, true); iStat += EqnTest(_T("1>2 ? 1>2 ? 128 : 255 : 1>0 ? 32 :(1>2 ? 64 : 16)"), 32, true); iStat += EqnTest(_T("1>0 ? 1>2 ? 128 : 255 : 1>0 ? 32 :1>2 ? 64 : 16"), 255, true); iStat += EqnTest(_T("1>0 ? 1>2 ? 128 : 255 : (1>0 ? 32 :1>2 ? 64 : 16)"), 255, true); iStat += EqnTest(_T("1 ? 0 ? 128 : 255 : 1 ? 32 : 64"), 255, true); // assignment operators iStat += EqnTest(_T("a= 0 ? 128 : 255, a"), 255, true); iStat += EqnTest(_T("a=((a>b)&&(a // this is now legal, for reference see: // https://sourceforge.net/forum/message.php?msg_id=7411373 // iStat += ThrowTest( _T("sin=9"), ecUNEXPECTED_OPERATOR); // iStat += ThrowTest(_T("(8)=5"), ecUNEXPECTED_OPERATOR); iStat += ThrowTest(_T("(a)=5"), ecUNEXPECTED_OPERATOR); iStat += ThrowTest(_T("a=\"tttt\""), ecOPRT_TYPE_CONFLICT); if (iStat == 0) mu::console() << _T("passed") << endl; else mu::console() << _T("\n failed with ") << iStat << _T(" errors") << endl; return iStat; } //--------------------------------------------------------------------------- void ParserTester::AddTest(testfun_type a_pFun) { m_vTestFun.push_back(a_pFun); } //--------------------------------------------------------------------------- void ParserTester::Run() { int iStat = 0; try { for (int i = 0; i < (int)m_vTestFun.size(); ++i) iStat += (this->*m_vTestFun[i])(); } catch (Parser::exception_type& e) { mu::console() << "\n" << e.GetMsg() << endl; mu::console() << e.GetToken() << endl; Abort(); } catch (std::exception& e) { mu::console() << e.what() << endl; Abort(); } catch (...) { mu::console() << "Internal error"; Abort(); } if (iStat == 0) { mu::console() << "Test passed (" << ParserTester::c_iCount << " expressions)" << endl; } else { mu::console() << "Test failed with " << iStat << " errors (" << ParserTester::c_iCount << " expressions)" << endl; } ParserTester::c_iCount = 0; } //--------------------------------------------------------------------------- int ParserTester::ThrowTest(const string_type& a_str, int a_iErrc, bool a_bFail) { ParserTester::c_iCount++; try { value_type fVal[] = {1, 1, 1}; Parser p; p.DefineVar(_T("a"), &fVal[0]); p.DefineVar(_T("b"), &fVal[1]); p.DefineVar(_T("c"), &fVal[2]); p.DefinePostfixOprt(_T("{m}"), Milli); p.DefinePostfixOprt(_T("m"), Milli); p.DefineFun(_T("ping"), Ping); p.DefineFun(_T("valueof"), ValueOf); p.DefineFun(_T("strfun1"), StrFun1); p.DefineFun(_T("strfun2"), StrFun2); p.DefineFun(_T("strfun3"), StrFun3); p.SetExpr(a_str); p.Eval(); } catch (ParserError& e) { // output the formula in case of an failed test if (a_bFail == false || (a_bFail == true && a_iErrc != e.GetCode())) { mu::console() << _T("\n ") << _T("Expression: ") << a_str << _T(" Code:") << e.GetCode() << _T("(") << e.GetMsg() << _T(")") << _T(" Expected:") << a_iErrc; } return (a_iErrc == e.GetCode()) ? 0 : 1; } // if a_bFail==false no exception is expected bool bRet((a_bFail == false) ? 0 : 1); if (bRet == 1) { mu::console() << _T("\n ") << _T("Expression: ") << a_str << _T(" did evaluate; Expected error:") << a_iErrc; } return bRet; } //--------------------------------------------------------------------------- /** \brief Evaluate a tet expression. \return 1 in case of a failure, 0 otherwise. */ int ParserTester::EqnTestWithVarChange(const string_type& a_str, double a_fVar1, double a_fRes1, double a_fVar2, double a_fRes2) { ParserTester::c_iCount++; try { value_type fVal[2] = {-999, -999}; // should be equal Parser p; value_type var = 0; // variable p.DefineVar(_T("a"), &var); p.SetExpr(a_str); var = a_fVar1; fVal[0] = p.Eval(); var = a_fVar2; fVal[1] = p.Eval(); if (fabs(a_fRes1 - fVal[0]) > 0.0000000001) throw std::runtime_error("incorrect result (first pass)"); if (fabs(a_fRes2 - fVal[1]) > 0.0000000001) throw std::runtime_error("incorrect result (second pass)"); } catch (Parser::exception_type& e) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (") << e.GetMsg() << _T(")"); return 1; } catch (std::exception& e) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (") << e.what() << _T(")"); return 1; // always return a failure since this exception is not expected } catch (...) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (unexpected exception)"); return 1; // exceptions other than ParserException are not allowed } return 0; } //--------------------------------------------------------------------------- /** \brief Evaluate a tet expression. \return 1 in case of a failure, 0 otherwise. */ int ParserTester::EqnTest(const string_type& a_str, double a_fRes, bool a_fPass) { ParserTester::c_iCount++; int iRet(0); value_type fVal[5] = {-999, -998, -997, -996, -995}; // initially should be different try { std::auto_ptr p1; Parser p2, p3; // three parser objects // they will be used for testing copy and assignment operators // p1 is a pointer since i'm going to delete it in order to test if // parsers after copy construction still refer to members of it. // !! If this is the case this function will crash !! p1.reset(new mu::Parser()); // Add constants p1->DefineConst(_T("pi"), (value_type)PARSER_CONST_PI); p1->DefineConst(_T("e"), (value_type)PARSER_CONST_E); p1->DefineConst(_T("const"), 1); p1->DefineConst(_T("const1"), 2); p1->DefineConst(_T("const2"), 3); // string constants p1->DefineStrConst(_T("str1"), _T("1.11")); p1->DefineStrConst(_T("str2"), _T("2.22")); // variables value_type vVarVal[] = {1, 2, 3, -2}; p1->DefineVar(_T("a"), &vVarVal[0]); p1->DefineVar(_T("aa"), &vVarVal[1]); p1->DefineVar(_T("b"), &vVarVal[1]); p1->DefineVar(_T("c"), &vVarVal[2]); p1->DefineVar(_T("d"), &vVarVal[3]); // custom value ident functions p1->AddValIdent(&ParserTester::IsHexVal); // functions p1->DefineFun(_T("ping"), Ping); p1->DefineFun(_T("f1of1"), f1of1); // one parameter p1->DefineFun(_T("f1of2"), f1of2); // two parameter p1->DefineFun(_T("f2of2"), f2of2); p1->DefineFun(_T("f1of3"), f1of3); // three parameter p1->DefineFun(_T("f2of3"), f2of3); p1->DefineFun(_T("f3of3"), f3of3); p1->DefineFun(_T("f1of4"), f1of4); // four parameter p1->DefineFun(_T("f2of4"), f2of4); p1->DefineFun(_T("f3of4"), f3of4); p1->DefineFun(_T("f4of4"), f4of4); p1->DefineFun(_T("f1of5"), f1of5); // five parameter p1->DefineFun(_T("f2of5"), f2of5); p1->DefineFun(_T("f3of5"), f3of5); p1->DefineFun(_T("f4of5"), f4of5); p1->DefineFun(_T("f5of5"), f5of5); // binary operators p1->DefineOprt(_T("add"), add, 0); p1->DefineOprt(_T("++"), add, 0); p1->DefineOprt(_T("&"), land, prLAND); // sample functions p1->DefineFun(_T("min"), Min); p1->DefineFun(_T("max"), Max); p1->DefineFun(_T("sum"), Sum); p1->DefineFun(_T("valueof"), ValueOf); p1->DefineFun(_T("atof"), StrToFloat); p1->DefineFun(_T("strfun1"), StrFun1); p1->DefineFun(_T("strfun2"), StrFun2); p1->DefineFun(_T("strfun3"), StrFun3); p1->DefineFun(_T("lastArg"), LastArg); p1->DefineFun(_T("firstArg"), FirstArg); p1->DefineFun(_T("order"), FirstArg); // infix / postfix operator // Note: Identifiers used here do not have any meaning // they are mere placeholders to test certain features. p1->DefineInfixOprt(_T("$"), sign, prPOW + 1); // sign with high priority p1->DefineInfixOprt(_T("~"), plus2); // high priority p1->DefineInfixOprt(_T("~~"), plus2); p1->DefinePostfixOprt(_T("{m}"), Milli); p1->DefinePostfixOprt(_T("{M}"), Mega); p1->DefinePostfixOprt(_T("m"), Milli); p1->DefinePostfixOprt(_T("meg"), Mega); p1->DefinePostfixOprt(_T("#"), times3); p1->DefinePostfixOprt(_T("'"), sqr); p1->SetExpr(a_str); // Test bytecode integrity // String parsing and bytecode parsing must yield the same result fVal[0] = p1->Eval(); // result from stringparsing fVal[1] = p1->Eval(); // result from bytecode if (fVal[0] != fVal[1]) throw Parser::exception_type(_T("Bytecode / string parsing mismatch.")); // Test copy and assignment operators try { // Test copy constructor std::vector vParser; vParser.push_back(*(p1.get())); mu::Parser p2 = vParser[0]; // take parser from vector // destroy the originals from p2 vParser.clear(); // delete the vector p1.reset(0); fVal[2] = p2.Eval(); // Test assignment operator // additionally disable Optimizer this time mu::Parser p3; p3 = p2; p3.EnableOptimizer(false); fVal[3] = p3.Eval(); // Test Eval function for multiple return values // use p2 since it has the optimizer enabled! int nNum; value_type* v = p2.Eval(nNum); fVal[4] = v[nNum - 1]; } catch (std::exception& e) { mu::console() << _T("\n ") << e.what() << _T("\n"); } // limited floating point accuracy requires the following test bool bCloseEnough(true); for (unsigned i = 0; i < sizeof(fVal) / sizeof(value_type); ++i) { bCloseEnough &= (fabs(a_fRes - fVal[i]) <= fabs(fVal[i] * 0.00001)); // The tests equations never result in infinity, if they do thats a bug. // reference: // http://sourceforge.net/projects/muparser/forums/forum/462843/topic/5037825 #pragma warning(push) #pragma warning(disable : 4127) if (std::numeric_limits::has_infinity) #pragma warning(pop) { bCloseEnough &= (fabs(fVal[i]) != numeric_limits::infinity()); } } iRet = ((bCloseEnough && a_fPass) || (!bCloseEnough && !a_fPass)) ? 0 : 1; if (iRet == 1) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (incorrect result; expected: ") << a_fRes << _T(" ;calculated: ") << fVal[0] << _T(",") << fVal[1] << _T(",") << fVal[2] << _T(",") << fVal[3] << _T(",") << fVal[4] << _T(")."); } } catch (Parser::exception_type& e) { if (a_fPass) { if (fVal[0] != fVal[2] && fVal[0] != -999 && fVal[1] != -998) mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (copy construction)"); else mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (") << e.GetMsg() << _T(")"); return 1; } } catch (std::exception& e) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (") << e.what() << _T(")"); return 1; // always return a failure since this exception is not expected } catch (...) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (unexpected exception)"); return 1; // exceptions other than ParserException are not allowed } return iRet; } //--------------------------------------------------------------------------- int ParserTester::EqnTestInt(const string_type& a_str, double a_fRes, bool a_fPass) { ParserTester::c_iCount++; value_type vVarVal[] = {1, 2, 3}; // variable values int iRet(0); try { value_type fVal[2] = {-99, -999}; // results: initially should be different ParserInt p; p.DefineConst(_T("const1"), 1); p.DefineConst(_T("const2"), 2); p.DefineVar(_T("a"), &vVarVal[0]); p.DefineVar(_T("b"), &vVarVal[1]); p.DefineVar(_T("c"), &vVarVal[2]); p.SetExpr(a_str); fVal[0] = p.Eval(); // result from stringparsing fVal[1] = p.Eval(); // result from bytecode if (fVal[0] != fVal[1]) throw Parser::exception_type(_T("Bytecode corrupt.")); iRet = ((a_fRes == fVal[0] && a_fPass) || (a_fRes != fVal[0] && !a_fPass)) ? 0 : 1; if (iRet == 1) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (incorrect result; expected: ") << a_fRes << _T(" ;calculated: ") << fVal[0] << _T(")."); } } catch (Parser::exception_type& e) { if (a_fPass) { mu::console() << _T("\n fail: ") << e.GetExpr() << _T(" : ") << e.GetMsg(); iRet = 1; } } catch (...) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (unexpected exception)"); iRet = 1; // exceptions other than ParserException are not allowed } return iRet; } //--------------------------------------------------------------------------- /** \brief Test an expression in Bulk Mode. */ int ParserTester::EqnTestBulk(const string_type& a_str, double a_fRes[4], bool a_fPass) { ParserTester::c_iCount++; // Define Bulk Variables int nBulkSize = 4; value_type vVariableA[] = {1, 2, 3, 4}; // variable values value_type vVariableB[] = {2, 2, 2, 2}; // variable values value_type vVariableC[] = {3, 3, 3, 3}; // variable values value_type vResults[] = {0, 0, 0, 0}; // variable values int iRet(0); try { Parser p; p.DefineConst(_T("const1"), 1); p.DefineConst(_T("const2"), 2); p.DefineVar(_T("a"), vVariableA); p.DefineVar(_T("b"), vVariableB); p.DefineVar(_T("c"), vVariableC); p.SetExpr(a_str); p.Eval(vResults, nBulkSize); bool bCloseEnough(true); for (int i = 0; i < nBulkSize; ++i) { bCloseEnough &= (fabs(a_fRes[i] - vResults[i]) <= fabs(a_fRes[i] * 0.00001)); } iRet = ((bCloseEnough && a_fPass) || (!bCloseEnough && !a_fPass)) ? 0 : 1; if (iRet == 1) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (incorrect result; expected: {") << a_fRes[0] << _T(",") << a_fRes[1] << _T(",") << a_fRes[2] << _T(",") << a_fRes[3] << _T("}") << _T(" ;calculated: ") << vResults[0] << _T(",") << vResults[1] << _T(",") << vResults[2] << _T(",") << vResults[3] << _T("}"); } } catch (Parser::exception_type& e) { if (a_fPass) { mu::console() << _T("\n fail: ") << e.GetExpr() << _T(" : ") << e.GetMsg(); iRet = 1; } } catch (...) { mu::console() << _T("\n fail: ") << a_str.c_str() << _T(" (unexpected exception)"); iRet = 1; // exceptions other than ParserException are not allowed } return iRet; } //--------------------------------------------------------------------------- /** \brief Internal error in test class Test is going to be aborted. */ void ParserTester::Abort() const { mu::console() << _T("Test failed (internal error in test class)") << endl; while (!getchar()) ; exit(-1); } } // namespace Test } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserError.cpp0000644000175000017500000003131614522641732022672 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParserError.h" namespace mu { const ParserErrorMsg ParserErrorMsg::m_Instance; //------------------------------------------------------------------------------ const ParserErrorMsg& ParserErrorMsg::Instance() { return m_Instance; } //------------------------------------------------------------------------------ string_type ParserErrorMsg::operator[](unsigned a_iIdx) const { return (a_iIdx < m_vErrMsg.size()) ? m_vErrMsg[a_iIdx] : string_type(); } //--------------------------------------------------------------------------- ParserErrorMsg::~ParserErrorMsg() {} //--------------------------------------------------------------------------- /** \brief Assignement operator is deactivated. */ ParserErrorMsg& ParserErrorMsg::operator=(const ParserErrorMsg&) { assert(false); return *this; } //--------------------------------------------------------------------------- ParserErrorMsg::ParserErrorMsg(const ParserErrorMsg&) {} //--------------------------------------------------------------------------- ParserErrorMsg::ParserErrorMsg() : m_vErrMsg(0) { m_vErrMsg.resize(ecCOUNT); m_vErrMsg[ecUNASSIGNABLE_TOKEN] = _T("Unexpected token \"$TOK$\" found at position $POS$."); m_vErrMsg[ecINTERNAL_ERROR] = _T("Internal error"); m_vErrMsg[ecINVALID_NAME] = _T("Invalid function-, variable- or constant name: \"$TOK$\"."); m_vErrMsg[ecINVALID_BINOP_IDENT] = _T("Invalid binary operator identifier: \"$TOK$\"."); m_vErrMsg[ecINVALID_INFIX_IDENT] = _T("Invalid infix operator identifier: \"$TOK$\"."); m_vErrMsg[ecINVALID_POSTFIX_IDENT] = _T("Invalid postfix operator identifier: \"$TOK$\"."); m_vErrMsg[ecINVALID_FUN_PTR] = _T("Invalid pointer to callback function."); m_vErrMsg[ecEMPTY_EXPRESSION] = _T("Expression is empty."); m_vErrMsg[ecINVALID_VAR_PTR] = _T("Invalid pointer to variable."); m_vErrMsg[ecUNEXPECTED_OPERATOR] = _T("Unexpected operator \"$TOK$\" found at position $POS$"); m_vErrMsg[ecUNEXPECTED_EOF] = _T("Unexpected end of expression at position $POS$"); m_vErrMsg[ecUNEXPECTED_ARG_SEP] = _T("Unexpected argument separator at position $POS$"); m_vErrMsg[ecUNEXPECTED_PARENS] = _T("Unexpected parenthesis \"$TOK$\" at position $POS$"); m_vErrMsg[ecUNEXPECTED_FUN] = _T("Unexpected function \"$TOK$\" at position $POS$"); m_vErrMsg[ecUNEXPECTED_VAL] = _T("Unexpected value \"$TOK$\" found at position $POS$"); m_vErrMsg[ecUNEXPECTED_VAR] = _T("Unexpected variable \"$TOK$\" found at position $POS$"); m_vErrMsg[ecUNEXPECTED_ARG] = _T("Function arguments used without a function (position: $POS$)"); m_vErrMsg[ecMISSING_PARENS] = _T("Missing parenthesis"); m_vErrMsg[ecTOO_MANY_PARAMS] = _T("Too many parameters for function \"$TOK$\" at expression position $POS$"); m_vErrMsg[ecTOO_FEW_PARAMS] = _T("Too few parameters for function \"$TOK$\" at expression position $POS$"); m_vErrMsg[ecDIV_BY_ZERO] = _T("Divide by zero"); m_vErrMsg[ecDOMAIN_ERROR] = _T("Domain error"); m_vErrMsg[ecNAME_CONFLICT] = _T("Name conflict"); m_vErrMsg[ecOPT_PRI] = _T("Invalid value for operator priority (must be greater or equal to zero)."); m_vErrMsg[ecBUILTIN_OVERLOAD] = _T("user defined binary operator \"$TOK$\" conflicts with a built in operator."); m_vErrMsg[ecUNEXPECTED_STR] = _T("Unexpected string token found at position $POS$."); m_vErrMsg[ecUNTERMINATED_STRING] = _T("Unterminated string starting at position $POS$."); m_vErrMsg[ecSTRING_EXPECTED] = _T("String function called with a non string type of argument."); m_vErrMsg[ecVAL_EXPECTED] = _T("String value used where a numerical argument is expected."); m_vErrMsg[ecOPRT_TYPE_CONFLICT] = _T("No suitable overload for operator \"$TOK$\" at position $POS$."); m_vErrMsg[ecSTR_RESULT] = _T("Function result is a string."); m_vErrMsg[ecGENERIC] = _T("Parser error."); m_vErrMsg[ecLOCALE] = _T("Decimal separator is identic to function argument separator."); m_vErrMsg[ecUNEXPECTED_CONDITIONAL] = _T("The \"$TOK$\" operator must be preceeded by a closing bracket."); m_vErrMsg[ecMISSING_ELSE_CLAUSE] = _T("If-then-else operator is missing an else clause"); m_vErrMsg[ecMISPLACED_COLON] = _T("Misplaced colon at position $POS$"); m_vErrMsg[ecUNREASONABLE_NUMBER_OF_COMPUTATIONS] = _T("Number of computations to small for bulk mode. (Vectorisation overhead too costly)"); #if defined(_DEBUG) for (int i = 0; i < ecCOUNT; ++i) if (!m_vErrMsg[i].length()) assert(false); #endif } //--------------------------------------------------------------------------- // // ParserError class // //--------------------------------------------------------------------------- /** \brief Default constructor. */ ParserError::ParserError() : m_strMsg(), m_strFormula(), m_strTok(), m_iPos(-1), m_iErrc(ecUNDEFINED), m_ErrMsg(ParserErrorMsg::Instance()) { } //------------------------------------------------------------------------------ /** \brief This Constructor is used for internal exceptions only. It does not contain any information but the error code. */ ParserError::ParserError(EErrorCodes a_iErrc) : m_strMsg(), m_strFormula(), m_strTok(), m_iPos(-1), m_iErrc(a_iErrc), m_ErrMsg(ParserErrorMsg::Instance()) { m_strMsg = m_ErrMsg[m_iErrc]; stringstream_type stream; stream << (int)m_iPos; ReplaceSubString(m_strMsg, _T("$POS$"), stream.str()); ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok); } //------------------------------------------------------------------------------ /** \brief Construct an error from a message text. */ ParserError::ParserError(const string_type& sMsg) : m_ErrMsg(ParserErrorMsg::Instance()) { Reset(); m_strMsg = sMsg; } //------------------------------------------------------------------------------ /** \brief Construct an error object. \param [in] a_iErrc the error code. \param [in] sTok The token string related to this error. \param [in] sExpr The expression related to the error. \param [in] a_iPos the position in the expression where the error occurred. */ ParserError::ParserError(EErrorCodes iErrc, const string_type& sTok, const string_type& sExpr, int iPos) : m_strMsg(), m_strFormula(sExpr), m_strTok(sTok), m_iPos(iPos), m_iErrc(iErrc), m_ErrMsg(ParserErrorMsg::Instance()) { m_strMsg = m_ErrMsg[m_iErrc]; stringstream_type stream; stream << (int)m_iPos; ReplaceSubString(m_strMsg, _T("$POS$"), stream.str()); ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok); } //------------------------------------------------------------------------------ /** \brief Construct an error object. \param [in] iErrc the error code. \param [in] iPos the position in the expression where the error occurred. \param [in] sTok The token string related to this error. */ ParserError::ParserError(EErrorCodes iErrc, int iPos, const string_type& sTok) : m_strMsg(), m_strFormula(), m_strTok(sTok), m_iPos(iPos), m_iErrc(iErrc), m_ErrMsg(ParserErrorMsg::Instance()) { m_strMsg = m_ErrMsg[m_iErrc]; stringstream_type stream; stream << (int)m_iPos; ReplaceSubString(m_strMsg, _T("$POS$"), stream.str()); ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok); } //------------------------------------------------------------------------------ /** \brief Construct an error object. \param [in] szMsg The error message text. \param [in] iPos the position related to the error. \param [in] sTok The token string related to this error. */ ParserError::ParserError(const char_type* szMsg, int iPos, const string_type& sTok) : m_strMsg(szMsg), m_strFormula(), m_strTok(sTok), m_iPos(iPos), m_iErrc(ecGENERIC), m_ErrMsg(ParserErrorMsg::Instance()) { stringstream_type stream; stream << (int)m_iPos; ReplaceSubString(m_strMsg, _T("$POS$"), stream.str()); ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok); } //------------------------------------------------------------------------------ /** \brief Copy constructor. */ ParserError::ParserError(const ParserError& a_Obj) : m_strMsg(a_Obj.m_strMsg), m_strFormula(a_Obj.m_strFormula), m_strTok(a_Obj.m_strTok), m_iPos(a_Obj.m_iPos), m_iErrc(a_Obj.m_iErrc), m_ErrMsg(ParserErrorMsg::Instance()) { } //------------------------------------------------------------------------------ /** \brief Assignment operator. */ ParserError& ParserError::operator=(const ParserError& a_Obj) { if (this == &a_Obj) return *this; m_strMsg = a_Obj.m_strMsg; m_strFormula = a_Obj.m_strFormula; m_strTok = a_Obj.m_strTok; m_iPos = a_Obj.m_iPos; m_iErrc = a_Obj.m_iErrc; return *this; } //------------------------------------------------------------------------------ ParserError::~ParserError() {} //------------------------------------------------------------------------------ /** \brief Replace all occurrences of a substring with another string. \param strFind The string that shall be replaced. \param strReplaceWith The string that should be inserted instead of strFind */ void ParserError::ReplaceSubString(string_type& strSource, const string_type& strFind, const string_type& strReplaceWith) { string_type strResult; string_type::size_type iPos(0), iNext(0); for (;;) { iNext = strSource.find(strFind, iPos); strResult.append(strSource, iPos, iNext - iPos); if (iNext == string_type::npos) break; strResult.append(strReplaceWith); iPos = iNext + strFind.length(); } strSource.swap(strResult); } //------------------------------------------------------------------------------ /** \brief Reset the erro object. */ void ParserError::Reset() { m_strMsg = _T(""); m_strFormula = _T(""); m_strTok = _T(""); m_iPos = -1; m_iErrc = ecUNDEFINED; } //------------------------------------------------------------------------------ /** \brief Set the expression related to this error. */ void ParserError::SetFormula(const string_type& a_strFormula) { m_strFormula = a_strFormula; } //------------------------------------------------------------------------------ /** \brief gets the expression related tp this error.*/ const string_type& ParserError::GetExpr() const { return m_strFormula; } //------------------------------------------------------------------------------ /** \brief Returns the message string for this error. */ const string_type& ParserError::GetMsg() const { return m_strMsg; } //------------------------------------------------------------------------------ /** \brief Return the formula position related to the error. If the error is not related to a distinct position this will return -1 */ int ParserError::GetPos() const { return m_iPos; } //------------------------------------------------------------------------------ /** \brief Return string related with this token (if available). */ const string_type& ParserError::GetToken() const { return m_strTok; } //------------------------------------------------------------------------------ /** \brief Return the error code. */ EErrorCodes ParserError::GetCode() const { return m_iErrc; } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserTokenReader.h0000644000175000017500000001326714522641732023456 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_TOKEN_READER_H #define MU_PARSER_TOKEN_READER_H #include #include #include #include #include #include #include #include #include "muParserDef.h" #include "muParserToken.h" /** \file \brief This file contains the parser token reader definition. */ namespace mu { // Forward declaration class ParserBase; /** \brief Token reader for the ParserBase class. */ class ParserTokenReader { private: typedef ParserToken token_type; public: ParserTokenReader(ParserBase* a_pParent); ParserTokenReader* Clone(ParserBase* a_pParent) const; void AddValIdent(identfun_type a_pCallback); void SetVarCreator(facfun_type a_pFactory, void* pUserData); void SetFormula(const string_type& a_strFormula); void SetArgSep(char_type cArgSep); int GetPos() const; const string_type& GetExpr() const; varmap_type& GetUsedVar(); char_type GetArgSep() const; void IgnoreUndefVar(bool bIgnore); void ReInit(); token_type ReadNextToken(); private: /** \brief Syntax codes. The syntax codes control the syntax check done during the first time parsing of the expression string. They are flags that indicate which tokens are allowed next if certain tokens are identified. */ enum ESynCodes { noBO = 1 << 0, ///< to avoid i.e. "cos(7)(" noBC = 1 << 1, ///< to avoid i.e. "sin)" or "()" noVAL = 1 << 2, ///< to avoid i.e. "tan 2" or "sin(8)3.14" noVAR = 1 << 3, ///< to avoid i.e. "sin a" or "sin(8)a" noARG_SEP = 1 << 4, ///< to avoid i.e. ",," or "+," ... noFUN = 1 << 5, ///< to avoid i.e. "sqrt cos" or "(1)sin" noOPT = 1 << 6, ///< to avoid i.e. "(+)" noPOSTOP = 1 << 7, ///< to avoid i.e. "(5!!)" "sin!" noINFIXOP = 1 << 8, ///< to avoid i.e. "++4" "!!4" noEND = 1 << 9, ///< to avoid unexpected end of formula noSTR = 1 << 10, ///< to block numeric arguments on string functions noASSIGN = 1 << 11, ///< to block assignement to constant i.e. "4=7" noIF = 1 << 12, noELSE = 1 << 13, sfSTART_OF_LINE = noOPT | noBC | noPOSTOP | noASSIGN | noIF | noELSE | noARG_SEP, noANY = ~0 ///< All of he above flags set }; ParserTokenReader(const ParserTokenReader& a_Reader); ParserTokenReader& operator=(const ParserTokenReader& a_Reader); void Assign(const ParserTokenReader& a_Reader); void SetParent(ParserBase* a_pParent); int ExtractToken(const char_type* a_szCharSet, string_type& a_strTok, int a_iPos) const; int ExtractOperatorToken(string_type& a_sTok, int a_iPos) const; bool IsBuiltIn(token_type& a_Tok); bool IsArgSep(token_type& a_Tok); bool IsEOF(token_type& a_Tok); bool IsInfixOpTok(token_type& a_Tok); bool IsFunTok(token_type& a_Tok); bool IsPostOpTok(token_type& a_Tok); bool IsOprt(token_type& a_Tok); bool IsValTok(token_type& a_Tok); bool IsVarTok(token_type& a_Tok); bool IsStrVarTok(token_type& a_Tok); bool IsUndefVarTok(token_type& a_Tok); bool IsString(token_type& a_Tok); void Error(EErrorCodes a_iErrc, int a_iPos = -1, const string_type& a_sTok = string_type()) const; token_type& SaveBeforeReturn(const token_type& tok); ParserBase* m_pParser; string_type m_strFormula; int m_iPos; int m_iSynFlags; bool m_bIgnoreUndefVar; const funmap_type* m_pFunDef; const funmap_type* m_pPostOprtDef; const funmap_type* m_pInfixOprtDef; const funmap_type* m_pOprtDef; const valmap_type* m_pConstDef; const strmap_type* m_pStrVarDef; varmap_type* m_pVarDef; ///< The only non const pointer to parser internals facfun_type m_pFactory; void* m_pFactoryData; std::list m_vIdentFun; ///< Value token identification function varmap_type m_UsedVar; value_type m_fZero; ///< Dummy value of zero, referenced by undefined variables int m_iBrackets; token_type m_lastTok; char_type m_cArgSep; ///< The character used for separating function arguments }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserDef.h0000644000175000017500000003622314522641732021746 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2014 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MUP_DEF_H #define MUP_DEF_H #include #include #include #include #include "muParserFixes.h" /** \file \brief This file contains standard definitions used by the parser. */ #define MUP_VERSION _T("2.2.5") #define MUP_VERSION_DATE _T("20150427; GC") #define MUP_CHARS _T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ") /** \brief If this macro is defined mathematical exceptions (div by zero) will be thrown as exceptions. */ //#define MUP_MATH_EXCEPTIONS /** \brief Define the base datatype for values. This datatype must be a built in value type. You can not use custom classes. It should be working with all types except "int"! */ #define MUP_BASETYPE double /** \brief Activate this option in order to compile with OpenMP support. OpenMP is used only in the bulk mode it may increase the performance a bit. */ //#define MUP_USE_OPENMP #if defined(_UNICODE) /** \brief Definition of the basic parser string type. */ #define MUP_STRING_TYPE std::wstring #if !defined(_T) #define _T(x) L##x #endif // not defined _T #else #ifndef _T #define _T(x) x #endif /** \brief Definition of the basic parser string type. */ #define MUP_STRING_TYPE std::string #endif #if defined(_DEBUG) /** \brief Debug macro to force an abortion of the programm with a certain message. */ #define MUP_FAIL(MSG) \ { \ bool MSG = false; \ assert(MSG); \ } /** \brief An assertion that does not kill the program. This macro is neutralised in UNICODE builds. It's too difficult to translate. */ #define MUP_ASSERT(COND) \ if (!(COND)) \ { \ stringstream_type ss; \ ss << _T("Assertion \"") _T(#COND) _T("\" failed: ") << __FILE__ << _T(" line ") << __LINE__ << _T("."); \ throw ParserError(ss.str()); \ } #else #define MUP_FAIL(MSG) #define MUP_ASSERT(COND) #endif namespace mu { #if defined(_UNICODE) //------------------------------------------------------------------------------ /** \brief Encapsulate wcout. */ inline std::wostream& console() { return std::wcout; } /** \brief Encapsulate cin. */ inline std::wistream& console_in() { return std::wcin; } #else /** \brief Encapsulate cout. Used for supporting UNICODE more easily. */ inline std::ostream& console() { return std::cout; } /** \brief Encapsulate cin. Used for supporting UNICODE more easily. */ inline std::istream& console_in() { return std::cin; } #endif //------------------------------------------------------------------------------ /** \brief Bytecode values. \attention The order of the operator entries must match the order in ParserBase::c_DefaultOprt! */ enum ECmdCode { // The following are codes for built in binary operators // apart from built in operators the user has the opportunity to // add user defined operators. cmLE = 0, ///< Operator item: less or equal cmGE = 1, ///< Operator item: greater or equal cmNEQ = 2, ///< Operator item: not equal cmEQ = 3, ///< Operator item: equals cmLT = 4, ///< Operator item: less than cmGT = 5, ///< Operator item: greater than cmADD = 6, ///< Operator item: add cmSUB = 7, ///< Operator item: subtract cmMUL = 8, ///< Operator item: multiply cmDIV = 9, ///< Operator item: division cmPOW = 10, ///< Operator item: y to the power of ... cmLAND = 11, cmLOR = 12, cmASSIGN = 13, ///< Operator item: Assignment operator cmBO = 14, ///< Operator item: opening bracket cmBC = 15, ///< Operator item: closing bracket cmIF = 16, ///< For use in the ternary if-then-else operator cmELSE = 17, ///< For use in the ternary if-then-else operator cmENDIF = 18, ///< For use in the ternary if-then-else operator cmARG_SEP = 19, ///< function argument separator cmVAR = 20, ///< variable item cmVAL = 21, ///< value item // For optimization purposes cmVARPOW2, cmVARPOW3, cmVARPOW4, cmVARMUL, cmPOW2, // operators and functions cmFUNC, ///< Code for a generic function item cmFUNC_STR, ///< Code for a function with a string parameter cmFUNC_BULK, ///< Special callbacks for Bulk mode with an additional parameter for the bulk index cmSTRING, ///< Code for a string token cmOPRT_BIN, ///< user defined binary operator cmOPRT_POSTFIX, ///< code for postfix operators cmOPRT_INFIX, ///< code for infix operators cmEND, ///< end of formula cmUNKNOWN ///< uninitialized item }; //------------------------------------------------------------------------------ /** \brief Types internally used by the parser. */ enum ETypeCode { tpSTR = 0, ///< String type (Function arguments and constants only, no string variables) tpDBL = 1, ///< Floating point variables tpVOID = 2 ///< Undefined type. }; //------------------------------------------------------------------------------ enum EParserVersionInfo { pviBRIEF, pviFULL }; //------------------------------------------------------------------------------ /** \brief Parser operator precedence values. */ enum EOprtAssociativity { oaLEFT = 0, oaRIGHT = 1, oaNONE = 2 }; //------------------------------------------------------------------------------ /** \brief Parser operator precedence values. */ enum EOprtPrecedence { // binary operators prLOR = 1, prLAND = 2, prLOGIC = 3, ///< logic operators prCMP = 4, ///< comparsion operators prADD_SUB = 5, ///< addition prMUL_DIV = 6, ///< multiplication/division prPOW = 7, ///< power operator priority (highest) // infix operators prINFIX = 6, ///< Signs have a higher priority than ADD_SUB, but lower than power operator prPOSTFIX = 6 ///< Postfix operator priority (currently unused) }; //------------------------------------------------------------------------------ // basic types /** \brief The numeric datatype used by the parser. Normally this is a floating point type either single or double precision. */ typedef MUP_BASETYPE value_type; /** \brief The stringtype used by the parser. Depends on wether UNICODE is used or not. */ typedef MUP_STRING_TYPE string_type; /** \brief The character type used by the parser. Depends on wether UNICODE is used or not. */ typedef string_type::value_type char_type; /** \brief Typedef for easily using stringstream that respect the parser stringtype. */ typedef std::basic_stringstream, std::allocator > stringstream_type; // Data container types /** \brief Type used for storing variables. */ typedef std::map varmap_type; /** \brief Type used for storing constants. */ typedef std::map valmap_type; /** \brief Type for assigning a string name to an index in the internal string table. */ typedef std::map strmap_type; // Parser callbacks /** \brief Callback type used for functions without arguments. */ typedef value_type (*generic_fun_type)(); /** \brief Callback type used for functions without arguments. */ typedef value_type (*fun_type0)(); /** \brief Callback type used for functions with a single arguments. */ typedef value_type (*fun_type1)(value_type); /** \brief Callback type used for functions with two arguments. */ typedef value_type (*fun_type2)(value_type, value_type); /** \brief Callback type used for functions with three arguments. */ typedef value_type (*fun_type3)(value_type, value_type, value_type); /** \brief Callback type used for functions with four arguments. */ typedef value_type (*fun_type4)(value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*fun_type5)(value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*fun_type6)(value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*fun_type7)(value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type ( *fun_type8)(value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type ( *fun_type9)(value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*fun_type10)(value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions without arguments. */ typedef value_type (*bulkfun_type0)(int, int); /** \brief Callback type used for functions with a single arguments. */ typedef value_type (*bulkfun_type1)(int, int, value_type); /** \brief Callback type used for functions with two arguments. */ typedef value_type (*bulkfun_type2)(int, int, value_type, value_type); /** \brief Callback type used for functions with three arguments. */ typedef value_type (*bulkfun_type3)(int, int, value_type, value_type, value_type); /** \brief Callback type used for functions with four arguments. */ typedef value_type (*bulkfun_type4)(int, int, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*bulkfun_type5)(int, int, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*bulkfun_type6)(int, int, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type ( *bulkfun_type7)(int, int, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*bulkfun_type8)(int, int, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*bulkfun_type9)(int, int, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with five arguments. */ typedef value_type (*bulkfun_type10)(int, int, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type, value_type); /** \brief Callback type used for functions with a variable argument list. */ typedef value_type (*multfun_type)(const value_type*, int); /** \brief Callback type used for functions taking a string as an argument. */ typedef value_type (*strfun_type1)(const char_type*); /** \brief Callback type used for functions taking a string and a value as arguments. */ typedef value_type (*strfun_type2)(const char_type*, value_type); /** \brief Callback type used for functions taking a string and two values as arguments. */ typedef value_type (*strfun_type3)(const char_type*, value_type, value_type); /** \brief Callback used for functions that identify values in a string. */ typedef int (*identfun_type)(const char_type* sExpr, int* nPos, value_type* fVal); /** \brief Callback used for variable creation factory functions. */ typedef value_type* (*facfun_type)(const char_type*, void*); } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParser.cpp0000644000175000017500000003324414522641732021662 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParser.h" #include "muParserTemplateMagic.h" //--- Standard includes ------------------------------------------------------------------------ #include #include #include /** \brief Pi (what else?). */ #define PARSER_CONST_PI 3.141592653589793238462643 /** \brief The Eulerian number. */ #define PARSER_CONST_E 2.718281828459045235360287 using namespace std; /** \file \brief Implementation of the standard floating point parser. */ /** \brief Namespace for mathematical applications. */ namespace mu { //--------------------------------------------------------------------------- // Trigonometric function value_type Parser::Sin(value_type v) { return MathImpl::Sin(v); } value_type Parser::Cos(value_type v) { return MathImpl::Cos(v); } value_type Parser::Tan(value_type v) { return MathImpl::Tan(v); } value_type Parser::ASin(value_type v) { return MathImpl::ASin(v); } value_type Parser::ACos(value_type v) { return MathImpl::ACos(v); } value_type Parser::ATan(value_type v) { return MathImpl::ATan(v); } value_type Parser::ATan2(value_type v1, value_type v2) { return MathImpl::ATan2(v1, v2); } value_type Parser::Sinh(value_type v) { return MathImpl::Sinh(v); } value_type Parser::Cosh(value_type v) { return MathImpl::Cosh(v); } value_type Parser::Tanh(value_type v) { return MathImpl::Tanh(v); } value_type Parser::ASinh(value_type v) { return MathImpl::ASinh(v); } value_type Parser::ACosh(value_type v) { return MathImpl::ACosh(v); } value_type Parser::ATanh(value_type v) { return MathImpl::ATanh(v); } //--------------------------------------------------------------------------- // Logarithm functions // Logarithm base 2 value_type Parser::Log2(value_type v) { #ifdef MUP_MATH_EXCEPTIONS if (v <= 0) throw ParserError(ecDOMAIN_ERROR, _T("Log2")); #endif return MathImpl::Log2(v); } // Logarithm base 10 value_type Parser::Log10(value_type v) { #ifdef MUP_MATH_EXCEPTIONS if (v <= 0) throw ParserError(ecDOMAIN_ERROR, _T("Log10")); #endif return MathImpl::Log10(v); } // Logarithm base e (natural logarithm) value_type Parser::Ln(value_type v) { #ifdef MUP_MATH_EXCEPTIONS if (v <= 0) throw ParserError(ecDOMAIN_ERROR, _T("Ln")); #endif return MathImpl::Log(v); } //--------------------------------------------------------------------------- // misc value_type Parser::Exp(value_type v) { return MathImpl::Exp(v); } value_type Parser::Abs(value_type v) { return MathImpl::Abs(v); } value_type Parser::Sqrt(value_type v) { #ifdef MUP_MATH_EXCEPTIONS if (v < 0) throw ParserError(ecDOMAIN_ERROR, _T("sqrt")); #endif return MathImpl::Sqrt(v); } value_type Parser::Rint(value_type v) { return MathImpl::Rint(v); } value_type Parser::Sign(value_type v) { return MathImpl::Sign(v); } //--------------------------------------------------------------------------- /** \brief Callback for the unary minus operator. \param v The value to negate \return -v */ value_type Parser::UnaryMinus(value_type v) { return -v; } //--------------------------------------------------------------------------- /** \brief Callback for the unary minus operator. \param v The value to negate \return -v */ value_type Parser::UnaryPlus(value_type v) { return v; } //--------------------------------------------------------------------------- /** \brief Callback for adding multiple values. \param [in] a_afArg Vector with the function arguments \param [in] a_iArgc The size of a_afArg */ value_type Parser::Sum(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw exception_type(_T("too few arguments for function sum.")); value_type fRes = 0; for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i]; return fRes; } //--------------------------------------------------------------------------- /** \brief Callback for averaging multiple values. \param [in] a_afArg Vector with the function arguments \param [in] a_iArgc The size of a_afArg */ value_type Parser::Avg(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw exception_type(_T("too few arguments for function sum.")); value_type fRes = 0; for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i]; return fRes / (value_type)a_iArgc; } //--------------------------------------------------------------------------- /** \brief Callback for determining the minimum value out of a vector. \param [in] a_afArg Vector with the function arguments \param [in] a_iArgc The size of a_afArg */ value_type Parser::Min(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw exception_type(_T("too few arguments for function min.")); value_type fRes = a_afArg[0]; for (int i = 0; i < a_iArgc; ++i) fRes = std::min(fRes, a_afArg[i]); return fRes; } //--------------------------------------------------------------------------- /** \brief Callback for determining the maximum value out of a vector. \param [in] a_afArg Vector with the function arguments \param [in] a_iArgc The size of a_afArg */ value_type Parser::Max(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw exception_type(_T("too few arguments for function min.")); value_type fRes = a_afArg[0]; for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]); return fRes; } //--------------------------------------------------------------------------- /** \brief Default value recognition callback. \param [in] a_szExpr Pointer to the expression \param [in, out] a_iPos Pointer to an index storing the current position within the expression \param [out] a_fVal Pointer where the value should be stored in case one is found. \return 1 if a value was found 0 otherwise. */ int Parser::IsVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal) { value_type fVal(0); stringstream_type stream(a_szExpr); stream.seekg(0); // todo: check if this really is necessary stream.imbue(Parser::s_locale); stream >> fVal; stringstream_type::pos_type iEnd = stream.tellg(); // Position after reading if (iEnd == (stringstream_type::pos_type)-1) return 0; *a_iPos += (int)iEnd; *a_fVal = fVal; return 1; } //--------------------------------------------------------------------------- /** \brief Constructor. Call ParserBase class constructor and trigger Function, Operator and Constant initialization. */ Parser::Parser() : ParserBase() { AddValIdent(IsVal); InitCharSets(); InitFun(); InitConst(); InitOprt(); } //--------------------------------------------------------------------------- /** \brief Define the character sets. \sa DefineNameChars, DefineOprtChars, DefineInfixOprtChars This function is used for initializing the default character sets that define the characters to be useable in function and variable names and operators. */ void Parser::InitCharSets() { DefineNameChars(_T("0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")); DefineOprtChars(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-*^/?<>=#!$%&|~'_{}")); DefineInfixOprtChars(_T("/+-*^?<>=#!$%&|~'_")); } //--------------------------------------------------------------------------- /** \brief Initialize the default functions. */ void Parser::InitFun() { if (mu::TypeInfo::IsInteger()) { // When setting MUP_BASETYPE to an integer type // Place functions for dealing with integer values here // ... // ... // ... } else { // trigonometric functions DefineFun(_T("sin"), Sin); DefineFun(_T("cos"), Cos); DefineFun(_T("tan"), Tan); // arcus functions DefineFun(_T("asin"), ASin); DefineFun(_T("acos"), ACos); DefineFun(_T("atan"), ATan); DefineFun(_T("atan2"), ATan2); // hyperbolic functions DefineFun(_T("sinh"), Sinh); DefineFun(_T("cosh"), Cosh); DefineFun(_T("tanh"), Tanh); // arcus hyperbolic functions DefineFun(_T("asinh"), ASinh); DefineFun(_T("acosh"), ACosh); DefineFun(_T("atanh"), ATanh); // Logarithm functions DefineFun(_T("log2"), Log2); DefineFun(_T("log10"), Log10); DefineFun(_T("log"), Ln); DefineFun(_T("ln"), Ln); // misc DefineFun(_T("exp"), Exp); DefineFun(_T("sqrt"), Sqrt); DefineFun(_T("sign"), Sign); DefineFun(_T("rint"), Rint); DefineFun(_T("abs"), Abs); // Functions with variable number of arguments DefineFun(_T("sum"), Sum); DefineFun(_T("avg"), Avg); DefineFun(_T("min"), Min); DefineFun(_T("max"), Max); } } //--------------------------------------------------------------------------- /** \brief Initialize constants. By default the parser recognizes two constants. Pi ("pi") and the Eulerian number ("_e"). */ void Parser::InitConst() { DefineConst(_T("_pi"), (value_type)PARSER_CONST_PI); DefineConst(_T("_e"), (value_type)PARSER_CONST_E); } //--------------------------------------------------------------------------- /** \brief Initialize operators. By default only the unary minus operator is added. */ void Parser::InitOprt() { DefineInfixOprt(_T("-"), UnaryMinus); DefineInfixOprt(_T("+"), UnaryPlus); } //--------------------------------------------------------------------------- void Parser::OnDetectVar(string_type* /*pExpr*/, int& /*nStart*/, int& /*nEnd*/) { // this is just sample code to illustrate modifying variable names on the fly. // I'm not sure anyone really needs such a feature... /* string sVar(pExpr->begin()+nStart, pExpr->begin()+nEnd); string sRepl = std::string("_") + sVar + "_"; int nOrigVarEnd = nEnd; cout << "variable detected!\n"; cout << " Expr: " << *pExpr << "\n"; cout << " Start: " << nStart << "\n"; cout << " End: " << nEnd << "\n"; cout << " Var: \"" << sVar << "\"\n"; cout << " Repl: \"" << sRepl << "\"\n"; nEnd = nStart + sRepl.length(); cout << " End: " << nEnd << "\n"; pExpr->replace(pExpr->begin()+nStart, pExpr->begin()+nOrigVarEnd, sRepl); cout << " New expr: " << *pExpr << "\n"; */ } //--------------------------------------------------------------------------- /** \brief Numerically differentiate with regard to a variable. \param [in] a_Var Pointer to the differentiation variable. \param [in] a_fPos Position at which the differentiation should take place. \param [in] a_fEpsilon Epsilon used for the numerical differentiation. Numerical differentiation uses a 5 point operator yielding a 4th order formula. The default value for epsilon is 0.00074 which is numeric_limits::epsilon() ^ (1/5) as suggested in the muparser forum: http://sourceforge.net/forum/forum.php?thread_id=1994611&forum_id=462843 */ value_type Parser::Diff(value_type* a_Var, value_type a_fPos, value_type a_fEpsilon) const { value_type fRes(0), fBuf(*a_Var), f[4] = {0, 0, 0, 0}, fEpsilon(a_fEpsilon); // Backwards compatible calculation of epsilon inc case the user doesn't provide // his own epsilon if (fEpsilon == 0) fEpsilon = (a_fPos == 0) ? (value_type)1e-10 : (value_type)1e-7 * a_fPos; *a_Var = a_fPos + 2 * fEpsilon; f[0] = Eval(); *a_Var = a_fPos + 1 * fEpsilon; f[1] = Eval(); *a_Var = a_fPos - 1 * fEpsilon; f[2] = Eval(); *a_Var = a_fPos - 2 * fEpsilon; f[3] = Eval(); *a_Var = fBuf; // restore variable fRes = (-f[0] + 8 * f[1] - 8 * f[2] + f[3]) / (12 * fEpsilon); return fRes; } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserTest.h0000644000175000017500000001642614522641732022172 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_TEST_H #define MU_PARSER_TEST_H #include #include #include // for accumulate #include "muParser.h" #include "muParserInt.h" /** \file \brief This file contains the parser test class. */ namespace mu { /** \brief Namespace for test cases. */ namespace Test { //------------------------------------------------------------------------------ /** \brief Test cases for unit testing. (C) 2004-2011 Ingo Berg */ class ParserTester // final { private: static int c_iCount; // Multiarg callbacks static value_type f1of1(value_type v) { return v; }; static value_type f1of2(value_type v, value_type) { return v; }; static value_type f2of2(value_type, value_type v) { return v; }; static value_type f1of3(value_type v, value_type, value_type) { return v; }; static value_type f2of3(value_type, value_type v, value_type) { return v; }; static value_type f3of3(value_type, value_type, value_type v) { return v; }; static value_type f1of4(value_type v, value_type, value_type, value_type) { return v; } static value_type f2of4(value_type, value_type v, value_type, value_type) { return v; } static value_type f3of4(value_type, value_type, value_type v, value_type) { return v; } static value_type f4of4(value_type, value_type, value_type, value_type v) { return v; } static value_type f1of5(value_type v, value_type, value_type, value_type, value_type) { return v; } static value_type f2of5(value_type, value_type v, value_type, value_type, value_type) { return v; } static value_type f3of5(value_type, value_type, value_type v, value_type, value_type) { return v; } static value_type f4of5(value_type, value_type, value_type, value_type v, value_type) { return v; } static value_type f5of5(value_type, value_type, value_type, value_type, value_type v) { return v; } static value_type Min(value_type a_fVal1, value_type a_fVal2) { return (a_fVal1 < a_fVal2) ? a_fVal1 : a_fVal2; } static value_type Max(value_type a_fVal1, value_type a_fVal2) { return (a_fVal1 > a_fVal2) ? a_fVal1 : a_fVal2; } static value_type plus2(value_type v1) { return v1 + 2; } static value_type times3(value_type v1) { return v1 * 3; } static value_type sqr(value_type v1) { return v1 * v1; } static value_type sign(value_type v) { return -v; } static value_type add(value_type v1, value_type v2) { return v1 + v2; } static value_type land(value_type v1, value_type v2) { return (int)v1 & (int)v2; } static value_type FirstArg(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw mu::Parser::exception_type(_T("too few arguments for function FirstArg.")); return a_afArg[0]; } static value_type LastArg(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw mu::Parser::exception_type(_T("too few arguments for function LastArg.")); return a_afArg[a_iArgc - 1]; } static value_type Sum(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw mu::Parser::exception_type(_T("too few arguments for function sum.")); value_type fRes = 0; for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i]; return fRes; } static value_type Rnd(value_type v) { return (value_type)(1 + (v * std::rand() / (RAND_MAX + 1.0))); } static value_type RndWithString(const char_type*) { return (value_type)(1 + (1000.0f * std::rand() / (RAND_MAX + 1.0))); } static value_type Ping() { return 10; } static value_type ValueOf(const char_type*) { return 123; } static value_type StrFun1(const char_type* v1) { int val(0); stringstream_type(v1) >> val; return (value_type)val; } static value_type StrFun2(const char_type* v1, value_type v2) { int val(0); stringstream_type(v1) >> val; return (value_type)(val + v2); } static value_type StrFun3(const char_type* v1, value_type v2, value_type v3) { int val(0); stringstream_type(v1) >> val; return val + v2 + v3; } static value_type StrToFloat(const char_type* a_szMsg) { value_type val(0); stringstream_type(a_szMsg) >> val; return val; } // postfix operator callback static value_type Mega(value_type a_fVal) { return a_fVal * (value_type)1e6; } static value_type Micro(value_type a_fVal) { return a_fVal * (value_type)1e-6; } static value_type Milli(value_type a_fVal) { return a_fVal / (value_type)1e3; } // Custom value recognition static int IsHexVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal); int TestNames(); int TestSyntax(); int TestMultiArg(); int TestPostFix(); int TestExpression(); int TestInfixOprt(); int TestBinOprt(); int TestVarConst(); int TestInterface(); int TestException(); int TestStrArg(); int TestIfThenElse(); int TestBulkMode(); void Abort() const; public: typedef int (ParserTester::*testfun_type)(); ParserTester(); void Run(); private: std::vector m_vTestFun; void AddTest(testfun_type a_pFun); // Test Double Parser int EqnTest(const string_type& a_str, double a_fRes, bool a_fPass); int EqnTestWithVarChange(const string_type& a_str, double a_fRes1, double a_fVar1, double a_fRes2, double a_fVar2); int ThrowTest(const string_type& a_str, int a_iErrc, bool a_bFail = true); // Test Int Parser int EqnTestInt(const string_type& a_str, double a_fRes, bool a_fPass); // Test Bulkmode int EqnTestBulk(const string_type& a_str, double a_fRes[4], bool a_fPass); }; } // namespace Test } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserCallback.cpp0000644000175000017500000003301114522641732023267 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParserCallback.h" /** \file \brief Implementation of the parser callback class. */ namespace mu { //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type0 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(0), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type1 a_pFun, bool a_bAllowOpti, int a_iPrec, ECmdCode a_iCode) : m_pFun((void*)a_pFun), m_iArgc(1), m_iPri(a_iPrec), m_eOprtAsct(oaNONE), m_iCode(a_iCode), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- /** \brief Constructor for constructing function callbacks taking two arguments. \throw nothrow */ ParserCallback::ParserCallback(fun_type2 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(2), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- /** \brief Constructor for constructing binary operator callbacks. \param a_pFun Pointer to a static function taking two arguments \param a_bAllowOpti A flag indicating this function can be optimized \param a_iPrec The operator precedence \param a_eOprtAsct The operators associativity \throw nothrow */ ParserCallback::ParserCallback(fun_type2 a_pFun, bool a_bAllowOpti, int a_iPrec, EOprtAssociativity a_eOprtAsct) : m_pFun((void*)a_pFun), m_iArgc(2), m_iPri(a_iPrec), m_eOprtAsct(a_eOprtAsct), m_iCode(cmOPRT_BIN), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type3 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(3), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type4 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(4), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type5 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(5), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type6 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(6), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type7 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(7), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type8 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(8), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type9 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(9), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(fun_type10 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(10), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type0 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(0), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type1 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(1), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- /** \brief Constructor for constructing function callbacks taking two arguments. \throw nothrow */ ParserCallback::ParserCallback(bulkfun_type2 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(2), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type3 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(3), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type4 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(4), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type5 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(5), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type6 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(6), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type7 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(7), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type8 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(8), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type9 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(9), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(bulkfun_type10 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(10), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_BULK), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(multfun_type a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(-1), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC), m_iType(tpDBL), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(strfun_type1 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(0), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_STR), m_iType(tpSTR), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(strfun_type2 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(1), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_STR), m_iType(tpSTR), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- ParserCallback::ParserCallback(strfun_type3 a_pFun, bool a_bAllowOpti) : m_pFun((void*)a_pFun), m_iArgc(2), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmFUNC_STR), m_iType(tpSTR), m_bAllowOpti(a_bAllowOpti) { } //--------------------------------------------------------------------------- /** \brief Default constructor. \throw nothrow */ ParserCallback::ParserCallback() : m_pFun(0), m_iArgc(0), m_iPri(-1), m_eOprtAsct(oaNONE), m_iCode(cmUNKNOWN), m_iType(tpVOID), m_bAllowOpti(0) { } //--------------------------------------------------------------------------- /** \brief Copy constructor. \throw nothrow */ ParserCallback::ParserCallback(const ParserCallback& ref) { m_pFun = ref.m_pFun; m_iArgc = ref.m_iArgc; m_bAllowOpti = ref.m_bAllowOpti; m_iCode = ref.m_iCode; m_iType = ref.m_iType; m_iPri = ref.m_iPri; m_eOprtAsct = ref.m_eOprtAsct; } //--------------------------------------------------------------------------- /** \brief Clone this instance and return a pointer to the new instance. */ ParserCallback* ParserCallback::Clone() const { return new ParserCallback(*this); } //--------------------------------------------------------------------------- /** \brief Return tru if the function is conservative. Conservative functions return always the same result for the same argument. \throw nothrow */ bool ParserCallback::IsOptimizable() const { return m_bAllowOpti; } //--------------------------------------------------------------------------- /** \brief Get the callback address for the parser function. The type of the address is void. It needs to be recasted according to the argument number to the right type. \throw nothrow \return #pFun */ void* ParserCallback::GetAddr() const { return m_pFun; } //--------------------------------------------------------------------------- /** \brief Return the callback code. */ ECmdCode ParserCallback::GetCode() const { return m_iCode; } //--------------------------------------------------------------------------- ETypeCode ParserCallback::GetType() const { return m_iType; } //--------------------------------------------------------------------------- /** \brief Return the operator precedence. \throw nothrown Only valid if the callback token is an operator token (binary or infix). */ int ParserCallback::GetPri() const { return m_iPri; } //--------------------------------------------------------------------------- /** \brief Return the operators associativity. \throw nothrown Only valid if the callback token is a binary operator token. */ EOprtAssociativity ParserCallback::GetAssociativity() const { return m_eOprtAsct; } //--------------------------------------------------------------------------- /** \brief Returns the number of function Arguments. */ int ParserCallback::GetArgc() const { return m_iArgc; } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserToken.h0000644000175000017500000003033014522641732022321 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_TOKEN_H #define MU_PARSER_TOKEN_H #include #include #include #include #include #include "muParserError.h" #include "muParserCallback.h" /** \file \brief This file contains the parser token definition. */ namespace mu { /** \brief Encapsulation of the data for a single formula token. Formula token implementation. Part of the Math Parser Package. Formula tokens can be either one of the following:
  • value
  • variable
  • function with numerical arguments
  • functions with a string as argument
  • prefix operators
  • infix operators
  • binary operator
\author (C) 2004-2013 Ingo Berg */ template class ParserToken { private: ECmdCode m_iCode; ///< Type of the token; The token type is a constant of type #ECmdCode. ETypeCode m_iType; void* m_pTok; ///< Stores Token pointer; not applicable for all tokens int m_iIdx; ///< An otional index to an external buffer storing the token data TString m_strTok; ///< Token string TString m_strVal; ///< Value for string variables value_type m_fVal; ///< the value std::auto_ptr m_pCallback; public: //--------------------------------------------------------------------------- /** \brief Constructor (default). Sets token to an neutral state of type cmUNKNOWN. \throw nothrow \sa ECmdCode */ ParserToken() : m_iCode(cmUNKNOWN), m_iType(tpVOID), m_pTok(0), m_iIdx(-1), m_strTok(), m_strVal(), m_fVal(0), m_pCallback() { } //------------------------------------------------------------------------------ /** \brief Create token from another one. Implemented by calling Assign(...) \throw nothrow \post m_iType==cmUNKNOWN \sa #Assign */ ParserToken(const ParserToken& a_Tok) { Assign(a_Tok); } //------------------------------------------------------------------------------ /** \brief Assignement operator. Copy token state from another token and return this. Implemented by calling Assign(...). \throw nothrow */ ParserToken& operator=(const ParserToken& a_Tok) { Assign(a_Tok); return *this; } //------------------------------------------------------------------------------ /** \brief Copy token information from argument. \throw nothrow */ void Assign(const ParserToken& a_Tok) { m_iCode = a_Tok.m_iCode; m_pTok = a_Tok.m_pTok; m_strTok = a_Tok.m_strTok; m_iIdx = a_Tok.m_iIdx; m_strVal = a_Tok.m_strVal; m_iType = a_Tok.m_iType; m_fVal = a_Tok.m_fVal; // create new callback object if a_Tok has one m_pCallback.reset(a_Tok.m_pCallback.get() ? a_Tok.m_pCallback->Clone() : 0); } //------------------------------------------------------------------------------ /** \brief Assign a token type. Token may not be of type value, variable or function. Those have seperate set functions. \pre [assert] a_iType!=cmVAR \pre [assert] a_iType!=cmVAL \pre [assert] a_iType!=cmFUNC \post m_fVal = 0 \post m_pTok = 0 */ ParserToken& Set(ECmdCode a_iType, const TString& a_strTok = TString()) { // The following types cant be set this way, they have special Set functions assert(a_iType != cmVAR); assert(a_iType != cmVAL); assert(a_iType != cmFUNC); m_iCode = a_iType; m_iType = tpVOID; m_pTok = 0; m_strTok = a_strTok; m_iIdx = -1; return *this; } //------------------------------------------------------------------------------ /** \brief Set Callback type. */ ParserToken& Set(const ParserCallback& a_pCallback, const TString& a_sTok) { assert(a_pCallback.GetAddr()); m_iCode = a_pCallback.GetCode(); m_iType = tpVOID; m_strTok = a_sTok; m_pCallback.reset(new ParserCallback(a_pCallback)); m_pTok = 0; m_iIdx = -1; return *this; } //------------------------------------------------------------------------------ /** \brief Make this token a value token. Member variables not necessary for value tokens will be invalidated. \throw nothrow */ ParserToken& SetVal(TBase a_fVal, const TString& a_strTok = TString()) { m_iCode = cmVAL; m_iType = tpDBL; m_fVal = a_fVal; m_strTok = a_strTok; m_iIdx = -1; m_pTok = 0; m_pCallback.reset(0); return *this; } //------------------------------------------------------------------------------ /** \brief make this token a variable token. Member variables not necessary for variable tokens will be invalidated. \throw nothrow */ ParserToken& SetVar(TBase* a_pVar, const TString& a_strTok) { m_iCode = cmVAR; m_iType = tpDBL; m_strTok = a_strTok; m_iIdx = -1; m_pTok = (void*)a_pVar; m_pCallback.reset(0); return *this; } //------------------------------------------------------------------------------ /** \brief Make this token a variable token. Member variables not necessary for variable tokens will be invalidated. \throw nothrow */ ParserToken& SetString(const TString& a_strTok, std::size_t a_iSize) { m_iCode = cmSTRING; m_iType = tpSTR; m_strTok = a_strTok; m_iIdx = static_cast(a_iSize); m_pTok = 0; m_pCallback.reset(0); return *this; } //------------------------------------------------------------------------------ /** \brief Set an index associated with the token related data. In cmSTRFUNC - This is the index to a string table in the main parser. \param a_iIdx The index the string function result will take in the bytecode parser. \throw exception_type if #a_iIdx<0 or #m_iType!=cmSTRING */ void SetIdx(int a_iIdx) { if (m_iCode != cmSTRING || a_iIdx < 0) throw ParserError(ecINTERNAL_ERROR); m_iIdx = a_iIdx; } //------------------------------------------------------------------------------ /** \brief Return Index associated with the token related data. In cmSTRFUNC - This is the index to a string table in the main parser. \throw exception_type if #m_iIdx<0 or #m_iType!=cmSTRING \return The index the result will take in the Bytecode calculatin array (#m_iIdx). */ int GetIdx() const { if (m_iIdx < 0 || m_iCode != cmSTRING) throw ParserError(ecINTERNAL_ERROR); return m_iIdx; } //------------------------------------------------------------------------------ /** \brief Return the token type. \return #m_iType \throw nothrow */ ECmdCode GetCode() const { if (m_pCallback.get()) { return m_pCallback->GetCode(); } else { return m_iCode; } } //------------------------------------------------------------------------------ ETypeCode GetType() const { if (m_pCallback.get()) { return m_pCallback->GetType(); } else { return m_iType; } } //------------------------------------------------------------------------------ int GetPri() const { if (!m_pCallback.get()) throw ParserError(ecINTERNAL_ERROR); if (m_pCallback->GetCode() != cmOPRT_BIN && m_pCallback->GetCode() != cmOPRT_INFIX) throw ParserError(ecINTERNAL_ERROR); return m_pCallback->GetPri(); } //------------------------------------------------------------------------------ EOprtAssociativity GetAssociativity() const { if (m_pCallback.get() == NULL || m_pCallback->GetCode() != cmOPRT_BIN) throw ParserError(ecINTERNAL_ERROR); return m_pCallback->GetAssociativity(); } //------------------------------------------------------------------------------ /** \brief Return the address of the callback function assoziated with function and operator tokens. \return The pointer stored in #m_pTok. \throw exception_type if token type is non of:
  • cmFUNC
  • cmSTRFUNC
  • cmPOSTOP
  • cmINFIXOP
  • cmOPRT_BIN
\sa ECmdCode */ generic_fun_type GetFuncAddr() const { return (m_pCallback.get()) ? (generic_fun_type)m_pCallback->GetAddr() : 0; } //------------------------------------------------------------------------------ /** \biref Get value of the token. Only applicable to variable and value tokens. \throw exception_type if token is no value/variable token. */ TBase GetVal() const { switch (m_iCode) { case cmVAL: return m_fVal; case cmVAR: return *((TBase*)m_pTok); default: throw ParserError(ecVAL_EXPECTED); } } //------------------------------------------------------------------------------ /** \brief Get address of a variable token. Valid only if m_iType==CmdVar. \throw exception_type if token is no variable token. */ TBase* GetVar() const { if (m_iCode != cmVAR) throw ParserError(ecINTERNAL_ERROR); return (TBase*)m_pTok; } //------------------------------------------------------------------------------ /** \brief Return the number of function arguments. Valid only if m_iType==CmdFUNC. */ int GetArgCount() const { assert(m_pCallback.get()); if (!m_pCallback->GetAddr()) throw ParserError(ecINTERNAL_ERROR); return m_pCallback->GetArgc(); } //------------------------------------------------------------------------------ /** \brief Return the token identifier. If #m_iType is cmSTRING the token identifier is the value of the string argument for a string function. \return #m_strTok \throw nothrow \sa m_strTok */ const TString& GetAsString() const { return m_strTok; } }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserDLL.h0000644000175000017500000003502214522641732021657 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_DLL_H #define MU_PARSER_DLL_H #if defined(WIN32) || defined(_WIN32) #ifdef MUPARSERLIB_EXPORTS #define API_EXPORT(TYPE) __declspec(dllexport) TYPE __cdecl #else #define API_EXPORT(TYPE) __declspec(dllimport) TYPE __cdecl #endif #else #define API_EXPORT(TYPE) TYPE #endif #ifdef __cplusplus extern "C" { #endif /** \file \brief This file contains the DLL interface of muparser. */ // Basic types typedef void* muParserHandle_t; // parser handle #ifndef _UNICODE typedef char muChar_t; // character type #else typedef wchar_t muChar_t; // character type #endif typedef int muBool_t; // boolean type typedef int muInt_t; // integer type typedef double muFloat_t; // floating point type // function types for calculation typedef muFloat_t (*muFun0_t)(); typedef muFloat_t (*muFun1_t)(muFloat_t); typedef muFloat_t (*muFun2_t)(muFloat_t, muFloat_t); typedef muFloat_t (*muFun3_t)(muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muFun4_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muFun5_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muFun6_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muFun7_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t ( *muFun8_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t ( *muFun9_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muFun10_t)(muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); // Function prototypes for bulkmode functions typedef muFloat_t (*muBulkFun0_t)(int, int); typedef muFloat_t (*muBulkFun1_t)(int, int, muFloat_t); typedef muFloat_t (*muBulkFun2_t)(int, int, muFloat_t, muFloat_t); typedef muFloat_t (*muBulkFun3_t)(int, int, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muBulkFun4_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muBulkFun5_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muBulkFun6_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t ( *muBulkFun7_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t ( *muBulkFun8_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muBulkFun9_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muBulkFun10_t)(int, int, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t, muFloat_t); typedef muFloat_t (*muMultFun_t)(const muFloat_t*, muInt_t); typedef muFloat_t (*muStrFun1_t)(const muChar_t*); typedef muFloat_t (*muStrFun2_t)(const muChar_t*, muFloat_t); typedef muFloat_t (*muStrFun3_t)(const muChar_t*, muFloat_t, muFloat_t); // Functions for parser management typedef void (*muErrorHandler_t)(muParserHandle_t a_hParser); // [optional] callback to an error handler typedef muFloat_t* (*muFacFun_t)(const muChar_t*, void*); // [optional] callback for creating new variables typedef muInt_t (*muIdentFun_t)(const muChar_t*, muInt_t*, muFloat_t*); // [optional] value identification callbacks //----------------------------------------------------------------------------------------------------- // Constants static const int muOPRT_ASCT_LEFT = 0; static const int muOPRT_ASCT_RIGHT = 1; static const int muBASETYPE_FLOAT = 0; static const int muBASETYPE_INT = 1; //----------------------------------------------------------------------------------------------------- // // // muParser C compatible bindings // // //----------------------------------------------------------------------------------------------------- // Basic operations / initialization API_EXPORT(muParserHandle_t) mupCreate(int nBaseType); API_EXPORT(void) mupRelease(muParserHandle_t a_hParser); API_EXPORT(const muChar_t*) mupGetExpr(muParserHandle_t a_hParser); API_EXPORT(void) mupSetExpr(muParserHandle_t a_hParser, const muChar_t* a_szExpr); API_EXPORT(void) mupSetVarFactory(muParserHandle_t a_hParser, muFacFun_t a_pFactory, void* pUserData); API_EXPORT(const muChar_t*) mupGetVersion(muParserHandle_t a_hParser); API_EXPORT(muFloat_t) mupEval(muParserHandle_t a_hParser); API_EXPORT(muFloat_t*) mupEvalMulti(muParserHandle_t a_hParser, int* nNum); API_EXPORT(void) mupEvalBulk(muParserHandle_t a_hParser, muFloat_t* a_fResult, int nSize); // Defining callbacks / variables / constants API_EXPORT(void) mupDefineFun0(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun0_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun1(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun1_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun2(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun2_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun3(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun3_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun4(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun4_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun5(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun5_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun6(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun6_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun7(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun7_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun8(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun8_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun9(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun9_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineFun10(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun10_t a_pFun, muBool_t a_bOptimize); // Defining bulkmode functions API_EXPORT(void) mupDefineBulkFun0(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun0_t a_pFun); API_EXPORT(void) mupDefineBulkFun1(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun1_t a_pFun); API_EXPORT(void) mupDefineBulkFun2(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun2_t a_pFun); API_EXPORT(void) mupDefineBulkFun3(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun3_t a_pFun); API_EXPORT(void) mupDefineBulkFun4(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun4_t a_pFun); API_EXPORT(void) mupDefineBulkFun5(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun5_t a_pFun); API_EXPORT(void) mupDefineBulkFun6(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun6_t a_pFun); API_EXPORT(void) mupDefineBulkFun7(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun7_t a_pFun); API_EXPORT(void) mupDefineBulkFun8(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun8_t a_pFun); API_EXPORT(void) mupDefineBulkFun9(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun9_t a_pFun); API_EXPORT(void) mupDefineBulkFun10(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun10_t a_pFun); // string functions API_EXPORT(void) mupDefineStrFun1(muParserHandle_t a_hParser, const muChar_t* a_szName, muStrFun1_t a_pFun); API_EXPORT(void) mupDefineStrFun2(muParserHandle_t a_hParser, const muChar_t* a_szName, muStrFun2_t a_pFun); API_EXPORT(void) mupDefineStrFun3(muParserHandle_t a_hParser, const muChar_t* a_szName, muStrFun3_t a_pFun); API_EXPORT(void) mupDefineMultFun(muParserHandle_t a_hParser, const muChar_t* a_szName, muMultFun_t a_pFun, muBool_t a_bOptimize); API_EXPORT(void) mupDefineOprt(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun2_t a_pFun, muInt_t a_nPrec, muInt_t a_nOprtAsct, muBool_t a_bOptimize); API_EXPORT(void) mupDefineConst(muParserHandle_t a_hParser, const muChar_t* a_szName, muFloat_t a_fVal); API_EXPORT(void) mupDefineStrConst(muParserHandle_t a_hParser, const muChar_t* a_szName, const muChar_t* a_sVal); API_EXPORT(void) mupDefineVar(muParserHandle_t a_hParser, const muChar_t* a_szName, muFloat_t* a_fVar); API_EXPORT(void) mupDefineBulkVar(muParserHandle_t a_hParser, const muChar_t* a_szName, muFloat_t* a_fVar); API_EXPORT(void) mupDefinePostfixOprt(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun1_t a_pOprt, muBool_t a_bOptimize); API_EXPORT(void) mupDefineInfixOprt(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun1_t a_pOprt, muBool_t a_bOptimize); // Define character sets for identifiers API_EXPORT(void) mupDefineNameChars(muParserHandle_t a_hParser, const muChar_t* a_szCharset); API_EXPORT(void) mupDefineOprtChars(muParserHandle_t a_hParser, const muChar_t* a_szCharset); API_EXPORT(void) mupDefineInfixOprtChars(muParserHandle_t a_hParser, const muChar_t* a_szCharset); // Remove all / single variables API_EXPORT(void) mupRemoveVar(muParserHandle_t a_hParser, const muChar_t* a_szName); API_EXPORT(void) mupClearVar(muParserHandle_t a_hParser); API_EXPORT(void) mupClearConst(muParserHandle_t a_hParser); API_EXPORT(void) mupClearOprt(muParserHandle_t a_hParser); API_EXPORT(void) mupClearFun(muParserHandle_t a_hParser); // Querying variables / expression variables / constants API_EXPORT(int) mupGetExprVarNum(muParserHandle_t a_hParser); API_EXPORT(int) mupGetVarNum(muParserHandle_t a_hParser); API_EXPORT(int) mupGetConstNum(muParserHandle_t a_hParser); API_EXPORT(void) mupGetExprVar(muParserHandle_t a_hParser, unsigned a_iVar, const muChar_t** a_pszName, muFloat_t** a_pVar); API_EXPORT(void) mupGetVar(muParserHandle_t a_hParser, unsigned a_iVar, const muChar_t** a_pszName, muFloat_t** a_pVar); API_EXPORT(void) mupGetConst(muParserHandle_t a_hParser, unsigned a_iVar, const muChar_t** a_pszName, muFloat_t* a_pVar); API_EXPORT(void) mupSetArgSep(muParserHandle_t a_hParser, const muChar_t cArgSep); API_EXPORT(void) mupSetDecSep(muParserHandle_t a_hParser, const muChar_t cArgSep); API_EXPORT(void) mupSetThousandsSep(muParserHandle_t a_hParser, const muChar_t cArgSep); API_EXPORT(void) mupResetLocale(muParserHandle_t a_hParser); // Add value recognition callbacks API_EXPORT(void) mupAddValIdent(muParserHandle_t a_hParser, muIdentFun_t); // Error handling API_EXPORT(muBool_t) mupError(muParserHandle_t a_hParser); API_EXPORT(void) mupErrorReset(muParserHandle_t a_hParser); API_EXPORT(void) mupSetErrorHandler(muParserHandle_t a_hParser, muErrorHandler_t a_pErrHandler); API_EXPORT(const muChar_t*) mupGetErrorMsg(muParserHandle_t a_hParser); API_EXPORT(muInt_t) mupGetErrorCode(muParserHandle_t a_hParser); API_EXPORT(muInt_t) mupGetErrorPos(muParserHandle_t a_hParser); API_EXPORT(const muChar_t*) mupGetErrorToken(muParserHandle_t a_hParser); // API_EXPORT(const muChar_t*) mupGetErrorExpr(muParserHandle_t a_hParser); // This is used for .NET only. It creates a new variable allowing the dll to // manage the variable rather than the .NET garbage collector. API_EXPORT(muFloat_t*) mupCreateVar(); API_EXPORT(void) mupReleaseVar(muFloat_t*); #ifdef __cplusplus } #endif #endif // include guard mstflint-4.26.0/ext_libs/muparser/muParserInt.cpp0000644000175000017500000002417214522641732022335 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParserInt.h" #include #include #include using namespace std; /** \file \brief Implementation of a parser using integer value. */ /** \brief Namespace for mathematical applications. */ namespace mu { value_type ParserInt::Abs(value_type v) { return (value_type)Round(fabs((double)v)); } value_type ParserInt::Sign(value_type v) { return (Round(v) < 0) ? -1 : (Round(v) > 0) ? 1 : 0; } value_type ParserInt::Ite(value_type v1, value_type v2, value_type v3) { return (Round(v1) == 1) ? Round(v2) : Round(v3); } value_type ParserInt::Add(value_type v1, value_type v2) { return Round(v1) + Round(v2); } value_type ParserInt::Sub(value_type v1, value_type v2) { return Round(v1) - Round(v2); } value_type ParserInt::Mul(value_type v1, value_type v2) { return Round(v1) * Round(v2); } value_type ParserInt::Div(value_type v1, value_type v2) { return Round(v1) / Round(v2); } value_type ParserInt::Mod(value_type v1, value_type v2) { return Round(v1) % Round(v2); } value_type ParserInt::Shr(value_type v1, value_type v2) { return Round(v1) >> Round(v2); } value_type ParserInt::Shl(value_type v1, value_type v2) { return Round(v1) << Round(v2); } value_type ParserInt::LogAnd(value_type v1, value_type v2) { return Round(v1) & Round(v2); } value_type ParserInt::LogOr(value_type v1, value_type v2) { return Round(v1) | Round(v2); } value_type ParserInt::And(value_type v1, value_type v2) { return Round(v1) && Round(v2); } value_type ParserInt::Or(value_type v1, value_type v2) { return Round(v1) || Round(v2); } value_type ParserInt::Less(value_type v1, value_type v2) { return Round(v1) < Round(v2); } value_type ParserInt::Greater(value_type v1, value_type v2) { return Round(v1) > Round(v2); } value_type ParserInt::LessEq(value_type v1, value_type v2) { return Round(v1) <= Round(v2); } value_type ParserInt::GreaterEq(value_type v1, value_type v2) { return Round(v1) >= Round(v2); } value_type ParserInt::Equal(value_type v1, value_type v2) { return Round(v1) == Round(v2); } value_type ParserInt::NotEqual(value_type v1, value_type v2) { return Round(v1) != Round(v2); } value_type ParserInt::Not(value_type v) { return !Round(v); } value_type ParserInt::Pow(value_type v1, value_type v2) { return std::pow((double)Round(v1), (double)Round(v2)); } //--------------------------------------------------------------------------- // Unary operator Callbacks: Infix operators value_type ParserInt::UnaryMinus(value_type v) { return -Round(v); } //--------------------------------------------------------------------------- value_type ParserInt::Sum(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw ParserError(_T("too few arguments for function sum.")); value_type fRes = 0; for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i]; return fRes; } //--------------------------------------------------------------------------- value_type ParserInt::Min(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw ParserError(_T("too few arguments for function min.")); value_type fRes = a_afArg[0]; for (int i = 0; i < a_iArgc; ++i) fRes = std::min(fRes, a_afArg[i]); return fRes; } //--------------------------------------------------------------------------- value_type ParserInt::Max(const value_type* a_afArg, int a_iArgc) { if (!a_iArgc) throw ParserError(_T("too few arguments for function min.")); value_type fRes = a_afArg[0]; for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]); return fRes; } //--------------------------------------------------------------------------- // Default value recognition callback int ParserInt::IsVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal) { string_type buf(a_szExpr); std::size_t pos = buf.find_first_not_of(_T("0123456789")); if (pos == std::string::npos) return 0; stringstream_type stream(buf.substr(0, pos)); int iVal(0); stream >> iVal; if (stream.fail()) return 0; stringstream_type::pos_type iEnd = stream.tellg(); // Position after reading if (stream.fail()) iEnd = stream.str().length(); if (iEnd == (stringstream_type::pos_type)-1) return 0; *a_iPos += (int)iEnd; *a_fVal = (value_type)iVal; return 1; } //--------------------------------------------------------------------------- /** \brief Check a given position in the expression for the presence of a hex value. \param a_szExpr Pointer to the expression string \param [in/out] a_iPos Pointer to an integer value holding the current parsing position in the expression. \param [out] a_fVal Pointer to the position where the detected value shall be stored. Hey values must be prefixed with "0x" in order to be detected properly. */ int ParserInt::IsHexVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal) { if (a_szExpr[1] == 0 || (a_szExpr[0] != '0' || a_szExpr[1] != 'x')) return 0; unsigned iVal(0); // New code based on streams for UNICODE compliance: stringstream_type::pos_type nPos(0); stringstream_type ss(a_szExpr + 2); ss >> std::hex >> iVal; nPos = ss.tellg(); if (nPos == (stringstream_type::pos_type)0) return 1; *a_iPos += (int)(2 + nPos); *a_fVal = (value_type)iVal; return 1; } //--------------------------------------------------------------------------- int ParserInt::IsBinVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal) { if (a_szExpr[0] != '#') return 0; unsigned iVal(0), iBits(sizeof(iVal) * 8), i(0); for (i = 0; (a_szExpr[i + 1] == '0' || a_szExpr[i + 1] == '1') && i < iBits; ++i) iVal |= (int)(a_szExpr[i + 1] == '1') << ((iBits - 1) - i); if (i == 0) return 0; if (i == iBits) throw exception_type(_T("Binary to integer conversion error (overflow).")); *a_fVal = (unsigned)(iVal >> (iBits - i)); *a_iPos += i + 1; return 1; } //--------------------------------------------------------------------------- /** \brief Constructor. Call ParserBase class constructor and trigger Function, Operator and Constant initialization. */ ParserInt::ParserInt() : ParserBase() { AddValIdent(IsVal); // lowest priority AddValIdent(IsBinVal); AddValIdent(IsHexVal); // highest priority InitCharSets(); InitFun(); InitOprt(); } //--------------------------------------------------------------------------- void ParserInt::InitConst() {} //--------------------------------------------------------------------------- void ParserInt::InitCharSets() { DefineNameChars(_T("0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")); DefineOprtChars(_T("+-*^/?<>=!%&|~'_")); DefineInfixOprtChars(_T("/+-*^?<>=!%&|~'_")); } //--------------------------------------------------------------------------- /** \brief Initialize the default functions. */ void ParserInt::InitFun() { DefineFun(_T("sign"), Sign); DefineFun(_T("abs"), Abs); DefineFun(_T("if"), Ite); DefineFun(_T("sum"), Sum); DefineFun(_T("min"), Min); DefineFun(_T("max"), Max); } //--------------------------------------------------------------------------- /** \brief Initialize operators. */ void ParserInt::InitOprt() { // disable all built in operators, not all of them useful for integer numbers // (they don't do rounding of values) EnableBuiltInOprt(false); // Disable all built in operators, they wont work with integer numbers // since they are designed for floating point numbers DefineInfixOprt(_T("-"), UnaryMinus); DefineInfixOprt(_T("!"), Not); DefineOprt(_T("&"), LogAnd, prLOGIC); DefineOprt(_T("|"), LogOr, prLOGIC); DefineOprt(_T("&&"), And, prLOGIC); DefineOprt(_T("||"), Or, prLOGIC); DefineOprt(_T("<"), Less, prCMP); DefineOprt(_T(">"), Greater, prCMP); DefineOprt(_T("<="), LessEq, prCMP); DefineOprt(_T(">="), GreaterEq, prCMP); DefineOprt(_T("=="), Equal, prCMP); DefineOprt(_T("!="), NotEqual, prCMP); DefineOprt(_T("+"), Add, prADD_SUB); DefineOprt(_T("-"), Sub, prADD_SUB); DefineOprt(_T("*"), Mul, prMUL_DIV); DefineOprt(_T("/"), Div, prMUL_DIV); DefineOprt(_T("%"), Mod, prMUL_DIV); DefineOprt(_T("^"), Pow, prPOW, oaRIGHT); DefineOprt(_T(">>"), Shr, prMUL_DIV + 1); DefineOprt(_T("<<"), Shl, prMUL_DIV + 1); } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserBytecode.cpp0000644000175000017500000005513014522641732023337 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParserBytecode.h" #include #include #include #include #include #include #include "muParserDef.h" #include "muParserError.h" #include "muParserToken.h" #include "muParserStack.h" #include "muParserTemplateMagic.h" namespace mu { //--------------------------------------------------------------------------- /** \brief Bytecode default constructor. */ ParserByteCode::ParserByteCode() : m_iStackPos(0), m_iMaxStackSize(0), m_vRPN(), m_bEnableOptimizer(true) { m_vRPN.reserve(50); } //--------------------------------------------------------------------------- /** \brief Copy constructor. Implemented in Terms of Assign(const ParserByteCode &a_ByteCode) */ ParserByteCode::ParserByteCode(const ParserByteCode& a_ByteCode) { Assign(a_ByteCode); } //--------------------------------------------------------------------------- /** \brief Assignment operator. Implemented in Terms of Assign(const ParserByteCode &a_ByteCode) */ ParserByteCode& ParserByteCode::operator=(const ParserByteCode& a_ByteCode) { Assign(a_ByteCode); return *this; } //--------------------------------------------------------------------------- void ParserByteCode::EnableOptimizer(bool bStat) { m_bEnableOptimizer = bStat; } //--------------------------------------------------------------------------- /** \brief Copy state of another object to this. \throw nowthrow */ void ParserByteCode::Assign(const ParserByteCode& a_ByteCode) { if (this == &a_ByteCode) return; m_iStackPos = a_ByteCode.m_iStackPos; m_vRPN = a_ByteCode.m_vRPN; m_iMaxStackSize = a_ByteCode.m_iMaxStackSize; m_bEnableOptimizer = a_ByteCode.m_bEnableOptimizer; } //--------------------------------------------------------------------------- /** \brief Add a Variable pointer to bytecode. \param a_pVar Pointer to be added. \throw nothrow */ void ParserByteCode::AddVar(value_type* a_pVar) { ++m_iStackPos; m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos); // optimization does not apply SToken tok; tok.Cmd = cmVAR; tok.Val.ptr = a_pVar; tok.Val.data = 1; tok.Val.data2 = 0; m_vRPN.push_back(tok); } //--------------------------------------------------------------------------- /** \brief Add a Variable pointer to bytecode. Value entries in byte code consist of:
  • value array position of the value
  • the operator code according to ParserToken::cmVAL
  • the value stored in #mc_iSizeVal number of bytecode entries.
\param a_pVal Value to be added. \throw nothrow */ void ParserByteCode::AddVal(value_type a_fVal) { ++m_iStackPos; m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos); // If optimization does not apply SToken tok; tok.Cmd = cmVAL; tok.Val.ptr = NULL; tok.Val.data = 0; tok.Val.data2 = a_fVal; m_vRPN.push_back(tok); } //--------------------------------------------------------------------------- void ParserByteCode::ConstantFolding(ECmdCode a_Oprt) { std::size_t sz = m_vRPN.size(); value_type &x = m_vRPN[sz - 2].Val.data2, &y = m_vRPN[sz - 1].Val.data2; switch (a_Oprt) { case cmLAND: x = (int)x && (int)y; m_vRPN.pop_back(); break; case cmLOR: x = (int)x || (int)y; m_vRPN.pop_back(); break; case cmLT: x = x < y; m_vRPN.pop_back(); break; case cmGT: x = x > y; m_vRPN.pop_back(); break; case cmLE: x = x <= y; m_vRPN.pop_back(); break; case cmGE: x = x >= y; m_vRPN.pop_back(); break; case cmNEQ: x = x != y; m_vRPN.pop_back(); break; case cmEQ: x = x == y; m_vRPN.pop_back(); break; case cmADD: x = x + y; m_vRPN.pop_back(); break; case cmSUB: x = x - y; m_vRPN.pop_back(); break; case cmMUL: x = x * y; m_vRPN.pop_back(); break; case cmDIV: #if defined(MUP_MATH_EXCEPTIONS) if (y == 0) throw ParserError(ecDIV_BY_ZERO, _T("0")); #endif x = x / y; m_vRPN.pop_back(); break; case cmPOW: x = MathImpl::Pow(x, y); m_vRPN.pop_back(); break; default: break; } // switch opcode } //--------------------------------------------------------------------------- /** \brief Add an operator identifier to bytecode. Operator entries in byte code consist of:
  • value array position of the result
  • the operator code according to ParserToken::ECmdCode
\sa ParserToken::ECmdCode */ void ParserByteCode::AddOp(ECmdCode a_Oprt) { bool bOptimized = false; if (m_bEnableOptimizer) { std::size_t sz = m_vRPN.size(); // Check for foldable constants like: // cmVAL cmVAL cmADD // where cmADD can stand fopr any binary operator applied to // two constant values. if (sz >= 2 && m_vRPN[sz - 2].Cmd == cmVAL && m_vRPN[sz - 1].Cmd == cmVAL) { ConstantFolding(a_Oprt); bOptimized = true; } else { switch ((int)a_Oprt) { case cmPOW: // Optimization for polynomials of low order if (m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Cmd == cmVAL) { if (m_vRPN[sz - 1].Val.data2 == 2) m_vRPN[sz - 2].Cmd = cmVARPOW2; else if (m_vRPN[sz - 1].Val.data2 == 3) m_vRPN[sz - 2].Cmd = cmVARPOW3; else if (m_vRPN[sz - 1].Val.data2 == 4) m_vRPN[sz - 2].Cmd = cmVARPOW4; else break; m_vRPN.pop_back(); bOptimized = true; } break; case cmSUB: case cmADD: // Simple optimization based on pattern recognition for a shitload of different // bytecode combinations of addition/subtraction if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) || (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR) || (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) || (m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL) || (m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) || (m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) || (m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) || (m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr)) { assert((m_vRPN[sz - 2].Val.ptr == NULL && m_vRPN[sz - 1].Val.ptr != NULL) || (m_vRPN[sz - 2].Val.ptr != NULL && m_vRPN[sz - 1].Val.ptr == NULL) || (m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr)); m_vRPN[sz - 2].Cmd = cmVARMUL; m_vRPN[sz - 2].Val.ptr = (value_type*)((long long)(m_vRPN[sz - 2].Val.ptr) | (long long)(m_vRPN[sz - 1].Val.ptr)); // variable m_vRPN[sz - 2].Val.data2 += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data2; // offset m_vRPN[sz - 2].Val.data += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data; // multiplicand m_vRPN.pop_back(); bOptimized = true; } break; case cmMUL: if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) || (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR)) { m_vRPN[sz - 2].Cmd = cmVARMUL; m_vRPN[sz - 2].Val.ptr = (value_type*)((long long)(m_vRPN[sz - 2].Val.ptr) | (long long)(m_vRPN[sz - 1].Val.ptr)); m_vRPN[sz - 2].Val.data = m_vRPN[sz - 2].Val.data2 + m_vRPN[sz - 1].Val.data2; m_vRPN[sz - 2].Val.data2 = 0; m_vRPN.pop_back(); bOptimized = true; } else if ((m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) || (m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL)) { // Optimization: 2*(3*b+1) or (3*b+1)*2 -> 6*b+2 m_vRPN[sz - 2].Cmd = cmVARMUL; m_vRPN[sz - 2].Val.ptr = (value_type*)((long long)(m_vRPN[sz - 2].Val.ptr) | (long long)(m_vRPN[sz - 1].Val.ptr)); if (m_vRPN[sz - 1].Cmd == cmVAL) { m_vRPN[sz - 2].Val.data *= m_vRPN[sz - 1].Val.data2; m_vRPN[sz - 2].Val.data2 *= m_vRPN[sz - 1].Val.data2; } else { m_vRPN[sz - 2].Val.data = m_vRPN[sz - 1].Val.data * m_vRPN[sz - 2].Val.data2; m_vRPN[sz - 2].Val.data2 = m_vRPN[sz - 1].Val.data2 * m_vRPN[sz - 2].Val.data2; } m_vRPN.pop_back(); bOptimized = true; } else if (m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Val.ptr == m_vRPN[sz - 2].Val.ptr) { // Optimization: a*a -> a^2 m_vRPN[sz - 2].Cmd = cmVARPOW2; m_vRPN.pop_back(); bOptimized = true; } break; case cmDIV: if (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 1].Val.data2 != 0) { // Optimization: 4*a/2 -> 2*a m_vRPN[sz - 2].Val.data /= m_vRPN[sz - 1].Val.data2; m_vRPN[sz - 2].Val.data2 /= m_vRPN[sz - 1].Val.data2; m_vRPN.pop_back(); bOptimized = true; } break; } // switch a_Oprt } } // If optimization can't be applied just write the value if (!bOptimized) { --m_iStackPos; SToken tok; tok.Cmd = a_Oprt; m_vRPN.push_back(tok); } } //--------------------------------------------------------------------------- void ParserByteCode::AddIfElse(ECmdCode a_Oprt) { SToken tok; tok.Cmd = a_Oprt; m_vRPN.push_back(tok); } //--------------------------------------------------------------------------- /** \brief Add an assignment operator Operator entries in byte code consist of:
  • cmASSIGN code
  • the pointer of the destination variable
\sa ParserToken::ECmdCode */ void ParserByteCode::AddAssignOp(value_type* a_pVar) { --m_iStackPos; SToken tok; tok.Cmd = cmASSIGN; tok.Oprt.ptr = a_pVar; m_vRPN.push_back(tok); } //--------------------------------------------------------------------------- /** \brief Add function to bytecode. \param a_iArgc Number of arguments, negative numbers indicate multiarg functions. \param a_pFun Pointer to function callback. */ void ParserByteCode::AddFun(generic_fun_type a_pFun, int a_iArgc) { if (a_iArgc >= 0) { m_iStackPos = m_iStackPos - a_iArgc + 1; } else { // function with unlimited number of arguments m_iStackPos = m_iStackPos + a_iArgc + 1; } m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos); SToken tok; tok.Cmd = cmFUNC; tok.Fun.argc = a_iArgc; tok.Fun.ptr = a_pFun; m_vRPN.push_back(tok); } //--------------------------------------------------------------------------- /** \brief Add a bulk function to bytecode. \param a_iArgc Number of arguments, negative numbers indicate multiarg functions. \param a_pFun Pointer to function callback. */ void ParserByteCode::AddBulkFun(generic_fun_type a_pFun, int a_iArgc) { m_iStackPos = m_iStackPos - a_iArgc + 1; m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos); SToken tok; tok.Cmd = cmFUNC_BULK; tok.Fun.argc = a_iArgc; tok.Fun.ptr = a_pFun; m_vRPN.push_back(tok); } //--------------------------------------------------------------------------- /** \brief Add Strung function entry to the parser bytecode. \throw nothrow A string function entry consists of the stack position of the return value, followed by a cmSTRFUNC code, the function pointer and an index into the string buffer maintained by the parser. */ void ParserByteCode::AddStrFun(generic_fun_type a_pFun, int a_iArgc, int a_iIdx) { m_iStackPos = m_iStackPos - a_iArgc + 1; SToken tok; tok.Cmd = cmFUNC_STR; tok.Fun.argc = a_iArgc; tok.Fun.idx = a_iIdx; tok.Fun.ptr = a_pFun; m_vRPN.push_back(tok); m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos); } //--------------------------------------------------------------------------- /** \brief Add end marker to bytecode. \throw nothrow */ void ParserByteCode::Finalize() { SToken tok; tok.Cmd = cmEND; m_vRPN.push_back(tok); rpn_type(m_vRPN).swap(m_vRPN); // shrink bytecode vector to fit // Determine the if-then-else jump offsets ParserStack stIf, stElse; int idx; for (int i = 0; i < (int)m_vRPN.size(); ++i) { switch (m_vRPN[i].Cmd) { case cmIF: stIf.push(i); break; case cmELSE: stElse.push(i); idx = stIf.pop(); m_vRPN[idx].Oprt.offset = i - idx; break; case cmENDIF: idx = stElse.pop(); m_vRPN[idx].Oprt.offset = i - idx; break; default: break; } } } //--------------------------------------------------------------------------- const SToken* ParserByteCode::GetBase() const { if (m_vRPN.size() == 0) throw ParserError(ecINTERNAL_ERROR); else return &m_vRPN[0]; } //--------------------------------------------------------------------------- std::size_t ParserByteCode::GetMaxStackSize() const { return m_iMaxStackSize + 1; } //--------------------------------------------------------------------------- /** \brief Returns the number of entries in the bytecode. */ std::size_t ParserByteCode::GetSize() const { return m_vRPN.size(); } //--------------------------------------------------------------------------- /** \brief Delete the bytecode. \throw nothrow The name of this function is a violation of my own coding guidelines but this way it's more in line with the STL functions thus more intuitive. */ void ParserByteCode::clear() { m_vRPN.clear(); m_iStackPos = 0; m_iMaxStackSize = 0; } //--------------------------------------------------------------------------- /** \brief Dump bytecode (for debugging only!). */ void ParserByteCode::AsciiDump() { if (!m_vRPN.size()) { mu::console() << _T("No bytecode available\n"); return; } mu::console() << _T("Number of RPN tokens:") << (int)m_vRPN.size() << _T("\n"); for (std::size_t i = 0; i < m_vRPN.size() && m_vRPN[i].Cmd != cmEND; ++i) { mu::console() << std::dec << i << _T(" : \t"); switch (m_vRPN[i].Cmd) { case cmVAL: mu::console() << _T("VAL \t"); mu::console() << _T("[") << m_vRPN[i].Val.data2 << _T("]\n"); break; case cmVAR: mu::console() << _T("VAR \t"); mu::console() << _T("[ADDR: 0x") << std::hex << m_vRPN[i].Val.ptr << _T("]\n"); break; case cmVARPOW2: mu::console() << _T("VARPOW2 \t"); mu::console() << _T("[ADDR: 0x") << std::hex << m_vRPN[i].Val.ptr << _T("]\n"); break; case cmVARPOW3: mu::console() << _T("VARPOW3 \t"); mu::console() << _T("[ADDR: 0x") << std::hex << m_vRPN[i].Val.ptr << _T("]\n"); break; case cmVARPOW4: mu::console() << _T("VARPOW4 \t"); mu::console() << _T("[ADDR: 0x") << std::hex << m_vRPN[i].Val.ptr << _T("]\n"); break; case cmVARMUL: mu::console() << _T("VARMUL \t"); mu::console() << _T("[ADDR: 0x") << std::hex << m_vRPN[i].Val.ptr << _T("]"); mu::console() << _T(" * [") << m_vRPN[i].Val.data << _T("]"); mu::console() << _T(" + [") << m_vRPN[i].Val.data2 << _T("]\n"); break; case cmFUNC: mu::console() << _T("CALL\t"); mu::console() << _T("[ARG:") << std::dec << m_vRPN[i].Fun.argc << _T("]"); mu::console() << _T("[ADDR: 0x") << std::hex << m_vRPN[i].Fun.ptr << _T("]"); mu::console() << _T("\n"); break; case cmFUNC_STR: mu::console() << _T("CALL STRFUNC\t"); mu::console() << _T("[ARG:") << std::dec << m_vRPN[i].Fun.argc << _T("]"); mu::console() << _T("[IDX:") << std::dec << m_vRPN[i].Fun.idx << _T("]"); mu::console() << _T("[ADDR: 0x") << m_vRPN[i].Fun.ptr << _T("]\n"); break; case cmLT: mu::console() << _T("LT\n"); break; case cmGT: mu::console() << _T("GT\n"); break; case cmLE: mu::console() << _T("LE\n"); break; case cmGE: mu::console() << _T("GE\n"); break; case cmEQ: mu::console() << _T("EQ\n"); break; case cmNEQ: mu::console() << _T("NEQ\n"); break; case cmADD: mu::console() << _T("ADD\n"); break; case cmLAND: mu::console() << _T("&&\n"); break; case cmLOR: mu::console() << _T("||\n"); break; case cmSUB: mu::console() << _T("SUB\n"); break; case cmMUL: mu::console() << _T("MUL\n"); break; case cmDIV: mu::console() << _T("DIV\n"); break; case cmPOW: mu::console() << _T("POW\n"); break; case cmIF: mu::console() << _T("IF\t"); mu::console() << _T("[OFFSET:") << std::dec << m_vRPN[i].Oprt.offset << _T("]\n"); break; case cmELSE: mu::console() << _T("ELSE\t"); mu::console() << _T("[OFFSET:") << std::dec << m_vRPN[i].Oprt.offset << _T("]\n"); break; case cmENDIF: mu::console() << _T("ENDIF\n"); break; case cmASSIGN: mu::console() << _T("ASSIGN\t"); mu::console() << _T("[ADDR: 0x") << m_vRPN[i].Oprt.ptr << _T("]\n"); break; default: mu::console() << _T("(unknown code: ") << m_vRPN[i].Cmd << _T(")\n"); break; } // switch cmdCode } // while bytecode mu::console() << _T("END") << std::endl; } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserError.h0000644000175000017500000001602514522641732022337 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_ERROR_H #define MU_PARSER_ERROR_H #include #include #include #include #include #include #include "muParserDef.h" /** \file \brief This file defines the error class used by the parser. */ namespace mu { /** \brief Error codes. */ enum EErrorCodes { // Formula syntax errors ecUNEXPECTED_OPERATOR = 0, ///< Unexpected binary operator found ecUNASSIGNABLE_TOKEN = 1, ///< Token cant be identified. ecUNEXPECTED_EOF = 2, ///< Unexpected end of formula. (Example: "2+sin(") ecUNEXPECTED_ARG_SEP = 3, ///< An unexpected comma has been found. (Example: "1,23") ecUNEXPECTED_ARG = 4, ///< An unexpected argument has been found ecUNEXPECTED_VAL = 5, ///< An unexpected value token has been found ecUNEXPECTED_VAR = 6, ///< An unexpected variable token has been found ecUNEXPECTED_PARENS = 7, ///< Unexpected Parenthesis, opening or closing ecUNEXPECTED_STR = 8, ///< A string has been found at an inapropriate position ecSTRING_EXPECTED = 9, ///< A string function has been called with a different type of argument ecVAL_EXPECTED = 10, ///< A numerical function has been called with a non value type of argument ecMISSING_PARENS = 11, ///< Missing parens. (Example: "3*sin(3") ecUNEXPECTED_FUN = 12, ///< Unexpected function found. (Example: "sin(8)cos(9)") ecUNTERMINATED_STRING = 13, ///< unterminated string constant. (Example: "3*valueof("hello)") ecTOO_MANY_PARAMS = 14, ///< Too many function parameters ecTOO_FEW_PARAMS = 15, ///< Too few function parameters. (Example: "ite(1<2,2)") ecOPRT_TYPE_CONFLICT = 16, ///< binary operators may only be applied to value items of the same type ecSTR_RESULT = 17, ///< result is a string // Invalid Parser input Parameters ecINVALID_NAME = 18, ///< Invalid function, variable or constant name. ecINVALID_BINOP_IDENT = 19, ///< Invalid binary operator identifier ecINVALID_INFIX_IDENT = 20, ///< Invalid function, variable or constant name. ecINVALID_POSTFIX_IDENT = 21, ///< Invalid function, variable or constant name. ecBUILTIN_OVERLOAD = 22, ///< Trying to overload builtin operator ecINVALID_FUN_PTR = 23, ///< Invalid callback function pointer ecINVALID_VAR_PTR = 24, ///< Invalid variable pointer ecEMPTY_EXPRESSION = 25, ///< The Expression is empty ecNAME_CONFLICT = 26, ///< Name conflict ecOPT_PRI = 27, ///< Invalid operator priority // ecDOMAIN_ERROR = 28, ///< catch division by zero, sqrt(-1), log(0) (currently unused) ecDIV_BY_ZERO = 29, ///< Division by zero (currently unused) ecGENERIC = 30, ///< Generic error ecLOCALE = 31, ///< Conflict with current locale ecUNEXPECTED_CONDITIONAL = 32, ecMISSING_ELSE_CLAUSE = 33, ecMISPLACED_COLON = 34, ecUNREASONABLE_NUMBER_OF_COMPUTATIONS = 35, // internal errors ecINTERNAL_ERROR = 36, ///< Internal error of any kind. // The last two are special entries ecCOUNT, ///< This is no error code, It just stores just the total number of error codes ecUNDEFINED = -1 ///< Undefined message, placeholder to detect unassigned error messages }; //--------------------------------------------------------------------------- /** \brief A class that handles the error messages. */ class ParserErrorMsg { public: typedef ParserErrorMsg self_type; ParserErrorMsg& operator=(const ParserErrorMsg&); ParserErrorMsg(const ParserErrorMsg&); ParserErrorMsg(); ~ParserErrorMsg(); static const ParserErrorMsg& Instance(); string_type operator[](unsigned a_iIdx) const; private: std::vector m_vErrMsg; ///< A vector with the predefined error messages static const self_type m_Instance; ///< The instance pointer }; //--------------------------------------------------------------------------- /** \brief Error class of the parser. \author Ingo Berg Part of the math parser package. */ class ParserError { private: /** \brief Replace all ocuurences of a substring with another string. */ void ReplaceSubString(string_type& strSource, const string_type& strFind, const string_type& strReplaceWith); void Reset(); public: ParserError(); explicit ParserError(EErrorCodes a_iErrc); explicit ParserError(const string_type& sMsg); ParserError(EErrorCodes a_iErrc, const string_type& sTok, const string_type& sFormula = string_type(), int a_iPos = -1); ParserError(EErrorCodes a_iErrc, int a_iPos, const string_type& sTok); ParserError(const char_type* a_szMsg, int a_iPos = -1, const string_type& sTok = string_type()); ParserError(const ParserError& a_Obj); ParserError& operator=(const ParserError& a_Obj); ~ParserError(); void SetFormula(const string_type& a_strFormula); const string_type& GetExpr() const; const string_type& GetMsg() const; int GetPos() const; const string_type& GetToken() const; EErrorCodes GetCode() const; private: string_type m_strMsg; ///< The message string string_type m_strFormula; ///< Formula string string_type m_strTok; ///< Token related with the error int m_iPos; ///< Formula position related to the error EErrorCodes m_iErrc; ///< Error code const ParserErrorMsg& m_ErrMsg; }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserTokenReader.cpp0000644000175000017500000010313214522641732024000 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include #include "muParserTokenReader.h" #include "muParserBase.h" /** \file \brief This file contains the parser token reader implementation. */ namespace mu { // Forward declaration class ParserBase; //--------------------------------------------------------------------------- /** \brief Copy constructor. \sa Assign \throw nothrow */ ParserTokenReader::ParserTokenReader(const ParserTokenReader& a_Reader) { Assign(a_Reader); } //--------------------------------------------------------------------------- /** \brief Assignment operator. Self assignment will be suppressed otherwise #Assign is called. \param a_Reader Object to copy to this token reader. \throw nothrow */ ParserTokenReader& ParserTokenReader::operator=(const ParserTokenReader& a_Reader) { if (&a_Reader != this) Assign(a_Reader); return *this; } //--------------------------------------------------------------------------- /** \brief Assign state of a token reader to this token reader. \param a_Reader Object from which the state should be copied. \throw nothrow */ void ParserTokenReader::Assign(const ParserTokenReader& a_Reader) { m_pParser = a_Reader.m_pParser; m_strFormula = a_Reader.m_strFormula; m_iPos = a_Reader.m_iPos; m_iSynFlags = a_Reader.m_iSynFlags; m_UsedVar = a_Reader.m_UsedVar; m_pFunDef = a_Reader.m_pFunDef; m_pConstDef = a_Reader.m_pConstDef; m_pVarDef = a_Reader.m_pVarDef; m_pStrVarDef = a_Reader.m_pStrVarDef; m_pPostOprtDef = a_Reader.m_pPostOprtDef; m_pInfixOprtDef = a_Reader.m_pInfixOprtDef; m_pOprtDef = a_Reader.m_pOprtDef; m_bIgnoreUndefVar = a_Reader.m_bIgnoreUndefVar; m_vIdentFun = a_Reader.m_vIdentFun; m_pFactory = a_Reader.m_pFactory; m_pFactoryData = a_Reader.m_pFactoryData; m_iBrackets = a_Reader.m_iBrackets; m_cArgSep = a_Reader.m_cArgSep; m_fZero = a_Reader.m_fZero; m_lastTok = a_Reader.m_lastTok; } //--------------------------------------------------------------------------- /** \brief Constructor. Create a Token reader and bind it to a parser object. \pre [assert] a_pParser may not be NULL \post #m_pParser==a_pParser \param a_pParent Parent parser object of the token reader. */ ParserTokenReader::ParserTokenReader(ParserBase* a_pParent) : m_pParser(a_pParent), m_strFormula(), m_iPos(0), m_iSynFlags(0), m_bIgnoreUndefVar(false), m_pFunDef(NULL), m_pPostOprtDef(NULL), m_pInfixOprtDef(NULL), m_pOprtDef(NULL), m_pConstDef(NULL), m_pStrVarDef(NULL), m_pVarDef(NULL), m_pFactory(NULL), m_pFactoryData(NULL), m_vIdentFun(), m_UsedVar(), m_fZero(0), m_iBrackets(0), m_lastTok(), m_cArgSep(',') { assert(m_pParser); SetParent(m_pParser); } //--------------------------------------------------------------------------- /** \brief Create instance of a ParserTokenReader identical with this and return its pointer. This is a factory method the calling function must take care of the object destruction. \return A new ParserTokenReader object. \throw nothrow */ ParserTokenReader* ParserTokenReader::Clone(ParserBase* a_pParent) const { std::auto_ptr ptr(new ParserTokenReader(*this)); ptr->SetParent(a_pParent); return ptr.release(); } //--------------------------------------------------------------------------- ParserTokenReader::token_type& ParserTokenReader::SaveBeforeReturn(const token_type& tok) { m_lastTok = tok; return m_lastTok; } //--------------------------------------------------------------------------- void ParserTokenReader::AddValIdent(identfun_type a_pCallback) { // Use push_front is used to give user defined callbacks a higher priority than // the built in ones. Otherwise reading hex numbers would not work // since the "0" in "0xff" would always be read first making parsing of // the rest impossible. // reference: // http://sourceforge.net/projects/muparser/forums/forum/462843/topic/4824956 m_vIdentFun.push_front(a_pCallback); } //--------------------------------------------------------------------------- void ParserTokenReader::SetVarCreator(facfun_type a_pFactory, void* pUserData) { m_pFactory = a_pFactory; m_pFactoryData = pUserData; } //--------------------------------------------------------------------------- /** \brief Return the current position of the token reader in the formula string. \return #m_iPos \throw nothrow */ int ParserTokenReader::GetPos() const { return m_iPos; } //--------------------------------------------------------------------------- /** \brief Return a reference to the formula. \return #m_strFormula \throw nothrow */ const string_type& ParserTokenReader::GetExpr() const { return m_strFormula; } //--------------------------------------------------------------------------- /** \brief Return a map containing the used variables only. */ varmap_type& ParserTokenReader::GetUsedVar() { return m_UsedVar; } //--------------------------------------------------------------------------- /** \brief Initialize the token Reader. Sets the formula position index to zero and set Syntax flags to default for initial formula parsing. \pre [assert] triggered if a_szFormula==0 */ void ParserTokenReader::SetFormula(const string_type& a_strFormula) { m_strFormula = a_strFormula; ReInit(); } //--------------------------------------------------------------------------- /** \brief Set Flag that controls behaviour in case of undefined variables being found. If true, the parser does not throw an exception if an undefined variable is found. otherwise it does. This variable is used internally only! It suppresses a "undefined variable" exception in GetUsedVar(). Those function should return a complete list of variables including those the are not defined by the time of it's call. */ void ParserTokenReader::IgnoreUndefVar(bool bIgnore) { m_bIgnoreUndefVar = bIgnore; } //--------------------------------------------------------------------------- /** \brief Reset the token reader to the start of the formula. The syntax flags will be reset to a value appropriate for the start of a formula. \post #m_iPos==0, #m_iSynFlags = noOPT | noBC | noPOSTOP | noSTR \throw nothrow \sa ESynCodes */ void ParserTokenReader::ReInit() { m_iPos = 0; m_iSynFlags = sfSTART_OF_LINE; m_iBrackets = 0; m_UsedVar.clear(); m_lastTok = token_type(); } //--------------------------------------------------------------------------- /** \brief Read the next token from the string. */ ParserTokenReader::token_type ParserTokenReader::ReadNextToken() { assert(m_pParser); const char_type* szFormula = m_strFormula.c_str(); token_type tok; // Ignore all non printable characters when reading the expression while (szFormula[m_iPos] > 0 && szFormula[m_iPos] <= 0x20) ++m_iPos; if (IsEOF(tok)) return SaveBeforeReturn(tok); // Check for end of formula if (IsOprt(tok)) return SaveBeforeReturn(tok); // Check for user defined binary operator if (IsFunTok(tok)) return SaveBeforeReturn(tok); // Check for function token if (IsBuiltIn(tok)) return SaveBeforeReturn(tok); // Check built in operators / tokens if (IsArgSep(tok)) return SaveBeforeReturn(tok); // Check for function argument separators if (IsValTok(tok)) return SaveBeforeReturn(tok); // Check for values / constant tokens if (IsVarTok(tok)) return SaveBeforeReturn(tok); // Check for variable tokens if (IsStrVarTok(tok)) return SaveBeforeReturn(tok); // Check for string variables if (IsString(tok)) return SaveBeforeReturn(tok); // Check for String tokens if (IsInfixOpTok(tok)) return SaveBeforeReturn(tok); // Check for unary operators if (IsPostOpTok(tok)) return SaveBeforeReturn(tok); // Check for unary operators // Check String for undefined variable token. Done only if a // flag is set indicating to ignore undefined variables. // This is a way to conditionally avoid an error if // undefined variables occur. // (The GetUsedVar function must suppress the error for // undefined variables in order to collect all variable // names including the undefined ones.) if ((m_bIgnoreUndefVar || m_pFactory) && IsUndefVarTok(tok)) return SaveBeforeReturn(tok); // Check for unknown token // // !!! From this point on there is no exit without an exception possible... // string_type strTok; int iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, m_iPos); if (iEnd != m_iPos) Error(ecUNASSIGNABLE_TOKEN, m_iPos, strTok); Error(ecUNASSIGNABLE_TOKEN, m_iPos, m_strFormula.substr(m_iPos)); return token_type(); // never reached } //--------------------------------------------------------------------------- void ParserTokenReader::SetParent(ParserBase* a_pParent) { m_pParser = a_pParent; m_pFunDef = &a_pParent->m_FunDef; m_pOprtDef = &a_pParent->m_OprtDef; m_pInfixOprtDef = &a_pParent->m_InfixOprtDef; m_pPostOprtDef = &a_pParent->m_PostOprtDef; m_pVarDef = &a_pParent->m_VarDef; m_pStrVarDef = &a_pParent->m_StrVarDef; m_pConstDef = &a_pParent->m_ConstDef; } //--------------------------------------------------------------------------- /** \brief Extract all characters that belong to a certain charset. \param a_szCharSet [in] Const char array of the characters allowed in the token. \param a_strTok [out] The string that consists entirely of characters listed in a_szCharSet. \param a_iPos [in] Position in the string from where to start reading. \return The Position of the first character not listed in a_szCharSet. \throw nothrow */ int ParserTokenReader::ExtractToken(const char_type* a_szCharSet, string_type& a_sTok, int a_iPos) const { int iEnd = (int)m_strFormula.find_first_not_of(a_szCharSet, a_iPos); if (iEnd == (int)string_type::npos) iEnd = (int)m_strFormula.length(); // Assign token string if there was something found if (a_iPos != iEnd) a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd); return iEnd; } //--------------------------------------------------------------------------- /** \brief Check Expression for the presence of a binary operator token. Userdefined binary operator "++" gives inconsistent parsing result for the equations "a++b" and "a ++ b" if alphabetic characters are allowed in operator tokens. To avoid this this function checks specifically for operator tokens. */ int ParserTokenReader::ExtractOperatorToken(string_type& a_sTok, int a_iPos) const { // Changed as per Issue 6: https://code.google.com/p/muparser/issues/detail?id=6 int iEnd = (int)m_strFormula.find_first_not_of(m_pParser->ValidOprtChars(), a_iPos); if (iEnd == (int)string_type::npos) iEnd = (int)m_strFormula.length(); // Assign token string if there was something found if (a_iPos != iEnd) { a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd); return iEnd; } else { // There is still the chance of having to deal with an operator consisting exclusively // of alphabetic characters. return ExtractToken(MUP_CHARS, a_sTok, a_iPos); } } //--------------------------------------------------------------------------- /** \brief Check if a built in operator or other token can be found \param a_Tok [out] Operator token if one is found. This can either be a binary operator or an infix operator token. \return true if an operator token has been found. */ bool ParserTokenReader::IsBuiltIn(token_type& a_Tok) { const char_type **const pOprtDef = m_pParser->GetOprtDef(), *const szFormula = m_strFormula.c_str(); // Compare token with function and operator strings // check string for operator/function for (int i = 0; pOprtDef[i]; i++) { std::size_t len(std::char_traits::length(pOprtDef[i])); if (string_type(pOprtDef[i]) == string_type(szFormula + m_iPos, szFormula + m_iPos + len)) { switch (i) { // case cmAND: // case cmOR: // case cmXOR: case cmLAND: case cmLOR: case cmLT: case cmGT: case cmLE: case cmGE: case cmNEQ: case cmEQ: case cmADD: case cmSUB: case cmMUL: case cmDIV: case cmPOW: case cmASSIGN: // if (len!=sTok.length()) // continue; // The assignment operator need special treatment if (i == cmASSIGN && m_iSynFlags & noASSIGN) Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]); if (!m_pParser->HasBuiltInOprt()) continue; if (m_iSynFlags & noOPT) { // Maybe its an infix operator not an operator // Both operator types can share characters in // their identifiers if (IsInfixOpTok(a_Tok)) return true; Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]); } m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE | noEND; break; case cmBO: if (m_iSynFlags & noBO) Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]); if (m_lastTok.GetCode() == cmFUNC) m_iSynFlags = noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE; else m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE; ++m_iBrackets; break; case cmBC: if (m_iSynFlags & noBC) Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]); m_iSynFlags = noBO | noVAR | noVAL | noFUN | noINFIXOP | noSTR | noASSIGN; if (--m_iBrackets < 0) Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]); break; case cmELSE: if (m_iSynFlags & noELSE) Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]); m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE; break; case cmIF: if (m_iSynFlags & noIF) Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]); m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE; break; default: // The operator is listed in c_DefaultOprt, but not here. This is a bad thing... Error(ecINTERNAL_ERROR); } // switch operator id m_iPos += (int)len; a_Tok.Set((ECmdCode)i, pOprtDef[i]); return true; } // if operator string found } // end of for all operator strings return false; } //--------------------------------------------------------------------------- bool ParserTokenReader::IsArgSep(token_type& a_Tok) { const char_type* szFormula = m_strFormula.c_str(); if (szFormula[m_iPos] == m_cArgSep) { // copy the separator into null terminated string char_type szSep[2]; szSep[0] = m_cArgSep; szSep[1] = 0; if (m_iSynFlags & noARG_SEP) Error(ecUNEXPECTED_ARG_SEP, m_iPos, szSep); m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN; m_iPos++; a_Tok.Set(cmARG_SEP, szSep); return true; } return false; } //--------------------------------------------------------------------------- /** \brief Check for End of Formula. \return true if an end of formula is found false otherwise. \param a_Tok [out] If an eof is found the corresponding token will be stored there. \throw nothrow \sa IsOprt, IsFunTok, IsStrFunTok, IsValTok, IsVarTok, IsString, IsInfixOpTok, IsPostOpTok */ bool ParserTokenReader::IsEOF(token_type& a_Tok) { const char_type* szFormula = m_strFormula.c_str(); // check for EOF if (!szFormula[m_iPos] /*|| szFormula[m_iPos] == '\n'*/) { if (m_iSynFlags & noEND) Error(ecUNEXPECTED_EOF, m_iPos); if (m_iBrackets > 0) Error(ecMISSING_PARENS, m_iPos, _T(")")); m_iSynFlags = 0; a_Tok.Set(cmEND); return true; } return false; } //--------------------------------------------------------------------------- /** \brief Check if a string position contains a unary infix operator. \return true if a function token has been found false otherwise. */ bool ParserTokenReader::IsInfixOpTok(token_type& a_Tok) { string_type sTok; int iEnd = ExtractToken(m_pParser->ValidInfixOprtChars(), sTok, m_iPos); if (iEnd == m_iPos) return false; // iterate over all postfix operator strings funmap_type::const_reverse_iterator it = m_pInfixOprtDef->rbegin(); for (; it != m_pInfixOprtDef->rend(); ++it) { if (sTok.find(it->first) != 0) continue; a_Tok.Set(it->second, it->first); m_iPos += (int)it->first.length(); if (m_iSynFlags & noINFIXOP) Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString()); m_iSynFlags = noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN; return true; } return false; /* a_Tok.Set(item->second, sTok); m_iPos = (int)iEnd; if (m_iSynFlags & noINFIXOP) Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString()); m_iSynFlags = noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN; return true; */ } //--------------------------------------------------------------------------- /** \brief Check whether the token at a given position is a function token. \param a_Tok [out] If a value token is found it will be placed here. \throw ParserException if Syntaxflags do not allow a function at a_iPos \return true if a function token has been found false otherwise. \pre [assert] m_pParser!=0 */ bool ParserTokenReader::IsFunTok(token_type& a_Tok) { string_type strTok; int iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, m_iPos); if (iEnd == m_iPos) return false; funmap_type::const_iterator item = m_pFunDef->find(strTok); if (item == m_pFunDef->end()) return false; // Check if the next sign is an opening bracket const char_type* szFormula = m_strFormula.c_str(); if (szFormula[iEnd] != '(') return false; a_Tok.Set(item->second, strTok); m_iPos = (int)iEnd; if (m_iSynFlags & noFUN) Error(ecUNEXPECTED_FUN, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString()); m_iSynFlags = noANY ^ noBO; return true; } //--------------------------------------------------------------------------- /** \brief Check if a string position contains a binary operator. \param a_Tok [out] Operator token if one is found. This can either be a binary operator or an infix operator token. \return true if an operator token has been found. */ bool ParserTokenReader::IsOprt(token_type& a_Tok) { const char_type* const szExpr = m_strFormula.c_str(); string_type strTok; int iEnd = ExtractOperatorToken(strTok, m_iPos); if (iEnd == m_iPos) return false; // Check if the operator is a built in operator, if so ignore it here const char_type** const pOprtDef = m_pParser->GetOprtDef(); for (int i = 0; m_pParser->HasBuiltInOprt() && pOprtDef[i]; ++i) { if (string_type(pOprtDef[i]) == strTok) return false; } // Note: // All tokens in oprt_bin_maptype are have been sorted by their length // Long operators must come first! Otherwise short names (like: "add") that // are part of long token names (like: "add123") will be found instead // of the long ones. // Length sorting is done with ascending length so we use a reverse iterator here. funmap_type::const_reverse_iterator it = m_pOprtDef->rbegin(); for (; it != m_pOprtDef->rend(); ++it) { const string_type& sID = it->first; if (sID == string_type(szExpr + m_iPos, szExpr + m_iPos + sID.length())) { a_Tok.Set(it->second, strTok); // operator was found if (m_iSynFlags & noOPT) { // An operator was found but is not expected to occur at // this position of the formula, maybe it is an infix // operator, not a binary operator. Both operator types // can share characters in their identifiers. if (IsInfixOpTok(a_Tok)) return true; else { // nope, no infix operator return false; // Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString()); } } m_iPos += (int)sID.length(); m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noEND | noASSIGN; return true; } } return false; } //--------------------------------------------------------------------------- /** \brief Check if a string position contains a unary post value operator. */ bool ParserTokenReader::IsPostOpTok(token_type& a_Tok) { // Do not check for postfix operators if they are not allowed at // the current expression index. // // This will fix the bug reported here: // // http://sourceforge.net/tracker/index.php?func=detail&aid=3343891&group_id=137191&atid=737979 // if (m_iSynFlags & noPOSTOP) return false; // // Tricky problem with equations like "3m+5": // m is a postfix operator, + is a valid sign for postfix operators and // for binary operators parser detects "m+" as operator string and // finds no matching postfix operator. // // This is a special case so this routine slightly differs from the other // token readers. // Test if there could be a postfix operator string_type sTok; int iEnd = ExtractToken(m_pParser->ValidOprtChars(), sTok, m_iPos); if (iEnd == m_iPos) return false; // iterate over all postfix operator strings funmap_type::const_reverse_iterator it = m_pPostOprtDef->rbegin(); for (; it != m_pPostOprtDef->rend(); ++it) { if (sTok.find(it->first) != 0) continue; a_Tok.Set(it->second, sTok); m_iPos += (int)it->first.length(); m_iSynFlags = noVAL | noVAR | noFUN | noBO | noPOSTOP | noSTR | noASSIGN; return true; } return false; } //--------------------------------------------------------------------------- /** \brief Check whether the token at a given position is a value token. Value tokens are either values or constants. \param a_Tok [out] If a value token is found it will be placed here. \return true if a value token has been found. */ bool ParserTokenReader::IsValTok(token_type& a_Tok) { assert(m_pConstDef); assert(m_pParser); string_type strTok; value_type fVal(0); int iEnd(0); // 2.) Check for user defined constant // Read everything that could be a constant name iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, m_iPos); if (iEnd != m_iPos) { valmap_type::const_iterator item = m_pConstDef->find(strTok); if (item != m_pConstDef->end()) { m_iPos = iEnd; a_Tok.SetVal(item->second, strTok); if (m_iSynFlags & noVAL) Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok); m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN; return true; } } // 3.call the value recognition functions provided by the user // Call user defined value recognition functions std::list::const_iterator item = m_vIdentFun.begin(); for (item = m_vIdentFun.begin(); item != m_vIdentFun.end(); ++item) { int iStart = m_iPos; if ((*item)(m_strFormula.c_str() + m_iPos, &m_iPos, &fVal) == 1) { // 2013-11-27 Issue 2: https://code.google.com/p/muparser/issues/detail?id=2 strTok.assign(m_strFormula.c_str(), iStart, m_iPos - iStart); if (m_iSynFlags & noVAL) Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok); a_Tok.SetVal(fVal, strTok); m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN; return true; } } return false; } //--------------------------------------------------------------------------- /** \brief Check wheter a token at a given position is a variable token. \param a_Tok [out] If a variable token has been found it will be placed here. \return true if a variable token has been found. */ bool ParserTokenReader::IsVarTok(token_type& a_Tok) { if (m_pVarDef->empty()) return false; string_type strTok; int iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, m_iPos); if (iEnd == m_iPos) return false; varmap_type::const_iterator item = m_pVarDef->find(strTok); if (item == m_pVarDef->end()) return false; if (m_iSynFlags & noVAR) Error(ecUNEXPECTED_VAR, m_iPos, strTok); m_pParser->OnDetectVar(&m_strFormula, m_iPos, iEnd); m_iPos = iEnd; a_Tok.SetVar(item->second, strTok); m_UsedVar[item->first] = item->second; // Add variable to used-var-list m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR; // Zur Info hier die SynFlags von IsVal(): // m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN; return true; } //--------------------------------------------------------------------------- bool ParserTokenReader::IsStrVarTok(token_type& a_Tok) { if (!m_pStrVarDef || m_pStrVarDef->empty()) return false; string_type strTok; int iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, m_iPos); if (iEnd == m_iPos) return false; strmap_type::const_iterator item = m_pStrVarDef->find(strTok); if (item == m_pStrVarDef->end()) return false; if (m_iSynFlags & noSTR) Error(ecUNEXPECTED_VAR, m_iPos, strTok); m_iPos = iEnd; if (!m_pParser->m_vStringVarBuf.size()) Error(ecINTERNAL_ERROR); a_Tok.SetString(m_pParser->m_vStringVarBuf[item->second], m_pParser->m_vStringVarBuf.size()); m_iSynFlags = noANY ^ (noBC | noOPT | noEND | noARG_SEP); return true; } //--------------------------------------------------------------------------- /** \brief Check wheter a token at a given position is an undefined variable. \param a_Tok [out] If a variable tom_pParser->m_vStringBufken has been found it will be placed here. \return true if a variable token has been found. \throw nothrow */ bool ParserTokenReader::IsUndefVarTok(token_type& a_Tok) { string_type strTok; int iEnd(ExtractToken(m_pParser->ValidNameChars(), strTok, m_iPos)); if (iEnd == m_iPos) return false; if (m_iSynFlags & noVAR) { // 20061021 added token string strTok instead of a_Tok.GetAsString() as the // token identifier. // related bug report: // http://sourceforge.net/tracker/index.php?func=detail&aid=1578779&group_id=137191&atid=737979 Error(ecUNEXPECTED_VAR, m_iPos - (int)a_Tok.GetAsString().length(), strTok); } // If a factory is available implicitely create new variables if (m_pFactory) { value_type* fVar = m_pFactory(strTok.c_str(), m_pFactoryData); a_Tok.SetVar(fVar, strTok); // Do not use m_pParser->DefineVar( strTok, fVar ); // in order to define the new variable, it will clear the // m_UsedVar array which will kill previously defined variables // from the list // This is safe because the new variable can never override an existing one // because they are checked first! (*m_pVarDef)[strTok] = fVar; m_UsedVar[strTok] = fVar; // Add variable to used-var-list } else { a_Tok.SetVar((value_type*)&m_fZero, strTok); m_UsedVar[strTok] = 0; // Add variable to used-var-list } m_iPos = iEnd; // Call the variable factory in order to let it define a new parser variable m_iSynFlags = noVAL | noVAR | noFUN | noBO | noPOSTOP | noINFIXOP | noSTR; return true; } //--------------------------------------------------------------------------- /** \brief Check wheter a token at a given position is a string. \param a_Tok [out] If a variable token has been found it will be placed here. \return true if a string token has been found. \sa IsOprt, IsFunTok, IsStrFunTok, IsValTok, IsVarTok, IsEOF, IsInfixOpTok, IsPostOpTok \throw nothrow */ bool ParserTokenReader::IsString(token_type& a_Tok) { if (m_strFormula[m_iPos] != '"') return false; string_type strBuf(&m_strFormula[m_iPos + 1]); std::size_t iEnd(0), iSkip(0); // parser over escaped '\"' end replace them with '"' for (iEnd = (int)strBuf.find(_T("\"")); iEnd != 0 && iEnd != string_type::npos; iEnd = (int)strBuf.find(_T("\""), iEnd)) { if (strBuf[iEnd - 1] != '\\') break; strBuf.replace(iEnd - 1, 2, _T("\"")); iSkip++; } if (iEnd == string_type::npos) Error(ecUNTERMINATED_STRING, m_iPos, _T("\"")); string_type strTok(strBuf.begin(), strBuf.begin() + iEnd); if (m_iSynFlags & noSTR) Error(ecUNEXPECTED_STR, m_iPos, strTok); m_pParser->m_vStringBuf.push_back(strTok); // Store string in internal buffer a_Tok.SetString(strTok, m_pParser->m_vStringBuf.size()); m_iPos += (int)strTok.length() + 2 + (int)iSkip; // +2 wg Anführungszeichen; +iSkip für entfernte escape zeichen m_iSynFlags = noANY ^ (noARG_SEP | noBC | noOPT | noEND); return true; } //--------------------------------------------------------------------------- /** \brief Create an error containing the parse error position. This function will create an Parser Exception object containing the error text and its position. \param a_iErrc [in] The error code of type #EErrorCodes. \param a_iPos [in] The position where the error was detected. \param a_strTok [in] The token string representation associated with the error. \throw ParserException always throws thats the only purpose of this function. */ void ParserTokenReader::Error(EErrorCodes a_iErrc, int a_iPos, const string_type& a_sTok) const { m_pParser->Error(a_iErrc, a_iPos, a_sTok); } //--------------------------------------------------------------------------- void ParserTokenReader::SetArgSep(char_type cArgSep) { m_cArgSep = cArgSep; } //--------------------------------------------------------------------------- char_type ParserTokenReader::GetArgSep() const { return m_cArgSep; } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserInt.h0000644000175000017500000001236614522641732022004 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_INT_H #define MU_PARSER_INT_H #include "muParserBase.h" #include /** \file \brief Definition of a parser using integer value. */ namespace mu { /** \brief Mathematical expressions parser. This version of the parser handles only integer numbers. It disables the built in operators thus it is slower than muParser. Integer values are stored in the double value_type and converted if needed. */ class ParserInt : public ParserBase { private: static int Round(value_type v) { return (int)(v + ((v >= 0) ? 0.5 : -0.5)); }; static value_type Abs(value_type); static value_type Sign(value_type); static value_type Ite(value_type, value_type, value_type); // !! The unary Minus is a MUST, otherwise you cant use negative signs !! static value_type UnaryMinus(value_type); // Functions with variable number of arguments static value_type Sum(const value_type* a_afArg, int a_iArgc); // sum static value_type Min(const value_type* a_afArg, int a_iArgc); // minimum static value_type Max(const value_type* a_afArg, int a_iArgc); // maximum // binary operator callbacks static value_type Add(value_type v1, value_type v2); static value_type Sub(value_type v1, value_type v2); static value_type Mul(value_type v1, value_type v2); static value_type Div(value_type v1, value_type v2); static value_type Mod(value_type v1, value_type v2); static value_type Pow(value_type v1, value_type v2); static value_type Shr(value_type v1, value_type v2); static value_type Shl(value_type v1, value_type v2); static value_type LogAnd(value_type v1, value_type v2); static value_type LogOr(value_type v1, value_type v2); static value_type And(value_type v1, value_type v2); static value_type Or(value_type v1, value_type v2); static value_type Xor(value_type v1, value_type v2); static value_type Less(value_type v1, value_type v2); static value_type Greater(value_type v1, value_type v2); static value_type LessEq(value_type v1, value_type v2); static value_type GreaterEq(value_type v1, value_type v2); static value_type Equal(value_type v1, value_type v2); static value_type NotEqual(value_type v1, value_type v2); static value_type Not(value_type v1); static int IsHexVal(const char_type* a_szExpr, int* a_iPos, value_type* a_iVal); static int IsBinVal(const char_type* a_szExpr, int* a_iPos, value_type* a_iVal); static int IsVal(const char_type* a_szExpr, int* a_iPos, value_type* a_iVal); /** \brief A facet class used to change decimal and thousands separator. */ template class change_dec_sep : public std::numpunct { public: explicit change_dec_sep(char_type cDecSep, char_type cThousandsSep = 0, int nGroup = 3) : std::numpunct(), m_cDecPoint(cDecSep), m_cThousandsSep(cThousandsSep), m_nGroup(nGroup) { } protected: virtual char_type do_decimal_point() const { return m_cDecPoint; } virtual char_type do_thousands_sep() const { return m_cThousandsSep; } virtual std::string do_grouping() const { // fix for issue 4: https://code.google.com/p/muparser/issues/detail?id=4 // courtesy of Jens Bartsch // original code: // return std::string(1, (char)m_nGroup); // new code: return std::string(1, (char)(m_cThousandsSep > 0 ? m_nGroup : CHAR_MAX)); } private: int m_nGroup; char_type m_cDecPoint; char_type m_cThousandsSep; }; public: ParserInt(); virtual void InitFun(); virtual void InitOprt(); virtual void InitConst(); virtual void InitCharSets(); }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParser.h0000644000175000017500000001033714522641732021325 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_H #define MU_PARSER_H //--- Standard includes ------------------------------------------------------------------------ #include //--- Parser includes -------------------------------------------------------------------------- #include "muParserBase.h" #include "muParserTemplateMagic.h" /** \file \brief Definition of the standard floating point parser. */ namespace mu { /** \brief Mathematical expressions parser. Standard implementation of the mathematical expressions parser. Can be used as a reference implementation for subclassing the parser. (C) 2011 Ingo Berg
muparser(at)beltoforion.de
*/ /* final */ class Parser : public ParserBase { public: Parser(); virtual void InitCharSets(); virtual void InitFun(); virtual void InitConst(); virtual void InitOprt(); virtual void OnDetectVar(string_type* pExpr, int& nStart, int& nEnd); value_type Diff(value_type* a_Var, value_type a_fPos, value_type a_fEpsilon = 0) const; protected: // Trigonometric functions static value_type Sin(value_type); static value_type Cos(value_type); static value_type Tan(value_type); static value_type Tan2(value_type, value_type); // arcus functions static value_type ASin(value_type); static value_type ACos(value_type); static value_type ATan(value_type); static value_type ATan2(value_type, value_type); // hyperbolic functions static value_type Sinh(value_type); static value_type Cosh(value_type); static value_type Tanh(value_type); // arcus hyperbolic functions static value_type ASinh(value_type); static value_type ACosh(value_type); static value_type ATanh(value_type); // Logarithm functions static value_type Log2(value_type); // Logarithm Base 2 static value_type Log10(value_type); // Logarithm Base 10 static value_type Ln(value_type); // Logarithm Base e (natural logarithm) // misc static value_type Exp(value_type); static value_type Abs(value_type); static value_type Sqrt(value_type); static value_type Rint(value_type); static value_type Sign(value_type); // Prefix operators // !!! Unary Minus is a MUST if you want to use negative signs !!! static value_type UnaryMinus(value_type); static value_type UnaryPlus(value_type); // Functions with variable number of arguments static value_type Sum(const value_type*, int); // sum static value_type Avg(const value_type*, int); // mean value static value_type Min(const value_type*, int); // minimum static value_type Max(const value_type*, int); // maximum static int IsVal(const char_type* a_szExpr, int* a_iPos, value_type* a_fVal); }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserBase.h0000644000175000017500000002672014522641732022123 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_BASE_H #define MU_PARSER_BASE_H //--- Standard includes ------------------------------------------------------------------------ #include #include #include #include #include #include #include //--- Parser includes -------------------------------------------------------------------------- #include "muParserDef.h" #include "muParserStack.h" #include "muParserTokenReader.h" #include "muParserBytecode.h" #include "muParserError.h" namespace mu { /** \file \brief This file contains the class definition of the muparser engine. */ //-------------------------------------------------------------------------------------------------- /** \brief Mathematical expressions parser (base parser engine). \author (C) 2013 Ingo Berg This is the implementation of a bytecode based mathematical expressions parser. The formula will be parsed from string and converted into a bytecode. Future calculations will be done with the bytecode instead the formula string resulting in a significant performance increase. Complementary to a set of internally implemented functions the parser is able to handle user defined functions and variables. */ class ParserBase { friend class ParserTokenReader; private: /** \brief Typedef for the parse functions. The parse function do the actual work. The parser exchanges the function pointer to the parser function depending on which state it is in. (i.e. bytecode parser vs. string parser) */ typedef value_type (ParserBase::*ParseFunction)() const; /** \brief Type used for storing an array of values. */ typedef std::vector valbuf_type; /** \brief Type for a vector of strings. */ typedef std::vector stringbuf_type; /** \brief Typedef for the token reader. */ typedef ParserTokenReader token_reader_type; /** \brief Type used for parser tokens. */ typedef ParserToken token_type; /** \brief Maximum number of threads spawned by OpenMP when using the bulk mode. */ static const int s_MaxNumOpenMPThreads = 16; public: /** \brief Type of the error class. Included for backwards compatibility. */ typedef ParserError exception_type; static void EnableDebugDump(bool bDumpCmd, bool bDumpStack); ParserBase(); ParserBase(const ParserBase& a_Parser); ParserBase& operator=(const ParserBase& a_Parser); virtual ~ParserBase(); value_type Eval() const; value_type* Eval(int& nStackSize) const; void Eval(value_type* results, int nBulkSize); int GetNumResults() const; void SetExpr(const string_type& a_sExpr); void SetVarFactory(facfun_type a_pFactory, void* pUserData = NULL); void SetDecSep(char_type cDecSep); void SetThousandsSep(char_type cThousandsSep = 0); void ResetLocale(); void EnableOptimizer(bool a_bIsOn = true); void EnableBuiltInOprt(bool a_bIsOn = true); bool HasBuiltInOprt() const; void AddValIdent(identfun_type a_pCallback); /** \fn void mu::ParserBase::DefineFun(const string_type &a_strName, fun_type0 a_pFun, bool a_bAllowOpt = true) \brief Define a parser function without arguments. \param a_strName Name of the function \param a_pFun Pointer to the callback function \param a_bAllowOpt A flag indicating this function may be optimized */ template void DefineFun(const string_type& a_strName, T a_pFun, bool a_bAllowOpt = true) { AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars()); } void DefineOprt(const string_type& a_strName, fun_type2 a_pFun, unsigned a_iPri = 0, EOprtAssociativity a_eAssociativity = oaLEFT, bool a_bAllowOpt = false); void DefineConst(const string_type& a_sName, value_type a_fVal); void DefineStrConst(const string_type& a_sName, const string_type& a_strVal); void DefineVar(const string_type& a_sName, value_type* a_fVar); void DefinePostfixOprt(const string_type& a_strFun, fun_type1 a_pOprt, bool a_bAllowOpt = true); void DefineInfixOprt(const string_type& a_strName, fun_type1 a_pOprt, int a_iPrec = prINFIX, bool a_bAllowOpt = true); // Clear user defined variables, constants or functions void ClearVar(); void ClearFun(); void ClearConst(); void ClearInfixOprt(); void ClearPostfixOprt(); void ClearOprt(); void RemoveVar(const string_type& a_strVarName); const varmap_type& GetUsedVar() const; const varmap_type& GetVar() const; const valmap_type& GetConst() const; const string_type& GetExpr() const; const funmap_type& GetFunDef() const; string_type GetVersion(EParserVersionInfo eInfo = pviFULL) const; const char_type** GetOprtDef() const; void DefineNameChars(const char_type* a_szCharset); void DefineOprtChars(const char_type* a_szCharset); void DefineInfixOprtChars(const char_type* a_szCharset); const char_type* ValidNameChars() const; const char_type* ValidOprtChars() const; const char_type* ValidInfixOprtChars() const; void SetArgSep(char_type cArgSep); char_type GetArgSep() const; void Error(EErrorCodes a_iErrc, int a_iPos = (int)mu::string_type::npos, const string_type& a_strTok = string_type()) const; protected: void Init(); virtual void InitCharSets() = 0; virtual void InitFun() = 0; virtual void InitConst() = 0; virtual void InitOprt() = 0; virtual void OnDetectVar(string_type* pExpr, int& nStart, int& nEnd); static const char_type* c_DefaultOprt[]; static std::locale s_locale; ///< The locale used by the parser static bool g_DbgDumpCmdCode; static bool g_DbgDumpStack; /** \brief A facet class used to change decimal and thousands separator. */ template class change_dec_sep : public std::numpunct { public: explicit change_dec_sep(char_type cDecSep, char_type cThousandsSep = 0, int nGroup = 3) : std::numpunct(), m_nGroup(nGroup), m_cDecPoint(cDecSep), m_cThousandsSep(cThousandsSep) { } protected: virtual char_type do_decimal_point() const { return m_cDecPoint; } virtual char_type do_thousands_sep() const { return m_cThousandsSep; } virtual std::string do_grouping() const { // fix for issue 4: https://code.google.com/p/muparser/issues/detail?id=4 // courtesy of Jens Bartsch // original code: // return std::string(1, (char)m_nGroup); // new code: return std::string(1, (char)(m_cThousandsSep > 0 ? m_nGroup : CHAR_MAX)); } private: int m_nGroup; char_type m_cDecPoint; char_type m_cThousandsSep; }; private: void Assign(const ParserBase& a_Parser); void InitTokenReader(); void ReInit() const; void AddCallback(const string_type& a_strName, const ParserCallback& a_Callback, funmap_type& a_Storage, const char_type* a_szCharSet); void ApplyRemainingOprt(ParserStack& a_stOpt, ParserStack& a_stVal) const; void ApplyBinOprt(ParserStack& a_stOpt, ParserStack& a_stVal) const; void ApplyIfElse(ParserStack& a_stOpt, ParserStack& a_stVal) const; void ApplyFunc(ParserStack& a_stOpt, ParserStack& a_stVal, int iArgCount) const; token_type ApplyStrFunc(const token_type& a_FunTok, const std::vector& a_vArg) const; int GetOprtPrecedence(const token_type& a_Tok) const; EOprtAssociativity GetOprtAssociativity(const token_type& a_Tok) const; void CreateRPN() const; value_type ParseString() const; value_type ParseCmdCode() const; value_type ParseCmdCodeBulk(int nOffset, int nThreadID) const; void CheckName(const string_type& a_strName, const string_type& a_CharSet) const; void CheckOprt(const string_type& a_sName, const ParserCallback& a_Callback, const string_type& a_szCharSet) const; void StackDump(const ParserStack& a_stVal, const ParserStack& a_stOprt) const; /** \brief Pointer to the parser function. Eval() calls the function whose address is stored there. */ mutable ParseFunction m_pParseFormula; mutable ParserByteCode m_vRPN; ///< The Bytecode class. mutable stringbuf_type m_vStringBuf; ///< String buffer, used for storing string function arguments stringbuf_type m_vStringVarBuf; std::auto_ptr m_pTokenReader; ///< Managed pointer to the token reader object. funmap_type m_FunDef; ///< Map of function names and pointers. funmap_type m_PostOprtDef; ///< Postfix operator callbacks funmap_type m_InfixOprtDef; ///< unary infix operator. funmap_type m_OprtDef; ///< Binary operator callbacks valmap_type m_ConstDef; ///< user constants. strmap_type m_StrVarDef; ///< user defined string constants varmap_type m_VarDef; ///< user defind variables. bool m_bBuiltInOp; ///< Flag that can be used for switching built in operators on and off string_type m_sNameChars; ///< Charset for names string_type m_sOprtChars; ///< Charset for postfix/ binary operator tokens string_type m_sInfixOprtChars; ///< Charset for infix operator tokens mutable int m_nIfElseCounter; ///< Internal counter for keeping track of nested if-then-else clauses // items merely used for caching state information mutable valbuf_type m_vStackBuffer; ///< This is merely a buffer used for the stack in the cmd parsing routine mutable int m_nFinalResultIdx; }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserCallback.h0000644000175000017500000001204114522641732022734 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_CALLBACK_H #define MU_PARSER_CALLBACK_H #include "muParserDef.h" /** \file \brief Definition of the parser callback class. */ namespace mu { /** \brief Encapsulation of prototypes for a numerical parser function. Encapsulates the prototyp for numerical parser functions. The class stores the number of arguments for parser functions as well as additional flags indication the function is non optimizeable. The pointer to the callback function pointer is stored as void* and needs to be casted according to the argument count. Negative argument counts indicate a parser function with a variable number of arguments. \author (C) 2004-2011 Ingo Berg */ class ParserCallback { public: ParserCallback(fun_type0 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type1 a_pFun, bool a_bAllowOpti, int a_iPrec = -1, ECmdCode a_iCode = cmFUNC); ParserCallback(fun_type2 a_pFun, bool a_bAllowOpti, int a_iPrec, EOprtAssociativity a_eAssociativity); ParserCallback(fun_type2 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type3 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type4 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type5 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type6 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type7 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type8 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type9 a_pFun, bool a_bAllowOpti); ParserCallback(fun_type10 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type0 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type1 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type2 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type3 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type4 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type5 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type6 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type7 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type8 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type9 a_pFun, bool a_bAllowOpti); ParserCallback(bulkfun_type10 a_pFun, bool a_bAllowOpti); ParserCallback(multfun_type a_pFun, bool a_bAllowOpti); ParserCallback(strfun_type1 a_pFun, bool a_bAllowOpti); ParserCallback(strfun_type2 a_pFun, bool a_bAllowOpti); ParserCallback(strfun_type3 a_pFun, bool a_bAllowOpti); ParserCallback(); ParserCallback(const ParserCallback& a_Fun); ParserCallback* Clone() const; bool IsOptimizable() const; void* GetAddr() const; ECmdCode GetCode() const; ETypeCode GetType() const; int GetPri() const; EOprtAssociativity GetAssociativity() const; int GetArgc() const; private: void* m_pFun; ///< Pointer to the callback function, casted to void /** \brief Number of numeric function arguments This number is negative for functions with variable number of arguments. in this cases they represent the actual number of arguments found. */ int m_iArgc; int m_iPri; ///< Valid only for binary and infix operators; Operator precedence. EOprtAssociativity m_eOprtAsct; ///< Operator associativity; Valid only for binary operators ECmdCode m_iCode; ETypeCode m_iType; bool m_bAllowOpti; ///< Flag indication optimizeability }; //------------------------------------------------------------------------------ /** \brief Container for Callback objects. */ typedef std::map funmap_type; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/Makefile.am0000644000175000017500000000415114522641732021407 0ustar tzafrirctzafrirc#-- # Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in AM_CFLAGS = -w -g -MP -MD ${COMPILER_FPIC} AM_CXXFLAGS = -w -g -MP -MD ${COMPILER_FPIC} noinst_LTLIBRARIES = libmuparser.la noinst_HEADERS = muParser.h muParserBase.h muParserBytecode.h muParserCallback.h muParserDef.h muParserError.h muParserFixes.h muParserStack.h muParserToken.h muParserTokenReader.h muParserTemplateMagic.h libmuparser_la_SOURCES = \ muParserBase.cpp muParserBytecode.cpp muParserCallback.cpp muParser.cpp muParserError.cpp muParserTokenReader.cpp \ muParser.h muParserBase.h muParserBytecode.h muParserCallback.h muParserDef.h muParserError.h muParserFixes.h muParserStack.h muParserToken.h muParserTokenReader.h muParserTemplateMagic.h mstflint-4.26.0/ext_libs/muparser/muParserStack.h0000644000175000017500000000731114522641732022311 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_STACK_H #define MU_PARSER_STACK_H #include #include #include #include #include "muParserError.h" #include "muParserToken.h" /** \file \brief This file defines the stack used by muparser. */ namespace mu { /** \brief Parser stack implementation. Stack implementation based on a std::stack. The behaviour of pop() had been slightly changed in order to get an error code if the stack is empty. The stack is used within the Parser both as a value stack and as an operator stack. \author (C) 2004-2011 Ingo Berg */ template class ParserStack { private: /** \brief Type of the underlying stack implementation. */ typedef std::stack > impl_type; impl_type m_Stack; ///< This is the actual stack. public: //--------------------------------------------------------------------------- ParserStack() : m_Stack() {} //--------------------------------------------------------------------------- virtual ~ParserStack() {} //--------------------------------------------------------------------------- /** \brief Pop a value from the stack. Unlike the standard implementation this function will return the value that is going to be taken from the stack. \throw ParserException in case the stack is empty. \sa pop(int &a_iErrc) */ TValueType pop() { if (empty()) throw ParserError(_T("stack is empty.")); TValueType el = top(); m_Stack.pop(); return el; } /** \brief Push an object into the stack. \param a_Val object to push into the stack. \throw nothrow */ void push(const TValueType& a_Val) { m_Stack.push(a_Val); } /** \brief Return the number of stored elements. */ unsigned size() const { return (unsigned)m_Stack.size(); } /** \brief Returns true if stack is empty false otherwise. */ bool empty() const { return m_Stack.empty(); } /** \brief Return reference to the top object in the stack. The top object is the one pushed most recently. */ TValueType& top() { return m_Stack.top(); } }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserBytecode.h0000644000175000017500000001053114522641732023000 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_BYTECODE_H #define MU_PARSER_BYTECODE_H #include #include #include #include #include "muParserDef.h" #include "muParserError.h" #include "muParserToken.h" /** \file \brief Definition of the parser bytecode class. */ namespace mu { struct SToken { ECmdCode Cmd; int StackPos; union { struct // SValData { value_type* ptr; value_type data; value_type data2; } Val; struct // SFunData { // Note: generic_fun_type is merely a placeholder. The real type could be // anything between gun_type1 and fun_type9. I can't use a void // pointer due to constraints in the ANSI standard which allows // data pointers and function pointers to differ in size. generic_fun_type ptr; int argc; int idx; } Fun; struct // SOprtData { value_type* ptr; int offset; } Oprt; }; }; /** \brief Bytecode implementation of the Math Parser. The bytecode contains the formula converted to revers polish notation stored in a continious memory area. Associated with this data are operator codes, variable pointers, constant values and function pointers. Those are necessary in order to calculate the result. All those data items will be casted to the underlying datatype of the bytecode. \author (C) 2004-2013 Ingo Berg */ class ParserByteCode { private: /** \brief Token type for internal use only. */ typedef ParserToken token_type; /** \brief Token vector for storing the RPN. */ typedef std::vector rpn_type; /** \brief Position in the Calculation array. */ unsigned m_iStackPos; /** \brief Maximum size needed for the stack. */ std::size_t m_iMaxStackSize; /** \brief The actual rpn storage. */ rpn_type m_vRPN; bool m_bEnableOptimizer; void ConstantFolding(ECmdCode a_Oprt); public: ParserByteCode(); ParserByteCode(const ParserByteCode& a_ByteCode); ParserByteCode& operator=(const ParserByteCode& a_ByteCode); void Assign(const ParserByteCode& a_ByteCode); void AddVar(value_type* a_pVar); void AddVal(value_type a_fVal); void AddOp(ECmdCode a_Oprt); void AddIfElse(ECmdCode a_Oprt); void AddAssignOp(value_type* a_pVar); void AddFun(generic_fun_type a_pFun, int a_iArgc); void AddBulkFun(generic_fun_type a_pFun, int a_iArgc); void AddStrFun(generic_fun_type a_pFun, int a_iArgc, int a_iIdx); void EnableOptimizer(bool bStat); void Finalize(); void clear(); std::size_t GetMaxStackSize() const; std::size_t GetSize() const; const SToken* GetBase() const; void AsciiDump(); }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserTemplateMagic.h0000644000175000017500000000603514522641732023762 0ustar tzafrirctzafrirc#ifndef MU_PARSER_TEMPLATE_MAGIC_H #define MU_PARSER_TEMPLATE_MAGIC_H #include #include "muParserError.h" namespace mu { //----------------------------------------------------------------------------------------------- // // Compile time type detection // //----------------------------------------------------------------------------------------------- /** \brief A class singling out integer types at compile time using template meta programming. */ template struct TypeInfo { static bool IsInteger() { return false; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; template<> struct TypeInfo { static bool IsInteger() { return true; } }; //----------------------------------------------------------------------------------------------- // // Standard math functions with dummy overload for integer types // //----------------------------------------------------------------------------------------------- /** \brief A template class for providing wrappers for essential math functions. This template is spezialized for several types in order to provide a unified interface for parser internal math function calls regardless of the data type. */ template struct MathImpl { static T Sin(T v) { return sin(v); } static T Cos(T v) { return cos(v); } static T Tan(T v) { return tan(v); } static T ASin(T v) { return asin(v); } static T ACos(T v) { return acos(v); } static T ATan(T v) { return atan(v); } static T ATan2(T v1, T v2) { return atan2(v1, v2); } static T Sinh(T v) { return sinh(v); } static T Cosh(T v) { return cosh(v); } static T Tanh(T v) { return tanh(v); } static T ASinh(T v) { return log(v + sqrt(v * v + 1)); } static T ACosh(T v) { return log(v + sqrt(v * v - 1)); } static T ATanh(T v) { return ((T)0.5 * log((1 + v) / (1 - v))); } static T Log(T v) { return log(v); } static T Log2(T v) { return log(v) / log((T)2); } // Logarithm base 2 static T Log10(T v) { return log10(v); } // Logarithm base 10 static T Exp(T v) { return exp(v); } static T Abs(T v) { return (v >= 0) ? v : -v; } static T Sqrt(T v) { return sqrt(v); } static T Rint(T v) { return floor(v + (T)0.5); } static T Sign(T v) { return (T)((v < 0) ? -1 : (v > 0) ? 1 : 0); } static T Pow(T v1, T v2) { return std::pow(v1, v2); } }; } // namespace mu #endif mstflint-4.26.0/ext_libs/muparser/muParserFixes.h0000644000175000017500000000453214522641732022324 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2013 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef MU_PARSER_FIXES_H #define MU_PARSER_FIXES_H /** \file \brief This file contains compatibility fixes for some platforms. */ // // Compatibility fixes // //--------------------------------------------------------------------------- // // Intel Compiler // //--------------------------------------------------------------------------- #ifdef __INTEL_COMPILER // remark #981: operands are evaluated in unspecified order // disabled -> completely pointless if the functions do not have side effects // #pragma warning(disable : 981) // remark #383: value copied to temporary, reference to temporary used #pragma warning(disable : 383) // remark #1572: floating-point equality and inequality comparisons are unreliable // disabled -> everyone knows it, the parser passes this problem // deliberately to the user #pragma warning(disable : 1572) #endif #endif // include guard mstflint-4.26.0/ext_libs/muparser/muParserBase.cpp0000644000175000017500000022141014522641732022447 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "muParserBase.h" #include "muParserTemplateMagic.h" //--- Standard includes ------------------------------------------------------------------------ #include #include #include #include #include #include #include #include #ifdef MUP_USE_OPENMP #include #endif using namespace std; /** \file \brief This file contains the basic implementation of the muparser engine. */ namespace mu { std::locale ParserBase::s_locale = std::locale(std::locale::classic(), new change_dec_sep('.')); bool ParserBase::g_DbgDumpCmdCode = false; bool ParserBase::g_DbgDumpStack = false; //------------------------------------------------------------------------------ /** \brief Identifiers for built in binary operators. When defining custom binary operators with #AddOprt(...) make sure not to choose names conflicting with these definitions. */ const char_type* ParserBase::c_DefaultOprt[] = {_T("<="), _T(">="), _T("!="), _T("=="), _T("<"), _T(">"), _T("+"), _T("-"), _T("*"), _T("/"), _T("^"), _T("&&"), _T("||"), _T("="), _T("("), _T(")"), _T("?"), _T(":"), 0}; //------------------------------------------------------------------------------ /** \brief Constructor. \param a_szFormula the formula to interpret. \throw ParserException if a_szFormula is null. */ ParserBase::ParserBase() : m_pParseFormula(&ParserBase::ParseString), m_vRPN(), m_vStringBuf(), m_pTokenReader(), m_FunDef(), m_PostOprtDef(), m_InfixOprtDef(), m_OprtDef(), m_ConstDef(), m_StrVarDef(), m_VarDef(), m_bBuiltInOp(true), m_sNameChars(), m_sOprtChars(), m_sInfixOprtChars(), m_nIfElseCounter(0), m_vStackBuffer(), m_nFinalResultIdx(0) { InitTokenReader(); } //--------------------------------------------------------------------------- /** \brief Copy constructor. The parser can be safely copy constructed but the bytecode is reset during copy construction. */ ParserBase::ParserBase(const ParserBase& a_Parser) : m_pParseFormula(&ParserBase::ParseString), m_vRPN(), m_vStringBuf(), m_pTokenReader(), m_FunDef(), m_PostOprtDef(), m_InfixOprtDef(), m_OprtDef(), m_ConstDef(), m_StrVarDef(), m_VarDef(), m_bBuiltInOp(true), m_sNameChars(), m_sOprtChars(), m_sInfixOprtChars(), m_nIfElseCounter(0) { m_pTokenReader.reset(new token_reader_type(this)); Assign(a_Parser); } //--------------------------------------------------------------------------- ParserBase::~ParserBase() {} //--------------------------------------------------------------------------- /** \brief Assignment operator. Implemented by calling Assign(a_Parser). Self assignment is suppressed. \param a_Parser Object to copy to this. \return *this \throw nothrow */ ParserBase& ParserBase::operator=(const ParserBase& a_Parser) { Assign(a_Parser); return *this; } //--------------------------------------------------------------------------- /** \brief Copy state of a parser object to this. Clears Variables and Functions of this parser. Copies the states of all internal variables. Resets parse function to string parse mode. \param a_Parser the source object. */ void ParserBase::Assign(const ParserBase& a_Parser) { if (&a_Parser == this) return; // Don't copy bytecode instead cause the parser to create new bytecode // by resetting the parse function. ReInit(); m_ConstDef = a_Parser.m_ConstDef; // Copy user define constants m_VarDef = a_Parser.m_VarDef; // Copy user defined variables m_bBuiltInOp = a_Parser.m_bBuiltInOp; m_vStringBuf = a_Parser.m_vStringBuf; m_vStackBuffer = a_Parser.m_vStackBuffer; m_nFinalResultIdx = a_Parser.m_nFinalResultIdx; m_StrVarDef = a_Parser.m_StrVarDef; m_vStringVarBuf = a_Parser.m_vStringVarBuf; m_nIfElseCounter = a_Parser.m_nIfElseCounter; m_pTokenReader.reset(a_Parser.m_pTokenReader->Clone(this)); // Copy function and operator callbacks m_FunDef = a_Parser.m_FunDef; // Copy function definitions m_PostOprtDef = a_Parser.m_PostOprtDef; // post value unary operators m_InfixOprtDef = a_Parser.m_InfixOprtDef; // unary operators for infix notation m_OprtDef = a_Parser.m_OprtDef; // binary operators m_sNameChars = a_Parser.m_sNameChars; m_sOprtChars = a_Parser.m_sOprtChars; m_sInfixOprtChars = a_Parser.m_sInfixOprtChars; } //--------------------------------------------------------------------------- /** \brief Set the decimal separator. \param cDecSep Decimal separator as a character value. \sa SetThousandsSep By default muparser uses the "C" locale. The decimal separator of this locale is overwritten by the one provided here. */ void ParserBase::SetDecSep(char_type cDecSep) { char_type cThousandsSep = std::use_facet >(s_locale).thousands_sep(); s_locale = std::locale(std::locale("C"), new change_dec_sep(cDecSep, cThousandsSep)); } //--------------------------------------------------------------------------- /** \brief Sets the thousands operator. \param cThousandsSep The thousands separator as a character \sa SetDecSep By default muparser uses the "C" locale. The thousands separator of this locale is overwritten by the one provided here. */ void ParserBase::SetThousandsSep(char_type cThousandsSep) { char_type cDecSep = std::use_facet >(s_locale).decimal_point(); s_locale = std::locale(std::locale("C"), new change_dec_sep(cDecSep, cThousandsSep)); } //--------------------------------------------------------------------------- /** \brief Resets the locale. The default locale used "." as decimal separator, no thousands separator and "," as function argument separator. */ void ParserBase::ResetLocale() { s_locale = std::locale(std::locale("C"), new change_dec_sep('.')); SetArgSep(','); } //--------------------------------------------------------------------------- /** \brief Initialize the token reader. Create new token reader object and submit pointers to function, operator, constant and variable definitions. \post m_pTokenReader.get()!=0 \throw nothrow */ void ParserBase::InitTokenReader() { m_pTokenReader.reset(new token_reader_type(this)); } //--------------------------------------------------------------------------- /** \brief Reset parser to string parsing mode and clear internal buffers. Clear bytecode, reset the token reader. \throw nothrow */ void ParserBase::ReInit() const { m_pParseFormula = &ParserBase::ParseString; m_vStringBuf.clear(); m_vRPN.clear(); m_pTokenReader->ReInit(); m_nIfElseCounter = 0; } //--------------------------------------------------------------------------- void ParserBase::OnDetectVar(string_type* /*pExpr*/, int& /*nStart*/, int& /*nEnd*/) {} //--------------------------------------------------------------------------- /** \brief Returns the version of muparser. \param eInfo A flag indicating whether the full version info should be returned or not. Format is as follows: "MAJOR.MINOR (COMPILER_FLAGS)" The COMPILER_FLAGS are returned only if eInfo==pviFULL. */ string_type ParserBase::GetVersion(EParserVersionInfo eInfo) const { stringstream_type ss; ss << MUP_VERSION; if (eInfo == pviFULL) { ss << _T(" (") << MUP_VERSION_DATE; ss << std::dec << _T("; ") << sizeof(void*) * 8 << _T("BIT"); #ifdef _DEBUG ss << _T("; DEBUG"); #else ss << _T("; RELEASE"); #endif #ifdef _UNICODE ss << _T("; UNICODE"); #else #ifdef _MBCS ss << _T("; MBCS"); #else ss << _T("; ASCII"); #endif #endif #ifdef MUP_USE_OPENMP ss << _T("; OPENMP"); //#else // ss << _T("; NO_OPENMP"); #endif #if defined(MUP_MATH_EXCEPTIONS) ss << _T("; MATHEXC"); //#else // ss << _T("; NO_MATHEXC"); #endif ss << _T(")"); } return ss.str(); } //--------------------------------------------------------------------------- /** \brief Add a value parsing function. When parsing an expression muParser tries to detect values in the expression string using different valident callbacks. Thus it's possible to parse for hex values, binary values and floating point values. */ void ParserBase::AddValIdent(identfun_type a_pCallback) { m_pTokenReader->AddValIdent(a_pCallback); } //--------------------------------------------------------------------------- /** \brief Set a function that can create variable pointer for unknown expression variables. \param a_pFactory A pointer to the variable factory. \param pUserData A user defined context pointer. */ void ParserBase::SetVarFactory(facfun_type a_pFactory, void* pUserData) { m_pTokenReader->SetVarCreator(a_pFactory, pUserData); } //--------------------------------------------------------------------------- /** \brief Add a function or operator callback to the parser. */ void ParserBase::AddCallback(const string_type& a_strName, const ParserCallback& a_Callback, funmap_type& a_Storage, const char_type* a_szCharSet) { if (a_Callback.GetAddr() == 0) Error(ecINVALID_FUN_PTR); const funmap_type* pFunMap = &a_Storage; // Check for conflicting operator or function names if (pFunMap != &m_FunDef && m_FunDef.find(a_strName) != m_FunDef.end()) Error(ecNAME_CONFLICT, -1, a_strName); if (pFunMap != &m_PostOprtDef && m_PostOprtDef.find(a_strName) != m_PostOprtDef.end()) Error(ecNAME_CONFLICT, -1, a_strName); if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_InfixOprtDef.find(a_strName) != m_InfixOprtDef.end()) Error(ecNAME_CONFLICT, -1, a_strName); if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_OprtDef.find(a_strName) != m_OprtDef.end()) Error(ecNAME_CONFLICT, -1, a_strName); CheckOprt(a_strName, a_Callback, a_szCharSet); a_Storage[a_strName] = a_Callback; ReInit(); } //--------------------------------------------------------------------------- /** \brief Check if a name contains invalid characters. \throw ParserException if the name contains invalid characters. */ void ParserBase::CheckOprt(const string_type& a_sName, const ParserCallback& a_Callback, const string_type& a_szCharSet) const { if (!a_sName.length() || (a_sName.find_first_not_of(a_szCharSet) != string_type::npos) || (a_sName[0] >= '0' && a_sName[0] <= '9')) { switch (a_Callback.GetCode()) { case cmOPRT_POSTFIX: Error(ecINVALID_POSTFIX_IDENT, -1, a_sName); case cmOPRT_INFIX: Error(ecINVALID_INFIX_IDENT, -1, a_sName); default: Error(ecINVALID_NAME, -1, a_sName); } } } //--------------------------------------------------------------------------- /** \brief Check if a name contains invalid characters. \throw ParserException if the name contains invalid characters. */ void ParserBase::CheckName(const string_type& a_sName, const string_type& a_szCharSet) const { if (!a_sName.length() || (a_sName.find_first_not_of(a_szCharSet) != string_type::npos) || (a_sName[0] >= '0' && a_sName[0] <= '9')) { Error(ecINVALID_NAME); } } //--------------------------------------------------------------------------- /** \brief Set the formula. \param a_strFormula Formula as string_type \throw ParserException in case of syntax errors. Triggers first time calculation thus the creation of the bytecode and scanning of used variables. */ void ParserBase::SetExpr(const string_type& a_sExpr) { // Check locale compatibility std::locale loc; if (m_pTokenReader->GetArgSep() == std::use_facet >(loc).decimal_point()) Error(ecLOCALE); // 20060222: Bugfix for Borland-Kylix: // adding a space to the expression will keep Borlands KYLIX from going wild // when calling tellg on a stringstream created from the expression after // reading a value at the end of an expression. (mu::Parser::IsVal function) // (tellg returns -1 otherwise causing the parser to ignore the value) string_type sBuf(a_sExpr + _T(" ")); m_pTokenReader->SetFormula(sBuf); ReInit(); } //--------------------------------------------------------------------------- /** \brief Get the default symbols used for the built in operators. \sa c_DefaultOprt */ const char_type** ParserBase::GetOprtDef() const { return (const char_type**)(&c_DefaultOprt[0]); } //--------------------------------------------------------------------------- /** \brief Define the set of valid characters to be used in names of functions, variables, constants. */ void ParserBase::DefineNameChars(const char_type* a_szCharset) { m_sNameChars = a_szCharset; } //--------------------------------------------------------------------------- /** \brief Define the set of valid characters to be used in names of binary operators and postfix operators. */ void ParserBase::DefineOprtChars(const char_type* a_szCharset) { m_sOprtChars = a_szCharset; } //--------------------------------------------------------------------------- /** \brief Define the set of valid characters to be used in names of infix operators. */ void ParserBase::DefineInfixOprtChars(const char_type* a_szCharset) { m_sInfixOprtChars = a_szCharset; } //--------------------------------------------------------------------------- /** \brief Virtual function that defines the characters allowed in name identifiers. \sa #ValidOprtChars, #ValidPrefixOprtChars */ const char_type* ParserBase::ValidNameChars() const { assert(m_sNameChars.size()); return m_sNameChars.c_str(); } //--------------------------------------------------------------------------- /** \brief Virtual function that defines the characters allowed in operator definitions. \sa #ValidNameChars, #ValidPrefixOprtChars */ const char_type* ParserBase::ValidOprtChars() const { assert(m_sOprtChars.size()); return m_sOprtChars.c_str(); } //--------------------------------------------------------------------------- /** \brief Virtual function that defines the characters allowed in infix operator definitions. \sa #ValidNameChars, #ValidOprtChars */ const char_type* ParserBase::ValidInfixOprtChars() const { assert(m_sInfixOprtChars.size()); return m_sInfixOprtChars.c_str(); } //--------------------------------------------------------------------------- /** \brief Add a user defined operator. \post Will reset the Parser to string parsing mode. */ void ParserBase::DefinePostfixOprt(const string_type& a_sName, fun_type1 a_pFun, bool a_bAllowOpt) { AddCallback( a_sName, ParserCallback(a_pFun, a_bAllowOpt, prPOSTFIX, cmOPRT_POSTFIX), m_PostOprtDef, ValidOprtChars()); } //--------------------------------------------------------------------------- /** \brief Initialize user defined functions. Calls the virtual functions InitFun(), InitConst() and InitOprt(). */ void ParserBase::Init() { InitCharSets(); InitFun(); InitConst(); InitOprt(); } //--------------------------------------------------------------------------- /** \brief Add a user defined operator. \post Will reset the Parser to string parsing mode. \param [in] a_sName operator Identifier \param [in] a_pFun Operator callback function \param [in] a_iPrec Operator Precedence (default=prSIGN) \param [in] a_bAllowOpt True if operator is volatile (default=false) \sa EPrec */ void ParserBase::DefineInfixOprt(const string_type& a_sName, fun_type1 a_pFun, int a_iPrec, bool a_bAllowOpt) { AddCallback( a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, cmOPRT_INFIX), m_InfixOprtDef, ValidInfixOprtChars()); } //--------------------------------------------------------------------------- /** \brief Define a binary operator. \param [in] a_sName The identifier of the operator. \param [in] a_pFun Pointer to the callback function. \param [in] a_iPrec Precedence of the operator. \param [in] a_eAssociativity The associativity of the operator. \param [in] a_bAllowOpt If this is true the operator may be optimized away. Adds a new Binary operator the the parser instance. */ void ParserBase::DefineOprt(const string_type& a_sName, fun_type2 a_pFun, unsigned a_iPrec, EOprtAssociativity a_eAssociativity, bool a_bAllowOpt) { // Check for conflicts with built in operator names for (int i = 0; m_bBuiltInOp && i < cmENDIF; ++i) if (a_sName == string_type(c_DefaultOprt[i])) Error(ecBUILTIN_OVERLOAD, -1, a_sName); AddCallback(a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, a_eAssociativity), m_OprtDef, ValidOprtChars()); } //--------------------------------------------------------------------------- /** \brief Define a new string constant. \param [in] a_strName The name of the constant. \param [in] a_strVal the value of the constant. */ void ParserBase::DefineStrConst(const string_type& a_strName, const string_type& a_strVal) { // Test if a constant with that names already exists if (m_StrVarDef.find(a_strName) != m_StrVarDef.end()) Error(ecNAME_CONFLICT); CheckName(a_strName, ValidNameChars()); m_vStringVarBuf.push_back(a_strVal); // Store variable string in internal buffer m_StrVarDef[a_strName] = m_vStringVarBuf.size() - 1; // bind buffer index to variable name ReInit(); } //--------------------------------------------------------------------------- /** \brief Add a user defined variable. \param [in] a_sName the variable name \param [in] a_pVar A pointer to the variable value. \post Will reset the Parser to string parsing mode. \throw ParserException in case the name contains invalid signs or a_pVar is NULL. */ void ParserBase::DefineVar(const string_type& a_sName, value_type* a_pVar) { if (a_pVar == 0) Error(ecINVALID_VAR_PTR); // Test if a constant with that names already exists if (m_ConstDef.find(a_sName) != m_ConstDef.end()) Error(ecNAME_CONFLICT); CheckName(a_sName, ValidNameChars()); m_VarDef[a_sName] = a_pVar; ReInit(); } //--------------------------------------------------------------------------- /** \brief Add a user defined constant. \param [in] a_sName The name of the constant. \param [in] a_fVal the value of the constant. \post Will reset the Parser to string parsing mode. \throw ParserException in case the name contains invalid signs. */ void ParserBase::DefineConst(const string_type& a_sName, value_type a_fVal) { CheckName(a_sName, ValidNameChars()); m_ConstDef[a_sName] = a_fVal; ReInit(); } //--------------------------------------------------------------------------- /** \brief Get operator priority. \throw ParserException if a_Oprt is no operator code */ int ParserBase::GetOprtPrecedence(const token_type& a_Tok) const { switch (a_Tok.GetCode()) { // built in operators case cmEND: return -5; case cmARG_SEP: return -4; case cmASSIGN: return -1; case cmELSE: case cmIF: return 0; case cmLAND: return prLAND; case cmLOR: return prLOR; case cmLT: case cmGT: case cmLE: case cmGE: case cmNEQ: case cmEQ: return prCMP; case cmADD: case cmSUB: return prADD_SUB; case cmMUL: case cmDIV: return prMUL_DIV; case cmPOW: return prPOW; // user defined binary operators case cmOPRT_INFIX: case cmOPRT_BIN: return a_Tok.GetPri(); default: Error(ecINTERNAL_ERROR, 5); return 999; } } //--------------------------------------------------------------------------- /** \brief Get operator priority. \throw ParserException if a_Oprt is no operator code */ EOprtAssociativity ParserBase::GetOprtAssociativity(const token_type& a_Tok) const { switch (a_Tok.GetCode()) { case cmASSIGN: case cmLAND: case cmLOR: case cmLT: case cmGT: case cmLE: case cmGE: case cmNEQ: case cmEQ: case cmADD: case cmSUB: case cmMUL: case cmDIV: return oaLEFT; case cmPOW: return oaRIGHT; case cmOPRT_BIN: return a_Tok.GetAssociativity(); default: return oaNONE; } } //--------------------------------------------------------------------------- /** \brief Return a map containing the used variables only. */ const varmap_type& ParserBase::GetUsedVar() const { try { m_pTokenReader->IgnoreUndefVar(true); CreateRPN(); // try to create bytecode, but don't use it for any further calculations since it // may contain references to nonexisting variables. m_pParseFormula = &ParserBase::ParseString; m_pTokenReader->IgnoreUndefVar(false); } catch (exception_type& /*e*/) { // Make sure to stay in string parse mode, dont call ReInit() // because it deletes the array with the used variables m_pParseFormula = &ParserBase::ParseString; m_pTokenReader->IgnoreUndefVar(false); throw; } return m_pTokenReader->GetUsedVar(); } //--------------------------------------------------------------------------- /** \brief Return a map containing the used variables only. */ const varmap_type& ParserBase::GetVar() const { return m_VarDef; } //--------------------------------------------------------------------------- /** \brief Return a map containing all parser constants. */ const valmap_type& ParserBase::GetConst() const { return m_ConstDef; } //--------------------------------------------------------------------------- /** \brief Return prototypes of all parser functions. \return #m_FunDef \sa FunProt \throw nothrow The return type is a map of the public type #funmap_type containing the prototype definitions for all numerical parser functions. String functions are not part of this map. The Prototype definition is encapsulated in objects of the class FunProt one per parser function each associated with function names via a map construct. */ const funmap_type& ParserBase::GetFunDef() const { return m_FunDef; } //--------------------------------------------------------------------------- /** \brief Retrieve the formula. */ const string_type& ParserBase::GetExpr() const { return m_pTokenReader->GetExpr(); } //--------------------------------------------------------------------------- /** \brief Execute a function that takes a single string argument. \param a_FunTok Function token. \throw exception_type If the function token is not a string function */ ParserBase::token_type ParserBase::ApplyStrFunc(const token_type& a_FunTok, const std::vector& a_vArg) const { if (a_vArg.back().GetCode() != cmSTRING) Error(ecSTRING_EXPECTED, m_pTokenReader->GetPos(), a_FunTok.GetAsString()); token_type valTok; generic_fun_type pFunc = a_FunTok.GetFuncAddr(); assert(pFunc); try { // Check function arguments; write dummy value into valtok to represent the result switch (a_FunTok.GetArgCount()) { case 0: valTok.SetVal(1); a_vArg[0].GetAsString(); break; case 1: valTok.SetVal(1); a_vArg[1].GetAsString(); a_vArg[0].GetVal(); break; case 2: valTok.SetVal(1); a_vArg[2].GetAsString(); a_vArg[1].GetVal(); a_vArg[0].GetVal(); break; default: Error(ecINTERNAL_ERROR); } } catch (ParserError&) { Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), a_FunTok.GetAsString()); } // string functions won't be optimized m_vRPN.AddStrFun(pFunc, a_FunTok.GetArgCount(), a_vArg.back().GetIdx()); // Push dummy value representing the function result to the stack return valTok; } //--------------------------------------------------------------------------- /** \brief Apply a function token. \param iArgCount Number of Arguments actually gathered used only for multiarg functions. \post The result is pushed to the value stack \post The function token is removed from the stack \throw exception_type if Argument count does not match function requirements. */ void ParserBase::ApplyFunc(ParserStack& a_stOpt, ParserStack& a_stVal, int a_iArgCount) const { assert(m_pTokenReader.get()); // Operator stack empty or does not contain tokens with callback functions if (a_stOpt.empty() || a_stOpt.top().GetFuncAddr() == 0) return; token_type funTok = a_stOpt.pop(); assert(funTok.GetFuncAddr()); // Binary operators must rely on their internal operator number // since counting of operators relies on commas for function arguments // binary operators do not have commas in their expression int iArgCount = (funTok.GetCode() == cmOPRT_BIN) ? funTok.GetArgCount() : a_iArgCount; // determine how many parameters the function needs. To remember iArgCount includes the // string parameter whilst GetArgCount() counts only numeric parameters. int iArgRequired = funTok.GetArgCount() + ((funTok.GetType() == tpSTR) ? 1 : 0); // Thats the number of numerical parameters int iArgNumerical = iArgCount - ((funTok.GetType() == tpSTR) ? 1 : 0); if (funTok.GetCode() == cmFUNC_STR && iArgCount - iArgNumerical > 1) Error(ecINTERNAL_ERROR); if (funTok.GetArgCount() >= 0 && iArgCount > iArgRequired) Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString()); if (funTok.GetCode() != cmOPRT_BIN && iArgCount < iArgRequired) Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString()); if (funTok.GetCode() == cmFUNC_STR && iArgCount > iArgRequired) Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString()); // Collect the numeric function arguments from the value stack and store them // in a vector std::vector stArg; for (int i = 0; i < iArgNumerical; ++i) { stArg.push_back(a_stVal.pop()); if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR) Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString()); } switch ((int)funTok.GetCode()) { case cmFUNC_STR: stArg.push_back(a_stVal.pop()); if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR) Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString()); ApplyStrFunc(funTok, stArg); break; case cmFUNC_BULK: m_vRPN.AddBulkFun(funTok.GetFuncAddr(), (int)stArg.size()); break; case cmOPRT_BIN: case cmOPRT_POSTFIX: case cmOPRT_INFIX: case cmFUNC: if (funTok.GetArgCount() == -1 && iArgCount == 0) Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos(), funTok.GetAsString()); m_vRPN.AddFun(funTok.GetFuncAddr(), (funTok.GetArgCount() == -1) ? -iArgNumerical : iArgNumerical); break; } // Push dummy value representing the function result to the stack token_type token; token.SetVal(1); a_stVal.push(token); } //--------------------------------------------------------------------------- void ParserBase::ApplyIfElse(ParserStack& a_stOpt, ParserStack& a_stVal) const { // Check if there is an if Else clause to be calculated while (a_stOpt.size() && a_stOpt.top().GetCode() == cmELSE) { token_type opElse = a_stOpt.pop(); MUP_ASSERT(a_stOpt.size() > 0); // Take the value associated with the else branch from the value stack token_type vVal2 = a_stVal.pop(); MUP_ASSERT(a_stOpt.size() > 0); MUP_ASSERT(a_stVal.size() >= 2); // it then else is a ternary operator Pop all three values from the value s // tack and just return the right value token_type vVal1 = a_stVal.pop(); token_type vExpr = a_stVal.pop(); a_stVal.push((vExpr.GetVal() != 0) ? vVal1 : vVal2); token_type opIf = a_stOpt.pop(); MUP_ASSERT(opElse.GetCode() == cmELSE); MUP_ASSERT(opIf.GetCode() == cmIF); m_vRPN.AddIfElse(cmENDIF); } // while pending if-else-clause found } //--------------------------------------------------------------------------- /** \brief Performs the necessary steps to write code for the execution of binary operators into the bytecode. */ void ParserBase::ApplyBinOprt(ParserStack& a_stOpt, ParserStack& a_stVal) const { // is it a user defined binary operator? if (a_stOpt.top().GetCode() == cmOPRT_BIN) { ApplyFunc(a_stOpt, a_stVal, 2); } else { MUP_ASSERT(a_stVal.size() >= 2); token_type valTok1 = a_stVal.pop(), valTok2 = a_stVal.pop(), optTok = a_stOpt.pop(), resTok; if (valTok1.GetType() != valTok2.GetType() || (valTok1.GetType() == tpSTR && valTok2.GetType() == tpSTR)) Error(ecOPRT_TYPE_CONFLICT, m_pTokenReader->GetPos(), optTok.GetAsString()); if (optTok.GetCode() == cmASSIGN) { if (valTok2.GetCode() != cmVAR) Error(ecUNEXPECTED_OPERATOR, -1, _T("=")); m_vRPN.AddAssignOp(valTok2.GetVar()); } else m_vRPN.AddOp(optTok.GetCode()); resTok.SetVal(1); a_stVal.push(resTok); } } //--------------------------------------------------------------------------- /** \brief Apply a binary operator. \param a_stOpt The operator stack \param a_stVal The value stack */ void ParserBase::ApplyRemainingOprt(ParserStack& stOpt, ParserStack& stVal) const { while (stOpt.size() && stOpt.top().GetCode() != cmBO && stOpt.top().GetCode() != cmIF) { token_type tok = stOpt.top(); switch (tok.GetCode()) { case cmOPRT_INFIX: case cmOPRT_BIN: case cmLE: case cmGE: case cmNEQ: case cmEQ: case cmLT: case cmGT: case cmADD: case cmSUB: case cmMUL: case cmDIV: case cmPOW: case cmLAND: case cmLOR: case cmASSIGN: if (stOpt.top().GetCode() == cmOPRT_INFIX) ApplyFunc(stOpt, stVal, 1); else ApplyBinOprt(stOpt, stVal); break; case cmELSE: ApplyIfElse(stOpt, stVal); break; default: Error(ecINTERNAL_ERROR); } } } //--------------------------------------------------------------------------- /** \brief Parse the command code. \sa ParseString(...) Command code contains precalculated stack positions of the values and the associated operators. The Stack is filled beginning from index one the value at index zero is not used at all. */ value_type ParserBase::ParseCmdCode() const { return ParseCmdCodeBulk(0, 0); } //--------------------------------------------------------------------------- /** \brief Evaluate the RPN. \param nOffset The offset added to variable addresses (for bulk mode) \param nThreadID OpenMP Thread id of the calling thread */ value_type ParserBase::ParseCmdCodeBulk(int nOffset, int nThreadID) const { assert(nThreadID <= s_MaxNumOpenMPThreads); // Note: The check for nOffset==0 and nThreadID here is not necessary but // brings a minor performance gain when not in bulk mode. value_type* Stack = ((nOffset == 0) && (nThreadID == 0)) ? &m_vStackBuffer[0] : &m_vStackBuffer[nThreadID * (m_vStackBuffer.size() / s_MaxNumOpenMPThreads)]; value_type buf; int sidx(0); for (const SToken* pTok = m_vRPN.GetBase(); pTok->Cmd != cmEND; ++pTok) { switch (pTok->Cmd) { // built in binary operators case cmLE: --sidx; Stack[sidx] = Stack[sidx] <= Stack[sidx + 1]; continue; case cmGE: --sidx; Stack[sidx] = Stack[sidx] >= Stack[sidx + 1]; continue; case cmNEQ: --sidx; Stack[sidx] = Stack[sidx] != Stack[sidx + 1]; continue; case cmEQ: --sidx; Stack[sidx] = Stack[sidx] == Stack[sidx + 1]; continue; case cmLT: --sidx; Stack[sidx] = Stack[sidx] < Stack[sidx + 1]; continue; case cmGT: --sidx; Stack[sidx] = Stack[sidx] > Stack[sidx + 1]; continue; case cmADD: --sidx; Stack[sidx] += Stack[1 + sidx]; continue; case cmSUB: --sidx; Stack[sidx] -= Stack[1 + sidx]; continue; case cmMUL: --sidx; Stack[sidx] *= Stack[1 + sidx]; continue; case cmDIV: --sidx; #if defined(MUP_MATH_EXCEPTIONS) if (Stack[1 + sidx] == 0) Error(ecDIV_BY_ZERO); #endif Stack[sidx] /= Stack[1 + sidx]; continue; case cmPOW: --sidx; Stack[sidx] = MathImpl::Pow(Stack[sidx], Stack[1 + sidx]); continue; case cmLAND: --sidx; Stack[sidx] = Stack[sidx] && Stack[sidx + 1]; continue; case cmLOR: --sidx; Stack[sidx] = Stack[sidx] || Stack[sidx + 1]; continue; case cmASSIGN: // Bugfix for Bulkmode: // for details see: // https://groups.google.com/forum/embed/?place=forum/muparser-dev&showsearch=true&showpopout=true&showtabs=false&parenturl=http://muparser.beltoforion.de/mup_forum.html&afterlogin&pli=1#!topic/muparser-dev/szgatgoHTws --sidx; Stack[sidx] = *(pTok->Oprt.ptr + nOffset) = Stack[sidx + 1]; continue; // original code: //--sidx; Stack[sidx] = *pTok->Oprt.ptr = Stack[sidx+1]; continue; // case cmBO: // unused, listed for compiler optimization purposes // case cmBC: // MUP_FAIL(INVALID_CODE_IN_BYTECODE); // continue; case cmIF: if (Stack[sidx--] == 0) pTok += pTok->Oprt.offset; continue; case cmELSE: pTok += pTok->Oprt.offset; continue; case cmENDIF: continue; // case cmARG_SEP: // MUP_FAIL(INVALID_CODE_IN_BYTECODE); // continue; // value and variable tokens case cmVAR: Stack[++sidx] = *(pTok->Val.ptr + nOffset); continue; case cmVAL: Stack[++sidx] = pTok->Val.data2; continue; case cmVARPOW2: buf = *(pTok->Val.ptr + nOffset); Stack[++sidx] = buf * buf; continue; case cmVARPOW3: buf = *(pTok->Val.ptr + nOffset); Stack[++sidx] = buf * buf * buf; continue; case cmVARPOW4: buf = *(pTok->Val.ptr + nOffset); Stack[++sidx] = buf * buf * buf * buf; continue; case cmVARMUL: Stack[++sidx] = *(pTok->Val.ptr + nOffset) * pTok->Val.data + pTok->Val.data2; continue; // Next is treatment of numeric functions case cmFUNC: { int iArgCount = pTok->Fun.argc; // switch according to argument count switch (iArgCount) { case 0: sidx += 1; Stack[sidx] = (*(fun_type0)pTok->Fun.ptr)(); continue; case 1: Stack[sidx] = (*(fun_type1)pTok->Fun.ptr)(Stack[sidx]); continue; case 2: sidx -= 1; Stack[sidx] = (*(fun_type2)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1]); continue; case 3: sidx -= 2; Stack[sidx] = (*(fun_type3)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2]); continue; case 4: sidx -= 3; Stack[sidx] = (*(fun_type4)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3]); continue; case 5: sidx -= 4; Stack[sidx] = (*(fun_type5)pTok->Fun.ptr)( Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4]); continue; case 6: sidx -= 5; Stack[sidx] = (*(fun_type6)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5]); continue; case 7: sidx -= 6; Stack[sidx] = (*(fun_type7)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6]); continue; case 8: sidx -= 7; Stack[sidx] = (*(fun_type8)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6], Stack[sidx + 7]); continue; case 9: sidx -= 8; Stack[sidx] = (*(fun_type9)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6], Stack[sidx + 7], Stack[sidx + 8]); continue; case 10: sidx -= 9; Stack[sidx] = (*(fun_type10)pTok->Fun.ptr)(Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6], Stack[sidx + 7], Stack[sidx + 8], Stack[sidx + 9]); continue; default: if (iArgCount > 0) // function with variable arguments store the number as a negative value Error(ecINTERNAL_ERROR, 1); sidx -= -iArgCount - 1; Stack[sidx] = (*(multfun_type)pTok->Fun.ptr)(&Stack[sidx], -iArgCount); continue; } } // Next is treatment of string functions case cmFUNC_STR: { sidx -= pTok->Fun.argc - 1; // The index of the string argument in the string table int iIdxStack = pTok->Fun.idx; MUP_ASSERT(iIdxStack >= 0 && iIdxStack < (int)m_vStringBuf.size()); switch (pTok->Fun.argc) // switch according to argument count { case 0: Stack[sidx] = (*(strfun_type1)pTok->Fun.ptr)(m_vStringBuf[iIdxStack].c_str()); continue; case 1: Stack[sidx] = (*(strfun_type2)pTok->Fun.ptr)(m_vStringBuf[iIdxStack].c_str(), Stack[sidx]); continue; case 2: Stack[sidx] = (*(strfun_type3)pTok->Fun.ptr)(m_vStringBuf[iIdxStack].c_str(), Stack[sidx], Stack[sidx + 1]); continue; } continue; } case cmFUNC_BULK: { int iArgCount = pTok->Fun.argc; // switch according to argument count switch (iArgCount) { case 0: sidx += 1; Stack[sidx] = (*(bulkfun_type0)pTok->Fun.ptr)(nOffset, nThreadID); continue; case 1: Stack[sidx] = (*(bulkfun_type1)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx]); continue; case 2: sidx -= 1; Stack[sidx] = (*(bulkfun_type2)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1]); continue; case 3: sidx -= 2; Stack[sidx] = (*(bulkfun_type3)pTok->Fun.ptr)( nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2]); continue; case 4: sidx -= 3; Stack[sidx] = (*(bulkfun_type4)pTok->Fun.ptr)( nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3]); continue; case 5: sidx -= 4; Stack[sidx] = (*(bulkfun_type5)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4]); continue; case 6: sidx -= 5; Stack[sidx] = (*(bulkfun_type6)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5]); continue; case 7: sidx -= 6; Stack[sidx] = (*(bulkfun_type7)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6]); continue; case 8: sidx -= 7; Stack[sidx] = (*(bulkfun_type8)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6], Stack[sidx + 7]); continue; case 9: sidx -= 8; Stack[sidx] = (*(bulkfun_type9)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6], Stack[sidx + 7], Stack[sidx + 8]); continue; case 10: sidx -= 9; Stack[sidx] = (*(bulkfun_type10)pTok->Fun.ptr)(nOffset, nThreadID, Stack[sidx], Stack[sidx + 1], Stack[sidx + 2], Stack[sidx + 3], Stack[sidx + 4], Stack[sidx + 5], Stack[sidx + 6], Stack[sidx + 7], Stack[sidx + 8], Stack[sidx + 9]); continue; default: Error(ecINTERNAL_ERROR, 2); continue; } } default: Error(ecINTERNAL_ERROR, 3); return 0; } // switch CmdCode } // for all bytecode tokens return Stack[m_nFinalResultIdx]; } //--------------------------------------------------------------------------- void ParserBase::CreateRPN() const { if (!m_pTokenReader->GetExpr().length()) Error(ecUNEXPECTED_EOF, 0); ParserStack stOpt, stVal; ParserStack stArgCount; token_type opta, opt; // for storing operators token_type val, tval; // for storing value ReInit(); // The outermost counter counts the number of separated items // such as in "a=10,b=20,c=c+a" stArgCount.push(1); for (;;) { opt = m_pTokenReader->ReadNextToken(); switch (opt.GetCode()) { // // Next three are different kind of value entries // case cmSTRING: opt.SetIdx((int)m_vStringBuf.size()); // Assign buffer index to token stVal.push(opt); m_vStringBuf.push_back(opt.GetAsString()); // Store string in internal buffer break; case cmVAR: stVal.push(opt); m_vRPN.AddVar(static_cast(opt.GetVar())); break; case cmVAL: stVal.push(opt); m_vRPN.AddVal(opt.GetVal()); break; case cmELSE: m_nIfElseCounter--; if (m_nIfElseCounter < 0) Error(ecMISPLACED_COLON, m_pTokenReader->GetPos()); ApplyRemainingOprt(stOpt, stVal); m_vRPN.AddIfElse(cmELSE); stOpt.push(opt); break; case cmARG_SEP: if (stArgCount.empty()) Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos()); ++stArgCount.top(); // fallthrough intentional (no break!) case cmEND: ApplyRemainingOprt(stOpt, stVal); break; case cmBC: { // The argument count for parameterless functions is zero // by default an opening bracket sets parameter count to 1 // in preparation of arguments to come. If the last token // was an opening bracket we know better... if (opta.GetCode() == cmBO) --stArgCount.top(); ApplyRemainingOprt(stOpt, stVal); // Check if the bracket content has been evaluated completely if (stOpt.size() && stOpt.top().GetCode() == cmBO) { // if opt is ")" and opta is "(" the bracket has been evaluated, now its time to check // if there is either a function or a sign pending // neither the opening nor the closing bracket will be pushed back to // the operator stack // Check if a function is standing in front of the opening bracket, // if yes evaluate it afterwards check for infix operators assert(stArgCount.size()); int iArgCount = stArgCount.pop(); stOpt.pop(); // Take opening bracket from stack if (iArgCount > 1 && (stOpt.size() == 0 || (stOpt.top().GetCode() != cmFUNC && stOpt.top().GetCode() != cmFUNC_BULK && stOpt.top().GetCode() != cmFUNC_STR))) Error(ecUNEXPECTED_ARG, m_pTokenReader->GetPos()); // The opening bracket was popped from the stack now check if there // was a function before this bracket if (stOpt.size() && stOpt.top().GetCode() != cmOPRT_INFIX && stOpt.top().GetCode() != cmOPRT_BIN && stOpt.top().GetFuncAddr() != 0) { ApplyFunc(stOpt, stVal, iArgCount); } } } // if bracket content is evaluated break; // // Next are the binary operator entries // // case cmAND: // built in binary operators // case cmOR: // case cmXOR: case cmIF: m_nIfElseCounter++; // fallthrough intentional (no break!) case cmLAND: case cmLOR: case cmLT: case cmGT: case cmLE: case cmGE: case cmNEQ: case cmEQ: case cmADD: case cmSUB: case cmMUL: case cmDIV: case cmPOW: case cmASSIGN: case cmOPRT_BIN: // A binary operator (user defined or built in) has been found. while (stOpt.size() && stOpt.top().GetCode() != cmBO && stOpt.top().GetCode() != cmELSE && stOpt.top().GetCode() != cmIF) { int nPrec1 = GetOprtPrecedence(stOpt.top()), nPrec2 = GetOprtPrecedence(opt); if (stOpt.top().GetCode() == opt.GetCode()) { // Deal with operator associativity EOprtAssociativity eOprtAsct = GetOprtAssociativity(opt); if ((eOprtAsct == oaRIGHT && (nPrec1 <= nPrec2)) || (eOprtAsct == oaLEFT && (nPrec1 < nPrec2))) { break; } } else if (nPrec1 < nPrec2) { // In case the operators are not equal the precedence decides alone... break; } if (stOpt.top().GetCode() == cmOPRT_INFIX) ApplyFunc(stOpt, stVal, 1); else ApplyBinOprt(stOpt, stVal); } // while ( ... ) if (opt.GetCode() == cmIF) m_vRPN.AddIfElse(opt.GetCode()); // The operator can't be evaluated right now, push back to the operator stack stOpt.push(opt); break; // // Last section contains functions and operators implicitly mapped to functions // case cmBO: stArgCount.push(1); stOpt.push(opt); break; case cmOPRT_INFIX: case cmFUNC: case cmFUNC_BULK: case cmFUNC_STR: stOpt.push(opt); break; case cmOPRT_POSTFIX: stOpt.push(opt); ApplyFunc(stOpt, stVal, 1); // this is the postfix operator break; default: Error(ecINTERNAL_ERROR, 3); } // end of switch operator-token opta = opt; if (opt.GetCode() == cmEND) { m_vRPN.Finalize(); break; } if (ParserBase::g_DbgDumpStack) { StackDump(stVal, stOpt); m_vRPN.AsciiDump(); } } // while (true) if (ParserBase::g_DbgDumpCmdCode) m_vRPN.AsciiDump(); if (m_nIfElseCounter > 0) Error(ecMISSING_ELSE_CLAUSE); // get the last value (= final result) from the stack MUP_ASSERT(stArgCount.size() == 1); m_nFinalResultIdx = stArgCount.top(); if (m_nFinalResultIdx == 0) Error(ecINTERNAL_ERROR, 9); if (stVal.size() == 0) Error(ecEMPTY_EXPRESSION); if (stVal.top().GetType() != tpDBL) Error(ecSTR_RESULT); m_vStackBuffer.resize(m_vRPN.GetMaxStackSize() * s_MaxNumOpenMPThreads); } //--------------------------------------------------------------------------- /** \brief One of the two main parse functions. \sa ParseCmdCode(...) Parse expression from input string. Perform syntax checking and create bytecode. After parsing the string and creating the bytecode the function pointer #m_pParseFormula will be changed to the second parse routine the uses bytecode instead of string parsing. */ value_type ParserBase::ParseString() const { try { CreateRPN(); m_pParseFormula = &ParserBase::ParseCmdCode; return (this->*m_pParseFormula)(); } catch (ParserError& exc) { exc.SetFormula(m_pTokenReader->GetExpr()); throw; } } //--------------------------------------------------------------------------- /** \brief Create an error containing the parse error position. This function will create an Parser Exception object containing the error text and its position. \param a_iErrc [in] The error code of type #EErrorCodes. \param a_iPos [in] The position where the error was detected. \param a_strTok [in] The token string representation associated with the error. \throw ParserException always throws thats the only purpose of this function. */ void ParserBase::Error(EErrorCodes a_iErrc, int a_iPos, const string_type& a_sTok) const { throw exception_type(a_iErrc, a_sTok, m_pTokenReader->GetExpr(), a_iPos); } //------------------------------------------------------------------------------ /** \brief Clear all user defined variables. \throw nothrow Resets the parser to string parsing mode by calling #ReInit. */ void ParserBase::ClearVar() { m_VarDef.clear(); ReInit(); } //------------------------------------------------------------------------------ /** \brief Remove a variable from internal storage. \throw nothrow Removes a variable if it exists. If the Variable does not exist nothing will be done. */ void ParserBase::RemoveVar(const string_type& a_strVarName) { varmap_type::iterator item = m_VarDef.find(a_strVarName); if (item != m_VarDef.end()) { m_VarDef.erase(item); ReInit(); } } //------------------------------------------------------------------------------ /** \brief Clear all functions. \post Resets the parser to string parsing mode. \throw nothrow */ void ParserBase::ClearFun() { m_FunDef.clear(); ReInit(); } //------------------------------------------------------------------------------ /** \brief Clear all user defined constants. Both numeric and string constants will be removed from the internal storage. \post Resets the parser to string parsing mode. \throw nothrow */ void ParserBase::ClearConst() { m_ConstDef.clear(); m_StrVarDef.clear(); ReInit(); } //------------------------------------------------------------------------------ /** \brief Clear all user defined postfix operators. \post Resets the parser to string parsing mode. \throw nothrow */ void ParserBase::ClearPostfixOprt() { m_PostOprtDef.clear(); ReInit(); } //------------------------------------------------------------------------------ /** \brief Clear all user defined binary operators. \post Resets the parser to string parsing mode. \throw nothrow */ void ParserBase::ClearOprt() { m_OprtDef.clear(); ReInit(); } //------------------------------------------------------------------------------ /** \brief Clear the user defined Prefix operators. \post Resets the parser to string parser mode. \throw nothrow */ void ParserBase::ClearInfixOprt() { m_InfixOprtDef.clear(); ReInit(); } //------------------------------------------------------------------------------ /** \brief Enable or disable the formula optimization feature. \post Resets the parser to string parser mode. \throw nothrow */ void ParserBase::EnableOptimizer(bool a_bIsOn) { m_vRPN.EnableOptimizer(a_bIsOn); ReInit(); } //--------------------------------------------------------------------------- /** \brief Enable the dumping of bytecode and stack content on the console. \param bDumpCmd Flag to enable dumping of the current bytecode to the console. \param bDumpStack Flag to enable dumping of the stack content is written to the console. This function is for debug purposes only! */ void ParserBase::EnableDebugDump(bool bDumpCmd, bool bDumpStack) { ParserBase::g_DbgDumpCmdCode = bDumpCmd; ParserBase::g_DbgDumpStack = bDumpStack; } //------------------------------------------------------------------------------ /** \brief Enable or disable the built in binary operators. \throw nothrow \sa m_bBuiltInOp, ReInit() If you disable the built in binary operators there will be no binary operators defined. Thus you must add them manually one by one. It is not possible to disable built in operators selectively. This function will Reinitialize the parser by calling ReInit(). */ void ParserBase::EnableBuiltInOprt(bool a_bIsOn) { m_bBuiltInOp = a_bIsOn; ReInit(); } //------------------------------------------------------------------------------ /** \brief Query status of built in variables. \return #m_bBuiltInOp; true if built in operators are enabled. \throw nothrow */ bool ParserBase::HasBuiltInOprt() const { return m_bBuiltInOp; } //------------------------------------------------------------------------------ /** \brief Get the argument separator character. */ char_type ParserBase::GetArgSep() const { return m_pTokenReader->GetArgSep(); } //------------------------------------------------------------------------------ /** \brief Set argument separator. \param cArgSep the argument separator character. */ void ParserBase::SetArgSep(char_type cArgSep) { m_pTokenReader->SetArgSep(cArgSep); } //------------------------------------------------------------------------------ /** \brief Dump stack content. This function is used for debugging only. */ void ParserBase::StackDump(const ParserStack& a_stVal, const ParserStack& a_stOprt) const { ParserStack stOprt(a_stOprt), stVal(a_stVal); mu::console() << _T("\nValue stack:\n"); while (!stVal.empty()) { token_type val = stVal.pop(); if (val.GetType() == tpSTR) mu::console() << _T(" \"") << val.GetAsString() << _T("\" "); else mu::console() << _T(" ") << val.GetVal() << _T(" "); } mu::console() << "\nOperator stack:\n"; while (!stOprt.empty()) { if (stOprt.top().GetCode() <= cmASSIGN) { mu::console() << _T("OPRT_INTRNL \"") << ParserBase::c_DefaultOprt[stOprt.top().GetCode()] << _T("\" \n"); } else { switch (stOprt.top().GetCode()) { case cmVAR: mu::console() << _T("VAR\n"); break; case cmVAL: mu::console() << _T("VAL\n"); break; case cmFUNC: mu::console() << _T("FUNC \"") << stOprt.top().GetAsString() << _T("\"\n"); break; case cmFUNC_BULK: mu::console() << _T("FUNC_BULK \"") << stOprt.top().GetAsString() << _T("\"\n"); break; case cmOPRT_INFIX: mu::console() << _T("OPRT_INFIX \"") << stOprt.top().GetAsString() << _T("\"\n"); break; case cmOPRT_BIN: mu::console() << _T("OPRT_BIN \"") << stOprt.top().GetAsString() << _T("\"\n"); break; case cmFUNC_STR: mu::console() << _T("FUNC_STR\n"); break; case cmEND: mu::console() << _T("END\n"); break; case cmUNKNOWN: mu::console() << _T("UNKNOWN\n"); break; case cmBO: mu::console() << _T("BRACKET \"(\"\n"); break; case cmBC: mu::console() << _T("BRACKET \")\"\n"); break; case cmIF: mu::console() << _T("IF\n"); break; case cmELSE: mu::console() << _T("ELSE\n"); break; case cmENDIF: mu::console() << _T("ENDIF\n"); break; default: mu::console() << stOprt.top().GetCode() << _T(" "); break; } } stOprt.pop(); } mu::console() << dec << endl; } //------------------------------------------------------------------------------ /** \brief Evaluate an expression containing comma separated subexpressions \param [out] nStackSize The total number of results available \return Pointer to the array containing all expression results This member function can be used to retrieve all results of an expression made up of multiple comma separated subexpressions (i.e. "x+y,sin(x),cos(y)") */ value_type* ParserBase::Eval(int& nStackSize) const { (this->*m_pParseFormula)(); nStackSize = m_nFinalResultIdx; // (for historic reasons the stack starts at position 1) return &m_vStackBuffer[1]; } //--------------------------------------------------------------------------- /** \brief Return the number of results on the calculation stack. If the expression contains comma separated subexpressions (i.e. "sin(y), x+y"). There may be more than one return value. This function returns the number of available results. */ int ParserBase::GetNumResults() const { return m_nFinalResultIdx; } //--------------------------------------------------------------------------- /** \brief Calculate the result. A note on const correctness: I consider it important that Calc is a const function. Due to caching operations Calc changes only the state of internal variables with one exception m_UsedVar this is reset during string parsing and accessible from the outside. Instead of making Calc non const GetUsedVar is non const because it explicitly calls Eval() forcing this update. \pre A formula must be set. \pre Variables must have been set (if needed) \sa #m_pParseFormula \return The evaluation result \throw ParseException if no Formula is set or in case of any other error related to the formula. */ value_type ParserBase::Eval() const { return (this->*m_pParseFormula)(); } //--------------------------------------------------------------------------- void ParserBase::Eval(value_type* results, int nBulkSize) { /* Commented because it is making a unit test impossible // Parallelization does not make sense for fewer than 10000 computations // due to thread creation overhead. If the bulk size is below 2000 // computation is refused. if (nBulkSize<2000) { throw ParserError(ecUNREASONABLE_NUMBER_OF_COMPUTATIONS); } */ CreateRPN(); int i = 0; #ifdef MUP_USE_OPENMP //#define DEBUG_OMP_STUFF #ifdef DEBUG_OMP_STUFF int* pThread = new int[nBulkSize]; int* pIdx = new int[nBulkSize]; #endif int nMaxThreads = std::min(omp_get_max_threads(), s_MaxNumOpenMPThreads); int nThreadID = 0, ct = 0; omp_set_num_threads(nMaxThreads); #pragma omp parallel for schedule(static, nBulkSize / nMaxThreads) private(nThreadID) for (i = 0; i < nBulkSize; ++i) { nThreadID = omp_get_thread_num(); results[i] = ParseCmdCodeBulk(i, nThreadID); #ifdef DEBUG_OMP_STUFF #pragma omp critical { pThread[ct] = nThreadID; pIdx[ct] = i; ct++; } #endif } #ifdef DEBUG_OMP_STUFF FILE* pFile = fopen("bulk_dbg.txt", "w"); for (i = 0; i < nBulkSize; ++i) { fprintf(pFile, "idx: %d thread: %d \n", pIdx[i], pThread[i]); } delete[] pIdx; delete[] pThread; fclose(pFile); #endif #else for (i = 0; i < nBulkSize; ++i) { results[i] = ParseCmdCodeBulk(i, 0); } #endif } } // namespace mu mstflint-4.26.0/ext_libs/muparser/muParserDLL.cpp0000644000175000017500000010106614522641732022214 0ustar tzafrirctzafrirc/* __________ _____ __ __\______ \_____ _______ ______ ____ _______ / \ | | \| ___/\__ \ \_ __ \/ ___/_/ __ \\_ __ \ | Y Y \| | /| | / __ \_| | \/\___ \ \ ___/ | | \/ |__|_| /|____/ |____| (____ /|__| /____ > \___ >|__| \/ \/ \/ \/ Copyright (C) 2004-2011 Ingo Berg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #if defined(MUPARSER_DLL) #if defined(_WIN32) #define WIN32_LEAN_AND_MEAN #include #endif #include "muParserDLL.h" #include "muParser.h" #include "muParserInt.h" #include "muParserError.h" #define MU_TRY \ try \ { #define MU_CATCH \ } \ catch (muError_t & e) \ { \ ParserTag* pTag = static_cast(a_hParser); \ pTag->exc = e; \ pTag->bError = true; \ if (pTag->errHandler) \ (pTag->errHandler)(a_hParser); \ } \ catch (...) \ { \ ParserTag* pTag = static_cast(a_hParser); \ pTag->exc = muError_t(mu::ecINTERNAL_ERROR); \ pTag->bError = true; \ if (pTag->errHandler) \ (pTag->errHandler)(a_hParser); \ } /** \file \brief This file contains the implementation of the DLL interface of muparser. */ //--------------------------------------------------------------------------- // private types typedef mu::ParserBase::exception_type muError_t; typedef mu::ParserBase muParser_t; int g_nBulkSize; //--------------------------------------------------------------------------- class ParserTag { public: ParserTag(int nType) : pParser((nType == muBASETYPE_FLOAT) ? (mu::ParserBase*)new mu::Parser() : (nType == muBASETYPE_INT) ? (mu::ParserBase*)new mu::ParserInt() : NULL), exc(), errHandler(NULL), bError(false), m_nParserType(nType) { } ~ParserTag() { delete pParser; } mu::ParserBase* pParser; mu::ParserBase::exception_type exc; muErrorHandler_t errHandler; bool bError; private: ParserTag(const ParserTag& ref); ParserTag& operator=(const ParserTag& ref); int m_nParserType; }; static muChar_t s_tmpOutBuf[2048]; //--------------------------------------------------------------------------- // // // unexported functions // // //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- muParser_t* AsParser(muParserHandle_t a_hParser) { return static_cast(a_hParser)->pParser; } //--------------------------------------------------------------------------- ParserTag* AsParserTag(muParserHandle_t a_hParser) { return static_cast(a_hParser); } //--------------------------------------------------------------------------- #if defined(_WIN32) #define _CRT_SECURE_NO_DEPRECATE BOOL APIENTRY DllMain(HANDLE /*hModule*/, DWORD ul_reason_for_call, LPVOID /*lpReserved*/) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: break; case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } #endif //--------------------------------------------------------------------------- // // // exported functions // // //--------------------------------------------------------------------------- API_EXPORT(void) mupSetVarFactory(muParserHandle_t a_hParser, muFacFun_t a_pFactory, void* pUserData) { MU_TRY muParser_t* p(AsParser(a_hParser)); p->SetVarFactory(a_pFactory, pUserData); MU_CATCH } //--------------------------------------------------------------------------- /** \brief Create a new Parser instance and return its handle. */ API_EXPORT(muParserHandle_t) mupCreate(int nBaseType) { switch (nBaseType) { case muBASETYPE_FLOAT: return (void*)(new ParserTag(muBASETYPE_FLOAT)); case muBASETYPE_INT: return (void*)(new ParserTag(muBASETYPE_INT)); default: return NULL; } } //--------------------------------------------------------------------------- /** \brief Release the parser instance related with a parser handle. */ API_EXPORT(void) mupRelease(muParserHandle_t a_hParser) { MU_TRY ParserTag* p = static_cast(a_hParser); delete p; MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(const muChar_t*) mupGetVersion(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); #ifndef _UNICODE sprintf(s_tmpOutBuf, "%s", p->GetVersion().c_str()); #else wsprintf(s_tmpOutBuf, _T("%s"), p->GetVersion().c_str()); #endif return s_tmpOutBuf; MU_CATCH return _T(""); } //--------------------------------------------------------------------------- /** \brief Evaluate the expression. */ API_EXPORT(muFloat_t) mupEval(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); return p->Eval(); MU_CATCH return 0; } //--------------------------------------------------------------------------- API_EXPORT(muFloat_t*) mupEvalMulti(muParserHandle_t a_hParser, int* nNum) { MU_TRY assert(nNum != NULL); muParser_t* const p(AsParser(a_hParser)); return p->Eval(*nNum); MU_CATCH return 0; } //--------------------------------------------------------------------------- API_EXPORT(void) mupEvalBulk(muParserHandle_t a_hParser, muFloat_t* a_res, int nSize) { MU_TRY muParser_t* p(AsParser(a_hParser)); p->Eval(a_res, nSize); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupSetExpr(muParserHandle_t a_hParser, const muChar_t* a_szExpr) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->SetExpr(a_szExpr); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupRemoveVar(muParserHandle_t a_hParser, const muChar_t* a_szName) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->RemoveVar(a_szName); MU_CATCH } //--------------------------------------------------------------------------- /** \brief Release all parser variables. \param a_hParser Handle to the parser instance. */ API_EXPORT(void) mupClearVar(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->ClearVar(); MU_CATCH } //--------------------------------------------------------------------------- /** \brief Release all parser variables. \param a_hParser Handle to the parser instance. */ API_EXPORT(void) mupClearConst(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->ClearConst(); MU_CATCH } //--------------------------------------------------------------------------- /** \brief Clear all user defined operators. \param a_hParser Handle to the parser instance. */ API_EXPORT(void) mupClearOprt(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->ClearOprt(); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupClearFun(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->ClearFun(); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun0(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun0_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun1(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun1_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun2(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun2_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun3(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun3_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun4(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun4_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun5(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun5_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun6(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun6_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun7(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun7_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun8(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun8_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun9(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun9_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineFun10(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun10_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun0(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun0_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun1(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun1_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun2(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun2_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun3(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun3_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun4(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun4_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun5(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun5_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun6(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun6_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun7(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun7_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun8(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun8_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun9(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun9_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkFun10(muParserHandle_t a_hParser, const muChar_t* a_szName, muBulkFun10_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineStrFun1(muParserHandle_t a_hParser, const muChar_t* a_szName, muStrFun1_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineStrFun2(muParserHandle_t a_hParser, const muChar_t* a_szName, muStrFun2_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineStrFun3(muParserHandle_t a_hParser, const muChar_t* a_szName, muStrFun3_t a_pFun) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, false); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineMultFun(muParserHandle_t a_hParser, const muChar_t* a_szName, muMultFun_t a_pFun, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineFun(a_szName, a_pFun, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineOprt(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun2_t a_pFun, muInt_t a_nPrec, muInt_t a_nOprtAsct, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineOprt(a_szName, a_pFun, a_nPrec, (mu::EOprtAssociativity)a_nOprtAsct, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineVar(muParserHandle_t a_hParser, const muChar_t* a_szName, muFloat_t* a_pVar) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineVar(a_szName, a_pVar); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineBulkVar(muParserHandle_t a_hParser, const muChar_t* a_szName, muFloat_t* a_pVar) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineVar(a_szName, a_pVar); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineConst(muParserHandle_t a_hParser, const muChar_t* a_szName, muFloat_t a_fVal) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineConst(a_szName, a_fVal); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineStrConst(muParserHandle_t a_hParser, const muChar_t* a_szName, const muChar_t* a_szVal) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineStrConst(a_szName, a_szVal); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(const muChar_t*) mupGetExpr(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); // C# explodes when pMsg is returned directly. For some reason it can't access // the memory where the message lies directly. #ifndef _UNICODE sprintf(s_tmpOutBuf, "%s", p->GetExpr().c_str()); #else wsprintf(s_tmpOutBuf, _T("%s"), p->GetExpr().c_str()); #endif return s_tmpOutBuf; MU_CATCH return _T(""); } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefinePostfixOprt(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun1_t a_pOprt, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefinePostfixOprt(a_szName, a_pOprt, a_bAllowOpt != 0); MU_CATCH } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineInfixOprt(muParserHandle_t a_hParser, const muChar_t* a_szName, muFun1_t a_pOprt, muBool_t a_bAllowOpt) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->DefineInfixOprt(a_szName, a_pOprt, a_bAllowOpt != 0); MU_CATCH } // Define character sets for identifiers //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineNameChars(muParserHandle_t a_hParser, const muChar_t* a_szCharset) { muParser_t* const p(AsParser(a_hParser)); p->DefineNameChars(a_szCharset); } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineOprtChars(muParserHandle_t a_hParser, const muChar_t* a_szCharset) { muParser_t* const p(AsParser(a_hParser)); p->DefineOprtChars(a_szCharset); } //--------------------------------------------------------------------------- API_EXPORT(void) mupDefineInfixOprtChars(muParserHandle_t a_hParser, const muChar_t* a_szCharset) { muParser_t* const p(AsParser(a_hParser)); p->DefineInfixOprtChars(a_szCharset); } //--------------------------------------------------------------------------- /** \brief Get the number of variables defined in the parser. \param a_hParser [in] Must be a valid parser handle. \return The number of used variables. \sa mupGetExprVar */ API_EXPORT(int) mupGetVarNum(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); const mu::varmap_type VarMap = p->GetVar(); return (int)VarMap.size(); MU_CATCH return 0; // never reached } //--------------------------------------------------------------------------- /** \brief Return a variable that is used in an expression. \param a_hParser [in] A valid parser handle. \param a_iVar [in] The index of the variable to return. \param a_szName [out] Pointer to the variable name. \param a_pVar [out] Pointer to the variable. \throw nothrow Prior to calling this function call mupGetExprVarNum in order to get the number of variables in the expression. If the parameter a_iVar is greater than the number of variables both a_szName and a_pVar will be set to zero. As a side effect this function will trigger an internal calculation of the expression undefined variables will be set to zero during this calculation. During the calculation user defined callback functions present in the expression will be called, this is unavoidable. */ API_EXPORT(void) mupGetVar(muParserHandle_t a_hParser, unsigned a_iVar, const muChar_t** a_szName, muFloat_t** a_pVar) { // A static buffer is needed for the name since i cant return the // pointer from the map. static muChar_t szName[1024]; MU_TRY muParser_t* const p(AsParser(a_hParser)); const mu::varmap_type VarMap = p->GetVar(); if (a_iVar >= VarMap.size()) { *a_szName = 0; *a_pVar = 0; return; } mu::varmap_type::const_iterator item; item = VarMap.begin(); for (unsigned i = 0; i < a_iVar; ++i) ++item; #ifndef _UNICODE strncpy(szName, item->first.c_str(), sizeof(szName)); #else wcsncpy(szName, item->first.c_str(), sizeof(szName)); #endif szName[sizeof(szName) - 1] = 0; *a_szName = &szName[0]; *a_pVar = item->second; return; MU_CATCH *a_szName = 0; *a_pVar = 0; } //--------------------------------------------------------------------------- /** \brief Get the number of variables used in the expression currently set in the parser. \param a_hParser [in] Must be a valid parser handle. \return The number of used variables. \sa mupGetExprVar */ API_EXPORT(int) mupGetExprVarNum(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); const mu::varmap_type VarMap = p->GetUsedVar(); return (int)VarMap.size(); MU_CATCH return 0; // never reached } //--------------------------------------------------------------------------- /** \brief Return a variable that is used in an expression. Prior to calling this function call mupGetExprVarNum in order to get the number of variables in the expression. If the parameter a_iVar is greater than the number of variables both a_szName and a_pVar will be set to zero. As a side effect this function will trigger an internal calculation of the expression undefined variables will be set to zero during this calculation. During the calculation user defined callback functions present in the expression will be called, this is unavoidable. \param a_hParser [in] A valid parser handle. \param a_iVar [in] The index of the variable to return. \param a_szName [out] Pointer to the variable name. \param a_pVar [out] Pointer to the variable. \throw nothrow */ API_EXPORT(void) mupGetExprVar(muParserHandle_t a_hParser, unsigned a_iVar, const muChar_t** a_szName, muFloat_t** a_pVar) { // A static buffer is needed for the name since i cant return the // pointer from the map. static muChar_t szName[1024]; MU_TRY muParser_t* const p(AsParser(a_hParser)); const mu::varmap_type VarMap = p->GetUsedVar(); if (a_iVar >= VarMap.size()) { *a_szName = 0; *a_pVar = 0; return; } mu::varmap_type::const_iterator item; item = VarMap.begin(); for (unsigned i = 0; i < a_iVar; ++i) ++item; #ifndef _UNICODE strncpy(szName, item->first.c_str(), sizeof(szName)); #else wcsncpy(szName, item->first.c_str(), sizeof(szName)); #endif szName[sizeof(szName) - 1] = 0; *a_szName = &szName[0]; *a_pVar = item->second; return; MU_CATCH *a_szName = 0; *a_pVar = 0; } //--------------------------------------------------------------------------- /** \brief Return the number of constants defined in a parser. */ API_EXPORT(int) mupGetConstNum(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); const mu::valmap_type ValMap = p->GetConst(); return (int)ValMap.size(); MU_CATCH return 0; // never reached } //----------------------------------------------------------------------------------------------------- API_EXPORT(void) mupSetArgSep(muParserHandle_t a_hParser, const muChar_t cArgSep) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->SetArgSep(cArgSep); MU_CATCH } //----------------------------------------------------------------------------------------------------- API_EXPORT(void) mupResetLocale(muParserHandle_t a_hParser) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->ResetLocale(); MU_CATCH } //----------------------------------------------------------------------------------------------------- API_EXPORT(void) mupSetDecSep(muParserHandle_t a_hParser, const muChar_t cDecSep) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->SetDecSep(cDecSep); MU_CATCH } //----------------------------------------------------------------------------------------------------- API_EXPORT(void) mupSetThousandsSep(muParserHandle_t a_hParser, const muChar_t cThousandsSep) { MU_TRY muParser_t* const p(AsParser(a_hParser)); p->SetThousandsSep(cThousandsSep); MU_CATCH } //--------------------------------------------------------------------------- /** \brief Retrieve name and value of a single parser constant. \param a_hParser [in] a valid parser handle \param a_iVar [in] Index of the constant to query \param a_pszName [out] pointer to a null terminated string with the constant name \param [out] The constant value */ API_EXPORT(void) mupGetConst(muParserHandle_t a_hParser, unsigned a_iVar, const muChar_t** a_pszName, muFloat_t* a_fVal) { // A static buffer is needed for the name since i cant return the // pointer from the map. static muChar_t szName[1024]; MU_TRY muParser_t* const p(AsParser(a_hParser)); const mu::valmap_type ValMap = p->GetConst(); if (a_iVar >= ValMap.size()) { *a_pszName = 0; *a_fVal = 0; return; } mu::valmap_type::const_iterator item; item = ValMap.begin(); for (unsigned i = 0; i < a_iVar; ++i) ++item; #ifndef _UNICODE strncpy(szName, item->first.c_str(), sizeof(szName)); #else wcsncpy(szName, item->first.c_str(), sizeof(szName)); #endif szName[sizeof(szName) - 1] = 0; *a_pszName = &szName[0]; *a_fVal = item->second; return; MU_CATCH *a_pszName = 0; *a_fVal = 0; } //--------------------------------------------------------------------------- /** \brief Add a custom value recognition function. */ API_EXPORT(void) mupAddValIdent(muParserHandle_t a_hParser, muIdentFun_t a_pFun) { MU_TRY muParser_t* p(AsParser(a_hParser)); p->AddValIdent(a_pFun); MU_CATCH } //--------------------------------------------------------------------------- /** \brief Query if an error occurred. After querying the internal error bit will be reset. So a consecutive call will return false. */ API_EXPORT(muBool_t) mupError(muParserHandle_t a_hParser) { bool bError(AsParserTag(a_hParser)->bError); AsParserTag(a_hParser)->bError = false; return bError; } //--------------------------------------------------------------------------- /** \brief Reset the internal error flag. */ API_EXPORT(void) mupErrorReset(muParserHandle_t a_hParser) { AsParserTag(a_hParser)->bError = false; } //--------------------------------------------------------------------------- API_EXPORT(void) mupSetErrorHandler(muParserHandle_t a_hParser, muErrorHandler_t a_pHandler) { AsParserTag(a_hParser)->errHandler = a_pHandler; } //--------------------------------------------------------------------------- /** \brief Return the message associated with the last error. */ API_EXPORT(const muChar_t*) mupGetErrorMsg(muParserHandle_t a_hParser) { ParserTag* const p(AsParserTag(a_hParser)); const muChar_t* pMsg = p->exc.GetMsg().c_str(); // C# explodes when pMsg is returned directly. For some reason it can't access // the memory where the message lies directly. #ifndef _UNICODE sprintf(s_tmpOutBuf, "%s", pMsg); #else wsprintf(s_tmpOutBuf, _T("%s"), pMsg); #endif return s_tmpOutBuf; } //--------------------------------------------------------------------------- /** \brief Return the message associated with the last error. */ API_EXPORT(const muChar_t*) mupGetErrorToken(muParserHandle_t a_hParser) { ParserTag* const p(AsParserTag(a_hParser)); const muChar_t* pToken = p->exc.GetToken().c_str(); // C# explodes when pMsg is returned directly. For some reason it can't access // the memory where the message lies directly. #ifndef _UNICODE sprintf(s_tmpOutBuf, "%s", pToken); #else wsprintf(s_tmpOutBuf, _T("%s"), pToken); #endif return s_tmpOutBuf; } //--------------------------------------------------------------------------- /** \brief Return the code associated with the last error. */ API_EXPORT(int) mupGetErrorCode(muParserHandle_t a_hParser) { return AsParserTag(a_hParser)->exc.GetCode(); } //--------------------------------------------------------------------------- /** \brief Return the position associated with the last error. */ API_EXPORT(int) mupGetErrorPos(muParserHandle_t a_hParser) { return (int)AsParserTag(a_hParser)->exc.GetPos(); } ////----------------------------------------------------------------------------------------------------- // API_EXPORT(const muChar_t*) mupGetErrorExpr(muParserHandle_t a_hParser) //{ // return AsParserTag(a_hParser)->exc.GetExpr().c_str(); //} //----------------------------------------------------------------------------------------------------- API_EXPORT(muFloat_t*) mupCreateVar() { return new muFloat_t(0); } //----------------------------------------------------------------------------------------------------- API_EXPORT(void) mupReleaseVar(muFloat_t* ptr) { delete ptr; } #endif // MUPARSER_DLL mstflint-4.26.0/ext_libs/muparser/Makefile.in0000644000175000017500000005253714522641737021440 0ustar tzafrirctzafrirc# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ #-- # Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved. # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # COPYING in the main directory of this source tree, or the # OpenIB.org BSD license below: # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # - Redistributions of source code must retain the above # copyright notice, this list of conditions and the following # disclaimer. # # - Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #-- # Makefile.am -- Process this file with automake to produce Makefile.in VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = ext_libs/muparser DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/config/depcomp $(noinst_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmuparser_la_LIBADD = am_libmuparser_la_OBJECTS = muParserBase.lo muParserBytecode.lo \ muParserCallback.lo muParser.lo muParserError.lo \ muParserTokenReader.lo libmuparser_la_OBJECTS = $(am_libmuparser_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libmuparser_la_SOURCES) DIST_SOURCES = $(libmuparser_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ADABE_DBS = @ADABE_DBS@ ADABE_DBS_EXTRA_DIST = @ADABE_DBS_EXTRA_DIST@ ADABE_TOOLS = @ADABE_TOOLS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COMPILER_FPIC = @COMPILER_FPIC@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_INC_DIR = @CURL_INC_DIR@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISABLE_XML2 = @DISABLE_XML2@ DLLTOOL = @DLLTOOL@ DPA = @DPA@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DC = @ENABLE_DC@ ENABLE_FWMGR = @ENABLE_FWMGR@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FW_MGR_TOOLS = @FW_MGR_TOOLS@ GREP = @GREP@ INIPARSER_CFLAGS = @INIPARSER_CFLAGS@ INIPARSER_LIBS = @INIPARSER_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JSON_CFLAGS = @JSON_CFLAGS@ JSON_LIBS = @JSON_LIBS@ KERNEL_BUILD = @KERNEL_BUILD@ LD = @LD@ LDFLAGS = @LDFLAGS@ LDL = @LDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LINUX_BUILD = @LINUX_BUILD@ LINUX_KERNEL_INCLUDE = @LINUX_KERNEL_INCLUDE@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAD_IFC = @MAD_IFC@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSTFLINT_VERSION_STR = @MSTFLINT_VERSION_STR@ MTCR_CONF_DIR = @MTCR_CONF_DIR@ MUPARSER_CFLAGS = @MUPARSER_CFLAGS@ MUPARSER_LIBS = @MUPARSER_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OFED_BUILD = @OFED_BUILD@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PROJECT = @PROJECT@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE_CFLAGS = @SQLITE_CFLAGS@ SQLITE_LIBS = @SQLITE_LIBS@ STRIP = @STRIP@ TOOLS_BUILD_TIME = @TOOLS_BUILD_TIME@ TOOLS_CRYPTO = @TOOLS_CRYPTO@ TOOLS_GIT_SHA = @TOOLS_GIT_SHA@ VERSION = @VERSION@ XZ_UTILS_DIR = @XZ_UTILS_DIR@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ default_en_inband = @default_en_inband@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -w -g -MP -MD ${COMPILER_FPIC} AM_CXXFLAGS = -w -g -MP -MD ${COMPILER_FPIC} noinst_LTLIBRARIES = libmuparser.la noinst_HEADERS = muParser.h muParserBase.h muParserBytecode.h muParserCallback.h muParserDef.h muParserError.h muParserFixes.h muParserStack.h muParserToken.h muParserTokenReader.h muParserTemplateMagic.h libmuparser_la_SOURCES = \ muParserBase.cpp muParserBytecode.cpp muParserCallback.cpp muParser.cpp muParserError.cpp muParserTokenReader.cpp \ muParser.h muParserBase.h muParserBytecode.h muParserCallback.h muParserDef.h muParserError.h muParserFixes.h muParserStack.h muParserToken.h muParserTokenReader.h muParserTemplateMagic.h all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ext_libs/muparser/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign ext_libs/muparser/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libmuparser.la: $(libmuparser_la_OBJECTS) $(libmuparser_la_DEPENDENCIES) $(EXTRA_libmuparser_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libmuparser_la_OBJECTS) $(libmuparser_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/muParser.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/muParserBase.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/muParserBytecode.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/muParserCallback.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/muParserError.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/muParserTokenReader.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mstflint-4.26.0/ext_libs/sqlite/0000755000175000017500000000000014522641737017022 5ustar tzafrirctzafrircmstflint-4.26.0/ext_libs/sqlite/sqlite3.c0000644000175000017500004020675714522641732020572 0ustar tzafrirctzafrirc/****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite ** version 3.38.0. By combining all the individual C code files into this ** single large file, the entire code can be compiled as a single translation ** unit. This allows many compilers to do optimizations that would not be ** possible if the files were compiled separately. Performance improvements ** of 5% or more are commonly seen when SQLite is compiled as a single ** translation unit. ** ** This file is all you need to compile SQLite. To use SQLite in other ** programs, you need this file and the "sqlite3.h" header file that defines ** the programming interface to the SQLite library. (If you do not have ** the "sqlite3.h" header file at hand, you will find a copy embedded within ** the text of this file. Search for "Begin file sqlite3.h" to find the start ** of the embedded sqlite3.h header file.) Additional code files may be needed ** if you want a wrapper to interface SQLite with your choice of programming ** language. The code for the "sqlite3" command-line shell is also in a ** separate file. This file contains only code for the core SQLite library. */ #define SQLITE_CORE 1 #define SQLITE_AMALGAMATION 1 #ifndef SQLITE_PRIVATE # define SQLITE_PRIVATE static #endif /************** Begin file sqliteInt.h ***************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Internal interface definitions for SQLite. ** */ #ifndef SQLITEINT_H #define SQLITEINT_H /* Special Comments: ** ** Some comments have special meaning to the tools that measure test ** coverage: ** ** NO_TEST - The branches on this line are not ** measured by branch coverage. This is ** used on lines of code that actually ** implement parts of coverage testing. ** ** OPTIMIZATION-IF-TRUE - This branch is allowed to alway be false ** and the correct answer is still obtained, ** though perhaps more slowly. ** ** OPTIMIZATION-IF-FALSE - This branch is allowed to alway be true ** and the correct answer is still obtained, ** though perhaps more slowly. ** ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread ** that would be harmless and undetectable ** if it did occur. ** ** In all cases, the special comment must be enclosed in the usual ** slash-asterisk...asterisk-slash comment marks, with no spaces between the ** asterisks and the comment text. */ /* ** Make sure the Tcl calling convention macro is defined. This macro is ** only used by test code and Tcl integration code. */ #ifndef SQLITE_TCLAPI # define SQLITE_TCLAPI #endif /* ** Include the header file used to customize the compiler options for MSVC. ** This should be done first so that it can successfully prevent spurious ** compiler warnings due to subsequent content in this file and other files ** that are included by this file. */ /************** Include msvc.h in the middle of sqliteInt.h ******************/ /************** Begin file msvc.h ********************************************/ /* ** 2015 January 12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to MSVC. */ #ifndef SQLITE_MSVC_H #define SQLITE_MSVC_H #if defined(_MSC_VER) #pragma warning(disable : 4054) #pragma warning(disable : 4055) #pragma warning(disable : 4100) #pragma warning(disable : 4127) #pragma warning(disable : 4130) #pragma warning(disable : 4152) #pragma warning(disable : 4189) #pragma warning(disable : 4206) #pragma warning(disable : 4210) #pragma warning(disable : 4232) #pragma warning(disable : 4244) #pragma warning(disable : 4305) #pragma warning(disable : 4306) #pragma warning(disable : 4702) #pragma warning(disable : 4706) #endif /* defined(_MSC_VER) */ #if defined(_MSC_VER) && !defined(_WIN64) #undef SQLITE_4_BYTE_ALIGNED_MALLOC #define SQLITE_4_BYTE_ALIGNED_MALLOC #endif /* defined(_MSC_VER) && !defined(_WIN64) */ #endif /* SQLITE_MSVC_H */ /************** End of msvc.h ************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* ** Special setup for VxWorks */ /************** Include vxworks.h in the middle of sqliteInt.h ***************/ /************** Begin file vxworks.h *****************************************/ /* ** 2015-03-02 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to Wind River's VxWorks */ #if defined(__RTP__) || defined(_WRS_KERNEL) /* This is VxWorks. Set up things specially for that OS */ #include #include /* amalgamator: dontcache */ #define OS_VXWORKS 1 #define SQLITE_OS_OTHER 0 #define SQLITE_HOMEGROWN_RECURSIVE_MUTEX 1 #define SQLITE_OMIT_LOAD_EXTENSION 1 #define SQLITE_ENABLE_LOCKING_STYLE 0 #define HAVE_UTIME 1 #else /* This is not VxWorks. */ #define OS_VXWORKS 0 #define HAVE_FCHOWN 1 #define HAVE_READLINK 1 #define HAVE_LSTAT 1 #endif /* defined(_WRS_KERNEL) */ /************** End of vxworks.h *********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* ** These #defines should enable >2GB file support on POSIX if the ** underlying operating system supports it. If the OS lacks ** large file support, or if the OS is windows, these should be no-ops. ** ** Ticket #2739: The _LARGEFILE_SOURCE macro must appear before any ** system #includes. Hence, this block of code must be the very first ** code in all source files. ** ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch ** on the compiler command line. This is necessary if you are compiling ** on a recent machine (ex: Red Hat 7.2) but you want your code to work ** on an older machine (ex: Red Hat 6.0). If you compile on Red Hat 7.2 ** without this option, LFS is enable. But LFS does not exist in the kernel ** in Red Hat 6.0, so the code won't work. Hence, for maximum binary ** portability you should omit LFS. ** ** The previous paragraph was written in 2005. (This paragraph is written ** on 2008-11-28.) These days, all Linux kernels support large files, so ** you should probably leave LFS enabled. But some embedded platforms might ** lack LFS in which case the SQLITE_DISABLE_LFS macro might still be useful. ** ** Similar is true for Mac OS X. LFS is only supported on Mac OS X 9 and later. */ #ifndef SQLITE_DISABLE_LFS # define _LARGE_FILE 1 # ifndef _FILE_OFFSET_BITS # define _FILE_OFFSET_BITS 64 # endif # define _LARGEFILE_SOURCE 1 #endif /* The GCC_VERSION and MSVC_VERSION macros are used to ** conditionally include optimizations for each of these compilers. A ** value of 0 means that compiler is not being used. The ** SQLITE_DISABLE_INTRINSIC macro means do not use any compiler-specific ** optimizations, and hence set all compiler macros to 0 ** ** There was once also a CLANG_VERSION macro. However, we learn that the ** version numbers in clang are for "marketing" only and are inconsistent ** and unreliable. Fortunately, all versions of clang also recognize the ** gcc version numbers and have reasonable settings for gcc version numbers, ** so the GCC_VERSION macro will be set to a correct non-zero value even ** when compiling with clang. */ #if defined(__GNUC__) && !defined(SQLITE_DISABLE_INTRINSIC) # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif #if defined(_MSC_VER) && !defined(SQLITE_DISABLE_INTRINSIC) # define MSVC_VERSION _MSC_VER #else # define MSVC_VERSION 0 #endif /* ** Some C99 functions in "math.h" are only present for MSVC when its version ** is associated with Visual Studio 2013 or higher. */ #ifndef SQLITE_HAVE_C99_MATH_FUNCS # if MSVC_VERSION==0 || MSVC_VERSION>=1800 # define SQLITE_HAVE_C99_MATH_FUNCS (1) # else # define SQLITE_HAVE_C99_MATH_FUNCS (0) # endif #endif /* Needed for various definitions... */ #if defined(__GNUC__) && !defined(_GNU_SOURCE) # define _GNU_SOURCE #endif #if defined(__OpenBSD__) && !defined(_BSD_SOURCE) # define _BSD_SOURCE #endif /* ** Macro to disable warnings about missing "break" at the end of a "case". */ #if GCC_VERSION>=7000000 # define deliberate_fall_through __attribute__((fallthrough)); #else # define deliberate_fall_through #endif /* ** For MinGW, check to see if we can include the header file containing its ** version information, among other things. Normally, this internal MinGW ** header file would [only] be included automatically by other MinGW header ** files; however, the contained version information is now required by this ** header file to work around binary compatibility issues (see below) and ** this is the only known way to reliably obtain it. This entire #if block ** would be completely unnecessary if there was any other way of detecting ** MinGW via their preprocessor (e.g. if they customized their GCC to define ** some MinGW-specific macros). When compiling for MinGW, either the ** _HAVE_MINGW_H or _HAVE__MINGW_H (note the extra underscore) macro must be ** defined; otherwise, detection of conditions specific to MinGW will be ** disabled. */ #if defined(_HAVE_MINGW_H) # include "mingw.h" #elif defined(_HAVE__MINGW_H) # include "_mingw.h" #endif /* ** For MinGW version 4.x (and higher), check to see if the _USE_32BIT_TIME_T ** define is required to maintain binary compatibility with the MSVC runtime ** library in use (e.g. for Windows XP). */ #if !defined(_USE_32BIT_TIME_T) && !defined(_USE_64BIT_TIME_T) && \ defined(_WIN32) && !defined(_WIN64) && \ defined(__MINGW_MAJOR_VERSION) && __MINGW_MAJOR_VERSION >= 4 && \ defined(__MSVCRT__) # define _USE_32BIT_TIME_T #endif /* Optionally #include a user-defined header, whereby compilation options ** may be set prior to where they take effect, but after platform setup. ** If SQLITE_CUSTOM_INCLUDE=? is defined, its value names the #include ** file. */ #ifdef SQLITE_CUSTOM_INCLUDE # define INC_STRINGIFY_(f) #f # define INC_STRINGIFY(f) INC_STRINGIFY_(f) # include INC_STRINGIFY(SQLITE_CUSTOM_INCLUDE) #endif /* The public SQLite interface. The _FILE_OFFSET_BITS macro must appear ** first in QNX. Also, the _USE_32BIT_TIME_T macro must appear first for ** MinGW. */ /************** Include sqlite3.h in the middle of sqliteInt.h ***************/ /************** Begin file sqlite3.h *****************************************/ /* ** 2001-09-15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the SQLite library ** presents to client programs. If a C-function, structure, datatype, ** or constant definition does not appear in this file, then it is ** not a published API of SQLite, is subject to change without ** notice, and should not be referenced by programs that use SQLite. ** ** Some of the definitions that are in this file are marked as ** "experimental". Experimental interfaces are normally new ** features recently added to SQLite. We do not anticipate changes ** to experimental interfaces but reserve the right to make minor changes ** if experience from use "in the wild" suggest such changes are prudent. ** ** The official C-language API documentation for SQLite is derived ** from comments in this file. This file is the authoritative source ** on how SQLite interfaces are supposed to operate. ** ** The name of this file under configuration management is "sqlite.h.in". ** The makefile makes some minor changes to this file (such as inserting ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. */ #ifndef SQLITE3_H #define SQLITE3_H #include /* Needed for the definition of va_list */ /* ** Make sure we can call this stuff from C++. */ #if 0 extern "C" { #endif /* ** Facilitate override of interface linkage and calling conventions. ** Be aware that these macros may not be used within this particular ** translation of the amalgamation and its associated header file. ** ** The SQLITE_EXTERN and SQLITE_API macros are used to instruct the ** compiler that the target identifier should have external linkage. ** ** The SQLITE_CDECL macro is used to set the calling convention for ** public functions that accept a variable number of arguments. ** ** The SQLITE_APICALL macro is used to set the calling convention for ** public functions that accept a fixed number of arguments. ** ** The SQLITE_STDCALL macro is no longer used and is now deprecated. ** ** The SQLITE_CALLBACK macro is used to set the calling convention for ** function pointers. ** ** The SQLITE_SYSAPI macro is used to set the calling convention for ** functions provided by the operating system. ** ** Currently, the SQLITE_CDECL, SQLITE_APICALL, SQLITE_CALLBACK, and ** SQLITE_SYSAPI macros are used only when building for environments ** that require non-default calling conventions. */ #ifndef SQLITE_EXTERN # define SQLITE_EXTERN extern #endif #ifndef SQLITE_API # define SQLITE_API #endif #ifndef SQLITE_CDECL # define SQLITE_CDECL #endif #ifndef SQLITE_APICALL # define SQLITE_APICALL #endif #ifndef SQLITE_STDCALL # define SQLITE_STDCALL SQLITE_APICALL #endif #ifndef SQLITE_CALLBACK # define SQLITE_CALLBACK #endif #ifndef SQLITE_SYSAPI # define SQLITE_SYSAPI #endif /* ** These no-op macros are used in front of interfaces to mark those ** interfaces as either deprecated or experimental. New applications ** should not use deprecated interfaces - they are supported for backwards ** compatibility only. Application writers should be aware that ** experimental interfaces are subject to change in point releases. ** ** These macros used to resolve to various kinds of compiler magic that ** would generate warning messages when they were used. But that ** compiler magic ended up generating such a flurry of bug reports ** that we have taken it all out and gone back to using simple ** noop macros. */ #define SQLITE_DEPRECATED #define SQLITE_EXPERIMENTAL /* ** Ensure these symbols were not defined by some previous header file. */ #ifdef SQLITE_VERSION # undef SQLITE_VERSION #endif #ifdef SQLITE_VERSION_NUMBER # undef SQLITE_VERSION_NUMBER #endif /* ** CAPI3REF: Compile-Time Library Version Numbers ** ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header ** evaluates to a string literal that is the SQLite version in the ** format "X.Y.Z" where X is the major version number (always 3 for ** SQLite3) and Y is the minor version number and Z is the release number.)^ ** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer ** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same ** numbers used in [SQLITE_VERSION].)^ ** The SQLITE_VERSION_NUMBER for any given release of SQLite will also ** be larger than the release from which it is derived. Either Y will ** be held constant and Z will be incremented or else Y will be incremented ** and Z will be reset to zero. ** ** Since [version 3.6.18] ([dateof:3.6.18]), ** SQLite source code has been stored in the ** Fossil configuration management ** system. ^The SQLITE_SOURCE_ID macro evaluates to ** a string which identifies a particular check-in of SQLite ** within its configuration management system. ^The SQLITE_SOURCE_ID ** string contains the date and time of the check-in (UTC) and a SHA1 ** or SHA3-256 hash of the entire source tree. If the source code has ** been edited in any way since it was last checked in, then the last ** four hexadecimal digits of the hash may be modified. ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.38.0" #define SQLITE_VERSION_NUMBER 3038000 #define SQLITE_SOURCE_ID "2022-02-22 18:58:40 40fa792d359f84c3b9e9d6623743e1a59826274e221df1bde8f47086968a1bab" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros ** but are associated with the library instead of the header file. ^(Cautious ** programmers might include assert() statements in their application to ** verify that values returned by these interfaces match the macros in ** the header, and thus ensure that the application is ** compiled with matching library and header files. ** **
** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
** assert( strncmp(sqlite3_sourceid(),SQLITE_SOURCE_ID,80)==0 );
** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
** 
)^ ** ** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION] ** macro. ^The sqlite3_libversion() function returns a pointer to the ** to the sqlite3_version[] string constant. The sqlite3_libversion() ** function is provided for use in DLLs since DLL users usually do not have ** direct access to string constants within the DLL. ^The ** sqlite3_libversion_number() function returns an integer equal to ** [SQLITE_VERSION_NUMBER]. ^(The sqlite3_sourceid() function returns ** a pointer to a string constant whose value is the same as the ** [SQLITE_SOURCE_ID] C preprocessor macro. Except if SQLite is built ** using an edited copy of [the amalgamation], then the last four characters ** of the hash might be different from [SQLITE_SOURCE_ID].)^ ** ** See also: [sqlite_version()] and [sqlite_source_id()]. */ SQLITE_API const char sqlite3_version[] = SQLITE_VERSION; SQLITE_API const char *sqlite3_libversion(void); SQLITE_API const char *sqlite3_sourceid(void); SQLITE_API int sqlite3_libversion_number(void); /* ** CAPI3REF: Run-Time Library Compilation Options Diagnostics ** ** ^The sqlite3_compileoption_used() function returns 0 or 1 ** indicating whether the specified option was defined at ** compile time. ^The SQLITE_ prefix may be omitted from the ** option name passed to sqlite3_compileoption_used(). ** ** ^The sqlite3_compileoption_get() function allows iterating ** over the list of options that were defined at compile time by ** returning the N-th compile time option string. ^If N is out of range, ** sqlite3_compileoption_get() returns a NULL pointer. ^The SQLITE_ ** prefix is omitted from any strings returned by ** sqlite3_compileoption_get(). ** ** ^Support for the diagnostic functions sqlite3_compileoption_used() ** and sqlite3_compileoption_get() may be omitted by specifying the ** [SQLITE_OMIT_COMPILEOPTION_DIAGS] option at compile time. ** ** See also: SQL functions [sqlite_compileoption_used()] and ** [sqlite_compileoption_get()] and the [compile_options pragma]. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS SQLITE_API int sqlite3_compileoption_used(const char *zOptName); SQLITE_API const char *sqlite3_compileoption_get(int N); #else # define sqlite3_compileoption_used(X) 0 # define sqlite3_compileoption_get(X) ((void*)0) #endif /* ** CAPI3REF: Test To See If The Library Is Threadsafe ** ** ^The sqlite3_threadsafe() function returns zero if and only if ** SQLite was compiled with mutexing code omitted due to the ** [SQLITE_THREADSAFE] compile-time option being set to 0. ** ** SQLite can be compiled with or without mutexes. When ** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes ** are enabled and SQLite is threadsafe. When the ** [SQLITE_THREADSAFE] macro is 0, ** the mutexes are omitted. Without the mutexes, it is not safe ** to use SQLite concurrently from more than one thread. ** ** Enabling mutexes incurs a measurable performance penalty. ** So if speed is of utmost importance, it makes sense to disable ** the mutexes. But for maximum safety, mutexes should be enabled. ** ^The default behavior is for mutexes to be enabled. ** ** This interface can be used by an application to make sure that the ** version of SQLite that it is linking against was compiled with ** the desired setting of the [SQLITE_THREADSAFE] macro. ** ** This interface only reports on the compile-time mutex setting ** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with ** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but ** can be fully or partially disabled using a call to [sqlite3_config()] ** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD], ** or [SQLITE_CONFIG_SERIALIZED]. ^(The return value of the ** sqlite3_threadsafe() function shows only the compile-time setting of ** thread safety, not any run-time changes to that setting made by ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe() ** is unchanged by calls to sqlite3_config().)^ ** ** See the [threading mode] documentation for additional information. */ SQLITE_API int sqlite3_threadsafe(void); /* ** CAPI3REF: Database Connection Handle ** KEYWORDS: {database connection} {database connections} ** ** Each open SQLite database is represented by a pointer to an instance of ** the opaque structure named "sqlite3". It is useful to think of an sqlite3 ** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] ** and [sqlite3_close_v2()] are its destructors. There are many other ** interfaces (such as ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and ** [sqlite3_busy_timeout()] to name but three) that are methods on an ** sqlite3 object. */ typedef struct sqlite3 sqlite3; /* ** CAPI3REF: 64-Bit Integer Types ** KEYWORDS: sqlite_int64 sqlite_uint64 ** ** Because there is no cross-platform way to specify 64-bit integer types ** SQLite includes typedefs for 64-bit signed and unsigned integers. ** ** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions. ** The sqlite_int64 and sqlite_uint64 types are supported for backwards ** compatibility only. ** ** ^The sqlite3_int64 and sqlite_int64 types can store integer values ** between -9223372036854775808 and +9223372036854775807 inclusive. ^The ** sqlite3_uint64 and sqlite_uint64 types can store integer values ** between 0 and +18446744073709551615 inclusive. */ #ifdef SQLITE_INT64_TYPE typedef SQLITE_INT64_TYPE sqlite_int64; # ifdef SQLITE_UINT64_TYPE typedef SQLITE_UINT64_TYPE sqlite_uint64; # else typedef unsigned SQLITE_INT64_TYPE sqlite_uint64; # endif #elif defined(_MSC_VER) || defined(__BORLANDC__) typedef __int64 sqlite_int64; typedef unsigned __int64 sqlite_uint64; #else typedef long long int sqlite_int64; typedef unsigned long long int sqlite_uint64; #endif typedef sqlite_int64 sqlite3_int64; typedef sqlite_uint64 sqlite3_uint64; /* ** If compiling for a processor that lacks floating point support, ** substitute integer for floating-point. */ #ifdef SQLITE_OMIT_FLOATING_POINT # define double sqlite3_int64 #endif /* ** CAPI3REF: Closing A Database Connection ** DESTRUCTOR: sqlite3 ** ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors ** for the [sqlite3] object. ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if ** the [sqlite3] object is successfully destroyed and all associated ** resources are deallocated. ** ** Ideally, applications should [sqlite3_finalize | finalize] all ** [prepared statements], [sqlite3_blob_close | close] all [BLOB handles], and ** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated ** with the [sqlite3] object prior to attempting to close the object. ** ^If the database connection is associated with unfinalized prepared ** statements, BLOB handlers, and/or unfinished sqlite3_backup objects then ** sqlite3_close() will leave the database connection open and return ** [SQLITE_BUSY]. ^If sqlite3_close_v2() is called with unfinalized prepared ** statements, unclosed BLOB handlers, and/or unfinished sqlite3_backups, ** it returns [SQLITE_OK] regardless, but instead of deallocating the database ** connection immediately, it marks the database connection as an unusable ** "zombie" and makes arrangements to automatically deallocate the database ** connection after all prepared statements are finalized, all BLOB handles ** are closed, and all backups have finished. The sqlite3_close_v2() interface ** is intended for use with host languages that are garbage collected, and ** where the order in which destructors are called is arbitrary. ** ** ^If an [sqlite3] object is destroyed while a transaction is open, ** the transaction is automatically rolled back. ** ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)] ** must be either a NULL ** pointer or an [sqlite3] object pointer obtained ** from [sqlite3_open()], [sqlite3_open16()], or ** [sqlite3_open_v2()], and not previously closed. ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer ** argument is a harmless no-op. */ SQLITE_API int sqlite3_close(sqlite3*); SQLITE_API int sqlite3_close_v2(sqlite3*); /* ** The type for a callback function. ** This is legacy and deprecated. It is included for historical ** compatibility and is not documented. */ typedef int (*sqlite3_callback)(void*,int,char**, char**); /* ** CAPI3REF: One-Step Query Execution Interface ** METHOD: sqlite3 ** ** The sqlite3_exec() interface is a convenience wrapper around ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], ** that allows an application to run multiple statements of SQL ** without having to use a lot of C code. ** ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded, ** semicolon-separate SQL statements passed into its 2nd argument, ** in the context of the [database connection] passed in as its 1st ** argument. ^If the callback function of the 3rd argument to ** sqlite3_exec() is not NULL, then it is invoked for each result row ** coming out of the evaluated SQL statements. ^The 4th argument to ** sqlite3_exec() is relayed through to the 1st argument of each ** callback invocation. ^If the callback pointer to sqlite3_exec() ** is NULL, then no callback is ever invoked and result rows are ** ignored. ** ** ^If an error occurs while evaluating the SQL statements passed into ** sqlite3_exec(), then execution of the current statement stops and ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec() ** is not NULL then any error message is written into memory obtained ** from [sqlite3_malloc()] and passed back through the 5th parameter. ** To avoid memory leaks, the application should invoke [sqlite3_free()] ** on error message strings returned through the 5th parameter of ** sqlite3_exec() after the error message string is no longer needed. ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to ** NULL before returning. ** ** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec() ** routine returns SQLITE_ABORT without invoking the callback again and ** without running any subsequent SQL statements. ** ** ^The 2nd argument to the sqlite3_exec() callback function is the ** number of columns in the result. ^The 3rd argument to the sqlite3_exec() ** callback is an array of pointers to strings obtained as if from ** [sqlite3_column_text()], one for each column. ^If an element of a ** result row is NULL then the corresponding string pointer for the ** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the ** sqlite3_exec() callback is an array of pointers to strings where each ** entry represents the name of corresponding result column as obtained ** from [sqlite3_column_name()]. ** ** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer ** to an empty string, or a pointer that contains only whitespace and/or ** SQL comments, then no SQL statements are evaluated and the database ** is not changed. ** ** Restrictions: ** **
    **
  • The application must ensure that the 1st parameter to sqlite3_exec() ** is a valid and open [database connection]. **
  • The application must not close the [database connection] specified by ** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running. **
  • The application must not modify the SQL statement text passed into ** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. **
*/ SQLITE_API int sqlite3_exec( sqlite3*, /* An open database */ const char *sql, /* SQL to be evaluated */ int (*callback)(void*,int,char**,char**), /* Callback function */ void *, /* 1st argument to callback */ char **errmsg /* Error msg written here */ ); /* ** CAPI3REF: Result Codes ** KEYWORDS: {result code definitions} ** ** Many SQLite functions return an integer result code from the set shown ** here in order to indicate success or failure. ** ** New error codes may be added in future versions of SQLite. ** ** See also: [extended result code definitions] */ #define SQLITE_OK 0 /* Successful result */ /* beginning-of-error-codes */ #define SQLITE_ERROR 1 /* Generic error */ #define SQLITE_INTERNAL 2 /* Internal logic error in SQLite */ #define SQLITE_PERM 3 /* Access permission denied */ #define SQLITE_ABORT 4 /* Callback routine requested an abort */ #define SQLITE_BUSY 5 /* The database file is locked */ #define SQLITE_LOCKED 6 /* A table in the database is locked */ #define SQLITE_NOMEM 7 /* A malloc() failed */ #define SQLITE_READONLY 8 /* Attempt to write a readonly database */ #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/ #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ #define SQLITE_CORRUPT 11 /* The database disk image is malformed */ #define SQLITE_NOTFOUND 12 /* Unknown opcode in sqlite3_file_control() */ #define SQLITE_FULL 13 /* Insertion failed because database is full */ #define SQLITE_CANTOPEN 14 /* Unable to open the database file */ #define SQLITE_PROTOCOL 15 /* Database lock protocol error */ #define SQLITE_EMPTY 16 /* Internal use only */ #define SQLITE_SCHEMA 17 /* The database schema changed */ #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */ #define SQLITE_CONSTRAINT 19 /* Abort due to constraint violation */ #define SQLITE_MISMATCH 20 /* Data type mismatch */ #define SQLITE_MISUSE 21 /* Library used incorrectly */ #define SQLITE_NOLFS 22 /* Uses OS features not supported on host */ #define SQLITE_AUTH 23 /* Authorization denied */ #define SQLITE_FORMAT 24 /* Not used */ #define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */ #define SQLITE_NOTADB 26 /* File opened that is not a database file */ #define SQLITE_NOTICE 27 /* Notifications from sqlite3_log() */ #define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */ #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ /* end-of-error-codes */ /* ** CAPI3REF: Extended Result Codes ** KEYWORDS: {extended result code definitions} ** ** In its default configuration, SQLite API routines return one of 30 integer ** [result codes]. However, experience has shown that many of ** these result codes are too coarse-grained. They do not provide as ** much information about problems as programmers might like. In an effort to ** address this, newer versions of SQLite (version 3.3.8 [dateof:3.3.8] ** and later) include ** support for additional result codes that provide more detailed information ** about errors. These [extended result codes] are enabled or disabled ** on a per database connection basis using the ** [sqlite3_extended_result_codes()] API. Or, the extended code for ** the most recent error can be obtained using ** [sqlite3_extended_errcode()]. */ #define SQLITE_ERROR_MISSING_COLLSEQ (SQLITE_ERROR | (1<<8)) #define SQLITE_ERROR_RETRY (SQLITE_ERROR | (2<<8)) #define SQLITE_ERROR_SNAPSHOT (SQLITE_ERROR | (3<<8)) #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) #define SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8)) #define SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8)) #define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) #define SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8)) #define SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8)) #define SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8)) #define SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8)) #define SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8)) #define SQLITE_IOERR_SHMOPEN (SQLITE_IOERR | (18<<8)) #define SQLITE_IOERR_SHMSIZE (SQLITE_IOERR | (19<<8)) #define SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8)) #define SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8)) #define SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8)) #define SQLITE_IOERR_DELETE_NOENT (SQLITE_IOERR | (23<<8)) #define SQLITE_IOERR_MMAP (SQLITE_IOERR | (24<<8)) #define SQLITE_IOERR_GETTEMPPATH (SQLITE_IOERR | (25<<8)) #define SQLITE_IOERR_CONVPATH (SQLITE_IOERR | (26<<8)) #define SQLITE_IOERR_VNODE (SQLITE_IOERR | (27<<8)) #define SQLITE_IOERR_AUTH (SQLITE_IOERR | (28<<8)) #define SQLITE_IOERR_BEGIN_ATOMIC (SQLITE_IOERR | (29<<8)) #define SQLITE_IOERR_COMMIT_ATOMIC (SQLITE_IOERR | (30<<8)) #define SQLITE_IOERR_ROLLBACK_ATOMIC (SQLITE_IOERR | (31<<8)) #define SQLITE_IOERR_DATA (SQLITE_IOERR | (32<<8)) #define SQLITE_IOERR_CORRUPTFS (SQLITE_IOERR | (33<<8)) #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8)) #define SQLITE_LOCKED_VTAB (SQLITE_LOCKED | (2<<8)) #define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8)) #define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8)) #define SQLITE_BUSY_TIMEOUT (SQLITE_BUSY | (3<<8)) #define SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8)) #define SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8)) #define SQLITE_CANTOPEN_FULLPATH (SQLITE_CANTOPEN | (3<<8)) #define SQLITE_CANTOPEN_CONVPATH (SQLITE_CANTOPEN | (4<<8)) #define SQLITE_CANTOPEN_DIRTYWAL (SQLITE_CANTOPEN | (5<<8)) /* Not Used */ #define SQLITE_CANTOPEN_SYMLINK (SQLITE_CANTOPEN | (6<<8)) #define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8)) #define SQLITE_CORRUPT_SEQUENCE (SQLITE_CORRUPT | (2<<8)) #define SQLITE_CORRUPT_INDEX (SQLITE_CORRUPT | (3<<8)) #define SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8)) #define SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8)) #define SQLITE_READONLY_ROLLBACK (SQLITE_READONLY | (3<<8)) #define SQLITE_READONLY_DBMOVED (SQLITE_READONLY | (4<<8)) #define SQLITE_READONLY_CANTINIT (SQLITE_READONLY | (5<<8)) #define SQLITE_READONLY_DIRECTORY (SQLITE_READONLY | (6<<8)) #define SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8)) #define SQLITE_CONSTRAINT_CHECK (SQLITE_CONSTRAINT | (1<<8)) #define SQLITE_CONSTRAINT_COMMITHOOK (SQLITE_CONSTRAINT | (2<<8)) #define SQLITE_CONSTRAINT_FOREIGNKEY (SQLITE_CONSTRAINT | (3<<8)) #define SQLITE_CONSTRAINT_FUNCTION (SQLITE_CONSTRAINT | (4<<8)) #define SQLITE_CONSTRAINT_NOTNULL (SQLITE_CONSTRAINT | (5<<8)) #define SQLITE_CONSTRAINT_PRIMARYKEY (SQLITE_CONSTRAINT | (6<<8)) #define SQLITE_CONSTRAINT_TRIGGER (SQLITE_CONSTRAINT | (7<<8)) #define SQLITE_CONSTRAINT_UNIQUE (SQLITE_CONSTRAINT | (8<<8)) #define SQLITE_CONSTRAINT_VTAB (SQLITE_CONSTRAINT | (9<<8)) #define SQLITE_CONSTRAINT_ROWID (SQLITE_CONSTRAINT |(10<<8)) #define SQLITE_CONSTRAINT_PINNED (SQLITE_CONSTRAINT |(11<<8)) #define SQLITE_CONSTRAINT_DATATYPE (SQLITE_CONSTRAINT |(12<<8)) #define SQLITE_NOTICE_RECOVER_WAL (SQLITE_NOTICE | (1<<8)) #define SQLITE_NOTICE_RECOVER_ROLLBACK (SQLITE_NOTICE | (2<<8)) #define SQLITE_WARNING_AUTOINDEX (SQLITE_WARNING | (1<<8)) #define SQLITE_AUTH_USER (SQLITE_AUTH | (1<<8)) #define SQLITE_OK_LOAD_PERMANENTLY (SQLITE_OK | (1<<8)) #define SQLITE_OK_SYMLINK (SQLITE_OK | (2<<8)) /* internal use only */ /* ** CAPI3REF: Flags For File Open Operations ** ** These bit values are intended for use in the ** 3rd parameter to the [sqlite3_open_v2()] interface and ** in the 4th parameter to the [sqlite3_vfs.xOpen] method. ** ** Only those flags marked as "Ok for sqlite3_open_v2()" may be ** used as the third argument to the [sqlite3_open_v2()] interface. ** The other flags have historically been ignored by sqlite3_open_v2(), ** though future versions of SQLite might change so that an error is ** raised if any of the disallowed bits are passed into sqlite3_open_v2(). ** Applications should not depend on the historical behavior. ** ** Note in particular that passing the SQLITE_OPEN_EXCLUSIVE flag into ** [sqlite3_open_v2()] does *not* cause the underlying database file ** to be opened using O_EXCL. Passing SQLITE_OPEN_EXCLUSIVE into ** [sqlite3_open_v2()] has historically be a no-op and might become an ** error in future versions of SQLite. */ #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_DELETEONCLOSE 0x00000008 /* VFS only */ #define SQLITE_OPEN_EXCLUSIVE 0x00000010 /* VFS only */ #define SQLITE_OPEN_AUTOPROXY 0x00000020 /* VFS only */ #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_MAIN_DB 0x00000100 /* VFS only */ #define SQLITE_OPEN_TEMP_DB 0x00000200 /* VFS only */ #define SQLITE_OPEN_TRANSIENT_DB 0x00000400 /* VFS only */ #define SQLITE_OPEN_MAIN_JOURNAL 0x00000800 /* VFS only */ #define SQLITE_OPEN_TEMP_JOURNAL 0x00001000 /* VFS only */ #define SQLITE_OPEN_SUBJOURNAL 0x00002000 /* VFS only */ #define SQLITE_OPEN_SUPER_JOURNAL 0x00004000 /* VFS only */ #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_WAL 0x00080000 /* VFS only */ #define SQLITE_OPEN_NOFOLLOW 0x01000000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_EXRESCODE 0x02000000 /* Extended result codes */ /* Reserved: 0x00F00000 */ /* Legacy compatibility: */ #define SQLITE_OPEN_MASTER_JOURNAL 0x00004000 /* VFS only */ /* ** CAPI3REF: Device Characteristics ** ** The xDeviceCharacteristics method of the [sqlite3_io_methods] ** object returns an integer which is a vector of these ** bit values expressing I/O characteristics of the mass storage ** device that holds the file that the [sqlite3_io_methods] ** refers to. ** ** The SQLITE_IOCAP_ATOMIC property means that all writes of ** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values ** mean that writes of blocks that are nnn bytes in size and ** are aligned to an address which is an integer multiple of ** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means ** that when data is appended to a file, the data is appended ** first then the size of the file is extended, never the other ** way around. The SQLITE_IOCAP_SEQUENTIAL property means that ** information is written to disk in the same order as calls ** to xWrite(). The SQLITE_IOCAP_POWERSAFE_OVERWRITE property means that ** after reboot following a crash or power loss, the only bytes in a ** file that were written at the application level might have changed ** and that adjacent bytes, even bytes within the same sector are ** guaranteed to be unchanged. The SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN ** flag indicates that a file cannot be deleted when open. The ** SQLITE_IOCAP_IMMUTABLE flag indicates that the file is on ** read-only media and cannot be changed even by processes with ** elevated privileges. ** ** The SQLITE_IOCAP_BATCH_ATOMIC property means that the underlying ** filesystem supports doing multiple write operations atomically when those ** write operations are bracketed by [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] and ** [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]. */ #define SQLITE_IOCAP_ATOMIC 0x00000001 #define SQLITE_IOCAP_ATOMIC512 0x00000002 #define SQLITE_IOCAP_ATOMIC1K 0x00000004 #define SQLITE_IOCAP_ATOMIC2K 0x00000008 #define SQLITE_IOCAP_ATOMIC4K 0x00000010 #define SQLITE_IOCAP_ATOMIC8K 0x00000020 #define SQLITE_IOCAP_ATOMIC16K 0x00000040 #define SQLITE_IOCAP_ATOMIC32K 0x00000080 #define SQLITE_IOCAP_ATOMIC64K 0x00000100 #define SQLITE_IOCAP_SAFE_APPEND 0x00000200 #define SQLITE_IOCAP_SEQUENTIAL 0x00000400 #define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN 0x00000800 #define SQLITE_IOCAP_POWERSAFE_OVERWRITE 0x00001000 #define SQLITE_IOCAP_IMMUTABLE 0x00002000 #define SQLITE_IOCAP_BATCH_ATOMIC 0x00004000 /* ** CAPI3REF: File Locking Levels ** ** SQLite uses one of these integer values as the second ** argument to calls it makes to the xLock() and xUnlock() methods ** of an [sqlite3_io_methods] object. */ #define SQLITE_LOCK_NONE 0 #define SQLITE_LOCK_SHARED 1 #define SQLITE_LOCK_RESERVED 2 #define SQLITE_LOCK_PENDING 3 #define SQLITE_LOCK_EXCLUSIVE 4 /* ** CAPI3REF: Synchronization Type Flags ** ** When SQLite invokes the xSync() method of an ** [sqlite3_io_methods] object it uses a combination of ** these integer values as the second argument. ** ** When the SQLITE_SYNC_DATAONLY flag is used, it means that the ** sync operation only needs to flush data to mass storage. Inode ** information need not be flushed. If the lower four bits of the flag ** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics. ** If the lower four bits equal SQLITE_SYNC_FULL, that means ** to use Mac OS X style fullsync instead of fsync(). ** ** Do not confuse the SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags ** with the [PRAGMA synchronous]=NORMAL and [PRAGMA synchronous]=FULL ** settings. The [synchronous pragma] determines when calls to the ** xSync VFS method occur and applies uniformly across all platforms. ** The SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags determine how ** energetic or rigorous or forceful the sync operations are and ** only make a difference on Mac OSX for the default SQLite code. ** (Third-party VFS implementations might also make the distinction ** between SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL, but among the ** operating systems natively supported by SQLite, only Mac OSX ** cares about the difference.) */ #define SQLITE_SYNC_NORMAL 0x00002 #define SQLITE_SYNC_FULL 0x00003 #define SQLITE_SYNC_DATAONLY 0x00010 /* ** CAPI3REF: OS Interface Open File Handle ** ** An [sqlite3_file] object represents an open file in the ** [sqlite3_vfs | OS interface layer]. Individual OS interface ** implementations will ** want to subclass this object by appending additional fields ** for their own use. The pMethods entry is a pointer to an ** [sqlite3_io_methods] object that defines methods for performing ** I/O operations on the open file. */ typedef struct sqlite3_file sqlite3_file; struct sqlite3_file { const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ }; /* ** CAPI3REF: OS Interface File Virtual Methods Object ** ** Every file opened by the [sqlite3_vfs.xOpen] method populates an ** [sqlite3_file] object (or, more commonly, a subclass of the ** [sqlite3_file] object) with a pointer to an instance of this object. ** This object defines the methods used to perform various operations ** against the open file represented by the [sqlite3_file] object. ** ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element ** to a non-NULL pointer, then the sqlite3_io_methods.xClose method ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen] ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element ** to NULL. ** ** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or ** [SQLITE_SYNC_FULL]. The first choice is the normal fsync(). ** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY] ** flag may be ORed in to indicate that only the data of the file ** and not its inode needs to be synced. ** ** The integer values to xLock() and xUnlock() are one of **
    **
  • [SQLITE_LOCK_NONE], **
  • [SQLITE_LOCK_SHARED], **
  • [SQLITE_LOCK_RESERVED], **
  • [SQLITE_LOCK_PENDING], or **
  • [SQLITE_LOCK_EXCLUSIVE]. **
** xLock() increases the lock. xUnlock() decreases the lock. ** The xCheckReservedLock() method checks whether any database connection, ** either in this process or in some other process, is holding a RESERVED, ** PENDING, or EXCLUSIVE lock on the file. It returns true ** if such a lock exists and false otherwise. ** ** The xFileControl() method is a generic interface that allows custom ** VFS implementations to directly control an open file using the ** [sqlite3_file_control()] interface. The second "op" argument is an ** integer opcode. The third argument is a generic pointer intended to ** point to a structure that may contain arguments or space in which to ** write return values. Potential uses for xFileControl() might be ** functions to enable blocking locks with timeouts, to change the ** locking strategy (for example to use dot-file locks), to inquire ** about the status of a lock, or to break stale locks. The SQLite ** core reserves all opcodes less than 100 for its own use. ** A [file control opcodes | list of opcodes] less than 100 is available. ** Applications that define a custom xFileControl method should use opcodes ** greater than 100 to avoid conflicts. VFS implementations should ** return [SQLITE_NOTFOUND] for file control opcodes that they do not ** recognize. ** ** The xSectorSize() method returns the sector size of the ** device that underlies the file. The sector size is the ** minimum write that can be performed without disturbing ** other bytes in the file. The xDeviceCharacteristics() ** method returns a bit vector describing behaviors of the ** underlying device: ** **
    **
  • [SQLITE_IOCAP_ATOMIC] **
  • [SQLITE_IOCAP_ATOMIC512] **
  • [SQLITE_IOCAP_ATOMIC1K] **
  • [SQLITE_IOCAP_ATOMIC2K] **
  • [SQLITE_IOCAP_ATOMIC4K] **
  • [SQLITE_IOCAP_ATOMIC8K] **
  • [SQLITE_IOCAP_ATOMIC16K] **
  • [SQLITE_IOCAP_ATOMIC32K] **
  • [SQLITE_IOCAP_ATOMIC64K] **
  • [SQLITE_IOCAP_SAFE_APPEND] **
  • [SQLITE_IOCAP_SEQUENTIAL] **
  • [SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN] **
  • [SQLITE_IOCAP_POWERSAFE_OVERWRITE] **
  • [SQLITE_IOCAP_IMMUTABLE] **
  • [SQLITE_IOCAP_BATCH_ATOMIC] **
** ** The SQLITE_IOCAP_ATOMIC property means that all writes of ** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values ** mean that writes of blocks that are nnn bytes in size and ** are aligned to an address which is an integer multiple of ** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means ** that when data is appended to a file, the data is appended ** first then the size of the file is extended, never the other ** way around. The SQLITE_IOCAP_SEQUENTIAL property means that ** information is written to disk in the same order as calls ** to xWrite(). ** ** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill ** in the unread portions of the buffer with zeros. A VFS that ** fails to zero-fill short reads might seem to work. However, ** failure to zero-fill short reads will eventually lead to ** database corruption. */ typedef struct sqlite3_io_methods sqlite3_io_methods; struct sqlite3_io_methods { int iVersion; int (*xClose)(sqlite3_file*); int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); int (*xSync)(sqlite3_file*, int flags); int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); int (*xLock)(sqlite3_file*, int); int (*xUnlock)(sqlite3_file*, int); int (*xCheckReservedLock)(sqlite3_file*, int *pResOut); int (*xFileControl)(sqlite3_file*, int op, void *pArg); int (*xSectorSize)(sqlite3_file*); int (*xDeviceCharacteristics)(sqlite3_file*); /* Methods above are valid for version 1 */ int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); int (*xShmLock)(sqlite3_file*, int offset, int n, int flags); void (*xShmBarrier)(sqlite3_file*); int (*xShmUnmap)(sqlite3_file*, int deleteFlag); /* Methods above are valid for version 2 */ int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p); /* Methods above are valid for version 3 */ /* Additional methods may be added in future releases */ }; /* ** CAPI3REF: Standard File Control Opcodes ** KEYWORDS: {file control opcodes} {file control opcode} ** ** These integer constants are opcodes for the xFileControl method ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] ** interface. ** **
    **
  • [[SQLITE_FCNTL_LOCKSTATE]] ** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This ** opcode causes the xFileControl method to write the current state of ** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED], ** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE]) ** into an integer that the pArg argument points to. This capability ** is used during testing and is only available when the SQLITE_TEST ** compile-time option is used. ** **
  • [[SQLITE_FCNTL_SIZE_HINT]] ** The [SQLITE_FCNTL_SIZE_HINT] opcode is used by SQLite to give the VFS ** layer a hint of how large the database file will grow to be during the ** current transaction. This hint is not guaranteed to be accurate but it ** is often close. The underlying VFS might choose to preallocate database ** file space based on this hint in order to help writes to the database ** file run faster. ** **
  • [[SQLITE_FCNTL_SIZE_LIMIT]] ** The [SQLITE_FCNTL_SIZE_LIMIT] opcode is used by in-memory VFS that ** implements [sqlite3_deserialize()] to set an upper bound on the size ** of the in-memory database. The argument is a pointer to a [sqlite3_int64]. ** If the integer pointed to is negative, then it is filled in with the ** current limit. Otherwise the limit is set to the larger of the value ** of the integer pointed to and the current database size. The integer ** pointed to is set to the new limit. ** **
  • [[SQLITE_FCNTL_CHUNK_SIZE]] ** The [SQLITE_FCNTL_CHUNK_SIZE] opcode is used to request that the VFS ** extends and truncates the database file in chunks of a size specified ** by the user. The fourth argument to [sqlite3_file_control()] should ** point to an integer (type int) containing the new chunk-size to use ** for the nominated database. Allocating database file space in large ** chunks (say 1MB at a time), may reduce file-system fragmentation and ** improve performance on some systems. ** **
  • [[SQLITE_FCNTL_FILE_POINTER]] ** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer ** to the [sqlite3_file] object associated with a particular database ** connection. See also [SQLITE_FCNTL_JOURNAL_POINTER]. ** **
  • [[SQLITE_FCNTL_JOURNAL_POINTER]] ** The [SQLITE_FCNTL_JOURNAL_POINTER] opcode is used to obtain a pointer ** to the [sqlite3_file] object associated with the journal file (either ** the [rollback journal] or the [write-ahead log]) for a particular database ** connection. See also [SQLITE_FCNTL_FILE_POINTER]. ** **
  • [[SQLITE_FCNTL_SYNC_OMITTED]] ** No longer in use. ** **
  • [[SQLITE_FCNTL_SYNC]] ** The [SQLITE_FCNTL_SYNC] opcode is generated internally by SQLite and ** sent to the VFS immediately before the xSync method is invoked on a ** database file descriptor. Or, if the xSync method is not invoked ** because the user has configured SQLite with ** [PRAGMA synchronous | PRAGMA synchronous=OFF] it is invoked in place ** of the xSync method. In most cases, the pointer argument passed with ** this file-control is NULL. However, if the database file is being synced ** as part of a multi-database commit, the argument points to a nul-terminated ** string containing the transactions super-journal file name. VFSes that ** do not need this signal should silently ignore this opcode. Applications ** should not call [sqlite3_file_control()] with this opcode as doing so may ** disrupt the operation of the specialized VFSes that do require it. ** **
  • [[SQLITE_FCNTL_COMMIT_PHASETWO]] ** The [SQLITE_FCNTL_COMMIT_PHASETWO] opcode is generated internally by SQLite ** and sent to the VFS after a transaction has been committed immediately ** but before the database is unlocked. VFSes that do not need this signal ** should silently ignore this opcode. Applications should not call ** [sqlite3_file_control()] with this opcode as doing so may disrupt the ** operation of the specialized VFSes that do require it. ** **
  • [[SQLITE_FCNTL_WIN32_AV_RETRY]] ** ^The [SQLITE_FCNTL_WIN32_AV_RETRY] opcode is used to configure automatic ** retry counts and intervals for certain disk I/O operations for the ** windows [VFS] in order to provide robustness in the presence of ** anti-virus programs. By default, the windows VFS will retry file read, ** file write, and file delete operations up to 10 times, with a delay ** of 25 milliseconds before the first retry and with the delay increasing ** by an additional 25 milliseconds with each subsequent retry. This ** opcode allows these two values (10 retries and 25 milliseconds of delay) ** to be adjusted. The values are changed for all database connections ** within the same process. The argument is a pointer to an array of two ** integers where the first integer is the new retry count and the second ** integer is the delay. If either integer is negative, then the setting ** is not changed but instead the prior value of that setting is written ** into the array entry, allowing the current retry settings to be ** interrogated. The zDbName parameter is ignored. ** **
  • [[SQLITE_FCNTL_PERSIST_WAL]] ** ^The [SQLITE_FCNTL_PERSIST_WAL] opcode is used to set or query the ** persistent [WAL | Write Ahead Log] setting. By default, the auxiliary ** write ahead log ([WAL file]) and shared memory ** files used for transaction control ** are automatically deleted when the latest connection to the database ** closes. Setting persistent WAL mode causes those files to persist after ** close. Persisting the files is useful when other processes that do not ** have write permission on the directory containing the database file want ** to read the database file, as the WAL and shared memory files must exist ** in order for the database to be readable. The fourth parameter to ** [sqlite3_file_control()] for this opcode should be a pointer to an integer. ** That integer is 0 to disable persistent WAL mode or 1 to enable persistent ** WAL mode. If the integer is -1, then it is overwritten with the current ** WAL persistence setting. ** **
  • [[SQLITE_FCNTL_POWERSAFE_OVERWRITE]] ** ^The [SQLITE_FCNTL_POWERSAFE_OVERWRITE] opcode is used to set or query the ** persistent "powersafe-overwrite" or "PSOW" setting. The PSOW setting ** determines the [SQLITE_IOCAP_POWERSAFE_OVERWRITE] bit of the ** xDeviceCharacteristics methods. The fourth parameter to ** [sqlite3_file_control()] for this opcode should be a pointer to an integer. ** That integer is 0 to disable zero-damage mode or 1 to enable zero-damage ** mode. If the integer is -1, then it is overwritten with the current ** zero-damage mode setting. ** **
  • [[SQLITE_FCNTL_OVERWRITE]] ** ^The [SQLITE_FCNTL_OVERWRITE] opcode is invoked by SQLite after opening ** a write transaction to indicate that, unless it is rolled back for some ** reason, the entire database file will be overwritten by the current ** transaction. This is used by VACUUM operations. ** **
  • [[SQLITE_FCNTL_VFSNAME]] ** ^The [SQLITE_FCNTL_VFSNAME] opcode can be used to obtain the names of ** all [VFSes] in the VFS stack. The names are of all VFS shims and the ** final bottom-level VFS are written into memory obtained from ** [sqlite3_malloc()] and the result is stored in the char* variable ** that the fourth parameter of [sqlite3_file_control()] points to. ** The caller is responsible for freeing the memory when done. As with ** all file-control actions, there is no guarantee that this will actually ** do anything. Callers should initialize the char* variable to a NULL ** pointer in case this file-control is not implemented. This file-control ** is intended for diagnostic use only. ** **
  • [[SQLITE_FCNTL_VFS_POINTER]] ** ^The [SQLITE_FCNTL_VFS_POINTER] opcode finds a pointer to the top-level ** [VFSes] currently in use. ^(The argument X in ** sqlite3_file_control(db,SQLITE_FCNTL_VFS_POINTER,X) must be ** of type "[sqlite3_vfs] **". This opcodes will set *X ** to a pointer to the top-level VFS.)^ ** ^When there are multiple VFS shims in the stack, this opcode finds the ** upper-most shim only. ** **
  • [[SQLITE_FCNTL_PRAGMA]] ** ^Whenever a [PRAGMA] statement is parsed, an [SQLITE_FCNTL_PRAGMA] ** file control is sent to the open [sqlite3_file] object corresponding ** to the database file to which the pragma statement refers. ^The argument ** to the [SQLITE_FCNTL_PRAGMA] file control is an array of ** pointers to strings (char**) in which the second element of the array ** is the name of the pragma and the third element is the argument to the ** pragma or NULL if the pragma has no argument. ^The handler for an ** [SQLITE_FCNTL_PRAGMA] file control can optionally make the first element ** of the char** argument point to a string obtained from [sqlite3_mprintf()] ** or the equivalent and that string will become the result of the pragma or ** the error message if the pragma fails. ^If the ** [SQLITE_FCNTL_PRAGMA] file control returns [SQLITE_NOTFOUND], then normal ** [PRAGMA] processing continues. ^If the [SQLITE_FCNTL_PRAGMA] ** file control returns [SQLITE_OK], then the parser assumes that the ** VFS has handled the PRAGMA itself and the parser generates a no-op ** prepared statement if result string is NULL, or that returns a copy ** of the result string if the string is non-NULL. ** ^If the [SQLITE_FCNTL_PRAGMA] file control returns ** any result code other than [SQLITE_OK] or [SQLITE_NOTFOUND], that means ** that the VFS encountered an error while handling the [PRAGMA] and the ** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA] ** file control occurs at the beginning of pragma statement analysis and so ** it is able to override built-in [PRAGMA] statements. ** **
  • [[SQLITE_FCNTL_BUSYHANDLER]] ** ^The [SQLITE_FCNTL_BUSYHANDLER] ** file-control may be invoked by SQLite on the database file handle ** shortly after it is opened in order to provide a custom VFS with access ** to the connection's busy-handler callback. The argument is of type (void**) ** - an array of two (void *) values. The first (void *) actually points ** to a function of type (int (*)(void *)). In order to invoke the connection's ** busy-handler, this function should be invoked with the second (void *) in ** the array as the only argument. If it returns non-zero, then the operation ** should be retried. If it returns zero, the custom VFS should abandon the ** current operation. ** **
  • [[SQLITE_FCNTL_TEMPFILENAME]] ** ^Applications can invoke the [SQLITE_FCNTL_TEMPFILENAME] file-control ** to have SQLite generate a ** temporary filename using the same algorithm that is followed to generate ** temporary filenames for TEMP tables and other internal uses. The ** argument should be a char** which will be filled with the filename ** written into memory obtained from [sqlite3_malloc()]. The caller should ** invoke [sqlite3_free()] on the result to avoid a memory leak. ** **
  • [[SQLITE_FCNTL_MMAP_SIZE]] ** The [SQLITE_FCNTL_MMAP_SIZE] file control is used to query or set the ** maximum number of bytes that will be used for memory-mapped I/O. ** The argument is a pointer to a value of type sqlite3_int64 that ** is an advisory maximum number of bytes in the file to memory map. The ** pointer is overwritten with the old value. The limit is not changed if ** the value originally pointed to is negative, and so the current limit ** can be queried by passing in a pointer to a negative number. This ** file-control is used internally to implement [PRAGMA mmap_size]. ** **
  • [[SQLITE_FCNTL_TRACE]] ** The [SQLITE_FCNTL_TRACE] file control provides advisory information ** to the VFS about what the higher layers of the SQLite stack are doing. ** This file control is used by some VFS activity tracing [shims]. ** The argument is a zero-terminated string. Higher layers in the ** SQLite stack may generate instances of this file control if ** the [SQLITE_USE_FCNTL_TRACE] compile-time option is enabled. ** **
  • [[SQLITE_FCNTL_HAS_MOVED]] ** The [SQLITE_FCNTL_HAS_MOVED] file control interprets its argument as a ** pointer to an integer and it writes a boolean into that integer depending ** on whether or not the file has been renamed, moved, or deleted since it ** was first opened. ** **
  • [[SQLITE_FCNTL_WIN32_GET_HANDLE]] ** The [SQLITE_FCNTL_WIN32_GET_HANDLE] opcode can be used to obtain the ** underlying native file handle associated with a file handle. This file ** control interprets its argument as a pointer to a native file handle and ** writes the resulting value there. ** **
  • [[SQLITE_FCNTL_WIN32_SET_HANDLE]] ** The [SQLITE_FCNTL_WIN32_SET_HANDLE] opcode is used for debugging. This ** opcode causes the xFileControl method to swap the file handle with the one ** pointed to by the pArg argument. This capability is used during testing ** and only needs to be supported when SQLITE_TEST is defined. ** **
  • [[SQLITE_FCNTL_WAL_BLOCK]] ** The [SQLITE_FCNTL_WAL_BLOCK] is a signal to the VFS layer that it might ** be advantageous to block on the next WAL lock if the lock is not immediately ** available. The WAL subsystem issues this signal during rare ** circumstances in order to fix a problem with priority inversion. ** Applications should not use this file-control. ** **
  • [[SQLITE_FCNTL_ZIPVFS]] ** The [SQLITE_FCNTL_ZIPVFS] opcode is implemented by zipvfs only. All other ** VFS should return SQLITE_NOTFOUND for this opcode. ** **
  • [[SQLITE_FCNTL_RBU]] ** The [SQLITE_FCNTL_RBU] opcode is implemented by the special VFS used by ** the RBU extension only. All other VFS should return SQLITE_NOTFOUND for ** this opcode. ** **
  • [[SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]] ** If the [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] opcode returns SQLITE_OK, then ** the file descriptor is placed in "batch write mode", which ** means all subsequent write operations will be deferred and done ** atomically at the next [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]. Systems ** that do not support batch atomic writes will return SQLITE_NOTFOUND. ** ^Following a successful SQLITE_FCNTL_BEGIN_ATOMIC_WRITE and prior to ** the closing [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE] or ** [SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE], SQLite will make ** no VFS interface calls on the same [sqlite3_file] file descriptor ** except for calls to the xWrite method and the xFileControl method ** with [SQLITE_FCNTL_SIZE_HINT]. ** **
  • [[SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]] ** The [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE] opcode causes all write ** operations since the previous successful call to ** [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] to be performed atomically. ** This file control returns [SQLITE_OK] if and only if the writes were ** all performed successfully and have been committed to persistent storage. ** ^Regardless of whether or not it is successful, this file control takes ** the file descriptor out of batch write mode so that all subsequent ** write operations are independent. ** ^SQLite will never invoke SQLITE_FCNTL_COMMIT_ATOMIC_WRITE without ** a prior successful call to [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]. ** **
  • [[SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE]] ** The [SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE] opcode causes all write ** operations since the previous successful call to ** [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] to be rolled back. ** ^This file control takes the file descriptor out of batch write mode ** so that all subsequent write operations are independent. ** ^SQLite will never invoke SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE without ** a prior successful call to [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]. ** **
  • [[SQLITE_FCNTL_LOCK_TIMEOUT]] ** The [SQLITE_FCNTL_LOCK_TIMEOUT] opcode is used to configure a VFS ** to block for up to M milliseconds before failing when attempting to ** obtain a file lock using the xLock or xShmLock methods of the VFS. ** The parameter is a pointer to a 32-bit signed integer that contains ** the value that M is to be set to. Before returning, the 32-bit signed ** integer is overwritten with the previous value of M. ** **
  • [[SQLITE_FCNTL_DATA_VERSION]] ** The [SQLITE_FCNTL_DATA_VERSION] opcode is used to detect changes to ** a database file. The argument is a pointer to a 32-bit unsigned integer. ** The "data version" for the pager is written into the pointer. The ** "data version" changes whenever any change occurs to the corresponding ** database file, either through SQL statements on the same database ** connection or through transactions committed by separate database ** connections possibly in other processes. The [sqlite3_total_changes()] ** interface can be used to find if any database on the connection has changed, ** but that interface responds to changes on TEMP as well as MAIN and does ** not provide a mechanism to detect changes to MAIN only. Also, the ** [sqlite3_total_changes()] interface responds to internal changes only and ** omits changes made by other database connections. The ** [PRAGMA data_version] command provides a mechanism to detect changes to ** a single attached database that occur due to other database connections, ** but omits changes implemented by the database connection on which it is ** called. This file control is the only mechanism to detect changes that ** happen either internally or externally and that are associated with ** a particular attached database. ** **
  • [[SQLITE_FCNTL_CKPT_START]] ** The [SQLITE_FCNTL_CKPT_START] opcode is invoked from within a checkpoint ** in wal mode before the client starts to copy pages from the wal ** file to the database file. ** **
  • [[SQLITE_FCNTL_CKPT_DONE]] ** The [SQLITE_FCNTL_CKPT_DONE] opcode is invoked from within a checkpoint ** in wal mode after the client has finished copying pages from the wal ** file to the database file, but before the *-shm file is updated to ** record the fact that the pages have been checkpointed. **
** **
  • [[SQLITE_FCNTL_EXTERNAL_READER]] ** The EXPERIMENTAL [SQLITE_FCNTL_EXTERNAL_READER] opcode is used to detect ** whether or not there is a database client in another process with a wal-mode ** transaction open on the database or not. It is only available on unix.The ** (void*) argument passed with this file-control should be a pointer to a ** value of type (int). The integer value is set to 1 if the database is a wal ** mode database and there exists at least one client in another process that ** currently has an SQL transaction open on the database. It is set to 0 if ** the database is not a wal-mode db, or if there is no such connection in any ** other process. This opcode cannot be used to detect transactions opened ** by clients within the current process, only within other processes. ** ** **
  • [[SQLITE_FCNTL_CKSM_FILE]] ** Used by the cksmvfs VFS module only. ** */ #define SQLITE_FCNTL_LOCKSTATE 1 #define SQLITE_FCNTL_GET_LOCKPROXYFILE 2 #define SQLITE_FCNTL_SET_LOCKPROXYFILE 3 #define SQLITE_FCNTL_LAST_ERRNO 4 #define SQLITE_FCNTL_SIZE_HINT 5 #define SQLITE_FCNTL_CHUNK_SIZE 6 #define SQLITE_FCNTL_FILE_POINTER 7 #define SQLITE_FCNTL_SYNC_OMITTED 8 #define SQLITE_FCNTL_WIN32_AV_RETRY 9 #define SQLITE_FCNTL_PERSIST_WAL 10 #define SQLITE_FCNTL_OVERWRITE 11 #define SQLITE_FCNTL_VFSNAME 12 #define SQLITE_FCNTL_POWERSAFE_OVERWRITE 13 #define SQLITE_FCNTL_PRAGMA 14 #define SQLITE_FCNTL_BUSYHANDLER 15 #define SQLITE_FCNTL_TEMPFILENAME 16 #define SQLITE_FCNTL_MMAP_SIZE 18 #define SQLITE_FCNTL_TRACE 19 #define SQLITE_FCNTL_HAS_MOVED 20 #define SQLITE_FCNTL_SYNC 21 #define SQLITE_FCNTL_COMMIT_PHASETWO 22 #define SQLITE_FCNTL_WIN32_SET_HANDLE 23 #define SQLITE_FCNTL_WAL_BLOCK 24 #define SQLITE_FCNTL_ZIPVFS 25 #define SQLITE_FCNTL_RBU 26 #define SQLITE_FCNTL_VFS_POINTER 27 #define SQLITE_FCNTL_JOURNAL_POINTER 28 #define SQLITE_FCNTL_WIN32_GET_HANDLE 29 #define SQLITE_FCNTL_PDB 30 #define SQLITE_FCNTL_BEGIN_ATOMIC_WRITE 31 #define SQLITE_FCNTL_COMMIT_ATOMIC_WRITE 32 #define SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE 33 #define SQLITE_FCNTL_LOCK_TIMEOUT 34 #define SQLITE_FCNTL_DATA_VERSION 35 #define SQLITE_FCNTL_SIZE_LIMIT 36 #define SQLITE_FCNTL_CKPT_DONE 37 #define SQLITE_FCNTL_RESERVE_BYTES 38 #define SQLITE_FCNTL_CKPT_START 39 #define SQLITE_FCNTL_EXTERNAL_READER 40 #define SQLITE_FCNTL_CKSM_FILE 41 /* deprecated names */ #define SQLITE_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE #define SQLITE_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE #define SQLITE_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO /* ** CAPI3REF: Mutex Handle ** ** The mutex module within SQLite defines [sqlite3_mutex] to be an ** abstract type for a mutex object. The SQLite core never looks ** at the internal representation of an [sqlite3_mutex]. It only ** deals with pointers to the [sqlite3_mutex] object. ** ** Mutexes are created using [sqlite3_mutex_alloc()]. */ typedef struct sqlite3_mutex sqlite3_mutex; /* ** CAPI3REF: Loadable Extension Thunk ** ** A pointer to the opaque sqlite3_api_routines structure is passed as ** the third parameter to entry points of [loadable extensions]. This ** structure must be typedefed in order to work around compiler warnings ** on some platforms. */ typedef struct sqlite3_api_routines sqlite3_api_routines; /* ** CAPI3REF: OS Interface Object ** ** An instance of the sqlite3_vfs object defines the interface between ** the SQLite core and the underlying operating system. The "vfs" ** in the name of the object stands for "virtual file system". See ** the [VFS | VFS documentation] for further information. ** ** The VFS interface is sometimes extended by adding new methods onto ** the end. Each time such an extension occurs, the iVersion field ** is incremented. The iVersion value started out as 1 in ** SQLite [version 3.5.0] on [dateof:3.5.0], then increased to 2 ** with SQLite [version 3.7.0] on [dateof:3.7.0], and then increased ** to 3 with SQLite [version 3.7.6] on [dateof:3.7.6]. Additional fields ** may be appended to the sqlite3_vfs object and the iVersion value ** may increase again in future versions of SQLite. ** Note that due to an oversight, the structure ** of the sqlite3_vfs object changed in the transition from ** SQLite [version 3.5.9] to [version 3.6.0] on [dateof:3.6.0] ** and yet the iVersion field was not increased. ** ** The szOsFile field is the size of the subclassed [sqlite3_file] ** structure used by this VFS. mxPathname is the maximum length of ** a pathname in this VFS. ** ** Registered sqlite3_vfs objects are kept on a linked list formed by ** the pNext pointer. The [sqlite3_vfs_register()] ** and [sqlite3_vfs_unregister()] interfaces manage this list ** in a thread-safe way. The [sqlite3_vfs_find()] interface ** searches the list. Neither the application code nor the VFS ** implementation should use the pNext pointer. ** ** The pNext field is the only field in the sqlite3_vfs ** structure that SQLite will ever modify. SQLite will only access ** or modify this field while holding a particular static mutex. ** The application should never modify anything within the sqlite3_vfs ** object once the object has been registered. ** ** The zName field holds the name of the VFS module. The name must ** be unique across all VFS modules. ** ** [[sqlite3_vfs.xOpen]] ** ^SQLite guarantees that the zFilename parameter to xOpen ** is either a NULL pointer or string obtained ** from xFullPathname() with an optional suffix added. ** ^If a suffix is added to the zFilename parameter, it will ** consist of a single "-" character followed by no more than ** 11 alphanumeric and/or "-" characters. ** ^SQLite further guarantees that ** the string will be valid and unchanged until xClose() is ** called. Because of the previous sentence, ** the [sqlite3_file] can safely store a pointer to the ** filename if it needs to remember the filename for some reason. ** If the zFilename parameter to xOpen is a NULL pointer then xOpen ** must invent its own temporary name for the file. ^Whenever the ** xFilename parameter is NULL it will also be the case that the ** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE]. ** ** The flags argument to xOpen() includes all bits set in ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()] ** or [sqlite3_open16()] is used, then flags includes at least ** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]. ** If xOpen() opens a file read-only then it sets *pOutFlags to ** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set. ** ** ^(SQLite will also add one of the following flags to the xOpen() ** call, depending on the object being opened: ** **
      **
    • [SQLITE_OPEN_MAIN_DB] **
    • [SQLITE_OPEN_MAIN_JOURNAL] **
    • [SQLITE_OPEN_TEMP_DB] **
    • [SQLITE_OPEN_TEMP_JOURNAL] **
    • [SQLITE_OPEN_TRANSIENT_DB] **
    • [SQLITE_OPEN_SUBJOURNAL] **
    • [SQLITE_OPEN_SUPER_JOURNAL] **
    • [SQLITE_OPEN_WAL] **
    )^ ** ** The file I/O implementation can use the object type flags to ** change the way it deals with files. For example, an application ** that does not care about crash recovery or rollback might make ** the open of a journal file a no-op. Writes to this journal would ** also be no-ops, and any attempt to read the journal would return ** SQLITE_IOERR. Or the implementation might recognize that a database ** file will be doing page-aligned sector reads and writes in a random ** order and set up its I/O subsystem accordingly. ** ** SQLite might also add one of the following flags to the xOpen method: ** **
      **
    • [SQLITE_OPEN_DELETEONCLOSE] **
    • [SQLITE_OPEN_EXCLUSIVE] **
    ** ** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be ** deleted when it is closed. ^The [SQLITE_OPEN_DELETEONCLOSE] ** will be set for TEMP databases and their journals, transient ** databases, and subjournals. ** ** ^The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction ** with the [SQLITE_OPEN_CREATE] flag, which are both directly ** analogous to the O_EXCL and O_CREAT flags of the POSIX open() ** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the ** SQLITE_OPEN_CREATE, is used to indicate that file should always ** be created, and that it is an error if it already exists. ** It is not used to indicate the file should be opened ** for exclusive access. ** ** ^At least szOsFile bytes of memory are allocated by SQLite ** to hold the [sqlite3_file] structure passed as the third ** argument to xOpen. The xOpen method does not have to ** allocate the structure; it should just fill it in. Note that ** the xOpen method must set the sqlite3_file.pMethods to either ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods ** element will be valid after xOpen returns regardless of the success ** or failure of the xOpen call. ** ** [[sqlite3_vfs.xAccess]] ** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS] ** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to ** test whether a file is readable and writable, or [SQLITE_ACCESS_READ] ** to test whether a file is at least readable. The SQLITE_ACCESS_READ ** flag is never actually used and is not implemented in the built-in ** VFSes of SQLite. The file is named by the second argument and can be a ** directory. The xAccess method returns [SQLITE_OK] on success or some ** non-zero error code if there is an I/O error or if the name of ** the file given in the second argument is illegal. If SQLITE_OK ** is returned, then non-zero or zero is written into *pResOut to indicate ** whether or not the file is accessible. ** ** ^SQLite will always allocate at least mxPathname+1 bytes for the ** output buffer xFullPathname. The exact size of the output buffer ** is also passed as a parameter to both methods. If the output buffer ** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is ** handled as a fatal error by SQLite, vfs implementations should endeavor ** to prevent this by setting mxPathname to a sufficiently large value. ** ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64() ** interfaces are not strictly a part of the filesystem, but they are ** included in the VFS structure for completeness. ** The xRandomness() function attempts to return nBytes bytes ** of good-quality randomness into zOut. The return value is ** the actual number of bytes of randomness obtained. ** The xSleep() method causes the calling thread to sleep for at ** least the number of microseconds given. ^The xCurrentTime() ** method returns a Julian Day Number for the current date and time as ** a floating point value. ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian ** Day Number multiplied by 86400000 (the number of milliseconds in ** a 24-hour day). ** ^SQLite will use the xCurrentTimeInt64() method to get the current ** date and time if that method is available (if iVersion is 2 or ** greater and the function pointer is not NULL) and will fall back ** to xCurrentTime() if xCurrentTimeInt64() is unavailable. ** ** ^The xSetSystemCall(), xGetSystemCall(), and xNestSystemCall() interfaces ** are not used by the SQLite core. These optional interfaces are provided ** by some VFSes to facilitate testing of the VFS code. By overriding ** system calls with functions under its control, a test program can ** simulate faults and error conditions that would otherwise be difficult ** or impossible to induce. The set of system calls that can be overridden ** varies from one VFS to another, and from one version of the same VFS to the ** next. Applications that use these interfaces must be prepared for any ** or all of these interfaces to be NULL or for their behavior to change ** from one release to the next. Applications must not attempt to access ** any of these methods if the iVersion of the VFS is less than 3. */ typedef struct sqlite3_vfs sqlite3_vfs; typedef void (*sqlite3_syscall_ptr)(void); struct sqlite3_vfs { int iVersion; /* Structure version number (currently 3) */ int szOsFile; /* Size of subclassed sqlite3_file */ int mxPathname; /* Maximum file pathname length */ sqlite3_vfs *pNext; /* Next registered VFS */ const char *zName; /* Name of this virtual file system */ void *pAppData; /* Pointer to application-specific data */ int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, int flags, int *pOutFlags); int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); void (*xDlClose)(sqlite3_vfs*, void*); int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); int (*xSleep)(sqlite3_vfs*, int microseconds); int (*xCurrentTime)(sqlite3_vfs*, double*); int (*xGetLastError)(sqlite3_vfs*, int, char *); /* ** The methods above are in version 1 of the sqlite_vfs object ** definition. Those that follow are added in version 2 or later */ int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); /* ** The methods above are in versions 1 and 2 of the sqlite_vfs object. ** Those below are for version 3 and greater. */ int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); /* ** The methods above are in versions 1 through 3 of the sqlite_vfs object. ** New fields may be appended in future versions. The iVersion ** value will increment whenever this happens. */ }; /* ** CAPI3REF: Flags for the xAccess VFS method ** ** These integer constants can be used as the third parameter to ** the xAccess method of an [sqlite3_vfs] object. They determine ** what kind of permissions the xAccess method is looking for. ** With SQLITE_ACCESS_EXISTS, the xAccess method ** simply checks whether the file exists. ** With SQLITE_ACCESS_READWRITE, the xAccess method ** checks whether the named directory is both readable and writable ** (in other words, if files can be added, removed, and renamed within ** the directory). ** The SQLITE_ACCESS_READWRITE constant is currently used only by the ** [temp_store_directory pragma], though this could change in a future ** release of SQLite. ** With SQLITE_ACCESS_READ, the xAccess method ** checks whether the file is readable. The SQLITE_ACCESS_READ constant is ** currently unused, though it might be used in a future release of ** SQLite. */ #define SQLITE_ACCESS_EXISTS 0 #define SQLITE_ACCESS_READWRITE 1 /* Used by PRAGMA temp_store_directory */ #define SQLITE_ACCESS_READ 2 /* Unused */ /* ** CAPI3REF: Flags for the xShmLock VFS method ** ** These integer constants define the various locking operations ** allowed by the xShmLock method of [sqlite3_io_methods]. The ** following are the only legal combinations of flags to the ** xShmLock method: ** **
      **
    • SQLITE_SHM_LOCK | SQLITE_SHM_SHARED **
    • SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE **
    • SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED **
    • SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE **
    ** ** When unlocking, the same SHARED or EXCLUSIVE flag must be supplied as ** was given on the corresponding lock. ** ** The xShmLock method can transition between unlocked and SHARED or ** between unlocked and EXCLUSIVE. It cannot transition between SHARED ** and EXCLUSIVE. */ #define SQLITE_SHM_UNLOCK 1 #define SQLITE_SHM_LOCK 2 #define SQLITE_SHM_SHARED 4 #define SQLITE_SHM_EXCLUSIVE 8 /* ** CAPI3REF: Maximum xShmLock index ** ** The xShmLock method on [sqlite3_io_methods] may use values ** between 0 and this upper bound as its "offset" argument. ** The SQLite core will never attempt to acquire or release a ** lock outside of this range */ #define SQLITE_SHM_NLOCK 8 /* ** CAPI3REF: Initialize The SQLite Library ** ** ^The sqlite3_initialize() routine initializes the ** SQLite library. ^The sqlite3_shutdown() routine ** deallocates any resources that were allocated by sqlite3_initialize(). ** These routines are designed to aid in process initialization and ** shutdown on embedded systems. Workstation applications using ** SQLite normally do not need to invoke either of these routines. ** ** A call to sqlite3_initialize() is an "effective" call if it is ** the first time sqlite3_initialize() is invoked during the lifetime of ** the process, or if it is the first time sqlite3_initialize() is invoked ** following a call to sqlite3_shutdown(). ^(Only an effective call ** of sqlite3_initialize() does any initialization. All other calls ** are harmless no-ops.)^ ** ** A call to sqlite3_shutdown() is an "effective" call if it is the first ** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only ** an effective call to sqlite3_shutdown() does any deinitialization. ** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^ ** ** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown() ** is not. The sqlite3_shutdown() interface must only be called from a ** single thread. All open [database connections] must be closed and all ** other SQLite resources must be deallocated prior to invoking ** sqlite3_shutdown(). ** ** Among other things, ^sqlite3_initialize() will invoke ** sqlite3_os_init(). Similarly, ^sqlite3_shutdown() ** will invoke sqlite3_os_end(). ** ** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success. ** ^If for some reason, sqlite3_initialize() is unable to initialize ** the library (perhaps it is unable to allocate a needed resource such ** as a mutex) it returns an [error code] other than [SQLITE_OK]. ** ** ^The sqlite3_initialize() routine is called internally by many other ** SQLite interfaces so that an application usually does not need to ** invoke sqlite3_initialize() directly. For example, [sqlite3_open()] ** calls sqlite3_initialize() so the SQLite library will be automatically ** initialized when [sqlite3_open()] is called if it has not be initialized ** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT] ** compile-time option, then the automatic calls to sqlite3_initialize() ** are omitted and the application must call sqlite3_initialize() directly ** prior to using any other SQLite interface. For maximum portability, ** it is recommended that applications always invoke sqlite3_initialize() ** directly prior to using any other SQLite interface. Future releases ** of SQLite may require this. In other words, the behavior exhibited ** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the ** default behavior in some future release of SQLite. ** ** The sqlite3_os_init() routine does operating-system specific ** initialization of the SQLite library. The sqlite3_os_end() ** routine undoes the effect of sqlite3_os_init(). Typical tasks ** performed by these routines include allocation or deallocation ** of static resources, initialization of global variables, ** setting up a default [sqlite3_vfs] module, or setting up ** a default configuration using [sqlite3_config()]. ** ** The application should never invoke either sqlite3_os_init() ** or sqlite3_os_end() directly. The application should only invoke ** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init() ** interface is called automatically by sqlite3_initialize() and ** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate ** implementations for sqlite3_os_init() and sqlite3_os_end() ** are built into SQLite when it is compiled for Unix, Windows, or OS/2. ** When [custom builds | built for other platforms] ** (using the [SQLITE_OS_OTHER=1] compile-time ** option) the application must supply a suitable implementation for ** sqlite3_os_init() and sqlite3_os_end(). An application-supplied ** implementation of sqlite3_os_init() or sqlite3_os_end() ** must return [SQLITE_OK] on success and some other [error code] upon ** failure. */ SQLITE_API int sqlite3_initialize(void); SQLITE_API int sqlite3_shutdown(void); SQLITE_API int sqlite3_os_init(void); SQLITE_API int sqlite3_os_end(void); /* ** CAPI3REF: Configuring The SQLite Library ** ** The sqlite3_config() interface is used to make global configuration ** changes to SQLite in order to tune SQLite to the specific needs of ** the application. The default configuration is recommended for most ** applications and so this routine is usually not necessary. It is ** provided to support rare applications with unusual needs. ** ** The sqlite3_config() interface is not threadsafe. The application ** must ensure that no other SQLite interfaces are invoked by other ** threads while sqlite3_config() is running. ** ** The sqlite3_config() interface ** may only be invoked prior to library initialization using ** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()]. ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before ** [sqlite3_shutdown()] then it will return SQLITE_MISUSE. ** Note, however, that ^sqlite3_config() can be called as part of the ** implementation of an application-defined [sqlite3_os_init()]. ** ** The first argument to sqlite3_config() is an integer ** [configuration option] that determines ** what property of SQLite is to be configured. Subsequent arguments ** vary depending on the [configuration option] ** in the first argument. ** ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK]. ** ^If the option is unknown or SQLite is unable to set the option ** then this routine returns a non-zero [error code]. */ SQLITE_API int sqlite3_config(int, ...); /* ** CAPI3REF: Configure database connections ** METHOD: sqlite3 ** ** The sqlite3_db_config() interface is used to make configuration ** changes to a [database connection]. The interface is similar to ** [sqlite3_config()] except that the changes apply to a single ** [database connection] (specified in the first argument). ** ** The second argument to sqlite3_db_config(D,V,...) is the ** [SQLITE_DBCONFIG_LOOKASIDE | configuration verb] - an integer code ** that indicates what aspect of the [database connection] is being configured. ** Subsequent arguments vary depending on the configuration verb. ** ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if ** the call is considered successful. */ SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); /* ** CAPI3REF: Memory Allocation Routines ** ** An instance of this object defines the interface between SQLite ** and low-level memory allocation routines. ** ** This object is used in only one place in the SQLite interface. ** A pointer to an instance of this object is the argument to ** [sqlite3_config()] when the configuration option is ** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC]. ** By creating an instance of this object ** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC]) ** during configuration, an application can specify an alternative ** memory allocation subsystem for SQLite to use for all of its ** dynamic memory needs. ** ** Note that SQLite comes with several [built-in memory allocators] ** that are perfectly adequate for the overwhelming majority of applications ** and that this object is only useful to a tiny minority of applications ** with specialized memory allocation requirements. This object is ** also used during testing of SQLite in order to specify an alternative ** memory allocator that simulates memory out-of-memory conditions in ** order to verify that SQLite recovers gracefully from such ** conditions. ** ** The xMalloc, xRealloc, and xFree methods must work like the ** malloc(), realloc() and free() functions from the standard C library. ** ^SQLite guarantees that the second argument to ** xRealloc is always a value returned by a prior call to xRoundup. ** ** xSize should return the allocated size of a memory allocation ** previously obtained from xMalloc or xRealloc. The allocated size ** is always at least as big as the requested size but may be larger. ** ** The xRoundup method returns what would be the allocated size of ** a memory allocation given a particular requested size. Most memory ** allocators round up memory allocations at least to the next multiple ** of 8. Some allocators round up to a larger multiple or to a power of 2. ** Every memory allocation request coming in through [sqlite3_malloc()] ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, ** that causes the corresponding memory allocation to fail. ** ** The xInit method initializes the memory allocator. For example, ** it might allocate any required mutexes or initialize internal data ** structures. The xShutdown method is invoked (indirectly) by ** [sqlite3_shutdown()] and should deallocate any resources acquired ** by xInit. The pAppData pointer is used as the only parameter to ** xInit and xShutdown. ** ** SQLite holds the [SQLITE_MUTEX_STATIC_MAIN] mutex when it invokes ** the xInit method, so the xInit method need not be threadsafe. The ** xShutdown method is only called from [sqlite3_shutdown()] so it does ** not need to be threadsafe either. For all other methods, SQLite ** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the ** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which ** it is by default) and so the methods are automatically serialized. ** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other ** methods must be threadsafe or else make their own arrangements for ** serialization. ** ** SQLite will never invoke xInit() more than once without an intervening ** call to xShutdown(). */ typedef struct sqlite3_mem_methods sqlite3_mem_methods; struct sqlite3_mem_methods { void *(*xMalloc)(int); /* Memory allocation function */ void (*xFree)(void*); /* Free a prior allocation */ void *(*xRealloc)(void*,int); /* Resize an allocation */ int (*xSize)(void*); /* Return the size of an allocation */ int (*xRoundup)(int); /* Round up request size to allocation size */ int (*xInit)(void*); /* Initialize the memory allocator */ void (*xShutdown)(void*); /* Deinitialize the memory allocator */ void *pAppData; /* Argument to xInit() and xShutdown() */ }; /* ** CAPI3REF: Configuration Options ** KEYWORDS: {configuration option} ** ** These constants are the available integer configuration options that ** can be passed as the first argument to the [sqlite3_config()] interface. ** ** New configuration options may be added in future releases of SQLite. ** Existing configuration options might be discontinued. Applications ** should check the return code from [sqlite3_config()] to make sure that ** the call worked. The [sqlite3_config()] interface will return a ** non-zero [error code] if a discontinued or unsupported configuration option ** is invoked. ** **
    ** [[SQLITE_CONFIG_SINGLETHREAD]]
    SQLITE_CONFIG_SINGLETHREAD
    **
    There are no arguments to this option. ^This option sets the ** [threading mode] to Single-thread. In other words, it disables ** all mutexing and puts SQLite into a mode where it can only be used ** by a single thread. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** it is not possible to change the [threading mode] from its default ** value of Single-thread and so [sqlite3_config()] will return ** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD ** configuration option.
    ** ** [[SQLITE_CONFIG_MULTITHREAD]]
    SQLITE_CONFIG_MULTITHREAD
    **
    There are no arguments to this option. ^This option sets the ** [threading mode] to Multi-thread. In other words, it disables ** mutexing on [database connection] and [prepared statement] objects. ** The application is responsible for serializing access to ** [database connections] and [prepared statements]. But other mutexes ** are enabled so that SQLite will be safe to use in a multi-threaded ** environment as long as no two threads attempt to use the same ** [database connection] at the same time. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** it is not possible to set the Multi-thread [threading mode] and ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the ** SQLITE_CONFIG_MULTITHREAD configuration option.
    ** ** [[SQLITE_CONFIG_SERIALIZED]]
    SQLITE_CONFIG_SERIALIZED
    **
    There are no arguments to this option. ^This option sets the ** [threading mode] to Serialized. In other words, this option enables ** all mutexes including the recursive ** mutexes on [database connection] and [prepared statement] objects. ** In this mode (which is the default when SQLite is compiled with ** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access ** to [database connections] and [prepared statements] so that the ** application is free to use the same [database connection] or the ** same [prepared statement] in different threads at the same time. ** ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** it is not possible to set the Serialized [threading mode] and ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the ** SQLITE_CONFIG_SERIALIZED configuration option.
    ** ** [[SQLITE_CONFIG_MALLOC]]
    SQLITE_CONFIG_MALLOC
    **
    ^(The SQLITE_CONFIG_MALLOC option takes a single argument which is ** a pointer to an instance of the [sqlite3_mem_methods] structure. ** The argument specifies ** alternative low-level memory allocation routines to be used in place of ** the memory allocation routines built into SQLite.)^ ^SQLite makes ** its own private copy of the content of the [sqlite3_mem_methods] structure ** before the [sqlite3_config()] call returns.
    ** ** [[SQLITE_CONFIG_GETMALLOC]]
    SQLITE_CONFIG_GETMALLOC
    **
    ^(The SQLITE_CONFIG_GETMALLOC option takes a single argument which ** is a pointer to an instance of the [sqlite3_mem_methods] structure. ** The [sqlite3_mem_methods] ** structure is filled with the currently defined memory allocation routines.)^ ** This option can be used to overload the default memory allocation ** routines with a wrapper that simulations memory allocation failure or ** tracks memory usage, for example.
    ** ** [[SQLITE_CONFIG_SMALL_MALLOC]]
    SQLITE_CONFIG_SMALL_MALLOC
    **
    ^The SQLITE_CONFIG_SMALL_MALLOC option takes single argument of ** type int, interpreted as a boolean, which if true provides a hint to ** SQLite that it should avoid large memory allocations if possible. ** SQLite will run faster if it is free to make large memory allocations, ** but some application might prefer to run slower in exchange for ** guarantees about memory fragmentation that are possible if large ** allocations are avoided. This hint is normally off. **
    ** ** [[SQLITE_CONFIG_MEMSTATUS]]
    SQLITE_CONFIG_MEMSTATUS
    **
    ^The SQLITE_CONFIG_MEMSTATUS option takes single argument of type int, ** interpreted as a boolean, which enables or disables the collection of ** memory allocation statistics. ^(When memory allocation statistics are ** disabled, the following SQLite interfaces become non-operational: **
      **
    • [sqlite3_hard_heap_limit64()] **
    • [sqlite3_memory_used()] **
    • [sqlite3_memory_highwater()] **
    • [sqlite3_soft_heap_limit64()] **
    • [sqlite3_status64()] **
    )^ ** ^Memory allocation statistics are enabled by default unless SQLite is ** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory ** allocation statistics are disabled by default. **
    ** ** [[SQLITE_CONFIG_SCRATCH]]
    SQLITE_CONFIG_SCRATCH
    **
    The SQLITE_CONFIG_SCRATCH option is no longer used. **
    ** ** [[SQLITE_CONFIG_PAGECACHE]]
    SQLITE_CONFIG_PAGECACHE
    **
    ^The SQLITE_CONFIG_PAGECACHE option specifies a memory pool ** that SQLite can use for the database page cache with the default page ** cache implementation. ** This configuration option is a no-op if an application-defined page ** cache implementation is loaded using the [SQLITE_CONFIG_PCACHE2]. ** ^There are three arguments to SQLITE_CONFIG_PAGECACHE: A pointer to ** 8-byte aligned memory (pMem), the size of each page cache line (sz), ** and the number of cache lines (N). ** The sz argument should be the size of the largest database page ** (a power of two between 512 and 65536) plus some extra bytes for each ** page header. ^The number of extra bytes needed by the page header ** can be determined using [SQLITE_CONFIG_PCACHE_HDRSZ]. ** ^It is harmless, apart from the wasted memory, ** for the sz parameter to be larger than necessary. The pMem ** argument must be either a NULL pointer or a pointer to an 8-byte ** aligned block of memory of at least sz*N bytes, otherwise ** subsequent behavior is undefined. ** ^When pMem is not NULL, SQLite will strive to use the memory provided ** to satisfy page cache needs, falling back to [sqlite3_malloc()] if ** a page cache line is larger than sz bytes or if all of the pMem buffer ** is exhausted. ** ^If pMem is NULL and N is non-zero, then each database connection ** does an initial bulk allocation for page cache memory ** from [sqlite3_malloc()] sufficient for N cache lines if N is positive or ** of -1024*N bytes if N is negative, . ^If additional ** page cache memory is needed beyond what is provided by the initial ** allocation, then SQLite goes to [sqlite3_malloc()] separately for each ** additional cache line.
    ** ** [[SQLITE_CONFIG_HEAP]]
    SQLITE_CONFIG_HEAP
    **
    ^The SQLITE_CONFIG_HEAP option specifies a static memory buffer ** that SQLite will use for all of its dynamic memory allocation needs ** beyond those provided for by [SQLITE_CONFIG_PAGECACHE]. ** ^The SQLITE_CONFIG_HEAP option is only available if SQLite is compiled ** with either [SQLITE_ENABLE_MEMSYS3] or [SQLITE_ENABLE_MEMSYS5] and returns ** [SQLITE_ERROR] if invoked otherwise. ** ^There are three arguments to SQLITE_CONFIG_HEAP: ** An 8-byte aligned pointer to the memory, ** the number of bytes in the memory buffer, and the minimum allocation size. ** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts ** to using its default memory allocator (the system malloc() implementation), ** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the ** memory pointer is not NULL then the alternative memory ** allocator is engaged to handle all of SQLites memory allocation needs. ** The first pointer (the memory pointer) must be aligned to an 8-byte ** boundary or subsequent behavior of SQLite will be undefined. ** The minimum allocation size is capped at 2**12. Reasonable values ** for the minimum allocation size are 2**5 through 2**8.
    ** ** [[SQLITE_CONFIG_MUTEX]]
    SQLITE_CONFIG_MUTEX
    **
    ^(The SQLITE_CONFIG_MUTEX option takes a single argument which is a ** pointer to an instance of the [sqlite3_mutex_methods] structure. ** The argument specifies alternative low-level mutex routines to be used ** in place the mutex routines built into SQLite.)^ ^SQLite makes a copy of ** the content of the [sqlite3_mutex_methods] structure before the call to ** [sqlite3_config()] returns. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** the entire mutexing subsystem is omitted from the build and hence calls to ** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will ** return [SQLITE_ERROR].
    ** ** [[SQLITE_CONFIG_GETMUTEX]]
    SQLITE_CONFIG_GETMUTEX
    **
    ^(The SQLITE_CONFIG_GETMUTEX option takes a single argument which ** is a pointer to an instance of the [sqlite3_mutex_methods] structure. The ** [sqlite3_mutex_methods] ** structure is filled with the currently defined mutex routines.)^ ** This option can be used to overload the default mutex allocation ** routines with a wrapper used to track mutex usage for performance ** profiling or testing, for example. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** the entire mutexing subsystem is omitted from the build and hence calls to ** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will ** return [SQLITE_ERROR].
    ** ** [[SQLITE_CONFIG_LOOKASIDE]]
    SQLITE_CONFIG_LOOKASIDE
    **
    ^(The SQLITE_CONFIG_LOOKASIDE option takes two arguments that determine ** the default size of lookaside memory on each [database connection]. ** The first argument is the ** size of each lookaside buffer slot and the second is the number of ** slots allocated to each database connection.)^ ^(SQLITE_CONFIG_LOOKASIDE ** sets the default lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE] ** option to [sqlite3_db_config()] can be used to change the lookaside ** configuration on individual connections.)^
    ** ** [[SQLITE_CONFIG_PCACHE2]]
    SQLITE_CONFIG_PCACHE2
    **
    ^(The SQLITE_CONFIG_PCACHE2 option takes a single argument which is ** a pointer to an [sqlite3_pcache_methods2] object. This object specifies ** the interface to a custom page cache implementation.)^ ** ^SQLite makes a copy of the [sqlite3_pcache_methods2] object.
    ** ** [[SQLITE_CONFIG_GETPCACHE2]]
    SQLITE_CONFIG_GETPCACHE2
    **
    ^(The SQLITE_CONFIG_GETPCACHE2 option takes a single argument which ** is a pointer to an [sqlite3_pcache_methods2] object. SQLite copies of ** the current page cache implementation into that object.)^
    ** ** [[SQLITE_CONFIG_LOG]]
    SQLITE_CONFIG_LOG
    **
    The SQLITE_CONFIG_LOG option is used to configure the SQLite ** global [error log]. ** (^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a ** function with a call signature of void(*)(void*,int,const char*), ** and a pointer to void. ^If the function pointer is not NULL, it is ** invoked by [sqlite3_log()] to process each logging event. ^If the ** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op. ** ^The void pointer that is the second argument to SQLITE_CONFIG_LOG is ** passed through as the first parameter to the application-defined logger ** function whenever that function is invoked. ^The second parameter to ** the logger function is a copy of the first parameter to the corresponding ** [sqlite3_log()] call and is intended to be a [result code] or an ** [extended result code]. ^The third parameter passed to the logger is ** log message after formatting via [sqlite3_snprintf()]. ** The SQLite logging interface is not reentrant; the logger function ** supplied by the application must not invoke any SQLite interface. ** In a multi-threaded application, the application-defined logger ** function must be threadsafe.
    ** ** [[SQLITE_CONFIG_URI]]
    SQLITE_CONFIG_URI **
    ^(The SQLITE_CONFIG_URI option takes a single argument of type int. ** If non-zero, then URI handling is globally enabled. If the parameter is zero, ** then URI handling is globally disabled.)^ ^If URI handling is globally ** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()], ** [sqlite3_open16()] or ** specified as part of [ATTACH] commands are interpreted as URIs, regardless ** of whether or not the [SQLITE_OPEN_URI] flag is set when the database ** connection is opened. ^If it is globally disabled, filenames are ** only interpreted as URIs if the SQLITE_OPEN_URI flag is set when the ** database connection is opened. ^(By default, URI handling is globally ** disabled. The default value may be changed by compiling with the ** [SQLITE_USE_URI] symbol defined.)^ ** ** [[SQLITE_CONFIG_COVERING_INDEX_SCAN]]
    SQLITE_CONFIG_COVERING_INDEX_SCAN **
    ^The SQLITE_CONFIG_COVERING_INDEX_SCAN option takes a single integer ** argument which is interpreted as a boolean in order to enable or disable ** the use of covering indices for full table scans in the query optimizer. ** ^The default setting is determined ** by the [SQLITE_ALLOW_COVERING_INDEX_SCAN] compile-time option, or is "on" ** if that compile-time option is omitted. ** The ability to disable the use of covering indices for full table scans ** is because some incorrectly coded legacy applications might malfunction ** when the optimization is enabled. Providing the ability to ** disable the optimization allows the older, buggy application code to work ** without change even with newer versions of SQLite. ** ** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]] **
    SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE **
    These options are obsolete and should not be used by new code. ** They are retained for backwards compatibility but are now no-ops. **
    ** ** [[SQLITE_CONFIG_SQLLOG]] **
    SQLITE_CONFIG_SQLLOG **
    This option is only available if sqlite is compiled with the ** [SQLITE_ENABLE_SQLLOG] pre-processor macro defined. The first argument should ** be a pointer to a function of type void(*)(void*,sqlite3*,const char*, int). ** The second should be of type (void*). The callback is invoked by the library ** in three separate circumstances, identified by the value passed as the ** fourth parameter. If the fourth parameter is 0, then the database connection ** passed as the second argument has just been opened. The third argument ** points to a buffer containing the name of the main database file. If the ** fourth parameter is 1, then the SQL statement that the third parameter ** points to has just been executed. Or, if the fourth parameter is 2, then ** the connection being passed as the second parameter is being closed. The ** third parameter is passed NULL In this case. An example of using this ** configuration option can be seen in the "test_sqllog.c" source file in ** the canonical SQLite source tree.
    ** ** [[SQLITE_CONFIG_MMAP_SIZE]] **
    SQLITE_CONFIG_MMAP_SIZE **
    ^SQLITE_CONFIG_MMAP_SIZE takes two 64-bit integer (sqlite3_int64) values ** that are the default mmap size limit (the default setting for ** [PRAGMA mmap_size]) and the maximum allowed mmap size limit. ** ^The default setting can be overridden by each database connection using ** either the [PRAGMA mmap_size] command, or by using the ** [SQLITE_FCNTL_MMAP_SIZE] file control. ^(The maximum allowed mmap size ** will be silently truncated if necessary so that it does not exceed the ** compile-time maximum mmap size set by the ** [SQLITE_MAX_MMAP_SIZE] compile-time option.)^ ** ^If either argument to this option is negative, then that argument is ** changed to its compile-time default. ** ** [[SQLITE_CONFIG_WIN32_HEAPSIZE]] **
    SQLITE_CONFIG_WIN32_HEAPSIZE **
    ^The SQLITE_CONFIG_WIN32_HEAPSIZE option is only available if SQLite is ** compiled for Windows with the [SQLITE_WIN32_MALLOC] pre-processor macro ** defined. ^SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit unsigned integer value ** that specifies the maximum size of the created heap. ** ** [[SQLITE_CONFIG_PCACHE_HDRSZ]] **
    SQLITE_CONFIG_PCACHE_HDRSZ **
    ^The SQLITE_CONFIG_PCACHE_HDRSZ option takes a single parameter which ** is a pointer to an integer and writes into that integer the number of extra ** bytes per page required for each page in [SQLITE_CONFIG_PAGECACHE]. ** The amount of extra space required can change depending on the compiler, ** target platform, and SQLite version. ** ** [[SQLITE_CONFIG_PMASZ]] **
    SQLITE_CONFIG_PMASZ **
    ^The SQLITE_CONFIG_PMASZ option takes a single parameter which ** is an unsigned integer and sets the "Minimum PMA Size" for the multithreaded ** sorter to that integer. The default minimum PMA Size is set by the ** [SQLITE_SORTER_PMASZ] compile-time option. New threads are launched ** to help with sort operations when multithreaded sorting ** is enabled (using the [PRAGMA threads] command) and the amount of content ** to be sorted exceeds the page size times the minimum of the ** [PRAGMA cache_size] setting and this value. ** ** [[SQLITE_CONFIG_STMTJRNL_SPILL]] **
    SQLITE_CONFIG_STMTJRNL_SPILL **
    ^The SQLITE_CONFIG_STMTJRNL_SPILL option takes a single parameter which ** becomes the [statement journal] spill-to-disk threshold. ** [Statement journals] are held in memory until their size (in bytes) ** exceeds this threshold, at which point they are written to disk. ** Or if the threshold is -1, statement journals are always held ** exclusively in memory. ** Since many statement journals never become large, setting the spill ** threshold to a value such as 64KiB can greatly reduce the amount of ** I/O required to support statement rollback. ** The default value for this setting is controlled by the ** [SQLITE_STMTJRNL_SPILL] compile-time option. ** ** [[SQLITE_CONFIG_SORTERREF_SIZE]] **
    SQLITE_CONFIG_SORTERREF_SIZE **
    The SQLITE_CONFIG_SORTERREF_SIZE option accepts a single parameter ** of type (int) - the new value of the sorter-reference size threshold. ** Usually, when SQLite uses an external sort to order records according ** to an ORDER BY clause, all fields required by the caller are present in the ** sorted records. However, if SQLite determines based on the declared type ** of a table column that its values are likely to be very large - larger ** than the configured sorter-reference size threshold - then a reference ** is stored in each sorted record and the required column values loaded ** from the database as records are returned in sorted order. The default ** value for this option is to never use this optimization. Specifying a ** negative value for this option restores the default behaviour. ** This option is only available if SQLite is compiled with the ** [SQLITE_ENABLE_SORTER_REFERENCES] compile-time option. ** ** [[SQLITE_CONFIG_MEMDB_MAXSIZE]] **
    SQLITE_CONFIG_MEMDB_MAXSIZE **
    The SQLITE_CONFIG_MEMDB_MAXSIZE option accepts a single parameter ** [sqlite3_int64] parameter which is the default maximum size for an in-memory ** database created using [sqlite3_deserialize()]. This default maximum ** size can be adjusted up or down for individual databases using the ** [SQLITE_FCNTL_SIZE_LIMIT] [sqlite3_file_control|file-control]. If this ** configuration setting is never used, then the default maximum is determined ** by the [SQLITE_MEMDB_DEFAULT_MAXSIZE] compile-time option. If that ** compile-time option is not set, then the default maximum is 1073741824. **
    */ #define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */ #define SQLITE_CONFIG_MULTITHREAD 2 /* nil */ #define SQLITE_CONFIG_SERIALIZED 3 /* nil */ #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */ #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */ #define SQLITE_CONFIG_SCRATCH 6 /* No longer used */ #define SQLITE_CONFIG_PAGECACHE 7 /* void*, int sz, int N */ #define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */ #define SQLITE_CONFIG_MEMSTATUS 9 /* boolean */ #define SQLITE_CONFIG_MUTEX 10 /* sqlite3_mutex_methods* */ #define SQLITE_CONFIG_GETMUTEX 11 /* sqlite3_mutex_methods* */ /* previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. */ #define SQLITE_CONFIG_LOOKASIDE 13 /* int int */ #define SQLITE_CONFIG_PCACHE 14 /* no-op */ #define SQLITE_CONFIG_GETPCACHE 15 /* no-op */ #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ #define SQLITE_CONFIG_URI 17 /* int */ #define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */ #define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */ #define SQLITE_CONFIG_COVERING_INDEX_SCAN 20 /* int */ #define SQLITE_CONFIG_SQLLOG 21 /* xSqllog, void* */ #define SQLITE_CONFIG_MMAP_SIZE 22 /* sqlite3_int64, sqlite3_int64 */ #define SQLITE_CONFIG_WIN32_HEAPSIZE 23 /* int nByte */ #define SQLITE_CONFIG_PCACHE_HDRSZ 24 /* int *psz */ #define SQLITE_CONFIG_PMASZ 25 /* unsigned int szPma */ #define SQLITE_CONFIG_STMTJRNL_SPILL 26 /* int nByte */ #define SQLITE_CONFIG_SMALL_MALLOC 27 /* boolean */ #define SQLITE_CONFIG_SORTERREF_SIZE 28 /* int nByte */ #define SQLITE_CONFIG_MEMDB_MAXSIZE 29 /* sqlite3_int64 */ /* ** CAPI3REF: Database Connection Configuration Options ** ** These constants are the available integer configuration options that ** can be passed as the second argument to the [sqlite3_db_config()] interface. ** ** New configuration options may be added in future releases of SQLite. ** Existing configuration options might be discontinued. Applications ** should check the return code from [sqlite3_db_config()] to make sure that ** the call worked. ^The [sqlite3_db_config()] interface will return a ** non-zero [error code] if a discontinued or unsupported configuration option ** is invoked. ** **
    ** [[SQLITE_DBCONFIG_LOOKASIDE]] **
    SQLITE_DBCONFIG_LOOKASIDE
    **
    ^This option takes three additional arguments that determine the ** [lookaside memory allocator] configuration for the [database connection]. ** ^The first argument (the third parameter to [sqlite3_db_config()] is a ** pointer to a memory buffer to use for lookaside memory. ** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb ** may be NULL in which case SQLite will allocate the ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the ** size of each lookaside buffer slot. ^The third argument is the number of ** slots. The size of the buffer in the first argument must be greater than ** or equal to the product of the second and third arguments. The buffer ** must be aligned to an 8-byte boundary. ^If the second argument to ** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally ** rounded down to the next smaller multiple of 8. ^(The lookaside memory ** configuration for a database connection can only be changed when that ** connection is not currently using lookaside memory, or in other words ** when the "current value" returned by ** [sqlite3_db_status](D,[SQLITE_CONFIG_LOOKASIDE],...) is zero. ** Any attempt to change the lookaside memory configuration when lookaside ** memory is in use leaves the configuration unchanged and returns ** [SQLITE_BUSY].)^
    ** ** [[SQLITE_DBCONFIG_ENABLE_FKEY]] **
    SQLITE_DBCONFIG_ENABLE_FKEY
    **
    ^This option is used to enable or disable the enforcement of ** [foreign key constraints]. There should be two additional arguments. ** The first argument is an integer which is 0 to disable FK enforcement, ** positive to enable FK enforcement or negative to leave FK enforcement ** unchanged. The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether FK enforcement is off or on ** following this call. The second parameter may be a NULL pointer, in ** which case the FK enforcement setting is not reported back.
    ** ** [[SQLITE_DBCONFIG_ENABLE_TRIGGER]] **
    SQLITE_DBCONFIG_ENABLE_TRIGGER
    **
    ^This option is used to enable or disable [CREATE TRIGGER | triggers]. ** There should be two additional arguments. ** The first argument is an integer which is 0 to disable triggers, ** positive to enable triggers or negative to leave the setting unchanged. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether triggers are disabled or enabled ** following this call. The second parameter may be a NULL pointer, in ** which case the trigger setting is not reported back. ** **

    Originally this option disabled all triggers. ^(However, since ** SQLite version 3.35.0, TEMP triggers are still allowed even if ** this option is off. So, in other words, this option now only disables ** triggers in the main database schema or in the schemas of ATTACH-ed ** databases.)^

    ** ** [[SQLITE_DBCONFIG_ENABLE_VIEW]] **
    SQLITE_DBCONFIG_ENABLE_VIEW
    **
    ^This option is used to enable or disable [CREATE VIEW | views]. ** There should be two additional arguments. ** The first argument is an integer which is 0 to disable views, ** positive to enable views or negative to leave the setting unchanged. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether views are disabled or enabled ** following this call. The second parameter may be a NULL pointer, in ** which case the view setting is not reported back. ** **

    Originally this option disabled all views. ^(However, since ** SQLite version 3.35.0, TEMP views are still allowed even if ** this option is off. So, in other words, this option now only disables ** views in the main database schema or in the schemas of ATTACH-ed ** databases.)^

    ** ** [[SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER]] **
    SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER
    **
    ^This option is used to enable or disable the ** [fts3_tokenizer()] function which is part of the ** [FTS3] full-text search engine extension. ** There should be two additional arguments. ** The first argument is an integer which is 0 to disable fts3_tokenizer() or ** positive to enable fts3_tokenizer() or negative to leave the setting ** unchanged. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether fts3_tokenizer is disabled or enabled ** following this call. The second parameter may be a NULL pointer, in ** which case the new setting is not reported back.
    ** ** [[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION]] **
    SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION
    **
    ^This option is used to enable or disable the [sqlite3_load_extension()] ** interface independently of the [load_extension()] SQL function. ** The [sqlite3_enable_load_extension()] API enables or disables both the ** C-API [sqlite3_load_extension()] and the SQL function [load_extension()]. ** There should be two additional arguments. ** When the first argument to this interface is 1, then only the C-API is ** enabled and the SQL function remains disabled. If the first argument to ** this interface is 0, then both the C-API and the SQL function are disabled. ** If the first argument is -1, then no changes are made to state of either the ** C-API or the SQL function. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether [sqlite3_load_extension()] interface ** is disabled or enabled following this call. The second parameter may ** be a NULL pointer, in which case the new setting is not reported back. **
    ** ** [[SQLITE_DBCONFIG_MAINDBNAME]]
    SQLITE_DBCONFIG_MAINDBNAME
    **
    ^This option is used to change the name of the "main" database ** schema. ^The sole argument is a pointer to a constant UTF8 string ** which will become the new schema name in place of "main". ^SQLite ** does not make a copy of the new main schema name string, so the application ** must ensure that the argument passed into this DBCONFIG option is unchanged ** until after the database connection closes. **
    ** ** [[SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE]] **
    SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE
    **
    Usually, when a database in wal mode is closed or detached from a ** database handle, SQLite checks if this will mean that there are now no ** connections at all to the database. If so, it performs a checkpoint ** operation before closing the connection. This option may be used to ** override this behaviour. The first parameter passed to this operation ** is an integer - positive to disable checkpoints-on-close, or zero (the ** default) to enable them, and negative to leave the setting unchanged. ** The second parameter is a pointer to an integer ** into which is written 0 or 1 to indicate whether checkpoints-on-close ** have been disabled - 0 if they are not disabled, 1 if they are. **
    ** ** [[SQLITE_DBCONFIG_ENABLE_QPSG]]
    SQLITE_DBCONFIG_ENABLE_QPSG
    **
    ^(The SQLITE_DBCONFIG_ENABLE_QPSG option activates or deactivates ** the [query planner stability guarantee] (QPSG). When the QPSG is active, ** a single SQL query statement will always use the same algorithm regardless ** of values of [bound parameters].)^ The QPSG disables some query optimizations ** that look at the values of bound parameters, which can make some queries ** slower. But the QPSG has the advantage of more predictable behavior. With ** the QPSG active, SQLite will always use the same query plan in the field as ** was used during testing in the lab. ** The first argument to this setting is an integer which is 0 to disable ** the QPSG, positive to enable QPSG, or negative to leave the setting ** unchanged. The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether the QPSG is disabled or enabled ** following this call. **
    ** ** [[SQLITE_DBCONFIG_TRIGGER_EQP]]
    SQLITE_DBCONFIG_TRIGGER_EQP
    **
    By default, the output of EXPLAIN QUERY PLAN commands does not ** include output for any operations performed by trigger programs. This ** option is used to set or clear (the default) a flag that governs this ** behavior. The first parameter passed to this operation is an integer - ** positive to enable output for trigger programs, or zero to disable it, ** or negative to leave the setting unchanged. ** The second parameter is a pointer to an integer into which is written ** 0 or 1 to indicate whether output-for-triggers has been disabled - 0 if ** it is not disabled, 1 if it is. **
    ** ** [[SQLITE_DBCONFIG_RESET_DATABASE]]
    SQLITE_DBCONFIG_RESET_DATABASE
    **
    Set the SQLITE_DBCONFIG_RESET_DATABASE flag and then run ** [VACUUM] in order to reset a database back to an empty database ** with no schema and no content. The following process works even for ** a badly corrupted database file: **
      **
    1. If the database connection is newly opened, make sure it has read the ** database schema by preparing then discarding some query against the ** database, or calling sqlite3_table_column_metadata(), ignoring any ** errors. This step is only necessary if the application desires to keep ** the database in WAL mode after the reset if it was in WAL mode before ** the reset. **
    2. sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 1, 0); **
    3. [sqlite3_exec](db, "[VACUUM]", 0, 0, 0); **
    4. sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 0, 0); **
    ** Because resetting a database is destructive and irreversible, the ** process requires the use of this obscure API and multiple steps to help ** ensure that it does not happen by accident. ** ** [[SQLITE_DBCONFIG_DEFENSIVE]]
    SQLITE_DBCONFIG_DEFENSIVE
    **
    The SQLITE_DBCONFIG_DEFENSIVE option activates or deactivates the ** "defensive" flag for a database connection. When the defensive ** flag is enabled, language features that allow ordinary SQL to ** deliberately corrupt the database file are disabled. The disabled ** features include but are not limited to the following: **
      **
    • The [PRAGMA writable_schema=ON] statement. **
    • The [PRAGMA journal_mode=OFF] statement. **
    • Writes to the [sqlite_dbpage] virtual table. **
    • Direct writes to [shadow tables]. **
    **
    ** ** [[SQLITE_DBCONFIG_WRITABLE_SCHEMA]]
    SQLITE_DBCONFIG_WRITABLE_SCHEMA
    **
    The SQLITE_DBCONFIG_WRITABLE_SCHEMA option activates or deactivates the ** "writable_schema" flag. This has the same effect and is logically equivalent ** to setting [PRAGMA writable_schema=ON] or [PRAGMA writable_schema=OFF]. ** The first argument to this setting is an integer which is 0 to disable ** the writable_schema, positive to enable writable_schema, or negative to ** leave the setting unchanged. The second parameter is a pointer to an ** integer into which is written 0 or 1 to indicate whether the writable_schema ** is enabled or disabled following this call. **
    ** ** [[SQLITE_DBCONFIG_LEGACY_ALTER_TABLE]] **
    SQLITE_DBCONFIG_LEGACY_ALTER_TABLE
    **
    The SQLITE_DBCONFIG_LEGACY_ALTER_TABLE option activates or deactivates ** the legacy behavior of the [ALTER TABLE RENAME] command such it ** behaves as it did prior to [version 3.24.0] (2018-06-04). See the ** "Compatibility Notice" on the [ALTER TABLE RENAME documentation] for ** additional information. This feature can also be turned on and off ** using the [PRAGMA legacy_alter_table] statement. **
    ** ** [[SQLITE_DBCONFIG_DQS_DML]] **
    SQLITE_DBCONFIG_DQS_DML **
    The SQLITE_DBCONFIG_DQS_DML option activates or deactivates ** the legacy [double-quoted string literal] misfeature for DML statements ** only, that is DELETE, INSERT, SELECT, and UPDATE statements. The ** default value of this setting is determined by the [-DSQLITE_DQS] ** compile-time option. **
    ** ** [[SQLITE_DBCONFIG_DQS_DDL]] **
    SQLITE_DBCONFIG_DQS_DDL **
    The SQLITE_DBCONFIG_DQS option activates or deactivates ** the legacy [double-quoted string literal] misfeature for DDL statements, ** such as CREATE TABLE and CREATE INDEX. The ** default value of this setting is determined by the [-DSQLITE_DQS] ** compile-time option. **
    ** ** [[SQLITE_DBCONFIG_TRUSTED_SCHEMA]] **
    SQLITE_DBCONFIG_TRUSTED_SCHEMA **
    The SQLITE_DBCONFIG_TRUSTED_SCHEMA option tells SQLite to ** assume that database schemas are untainted by malicious content. ** When the SQLITE_DBCONFIG_TRUSTED_SCHEMA option is disabled, SQLite ** takes additional defensive steps to protect the application from harm ** including: **
      **
    • Prohibit the use of SQL functions inside triggers, views, ** CHECK constraints, DEFAULT clauses, expression indexes, ** partial indexes, or generated columns ** unless those functions are tagged with [SQLITE_INNOCUOUS]. **
    • Prohibit the use of virtual tables inside of triggers or views ** unless those virtual tables are tagged with [SQLITE_VTAB_INNOCUOUS]. **
    ** This setting defaults to "on" for legacy compatibility, however ** all applications are advised to turn it off if possible. This setting ** can also be controlled using the [PRAGMA trusted_schema] statement. **
    ** ** [[SQLITE_DBCONFIG_LEGACY_FILE_FORMAT]] **
    SQLITE_DBCONFIG_LEGACY_FILE_FORMAT **
    The SQLITE_DBCONFIG_LEGACY_FILE_FORMAT option activates or deactivates ** the legacy file format flag. When activated, this flag causes all newly ** created database file to have a schema format version number (the 4-byte ** integer found at offset 44 into the database header) of 1. This in turn ** means that the resulting database file will be readable and writable by ** any SQLite version back to 3.0.0 ([dateof:3.0.0]). Without this setting, ** newly created databases are generally not understandable by SQLite versions ** prior to 3.3.0 ([dateof:3.3.0]). As these words are written, there ** is now scarcely any need to generated database files that are compatible ** all the way back to version 3.0.0, and so this setting is of little ** practical use, but is provided so that SQLite can continue to claim the ** ability to generate new database files that are compatible with version ** 3.0.0. **

    Note that when the SQLITE_DBCONFIG_LEGACY_FILE_FORMAT setting is on, ** the [VACUUM] command will fail with an obscure error when attempting to ** process a table with generated columns and a descending index. This is ** not considered a bug since SQLite versions 3.3.0 and earlier do not support ** either generated columns or decending indexes. **

    **
    */ #define SQLITE_DBCONFIG_MAINDBNAME 1000 /* const char* */ #define SQLITE_DBCONFIG_LOOKASIDE 1001 /* void* int int */ #define SQLITE_DBCONFIG_ENABLE_FKEY 1002 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_TRIGGER 1003 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER 1004 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION 1005 /* int int* */ #define SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE 1006 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_QPSG 1007 /* int int* */ #define SQLITE_DBCONFIG_TRIGGER_EQP 1008 /* int int* */ #define SQLITE_DBCONFIG_RESET_DATABASE 1009 /* int int* */ #define SQLITE_DBCONFIG_DEFENSIVE 1010 /* int int* */ #define SQLITE_DBCONFIG_WRITABLE_SCHEMA 1011 /* int int* */ #define SQLITE_DBCONFIG_LEGACY_ALTER_TABLE 1012 /* int int* */ #define SQLITE_DBCONFIG_DQS_DML 1013 /* int int* */ #define SQLITE_DBCONFIG_DQS_DDL 1014 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_VIEW 1015 /* int int* */ #define SQLITE_DBCONFIG_LEGACY_FILE_FORMAT 1016 /* int int* */ #define SQLITE_DBCONFIG_TRUSTED_SCHEMA 1017 /* int int* */ #define SQLITE_DBCONFIG_MAX 1017 /* Largest DBCONFIG */ /* ** CAPI3REF: Enable Or Disable Extended Result Codes ** METHOD: sqlite3 ** ** ^The sqlite3_extended_result_codes() routine enables or disables the ** [extended result codes] feature of SQLite. ^The extended result ** codes are disabled by default for historical compatibility. */ SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff); /* ** CAPI3REF: Last Insert Rowid ** METHOD: sqlite3 ** ** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables) ** has a unique 64-bit signed ** integer key called the [ROWID | "rowid"]. ^The rowid is always available ** as an undeclared column named ROWID, OID, or _ROWID_ as long as those ** names are not also used by explicitly declared columns. ^If ** the table has a column of type [INTEGER PRIMARY KEY] then that column ** is another alias for the rowid. ** ** ^The sqlite3_last_insert_rowid(D) interface usually returns the [rowid] of ** the most recent successful [INSERT] into a rowid table or [virtual table] ** on database connection D. ^Inserts into [WITHOUT ROWID] tables are not ** recorded. ^If no successful [INSERT]s into rowid tables have ever occurred ** on the database connection D, then sqlite3_last_insert_rowid(D) returns ** zero. ** ** As well as being set automatically as rows are inserted into database ** tables, the value returned by this function may be set explicitly by ** [sqlite3_set_last_insert_rowid()] ** ** Some virtual table implementations may INSERT rows into rowid tables as ** part of committing a transaction (e.g. to flush data accumulated in memory ** to disk). In this case subsequent calls to this function return the rowid ** associated with these internal INSERT operations, which leads to ** unintuitive results. Virtual table implementations that do write to rowid ** tables in this way can avoid this problem by restoring the original ** rowid value using [sqlite3_set_last_insert_rowid()] before returning ** control to the user. ** ** ^(If an [INSERT] occurs within a trigger then this routine will ** return the [rowid] of the inserted row as long as the trigger is ** running. Once the trigger program ends, the value returned ** by this routine reverts to what it was before the trigger was fired.)^ ** ** ^An [INSERT] that fails due to a constraint violation is not a ** successful [INSERT] and does not change the value returned by this ** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, ** and INSERT OR ABORT make no changes to the return value of this ** routine when their insertion fails. ^(When INSERT OR REPLACE ** encounters a constraint violation, it does not fail. The ** INSERT continues to completion after deleting rows that caused ** the constraint problem so INSERT OR REPLACE will always change ** the return value of this interface.)^ ** ** ^For the purposes of this routine, an [INSERT] is considered to ** be successful even if it is subsequently rolled back. ** ** This function is accessible to SQL statements via the ** [last_insert_rowid() SQL function]. ** ** If a separate thread performs a new [INSERT] on the same ** database connection while the [sqlite3_last_insert_rowid()] ** function is running and thus changes the last insert [rowid], ** then the value returned by [sqlite3_last_insert_rowid()] is ** unpredictable and might not equal either the old or the new ** last insert [rowid]. */ SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*); /* ** CAPI3REF: Set the Last Insert Rowid value. ** METHOD: sqlite3 ** ** The sqlite3_set_last_insert_rowid(D, R) method allows the application to ** set the value returned by calling sqlite3_last_insert_rowid(D) to R ** without inserting a row into the database. */ SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64); /* ** CAPI3REF: Count The Number Of Rows Modified ** METHOD: sqlite3 ** ** ^These functions return the number of rows modified, inserted or ** deleted by the most recently completed INSERT, UPDATE or DELETE ** statement on the database connection specified by the only parameter. ** The two functions are identical except for the type of the return value ** and that if the number of rows modified by the most recent INSERT, UPDATE ** or DELETE is greater than the maximum value supported by type "int", then ** the return value of sqlite3_changes() is undefined. ^Executing any other ** type of SQL statement does not modify the value returned by these functions. ** ** ^Only changes made directly by the INSERT, UPDATE or DELETE statement are ** considered - auxiliary changes caused by [CREATE TRIGGER | triggers], ** [foreign key actions] or [REPLACE] constraint resolution are not counted. ** ** Changes to a view that are intercepted by ** [INSTEAD OF trigger | INSTEAD OF triggers] are not counted. ^The value ** returned by sqlite3_changes() immediately after an INSERT, UPDATE or ** DELETE statement run on a view is always zero. Only changes made to real ** tables are counted. ** ** Things are more complicated if the sqlite3_changes() function is ** executed while a trigger program is running. This may happen if the ** program uses the [changes() SQL function], or if some other callback ** function invokes sqlite3_changes() directly. Essentially: ** **
      **
    • ^(Before entering a trigger program the value returned by ** sqlite3_changes() function is saved. After the trigger program ** has finished, the original value is restored.)^ ** **
    • ^(Within a trigger program each INSERT, UPDATE and DELETE ** statement sets the value returned by sqlite3_changes() ** upon completion as normal. Of course, this value will not include ** any changes performed by sub-triggers, as the sqlite3_changes() ** value will be saved and restored after each sub-trigger has run.)^ **
    ** ** ^This means that if the changes() SQL function (or similar) is used ** by the first INSERT, UPDATE or DELETE statement within a trigger, it ** returns the value as set when the calling statement began executing. ** ^If it is used by the second or subsequent such statement within a trigger ** program, the value returned reflects the number of rows modified by the ** previous INSERT, UPDATE or DELETE statement within the same trigger. ** ** If a separate thread makes changes on the same database connection ** while [sqlite3_changes()] is running then the value returned ** is unpredictable and not meaningful. ** ** See also: **
      **
    • the [sqlite3_total_changes()] interface **
    • the [count_changes pragma] **
    • the [changes() SQL function] **
    • the [data_version pragma] **
    */ SQLITE_API int sqlite3_changes(sqlite3*); SQLITE_API sqlite3_int64 sqlite3_changes64(sqlite3*); /* ** CAPI3REF: Total Number Of Rows Modified ** METHOD: sqlite3 ** ** ^These functions return the total number of rows inserted, modified or ** deleted by all [INSERT], [UPDATE] or [DELETE] statements completed ** since the database connection was opened, including those executed as ** part of trigger programs. The two functions are identical except for the ** type of the return value and that if the number of rows modified by the ** connection exceeds the maximum value supported by type "int", then ** the return value of sqlite3_total_changes() is undefined. ^Executing ** any other type of SQL statement does not affect the value returned by ** sqlite3_total_changes(). ** ** ^Changes made as part of [foreign key actions] are included in the ** count, but those made as part of REPLACE constraint resolution are ** not. ^Changes to a view that are intercepted by INSTEAD OF triggers ** are not counted. ** ** The [sqlite3_total_changes(D)] interface only reports the number ** of rows that changed due to SQL statement run against database ** connection D. Any changes by other database connections are ignored. ** To detect changes against a database file from other database ** connections use the [PRAGMA data_version] command or the ** [SQLITE_FCNTL_DATA_VERSION] [file control]. ** ** If a separate thread makes changes on the same database connection ** while [sqlite3_total_changes()] is running then the value ** returned is unpredictable and not meaningful. ** ** See also: **
      **
    • the [sqlite3_changes()] interface **
    • the [count_changes pragma] **
    • the [changes() SQL function] **
    • the [data_version pragma] **
    • the [SQLITE_FCNTL_DATA_VERSION] [file control] **
    */ SQLITE_API int sqlite3_total_changes(sqlite3*); SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*); /* ** CAPI3REF: Interrupt A Long-Running Query ** METHOD: sqlite3 ** ** ^This function causes any pending database operation to abort and ** return at its earliest opportunity. This routine is typically ** called in response to a user action such as pressing "Cancel" ** or Ctrl-C where the user wants a long query operation to halt ** immediately. ** ** ^It is safe to call this routine from a thread different from the ** thread that is currently running the database operation. But it ** is not safe to call this routine with a [database connection] that ** is closed or might close before sqlite3_interrupt() returns. ** ** ^If an SQL operation is very nearly finished at the time when ** sqlite3_interrupt() is called, then it might not have an opportunity ** to be interrupted and might continue to completion. ** ** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT]. ** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE ** that is inside an explicit transaction, then the entire transaction ** will be rolled back automatically. ** ** ^The sqlite3_interrupt(D) call is in effect until all currently running ** SQL statements on [database connection] D complete. ^Any new SQL statements ** that are started after the sqlite3_interrupt() call and before the ** running statement count reaches zero are interrupted as if they had been ** running prior to the sqlite3_interrupt() call. ^New SQL statements ** that are started after the running statement count reaches zero are ** not effected by the sqlite3_interrupt(). ** ^A call to sqlite3_interrupt(D) that occurs when there are no running ** SQL statements is a no-op and has no effect on SQL statements ** that are started after the sqlite3_interrupt() call returns. */ SQLITE_API void sqlite3_interrupt(sqlite3*); /* ** CAPI3REF: Determine If An SQL Statement Is Complete ** ** These routines are useful during command-line input to determine if the ** currently entered text seems to form a complete SQL statement or ** if additional input is needed before sending the text into ** SQLite for parsing. ^These routines return 1 if the input string ** appears to be a complete SQL statement. ^A statement is judged to be ** complete if it ends with a semicolon token and is not a prefix of a ** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within ** string literals or quoted identifier names or comments are not ** independent tokens (they are part of the token in which they are ** embedded) and thus do not count as a statement terminator. ^Whitespace ** and comments that follow the final semicolon are ignored. ** ** ^These routines return 0 if the statement is incomplete. ^If a ** memory allocation fails, then SQLITE_NOMEM is returned. ** ** ^These routines do not parse the SQL statements thus ** will not detect syntactically incorrect SQL. ** ** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior ** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked ** automatically by sqlite3_complete16(). If that initialization fails, ** then the return value from sqlite3_complete16() will be non-zero ** regardless of whether or not the input SQL is complete.)^ ** ** The input to [sqlite3_complete()] must be a zero-terminated ** UTF-8 string. ** ** The input to [sqlite3_complete16()] must be a zero-terminated ** UTF-16 string in native byte order. */ SQLITE_API int sqlite3_complete(const char *sql); SQLITE_API int sqlite3_complete16(const void *sql); /* ** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors ** KEYWORDS: {busy-handler callback} {busy handler} ** METHOD: sqlite3 ** ** ^The sqlite3_busy_handler(D,X,P) routine sets a callback function X ** that might be invoked with argument P whenever ** an attempt is made to access a database table associated with ** [database connection] D when another thread ** or process has the table locked. ** The sqlite3_busy_handler() interface is used to implement ** [sqlite3_busy_timeout()] and [PRAGMA busy_timeout]. ** ** ^If the busy callback is NULL, then [SQLITE_BUSY] ** is returned immediately upon encountering the lock. ^If the busy callback ** is not NULL, then the callback might be invoked with two arguments. ** ** ^The first argument to the busy handler is a copy of the void* pointer which ** is the third argument to sqlite3_busy_handler(). ^The second argument to ** the busy handler callback is the number of times that the busy handler has ** been invoked previously for the same locking event. ^If the ** busy callback returns 0, then no additional attempts are made to ** access the database and [SQLITE_BUSY] is returned ** to the application. ** ^If the callback returns non-zero, then another attempt ** is made to access the database and the cycle repeats. ** ** The presence of a busy handler does not guarantee that it will be invoked ** when there is lock contention. ^If SQLite determines that invoking the busy ** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY] ** to the application instead of invoking the ** busy handler. ** Consider a scenario where one process is holding a read lock that ** it is trying to promote to a reserved lock and ** a second process is holding a reserved lock that it is trying ** to promote to an exclusive lock. The first process cannot proceed ** because it is blocked by the second and the second process cannot ** proceed because it is blocked by the first. If both processes ** invoke the busy handlers, neither will make any progress. Therefore, ** SQLite returns [SQLITE_BUSY] for the first process, hoping that this ** will induce the first process to release its read lock and allow ** the second process to proceed. ** ** ^The default busy callback is NULL. ** ** ^(There can only be a single busy handler defined for each ** [database connection]. Setting a new busy handler clears any ** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()] ** or evaluating [PRAGMA busy_timeout=N] will change the ** busy handler and thus clear any previously set busy handler. ** ** The busy callback should not take any actions which modify the ** database connection that invoked the busy handler. In other words, ** the busy handler is not reentrant. Any such actions ** result in undefined behavior. ** ** A busy handler must not close the database connection ** or [prepared statement] that invoked the busy handler. */ SQLITE_API int sqlite3_busy_handler(sqlite3*,int(*)(void*,int),void*); /* ** CAPI3REF: Set A Busy Timeout ** METHOD: sqlite3 ** ** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps ** for a specified amount of time when a table is locked. ^The handler ** will sleep multiple times until at least "ms" milliseconds of sleeping ** have accumulated. ^After at least "ms" milliseconds of sleeping, ** the handler returns 0 which causes [sqlite3_step()] to return ** [SQLITE_BUSY]. ** ** ^Calling this routine with an argument less than or equal to zero ** turns off all busy handlers. ** ** ^(There can only be a single busy handler for a particular ** [database connection] at any given moment. If another busy handler ** was defined (using [sqlite3_busy_handler()]) prior to calling ** this routine, that other busy handler is cleared.)^ ** ** See also: [PRAGMA busy_timeout] */ SQLITE_API int sqlite3_busy_timeout(sqlite3*, int ms); /* ** CAPI3REF: Convenience Routines For Running Queries ** METHOD: sqlite3 ** ** This is a legacy interface that is preserved for backwards compatibility. ** Use of this interface is not recommended. ** ** Definition: A result table is memory data structure created by the ** [sqlite3_get_table()] interface. A result table records the ** complete query results from one or more queries. ** ** The table conceptually has a number of rows and columns. But ** these numbers are not part of the result table itself. These ** numbers are obtained separately. Let N be the number of rows ** and M be the number of columns. ** ** A result table is an array of pointers to zero-terminated UTF-8 strings. ** There are (N+1)*M elements in the array. The first M pointers point ** to zero-terminated strings that contain the names of the columns. ** The remaining entries all point to query results. NULL values result ** in NULL pointers. All other values are in their UTF-8 zero-terminated ** string representation as returned by [sqlite3_column_text()]. ** ** A result table might consist of one or more memory allocations. ** It is not safe to pass a result table directly to [sqlite3_free()]. ** A result table should be deallocated using [sqlite3_free_table()]. ** ** ^(As an example of the result table format, suppose a query result ** is as follows: ** **
    **        Name        | Age
    **        -----------------------
    **        Alice       | 43
    **        Bob         | 28
    **        Cindy       | 21
    ** 
    ** ** There are two columns (M==2) and three rows (N==3). Thus the ** result table has 8 entries. Suppose the result table is stored ** in an array named azResult. Then azResult holds this content: ** **
    **        azResult[0] = "Name";
    **        azResult[1] = "Age";
    **        azResult[2] = "Alice";
    **        azResult[3] = "43";
    **        azResult[4] = "Bob";
    **        azResult[5] = "28";
    **        azResult[6] = "Cindy";
    **        azResult[7] = "21";
    ** 
    )^ ** ** ^The sqlite3_get_table() function evaluates one or more ** semicolon-separated SQL statements in the zero-terminated UTF-8 ** string of its 2nd parameter and returns a result table to the ** pointer given in its 3rd parameter. ** ** After the application has finished with the result from sqlite3_get_table(), ** it must pass the result table pointer to sqlite3_free_table() in order to ** release the memory that was malloced. Because of the way the ** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling ** function must not try to call [sqlite3_free()] directly. Only ** [sqlite3_free_table()] is able to release the memory properly and safely. ** ** The sqlite3_get_table() interface is implemented as a wrapper around ** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access ** to any internal data structures of SQLite. It uses only the public ** interface defined here. As a consequence, errors that occur in the ** wrapper layer outside of the internal [sqlite3_exec()] call are not ** reflected in subsequent calls to [sqlite3_errcode()] or ** [sqlite3_errmsg()]. */ SQLITE_API int sqlite3_get_table( sqlite3 *db, /* An open database */ const char *zSql, /* SQL to be evaluated */ char ***pazResult, /* Results of the query */ int *pnRow, /* Number of result rows written here */ int *pnColumn, /* Number of result columns written here */ char **pzErrmsg /* Error msg written here */ ); SQLITE_API void sqlite3_free_table(char **result); /* ** CAPI3REF: Formatted String Printing Functions ** ** These routines are work-alikes of the "printf()" family of functions ** from the standard C library. ** These routines understand most of the common formatting options from ** the standard library printf() ** plus some additional non-standard formats ([%q], [%Q], [%w], and [%z]). ** See the [built-in printf()] documentation for details. ** ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their ** results into memory obtained from [sqlite3_malloc64()]. ** The strings returned by these two routines should be ** released by [sqlite3_free()]. ^Both routines return a ** NULL pointer if [sqlite3_malloc64()] is unable to allocate enough ** memory to hold the resulting string. ** ** ^(The sqlite3_snprintf() routine is similar to "snprintf()" from ** the standard C library. The result is written into the ** buffer supplied as the second parameter whose size is given by ** the first parameter. Note that the order of the ** first two parameters is reversed from snprintf().)^ This is an ** historical accident that cannot be fixed without breaking ** backwards compatibility. ^(Note also that sqlite3_snprintf() ** returns a pointer to its buffer instead of the number of ** characters actually written into the buffer.)^ We admit that ** the number of characters written would be a more useful return ** value but we cannot change the implementation of sqlite3_snprintf() ** now without breaking compatibility. ** ** ^As long as the buffer size is greater than zero, sqlite3_snprintf() ** guarantees that the buffer is always zero-terminated. ^The first ** parameter "n" is the total size of the buffer, including space for ** the zero terminator. So the longest string that can be completely ** written will be n-1 characters. ** ** ^The sqlite3_vsnprintf() routine is a varargs version of sqlite3_snprintf(). ** ** See also: [built-in printf()], [printf() SQL function] */ SQLITE_API char *sqlite3_mprintf(const char*,...); SQLITE_API char *sqlite3_vmprintf(const char*, va_list); SQLITE_API char *sqlite3_snprintf(int,char*,const char*, ...); SQLITE_API char *sqlite3_vsnprintf(int,char*,const char*, va_list); /* ** CAPI3REF: Memory Allocation Subsystem ** ** The SQLite core uses these three routines for all of its own ** internal memory allocation needs. "Core" in the previous sentence ** does not include operating-system specific [VFS] implementation. The ** Windows VFS uses native malloc() and free() for some operations. ** ** ^The sqlite3_malloc() routine returns a pointer to a block ** of memory at least N bytes in length, where N is the parameter. ** ^If sqlite3_malloc() is unable to obtain sufficient free ** memory, it returns a NULL pointer. ^If the parameter N to ** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns ** a NULL pointer. ** ** ^The sqlite3_malloc64(N) routine works just like ** sqlite3_malloc(N) except that N is an unsigned 64-bit integer instead ** of a signed 32-bit integer. ** ** ^Calling sqlite3_free() with a pointer previously returned ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so ** that it might be reused. ^The sqlite3_free() routine is ** a no-op if is called with a NULL pointer. Passing a NULL pointer ** to sqlite3_free() is harmless. After being freed, memory ** should neither be read nor written. Even reading previously freed ** memory might result in a segmentation fault or other severe error. ** Memory corruption, a segmentation fault, or other severe error ** might result if sqlite3_free() is called with a non-NULL pointer that ** was not obtained from sqlite3_malloc() or sqlite3_realloc(). ** ** ^The sqlite3_realloc(X,N) interface attempts to resize a ** prior memory allocation X to be at least N bytes. ** ^If the X parameter to sqlite3_realloc(X,N) ** is a NULL pointer then its behavior is identical to calling ** sqlite3_malloc(N). ** ^If the N parameter to sqlite3_realloc(X,N) is zero or ** negative then the behavior is exactly the same as calling ** sqlite3_free(X). ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation ** of at least N bytes in size or NULL if insufficient memory is available. ** ^If M is the size of the prior allocation, then min(N,M) bytes ** of the prior allocation are copied into the beginning of buffer returned ** by sqlite3_realloc(X,N) and the prior allocation is freed. ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the ** prior allocation is not freed. ** ** ^The sqlite3_realloc64(X,N) interfaces works the same as ** sqlite3_realloc(X,N) except that N is a 64-bit unsigned integer instead ** of a 32-bit signed integer. ** ** ^If X is a memory allocation previously obtained from sqlite3_malloc(), ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then ** sqlite3_msize(X) returns the size of that memory allocation in bytes. ** ^The value returned by sqlite3_msize(X) might be larger than the number ** of bytes requested when X was allocated. ^If X is a NULL pointer then ** sqlite3_msize(X) returns zero. If X points to something that is not ** the beginning of memory allocation, or if it points to a formerly ** valid memory allocation that has now been freed, then the behavior ** of sqlite3_msize(X) is undefined and possibly harmful. ** ** ^The memory returned by sqlite3_malloc(), sqlite3_realloc(), ** sqlite3_malloc64(), and sqlite3_realloc64() ** is always aligned to at least an 8 byte boundary, or to a ** 4 byte boundary if the [SQLITE_4_BYTE_ALIGNED_MALLOC] compile-time ** option is used. ** ** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()] ** must be either NULL or else pointers obtained from a prior ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have ** not yet been released. ** ** The application must not read or write any part of ** a block of memory after it has been released using ** [sqlite3_free()] or [sqlite3_realloc()]. */ SQLITE_API void *sqlite3_malloc(int); SQLITE_API void *sqlite3_malloc64(sqlite3_uint64); SQLITE_API void *sqlite3_realloc(void*, int); SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64); SQLITE_API void sqlite3_free(void*); SQLITE_API sqlite3_uint64 sqlite3_msize(void*); /* ** CAPI3REF: Memory Allocator Statistics ** ** SQLite provides these two interfaces for reporting on the status ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()] ** routines, which form the built-in memory allocation subsystem. ** ** ^The [sqlite3_memory_used()] routine returns the number of bytes ** of memory currently outstanding (malloced but not freed). ** ^The [sqlite3_memory_highwater()] routine returns the maximum ** value of [sqlite3_memory_used()] since the high-water mark ** was last reset. ^The values returned by [sqlite3_memory_used()] and ** [sqlite3_memory_highwater()] include any overhead ** added by SQLite in its implementation of [sqlite3_malloc()], ** but not overhead added by the any underlying system library ** routines that [sqlite3_malloc()] may call. ** ** ^The memory high-water mark is reset to the current value of ** [sqlite3_memory_used()] if and only if the parameter to ** [sqlite3_memory_highwater()] is true. ^The value returned ** by [sqlite3_memory_highwater(1)] is the high-water mark ** prior to the reset. */ SQLITE_API sqlite3_int64 sqlite3_memory_used(void); SQLITE_API sqlite3_int64 sqlite3_memory_highwater(int resetFlag); /* ** CAPI3REF: Pseudo-Random Number Generator ** ** SQLite contains a high-quality pseudo-random number generator (PRNG) used to ** select random [ROWID | ROWIDs] when inserting new records into a table that ** already uses the largest possible [ROWID]. The PRNG is also used for ** the built-in random() and randomblob() SQL functions. This interface allows ** applications to access the same PRNG for other purposes. ** ** ^A call to this routine stores N bytes of randomness into buffer P. ** ^The P parameter can be a NULL pointer. ** ** ^If this routine has not been previously called or if the previous ** call had N less than one or a NULL pointer for P, then the PRNG is ** seeded using randomness obtained from the xRandomness method of ** the default [sqlite3_vfs] object. ** ^If the previous call to this routine had an N of 1 or more and a ** non-NULL P then the pseudo-randomness is generated ** internally and without recourse to the [sqlite3_vfs] xRandomness ** method. */ SQLITE_API void sqlite3_randomness(int N, void *P); /* ** CAPI3REF: Compile-Time Authorization Callbacks ** METHOD: sqlite3 ** KEYWORDS: {authorizer callback} ** ** ^This routine registers an authorizer callback with a particular ** [database connection], supplied in the first argument. ** ^The authorizer callback is invoked as SQL statements are being compiled ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], ** [sqlite3_prepare_v3()], [sqlite3_prepare16()], [sqlite3_prepare16_v2()], ** and [sqlite3_prepare16_v3()]. ^At various ** points during the compilation process, as logic is being created ** to perform various actions, the authorizer callback is invoked to ** see if those actions are allowed. ^The authorizer callback should ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the ** specific action but allow the SQL statement to continue to be ** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be ** rejected with an error. ^If the authorizer callback returns ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY] ** then the [sqlite3_prepare_v2()] or equivalent call that triggered ** the authorizer will fail with an error message. ** ** When the callback returns [SQLITE_OK], that means the operation ** requested is ok. ^When the callback returns [SQLITE_DENY], the ** [sqlite3_prepare_v2()] or equivalent call that triggered the ** authorizer will fail with an error message explaining that ** access is denied. ** ** ^The first parameter to the authorizer callback is a copy of the third ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter ** to the callback is an integer [SQLITE_COPY | action code] that specifies ** the particular action to be authorized. ^The third through sixth parameters ** to the callback are either NULL pointers or zero-terminated strings ** that contain additional details about the action to be authorized. ** Applications must always be prepared to encounter a NULL pointer in any ** of the third through the sixth parameters of the authorization callback. ** ** ^If the action code is [SQLITE_READ] ** and the callback returns [SQLITE_IGNORE] then the ** [prepared statement] statement is constructed to substitute ** a NULL value in place of the table column that would have ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE] ** return can be used to deny an untrusted user access to individual ** columns of a table. ** ^When a table is referenced by a [SELECT] but no column values are ** extracted from that table (for example in a query like ** "SELECT count(*) FROM tab") then the [SQLITE_READ] authorizer callback ** is invoked once for that table with a column name that is an empty string. ** ^If the action code is [SQLITE_DELETE] and the callback returns ** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the ** [truncate optimization] is disabled and all rows are deleted individually. ** ** An authorizer is used when [sqlite3_prepare | preparing] ** SQL statements from an untrusted source, to ensure that the SQL statements ** do not try to access data they are not allowed to see, or that they do not ** try to execute malicious statements that damage the database. For ** example, an application may allow a user to enter arbitrary ** SQL queries for evaluation by a database. But the application does ** not want the user to be able to make arbitrary changes to the ** database. An authorizer could then be put in place while the ** user-entered SQL is being [sqlite3_prepare | prepared] that ** disallows everything except [SELECT] statements. ** ** Applications that need to process SQL from untrusted sources ** might also consider lowering resource limits using [sqlite3_limit()] ** and limiting database size using the [max_page_count] [PRAGMA] ** in addition to using an authorizer. ** ** ^(Only a single authorizer can be in place on a database connection ** at a time. Each call to sqlite3_set_authorizer overrides the ** previous call.)^ ^Disable the authorizer by installing a NULL callback. ** The authorizer is disabled by default. ** ** The authorizer callback must not do anything that will modify ** the database connection that invoked the authorizer callback. ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their ** database connections for the meaning of "modify" in this paragraph. ** ** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the ** statement might be re-prepared during [sqlite3_step()] due to a ** schema change. Hence, the application should ensure that the ** correct authorizer callback remains in place during the [sqlite3_step()]. ** ** ^Note that the authorizer callback is invoked only during ** [sqlite3_prepare()] or its variants. Authorization is not ** performed during statement evaluation in [sqlite3_step()], unless ** as stated in the previous paragraph, sqlite3_step() invokes ** sqlite3_prepare_v2() to reprepare a statement after a schema change. */ SQLITE_API int sqlite3_set_authorizer( sqlite3*, int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), void *pUserData ); /* ** CAPI3REF: Authorizer Return Codes ** ** The [sqlite3_set_authorizer | authorizer callback function] must ** return either [SQLITE_OK] or one of these two constants in order ** to signal SQLite whether or not the action is permitted. See the ** [sqlite3_set_authorizer | authorizer documentation] for additional ** information. ** ** Note that SQLITE_IGNORE is also used as a [conflict resolution mode] ** returned from the [sqlite3_vtab_on_conflict()] interface. */ #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ /* ** CAPI3REF: Authorizer Action Codes ** ** The [sqlite3_set_authorizer()] interface registers a callback function ** that is invoked to authorize certain SQL statement actions. The ** second parameter to the callback is an integer code that specifies ** what action is being authorized. These are the integer action codes that ** the authorizer callback may be passed. ** ** These action code values signify what kind of operation is to be ** authorized. The 3rd and 4th parameters to the authorization ** callback function will be parameters or NULL depending on which of these ** codes is used as the second parameter. ^(The 5th parameter to the ** authorizer callback is the name of the database ("main", "temp", ** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback ** is the name of the inner-most trigger or view that is responsible for ** the access attempt or NULL if this access attempt is directly from ** top-level SQL code. */ /******************************************* 3rd ************ 4th ***********/ #define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */ #define SQLITE_CREATE_TABLE 2 /* Table Name NULL */ #define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */ #define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */ #define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */ #define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */ #define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */ #define SQLITE_CREATE_VIEW 8 /* View Name NULL */ #define SQLITE_DELETE 9 /* Table Name NULL */ #define SQLITE_DROP_INDEX 10 /* Index Name Table Name */ #define SQLITE_DROP_TABLE 11 /* Table Name NULL */ #define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */ #define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */ #define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */ #define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */ #define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */ #define SQLITE_DROP_VIEW 17 /* View Name NULL */ #define SQLITE_INSERT 18 /* Table Name NULL */ #define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */ #define SQLITE_READ 20 /* Table Name Column Name */ #define SQLITE_SELECT 21 /* NULL NULL */ #define SQLITE_TRANSACTION 22 /* Operation NULL */ #define SQLITE_UPDATE 23 /* Table Name Column Name */ #define SQLITE_ATTACH 24 /* Filename NULL */ #define SQLITE_DETACH 25 /* Database Name NULL */ #define SQLITE_ALTER_TABLE 26 /* Database Name Table Name */ #define SQLITE_REINDEX 27 /* Index Name NULL */ #define SQLITE_ANALYZE 28 /* Table Name NULL */ #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */ #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */ #define SQLITE_FUNCTION 31 /* NULL Function Name */ #define SQLITE_SAVEPOINT 32 /* Operation Savepoint Name */ #define SQLITE_COPY 0 /* No longer used */ #define SQLITE_RECURSIVE 33 /* NULL NULL */ /* ** CAPI3REF: Tracing And Profiling Functions ** METHOD: sqlite3 ** ** These routines are deprecated. Use the [sqlite3_trace_v2()] interface ** instead of the routines described here. ** ** These routines register callback functions that can be used for ** tracing and profiling the execution of SQL statements. ** ** ^The callback function registered by sqlite3_trace() is invoked at ** various times when an SQL statement is being run by [sqlite3_step()]. ** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the ** SQL statement text as the statement first begins executing. ** ^(Additional sqlite3_trace() callbacks might occur ** as each triggered subprogram is entered. The callbacks for triggers ** contain a UTF-8 SQL comment that identifies the trigger.)^ ** ** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit ** the length of [bound parameter] expansion in the output of sqlite3_trace(). ** ** ^The callback function registered by sqlite3_profile() is invoked ** as each SQL statement finishes. ^The profile callback contains ** the original statement text and an estimate of wall-clock time ** of how long that statement took to run. ^The profile callback ** time is in units of nanoseconds, however the current implementation ** is only capable of millisecond resolution so the six least significant ** digits in the time are meaningless. Future versions of SQLite ** might provide greater resolution on the profiler callback. Invoking ** either [sqlite3_trace()] or [sqlite3_trace_v2()] will cancel the ** profile callback. */ SQLITE_API SQLITE_DEPRECATED void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*); SQLITE_API SQLITE_DEPRECATED void *sqlite3_profile(sqlite3*, void(*xProfile)(void*,const char*,sqlite3_uint64), void*); /* ** CAPI3REF: SQL Trace Event Codes ** KEYWORDS: SQLITE_TRACE ** ** These constants identify classes of events that can be monitored ** using the [sqlite3_trace_v2()] tracing logic. The M argument ** to [sqlite3_trace_v2(D,M,X,P)] is an OR-ed combination of one or more of ** the following constants. ^The first argument to the trace callback ** is one of the following constants. ** ** New tracing constants may be added in future releases. ** ** ^A trace callback has four arguments: xCallback(T,C,P,X). ** ^The T argument is one of the integer type codes above. ** ^The C argument is a copy of the context pointer passed in as the ** fourth argument to [sqlite3_trace_v2()]. ** The P and X arguments are pointers whose meanings depend on T. ** **
    ** [[SQLITE_TRACE_STMT]]
    SQLITE_TRACE_STMT
    **
    ^An SQLITE_TRACE_STMT callback is invoked when a prepared statement ** first begins running and possibly at other times during the ** execution of the prepared statement, such as at the start of each ** trigger subprogram. ^The P argument is a pointer to the ** [prepared statement]. ^The X argument is a pointer to a string which ** is the unexpanded SQL text of the prepared statement or an SQL comment ** that indicates the invocation of a trigger. ^The callback can compute ** the same text that would have been returned by the legacy [sqlite3_trace()] ** interface by using the X argument when X begins with "--" and invoking ** [sqlite3_expanded_sql(P)] otherwise. ** ** [[SQLITE_TRACE_PROFILE]]
    SQLITE_TRACE_PROFILE
    **
    ^An SQLITE_TRACE_PROFILE callback provides approximately the same ** information as is provided by the [sqlite3_profile()] callback. ** ^The P argument is a pointer to the [prepared statement] and the ** X argument points to a 64-bit integer which is the estimated of ** the number of nanosecond that the prepared statement took to run. ** ^The SQLITE_TRACE_PROFILE callback is invoked when the statement finishes. ** ** [[SQLITE_TRACE_ROW]]
    SQLITE_TRACE_ROW
    **
    ^An SQLITE_TRACE_ROW callback is invoked whenever a prepared ** statement generates a single row of result. ** ^The P argument is a pointer to the [prepared statement] and the ** X argument is unused. ** ** [[SQLITE_TRACE_CLOSE]]
    SQLITE_TRACE_CLOSE
    **
    ^An SQLITE_TRACE_CLOSE callback is invoked when a database ** connection closes. ** ^The P argument is a pointer to the [database connection] object ** and the X argument is unused. **
    */ #define SQLITE_TRACE_STMT 0x01 #define SQLITE_TRACE_PROFILE 0x02 #define SQLITE_TRACE_ROW 0x04 #define SQLITE_TRACE_CLOSE 0x08 /* ** CAPI3REF: SQL Trace Hook ** METHOD: sqlite3 ** ** ^The sqlite3_trace_v2(D,M,X,P) interface registers a trace callback ** function X against [database connection] D, using property mask M ** and context pointer P. ^If the X callback is ** NULL or if the M mask is zero, then tracing is disabled. The ** M argument should be the bitwise OR-ed combination of ** zero or more [SQLITE_TRACE] constants. ** ** ^Each call to either sqlite3_trace() or sqlite3_trace_v2() overrides ** (cancels) any prior calls to sqlite3_trace() or sqlite3_trace_v2(). ** ** ^The X callback is invoked whenever any of the events identified by ** mask M occur. ^The integer return value from the callback is currently ** ignored, though this may change in future releases. Callback ** implementations should return zero to ensure future compatibility. ** ** ^A trace callback is invoked with four arguments: callback(T,C,P,X). ** ^The T argument is one of the [SQLITE_TRACE] ** constants to indicate why the callback was invoked. ** ^The C argument is a copy of the context pointer. ** The P and X arguments are pointers whose meanings depend on T. ** ** The sqlite3_trace_v2() interface is intended to replace the legacy ** interfaces [sqlite3_trace()] and [sqlite3_profile()], both of which ** are deprecated. */ SQLITE_API int sqlite3_trace_v2( sqlite3*, unsigned uMask, int(*xCallback)(unsigned,void*,void*,void*), void *pCtx ); /* ** CAPI3REF: Query Progress Callbacks ** METHOD: sqlite3 ** ** ^The sqlite3_progress_handler(D,N,X,P) interface causes the callback ** function X to be invoked periodically during long running calls to ** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for ** database connection D. An example use for this ** interface is to keep a GUI updated during a large query. ** ** ^The parameter P is passed through as the only parameter to the ** callback function X. ^The parameter N is the approximate number of ** [virtual machine instructions] that are evaluated between successive ** invocations of the callback X. ^If N is less than one then the progress ** handler is disabled. ** ** ^Only a single progress handler may be defined at one time per ** [database connection]; setting a new progress handler cancels the ** old one. ^Setting parameter X to NULL disables the progress handler. ** ^The progress handler is also disabled by setting N to a value less ** than 1. ** ** ^If the progress callback returns non-zero, the operation is ** interrupted. This feature can be used to implement a ** "Cancel" button on a GUI progress dialog box. ** ** The progress handler callback must not do anything that will modify ** the database connection that invoked the progress handler. ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their ** database connections for the meaning of "modify" in this paragraph. ** */ SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*); /* ** CAPI3REF: Opening A New Database Connection ** CONSTRUCTOR: sqlite3 ** ** ^These routines open an SQLite database file as specified by the ** filename argument. ^The filename argument is interpreted as UTF-8 for ** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte ** order for sqlite3_open16(). ^(A [database connection] handle is usually ** returned in *ppDb, even if an error occurs. The only exception is that ** if SQLite is unable to allocate memory to hold the [sqlite3] object, ** a NULL will be written into *ppDb instead of a pointer to the [sqlite3] ** object.)^ ^(If the database is opened (and/or created) successfully, then ** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The ** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain ** an English language description of the error following a failure of any ** of the sqlite3_open() routines. ** ** ^The default encoding will be UTF-8 for databases created using ** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases ** created using sqlite3_open16() will be UTF-16 in the native byte order. ** ** Whether or not an error occurs when it is opened, resources ** associated with the [database connection] handle should be released by ** passing it to [sqlite3_close()] when it is no longer required. ** ** The sqlite3_open_v2() interface works like sqlite3_open() ** except that it accepts two additional parameters for additional control ** over the new database connection. ^(The flags parameter to ** sqlite3_open_v2() must include, at a minimum, one of the following ** three flag combinations:)^ ** **
    ** ^(
    [SQLITE_OPEN_READONLY]
    **
    The database is opened in read-only mode. If the database does not ** already exist, an error is returned.
    )^ ** ** ^(
    [SQLITE_OPEN_READWRITE]
    **
    The database is opened for reading and writing if possible, or reading ** only if the file is write protected by the operating system. In either ** case the database must already exist, otherwise an error is returned.
    )^ ** ** ^(
    [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]
    **
    The database is opened for reading and writing, and is created if ** it does not already exist. This is the behavior that is always used for ** sqlite3_open() and sqlite3_open16().
    )^ **
    ** ** In addition to the required flags, the following optional flags are ** also supported: ** **
    ** ^(
    [SQLITE_OPEN_URI]
    **
    The filename can be interpreted as a URI if this flag is set.
    )^ ** ** ^(
    [SQLITE_OPEN_MEMORY]
    **
    The database will be opened as an in-memory database. The database ** is named by the "filename" argument for the purposes of cache-sharing, ** if shared cache mode is enabled, but the "filename" is otherwise ignored. **
    )^ ** ** ^(
    [SQLITE_OPEN_NOMUTEX]
    **
    The new database connection will use the "multi-thread" ** [threading mode].)^ This means that separate threads are allowed ** to use SQLite at the same time, as long as each thread is using ** a different [database connection]. ** ** ^(
    [SQLITE_OPEN_FULLMUTEX]
    **
    The new database connection will use the "serialized" ** [threading mode].)^ This means the multiple threads can safely ** attempt to use the same database connection at the same time. ** (Mutexes will block any actual concurrency, but in this mode ** there is no harm in trying.) ** ** ^(
    [SQLITE_OPEN_SHAREDCACHE]
    **
    The database is opened [shared cache] enabled, overriding ** the default shared cache setting provided by ** [sqlite3_enable_shared_cache()].)^ ** ** ^(
    [SQLITE_OPEN_PRIVATECACHE]
    **
    The database is opened [shared cache] disabled, overriding ** the default shared cache setting provided by ** [sqlite3_enable_shared_cache()].)^ ** ** [[OPEN_EXRESCODE]] ^(
    [SQLITE_OPEN_EXRESCODE]
    **
    The database connection comes up in "extended result code mode". ** In other words, the database behaves has if ** [sqlite3_extended_result_codes(db,1)] where called on the database ** connection as soon as the connection is created. In addition to setting ** the extended result code mode, this flag also causes [sqlite3_open_v2()] ** to return an extended result code.
    ** ** [[OPEN_NOFOLLOW]] ^(
    [SQLITE_OPEN_NOFOLLOW]
    **
    The database filename is not allowed to be a symbolic link
    **
    )^ ** ** If the 3rd parameter to sqlite3_open_v2() is not one of the ** required combinations shown above optionally combined with other ** [SQLITE_OPEN_READONLY | SQLITE_OPEN_* bits] ** then the behavior is undefined. Historic versions of SQLite ** have silently ignored surplus bits in the flags parameter to ** sqlite3_open_v2(), however that behavior might not be carried through ** into future versions of SQLite and so applications should not rely ** upon it. Note in particular that the SQLITE_OPEN_EXCLUSIVE flag is a no-op ** for sqlite3_open_v2(). The SQLITE_OPEN_EXCLUSIVE does *not* cause ** the open to fail if the database already exists. The SQLITE_OPEN_EXCLUSIVE ** flag is intended for use by the [sqlite3_vfs|VFS interface] only, and not ** by sqlite3_open_v2(). ** ** ^The fourth parameter to sqlite3_open_v2() is the name of the ** [sqlite3_vfs] object that defines the operating system interface that ** the new database connection should use. ^If the fourth parameter is ** a NULL pointer then the default [sqlite3_vfs] object is used. ** ** ^If the filename is ":memory:", then a private, temporary in-memory database ** is created for the connection. ^This in-memory database will vanish when ** the database connection is closed. Future versions of SQLite might ** make use of additional special filenames that begin with the ":" character. ** It is recommended that when a database filename actually does begin with ** a ":" character you should prefix the filename with a pathname such as ** "./" to avoid ambiguity. ** ** ^If the filename is an empty string, then a private, temporary ** on-disk database will be created. ^This private database will be ** automatically deleted as soon as the database connection is closed. ** ** [[URI filenames in sqlite3_open()]]

    URI Filenames

    ** ** ^If [URI filename] interpretation is enabled, and the filename argument ** begins with "file:", then the filename is interpreted as a URI. ^URI ** filename interpretation is enabled if the [SQLITE_OPEN_URI] flag is ** set in the third argument to sqlite3_open_v2(), or if it has ** been enabled globally using the [SQLITE_CONFIG_URI] option with the ** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option. ** URI filename interpretation is turned off ** by default, but future releases of SQLite might enable URI filename ** interpretation by default. See "[URI filenames]" for additional ** information. ** ** URI filenames are parsed according to RFC 3986. ^If the URI contains an ** authority, then it must be either an empty string or the string ** "localhost". ^If the authority is not an empty string or "localhost", an ** error is returned to the caller. ^The fragment component of a URI, if ** present, is ignored. ** ** ^SQLite uses the path component of the URI as the name of the disk file ** which contains the database. ^If the path begins with a '/' character, ** then it is interpreted as an absolute path. ^If the path does not begin ** with a '/' (meaning that the authority section is omitted from the URI) ** then the path is interpreted as a relative path. ** ^(On windows, the first component of an absolute path ** is a drive specification (e.g. "C:").)^ ** ** [[core URI query parameters]] ** The query component of a URI may contain parameters that are interpreted ** either by SQLite itself, or by a [VFS | custom VFS implementation]. ** SQLite and its built-in [VFSes] interpret the ** following query parameters: ** **
      **
    • vfs: ^The "vfs" parameter may be used to specify the name of ** a VFS object that provides the operating system interface that should ** be used to access the database file on disk. ^If this option is set to ** an empty string the default VFS object is used. ^Specifying an unknown ** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is ** present, then the VFS specified by the option takes precedence over ** the value passed as the fourth parameter to sqlite3_open_v2(). ** **
    • mode: ^(The mode parameter may be set to either "ro", "rw", ** "rwc", or "memory". Attempting to set it to any other value is ** an error)^. ** ^If "ro" is specified, then the database is opened for read-only ** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the ** third argument to sqlite3_open_v2(). ^If the mode option is set to ** "rw", then the database is opened for read-write (but not create) ** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had ** been set. ^Value "rwc" is equivalent to setting both ** SQLITE_OPEN_READWRITE and SQLITE_OPEN_CREATE. ^If the mode option is ** set to "memory" then a pure [in-memory database] that never reads ** or writes from disk is used. ^It is an error to specify a value for ** the mode parameter that is less restrictive than that specified by ** the flags passed in the third parameter to sqlite3_open_v2(). ** **
    • cache: ^The cache parameter may be set to either "shared" or ** "private". ^Setting it to "shared" is equivalent to setting the ** SQLITE_OPEN_SHAREDCACHE bit in the flags argument passed to ** sqlite3_open_v2(). ^Setting the cache parameter to "private" is ** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit. ** ^If sqlite3_open_v2() is used and the "cache" parameter is present in ** a URI filename, its value overrides any behavior requested by setting ** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag. ** **
    • psow: ^The psow parameter indicates whether or not the ** [powersafe overwrite] property does or does not apply to the ** storage media on which the database file resides. ** **
    • nolock: ^The nolock parameter is a boolean query parameter ** which if set disables file locking in rollback journal modes. This ** is useful for accessing a database on a filesystem that does not ** support locking. Caution: Database corruption might result if two ** or more processes write to the same database and any one of those ** processes uses nolock=1. ** **
    • immutable: ^The immutable parameter is a boolean query ** parameter that indicates that the database file is stored on ** read-only media. ^When immutable is set, SQLite assumes that the ** database file cannot be changed, even by a process with higher ** privilege, and so the database is opened read-only and all locking ** and change detection is disabled. Caution: Setting the immutable ** property on a database file that does in fact change can result ** in incorrect query results and/or [SQLITE_CORRUPT] errors. ** See also: [SQLITE_IOCAP_IMMUTABLE]. ** **
    ** ** ^Specifying an unknown parameter in the query component of a URI is not an ** error. Future versions of SQLite might understand additional query ** parameters. See "[query parameters with special meaning to SQLite]" for ** additional information. ** ** [[URI filename examples]]

    URI filename examples

    ** ** **
    URI filenames Results **
    file:data.db ** Open the file "data.db" in the current directory. **
    file:/home/fred/data.db
    ** file:///home/fred/data.db
    ** file://localhost/home/fred/data.db
    ** Open the database file "/home/fred/data.db". **
    file://darkstar/home/fred/data.db ** An error. "darkstar" is not a recognized authority. **
    ** file:///C:/Documents%20and%20Settings/fred/Desktop/data.db ** Windows only: Open the file "data.db" on fred's desktop on drive ** C:. Note that the %20 escaping in this example is not strictly ** necessary - space characters can be used literally ** in URI filenames. **
    file:data.db?mode=ro&cache=private ** Open file "data.db" in the current directory for read-only access. ** Regardless of whether or not shared-cache mode is enabled by ** default, use a private cache. **
    file:/home/fred/data.db?vfs=unix-dotfile ** Open file "/home/fred/data.db". Use the special VFS "unix-dotfile" ** that uses dot-files in place of posix advisory locking. **
    file:data.db?mode=readonly ** An error. "readonly" is not a valid option for the "mode" parameter. ** Use "ro" instead: "file:data.db?mode=ro". **
    ** ** ^URI hexadecimal escape sequences (%HH) are supported within the path and ** query components of a URI. A hexadecimal escape sequence consists of a ** percent sign - "%" - followed by exactly two hexadecimal digits ** specifying an octet value. ^Before the path or query components of a ** URI filename are interpreted, they are encoded using UTF-8 and all ** hexadecimal escape sequences replaced by a single byte containing the ** corresponding octet. If this process generates an invalid UTF-8 encoding, ** the results are undefined. ** ** Note to Windows users: The encoding used for the filename argument ** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever ** codepage is currently defined. Filenames containing international ** characters must be converted to UTF-8 prior to passing them into ** sqlite3_open() or sqlite3_open_v2(). ** ** Note to Windows Runtime users: The temporary directory must be set ** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various ** features that require the use of temporary files may fail. ** ** See also: [sqlite3_temp_directory] */ SQLITE_API int sqlite3_open( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb /* OUT: SQLite db handle */ ); SQLITE_API int sqlite3_open16( const void *filename, /* Database filename (UTF-16) */ sqlite3 **ppDb /* OUT: SQLite db handle */ ); SQLITE_API int sqlite3_open_v2( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb, /* OUT: SQLite db handle */ int flags, /* Flags */ const char *zVfs /* Name of VFS module to use */ ); /* ** CAPI3REF: Obtain Values For URI Parameters ** ** These are utility routines, useful to [VFS|custom VFS implementations], ** that check if a database file was a URI that contained a specific query ** parameter, and if so obtains the value of that query parameter. ** ** The first parameter to these interfaces (hereafter referred to ** as F) must be one of: **
      **
    • A database filename pointer created by the SQLite core and ** passed into the xOpen() method of a VFS implemention, or **
    • A filename obtained from [sqlite3_db_filename()], or **
    • A new filename constructed using [sqlite3_create_filename()]. **
    ** If the F parameter is not one of the above, then the behavior is ** undefined and probably undesirable. Older versions of SQLite were ** more tolerant of invalid F parameters than newer versions. ** ** If F is a suitable filename (as described in the previous paragraph) ** and if P is the name of the query parameter, then ** sqlite3_uri_parameter(F,P) returns the value of the P ** parameter if it exists or a NULL pointer if P does not appear as a ** query parameter on F. If P is a query parameter of F and it ** has no explicit value, then sqlite3_uri_parameter(F,P) returns ** a pointer to an empty string. ** ** The sqlite3_uri_boolean(F,P,B) routine assumes that P is a boolean ** parameter and returns true (1) or false (0) according to the value ** of P. The sqlite3_uri_boolean(F,P,B) routine returns true (1) if the ** value of query parameter P is one of "yes", "true", or "on" in any ** case or if the value begins with a non-zero number. The ** sqlite3_uri_boolean(F,P,B) routines returns false (0) if the value of ** query parameter P is one of "no", "false", or "off" in any case or ** if the value begins with a numeric zero. If P is not a query ** parameter on F or if the value of P does not match any of the ** above, then sqlite3_uri_boolean(F,P,B) returns (B!=0). ** ** The sqlite3_uri_int64(F,P,D) routine converts the value of P into a ** 64-bit signed integer and returns that integer, or D if P does not ** exist. If the value of P is something other than an integer, then ** zero is returned. ** ** The sqlite3_uri_key(F,N) returns a pointer to the name (not ** the value) of the N-th query parameter for filename F, or a NULL ** pointer if N is less than zero or greater than the number of query ** parameters minus 1. The N value is zero-based so N should be 0 to obtain ** the name of the first query parameter, 1 for the second parameter, and ** so forth. ** ** If F is a NULL pointer, then sqlite3_uri_parameter(F,P) returns NULL and ** sqlite3_uri_boolean(F,P,B) returns B. If F is not a NULL pointer and ** is not a database file pathname pointer that the SQLite core passed ** into the xOpen VFS method, then the behavior of this routine is undefined ** and probably undesirable. ** ** Beginning with SQLite [version 3.31.0] ([dateof:3.31.0]) the input F ** parameter can also be the name of a rollback journal file or WAL file ** in addition to the main database file. Prior to version 3.31.0, these ** routines would only work if F was the name of the main database file. ** When the F parameter is the name of the rollback journal or WAL file, ** it has access to all the same query parameters as were found on the ** main database file. ** ** See the [URI filename] documentation for additional information. */ SQLITE_API const char *sqlite3_uri_parameter(const char *zFilename, const char *zParam); SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault); SQLITE_API sqlite3_int64 sqlite3_uri_int64(const char*, const char*, sqlite3_int64); SQLITE_API const char *sqlite3_uri_key(const char *zFilename, int N); /* ** CAPI3REF: Translate filenames ** ** These routines are available to [VFS|custom VFS implementations] for ** translating filenames between the main database file, the journal file, ** and the WAL file. ** ** If F is the name of an sqlite database file, journal file, or WAL file ** passed by the SQLite core into the VFS, then sqlite3_filename_database(F) ** returns the name of the corresponding database file. ** ** If F is the name of an sqlite database file, journal file, or WAL file ** passed by the SQLite core into the VFS, or if F is a database filename ** obtained from [sqlite3_db_filename()], then sqlite3_filename_journal(F) ** returns the name of the corresponding rollback journal file. ** ** If F is the name of an sqlite database file, journal file, or WAL file ** that was passed by the SQLite core into the VFS, or if F is a database ** filename obtained from [sqlite3_db_filename()], then ** sqlite3_filename_wal(F) returns the name of the corresponding ** WAL file. ** ** In all of the above, if F is not the name of a database, journal or WAL ** filename passed into the VFS from the SQLite core and F is not the ** return value from [sqlite3_db_filename()], then the result is ** undefined and is likely a memory access violation. */ SQLITE_API const char *sqlite3_filename_database(const char*); SQLITE_API const char *sqlite3_filename_journal(const char*); SQLITE_API const char *sqlite3_filename_wal(const char*); /* ** CAPI3REF: Database File Corresponding To A Journal ** ** ^If X is the name of a rollback or WAL-mode journal file that is ** passed into the xOpen method of [sqlite3_vfs], then ** sqlite3_database_file_object(X) returns a pointer to the [sqlite3_file] ** object that represents the main database file. ** ** This routine is intended for use in custom [VFS] implementations ** only. It is not a general-purpose interface. ** The argument sqlite3_file_object(X) must be a filename pointer that ** has been passed into [sqlite3_vfs].xOpen method where the ** flags parameter to xOpen contains one of the bits ** [SQLITE_OPEN_MAIN_JOURNAL] or [SQLITE_OPEN_WAL]. Any other use ** of this routine results in undefined and probably undesirable ** behavior. */ SQLITE_API sqlite3_file *sqlite3_database_file_object(const char*); /* ** CAPI3REF: Create and Destroy VFS Filenames ** ** These interfces are provided for use by [VFS shim] implementations and ** are not useful outside of that context. ** ** The sqlite3_create_filename(D,J,W,N,P) allocates memory to hold a version of ** database filename D with corresponding journal file J and WAL file W and ** with N URI parameters key/values pairs in the array P. The result from ** sqlite3_create_filename(D,J,W,N,P) is a pointer to a database filename that ** is safe to pass to routines like: **
      **
    • [sqlite3_uri_parameter()], **
    • [sqlite3_uri_boolean()], **
    • [sqlite3_uri_int64()], **
    • [sqlite3_uri_key()], **
    • [sqlite3_filename_database()], **
    • [sqlite3_filename_journal()], or **
    • [sqlite3_filename_wal()]. **
    ** If a memory allocation error occurs, sqlite3_create_filename() might ** return a NULL pointer. The memory obtained from sqlite3_create_filename(X) ** must be released by a corresponding call to sqlite3_free_filename(Y). ** ** The P parameter in sqlite3_create_filename(D,J,W,N,P) should be an array ** of 2*N pointers to strings. Each pair of pointers in this array corresponds ** to a key and value for a query parameter. The P parameter may be a NULL ** pointer if N is zero. None of the 2*N pointers in the P array may be ** NULL pointers and key pointers should not be empty strings. ** None of the D, J, or W parameters to sqlite3_create_filename(D,J,W,N,P) may ** be NULL pointers, though they can be empty strings. ** ** The sqlite3_free_filename(Y) routine releases a memory allocation ** previously obtained from sqlite3_create_filename(). Invoking ** sqlite3_free_filename(Y) where Y is a NULL pointer is a harmless no-op. ** ** If the Y parameter to sqlite3_free_filename(Y) is anything other ** than a NULL pointer or a pointer previously acquired from ** sqlite3_create_filename(), then bad things such as heap ** corruption or segfaults may occur. The value Y should not be ** used again after sqlite3_free_filename(Y) has been called. This means ** that if the [sqlite3_vfs.xOpen()] method of a VFS has been called using Y, ** then the corresponding [sqlite3_module.xClose() method should also be ** invoked prior to calling sqlite3_free_filename(Y). */ SQLITE_API char *sqlite3_create_filename( const char *zDatabase, const char *zJournal, const char *zWal, int nParam, const char **azParam ); SQLITE_API void sqlite3_free_filename(char*); /* ** CAPI3REF: Error Codes And Messages ** METHOD: sqlite3 ** ** ^If the most recent sqlite3_* API call associated with ** [database connection] D failed, then the sqlite3_errcode(D) interface ** returns the numeric [result code] or [extended result code] for that ** API call. ** ^The sqlite3_extended_errcode() ** interface is the same except that it always returns the ** [extended result code] even when extended result codes are ** disabled. ** ** The values returned by sqlite3_errcode() and/or ** sqlite3_extended_errcode() might change with each API call. ** Except, there are some interfaces that are guaranteed to never ** change the value of the error code. The error-code preserving ** interfaces include the following: ** **
      **
    • sqlite3_errcode() **
    • sqlite3_extended_errcode() **
    • sqlite3_errmsg() **
    • sqlite3_errmsg16() **
    • sqlite3_error_offset() **
    ** ** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language ** text that describes the error, as either UTF-8 or UTF-16 respectively. ** ^(Memory to hold the error message string is managed internally. ** The application does not need to worry about freeing the result. ** However, the error string might be overwritten or deallocated by ** subsequent calls to other SQLite interface functions.)^ ** ** ^The sqlite3_errstr() interface returns the English-language text ** that describes the [result code], as UTF-8. ** ^(Memory to hold the error message string is managed internally ** and must not be freed by the application)^. ** ** ^If the most recent error references a specific token in the input ** SQL, the sqlite3_error_offset() interface returns the byte offset ** of the start of that token. ^The byte offset returned by ** sqlite3_error_offset() assumes that the input SQL is UTF8. ** ^If the most recent error does not reference a specific token in the input ** SQL, then the sqlite3_error_offset() function returns -1. ** ** When the serialized [threading mode] is in use, it might be the ** case that a second error occurs on a separate thread in between ** the time of the first error and the call to these interfaces. ** When that happens, the second error will be reported since these ** interfaces always report the most recent result. To avoid ** this, each thread can obtain exclusive use of the [database connection] D ** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning ** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after ** all calls to the interfaces listed here are completed. ** ** If an interface fails with SQLITE_MISUSE, that means the interface ** was invoked incorrectly by the application. In that case, the ** error code and message may or may not be set. */ SQLITE_API int sqlite3_errcode(sqlite3 *db); SQLITE_API int sqlite3_extended_errcode(sqlite3 *db); SQLITE_API const char *sqlite3_errmsg(sqlite3*); SQLITE_API const void *sqlite3_errmsg16(sqlite3*); SQLITE_API const char *sqlite3_errstr(int); SQLITE_API int sqlite3_error_offset(sqlite3 *db); /* ** CAPI3REF: Prepared Statement Object ** KEYWORDS: {prepared statement} {prepared statements} ** ** An instance of this object represents a single SQL statement that ** has been compiled into binary form and is ready to be evaluated. ** ** Think of each SQL statement as a separate computer program. The ** original SQL text is source code. A prepared statement object ** is the compiled object code. All SQL must be converted into a ** prepared statement before it can be run. ** ** The life-cycle of a prepared statement object usually goes like this: ** **
      **
    1. Create the prepared statement object using [sqlite3_prepare_v2()]. **
    2. Bind values to [parameters] using the sqlite3_bind_*() ** interfaces. **
    3. Run the SQL by calling [sqlite3_step()] one or more times. **
    4. Reset the prepared statement using [sqlite3_reset()] then go back ** to step 2. Do this zero or more times. **
    5. Destroy the object using [sqlite3_finalize()]. **
    */ typedef struct sqlite3_stmt sqlite3_stmt; /* ** CAPI3REF: Run-time Limits ** METHOD: sqlite3 ** ** ^(This interface allows the size of various constructs to be limited ** on a connection by connection basis. The first parameter is the ** [database connection] whose limit is to be set or queried. The ** second parameter is one of the [limit categories] that define a ** class of constructs to be size limited. The third parameter is the ** new limit for that construct.)^ ** ** ^If the new limit is a negative number, the limit is unchanged. ** ^(For each limit category SQLITE_LIMIT_NAME there is a ** [limits | hard upper bound] ** set at compile-time by a C preprocessor macro called ** [limits | SQLITE_MAX_NAME]. ** (The "_LIMIT_" in the name is changed to "_MAX_".))^ ** ^Attempts to increase a limit above its hard upper bound are ** silently truncated to the hard upper bound. ** ** ^Regardless of whether or not the limit was changed, the ** [sqlite3_limit()] interface returns the prior value of the limit. ** ^Hence, to find the current value of a limit without changing it, ** simply invoke this interface with the third parameter set to -1. ** ** Run-time limits are intended for use in applications that manage ** both their own internal database and also databases that are controlled ** by untrusted external sources. An example application might be a ** web browser that has its own databases for storing history and ** separate databases controlled by JavaScript applications downloaded ** off the Internet. The internal databases can be given the ** large, default limits. Databases managed by external sources can ** be given much smaller limits designed to prevent a denial of service ** attack. Developers might also want to use the [sqlite3_set_authorizer()] ** interface to further control untrusted SQL. The size of the database ** created by an untrusted script can be contained using the ** [max_page_count] [PRAGMA]. ** ** New run-time limit categories may be added in future releases. */ SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); /* ** CAPI3REF: Run-Time Limit Categories ** KEYWORDS: {limit category} {*limit categories} ** ** These constants define various performance limits ** that can be lowered at run-time using [sqlite3_limit()]. ** The synopsis of the meanings of the various limits is shown below. ** Additional information is available at [limits | Limits in SQLite]. ** **
    ** [[SQLITE_LIMIT_LENGTH]] ^(
    SQLITE_LIMIT_LENGTH
    **
    The maximum size of any string or BLOB or table row, in bytes.
    )^ ** ** [[SQLITE_LIMIT_SQL_LENGTH]] ^(
    SQLITE_LIMIT_SQL_LENGTH
    **
    The maximum length of an SQL statement, in bytes.
    )^ ** ** [[SQLITE_LIMIT_COLUMN]] ^(
    SQLITE_LIMIT_COLUMN
    **
    The maximum number of columns in a table definition or in the ** result set of a [SELECT] or the maximum number of columns in an index ** or in an ORDER BY or GROUP BY clause.
    )^ ** ** [[SQLITE_LIMIT_EXPR_DEPTH]] ^(
    SQLITE_LIMIT_EXPR_DEPTH
    **
    The maximum depth of the parse tree on any expression.
    )^ ** ** [[SQLITE_LIMIT_COMPOUND_SELECT]] ^(
    SQLITE_LIMIT_COMPOUND_SELECT
    **
    The maximum number of terms in a compound SELECT statement.
    )^ ** ** [[SQLITE_LIMIT_VDBE_OP]] ^(
    SQLITE_LIMIT_VDBE_OP
    **
    The maximum number of instructions in a virtual machine program ** used to implement an SQL statement. If [sqlite3_prepare_v2()] or ** the equivalent tries to allocate space for more than this many opcodes ** in a single prepared statement, an SQLITE_NOMEM error is returned.
    )^ ** ** [[SQLITE_LIMIT_FUNCTION_ARG]] ^(
    SQLITE_LIMIT_FUNCTION_ARG
    **
    The maximum number of arguments on a function.
    )^ ** ** [[SQLITE_LIMIT_ATTACHED]] ^(
    SQLITE_LIMIT_ATTACHED
    **
    The maximum number of [ATTACH | attached databases].)^
    ** ** [[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]] ** ^(
    SQLITE_LIMIT_LIKE_PATTERN_LENGTH
    **
    The maximum length of the pattern argument to the [LIKE] or ** [GLOB] operators.
    )^ ** ** [[SQLITE_LIMIT_VARIABLE_NUMBER]] ** ^(
    SQLITE_LIMIT_VARIABLE_NUMBER
    **
    The maximum index number of any [parameter] in an SQL statement.)^ ** ** [[SQLITE_LIMIT_TRIGGER_DEPTH]] ^(
    SQLITE_LIMIT_TRIGGER_DEPTH
    **
    The maximum depth of recursion for triggers.
    )^ ** ** [[SQLITE_LIMIT_WORKER_THREADS]] ^(
    SQLITE_LIMIT_WORKER_THREADS
    **
    The maximum number of auxiliary worker threads that a single ** [prepared statement] may start.
    )^ **
    */ #define SQLITE_LIMIT_LENGTH 0 #define SQLITE_LIMIT_SQL_LENGTH 1 #define SQLITE_LIMIT_COLUMN 2 #define SQLITE_LIMIT_EXPR_DEPTH 3 #define SQLITE_LIMIT_COMPOUND_SELECT 4 #define SQLITE_LIMIT_VDBE_OP 5 #define SQLITE_LIMIT_FUNCTION_ARG 6 #define SQLITE_LIMIT_ATTACHED 7 #define SQLITE_LIMIT_LIKE_PATTERN_LENGTH 8 #define SQLITE_LIMIT_VARIABLE_NUMBER 9 #define SQLITE_LIMIT_TRIGGER_DEPTH 10 #define SQLITE_LIMIT_WORKER_THREADS 11 /* ** CAPI3REF: Prepare Flags ** ** These constants define various flags that can be passed into ** "prepFlags" parameter of the [sqlite3_prepare_v3()] and ** [sqlite3_prepare16_v3()] interfaces. ** ** New flags may be added in future releases of SQLite. ** **
    ** [[SQLITE_PREPARE_PERSISTENT]] ^(
    SQLITE_PREPARE_PERSISTENT
    **
    The SQLITE_PREPARE_PERSISTENT flag is a hint to the query planner ** that the prepared statement will be retained for a long time and ** probably reused many times.)^ ^Without this flag, [sqlite3_prepare_v3()] ** and [sqlite3_prepare16_v3()] assume that the prepared statement will ** be used just once or at most a few times and then destroyed using ** [sqlite3_finalize()] relatively soon. The current implementation acts ** on this hint by avoiding the use of [lookaside memory] so as not to ** deplete the limited store of lookaside memory. Future versions of ** SQLite may act on this hint differently. ** ** [[SQLITE_PREPARE_NORMALIZE]]
    SQLITE_PREPARE_NORMALIZE
    **
    The SQLITE_PREPARE_NORMALIZE flag is a no-op. This flag used ** to be required for any prepared statement that wanted to use the ** [sqlite3_normalized_sql()] interface. However, the ** [sqlite3_normalized_sql()] interface is now available to all ** prepared statements, regardless of whether or not they use this ** flag. ** ** [[SQLITE_PREPARE_NO_VTAB]]
    SQLITE_PREPARE_NO_VTAB
    **
    The SQLITE_PREPARE_NO_VTAB flag causes the SQL compiler ** to return an error (error code SQLITE_ERROR) if the statement uses ** any virtual tables. **
    */ #define SQLITE_PREPARE_PERSISTENT 0x01 #define SQLITE_PREPARE_NORMALIZE 0x02 #define SQLITE_PREPARE_NO_VTAB 0x04 /* ** CAPI3REF: Compiling An SQL Statement ** KEYWORDS: {SQL statement compiler} ** METHOD: sqlite3 ** CONSTRUCTOR: sqlite3_stmt ** ** To execute an SQL statement, it must first be compiled into a byte-code ** program using one of these routines. Or, in other words, these routines ** are constructors for the [prepared statement] object. ** ** The preferred routine to use is [sqlite3_prepare_v2()]. The ** [sqlite3_prepare()] interface is legacy and should be avoided. ** [sqlite3_prepare_v3()] has an extra "prepFlags" option that is used ** for special purposes. ** ** The use of the UTF-8 interfaces is preferred, as SQLite currently ** does all parsing using UTF-8. The UTF-16 interfaces are provided ** as a convenience. The UTF-16 interfaces work by converting the ** input text into UTF-8, then invoking the corresponding UTF-8 interface. ** ** The first argument, "db", is a [database connection] obtained from a ** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or ** [sqlite3_open16()]. The database connection must not have been closed. ** ** The second argument, "zSql", is the statement to be compiled, encoded ** as either UTF-8 or UTF-16. The sqlite3_prepare(), sqlite3_prepare_v2(), ** and sqlite3_prepare_v3() ** interfaces use UTF-8, and sqlite3_prepare16(), sqlite3_prepare16_v2(), ** and sqlite3_prepare16_v3() use UTF-16. ** ** ^If the nByte argument is negative, then zSql is read up to the ** first zero terminator. ^If nByte is positive, then it is the ** number of bytes read from zSql. ^If nByte is zero, then no prepared ** statement is generated. ** If the caller knows that the supplied string is nul-terminated, then ** there is a small performance advantage to passing an nByte parameter that ** is the number of bytes in the input string including ** the nul-terminator. ** ** ^If pzTail is not NULL then *pzTail is made to point to the first byte ** past the end of the first SQL statement in zSql. These routines only ** compile the first statement in zSql, so *pzTail is left pointing to ** what remains uncompiled. ** ** ^*ppStmt is left pointing to a compiled [prepared statement] that can be ** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set ** to NULL. ^If the input text contains no SQL (if the input is an empty ** string or a comment) then *ppStmt is set to NULL. ** The calling procedure is responsible for deleting the compiled ** SQL statement using [sqlite3_finalize()] after it has finished with it. ** ppStmt may not be NULL. ** ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK]; ** otherwise an [error code] is returned. ** ** The sqlite3_prepare_v2(), sqlite3_prepare_v3(), sqlite3_prepare16_v2(), ** and sqlite3_prepare16_v3() interfaces are recommended for all new programs. ** The older interfaces (sqlite3_prepare() and sqlite3_prepare16()) ** are retained for backwards compatibility, but their use is discouraged. ** ^In the "vX" interfaces, the prepared statement ** that is returned (the [sqlite3_stmt] object) contains a copy of the ** original SQL text. This causes the [sqlite3_step()] interface to ** behave differently in three ways: ** **
      **
    1. ** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it ** always used to do, [sqlite3_step()] will automatically recompile the SQL ** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY] ** retries will occur before sqlite3_step() gives up and returns an error. **
    2. ** **
    3. ** ^When an error occurs, [sqlite3_step()] will return one of the detailed ** [error codes] or [extended error codes]. ^The legacy behavior was that ** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code ** and the application would have to make a second call to [sqlite3_reset()] ** in order to find the underlying cause of the problem. With the "v2" prepare ** interfaces, the underlying reason for the error is returned immediately. **
    4. ** **
    5. ** ^If the specific value bound to a [parameter | host parameter] in the ** WHERE clause might influence the choice of query plan for a statement, ** then the statement will be automatically recompiled, as if there had been ** a schema change, on the first [sqlite3_step()] call following any change ** to the [sqlite3_bind_text | bindings] of that [parameter]. ** ^The specific value of a WHERE-clause [parameter] might influence the ** choice of query plan if the parameter is the left-hand side of a [LIKE] ** or [GLOB] operator or if the parameter is compared to an indexed column ** and the [SQLITE_ENABLE_STAT4] compile-time option is enabled. **
    6. **
    ** **

    ^sqlite3_prepare_v3() differs from sqlite3_prepare_v2() only in having ** the extra prepFlags parameter, which is a bit array consisting of zero or ** more of the [SQLITE_PREPARE_PERSISTENT|SQLITE_PREPARE_*] flags. ^The ** sqlite3_prepare_v2() interface works exactly the same as ** sqlite3_prepare_v3() with a zero prepFlags parameter. */ SQLITE_API int sqlite3_prepare( sqlite3 *db, /* Database handle */ const char *zSql, /* SQL statement, UTF-8 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const char **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare_v2( sqlite3 *db, /* Database handle */ const char *zSql, /* SQL statement, UTF-8 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const char **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare_v3( sqlite3 *db, /* Database handle */ const char *zSql, /* SQL statement, UTF-8 encoded */ int nByte, /* Maximum length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_ flags */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const char **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare16( sqlite3 *db, /* Database handle */ const void *zSql, /* SQL statement, UTF-16 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const void **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare16_v2( sqlite3 *db, /* Database handle */ const void *zSql, /* SQL statement, UTF-16 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const void **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare16_v3( sqlite3 *db, /* Database handle */ const void *zSql, /* SQL statement, UTF-16 encoded */ int nByte, /* Maximum length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_ flags */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const void **pzTail /* OUT: Pointer to unused portion of zSql */ ); /* ** CAPI3REF: Retrieving Statement SQL ** METHOD: sqlite3_stmt ** ** ^The sqlite3_sql(P) interface returns a pointer to a copy of the UTF-8 ** SQL text used to create [prepared statement] P if P was ** created by [sqlite3_prepare_v2()], [sqlite3_prepare_v3()], ** [sqlite3_prepare16_v2()], or [sqlite3_prepare16_v3()]. ** ^The sqlite3_expanded_sql(P) interface returns a pointer to a UTF-8 ** string containing the SQL text of prepared statement P with ** [bound parameters] expanded. ** ^The sqlite3_normalized_sql(P) interface returns a pointer to a UTF-8 ** string containing the normalized SQL text of prepared statement P. The ** semantics used to normalize a SQL statement are unspecified and subject ** to change. At a minimum, literal values will be replaced with suitable ** placeholders. ** ** ^(For example, if a prepared statement is created using the SQL ** text "SELECT $abc,:xyz" and if parameter $abc is bound to integer 2345 ** and parameter :xyz is unbound, then sqlite3_sql() will return ** the original string, "SELECT $abc,:xyz" but sqlite3_expanded_sql() ** will return "SELECT 2345,NULL".)^ ** ** ^The sqlite3_expanded_sql() interface returns NULL if insufficient memory ** is available to hold the result, or if the result would exceed the ** the maximum string length determined by the [SQLITE_LIMIT_LENGTH]. ** ** ^The [SQLITE_TRACE_SIZE_LIMIT] compile-time option limits the size of ** bound parameter expansions. ^The [SQLITE_OMIT_TRACE] compile-time ** option causes sqlite3_expanded_sql() to always return NULL. ** ** ^The strings returned by sqlite3_sql(P) and sqlite3_normalized_sql(P) ** are managed by SQLite and are automatically freed when the prepared ** statement is finalized. ** ^The string returned by sqlite3_expanded_sql(P), on the other hand, ** is obtained from [sqlite3_malloc()] and must be freed by the application ** by passing it to [sqlite3_free()]. ** ** ^The sqlite3_normalized_sql() interface is only available if ** the [SQLITE_ENABLE_NORMALIZE] compile-time option is defined. */ SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt); SQLITE_API char *sqlite3_expanded_sql(sqlite3_stmt *pStmt); #ifdef SQLITE_ENABLE_NORMALIZE SQLITE_API const char *sqlite3_normalized_sql(sqlite3_stmt *pStmt); #endif /* ** CAPI3REF: Determine If An SQL Statement Writes The Database ** METHOD: sqlite3_stmt ** ** ^The sqlite3_stmt_readonly(X) interface returns true (non-zero) if ** and only if the [prepared statement] X makes no direct changes to ** the content of the database file. ** ** Note that [application-defined SQL functions] or ** [virtual tables] might change the database indirectly as a side effect. ** ^(For example, if an application defines a function "eval()" that ** calls [sqlite3_exec()], then the following SQL statement would ** change the database file through side-effects: ** **

    **    SELECT eval('DELETE FROM t1') FROM t2;
    ** 
    ** ** But because the [SELECT] statement does not change the database file ** directly, sqlite3_stmt_readonly() would still return true.)^ ** ** ^Transaction control statements such as [BEGIN], [COMMIT], [ROLLBACK], ** [SAVEPOINT], and [RELEASE] cause sqlite3_stmt_readonly() to return true, ** since the statements themselves do not actually modify the database but ** rather they control the timing of when other statements modify the ** database. ^The [ATTACH] and [DETACH] statements also cause ** sqlite3_stmt_readonly() to return true since, while those statements ** change the configuration of a database connection, they do not make ** changes to the content of the database files on disk. ** ^The sqlite3_stmt_readonly() interface returns true for [BEGIN] since ** [BEGIN] merely sets internal flags, but the [BEGIN|BEGIN IMMEDIATE] and ** [BEGIN|BEGIN EXCLUSIVE] commands do touch the database and so ** sqlite3_stmt_readonly() returns false for those commands. ** ** ^This routine returns false if there is any possibility that the ** statement might change the database file. ^A false return does ** not guarantee that the statement will change the database file. ** ^For example, an UPDATE statement might have a WHERE clause that ** makes it a no-op, but the sqlite3_stmt_readonly() result would still ** be false. ^Similarly, a CREATE TABLE IF NOT EXISTS statement is a ** read-only no-op if the table already exists, but ** sqlite3_stmt_readonly() still returns false for such a statement. ** ** ^If prepared statement X is an [EXPLAIN] or [EXPLAIN QUERY PLAN] ** statement, then sqlite3_stmt_readonly(X) returns the same value as ** if the EXPLAIN or EXPLAIN QUERY PLAN prefix were omitted. */ SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt); /* ** CAPI3REF: Query The EXPLAIN Setting For A Prepared Statement ** METHOD: sqlite3_stmt ** ** ^The sqlite3_stmt_isexplain(S) interface returns 1 if the ** prepared statement S is an EXPLAIN statement, or 2 if the ** statement S is an EXPLAIN QUERY PLAN. ** ^The sqlite3_stmt_isexplain(S) interface returns 0 if S is ** an ordinary statement or a NULL pointer. */ SQLITE_API int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt); /* ** CAPI3REF: Determine If A Prepared Statement Has Been Reset ** METHOD: sqlite3_stmt ** ** ^The sqlite3_stmt_busy(S) interface returns true (non-zero) if the ** [prepared statement] S has been stepped at least once using ** [sqlite3_step(S)] but has neither run to completion (returned ** [SQLITE_DONE] from [sqlite3_step(S)]) nor ** been reset using [sqlite3_reset(S)]. ^The sqlite3_stmt_busy(S) ** interface returns false if S is a NULL pointer. If S is not a ** NULL pointer and is not a pointer to a valid [prepared statement] ** object, then the behavior is undefined and probably undesirable. ** ** This interface can be used in combination [sqlite3_next_stmt()] ** to locate all prepared statements associated with a database ** connection that are in need of being reset. This can be used, ** for example, in diagnostic routines to search for prepared ** statements that are holding a transaction open. */ SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt*); /* ** CAPI3REF: Dynamically Typed Value Object ** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value} ** ** SQLite uses the sqlite3_value object to represent all values ** that can be stored in a database table. SQLite uses dynamic typing ** for the values it stores. ^Values stored in sqlite3_value objects ** can be integers, floating point values, strings, BLOBs, or NULL. ** ** An sqlite3_value object may be either "protected" or "unprotected". ** Some interfaces require a protected sqlite3_value. Other interfaces ** will accept either a protected or an unprotected sqlite3_value. ** Every interface that accepts sqlite3_value arguments specifies ** whether or not it requires a protected sqlite3_value. The ** [sqlite3_value_dup()] interface can be used to construct a new ** protected sqlite3_value from an unprotected sqlite3_value. ** ** The terms "protected" and "unprotected" refer to whether or not ** a mutex is held. An internal mutex is held for a protected ** sqlite3_value object but no mutex is held for an unprotected ** sqlite3_value object. If SQLite is compiled to be single-threaded ** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0) ** or if SQLite is run in one of reduced mutex modes ** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD] ** then there is no distinction between protected and unprotected ** sqlite3_value objects and they can be used interchangeably. However, ** for maximum code portability it is recommended that applications ** still make the distinction between protected and unprotected ** sqlite3_value objects even when not strictly required. ** ** ^The sqlite3_value objects that are passed as parameters into the ** implementation of [application-defined SQL functions] are protected. ** ^The sqlite3_value objects returned by [sqlite3_vtab_rhs_value()] ** are protected. ** ^The sqlite3_value object returned by ** [sqlite3_column_value()] is unprotected. ** Unprotected sqlite3_value objects may only be used as arguments ** to [sqlite3_result_value()], [sqlite3_bind_value()], and ** [sqlite3_value_dup()]. ** The [sqlite3_value_blob | sqlite3_value_type()] family of ** interfaces require protected sqlite3_value objects. */ typedef struct sqlite3_value sqlite3_value; /* ** CAPI3REF: SQL Function Context Object ** ** The context in which an SQL function executes is stored in an ** sqlite3_context object. ^A pointer to an sqlite3_context object ** is always first parameter to [application-defined SQL functions]. ** The application-defined SQL function implementation will pass this ** pointer through into calls to [sqlite3_result_int | sqlite3_result()], ** [sqlite3_aggregate_context()], [sqlite3_user_data()], ** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()], ** and/or [sqlite3_set_auxdata()]. */ typedef struct sqlite3_context sqlite3_context; /* ** CAPI3REF: Binding Values To Prepared Statements ** KEYWORDS: {host parameter} {host parameters} {host parameter name} ** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding} ** METHOD: sqlite3_stmt ** ** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants, ** literals may be replaced by a [parameter] that matches one of following ** templates: ** **
      **
    • ? **
    • ?NNN **
    • :VVV **
    • @VVV **
    • $VVV **
    ** ** In the templates above, NNN represents an integer literal, ** and VVV represents an alphanumeric identifier.)^ ^The values of these ** parameters (also called "host parameter names" or "SQL parameters") ** can be set using the sqlite3_bind_*() routines defined here. ** ** ^The first argument to the sqlite3_bind_*() routines is always ** a pointer to the [sqlite3_stmt] object returned from ** [sqlite3_prepare_v2()] or its variants. ** ** ^The second argument is the index of the SQL parameter to be set. ** ^The leftmost SQL parameter has an index of 1. ^When the same named ** SQL parameter is used more than once, second and subsequent ** occurrences have the same index as the first occurrence. ** ^The index for named parameters can be looked up using the ** [sqlite3_bind_parameter_index()] API if desired. ^The index ** for "?NNN" parameters is the value of NNN. ** ^The NNN value must be between 1 and the [sqlite3_limit()] ** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 32766). ** ** ^The third argument is the value to bind to the parameter. ** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16() ** or sqlite3_bind_blob() is a NULL pointer then the fourth parameter ** is ignored and the end result is the same as sqlite3_bind_null(). ** ^If the third parameter to sqlite3_bind_text() is not NULL, then ** it should be a pointer to well-formed UTF8 text. ** ^If the third parameter to sqlite3_bind_text16() is not NULL, then ** it should be a pointer to well-formed UTF16 text. ** ^If the third parameter to sqlite3_bind_text64() is not NULL, then ** it should be a pointer to a well-formed unicode string that is ** either UTF8 if the sixth parameter is SQLITE_UTF8, or UTF16 ** otherwise. ** ** [[byte-order determination rules]] ^The byte-order of ** UTF16 input text is determined by the byte-order mark (BOM, U+FEFF) ** found in first character, which is removed, or in the absence of a BOM ** the byte order is the native byte order of the host ** machine for sqlite3_bind_text16() or the byte order specified in ** the 6th parameter for sqlite3_bind_text64().)^ ** ^If UTF16 input text contains invalid unicode ** characters, then SQLite might change those invalid characters ** into the unicode replacement character: U+FFFD. ** ** ^(In those routines that have a fourth argument, its value is the ** number of bytes in the parameter. To be clear: the value is the ** number of bytes in the value, not the number of characters.)^ ** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16() ** is negative, then the length of the string is ** the number of bytes up to the first zero terminator. ** If the fourth parameter to sqlite3_bind_blob() is negative, then ** the behavior is undefined. ** If a non-negative fourth parameter is provided to sqlite3_bind_text() ** or sqlite3_bind_text16() or sqlite3_bind_text64() then ** that parameter must be the byte offset ** where the NUL terminator would occur assuming the string were NUL ** terminated. If any NUL characters occurs at byte offsets less than ** the value of the fourth parameter then the resulting string value will ** contain embedded NULs. The result of expressions involving strings ** with embedded NULs is undefined. ** ** ^The fifth argument to the BLOB and string binding interfaces controls ** or indicates the lifetime of the object referenced by the third parameter. ** These three options exist: ** ^ (1) A destructor to dispose of the BLOB or string after SQLite has finished ** with it may be passed. ^It is called to dispose of the BLOB or string even ** if the call to the bind API fails, except the destructor is not called if ** the third parameter is a NULL pointer or the fourth parameter is negative. ** ^ (2) The special constant, [SQLITE_STATIC], may be passsed to indicate that ** the application remains responsible for disposing of the object. ^In this ** case, the object and the provided pointer to it must remain valid until ** either the prepared statement is finalized or the same SQL parameter is ** bound to something else, whichever occurs sooner. ** ^ (3) The constant, [SQLITE_TRANSIENT], may be passed to indicate that the ** object is to be copied prior to the return from sqlite3_bind_*(). ^The ** object and pointer to it must remain valid until then. ^SQLite will then ** manage the lifetime of its private copy. ** ** ^The sixth argument to sqlite3_bind_text64() must be one of ** [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE] ** to specify the encoding of the text in the third parameter. If ** the sixth argument to sqlite3_bind_text64() is not one of the ** allowed values shown above, or if the text encoding is different ** from the encoding specified by the sixth parameter, then the behavior ** is undefined. ** ** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that ** is filled with zeroes. ^A zeroblob uses a fixed amount of memory ** (just an integer to hold its size) while it is being processed. ** Zeroblobs are intended to serve as placeholders for BLOBs whose ** content is later written using ** [sqlite3_blob_open | incremental BLOB I/O] routines. ** ^A negative value for the zeroblob results in a zero-length BLOB. ** ** ^The sqlite3_bind_pointer(S,I,P,T,D) routine causes the I-th parameter in ** [prepared statement] S to have an SQL value of NULL, but to also be ** associated with the pointer P of type T. ^D is either a NULL pointer or ** a pointer to a destructor function for P. ^SQLite will invoke the ** destructor D with a single argument of P when it is finished using ** P. The T parameter should be a static string, preferably a string ** literal. The sqlite3_bind_pointer() routine is part of the ** [pointer passing interface] added for SQLite 3.20.0. ** ** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer ** for the [prepared statement] or with a prepared statement for which ** [sqlite3_step()] has been called more recently than [sqlite3_reset()], ** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_() ** routine is passed a [prepared statement] that has been finalized, the ** result is undefined and probably harmful. ** ** ^Bindings are not cleared by the [sqlite3_reset()] routine. ** ^Unbound parameters are interpreted as NULL. ** ** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an ** [error code] if anything goes wrong. ** ^[SQLITE_TOOBIG] might be returned if the size of a string or BLOB ** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or ** [SQLITE_MAX_LENGTH]. ** ^[SQLITE_RANGE] is returned if the parameter ** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails. ** ** See also: [sqlite3_bind_parameter_count()], ** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()]. */ SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*)); SQLITE_API int sqlite3_bind_blob64(sqlite3_stmt*, int, const void*, sqlite3_uint64, void(*)(void*)); SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double); SQLITE_API int sqlite3_bind_int(sqlite3_stmt*, int, int); SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64); SQLITE_API int sqlite3_bind_null(sqlite3_stmt*, int); SQLITE_API int sqlite3_bind_text(sqlite3_stmt*,int,const char*,int,void(*)(void*)); SQLITE_API int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*)); SQLITE_API int sqlite3_bind_text64(sqlite3_stmt*, int, const char*, sqlite3_uint64, void(*)(void*), unsigned char encoding); SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*); SQLITE_API int sqlite3_bind_pointer(sqlite3_stmt*, int, void*, const char*,void(*)(void*)); SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n); SQLITE_API int sqlite3_bind_zeroblob64(sqlite3_stmt*, int, sqlite3_uint64); /* ** CAPI3REF: Number Of SQL Parameters ** METHOD: sqlite3_stmt ** ** ^This routine can be used to find the number of [SQL parameters] ** in a [prepared statement]. SQL parameters are tokens of the ** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as ** placeholders for values that are [sqlite3_bind_blob | bound] ** to the parameters at a later time. ** ** ^(This routine actually returns the index of the largest (rightmost) ** parameter. For all forms except ?NNN, this will correspond to the ** number of unique parameters. If parameters of the ?NNN form are used, ** there may be gaps in the list.)^ ** ** See also: [sqlite3_bind_blob|sqlite3_bind()], ** [sqlite3_bind_parameter_name()], and ** [sqlite3_bind_parameter_index()]. */ SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt*); /* ** CAPI3REF: Name Of A Host Parameter ** METHOD: sqlite3_stmt ** ** ^The sqlite3_bind_parameter_name(P,N) interface returns ** the name of the N-th [SQL parameter] in the [prepared statement] P. ** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA" ** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA" ** respectively. ** In other words, the initial ":" or "$" or "@" or "?" ** is included as part of the name.)^ ** ^Parameters of the form "?" without a following integer have no name ** and are referred to as "nameless" or "anonymous parameters". ** ** ^The first host parameter has an index of 1, not 0. ** ** ^If the value N is out of range or if the N-th parameter is ** nameless, then NULL is returned. ^The returned string is ** always in UTF-8 encoding even if the named parameter was ** originally specified as UTF-16 in [sqlite3_prepare16()], ** [sqlite3_prepare16_v2()], or [sqlite3_prepare16_v3()]. ** ** See also: [sqlite3_bind_blob|sqlite3_bind()], ** [sqlite3_bind_parameter_count()], and ** [sqlite3_bind_parameter_index()]. */ SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int); /* ** CAPI3REF: Index Of A Parameter With A Given Name ** METHOD: sqlite3_stmt ** ** ^Return the index of an SQL parameter given its name. ^The ** index value returned is suitable for use as the second ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero ** is returned if no matching parameter is found. ^The parameter ** name must be given in UTF-8 even if the original statement ** was prepared from UTF-16 text using [sqlite3_prepare16_v2()] or ** [sqlite3_prepare16_v3()]. ** ** See also: [sqlite3_bind_blob|sqlite3_bind()], ** [sqlite3_bind_parameter_count()], and ** [sqlite3_bind_parameter_name()]. */ SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); /* ** CAPI3REF: Reset All Bindings On A Prepared Statement ** METHOD: sqlite3_stmt ** ** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset ** the [sqlite3_bind_blob | bindings] on a [prepared statement]. ** ^Use this routine to reset all host parameters to NULL. */ SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt*); /* ** CAPI3REF: Number Of Columns In A Result Set ** METHOD: sqlite3_stmt ** ** ^Return the number of columns in the result set returned by the ** [prepared statement]. ^If this routine returns 0, that means the ** [prepared statement] returns no data (for example an [UPDATE]). ** ^However, just because this routine returns a positive number does not ** mean that one or more rows of data will be returned. ^A SELECT statement ** will always have a positive sqlite3_column_count() but depending on the ** WHERE clause constraints and the table content, it might return no rows. ** ** See also: [sqlite3_data_count()] */ SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt); /* ** CAPI3REF: Column Names In A Result Set ** METHOD: sqlite3_stmt ** ** ^These routines return the name assigned to a particular column ** in the result set of a [SELECT] statement. ^The sqlite3_column_name() ** interface returns a pointer to a zero-terminated UTF-8 string ** and sqlite3_column_name16() returns a pointer to a zero-terminated ** UTF-16 string. ^The first parameter is the [prepared statement] ** that implements the [SELECT] statement. ^The second parameter is the ** column number. ^The leftmost column is number 0. ** ** ^The returned string pointer is valid until either the [prepared statement] ** is destroyed by [sqlite3_finalize()] or until the statement is automatically ** reprepared by the first call to [sqlite3_step()] for a particular run ** or until the next call to ** sqlite3_column_name() or sqlite3_column_name16() on the same column. ** ** ^If sqlite3_malloc() fails during the processing of either routine ** (for example during a conversion from UTF-8 to UTF-16) then a ** NULL pointer is returned. ** ** ^The name of a result column is the value of the "AS" clause for ** that column, if there is an AS clause. If there is no AS clause ** then the name of the column is unspecified and may change from ** one release of SQLite to the next. */ SQLITE_API const char *sqlite3_column_name(sqlite3_stmt*, int N); SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt*, int N); /* ** CAPI3REF: Source Of Data In A Query Result ** METHOD: sqlite3_stmt ** ** ^These routines provide a means to determine the database, table, and ** table column that is the origin of a particular result column in ** [SELECT] statement. ** ^The name of the database or table or column can be returned as ** either a UTF-8 or UTF-16 string. ^The _database_ routines return ** the database name, the _table_ routines return the table name, and ** the origin_ routines return the column name. ** ^The returned string is valid until the [prepared statement] is destroyed ** using [sqlite3_finalize()] or until the statement is automatically ** reprepared by the first call to [sqlite3_step()] for a particular run ** or until the same information is requested ** again in a different encoding. ** ** ^The names returned are the original un-aliased names of the ** database, table, and column. ** ** ^The first argument to these interfaces is a [prepared statement]. ** ^These functions return information about the Nth result column returned by ** the statement, where N is the second function argument. ** ^The left-most column is column 0 for these routines. ** ** ^If the Nth column returned by the statement is an expression or ** subquery and is not a column value, then all of these functions return ** NULL. ^These routines might also return NULL if a memory allocation error ** occurs. ^Otherwise, they return the name of the attached database, table, ** or column that query result column was extracted from. ** ** ^As with all other SQLite APIs, those whose names end with "16" return ** UTF-16 encoded strings and the other functions return UTF-8. ** ** ^These APIs are only available if the library was compiled with the ** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol. ** ** If two or more threads call one or more ** [sqlite3_column_database_name | column metadata interfaces] ** for the same [prepared statement] and result column ** at the same time then the results are undefined. */ SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt*,int); SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt*,int); SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt*,int); /* ** CAPI3REF: Declared Datatype Of A Query Result ** METHOD: sqlite3_stmt ** ** ^(The first parameter is a [prepared statement]. ** If this statement is a [SELECT] statement and the Nth column of the ** returned result set of that [SELECT] is a table column (not an ** expression or subquery) then the declared type of the table ** column is returned.)^ ^If the Nth column of the result set is an ** expression or subquery, then a NULL pointer is returned. ** ^The returned string is always UTF-8 encoded. ** ** ^(For example, given the database schema: ** ** CREATE TABLE t1(c1 VARIANT); ** ** and the following statement to be compiled: ** ** SELECT c1 + 1, c1 FROM t1; ** ** this routine would return the string "VARIANT" for the second result ** column (i==1), and a NULL pointer for the first result column (i==0).)^ ** ** ^SQLite uses dynamic run-time typing. ^So just because a column ** is declared to contain a particular type does not mean that the ** data stored in that column is of the declared type. SQLite is ** strongly typed, but the typing is dynamic not static. ^Type ** is associated with individual values, not with the containers ** used to hold those values. */ SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt*,int); /* ** CAPI3REF: Evaluate An SQL Statement ** METHOD: sqlite3_stmt ** ** After a [prepared statement] has been prepared using any of ** [sqlite3_prepare_v2()], [sqlite3_prepare_v3()], [sqlite3_prepare16_v2()], ** or [sqlite3_prepare16_v3()] or one of the legacy ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function ** must be called one or more times to evaluate the statement. ** ** The details of the behavior of the sqlite3_step() interface depend ** on whether the statement was prepared using the newer "vX" interfaces ** [sqlite3_prepare_v3()], [sqlite3_prepare_v2()], [sqlite3_prepare16_v3()], ** [sqlite3_prepare16_v2()] or the older legacy ** interfaces [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the ** new "vX" interface is recommended for new applications but the legacy ** interface will continue to be supported. ** ** ^In the legacy interface, the return value will be either [SQLITE_BUSY], ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE]. ** ^With the "v2" interface, any of the other [result codes] or ** [extended result codes] might be returned as well. ** ** ^[SQLITE_BUSY] means that the database engine was unable to acquire the ** database locks it needs to do its job. ^If the statement is a [COMMIT] ** or occurs outside of an explicit transaction, then you can retry the ** statement. If the statement is not a [COMMIT] and occurs within an ** explicit transaction then you should rollback the transaction before ** continuing. ** ** ^[SQLITE_DONE] means that the statement has finished executing ** successfully. sqlite3_step() should not be called again on this virtual ** machine without first calling [sqlite3_reset()] to reset the virtual ** machine back to its initial state. ** ** ^If the SQL statement being executed returns any data, then [SQLITE_ROW] ** is returned each time a new row of data is ready for processing by the ** caller. The values may be accessed using the [column access functions]. ** sqlite3_step() is called again to retrieve the next row of data. ** ** ^[SQLITE_ERROR] means that a run-time error (such as a constraint ** violation) has occurred. sqlite3_step() should not be called again on ** the VM. More information may be found by calling [sqlite3_errmsg()]. ** ^With the legacy interface, a more specific error code (for example, ** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth) ** can be obtained by calling [sqlite3_reset()] on the ** [prepared statement]. ^In the "v2" interface, ** the more specific error code is returned directly by sqlite3_step(). ** ** [SQLITE_MISUSE] means that the this routine was called inappropriately. ** Perhaps it was called on a [prepared statement] that has ** already been [sqlite3_finalize | finalized] or on one that had ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could ** be the case that the same database connection is being used by two or ** more threads at the same moment in time. ** ** For all versions of SQLite up to and including 3.6.23.1, a call to ** [sqlite3_reset()] was required after sqlite3_step() returned anything ** other than [SQLITE_ROW] before any subsequent invocation of ** sqlite3_step(). Failure to reset the prepared statement using ** [sqlite3_reset()] would result in an [SQLITE_MISUSE] return from ** sqlite3_step(). But after [version 3.6.23.1] ([dateof:3.6.23.1], ** sqlite3_step() began ** calling [sqlite3_reset()] automatically in this circumstance rather ** than returning [SQLITE_MISUSE]. This is not considered a compatibility ** break because any application that ever receives an SQLITE_MISUSE error ** is broken by definition. The [SQLITE_OMIT_AUTORESET] compile-time option ** can be used to restore the legacy behavior. ** ** Goofy Interface Alert: In the legacy interface, the sqlite3_step() ** API always returns a generic error code, [SQLITE_ERROR], following any ** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call ** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the ** specific [error codes] that better describes the error. ** We admit that this is a goofy design. The problem has been fixed ** with the "v2" interface. If you prepare all of your SQL statements ** using [sqlite3_prepare_v3()] or [sqlite3_prepare_v2()] ** or [sqlite3_prepare16_v2()] or [sqlite3_prepare16_v3()] instead ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces, ** then the more specific [error codes] are returned directly ** by sqlite3_step(). The use of the "vX" interfaces is recommended. */ SQLITE_API int sqlite3_step(sqlite3_stmt*); /* ** CAPI3REF: Number of columns in a result set ** METHOD: sqlite3_stmt ** ** ^The sqlite3_data_count(P) interface returns the number of columns in the ** current row of the result set of [prepared statement] P. ** ^If prepared statement P does not have results ready to return ** (via calls to the [sqlite3_column_int | sqlite3_column()] family of ** interfaces) then sqlite3_data_count(P) returns 0. ** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer. ** ^The sqlite3_data_count(P) routine returns 0 if the previous call to ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P) ** will return non-zero if previous call to [sqlite3_step](P) returned ** [SQLITE_ROW], except in the case of the [PRAGMA incremental_vacuum] ** where it always returns zero since each step of that multi-step ** pragma returns 0 columns of data. ** ** See also: [sqlite3_column_count()] */ SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt); /* ** CAPI3REF: Fundamental Datatypes ** KEYWORDS: SQLITE_TEXT ** ** ^(Every value in SQLite has one of five fundamental datatypes: ** **
      **
    • 64-bit signed integer **
    • 64-bit IEEE floating point number **
    • string **
    • BLOB **
    • NULL **
    )^ ** ** These constants are codes for each of those types. ** ** Note that the SQLITE_TEXT constant was also used in SQLite version 2 ** for a completely different meaning. Software that links against both ** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not ** SQLITE_TEXT. */ #define SQLITE_INTEGER 1 #define SQLITE_FLOAT 2 #define SQLITE_BLOB 4 #define SQLITE_NULL 5 #ifdef SQLITE_TEXT # undef SQLITE_TEXT #else # define SQLITE_TEXT 3 #endif #define SQLITE3_TEXT 3 /* ** CAPI3REF: Result Values From A Query ** KEYWORDS: {column access functions} ** METHOD: sqlite3_stmt ** ** Summary: **
    **
    sqlite3_column_blobBLOB result **
    sqlite3_column_doubleREAL result **
    sqlite3_column_int32-bit INTEGER result **
    sqlite3_column_int6464-bit INTEGER result **
    sqlite3_column_textUTF-8 TEXT result **
    sqlite3_column_text16UTF-16 TEXT result **
    sqlite3_column_valueThe result as an ** [sqlite3_value|unprotected sqlite3_value] object. **
        **
    sqlite3_column_bytesSize of a BLOB ** or a UTF-8 TEXT result in bytes **
    sqlite3_column_bytes16   ** →  Size of UTF-16 ** TEXT in bytes **
    sqlite3_column_typeDefault ** datatype of the result **
    ** ** Details: ** ** ^These routines return information about a single column of the current ** result row of a query. ^In every case the first argument is a pointer ** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*] ** that was returned from [sqlite3_prepare_v2()] or one of its variants) ** and the second argument is the index of the column for which information ** should be returned. ^The leftmost column of the result set has the index 0. ** ^The number of columns in the result can be determined using ** [sqlite3_column_count()]. ** ** If the SQL statement does not currently point to a valid row, or if the ** column index is out of range, the result is undefined. ** These routines may only be called when the most recent call to ** [sqlite3_step()] has returned [SQLITE_ROW] and neither ** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently. ** If any of these routines are called after [sqlite3_reset()] or ** [sqlite3_finalize()] or after [sqlite3_step()] has returned ** something other than [SQLITE_ROW], the results are undefined. ** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()] ** are called from a different thread while any of these routines ** are pending, then the results are undefined. ** ** The first six interfaces (_blob, _double, _int, _int64, _text, and _text16) ** each return the value of a result column in a specific data format. If ** the result column is not initially in the requested format (for example, ** if the query returns an integer but the sqlite3_column_text() interface ** is used to extract the value) then an automatic type conversion is performed. ** ** ^The sqlite3_column_type() routine returns the ** [SQLITE_INTEGER | datatype code] for the initial data type ** of the result column. ^The returned value is one of [SQLITE_INTEGER], ** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. ** The return value of sqlite3_column_type() can be used to decide which ** of the first six interface should be used to extract the column value. ** The value returned by sqlite3_column_type() is only meaningful if no ** automatic type conversions have occurred for the value in question. ** After a type conversion, the result of calling sqlite3_column_type() ** is undefined, though harmless. Future ** versions of SQLite may change the behavior of sqlite3_column_type() ** following a type conversion. ** ** If the result is a BLOB or a TEXT string, then the sqlite3_column_bytes() ** or sqlite3_column_bytes16() interfaces can be used to determine the size ** of that BLOB or string. ** ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() ** routine returns the number of bytes in that BLOB or string. ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts ** the string to UTF-8 and then returns the number of bytes. ** ^If the result is a numeric value then sqlite3_column_bytes() uses ** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns ** the number of bytes in that string. ** ^If the result is NULL, then sqlite3_column_bytes() returns zero. ** ** ^If the result is a BLOB or UTF-16 string then the sqlite3_column_bytes16() ** routine returns the number of bytes in that BLOB or string. ** ^If the result is a UTF-8 string, then sqlite3_column_bytes16() converts ** the string to UTF-16 and then returns the number of bytes. ** ^If the result is a numeric value then sqlite3_column_bytes16() uses ** [sqlite3_snprintf()] to convert that value to a UTF-16 string and returns ** the number of bytes in that string. ** ^If the result is NULL, then sqlite3_column_bytes16() returns zero. ** ** ^The values returned by [sqlite3_column_bytes()] and ** [sqlite3_column_bytes16()] do not include the zero terminators at the end ** of the string. ^For clarity: the values returned by ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of ** bytes in the string, not the number of characters. ** ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(), ** even empty strings, are always zero-terminated. ^The return ** value from sqlite3_column_blob() for a zero-length BLOB is a NULL pointer. ** ** Warning: ^The object returned by [sqlite3_column_value()] is an ** [unprotected sqlite3_value] object. In a multithreaded environment, ** an unprotected sqlite3_value object may only be used safely with ** [sqlite3_bind_value()] and [sqlite3_result_value()]. ** If the [unprotected sqlite3_value] object returned by ** [sqlite3_column_value()] is used in any other way, including calls ** to routines like [sqlite3_value_int()], [sqlite3_value_text()], ** or [sqlite3_value_bytes()], the behavior is not threadsafe. ** Hence, the sqlite3_column_value() interface ** is normally only useful within the implementation of ** [application-defined SQL functions] or [virtual tables], not within ** top-level application code. ** ** The these routines may attempt to convert the datatype of the result. ** ^For example, if the internal representation is FLOAT and a text result ** is requested, [sqlite3_snprintf()] is used internally to perform the ** conversion automatically. ^(The following table details the conversions ** that are applied: ** **
    ** **
    Internal
    Type
    Requested
    Type
    Conversion ** **
    NULL INTEGER Result is 0 **
    NULL FLOAT Result is 0.0 **
    NULL TEXT Result is a NULL pointer **
    NULL BLOB Result is a NULL pointer **
    INTEGER FLOAT Convert from integer to float **
    INTEGER TEXT ASCII rendering of the integer **
    INTEGER BLOB Same as INTEGER->TEXT **
    FLOAT INTEGER [CAST] to INTEGER **
    FLOAT TEXT ASCII rendering of the float **
    FLOAT BLOB [CAST] to BLOB **
    TEXT INTEGER [CAST] to INTEGER **
    TEXT FLOAT [CAST] to REAL **
    TEXT BLOB No change **
    BLOB INTEGER [CAST] to INTEGER **
    BLOB FLOAT [CAST] to REAL **
    BLOB TEXT Add a zero terminator if needed **
    **
    )^ ** ** Note that when type conversions occur, pointers returned by prior ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or ** sqlite3_column_text16() may be invalidated. ** Type conversions and pointer invalidations might occur ** in the following cases: ** **
      **
    • The initial content is a BLOB and sqlite3_column_text() or ** sqlite3_column_text16() is called. A zero-terminator might ** need to be added to the string.
    • **
    • The initial content is UTF-8 text and sqlite3_column_bytes16() or ** sqlite3_column_text16() is called. The content must be converted ** to UTF-16.
    • **
    • The initial content is UTF-16 text and sqlite3_column_bytes() or ** sqlite3_column_text() is called. The content must be converted ** to UTF-8.
    • **
    ** ** ^Conversions between UTF-16be and UTF-16le are always done in place and do ** not invalidate a prior pointer, though of course the content of the buffer ** that the prior pointer references will have been modified. Other kinds ** of conversion are done in place when it is possible, but sometimes they ** are not possible and in those cases prior pointers are invalidated. ** ** The safest policy is to invoke these routines ** in one of the following ways: ** **
      **
    • sqlite3_column_text() followed by sqlite3_column_bytes()
    • **
    • sqlite3_column_blob() followed by sqlite3_column_bytes()
    • **
    • sqlite3_column_text16() followed by sqlite3_column_bytes16()
    • **
    ** ** In other words, you should call sqlite3_column_text(), ** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result ** into the desired format, then invoke sqlite3_column_bytes() or ** sqlite3_column_bytes16() to find the size of the result. Do not mix calls ** to sqlite3_column_text() or sqlite3_column_blob() with calls to ** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16() ** with calls to sqlite3_column_bytes(). ** ** ^The pointers returned are valid until a type conversion occurs as ** described above, or until [sqlite3_step()] or [sqlite3_reset()] or ** [sqlite3_finalize()] is called. ^The memory space used to hold strings ** and BLOBs is freed automatically. Do not pass the pointers returned ** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into ** [sqlite3_free()]. ** ** As long as the input parameters are correct, these routines will only ** fail if an out-of-memory error occurs during a format conversion. ** Only the following subset of interfaces are subject to out-of-memory ** errors: ** **
      **
    • sqlite3_column_blob() **
    • sqlite3_column_text() **
    • sqlite3_column_text16() **
    • sqlite3_column_bytes() **
    • sqlite3_column_bytes16() **
    ** ** If an out-of-memory error occurs, then the return value from these ** routines is the same as if the column had contained an SQL NULL value. ** Valid SQL NULL returns can be distinguished from out-of-memory errors ** by invoking the [sqlite3_errcode()] immediately after the suspect ** return value is obtained and before any ** other SQLite interface is called on the same [database connection]. */ SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol); SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol); SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol); SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol); SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol); SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol); /* ** CAPI3REF: Destroy A Prepared Statement Object ** DESTRUCTOR: sqlite3_stmt ** ** ^The sqlite3_finalize() function is called to delete a [prepared statement]. ** ^If the most recent evaluation of the statement encountered no errors ** or if the statement is never been evaluated, then sqlite3_finalize() returns ** SQLITE_OK. ^If the most recent evaluation of statement S failed, then ** sqlite3_finalize(S) returns the appropriate [error code] or ** [extended error code]. ** ** ^The sqlite3_finalize(S) routine can be called at any point during ** the life cycle of [prepared statement] S: ** before statement S is ever evaluated, after ** one or more calls to [sqlite3_reset()], or after any call ** to [sqlite3_step()] regardless of whether or not the statement has ** completed execution. ** ** ^Invoking sqlite3_finalize() on a NULL pointer is a harmless no-op. ** ** The application must finalize every [prepared statement] in order to avoid ** resource leaks. It is a grievous error for the application to try to use ** a prepared statement after it has been finalized. Any use of a prepared ** statement after it has been finalized can result in undefined and ** undesirable behavior such as segfaults and heap corruption. */ SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt); /* ** CAPI3REF: Reset A Prepared Statement Object ** METHOD: sqlite3_stmt ** ** The sqlite3_reset() function is called to reset a [prepared statement] ** object back to its initial state, ready to be re-executed. ** ^Any SQL statement variables that had values bound to them using ** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values. ** Use [sqlite3_clear_bindings()] to reset the bindings. ** ** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S ** back to the beginning of its program. ** ** ^If the most recent call to [sqlite3_step(S)] for the ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE], ** or if [sqlite3_step(S)] has never before been called on S, ** then [sqlite3_reset(S)] returns [SQLITE_OK]. ** ** ^If the most recent call to [sqlite3_step(S)] for the ** [prepared statement] S indicated an error, then ** [sqlite3_reset(S)] returns an appropriate [error code]. ** ** ^The [sqlite3_reset(S)] interface does not change the values ** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S. */ SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt); /* ** CAPI3REF: Create Or Redefine SQL Functions ** KEYWORDS: {function creation routines} ** METHOD: sqlite3 ** ** ^These functions (collectively known as "function creation routines") ** are used to add SQL functions or aggregates or to redefine the behavior ** of existing SQL functions or aggregates. The only differences between ** the three "sqlite3_create_function*" routines are the text encoding ** expected for the second parameter (the name of the function being ** created) and the presence or absence of a destructor callback for ** the application data pointer. Function sqlite3_create_window_function() ** is similar, but allows the user to supply the extra callback functions ** needed by [aggregate window functions]. ** ** ^The first parameter is the [database connection] to which the SQL ** function is to be added. ^If an application uses more than one database ** connection then application-defined SQL functions must be added ** to each database connection separately. ** ** ^The second parameter is the name of the SQL function to be created or ** redefined. ^The length of the name is limited to 255 bytes in a UTF-8 ** representation, exclusive of the zero-terminator. ^Note that the name ** length limit is in UTF-8 bytes, not characters nor UTF-16 bytes. ** ^Any attempt to create a function with a longer name ** will result in [SQLITE_MISUSE] being returned. ** ** ^The third parameter (nArg) ** is the number of arguments that the SQL function or ** aggregate takes. ^If this parameter is -1, then the SQL function or ** aggregate may take any number of arguments between 0 and the limit ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third ** parameter is less than -1 or greater than 127 then the behavior is ** undefined. ** ** ^The fourth parameter, eTextRep, specifies what ** [SQLITE_UTF8 | text encoding] this SQL function prefers for ** its parameters. The application should set this parameter to ** [SQLITE_UTF16LE] if the function implementation invokes ** [sqlite3_value_text16le()] on an input, or [SQLITE_UTF16BE] if the ** implementation invokes [sqlite3_value_text16be()] on an input, or ** [SQLITE_UTF16] if [sqlite3_value_text16()] is used, or [SQLITE_UTF8] ** otherwise. ^The same SQL function may be registered multiple times using ** different preferred text encodings, with different implementations for ** each encoding. ** ^When multiple implementations of the same function are available, SQLite ** will pick the one that involves the least amount of data conversion. ** ** ^The fourth parameter may optionally be ORed with [SQLITE_DETERMINISTIC] ** to signal that the function will always return the same result given ** the same inputs within a single SQL statement. Most SQL functions are ** deterministic. The built-in [random()] SQL function is an example of a ** function that is not deterministic. The SQLite query planner is able to ** perform additional optimizations on deterministic functions, so use ** of the [SQLITE_DETERMINISTIC] flag is recommended where possible. ** ** ^The fourth parameter may also optionally include the [SQLITE_DIRECTONLY] ** flag, which if present prevents the function from being invoked from ** within VIEWs, TRIGGERs, CHECK constraints, generated column expressions, ** index expressions, or the WHERE clause of partial indexes. ** ** For best security, the [SQLITE_DIRECTONLY] flag is recommended for ** all application-defined SQL functions that do not need to be ** used inside of triggers, view, CHECK constraints, or other elements of ** the database schema. This flags is especially recommended for SQL ** functions that have side effects or reveal internal application state. ** Without this flag, an attacker might be able to modify the schema of ** a database file to include invocations of the function with parameters ** chosen by the attacker, which the application will then execute when ** the database file is opened and read. ** ** ^(The fifth parameter is an arbitrary pointer. The implementation of the ** function can gain access to this pointer using [sqlite3_user_data()].)^ ** ** ^The sixth, seventh and eighth parameters passed to the three ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are ** pointers to C-language functions that implement the SQL function or ** aggregate. ^A scalar SQL function requires an implementation of the xFunc ** callback only; NULL pointers must be passed as the xStep and xFinal ** parameters. ^An aggregate SQL function requires an implementation of xStep ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing ** SQL function or aggregate, pass NULL pointers for all three function ** callbacks. ** ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue ** and xInverse) passed to sqlite3_create_window_function are pointers to ** C-language callbacks that implement the new function. xStep and xFinal ** must both be non-NULL. xValue and xInverse may either both be NULL, in ** which case a regular aggregate function is created, or must both be ** non-NULL, in which case the new function may be used as either an aggregate ** or aggregate window function. More details regarding the implementation ** of aggregate window functions are ** [user-defined window functions|available here]. ** ** ^(If the final parameter to sqlite3_create_function_v2() or ** sqlite3_create_window_function() is not NULL, then it is destructor for ** the application data pointer. The destructor is invoked when the function ** is deleted, either by being overloaded or when the database connection ** closes.)^ ^The destructor is also invoked if the call to ** sqlite3_create_function_v2() fails. ^When the destructor callback is ** invoked, it is passed a single argument which is a copy of the application ** data pointer which was the fifth parameter to sqlite3_create_function_v2(). ** ** ^It is permitted to register multiple implementations of the same ** functions with the same name but with either differing numbers of ** arguments or differing preferred text encodings. ^SQLite will use ** the implementation that most closely matches the way in which the ** SQL function is used. ^A function implementation with a non-negative ** nArg parameter is a better match than a function implementation with ** a negative nArg. ^A function where the preferred text encoding ** matches the database encoding is a better ** match than a function where the encoding is different. ** ^A function where the encoding difference is between UTF16le and UTF16be ** is a closer match than a function where the encoding difference is ** between UTF8 and UTF16. ** ** ^Built-in functions may be overloaded by new application-defined functions. ** ** ^An application-defined function is permitted to call other ** SQLite interfaces. However, such calls must not ** close the database connection nor finalize or reset the prepared ** statement in which the function is running. */ SQLITE_API int sqlite3_create_function( sqlite3 *db, const char *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ); SQLITE_API int sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ); SQLITE_API int sqlite3_create_function_v2( sqlite3 *db, const char *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void(*xDestroy)(void*) ); SQLITE_API int sqlite3_create_window_function( sqlite3 *db, const char *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*) ); /* ** CAPI3REF: Text Encodings ** ** These constant define integer codes that represent the various ** text encodings supported by SQLite. */ #define SQLITE_UTF8 1 /* IMP: R-37514-35566 */ #define SQLITE_UTF16LE 2 /* IMP: R-03371-37637 */ #define SQLITE_UTF16BE 3 /* IMP: R-51971-34154 */ #define SQLITE_UTF16 4 /* Use native byte order */ #define SQLITE_ANY 5 /* Deprecated */ #define SQLITE_UTF16_ALIGNED 8 /* sqlite3_create_collation only */ /* ** CAPI3REF: Function Flags ** ** These constants may be ORed together with the ** [SQLITE_UTF8 | preferred text encoding] as the fourth argument ** to [sqlite3_create_function()], [sqlite3_create_function16()], or ** [sqlite3_create_function_v2()]. ** **
    ** [[SQLITE_DETERMINISTIC]]
    SQLITE_DETERMINISTIC
    ** The SQLITE_DETERMINISTIC flag means that the new function always gives ** the same output when the input parameters are the same. ** The [abs|abs() function] is deterministic, for example, but ** [randomblob|randomblob()] is not. Functions must ** be deterministic in order to be used in certain contexts such as ** with the WHERE clause of [partial indexes] or in [generated columns]. ** SQLite might also optimize deterministic functions by factoring them ** out of inner loops. **
    ** ** [[SQLITE_DIRECTONLY]]
    SQLITE_DIRECTONLY
    ** The SQLITE_DIRECTONLY flag means that the function may only be invoked ** from top-level SQL, and cannot be used in VIEWs or TRIGGERs nor in ** schema structures such as [CHECK constraints], [DEFAULT clauses], ** [expression indexes], [partial indexes], or [generated columns]. ** The SQLITE_DIRECTONLY flags is a security feature which is recommended ** for all [application-defined SQL functions], and especially for functions ** that have side-effects or that could potentially leak sensitive ** information. **
    ** ** [[SQLITE_INNOCUOUS]]
    SQLITE_INNOCUOUS
    ** The SQLITE_INNOCUOUS flag means that the function is unlikely ** to cause problems even if misused. An innocuous function should have ** no side effects and should not depend on any values other than its ** input parameters. The [abs|abs() function] is an example of an ** innocuous function. ** The [load_extension() SQL function] is not innocuous because of its ** side effects. **

    SQLITE_INNOCUOUS is similar to SQLITE_DETERMINISTIC, but is not ** exactly the same. The [random|random() function] is an example of a ** function that is innocuous but not deterministic. **

    Some heightened security settings ** ([SQLITE_DBCONFIG_TRUSTED_SCHEMA] and [PRAGMA trusted_schema=OFF]) ** disable the use of SQL functions inside views and triggers and in ** schema structures such as [CHECK constraints], [DEFAULT clauses], ** [expression indexes], [partial indexes], and [generated columns] unless ** the function is tagged with SQLITE_INNOCUOUS. Most built-in functions ** are innocuous. Developers are advised to avoid using the ** SQLITE_INNOCUOUS flag for application-defined functions unless the ** function has been carefully audited and found to be free of potentially ** security-adverse side-effects and information-leaks. **

    ** ** [[SQLITE_SUBTYPE]]
    SQLITE_SUBTYPE
    ** The SQLITE_SUBTYPE flag indicates to SQLite that a function may call ** [sqlite3_value_subtype()] to inspect the sub-types of its arguments. ** Specifying this flag makes no difference for scalar or aggregate user ** functions. However, if it is not specified for a user-defined window ** function, then any sub-types belonging to arguments passed to the window ** function may be discarded before the window function is called (i.e. ** sqlite3_value_subtype() will always return 0). **
    **
    */ #define SQLITE_DETERMINISTIC 0x000000800 #define SQLITE_DIRECTONLY 0x000080000 #define SQLITE_SUBTYPE 0x000100000 #define SQLITE_INNOCUOUS 0x000200000 /* ** CAPI3REF: Deprecated Functions ** DEPRECATED ** ** These functions are [deprecated]. In order to maintain ** backwards compatibility with older code, these functions continue ** to be supported. However, new applications should avoid ** the use of these functions. To encourage programmers to avoid ** these functions, we will not explain what they do. */ #ifndef SQLITE_OMIT_DEPRECATED SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*); SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*); SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*); SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void); SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void); SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int), void*,sqlite3_int64); #endif /* ** CAPI3REF: Obtaining SQL Values ** METHOD: sqlite3_value ** ** Summary: **
    **
    sqlite3_value_blobBLOB value **
    sqlite3_value_doubleREAL value **
    sqlite3_value_int32-bit INTEGER value **
    sqlite3_value_int6464-bit INTEGER value **
    sqlite3_value_pointerPointer value **
    sqlite3_value_textUTF-8 TEXT value **
    sqlite3_value_text16UTF-16 TEXT value in ** the native byteorder **
    sqlite3_value_text16beUTF-16be TEXT value **
    sqlite3_value_text16leUTF-16le TEXT value **
        **
    sqlite3_value_bytesSize of a BLOB ** or a UTF-8 TEXT in bytes **
    sqlite3_value_bytes16   ** →  Size of UTF-16 ** TEXT in bytes **
    sqlite3_value_typeDefault ** datatype of the value **
    sqlite3_value_numeric_type   ** →  Best numeric datatype of the value **
    sqlite3_value_nochange   ** →  True if the column is unchanged in an UPDATE ** against a virtual table. **
    sqlite3_value_frombind   ** →  True if value originated from a [bound parameter] **
    ** ** Details: ** ** These routines extract type, size, and content information from ** [protected sqlite3_value] objects. Protected sqlite3_value objects ** are used to pass parameter information into the functions that ** implement [application-defined SQL functions] and [virtual tables]. ** ** These routines work only with [protected sqlite3_value] objects. ** Any attempt to use these routines on an [unprotected sqlite3_value] ** is not threadsafe. ** ** ^These routines work just like the corresponding [column access functions] ** except that these routines take a single [protected sqlite3_value] object ** pointer instead of a [sqlite3_stmt*] pointer and an integer column number. ** ** ^The sqlite3_value_text16() interface extracts a UTF-16 string ** in the native byte-order of the host machine. ^The ** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces ** extract UTF-16 strings as big-endian and little-endian respectively. ** ** ^If [sqlite3_value] object V was initialized ** using [sqlite3_bind_pointer(S,I,P,X,D)] or [sqlite3_result_pointer(C,P,X,D)] ** and if X and Y are strings that compare equal according to strcmp(X,Y), ** then sqlite3_value_pointer(V,Y) will return the pointer P. ^Otherwise, ** sqlite3_value_pointer(V,Y) returns a NULL. The sqlite3_bind_pointer() ** routine is part of the [pointer passing interface] added for SQLite 3.20.0. ** ** ^(The sqlite3_value_type(V) interface returns the ** [SQLITE_INTEGER | datatype code] for the initial datatype of the ** [sqlite3_value] object V. The returned value is one of [SQLITE_INTEGER], ** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL].)^ ** Other interfaces might change the datatype for an sqlite3_value object. ** For example, if the datatype is initially SQLITE_INTEGER and ** sqlite3_value_text(V) is called to extract a text value for that ** integer, then subsequent calls to sqlite3_value_type(V) might return ** SQLITE_TEXT. Whether or not a persistent internal datatype conversion ** occurs is undefined and may change from one release of SQLite to the next. ** ** ^(The sqlite3_value_numeric_type() interface attempts to apply ** numeric affinity to the value. This means that an attempt is ** made to convert the value to an integer or floating point. If ** such a conversion is possible without loss of information (in other ** words, if the value is a string that looks like a number) ** then the conversion is performed. Otherwise no conversion occurs. ** The [SQLITE_INTEGER | datatype] after conversion is returned.)^ ** ** ^Within the [xUpdate] method of a [virtual table], the ** sqlite3_value_nochange(X) interface returns true if and only if ** the column corresponding to X is unchanged by the UPDATE operation ** that the xUpdate method call was invoked to implement and if ** and the prior [xColumn] method call that was invoked to extracted ** the value for that column returned without setting a result (probably ** because it queried [sqlite3_vtab_nochange()] and found that the column ** was unchanging). ^Within an [xUpdate] method, any value for which ** sqlite3_value_nochange(X) is true will in all other respects appear ** to be a NULL value. If sqlite3_value_nochange(X) is invoked anywhere other ** than within an [xUpdate] method call for an UPDATE statement, then ** the return value is arbitrary and meaningless. ** ** ^The sqlite3_value_frombind(X) interface returns non-zero if the ** value X originated from one of the [sqlite3_bind_int|sqlite3_bind()] ** interfaces. ^If X comes from an SQL literal value, or a table column, ** or an expression, then sqlite3_value_frombind(X) returns zero. ** ** Please pay particular attention to the fact that the pointer returned ** from [sqlite3_value_blob()], [sqlite3_value_text()], or ** [sqlite3_value_text16()] can be invalidated by a subsequent call to ** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()], ** or [sqlite3_value_text16()]. ** ** These routines must be called from the same thread as ** the SQL function that supplied the [sqlite3_value*] parameters. ** ** As long as the input parameter is correct, these routines can only ** fail if an out-of-memory error occurs during a format conversion. ** Only the following subset of interfaces are subject to out-of-memory ** errors: ** **
      **
    • sqlite3_value_blob() **
    • sqlite3_value_text() **
    • sqlite3_value_text16() **
    • sqlite3_value_text16le() **
    • sqlite3_value_text16be() **
    • sqlite3_value_bytes() **
    • sqlite3_value_bytes16() **
    ** ** If an out-of-memory error occurs, then the return value from these ** routines is the same as if the column had contained an SQL NULL value. ** Valid SQL NULL returns can be distinguished from out-of-memory errors ** by invoking the [sqlite3_errcode()] immediately after the suspect ** return value is obtained and before any ** other SQLite interface is called on the same [database connection]. */ SQLITE_API const void *sqlite3_value_blob(sqlite3_value*); SQLITE_API double sqlite3_value_double(sqlite3_value*); SQLITE_API int sqlite3_value_int(sqlite3_value*); SQLITE_API sqlite3_int64 sqlite3_value_int64(sqlite3_value*); SQLITE_API void *sqlite3_value_pointer(sqlite3_value*, const char*); SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value*); SQLITE_API const void *sqlite3_value_text16(sqlite3_value*); SQLITE_API const void *sqlite3_value_text16le(sqlite3_value*); SQLITE_API const void *sqlite3_value_text16be(sqlite3_value*); SQLITE_API int sqlite3_value_bytes(sqlite3_value*); SQLITE_API int sqlite3_value_bytes16(sqlite3_value*); SQLITE_API int sqlite3_value_type(sqlite3_value*); SQLITE_API int sqlite3_value_numeric_type(sqlite3_value*); SQLITE_API int sqlite3_value_nochange(sqlite3_value*); SQLITE_API int sqlite3_value_frombind(sqlite3_value*); /* ** CAPI3REF: Finding The Subtype Of SQL Values ** METHOD: sqlite3_value ** ** The sqlite3_value_subtype(V) function returns the subtype for ** an [application-defined SQL function] argument V. The subtype ** information can be used to pass a limited amount of context from ** one SQL function to another. Use the [sqlite3_result_subtype()] ** routine to set the subtype for the return value of an SQL function. */ SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value*); /* ** CAPI3REF: Copy And Free SQL Values ** METHOD: sqlite3_value ** ** ^The sqlite3_value_dup(V) interface makes a copy of the [sqlite3_value] ** object D and returns a pointer to that copy. ^The [sqlite3_value] returned ** is a [protected sqlite3_value] object even if the input is not. ** ^The sqlite3_value_dup(V) interface returns NULL if V is NULL or if a ** memory allocation fails. ** ** ^The sqlite3_value_free(V) interface frees an [sqlite3_value] object ** previously obtained from [sqlite3_value_dup()]. ^If V is a NULL pointer ** then sqlite3_value_free(V) is a harmless no-op. */ SQLITE_API sqlite3_value *sqlite3_value_dup(const sqlite3_value*); SQLITE_API void sqlite3_value_free(sqlite3_value*); /* ** CAPI3REF: Obtain Aggregate Function Context ** METHOD: sqlite3_context ** ** Implementations of aggregate SQL functions use this ** routine to allocate memory for storing their state. ** ** ^The first time the sqlite3_aggregate_context(C,N) routine is called ** for a particular aggregate function, SQLite allocates ** N bytes of memory, zeroes out that memory, and returns a pointer ** to the new memory. ^On second and subsequent calls to ** sqlite3_aggregate_context() for the same aggregate function instance, ** the same buffer is returned. Sqlite3_aggregate_context() is normally ** called once for each invocation of the xStep callback and then one ** last time when the xFinal callback is invoked. ^(When no rows match ** an aggregate query, the xStep() callback of the aggregate function ** implementation is never called and xFinal() is called exactly once. ** In those cases, sqlite3_aggregate_context() might be called for the ** first time from within xFinal().)^ ** ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer ** when first called if N is less than or equal to zero or if a memory ** allocate error occurs. ** ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is ** determined by the N parameter on first successful call. Changing the ** value of N in any subsequent call to sqlite3_aggregate_context() within ** the same aggregate function instance will not resize the memory ** allocation.)^ Within the xFinal callback, it is customary to set ** N=0 in calls to sqlite3_aggregate_context(C,N) so that no ** pointless memory allocations occur. ** ** ^SQLite automatically frees the memory allocated by ** sqlite3_aggregate_context() when the aggregate query concludes. ** ** The first parameter must be a copy of the ** [sqlite3_context | SQL function context] that is the first parameter ** to the xStep or xFinal callback routine that implements the aggregate ** function. ** ** This routine must be called from the same thread in which ** the aggregate SQL function is running. */ SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); /* ** CAPI3REF: User Data For Functions ** METHOD: sqlite3_context ** ** ^The sqlite3_user_data() interface returns a copy of ** the pointer that was the pUserData parameter (the 5th parameter) ** of the [sqlite3_create_function()] ** and [sqlite3_create_function16()] routines that originally ** registered the application defined function. ** ** This routine must be called from the same thread in which ** the application-defined function is running. */ SQLITE_API void *sqlite3_user_data(sqlite3_context*); /* ** CAPI3REF: Database Connection For Functions ** METHOD: sqlite3_context ** ** ^The sqlite3_context_db_handle() interface returns a copy of ** the pointer to the [database connection] (the 1st parameter) ** of the [sqlite3_create_function()] ** and [sqlite3_create_function16()] routines that originally ** registered the application defined function. */ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*); /* ** CAPI3REF: Function Auxiliary Data ** METHOD: sqlite3_context ** ** These functions may be used by (non-aggregate) SQL functions to ** associate metadata with argument values. If the same value is passed to ** multiple invocations of the same SQL function during query execution, under ** some circumstances the associated metadata may be preserved. An example ** of where this might be useful is in a regular-expression matching ** function. The compiled version of the regular expression can be stored as ** metadata associated with the pattern string. ** Then as long as the pattern string remains the same, ** the compiled regular expression can be reused on multiple ** invocations of the same function. ** ** ^The sqlite3_get_auxdata(C,N) interface returns a pointer to the metadata ** associated by the sqlite3_set_auxdata(C,N,P,X) function with the Nth argument ** value to the application-defined function. ^N is zero for the left-most ** function argument. ^If there is no metadata ** associated with the function argument, the sqlite3_get_auxdata(C,N) interface ** returns a NULL pointer. ** ** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th ** argument of the application-defined function. ^Subsequent ** calls to sqlite3_get_auxdata(C,N) return P from the most recent ** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or ** NULL if the metadata has been discarded. ** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL, ** SQLite will invoke the destructor function X with parameter P exactly ** once, when the metadata is discarded. ** SQLite is free to discard the metadata at any time, including:
      **
    • ^(when the corresponding function parameter changes)^, or **
    • ^(when [sqlite3_reset()] or [sqlite3_finalize()] is called for the ** SQL statement)^, or **
    • ^(when sqlite3_set_auxdata() is invoked again on the same ** parameter)^, or **
    • ^(during the original sqlite3_set_auxdata() call when a memory ** allocation error occurs.)^
    ** ** Note the last bullet in particular. The destructor X in ** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the ** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata() ** should be called near the end of the function implementation and the ** function implementation should not make any use of P after ** sqlite3_set_auxdata() has been called. ** ** ^(In practice, metadata is preserved between function calls for ** function parameters that are compile-time constants, including literal ** values and [parameters] and expressions composed from the same.)^ ** ** The value of the N parameter to these interfaces should be non-negative. ** Future enhancements may make use of negative N values to define new ** kinds of function caching behavior. ** ** These routines must be called from the same thread in which ** the SQL function is running. */ SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N); SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*)); /* ** CAPI3REF: Constants Defining Special Destructor Behavior ** ** These are special values for the destructor that is passed in as the ** final argument to routines like [sqlite3_result_blob()]. ^If the destructor ** argument is SQLITE_STATIC, it means that the content pointer is constant ** and will never change. It does not need to be destroyed. ^The ** SQLITE_TRANSIENT value means that the content will likely change in ** the near future and that SQLite should make its own private copy of ** the content before returning. ** ** The typedef is necessary to work around problems in certain ** C++ compilers. */ typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) #define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) /* ** CAPI3REF: Setting The Result Of An SQL Function ** METHOD: sqlite3_context ** ** These routines are used by the xFunc or xFinal callbacks that ** implement SQL functions and aggregates. See ** [sqlite3_create_function()] and [sqlite3_create_function16()] ** for additional information. ** ** These functions work very much like the [parameter binding] family of ** functions used to bind values to host parameters in prepared statements. ** Refer to the [SQL parameter] documentation for additional information. ** ** ^The sqlite3_result_blob() interface sets the result from ** an application-defined function to be the BLOB whose content is pointed ** to by the second parameter and which is N bytes long where N is the ** third parameter. ** ** ^The sqlite3_result_zeroblob(C,N) and sqlite3_result_zeroblob64(C,N) ** interfaces set the result of the application-defined function to be ** a BLOB containing all zero bytes and N bytes in size. ** ** ^The sqlite3_result_double() interface sets the result from ** an application-defined function to be a floating point value specified ** by its 2nd argument. ** ** ^The sqlite3_result_error() and sqlite3_result_error16() functions ** cause the implemented SQL function to throw an exception. ** ^SQLite uses the string pointed to by the ** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16() ** as the text of an error message. ^SQLite interprets the error ** message string from sqlite3_result_error() as UTF-8. ^SQLite ** interprets the string from sqlite3_result_error16() as UTF-16 using ** the same [byte-order determination rules] as [sqlite3_bind_text16()]. ** ^If the third parameter to sqlite3_result_error() ** or sqlite3_result_error16() is negative then SQLite takes as the error ** message all text up through the first zero character. ** ^If the third parameter to sqlite3_result_error() or ** sqlite3_result_error16() is non-negative then SQLite takes that many ** bytes (not characters) from the 2nd parameter as the error message. ** ^The sqlite3_result_error() and sqlite3_result_error16() ** routines make a private copy of the error message text before ** they return. Hence, the calling function can deallocate or ** modify the text after they return without harm. ** ^The sqlite3_result_error_code() function changes the error code ** returned by SQLite as a result of an error in a function. ^By default, ** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error() ** or sqlite3_result_error16() resets the error code to SQLITE_ERROR. ** ** ^The sqlite3_result_error_toobig() interface causes SQLite to throw an ** error indicating that a string or BLOB is too long to represent. ** ** ^The sqlite3_result_error_nomem() interface causes SQLite to throw an ** error indicating that a memory allocation failed. ** ** ^The sqlite3_result_int() interface sets the return value ** of the application-defined function to be the 32-bit signed integer ** value given in the 2nd argument. ** ^The sqlite3_result_int64() interface sets the return value ** of the application-defined function to be the 64-bit signed integer ** value given in the 2nd argument. ** ** ^The sqlite3_result_null() interface sets the return value ** of the application-defined function to be NULL. ** ** ^The sqlite3_result_text(), sqlite3_result_text16(), ** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces ** set the return value of the application-defined function to be ** a text string which is represented as UTF-8, UTF-16 native byte order, ** UTF-16 little endian, or UTF-16 big endian, respectively. ** ^The sqlite3_result_text64() interface sets the return value of an ** application-defined function to be a text string in an encoding ** specified by the fifth (and last) parameter, which must be one ** of [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE]. ** ^SQLite takes the text result from the application from ** the 2nd parameter of the sqlite3_result_text* interfaces. ** ^If the 3rd parameter to the sqlite3_result_text* interfaces ** is negative, then SQLite takes result text from the 2nd parameter ** through the first zero character. ** ^If the 3rd parameter to the sqlite3_result_text* interfaces ** is non-negative, then as many bytes (not characters) of the text ** pointed to by the 2nd parameter are taken as the application-defined ** function result. If the 3rd parameter is non-negative, then it ** must be the byte offset into the string where the NUL terminator would ** appear if the string where NUL terminated. If any NUL characters occur ** in the string at a byte offset that is less than the value of the 3rd ** parameter, then the resulting string will contain embedded NULs and the ** result of expressions operating on strings with embedded NULs is undefined. ** ^If the 4th parameter to the sqlite3_result_text* interfaces ** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that ** function as the destructor on the text or BLOB result when it has ** finished using that result. ** ^If the 4th parameter to the sqlite3_result_text* interfaces or to ** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite ** assumes that the text or BLOB result is in constant space and does not ** copy the content of the parameter nor call a destructor on the content ** when it has finished using that result. ** ^If the 4th parameter to the sqlite3_result_text* interfaces ** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT ** then SQLite makes a copy of the result into space obtained ** from [sqlite3_malloc()] before it returns. ** ** ^For the sqlite3_result_text16(), sqlite3_result_text16le(), and ** sqlite3_result_text16be() routines, and for sqlite3_result_text64() ** when the encoding is not UTF8, if the input UTF16 begins with a ** byte-order mark (BOM, U+FEFF) then the BOM is removed from the ** string and the rest of the string is interpreted according to the ** byte-order specified by the BOM. ^The byte-order specified by ** the BOM at the beginning of the text overrides the byte-order ** specified by the interface procedure. ^So, for example, if ** sqlite3_result_text16le() is invoked with text that begins ** with bytes 0xfe, 0xff (a big-endian byte-order mark) then the ** first two bytes of input are skipped and the remaining input ** is interpreted as UTF16BE text. ** ** ^For UTF16 input text to the sqlite3_result_text16(), ** sqlite3_result_text16be(), sqlite3_result_text16le(), and ** sqlite3_result_text64() routines, if the text contains invalid ** UTF16 characters, the invalid characters might be converted ** into the unicode replacement character, U+FFFD. ** ** ^The sqlite3_result_value() interface sets the result of ** the application-defined function to be a copy of the ** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The ** sqlite3_result_value() interface makes a copy of the [sqlite3_value] ** so that the [sqlite3_value] specified in the parameter may change or ** be deallocated after sqlite3_result_value() returns without harm. ** ^A [protected sqlite3_value] object may always be used where an ** [unprotected sqlite3_value] object is required, so either ** kind of [sqlite3_value] object can be used with this interface. ** ** ^The sqlite3_result_pointer(C,P,T,D) interface sets the result to an ** SQL NULL value, just like [sqlite3_result_null(C)], except that it ** also associates the host-language pointer P or type T with that ** NULL value such that the pointer can be retrieved within an ** [application-defined SQL function] using [sqlite3_value_pointer()]. ** ^If the D parameter is not NULL, then it is a pointer to a destructor ** for the P parameter. ^SQLite invokes D with P as its only argument ** when SQLite is finished with P. The T parameter should be a static ** string and preferably a string literal. The sqlite3_result_pointer() ** routine is part of the [pointer passing interface] added for SQLite 3.20.0. ** ** If these routines are called from within the different thread ** than the one containing the application-defined function that received ** the [sqlite3_context] pointer, the results are undefined. */ SQLITE_API void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*)); SQLITE_API void sqlite3_result_blob64(sqlite3_context*,const void*, sqlite3_uint64,void(*)(void*)); SQLITE_API void sqlite3_result_double(sqlite3_context*, double); SQLITE_API void sqlite3_result_error(sqlite3_context*, const char*, int); SQLITE_API void sqlite3_result_error16(sqlite3_context*, const void*, int); SQLITE_API void sqlite3_result_error_toobig(sqlite3_context*); SQLITE_API void sqlite3_result_error_nomem(sqlite3_context*); SQLITE_API void sqlite3_result_error_code(sqlite3_context*, int); SQLITE_API void sqlite3_result_int(sqlite3_context*, int); SQLITE_API void sqlite3_result_int64(sqlite3_context*, sqlite3_int64); SQLITE_API void sqlite3_result_null(sqlite3_context*); SQLITE_API void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*)); SQLITE_API void sqlite3_result_text64(sqlite3_context*, const char*,sqlite3_uint64, void(*)(void*), unsigned char encoding); SQLITE_API void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*)); SQLITE_API void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*)); SQLITE_API void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*)); SQLITE_API void sqlite3_result_value(sqlite3_context*, sqlite3_value*); SQLITE_API void sqlite3_result_pointer(sqlite3_context*, void*,const char*,void(*)(void*)); SQLITE_API void sqlite3_result_zeroblob(sqlite3_context*, int n); SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context*, sqlite3_uint64 n); /* ** CAPI3REF: Setting The Subtype Of An SQL Function ** METHOD: sqlite3_context ** ** The sqlite3_result_subtype(C,T) function causes the subtype of ** the result from the [application-defined SQL function] with ** [sqlite3_context] C to be the value T. Only the lower 8 bits ** of the subtype T are preserved in current versions of SQLite; ** higher order bits are discarded. ** The number of subtype bytes preserved by SQLite might increase ** in future releases of SQLite. */ SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int); /* ** CAPI3REF: Define New Collating Sequences ** METHOD: sqlite3 ** ** ^These functions add, remove, or modify a [collation] associated ** with the [database connection] specified as the first argument. ** ** ^The name of the collation is a UTF-8 string ** for sqlite3_create_collation() and sqlite3_create_collation_v2() ** and a UTF-16 string in native byte order for sqlite3_create_collation16(). ** ^Collation names that compare equal according to [sqlite3_strnicmp()] are ** considered to be the same name. ** ** ^(The third argument (eTextRep) must be one of the constants: **
      **
    • [SQLITE_UTF8], **
    • [SQLITE_UTF16LE], **
    • [SQLITE_UTF16BE], **
    • [SQLITE_UTF16], or **
    • [SQLITE_UTF16_ALIGNED]. **
    )^ ** ^The eTextRep argument determines the encoding of strings passed ** to the collating function callback, xCompare. ** ^The [SQLITE_UTF16] and [SQLITE_UTF16_ALIGNED] values for eTextRep ** force strings to be UTF16 with native byte order. ** ^The [SQLITE_UTF16_ALIGNED] value for eTextRep forces strings to begin ** on an even byte address. ** ** ^The fourth argument, pArg, is an application data pointer that is passed ** through as the first argument to the collating function callback. ** ** ^The fifth argument, xCompare, is a pointer to the collating function. ** ^Multiple collating functions can be registered using the same name but ** with different eTextRep parameters and SQLite will use whichever ** function requires the least amount of data transformation. ** ^If the xCompare argument is NULL then the collating function is ** deleted. ^When all collating functions having the same name are deleted, ** that collation is no longer usable. ** ** ^The collating function callback is invoked with a copy of the pArg ** application data pointer and with two strings in the encoding specified ** by the eTextRep argument. The two integer parameters to the collating ** function callback are the length of the two strings, in bytes. The collating ** function must return an integer that is negative, zero, or positive ** if the first string is less than, equal to, or greater than the second, ** respectively. A collating function must always return the same answer ** given the same inputs. If two or more collating functions are registered ** to the same collation name (using different eTextRep values) then all ** must give an equivalent answer when invoked with equivalent strings. ** The collating function must obey the following properties for all ** strings A, B, and C: ** **
      **
    1. If A==B then B==A. **
    2. If A==B and B==C then A==C. **
    3. If A<B THEN B>A. **
    4. If A<B and B<C then A<C. **
    ** ** If a collating function fails any of the above constraints and that ** collating function is registered and used, then the behavior of SQLite ** is undefined. ** ** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation() ** with the addition that the xDestroy callback is invoked on pArg when ** the collating function is deleted. ** ^Collating functions are deleted when they are overridden by later ** calls to the collation creation functions or when the ** [database connection] is closed using [sqlite3_close()]. ** ** ^The xDestroy callback is not called if the ** sqlite3_create_collation_v2() function fails. Applications that invoke ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should ** check the return code and dispose of the application data pointer ** themselves rather than expecting SQLite to deal with it for them. ** This is different from every other SQLite interface. The inconsistency ** is unfortunate but cannot be changed without breaking backwards ** compatibility. ** ** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()]. */ SQLITE_API int sqlite3_create_collation( sqlite3*, const char *zName, int eTextRep, void *pArg, int(*xCompare)(void*,int,const void*,int,const void*) ); SQLITE_API int sqlite3_create_collation_v2( sqlite3*, const char *zName, int eTextRep, void *pArg, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDestroy)(void*) ); SQLITE_API int sqlite3_create_collation16( sqlite3*, const void *zName, int eTextRep, void *pArg, int(*xCompare)(void*,int,const void*,int,const void*) ); /* ** CAPI3REF: Collation Needed Callbacks ** METHOD: sqlite3 ** ** ^To avoid having to register all collation sequences before a database ** can be used, a single callback function may be registered with the ** [database connection] to be invoked whenever an undefined collation ** sequence is required. ** ** ^If the function is registered using the sqlite3_collation_needed() API, ** then it is passed the names of undefined collation sequences as strings ** encoded in UTF-8. ^If sqlite3_collation_needed16() is used, ** the names are passed as UTF-16 in machine native byte order. ** ^A call to either function replaces the existing collation-needed callback. ** ** ^(When the callback is invoked, the first argument passed is a copy ** of the second argument to sqlite3_collation_needed() or ** sqlite3_collation_needed16(). The second argument is the database ** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE], ** or [SQLITE_UTF16LE], indicating the most desirable form of the collation ** sequence function required. The fourth parameter is the name of the ** required collation sequence.)^ ** ** The callback function should register the desired collation using ** [sqlite3_create_collation()], [sqlite3_create_collation16()], or ** [sqlite3_create_collation_v2()]. */ SQLITE_API int sqlite3_collation_needed( sqlite3*, void*, void(*)(void*,sqlite3*,int eTextRep,const char*) ); SQLITE_API int sqlite3_collation_needed16( sqlite3*, void*, void(*)(void*,sqlite3*,int eTextRep,const void*) ); #ifdef SQLITE_ENABLE_CEROD /* ** Specify the activation key for a CEROD database. Unless ** activated, none of the CEROD routines will work. */ SQLITE_API void sqlite3_activate_cerod( const char *zPassPhrase /* Activation phrase */ ); #endif /* ** CAPI3REF: Suspend Execution For A Short Time ** ** The sqlite3_sleep() function causes the current thread to suspend execution ** for at least a number of milliseconds specified in its parameter. ** ** If the operating system does not support sleep requests with ** millisecond time resolution, then the time will be rounded up to ** the nearest second. The number of milliseconds of sleep actually ** requested from the operating system is returned. ** ** ^SQLite implements this interface by calling the xSleep() ** method of the default [sqlite3_vfs] object. If the xSleep() method ** of the default VFS is not implemented correctly, or not implemented at ** all, then the behavior of sqlite3_sleep() may deviate from the description ** in the previous paragraphs. */ SQLITE_API int sqlite3_sleep(int); /* ** CAPI3REF: Name Of The Folder Holding Temporary Files ** ** ^(If this global variable is made to point to a string which is ** the name of a folder (a.k.a. directory), then all temporary files ** created by SQLite when using a built-in [sqlite3_vfs | VFS] ** will be placed in that directory.)^ ^If this variable ** is a NULL pointer, then SQLite performs a search for an appropriate ** temporary file directory. ** ** Applications are strongly discouraged from using this global variable. ** It is required to set a temporary folder on Windows Runtime (WinRT). ** But for all other platforms, it is highly recommended that applications ** neither read nor write this variable. This global variable is a relic ** that exists for backwards compatibility of legacy applications and should ** be avoided in new projects. ** ** It is not safe to read or modify this variable in more than one ** thread at a time. It is not safe to read or modify this variable ** if a [database connection] is being used at the same time in a separate ** thread. ** It is intended that this variable be set once ** as part of process initialization and before any SQLite interface ** routines have been called and that this variable remain unchanged ** thereafter. ** ** ^The [temp_store_directory pragma] may modify this variable and cause ** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, ** the [temp_store_directory pragma] always assumes that any string ** that this variable points to is held in memory obtained from ** [sqlite3_malloc] and the pragma may attempt to free that memory ** using [sqlite3_free]. ** Hence, if this variable is modified directly, either it should be ** made NULL or made to point to memory obtained from [sqlite3_malloc] ** or else the use of the [temp_store_directory pragma] should be avoided. ** Except when requested by the [temp_store_directory pragma], SQLite ** does not free the memory that sqlite3_temp_directory points to. If ** the application wants that memory to be freed, it must do ** so itself, taking care to only do so after all [database connection] ** objects have been destroyed. ** ** Note to Windows Runtime users: The temporary directory must be set ** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various ** features that require the use of temporary files may fail. Here is an ** example of how to do this using C++ with the Windows Runtime: ** **
    ** LPCWSTR zPath = Windows::Storage::ApplicationData::Current->
    **       TemporaryFolder->Path->Data();
    ** char zPathBuf[MAX_PATH + 1];
    ** memset(zPathBuf, 0, sizeof(zPathBuf));
    ** WideCharToMultiByte(CP_UTF8, 0, zPath, -1, zPathBuf, sizeof(zPathBuf),
    **       NULL, NULL);
    ** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
    ** 
    */ SQLITE_API char *sqlite3_temp_directory; /* ** CAPI3REF: Name Of The Folder Holding Database Files ** ** ^(If this global variable is made to point to a string which is ** the name of a folder (a.k.a. directory), then all database files ** specified with a relative pathname and created or accessed by ** SQLite when using a built-in windows [sqlite3_vfs | VFS] will be assumed ** to be relative to that directory.)^ ^If this variable is a NULL ** pointer, then SQLite assumes that all database files specified ** with a relative pathname are relative to the current directory ** for the process. Only the windows VFS makes use of this global ** variable; it is ignored by the unix VFS. ** ** Changing the value of this variable while a database connection is ** open can result in a corrupt database. ** ** It is not safe to read or modify this variable in more than one ** thread at a time. It is not safe to read or modify this variable ** if a [database connection] is being used at the same time in a separate ** thread. ** It is intended that this variable be set once ** as part of process initialization and before any SQLite interface ** routines have been called and that this variable remain unchanged ** thereafter. ** ** ^The [data_store_directory pragma] may modify this variable and cause ** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, ** the [data_store_directory pragma] always assumes that any string ** that this variable points to is held in memory obtained from ** [sqlite3_malloc] and the pragma may attempt to free that memory ** using [sqlite3_free]. ** Hence, if this variable is modified directly, either it should be ** made NULL or made to point to memory obtained from [sqlite3_malloc] ** or else the use of the [data_store_directory pragma] should be avoided. */ SQLITE_API char *sqlite3_data_directory; /* ** CAPI3REF: Win32 Specific Interface ** ** These interfaces are available only on Windows. The ** [sqlite3_win32_set_directory] interface is used to set the value associated ** with the [sqlite3_temp_directory] or [sqlite3_data_directory] variable, to ** zValue, depending on the value of the type parameter. The zValue parameter ** should be NULL to cause the previous value to be freed via [sqlite3_free]; ** a non-NULL value will be copied into memory obtained from [sqlite3_malloc] ** prior to being used. The [sqlite3_win32_set_directory] interface returns ** [SQLITE_OK] to indicate success, [SQLITE_ERROR] if the type is unsupported, ** or [SQLITE_NOMEM] if memory could not be allocated. The value of the ** [sqlite3_data_directory] variable is intended to act as a replacement for ** the current directory on the sub-platforms of Win32 where that concept is ** not present, e.g. WinRT and UWP. The [sqlite3_win32_set_directory8] and ** [sqlite3_win32_set_directory16] interfaces behave exactly the same as the ** sqlite3_win32_set_directory interface except the string parameter must be ** UTF-8 or UTF-16, respectively. */ SQLITE_API int sqlite3_win32_set_directory( unsigned long type, /* Identifier for directory being set or reset */ void *zValue /* New value for directory being set or reset */ ); SQLITE_API int sqlite3_win32_set_directory8(unsigned long type, const char *zValue); SQLITE_API int sqlite3_win32_set_directory16(unsigned long type, const void *zValue); /* ** CAPI3REF: Win32 Directory Types ** ** These macros are only available on Windows. They define the allowed values ** for the type argument to the [sqlite3_win32_set_directory] interface. */ #define SQLITE_WIN32_DATA_DIRECTORY_TYPE 1 #define SQLITE_WIN32_TEMP_DIRECTORY_TYPE 2 /* ** CAPI3REF: Test For Auto-Commit Mode ** KEYWORDS: {autocommit mode} ** METHOD: sqlite3 ** ** ^The sqlite3_get_autocommit() interface returns non-zero or ** zero if the given database connection is or is not in autocommit mode, ** respectively. ^Autocommit mode is on by default. ** ^Autocommit mode is disabled by a [BEGIN] statement. ** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK]. ** ** If certain kinds of errors occur on a statement within a multi-statement ** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR], ** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the ** transaction might be rolled back automatically. The only way to ** find out whether SQLite automatically rolled back the transaction after ** an error is to use this function. ** ** If another thread changes the autocommit status of the database ** connection while this routine is running, then the return value ** is undefined. */ SQLITE_API int sqlite3_get_autocommit(sqlite3*); /* ** CAPI3REF: Find The Database Handle Of A Prepared Statement ** METHOD: sqlite3_stmt ** ** ^The sqlite3_db_handle interface returns the [database connection] handle ** to which a [prepared statement] belongs. ^The [database connection] ** returned by sqlite3_db_handle is the same [database connection] ** that was the first argument ** to the [sqlite3_prepare_v2()] call (or its variants) that was used to ** create the statement in the first place. */ SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt*); /* ** CAPI3REF: Return The Filename For A Database Connection ** METHOD: sqlite3 ** ** ^The sqlite3_db_filename(D,N) interface returns a pointer to the filename ** associated with database N of connection D. ** ^If there is no attached database N on the database ** connection D, or if database N is a temporary or in-memory database, then ** this function will return either a NULL pointer or an empty string. ** ** ^The string value returned by this routine is owned and managed by ** the database connection. ^The value will be valid until the database N ** is [DETACH]-ed or until the database connection closes. ** ** ^The filename returned by this function is the output of the ** xFullPathname method of the [VFS]. ^In other words, the filename ** will be an absolute pathname, even if the filename used ** to open the database originally was a URI or relative pathname. ** ** If the filename pointer returned by this routine is not NULL, then it ** can be used as the filename input parameter to these routines: **
      **
    • [sqlite3_uri_parameter()] **
    • [sqlite3_uri_boolean()] **
    • [sqlite3_uri_int64()] **
    • [sqlite3_filename_database()] **
    • [sqlite3_filename_journal()] **
    • [sqlite3_filename_wal()] **
    */ SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName); /* ** CAPI3REF: Determine if a database is read-only ** METHOD: sqlite3 ** ** ^The sqlite3_db_readonly(D,N) interface returns 1 if the database N ** of connection D is read-only, 0 if it is read/write, or -1 if N is not ** the name of a database on connection D. */ SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName); /* ** CAPI3REF: Determine the transaction state of a database ** METHOD: sqlite3 ** ** ^The sqlite3_txn_state(D,S) interface returns the current ** [transaction state] of schema S in database connection D. ^If S is NULL, ** then the highest transaction state of any schema on database connection D ** is returned. Transaction states are (in order of lowest to highest): **
      **
    1. SQLITE_TXN_NONE **
    2. SQLITE_TXN_READ **
    3. SQLITE_TXN_WRITE **
    ** ^If the S argument to sqlite3_txn_state(D,S) is not the name of ** a valid schema, then -1 is returned. */ SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema); /* ** CAPI3REF: Allowed return values from [sqlite3_txn_state()] ** KEYWORDS: {transaction state} ** ** These constants define the current transaction state of a database file. ** ^The [sqlite3_txn_state(D,S)] interface returns one of these ** constants in order to describe the transaction state of schema S ** in [database connection] D. ** **
    ** [[SQLITE_TXN_NONE]]
    SQLITE_TXN_NONE
    **
    The SQLITE_TXN_NONE state means that no transaction is currently ** pending.
    ** ** [[SQLITE_TXN_READ]]
    SQLITE_TXN_READ
    **
    The SQLITE_TXN_READ state means that the database is currently ** in a read transaction. Content has been read from the database file ** but nothing in the database file has changed. The transaction state ** will advanced to SQLITE_TXN_WRITE if any changes occur and there are ** no other conflicting concurrent write transactions. The transaction ** state will revert to SQLITE_TXN_NONE following a [ROLLBACK] or ** [COMMIT].
    ** ** [[SQLITE_TXN_WRITE]]
    SQLITE_TXN_WRITE
    **
    The SQLITE_TXN_WRITE state means that the database is currently ** in a write transaction. Content has been written to the database file ** but has not yet committed. The transaction state will change to ** to SQLITE_TXN_NONE at the next [ROLLBACK] or [COMMIT].
    */ #define SQLITE_TXN_NONE 0 #define SQLITE_TXN_READ 1 #define SQLITE_TXN_WRITE 2 /* ** CAPI3REF: Find the next prepared statement ** METHOD: sqlite3 ** ** ^This interface returns a pointer to the next [prepared statement] after ** pStmt associated with the [database connection] pDb. ^If pStmt is NULL ** then this interface returns a pointer to the first prepared statement ** associated with the database connection pDb. ^If no prepared statement ** satisfies the conditions of this routine, it returns NULL. ** ** The [database connection] pointer D in a call to ** [sqlite3_next_stmt(D,S)] must refer to an open database ** connection and in particular must not be a NULL pointer. */ SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt); /* ** CAPI3REF: Commit And Rollback Notification Callbacks ** METHOD: sqlite3 ** ** ^The sqlite3_commit_hook() interface registers a callback ** function to be invoked whenever a transaction is [COMMIT | committed]. ** ^Any callback set by a previous call to sqlite3_commit_hook() ** for the same database connection is overridden. ** ^The sqlite3_rollback_hook() interface registers a callback ** function to be invoked whenever a transaction is [ROLLBACK | rolled back]. ** ^Any callback set by a previous call to sqlite3_rollback_hook() ** for the same database connection is overridden. ** ^The pArg argument is passed through to the callback. ** ^If the callback on a commit hook function returns non-zero, ** then the commit is converted into a rollback. ** ** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions ** return the P argument from the previous call of the same function ** on the same [database connection] D, or NULL for ** the first call for each function on D. ** ** The commit and rollback hook callbacks are not reentrant. ** The callback implementation must not do anything that will modify ** the database connection that invoked the callback. Any actions ** to modify the database connection must be deferred until after the ** completion of the [sqlite3_step()] call that triggered the commit ** or rollback hook in the first place. ** Note that running any other SQL statements, including SELECT statements, ** or merely calling [sqlite3_prepare_v2()] and [sqlite3_step()] will modify ** the database connections for the meaning of "modify" in this paragraph. ** ** ^Registering a NULL function disables the callback. ** ** ^When the commit hook callback routine returns zero, the [COMMIT] ** operation is allowed to continue normally. ^If the commit hook ** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK]. ** ^The rollback hook is invoked on a rollback that results from a commit ** hook returning non-zero, just as it would be with any other rollback. ** ** ^For the purposes of this API, a transaction is said to have been ** rolled back if an explicit "ROLLBACK" statement is executed, or ** an error or constraint causes an implicit rollback to occur. ** ^The rollback callback is not invoked if a transaction is ** automatically rolled back because the database connection is closed. ** ** See also the [sqlite3_update_hook()] interface. */ SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*); SQLITE_API void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*); /* ** CAPI3REF: Autovacuum Compaction Amount Callback ** METHOD: sqlite3 ** ** ^The sqlite3_autovacuum_pages(D,C,P,X) interface registers a callback ** function C that is invoked prior to each autovacuum of the database ** file. ^The callback is passed a copy of the generic data pointer (P), ** the schema-name of the attached database that is being autovacuumed, ** the the size of the database file in pages, the number of free pages, ** and the number of bytes per page, respectively. The callback should ** return the number of free pages that should be removed by the ** autovacuum. ^If the callback returns zero, then no autovacuum happens. ** ^If the value returned is greater than or equal to the number of ** free pages, then a complete autovacuum happens. ** **

    ^If there are multiple ATTACH-ed database files that are being ** modified as part of a transaction commit, then the autovacuum pages ** callback is invoked separately for each file. ** **

    The callback is not reentrant. The callback function should ** not attempt to invoke any other SQLite interface. If it does, bad ** things may happen, including segmentation faults and corrupt database ** files. The callback function should be a simple function that ** does some arithmetic on its input parameters and returns a result. ** ** ^The X parameter to sqlite3_autovacuum_pages(D,C,P,X) is an optional ** destructor for the P parameter. ^If X is not NULL, then X(P) is ** invoked whenever the database connection closes or when the callback ** is overwritten by another invocation of sqlite3_autovacuum_pages(). ** **

    ^There is only one autovacuum pages callback per database connection. ** ^Each call to the sqlite3_autovacuum_pages() interface overrides all ** previous invocations for that database connection. ^If the callback ** argument (C) to sqlite3_autovacuum_pages(D,C,P,X) is a NULL pointer, ** then the autovacuum steps callback is cancelled. The return value ** from sqlite3_autovacuum_pages() is normally SQLITE_OK, but might ** be some other error code if something goes wrong. The current ** implementation will only return SQLITE_OK or SQLITE_MISUSE, but other ** return codes might be added in future releases. ** **

    If no autovacuum pages callback is specified (the usual case) or ** a NULL pointer is provided for the callback, ** then the default behavior is to vacuum all free pages. So, in other ** words, the default behavior is the same as if the callback function ** were something like this: ** **

    **     unsigned int demonstration_autovac_pages_callback(
    **       void *pClientData,
    **       const char *zSchema,
    **       unsigned int nDbPage,
    **       unsigned int nFreePage,
    **       unsigned int nBytePerPage
    **     ){
    **       return nFreePage;
    **     }
    ** 
    */ SQLITE_API int sqlite3_autovacuum_pages( sqlite3 *db, unsigned int(*)(void*,const char*,unsigned int,unsigned int,unsigned int), void*, void(*)(void*) ); /* ** CAPI3REF: Data Change Notification Callbacks ** METHOD: sqlite3 ** ** ^The sqlite3_update_hook() interface registers a callback function ** with the [database connection] identified by the first argument ** to be invoked whenever a row is updated, inserted or deleted in ** a [rowid table]. ** ^Any callback set by a previous call to this function ** for the same database connection is overridden. ** ** ^The second argument is a pointer to the function to invoke when a ** row is updated, inserted or deleted in a rowid table. ** ^The first argument to the callback is a copy of the third argument ** to sqlite3_update_hook(). ** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE], ** or [SQLITE_UPDATE], depending on the operation that caused the callback ** to be invoked. ** ^The third and fourth arguments to the callback contain pointers to the ** database and table name containing the affected row. ** ^The final callback parameter is the [rowid] of the row. ** ^In the case of an update, this is the [rowid] after the update takes place. ** ** ^(The update hook is not invoked when internal system tables are ** modified (i.e. sqlite_sequence).)^ ** ^The update hook is not invoked when [WITHOUT ROWID] tables are modified. ** ** ^In the current implementation, the update hook ** is not invoked when conflicting rows are deleted because of an ** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook ** invoked when rows are deleted using the [truncate optimization]. ** The exceptions defined in this paragraph might change in a future ** release of SQLite. ** ** The update hook implementation must not do anything that will modify ** the database connection that invoked the update hook. Any actions ** to modify the database connection must be deferred until after the ** completion of the [sqlite3_step()] call that triggered the update hook. ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their ** database connections for the meaning of "modify" in this paragraph. ** ** ^The sqlite3_update_hook(D,C,P) function ** returns the P argument from the previous call ** on the same [database connection] D, or NULL for ** the first call on D. ** ** See also the [sqlite3_commit_hook()], [sqlite3_rollback_hook()], ** and [sqlite3_preupdate_hook()] interfaces. */ SQLITE_API void *sqlite3_update_hook( sqlite3*, void(*)(void *,int ,char const *,char const *,sqlite3_int64), void* ); /* ** CAPI3REF: Enable Or Disable Shared Pager Cache ** ** ^(This routine enables or disables the sharing of the database cache ** and schema data structures between [database connection | connections] ** to the same database. Sharing is enabled if the argument is true ** and disabled if the argument is false.)^ ** ** ^Cache sharing is enabled and disabled for an entire process. ** This is a change as of SQLite [version 3.5.0] ([dateof:3.5.0]). ** In prior versions of SQLite, ** sharing was enabled or disabled for each thread separately. ** ** ^(The cache sharing mode set by this interface effects all subsequent ** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()]. ** Existing database connections continue to use the sharing mode ** that was in effect at the time they were opened.)^ ** ** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled ** successfully. An [error code] is returned otherwise.)^ ** ** ^Shared cache is disabled by default. It is recommended that it stay ** that way. In other words, do not use this routine. This interface ** continues to be provided for historical compatibility, but its use is ** discouraged. Any use of shared cache is discouraged. If shared cache ** must be used, it is recommended that shared cache only be enabled for ** individual database connections using the [sqlite3_open_v2()] interface ** with the [SQLITE_OPEN_SHAREDCACHE] flag. ** ** Note: This method is disabled on MacOS X 10.7 and iOS version 5.0 ** and will always return SQLITE_MISUSE. On those systems, ** shared cache mode should be enabled per-database connection via ** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE]. ** ** This interface is threadsafe on processors where writing a ** 32-bit integer is atomic. ** ** See Also: [SQLite Shared-Cache Mode] */ SQLITE_API int sqlite3_enable_shared_cache(int); /* ** CAPI3REF: Attempt To Free Heap Memory ** ** ^The sqlite3_release_memory() interface attempts to free N bytes ** of heap memory by deallocating non-essential memory allocations ** held by the database library. Memory used to cache database ** pages to improve performance is an example of non-essential memory. ** ^sqlite3_release_memory() returns the number of bytes actually freed, ** which might be more or less than the amount requested. ** ^The sqlite3_release_memory() routine is a no-op returning zero ** if SQLite is not compiled with [SQLITE_ENABLE_MEMORY_MANAGEMENT]. ** ** See also: [sqlite3_db_release_memory()] */ SQLITE_API int sqlite3_release_memory(int); /* ** CAPI3REF: Free Memory Used By A Database Connection ** METHOD: sqlite3 ** ** ^The sqlite3_db_release_memory(D) interface attempts to free as much heap ** memory as possible from database connection D. Unlike the ** [sqlite3_release_memory()] interface, this interface is in effect even ** when the [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is ** omitted. ** ** See also: [sqlite3_release_memory()] */ SQLITE_API int sqlite3_db_release_memory(sqlite3*); /* ** CAPI3REF: Impose A Limit On Heap Size ** ** These interfaces impose limits on the amount of heap memory that will be ** by all database connections within a single process. ** ** ^The sqlite3_soft_heap_limit64() interface sets and/or queries the ** soft limit on the amount of heap memory that may be allocated by SQLite. ** ^SQLite strives to keep heap memory utilization below the soft heap ** limit by reducing the number of pages held in the page cache ** as heap memory usages approaches the limit. ** ^The soft heap limit is "soft" because even though SQLite strives to stay ** below the limit, it will exceed the limit rather than generate ** an [SQLITE_NOMEM] error. In other words, the soft heap limit ** is advisory only. ** ** ^The sqlite3_hard_heap_limit64(N) interface sets a hard upper bound of ** N bytes on the amount of memory that will be allocated. ^The ** sqlite3_hard_heap_limit64(N) interface is similar to ** sqlite3_soft_heap_limit64(N) except that memory allocations will fail ** when the hard heap limit is reached. ** ** ^The return value from both sqlite3_soft_heap_limit64() and ** sqlite3_hard_heap_limit64() is the size of ** the heap limit prior to the call, or negative in the case of an ** error. ^If the argument N is negative ** then no change is made to the heap limit. Hence, the current ** size of heap limits can be determined by invoking ** sqlite3_soft_heap_limit64(-1) or sqlite3_hard_heap_limit(-1). ** ** ^Setting the heap limits to zero disables the heap limiter mechanism. ** ** ^The soft heap limit may not be greater than the hard heap limit. ** ^If the hard heap limit is enabled and if sqlite3_soft_heap_limit(N) ** is invoked with a value of N that is greater than the hard heap limit, ** the the soft heap limit is set to the value of the hard heap limit. ** ^The soft heap limit is automatically enabled whenever the hard heap ** limit is enabled. ^When sqlite3_hard_heap_limit64(N) is invoked and ** the soft heap limit is outside the range of 1..N, then the soft heap ** limit is set to N. ^Invoking sqlite3_soft_heap_limit64(0) when the ** hard heap limit is enabled makes the soft heap limit equal to the ** hard heap limit. ** ** The memory allocation limits can also be adjusted using ** [PRAGMA soft_heap_limit] and [PRAGMA hard_heap_limit]. ** ** ^(The heap limits are not enforced in the current implementation ** if one or more of following conditions are true: ** **
      **
    • The limit value is set to zero. **
    • Memory accounting is disabled using a combination of the ** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and ** the [SQLITE_DEFAULT_MEMSTATUS] compile-time option. **
    • An alternative page cache implementation is specified using ** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...). **
    • The page cache allocates from its own memory pool supplied ** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than ** from the heap. **
    )^ ** ** The circumstances under which SQLite will enforce the heap limits may ** changes in future releases of SQLite. */ SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N); SQLITE_API sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 N); /* ** CAPI3REF: Deprecated Soft Heap Limit Interface ** DEPRECATED ** ** This is a deprecated version of the [sqlite3_soft_heap_limit64()] ** interface. This routine is provided for historical compatibility ** only. All new applications should use the ** [sqlite3_soft_heap_limit64()] interface rather than this one. */ SQLITE_API SQLITE_DEPRECATED void sqlite3_soft_heap_limit(int N); /* ** CAPI3REF: Extract Metadata About A Column Of A Table ** METHOD: sqlite3 ** ** ^(The sqlite3_table_column_metadata(X,D,T,C,....) routine returns ** information about column C of table T in database D ** on [database connection] X.)^ ^The sqlite3_table_column_metadata() ** interface returns SQLITE_OK and fills in the non-NULL pointers in ** the final five arguments with appropriate values if the specified ** column exists. ^The sqlite3_table_column_metadata() interface returns ** SQLITE_ERROR if the specified column does not exist. ** ^If the column-name parameter to sqlite3_table_column_metadata() is a ** NULL pointer, then this routine simply checks for the existence of the ** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it ** does not. If the table name parameter T in a call to ** sqlite3_table_column_metadata(X,D,T,C,...) is NULL then the result is ** undefined behavior. ** ** ^The column is identified by the second, third and fourth parameters to ** this function. ^(The second parameter is either the name of the database ** (i.e. "main", "temp", or an attached database) containing the specified ** table or NULL.)^ ^If it is NULL, then all attached databases are searched ** for the table using the same algorithm used by the database engine to ** resolve unqualified table references. ** ** ^The third and fourth parameters to this function are the table and column ** name of the desired column, respectively. ** ** ^Metadata is returned by writing to the memory locations passed as the 5th ** and subsequent parameters to this function. ^Any of these arguments may be ** NULL, in which case the corresponding element of metadata is omitted. ** ** ^(
    ** **
    Parameter Output
    Type
    Description ** **
    5th const char* Data type **
    6th const char* Name of default collation sequence **
    7th int True if column has a NOT NULL constraint **
    8th int True if column is part of the PRIMARY KEY **
    9th int True if column is [AUTOINCREMENT] **
    **
    )^ ** ** ^The memory pointed to by the character pointers returned for the ** declaration type and collation sequence is valid until the next ** call to any SQLite API function. ** ** ^If the specified table is actually a view, an [error code] is returned. ** ** ^If the specified column is "rowid", "oid" or "_rowid_" and the table ** is not a [WITHOUT ROWID] table and an ** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output ** parameters are set for the explicitly declared column. ^(If there is no ** [INTEGER PRIMARY KEY] column, then the outputs ** for the [rowid] are set as follows: ** **
    **     data type: "INTEGER"
    **     collation sequence: "BINARY"
    **     not null: 0
    **     primary key: 1
    **     auto increment: 0
    ** 
    )^ ** ** ^This function causes all database schemas to be read from disk and ** parsed, if that has not already been done, and returns an error if ** any errors are encountered while loading the schema. */ SQLITE_API int sqlite3_table_column_metadata( sqlite3 *db, /* Connection handle */ const char *zDbName, /* Database name or NULL */ const char *zTableName, /* Table name */ const char *zColumnName, /* Column name */ char const **pzDataType, /* OUTPUT: Declared data type */ char const **pzCollSeq, /* OUTPUT: Collation sequence name */ int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ int *pPrimaryKey, /* OUTPUT: True if column part of PK */ int *pAutoinc /* OUTPUT: True if column is auto-increment */ ); /* ** CAPI3REF: Load An Extension ** METHOD: sqlite3 ** ** ^This interface loads an SQLite extension library from the named file. ** ** ^The sqlite3_load_extension() interface attempts to load an ** [SQLite extension] library contained in the file zFile. If ** the file cannot be loaded directly, attempts are made to load ** with various operating-system specific extensions added. ** So for example, if "samplelib" cannot be loaded, then names like ** "samplelib.so" or "samplelib.dylib" or "samplelib.dll" might ** be tried also. ** ** ^The entry point is zProc. ** ^(zProc may be 0, in which case SQLite will try to come up with an ** entry point name on its own. It first tries "sqlite3_extension_init". ** If that does not work, it constructs a name "sqlite3_X_init" where the ** X is consists of the lower-case equivalent of all ASCII alphabetic ** characters in the filename from the last "/" to the first following ** "." and omitting any initial "lib".)^ ** ^The sqlite3_load_extension() interface returns ** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong. ** ^If an error occurs and pzErrMsg is not 0, then the ** [sqlite3_load_extension()] interface shall attempt to ** fill *pzErrMsg with error message text stored in memory ** obtained from [sqlite3_malloc()]. The calling function ** should free this memory by calling [sqlite3_free()]. ** ** ^Extension loading must be enabled using ** [sqlite3_enable_load_extension()] or ** [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],1,NULL) ** prior to calling this API, ** otherwise an error will be returned. ** ** Security warning: It is recommended that the ** [SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION] method be used to enable only this ** interface. The use of the [sqlite3_enable_load_extension()] interface ** should be avoided. This will keep the SQL function [load_extension()] ** disabled and prevent SQL injections from giving attackers ** access to extension loading capabilities. ** ** See also the [load_extension() SQL function]. */ SQLITE_API int sqlite3_load_extension( sqlite3 *db, /* Load the extension into this database connection */ const char *zFile, /* Name of the shared library containing extension */ const char *zProc, /* Entry point. Derived from zFile if 0 */ char **pzErrMsg /* Put error message here if not 0 */ ); /* ** CAPI3REF: Enable Or Disable Extension Loading ** METHOD: sqlite3 ** ** ^So as not to open security holes in older applications that are ** unprepared to deal with [extension loading], and as a means of disabling ** [extension loading] while evaluating user-entered SQL, the following API ** is provided to turn the [sqlite3_load_extension()] mechanism on and off. ** ** ^Extension loading is off by default. ** ^Call the sqlite3_enable_load_extension() routine with onoff==1 ** to turn extension loading on and call it with onoff==0 to turn ** it back off again. ** ** ^This interface enables or disables both the C-API ** [sqlite3_load_extension()] and the SQL function [load_extension()]. ** ^(Use [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],..) ** to enable or disable only the C-API.)^ ** ** Security warning: It is recommended that extension loading ** be enabled using the [SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION] method ** rather than this interface, so the [load_extension()] SQL function ** remains disabled. This will prevent SQL injections from giving attackers ** access to extension loading capabilities. */ SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff); /* ** CAPI3REF: Automatically Load Statically Linked Extensions ** ** ^This interface causes the xEntryPoint() function to be invoked for ** each new [database connection] that is created. The idea here is that ** xEntryPoint() is the entry point for a statically linked [SQLite extension] ** that is to be automatically loaded into all new database connections. ** ** ^(Even though the function prototype shows that xEntryPoint() takes ** no arguments and returns void, SQLite invokes xEntryPoint() with three ** arguments and expects an integer result as if the signature of the ** entry point where as follows: ** **
    **    int xEntryPoint(
    **      sqlite3 *db,
    **      const char **pzErrMsg,
    **      const struct sqlite3_api_routines *pThunk
    **    );
    ** 
    )^ ** ** If the xEntryPoint routine encounters an error, it should make *pzErrMsg ** point to an appropriate error message (obtained from [sqlite3_mprintf()]) ** and return an appropriate [error code]. ^SQLite ensures that *pzErrMsg ** is NULL before calling the xEntryPoint(). ^SQLite will invoke ** [sqlite3_free()] on *pzErrMsg after xEntryPoint() returns. ^If any ** xEntryPoint() returns an error, the [sqlite3_open()], [sqlite3_open16()], ** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail. ** ** ^Calling sqlite3_auto_extension(X) with an entry point X that is already ** on the list of automatic extensions is a harmless no-op. ^No entry point ** will be called more than once for each database connection that is opened. ** ** See also: [sqlite3_reset_auto_extension()] ** and [sqlite3_cancel_auto_extension()] */ SQLITE_API int sqlite3_auto_extension(void(*xEntryPoint)(void)); /* ** CAPI3REF: Cancel Automatic Extension Loading ** ** ^The [sqlite3_cancel_auto_extension(X)] interface unregisters the ** initialization routine X that was registered using a prior call to ** [sqlite3_auto_extension(X)]. ^The [sqlite3_cancel_auto_extension(X)] ** routine returns 1 if initialization routine X was successfully ** unregistered and it returns 0 if X was not on the list of initialization ** routines. */ SQLITE_API int sqlite3_cancel_auto_extension(void(*xEntryPoint)(void)); /* ** CAPI3REF: Reset Automatic Extension Loading ** ** ^This interface disables all automatic extensions previously ** registered using [sqlite3_auto_extension()]. */ SQLITE_API void sqlite3_reset_auto_extension(void); /* ** The interface to the virtual-table mechanism is currently considered ** to be experimental. The interface might change in incompatible ways. ** If this is a problem for you, do not use the interface at this time. ** ** When the virtual-table mechanism stabilizes, we will declare the ** interface fixed, support it indefinitely, and remove this comment. */ /* ** Structures used by the virtual table interface */ typedef struct sqlite3_vtab sqlite3_vtab; typedef struct sqlite3_index_info sqlite3_index_info; typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef struct sqlite3_module sqlite3_module; /* ** CAPI3REF: Virtual Table Object ** KEYWORDS: sqlite3_module {virtual table module} ** ** This structure, sometimes called a "virtual table module", ** defines the implementation of a [virtual table]. ** This structure consists mostly of methods for the module. ** ** ^A virtual table module is created by filling in a persistent ** instance of this structure and passing a pointer to that instance ** to [sqlite3_create_module()] or [sqlite3_create_module_v2()]. ** ^The registration remains valid until it is replaced by a different ** module or until the [database connection] closes. The content ** of this structure must not change while it is registered with ** any database connection. */ struct sqlite3_module { int iVersion; int (*xCreate)(sqlite3*, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVTab, char**); int (*xConnect)(sqlite3*, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVTab, char**); int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); int (*xDisconnect)(sqlite3_vtab *pVTab); int (*xDestroy)(sqlite3_vtab *pVTab); int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); int (*xClose)(sqlite3_vtab_cursor*); int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, int argc, sqlite3_value **argv); int (*xNext)(sqlite3_vtab_cursor*); int (*xEof)(sqlite3_vtab_cursor*); int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *); int (*xBegin)(sqlite3_vtab *pVTab); int (*xSync)(sqlite3_vtab *pVTab); int (*xCommit)(sqlite3_vtab *pVTab); int (*xRollback)(sqlite3_vtab *pVTab); int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg); int (*xRename)(sqlite3_vtab *pVtab, const char *zNew); /* The methods above are in version 1 of the sqlite_module object. Those ** below are for version 2 and greater. */ int (*xSavepoint)(sqlite3_vtab *pVTab, int); int (*xRelease)(sqlite3_vtab *pVTab, int); int (*xRollbackTo)(sqlite3_vtab *pVTab, int); /* The methods above are in versions 1 and 2 of the sqlite_module object. ** Those below are for version 3 and greater. */ int (*xShadowName)(const char*); }; /* ** CAPI3REF: Virtual Table Indexing Information ** KEYWORDS: sqlite3_index_info ** ** The sqlite3_index_info structure and its substructures is used as part ** of the [virtual table] interface to ** pass information into and receive the reply from the [xBestIndex] ** method of a [virtual table module]. The fields under **Inputs** are the ** inputs to xBestIndex and are read-only. xBestIndex inserts its ** results into the **Outputs** fields. ** ** ^(The aConstraint[] array records WHERE clause constraints of the form: ** **
    column OP expr
    ** ** where OP is =, <, <=, >, or >=.)^ ^(The particular operator is ** stored in aConstraint[].op using one of the ** [SQLITE_INDEX_CONSTRAINT_EQ | SQLITE_INDEX_CONSTRAINT_ values].)^ ** ^(The index of the column is stored in ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the ** expr on the right-hand side can be evaluated (and thus the constraint ** is usable) and false if it cannot.)^ ** ** ^The optimizer automatically inverts terms of the form "expr OP column" ** and makes other simplifications to the WHERE clause in an attempt to ** get as many WHERE clause terms into the form shown above as possible. ** ^The aConstraint[] array only reports WHERE clause terms that are ** relevant to the particular virtual table being queried. ** ** ^Information about the ORDER BY clause is stored in aOrderBy[]. ** ^Each term of aOrderBy records a column of the ORDER BY clause. ** ** The colUsed field indicates which columns of the virtual table may be ** required by the current scan. Virtual table columns are numbered from ** zero in the order in which they appear within the CREATE TABLE statement ** passed to sqlite3_declare_vtab(). For the first 63 columns (columns 0-62), ** the corresponding bit is set within the colUsed mask if the column may be ** required by SQLite. If the table has at least 64 columns and any column ** to the right of the first 63 is required, then bit 63 of colUsed is also ** set. In other words, column iCol may be required if the expression ** (colUsed & ((sqlite3_uint64)1 << (iCol>=63 ? 63 : iCol))) evaluates to ** non-zero. ** ** The [xBestIndex] method must fill aConstraintUsage[] with information ** about what parameters to pass to xFilter. ^If argvIndex>0 then ** the right-hand side of the corresponding aConstraint[] is evaluated ** and becomes the argvIndex-th entry in argv. ^(If aConstraintUsage[].omit ** is true, then the constraint is assumed to be fully handled by the ** virtual table and might not be checked again by the byte code.)^ ^(The ** aConstraintUsage[].omit flag is an optimization hint. When the omit flag ** is left in its default setting of false, the constraint will always be ** checked separately in byte code. If the omit flag is change to true, then ** the constraint may or may not be checked in byte code. In other words, ** when the omit flag is true there is no guarantee that the constraint will ** not be checked again using byte code.)^ ** ** ^The idxNum and idxPtr values are recorded and passed into the ** [xFilter] method. ** ^[sqlite3_free()] is used to free idxPtr if and only if ** needToFreeIdxPtr is true. ** ** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in ** the correct order to satisfy the ORDER BY clause so that no separate ** sorting step is required. ** ** ^The estimatedCost value is an estimate of the cost of a particular ** strategy. A cost of N indicates that the cost of the strategy is similar ** to a linear scan of an SQLite table with N rows. A cost of log(N) ** indicates that the expense of the operation is similar to that of a ** binary search on a unique indexed field of an SQLite table with N rows. ** ** ^The estimatedRows value is an estimate of the number of rows that ** will be returned by the strategy. ** ** The xBestIndex method may optionally populate the idxFlags field with a ** mask of SQLITE_INDEX_SCAN_* flags. Currently there is only one such flag - ** SQLITE_INDEX_SCAN_UNIQUE. If the xBestIndex method sets this flag, SQLite ** assumes that the strategy may visit at most one row. ** ** Additionally, if xBestIndex sets the SQLITE_INDEX_SCAN_UNIQUE flag, then ** SQLite also assumes that if a call to the xUpdate() method is made as ** part of the same statement to delete or update a virtual table row and the ** implementation returns SQLITE_CONSTRAINT, then there is no need to rollback ** any database changes. In other words, if the xUpdate() returns ** SQLITE_CONSTRAINT, the database contents must be exactly as they were ** before xUpdate was called. By contrast, if SQLITE_INDEX_SCAN_UNIQUE is not ** set and xUpdate returns SQLITE_CONSTRAINT, any database changes made by ** the xUpdate method are automatically rolled back by SQLite. ** ** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info ** structure for SQLite [version 3.8.2] ([dateof:3.8.2]). ** If a virtual table extension is ** used with an SQLite version earlier than 3.8.2, the results of attempting ** to read or write the estimatedRows field are undefined (but are likely ** to include crashing the application). The estimatedRows field should ** therefore only be used if [sqlite3_libversion_number()] returns a ** value greater than or equal to 3008002. Similarly, the idxFlags field ** was added for [version 3.9.0] ([dateof:3.9.0]). ** It may therefore only be used if ** sqlite3_libversion_number() returns a value greater than or equal to ** 3009000. */ struct sqlite3_index_info { /* Inputs */ int nConstraint; /* Number of entries in aConstraint */ struct sqlite3_index_constraint { int iColumn; /* Column constrained. -1 for ROWID */ unsigned char op; /* Constraint operator */ unsigned char usable; /* True if this constraint is usable */ int iTermOffset; /* Used internally - xBestIndex should ignore */ } *aConstraint; /* Table of WHERE clause constraints */ int nOrderBy; /* Number of terms in the ORDER BY clause */ struct sqlite3_index_orderby { int iColumn; /* Column number */ unsigned char desc; /* True for DESC. False for ASC. */ } *aOrderBy; /* The ORDER BY clause */ /* Outputs */ struct sqlite3_index_constraint_usage { int argvIndex; /* if >0, constraint is part of argv to xFilter */ unsigned char omit; /* Do not code a test for this constraint */ } *aConstraintUsage; int idxNum; /* Number used to identify the index */ char *idxStr; /* String, possibly obtained from sqlite3_malloc */ int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */ int orderByConsumed; /* True if output is already ordered */ double estimatedCost; /* Estimated cost of using this index */ /* Fields below are only available in SQLite 3.8.2 and later */ sqlite3_int64 estimatedRows; /* Estimated number of rows returned */ /* Fields below are only available in SQLite 3.9.0 and later */ int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */ /* Fields below are only available in SQLite 3.10.0 and later */ sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */ }; /* ** CAPI3REF: Virtual Table Scan Flags ** ** Virtual table implementations are allowed to set the ** [sqlite3_index_info].idxFlags field to some combination of ** these bits. */ #define SQLITE_INDEX_SCAN_UNIQUE 1 /* Scan visits at most 1 row */ /* ** CAPI3REF: Virtual Table Constraint Operator Codes ** ** These macros define the allowed values for the ** [sqlite3_index_info].aConstraint[].op field. Each value represents ** an operator that is part of a constraint term in the WHERE clause of ** a query that uses a [virtual table]. ** ** ^The left-hand operand of the operator is given by the corresponding ** aConstraint[].iColumn field. ^An iColumn of -1 indicates the left-hand ** operand is the rowid. ** The SQLITE_INDEX_CONSTRAINT_LIMIT and SQLITE_INDEX_CONSTRAINT_OFFSET ** operators have no left-hand operand, and so for those operators the ** corresponding aConstraint[].iColumn is meaningless and should not be ** used. ** ** All operator values from SQLITE_INDEX_CONSTRAINT_FUNCTION through ** value 255 are reserved to represent functions that are overloaded ** by the [xFindFunction|xFindFunction method] of the virtual table ** implementation. ** ** The right-hand operands for each constraint might be accessible using ** the [sqlite3_vtab_rhs_value()] interface. Usually the right-hand ** operand is only available if it appears as a single constant literal ** in the input SQL. If the right-hand operand is another column or an ** expression (even a constant expression) or a parameter, then the ** sqlite3_vtab_rhs_value() probably will not be able to extract it. ** ^The SQLITE_INDEX_CONSTRAINT_ISNULL and ** SQLITE_INDEX_CONSTRAINT_ISNOTNULL operators have no right-hand operand ** and hence calls to sqlite3_vtab_rhs_value() for those operators will ** always return SQLITE_NOTFOUND. ** ** The collating sequence to be used for comparison can be found using ** the [sqlite3_vtab_collation()] interface. For most real-world virtual ** tables, the collating sequence of constraints does not matter (for example ** because the constraints are numeric) and so the sqlite3_vtab_collation() ** interface is no commonly needed. */ #define SQLITE_INDEX_CONSTRAINT_EQ 2 #define SQLITE_INDEX_CONSTRAINT_GT 4 #define SQLITE_INDEX_CONSTRAINT_LE 8 #define SQLITE_INDEX_CONSTRAINT_LT 16 #define SQLITE_INDEX_CONSTRAINT_GE 32 #define SQLITE_INDEX_CONSTRAINT_MATCH 64 #define SQLITE_INDEX_CONSTRAINT_LIKE 65 #define SQLITE_INDEX_CONSTRAINT_GLOB 66 #define SQLITE_INDEX_CONSTRAINT_REGEXP 67 #define SQLITE_INDEX_CONSTRAINT_NE 68 #define SQLITE_INDEX_CONSTRAINT_ISNOT 69 #define SQLITE_INDEX_CONSTRAINT_ISNOTNULL 70 #define SQLITE_INDEX_CONSTRAINT_ISNULL 71 #define SQLITE_INDEX_CONSTRAINT_IS 72 #define SQLITE_INDEX_CONSTRAINT_LIMIT 73 #define SQLITE_INDEX_CONSTRAINT_OFFSET 74 #define SQLITE_INDEX_CONSTRAINT_FUNCTION 150 /* ** CAPI3REF: Register A Virtual Table Implementation ** METHOD: sqlite3 ** ** ^These routines are used to register a new [virtual table module] name. ** ^Module names must be registered before ** creating a new [virtual table] using the module and before using a ** preexisting [virtual table] for the module. ** ** ^The module name is registered on the [database connection] specified ** by the first parameter. ^The name of the module is given by the ** second parameter. ^The third parameter is a pointer to ** the implementation of the [virtual table module]. ^The fourth ** parameter is an arbitrary client data pointer that is passed through ** into the [xCreate] and [xConnect] methods of the virtual table module ** when a new virtual table is be being created or reinitialized. ** ** ^The sqlite3_create_module_v2() interface has a fifth parameter which ** is a pointer to a destructor for the pClientData. ^SQLite will ** invoke the destructor function (if it is not NULL) when SQLite ** no longer needs the pClientData pointer. ^The destructor will also ** be invoked if the call to sqlite3_create_module_v2() fails. ** ^The sqlite3_create_module() ** interface is equivalent to sqlite3_create_module_v2() with a NULL ** destructor. ** ** ^If the third parameter (the pointer to the sqlite3_module object) is ** NULL then no new module is created and any existing modules with the ** same name are dropped. ** ** See also: [sqlite3_drop_modules()] */ SQLITE_API int sqlite3_create_module( sqlite3 *db, /* SQLite connection to register module with */ const char *zName, /* Name of the module */ const sqlite3_module *p, /* Methods for the module */ void *pClientData /* Client data for xCreate/xConnect */ ); SQLITE_API int sqlite3_create_module_v2( sqlite3 *db, /* SQLite connection to register module with */ const char *zName, /* Name of the module */ const sqlite3_module *p, /* Methods for the module */ void *pClientData, /* Client data for xCreate/xConnect */ void(*xDestroy)(void*) /* Module destructor function */ ); /* ** CAPI3REF: Remove Unnecessary Virtual Table Implementations ** METHOD: sqlite3 ** ** ^The sqlite3_drop_modules(D,L) interface removes all virtual ** table modules from database connection D except those named on list L. ** The L parameter must be either NULL or a pointer to an array of pointers ** to strings where the array is terminated by a single NULL pointer. ** ^If the L parameter is NULL, then all virtual table modules are removed. ** ** See also: [sqlite3_create_module()] */ SQLITE_API int sqlite3_drop_modules( sqlite3 *db, /* Remove modules from this connection */ const char **azKeep /* Except, do not remove the ones named here */ ); /* ** CAPI3REF: Virtual Table Instance Object ** KEYWORDS: sqlite3_vtab ** ** Every [virtual table module] implementation uses a subclass ** of this object to describe a particular instance ** of the [virtual table]. Each subclass will ** be tailored to the specific needs of the module implementation. ** The purpose of this superclass is to define certain fields that are ** common to all module implementations. ** ** ^Virtual tables methods can set an error message by assigning a ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should ** take care that any prior string is freed by a call to [sqlite3_free()] ** prior to assigning a new string to zErrMsg. ^After the error message ** is delivered up to the client application, the string will be automatically ** freed by sqlite3_free() and the zErrMsg field will be zeroed. */ struct sqlite3_vtab { const sqlite3_module *pModule; /* The module for this virtual table */ int nRef; /* Number of open cursors */ char *zErrMsg; /* Error message from sqlite3_mprintf() */ /* Virtual table implementations will typically add additional fields */ }; /* ** CAPI3REF: Virtual Table Cursor Object ** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor} ** ** Every [virtual table module] implementation uses a subclass of the ** following structure to describe cursors that point into the ** [virtual table] and are used ** to loop through the virtual table. Cursors are created using the ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed ** by the [sqlite3_module.xClose | xClose] method. Cursors are used ** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods ** of the module. Each module implementation will define ** the content of a cursor structure to suit its own needs. ** ** This superclass exists in order to define fields of the cursor that ** are common to all implementations. */ struct sqlite3_vtab_cursor { sqlite3_vtab *pVtab; /* Virtual table of this cursor */ /* Virtual table implementations will typically add additional fields */ }; /* ** CAPI3REF: Declare The Schema Of A Virtual Table ** ** ^The [xCreate] and [xConnect] methods of a ** [virtual table module] call this interface ** to declare the format (the names and datatypes of the columns) of ** the virtual tables they implement. */ SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL); /* ** CAPI3REF: Overload A Function For A Virtual Table ** METHOD: sqlite3 ** ** ^(Virtual tables can provide alternative implementations of functions ** using the [xFindFunction] method of the [virtual table module]. ** But global versions of those functions ** must exist in order to be overloaded.)^ ** ** ^(This API makes sure a global version of a function with a particular ** name and number of parameters exists. If no such function exists ** before this API is called, a new function is created.)^ ^The implementation ** of the new function always causes an exception to be thrown. So ** the new function is not good for anything by itself. Its only ** purpose is to be a placeholder function that can be overloaded ** by a [virtual table]. */ SQLITE_API int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg); /* ** The interface to the virtual-table mechanism defined above (back up ** to a comment remarkably similar to this one) is currently considered ** to be experimental. The interface might change in incompatible ways. ** If this is a problem for you, do not use the interface at this time. ** ** When the virtual-table mechanism stabilizes, we will declare the ** interface fixed, support it indefinitely, and remove this comment. */ /* ** CAPI3REF: A Handle To An Open BLOB ** KEYWORDS: {BLOB handle} {BLOB handles} ** ** An instance of this object represents an open BLOB on which ** [sqlite3_blob_open | incremental BLOB I/O] can be performed. ** ^Objects of this type are created by [sqlite3_blob_open()] ** and destroyed by [sqlite3_blob_close()]. ** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces ** can be used to read or write small subsections of the BLOB. ** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes. */ typedef struct sqlite3_blob sqlite3_blob; /* ** CAPI3REF: Open A BLOB For Incremental I/O ** METHOD: sqlite3 ** CONSTRUCTOR: sqlite3_blob ** ** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located ** in row iRow, column zColumn, table zTable in database zDb; ** in other words, the same BLOB that would be selected by: ** **
    **     SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
    ** 
    )^ ** ** ^(Parameter zDb is not the filename that contains the database, but ** rather the symbolic name of the database. For attached databases, this is ** the name that appears after the AS keyword in the [ATTACH] statement. ** For the main database file, the database name is "main". For TEMP ** tables, the database name is "temp".)^ ** ** ^If the flags parameter is non-zero, then the BLOB is opened for read ** and write access. ^If the flags parameter is zero, the BLOB is opened for ** read-only access. ** ** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is stored ** in *ppBlob. Otherwise an [error code] is returned and, unless the error ** code is SQLITE_MISUSE, *ppBlob is set to NULL.)^ ^This means that, provided ** the API is not misused, it is always safe to call [sqlite3_blob_close()] ** on *ppBlob after this function it returns. ** ** This function fails with SQLITE_ERROR if any of the following are true: **
      **
    • ^(Database zDb does not exist)^, **
    • ^(Table zTable does not exist within database zDb)^, **
    • ^(Table zTable is a WITHOUT ROWID table)^, **
    • ^(Column zColumn does not exist)^, **
    • ^(Row iRow is not present in the table)^, **
    • ^(The specified column of row iRow contains a value that is not ** a TEXT or BLOB value)^, **
    • ^(Column zColumn is part of an index, PRIMARY KEY or UNIQUE ** constraint and the blob is being opened for read/write access)^, **
    • ^([foreign key constraints | Foreign key constraints] are enabled, ** column zColumn is part of a [child key] definition and the blob is ** being opened for read/write access)^. **
    ** ** ^Unless it returns SQLITE_MISUSE, this function sets the ** [database connection] error code and message accessible via ** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. ** ** A BLOB referenced by sqlite3_blob_open() may be read using the ** [sqlite3_blob_read()] interface and modified by using ** [sqlite3_blob_write()]. The [BLOB handle] can be moved to a ** different row of the same table using the [sqlite3_blob_reopen()] ** interface. However, the column, table, or database of a [BLOB handle] ** cannot be changed after the [BLOB handle] is opened. ** ** ^(If the row that a BLOB handle points to is modified by an ** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects ** then the BLOB handle is marked as "expired". ** This is true if any column of the row is changed, even a column ** other than the one the BLOB handle is open on.)^ ** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for ** an expired BLOB handle fail with a return code of [SQLITE_ABORT]. ** ^(Changes written into a BLOB prior to the BLOB expiring are not ** rolled back by the expiration of the BLOB. Such changes will eventually ** commit if the transaction continues to completion.)^ ** ** ^Use the [sqlite3_blob_bytes()] interface to determine the size of ** the opened blob. ^The size of a blob may not be changed by this ** interface. Use the [UPDATE] SQL command to change the size of a ** blob. ** ** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces ** and the built-in [zeroblob] SQL function may be used to create a ** zero-filled blob to read or write using the incremental-blob interface. ** ** To avoid a resource leak, every open [BLOB handle] should eventually ** be released by a call to [sqlite3_blob_close()]. ** ** See also: [sqlite3_blob_close()], ** [sqlite3_blob_reopen()], [sqlite3_blob_read()], ** [sqlite3_blob_bytes()], [sqlite3_blob_write()]. */ SQLITE_API int sqlite3_blob_open( sqlite3*, const char *zDb, const char *zTable, const char *zColumn, sqlite3_int64 iRow, int flags, sqlite3_blob **ppBlob ); /* ** CAPI3REF: Move a BLOB Handle to a New Row ** METHOD: sqlite3_blob ** ** ^This function is used to move an existing [BLOB handle] so that it points ** to a different row of the same database table. ^The new row is identified ** by the rowid value passed as the second argument. Only the row can be ** changed. ^The database, table and column on which the blob handle is open ** remain the same. Moving an existing [BLOB handle] to a new row is ** faster than closing the existing handle and opening a new one. ** ** ^(The new row must meet the same criteria as for [sqlite3_blob_open()] - ** it must exist and there must be either a blob or text value stored in ** the nominated column.)^ ^If the new row is not present in the table, or if ** it does not contain a blob or text value, or if another error occurs, an ** SQLite error code is returned and the blob handle is considered aborted. ** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or ** [sqlite3_blob_reopen()] on an aborted blob handle immediately return ** SQLITE_ABORT. ^Calling [sqlite3_blob_bytes()] on an aborted blob handle ** always returns zero. ** ** ^This function sets the database handle error code and message. */ SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64); /* ** CAPI3REF: Close A BLOB Handle ** DESTRUCTOR: sqlite3_blob ** ** ^This function closes an open [BLOB handle]. ^(The BLOB handle is closed ** unconditionally. Even if this routine returns an error code, the ** handle is still closed.)^ ** ** ^If the blob handle being closed was opened for read-write access, and if ** the database is in auto-commit mode and there are no other open read-write ** blob handles or active write statements, the current transaction is ** committed. ^If an error occurs while committing the transaction, an error ** code is returned and the transaction rolled back. ** ** Calling this function with an argument that is not a NULL pointer or an ** open blob handle results in undefined behaviour. ^Calling this routine ** with a null pointer (such as would be returned by a failed call to ** [sqlite3_blob_open()]) is a harmless no-op. ^Otherwise, if this function ** is passed a valid open blob handle, the values returned by the ** sqlite3_errcode() and sqlite3_errmsg() functions are set before returning. */ SQLITE_API int sqlite3_blob_close(sqlite3_blob *); /* ** CAPI3REF: Return The Size Of An Open BLOB ** METHOD: sqlite3_blob ** ** ^Returns the size in bytes of the BLOB accessible via the ** successfully opened [BLOB handle] in its only argument. ^The ** incremental blob I/O routines can only read or overwriting existing ** blob content; they cannot change the size of a blob. ** ** This routine only works on a [BLOB handle] which has been created ** by a prior successful call to [sqlite3_blob_open()] and which has not ** been closed by [sqlite3_blob_close()]. Passing any other pointer in ** to this routine results in undefined and probably undesirable behavior. */ SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *); /* ** CAPI3REF: Read Data From A BLOB Incrementally ** METHOD: sqlite3_blob ** ** ^(This function is used to read data from an open [BLOB handle] into a ** caller-supplied buffer. N bytes of data are copied into buffer Z ** from the open BLOB, starting at offset iOffset.)^ ** ** ^If offset iOffset is less than N bytes from the end of the BLOB, ** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is ** less than zero, [SQLITE_ERROR] is returned and no data is read. ** ^The size of the blob (and hence the maximum value of N+iOffset) ** can be determined using the [sqlite3_blob_bytes()] interface. ** ** ^An attempt to read from an expired [BLOB handle] fails with an ** error code of [SQLITE_ABORT]. ** ** ^(On success, sqlite3_blob_read() returns SQLITE_OK. ** Otherwise, an [error code] or an [extended error code] is returned.)^ ** ** This routine only works on a [BLOB handle] which has been created ** by a prior successful call to [sqlite3_blob_open()] and which has not ** been closed by [sqlite3_blob_close()]. Passing any other pointer in ** to this routine results in undefined and probably undesirable behavior. ** ** See also: [sqlite3_blob_write()]. */ SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); /* ** CAPI3REF: Write Data Into A BLOB Incrementally ** METHOD: sqlite3_blob ** ** ^(This function is used to write data into an open [BLOB handle] from a ** caller-supplied buffer. N bytes of data are copied from the buffer Z ** into the open BLOB, starting at offset iOffset.)^ ** ** ^(On success, sqlite3_blob_write() returns SQLITE_OK. ** Otherwise, an [error code] or an [extended error code] is returned.)^ ** ^Unless SQLITE_MISUSE is returned, this function sets the ** [database connection] error code and message accessible via ** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. ** ** ^If the [BLOB handle] passed as the first argument was not opened for ** writing (the flags parameter to [sqlite3_blob_open()] was zero), ** this function returns [SQLITE_READONLY]. ** ** This function may only modify the contents of the BLOB; it is ** not possible to increase the size of a BLOB using this API. ** ^If offset iOffset is less than N bytes from the end of the BLOB, ** [SQLITE_ERROR] is returned and no data is written. The size of the ** BLOB (and hence the maximum value of N+iOffset) can be determined ** using the [sqlite3_blob_bytes()] interface. ^If N or iOffset are less ** than zero [SQLITE_ERROR] is returned and no data is written. ** ** ^An attempt to write to an expired [BLOB handle] fails with an ** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred ** before the [BLOB handle] expired are not rolled back by the ** expiration of the handle, though of course those changes might ** have been overwritten by the statement that expired the BLOB handle ** or by other independent statements. ** ** This routine only works on a [BLOB handle] which has been created ** by a prior successful call to [sqlite3_blob_open()] and which has not ** been closed by [sqlite3_blob_close()]. Passing any other pointer in ** to this routine results in undefined and probably undesirable behavior. ** ** See also: [sqlite3_blob_read()]. */ SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset); /* ** CAPI3REF: Virtual File System Objects ** ** A virtual filesystem (VFS) is an [sqlite3_vfs] object ** that SQLite uses to interact ** with the underlying operating system. Most SQLite builds come with a ** single default VFS that is appropriate for the host computer. ** New VFSes can be registered and existing VFSes can be unregistered. ** The following interfaces are provided. ** ** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name. ** ^Names are case sensitive. ** ^Names are zero-terminated UTF-8 strings. ** ^If there is no match, a NULL pointer is returned. ** ^If zVfsName is NULL then the default VFS is returned. ** ** ^New VFSes are registered with sqlite3_vfs_register(). ** ^Each new VFS becomes the default VFS if the makeDflt flag is set. ** ^The same VFS can be registered multiple times without injury. ** ^To make an existing VFS into the default VFS, register it again ** with the makeDflt flag set. If two different VFSes with the ** same name are registered, the behavior is undefined. If a ** VFS is registered with a name that is NULL or an empty string, ** then the behavior is undefined. ** ** ^Unregister a VFS with the sqlite3_vfs_unregister() interface. ** ^(If the default VFS is unregistered, another VFS is chosen as ** the default. The choice for the new VFS is arbitrary.)^ */ SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName); SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*); /* ** CAPI3REF: Mutexes ** ** The SQLite core uses these routines for thread ** synchronization. Though they are intended for internal ** use by SQLite, code that links against SQLite is ** permitted to use any of these routines. ** ** The SQLite source code contains multiple implementations ** of these mutex routines. An appropriate implementation ** is selected automatically at compile-time. The following ** implementations are available in the SQLite core: ** **
      **
    • SQLITE_MUTEX_PTHREADS **
    • SQLITE_MUTEX_W32 **
    • SQLITE_MUTEX_NOOP **
    ** ** The SQLITE_MUTEX_NOOP implementation is a set of routines ** that does no real locking and is appropriate for use in ** a single-threaded application. The SQLITE_MUTEX_PTHREADS and ** SQLITE_MUTEX_W32 implementations are appropriate for use on Unix ** and Windows. ** ** If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor ** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex ** implementation is included with the library. In this case the ** application must supply a custom mutex implementation using the ** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function ** before calling sqlite3_initialize() or any other public sqlite3_ ** function that calls sqlite3_initialize(). ** ** ^The sqlite3_mutex_alloc() routine allocates a new ** mutex and returns a pointer to it. ^The sqlite3_mutex_alloc() ** routine returns NULL if it is unable to allocate the requested ** mutex. The argument to sqlite3_mutex_alloc() must one of these ** integer constants: ** **
      **
    • SQLITE_MUTEX_FAST **
    • SQLITE_MUTEX_RECURSIVE **
    • SQLITE_MUTEX_STATIC_MAIN **
    • SQLITE_MUTEX_STATIC_MEM **
    • SQLITE_MUTEX_STATIC_OPEN **
    • SQLITE_MUTEX_STATIC_PRNG **
    • SQLITE_MUTEX_STATIC_LRU **
    • SQLITE_MUTEX_STATIC_PMEM **
    • SQLITE_MUTEX_STATIC_APP1 **
    • SQLITE_MUTEX_STATIC_APP2 **
    • SQLITE_MUTEX_STATIC_APP3 **
    • SQLITE_MUTEX_STATIC_VFS1 **
    • SQLITE_MUTEX_STATIC_VFS2 **
    • SQLITE_MUTEX_STATIC_VFS3 **
    ** ** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) ** cause sqlite3_mutex_alloc() to create ** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE ** is used but not necessarily so when SQLITE_MUTEX_FAST is used. ** The mutex implementation does not need to make a distinction ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does ** not want to. SQLite will only request a recursive mutex in ** cases where it really needs one. If a faster non-recursive mutex ** implementation is available on the host platform, the mutex subsystem ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other ** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return ** a pointer to a static preexisting mutex. ^Nine static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or ** SQLITE_MUTEX_RECURSIVE. ** ** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() ** returns a different mutex on every call. ^For the static ** mutex types, the same mutex is returned on every call that has ** the same type number. ** ** ^The sqlite3_mutex_free() routine deallocates a previously ** allocated dynamic mutex. Attempting to deallocate a static ** mutex results in undefined behavior. ** ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. ^If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK] ** upon successful entry. ^(Mutexes created using ** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread. ** In such cases, the ** mutex must be exited an equal number of times before another thread ** can enter.)^ If the same thread tries to enter any mutex other ** than an SQLITE_MUTEX_RECURSIVE more than once, the behavior is undefined. ** ** ^(Some systems (for example, Windows 95) do not support the operation ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try() ** will always return SQLITE_BUSY. The SQLite core only ever uses ** sqlite3_mutex_try() as an optimization so this is acceptable ** behavior.)^ ** ** ^The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered by the ** calling thread or is not currently allocated. ** ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or ** sqlite3_mutex_leave() is a NULL pointer, then all three routines ** behave as no-ops. ** ** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()]. */ SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int); SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*); SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*); SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*); SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*); /* ** CAPI3REF: Mutex Methods Object ** ** An instance of this structure defines the low-level routines ** used to allocate and use mutexes. ** ** Usually, the default mutex implementations provided by SQLite are ** sufficient, however the application has the option of substituting a custom ** implementation for specialized deployments or systems for which SQLite ** does not provide a suitable implementation. In this case, the application ** creates and populates an instance of this structure to pass ** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option. ** Additionally, an instance of this structure can be used as an ** output variable when querying the system for the current mutex ** implementation, using the [SQLITE_CONFIG_GETMUTEX] option. ** ** ^The xMutexInit method defined by this structure is invoked as ** part of system initialization by the sqlite3_initialize() function. ** ^The xMutexInit routine is called by SQLite exactly once for each ** effective call to [sqlite3_initialize()]. ** ** ^The xMutexEnd method defined by this structure is invoked as ** part of system shutdown by the sqlite3_shutdown() function. The ** implementation of this method is expected to release all outstanding ** resources obtained by the mutex methods implementation, especially ** those obtained by the xMutexInit method. ^The xMutexEnd() ** interface is invoked exactly once for each call to [sqlite3_shutdown()]. ** ** ^(The remaining seven methods defined by this structure (xMutexAlloc, ** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and ** xMutexNotheld) implement the following interfaces (respectively): ** **
      **
    • [sqlite3_mutex_alloc()]
    • **
    • [sqlite3_mutex_free()]
    • **
    • [sqlite3_mutex_enter()]
    • **
    • [sqlite3_mutex_try()]
    • **
    • [sqlite3_mutex_leave()]
    • **
    • [sqlite3_mutex_held()]
    • **
    • [sqlite3_mutex_notheld()]
    • **
    )^ ** ** The only difference is that the public sqlite3_XXX functions enumerated ** above silently ignore any invocations that pass a NULL pointer instead ** of a valid mutex handle. The implementations of the methods defined ** by this structure are not required to handle this case. The results ** of passing a NULL pointer instead of a valid mutex handle are undefined ** (i.e. it is acceptable to provide an implementation that segfaults if ** it is passed a NULL pointer). ** ** The xMutexInit() method must be threadsafe. It must be harmless to ** invoke xMutexInit() multiple times within the same process and without ** intervening calls to xMutexEnd(). Second and subsequent calls to ** xMutexInit() must be no-ops. ** ** xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()] ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite ** memory allocation for a fast or recursive mutex. ** ** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is ** called, but only if the prior call to xMutexInit returned SQLITE_OK. ** If xMutexInit fails in any way, it is expected to clean up after itself ** prior to returning. */ typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; struct sqlite3_mutex_methods { int (*xMutexInit)(void); int (*xMutexEnd)(void); sqlite3_mutex *(*xMutexAlloc)(int); void (*xMutexFree)(sqlite3_mutex *); void (*xMutexEnter)(sqlite3_mutex *); int (*xMutexTry)(sqlite3_mutex *); void (*xMutexLeave)(sqlite3_mutex *); int (*xMutexHeld)(sqlite3_mutex *); int (*xMutexNotheld)(sqlite3_mutex *); }; /* ** CAPI3REF: Mutex Verification Routines ** ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines ** are intended for use inside assert() statements. The SQLite core ** never uses these routines except inside an assert() and applications ** are advised to follow the lead of the core. The SQLite core only ** provides implementations for these routines when it is compiled ** with the SQLITE_DEBUG flag. External mutex implementations ** are only required to provide these routines if SQLITE_DEBUG is ** defined and if NDEBUG is not defined. ** ** These routines should return true if the mutex in their argument ** is held or not held, respectively, by the calling thread. ** ** The implementation is not required to provide versions of these ** routines that actually work. If the implementation does not provide working ** versions of these routines, it should at least provide stubs that always ** return true so that one does not get spurious assertion failures. ** ** If the argument to sqlite3_mutex_held() is a NULL pointer then ** the routine should return 1. This seems counter-intuitive since ** clearly the mutex cannot be held if it does not exist. But ** the reason the mutex does not exist is because the build is not ** using mutexes. And we do not want the assert() containing the ** call to sqlite3_mutex_held() to fail, so a non-zero return is ** the appropriate thing to do. The sqlite3_mutex_notheld() ** interface should also return 1 when given a NULL pointer. */ #ifndef NDEBUG SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*); SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex*); #endif /* ** CAPI3REF: Mutex Types ** ** The [sqlite3_mutex_alloc()] interface takes a single argument ** which is one of these integer constants. ** ** The set of static mutexes may change from one SQLite release to the ** next. Applications that override the built-in mutex logic must be ** prepared to accommodate additional static mutexes. */ #define SQLITE_MUTEX_FAST 0 #define SQLITE_MUTEX_RECURSIVE 1 #define SQLITE_MUTEX_STATIC_MAIN 2 #define SQLITE_MUTEX_STATIC_MEM 3 /* sqlite3_malloc() */ #define SQLITE_MUTEX_STATIC_MEM2 4 /* NOT USED */ #define SQLITE_MUTEX_STATIC_OPEN 4 /* sqlite3BtreeOpen() */ #define SQLITE_MUTEX_STATIC_PRNG 5 /* sqlite3_randomness() */ #define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */ #define SQLITE_MUTEX_STATIC_LRU2 7 /* NOT USED */ #define SQLITE_MUTEX_STATIC_PMEM 7 /* sqlite3PageMalloc() */ #define SQLITE_MUTEX_STATIC_APP1 8 /* For use by application */ #define SQLITE_MUTEX_STATIC_APP2 9 /* For use by application */ #define SQLITE_MUTEX_STATIC_APP3 10 /* For use by application */ #define SQLITE_MUTEX_STATIC_VFS1 11 /* For use by built-in VFS */ #define SQLITE_MUTEX_STATIC_VFS2 12 /* For use by extension VFS */ #define SQLITE_MUTEX_STATIC_VFS3 13 /* For use by application VFS */ /* Legacy compatibility: */ #define SQLITE_MUTEX_STATIC_MASTER 2 /* ** CAPI3REF: Retrieve the mutex for a database connection ** METHOD: sqlite3 ** ** ^This interface returns a pointer the [sqlite3_mutex] object that ** serializes access to the [database connection] given in the argument ** when the [threading mode] is Serialized. ** ^If the [threading mode] is Single-thread or Multi-thread then this ** routine returns a NULL pointer. */ SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3*); /* ** CAPI3REF: Low-Level Control Of Database Files ** METHOD: sqlite3 ** KEYWORDS: {file control} ** ** ^The [sqlite3_file_control()] interface makes a direct call to the ** xFileControl method for the [sqlite3_io_methods] object associated ** with a particular database identified by the second argument. ^The ** name of the database is "main" for the main database or "temp" for the ** TEMP database, or the name that appears after the AS keyword for ** databases that are added using the [ATTACH] SQL command. ** ^A NULL pointer can be used in place of "main" to refer to the ** main database file. ** ^The third and fourth parameters to this routine ** are passed directly through to the second and third parameters of ** the xFileControl method. ^The return value of the xFileControl ** method becomes the return value of this routine. ** ** A few opcodes for [sqlite3_file_control()] are handled directly ** by the SQLite core and never invoke the ** sqlite3_io_methods.xFileControl method. ** ^The [SQLITE_FCNTL_FILE_POINTER] value for the op parameter causes ** a pointer to the underlying [sqlite3_file] object to be written into ** the space pointed to by the 4th parameter. The ** [SQLITE_FCNTL_JOURNAL_POINTER] works similarly except that it returns ** the [sqlite3_file] object associated with the journal file instead of ** the main database. The [SQLITE_FCNTL_VFS_POINTER] opcode returns ** a pointer to the underlying [sqlite3_vfs] object for the file. ** The [SQLITE_FCNTL_DATA_VERSION] returns the data version counter ** from the pager. ** ** ^If the second parameter (zDbName) does not match the name of any ** open database file, then SQLITE_ERROR is returned. ^This error ** code is not remembered and will not be recalled by [sqlite3_errcode()] ** or [sqlite3_errmsg()]. The underlying xFileControl method might ** also return SQLITE_ERROR. There is no way to distinguish between ** an incorrect zDbName and an SQLITE_ERROR return from the underlying ** xFileControl method. ** ** See also: [file control opcodes] */ SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*); /* ** CAPI3REF: Testing Interface ** ** ^The sqlite3_test_control() interface is used to read out internal ** state of SQLite and to inject faults into SQLite for testing ** purposes. ^The first parameter is an operation code that determines ** the number, meaning, and operation of all subsequent parameters. ** ** This interface is not for use by applications. It exists solely ** for verifying the correct operation of the SQLite library. Depending ** on how the SQLite library is compiled, this interface might not exist. ** ** The details of the operation codes, their meanings, the parameters ** they take, and what they do are all subject to change without notice. ** Unlike most of the SQLite API, this function is not guaranteed to ** operate consistently from one release to the next. */ SQLITE_API int sqlite3_test_control(int op, ...); /* ** CAPI3REF: Testing Interface Operation Codes ** ** These constants are the valid operation code parameters used ** as the first argument to [sqlite3_test_control()]. ** ** These parameters and their meanings are subject to change ** without notice. These values are for testing purposes only. ** Applications should not use any of these parameters or the ** [sqlite3_test_control()] interface. */ #define SQLITE_TESTCTRL_FIRST 5 #define SQLITE_TESTCTRL_PRNG_SAVE 5 #define SQLITE_TESTCTRL_PRNG_RESTORE 6 #define SQLITE_TESTCTRL_PRNG_RESET 7 /* NOT USED */ #define SQLITE_TESTCTRL_BITVEC_TEST 8 #define SQLITE_TESTCTRL_FAULT_INSTALL 9 #define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS 10 #define SQLITE_TESTCTRL_PENDING_BYTE 11 #define SQLITE_TESTCTRL_ASSERT 12 #define SQLITE_TESTCTRL_ALWAYS 13 #define SQLITE_TESTCTRL_RESERVE 14 /* NOT USED */ #define SQLITE_TESTCTRL_OPTIMIZATIONS 15 #define SQLITE_TESTCTRL_ISKEYWORD 16 /* NOT USED */ #define SQLITE_TESTCTRL_SCRATCHMALLOC 17 /* NOT USED */ #define SQLITE_TESTCTRL_INTERNAL_FUNCTIONS 17 #define SQLITE_TESTCTRL_LOCALTIME_FAULT 18 #define SQLITE_TESTCTRL_EXPLAIN_STMT 19 /* NOT USED */ #define SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD 19 #define SQLITE_TESTCTRL_NEVER_CORRUPT 20 #define SQLITE_TESTCTRL_VDBE_COVERAGE 21 #define SQLITE_TESTCTRL_BYTEORDER 22 #define SQLITE_TESTCTRL_ISINIT 23 #define SQLITE_TESTCTRL_SORTER_MMAP 24 #define SQLITE_TESTCTRL_IMPOSTER 25 #define SQLITE_TESTCTRL_PARSER_COVERAGE 26 #define SQLITE_TESTCTRL_RESULT_INTREAL 27 #define SQLITE_TESTCTRL_PRNG_SEED 28 #define SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS 29 #define SQLITE_TESTCTRL_SEEK_COUNT 30 #define SQLITE_TESTCTRL_TRACEFLAGS 31 #define SQLITE_TESTCTRL_TUNE 32 #define SQLITE_TESTCTRL_LOGEST 33 #define SQLITE_TESTCTRL_LAST 33 /* Largest TESTCTRL */ /* ** CAPI3REF: SQL Keyword Checking ** ** These routines provide access to the set of SQL language keywords ** recognized by SQLite. Applications can uses these routines to determine ** whether or not a specific identifier needs to be escaped (for example, ** by enclosing in double-quotes) so as not to confuse the parser. ** ** The sqlite3_keyword_count() interface returns the number of distinct ** keywords understood by SQLite. ** ** The sqlite3_keyword_name(N,Z,L) interface finds the N-th keyword and ** makes *Z point to that keyword expressed as UTF8 and writes the number ** of bytes in the keyword into *L. The string that *Z points to is not ** zero-terminated. The sqlite3_keyword_name(N,Z,L) routine returns ** SQLITE_OK if N is within bounds and SQLITE_ERROR if not. If either Z ** or L are NULL or invalid pointers then calls to ** sqlite3_keyword_name(N,Z,L) result in undefined behavior. ** ** The sqlite3_keyword_check(Z,L) interface checks to see whether or not ** the L-byte UTF8 identifier that Z points to is a keyword, returning non-zero ** if it is and zero if not. ** ** The parser used by SQLite is forgiving. It is often possible to use ** a keyword as an identifier as long as such use does not result in a ** parsing ambiguity. For example, the statement ** "CREATE TABLE BEGIN(REPLACE,PRAGMA,END);" is accepted by SQLite, and ** creates a new table named "BEGIN" with three columns named ** "REPLACE", "PRAGMA", and "END". Nevertheless, best practice is to avoid ** using keywords as identifiers. Common techniques used to avoid keyword ** name collisions include: **
      **
    • Put all identifier names inside double-quotes. This is the official ** SQL way to escape identifier names. **
    • Put identifier names inside [...]. This is not standard SQL, ** but it is what SQL Server does and so lots of programmers use this ** technique. **
    • Begin every identifier with the letter "Z" as no SQL keywords start ** with "Z". **
    • Include a digit somewhere in every identifier name. **
    ** ** Note that the number of keywords understood by SQLite can depend on ** compile-time options. For example, "VACUUM" is not a keyword if ** SQLite is compiled with the [-DSQLITE_OMIT_VACUUM] option. Also, ** new keywords may be added to future releases of SQLite. */ SQLITE_API int sqlite3_keyword_count(void); SQLITE_API int sqlite3_keyword_name(int,const char**,int*); SQLITE_API int sqlite3_keyword_check(const char*,int); /* ** CAPI3REF: Dynamic String Object ** KEYWORDS: {dynamic string} ** ** An instance of the sqlite3_str object contains a dynamically-sized ** string under construction. ** ** The lifecycle of an sqlite3_str object is as follows: **
      **
    1. ^The sqlite3_str object is created using [sqlite3_str_new()]. **
    2. ^Text is appended to the sqlite3_str object using various ** methods, such as [sqlite3_str_appendf()]. **
    3. ^The sqlite3_str object is destroyed and the string it created ** is returned using the [sqlite3_str_finish()] interface. **
    */ typedef struct sqlite3_str sqlite3_str; /* ** CAPI3REF: Create A New Dynamic String Object ** CONSTRUCTOR: sqlite3_str ** ** ^The [sqlite3_str_new(D)] interface allocates and initializes ** a new [sqlite3_str] object. To avoid memory leaks, the object returned by ** [sqlite3_str_new()] must be freed by a subsequent call to ** [sqlite3_str_finish(X)]. ** ** ^The [sqlite3_str_new(D)] interface always returns a pointer to a ** valid [sqlite3_str] object, though in the event of an out-of-memory ** error the returned object might be a special singleton that will ** silently reject new text, always return SQLITE_NOMEM from ** [sqlite3_str_errcode()], always return 0 for ** [sqlite3_str_length()], and always return NULL from ** [sqlite3_str_finish(X)]. It is always safe to use the value ** returned by [sqlite3_str_new(D)] as the sqlite3_str parameter ** to any of the other [sqlite3_str] methods. ** ** The D parameter to [sqlite3_str_new(D)] may be NULL. If the ** D parameter in [sqlite3_str_new(D)] is not NULL, then the maximum ** length of the string contained in the [sqlite3_str] object will be ** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead ** of [SQLITE_MAX_LENGTH]. */ SQLITE_API sqlite3_str *sqlite3_str_new(sqlite3*); /* ** CAPI3REF: Finalize A Dynamic String ** DESTRUCTOR: sqlite3_str ** ** ^The [sqlite3_str_finish(X)] interface destroys the sqlite3_str object X ** and returns a pointer to a memory buffer obtained from [sqlite3_malloc64()] ** that contains the constructed string. The calling application should ** pass the returned value to [sqlite3_free()] to avoid a memory leak. ** ^The [sqlite3_str_finish(X)] interface may return a NULL pointer if any ** errors were encountered during construction of the string. ^The ** [sqlite3_str_finish(X)] interface will also return a NULL pointer if the ** string in [sqlite3_str] object X is zero bytes long. */ SQLITE_API char *sqlite3_str_finish(sqlite3_str*); /* ** CAPI3REF: Add Content To A Dynamic String ** METHOD: sqlite3_str ** ** These interfaces add content to an sqlite3_str object previously obtained ** from [sqlite3_str_new()]. ** ** ^The [sqlite3_str_appendf(X,F,...)] and ** [sqlite3_str_vappendf(X,F,V)] interfaces uses the [built-in printf] ** functionality of SQLite to append formatted text onto the end of ** [sqlite3_str] object X. ** ** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S ** onto the end of the [sqlite3_str] object X. N must be non-negative. ** S must contain at least N non-zero bytes of content. To append a ** zero-terminated string in its entirety, use the [sqlite3_str_appendall()] ** method instead. ** ** ^The [sqlite3_str_appendall(X,S)] method appends the complete content of ** zero-terminated string S onto the end of [sqlite3_str] object X. ** ** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the ** single-byte character C onto the end of [sqlite3_str] object X. ** ^This method can be used, for example, to add whitespace indentation. ** ** ^The [sqlite3_str_reset(X)] method resets the string under construction ** inside [sqlite3_str] object X back to zero bytes in length. ** ** These methods do not return a result code. ^If an error occurs, that fact ** is recorded in the [sqlite3_str] object and can be recovered by a ** subsequent call to [sqlite3_str_errcode(X)]. */ SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...); SQLITE_API void sqlite3_str_vappendf(sqlite3_str*, const char *zFormat, va_list); SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn); SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C); SQLITE_API void sqlite3_str_reset(sqlite3_str*); /* ** CAPI3REF: Status Of A Dynamic String ** METHOD: sqlite3_str ** ** These interfaces return the current status of an [sqlite3_str] object. ** ** ^If any prior errors have occurred while constructing the dynamic string ** in sqlite3_str X, then the [sqlite3_str_errcode(X)] method will return ** an appropriate error code. ^The [sqlite3_str_errcode(X)] method returns ** [SQLITE_NOMEM] following any out-of-memory error, or ** [SQLITE_TOOBIG] if the size of the dynamic string exceeds ** [SQLITE_MAX_LENGTH], or [SQLITE_OK] if there have been no errors. ** ** ^The [sqlite3_str_length(X)] method returns the current length, in bytes, ** of the dynamic string under construction in [sqlite3_str] object X. ** ^The length returned by [sqlite3_str_length(X)] does not include the ** zero-termination byte. ** ** ^The [sqlite3_str_value(X)] method returns a pointer to the current ** content of the dynamic string under construction in X. The value ** returned by [sqlite3_str_value(X)] is managed by the sqlite3_str object X ** and might be freed or altered by any subsequent method on the same ** [sqlite3_str] object. Applications must not used the pointer returned ** [sqlite3_str_value(X)] after any subsequent method call on the same ** object. ^Applications may change the content of the string returned ** by [sqlite3_str_value(X)] as long as they do not write into any bytes ** outside the range of 0 to [sqlite3_str_length(X)] and do not read or ** write any byte after any subsequent sqlite3_str method call. */ SQLITE_API int sqlite3_str_errcode(sqlite3_str*); SQLITE_API int sqlite3_str_length(sqlite3_str*); SQLITE_API char *sqlite3_str_value(sqlite3_str*); /* ** CAPI3REF: SQLite Runtime Status ** ** ^These interfaces are used to retrieve runtime status information ** about the performance of SQLite, and optionally to reset various ** highwater marks. ^The first argument is an integer code for ** the specific parameter to measure. ^(Recognized integer codes ** are of the form [status parameters | SQLITE_STATUS_...].)^ ** ^The current value of the parameter is returned into *pCurrent. ** ^The highest recorded value is returned in *pHighwater. ^If the ** resetFlag is true, then the highest record value is reset after ** *pHighwater is written. ^(Some parameters do not record the highest ** value. For those parameters ** nothing is written into *pHighwater and the resetFlag is ignored.)^ ** ^(Other parameters record only the highwater mark and not the current ** value. For these latter parameters nothing is written into *pCurrent.)^ ** ** ^The sqlite3_status() and sqlite3_status64() routines return ** SQLITE_OK on success and a non-zero [error code] on failure. ** ** If either the current value or the highwater mark is too large to ** be represented by a 32-bit integer, then the values returned by ** sqlite3_status() are undefined. ** ** See also: [sqlite3_db_status()] */ SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); SQLITE_API int sqlite3_status64( int op, sqlite3_int64 *pCurrent, sqlite3_int64 *pHighwater, int resetFlag ); /* ** CAPI3REF: Status Parameters ** KEYWORDS: {status parameters} ** ** These integer constants designate various run-time status parameters ** that can be returned by [sqlite3_status()]. ** **
    ** [[SQLITE_STATUS_MEMORY_USED]] ^(
    SQLITE_STATUS_MEMORY_USED
    **
    This parameter is the current amount of memory checked out ** using [sqlite3_malloc()], either directly or indirectly. The ** figure includes calls made to [sqlite3_malloc()] by the application ** and internal memory usage by the SQLite library. Auxiliary page-cache ** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in ** this parameter. The amount returned is the sum of the allocation ** sizes as reported by the xSize method in [sqlite3_mem_methods].
    )^ ** ** [[SQLITE_STATUS_MALLOC_SIZE]] ^(
    SQLITE_STATUS_MALLOC_SIZE
    **
    This parameter records the largest memory allocation request ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their ** internal equivalents). Only the value returned in the ** *pHighwater parameter to [sqlite3_status()] is of interest. ** The value written into the *pCurrent parameter is undefined.
    )^ ** ** [[SQLITE_STATUS_MALLOC_COUNT]] ^(
    SQLITE_STATUS_MALLOC_COUNT
    **
    This parameter records the number of separate memory allocations ** currently checked out.
    )^ ** ** [[SQLITE_STATUS_PAGECACHE_USED]] ^(
    SQLITE_STATUS_PAGECACHE_USED
    **
    This parameter returns the number of pages used out of the ** [pagecache memory allocator] that was configured using ** [SQLITE_CONFIG_PAGECACHE]. The ** value returned is in pages, not in bytes.
    )^ ** ** [[SQLITE_STATUS_PAGECACHE_OVERFLOW]] ** ^(
    SQLITE_STATUS_PAGECACHE_OVERFLOW
    **
    This parameter returns the number of bytes of page cache ** allocation which could not be satisfied by the [SQLITE_CONFIG_PAGECACHE] ** buffer and where forced to overflow to [sqlite3_malloc()]. The ** returned value includes allocations that overflowed because they ** where too large (they were larger than the "sz" parameter to ** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because ** no space was left in the page cache.
    )^ ** ** [[SQLITE_STATUS_PAGECACHE_SIZE]] ^(
    SQLITE_STATUS_PAGECACHE_SIZE
    **
    This parameter records the largest memory allocation request ** handed to the [pagecache memory allocator]. Only the value returned in the ** *pHighwater parameter to [sqlite3_status()] is of interest. ** The value written into the *pCurrent parameter is undefined.
    )^ ** ** [[SQLITE_STATUS_SCRATCH_USED]]
    SQLITE_STATUS_SCRATCH_USED
    **
    No longer used.
    ** ** [[SQLITE_STATUS_SCRATCH_OVERFLOW]] ^(
    SQLITE_STATUS_SCRATCH_OVERFLOW
    **
    No longer used.
    ** ** [[SQLITE_STATUS_SCRATCH_SIZE]]
    SQLITE_STATUS_SCRATCH_SIZE
    **
    No longer used.
    ** ** [[SQLITE_STATUS_PARSER_STACK]] ^(
    SQLITE_STATUS_PARSER_STACK
    **
    The *pHighwater parameter records the deepest parser stack. ** The *pCurrent value is undefined. The *pHighwater value is only ** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].
    )^ **
    ** ** New status parameters may be added from time to time. */ #define SQLITE_STATUS_MEMORY_USED 0 #define SQLITE_STATUS_PAGECACHE_USED 1 #define SQLITE_STATUS_PAGECACHE_OVERFLOW 2 #define SQLITE_STATUS_SCRATCH_USED 3 /* NOT USED */ #define SQLITE_STATUS_SCRATCH_OVERFLOW 4 /* NOT USED */ #define SQLITE_STATUS_MALLOC_SIZE 5 #define SQLITE_STATUS_PARSER_STACK 6 #define SQLITE_STATUS_PAGECACHE_SIZE 7 #define SQLITE_STATUS_SCRATCH_SIZE 8 /* NOT USED */ #define SQLITE_STATUS_MALLOC_COUNT 9 /* ** CAPI3REF: Database Connection Status ** METHOD: sqlite3 ** ** ^This interface is used to retrieve runtime status information ** about a single [database connection]. ^The first argument is the ** database connection object to be interrogated. ^The second argument ** is an integer constant, taken from the set of ** [SQLITE_DBSTATUS options], that ** determines the parameter to interrogate. The set of ** [SQLITE_DBSTATUS options] is likely ** to grow in future releases of SQLite. ** ** ^The current value of the requested parameter is written into *pCur ** and the highest instantaneous value is written into *pHiwtr. ^If ** the resetFlg is true, then the highest instantaneous value is ** reset back down to the current value. ** ** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a ** non-zero [error code] on failure. ** ** See also: [sqlite3_status()] and [sqlite3_stmt_status()]. */ SQLITE_API int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg); /* ** CAPI3REF: Status Parameters for database connections ** KEYWORDS: {SQLITE_DBSTATUS options} ** ** These constants are the available integer "verbs" that can be passed as ** the second argument to the [sqlite3_db_status()] interface. ** ** New verbs may be added in future releases of SQLite. Existing verbs ** might be discontinued. Applications should check the return code from ** [sqlite3_db_status()] to make sure that the call worked. ** The [sqlite3_db_status()] interface will return a non-zero error code ** if a discontinued or unsupported verb is invoked. ** **
    ** [[SQLITE_DBSTATUS_LOOKASIDE_USED]] ^(
    SQLITE_DBSTATUS_LOOKASIDE_USED
    **
    This parameter returns the number of lookaside memory slots currently ** checked out.
    )^ ** ** [[SQLITE_DBSTATUS_LOOKASIDE_HIT]] ^(
    SQLITE_DBSTATUS_LOOKASIDE_HIT
    **
    This parameter returns the number of malloc attempts that were ** satisfied using lookaside memory. Only the high-water value is meaningful; ** the current value is always zero.)^ ** ** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE]] ** ^(
    SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE
    **
    This parameter returns the number malloc attempts that might have ** been satisfied using lookaside memory but failed due to the amount of ** memory requested being larger than the lookaside slot size. ** Only the high-water value is meaningful; ** the current value is always zero.)^ ** ** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL]] ** ^(
    SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL
    **
    This parameter returns the number malloc attempts that might have ** been satisfied using lookaside memory but failed due to all lookaside ** memory already being in use. ** Only the high-water value is meaningful; ** the current value is always zero.)^ ** ** [[SQLITE_DBSTATUS_CACHE_USED]] ^(
    SQLITE_DBSTATUS_CACHE_USED
    **
    This parameter returns the approximate number of bytes of heap ** memory used by all pager caches associated with the database connection.)^ ** ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_USED is always 0. ** ** [[SQLITE_DBSTATUS_CACHE_USED_SHARED]] ** ^(
    SQLITE_DBSTATUS_CACHE_USED_SHARED
    **
    This parameter is similar to DBSTATUS_CACHE_USED, except that if a ** pager cache is shared between two or more connections the bytes of heap ** memory used by that pager cache is divided evenly between the attached ** connections.)^ In other words, if none of the pager caches associated ** with the database connection are shared, this request returns the same ** value as DBSTATUS_CACHE_USED. Or, if one or more or the pager caches are ** shared, the value returned by this call will be smaller than that returned ** by DBSTATUS_CACHE_USED. ^The highwater mark associated with ** SQLITE_DBSTATUS_CACHE_USED_SHARED is always 0. ** ** [[SQLITE_DBSTATUS_SCHEMA_USED]] ^(
    SQLITE_DBSTATUS_SCHEMA_USED
    **
    This parameter returns the approximate number of bytes of heap ** memory used to store the schema for all databases associated ** with the connection - main, temp, and any [ATTACH]-ed databases.)^ ** ^The full amount of memory used by the schemas is reported, even if the ** schema memory is shared with other database connections due to ** [shared cache mode] being enabled. ** ^The highwater mark associated with SQLITE_DBSTATUS_SCHEMA_USED is always 0. ** ** [[SQLITE_DBSTATUS_STMT_USED]] ^(
    SQLITE_DBSTATUS_STMT_USED
    **
    This parameter returns the approximate number of bytes of heap ** and lookaside memory used by all prepared statements associated with ** the database connection.)^ ** ^The highwater mark associated with SQLITE_DBSTATUS_STMT_USED is always 0. **
    ** ** [[SQLITE_DBSTATUS_CACHE_HIT]] ^(
    SQLITE_DBSTATUS_CACHE_HIT
    **
    This parameter returns the number of pager cache hits that have ** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_HIT ** is always 0. **
    ** ** [[SQLITE_DBSTATUS_CACHE_MISS]] ^(
    SQLITE_DBSTATUS_CACHE_MISS
    **
    This parameter returns the number of pager cache misses that have ** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_MISS ** is always 0. **
    ** ** [[SQLITE_DBSTATUS_CACHE_WRITE]] ^(
    SQLITE_DBSTATUS_CACHE_WRITE
    **
    This parameter returns the number of dirty cache entries that have ** been written to disk. Specifically, the number of pages written to the ** wal file in wal mode databases, or the number of pages written to the ** database file in rollback mode databases. Any pages written as part of ** transaction rollback or database recovery operations are not included. ** If an IO or other error occurs while writing a page to disk, the effect ** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The ** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0. **
    ** ** [[SQLITE_DBSTATUS_CACHE_SPILL]] ^(
    SQLITE_DBSTATUS_CACHE_SPILL
    **
    This parameter returns the number of dirty cache entries that have ** been written to disk in the middle of a transaction due to the page ** cache overflowing. Transactions are more efficient if they are written ** to disk all at once. When pages spill mid-transaction, that introduces ** additional overhead. This parameter can be used help identify ** inefficiencies that can be resolved by increasing the cache size. **
    ** ** [[SQLITE_DBSTATUS_DEFERRED_FKS]] ^(
    SQLITE_DBSTATUS_DEFERRED_FKS
    **
    This parameter returns zero for the current value if and only if ** all foreign key constraints (deferred or immediate) have been ** resolved.)^ ^The highwater mark is always 0. **
    **
    */ #define SQLITE_DBSTATUS_LOOKASIDE_USED 0 #define SQLITE_DBSTATUS_CACHE_USED 1 #define SQLITE_DBSTATUS_SCHEMA_USED 2 #define SQLITE_DBSTATUS_STMT_USED 3 #define SQLITE_DBSTATUS_LOOKASIDE_HIT 4 #define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE 5 #define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL 6 #define SQLITE_DBSTATUS_CACHE_HIT 7 #define SQLITE_DBSTATUS_CACHE_MISS 8 #define SQLITE_DBSTATUS_CACHE_WRITE 9 #define SQLITE_DBSTATUS_DEFERRED_FKS 10 #define SQLITE_DBSTATUS_CACHE_USED_SHARED 11 #define SQLITE_DBSTATUS_CACHE_SPILL 12 #define SQLITE_DBSTATUS_MAX 12 /* Largest defined DBSTATUS */ /* ** CAPI3REF: Prepared Statement Status ** METHOD: sqlite3_stmt ** ** ^(Each prepared statement maintains various ** [SQLITE_STMTSTATUS counters] that measure the number ** of times it has performed specific operations.)^ These counters can ** be used to monitor the performance characteristics of the prepared ** statements. For example, if the number of table steps greatly exceeds ** the number of table searches or result rows, that would tend to indicate ** that the prepared statement is using a full table scan rather than ** an index. ** ** ^(This interface is used to retrieve and reset counter values from ** a [prepared statement]. The first argument is the prepared statement ** object to be interrogated. The second argument ** is an integer code for a specific [SQLITE_STMTSTATUS counter] ** to be interrogated.)^ ** ^The current value of the requested counter is returned. ** ^If the resetFlg is true, then the counter is reset to zero after this ** interface call returns. ** ** See also: [sqlite3_status()] and [sqlite3_db_status()]. */ SQLITE_API int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg); /* ** CAPI3REF: Status Parameters for prepared statements ** KEYWORDS: {SQLITE_STMTSTATUS counter} {SQLITE_STMTSTATUS counters} ** ** These preprocessor macros define integer codes that name counter ** values associated with the [sqlite3_stmt_status()] interface. ** The meanings of the various counters are as follows: ** **
    ** [[SQLITE_STMTSTATUS_FULLSCAN_STEP]]
    SQLITE_STMTSTATUS_FULLSCAN_STEP
    **
    ^This is the number of times that SQLite has stepped forward in ** a table as part of a full table scan. Large numbers for this counter ** may indicate opportunities for performance improvement through ** careful use of indices.
    ** ** [[SQLITE_STMTSTATUS_SORT]]
    SQLITE_STMTSTATUS_SORT
    **
    ^This is the number of sort operations that have occurred. ** A non-zero value in this counter may indicate an opportunity to ** improvement performance through careful use of indices.
    ** ** [[SQLITE_STMTSTATUS_AUTOINDEX]]
    SQLITE_STMTSTATUS_AUTOINDEX
    **
    ^This is the number of rows inserted into transient indices that ** were created automatically in order to help joins run faster. ** A non-zero value in this counter may indicate an opportunity to ** improvement performance by adding permanent indices that do not ** need to be reinitialized each time the statement is run.
    ** ** [[SQLITE_STMTSTATUS_VM_STEP]]
    SQLITE_STMTSTATUS_VM_STEP
    **
    ^This is the number of virtual machine operations executed ** by the prepared statement if that number is less than or equal ** to 2147483647. The number of virtual machine operations can be ** used as a proxy for the total work done by the prepared statement. ** If the number of virtual machine operations exceeds 2147483647 ** then the value returned by this statement status code is undefined. ** ** [[SQLITE_STMTSTATUS_REPREPARE]]
    SQLITE_STMTSTATUS_REPREPARE
    **
    ^This is the number of times that the prepare statement has been ** automatically regenerated due to schema changes or changes to ** [bound parameters] that might affect the query plan. ** ** [[SQLITE_STMTSTATUS_RUN]]
    SQLITE_STMTSTATUS_RUN
    **
    ^This is the number of times that the prepared statement has ** been run. A single "run" for the purposes of this counter is one ** or more calls to [sqlite3_step()] followed by a call to [sqlite3_reset()]. ** The counter is incremented on the first [sqlite3_step()] call of each ** cycle. ** ** [[SQLITE_STMTSTATUS_FILTER_MISS]] ** [[SQLITE_STMTSTATUS_FILTER HIT]] **
    SQLITE_STMTSTATUS_FILTER_HIT
    ** SQLITE_STMTSTATUS_FILTER_MISS
    **
    ^SQLITE_STMTSTATUS_FILTER_HIT is the number of times that a join ** step was bypassed because a Bloom filter returned not-found. The ** corresponding SQLITE_STMTSTATUS_FILTER_MISS value is the number of ** times that the Bloom filter returned a find, and thus the join step ** had to be processed as normal. ** ** [[SQLITE_STMTSTATUS_MEMUSED]]
    SQLITE_STMTSTATUS_MEMUSED
    **
    ^This is the approximate number of bytes of heap memory ** used to store the prepared statement. ^This value is not actually ** a counter, and so the resetFlg parameter to sqlite3_stmt_status() ** is ignored when the opcode is SQLITE_STMTSTATUS_MEMUSED. **
    **
    */ #define SQLITE_STMTSTATUS_FULLSCAN_STEP 1 #define SQLITE_STMTSTATUS_SORT 2 #define SQLITE_STMTSTATUS_AUTOINDEX 3 #define SQLITE_STMTSTATUS_VM_STEP 4 #define SQLITE_STMTSTATUS_REPREPARE 5 #define SQLITE_STMTSTATUS_RUN 6 #define SQLITE_STMTSTATUS_FILTER_MISS 7 #define SQLITE_STMTSTATUS_FILTER_HIT 8 #define SQLITE_STMTSTATUS_MEMUSED 99 /* ** CAPI3REF: Custom Page Cache Object ** ** The sqlite3_pcache type is opaque. It is implemented by ** the pluggable module. The SQLite core has no knowledge of ** its size or internal structure and never deals with the ** sqlite3_pcache object except by holding and passing pointers ** to the object. ** ** See [sqlite3_pcache_methods2] for additional information. */ typedef struct sqlite3_pcache sqlite3_pcache; /* ** CAPI3REF: Custom Page Cache Object ** ** The sqlite3_pcache_page object represents a single page in the ** page cache. The page cache will allocate instances of this ** object. Various methods of the page cache use pointers to instances ** of this object as parameters or as their return value. ** ** See [sqlite3_pcache_methods2] for additional information. */ typedef struct sqlite3_pcache_page sqlite3_pcache_page; struct sqlite3_pcache_page { void *pBuf; /* The content of the page */ void *pExtra; /* Extra information associated with the page */ }; /* ** CAPI3REF: Application Defined Page Cache. ** KEYWORDS: {page cache} ** ** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can ** register an alternative page cache implementation by passing in an ** instance of the sqlite3_pcache_methods2 structure.)^ ** In many applications, most of the heap memory allocated by ** SQLite is used for the page cache. ** By implementing a ** custom page cache using this API, an application can better control ** the amount of memory consumed by SQLite, the way in which ** that memory is allocated and released, and the policies used to ** determine exactly which parts of a database file are cached and for ** how long. ** ** The alternative page cache mechanism is an ** extreme measure that is only needed by the most demanding applications. ** The built-in page cache is recommended for most uses. ** ** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an ** internal buffer by SQLite within the call to [sqlite3_config]. Hence ** the application may discard the parameter after the call to ** [sqlite3_config()] returns.)^ ** ** [[the xInit() page cache method]] ** ^(The xInit() method is called once for each effective ** call to [sqlite3_initialize()])^ ** (usually only once during the lifetime of the process). ^(The xInit() ** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^ ** The intent of the xInit() method is to set up global data structures ** required by the custom page cache implementation. ** ^(If the xInit() method is NULL, then the ** built-in default page cache is used instead of the application defined ** page cache.)^ ** ** [[the xShutdown() page cache method]] ** ^The xShutdown() method is called by [sqlite3_shutdown()]. ** It can be used to clean up ** any outstanding resources before process shutdown, if required. ** ^The xShutdown() method may be NULL. ** ** ^SQLite automatically serializes calls to the xInit method, ** so the xInit method need not be threadsafe. ^The ** xShutdown method is only called from [sqlite3_shutdown()] so it does ** not need to be threadsafe either. All other methods must be threadsafe ** in multithreaded applications. ** ** ^SQLite will never invoke xInit() more than once without an intervening ** call to xShutdown(). ** ** [[the xCreate() page cache methods]] ** ^SQLite invokes the xCreate() method to construct a new cache instance. ** SQLite will typically create one cache instance for each open database file, ** though this is not guaranteed. ^The ** first parameter, szPage, is the size in bytes of the pages that must ** be allocated by the cache. ^szPage will always a power of two. ^The ** second parameter szExtra is a number of bytes of extra storage ** associated with each page cache entry. ^The szExtra parameter will ** a number less than 250. SQLite will use the ** extra szExtra bytes on each page to store metadata about the underlying ** database page on disk. The value passed into szExtra depends ** on the SQLite version, the target platform, and how SQLite was compiled. ** ^The third argument to xCreate(), bPurgeable, is true if the cache being ** created will be used to cache database pages of a file stored on disk, or ** false if it is used for an in-memory database. The cache implementation ** does not have to do anything special based with the value of bPurgeable; ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will ** never invoke xUnpin() except to deliberately delete a page. ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to ** false will always have the "discard" flag set to true. ** ^Hence, a cache created with bPurgeable false will ** never contain any unpinned pages. ** ** [[the xCachesize() page cache method]] ** ^(The xCachesize() method may be called at any time by SQLite to set the ** suggested maximum cache-size (number of pages stored by) the cache ** instance passed as the first argument. This is the value configured using ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable ** parameter, the implementation is not required to do anything with this ** value; it is advisory only. ** ** [[the xPagecount() page cache methods]] ** The xPagecount() method must return the number of pages currently ** stored in the cache, both pinned and unpinned. ** ** [[the xFetch() page cache methods]] ** The xFetch() method locates a page in the cache and returns a pointer to ** an sqlite3_pcache_page object associated with that page, or a NULL pointer. ** The pBuf element of the returned sqlite3_pcache_page object will be a ** pointer to a buffer of szPage bytes used to store the content of a ** single database page. The pExtra element of sqlite3_pcache_page will be ** a pointer to the szExtra bytes of extra storage that SQLite has requested ** for each entry in the page cache. ** ** The page to be fetched is determined by the key. ^The minimum key value ** is 1. After it has been retrieved using xFetch, the page is considered ** to be "pinned". ** ** If the requested page is already in the page cache, then the page cache ** implementation must return a pointer to the page buffer with its content ** intact. If the requested page is not already in the cache, then the ** cache implementation should use the value of the createFlag ** parameter to help it determined what action to take: ** ** **
    createFlag Behavior when page is not already in cache **
    0 Do not allocate a new page. Return NULL. **
    1 Allocate a new page if it easy and convenient to do so. ** Otherwise return NULL. **
    2 Make every effort to allocate a new page. Only return ** NULL if allocating a new page is effectively impossible. **
    ** ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite ** will only use a createFlag of 2 after a prior call with a createFlag of 1 ** failed.)^ In between the xFetch() calls, SQLite may ** attempt to unpin one or more cache pages by spilling the content of ** pinned pages to disk and synching the operating system disk cache. ** ** [[the xUnpin() page cache method]] ** ^xUnpin() is called by SQLite with a pointer to a currently pinned page ** as its second argument. If the third parameter, discard, is non-zero, ** then the page must be evicted from the cache. ** ^If the discard parameter is ** zero, then the page may be discarded or retained at the discretion of ** page cache implementation. ^The page cache implementation ** may choose to evict unpinned pages at any time. ** ** The cache must not perform any reference counting. A single ** call to xUnpin() unpins the page regardless of the number of prior calls ** to xFetch(). ** ** [[the xRekey() page cache methods]] ** The xRekey() method is used to change the key value associated with the ** page passed as the second argument. If the cache ** previously contains an entry associated with newKey, it must be ** discarded. ^Any prior cache entry associated with newKey is guaranteed not ** to be pinned. ** ** When SQLite calls the xTruncate() method, the cache must discard all ** existing cache entries with page numbers (keys) greater than or equal ** to the value of the iLimit parameter passed to xTruncate(). If any ** of these pages are pinned, they are implicitly unpinned, meaning that ** they can be safely discarded. ** ** [[the xDestroy() page cache method]] ** ^The xDestroy() method is used to delete a cache allocated by xCreate(). ** All resources associated with the specified cache should be freed. ^After ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*] ** handle invalid, and will not use it with any other sqlite3_pcache_methods2 ** functions. ** ** [[the xShrink() page cache method]] ** ^SQLite invokes the xShrink() method when it wants the page cache to ** free up as much of heap memory as possible. The page cache implementation ** is not obligated to free any memory, but well-behaved implementations should ** do their best. */ typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2; struct sqlite3_pcache_methods2 { int iVersion; void *pArg; int (*xInit)(void*); void (*xShutdown)(void*); sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable); void (*xCachesize)(sqlite3_pcache*, int nCachesize); int (*xPagecount)(sqlite3_pcache*); sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard); void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, unsigned oldKey, unsigned newKey); void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); void (*xDestroy)(sqlite3_pcache*); void (*xShrink)(sqlite3_pcache*); }; /* ** This is the obsolete pcache_methods object that has now been replaced ** by sqlite3_pcache_methods2. This object is not used by SQLite. It is ** retained in the header file for backwards compatibility only. */ typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; struct sqlite3_pcache_methods { void *pArg; int (*xInit)(void*); void (*xShutdown)(void*); sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); void (*xCachesize)(sqlite3_pcache*, int nCachesize); int (*xPagecount)(sqlite3_pcache*); void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); void (*xUnpin)(sqlite3_pcache*, void*, int discard); void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey); void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); void (*xDestroy)(sqlite3_pcache*); }; /* ** CAPI3REF: Online Backup Object ** ** The sqlite3_backup object records state information about an ongoing ** online backup operation. ^The sqlite3_backup object is created by ** a call to [sqlite3_backup_init()] and is destroyed by a call to ** [sqlite3_backup_finish()]. ** ** See Also: [Using the SQLite Online Backup API] */ typedef struct sqlite3_backup sqlite3_backup; /* ** CAPI3REF: Online Backup API. ** ** The backup API copies the content of one database into another. ** It is useful either for creating backups of databases or ** for copying in-memory databases to or from persistent files. ** ** See Also: [Using the SQLite Online Backup API] ** ** ^SQLite holds a write transaction open on the destination database file ** for the duration of the backup operation. ** ^The source database is read-locked only while it is being read; ** it is not locked continuously for the entire backup operation. ** ^Thus, the backup may be performed on a live source database without ** preventing other database connections from ** reading or writing to the source database while the backup is underway. ** ** ^(To perform a backup operation: **
      **
    1. sqlite3_backup_init() is called once to initialize the ** backup, **
    2. sqlite3_backup_step() is called one or more times to transfer ** the data between the two databases, and finally **
    3. sqlite3_backup_finish() is called to release all resources ** associated with the backup operation. **
    )^ ** There should be exactly one call to sqlite3_backup_finish() for each ** successful call to sqlite3_backup_init(). ** ** [[sqlite3_backup_init()]] sqlite3_backup_init() ** ** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the ** [database connection] associated with the destination database ** and the database name, respectively. ** ^The database name is "main" for the main database, "temp" for the ** temporary database, or the name specified after the AS keyword in ** an [ATTACH] statement for an attached database. ** ^The S and M arguments passed to ** sqlite3_backup_init(D,N,S,M) identify the [database connection] ** and database name of the source database, respectively. ** ^The source and destination [database connections] (parameters S and D) ** must be different or else sqlite3_backup_init(D,N,S,M) will fail with ** an error. ** ** ^A call to sqlite3_backup_init() will fail, returning NULL, if ** there is already a read or read-write transaction open on the ** destination database. ** ** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is ** returned and an error code and error message are stored in the ** destination [database connection] D. ** ^The error code and message for the failed call to sqlite3_backup_init() ** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or ** [sqlite3_errmsg16()] functions. ** ^A successful call to sqlite3_backup_init() returns a pointer to an ** [sqlite3_backup] object. ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and ** sqlite3_backup_finish() functions to perform the specified backup ** operation. ** ** [[sqlite3_backup_step()]] sqlite3_backup_step() ** ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between ** the source and destination databases specified by [sqlite3_backup] object B. ** ^If N is negative, all remaining source pages are copied. ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there ** are still more pages to be copied, then the function returns [SQLITE_OK]. ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages ** from source to destination, then it returns [SQLITE_DONE]. ** ^If an error occurs while running sqlite3_backup_step(B,N), ** then an [error code] is returned. ^As well as [SQLITE_OK] and ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY], ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an ** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code. ** ** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] if **
      **
    1. the destination database was opened read-only, or **
    2. the destination database is using write-ahead-log journaling ** and the destination and source page sizes differ, or **
    3. the destination database is an in-memory database and the ** destination and source page sizes differ. **
    )^ ** ** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then ** the [sqlite3_busy_handler | busy-handler function] ** is invoked (if one is specified). ^If the ** busy-handler returns non-zero before the lock is available, then ** [SQLITE_BUSY] is returned to the caller. ^In this case the call to ** sqlite3_backup_step() can be retried later. ^If the source ** [database connection] ** is being used to write to the source database when sqlite3_backup_step() ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this ** case the call to sqlite3_backup_step() can be retried later on. ^(If ** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or ** [SQLITE_READONLY] is returned, then ** there is no point in retrying the call to sqlite3_backup_step(). These ** errors are considered fatal.)^ The application must accept ** that the backup operation has failed and pass the backup operation handle ** to the sqlite3_backup_finish() to release associated resources. ** ** ^The first call to sqlite3_backup_step() obtains an exclusive lock ** on the destination file. ^The exclusive lock is not released until either ** sqlite3_backup_finish() is called or the backup operation is complete ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to ** sqlite3_backup_step() obtains a [shared lock] on the source database that ** lasts for the duration of the sqlite3_backup_step() call. ** ^Because the source database is not locked between calls to ** sqlite3_backup_step(), the source database may be modified mid-way ** through the backup process. ^If the source database is modified by an ** external process or via a database connection other than the one being ** used by the backup operation, then the backup will be automatically ** restarted by the next call to sqlite3_backup_step(). ^If the source ** database is modified by the using the same database connection as is used ** by the backup operation, then the backup database is automatically ** updated at the same time. ** ** [[sqlite3_backup_finish()]] sqlite3_backup_finish() ** ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the ** application wishes to abandon the backup operation, the application ** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish(). ** ^The sqlite3_backup_finish() interfaces releases all ** resources associated with the [sqlite3_backup] object. ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any ** active write-transaction on the destination database is rolled back. ** The [sqlite3_backup] object is invalid ** and may not be used following a call to sqlite3_backup_finish(). ** ** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no ** sqlite3_backup_step() errors occurred, regardless or whether or not ** sqlite3_backup_step() completed. ** ^If an out-of-memory condition or IO error occurred during any prior ** sqlite3_backup_step() call on the same [sqlite3_backup] object, then ** sqlite3_backup_finish() returns the corresponding [error code]. ** ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step() ** is not a permanent error and does not affect the return value of ** sqlite3_backup_finish(). ** ** [[sqlite3_backup_remaining()]] [[sqlite3_backup_pagecount()]] ** sqlite3_backup_remaining() and sqlite3_backup_pagecount() ** ** ^The sqlite3_backup_remaining() routine returns the number of pages still ** to be backed up at the conclusion of the most recent sqlite3_backup_step(). ** ^The sqlite3_backup_pagecount() routine returns the total number of pages ** in the source database at the conclusion of the most recent ** sqlite3_backup_step(). ** ^(The values returned by these functions are only updated by ** sqlite3_backup_step(). If the source database is modified in a way that ** changes the size of the source database or the number of pages remaining, ** those changes are not reflected in the output of sqlite3_backup_pagecount() ** and sqlite3_backup_remaining() until after the next ** sqlite3_backup_step().)^ ** ** Concurrent Usage of Database Handles ** ** ^The source [database connection] may be used by the application for other ** purposes while a backup operation is underway or being initialized. ** ^If SQLite is compiled and configured to support threadsafe database ** connections, then the source database connection may be used concurrently ** from within other threads. ** ** However, the application must guarantee that the destination ** [database connection] is not passed to any other API (by any thread) after ** sqlite3_backup_init() is called and before the corresponding call to ** sqlite3_backup_finish(). SQLite does not currently check to see ** if the application incorrectly accesses the destination [database connection] ** and so no error code is reported, but the operations may malfunction ** nevertheless. Use of the destination database connection while a ** backup is in progress might also also cause a mutex deadlock. ** ** If running in [shared cache mode], the application must ** guarantee that the shared cache used by the destination database ** is not accessed while the backup is running. In practice this means ** that the application must guarantee that the disk file being ** backed up to is not accessed by any connection within the process, ** not just the specific connection that was passed to sqlite3_backup_init(). ** ** The [sqlite3_backup] object itself is partially threadsafe. Multiple ** threads may safely make multiple concurrent calls to sqlite3_backup_step(). ** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount() ** APIs are not strictly speaking threadsafe. If they are invoked at the ** same time as another thread is invoking sqlite3_backup_step() it is ** possible that they return invalid values. */ SQLITE_API sqlite3_backup *sqlite3_backup_init( sqlite3 *pDest, /* Destination database handle */ const char *zDestName, /* Destination database name */ sqlite3 *pSource, /* Source database handle */ const char *zSourceName /* Source database name */ ); SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage); SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p); SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p); SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p); /* ** CAPI3REF: Unlock Notification ** METHOD: sqlite3 ** ** ^When running in shared-cache mode, a database operation may fail with ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or ** individual tables within the shared-cache cannot be obtained. See ** [SQLite Shared-Cache Mode] for a description of shared-cache locking. ** ^This API may be used to register a callback that SQLite will invoke ** when the connection currently holding the required lock relinquishes it. ** ^This API is only available if the library was compiled with the ** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined. ** ** See Also: [Using the SQLite Unlock Notification Feature]. ** ** ^Shared-cache locks are released when a database connection concludes ** its current transaction, either by committing it or rolling it back. ** ** ^When a connection (known as the blocked connection) fails to obtain a ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the ** identity of the database connection (the blocking connection) that ** has locked the required resource is stored internally. ^After an ** application receives an SQLITE_LOCKED error, it may call the ** sqlite3_unlock_notify() method with the blocked connection handle as ** the first argument to register for a callback that will be invoked ** when the blocking connections current transaction is concluded. ^The ** callback is invoked from within the [sqlite3_step] or [sqlite3_close] ** call that concludes the blocking connection's transaction. ** ** ^(If sqlite3_unlock_notify() is called in a multi-threaded application, ** there is a chance that the blocking connection will have already ** concluded its transaction by the time sqlite3_unlock_notify() is invoked. ** If this happens, then the specified callback is invoked immediately, ** from within the call to sqlite3_unlock_notify().)^ ** ** ^If the blocked connection is attempting to obtain a write-lock on a ** shared-cache table, and more than one other connection currently holds ** a read-lock on the same table, then SQLite arbitrarily selects one of ** the other connections to use as the blocking connection. ** ** ^(There may be at most one unlock-notify callback registered by a ** blocked connection. If sqlite3_unlock_notify() is called when the ** blocked connection already has a registered unlock-notify callback, ** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is ** called with a NULL pointer as its second argument, then any existing ** unlock-notify callback is canceled. ^The blocked connections ** unlock-notify callback may also be canceled by closing the blocked ** connection using [sqlite3_close()]. ** ** The unlock-notify callback is not reentrant. If an application invokes ** any sqlite3_xxx API functions from within an unlock-notify callback, a ** crash or deadlock may be the result. ** ** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always ** returns SQLITE_OK. ** ** Callback Invocation Details ** ** When an unlock-notify callback is registered, the application provides a ** single void* pointer that is passed to the callback when it is invoked. ** However, the signature of the callback function allows SQLite to pass ** it an array of void* context pointers. The first argument passed to ** an unlock-notify callback is a pointer to an array of void* pointers, ** and the second is the number of entries in the array. ** ** When a blocking connection's transaction is concluded, there may be ** more than one blocked connection that has registered for an unlock-notify ** callback. ^If two or more such blocked connections have specified the ** same callback function, then instead of invoking the callback function ** multiple times, it is invoked once with the set of void* context pointers ** specified by the blocked connections bundled together into an array. ** This gives the application an opportunity to prioritize any actions ** related to the set of unblocked database connections. ** ** Deadlock Detection ** ** Assuming that after registering for an unlock-notify callback a ** database waits for the callback to be issued before taking any further ** action (a reasonable assumption), then using this API may cause the ** application to deadlock. For example, if connection X is waiting for ** connection Y's transaction to be concluded, and similarly connection ** Y is waiting on connection X's transaction, then neither connection ** will proceed and the system may remain deadlocked indefinitely. ** ** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock ** detection. ^If a given call to sqlite3_unlock_notify() would put the ** system in a deadlocked state, then SQLITE_LOCKED is returned and no ** unlock-notify callback is registered. The system is said to be in ** a deadlocked state if connection A has registered for an unlock-notify ** callback on the conclusion of connection B's transaction, and connection ** B has itself registered for an unlock-notify callback when connection ** A's transaction is concluded. ^Indirect deadlock is also detected, so ** the system is also considered to be deadlocked if connection B has ** registered for an unlock-notify callback on the conclusion of connection ** C's transaction, where connection C is waiting on connection A. ^Any ** number of levels of indirection are allowed. ** ** The "DROP TABLE" Exception ** ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost ** always appropriate to call sqlite3_unlock_notify(). There is however, ** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement, ** SQLite checks if there are any currently executing SELECT statements ** that belong to the same connection. If there are, SQLITE_LOCKED is ** returned. In this case there is no "blocking connection", so invoking ** sqlite3_unlock_notify() results in the unlock-notify callback being ** invoked immediately. If the application then re-attempts the "DROP TABLE" ** or "DROP INDEX" query, an infinite loop might be the result. ** ** One way around this problem is to check the extended error code returned ** by an sqlite3_step() call. ^(If there is a blocking connection, then the ** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in ** the special "DROP TABLE/INDEX" case, the extended error code is just ** SQLITE_LOCKED.)^ */ SQLITE_API int sqlite3_unlock_notify( sqlite3 *pBlocked, /* Waiting connection */ void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */ void *pNotifyArg /* Argument to pass to xNotify */ ); /* ** CAPI3REF: String Comparison ** ** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications ** and extensions to compare the contents of two buffers containing UTF-8 ** strings in a case-independent fashion, using the same definition of "case ** independence" that SQLite uses internally when comparing identifiers. */ SQLITE_API int sqlite3_stricmp(const char *, const char *); SQLITE_API int sqlite3_strnicmp(const char *, const char *, int); /* ** CAPI3REF: String Globbing * ** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if ** string X matches the [GLOB] pattern P. ** ^The definition of [GLOB] pattern matching used in ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the ** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function ** is case sensitive. ** ** Note that this routine returns zero on a match and non-zero if the strings ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. ** ** See also: [sqlite3_strlike()]. */ SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr); /* ** CAPI3REF: String LIKE Matching * ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if ** string X matches the [LIKE] pattern P with escape character E. ** ^The definition of [LIKE] pattern matching used in ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E" ** operator in the SQL dialect understood by SQLite. ^For "X LIKE P" without ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0. ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case ** insensitive - equivalent upper and lower case ASCII characters match ** one another. ** ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though ** only ASCII characters are case folded. ** ** Note that this routine returns zero on a match and non-zero if the strings ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. ** ** See also: [sqlite3_strglob()]. */ SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc); /* ** CAPI3REF: Error Logging Interface ** ** ^The [sqlite3_log()] interface writes a message into the [error log] ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()]. ** ^If logging is enabled, the zFormat string and subsequent arguments are ** used with [sqlite3_snprintf()] to generate the final output string. ** ** The sqlite3_log() interface is intended for use by extensions such as ** virtual tables, collating functions, and SQL functions. While there is ** nothing to prevent an application from calling sqlite3_log(), doing so ** is considered bad form. ** ** The zFormat string must not be NULL. ** ** To avoid deadlocks and other threading problems, the sqlite3_log() routine ** will not use dynamically allocated memory. The log message is stored in ** a fixed-length buffer on the stack. If the log message is longer than ** a few hundred characters, it will be truncated to the length of the ** buffer. */ SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...); /* ** CAPI3REF: Write-Ahead Log Commit Hook ** METHOD: sqlite3 ** ** ^The [sqlite3_wal_hook()] function is used to register a callback that ** is invoked each time data is committed to a database in wal mode. ** ** ^(The callback is invoked by SQLite after the commit has taken place and ** the associated write-lock on the database released)^, so the implementation ** may read, write or [checkpoint] the database as required. ** ** ^The first parameter passed to the callback function when it is invoked ** is a copy of the third parameter passed to sqlite3_wal_hook() when ** registering the callback. ^The second is a copy of the database handle. ** ^The third parameter is the name of the database that was written to - ** either "main" or the name of an [ATTACH]-ed database. ^The fourth parameter ** is the number of pages currently in the write-ahead log file, ** including those that were just committed. ** ** The callback function should normally return [SQLITE_OK]. ^If an error ** code is returned, that error will propagate back up through the ** SQLite code base to cause the statement that provoked the callback ** to report an error, though the commit will have still occurred. If the ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value ** that does not correspond to any valid SQLite error code, the results ** are undefined. ** ** A single database handle may have at most a single write-ahead log callback ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any ** previously registered write-ahead log callback. ^The return value is ** a copy of the third parameter from the previous call, if any, or 0. ** ^Note that the [sqlite3_wal_autocheckpoint()] interface and the ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will ** overwrite any prior [sqlite3_wal_hook()] settings. */ SQLITE_API void *sqlite3_wal_hook( sqlite3*, int(*)(void *,sqlite3*,const char*,int), void* ); /* ** CAPI3REF: Configure an auto-checkpoint ** METHOD: sqlite3 ** ** ^The [sqlite3_wal_autocheckpoint(D,N)] is a wrapper around ** [sqlite3_wal_hook()] that causes any database on [database connection] D ** to automatically [checkpoint] ** after committing a transaction if there are N or ** more frames in the [write-ahead log] file. ^Passing zero or ** a negative value as the nFrame parameter disables automatic ** checkpoints entirely. ** ** ^The callback registered by this function replaces any existing callback ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism ** configured by this function. ** ** ^The [wal_autocheckpoint pragma] can be used to invoke this interface ** from SQL. ** ** ^Checkpoints initiated by this mechanism are ** [sqlite3_wal_checkpoint_v2|PASSIVE]. ** ** ^Every new [database connection] defaults to having the auto-checkpoint ** enabled with a threshold of 1000 or [SQLITE_DEFAULT_WAL_AUTOCHECKPOINT] ** pages. The use of this interface ** is only necessary if the default setting is found to be suboptimal ** for a particular application. */ SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int N); /* ** CAPI3REF: Checkpoint a database ** METHOD: sqlite3 ** ** ^(The sqlite3_wal_checkpoint(D,X) is equivalent to ** [sqlite3_wal_checkpoint_v2](D,X,[SQLITE_CHECKPOINT_PASSIVE],0,0).)^ ** ** In brief, sqlite3_wal_checkpoint(D,X) causes the content in the ** [write-ahead log] for database X on [database connection] D to be ** transferred into the database file and for the write-ahead log to ** be reset. See the [checkpointing] documentation for addition ** information. ** ** This interface used to be the only way to cause a checkpoint to ** occur. But then the newer and more powerful [sqlite3_wal_checkpoint_v2()] ** interface was added. This interface is retained for backwards ** compatibility and as a convenience for applications that need to manually ** start a callback but which do not need the full power (and corresponding ** complication) of [sqlite3_wal_checkpoint_v2()]. */ SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb); /* ** CAPI3REF: Checkpoint a database ** METHOD: sqlite3 ** ** ^(The sqlite3_wal_checkpoint_v2(D,X,M,L,C) interface runs a checkpoint ** operation on database X of [database connection] D in mode M. Status ** information is written back into integers pointed to by L and C.)^ ** ^(The M parameter must be a valid [checkpoint mode]:)^ ** **
    **
    SQLITE_CHECKPOINT_PASSIVE
    ** ^Checkpoint as many frames as possible without waiting for any database ** readers or writers to finish, then sync the database file if all frames ** in the log were checkpointed. ^The [busy-handler callback] ** is never invoked in the SQLITE_CHECKPOINT_PASSIVE mode. ** ^On the other hand, passive mode might leave the checkpoint unfinished ** if there are concurrent readers or writers. ** **
    SQLITE_CHECKPOINT_FULL
    ** ^This mode blocks (it invokes the ** [sqlite3_busy_handler|busy-handler callback]) until there is no ** database writer and all readers are reading from the most recent database ** snapshot. ^It then checkpoints all frames in the log file and syncs the ** database file. ^This mode blocks new database writers while it is pending, ** but new database readers are allowed to continue unimpeded. ** **
    SQLITE_CHECKPOINT_RESTART
    ** ^This mode works the same way as SQLITE_CHECKPOINT_FULL with the addition ** that after checkpointing the log file it blocks (calls the ** [busy-handler callback]) ** until all readers are reading from the database file only. ^This ensures ** that the next writer will restart the log file from the beginning. ** ^Like SQLITE_CHECKPOINT_FULL, this mode blocks new ** database writer attempts while it is pending, but does not impede readers. ** **
    SQLITE_CHECKPOINT_TRUNCATE
    ** ^This mode works the same way as SQLITE_CHECKPOINT_RESTART with the ** addition that it also truncates the log file to zero bytes just prior ** to a successful return. **
    ** ** ^If pnLog is not NULL, then *pnLog is set to the total number of frames in ** the log file or to -1 if the checkpoint could not run because ** of an error or because the database is not in [WAL mode]. ^If pnCkpt is not ** NULL,then *pnCkpt is set to the total number of checkpointed frames in the ** log file (including any that were already checkpointed before the function ** was called) or to -1 if the checkpoint could not run due to an error or ** because the database is not in WAL mode. ^Note that upon successful ** completion of an SQLITE_CHECKPOINT_TRUNCATE, the log file will have been ** truncated to zero bytes and so both *pnLog and *pnCkpt will be set to zero. ** ** ^All calls obtain an exclusive "checkpoint" lock on the database file. ^If ** any other process is running a checkpoint operation at the same time, the ** lock cannot be obtained and SQLITE_BUSY is returned. ^Even if there is a ** busy-handler configured, it will not be invoked in this case. ** ** ^The SQLITE_CHECKPOINT_FULL, RESTART and TRUNCATE modes also obtain the ** exclusive "writer" lock on the database file. ^If the writer lock cannot be ** obtained immediately, and a busy-handler is configured, it is invoked and ** the writer lock retried until either the busy-handler returns 0 or the lock ** is successfully obtained. ^The busy-handler is also invoked while waiting for ** database readers as described above. ^If the busy-handler returns 0 before ** the writer lock is obtained or while waiting for database readers, the ** checkpoint operation proceeds from that point in the same way as ** SQLITE_CHECKPOINT_PASSIVE - checkpointing as many frames as possible ** without blocking any further. ^SQLITE_BUSY is returned in this case. ** ** ^If parameter zDb is NULL or points to a zero length string, then the ** specified operation is attempted on all WAL databases [attached] to ** [database connection] db. In this case the ** values written to output parameters *pnLog and *pnCkpt are undefined. ^If ** an SQLITE_BUSY error is encountered when processing one or more of the ** attached WAL databases, the operation is still attempted on any remaining ** attached databases and SQLITE_BUSY is returned at the end. ^If any other ** error occurs while processing an attached database, processing is abandoned ** and the error code is returned to the caller immediately. ^If no error ** (SQLITE_BUSY or otherwise) is encountered while processing the attached ** databases, SQLITE_OK is returned. ** ** ^If database zDb is the name of an attached database that is not in WAL ** mode, SQLITE_OK is returned and both *pnLog and *pnCkpt set to -1. ^If ** zDb is not NULL (or a zero length string) and is not the name of any ** attached database, SQLITE_ERROR is returned to the caller. ** ** ^Unless it returns SQLITE_MISUSE, ** the sqlite3_wal_checkpoint_v2() interface ** sets the error information that is queried by ** [sqlite3_errcode()] and [sqlite3_errmsg()]. ** ** ^The [PRAGMA wal_checkpoint] command can be used to invoke this interface ** from SQL. */ SQLITE_API int sqlite3_wal_checkpoint_v2( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of attached database (or NULL) */ int eMode, /* SQLITE_CHECKPOINT_* value */ int *pnLog, /* OUT: Size of WAL log in frames */ int *pnCkpt /* OUT: Total number of frames checkpointed */ ); /* ** CAPI3REF: Checkpoint Mode Values ** KEYWORDS: {checkpoint mode} ** ** These constants define all valid values for the "checkpoint mode" passed ** as the third parameter to the [sqlite3_wal_checkpoint_v2()] interface. ** See the [sqlite3_wal_checkpoint_v2()] documentation for details on the ** meaning of each of these checkpoint modes. */ #define SQLITE_CHECKPOINT_PASSIVE 0 /* Do as much as possible w/o blocking */ #define SQLITE_CHECKPOINT_FULL 1 /* Wait for writers, then checkpoint */ #define SQLITE_CHECKPOINT_RESTART 2 /* Like FULL but wait for for readers */ #define SQLITE_CHECKPOINT_TRUNCATE 3 /* Like RESTART but also truncate WAL */ /* ** CAPI3REF: Virtual Table Interface Configuration ** ** This function may be called by either the [xConnect] or [xCreate] method ** of a [virtual table] implementation to configure ** various facets of the virtual table interface. ** ** If this interface is invoked outside the context of an xConnect or ** xCreate virtual table method then the behavior is undefined. ** ** In the call sqlite3_vtab_config(D,C,...) the D parameter is the ** [database connection] in which the virtual table is being created and ** which is passed in as the first argument to the [xConnect] or [xCreate] ** method that is invoking sqlite3_vtab_config(). The C parameter is one ** of the [virtual table configuration options]. The presence and meaning ** of parameters after C depend on which [virtual table configuration option] ** is used. */ SQLITE_API int sqlite3_vtab_config(sqlite3*, int op, ...); /* ** CAPI3REF: Virtual Table Configuration Options ** KEYWORDS: {virtual table configuration options} ** KEYWORDS: {virtual table configuration option} ** ** These macros define the various options to the ** [sqlite3_vtab_config()] interface that [virtual table] implementations ** can use to customize and optimize their behavior. ** **
    ** [[SQLITE_VTAB_CONSTRAINT_SUPPORT]] **
    SQLITE_VTAB_CONSTRAINT_SUPPORT
    **
    Calls of the form ** [sqlite3_vtab_config](db,SQLITE_VTAB_CONSTRAINT_SUPPORT,X) are supported, ** where X is an integer. If X is zero, then the [virtual table] whose ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not ** support constraints. In this configuration (which is the default) if ** a call to the [xUpdate] method returns [SQLITE_CONSTRAINT], then the entire ** statement is rolled back as if [ON CONFLICT | OR ABORT] had been ** specified as part of the users SQL statement, regardless of the actual ** ON CONFLICT mode specified. ** ** If X is non-zero, then the virtual table implementation guarantees ** that if [xUpdate] returns [SQLITE_CONSTRAINT], it will do so before ** any modifications to internal or persistent data structures have been made. ** If the [ON CONFLICT] mode is ABORT, FAIL, IGNORE or ROLLBACK, SQLite ** is able to roll back a statement or database transaction, and abandon ** or continue processing the current SQL statement as appropriate. ** If the ON CONFLICT mode is REPLACE and the [xUpdate] method returns ** [SQLITE_CONSTRAINT], SQLite handles this as if the ON CONFLICT mode ** had been ABORT. ** ** Virtual table implementations that are required to handle OR REPLACE ** must do so within the [xUpdate] method. If a call to the ** [sqlite3_vtab_on_conflict()] function indicates that the current ON ** CONFLICT policy is REPLACE, the virtual table implementation should ** silently replace the appropriate rows within the xUpdate callback and ** return SQLITE_OK. Or, if this is not possible, it may return ** SQLITE_CONSTRAINT, in which case SQLite falls back to OR ABORT ** constraint handling. **
    ** ** [[SQLITE_VTAB_DIRECTONLY]]
    SQLITE_VTAB_DIRECTONLY
    **
    Calls of the form ** [sqlite3_vtab_config](db,SQLITE_VTAB_DIRECTONLY) from within the ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation ** prohibits that virtual table from being used from within triggers and ** views. **
    ** ** [[SQLITE_VTAB_INNOCUOUS]]
    SQLITE_VTAB_INNOCUOUS
    **
    Calls of the form ** [sqlite3_vtab_config](db,SQLITE_VTAB_INNOCUOUS) from within the ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation ** identify that virtual table as being safe to use from within triggers ** and views. Conceptually, the SQLITE_VTAB_INNOCUOUS tag means that the ** virtual table can do no serious harm even if it is controlled by a ** malicious hacker. Developers should avoid setting the SQLITE_VTAB_INNOCUOUS ** flag unless absolutely necessary. **
    **
    */ #define SQLITE_VTAB_CONSTRAINT_SUPPORT 1 #define SQLITE_VTAB_INNOCUOUS 2 #define SQLITE_VTAB_DIRECTONLY 3 /* ** CAPI3REF: Determine The Virtual Table Conflict Policy ** ** This function may only be called from within a call to the [xUpdate] method ** of a [virtual table] implementation for an INSERT or UPDATE operation. ^The ** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL], ** [SQLITE_ABORT], or [SQLITE_REPLACE], according to the [ON CONFLICT] mode ** of the SQL statement that triggered the call to the [xUpdate] method of the ** [virtual table]. */ SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *); /* ** CAPI3REF: Determine If Virtual Table Column Access Is For UPDATE ** ** If the sqlite3_vtab_nochange(X) routine is called within the [xColumn] ** method of a [virtual table], then it might return true if the ** column is being fetched as part of an UPDATE operation during which the ** column value will not change. The virtual table implementation can use ** this hint as permission to substitute a return value that is less ** expensive to compute and that the corresponding ** [xUpdate] method understands as a "no-change" value. ** ** If the [xColumn] method calls sqlite3_vtab_nochange() and finds that ** the column is not changed by the UPDATE statement, then the xColumn ** method can optionally return without setting a result, without calling ** any of the [sqlite3_result_int|sqlite3_result_xxxxx() interfaces]. ** In that case, [sqlite3_value_nochange(X)] will return true for the ** same column in the [xUpdate] method. ** ** The sqlite3_vtab_nochange() routine is an optimization. Virtual table ** implementations should continue to give a correct answer even if the ** sqlite3_vtab_nochange() interface were to always return false. In the ** current implementation, the sqlite3_vtab_nochange() interface does always ** returns false for the enhanced [UPDATE FROM] statement. */ SQLITE_API int sqlite3_vtab_nochange(sqlite3_context*); /* ** CAPI3REF: Determine The Collation For a Virtual Table Constraint ** METHOD: sqlite3_index_info ** ** This function may only be called from within a call to the [xBestIndex] ** method of a [virtual table]. This function returns a pointer to a string ** that is the name of the appropriate collation sequence to use for text ** comparisons on the constraint identified by its arguments. ** ** The first argument must be the pointer to the [sqlite3_index_info] object ** that is the first parameter to the xBestIndex() method. The second argument ** must be an index into the aConstraint[] array belonging to the ** sqlite3_index_info structure passed to xBestIndex. ** ** Important: ** The first parameter must be the same pointer that is passed into the ** xBestMethod() method. The first parameter may not be a pointer to a ** different [sqlite3_index_info] object, even an exact copy. ** ** The return value is computed as follows: ** **
      **
    1. If the constraint comes from a WHERE clause expression that contains ** a [COLLATE operator], then the name of the collation specified by ** that COLLATE operator is returned. **

    2. If there is no COLLATE operator, but the column that is the subject ** of the constraint specifies an alternative collating sequence via ** a [COLLATE clause] on the column definition within the CREATE TABLE ** statement that was passed into [sqlite3_declare_vtab()], then the ** name of that alternative collating sequence is returned. **

    3. Otherwise, "BINARY" is returned. **

    */ SQLITE_API SQLITE_EXPERIMENTAL const char *sqlite3_vtab_collation(sqlite3_index_info*,int); /* ** CAPI3REF: Determine if a virtual table query is DISTINCT ** METHOD: sqlite3_index_info ** ** This API may only be used from within an [xBestIndex|xBestIndex method] ** of a [virtual table] implementation. The result of calling this ** interface from outside of xBestIndex() is undefined and probably harmful. ** ** ^The sqlite3_vtab_distinct() interface returns an integer that is ** either 0, 1, or 2. The integer returned by sqlite3_vtab_distinct() ** gives the virtual table additional information about how the query ** planner wants the output to be ordered. As long as the virtual table ** can meet the ordering requirements of the query planner, it may set ** the "orderByConsumed" flag. ** **
    1. ** ^If the sqlite3_vtab_distinct() interface returns 0, that means ** that the query planner needs the virtual table to return all rows in the ** sort order defined by the "nOrderBy" and "aOrderBy" fields of the ** [sqlite3_index_info] object. This is the default expectation. If the ** virtual table outputs all rows in sorted order, then it is always safe for ** the xBestIndex method to set the "orderByConsumed" flag, regardless of ** the return value from sqlite3_vtab_distinct(). **

    2. ** ^(If the sqlite3_vtab_distinct() interface returns 1, that means ** that the query planner does not need the rows to be returned in sorted order ** as long as all rows with the same values in all columns identified by the ** "aOrderBy" field are adjacent.)^ This mode is used when the query planner ** is doing a GROUP BY. **

    3. ** ^(If the sqlite3_vtab_distinct() interface returns 2, that means ** that the query planner does not need the rows returned in any particular ** order, as long as rows with the same values in all "aOrderBy" columns ** are adjacent.)^ ^(Furthermore, only a single row for each particular ** combination of values in the columns identified by the "aOrderBy" field ** needs to be returned.)^ ^It is always ok for two or more rows with the same ** values in all "aOrderBy" columns to be returned, as long as all such rows ** are adjacent. ^The virtual table may, if it chooses, omit extra rows ** that have the same value for all columns identified by "aOrderBy". ** ^However omitting the extra rows is optional. ** This mode is used for a DISTINCT query. **

    ** ** ^For the purposes of comparing virtual table output values to see if the ** values are same value for sorting purposes, two NULL values are considered ** to be the same. In other words, the comparison operator is "IS" ** (or "IS NOT DISTINCT FROM") and not "==". ** ** If a virtual table implementation is unable to meet the requirements ** specified above, then it must not set the "orderByConsumed" flag in the ** [sqlite3_index_info] object or an incorrect answer may result. ** ** ^A virtual table implementation is always free to return rows in any order ** it wants, as long as the "orderByConsumed" flag is not set. ^When the ** the "orderByConsumed" flag is unset, the query planner will add extra ** [bytecode] to ensure that the final results returned by the SQL query are ** ordered correctly. The use of the "orderByConsumed" flag and the ** sqlite3_vtab_distinct() interface is merely an optimization. ^Careful ** use of the sqlite3_vtab_distinct() interface and the "orderByConsumed" ** flag might help queries against a virtual table to run faster. Being ** overly aggressive and setting the "orderByConsumed" flag when it is not ** valid to do so, on the other hand, might cause SQLite to return incorrect ** results. */ SQLITE_API int sqlite3_vtab_distinct(sqlite3_index_info*); /* ** CAPI3REF: Identify and handle IN constraints in xBestIndex ** ** This interface may only be used from within an ** [xBestIndex|xBestIndex() method] of a [virtual table] implementation. ** The result of invoking this interface from any other context is ** undefined and probably harmful. ** ** ^(A constraint on a virtual table of the form ** "[IN operator|column IN (...)]" is ** communicated to the xBestIndex method as a ** [SQLITE_INDEX_CONSTRAINT_EQ] constraint.)^ If xBestIndex wants to use ** this constraint, it must set the corresponding ** aConstraintUsage[].argvIndex to a postive integer. ^(Then, under ** the usual mode of handling IN operators, SQLite generates [bytecode] ** that invokes the [xFilter|xFilter() method] once for each value ** on the right-hand side of the IN operator.)^ Thus the virtual table ** only sees a single value from the right-hand side of the IN operator ** at a time. ** ** In some cases, however, it would be advantageous for the virtual ** table to see all values on the right-hand of the IN operator all at ** once. The sqlite3_vtab_in() interfaces facilitates this in two ways: ** **
      **
    1. ** ^A call to sqlite3_vtab_in(P,N,-1) will return true (non-zero) ** if and only if the [sqlite3_index_info|P->aConstraint][N] constraint ** is an [IN operator] that can be processed all at once. ^In other words, ** sqlite3_vtab_in() with -1 in the third argument is a mechanism ** by which the virtual table can ask SQLite if all-at-once processing ** of the IN operator is even possible. ** **

    2. ** ^A call to sqlite3_vtab_in(P,N,F) with F==1 or F==0 indicates ** to SQLite that the virtual table does or does not want to process ** the IN operator all-at-once, respectively. ^Thus when the third ** parameter (F) is non-negative, this interface is the mechanism by ** which the virtual table tells SQLite how it wants to process the ** IN operator. **

    ** ** ^The sqlite3_vtab_in(P,N,F) interface can be invoked multiple times ** within the same xBestIndex method call. ^For any given P,N pair, ** the return value from sqlite3_vtab_in(P,N,F) will always be the same ** within the same xBestIndex call. ^If the interface returns true ** (non-zero), that means that the constraint is an IN operator ** that can be processed all-at-once. ^If the constraint is not an IN ** operator or cannot be processed all-at-once, then the interface returns ** false. ** ** ^(All-at-once processing of the IN operator is selected if both of the ** following conditions are met: ** **
      **
    1. The P->aConstraintUsage[N].argvIndex value is set to a positive ** integer. This is how the virtual table tells SQLite that it wants to ** use the N-th constraint. ** **

    2. The last call to sqlite3_vtab_in(P,N,F) for which F was ** non-negative had F>=1. **

    )^ ** ** ^If either or both of the conditions above are false, then SQLite uses ** the traditional one-at-a-time processing strategy for the IN constraint. ** ^If both conditions are true, then the argvIndex-th parameter to the ** xFilter method will be an [sqlite3_value] that appears to be NULL, ** but which can be passed to [sqlite3_vtab_in_first()] and ** [sqlite3_vtab_in_next()] to find all values on the right-hand side ** of the IN constraint. */ SQLITE_API int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle); /* ** CAPI3REF: Find all elements on the right-hand side of an IN constraint. ** ** These interfaces are only useful from within the ** [xFilter|xFilter() method] of a [virtual table] implementation. ** The result of invoking these interfaces from any other context ** is undefined and probably harmful. ** ** The X parameter in a call to sqlite3_vtab_in_first(X,P) or ** sqlite3_vtab_in_next(X,P) must be one of the parameters to the ** xFilter method which invokes these routines, and specifically ** a parameter that was previously selected for all-at-once IN constraint ** processing use the [sqlite3_vtab_in()] interface in the ** [xBestIndex|xBestIndex method]. ^(If the X parameter is not ** an xFilter argument that was selected for all-at-once IN constraint ** processing, then these routines return [SQLITE_MISUSE])^ or perhaps ** exhibit some other undefined or harmful behavior. ** ** ^(Use these routines to access all values on the right-hand side ** of the IN constraint using code like the following: ** **
    **    for(rc=sqlite3_vtab_in_first(pList, &pVal);
    **        rc==SQLITE_OK && pVal
    **        rc=sqlite3_vtab_in_next(pList, &pVal)
    **    ){
    **      // do something with pVal
    **    }
    **    if( rc!=SQLITE_OK ){
    **      // an error has occurred
    **    }
    ** 
    )^ ** ** ^On success, the sqlite3_vtab_in_first(X,P) and sqlite3_vtab_in_next(X,P) ** routines return SQLITE_OK and set *P to point to the first or next value ** on the RHS of the IN constraint. ^If there are no more values on the ** right hand side of the IN constraint, then *P is set to NULL and these ** routines return [SQLITE_DONE]. ^The return value might be ** some other value, such as SQLITE_NOMEM, in the event of a malfunction. ** ** The *ppOut values returned by these routines are only valid until the ** next call to either of these routines or until the end of the xFilter ** method from which these routines were called. If the virtual table ** implementation needs to retain the *ppOut values for longer, it must make ** copies. The *ppOut values are [protected sqlite3_value|protected]. */ SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); /* ** CAPI3REF: Constraint values in xBestIndex() ** METHOD: sqlite3_index_info ** ** This API may only be used from within the [xBestIndex|xBestIndex method] ** of a [virtual table] implementation. The result of calling this interface ** from outside of an xBestIndex method are undefined and probably harmful. ** ** ^When the sqlite3_vtab_rhs_value(P,J,V) interface is invoked from within ** the [xBestIndex] method of a [virtual table] implementation, with P being ** a copy of the [sqlite3_index_info] object pointer passed into xBestIndex and ** J being a 0-based index into P->aConstraint[], then this routine ** attempts to set *V to the value of the right-hand operand of ** that constraint if the right-hand operand is known. ^If the ** right-hand operand is not known, then *V is set to a NULL pointer. ** ^The sqlite3_vtab_rhs_value(P,J,V) interface returns SQLITE_OK if ** and only if *V is set to a value. ^The sqlite3_vtab_rhs_value(P,J,V) ** inteface returns SQLITE_NOTFOUND if the right-hand side of the J-th ** constraint is not available. ^The sqlite3_vtab_rhs_value() interface ** can return an result code other than SQLITE_OK or SQLITE_NOTFOUND if ** something goes wrong. ** ** The sqlite3_vtab_rhs_value() interface is usually only successful if ** the right-hand operand of a constraint is a literal value in the original ** SQL statement. If the right-hand operand is an expression or a reference ** to some other column or a [host parameter], then sqlite3_vtab_rhs_value() ** will probably return [SQLITE_NOTFOUND]. ** ** ^(Some constraints, such as [SQLITE_INDEX_CONSTRAINT_ISNULL] and ** [SQLITE_INDEX_CONSTRAINT_ISNOTNULL], have no right-hand operand. For such ** constraints, sqlite3_vtab_rhs_value() always returns SQLITE_NOTFOUND.)^ ** ** ^The [sqlite3_value] object returned in *V is a protected sqlite3_value ** and remains valid for the duration of the xBestIndex method call. ** ^When xBestIndex returns, the sqlite3_value object returned by ** sqlite3_vtab_rhs_value() is automatically deallocated. ** ** The "_rhs_" in the name of this routine is an appreviation for ** "Right-Hand Side". */ SQLITE_API int sqlite3_vtab_rhs_value(sqlite3_index_info*, int, sqlite3_value **ppVal); /* ** CAPI3REF: Conflict resolution modes ** KEYWORDS: {conflict resolution mode} ** ** These constants are returned by [sqlite3_vtab_on_conflict()] to ** inform a [virtual table] implementation what the [ON CONFLICT] mode ** is for the SQL statement being evaluated. ** ** Note that the [SQLITE_IGNORE] constant is also used as a potential ** return value from the [sqlite3_set_authorizer()] callback and that ** [SQLITE_ABORT] is also a [result code]. */ #define SQLITE_ROLLBACK 1 /* #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback */ #define SQLITE_FAIL 3 /* #define SQLITE_ABORT 4 // Also an error code */ #define SQLITE_REPLACE 5 /* ** CAPI3REF: Prepared Statement Scan Status Opcodes ** KEYWORDS: {scanstatus options} ** ** The following constants can be used for the T parameter to the ** [sqlite3_stmt_scanstatus(S,X,T,V)] interface. Each constant designates a ** different metric for sqlite3_stmt_scanstatus() to return. ** ** When the value returned to V is a string, space to hold that string is ** managed by the prepared statement S and will be automatically freed when ** S is finalized. ** **
    ** [[SQLITE_SCANSTAT_NLOOP]]
    SQLITE_SCANSTAT_NLOOP
    **
    ^The [sqlite3_int64] variable pointed to by the V parameter will be ** set to the total number of times that the X-th loop has run.
    ** ** [[SQLITE_SCANSTAT_NVISIT]]
    SQLITE_SCANSTAT_NVISIT
    **
    ^The [sqlite3_int64] variable pointed to by the V parameter will be set ** to the total number of rows examined by all iterations of the X-th loop.
    ** ** [[SQLITE_SCANSTAT_EST]]
    SQLITE_SCANSTAT_EST
    **
    ^The "double" variable pointed to by the V parameter will be set to the ** query planner's estimate for the average number of rows output from each ** iteration of the X-th loop. If the query planner's estimates was accurate, ** then this value will approximate the quotient NVISIT/NLOOP and the ** product of this value for all prior loops with the same SELECTID will ** be the NLOOP value for the current loop. ** ** [[SQLITE_SCANSTAT_NAME]]
    SQLITE_SCANSTAT_NAME
    **
    ^The "const char *" variable pointed to by the V parameter will be set ** to a zero-terminated UTF-8 string containing the name of the index or table ** used for the X-th loop. ** ** [[SQLITE_SCANSTAT_EXPLAIN]]
    SQLITE_SCANSTAT_EXPLAIN
    **
    ^The "const char *" variable pointed to by the V parameter will be set ** to a zero-terminated UTF-8 string containing the [EXPLAIN QUERY PLAN] ** description for the X-th loop. ** ** [[SQLITE_SCANSTAT_SELECTID]]
    SQLITE_SCANSTAT_SELECT
    **
    ^The "int" variable pointed to by the V parameter will be set to the ** "select-id" for the X-th loop. The select-id identifies which query or ** subquery the loop is part of. The main query has a select-id of zero. ** The select-id is the same value as is output in the first column ** of an [EXPLAIN QUERY PLAN] query. **
    */ #define SQLITE_SCANSTAT_NLOOP 0 #define SQLITE_SCANSTAT_NVISIT 1 #define SQLITE_SCANSTAT_EST 2 #define SQLITE_SCANSTAT_NAME 3 #define SQLITE_SCANSTAT_EXPLAIN 4 #define SQLITE_SCANSTAT_SELECTID 5 /* ** CAPI3REF: Prepared Statement Scan Status ** METHOD: sqlite3_stmt ** ** This interface returns information about the predicted and measured ** performance for pStmt. Advanced applications can use this ** interface to compare the predicted and the measured performance and ** issue warnings and/or rerun [ANALYZE] if discrepancies are found. ** ** Since this interface is expected to be rarely used, it is only ** available if SQLite is compiled using the [SQLITE_ENABLE_STMT_SCANSTATUS] ** compile-time option. ** ** The "iScanStatusOp" parameter determines which status information to return. ** The "iScanStatusOp" must be one of the [scanstatus options] or the behavior ** of this interface is undefined. ** ^The requested measurement is written into a variable pointed to by ** the "pOut" parameter. ** Parameter "idx" identifies the specific loop to retrieve statistics for. ** Loops are numbered starting from zero. ^If idx is out of range - less than ** zero or greater than or equal to the total number of loops used to implement ** the statement - a non-zero value is returned and the variable that pOut ** points to is unchanged. ** ** ^Statistics might not be available for all loops in all statements. ^In cases ** where there exist loops with no available statistics, this function behaves ** as if the loop did not exist - it returns non-zero and leave the variable ** that pOut points to unchanged. ** ** See also: [sqlite3_stmt_scanstatus_reset()] */ SQLITE_API int sqlite3_stmt_scanstatus( sqlite3_stmt *pStmt, /* Prepared statement for which info desired */ int idx, /* Index of loop to report on */ int iScanStatusOp, /* Information desired. SQLITE_SCANSTAT_* */ void *pOut /* Result written here */ ); /* ** CAPI3REF: Zero Scan-Status Counters ** METHOD: sqlite3_stmt ** ** ^Zero all [sqlite3_stmt_scanstatus()] related event counters. ** ** This API is only available if the library is built with pre-processor ** symbol [SQLITE_ENABLE_STMT_SCANSTATUS] defined. */ SQLITE_API void sqlite3_stmt_scanstatus_reset(sqlite3_stmt*); /* ** CAPI3REF: Flush caches to disk mid-transaction ** METHOD: sqlite3 ** ** ^If a write-transaction is open on [database connection] D when the ** [sqlite3_db_cacheflush(D)] interface invoked, any dirty ** pages in the pager-cache that are not currently in use are written out ** to disk. A dirty page may be in use if a database cursor created by an ** active SQL statement is reading from it, or if it is page 1 of a database ** file (page 1 is always "in use"). ^The [sqlite3_db_cacheflush(D)] ** interface flushes caches for all schemas - "main", "temp", and ** any [attached] databases. ** ** ^If this function needs to obtain extra database locks before dirty pages ** can be flushed to disk, it does so. ^If those locks cannot be obtained ** immediately and there is a busy-handler callback configured, it is invoked ** in the usual manner. ^If the required lock still cannot be obtained, then ** the database is skipped and an attempt made to flush any dirty pages ** belonging to the next (if any) database. ^If any databases are skipped ** because locks cannot be obtained, but no other error occurs, this ** function returns SQLITE_BUSY. ** ** ^If any other error occurs while flushing dirty pages to disk (for ** example an IO error or out-of-memory condition), then processing is ** abandoned and an SQLite [error code] is returned to the caller immediately. ** ** ^Otherwise, if no error occurs, [sqlite3_db_cacheflush()] returns SQLITE_OK. ** ** ^This function does not set the database handle error code or message ** returned by the [sqlite3_errcode()] and [sqlite3_errmsg()] functions. */ SQLITE_API int sqlite3_db_cacheflush(sqlite3*); /* ** CAPI3REF: The pre-update hook. ** METHOD: sqlite3 ** ** ^These interfaces are only available if SQLite is compiled using the ** [SQLITE_ENABLE_PREUPDATE_HOOK] compile-time option. ** ** ^The [sqlite3_preupdate_hook()] interface registers a callback function ** that is invoked prior to each [INSERT], [UPDATE], and [DELETE] operation ** on a database table. ** ^At most one preupdate hook may be registered at a time on a single ** [database connection]; each call to [sqlite3_preupdate_hook()] overrides ** the previous setting. ** ^The preupdate hook is disabled by invoking [sqlite3_preupdate_hook()] ** with a NULL pointer as the second parameter. ** ^The third parameter to [sqlite3_preupdate_hook()] is passed through as ** the first parameter to callbacks. ** ** ^The preupdate hook only fires for changes to real database tables; the ** preupdate hook is not invoked for changes to [virtual tables] or to ** system tables like sqlite_sequence or sqlite_stat1. ** ** ^The second parameter to the preupdate callback is a pointer to ** the [database connection] that registered the preupdate hook. ** ^The third parameter to the preupdate callback is one of the constants ** [SQLITE_INSERT], [SQLITE_DELETE], or [SQLITE_UPDATE] to identify the ** kind of update operation that is about to occur. ** ^(The fourth parameter to the preupdate callback is the name of the ** database within the database connection that is being modified. This ** will be "main" for the main database or "temp" for TEMP tables or ** the name given after the AS keyword in the [ATTACH] statement for attached ** databases.)^ ** ^The fifth parameter to the preupdate callback is the name of the ** table that is being modified. ** ** For an UPDATE or DELETE operation on a [rowid table], the sixth ** parameter passed to the preupdate callback is the initial [rowid] of the ** row being modified or deleted. For an INSERT operation on a rowid table, ** or any operation on a WITHOUT ROWID table, the value of the sixth ** parameter is undefined. For an INSERT or UPDATE on a rowid table the ** seventh parameter is the final rowid value of the row being inserted ** or updated. The value of the seventh parameter passed to the callback ** function is not defined for operations on WITHOUT ROWID tables, or for ** DELETE operations on rowid tables. ** ** The [sqlite3_preupdate_old()], [sqlite3_preupdate_new()], ** [sqlite3_preupdate_count()], and [sqlite3_preupdate_depth()] interfaces ** provide additional information about a preupdate event. These routines ** may only be called from within a preupdate callback. Invoking any of ** these routines from outside of a preupdate callback or with a ** [database connection] pointer that is different from the one supplied ** to the preupdate callback results in undefined and probably undesirable ** behavior. ** ** ^The [sqlite3_preupdate_count(D)] interface returns the number of columns ** in the row that is being inserted, updated, or deleted. ** ** ^The [sqlite3_preupdate_old(D,N,P)] interface writes into P a pointer to ** a [protected sqlite3_value] that contains the value of the Nth column of ** the table row before it is updated. The N parameter must be between 0 ** and one less than the number of columns or the behavior will be ** undefined. This must only be used within SQLITE_UPDATE and SQLITE_DELETE ** preupdate callbacks; if it is used by an SQLITE_INSERT callback then the ** behavior is undefined. The [sqlite3_value] that P points to ** will be destroyed when the preupdate callback returns. ** ** ^The [sqlite3_preupdate_new(D,N,P)] interface writes into P a pointer to ** a [protected sqlite3_value] that contains the value of the Nth column of ** the table row after it is updated. The N parameter must be between 0 ** and one less than the number of columns or the behavior will be ** undefined. This must only be used within SQLITE_INSERT and SQLITE_UPDATE ** preupdate callbacks; if it is used by an SQLITE_DELETE callback then the ** behavior is undefined. The [sqlite3_value] that P points to ** will be destroyed when the preupdate callback returns. ** ** ^The [sqlite3_preupdate_depth(D)] interface returns 0 if the preupdate ** callback was invoked as a result of a direct insert, update, or delete ** operation; or 1 for inserts, updates, or deletes invoked by top-level ** triggers; or 2 for changes resulting from triggers called by top-level ** triggers; and so forth. ** ** When the [sqlite3_blob_write()] API is used to update a blob column, ** the pre-update hook is invoked with SQLITE_DELETE. This is because the ** in this case the new values are not available. In this case, when a ** callback made with op==SQLITE_DELETE is actuall a write using the ** sqlite3_blob_write() API, the [sqlite3_preupdate_blobwrite()] returns ** the index of the column being written. In other cases, where the ** pre-update hook is being invoked for some other reason, including a ** regular DELETE, sqlite3_preupdate_blobwrite() returns -1. ** ** See also: [sqlite3_update_hook()] */ #if defined(SQLITE_ENABLE_PREUPDATE_HOOK) SQLITE_API void *sqlite3_preupdate_hook( sqlite3 *db, void(*xPreUpdate)( void *pCtx, /* Copy of third arg to preupdate_hook() */ sqlite3 *db, /* Database handle */ int op, /* SQLITE_UPDATE, DELETE or INSERT */ char const *zDb, /* Database name */ char const *zName, /* Table name */ sqlite3_int64 iKey1, /* Rowid of row about to be deleted/updated */ sqlite3_int64 iKey2 /* New rowid value (for a rowid UPDATE) */ ), void* ); SQLITE_API int sqlite3_preupdate_old(sqlite3 *, int, sqlite3_value **); SQLITE_API int sqlite3_preupdate_count(sqlite3 *); SQLITE_API int sqlite3_preupdate_depth(sqlite3 *); SQLITE_API int sqlite3_preupdate_new(sqlite3 *, int, sqlite3_value **); SQLITE_API int sqlite3_preupdate_blobwrite(sqlite3 *); #endif /* ** CAPI3REF: Low-level system error code ** METHOD: sqlite3 ** ** ^Attempt to return the underlying operating system error code or error ** number that caused the most recent I/O error or failure to open a file. ** The return value is OS-dependent. For example, on unix systems, after ** [sqlite3_open_v2()] returns [SQLITE_CANTOPEN], this interface could be ** called to get back the underlying "errno" that caused the problem, such ** as ENOSPC, EAUTH, EISDIR, and so forth. */ SQLITE_API int sqlite3_system_errno(sqlite3*); /* ** CAPI3REF: Database Snapshot ** KEYWORDS: {snapshot} {sqlite3_snapshot} ** ** An instance of the snapshot object records the state of a [WAL mode] ** database for some specific point in history. ** ** In [WAL mode], multiple [database connections] that are open on the ** same database file can each be reading a different historical version ** of the database file. When a [database connection] begins a read ** transaction, that connection sees an unchanging copy of the database ** as it existed for the point in time when the transaction first started. ** Subsequent changes to the database from other connections are not seen ** by the reader until a new read transaction is started. ** ** The sqlite3_snapshot object records state information about an historical ** version of the database file so that it is possible to later open a new read ** transaction that sees that historical version of the database rather than ** the most recent version. */ typedef struct sqlite3_snapshot { unsigned char hidden[48]; } sqlite3_snapshot; /* ** CAPI3REF: Record A Database Snapshot ** CONSTRUCTOR: sqlite3_snapshot ** ** ^The [sqlite3_snapshot_get(D,S,P)] interface attempts to make a ** new [sqlite3_snapshot] object that records the current state of ** schema S in database connection D. ^On success, the ** [sqlite3_snapshot_get(D,S,P)] interface writes a pointer to the newly ** created [sqlite3_snapshot] object into *P and returns SQLITE_OK. ** If there is not already a read-transaction open on schema S when ** this function is called, one is opened automatically. ** ** The following must be true for this function to succeed. If any of ** the following statements are false when sqlite3_snapshot_get() is ** called, SQLITE_ERROR is returned. The final value of *P is undefined ** in this case. ** **
      **
    • The database handle must not be in [autocommit mode]. ** **
    • Schema S of [database connection] D must be a [WAL mode] database. ** **
    • There must not be a write transaction open on schema S of database ** connection D. ** **
    • One or more transactions must have been written to the current wal ** file since it was created on disk (by any connection). This means ** that a snapshot cannot be taken on a wal mode database with no wal ** file immediately after it is first opened. At least one transaction ** must be written to it first. **
    ** ** This function may also return SQLITE_NOMEM. If it is called with the ** database handle in autocommit mode but fails for some other reason, ** whether or not a read transaction is opened on schema S is undefined. ** ** The [sqlite3_snapshot] object returned from a successful call to ** [sqlite3_snapshot_get()] must be freed using [sqlite3_snapshot_free()] ** to avoid a memory leak. ** ** The [sqlite3_snapshot_get()] interface is only available when the ** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_get( sqlite3 *db, const char *zSchema, sqlite3_snapshot **ppSnapshot ); /* ** CAPI3REF: Start a read transaction on an historical snapshot ** METHOD: sqlite3_snapshot ** ** ^The [sqlite3_snapshot_open(D,S,P)] interface either starts a new read ** transaction or upgrades an existing one for schema S of ** [database connection] D such that the read transaction refers to ** historical [snapshot] P, rather than the most recent change to the ** database. ^The [sqlite3_snapshot_open()] interface returns SQLITE_OK ** on success or an appropriate [error code] if it fails. ** ** ^In order to succeed, the database connection must not be in ** [autocommit mode] when [sqlite3_snapshot_open(D,S,P)] is called. If there ** is already a read transaction open on schema S, then the database handle ** must have no active statements (SELECT statements that have been passed ** to sqlite3_step() but not sqlite3_reset() or sqlite3_finalize()). ** SQLITE_ERROR is returned if either of these conditions is violated, or ** if schema S does not exist, or if the snapshot object is invalid. ** ** ^A call to sqlite3_snapshot_open() will fail to open if the specified ** snapshot has been overwritten by a [checkpoint]. In this case ** SQLITE_ERROR_SNAPSHOT is returned. ** ** If there is already a read transaction open when this function is ** invoked, then the same read transaction remains open (on the same ** database snapshot) if SQLITE_ERROR, SQLITE_BUSY or SQLITE_ERROR_SNAPSHOT ** is returned. If another error code - for example SQLITE_PROTOCOL or an ** SQLITE_IOERR error code - is returned, then the final state of the ** read transaction is undefined. If SQLITE_OK is returned, then the ** read transaction is now open on database snapshot P. ** ** ^(A call to [sqlite3_snapshot_open(D,S,P)] will fail if the ** database connection D does not know that the database file for ** schema S is in [WAL mode]. A database connection might not know ** that the database file is in [WAL mode] if there has been no prior ** I/O on that database connection, or if the database entered [WAL mode] ** after the most recent I/O on the database connection.)^ ** (Hint: Run "[PRAGMA application_id]" against a newly opened ** database connection in order to make it ready to use snapshots.) ** ** The [sqlite3_snapshot_open()] interface is only available when the ** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_open( sqlite3 *db, const char *zSchema, sqlite3_snapshot *pSnapshot ); /* ** CAPI3REF: Destroy a snapshot ** DESTRUCTOR: sqlite3_snapshot ** ** ^The [sqlite3_snapshot_free(P)] interface destroys [sqlite3_snapshot] P. ** The application must eventually free every [sqlite3_snapshot] object ** using this routine to avoid a memory leak. ** ** The [sqlite3_snapshot_free()] interface is only available when the ** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. */ SQLITE_API SQLITE_EXPERIMENTAL void sqlite3_snapshot_free(sqlite3_snapshot*); /* ** CAPI3REF: Compare the ages of two snapshot handles. ** METHOD: sqlite3_snapshot ** ** The sqlite3_snapshot_cmp(P1, P2) interface is used to compare the ages ** of two valid snapshot handles. ** ** If the two snapshot handles are not associated with the same database ** file, the result of the comparison is undefined. ** ** Additionally, the result of the comparison is only valid if both of the ** snapshot handles were obtained by calling sqlite3_snapshot_get() since the ** last time the wal file was deleted. The wal file is deleted when the ** database is changed back to rollback mode or when the number of database ** clients drops to zero. If either snapshot handle was obtained before the ** wal file was last deleted, the value returned by this function ** is undefined. ** ** Otherwise, this API returns a negative value if P1 refers to an older ** snapshot than P2, zero if the two handles refer to the same database ** snapshot, and a positive value if P1 is a newer snapshot than P2. ** ** This interface is only available if SQLite is compiled with the ** [SQLITE_ENABLE_SNAPSHOT] option. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_cmp( sqlite3_snapshot *p1, sqlite3_snapshot *p2 ); /* ** CAPI3REF: Recover snapshots from a wal file ** METHOD: sqlite3_snapshot ** ** If a [WAL file] remains on disk after all database connections close ** (either through the use of the [SQLITE_FCNTL_PERSIST_WAL] [file control] ** or because the last process to have the database opened exited without ** calling [sqlite3_close()]) and a new connection is subsequently opened ** on that database and [WAL file], the [sqlite3_snapshot_open()] interface ** will only be able to open the last transaction added to the WAL file ** even though the WAL file contains other valid transactions. ** ** This function attempts to scan the WAL file associated with database zDb ** of database handle db and make all valid snapshots available to ** sqlite3_snapshot_open(). It is an error if there is already a read ** transaction open on the database, or if the database is not a WAL mode ** database. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. ** ** This interface is only available if SQLite is compiled with the ** [SQLITE_ENABLE_SNAPSHOT] option. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_recover(sqlite3 *db, const char *zDb); /* ** CAPI3REF: Serialize a database ** ** The sqlite3_serialize(D,S,P,F) interface returns a pointer to memory ** that is a serialization of the S database on [database connection] D. ** If P is not a NULL pointer, then the size of the database in bytes ** is written into *P. ** ** For an ordinary on-disk database file, the serialization is just a ** copy of the disk file. For an in-memory database or a "TEMP" database, ** the serialization is the same sequence of bytes which would be written ** to disk if that database where backed up to disk. ** ** The usual case is that sqlite3_serialize() copies the serialization of ** the database into memory obtained from [sqlite3_malloc64()] and returns ** a pointer to that memory. The caller is responsible for freeing the ** returned value to avoid a memory leak. However, if the F argument ** contains the SQLITE_SERIALIZE_NOCOPY bit, then no memory allocations ** are made, and the sqlite3_serialize() function will return a pointer ** to the contiguous memory representation of the database that SQLite ** is currently using for that database, or NULL if the no such contiguous ** memory representation of the database exists. A contiguous memory ** representation of the database will usually only exist if there has ** been a prior call to [sqlite3_deserialize(D,S,...)] with the same ** values of D and S. ** The size of the database is written into *P even if the ** SQLITE_SERIALIZE_NOCOPY bit is set but no contiguous copy ** of the database exists. ** ** A call to sqlite3_serialize(D,S,P,F) might return NULL even if the ** SQLITE_SERIALIZE_NOCOPY bit is omitted from argument F if a memory ** allocation error occurs. ** ** This interface is omitted if SQLite is compiled with the ** [SQLITE_OMIT_DESERIALIZE] option. */ SQLITE_API unsigned char *sqlite3_serialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */ sqlite3_int64 *piSize, /* Write size of the DB here, if not NULL */ unsigned int mFlags /* Zero or more SQLITE_SERIALIZE_* flags */ ); /* ** CAPI3REF: Flags for sqlite3_serialize ** ** Zero or more of the following constants can be OR-ed together for ** the F argument to [sqlite3_serialize(D,S,P,F)]. ** ** SQLITE_SERIALIZE_NOCOPY means that [sqlite3_serialize()] will return ** a pointer to contiguous in-memory database that it is currently using, ** without making a copy of the database. If SQLite is not currently using ** a contiguous in-memory database, then this option causes ** [sqlite3_serialize()] to return a NULL pointer. SQLite will only be ** using a contiguous in-memory database if it has been initialized by a ** prior call to [sqlite3_deserialize()]. */ #define SQLITE_SERIALIZE_NOCOPY 0x001 /* Do no memory allocations */ /* ** CAPI3REF: Deserialize a database ** ** The sqlite3_deserialize(D,S,P,N,M,F) interface causes the ** [database connection] D to disconnect from database S and then ** reopen S as an in-memory database based on the serialization contained ** in P. The serialized database P is N bytes in size. M is the size of ** the buffer P, which might be larger than N. If M is larger than N, and ** the SQLITE_DESERIALIZE_READONLY bit is not set in F, then SQLite is ** permitted to add content to the in-memory database as long as the total ** size does not exceed M bytes. ** ** If the SQLITE_DESERIALIZE_FREEONCLOSE bit is set in F, then SQLite will ** invoke sqlite3_free() on the serialization buffer when the database ** connection closes. If the SQLITE_DESERIALIZE_RESIZEABLE bit is set, then ** SQLite will try to increase the buffer size using sqlite3_realloc64() ** if writes on the database cause it to grow larger than M bytes. ** ** The sqlite3_deserialize() interface will fail with SQLITE_BUSY if the ** database is currently in a read transaction or is involved in a backup ** operation. ** ** It is not possible to deserialized into the TEMP database. If the ** S argument to sqlite3_deserialize(D,S,P,N,M,F) is "temp" then the ** function returns SQLITE_ERROR. ** ** If sqlite3_deserialize(D,S,P,N,M,F) fails for any reason and if the ** SQLITE_DESERIALIZE_FREEONCLOSE bit is set in argument F, then ** [sqlite3_free()] is invoked on argument P prior to returning. ** ** This interface is omitted if SQLite is compiled with the ** [SQLITE_OMIT_DESERIALIZE] option. */ SQLITE_API int sqlite3_deserialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which DB to reopen with the deserialization */ unsigned char *pData, /* The serialized database content */ sqlite3_int64 szDb, /* Number bytes in the deserialization */ sqlite3_int64 szBuf, /* Total size of buffer pData[] */ unsigned mFlags /* Zero or more SQLITE_DESERIALIZE_* flags */ ); /* ** CAPI3REF: Flags for sqlite3_deserialize() ** ** The following are allowed values for 6th argument (the F argument) to ** the [sqlite3_deserialize(D,S,P,N,M,F)] interface. ** ** The SQLITE_DESERIALIZE_FREEONCLOSE means that the database serialization ** in the P argument is held in memory obtained from [sqlite3_malloc64()] ** and that SQLite should take ownership of this memory and automatically ** free it when it has finished using it. Without this flag, the caller ** is responsible for freeing any dynamically allocated memory. ** ** The SQLITE_DESERIALIZE_RESIZEABLE flag means that SQLite is allowed to ** grow the size of the database using calls to [sqlite3_realloc64()]. This ** flag should only be used if SQLITE_DESERIALIZE_FREEONCLOSE is also used. ** Without this flag, the deserialized database cannot increase in size beyond ** the number of bytes specified by the M parameter. ** ** The SQLITE_DESERIALIZE_READONLY flag means that the deserialized database ** should be treated as read-only. */ #define SQLITE_DESERIALIZE_FREEONCLOSE 1 /* Call sqlite3_free() on close */ #define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */ #define SQLITE_DESERIALIZE_READONLY 4 /* Database is read-only */ /* ** Undo the hack that converts floating point types to integer for ** builds on processors without floating point support. */ #ifdef SQLITE_OMIT_FLOATING_POINT # undef double #endif #if 0 } /* End of the 'extern "C"' block */ #endif #endif /* SQLITE3_H */ /******** Begin file sqlite3rtree.h *********/ /* ** 2010 August 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* */ #ifndef _SQLITE3RTREE_H_ #define _SQLITE3RTREE_H_ #if 0 extern "C" { #endif typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry; typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; /* The double-precision datatype used by RTree depends on the ** SQLITE_RTREE_INT_ONLY compile-time option. */ #ifdef SQLITE_RTREE_INT_ONLY typedef sqlite3_int64 sqlite3_rtree_dbl; #else typedef double sqlite3_rtree_dbl; #endif /* ** Register a geometry callback named zGeom that can be used as part of an ** R-Tree geometry query as follows: ** ** SELECT ... FROM WHERE MATCH $zGeom(... params ...) */ SQLITE_API int sqlite3_rtree_geometry_callback( sqlite3 *db, const char *zGeom, int (*xGeom)(sqlite3_rtree_geometry*, int, sqlite3_rtree_dbl*,int*), void *pContext ); /* ** A pointer to a structure of the following type is passed as the first ** argument to callbacks registered using rtree_geometry_callback(). */ struct sqlite3_rtree_geometry { void *pContext; /* Copy of pContext passed to s_r_g_c() */ int nParam; /* Size of array aParam[] */ sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */ void *pUser; /* Callback implementation user data */ void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ }; /* ** Register a 2nd-generation geometry callback named zScore that can be ** used as part of an R-Tree geometry query as follows: ** ** SELECT ... FROM WHERE MATCH $zQueryFunc(... params ...) */ SQLITE_API int sqlite3_rtree_query_callback( sqlite3 *db, const char *zQueryFunc, int (*xQueryFunc)(sqlite3_rtree_query_info*), void *pContext, void (*xDestructor)(void*) ); /* ** A pointer to a structure of the following type is passed as the ** argument to scored geometry callback registered using ** sqlite3_rtree_query_callback(). ** ** Note that the first 5 fields of this structure are identical to ** sqlite3_rtree_geometry. This structure is a subclass of ** sqlite3_rtree_geometry. */ struct sqlite3_rtree_query_info { void *pContext; /* pContext from when function registered */ int nParam; /* Number of function parameters */ sqlite3_rtree_dbl *aParam; /* value of function parameters */ void *pUser; /* callback can use this, if desired */ void (*xDelUser)(void*); /* function to free pUser */ sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */ unsigned int *anQueue; /* Number of pending entries in the queue */ int nCoord; /* Number of coordinates */ int iLevel; /* Level of current node or entry */ int mxLevel; /* The largest iLevel value in the tree */ sqlite3_int64 iRowid; /* Rowid for current entry */ sqlite3_rtree_dbl rParentScore; /* Score of parent node */ int eParentWithin; /* Visibility of parent node */ int eWithin; /* OUT: Visibility */ sqlite3_rtree_dbl rScore; /* OUT: Write the score here */ /* The following fields are only available in 3.8.11 and later */ sqlite3_value **apSqlParam; /* Original SQL values of parameters */ }; /* ** Allowed values for sqlite3_rtree_query.eWithin and .eParentWithin. */ #define NOT_WITHIN 0 /* Object completely outside of query region */ #define PARTLY_WITHIN 1 /* Object partially overlaps query region */ #define FULLY_WITHIN 2 /* Object fully contained within query region */ #if 0 } /* end of the 'extern "C"' block */ #endif #endif /* ifndef _SQLITE3RTREE_H_ */ /******** End of sqlite3rtree.h *********/ /******** Begin file sqlite3session.h *********/ #if !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) #define __SQLITESESSION_H_ 1 /* ** Make sure we can call this stuff from C++. */ #if 0 extern "C" { #endif /* ** CAPI3REF: Session Object Handle ** ** An instance of this object is a [session] that can be used to ** record changes to a database. */ typedef struct sqlite3_session sqlite3_session; /* ** CAPI3REF: Changeset Iterator Handle ** ** An instance of this object acts as a cursor for iterating ** over the elements of a [changeset] or [patchset]. */ typedef struct sqlite3_changeset_iter sqlite3_changeset_iter; /* ** CAPI3REF: Create A New Session Object ** CONSTRUCTOR: sqlite3_session ** ** Create a new session object attached to database handle db. If successful, ** a pointer to the new object is written to *ppSession and SQLITE_OK is ** returned. If an error occurs, *ppSession is set to NULL and an SQLite ** error code (e.g. SQLITE_NOMEM) is returned. ** ** It is possible to create multiple session objects attached to a single ** database handle. ** ** Session objects created using this function should be deleted using the ** [sqlite3session_delete()] function before the database handle that they ** are attached to is itself closed. If the database handle is closed before ** the session object is deleted, then the results of calling any session ** module function, including [sqlite3session_delete()] on the session object ** are undefined. ** ** Because the session module uses the [sqlite3_preupdate_hook()] API, it ** is not possible for an application to register a pre-update hook on a ** database handle that has one or more session objects attached. Nor is ** it possible to create a session object attached to a database handle for ** which a pre-update hook is already defined. The results of attempting ** either of these things are undefined. ** ** The session object will be used to create changesets for tables in ** database zDb, where zDb is either "main", or "temp", or the name of an ** attached database. It is not an error if database zDb is not attached ** to the database when the session object is created. */ SQLITE_API int sqlite3session_create( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of db (e.g. "main") */ sqlite3_session **ppSession /* OUT: New session object */ ); /* ** CAPI3REF: Delete A Session Object ** DESTRUCTOR: sqlite3_session ** ** Delete a session object previously allocated using ** [sqlite3session_create()]. Once a session object has been deleted, the ** results of attempting to use pSession with any other session module ** function are undefined. ** ** Session objects must be deleted before the database handle to which they ** are attached is closed. Refer to the documentation for ** [sqlite3session_create()] for details. */ SQLITE_API void sqlite3session_delete(sqlite3_session *pSession); /* ** CAPIREF: Conigure a Session Object ** METHOD: sqlite3_session ** ** This method is used to configure a session object after it has been ** created. At present the only valid value for the second parameter is ** [SQLITE_SESSION_OBJCONFIG_SIZE]. ** ** Arguments for sqlite3session_object_config() ** ** The following values may passed as the the 4th parameter to ** sqlite3session_object_config(). ** **
    SQLITE_SESSION_OBJCONFIG_SIZE
    ** This option is used to set, clear or query the flag that enables ** the [sqlite3session_changeset_size()] API. Because it imposes some ** computational overhead, this API is disabled by default. Argument ** pArg must point to a value of type (int). If the value is initially ** 0, then the sqlite3session_changeset_size() API is disabled. If it ** is greater than 0, then the same API is enabled. Or, if the initial ** value is less than zero, no change is made. In all cases the (int) ** variable is set to 1 if the sqlite3session_changeset_size() API is ** enabled following the current call, or 0 otherwise. ** ** It is an error (SQLITE_MISUSE) to attempt to modify this setting after ** the first table has been attached to the session object. */ SQLITE_API int sqlite3session_object_config(sqlite3_session*, int op, void *pArg); /* */ #define SQLITE_SESSION_OBJCONFIG_SIZE 1 /* ** CAPI3REF: Enable Or Disable A Session Object ** METHOD: sqlite3_session ** ** Enable or disable the recording of changes by a session object. When ** enabled, a session object records changes made to the database. When ** disabled - it does not. A newly created session object is enabled. ** Refer to the documentation for [sqlite3session_changeset()] for further ** details regarding how enabling and disabling a session object affects ** the eventual changesets. ** ** Passing zero to this function disables the session. Passing a value ** greater than zero enables it. Passing a value less than zero is a ** no-op, and may be used to query the current state of the session. ** ** The return value indicates the final state of the session object: 0 if ** the session is disabled, or 1 if it is enabled. */ SQLITE_API int sqlite3session_enable(sqlite3_session *pSession, int bEnable); /* ** CAPI3REF: Set Or Clear the Indirect Change Flag ** METHOD: sqlite3_session ** ** Each change recorded by a session object is marked as either direct or ** indirect. A change is marked as indirect if either: ** **
      **
    • The session object "indirect" flag is set when the change is ** made, or **
    • The change is made by an SQL trigger or foreign key action ** instead of directly as a result of a users SQL statement. **
    ** ** If a single row is affected by more than one operation within a session, ** then the change is considered indirect if all operations meet the criteria ** for an indirect change above, or direct otherwise. ** ** This function is used to set, clear or query the session object indirect ** flag. If the second argument passed to this function is zero, then the ** indirect flag is cleared. If it is greater than zero, the indirect flag ** is set. Passing a value less than zero does not modify the current value ** of the indirect flag, and may be used to query the current state of the ** indirect flag for the specified session object. ** ** The return value indicates the final state of the indirect flag: 0 if ** it is clear, or 1 if it is set. */ SQLITE_API int sqlite3session_indirect(sqlite3_session *pSession, int bIndirect); /* ** CAPI3REF: Attach A Table To A Session Object ** METHOD: sqlite3_session ** ** If argument zTab is not NULL, then it is the name of a table to attach ** to the session object passed as the first argument. All subsequent changes ** made to the table while the session object is enabled will be recorded. See ** documentation for [sqlite3session_changeset()] for further details. ** ** Or, if argument zTab is NULL, then changes are recorded for all tables ** in the database. If additional tables are added to the database (by ** executing "CREATE TABLE" statements) after this call is made, changes for ** the new tables are also recorded. ** ** Changes can only be recorded for tables that have a PRIMARY KEY explicitly ** defined as part of their CREATE TABLE statement. It does not matter if the ** PRIMARY KEY is an "INTEGER PRIMARY KEY" (rowid alias) or not. The PRIMARY ** KEY may consist of a single column, or may be a composite key. ** ** It is not an error if the named table does not exist in the database. Nor ** is it an error if the named table does not have a PRIMARY KEY. However, ** no changes will be recorded in either of these scenarios. ** ** Changes are not recorded for individual rows that have NULL values stored ** in one or more of their PRIMARY KEY columns. ** ** SQLITE_OK is returned if the call completes without error. Or, if an error ** occurs, an SQLite error code (e.g. SQLITE_NOMEM) is returned. ** **

    Special sqlite_stat1 Handling

    ** ** As of SQLite version 3.22.0, the "sqlite_stat1" table is an exception to ** some of the rules above. In SQLite, the schema of sqlite_stat1 is: **
    **        CREATE TABLE sqlite_stat1(tbl,idx,stat)
    **  
    ** ** Even though sqlite_stat1 does not have a PRIMARY KEY, changes are ** recorded for it as if the PRIMARY KEY is (tbl,idx). Additionally, changes ** are recorded for rows for which (idx IS NULL) is true. However, for such ** rows a zero-length blob (SQL value X'') is stored in the changeset or ** patchset instead of a NULL value. This allows such changesets to be ** manipulated by legacy implementations of sqlite3changeset_invert(), ** concat() and similar. ** ** The sqlite3changeset_apply() function automatically converts the ** zero-length blob back to a NULL value when updating the sqlite_stat1 ** table. However, if the application calls sqlite3changeset_new(), ** sqlite3changeset_old() or sqlite3changeset_conflict on a changeset ** iterator directly (including on a changeset iterator passed to a ** conflict-handler callback) then the X'' value is returned. The application ** must translate X'' to NULL itself if required. ** ** Legacy (older than 3.22.0) versions of the sessions module cannot capture ** changes made to the sqlite_stat1 table. Legacy versions of the ** sqlite3changeset_apply() function silently ignore any modifications to the ** sqlite_stat1 table that are part of a changeset or patchset. */ SQLITE_API int sqlite3session_attach( sqlite3_session *pSession, /* Session object */ const char *zTab /* Table name */ ); /* ** CAPI3REF: Set a table filter on a Session Object. ** METHOD: sqlite3_session ** ** The second argument (xFilter) is the "filter callback". For changes to rows ** in tables that are not attached to the Session object, the filter is called ** to determine whether changes to the table's rows should be tracked or not. ** If xFilter returns 0, changes are not tracked. Note that once a table is ** attached, xFilter will not be called again. */ SQLITE_API void sqlite3session_table_filter( sqlite3_session *pSession, /* Session object */ int(*xFilter)( void *pCtx, /* Copy of third arg to _filter_table() */ const char *zTab /* Table name */ ), void *pCtx /* First argument passed to xFilter */ ); /* ** CAPI3REF: Generate A Changeset From A Session Object ** METHOD: sqlite3_session ** ** Obtain a changeset containing changes to the tables attached to the ** session object passed as the first argument. If successful, ** set *ppChangeset to point to a buffer containing the changeset ** and *pnChangeset to the size of the changeset in bytes before returning ** SQLITE_OK. If an error occurs, set both *ppChangeset and *pnChangeset to ** zero and return an SQLite error code. ** ** A changeset consists of zero or more INSERT, UPDATE and/or DELETE changes, ** each representing a change to a single row of an attached table. An INSERT ** change contains the values of each field of a new database row. A DELETE ** contains the original values of each field of a deleted database row. An ** UPDATE change contains the original values of each field of an updated ** database row along with the updated values for each updated non-primary-key ** column. It is not possible for an UPDATE change to represent a change that ** modifies the values of primary key columns. If such a change is made, it ** is represented in a changeset as a DELETE followed by an INSERT. ** ** Changes are not recorded for rows that have NULL values stored in one or ** more of their PRIMARY KEY columns. If such a row is inserted or deleted, ** no corresponding change is present in the changesets returned by this ** function. If an existing row with one or more NULL values stored in ** PRIMARY KEY columns is updated so that all PRIMARY KEY columns are non-NULL, ** only an INSERT is appears in the changeset. Similarly, if an existing row ** with non-NULL PRIMARY KEY values is updated so that one or more of its ** PRIMARY KEY columns are set to NULL, the resulting changeset contains a ** DELETE change only. ** ** The contents of a changeset may be traversed using an iterator created ** using the [sqlite3changeset_start()] API. A changeset may be applied to ** a database with a compatible schema using the [sqlite3changeset_apply()] ** API. ** ** Within a changeset generated by this function, all changes related to a ** single table are grouped together. In other words, when iterating through ** a changeset or when applying a changeset to a database, all changes related ** to a single table are processed before moving on to the next table. Tables ** are sorted in the same order in which they were attached (or auto-attached) ** to the sqlite3_session object. The order in which the changes related to ** a single table are stored is undefined. ** ** Following a successful call to this function, it is the responsibility of ** the caller to eventually free the buffer that *ppChangeset points to using ** [sqlite3_free()]. ** **

    Changeset Generation

    ** ** Once a table has been attached to a session object, the session object ** records the primary key values of all new rows inserted into the table. ** It also records the original primary key and other column values of any ** deleted or updated rows. For each unique primary key value, data is only ** recorded once - the first time a row with said primary key is inserted, ** updated or deleted in the lifetime of the session. ** ** There is one exception to the previous paragraph: when a row is inserted, ** updated or deleted, if one or more of its primary key columns contain a ** NULL value, no record of the change is made. ** ** The session object therefore accumulates two types of records - those ** that consist of primary key values only (created when the user inserts ** a new record) and those that consist of the primary key values and the ** original values of other table columns (created when the users deletes ** or updates a record). ** ** When this function is called, the requested changeset is created using ** both the accumulated records and the current contents of the database ** file. Specifically: ** **
      **
    • For each record generated by an insert, the database is queried ** for a row with a matching primary key. If one is found, an INSERT ** change is added to the changeset. If no such row is found, no change ** is added to the changeset. ** **
    • For each record generated by an update or delete, the database is ** queried for a row with a matching primary key. If such a row is ** found and one or more of the non-primary key fields have been ** modified from their original values, an UPDATE change is added to ** the changeset. Or, if no such row is found in the table, a DELETE ** change is added to the changeset. If there is a row with a matching ** primary key in the database, but all fields contain their original ** values, no change is added to the changeset. **
    ** ** This means, amongst other things, that if a row is inserted and then later ** deleted while a session object is active, neither the insert nor the delete ** will be present in the changeset. Or if a row is deleted and then later a ** row with the same primary key values inserted while a session object is ** active, the resulting changeset will contain an UPDATE change instead of ** a DELETE and an INSERT. ** ** When a session object is disabled (see the [sqlite3session_enable()] API), ** it does not accumulate records when rows are inserted, updated or deleted. ** This may appear to have some counter-intuitive effects if a single row ** is written to more than once during a session. For example, if a row ** is inserted while a session object is enabled, then later deleted while ** the same session object is disabled, no INSERT record will appear in the ** changeset, even though the delete took place while the session was disabled. ** Or, if one field of a row is updated while a session is disabled, and ** another field of the same row is updated while the session is enabled, the ** resulting changeset will contain an UPDATE change that updates both fields. */ SQLITE_API int sqlite3session_changeset( sqlite3_session *pSession, /* Session object */ int *pnChangeset, /* OUT: Size of buffer at *ppChangeset */ void **ppChangeset /* OUT: Buffer containing changeset */ ); /* ** CAPI3REF: Return An Upper-limit For The Size Of The Changeset ** METHOD: sqlite3_session ** ** By default, this function always returns 0. For it to return ** a useful result, the sqlite3_session object must have been configured ** to enable this API using sqlite3session_object_config() with the ** SQLITE_SESSION_OBJCONFIG_SIZE verb. ** ** When enabled, this function returns an upper limit, in bytes, for the size ** of the changeset that might be produced if sqlite3session_changeset() were ** called. The final changeset size might be equal to or smaller than the ** size in bytes returned by this function. */ SQLITE_API sqlite3_int64 sqlite3session_changeset_size(sqlite3_session *pSession); /* ** CAPI3REF: Load The Difference Between Tables Into A Session ** METHOD: sqlite3_session ** ** If it is not already attached to the session object passed as the first ** argument, this function attaches table zTbl in the same manner as the ** [sqlite3session_attach()] function. If zTbl does not exist, or if it ** does not have a primary key, this function is a no-op (but does not return ** an error). ** ** Argument zFromDb must be the name of a database ("main", "temp" etc.) ** attached to the same database handle as the session object that contains ** a table compatible with the table attached to the session by this function. ** A table is considered compatible if it: ** **
      **
    • Has the same name, **
    • Has the same set of columns declared in the same order, and **
    • Has the same PRIMARY KEY definition. **
    ** ** If the tables are not compatible, SQLITE_SCHEMA is returned. If the tables ** are compatible but do not have any PRIMARY KEY columns, it is not an error ** but no changes are added to the session object. As with other session ** APIs, tables without PRIMARY KEYs are simply ignored. ** ** This function adds a set of changes to the session object that could be ** used to update the table in database zFrom (call this the "from-table") ** so that its content is the same as the table attached to the session ** object (call this the "to-table"). Specifically: ** **
      **
    • For each row (primary key) that exists in the to-table but not in ** the from-table, an INSERT record is added to the session object. ** **
    • For each row (primary key) that exists in the to-table but not in ** the from-table, a DELETE record is added to the session object. ** **
    • For each row (primary key) that exists in both tables, but features ** different non-PK values in each, an UPDATE record is added to the ** session. **
    ** ** To clarify, if this function is called and then a changeset constructed ** using [sqlite3session_changeset()], then after applying that changeset to ** database zFrom the contents of the two compatible tables would be ** identical. ** ** It an error if database zFrom does not exist or does not contain the ** required compatible table. ** ** If the operation is successful, SQLITE_OK is returned. Otherwise, an SQLite ** error code. In this case, if argument pzErrMsg is not NULL, *pzErrMsg ** may be set to point to a buffer containing an English language error ** message. It is the responsibility of the caller to free this buffer using ** sqlite3_free(). */ SQLITE_API int sqlite3session_diff( sqlite3_session *pSession, const char *zFromDb, const char *zTbl, char **pzErrMsg ); /* ** CAPI3REF: Generate A Patchset From A Session Object ** METHOD: sqlite3_session ** ** The differences between a patchset and a changeset are that: ** **
      **
    • DELETE records consist of the primary key fields only. The ** original values of other fields are omitted. **
    • The original values of any modified fields are omitted from ** UPDATE records. **
    ** ** A patchset blob may be used with up to date versions of all ** sqlite3changeset_xxx API functions except for sqlite3changeset_invert(), ** which returns SQLITE_CORRUPT if it is passed a patchset. Similarly, ** attempting to use a patchset blob with old versions of the ** sqlite3changeset_xxx APIs also provokes an SQLITE_CORRUPT error. ** ** Because the non-primary key "old.*" fields are omitted, no ** SQLITE_CHANGESET_DATA conflicts can be detected or reported if a patchset ** is passed to the sqlite3changeset_apply() API. Other conflict types work ** in the same way as for changesets. ** ** Changes within a patchset are ordered in the same way as for changesets ** generated by the sqlite3session_changeset() function (i.e. all changes for ** a single table are grouped together, tables appear in the order in which ** they were attached to the session object). */ SQLITE_API int sqlite3session_patchset( sqlite3_session *pSession, /* Session object */ int *pnPatchset, /* OUT: Size of buffer at *ppPatchset */ void **ppPatchset /* OUT: Buffer containing patchset */ ); /* ** CAPI3REF: Test if a changeset has recorded any changes. ** ** Return non-zero if no changes to attached tables have been recorded by ** the session object passed as the first argument. Otherwise, if one or ** more changes have been recorded, return zero. ** ** Even if this function returns zero, it is possible that calling ** [sqlite3session_changeset()] on the session handle may still return a ** changeset that contains no changes. This can happen when a row in ** an attached table is modified and then later on the original values ** are restored. However, if this function returns non-zero, then it is ** guaranteed that a call to sqlite3session_changeset() will return a ** changeset containing zero changes. */ SQLITE_API int sqlite3session_isempty(sqlite3_session *pSession); /* ** CAPI3REF: Query for the amount of heap memory used by a session object. ** ** This API returns the total amount of heap memory in bytes currently ** used by the session object passed as the only argument. */ SQLITE_API sqlite3_int64 sqlite3session_memory_used(sqlite3_session *pSession); /* ** CAPI3REF: Create An Iterator To Traverse A Changeset ** CONSTRUCTOR: sqlite3_changeset_iter ** ** Create an iterator used to iterate through the contents of a changeset. ** If successful, *pp is set to point to the iterator handle and SQLITE_OK ** is returned. Otherwise, if an error occurs, *pp is set to zero and an ** SQLite error code is returned. ** ** The following functions can be used to advance and query a changeset ** iterator created by this function: ** **
      **
    • [sqlite3changeset_next()] **
    • [sqlite3changeset_op()] **
    • [sqlite3changeset_new()] **
    • [sqlite3changeset_old()] **
    ** ** It is the responsibility of the caller to eventually destroy the iterator ** by passing it to [sqlite3changeset_finalize()]. The buffer containing the ** changeset (pChangeset) must remain valid until after the iterator is ** destroyed. ** ** Assuming the changeset blob was created by one of the ** [sqlite3session_changeset()], [sqlite3changeset_concat()] or ** [sqlite3changeset_invert()] functions, all changes within the changeset ** that apply to a single table are grouped together. This means that when ** an application iterates through a changeset using an iterator created by ** this function, all changes that relate to a single table are visited ** consecutively. There is no chance that the iterator will visit a change ** the applies to table X, then one for table Y, and then later on visit ** another change for table X. ** ** The behavior of sqlite3changeset_start_v2() and its streaming equivalent ** may be modified by passing a combination of ** [SQLITE_CHANGESETSTART_INVERT | supported flags] as the 4th parameter. ** ** Note that the sqlite3changeset_start_v2() API is still experimental ** and therefore subject to change. */ SQLITE_API int sqlite3changeset_start( sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ int nChangeset, /* Size of changeset blob in bytes */ void *pChangeset /* Pointer to blob containing changeset */ ); SQLITE_API int sqlite3changeset_start_v2( sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ int nChangeset, /* Size of changeset blob in bytes */ void *pChangeset, /* Pointer to blob containing changeset */ int flags /* SESSION_CHANGESETSTART_* flags */ ); /* ** CAPI3REF: Flags for sqlite3changeset_start_v2 ** ** The following flags may passed via the 4th parameter to ** [sqlite3changeset_start_v2] and [sqlite3changeset_start_v2_strm]: ** **
    SQLITE_CHANGESETAPPLY_INVERT
    ** Invert the changeset while iterating through it. This is equivalent to ** inverting a changeset using sqlite3changeset_invert() before applying it. ** It is an error to specify this flag with a patchset. */ #define SQLITE_CHANGESETSTART_INVERT 0x0002 /* ** CAPI3REF: Advance A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** This function may only be used with iterators created by the function ** [sqlite3changeset_start()]. If it is called on an iterator passed to ** a conflict-handler callback by [sqlite3changeset_apply()], SQLITE_MISUSE ** is returned and the call has no effect. ** ** Immediately after an iterator is created by sqlite3changeset_start(), it ** does not point to any change in the changeset. Assuming the changeset ** is not empty, the first call to this function advances the iterator to ** point to the first change in the changeset. Each subsequent call advances ** the iterator to point to the next change in the changeset (if any). If ** no error occurs and the iterator points to a valid change after a call ** to sqlite3changeset_next() has advanced it, SQLITE_ROW is returned. ** Otherwise, if all changes in the changeset have already been visited, ** SQLITE_DONE is returned. ** ** If an error occurs, an SQLite error code is returned. Possible error ** codes include SQLITE_CORRUPT (if the changeset buffer is corrupt) or ** SQLITE_NOMEM. */ SQLITE_API int sqlite3changeset_next(sqlite3_changeset_iter *pIter); /* ** CAPI3REF: Obtain The Current Operation From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** The pIter argument passed to this function may either be an iterator ** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator ** created by [sqlite3changeset_start()]. In the latter case, the most recent ** call to [sqlite3changeset_next()] must have returned [SQLITE_ROW]. If this ** is not the case, this function returns [SQLITE_MISUSE]. ** ** Arguments pOp, pnCol and pzTab may not be NULL. Upon return, three ** outputs are set through these pointers: ** ** *pOp is set to one of [SQLITE_INSERT], [SQLITE_DELETE] or [SQLITE_UPDATE], ** depending on the type of change that the iterator currently points to; ** ** *pnCol is set to the number of columns in the table affected by the change; and ** ** *pzTab is set to point to a nul-terminated utf-8 encoded string containing ** the name of the table affected by the current change. The buffer remains ** valid until either sqlite3changeset_next() is called on the iterator ** or until the conflict-handler function returns. ** ** If pbIndirect is not NULL, then *pbIndirect is set to true (1) if the change ** is an indirect change, or false (0) otherwise. See the documentation for ** [sqlite3session_indirect()] for a description of direct and indirect ** changes. ** ** If no error occurs, SQLITE_OK is returned. If an error does occur, an ** SQLite error code is returned. The values of the output variables may not ** be trusted in this case. */ SQLITE_API int sqlite3changeset_op( sqlite3_changeset_iter *pIter, /* Iterator object */ const char **pzTab, /* OUT: Pointer to table name */ int *pnCol, /* OUT: Number of columns in table */ int *pOp, /* OUT: SQLITE_INSERT, DELETE or UPDATE */ int *pbIndirect /* OUT: True for an 'indirect' change */ ); /* ** CAPI3REF: Obtain The Primary Key Definition Of A Table ** METHOD: sqlite3_changeset_iter ** ** For each modified table, a changeset includes the following: ** **
      **
    • The number of columns in the table, and **
    • Which of those columns make up the tables PRIMARY KEY. **
    ** ** This function is used to find which columns comprise the PRIMARY KEY of ** the table modified by the change that iterator pIter currently points to. ** If successful, *pabPK is set to point to an array of nCol entries, where ** nCol is the number of columns in the table. Elements of *pabPK are set to ** 0x01 if the corresponding column is part of the tables primary key, or ** 0x00 if it is not. ** ** If argument pnCol is not NULL, then *pnCol is set to the number of columns ** in the table. ** ** If this function is called when the iterator does not point to a valid ** entry, SQLITE_MISUSE is returned and the output variables zeroed. Otherwise, ** SQLITE_OK is returned and the output variables populated as described ** above. */ SQLITE_API int sqlite3changeset_pk( sqlite3_changeset_iter *pIter, /* Iterator object */ unsigned char **pabPK, /* OUT: Array of boolean - true for PK cols */ int *pnCol /* OUT: Number of entries in output array */ ); /* ** CAPI3REF: Obtain old.* Values From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** The pIter argument passed to this function may either be an iterator ** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator ** created by [sqlite3changeset_start()]. In the latter case, the most recent ** call to [sqlite3changeset_next()] must have returned SQLITE_ROW. ** Furthermore, it may only be called if the type of change that the iterator ** currently points to is either [SQLITE_DELETE] or [SQLITE_UPDATE]. Otherwise, ** this function returns [SQLITE_MISUSE] and sets *ppValue to NULL. ** ** Argument iVal must be greater than or equal to 0, and less than the number ** of columns in the table affected by the current change. Otherwise, ** [SQLITE_RANGE] is returned and *ppValue is set to NULL. ** ** If successful, this function sets *ppValue to point to a protected ** sqlite3_value object containing the iVal'th value from the vector of ** original row values stored as part of the UPDATE or DELETE change and ** returns SQLITE_OK. The name of the function comes from the fact that this ** is similar to the "old.*" columns available to update or delete triggers. ** ** If some other error occurs (e.g. an OOM condition), an SQLite error code ** is returned and *ppValue is set to NULL. */ SQLITE_API int sqlite3changeset_old( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value **ppValue /* OUT: Old value (or NULL pointer) */ ); /* ** CAPI3REF: Obtain new.* Values From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** The pIter argument passed to this function may either be an iterator ** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator ** created by [sqlite3changeset_start()]. In the latter case, the most recent ** call to [sqlite3changeset_next()] must have returned SQLITE_ROW. ** Furthermore, it may only be called if the type of change that the iterator ** currently points to is either [SQLITE_UPDATE] or [SQLITE_INSERT]. Otherwise, ** this function returns [SQLITE_MISUSE] and sets *ppValue to NULL. ** ** Argument iVal must be greater than or equal to 0, and less than the number ** of columns in the table affected by the current change. Otherwise, ** [SQLITE_RANGE] is returned and *ppValue is set to NULL. ** ** If successful, this function sets *ppValue to point to a protected ** sqlite3_value object containing the iVal'th value from the vector of ** new row values stored as part of the UPDATE or INSERT change and ** returns SQLITE_OK. If the change is an UPDATE and does not include ** a new value for the requested column, *ppValue is set to NULL and ** SQLITE_OK returned. The name of the function comes from the fact that ** this is similar to the "new.*" columns available to update or delete ** triggers. ** ** If some other error occurs (e.g. an OOM condition), an SQLite error code ** is returned and *ppValue is set to NULL. */ SQLITE_API int sqlite3changeset_new( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value **ppValue /* OUT: New value (or NULL pointer) */ ); /* ** CAPI3REF: Obtain Conflicting Row Values From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** This function should only be used with iterator objects passed to a ** conflict-handler callback by [sqlite3changeset_apply()] with either ** [SQLITE_CHANGESET_DATA] or [SQLITE_CHANGESET_CONFLICT]. If this function ** is called on any other iterator, [SQLITE_MISUSE] is returned and *ppValue ** is set to NULL. ** ** Argument iVal must be greater than or equal to 0, and less than the number ** of columns in the table affected by the current change. Otherwise, ** [SQLITE_RANGE] is returned and *ppValue is set to NULL. ** ** If successful, this function sets *ppValue to point to a protected ** sqlite3_value object containing the iVal'th value from the ** "conflicting row" associated with the current conflict-handler callback ** and returns SQLITE_OK. ** ** If some other error occurs (e.g. an OOM condition), an SQLite error code ** is returned and *ppValue is set to NULL. */ SQLITE_API int sqlite3changeset_conflict( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value **ppValue /* OUT: Value from conflicting row */ ); /* ** CAPI3REF: Determine The Number Of Foreign Key Constraint Violations ** METHOD: sqlite3_changeset_iter ** ** This function may only be called with an iterator passed to an ** SQLITE_CHANGESET_FOREIGN_KEY conflict handler callback. In this case ** it sets the output variable to the total number of known foreign key ** violations in the destination database and returns SQLITE_OK. ** ** In all other cases this function returns SQLITE_MISUSE. */ SQLITE_API int sqlite3changeset_fk_conflicts( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int *pnOut /* OUT: Number of FK violations */ ); /* ** CAPI3REF: Finalize A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** This function is used to finalize an iterator allocated with ** [sqlite3changeset_start()]. ** ** This function should only be called on iterators created using the ** [sqlite3changeset_start()] function. If an application calls this ** function with an iterator passed to a conflict-handler by ** [sqlite3changeset_apply()], [SQLITE_MISUSE] is immediately returned and the ** call has no effect. ** ** If an error was encountered within a call to an sqlite3changeset_xxx() ** function (for example an [SQLITE_CORRUPT] in [sqlite3changeset_next()] or an ** [SQLITE_NOMEM] in [sqlite3changeset_new()]) then an error code corresponding ** to that error is returned by this function. Otherwise, SQLITE_OK is ** returned. This is to allow the following pattern (pseudo-code): ** **
    **   sqlite3changeset_start();
    **   while( SQLITE_ROW==sqlite3changeset_next() ){
    **     // Do something with change.
    **   }
    **   rc = sqlite3changeset_finalize();
    **   if( rc!=SQLITE_OK ){
    **     // An error has occurred
    **   }
    ** 
    */ SQLITE_API int sqlite3changeset_finalize(sqlite3_changeset_iter *pIter); /* ** CAPI3REF: Invert A Changeset ** ** This function is used to "invert" a changeset object. Applying an inverted ** changeset to a database reverses the effects of applying the uninverted ** changeset. Specifically: ** **
      **
    • Each DELETE change is changed to an INSERT, and **
    • Each INSERT change is changed to a DELETE, and **
    • For each UPDATE change, the old.* and new.* values are exchanged. **
    ** ** This function does not change the order in which changes appear within ** the changeset. It merely reverses the sense of each individual change. ** ** If successful, a pointer to a buffer containing the inverted changeset ** is stored in *ppOut, the size of the same buffer is stored in *pnOut, and ** SQLITE_OK is returned. If an error occurs, both *pnOut and *ppOut are ** zeroed and an SQLite error code returned. ** ** It is the responsibility of the caller to eventually call sqlite3_free() ** on the *ppOut pointer to free the buffer allocation following a successful ** call to this function. ** ** WARNING/TODO: This function currently assumes that the input is a valid ** changeset. If it is not, the results are undefined. */ SQLITE_API int sqlite3changeset_invert( int nIn, const void *pIn, /* Input changeset */ int *pnOut, void **ppOut /* OUT: Inverse of input */ ); /* ** CAPI3REF: Concatenate Two Changeset Objects ** ** This function is used to concatenate two changesets, A and B, into a ** single changeset. The result is a changeset equivalent to applying ** changeset A followed by changeset B. ** ** This function combines the two input changesets using an ** sqlite3_changegroup object. Calling it produces similar results as the ** following code fragment: ** **
    **   sqlite3_changegroup *pGrp;
    **   rc = sqlite3_changegroup_new(&pGrp);
    **   if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nA, pA);
    **   if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nB, pB);
    **   if( rc==SQLITE_OK ){
    **     rc = sqlite3changegroup_output(pGrp, pnOut, ppOut);
    **   }else{
    **     *ppOut = 0;
    **     *pnOut = 0;
    **   }
    ** 
    ** ** Refer to the sqlite3_changegroup documentation below for details. */ SQLITE_API int sqlite3changeset_concat( int nA, /* Number of bytes in buffer pA */ void *pA, /* Pointer to buffer containing changeset A */ int nB, /* Number of bytes in buffer pB */ void *pB, /* Pointer to buffer containing changeset B */ int *pnOut, /* OUT: Number of bytes in output changeset */ void **ppOut /* OUT: Buffer containing output changeset */ ); /* ** CAPI3REF: Changegroup Handle ** ** A changegroup is an object used to combine two or more ** [changesets] or [patchsets] */ typedef struct sqlite3_changegroup sqlite3_changegroup; /* ** CAPI3REF: Create A New Changegroup Object ** CONSTRUCTOR: sqlite3_changegroup ** ** An sqlite3_changegroup object is used to combine two or more changesets ** (or patchsets) into a single changeset (or patchset). A single changegroup ** object may combine changesets or patchsets, but not both. The output is ** always in the same format as the input. ** ** If successful, this function returns SQLITE_OK and populates (*pp) with ** a pointer to a new sqlite3_changegroup object before returning. The caller ** should eventually free the returned object using a call to ** sqlite3changegroup_delete(). If an error occurs, an SQLite error code ** (i.e. SQLITE_NOMEM) is returned and *pp is set to NULL. ** ** The usual usage pattern for an sqlite3_changegroup object is as follows: ** **
      **
    • It is created using a call to sqlite3changegroup_new(). ** **
    • Zero or more changesets (or patchsets) are added to the object ** by calling sqlite3changegroup_add(). ** **
    • The result of combining all input changesets together is obtained ** by the application via a call to sqlite3changegroup_output(). ** **
    • The object is deleted using a call to sqlite3changegroup_delete(). **
    ** ** Any number of calls to add() and output() may be made between the calls to ** new() and delete(), and in any order. ** ** As well as the regular sqlite3changegroup_add() and ** sqlite3changegroup_output() functions, also available are the streaming ** versions sqlite3changegroup_add_strm() and sqlite3changegroup_output_strm(). */ SQLITE_API int sqlite3changegroup_new(sqlite3_changegroup **pp); /* ** CAPI3REF: Add A Changeset To A Changegroup ** METHOD: sqlite3_changegroup ** ** Add all changes within the changeset (or patchset) in buffer pData (size ** nData bytes) to the changegroup. ** ** If the buffer contains a patchset, then all prior calls to this function ** on the same changegroup object must also have specified patchsets. Or, if ** the buffer contains a changeset, so must have the earlier calls to this ** function. Otherwise, SQLITE_ERROR is returned and no changes are added ** to the changegroup. ** ** Rows within the changeset and changegroup are identified by the values in ** their PRIMARY KEY columns. A change in the changeset is considered to ** apply to the same row as a change already present in the changegroup if ** the two rows have the same primary key. ** ** Changes to rows that do not already appear in the changegroup are ** simply copied into it. Or, if both the new changeset and the changegroup ** contain changes that apply to a single row, the final contents of the ** changegroup depends on the type of each change, as follows: ** ** ** ** **
    Existing Change New Change Output Change **
    INSERT INSERT ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
    INSERT UPDATE ** The INSERT change remains in the changegroup. The values in the ** INSERT change are modified as if the row was inserted by the ** existing change and then updated according to the new change. **
    INSERT DELETE ** The existing INSERT is removed from the changegroup. The DELETE is ** not added. **
    UPDATE INSERT ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
    UPDATE UPDATE ** The existing UPDATE remains within the changegroup. It is amended ** so that the accompanying values are as if the row was updated once ** by the existing change and then again by the new change. **
    UPDATE DELETE ** The existing UPDATE is replaced by the new DELETE within the ** changegroup. **
    DELETE INSERT ** If one or more of the column values in the row inserted by the ** new change differ from those in the row deleted by the existing ** change, the existing DELETE is replaced by an UPDATE within the ** changegroup. Otherwise, if the inserted row is exactly the same ** as the deleted row, the existing DELETE is simply discarded. **
    DELETE UPDATE ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
    DELETE DELETE ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
    ** ** If the new changeset contains changes to a table that is already present ** in the changegroup, then the number of columns and the position of the ** primary key columns for the table must be consistent. If this is not the ** case, this function fails with SQLITE_SCHEMA. If the input changeset ** appears to be corrupt and the corruption is detected, SQLITE_CORRUPT is ** returned. Or, if an out-of-memory condition occurs during processing, this ** function returns SQLITE_NOMEM. In all cases, if an error occurs the state ** of the final contents of the changegroup is undefined. ** ** If no error occurs, SQLITE_OK is returned. */ SQLITE_API int sqlite3changegroup_add(sqlite3_changegroup*, int nData, void *pData); /* ** CAPI3REF: Obtain A Composite Changeset From A Changegroup ** METHOD: sqlite3_changegroup ** ** Obtain a buffer containing a changeset (or patchset) representing the ** current contents of the changegroup. If the inputs to the changegroup ** were themselves changesets, the output is a changeset. Or, if the ** inputs were patchsets, the output is also a patchset. ** ** As with the output of the sqlite3session_changeset() and ** sqlite3session_patchset() functions, all changes related to a single ** table are grouped together in the output of this function. Tables appear ** in the same order as for the very first changeset added to the changegroup. ** If the second or subsequent changesets added to the changegroup contain ** changes for tables that do not appear in the first changeset, they are ** appended onto the end of the output changeset, again in the order in ** which they are first encountered. ** ** If an error occurs, an SQLite error code is returned and the output ** variables (*pnData) and (*ppData) are set to 0. Otherwise, SQLITE_OK ** is returned and the output variables are set to the size of and a ** pointer to the output buffer, respectively. In this case it is the ** responsibility of the caller to eventually free the buffer using a ** call to sqlite3_free(). */ SQLITE_API int sqlite3changegroup_output( sqlite3_changegroup*, int *pnData, /* OUT: Size of output buffer in bytes */ void **ppData /* OUT: Pointer to output buffer */ ); /* ** CAPI3REF: Delete A Changegroup Object ** DESTRUCTOR: sqlite3_changegroup */ SQLITE_API void sqlite3changegroup_delete(sqlite3_changegroup*); /* ** CAPI3REF: Apply A Changeset To A Database ** ** Apply a changeset or patchset to a database. These functions attempt to ** update the "main" database attached to handle db with the changes found in ** the changeset passed via the second and third arguments. ** ** The fourth argument (xFilter) passed to these functions is the "filter ** callback". If it is not NULL, then for each table affected by at least one ** change in the changeset, the filter callback is invoked with ** the table name as the second argument, and a copy of the context pointer ** passed as the sixth argument as the first. If the "filter callback" ** returns zero, then no attempt is made to apply any changes to the table. ** Otherwise, if the return value is non-zero or the xFilter argument to ** is NULL, all changes related to the table are attempted. ** ** For each table that is not excluded by the filter callback, this function ** tests that the target database contains a compatible table. A table is ** considered compatible if all of the following are true: ** **
      **
    • The table has the same name as the name recorded in the ** changeset, and **
    • The table has at least as many columns as recorded in the ** changeset, and **
    • The table has primary key columns in the same position as ** recorded in the changeset. **
    ** ** If there is no compatible table, it is not an error, but none of the ** changes associated with the table are applied. A warning message is issued ** via the sqlite3_log() mechanism with the error code SQLITE_SCHEMA. At most ** one such warning is issued for each table in the changeset. ** ** For each change for which there is a compatible table, an attempt is made ** to modify the table contents according to the UPDATE, INSERT or DELETE ** change. If a change cannot be applied cleanly, the conflict handler ** function passed as the fifth argument to sqlite3changeset_apply() may be ** invoked. A description of exactly when the conflict handler is invoked for ** each type of change is below. ** ** Unlike the xFilter argument, xConflict may not be passed NULL. The results ** of passing anything other than a valid function pointer as the xConflict ** argument are undefined. ** ** Each time the conflict handler function is invoked, it must return one ** of [SQLITE_CHANGESET_OMIT], [SQLITE_CHANGESET_ABORT] or ** [SQLITE_CHANGESET_REPLACE]. SQLITE_CHANGESET_REPLACE may only be returned ** if the second argument passed to the conflict handler is either ** SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT. If the conflict-handler ** returns an illegal value, any changes already made are rolled back and ** the call to sqlite3changeset_apply() returns SQLITE_MISUSE. Different ** actions are taken by sqlite3changeset_apply() depending on the value ** returned by each invocation of the conflict-handler function. Refer to ** the documentation for the three ** [SQLITE_CHANGESET_OMIT|available return values] for details. ** **
    **
    DELETE Changes
    ** For each DELETE change, the function checks if the target database ** contains a row with the same primary key value (or values) as the ** original row values stored in the changeset. If it does, and the values ** stored in all non-primary key columns also match the values stored in ** the changeset the row is deleted from the target database. ** ** If a row with matching primary key values is found, but one or more of ** the non-primary key fields contains a value different from the original ** row value stored in the changeset, the conflict-handler function is ** invoked with [SQLITE_CHANGESET_DATA] as the second argument. If the ** database table has more columns than are recorded in the changeset, ** only the values of those non-primary key fields are compared against ** the current database contents - any trailing database table columns ** are ignored. ** ** If no row with matching primary key values is found in the database, ** the conflict-handler function is invoked with [SQLITE_CHANGESET_NOTFOUND] ** passed as the second argument. ** ** If the DELETE operation is attempted, but SQLite returns SQLITE_CONSTRAINT ** (which can only happen if a foreign key constraint is violated), the ** conflict-handler function is invoked with [SQLITE_CHANGESET_CONSTRAINT] ** passed as the second argument. This includes the case where the DELETE ** operation is attempted because an earlier call to the conflict handler ** function returned [SQLITE_CHANGESET_REPLACE]. ** **
    INSERT Changes
    ** For each INSERT change, an attempt is made to insert the new row into ** the database. If the changeset row contains fewer fields than the ** database table, the trailing fields are populated with their default ** values. ** ** If the attempt to insert the row fails because the database already ** contains a row with the same primary key values, the conflict handler ** function is invoked with the second argument set to ** [SQLITE_CHANGESET_CONFLICT]. ** ** If the attempt to insert the row fails because of some other constraint ** violation (e.g. NOT NULL or UNIQUE), the conflict handler function is ** invoked with the second argument set to [SQLITE_CHANGESET_CONSTRAINT]. ** This includes the case where the INSERT operation is re-attempted because ** an earlier call to the conflict handler function returned ** [SQLITE_CHANGESET_REPLACE]. ** **
    UPDATE Changes
    ** For each UPDATE change, the function checks if the target database ** contains a row with the same primary key value (or values) as the ** original row values stored in the changeset. If it does, and the values ** stored in all modified non-primary key columns also match the values ** stored in the changeset the row is updated within the target database. ** ** If a row with matching primary key values is found, but one or more of ** the modified non-primary key fields contains a value different from an ** original row value stored in the changeset, the conflict-handler function ** is invoked with [SQLITE_CHANGESET_DATA] as the second argument. Since ** UPDATE changes only contain values for non-primary key fields that are ** to be modified, only those fields need to match the original values to ** avoid the SQLITE_CHANGESET_DATA conflict-handler callback. ** ** If no row with matching primary key values is found in the database, ** the conflict-handler function is invoked with [SQLITE_CHANGESET_NOTFOUND] ** passed as the second argument. ** ** If the UPDATE operation is attempted, but SQLite returns ** SQLITE_CONSTRAINT, the conflict-handler function is invoked with ** [SQLITE_CHANGESET_CONSTRAINT] passed as the second argument. ** This includes the case where the UPDATE operation is attempted after ** an earlier call to the conflict handler function returned ** [SQLITE_CHANGESET_REPLACE]. **
    ** ** It is safe to execute SQL statements, including those that write to the ** table that the callback related to, from within the xConflict callback. ** This can be used to further customize the application's conflict ** resolution strategy. ** ** All changes made by these functions are enclosed in a savepoint transaction. ** If any other error (aside from a constraint failure when attempting to ** write to the target database) occurs, then the savepoint transaction is ** rolled back, restoring the target database to its original state, and an ** SQLite error code returned. ** ** If the output parameters (ppRebase) and (pnRebase) are non-NULL and ** the input is a changeset (not a patchset), then sqlite3changeset_apply_v2() ** may set (*ppRebase) to point to a "rebase" that may be used with the ** sqlite3_rebaser APIs buffer before returning. In this case (*pnRebase) ** is set to the size of the buffer in bytes. It is the responsibility of the ** caller to eventually free any such buffer using sqlite3_free(). The buffer ** is only allocated and populated if one or more conflicts were encountered ** while applying the patchset. See comments surrounding the sqlite3_rebaser ** APIs for further details. ** ** The behavior of sqlite3changeset_apply_v2() and its streaming equivalent ** may be modified by passing a combination of ** [SQLITE_CHANGESETAPPLY_NOSAVEPOINT | supported flags] as the 9th parameter. ** ** Note that the sqlite3changeset_apply_v2() API is still experimental ** and therefore subject to change. */ SQLITE_API int sqlite3changeset_apply( sqlite3 *db, /* Apply change to "main" db of this handle */ int nChangeset, /* Size of changeset in bytes */ void *pChangeset, /* Changeset blob */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx /* First argument passed to xConflict */ ); SQLITE_API int sqlite3changeset_apply_v2( sqlite3 *db, /* Apply change to "main" db of this handle */ int nChangeset, /* Size of changeset in bytes */ void *pChangeset, /* Changeset blob */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx, /* First argument passed to xConflict */ void **ppRebase, int *pnRebase, /* OUT: Rebase data */ int flags /* SESSION_CHANGESETAPPLY_* flags */ ); /* ** CAPI3REF: Flags for sqlite3changeset_apply_v2 ** ** The following flags may passed via the 9th parameter to ** [sqlite3changeset_apply_v2] and [sqlite3changeset_apply_v2_strm]: ** **
    **
    SQLITE_CHANGESETAPPLY_NOSAVEPOINT
    ** Usually, the sessions module encloses all operations performed by ** a single call to apply_v2() or apply_v2_strm() in a [SAVEPOINT]. The ** SAVEPOINT is committed if the changeset or patchset is successfully ** applied, or rolled back if an error occurs. Specifying this flag ** causes the sessions module to omit this savepoint. In this case, if the ** caller has an open transaction or savepoint when apply_v2() is called, ** it may revert the partially applied changeset by rolling it back. ** **
    SQLITE_CHANGESETAPPLY_INVERT
    ** Invert the changeset before applying it. This is equivalent to inverting ** a changeset using sqlite3changeset_invert() before applying it. It is ** an error to specify this flag with a patchset. */ #define SQLITE_CHANGESETAPPLY_NOSAVEPOINT 0x0001 #define SQLITE_CHANGESETAPPLY_INVERT 0x0002 /* ** CAPI3REF: Constants Passed To The Conflict Handler ** ** Values that may be passed as the second argument to a conflict-handler. ** **
    **
    SQLITE_CHANGESET_DATA
    ** The conflict handler is invoked with CHANGESET_DATA as the second argument ** when processing a DELETE or UPDATE change if a row with the required ** PRIMARY KEY fields is present in the database, but one or more other ** (non primary-key) fields modified by the update do not contain the ** expected "before" values. ** ** The conflicting row, in this case, is the database row with the matching ** primary key. ** **
    SQLITE_CHANGESET_NOTFOUND
    ** The conflict handler is invoked with CHANGESET_NOTFOUND as the second ** argument when processing a DELETE or UPDATE change if a row with the ** required PRIMARY KEY fields is not present in the database. ** ** There is no conflicting row in this case. The results of invoking the ** sqlite3changeset_conflict() API are undefined. ** **
    SQLITE_CHANGESET_CONFLICT
    ** CHANGESET_CONFLICT is passed as the second argument to the conflict ** handler while processing an INSERT change if the operation would result ** in duplicate primary key values. ** ** The conflicting row in this case is the database row with the matching ** primary key. ** **
    SQLITE_CHANGESET_FOREIGN_KEY
    ** If foreign key handling is enabled, and applying a changeset leaves the ** database in a state containing foreign key violations, the conflict ** handler is invoked with CHANGESET_FOREIGN_KEY as the second argument ** exactly once before the changeset is committed. If the conflict handler ** returns CHANGESET_OMIT, the changes, including those that caused the ** foreign key constraint violation, are committed. Or, if it returns ** CHANGESET_ABORT, the changeset is rolled back. ** ** No current or conflicting row information is provided. The only function ** it is possible to call on the supplied sqlite3_changeset_iter handle ** is sqlite3changeset_fk_conflicts(). ** **
    SQLITE_CHANGESET_CONSTRAINT
    ** If any other constraint violation occurs while applying a change (i.e. ** a UNIQUE, CHECK or NOT NULL constraint), the conflict handler is ** invoked with CHANGESET_CONSTRAINT as the second argument. ** ** There is no conflicting row in this case. The results of invoking the ** sqlite3changeset_conflict() API are undefined. ** **
    */ #define SQLITE_CHANGESET_DATA 1 #define SQLITE_CHANGESET_NOTFOUND 2 #define SQLITE_CHANGESET_CONFLICT 3 #define SQLITE_CHANGESET_CONSTRAINT 4 #define SQLITE_CHANGESET_FOREIGN_KEY 5 /* ** CAPI3REF: Constants Returned By The Conflict Handler ** ** A conflict handler callback must return one of the following three values. ** **
    **
    SQLITE_CHANGESET_OMIT
    ** If a conflict handler returns this value no special action is taken. The ** change that caused the conflict is not applied. The session module ** continues to the next change in the changeset. ** **
    SQLITE_CHANGESET_REPLACE
    ** This value may only be returned if the second argument to the conflict ** handler was SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT. If this ** is not the case, any changes applied so far are rolled back and the ** call to sqlite3changeset_apply() returns SQLITE_MISUSE. ** ** If CHANGESET_REPLACE is returned by an SQLITE_CHANGESET_DATA conflict ** handler, then the conflicting row is either updated or deleted, depending ** on the type of change. ** ** If CHANGESET_REPLACE is returned by an SQLITE_CHANGESET_CONFLICT conflict ** handler, then the conflicting row is removed from the database and a ** second attempt to apply the change is made. If this second attempt fails, ** the original row is restored to the database before continuing. ** **
    SQLITE_CHANGESET_ABORT
    ** If this value is returned, any changes applied so far are rolled back ** and the call to sqlite3changeset_apply() returns SQLITE_ABORT. **
    */ #define SQLITE_CHANGESET_OMIT 0 #define SQLITE_CHANGESET_REPLACE 1 #define SQLITE_CHANGESET_ABORT 2 /* ** CAPI3REF: Rebasing changesets ** EXPERIMENTAL ** ** Suppose there is a site hosting a database in state S0. And that ** modifications are made that move that database to state S1 and a ** changeset recorded (the "local" changeset). Then, a changeset based ** on S0 is received from another site (the "remote" changeset) and ** applied to the database. The database is then in state ** (S1+"remote"), where the exact state depends on any conflict ** resolution decisions (OMIT or REPLACE) made while applying "remote". ** Rebasing a changeset is to update it to take those conflict ** resolution decisions into account, so that the same conflicts ** do not have to be resolved elsewhere in the network. ** ** For example, if both the local and remote changesets contain an ** INSERT of the same key on "CREATE TABLE t1(a PRIMARY KEY, b)": ** ** local: INSERT INTO t1 VALUES(1, 'v1'); ** remote: INSERT INTO t1 VALUES(1, 'v2'); ** ** and the conflict resolution is REPLACE, then the INSERT change is ** removed from the local changeset (it was overridden). Or, if the ** conflict resolution was "OMIT", then the local changeset is modified ** to instead contain: ** ** UPDATE t1 SET b = 'v2' WHERE a=1; ** ** Changes within the local changeset are rebased as follows: ** **
    **
    Local INSERT
    ** This may only conflict with a remote INSERT. If the conflict ** resolution was OMIT, then add an UPDATE change to the rebased ** changeset. Or, if the conflict resolution was REPLACE, add ** nothing to the rebased changeset. ** **
    Local DELETE
    ** This may conflict with a remote UPDATE or DELETE. In both cases the ** only possible resolution is OMIT. If the remote operation was a ** DELETE, then add no change to the rebased changeset. If the remote ** operation was an UPDATE, then the old.* fields of change are updated ** to reflect the new.* values in the UPDATE. ** **
    Local UPDATE
    ** This may conflict with a remote UPDATE or DELETE. If it conflicts ** with a DELETE, and the conflict resolution was OMIT, then the update ** is changed into an INSERT. Any undefined values in the new.* record ** from the update change are filled in using the old.* values from ** the conflicting DELETE. Or, if the conflict resolution was REPLACE, ** the UPDATE change is simply omitted from the rebased changeset. ** ** If conflict is with a remote UPDATE and the resolution is OMIT, then ** the old.* values are rebased using the new.* values in the remote ** change. Or, if the resolution is REPLACE, then the change is copied ** into the rebased changeset with updates to columns also updated by ** the conflicting remote UPDATE removed. If this means no columns would ** be updated, the change is omitted. **
    ** ** A local change may be rebased against multiple remote changes ** simultaneously. If a single key is modified by multiple remote ** changesets, they are combined as follows before the local changeset ** is rebased: ** **
      **
    • If there has been one or more REPLACE resolutions on a ** key, it is rebased according to a REPLACE. ** **
    • If there have been no REPLACE resolutions on a key, then ** the local changeset is rebased according to the most recent ** of the OMIT resolutions. **
    ** ** Note that conflict resolutions from multiple remote changesets are ** combined on a per-field basis, not per-row. This means that in the ** case of multiple remote UPDATE operations, some fields of a single ** local change may be rebased for REPLACE while others are rebased for ** OMIT. ** ** In order to rebase a local changeset, the remote changeset must first ** be applied to the local database using sqlite3changeset_apply_v2() and ** the buffer of rebase information captured. Then: ** **
      **
    1. An sqlite3_rebaser object is created by calling ** sqlite3rebaser_create(). **
    2. The new object is configured with the rebase buffer obtained from ** sqlite3changeset_apply_v2() by calling sqlite3rebaser_configure(). ** If the local changeset is to be rebased against multiple remote ** changesets, then sqlite3rebaser_configure() should be called ** multiple times, in the same order that the multiple ** sqlite3changeset_apply_v2() calls were made. **
    3. Each local changeset is rebased by calling sqlite3rebaser_rebase(). **
    4. The sqlite3_rebaser object is deleted by calling ** sqlite3rebaser_delete(). **
    */ typedef struct sqlite3_rebaser sqlite3_rebaser; /* ** CAPI3REF: Create a changeset rebaser object. ** EXPERIMENTAL ** ** Allocate a new changeset rebaser object. If successful, set (*ppNew) to ** point to the new object and return SQLITE_OK. Otherwise, if an error ** occurs, return an SQLite error code (e.g. SQLITE_NOMEM) and set (*ppNew) ** to NULL. */ SQLITE_API int sqlite3rebaser_create(sqlite3_rebaser **ppNew); /* ** CAPI3REF: Configure a changeset rebaser object. ** EXPERIMENTAL ** ** Configure the changeset rebaser object to rebase changesets according ** to the conflict resolutions described by buffer pRebase (size nRebase ** bytes), which must have been obtained from a previous call to ** sqlite3changeset_apply_v2(). */ SQLITE_API int sqlite3rebaser_configure( sqlite3_rebaser*, int nRebase, const void *pRebase ); /* ** CAPI3REF: Rebase a changeset ** EXPERIMENTAL ** ** Argument pIn must point to a buffer containing a changeset nIn bytes ** in size. This function allocates and populates a buffer with a copy ** of the changeset rebased according to the configuration of the ** rebaser object passed as the first argument. If successful, (*ppOut) ** is set to point to the new buffer containing the rebased changeset and ** (*pnOut) to its size in bytes and SQLITE_OK returned. It is the ** responsibility of the caller to eventually free the new buffer using ** sqlite3_free(). Otherwise, if an error occurs, (*ppOut) and (*pnOut) ** are set to zero and an SQLite error code returned. */ SQLITE_API int sqlite3rebaser_rebase( sqlite3_rebaser*, int nIn, const void *pIn, int *pnOut, void **ppOut ); /* ** CAPI3REF: Delete a changeset rebaser object. ** EXPERIMENTAL ** ** Delete the changeset rebaser object and all associated resources. There ** should be one call to this function for each successful invocation ** of sqlite3rebaser_create(). */ SQLITE_API void sqlite3rebaser_delete(sqlite3_rebaser *p); /* ** CAPI3REF: Streaming Versions of API functions. ** ** The six streaming API xxx_strm() functions serve similar purposes to the ** corresponding non-streaming API functions: ** ** ** **
    Streaming functionNon-streaming equivalent
    sqlite3changeset_apply_strm[sqlite3changeset_apply] **
    sqlite3changeset_apply_strm_v2[sqlite3changeset_apply_v2] **
    sqlite3changeset_concat_strm[sqlite3changeset_concat] **
    sqlite3changeset_invert_strm[sqlite3changeset_invert] **
    sqlite3changeset_start_strm[sqlite3changeset_start] **
    sqlite3session_changeset_strm[sqlite3session_changeset] **
    sqlite3session_patchset_strm[sqlite3session_patchset] **
    ** ** Non-streaming functions that accept changesets (or patchsets) as input ** require that the entire changeset be stored in a single buffer in memory. ** Similarly, those that return a changeset or patchset do so by returning ** a pointer to a single large buffer allocated using sqlite3_malloc(). ** Normally this is convenient. However, if an application running in a ** low-memory environment is required to handle very large changesets, the ** large contiguous memory allocations required can become onerous. ** ** In order to avoid this problem, instead of a single large buffer, input ** is passed to a streaming API functions by way of a callback function that ** the sessions module invokes to incrementally request input data as it is ** required. In all cases, a pair of API function parameters such as ** **
    **        int nChangeset,
    **        void *pChangeset,
    **  
    ** ** Is replaced by: ** **
    **        int (*xInput)(void *pIn, void *pData, int *pnData),
    **        void *pIn,
    **  
    ** ** Each time the xInput callback is invoked by the sessions module, the first ** argument passed is a copy of the supplied pIn context pointer. The second ** argument, pData, points to a buffer (*pnData) bytes in size. Assuming no ** error occurs the xInput method should copy up to (*pnData) bytes of data ** into the buffer and set (*pnData) to the actual number of bytes copied ** before returning SQLITE_OK. If the input is completely exhausted, (*pnData) ** should be set to zero to indicate this. Or, if an error occurs, an SQLite ** error code should be returned. In all cases, if an xInput callback returns ** an error, all processing is abandoned and the streaming API function ** returns a copy of the error code to the caller. ** ** In the case of sqlite3changeset_start_strm(), the xInput callback may be ** invoked by the sessions module at any point during the lifetime of the ** iterator. If such an xInput callback returns an error, the iterator enters ** an error state, whereby all subsequent calls to iterator functions ** immediately fail with the same error code as returned by xInput. ** ** Similarly, streaming API functions that return changesets (or patchsets) ** return them in chunks by way of a callback function instead of via a ** pointer to a single large buffer. In this case, a pair of parameters such ** as: ** **
    **        int *pnChangeset,
    **        void **ppChangeset,
    **  
    ** ** Is replaced by: ** **
    **        int (*xOutput)(void *pOut, const void *pData, int nData),
    **        void *pOut
    **  
    ** ** The xOutput callback is invoked zero or more times to return data to ** the application. The first parameter passed to each call is a copy of the ** pOut pointer supplied by the application. The second parameter, pData, ** points to a buffer nData bytes in size containing the chunk of output ** data being returned. If the xOutput callback successfully processes the ** supplied data, it should return SQLITE_OK to indicate success. Otherwise, ** it should return some other SQLite error code. In this case processing ** is immediately abandoned and the streaming API function returns a copy ** of the xOutput error code to the application. ** ** The sessions module never invokes an xOutput callback with the third ** parameter set to a value less than or equal to zero. Other than this, ** no guarantees are made as to the size of the chunks of data returned. */ SQLITE_API int sqlite3changeset_apply_strm( sqlite3 *db, /* Apply change to "main" db of this handle */ int (*xInput)(void *pIn, void *pData, int *pnData), /* Input function */ void *pIn, /* First arg for xInput */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx /* First argument passed to xConflict */ ); SQLITE_API int sqlite3changeset_apply_v2_strm( sqlite3 *db, /* Apply change to "main" db of this handle */ int (*xInput)(void *pIn, void *pData, int *pnData), /* Input function */ void *pIn, /* First arg for xInput */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx, /* First argument passed to xConflict */ void **ppRebase, int *pnRebase, int flags ); SQLITE_API int sqlite3changeset_concat_strm( int (*xInputA)(void *pIn, void *pData, int *pnData), void *pInA, int (*xInputB)(void *pIn, void *pData, int *pnData), void *pInB, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3changeset_invert_strm( int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3changeset_start_strm( sqlite3_changeset_iter **pp, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn ); SQLITE_API int sqlite3changeset_start_v2_strm( sqlite3_changeset_iter **pp, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn, int flags ); SQLITE_API int sqlite3session_changeset_strm( sqlite3_session *pSession, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3session_patchset_strm( sqlite3_session *pSession, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3changegroup_add_strm(sqlite3_changegroup*, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn ); SQLITE_API int sqlite3changegroup_output_strm(sqlite3_changegroup*, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3rebaser_rebase_strm( sqlite3_rebaser *pRebaser, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); /* ** CAPI3REF: Configure global parameters ** ** The sqlite3session_config() interface is used to make global configuration ** changes to the sessions module in order to tune it to the specific needs ** of the application. ** ** The sqlite3session_config() interface is not threadsafe. If it is invoked ** while any other thread is inside any other sessions method then the ** results are undefined. Furthermore, if it is invoked after any sessions ** related objects have been created, the results are also undefined. ** ** The first argument to the sqlite3session_config() function must be one ** of the SQLITE_SESSION_CONFIG_XXX constants defined below. The ** interpretation of the (void*) value passed as the second parameter and ** the effect of calling this function depends on the value of the first ** parameter. ** **
    **
    SQLITE_SESSION_CONFIG_STRMSIZE
    ** By default, the sessions module streaming interfaces attempt to input ** and output data in approximately 1 KiB chunks. This operand may be used ** to set and query the value of this configuration setting. The pointer ** passed as the second argument must point to a value of type (int). ** If this value is greater than 0, it is used as the new streaming data ** chunk size for both input and output. Before returning, the (int) value ** pointed to by pArg is set to the final value of the streaming interface ** chunk size. **
    ** ** This function returns SQLITE_OK if successful, or an SQLite error code ** otherwise. */ SQLITE_API int sqlite3session_config(int op, void *pArg); /* ** CAPI3REF: Values for sqlite3session_config(). */ #define SQLITE_SESSION_CONFIG_STRMSIZE 1 /* ** Make sure we can call this stuff from C++. */ #if 0 } #endif #endif /* !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) */ /******** End of sqlite3session.h *********/ /******** Begin file fts5.h *********/ /* ** 2014 May 31 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** Interfaces to extend FTS5. Using the interfaces defined in this file, ** FTS5 may be extended with: ** ** * custom tokenizers, and ** * custom auxiliary functions. */ #ifndef _FTS5_H #define _FTS5_H #if 0 extern "C" { #endif /************************************************************************* ** CUSTOM AUXILIARY FUNCTIONS ** ** Virtual table implementations may overload SQL functions by implementing ** the sqlite3_module.xFindFunction() method. */ typedef struct Fts5ExtensionApi Fts5ExtensionApi; typedef struct Fts5Context Fts5Context; typedef struct Fts5PhraseIter Fts5PhraseIter; typedef void (*fts5_extension_function)( const Fts5ExtensionApi *pApi, /* API offered by current FTS version */ Fts5Context *pFts, /* First arg to pass to pApi functions */ sqlite3_context *pCtx, /* Context for returning result/error */ int nVal, /* Number of values in apVal[] array */ sqlite3_value **apVal /* Array of trailing arguments */ ); struct Fts5PhraseIter { const unsigned char *a; const unsigned char *b; }; /* ** EXTENSION API FUNCTIONS ** ** xUserData(pFts): ** Return a copy of the context pointer the extension function was ** registered with. ** ** xColumnTotalSize(pFts, iCol, pnToken): ** If parameter iCol is less than zero, set output variable *pnToken ** to the total number of tokens in the FTS5 table. Or, if iCol is ** non-negative but less than the number of columns in the table, return ** the total number of tokens in column iCol, considering all rows in ** the FTS5 table. ** ** If parameter iCol is greater than or equal to the number of columns ** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. ** an OOM condition or IO error), an appropriate SQLite error code is ** returned. ** ** xColumnCount(pFts): ** Return the number of columns in the table. ** ** xColumnSize(pFts, iCol, pnToken): ** If parameter iCol is less than zero, set output variable *pnToken ** to the total number of tokens in the current row. Or, if iCol is ** non-negative but less than the number of columns in the table, set ** *pnToken to the number of tokens in column iCol of the current row. ** ** If parameter iCol is greater than or equal to the number of columns ** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. ** an OOM condition or IO error), an appropriate SQLite error code is ** returned. ** ** This function may be quite inefficient if used with an FTS5 table ** created with the "columnsize=0" option. ** ** xColumnText: ** This function attempts to retrieve the text of column iCol of the ** current document. If successful, (*pz) is set to point to a buffer ** containing the text in utf-8 encoding, (*pn) is set to the size in bytes ** (not characters) of the buffer and SQLITE_OK is returned. Otherwise, ** if an error occurs, an SQLite error code is returned and the final values ** of (*pz) and (*pn) are undefined. ** ** xPhraseCount: ** Returns the number of phrases in the current query expression. ** ** xPhraseSize: ** Returns the number of tokens in phrase iPhrase of the query. Phrases ** are numbered starting from zero. ** ** xInstCount: ** Set *pnInst to the total number of occurrences of all phrases within ** the query within the current row. Return SQLITE_OK if successful, or ** an error code (i.e. SQLITE_NOMEM) if an error occurs. ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" or "detail=column" option. If the FTS5 table is created ** with either "detail=none" or "detail=column" and "content=" option ** (i.e. if it is a contentless table), then this API always returns 0. ** ** xInst: ** Query for the details of phrase match iIdx within the current row. ** Phrase matches are numbered starting from zero, so the iIdx argument ** should be greater than or equal to zero and smaller than the value ** output by xInstCount(). ** ** Usually, output parameter *piPhrase is set to the phrase number, *piCol ** to the column in which it occurs and *piOff the token offset of the ** first token of the phrase. Returns SQLITE_OK if successful, or an error ** code (i.e. SQLITE_NOMEM) if an error occurs. ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" or "detail=column" option. ** ** xRowid: ** Returns the rowid of the current row. ** ** xTokenize: ** Tokenize text using the tokenizer belonging to the FTS5 table. ** ** xQueryPhrase(pFts5, iPhrase, pUserData, xCallback): ** This API function is used to query the FTS table for phrase iPhrase ** of the current query. Specifically, a query equivalent to: ** ** ... FROM ftstable WHERE ftstable MATCH $p ORDER BY rowid ** ** with $p set to a phrase equivalent to the phrase iPhrase of the ** current query is executed. Any column filter that applies to ** phrase iPhrase of the current query is included in $p. For each ** row visited, the callback function passed as the fourth argument ** is invoked. The context and API objects passed to the callback ** function may be used to access the properties of each matched row. ** Invoking Api.xUserData() returns a copy of the pointer passed as ** the third argument to pUserData. ** ** If the callback function returns any value other than SQLITE_OK, the ** query is abandoned and the xQueryPhrase function returns immediately. ** If the returned value is SQLITE_DONE, xQueryPhrase returns SQLITE_OK. ** Otherwise, the error code is propagated upwards. ** ** If the query runs to completion without incident, SQLITE_OK is returned. ** Or, if some error occurs before the query completes or is aborted by ** the callback, an SQLite error code is returned. ** ** ** xSetAuxdata(pFts5, pAux, xDelete) ** ** Save the pointer passed as the second argument as the extension function's ** "auxiliary data". The pointer may then be retrieved by the current or any ** future invocation of the same fts5 extension function made as part of ** the same MATCH query using the xGetAuxdata() API. ** ** Each extension function is allocated a single auxiliary data slot for ** each FTS query (MATCH expression). If the extension function is invoked ** more than once for a single FTS query, then all invocations share a ** single auxiliary data context. ** ** If there is already an auxiliary data pointer when this function is ** invoked, then it is replaced by the new pointer. If an xDelete callback ** was specified along with the original pointer, it is invoked at this ** point. ** ** The xDelete callback, if one is specified, is also invoked on the ** auxiliary data pointer after the FTS5 query has finished. ** ** If an error (e.g. an OOM condition) occurs within this function, ** the auxiliary data is set to NULL and an error code returned. If the ** xDelete parameter was not NULL, it is invoked on the auxiliary data ** pointer before returning. ** ** ** xGetAuxdata(pFts5, bClear) ** ** Returns the current auxiliary data pointer for the fts5 extension ** function. See the xSetAuxdata() method for details. ** ** If the bClear argument is non-zero, then the auxiliary data is cleared ** (set to NULL) before this function returns. In this case the xDelete, ** if any, is not invoked. ** ** ** xRowCount(pFts5, pnRow) ** ** This function is used to retrieve the total number of rows in the table. ** In other words, the same value that would be returned by: ** ** SELECT count(*) FROM ftstable; ** ** xPhraseFirst() ** This function is used, along with type Fts5PhraseIter and the xPhraseNext ** method, to iterate through all instances of a single query phrase within ** the current row. This is the same information as is accessible via the ** xInstCount/xInst APIs. While the xInstCount/xInst APIs are more convenient ** to use, this API may be faster under some circumstances. To iterate ** through instances of phrase iPhrase, use the following code: ** ** Fts5PhraseIter iter; ** int iCol, iOff; ** for(pApi->xPhraseFirst(pFts, iPhrase, &iter, &iCol, &iOff); ** iCol>=0; ** pApi->xPhraseNext(pFts, &iter, &iCol, &iOff) ** ){ ** // An instance of phrase iPhrase at offset iOff of column iCol ** } ** ** The Fts5PhraseIter structure is defined above. Applications should not ** modify this structure directly - it should only be used as shown above ** with the xPhraseFirst() and xPhraseNext() API methods (and by ** xPhraseFirstColumn() and xPhraseNextColumn() as illustrated below). ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" or "detail=column" option. If the FTS5 table is created ** with either "detail=none" or "detail=column" and "content=" option ** (i.e. if it is a contentless table), then this API always iterates ** through an empty set (all calls to xPhraseFirst() set iCol to -1). ** ** xPhraseNext() ** See xPhraseFirst above. ** ** xPhraseFirstColumn() ** This function and xPhraseNextColumn() are similar to the xPhraseFirst() ** and xPhraseNext() APIs described above. The difference is that instead ** of iterating through all instances of a phrase in the current row, these ** APIs are used to iterate through the set of columns in the current row ** that contain one or more instances of a specified phrase. For example: ** ** Fts5PhraseIter iter; ** int iCol; ** for(pApi->xPhraseFirstColumn(pFts, iPhrase, &iter, &iCol); ** iCol>=0; ** pApi->xPhraseNextColumn(pFts, &iter, &iCol) ** ){ ** // Column iCol contains at least one instance of phrase iPhrase ** } ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" option. If the FTS5 table is created with either ** "detail=none" "content=" option (i.e. if it is a contentless table), ** then this API always iterates through an empty set (all calls to ** xPhraseFirstColumn() set iCol to -1). ** ** The information accessed using this API and its companion ** xPhraseFirstColumn() may also be obtained using xPhraseFirst/xPhraseNext ** (or xInst/xInstCount). The chief advantage of this API is that it is ** significantly more efficient than those alternatives when used with ** "detail=column" tables. ** ** xPhraseNextColumn() ** See xPhraseFirstColumn above. */ struct Fts5ExtensionApi { int iVersion; /* Currently always set to 3 */ void *(*xUserData)(Fts5Context*); int (*xColumnCount)(Fts5Context*); int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow); int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken); int (*xTokenize)(Fts5Context*, const char *pText, int nText, /* Text to tokenize */ void *pCtx, /* Context passed to xToken() */ int (*xToken)(void*, int, const char*, int, int, int) /* Callback */ ); int (*xPhraseCount)(Fts5Context*); int (*xPhraseSize)(Fts5Context*, int iPhrase); int (*xInstCount)(Fts5Context*, int *pnInst); int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff); sqlite3_int64 (*xRowid)(Fts5Context*); int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn); int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken); int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData, int(*)(const Fts5ExtensionApi*,Fts5Context*,void*) ); int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*)); void *(*xGetAuxdata)(Fts5Context*, int bClear); int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*); void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff); int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*); void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol); }; /* ** CUSTOM AUXILIARY FUNCTIONS *************************************************************************/ /************************************************************************* ** CUSTOM TOKENIZERS ** ** Applications may also register custom tokenizer types. A tokenizer ** is registered by providing fts5 with a populated instance of the ** following structure. All structure methods must be defined, setting ** any member of the fts5_tokenizer struct to NULL leads to undefined ** behaviour. The structure methods are expected to function as follows: ** ** xCreate: ** This function is used to allocate and initialize a tokenizer instance. ** A tokenizer instance is required to actually tokenize text. ** ** The first argument passed to this function is a copy of the (void*) ** pointer provided by the application when the fts5_tokenizer object ** was registered with FTS5 (the third argument to xCreateTokenizer()). ** The second and third arguments are an array of nul-terminated strings ** containing the tokenizer arguments, if any, specified following the ** tokenizer name as part of the CREATE VIRTUAL TABLE statement used ** to create the FTS5 table. ** ** The final argument is an output variable. If successful, (*ppOut) ** should be set to point to the new tokenizer handle and SQLITE_OK ** returned. If an error occurs, some value other than SQLITE_OK should ** be returned. In this case, fts5 assumes that the final value of *ppOut ** is undefined. ** ** xDelete: ** This function is invoked to delete a tokenizer handle previously ** allocated using xCreate(). Fts5 guarantees that this function will ** be invoked exactly once for each successful call to xCreate(). ** ** xTokenize: ** This function is expected to tokenize the nText byte string indicated ** by argument pText. pText may or may not be nul-terminated. The first ** argument passed to this function is a pointer to an Fts5Tokenizer object ** returned by an earlier call to xCreate(). ** ** The second argument indicates the reason that FTS5 is requesting ** tokenization of the supplied text. This is always one of the following ** four values: ** **
    • FTS5_TOKENIZE_DOCUMENT - A document is being inserted into ** or removed from the FTS table. The tokenizer is being invoked to ** determine the set of tokens to add to (or delete from) the ** FTS index. ** **
    • FTS5_TOKENIZE_QUERY - A MATCH query is being executed ** against the FTS index. The tokenizer is being called to tokenize ** a bareword or quoted string specified as part of the query. ** **
    • (FTS5_TOKENIZE_QUERY | FTS5_TOKENIZE_PREFIX) - Same as ** FTS5_TOKENIZE_QUERY, except that the bareword or quoted string is ** followed by a "*" character, indicating that the last token ** returned by the tokenizer will be treated as a token prefix. ** **
    • FTS5_TOKENIZE_AUX - The tokenizer is being invoked to ** satisfy an fts5_api.xTokenize() request made by an auxiliary ** function. Or an fts5_api.xColumnSize() request made by the same ** on a columnsize=0 database. **
    ** ** For each token in the input string, the supplied callback xToken() must ** be invoked. The first argument to it should be a copy of the pointer ** passed as the second argument to xTokenize(). The third and fourth ** arguments are a pointer to a buffer containing the token text, and the ** size of the token in bytes. The 4th and 5th arguments are the byte offsets ** of the first byte of and first byte immediately following the text from ** which the token is derived within the input. ** ** The second argument passed to the xToken() callback ("tflags") should ** normally be set to 0. The exception is if the tokenizer supports ** synonyms. In this case see the discussion below for details. ** ** FTS5 assumes the xToken() callback is invoked for each token in the ** order that they occur within the input text. ** ** If an xToken() callback returns any value other than SQLITE_OK, then ** the tokenization should be abandoned and the xTokenize() method should ** immediately return a copy of the xToken() return value. Or, if the ** input buffer is exhausted, xTokenize() should return SQLITE_OK. Finally, ** if an error occurs with the xTokenize() implementation itself, it ** may abandon the tokenization and return any error code other than ** SQLITE_OK or SQLITE_DONE. ** ** SYNONYM SUPPORT ** ** Custom tokenizers may also support synonyms. Consider a case in which a ** user wishes to query for a phrase such as "first place". Using the ** built-in tokenizers, the FTS5 query 'first + place' will match instances ** of "first place" within the document set, but not alternative forms ** such as "1st place". In some applications, it would be better to match ** all instances of "first place" or "1st place" regardless of which form ** the user specified in the MATCH query text. ** ** There are several ways to approach this in FTS5: ** **
    1. By mapping all synonyms to a single token. In this case, using ** the above example, this means that the tokenizer returns the ** same token for inputs "first" and "1st". Say that token is in ** fact "first", so that when the user inserts the document "I won ** 1st place" entries are added to the index for tokens "i", "won", ** "first" and "place". If the user then queries for '1st + place', ** the tokenizer substitutes "first" for "1st" and the query works ** as expected. ** **
    2. By querying the index for all synonyms of each query term ** separately. In this case, when tokenizing query text, the ** tokenizer may provide multiple synonyms for a single term ** within the document. FTS5 then queries the index for each ** synonym individually. For example, faced with the query: ** ** ** ... MATCH 'first place' ** ** the tokenizer offers both "1st" and "first" as synonyms for the ** first token in the MATCH query and FTS5 effectively runs a query ** similar to: ** ** ** ... MATCH '(first OR 1st) place' ** ** except that, for the purposes of auxiliary functions, the query ** still appears to contain just two phrases - "(first OR 1st)" ** being treated as a single phrase. ** **
    3. By adding multiple synonyms for a single term to the FTS index. ** Using this method, when tokenizing document text, the tokenizer ** provides multiple synonyms for each token. So that when a ** document such as "I won first place" is tokenized, entries are ** added to the FTS index for "i", "won", "first", "1st" and ** "place". ** ** This way, even if the tokenizer does not provide synonyms ** when tokenizing query text (it should not - to do so would be ** inefficient), it doesn't matter if the user queries for ** 'first + place' or '1st + place', as there are entries in the ** FTS index corresponding to both forms of the first token. **
    ** ** Whether it is parsing document or query text, any call to xToken that ** specifies a tflags argument with the FTS5_TOKEN_COLOCATED bit ** is considered to supply a synonym for the previous token. For example, ** when parsing the document "I won first place", a tokenizer that supports ** synonyms would call xToken() 5 times, as follows: ** ** ** xToken(pCtx, 0, "i", 1, 0, 1); ** xToken(pCtx, 0, "won", 3, 2, 5); ** xToken(pCtx, 0, "first", 5, 6, 11); ** xToken(pCtx, FTS5_TOKEN_COLOCATED, "1st", 3, 6, 11); ** xToken(pCtx, 0, "place", 5, 12, 17); ** ** ** It is an error to specify the FTS5_TOKEN_COLOCATED flag the first time ** xToken() is called. Multiple synonyms may be specified for a single token ** by making multiple calls to xToken(FTS5_TOKEN_COLOCATED) in sequence. ** There is no limit to the number of synonyms that may be provided for a ** single token. ** ** In many cases, method (1) above is the best approach. It does not add ** extra data to the FTS index or require FTS5 to query for multiple terms, ** so it is efficient in terms of disk space and query speed. However, it ** does not support prefix queries very well. If, as suggested above, the ** token "first" is substituted for "1st" by the tokenizer, then the query: ** ** ** ... MATCH '1s*' ** ** will not match documents that contain the token "1st" (as the tokenizer ** will probably not map "1s" to any prefix of "first"). ** ** For full prefix support, method (3) may be preferred. In this case, ** because the index contains entries for both "first" and "1st", prefix ** queries such as 'fi*' or '1s*' will match correctly. However, because ** extra entries are added to the FTS index, this method uses more space ** within the database. ** ** Method (2) offers a midpoint between (1) and (3). Using this method, ** a query such as '1s*' will match documents that contain the literal ** token "1st", but not "first" (assuming the tokenizer is not able to ** provide synonyms for prefixes). However, a non-prefix query like '1st' ** will match against "1st" and "first". This method does not require ** extra disk space, as no extra entries are added to the FTS index. ** On the other hand, it may require more CPU cycles to run MATCH queries, ** as separate queries of the FTS index are required for each synonym. ** ** When using methods (2) or (3), it is important that the tokenizer only ** provide synonyms when tokenizing document text (method (2)) or query ** text (method (3)), not both. Doing so will not cause any errors, but is ** inefficient. */ typedef struct Fts5Tokenizer Fts5Tokenizer; typedef struct fts5_tokenizer fts5_tokenizer; struct fts5_tokenizer { int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut); void (*xDelete)(Fts5Tokenizer*); int (*xTokenize)(Fts5Tokenizer*, void *pCtx, int flags, /* Mask of FTS5_TOKENIZE_* flags */ const char *pText, int nText, int (*xToken)( void *pCtx, /* Copy of 2nd argument to xTokenize() */ int tflags, /* Mask of FTS5_TOKEN_* flags */ const char *pToken, /* Pointer to buffer containing token */ int nToken, /* Size of token in bytes */ int iStart, /* Byte offset of token within input text */ int iEnd /* Byte offset of end of token within input text */ ) ); }; /* Flags that may be passed as the third argument to xTokenize() */ #define FTS5_TOKENIZE_QUERY 0x0001 #define FTS5_TOKENIZE_PREFIX 0x0002 #define FTS5_TOKENIZE_DOCUMENT 0x0004 #define FTS5_TOKENIZE_AUX 0x0008 /* Flags that may be passed by the tokenizer implementation back to FTS5 ** as the third argument to the supplied xToken callback. */ #define FTS5_TOKEN_COLOCATED 0x0001 /* Same position as prev. token */ /* ** END OF CUSTOM TOKENIZERS *************************************************************************/ /************************************************************************* ** FTS5 EXTENSION REGISTRATION API */ typedef struct fts5_api fts5_api; struct fts5_api { int iVersion; /* Currently always set to 2 */ /* Create a new tokenizer */ int (*xCreateTokenizer)( fts5_api *pApi, const char *zName, void *pContext, fts5_tokenizer *pTokenizer, void (*xDestroy)(void*) ); /* Find an existing tokenizer */ int (*xFindTokenizer)( fts5_api *pApi, const char *zName, void **ppContext, fts5_tokenizer *pTokenizer ); /* Create a new auxiliary function */ int (*xCreateFunction)( fts5_api *pApi, const char *zName, void *pContext, fts5_extension_function xFunction, void (*xDestroy)(void*) ); }; /* ** END OF REGISTRATION API *************************************************************************/ #if 0 } /* end of the 'extern "C"' block */ #endif #endif /* _FTS5_H */ /******** End of fts5.h *********/ /************** End of sqlite3.h *********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* ** Include the configuration header output by 'configure' if we're using the ** autoconf-based build */ #if defined(_HAVE_SQLITE_CONFIG_H) && !defined(SQLITECONFIG_H) #include "config.h" #define SQLITECONFIG_H 1 #endif /************** Include sqliteLimit.h in the middle of sqliteInt.h ***********/ /************** Begin file sqliteLimit.h *************************************/ /* ** 2007 May 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file defines various limits of what SQLite can process. */ /* ** The maximum length of a TEXT or BLOB in bytes. This also ** limits the size of a row in a table or index. ** ** The hard limit is the ability of a 32-bit signed integer ** to count the size: 2^31-1 or 2147483647. */ #ifndef SQLITE_MAX_LENGTH # define SQLITE_MAX_LENGTH 1000000000 #endif /* ** This is the maximum number of ** ** * Columns in a table ** * Columns in an index ** * Columns in a view ** * Terms in the SET clause of an UPDATE statement ** * Terms in the result set of a SELECT statement ** * Terms in the GROUP BY or ORDER BY clauses of a SELECT statement. ** * Terms in the VALUES clause of an INSERT statement ** ** The hard upper limit here is 32676. Most database people will ** tell you that in a well-normalized database, you usually should ** not have more than a dozen or so columns in any table. And if ** that is the case, there is no point in having more than a few ** dozen values in any of the other situations described above. */ #ifndef SQLITE_MAX_COLUMN # define SQLITE_MAX_COLUMN 2000 #endif /* ** The maximum length of a single SQL statement in bytes. ** ** It used to be the case that setting this value to zero would ** turn the limit off. That is no longer true. It is not possible ** to turn this limit off. */ #ifndef SQLITE_MAX_SQL_LENGTH # define SQLITE_MAX_SQL_LENGTH 1000000000 #endif /* ** The maximum depth of an expression tree. This is limited to ** some extent by SQLITE_MAX_SQL_LENGTH. But sometime you might ** want to place more severe limits on the complexity of an ** expression. A value of 0 means that there is no limit. */ #ifndef SQLITE_MAX_EXPR_DEPTH # define SQLITE_MAX_EXPR_DEPTH 1000 #endif /* ** The maximum number of terms in a compound SELECT statement. ** The code generator for compound SELECT statements does one ** level of recursion for each term. A stack overflow can result ** if the number of terms is too large. In practice, most SQL ** never has more than 3 or 4 terms. Use a value of 0 to disable ** any limit on the number of terms in a compount SELECT. */ #ifndef SQLITE_MAX_COMPOUND_SELECT # define SQLITE_MAX_COMPOUND_SELECT 500 #endif /* ** The maximum number of opcodes in a VDBE program. ** Not currently enforced. */ #ifndef SQLITE_MAX_VDBE_OP # define SQLITE_MAX_VDBE_OP 250000000 #endif /* ** The maximum number of arguments to an SQL function. */ #ifndef SQLITE_MAX_FUNCTION_ARG # define SQLITE_MAX_FUNCTION_ARG 127 #endif /* ** The suggested maximum number of in-memory pages to use for ** the main database table and for temporary tables. ** ** IMPLEMENTATION-OF: R-30185-15359 The default suggested cache size is -2000, ** which means the cache size is limited to 2048000 bytes of memory. ** IMPLEMENTATION-OF: R-48205-43578 The default suggested cache size can be ** altered using the SQLITE_DEFAULT_CACHE_SIZE compile-time options. */ #ifndef SQLITE_DEFAULT_CACHE_SIZE # define SQLITE_DEFAULT_CACHE_SIZE -2000 #endif /* ** The default number of frames to accumulate in the log file before ** checkpointing the database in WAL mode. */ #ifndef SQLITE_DEFAULT_WAL_AUTOCHECKPOINT # define SQLITE_DEFAULT_WAL_AUTOCHECKPOINT 1000 #endif /* ** The maximum number of attached databases. This must be between 0 ** and 125. The upper bound of 125 is because the attached databases are ** counted using a signed 8-bit integer which has a maximum value of 127 ** and we have to allow 2 extra counts for the "main" and "temp" databases. */ #ifndef SQLITE_MAX_ATTACHED # define SQLITE_MAX_ATTACHED 10 #endif /* ** The maximum value of a ?nnn wildcard that the parser will accept. ** If the value exceeds 32767 then extra space is required for the Expr ** structure. But otherwise, we believe that the number can be as large ** as a signed 32-bit integer can hold. */ #ifndef SQLITE_MAX_VARIABLE_NUMBER # define SQLITE_MAX_VARIABLE_NUMBER 32766 #endif /* Maximum page size. The upper bound on this value is 65536. This a limit ** imposed by the use of 16-bit offsets within each page. ** ** Earlier versions of SQLite allowed the user to change this value at ** compile time. This is no longer permitted, on the grounds that it creates ** a library that is technically incompatible with an SQLite library ** compiled with a different limit. If a process operating on a database ** with a page-size of 65536 bytes crashes, then an instance of SQLite ** compiled with the default page-size limit will not be able to rollback ** the aborted transaction. This could lead to database corruption. */ #ifdef SQLITE_MAX_PAGE_SIZE # undef SQLITE_MAX_PAGE_SIZE #endif #define SQLITE_MAX_PAGE_SIZE 65536 /* ** The default size of a database page. */ #ifndef SQLITE_DEFAULT_PAGE_SIZE # define SQLITE_DEFAULT_PAGE_SIZE 4096 #endif #if SQLITE_DEFAULT_PAGE_SIZE>SQLITE_MAX_PAGE_SIZE # undef SQLITE_DEFAULT_PAGE_SIZE # define SQLITE_DEFAULT_PAGE_SIZE SQLITE_MAX_PAGE_SIZE #endif /* ** Ordinarily, if no value is explicitly provided, SQLite creates databases ** with page size SQLITE_DEFAULT_PAGE_SIZE. However, based on certain ** device characteristics (sector-size and atomic write() support), ** SQLite may choose a larger value. This constant is the maximum value ** SQLite will choose on its own. */ #ifndef SQLITE_MAX_DEFAULT_PAGE_SIZE # define SQLITE_MAX_DEFAULT_PAGE_SIZE 8192 #endif #if SQLITE_MAX_DEFAULT_PAGE_SIZE>SQLITE_MAX_PAGE_SIZE # undef SQLITE_MAX_DEFAULT_PAGE_SIZE # define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_PAGE_SIZE #endif /* ** Maximum number of pages in one database file. ** ** This is really just the default value for the max_page_count pragma. ** This value can be lowered (or raised) at run-time using that the ** max_page_count macro. */ #ifndef SQLITE_MAX_PAGE_COUNT # define SQLITE_MAX_PAGE_COUNT 1073741823 #endif /* ** Maximum length (in bytes) of the pattern in a LIKE or GLOB ** operator. */ #ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH # define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000 #endif /* ** Maximum depth of recursion for triggers. ** ** A value of 1 means that a trigger program will not be able to itself ** fire any triggers. A value of 0 means that no trigger programs at all ** may be executed. */ #ifndef SQLITE_MAX_TRIGGER_DEPTH # define SQLITE_MAX_TRIGGER_DEPTH 1000 #endif /************** End of sqliteLimit.h *****************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* Disable nuisance warnings on Borland compilers */ #if defined(__BORLANDC__) #pragma warn -rch /* unreachable code */ #pragma warn -ccc /* Condition is always true or false */ #pragma warn -aus /* Assigned value is never used */ #pragma warn -csu /* Comparing signed and unsigned */ #pragma warn -spa /* Suspicious pointer arithmetic */ #endif /* ** WAL mode depends on atomic aligned 32-bit loads and stores in a few ** places. The following macros try to make this explicit. */ #ifndef __has_extension # define __has_extension(x) 0 /* compatibility with non-clang compilers */ #endif #if GCC_VERSION>=4007000 || __has_extension(c_atomic) # define SQLITE_ATOMIC_INTRINSICS 1 # define AtomicLoad(PTR) __atomic_load_n((PTR),__ATOMIC_RELAXED) # define AtomicStore(PTR,VAL) __atomic_store_n((PTR),(VAL),__ATOMIC_RELAXED) #else # define SQLITE_ATOMIC_INTRINSICS 0 # define AtomicLoad(PTR) (*(PTR)) # define AtomicStore(PTR,VAL) (*(PTR) = (VAL)) #endif /* ** Include standard header files as necessary */ #ifdef HAVE_STDINT_H #include #endif #ifdef HAVE_INTTYPES_H #include #endif /* ** The following macros are used to cast pointers to integers and ** integers to pointers. The way you do this varies from one compiler ** to the next, so we have developed the following set of #if statements ** to generate appropriate macros for a wide range of compilers. ** ** The correct "ANSI" way to do this is to use the intptr_t type. ** Unfortunately, that typedef is not available on all compilers, or ** if it is available, it requires an #include of specific headers ** that vary from one machine to the next. ** ** Ticket #3860: The llvm-gcc-4.2 compiler from Apple chokes on ** the ((void*)&((char*)0)[X]) construct. But MSVC chokes on ((void*)(X)). ** So we have to define the macros in different ways depending on the ** compiler. */ #if defined(HAVE_STDINT_H) /* Use this case if we have ANSI headers */ # define SQLITE_INT_TO_PTR(X) ((void*)(intptr_t)(X)) # define SQLITE_PTR_TO_INT(X) ((int)(intptr_t)(X)) #elif defined(__PTRDIFF_TYPE__) /* This case should work for GCC */ # define SQLITE_INT_TO_PTR(X) ((void*)(__PTRDIFF_TYPE__)(X)) # define SQLITE_PTR_TO_INT(X) ((int)(__PTRDIFF_TYPE__)(X)) #elif !defined(__GNUC__) /* Works for compilers other than LLVM */ # define SQLITE_INT_TO_PTR(X) ((void*)&((char*)0)[X]) # define SQLITE_PTR_TO_INT(X) ((int)(((char*)X)-(char*)0)) #else /* Generates a warning - but it always works */ # define SQLITE_INT_TO_PTR(X) ((void*)(X)) # define SQLITE_PTR_TO_INT(X) ((int)(X)) #endif /* ** A macro to hint to the compiler that a function should not be ** inlined. */ #if defined(__GNUC__) # define SQLITE_NOINLINE __attribute__((noinline)) #elif defined(_MSC_VER) && _MSC_VER>=1310 # define SQLITE_NOINLINE __declspec(noinline) #else # define SQLITE_NOINLINE #endif /* ** Make sure that the compiler intrinsics we desire are enabled when ** compiling with an appropriate version of MSVC unless prevented by ** the SQLITE_DISABLE_INTRINSIC define. */ #if !defined(SQLITE_DISABLE_INTRINSIC) # if defined(_MSC_VER) && _MSC_VER>=1400 # if !defined(_WIN32_WCE) # include # pragma intrinsic(_byteswap_ushort) # pragma intrinsic(_byteswap_ulong) # pragma intrinsic(_byteswap_uint64) # pragma intrinsic(_ReadWriteBarrier) # else # include # endif # endif #endif /* ** The SQLITE_THREADSAFE macro must be defined as 0, 1, or 2. ** 0 means mutexes are permanently disable and the library is never ** threadsafe. 1 means the library is serialized which is the highest ** level of threadsafety. 2 means the library is multithreaded - multiple ** threads can use SQLite as long as no two threads try to use the same ** database connection at the same time. ** ** Older versions of SQLite used an optional THREADSAFE macro. ** We support that for legacy. ** ** To ensure that the correct value of "THREADSAFE" is reported when querying ** for compile-time options at runtime (e.g. "PRAGMA compile_options"), this ** logic is partially replicated in ctime.c. If it is updated here, it should ** also be updated there. */ #if !defined(SQLITE_THREADSAFE) # if defined(THREADSAFE) # define SQLITE_THREADSAFE THREADSAFE # else # define SQLITE_THREADSAFE 1 /* IMP: R-07272-22309 */ # endif #endif /* ** Powersafe overwrite is on by default. But can be turned off using ** the -DSQLITE_POWERSAFE_OVERWRITE=0 command-line option. */ #ifndef SQLITE_POWERSAFE_OVERWRITE # define SQLITE_POWERSAFE_OVERWRITE 1 #endif /* ** EVIDENCE-OF: R-25715-37072 Memory allocation statistics are enabled by ** default unless SQLite is compiled with SQLITE_DEFAULT_MEMSTATUS=0 in ** which case memory allocation statistics are disabled by default. */ #if !defined(SQLITE_DEFAULT_MEMSTATUS) # define SQLITE_DEFAULT_MEMSTATUS 1 #endif /* ** Exactly one of the following macros must be defined in order to ** specify which memory allocation subsystem to use. ** ** SQLITE_SYSTEM_MALLOC // Use normal system malloc() ** SQLITE_WIN32_MALLOC // Use Win32 native heap API ** SQLITE_ZERO_MALLOC // Use a stub allocator that always fails ** SQLITE_MEMDEBUG // Debugging version of system malloc() ** ** On Windows, if the SQLITE_WIN32_MALLOC_VALIDATE macro is defined and the ** assert() macro is enabled, each call into the Win32 native heap subsystem ** will cause HeapValidate to be called. If heap validation should fail, an ** assertion will be triggered. ** ** If none of the above are defined, then set SQLITE_SYSTEM_MALLOC as ** the default. */ #if defined(SQLITE_SYSTEM_MALLOC) \ + defined(SQLITE_WIN32_MALLOC) \ + defined(SQLITE_ZERO_MALLOC) \ + defined(SQLITE_MEMDEBUG)>1 # error "Two or more of the following compile-time configuration options\ are defined but at most one is allowed:\ SQLITE_SYSTEM_MALLOC, SQLITE_WIN32_MALLOC, SQLITE_MEMDEBUG,\ SQLITE_ZERO_MALLOC" #endif #if defined(SQLITE_SYSTEM_MALLOC) \ + defined(SQLITE_WIN32_MALLOC) \ + defined(SQLITE_ZERO_MALLOC) \ + defined(SQLITE_MEMDEBUG)==0 # define SQLITE_SYSTEM_MALLOC 1 #endif /* ** If SQLITE_MALLOC_SOFT_LIMIT is not zero, then try to keep the ** sizes of memory allocations below this value where possible. */ #if !defined(SQLITE_MALLOC_SOFT_LIMIT) # define SQLITE_MALLOC_SOFT_LIMIT 1024 #endif /* ** We need to define _XOPEN_SOURCE as follows in order to enable ** recursive mutexes on most Unix systems and fchmod() on OpenBSD. ** But _XOPEN_SOURCE define causes problems for Mac OS X, so omit ** it. */ #if !defined(_XOPEN_SOURCE) && !defined(__DARWIN__) && !defined(__APPLE__) # define _XOPEN_SOURCE 600 #endif /* ** NDEBUG and SQLITE_DEBUG are opposites. It should always be true that ** defined(NDEBUG)==!defined(SQLITE_DEBUG). If this is not currently true, ** make it true by defining or undefining NDEBUG. ** ** Setting NDEBUG makes the code smaller and faster by disabling the ** assert() statements in the code. So we want the default action ** to be for NDEBUG to be set and NDEBUG to be undefined only if SQLITE_DEBUG ** is set. Thus NDEBUG becomes an opt-in rather than an opt-out ** feature. */ #if !defined(NDEBUG) && !defined(SQLITE_DEBUG) # define NDEBUG 1 #endif #if defined(NDEBUG) && defined(SQLITE_DEBUG) # undef NDEBUG #endif /* ** Enable SQLITE_ENABLE_EXPLAIN_COMMENTS if SQLITE_DEBUG is turned on. */ #if !defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) && defined(SQLITE_DEBUG) # define SQLITE_ENABLE_EXPLAIN_COMMENTS 1 #endif /* ** The testcase() macro is used to aid in coverage testing. When ** doing coverage testing, the condition inside the argument to ** testcase() must be evaluated both true and false in order to ** get full branch coverage. The testcase() macro is inserted ** to help ensure adequate test coverage in places where simple ** condition/decision coverage is inadequate. For example, testcase() ** can be used to make sure boundary values are tested. For ** bitmask tests, testcase() can be used to make sure each bit ** is significant and used at least once. On switch statements ** where multiple cases go to the same block of code, testcase() ** can insure that all cases are evaluated. */ #if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_DEBUG) # ifndef SQLITE_AMALGAMATION extern unsigned int sqlite3CoverageCounter; # endif # define testcase(X) if( X ){ sqlite3CoverageCounter += (unsigned)__LINE__; } #else # define testcase(X) #endif /* ** The TESTONLY macro is used to enclose variable declarations or ** other bits of code that are needed to support the arguments ** within testcase() and assert() macros. */ #if !defined(NDEBUG) || defined(SQLITE_COVERAGE_TEST) # define TESTONLY(X) X #else # define TESTONLY(X) #endif /* ** Sometimes we need a small amount of code such as a variable initialization ** to setup for a later assert() statement. We do not want this code to ** appear when assert() is disabled. The following macro is therefore ** used to contain that setup code. The "VVA" acronym stands for ** "Verification, Validation, and Accreditation". In other words, the ** code within VVA_ONLY() will only run during verification processes. */ #ifndef NDEBUG # define VVA_ONLY(X) X #else # define VVA_ONLY(X) #endif /* ** Disable ALWAYS() and NEVER() (make them pass-throughs) for coverage ** and mutation testing */ #if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_MUTATION_TEST) # define SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS 1 #endif /* ** The ALWAYS and NEVER macros surround boolean expressions which ** are intended to always be true or false, respectively. Such ** expressions could be omitted from the code completely. But they ** are included in a few cases in order to enhance the resilience ** of SQLite to unexpected behavior - to make the code "self-healing" ** or "ductile" rather than being "brittle" and crashing at the first ** hint of unplanned behavior. ** ** In other words, ALWAYS and NEVER are added for defensive code. ** ** When doing coverage testing ALWAYS and NEVER are hard-coded to ** be true and false so that the unreachable code they specify will ** not be counted as untested code. */ #if defined(SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS) # define ALWAYS(X) (1) # define NEVER(X) (0) #elif !defined(NDEBUG) # define ALWAYS(X) ((X)?1:(assert(0),0)) # define NEVER(X) ((X)?(assert(0),1):0) #else # define ALWAYS(X) (X) # define NEVER(X) (X) #endif /* ** Some conditionals are optimizations only. In other words, if the ** conditionals are replaced with a constant 1 (true) or 0 (false) then ** the correct answer is still obtained, though perhaps not as quickly. ** ** The following macros mark these optimizations conditionals. */ #if defined(SQLITE_MUTATION_TEST) # define OK_IF_ALWAYS_TRUE(X) (1) # define OK_IF_ALWAYS_FALSE(X) (0) #else # define OK_IF_ALWAYS_TRUE(X) (X) # define OK_IF_ALWAYS_FALSE(X) (X) #endif /* ** Some malloc failures are only possible if SQLITE_TEST_REALLOC_STRESS is ** defined. We need to defend against those failures when testing with ** SQLITE_TEST_REALLOC_STRESS, but we don't want the unreachable branches ** during a normal build. The following macro can be used to disable tests ** that are always false except when SQLITE_TEST_REALLOC_STRESS is set. */ #if defined(SQLITE_TEST_REALLOC_STRESS) # define ONLY_IF_REALLOC_STRESS(X) (X) #elif !defined(NDEBUG) # define ONLY_IF_REALLOC_STRESS(X) ((X)?(assert(0),1):0) #else # define ONLY_IF_REALLOC_STRESS(X) (0) #endif /* ** Declarations used for tracing the operating system interfaces. */ #if defined(SQLITE_FORCE_OS_TRACE) || defined(SQLITE_TEST) || \ (defined(SQLITE_DEBUG) && SQLITE_OS_WIN) extern int sqlite3OSTrace; # define OSTRACE(X) if( sqlite3OSTrace ) sqlite3DebugPrintf X # define SQLITE_HAVE_OS_TRACE #else # define OSTRACE(X) # undef SQLITE_HAVE_OS_TRACE #endif /* ** Is the sqlite3ErrName() function needed in the build? Currently, ** it is needed by "mutex_w32.c" (when debugging), "os_win.c" (when ** OSTRACE is enabled), and by several "test*.c" files (which are ** compiled using SQLITE_TEST). */ #if defined(SQLITE_HAVE_OS_TRACE) || defined(SQLITE_TEST) || \ (defined(SQLITE_DEBUG) && SQLITE_OS_WIN) # define SQLITE_NEED_ERR_NAME #else # undef SQLITE_NEED_ERR_NAME #endif /* ** SQLITE_ENABLE_EXPLAIN_COMMENTS is incompatible with SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_OMIT_EXPLAIN # undef SQLITE_ENABLE_EXPLAIN_COMMENTS #endif /* ** SQLITE_OMIT_VIRTUALTABLE implies SQLITE_OMIT_ALTERTABLE */ #if defined(SQLITE_OMIT_VIRTUALTABLE) && !defined(SQLITE_OMIT_ALTERTABLE) # define SQLITE_OMIT_ALTERTABLE #endif /* ** Return true (non-zero) if the input is an integer that is too large ** to fit in 32-bits. This macro is used inside of various testcase() ** macros to verify that we have tested SQLite for large-file support. */ #define IS_BIG_INT(X) (((X)&~(i64)0xffffffff)!=0) /* ** The macro unlikely() is a hint that surrounds a boolean ** expression that is usually false. Macro likely() surrounds ** a boolean expression that is usually true. These hints could, ** in theory, be used by the compiler to generate better code, but ** currently they are just comments for human readers. */ #define likely(X) (X) #define unlikely(X) (X) /************** Include hash.h in the middle of sqliteInt.h ******************/ /************** Begin file hash.h ********************************************/ /* ** 2001 September 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the header file for the generic hash-table implementation ** used in SQLite. */ #ifndef SQLITE_HASH_H #define SQLITE_HASH_H /* Forward declarations of structures. */ typedef struct Hash Hash; typedef struct HashElem HashElem; /* A complete hash table is an instance of the following structure. ** The internals of this structure are intended to be opaque -- client ** code should not attempt to access or modify the fields of this structure ** directly. Change this structure only by using the routines below. ** However, some of the "procedures" and "functions" for modifying and ** accessing this structure are really macros, so we can't really make ** this structure opaque. ** ** All elements of the hash table are on a single doubly-linked list. ** Hash.first points to the head of this list. ** ** There are Hash.htsize buckets. Each bucket points to a spot in ** the global doubly-linked list. The contents of the bucket are the ** element pointed to plus the next _ht.count-1 elements in the list. ** ** Hash.htsize and Hash.ht may be zero. In that case lookup is done ** by a linear search of the global list. For small tables, the ** Hash.ht table is never allocated because if there are few elements ** in the table, it is faster to do a linear search than to manage ** the hash table. */ struct Hash { unsigned int htsize; /* Number of buckets in the hash table */ unsigned int count; /* Number of entries in this table */ HashElem *first; /* The first element of the array */ struct _ht { /* the hash table */ unsigned int count; /* Number of entries with this hash */ HashElem *chain; /* Pointer to first entry with this hash */ } *ht; }; /* Each element in the hash table is an instance of the following ** structure. All elements are stored on a single doubly-linked list. ** ** Again, this structure is intended to be opaque, but it can't really ** be opaque because it is used by macros. */ struct HashElem { HashElem *next, *prev; /* Next and previous elements in the table */ void *data; /* Data associated with this element */ const char *pKey; /* Key associated with this element */ }; /* ** Access routines. To delete, insert a NULL pointer. */ SQLITE_PRIVATE void sqlite3HashInit(Hash*); SQLITE_PRIVATE void *sqlite3HashInsert(Hash*, const char *pKey, void *pData); SQLITE_PRIVATE void *sqlite3HashFind(const Hash*, const char *pKey); SQLITE_PRIVATE void sqlite3HashClear(Hash*); /* ** Macros for looping over all elements of a hash table. The idiom is ** like this: ** ** Hash h; ** HashElem *p; ** ... ** for(p=sqliteHashFirst(&h); p; p=sqliteHashNext(p)){ ** SomeStructure *pData = sqliteHashData(p); ** // do something with pData ** } */ #define sqliteHashFirst(H) ((H)->first) #define sqliteHashNext(E) ((E)->next) #define sqliteHashData(E) ((E)->data) /* #define sqliteHashKey(E) ((E)->pKey) // NOT USED */ /* #define sqliteHashKeysize(E) ((E)->nKey) // NOT USED */ /* ** Number of entries in a hash table */ #define sqliteHashCount(H) ((H)->count) #endif /* SQLITE_HASH_H */ /************** End of hash.h ************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include parse.h in the middle of sqliteInt.h *****************/ /************** Begin file parse.h *******************************************/ #define TK_SEMI 1 #define TK_EXPLAIN 2 #define TK_QUERY 3 #define TK_PLAN 4 #define TK_BEGIN 5 #define TK_TRANSACTION 6 #define TK_DEFERRED 7 #define TK_IMMEDIATE 8 #define TK_EXCLUSIVE 9 #define TK_COMMIT 10 #define TK_END 11 #define TK_ROLLBACK 12 #define TK_SAVEPOINT 13 #define TK_RELEASE 14 #define TK_TO 15 #define TK_TABLE 16 #define TK_CREATE 17 #define TK_IF 18 #define TK_NOT 19 #define TK_EXISTS 20 #define TK_TEMP 21 #define TK_LP 22 #define TK_RP 23 #define TK_AS 24 #define TK_COMMA 25 #define TK_WITHOUT 26 #define TK_ABORT 27 #define TK_ACTION 28 #define TK_AFTER 29 #define TK_ANALYZE 30 #define TK_ASC 31 #define TK_ATTACH 32 #define TK_BEFORE 33 #define TK_BY 34 #define TK_CASCADE 35 #define TK_CAST 36 #define TK_CONFLICT 37 #define TK_DATABASE 38 #define TK_DESC 39 #define TK_DETACH 40 #define TK_EACH 41 #define TK_FAIL 42 #define TK_OR 43 #define TK_AND 44 #define TK_IS 45 #define TK_MATCH 46 #define TK_LIKE_KW 47 #define TK_BETWEEN 48 #define TK_IN 49 #define TK_ISNULL 50 #define TK_NOTNULL 51 #define TK_NE 52 #define TK_EQ 53 #define TK_GT 54 #define TK_LE 55 #define TK_LT 56 #define TK_GE 57 #define TK_ESCAPE 58 #define TK_ID 59 #define TK_COLUMNKW 60 #define TK_DO 61 #define TK_FOR 62 #define TK_IGNORE 63 #define TK_INITIALLY 64 #define TK_INSTEAD 65 #define TK_NO 66 #define TK_KEY 67 #define TK_OF 68 #define TK_OFFSET 69 #define TK_PRAGMA 70 #define TK_RAISE 71 #define TK_RECURSIVE 72 #define TK_REPLACE 73 #define TK_RESTRICT 74 #define TK_ROW 75 #define TK_ROWS 76 #define TK_TRIGGER 77 #define TK_VACUUM 78 #define TK_VIEW 79 #define TK_VIRTUAL 80 #define TK_WITH 81 #define TK_NULLS 82 #define TK_FIRST 83 #define TK_LAST 84 #define TK_CURRENT 85 #define TK_FOLLOWING 86 #define TK_PARTITION 87 #define TK_PRECEDING 88 #define TK_RANGE 89 #define TK_UNBOUNDED 90 #define TK_EXCLUDE 91 #define TK_GROUPS 92 #define TK_OTHERS 93 #define TK_TIES 94 #define TK_GENERATED 95 #define TK_ALWAYS 96 #define TK_MATERIALIZED 97 #define TK_REINDEX 98 #define TK_RENAME 99 #define TK_CTIME_KW 100 #define TK_ANY 101 #define TK_BITAND 102 #define TK_BITOR 103 #define TK_LSHIFT 104 #define TK_RSHIFT 105 #define TK_PLUS 106 #define TK_MINUS 107 #define TK_STAR 108 #define TK_SLASH 109 #define TK_REM 110 #define TK_CONCAT 111 #define TK_PTR 112 #define TK_COLLATE 113 #define TK_BITNOT 114 #define TK_ON 115 #define TK_INDEXED 116 #define TK_STRING 117 #define TK_JOIN_KW 118 #define TK_CONSTRAINT 119 #define TK_DEFAULT 120 #define TK_NULL 121 #define TK_PRIMARY 122 #define TK_UNIQUE 123 #define TK_CHECK 124 #define TK_REFERENCES 125 #define TK_AUTOINCR 126 #define TK_INSERT 127 #define TK_DELETE 128 #define TK_UPDATE 129 #define TK_SET 130 #define TK_DEFERRABLE 131 #define TK_FOREIGN 132 #define TK_DROP 133 #define TK_UNION 134 #define TK_ALL 135 #define TK_EXCEPT 136 #define TK_INTERSECT 137 #define TK_SELECT 138 #define TK_VALUES 139 #define TK_DISTINCT 140 #define TK_DOT 141 #define TK_FROM 142 #define TK_JOIN 143 #define TK_USING 144 #define TK_ORDER 145 #define TK_GROUP 146 #define TK_HAVING 147 #define TK_LIMIT 148 #define TK_WHERE 149 #define TK_RETURNING 150 #define TK_INTO 151 #define TK_NOTHING 152 #define TK_FLOAT 153 #define TK_BLOB 154 #define TK_INTEGER 155 #define TK_VARIABLE 156 #define TK_CASE 157 #define TK_WHEN 158 #define TK_THEN 159 #define TK_ELSE 160 #define TK_INDEX 161 #define TK_ALTER 162 #define TK_ADD 163 #define TK_WINDOW 164 #define TK_OVER 165 #define TK_FILTER 166 #define TK_COLUMN 167 #define TK_AGG_FUNCTION 168 #define TK_AGG_COLUMN 169 #define TK_TRUEFALSE 170 #define TK_ISNOT 171 #define TK_FUNCTION 172 #define TK_UMINUS 173 #define TK_UPLUS 174 #define TK_TRUTH 175 #define TK_REGISTER 176 #define TK_VECTOR 177 #define TK_SELECT_COLUMN 178 #define TK_IF_NULL_ROW 179 #define TK_ASTERISK 180 #define TK_SPAN 181 #define TK_ERROR 182 #define TK_SPACE 183 #define TK_ILLEGAL 184 /************** End of parse.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ #include #include #include #include #include /* ** Use a macro to replace memcpy() if compiled with SQLITE_INLINE_MEMCPY. ** This allows better measurements of where memcpy() is used when running ** cachegrind. But this macro version of memcpy() is very slow so it ** should not be used in production. This is a performance measurement ** hack only. */ #ifdef SQLITE_INLINE_MEMCPY # define memcpy(D,S,N) {char*xxd=(char*)(D);const char*xxs=(const char*)(S);\ int xxn=(N);while(xxn-->0)*(xxd++)=*(xxs++);} #endif /* ** If compiling for a processor that lacks floating point support, ** substitute integer for floating-point */ #ifdef SQLITE_OMIT_FLOATING_POINT # define double sqlite_int64 # define float sqlite_int64 # define LONGDOUBLE_TYPE sqlite_int64 # ifndef SQLITE_BIG_DBL # define SQLITE_BIG_DBL (((sqlite3_int64)1)<<50) # endif # define SQLITE_OMIT_DATETIME_FUNCS 1 # define SQLITE_OMIT_TRACE 1 # undef SQLITE_MIXED_ENDIAN_64BIT_FLOAT # undef SQLITE_HAVE_ISNAN #endif #ifndef SQLITE_BIG_DBL # define SQLITE_BIG_DBL (1e99) #endif /* ** OMIT_TEMPDB is set to 1 if SQLITE_OMIT_TEMPDB is defined, or 0 ** afterward. Having this macro allows us to cause the C compiler ** to omit code used by TEMP tables without messy #ifndef statements. */ #ifdef SQLITE_OMIT_TEMPDB #define OMIT_TEMPDB 1 #else #define OMIT_TEMPDB 0 #endif /* ** The "file format" number is an integer that is incremented whenever ** the VDBE-level file format changes. The following macros define the ** the default file format for new databases and the maximum file format ** that the library can read. */ #define SQLITE_MAX_FILE_FORMAT 4 #ifndef SQLITE_DEFAULT_FILE_FORMAT # define SQLITE_DEFAULT_FILE_FORMAT 4 #endif /* ** Determine whether triggers are recursive by default. This can be ** changed at run-time using a pragma. */ #ifndef SQLITE_DEFAULT_RECURSIVE_TRIGGERS # define SQLITE_DEFAULT_RECURSIVE_TRIGGERS 0 #endif /* ** Provide a default value for SQLITE_TEMP_STORE in case it is not specified ** on the command-line */ #ifndef SQLITE_TEMP_STORE # define SQLITE_TEMP_STORE 1 #endif /* ** If no value has been provided for SQLITE_MAX_WORKER_THREADS, or if ** SQLITE_TEMP_STORE is set to 3 (never use temporary files), set it ** to zero. */ #if SQLITE_TEMP_STORE==3 || SQLITE_THREADSAFE==0 # undef SQLITE_MAX_WORKER_THREADS # define SQLITE_MAX_WORKER_THREADS 0 #endif #ifndef SQLITE_MAX_WORKER_THREADS # define SQLITE_MAX_WORKER_THREADS 8 #endif #ifndef SQLITE_DEFAULT_WORKER_THREADS # define SQLITE_DEFAULT_WORKER_THREADS 0 #endif #if SQLITE_DEFAULT_WORKER_THREADS>SQLITE_MAX_WORKER_THREADS # undef SQLITE_MAX_WORKER_THREADS # define SQLITE_MAX_WORKER_THREADS SQLITE_DEFAULT_WORKER_THREADS #endif /* ** The default initial allocation for the pagecache when using separate ** pagecaches for each database connection. A positive number is the ** number of pages. A negative number N translations means that a buffer ** of -1024*N bytes is allocated and used for as many pages as it will hold. ** ** The default value of "20" was chosen to minimize the run-time of the ** speedtest1 test program with options: --shrink-memory --reprepare */ #ifndef SQLITE_DEFAULT_PCACHE_INITSZ # define SQLITE_DEFAULT_PCACHE_INITSZ 20 #endif /* ** Default value for the SQLITE_CONFIG_SORTERREF_SIZE option. */ #ifndef SQLITE_DEFAULT_SORTERREF_SIZE # define SQLITE_DEFAULT_SORTERREF_SIZE 0x7fffffff #endif /* ** The compile-time options SQLITE_MMAP_READWRITE and ** SQLITE_ENABLE_BATCH_ATOMIC_WRITE are not compatible with one another. ** You must choose one or the other (or neither) but not both. */ #if defined(SQLITE_MMAP_READWRITE) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) #error Cannot use both SQLITE_MMAP_READWRITE and SQLITE_ENABLE_BATCH_ATOMIC_WRITE #endif /* ** GCC does not define the offsetof() macro so we'll have to do it ** ourselves. */ #ifndef offsetof #define offsetof(STRUCTURE,FIELD) ((int)((char*)&((STRUCTURE*)0)->FIELD)) #endif /* ** Macros to compute minimum and maximum of two numbers. */ #ifndef MIN # define MIN(A,B) ((A)<(B)?(A):(B)) #endif #ifndef MAX # define MAX(A,B) ((A)>(B)?(A):(B)) #endif /* ** Swap two objects of type TYPE. */ #define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;} /* ** Check to see if this machine uses EBCDIC. (Yes, believe it or ** not, there are still machines out there that use EBCDIC.) */ #if 'A' == '\301' # define SQLITE_EBCDIC 1 #else # define SQLITE_ASCII 1 #endif /* ** Integers of known sizes. These typedefs might change for architectures ** where the sizes very. Preprocessor macros are available so that the ** types can be conveniently redefined at compile-type. Like this: ** ** cc '-DUINTPTR_TYPE=long long int' ... */ #ifndef UINT32_TYPE # ifdef HAVE_UINT32_T # define UINT32_TYPE uint32_t # else # define UINT32_TYPE unsigned int # endif #endif #ifndef UINT16_TYPE # ifdef HAVE_UINT16_T # define UINT16_TYPE uint16_t # else # define UINT16_TYPE unsigned short int # endif #endif #ifndef INT16_TYPE # ifdef HAVE_INT16_T # define INT16_TYPE int16_t # else # define INT16_TYPE short int # endif #endif #ifndef UINT8_TYPE # ifdef HAVE_UINT8_T # define UINT8_TYPE uint8_t # else # define UINT8_TYPE unsigned char # endif #endif #ifndef INT8_TYPE # ifdef HAVE_INT8_T # define INT8_TYPE int8_t # else # define INT8_TYPE signed char # endif #endif #ifndef LONGDOUBLE_TYPE # define LONGDOUBLE_TYPE long double #endif typedef sqlite_int64 i64; /* 8-byte signed integer */ typedef sqlite_uint64 u64; /* 8-byte unsigned integer */ typedef UINT32_TYPE u32; /* 4-byte unsigned integer */ typedef UINT16_TYPE u16; /* 2-byte unsigned integer */ typedef INT16_TYPE i16; /* 2-byte signed integer */ typedef UINT8_TYPE u8; /* 1-byte unsigned integer */ typedef INT8_TYPE i8; /* 1-byte signed integer */ /* ** SQLITE_MAX_U32 is a u64 constant that is the maximum u64 value ** that can be stored in a u32 without loss of data. The value ** is 0x00000000ffffffff. But because of quirks of some compilers, we ** have to specify the value in the less intuitive manner shown: */ #define SQLITE_MAX_U32 ((((u64)1)<<32)-1) /* ** The datatype used to store estimates of the number of rows in a ** table or index. This is an unsigned integer type. For 99.9% of ** the world, a 32-bit integer is sufficient. But a 64-bit integer ** can be used at compile-time if desired. */ #ifdef SQLITE_64BIT_STATS typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */ #else typedef u32 tRowcnt; /* 32-bit is the default */ #endif /* ** Estimated quantities used for query planning are stored as 16-bit ** logarithms. For quantity X, the value stored is 10*log2(X). This ** gives a possible range of values of approximately 1.0e986 to 1e-986. ** But the allowed values are "grainy". Not every value is representable. ** For example, quantities 16 and 17 are both represented by a LogEst ** of 40. However, since LogEst quantities are suppose to be estimates, ** not exact values, this imprecision is not a problem. ** ** "LogEst" is short for "Logarithmic Estimate". ** ** Examples: ** 1 -> 0 20 -> 43 10000 -> 132 ** 2 -> 10 25 -> 46 25000 -> 146 ** 3 -> 16 100 -> 66 1000000 -> 199 ** 4 -> 20 1000 -> 99 1048576 -> 200 ** 10 -> 33 1024 -> 100 4294967296 -> 320 ** ** The LogEst can be negative to indicate fractional values. ** Examples: ** ** 0.5 -> -10 0.1 -> -33 0.0625 -> -40 */ typedef INT16_TYPE LogEst; /* ** Set the SQLITE_PTRSIZE macro to the number of bytes in a pointer */ #ifndef SQLITE_PTRSIZE # if defined(__SIZEOF_POINTER__) # define SQLITE_PTRSIZE __SIZEOF_POINTER__ # elif defined(i386) || defined(__i386__) || defined(_M_IX86) || \ defined(_M_ARM) || defined(__arm__) || defined(__x86) || \ (defined(__APPLE__) && defined(__POWERPC__)) || \ (defined(__TOS_AIX__) && !defined(__64BIT__)) # define SQLITE_PTRSIZE 4 # else # define SQLITE_PTRSIZE 8 # endif #endif /* The uptr type is an unsigned integer large enough to hold a pointer */ #if defined(HAVE_STDINT_H) typedef uintptr_t uptr; #elif SQLITE_PTRSIZE==4 typedef u32 uptr; #else typedef u64 uptr; #endif /* ** The SQLITE_WITHIN(P,S,E) macro checks to see if pointer P points to ** something between S (inclusive) and E (exclusive). ** ** In other words, S is a buffer and E is a pointer to the first byte after ** the end of buffer S. This macro returns true if P points to something ** contained within the buffer S. */ #define SQLITE_WITHIN(P,S,E) (((uptr)(P)>=(uptr)(S))&&((uptr)(P)<(uptr)(E))) /* ** Macros to determine whether the machine is big or little endian, ** and whether or not that determination is run-time or compile-time. ** ** For best performance, an attempt is made to guess at the byte-order ** using C-preprocessor macros. If that is unsuccessful, or if ** -DSQLITE_BYTEORDER=0 is set, then byte-order is determined ** at run-time. */ #ifndef SQLITE_BYTEORDER # if defined(i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || defined(_M_X64) || \ defined(_M_AMD64) || defined(_M_ARM) || defined(__x86) || \ defined(__ARMEL__) || defined(__AARCH64EL__) || defined(_M_ARM64) # define SQLITE_BYTEORDER 1234 # elif defined(sparc) || defined(__ppc__) || \ defined(__ARMEB__) || defined(__AARCH64EB__) # define SQLITE_BYTEORDER 4321 # else # define SQLITE_BYTEORDER 0 # endif #endif #if SQLITE_BYTEORDER==4321 # define SQLITE_BIGENDIAN 1 # define SQLITE_LITTLEENDIAN 0 # define SQLITE_UTF16NATIVE SQLITE_UTF16BE #elif SQLITE_BYTEORDER==1234 # define SQLITE_BIGENDIAN 0 # define SQLITE_LITTLEENDIAN 1 # define SQLITE_UTF16NATIVE SQLITE_UTF16LE #else # ifdef SQLITE_AMALGAMATION const int sqlite3one = 1; # else extern const int sqlite3one; # endif # define SQLITE_BIGENDIAN (*(char *)(&sqlite3one)==0) # define SQLITE_LITTLEENDIAN (*(char *)(&sqlite3one)==1) # define SQLITE_UTF16NATIVE (SQLITE_BIGENDIAN?SQLITE_UTF16BE:SQLITE_UTF16LE) #endif /* ** Constants for the largest and smallest possible 64-bit signed integers. ** These macros are designed to work correctly on both 32-bit and 64-bit ** compilers. */ #define LARGEST_INT64 (0xffffffff|(((i64)0x7fffffff)<<32)) #define LARGEST_UINT64 (0xffffffff|(((u64)0xffffffff)<<32)) #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) /* ** Round up a number to the next larger multiple of 8. This is used ** to force 8-byte alignment on 64-bit architectures. */ #define ROUND8(x) (((x)+7)&~7) /* ** Round down to the nearest multiple of 8 */ #define ROUNDDOWN8(x) ((x)&~7) /* ** Assert that the pointer X is aligned to an 8-byte boundary. This ** macro is used only within assert() to verify that the code gets ** all alignment restrictions correct. ** ** Except, if SQLITE_4_BYTE_ALIGNED_MALLOC is defined, then the ** underlying malloc() implementation might return us 4-byte aligned ** pointers. In that case, only verify 4-byte alignment. */ #ifdef SQLITE_4_BYTE_ALIGNED_MALLOC # define EIGHT_BYTE_ALIGNMENT(X) ((((char*)(X) - (char*)0)&3)==0) #else # define EIGHT_BYTE_ALIGNMENT(X) ((((char*)(X) - (char*)0)&7)==0) #endif /* ** Disable MMAP on platforms where it is known to not work */ #if defined(__OpenBSD__) || defined(__QNXNTO__) # undef SQLITE_MAX_MMAP_SIZE # define SQLITE_MAX_MMAP_SIZE 0 #endif /* ** Default maximum size of memory used by memory-mapped I/O in the VFS */ #ifdef __APPLE__ # include #endif #ifndef SQLITE_MAX_MMAP_SIZE # if defined(__linux__) \ || defined(_WIN32) \ || (defined(__APPLE__) && defined(__MACH__)) \ || defined(__sun) \ || defined(__FreeBSD__) \ || defined(__DragonFly__) # define SQLITE_MAX_MMAP_SIZE 0x7fff0000 /* 2147418112 */ # else # define SQLITE_MAX_MMAP_SIZE 0 # endif #endif /* ** The default MMAP_SIZE is zero on all platforms. Or, even if a larger ** default MMAP_SIZE is specified at compile-time, make sure that it does ** not exceed the maximum mmap size. */ #ifndef SQLITE_DEFAULT_MMAP_SIZE # define SQLITE_DEFAULT_MMAP_SIZE 0 #endif #if SQLITE_DEFAULT_MMAP_SIZE>SQLITE_MAX_MMAP_SIZE # undef SQLITE_DEFAULT_MMAP_SIZE # define SQLITE_DEFAULT_MMAP_SIZE SQLITE_MAX_MMAP_SIZE #endif /* ** SELECTTRACE_ENABLED will be either 1 or 0 depending on whether or not ** the Select query generator tracing logic is turned on. */ #if !defined(SQLITE_AMALGAMATION) SQLITE_PRIVATE u32 sqlite3SelectTrace; #endif #if defined(SQLITE_DEBUG) \ && (defined(SQLITE_TEST) || defined(SQLITE_ENABLE_SELECTTRACE)) # define SELECTTRACE_ENABLED 1 # define SELECTTRACE(K,P,S,X) \ if(sqlite3SelectTrace&(K)) \ sqlite3DebugPrintf("%u/%d/%p: ",(S)->selId,(P)->addrExplain,(S)),\ sqlite3DebugPrintf X #else # define SELECTTRACE(K,P,S,X) # define SELECTTRACE_ENABLED 0 #endif /* ** Macros for "wheretrace" */ SQLITE_PRIVATE u32 sqlite3WhereTrace; #if defined(SQLITE_DEBUG) \ && (defined(SQLITE_TEST) || defined(SQLITE_ENABLE_WHERETRACE)) # define WHERETRACE(K,X) if(sqlite3WhereTrace&(K)) sqlite3DebugPrintf X # define WHERETRACE_ENABLED 1 #else # define WHERETRACE(K,X) #endif /* ** An instance of the following structure is used to store the busy-handler ** callback for a given sqlite handle. ** ** The sqlite.busyHandler member of the sqlite struct contains the busy ** callback for the database handle. Each pager opened via the sqlite ** handle is passed a pointer to sqlite.busyHandler. The busy-handler ** callback is currently invoked only from within pager.c. */ typedef struct BusyHandler BusyHandler; struct BusyHandler { int (*xBusyHandler)(void *,int); /* The busy callback */ void *pBusyArg; /* First arg to busy callback */ int nBusy; /* Incremented with each busy call */ }; /* ** Name of table that holds the database schema. ** ** The PREFERRED names are used whereever possible. But LEGACY is also ** used for backwards compatibility. ** ** 1. Queries can use either the PREFERRED or the LEGACY names ** 2. The sqlite3_set_authorizer() callback uses the LEGACY name ** 3. The PRAGMA table_list statement uses the PREFERRED name ** ** The LEGACY names are stored in the internal symbol hash table ** in support of (2). Names are translated using sqlite3PreferredTableName() ** for (3). The sqlite3FindTable() function takes care of translating ** names for (1). ** ** Note that "sqlite_temp_schema" can also be called "temp.sqlite_schema". */ #define LEGACY_SCHEMA_TABLE "sqlite_master" #define LEGACY_TEMP_SCHEMA_TABLE "sqlite_temp_master" #define PREFERRED_SCHEMA_TABLE "sqlite_schema" #define PREFERRED_TEMP_SCHEMA_TABLE "sqlite_temp_schema" /* ** The root-page of the schema table. */ #define SCHEMA_ROOT 1 /* ** The name of the schema table. The name is different for TEMP. */ #define SCHEMA_TABLE(x) \ ((!OMIT_TEMPDB)&&(x==1)?LEGACY_TEMP_SCHEMA_TABLE:LEGACY_SCHEMA_TABLE) /* ** A convenience macro that returns the number of elements in ** an array. */ #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0]))) /* ** Determine if the argument is a power of two */ #define IsPowerOfTwo(X) (((X)&((X)-1))==0) /* ** The following value as a destructor means to use sqlite3DbFree(). ** The sqlite3DbFree() routine requires two parameters instead of the ** one parameter that destructors normally want. So we have to introduce ** this magic value that the code knows to handle differently. Any ** pointer will work here as long as it is distinct from SQLITE_STATIC ** and SQLITE_TRANSIENT. */ #define SQLITE_DYNAMIC ((sqlite3_destructor_type)sqlite3OomFault) /* ** When SQLITE_OMIT_WSD is defined, it means that the target platform does ** not support Writable Static Data (WSD) such as global and static variables. ** All variables must either be on the stack or dynamically allocated from ** the heap. When WSD is unsupported, the variable declarations scattered ** throughout the SQLite code must become constants instead. The SQLITE_WSD ** macro is used for this purpose. And instead of referencing the variable ** directly, we use its constant as a key to lookup the run-time allocated ** buffer that holds real variable. The constant is also the initializer ** for the run-time allocated buffer. ** ** In the usual case where WSD is supported, the SQLITE_WSD and GLOBAL ** macros become no-ops and have zero performance impact. */ #ifdef SQLITE_OMIT_WSD #define SQLITE_WSD const #define GLOBAL(t,v) (*(t*)sqlite3_wsd_find((void*)&(v), sizeof(v))) #define sqlite3GlobalConfig GLOBAL(struct Sqlite3Config, sqlite3Config) SQLITE_API int sqlite3_wsd_init(int N, int J); SQLITE_API void *sqlite3_wsd_find(void *K, int L); #else #define SQLITE_WSD #define GLOBAL(t,v) v #define sqlite3GlobalConfig sqlite3Config #endif /* ** The following macros are used to suppress compiler warnings and to ** make it clear to human readers when a function parameter is deliberately ** left unused within the body of a function. This usually happens when ** a function is called via a function pointer. For example the ** implementation of an SQL aggregate step callback may not use the ** parameter indicating the number of arguments passed to the aggregate, ** if it knows that this is enforced elsewhere. ** ** When a function parameter is not used at all within the body of a function, ** it is generally named "NotUsed" or "NotUsed2" to make things even clearer. ** However, these macros may also be used to suppress warnings related to ** parameters that may or may not be used depending on compilation options. ** For example those parameters only used in assert() statements. In these ** cases the parameters are named as per the usual conventions. */ #define UNUSED_PARAMETER(x) (void)(x) #define UNUSED_PARAMETER2(x,y) UNUSED_PARAMETER(x),UNUSED_PARAMETER(y) /* ** Forward references to structures */ typedef struct AggInfo AggInfo; typedef struct AuthContext AuthContext; typedef struct AutoincInfo AutoincInfo; typedef struct Bitvec Bitvec; typedef struct CollSeq CollSeq; typedef struct Column Column; typedef struct Cte Cte; typedef struct CteUse CteUse; typedef struct Db Db; typedef struct DbFixer DbFixer; typedef struct Schema Schema; typedef struct Expr Expr; typedef struct ExprList ExprList; typedef struct FKey FKey; typedef struct FuncDestructor FuncDestructor; typedef struct FuncDef FuncDef; typedef struct FuncDefHash FuncDefHash; typedef struct IdList IdList; typedef struct Index Index; typedef struct IndexSample IndexSample; typedef struct KeyClass KeyClass; typedef struct KeyInfo KeyInfo; typedef struct Lookaside Lookaside; typedef struct LookasideSlot LookasideSlot; typedef struct Module Module; typedef struct NameContext NameContext; typedef struct Parse Parse; typedef struct ParseCleanup ParseCleanup; typedef struct PreUpdate PreUpdate; typedef struct PrintfArguments PrintfArguments; typedef struct RenameToken RenameToken; typedef struct Returning Returning; typedef struct RowSet RowSet; typedef struct Savepoint Savepoint; typedef struct Select Select; typedef struct SQLiteThread SQLiteThread; typedef struct SelectDest SelectDest; typedef struct SrcItem SrcItem; typedef struct SrcList SrcList; typedef struct sqlite3_str StrAccum; /* Internal alias for sqlite3_str */ typedef struct Table Table; typedef struct TableLock TableLock; typedef struct Token Token; typedef struct TreeView TreeView; typedef struct Trigger Trigger; typedef struct TriggerPrg TriggerPrg; typedef struct TriggerStep TriggerStep; typedef struct UnpackedRecord UnpackedRecord; typedef struct Upsert Upsert; typedef struct VTable VTable; typedef struct VtabCtx VtabCtx; typedef struct Walker Walker; typedef struct WhereInfo WhereInfo; typedef struct Window Window; typedef struct With With; /* ** The bitmask datatype defined below is used for various optimizations. ** ** Changing this from a 64-bit to a 32-bit type limits the number of ** tables in a join to 32 instead of 64. But it also reduces the size ** of the library by 738 bytes on ix86. */ #ifdef SQLITE_BITMASK_TYPE typedef SQLITE_BITMASK_TYPE Bitmask; #else typedef u64 Bitmask; #endif /* ** The number of bits in a Bitmask. "BMS" means "BitMask Size". */ #define BMS ((int)(sizeof(Bitmask)*8)) /* ** A bit in a Bitmask */ #define MASKBIT(n) (((Bitmask)1)<<(n)) #define MASKBIT64(n) (((u64)1)<<(n)) #define MASKBIT32(n) (((unsigned int)1)<<(n)) #define SMASKBIT32(n) ((n)<=31?((unsigned int)1)<<(n):0) #define ALLBITS ((Bitmask)-1) /* A VList object records a mapping between parameters/variables/wildcards ** in the SQL statement (such as $abc, @pqr, or :xyz) and the integer ** variable number associated with that parameter. See the format description ** on the sqlite3VListAdd() routine for more information. A VList is really ** just an array of integers. */ typedef int VList; /* ** Defer sourcing vdbe.h and btree.h until after the "u8" and ** "BusyHandler" typedefs. vdbe.h also requires a few of the opaque ** pointer types (i.e. FuncDef) defined above. */ /************** Include pager.h in the middle of sqliteInt.h *****************/ /************** Begin file pager.h *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the sqlite page cache ** subsystem. The page cache subsystem reads and writes a file a page ** at a time and provides a journal for rollback. */ #ifndef SQLITE_PAGER_H #define SQLITE_PAGER_H /* ** Default maximum size for persistent journal files. A negative ** value means no limit. This value may be overridden using the ** sqlite3PagerJournalSizeLimit() API. See also "PRAGMA journal_size_limit". */ #ifndef SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT #define SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT -1 #endif /* ** The type used to represent a page number. The first page in a file ** is called page 1. 0 is used to represent "not a page". */ typedef u32 Pgno; /* ** Each open file is managed by a separate instance of the "Pager" structure. */ typedef struct Pager Pager; /* ** Handle type for pages. */ typedef struct PgHdr DbPage; /* ** Page number PAGER_MJ_PGNO is never used in an SQLite database (it is ** reserved for working around a windows/posix incompatibility). It is ** used in the journal to signify that the remainder of the journal file ** is devoted to storing a super-journal name - there are no more pages to ** roll back. See comments for function writeSuperJournal() in pager.c ** for details. */ #define PAGER_MJ_PGNO(x) ((Pgno)((PENDING_BYTE/((x)->pageSize))+1)) /* ** Allowed values for the flags parameter to sqlite3PagerOpen(). ** ** NOTE: These values must match the corresponding BTREE_ values in btree.h. */ #define PAGER_OMIT_JOURNAL 0x0001 /* Do not use a rollback journal */ #define PAGER_MEMORY 0x0002 /* In-memory database */ /* ** Valid values for the second argument to sqlite3PagerLockingMode(). */ #define PAGER_LOCKINGMODE_QUERY -1 #define PAGER_LOCKINGMODE_NORMAL 0 #define PAGER_LOCKINGMODE_EXCLUSIVE 1 /* ** Numeric constants that encode the journalmode. ** ** The numeric values encoded here (other than PAGER_JOURNALMODE_QUERY) ** are exposed in the API via the "PRAGMA journal_mode" command and ** therefore cannot be changed without a compatibility break. */ #define PAGER_JOURNALMODE_QUERY (-1) /* Query the value of journalmode */ #define PAGER_JOURNALMODE_DELETE 0 /* Commit by deleting journal file */ #define PAGER_JOURNALMODE_PERSIST 1 /* Commit by zeroing journal header */ #define PAGER_JOURNALMODE_OFF 2 /* Journal omitted. */ #define PAGER_JOURNALMODE_TRUNCATE 3 /* Commit by truncating journal */ #define PAGER_JOURNALMODE_MEMORY 4 /* In-memory journal file */ #define PAGER_JOURNALMODE_WAL 5 /* Use write-ahead logging */ /* ** Flags that make up the mask passed to sqlite3PagerGet(). */ #define PAGER_GET_NOCONTENT 0x01 /* Do not load data from disk */ #define PAGER_GET_READONLY 0x02 /* Read-only page is acceptable */ /* ** Flags for sqlite3PagerSetFlags() ** ** Value constraints (enforced via assert()): ** PAGER_FULLFSYNC == SQLITE_FullFSync ** PAGER_CKPT_FULLFSYNC == SQLITE_CkptFullFSync ** PAGER_CACHE_SPILL == SQLITE_CacheSpill */ #define PAGER_SYNCHRONOUS_OFF 0x01 /* PRAGMA synchronous=OFF */ #define PAGER_SYNCHRONOUS_NORMAL 0x02 /* PRAGMA synchronous=NORMAL */ #define PAGER_SYNCHRONOUS_FULL 0x03 /* PRAGMA synchronous=FULL */ #define PAGER_SYNCHRONOUS_EXTRA 0x04 /* PRAGMA synchronous=EXTRA */ #define PAGER_SYNCHRONOUS_MASK 0x07 /* Mask for four values above */ #define PAGER_FULLFSYNC 0x08 /* PRAGMA fullfsync=ON */ #define PAGER_CKPT_FULLFSYNC 0x10 /* PRAGMA checkpoint_fullfsync=ON */ #define PAGER_CACHESPILL 0x20 /* PRAGMA cache_spill=ON */ #define PAGER_FLAGS_MASK 0x38 /* All above except SYNCHRONOUS */ /* ** The remainder of this file contains the declarations of the functions ** that make up the Pager sub-system API. See source code comments for ** a detailed description of each routine. */ /* Open and close a Pager connection. */ SQLITE_PRIVATE int sqlite3PagerOpen( sqlite3_vfs*, Pager **ppPager, const char*, int, int, int, void(*)(DbPage*) ); SQLITE_PRIVATE int sqlite3PagerClose(Pager *pPager, sqlite3*); SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager*, int, unsigned char*); /* Functions used to configure a Pager object. */ SQLITE_PRIVATE void sqlite3PagerSetBusyHandler(Pager*, int(*)(void *), void *); SQLITE_PRIVATE int sqlite3PagerSetPagesize(Pager*, u32*, int); SQLITE_PRIVATE Pgno sqlite3PagerMaxPageCount(Pager*, Pgno); SQLITE_PRIVATE void sqlite3PagerSetCachesize(Pager*, int); SQLITE_PRIVATE int sqlite3PagerSetSpillsize(Pager*, int); SQLITE_PRIVATE void sqlite3PagerSetMmapLimit(Pager *, sqlite3_int64); SQLITE_PRIVATE void sqlite3PagerShrink(Pager*); SQLITE_PRIVATE void sqlite3PagerSetFlags(Pager*,unsigned); SQLITE_PRIVATE int sqlite3PagerLockingMode(Pager *, int); SQLITE_PRIVATE int sqlite3PagerSetJournalMode(Pager *, int); SQLITE_PRIVATE int sqlite3PagerGetJournalMode(Pager*); SQLITE_PRIVATE int sqlite3PagerOkToChangeJournalMode(Pager*); SQLITE_PRIVATE i64 sqlite3PagerJournalSizeLimit(Pager *, i64); SQLITE_PRIVATE sqlite3_backup **sqlite3PagerBackupPtr(Pager*); SQLITE_PRIVATE int sqlite3PagerFlush(Pager*); /* Functions used to obtain and release page references. */ SQLITE_PRIVATE int sqlite3PagerGet(Pager *pPager, Pgno pgno, DbPage **ppPage, int clrFlag); SQLITE_PRIVATE DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno); SQLITE_PRIVATE void sqlite3PagerRef(DbPage*); SQLITE_PRIVATE void sqlite3PagerUnref(DbPage*); SQLITE_PRIVATE void sqlite3PagerUnrefNotNull(DbPage*); SQLITE_PRIVATE void sqlite3PagerUnrefPageOne(DbPage*); /* Operations on page references. */ SQLITE_PRIVATE int sqlite3PagerWrite(DbPage*); SQLITE_PRIVATE void sqlite3PagerDontWrite(DbPage*); SQLITE_PRIVATE int sqlite3PagerMovepage(Pager*,DbPage*,Pgno,int); SQLITE_PRIVATE int sqlite3PagerPageRefcount(DbPage*); SQLITE_PRIVATE void *sqlite3PagerGetData(DbPage *); SQLITE_PRIVATE void *sqlite3PagerGetExtra(DbPage *); /* Functions used to manage pager transactions and savepoints. */ SQLITE_PRIVATE void sqlite3PagerPagecount(Pager*, int*); SQLITE_PRIVATE int sqlite3PagerBegin(Pager*, int exFlag, int); SQLITE_PRIVATE int sqlite3PagerCommitPhaseOne(Pager*,const char *zSuper, int); SQLITE_PRIVATE int sqlite3PagerExclusiveLock(Pager*); SQLITE_PRIVATE int sqlite3PagerSync(Pager *pPager, const char *zSuper); SQLITE_PRIVATE int sqlite3PagerCommitPhaseTwo(Pager*); SQLITE_PRIVATE int sqlite3PagerRollback(Pager*); SQLITE_PRIVATE int sqlite3PagerOpenSavepoint(Pager *pPager, int n); SQLITE_PRIVATE int sqlite3PagerSavepoint(Pager *pPager, int op, int iSavepoint); SQLITE_PRIVATE int sqlite3PagerSharedLock(Pager *pPager); #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3PagerCheckpoint(Pager *pPager, sqlite3*, int, int*, int*); SQLITE_PRIVATE int sqlite3PagerWalSupported(Pager *pPager); SQLITE_PRIVATE int sqlite3PagerWalCallback(Pager *pPager); SQLITE_PRIVATE int sqlite3PagerOpenWal(Pager *pPager, int *pisOpen); SQLITE_PRIVATE int sqlite3PagerCloseWal(Pager *pPager, sqlite3*); # ifdef SQLITE_ENABLE_SNAPSHOT SQLITE_PRIVATE int sqlite3PagerSnapshotGet(Pager*, sqlite3_snapshot **ppSnapshot); SQLITE_PRIVATE int sqlite3PagerSnapshotOpen(Pager*, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE int sqlite3PagerSnapshotRecover(Pager *pPager); SQLITE_PRIVATE int sqlite3PagerSnapshotCheck(Pager *pPager, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE void sqlite3PagerSnapshotUnlock(Pager *pPager); # endif #endif #if !defined(SQLITE_OMIT_WAL) && defined(SQLITE_ENABLE_SETLK_TIMEOUT) SQLITE_PRIVATE int sqlite3PagerWalWriteLock(Pager*, int); SQLITE_PRIVATE void sqlite3PagerWalDb(Pager*, sqlite3*); #else # define sqlite3PagerWalWriteLock(y,z) SQLITE_OK # define sqlite3PagerWalDb(x,y) #endif #ifdef SQLITE_DIRECT_OVERFLOW_READ SQLITE_PRIVATE int sqlite3PagerDirectReadOk(Pager *pPager, Pgno pgno); #endif #ifdef SQLITE_ENABLE_ZIPVFS SQLITE_PRIVATE int sqlite3PagerWalFramesize(Pager *pPager); #endif /* Functions used to query pager state and configuration. */ SQLITE_PRIVATE u8 sqlite3PagerIsreadonly(Pager*); SQLITE_PRIVATE u32 sqlite3PagerDataVersion(Pager*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3PagerRefcount(Pager*); #endif SQLITE_PRIVATE int sqlite3PagerMemUsed(Pager*); SQLITE_PRIVATE const char *sqlite3PagerFilename(const Pager*, int); SQLITE_PRIVATE sqlite3_vfs *sqlite3PagerVfs(Pager*); SQLITE_PRIVATE sqlite3_file *sqlite3PagerFile(Pager*); SQLITE_PRIVATE sqlite3_file *sqlite3PagerJrnlFile(Pager*); SQLITE_PRIVATE const char *sqlite3PagerJournalname(Pager*); SQLITE_PRIVATE void *sqlite3PagerTempSpace(Pager*); SQLITE_PRIVATE int sqlite3PagerIsMemdb(Pager*); SQLITE_PRIVATE void sqlite3PagerCacheStat(Pager *, int, int, int *); SQLITE_PRIVATE void sqlite3PagerClearCache(Pager*); SQLITE_PRIVATE int sqlite3SectorSize(sqlite3_file *); /* Functions used to truncate the database file. */ SQLITE_PRIVATE void sqlite3PagerTruncateImage(Pager*,Pgno); SQLITE_PRIVATE void sqlite3PagerRekey(DbPage*, Pgno, u16); /* Functions to support testing and debugging. */ #if !defined(NDEBUG) || defined(SQLITE_TEST) SQLITE_PRIVATE Pgno sqlite3PagerPagenumber(DbPage*); SQLITE_PRIVATE int sqlite3PagerIswriteable(DbPage*); #endif #ifdef SQLITE_TEST SQLITE_PRIVATE int *sqlite3PagerStats(Pager*); SQLITE_PRIVATE void sqlite3PagerRefdump(Pager*); void disable_simulated_io_errors(void); void enable_simulated_io_errors(void); #else # define disable_simulated_io_errors() # define enable_simulated_io_errors() #endif #endif /* SQLITE_PAGER_H */ /************** End of pager.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include btree.h in the middle of sqliteInt.h *****************/ /************** Begin file btree.h *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the sqlite B-Tree file ** subsystem. See comments in the source code for a detailed description ** of what each interface routine does. */ #ifndef SQLITE_BTREE_H #define SQLITE_BTREE_H /* TODO: This definition is just included so other modules compile. It ** needs to be revisited. */ #define SQLITE_N_BTREE_META 16 /* ** If defined as non-zero, auto-vacuum is enabled by default. Otherwise ** it must be turned on for each database using "PRAGMA auto_vacuum = 1". */ #ifndef SQLITE_DEFAULT_AUTOVACUUM #define SQLITE_DEFAULT_AUTOVACUUM 0 #endif #define BTREE_AUTOVACUUM_NONE 0 /* Do not do auto-vacuum */ #define BTREE_AUTOVACUUM_FULL 1 /* Do full auto-vacuum */ #define BTREE_AUTOVACUUM_INCR 2 /* Incremental vacuum */ /* ** Forward declarations of structure */ typedef struct Btree Btree; typedef struct BtCursor BtCursor; typedef struct BtShared BtShared; typedef struct BtreePayload BtreePayload; SQLITE_PRIVATE int sqlite3BtreeOpen( sqlite3_vfs *pVfs, /* VFS to use with this b-tree */ const char *zFilename, /* Name of database file to open */ sqlite3 *db, /* Associated database connection */ Btree **ppBtree, /* Return open Btree* here */ int flags, /* Flags */ int vfsFlags /* Flags passed through to VFS open */ ); /* The flags parameter to sqlite3BtreeOpen can be the bitwise or of the ** following values. ** ** NOTE: These values must match the corresponding PAGER_ values in ** pager.h. */ #define BTREE_OMIT_JOURNAL 1 /* Do not create or use a rollback journal */ #define BTREE_MEMORY 2 /* This is an in-memory DB */ #define BTREE_SINGLE 4 /* The file contains at most 1 b-tree */ #define BTREE_UNORDERED 8 /* Use of a hash implementation is OK */ SQLITE_PRIVATE int sqlite3BtreeClose(Btree*); SQLITE_PRIVATE int sqlite3BtreeSetCacheSize(Btree*,int); SQLITE_PRIVATE int sqlite3BtreeSetSpillSize(Btree*,int); #if SQLITE_MAX_MMAP_SIZE>0 SQLITE_PRIVATE int sqlite3BtreeSetMmapLimit(Btree*,sqlite3_int64); #endif SQLITE_PRIVATE int sqlite3BtreeSetPagerFlags(Btree*,unsigned); SQLITE_PRIVATE int sqlite3BtreeSetPageSize(Btree *p, int nPagesize, int nReserve, int eFix); SQLITE_PRIVATE int sqlite3BtreeGetPageSize(Btree*); SQLITE_PRIVATE Pgno sqlite3BtreeMaxPageCount(Btree*,Pgno); SQLITE_PRIVATE Pgno sqlite3BtreeLastPage(Btree*); SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree*,int); SQLITE_PRIVATE int sqlite3BtreeGetRequestedReserve(Btree*); SQLITE_PRIVATE int sqlite3BtreeGetReserveNoMutex(Btree *p); SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *, int); SQLITE_PRIVATE int sqlite3BtreeGetAutoVacuum(Btree *); SQLITE_PRIVATE int sqlite3BtreeBeginTrans(Btree*,int,int*); SQLITE_PRIVATE int sqlite3BtreeCommitPhaseOne(Btree*, const char*); SQLITE_PRIVATE int sqlite3BtreeCommitPhaseTwo(Btree*, int); SQLITE_PRIVATE int sqlite3BtreeCommit(Btree*); SQLITE_PRIVATE int sqlite3BtreeRollback(Btree*,int,int); SQLITE_PRIVATE int sqlite3BtreeBeginStmt(Btree*,int); SQLITE_PRIVATE int sqlite3BtreeCreateTable(Btree*, Pgno*, int flags); SQLITE_PRIVATE int sqlite3BtreeTxnState(Btree*); SQLITE_PRIVATE int sqlite3BtreeIsInBackup(Btree*); SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *, int, void(*)(void *)); SQLITE_PRIVATE int sqlite3BtreeSchemaLocked(Btree *pBtree); #ifndef SQLITE_OMIT_SHARED_CACHE SQLITE_PRIVATE int sqlite3BtreeLockTable(Btree *pBtree, int iTab, u8 isWriteLock); #endif /* Savepoints are named, nestable SQL transactions mostly implemented */ /* in vdbe.c and pager.c See https://sqlite.org/lang_savepoint.html */ SQLITE_PRIVATE int sqlite3BtreeSavepoint(Btree *, int, int); /* "Checkpoint" only refers to WAL. See https://sqlite.org/wal.html#ckpt */ #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree*, int, int *, int *); #endif SQLITE_PRIVATE const char *sqlite3BtreeGetFilename(Btree *); SQLITE_PRIVATE const char *sqlite3BtreeGetJournalname(Btree *); SQLITE_PRIVATE int sqlite3BtreeCopyFile(Btree *, Btree *); SQLITE_PRIVATE int sqlite3BtreeIncrVacuum(Btree *); /* The flags parameter to sqlite3BtreeCreateTable can be the bitwise OR ** of the flags shown below. ** ** Every SQLite table must have either BTREE_INTKEY or BTREE_BLOBKEY set. ** With BTREE_INTKEY, the table key is a 64-bit integer and arbitrary data ** is stored in the leaves. (BTREE_INTKEY is used for SQL tables.) With ** BTREE_BLOBKEY, the key is an arbitrary BLOB and no content is stored ** anywhere - the key is the content. (BTREE_BLOBKEY is used for SQL ** indices.) */ #define BTREE_INTKEY 1 /* Table has only 64-bit signed integer keys */ #define BTREE_BLOBKEY 2 /* Table has keys only - no data */ SQLITE_PRIVATE int sqlite3BtreeDropTable(Btree*, int, int*); SQLITE_PRIVATE int sqlite3BtreeClearTable(Btree*, int, i64*); SQLITE_PRIVATE int sqlite3BtreeClearTableOfCursor(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeTripAllCursors(Btree*, int, int); SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *pBtree, int idx, u32 *pValue); SQLITE_PRIVATE int sqlite3BtreeUpdateMeta(Btree*, int idx, u32 value); SQLITE_PRIVATE int sqlite3BtreeNewDb(Btree *p); /* ** The second parameter to sqlite3BtreeGetMeta or sqlite3BtreeUpdateMeta ** should be one of the following values. The integer values are assigned ** to constants so that the offset of the corresponding field in an ** SQLite database header may be found using the following formula: ** ** offset = 36 + (idx * 4) ** ** For example, the free-page-count field is located at byte offset 36 of ** the database file header. The incr-vacuum-flag field is located at ** byte offset 64 (== 36+4*7). ** ** The BTREE_DATA_VERSION value is not really a value stored in the header. ** It is a read-only number computed by the pager. But we merge it with ** the header value access routines since its access pattern is the same. ** Call it a "virtual meta value". */ #define BTREE_FREE_PAGE_COUNT 0 #define BTREE_SCHEMA_VERSION 1 #define BTREE_FILE_FORMAT 2 #define BTREE_DEFAULT_CACHE_SIZE 3 #define BTREE_LARGEST_ROOT_PAGE 4 #define BTREE_TEXT_ENCODING 5 #define BTREE_USER_VERSION 6 #define BTREE_INCR_VACUUM 7 #define BTREE_APPLICATION_ID 8 #define BTREE_DATA_VERSION 15 /* A virtual meta-value */ /* ** Kinds of hints that can be passed into the sqlite3BtreeCursorHint() ** interface. ** ** BTREE_HINT_RANGE (arguments: Expr*, Mem*) ** ** The first argument is an Expr* (which is guaranteed to be constant for ** the lifetime of the cursor) that defines constraints on which rows ** might be fetched with this cursor. The Expr* tree may contain ** TK_REGISTER nodes that refer to values stored in the array of registers ** passed as the second parameter. In other words, if Expr.op==TK_REGISTER ** then the value of the node is the value in Mem[pExpr.iTable]. Any ** TK_COLUMN node in the expression tree refers to the Expr.iColumn-th ** column of the b-tree of the cursor. The Expr tree will not contain ** any function calls nor subqueries nor references to b-trees other than ** the cursor being hinted. ** ** The design of the _RANGE hint is aid b-tree implementations that try ** to prefetch content from remote machines - to provide those ** implementations with limits on what needs to be prefetched and thereby ** reduce network bandwidth. ** ** Note that BTREE_HINT_FLAGS with BTREE_BULKLOAD is the only hint used by ** standard SQLite. The other hints are provided for extentions that use ** the SQLite parser and code generator but substitute their own storage ** engine. */ #define BTREE_HINT_RANGE 0 /* Range constraints on queries */ /* ** Values that may be OR'd together to form the argument to the ** BTREE_HINT_FLAGS hint for sqlite3BtreeCursorHint(): ** ** The BTREE_BULKLOAD flag is set on index cursors when the index is going ** to be filled with content that is already in sorted order. ** ** The BTREE_SEEK_EQ flag is set on cursors that will get OP_SeekGE or ** OP_SeekLE opcodes for a range search, but where the range of entries ** selected will all have the same key. In other words, the cursor will ** be used only for equality key searches. ** */ #define BTREE_BULKLOAD 0x00000001 /* Used to full index in sorted order */ #define BTREE_SEEK_EQ 0x00000002 /* EQ seeks only - no range seeks */ /* ** Flags passed as the third argument to sqlite3BtreeCursor(). ** ** For read-only cursors the wrFlag argument is always zero. For read-write ** cursors it may be set to either (BTREE_WRCSR|BTREE_FORDELETE) or just ** (BTREE_WRCSR). If the BTREE_FORDELETE bit is set, then the cursor will ** only be used by SQLite for the following: ** ** * to seek to and then delete specific entries, and/or ** ** * to read values that will be used to create keys that other ** BTREE_FORDELETE cursors will seek to and delete. ** ** The BTREE_FORDELETE flag is an optimization hint. It is not used by ** by this, the native b-tree engine of SQLite, but it is available to ** alternative storage engines that might be substituted in place of this ** b-tree system. For alternative storage engines in which a delete of ** the main table row automatically deletes corresponding index rows, ** the FORDELETE flag hint allows those alternative storage engines to ** skip a lot of work. Namely: FORDELETE cursors may treat all SEEK ** and DELETE operations as no-ops, and any READ operation against a ** FORDELETE cursor may return a null row: 0x01 0x00. */ #define BTREE_WRCSR 0x00000004 /* read-write cursor */ #define BTREE_FORDELETE 0x00000008 /* Cursor is for seek/delete only */ SQLITE_PRIVATE int sqlite3BtreeCursor( Btree*, /* BTree containing table to open */ Pgno iTable, /* Index of root page */ int wrFlag, /* 1 for writing. 0 for read-only */ struct KeyInfo*, /* First argument to compare function */ BtCursor *pCursor /* Space to write cursor structure */ ); SQLITE_PRIVATE BtCursor *sqlite3BtreeFakeValidCursor(void); SQLITE_PRIVATE int sqlite3BtreeCursorSize(void); SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeCursorHintFlags(BtCursor*, unsigned); #ifdef SQLITE_ENABLE_CURSOR_HINTS SQLITE_PRIVATE void sqlite3BtreeCursorHint(BtCursor*, int, ...); #endif SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeTableMoveto( BtCursor*, i64 intKey, int bias, int *pRes ); SQLITE_PRIVATE int sqlite3BtreeIndexMoveto( BtCursor*, UnpackedRecord *pUnKey, int *pRes ); SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeCursorRestore(BtCursor*, int*); SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor*, u8 flags); /* Allowed flags for sqlite3BtreeDelete() and sqlite3BtreeInsert() */ #define BTREE_SAVEPOSITION 0x02 /* Leave cursor pointing at NEXT or PREV */ #define BTREE_AUXDELETE 0x04 /* not the primary delete operation */ #define BTREE_APPEND 0x08 /* Insert is likely an append */ #define BTREE_PREFORMAT 0x80 /* Inserted data is a preformated cell */ /* An instance of the BtreePayload object describes the content of a single ** entry in either an index or table btree. ** ** Index btrees (used for indexes and also WITHOUT ROWID tables) contain ** an arbitrary key and no data. These btrees have pKey,nKey set to the ** key and the pData,nData,nZero fields are uninitialized. The aMem,nMem ** fields give an array of Mem objects that are a decomposition of the key. ** The nMem field might be zero, indicating that no decomposition is available. ** ** Table btrees (used for rowid tables) contain an integer rowid used as ** the key and passed in the nKey field. The pKey field is zero. ** pData,nData hold the content of the new entry. nZero extra zero bytes ** are appended to the end of the content when constructing the entry. ** The aMem,nMem fields are uninitialized for table btrees. ** ** Field usage summary: ** ** Table BTrees Index Btrees ** ** pKey always NULL encoded key ** nKey the ROWID length of pKey ** pData data not used ** aMem not used decomposed key value ** nMem not used entries in aMem ** nData length of pData not used ** nZero extra zeros after pData not used ** ** This object is used to pass information into sqlite3BtreeInsert(). The ** same information used to be passed as five separate parameters. But placing ** the information into this object helps to keep the interface more ** organized and understandable, and it also helps the resulting code to ** run a little faster by using fewer registers for parameter passing. */ struct BtreePayload { const void *pKey; /* Key content for indexes. NULL for tables */ sqlite3_int64 nKey; /* Size of pKey for indexes. PRIMARY KEY for tabs */ const void *pData; /* Data for tables. */ sqlite3_value *aMem; /* First of nMem value in the unpacked pKey */ u16 nMem; /* Number of aMem[] value. Might be zero */ int nData; /* Size of pData. 0 if none. */ int nZero; /* Extra zero data appended after pData,nData */ }; SQLITE_PRIVATE int sqlite3BtreeInsert(BtCursor*, const BtreePayload *pPayload, int flags, int seekResult); SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes); SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes); SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int flags); SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor*); SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int flags); SQLITE_PRIVATE i64 sqlite3BtreeIntegerKey(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeCursorPin(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeCursorUnpin(BtCursor*); #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC SQLITE_PRIVATE i64 sqlite3BtreeOffset(BtCursor*); #endif SQLITE_PRIVATE int sqlite3BtreePayload(BtCursor*, u32 offset, u32 amt, void*); SQLITE_PRIVATE const void *sqlite3BtreePayloadFetch(BtCursor*, u32 *pAmt); SQLITE_PRIVATE u32 sqlite3BtreePayloadSize(BtCursor*); SQLITE_PRIVATE sqlite3_int64 sqlite3BtreeMaxRecordSize(BtCursor*); SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck(sqlite3*,Btree*,Pgno*aRoot,int nRoot,int,int*); SQLITE_PRIVATE struct Pager *sqlite3BtreePager(Btree*); SQLITE_PRIVATE i64 sqlite3BtreeRowCountEst(BtCursor*); #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE int sqlite3BtreePayloadChecked(BtCursor*, u32 offset, u32 amt, void*); SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*); SQLITE_PRIVATE void sqlite3BtreeIncrblobCursor(BtCursor *); #endif SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *); SQLITE_PRIVATE int sqlite3BtreeSetVersion(Btree *pBt, int iVersion); SQLITE_PRIVATE int sqlite3BtreeCursorHasHint(BtCursor*, unsigned int mask); SQLITE_PRIVATE int sqlite3BtreeIsReadonly(Btree *pBt); SQLITE_PRIVATE int sqlite3HeaderSizeBtree(void); #ifdef SQLITE_DEBUG SQLITE_PRIVATE sqlite3_uint64 sqlite3BtreeSeekCount(Btree*); #else # define sqlite3BtreeSeekCount(X) 0 #endif #ifndef NDEBUG SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor*); #endif SQLITE_PRIVATE int sqlite3BtreeCursorIsValidNN(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeCount(sqlite3*, BtCursor*, i64*); #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3BtreeCursorInfo(BtCursor*, int*, int); SQLITE_PRIVATE void sqlite3BtreeCursorList(Btree*); #endif #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree*, int, int *, int *); #endif SQLITE_PRIVATE int sqlite3BtreeTransferRow(BtCursor*, BtCursor*, i64); /* ** If we are not using shared cache, then there is no need to ** use mutexes to access the BtShared structures. So make the ** Enter and Leave procedures no-ops. */ #ifndef SQLITE_OMIT_SHARED_CACHE SQLITE_PRIVATE void sqlite3BtreeEnter(Btree*); SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3*); SQLITE_PRIVATE int sqlite3BtreeSharable(Btree*); SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeConnectionCount(Btree*); #else # define sqlite3BtreeEnter(X) # define sqlite3BtreeEnterAll(X) # define sqlite3BtreeSharable(X) 0 # define sqlite3BtreeEnterCursor(X) # define sqlite3BtreeConnectionCount(X) 1 #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE SQLITE_PRIVATE void sqlite3BtreeLeave(Btree*); SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3*); #ifndef NDEBUG /* These routines are used inside assert() statements only. */ SQLITE_PRIVATE int sqlite3BtreeHoldsMutex(Btree*); SQLITE_PRIVATE int sqlite3BtreeHoldsAllMutexes(sqlite3*); SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3*,int,Schema*); #endif #else # define sqlite3BtreeLeave(X) # define sqlite3BtreeLeaveCursor(X) # define sqlite3BtreeLeaveAll(X) # define sqlite3BtreeHoldsMutex(X) 1 # define sqlite3BtreeHoldsAllMutexes(X) 1 # define sqlite3SchemaMutexHeld(X,Y,Z) 1 #endif #endif /* SQLITE_BTREE_H */ /************** End of btree.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include vdbe.h in the middle of sqliteInt.h ******************/ /************** Begin file vdbe.h ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Header file for the Virtual DataBase Engine (VDBE) ** ** This header defines the interface to the virtual database engine ** or VDBE. The VDBE implements an abstract machine that runs a ** simple program to access and modify the underlying database. */ #ifndef SQLITE_VDBE_H #define SQLITE_VDBE_H /* #include */ /* ** A single VDBE is an opaque structure named "Vdbe". Only routines ** in the source file sqliteVdbe.c are allowed to see the insides ** of this structure. */ typedef struct Vdbe Vdbe; /* ** The names of the following types declared in vdbeInt.h are required ** for the VdbeOp definition. */ typedef struct sqlite3_value Mem; typedef struct SubProgram SubProgram; /* ** A single instruction of the virtual machine has an opcode ** and as many as three operands. The instruction is recorded ** as an instance of the following structure: */ struct VdbeOp { u8 opcode; /* What operation to perform */ signed char p4type; /* One of the P4_xxx constants for p4 */ u16 p5; /* Fifth parameter is an unsigned 16-bit integer */ int p1; /* First operand */ int p2; /* Second parameter (often the jump destination) */ int p3; /* The third parameter */ union p4union { /* fourth parameter */ int i; /* Integer value if p4type==P4_INT32 */ void *p; /* Generic pointer */ char *z; /* Pointer to data for string (char array) types */ i64 *pI64; /* Used when p4type is P4_INT64 */ double *pReal; /* Used when p4type is P4_REAL */ FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ sqlite3_context *pCtx; /* Used when p4type is P4_FUNCCTX */ CollSeq *pColl; /* Used when p4type is P4_COLLSEQ */ Mem *pMem; /* Used when p4type is P4_MEM */ VTable *pVtab; /* Used when p4type is P4_VTAB */ KeyInfo *pKeyInfo; /* Used when p4type is P4_KEYINFO */ u32 *ai; /* Used when p4type is P4_INTARRAY */ SubProgram *pProgram; /* Used when p4type is P4_SUBPROGRAM */ Table *pTab; /* Used when p4type is P4_TABLE */ #ifdef SQLITE_ENABLE_CURSOR_HINTS Expr *pExpr; /* Used when p4type is P4_EXPR */ #endif int (*xAdvance)(BtCursor *, int); } p4; #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS char *zComment; /* Comment to improve readability */ #endif #ifdef VDBE_PROFILE u32 cnt; /* Number of times this instruction was executed */ u64 cycles; /* Total time spent executing this instruction */ #endif #ifdef SQLITE_VDBE_COVERAGE u32 iSrcLine; /* Source-code line that generated this opcode ** with flags in the upper 8 bits */ #endif }; typedef struct VdbeOp VdbeOp; /* ** A sub-routine used to implement a trigger program. */ struct SubProgram { VdbeOp *aOp; /* Array of opcodes for sub-program */ int nOp; /* Elements in aOp[] */ int nMem; /* Number of memory cells required */ int nCsr; /* Number of cursors required */ u8 *aOnce; /* Array of OP_Once flags */ void *token; /* id that may be used to recursive triggers */ SubProgram *pNext; /* Next sub-program already visited */ }; /* ** A smaller version of VdbeOp used for the VdbeAddOpList() function because ** it takes up less space. */ struct VdbeOpList { u8 opcode; /* What operation to perform */ signed char p1; /* First operand */ signed char p2; /* Second parameter (often the jump destination) */ signed char p3; /* Third parameter */ }; typedef struct VdbeOpList VdbeOpList; /* ** Allowed values of VdbeOp.p4type */ #define P4_NOTUSED 0 /* The P4 parameter is not used */ #define P4_TRANSIENT 0 /* P4 is a pointer to a transient string */ #define P4_STATIC (-1) /* Pointer to a static string */ #define P4_COLLSEQ (-2) /* P4 is a pointer to a CollSeq structure */ #define P4_INT32 (-3) /* P4 is a 32-bit signed integer */ #define P4_SUBPROGRAM (-4) /* P4 is a pointer to a SubProgram structure */ #define P4_ADVANCE (-5) /* P4 is a pointer to BtreeNext() or BtreePrev() */ #define P4_TABLE (-6) /* P4 is a pointer to a Table structure */ /* Above do not own any resources. Must free those below */ #define P4_FREE_IF_LE (-7) #define P4_DYNAMIC (-7) /* Pointer to memory from sqliteMalloc() */ #define P4_FUNCDEF (-8) /* P4 is a pointer to a FuncDef structure */ #define P4_KEYINFO (-9) /* P4 is a pointer to a KeyInfo structure */ #define P4_EXPR (-10) /* P4 is a pointer to an Expr tree */ #define P4_MEM (-11) /* P4 is a pointer to a Mem* structure */ #define P4_VTAB (-12) /* P4 is a pointer to an sqlite3_vtab structure */ #define P4_REAL (-13) /* P4 is a 64-bit floating point value */ #define P4_INT64 (-14) /* P4 is a 64-bit signed integer */ #define P4_INTARRAY (-15) /* P4 is a vector of 32-bit integers */ #define P4_FUNCCTX (-16) /* P4 is a pointer to an sqlite3_context object */ #define P4_DYNBLOB (-17) /* Pointer to memory from sqliteMalloc() */ /* Error message codes for OP_Halt */ #define P5_ConstraintNotNull 1 #define P5_ConstraintUnique 2 #define P5_ConstraintCheck 3 #define P5_ConstraintFK 4 /* ** The Vdbe.aColName array contains 5n Mem structures, where n is the ** number of columns of data returned by the statement. */ #define COLNAME_NAME 0 #define COLNAME_DECLTYPE 1 #define COLNAME_DATABASE 2 #define COLNAME_TABLE 3 #define COLNAME_COLUMN 4 #ifdef SQLITE_ENABLE_COLUMN_METADATA # define COLNAME_N 5 /* Number of COLNAME_xxx symbols */ #else # ifdef SQLITE_OMIT_DECLTYPE # define COLNAME_N 1 /* Store only the name */ # else # define COLNAME_N 2 /* Store the name and decltype */ # endif #endif /* ** The following macro converts a label returned by sqlite3VdbeMakeLabel() ** into an index into the Parse.aLabel[] array that contains the resolved ** address of that label. */ #define ADDR(X) (~(X)) /* ** The makefile scans the vdbe.c source file and creates the "opcodes.h" ** header file that defines a number for each opcode used by the VDBE. */ /************** Include opcodes.h in the middle of vdbe.h ********************/ /************** Begin file opcodes.h *****************************************/ /* Automatically generated. Do not edit */ /* See the tool/mkopcodeh.tcl script for details */ #define OP_Savepoint 0 #define OP_AutoCommit 1 #define OP_Transaction 2 #define OP_SorterNext 3 /* jump */ #define OP_Prev 4 /* jump */ #define OP_Next 5 /* jump */ #define OP_Checkpoint 6 #define OP_JournalMode 7 #define OP_Vacuum 8 #define OP_VFilter 9 /* jump, synopsis: iplan=r[P3] zplan='P4' */ #define OP_VUpdate 10 /* synopsis: data=r[P3@P2] */ #define OP_Goto 11 /* jump */ #define OP_Gosub 12 /* jump */ #define OP_InitCoroutine 13 /* jump */ #define OP_Yield 14 /* jump */ #define OP_MustBeInt 15 /* jump */ #define OP_Jump 16 /* jump */ #define OP_Once 17 /* jump */ #define OP_If 18 /* jump */ #define OP_Not 19 /* same as TK_NOT, synopsis: r[P2]= !r[P1] */ #define OP_IfNot 20 /* jump */ #define OP_IsNullOrType 21 /* jump, synopsis: if typeof(r[P1]) IN (P3,5) goto P2 */ #define OP_IfNullRow 22 /* jump, synopsis: if P1.nullRow then r[P3]=NULL, goto P2 */ #define OP_SeekLT 23 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekLE 24 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekGE 25 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekGT 26 /* jump, synopsis: key=r[P3@P4] */ #define OP_IfNotOpen 27 /* jump, synopsis: if( !csr[P1] ) goto P2 */ #define OP_IfNoHope 28 /* jump, synopsis: key=r[P3@P4] */ #define OP_NoConflict 29 /* jump, synopsis: key=r[P3@P4] */ #define OP_NotFound 30 /* jump, synopsis: key=r[P3@P4] */ #define OP_Found 31 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekRowid 32 /* jump, synopsis: intkey=r[P3] */ #define OP_NotExists 33 /* jump, synopsis: intkey=r[P3] */ #define OP_Last 34 /* jump */ #define OP_IfSmaller 35 /* jump */ #define OP_SorterSort 36 /* jump */ #define OP_Sort 37 /* jump */ #define OP_Rewind 38 /* jump */ #define OP_IdxLE 39 /* jump, synopsis: key=r[P3@P4] */ #define OP_IdxGT 40 /* jump, synopsis: key=r[P3@P4] */ #define OP_IdxLT 41 /* jump, synopsis: key=r[P3@P4] */ #define OP_IdxGE 42 /* jump, synopsis: key=r[P3@P4] */ #define OP_Or 43 /* same as TK_OR, synopsis: r[P3]=(r[P1] || r[P2]) */ #define OP_And 44 /* same as TK_AND, synopsis: r[P3]=(r[P1] && r[P2]) */ #define OP_RowSetRead 45 /* jump, synopsis: r[P3]=rowset(P1) */ #define OP_RowSetTest 46 /* jump, synopsis: if r[P3] in rowset(P1) goto P2 */ #define OP_Program 47 /* jump */ #define OP_FkIfZero 48 /* jump, synopsis: if fkctr[P1]==0 goto P2 */ #define OP_IfPos 49 /* jump, synopsis: if r[P1]>0 then r[P1]-=P3, goto P2 */ #define OP_IsNull 50 /* jump, same as TK_ISNULL, synopsis: if r[P1]==NULL goto P2 */ #define OP_NotNull 51 /* jump, same as TK_NOTNULL, synopsis: if r[P1]!=NULL goto P2 */ #define OP_Ne 52 /* jump, same as TK_NE, synopsis: IF r[P3]!=r[P1] */ #define OP_Eq 53 /* jump, same as TK_EQ, synopsis: IF r[P3]==r[P1] */ #define OP_Gt 54 /* jump, same as TK_GT, synopsis: IF r[P3]>r[P1] */ #define OP_Le 55 /* jump, same as TK_LE, synopsis: IF r[P3]<=r[P1] */ #define OP_Lt 56 /* jump, same as TK_LT, synopsis: IF r[P3]=r[P1] */ #define OP_ElseEq 58 /* jump, same as TK_ESCAPE */ #define OP_IfNotZero 59 /* jump, synopsis: if r[P1]!=0 then r[P1]--, goto P2 */ #define OP_DecrJumpZero 60 /* jump, synopsis: if (--r[P1])==0 goto P2 */ #define OP_IncrVacuum 61 /* jump */ #define OP_VNext 62 /* jump */ #define OP_Filter 63 /* jump, synopsis: if key(P3@P4) not in filter(P1) goto P2 */ #define OP_Init 64 /* jump, synopsis: Start at P2 */ #define OP_PureFunc 65 /* synopsis: r[P3]=func(r[P2@NP]) */ #define OP_Function 66 /* synopsis: r[P3]=func(r[P2@NP]) */ #define OP_Return 67 #define OP_EndCoroutine 68 #define OP_HaltIfNull 69 /* synopsis: if r[P3]=null halt */ #define OP_Halt 70 #define OP_Integer 71 /* synopsis: r[P2]=P1 */ #define OP_Int64 72 /* synopsis: r[P2]=P4 */ #define OP_String 73 /* synopsis: r[P2]='P4' (len=P1) */ #define OP_Null 74 /* synopsis: r[P2..P3]=NULL */ #define OP_SoftNull 75 /* synopsis: r[P1]=NULL */ #define OP_Blob 76 /* synopsis: r[P2]=P4 (len=P1) */ #define OP_Variable 77 /* synopsis: r[P2]=parameter(P1,P4) */ #define OP_Move 78 /* synopsis: r[P2@P3]=r[P1@P3] */ #define OP_Copy 79 /* synopsis: r[P2@P3+1]=r[P1@P3+1] */ #define OP_SCopy 80 /* synopsis: r[P2]=r[P1] */ #define OP_IntCopy 81 /* synopsis: r[P2]=r[P1] */ #define OP_FkCheck 82 #define OP_ResultRow 83 /* synopsis: output=r[P1@P2] */ #define OP_CollSeq 84 #define OP_AddImm 85 /* synopsis: r[P1]=r[P1]+P2 */ #define OP_RealAffinity 86 #define OP_Cast 87 /* synopsis: affinity(r[P1]) */ #define OP_Permutation 88 #define OP_Compare 89 /* synopsis: r[P1@P3] <-> r[P2@P3] */ #define OP_IsTrue 90 /* synopsis: r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4 */ #define OP_ZeroOrNull 91 /* synopsis: r[P2] = 0 OR NULL */ #define OP_Offset 92 /* synopsis: r[P3] = sqlite_offset(P1) */ #define OP_Column 93 /* synopsis: r[P3]=PX */ #define OP_TypeCheck 94 /* synopsis: typecheck(r[P1@P2]) */ #define OP_Affinity 95 /* synopsis: affinity(r[P1@P2]) */ #define OP_MakeRecord 96 /* synopsis: r[P3]=mkrec(r[P1@P2]) */ #define OP_Count 97 /* synopsis: r[P2]=count() */ #define OP_ReadCookie 98 #define OP_SetCookie 99 #define OP_ReopenIdx 100 /* synopsis: root=P2 iDb=P3 */ #define OP_OpenRead 101 /* synopsis: root=P2 iDb=P3 */ #define OP_BitAnd 102 /* same as TK_BITAND, synopsis: r[P3]=r[P1]&r[P2] */ #define OP_BitOr 103 /* same as TK_BITOR, synopsis: r[P3]=r[P1]|r[P2] */ #define OP_ShiftLeft 104 /* same as TK_LSHIFT, synopsis: r[P3]=r[P2]<>r[P1] */ #define OP_Add 106 /* same as TK_PLUS, synopsis: r[P3]=r[P1]+r[P2] */ #define OP_Subtract 107 /* same as TK_MINUS, synopsis: r[P3]=r[P2]-r[P1] */ #define OP_Multiply 108 /* same as TK_STAR, synopsis: r[P3]=r[P1]*r[P2] */ #define OP_Divide 109 /* same as TK_SLASH, synopsis: r[P3]=r[P2]/r[P1] */ #define OP_Remainder 110 /* same as TK_REM, synopsis: r[P3]=r[P2]%r[P1] */ #define OP_Concat 111 /* same as TK_CONCAT, synopsis: r[P3]=r[P2]+r[P1] */ #define OP_OpenWrite 112 /* synopsis: root=P2 iDb=P3 */ #define OP_OpenDup 113 #define OP_BitNot 114 /* same as TK_BITNOT, synopsis: r[P2]= ~r[P1] */ #define OP_OpenAutoindex 115 /* synopsis: nColumn=P2 */ #define OP_OpenEphemeral 116 /* synopsis: nColumn=P2 */ #define OP_String8 117 /* same as TK_STRING, synopsis: r[P2]='P4' */ #define OP_SorterOpen 118 #define OP_SequenceTest 119 /* synopsis: if( cursor[P1].ctr++ ) pc = P2 */ #define OP_OpenPseudo 120 /* synopsis: P3 columns in r[P2] */ #define OP_Close 121 #define OP_ColumnsUsed 122 #define OP_SeekScan 123 /* synopsis: Scan-ahead up to P1 rows */ #define OP_SeekHit 124 /* synopsis: set P2<=seekHit<=P3 */ #define OP_Sequence 125 /* synopsis: r[P2]=cursor[P1].ctr++ */ #define OP_NewRowid 126 /* synopsis: r[P2]=rowid */ #define OP_Insert 127 /* synopsis: intkey=r[P3] data=r[P2] */ #define OP_RowCell 128 #define OP_Delete 129 #define OP_ResetCount 130 #define OP_SorterCompare 131 /* synopsis: if key(P1)!=trim(r[P3],P4) goto P2 */ #define OP_SorterData 132 /* synopsis: r[P2]=data */ #define OP_RowData 133 /* synopsis: r[P2]=data */ #define OP_Rowid 134 /* synopsis: r[P2]=rowid */ #define OP_NullRow 135 #define OP_SeekEnd 136 #define OP_IdxInsert 137 /* synopsis: key=r[P2] */ #define OP_SorterInsert 138 /* synopsis: key=r[P2] */ #define OP_IdxDelete 139 /* synopsis: key=r[P2@P3] */ #define OP_DeferredSeek 140 /* synopsis: Move P3 to P1.rowid if needed */ #define OP_IdxRowid 141 /* synopsis: r[P2]=rowid */ #define OP_FinishSeek 142 #define OP_Destroy 143 #define OP_Clear 144 #define OP_ResetSorter 145 #define OP_CreateBtree 146 /* synopsis: r[P2]=root iDb=P1 flags=P3 */ #define OP_SqlExec 147 #define OP_ParseSchema 148 #define OP_LoadAnalysis 149 #define OP_DropTable 150 #define OP_DropIndex 151 #define OP_DropTrigger 152 #define OP_Real 153 /* same as TK_FLOAT, synopsis: r[P2]=P4 */ #define OP_IntegrityCk 154 #define OP_RowSetAdd 155 /* synopsis: rowset(P1)=r[P2] */ #define OP_Param 156 #define OP_FkCounter 157 /* synopsis: fkctr[P1]+=P2 */ #define OP_MemMax 158 /* synopsis: r[P1]=max(r[P1],r[P2]) */ #define OP_OffsetLimit 159 /* synopsis: if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1) */ #define OP_AggInverse 160 /* synopsis: accum=r[P3] inverse(r[P2@P5]) */ #define OP_AggStep 161 /* synopsis: accum=r[P3] step(r[P2@P5]) */ #define OP_AggStep1 162 /* synopsis: accum=r[P3] step(r[P2@P5]) */ #define OP_AggValue 163 /* synopsis: r[P3]=value N=P2 */ #define OP_AggFinal 164 /* synopsis: accum=r[P1] N=P2 */ #define OP_Expire 165 #define OP_CursorLock 166 #define OP_CursorUnlock 167 #define OP_TableLock 168 /* synopsis: iDb=P1 root=P2 write=P3 */ #define OP_VBegin 169 #define OP_VCreate 170 #define OP_VDestroy 171 #define OP_VOpen 172 #define OP_VInitIn 173 /* synopsis: r[P2]=ValueList(P1,P3) */ #define OP_VColumn 174 /* synopsis: r[P3]=vcolumn(P2) */ #define OP_VRename 175 #define OP_Pagecount 176 #define OP_MaxPgcnt 177 #define OP_FilterAdd 178 /* synopsis: filter(P1) += key(P3@P4) */ #define OP_Trace 179 #define OP_CursorHint 180 #define OP_ReleaseReg 181 /* synopsis: release r[P1@P2] mask P3 */ #define OP_Noop 182 #define OP_Explain 183 #define OP_Abortable 184 /* Properties such as "out2" or "jump" that are specified in ** comments following the "case" for each opcode in the vdbe.c ** are encoded into bitvectors as follows: */ #define OPFLG_JUMP 0x01 /* jump: P2 holds jmp target */ #define OPFLG_IN1 0x02 /* in1: P1 is an input */ #define OPFLG_IN2 0x04 /* in2: P2 is an input */ #define OPFLG_IN3 0x08 /* in3: P3 is an input */ #define OPFLG_OUT2 0x10 /* out2: P2 is an output */ #define OPFLG_OUT3 0x20 /* out3: P3 is an output */ #define OPFLG_INITIALIZER {\ /* 0 */ 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x10,\ /* 8 */ 0x00, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x03,\ /* 16 */ 0x01, 0x01, 0x03, 0x12, 0x03, 0x03, 0x01, 0x09,\ /* 24 */ 0x09, 0x09, 0x09, 0x01, 0x09, 0x09, 0x09, 0x09,\ /* 32 */ 0x09, 0x09, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,\ /* 40 */ 0x01, 0x01, 0x01, 0x26, 0x26, 0x23, 0x0b, 0x01,\ /* 48 */ 0x01, 0x03, 0x03, 0x03, 0x0b, 0x0b, 0x0b, 0x0b,\ /* 56 */ 0x0b, 0x0b, 0x01, 0x03, 0x03, 0x01, 0x01, 0x01,\ /* 64 */ 0x01, 0x00, 0x00, 0x02, 0x02, 0x08, 0x00, 0x10,\ /* 72 */ 0x10, 0x10, 0x10, 0x00, 0x10, 0x10, 0x00, 0x00,\ /* 80 */ 0x10, 0x10, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02,\ /* 88 */ 0x00, 0x00, 0x12, 0x1e, 0x20, 0x00, 0x00, 0x00,\ /* 96 */ 0x00, 0x10, 0x10, 0x00, 0x00, 0x00, 0x26, 0x26,\ /* 104 */ 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,\ /* 112 */ 0x00, 0x00, 0x12, 0x00, 0x00, 0x10, 0x00, 0x00,\ /* 120 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00,\ /* 128 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00,\ /* 136 */ 0x00, 0x04, 0x04, 0x00, 0x00, 0x10, 0x00, 0x10,\ /* 144 */ 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,\ /* 152 */ 0x00, 0x10, 0x00, 0x06, 0x10, 0x00, 0x04, 0x1a,\ /* 160 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\ /* 168 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,\ /* 176 */ 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\ /* 184 */ 0x00,} /* The resolve3P2Values() routine is able to run faster if it knows ** the value of the largest JUMP opcode. The smaller the maximum ** JUMP opcode the better, so the mkopcodeh.tcl script that ** generated this include file strives to group all JUMP opcodes ** together near the beginning of the list. */ #define SQLITE_MX_JUMP_OPCODE 64 /* Maximum JUMP opcode */ /************** End of opcodes.h *********************************************/ /************** Continuing where we left off in vdbe.h ***********************/ /* ** Additional non-public SQLITE_PREPARE_* flags */ #define SQLITE_PREPARE_SAVESQL 0x80 /* Preserve SQL text */ #define SQLITE_PREPARE_MASK 0x0f /* Mask of public flags */ /* ** Prototypes for the VDBE interface. See comments on the implementation ** for a description of what each of these routines does. */ SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(Parse*); SQLITE_PRIVATE Parse *sqlite3VdbeParser(Vdbe*); SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe*,int); SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe*,int,int); SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe*,int,int,int); SQLITE_PRIVATE int sqlite3VdbeGoto(Vdbe*,int); SQLITE_PRIVATE int sqlite3VdbeLoadString(Vdbe*,int,const char*); SQLITE_PRIVATE void sqlite3VdbeMultiLoad(Vdbe*,int,const char*,...); SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe*,int,int,int,int); SQLITE_PRIVATE int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *zP4,int); SQLITE_PRIVATE int sqlite3VdbeAddOp4Dup8(Vdbe*,int,int,int,int,const u8*,int); SQLITE_PRIVATE int sqlite3VdbeAddOp4Int(Vdbe*,int,int,int,int,int); SQLITE_PRIVATE int sqlite3VdbeAddFunctionCall(Parse*,int,int,int,int,const FuncDef*,int); SQLITE_PRIVATE void sqlite3VdbeEndCoroutine(Vdbe*,int); #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) SQLITE_PRIVATE void sqlite3VdbeVerifyNoMallocRequired(Vdbe *p, int N); SQLITE_PRIVATE void sqlite3VdbeVerifyNoResultRow(Vdbe *p); #else # define sqlite3VdbeVerifyNoMallocRequired(A,B) # define sqlite3VdbeVerifyNoResultRow(A) #endif #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3VdbeVerifyAbortable(Vdbe *p, int); #else # define sqlite3VdbeVerifyAbortable(A,B) #endif SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno); #ifndef SQLITE_OMIT_EXPLAIN SQLITE_PRIVATE void sqlite3VdbeExplain(Parse*,u8,const char*,...); SQLITE_PRIVATE void sqlite3VdbeExplainPop(Parse*); SQLITE_PRIVATE int sqlite3VdbeExplainParent(Parse*); # define ExplainQueryPlan(P) sqlite3VdbeExplain P # define ExplainQueryPlanPop(P) sqlite3VdbeExplainPop(P) # define ExplainQueryPlanParent(P) sqlite3VdbeExplainParent(P) #else # define ExplainQueryPlan(P) # define ExplainQueryPlanPop(P) # define ExplainQueryPlanParent(P) 0 # define sqlite3ExplainBreakpoint(A,B) /*no-op*/ #endif #if defined(SQLITE_DEBUG) && !defined(SQLITE_OMIT_EXPLAIN) SQLITE_PRIVATE void sqlite3ExplainBreakpoint(const char*,const char*); #else # define sqlite3ExplainBreakpoint(A,B) /*no-op*/ #endif SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe*, int, char*, u16); SQLITE_PRIVATE void sqlite3VdbeChangeOpcode(Vdbe*, int addr, u8); SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1); SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2); SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe*, int addr, int P3); SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe*, u16 P5); SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe*, int addr); SQLITE_PRIVATE void sqlite3VdbeJumpHereOrPopInst(Vdbe*, int addr); SQLITE_PRIVATE int sqlite3VdbeChangeToNoop(Vdbe*, int addr); SQLITE_PRIVATE int sqlite3VdbeDeletePriorOpcode(Vdbe*, u8 op); #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbeReleaseRegisters(Parse*,int addr, int n, u32 mask, int); #else # define sqlite3VdbeReleaseRegisters(P,A,N,M,F) #endif SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N); SQLITE_PRIVATE void sqlite3VdbeAppendP4(Vdbe*, void *pP4, int p4type); SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse*, Index*); SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe*, int); SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe*, int); SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Parse*); SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeReusable(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeClearObject(sqlite3*,Vdbe*); SQLITE_PRIVATE void sqlite3VdbeMakeReady(Vdbe*,Parse*); SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe*, int); SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *, int); #endif SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeRewind(Vdbe*); SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe*,int); SQLITE_PRIVATE int sqlite3VdbeSetColName(Vdbe*, int, int, const char *, void(*)(void*)); SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe*); SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe*); SQLITE_PRIVATE u8 sqlite3VdbePrepareFlags(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe*, const char *z, int n, u8); #ifdef SQLITE_ENABLE_NORMALIZE SQLITE_PRIVATE void sqlite3VdbeAddDblquoteStr(sqlite3*,Vdbe*,const char*); SQLITE_PRIVATE int sqlite3VdbeUsesDoubleQuotedString(Vdbe*,const char*); #endif SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe*,Vdbe*); SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*); SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe*, int, u8); SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe*, int); #ifndef SQLITE_OMIT_TRACE SQLITE_PRIVATE char *sqlite3VdbeExpandSql(Vdbe*, const char*); #endif SQLITE_PRIVATE int sqlite3MemCompare(const Mem*, const Mem*, const CollSeq*); SQLITE_PRIVATE int sqlite3BlobCompare(const Mem*, const Mem*); SQLITE_PRIVATE void sqlite3VdbeRecordUnpack(KeyInfo*,int,const void*,UnpackedRecord*); SQLITE_PRIVATE int sqlite3VdbeRecordCompare(int,const void*,UnpackedRecord*); SQLITE_PRIVATE int sqlite3VdbeRecordCompareWithSkip(int, const void *, UnpackedRecord *, int); SQLITE_PRIVATE UnpackedRecord *sqlite3VdbeAllocUnpackedRecord(KeyInfo*); typedef int (*RecordCompare)(int,const void*,UnpackedRecord*); SQLITE_PRIVATE RecordCompare sqlite3VdbeFindCompare(UnpackedRecord*); SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *, SubProgram *); SQLITE_PRIVATE int sqlite3VdbeHasSubProgram(Vdbe*); SQLITE_PRIVATE int sqlite3NotPureFunc(sqlite3_context*); #ifdef SQLITE_ENABLE_BYTECODE_VTAB SQLITE_PRIVATE int sqlite3VdbeBytecodeVtabInit(sqlite3*); #endif /* Use SQLITE_ENABLE_COMMENTS to enable generation of extra comments on ** each VDBE opcode. ** ** Use the SQLITE_ENABLE_MODULE_COMMENTS macro to see some extra no-op ** comments in VDBE programs that show key decision points in the code ** generator. */ #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe*, const char*, ...); # define VdbeComment(X) sqlite3VdbeComment X SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe*, const char*, ...); # define VdbeNoopComment(X) sqlite3VdbeNoopComment X # ifdef SQLITE_ENABLE_MODULE_COMMENTS # define VdbeModuleComment(X) sqlite3VdbeNoopComment X # else # define VdbeModuleComment(X) # endif #else # define VdbeComment(X) # define VdbeNoopComment(X) # define VdbeModuleComment(X) #endif /* ** The VdbeCoverage macros are used to set a coverage testing point ** for VDBE branch instructions. The coverage testing points are line ** numbers in the sqlite3.c source file. VDBE branch coverage testing ** only works with an amalagmation build. That's ok since a VDBE branch ** coverage build designed for testing the test suite only. No application ** should ever ship with VDBE branch coverage measuring turned on. ** ** VdbeCoverage(v) // Mark the previously coded instruction ** // as a branch ** ** VdbeCoverageIf(v, conditional) // Mark previous if conditional true ** ** VdbeCoverageAlwaysTaken(v) // Previous branch is always taken ** ** VdbeCoverageNeverTaken(v) // Previous branch is never taken ** ** VdbeCoverageNeverNull(v) // Previous three-way branch is only ** // taken on the first two ways. The ** // NULL option is not possible ** ** VdbeCoverageEqNe(v) // Previous OP_Jump is only interested ** // in distingishing equal and not-equal. ** ** Every VDBE branch operation must be tagged with one of the macros above. ** If not, then when "make test" is run with -DSQLITE_VDBE_COVERAGE and ** -DSQLITE_DEBUG then an ALWAYS() will fail in the vdbeTakeBranch() ** routine in vdbe.c, alerting the developer to the missed tag. ** ** During testing, the test application will invoke ** sqlite3_test_control(SQLITE_TESTCTRL_VDBE_COVERAGE,...) to set a callback ** routine that is invoked as each bytecode branch is taken. The callback ** contains the sqlite3.c source line number ov the VdbeCoverage macro and ** flags to indicate whether or not the branch was taken. The test application ** is responsible for keeping track of this and reporting byte-code branches ** that are never taken. ** ** See the VdbeBranchTaken() macro and vdbeTakeBranch() function in the ** vdbe.c source file for additional information. */ #ifdef SQLITE_VDBE_COVERAGE SQLITE_PRIVATE void sqlite3VdbeSetLineNumber(Vdbe*,int); # define VdbeCoverage(v) sqlite3VdbeSetLineNumber(v,__LINE__) # define VdbeCoverageIf(v,x) if(x)sqlite3VdbeSetLineNumber(v,__LINE__) # define VdbeCoverageAlwaysTaken(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x5000000); # define VdbeCoverageNeverTaken(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x6000000); # define VdbeCoverageNeverNull(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x4000000); # define VdbeCoverageNeverNullIf(v,x) \ if(x)sqlite3VdbeSetLineNumber(v,__LINE__|0x4000000); # define VdbeCoverageEqNe(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x8000000); # define VDBE_OFFSET_LINENO(x) (__LINE__+x) #else # define VdbeCoverage(v) # define VdbeCoverageIf(v,x) # define VdbeCoverageAlwaysTaken(v) # define VdbeCoverageNeverTaken(v) # define VdbeCoverageNeverNull(v) # define VdbeCoverageNeverNullIf(v,x) # define VdbeCoverageEqNe(v) # define VDBE_OFFSET_LINENO(x) 0 #endif #ifdef SQLITE_ENABLE_STMT_SCANSTATUS SQLITE_PRIVATE void sqlite3VdbeScanStatus(Vdbe*, int, int, int, LogEst, const char*); #else # define sqlite3VdbeScanStatus(a,b,c,d,e) #endif #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) SQLITE_PRIVATE void sqlite3VdbePrintOp(FILE*, int, VdbeOp*); #endif #endif /* SQLITE_VDBE_H */ /************** End of vdbe.h ************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include pcache.h in the middle of sqliteInt.h ****************/ /************** Begin file pcache.h ******************************************/ /* ** 2008 August 05 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the sqlite page cache ** subsystem. */ #ifndef _PCACHE_H_ typedef struct PgHdr PgHdr; typedef struct PCache PCache; /* ** Every page in the cache is controlled by an instance of the following ** structure. */ struct PgHdr { sqlite3_pcache_page *pPage; /* Pcache object page handle */ void *pData; /* Page data */ void *pExtra; /* Extra content */ PCache *pCache; /* PRIVATE: Cache that owns this page */ PgHdr *pDirty; /* Transient list of dirty sorted by pgno */ Pager *pPager; /* The pager this page is part of */ Pgno pgno; /* Page number for this page */ #ifdef SQLITE_CHECK_PAGES u32 pageHash; /* Hash of page content */ #endif u16 flags; /* PGHDR flags defined below */ /********************************************************************** ** Elements above, except pCache, are public. All that follow are ** private to pcache.c and should not be accessed by other modules. ** pCache is grouped with the public elements for efficiency. */ i16 nRef; /* Number of users of this page */ PgHdr *pDirtyNext; /* Next element in list of dirty pages */ PgHdr *pDirtyPrev; /* Previous element in list of dirty pages */ /* NB: pDirtyNext and pDirtyPrev are undefined if the ** PgHdr object is not dirty */ }; /* Bit values for PgHdr.flags */ #define PGHDR_CLEAN 0x001 /* Page not on the PCache.pDirty list */ #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ #define PGHDR_WRITEABLE 0x004 /* Journaled and ready to modify */ #define PGHDR_NEED_SYNC 0x008 /* Fsync the rollback journal before ** writing this page to the database */ #define PGHDR_DONT_WRITE 0x010 /* Do not write content to disk */ #define PGHDR_MMAP 0x020 /* This is an mmap page object */ #define PGHDR_WAL_APPEND 0x040 /* Appended to wal file */ /* Initialize and shutdown the page cache subsystem */ SQLITE_PRIVATE int sqlite3PcacheInitialize(void); SQLITE_PRIVATE void sqlite3PcacheShutdown(void); /* Page cache buffer management: ** These routines implement SQLITE_CONFIG_PAGECACHE. */ SQLITE_PRIVATE void sqlite3PCacheBufferSetup(void *, int sz, int n); /* Create a new pager cache. ** Under memory stress, invoke xStress to try to make pages clean. ** Only clean and unpinned pages can be reclaimed. */ SQLITE_PRIVATE int sqlite3PcacheOpen( int szPage, /* Size of every page */ int szExtra, /* Extra space associated with each page */ int bPurgeable, /* True if pages are on backing store */ int (*xStress)(void*, PgHdr*), /* Call to try to make pages clean */ void *pStress, /* Argument to xStress */ PCache *pToInit /* Preallocated space for the PCache */ ); /* Modify the page-size after the cache has been created. */ SQLITE_PRIVATE int sqlite3PcacheSetPageSize(PCache *, int); /* Return the size in bytes of a PCache object. Used to preallocate ** storage space. */ SQLITE_PRIVATE int sqlite3PcacheSize(void); /* One release per successful fetch. Page is pinned until released. ** Reference counted. */ SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch(PCache*, Pgno, int createFlag); SQLITE_PRIVATE int sqlite3PcacheFetchStress(PCache*, Pgno, sqlite3_pcache_page**); SQLITE_PRIVATE PgHdr *sqlite3PcacheFetchFinish(PCache*, Pgno, sqlite3_pcache_page *pPage); SQLITE_PRIVATE void sqlite3PcacheRelease(PgHdr*); SQLITE_PRIVATE void sqlite3PcacheDrop(PgHdr*); /* Remove page from cache */ SQLITE_PRIVATE void sqlite3PcacheMakeDirty(PgHdr*); /* Make sure page is marked dirty */ SQLITE_PRIVATE void sqlite3PcacheMakeClean(PgHdr*); /* Mark a single page as clean */ SQLITE_PRIVATE void sqlite3PcacheCleanAll(PCache*); /* Mark all dirty list pages as clean */ SQLITE_PRIVATE void sqlite3PcacheClearWritable(PCache*); /* Change a page number. Used by incr-vacuum. */ SQLITE_PRIVATE void sqlite3PcacheMove(PgHdr*, Pgno); /* Remove all pages with pgno>x. Reset the cache if x==0 */ SQLITE_PRIVATE void sqlite3PcacheTruncate(PCache*, Pgno x); /* Get a list of all dirty pages in the cache, sorted by page number */ SQLITE_PRIVATE PgHdr *sqlite3PcacheDirtyList(PCache*); /* Reset and close the cache object */ SQLITE_PRIVATE void sqlite3PcacheClose(PCache*); /* Clear flags from pages of the page cache */ SQLITE_PRIVATE void sqlite3PcacheClearSyncFlags(PCache *); /* Discard the contents of the cache */ SQLITE_PRIVATE void sqlite3PcacheClear(PCache*); /* Return the total number of outstanding page references */ SQLITE_PRIVATE int sqlite3PcacheRefCount(PCache*); /* Increment the reference count of an existing page */ SQLITE_PRIVATE void sqlite3PcacheRef(PgHdr*); SQLITE_PRIVATE int sqlite3PcachePageRefcount(PgHdr*); /* Return the total number of pages stored in the cache */ SQLITE_PRIVATE int sqlite3PcachePagecount(PCache*); #if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG) /* Iterate through all dirty pages currently stored in the cache. This ** interface is only available if SQLITE_CHECK_PAGES is defined when the ** library is built. */ SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)); #endif #if defined(SQLITE_DEBUG) /* Check invariants on a PgHdr object */ SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr*); #endif /* Set and get the suggested cache-size for the specified pager-cache. ** ** If no global maximum is configured, then the system attempts to limit ** the total number of pages cached by purgeable pager-caches to the sum ** of the suggested cache-sizes. */ SQLITE_PRIVATE void sqlite3PcacheSetCachesize(PCache *, int); #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3PcacheGetCachesize(PCache *); #endif /* Set or get the suggested spill-size for the specified pager-cache. ** ** The spill-size is the minimum number of pages in cache before the cache ** will attempt to spill dirty pages by calling xStress. */ SQLITE_PRIVATE int sqlite3PcacheSetSpillsize(PCache *, int); /* Free up as much memory as possible from the page cache */ SQLITE_PRIVATE void sqlite3PcacheShrink(PCache*); #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT /* Try to return memory used by the pcache module to the main memory heap */ SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int); #endif #ifdef SQLITE_TEST SQLITE_PRIVATE void sqlite3PcacheStats(int*,int*,int*,int*); #endif SQLITE_PRIVATE void sqlite3PCacheSetDefault(void); /* Return the header size */ SQLITE_PRIVATE int sqlite3HeaderSizePcache(void); SQLITE_PRIVATE int sqlite3HeaderSizePcache1(void); /* Number of dirty pages as a percentage of the configured cache size */ SQLITE_PRIVATE int sqlite3PCachePercentDirty(PCache*); #ifdef SQLITE_DIRECT_OVERFLOW_READ SQLITE_PRIVATE int sqlite3PCacheIsDirty(PCache *pCache); #endif #endif /* _PCACHE_H_ */ /************** End of pcache.h **********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include os.h in the middle of sqliteInt.h ********************/ /************** Begin file os.h **********************************************/ /* ** 2001 September 16 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file (together with is companion C source-code file ** "os.c") attempt to abstract the underlying operating system so that ** the SQLite library will work on both POSIX and windows systems. ** ** This header file is #include-ed by sqliteInt.h and thus ends up ** being included by every source file. */ #ifndef _SQLITE_OS_H_ #define _SQLITE_OS_H_ /* ** Attempt to automatically detect the operating system and setup the ** necessary pre-processor macros for it. */ /************** Include os_setup.h in the middle of os.h *********************/ /************** Begin file os_setup.h ****************************************/ /* ** 2013 November 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains pre-processor directives related to operating system ** detection and/or setup. */ #ifndef SQLITE_OS_SETUP_H #define SQLITE_OS_SETUP_H /* ** Figure out if we are dealing with Unix, Windows, or some other operating ** system. ** ** After the following block of preprocess macros, all of SQLITE_OS_UNIX, ** SQLITE_OS_WIN, and SQLITE_OS_OTHER will defined to either 1 or 0. One of ** the three will be 1. The other two will be 0. */ #if defined(SQLITE_OS_OTHER) # if SQLITE_OS_OTHER==1 # undef SQLITE_OS_UNIX # define SQLITE_OS_UNIX 0 # undef SQLITE_OS_WIN # define SQLITE_OS_WIN 0 # else # undef SQLITE_OS_OTHER # endif #endif #if !defined(SQLITE_OS_UNIX) && !defined(SQLITE_OS_OTHER) # define SQLITE_OS_OTHER 0 # ifndef SQLITE_OS_WIN # if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || \ defined(__MINGW32__) || defined(__BORLANDC__) # define SQLITE_OS_WIN 1 # define SQLITE_OS_UNIX 0 # else # define SQLITE_OS_WIN 0 # define SQLITE_OS_UNIX 1 # endif # else # define SQLITE_OS_UNIX 0 # endif #else # ifndef SQLITE_OS_WIN # define SQLITE_OS_WIN 0 # endif #endif #endif /* SQLITE_OS_SETUP_H */ /************** End of os_setup.h ********************************************/ /************** Continuing where we left off in os.h *************************/ /* If the SET_FULLSYNC macro is not defined above, then make it ** a no-op */ #ifndef SET_FULLSYNC # define SET_FULLSYNC(x,y) #endif /* Maximum pathname length. Note: FILENAME_MAX defined by stdio.h */ #ifndef SQLITE_MAX_PATHLEN # define SQLITE_MAX_PATHLEN FILENAME_MAX #endif /* ** The default size of a disk sector */ #ifndef SQLITE_DEFAULT_SECTOR_SIZE # define SQLITE_DEFAULT_SECTOR_SIZE 4096 #endif /* ** Temporary files are named starting with this prefix followed by 16 random ** alphanumeric characters, and no file extension. They are stored in the ** OS's standard temporary file directory, and are deleted prior to exit. ** If sqlite is being embedded in another program, you may wish to change the ** prefix to reflect your program's name, so that if your program exits ** prematurely, old temporary files can be easily identified. This can be done ** using -DSQLITE_TEMP_FILE_PREFIX=myprefix_ on the compiler command line. ** ** 2006-10-31: The default prefix used to be "sqlite_". But then ** Mcafee started using SQLite in their anti-virus product and it ** started putting files with the "sqlite" name in the c:/temp folder. ** This annoyed many windows users. Those users would then do a ** Google search for "sqlite", find the telephone numbers of the ** developers and call to wake them up at night and complain. ** For this reason, the default name prefix is changed to be "sqlite" ** spelled backwards. So the temp files are still identified, but ** anybody smart enough to figure out the code is also likely smart ** enough to know that calling the developer will not help get rid ** of the file. */ #ifndef SQLITE_TEMP_FILE_PREFIX # define SQLITE_TEMP_FILE_PREFIX "etilqs_" #endif /* ** The following values may be passed as the second argument to ** sqlite3OsLock(). The various locks exhibit the following semantics: ** ** SHARED: Any number of processes may hold a SHARED lock simultaneously. ** RESERVED: A single process may hold a RESERVED lock on a file at ** any time. Other processes may hold and obtain new SHARED locks. ** PENDING: A single process may hold a PENDING lock on a file at ** any one time. Existing SHARED locks may persist, but no new ** SHARED locks may be obtained by other processes. ** EXCLUSIVE: An EXCLUSIVE lock precludes all other locks. ** ** PENDING_LOCK may not be passed directly to sqlite3OsLock(). Instead, a ** process that requests an EXCLUSIVE lock may actually obtain a PENDING ** lock. This can be upgraded to an EXCLUSIVE lock by a subsequent call to ** sqlite3OsLock(). */ #define NO_LOCK 0 #define SHARED_LOCK 1 #define RESERVED_LOCK 2 #define PENDING_LOCK 3 #define EXCLUSIVE_LOCK 4 /* ** File Locking Notes: (Mostly about windows but also some info for Unix) ** ** We cannot use LockFileEx() or UnlockFileEx() on Win95/98/ME because ** those functions are not available. So we use only LockFile() and ** UnlockFile(). ** ** LockFile() prevents not just writing but also reading by other processes. ** A SHARED_LOCK is obtained by locking a single randomly-chosen ** byte out of a specific range of bytes. The lock byte is obtained at ** random so two separate readers can probably access the file at the ** same time, unless they are unlucky and choose the same lock byte. ** An EXCLUSIVE_LOCK is obtained by locking all bytes in the range. ** There can only be one writer. A RESERVED_LOCK is obtained by locking ** a single byte of the file that is designated as the reserved lock byte. ** A PENDING_LOCK is obtained by locking a designated byte different from ** the RESERVED_LOCK byte. ** ** On WinNT/2K/XP systems, LockFileEx() and UnlockFileEx() are available, ** which means we can use reader/writer locks. When reader/writer locks ** are used, the lock is placed on the same range of bytes that is used ** for probabilistic locking in Win95/98/ME. Hence, the locking scheme ** will support two or more Win95 readers or two or more WinNT readers. ** But a single Win95 reader will lock out all WinNT readers and a single ** WinNT reader will lock out all other Win95 readers. ** ** The following #defines specify the range of bytes used for locking. ** SHARED_SIZE is the number of bytes available in the pool from which ** a random byte is selected for a shared lock. The pool of bytes for ** shared locks begins at SHARED_FIRST. ** ** The same locking strategy and ** byte ranges are used for Unix. This leaves open the possibility of having ** clients on win95, winNT, and unix all talking to the same shared file ** and all locking correctly. To do so would require that samba (or whatever ** tool is being used for file sharing) implements locks correctly between ** windows and unix. I'm guessing that isn't likely to happen, but by ** using the same locking range we are at least open to the possibility. ** ** Locking in windows is manditory. For this reason, we cannot store ** actual data in the bytes used for locking. The pager never allocates ** the pages involved in locking therefore. SHARED_SIZE is selected so ** that all locks will fit on a single page even at the minimum page size. ** PENDING_BYTE defines the beginning of the locks. By default PENDING_BYTE ** is set high so that we don't have to allocate an unused page except ** for very large databases. But one should test the page skipping logic ** by setting PENDING_BYTE low and running the entire regression suite. ** ** Changing the value of PENDING_BYTE results in a subtly incompatible ** file format. Depending on how it is changed, you might not notice ** the incompatibility right away, even running a full regression test. ** The default location of PENDING_BYTE is the first byte past the ** 1GB boundary. ** */ #ifdef SQLITE_OMIT_WSD # define PENDING_BYTE (0x40000000) #else # define PENDING_BYTE sqlite3PendingByte #endif #define RESERVED_BYTE (PENDING_BYTE+1) #define SHARED_FIRST (PENDING_BYTE+2) #define SHARED_SIZE 510 /* ** Wrapper around OS specific sqlite3_os_init() function. */ SQLITE_PRIVATE int sqlite3OsInit(void); /* ** Functions for accessing sqlite3_file methods */ SQLITE_PRIVATE void sqlite3OsClose(sqlite3_file*); SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file*, void*, int amt, i64 offset); SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file*, const void*, int amt, i64 offset); SQLITE_PRIVATE int sqlite3OsTruncate(sqlite3_file*, i64 size); SQLITE_PRIVATE int sqlite3OsSync(sqlite3_file*, int); SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize); SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file*, int); SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file*, int); SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut); SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file*,int,void*); SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file*,int,void*); #define SQLITE_FCNTL_DB_UNCHANGED 0xca093fa0 SQLITE_PRIVATE int sqlite3OsSectorSize(sqlite3_file *id); SQLITE_PRIVATE int sqlite3OsDeviceCharacteristics(sqlite3_file *id); #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3OsShmMap(sqlite3_file *,int,int,int,void volatile **); SQLITE_PRIVATE int sqlite3OsShmLock(sqlite3_file *id, int, int, int); SQLITE_PRIVATE void sqlite3OsShmBarrier(sqlite3_file *id); SQLITE_PRIVATE int sqlite3OsShmUnmap(sqlite3_file *id, int); #endif /* SQLITE_OMIT_WAL */ SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64, int, void **); SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *, i64, void *); /* ** Functions for accessing sqlite3_vfs methods */ SQLITE_PRIVATE int sqlite3OsOpen(sqlite3_vfs *, const char *, sqlite3_file*, int, int *); SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *, const char *, int); SQLITE_PRIVATE int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut); SQLITE_PRIVATE int sqlite3OsFullPathname(sqlite3_vfs *, const char *, int, char *); #ifndef SQLITE_OMIT_LOAD_EXTENSION SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *, const char *); SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *, int, char *); SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *, void *, const char *))(void); SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *, void *); #endif /* SQLITE_OMIT_LOAD_EXTENSION */ SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *, int, char *); SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *, int); SQLITE_PRIVATE int sqlite3OsGetLastError(sqlite3_vfs*); SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *, sqlite3_int64*); /* ** Convenience functions for opening and closing files using ** sqlite3_malloc() to obtain space for the file-handle structure. */ SQLITE_PRIVATE int sqlite3OsOpenMalloc(sqlite3_vfs *, const char *, sqlite3_file **, int,int*); SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *); #endif /* _SQLITE_OS_H_ */ /************** End of os.h **************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include mutex.h in the middle of sqliteInt.h *****************/ /************** Begin file mutex.h *******************************************/ /* ** 2007 August 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains the common header for all mutex implementations. ** The sqliteInt.h header #includes this file so that it is available ** to all source files. We break it out in an effort to keep the code ** better organized. ** ** NOTE: source files should *not* #include this header file directly. ** Source files should #include the sqliteInt.h file and let that file ** include this one indirectly. */ /* ** Figure out what version of the code to use. The choices are ** ** SQLITE_MUTEX_OMIT No mutex logic. Not even stubs. The ** mutexes implementation cannot be overridden ** at start-time. ** ** SQLITE_MUTEX_NOOP For single-threaded applications. No ** mutual exclusion is provided. But this ** implementation can be overridden at ** start-time. ** ** SQLITE_MUTEX_PTHREADS For multi-threaded applications on Unix. ** ** SQLITE_MUTEX_W32 For multi-threaded applications on Win32. */ #if !SQLITE_THREADSAFE # define SQLITE_MUTEX_OMIT #endif #if SQLITE_THREADSAFE && !defined(SQLITE_MUTEX_NOOP) # if SQLITE_OS_UNIX # define SQLITE_MUTEX_PTHREADS # elif SQLITE_OS_WIN # define SQLITE_MUTEX_W32 # else # define SQLITE_MUTEX_NOOP # endif #endif #ifdef SQLITE_MUTEX_OMIT /* ** If this is a no-op implementation, implement everything as macros. */ #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8) #define sqlite3_mutex_free(X) #define sqlite3_mutex_enter(X) #define sqlite3_mutex_try(X) SQLITE_OK #define sqlite3_mutex_leave(X) #define sqlite3_mutex_held(X) ((void)(X),1) #define sqlite3_mutex_notheld(X) ((void)(X),1) #define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8) #define sqlite3MutexInit() SQLITE_OK #define sqlite3MutexEnd() #define MUTEX_LOGIC(X) #else #define MUTEX_LOGIC(X) X SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*); #endif /* defined(SQLITE_MUTEX_OMIT) */ /************** End of mutex.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* The SQLITE_EXTRA_DURABLE compile-time option used to set the default ** synchronous setting to EXTRA. It is no longer supported. */ #ifdef SQLITE_EXTRA_DURABLE # warning Use SQLITE_DEFAULT_SYNCHRONOUS=3 instead of SQLITE_EXTRA_DURABLE # define SQLITE_DEFAULT_SYNCHRONOUS 3 #endif /* ** Default synchronous levels. ** ** Note that (for historcal reasons) the PAGER_SYNCHRONOUS_* macros differ ** from the SQLITE_DEFAULT_SYNCHRONOUS value by 1. ** ** PAGER_SYNCHRONOUS DEFAULT_SYNCHRONOUS ** OFF 1 0 ** NORMAL 2 1 ** FULL 3 2 ** EXTRA 4 3 ** ** The "PRAGMA synchronous" statement also uses the zero-based numbers. ** In other words, the zero-based numbers are used for all external interfaces ** and the one-based values are used internally. */ #ifndef SQLITE_DEFAULT_SYNCHRONOUS # define SQLITE_DEFAULT_SYNCHRONOUS 2 #endif #ifndef SQLITE_DEFAULT_WAL_SYNCHRONOUS # define SQLITE_DEFAULT_WAL_SYNCHRONOUS SQLITE_DEFAULT_SYNCHRONOUS #endif /* ** Each database file to be accessed by the system is an instance ** of the following structure. There are normally two of these structures ** in the sqlite.aDb[] array. aDb[0] is the main database file and ** aDb[1] is the database file used to hold temporary tables. Additional ** databases may be attached. */ struct Db { char *zDbSName; /* Name of this database. (schema name, not filename) */ Btree *pBt; /* The B*Tree structure for this database file */ u8 safety_level; /* How aggressive at syncing data to disk */ u8 bSyncSet; /* True if "PRAGMA synchronous=N" has been run */ Schema *pSchema; /* Pointer to database schema (possibly shared) */ }; /* ** An instance of the following structure stores a database schema. ** ** Most Schema objects are associated with a Btree. The exception is ** the Schema for the TEMP databaes (sqlite3.aDb[1]) which is free-standing. ** In shared cache mode, a single Schema object can be shared by multiple ** Btrees that refer to the same underlying BtShared object. ** ** Schema objects are automatically deallocated when the last Btree that ** references them is destroyed. The TEMP Schema is manually freed by ** sqlite3_close(). * ** A thread must be holding a mutex on the corresponding Btree in order ** to access Schema content. This implies that the thread must also be ** holding a mutex on the sqlite3 connection pointer that owns the Btree. ** For a TEMP Schema, only the connection mutex is required. */ struct Schema { int schema_cookie; /* Database schema version number for this file */ int iGeneration; /* Generation counter. Incremented with each change */ Hash tblHash; /* All tables indexed by name */ Hash idxHash; /* All (named) indices indexed by name */ Hash trigHash; /* All triggers indexed by name */ Hash fkeyHash; /* All foreign keys by referenced table name */ Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */ u8 file_format; /* Schema format version for this file */ u8 enc; /* Text encoding used by this database */ u16 schemaFlags; /* Flags associated with this schema */ int cache_size; /* Number of pages to use in the cache */ }; /* ** These macros can be used to test, set, or clear bits in the ** Db.pSchema->flags field. */ #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P)) #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0) #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P) #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P) /* ** Allowed values for the DB.pSchema->flags field. ** ** The DB_SchemaLoaded flag is set after the database schema has been ** read into internal hash tables. ** ** DB_UnresetViews means that one or more views have column names that ** have been filled out. If the schema changes, these column names might ** changes and so the view will need to be reset. */ #define DB_SchemaLoaded 0x0001 /* The schema has been loaded */ #define DB_UnresetViews 0x0002 /* Some views have defined column names */ #define DB_ResetWanted 0x0008 /* Reset the schema when nSchemaLock==0 */ /* ** The number of different kinds of things that can be limited ** using the sqlite3_limit() interface. */ #define SQLITE_N_LIMIT (SQLITE_LIMIT_WORKER_THREADS+1) /* ** Lookaside malloc is a set of fixed-size buffers that can be used ** to satisfy small transient memory allocation requests for objects ** associated with a particular database connection. The use of ** lookaside malloc provides a significant performance enhancement ** (approx 10%) by avoiding numerous malloc/free requests while parsing ** SQL statements. ** ** The Lookaside structure holds configuration information about the ** lookaside malloc subsystem. Each available memory allocation in ** the lookaside subsystem is stored on a linked list of LookasideSlot ** objects. ** ** Lookaside allocations are only allowed for objects that are associated ** with a particular database connection. Hence, schema information cannot ** be stored in lookaside because in shared cache mode the schema information ** is shared by multiple database connections. Therefore, while parsing ** schema information, the Lookaside.bEnabled flag is cleared so that ** lookaside allocations are not used to construct the schema objects. ** ** New lookaside allocations are only allowed if bDisable==0. When ** bDisable is greater than zero, sz is set to zero which effectively ** disables lookaside without adding a new test for the bDisable flag ** in a performance-critical path. sz should be set by to szTrue whenever ** bDisable changes back to zero. ** ** Lookaside buffers are initially held on the pInit list. As they are ** used and freed, they are added back to the pFree list. New allocations ** come off of pFree first, then pInit as a fallback. This dual-list ** allows use to compute a high-water mark - the maximum number of allocations ** outstanding at any point in the past - by subtracting the number of ** allocations on the pInit list from the total number of allocations. ** ** Enhancement on 2019-12-12: Two-size-lookaside ** The default lookaside configuration is 100 slots of 1200 bytes each. ** The larger slot sizes are important for performance, but they waste ** a lot of space, as most lookaside allocations are less than 128 bytes. ** The two-size-lookaside enhancement breaks up the lookaside allocation ** into two pools: One of 128-byte slots and the other of the default size ** (1200-byte) slots. Allocations are filled from the small-pool first, ** failing over to the full-size pool if that does not work. Thus more ** lookaside slots are available while also using less memory. ** This enhancement can be omitted by compiling with ** SQLITE_OMIT_TWOSIZE_LOOKASIDE. */ struct Lookaside { u32 bDisable; /* Only operate the lookaside when zero */ u16 sz; /* Size of each buffer in bytes */ u16 szTrue; /* True value of sz, even if disabled */ u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */ u32 nSlot; /* Number of lookaside slots allocated */ u32 anStat[3]; /* 0: hits. 1: size misses. 2: full misses */ LookasideSlot *pInit; /* List of buffers not previously used */ LookasideSlot *pFree; /* List of available buffers */ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE LookasideSlot *pSmallInit; /* List of small buffers not prediously used */ LookasideSlot *pSmallFree; /* List of available small buffers */ void *pMiddle; /* First byte past end of full-size buffers and ** the first byte of LOOKASIDE_SMALL buffers */ #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ void *pStart; /* First byte of available memory space */ void *pEnd; /* First byte past end of available space */ }; struct LookasideSlot { LookasideSlot *pNext; /* Next buffer in the list of free buffers */ }; #define DisableLookaside db->lookaside.bDisable++;db->lookaside.sz=0 #define EnableLookaside db->lookaside.bDisable--;\ db->lookaside.sz=db->lookaside.bDisable?0:db->lookaside.szTrue /* Size of the smaller allocations in two-size lookside */ #ifdef SQLITE_OMIT_TWOSIZE_LOOKASIDE # define LOOKASIDE_SMALL 0 #else # define LOOKASIDE_SMALL 128 #endif /* ** A hash table for built-in function definitions. (Application-defined ** functions use a regular table table from hash.h.) ** ** Hash each FuncDef structure into one of the FuncDefHash.a[] slots. ** Collisions are on the FuncDef.u.pHash chain. Use the SQLITE_FUNC_HASH() ** macro to compute a hash on the function name. */ #define SQLITE_FUNC_HASH_SZ 23 struct FuncDefHash { FuncDef *a[SQLITE_FUNC_HASH_SZ]; /* Hash table for functions */ }; #define SQLITE_FUNC_HASH(C,L) (((C)+(L))%SQLITE_FUNC_HASH_SZ) #ifdef SQLITE_USER_AUTHENTICATION /* ** Information held in the "sqlite3" database connection object and used ** to manage user authentication. */ typedef struct sqlite3_userauth sqlite3_userauth; struct sqlite3_userauth { u8 authLevel; /* Current authentication level */ int nAuthPW; /* Size of the zAuthPW in bytes */ char *zAuthPW; /* Password used to authenticate */ char *zAuthUser; /* User name used to authenticate */ }; /* Allowed values for sqlite3_userauth.authLevel */ #define UAUTH_Unknown 0 /* Authentication not yet checked */ #define UAUTH_Fail 1 /* User authentication failed */ #define UAUTH_User 2 /* Authenticated as a normal user */ #define UAUTH_Admin 3 /* Authenticated as an administrator */ /* Functions used only by user authorization logic */ SQLITE_PRIVATE int sqlite3UserAuthTable(const char*); SQLITE_PRIVATE int sqlite3UserAuthCheckLogin(sqlite3*,const char*,u8*); SQLITE_PRIVATE void sqlite3UserAuthInit(sqlite3*); SQLITE_PRIVATE void sqlite3CryptFunc(sqlite3_context*,int,sqlite3_value**); #endif /* SQLITE_USER_AUTHENTICATION */ /* ** typedef for the authorization callback function. */ #ifdef SQLITE_USER_AUTHENTICATION typedef int (*sqlite3_xauth)(void*,int,const char*,const char*,const char*, const char*, const char*); #else typedef int (*sqlite3_xauth)(void*,int,const char*,const char*,const char*, const char*); #endif #ifndef SQLITE_OMIT_DEPRECATED /* This is an extra SQLITE_TRACE macro that indicates "legacy" tracing ** in the style of sqlite3_trace() */ #define SQLITE_TRACE_LEGACY 0x40 /* Use the legacy xTrace */ #define SQLITE_TRACE_XPROFILE 0x80 /* Use the legacy xProfile */ #else #define SQLITE_TRACE_LEGACY 0 #define SQLITE_TRACE_XPROFILE 0 #endif /* SQLITE_OMIT_DEPRECATED */ #define SQLITE_TRACE_NONLEGACY_MASK 0x0f /* Normal flags */ /* ** Maximum number of sqlite3.aDb[] entries. This is the number of attached ** databases plus 2 for "main" and "temp". */ #define SQLITE_MAX_DB (SQLITE_MAX_ATTACHED+2) /* ** Each database connection is an instance of the following structure. */ struct sqlite3 { sqlite3_vfs *pVfs; /* OS Interface */ struct Vdbe *pVdbe; /* List of active virtual machines */ CollSeq *pDfltColl; /* BINARY collseq for the database encoding */ sqlite3_mutex *mutex; /* Connection mutex */ Db *aDb; /* All backends */ int nDb; /* Number of backends currently in use */ u32 mDbFlags; /* flags recording internal state */ u64 flags; /* flags settable by pragmas. See below */ i64 lastRowid; /* ROWID of most recent insert (see above) */ i64 szMmap; /* Default mmap_size setting */ u32 nSchemaLock; /* Do not reset the schema when non-zero */ unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ int errCode; /* Most recent error code (SQLITE_*) */ int errByteOffset; /* Byte offset of error in SQL statement */ int errMask; /* & result codes with this before returning */ int iSysErrno; /* Errno value from last system error */ u32 dbOptFlags; /* Flags to enable/disable optimizations */ u8 enc; /* Text encoding */ u8 autoCommit; /* The auto-commit flag. */ u8 temp_store; /* 1: file 2: memory 0: default */ u8 mallocFailed; /* True if we have seen a malloc failure */ u8 bBenignMalloc; /* Do not require OOMs if true */ u8 dfltLockMode; /* Default locking-mode for attached dbs */ signed char nextAutovac; /* Autovac setting after VACUUM if >=0 */ u8 suppressErr; /* Do not issue error messages if true */ u8 vtabOnConflict; /* Value to return for s3_vtab_on_conflict() */ u8 isTransactionSavepoint; /* True if the outermost savepoint is a TS */ u8 mTrace; /* zero or more SQLITE_TRACE flags */ u8 noSharedCache; /* True if no shared-cache backends */ u8 nSqlExec; /* Number of pending OP_SqlExec opcodes */ u8 eOpenState; /* Current condition of the connection */ int nextPagesize; /* Pagesize after VACUUM if >0 */ i64 nChange; /* Value returned by sqlite3_changes() */ i64 nTotalChange; /* Value returned by sqlite3_total_changes() */ int aLimit[SQLITE_N_LIMIT]; /* Limits */ int nMaxSorterMmap; /* Maximum size of regions mapped by sorter */ struct sqlite3InitInfo { /* Information used during initialization */ Pgno newTnum; /* Rootpage of table being initialized */ u8 iDb; /* Which db file is being initialized */ u8 busy; /* TRUE if currently initializing */ unsigned orphanTrigger : 1; /* Last statement is orphaned TEMP trigger */ unsigned imposterTable : 1; /* Building an imposter table */ unsigned reopenMemdb : 1; /* ATTACH is really a reopen using MemDB */ const char **azInit; /* "type", "name", and "tbl_name" columns */ } init; int nVdbeActive; /* Number of VDBEs currently running */ int nVdbeRead; /* Number of active VDBEs that read or write */ int nVdbeWrite; /* Number of active VDBEs that read and write */ int nVdbeExec; /* Number of nested calls to VdbeExec() */ int nVDestroy; /* Number of active OP_VDestroy operations */ int nExtension; /* Number of loaded extensions */ void **aExtension; /* Array of shared library handles */ union { void (*xLegacy)(void*,const char*); /* mTrace==SQLITE_TRACE_LEGACY */ int (*xV2)(u32,void*,void*,void*); /* All other mTrace values */ } trace; void *pTraceArg; /* Argument to the trace function */ #ifndef SQLITE_OMIT_DEPRECATED void (*xProfile)(void*,const char*,u64); /* Profiling function */ void *pProfileArg; /* Argument to profile function */ #endif void *pCommitArg; /* Argument to xCommitCallback() */ int (*xCommitCallback)(void*); /* Invoked at every commit. */ void *pRollbackArg; /* Argument to xRollbackCallback() */ void (*xRollbackCallback)(void*); /* Invoked at every commit. */ void *pUpdateArg; void (*xUpdateCallback)(void*,int, const char*,const char*,sqlite_int64); void *pAutovacPagesArg; /* Client argument to autovac_pages */ void (*xAutovacDestr)(void*); /* Destructor for pAutovacPAgesArg */ unsigned int (*xAutovacPages)(void*,const char*,u32,u32,u32); Parse *pParse; /* Current parse */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK void *pPreUpdateArg; /* First argument to xPreUpdateCallback */ void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */ void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64 ); PreUpdate *pPreUpdate; /* Context for active pre-update callback */ #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifndef SQLITE_OMIT_WAL int (*xWalCallback)(void *, sqlite3 *, const char *, int); void *pWalArg; #endif void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); void *pCollNeededArg; sqlite3_value *pErr; /* Most recent error message */ union { volatile int isInterrupted; /* True if sqlite3_interrupt has been called */ double notUsed1; /* Spacer */ } u1; Lookaside lookaside; /* Lookaside malloc configuration */ #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth; /* Access authorization function */ void *pAuthArg; /* 1st argument to the access auth function */ #endif #ifndef SQLITE_OMIT_PROGRESS_CALLBACK int (*xProgress)(void *); /* The progress callback */ void *pProgressArg; /* Argument to the progress callback */ unsigned nProgressOps; /* Number of opcodes for progress callback */ #endif #ifndef SQLITE_OMIT_VIRTUALTABLE int nVTrans; /* Allocated size of aVTrans */ Hash aModule; /* populated by sqlite3_create_module() */ VtabCtx *pVtabCtx; /* Context for active vtab connect/create */ VTable **aVTrans; /* Virtual tables with open transactions */ VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */ #endif Hash aFunc; /* Hash table of connection functions */ Hash aCollSeq; /* All collating sequences */ BusyHandler busyHandler; /* Busy callback */ Db aDbStatic[2]; /* Static space for the 2 default backends */ Savepoint *pSavepoint; /* List of active savepoints */ int nAnalysisLimit; /* Number of index rows to ANALYZE */ int busyTimeout; /* Busy handler timeout, in msec */ int nSavepoint; /* Number of non-transaction savepoints */ int nStatement; /* Number of nested statement-transactions */ i64 nDeferredCons; /* Net deferred constraints this transaction. */ i64 nDeferredImmCons; /* Net deferred immediate constraints */ int *pnBytesFreed; /* If not NULL, increment this in DbFree() */ #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY /* The following variables are all protected by the STATIC_MAIN ** mutex, not by sqlite3.mutex. They are used by code in notify.c. ** ** When X.pUnlockConnection==Y, that means that X is waiting for Y to ** unlock so that it can proceed. ** ** When X.pBlockingConnection==Y, that means that something that X tried ** tried to do recently failed with an SQLITE_LOCKED error due to locks ** held by Y. */ sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */ sqlite3 *pUnlockConnection; /* Connection to watch for unlock */ void *pUnlockArg; /* Argument to xUnlockNotify */ void (*xUnlockNotify)(void **, int); /* Unlock notify callback */ sqlite3 *pNextBlocked; /* Next in list of all blocked connections */ #endif #ifdef SQLITE_USER_AUTHENTICATION sqlite3_userauth auth; /* User authentication information */ #endif }; /* ** A macro to discover the encoding of a database. */ #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc) #define ENC(db) ((db)->enc) /* ** A u64 constant where the lower 32 bits are all zeros. Only the ** upper 32 bits are included in the argument. Necessary because some ** C-compilers still do not accept LL integer literals. */ #define HI(X) ((u64)(X)<<32) /* ** Possible values for the sqlite3.flags. ** ** Value constraints (enforced via assert()): ** SQLITE_FullFSync == PAGER_FULLFSYNC ** SQLITE_CkptFullFSync == PAGER_CKPT_FULLFSYNC ** SQLITE_CacheSpill == PAGER_CACHE_SPILL */ #define SQLITE_WriteSchema 0x00000001 /* OK to update SQLITE_SCHEMA */ #define SQLITE_LegacyFileFmt 0x00000002 /* Create new databases in format 1 */ #define SQLITE_FullColNames 0x00000004 /* Show full column names on SELECT */ #define SQLITE_FullFSync 0x00000008 /* Use full fsync on the backend */ #define SQLITE_CkptFullFSync 0x00000010 /* Use full fsync for checkpoint */ #define SQLITE_CacheSpill 0x00000020 /* OK to spill pager cache */ #define SQLITE_ShortColNames 0x00000040 /* Show short columns names */ #define SQLITE_TrustedSchema 0x00000080 /* Allow unsafe functions and ** vtabs in the schema definition */ #define SQLITE_NullCallback 0x00000100 /* Invoke the callback once if the */ /* result set is empty */ #define SQLITE_IgnoreChecks 0x00000200 /* Do not enforce check constraints */ #define SQLITE_ReadUncommit 0x00000400 /* READ UNCOMMITTED in shared-cache */ #define SQLITE_NoCkptOnClose 0x00000800 /* No checkpoint on close()/DETACH */ #define SQLITE_ReverseOrder 0x00001000 /* Reverse unordered SELECTs */ #define SQLITE_RecTriggers 0x00002000 /* Enable recursive triggers */ #define SQLITE_ForeignKeys 0x00004000 /* Enforce foreign key constraints */ #define SQLITE_AutoIndex 0x00008000 /* Enable automatic indexes */ #define SQLITE_LoadExtension 0x00010000 /* Enable load_extension */ #define SQLITE_LoadExtFunc 0x00020000 /* Enable load_extension() SQL func */ #define SQLITE_EnableTrigger 0x00040000 /* True to enable triggers */ #define SQLITE_DeferFKs 0x00080000 /* Defer all FK constraints */ #define SQLITE_QueryOnly 0x00100000 /* Disable database changes */ #define SQLITE_CellSizeCk 0x00200000 /* Check btree cell sizes on load */ #define SQLITE_Fts3Tokenizer 0x00400000 /* Enable fts3_tokenizer(2) */ #define SQLITE_EnableQPSG 0x00800000 /* Query Planner Stability Guarantee*/ #define SQLITE_TriggerEQP 0x01000000 /* Show trigger EXPLAIN QUERY PLAN */ #define SQLITE_ResetDatabase 0x02000000 /* Reset the database */ #define SQLITE_LegacyAlter 0x04000000 /* Legacy ALTER TABLE behaviour */ #define SQLITE_NoSchemaError 0x08000000 /* Do not report schema parse errors*/ #define SQLITE_Defensive 0x10000000 /* Input SQL is likely hostile */ #define SQLITE_DqsDDL 0x20000000 /* dbl-quoted strings allowed in DDL*/ #define SQLITE_DqsDML 0x40000000 /* dbl-quoted strings allowed in DML*/ #define SQLITE_EnableView 0x80000000 /* Enable the use of views */ #define SQLITE_CountRows HI(0x00001) /* Count rows changed by INSERT, */ /* DELETE, or UPDATE and return */ /* the count using a callback. */ #define SQLITE_CorruptRdOnly HI(0x00002) /* Prohibit writes due to error */ /* Flags used only if debugging */ #ifdef SQLITE_DEBUG #define SQLITE_SqlTrace HI(0x0100000) /* Debug print SQL as it executes */ #define SQLITE_VdbeListing HI(0x0200000) /* Debug listings of VDBE progs */ #define SQLITE_VdbeTrace HI(0x0400000) /* True to trace VDBE execution */ #define SQLITE_VdbeAddopTrace HI(0x0800000) /* Trace sqlite3VdbeAddOp() calls */ #define SQLITE_VdbeEQP HI(0x1000000) /* Debug EXPLAIN QUERY PLAN */ #define SQLITE_ParserTrace HI(0x2000000) /* PRAGMA parser_trace=ON */ #endif /* ** Allowed values for sqlite3.mDbFlags */ #define DBFLAG_SchemaChange 0x0001 /* Uncommitted Hash table changes */ #define DBFLAG_PreferBuiltin 0x0002 /* Preference to built-in funcs */ #define DBFLAG_Vacuum 0x0004 /* Currently in a VACUUM */ #define DBFLAG_VacuumInto 0x0008 /* Currently running VACUUM INTO */ #define DBFLAG_SchemaKnownOk 0x0010 /* Schema is known to be valid */ #define DBFLAG_InternalFunc 0x0020 /* Allow use of internal functions */ #define DBFLAG_EncodingFixed 0x0040 /* No longer possible to change enc. */ /* ** Bits of the sqlite3.dbOptFlags field that are used by the ** sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS,...) interface to ** selectively disable various optimizations. */ #define SQLITE_QueryFlattener 0x00000001 /* Query flattening */ #define SQLITE_WindowFunc 0x00000002 /* Use xInverse for window functions */ #define SQLITE_GroupByOrder 0x00000004 /* GROUPBY cover of ORDERBY */ #define SQLITE_FactorOutConst 0x00000008 /* Constant factoring */ #define SQLITE_DistinctOpt 0x00000010 /* DISTINCT using indexes */ #define SQLITE_CoverIdxScan 0x00000020 /* Covering index scans */ #define SQLITE_OrderByIdxJoin 0x00000040 /* ORDER BY of joins via index */ #define SQLITE_Transitive 0x00000080 /* Transitive constraints */ #define SQLITE_OmitNoopJoin 0x00000100 /* Omit unused tables in joins */ #define SQLITE_CountOfView 0x00000200 /* The count-of-view optimization */ #define SQLITE_CursorHints 0x00000400 /* Add OP_CursorHint opcodes */ #define SQLITE_Stat4 0x00000800 /* Use STAT4 data */ /* TH3 expects this value ^^^^^^^^^^ to be 0x0000800. Don't change it */ #define SQLITE_PushDown 0x00001000 /* The push-down optimization */ #define SQLITE_SimplifyJoin 0x00002000 /* Convert LEFT JOIN to JOIN */ #define SQLITE_SkipScan 0x00004000 /* Skip-scans */ #define SQLITE_PropagateConst 0x00008000 /* The constant propagation opt */ #define SQLITE_MinMaxOpt 0x00010000 /* The min/max optimization */ #define SQLITE_SeekScan 0x00020000 /* The OP_SeekScan optimization */ #define SQLITE_OmitOrderBy 0x00040000 /* Omit pointless ORDER BY */ /* TH3 expects this value ^^^^^^^^^^ to be 0x40000. Coordinate any change */ #define SQLITE_BloomFilter 0x00080000 /* Use a Bloom filter on searches */ #define SQLITE_BloomPulldown 0x00100000 /* Run Bloom filters early */ #define SQLITE_BalancedMerge 0x00200000 /* Balance multi-way merges */ #define SQLITE_AllOpts 0xffffffff /* All optimizations */ /* ** Macros for testing whether or not optimizations are enabled or disabled. */ #define OptimizationDisabled(db, mask) (((db)->dbOptFlags&(mask))!=0) #define OptimizationEnabled(db, mask) (((db)->dbOptFlags&(mask))==0) /* ** Return true if it OK to factor constant expressions into the initialization ** code. The argument is a Parse object for the code generator. */ #define ConstFactorOk(P) ((P)->okConstFactor) /* Possible values for the sqlite3.eOpenState field. ** The numbers are randomly selected such that a minimum of three bits must ** change to convert any number to another or to zero */ #define SQLITE_STATE_OPEN 0x76 /* Database is open */ #define SQLITE_STATE_CLOSED 0xce /* Database is closed */ #define SQLITE_STATE_SICK 0xba /* Error and awaiting close */ #define SQLITE_STATE_BUSY 0x6d /* Database currently in use */ #define SQLITE_STATE_ERROR 0xd5 /* An SQLITE_MISUSE error occurred */ #define SQLITE_STATE_ZOMBIE 0xa7 /* Close with last statement close */ /* ** Each SQL function is defined by an instance of the following ** structure. For global built-in functions (ex: substr(), max(), count()) ** a pointer to this structure is held in the sqlite3BuiltinFunctions object. ** For per-connection application-defined functions, a pointer to this ** structure is held in the db->aHash hash table. ** ** The u.pHash field is used by the global built-ins. The u.pDestructor ** field is used by per-connection app-def functions. */ struct FuncDef { i8 nArg; /* Number of arguments. -1 means unlimited */ u32 funcFlags; /* Some combination of SQLITE_FUNC_* */ void *pUserData; /* User data parameter */ FuncDef *pNext; /* Next function with same name */ void (*xSFunc)(sqlite3_context*,int,sqlite3_value**); /* func or agg-step */ void (*xFinalize)(sqlite3_context*); /* Agg finalizer */ void (*xValue)(sqlite3_context*); /* Current agg value */ void (*xInverse)(sqlite3_context*,int,sqlite3_value**); /* inverse agg-step */ const char *zName; /* SQL name of the function. */ union { FuncDef *pHash; /* Next with a different name but the same hash */ FuncDestructor *pDestructor; /* Reference counted destructor function */ } u; /* pHash if SQLITE_FUNC_BUILTIN, pDestructor otherwise */ }; /* ** This structure encapsulates a user-function destructor callback (as ** configured using create_function_v2()) and a reference counter. When ** create_function_v2() is called to create a function with a destructor, ** a single object of this type is allocated. FuncDestructor.nRef is set to ** the number of FuncDef objects created (either 1 or 3, depending on whether ** or not the specified encoding is SQLITE_ANY). The FuncDef.pDestructor ** member of each of the new FuncDef objects is set to point to the allocated ** FuncDestructor. ** ** Thereafter, when one of the FuncDef objects is deleted, the reference ** count on this object is decremented. When it reaches 0, the destructor ** is invoked and the FuncDestructor structure freed. */ struct FuncDestructor { int nRef; void (*xDestroy)(void *); void *pUserData; }; /* ** Possible values for FuncDef.flags. Note that the _LENGTH and _TYPEOF ** values must correspond to OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG. And ** SQLITE_FUNC_CONSTANT must be the same as SQLITE_DETERMINISTIC. There ** are assert() statements in the code to verify this. ** ** Value constraints (enforced via assert()): ** SQLITE_FUNC_MINMAX == NC_MinMaxAgg == SF_MinMaxAgg ** SQLITE_FUNC_ANYORDER == NC_OrderAgg == SF_OrderByReqd ** SQLITE_FUNC_LENGTH == OPFLAG_LENGTHARG ** SQLITE_FUNC_TYPEOF == OPFLAG_TYPEOFARG ** SQLITE_FUNC_CONSTANT == SQLITE_DETERMINISTIC from the API ** SQLITE_FUNC_DIRECT == SQLITE_DIRECTONLY from the API ** SQLITE_FUNC_UNSAFE == SQLITE_INNOCUOUS ** SQLITE_FUNC_ENCMASK depends on SQLITE_UTF* macros in the API */ #define SQLITE_FUNC_ENCMASK 0x0003 /* SQLITE_UTF8, SQLITE_UTF16BE or UTF16LE */ #define SQLITE_FUNC_LIKE 0x0004 /* Candidate for the LIKE optimization */ #define SQLITE_FUNC_CASE 0x0008 /* Case-sensitive LIKE-type function */ #define SQLITE_FUNC_EPHEM 0x0010 /* Ephemeral. Delete with VDBE */ #define SQLITE_FUNC_NEEDCOLL 0x0020 /* sqlite3GetFuncCollSeq() might be called*/ #define SQLITE_FUNC_LENGTH 0x0040 /* Built-in length() function */ #define SQLITE_FUNC_TYPEOF 0x0080 /* Built-in typeof() function */ #define SQLITE_FUNC_COUNT 0x0100 /* Built-in count(*) aggregate */ /* 0x0200 -- available for reuse */ #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */ #define SQLITE_FUNC_CONSTANT 0x0800 /* Constant inputs give a constant output */ #define SQLITE_FUNC_MINMAX 0x1000 /* True for min() and max() aggregates */ #define SQLITE_FUNC_SLOCHNG 0x2000 /* "Slow Change". Value constant during a ** single query - might change over time */ #define SQLITE_FUNC_TEST 0x4000 /* Built-in testing functions */ #define SQLITE_FUNC_OFFSET 0x8000 /* Built-in sqlite_offset() function */ #define SQLITE_FUNC_WINDOW 0x00010000 /* Built-in window-only function */ #define SQLITE_FUNC_INTERNAL 0x00040000 /* For use by NestedParse() only */ #define SQLITE_FUNC_DIRECT 0x00080000 /* Not for use in TRIGGERs or VIEWs */ #define SQLITE_FUNC_SUBTYPE 0x00100000 /* Result likely to have sub-type */ #define SQLITE_FUNC_UNSAFE 0x00200000 /* Function has side effects */ #define SQLITE_FUNC_INLINE 0x00400000 /* Functions implemented in-line */ #define SQLITE_FUNC_BUILTIN 0x00800000 /* This is a built-in function */ #define SQLITE_FUNC_ANYORDER 0x08000000 /* count/min/max aggregate */ /* Identifier numbers for each in-line function */ #define INLINEFUNC_coalesce 0 #define INLINEFUNC_implies_nonnull_row 1 #define INLINEFUNC_expr_implies_expr 2 #define INLINEFUNC_expr_compare 3 #define INLINEFUNC_affinity 4 #define INLINEFUNC_iif 5 #define INLINEFUNC_unlikely 99 /* Default case */ /* ** The following three macros, FUNCTION(), LIKEFUNC() and AGGREGATE() are ** used to create the initializers for the FuncDef structures. ** ** FUNCTION(zName, nArg, iArg, bNC, xFunc) ** Used to create a scalar function definition of a function zName ** implemented by C function xFunc that accepts nArg arguments. The ** value passed as iArg is cast to a (void*) and made available ** as the user-data (sqlite3_user_data()) for the function. If ** argument bNC is true, then the SQLITE_FUNC_NEEDCOLL flag is set. ** ** VFUNCTION(zName, nArg, iArg, bNC, xFunc) ** Like FUNCTION except it omits the SQLITE_FUNC_CONSTANT flag. ** ** SFUNCTION(zName, nArg, iArg, bNC, xFunc) ** Like FUNCTION except it omits the SQLITE_FUNC_CONSTANT flag and ** adds the SQLITE_DIRECTONLY flag. ** ** INLINE_FUNC(zName, nArg, iFuncId, mFlags) ** zName is the name of a function that is implemented by in-line ** byte code rather than by the usual callbacks. The iFuncId ** parameter determines the function id. The mFlags parameter is ** optional SQLITE_FUNC_ flags for this function. ** ** TEST_FUNC(zName, nArg, iFuncId, mFlags) ** zName is the name of a test-only function implemented by in-line ** byte code rather than by the usual callbacks. The iFuncId ** parameter determines the function id. The mFlags parameter is ** optional SQLITE_FUNC_ flags for this function. ** ** DFUNCTION(zName, nArg, iArg, bNC, xFunc) ** Like FUNCTION except it omits the SQLITE_FUNC_CONSTANT flag and ** adds the SQLITE_FUNC_SLOCHNG flag. Used for date & time functions ** and functions like sqlite_version() that can change, but not during ** a single query. The iArg is ignored. The user-data is always set ** to a NULL pointer. The bNC parameter is not used. ** ** MFUNCTION(zName, nArg, xPtr, xFunc) ** For math-library functions. xPtr is an arbitrary pointer. ** ** PURE_DATE(zName, nArg, iArg, bNC, xFunc) ** Used for "pure" date/time functions, this macro is like DFUNCTION ** except that it does set the SQLITE_FUNC_CONSTANT flags. iArg is ** ignored and the user-data for these functions is set to an ** arbitrary non-NULL pointer. The bNC parameter is not used. ** ** AGGREGATE(zName, nArg, iArg, bNC, xStep, xFinal) ** Used to create an aggregate function definition implemented by ** the C functions xStep and xFinal. The first four parameters ** are interpreted in the same way as the first 4 parameters to ** FUNCTION(). ** ** WAGGREGATE(zName, nArg, iArg, xStep, xFinal, xValue, xInverse) ** Used to create an aggregate function definition implemented by ** the C functions xStep and xFinal. The first four parameters ** are interpreted in the same way as the first 4 parameters to ** FUNCTION(). ** ** LIKEFUNC(zName, nArg, pArg, flags) ** Used to create a scalar function definition of a function zName ** that accepts nArg arguments and is implemented by a call to C ** function likeFunc. Argument pArg is cast to a (void *) and made ** available as the function user-data (sqlite3_user_data()). The ** FuncDef.flags variable is set to the value passed as the flags ** parameter. */ #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_FUNC_CONSTANT|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL), \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define VFUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL), \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define SFUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_UTF8|SQLITE_DIRECTONLY|SQLITE_FUNC_UNSAFE, \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define MFUNCTION(zName, nArg, xPtr, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_FUNC_CONSTANT|SQLITE_UTF8, \ xPtr, 0, xFunc, 0, 0, 0, #zName, {0} } #define JFUNCTION(zName, nArg, iArg, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_DETERMINISTIC|SQLITE_INNOCUOUS|\ SQLITE_FUNC_CONSTANT|SQLITE_UTF8, \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define INLINE_FUNC(zName, nArg, iArg, mFlags) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_UTF8|SQLITE_FUNC_INLINE|SQLITE_FUNC_CONSTANT|(mFlags), \ SQLITE_INT_TO_PTR(iArg), 0, noopFunc, 0, 0, 0, #zName, {0} } #define TEST_FUNC(zName, nArg, iArg, mFlags) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_UTF8|SQLITE_FUNC_INTERNAL|SQLITE_FUNC_TEST| \ SQLITE_FUNC_INLINE|SQLITE_FUNC_CONSTANT|(mFlags), \ SQLITE_INT_TO_PTR(iArg), 0, noopFunc, 0, 0, 0, #zName, {0} } #define DFUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_FUNC_SLOCHNG|SQLITE_UTF8, \ 0, 0, xFunc, 0, 0, 0, #zName, {0} } #define PURE_DATE(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_FUNC_SLOCHNG|SQLITE_UTF8|SQLITE_FUNC_CONSTANT, \ (void*)&sqlite3Config, 0, xFunc, 0, 0, 0, #zName, {0} } #define FUNCTION2(zName, nArg, iArg, bNC, xFunc, extraFlags) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_FUNC_CONSTANT|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL)|extraFlags,\ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_FUNC_SLOCHNG|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL), \ pArg, 0, xFunc, 0, 0, 0, #zName, } #define LIKEFUNC(zName, nArg, arg, flags) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_FUNC_CONSTANT|SQLITE_UTF8|flags, \ (void *)arg, 0, likeFunc, 0, 0, 0, #zName, {0} } #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ {nArg, SQLITE_FUNC_BUILTIN|SQLITE_UTF8|(nc*SQLITE_FUNC_NEEDCOLL)|f, \ SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}} #define INTERNAL_FUNCTION(zName, nArg, xFunc) \ {nArg, SQLITE_FUNC_BUILTIN|\ SQLITE_FUNC_INTERNAL|SQLITE_UTF8|SQLITE_FUNC_CONSTANT, \ 0, 0, xFunc, 0, 0, 0, #zName, {0} } /* ** All current savepoints are stored in a linked list starting at ** sqlite3.pSavepoint. The first element in the list is the most recently ** opened savepoint. Savepoints are added to the list by the vdbe ** OP_Savepoint instruction. */ struct Savepoint { char *zName; /* Savepoint name (nul-terminated) */ i64 nDeferredCons; /* Number of deferred fk violations */ i64 nDeferredImmCons; /* Number of deferred imm fk. */ Savepoint *pNext; /* Parent savepoint (if any) */ }; /* ** The following are used as the second parameter to sqlite3Savepoint(), ** and as the P1 argument to the OP_Savepoint instruction. */ #define SAVEPOINT_BEGIN 0 #define SAVEPOINT_RELEASE 1 #define SAVEPOINT_ROLLBACK 2 /* ** Each SQLite module (virtual table definition) is defined by an ** instance of the following structure, stored in the sqlite3.aModule ** hash table. */ struct Module { const sqlite3_module *pModule; /* Callback pointers */ const char *zName; /* Name passed to create_module() */ int nRefModule; /* Number of pointers to this object */ void *pAux; /* pAux passed to create_module() */ void (*xDestroy)(void *); /* Module destructor function */ Table *pEpoTab; /* Eponymous table for this module */ }; /* ** Information about each column of an SQL table is held in an instance ** of the Column structure, in the Table.aCol[] array. ** ** Definitions: ** ** "table column index" This is the index of the column in the ** Table.aCol[] array, and also the index of ** the column in the original CREATE TABLE stmt. ** ** "storage column index" This is the index of the column in the ** record BLOB generated by the OP_MakeRecord ** opcode. The storage column index is less than ** or equal to the table column index. It is ** equal if and only if there are no VIRTUAL ** columns to the left. ** ** Notes on zCnName: ** The zCnName field stores the name of the column, the datatype of the ** column, and the collating sequence for the column, in that order, all in ** a single allocation. Each string is 0x00 terminated. The datatype ** is only included if the COLFLAG_HASTYPE bit of colFlags is set and the ** collating sequence name is only included if the COLFLAG_HASCOLL bit is ** set. */ struct Column { char *zCnName; /* Name of this column */ unsigned notNull :4; /* An OE_ code for handling a NOT NULL constraint */ unsigned eCType :4; /* One of the standard types */ char affinity; /* One of the SQLITE_AFF_... values */ u8 szEst; /* Est size of value in this column. sizeof(INT)==1 */ u8 hName; /* Column name hash for faster lookup */ u16 iDflt; /* 1-based index of DEFAULT. 0 means "none" */ u16 colFlags; /* Boolean properties. See COLFLAG_ defines below */ }; /* Allowed values for Column.eCType. ** ** Values must match entries in the global constant arrays ** sqlite3StdTypeLen[] and sqlite3StdType[]. Each value is one more ** than the offset into these arrays for the corresponding name. ** Adjust the SQLITE_N_STDTYPE value if adding or removing entries. */ #define COLTYPE_CUSTOM 0 /* Type appended to zName */ #define COLTYPE_ANY 1 #define COLTYPE_BLOB 2 #define COLTYPE_INT 3 #define COLTYPE_INTEGER 4 #define COLTYPE_REAL 5 #define COLTYPE_TEXT 6 #define SQLITE_N_STDTYPE 6 /* Number of standard types */ /* Allowed values for Column.colFlags. ** ** Constraints: ** TF_HasVirtual == COLFLAG_VIRTUAL ** TF_HasStored == COLFLAG_STORED ** TF_HasHidden == COLFLAG_HIDDEN */ #define COLFLAG_PRIMKEY 0x0001 /* Column is part of the primary key */ #define COLFLAG_HIDDEN 0x0002 /* A hidden column in a virtual table */ #define COLFLAG_HASTYPE 0x0004 /* Type name follows column name */ #define COLFLAG_UNIQUE 0x0008 /* Column def contains "UNIQUE" or "PK" */ #define COLFLAG_SORTERREF 0x0010 /* Use sorter-refs with this column */ #define COLFLAG_VIRTUAL 0x0020 /* GENERATED ALWAYS AS ... VIRTUAL */ #define COLFLAG_STORED 0x0040 /* GENERATED ALWAYS AS ... STORED */ #define COLFLAG_NOTAVAIL 0x0080 /* STORED column not yet calculated */ #define COLFLAG_BUSY 0x0100 /* Blocks recursion on GENERATED columns */ #define COLFLAG_HASCOLL 0x0200 /* Has collating sequence name in zCnName */ #define COLFLAG_GENERATED 0x0060 /* Combo: _STORED, _VIRTUAL */ #define COLFLAG_NOINSERT 0x0062 /* Combo: _HIDDEN, _STORED, _VIRTUAL */ /* ** A "Collating Sequence" is defined by an instance of the following ** structure. Conceptually, a collating sequence consists of a name and ** a comparison routine that defines the order of that sequence. ** ** If CollSeq.xCmp is NULL, it means that the ** collating sequence is undefined. Indices built on an undefined ** collating sequence may not be read or written. */ struct CollSeq { char *zName; /* Name of the collating sequence, UTF-8 encoded */ u8 enc; /* Text encoding handled by xCmp() */ void *pUser; /* First argument to xCmp() */ int (*xCmp)(void*,int, const void*, int, const void*); void (*xDel)(void*); /* Destructor for pUser */ }; /* ** A sort order can be either ASC or DESC. */ #define SQLITE_SO_ASC 0 /* Sort in ascending order */ #define SQLITE_SO_DESC 1 /* Sort in ascending order */ #define SQLITE_SO_UNDEFINED -1 /* No sort order specified */ /* ** Column affinity types. ** ** These used to have mnemonic name like 'i' for SQLITE_AFF_INTEGER and ** 't' for SQLITE_AFF_TEXT. But we can save a little space and improve ** the speed a little by numbering the values consecutively. ** ** But rather than start with 0 or 1, we begin with 'A'. That way, ** when multiple affinity types are concatenated into a string and ** used as the P4 operand, they will be more readable. ** ** Note also that the numeric types are grouped together so that testing ** for a numeric type is a single comparison. And the BLOB type is first. */ #define SQLITE_AFF_NONE 0x40 /* '@' */ #define SQLITE_AFF_BLOB 0x41 /* 'A' */ #define SQLITE_AFF_TEXT 0x42 /* 'B' */ #define SQLITE_AFF_NUMERIC 0x43 /* 'C' */ #define SQLITE_AFF_INTEGER 0x44 /* 'D' */ #define SQLITE_AFF_REAL 0x45 /* 'E' */ #define sqlite3IsNumericAffinity(X) ((X)>=SQLITE_AFF_NUMERIC) /* ** The SQLITE_AFF_MASK values masks off the significant bits of an ** affinity value. */ #define SQLITE_AFF_MASK 0x47 /* ** Additional bit values that can be ORed with an affinity without ** changing the affinity. ** ** The SQLITE_NOTNULL flag is a combination of NULLEQ and JUMPIFNULL. ** It causes an assert() to fire if either operand to a comparison ** operator is NULL. It is added to certain comparison operators to ** prove that the operands are always NOT NULL. */ #define SQLITE_JUMPIFNULL 0x10 /* jumps if either operand is NULL */ #define SQLITE_NULLEQ 0x80 /* NULL=NULL */ #define SQLITE_NOTNULL 0x90 /* Assert that operands are never NULL */ /* ** An object of this type is created for each virtual table present in ** the database schema. ** ** If the database schema is shared, then there is one instance of this ** structure for each database connection (sqlite3*) that uses the shared ** schema. This is because each database connection requires its own unique ** instance of the sqlite3_vtab* handle used to access the virtual table ** implementation. sqlite3_vtab* handles can not be shared between ** database connections, even when the rest of the in-memory database ** schema is shared, as the implementation often stores the database ** connection handle passed to it via the xConnect() or xCreate() method ** during initialization internally. This database connection handle may ** then be used by the virtual table implementation to access real tables ** within the database. So that they appear as part of the callers ** transaction, these accesses need to be made via the same database ** connection as that used to execute SQL operations on the virtual table. ** ** All VTable objects that correspond to a single table in a shared ** database schema are initially stored in a linked-list pointed to by ** the Table.pVTable member variable of the corresponding Table object. ** When an sqlite3_prepare() operation is required to access the virtual ** table, it searches the list for the VTable that corresponds to the ** database connection doing the preparing so as to use the correct ** sqlite3_vtab* handle in the compiled query. ** ** When an in-memory Table object is deleted (for example when the ** schema is being reloaded for some reason), the VTable objects are not ** deleted and the sqlite3_vtab* handles are not xDisconnect()ed ** immediately. Instead, they are moved from the Table.pVTable list to ** another linked list headed by the sqlite3.pDisconnect member of the ** corresponding sqlite3 structure. They are then deleted/xDisconnected ** next time a statement is prepared using said sqlite3*. This is done ** to avoid deadlock issues involving multiple sqlite3.mutex mutexes. ** Refer to comments above function sqlite3VtabUnlockList() for an ** explanation as to why it is safe to add an entry to an sqlite3.pDisconnect ** list without holding the corresponding sqlite3.mutex mutex. ** ** The memory for objects of this type is always allocated by ** sqlite3DbMalloc(), using the connection handle stored in VTable.db as ** the first argument. */ struct VTable { sqlite3 *db; /* Database connection associated with this table */ Module *pMod; /* Pointer to module implementation */ sqlite3_vtab *pVtab; /* Pointer to vtab instance */ int nRef; /* Number of pointers to this structure */ u8 bConstraint; /* True if constraints are supported */ u8 eVtabRisk; /* Riskiness of allowing hacker access */ int iSavepoint; /* Depth of the SAVEPOINT stack */ VTable *pNext; /* Next in linked list (see above) */ }; /* Allowed values for VTable.eVtabRisk */ #define SQLITE_VTABRISK_Low 0 #define SQLITE_VTABRISK_Normal 1 #define SQLITE_VTABRISK_High 2 /* ** The schema for each SQL table, virtual table, and view is represented ** in memory by an instance of the following structure. */ struct Table { char *zName; /* Name of the table or view */ Column *aCol; /* Information about each column */ Index *pIndex; /* List of SQL indexes on this table. */ char *zColAff; /* String defining the affinity of each column */ ExprList *pCheck; /* All CHECK constraints */ /* ... also used as column name list in a VIEW */ Pgno tnum; /* Root BTree page for this table */ u32 nTabRef; /* Number of pointers to this Table */ u32 tabFlags; /* Mask of TF_* values */ i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */ i16 nCol; /* Number of columns in this table */ i16 nNVCol; /* Number of columns that are not VIRTUAL */ LogEst nRowLogEst; /* Estimated rows in table - from sqlite_stat1 table */ LogEst szTabRow; /* Estimated size of each table row in bytes */ #ifdef SQLITE_ENABLE_COSTMULT LogEst costMult; /* Cost multiplier for using this table */ #endif u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */ u8 eTabType; /* 0: normal, 1: virtual, 2: view */ union { struct { /* Used by ordinary tables: */ int addColOffset; /* Offset in CREATE TABLE stmt to add a new column */ FKey *pFKey; /* Linked list of all foreign keys in this table */ ExprList *pDfltList; /* DEFAULT clauses on various columns. ** Or the AS clause for generated columns. */ } tab; struct { /* Used by views: */ Select *pSelect; /* View definition */ } view; struct { /* Used by virtual tables only: */ int nArg; /* Number of arguments to the module */ char **azArg; /* 0: module 1: schema 2: vtab name 3...: args */ VTable *p; /* List of VTable objects. */ } vtab; } u; Trigger *pTrigger; /* List of triggers on this object */ Schema *pSchema; /* Schema that contains this table */ }; /* ** Allowed values for Table.tabFlags. ** ** TF_OOOHidden applies to tables or view that have hidden columns that are ** followed by non-hidden columns. Example: "CREATE VIRTUAL TABLE x USING ** vtab1(a HIDDEN, b);". Since "b" is a non-hidden column but "a" is hidden, ** the TF_OOOHidden attribute would apply in this case. Such tables require ** special handling during INSERT processing. The "OOO" means "Out Of Order". ** ** Constraints: ** ** TF_HasVirtual == COLFLAG_VIRTUAL ** TF_HasStored == COLFLAG_STORED ** TF_HasHidden == COLFLAG_HIDDEN */ #define TF_Readonly 0x00000001 /* Read-only system table */ #define TF_HasHidden 0x00000002 /* Has one or more hidden columns */ #define TF_HasPrimaryKey 0x00000004 /* Table has a primary key */ #define TF_Autoincrement 0x00000008 /* Integer primary key is autoincrement */ #define TF_HasStat1 0x00000010 /* nRowLogEst set from sqlite_stat1 */ #define TF_HasVirtual 0x00000020 /* Has one or more VIRTUAL columns */ #define TF_HasStored 0x00000040 /* Has one or more STORED columns */ #define TF_HasGenerated 0x00000060 /* Combo: HasVirtual + HasStored */ #define TF_WithoutRowid 0x00000080 /* No rowid. PRIMARY KEY is the key */ #define TF_StatsUsed 0x00000100 /* Query planner decisions affected by ** Index.aiRowLogEst[] values */ #define TF_NoVisibleRowid 0x00000200 /* No user-visible "rowid" column */ #define TF_OOOHidden 0x00000400 /* Out-of-Order hidden columns */ #define TF_HasNotNull 0x00000800 /* Contains NOT NULL constraints */ #define TF_Shadow 0x00001000 /* True for a shadow table */ #define TF_HasStat4 0x00002000 /* STAT4 info available for this table */ #define TF_Ephemeral 0x00004000 /* An ephemeral table */ #define TF_Eponymous 0x00008000 /* An eponymous virtual table */ #define TF_Strict 0x00010000 /* STRICT mode */ /* ** Allowed values for Table.eTabType */ #define TABTYP_NORM 0 /* Ordinary table */ #define TABTYP_VTAB 1 /* Virtual table */ #define TABTYP_VIEW 2 /* A view */ #define IsView(X) ((X)->eTabType==TABTYP_VIEW) #define IsOrdinaryTable(X) ((X)->eTabType==TABTYP_NORM) /* ** Test to see whether or not a table is a virtual table. This is ** done as a macro so that it will be optimized out when virtual ** table support is omitted from the build. */ #ifndef SQLITE_OMIT_VIRTUALTABLE # define IsVirtual(X) ((X)->eTabType==TABTYP_VTAB) # define ExprIsVtab(X) \ ((X)->op==TK_COLUMN && (X)->y.pTab!=0 && (X)->y.pTab->eTabType==TABTYP_VTAB) #else # define IsVirtual(X) 0 # define ExprIsVtab(X) 0 #endif /* ** Macros to determine if a column is hidden. IsOrdinaryHiddenColumn() ** only works for non-virtual tables (ordinary tables and views) and is ** always false unless SQLITE_ENABLE_HIDDEN_COLUMNS is defined. The ** IsHiddenColumn() macro is general purpose. */ #if defined(SQLITE_ENABLE_HIDDEN_COLUMNS) # define IsHiddenColumn(X) (((X)->colFlags & COLFLAG_HIDDEN)!=0) # define IsOrdinaryHiddenColumn(X) (((X)->colFlags & COLFLAG_HIDDEN)!=0) #elif !defined(SQLITE_OMIT_VIRTUALTABLE) # define IsHiddenColumn(X) (((X)->colFlags & COLFLAG_HIDDEN)!=0) # define IsOrdinaryHiddenColumn(X) 0 #else # define IsHiddenColumn(X) 0 # define IsOrdinaryHiddenColumn(X) 0 #endif /* Does the table have a rowid */ #define HasRowid(X) (((X)->tabFlags & TF_WithoutRowid)==0) #define VisibleRowid(X) (((X)->tabFlags & TF_NoVisibleRowid)==0) /* ** Each foreign key constraint is an instance of the following structure. ** ** A foreign key is associated with two tables. The "from" table is ** the table that contains the REFERENCES clause that creates the foreign ** key. The "to" table is the table that is named in the REFERENCES clause. ** Consider this example: ** ** CREATE TABLE ex1( ** a INTEGER PRIMARY KEY, ** b INTEGER CONSTRAINT fk1 REFERENCES ex2(x) ** ); ** ** For foreign key "fk1", the from-table is "ex1" and the to-table is "ex2". ** Equivalent names: ** ** from-table == child-table ** to-table == parent-table ** ** Each REFERENCES clause generates an instance of the following structure ** which is attached to the from-table. The to-table need not exist when ** the from-table is created. The existence of the to-table is not checked. ** ** The list of all parents for child Table X is held at X.pFKey. ** ** A list of all children for a table named Z (which might not even exist) ** is held in Schema.fkeyHash with a hash key of Z. */ struct FKey { Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */ FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */ char *zTo; /* Name of table that the key points to (aka: Parent) */ FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */ FKey *pPrevTo; /* Previous with the same zTo */ int nCol; /* Number of columns in this key */ /* EV: R-30323-21917 */ u8 isDeferred; /* True if constraint checking is deferred till COMMIT */ u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */ Trigger *apTrigger[2];/* Triggers for aAction[] actions */ struct sColMap { /* Mapping of columns in pFrom to columns in zTo */ int iFrom; /* Index of column in pFrom */ char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */ } aCol[1]; /* One entry for each of nCol columns */ }; /* ** SQLite supports many different ways to resolve a constraint ** error. ROLLBACK processing means that a constraint violation ** causes the operation in process to fail and for the current transaction ** to be rolled back. ABORT processing means the operation in process ** fails and any prior changes from that one operation are backed out, ** but the transaction is not rolled back. FAIL processing means that ** the operation in progress stops and returns an error code. But prior ** changes due to the same operation are not backed out and no rollback ** occurs. IGNORE means that the particular row that caused the constraint ** error is not inserted or updated. Processing continues and no error ** is returned. REPLACE means that preexisting database rows that caused ** a UNIQUE constraint violation are removed so that the new insert or ** update can proceed. Processing continues and no error is reported. ** UPDATE applies to insert operations only and means that the insert ** is omitted and the DO UPDATE clause of an upsert is run instead. ** ** RESTRICT, SETNULL, SETDFLT, and CASCADE actions apply only to foreign keys. ** RESTRICT is the same as ABORT for IMMEDIATE foreign keys and the ** same as ROLLBACK for DEFERRED keys. SETNULL means that the foreign ** key is set to NULL. SETDFLT means that the foreign key is set ** to its default value. CASCADE means that a DELETE or UPDATE of the ** referenced table row is propagated into the row that holds the ** foreign key. ** ** The OE_Default value is a place holder that means to use whatever ** conflict resolution algorthm is required from context. ** ** The following symbolic values are used to record which type ** of conflict resolution action to take. */ #define OE_None 0 /* There is no constraint to check */ #define OE_Rollback 1 /* Fail the operation and rollback the transaction */ #define OE_Abort 2 /* Back out changes but do no rollback transaction */ #define OE_Fail 3 /* Stop the operation but leave all prior changes */ #define OE_Ignore 4 /* Ignore the error. Do not do the INSERT or UPDATE */ #define OE_Replace 5 /* Delete existing record, then do INSERT or UPDATE */ #define OE_Update 6 /* Process as a DO UPDATE in an upsert */ #define OE_Restrict 7 /* OE_Abort for IMMEDIATE, OE_Rollback for DEFERRED */ #define OE_SetNull 8 /* Set the foreign key value to NULL */ #define OE_SetDflt 9 /* Set the foreign key value to its default */ #define OE_Cascade 10 /* Cascade the changes */ #define OE_Default 11 /* Do whatever the default action is */ /* ** An instance of the following structure is passed as the first ** argument to sqlite3VdbeKeyCompare and is used to control the ** comparison of the two index keys. ** ** Note that aSortOrder[] and aColl[] have nField+1 slots. There ** are nField slots for the columns of an index then one extra slot ** for the rowid at the end. */ struct KeyInfo { u32 nRef; /* Number of references to this KeyInfo object */ u8 enc; /* Text encoding - one of the SQLITE_UTF* values */ u16 nKeyField; /* Number of key columns in the index */ u16 nAllField; /* Total columns, including key plus others */ sqlite3 *db; /* The database connection */ u8 *aSortFlags; /* Sort order for each column. */ CollSeq *aColl[1]; /* Collating sequence for each term of the key */ }; /* ** Allowed bit values for entries in the KeyInfo.aSortFlags[] array. */ #define KEYINFO_ORDER_DESC 0x01 /* DESC sort order */ #define KEYINFO_ORDER_BIGNULL 0x02 /* NULL is larger than any other value */ /* ** This object holds a record which has been parsed out into individual ** fields, for the purposes of doing a comparison. ** ** A record is an object that contains one or more fields of data. ** Records are used to store the content of a table row and to store ** the key of an index. A blob encoding of a record is created by ** the OP_MakeRecord opcode of the VDBE and is disassembled by the ** OP_Column opcode. ** ** An instance of this object serves as a "key" for doing a search on ** an index b+tree. The goal of the search is to find the entry that ** is closed to the key described by this object. This object might hold ** just a prefix of the key. The number of fields is given by ** pKeyInfo->nField. ** ** The r1 and r2 fields are the values to return if this key is less than ** or greater than a key in the btree, respectively. These are normally ** -1 and +1 respectively, but might be inverted to +1 and -1 if the b-tree ** is in DESC order. ** ** The key comparison functions actually return default_rc when they find ** an equals comparison. default_rc can be -1, 0, or +1. If there are ** multiple entries in the b-tree with the same key (when only looking ** at the first pKeyInfo->nFields,) then default_rc can be set to -1 to ** cause the search to find the last match, or +1 to cause the search to ** find the first match. ** ** The key comparison functions will set eqSeen to true if they ever ** get and equal results when comparing this structure to a b-tree record. ** When default_rc!=0, the search might end up on the record immediately ** before the first match or immediately after the last match. The ** eqSeen field will indicate whether or not an exact match exists in the ** b-tree. */ struct UnpackedRecord { KeyInfo *pKeyInfo; /* Collation and sort-order information */ Mem *aMem; /* Values */ u16 nField; /* Number of entries in apMem[] */ i8 default_rc; /* Comparison result if keys are equal */ u8 errCode; /* Error detected by xRecordCompare (CORRUPT or NOMEM) */ i8 r1; /* Value to return if (lhs < rhs) */ i8 r2; /* Value to return if (lhs > rhs) */ u8 eqSeen; /* True if an equality comparison has been seen */ }; /* ** Each SQL index is represented in memory by an ** instance of the following structure. ** ** The columns of the table that are to be indexed are described ** by the aiColumn[] field of this structure. For example, suppose ** we have the following table and index: ** ** CREATE TABLE Ex1(c1 int, c2 int, c3 text); ** CREATE INDEX Ex2 ON Ex1(c3,c1); ** ** In the Table structure describing Ex1, nCol==3 because there are ** three columns in the table. In the Index structure describing ** Ex2, nColumn==2 since 2 of the 3 columns of Ex1 are indexed. ** The value of aiColumn is {2, 0}. aiColumn[0]==2 because the ** first column to be indexed (c3) has an index of 2 in Ex1.aCol[]. ** The second column to be indexed (c1) has an index of 0 in ** Ex1.aCol[], hence Ex2.aiColumn[1]==0. ** ** The Index.onError field determines whether or not the indexed columns ** must be unique and what to do if they are not. When Index.onError=OE_None, ** it means this is not a unique index. Otherwise it is a unique index ** and the value of Index.onError indicate the which conflict resolution ** algorithm to employ whenever an attempt is made to insert a non-unique ** element. ** ** While parsing a CREATE TABLE or CREATE INDEX statement in order to ** generate VDBE code (as opposed to parsing one read from an sqlite_schema ** table as part of parsing an existing database schema), transient instances ** of this structure may be created. In this case the Index.tnum variable is ** used to store the address of a VDBE instruction, not a database page ** number (it cannot - the database page is not allocated until the VDBE ** program is executed). See convertToWithoutRowidTable() for details. */ struct Index { char *zName; /* Name of this index */ i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */ LogEst *aiRowLogEst; /* From ANALYZE: Est. rows selected by each column */ Table *pTable; /* The SQL table being indexed */ char *zColAff; /* String defining the affinity of each column */ Index *pNext; /* The next index associated with the same table */ Schema *pSchema; /* Schema containing this index */ u8 *aSortOrder; /* for each column: True==DESC, False==ASC */ const char **azColl; /* Array of collation sequence names for index */ Expr *pPartIdxWhere; /* WHERE clause for partial indices */ ExprList *aColExpr; /* Column expressions */ Pgno tnum; /* DB Page containing root of this index */ LogEst szIdxRow; /* Estimated average row size in bytes */ u16 nKeyCol; /* Number of columns forming the key */ u16 nColumn; /* Number of columns stored in the index */ u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ unsigned idxType:2; /* 0:Normal 1:UNIQUE, 2:PRIMARY KEY, 3:IPK */ unsigned bUnordered:1; /* Use this index for == or IN queries only */ unsigned uniqNotNull:1; /* True if UNIQUE and NOT NULL for all columns */ unsigned isResized:1; /* True if resizeIndexObject() has been called */ unsigned isCovering:1; /* True if this is a covering index */ unsigned noSkipScan:1; /* Do not try to use skip-scan if true */ unsigned hasStat1:1; /* aiRowLogEst values come from sqlite_stat1 */ unsigned bNoQuery:1; /* Do not use this index to optimize queries */ unsigned bAscKeyBug:1; /* True if the bba7b69f9849b5bf bug applies */ unsigned bHasVCol:1; /* Index references one or more VIRTUAL columns */ #ifdef SQLITE_ENABLE_STAT4 int nSample; /* Number of elements in aSample[] */ int nSampleCol; /* Size of IndexSample.anEq[] and so on */ tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */ IndexSample *aSample; /* Samples of the left-most key */ tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */ tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */ #endif Bitmask colNotIdxed; /* 0 for unindexed columns in pTab */ }; /* ** Allowed values for Index.idxType */ #define SQLITE_IDXTYPE_APPDEF 0 /* Created using CREATE INDEX */ #define SQLITE_IDXTYPE_UNIQUE 1 /* Implements a UNIQUE constraint */ #define SQLITE_IDXTYPE_PRIMARYKEY 2 /* Is the PRIMARY KEY for the table */ #define SQLITE_IDXTYPE_IPK 3 /* INTEGER PRIMARY KEY index */ /* Return true if index X is a PRIMARY KEY index */ #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY) /* Return true if index X is a UNIQUE index */ #define IsUniqueIndex(X) ((X)->onError!=OE_None) /* The Index.aiColumn[] values are normally positive integer. But ** there are some negative values that have special meaning: */ #define XN_ROWID (-1) /* Indexed column is the rowid */ #define XN_EXPR (-2) /* Indexed column is an expression */ /* ** Each sample stored in the sqlite_stat4 table is represented in memory ** using a structure of this type. See documentation at the top of the ** analyze.c source file for additional information. */ struct IndexSample { void *p; /* Pointer to sampled record */ int n; /* Size of record in bytes */ tRowcnt *anEq; /* Est. number of rows where the key equals this sample */ tRowcnt *anLt; /* Est. number of rows where key is less than this sample */ tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */ }; /* ** Possible values to use within the flags argument to sqlite3GetToken(). */ #define SQLITE_TOKEN_QUOTED 0x1 /* Token is a quoted identifier. */ #define SQLITE_TOKEN_KEYWORD 0x2 /* Token is a keyword. */ /* ** Each token coming out of the lexer is an instance of ** this structure. Tokens are also used as part of an expression. ** ** The memory that "z" points to is owned by other objects. Take care ** that the owner of the "z" string does not deallocate the string before ** the Token goes out of scope! Very often, the "z" points to some place ** in the middle of the Parse.zSql text. But it might also point to a ** static string. */ struct Token { const char *z; /* Text of the token. Not NULL-terminated! */ unsigned int n; /* Number of characters in this token */ }; /* ** An instance of this structure contains information needed to generate ** code for a SELECT that contains aggregate functions. ** ** If Expr.op==TK_AGG_COLUMN or TK_AGG_FUNCTION then Expr.pAggInfo is a ** pointer to this structure. The Expr.iAgg field is the index in ** AggInfo.aCol[] or AggInfo.aFunc[] of information needed to generate ** code for that node. ** ** AggInfo.pGroupBy and AggInfo.aFunc.pExpr point to fields within the ** original Select structure that describes the SELECT statement. These ** fields do not need to be freed when deallocating the AggInfo structure. */ struct AggInfo { u8 directMode; /* Direct rendering mode means take data directly ** from source tables rather than from accumulators */ u8 useSortingIdx; /* In direct mode, reference the sorting index rather ** than the source table */ int sortingIdx; /* Cursor number of the sorting index */ int sortingIdxPTab; /* Cursor number of pseudo-table */ int nSortingColumn; /* Number of columns in the sorting index */ int mnReg, mxReg; /* Range of registers allocated for aCol and aFunc */ ExprList *pGroupBy; /* The group by clause */ struct AggInfo_col { /* For each column used in source tables */ Table *pTab; /* Source table */ Expr *pCExpr; /* The original expression */ int iTable; /* Cursor number of the source table */ int iMem; /* Memory location that acts as accumulator */ i16 iColumn; /* Column number within the source table */ i16 iSorterColumn; /* Column number in the sorting index */ } *aCol; int nColumn; /* Number of used entries in aCol[] */ int nAccumulator; /* Number of columns that show through to the output. ** Additional columns are used only as parameters to ** aggregate functions */ struct AggInfo_func { /* For each aggregate function */ Expr *pFExpr; /* Expression encoding the function */ FuncDef *pFunc; /* The aggregate function implementation */ int iMem; /* Memory location that acts as accumulator */ int iDistinct; /* Ephemeral table used to enforce DISTINCT */ int iDistAddr; /* Address of OP_OpenEphemeral */ } *aFunc; int nFunc; /* Number of entries in aFunc[] */ u32 selId; /* Select to which this AggInfo belongs */ }; /* ** The datatype ynVar is a signed integer, either 16-bit or 32-bit. ** Usually it is 16-bits. But if SQLITE_MAX_VARIABLE_NUMBER is greater ** than 32767 we have to make it 32-bit. 16-bit is preferred because ** it uses less memory in the Expr object, which is a big memory user ** in systems with lots of prepared statements. And few applications ** need more than about 10 or 20 variables. But some extreme users want ** to have prepared statements with over 32766 variables, and for them ** the option is available (at compile-time). */ #if SQLITE_MAX_VARIABLE_NUMBER<32767 typedef i16 ynVar; #else typedef int ynVar; #endif /* ** Each node of an expression in the parse tree is an instance ** of this structure. ** ** Expr.op is the opcode. The integer parser token codes are reused ** as opcodes here. For example, the parser defines TK_GE to be an integer ** code representing the ">=" operator. This same integer code is reused ** to represent the greater-than-or-equal-to operator in the expression ** tree. ** ** If the expression is an SQL literal (TK_INTEGER, TK_FLOAT, TK_BLOB, ** or TK_STRING), then Expr.u.zToken contains the text of the SQL literal. If ** the expression is a variable (TK_VARIABLE), then Expr.u.zToken contains the ** variable name. Finally, if the expression is an SQL function (TK_FUNCTION), ** then Expr.u.zToken contains the name of the function. ** ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a ** binary operator. Either or both may be NULL. ** ** Expr.x.pList is a list of arguments if the expression is an SQL function, ** a CASE expression or an IN expression of the form " IN (, ...)". ** Expr.x.pSelect is used if the expression is a sub-select or an expression of ** the form " IN (SELECT ...)". If the EP_xIsSelect bit is set in the ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is ** valid. ** ** An expression of the form ID or ID.ID refers to a column in a table. ** For such expressions, Expr.op is set to TK_COLUMN and Expr.iTable is ** the integer cursor number of a VDBE cursor pointing to that table and ** Expr.iColumn is the column number for the specific column. If the ** expression is used as a result in an aggregate SELECT, then the ** value is also stored in the Expr.iAgg column in the aggregate so that ** it can be accessed after all aggregates are computed. ** ** If the expression is an unbound variable marker (a question mark ** character '?' in the original SQL) then the Expr.iTable holds the index ** number for that variable. ** ** If the expression is a subquery then Expr.iColumn holds an integer ** register number containing the result of the subquery. If the ** subquery gives a constant result, then iTable is -1. If the subquery ** gives a different answer at different times during statement processing ** then iTable is the address of a subroutine that computes the subquery. ** ** If the Expr is of type OP_Column, and the table it is selecting from ** is a disk table or the "old.*" pseudo-table, then pTab points to the ** corresponding table definition. ** ** ALLOCATION NOTES: ** ** Expr objects can use a lot of memory space in database schema. To ** help reduce memory requirements, sometimes an Expr object will be ** truncated. And to reduce the number of memory allocations, sometimes ** two or more Expr objects will be stored in a single memory allocation, ** together with Expr.u.zToken strings. ** ** If the EP_Reduced and EP_TokenOnly flags are set when ** an Expr object is truncated. When EP_Reduced is set, then all ** the child Expr objects in the Expr.pLeft and Expr.pRight subtrees ** are contained within the same memory allocation. Note, however, that ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately ** allocated, regardless of whether or not EP_Reduced is set. */ struct Expr { u8 op; /* Operation performed by this node */ char affExpr; /* affinity, or RAISE type */ u8 op2; /* TK_REGISTER/TK_TRUTH: original value of Expr.op ** TK_COLUMN: the value of p5 for OP_Column ** TK_AGG_FUNCTION: nesting depth ** TK_FUNCTION: NC_SelfRef flag if needs OP_PureFunc */ #ifdef SQLITE_DEBUG u8 vvaFlags; /* Verification flags. */ #endif u32 flags; /* Various flags. EP_* See below */ union { char *zToken; /* Token value. Zero terminated and dequoted */ int iValue; /* Non-negative integer value if EP_IntValue */ } u; /* If the EP_TokenOnly flag is set in the Expr.flags mask, then no ** space is allocated for the fields below this point. An attempt to ** access them will result in a segfault or malfunction. *********************************************************************/ Expr *pLeft; /* Left subnode */ Expr *pRight; /* Right subnode */ union { ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */ Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */ } x; /* If the EP_Reduced flag is set in the Expr.flags mask, then no ** space is allocated for the fields below this point. An attempt to ** access them will result in a segfault or malfunction. *********************************************************************/ #if SQLITE_MAX_EXPR_DEPTH>0 int nHeight; /* Height of the tree headed by this node */ #endif int iTable; /* TK_COLUMN: cursor number of table holding column ** TK_REGISTER: register number ** TK_TRIGGER: 1 -> new, 0 -> old ** EP_Unlikely: 134217728 times likelihood ** TK_IN: ephemerial table holding RHS ** TK_SELECT_COLUMN: Number of columns on the LHS ** TK_SELECT: 1st register of result vector */ ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. ** TK_VARIABLE: variable number (always >= 1). ** TK_SELECT_COLUMN: column of the result vector */ i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */ union { int iRightJoinTable; /* If EP_FromJoin, the right table of the join */ int iOfst; /* else: start of token from start of statement */ } w; AggInfo *pAggInfo; /* Used by TK_AGG_COLUMN and TK_AGG_FUNCTION */ union { Table *pTab; /* TK_COLUMN: Table containing column. Can be NULL ** for a column of an index on an expression */ Window *pWin; /* EP_WinFunc: Window/Filter defn for a function */ struct { /* TK_IN, TK_SELECT, and TK_EXISTS */ int iAddr; /* Subroutine entry address */ int regReturn; /* Register used to hold return address */ } sub; } y; }; /* The following are the meanings of bits in the Expr.flags field. ** Value restrictions: ** ** EP_Agg == NC_HasAgg == SF_HasAgg ** EP_Win == NC_HasWin */ #define EP_FromJoin 0x000001 /* Originates in ON/USING clause of outer join */ #define EP_Distinct 0x000002 /* Aggregate function with DISTINCT keyword */ #define EP_HasFunc 0x000004 /* Contains one or more functions of any kind */ #define EP_FixedCol 0x000008 /* TK_Column with a known fixed value */ #define EP_Agg 0x000010 /* Contains one or more aggregate functions */ #define EP_VarSelect 0x000020 /* pSelect is correlated, not constant */ #define EP_DblQuoted 0x000040 /* token.z was originally in "..." */ #define EP_InfixFunc 0x000080 /* True for an infix function: LIKE, GLOB, etc */ #define EP_Collate 0x000100 /* Tree contains a TK_COLLATE operator */ #define EP_Commuted 0x000200 /* Comparison operator has been commuted */ #define EP_IntValue 0x000400 /* Integer value contained in u.iValue */ #define EP_xIsSelect 0x000800 /* x.pSelect is valid (otherwise x.pList is) */ #define EP_Skip 0x001000 /* Operator does not contribute to affinity */ #define EP_Reduced 0x002000 /* Expr struct EXPR_REDUCEDSIZE bytes only */ #define EP_TokenOnly 0x004000 /* Expr struct EXPR_TOKENONLYSIZE bytes only */ #define EP_Win 0x008000 /* Contains window functions */ #define EP_MemToken 0x010000 /* Need to sqlite3DbFree() Expr.zToken */ #define EP_IfNullRow 0x020000 /* The TK_IF_NULL_ROW opcode */ #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */ #define EP_ConstFunc 0x080000 /* A SQLITE_FUNC_CONSTANT or _SLOCHNG function */ #define EP_CanBeNull 0x100000 /* Can be null despite NOT NULL constraint */ #define EP_Subquery 0x200000 /* Tree contains a TK_SELECT operator */ /* 0x400000 // Available */ #define EP_Leaf 0x800000 /* Expr.pLeft, .pRight, .u.pSelect all NULL */ #define EP_WinFunc 0x1000000 /* TK_FUNCTION with Expr.y.pWin set */ #define EP_Subrtn 0x2000000 /* Uses Expr.y.sub. TK_IN, _SELECT, or _EXISTS */ #define EP_Quoted 0x4000000 /* TK_ID was originally quoted */ #define EP_Static 0x8000000 /* Held in memory not obtained from malloc() */ #define EP_IsTrue 0x10000000 /* Always has boolean value of TRUE */ #define EP_IsFalse 0x20000000 /* Always has boolean value of FALSE */ #define EP_FromDDL 0x40000000 /* Originates from sqlite_schema */ /* 0x80000000 // Available */ /* The EP_Propagate mask is a set of properties that automatically propagate ** upwards into parent nodes. */ #define EP_Propagate (EP_Collate|EP_Subquery|EP_HasFunc) /* Macros can be used to test, set, or clear bits in the ** Expr.flags field. */ #define ExprHasProperty(E,P) (((E)->flags&(P))!=0) #define ExprHasAllProperty(E,P) (((E)->flags&(P))==(P)) #define ExprSetProperty(E,P) (E)->flags|=(P) #define ExprClearProperty(E,P) (E)->flags&=~(P) #define ExprAlwaysTrue(E) (((E)->flags&(EP_FromJoin|EP_IsTrue))==EP_IsTrue) #define ExprAlwaysFalse(E) (((E)->flags&(EP_FromJoin|EP_IsFalse))==EP_IsFalse) /* Macros used to ensure that the correct members of unions are accessed ** in Expr. */ #define ExprUseUToken(E) (((E)->flags&EP_IntValue)==0) #define ExprUseUValue(E) (((E)->flags&EP_IntValue)!=0) #define ExprUseXList(E) (((E)->flags&EP_xIsSelect)==0) #define ExprUseXSelect(E) (((E)->flags&EP_xIsSelect)!=0) #define ExprUseYTab(E) (((E)->flags&(EP_WinFunc|EP_Subrtn))==0) #define ExprUseYWin(E) (((E)->flags&EP_WinFunc)!=0) #define ExprUseYSub(E) (((E)->flags&EP_Subrtn)!=0) /* Flags for use with Expr.vvaFlags */ #define EP_NoReduce 0x01 /* Cannot EXPRDUP_REDUCE this Expr */ #define EP_Immutable 0x02 /* Do not change this Expr node */ /* The ExprSetVVAProperty() macro is used for Verification, Validation, ** and Accreditation only. It works like ExprSetProperty() during VVA ** processes but is a no-op for delivery. */ #ifdef SQLITE_DEBUG # define ExprSetVVAProperty(E,P) (E)->vvaFlags|=(P) # define ExprHasVVAProperty(E,P) (((E)->vvaFlags&(P))!=0) # define ExprClearVVAProperties(E) (E)->vvaFlags = 0 #else # define ExprSetVVAProperty(E,P) # define ExprHasVVAProperty(E,P) 0 # define ExprClearVVAProperties(E) #endif /* ** Macros to determine the number of bytes required by a normal Expr ** struct, an Expr struct with the EP_Reduced flag set in Expr.flags ** and an Expr struct with the EP_TokenOnly flag set. */ #define EXPR_FULLSIZE sizeof(Expr) /* Full size */ #define EXPR_REDUCEDSIZE offsetof(Expr,iTable) /* Common features */ #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */ /* ** Flags passed to the sqlite3ExprDup() function. See the header comment ** above sqlite3ExprDup() for details. */ #define EXPRDUP_REDUCE 0x0001 /* Used reduced-size Expr nodes */ /* ** True if the expression passed as an argument was a function with ** an OVER() clause (a window function). */ #ifdef SQLITE_OMIT_WINDOWFUNC # define IsWindowFunc(p) 0 #else # define IsWindowFunc(p) ( \ ExprHasProperty((p), EP_WinFunc) && p->y.pWin->eFrmType!=TK_FILTER \ ) #endif /* ** A list of expressions. Each expression may optionally have a ** name. An expr/name combination can be used in several ways, such ** as the list of "expr AS ID" fields following a "SELECT" or in the ** list of "ID = expr" items in an UPDATE. A list of expressions can ** also be used as the argument to a function, in which case the a.zName ** field is not used. ** ** In order to try to keep memory usage down, the Expr.a.zEName field ** is used for multiple purposes: ** ** eEName Usage ** ---------- ------------------------- ** ENAME_NAME (1) the AS of result set column ** (2) COLUMN= of an UPDATE ** ** ENAME_TAB DB.TABLE.NAME used to resolve names ** of subqueries ** ** ENAME_SPAN Text of the original result set ** expression. */ struct ExprList { int nExpr; /* Number of expressions on the list */ int nAlloc; /* Number of a[] slots allocated */ struct ExprList_item { /* For each expression in the list */ Expr *pExpr; /* The parse tree for this expression */ char *zEName; /* Token associated with this expression */ u8 sortFlags; /* Mask of KEYINFO_ORDER_* flags */ unsigned eEName :2; /* Meaning of zEName */ unsigned done :1; /* A flag to indicate when processing is finished */ unsigned reusable :1; /* Constant expression is reusable */ unsigned bSorterRef :1; /* Defer evaluation until after sorting */ unsigned bNulls: 1; /* True if explicit "NULLS FIRST/LAST" */ union { struct { /* Used by any ExprList other than Parse.pConsExpr */ u16 iOrderByCol; /* For ORDER BY, column number in result set */ u16 iAlias; /* Index into Parse.aAlias[] for zName */ } x; int iConstExprReg; /* Register in which Expr value is cached. Used only ** by Parse.pConstExpr */ } u; } a[1]; /* One slot for each expression in the list */ }; /* ** Allowed values for Expr.a.eEName */ #define ENAME_NAME 0 /* The AS clause of a result set */ #define ENAME_SPAN 1 /* Complete text of the result set expression */ #define ENAME_TAB 2 /* "DB.TABLE.NAME" for the result set */ /* ** An instance of this structure can hold a simple list of identifiers, ** such as the list "a,b,c" in the following statements: ** ** INSERT INTO t(a,b,c) VALUES ...; ** CREATE INDEX idx ON t(a,b,c); ** CREATE TRIGGER trig BEFORE UPDATE ON t(a,b,c) ...; ** ** The IdList.a.idx field is used when the IdList represents the list of ** column names after a table name in an INSERT statement. In the statement ** ** INSERT INTO t(a,b,c) ... ** ** If "a" is the k-th column of table "t", then IdList.a[0].idx==k. */ struct IdList { struct IdList_item { char *zName; /* Name of the identifier */ int idx; /* Index in some Table.aCol[] of a column named zName */ } *a; int nId; /* Number of identifiers on the list */ }; /* ** The SrcItem object represents a single term in the FROM clause of a query. ** The SrcList object is mostly an array of SrcItems. ** ** Union member validity: ** ** u1.zIndexedBy fg.isIndexedBy && !fg.isTabFunc ** u1.pFuncArg fg.isTabFunc && !fg.isIndexedBy ** u2.pIBIndex fg.isIndexedBy && !fg.isCte ** u2.pCteUse fg.isCte && !fg.isIndexedBy */ struct SrcItem { Schema *pSchema; /* Schema to which this item is fixed */ char *zDatabase; /* Name of database holding this table */ char *zName; /* Name of the table */ char *zAlias; /* The "B" part of a "A AS B" phrase. zName is the "A" */ Table *pTab; /* An SQL table corresponding to zName */ Select *pSelect; /* A SELECT statement used in place of a table name */ int addrFillSub; /* Address of subroutine to manifest a subquery */ int regReturn; /* Register holding return address of addrFillSub */ int regResult; /* Registers holding results of a co-routine */ struct { u8 jointype; /* Type of join between this table and the previous */ unsigned notIndexed :1; /* True if there is a NOT INDEXED clause */ unsigned isIndexedBy :1; /* True if there is an INDEXED BY clause */ unsigned isTabFunc :1; /* True if table-valued-function syntax */ unsigned isCorrelated :1; /* True if sub-query is correlated */ unsigned viaCoroutine :1; /* Implemented as a co-routine */ unsigned isRecursive :1; /* True for recursive reference in WITH */ unsigned fromDDL :1; /* Comes from sqlite_schema */ unsigned isCte :1; /* This is a CTE */ unsigned notCte :1; /* This item may not match a CTE */ } fg; int iCursor; /* The VDBE cursor number used to access this table */ Expr *pOn; /* The ON clause of a join */ IdList *pUsing; /* The USING clause of a join */ Bitmask colUsed; /* Bit N (1<" clause */ ExprList *pFuncArg; /* Arguments to table-valued-function */ } u1; union { Index *pIBIndex; /* Index structure corresponding to u1.zIndexedBy */ CteUse *pCteUse; /* CTE Usage info info fg.isCte is true */ } u2; }; /* ** The following structure describes the FROM clause of a SELECT statement. ** Each table or subquery in the FROM clause is a separate element of ** the SrcList.a[] array. ** ** With the addition of multiple database support, the following structure ** can also be used to describe a particular table such as the table that ** is modified by an INSERT, DELETE, or UPDATE statement. In standard SQL, ** such a table must be a simple name: ID. But in SQLite, the table can ** now be identified by a database name, a dot, then the table name: ID.ID. ** ** The jointype starts out showing the join type between the current table ** and the next table on the list. The parser builds the list this way. ** But sqlite3SrcListShiftJoinType() later shifts the jointypes so that each ** jointype expresses the join between the table and the previous table. ** ** In the colUsed field, the high-order bit (bit 63) is set if the table ** contains more than 63 columns and the 64-th or later column is used. */ struct SrcList { int nSrc; /* Number of tables or subqueries in the FROM clause */ u32 nAlloc; /* Number of entries allocated in a[] below */ SrcItem a[1]; /* One entry for each identifier on the list */ }; /* ** Permitted values of the SrcList.a.jointype field */ #define JT_INNER 0x0001 /* Any kind of inner or cross join */ #define JT_CROSS 0x0002 /* Explicit use of the CROSS keyword */ #define JT_NATURAL 0x0004 /* True for a "natural" join */ #define JT_LEFT 0x0008 /* Left outer join */ #define JT_RIGHT 0x0010 /* Right outer join */ #define JT_OUTER 0x0020 /* The "OUTER" keyword is present */ #define JT_ERROR 0x0040 /* unknown or unsupported join type */ /* ** Flags appropriate for the wctrlFlags parameter of sqlite3WhereBegin() ** and the WhereInfo.wctrlFlags member. ** ** Value constraints (enforced via assert()): ** WHERE_USE_LIMIT == SF_FixedLimit */ #define WHERE_ORDERBY_NORMAL 0x0000 /* No-op */ #define WHERE_ORDERBY_MIN 0x0001 /* ORDER BY processing for min() func */ #define WHERE_ORDERBY_MAX 0x0002 /* ORDER BY processing for max() func */ #define WHERE_ONEPASS_DESIRED 0x0004 /* Want to do one-pass UPDATE/DELETE */ #define WHERE_ONEPASS_MULTIROW 0x0008 /* ONEPASS is ok with multiple rows */ #define WHERE_DUPLICATES_OK 0x0010 /* Ok to return a row more than once */ #define WHERE_OR_SUBCLAUSE 0x0020 /* Processing a sub-WHERE as part of ** the OR optimization */ #define WHERE_GROUPBY 0x0040 /* pOrderBy is really a GROUP BY */ #define WHERE_DISTINCTBY 0x0080 /* pOrderby is really a DISTINCT clause */ #define WHERE_WANT_DISTINCT 0x0100 /* All output needs to be distinct */ #define WHERE_SORTBYGROUP 0x0200 /* Support sqlite3WhereIsSorted() */ #define WHERE_AGG_DISTINCT 0x0400 /* Query is "SELECT agg(DISTINCT ...)" */ #define WHERE_ORDERBY_LIMIT 0x0800 /* ORDERBY+LIMIT on the inner loop */ /* 0x1000 not currently used */ /* 0x2000 not currently used */ #define WHERE_USE_LIMIT 0x4000 /* Use the LIMIT in cost estimates */ /* 0x8000 not currently used */ /* Allowed return values from sqlite3WhereIsDistinct() */ #define WHERE_DISTINCT_NOOP 0 /* DISTINCT keyword not used */ #define WHERE_DISTINCT_UNIQUE 1 /* No duplicates */ #define WHERE_DISTINCT_ORDERED 2 /* All duplicates are adjacent */ #define WHERE_DISTINCT_UNORDERED 3 /* Duplicates are scattered */ /* ** A NameContext defines a context in which to resolve table and column ** names. The context consists of a list of tables (the pSrcList) field and ** a list of named expression (pEList). The named expression list may ** be NULL. The pSrc corresponds to the FROM clause of a SELECT or ** to the table being operated on by INSERT, UPDATE, or DELETE. The ** pEList corresponds to the result set of a SELECT and is NULL for ** other statements. ** ** NameContexts can be nested. When resolving names, the inner-most ** context is searched first. If no match is found, the next outer ** context is checked. If there is still no match, the next context ** is checked. This process continues until either a match is found ** or all contexts are check. When a match is found, the nRef member of ** the context containing the match is incremented. ** ** Each subquery gets a new NameContext. The pNext field points to the ** NameContext in the parent query. Thus the process of scanning the ** NameContext list corresponds to searching through successively outer ** subqueries looking for a match. */ struct NameContext { Parse *pParse; /* The parser */ SrcList *pSrcList; /* One or more tables used to resolve names */ union { ExprList *pEList; /* Optional list of result-set columns */ AggInfo *pAggInfo; /* Information about aggregates at this level */ Upsert *pUpsert; /* ON CONFLICT clause information from an upsert */ int iBaseReg; /* For TK_REGISTER when parsing RETURNING */ } uNC; NameContext *pNext; /* Next outer name context. NULL for outermost */ int nRef; /* Number of names resolved by this context */ int nNcErr; /* Number of errors encountered while resolving names */ int ncFlags; /* Zero or more NC_* flags defined below */ Select *pWinSelect; /* SELECT statement for any window functions */ }; /* ** Allowed values for the NameContext, ncFlags field. ** ** Value constraints (all checked via assert()): ** NC_HasAgg == SF_HasAgg == EP_Agg ** NC_MinMaxAgg == SF_MinMaxAgg == SQLITE_FUNC_MINMAX ** NC_OrderAgg == SF_OrderByReqd == SQLITE_FUNC_ANYORDER ** NC_HasWin == EP_Win ** */ #define NC_AllowAgg 0x000001 /* Aggregate functions are allowed here */ #define NC_PartIdx 0x000002 /* True if resolving a partial index WHERE */ #define NC_IsCheck 0x000004 /* True if resolving a CHECK constraint */ #define NC_GenCol 0x000008 /* True for a GENERATED ALWAYS AS clause */ #define NC_HasAgg 0x000010 /* One or more aggregate functions seen */ #define NC_IdxExpr 0x000020 /* True if resolving columns of CREATE INDEX */ #define NC_SelfRef 0x00002e /* Combo: PartIdx, isCheck, GenCol, and IdxExpr */ #define NC_VarSelect 0x000040 /* A correlated subquery has been seen */ #define NC_UEList 0x000080 /* True if uNC.pEList is used */ #define NC_UAggInfo 0x000100 /* True if uNC.pAggInfo is used */ #define NC_UUpsert 0x000200 /* True if uNC.pUpsert is used */ #define NC_UBaseReg 0x000400 /* True if uNC.iBaseReg is used */ #define NC_MinMaxAgg 0x001000 /* min/max aggregates seen. See note above */ #define NC_Complex 0x002000 /* True if a function or subquery seen */ #define NC_AllowWin 0x004000 /* Window functions are allowed here */ #define NC_HasWin 0x008000 /* One or more window functions seen */ #define NC_IsDDL 0x010000 /* Resolving names in a CREATE statement */ #define NC_InAggFunc 0x020000 /* True if analyzing arguments to an agg func */ #define NC_FromDDL 0x040000 /* SQL text comes from sqlite_schema */ #define NC_NoSelect 0x080000 /* Do not descend into sub-selects */ #define NC_OrderAgg 0x8000000 /* Has an aggregate other than count/min/max */ /* ** An instance of the following object describes a single ON CONFLICT ** clause in an upsert. ** ** The pUpsertTarget field is only set if the ON CONFLICT clause includes ** conflict-target clause. (In "ON CONFLICT(a,b)" the "(a,b)" is the ** conflict-target clause.) The pUpsertTargetWhere is the optional ** WHERE clause used to identify partial unique indexes. ** ** pUpsertSet is the list of column=expr terms of the UPDATE statement. ** The pUpsertSet field is NULL for a ON CONFLICT DO NOTHING. The ** pUpsertWhere is the WHERE clause for the UPDATE and is NULL if the ** WHERE clause is omitted. */ struct Upsert { ExprList *pUpsertTarget; /* Optional description of conflict target */ Expr *pUpsertTargetWhere; /* WHERE clause for partial index targets */ ExprList *pUpsertSet; /* The SET clause from an ON CONFLICT UPDATE */ Expr *pUpsertWhere; /* WHERE clause for the ON CONFLICT UPDATE */ Upsert *pNextUpsert; /* Next ON CONFLICT clause in the list */ u8 isDoUpdate; /* True for DO UPDATE. False for DO NOTHING */ /* Above this point is the parse tree for the ON CONFLICT clauses. ** The next group of fields stores intermediate data. */ void *pToFree; /* Free memory when deleting the Upsert object */ /* All fields above are owned by the Upsert object and must be freed ** when the Upsert is destroyed. The fields below are used to transfer ** information from the INSERT processing down into the UPDATE processing ** while generating code. The fields below are owned by the INSERT ** statement and will be freed by INSERT processing. */ Index *pUpsertIdx; /* UNIQUE constraint specified by pUpsertTarget */ SrcList *pUpsertSrc; /* Table to be updated */ int regData; /* First register holding array of VALUES */ int iDataCur; /* Index of the data cursor */ int iIdxCur; /* Index of the first index cursor */ }; /* ** An instance of the following structure contains all information ** needed to generate code for a single SELECT statement. ** ** See the header comment on the computeLimitRegisters() routine for a ** detailed description of the meaning of the iLimit and iOffset fields. ** ** addrOpenEphm[] entries contain the address of OP_OpenEphemeral opcodes. ** These addresses must be stored so that we can go back and fill in ** the P4_KEYINFO and P2 parameters later. Neither the KeyInfo nor ** the number of columns in P2 can be computed at the same time ** as the OP_OpenEphm instruction is coded because not ** enough information about the compound query is known at that point. ** The KeyInfo for addrOpenTran[0] and [1] contains collating sequences ** for the result set. The KeyInfo for addrOpenEphm[2] contains collating ** sequences for the ORDER BY clause. */ struct Select { u8 op; /* One of: TK_UNION TK_ALL TK_INTERSECT TK_EXCEPT */ LogEst nSelectRow; /* Estimated number of result rows */ u32 selFlags; /* Various SF_* values */ int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */ u32 selId; /* Unique identifier number for this SELECT */ int addrOpenEphm[2]; /* OP_OpenEphem opcodes related to this select */ ExprList *pEList; /* The fields of the result */ SrcList *pSrc; /* The FROM clause */ Expr *pWhere; /* The WHERE clause */ ExprList *pGroupBy; /* The GROUP BY clause */ Expr *pHaving; /* The HAVING clause */ ExprList *pOrderBy; /* The ORDER BY clause */ Select *pPrior; /* Prior select in a compound select statement */ Select *pNext; /* Next select to the left in a compound */ Expr *pLimit; /* LIMIT expression. NULL means not used. */ With *pWith; /* WITH clause attached to this select. Or NULL. */ #ifndef SQLITE_OMIT_WINDOWFUNC Window *pWin; /* List of window functions */ Window *pWinDefn; /* List of named window definitions */ #endif }; /* ** Allowed values for Select.selFlags. The "SF" prefix stands for ** "Select Flag". ** ** Value constraints (all checked via assert()) ** SF_HasAgg == NC_HasAgg ** SF_MinMaxAgg == NC_MinMaxAgg == SQLITE_FUNC_MINMAX ** SF_OrderByReqd == NC_OrderAgg == SQLITE_FUNC_ANYORDER ** SF_FixedLimit == WHERE_USE_LIMIT */ #define SF_Distinct 0x0000001 /* Output should be DISTINCT */ #define SF_All 0x0000002 /* Includes the ALL keyword */ #define SF_Resolved 0x0000004 /* Identifiers have been resolved */ #define SF_Aggregate 0x0000008 /* Contains agg functions or a GROUP BY */ #define SF_HasAgg 0x0000010 /* Contains aggregate functions */ #define SF_UsesEphemeral 0x0000020 /* Uses the OpenEphemeral opcode */ #define SF_Expanded 0x0000040 /* sqlite3SelectExpand() called on this */ #define SF_HasTypeInfo 0x0000080 /* FROM subqueries have Table metadata */ #define SF_Compound 0x0000100 /* Part of a compound query */ #define SF_Values 0x0000200 /* Synthesized from VALUES clause */ #define SF_MultiValue 0x0000400 /* Single VALUES term with multiple rows */ #define SF_NestedFrom 0x0000800 /* Part of a parenthesized FROM clause */ #define SF_MinMaxAgg 0x0001000 /* Aggregate containing min() or max() */ #define SF_Recursive 0x0002000 /* The recursive part of a recursive CTE */ #define SF_FixedLimit 0x0004000 /* nSelectRow set by a constant LIMIT */ #define SF_MaybeConvert 0x0008000 /* Need convertCompoundSelectToSubquery() */ #define SF_Converted 0x0010000 /* By convertCompoundSelectToSubquery() */ #define SF_IncludeHidden 0x0020000 /* Include hidden columns in output */ #define SF_ComplexResult 0x0040000 /* Result contains subquery or function */ #define SF_WhereBegin 0x0080000 /* Really a WhereBegin() call. Debug Only */ #define SF_WinRewrite 0x0100000 /* Window function rewrite accomplished */ #define SF_View 0x0200000 /* SELECT statement is a view */ #define SF_NoopOrderBy 0x0400000 /* ORDER BY is ignored for this query */ #define SF_UFSrcCheck 0x0800000 /* Check pSrc as required by UPDATE...FROM */ #define SF_PushDown 0x1000000 /* SELECT has be modified by push-down opt */ #define SF_MultiPart 0x2000000 /* Has multiple incompatible PARTITIONs */ #define SF_CopyCte 0x4000000 /* SELECT statement is a copy of a CTE */ #define SF_OrderByReqd 0x8000000 /* The ORDER BY clause may not be omitted */ /* ** The results of a SELECT can be distributed in several ways, as defined ** by one of the following macros. The "SRT" prefix means "SELECT Result ** Type". ** ** SRT_Union Store results as a key in a temporary index ** identified by pDest->iSDParm. ** ** SRT_Except Remove results from the temporary index pDest->iSDParm. ** ** SRT_Exists Store a 1 in memory cell pDest->iSDParm if the result ** set is not empty. ** ** SRT_Discard Throw the results away. This is used by SELECT ** statements within triggers whose only purpose is ** the side-effects of functions. ** ** SRT_Output Generate a row of output (using the OP_ResultRow ** opcode) for each row in the result set. ** ** SRT_Mem Only valid if the result is a single column. ** Store the first column of the first result row ** in register pDest->iSDParm then abandon the rest ** of the query. This destination implies "LIMIT 1". ** ** SRT_Set The result must be a single column. Store each ** row of result as the key in table pDest->iSDParm. ** Apply the affinity pDest->affSdst before storing ** results. Used to implement "IN (SELECT ...)". ** ** SRT_EphemTab Create an temporary table pDest->iSDParm and store ** the result there. The cursor is left open after ** returning. This is like SRT_Table except that ** this destination uses OP_OpenEphemeral to create ** the table first. ** ** SRT_Coroutine Generate a co-routine that returns a new row of ** results each time it is invoked. The entry point ** of the co-routine is stored in register pDest->iSDParm ** and the result row is stored in pDest->nDest registers ** starting with pDest->iSdst. ** ** SRT_Table Store results in temporary table pDest->iSDParm. ** SRT_Fifo This is like SRT_EphemTab except that the table ** is assumed to already be open. SRT_Fifo has ** the additional property of being able to ignore ** the ORDER BY clause. ** ** SRT_DistFifo Store results in a temporary table pDest->iSDParm. ** But also use temporary table pDest->iSDParm+1 as ** a record of all prior results and ignore any duplicate ** rows. Name means: "Distinct Fifo". ** ** SRT_Queue Store results in priority queue pDest->iSDParm (really ** an index). Append a sequence number so that all entries ** are distinct. ** ** SRT_DistQueue Store results in priority queue pDest->iSDParm only if ** the same record has never been stored before. The ** index at pDest->iSDParm+1 hold all prior stores. ** ** SRT_Upfrom Store results in the temporary table already opened by ** pDest->iSDParm. If (pDest->iSDParm<0), then the temp ** table is an intkey table - in this case the first ** column returned by the SELECT is used as the integer ** key. If (pDest->iSDParm>0), then the table is an index ** table. (pDest->iSDParm) is the number of key columns in ** each index record in this case. */ #define SRT_Union 1 /* Store result as keys in an index */ #define SRT_Except 2 /* Remove result from a UNION index */ #define SRT_Exists 3 /* Store 1 if the result is not empty */ #define SRT_Discard 4 /* Do not save the results anywhere */ #define SRT_DistFifo 5 /* Like SRT_Fifo, but unique results only */ #define SRT_DistQueue 6 /* Like SRT_Queue, but unique results only */ /* The DISTINCT clause is ignored for all of the above. Not that ** IgnorableDistinct() implies IgnorableOrderby() */ #define IgnorableDistinct(X) ((X->eDest)<=SRT_DistQueue) #define SRT_Queue 7 /* Store result in an queue */ #define SRT_Fifo 8 /* Store result as data with an automatic rowid */ /* The ORDER BY clause is ignored for all of the above */ #define IgnorableOrderby(X) ((X->eDest)<=SRT_Fifo) #define SRT_Output 9 /* Output each row of result */ #define SRT_Mem 10 /* Store result in a memory cell */ #define SRT_Set 11 /* Store results as keys in an index */ #define SRT_EphemTab 12 /* Create transient tab and store like SRT_Table */ #define SRT_Coroutine 13 /* Generate a single row of result */ #define SRT_Table 14 /* Store result as data with an automatic rowid */ #define SRT_Upfrom 15 /* Store result as data with rowid */ /* ** An instance of this object describes where to put of the results of ** a SELECT statement. */ struct SelectDest { u8 eDest; /* How to dispose of the results. One of SRT_* above. */ int iSDParm; /* A parameter used by the eDest disposal method */ int iSDParm2; /* A second parameter for the eDest disposal method */ int iSdst; /* Base register where results are written */ int nSdst; /* Number of registers allocated */ char *zAffSdst; /* Affinity used when eDest==SRT_Set */ ExprList *pOrderBy; /* Key columns for SRT_Queue and SRT_DistQueue */ }; /* ** During code generation of statements that do inserts into AUTOINCREMENT ** tables, the following information is attached to the Table.u.autoInc.p ** pointer of each autoincrement table to record some side information that ** the code generator needs. We have to keep per-table autoincrement ** information in case inserts are done within triggers. Triggers do not ** normally coordinate their activities, but we do need to coordinate the ** loading and saving of autoincrement information. */ struct AutoincInfo { AutoincInfo *pNext; /* Next info block in a list of them all */ Table *pTab; /* Table this info block refers to */ int iDb; /* Index in sqlite3.aDb[] of database holding pTab */ int regCtr; /* Memory register holding the rowid counter */ }; /* ** At least one instance of the following structure is created for each ** trigger that may be fired while parsing an INSERT, UPDATE or DELETE ** statement. All such objects are stored in the linked list headed at ** Parse.pTriggerPrg and deleted once statement compilation has been ** completed. ** ** A Vdbe sub-program that implements the body and WHEN clause of trigger ** TriggerPrg.pTrigger, assuming a default ON CONFLICT clause of ** TriggerPrg.orconf, is stored in the TriggerPrg.pProgram variable. ** The Parse.pTriggerPrg list never contains two entries with the same ** values for both pTrigger and orconf. ** ** The TriggerPrg.aColmask[0] variable is set to a mask of old.* columns ** accessed (or set to 0 for triggers fired as a result of INSERT ** statements). Similarly, the TriggerPrg.aColmask[1] variable is set to ** a mask of new.* columns used by the program. */ struct TriggerPrg { Trigger *pTrigger; /* Trigger this program was coded from */ TriggerPrg *pNext; /* Next entry in Parse.pTriggerPrg list */ SubProgram *pProgram; /* Program implementing pTrigger/orconf */ int orconf; /* Default ON CONFLICT policy */ u32 aColmask[2]; /* Masks of old.*, new.* columns accessed */ }; /* ** The yDbMask datatype for the bitmask of all attached databases. */ #if SQLITE_MAX_ATTACHED>30 typedef unsigned char yDbMask[(SQLITE_MAX_ATTACHED+9)/8]; # define DbMaskTest(M,I) (((M)[(I)/8]&(1<<((I)&7)))!=0) # define DbMaskZero(M) memset((M),0,sizeof(M)) # define DbMaskSet(M,I) (M)[(I)/8]|=(1<<((I)&7)) # define DbMaskAllZero(M) sqlite3DbMaskAllZero(M) # define DbMaskNonZero(M) (sqlite3DbMaskAllZero(M)==0) #else typedef unsigned int yDbMask; # define DbMaskTest(M,I) (((M)&(((yDbMask)1)<<(I)))!=0) # define DbMaskZero(M) (M)=0 # define DbMaskSet(M,I) (M)|=(((yDbMask)1)<<(I)) # define DbMaskAllZero(M) (M)==0 # define DbMaskNonZero(M) (M)!=0 #endif /* ** An instance of the ParseCleanup object specifies an operation that ** should be performed after parsing to deallocation resources obtained ** during the parse and which are no longer needed. */ struct ParseCleanup { ParseCleanup *pNext; /* Next cleanup task */ void *pPtr; /* Pointer to object to deallocate */ void (*xCleanup)(sqlite3*,void*); /* Deallocation routine */ }; /* ** An SQL parser context. A copy of this structure is passed through ** the parser and down into all the parser action routine in order to ** carry around information that is global to the entire parse. ** ** The structure is divided into two parts. When the parser and code ** generate call themselves recursively, the first part of the structure ** is constant but the second part is reset at the beginning and end of ** each recursion. ** ** The nTableLock and aTableLock variables are only used if the shared-cache ** feature is enabled (if sqlite3Tsd()->useSharedData is true). They are ** used to store the set of table-locks required by the statement being ** compiled. Function sqlite3TableLock() is used to add entries to the ** list. */ struct Parse { sqlite3 *db; /* The main database structure */ char *zErrMsg; /* An error message */ Vdbe *pVdbe; /* An engine for executing database bytecode */ int rc; /* Return code from execution */ u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */ u8 checkSchema; /* Causes schema cookie check after an error */ u8 nested; /* Number of nested calls to the parser/code generator */ u8 nTempReg; /* Number of temporary registers in aTempReg[] */ u8 isMultiWrite; /* True if statement may modify/insert multiple rows */ u8 mayAbort; /* True if statement may throw an ABORT exception */ u8 hasCompound; /* Need to invoke convertCompoundSelectToSubquery() */ u8 okConstFactor; /* OK to factor out constants */ u8 disableLookaside; /* Number of times lookaside has been disabled */ u8 disableVtab; /* Disable all virtual tables for this parse */ #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) u8 earlyCleanup; /* OOM inside sqlite3ParserAddCleanup() */ #endif int nRangeReg; /* Size of the temporary register block */ int iRangeReg; /* First register in temporary register block */ int nErr; /* Number of errors seen */ int nTab; /* Number of previously allocated VDBE cursors */ int nMem; /* Number of memory cells used so far */ int szOpAlloc; /* Bytes of memory space allocated for Vdbe.aOp[] */ int iSelfTab; /* Table associated with an index on expr, or negative ** of the base register during check-constraint eval */ int nLabel; /* The *negative* of the number of labels used */ int nLabelAlloc; /* Number of slots in aLabel */ int *aLabel; /* Space to hold the labels */ ExprList *pConstExpr;/* Constant expressions */ Token constraintName;/* Name of the constraint currently being parsed */ yDbMask writeMask; /* Start a write transaction on these databases */ yDbMask cookieMask; /* Bitmask of schema verified databases */ int regRowid; /* Register holding rowid of CREATE TABLE entry */ int regRoot; /* Register holding root page number for new objects */ int nMaxArg; /* Max args passed to user function by sub-program */ int nSelect; /* Number of SELECT stmts. Counter for Select.selId */ #ifndef SQLITE_OMIT_SHARED_CACHE int nTableLock; /* Number of locks in aTableLock */ TableLock *aTableLock; /* Required table locks for shared-cache mode */ #endif AutoincInfo *pAinc; /* Information about AUTOINCREMENT counters */ Parse *pToplevel; /* Parse structure for main program (or NULL) */ Table *pTriggerTab; /* Table triggers are being coded for */ TriggerPrg *pTriggerPrg; /* Linked list of coded triggers */ ParseCleanup *pCleanup; /* List of cleanup operations to run after parse */ union { int addrCrTab; /* Address of OP_CreateBtree on CREATE TABLE */ Returning *pReturning; /* The RETURNING clause */ } u1; u32 nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */ u32 oldmask; /* Mask of old.* columns referenced */ u32 newmask; /* Mask of new.* columns referenced */ u8 eTriggerOp; /* TK_UPDATE, TK_INSERT or TK_DELETE */ u8 bReturning; /* Coding a RETURNING trigger */ u8 eOrconf; /* Default ON CONFLICT policy for trigger steps */ u8 disableTriggers; /* True to disable triggers */ /************************************************************************** ** Fields above must be initialized to zero. The fields that follow, ** down to the beginning of the recursive section, do not need to be ** initialized as they will be set before being used. The boundary is ** determined by offsetof(Parse,aTempReg). **************************************************************************/ int aTempReg[8]; /* Holding area for temporary registers */ Parse *pOuterParse; /* Outer Parse object when nested */ Token sNameToken; /* Token with unqualified schema object name */ /************************************************************************ ** Above is constant between recursions. Below is reset before and after ** each recursion. The boundary between these two regions is determined ** using offsetof(Parse,sLastToken) so the sLastToken field must be the ** first field in the recursive region. ************************************************************************/ Token sLastToken; /* The last token parsed */ ynVar nVar; /* Number of '?' variables seen in the SQL so far */ u8 iPkSortOrder; /* ASC or DESC for INTEGER PRIMARY KEY */ u8 explain; /* True if the EXPLAIN flag is found on the query */ u8 eParseMode; /* PARSE_MODE_XXX constant */ #ifndef SQLITE_OMIT_VIRTUALTABLE int nVtabLock; /* Number of virtual tables to lock */ #endif int nHeight; /* Expression tree height of current sub-select */ #ifndef SQLITE_OMIT_EXPLAIN int addrExplain; /* Address of current OP_Explain opcode */ #endif VList *pVList; /* Mapping between variable names and numbers */ Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */ const char *zTail; /* All SQL text past the last semicolon parsed */ Table *pNewTable; /* A table being constructed by CREATE TABLE */ Index *pNewIndex; /* An index being constructed by CREATE INDEX. ** Also used to hold redundant UNIQUE constraints ** during a RENAME COLUMN */ Trigger *pNewTrigger; /* Trigger under construct by a CREATE TRIGGER */ const char *zAuthContext; /* The 6th parameter to db->xAuth callbacks */ #ifndef SQLITE_OMIT_VIRTUALTABLE Token sArg; /* Complete text of a module argument */ Table **apVtabLock; /* Pointer to virtual tables needing locking */ #endif With *pWith; /* Current WITH clause, or NULL */ #ifndef SQLITE_OMIT_ALTERTABLE RenameToken *pRename; /* Tokens subject to renaming by ALTER TABLE */ #endif }; /* Allowed values for Parse.eParseMode */ #define PARSE_MODE_NORMAL 0 #define PARSE_MODE_DECLARE_VTAB 1 #define PARSE_MODE_RENAME 2 #define PARSE_MODE_UNMAP 3 /* ** Sizes and pointers of various parts of the Parse object. */ #define PARSE_HDR(X) (((char*)(X))+offsetof(Parse,zErrMsg)) #define PARSE_HDR_SZ (offsetof(Parse,aTempReg)-offsetof(Parse,zErrMsg)) /* Recursive part w/o aColCache*/ #define PARSE_RECURSE_SZ offsetof(Parse,sLastToken) /* Recursive part */ #define PARSE_TAIL_SZ (sizeof(Parse)-PARSE_RECURSE_SZ) /* Non-recursive part */ #define PARSE_TAIL(X) (((char*)(X))+PARSE_RECURSE_SZ) /* Pointer to tail */ /* ** Return true if currently inside an sqlite3_declare_vtab() call. */ #ifdef SQLITE_OMIT_VIRTUALTABLE #define IN_DECLARE_VTAB 0 #else #define IN_DECLARE_VTAB (pParse->eParseMode==PARSE_MODE_DECLARE_VTAB) #endif #if defined(SQLITE_OMIT_ALTERTABLE) #define IN_RENAME_OBJECT 0 #else #define IN_RENAME_OBJECT (pParse->eParseMode>=PARSE_MODE_RENAME) #endif #if defined(SQLITE_OMIT_VIRTUALTABLE) && defined(SQLITE_OMIT_ALTERTABLE) #define IN_SPECIAL_PARSE 0 #else #define IN_SPECIAL_PARSE (pParse->eParseMode!=PARSE_MODE_NORMAL) #endif /* ** An instance of the following structure can be declared on a stack and used ** to save the Parse.zAuthContext value so that it can be restored later. */ struct AuthContext { const char *zAuthContext; /* Put saved Parse.zAuthContext here */ Parse *pParse; /* The Parse structure */ }; /* ** Bitfield flags for P5 value in various opcodes. ** ** Value constraints (enforced via assert()): ** OPFLAG_LENGTHARG == SQLITE_FUNC_LENGTH ** OPFLAG_TYPEOFARG == SQLITE_FUNC_TYPEOF ** OPFLAG_BULKCSR == BTREE_BULKLOAD ** OPFLAG_SEEKEQ == BTREE_SEEK_EQ ** OPFLAG_FORDELETE == BTREE_FORDELETE ** OPFLAG_SAVEPOSITION == BTREE_SAVEPOSITION ** OPFLAG_AUXDELETE == BTREE_AUXDELETE */ #define OPFLAG_NCHANGE 0x01 /* OP_Insert: Set to update db->nChange */ /* Also used in P2 (not P5) of OP_Delete */ #define OPFLAG_NOCHNG 0x01 /* OP_VColumn nochange for UPDATE */ #define OPFLAG_EPHEM 0x01 /* OP_Column: Ephemeral output is ok */ #define OPFLAG_LASTROWID 0x20 /* Set to update db->lastRowid */ #define OPFLAG_ISUPDATE 0x04 /* This OP_Insert is an sql UPDATE */ #define OPFLAG_APPEND 0x08 /* This is likely to be an append */ #define OPFLAG_USESEEKRESULT 0x10 /* Try to avoid a seek in BtreeInsert() */ #define OPFLAG_ISNOOP 0x40 /* OP_Delete does pre-update-hook only */ #define OPFLAG_LENGTHARG 0x40 /* OP_Column only used for length() */ #define OPFLAG_TYPEOFARG 0x80 /* OP_Column only used for typeof() */ #define OPFLAG_BULKCSR 0x01 /* OP_Open** used to open bulk cursor */ #define OPFLAG_SEEKEQ 0x02 /* OP_Open** cursor uses EQ seek only */ #define OPFLAG_FORDELETE 0x08 /* OP_Open should use BTREE_FORDELETE */ #define OPFLAG_P2ISREG 0x10 /* P2 to OP_Open** is a register number */ #define OPFLAG_PERMUTE 0x01 /* OP_Compare: use the permutation */ #define OPFLAG_SAVEPOSITION 0x02 /* OP_Delete/Insert: save cursor pos */ #define OPFLAG_AUXDELETE 0x04 /* OP_Delete: index in a DELETE op */ #define OPFLAG_NOCHNG_MAGIC 0x6d /* OP_MakeRecord: serialtype 10 is ok */ #define OPFLAG_PREFORMAT 0x80 /* OP_Insert uses preformatted cell */ /* * Each trigger present in the database schema is stored as an instance of * struct Trigger. * * Pointers to instances of struct Trigger are stored in two ways. * 1. In the "trigHash" hash table (part of the sqlite3* that represents the * database). This allows Trigger structures to be retrieved by name. * 2. All triggers associated with a single table form a linked list, using the * pNext member of struct Trigger. A pointer to the first element of the * linked list is stored as the "pTrigger" member of the associated * struct Table. * * The "step_list" member points to the first element of a linked list * containing the SQL statements specified as the trigger program. */ struct Trigger { char *zName; /* The name of the trigger */ char *table; /* The table or view to which the trigger applies */ u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT */ u8 tr_tm; /* One of TRIGGER_BEFORE, TRIGGER_AFTER */ u8 bReturning; /* This trigger implements a RETURNING clause */ Expr *pWhen; /* The WHEN clause of the expression (may be NULL) */ IdList *pColumns; /* If this is an UPDATE OF trigger, the is stored here */ Schema *pSchema; /* Schema containing the trigger */ Schema *pTabSchema; /* Schema containing the table */ TriggerStep *step_list; /* Link list of trigger program steps */ Trigger *pNext; /* Next trigger associated with the table */ }; /* ** A trigger is either a BEFORE or an AFTER trigger. The following constants ** determine which. ** ** If there are multiple triggers, you might of some BEFORE and some AFTER. ** In that cases, the constants below can be ORed together. */ #define TRIGGER_BEFORE 1 #define TRIGGER_AFTER 2 /* * An instance of struct TriggerStep is used to store a single SQL statement * that is a part of a trigger-program. * * Instances of struct TriggerStep are stored in a singly linked list (linked * using the "pNext" member) referenced by the "step_list" member of the * associated struct Trigger instance. The first element of the linked list is * the first step of the trigger-program. * * The "op" member indicates whether this is a "DELETE", "INSERT", "UPDATE" or * "SELECT" statement. The meanings of the other members is determined by the * value of "op" as follows: * * (op == TK_INSERT) * orconf -> stores the ON CONFLICT algorithm * pSelect -> If this is an INSERT INTO ... SELECT ... statement, then * this stores a pointer to the SELECT statement. Otherwise NULL. * zTarget -> Dequoted name of the table to insert into. * pExprList -> If this is an INSERT INTO ... VALUES ... statement, then * this stores values to be inserted. Otherwise NULL. * pIdList -> If this is an INSERT INTO ... () VALUES ... * statement, then this stores the column-names to be * inserted into. * * (op == TK_DELETE) * zTarget -> Dequoted name of the table to delete from. * pWhere -> The WHERE clause of the DELETE statement if one is specified. * Otherwise NULL. * * (op == TK_UPDATE) * zTarget -> Dequoted name of the table to update. * pWhere -> The WHERE clause of the UPDATE statement if one is specified. * Otherwise NULL. * pExprList -> A list of the columns to update and the expressions to update * them to. See sqlite3Update() documentation of "pChanges" * argument. * */ struct TriggerStep { u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT, TK_SELECT, ** or TK_RETURNING */ u8 orconf; /* OE_Rollback etc. */ Trigger *pTrig; /* The trigger that this step is a part of */ Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */ char *zTarget; /* Target table for DELETE, UPDATE, INSERT */ SrcList *pFrom; /* FROM clause for UPDATE statement (if any) */ Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ ExprList *pExprList; /* SET clause for UPDATE, or RETURNING clause */ IdList *pIdList; /* Column names for INSERT */ Upsert *pUpsert; /* Upsert clauses on an INSERT */ char *zSpan; /* Original SQL text of this command */ TriggerStep *pNext; /* Next in the link-list */ TriggerStep *pLast; /* Last element in link-list. Valid for 1st elem only */ }; /* ** Information about a RETURNING clause */ struct Returning { Parse *pParse; /* The parse that includes the RETURNING clause */ ExprList *pReturnEL; /* List of expressions to return */ Trigger retTrig; /* The transient trigger that implements RETURNING */ TriggerStep retTStep; /* The trigger step */ int iRetCur; /* Transient table holding RETURNING results */ int nRetCol; /* Number of in pReturnEL after expansion */ int iRetReg; /* Register array for holding a row of RETURNING */ }; /* ** An objected used to accumulate the text of a string where we ** do not necessarily know how big the string will be in the end. */ struct sqlite3_str { sqlite3 *db; /* Optional database for lookaside. Can be NULL */ char *zText; /* The string collected so far */ u32 nAlloc; /* Amount of space allocated in zText */ u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */ u32 nChar; /* Length of the string so far */ u8 accError; /* SQLITE_NOMEM or SQLITE_TOOBIG */ u8 printfFlags; /* SQLITE_PRINTF flags below */ }; #define SQLITE_PRINTF_INTERNAL 0x01 /* Internal-use-only converters allowed */ #define SQLITE_PRINTF_SQLFUNC 0x02 /* SQL function arguments to VXPrintf */ #define SQLITE_PRINTF_MALLOCED 0x04 /* True if xText is allocated space */ #define isMalloced(X) (((X)->printfFlags & SQLITE_PRINTF_MALLOCED)!=0) /* ** A pointer to this structure is used to communicate information ** from sqlite3Init and OP_ParseSchema into the sqlite3InitCallback. */ typedef struct { sqlite3 *db; /* The database being initialized */ char **pzErrMsg; /* Error message stored here */ int iDb; /* 0 for main database. 1 for TEMP, 2.. for ATTACHed */ int rc; /* Result code stored here */ u32 mInitFlags; /* Flags controlling error messages */ u32 nInitRow; /* Number of rows processed */ Pgno mxPage; /* Maximum page number. 0 for no limit. */ } InitData; /* ** Allowed values for mInitFlags */ #define INITFLAG_AlterMask 0x0003 /* Types of ALTER */ #define INITFLAG_AlterRename 0x0001 /* Reparse after a RENAME */ #define INITFLAG_AlterDrop 0x0002 /* Reparse after a DROP COLUMN */ #define INITFLAG_AlterAdd 0x0003 /* Reparse after an ADD COLUMN */ /* Tuning parameters are set using SQLITE_TESTCTRL_TUNE and are controlled ** on debug-builds of the CLI using ".testctrl tune ID VALUE". Tuning ** parameters are for temporary use during development, to help find ** optimial values for parameters in the query planner. The should not ** be used on trunk check-ins. They are a temporary mechanism available ** for transient development builds only. ** ** Tuning parameters are numbered starting with 1. */ #define SQLITE_NTUNE 6 /* Should be zero for all trunk check-ins */ #ifdef SQLITE_DEBUG # define Tuning(X) (sqlite3Config.aTune[(X)-1]) #else # define Tuning(X) 0 #endif /* ** Structure containing global configuration data for the SQLite library. ** ** This structure also contains some state information. */ struct Sqlite3Config { int bMemstat; /* True to enable memory status */ u8 bCoreMutex; /* True to enable core mutexing */ u8 bFullMutex; /* True to enable full mutexing */ u8 bOpenUri; /* True to interpret filenames as URIs */ u8 bUseCis; /* Use covering indices for full-scans */ u8 bSmallMalloc; /* Avoid large memory allocations if true */ u8 bExtraSchemaChecks; /* Verify type,name,tbl_name in schema */ int mxStrlen; /* Maximum string length */ int neverCorrupt; /* Database is always well-formed */ int szLookaside; /* Default lookaside buffer size */ int nLookaside; /* Default lookaside buffer count */ int nStmtSpill; /* Stmt-journal spill-to-disk threshold */ sqlite3_mem_methods m; /* Low-level memory allocation interface */ sqlite3_mutex_methods mutex; /* Low-level mutex interface */ sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */ void *pHeap; /* Heap storage space */ int nHeap; /* Size of pHeap[] */ int mnReq, mxReq; /* Min and max heap requests sizes */ sqlite3_int64 szMmap; /* mmap() space per open file */ sqlite3_int64 mxMmap; /* Maximum value for szMmap */ void *pPage; /* Page cache memory */ int szPage; /* Size of each page in pPage[] */ int nPage; /* Number of pages in pPage[] */ int mxParserStack; /* maximum depth of the parser stack */ int sharedCacheEnabled; /* true if shared-cache mode enabled */ u32 szPma; /* Maximum Sorter PMA size */ /* The above might be initialized to non-zero. The following need to always ** initially be zero, however. */ int isInit; /* True after initialization has finished */ int inProgress; /* True while initialization in progress */ int isMutexInit; /* True after mutexes are initialized */ int isMallocInit; /* True after malloc is initialized */ int isPCacheInit; /* True after malloc is initialized */ int nRefInitMutex; /* Number of users of pInitMutex */ sqlite3_mutex *pInitMutex; /* Mutex used by sqlite3_initialize() */ void (*xLog)(void*,int,const char*); /* Function for logging */ void *pLogArg; /* First argument to xLog() */ #ifdef SQLITE_ENABLE_SQLLOG void(*xSqllog)(void*,sqlite3*,const char*, int); void *pSqllogArg; #endif #ifdef SQLITE_VDBE_COVERAGE /* The following callback (if not NULL) is invoked on every VDBE branch ** operation. Set the callback using SQLITE_TESTCTRL_VDBE_COVERAGE. */ void (*xVdbeBranch)(void*,unsigned iSrcLine,u8 eThis,u8 eMx); /* Callback */ void *pVdbeBranchArg; /* 1st argument */ #endif #ifndef SQLITE_OMIT_DESERIALIZE sqlite3_int64 mxMemdbSize; /* Default max memdb size */ #endif #ifndef SQLITE_UNTESTABLE int (*xTestCallback)(int); /* Invoked by sqlite3FaultSim() */ #endif int bLocaltimeFault; /* True to fail localtime() calls */ int (*xAltLocaltime)(const void*,void*); /* Alternative localtime() routine */ int iOnceResetThreshold; /* When to reset OP_Once counters */ u32 szSorterRef; /* Min size in bytes to use sorter-refs */ unsigned int iPrngSeed; /* Alternative fixed seed for the PRNG */ /* vvvv--- must be last ---vvv */ #ifdef SQLITE_DEBUG sqlite3_int64 aTune[SQLITE_NTUNE]; /* Tuning parameters */ #endif }; /* ** This macro is used inside of assert() statements to indicate that ** the assert is only valid on a well-formed database. Instead of: ** ** assert( X ); ** ** One writes: ** ** assert( X || CORRUPT_DB ); ** ** CORRUPT_DB is true during normal operation. CORRUPT_DB does not indicate ** that the database is definitely corrupt, only that it might be corrupt. ** For most test cases, CORRUPT_DB is set to false using a special ** sqlite3_test_control(). This enables assert() statements to prove ** things that are always true for well-formed databases. */ #define CORRUPT_DB (sqlite3Config.neverCorrupt==0) /* ** Context pointer passed down through the tree-walk. */ struct Walker { Parse *pParse; /* Parser context. */ int (*xExprCallback)(Walker*, Expr*); /* Callback for expressions */ int (*xSelectCallback)(Walker*,Select*); /* Callback for SELECTs */ void (*xSelectCallback2)(Walker*,Select*);/* Second callback for SELECTs */ int walkerDepth; /* Number of subqueries */ u16 eCode; /* A small processing code */ union { /* Extra data for callback */ NameContext *pNC; /* Naming context */ int n; /* A counter */ int iCur; /* A cursor number */ SrcList *pSrcList; /* FROM clause */ struct CCurHint *pCCurHint; /* Used by codeCursorHint() */ struct RefSrcList *pRefSrcList; /* sqlite3ReferencesSrcList() */ int *aiCol; /* array of column indexes */ struct IdxCover *pIdxCover; /* Check for index coverage */ struct IdxExprTrans *pIdxTrans; /* Convert idxed expr to column */ ExprList *pGroupBy; /* GROUP BY clause */ Select *pSelect; /* HAVING to WHERE clause ctx */ struct WindowRewrite *pRewrite; /* Window rewrite context */ struct WhereConst *pConst; /* WHERE clause constants */ struct RenameCtx *pRename; /* RENAME COLUMN context */ struct Table *pTab; /* Table of generated column */ SrcItem *pSrcItem; /* A single FROM clause item */ DbFixer *pFix; } u; }; /* ** The following structure contains information used by the sqliteFix... ** routines as they walk the parse tree to make database references ** explicit. */ struct DbFixer { Parse *pParse; /* The parsing context. Error messages written here */ Walker w; /* Walker object */ Schema *pSchema; /* Fix items to this schema */ u8 bTemp; /* True for TEMP schema entries */ const char *zDb; /* Make sure all objects are contained in this database */ const char *zType; /* Type of the container - used for error messages */ const Token *pName; /* Name of the container - used for error messages */ }; /* Forward declarations */ SQLITE_PRIVATE int sqlite3WalkExpr(Walker*, Expr*); SQLITE_PRIVATE int sqlite3WalkExprList(Walker*, ExprList*); SQLITE_PRIVATE int sqlite3WalkSelect(Walker*, Select*); SQLITE_PRIVATE int sqlite3WalkSelectExpr(Walker*, Select*); SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker*, Select*); SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker*, Expr*); SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker*, Select*); SQLITE_PRIVATE int sqlite3SelectWalkFail(Walker*, Select*); SQLITE_PRIVATE int sqlite3WalkerDepthIncrease(Walker*,Select*); SQLITE_PRIVATE void sqlite3WalkerDepthDecrease(Walker*,Select*); SQLITE_PRIVATE void sqlite3WalkWinDefnDummyCallback(Walker*,Select*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3SelectWalkAssert2(Walker*, Select*); #endif #ifndef SQLITE_OMIT_CTE SQLITE_PRIVATE void sqlite3SelectPopWith(Walker*, Select*); #else # define sqlite3SelectPopWith 0 #endif /* ** Return code from the parse-tree walking primitives and their ** callbacks. */ #define WRC_Continue 0 /* Continue down into children */ #define WRC_Prune 1 /* Omit children but continue walking siblings */ #define WRC_Abort 2 /* Abandon the tree walk */ /* ** A single common table expression */ struct Cte { char *zName; /* Name of this CTE */ ExprList *pCols; /* List of explicit column names, or NULL */ Select *pSelect; /* The definition of this CTE */ const char *zCteErr; /* Error message for circular references */ CteUse *pUse; /* Usage information for this CTE */ u8 eM10d; /* The MATERIALIZED flag */ }; /* ** Allowed values for the materialized flag (eM10d): */ #define M10d_Yes 0 /* AS MATERIALIZED */ #define M10d_Any 1 /* Not specified. Query planner's choice */ #define M10d_No 2 /* AS NOT MATERIALIZED */ /* ** An instance of the With object represents a WITH clause containing ** one or more CTEs (common table expressions). */ struct With { int nCte; /* Number of CTEs in the WITH clause */ int bView; /* Belongs to the outermost Select of a view */ With *pOuter; /* Containing WITH clause, or NULL */ Cte a[1]; /* For each CTE in the WITH clause.... */ }; /* ** The Cte object is not guaranteed to persist for the entire duration ** of code generation. (The query flattener or other parser tree ** edits might delete it.) The following object records information ** about each Common Table Expression that must be preserved for the ** duration of the parse. ** ** The CteUse objects are freed using sqlite3ParserAddCleanup() rather ** than sqlite3SelectDelete(), which is what enables them to persist ** until the end of code generation. */ struct CteUse { int nUse; /* Number of users of this CTE */ int addrM9e; /* Start of subroutine to compute materialization */ int regRtn; /* Return address register for addrM9e subroutine */ int iCur; /* Ephemeral table holding the materialization */ LogEst nRowEst; /* Estimated number of rows in the table */ u8 eM10d; /* The MATERIALIZED flag */ }; #ifdef SQLITE_DEBUG /* ** An instance of the TreeView object is used for printing the content of ** data structures on sqlite3DebugPrintf() using a tree-like view. */ struct TreeView { int iLevel; /* Which level of the tree we are on */ u8 bLine[100]; /* Draw vertical in column i if bLine[i] is true */ }; #endif /* SQLITE_DEBUG */ /* ** This object is used in various ways, most (but not all) related to window ** functions. ** ** (1) A single instance of this structure is attached to the ** the Expr.y.pWin field for each window function in an expression tree. ** This object holds the information contained in the OVER clause, ** plus additional fields used during code generation. ** ** (2) All window functions in a single SELECT form a linked-list ** attached to Select.pWin. The Window.pFunc and Window.pExpr ** fields point back to the expression that is the window function. ** ** (3) The terms of the WINDOW clause of a SELECT are instances of this ** object on a linked list attached to Select.pWinDefn. ** ** (4) For an aggregate function with a FILTER clause, an instance ** of this object is stored in Expr.y.pWin with eFrmType set to ** TK_FILTER. In this case the only field used is Window.pFilter. ** ** The uses (1) and (2) are really the same Window object that just happens ** to be accessible in two different ways. Use case (3) are separate objects. */ struct Window { char *zName; /* Name of window (may be NULL) */ char *zBase; /* Name of base window for chaining (may be NULL) */ ExprList *pPartition; /* PARTITION BY clause */ ExprList *pOrderBy; /* ORDER BY clause */ u8 eFrmType; /* TK_RANGE, TK_GROUPS, TK_ROWS, or 0 */ u8 eStart; /* UNBOUNDED, CURRENT, PRECEDING or FOLLOWING */ u8 eEnd; /* UNBOUNDED, CURRENT, PRECEDING or FOLLOWING */ u8 bImplicitFrame; /* True if frame was implicitly specified */ u8 eExclude; /* TK_NO, TK_CURRENT, TK_TIES, TK_GROUP, or 0 */ Expr *pStart; /* Expression for " PRECEDING" */ Expr *pEnd; /* Expression for " FOLLOWING" */ Window **ppThis; /* Pointer to this object in Select.pWin list */ Window *pNextWin; /* Next window function belonging to this SELECT */ Expr *pFilter; /* The FILTER expression */ FuncDef *pFunc; /* The function */ int iEphCsr; /* Partition buffer or Peer buffer */ int regAccum; /* Accumulator */ int regResult; /* Interim result */ int csrApp; /* Function cursor (used by min/max) */ int regApp; /* Function register (also used by min/max) */ int regPart; /* Array of registers for PARTITION BY values */ Expr *pOwner; /* Expression object this window is attached to */ int nBufferCol; /* Number of columns in buffer table */ int iArgCol; /* Offset of first argument for this function */ int regOne; /* Register containing constant value 1 */ int regStartRowid; int regEndRowid; u8 bExprArgs; /* Defer evaluation of window function arguments ** due to the SQLITE_SUBTYPE flag */ }; #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE void sqlite3WindowDelete(sqlite3*, Window*); SQLITE_PRIVATE void sqlite3WindowUnlinkFromSelect(Window*); SQLITE_PRIVATE void sqlite3WindowListDelete(sqlite3 *db, Window *p); SQLITE_PRIVATE Window *sqlite3WindowAlloc(Parse*, int, int, Expr*, int , Expr*, u8); SQLITE_PRIVATE void sqlite3WindowAttach(Parse*, Expr*, Window*); SQLITE_PRIVATE void sqlite3WindowLink(Select *pSel, Window *pWin); SQLITE_PRIVATE int sqlite3WindowCompare(const Parse*, const Window*, const Window*, int); SQLITE_PRIVATE void sqlite3WindowCodeInit(Parse*, Select*); SQLITE_PRIVATE void sqlite3WindowCodeStep(Parse*, Select*, WhereInfo*, int, int); SQLITE_PRIVATE int sqlite3WindowRewrite(Parse*, Select*); SQLITE_PRIVATE void sqlite3WindowUpdate(Parse*, Window*, Window*, FuncDef*); SQLITE_PRIVATE Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p); SQLITE_PRIVATE Window *sqlite3WindowListDup(sqlite3 *db, Window *p); SQLITE_PRIVATE void sqlite3WindowFunctions(void); SQLITE_PRIVATE void sqlite3WindowChain(Parse*, Window*, Window*); SQLITE_PRIVATE Window *sqlite3WindowAssemble(Parse*, Window*, ExprList*, ExprList*, Token*); #else # define sqlite3WindowDelete(a,b) # define sqlite3WindowFunctions() # define sqlite3WindowAttach(a,b,c) #endif /* ** Assuming zIn points to the first byte of a UTF-8 character, ** advance zIn to point to the first byte of the next UTF-8 character. */ #define SQLITE_SKIP_UTF8(zIn) { \ if( (*(zIn++))>=0xc0 ){ \ while( (*zIn & 0xc0)==0x80 ){ zIn++; } \ } \ } /* ** The SQLITE_*_BKPT macros are substitutes for the error codes with ** the same name but without the _BKPT suffix. These macros invoke ** routines that report the line-number on which the error originated ** using sqlite3_log(). The routines also provide a convenient place ** to set a debugger breakpoint. */ SQLITE_PRIVATE int sqlite3ReportError(int iErr, int lineno, const char *zType); SQLITE_PRIVATE int sqlite3CorruptError(int); SQLITE_PRIVATE int sqlite3MisuseError(int); SQLITE_PRIVATE int sqlite3CantopenError(int); #define SQLITE_CORRUPT_BKPT sqlite3CorruptError(__LINE__) #define SQLITE_MISUSE_BKPT sqlite3MisuseError(__LINE__) #define SQLITE_CANTOPEN_BKPT sqlite3CantopenError(__LINE__) #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NomemError(int); SQLITE_PRIVATE int sqlite3IoerrnomemError(int); # define SQLITE_NOMEM_BKPT sqlite3NomemError(__LINE__) # define SQLITE_IOERR_NOMEM_BKPT sqlite3IoerrnomemError(__LINE__) #else # define SQLITE_NOMEM_BKPT SQLITE_NOMEM # define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM #endif #if defined(SQLITE_DEBUG) || defined(SQLITE_ENABLE_CORRUPT_PGNO) SQLITE_PRIVATE int sqlite3CorruptPgnoError(int,Pgno); # define SQLITE_CORRUPT_PGNO(P) sqlite3CorruptPgnoError(__LINE__,(P)) #else # define SQLITE_CORRUPT_PGNO(P) sqlite3CorruptError(__LINE__) #endif /* ** FTS3 and FTS4 both require virtual table support */ #if defined(SQLITE_OMIT_VIRTUALTABLE) # undef SQLITE_ENABLE_FTS3 # undef SQLITE_ENABLE_FTS4 #endif /* ** FTS4 is really an extension for FTS3. It is enabled using the ** SQLITE_ENABLE_FTS3 macro. But to avoid confusion we also call ** the SQLITE_ENABLE_FTS4 macro to serve as an alias for SQLITE_ENABLE_FTS3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) # define SQLITE_ENABLE_FTS3 1 #endif /* ** The ctype.h header is needed for non-ASCII systems. It is also ** needed by FTS3 when FTS3 is included in the amalgamation. */ #if !defined(SQLITE_ASCII) || \ (defined(SQLITE_ENABLE_FTS3) && defined(SQLITE_AMALGAMATION)) # include #endif /* ** The following macros mimic the standard library functions toupper(), ** isspace(), isalnum(), isdigit() and isxdigit(), respectively. The ** sqlite versions only work for ASCII characters, regardless of locale. */ #ifdef SQLITE_ASCII # define sqlite3Toupper(x) ((x)&~(sqlite3CtypeMap[(unsigned char)(x)]&0x20)) # define sqlite3Isspace(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x01) # define sqlite3Isalnum(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x06) # define sqlite3Isalpha(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x02) # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) # define sqlite3Isxdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x08) # define sqlite3Tolower(x) (sqlite3UpperToLower[(unsigned char)(x)]) # define sqlite3Isquote(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x80) #else # define sqlite3Toupper(x) toupper((unsigned char)(x)) # define sqlite3Isspace(x) isspace((unsigned char)(x)) # define sqlite3Isalnum(x) isalnum((unsigned char)(x)) # define sqlite3Isalpha(x) isalpha((unsigned char)(x)) # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) # define sqlite3Isxdigit(x) isxdigit((unsigned char)(x)) # define sqlite3Tolower(x) tolower((unsigned char)(x)) # define sqlite3Isquote(x) ((x)=='"'||(x)=='\''||(x)=='['||(x)=='`') #endif SQLITE_PRIVATE int sqlite3IsIdChar(u8); /* ** Internal function prototypes */ SQLITE_PRIVATE int sqlite3StrICmp(const char*,const char*); SQLITE_PRIVATE int sqlite3Strlen30(const char*); #define sqlite3Strlen30NN(C) (strlen(C)&0x3fffffff) SQLITE_PRIVATE char *sqlite3ColumnType(Column*,char*); #define sqlite3StrNICmp sqlite3_strnicmp SQLITE_PRIVATE int sqlite3MallocInit(void); SQLITE_PRIVATE void sqlite3MallocEnd(void); SQLITE_PRIVATE void *sqlite3Malloc(u64); SQLITE_PRIVATE void *sqlite3MallocZero(u64); SQLITE_PRIVATE void *sqlite3DbMallocZero(sqlite3*, u64); SQLITE_PRIVATE void *sqlite3DbMallocRaw(sqlite3*, u64); SQLITE_PRIVATE void *sqlite3DbMallocRawNN(sqlite3*, u64); SQLITE_PRIVATE char *sqlite3DbStrDup(sqlite3*,const char*); SQLITE_PRIVATE char *sqlite3DbStrNDup(sqlite3*,const char*, u64); SQLITE_PRIVATE char *sqlite3DbSpanDup(sqlite3*,const char*,const char*); SQLITE_PRIVATE void *sqlite3Realloc(void*, u64); SQLITE_PRIVATE void *sqlite3DbReallocOrFree(sqlite3 *, void *, u64); SQLITE_PRIVATE void *sqlite3DbRealloc(sqlite3 *, void *, u64); SQLITE_PRIVATE void sqlite3DbFree(sqlite3*, void*); SQLITE_PRIVATE void sqlite3DbFreeNN(sqlite3*, void*); SQLITE_PRIVATE int sqlite3MallocSize(const void*); SQLITE_PRIVATE int sqlite3DbMallocSize(sqlite3*, const void*); SQLITE_PRIVATE void *sqlite3PageMalloc(int); SQLITE_PRIVATE void sqlite3PageFree(void*); SQLITE_PRIVATE void sqlite3MemSetDefault(void); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3BenignMallocHooks(void (*)(void), void (*)(void)); #endif SQLITE_PRIVATE int sqlite3HeapNearlyFull(void); /* ** On systems with ample stack space and that support alloca(), make ** use of alloca() to obtain space for large automatic objects. By default, ** obtain space from malloc(). ** ** The alloca() routine never returns NULL. This will cause code paths ** that deal with sqlite3StackAlloc() failures to be unreachable. */ #ifdef SQLITE_USE_ALLOCA # define sqlite3StackAllocRaw(D,N) alloca(N) # define sqlite3StackAllocZero(D,N) memset(alloca(N), 0, N) # define sqlite3StackFree(D,P) #else # define sqlite3StackAllocRaw(D,N) sqlite3DbMallocRaw(D,N) # define sqlite3StackAllocZero(D,N) sqlite3DbMallocZero(D,N) # define sqlite3StackFree(D,P) sqlite3DbFree(D,P) #endif /* Do not allow both MEMSYS5 and MEMSYS3 to be defined together. If they ** are, disable MEMSYS3 */ #ifdef SQLITE_ENABLE_MEMSYS5 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void); #undef SQLITE_ENABLE_MEMSYS3 #endif #ifdef SQLITE_ENABLE_MEMSYS3 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void); #endif #ifndef SQLITE_MUTEX_OMIT SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void); SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void); SQLITE_PRIVATE sqlite3_mutex *sqlite3MutexAlloc(int); SQLITE_PRIVATE int sqlite3MutexInit(void); SQLITE_PRIVATE int sqlite3MutexEnd(void); #endif #if !defined(SQLITE_MUTEX_OMIT) && !defined(SQLITE_MUTEX_NOOP) SQLITE_PRIVATE void sqlite3MemoryBarrier(void); #else # define sqlite3MemoryBarrier() #endif SQLITE_PRIVATE sqlite3_int64 sqlite3StatusValue(int); SQLITE_PRIVATE void sqlite3StatusUp(int, int); SQLITE_PRIVATE void sqlite3StatusDown(int, int); SQLITE_PRIVATE void sqlite3StatusHighwater(int, int); SQLITE_PRIVATE int sqlite3LookasideUsed(sqlite3*,int*); /* Access to mutexes used by sqlite3_status() */ SQLITE_PRIVATE sqlite3_mutex *sqlite3Pcache1Mutex(void); SQLITE_PRIVATE sqlite3_mutex *sqlite3MallocMutex(void); #if defined(SQLITE_ENABLE_MULTITHREADED_CHECKS) && !defined(SQLITE_MUTEX_OMIT) SQLITE_PRIVATE void sqlite3MutexWarnOnContention(sqlite3_mutex*); #else # define sqlite3MutexWarnOnContention(x) #endif #ifndef SQLITE_OMIT_FLOATING_POINT # define EXP754 (((u64)0x7ff)<<52) # define MAN754 ((((u64)1)<<52)-1) # define IsNaN(X) (((X)&EXP754)==EXP754 && ((X)&MAN754)!=0) SQLITE_PRIVATE int sqlite3IsNaN(double); #else # define IsNaN(X) 0 # define sqlite3IsNaN(X) 0 #endif /* ** An instance of the following structure holds information about SQL ** functions arguments that are the parameters to the printf() function. */ struct PrintfArguments { int nArg; /* Total number of arguments */ int nUsed; /* Number of arguments used so far */ sqlite3_value **apArg; /* The argument values */ }; SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3*,const char*, ...); SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3*,const char*, va_list); #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) SQLITE_PRIVATE void sqlite3DebugPrintf(const char*, ...); #endif #if defined(SQLITE_TEST) SQLITE_PRIVATE void *sqlite3TestTextToPtr(const char*); #endif #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3TreeViewExpr(TreeView*, const Expr*, u8); SQLITE_PRIVATE void sqlite3TreeViewBareExprList(TreeView*, const ExprList*, const char*); SQLITE_PRIVATE void sqlite3TreeViewExprList(TreeView*, const ExprList*, u8, const char*); SQLITE_PRIVATE void sqlite3TreeViewSrcList(TreeView*, const SrcList*); SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView*, const Select*, u8); SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView*, const With*, u8); #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE void sqlite3TreeViewWindow(TreeView*, const Window*, u8); SQLITE_PRIVATE void sqlite3TreeViewWinFunc(TreeView*, const Window*, u8); #endif #endif SQLITE_PRIVATE void sqlite3SetString(char **, sqlite3*, const char*); SQLITE_PRIVATE void sqlite3ErrorMsg(Parse*, const char*, ...); SQLITE_PRIVATE int sqlite3ErrorToParser(sqlite3*,int); SQLITE_PRIVATE void sqlite3Dequote(char*); SQLITE_PRIVATE void sqlite3DequoteExpr(Expr*); SQLITE_PRIVATE void sqlite3DequoteToken(Token*); SQLITE_PRIVATE void sqlite3TokenInit(Token*,char*); SQLITE_PRIVATE int sqlite3KeywordCode(const unsigned char*, int); SQLITE_PRIVATE int sqlite3RunParser(Parse*, const char*); SQLITE_PRIVATE void sqlite3FinishCoding(Parse*); SQLITE_PRIVATE int sqlite3GetTempReg(Parse*); SQLITE_PRIVATE void sqlite3ReleaseTempReg(Parse*,int); SQLITE_PRIVATE int sqlite3GetTempRange(Parse*,int); SQLITE_PRIVATE void sqlite3ReleaseTempRange(Parse*,int,int); SQLITE_PRIVATE void sqlite3ClearTempRegCache(Parse*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NoTempsInRange(Parse*,int,int); #endif SQLITE_PRIVATE Expr *sqlite3ExprAlloc(sqlite3*,int,const Token*,int); SQLITE_PRIVATE Expr *sqlite3Expr(sqlite3*,int,const char*); SQLITE_PRIVATE void sqlite3ExprAttachSubtrees(sqlite3*,Expr*,Expr*,Expr*); SQLITE_PRIVATE Expr *sqlite3PExpr(Parse*, int, Expr*, Expr*); SQLITE_PRIVATE void sqlite3PExprAddSelect(Parse*, Expr*, Select*); SQLITE_PRIVATE Expr *sqlite3ExprAnd(Parse*,Expr*, Expr*); SQLITE_PRIVATE Expr *sqlite3ExprSimplifiedAndOr(Expr*); SQLITE_PRIVATE Expr *sqlite3ExprFunction(Parse*,ExprList*, const Token*, int); SQLITE_PRIVATE void sqlite3ExprFunctionUsable(Parse*,const Expr*,const FuncDef*); SQLITE_PRIVATE void sqlite3ExprAssignVarNumber(Parse*, Expr*, u32); SQLITE_PRIVATE void sqlite3ExprDelete(sqlite3*, Expr*); SQLITE_PRIVATE void sqlite3ExprDeferredDelete(Parse*, Expr*); SQLITE_PRIVATE void sqlite3ExprUnmapAndDelete(Parse*, Expr*); SQLITE_PRIVATE ExprList *sqlite3ExprListAppend(Parse*,ExprList*,Expr*); SQLITE_PRIVATE ExprList *sqlite3ExprListAppendVector(Parse*,ExprList*,IdList*,Expr*); SQLITE_PRIVATE Select *sqlite3ExprListToValues(Parse*, int, ExprList*); SQLITE_PRIVATE void sqlite3ExprListSetSortOrder(ExprList*,int,int); SQLITE_PRIVATE void sqlite3ExprListSetName(Parse*,ExprList*,const Token*,int); SQLITE_PRIVATE void sqlite3ExprListSetSpan(Parse*,ExprList*,const char*,const char*); SQLITE_PRIVATE void sqlite3ExprListDelete(sqlite3*, ExprList*); SQLITE_PRIVATE u32 sqlite3ExprListFlags(const ExprList*); SQLITE_PRIVATE int sqlite3IndexHasDuplicateRootPage(Index*); SQLITE_PRIVATE int sqlite3Init(sqlite3*, char**); SQLITE_PRIVATE int sqlite3InitCallback(void*, int, char**, char**); SQLITE_PRIVATE int sqlite3InitOne(sqlite3*, int, char**, u32); SQLITE_PRIVATE void sqlite3Pragma(Parse*,Token*,Token*,Token*,int); #ifndef SQLITE_OMIT_VIRTUALTABLE SQLITE_PRIVATE Module *sqlite3PragmaVtabRegister(sqlite3*,const char *zName); #endif SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3*); SQLITE_PRIVATE void sqlite3ResetOneSchema(sqlite3*,int); SQLITE_PRIVATE void sqlite3CollapseDatabaseArray(sqlite3*); SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3*); SQLITE_PRIVATE void sqlite3ColumnSetExpr(Parse*,Table*,Column*,Expr*); SQLITE_PRIVATE Expr *sqlite3ColumnExpr(Table*,Column*); SQLITE_PRIVATE void sqlite3ColumnSetColl(sqlite3*,Column*,const char*zColl); SQLITE_PRIVATE const char *sqlite3ColumnColl(Column*); SQLITE_PRIVATE void sqlite3DeleteColumnNames(sqlite3*,Table*); SQLITE_PRIVATE void sqlite3GenerateColumnNames(Parse *pParse, Select *pSelect); SQLITE_PRIVATE int sqlite3ColumnsFromExprList(Parse*,ExprList*,i16*,Column**); SQLITE_PRIVATE void sqlite3SelectAddColumnTypeAndCollation(Parse*,Table*,Select*,char); SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse*,Select*,char); SQLITE_PRIVATE void sqlite3OpenSchemaTable(Parse *, int); SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table*); SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index*, i16); #ifdef SQLITE_OMIT_GENERATED_COLUMNS # define sqlite3TableColumnToStorage(T,X) (X) /* No-op pass-through */ # define sqlite3StorageColumnToTable(T,X) (X) /* No-op pass-through */ #else SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table*, i16); SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table*, i16); #endif SQLITE_PRIVATE void sqlite3StartTable(Parse*,Token*,Token*,int,int,int,int); #if SQLITE_ENABLE_HIDDEN_COLUMNS SQLITE_PRIVATE void sqlite3ColumnPropertiesFromName(Table*, Column*); #else # define sqlite3ColumnPropertiesFromName(T,C) /* no-op */ #endif SQLITE_PRIVATE void sqlite3AddColumn(Parse*,Token,Token); SQLITE_PRIVATE void sqlite3AddNotNull(Parse*, int); SQLITE_PRIVATE void sqlite3AddPrimaryKey(Parse*, ExprList*, int, int, int); SQLITE_PRIVATE void sqlite3AddCheckConstraint(Parse*, Expr*, const char*, const char*); SQLITE_PRIVATE void sqlite3AddDefaultValue(Parse*,Expr*,const char*,const char*); SQLITE_PRIVATE void sqlite3AddCollateType(Parse*, Token*); SQLITE_PRIVATE void sqlite3AddGenerated(Parse*,Expr*,Token*); SQLITE_PRIVATE void sqlite3EndTable(Parse*,Token*,Token*,u32,Select*); SQLITE_PRIVATE void sqlite3AddReturning(Parse*,ExprList*); SQLITE_PRIVATE int sqlite3ParseUri(const char*,const char*,unsigned int*, sqlite3_vfs**,char**,char **); #define sqlite3CodecQueryParameters(A,B,C) 0 SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3*,const char*); #ifdef SQLITE_UNTESTABLE # define sqlite3FaultSim(X) SQLITE_OK #else SQLITE_PRIVATE int sqlite3FaultSim(int); #endif SQLITE_PRIVATE Bitvec *sqlite3BitvecCreate(u32); SQLITE_PRIVATE int sqlite3BitvecTest(Bitvec*, u32); SQLITE_PRIVATE int sqlite3BitvecTestNotNull(Bitvec*, u32); SQLITE_PRIVATE int sqlite3BitvecSet(Bitvec*, u32); SQLITE_PRIVATE void sqlite3BitvecClear(Bitvec*, u32, void*); SQLITE_PRIVATE void sqlite3BitvecDestroy(Bitvec*); SQLITE_PRIVATE u32 sqlite3BitvecSize(Bitvec*); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int,int*); #endif SQLITE_PRIVATE RowSet *sqlite3RowSetInit(sqlite3*); SQLITE_PRIVATE void sqlite3RowSetDelete(void*); SQLITE_PRIVATE void sqlite3RowSetClear(void*); SQLITE_PRIVATE void sqlite3RowSetInsert(RowSet*, i64); SQLITE_PRIVATE int sqlite3RowSetTest(RowSet*, int iBatch, i64); SQLITE_PRIVATE int sqlite3RowSetNext(RowSet*, i64*); SQLITE_PRIVATE void sqlite3CreateView(Parse*,Token*,Token*,Token*,ExprList*,Select*,int,int); #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) SQLITE_PRIVATE int sqlite3ViewGetColumnNames(Parse*,Table*); #else # define sqlite3ViewGetColumnNames(A,B) 0 #endif #if SQLITE_MAX_ATTACHED>30 SQLITE_PRIVATE int sqlite3DbMaskAllZero(yDbMask); #endif SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int); SQLITE_PRIVATE void sqlite3CodeDropTable(Parse*, Table*, int, int); SQLITE_PRIVATE void sqlite3DeleteTable(sqlite3*, Table*); SQLITE_PRIVATE void sqlite3FreeIndex(sqlite3*, Index*); #ifndef SQLITE_OMIT_AUTOINCREMENT SQLITE_PRIVATE void sqlite3AutoincrementBegin(Parse *pParse); SQLITE_PRIVATE void sqlite3AutoincrementEnd(Parse *pParse); #else # define sqlite3AutoincrementBegin(X) # define sqlite3AutoincrementEnd(X) #endif SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, Select*, IdList*, int, Upsert*); #ifndef SQLITE_OMIT_GENERATED_COLUMNS SQLITE_PRIVATE void sqlite3ComputeGeneratedColumns(Parse*, int, Table*); #endif SQLITE_PRIVATE void *sqlite3ArrayAllocate(sqlite3*,void*,int,int*,int*); SQLITE_PRIVATE IdList *sqlite3IdListAppend(Parse*, IdList*, Token*); SQLITE_PRIVATE int sqlite3IdListIndex(IdList*,const char*); SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(Parse*, SrcList*, int, int); SQLITE_PRIVATE SrcList *sqlite3SrcListAppendList(Parse *pParse, SrcList *p1, SrcList *p2); SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(Parse*, SrcList*, Token*, Token*); SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(Parse*, SrcList*, Token*, Token*, Token*, Select*, Expr*, IdList*); SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *, SrcList *, Token *); SQLITE_PRIVATE void sqlite3SrcListFuncArgs(Parse*, SrcList*, ExprList*); SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse *, SrcItem *); SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList*); SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse*, SrcList*); SQLITE_PRIVATE void sqlite3IdListDelete(sqlite3*, IdList*); SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3*, SrcList*); SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3*,i16,int,char**); SQLITE_PRIVATE void sqlite3CreateIndex(Parse*,Token*,Token*,SrcList*,ExprList*,int,Token*, Expr*, int, int, u8); SQLITE_PRIVATE void sqlite3DropIndex(Parse*, SrcList*, int); SQLITE_PRIVATE int sqlite3Select(Parse*, Select*, SelectDest*); SQLITE_PRIVATE Select *sqlite3SelectNew(Parse*,ExprList*,SrcList*,Expr*,ExprList*, Expr*,ExprList*,u32,Expr*); SQLITE_PRIVATE void sqlite3SelectDelete(sqlite3*, Select*); SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse*, SrcList*); SQLITE_PRIVATE int sqlite3IsReadOnly(Parse*, Table*, int); SQLITE_PRIVATE void sqlite3OpenTable(Parse*, int iCur, int iDb, Table*, int); #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) SQLITE_PRIVATE Expr *sqlite3LimitWhere(Parse*,SrcList*,Expr*,ExprList*,Expr*,char*); #endif SQLITE_PRIVATE void sqlite3CodeChangeCount(Vdbe*,int,const char*); SQLITE_PRIVATE void sqlite3DeleteFrom(Parse*, SrcList*, Expr*, ExprList*, Expr*); SQLITE_PRIVATE void sqlite3Update(Parse*, SrcList*, ExprList*,Expr*,int,ExprList*,Expr*, Upsert*); SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*,SrcList*,Expr*,ExprList*, ExprList*,Select*,u16,int); SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo*); SQLITE_PRIVATE LogEst sqlite3WhereOutputRowCount(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereIsDistinct(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereIsOrdered(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereOrderByLimitOptLabel(WhereInfo*); SQLITE_PRIVATE void sqlite3WhereMinMaxOptEarlyOut(Vdbe*,WhereInfo*); SQLITE_PRIVATE int sqlite3WhereIsSorted(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereContinueLabel(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereBreakLabel(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereOkOnePass(WhereInfo*, int*); #define ONEPASS_OFF 0 /* Use of ONEPASS not allowed */ #define ONEPASS_SINGLE 1 /* ONEPASS valid for a single row update */ #define ONEPASS_MULTI 2 /* ONEPASS is valid for multiple rows */ SQLITE_PRIVATE int sqlite3WhereUsesDeferredSeek(WhereInfo*); SQLITE_PRIVATE void sqlite3ExprCodeLoadIndexColumn(Parse*, Index*, int, int, int); SQLITE_PRIVATE int sqlite3ExprCodeGetColumn(Parse*, Table*, int, int, int, u8); SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int); SQLITE_PRIVATE void sqlite3ExprCodeMove(Parse*, int, int, int); SQLITE_PRIVATE void sqlite3ExprCode(Parse*, Expr*, int); #ifndef SQLITE_OMIT_GENERATED_COLUMNS SQLITE_PRIVATE void sqlite3ExprCodeGeneratedColumn(Parse*, Table*, Column*, int); #endif SQLITE_PRIVATE void sqlite3ExprCodeCopy(Parse*, Expr*, int); SQLITE_PRIVATE void sqlite3ExprCodeFactorable(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCodeRunJustOnce(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCodeTemp(Parse*, Expr*, int*); SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCodeExprList(Parse*, ExprList*, int, int, u8); #define SQLITE_ECEL_DUP 0x01 /* Deep, not shallow copies */ #define SQLITE_ECEL_FACTOR 0x02 /* Factor out constant terms */ #define SQLITE_ECEL_REF 0x04 /* Use ExprList.u.x.iOrderByCol */ #define SQLITE_ECEL_OMITREF 0x08 /* Omit if ExprList.u.x.iOrderByCol */ SQLITE_PRIVATE void sqlite3ExprIfTrue(Parse*, Expr*, int, int); SQLITE_PRIVATE void sqlite3ExprIfFalse(Parse*, Expr*, int, int); SQLITE_PRIVATE void sqlite3ExprIfFalseDup(Parse*, Expr*, int, int); SQLITE_PRIVATE Table *sqlite3FindTable(sqlite3*,const char*, const char*); #define LOCATE_VIEW 0x01 #define LOCATE_NOERR 0x02 SQLITE_PRIVATE Table *sqlite3LocateTable(Parse*,u32 flags,const char*, const char*); SQLITE_PRIVATE const char *sqlite3PreferredTableName(const char*); SQLITE_PRIVATE Table *sqlite3LocateTableItem(Parse*,u32 flags,SrcItem *); SQLITE_PRIVATE Index *sqlite3FindIndex(sqlite3*,const char*, const char*); SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTable(sqlite3*,int,const char*); SQLITE_PRIVATE void sqlite3UnlinkAndDeleteIndex(sqlite3*,int,const char*); SQLITE_PRIVATE void sqlite3Vacuum(Parse*,Token*,Expr*); SQLITE_PRIVATE int sqlite3RunVacuum(char**, sqlite3*, int, sqlite3_value*); SQLITE_PRIVATE char *sqlite3NameFromToken(sqlite3*, const Token*); SQLITE_PRIVATE int sqlite3ExprCompare(const Parse*,const Expr*,const Expr*, int); SQLITE_PRIVATE int sqlite3ExprCompareSkip(Expr*,Expr*,int); SQLITE_PRIVATE int sqlite3ExprListCompare(const ExprList*,const ExprList*, int); SQLITE_PRIVATE int sqlite3ExprImpliesExpr(const Parse*,const Expr*,const Expr*, int); SQLITE_PRIVATE int sqlite3ExprImpliesNonNullRow(Expr*,int); SQLITE_PRIVATE void sqlite3AggInfoPersistWalkerInit(Walker*,Parse*); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext*, Expr*); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext*,ExprList*); SQLITE_PRIVATE int sqlite3ExprCoveredByIndex(Expr*, int iCur, Index *pIdx); SQLITE_PRIVATE int sqlite3ReferencesSrcList(Parse*, Expr*, SrcList*); SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse*); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3PrngSaveState(void); SQLITE_PRIVATE void sqlite3PrngRestoreState(void); #endif SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3*,int); SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse*, int); SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse*, const char *zDb); SQLITE_PRIVATE void sqlite3BeginTransaction(Parse*, int); SQLITE_PRIVATE void sqlite3EndTransaction(Parse*,int); SQLITE_PRIVATE void sqlite3Savepoint(Parse*, int, Token*); SQLITE_PRIVATE void sqlite3CloseSavepoints(sqlite3 *); SQLITE_PRIVATE void sqlite3LeaveMutexAndCloseZombie(sqlite3*); SQLITE_PRIVATE u32 sqlite3IsTrueOrFalse(const char*); SQLITE_PRIVATE int sqlite3ExprIdToTrueFalse(Expr*); SQLITE_PRIVATE int sqlite3ExprTruthValue(const Expr*); SQLITE_PRIVATE int sqlite3ExprIsConstant(Expr*); SQLITE_PRIVATE int sqlite3ExprIsConstantNotJoin(Expr*); SQLITE_PRIVATE int sqlite3ExprIsConstantOrFunction(Expr*, u8); SQLITE_PRIVATE int sqlite3ExprIsConstantOrGroupBy(Parse*, Expr*, ExprList*); SQLITE_PRIVATE int sqlite3ExprIsTableConstant(Expr*,int); #ifdef SQLITE_ENABLE_CURSOR_HINTS SQLITE_PRIVATE int sqlite3ExprContainsSubquery(Expr*); #endif SQLITE_PRIVATE int sqlite3ExprIsInteger(const Expr*, int*); SQLITE_PRIVATE int sqlite3ExprCanBeNull(const Expr*); SQLITE_PRIVATE int sqlite3ExprNeedsNoAffinityChange(const Expr*, char); SQLITE_PRIVATE int sqlite3IsRowid(const char*); SQLITE_PRIVATE void sqlite3GenerateRowDelete( Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int); SQLITE_PRIVATE void sqlite3GenerateRowIndexDelete(Parse*, Table*, int, int, int*, int); SQLITE_PRIVATE int sqlite3GenerateIndexKey(Parse*, Index*, int, int, int, int*,Index*,int); SQLITE_PRIVATE void sqlite3ResolvePartIdxLabel(Parse*,int); SQLITE_PRIVATE int sqlite3ExprReferencesUpdatedColumn(Expr*,int*,int); SQLITE_PRIVATE void sqlite3GenerateConstraintChecks(Parse*,Table*,int*,int,int,int,int, u8,u8,int,int*,int*,Upsert*); #ifdef SQLITE_ENABLE_NULL_TRIM SQLITE_PRIVATE void sqlite3SetMakeRecordP5(Vdbe*,Table*); #else # define sqlite3SetMakeRecordP5(A,B) #endif SQLITE_PRIVATE void sqlite3CompleteInsertion(Parse*,Table*,int,int,int,int*,int,int,int); SQLITE_PRIVATE int sqlite3OpenTableAndIndices(Parse*, Table*, int, u8, int, u8*, int*, int*); SQLITE_PRIVATE void sqlite3BeginWriteOperation(Parse*, int, int); SQLITE_PRIVATE void sqlite3MultiWrite(Parse*); SQLITE_PRIVATE void sqlite3MayAbort(Parse*); SQLITE_PRIVATE void sqlite3HaltConstraint(Parse*, int, int, char*, i8, u8); SQLITE_PRIVATE void sqlite3UniqueConstraint(Parse*, int, Index*); SQLITE_PRIVATE void sqlite3RowidConstraint(Parse*, int, Table*); SQLITE_PRIVATE Expr *sqlite3ExprDup(sqlite3*,const Expr*,int); SQLITE_PRIVATE ExprList *sqlite3ExprListDup(sqlite3*,const ExprList*,int); SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3*,const SrcList*,int); SQLITE_PRIVATE IdList *sqlite3IdListDup(sqlite3*,const IdList*); SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3*,const Select*,int); SQLITE_PRIVATE FuncDef *sqlite3FunctionSearch(int,const char*); SQLITE_PRIVATE void sqlite3InsertBuiltinFuncs(FuncDef*,int); SQLITE_PRIVATE FuncDef *sqlite3FindFunction(sqlite3*,const char*,int,u8,u8); SQLITE_PRIVATE void sqlite3QuoteValue(StrAccum*,sqlite3_value*); SQLITE_PRIVATE void sqlite3RegisterBuiltinFunctions(void); SQLITE_PRIVATE void sqlite3RegisterDateTimeFunctions(void); SQLITE_PRIVATE void sqlite3RegisterJsonFunctions(void); SQLITE_PRIVATE void sqlite3RegisterPerConnectionBuiltinFunctions(sqlite3*); #if !defined(SQLITE_OMIT_VIRTUALTABLE) && !defined(SQLITE_OMIT_JSON) SQLITE_PRIVATE int sqlite3JsonTableFunctions(sqlite3*); #endif SQLITE_PRIVATE int sqlite3SafetyCheckOk(sqlite3*); SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3*); SQLITE_PRIVATE void sqlite3ChangeCookie(Parse*, int); SQLITE_PRIVATE With *sqlite3WithDup(sqlite3 *db, With *p); #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) SQLITE_PRIVATE void sqlite3MaterializeView(Parse*, Table*, Expr*, ExprList*,Expr*,int); #endif #ifndef SQLITE_OMIT_TRIGGER SQLITE_PRIVATE void sqlite3BeginTrigger(Parse*, Token*,Token*,int,int,IdList*,SrcList*, Expr*,int, int); SQLITE_PRIVATE void sqlite3FinishTrigger(Parse*, TriggerStep*, Token*); SQLITE_PRIVATE void sqlite3DropTrigger(Parse*, SrcList*, int); SQLITE_PRIVATE void sqlite3DropTriggerPtr(Parse*, Trigger*); SQLITE_PRIVATE Trigger *sqlite3TriggersExist(Parse *, Table*, int, ExprList*, int *pMask); SQLITE_PRIVATE Trigger *sqlite3TriggerList(Parse *, Table *); SQLITE_PRIVATE void sqlite3CodeRowTrigger(Parse*, Trigger *, int, ExprList*, int, Table *, int, int, int); SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect(Parse *, Trigger *, Table *, int, int, int); void sqliteViewTriggers(Parse*, Table*, Expr*, int, ExprList*); SQLITE_PRIVATE void sqlite3DeleteTriggerStep(sqlite3*, TriggerStep*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerSelectStep(sqlite3*,Select*, const char*,const char*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerInsertStep(Parse*,Token*, IdList*, Select*,u8,Upsert*, const char*,const char*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerUpdateStep(Parse*,Token*,SrcList*,ExprList*, Expr*, u8, const char*,const char*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerDeleteStep(Parse*,Token*, Expr*, const char*,const char*); SQLITE_PRIVATE void sqlite3DeleteTrigger(sqlite3*, Trigger*); SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTrigger(sqlite3*,int,const char*); SQLITE_PRIVATE u32 sqlite3TriggerColmask(Parse*,Trigger*,ExprList*,int,int,Table*,int); SQLITE_PRIVATE SrcList *sqlite3TriggerStepSrc(Parse*, TriggerStep*); # define sqlite3ParseToplevel(p) ((p)->pToplevel ? (p)->pToplevel : (p)) # define sqlite3IsToplevel(p) ((p)->pToplevel==0) #else # define sqlite3TriggersExist(B,C,D,E,F) 0 # define sqlite3DeleteTrigger(A,B) # define sqlite3DropTriggerPtr(A,B) # define sqlite3UnlinkAndDeleteTrigger(A,B,C) # define sqlite3CodeRowTrigger(A,B,C,D,E,F,G,H,I) # define sqlite3CodeRowTriggerDirect(A,B,C,D,E,F) # define sqlite3TriggerList(X, Y) 0 # define sqlite3ParseToplevel(p) p # define sqlite3IsToplevel(p) 1 # define sqlite3TriggerColmask(A,B,C,D,E,F,G) 0 # define sqlite3TriggerStepSrc(A,B) 0 #endif SQLITE_PRIVATE int sqlite3JoinType(Parse*, Token*, Token*, Token*); SQLITE_PRIVATE int sqlite3ColumnIndex(Table *pTab, const char *zCol); SQLITE_PRIVATE void sqlite3SetJoinExpr(Expr*,int); SQLITE_PRIVATE void sqlite3CreateForeignKey(Parse*, ExprList*, Token*, ExprList*, int); SQLITE_PRIVATE void sqlite3DeferForeignKey(Parse*, int); #ifndef SQLITE_OMIT_AUTHORIZATION SQLITE_PRIVATE void sqlite3AuthRead(Parse*,Expr*,Schema*,SrcList*); SQLITE_PRIVATE int sqlite3AuthCheck(Parse*,int, const char*, const char*, const char*); SQLITE_PRIVATE void sqlite3AuthContextPush(Parse*, AuthContext*, const char*); SQLITE_PRIVATE void sqlite3AuthContextPop(AuthContext*); SQLITE_PRIVATE int sqlite3AuthReadCol(Parse*, const char *, const char *, int); #else # define sqlite3AuthRead(a,b,c,d) # define sqlite3AuthCheck(a,b,c,d,e) SQLITE_OK # define sqlite3AuthContextPush(a,b,c) # define sqlite3AuthContextPop(a) ((void)(a)) #endif SQLITE_PRIVATE int sqlite3DbIsNamed(sqlite3 *db, int iDb, const char *zName); SQLITE_PRIVATE void sqlite3Attach(Parse*, Expr*, Expr*, Expr*); SQLITE_PRIVATE void sqlite3Detach(Parse*, Expr*); SQLITE_PRIVATE void sqlite3FixInit(DbFixer*, Parse*, int, const char*, const Token*); SQLITE_PRIVATE int sqlite3FixSrcList(DbFixer*, SrcList*); SQLITE_PRIVATE int sqlite3FixSelect(DbFixer*, Select*); SQLITE_PRIVATE int sqlite3FixExpr(DbFixer*, Expr*); SQLITE_PRIVATE int sqlite3FixTriggerStep(DbFixer*, TriggerStep*); SQLITE_PRIVATE int sqlite3RealSameAsInt(double,sqlite3_int64); SQLITE_PRIVATE void sqlite3Int64ToText(i64,char*); SQLITE_PRIVATE int sqlite3AtoF(const char *z, double*, int, u8); SQLITE_PRIVATE int sqlite3GetInt32(const char *, int*); SQLITE_PRIVATE int sqlite3GetUInt32(const char*, u32*); SQLITE_PRIVATE int sqlite3Atoi(const char*); #ifndef SQLITE_OMIT_UTF16 SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *pData, int nChar); #endif SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte); SQLITE_PRIVATE u32 sqlite3Utf8Read(const u8**); SQLITE_PRIVATE LogEst sqlite3LogEst(u64); SQLITE_PRIVATE LogEst sqlite3LogEstAdd(LogEst,LogEst); SQLITE_PRIVATE LogEst sqlite3LogEstFromDouble(double); SQLITE_PRIVATE u64 sqlite3LogEstToInt(LogEst); SQLITE_PRIVATE VList *sqlite3VListAdd(sqlite3*,VList*,const char*,int,int); SQLITE_PRIVATE const char *sqlite3VListNumToName(VList*,int); SQLITE_PRIVATE int sqlite3VListNameToNum(VList*,const char*,int); /* ** Routines to read and write variable-length integers. These used to ** be defined locally, but now we use the varint routines in the util.c ** file. */ SQLITE_PRIVATE int sqlite3PutVarint(unsigned char*, u64); SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *, u64 *); SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *); SQLITE_PRIVATE int sqlite3VarintLen(u64 v); /* ** The common case is for a varint to be a single byte. They following ** macros handle the common case without a procedure call, but then call ** the procedure for larger varints. */ #define getVarint32(A,B) \ (u8)((*(A)<(u8)0x80)?((B)=(u32)*(A)),1:sqlite3GetVarint32((A),(u32 *)&(B))) #define getVarint32NR(A,B) \ B=(u32)*(A);if(B>=0x80)sqlite3GetVarint32((A),(u32*)&(B)) #define putVarint32(A,B) \ (u8)(((u32)(B)<(u32)0x80)?(*(A)=(unsigned char)(B)),1:\ sqlite3PutVarint((A),(B))) #define getVarint sqlite3GetVarint #define putVarint sqlite3PutVarint SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(sqlite3*, Index*); SQLITE_PRIVATE void sqlite3TableAffinity(Vdbe*, Table*, int); SQLITE_PRIVATE char sqlite3CompareAffinity(const Expr *pExpr, char aff2); SQLITE_PRIVATE int sqlite3IndexAffinityOk(const Expr *pExpr, char idx_affinity); SQLITE_PRIVATE char sqlite3TableColumnAffinity(const Table*,int); SQLITE_PRIVATE char sqlite3ExprAffinity(const Expr *pExpr); SQLITE_PRIVATE int sqlite3Atoi64(const char*, i64*, int, u8); SQLITE_PRIVATE int sqlite3DecOrHexToI64(const char*, i64*); SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3*, int, const char*,...); SQLITE_PRIVATE void sqlite3Error(sqlite3*,int); SQLITE_PRIVATE void sqlite3ErrorClear(sqlite3*); SQLITE_PRIVATE void sqlite3SystemError(sqlite3*,int); SQLITE_PRIVATE void *sqlite3HexToBlob(sqlite3*, const char *z, int n); SQLITE_PRIVATE u8 sqlite3HexToInt(int h); SQLITE_PRIVATE int sqlite3TwoPartName(Parse *, Token *, Token *, Token **); #if defined(SQLITE_NEED_ERR_NAME) SQLITE_PRIVATE const char *sqlite3ErrName(int); #endif #ifndef SQLITE_OMIT_DESERIALIZE SQLITE_PRIVATE int sqlite3MemdbInit(void); #endif SQLITE_PRIVATE const char *sqlite3ErrStr(int); SQLITE_PRIVATE int sqlite3ReadSchema(Parse *pParse); SQLITE_PRIVATE CollSeq *sqlite3FindCollSeq(sqlite3*,u8 enc, const char*,int); SQLITE_PRIVATE int sqlite3IsBinary(const CollSeq*); SQLITE_PRIVATE CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char*zName); SQLITE_PRIVATE void sqlite3SetTextEncoding(sqlite3 *db, u8); SQLITE_PRIVATE CollSeq *sqlite3ExprCollSeq(Parse *pParse, const Expr *pExpr); SQLITE_PRIVATE CollSeq *sqlite3ExprNNCollSeq(Parse *pParse, const Expr *pExpr); SQLITE_PRIVATE int sqlite3ExprCollSeqMatch(Parse*,const Expr*,const Expr*); SQLITE_PRIVATE Expr *sqlite3ExprAddCollateToken(const Parse *pParse, Expr*, const Token*, int); SQLITE_PRIVATE Expr *sqlite3ExprAddCollateString(const Parse*,Expr*,const char*); SQLITE_PRIVATE Expr *sqlite3ExprSkipCollate(Expr*); SQLITE_PRIVATE Expr *sqlite3ExprSkipCollateAndLikely(Expr*); SQLITE_PRIVATE int sqlite3CheckCollSeq(Parse *, CollSeq *); SQLITE_PRIVATE int sqlite3WritableSchema(sqlite3*); SQLITE_PRIVATE int sqlite3CheckObjectName(Parse*, const char*,const char*,const char*); SQLITE_PRIVATE void sqlite3VdbeSetChanges(sqlite3 *, i64); SQLITE_PRIVATE int sqlite3AddInt64(i64*,i64); SQLITE_PRIVATE int sqlite3SubInt64(i64*,i64); SQLITE_PRIVATE int sqlite3MulInt64(i64*,i64); SQLITE_PRIVATE int sqlite3AbsInt32(int); #ifdef SQLITE_ENABLE_8_3_NAMES SQLITE_PRIVATE void sqlite3FileSuffix3(const char*, char*); #else # define sqlite3FileSuffix3(X,Y) #endif SQLITE_PRIVATE u8 sqlite3GetBoolean(const char *z,u8); SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value*, u8); SQLITE_PRIVATE int sqlite3ValueBytes(sqlite3_value*, u8); SQLITE_PRIVATE void sqlite3ValueSetStr(sqlite3_value*, int, const void *,u8, void(*)(void*)); SQLITE_PRIVATE void sqlite3ValueSetNull(sqlite3_value*); SQLITE_PRIVATE void sqlite3ValueFree(sqlite3_value*); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3ResultIntReal(sqlite3_context*); #endif SQLITE_PRIVATE sqlite3_value *sqlite3ValueNew(sqlite3 *); #ifndef SQLITE_OMIT_UTF16 SQLITE_PRIVATE char *sqlite3Utf16to8(sqlite3 *, const void*, int, u8); #endif SQLITE_PRIVATE int sqlite3ValueFromExpr(sqlite3 *, const Expr *, u8, u8, sqlite3_value **); SQLITE_PRIVATE void sqlite3ValueApplyAffinity(sqlite3_value *, u8, u8); #ifndef SQLITE_AMALGAMATION SQLITE_PRIVATE const unsigned char sqlite3OpcodeProperty[]; SQLITE_PRIVATE const char sqlite3StrBINARY[]; SQLITE_PRIVATE const unsigned char sqlite3StdTypeLen[]; SQLITE_PRIVATE const char sqlite3StdTypeAffinity[]; SQLITE_PRIVATE const char sqlite3StdTypeMap[]; SQLITE_PRIVATE const char *sqlite3StdType[]; SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[]; SQLITE_PRIVATE const unsigned char *sqlite3aLTb; SQLITE_PRIVATE const unsigned char *sqlite3aEQb; SQLITE_PRIVATE const unsigned char *sqlite3aGTb; SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[]; SQLITE_PRIVATE SQLITE_WSD struct Sqlite3Config sqlite3Config; SQLITE_PRIVATE FuncDefHash sqlite3BuiltinFunctions; #ifndef SQLITE_OMIT_WSD SQLITE_PRIVATE int sqlite3PendingByte; #endif #endif /* SQLITE_AMALGAMATION */ #ifdef VDBE_PROFILE SQLITE_PRIVATE sqlite3_uint64 sqlite3NProfileCnt; #endif SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3*, int, Pgno, Pgno); SQLITE_PRIVATE void sqlite3Reindex(Parse*, Token*, Token*); SQLITE_PRIVATE void sqlite3AlterFunctions(void); SQLITE_PRIVATE void sqlite3AlterRenameTable(Parse*, SrcList*, Token*); SQLITE_PRIVATE void sqlite3AlterRenameColumn(Parse*, SrcList*, Token*, Token*); SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *, int *); SQLITE_PRIVATE void sqlite3NestedParse(Parse*, const char*, ...); SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3*, int); SQLITE_PRIVATE void sqlite3CodeRhsOfIN(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3CodeSubselect(Parse*, Expr*); SQLITE_PRIVATE void sqlite3SelectPrep(Parse*, Select*, NameContext*); SQLITE_PRIVATE int sqlite3ExpandSubquery(Parse*, SrcItem*); SQLITE_PRIVATE void sqlite3SelectWrongNumTermsError(Parse *pParse, Select *p); SQLITE_PRIVATE int sqlite3MatchEName( const struct ExprList_item*, const char*, const char*, const char* ); SQLITE_PRIVATE Bitmask sqlite3ExprColUsed(Expr*); SQLITE_PRIVATE u8 sqlite3StrIHash(const char*); SQLITE_PRIVATE int sqlite3ResolveExprNames(NameContext*, Expr*); SQLITE_PRIVATE int sqlite3ResolveExprListNames(NameContext*, ExprList*); SQLITE_PRIVATE void sqlite3ResolveSelectNames(Parse*, Select*, NameContext*); SQLITE_PRIVATE int sqlite3ResolveSelfReference(Parse*,Table*,int,Expr*,ExprList*); SQLITE_PRIVATE int sqlite3ResolveOrderGroupBy(Parse*, Select*, ExprList*, const char*); SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *, Table *, int, int); SQLITE_PRIVATE void sqlite3AlterFinishAddColumn(Parse *, Token *); SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *, SrcList *); SQLITE_PRIVATE void sqlite3AlterDropColumn(Parse*, SrcList*, const Token*); SQLITE_PRIVATE const void *sqlite3RenameTokenMap(Parse*, const void*, const Token*); SQLITE_PRIVATE void sqlite3RenameTokenRemap(Parse*, const void *pTo, const void *pFrom); SQLITE_PRIVATE void sqlite3RenameExprUnmap(Parse*, Expr*); SQLITE_PRIVATE void sqlite3RenameExprlistUnmap(Parse*, ExprList*); SQLITE_PRIVATE CollSeq *sqlite3GetCollSeq(Parse*, u8, CollSeq *, const char*); SQLITE_PRIVATE char sqlite3AffinityType(const char*, Column*); SQLITE_PRIVATE void sqlite3Analyze(Parse*, Token*, Token*); SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler*); SQLITE_PRIVATE int sqlite3FindDb(sqlite3*, Token*); SQLITE_PRIVATE int sqlite3FindDbName(sqlite3 *, const char *); SQLITE_PRIVATE int sqlite3AnalysisLoad(sqlite3*,int iDB); SQLITE_PRIVATE void sqlite3DeleteIndexSamples(sqlite3*,Index*); SQLITE_PRIVATE void sqlite3DefaultRowEst(Index*); SQLITE_PRIVATE void sqlite3RegisterLikeFunctions(sqlite3*, int); SQLITE_PRIVATE int sqlite3IsLikeFunction(sqlite3*,Expr*,int*,char*); SQLITE_PRIVATE void sqlite3SchemaClear(void *); SQLITE_PRIVATE Schema *sqlite3SchemaGet(sqlite3 *, Btree *); SQLITE_PRIVATE int sqlite3SchemaToIndex(sqlite3 *db, Schema *); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoAlloc(sqlite3*,int,int); SQLITE_PRIVATE void sqlite3KeyInfoUnref(KeyInfo*); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoRef(KeyInfo*); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoOfIndex(Parse*, Index*); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoFromExprList(Parse*, ExprList*, int, int); SQLITE_PRIVATE const char *sqlite3SelectOpName(int); SQLITE_PRIVATE int sqlite3HasExplicitNulls(Parse*, ExprList*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3KeyInfoIsWriteable(KeyInfo*); #endif SQLITE_PRIVATE int sqlite3CreateFunc(sqlite3 *, const char *, int, int, void *, void (*)(sqlite3_context*,int,sqlite3_value **), void (*)(sqlite3_context*,int,sqlite3_value **), void (*)(sqlite3_context*), void (*)(sqlite3_context*), void (*)(sqlite3_context*,int,sqlite3_value **), FuncDestructor *pDestructor ); SQLITE_PRIVATE void sqlite3NoopDestructor(void*); SQLITE_PRIVATE void *sqlite3OomFault(sqlite3*); SQLITE_PRIVATE void sqlite3OomClear(sqlite3*); SQLITE_PRIVATE int sqlite3ApiExit(sqlite3 *db, int); SQLITE_PRIVATE int sqlite3OpenTempDatabase(Parse *); SQLITE_PRIVATE void sqlite3StrAccumInit(StrAccum*, sqlite3*, char*, int, int); SQLITE_PRIVATE int sqlite3StrAccumEnlarge(StrAccum*, int); SQLITE_PRIVATE char *sqlite3StrAccumFinish(StrAccum*); SQLITE_PRIVATE void sqlite3StrAccumSetError(StrAccum*, u8); SQLITE_PRIVATE void sqlite3ResultStrAccum(sqlite3_context*,StrAccum*); SQLITE_PRIVATE void sqlite3SelectDestInit(SelectDest*,int,int); SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *, SrcList *, int, int); SQLITE_PRIVATE void sqlite3RecordErrorByteOffset(sqlite3*,const char*); SQLITE_PRIVATE void sqlite3RecordErrorOffsetOfExpr(sqlite3*,const Expr*); SQLITE_PRIVATE void sqlite3BackupRestart(sqlite3_backup *); SQLITE_PRIVATE void sqlite3BackupUpdate(sqlite3_backup *, Pgno, const u8 *); #ifndef SQLITE_OMIT_SUBQUERY SQLITE_PRIVATE int sqlite3ExprCheckIN(Parse*, Expr*); #else # define sqlite3ExprCheckIN(x,y) SQLITE_OK #endif #ifdef SQLITE_ENABLE_STAT4 SQLITE_PRIVATE int sqlite3Stat4ProbeSetValue( Parse*,Index*,UnpackedRecord**,Expr*,int,int,int*); SQLITE_PRIVATE int sqlite3Stat4ValueFromExpr(Parse*, Expr*, u8, sqlite3_value**); SQLITE_PRIVATE void sqlite3Stat4ProbeFree(UnpackedRecord*); SQLITE_PRIVATE int sqlite3Stat4Column(sqlite3*, const void*, int, int, sqlite3_value**); SQLITE_PRIVATE char sqlite3IndexColumnAffinity(sqlite3*, Index*, int); #endif /* ** The interface to the LEMON-generated parser */ #ifndef SQLITE_AMALGAMATION SQLITE_PRIVATE void *sqlite3ParserAlloc(void*(*)(u64), Parse*); SQLITE_PRIVATE void sqlite3ParserFree(void*, void(*)(void*)); #endif SQLITE_PRIVATE void sqlite3Parser(void*, int, Token); SQLITE_PRIVATE int sqlite3ParserFallback(int); #ifdef YYTRACKMAXSTACKDEPTH SQLITE_PRIVATE int sqlite3ParserStackPeak(void*); #endif SQLITE_PRIVATE void sqlite3AutoLoadExtensions(sqlite3*); #ifndef SQLITE_OMIT_LOAD_EXTENSION SQLITE_PRIVATE void sqlite3CloseExtensions(sqlite3*); #else # define sqlite3CloseExtensions(X) #endif #ifndef SQLITE_OMIT_SHARED_CACHE SQLITE_PRIVATE void sqlite3TableLock(Parse *, int, Pgno, u8, const char *); #else #define sqlite3TableLock(v,w,x,y,z) #endif #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3Utf8To8(unsigned char*); #endif #ifdef SQLITE_OMIT_VIRTUALTABLE # define sqlite3VtabClear(D,T) # define sqlite3VtabSync(X,Y) SQLITE_OK # define sqlite3VtabRollback(X) # define sqlite3VtabCommit(X) # define sqlite3VtabInSync(db) 0 # define sqlite3VtabLock(X) # define sqlite3VtabUnlock(X) # define sqlite3VtabModuleUnref(D,X) # define sqlite3VtabUnlockList(X) # define sqlite3VtabSavepoint(X, Y, Z) SQLITE_OK # define sqlite3GetVTable(X,Y) ((VTable*)0) #else SQLITE_PRIVATE void sqlite3VtabClear(sqlite3 *db, Table*); SQLITE_PRIVATE void sqlite3VtabDisconnect(sqlite3 *db, Table *p); SQLITE_PRIVATE int sqlite3VtabSync(sqlite3 *db, Vdbe*); SQLITE_PRIVATE int sqlite3VtabRollback(sqlite3 *db); SQLITE_PRIVATE int sqlite3VtabCommit(sqlite3 *db); SQLITE_PRIVATE void sqlite3VtabLock(VTable *); SQLITE_PRIVATE void sqlite3VtabUnlock(VTable *); SQLITE_PRIVATE void sqlite3VtabModuleUnref(sqlite3*,Module*); SQLITE_PRIVATE void sqlite3VtabUnlockList(sqlite3*); SQLITE_PRIVATE int sqlite3VtabSavepoint(sqlite3 *, int, int); SQLITE_PRIVATE void sqlite3VtabImportErrmsg(Vdbe*, sqlite3_vtab*); SQLITE_PRIVATE VTable *sqlite3GetVTable(sqlite3*, Table*); SQLITE_PRIVATE Module *sqlite3VtabCreateModule( sqlite3*, const char*, const sqlite3_module*, void*, void(*)(void*) ); # define sqlite3VtabInSync(db) ((db)->nVTrans>0 && (db)->aVTrans==0) #endif SQLITE_PRIVATE int sqlite3ReadOnlyShadowTables(sqlite3 *db); #ifndef SQLITE_OMIT_VIRTUALTABLE SQLITE_PRIVATE int sqlite3ShadowTableName(sqlite3 *db, const char *zName); SQLITE_PRIVATE int sqlite3IsShadowTableOf(sqlite3*,Table*,const char*); SQLITE_PRIVATE void sqlite3MarkAllShadowTablesOf(sqlite3*, Table*); #else # define sqlite3ShadowTableName(A,B) 0 # define sqlite3IsShadowTableOf(A,B,C) 0 # define sqlite3MarkAllShadowTablesOf(A,B) #endif SQLITE_PRIVATE int sqlite3VtabEponymousTableInit(Parse*,Module*); SQLITE_PRIVATE void sqlite3VtabEponymousTableClear(sqlite3*,Module*); SQLITE_PRIVATE void sqlite3VtabMakeWritable(Parse*,Table*); SQLITE_PRIVATE void sqlite3VtabBeginParse(Parse*, Token*, Token*, Token*, int); SQLITE_PRIVATE void sqlite3VtabFinishParse(Parse*, Token*); SQLITE_PRIVATE void sqlite3VtabArgInit(Parse*); SQLITE_PRIVATE void sqlite3VtabArgExtend(Parse*, Token*); SQLITE_PRIVATE int sqlite3VtabCallCreate(sqlite3*, int, const char *, char **); SQLITE_PRIVATE int sqlite3VtabCallConnect(Parse*, Table*); SQLITE_PRIVATE int sqlite3VtabCallDestroy(sqlite3*, int, const char *); SQLITE_PRIVATE int sqlite3VtabBegin(sqlite3 *, VTable *); SQLITE_PRIVATE FuncDef *sqlite3VtabOverloadFunction(sqlite3 *,FuncDef*, int nArg, Expr*); SQLITE_PRIVATE sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context*); SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); SQLITE_PRIVATE int sqlite3TransferBindings(sqlite3_stmt *, sqlite3_stmt *); SQLITE_PRIVATE void sqlite3ParseObjectInit(Parse*,sqlite3*); SQLITE_PRIVATE void sqlite3ParseObjectReset(Parse*); SQLITE_PRIVATE void *sqlite3ParserAddCleanup(Parse*,void(*)(sqlite3*,void*),void*); #ifdef SQLITE_ENABLE_NORMALIZE SQLITE_PRIVATE char *sqlite3Normalize(Vdbe*, const char*); #endif SQLITE_PRIVATE int sqlite3Reprepare(Vdbe*); SQLITE_PRIVATE void sqlite3ExprListCheckLength(Parse*, ExprList*, const char*); SQLITE_PRIVATE CollSeq *sqlite3ExprCompareCollSeq(Parse*,const Expr*); SQLITE_PRIVATE CollSeq *sqlite3BinaryCompareCollSeq(Parse *, const Expr*, const Expr*); SQLITE_PRIVATE int sqlite3TempInMemory(const sqlite3*); SQLITE_PRIVATE const char *sqlite3JournalModename(int); #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3Checkpoint(sqlite3*, int, int, int*, int*); SQLITE_PRIVATE int sqlite3WalDefaultHook(void*,sqlite3*,const char*,int); #endif #ifndef SQLITE_OMIT_CTE SQLITE_PRIVATE Cte *sqlite3CteNew(Parse*,Token*,ExprList*,Select*,u8); SQLITE_PRIVATE void sqlite3CteDelete(sqlite3*,Cte*); SQLITE_PRIVATE With *sqlite3WithAdd(Parse*,With*,Cte*); SQLITE_PRIVATE void sqlite3WithDelete(sqlite3*,With*); SQLITE_PRIVATE With *sqlite3WithPush(Parse*, With*, u8); #else # define sqlite3CteNew(P,T,E,S) ((void*)0) # define sqlite3CteDelete(D,C) # define sqlite3CteWithAdd(P,W,C) ((void*)0) # define sqlite3WithDelete(x,y) # define sqlite3WithPush(x,y,z) ((void*)0) #endif #ifndef SQLITE_OMIT_UPSERT SQLITE_PRIVATE Upsert *sqlite3UpsertNew(sqlite3*,ExprList*,Expr*,ExprList*,Expr*,Upsert*); SQLITE_PRIVATE void sqlite3UpsertDelete(sqlite3*,Upsert*); SQLITE_PRIVATE Upsert *sqlite3UpsertDup(sqlite3*,Upsert*); SQLITE_PRIVATE int sqlite3UpsertAnalyzeTarget(Parse*,SrcList*,Upsert*); SQLITE_PRIVATE void sqlite3UpsertDoUpdate(Parse*,Upsert*,Table*,Index*,int); SQLITE_PRIVATE Upsert *sqlite3UpsertOfIndex(Upsert*,Index*); SQLITE_PRIVATE int sqlite3UpsertNextIsIPK(Upsert*); #else #define sqlite3UpsertNew(u,v,w,x,y,z) ((Upsert*)0) #define sqlite3UpsertDelete(x,y) #define sqlite3UpsertDup(x,y) ((Upsert*)0) #define sqlite3UpsertOfIndex(x,y) ((Upsert*)0) #define sqlite3UpsertNextIsIPK(x) 0 #endif /* Declarations for functions in fkey.c. All of these are replaced by ** no-op macros if OMIT_FOREIGN_KEY is defined. In this case no foreign ** key functionality is available. If OMIT_TRIGGER is defined but ** OMIT_FOREIGN_KEY is not, only some of the functions are no-oped. In ** this case foreign keys are parsed, but no other functionality is ** provided (enforcement of FK constraints requires the triggers sub-system). */ #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) SQLITE_PRIVATE void sqlite3FkCheck(Parse*, Table*, int, int, int*, int); SQLITE_PRIVATE void sqlite3FkDropTable(Parse*, SrcList *, Table*); SQLITE_PRIVATE void sqlite3FkActions(Parse*, Table*, ExprList*, int, int*, int); SQLITE_PRIVATE int sqlite3FkRequired(Parse*, Table*, int*, int); SQLITE_PRIVATE u32 sqlite3FkOldmask(Parse*, Table*); SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *); SQLITE_PRIVATE void sqlite3FkClearTriggerCache(sqlite3*,int); #else #define sqlite3FkActions(a,b,c,d,e,f) #define sqlite3FkCheck(a,b,c,d,e,f) #define sqlite3FkDropTable(a,b,c) #define sqlite3FkOldmask(a,b) 0 #define sqlite3FkRequired(a,b,c,d) 0 #define sqlite3FkReferences(a) 0 #define sqlite3FkClearTriggerCache(a,b) #endif #ifndef SQLITE_OMIT_FOREIGN_KEY SQLITE_PRIVATE void sqlite3FkDelete(sqlite3 *, Table*); SQLITE_PRIVATE int sqlite3FkLocateIndex(Parse*,Table*,FKey*,Index**,int**); #else #define sqlite3FkDelete(a,b) #define sqlite3FkLocateIndex(a,b,c,d,e) #endif /* ** Available fault injectors. Should be numbered beginning with 0. */ #define SQLITE_FAULTINJECTOR_MALLOC 0 #define SQLITE_FAULTINJECTOR_COUNT 1 /* ** The interface to the code in fault.c used for identifying "benign" ** malloc failures. This is only present if SQLITE_UNTESTABLE ** is not defined. */ #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3BeginBenignMalloc(void); SQLITE_PRIVATE void sqlite3EndBenignMalloc(void); #else #define sqlite3BeginBenignMalloc() #define sqlite3EndBenignMalloc() #endif /* ** Allowed return values from sqlite3FindInIndex() */ #define IN_INDEX_ROWID 1 /* Search the rowid of the table */ #define IN_INDEX_EPH 2 /* Search an ephemeral b-tree */ #define IN_INDEX_INDEX_ASC 3 /* Existing index ASCENDING */ #define IN_INDEX_INDEX_DESC 4 /* Existing index DESCENDING */ #define IN_INDEX_NOOP 5 /* No table available. Use comparisons */ /* ** Allowed flags for the 3rd parameter to sqlite3FindInIndex(). */ #define IN_INDEX_NOOP_OK 0x0001 /* OK to return IN_INDEX_NOOP */ #define IN_INDEX_MEMBERSHIP 0x0002 /* IN operator used for membership test */ #define IN_INDEX_LOOP 0x0004 /* IN operator used as a loop */ SQLITE_PRIVATE int sqlite3FindInIndex(Parse *, Expr *, u32, int*, int*, int*); SQLITE_PRIVATE int sqlite3JournalOpen(sqlite3_vfs *, const char *, sqlite3_file *, int, int); SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *); #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) SQLITE_PRIVATE int sqlite3JournalCreate(sqlite3_file *); #endif SQLITE_PRIVATE int sqlite3JournalIsInMemory(sqlite3_file *p); SQLITE_PRIVATE void sqlite3MemJournalOpen(sqlite3_file *); SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p); #if SQLITE_MAX_EXPR_DEPTH>0 SQLITE_PRIVATE int sqlite3SelectExprHeight(const Select *); SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse*, int); #else #define sqlite3SelectExprHeight(x) 0 #define sqlite3ExprCheckHeight(x,y) #endif SQLITE_PRIVATE u32 sqlite3Get4byte(const u8*); SQLITE_PRIVATE void sqlite3Put4byte(u8*, u32); #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY SQLITE_PRIVATE void sqlite3ConnectionBlocked(sqlite3 *, sqlite3 *); SQLITE_PRIVATE void sqlite3ConnectionUnlocked(sqlite3 *db); SQLITE_PRIVATE void sqlite3ConnectionClosed(sqlite3 *db); #else #define sqlite3ConnectionBlocked(x,y) #define sqlite3ConnectionUnlocked(x) #define sqlite3ConnectionClosed(x) #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3ParserTrace(FILE*, char *); #endif #if defined(YYCOVERAGE) SQLITE_PRIVATE int sqlite3ParserCoverage(FILE*); #endif /* ** If the SQLITE_ENABLE IOTRACE exists then the global variable ** sqlite3IoTrace is a pointer to a printf-like routine used to ** print I/O tracing messages. */ #ifdef SQLITE_ENABLE_IOTRACE # define IOTRACE(A) if( sqlite3IoTrace ){ sqlite3IoTrace A; } SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe*); SQLITE_API SQLITE_EXTERN void (SQLITE_CDECL *sqlite3IoTrace)(const char*,...); #else # define IOTRACE(A) # define sqlite3VdbeIOTraceSql(X) #endif /* ** These routines are available for the mem2.c debugging memory allocator ** only. They are used to verify that different "types" of memory ** allocations are properly tracked by the system. ** ** sqlite3MemdebugSetType() sets the "type" of an allocation to one of ** the MEMTYPE_* macros defined below. The type must be a bitmask with ** a single bit set. ** ** sqlite3MemdebugHasType() returns true if any of the bits in its second ** argument match the type set by the previous sqlite3MemdebugSetType(). ** sqlite3MemdebugHasType() is intended for use inside assert() statements. ** ** sqlite3MemdebugNoType() returns true if none of the bits in its second ** argument match the type set by the previous sqlite3MemdebugSetType(). ** ** Perhaps the most important point is the difference between MEMTYPE_HEAP ** and MEMTYPE_LOOKASIDE. If an allocation is MEMTYPE_LOOKASIDE, that means ** it might have been allocated by lookaside, except the allocation was ** too large or lookaside was already full. It is important to verify ** that allocations that might have been satisfied by lookaside are not ** passed back to non-lookaside free() routines. Asserts such as the ** example above are placed on the non-lookaside free() routines to verify ** this constraint. ** ** All of this is no-op for a production build. It only comes into ** play when the SQLITE_MEMDEBUG compile-time option is used. */ #ifdef SQLITE_MEMDEBUG SQLITE_PRIVATE void sqlite3MemdebugSetType(void*,u8); SQLITE_PRIVATE int sqlite3MemdebugHasType(const void*,u8); SQLITE_PRIVATE int sqlite3MemdebugNoType(const void*,u8); #else # define sqlite3MemdebugSetType(X,Y) /* no-op */ # define sqlite3MemdebugHasType(X,Y) 1 # define sqlite3MemdebugNoType(X,Y) 1 #endif #define MEMTYPE_HEAP 0x01 /* General heap allocations */ #define MEMTYPE_LOOKASIDE 0x02 /* Heap that might have been lookaside */ #define MEMTYPE_PCACHE 0x04 /* Page cache allocations */ /* ** Threading interface */ #if SQLITE_MAX_WORKER_THREADS>0 SQLITE_PRIVATE int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*); SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread*, void**); #endif #if defined(SQLITE_ENABLE_DBPAGE_VTAB) || defined(SQLITE_TEST) SQLITE_PRIVATE int sqlite3DbpageRegister(sqlite3*); #endif #if defined(SQLITE_ENABLE_DBSTAT_VTAB) || defined(SQLITE_TEST) SQLITE_PRIVATE int sqlite3DbstatRegister(sqlite3*); #endif SQLITE_PRIVATE int sqlite3ExprVectorSize(const Expr *pExpr); SQLITE_PRIVATE int sqlite3ExprIsVector(const Expr *pExpr); SQLITE_PRIVATE Expr *sqlite3VectorFieldSubexpr(Expr*, int); SQLITE_PRIVATE Expr *sqlite3ExprForVectorField(Parse*,Expr*,int,int); SQLITE_PRIVATE void sqlite3VectorErrorMsg(Parse*, Expr*); #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS SQLITE_PRIVATE const char **sqlite3CompileOptions(int *pnOpt); #endif #endif /* SQLITEINT_H */ /************** End of sqliteInt.h *******************************************/ /************** Begin file os_common.h ***************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains macros and a little bit of code that is common to ** all of the platform-specific files (os_*.c) and is #included into those ** files. ** ** This file should be #included by the os_*.c files only. It is not a ** general purpose header file. */ #ifndef _OS_COMMON_H_ #define _OS_COMMON_H_ /* ** At least two bugs have slipped in because we changed the MEMORY_DEBUG ** macro to SQLITE_DEBUG and some older makefiles have not yet made the ** switch. The following code should catch this problem at compile-time. */ #ifdef MEMORY_DEBUG # error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." #endif /* ** Macros for performance tracing. Normally turned off. Only works ** on i486 hardware. */ #ifdef SQLITE_PERFORMANCE_TRACE /* ** hwtime.h contains inline assembler code for implementing ** high-performance timing routines. */ /************** Include hwtime.h in the middle of os_common.h ****************/ /************** Begin file hwtime.h ******************************************/ /* ** 2008 May 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains inline asm code for retrieving "high-performance" ** counters for x86 and x86_64 class CPUs. */ #ifndef SQLITE_HWTIME_H #define SQLITE_HWTIME_H /* ** The following routine only works on pentium-class (or newer) processors. ** It uses the RDTSC opcode to read the cycle count value out of the ** processor and returns that value. This can be used for high-res ** profiling. */ #if !defined(__STRICT_ANSI__) && \ (defined(__GNUC__) || defined(_MSC_VER)) && \ (defined(i386) || defined(__i386__) || defined(_M_IX86)) #if defined(__GNUC__) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned int lo, hi; __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (sqlite_uint64)hi << 32 | lo; } #elif defined(_MSC_VER) __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ __asm { rdtsc ret ; return value at EDX:EAX } } #endif #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__x86_64__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long val; __asm__ __volatile__ ("rdtsc" : "=A" (val)); return val; } #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__ppc__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long long retval; unsigned long junk; __asm__ __volatile__ ("\n\ 1: mftbu %1\n\ mftb %L0\n\ mftbu %0\n\ cmpw %0,%1\n\ bne 1b" : "=r" (retval), "=r" (junk)); return retval; } #else /* ** asm() is needed for hardware timing support. Without asm(), ** disable the sqlite3Hwtime() routine. ** ** sqlite3Hwtime() is only used for some obscure debugging ** and analysis configurations, not in any deliverable, so this ** should not be a great loss. */ SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } #endif #endif /* !defined(SQLITE_HWTIME_H) */ /************** End of hwtime.h **********************************************/ /************** Continuing where we left off in os_common.h ******************/ static sqlite_uint64 g_start; static sqlite_uint64 g_elapsed; #define TIMER_START g_start=sqlite3Hwtime() #define TIMER_END g_elapsed=sqlite3Hwtime()-g_start #define TIMER_ELAPSED g_elapsed #else #define TIMER_START #define TIMER_END #define TIMER_ELAPSED ((sqlite_uint64)0) #endif /* ** If we compile with the SQLITE_TEST macro set, then the following block ** of code will give us the ability to simulate a disk I/O error. This ** is used for testing the I/O recovery logic. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_io_error_hit; SQLITE_API extern int sqlite3_io_error_hardhit; SQLITE_API extern int sqlite3_io_error_pending; SQLITE_API extern int sqlite3_io_error_persist; SQLITE_API extern int sqlite3_io_error_benign; SQLITE_API extern int sqlite3_diskfull_pending; SQLITE_API extern int sqlite3_diskfull; #define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X) #define SimulateIOError(CODE) \ if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \ || sqlite3_io_error_pending-- == 1 ) \ { local_ioerr(); CODE; } static void local_ioerr(){ IOTRACE(("IOERR\n")); sqlite3_io_error_hit++; if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++; } #define SimulateDiskfullError(CODE) \ if( sqlite3_diskfull_pending ){ \ if( sqlite3_diskfull_pending == 1 ){ \ local_ioerr(); \ sqlite3_diskfull = 1; \ sqlite3_io_error_hit = 1; \ CODE; \ }else{ \ sqlite3_diskfull_pending--; \ } \ } #else #define SimulateIOErrorBenign(X) #define SimulateIOError(A) #define SimulateDiskfullError(A) #endif /* defined(SQLITE_TEST) */ /* ** When testing, keep a count of the number of open files. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_open_file_count; #define OpenCounter(X) sqlite3_open_file_count+=(X) #else #define OpenCounter(X) #endif /* defined(SQLITE_TEST) */ #endif /* !defined(_OS_COMMON_H_) */ /************** End of os_common.h *******************************************/ /************** Begin file ctime.c *******************************************/ /* DO NOT EDIT! ** This file is automatically generated by the script in the canonical ** SQLite source tree at tool/mkctimec.tcl. ** ** To modify this header, edit any of the various lists in that script ** which specify categories of generated conditionals in this file. */ /* ** 2010 February 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file implements routines used to report what compile-time options ** SQLite was built with. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* IMP: R-16824-07538 */ /* ** Include the configuration header output by 'configure' if we're using the ** autoconf-based build */ #if defined(_HAVE_SQLITE_CONFIG_H) && !defined(SQLITECONFIG_H) /* #include "config.h" */ #define SQLITECONFIG_H 1 #endif /* These macros are provided to "stringify" the value of the define ** for those options in which the value is meaningful. */ #define CTIMEOPT_VAL_(opt) #opt #define CTIMEOPT_VAL(opt) CTIMEOPT_VAL_(opt) /* Like CTIMEOPT_VAL, but especially for SQLITE_DEFAULT_LOOKASIDE. This ** option requires a separate macro because legal values contain a single ** comma. e.g. (-DSQLITE_DEFAULT_LOOKASIDE="100,100") */ #define CTIMEOPT_VAL2_(opt1,opt2) #opt1 "," #opt2 #define CTIMEOPT_VAL2(opt) CTIMEOPT_VAL2_(opt) /* #include "sqliteInt.h" */ /* ** An array of names of all compile-time options. This array should ** be sorted A-Z. ** ** This array looks large, but in a typical installation actually uses ** only a handful of compile-time options, so most times this array is usually ** rather short and uses little memory space. */ static const char * const sqlite3azCompileOpt[] = { #ifdef SQLITE_32BIT_ROWID "32BIT_ROWID", #endif #ifdef SQLITE_4_BYTE_ALIGNED_MALLOC "4_BYTE_ALIGNED_MALLOC", #endif #ifdef SQLITE_64BIT_STATS "64BIT_STATS", #endif #ifdef SQLITE_ALLOW_COVERING_INDEX_SCAN # if SQLITE_ALLOW_COVERING_INDEX_SCAN != 1 "ALLOW_COVERING_INDEX_SCAN=" CTIMEOPT_VAL(SQLITE_ALLOW_COVERING_INDEX_SCAN), # endif #endif #ifdef SQLITE_ALLOW_URI_AUTHORITY "ALLOW_URI_AUTHORITY", #endif #ifdef SQLITE_ATOMIC_INTRINSICS "ATOMIC_INTRINSICS=" CTIMEOPT_VAL(SQLITE_ATOMIC_INTRINSICS), #endif #ifdef SQLITE_BITMASK_TYPE "BITMASK_TYPE=" CTIMEOPT_VAL(SQLITE_BITMASK_TYPE), #endif #ifdef SQLITE_BUG_COMPATIBLE_20160819 "BUG_COMPATIBLE_20160819", #endif #ifdef SQLITE_CASE_SENSITIVE_LIKE "CASE_SENSITIVE_LIKE", #endif #ifdef SQLITE_CHECK_PAGES "CHECK_PAGES", #endif #if defined(__clang__) && defined(__clang_major__) "COMPILER=clang-" CTIMEOPT_VAL(__clang_major__) "." CTIMEOPT_VAL(__clang_minor__) "." CTIMEOPT_VAL(__clang_patchlevel__), #elif defined(_MSC_VER) "COMPILER=msvc-" CTIMEOPT_VAL(_MSC_VER), #elif defined(__GNUC__) && defined(__VERSION__) "COMPILER=gcc-" __VERSION__, #endif #ifdef SQLITE_COVERAGE_TEST "COVERAGE_TEST", #endif #ifdef SQLITE_DEBUG "DEBUG", #endif #ifdef SQLITE_DEFAULT_AUTOMATIC_INDEX "DEFAULT_AUTOMATIC_INDEX", #endif #ifdef SQLITE_DEFAULT_AUTOVACUUM "DEFAULT_AUTOVACUUM", #endif #ifdef SQLITE_DEFAULT_CACHE_SIZE "DEFAULT_CACHE_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_CACHE_SIZE), #endif #ifdef SQLITE_DEFAULT_CKPTFULLFSYNC "DEFAULT_CKPTFULLFSYNC", #endif #ifdef SQLITE_DEFAULT_FILE_FORMAT "DEFAULT_FILE_FORMAT=" CTIMEOPT_VAL(SQLITE_DEFAULT_FILE_FORMAT), #endif #ifdef SQLITE_DEFAULT_FILE_PERMISSIONS "DEFAULT_FILE_PERMISSIONS=" CTIMEOPT_VAL(SQLITE_DEFAULT_FILE_PERMISSIONS), #endif #ifdef SQLITE_DEFAULT_FOREIGN_KEYS "DEFAULT_FOREIGN_KEYS", #endif #ifdef SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT "DEFAULT_JOURNAL_SIZE_LIMIT=" CTIMEOPT_VAL(SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT), #endif #ifdef SQLITE_DEFAULT_LOCKING_MODE "DEFAULT_LOCKING_MODE=" CTIMEOPT_VAL(SQLITE_DEFAULT_LOCKING_MODE), #endif #ifdef SQLITE_DEFAULT_LOOKASIDE "DEFAULT_LOOKASIDE=" CTIMEOPT_VAL2(SQLITE_DEFAULT_LOOKASIDE), #endif #ifdef SQLITE_DEFAULT_MEMSTATUS # if SQLITE_DEFAULT_MEMSTATUS != 1 "DEFAULT_MEMSTATUS=" CTIMEOPT_VAL(SQLITE_DEFAULT_MEMSTATUS), # endif #endif #ifdef SQLITE_DEFAULT_MMAP_SIZE "DEFAULT_MMAP_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_MMAP_SIZE), #endif #ifdef SQLITE_DEFAULT_PAGE_SIZE "DEFAULT_PAGE_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_PAGE_SIZE), #endif #ifdef SQLITE_DEFAULT_PCACHE_INITSZ "DEFAULT_PCACHE_INITSZ=" CTIMEOPT_VAL(SQLITE_DEFAULT_PCACHE_INITSZ), #endif #ifdef SQLITE_DEFAULT_PROXYDIR_PERMISSIONS "DEFAULT_PROXYDIR_PERMISSIONS=" CTIMEOPT_VAL(SQLITE_DEFAULT_PROXYDIR_PERMISSIONS), #endif #ifdef SQLITE_DEFAULT_RECURSIVE_TRIGGERS "DEFAULT_RECURSIVE_TRIGGERS", #endif #ifdef SQLITE_DEFAULT_ROWEST "DEFAULT_ROWEST=" CTIMEOPT_VAL(SQLITE_DEFAULT_ROWEST), #endif #ifdef SQLITE_DEFAULT_SECTOR_SIZE "DEFAULT_SECTOR_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_SECTOR_SIZE), #endif #ifdef SQLITE_DEFAULT_SYNCHRONOUS "DEFAULT_SYNCHRONOUS=" CTIMEOPT_VAL(SQLITE_DEFAULT_SYNCHRONOUS), #endif #ifdef SQLITE_DEFAULT_WAL_AUTOCHECKPOINT "DEFAULT_WAL_AUTOCHECKPOINT=" CTIMEOPT_VAL(SQLITE_DEFAULT_WAL_AUTOCHECKPOINT), #endif #ifdef SQLITE_DEFAULT_WAL_SYNCHRONOUS "DEFAULT_WAL_SYNCHRONOUS=" CTIMEOPT_VAL(SQLITE_DEFAULT_WAL_SYNCHRONOUS), #endif #ifdef SQLITE_DEFAULT_WORKER_THREADS "DEFAULT_WORKER_THREADS=" CTIMEOPT_VAL(SQLITE_DEFAULT_WORKER_THREADS), #endif #ifdef SQLITE_DIRECT_OVERFLOW_READ "DIRECT_OVERFLOW_READ", #endif #ifdef SQLITE_DISABLE_DIRSYNC "DISABLE_DIRSYNC", #endif #ifdef SQLITE_DISABLE_FTS3_UNICODE "DISABLE_FTS3_UNICODE", #endif #ifdef SQLITE_DISABLE_FTS4_DEFERRED "DISABLE_FTS4_DEFERRED", #endif #ifdef SQLITE_DISABLE_INTRINSIC "DISABLE_INTRINSIC", #endif #ifdef SQLITE_DISABLE_LFS "DISABLE_LFS", #endif #ifdef SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS "DISABLE_PAGECACHE_OVERFLOW_STATS", #endif #ifdef SQLITE_DISABLE_SKIPAHEAD_DISTINCT "DISABLE_SKIPAHEAD_DISTINCT", #endif #ifdef SQLITE_ENABLE_8_3_NAMES "ENABLE_8_3_NAMES=" CTIMEOPT_VAL(SQLITE_ENABLE_8_3_NAMES), #endif #ifdef SQLITE_ENABLE_API_ARMOR "ENABLE_API_ARMOR", #endif #ifdef SQLITE_ENABLE_ATOMIC_WRITE "ENABLE_ATOMIC_WRITE", #endif #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE "ENABLE_BATCH_ATOMIC_WRITE", #endif #ifdef SQLITE_ENABLE_BYTECODE_VTAB "ENABLE_BYTECODE_VTAB", #endif #ifdef SQLITE_ENABLE_CEROD "ENABLE_CEROD=" CTIMEOPT_VAL(SQLITE_ENABLE_CEROD), #endif #ifdef SQLITE_ENABLE_COLUMN_METADATA "ENABLE_COLUMN_METADATA", #endif #ifdef SQLITE_ENABLE_COLUMN_USED_MASK "ENABLE_COLUMN_USED_MASK", #endif #ifdef SQLITE_ENABLE_COSTMULT "ENABLE_COSTMULT", #endif #ifdef SQLITE_ENABLE_CURSOR_HINTS "ENABLE_CURSOR_HINTS", #endif #ifdef SQLITE_ENABLE_DBPAGE_VTAB "ENABLE_DBPAGE_VTAB", #endif #ifdef SQLITE_ENABLE_DBSTAT_VTAB "ENABLE_DBSTAT_VTAB", #endif #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT "ENABLE_EXPENSIVE_ASSERT", #endif #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS "ENABLE_EXPLAIN_COMMENTS", #endif #ifdef SQLITE_ENABLE_FTS3 "ENABLE_FTS3", #endif #ifdef SQLITE_ENABLE_FTS3_PARENTHESIS "ENABLE_FTS3_PARENTHESIS", #endif #ifdef SQLITE_ENABLE_FTS3_TOKENIZER "ENABLE_FTS3_TOKENIZER", #endif #ifdef SQLITE_ENABLE_FTS4 "ENABLE_FTS4", #endif #ifdef SQLITE_ENABLE_FTS5 "ENABLE_FTS5", #endif #ifdef SQLITE_ENABLE_GEOPOLY "ENABLE_GEOPOLY", #endif #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS "ENABLE_HIDDEN_COLUMNS", #endif #ifdef SQLITE_ENABLE_ICU "ENABLE_ICU", #endif #ifdef SQLITE_ENABLE_IOTRACE "ENABLE_IOTRACE", #endif #ifdef SQLITE_ENABLE_LOAD_EXTENSION "ENABLE_LOAD_EXTENSION", #endif #ifdef SQLITE_ENABLE_LOCKING_STYLE "ENABLE_LOCKING_STYLE=" CTIMEOPT_VAL(SQLITE_ENABLE_LOCKING_STYLE), #endif #ifdef SQLITE_ENABLE_MATH_FUNCTIONS "ENABLE_MATH_FUNCTIONS", #endif #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT "ENABLE_MEMORY_MANAGEMENT", #endif #ifdef SQLITE_ENABLE_MEMSYS3 "ENABLE_MEMSYS3", #endif #ifdef SQLITE_ENABLE_MEMSYS5 "ENABLE_MEMSYS5", #endif #ifdef SQLITE_ENABLE_MULTIPLEX "ENABLE_MULTIPLEX", #endif #ifdef SQLITE_ENABLE_NORMALIZE "ENABLE_NORMALIZE", #endif #ifdef SQLITE_ENABLE_NULL_TRIM "ENABLE_NULL_TRIM", #endif #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC "ENABLE_OFFSET_SQL_FUNC", #endif #ifdef SQLITE_ENABLE_OVERSIZE_CELL_CHECK "ENABLE_OVERSIZE_CELL_CHECK", #endif #ifdef SQLITE_ENABLE_PREUPDATE_HOOK "ENABLE_PREUPDATE_HOOK", #endif #ifdef SQLITE_ENABLE_QPSG "ENABLE_QPSG", #endif #ifdef SQLITE_ENABLE_RBU "ENABLE_RBU", #endif #ifdef SQLITE_ENABLE_RTREE "ENABLE_RTREE", #endif #ifdef SQLITE_ENABLE_SELECTTRACE "ENABLE_SELECTTRACE", #endif #ifdef SQLITE_ENABLE_SESSION "ENABLE_SESSION", #endif #ifdef SQLITE_ENABLE_SNAPSHOT "ENABLE_SNAPSHOT", #endif #ifdef SQLITE_ENABLE_SORTER_REFERENCES "ENABLE_SORTER_REFERENCES", #endif #ifdef SQLITE_ENABLE_SQLLOG "ENABLE_SQLLOG", #endif #ifdef SQLITE_ENABLE_STAT4 "ENABLE_STAT4", #endif #ifdef SQLITE_ENABLE_STMTVTAB "ENABLE_STMTVTAB", #endif #ifdef SQLITE_ENABLE_STMT_SCANSTATUS "ENABLE_STMT_SCANSTATUS", #endif #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION "ENABLE_UNKNOWN_SQL_FUNCTION", #endif #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY "ENABLE_UNLOCK_NOTIFY", #endif #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT "ENABLE_UPDATE_DELETE_LIMIT", #endif #ifdef SQLITE_ENABLE_URI_00_ERROR "ENABLE_URI_00_ERROR", #endif #ifdef SQLITE_ENABLE_VFSTRACE "ENABLE_VFSTRACE", #endif #ifdef SQLITE_ENABLE_WHERETRACE "ENABLE_WHERETRACE", #endif #ifdef SQLITE_ENABLE_ZIPVFS "ENABLE_ZIPVFS", #endif #ifdef SQLITE_EXPLAIN_ESTIMATED_ROWS "EXPLAIN_ESTIMATED_ROWS", #endif #ifdef SQLITE_EXTRA_IFNULLROW "EXTRA_IFNULLROW", #endif #ifdef SQLITE_EXTRA_INIT "EXTRA_INIT=" CTIMEOPT_VAL(SQLITE_EXTRA_INIT), #endif #ifdef SQLITE_EXTRA_SHUTDOWN "EXTRA_SHUTDOWN=" CTIMEOPT_VAL(SQLITE_EXTRA_SHUTDOWN), #endif #ifdef SQLITE_FTS3_MAX_EXPR_DEPTH "FTS3_MAX_EXPR_DEPTH=" CTIMEOPT_VAL(SQLITE_FTS3_MAX_EXPR_DEPTH), #endif #ifdef SQLITE_FTS5_ENABLE_TEST_MI "FTS5_ENABLE_TEST_MI", #endif #ifdef SQLITE_FTS5_NO_WITHOUT_ROWID "FTS5_NO_WITHOUT_ROWID", #endif #if HAVE_ISNAN || SQLITE_HAVE_ISNAN "HAVE_ISNAN", #endif #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX # if SQLITE_HOMEGROWN_RECURSIVE_MUTEX != 1 "HOMEGROWN_RECURSIVE_MUTEX=" CTIMEOPT_VAL(SQLITE_HOMEGROWN_RECURSIVE_MUTEX), # endif #endif #ifdef SQLITE_IGNORE_AFP_LOCK_ERRORS "IGNORE_AFP_LOCK_ERRORS", #endif #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS "IGNORE_FLOCK_LOCK_ERRORS", #endif #ifdef SQLITE_INLINE_MEMCPY "INLINE_MEMCPY", #endif #ifdef SQLITE_INT64_TYPE "INT64_TYPE", #endif #ifdef SQLITE_INTEGRITY_CHECK_ERROR_MAX "INTEGRITY_CHECK_ERROR_MAX=" CTIMEOPT_VAL(SQLITE_INTEGRITY_CHECK_ERROR_MAX), #endif #ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS "LIKE_DOESNT_MATCH_BLOBS", #endif #ifdef SQLITE_LOCK_TRACE "LOCK_TRACE", #endif #ifdef SQLITE_LOG_CACHE_SPILL "LOG_CACHE_SPILL", #endif #ifdef SQLITE_MALLOC_SOFT_LIMIT "MALLOC_SOFT_LIMIT=" CTIMEOPT_VAL(SQLITE_MALLOC_SOFT_LIMIT), #endif #ifdef SQLITE_MAX_ATTACHED "MAX_ATTACHED=" CTIMEOPT_VAL(SQLITE_MAX_ATTACHED), #endif #ifdef SQLITE_MAX_COLUMN "MAX_COLUMN=" CTIMEOPT_VAL(SQLITE_MAX_COLUMN), #endif #ifdef SQLITE_MAX_COMPOUND_SELECT "MAX_COMPOUND_SELECT=" CTIMEOPT_VAL(SQLITE_MAX_COMPOUND_SELECT), #endif #ifdef SQLITE_MAX_DEFAULT_PAGE_SIZE "MAX_DEFAULT_PAGE_SIZE=" CTIMEOPT_VAL(SQLITE_MAX_DEFAULT_PAGE_SIZE), #endif #ifdef SQLITE_MAX_EXPR_DEPTH "MAX_EXPR_DEPTH=" CTIMEOPT_VAL(SQLITE_MAX_EXPR_DEPTH), #endif #ifdef SQLITE_MAX_FUNCTION_ARG "MAX_FUNCTION_ARG=" CTIMEOPT_VAL(SQLITE_MAX_FUNCTION_ARG), #endif #ifdef SQLITE_MAX_LENGTH "MAX_LENGTH=" CTIMEOPT_VAL(SQLITE_MAX_LENGTH), #endif #ifdef SQLITE_MAX_LIKE_PATTERN_LENGTH "MAX_LIKE_PATTERN_LENGTH=" CTIMEOPT_VAL(SQLITE_MAX_LIKE_PATTERN_LENGTH), #endif #ifdef SQLITE_MAX_MEMORY "MAX_MEMORY=" CTIMEOPT_VAL(SQLITE_MAX_MEMORY), #endif #ifdef SQLITE_MAX_MMAP_SIZE "MAX_MMAP_SIZE=" CTIMEOPT_VAL(SQLITE_MAX_MMAP_SIZE), #endif #ifdef SQLITE_MAX_MMAP_SIZE_ "MAX_MMAP_SIZE_=" CTIMEOPT_VAL(SQLITE_MAX_MMAP_SIZE_), #endif #ifdef SQLITE_MAX_PAGE_COUNT "MAX_PAGE_COUNT=" CTIMEOPT_VAL(SQLITE_MAX_PAGE_COUNT), #endif #ifdef SQLITE_MAX_PAGE_SIZE "MAX_PAGE_SIZE=" CTIMEOPT_VAL(SQLITE_MAX_PAGE_SIZE), #endif #ifdef SQLITE_MAX_SCHEMA_RETRY "MAX_SCHEMA_RETRY=" CTIMEOPT_VAL(SQLITE_MAX_SCHEMA_RETRY), #endif #ifdef SQLITE_MAX_SQL_LENGTH "MAX_SQL_LENGTH=" CTIMEOPT_VAL(SQLITE_MAX_SQL_LENGTH), #endif #ifdef SQLITE_MAX_TRIGGER_DEPTH "MAX_TRIGGER_DEPTH=" CTIMEOPT_VAL(SQLITE_MAX_TRIGGER_DEPTH), #endif #ifdef SQLITE_MAX_VARIABLE_NUMBER "MAX_VARIABLE_NUMBER=" CTIMEOPT_VAL(SQLITE_MAX_VARIABLE_NUMBER), #endif #ifdef SQLITE_MAX_VDBE_OP "MAX_VDBE_OP=" CTIMEOPT_VAL(SQLITE_MAX_VDBE_OP), #endif #ifdef SQLITE_MAX_WORKER_THREADS "MAX_WORKER_THREADS=" CTIMEOPT_VAL(SQLITE_MAX_WORKER_THREADS), #endif #ifdef SQLITE_MEMDEBUG "MEMDEBUG", #endif #ifdef SQLITE_MIXED_ENDIAN_64BIT_FLOAT "MIXED_ENDIAN_64BIT_FLOAT", #endif #ifdef SQLITE_MMAP_READWRITE "MMAP_READWRITE", #endif #ifdef SQLITE_MUTEX_NOOP "MUTEX_NOOP", #endif #ifdef SQLITE_MUTEX_OMIT "MUTEX_OMIT", #endif #ifdef SQLITE_MUTEX_PTHREADS "MUTEX_PTHREADS", #endif #ifdef SQLITE_MUTEX_W32 "MUTEX_W32", #endif #ifdef SQLITE_NEED_ERR_NAME "NEED_ERR_NAME", #endif #ifdef SQLITE_NO_SYNC "NO_SYNC", #endif #ifdef SQLITE_OMIT_ALTERTABLE "OMIT_ALTERTABLE", #endif #ifdef SQLITE_OMIT_ANALYZE "OMIT_ANALYZE", #endif #ifdef SQLITE_OMIT_ATTACH "OMIT_ATTACH", #endif #ifdef SQLITE_OMIT_AUTHORIZATION "OMIT_AUTHORIZATION", #endif #ifdef SQLITE_OMIT_AUTOINCREMENT "OMIT_AUTOINCREMENT", #endif #ifdef SQLITE_OMIT_AUTOINIT "OMIT_AUTOINIT", #endif #ifdef SQLITE_OMIT_AUTOMATIC_INDEX "OMIT_AUTOMATIC_INDEX", #endif #ifdef SQLITE_OMIT_AUTORESET "OMIT_AUTORESET", #endif #ifdef SQLITE_OMIT_AUTOVACUUM "OMIT_AUTOVACUUM", #endif #ifdef SQLITE_OMIT_BETWEEN_OPTIMIZATION "OMIT_BETWEEN_OPTIMIZATION", #endif #ifdef SQLITE_OMIT_BLOB_LITERAL "OMIT_BLOB_LITERAL", #endif #ifdef SQLITE_OMIT_CAST "OMIT_CAST", #endif #ifdef SQLITE_OMIT_CHECK "OMIT_CHECK", #endif #ifdef SQLITE_OMIT_COMPLETE "OMIT_COMPLETE", #endif #ifdef SQLITE_OMIT_COMPOUND_SELECT "OMIT_COMPOUND_SELECT", #endif #ifdef SQLITE_OMIT_CONFLICT_CLAUSE "OMIT_CONFLICT_CLAUSE", #endif #ifdef SQLITE_OMIT_CTE "OMIT_CTE", #endif #if defined(SQLITE_OMIT_DATETIME_FUNCS) || defined(SQLITE_OMIT_FLOATING_POINT) "OMIT_DATETIME_FUNCS", #endif #ifdef SQLITE_OMIT_DECLTYPE "OMIT_DECLTYPE", #endif #ifdef SQLITE_OMIT_DEPRECATED "OMIT_DEPRECATED", #endif #ifdef SQLITE_OMIT_DESERIALIZE "OMIT_DESERIALIZE", #endif #ifdef SQLITE_OMIT_DISKIO "OMIT_DISKIO", #endif #ifdef SQLITE_OMIT_EXPLAIN "OMIT_EXPLAIN", #endif #ifdef SQLITE_OMIT_FLAG_PRAGMAS "OMIT_FLAG_PRAGMAS", #endif #ifdef SQLITE_OMIT_FLOATING_POINT "OMIT_FLOATING_POINT", #endif #ifdef SQLITE_OMIT_FOREIGN_KEY "OMIT_FOREIGN_KEY", #endif #ifdef SQLITE_OMIT_GET_TABLE "OMIT_GET_TABLE", #endif #ifdef SQLITE_OMIT_HEX_INTEGER "OMIT_HEX_INTEGER", #endif #ifdef SQLITE_OMIT_INCRBLOB "OMIT_INCRBLOB", #endif #ifdef SQLITE_OMIT_INTEGRITY_CHECK "OMIT_INTEGRITY_CHECK", #endif #ifdef SQLITE_OMIT_INTROSPECTION_PRAGMAS "OMIT_INTROSPECTION_PRAGMAS", #endif #ifdef SQLITE_OMIT_JSON "OMIT_JSON", #endif #ifdef SQLITE_OMIT_LIKE_OPTIMIZATION "OMIT_LIKE_OPTIMIZATION", #endif #ifdef SQLITE_OMIT_LOAD_EXTENSION "OMIT_LOAD_EXTENSION", #endif #ifdef SQLITE_OMIT_LOCALTIME "OMIT_LOCALTIME", #endif #ifdef SQLITE_OMIT_LOOKASIDE "OMIT_LOOKASIDE", #endif #ifdef SQLITE_OMIT_MEMORYDB "OMIT_MEMORYDB", #endif #ifdef SQLITE_OMIT_OR_OPTIMIZATION "OMIT_OR_OPTIMIZATION", #endif #ifdef SQLITE_OMIT_PAGER_PRAGMAS "OMIT_PAGER_PRAGMAS", #endif #ifdef SQLITE_OMIT_PARSER_TRACE "OMIT_PARSER_TRACE", #endif #ifdef SQLITE_OMIT_POPEN "OMIT_POPEN", #endif #ifdef SQLITE_OMIT_PRAGMA "OMIT_PRAGMA", #endif #ifdef SQLITE_OMIT_PROGRESS_CALLBACK "OMIT_PROGRESS_CALLBACK", #endif #ifdef SQLITE_OMIT_QUICKBALANCE "OMIT_QUICKBALANCE", #endif #ifdef SQLITE_OMIT_REINDEX "OMIT_REINDEX", #endif #ifdef SQLITE_OMIT_SCHEMA_PRAGMAS "OMIT_SCHEMA_PRAGMAS", #endif #ifdef SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS "OMIT_SCHEMA_VERSION_PRAGMAS", #endif #ifdef SQLITE_OMIT_SHARED_CACHE "OMIT_SHARED_CACHE", #endif #ifdef SQLITE_OMIT_SHUTDOWN_DIRECTORIES "OMIT_SHUTDOWN_DIRECTORIES", #endif #ifdef SQLITE_OMIT_SUBQUERY "OMIT_SUBQUERY", #endif #ifdef SQLITE_OMIT_TCL_VARIABLE "OMIT_TCL_VARIABLE", #endif #ifdef SQLITE_OMIT_TEMPDB "OMIT_TEMPDB", #endif #ifdef SQLITE_OMIT_TEST_CONTROL "OMIT_TEST_CONTROL", #endif #ifdef SQLITE_OMIT_TRACE # if SQLITE_OMIT_TRACE != 1 "OMIT_TRACE=" CTIMEOPT_VAL(SQLITE_OMIT_TRACE), # endif #endif #ifdef SQLITE_OMIT_TRIGGER "OMIT_TRIGGER", #endif #ifdef SQLITE_OMIT_TRUNCATE_OPTIMIZATION "OMIT_TRUNCATE_OPTIMIZATION", #endif #ifdef SQLITE_OMIT_UTF16 "OMIT_UTF16", #endif #ifdef SQLITE_OMIT_VACUUM "OMIT_VACUUM", #endif #ifdef SQLITE_OMIT_VIEW "OMIT_VIEW", #endif #ifdef SQLITE_OMIT_VIRTUALTABLE "OMIT_VIRTUALTABLE", #endif #ifdef SQLITE_OMIT_WAL "OMIT_WAL", #endif #ifdef SQLITE_OMIT_WSD "OMIT_WSD", #endif #ifdef SQLITE_OMIT_XFER_OPT "OMIT_XFER_OPT", #endif #ifdef SQLITE_PCACHE_SEPARATE_HEADER "PCACHE_SEPARATE_HEADER", #endif #ifdef SQLITE_PERFORMANCE_TRACE "PERFORMANCE_TRACE", #endif #ifdef SQLITE_POWERSAFE_OVERWRITE # if SQLITE_POWERSAFE_OVERWRITE != 1 "POWERSAFE_OVERWRITE=" CTIMEOPT_VAL(SQLITE_POWERSAFE_OVERWRITE), # endif #endif #ifdef SQLITE_PREFER_PROXY_LOCKING "PREFER_PROXY_LOCKING", #endif #ifdef SQLITE_PROXY_DEBUG "PROXY_DEBUG", #endif #ifdef SQLITE_REVERSE_UNORDERED_SELECTS "REVERSE_UNORDERED_SELECTS", #endif #ifdef SQLITE_RTREE_INT_ONLY "RTREE_INT_ONLY", #endif #ifdef SQLITE_SECURE_DELETE "SECURE_DELETE", #endif #ifdef SQLITE_SMALL_STACK "SMALL_STACK", #endif #ifdef SQLITE_SORTER_PMASZ "SORTER_PMASZ=" CTIMEOPT_VAL(SQLITE_SORTER_PMASZ), #endif #ifdef SQLITE_SOUNDEX "SOUNDEX", #endif #ifdef SQLITE_STAT4_SAMPLES "STAT4_SAMPLES=" CTIMEOPT_VAL(SQLITE_STAT4_SAMPLES), #endif #ifdef SQLITE_STMTJRNL_SPILL "STMTJRNL_SPILL=" CTIMEOPT_VAL(SQLITE_STMTJRNL_SPILL), #endif #ifdef SQLITE_SUBSTR_COMPATIBILITY "SUBSTR_COMPATIBILITY", #endif #if (!defined(SQLITE_WIN32_MALLOC) \ && !defined(SQLITE_ZERO_MALLOC) \ && !defined(SQLITE_MEMDEBUG) \ ) || defined(SQLITE_SYSTEM_MALLOC) "SYSTEM_MALLOC", #endif #ifdef SQLITE_TCL "TCL", #endif #ifdef SQLITE_TEMP_STORE "TEMP_STORE=" CTIMEOPT_VAL(SQLITE_TEMP_STORE), #endif #ifdef SQLITE_TEST "TEST", #endif #if defined(SQLITE_THREADSAFE) "THREADSAFE=" CTIMEOPT_VAL(SQLITE_THREADSAFE), #elif defined(THREADSAFE) "THREADSAFE=" CTIMEOPT_VAL(THREADSAFE), #else "THREADSAFE=1", #endif #ifdef SQLITE_UNLINK_AFTER_CLOSE "UNLINK_AFTER_CLOSE", #endif #ifdef SQLITE_UNTESTABLE "UNTESTABLE", #endif #ifdef SQLITE_USER_AUTHENTICATION "USER_AUTHENTICATION", #endif #ifdef SQLITE_USE_ALLOCA "USE_ALLOCA", #endif #ifdef SQLITE_USE_FCNTL_TRACE "USE_FCNTL_TRACE", #endif #ifdef SQLITE_USE_URI "USE_URI", #endif #ifdef SQLITE_VDBE_COVERAGE "VDBE_COVERAGE", #endif #ifdef SQLITE_WIN32_MALLOC "WIN32_MALLOC", #endif #ifdef SQLITE_ZERO_MALLOC "ZERO_MALLOC", #endif } ; SQLITE_PRIVATE const char **sqlite3CompileOptions(int *pnOpt){ *pnOpt = sizeof(sqlite3azCompileOpt) / sizeof(sqlite3azCompileOpt[0]); return (const char**)sqlite3azCompileOpt; } #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ /************** End of ctime.c ***********************************************/ /************** Begin file global.c ******************************************/ /* ** 2008 June 13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains definitions of global variables and constants. */ /* #include "sqliteInt.h" */ /* An array to map all upper-case characters into their corresponding ** lower-case character. ** ** SQLite only considers US-ASCII (or EBCDIC) characters. We do not ** handle case conversions for the UTF character set since the tables ** involved are nearly as big or bigger than SQLite itself. */ SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[] = { #ifdef SQLITE_ASCII 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 97, 98, 99,100,101,102,103, 104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121, 122, 91, 92, 93, 94, 95, 96, 97, 98, 99,100,101,102,103,104,105,106,107, 108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125, 126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161, 162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179, 180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197, 198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215, 216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233, 234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251, 252,253,254,255, #endif #ifdef SQLITE_EBCDIC 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, /* 0x */ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 1x */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 2x */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, /* 3x */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, /* 4x */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, /* 5x */ 96, 97, 98, 99,100,101,102,103,104,105,106,107,108,109,110,111, /* 6x */ 112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127, /* 7x */ 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, /* 8x */ 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, /* 9x */ 160,161,162,163,164,165,166,167,168,169,170,171,140,141,142,175, /* Ax */ 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, /* Bx */ 192,129,130,131,132,133,134,135,136,137,202,203,204,205,206,207, /* Cx */ 208,145,146,147,148,149,150,151,152,153,218,219,220,221,222,223, /* Dx */ 224,225,162,163,164,165,166,167,168,169,234,235,236,237,238,239, /* Ex */ 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255, /* Fx */ #endif /* All of the upper-to-lower conversion data is above. The following ** 18 integers are completely unrelated. They are appended to the ** sqlite3UpperToLower[] array to avoid UBSAN warnings. Here's what is ** going on: ** ** The SQL comparison operators (<>, =, >, <=, <, and >=) are implemented ** by invoking sqlite3MemCompare(A,B) which compares values A and B and ** returns negative, zero, or positive if A is less then, equal to, or ** greater than B, respectively. Then the true false results is found by ** consulting sqlite3aLTb[opcode], sqlite3aEQb[opcode], or ** sqlite3aGTb[opcode] depending on whether the result of compare(A,B) ** is negative, zero, or positive, where opcode is the specific opcode. ** The only works because the comparison opcodes are consecutive and in ** this order: NE EQ GT LE LT GE. Various assert()s throughout the code ** ensure that is the case. ** ** These elements must be appended to another array. Otherwise the ** index (here shown as [256-OP_Ne]) would be out-of-bounds and thus ** be undefined behavior. That's goofy, but the C-standards people thought ** it was a good idea, so here we are. */ /* NE EQ GT LE LT GE */ 1, 0, 0, 1, 1, 0, /* aLTb[]: Use when compare(A,B) less than zero */ 0, 1, 0, 1, 0, 1, /* aEQb[]: Use when compare(A,B) equals zero */ 1, 0, 1, 0, 0, 1 /* aGTb[]: Use when compare(A,B) greater than zero*/ }; SQLITE_PRIVATE const unsigned char *sqlite3aLTb = &sqlite3UpperToLower[256-OP_Ne]; SQLITE_PRIVATE const unsigned char *sqlite3aEQb = &sqlite3UpperToLower[256+6-OP_Ne]; SQLITE_PRIVATE const unsigned char *sqlite3aGTb = &sqlite3UpperToLower[256+12-OP_Ne]; /* ** The following 256 byte lookup table is used to support SQLites built-in ** equivalents to the following standard library functions: ** ** isspace() 0x01 ** isalpha() 0x02 ** isdigit() 0x04 ** isalnum() 0x06 ** isxdigit() 0x08 ** toupper() 0x20 ** SQLite identifier character 0x40 ** Quote character 0x80 ** ** Bit 0x20 is set if the mapped character requires translation to upper ** case. i.e. if the character is a lower-case ASCII character. ** If x is a lower-case ASCII character, then its upper-case equivalent ** is (x - 0x20). Therefore toupper() can be implemented as: ** ** (x & ~(map[x]&0x20)) ** ** The equivalent of tolower() is implemented using the sqlite3UpperToLower[] ** array. tolower() is used more often than toupper() by SQLite. ** ** Bit 0x40 is set if the character is non-alphanumeric and can be used in an ** SQLite identifier. Identifiers are alphanumerics, "_", "$", and any ** non-ASCII UTF character. Hence the test for whether or not a character is ** part of an identifier is 0x46. */ SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[256] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00..07 ........ */ 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, /* 08..0f ........ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 10..17 ........ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 18..1f ........ */ 0x01, 0x00, 0x80, 0x00, 0x40, 0x00, 0x00, 0x80, /* 20..27 !"#$%&' */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 28..2f ()*+,-./ */ 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, /* 30..37 01234567 */ 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 38..3f 89:;<=>? */ 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x02, /* 40..47 @ABCDEFG */ 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, /* 48..4f HIJKLMNO */ 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, /* 50..57 PQRSTUVW */ 0x02, 0x02, 0x02, 0x80, 0x00, 0x00, 0x00, 0x40, /* 58..5f XYZ[\]^_ */ 0x80, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x22, /* 60..67 `abcdefg */ 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, /* 68..6f hijklmno */ 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, /* 70..77 pqrstuvw */ 0x22, 0x22, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, /* 78..7f xyz{|}~. */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 80..87 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 88..8f ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 90..97 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 98..9f ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* a0..a7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* a8..af ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* b0..b7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* b8..bf ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* c0..c7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* c8..cf ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* d0..d7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* d8..df ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* e0..e7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* e8..ef ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* f0..f7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40 /* f8..ff ........ */ }; /* EVIDENCE-OF: R-02982-34736 In order to maintain full backwards ** compatibility for legacy applications, the URI filename capability is ** disabled by default. ** ** EVIDENCE-OF: R-38799-08373 URI filenames can be enabled or disabled ** using the SQLITE_USE_URI=1 or SQLITE_USE_URI=0 compile-time options. ** ** EVIDENCE-OF: R-43642-56306 By default, URI handling is globally ** disabled. The default value may be changed by compiling with the ** SQLITE_USE_URI symbol defined. */ #ifndef SQLITE_USE_URI # define SQLITE_USE_URI 0 #endif /* EVIDENCE-OF: R-38720-18127 The default setting is determined by the ** SQLITE_ALLOW_COVERING_INDEX_SCAN compile-time option, or is "on" if ** that compile-time option is omitted. */ #if !defined(SQLITE_ALLOW_COVERING_INDEX_SCAN) # define SQLITE_ALLOW_COVERING_INDEX_SCAN 1 #else # if !SQLITE_ALLOW_COVERING_INDEX_SCAN # error "Compile-time disabling of covering index scan using the\ -DSQLITE_ALLOW_COVERING_INDEX_SCAN=0 option is deprecated.\ Contact SQLite developers if this is a problem for you, and\ delete this #error macro to continue with your build." # endif #endif /* The minimum PMA size is set to this value multiplied by the database ** page size in bytes. */ #ifndef SQLITE_SORTER_PMASZ # define SQLITE_SORTER_PMASZ 250 #endif /* Statement journals spill to disk when their size exceeds the following ** threshold (in bytes). 0 means that statement journals are created and ** written to disk immediately (the default behavior for SQLite versions ** before 3.12.0). -1 means always keep the entire statement journal in ** memory. (The statement journal is also always held entirely in memory ** if journal_mode=MEMORY or if temp_store=MEMORY, regardless of this ** setting.) */ #ifndef SQLITE_STMTJRNL_SPILL # define SQLITE_STMTJRNL_SPILL (64*1024) #endif /* ** The default lookaside-configuration, the format "SZ,N". SZ is the ** number of bytes in each lookaside slot (should be a multiple of 8) ** and N is the number of slots. The lookaside-configuration can be ** changed as start-time using sqlite3_config(SQLITE_CONFIG_LOOKASIDE) ** or at run-time for an individual database connection using ** sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE); ** ** With the two-size-lookaside enhancement, less lookaside is required. ** The default configuration of 1200,40 actually provides 30 1200-byte slots ** and 93 128-byte slots, which is more lookaside than is available ** using the older 1200,100 configuration without two-size-lookaside. */ #ifndef SQLITE_DEFAULT_LOOKASIDE # ifdef SQLITE_OMIT_TWOSIZE_LOOKASIDE # define SQLITE_DEFAULT_LOOKASIDE 1200,100 /* 120KB of memory */ # else # define SQLITE_DEFAULT_LOOKASIDE 1200,40 /* 48KB of memory */ # endif #endif /* The default maximum size of an in-memory database created using ** sqlite3_deserialize() */ #ifndef SQLITE_MEMDB_DEFAULT_MAXSIZE # define SQLITE_MEMDB_DEFAULT_MAXSIZE 1073741824 #endif /* ** The following singleton contains the global configuration for ** the SQLite library. */ SQLITE_PRIVATE SQLITE_WSD struct Sqlite3Config sqlite3Config = { SQLITE_DEFAULT_MEMSTATUS, /* bMemstat */ 1, /* bCoreMutex */ SQLITE_THREADSAFE==1, /* bFullMutex */ SQLITE_USE_URI, /* bOpenUri */ SQLITE_ALLOW_COVERING_INDEX_SCAN, /* bUseCis */ 0, /* bSmallMalloc */ 1, /* bExtraSchemaChecks */ 0x7ffffffe, /* mxStrlen */ 0, /* neverCorrupt */ SQLITE_DEFAULT_LOOKASIDE, /* szLookaside, nLookaside */ SQLITE_STMTJRNL_SPILL, /* nStmtSpill */ {0,0,0,0,0,0,0,0}, /* m */ {0,0,0,0,0,0,0,0,0}, /* mutex */ {0,0,0,0,0,0,0,0,0,0,0,0,0},/* pcache2 */ (void*)0, /* pHeap */ 0, /* nHeap */ 0, 0, /* mnHeap, mxHeap */ SQLITE_DEFAULT_MMAP_SIZE, /* szMmap */ SQLITE_MAX_MMAP_SIZE, /* mxMmap */ (void*)0, /* pPage */ 0, /* szPage */ SQLITE_DEFAULT_PCACHE_INITSZ, /* nPage */ 0, /* mxParserStack */ 0, /* sharedCacheEnabled */ SQLITE_SORTER_PMASZ, /* szPma */ /* All the rest should always be initialized to zero */ 0, /* isInit */ 0, /* inProgress */ 0, /* isMutexInit */ 0, /* isMallocInit */ 0, /* isPCacheInit */ 0, /* nRefInitMutex */ 0, /* pInitMutex */ 0, /* xLog */ 0, /* pLogArg */ #ifdef SQLITE_ENABLE_SQLLOG 0, /* xSqllog */ 0, /* pSqllogArg */ #endif #ifdef SQLITE_VDBE_COVERAGE 0, /* xVdbeBranch */ 0, /* pVbeBranchArg */ #endif #ifndef SQLITE_OMIT_DESERIALIZE SQLITE_MEMDB_DEFAULT_MAXSIZE, /* mxMemdbSize */ #endif #ifndef SQLITE_UNTESTABLE 0, /* xTestCallback */ #endif 0, /* bLocaltimeFault */ 0, /* xAltLocaltime */ 0x7ffffffe, /* iOnceResetThreshold */ SQLITE_DEFAULT_SORTERREF_SIZE, /* szSorterRef */ 0, /* iPrngSeed */ }; /* ** Hash table for global functions - functions common to all ** database connections. After initialization, this table is ** read-only. */ SQLITE_PRIVATE FuncDefHash sqlite3BuiltinFunctions; #if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_DEBUG) /* ** Counter used for coverage testing. Does not come into play for ** release builds. ** ** Access to this global variable is not mutex protected. This might ** result in TSAN warnings. But as the variable does not exist in ** release builds, that should not be a concern. */ SQLITE_PRIVATE unsigned int sqlite3CoverageCounter; #endif /* SQLITE_COVERAGE_TEST || SQLITE_DEBUG */ #ifdef VDBE_PROFILE /* ** The following performance counter can be used in place of ** sqlite3Hwtime() for profiling. This is a no-op on standard builds. */ SQLITE_PRIVATE sqlite3_uint64 sqlite3NProfileCnt = 0; #endif /* ** The value of the "pending" byte must be 0x40000000 (1 byte past the ** 1-gibabyte boundary) in a compatible database. SQLite never uses ** the database page that contains the pending byte. It never attempts ** to read or write that page. The pending byte page is set aside ** for use by the VFS layers as space for managing file locks. ** ** During testing, it is often desirable to move the pending byte to ** a different position in the file. This allows code that has to ** deal with the pending byte to run on files that are much smaller ** than 1 GiB. The sqlite3_test_control() interface can be used to ** move the pending byte. ** ** IMPORTANT: Changing the pending byte to any value other than ** 0x40000000 results in an incompatible database file format! ** Changing the pending byte during operation will result in undefined ** and incorrect behavior. */ #ifndef SQLITE_OMIT_WSD SQLITE_PRIVATE int sqlite3PendingByte = 0x40000000; #endif /* ** Tracing flags set by SQLITE_TESTCTRL_TRACEFLAGS. */ SQLITE_PRIVATE u32 sqlite3SelectTrace = 0; SQLITE_PRIVATE u32 sqlite3WhereTrace = 0; /* #include "opcodes.h" */ /* ** Properties of opcodes. The OPFLG_INITIALIZER macro is ** created by mkopcodeh.awk during compilation. Data is obtained ** from the comments following the "case OP_xxxx:" statements in ** the vdbe.c file. */ SQLITE_PRIVATE const unsigned char sqlite3OpcodeProperty[] = OPFLG_INITIALIZER; /* ** Name of the default collating sequence */ SQLITE_PRIVATE const char sqlite3StrBINARY[] = "BINARY"; /* ** Standard typenames. These names must match the COLTYPE_* definitions. ** Adjust the SQLITE_N_STDTYPE value if adding or removing entries. ** ** sqlite3StdType[] The actual names of the datatypes. ** ** sqlite3StdTypeLen[] The length (in bytes) of each entry ** in sqlite3StdType[]. ** ** sqlite3StdTypeAffinity[] The affinity associated with each entry ** in sqlite3StdType[]. ** ** sqlite3StdTypeMap[] The type value (as returned from ** sqlite3_column_type() or sqlite3_value_type()) ** for each entry in sqlite3StdType[]. */ SQLITE_PRIVATE const unsigned char sqlite3StdTypeLen[] = { 3, 4, 3, 7, 4, 4 }; SQLITE_PRIVATE const char sqlite3StdTypeAffinity[] = { SQLITE_AFF_NUMERIC, SQLITE_AFF_BLOB, SQLITE_AFF_INTEGER, SQLITE_AFF_INTEGER, SQLITE_AFF_REAL, SQLITE_AFF_TEXT }; SQLITE_PRIVATE const char sqlite3StdTypeMap[] = { 0, SQLITE_BLOB, SQLITE_INTEGER, SQLITE_INTEGER, SQLITE_FLOAT, SQLITE_TEXT }; SQLITE_PRIVATE const char *sqlite3StdType[] = { "ANY", "BLOB", "INT", "INTEGER", "REAL", "TEXT" }; /************** End of global.c **********************************************/ /************** Begin file status.c ******************************************/ /* ** 2008 June 18 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This module implements the sqlite3_status() interface and related ** functionality. */ /* #include "sqliteInt.h" */ /************** Include vdbeInt.h in the middle of status.c ******************/ /************** Begin file vdbeInt.h *****************************************/ /* ** 2003 September 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the header file for information that is private to the ** VDBE. This information used to all be at the top of the single ** source code file "vdbe.c". When that file became too big (over ** 6000 lines long) it was split up into several smaller files and ** this header information was factored out. */ #ifndef SQLITE_VDBEINT_H #define SQLITE_VDBEINT_H /* ** The maximum number of times that a statement will try to reparse ** itself before giving up and returning SQLITE_SCHEMA. */ #ifndef SQLITE_MAX_SCHEMA_RETRY # define SQLITE_MAX_SCHEMA_RETRY 50 #endif /* ** VDBE_DISPLAY_P4 is true or false depending on whether or not the ** "explain" P4 display logic is enabled. */ #if !defined(SQLITE_OMIT_EXPLAIN) || !defined(NDEBUG) \ || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) \ || defined(SQLITE_ENABLE_BYTECODE_VTAB) # define VDBE_DISPLAY_P4 1 #else # define VDBE_DISPLAY_P4 0 #endif /* ** SQL is translated into a sequence of instructions to be ** executed by a virtual machine. Each instruction is an instance ** of the following structure. */ typedef struct VdbeOp Op; /* ** Boolean values */ typedef unsigned Bool; /* Opaque type used by code in vdbesort.c */ typedef struct VdbeSorter VdbeSorter; /* Elements of the linked list at Vdbe.pAuxData */ typedef struct AuxData AuxData; /* Types of VDBE cursors */ #define CURTYPE_BTREE 0 #define CURTYPE_SORTER 1 #define CURTYPE_VTAB 2 #define CURTYPE_PSEUDO 3 /* ** A VdbeCursor is an superclass (a wrapper) for various cursor objects: ** ** * A b-tree cursor ** - In the main database or in an ephemeral database ** - On either an index or a table ** * A sorter ** * A virtual table ** * A one-row "pseudotable" stored in a single register */ typedef struct VdbeCursor VdbeCursor; struct VdbeCursor { u8 eCurType; /* One of the CURTYPE_* values above */ i8 iDb; /* Index of cursor database in db->aDb[] */ u8 nullRow; /* True if pointing to a row with no data */ u8 deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */ u8 isTable; /* True for rowid tables. False for indexes */ #ifdef SQLITE_DEBUG u8 seekOp; /* Most recent seek operation on this cursor */ u8 wrFlag; /* The wrFlag argument to sqlite3BtreeCursor() */ #endif Bool isEphemeral:1; /* True for an ephemeral table */ Bool useRandomRowid:1; /* Generate new record numbers semi-randomly */ Bool isOrdered:1; /* True if the table is not BTREE_UNORDERED */ Bool hasBeenDuped:1; /* This cursor was source or target of OP_OpenDup */ u16 seekHit; /* See the OP_SeekHit and OP_IfNoHope opcodes */ union { /* pBtx for isEphermeral. pAltMap otherwise */ Btree *pBtx; /* Separate file holding temporary table */ u32 *aAltMap; /* Mapping from table to index column numbers */ } ub; i64 seqCount; /* Sequence counter */ /* Cached OP_Column parse information is only valid if cacheStatus matches ** Vdbe.cacheCtr. Vdbe.cacheCtr will never take on the value of ** CACHE_STALE (0) and so setting cacheStatus=CACHE_STALE guarantees that ** the cache is out of date. */ u32 cacheStatus; /* Cache is valid if this matches Vdbe.cacheCtr */ int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0 ** if there have been no prior seeks on the cursor. */ /* seekResult does not distinguish between "no seeks have ever occurred ** on this cursor" and "the most recent seek was an exact match". ** For CURTYPE_PSEUDO, seekResult is the register holding the record */ /* When a new VdbeCursor is allocated, only the fields above are zeroed. ** The fields that follow are uninitialized, and must be individually ** initialized prior to first use. */ VdbeCursor *pAltCursor; /* Associated index cursor from which to read */ union { BtCursor *pCursor; /* CURTYPE_BTREE or _PSEUDO. Btree cursor */ sqlite3_vtab_cursor *pVCur; /* CURTYPE_VTAB. Vtab cursor */ VdbeSorter *pSorter; /* CURTYPE_SORTER. Sorter object */ } uc; KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */ u32 iHdrOffset; /* Offset to next unparsed byte of the header */ Pgno pgnoRoot; /* Root page of the open btree cursor */ i16 nField; /* Number of fields in the header */ u16 nHdrParsed; /* Number of header fields parsed so far */ i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */ u32 *aOffset; /* Pointer to aType[nField] */ const u8 *aRow; /* Data for the current row, if all on one page */ u32 payloadSize; /* Total number of bytes in the record */ u32 szRow; /* Byte available in aRow */ #ifdef SQLITE_ENABLE_COLUMN_USED_MASK u64 maskUsed; /* Mask of columns used by this cursor */ #endif /* 2*nField extra array elements allocated for aType[], beyond the one ** static element declared in the structure. nField total array slots for ** aType[] and nField+1 array slots for aOffset[] */ u32 aType[1]; /* Type values record decode. MUST BE LAST */ }; /* ** A value for VdbeCursor.cacheStatus that means the cache is always invalid. */ #define CACHE_STALE 0 /* ** When a sub-program is executed (OP_Program), a structure of this type ** is allocated to store the current value of the program counter, as ** well as the current memory cell array and various other frame specific ** values stored in the Vdbe struct. When the sub-program is finished, ** these values are copied back to the Vdbe from the VdbeFrame structure, ** restoring the state of the VM to as it was before the sub-program ** began executing. ** ** The memory for a VdbeFrame object is allocated and managed by a memory ** cell in the parent (calling) frame. When the memory cell is deleted or ** overwritten, the VdbeFrame object is not freed immediately. Instead, it ** is linked into the Vdbe.pDelFrame list. The contents of the Vdbe.pDelFrame ** list is deleted when the VM is reset in VdbeHalt(). The reason for doing ** this instead of deleting the VdbeFrame immediately is to avoid recursive ** calls to sqlite3VdbeMemRelease() when the memory cells belonging to the ** child frame are released. ** ** The currently executing frame is stored in Vdbe.pFrame. Vdbe.pFrame is ** set to NULL if the currently executing frame is the main program. */ typedef struct VdbeFrame VdbeFrame; struct VdbeFrame { Vdbe *v; /* VM this frame belongs to */ VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */ Op *aOp; /* Program instructions for parent frame */ i64 *anExec; /* Event counters from parent frame */ Mem *aMem; /* Array of memory cells for parent frame */ VdbeCursor **apCsr; /* Array of Vdbe cursors for parent frame */ u8 *aOnce; /* Bitmask used by OP_Once */ void *token; /* Copy of SubProgram.token */ i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */ AuxData *pAuxData; /* Linked list of auxdata allocations */ #if SQLITE_DEBUG u32 iFrameMagic; /* magic number for sanity checking */ #endif int nCursor; /* Number of entries in apCsr */ int pc; /* Program Counter in parent (calling) frame */ int nOp; /* Size of aOp array */ int nMem; /* Number of entries in aMem */ int nChildMem; /* Number of memory cells for child frame */ int nChildCsr; /* Number of cursors for child frame */ i64 nChange; /* Statement changes (Vdbe.nChange) */ i64 nDbChange; /* Value of db->nChange */ }; /* Magic number for sanity checking on VdbeFrame objects */ #define SQLITE_FRAME_MAGIC 0x879fb71e /* ** Return a pointer to the array of registers allocated for use ** by a VdbeFrame. */ #define VdbeFrameMem(p) ((Mem *)&((u8 *)p)[ROUND8(sizeof(VdbeFrame))]) /* ** Internally, the vdbe manipulates nearly all SQL values as Mem ** structures. Each Mem struct may cache multiple representations (string, ** integer etc.) of the same value. */ struct sqlite3_value { union MemValue { double r; /* Real value used when MEM_Real is set in flags */ i64 i; /* Integer value used when MEM_Int is set in flags */ int nZero; /* Extra zero bytes when MEM_Zero and MEM_Blob set */ const char *zPType; /* Pointer type when MEM_Term|MEM_Subtype|MEM_Null */ FuncDef *pDef; /* Used only when flags==MEM_Agg */ } u; u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */ u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */ u8 eSubtype; /* Subtype for this value */ int n; /* Number of characters in string value, excluding '\0' */ char *z; /* String or BLOB value */ /* ShallowCopy only needs to copy the information above */ char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */ int szMalloc; /* Size of the zMalloc allocation */ u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */ sqlite3 *db; /* The associated database connection */ void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */ #ifdef SQLITE_DEBUG Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */ u16 mScopyFlags; /* flags value immediately after the shallow copy */ #endif }; /* ** Size of struct Mem not including the Mem.zMalloc member or anything that ** follows. */ #define MEMCELLSIZE offsetof(Mem,zMalloc) /* One or more of the following flags are set to indicate the validOK ** representations of the value stored in the Mem struct. ** ** If the MEM_Null flag is set, then the value is an SQL NULL value. ** For a pointer type created using sqlite3_bind_pointer() or ** sqlite3_result_pointer() the MEM_Term and MEM_Subtype flags are also set. ** ** If the MEM_Str flag is set then Mem.z points at a string representation. ** Usually this is encoded in the same unicode encoding as the main ** database (see below for exceptions). If the MEM_Term flag is also ** set, then the string is nul terminated. The MEM_Int and MEM_Real ** flags may coexist with the MEM_Str flag. */ #define MEM_Null 0x0001 /* Value is NULL (or a pointer) */ #define MEM_Str 0x0002 /* Value is a string */ #define MEM_Int 0x0004 /* Value is an integer */ #define MEM_Real 0x0008 /* Value is a real number */ #define MEM_Blob 0x0010 /* Value is a BLOB */ #define MEM_IntReal 0x0020 /* MEM_Int that stringifies like MEM_Real */ #define MEM_AffMask 0x003f /* Mask of affinity bits */ #define MEM_FromBind 0x0040 /* Value originates from sqlite3_bind() */ #define MEM_Undefined 0x0080 /* Value is undefined */ #define MEM_Cleared 0x0100 /* NULL set by OP_Null, not from data */ #define MEM_TypeMask 0xc1bf /* Mask of type bits */ /* Whenever Mem contains a valid string or blob representation, one of ** the following flags must be set to determine the memory management ** policy for Mem.z. The MEM_Term flag tells us whether or not the ** string is \000 or \u0000 terminated */ #define MEM_Term 0x0200 /* String in Mem.z is zero terminated */ #define MEM_Dyn 0x0400 /* Need to call Mem.xDel() on Mem.z */ #define MEM_Static 0x0800 /* Mem.z points to a static string */ #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */ #define MEM_Agg 0x2000 /* Mem.z points to an agg function context */ #define MEM_Zero 0x4000 /* Mem.i contains count of 0s appended to blob */ #define MEM_Subtype 0x8000 /* Mem.eSubtype is valid */ #ifdef SQLITE_OMIT_INCRBLOB #undef MEM_Zero #define MEM_Zero 0x0000 #endif /* Return TRUE if Mem X contains dynamically allocated content - anything ** that needs to be deallocated to avoid a leak. */ #define VdbeMemDynamic(X) \ (((X)->flags&(MEM_Agg|MEM_Dyn))!=0) /* ** Clear any existing type flags from a Mem and replace them with f */ #define MemSetTypeFlag(p, f) \ ((p)->flags = ((p)->flags&~(MEM_TypeMask|MEM_Zero))|f) /* ** True if Mem X is a NULL-nochng type. */ #define MemNullNochng(X) \ (((X)->flags&MEM_TypeMask)==(MEM_Null|MEM_Zero) \ && (X)->n==0 && (X)->u.nZero==0) /* ** Return true if a memory cell is not marked as invalid. This macro ** is for use inside assert() statements only. */ #ifdef SQLITE_DEBUG #define memIsValid(M) ((M)->flags & MEM_Undefined)==0 #endif /* ** Each auxiliary data pointer stored by a user defined function ** implementation calling sqlite3_set_auxdata() is stored in an instance ** of this structure. All such structures associated with a single VM ** are stored in a linked list headed at Vdbe.pAuxData. All are destroyed ** when the VM is halted (if not before). */ struct AuxData { int iAuxOp; /* Instruction number of OP_Function opcode */ int iAuxArg; /* Index of function argument. */ void *pAux; /* Aux data pointer */ void (*xDeleteAux)(void*); /* Destructor for the aux data */ AuxData *pNextAux; /* Next element in list */ }; /* ** The "context" argument for an installable function. A pointer to an ** instance of this structure is the first argument to the routines used ** implement the SQL functions. ** ** There is a typedef for this structure in sqlite.h. So all routines, ** even the public interface to SQLite, can use a pointer to this structure. ** But this file is the only place where the internal details of this ** structure are known. ** ** This structure is defined inside of vdbeInt.h because it uses substructures ** (Mem) which are only defined there. */ struct sqlite3_context { Mem *pOut; /* The return value is stored here */ FuncDef *pFunc; /* Pointer to function information */ Mem *pMem; /* Memory cell used to store aggregate context */ Vdbe *pVdbe; /* The VM that owns this context */ int iOp; /* Instruction number of OP_Function */ int isError; /* Error code returned by the function. */ u8 skipFlag; /* Skip accumulator loading if true */ u8 argc; /* Number of arguments */ sqlite3_value *argv[1]; /* Argument set */ }; /* A bitfield type for use inside of structures. Always follow with :N where ** N is the number of bits. */ typedef unsigned bft; /* Bit Field Type */ /* The ScanStatus object holds a single value for the ** sqlite3_stmt_scanstatus() interface. */ typedef struct ScanStatus ScanStatus; struct ScanStatus { int addrExplain; /* OP_Explain for loop */ int addrLoop; /* Address of "loops" counter */ int addrVisit; /* Address of "rows visited" counter */ int iSelectID; /* The "Select-ID" for this loop */ LogEst nEst; /* Estimated output rows per loop */ char *zName; /* Name of table or index */ }; /* The DblquoteStr object holds the text of a double-quoted ** string for a prepared statement. A linked list of these objects ** is constructed during statement parsing and is held on Vdbe.pDblStr. ** When computing a normalized SQL statement for an SQL statement, that ** list is consulted for each double-quoted identifier to see if the ** identifier should really be a string literal. */ typedef struct DblquoteStr DblquoteStr; struct DblquoteStr { DblquoteStr *pNextStr; /* Next string literal in the list */ char z[8]; /* Dequoted value for the string */ }; /* ** An instance of the virtual machine. This structure contains the complete ** state of the virtual machine. ** ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare() ** is really a pointer to an instance of this structure. */ struct Vdbe { sqlite3 *db; /* The database connection that owns this statement */ Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ Parse *pParse; /* Parsing context used to create this Vdbe */ ynVar nVar; /* Number of entries in aVar[] */ u32 iVdbeMagic; /* Magic number defining state of the SQL statement */ int nMem; /* Number of memory locations currently allocated */ int nCursor; /* Number of slots in apCsr[] */ u32 cacheCtr; /* VdbeCursor row cache generation counter */ int pc; /* The program counter */ int rc; /* Value to return */ i64 nChange; /* Number of db changes made since last reset */ int iStatement; /* Statement number (or 0 if has no opened stmt) */ i64 iCurrentTime; /* Value of julianday('now') for this statement */ i64 nFkConstraint; /* Number of imm. FK constraints this VM */ i64 nStmtDefCons; /* Number of def. constraints when stmt started */ i64 nStmtDefImmCons; /* Number of def. imm constraints when stmt started */ Mem *aMem; /* The memory locations */ Mem **apArg; /* Arguments to currently executing user function */ VdbeCursor **apCsr; /* One element of this array for each open cursor */ Mem *aVar; /* Values for the OP_Variable opcode. */ /* When allocating a new Vdbe object, all of the fields below should be ** initialized to zero or NULL */ Op *aOp; /* Space to hold the virtual machine's program */ int nOp; /* Number of instructions in the program */ int nOpAlloc; /* Slots allocated for aOp[] */ Mem *aColName; /* Column names to return */ Mem *pResultSet; /* Pointer to an array of results */ char *zErrMsg; /* Error message written here */ VList *pVList; /* Name of variables */ #ifndef SQLITE_OMIT_TRACE i64 startTime; /* Time when query started - used for profiling */ #endif #ifdef SQLITE_DEBUG int rcApp; /* errcode set by sqlite3_result_error_code() */ u32 nWrite; /* Number of write operations that have occurred */ #endif u16 nResColumn; /* Number of columns in one row of the result set */ u8 errorAction; /* Recovery action to do in case of an error */ u8 minWriteFileFormat; /* Minimum file format for writable database files */ u8 prepFlags; /* SQLITE_PREPARE_* flags */ u8 doingRerun; /* True if rerunning after an auto-reprepare */ bft expired:2; /* 1: recompile VM immediately 2: when convenient */ bft explain:2; /* True if EXPLAIN present on SQL command */ bft changeCntOn:1; /* True to update the change-counter */ bft runOnlyOnce:1; /* Automatically expire on reset */ bft usesStmtJournal:1; /* True if uses a statement journal */ bft readOnly:1; /* True for statements that do not write */ bft bIsReader:1; /* True for statements that read */ yDbMask btreeMask; /* Bitmask of db->aDb[] entries referenced */ yDbMask lockMask; /* Subset of btreeMask that requires a lock */ u32 aCounter[9]; /* Counters used by sqlite3_stmt_status() */ char *zSql; /* Text of the SQL statement that generated this */ #ifdef SQLITE_ENABLE_NORMALIZE char *zNormSql; /* Normalization of the associated SQL statement */ DblquoteStr *pDblStr; /* List of double-quoted string literals */ #endif void *pFree; /* Free this when deleting the vdbe */ VdbeFrame *pFrame; /* Parent frame */ VdbeFrame *pDelFrame; /* List of frame objects to free on VM reset */ int nFrame; /* Number of frames in pFrame list */ u32 expmask; /* Binding to these vars invalidates VM */ SubProgram *pProgram; /* Linked list of all sub-programs used by VM */ AuxData *pAuxData; /* Linked list of auxdata allocations */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS i64 *anExec; /* Number of times each op has been executed */ int nScan; /* Entries in aScan[] */ ScanStatus *aScan; /* Scan definitions for sqlite3_stmt_scanstatus() */ #endif }; /* ** The following are allowed values for Vdbe.magic */ #define VDBE_MAGIC_INIT 0x16bceaa5 /* Building a VDBE program */ #define VDBE_MAGIC_RUN 0x2df20da3 /* VDBE is ready to execute */ #define VDBE_MAGIC_HALT 0x319c2973 /* VDBE has completed execution */ #define VDBE_MAGIC_RESET 0x48fa9f76 /* Reset and ready to run again */ #define VDBE_MAGIC_DEAD 0x5606c3c8 /* The VDBE has been deallocated */ /* ** Structure used to store the context required by the ** sqlite3_preupdate_*() API functions. */ struct PreUpdate { Vdbe *v; VdbeCursor *pCsr; /* Cursor to read old values from */ int op; /* One of SQLITE_INSERT, UPDATE, DELETE */ u8 *aRecord; /* old.* database record */ KeyInfo keyinfo; UnpackedRecord *pUnpacked; /* Unpacked version of aRecord[] */ UnpackedRecord *pNewUnpacked; /* Unpacked version of new.* record */ int iNewReg; /* Register for new.* values */ int iBlobWrite; /* Value returned by preupdate_blobwrite() */ i64 iKey1; /* First key value passed to hook */ i64 iKey2; /* Second key value passed to hook */ Mem *aNew; /* Array of new.* values */ Table *pTab; /* Schema object being upated */ Index *pPk; /* PK index if pTab is WITHOUT ROWID */ }; /* ** An instance of this object is used to pass an vector of values into ** OP_VFilter, the xFilter method of a virtual table. The vector is the ** set of values on the right-hand side of an IN constraint. ** ** The value as passed into xFilter is an sqlite3_value with a "pointer" ** type, such as is generated by sqlite3_result_pointer() and read by ** sqlite3_value_pointer. Such values have MEM_Term|MEM_Subtype|MEM_Null ** and a subtype of 'p'. The sqlite3_vtab_in_first() and _next() interfaces ** know how to use this object to step through all the values in the ** right operand of the IN constraint. */ typedef struct ValueList ValueList; struct ValueList { BtCursor *pCsr; /* An ephemeral table holding all values */ sqlite3_value *pOut; /* Register to hold each decoded output value */ }; /* ** Function prototypes */ SQLITE_PRIVATE void sqlite3VdbeError(Vdbe*, const char *, ...); SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *, VdbeCursor*); void sqliteVdbePopStack(Vdbe*,int); SQLITE_PRIVATE int SQLITE_NOINLINE sqlite3VdbeFinishMoveto(VdbeCursor*); SQLITE_PRIVATE int sqlite3VdbeCursorMoveto(VdbeCursor**, u32*); SQLITE_PRIVATE int sqlite3VdbeCursorRestore(VdbeCursor*); SQLITE_PRIVATE u32 sqlite3VdbeSerialTypeLen(u32); SQLITE_PRIVATE u8 sqlite3VdbeOneByteSerialTypeLen(u8); SQLITE_PRIVATE u32 sqlite3VdbeSerialPut(unsigned char*, Mem*, u32); SQLITE_PRIVATE void sqlite3VdbeSerialGet(const unsigned char*, u32, Mem*); SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(sqlite3*, AuxData**, int, int); int sqlite2BtreeKeyCompare(BtCursor *, const void *, int, int, int *); SQLITE_PRIVATE int sqlite3VdbeIdxKeyCompare(sqlite3*,VdbeCursor*,UnpackedRecord*,int*); SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3*, BtCursor*, i64*); SQLITE_PRIVATE int sqlite3VdbeExec(Vdbe*); #if !defined(SQLITE_OMIT_EXPLAIN) || defined(SQLITE_ENABLE_BYTECODE_VTAB) SQLITE_PRIVATE int sqlite3VdbeNextOpcode(Vdbe*,Mem*,int,int*,int*,Op**); SQLITE_PRIVATE char *sqlite3VdbeDisplayP4(sqlite3*,Op*); #endif #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) SQLITE_PRIVATE char *sqlite3VdbeDisplayComment(sqlite3*,const Op*,const char*); #endif #if !defined(SQLITE_OMIT_EXPLAIN) SQLITE_PRIVATE int sqlite3VdbeList(Vdbe*); #endif SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe*); SQLITE_PRIVATE int sqlite3VdbeChangeEncoding(Mem *, int); SQLITE_PRIVATE int sqlite3VdbeMemTooBig(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemCopy(Mem*, const Mem*); SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem*, const Mem*, int); SQLITE_PRIVATE void sqlite3VdbeMemMove(Mem*, Mem*); SQLITE_PRIVATE int sqlite3VdbeMemNulTerminate(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemSetStr(Mem*, const char*, i64, u8, void(*)(void*)); SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem*, i64); #ifdef SQLITE_OMIT_FLOATING_POINT # define sqlite3VdbeMemSetDouble sqlite3VdbeMemSetInt64 #else SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem*, double); #endif SQLITE_PRIVATE void sqlite3VdbeMemSetPointer(Mem*, void*, const char*, void(*)(void*)); SQLITE_PRIVATE void sqlite3VdbeMemInit(Mem*,sqlite3*,u16); SQLITE_PRIVATE void sqlite3VdbeMemSetNull(Mem*); #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE void sqlite3VdbeMemSetZeroBlob(Mem*,int); #else SQLITE_PRIVATE int sqlite3VdbeMemSetZeroBlob(Mem*,int); #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3VdbeMemIsRowSet(const Mem*); #endif SQLITE_PRIVATE int sqlite3VdbeMemSetRowSet(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemMakeWriteable(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemStringify(Mem*, u8, u8); SQLITE_PRIVATE int sqlite3IntFloatCompare(i64,double); SQLITE_PRIVATE i64 sqlite3VdbeIntValue(const Mem*); SQLITE_PRIVATE int sqlite3VdbeMemIntegerify(Mem*); SQLITE_PRIVATE double sqlite3VdbeRealValue(Mem*); SQLITE_PRIVATE int sqlite3VdbeBooleanValue(Mem*, int ifNull); SQLITE_PRIVATE void sqlite3VdbeIntegerAffinity(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemRealify(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemNumerify(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemCast(Mem*,u8,u8); SQLITE_PRIVATE int sqlite3VdbeMemFromBtree(BtCursor*,u32,u32,Mem*); SQLITE_PRIVATE int sqlite3VdbeMemFromBtreeZeroOffset(BtCursor*,u32,Mem*); SQLITE_PRIVATE void sqlite3VdbeMemRelease(Mem *p); SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem*, FuncDef*); #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE int sqlite3VdbeMemAggValue(Mem*, Mem*, FuncDef*); #endif #if !defined(SQLITE_OMIT_EXPLAIN) || defined(SQLITE_ENABLE_BYTECODE_VTAB) SQLITE_PRIVATE const char *sqlite3OpcodeName(int); #endif SQLITE_PRIVATE int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve); SQLITE_PRIVATE int sqlite3VdbeMemClearAndResize(Mem *pMem, int n); SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *, int); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3VdbeFrameIsValid(VdbeFrame*); #endif SQLITE_PRIVATE void sqlite3VdbeFrameMemDel(void*); /* Destructor on Mem */ SQLITE_PRIVATE void sqlite3VdbeFrameDelete(VdbeFrame*); /* Actually deletes the Frame */ SQLITE_PRIVATE int sqlite3VdbeFrameRestore(VdbeFrame *); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK SQLITE_PRIVATE void sqlite3VdbePreUpdateHook( Vdbe*,VdbeCursor*,int,const char*,Table*,i64,int,int); #endif SQLITE_PRIVATE int sqlite3VdbeTransferError(Vdbe *p); SQLITE_PRIVATE int sqlite3VdbeSorterInit(sqlite3 *, int, VdbeCursor *); SQLITE_PRIVATE void sqlite3VdbeSorterReset(sqlite3 *, VdbeSorter *); SQLITE_PRIVATE void sqlite3VdbeSorterClose(sqlite3 *, VdbeCursor *); SQLITE_PRIVATE int sqlite3VdbeSorterRowkey(const VdbeCursor *, Mem *); SQLITE_PRIVATE int sqlite3VdbeSorterNext(sqlite3 *, const VdbeCursor *); SQLITE_PRIVATE int sqlite3VdbeSorterRewind(const VdbeCursor *, int *); SQLITE_PRIVATE int sqlite3VdbeSorterWrite(const VdbeCursor *, Mem *); SQLITE_PRIVATE int sqlite3VdbeSorterCompare(const VdbeCursor *, Mem *, int, int *); #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbeIncrWriteCounter(Vdbe*, VdbeCursor*); SQLITE_PRIVATE void sqlite3VdbeAssertAbortable(Vdbe*); #else # define sqlite3VdbeIncrWriteCounter(V,C) # define sqlite3VdbeAssertAbortable(V) #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe*); #else # define sqlite3VdbeEnter(X) #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0 SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe*); #else # define sqlite3VdbeLeave(X) #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbeMemAboutToChange(Vdbe*,Mem*); SQLITE_PRIVATE int sqlite3VdbeCheckMemInvariants(Mem*); #endif #ifndef SQLITE_OMIT_FOREIGN_KEY SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *, int); #else # define sqlite3VdbeCheckFk(p,i) 0 #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr); #endif #ifndef SQLITE_OMIT_UTF16 SQLITE_PRIVATE int sqlite3VdbeMemTranslate(Mem*, u8); SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem); #endif #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE int sqlite3VdbeMemExpandBlob(Mem *); #define ExpandBlob(P) (((P)->flags&MEM_Zero)?sqlite3VdbeMemExpandBlob(P):0) #else #define sqlite3VdbeMemExpandBlob(x) SQLITE_OK #define ExpandBlob(P) SQLITE_OK #endif #endif /* !defined(SQLITE_VDBEINT_H) */ /************** End of vdbeInt.h *********************************************/ /************** Continuing where we left off in status.c *********************/ /* ** Variables in which to record status information. */ #if SQLITE_PTRSIZE>4 typedef sqlite3_int64 sqlite3StatValueType; #else typedef u32 sqlite3StatValueType; #endif typedef struct sqlite3StatType sqlite3StatType; static SQLITE_WSD struct sqlite3StatType { sqlite3StatValueType nowValue[10]; /* Current value */ sqlite3StatValueType mxValue[10]; /* Maximum value */ } sqlite3Stat = { {0,}, {0,} }; /* ** Elements of sqlite3Stat[] are protected by either the memory allocator ** mutex, or by the pcache1 mutex. The following array determines which. */ static const char statMutex[] = { 0, /* SQLITE_STATUS_MEMORY_USED */ 1, /* SQLITE_STATUS_PAGECACHE_USED */ 1, /* SQLITE_STATUS_PAGECACHE_OVERFLOW */ 0, /* SQLITE_STATUS_SCRATCH_USED */ 0, /* SQLITE_STATUS_SCRATCH_OVERFLOW */ 0, /* SQLITE_STATUS_MALLOC_SIZE */ 0, /* SQLITE_STATUS_PARSER_STACK */ 1, /* SQLITE_STATUS_PAGECACHE_SIZE */ 0, /* SQLITE_STATUS_SCRATCH_SIZE */ 0, /* SQLITE_STATUS_MALLOC_COUNT */ }; /* The "wsdStat" macro will resolve to the status information ** state vector. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdStat can refer directly ** to the "sqlite3Stat" state vector declared above. */ #ifdef SQLITE_OMIT_WSD # define wsdStatInit sqlite3StatType *x = &GLOBAL(sqlite3StatType,sqlite3Stat) # define wsdStat x[0] #else # define wsdStatInit # define wsdStat sqlite3Stat #endif /* ** Return the current value of a status parameter. The caller must ** be holding the appropriate mutex. */ SQLITE_PRIVATE sqlite3_int64 sqlite3StatusValue(int op){ wsdStatInit; assert( op>=0 && op=0 && op=0 && op=0 && opwsdStat.mxValue[op] ){ wsdStat.mxValue[op] = wsdStat.nowValue[op]; } } SQLITE_PRIVATE void sqlite3StatusDown(int op, int N){ wsdStatInit; assert( N>=0 ); assert( op>=0 && op=0 && op=0 ); newValue = (sqlite3StatValueType)X; assert( op>=0 && op=0 && opwsdStat.mxValue[op] ){ wsdStat.mxValue[op] = newValue; } } /* ** Query status information. */ SQLITE_API int sqlite3_status64( int op, sqlite3_int64 *pCurrent, sqlite3_int64 *pHighwater, int resetFlag ){ sqlite3_mutex *pMutex; wsdStatInit; if( op<0 || op>=ArraySize(wsdStat.nowValue) ){ return SQLITE_MISUSE_BKPT; } #ifdef SQLITE_ENABLE_API_ARMOR if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT; #endif pMutex = statMutex[op] ? sqlite3Pcache1Mutex() : sqlite3MallocMutex(); sqlite3_mutex_enter(pMutex); *pCurrent = wsdStat.nowValue[op]; *pHighwater = wsdStat.mxValue[op]; if( resetFlag ){ wsdStat.mxValue[op] = wsdStat.nowValue[op]; } sqlite3_mutex_leave(pMutex); (void)pMutex; /* Prevent warning when SQLITE_THREADSAFE=0 */ return SQLITE_OK; } SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ sqlite3_int64 iCur = 0, iHwtr = 0; int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT; #endif rc = sqlite3_status64(op, &iCur, &iHwtr, resetFlag); if( rc==0 ){ *pCurrent = (int)iCur; *pHighwater = (int)iHwtr; } return rc; } /* ** Return the number of LookasideSlot elements on the linked list */ static u32 countLookasideSlots(LookasideSlot *p){ u32 cnt = 0; while( p ){ p = p->pNext; cnt++; } return cnt; } /* ** Count the number of slots of lookaside memory that are outstanding */ SQLITE_PRIVATE int sqlite3LookasideUsed(sqlite3 *db, int *pHighwater){ u32 nInit = countLookasideSlots(db->lookaside.pInit); u32 nFree = countLookasideSlots(db->lookaside.pFree); #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE nInit += countLookasideSlots(db->lookaside.pSmallInit); nFree += countLookasideSlots(db->lookaside.pSmallFree); #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ if( pHighwater ) *pHighwater = db->lookaside.nSlot - nInit; return db->lookaside.nSlot - (nInit+nFree); } /* ** Query status information for a single database connection */ SQLITE_API int sqlite3_db_status( sqlite3 *db, /* The database connection whose status is desired */ int op, /* Status verb */ int *pCurrent, /* Write current value here */ int *pHighwater, /* Write high-water mark here */ int resetFlag /* Reset high-water mark if true */ ){ int rc = SQLITE_OK; /* Return code */ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || pCurrent==0|| pHighwater==0 ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); switch( op ){ case SQLITE_DBSTATUS_LOOKASIDE_USED: { *pCurrent = sqlite3LookasideUsed(db, pHighwater); if( resetFlag ){ LookasideSlot *p = db->lookaside.pFree; if( p ){ while( p->pNext ) p = p->pNext; p->pNext = db->lookaside.pInit; db->lookaside.pInit = db->lookaside.pFree; db->lookaside.pFree = 0; } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE p = db->lookaside.pSmallFree; if( p ){ while( p->pNext ) p = p->pNext; p->pNext = db->lookaside.pSmallInit; db->lookaside.pSmallInit = db->lookaside.pSmallFree; db->lookaside.pSmallFree = 0; } #endif } break; } case SQLITE_DBSTATUS_LOOKASIDE_HIT: case SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE: case SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL: { testcase( op==SQLITE_DBSTATUS_LOOKASIDE_HIT ); testcase( op==SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE ); testcase( op==SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL ); assert( (op-SQLITE_DBSTATUS_LOOKASIDE_HIT)>=0 ); assert( (op-SQLITE_DBSTATUS_LOOKASIDE_HIT)<3 ); *pCurrent = 0; *pHighwater = db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT]; if( resetFlag ){ db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT] = 0; } break; } /* ** Return an approximation for the amount of memory currently used ** by all pagers associated with the given database connection. The ** highwater mark is meaningless and is returned as zero. */ case SQLITE_DBSTATUS_CACHE_USED_SHARED: case SQLITE_DBSTATUS_CACHE_USED: { int totalUsed = 0; int i; sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ Pager *pPager = sqlite3BtreePager(pBt); int nByte = sqlite3PagerMemUsed(pPager); if( op==SQLITE_DBSTATUS_CACHE_USED_SHARED ){ nByte = nByte / sqlite3BtreeConnectionCount(pBt); } totalUsed += nByte; } } sqlite3BtreeLeaveAll(db); *pCurrent = totalUsed; *pHighwater = 0; break; } /* ** *pCurrent gets an accurate estimate of the amount of memory used ** to store the schema for all databases (main, temp, and any ATTACHed ** databases. *pHighwater is set to zero. */ case SQLITE_DBSTATUS_SCHEMA_USED: { int i; /* Used to iterate through schemas */ int nByte = 0; /* Used to accumulate return value */ sqlite3BtreeEnterAll(db); db->pnBytesFreed = &nByte; for(i=0; inDb; i++){ Schema *pSchema = db->aDb[i].pSchema; if( ALWAYS(pSchema!=0) ){ HashElem *p; nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * ( pSchema->tblHash.count + pSchema->trigHash.count + pSchema->idxHash.count + pSchema->fkeyHash.count ); nByte += sqlite3_msize(pSchema->tblHash.ht); nByte += sqlite3_msize(pSchema->trigHash.ht); nByte += sqlite3_msize(pSchema->idxHash.ht); nByte += sqlite3_msize(pSchema->fkeyHash.ht); for(p=sqliteHashFirst(&pSchema->trigHash); p; p=sqliteHashNext(p)){ sqlite3DeleteTrigger(db, (Trigger*)sqliteHashData(p)); } for(p=sqliteHashFirst(&pSchema->tblHash); p; p=sqliteHashNext(p)){ sqlite3DeleteTable(db, (Table *)sqliteHashData(p)); } } } db->pnBytesFreed = 0; sqlite3BtreeLeaveAll(db); *pHighwater = 0; *pCurrent = nByte; break; } /* ** *pCurrent gets an accurate estimate of the amount of memory used ** to store all prepared statements. ** *pHighwater is set to zero. */ case SQLITE_DBSTATUS_STMT_USED: { struct Vdbe *pVdbe; /* Used to iterate through VMs */ int nByte = 0; /* Used to accumulate return value */ db->pnBytesFreed = &nByte; for(pVdbe=db->pVdbe; pVdbe; pVdbe=pVdbe->pNext){ sqlite3VdbeClearObject(db, pVdbe); sqlite3DbFree(db, pVdbe); } db->pnBytesFreed = 0; *pHighwater = 0; /* IMP: R-64479-57858 */ *pCurrent = nByte; break; } /* ** Set *pCurrent to the total cache hits or misses encountered by all ** pagers the database handle is connected to. *pHighwater is always set ** to zero. */ case SQLITE_DBSTATUS_CACHE_SPILL: op = SQLITE_DBSTATUS_CACHE_WRITE+1; /* no break */ deliberate_fall_through case SQLITE_DBSTATUS_CACHE_HIT: case SQLITE_DBSTATUS_CACHE_MISS: case SQLITE_DBSTATUS_CACHE_WRITE:{ int i; int nRet = 0; assert( SQLITE_DBSTATUS_CACHE_MISS==SQLITE_DBSTATUS_CACHE_HIT+1 ); assert( SQLITE_DBSTATUS_CACHE_WRITE==SQLITE_DBSTATUS_CACHE_HIT+2 ); for(i=0; inDb; i++){ if( db->aDb[i].pBt ){ Pager *pPager = sqlite3BtreePager(db->aDb[i].pBt); sqlite3PagerCacheStat(pPager, op, resetFlag, &nRet); } } *pHighwater = 0; /* IMP: R-42420-56072 */ /* IMP: R-54100-20147 */ /* IMP: R-29431-39229 */ *pCurrent = nRet; break; } /* Set *pCurrent to non-zero if there are unresolved deferred foreign ** key constraints. Set *pCurrent to zero if all foreign key constraints ** have been satisfied. The *pHighwater is always set to zero. */ case SQLITE_DBSTATUS_DEFERRED_FKS: { *pHighwater = 0; /* IMP: R-11967-56545 */ *pCurrent = db->nDeferredImmCons>0 || db->nDeferredCons>0; break; } default: { rc = SQLITE_ERROR; } } sqlite3_mutex_leave(db->mutex); return rc; } /************** End of status.c **********************************************/ /************** Begin file date.c ********************************************/ /* ** 2003 October 31 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement date and time ** functions for SQLite. ** ** There is only one exported symbol in this file - the function ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file. ** All other code has file scope. ** ** SQLite processes all times and dates as julian day numbers. The ** dates and times are stored as the number of days since noon ** in Greenwich on November 24, 4714 B.C. according to the Gregorian ** calendar system. ** ** 1970-01-01 00:00:00 is JD 2440587.5 ** 2000-01-01 00:00:00 is JD 2451544.5 ** ** This implementation requires years to be expressed as a 4-digit number ** which means that only dates between 0000-01-01 and 9999-12-31 can ** be represented, even though julian day numbers allow a much wider ** range of dates. ** ** The Gregorian calendar system is used for all dates and times, ** even those that predate the Gregorian calendar. Historians usually ** use the julian calendar for dates prior to 1582-10-15 and for some ** dates afterwards, depending on locale. Beware of this difference. ** ** The conversion algorithms are implemented based on descriptions ** in the following text: ** ** Jean Meeus ** Astronomical Algorithms, 2nd Edition, 1998 ** ISBN 0-943396-61-1 ** Willmann-Bell, Inc ** Richmond, Virginia (USA) */ /* #include "sqliteInt.h" */ /* #include */ /* #include */ #include #ifndef SQLITE_OMIT_DATETIME_FUNCS /* ** The MSVC CRT on Windows CE may not have a localtime() function. ** So declare a substitute. The substitute function itself is ** defined in "os_win.c". */ #if !defined(SQLITE_OMIT_LOCALTIME) && defined(_WIN32_WCE) && \ (!defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API) struct tm *__cdecl localtime(const time_t *); #endif /* ** A structure for holding a single date and time. */ typedef struct DateTime DateTime; struct DateTime { sqlite3_int64 iJD; /* The julian day number times 86400000 */ int Y, M, D; /* Year, month, and day */ int h, m; /* Hour and minutes */ int tz; /* Timezone offset in minutes */ double s; /* Seconds */ char validJD; /* True (1) if iJD is valid */ char rawS; /* Raw numeric value stored in s */ char validYMD; /* True (1) if Y,M,D are valid */ char validHMS; /* True (1) if h,m,s are valid */ char validTZ; /* True (1) if tz is valid */ char tzSet; /* Timezone was set explicitly */ char isError; /* An overflow has occurred */ }; /* ** Convert zDate into one or more integers according to the conversion ** specifier zFormat. ** ** zFormat[] contains 4 characters for each integer converted, except for ** the last integer which is specified by three characters. The meaning ** of a four-character format specifiers ABCD is: ** ** A: number of digits to convert. Always "2" or "4". ** B: minimum value. Always "0" or "1". ** C: maximum value, decoded as: ** a: 12 ** b: 14 ** c: 24 ** d: 31 ** e: 59 ** f: 9999 ** D: the separator character, or \000 to indicate this is the ** last number to convert. ** ** Example: To translate an ISO-8601 date YYYY-MM-DD, the format would ** be "40f-21a-20c". The "40f-" indicates the 4-digit year followed by "-". ** The "21a-" indicates the 2-digit month followed by "-". The "20c" indicates ** the 2-digit day which is the last integer in the set. ** ** The function returns the number of successful conversions. */ static int getDigits(const char *zDate, const char *zFormat, ...){ /* The aMx[] array translates the 3rd character of each format ** spec into a max size: a b c d e f */ static const u16 aMx[] = { 12, 14, 24, 31, 59, 9999 }; va_list ap; int cnt = 0; char nextC; va_start(ap, zFormat); do{ char N = zFormat[0] - '0'; char min = zFormat[1] - '0'; int val = 0; u16 max; assert( zFormat[2]>='a' && zFormat[2]<='f' ); max = aMx[zFormat[2] - 'a']; nextC = zFormat[3]; val = 0; while( N-- ){ if( !sqlite3Isdigit(*zDate) ){ goto end_getDigits; } val = val*10 + *zDate - '0'; zDate++; } if( val<(int)min || val>(int)max || (nextC!=0 && nextC!=*zDate) ){ goto end_getDigits; } *va_arg(ap,int*) = val; zDate++; cnt++; zFormat += 4; }while( nextC ); end_getDigits: va_end(ap); return cnt; } /* ** Parse a timezone extension on the end of a date-time. ** The extension is of the form: ** ** (+/-)HH:MM ** ** Or the "zulu" notation: ** ** Z ** ** If the parse is successful, write the number of minutes ** of change in p->tz and return 0. If a parser error occurs, ** return non-zero. ** ** A missing specifier is not considered an error. */ static int parseTimezone(const char *zDate, DateTime *p){ int sgn = 0; int nHr, nMn; int c; while( sqlite3Isspace(*zDate) ){ zDate++; } p->tz = 0; c = *zDate; if( c=='-' ){ sgn = -1; }else if( c=='+' ){ sgn = +1; }else if( c=='Z' || c=='z' ){ zDate++; goto zulu_time; }else{ return c!=0; } zDate++; if( getDigits(zDate, "20b:20e", &nHr, &nMn)!=2 ){ return 1; } zDate += 5; p->tz = sgn*(nMn + nHr*60); zulu_time: while( sqlite3Isspace(*zDate) ){ zDate++; } p->tzSet = 1; return *zDate!=0; } /* ** Parse times of the form HH:MM or HH:MM:SS or HH:MM:SS.FFFF. ** The HH, MM, and SS must each be exactly 2 digits. The ** fractional seconds FFFF can be one or more digits. ** ** Return 1 if there is a parsing error and 0 on success. */ static int parseHhMmSs(const char *zDate, DateTime *p){ int h, m, s; double ms = 0.0; if( getDigits(zDate, "20c:20e", &h, &m)!=2 ){ return 1; } zDate += 5; if( *zDate==':' ){ zDate++; if( getDigits(zDate, "20e", &s)!=1 ){ return 1; } zDate += 2; if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){ double rScale = 1.0; zDate++; while( sqlite3Isdigit(*zDate) ){ ms = ms*10.0 + *zDate - '0'; rScale *= 10.0; zDate++; } ms /= rScale; } }else{ s = 0; } p->validJD = 0; p->rawS = 0; p->validHMS = 1; p->h = h; p->m = m; p->s = s + ms; if( parseTimezone(zDate, p) ) return 1; p->validTZ = (p->tz!=0)?1:0; return 0; } /* ** Put the DateTime object into its error state. */ static void datetimeError(DateTime *p){ memset(p, 0, sizeof(*p)); p->isError = 1; } /* ** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume ** that the YYYY-MM-DD is according to the Gregorian calendar. ** ** Reference: Meeus page 61 */ static void computeJD(DateTime *p){ int Y, M, D, A, B, X1, X2; if( p->validJD ) return; if( p->validYMD ){ Y = p->Y; M = p->M; D = p->D; }else{ Y = 2000; /* If no YMD specified, assume 2000-Jan-01 */ M = 1; D = 1; } if( Y<-4713 || Y>9999 || p->rawS ){ datetimeError(p); return; } if( M<=2 ){ Y--; M += 12; } A = Y/100; B = 2 - A + (A/4); X1 = 36525*(Y+4716)/100; X2 = 306001*(M+1)/10000; p->iJD = (sqlite3_int64)((X1 + X2 + D + B - 1524.5 ) * 86400000); p->validJD = 1; if( p->validHMS ){ p->iJD += p->h*3600000 + p->m*60000 + (sqlite3_int64)(p->s*1000); if( p->validTZ ){ p->iJD -= p->tz*60000; p->validYMD = 0; p->validHMS = 0; p->validTZ = 0; } } } /* ** Parse dates of the form ** ** YYYY-MM-DD HH:MM:SS.FFF ** YYYY-MM-DD HH:MM:SS ** YYYY-MM-DD HH:MM ** YYYY-MM-DD ** ** Write the result into the DateTime structure and return 0 ** on success and 1 if the input string is not a well-formed ** date. */ static int parseYyyyMmDd(const char *zDate, DateTime *p){ int Y, M, D, neg; if( zDate[0]=='-' ){ zDate++; neg = 1; }else{ neg = 0; } if( getDigits(zDate, "40f-21a-21d", &Y, &M, &D)!=3 ){ return 1; } zDate += 10; while( sqlite3Isspace(*zDate) || 'T'==*(u8*)zDate ){ zDate++; } if( parseHhMmSs(zDate, p)==0 ){ /* We got the time */ }else if( *zDate==0 ){ p->validHMS = 0; }else{ return 1; } p->validJD = 0; p->validYMD = 1; p->Y = neg ? -Y : Y; p->M = M; p->D = D; if( p->validTZ ){ computeJD(p); } return 0; } /* ** Set the time to the current time reported by the VFS. ** ** Return the number of errors. */ static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){ p->iJD = sqlite3StmtCurrentTime(context); if( p->iJD>0 ){ p->validJD = 1; return 0; }else{ return 1; } } /* ** Input "r" is a numeric quantity which might be a julian day number, ** or the number of seconds since 1970. If the value if r is within ** range of a julian day number, install it as such and set validJD. ** If the value is a valid unix timestamp, put it in p->s and set p->rawS. */ static void setRawDateNumber(DateTime *p, double r){ p->s = r; p->rawS = 1; if( r>=0.0 && r<5373484.5 ){ p->iJD = (sqlite3_int64)(r*86400000.0 + 0.5); p->validJD = 1; } } /* ** Attempt to parse the given string into a julian day number. Return ** the number of errors. ** ** The following are acceptable forms for the input string: ** ** YYYY-MM-DD HH:MM:SS.FFF +/-HH:MM ** DDDD.DD ** now ** ** In the first form, the +/-HH:MM is always optional. The fractional ** seconds extension (the ".FFF") is optional. The seconds portion ** (":SS.FFF") is option. The year and date can be omitted as long ** as there is a time string. The time string can be omitted as long ** as there is a year and date. */ static int parseDateOrTime( sqlite3_context *context, const char *zDate, DateTime *p ){ double r; if( parseYyyyMmDd(zDate,p)==0 ){ return 0; }else if( parseHhMmSs(zDate, p)==0 ){ return 0; }else if( sqlite3StrICmp(zDate,"now")==0 && sqlite3NotPureFunc(context) ){ return setDateTimeToCurrent(context, p); }else if( sqlite3AtoF(zDate, &r, sqlite3Strlen30(zDate), SQLITE_UTF8)>0 ){ setRawDateNumber(p, r); return 0; } return 1; } /* The julian day number for 9999-12-31 23:59:59.999 is 5373484.4999999. ** Multiplying this by 86400000 gives 464269060799999 as the maximum value ** for DateTime.iJD. ** ** But some older compilers (ex: gcc 4.2.1 on older Macs) cannot deal with ** such a large integer literal, so we have to encode it. */ #define INT_464269060799999 ((((i64)0x1a640)<<32)|0x1072fdff) /* ** Return TRUE if the given julian day number is within range. ** ** The input is the JulianDay times 86400000. */ static int validJulianDay(sqlite3_int64 iJD){ return iJD>=0 && iJD<=INT_464269060799999; } /* ** Compute the Year, Month, and Day from the julian day number. */ static void computeYMD(DateTime *p){ int Z, A, B, C, D, E, X1; if( p->validYMD ) return; if( !p->validJD ){ p->Y = 2000; p->M = 1; p->D = 1; }else if( !validJulianDay(p->iJD) ){ datetimeError(p); return; }else{ Z = (int)((p->iJD + 43200000)/86400000); A = (int)((Z - 1867216.25)/36524.25); A = Z + 1 + A - (A/4); B = A + 1524; C = (int)((B - 122.1)/365.25); D = (36525*(C&32767))/100; E = (int)((B-D)/30.6001); X1 = (int)(30.6001*E); p->D = B - D - X1; p->M = E<14 ? E-1 : E-13; p->Y = p->M>2 ? C - 4716 : C - 4715; } p->validYMD = 1; } /* ** Compute the Hour, Minute, and Seconds from the julian day number. */ static void computeHMS(DateTime *p){ int s; if( p->validHMS ) return; computeJD(p); s = (int)((p->iJD + 43200000) % 86400000); p->s = s/1000.0; s = (int)p->s; p->s -= s; p->h = s/3600; s -= p->h*3600; p->m = s/60; p->s += s - p->m*60; p->rawS = 0; p->validHMS = 1; } /* ** Compute both YMD and HMS */ static void computeYMD_HMS(DateTime *p){ computeYMD(p); computeHMS(p); } /* ** Clear the YMD and HMS and the TZ */ static void clearYMD_HMS_TZ(DateTime *p){ p->validYMD = 0; p->validHMS = 0; p->validTZ = 0; } #ifndef SQLITE_OMIT_LOCALTIME /* ** On recent Windows platforms, the localtime_s() function is available ** as part of the "Secure CRT". It is essentially equivalent to ** localtime_r() available under most POSIX platforms, except that the ** order of the parameters is reversed. ** ** See http://msdn.microsoft.com/en-us/library/a442x3ye(VS.80).aspx. ** ** If the user has not indicated to use localtime_r() or localtime_s() ** already, check for an MSVC build environment that provides ** localtime_s(). */ #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S \ && defined(_MSC_VER) && defined(_CRT_INSECURE_DEPRECATE) #undef HAVE_LOCALTIME_S #define HAVE_LOCALTIME_S 1 #endif /* ** The following routine implements the rough equivalent of localtime_r() ** using whatever operating-system specific localtime facility that ** is available. This routine returns 0 on success and ** non-zero on any kind of error. ** ** If the sqlite3GlobalConfig.bLocaltimeFault variable is non-zero then this ** routine will always fail. If bLocaltimeFault is nonzero and ** sqlite3GlobalConfig.xAltLocaltime is not NULL, then xAltLocaltime() is ** invoked in place of the OS-defined localtime() function. ** ** EVIDENCE-OF: R-62172-00036 In this implementation, the standard C ** library function localtime_r() is used to assist in the calculation of ** local time. */ static int osLocaltime(time_t *t, struct tm *pTm){ int rc; #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S struct tm *pX; #if SQLITE_THREADSAFE>0 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif sqlite3_mutex_enter(mutex); pX = localtime(t); #ifndef SQLITE_UNTESTABLE if( sqlite3GlobalConfig.bLocaltimeFault ){ if( sqlite3GlobalConfig.xAltLocaltime!=0 && 0==sqlite3GlobalConfig.xAltLocaltime((const void*)t,(void*)pTm) ){ pX = pTm; }else{ pX = 0; } } #endif if( pX ) *pTm = *pX; #if SQLITE_THREADSAFE>0 sqlite3_mutex_leave(mutex); #endif rc = pX==0; #else #ifndef SQLITE_UNTESTABLE if( sqlite3GlobalConfig.bLocaltimeFault ){ if( sqlite3GlobalConfig.xAltLocaltime!=0 ){ return sqlite3GlobalConfig.xAltLocaltime((const void*)t,(void*)pTm); }else{ return 1; } } #endif #if HAVE_LOCALTIME_R rc = localtime_r(t, pTm)==0; #else rc = localtime_s(pTm, t); #endif /* HAVE_LOCALTIME_R */ #endif /* HAVE_LOCALTIME_R || HAVE_LOCALTIME_S */ return rc; } #endif /* SQLITE_OMIT_LOCALTIME */ #ifndef SQLITE_OMIT_LOCALTIME /* ** Assuming the input DateTime is UTC, move it to its localtime equivalent. */ static int toLocaltime( DateTime *p, /* Date at which to calculate offset */ sqlite3_context *pCtx /* Write error here if one occurs */ ){ time_t t; struct tm sLocal; int iYearDiff; /* Initialize the contents of sLocal to avoid a compiler warning. */ memset(&sLocal, 0, sizeof(sLocal)); computeJD(p); if( p->iJD<2108667600*(i64)100000 /* 1970-01-01 */ || p->iJD>2130141456*(i64)100000 /* 2038-01-18 */ ){ /* EVIDENCE-OF: R-55269-29598 The localtime_r() C function normally only ** works for years between 1970 and 2037. For dates outside this range, ** SQLite attempts to map the year into an equivalent year within this ** range, do the calculation, then map the year back. */ DateTime x = *p; computeYMD_HMS(&x); iYearDiff = (2000 + x.Y%4) - x.Y; x.Y += iYearDiff; x.validJD = 0; computeJD(&x); t = (time_t)(x.iJD/1000 - 21086676*(i64)10000); }else{ iYearDiff = 0; t = (time_t)(p->iJD/1000 - 21086676*(i64)10000); } if( osLocaltime(&t, &sLocal) ){ sqlite3_result_error(pCtx, "local time unavailable", -1); return SQLITE_ERROR; } p->Y = sLocal.tm_year + 1900 - iYearDiff; p->M = sLocal.tm_mon + 1; p->D = sLocal.tm_mday; p->h = sLocal.tm_hour; p->m = sLocal.tm_min; p->s = sLocal.tm_sec; p->validYMD = 1; p->validHMS = 1; p->validJD = 0; p->rawS = 0; p->validTZ = 0; p->isError = 0; return SQLITE_OK; } #endif /* SQLITE_OMIT_LOCALTIME */ /* ** The following table defines various date transformations of the form ** ** 'NNN days' ** ** Where NNN is an arbitrary floating-point number and "days" can be one ** of several units of time. */ static const struct { u8 nName; /* Length of the name */ char zName[7]; /* Name of the transformation */ float rLimit; /* Maximum NNN value for this transform */ float rXform; /* Constant used for this transform */ } aXformType[] = { { 6, "second", 4.6427e+14, 1.0 }, { 6, "minute", 7.7379e+12, 60.0 }, { 4, "hour", 1.2897e+11, 3600.0 }, { 3, "day", 5373485.0, 86400.0 }, { 5, "month", 176546.0, 2592000.0 }, { 4, "year", 14713.0, 31536000.0 }, }; /* ** Process a modifier to a date-time stamp. The modifiers are ** as follows: ** ** NNN days ** NNN hours ** NNN minutes ** NNN.NNNN seconds ** NNN months ** NNN years ** start of month ** start of year ** start of week ** start of day ** weekday N ** unixepoch ** localtime ** utc ** ** Return 0 on success and 1 if there is any kind of error. If the error ** is in a system call (i.e. localtime()), then an error message is written ** to context pCtx. If the error is an unrecognized modifier, no error is ** written to pCtx. */ static int parseModifier( sqlite3_context *pCtx, /* Function context */ const char *z, /* The text of the modifier */ int n, /* Length of zMod in bytes */ DateTime *p, /* The date/time value to be modified */ int idx /* Parameter index of the modifier */ ){ int rc = 1; double r; switch(sqlite3UpperToLower[(u8)z[0]] ){ case 'a': { /* ** auto ** ** If rawS is available, then interpret as a julian day number, or ** a unix timestamp, depending on its magnitude. */ if( sqlite3_stricmp(z, "auto")==0 ){ if( idx>1 ) return 1; /* IMP: R-33611-57934 */ if( !p->rawS || p->validJD ){ rc = 0; p->rawS = 0; }else if( p->s>=-21086676*(i64)10000 /* -4713-11-24 12:00:00 */ && p->s<=(25340230*(i64)10000)+799 /* 9999-12-31 23:59:59 */ ){ r = p->s*1000.0 + 210866760000000.0; clearYMD_HMS_TZ(p); p->iJD = (sqlite3_int64)(r + 0.5); p->validJD = 1; p->rawS = 0; rc = 0; } } break; } case 'j': { /* ** julianday ** ** Always interpret the prior number as a julian-day value. If this ** is not the first modifier, or if the prior argument is not a numeric ** value in the allowed range of julian day numbers understood by ** SQLite (0..5373484.5) then the result will be NULL. */ if( sqlite3_stricmp(z, "julianday")==0 ){ if( idx>1 ) return 1; /* IMP: R-31176-64601 */ if( p->validJD && p->rawS ){ rc = 0; p->rawS = 0; } } break; } #ifndef SQLITE_OMIT_LOCALTIME case 'l': { /* localtime ** ** Assuming the current time value is UTC (a.k.a. GMT), shift it to ** show local time. */ if( sqlite3_stricmp(z, "localtime")==0 && sqlite3NotPureFunc(pCtx) ){ rc = toLocaltime(p, pCtx); } break; } #endif case 'u': { /* ** unixepoch ** ** Treat the current value of p->s as the number of ** seconds since 1970. Convert to a real julian day number. */ if( sqlite3_stricmp(z, "unixepoch")==0 && p->rawS ){ if( idx>1 ) return 1; /* IMP: R-49255-55373 */ r = p->s*1000.0 + 210866760000000.0; if( r>=0.0 && r<464269060800000.0 ){ clearYMD_HMS_TZ(p); p->iJD = (sqlite3_int64)(r + 0.5); p->validJD = 1; p->rawS = 0; rc = 0; } } #ifndef SQLITE_OMIT_LOCALTIME else if( sqlite3_stricmp(z, "utc")==0 && sqlite3NotPureFunc(pCtx) ){ if( p->tzSet==0 ){ i64 iOrigJD; /* Original localtime */ i64 iGuess; /* Guess at the corresponding utc time */ int cnt = 0; /* Safety to prevent infinite loop */ int iErr; /* Guess is off by this much */ computeJD(p); iGuess = iOrigJD = p->iJD; iErr = 0; do{ DateTime new; memset(&new, 0, sizeof(new)); iGuess -= iErr; new.iJD = iGuess; new.validJD = 1; rc = toLocaltime(&new, pCtx); if( rc ) return rc; computeJD(&new); iErr = new.iJD - iOrigJD; }while( iErr && cnt++<3 ); memset(p, 0, sizeof(*p)); p->iJD = iGuess; p->validJD = 1; p->tzSet = 1; } rc = SQLITE_OK; } #endif break; } case 'w': { /* ** weekday N ** ** Move the date to the same time on the next occurrence of ** weekday N where 0==Sunday, 1==Monday, and so forth. If the ** date is already on the appropriate weekday, this is a no-op. */ if( sqlite3_strnicmp(z, "weekday ", 8)==0 && sqlite3AtoF(&z[8], &r, sqlite3Strlen30(&z[8]), SQLITE_UTF8)>0 && (n=(int)r)==r && n>=0 && r<7 ){ sqlite3_int64 Z; computeYMD_HMS(p); p->validTZ = 0; p->validJD = 0; computeJD(p); Z = ((p->iJD + 129600000)/86400000) % 7; if( Z>n ) Z -= 7; p->iJD += (n - Z)*86400000; clearYMD_HMS_TZ(p); rc = 0; } break; } case 's': { /* ** start of TTTTT ** ** Move the date backwards to the beginning of the current day, ** or month or year. */ if( sqlite3_strnicmp(z, "start of ", 9)!=0 ) break; if( !p->validJD && !p->validYMD && !p->validHMS ) break; z += 9; computeYMD(p); p->validHMS = 1; p->h = p->m = 0; p->s = 0.0; p->rawS = 0; p->validTZ = 0; p->validJD = 0; if( sqlite3_stricmp(z,"month")==0 ){ p->D = 1; rc = 0; }else if( sqlite3_stricmp(z,"year")==0 ){ p->M = 1; p->D = 1; rc = 0; }else if( sqlite3_stricmp(z,"day")==0 ){ rc = 0; } break; } case '+': case '-': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { double rRounder; int i; for(n=1; z[n] && z[n]!=':' && !sqlite3Isspace(z[n]); n++){} if( sqlite3AtoF(z, &r, n, SQLITE_UTF8)<=0 ){ rc = 1; break; } if( z[n]==':' ){ /* A modifier of the form (+|-)HH:MM:SS.FFF adds (or subtracts) the ** specified number of hours, minutes, seconds, and fractional seconds ** to the time. The ".FFF" may be omitted. The ":SS.FFF" may be ** omitted. */ const char *z2 = z; DateTime tx; sqlite3_int64 day; if( !sqlite3Isdigit(*z2) ) z2++; memset(&tx, 0, sizeof(tx)); if( parseHhMmSs(z2, &tx) ) break; computeJD(&tx); tx.iJD -= 43200000; day = tx.iJD/86400000; tx.iJD -= day*86400000; if( z[0]=='-' ) tx.iJD = -tx.iJD; computeJD(p); clearYMD_HMS_TZ(p); p->iJD += tx.iJD; rc = 0; break; } /* If control reaches this point, it means the transformation is ** one of the forms like "+NNN days". */ z += n; while( sqlite3Isspace(*z) ) z++; n = sqlite3Strlen30(z); if( n>10 || n<3 ) break; if( sqlite3UpperToLower[(u8)z[n-1]]=='s' ) n--; computeJD(p); rc = 1; rRounder = r<0 ? -0.5 : +0.5; for(i=0; i-aXformType[i].rLimit && rM += (int)r; x = p->M>0 ? (p->M-1)/12 : (p->M-12)/12; p->Y += x; p->M -= x*12; p->validJD = 0; r -= (int)r; break; } case 5: { /* Special processing to add years */ int y = (int)r; assert( strcmp(aXformType[i].zName,"year")==0 ); computeYMD_HMS(p); p->Y += y; p->validJD = 0; r -= (int)r; break; } } computeJD(p); p->iJD += (sqlite3_int64)(r*1000.0*aXformType[i].rXform + rRounder); rc = 0; break; } } clearYMD_HMS_TZ(p); break; } default: { break; } } return rc; } /* ** Process time function arguments. argv[0] is a date-time stamp. ** argv[1] and following are modifiers. Parse them all and write ** the resulting time into the DateTime structure p. Return 0 ** on success and 1 if there are any errors. ** ** If there are zero parameters (if even argv[0] is undefined) ** then assume a default value of "now" for argv[0]. */ static int isDate( sqlite3_context *context, int argc, sqlite3_value **argv, DateTime *p ){ int i, n; const unsigned char *z; int eType; memset(p, 0, sizeof(*p)); if( argc==0 ){ if( !sqlite3NotPureFunc(context) ) return 1; return setDateTimeToCurrent(context, p); } if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT || eType==SQLITE_INTEGER ){ setRawDateNumber(p, sqlite3_value_double(argv[0])); }else{ z = sqlite3_value_text(argv[0]); if( !z || parseDateOrTime(context, (char*)z, p) ){ return 1; } } for(i=1; iisError || !validJulianDay(p->iJD) ) return 1; return 0; } /* ** The following routines implement the various date and time functions ** of SQLite. */ /* ** julianday( TIMESTRING, MOD, MOD, ...) ** ** Return the julian day number of the date specified in the arguments */ static void juliandayFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ computeJD(&x); sqlite3_result_double(context, x.iJD/86400000.0); } } /* ** unixepoch( TIMESTRING, MOD, MOD, ...) ** ** Return the number of seconds (including fractional seconds) since ** the unix epoch of 1970-01-01 00:00:00 GMT. */ static void unixepochFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ computeJD(&x); sqlite3_result_int64(context, x.iJD/1000 - 21086676*(i64)10000); } } /* ** datetime( TIMESTRING, MOD, MOD, ...) ** ** Return YYYY-MM-DD HH:MM:SS */ static void datetimeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ int Y, s; char zBuf[24]; computeYMD_HMS(&x); Y = x.Y; if( Y<0 ) Y = -Y; zBuf[1] = '0' + (Y/1000)%10; zBuf[2] = '0' + (Y/100)%10; zBuf[3] = '0' + (Y/10)%10; zBuf[4] = '0' + (Y)%10; zBuf[5] = '-'; zBuf[6] = '0' + (x.M/10)%10; zBuf[7] = '0' + (x.M)%10; zBuf[8] = '-'; zBuf[9] = '0' + (x.D/10)%10; zBuf[10] = '0' + (x.D)%10; zBuf[11] = ' '; zBuf[12] = '0' + (x.h/10)%10; zBuf[13] = '0' + (x.h)%10; zBuf[14] = ':'; zBuf[15] = '0' + (x.m/10)%10; zBuf[16] = '0' + (x.m)%10; zBuf[17] = ':'; s = (int)x.s; zBuf[18] = '0' + (s/10)%10; zBuf[19] = '0' + (s)%10; zBuf[20] = 0; if( x.Y<0 ){ zBuf[0] = '-'; sqlite3_result_text(context, zBuf, 20, SQLITE_TRANSIENT); }else{ sqlite3_result_text(context, &zBuf[1], 19, SQLITE_TRANSIENT); } } } /* ** time( TIMESTRING, MOD, MOD, ...) ** ** Return HH:MM:SS */ static void timeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ int s; char zBuf[16]; computeHMS(&x); zBuf[0] = '0' + (x.h/10)%10; zBuf[1] = '0' + (x.h)%10; zBuf[2] = ':'; zBuf[3] = '0' + (x.m/10)%10; zBuf[4] = '0' + (x.m)%10; zBuf[5] = ':'; s = (int)x.s; zBuf[6] = '0' + (s/10)%10; zBuf[7] = '0' + (s)%10; zBuf[8] = 0; sqlite3_result_text(context, zBuf, 8, SQLITE_TRANSIENT); } } /* ** date( TIMESTRING, MOD, MOD, ...) ** ** Return YYYY-MM-DD */ static void dateFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ int Y; char zBuf[16]; computeYMD(&x); Y = x.Y; if( Y<0 ) Y = -Y; zBuf[1] = '0' + (Y/1000)%10; zBuf[2] = '0' + (Y/100)%10; zBuf[3] = '0' + (Y/10)%10; zBuf[4] = '0' + (Y)%10; zBuf[5] = '-'; zBuf[6] = '0' + (x.M/10)%10; zBuf[7] = '0' + (x.M)%10; zBuf[8] = '-'; zBuf[9] = '0' + (x.D/10)%10; zBuf[10] = '0' + (x.D)%10; zBuf[11] = 0; if( x.Y<0 ){ zBuf[0] = '-'; sqlite3_result_text(context, zBuf, 11, SQLITE_TRANSIENT); }else{ sqlite3_result_text(context, &zBuf[1], 10, SQLITE_TRANSIENT); } } } /* ** strftime( FORMAT, TIMESTRING, MOD, MOD, ...) ** ** Return a string described by FORMAT. Conversions as follows: ** ** %d day of month ** %f ** fractional seconds SS.SSS ** %H hour 00-24 ** %j day of year 000-366 ** %J ** julian day number ** %m month 01-12 ** %M minute 00-59 ** %s seconds since 1970-01-01 ** %S seconds 00-59 ** %w day of week 0-6 sunday==0 ** %W week of year 00-53 ** %Y year 0000-9999 ** %% % */ static void strftimeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; size_t i,j; sqlite3 *db; const char *zFmt; sqlite3_str sRes; if( argc==0 ) return; zFmt = (const char*)sqlite3_value_text(argv[0]); if( zFmt==0 || isDate(context, argc-1, argv+1, &x) ) return; db = sqlite3_context_db_handle(context); sqlite3StrAccumInit(&sRes, 0, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]); computeJD(&x); computeYMD_HMS(&x); for(i=j=0; zFmt[i]; i++){ if( zFmt[i]!='%' ) continue; if( j59.999 ) s = 59.999; sqlite3_str_appendf(&sRes, "%06.3f", s); break; } case 'H': { sqlite3_str_appendf(&sRes, "%02d", x.h); break; } case 'W': /* Fall thru */ case 'j': { int nDay; /* Number of days since 1st day of year */ DateTime y = x; y.validJD = 0; y.M = 1; y.D = 1; computeJD(&y); nDay = (int)((x.iJD-y.iJD+43200000)/86400000); if( zFmt[i]=='W' ){ int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */ wd = (int)(((x.iJD+43200000)/86400000)%7); sqlite3_str_appendf(&sRes,"%02d",(nDay+7-wd)/7); }else{ sqlite3_str_appendf(&sRes,"%03d",nDay+1); } break; } case 'J': { sqlite3_str_appendf(&sRes,"%.16g",x.iJD/86400000.0); break; } case 'm': { sqlite3_str_appendf(&sRes,"%02d",x.M); break; } case 'M': { sqlite3_str_appendf(&sRes,"%02d",x.m); break; } case 's': { i64 iS = (i64)(x.iJD/1000 - 21086676*(i64)10000); sqlite3_str_appendf(&sRes,"%lld",iS); break; } case 'S': { sqlite3_str_appendf(&sRes,"%02d",(int)x.s); break; } case 'w': { sqlite3_str_appendchar(&sRes, 1, (char)(((x.iJD+129600000)/86400000) % 7) + '0'); break; } case 'Y': { sqlite3_str_appendf(&sRes,"%04d",x.Y); break; } case '%': { sqlite3_str_appendchar(&sRes, 1, '%'); break; } default: { sqlite3_str_reset(&sRes); return; } } } if( jpMethods ){ pId->pMethods->xClose(pId); pId->pMethods = 0; } } SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){ DO_OS_MALLOC_TEST(id); return id->pMethods->xRead(id, pBuf, amt, offset); } SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){ DO_OS_MALLOC_TEST(id); return id->pMethods->xWrite(id, pBuf, amt, offset); } SQLITE_PRIVATE int sqlite3OsTruncate(sqlite3_file *id, i64 size){ return id->pMethods->xTruncate(id, size); } SQLITE_PRIVATE int sqlite3OsSync(sqlite3_file *id, int flags){ DO_OS_MALLOC_TEST(id); return flags ? id->pMethods->xSync(id, flags) : SQLITE_OK; } SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ DO_OS_MALLOC_TEST(id); return id->pMethods->xFileSize(id, pSize); } SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file *id, int lockType){ DO_OS_MALLOC_TEST(id); return id->pMethods->xLock(id, lockType); } SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file *id, int lockType){ return id->pMethods->xUnlock(id, lockType); } SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){ DO_OS_MALLOC_TEST(id); return id->pMethods->xCheckReservedLock(id, pResOut); } /* ** Use sqlite3OsFileControl() when we are doing something that might fail ** and we need to know about the failures. Use sqlite3OsFileControlHint() ** when simply tossing information over the wall to the VFS and we do not ** really care if the VFS receives and understands the information since it ** is only a hint and can be safely ignored. The sqlite3OsFileControlHint() ** routine has no return value since the return value would be meaningless. */ SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ if( id->pMethods==0 ) return SQLITE_NOTFOUND; #ifdef SQLITE_TEST if( op!=SQLITE_FCNTL_COMMIT_PHASETWO && op!=SQLITE_FCNTL_LOCK_TIMEOUT && op!=SQLITE_FCNTL_CKPT_DONE && op!=SQLITE_FCNTL_CKPT_START ){ /* Faults are not injected into COMMIT_PHASETWO because, assuming SQLite ** is using a regular VFS, it is called after the corresponding ** transaction has been committed. Injecting a fault at this point ** confuses the test scripts - the COMMIT comand returns SQLITE_NOMEM ** but the transaction is committed anyway. ** ** The core must call OsFileControl() though, not OsFileControlHint(), ** as if a custom VFS (e.g. zipvfs) returns an error here, it probably ** means the commit really has failed and an error should be returned ** to the user. ** ** The CKPT_DONE and CKPT_START file-controls are write-only signals ** to the cksumvfs. Their return code is meaningless and is ignored ** by the SQLite core, so there is no point in simulating OOMs for them. */ DO_OS_MALLOC_TEST(id); } #endif return id->pMethods->xFileControl(id, op, pArg); } SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){ if( id->pMethods ) (void)id->pMethods->xFileControl(id, op, pArg); } SQLITE_PRIVATE int sqlite3OsSectorSize(sqlite3_file *id){ int (*xSectorSize)(sqlite3_file*) = id->pMethods->xSectorSize; return (xSectorSize ? xSectorSize(id) : SQLITE_DEFAULT_SECTOR_SIZE); } SQLITE_PRIVATE int sqlite3OsDeviceCharacteristics(sqlite3_file *id){ if( NEVER(id->pMethods==0) ) return 0; return id->pMethods->xDeviceCharacteristics(id); } #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3OsShmLock(sqlite3_file *id, int offset, int n, int flags){ return id->pMethods->xShmLock(id, offset, n, flags); } SQLITE_PRIVATE void sqlite3OsShmBarrier(sqlite3_file *id){ id->pMethods->xShmBarrier(id); } SQLITE_PRIVATE int sqlite3OsShmUnmap(sqlite3_file *id, int deleteFlag){ return id->pMethods->xShmUnmap(id, deleteFlag); } SQLITE_PRIVATE int sqlite3OsShmMap( sqlite3_file *id, /* Database file handle */ int iPage, int pgsz, int bExtend, /* True to extend file if necessary */ void volatile **pp /* OUT: Pointer to mapping */ ){ DO_OS_MALLOC_TEST(id); return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); } #endif /* SQLITE_OMIT_WAL */ #if SQLITE_MAX_MMAP_SIZE>0 /* The real implementation of xFetch and xUnfetch */ SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){ DO_OS_MALLOC_TEST(id); return id->pMethods->xFetch(id, iOff, iAmt, pp); } SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ return id->pMethods->xUnfetch(id, iOff, p); } #else /* No-op stubs to use when memory-mapped I/O is disabled */ SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){ *pp = 0; return SQLITE_OK; } SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ return SQLITE_OK; } #endif /* ** The next group of routines are convenience wrappers around the ** VFS methods. */ SQLITE_PRIVATE int sqlite3OsOpen( sqlite3_vfs *pVfs, const char *zPath, sqlite3_file *pFile, int flags, int *pFlagsOut ){ int rc; DO_OS_MALLOC_TEST(0); /* 0x87f7f is a mask of SQLITE_OPEN_ flags that are valid to be passed ** down into the VFS layer. Some SQLITE_OPEN_ flags (for example, ** SQLITE_OPEN_FULLMUTEX or SQLITE_OPEN_SHAREDCACHE) are blocked before ** reaching the VFS. */ rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut); assert( rc==SQLITE_OK || pFile->pMethods==0 ); return rc; } SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ DO_OS_MALLOC_TEST(0); assert( dirSync==0 || dirSync==1 ); return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; } SQLITE_PRIVATE int sqlite3OsAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ){ DO_OS_MALLOC_TEST(0); return pVfs->xAccess(pVfs, zPath, flags, pResOut); } SQLITE_PRIVATE int sqlite3OsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nPathOut, char *zPathOut ){ DO_OS_MALLOC_TEST(0); zPathOut[0] = 0; return pVfs->xFullPathname(pVfs, zPath, nPathOut, zPathOut); } #ifndef SQLITE_OMIT_LOAD_EXTENSION SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ assert( zPath!=0 ); assert( strlen(zPath)<=SQLITE_MAX_PATHLEN ); /* tag-20210611-1 */ return pVfs->xDlOpen(pVfs, zPath); } SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ pVfs->xDlError(pVfs, nByte, zBufOut); } SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym))(void){ return pVfs->xDlSym(pVfs, pHdle, zSym); } SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){ pVfs->xDlClose(pVfs, pHandle); } #endif /* SQLITE_OMIT_LOAD_EXTENSION */ SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ if( sqlite3Config.iPrngSeed ){ memset(zBufOut, 0, nByte); if( ALWAYS(nByte>(signed)sizeof(unsigned)) ) nByte = sizeof(unsigned int); memcpy(zBufOut, &sqlite3Config.iPrngSeed, nByte); return SQLITE_OK; }else{ return pVfs->xRandomness(pVfs, nByte, zBufOut); } } SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ return pVfs->xSleep(pVfs, nMicro); } SQLITE_PRIVATE int sqlite3OsGetLastError(sqlite3_vfs *pVfs){ return pVfs->xGetLastError ? pVfs->xGetLastError(pVfs, 0, 0) : 0; } SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ int rc; /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64() ** method to get the current date and time if that method is available ** (if iVersion is 2 or greater and the function pointer is not NULL) and ** will fall back to xCurrentTime() if xCurrentTimeInt64() is ** unavailable. */ if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){ rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); }else{ double r; rc = pVfs->xCurrentTime(pVfs, &r); *pTimeOut = (sqlite3_int64)(r*86400000.0); } return rc; } SQLITE_PRIVATE int sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ){ int rc; sqlite3_file *pFile; pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile); if( pFile ){ rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); if( rc!=SQLITE_OK ){ sqlite3_free(pFile); *ppFile = 0; }else{ *ppFile = pFile; } }else{ *ppFile = 0; rc = SQLITE_NOMEM_BKPT; } assert( *ppFile!=0 || rc!=SQLITE_OK ); return rc; } SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){ assert( pFile ); sqlite3OsClose(pFile); sqlite3_free(pFile); } /* ** This function is a wrapper around the OS specific implementation of ** sqlite3_os_init(). The purpose of the wrapper is to provide the ** ability to simulate a malloc failure, so that the handling of an ** error in sqlite3_os_init() by the upper layers can be tested. */ SQLITE_PRIVATE int sqlite3OsInit(void){ void *p = sqlite3_malloc(10); if( p==0 ) return SQLITE_NOMEM_BKPT; sqlite3_free(p); return sqlite3_os_init(); } /* ** The list of all registered VFS implementations. */ static sqlite3_vfs * SQLITE_WSD vfsList = 0; #define vfsList GLOBAL(sqlite3_vfs *, vfsList) /* ** Locate a VFS by name. If no name is given, simply return the ** first VFS on the list. */ SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){ sqlite3_vfs *pVfs = 0; #if SQLITE_THREADSAFE sqlite3_mutex *mutex; #endif #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return 0; #endif #if SQLITE_THREADSAFE mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif sqlite3_mutex_enter(mutex); for(pVfs = vfsList; pVfs; pVfs=pVfs->pNext){ if( zVfs==0 ) break; if( strcmp(zVfs, pVfs->zName)==0 ) break; } sqlite3_mutex_leave(mutex); return pVfs; } /* ** Unlink a VFS from the linked list */ static void vfsUnlink(sqlite3_vfs *pVfs){ assert( sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)) ); if( pVfs==0 ){ /* No-op */ }else if( vfsList==pVfs ){ vfsList = pVfs->pNext; }else if( vfsList ){ sqlite3_vfs *p = vfsList; while( p->pNext && p->pNext!=pVfs ){ p = p->pNext; } if( p->pNext==pVfs ){ p->pNext = pVfs->pNext; } } } /* ** Register a VFS with the system. It is harmless to register the same ** VFS multiple times. The new VFS becomes the default if makeDflt is ** true. */ SQLITE_API int sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt){ MUTEX_LOGIC(sqlite3_mutex *mutex;) #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return rc; #endif #ifdef SQLITE_ENABLE_API_ARMOR if( pVfs==0 ) return SQLITE_MISUSE_BKPT; #endif MUTEX_LOGIC( mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(mutex); vfsUnlink(pVfs); if( makeDflt || vfsList==0 ){ pVfs->pNext = vfsList; vfsList = pVfs; }else{ pVfs->pNext = vfsList->pNext; vfsList->pNext = pVfs; } assert(vfsList); sqlite3_mutex_leave(mutex); return SQLITE_OK; } /* ** Unregister a VFS so that it is no longer accessible. */ SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs *pVfs){ MUTEX_LOGIC(sqlite3_mutex *mutex;) #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return rc; #endif MUTEX_LOGIC( mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(mutex); vfsUnlink(pVfs); sqlite3_mutex_leave(mutex); return SQLITE_OK; } /************** End of os.c **************************************************/ /************** Begin file fault.c *******************************************/ /* ** 2008 Jan 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code to support the concept of "benign" ** malloc failures (when the xMalloc() or xRealloc() method of the ** sqlite3_mem_methods structure fails to allocate a block of memory ** and returns 0). ** ** Most malloc failures are non-benign. After they occur, SQLite ** abandons the current operation and returns an error code (usually ** SQLITE_NOMEM) to the user. However, sometimes a fault is not necessarily ** fatal. For example, if a malloc fails while resizing a hash table, this ** is completely recoverable simply by not carrying out the resize. The ** hash table will continue to function normally. So a malloc failure ** during a hash table resize is a benign fault. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_UNTESTABLE /* ** Global variables. */ typedef struct BenignMallocHooks BenignMallocHooks; static SQLITE_WSD struct BenignMallocHooks { void (*xBenignBegin)(void); void (*xBenignEnd)(void); } sqlite3Hooks = { 0, 0 }; /* The "wsdHooks" macro will resolve to the appropriate BenignMallocHooks ** structure. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdHooks can refer directly ** to the "sqlite3Hooks" state vector declared above. */ #ifdef SQLITE_OMIT_WSD # define wsdHooksInit \ BenignMallocHooks *x = &GLOBAL(BenignMallocHooks,sqlite3Hooks) # define wsdHooks x[0] #else # define wsdHooksInit # define wsdHooks sqlite3Hooks #endif /* ** Register hooks to call when sqlite3BeginBenignMalloc() and ** sqlite3EndBenignMalloc() are called, respectively. */ SQLITE_PRIVATE void sqlite3BenignMallocHooks( void (*xBenignBegin)(void), void (*xBenignEnd)(void) ){ wsdHooksInit; wsdHooks.xBenignBegin = xBenignBegin; wsdHooks.xBenignEnd = xBenignEnd; } /* ** This (sqlite3EndBenignMalloc()) is called by SQLite code to indicate that ** subsequent malloc failures are benign. A call to sqlite3EndBenignMalloc() ** indicates that subsequent malloc failures are non-benign. */ SQLITE_PRIVATE void sqlite3BeginBenignMalloc(void){ wsdHooksInit; if( wsdHooks.xBenignBegin ){ wsdHooks.xBenignBegin(); } } SQLITE_PRIVATE void sqlite3EndBenignMalloc(void){ wsdHooksInit; if( wsdHooks.xBenignEnd ){ wsdHooks.xBenignEnd(); } } #endif /* #ifndef SQLITE_UNTESTABLE */ /************** End of fault.c ***********************************************/ /************** Begin file mem0.c ********************************************/ /* ** 2008 October 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains a no-op memory allocation drivers for use when ** SQLITE_ZERO_MALLOC is defined. The allocation drivers implemented ** here always fail. SQLite will not operate with these drivers. These ** are merely placeholders. Real drivers must be substituted using ** sqlite3_config() before SQLite will operate. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is the default. It is ** used when no other memory allocator is specified using compile-time ** macros. */ #ifdef SQLITE_ZERO_MALLOC /* ** No-op versions of all memory allocation routines */ static void *sqlite3MemMalloc(int nByte){ return 0; } static void sqlite3MemFree(void *pPrior){ return; } static void *sqlite3MemRealloc(void *pPrior, int nByte){ return 0; } static int sqlite3MemSize(void *pPrior){ return 0; } static int sqlite3MemRoundup(int n){ return n; } static int sqlite3MemInit(void *NotUsed){ return SQLITE_OK; } static void sqlite3MemShutdown(void *NotUsed){ return; } /* ** This routine is the only routine in this file with external linkage. ** ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. */ SQLITE_PRIVATE void sqlite3MemSetDefault(void){ static const sqlite3_mem_methods defaultMethods = { sqlite3MemMalloc, sqlite3MemFree, sqlite3MemRealloc, sqlite3MemSize, sqlite3MemRoundup, sqlite3MemInit, sqlite3MemShutdown, 0 }; sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); } #endif /* SQLITE_ZERO_MALLOC */ /************** End of mem0.c ************************************************/ /************** Begin file mem1.c ********************************************/ /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains low-level memory allocation drivers for when ** SQLite will use the standard C-library malloc/realloc/free interface ** to obtain the memory it needs. ** ** This file contains implementations of the low-level memory allocation ** routines specified in the sqlite3_mem_methods object. The content of ** this file is only used if SQLITE_SYSTEM_MALLOC is defined. The ** SQLITE_SYSTEM_MALLOC macro is defined automatically if neither the ** SQLITE_MEMDEBUG nor the SQLITE_WIN32_MALLOC macros are defined. The ** default configuration is to use memory allocation routines in this ** file. ** ** C-preprocessor macro summary: ** ** HAVE_MALLOC_USABLE_SIZE The configure script sets this symbol if ** the malloc_usable_size() interface exists ** on the target platform. Or, this symbol ** can be set manually, if desired. ** If an equivalent interface exists by ** a different name, using a separate -D ** option to rename it. ** ** SQLITE_WITHOUT_ZONEMALLOC Some older macs lack support for the zone ** memory allocator. Set this symbol to enable ** building on older macs. ** ** SQLITE_WITHOUT_MSIZE Set this symbol to disable the use of ** _msize() on windows systems. This might ** be necessary when compiling for Delphi, ** for example. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is the default. It is ** used when no other memory allocator is specified using compile-time ** macros. */ #ifdef SQLITE_SYSTEM_MALLOC #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) /* ** Use the zone allocator available on apple products unless the ** SQLITE_WITHOUT_ZONEMALLOC symbol is defined. */ #include #include #ifdef SQLITE_MIGHT_BE_SINGLE_CORE #include #endif /* SQLITE_MIGHT_BE_SINGLE_CORE */ static malloc_zone_t* _sqliteZone_; #define SQLITE_MALLOC(x) malloc_zone_malloc(_sqliteZone_, (x)) #define SQLITE_FREE(x) malloc_zone_free(_sqliteZone_, (x)); #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y)) #define SQLITE_MALLOCSIZE(x) \ (_sqliteZone_ ? _sqliteZone_->size(_sqliteZone_,x) : malloc_size(x)) #else /* if not __APPLE__ */ /* ** Use standard C library malloc and free on non-Apple systems. ** Also used by Apple systems if SQLITE_WITHOUT_ZONEMALLOC is defined. */ #define SQLITE_MALLOC(x) malloc(x) #define SQLITE_FREE(x) free(x) #define SQLITE_REALLOC(x,y) realloc((x),(y)) /* ** The malloc.h header file is needed for malloc_usable_size() function ** on some systems (e.g. Linux). */ #if HAVE_MALLOC_H && HAVE_MALLOC_USABLE_SIZE # define SQLITE_USE_MALLOC_H 1 # define SQLITE_USE_MALLOC_USABLE_SIZE 1 /* ** The MSVCRT has malloc_usable_size(), but it is called _msize(). The ** use of _msize() is automatic, but can be disabled by compiling with ** -DSQLITE_WITHOUT_MSIZE. Using the _msize() function also requires ** the malloc.h header file. */ #elif defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE) # define SQLITE_USE_MALLOC_H # define SQLITE_USE_MSIZE #endif /* ** Include the malloc.h header file, if necessary. Also set define macro ** SQLITE_MALLOCSIZE to the appropriate function name, which is _msize() ** for MSVC and malloc_usable_size() for most other systems (e.g. Linux). ** The memory size function can always be overridden manually by defining ** the macro SQLITE_MALLOCSIZE to the desired function name. */ #if defined(SQLITE_USE_MALLOC_H) # include # if defined(SQLITE_USE_MALLOC_USABLE_SIZE) # if !defined(SQLITE_MALLOCSIZE) # define SQLITE_MALLOCSIZE(x) malloc_usable_size(x) # endif # elif defined(SQLITE_USE_MSIZE) # if !defined(SQLITE_MALLOCSIZE) # define SQLITE_MALLOCSIZE _msize # endif # endif #endif /* defined(SQLITE_USE_MALLOC_H) */ #endif /* __APPLE__ or not __APPLE__ */ /* ** Like malloc(), but remember the size of the allocation ** so that we can find it later using sqlite3MemSize(). ** ** For this low-level routine, we are guaranteed that nByte>0 because ** cases of nByte<=0 will be intercepted and dealt with by higher level ** routines. */ static void *sqlite3MemMalloc(int nByte){ #ifdef SQLITE_MALLOCSIZE void *p; testcase( ROUND8(nByte)==nByte ); p = SQLITE_MALLOC( nByte ); if( p==0 ){ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); } return p; #else sqlite3_int64 *p; assert( nByte>0 ); testcase( ROUND8(nByte)!=nByte ); p = SQLITE_MALLOC( nByte+8 ); if( p ){ p[0] = nByte; p++; }else{ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); } return (void *)p; #endif } /* ** Like free() but works for allocations obtained from sqlite3MemMalloc() ** or sqlite3MemRealloc(). ** ** For this low-level routine, we already know that pPrior!=0 since ** cases where pPrior==0 will have been intecepted and dealt with ** by higher-level routines. */ static void sqlite3MemFree(void *pPrior){ #ifdef SQLITE_MALLOCSIZE SQLITE_FREE(pPrior); #else sqlite3_int64 *p = (sqlite3_int64*)pPrior; assert( pPrior!=0 ); p--; SQLITE_FREE(p); #endif } /* ** Report the allocated size of a prior return from xMalloc() ** or xRealloc(). */ static int sqlite3MemSize(void *pPrior){ #ifdef SQLITE_MALLOCSIZE assert( pPrior!=0 ); return (int)SQLITE_MALLOCSIZE(pPrior); #else sqlite3_int64 *p; assert( pPrior!=0 ); p = (sqlite3_int64*)pPrior; p--; return (int)p[0]; #endif } /* ** Like realloc(). Resize an allocation previously obtained from ** sqlite3MemMalloc(). ** ** For this low-level interface, we know that pPrior!=0. Cases where ** pPrior==0 while have been intercepted by higher-level routine and ** redirected to xMalloc. Similarly, we know that nByte>0 because ** cases where nByte<=0 will have been intercepted by higher-level ** routines and redirected to xFree. */ static void *sqlite3MemRealloc(void *pPrior, int nByte){ #ifdef SQLITE_MALLOCSIZE void *p = SQLITE_REALLOC(pPrior, nByte); if( p==0 ){ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed memory resize %u to %u bytes", SQLITE_MALLOCSIZE(pPrior), nByte); } return p; #else sqlite3_int64 *p = (sqlite3_int64*)pPrior; assert( pPrior!=0 && nByte>0 ); assert( nByte==ROUND8(nByte) ); /* EV: R-46199-30249 */ p--; p = SQLITE_REALLOC(p, nByte+8 ); if( p ){ p[0] = nByte; p++; }else{ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed memory resize %u to %u bytes", sqlite3MemSize(pPrior), nByte); } return (void*)p; #endif } /* ** Round up a request size to the next valid allocation size. */ static int sqlite3MemRoundup(int n){ return ROUND8(n); } /* ** Initialize this module. */ static int sqlite3MemInit(void *NotUsed){ #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) int cpuCount; size_t len; if( _sqliteZone_ ){ return SQLITE_OK; } len = sizeof(cpuCount); /* One usually wants to use hw.acctivecpu for MT decisions, but not here */ sysctlbyname("hw.ncpu", &cpuCount, &len, NULL, 0); if( cpuCount>1 ){ /* defer MT decisions to system malloc */ _sqliteZone_ = malloc_default_zone(); }else{ /* only 1 core, use our own zone to contention over global locks, ** e.g. we have our own dedicated locks */ _sqliteZone_ = malloc_create_zone(4096, 0); malloc_set_zone_name(_sqliteZone_, "Sqlite_Heap"); } #endif /* defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) */ UNUSED_PARAMETER(NotUsed); return SQLITE_OK; } /* ** Deinitialize this module. */ static void sqlite3MemShutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); return; } /* ** This routine is the only routine in this file with external linkage. ** ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. */ SQLITE_PRIVATE void sqlite3MemSetDefault(void){ static const sqlite3_mem_methods defaultMethods = { sqlite3MemMalloc, sqlite3MemFree, sqlite3MemRealloc, sqlite3MemSize, sqlite3MemRoundup, sqlite3MemInit, sqlite3MemShutdown, 0 }; sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); } #endif /* SQLITE_SYSTEM_MALLOC */ /************** End of mem1.c ************************************************/ /************** Begin file mem2.c ********************************************/ /* ** 2007 August 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains low-level memory allocation drivers for when ** SQLite will use the standard C-library malloc/realloc/free interface ** to obtain the memory it needs while adding lots of additional debugging ** information to each allocation in order to help detect and fix memory ** leaks and memory usage errors. ** ** This file contains implementations of the low-level memory allocation ** routines specified in the sqlite3_mem_methods object. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is used only if the ** SQLITE_MEMDEBUG macro is defined */ #ifdef SQLITE_MEMDEBUG /* ** The backtrace functionality is only available with GLIBC */ #ifdef __GLIBC__ extern int backtrace(void**,int); extern void backtrace_symbols_fd(void*const*,int,int); #else # define backtrace(A,B) 1 # define backtrace_symbols_fd(A,B,C) #endif /* #include */ /* ** Each memory allocation looks like this: ** ** ------------------------------------------------------------------------ ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard | ** ------------------------------------------------------------------------ ** ** The application code sees only a pointer to the allocation. We have ** to back up from the allocation pointer to find the MemBlockHdr. The ** MemBlockHdr tells us the size of the allocation and the number of ** backtrace pointers. There is also a guard word at the end of the ** MemBlockHdr. */ struct MemBlockHdr { i64 iSize; /* Size of this allocation */ struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */ char nBacktrace; /* Number of backtraces on this alloc */ char nBacktraceSlots; /* Available backtrace slots */ u8 nTitle; /* Bytes of title; includes '\0' */ u8 eType; /* Allocation type code */ int iForeGuard; /* Guard word for sanity */ }; /* ** Guard words */ #define FOREGUARD 0x80F5E153 #define REARGUARD 0xE4676B53 /* ** Number of malloc size increments to track. */ #define NCSIZE 1000 /* ** All of the static variables used by this module are collected ** into a single structure named "mem". This is to keep the ** static variables organized and to reduce namespace pollution ** when this module is combined with other in the amalgamation. */ static struct { /* ** Mutex to control access to the memory allocation subsystem. */ sqlite3_mutex *mutex; /* ** Head and tail of a linked list of all outstanding allocations */ struct MemBlockHdr *pFirst; struct MemBlockHdr *pLast; /* ** The number of levels of backtrace to save in new allocations. */ int nBacktrace; void (*xBacktrace)(int, int, void **); /* ** Title text to insert in front of each block */ int nTitle; /* Bytes of zTitle to save. Includes '\0' and padding */ char zTitle[100]; /* The title text */ /* ** sqlite3MallocDisallow() increments the following counter. ** sqlite3MallocAllow() decrements it. */ int disallow; /* Do not allow memory allocation */ /* ** Gather statistics on the sizes of memory allocations. ** nAlloc[i] is the number of allocation attempts of i*8 ** bytes. i==NCSIZE is the number of allocation attempts for ** sizes more than NCSIZE*8 bytes. */ int nAlloc[NCSIZE]; /* Total number of allocations */ int nCurrent[NCSIZE]; /* Current number of allocations */ int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */ } mem; /* ** Adjust memory usage statistics */ static void adjustStats(int iSize, int increment){ int i = ROUND8(iSize)/8; if( i>NCSIZE-1 ){ i = NCSIZE - 1; } if( increment>0 ){ mem.nAlloc[i]++; mem.nCurrent[i]++; if( mem.nCurrent[i]>mem.mxCurrent[i] ){ mem.mxCurrent[i] = mem.nCurrent[i]; } }else{ mem.nCurrent[i]--; assert( mem.nCurrent[i]>=0 ); } } /* ** Given an allocation, find the MemBlockHdr for that allocation. ** ** This routine checks the guards at either end of the allocation and ** if they are incorrect it asserts. */ static struct MemBlockHdr *sqlite3MemsysGetHeader(const void *pAllocation){ struct MemBlockHdr *p; int *pInt; u8 *pU8; int nReserve; p = (struct MemBlockHdr*)pAllocation; p--; assert( p->iForeGuard==(int)FOREGUARD ); nReserve = ROUND8(p->iSize); pInt = (int*)pAllocation; pU8 = (u8*)pAllocation; assert( pInt[nReserve/sizeof(int)]==(int)REARGUARD ); /* This checks any of the "extra" bytes allocated due ** to rounding up to an 8 byte boundary to ensure ** they haven't been overwritten. */ while( nReserve-- > p->iSize ) assert( pU8[nReserve]==0x65 ); return p; } /* ** Return the number of bytes currently allocated at address p. */ static int sqlite3MemSize(void *p){ struct MemBlockHdr *pHdr; if( !p ){ return 0; } pHdr = sqlite3MemsysGetHeader(p); return (int)pHdr->iSize; } /* ** Initialize the memory allocation subsystem. */ static int sqlite3MemInit(void *NotUsed){ UNUSED_PARAMETER(NotUsed); assert( (sizeof(struct MemBlockHdr)&7) == 0 ); if( !sqlite3GlobalConfig.bMemstat ){ /* If memory status is enabled, then the malloc.c wrapper will already ** hold the STATIC_MEM mutex when the routines here are invoked. */ mem.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); } return SQLITE_OK; } /* ** Deinitialize the memory allocation subsystem. */ static void sqlite3MemShutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); mem.mutex = 0; } /* ** Round up a request size to the next valid allocation size. */ static int sqlite3MemRoundup(int n){ return ROUND8(n); } /* ** Fill a buffer with pseudo-random bytes. This is used to preset ** the content of a new memory allocation to unpredictable values and ** to clear the content of a freed allocation to unpredictable values. */ static void randomFill(char *pBuf, int nByte){ unsigned int x, y, r; x = SQLITE_PTR_TO_INT(pBuf); y = nByte | 1; while( nByte >= 4 ){ x = (x>>1) ^ (-(int)(x&1) & 0xd0000001); y = y*1103515245 + 12345; r = x ^ y; *(int*)pBuf = r; pBuf += 4; nByte -= 4; } while( nByte-- > 0 ){ x = (x>>1) ^ (-(int)(x&1) & 0xd0000001); y = y*1103515245 + 12345; r = x ^ y; *(pBuf++) = r & 0xff; } } /* ** Allocate nByte bytes of memory. */ static void *sqlite3MemMalloc(int nByte){ struct MemBlockHdr *pHdr; void **pBt; char *z; int *pInt; void *p = 0; int totalSize; int nReserve; sqlite3_mutex_enter(mem.mutex); assert( mem.disallow==0 ); nReserve = ROUND8(nByte); totalSize = nReserve + sizeof(*pHdr) + sizeof(int) + mem.nBacktrace*sizeof(void*) + mem.nTitle; p = malloc(totalSize); if( p ){ z = p; pBt = (void**)&z[mem.nTitle]; pHdr = (struct MemBlockHdr*)&pBt[mem.nBacktrace]; pHdr->pNext = 0; pHdr->pPrev = mem.pLast; if( mem.pLast ){ mem.pLast->pNext = pHdr; }else{ mem.pFirst = pHdr; } mem.pLast = pHdr; pHdr->iForeGuard = FOREGUARD; pHdr->eType = MEMTYPE_HEAP; pHdr->nBacktraceSlots = mem.nBacktrace; pHdr->nTitle = mem.nTitle; if( mem.nBacktrace ){ void *aAddr[40]; pHdr->nBacktrace = backtrace(aAddr, mem.nBacktrace+1)-1; memcpy(pBt, &aAddr[1], pHdr->nBacktrace*sizeof(void*)); assert(pBt[0]); if( mem.xBacktrace ){ mem.xBacktrace(nByte, pHdr->nBacktrace-1, &aAddr[1]); } }else{ pHdr->nBacktrace = 0; } if( mem.nTitle ){ memcpy(z, mem.zTitle, mem.nTitle); } pHdr->iSize = nByte; adjustStats(nByte, +1); pInt = (int*)&pHdr[1]; pInt[nReserve/sizeof(int)] = REARGUARD; randomFill((char*)pInt, nByte); memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); p = (void*)pInt; } sqlite3_mutex_leave(mem.mutex); return p; } /* ** Free memory. */ static void sqlite3MemFree(void *pPrior){ struct MemBlockHdr *pHdr; void **pBt; char *z; assert( sqlite3GlobalConfig.bMemstat || sqlite3GlobalConfig.bCoreMutex==0 || mem.mutex!=0 ); pHdr = sqlite3MemsysGetHeader(pPrior); pBt = (void**)pHdr; pBt -= pHdr->nBacktraceSlots; sqlite3_mutex_enter(mem.mutex); if( pHdr->pPrev ){ assert( pHdr->pPrev->pNext==pHdr ); pHdr->pPrev->pNext = pHdr->pNext; }else{ assert( mem.pFirst==pHdr ); mem.pFirst = pHdr->pNext; } if( pHdr->pNext ){ assert( pHdr->pNext->pPrev==pHdr ); pHdr->pNext->pPrev = pHdr->pPrev; }else{ assert( mem.pLast==pHdr ); mem.pLast = pHdr->pPrev; } z = (char*)pBt; z -= pHdr->nTitle; adjustStats((int)pHdr->iSize, -1); randomFill(z, sizeof(void*)*pHdr->nBacktraceSlots + sizeof(*pHdr) + (int)pHdr->iSize + sizeof(int) + pHdr->nTitle); free(z); sqlite3_mutex_leave(mem.mutex); } /* ** Change the size of an existing memory allocation. ** ** For this debugging implementation, we *always* make a copy of the ** allocation into a new place in memory. In this way, if the ** higher level code is using pointer to the old allocation, it is ** much more likely to break and we are much more liking to find ** the error. */ static void *sqlite3MemRealloc(void *pPrior, int nByte){ struct MemBlockHdr *pOldHdr; void *pNew; assert( mem.disallow==0 ); assert( (nByte & 7)==0 ); /* EV: R-46199-30249 */ pOldHdr = sqlite3MemsysGetHeader(pPrior); pNew = sqlite3MemMalloc(nByte); if( pNew ){ memcpy(pNew, pPrior, (int)(nByteiSize ? nByte : pOldHdr->iSize)); if( nByte>pOldHdr->iSize ){ randomFill(&((char*)pNew)[pOldHdr->iSize], nByte - (int)pOldHdr->iSize); } sqlite3MemFree(pPrior); } return pNew; } /* ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. */ SQLITE_PRIVATE void sqlite3MemSetDefault(void){ static const sqlite3_mem_methods defaultMethods = { sqlite3MemMalloc, sqlite3MemFree, sqlite3MemRealloc, sqlite3MemSize, sqlite3MemRoundup, sqlite3MemInit, sqlite3MemShutdown, 0 }; sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); } /* ** Set the "type" of an allocation. */ SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){ if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ struct MemBlockHdr *pHdr; pHdr = sqlite3MemsysGetHeader(p); assert( pHdr->iForeGuard==FOREGUARD ); pHdr->eType = eType; } } /* ** Return TRUE if the mask of type in eType matches the type of the ** allocation p. Also return true if p==NULL. ** ** This routine is designed for use within an assert() statement, to ** verify the type of an allocation. For example: ** ** assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); */ SQLITE_PRIVATE int sqlite3MemdebugHasType(const void *p, u8 eType){ int rc = 1; if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ struct MemBlockHdr *pHdr; pHdr = sqlite3MemsysGetHeader(p); assert( pHdr->iForeGuard==FOREGUARD ); /* Allocation is valid */ if( (pHdr->eType&eType)==0 ){ rc = 0; } } return rc; } /* ** Return TRUE if the mask of type in eType matches no bits of the type of the ** allocation p. Also return true if p==NULL. ** ** This routine is designed for use within an assert() statement, to ** verify the type of an allocation. For example: ** ** assert( sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); */ SQLITE_PRIVATE int sqlite3MemdebugNoType(const void *p, u8 eType){ int rc = 1; if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ struct MemBlockHdr *pHdr; pHdr = sqlite3MemsysGetHeader(p); assert( pHdr->iForeGuard==FOREGUARD ); /* Allocation is valid */ if( (pHdr->eType&eType)!=0 ){ rc = 0; } } return rc; } /* ** Set the number of backtrace levels kept for each allocation. ** A value of zero turns off backtracing. The number is always rounded ** up to a multiple of 2. */ SQLITE_PRIVATE void sqlite3MemdebugBacktrace(int depth){ if( depth<0 ){ depth = 0; } if( depth>20 ){ depth = 20; } depth = (depth+1)&0xfe; mem.nBacktrace = depth; } SQLITE_PRIVATE void sqlite3MemdebugBacktraceCallback(void (*xBacktrace)(int, int, void **)){ mem.xBacktrace = xBacktrace; } /* ** Set the title string for subsequent allocations. */ SQLITE_PRIVATE void sqlite3MemdebugSettitle(const char *zTitle){ unsigned int n = sqlite3Strlen30(zTitle) + 1; sqlite3_mutex_enter(mem.mutex); if( n>=sizeof(mem.zTitle) ) n = sizeof(mem.zTitle)-1; memcpy(mem.zTitle, zTitle, n); mem.zTitle[n] = 0; mem.nTitle = ROUND8(n); sqlite3_mutex_leave(mem.mutex); } SQLITE_PRIVATE void sqlite3MemdebugSync(){ struct MemBlockHdr *pHdr; for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){ void **pBt = (void**)pHdr; pBt -= pHdr->nBacktraceSlots; mem.xBacktrace((int)pHdr->iSize, pHdr->nBacktrace-1, &pBt[1]); } } /* ** Open the file indicated and write a log of all unfreed memory ** allocations into that log. */ SQLITE_PRIVATE void sqlite3MemdebugDump(const char *zFilename){ FILE *out; struct MemBlockHdr *pHdr; void **pBt; int i; out = fopen(zFilename, "w"); if( out==0 ){ fprintf(stderr, "** Unable to output memory debug output log: %s **\n", zFilename); return; } for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){ char *z = (char*)pHdr; z -= pHdr->nBacktraceSlots*sizeof(void*) + pHdr->nTitle; fprintf(out, "**** %lld bytes at %p from %s ****\n", pHdr->iSize, &pHdr[1], pHdr->nTitle ? z : "???"); if( pHdr->nBacktrace ){ fflush(out); pBt = (void**)pHdr; pBt -= pHdr->nBacktraceSlots; backtrace_symbols_fd(pBt, pHdr->nBacktrace, fileno(out)); fprintf(out, "\n"); } } fprintf(out, "COUNTS:\n"); for(i=0; i=1 ); size = mem3.aPool[i-1].u.hdr.size4x/4; assert( size==mem3.aPool[i+size-1].u.hdr.prevSize ); assert( size>=2 ); if( size <= MX_SMALL ){ memsys3UnlinkFromList(i, &mem3.aiSmall[size-2]); }else{ hash = size % N_HASH; memsys3UnlinkFromList(i, &mem3.aiHash[hash]); } } /* ** Link the chunk at mem3.aPool[i] so that is on the list rooted ** at *pRoot. */ static void memsys3LinkIntoList(u32 i, u32 *pRoot){ assert( sqlite3_mutex_held(mem3.mutex) ); mem3.aPool[i].u.list.next = *pRoot; mem3.aPool[i].u.list.prev = 0; if( *pRoot ){ mem3.aPool[*pRoot].u.list.prev = i; } *pRoot = i; } /* ** Link the chunk at index i into either the appropriate ** small chunk list, or into the large chunk hash table. */ static void memsys3Link(u32 i){ u32 size, hash; assert( sqlite3_mutex_held(mem3.mutex) ); assert( i>=1 ); assert( (mem3.aPool[i-1].u.hdr.size4x & 1)==0 ); size = mem3.aPool[i-1].u.hdr.size4x/4; assert( size==mem3.aPool[i+size-1].u.hdr.prevSize ); assert( size>=2 ); if( size <= MX_SMALL ){ memsys3LinkIntoList(i, &mem3.aiSmall[size-2]); }else{ hash = size % N_HASH; memsys3LinkIntoList(i, &mem3.aiHash[hash]); } } /* ** If the STATIC_MEM mutex is not already held, obtain it now. The mutex ** will already be held (obtained by code in malloc.c) if ** sqlite3GlobalConfig.bMemStat is true. */ static void memsys3Enter(void){ if( sqlite3GlobalConfig.bMemstat==0 && mem3.mutex==0 ){ mem3.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); } sqlite3_mutex_enter(mem3.mutex); } static void memsys3Leave(void){ sqlite3_mutex_leave(mem3.mutex); } /* ** Called when we are unable to satisfy an allocation of nBytes. */ static void memsys3OutOfMemory(int nByte){ if( !mem3.alarmBusy ){ mem3.alarmBusy = 1; assert( sqlite3_mutex_held(mem3.mutex) ); sqlite3_mutex_leave(mem3.mutex); sqlite3_release_memory(nByte); sqlite3_mutex_enter(mem3.mutex); mem3.alarmBusy = 0; } } /* ** Chunk i is a free chunk that has been unlinked. Adjust its ** size parameters for check-out and return a pointer to the ** user portion of the chunk. */ static void *memsys3Checkout(u32 i, u32 nBlock){ u32 x; assert( sqlite3_mutex_held(mem3.mutex) ); assert( i>=1 ); assert( mem3.aPool[i-1].u.hdr.size4x/4==nBlock ); assert( mem3.aPool[i+nBlock-1].u.hdr.prevSize==nBlock ); x = mem3.aPool[i-1].u.hdr.size4x; mem3.aPool[i-1].u.hdr.size4x = nBlock*4 | 1 | (x&2); mem3.aPool[i+nBlock-1].u.hdr.prevSize = nBlock; mem3.aPool[i+nBlock-1].u.hdr.size4x |= 2; return &mem3.aPool[i]; } /* ** Carve a piece off of the end of the mem3.iKeyBlk free chunk. ** Return a pointer to the new allocation. Or, if the key chunk ** is not large enough, return 0. */ static void *memsys3FromKeyBlk(u32 nBlock){ assert( sqlite3_mutex_held(mem3.mutex) ); assert( mem3.szKeyBlk>=nBlock ); if( nBlock>=mem3.szKeyBlk-1 ){ /* Use the entire key chunk */ void *p = memsys3Checkout(mem3.iKeyBlk, mem3.szKeyBlk); mem3.iKeyBlk = 0; mem3.szKeyBlk = 0; mem3.mnKeyBlk = 0; return p; }else{ /* Split the key block. Return the tail. */ u32 newi, x; newi = mem3.iKeyBlk + mem3.szKeyBlk - nBlock; assert( newi > mem3.iKeyBlk+1 ); mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.prevSize = nBlock; mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.size4x |= 2; mem3.aPool[newi-1].u.hdr.size4x = nBlock*4 + 1; mem3.szKeyBlk -= nBlock; mem3.aPool[newi-1].u.hdr.prevSize = mem3.szKeyBlk; x = mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x & 2; mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x = mem3.szKeyBlk*4 | x; if( mem3.szKeyBlk < mem3.mnKeyBlk ){ mem3.mnKeyBlk = mem3.szKeyBlk; } return (void*)&mem3.aPool[newi]; } } /* ** *pRoot is the head of a list of free chunks of the same size ** or same size hash. In other words, *pRoot is an entry in either ** mem3.aiSmall[] or mem3.aiHash[]. ** ** This routine examines all entries on the given list and tries ** to coalesce each entries with adjacent free chunks. ** ** If it sees a chunk that is larger than mem3.iKeyBlk, it replaces ** the current mem3.iKeyBlk with the new larger chunk. In order for ** this mem3.iKeyBlk replacement to work, the key chunk must be ** linked into the hash tables. That is not the normal state of ** affairs, of course. The calling routine must link the key ** chunk before invoking this routine, then must unlink the (possibly ** changed) key chunk once this routine has finished. */ static void memsys3Merge(u32 *pRoot){ u32 iNext, prev, size, i, x; assert( sqlite3_mutex_held(mem3.mutex) ); for(i=*pRoot; i>0; i=iNext){ iNext = mem3.aPool[i].u.list.next; size = mem3.aPool[i-1].u.hdr.size4x; assert( (size&1)==0 ); if( (size&2)==0 ){ memsys3UnlinkFromList(i, pRoot); assert( i > mem3.aPool[i-1].u.hdr.prevSize ); prev = i - mem3.aPool[i-1].u.hdr.prevSize; if( prev==iNext ){ iNext = mem3.aPool[prev].u.list.next; } memsys3Unlink(prev); size = i + size/4 - prev; x = mem3.aPool[prev-1].u.hdr.size4x & 2; mem3.aPool[prev-1].u.hdr.size4x = size*4 | x; mem3.aPool[prev+size-1].u.hdr.prevSize = size; memsys3Link(prev); i = prev; }else{ size /= 4; } if( size>mem3.szKeyBlk ){ mem3.iKeyBlk = i; mem3.szKeyBlk = size; } } } /* ** Return a block of memory of at least nBytes in size. ** Return NULL if unable. ** ** This function assumes that the necessary mutexes, if any, are ** already held by the caller. Hence "Unsafe". */ static void *memsys3MallocUnsafe(int nByte){ u32 i; u32 nBlock; u32 toFree; assert( sqlite3_mutex_held(mem3.mutex) ); assert( sizeof(Mem3Block)==8 ); if( nByte<=12 ){ nBlock = 2; }else{ nBlock = (nByte + 11)/8; } assert( nBlock>=2 ); /* STEP 1: ** Look for an entry of the correct size in either the small ** chunk table or in the large chunk hash table. This is ** successful most of the time (about 9 times out of 10). */ if( nBlock <= MX_SMALL ){ i = mem3.aiSmall[nBlock-2]; if( i>0 ){ memsys3UnlinkFromList(i, &mem3.aiSmall[nBlock-2]); return memsys3Checkout(i, nBlock); } }else{ int hash = nBlock % N_HASH; for(i=mem3.aiHash[hash]; i>0; i=mem3.aPool[i].u.list.next){ if( mem3.aPool[i-1].u.hdr.size4x/4==nBlock ){ memsys3UnlinkFromList(i, &mem3.aiHash[hash]); return memsys3Checkout(i, nBlock); } } } /* STEP 2: ** Try to satisfy the allocation by carving a piece off of the end ** of the key chunk. This step usually works if step 1 fails. */ if( mem3.szKeyBlk>=nBlock ){ return memsys3FromKeyBlk(nBlock); } /* STEP 3: ** Loop through the entire memory pool. Coalesce adjacent free ** chunks. Recompute the key chunk as the largest free chunk. ** Then try again to satisfy the allocation by carving a piece off ** of the end of the key chunk. This step happens very ** rarely (we hope!) */ for(toFree=nBlock*16; toFree<(mem3.nPool*16); toFree *= 2){ memsys3OutOfMemory(toFree); if( mem3.iKeyBlk ){ memsys3Link(mem3.iKeyBlk); mem3.iKeyBlk = 0; mem3.szKeyBlk = 0; } for(i=0; i=nBlock ){ return memsys3FromKeyBlk(nBlock); } } } /* If none of the above worked, then we fail. */ return 0; } /* ** Free an outstanding memory allocation. ** ** This function assumes that the necessary mutexes, if any, are ** already held by the caller. Hence "Unsafe". */ static void memsys3FreeUnsafe(void *pOld){ Mem3Block *p = (Mem3Block*)pOld; int i; u32 size, x; assert( sqlite3_mutex_held(mem3.mutex) ); assert( p>mem3.aPool && p<&mem3.aPool[mem3.nPool] ); i = p - mem3.aPool; assert( (mem3.aPool[i-1].u.hdr.size4x&1)==1 ); size = mem3.aPool[i-1].u.hdr.size4x/4; assert( i+size<=mem3.nPool+1 ); mem3.aPool[i-1].u.hdr.size4x &= ~1; mem3.aPool[i+size-1].u.hdr.prevSize = size; mem3.aPool[i+size-1].u.hdr.size4x &= ~2; memsys3Link(i); /* Try to expand the key using the newly freed chunk */ if( mem3.iKeyBlk ){ while( (mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x&2)==0 ){ size = mem3.aPool[mem3.iKeyBlk-1].u.hdr.prevSize; mem3.iKeyBlk -= size; mem3.szKeyBlk += size; memsys3Unlink(mem3.iKeyBlk); x = mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x & 2; mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x = mem3.szKeyBlk*4 | x; mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.prevSize = mem3.szKeyBlk; } x = mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x & 2; while( (mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.size4x&1)==0 ){ memsys3Unlink(mem3.iKeyBlk+mem3.szKeyBlk); mem3.szKeyBlk += mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.size4x/4; mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x = mem3.szKeyBlk*4 | x; mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.prevSize = mem3.szKeyBlk; } } } /* ** Return the size of an outstanding allocation, in bytes. The ** size returned omits the 8-byte header overhead. This only ** works for chunks that are currently checked out. */ static int memsys3Size(void *p){ Mem3Block *pBlock; assert( p!=0 ); pBlock = (Mem3Block*)p; assert( (pBlock[-1].u.hdr.size4x&1)!=0 ); return (pBlock[-1].u.hdr.size4x&~3)*2 - 4; } /* ** Round up a request size to the next valid allocation size. */ static int memsys3Roundup(int n){ if( n<=12 ){ return 12; }else{ return ((n+11)&~7) - 4; } } /* ** Allocate nBytes of memory. */ static void *memsys3Malloc(int nBytes){ sqlite3_int64 *p; assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */ memsys3Enter(); p = memsys3MallocUnsafe(nBytes); memsys3Leave(); return (void*)p; } /* ** Free memory. */ static void memsys3Free(void *pPrior){ assert( pPrior ); memsys3Enter(); memsys3FreeUnsafe(pPrior); memsys3Leave(); } /* ** Change the size of an existing memory allocation */ static void *memsys3Realloc(void *pPrior, int nBytes){ int nOld; void *p; if( pPrior==0 ){ return sqlite3_malloc(nBytes); } if( nBytes<=0 ){ sqlite3_free(pPrior); return 0; } nOld = memsys3Size(pPrior); if( nBytes<=nOld && nBytes>=nOld-128 ){ return pPrior; } memsys3Enter(); p = memsys3MallocUnsafe(nBytes); if( p ){ if( nOld>1)!=(size&1) ){ fprintf(out, "%p tail checkout bit is incorrect\n", &mem3.aPool[i]); assert( 0 ); break; } if( size&1 ){ fprintf(out, "%p %6d bytes checked out\n", &mem3.aPool[i], (size/4)*8-8); }else{ fprintf(out, "%p %6d bytes free%s\n", &mem3.aPool[i], (size/4)*8-8, i==mem3.iKeyBlk ? " **key**" : ""); } } for(i=0; i0; j=mem3.aPool[j].u.list.next){ fprintf(out, " %p(%d)", &mem3.aPool[j], (mem3.aPool[j-1].u.hdr.size4x/4)*8-8); } fprintf(out, "\n"); } for(i=0; i0; j=mem3.aPool[j].u.list.next){ fprintf(out, " %p(%d)", &mem3.aPool[j], (mem3.aPool[j-1].u.hdr.size4x/4)*8-8); } fprintf(out, "\n"); } fprintf(out, "key=%d\n", mem3.iKeyBlk); fprintf(out, "nowUsed=%d\n", mem3.nPool*8 - mem3.szKeyBlk*8); fprintf(out, "mxUsed=%d\n", mem3.nPool*8 - mem3.mnKeyBlk*8); sqlite3_mutex_leave(mem3.mutex); if( out==stdout ){ fflush(stdout); }else{ fclose(out); } #else UNUSED_PARAMETER(zFilename); #endif } /* ** This routine is the only routine in this file with external ** linkage. ** ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. The ** arguments specify the block of memory to manage. ** ** This routine is only called by sqlite3_config(), and therefore ** is not required to be threadsafe (it is not). */ SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){ static const sqlite3_mem_methods mempoolMethods = { memsys3Malloc, memsys3Free, memsys3Realloc, memsys3Size, memsys3Roundup, memsys3Init, memsys3Shutdown, 0 }; return &mempoolMethods; } #endif /* SQLITE_ENABLE_MEMSYS3 */ /************** End of mem3.c ************************************************/ /************** Begin file mem5.c ********************************************/ /* ** 2007 October 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** ** This version of the memory allocation subsystem omits all ** use of malloc(). The application gives SQLite a block of memory ** before calling sqlite3_initialize() from which allocations ** are made and returned by the xMalloc() and xRealloc() ** implementations. Once sqlite3_initialize() has been called, ** the amount of memory available to SQLite is fixed and cannot ** be changed. ** ** This version of the memory allocation subsystem is included ** in the build only if SQLITE_ENABLE_MEMSYS5 is defined. ** ** This memory allocator uses the following algorithm: ** ** 1. All memory allocation sizes are rounded up to a power of 2. ** ** 2. If two adjacent free blocks are the halves of a larger block, ** then the two blocks are coalesced into the single larger block. ** ** 3. New memory is allocated from the first available free block. ** ** This algorithm is described in: J. M. Robson. "Bounds for Some Functions ** Concerning Dynamic Storage Allocation". Journal of the Association for ** Computing Machinery, Volume 21, Number 8, July 1974, pages 491-499. ** ** Let n be the size of the largest allocation divided by the minimum ** allocation size (after rounding all sizes up to a power of 2.) Let M ** be the maximum amount of memory ever outstanding at one time. Let ** N be the total amount of memory available for allocation. Robson ** proved that this memory allocator will never breakdown due to ** fragmentation as long as the following constraint holds: ** ** N >= M*(1 + log2(n)/2) - n + 1 ** ** The sqlite3_status() logic tracks the maximum values of n and M so ** that an application can, at any time, verify this constraint. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is used only when ** SQLITE_ENABLE_MEMSYS5 is defined. */ #ifdef SQLITE_ENABLE_MEMSYS5 /* ** A minimum allocation is an instance of the following structure. ** Larger allocations are an array of these structures where the ** size of the array is a power of 2. ** ** The size of this object must be a power of two. That fact is ** verified in memsys5Init(). */ typedef struct Mem5Link Mem5Link; struct Mem5Link { int next; /* Index of next free chunk */ int prev; /* Index of previous free chunk */ }; /* ** Maximum size of any allocation is ((1<=0 && i=0 && iLogsize<=LOGMAX ); assert( (mem5.aCtrl[i] & CTRL_LOGSIZE)==iLogsize ); next = MEM5LINK(i)->next; prev = MEM5LINK(i)->prev; if( prev<0 ){ mem5.aiFreelist[iLogsize] = next; }else{ MEM5LINK(prev)->next = next; } if( next>=0 ){ MEM5LINK(next)->prev = prev; } } /* ** Link the chunk at mem5.aPool[i] so that is on the iLogsize ** free list. */ static void memsys5Link(int i, int iLogsize){ int x; assert( sqlite3_mutex_held(mem5.mutex) ); assert( i>=0 && i=0 && iLogsize<=LOGMAX ); assert( (mem5.aCtrl[i] & CTRL_LOGSIZE)==iLogsize ); x = MEM5LINK(i)->next = mem5.aiFreelist[iLogsize]; MEM5LINK(i)->prev = -1; if( x>=0 ){ assert( xprev = i; } mem5.aiFreelist[iLogsize] = i; } /* ** Obtain or release the mutex needed to access global data structures. */ static void memsys5Enter(void){ sqlite3_mutex_enter(mem5.mutex); } static void memsys5Leave(void){ sqlite3_mutex_leave(mem5.mutex); } /* ** Return the size of an outstanding allocation, in bytes. ** This only works for chunks that are currently checked out. */ static int memsys5Size(void *p){ int iSize, i; assert( p!=0 ); i = (int)(((u8 *)p-mem5.zPool)/mem5.szAtom); assert( i>=0 && i0 ); /* No more than 1GiB per allocation */ if( nByte > 0x40000000 ) return 0; #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* Keep track of the maximum allocation request. Even unfulfilled ** requests are counted */ if( (u32)nByte>mem5.maxRequest ){ mem5.maxRequest = nByte; } #endif /* Round nByte up to the next valid power of two */ for(iFullSz=mem5.szAtom,iLogsize=0; iFullSzLOGMAX ){ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte); return 0; } i = mem5.aiFreelist[iBin]; memsys5Unlink(i, iBin); while( iBin>iLogsize ){ int newSize; iBin--; newSize = 1 << iBin; mem5.aCtrl[i+newSize] = CTRL_FREE | iBin; memsys5Link(i+newSize, iBin); } mem5.aCtrl[i] = iLogsize; #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* Update allocator performance statistics. */ mem5.nAlloc++; mem5.totalAlloc += iFullSz; mem5.totalExcess += iFullSz - nByte; mem5.currentCount++; mem5.currentOut += iFullSz; if( mem5.maxCount=0 && iBlock0 ); assert( mem5.currentOut>=(size*mem5.szAtom) ); mem5.currentCount--; mem5.currentOut -= size*mem5.szAtom; assert( mem5.currentOut>0 || mem5.currentCount==0 ); assert( mem5.currentCount>0 || mem5.currentOut==0 ); #endif mem5.aCtrl[iBlock] = CTRL_FREE | iLogsize; while( ALWAYS(iLogsize>iLogsize) & 1 ){ iBuddy = iBlock - size; assert( iBuddy>=0 ); }else{ iBuddy = iBlock + size; if( iBuddy>=mem5.nBlock ) break; } if( mem5.aCtrl[iBuddy]!=(CTRL_FREE | iLogsize) ) break; memsys5Unlink(iBuddy, iLogsize); iLogsize++; if( iBuddy0 ){ memsys5Enter(); p = memsys5MallocUnsafe(nBytes); memsys5Leave(); } return (void*)p; } /* ** Free memory. ** ** The outer layer memory allocator prevents this routine from ** being called with pPrior==0. */ static void memsys5Free(void *pPrior){ assert( pPrior!=0 ); memsys5Enter(); memsys5FreeUnsafe(pPrior); memsys5Leave(); } /* ** Change the size of an existing memory allocation. ** ** The outer layer memory allocator prevents this routine from ** being called with pPrior==0. ** ** nBytes is always a value obtained from a prior call to ** memsys5Round(). Hence nBytes is always a non-negative power ** of two. If nBytes==0 that means that an oversize allocation ** (an allocation larger than 0x40000000) was requested and this ** routine should return 0 without freeing pPrior. */ static void *memsys5Realloc(void *pPrior, int nBytes){ int nOld; void *p; assert( pPrior!=0 ); assert( (nBytes&(nBytes-1))==0 ); /* EV: R-46199-30249 */ assert( nBytes>=0 ); if( nBytes==0 ){ return 0; } nOld = memsys5Size(pPrior); if( nBytes<=nOld ){ return pPrior; } p = memsys5Malloc(nBytes); if( p ){ memcpy(p, pPrior, nOld); memsys5Free(pPrior); } return p; } /* ** Round up a request size to the next valid allocation size. If ** the allocation is too large to be handled by this allocation system, ** return 0. ** ** All allocations must be a power of two and must be expressed by a ** 32-bit signed integer. Hence the largest allocation is 0x40000000 ** or 1073741824 bytes. */ static int memsys5Roundup(int n){ int iFullSz; if( n > 0x40000000 ) return 0; for(iFullSz=mem5.szAtom; iFullSz 0 ** memsys5Log(2) -> 1 ** memsys5Log(4) -> 2 ** memsys5Log(5) -> 3 ** memsys5Log(8) -> 3 ** memsys5Log(9) -> 4 */ static int memsys5Log(int iValue){ int iLog; for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<mem5.szAtom ){ mem5.szAtom = mem5.szAtom << 1; } mem5.nBlock = (nByte / (mem5.szAtom+sizeof(u8))); mem5.zPool = zByte; mem5.aCtrl = (u8 *)&mem5.zPool[mem5.nBlock*mem5.szAtom]; for(ii=0; ii<=LOGMAX; ii++){ mem5.aiFreelist[ii] = -1; } iOffset = 0; for(ii=LOGMAX; ii>=0; ii--){ int nAlloc = (1<mem5.nBlock); } /* If a mutex is required for normal operation, allocate one */ if( sqlite3GlobalConfig.bMemstat==0 ){ mem5.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); } return SQLITE_OK; } /* ** Deinitialize this module. */ static void memsys5Shutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); mem5.mutex = 0; return; } #ifdef SQLITE_TEST /* ** Open the file indicated and write a log of all unfreed memory ** allocations into that log. */ SQLITE_PRIVATE void sqlite3Memsys5Dump(const char *zFilename){ FILE *out; int i, j, n; int nMinLog; if( zFilename==0 || zFilename[0]==0 ){ out = stdout; }else{ out = fopen(zFilename, "w"); if( out==0 ){ fprintf(stderr, "** Unable to output memory debug output log: %s **\n", zFilename); return; } } memsys5Enter(); nMinLog = memsys5Log(mem5.szAtom); for(i=0; i<=LOGMAX && i+nMinLog<32; i++){ for(n=0, j=mem5.aiFreelist[i]; j>=0; j = MEM5LINK(j)->next, n++){} fprintf(out, "freelist items of size %d: %d\n", mem5.szAtom << i, n); } fprintf(out, "mem5.nAlloc = %llu\n", mem5.nAlloc); fprintf(out, "mem5.totalAlloc = %llu\n", mem5.totalAlloc); fprintf(out, "mem5.totalExcess = %llu\n", mem5.totalExcess); fprintf(out, "mem5.currentOut = %u\n", mem5.currentOut); fprintf(out, "mem5.currentCount = %u\n", mem5.currentCount); fprintf(out, "mem5.maxOut = %u\n", mem5.maxOut); fprintf(out, "mem5.maxCount = %u\n", mem5.maxCount); fprintf(out, "mem5.maxRequest = %u\n", mem5.maxRequest); memsys5Leave(); if( out==stdout ){ fflush(stdout); }else{ fclose(out); } } #endif /* ** This routine is the only routine in this file with external ** linkage. It returns a pointer to a static sqlite3_mem_methods ** struct populated with the memsys5 methods. */ SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){ static const sqlite3_mem_methods memsys5Methods = { memsys5Malloc, memsys5Free, memsys5Realloc, memsys5Size, memsys5Roundup, memsys5Init, memsys5Shutdown, 0 }; return &memsys5Methods; } #endif /* SQLITE_ENABLE_MEMSYS5 */ /************** End of mem5.c ************************************************/ /************** Begin file mutex.c *******************************************/ /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes. ** ** This file contains code that is common across all mutex implementations. */ /* #include "sqliteInt.h" */ #if defined(SQLITE_DEBUG) && !defined(SQLITE_MUTEX_OMIT) /* ** For debugging purposes, record when the mutex subsystem is initialized ** and uninitialized so that we can assert() if there is an attempt to ** allocate a mutex while the system is uninitialized. */ static SQLITE_WSD int mutexIsInit = 0; #endif /* SQLITE_DEBUG && !defined(SQLITE_MUTEX_OMIT) */ #ifndef SQLITE_MUTEX_OMIT #ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS /* ** This block (enclosed by SQLITE_ENABLE_MULTITHREADED_CHECKS) contains ** the implementation of a wrapper around the system default mutex ** implementation (sqlite3DefaultMutex()). ** ** Most calls are passed directly through to the underlying default ** mutex implementation. Except, if a mutex is configured by calling ** sqlite3MutexWarnOnContention() on it, then if contention is ever ** encountered within xMutexEnter() a warning is emitted via sqlite3_log(). ** ** This type of mutex is used as the database handle mutex when testing ** apps that usually use SQLITE_CONFIG_MULTITHREAD mode. */ /* ** Type for all mutexes used when SQLITE_ENABLE_MULTITHREADED_CHECKS ** is defined. Variable CheckMutex.mutex is a pointer to the real mutex ** allocated by the system mutex implementation. Variable iType is usually set ** to the type of mutex requested - SQLITE_MUTEX_RECURSIVE, SQLITE_MUTEX_FAST ** or one of the static mutex identifiers. Or, if this is a recursive mutex ** that has been configured using sqlite3MutexWarnOnContention(), it is ** set to SQLITE_MUTEX_WARNONCONTENTION. */ typedef struct CheckMutex CheckMutex; struct CheckMutex { int iType; sqlite3_mutex *mutex; }; #define SQLITE_MUTEX_WARNONCONTENTION (-1) /* ** Pointer to real mutex methods object used by the CheckMutex ** implementation. Set by checkMutexInit(). */ static SQLITE_WSD const sqlite3_mutex_methods *pGlobalMutexMethods; #ifdef SQLITE_DEBUG static int checkMutexHeld(sqlite3_mutex *p){ return pGlobalMutexMethods->xMutexHeld(((CheckMutex*)p)->mutex); } static int checkMutexNotheld(sqlite3_mutex *p){ return pGlobalMutexMethods->xMutexNotheld(((CheckMutex*)p)->mutex); } #endif /* ** Initialize and deinitialize the mutex subsystem. */ static int checkMutexInit(void){ pGlobalMutexMethods = sqlite3DefaultMutex(); return SQLITE_OK; } static int checkMutexEnd(void){ pGlobalMutexMethods = 0; return SQLITE_OK; } /* ** Allocate a mutex. */ static sqlite3_mutex *checkMutexAlloc(int iType){ static CheckMutex staticMutexes[] = { {2, 0}, {3, 0}, {4, 0}, {5, 0}, {6, 0}, {7, 0}, {8, 0}, {9, 0}, {10, 0}, {11, 0}, {12, 0}, {13, 0} }; CheckMutex *p = 0; assert( SQLITE_MUTEX_RECURSIVE==1 && SQLITE_MUTEX_FAST==0 ); if( iType<2 ){ p = sqlite3MallocZero(sizeof(CheckMutex)); if( p==0 ) return 0; p->iType = iType; }else{ #ifdef SQLITE_ENABLE_API_ARMOR if( iType-2>=ArraySize(staticMutexes) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif p = &staticMutexes[iType-2]; } if( p->mutex==0 ){ p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); if( p->mutex==0 ){ if( iType<2 ){ sqlite3_free(p); } p = 0; } } return (sqlite3_mutex*)p; } /* ** Free a mutex. */ static void checkMutexFree(sqlite3_mutex *p){ assert( SQLITE_MUTEX_RECURSIVE<2 ); assert( SQLITE_MUTEX_FAST<2 ); assert( SQLITE_MUTEX_WARNONCONTENTION<2 ); #if SQLITE_ENABLE_API_ARMOR if( ((CheckMutex*)p)->iType<2 ) #endif { CheckMutex *pCheck = (CheckMutex*)p; pGlobalMutexMethods->xMutexFree(pCheck->mutex); sqlite3_free(pCheck); } #ifdef SQLITE_ENABLE_API_ARMOR else{ (void)SQLITE_MISUSE_BKPT; } #endif } /* ** Enter the mutex. */ static void checkMutexEnter(sqlite3_mutex *p){ CheckMutex *pCheck = (CheckMutex*)p; if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ if( SQLITE_OK==pGlobalMutexMethods->xMutexTry(pCheck->mutex) ){ return; } sqlite3_log(SQLITE_MISUSE, "illegal multi-threaded access to database connection" ); } pGlobalMutexMethods->xMutexEnter(pCheck->mutex); } /* ** Enter the mutex (do not block). */ static int checkMutexTry(sqlite3_mutex *p){ CheckMutex *pCheck = (CheckMutex*)p; return pGlobalMutexMethods->xMutexTry(pCheck->mutex); } /* ** Leave the mutex. */ static void checkMutexLeave(sqlite3_mutex *p){ CheckMutex *pCheck = (CheckMutex*)p; pGlobalMutexMethods->xMutexLeave(pCheck->mutex); } sqlite3_mutex_methods const *multiThreadedCheckMutex(void){ static const sqlite3_mutex_methods sMutex = { checkMutexInit, checkMutexEnd, checkMutexAlloc, checkMutexFree, checkMutexEnter, checkMutexTry, checkMutexLeave, #ifdef SQLITE_DEBUG checkMutexHeld, checkMutexNotheld #else 0, 0 #endif }; return &sMutex; } /* ** Mark the SQLITE_MUTEX_RECURSIVE mutex passed as the only argument as ** one on which there should be no contention. */ SQLITE_PRIVATE void sqlite3MutexWarnOnContention(sqlite3_mutex *p){ if( sqlite3GlobalConfig.mutex.xMutexAlloc==checkMutexAlloc ){ CheckMutex *pCheck = (CheckMutex*)p; assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE ); pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION; } } #endif /* ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS */ /* ** Initialize the mutex system. */ SQLITE_PRIVATE int sqlite3MutexInit(void){ int rc = SQLITE_OK; if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ /* If the xMutexAlloc method has not been set, then the user did not ** install a mutex implementation via sqlite3_config() prior to ** sqlite3_initialize() being called. This block copies pointers to ** the default implementation into the sqlite3GlobalConfig structure. */ sqlite3_mutex_methods const *pFrom; sqlite3_mutex_methods *pTo = &sqlite3GlobalConfig.mutex; if( sqlite3GlobalConfig.bCoreMutex ){ #ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS pFrom = multiThreadedCheckMutex(); #else pFrom = sqlite3DefaultMutex(); #endif }else{ pFrom = sqlite3NoopMutex(); } pTo->xMutexInit = pFrom->xMutexInit; pTo->xMutexEnd = pFrom->xMutexEnd; pTo->xMutexFree = pFrom->xMutexFree; pTo->xMutexEnter = pFrom->xMutexEnter; pTo->xMutexTry = pFrom->xMutexTry; pTo->xMutexLeave = pFrom->xMutexLeave; pTo->xMutexHeld = pFrom->xMutexHeld; pTo->xMutexNotheld = pFrom->xMutexNotheld; sqlite3MemoryBarrier(); pTo->xMutexAlloc = pFrom->xMutexAlloc; } assert( sqlite3GlobalConfig.mutex.xMutexInit ); rc = sqlite3GlobalConfig.mutex.xMutexInit(); #ifdef SQLITE_DEBUG GLOBAL(int, mutexIsInit) = 1; #endif sqlite3MemoryBarrier(); return rc; } /* ** Shutdown the mutex system. This call frees resources allocated by ** sqlite3MutexInit(). */ SQLITE_PRIVATE int sqlite3MutexEnd(void){ int rc = SQLITE_OK; if( sqlite3GlobalConfig.mutex.xMutexEnd ){ rc = sqlite3GlobalConfig.mutex.xMutexEnd(); } #ifdef SQLITE_DEBUG GLOBAL(int, mutexIsInit) = 0; #endif return rc; } /* ** Retrieve a pointer to a static mutex or allocate a new dynamic one. */ SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int id){ #ifndef SQLITE_OMIT_AUTOINIT if( id<=SQLITE_MUTEX_RECURSIVE && sqlite3_initialize() ) return 0; if( id>SQLITE_MUTEX_RECURSIVE && sqlite3MutexInit() ) return 0; #endif assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); return sqlite3GlobalConfig.mutex.xMutexAlloc(id); } SQLITE_PRIVATE sqlite3_mutex *sqlite3MutexAlloc(int id){ if( !sqlite3GlobalConfig.bCoreMutex ){ return 0; } assert( GLOBAL(int, mutexIsInit) ); assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); return sqlite3GlobalConfig.mutex.xMutexAlloc(id); } /* ** Free a dynamic mutex. */ SQLITE_API void sqlite3_mutex_free(sqlite3_mutex *p){ if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexFree ); sqlite3GlobalConfig.mutex.xMutexFree(p); } } /* ** Obtain the mutex p. If some other thread already has the mutex, block ** until it can be obtained. */ SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex *p){ if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexEnter ); sqlite3GlobalConfig.mutex.xMutexEnter(p); } } /* ** Obtain the mutex p. If successful, return SQLITE_OK. Otherwise, if another ** thread holds the mutex and it cannot be obtained, return SQLITE_BUSY. */ SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){ int rc = SQLITE_OK; if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexTry ); return sqlite3GlobalConfig.mutex.xMutexTry(p); } return rc; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was previously ** entered by the same thread. The behavior is undefined if the mutex ** is not currently entered. If a NULL pointer is passed as an argument ** this function is a no-op. */ SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex *p){ if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexLeave ); sqlite3GlobalConfig.mutex.xMutexLeave(p); } } #ifndef NDEBUG /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use inside assert() statements. */ SQLITE_API int sqlite3_mutex_held(sqlite3_mutex *p){ assert( p==0 || sqlite3GlobalConfig.mutex.xMutexHeld ); return p==0 || sqlite3GlobalConfig.mutex.xMutexHeld(p); } SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex *p){ assert( p==0 || sqlite3GlobalConfig.mutex.xMutexNotheld ); return p==0 || sqlite3GlobalConfig.mutex.xMutexNotheld(p); } #endif #endif /* !defined(SQLITE_MUTEX_OMIT) */ /************** End of mutex.c ***********************************************/ /************** Begin file mutex_noop.c **************************************/ /* ** 2008 October 07 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes. ** ** This implementation in this file does not provide any mutual ** exclusion and is thus suitable for use only in applications ** that use SQLite in a single thread. The routines defined ** here are place-holders. Applications can substitute working ** mutex routines at start-time using the ** ** sqlite3_config(SQLITE_CONFIG_MUTEX,...) ** ** interface. ** ** If compiled with SQLITE_DEBUG, then additional logic is inserted ** that does error checking on mutexes to make sure they are being ** called correctly. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_MUTEX_OMIT #ifndef SQLITE_DEBUG /* ** Stub routines for all mutex methods. ** ** This routines provide no mutual exclusion or error checking. */ static int noopMutexInit(void){ return SQLITE_OK; } static int noopMutexEnd(void){ return SQLITE_OK; } static sqlite3_mutex *noopMutexAlloc(int id){ UNUSED_PARAMETER(id); return (sqlite3_mutex*)8; } static void noopMutexFree(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } static void noopMutexEnter(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } static int noopMutexTry(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return SQLITE_OK; } static void noopMutexLeave(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){ static const sqlite3_mutex_methods sMutex = { noopMutexInit, noopMutexEnd, noopMutexAlloc, noopMutexFree, noopMutexEnter, noopMutexTry, noopMutexLeave, 0, 0, }; return &sMutex; } #endif /* !SQLITE_DEBUG */ #ifdef SQLITE_DEBUG /* ** In this implementation, error checking is provided for testing ** and debugging purposes. The mutexes still do not provide any ** mutual exclusion. */ /* ** The mutex object */ typedef struct sqlite3_debug_mutex { int id; /* The mutex type */ int cnt; /* Number of entries without a matching leave */ } sqlite3_debug_mutex; /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use inside assert() statements. */ static int debugMutexHeld(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; return p==0 || p->cnt>0; } static int debugMutexNotheld(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; return p==0 || p->cnt==0; } /* ** Initialize and deinitialize the mutex subsystem. */ static int debugMutexInit(void){ return SQLITE_OK; } static int debugMutexEnd(void){ return SQLITE_OK; } /* ** The sqlite3_mutex_alloc() routine allocates a new ** mutex and returns a pointer to it. If it returns NULL ** that means that a mutex could not be allocated. */ static sqlite3_mutex *debugMutexAlloc(int id){ static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1]; sqlite3_debug_mutex *pNew = 0; switch( id ){ case SQLITE_MUTEX_FAST: case SQLITE_MUTEX_RECURSIVE: { pNew = sqlite3Malloc(sizeof(*pNew)); if( pNew ){ pNew->id = id; pNew->cnt = 0; } break; } default: { #ifdef SQLITE_ENABLE_API_ARMOR if( id-2<0 || id-2>=ArraySize(aStatic) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif pNew = &aStatic[id-2]; pNew->id = id; break; } } return (sqlite3_mutex*)pNew; } /* ** This routine deallocates a previously allocated mutex. */ static void debugMutexFree(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( p->cnt==0 ); if( p->id==SQLITE_MUTEX_RECURSIVE || p->id==SQLITE_MUTEX_FAST ){ sqlite3_free(p); }else{ #ifdef SQLITE_ENABLE_API_ARMOR (void)SQLITE_MISUSE_BKPT; #endif } } /* ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can ** be entered multiple times by the same thread. In such cases the, ** mutex must be exited an equal number of times before another thread ** can enter. If the same thread tries to enter any other kind of mutex ** more than once, the behavior is undefined. */ static void debugMutexEnter(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); p->cnt++; } static int debugMutexTry(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); p->cnt++; return SQLITE_OK; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered or ** is not currently allocated. SQLite will never do either. */ static void debugMutexLeave(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( debugMutexHeld(pX) ); p->cnt--; assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){ static const sqlite3_mutex_methods sMutex = { debugMutexInit, debugMutexEnd, debugMutexAlloc, debugMutexFree, debugMutexEnter, debugMutexTry, debugMutexLeave, debugMutexHeld, debugMutexNotheld }; return &sMutex; } #endif /* SQLITE_DEBUG */ /* ** If compiled with SQLITE_MUTEX_NOOP, then the no-op mutex implementation ** is used regardless of the run-time threadsafety setting. */ #ifdef SQLITE_MUTEX_NOOP SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ return sqlite3NoopMutex(); } #endif /* defined(SQLITE_MUTEX_NOOP) */ #endif /* !defined(SQLITE_MUTEX_OMIT) */ /************** End of mutex_noop.c ******************************************/ /************** Begin file mutex_unix.c **************************************/ /* ** 2007 August 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes for pthreads */ /* #include "sqliteInt.h" */ /* ** The code in this file is only used if we are compiling threadsafe ** under unix with pthreads. ** ** Note that this implementation requires a version of pthreads that ** supports recursive mutexes. */ #ifdef SQLITE_MUTEX_PTHREADS #include /* ** The sqlite3_mutex.id, sqlite3_mutex.nRef, and sqlite3_mutex.owner fields ** are necessary under two condidtions: (1) Debug builds and (2) using ** home-grown mutexes. Encapsulate these conditions into a single #define. */ #if defined(SQLITE_DEBUG) || defined(SQLITE_HOMEGROWN_RECURSIVE_MUTEX) # define SQLITE_MUTEX_NREF 1 #else # define SQLITE_MUTEX_NREF 0 #endif /* ** Each recursive mutex is an instance of the following structure. */ struct sqlite3_mutex { pthread_mutex_t mutex; /* Mutex controlling the lock */ #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) int id; /* Mutex type */ #endif #if SQLITE_MUTEX_NREF volatile int nRef; /* Number of entrances */ volatile pthread_t owner; /* Thread that is within this mutex */ int trace; /* True to trace changes */ #endif }; #if SQLITE_MUTEX_NREF # define SQLITE3_MUTEX_INITIALIZER(id) \ {PTHREAD_MUTEX_INITIALIZER,id,0,(pthread_t)0,0} #elif defined(SQLITE_ENABLE_API_ARMOR) # define SQLITE3_MUTEX_INITIALIZER(id) { PTHREAD_MUTEX_INITIALIZER, id } #else #define SQLITE3_MUTEX_INITIALIZER(id) { PTHREAD_MUTEX_INITIALIZER } #endif /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use only inside assert() statements. On some platforms, ** there might be race conditions that can cause these routines to ** deliver incorrect results. In particular, if pthread_equal() is ** not an atomic operation, then these routines might delivery ** incorrect results. On most platforms, pthread_equal() is a ** comparison of two integers and is therefore atomic. But we are ** told that HPUX is not such a platform. If so, then these routines ** will not always work correctly on HPUX. ** ** On those platforms where pthread_equal() is not atomic, SQLite ** should be compiled without -DSQLITE_DEBUG and with -DNDEBUG to ** make sure no assert() statements are evaluated and hence these ** routines are never called. */ #if !defined(NDEBUG) || defined(SQLITE_DEBUG) static int pthreadMutexHeld(sqlite3_mutex *p){ return (p->nRef!=0 && pthread_equal(p->owner, pthread_self())); } static int pthreadMutexNotheld(sqlite3_mutex *p){ return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0; } #endif /* ** Try to provide a memory barrier operation, needed for initialization ** and also for the implementation of xShmBarrier in the VFS in cases ** where SQLite is compiled without mutexes. */ SQLITE_PRIVATE void sqlite3MemoryBarrier(void){ #if defined(SQLITE_MEMORY_BARRIER) SQLITE_MEMORY_BARRIER; #elif defined(__GNUC__) && GCC_VERSION>=4001000 __sync_synchronize(); #endif } /* ** Initialize and deinitialize the mutex subsystem. */ static int pthreadMutexInit(void){ return SQLITE_OK; } static int pthreadMutexEnd(void){ return SQLITE_OK; } /* ** The sqlite3_mutex_alloc() routine allocates a new ** mutex and returns a pointer to it. If it returns NULL ** that means that a mutex could not be allocated. SQLite ** will unwind its stack and return an error. The argument ** to sqlite3_mutex_alloc() is one of these integer constants: ** **
      **
    • SQLITE_MUTEX_FAST **
    • SQLITE_MUTEX_RECURSIVE **
    • SQLITE_MUTEX_STATIC_MAIN **
    • SQLITE_MUTEX_STATIC_MEM **
    • SQLITE_MUTEX_STATIC_OPEN **
    • SQLITE_MUTEX_STATIC_PRNG **
    • SQLITE_MUTEX_STATIC_LRU **
    • SQLITE_MUTEX_STATIC_PMEM **
    • SQLITE_MUTEX_STATIC_APP1 **
    • SQLITE_MUTEX_STATIC_APP2 **
    • SQLITE_MUTEX_STATIC_APP3 **
    • SQLITE_MUTEX_STATIC_VFS1 **
    • SQLITE_MUTEX_STATIC_VFS2 **
    • SQLITE_MUTEX_STATIC_VFS3 **
    ** ** The first two constants cause sqlite3_mutex_alloc() to create ** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE ** is used but not necessarily so when SQLITE_MUTEX_FAST is used. ** The mutex implementation does not need to make a distinction ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does ** not want to. But SQLite will only request a recursive mutex in ** cases where it really needs one. If a faster non-recursive mutex ** implementation is available on the host platform, the mutex subsystem ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** The other allowed parameters to sqlite3_mutex_alloc() each return ** a pointer to a static preexisting mutex. Six static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or ** SQLITE_MUTEX_RECURSIVE. ** ** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() ** returns a different mutex on every call. But for the static ** mutex types, the same mutex is returned on every call that has ** the same type number. */ static sqlite3_mutex *pthreadMutexAlloc(int iType){ static sqlite3_mutex staticMutexes[] = { SQLITE3_MUTEX_INITIALIZER(2), SQLITE3_MUTEX_INITIALIZER(3), SQLITE3_MUTEX_INITIALIZER(4), SQLITE3_MUTEX_INITIALIZER(5), SQLITE3_MUTEX_INITIALIZER(6), SQLITE3_MUTEX_INITIALIZER(7), SQLITE3_MUTEX_INITIALIZER(8), SQLITE3_MUTEX_INITIALIZER(9), SQLITE3_MUTEX_INITIALIZER(10), SQLITE3_MUTEX_INITIALIZER(11), SQLITE3_MUTEX_INITIALIZER(12), SQLITE3_MUTEX_INITIALIZER(13) }; sqlite3_mutex *p; switch( iType ){ case SQLITE_MUTEX_RECURSIVE: { p = sqlite3MallocZero( sizeof(*p) ); if( p ){ #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX /* If recursive mutexes are not available, we will have to ** build our own. See below. */ pthread_mutex_init(&p->mutex, 0); #else /* Use a recursive mutex if it is available */ pthread_mutexattr_t recursiveAttr; pthread_mutexattr_init(&recursiveAttr); pthread_mutexattr_settype(&recursiveAttr, PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init(&p->mutex, &recursiveAttr); pthread_mutexattr_destroy(&recursiveAttr); #endif #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) p->id = SQLITE_MUTEX_RECURSIVE; #endif } break; } case SQLITE_MUTEX_FAST: { p = sqlite3MallocZero( sizeof(*p) ); if( p ){ pthread_mutex_init(&p->mutex, 0); #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) p->id = SQLITE_MUTEX_FAST; #endif } break; } default: { #ifdef SQLITE_ENABLE_API_ARMOR if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif p = &staticMutexes[iType-2]; break; } } #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) assert( p==0 || p->id==iType ); #endif return p; } /* ** This routine deallocates a previously ** allocated mutex. SQLite is careful to deallocate every ** mutex that it allocates. */ static void pthreadMutexFree(sqlite3_mutex *p){ assert( p->nRef==0 ); #if SQLITE_ENABLE_API_ARMOR if( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE ) #endif { pthread_mutex_destroy(&p->mutex); sqlite3_free(p); } #ifdef SQLITE_ENABLE_API_ARMOR else{ (void)SQLITE_MISUSE_BKPT; } #endif } /* ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can ** be entered multiple times by the same thread. In such cases the, ** mutex must be exited an equal number of times before another thread ** can enter. If the same thread tries to enter any other kind of mutex ** more than once, the behavior is undefined. */ static void pthreadMutexEnter(sqlite3_mutex *p){ assert( p->id==SQLITE_MUTEX_RECURSIVE || pthreadMutexNotheld(p) ); #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX /* If recursive mutexes are not available, then we have to grow ** our own. This implementation assumes that pthread_equal() ** is atomic - that it cannot be deceived into thinking self ** and p->owner are equal if p->owner changes between two values ** that are not equal to self while the comparison is taking place. ** This implementation also assumes a coherent cache - that ** separate processes cannot read different values from the same ** address at the same time. If either of these two conditions ** are not met, then the mutexes will fail and problems will result. */ { pthread_t self = pthread_self(); if( p->nRef>0 && pthread_equal(p->owner, self) ){ p->nRef++; }else{ pthread_mutex_lock(&p->mutex); assert( p->nRef==0 ); p->owner = self; p->nRef = 1; } } #else /* Use the built-in recursive mutexes if they are available. */ pthread_mutex_lock(&p->mutex); #if SQLITE_MUTEX_NREF assert( p->nRef>0 || p->owner==0 ); p->owner = pthread_self(); p->nRef++; #endif #endif #ifdef SQLITE_DEBUG if( p->trace ){ printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); } #endif } static int pthreadMutexTry(sqlite3_mutex *p){ int rc; assert( p->id==SQLITE_MUTEX_RECURSIVE || pthreadMutexNotheld(p) ); #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX /* If recursive mutexes are not available, then we have to grow ** our own. This implementation assumes that pthread_equal() ** is atomic - that it cannot be deceived into thinking self ** and p->owner are equal if p->owner changes between two values ** that are not equal to self while the comparison is taking place. ** This implementation also assumes a coherent cache - that ** separate processes cannot read different values from the same ** address at the same time. If either of these two conditions ** are not met, then the mutexes will fail and problems will result. */ { pthread_t self = pthread_self(); if( p->nRef>0 && pthread_equal(p->owner, self) ){ p->nRef++; rc = SQLITE_OK; }else if( pthread_mutex_trylock(&p->mutex)==0 ){ assert( p->nRef==0 ); p->owner = self; p->nRef = 1; rc = SQLITE_OK; }else{ rc = SQLITE_BUSY; } } #else /* Use the built-in recursive mutexes if they are available. */ if( pthread_mutex_trylock(&p->mutex)==0 ){ #if SQLITE_MUTEX_NREF p->owner = pthread_self(); p->nRef++; #endif rc = SQLITE_OK; }else{ rc = SQLITE_BUSY; } #endif #ifdef SQLITE_DEBUG if( rc==SQLITE_OK && p->trace ){ printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); } #endif return rc; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered or ** is not currently allocated. SQLite will never do either. */ static void pthreadMutexLeave(sqlite3_mutex *p){ assert( pthreadMutexHeld(p) ); #if SQLITE_MUTEX_NREF p->nRef--; if( p->nRef==0 ) p->owner = 0; #endif assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE ); #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX if( p->nRef==0 ){ pthread_mutex_unlock(&p->mutex); } #else pthread_mutex_unlock(&p->mutex); #endif #ifdef SQLITE_DEBUG if( p->trace ){ printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); } #endif } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ static const sqlite3_mutex_methods sMutex = { pthreadMutexInit, pthreadMutexEnd, pthreadMutexAlloc, pthreadMutexFree, pthreadMutexEnter, pthreadMutexTry, pthreadMutexLeave, #ifdef SQLITE_DEBUG pthreadMutexHeld, pthreadMutexNotheld #else 0, 0 #endif }; return &sMutex; } #endif /* SQLITE_MUTEX_PTHREADS */ /************** End of mutex_unix.c ******************************************/ /************** Begin file mutex_w32.c ***************************************/ /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes for Win32. */ /* #include "sqliteInt.h" */ #if SQLITE_OS_WIN /* ** Include code that is common to all os_*.c files */ /* #include "os_common.h" */ /* ** Include the header file for the Windows VFS. */ /************** Include os_win.h in the middle of mutex_w32.c ****************/ /************** Begin file os_win.h ******************************************/ /* ** 2013 November 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to Windows. */ #ifndef SQLITE_OS_WIN_H #define SQLITE_OS_WIN_H /* ** Include the primary Windows SDK header file. */ #include "windows.h" #ifdef __CYGWIN__ # include # include /* amalgamator: dontcache */ #endif /* ** Determine if we are dealing with Windows NT. ** ** We ought to be able to determine if we are compiling for Windows 9x or ** Windows NT using the _WIN32_WINNT macro as follows: ** ** #if defined(_WIN32_WINNT) ** # define SQLITE_OS_WINNT 1 ** #else ** # define SQLITE_OS_WINNT 0 ** #endif ** ** However, Visual Studio 2005 does not set _WIN32_WINNT by default, as ** it ought to, so the above test does not work. We'll just assume that ** everything is Windows NT unless the programmer explicitly says otherwise ** by setting SQLITE_OS_WINNT to 0. */ #if SQLITE_OS_WIN && !defined(SQLITE_OS_WINNT) # define SQLITE_OS_WINNT 1 #endif /* ** Determine if we are dealing with Windows CE - which has a much reduced ** API. */ #if defined(_WIN32_WCE) # define SQLITE_OS_WINCE 1 #else # define SQLITE_OS_WINCE 0 #endif /* ** Determine if we are dealing with WinRT, which provides only a subset of ** the full Win32 API. */ #if !defined(SQLITE_OS_WINRT) # define SQLITE_OS_WINRT 0 #endif /* ** For WinCE, some API function parameters do not appear to be declared as ** volatile. */ #if SQLITE_OS_WINCE # define SQLITE_WIN32_VOLATILE #else # define SQLITE_WIN32_VOLATILE volatile #endif /* ** For some Windows sub-platforms, the _beginthreadex() / _endthreadex() ** functions are not available (e.g. those not using MSVC, Cygwin, etc). */ #if SQLITE_OS_WIN && !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && \ SQLITE_THREADSAFE>0 && !defined(__CYGWIN__) # define SQLITE_OS_WIN_THREADS 1 #else # define SQLITE_OS_WIN_THREADS 0 #endif #endif /* SQLITE_OS_WIN_H */ /************** End of os_win.h **********************************************/ /************** Continuing where we left off in mutex_w32.c ******************/ #endif /* ** The code in this file is only used if we are compiling multithreaded ** on a Win32 system. */ #ifdef SQLITE_MUTEX_W32 /* ** Each recursive mutex is an instance of the following structure. */ struct sqlite3_mutex { CRITICAL_SECTION mutex; /* Mutex controlling the lock */ int id; /* Mutex type */ #ifdef SQLITE_DEBUG volatile int nRef; /* Number of enterances */ volatile DWORD owner; /* Thread holding this mutex */ volatile LONG trace; /* True to trace changes */ #endif }; /* ** These are the initializer values used when declaring a "static" mutex ** on Win32. It should be noted that all mutexes require initialization ** on the Win32 platform. */ #define SQLITE_W32_MUTEX_INITIALIZER { 0 } #ifdef SQLITE_DEBUG #define SQLITE3_MUTEX_INITIALIZER(id) { SQLITE_W32_MUTEX_INITIALIZER, id, \ 0L, (DWORD)0, 0 } #else #define SQLITE3_MUTEX_INITIALIZER(id) { SQLITE_W32_MUTEX_INITIALIZER, id } #endif #ifdef SQLITE_DEBUG /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use only inside assert() statements. */ static int winMutexHeld(sqlite3_mutex *p){ return p->nRef!=0 && p->owner==GetCurrentThreadId(); } static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ return p->nRef==0 || p->owner!=tid; } static int winMutexNotheld(sqlite3_mutex *p){ DWORD tid = GetCurrentThreadId(); return winMutexNotheld2(p, tid); } #endif /* ** Try to provide a memory barrier operation, needed for initialization ** and also for the xShmBarrier method of the VFS in cases when SQLite is ** compiled without mutexes (SQLITE_THREADSAFE=0). */ SQLITE_PRIVATE void sqlite3MemoryBarrier(void){ #if defined(SQLITE_MEMORY_BARRIER) SQLITE_MEMORY_BARRIER; #elif defined(__GNUC__) __sync_synchronize(); #elif MSVC_VERSION>=1300 _ReadWriteBarrier(); #elif defined(MemoryBarrier) MemoryBarrier(); #endif } /* ** Initialize and deinitialize the mutex subsystem. */ static sqlite3_mutex winMutex_staticMutexes[] = { SQLITE3_MUTEX_INITIALIZER(2), SQLITE3_MUTEX_INITIALIZER(3), SQLITE3_MUTEX_INITIALIZER(4), SQLITE3_MUTEX_INITIALIZER(5), SQLITE3_MUTEX_INITIALIZER(6), SQLITE3_MUTEX_INITIALIZER(7), SQLITE3_MUTEX_INITIALIZER(8), SQLITE3_MUTEX_INITIALIZER(9), SQLITE3_MUTEX_INITIALIZER(10), SQLITE3_MUTEX_INITIALIZER(11), SQLITE3_MUTEX_INITIALIZER(12), SQLITE3_MUTEX_INITIALIZER(13) }; static int winMutex_isInit = 0; static int winMutex_isNt = -1; /* <0 means "need to query" */ /* As the winMutexInit() and winMutexEnd() functions are called as part ** of the sqlite3_initialize() and sqlite3_shutdown() processing, the ** "interlocked" magic used here is probably not strictly necessary. */ static LONG SQLITE_WIN32_VOLATILE winMutex_lock = 0; SQLITE_API int sqlite3_win32_is_nt(void); /* os_win.c */ SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds); /* os_win.c */ static int winMutexInit(void){ /* The first to increment to 1 does actual initialization */ if( InterlockedCompareExchange(&winMutex_lock, 1, 0)==0 ){ int i; for(i=0; i **
  • SQLITE_MUTEX_FAST **
  • SQLITE_MUTEX_RECURSIVE **
  • SQLITE_MUTEX_STATIC_MAIN **
  • SQLITE_MUTEX_STATIC_MEM **
  • SQLITE_MUTEX_STATIC_OPEN **
  • SQLITE_MUTEX_STATIC_PRNG **
  • SQLITE_MUTEX_STATIC_LRU **
  • SQLITE_MUTEX_STATIC_PMEM **
  • SQLITE_MUTEX_STATIC_APP1 **
  • SQLITE_MUTEX_STATIC_APP2 **
  • SQLITE_MUTEX_STATIC_APP3 **
  • SQLITE_MUTEX_STATIC_VFS1 **
  • SQLITE_MUTEX_STATIC_VFS2 **
  • SQLITE_MUTEX_STATIC_VFS3 ** ** ** The first two constants cause sqlite3_mutex_alloc() to create ** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE ** is used but not necessarily so when SQLITE_MUTEX_FAST is used. ** The mutex implementation does not need to make a distinction ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does ** not want to. But SQLite will only request a recursive mutex in ** cases where it really needs one. If a faster non-recursive mutex ** implementation is available on the host platform, the mutex subsystem ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** The other allowed parameters to sqlite3_mutex_alloc() each return ** a pointer to a static preexisting mutex. Six static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or ** SQLITE_MUTEX_RECURSIVE. ** ** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() ** returns a different mutex on every call. But for the static ** mutex types, the same mutex is returned on every call that has ** the same type number. */ static sqlite3_mutex *winMutexAlloc(int iType){ sqlite3_mutex *p; switch( iType ){ case SQLITE_MUTEX_FAST: case SQLITE_MUTEX_RECURSIVE: { p = sqlite3MallocZero( sizeof(*p) ); if( p ){ p->id = iType; #ifdef SQLITE_DEBUG #ifdef SQLITE_WIN32_MUTEX_TRACE_DYNAMIC p->trace = 1; #endif #endif #if SQLITE_OS_WINRT InitializeCriticalSectionEx(&p->mutex, 0, 0); #else InitializeCriticalSection(&p->mutex); #endif } break; } default: { #ifdef SQLITE_ENABLE_API_ARMOR if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif p = &winMutex_staticMutexes[iType-2]; #ifdef SQLITE_DEBUG #ifdef SQLITE_WIN32_MUTEX_TRACE_STATIC InterlockedCompareExchange(&p->trace, 1, 0); #endif #endif break; } } assert( p==0 || p->id==iType ); return p; } /* ** This routine deallocates a previously ** allocated mutex. SQLite is careful to deallocate every ** mutex that it allocates. */ static void winMutexFree(sqlite3_mutex *p){ assert( p ); assert( p->nRef==0 && p->owner==0 ); if( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE ){ DeleteCriticalSection(&p->mutex); sqlite3_free(p); }else{ #ifdef SQLITE_ENABLE_API_ARMOR (void)SQLITE_MISUSE_BKPT; #endif } } /* ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can ** be entered multiple times by the same thread. In such cases the, ** mutex must be exited an equal number of times before another thread ** can enter. If the same thread tries to enter any other kind of mutex ** more than once, the behavior is undefined. */ static void winMutexEnter(sqlite3_mutex *p){ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) DWORD tid = GetCurrentThreadId(); #endif #ifdef SQLITE_DEBUG assert( p ); assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) ); #else assert( p ); #endif assert( winMutex_isInit==1 ); EnterCriticalSection(&p->mutex); #ifdef SQLITE_DEBUG assert( p->nRef>0 || p->owner==0 ); p->owner = tid; p->nRef++; if( p->trace ){ OSTRACE(("ENTER-MUTEX tid=%lu, mutex(%d)=%p (%d), nRef=%d\n", tid, p->id, p, p->trace, p->nRef)); } #endif } static int winMutexTry(sqlite3_mutex *p){ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) DWORD tid = GetCurrentThreadId(); #endif int rc = SQLITE_BUSY; assert( p ); assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) ); /* ** The sqlite3_mutex_try() routine is very rarely used, and when it ** is used it is merely an optimization. So it is OK for it to always ** fail. ** ** The TryEnterCriticalSection() interface is only available on WinNT. ** And some windows compilers complain if you try to use it without ** first doing some #defines that prevent SQLite from building on Win98. ** For that reason, we will omit this optimization for now. See ** ticket #2685. */ #if defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x0400 assert( winMutex_isInit==1 ); assert( winMutex_isNt>=-1 && winMutex_isNt<=1 ); if( winMutex_isNt<0 ){ winMutex_isNt = sqlite3_win32_is_nt(); } assert( winMutex_isNt==0 || winMutex_isNt==1 ); if( winMutex_isNt && TryEnterCriticalSection(&p->mutex) ){ #ifdef SQLITE_DEBUG p->owner = tid; p->nRef++; #endif rc = SQLITE_OK; } #else UNUSED_PARAMETER(p); #endif #ifdef SQLITE_DEBUG if( p->trace ){ OSTRACE(("TRY-MUTEX tid=%lu, mutex(%d)=%p (%d), owner=%lu, nRef=%d, rc=%s\n", tid, p->id, p, p->trace, p->owner, p->nRef, sqlite3ErrName(rc))); } #endif return rc; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered or ** is not currently allocated. SQLite will never do either. */ static void winMutexLeave(sqlite3_mutex *p){ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) DWORD tid = GetCurrentThreadId(); #endif assert( p ); #ifdef SQLITE_DEBUG assert( p->nRef>0 ); assert( p->owner==tid ); p->nRef--; if( p->nRef==0 ) p->owner = 0; assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE ); #endif assert( winMutex_isInit==1 ); LeaveCriticalSection(&p->mutex); #ifdef SQLITE_DEBUG if( p->trace ){ OSTRACE(("LEAVE-MUTEX tid=%lu, mutex(%d)=%p (%d), nRef=%d\n", tid, p->id, p, p->trace, p->nRef)); } #endif } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ static const sqlite3_mutex_methods sMutex = { winMutexInit, winMutexEnd, winMutexAlloc, winMutexFree, winMutexEnter, winMutexTry, winMutexLeave, #ifdef SQLITE_DEBUG winMutexHeld, winMutexNotheld #else 0, 0 #endif }; return &sMutex; } #endif /* SQLITE_MUTEX_W32 */ /************** End of mutex_w32.c *******************************************/ /************** Begin file malloc.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** Memory allocation functions used throughout sqlite. */ /* #include "sqliteInt.h" */ /* #include */ /* ** Attempt to release up to n bytes of non-essential memory currently ** held by SQLite. An example of non-essential memory is memory used to ** cache database pages that are not currently in use. */ SQLITE_API int sqlite3_release_memory(int n){ #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT return sqlite3PcacheReleaseMemory(n); #else /* IMPLEMENTATION-OF: R-34391-24921 The sqlite3_release_memory() routine ** is a no-op returning zero if SQLite is not compiled with ** SQLITE_ENABLE_MEMORY_MANAGEMENT. */ UNUSED_PARAMETER(n); return 0; #endif } /* ** Default value of the hard heap limit. 0 means "no limit". */ #ifndef SQLITE_MAX_MEMORY # define SQLITE_MAX_MEMORY 0 #endif /* ** State information local to the memory allocation subsystem. */ static SQLITE_WSD struct Mem0Global { sqlite3_mutex *mutex; /* Mutex to serialize access */ sqlite3_int64 alarmThreshold; /* The soft heap limit */ sqlite3_int64 hardLimit; /* The hard upper bound on memory */ /* ** True if heap is nearly "full" where "full" is defined by the ** sqlite3_soft_heap_limit() setting. */ int nearlyFull; } mem0 = { 0, SQLITE_MAX_MEMORY, SQLITE_MAX_MEMORY, 0 }; #define mem0 GLOBAL(struct Mem0Global, mem0) /* ** Return the memory allocator mutex. sqlite3_status() needs it. */ SQLITE_PRIVATE sqlite3_mutex *sqlite3MallocMutex(void){ return mem0.mutex; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Deprecated external interface. It used to set an alarm callback ** that was invoked when memory usage grew too large. Now it is a ** no-op. */ SQLITE_API int sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ){ (void)xCallback; (void)pArg; (void)iThreshold; return SQLITE_OK; } #endif /* ** Set the soft heap-size limit for the library. An argument of ** zero disables the limit. A negative argument is a no-op used to ** obtain the return value. ** ** The return value is the value of the heap limit just before this ** interface was called. ** ** If the hard heap limit is enabled, then the soft heap limit cannot ** be disabled nor raised above the hard heap limit. */ SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){ sqlite3_int64 priorLimit; sqlite3_int64 excess; sqlite3_int64 nUsed; #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return -1; #endif sqlite3_mutex_enter(mem0.mutex); priorLimit = mem0.alarmThreshold; if( n<0 ){ sqlite3_mutex_leave(mem0.mutex); return priorLimit; } if( mem0.hardLimit>0 && (n>mem0.hardLimit || n==0) ){ n = mem0.hardLimit; } mem0.alarmThreshold = n; nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); AtomicStore(&mem0.nearlyFull, n>0 && n<=nUsed); sqlite3_mutex_leave(mem0.mutex); excess = sqlite3_memory_used() - n; if( excess>0 ) sqlite3_release_memory((int)(excess & 0x7fffffff)); return priorLimit; } SQLITE_API void sqlite3_soft_heap_limit(int n){ if( n<0 ) n = 0; sqlite3_soft_heap_limit64(n); } /* ** Set the hard heap-size limit for the library. An argument of zero ** disables the hard heap limit. A negative argument is a no-op used ** to obtain the return value without affecting the hard heap limit. ** ** The return value is the value of the hard heap limit just prior to ** calling this interface. ** ** Setting the hard heap limit will also activate the soft heap limit ** and constrain the soft heap limit to be no more than the hard heap ** limit. */ SQLITE_API sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 n){ sqlite3_int64 priorLimit; #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return -1; #endif sqlite3_mutex_enter(mem0.mutex); priorLimit = mem0.hardLimit; if( n>=0 ){ mem0.hardLimit = n; if( n0 ); /* In Firefox (circa 2017-02-08), xRoundup() is remapped to an internal ** implementation of malloc_good_size(), which must be called in debug ** mode and specifically when the DMD "Dark Matter Detector" is enabled ** or else a crash results. Hence, do not attempt to optimize out the ** following xRoundup() call. */ nFull = sqlite3GlobalConfig.m.xRoundup(n); sqlite3StatusHighwater(SQLITE_STATUS_MALLOC_SIZE, n); if( mem0.alarmThreshold>0 ){ sqlite3_int64 nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); if( nUsed >= mem0.alarmThreshold - nFull ){ AtomicStore(&mem0.nearlyFull, 1); sqlite3MallocAlarm(nFull); if( mem0.hardLimit ){ nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); if( nUsed >= mem0.hardLimit - nFull ){ *pp = 0; return; } } }else{ AtomicStore(&mem0.nearlyFull, 0); } } p = sqlite3GlobalConfig.m.xMalloc(nFull); #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT if( p==0 && mem0.alarmThreshold>0 ){ sqlite3MallocAlarm(nFull); p = sqlite3GlobalConfig.m.xMalloc(nFull); } #endif if( p ){ nFull = sqlite3MallocSize(p); sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nFull); sqlite3StatusUp(SQLITE_STATUS_MALLOC_COUNT, 1); } *pp = p; } /* ** Allocate memory. This routine is like sqlite3_malloc() except that it ** assumes the memory subsystem has already been initialized. */ SQLITE_PRIVATE void *sqlite3Malloc(u64 n){ void *p; if( n==0 || n>=0x7fffff00 ){ /* A memory allocation of a number of bytes which is near the maximum ** signed integer value might cause an integer overflow inside of the ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving ** 255 bytes of overhead. SQLite itself will never use anything near ** this amount. The only way to reach the limit is with sqlite3_malloc() */ p = 0; }else if( sqlite3GlobalConfig.bMemstat ){ sqlite3_mutex_enter(mem0.mutex); mallocWithAlarm((int)n, &p); sqlite3_mutex_leave(mem0.mutex); }else{ p = sqlite3GlobalConfig.m.xMalloc((int)n); } assert( EIGHT_BYTE_ALIGNMENT(p) ); /* IMP: R-11148-40995 */ return p; } /* ** This version of the memory allocation is for use by the application. ** First make sure the memory subsystem is initialized, then do the ** allocation. */ SQLITE_API void *sqlite3_malloc(int n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return n<=0 ? 0 : sqlite3Malloc(n); } SQLITE_API void *sqlite3_malloc64(sqlite3_uint64 n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return sqlite3Malloc(n); } /* ** TRUE if p is a lookaside memory allocation from db */ #ifndef SQLITE_OMIT_LOOKASIDE static int isLookaside(sqlite3 *db, const void *p){ return SQLITE_WITHIN(p, db->lookaside.pStart, db->lookaside.pEnd); } #else #define isLookaside(A,B) 0 #endif /* ** Return the size of a memory allocation previously obtained from ** sqlite3Malloc() or sqlite3_malloc(). */ SQLITE_PRIVATE int sqlite3MallocSize(const void *p){ assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); return sqlite3GlobalConfig.m.xSize((void*)p); } static int lookasideMallocSize(sqlite3 *db, const void *p){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE return plookaside.pMiddle ? db->lookaside.szTrue : LOOKASIDE_SMALL; #else return db->lookaside.szTrue; #endif } SQLITE_PRIVATE int sqlite3DbMallocSize(sqlite3 *db, const void *p){ assert( p!=0 ); #ifdef SQLITE_DEBUG if( db==0 || !isLookaside(db,p) ){ if( db==0 ){ assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); }else{ assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); } } #endif if( db ){ if( ((uptr)p)<(uptr)(db->lookaside.pEnd) ){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){ assert( sqlite3_mutex_held(db->mutex) ); return LOOKASIDE_SMALL; } #endif if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ assert( sqlite3_mutex_held(db->mutex) ); return db->lookaside.szTrue; } } } return sqlite3GlobalConfig.m.xSize((void*)p); } SQLITE_API sqlite3_uint64 sqlite3_msize(void *p){ assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); return p ? sqlite3GlobalConfig.m.xSize(p) : 0; } /* ** Free memory previously obtained from sqlite3Malloc(). */ SQLITE_API void sqlite3_free(void *p){ if( p==0 ) return; /* IMP: R-49053-54554 */ assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); if( sqlite3GlobalConfig.bMemstat ){ sqlite3_mutex_enter(mem0.mutex); sqlite3StatusDown(SQLITE_STATUS_MEMORY_USED, sqlite3MallocSize(p)); sqlite3StatusDown(SQLITE_STATUS_MALLOC_COUNT, 1); sqlite3GlobalConfig.m.xFree(p); sqlite3_mutex_leave(mem0.mutex); }else{ sqlite3GlobalConfig.m.xFree(p); } } /* ** Add the size of memory allocation "p" to the count in ** *db->pnBytesFreed. */ static SQLITE_NOINLINE void measureAllocationSize(sqlite3 *db, void *p){ *db->pnBytesFreed += sqlite3DbMallocSize(db,p); } /* ** Free memory that might be associated with a particular database ** connection. Calling sqlite3DbFree(D,X) for X==0 is a harmless no-op. ** The sqlite3DbFreeNN(D,X) version requires that X be non-NULL. */ SQLITE_PRIVATE void sqlite3DbFreeNN(sqlite3 *db, void *p){ assert( db==0 || sqlite3_mutex_held(db->mutex) ); assert( p!=0 ); if( db ){ if( db->pnBytesFreed ){ measureAllocationSize(db, p); return; } if( ((uptr)p)<(uptr)(db->lookaside.pEnd) ){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){ LookasideSlot *pBuf = (LookasideSlot*)p; #ifdef SQLITE_DEBUG memset(p, 0xaa, LOOKASIDE_SMALL); /* Trash freed content */ #endif pBuf->pNext = db->lookaside.pSmallFree; db->lookaside.pSmallFree = pBuf; return; } #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ LookasideSlot *pBuf = (LookasideSlot*)p; #ifdef SQLITE_DEBUG memset(p, 0xaa, db->lookaside.szTrue); /* Trash freed content */ #endif pBuf->pNext = db->lookaside.pFree; db->lookaside.pFree = pBuf; return; } } } assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( db!=0 || sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); sqlite3MemdebugSetType(p, MEMTYPE_HEAP); sqlite3_free(p); } SQLITE_PRIVATE void sqlite3DbFree(sqlite3 *db, void *p){ assert( db==0 || sqlite3_mutex_held(db->mutex) ); if( p ) sqlite3DbFreeNN(db, p); } /* ** Change the size of an existing memory allocation */ SQLITE_PRIVATE void *sqlite3Realloc(void *pOld, u64 nBytes){ int nOld, nNew, nDiff; void *pNew; assert( sqlite3MemdebugHasType(pOld, MEMTYPE_HEAP) ); assert( sqlite3MemdebugNoType(pOld, (u8)~MEMTYPE_HEAP) ); if( pOld==0 ){ return sqlite3Malloc(nBytes); /* IMP: R-04300-56712 */ } if( nBytes==0 ){ sqlite3_free(pOld); /* IMP: R-26507-47431 */ return 0; } if( nBytes>=0x7fffff00 ){ /* The 0x7ffff00 limit term is explained in comments on sqlite3Malloc() */ return 0; } nOld = sqlite3MallocSize(pOld); /* IMPLEMENTATION-OF: R-46199-30249 SQLite guarantees that the second ** argument to xRealloc is always a value returned by a prior call to ** xRoundup. */ nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes); if( nOld==nNew ){ pNew = pOld; }else if( sqlite3GlobalConfig.bMemstat ){ sqlite3_int64 nUsed; sqlite3_mutex_enter(mem0.mutex); sqlite3StatusHighwater(SQLITE_STATUS_MALLOC_SIZE, (int)nBytes); nDiff = nNew - nOld; if( nDiff>0 && (nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED)) >= mem0.alarmThreshold-nDiff ){ sqlite3MallocAlarm(nDiff); if( mem0.hardLimit>0 && nUsed >= mem0.hardLimit - nDiff ){ sqlite3_mutex_leave(mem0.mutex); return 0; } } pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT if( pNew==0 && mem0.alarmThreshold>0 ){ sqlite3MallocAlarm((int)nBytes); pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); } #endif if( pNew ){ nNew = sqlite3MallocSize(pNew); sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nNew-nOld); } sqlite3_mutex_leave(mem0.mutex); }else{ pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); } assert( EIGHT_BYTE_ALIGNMENT(pNew) ); /* IMP: R-11148-40995 */ return pNew; } /* ** The public interface to sqlite3Realloc. Make sure that the memory ** subsystem is initialized prior to invoking sqliteRealloc. */ SQLITE_API void *sqlite3_realloc(void *pOld, int n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif if( n<0 ) n = 0; /* IMP: R-26507-47431 */ return sqlite3Realloc(pOld, n); } SQLITE_API void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return sqlite3Realloc(pOld, n); } /* ** Allocate and zero memory. */ SQLITE_PRIVATE void *sqlite3MallocZero(u64 n){ void *p = sqlite3Malloc(n); if( p ){ memset(p, 0, (size_t)n); } return p; } /* ** Allocate and zero memory. If the allocation fails, make ** the mallocFailed flag in the connection pointer. */ SQLITE_PRIVATE void *sqlite3DbMallocZero(sqlite3 *db, u64 n){ void *p; testcase( db==0 ); p = sqlite3DbMallocRaw(db, n); if( p ) memset(p, 0, (size_t)n); return p; } /* Finish the work of sqlite3DbMallocRawNN for the unusual and ** slower case when the allocation cannot be fulfilled using lookaside. */ static SQLITE_NOINLINE void *dbMallocRawFinish(sqlite3 *db, u64 n){ void *p; assert( db!=0 ); p = sqlite3Malloc(n); if( !p ) sqlite3OomFault(db); sqlite3MemdebugSetType(p, (db->lookaside.bDisable==0) ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP); return p; } /* ** Allocate memory, either lookaside (if possible) or heap. ** If the allocation fails, set the mallocFailed flag in ** the connection pointer. ** ** If db!=0 and db->mallocFailed is true (indicating a prior malloc ** failure on the same database connection) then always return 0. ** Hence for a particular database connection, once malloc starts ** failing, it fails consistently until mallocFailed is reset. ** This is an important assumption. There are many places in the ** code that do things like this: ** ** int *a = (int*)sqlite3DbMallocRaw(db, 100); ** int *b = (int*)sqlite3DbMallocRaw(db, 200); ** if( b ) a[10] = 9; ** ** In other words, if a subsequent malloc (ex: "b") worked, it is assumed ** that all prior mallocs (ex: "a") worked too. ** ** The sqlite3MallocRawNN() variant guarantees that the "db" parameter is ** not a NULL pointer. */ SQLITE_PRIVATE void *sqlite3DbMallocRaw(sqlite3 *db, u64 n){ void *p; if( db ) return sqlite3DbMallocRawNN(db, n); p = sqlite3Malloc(n); sqlite3MemdebugSetType(p, MEMTYPE_HEAP); return p; } SQLITE_PRIVATE void *sqlite3DbMallocRawNN(sqlite3 *db, u64 n){ #ifndef SQLITE_OMIT_LOOKASIDE LookasideSlot *pBuf; assert( db!=0 ); assert( sqlite3_mutex_held(db->mutex) ); assert( db->pnBytesFreed==0 ); if( n>db->lookaside.sz ){ if( !db->lookaside.bDisable ){ db->lookaside.anStat[1]++; }else if( db->mallocFailed ){ return 0; } return dbMallocRawFinish(db, n); } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( n<=LOOKASIDE_SMALL ){ if( (pBuf = db->lookaside.pSmallFree)!=0 ){ db->lookaside.pSmallFree = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; }else if( (pBuf = db->lookaside.pSmallInit)!=0 ){ db->lookaside.pSmallInit = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; } } #endif if( (pBuf = db->lookaside.pFree)!=0 ){ db->lookaside.pFree = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; }else if( (pBuf = db->lookaside.pInit)!=0 ){ db->lookaside.pInit = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; }else{ db->lookaside.anStat[2]++; } #else assert( db!=0 ); assert( sqlite3_mutex_held(db->mutex) ); assert( db->pnBytesFreed==0 ); if( db->mallocFailed ){ return 0; } #endif return dbMallocRawFinish(db, n); } /* Forward declaration */ static SQLITE_NOINLINE void *dbReallocFinish(sqlite3 *db, void *p, u64 n); /* ** Resize the block of memory pointed to by p to n bytes. If the ** resize fails, set the mallocFailed flag in the connection object. */ SQLITE_PRIVATE void *sqlite3DbRealloc(sqlite3 *db, void *p, u64 n){ assert( db!=0 ); if( p==0 ) return sqlite3DbMallocRawNN(db, n); assert( sqlite3_mutex_held(db->mutex) ); if( ((uptr)p)<(uptr)db->lookaside.pEnd ){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( ((uptr)p)>=(uptr)db->lookaside.pMiddle ){ if( n<=LOOKASIDE_SMALL ) return p; }else #endif if( ((uptr)p)>=(uptr)db->lookaside.pStart ){ if( n<=db->lookaside.szTrue ) return p; } } return dbReallocFinish(db, p, n); } static SQLITE_NOINLINE void *dbReallocFinish(sqlite3 *db, void *p, u64 n){ void *pNew = 0; assert( db!=0 ); assert( p!=0 ); if( db->mallocFailed==0 ){ if( isLookaside(db, p) ){ pNew = sqlite3DbMallocRawNN(db, n); if( pNew ){ memcpy(pNew, p, lookasideMallocSize(db, p)); sqlite3DbFree(db, p); } }else{ assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); sqlite3MemdebugSetType(p, MEMTYPE_HEAP); pNew = sqlite3Realloc(p, n); if( !pNew ){ sqlite3OomFault(db); } sqlite3MemdebugSetType(pNew, (db->lookaside.bDisable==0 ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP)); } } return pNew; } /* ** Attempt to reallocate p. If the reallocation fails, then free p ** and set the mallocFailed flag in the database connection. */ SQLITE_PRIVATE void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, u64 n){ void *pNew; pNew = sqlite3DbRealloc(db, p, n); if( !pNew ){ sqlite3DbFree(db, p); } return pNew; } /* ** Make a copy of a string in memory obtained from sqliteMalloc(). These ** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This ** is because when memory debugging is turned on, these two functions are ** called via macros that record the current file and line number in the ** ThreadData structure. */ SQLITE_PRIVATE char *sqlite3DbStrDup(sqlite3 *db, const char *z){ char *zNew; size_t n; if( z==0 ){ return 0; } n = strlen(z) + 1; zNew = sqlite3DbMallocRaw(db, n); if( zNew ){ memcpy(zNew, z, n); } return zNew; } SQLITE_PRIVATE char *sqlite3DbStrNDup(sqlite3 *db, const char *z, u64 n){ char *zNew; assert( db!=0 ); assert( z!=0 || n==0 ); assert( (n&0x7fffffff)==n ); zNew = z ? sqlite3DbMallocRawNN(db, n+1) : 0; if( zNew ){ memcpy(zNew, z, (size_t)n); zNew[n] = 0; } return zNew; } /* ** The text between zStart and zEnd represents a phrase within a larger ** SQL statement. Make a copy of this phrase in space obtained form ** sqlite3DbMalloc(). Omit leading and trailing whitespace. */ SQLITE_PRIVATE char *sqlite3DbSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){ int n; while( sqlite3Isspace(zStart[0]) ) zStart++; n = (int)(zEnd - zStart); while( ALWAYS(n>0) && sqlite3Isspace(zStart[n-1]) ) n--; return sqlite3DbStrNDup(db, zStart, n); } /* ** Free any prior content in *pz and replace it with a copy of zNew. */ SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){ sqlite3DbFree(db, *pz); *pz = sqlite3DbStrDup(db, zNew); } /* ** Call this routine to record the fact that an OOM (out-of-memory) error ** has happened. This routine will set db->mallocFailed, and also ** temporarily disable the lookaside memory allocator and interrupt ** any running VDBEs. ** ** Always return a NULL pointer so that this routine can be invoked using ** ** return sqlite3OomFault(db); ** ** and thereby avoid unnecessary stack frame allocations for the overwhelmingly ** common case where no OOM occurs. */ SQLITE_PRIVATE void *sqlite3OomFault(sqlite3 *db){ if( db->mallocFailed==0 && db->bBenignMalloc==0 ){ db->mallocFailed = 1; if( db->nVdbeExec>0 ){ AtomicStore(&db->u1.isInterrupted, 1); } DisableLookaside; if( db->pParse ){ sqlite3ErrorMsg(db->pParse, "out of memory"); db->pParse->rc = SQLITE_NOMEM_BKPT; } } return 0; } /* ** This routine reactivates the memory allocator and clears the ** db->mallocFailed flag as necessary. ** ** The memory allocator is not restarted if there are running ** VDBEs. */ SQLITE_PRIVATE void sqlite3OomClear(sqlite3 *db){ if( db->mallocFailed && db->nVdbeExec==0 ){ db->mallocFailed = 0; AtomicStore(&db->u1.isInterrupted, 0); assert( db->lookaside.bDisable>0 ); EnableLookaside; } } /* ** Take actions at the end of an API call to deal with error codes. */ static SQLITE_NOINLINE int apiHandleError(sqlite3 *db, int rc){ if( db->mallocFailed || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomClear(db); sqlite3Error(db, SQLITE_NOMEM); return SQLITE_NOMEM_BKPT; } return rc & db->errMask; } /* ** This function must be called before exiting any API function (i.e. ** returning control to the user) that has called sqlite3_malloc or ** sqlite3_realloc. ** ** The returned value is normally a copy of the second argument to this ** function. However, if a malloc() failure has occurred since the previous ** invocation SQLITE_NOMEM is returned instead. ** ** If an OOM as occurred, then the connection error-code (the value ** returned by sqlite3_errcode()) is set to SQLITE_NOMEM. */ SQLITE_PRIVATE int sqlite3ApiExit(sqlite3* db, int rc){ /* If the db handle must hold the connection handle mutex here. ** Otherwise the read (and possible write) of db->mallocFailed ** is unsafe, as is the call to sqlite3Error(). */ assert( db!=0 ); assert( sqlite3_mutex_held(db->mutex) ); if( db->mallocFailed || rc ){ return apiHandleError(db, rc); } return rc & db->errMask; } /************** End of malloc.c **********************************************/ /************** Begin file printf.c ******************************************/ /* ** The "printf" code that follows dates from the 1980's. It is in ** the public domain. ** ************************************************************************** ** ** This file contains code for a set of "printf"-like routines. These ** routines format strings much like the printf() from the standard C ** library, though the implementation here has enhancements to support ** SQLite. */ /* #include "sqliteInt.h" */ /* ** Conversion types fall into various categories as defined by the ** following enumeration. */ #define etRADIX 0 /* non-decimal integer types. %x %o */ #define etFLOAT 1 /* Floating point. %f */ #define etEXP 2 /* Exponentional notation. %e and %E */ #define etGENERIC 3 /* Floating or exponential, depending on exponent. %g */ #define etSIZE 4 /* Return number of characters processed so far. %n */ #define etSTRING 5 /* Strings. %s */ #define etDYNSTRING 6 /* Dynamically allocated strings. %z */ #define etPERCENT 7 /* Percent symbol. %% */ #define etCHARX 8 /* Characters. %c */ /* The rest are extensions, not normally found in printf() */ #define etSQLESCAPE 9 /* Strings with '\'' doubled. %q */ #define etSQLESCAPE2 10 /* Strings with '\'' doubled and enclosed in '', NULL pointers replaced by SQL NULL. %Q */ #define etTOKEN 11 /* a pointer to a Token structure */ #define etSRCITEM 12 /* a pointer to a SrcItem */ #define etPOINTER 13 /* The %p conversion */ #define etSQLESCAPE3 14 /* %w -> Strings with '\"' doubled */ #define etORDINAL 15 /* %r -> 1st, 2nd, 3rd, 4th, etc. English only */ #define etDECIMAL 16 /* %d or %u, but not %x, %o */ #define etINVALID 17 /* Any unrecognized conversion type */ /* ** An "etByte" is an 8-bit unsigned value. */ typedef unsigned char etByte; /* ** Each builtin conversion character (ex: the 'd' in "%d") is described ** by an instance of the following structure */ typedef struct et_info { /* Information about each format field */ char fmttype; /* The format field code letter */ etByte base; /* The base for radix conversion */ etByte flags; /* One or more of FLAG_ constants below */ etByte type; /* Conversion paradigm */ etByte charset; /* Offset into aDigits[] of the digits string */ etByte prefix; /* Offset into aPrefix[] of the prefix string */ } et_info; /* ** Allowed values for et_info.flags */ #define FLAG_SIGNED 1 /* True if the value to convert is signed */ #define FLAG_STRING 4 /* Allow infinite precision */ /* ** The following table is searched linearly, so it is good to put the ** most frequently used conversion types first. */ static const char aDigits[] = "0123456789ABCDEF0123456789abcdef"; static const char aPrefix[] = "-x0\000X0"; static const et_info fmtinfo[] = { { 'd', 10, 1, etDECIMAL, 0, 0 }, { 's', 0, 4, etSTRING, 0, 0 }, { 'g', 0, 1, etGENERIC, 30, 0 }, { 'z', 0, 4, etDYNSTRING, 0, 0 }, { 'q', 0, 4, etSQLESCAPE, 0, 0 }, { 'Q', 0, 4, etSQLESCAPE2, 0, 0 }, { 'w', 0, 4, etSQLESCAPE3, 0, 0 }, { 'c', 0, 0, etCHARX, 0, 0 }, { 'o', 8, 0, etRADIX, 0, 2 }, { 'u', 10, 0, etDECIMAL, 0, 0 }, { 'x', 16, 0, etRADIX, 16, 1 }, { 'X', 16, 0, etRADIX, 0, 4 }, #ifndef SQLITE_OMIT_FLOATING_POINT { 'f', 0, 1, etFLOAT, 0, 0 }, { 'e', 0, 1, etEXP, 30, 0 }, { 'E', 0, 1, etEXP, 14, 0 }, { 'G', 0, 1, etGENERIC, 14, 0 }, #endif { 'i', 10, 1, etDECIMAL, 0, 0 }, { 'n', 0, 0, etSIZE, 0, 0 }, { '%', 0, 0, etPERCENT, 0, 0 }, { 'p', 16, 0, etPOINTER, 0, 1 }, /* All the rest are undocumented and are for internal use only */ { 'T', 0, 0, etTOKEN, 0, 0 }, { 'S', 0, 0, etSRCITEM, 0, 0 }, { 'r', 10, 1, etORDINAL, 0, 0 }, }; /* Notes: ** ** %S Takes a pointer to SrcItem. Shows name or database.name ** %!S Like %S but prefer the zName over the zAlias */ /* Floating point constants used for rounding */ static const double arRound[] = { 5.0e-01, 5.0e-02, 5.0e-03, 5.0e-04, 5.0e-05, 5.0e-06, 5.0e-07, 5.0e-08, 5.0e-09, 5.0e-10, }; /* ** If SQLITE_OMIT_FLOATING_POINT is defined, then none of the floating point ** conversions will work. */ #ifndef SQLITE_OMIT_FLOATING_POINT /* ** "*val" is a double such that 0.1 <= *val < 10.0 ** Return the ascii code for the leading digit of *val, then ** multiply "*val" by 10.0 to renormalize. ** ** Example: ** input: *val = 3.14159 ** output: *val = 1.4159 function return = '3' ** ** The counter *cnt is incremented each time. After counter exceeds ** 16 (the number of significant digits in a 64-bit float) '0' is ** always returned. */ static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){ int digit; LONGDOUBLE_TYPE d; if( (*cnt)<=0 ) return '0'; (*cnt)--; digit = (int)*val; d = digit; digit += '0'; *val = (*val - d)*10.0; return (char)digit; } #endif /* SQLITE_OMIT_FLOATING_POINT */ /* ** Set the StrAccum object to an error mode. */ SQLITE_PRIVATE void sqlite3StrAccumSetError(StrAccum *p, u8 eError){ assert( eError==SQLITE_NOMEM || eError==SQLITE_TOOBIG ); p->accError = eError; if( p->mxAlloc ) sqlite3_str_reset(p); if( eError==SQLITE_TOOBIG ) sqlite3ErrorToParser(p->db, eError); } /* ** Extra argument values from a PrintfArguments object */ static sqlite3_int64 getIntArg(PrintfArguments *p){ if( p->nArg<=p->nUsed ) return 0; return sqlite3_value_int64(p->apArg[p->nUsed++]); } static double getDoubleArg(PrintfArguments *p){ if( p->nArg<=p->nUsed ) return 0.0; return sqlite3_value_double(p->apArg[p->nUsed++]); } static char *getTextArg(PrintfArguments *p){ if( p->nArg<=p->nUsed ) return 0; return (char*)sqlite3_value_text(p->apArg[p->nUsed++]); } /* ** Allocate memory for a temporary buffer needed for printf rendering. ** ** If the requested size of the temp buffer is larger than the size ** of the output buffer in pAccum, then cause an SQLITE_TOOBIG error. ** Do the size check before the memory allocation to prevent rogue ** SQL from requesting large allocations using the precision or width ** field of the printf() function. */ static char *printfTempBuf(sqlite3_str *pAccum, sqlite3_int64 n){ char *z; if( pAccum->accError ) return 0; if( n>pAccum->nAlloc && n>pAccum->mxAlloc ){ sqlite3StrAccumSetError(pAccum, SQLITE_TOOBIG); return 0; } z = sqlite3DbMallocRaw(pAccum->db, n); if( z==0 ){ sqlite3StrAccumSetError(pAccum, SQLITE_NOMEM); } return z; } /* ** On machines with a small stack size, you can redefine the ** SQLITE_PRINT_BUF_SIZE to be something smaller, if desired. */ #ifndef SQLITE_PRINT_BUF_SIZE # define SQLITE_PRINT_BUF_SIZE 70 #endif #define etBUFSIZE SQLITE_PRINT_BUF_SIZE /* Size of the output buffer */ /* ** Hard limit on the precision of floating-point conversions. */ #ifndef SQLITE_PRINTF_PRECISION_LIMIT # define SQLITE_FP_PRECISION_LIMIT 100000000 #endif /* ** Render a string given by "fmt" into the StrAccum object. */ SQLITE_API void sqlite3_str_vappendf( sqlite3_str *pAccum, /* Accumulate results here */ const char *fmt, /* Format string */ va_list ap /* arguments */ ){ int c; /* Next character in the format string */ char *bufpt; /* Pointer to the conversion buffer */ int precision; /* Precision of the current field */ int length; /* Length of the field */ int idx; /* A general purpose loop counter */ int width; /* Width of the current field */ etByte flag_leftjustify; /* True if "-" flag is present */ etByte flag_prefix; /* '+' or ' ' or 0 for prefix */ etByte flag_alternateform; /* True if "#" flag is present */ etByte flag_altform2; /* True if "!" flag is present */ etByte flag_zeropad; /* True if field width constant starts with zero */ etByte flag_long; /* 1 for the "l" flag, 2 for "ll", 0 by default */ etByte done; /* Loop termination flag */ etByte cThousand; /* Thousands separator for %d and %u */ etByte xtype = etINVALID; /* Conversion paradigm */ u8 bArgList; /* True for SQLITE_PRINTF_SQLFUNC */ char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */ sqlite_uint64 longvalue; /* Value for integer types */ LONGDOUBLE_TYPE realvalue; /* Value for real types */ const et_info *infop; /* Pointer to the appropriate info structure */ char *zOut; /* Rendering buffer */ int nOut; /* Size of the rendering buffer */ char *zExtra = 0; /* Malloced memory used by some conversion */ #ifndef SQLITE_OMIT_FLOATING_POINT int exp, e2; /* exponent of real numbers */ int nsd; /* Number of significant digits returned */ double rounder; /* Used for rounding floating point values */ etByte flag_dp; /* True if decimal point should be shown */ etByte flag_rtz; /* True if trailing zeros should be removed */ #endif PrintfArguments *pArgList = 0; /* Arguments for SQLITE_PRINTF_SQLFUNC */ char buf[etBUFSIZE]; /* Conversion buffer */ /* pAccum never starts out with an empty buffer that was obtained from ** malloc(). This precondition is required by the mprintf("%z...") ** optimization. */ assert( pAccum->nChar>0 || (pAccum->printfFlags&SQLITE_PRINTF_MALLOCED)==0 ); bufpt = 0; if( (pAccum->printfFlags & SQLITE_PRINTF_SQLFUNC)!=0 ){ pArgList = va_arg(ap, PrintfArguments*); bArgList = 1; }else{ bArgList = 0; } for(; (c=(*fmt))!=0; ++fmt){ if( c!='%' ){ bufpt = (char *)fmt; #if HAVE_STRCHRNUL fmt = strchrnul(fmt, '%'); #else do{ fmt++; }while( *fmt && *fmt != '%' ); #endif sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); if( *fmt==0 ) break; } if( (c=(*++fmt))==0 ){ sqlite3_str_append(pAccum, "%", 1); break; } /* Find out what flags are present */ flag_leftjustify = flag_prefix = cThousand = flag_alternateform = flag_altform2 = flag_zeropad = 0; done = 0; width = 0; flag_long = 0; precision = -1; do{ switch( c ){ case '-': flag_leftjustify = 1; break; case '+': flag_prefix = '+'; break; case ' ': flag_prefix = ' '; break; case '#': flag_alternateform = 1; break; case '!': flag_altform2 = 1; break; case '0': flag_zeropad = 1; break; case ',': cThousand = ','; break; default: done = 1; break; case 'l': { flag_long = 1; c = *++fmt; if( c=='l' ){ c = *++fmt; flag_long = 2; } done = 1; break; } case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned wx = c - '0'; while( (c = *++fmt)>='0' && c<='9' ){ wx = wx*10 + c - '0'; } testcase( wx>0x7fffffff ); width = wx & 0x7fffffff; #ifdef SQLITE_PRINTF_PRECISION_LIMIT if( width>SQLITE_PRINTF_PRECISION_LIMIT ){ width = SQLITE_PRINTF_PRECISION_LIMIT; } #endif if( c!='.' && c!='l' ){ done = 1; }else{ fmt--; } break; } case '*': { if( bArgList ){ width = (int)getIntArg(pArgList); }else{ width = va_arg(ap,int); } if( width<0 ){ flag_leftjustify = 1; width = width >= -2147483647 ? -width : 0; } #ifdef SQLITE_PRINTF_PRECISION_LIMIT if( width>SQLITE_PRINTF_PRECISION_LIMIT ){ width = SQLITE_PRINTF_PRECISION_LIMIT; } #endif if( (c = fmt[1])!='.' && c!='l' ){ c = *++fmt; done = 1; } break; } case '.': { c = *++fmt; if( c=='*' ){ if( bArgList ){ precision = (int)getIntArg(pArgList); }else{ precision = va_arg(ap,int); } if( precision<0 ){ precision = precision >= -2147483647 ? -precision : -1; } c = *++fmt; }else{ unsigned px = 0; while( c>='0' && c<='9' ){ px = px*10 + c - '0'; c = *++fmt; } testcase( px>0x7fffffff ); precision = px & 0x7fffffff; } #ifdef SQLITE_PRINTF_PRECISION_LIMIT if( precision>SQLITE_PRINTF_PRECISION_LIMIT ){ precision = SQLITE_PRINTF_PRECISION_LIMIT; } #endif if( c=='l' ){ --fmt; }else{ done = 1; } break; } } }while( !done && (c=(*++fmt))!=0 ); /* Fetch the info entry for the field */ infop = &fmtinfo[0]; xtype = etINVALID; for(idx=0; idxtype; break; } } /* ** At this point, variables are initialized as follows: ** ** flag_alternateform TRUE if a '#' is present. ** flag_altform2 TRUE if a '!' is present. ** flag_prefix '+' or ' ' or zero ** flag_leftjustify TRUE if a '-' is present or if the ** field width was negative. ** flag_zeropad TRUE if the width began with 0. ** flag_long 1 for "l", 2 for "ll" ** width The specified field width. This is ** always non-negative. Zero is the default. ** precision The specified precision. The default ** is -1. ** xtype The class of the conversion. ** infop Pointer to the appropriate info struct. */ assert( width>=0 ); assert( precision>=(-1) ); switch( xtype ){ case etPOINTER: flag_long = sizeof(char*)==sizeof(i64) ? 2 : sizeof(char*)==sizeof(long int) ? 1 : 0; /* no break */ deliberate_fall_through case etORDINAL: case etRADIX: cThousand = 0; /* no break */ deliberate_fall_through case etDECIMAL: if( infop->flags & FLAG_SIGNED ){ i64 v; if( bArgList ){ v = getIntArg(pArgList); }else if( flag_long ){ if( flag_long==2 ){ v = va_arg(ap,i64) ; }else{ v = va_arg(ap,long int); } }else{ v = va_arg(ap,int); } if( v<0 ){ testcase( v==SMALLEST_INT64 ); testcase( v==(-1) ); longvalue = ~v; longvalue++; prefix = '-'; }else{ longvalue = v; prefix = flag_prefix; } }else{ if( bArgList ){ longvalue = (u64)getIntArg(pArgList); }else if( flag_long ){ if( flag_long==2 ){ longvalue = va_arg(ap,u64); }else{ longvalue = va_arg(ap,unsigned long int); } }else{ longvalue = va_arg(ap,unsigned int); } prefix = 0; } if( longvalue==0 ) flag_alternateform = 0; if( flag_zeropad && precision=4 || (longvalue/10)%10==1 ){ x = 0; } *(--bufpt) = zOrd[x*2+1]; *(--bufpt) = zOrd[x*2]; } { const char *cset = &aDigits[infop->charset]; u8 base = infop->base; do{ /* Convert to ascii */ *(--bufpt) = cset[longvalue%base]; longvalue = longvalue/base; }while( longvalue>0 ); } length = (int)(&zOut[nOut-1]-bufpt); while( precision>length ){ *(--bufpt) = '0'; /* Zero pad */ length++; } if( cThousand ){ int nn = (length - 1)/3; /* Number of "," to insert */ int ix = (length - 1)%3 + 1; bufpt -= nn; for(idx=0; nn>0; idx++){ bufpt[idx] = bufpt[idx+nn]; ix--; if( ix==0 ){ bufpt[++idx] = cThousand; nn--; ix = 3; } } } if( prefix ) *(--bufpt) = prefix; /* Add sign */ if( flag_alternateform && infop->prefix ){ /* Add "0" or "0x" */ const char *pre; char x; pre = &aPrefix[infop->prefix]; for(; (x=(*pre))!=0; pre++) *(--bufpt) = x; } length = (int)(&zOut[nOut-1]-bufpt); break; case etFLOAT: case etEXP: case etGENERIC: if( bArgList ){ realvalue = getDoubleArg(pArgList); }else{ realvalue = va_arg(ap,double); } #ifdef SQLITE_OMIT_FLOATING_POINT length = 0; #else if( precision<0 ) precision = 6; /* Set default precision */ #ifdef SQLITE_FP_PRECISION_LIMIT if( precision>SQLITE_FP_PRECISION_LIMIT ){ precision = SQLITE_FP_PRECISION_LIMIT; } #endif if( realvalue<0.0 ){ realvalue = -realvalue; prefix = '-'; }else{ prefix = flag_prefix; } if( xtype==etGENERIC && precision>0 ) precision--; testcase( precision>0xfff ); idx = precision & 0xfff; rounder = arRound[idx%10]; while( idx>=10 ){ rounder *= 1.0e-10; idx -= 10; } if( xtype==etFLOAT ){ double rx = (double)realvalue; sqlite3_uint64 u; int ex; memcpy(&u, &rx, sizeof(u)); ex = -1023 + (int)((u>>52)&0x7ff); if( precision+(ex/3) < 15 ) rounder += realvalue*3e-16; realvalue += rounder; } /* Normalize realvalue to within 10.0 > realvalue >= 1.0 */ exp = 0; if( sqlite3IsNaN((double)realvalue) ){ bufpt = "NaN"; length = 3; break; } if( realvalue>0.0 ){ LONGDOUBLE_TYPE scale = 1.0; while( realvalue>=1e100*scale && exp<=350 ){ scale *= 1e100;exp+=100;} while( realvalue>=1e10*scale && exp<=350 ){ scale *= 1e10; exp+=10; } while( realvalue>=10.0*scale && exp<=350 ){ scale *= 10.0; exp++; } realvalue /= scale; while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; } while( realvalue<1.0 ){ realvalue *= 10.0; exp--; } if( exp>350 ){ bufpt = buf; buf[0] = prefix; memcpy(buf+(prefix!=0),"Inf",4); length = 3+(prefix!=0); break; } } bufpt = buf; /* ** If the field type is etGENERIC, then convert to either etEXP ** or etFLOAT, as appropriate. */ if( xtype!=etFLOAT ){ realvalue += rounder; if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; } } if( xtype==etGENERIC ){ flag_rtz = !flag_alternateform; if( exp<-4 || exp>precision ){ xtype = etEXP; }else{ precision = precision - exp; xtype = etFLOAT; } }else{ flag_rtz = flag_altform2; } if( xtype==etEXP ){ e2 = 0; }else{ e2 = exp; } { i64 szBufNeeded; /* Size of a temporary buffer needed */ szBufNeeded = MAX(e2,0)+(i64)precision+(i64)width+15; if( szBufNeeded > etBUFSIZE ){ bufpt = zExtra = printfTempBuf(pAccum, szBufNeeded); if( bufpt==0 ) return; } } zOut = bufpt; nsd = 16 + flag_altform2*10; flag_dp = (precision>0 ?1:0) | flag_alternateform | flag_altform2; /* The sign in front of the number */ if( prefix ){ *(bufpt++) = prefix; } /* Digits prior to the decimal point */ if( e2<0 ){ *(bufpt++) = '0'; }else{ for(; e2>=0; e2--){ *(bufpt++) = et_getdigit(&realvalue,&nsd); } } /* The decimal point */ if( flag_dp ){ *(bufpt++) = '.'; } /* "0" digits after the decimal point but before the first ** significant digit of the number */ for(e2++; e2<0; precision--, e2++){ assert( precision>0 ); *(bufpt++) = '0'; } /* Significant digits after the decimal point */ while( (precision--)>0 ){ *(bufpt++) = et_getdigit(&realvalue,&nsd); } /* Remove trailing zeros and the "." if no digits follow the "." */ if( flag_rtz && flag_dp ){ while( bufpt[-1]=='0' ) *(--bufpt) = 0; assert( bufpt>zOut ); if( bufpt[-1]=='.' ){ if( flag_altform2 ){ *(bufpt++) = '0'; }else{ *(--bufpt) = 0; } } } /* Add the "eNNN" suffix */ if( xtype==etEXP ){ *(bufpt++) = aDigits[infop->charset]; if( exp<0 ){ *(bufpt++) = '-'; exp = -exp; }else{ *(bufpt++) = '+'; } if( exp>=100 ){ *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */ exp %= 100; } *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */ *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */ } *bufpt = 0; /* The converted number is in buf[] and zero terminated. Output it. ** Note that the number is in the usual order, not reversed as with ** integer conversions. */ length = (int)(bufpt-zOut); bufpt = zOut; /* Special case: Add leading zeros if the flag_zeropad flag is ** set and we are not left justified */ if( flag_zeropad && !flag_leftjustify && length < width){ int i; int nPad = width - length; for(i=width; i>=nPad; i--){ bufpt[i] = bufpt[i-nPad]; } i = prefix!=0; while( nPad-- ) bufpt[i++] = '0'; length = width; } #endif /* !defined(SQLITE_OMIT_FLOATING_POINT) */ break; case etSIZE: if( !bArgList ){ *(va_arg(ap,int*)) = pAccum->nChar; } length = width = 0; break; case etPERCENT: buf[0] = '%'; bufpt = buf; length = 1; break; case etCHARX: if( bArgList ){ bufpt = getTextArg(pArgList); length = 1; if( bufpt ){ buf[0] = c = *(bufpt++); if( (c&0xc0)==0xc0 ){ while( length<4 && (bufpt[0]&0xc0)==0x80 ){ buf[length++] = *(bufpt++); } } }else{ buf[0] = 0; } }else{ unsigned int ch = va_arg(ap,unsigned int); if( ch<0x00080 ){ buf[0] = ch & 0xff; length = 1; }else if( ch<0x00800 ){ buf[0] = 0xc0 + (u8)((ch>>6)&0x1f); buf[1] = 0x80 + (u8)(ch & 0x3f); length = 2; }else if( ch<0x10000 ){ buf[0] = 0xe0 + (u8)((ch>>12)&0x0f); buf[1] = 0x80 + (u8)((ch>>6) & 0x3f); buf[2] = 0x80 + (u8)(ch & 0x3f); length = 3; }else{ buf[0] = 0xf0 + (u8)((ch>>18) & 0x07); buf[1] = 0x80 + (u8)((ch>>12) & 0x3f); buf[2] = 0x80 + (u8)((ch>>6) & 0x3f); buf[3] = 0x80 + (u8)(ch & 0x3f); length = 4; } } if( precision>1 ){ width -= precision-1; if( width>1 && !flag_leftjustify ){ sqlite3_str_appendchar(pAccum, width-1, ' '); width = 0; } while( precision-- > 1 ){ sqlite3_str_append(pAccum, buf, length); } } bufpt = buf; flag_altform2 = 1; goto adjust_width_for_utf8; case etSTRING: case etDYNSTRING: if( bArgList ){ bufpt = getTextArg(pArgList); xtype = etSTRING; }else{ bufpt = va_arg(ap,char*); } if( bufpt==0 ){ bufpt = ""; }else if( xtype==etDYNSTRING ){ if( pAccum->nChar==0 && pAccum->mxAlloc && width==0 && precision<0 && pAccum->accError==0 ){ /* Special optimization for sqlite3_mprintf("%z..."): ** Extend an existing memory allocation rather than creating ** a new one. */ assert( (pAccum->printfFlags&SQLITE_PRINTF_MALLOCED)==0 ); pAccum->zText = bufpt; pAccum->nAlloc = sqlite3DbMallocSize(pAccum->db, bufpt); pAccum->nChar = 0x7fffffff & (int)strlen(bufpt); pAccum->printfFlags |= SQLITE_PRINTF_MALLOCED; length = 0; break; } zExtra = bufpt; } if( precision>=0 ){ if( flag_altform2 ){ /* Set length to the number of bytes needed in order to display ** precision characters */ unsigned char *z = (unsigned char*)bufpt; while( precision-- > 0 && z[0] ){ SQLITE_SKIP_UTF8(z); } length = (int)(z - (unsigned char*)bufpt); }else{ for(length=0; length0 ){ /* Adjust width to account for extra bytes in UTF-8 characters */ int ii = length - 1; while( ii>=0 ) if( (bufpt[ii--] & 0xc0)==0x80 ) width++; } break; case etSQLESCAPE: /* %q: Escape ' characters */ case etSQLESCAPE2: /* %Q: Escape ' and enclose in '...' */ case etSQLESCAPE3: { /* %w: Escape " characters */ int i, j, k, n, isnull; int needQuote; char ch; char q = ((xtype==etSQLESCAPE3)?'"':'\''); /* Quote character */ char *escarg; if( bArgList ){ escarg = getTextArg(pArgList); }else{ escarg = va_arg(ap,char*); } isnull = escarg==0; if( isnull ) escarg = (xtype==etSQLESCAPE2 ? "NULL" : "(NULL)"); /* For %q, %Q, and %w, the precision is the number of bytes (or ** characters if the ! flags is present) to use from the input. ** Because of the extra quoting characters inserted, the number ** of output characters may be larger than the precision. */ k = precision; for(i=n=0; k!=0 && (ch=escarg[i])!=0; i++, k--){ if( ch==q ) n++; if( flag_altform2 && (ch&0xc0)==0xc0 ){ while( (escarg[i+1]&0xc0)==0x80 ){ i++; } } } needQuote = !isnull && xtype==etSQLESCAPE2; n += i + 3; if( n>etBUFSIZE ){ bufpt = zExtra = printfTempBuf(pAccum, n); if( bufpt==0 ) return; }else{ bufpt = buf; } j = 0; if( needQuote ) bufpt[j++] = q; k = i; for(i=0; iprintfFlags & SQLITE_PRINTF_INTERNAL)==0 ) return; if( flag_alternateform ){ /* %#T means an Expr pointer that uses Expr.u.zToken */ Expr *pExpr = va_arg(ap,Expr*); if( ALWAYS(pExpr) && ALWAYS(!ExprHasProperty(pExpr,EP_IntValue)) ){ sqlite3_str_appendall(pAccum, (const char*)pExpr->u.zToken); sqlite3RecordErrorOffsetOfExpr(pAccum->db, pExpr); } }else{ /* %T means a Token pointer */ Token *pToken = va_arg(ap, Token*); assert( bArgList==0 ); if( pToken && pToken->n ){ sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); sqlite3RecordErrorByteOffset(pAccum->db, pToken->z); } } length = width = 0; break; } case etSRCITEM: { SrcItem *pItem; if( (pAccum->printfFlags & SQLITE_PRINTF_INTERNAL)==0 ) return; pItem = va_arg(ap, SrcItem*); assert( bArgList==0 ); if( pItem->zAlias && !flag_altform2 ){ sqlite3_str_appendall(pAccum, pItem->zAlias); }else if( pItem->zName ){ if( pItem->zDatabase ){ sqlite3_str_appendall(pAccum, pItem->zDatabase); sqlite3_str_append(pAccum, ".", 1); } sqlite3_str_appendall(pAccum, pItem->zName); }else if( pItem->zAlias ){ sqlite3_str_appendall(pAccum, pItem->zAlias); }else if( ALWAYS(pItem->pSelect) ){ sqlite3_str_appendf(pAccum, "SUBQUERY %u", pItem->pSelect->selId); } length = width = 0; break; } default: { assert( xtype==etINVALID ); return; } }/* End switch over the format type */ /* ** The text of the conversion is pointed to by "bufpt" and is ** "length" characters long. The field width is "width". Do ** the output. Both length and width are in bytes, not characters, ** at this point. If the "!" flag was present on string conversions ** indicating that width and precision should be expressed in characters, ** then the values have been translated prior to reaching this point. */ width -= length; if( width>0 ){ if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); sqlite3_str_append(pAccum, bufpt, length); if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); }else{ sqlite3_str_append(pAccum, bufpt, length); } if( zExtra ){ sqlite3DbFree(pAccum->db, zExtra); zExtra = 0; } }/* End for loop over the format string */ } /* End of function */ /* ** The z string points to the first character of a token that is ** associated with an error. If db does not already have an error ** byte offset recorded, try to compute the error byte offset for ** z and set the error byte offset in db. */ SQLITE_PRIVATE void sqlite3RecordErrorByteOffset(sqlite3 *db, const char *z){ const Parse *pParse; const char *zText; const char *zEnd; assert( z!=0 ); if( NEVER(db==0) ) return; if( db->errByteOffset!=(-2) ) return; pParse = db->pParse; if( NEVER(pParse==0) ) return; zText =pParse->zTail; if( NEVER(zText==0) ) return; zEnd = &zText[strlen(zText)]; if( SQLITE_WITHIN(z,zText,zEnd) ){ db->errByteOffset = (int)(z-zText); } } /* ** If pExpr has a byte offset for the start of a token, record that as ** as the error offset. */ SQLITE_PRIVATE void sqlite3RecordErrorOffsetOfExpr(sqlite3 *db, const Expr *pExpr){ while( pExpr && (ExprHasProperty(pExpr,EP_FromJoin) || pExpr->w.iOfst<=0) ){ pExpr = pExpr->pLeft; } if( pExpr==0 ) return; db->errByteOffset = pExpr->w.iOfst; } /* ** Enlarge the memory allocation on a StrAccum object so that it is ** able to accept at least N more bytes of text. ** ** Return the number of bytes of text that StrAccum is able to accept ** after the attempted enlargement. The value returned might be zero. */ SQLITE_PRIVATE int sqlite3StrAccumEnlarge(StrAccum *p, int N){ char *zNew; assert( p->nChar+(i64)N >= p->nAlloc ); /* Only called if really needed */ if( p->accError ){ testcase(p->accError==SQLITE_TOOBIG); testcase(p->accError==SQLITE_NOMEM); return 0; } if( p->mxAlloc==0 ){ sqlite3StrAccumSetError(p, SQLITE_TOOBIG); return p->nAlloc - p->nChar - 1; }else{ char *zOld = isMalloced(p) ? p->zText : 0; i64 szNew = p->nChar; szNew += (sqlite3_int64)N + 1; if( szNew+p->nChar<=p->mxAlloc ){ /* Force exponential buffer size growth as long as it does not overflow, ** to avoid having to call this routine too often */ szNew += p->nChar; } if( szNew > p->mxAlloc ){ sqlite3_str_reset(p); sqlite3StrAccumSetError(p, SQLITE_TOOBIG); return 0; }else{ p->nAlloc = (int)szNew; } if( p->db ){ zNew = sqlite3DbRealloc(p->db, zOld, p->nAlloc); }else{ zNew = sqlite3Realloc(zOld, p->nAlloc); } if( zNew ){ assert( p->zText!=0 || p->nChar==0 ); if( !isMalloced(p) && p->nChar>0 ) memcpy(zNew, p->zText, p->nChar); p->zText = zNew; p->nAlloc = sqlite3DbMallocSize(p->db, zNew); p->printfFlags |= SQLITE_PRINTF_MALLOCED; }else{ sqlite3_str_reset(p); sqlite3StrAccumSetError(p, SQLITE_NOMEM); return 0; } } return N; } /* ** Append N copies of character c to the given string buffer. */ SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){ testcase( p->nChar + (i64)N > 0x7fffffff ); if( p->nChar+(i64)N >= p->nAlloc && (N = sqlite3StrAccumEnlarge(p, N))<=0 ){ return; } while( (N--)>0 ) p->zText[p->nChar++] = c; } /* ** The StrAccum "p" is not large enough to accept N new bytes of z[]. ** So enlarge if first, then do the append. ** ** This is a helper routine to sqlite3_str_append() that does special-case ** work (enlarging the buffer) using tail recursion, so that the ** sqlite3_str_append() routine can use fast calling semantics. */ static void SQLITE_NOINLINE enlargeAndAppend(StrAccum *p, const char *z, int N){ N = sqlite3StrAccumEnlarge(p, N); if( N>0 ){ memcpy(&p->zText[p->nChar], z, N); p->nChar += N; } } /* ** Append N bytes of text from z to the StrAccum object. Increase the ** size of the memory allocation for StrAccum if necessary. */ SQLITE_API void sqlite3_str_append(sqlite3_str *p, const char *z, int N){ assert( z!=0 || N==0 ); assert( p->zText!=0 || p->nChar==0 || p->accError ); assert( N>=0 ); assert( p->accError==0 || p->nAlloc==0 || p->mxAlloc==0 ); if( p->nChar+N >= p->nAlloc ){ enlargeAndAppend(p,z,N); }else if( N ){ assert( p->zText ); p->nChar += N; memcpy(&p->zText[p->nChar-N], z, N); } } /* ** Append the complete text of zero-terminated string z[] to the p string. */ SQLITE_API void sqlite3_str_appendall(sqlite3_str *p, const char *z){ sqlite3_str_append(p, z, sqlite3Strlen30(z)); } /* ** Finish off a string by making sure it is zero-terminated. ** Return a pointer to the resulting string. Return a NULL ** pointer if any kind of error was encountered. */ static SQLITE_NOINLINE char *strAccumFinishRealloc(StrAccum *p){ char *zText; assert( p->mxAlloc>0 && !isMalloced(p) ); zText = sqlite3DbMallocRaw(p->db, p->nChar+1 ); if( zText ){ memcpy(zText, p->zText, p->nChar+1); p->printfFlags |= SQLITE_PRINTF_MALLOCED; }else{ sqlite3StrAccumSetError(p, SQLITE_NOMEM); } p->zText = zText; return zText; } SQLITE_PRIVATE char *sqlite3StrAccumFinish(StrAccum *p){ if( p->zText ){ p->zText[p->nChar] = 0; if( p->mxAlloc>0 && !isMalloced(p) ){ return strAccumFinishRealloc(p); } } return p->zText; } /* ** Use the content of the StrAccum passed as the second argument ** as the result of an SQL function. */ SQLITE_PRIVATE void sqlite3ResultStrAccum(sqlite3_context *pCtx, StrAccum *p){ if( p->accError ){ sqlite3_result_error_code(pCtx, p->accError); sqlite3_str_reset(p); }else if( isMalloced(p) ){ sqlite3_result_text(pCtx, p->zText, p->nChar, SQLITE_DYNAMIC); }else{ sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); sqlite3_str_reset(p); } } /* ** This singleton is an sqlite3_str object that is returned if ** sqlite3_malloc() fails to provide space for a real one. This ** sqlite3_str object accepts no new text and always returns ** an SQLITE_NOMEM error. */ static sqlite3_str sqlite3OomStr = { 0, 0, 0, 0, 0, SQLITE_NOMEM, 0 }; /* Finalize a string created using sqlite3_str_new(). */ SQLITE_API char *sqlite3_str_finish(sqlite3_str *p){ char *z; if( p!=0 && p!=&sqlite3OomStr ){ z = sqlite3StrAccumFinish(p); sqlite3_free(p); }else{ z = 0; } return z; } /* Return any error code associated with p */ SQLITE_API int sqlite3_str_errcode(sqlite3_str *p){ return p ? p->accError : SQLITE_NOMEM; } /* Return the current length of p in bytes */ SQLITE_API int sqlite3_str_length(sqlite3_str *p){ return p ? p->nChar : 0; } /* Return the current value for p */ SQLITE_API char *sqlite3_str_value(sqlite3_str *p){ if( p==0 || p->nChar==0 ) return 0; p->zText[p->nChar] = 0; return p->zText; } /* ** Reset an StrAccum string. Reclaim all malloced memory. */ SQLITE_API void sqlite3_str_reset(StrAccum *p){ if( isMalloced(p) ){ sqlite3DbFree(p->db, p->zText); p->printfFlags &= ~SQLITE_PRINTF_MALLOCED; } p->nAlloc = 0; p->nChar = 0; p->zText = 0; } /* ** Initialize a string accumulator. ** ** p: The accumulator to be initialized. ** db: Pointer to a database connection. May be NULL. Lookaside ** memory is used if not NULL. db->mallocFailed is set appropriately ** when not NULL. ** zBase: An initial buffer. May be NULL in which case the initial buffer ** is malloced. ** n: Size of zBase in bytes. If total space requirements never exceed ** n then no memory allocations ever occur. ** mx: Maximum number of bytes to accumulate. If mx==0 then no memory ** allocations will ever occur. */ SQLITE_PRIVATE void sqlite3StrAccumInit(StrAccum *p, sqlite3 *db, char *zBase, int n, int mx){ p->zText = zBase; p->db = db; p->nAlloc = n; p->mxAlloc = mx; p->nChar = 0; p->accError = 0; p->printfFlags = 0; } /* Allocate and initialize a new dynamic string object */ SQLITE_API sqlite3_str *sqlite3_str_new(sqlite3 *db){ sqlite3_str *p = sqlite3_malloc64(sizeof(*p)); if( p ){ sqlite3StrAccumInit(p, 0, 0, 0, db ? db->aLimit[SQLITE_LIMIT_LENGTH] : SQLITE_MAX_LENGTH); }else{ p = &sqlite3OomStr; } return p; } /* ** Print into memory obtained from sqliteMalloc(). Use the internal ** %-conversion extensions. */ SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){ char *z; char zBase[SQLITE_PRINT_BUF_SIZE]; StrAccum acc; assert( db!=0 ); sqlite3StrAccumInit(&acc, db, zBase, sizeof(zBase), db->aLimit[SQLITE_LIMIT_LENGTH]); acc.printfFlags = SQLITE_PRINTF_INTERNAL; sqlite3_str_vappendf(&acc, zFormat, ap); z = sqlite3StrAccumFinish(&acc); if( acc.accError==SQLITE_NOMEM ){ sqlite3OomFault(db); } return z; } /* ** Print into memory obtained from sqliteMalloc(). Use the internal ** %-conversion extensions. */ SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){ va_list ap; char *z; va_start(ap, zFormat); z = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); return z; } /* ** Print into memory obtained from sqlite3_malloc(). Omit the internal ** %-conversion extensions. */ SQLITE_API char *sqlite3_vmprintf(const char *zFormat, va_list ap){ char *z; char zBase[SQLITE_PRINT_BUF_SIZE]; StrAccum acc; #ifdef SQLITE_ENABLE_API_ARMOR if( zFormat==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif sqlite3StrAccumInit(&acc, 0, zBase, sizeof(zBase), SQLITE_MAX_LENGTH); sqlite3_str_vappendf(&acc, zFormat, ap); z = sqlite3StrAccumFinish(&acc); return z; } /* ** Print into memory obtained from sqlite3_malloc()(). Omit the internal ** %-conversion extensions. */ SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){ va_list ap; char *z; #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif va_start(ap, zFormat); z = sqlite3_vmprintf(zFormat, ap); va_end(ap); return z; } /* ** sqlite3_snprintf() works like snprintf() except that it ignores the ** current locale settings. This is important for SQLite because we ** are not able to use a "," as the decimal point in place of "." as ** specified by some locales. ** ** Oops: The first two arguments of sqlite3_snprintf() are backwards ** from the snprintf() standard. Unfortunately, it is too late to change ** this without breaking compatibility, so we just have to live with the ** mistake. ** ** sqlite3_vsnprintf() is the varargs version. */ SQLITE_API char *sqlite3_vsnprintf(int n, char *zBuf, const char *zFormat, va_list ap){ StrAccum acc; if( n<=0 ) return zBuf; #ifdef SQLITE_ENABLE_API_ARMOR if( zBuf==0 || zFormat==0 ) { (void)SQLITE_MISUSE_BKPT; if( zBuf ) zBuf[0] = 0; return zBuf; } #endif sqlite3StrAccumInit(&acc, 0, zBuf, n, 0); sqlite3_str_vappendf(&acc, zFormat, ap); zBuf[acc.nChar] = 0; return zBuf; } SQLITE_API char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){ char *z; va_list ap; va_start(ap,zFormat); z = sqlite3_vsnprintf(n, zBuf, zFormat, ap); va_end(ap); return z; } /* ** This is the routine that actually formats the sqlite3_log() message. ** We house it in a separate routine from sqlite3_log() to avoid using ** stack space on small-stack systems when logging is disabled. ** ** sqlite3_log() must render into a static buffer. It cannot dynamically ** allocate memory because it might be called while the memory allocator ** mutex is held. ** ** sqlite3_str_vappendf() might ask for *temporary* memory allocations for ** certain format characters (%q) or for very large precisions or widths. ** Care must be taken that any sqlite3_log() calls that occur while the ** memory mutex is held do not use these mechanisms. */ static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){ StrAccum acc; /* String accumulator */ char zMsg[SQLITE_PRINT_BUF_SIZE*3]; /* Complete log message */ sqlite3StrAccumInit(&acc, 0, zMsg, sizeof(zMsg), 0); sqlite3_str_vappendf(&acc, zFormat, ap); sqlite3GlobalConfig.xLog(sqlite3GlobalConfig.pLogArg, iErrCode, sqlite3StrAccumFinish(&acc)); } /* ** Format and write a message to the log if logging is enabled. */ SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){ va_list ap; /* Vararg list */ if( sqlite3GlobalConfig.xLog ){ va_start(ap, zFormat); renderLogMsg(iErrCode, zFormat, ap); va_end(ap); } } #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) /* ** A version of printf() that understands %lld. Used for debugging. ** The printf() built into some versions of windows does not understand %lld ** and segfaults if you give it a long long int. */ SQLITE_PRIVATE void sqlite3DebugPrintf(const char *zFormat, ...){ va_list ap; StrAccum acc; char zBuf[SQLITE_PRINT_BUF_SIZE*10]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); va_start(ap,zFormat); sqlite3_str_vappendf(&acc, zFormat, ap); va_end(ap); sqlite3StrAccumFinish(&acc); #ifdef SQLITE_OS_TRACE_PROC { extern void SQLITE_OS_TRACE_PROC(const char *zBuf, int nBuf); SQLITE_OS_TRACE_PROC(zBuf, sizeof(zBuf)); } #else fprintf(stdout,"%s", zBuf); fflush(stdout); #endif } #endif /* ** variable-argument wrapper around sqlite3_str_vappendf(). The bFlags argument ** can contain the bit SQLITE_PRINTF_INTERNAL enable internal formats. */ SQLITE_API void sqlite3_str_appendf(StrAccum *p, const char *zFormat, ...){ va_list ap; va_start(ap,zFormat); sqlite3_str_vappendf(p, zFormat, ap); va_end(ap); } /************** End of printf.c **********************************************/ /************** Begin file treeview.c ****************************************/ /* ** 2015-06-08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains C code to implement the TreeView debugging routines. ** These routines print a parse tree to standard output for debugging and ** analysis. ** ** The interfaces in this file is only available when compiling ** with SQLITE_DEBUG. */ /* #include "sqliteInt.h" */ #ifdef SQLITE_DEBUG /* ** Add a new subitem to the tree. The moreToFollow flag indicates that this ** is not the last item in the tree. */ static TreeView *sqlite3TreeViewPush(TreeView *p, u8 moreToFollow){ if( p==0 ){ p = sqlite3_malloc64( sizeof(*p) ); if( p==0 ) return 0; memset(p, 0, sizeof(*p)); }else{ p->iLevel++; } assert( moreToFollow==0 || moreToFollow==1 ); if( p->iLevelbLine) ) p->bLine[p->iLevel] = moreToFollow; return p; } /* ** Finished with one layer of the tree */ static void sqlite3TreeViewPop(TreeView *p){ if( p==0 ) return; p->iLevel--; if( p->iLevel<0 ) sqlite3_free(p); } /* ** Generate a single line of output for the tree, with a prefix that contains ** all the appropriate tree lines */ static void sqlite3TreeViewLine(TreeView *p, const char *zFormat, ...){ va_list ap; int i; StrAccum acc; char zBuf[500]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); if( p ){ for(i=0; iiLevel && ibLine)-1; i++){ sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4); } sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4); } if( zFormat!=0 ){ va_start(ap, zFormat); sqlite3_str_vappendf(&acc, zFormat, ap); va_end(ap); assert( acc.nChar>0 || acc.accError ); sqlite3_str_append(&acc, "\n", 1); } sqlite3StrAccumFinish(&acc); fprintf(stdout,"%s", zBuf); fflush(stdout); } /* ** Shorthand for starting a new tree item that consists of a single label */ static void sqlite3TreeViewItem(TreeView *p, const char *zLabel,u8 moreFollows){ p = sqlite3TreeViewPush(p, moreFollows); sqlite3TreeViewLine(p, "%s", zLabel); } /* ** Generate a human-readable description of a WITH clause. */ SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){ int i; if( pWith==0 ) return; if( pWith->nCte==0 ) return; if( pWith->pOuter ){ sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); }else{ sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); } if( pWith->nCte>0 ){ pView = sqlite3TreeViewPush(pView, 1); for(i=0; inCte; i++){ StrAccum x; char zLine[1000]; const struct Cte *pCte = &pWith->a[i]; sqlite3StrAccumInit(&x, 0, zLine, sizeof(zLine), 0); sqlite3_str_appendf(&x, "%s", pCte->zName); if( pCte->pCols && pCte->pCols->nExpr>0 ){ char cSep = '('; int j; for(j=0; jpCols->nExpr; j++){ sqlite3_str_appendf(&x, "%c%s", cSep, pCte->pCols->a[j].zEName); cSep = ','; } sqlite3_str_appendf(&x, ")"); } if( pCte->pUse ){ sqlite3_str_appendf(&x, " (pUse=0x%p, nUse=%d)", pCte->pUse, pCte->pUse->nUse); } sqlite3StrAccumFinish(&x); sqlite3TreeViewItem(pView, zLine, inCte-1); sqlite3TreeViewSelect(pView, pCte->pSelect, 0); sqlite3TreeViewPop(pView); } sqlite3TreeViewPop(pView); } } /* ** Generate a human-readable description of a SrcList object. */ SQLITE_PRIVATE void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){ int i; for(i=0; inSrc; i++){ const SrcItem *pItem = &pSrc->a[i]; StrAccum x; char zLine[100]; sqlite3StrAccumInit(&x, 0, zLine, sizeof(zLine), 0); x.printfFlags |= SQLITE_PRINTF_INTERNAL; sqlite3_str_appendf(&x, "{%d:*} %!S", pItem->iCursor, pItem); if( pItem->pTab ){ sqlite3_str_appendf(&x, " tab=%Q nCol=%d ptr=%p used=%llx", pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, pItem->colUsed); } if( pItem->fg.jointype & JT_LEFT ){ sqlite3_str_appendf(&x, " LEFT-JOIN"); }else if( pItem->fg.jointype & JT_CROSS ){ sqlite3_str_appendf(&x, " CROSS-JOIN"); } if( pItem->fg.fromDDL ){ sqlite3_str_appendf(&x, " DDL"); } if( pItem->fg.isCte ){ sqlite3_str_appendf(&x, " CteUse=0x%p", pItem->u2.pCteUse); } sqlite3StrAccumFinish(&x); sqlite3TreeViewItem(pView, zLine, inSrc-1); if( pItem->pSelect ){ sqlite3TreeViewSelect(pView, pItem->pSelect, 0); } if( pItem->fg.isTabFunc ){ sqlite3TreeViewExprList(pView, pItem->u1.pFuncArg, 0, "func-args:"); } sqlite3TreeViewPop(pView); } } /* ** Generate a human-readable description of a Select object. */ SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView *pView, const Select *p, u8 moreToFollow){ int n = 0; int cnt = 0; if( p==0 ){ sqlite3TreeViewLine(pView, "nil-SELECT"); return; } pView = sqlite3TreeViewPush(pView, moreToFollow); if( p->pWith ){ sqlite3TreeViewWith(pView, p->pWith, 1); cnt = 1; sqlite3TreeViewPush(pView, 1); } do{ if( p->selFlags & SF_WhereBegin ){ sqlite3TreeViewLine(pView, "sqlite3WhereBegin()"); }else{ sqlite3TreeViewLine(pView, "SELECT%s%s (%u/%p) selFlags=0x%x nSelectRow=%d", ((p->selFlags & SF_Distinct) ? " DISTINCT" : ""), ((p->selFlags & SF_Aggregate) ? " agg_flag" : ""), p->selId, p, p->selFlags, (int)p->nSelectRow ); } if( cnt++ ) sqlite3TreeViewPop(pView); if( p->pPrior ){ n = 1000; }else{ n = 0; if( p->pSrc && p->pSrc->nSrc ) n++; if( p->pWhere ) n++; if( p->pGroupBy ) n++; if( p->pHaving ) n++; if( p->pOrderBy ) n++; if( p->pLimit ) n++; #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ) n++; if( p->pWinDefn ) n++; #endif } if( p->pEList ){ sqlite3TreeViewExprList(pView, p->pEList, n>0, "result-set"); } n--; #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ){ Window *pX; pView = sqlite3TreeViewPush(pView, (n--)>0); sqlite3TreeViewLine(pView, "window-functions"); for(pX=p->pWin; pX; pX=pX->pNextWin){ sqlite3TreeViewWinFunc(pView, pX, pX->pNextWin!=0); } sqlite3TreeViewPop(pView); } #endif if( p->pSrc && p->pSrc->nSrc ){ pView = sqlite3TreeViewPush(pView, (n--)>0); sqlite3TreeViewLine(pView, "FROM"); sqlite3TreeViewSrcList(pView, p->pSrc); sqlite3TreeViewPop(pView); } if( p->pWhere ){ sqlite3TreeViewItem(pView, "WHERE", (n--)>0); sqlite3TreeViewExpr(pView, p->pWhere, 0); sqlite3TreeViewPop(pView); } if( p->pGroupBy ){ sqlite3TreeViewExprList(pView, p->pGroupBy, (n--)>0, "GROUPBY"); } if( p->pHaving ){ sqlite3TreeViewItem(pView, "HAVING", (n--)>0); sqlite3TreeViewExpr(pView, p->pHaving, 0); sqlite3TreeViewPop(pView); } #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWinDefn ){ Window *pX; sqlite3TreeViewItem(pView, "WINDOW", (n--)>0); for(pX=p->pWinDefn; pX; pX=pX->pNextWin){ sqlite3TreeViewWindow(pView, pX, pX->pNextWin!=0); } sqlite3TreeViewPop(pView); } #endif if( p->pOrderBy ){ sqlite3TreeViewExprList(pView, p->pOrderBy, (n--)>0, "ORDERBY"); } if( p->pLimit ){ sqlite3TreeViewItem(pView, "LIMIT", (n--)>0); sqlite3TreeViewExpr(pView, p->pLimit->pLeft, p->pLimit->pRight!=0); if( p->pLimit->pRight ){ sqlite3TreeViewItem(pView, "OFFSET", (n--)>0); sqlite3TreeViewExpr(pView, p->pLimit->pRight, 0); sqlite3TreeViewPop(pView); } sqlite3TreeViewPop(pView); } if( p->pPrior ){ const char *zOp = "UNION"; switch( p->op ){ case TK_ALL: zOp = "UNION ALL"; break; case TK_INTERSECT: zOp = "INTERSECT"; break; case TK_EXCEPT: zOp = "EXCEPT"; break; } sqlite3TreeViewItem(pView, zOp, 1); } p = p->pPrior; }while( p!=0 ); sqlite3TreeViewPop(pView); } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Generate a description of starting or stopping bounds */ SQLITE_PRIVATE void sqlite3TreeViewBound( TreeView *pView, /* View context */ u8 eBound, /* UNBOUNDED, CURRENT, PRECEDING, FOLLOWING */ Expr *pExpr, /* Value for PRECEDING or FOLLOWING */ u8 moreToFollow /* True if more to follow */ ){ switch( eBound ){ case TK_UNBOUNDED: { sqlite3TreeViewItem(pView, "UNBOUNDED", moreToFollow); sqlite3TreeViewPop(pView); break; } case TK_CURRENT: { sqlite3TreeViewItem(pView, "CURRENT", moreToFollow); sqlite3TreeViewPop(pView); break; } case TK_PRECEDING: { sqlite3TreeViewItem(pView, "PRECEDING", moreToFollow); sqlite3TreeViewExpr(pView, pExpr, 0); sqlite3TreeViewPop(pView); break; } case TK_FOLLOWING: { sqlite3TreeViewItem(pView, "FOLLOWING", moreToFollow); sqlite3TreeViewExpr(pView, pExpr, 0); sqlite3TreeViewPop(pView); break; } } } #endif /* SQLITE_OMIT_WINDOWFUNC */ #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Generate a human-readable explanation for a Window object */ SQLITE_PRIVATE void sqlite3TreeViewWindow(TreeView *pView, const Window *pWin, u8 more){ int nElement = 0; if( pWin->pFilter ){ sqlite3TreeViewItem(pView, "FILTER", 1); sqlite3TreeViewExpr(pView, pWin->pFilter, 0); sqlite3TreeViewPop(pView); } pView = sqlite3TreeViewPush(pView, more); if( pWin->zName ){ sqlite3TreeViewLine(pView, "OVER %s (%p)", pWin->zName, pWin); }else{ sqlite3TreeViewLine(pView, "OVER (%p)", pWin); } if( pWin->zBase ) nElement++; if( pWin->pOrderBy ) nElement++; if( pWin->eFrmType ) nElement++; if( pWin->eExclude ) nElement++; if( pWin->zBase ){ sqlite3TreeViewPush(pView, (--nElement)>0); sqlite3TreeViewLine(pView, "window: %s", pWin->zBase); sqlite3TreeViewPop(pView); } if( pWin->pPartition ){ sqlite3TreeViewExprList(pView, pWin->pPartition, nElement>0,"PARTITION-BY"); } if( pWin->pOrderBy ){ sqlite3TreeViewExprList(pView, pWin->pOrderBy, (--nElement)>0, "ORDER-BY"); } if( pWin->eFrmType ){ char zBuf[30]; const char *zFrmType = "ROWS"; if( pWin->eFrmType==TK_RANGE ) zFrmType = "RANGE"; if( pWin->eFrmType==TK_GROUPS ) zFrmType = "GROUPS"; sqlite3_snprintf(sizeof(zBuf),zBuf,"%s%s",zFrmType, pWin->bImplicitFrame ? " (implied)" : ""); sqlite3TreeViewItem(pView, zBuf, (--nElement)>0); sqlite3TreeViewBound(pView, pWin->eStart, pWin->pStart, 1); sqlite3TreeViewBound(pView, pWin->eEnd, pWin->pEnd, 0); sqlite3TreeViewPop(pView); } if( pWin->eExclude ){ char zBuf[30]; const char *zExclude; switch( pWin->eExclude ){ case TK_NO: zExclude = "NO OTHERS"; break; case TK_CURRENT: zExclude = "CURRENT ROW"; break; case TK_GROUP: zExclude = "GROUP"; break; case TK_TIES: zExclude = "TIES"; break; default: sqlite3_snprintf(sizeof(zBuf),zBuf,"invalid(%d)", pWin->eExclude); zExclude = zBuf; break; } sqlite3TreeViewPush(pView, 0); sqlite3TreeViewLine(pView, "EXCLUDE %s", zExclude); sqlite3TreeViewPop(pView); } sqlite3TreeViewPop(pView); } #endif /* SQLITE_OMIT_WINDOWFUNC */ #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Generate a human-readable explanation for a Window Function object */ SQLITE_PRIVATE void sqlite3TreeViewWinFunc(TreeView *pView, const Window *pWin, u8 more){ pView = sqlite3TreeViewPush(pView, more); sqlite3TreeViewLine(pView, "WINFUNC %s(%d)", pWin->pFunc->zName, pWin->pFunc->nArg); sqlite3TreeViewWindow(pView, pWin, 0); sqlite3TreeViewPop(pView); } #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** Generate a human-readable explanation of an expression tree. */ SQLITE_PRIVATE void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){ const char *zBinOp = 0; /* Binary operator */ const char *zUniOp = 0; /* Unary operator */ char zFlgs[200]; pView = sqlite3TreeViewPush(pView, moreToFollow); if( pExpr==0 ){ sqlite3TreeViewLine(pView, "nil"); sqlite3TreeViewPop(pView); return; } if( pExpr->flags || pExpr->affExpr || pExpr->vvaFlags ){ StrAccum x; sqlite3StrAccumInit(&x, 0, zFlgs, sizeof(zFlgs), 0); sqlite3_str_appendf(&x, " fg.af=%x.%c", pExpr->flags, pExpr->affExpr ? pExpr->affExpr : 'n'); if( ExprHasProperty(pExpr, EP_FromJoin) ){ sqlite3_str_appendf(&x, " iRJT=%d", pExpr->w.iRightJoinTable); } if( ExprHasProperty(pExpr, EP_FromDDL) ){ sqlite3_str_appendf(&x, " DDL"); } if( ExprHasVVAProperty(pExpr, EP_Immutable) ){ sqlite3_str_appendf(&x, " IMMUTABLE"); } sqlite3StrAccumFinish(&x); }else{ zFlgs[0] = 0; } switch( pExpr->op ){ case TK_AGG_COLUMN: { sqlite3TreeViewLine(pView, "AGG{%d:%d}%s", pExpr->iTable, pExpr->iColumn, zFlgs); break; } case TK_COLUMN: { if( pExpr->iTable<0 ){ /* This only happens when coding check constraints */ char zOp2[16]; if( pExpr->op2 ){ sqlite3_snprintf(sizeof(zOp2),zOp2," op2=0x%02x",pExpr->op2); }else{ zOp2[0] = 0; } sqlite3TreeViewLine(pView, "COLUMN(%d)%s%s", pExpr->iColumn, zFlgs, zOp2); }else{ assert( ExprUseYTab(pExpr) ); sqlite3TreeViewLine(pView, "{%d:%d} pTab=%p%s", pExpr->iTable, pExpr->iColumn, pExpr->y.pTab, zFlgs); } if( ExprHasProperty(pExpr, EP_FixedCol) ){ sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); } break; } case TK_INTEGER: { if( pExpr->flags & EP_IntValue ){ sqlite3TreeViewLine(pView, "%d", pExpr->u.iValue); }else{ sqlite3TreeViewLine(pView, "%s", pExpr->u.zToken); } break; } #ifndef SQLITE_OMIT_FLOATING_POINT case TK_FLOAT: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView,"%s", pExpr->u.zToken); break; } #endif case TK_STRING: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView,"%Q", pExpr->u.zToken); break; } case TK_NULL: { sqlite3TreeViewLine(pView,"NULL"); break; } case TK_TRUEFALSE: { sqlite3TreeViewLine(pView,"%s%s", sqlite3ExprTruthValue(pExpr) ? "TRUE" : "FALSE", zFlgs); break; } #ifndef SQLITE_OMIT_BLOB_LITERAL case TK_BLOB: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView,"%s", pExpr->u.zToken); break; } #endif case TK_VARIABLE: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView,"VARIABLE(%s,%d)", pExpr->u.zToken, pExpr->iColumn); break; } case TK_REGISTER: { sqlite3TreeViewLine(pView,"REGISTER(%d)", pExpr->iTable); break; } case TK_ID: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView,"ID \"%w\"", pExpr->u.zToken); break; } #ifndef SQLITE_OMIT_CAST case TK_CAST: { /* Expressions of the form: CAST(pLeft AS token) */ assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView,"CAST %Q", pExpr->u.zToken); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } #endif /* SQLITE_OMIT_CAST */ case TK_LT: zBinOp = "LT"; break; case TK_LE: zBinOp = "LE"; break; case TK_GT: zBinOp = "GT"; break; case TK_GE: zBinOp = "GE"; break; case TK_NE: zBinOp = "NE"; break; case TK_EQ: zBinOp = "EQ"; break; case TK_IS: zBinOp = "IS"; break; case TK_ISNOT: zBinOp = "ISNOT"; break; case TK_AND: zBinOp = "AND"; break; case TK_OR: zBinOp = "OR"; break; case TK_PLUS: zBinOp = "ADD"; break; case TK_STAR: zBinOp = "MUL"; break; case TK_MINUS: zBinOp = "SUB"; break; case TK_REM: zBinOp = "REM"; break; case TK_BITAND: zBinOp = "BITAND"; break; case TK_BITOR: zBinOp = "BITOR"; break; case TK_SLASH: zBinOp = "DIV"; break; case TK_LSHIFT: zBinOp = "LSHIFT"; break; case TK_RSHIFT: zBinOp = "RSHIFT"; break; case TK_CONCAT: zBinOp = "CONCAT"; break; case TK_DOT: zBinOp = "DOT"; break; case TK_LIMIT: zBinOp = "LIMIT"; break; case TK_UMINUS: zUniOp = "UMINUS"; break; case TK_UPLUS: zUniOp = "UPLUS"; break; case TK_BITNOT: zUniOp = "BITNOT"; break; case TK_NOT: zUniOp = "NOT"; break; case TK_ISNULL: zUniOp = "ISNULL"; break; case TK_NOTNULL: zUniOp = "NOTNULL"; break; case TK_TRUTH: { int x; const char *azOp[] = { "IS-FALSE", "IS-TRUE", "IS-NOT-FALSE", "IS-NOT-TRUE" }; assert( pExpr->op2==TK_IS || pExpr->op2==TK_ISNOT ); assert( pExpr->pRight ); assert( sqlite3ExprSkipCollate(pExpr->pRight)->op==TK_TRUEFALSE ); x = (pExpr->op2==TK_ISNOT)*2 + sqlite3ExprTruthValue(pExpr->pRight); zUniOp = azOp[x]; break; } case TK_SPAN: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView, "SPAN %Q", pExpr->u.zToken); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } case TK_COLLATE: { /* COLLATE operators without the EP_Collate flag are intended to ** emulate collation associated with a table column. These show ** up in the treeview output as "SOFT-COLLATE". Explicit COLLATE ** operators that appear in the original SQL always have the ** EP_Collate bit set and appear in treeview output as just "COLLATE" */ assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView, "%sCOLLATE %Q%s", !ExprHasProperty(pExpr, EP_Collate) ? "SOFT-" : "", pExpr->u.zToken, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } case TK_AGG_FUNCTION: case TK_FUNCTION: { ExprList *pFarg; /* List of function arguments */ Window *pWin; if( ExprHasProperty(pExpr, EP_TokenOnly) ){ pFarg = 0; pWin = 0; }else{ assert( ExprUseXList(pExpr) ); pFarg = pExpr->x.pList; #ifndef SQLITE_OMIT_WINDOWFUNC pWin = ExprHasProperty(pExpr, EP_WinFunc) ? pExpr->y.pWin : 0; #else pWin = 0; #endif } assert( !ExprHasProperty(pExpr, EP_IntValue) ); if( pExpr->op==TK_AGG_FUNCTION ){ sqlite3TreeViewLine(pView, "AGG_FUNCTION%d %Q%s agg=%d[%d]/%p", pExpr->op2, pExpr->u.zToken, zFlgs, pExpr->pAggInfo ? pExpr->pAggInfo->selId : 0, pExpr->iAgg, pExpr->pAggInfo); }else if( pExpr->op2!=0 ){ const char *zOp2; char zBuf[8]; sqlite3_snprintf(sizeof(zBuf),zBuf,"0x%02x",pExpr->op2); zOp2 = zBuf; if( pExpr->op2==NC_IsCheck ) zOp2 = "NC_IsCheck"; if( pExpr->op2==NC_IdxExpr ) zOp2 = "NC_IdxExpr"; if( pExpr->op2==NC_PartIdx ) zOp2 = "NC_PartIdx"; if( pExpr->op2==NC_GenCol ) zOp2 = "NC_GenCol"; sqlite3TreeViewLine(pView, "FUNCTION %Q%s op2=%s", pExpr->u.zToken, zFlgs, zOp2); }else{ sqlite3TreeViewLine(pView, "FUNCTION %Q%s", pExpr->u.zToken, zFlgs); } if( pFarg ){ sqlite3TreeViewExprList(pView, pFarg, pWin!=0, 0); } #ifndef SQLITE_OMIT_WINDOWFUNC if( pWin ){ sqlite3TreeViewWindow(pView, pWin, 0); } #endif break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_EXISTS: { assert( ExprUseXSelect(pExpr) ); sqlite3TreeViewLine(pView, "EXISTS-expr flags=0x%x", pExpr->flags); sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); break; } case TK_SELECT: { assert( ExprUseXSelect(pExpr) ); sqlite3TreeViewLine(pView, "subquery-expr flags=0x%x", pExpr->flags); sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); break; } case TK_IN: { sqlite3TreeViewLine(pView, "IN flags=0x%x", pExpr->flags); sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); if( ExprUseXSelect(pExpr) ){ sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); }else{ sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); } break; } #endif /* SQLITE_OMIT_SUBQUERY */ /* ** x BETWEEN y AND z ** ** This is equivalent to ** ** x>=y AND x<=z ** ** X is stored in pExpr->pLeft. ** Y is stored in pExpr->pList->a[0].pExpr. ** Z is stored in pExpr->pList->a[1].pExpr. */ case TK_BETWEEN: { const Expr *pX, *pY, *pZ; pX = pExpr->pLeft; assert( ExprUseXList(pExpr) ); assert( pExpr->x.pList->nExpr==2 ); pY = pExpr->x.pList->a[0].pExpr; pZ = pExpr->x.pList->a[1].pExpr; sqlite3TreeViewLine(pView, "BETWEEN"); sqlite3TreeViewExpr(pView, pX, 1); sqlite3TreeViewExpr(pView, pY, 1); sqlite3TreeViewExpr(pView, pZ, 0); break; } case TK_TRIGGER: { /* If the opcode is TK_TRIGGER, then the expression is a reference ** to a column in the new.* or old.* pseudo-tables available to ** trigger programs. In this case Expr.iTable is set to 1 for the ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn ** is set to the column of the pseudo-table to read, or to -1 to ** read the rowid field. */ sqlite3TreeViewLine(pView, "%s(%d)", pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); break; } case TK_CASE: { sqlite3TreeViewLine(pView, "CASE"); sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); assert( ExprUseXList(pExpr) ); sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); break; } #ifndef SQLITE_OMIT_TRIGGER case TK_RAISE: { const char *zType = "unk"; switch( pExpr->affExpr ){ case OE_Rollback: zType = "rollback"; break; case OE_Abort: zType = "abort"; break; case OE_Fail: zType = "fail"; break; case OE_Ignore: zType = "ignore"; break; } assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3TreeViewLine(pView, "RAISE %s(%Q)", zType, pExpr->u.zToken); break; } #endif case TK_MATCH: { sqlite3TreeViewLine(pView, "MATCH {%d:%d}%s", pExpr->iTable, pExpr->iColumn, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pRight, 0); break; } case TK_VECTOR: { char *z = sqlite3_mprintf("VECTOR%s",zFlgs); assert( ExprUseXList(pExpr) ); sqlite3TreeViewBareExprList(pView, pExpr->x.pList, z); sqlite3_free(z); break; } case TK_SELECT_COLUMN: { sqlite3TreeViewLine(pView, "SELECT-COLUMN %d of [0..%d]%s", pExpr->iColumn, pExpr->iTable-1, pExpr->pRight==pExpr->pLeft ? " (SELECT-owner)" : ""); assert( ExprUseXSelect(pExpr->pLeft) ); sqlite3TreeViewSelect(pView, pExpr->pLeft->x.pSelect, 0); break; } case TK_IF_NULL_ROW: { sqlite3TreeViewLine(pView, "IF-NULL-ROW %d", pExpr->iTable); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } case TK_ERROR: { Expr tmp; sqlite3TreeViewLine(pView, "ERROR"); tmp = *pExpr; tmp.op = pExpr->op2; sqlite3TreeViewExpr(pView, &tmp, 0); break; } case TK_ROW: { if( pExpr->iColumn<=0 ){ sqlite3TreeViewLine(pView, "First FROM table rowid"); }else{ sqlite3TreeViewLine(pView, "First FROM table column %d", pExpr->iColumn-1); } break; } default: { sqlite3TreeViewLine(pView, "op=%d", pExpr->op); break; } } if( zBinOp ){ sqlite3TreeViewLine(pView, "%s%s", zBinOp, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); sqlite3TreeViewExpr(pView, pExpr->pRight, 0); }else if( zUniOp ){ sqlite3TreeViewLine(pView, "%s%s", zUniOp, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); } sqlite3TreeViewPop(pView); } /* ** Generate a human-readable explanation of an expression list. */ SQLITE_PRIVATE void sqlite3TreeViewBareExprList( TreeView *pView, const ExprList *pList, const char *zLabel ){ if( zLabel==0 || zLabel[0]==0 ) zLabel = "LIST"; if( pList==0 ){ sqlite3TreeViewLine(pView, "%s (empty)", zLabel); }else{ int i; sqlite3TreeViewLine(pView, "%s", zLabel); for(i=0; inExpr; i++){ int j = pList->a[i].u.x.iOrderByCol; char *zName = pList->a[i].zEName; int moreToFollow = inExpr - 1; if( pList->a[i].eEName!=ENAME_NAME ) zName = 0; if( j || zName ){ sqlite3TreeViewPush(pView, moreToFollow); moreToFollow = 0; sqlite3TreeViewLine(pView, 0); if( zName ){ fprintf(stdout, "AS %s ", zName); } if( j ){ fprintf(stdout, "iOrderByCol=%d", j); } fprintf(stdout, "\n"); fflush(stdout); } sqlite3TreeViewExpr(pView, pList->a[i].pExpr, moreToFollow); if( j || zName ){ sqlite3TreeViewPop(pView); } } } } SQLITE_PRIVATE void sqlite3TreeViewExprList( TreeView *pView, const ExprList *pList, u8 moreToFollow, const char *zLabel ){ pView = sqlite3TreeViewPush(pView, moreToFollow); sqlite3TreeViewBareExprList(pView, pList, zLabel); sqlite3TreeViewPop(pView); } #endif /* SQLITE_DEBUG */ /************** End of treeview.c ********************************************/ /************** Begin file random.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code to implement a pseudo-random number ** generator (PRNG) for SQLite. ** ** Random numbers are used by some of the database backends in order ** to generate random integer keys for tables or random filenames. */ /* #include "sqliteInt.h" */ /* All threads share a single random number generator. ** This structure is the current state of the generator. */ static SQLITE_WSD struct sqlite3PrngType { unsigned char isInit; /* True if initialized */ unsigned char i, j; /* State variables */ unsigned char s[256]; /* State variables */ } sqlite3Prng; /* ** Return N random bytes. */ SQLITE_API void sqlite3_randomness(int N, void *pBuf){ unsigned char t; unsigned char *zBuf = pBuf; /* The "wsdPrng" macro will resolve to the pseudo-random number generator ** state vector. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdPrng can refer directly ** to the "sqlite3Prng" state vector declared above. */ #ifdef SQLITE_OMIT_WSD struct sqlite3PrngType *p = &GLOBAL(struct sqlite3PrngType, sqlite3Prng); # define wsdPrng p[0] #else # define wsdPrng sqlite3Prng #endif #if SQLITE_THREADSAFE sqlite3_mutex *mutex; #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return; #endif #if SQLITE_THREADSAFE mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PRNG); #endif sqlite3_mutex_enter(mutex); if( N<=0 || pBuf==0 ){ wsdPrng.isInit = 0; sqlite3_mutex_leave(mutex); return; } /* Initialize the state of the random number generator once, ** the first time this routine is called. The seed value does ** not need to contain a lot of randomness since we are not ** trying to do secure encryption or anything like that... ** ** Nothing in this file or anywhere else in SQLite does any kind of ** encryption. The RC4 algorithm is being used as a PRNG (pseudo-random ** number generator) not as an encryption device. */ if( !wsdPrng.isInit ){ sqlite3_vfs *pVfs = sqlite3_vfs_find(0); int i; char k[256]; wsdPrng.j = 0; wsdPrng.i = 0; if( NEVER(pVfs==0) ){ memset(k, 0, sizeof(k)); }else{ sqlite3OsRandomness(pVfs, 256, k); } for(i=0; i<256; i++){ wsdPrng.s[i] = (u8)i; } for(i=0; i<256; i++){ wsdPrng.j += wsdPrng.s[i] + k[i]; t = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = wsdPrng.s[i]; wsdPrng.s[i] = t; } wsdPrng.isInit = 1; } assert( N>0 ); do{ wsdPrng.i++; t = wsdPrng.s[wsdPrng.i]; wsdPrng.j += t; wsdPrng.s[wsdPrng.i] = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = t; t += wsdPrng.s[wsdPrng.i]; *(zBuf++) = wsdPrng.s[t]; }while( --N ); sqlite3_mutex_leave(mutex); } #ifndef SQLITE_UNTESTABLE /* ** For testing purposes, we sometimes want to preserve the state of ** PRNG and restore the PRNG to its saved state at a later time, or ** to reset the PRNG to its initial state. These routines accomplish ** those tasks. ** ** The sqlite3_test_control() interface calls these routines to ** control the PRNG. */ static SQLITE_WSD struct sqlite3PrngType sqlite3SavedPrng; SQLITE_PRIVATE void sqlite3PrngSaveState(void){ memcpy( &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), &GLOBAL(struct sqlite3PrngType, sqlite3Prng), sizeof(sqlite3Prng) ); } SQLITE_PRIVATE void sqlite3PrngRestoreState(void){ memcpy( &GLOBAL(struct sqlite3PrngType, sqlite3Prng), &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), sizeof(sqlite3Prng) ); } #endif /* SQLITE_UNTESTABLE */ /************** End of random.c **********************************************/ /************** Begin file threads.c *****************************************/ /* ** 2012 July 21 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file presents a simple cross-platform threading interface for ** use internally by SQLite. ** ** A "thread" can be created using sqlite3ThreadCreate(). This thread ** runs independently of its creator until it is joined using ** sqlite3ThreadJoin(), at which point it terminates. ** ** Threads do not have to be real. It could be that the work of the ** "thread" is done by the main thread at either the sqlite3ThreadCreate() ** or sqlite3ThreadJoin() call. This is, in fact, what happens in ** single threaded systems. Nothing in SQLite requires multiple threads. ** This interface exists so that applications that want to take advantage ** of multiple cores can do so, while also allowing applications to stay ** single-threaded if desired. */ /* #include "sqliteInt.h" */ #if SQLITE_OS_WIN /* # include "os_win.h" */ #endif #if SQLITE_MAX_WORKER_THREADS>0 /********************************* Unix Pthreads ****************************/ #if SQLITE_OS_UNIX && defined(SQLITE_MUTEX_PTHREADS) && SQLITE_THREADSAFE>0 #define SQLITE_THREADS_IMPLEMENTED 1 /* Prevent the single-thread code below */ /* #include */ /* A running thread */ struct SQLiteThread { pthread_t tid; /* Thread ID */ int done; /* Set to true when thread finishes */ void *pOut; /* Result returned by the thread */ void *(*xTask)(void*); /* The thread routine */ void *pIn; /* Argument to the thread */ }; /* Create a new thread */ SQLITE_PRIVATE int sqlite3ThreadCreate( SQLiteThread **ppThread, /* OUT: Write the thread object here */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ SQLiteThread *p; int rc; assert( ppThread!=0 ); assert( xTask!=0 ); /* This routine is never used in single-threaded mode */ assert( sqlite3GlobalConfig.bCoreMutex!=0 ); *ppThread = 0; p = sqlite3Malloc(sizeof(*p)); if( p==0 ) return SQLITE_NOMEM_BKPT; memset(p, 0, sizeof(*p)); p->xTask = xTask; p->pIn = pIn; /* If the SQLITE_TESTCTRL_FAULT_INSTALL callback is registered to a ** function that returns SQLITE_ERROR when passed the argument 200, that ** forces worker threads to run sequentially and deterministically ** for testing purposes. */ if( sqlite3FaultSim(200) ){ rc = 1; }else{ rc = pthread_create(&p->tid, 0, xTask, pIn); } if( rc ){ p->done = 1; p->pOut = xTask(pIn); } *ppThread = p; return SQLITE_OK; } /* Get the results of the thread */ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ int rc; assert( ppOut!=0 ); if( NEVER(p==0) ) return SQLITE_NOMEM_BKPT; if( p->done ){ *ppOut = p->pOut; rc = SQLITE_OK; }else{ rc = pthread_join(p->tid, ppOut) ? SQLITE_ERROR : SQLITE_OK; } sqlite3_free(p); return rc; } #endif /* SQLITE_OS_UNIX && defined(SQLITE_MUTEX_PTHREADS) */ /******************************** End Unix Pthreads *************************/ /********************************* Win32 Threads ****************************/ #if SQLITE_OS_WIN_THREADS #define SQLITE_THREADS_IMPLEMENTED 1 /* Prevent the single-thread code below */ #include /* A running thread */ struct SQLiteThread { void *tid; /* The thread handle */ unsigned id; /* The thread identifier */ void *(*xTask)(void*); /* The routine to run as a thread */ void *pIn; /* Argument to xTask */ void *pResult; /* Result of xTask */ }; /* Thread procedure Win32 compatibility shim */ static unsigned __stdcall sqlite3ThreadProc( void *pArg /* IN: Pointer to the SQLiteThread structure */ ){ SQLiteThread *p = (SQLiteThread *)pArg; assert( p!=0 ); #if 0 /* ** This assert appears to trigger spuriously on certain ** versions of Windows, possibly due to _beginthreadex() ** and/or CreateThread() not fully setting their thread ** ID parameter before starting the thread. */ assert( p->id==GetCurrentThreadId() ); #endif assert( p->xTask!=0 ); p->pResult = p->xTask(p->pIn); _endthreadex(0); return 0; /* NOT REACHED */ } /* Create a new thread */ SQLITE_PRIVATE int sqlite3ThreadCreate( SQLiteThread **ppThread, /* OUT: Write the thread object here */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ SQLiteThread *p; assert( ppThread!=0 ); assert( xTask!=0 ); *ppThread = 0; p = sqlite3Malloc(sizeof(*p)); if( p==0 ) return SQLITE_NOMEM_BKPT; /* If the SQLITE_TESTCTRL_FAULT_INSTALL callback is registered to a ** function that returns SQLITE_ERROR when passed the argument 200, that ** forces worker threads to run sequentially and deterministically ** (via the sqlite3FaultSim() term of the conditional) for testing ** purposes. */ if( sqlite3GlobalConfig.bCoreMutex==0 || sqlite3FaultSim(200) ){ memset(p, 0, sizeof(*p)); }else{ p->xTask = xTask; p->pIn = pIn; p->tid = (void*)_beginthreadex(0, 0, sqlite3ThreadProc, p, 0, &p->id); if( p->tid==0 ){ memset(p, 0, sizeof(*p)); } } if( p->xTask==0 ){ p->id = GetCurrentThreadId(); p->pResult = xTask(pIn); } *ppThread = p; return SQLITE_OK; } SQLITE_PRIVATE DWORD sqlite3Win32Wait(HANDLE hObject); /* os_win.c */ /* Get the results of the thread */ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ DWORD rc; BOOL bRc; assert( ppOut!=0 ); if( NEVER(p==0) ) return SQLITE_NOMEM_BKPT; if( p->xTask==0 ){ /* assert( p->id==GetCurrentThreadId() ); */ rc = WAIT_OBJECT_0; assert( p->tid==0 ); }else{ assert( p->id!=0 && p->id!=GetCurrentThreadId() ); rc = sqlite3Win32Wait((HANDLE)p->tid); assert( rc!=WAIT_IO_COMPLETION ); bRc = CloseHandle((HANDLE)p->tid); assert( bRc ); } if( rc==WAIT_OBJECT_0 ) *ppOut = p->pResult; sqlite3_free(p); return (rc==WAIT_OBJECT_0) ? SQLITE_OK : SQLITE_ERROR; } #endif /* SQLITE_OS_WIN_THREADS */ /******************************** End Win32 Threads *************************/ /********************************* Single-Threaded **************************/ #ifndef SQLITE_THREADS_IMPLEMENTED /* ** This implementation does not actually create a new thread. It does the ** work of the thread in the main thread, when either the thread is created ** or when it is joined */ /* A running thread */ struct SQLiteThread { void *(*xTask)(void*); /* The routine to run as a thread */ void *pIn; /* Argument to xTask */ void *pResult; /* Result of xTask */ }; /* Create a new thread */ SQLITE_PRIVATE int sqlite3ThreadCreate( SQLiteThread **ppThread, /* OUT: Write the thread object here */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ SQLiteThread *p; assert( ppThread!=0 ); assert( xTask!=0 ); *ppThread = 0; p = sqlite3Malloc(sizeof(*p)); if( p==0 ) return SQLITE_NOMEM_BKPT; if( (SQLITE_PTR_TO_INT(p)/17)&1 ){ p->xTask = xTask; p->pIn = pIn; }else{ p->xTask = 0; p->pResult = xTask(pIn); } *ppThread = p; return SQLITE_OK; } /* Get the results of the thread */ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ assert( ppOut!=0 ); if( NEVER(p==0) ) return SQLITE_NOMEM_BKPT; if( p->xTask ){ *ppOut = p->xTask(p->pIn); }else{ *ppOut = p->pResult; } sqlite3_free(p); #if defined(SQLITE_TEST) { void *pTstAlloc = sqlite3Malloc(10); if (!pTstAlloc) return SQLITE_NOMEM_BKPT; sqlite3_free(pTstAlloc); } #endif return SQLITE_OK; } #endif /* !defined(SQLITE_THREADS_IMPLEMENTED) */ /****************************** End Single-Threaded *************************/ #endif /* SQLITE_MAX_WORKER_THREADS>0 */ /************** End of threads.c *********************************************/ /************** Begin file utf.c *********************************************/ /* ** 2004 April 13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used to translate between UTF-8, ** UTF-16, UTF-16BE, and UTF-16LE. ** ** Notes on UTF-8: ** ** Byte-0 Byte-1 Byte-2 Byte-3 Value ** 0xxxxxxx 00000000 00000000 0xxxxxxx ** 110yyyyy 10xxxxxx 00000000 00000yyy yyxxxxxx ** 1110zzzz 10yyyyyy 10xxxxxx 00000000 zzzzyyyy yyxxxxxx ** 11110uuu 10uuzzzz 10yyyyyy 10xxxxxx 000uuuuu zzzzyyyy yyxxxxxx ** ** ** Notes on UTF-16: (with wwww+1==uuuuu) ** ** Word-0 Word-1 Value ** 110110ww wwzzzzyy 110111yy yyxxxxxx 000uuuuu zzzzyyyy yyxxxxxx ** zzzzyyyy yyxxxxxx 00000000 zzzzyyyy yyxxxxxx ** ** ** BOM or Byte Order Mark: ** 0xff 0xfe little-endian utf-16 follows ** 0xfe 0xff big-endian utf-16 follows ** */ /* #include "sqliteInt.h" */ /* #include */ /* #include "vdbeInt.h" */ #if !defined(SQLITE_AMALGAMATION) && SQLITE_BYTEORDER==0 /* ** The following constant value is used by the SQLITE_BIGENDIAN and ** SQLITE_LITTLEENDIAN macros. */ SQLITE_PRIVATE const int sqlite3one = 1; #endif /* SQLITE_AMALGAMATION && SQLITE_BYTEORDER==0 */ /* ** This lookup table is used to help decode the first byte of ** a multi-byte UTF8 character. */ static const unsigned char sqlite3Utf8Trans1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, }; #define WRITE_UTF8(zOut, c) { \ if( c<0x00080 ){ \ *zOut++ = (u8)(c&0xFF); \ } \ else if( c<0x00800 ){ \ *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ else if( c<0x10000 ){ \ *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ }else{ \ *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ } #define WRITE_UTF16LE(zOut, c) { \ if( c<=0xFFFF ){ \ *zOut++ = (u8)(c&0x00FF); \ *zOut++ = (u8)((c>>8)&0x00FF); \ }else{ \ *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ *zOut++ = (u8)(c&0x00FF); \ *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ } \ } #define WRITE_UTF16BE(zOut, c) { \ if( c<=0xFFFF ){ \ *zOut++ = (u8)((c>>8)&0x00FF); \ *zOut++ = (u8)(c&0x00FF); \ }else{ \ *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ *zOut++ = (u8)(c&0x00FF); \ } \ } /* ** Translate a single UTF-8 character. Return the unicode value. ** ** During translation, assume that the byte that zTerm points ** is a 0x00. ** ** Write a pointer to the next unread byte back into *pzNext. ** ** Notes On Invalid UTF-8: ** ** * This routine never allows a 7-bit character (0x00 through 0x7f) to ** be encoded as a multi-byte character. Any multi-byte character that ** attempts to encode a value between 0x00 and 0x7f is rendered as 0xfffd. ** ** * This routine never allows a UTF16 surrogate value to be encoded. ** If a multi-byte character attempts to encode a value between ** 0xd800 and 0xe000 then it is rendered as 0xfffd. ** ** * Bytes in the range of 0x80 through 0xbf which occur as the first ** byte of a character are interpreted as single-byte characters ** and rendered as themselves even though they are technically ** invalid characters. ** ** * This routine accepts over-length UTF8 encodings ** for unicode values 0x80 and greater. It does not change over-length ** encodings to 0xfffd as some systems recommend. */ #define READ_UTF8(zIn, zTerm, c) \ c = *(zIn++); \ if( c>=0xc0 ){ \ c = sqlite3Utf8Trans1[c-0xc0]; \ while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \ c = (c<<6) + (0x3f & *(zIn++)); \ } \ if( c<0x80 \ || (c&0xFFFFF800)==0xD800 \ || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ } SQLITE_PRIVATE u32 sqlite3Utf8Read( const unsigned char **pz /* Pointer to string from which to read char */ ){ unsigned int c; /* Same as READ_UTF8() above but without the zTerm parameter. ** For this routine, we assume the UTF8 string is always zero-terminated. */ c = *((*pz)++); if( c>=0xc0 ){ c = sqlite3Utf8Trans1[c-0xc0]; while( (*(*pz) & 0xc0)==0x80 ){ c = (c<<6) + (0x3f & *((*pz)++)); } if( c<0x80 || (c&0xFFFFF800)==0xD800 || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } } return c; } /* ** If the TRANSLATE_TRACE macro is defined, the value of each Mem is ** printed on stderr on the way into and out of sqlite3VdbeMemTranslate(). */ /* #define TRANSLATE_TRACE 1 */ #ifndef SQLITE_OMIT_UTF16 /* ** This routine transforms the internal text encoding used by pMem to ** desiredEnc. It is an error if the string is already of the desired ** encoding, or if *pMem does not contain a string value. */ SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ sqlite3_int64 len; /* Maximum length of output string in bytes */ unsigned char *zOut; /* Output buffer */ unsigned char *zIn; /* Input iterator */ unsigned char *zTerm; /* End of input */ unsigned char *z; /* Output iterator */ unsigned int c; assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( pMem->flags&MEM_Str ); assert( pMem->enc!=desiredEnc ); assert( pMem->enc!=0 ); assert( pMem->n>=0 ); #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG) { StrAccum acc; char zBuf[1000]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3VdbeMemPrettyPrint(pMem, &acc); fprintf(stderr, "INPUT: %s\n", sqlite3StrAccumFinish(&acc)); } #endif /* If the translation is between UTF-16 little and big endian, then ** all that is required is to swap the byte order. This case is handled ** differently from the others. */ if( pMem->enc!=SQLITE_UTF8 && desiredEnc!=SQLITE_UTF8 ){ u8 temp; int rc; rc = sqlite3VdbeMemMakeWriteable(pMem); if( rc!=SQLITE_OK ){ assert( rc==SQLITE_NOMEM ); return SQLITE_NOMEM_BKPT; } zIn = (u8*)pMem->z; zTerm = &zIn[pMem->n&~1]; while( zInenc = desiredEnc; goto translate_out; } /* Set len to the maximum number of bytes required in the output buffer. */ if( desiredEnc==SQLITE_UTF8 ){ /* When converting from UTF-16, the maximum growth results from ** translating a 2-byte character to a 4-byte UTF-8 character. ** A single byte is required for the output string ** nul-terminator. */ pMem->n &= ~1; len = 2 * (sqlite3_int64)pMem->n + 1; }else{ /* When converting from UTF-8 to UTF-16 the maximum growth is caused ** when a 1-byte UTF-8 character is translated into a 2-byte UTF-16 ** character. Two bytes are required in the output buffer for the ** nul-terminator. */ len = 2 * (sqlite3_int64)pMem->n + 2; } /* Set zIn to point at the start of the input buffer and zTerm to point 1 ** byte past the end. ** ** Variable zOut is set to point at the output buffer, space obtained ** from sqlite3_malloc(). */ zIn = (u8*)pMem->z; zTerm = &zIn[pMem->n]; zOut = sqlite3DbMallocRaw(pMem->db, len); if( !zOut ){ return SQLITE_NOMEM_BKPT; } z = zOut; if( pMem->enc==SQLITE_UTF8 ){ if( desiredEnc==SQLITE_UTF16LE ){ /* UTF-8 -> UTF-16 Little-endian */ while( zIn UTF-16 Big-endian */ while( zInn = (int)(z - zOut); *z++ = 0; }else{ assert( desiredEnc==SQLITE_UTF8 ); if( pMem->enc==SQLITE_UTF16LE ){ /* UTF-16 Little-endian -> UTF-8 */ while( zIn=0xd800 && c<0xe000 ){ #ifdef SQLITE_REPLACE_INVALID_UTF if( c>=0xdc00 || zIn>=zTerm ){ c = 0xfffd; }else{ int c2 = *(zIn++); c2 += (*(zIn++))<<8; if( c2<0xdc00 || c2>=0xe000 ){ zIn -= 2; c = 0xfffd; }else{ c = ((c&0x3ff)<<10) + (c2&0x3ff) + 0x10000; } } #else if( zIn UTF-8 */ while( zIn=0xd800 && c<0xe000 ){ #ifdef SQLITE_REPLACE_INVALID_UTF if( c>=0xdc00 || zIn>=zTerm ){ c = 0xfffd; }else{ int c2 = (*(zIn++))<<8; c2 += *(zIn++); if( c2<0xdc00 || c2>=0xe000 ){ zIn -= 2; c = 0xfffd; }else{ c = ((c&0x3ff)<<10) + (c2&0x3ff) + 0x10000; } } #else if( zInn = (int)(z - zOut); } *z = 0; assert( (pMem->n+(desiredEnc==SQLITE_UTF8?1:2))<=len ); c = MEM_Str|MEM_Term|(pMem->flags&(MEM_AffMask|MEM_Subtype)); sqlite3VdbeMemRelease(pMem); pMem->flags = c; pMem->enc = desiredEnc; pMem->z = (char*)zOut; pMem->zMalloc = pMem->z; pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->z); translate_out: #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG) { StrAccum acc; char zBuf[1000]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3VdbeMemPrettyPrint(pMem, &acc); fprintf(stderr, "OUTPUT: %s\n", sqlite3StrAccumFinish(&acc)); } #endif return SQLITE_OK; } #endif /* SQLITE_OMIT_UTF16 */ #ifndef SQLITE_OMIT_UTF16 /* ** This routine checks for a byte-order mark at the beginning of the ** UTF-16 string stored in *pMem. If one is present, it is removed and ** the encoding of the Mem adjusted. This routine does not do any ** byte-swapping, it just sets Mem.enc appropriately. ** ** The allocation (static, dynamic etc.) and encoding of the Mem may be ** changed by this function. */ SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem){ int rc = SQLITE_OK; u8 bom = 0; assert( pMem->n>=0 ); if( pMem->n>1 ){ u8 b1 = *(u8 *)pMem->z; u8 b2 = *(((u8 *)pMem->z) + 1); if( b1==0xFE && b2==0xFF ){ bom = SQLITE_UTF16BE; } if( b1==0xFF && b2==0xFE ){ bom = SQLITE_UTF16LE; } } if( bom ){ rc = sqlite3VdbeMemMakeWriteable(pMem); if( rc==SQLITE_OK ){ pMem->n -= 2; memmove(pMem->z, &pMem->z[2], pMem->n); pMem->z[pMem->n] = '\0'; pMem->z[pMem->n+1] = '\0'; pMem->flags |= MEM_Term; pMem->enc = bom; } } return rc; } #endif /* SQLITE_OMIT_UTF16 */ /* ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero, ** return the number of unicode characters in pZ up to (but not including) ** the first 0x00 byte. If nByte is not less than zero, return the ** number of unicode characters in the first nByte of pZ (or up to ** the first 0x00, whichever comes first). */ SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *zIn, int nByte){ int r = 0; const u8 *z = (const u8*)zIn; const u8 *zTerm; if( nByte>=0 ){ zTerm = &z[nByte]; }else{ zTerm = (const u8*)(-1); } assert( z<=zTerm ); while( *z!=0 && zmallocFailed ){ sqlite3VdbeMemRelease(&m); m.z = 0; } assert( (m.flags & MEM_Term)!=0 || db->mallocFailed ); assert( (m.flags & MEM_Str)!=0 || db->mallocFailed ); assert( m.z || db->mallocFailed ); return m.z; } /* ** zIn is a UTF-16 encoded unicode string at least nChar characters long. ** Return the number of bytes in the first nChar unicode characters ** in pZ. nChar must be non-negative. */ SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *zIn, int nChar){ int c; unsigned char const *z = zIn; int n = 0; if( SQLITE_UTF16NATIVE==SQLITE_UTF16LE ) z++; while( n=0xd8 && c<0xdc && z[0]>=0xdc && z[0]<0xe0 ) z += 2; n++; } return (int)(z-(unsigned char const *)zIn) - (SQLITE_UTF16NATIVE==SQLITE_UTF16LE); } #if defined(SQLITE_TEST) /* ** This routine is called from the TCL test function "translate_selftest". ** It checks that the primitives for serializing and deserializing ** characters in each encoding are inverses of each other. */ SQLITE_PRIVATE void sqlite3UtfSelfTest(void){ unsigned int i, t; unsigned char zBuf[20]; unsigned char *z; int n; unsigned int c; for(i=0; i<0x00110000; i++){ z = zBuf; WRITE_UTF8(z, i); n = (int)(z-zBuf); assert( n>0 && n<=4 ); z[0] = 0; z = zBuf; c = sqlite3Utf8Read((const u8**)&z); t = i; if( i>=0xD800 && i<=0xDFFF ) t = 0xFFFD; if( (i&0xFFFFFFFE)==0xFFFE ) t = 0xFFFD; assert( c==t ); assert( (z-zBuf)==n ); } } #endif /* SQLITE_TEST */ #endif /* SQLITE_OMIT_UTF16 */ /************** End of utf.c *************************************************/ /************** Begin file util.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Utility functions used throughout sqlite. ** ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** */ /* #include "sqliteInt.h" */ /* #include */ #ifndef SQLITE_OMIT_FLOATING_POINT #include #endif /* ** Calls to sqlite3FaultSim() are used to simulate a failure during testing, ** or to bypass normal error detection during testing in order to let ** execute proceed futher downstream. ** ** In deployment, sqlite3FaultSim() *always* return SQLITE_OK (0). The ** sqlite3FaultSim() function only returns non-zero during testing. ** ** During testing, if the test harness has set a fault-sim callback using ** a call to sqlite3_test_control(SQLITE_TESTCTRL_FAULT_INSTALL), then ** each call to sqlite3FaultSim() is relayed to that application-supplied ** callback and the integer return value form the application-supplied ** callback is returned by sqlite3FaultSim(). ** ** The integer argument to sqlite3FaultSim() is a code to identify which ** sqlite3FaultSim() instance is being invoked. Each call to sqlite3FaultSim() ** should have a unique code. To prevent legacy testing applications from ** breaking, the codes should not be changed or reused. */ #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE int sqlite3FaultSim(int iTest){ int (*xCallback)(int) = sqlite3GlobalConfig.xTestCallback; return xCallback ? xCallback(iTest) : SQLITE_OK; } #endif #ifndef SQLITE_OMIT_FLOATING_POINT /* ** Return true if the floating point value is Not a Number (NaN). ** ** Use the math library isnan() function if compiled with SQLITE_HAVE_ISNAN. ** Otherwise, we have our own implementation that works on most systems. */ SQLITE_PRIVATE int sqlite3IsNaN(double x){ int rc; /* The value return */ #if !SQLITE_HAVE_ISNAN && !HAVE_ISNAN u64 y; memcpy(&y,&x,sizeof(y)); rc = IsNaN(y); #else rc = isnan(x); #endif /* HAVE_ISNAN */ testcase( rc ); return rc; } #endif /* SQLITE_OMIT_FLOATING_POINT */ /* ** Compute a string length that is limited to what can be stored in ** lower 30 bits of a 32-bit signed integer. ** ** The value returned will never be negative. Nor will it ever be greater ** than the actual length of the string. For very long strings (greater ** than 1GiB) the value returned might be less than the true string length. */ SQLITE_PRIVATE int sqlite3Strlen30(const char *z){ if( z==0 ) return 0; return 0x3fffffff & (int)strlen(z); } /* ** Return the declared type of a column. Or return zDflt if the column ** has no declared type. ** ** The column type is an extra string stored after the zero-terminator on ** the column name if and only if the COLFLAG_HASTYPE flag is set. */ SQLITE_PRIVATE char *sqlite3ColumnType(Column *pCol, char *zDflt){ if( pCol->colFlags & COLFLAG_HASTYPE ){ return pCol->zCnName + strlen(pCol->zCnName) + 1; }else if( pCol->eCType ){ assert( pCol->eCType<=SQLITE_N_STDTYPE ); return (char*)sqlite3StdType[pCol->eCType-1]; }else{ return zDflt; } } /* ** Helper function for sqlite3Error() - called rarely. Broken out into ** a separate routine to avoid unnecessary register saves on entry to ** sqlite3Error(). */ static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){ if( db->pErr ) sqlite3ValueSetNull(db->pErr); sqlite3SystemError(db, err_code); } /* ** Set the current error code to err_code and clear any prior error message. ** Also set iSysErrno (by calling sqlite3System) if the err_code indicates ** that would be appropriate. */ SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){ assert( db!=0 ); db->errCode = err_code; if( err_code || db->pErr ){ sqlite3ErrorFinish(db, err_code); }else{ db->errByteOffset = -1; } } /* ** The equivalent of sqlite3Error(db, SQLITE_OK). Clear the error state ** and error message. */ SQLITE_PRIVATE void sqlite3ErrorClear(sqlite3 *db){ assert( db!=0 ); db->errCode = SQLITE_OK; db->errByteOffset = -1; if( db->pErr ) sqlite3ValueSetNull(db->pErr); } /* ** Load the sqlite3.iSysErrno field if that is an appropriate thing ** to do based on the SQLite error code in rc. */ SQLITE_PRIVATE void sqlite3SystemError(sqlite3 *db, int rc){ if( rc==SQLITE_IOERR_NOMEM ) return; rc &= 0xff; if( rc==SQLITE_CANTOPEN || rc==SQLITE_IOERR ){ db->iSysErrno = sqlite3OsGetLastError(db->pVfs); } } /* ** Set the most recent error code and error string for the sqlite ** handle "db". The error code is set to "err_code". ** ** If it is not NULL, string zFormat specifies the format of the ** error string. zFormat and any string tokens that follow it are ** assumed to be encoded in UTF-8. ** ** To clear the most recent error for sqlite handle "db", sqlite3Error ** should be called with err_code set to SQLITE_OK and zFormat set ** to NULL. */ SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){ assert( db!=0 ); db->errCode = err_code; sqlite3SystemError(db, err_code); if( zFormat==0 ){ sqlite3Error(db, err_code); }else if( db->pErr || (db->pErr = sqlite3ValueNew(db))!=0 ){ char *z; va_list ap; va_start(ap, zFormat); z = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); sqlite3ValueSetStr(db->pErr, -1, z, SQLITE_UTF8, SQLITE_DYNAMIC); } } /* ** Add an error message to pParse->zErrMsg and increment pParse->nErr. ** ** This function should be used to report any error that occurs while ** compiling an SQL statement (i.e. within sqlite3_prepare()). The ** last thing the sqlite3_prepare() function does is copy the error ** stored by this function into the database handle using sqlite3Error(). ** Functions sqlite3Error() or sqlite3ErrorWithMsg() should be used ** during statement execution (sqlite3_step() etc.). */ SQLITE_PRIVATE void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){ char *zMsg; va_list ap; sqlite3 *db = pParse->db; assert( db!=0 ); assert( db->pParse==pParse ); db->errByteOffset = -2; va_start(ap, zFormat); zMsg = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); if( db->errByteOffset<-1 ) db->errByteOffset = -1; if( db->suppressErr ){ sqlite3DbFree(db, zMsg); if( db->mallocFailed ){ pParse->nErr++; pParse->rc = SQLITE_NOMEM; } }else{ pParse->nErr++; sqlite3DbFree(db, pParse->zErrMsg); pParse->zErrMsg = zMsg; pParse->rc = SQLITE_ERROR; pParse->pWith = 0; } } /* ** If database connection db is currently parsing SQL, then transfer ** error code errCode to that parser if the parser has not already ** encountered some other kind of error. */ SQLITE_PRIVATE int sqlite3ErrorToParser(sqlite3 *db, int errCode){ Parse *pParse; if( db==0 || (pParse = db->pParse)==0 ) return errCode; pParse->rc = errCode; pParse->nErr++; return errCode; } /* ** Convert an SQL-style quoted string into a normal string by removing ** the quote characters. The conversion is done in-place. If the ** input does not begin with a quote character, then this routine ** is a no-op. ** ** The input string must be zero-terminated. A new zero-terminator ** is added to the dequoted string. ** ** The return value is -1 if no dequoting occurs or the length of the ** dequoted string, exclusive of the zero terminator, if dequoting does ** occur. ** ** 2002-02-14: This routine is extended to remove MS-Access style ** brackets from around identifiers. For example: "[a-b-c]" becomes ** "a-b-c". */ SQLITE_PRIVATE void sqlite3Dequote(char *z){ char quote; int i, j; if( z==0 ) return; quote = z[0]; if( !sqlite3Isquote(quote) ) return; if( quote=='[' ) quote = ']'; for(i=1, j=0;; i++){ assert( z[i] ); if( z[i]==quote ){ if( z[i+1]==quote ){ z[j++] = quote; i++; }else{ break; } }else{ z[j++] = z[i]; } } z[j] = 0; } SQLITE_PRIVATE void sqlite3DequoteExpr(Expr *p){ assert( !ExprHasProperty(p, EP_IntValue) ); assert( sqlite3Isquote(p->u.zToken[0]) ); p->flags |= p->u.zToken[0]=='"' ? EP_Quoted|EP_DblQuoted : EP_Quoted; sqlite3Dequote(p->u.zToken); } /* ** If the input token p is quoted, try to adjust the token to remove ** the quotes. This is not always possible: ** ** "abc" -> abc ** "ab""cd" -> (not possible because of the interior "") ** ** Remove the quotes if possible. This is a optimization. The overall ** system should still return the correct answer even if this routine ** is always a no-op. */ SQLITE_PRIVATE void sqlite3DequoteToken(Token *p){ unsigned int i; if( p->n<2 ) return; if( !sqlite3Isquote(p->z[0]) ) return; for(i=1; in-1; i++){ if( sqlite3Isquote(p->z[i]) ) return; } p->n -= 2; p->z++; } /* ** Generate a Token object from a string */ SQLITE_PRIVATE void sqlite3TokenInit(Token *p, char *z){ p->z = z; p->n = sqlite3Strlen30(z); } /* Convenient short-hand */ #define UpperToLower sqlite3UpperToLower /* ** Some systems have stricmp(). Others have strcasecmp(). Because ** there is no consistency, we will define our own. ** ** IMPLEMENTATION-OF: R-30243-02494 The sqlite3_stricmp() and ** sqlite3_strnicmp() APIs allow applications and extensions to compare ** the contents of two buffers containing UTF-8 strings in a ** case-independent fashion, using the same definition of "case ** independence" that SQLite uses internally when comparing identifiers. */ SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){ if( zLeft==0 ){ return zRight ? -1 : 0; }else if( zRight==0 ){ return 1; } return sqlite3StrICmp(zLeft, zRight); } SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ unsigned char *a, *b; int c, x; a = (unsigned char *)zLeft; b = (unsigned char *)zRight; for(;;){ c = *a; x = *b; if( c==x ){ if( c==0 ) break; }else{ c = (int)UpperToLower[c] - (int)UpperToLower[x]; if( c ) break; } a++; b++; } return c; } SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ register unsigned char *a, *b; if( zLeft==0 ){ return zRight ? -1 : 0; }else if( zRight==0 ){ return 1; } a = (unsigned char *)zLeft; b = (unsigned char *)zRight; while( N-- > 0 && *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; } return N<0 ? 0 : UpperToLower[*a] - UpperToLower[*b]; } /* ** Compute an 8-bit hash on a string that is insensitive to case differences */ SQLITE_PRIVATE u8 sqlite3StrIHash(const char *z){ u8 h = 0; if( z==0 ) return 0; while( z[0] ){ h += UpperToLower[(unsigned char)z[0]]; z++; } return h; } /* ** Compute 10 to the E-th power. Examples: E==1 results in 10. ** E==2 results in 100. E==50 results in 1.0e50. ** ** This routine only works for values of E between 1 and 341. */ static LONGDOUBLE_TYPE sqlite3Pow10(int E){ #if defined(_MSC_VER) static const LONGDOUBLE_TYPE x[] = { 1.0e+001L, 1.0e+002L, 1.0e+004L, 1.0e+008L, 1.0e+016L, 1.0e+032L, 1.0e+064L, 1.0e+128L, 1.0e+256L }; LONGDOUBLE_TYPE r = 1.0; int i; assert( E>=0 && E<=307 ); for(i=0; E!=0; i++, E >>=1){ if( E & 1 ) r *= x[i]; } return r; #else LONGDOUBLE_TYPE x = 10.0; LONGDOUBLE_TYPE r = 1.0; while(1){ if( E & 1 ) r *= x; E >>= 1; if( E==0 ) break; x *= x; } return r; #endif } /* ** The string z[] is an text representation of a real number. ** Convert this string to a double and write it into *pResult. ** ** The string z[] is length bytes in length (bytes, not characters) and ** uses the encoding enc. The string is not necessarily zero-terminated. ** ** Return TRUE if the result is a valid real number (or integer) and FALSE ** if the string is empty or contains extraneous text. More specifically ** return ** 1 => The input string is a pure integer ** 2 or more => The input has a decimal point or eNNN clause ** 0 or less => The input string is not a valid number ** -1 => Not a valid number, but has a valid prefix which ** includes a decimal point and/or an eNNN clause ** ** Valid numbers are in one of these formats: ** ** [+-]digits[E[+-]digits] ** [+-]digits.[digits][E[+-]digits] ** [+-].digits[E[+-]digits] ** ** Leading and trailing whitespace is ignored for the purpose of determining ** validity. ** ** If some prefix of the input string is a valid number, this routine ** returns FALSE but it still converts the prefix and writes the result ** into *pResult. */ #if defined(_MSC_VER) #pragma warning(disable : 4756) #endif SQLITE_PRIVATE int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){ #ifndef SQLITE_OMIT_FLOATING_POINT int incr; const char *zEnd; /* sign * significand * (10 ^ (esign * exponent)) */ int sign = 1; /* sign of significand */ i64 s = 0; /* significand */ int d = 0; /* adjust exponent for shifting decimal point */ int esign = 1; /* sign of exponent */ int e = 0; /* exponent */ int eValid = 1; /* True exponent is either not used or is well-formed */ double result; int nDigit = 0; /* Number of digits processed */ int eType = 1; /* 1: pure integer, 2+: fractional -1 or less: bad UTF16 */ assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); *pResult = 0.0; /* Default return value, in case of an error */ if( length==0 ) return 0; if( enc==SQLITE_UTF8 ){ incr = 1; zEnd = z + length; }else{ int i; incr = 2; length &= ~1; assert( SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); testcase( enc==SQLITE_UTF16LE ); testcase( enc==SQLITE_UTF16BE ); for(i=3-enc; i=zEnd ) return 0; /* get sign of significand */ if( *z=='-' ){ sign = -1; z+=incr; }else if( *z=='+' ){ z+=incr; } /* copy max significant digits to significand */ while( z=((LARGEST_INT64-9)/10) ){ /* skip non-significant significand digits ** (increase exponent by d to shift decimal left) */ while( z=zEnd ) goto do_atof_calc; /* if decimal point is present */ if( *z=='.' ){ z+=incr; eType++; /* copy digits from after decimal to significand ** (decrease exponent by d to shift decimal right) */ while( z=zEnd ) goto do_atof_calc; /* if exponent is present */ if( *z=='e' || *z=='E' ){ z+=incr; eValid = 0; eType++; /* This branch is needed to avoid a (harmless) buffer overread. The ** special comment alerts the mutation tester that the correct answer ** is obtained even if the branch is omitted */ if( z>=zEnd ) goto do_atof_calc; /*PREVENTS-HARMLESS-OVERREAD*/ /* get sign of exponent */ if( *z=='-' ){ esign = -1; z+=incr; }else if( *z=='+' ){ z+=incr; } /* copy digits to exponent */ while( z0 ){ /*OPTIMIZATION-IF-TRUE*/ if( esign>0 ){ if( s>=(LARGEST_INT64/10) ) break; /*OPTIMIZATION-IF-FALSE*/ s *= 10; }else{ if( s%10!=0 ) break; /*OPTIMIZATION-IF-FALSE*/ s /= 10; } e--; } /* adjust the sign of significand */ s = sign<0 ? -s : s; if( e==0 ){ /*OPTIMIZATION-IF-TRUE*/ result = (double)s; }else{ /* attempt to handle extremely small/large numbers better */ if( e>307 ){ /*OPTIMIZATION-IF-TRUE*/ if( e<342 ){ /*OPTIMIZATION-IF-TRUE*/ LONGDOUBLE_TYPE scale = sqlite3Pow10(e-308); if( esign<0 ){ result = s / scale; result /= 1.0e+308; }else{ result = s * scale; result *= 1.0e+308; } }else{ assert( e>=342 ); if( esign<0 ){ result = 0.0*s; }else{ #ifdef INFINITY result = INFINITY*s; #else result = 1e308*1e308*s; /* Infinity */ #endif } } }else{ LONGDOUBLE_TYPE scale = sqlite3Pow10(e); if( esign<0 ){ result = s / scale; }else{ result = s * scale; } } } } /* store the result */ *pResult = result; /* return true if number and no extra non-whitespace chracters after */ if( z==zEnd && nDigit>0 && eValid && eType>0 ){ return eType; }else if( eType>=2 && (eType==3 || eValid) && nDigit>0 ){ return -1; }else{ return 0; } #else return !sqlite3Atoi64(z, pResult, length, enc); #endif /* SQLITE_OMIT_FLOATING_POINT */ } #if defined(_MSC_VER) #pragma warning(default : 4756) #endif /* ** Render an signed 64-bit integer as text. Store the result in zOut[]. ** ** The caller must ensure that zOut[] is at least 21 bytes in size. */ SQLITE_PRIVATE void sqlite3Int64ToText(i64 v, char *zOut){ int i; u64 x; char zTemp[22]; if( v<0 ){ x = (v==SMALLEST_INT64) ? ((u64)1)<<63 : (u64)-v; }else{ x = v; } i = sizeof(zTemp)-2; zTemp[sizeof(zTemp)-1] = 0; do{ zTemp[i--] = (x%10) + '0'; x = x/10; }while( x ); if( v<0 ) zTemp[i--] = '-'; memcpy(zOut, &zTemp[i+1], sizeof(zTemp)-1-i); } /* ** Compare the 19-character string zNum against the text representation ** value 2^63: 9223372036854775808. Return negative, zero, or positive ** if zNum is less than, equal to, or greater than the string. ** Note that zNum must contain exactly 19 characters. ** ** Unlike memcmp() this routine is guaranteed to return the difference ** in the values of the last digit if the only difference is in the ** last digit. So, for example, ** ** compare2pow63("9223372036854775800", 1) ** ** will return -8. */ static int compare2pow63(const char *zNum, int incr){ int c = 0; int i; /* 012345678901234567 */ const char *pow63 = "922337203685477580"; for(i=0; c==0 && i<18; i++){ c = (zNum[i*incr]-pow63[i])*10; } if( c==0 ){ c = zNum[18*incr] - '8'; testcase( c==(-1) ); testcase( c==0 ); testcase( c==(+1) ); } return c; } /* ** Convert zNum to a 64-bit signed integer. zNum must be decimal. This ** routine does *not* accept hexadecimal notation. ** ** Returns: ** ** -1 Not even a prefix of the input text looks like an integer ** 0 Successful transformation. Fits in a 64-bit signed integer. ** 1 Excess non-space text after the integer value ** 2 Integer too large for a 64-bit signed integer or is malformed ** 3 Special case of 9223372036854775808 ** ** length is the number of bytes in the string (bytes, not characters). ** The string is not necessarily zero-terminated. The encoding is ** given by enc. */ SQLITE_PRIVATE int sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc){ int incr; u64 u = 0; int neg = 0; /* assume positive */ int i; int c = 0; int nonNum = 0; /* True if input contains UTF16 with high byte non-zero */ int rc; /* Baseline return code */ const char *zStart; const char *zEnd = zNum + length; assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); if( enc==SQLITE_UTF8 ){ incr = 1; }else{ incr = 2; length &= ~1; assert( SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); for(i=3-enc; i='0' && c<='9'; i+=incr){ u = u*10 + c - '0'; } testcase( i==18*incr ); testcase( i==19*incr ); testcase( i==20*incr ); if( u>LARGEST_INT64 ){ /* This test and assignment is needed only to suppress UB warnings ** from clang and -fsanitize=undefined. This test and assignment make ** the code a little larger and slower, and no harm comes from omitting ** them, but we must appaise the undefined-behavior pharisees. */ *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; }else if( neg ){ *pNum = -(i64)u; }else{ *pNum = (i64)u; } rc = 0; if( i==0 && zStart==zNum ){ /* No digits */ rc = -1; }else if( nonNum ){ /* UTF16 with high-order bytes non-zero */ rc = 1; }else if( &zNum[i]19*incr ? 1 : compare2pow63(zNum, incr); if( c<0 ){ /* zNum is less than 9223372036854775808 so it fits */ assert( u<=LARGEST_INT64 ); return rc; }else{ *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; if( c>0 ){ /* zNum is greater than 9223372036854775808 so it overflows */ return 2; }else{ /* zNum is exactly 9223372036854775808. Fits if negative. The ** special case 2 overflow if positive */ assert( u-1==LARGEST_INT64 ); return neg ? rc : 3; } } } } /* ** Transform a UTF-8 integer literal, in either decimal or hexadecimal, ** into a 64-bit signed integer. This routine accepts hexadecimal literals, ** whereas sqlite3Atoi64() does not. ** ** Returns: ** ** 0 Successful transformation. Fits in a 64-bit signed integer. ** 1 Excess text after the integer value ** 2 Integer too large for a 64-bit signed integer or is malformed ** 3 Special case of 9223372036854775808 */ SQLITE_PRIVATE int sqlite3DecOrHexToI64(const char *z, i64 *pOut){ #ifndef SQLITE_OMIT_HEX_INTEGER if( z[0]=='0' && (z[1]=='x' || z[1]=='X') ){ u64 u = 0; int i, k; for(i=2; z[i]=='0'; i++){} for(k=i; sqlite3Isxdigit(z[k]); k++){ u = u*16 + sqlite3HexToInt(z[k]); } memcpy(pOut, &u, 8); return (z[k]==0 && k-i<=16) ? 0 : 2; }else #endif /* SQLITE_OMIT_HEX_INTEGER */ { return sqlite3Atoi64(z, pOut, sqlite3Strlen30(z), SQLITE_UTF8); } } /* ** If zNum represents an integer that will fit in 32-bits, then set ** *pValue to that integer and return true. Otherwise return false. ** ** This routine accepts both decimal and hexadecimal notation for integers. ** ** Any non-numeric characters that following zNum are ignored. ** This is different from sqlite3Atoi64() which requires the ** input number to be zero-terminated. */ SQLITE_PRIVATE int sqlite3GetInt32(const char *zNum, int *pValue){ sqlite_int64 v = 0; int i, c; int neg = 0; if( zNum[0]=='-' ){ neg = 1; zNum++; }else if( zNum[0]=='+' ){ zNum++; } #ifndef SQLITE_OMIT_HEX_INTEGER else if( zNum[0]=='0' && (zNum[1]=='x' || zNum[1]=='X') && sqlite3Isxdigit(zNum[2]) ){ u32 u = 0; zNum += 2; while( zNum[0]=='0' ) zNum++; for(i=0; sqlite3Isxdigit(zNum[i]) && i<8; i++){ u = u*16 + sqlite3HexToInt(zNum[i]); } if( (u&0x80000000)==0 && sqlite3Isxdigit(zNum[i])==0 ){ memcpy(pValue, &u, 4); return 1; }else{ return 0; } } #endif if( !sqlite3Isdigit(zNum[0]) ) return 0; while( zNum[0]=='0' ) zNum++; for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){ v = v*10 + c; } /* The longest decimal representation of a 32 bit integer is 10 digits: ** ** 1234567890 ** 2^31 -> 2147483648 */ testcase( i==10 ); if( i>10 ){ return 0; } testcase( v-neg==2147483647 ); if( v-neg>2147483647 ){ return 0; } if( neg ){ v = -v; } *pValue = (int)v; return 1; } /* ** Return a 32-bit integer value extracted from a string. If the ** string is not an integer, just return 0. */ SQLITE_PRIVATE int sqlite3Atoi(const char *z){ int x = 0; sqlite3GetInt32(z, &x); return x; } /* ** Try to convert z into an unsigned 32-bit integer. Return true on ** success and false if there is an error. ** ** Only decimal notation is accepted. */ SQLITE_PRIVATE int sqlite3GetUInt32(const char *z, u32 *pI){ u64 v = 0; int i; for(i=0; sqlite3Isdigit(z[i]); i++){ v = v*10 + z[i] - '0'; if( v>4294967296LL ){ *pI = 0; return 0; } } if( i==0 || z[i]!=0 ){ *pI = 0; return 0; } *pI = (u32)v; return 1; } /* ** The variable-length integer encoding is as follows: ** ** KEY: ** A = 0xxxxxxx 7 bits of data and one flag bit ** B = 1xxxxxxx 7 bits of data and one flag bit ** C = xxxxxxxx 8 bits of data ** ** 7 bits - A ** 14 bits - BA ** 21 bits - BBA ** 28 bits - BBBA ** 35 bits - BBBBA ** 42 bits - BBBBBA ** 49 bits - BBBBBBA ** 56 bits - BBBBBBBA ** 64 bits - BBBBBBBBC */ /* ** Write a 64-bit variable-length integer to memory starting at p[0]. ** The length of data write will be between 1 and 9 bytes. The number ** of bytes written is returned. ** ** A variable-length integer consists of the lower 7 bits of each byte ** for all bytes that have the 8th bit set and one byte with the 8th ** bit clear. Except, if we get to the 9th byte, it stores the full ** 8 bits and is the last byte. */ static int SQLITE_NOINLINE putVarint64(unsigned char *p, u64 v){ int i, j, n; u8 buf[10]; if( v & (((u64)0xff000000)<<32) ){ p[8] = (u8)v; v >>= 8; for(i=7; i>=0; i--){ p[i] = (u8)((v & 0x7f) | 0x80); v >>= 7; } return 9; } n = 0; do{ buf[n++] = (u8)((v & 0x7f) | 0x80); v >>= 7; }while( v!=0 ); buf[0] &= 0x7f; assert( n<=9 ); for(i=0, j=n-1; j>=0; j--, i++){ p[i] = buf[j]; } return n; } SQLITE_PRIVATE int sqlite3PutVarint(unsigned char *p, u64 v){ if( v<=0x7f ){ p[0] = v&0x7f; return 1; } if( v<=0x3fff ){ p[0] = ((v>>7)&0x7f)|0x80; p[1] = v&0x7f; return 2; } return putVarint64(p,v); } /* ** Bitmasks used by sqlite3GetVarint(). These precomputed constants ** are defined here rather than simply putting the constant expressions ** inline in order to work around bugs in the RVT compiler. ** ** SLOT_2_0 A mask for (0x7f<<14) | 0x7f ** ** SLOT_4_2_0 A mask for (0x7f<<28) | SLOT_2_0 */ #define SLOT_2_0 0x001fc07f #define SLOT_4_2_0 0xf01fc07f /* ** Read a 64-bit variable-length integer from memory starting at p[0]. ** Return the number of bytes read. The value is stored in *v. */ SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *p, u64 *v){ u32 a,b,s; if( ((signed char*)p)[0]>=0 ){ *v = *p; return 1; } if( ((signed char*)p)[1]>=0 ){ *v = ((u32)(p[0]&0x7f)<<7) | p[1]; return 2; } /* Verify that constants are precomputed correctly */ assert( SLOT_2_0 == ((0x7f<<14) | (0x7f)) ); assert( SLOT_4_2_0 == ((0xfU<<28) | (0x7f<<14) | (0x7f)) ); a = ((u32)p[0])<<14; b = p[1]; p += 2; a |= *p; /* a: p0<<14 | p2 (unmasked) */ if (!(a&0x80)) { a &= SLOT_2_0; b &= 0x7f; b = b<<7; a |= b; *v = a; return 3; } /* CSE1 from below */ a &= SLOT_2_0; p++; b = b<<14; b |= *p; /* b: p1<<14 | p3 (unmasked) */ if (!(b&0x80)) { b &= SLOT_2_0; /* moved CSE1 up */ /* a &= (0x7f<<14)|(0x7f); */ a = a<<7; a |= b; *v = a; return 4; } /* a: p0<<14 | p2 (masked) */ /* b: p1<<14 | p3 (unmasked) */ /* 1:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ /* moved CSE1 up */ /* a &= (0x7f<<14)|(0x7f); */ b &= SLOT_2_0; s = a; /* s: p0<<14 | p2 (masked) */ p++; a = a<<14; a |= *p; /* a: p0<<28 | p2<<14 | p4 (unmasked) */ if (!(a&0x80)) { /* we can skip these cause they were (effectively) done above ** while calculating s */ /* a &= (0x7f<<28)|(0x7f<<14)|(0x7f); */ /* b &= (0x7f<<14)|(0x7f); */ b = b<<7; a |= b; s = s>>18; *v = ((u64)s)<<32 | a; return 5; } /* 2:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ s = s<<7; s |= b; /* s: p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ p++; b = b<<14; b |= *p; /* b: p1<<28 | p3<<14 | p5 (unmasked) */ if (!(b&0x80)) { /* we can skip this cause it was (effectively) done above in calc'ing s */ /* b &= (0x7f<<28)|(0x7f<<14)|(0x7f); */ a &= SLOT_2_0; a = a<<7; a |= b; s = s>>18; *v = ((u64)s)<<32 | a; return 6; } p++; a = a<<14; a |= *p; /* a: p2<<28 | p4<<14 | p6 (unmasked) */ if (!(a&0x80)) { a &= SLOT_4_2_0; b &= SLOT_2_0; b = b<<7; a |= b; s = s>>11; *v = ((u64)s)<<32 | a; return 7; } /* CSE2 from below */ a &= SLOT_2_0; p++; b = b<<14; b |= *p; /* b: p3<<28 | p5<<14 | p7 (unmasked) */ if (!(b&0x80)) { b &= SLOT_4_2_0; /* moved CSE2 up */ /* a &= (0x7f<<14)|(0x7f); */ a = a<<7; a |= b; s = s>>4; *v = ((u64)s)<<32 | a; return 8; } p++; a = a<<15; a |= *p; /* a: p4<<29 | p6<<15 | p8 (unmasked) */ /* moved CSE2 up */ /* a &= (0x7f<<29)|(0x7f<<15)|(0xff); */ b &= SLOT_2_0; b = b<<8; a |= b; s = s<<4; b = p[-4]; b &= 0x7f; b = b>>3; s |= b; *v = ((u64)s)<<32 | a; return 9; } /* ** Read a 32-bit variable-length integer from memory starting at p[0]. ** Return the number of bytes read. The value is stored in *v. ** ** If the varint stored in p[0] is larger than can fit in a 32-bit unsigned ** integer, then set *v to 0xffffffff. ** ** A MACRO version, getVarint32, is provided which inlines the ** single-byte case. All code should use the MACRO version as ** this function assumes the single-byte case has already been handled. */ SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){ u32 a,b; /* The 1-byte case. Overwhelmingly the most common. Handled inline ** by the getVarin32() macro */ a = *p; /* a: p0 (unmasked) */ #ifndef getVarint32 if (!(a&0x80)) { /* Values between 0 and 127 */ *v = a; return 1; } #endif /* The 2-byte case */ p++; b = *p; /* b: p1 (unmasked) */ if (!(b&0x80)) { /* Values between 128 and 16383 */ a &= 0x7f; a = a<<7; *v = a | b; return 2; } /* The 3-byte case */ p++; a = a<<14; a |= *p; /* a: p0<<14 | p2 (unmasked) */ if (!(a&0x80)) { /* Values between 16384 and 2097151 */ a &= (0x7f<<14)|(0x7f); b &= 0x7f; b = b<<7; *v = a | b; return 3; } /* A 32-bit varint is used to store size information in btrees. ** Objects are rarely larger than 2MiB limit of a 3-byte varint. ** A 3-byte varint is sufficient, for example, to record the size ** of a 1048569-byte BLOB or string. ** ** We only unroll the first 1-, 2-, and 3- byte cases. The very ** rare larger cases can be handled by the slower 64-bit varint ** routine. */ #if 1 { u64 v64; u8 n; n = sqlite3GetVarint(p-2, &v64); assert( n>3 && n<=9 ); if( (v64 & SQLITE_MAX_U32)!=v64 ){ *v = 0xffffffff; }else{ *v = (u32)v64; } return n; } #else /* For following code (kept for historical record only) shows an ** unrolling for the 3- and 4-byte varint cases. This code is ** slightly faster, but it is also larger and much harder to test. */ p++; b = b<<14; b |= *p; /* b: p1<<14 | p3 (unmasked) */ if (!(b&0x80)) { /* Values between 2097152 and 268435455 */ b &= (0x7f<<14)|(0x7f); a &= (0x7f<<14)|(0x7f); a = a<<7; *v = a | b; return 4; } p++; a = a<<14; a |= *p; /* a: p0<<28 | p2<<14 | p4 (unmasked) */ if (!(a&0x80)) { /* Values between 268435456 and 34359738367 */ a &= SLOT_4_2_0; b &= SLOT_4_2_0; b = b<<7; *v = a | b; return 5; } /* We can only reach this point when reading a corrupt database ** file. In that case we are not in any hurry. Use the (relatively ** slow) general-purpose sqlite3GetVarint() routine to extract the ** value. */ { u64 v64; u8 n; p -= 4; n = sqlite3GetVarint(p, &v64); assert( n>5 && n<=9 ); *v = (u32)v64; return n; } #endif } /* ** Return the number of bytes that will be needed to store the given ** 64-bit integer. */ SQLITE_PRIVATE int sqlite3VarintLen(u64 v){ int i; for(i=1; (v >>= 7)!=0; i++){ assert( i<10 ); } return i; } /* ** Read or write a four-byte big-endian integer value. */ SQLITE_PRIVATE u32 sqlite3Get4byte(const u8 *p){ #if SQLITE_BYTEORDER==4321 u32 x; memcpy(&x,p,4); return x; #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 u32 x; memcpy(&x,p,4); return __builtin_bswap32(x); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 u32 x; memcpy(&x,p,4); return _byteswap_ulong(x); #else testcase( p[0]&0x80 ); return ((unsigned)p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3]; #endif } SQLITE_PRIVATE void sqlite3Put4byte(unsigned char *p, u32 v){ #if SQLITE_BYTEORDER==4321 memcpy(p,&v,4); #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 u32 x = __builtin_bswap32(v); memcpy(p,&x,4); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 u32 x = _byteswap_ulong(v); memcpy(p,&x,4); #else p[0] = (u8)(v>>24); p[1] = (u8)(v>>16); p[2] = (u8)(v>>8); p[3] = (u8)v; #endif } /* ** Translate a single byte of Hex into an integer. ** This routine only works if h really is a valid hexadecimal ** character: 0..9a..fA..F */ SQLITE_PRIVATE u8 sqlite3HexToInt(int h){ assert( (h>='0' && h<='9') || (h>='a' && h<='f') || (h>='A' && h<='F') ); #ifdef SQLITE_ASCII h += 9*(1&(h>>6)); #endif #ifdef SQLITE_EBCDIC h += 9*(1&~(h>>4)); #endif return (u8)(h & 0xf); } #if !defined(SQLITE_OMIT_BLOB_LITERAL) /* ** Convert a BLOB literal of the form "x'hhhhhh'" into its binary ** value. Return a pointer to its binary value. Space to hold the ** binary value has been obtained from malloc and must be freed by ** the calling routine. */ SQLITE_PRIVATE void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){ char *zBlob; int i; zBlob = (char *)sqlite3DbMallocRawNN(db, n/2 + 1); n--; if( zBlob ){ for(i=0; ieOpenState; if( eOpenState!=SQLITE_STATE_OPEN ){ if( sqlite3SafetyCheckSickOrOk(db) ){ testcase( sqlite3GlobalConfig.xLog!=0 ); logBadConnection("unopened"); } return 0; }else{ return 1; } } SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3 *db){ u8 eOpenState; eOpenState = db->eOpenState; if( eOpenState!=SQLITE_STATE_SICK && eOpenState!=SQLITE_STATE_OPEN && eOpenState!=SQLITE_STATE_BUSY ){ testcase( sqlite3GlobalConfig.xLog!=0 ); logBadConnection("invalid"); return 0; }else{ return 1; } } /* ** Attempt to add, substract, or multiply the 64-bit signed value iB against ** the other 64-bit signed integer at *pA and store the result in *pA. ** Return 0 on success. Or if the operation would have resulted in an ** overflow, leave *pA unchanged and return 1. */ SQLITE_PRIVATE int sqlite3AddInt64(i64 *pA, i64 iB){ #if GCC_VERSION>=5004000 && !defined(__INTEL_COMPILER) return __builtin_add_overflow(*pA, iB, pA); #else i64 iA = *pA; testcase( iA==0 ); testcase( iA==1 ); testcase( iB==-1 ); testcase( iB==0 ); if( iB>=0 ){ testcase( iA>0 && LARGEST_INT64 - iA == iB ); testcase( iA>0 && LARGEST_INT64 - iA == iB - 1 ); if( iA>0 && LARGEST_INT64 - iA < iB ) return 1; }else{ testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 1 ); testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 2 ); if( iA<0 && -(iA + LARGEST_INT64) > iB + 1 ) return 1; } *pA += iB; return 0; #endif } SQLITE_PRIVATE int sqlite3SubInt64(i64 *pA, i64 iB){ #if GCC_VERSION>=5004000 && !defined(__INTEL_COMPILER) return __builtin_sub_overflow(*pA, iB, pA); #else testcase( iB==SMALLEST_INT64+1 ); if( iB==SMALLEST_INT64 ){ testcase( (*pA)==(-1) ); testcase( (*pA)==0 ); if( (*pA)>=0 ) return 1; *pA -= iB; return 0; }else{ return sqlite3AddInt64(pA, -iB); } #endif } SQLITE_PRIVATE int sqlite3MulInt64(i64 *pA, i64 iB){ #if GCC_VERSION>=5004000 && !defined(__INTEL_COMPILER) return __builtin_mul_overflow(*pA, iB, pA); #else i64 iA = *pA; if( iB>0 ){ if( iA>LARGEST_INT64/iB ) return 1; if( iA0 ){ if( iBLARGEST_INT64/-iB ) return 1; } } *pA = iA*iB; return 0; #endif } /* ** Compute the absolute value of a 32-bit signed integer, of possible. Or ** if the integer has a value of -2147483648, return +2147483647 */ SQLITE_PRIVATE int sqlite3AbsInt32(int x){ if( x>=0 ) return x; if( x==(int)0x80000000 ) return 0x7fffffff; return -x; } #ifdef SQLITE_ENABLE_8_3_NAMES /* ** If SQLITE_ENABLE_8_3_NAMES is set at compile-time and if the database ** filename in zBaseFilename is a URI with the "8_3_names=1" parameter and ** if filename in z[] has a suffix (a.k.a. "extension") that is longer than ** three characters, then shorten the suffix on z[] to be the last three ** characters of the original suffix. ** ** If SQLITE_ENABLE_8_3_NAMES is set to 2 at compile-time, then always ** do the suffix shortening regardless of URI parameter. ** ** Examples: ** ** test.db-journal => test.nal ** test.db-wal => test.wal ** test.db-shm => test.shm ** test.db-mj7f3319fa => test.9fa */ SQLITE_PRIVATE void sqlite3FileSuffix3(const char *zBaseFilename, char *z){ #if SQLITE_ENABLE_8_3_NAMES<2 if( sqlite3_uri_boolean(zBaseFilename, "8_3_names", 0) ) #endif { int i, sz; sz = sqlite3Strlen30(z); for(i=sz-1; i>0 && z[i]!='/' && z[i]!='.'; i--){} if( z[i]=='.' && ALWAYS(sz>i+4) ) memmove(&z[i+1], &z[sz-3], 4); } } #endif /* ** Find (an approximate) sum of two LogEst values. This computation is ** not a simple "+" operator because LogEst is stored as a logarithmic ** value. ** */ SQLITE_PRIVATE LogEst sqlite3LogEstAdd(LogEst a, LogEst b){ static const unsigned char x[] = { 10, 10, /* 0,1 */ 9, 9, /* 2,3 */ 8, 8, /* 4,5 */ 7, 7, 7, /* 6,7,8 */ 6, 6, 6, /* 9,10,11 */ 5, 5, 5, /* 12-14 */ 4, 4, 4, 4, /* 15-18 */ 3, 3, 3, 3, 3, 3, /* 19-24 */ 2, 2, 2, 2, 2, 2, 2, /* 25-31 */ }; if( a>=b ){ if( a>b+49 ) return a; if( a>b+31 ) return a+1; return a+x[a-b]; }else{ if( b>a+49 ) return b; if( b>a+31 ) return b+1; return b+x[b-a]; } } /* ** Convert an integer into a LogEst. In other words, compute an ** approximation for 10*log2(x). */ SQLITE_PRIVATE LogEst sqlite3LogEst(u64 x){ static LogEst a[] = { 0, 2, 3, 5, 6, 7, 8, 9 }; LogEst y = 40; if( x<8 ){ if( x<2 ) return 0; while( x<8 ){ y -= 10; x <<= 1; } }else{ #if GCC_VERSION>=5004000 int i = 60 - __builtin_clzll(x); y += i*10; x >>= i; #else while( x>255 ){ y += 40; x >>= 4; } /*OPTIMIZATION-IF-TRUE*/ while( x>15 ){ y += 10; x >>= 1; } #endif } return a[x&7] + y - 10; } /* ** Convert a double into a LogEst ** In other words, compute an approximation for 10*log2(x). */ SQLITE_PRIVATE LogEst sqlite3LogEstFromDouble(double x){ u64 a; LogEst e; assert( sizeof(x)==8 && sizeof(a)==8 ); if( x<=1 ) return 0; if( x<=2000000000 ) return sqlite3LogEst((u64)x); memcpy(&a, &x, 8); e = (a>>52) - 1022; return e*10; } /* ** Convert a LogEst into an integer. */ SQLITE_PRIVATE u64 sqlite3LogEstToInt(LogEst x){ u64 n; n = x%10; x /= 10; if( n>=5 ) n -= 2; else if( n>=1 ) n -= 1; if( x>60 ) return (u64)LARGEST_INT64; return x>=3 ? (n+8)<<(x-3) : (n+8)>>(3-x); } /* ** Add a new name/number pair to a VList. This might require that the ** VList object be reallocated, so return the new VList. If an OOM ** error occurs, the original VList returned and the ** db->mallocFailed flag is set. ** ** A VList is really just an array of integers. To destroy a VList, ** simply pass it to sqlite3DbFree(). ** ** The first integer is the number of integers allocated for the whole ** VList. The second integer is the number of integers actually used. ** Each name/number pair is encoded by subsequent groups of 3 or more ** integers. ** ** Each name/number pair starts with two integers which are the numeric ** value for the pair and the size of the name/number pair, respectively. ** The text name overlays one or more following integers. The text name ** is always zero-terminated. ** ** Conceptually: ** ** struct VList { ** int nAlloc; // Number of allocated slots ** int nUsed; // Number of used slots ** struct VListEntry { ** int iValue; // Value for this entry ** int nSlot; // Slots used by this entry ** // ... variable name goes here ** } a[0]; ** } ** ** During code generation, pointers to the variable names within the ** VList are taken. When that happens, nAlloc is set to zero as an ** indication that the VList may never again be enlarged, since the ** accompanying realloc() would invalidate the pointers. */ SQLITE_PRIVATE VList *sqlite3VListAdd( sqlite3 *db, /* The database connection used for malloc() */ VList *pIn, /* The input VList. Might be NULL */ const char *zName, /* Name of symbol to add */ int nName, /* Bytes of text in zName */ int iVal /* Value to associate with zName */ ){ int nInt; /* number of sizeof(int) objects needed for zName */ char *z; /* Pointer to where zName will be stored */ int i; /* Index in pIn[] where zName is stored */ nInt = nName/4 + 3; assert( pIn==0 || pIn[0]>=3 ); /* Verify ok to add new elements */ if( pIn==0 || pIn[1]+nInt > pIn[0] ){ /* Enlarge the allocation */ sqlite3_int64 nAlloc = (pIn ? 2*(sqlite3_int64)pIn[0] : 10) + nInt; VList *pOut = sqlite3DbRealloc(db, pIn, nAlloc*sizeof(int)); if( pOut==0 ) return pIn; if( pIn==0 ) pOut[1] = 2; pIn = pOut; pIn[0] = nAlloc; } i = pIn[1]; pIn[i] = iVal; pIn[i+1] = nInt; z = (char*)&pIn[i+2]; pIn[1] = i+nInt; assert( pIn[1]<=pIn[0] ); memcpy(z, zName, nName); z[nName] = 0; return pIn; } /* ** Return a pointer to the name of a variable in the given VList that ** has the value iVal. Or return a NULL if there is no such variable in ** the list */ SQLITE_PRIVATE const char *sqlite3VListNumToName(VList *pIn, int iVal){ int i, mx; if( pIn==0 ) return 0; mx = pIn[1]; i = 2; do{ if( pIn[i]==iVal ) return (char*)&pIn[i+2]; i += pIn[i+1]; }while( i */ /* Turn bulk memory into a hash table object by initializing the ** fields of the Hash structure. ** ** "pNew" is a pointer to the hash table that is to be initialized. */ SQLITE_PRIVATE void sqlite3HashInit(Hash *pNew){ assert( pNew!=0 ); pNew->first = 0; pNew->count = 0; pNew->htsize = 0; pNew->ht = 0; } /* Remove all entries from a hash table. Reclaim all memory. ** Call this routine to delete a hash table or to reset a hash table ** to the empty state. */ SQLITE_PRIVATE void sqlite3HashClear(Hash *pH){ HashElem *elem; /* For looping over all elements of the table */ assert( pH!=0 ); elem = pH->first; pH->first = 0; sqlite3_free(pH->ht); pH->ht = 0; pH->htsize = 0; while( elem ){ HashElem *next_elem = elem->next; sqlite3_free(elem); elem = next_elem; } pH->count = 0; } /* ** The hashing function. */ static unsigned int strHash(const char *z){ unsigned int h = 0; unsigned char c; while( (c = (unsigned char)*z++)!=0 ){ /*OPTIMIZATION-IF-TRUE*/ /* Knuth multiplicative hashing. (Sorting & Searching, p. 510). ** 0x9e3779b1 is 2654435761 which is the closest prime number to ** (2**32)*golden_ratio, where golden_ratio = (sqrt(5) - 1)/2. */ h += sqlite3UpperToLower[c]; h *= 0x9e3779b1; } return h; } /* Link pNew element into the hash table pH. If pEntry!=0 then also ** insert pNew into the pEntry hash bucket. */ static void insertElement( Hash *pH, /* The complete hash table */ struct _ht *pEntry, /* The entry into which pNew is inserted */ HashElem *pNew /* The element to be inserted */ ){ HashElem *pHead; /* First element already in pEntry */ if( pEntry ){ pHead = pEntry->count ? pEntry->chain : 0; pEntry->count++; pEntry->chain = pNew; }else{ pHead = 0; } if( pHead ){ pNew->next = pHead; pNew->prev = pHead->prev; if( pHead->prev ){ pHead->prev->next = pNew; } else { pH->first = pNew; } pHead->prev = pNew; }else{ pNew->next = pH->first; if( pH->first ){ pH->first->prev = pNew; } pNew->prev = 0; pH->first = pNew; } } /* Resize the hash table so that it cantains "new_size" buckets. ** ** The hash table might fail to resize if sqlite3_malloc() fails or ** if the new size is the same as the prior size. ** Return TRUE if the resize occurs and false if not. */ static int rehash(Hash *pH, unsigned int new_size){ struct _ht *new_ht; /* The new hash table */ HashElem *elem, *next_elem; /* For looping over existing elements */ #if SQLITE_MALLOC_SOFT_LIMIT>0 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){ new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht); } if( new_size==pH->htsize ) return 0; #endif /* The inability to allocates space for a larger hash table is ** a performance hit but it is not a fatal error. So mark the ** allocation as a benign. Use sqlite3Malloc()/memset(0) instead of ** sqlite3MallocZero() to make the allocation, as sqlite3MallocZero() ** only zeroes the requested number of bytes whereas this module will ** use the actual amount of space allocated for the hash table (which ** may be larger than the requested amount). */ sqlite3BeginBenignMalloc(); new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) ); sqlite3EndBenignMalloc(); if( new_ht==0 ) return 0; sqlite3_free(pH->ht); pH->ht = new_ht; pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); memset(new_ht, 0, new_size*sizeof(struct _ht)); for(elem=pH->first, pH->first=0; elem; elem = next_elem){ unsigned int h = strHash(elem->pKey) % new_size; next_elem = elem->next; insertElement(pH, &new_ht[h], elem); } return 1; } /* This function (for internal use only) locates an element in an ** hash table that matches the given key. If no element is found, ** a pointer to a static null element with HashElem.data==0 is returned. ** If pH is not NULL, then the hash for this key is written to *pH. */ static HashElem *findElementWithHash( const Hash *pH, /* The pH to be searched */ const char *pKey, /* The key we are searching for */ unsigned int *pHash /* Write the hash value here */ ){ HashElem *elem; /* Used to loop thru the element list */ unsigned int count; /* Number of elements left to test */ unsigned int h; /* The computed hash */ static HashElem nullElement = { 0, 0, 0, 0 }; if( pH->ht ){ /*OPTIMIZATION-IF-TRUE*/ struct _ht *pEntry; h = strHash(pKey) % pH->htsize; pEntry = &pH->ht[h]; elem = pEntry->chain; count = pEntry->count; }else{ h = 0; elem = pH->first; count = pH->count; } if( pHash ) *pHash = h; while( count-- ){ assert( elem!=0 ); if( sqlite3StrICmp(elem->pKey,pKey)==0 ){ return elem; } elem = elem->next; } return &nullElement; } /* Remove a single entry from the hash table given a pointer to that ** element and a hash on the element's key. */ static void removeElementGivenHash( Hash *pH, /* The pH containing "elem" */ HashElem* elem, /* The element to be removed from the pH */ unsigned int h /* Hash value for the element */ ){ struct _ht *pEntry; if( elem->prev ){ elem->prev->next = elem->next; }else{ pH->first = elem->next; } if( elem->next ){ elem->next->prev = elem->prev; } if( pH->ht ){ pEntry = &pH->ht[h]; if( pEntry->chain==elem ){ pEntry->chain = elem->next; } assert( pEntry->count>0 ); pEntry->count--; } sqlite3_free( elem ); pH->count--; if( pH->count==0 ){ assert( pH->first==0 ); assert( pH->count==0 ); sqlite3HashClear(pH); } } /* Attempt to locate an element of the hash table pH with a key ** that matches pKey. Return the data for this element if it is ** found, or NULL if there is no match. */ SQLITE_PRIVATE void *sqlite3HashFind(const Hash *pH, const char *pKey){ assert( pH!=0 ); assert( pKey!=0 ); return findElementWithHash(pH, pKey, 0)->data; } /* Insert an element into the hash table pH. The key is pKey ** and the data is "data". ** ** If no element exists with a matching key, then a new ** element is created and NULL is returned. ** ** If another element already exists with the same key, then the ** new data replaces the old data and the old data is returned. ** The key is not copied in this instance. If a malloc fails, then ** the new data is returned and the hash table is unchanged. ** ** If the "data" parameter to this function is NULL, then the ** element corresponding to "key" is removed from the hash table. */ SQLITE_PRIVATE void *sqlite3HashInsert(Hash *pH, const char *pKey, void *data){ unsigned int h; /* the hash of the key modulo hash table size */ HashElem *elem; /* Used to loop thru the element list */ HashElem *new_elem; /* New element added to the pH */ assert( pH!=0 ); assert( pKey!=0 ); elem = findElementWithHash(pH,pKey,&h); if( elem->data ){ void *old_data = elem->data; if( data==0 ){ removeElementGivenHash(pH,elem,h); }else{ elem->data = data; elem->pKey = pKey; } return old_data; } if( data==0 ) return 0; new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) ); if( new_elem==0 ) return data; new_elem->pKey = pKey; new_elem->data = data; pH->count++; if( pH->count>=10 && pH->count > 2*pH->htsize ){ if( rehash(pH, pH->count*2) ){ assert( pH->htsize>0 ); h = strHash(pKey) % pH->htsize; } } insertElement(pH, pH->ht ? &pH->ht[h] : 0, new_elem); return 0; } /************** End of hash.c ************************************************/ /************** Begin file opcodes.c *****************************************/ /* Automatically generated. Do not edit */ /* See the tool/mkopcodec.tcl script for details. */ #if !defined(SQLITE_OMIT_EXPLAIN) \ || defined(VDBE_PROFILE) \ || defined(SQLITE_DEBUG) #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) || defined(SQLITE_DEBUG) # define OpHelp(X) "\0" X #else # define OpHelp(X) #endif SQLITE_PRIVATE const char *sqlite3OpcodeName(int i){ static const char *const azName[] = { /* 0 */ "Savepoint" OpHelp(""), /* 1 */ "AutoCommit" OpHelp(""), /* 2 */ "Transaction" OpHelp(""), /* 3 */ "SorterNext" OpHelp(""), /* 4 */ "Prev" OpHelp(""), /* 5 */ "Next" OpHelp(""), /* 6 */ "Checkpoint" OpHelp(""), /* 7 */ "JournalMode" OpHelp(""), /* 8 */ "Vacuum" OpHelp(""), /* 9 */ "VFilter" OpHelp("iplan=r[P3] zplan='P4'"), /* 10 */ "VUpdate" OpHelp("data=r[P3@P2]"), /* 11 */ "Goto" OpHelp(""), /* 12 */ "Gosub" OpHelp(""), /* 13 */ "InitCoroutine" OpHelp(""), /* 14 */ "Yield" OpHelp(""), /* 15 */ "MustBeInt" OpHelp(""), /* 16 */ "Jump" OpHelp(""), /* 17 */ "Once" OpHelp(""), /* 18 */ "If" OpHelp(""), /* 19 */ "Not" OpHelp("r[P2]= !r[P1]"), /* 20 */ "IfNot" OpHelp(""), /* 21 */ "IsNullOrType" OpHelp("if typeof(r[P1]) IN (P3,5) goto P2"), /* 22 */ "IfNullRow" OpHelp("if P1.nullRow then r[P3]=NULL, goto P2"), /* 23 */ "SeekLT" OpHelp("key=r[P3@P4]"), /* 24 */ "SeekLE" OpHelp("key=r[P3@P4]"), /* 25 */ "SeekGE" OpHelp("key=r[P3@P4]"), /* 26 */ "SeekGT" OpHelp("key=r[P3@P4]"), /* 27 */ "IfNotOpen" OpHelp("if( !csr[P1] ) goto P2"), /* 28 */ "IfNoHope" OpHelp("key=r[P3@P4]"), /* 29 */ "NoConflict" OpHelp("key=r[P3@P4]"), /* 30 */ "NotFound" OpHelp("key=r[P3@P4]"), /* 31 */ "Found" OpHelp("key=r[P3@P4]"), /* 32 */ "SeekRowid" OpHelp("intkey=r[P3]"), /* 33 */ "NotExists" OpHelp("intkey=r[P3]"), /* 34 */ "Last" OpHelp(""), /* 35 */ "IfSmaller" OpHelp(""), /* 36 */ "SorterSort" OpHelp(""), /* 37 */ "Sort" OpHelp(""), /* 38 */ "Rewind" OpHelp(""), /* 39 */ "IdxLE" OpHelp("key=r[P3@P4]"), /* 40 */ "IdxGT" OpHelp("key=r[P3@P4]"), /* 41 */ "IdxLT" OpHelp("key=r[P3@P4]"), /* 42 */ "IdxGE" OpHelp("key=r[P3@P4]"), /* 43 */ "Or" OpHelp("r[P3]=(r[P1] || r[P2])"), /* 44 */ "And" OpHelp("r[P3]=(r[P1] && r[P2])"), /* 45 */ "RowSetRead" OpHelp("r[P3]=rowset(P1)"), /* 46 */ "RowSetTest" OpHelp("if r[P3] in rowset(P1) goto P2"), /* 47 */ "Program" OpHelp(""), /* 48 */ "FkIfZero" OpHelp("if fkctr[P1]==0 goto P2"), /* 49 */ "IfPos" OpHelp("if r[P1]>0 then r[P1]-=P3, goto P2"), /* 50 */ "IsNull" OpHelp("if r[P1]==NULL goto P2"), /* 51 */ "NotNull" OpHelp("if r[P1]!=NULL goto P2"), /* 52 */ "Ne" OpHelp("IF r[P3]!=r[P1]"), /* 53 */ "Eq" OpHelp("IF r[P3]==r[P1]"), /* 54 */ "Gt" OpHelp("IF r[P3]>r[P1]"), /* 55 */ "Le" OpHelp("IF r[P3]<=r[P1]"), /* 56 */ "Lt" OpHelp("IF r[P3]=r[P1]"), /* 58 */ "ElseEq" OpHelp(""), /* 59 */ "IfNotZero" OpHelp("if r[P1]!=0 then r[P1]--, goto P2"), /* 60 */ "DecrJumpZero" OpHelp("if (--r[P1])==0 goto P2"), /* 61 */ "IncrVacuum" OpHelp(""), /* 62 */ "VNext" OpHelp(""), /* 63 */ "Filter" OpHelp("if key(P3@P4) not in filter(P1) goto P2"), /* 64 */ "Init" OpHelp("Start at P2"), /* 65 */ "PureFunc" OpHelp("r[P3]=func(r[P2@NP])"), /* 66 */ "Function" OpHelp("r[P3]=func(r[P2@NP])"), /* 67 */ "Return" OpHelp(""), /* 68 */ "EndCoroutine" OpHelp(""), /* 69 */ "HaltIfNull" OpHelp("if r[P3]=null halt"), /* 70 */ "Halt" OpHelp(""), /* 71 */ "Integer" OpHelp("r[P2]=P1"), /* 72 */ "Int64" OpHelp("r[P2]=P4"), /* 73 */ "String" OpHelp("r[P2]='P4' (len=P1)"), /* 74 */ "Null" OpHelp("r[P2..P3]=NULL"), /* 75 */ "SoftNull" OpHelp("r[P1]=NULL"), /* 76 */ "Blob" OpHelp("r[P2]=P4 (len=P1)"), /* 77 */ "Variable" OpHelp("r[P2]=parameter(P1,P4)"), /* 78 */ "Move" OpHelp("r[P2@P3]=r[P1@P3]"), /* 79 */ "Copy" OpHelp("r[P2@P3+1]=r[P1@P3+1]"), /* 80 */ "SCopy" OpHelp("r[P2]=r[P1]"), /* 81 */ "IntCopy" OpHelp("r[P2]=r[P1]"), /* 82 */ "FkCheck" OpHelp(""), /* 83 */ "ResultRow" OpHelp("output=r[P1@P2]"), /* 84 */ "CollSeq" OpHelp(""), /* 85 */ "AddImm" OpHelp("r[P1]=r[P1]+P2"), /* 86 */ "RealAffinity" OpHelp(""), /* 87 */ "Cast" OpHelp("affinity(r[P1])"), /* 88 */ "Permutation" OpHelp(""), /* 89 */ "Compare" OpHelp("r[P1@P3] <-> r[P2@P3]"), /* 90 */ "IsTrue" OpHelp("r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4"), /* 91 */ "ZeroOrNull" OpHelp("r[P2] = 0 OR NULL"), /* 92 */ "Offset" OpHelp("r[P3] = sqlite_offset(P1)"), /* 93 */ "Column" OpHelp("r[P3]=PX"), /* 94 */ "TypeCheck" OpHelp("typecheck(r[P1@P2])"), /* 95 */ "Affinity" OpHelp("affinity(r[P1@P2])"), /* 96 */ "MakeRecord" OpHelp("r[P3]=mkrec(r[P1@P2])"), /* 97 */ "Count" OpHelp("r[P2]=count()"), /* 98 */ "ReadCookie" OpHelp(""), /* 99 */ "SetCookie" OpHelp(""), /* 100 */ "ReopenIdx" OpHelp("root=P2 iDb=P3"), /* 101 */ "OpenRead" OpHelp("root=P2 iDb=P3"), /* 102 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"), /* 103 */ "BitOr" OpHelp("r[P3]=r[P1]|r[P2]"), /* 104 */ "ShiftLeft" OpHelp("r[P3]=r[P2]<>r[P1]"), /* 106 */ "Add" OpHelp("r[P3]=r[P1]+r[P2]"), /* 107 */ "Subtract" OpHelp("r[P3]=r[P2]-r[P1]"), /* 108 */ "Multiply" OpHelp("r[P3]=r[P1]*r[P2]"), /* 109 */ "Divide" OpHelp("r[P3]=r[P2]/r[P1]"), /* 110 */ "Remainder" OpHelp("r[P3]=r[P2]%r[P1]"), /* 111 */ "Concat" OpHelp("r[P3]=r[P2]+r[P1]"), /* 112 */ "OpenWrite" OpHelp("root=P2 iDb=P3"), /* 113 */ "OpenDup" OpHelp(""), /* 114 */ "BitNot" OpHelp("r[P2]= ~r[P1]"), /* 115 */ "OpenAutoindex" OpHelp("nColumn=P2"), /* 116 */ "OpenEphemeral" OpHelp("nColumn=P2"), /* 117 */ "String8" OpHelp("r[P2]='P4'"), /* 118 */ "SorterOpen" OpHelp(""), /* 119 */ "SequenceTest" OpHelp("if( cursor[P1].ctr++ ) pc = P2"), /* 120 */ "OpenPseudo" OpHelp("P3 columns in r[P2]"), /* 121 */ "Close" OpHelp(""), /* 122 */ "ColumnsUsed" OpHelp(""), /* 123 */ "SeekScan" OpHelp("Scan-ahead up to P1 rows"), /* 124 */ "SeekHit" OpHelp("set P2<=seekHit<=P3"), /* 125 */ "Sequence" OpHelp("r[P2]=cursor[P1].ctr++"), /* 126 */ "NewRowid" OpHelp("r[P2]=rowid"), /* 127 */ "Insert" OpHelp("intkey=r[P3] data=r[P2]"), /* 128 */ "RowCell" OpHelp(""), /* 129 */ "Delete" OpHelp(""), /* 130 */ "ResetCount" OpHelp(""), /* 131 */ "SorterCompare" OpHelp("if key(P1)!=trim(r[P3],P4) goto P2"), /* 132 */ "SorterData" OpHelp("r[P2]=data"), /* 133 */ "RowData" OpHelp("r[P2]=data"), /* 134 */ "Rowid" OpHelp("r[P2]=rowid"), /* 135 */ "NullRow" OpHelp(""), /* 136 */ "SeekEnd" OpHelp(""), /* 137 */ "IdxInsert" OpHelp("key=r[P2]"), /* 138 */ "SorterInsert" OpHelp("key=r[P2]"), /* 139 */ "IdxDelete" OpHelp("key=r[P2@P3]"), /* 140 */ "DeferredSeek" OpHelp("Move P3 to P1.rowid if needed"), /* 141 */ "IdxRowid" OpHelp("r[P2]=rowid"), /* 142 */ "FinishSeek" OpHelp(""), /* 143 */ "Destroy" OpHelp(""), /* 144 */ "Clear" OpHelp(""), /* 145 */ "ResetSorter" OpHelp(""), /* 146 */ "CreateBtree" OpHelp("r[P2]=root iDb=P1 flags=P3"), /* 147 */ "SqlExec" OpHelp(""), /* 148 */ "ParseSchema" OpHelp(""), /* 149 */ "LoadAnalysis" OpHelp(""), /* 150 */ "DropTable" OpHelp(""), /* 151 */ "DropIndex" OpHelp(""), /* 152 */ "DropTrigger" OpHelp(""), /* 153 */ "Real" OpHelp("r[P2]=P4"), /* 154 */ "IntegrityCk" OpHelp(""), /* 155 */ "RowSetAdd" OpHelp("rowset(P1)=r[P2]"), /* 156 */ "Param" OpHelp(""), /* 157 */ "FkCounter" OpHelp("fkctr[P1]+=P2"), /* 158 */ "MemMax" OpHelp("r[P1]=max(r[P1],r[P2])"), /* 159 */ "OffsetLimit" OpHelp("if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1)"), /* 160 */ "AggInverse" OpHelp("accum=r[P3] inverse(r[P2@P5])"), /* 161 */ "AggStep" OpHelp("accum=r[P3] step(r[P2@P5])"), /* 162 */ "AggStep1" OpHelp("accum=r[P3] step(r[P2@P5])"), /* 163 */ "AggValue" OpHelp("r[P3]=value N=P2"), /* 164 */ "AggFinal" OpHelp("accum=r[P1] N=P2"), /* 165 */ "Expire" OpHelp(""), /* 166 */ "CursorLock" OpHelp(""), /* 167 */ "CursorUnlock" OpHelp(""), /* 168 */ "TableLock" OpHelp("iDb=P1 root=P2 write=P3"), /* 169 */ "VBegin" OpHelp(""), /* 170 */ "VCreate" OpHelp(""), /* 171 */ "VDestroy" OpHelp(""), /* 172 */ "VOpen" OpHelp(""), /* 173 */ "VInitIn" OpHelp("r[P2]=ValueList(P1,P3)"), /* 174 */ "VColumn" OpHelp("r[P3]=vcolumn(P2)"), /* 175 */ "VRename" OpHelp(""), /* 176 */ "Pagecount" OpHelp(""), /* 177 */ "MaxPgcnt" OpHelp(""), /* 178 */ "FilterAdd" OpHelp("filter(P1) += key(P3@P4)"), /* 179 */ "Trace" OpHelp(""), /* 180 */ "CursorHint" OpHelp(""), /* 181 */ "ReleaseReg" OpHelp("release r[P1@P2] mask P3"), /* 182 */ "Noop" OpHelp(""), /* 183 */ "Explain" OpHelp(""), /* 184 */ "Abortable" OpHelp(""), }; return azName[i]; } #endif /************** End of opcodes.c *********************************************/ /************** Begin file os_unix.c *****************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains the VFS implementation for unix-like operating systems ** include Linux, MacOSX, *BSD, QNX, VxWorks, AIX, HPUX, and others. ** ** There are actually several different VFS implementations in this file. ** The differences are in the way that file locking is done. The default ** implementation uses Posix Advisory Locks. Alternative implementations ** use flock(), dot-files, various proprietary locking schemas, or simply ** skip locking all together. ** ** This source file is organized into divisions where the logic for various ** subfunctions is contained within the appropriate division. PLEASE ** KEEP THE STRUCTURE OF THIS FILE INTACT. New code should be placed ** in the correct division and should be clearly labeled. ** ** The layout of divisions is as follows: ** ** * General-purpose declarations and utility functions. ** * Unique file ID logic used by VxWorks. ** * Various locking primitive implementations (all except proxy locking): ** + for Posix Advisory Locks ** + for no-op locks ** + for dot-file locks ** + for flock() locking ** + for named semaphore locks (VxWorks only) ** + for AFP filesystem locks (MacOSX only) ** * sqlite3_file methods not associated with locking. ** * Definitions of sqlite3_io_methods objects for all locking ** methods plus "finder" functions for each locking method. ** * sqlite3_vfs method implementations. ** * Locking primitives for the proxy uber-locking-method. (MacOSX only) ** * Definitions of sqlite3_vfs objects for all locking methods ** plus implementations of sqlite3_os_init() and sqlite3_os_end(). */ /* #include "sqliteInt.h" */ #if SQLITE_OS_UNIX /* This file is used on unix only */ /* ** There are various methods for file locking used for concurrency ** control: ** ** 1. POSIX locking (the default), ** 2. No locking, ** 3. Dot-file locking, ** 4. flock() locking, ** 5. AFP locking (OSX only), ** 6. Named POSIX semaphores (VXWorks only), ** 7. proxy locking. (OSX only) ** ** Styles 4, 5, and 7 are only available of SQLITE_ENABLE_LOCKING_STYLE ** is defined to 1. The SQLITE_ENABLE_LOCKING_STYLE also enables automatic ** selection of the appropriate locking style based on the filesystem ** where the database is located. */ #if !defined(SQLITE_ENABLE_LOCKING_STYLE) # if defined(__APPLE__) # define SQLITE_ENABLE_LOCKING_STYLE 1 # else # define SQLITE_ENABLE_LOCKING_STYLE 0 # endif #endif /* Use pread() and pwrite() if they are available */ #if defined(__APPLE__) # define HAVE_PREAD 1 # define HAVE_PWRITE 1 #endif #if defined(HAVE_PREAD64) && defined(HAVE_PWRITE64) # undef USE_PREAD # define USE_PREAD64 1 #elif defined(HAVE_PREAD) && defined(HAVE_PWRITE) # undef USE_PREAD64 # define USE_PREAD 1 #endif /* ** standard include files. */ #include #include #include #include #include /* #include */ #include #include #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 # include #endif #if SQLITE_ENABLE_LOCKING_STYLE /* # include */ # include # include #endif /* SQLITE_ENABLE_LOCKING_STYLE */ /* ** Try to determine if gethostuuid() is available based on standard ** macros. This might sometimes compute the wrong value for some ** obscure platforms. For those cases, simply compile with one of ** the following: ** ** -DHAVE_GETHOSTUUID=0 ** -DHAVE_GETHOSTUUID=1 ** ** None if this matters except when building on Apple products with ** -DSQLITE_ENABLE_LOCKING_STYLE. */ #ifndef HAVE_GETHOSTUUID # define HAVE_GETHOSTUUID 0 # if defined(__APPLE__) && ((__MAC_OS_X_VERSION_MIN_REQUIRED > 1050) || \ (__IPHONE_OS_VERSION_MIN_REQUIRED > 2000)) # if (!defined(TARGET_OS_EMBEDDED) || (TARGET_OS_EMBEDDED==0)) \ && (!defined(TARGET_IPHONE_SIMULATOR) || (TARGET_IPHONE_SIMULATOR==0))\ && (!defined(TARGET_OS_MACCATALYST) || (TARGET_OS_MACCATALYST==0)) # undef HAVE_GETHOSTUUID # define HAVE_GETHOSTUUID 1 # else # warning "gethostuuid() is disabled." # endif # endif #endif #if OS_VXWORKS /* # include */ # include # include #endif /* OS_VXWORKS */ #if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE # include #endif #ifdef HAVE_UTIME # include #endif /* ** Allowed values of unixFile.fsFlags */ #define SQLITE_FSFLAGS_IS_MSDOS 0x1 /* ** If we are to be thread-safe, include the pthreads header. */ #if SQLITE_THREADSAFE /* # include */ #endif /* ** Default permissions when creating a new file */ #ifndef SQLITE_DEFAULT_FILE_PERMISSIONS # define SQLITE_DEFAULT_FILE_PERMISSIONS 0644 #endif /* ** Default permissions when creating auto proxy dir */ #ifndef SQLITE_DEFAULT_PROXYDIR_PERMISSIONS # define SQLITE_DEFAULT_PROXYDIR_PERMISSIONS 0755 #endif /* ** Maximum supported path-length. */ #define MAX_PATHNAME 512 /* ** Maximum supported symbolic links */ #define SQLITE_MAX_SYMLINKS 100 /* Always cast the getpid() return type for compatibility with ** kernel modules in VxWorks. */ #define osGetpid(X) (pid_t)getpid() /* ** Only set the lastErrno if the error code is a real error and not ** a normal expected return code of SQLITE_BUSY or SQLITE_OK */ #define IS_LOCK_ERROR(x) ((x != SQLITE_OK) && (x != SQLITE_BUSY)) /* Forward references */ typedef struct unixShm unixShm; /* Connection shared memory */ typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef struct unixInodeInfo unixInodeInfo; /* An i-node */ typedef struct UnixUnusedFd UnixUnusedFd; /* An unused file descriptor */ /* ** Sometimes, after a file handle is closed by SQLite, the file descriptor ** cannot be closed immediately. In these cases, instances of the following ** structure are used to store the file descriptor while waiting for an ** opportunity to either close or reuse it. */ struct UnixUnusedFd { int fd; /* File descriptor to close */ int flags; /* Flags this file descriptor was opened with */ UnixUnusedFd *pNext; /* Next unused file descriptor on same file */ }; /* ** The unixFile structure is subclass of sqlite3_file specific to the unix ** VFS implementations. */ typedef struct unixFile unixFile; struct unixFile { sqlite3_io_methods const *pMethod; /* Always the first entry */ sqlite3_vfs *pVfs; /* The VFS that created this unixFile */ unixInodeInfo *pInode; /* Info about locks on this inode */ int h; /* The file descriptor */ unsigned char eFileLock; /* The type of lock held on this fd */ unsigned short int ctrlFlags; /* Behavioral bits. UNIXFILE_* flags */ int lastErrno; /* The unix errno from last I/O error */ void *lockingContext; /* Locking style specific state */ UnixUnusedFd *pPreallocatedUnused; /* Pre-allocated UnixUnusedFd */ const char *zPath; /* Name of the file */ unixShm *pShm; /* Shared memory segment information */ int szChunk; /* Configured by FCNTL_CHUNK_SIZE */ #if SQLITE_MAX_MMAP_SIZE>0 int nFetchOut; /* Number of outstanding xFetch refs */ sqlite3_int64 mmapSize; /* Usable size of mapping at pMapRegion */ sqlite3_int64 mmapSizeActual; /* Actual size of mapping at pMapRegion */ sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ void *pMapRegion; /* Memory mapped region */ #endif int sectorSize; /* Device sector size */ int deviceCharacteristics; /* Precomputed device characteristics */ #if SQLITE_ENABLE_LOCKING_STYLE int openFlags; /* The flags specified at open() */ #endif #if SQLITE_ENABLE_LOCKING_STYLE || defined(__APPLE__) unsigned fsFlags; /* cached details from statfs() */ #endif #ifdef SQLITE_ENABLE_SETLK_TIMEOUT unsigned iBusyTimeout; /* Wait this many millisec on locks */ #endif #if OS_VXWORKS struct vxworksFileId *pId; /* Unique file ID */ #endif #ifdef SQLITE_DEBUG /* The next group of variables are used to track whether or not the ** transaction counter in bytes 24-27 of database files are updated ** whenever any part of the database changes. An assertion fault will ** occur if a file is updated without also updating the transaction ** counter. This test is made to avoid new problems similar to the ** one described by ticket #3584. */ unsigned char transCntrChng; /* True if the transaction counter changed */ unsigned char dbUpdate; /* True if any part of database file changed */ unsigned char inNormalWrite; /* True if in a normal write operation */ #endif #ifdef SQLITE_TEST /* In test mode, increase the size of this structure a bit so that ** it is larger than the struct CrashFile defined in test6.c. */ char aPadding[32]; #endif }; /* This variable holds the process id (pid) from when the xRandomness() ** method was called. If xOpen() is called from a different process id, ** indicating that a fork() has occurred, the PRNG will be reset. */ static pid_t randomnessPid = 0; /* ** Allowed values for the unixFile.ctrlFlags bitmask: */ #define UNIXFILE_EXCL 0x01 /* Connections from one process only */ #define UNIXFILE_RDONLY 0x02 /* Connection is read only */ #define UNIXFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ #ifndef SQLITE_DISABLE_DIRSYNC # define UNIXFILE_DIRSYNC 0x08 /* Directory sync needed */ #else # define UNIXFILE_DIRSYNC 0x00 #endif #define UNIXFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */ #define UNIXFILE_DELETE 0x20 /* Delete on close */ #define UNIXFILE_URI 0x40 /* Filename might have query parameters */ #define UNIXFILE_NOLOCK 0x80 /* Do no file locking */ /* ** Include code that is common to all os_*.c files */ /* #include "os_common.h" */ /* ** Define various macros that are missing from some systems. */ #ifndef O_LARGEFILE # define O_LARGEFILE 0 #endif #ifdef SQLITE_DISABLE_LFS # undef O_LARGEFILE # define O_LARGEFILE 0 #endif #ifndef O_NOFOLLOW # define O_NOFOLLOW 0 #endif #ifndef O_BINARY # define O_BINARY 0 #endif /* ** The threadid macro resolves to the thread-id or to 0. Used for ** testing and debugging only. */ #if SQLITE_THREADSAFE #define threadid pthread_self() #else #define threadid 0 #endif /* ** HAVE_MREMAP defaults to true on Linux and false everywhere else. */ #if !defined(HAVE_MREMAP) # if defined(__linux__) && defined(_GNU_SOURCE) # define HAVE_MREMAP 1 # else # define HAVE_MREMAP 0 # endif #endif /* ** Explicitly call the 64-bit version of lseek() on Android. Otherwise, lseek() ** is the 32-bit version, even if _FILE_OFFSET_BITS=64 is defined. */ #ifdef __ANDROID__ # define lseek lseek64 #endif #ifdef __linux__ /* ** Linux-specific IOCTL magic numbers used for controlling F2FS */ #define F2FS_IOCTL_MAGIC 0xf5 #define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1) #define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2) #define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3) #define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5) #define F2FS_IOC_GET_FEATURES _IOR(F2FS_IOCTL_MAGIC, 12, u32) #define F2FS_FEATURE_ATOMIC_WRITE 0x0004 #endif /* __linux__ */ /* ** Different Unix systems declare open() in different ways. Same use ** open(const char*,int,mode_t). Others use open(const char*,int,...). ** The difference is important when using a pointer to the function. ** ** The safest way to deal with the problem is to always use this wrapper ** which always has the same well-defined interface. */ static int posixOpen(const char *zFile, int flags, int mode){ return open(zFile, flags, mode); } /* Forward reference */ static int openDirectory(const char*, int*); static int unixGetpagesize(void); /* ** Many system calls are accessed through pointer-to-functions so that ** they may be overridden at runtime to facilitate fault injection during ** testing and sandboxing. The following array holds the names and pointers ** to all overrideable system calls. */ static struct unix_syscall { const char *zName; /* Name of the system call */ sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ sqlite3_syscall_ptr pDefault; /* Default value */ } aSyscall[] = { { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, #define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent) { "close", (sqlite3_syscall_ptr)close, 0 }, #define osClose ((int(*)(int))aSyscall[1].pCurrent) { "access", (sqlite3_syscall_ptr)access, 0 }, #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent) { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent) { "stat", (sqlite3_syscall_ptr)stat, 0 }, #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent) /* ** The DJGPP compiler environment looks mostly like Unix, but it ** lacks the fcntl() system call. So redefine fcntl() to be something ** that always succeeds. This means that locking does not occur under ** DJGPP. But it is DOS - what did you expect? */ #ifdef __DJGPP__ { "fstat", 0, 0 }, #define osFstat(a,b,c) 0 #else { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent) #endif { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 }, #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent) { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 }, #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent) { "read", (sqlite3_syscall_ptr)read, 0 }, #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent) #if defined(USE_PREAD) || SQLITE_ENABLE_LOCKING_STYLE { "pread", (sqlite3_syscall_ptr)pread, 0 }, #else { "pread", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent) #if defined(USE_PREAD64) { "pread64", (sqlite3_syscall_ptr)pread64, 0 }, #else { "pread64", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent) { "write", (sqlite3_syscall_ptr)write, 0 }, #define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent) #if defined(USE_PREAD) || SQLITE_ENABLE_LOCKING_STYLE { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 }, #else { "pwrite", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPwrite ((ssize_t(*)(int,const void*,size_t,off_t))\ aSyscall[12].pCurrent) #if defined(USE_PREAD64) { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 }, #else { "pwrite64", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPwrite64 ((ssize_t(*)(int,const void*,size_t,off64_t))\ aSyscall[13].pCurrent) { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 }, #define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent) #if defined(HAVE_POSIX_FALLOCATE) && HAVE_POSIX_FALLOCATE { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 }, #else { "fallocate", (sqlite3_syscall_ptr)0, 0 }, #endif #define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent) { "unlink", (sqlite3_syscall_ptr)unlink, 0 }, #define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent) { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 }, #define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent) { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 }, #define osMkdir ((int(*)(const char*,mode_t))aSyscall[18].pCurrent) { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 }, #define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent) #if defined(HAVE_FCHOWN) { "fchown", (sqlite3_syscall_ptr)fchown, 0 }, #else { "fchown", (sqlite3_syscall_ptr)0, 0 }, #endif #define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent) #if defined(HAVE_FCHOWN) { "geteuid", (sqlite3_syscall_ptr)geteuid, 0 }, #else { "geteuid", (sqlite3_syscall_ptr)0, 0 }, #endif #define osGeteuid ((uid_t(*)(void))aSyscall[21].pCurrent) #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "mmap", (sqlite3_syscall_ptr)mmap, 0 }, #else { "mmap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[22].pCurrent) #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "munmap", (sqlite3_syscall_ptr)munmap, 0 }, #else { "munmap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMunmap ((int(*)(void*,size_t))aSyscall[23].pCurrent) #if HAVE_MREMAP && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) { "mremap", (sqlite3_syscall_ptr)mremap, 0 }, #else { "mremap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[24].pCurrent) #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "getpagesize", (sqlite3_syscall_ptr)unixGetpagesize, 0 }, #else { "getpagesize", (sqlite3_syscall_ptr)0, 0 }, #endif #define osGetpagesize ((int(*)(void))aSyscall[25].pCurrent) #if defined(HAVE_READLINK) { "readlink", (sqlite3_syscall_ptr)readlink, 0 }, #else { "readlink", (sqlite3_syscall_ptr)0, 0 }, #endif #define osReadlink ((ssize_t(*)(const char*,char*,size_t))aSyscall[26].pCurrent) #if defined(HAVE_LSTAT) { "lstat", (sqlite3_syscall_ptr)lstat, 0 }, #else { "lstat", (sqlite3_syscall_ptr)0, 0 }, #endif #define osLstat ((int(*)(const char*,struct stat*))aSyscall[27].pCurrent) #if defined(__linux__) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) # ifdef __ANDROID__ { "ioctl", (sqlite3_syscall_ptr)(int(*)(int, int, ...))ioctl, 0 }, #define osIoctl ((int(*)(int,int,...))aSyscall[28].pCurrent) # else { "ioctl", (sqlite3_syscall_ptr)ioctl, 0 }, #define osIoctl ((int(*)(int,unsigned long,...))aSyscall[28].pCurrent) # endif #else { "ioctl", (sqlite3_syscall_ptr)0, 0 }, #endif }; /* End of the overrideable system calls */ /* ** On some systems, calls to fchown() will trigger a message in a security ** log if they come from non-root processes. So avoid calling fchown() if ** we are not running as root. */ static int robustFchown(int fd, uid_t uid, gid_t gid){ #if defined(HAVE_FCHOWN) return osGeteuid() ? 0 : osFchown(fd,uid,gid); #else return 0; #endif } /* ** This is the xSetSystemCall() method of sqlite3_vfs for all of the ** "unix" VFSes. Return SQLITE_OK opon successfully updating the ** system call pointer, or SQLITE_NOTFOUND if there is no configurable ** system call named zName. */ static int unixSetSystemCall( sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ const char *zName, /* Name of system call to override */ sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */ ){ unsigned int i; int rc = SQLITE_NOTFOUND; UNUSED_PARAMETER(pNotUsed); if( zName==0 ){ /* If no zName is given, restore all system calls to their default ** settings and return NULL */ rc = SQLITE_OK; for(i=0; i=SQLITE_MINIMUM_FILE_DESCRIPTOR ) break; osClose(fd); sqlite3_log(SQLITE_WARNING, "attempt to open \"%s\" as file descriptor %d", z, fd); fd = -1; if( osOpen("/dev/null", O_RDONLY, m)<0 ) break; } if( fd>=0 ){ if( m!=0 ){ struct stat statbuf; if( osFstat(fd, &statbuf)==0 && statbuf.st_size==0 && (statbuf.st_mode&0777)!=m ){ osFchmod(fd, m); } } #if defined(FD_CLOEXEC) && (!defined(O_CLOEXEC) || O_CLOEXEC==0) osFcntl(fd, F_SETFD, osFcntl(fd, F_GETFD, 0) | FD_CLOEXEC); #endif } return fd; } /* ** Helper functions to obtain and relinquish the global mutex. The ** global mutex is used to protect the unixInodeInfo and ** vxworksFileId objects used by this file, all of which may be ** shared by multiple threads. ** ** Function unixMutexHeld() is used to assert() that the global mutex ** is held when required. This function is only used as part of assert() ** statements. e.g. ** ** unixEnterMutex() ** assert( unixMutexHeld() ); ** unixEnterLeave() ** ** To prevent deadlock, the global unixBigLock must must be acquired ** before the unixInodeInfo.pLockMutex mutex, if both are held. It is ** OK to get the pLockMutex without holding unixBigLock first, but if ** that happens, the unixBigLock mutex must not be acquired until after ** pLockMutex is released. ** ** OK: enter(unixBigLock), enter(pLockInfo) ** OK: enter(unixBigLock) ** OK: enter(pLockInfo) ** ERROR: enter(pLockInfo), enter(unixBigLock) */ static sqlite3_mutex *unixBigLock = 0; static void unixEnterMutex(void){ assert( sqlite3_mutex_notheld(unixBigLock) ); /* Not a recursive mutex */ sqlite3_mutex_enter(unixBigLock); } static void unixLeaveMutex(void){ assert( sqlite3_mutex_held(unixBigLock) ); sqlite3_mutex_leave(unixBigLock); } #ifdef SQLITE_DEBUG static int unixMutexHeld(void) { return sqlite3_mutex_held(unixBigLock); } #endif #ifdef SQLITE_HAVE_OS_TRACE /* ** Helper function for printing out trace information from debugging ** binaries. This returns the string representation of the supplied ** integer lock-type. */ static const char *azFileLock(int eFileLock){ switch( eFileLock ){ case NO_LOCK: return "NONE"; case SHARED_LOCK: return "SHARED"; case RESERVED_LOCK: return "RESERVED"; case PENDING_LOCK: return "PENDING"; case EXCLUSIVE_LOCK: return "EXCLUSIVE"; } return "ERROR"; } #endif #ifdef SQLITE_LOCK_TRACE /* ** Print out information about all locking operations. ** ** This routine is used for troubleshooting locks on multithreaded ** platforms. Enable by compiling with the -DSQLITE_LOCK_TRACE ** command-line option on the compiler. This code is normally ** turned off. */ static int lockTrace(int fd, int op, struct flock *p){ char *zOpName, *zType; int s; int savedErrno; if( op==F_GETLK ){ zOpName = "GETLK"; }else if( op==F_SETLK ){ zOpName = "SETLK"; }else{ s = osFcntl(fd, op, p); sqlite3DebugPrintf("fcntl unknown %d %d %d\n", fd, op, s); return s; } if( p->l_type==F_RDLCK ){ zType = "RDLCK"; }else if( p->l_type==F_WRLCK ){ zType = "WRLCK"; }else if( p->l_type==F_UNLCK ){ zType = "UNLCK"; }else{ assert( 0 ); } assert( p->l_whence==SEEK_SET ); s = osFcntl(fd, op, p); savedErrno = errno; sqlite3DebugPrintf("fcntl %d %d %s %s %d %d %d %d\n", threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len, (int)p->l_pid, s); if( s==(-1) && op==F_SETLK && (p->l_type==F_RDLCK || p->l_type==F_WRLCK) ){ struct flock l2; l2 = *p; osFcntl(fd, F_GETLK, &l2); if( l2.l_type==F_RDLCK ){ zType = "RDLCK"; }else if( l2.l_type==F_WRLCK ){ zType = "WRLCK"; }else if( l2.l_type==F_UNLCK ){ zType = "UNLCK"; }else{ assert( 0 ); } sqlite3DebugPrintf("fcntl-failure-reason: %s %d %d %d\n", zType, (int)l2.l_start, (int)l2.l_len, (int)l2.l_pid); } errno = savedErrno; return s; } #undef osFcntl #define osFcntl lockTrace #endif /* SQLITE_LOCK_TRACE */ /* ** Retry ftruncate() calls that fail due to EINTR ** ** All calls to ftruncate() within this file should be made through ** this wrapper. On the Android platform, bypassing the logic below ** could lead to a corrupt database. */ static int robust_ftruncate(int h, sqlite3_int64 sz){ int rc; #ifdef __ANDROID__ /* On Android, ftruncate() always uses 32-bit offsets, even if ** _FILE_OFFSET_BITS=64 is defined. This means it is unsafe to attempt to ** truncate a file to any size larger than 2GiB. Silently ignore any ** such attempts. */ if( sz>(sqlite3_int64)0x7FFFFFFF ){ rc = SQLITE_OK; }else #endif do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR ); return rc; } /* ** This routine translates a standard POSIX errno code into something ** useful to the clients of the sqlite3 functions. Specifically, it is ** intended to translate a variety of "try again" errors into SQLITE_BUSY ** and a variety of "please close the file descriptor NOW" errors into ** SQLITE_IOERR ** ** Errors during initialization of locks, or file system support for locks, ** should handle ENOLCK, ENOTSUP, EOPNOTSUPP separately. */ static int sqliteErrorFromPosixError(int posixError, int sqliteIOErr) { assert( (sqliteIOErr == SQLITE_IOERR_LOCK) || (sqliteIOErr == SQLITE_IOERR_UNLOCK) || (sqliteIOErr == SQLITE_IOERR_RDLOCK) || (sqliteIOErr == SQLITE_IOERR_CHECKRESERVEDLOCK) ); switch (posixError) { case EACCES: case EAGAIN: case ETIMEDOUT: case EBUSY: case EINTR: case ENOLCK: /* random NFS retry error, unless during file system support * introspection, in which it actually means what it says */ return SQLITE_BUSY; case EPERM: return SQLITE_PERM; default: return sqliteIOErr; } } /****************************************************************************** ****************** Begin Unique File ID Utility Used By VxWorks *************** ** ** On most versions of unix, we can get a unique ID for a file by concatenating ** the device number and the inode number. But this does not work on VxWorks. ** On VxWorks, a unique file id must be based on the canonical filename. ** ** A pointer to an instance of the following structure can be used as a ** unique file ID in VxWorks. Each instance of this structure contains ** a copy of the canonical filename. There is also a reference count. ** The structure is reclaimed when the number of pointers to it drops to ** zero. ** ** There are never very many files open at one time and lookups are not ** a performance-critical path, so it is sufficient to put these ** structures on a linked list. */ struct vxworksFileId { struct vxworksFileId *pNext; /* Next in a list of them all */ int nRef; /* Number of references to this one */ int nName; /* Length of the zCanonicalName[] string */ char *zCanonicalName; /* Canonical filename */ }; #if OS_VXWORKS /* ** All unique filenames are held on a linked list headed by this ** variable: */ static struct vxworksFileId *vxworksFileList = 0; /* ** Simplify a filename into its canonical form ** by making the following changes: ** ** * removing any trailing and duplicate / ** * convert /./ into just / ** * convert /A/../ where A is any simple name into just / ** ** Changes are made in-place. Return the new name length. ** ** The original filename is in z[0..n-1]. Return the number of ** characters in the simplified name. */ static int vxworksSimplifyName(char *z, int n){ int i, j; while( n>1 && z[n-1]=='/' ){ n--; } for(i=j=0; i0 && z[j-1]!='/' ){ j--; } if( j>0 ){ j--; } i += 2; continue; } } z[j++] = z[i]; } z[j] = 0; return j; } /* ** Find a unique file ID for the given absolute pathname. Return ** a pointer to the vxworksFileId object. This pointer is the unique ** file ID. ** ** The nRef field of the vxworksFileId object is incremented before ** the object is returned. A new vxworksFileId object is created ** and added to the global list if necessary. ** ** If a memory allocation error occurs, return NULL. */ static struct vxworksFileId *vxworksFindFileId(const char *zAbsoluteName){ struct vxworksFileId *pNew; /* search key and new file ID */ struct vxworksFileId *pCandidate; /* For looping over existing file IDs */ int n; /* Length of zAbsoluteName string */ assert( zAbsoluteName[0]=='/' ); n = (int)strlen(zAbsoluteName); pNew = sqlite3_malloc64( sizeof(*pNew) + (n+1) ); if( pNew==0 ) return 0; pNew->zCanonicalName = (char*)&pNew[1]; memcpy(pNew->zCanonicalName, zAbsoluteName, n+1); n = vxworksSimplifyName(pNew->zCanonicalName, n); /* Search for an existing entry that matching the canonical name. ** If found, increment the reference count and return a pointer to ** the existing file ID. */ unixEnterMutex(); for(pCandidate=vxworksFileList; pCandidate; pCandidate=pCandidate->pNext){ if( pCandidate->nName==n && memcmp(pCandidate->zCanonicalName, pNew->zCanonicalName, n)==0 ){ sqlite3_free(pNew); pCandidate->nRef++; unixLeaveMutex(); return pCandidate; } } /* No match was found. We will make a new file ID */ pNew->nRef = 1; pNew->nName = n; pNew->pNext = vxworksFileList; vxworksFileList = pNew; unixLeaveMutex(); return pNew; } /* ** Decrement the reference count on a vxworksFileId object. Free ** the object when the reference count reaches zero. */ static void vxworksReleaseFileId(struct vxworksFileId *pId){ unixEnterMutex(); assert( pId->nRef>0 ); pId->nRef--; if( pId->nRef==0 ){ struct vxworksFileId **pp; for(pp=&vxworksFileList; *pp && *pp!=pId; pp = &((*pp)->pNext)){} assert( *pp==pId ); *pp = pId->pNext; sqlite3_free(pId); } unixLeaveMutex(); } #endif /* OS_VXWORKS */ /*************** End of Unique File ID Utility Used By VxWorks **************** ******************************************************************************/ /****************************************************************************** *************************** Posix Advisory Locking **************************** ** ** POSIX advisory locks are broken by design. ANSI STD 1003.1 (1996) ** section 6.5.2.2 lines 483 through 490 specify that when a process ** sets or clears a lock, that operation overrides any prior locks set ** by the same process. It does not explicitly say so, but this implies ** that it overrides locks set by the same process using a different ** file descriptor. Consider this test case: ** ** int fd1 = open("./file1", O_RDWR|O_CREAT, 0644); ** int fd2 = open("./file2", O_RDWR|O_CREAT, 0644); ** ** Suppose ./file1 and ./file2 are really the same file (because ** one is a hard or symbolic link to the other) then if you set ** an exclusive lock on fd1, then try to get an exclusive lock ** on fd2, it works. I would have expected the second lock to ** fail since there was already a lock on the file due to fd1. ** But not so. Since both locks came from the same process, the ** second overrides the first, even though they were on different ** file descriptors opened on different file names. ** ** This means that we cannot use POSIX locks to synchronize file access ** among competing threads of the same process. POSIX locks will work fine ** to synchronize access for threads in separate processes, but not ** threads within the same process. ** ** To work around the problem, SQLite has to manage file locks internally ** on its own. Whenever a new database is opened, we have to find the ** specific inode of the database file (the inode is determined by the ** st_dev and st_ino fields of the stat structure that fstat() fills in) ** and check for locks already existing on that inode. When locks are ** created or removed, we have to look at our own internal record of the ** locks to see if another thread has previously set a lock on that same ** inode. ** ** (Aside: The use of inode numbers as unique IDs does not work on VxWorks. ** For VxWorks, we have to use the alternative unique ID system based on ** canonical filename and implemented in the previous division.) ** ** The sqlite3_file structure for POSIX is no longer just an integer file ** descriptor. It is now a structure that holds the integer file ** descriptor and a pointer to a structure that describes the internal ** locks on the corresponding inode. There is one locking structure ** per inode, so if the same inode is opened twice, both unixFile structures ** point to the same locking structure. The locking structure keeps ** a reference count (so we will know when to delete it) and a "cnt" ** field that tells us its internal lock status. cnt==0 means the ** file is unlocked. cnt==-1 means the file has an exclusive lock. ** cnt>0 means there are cnt shared locks on the file. ** ** Any attempt to lock or unlock a file first checks the locking ** structure. The fcntl() system call is only invoked to set a ** POSIX lock if the internal lock structure transitions between ** a locked and an unlocked state. ** ** But wait: there are yet more problems with POSIX advisory locks. ** ** If you close a file descriptor that points to a file that has locks, ** all locks on that file that are owned by the current process are ** released. To work around this problem, each unixInodeInfo object ** maintains a count of the number of pending locks on tha inode. ** When an attempt is made to close an unixFile, if there are ** other unixFile open on the same inode that are holding locks, the call ** to close() the file descriptor is deferred until all of the locks clear. ** The unixInodeInfo structure keeps a list of file descriptors that need to ** be closed and that list is walked (and cleared) when the last lock ** clears. ** ** Yet another problem: LinuxThreads do not play well with posix locks. ** ** Many older versions of linux use the LinuxThreads library which is ** not posix compliant. Under LinuxThreads, a lock created by thread ** A cannot be modified or overridden by a different thread B. ** Only thread A can modify the lock. Locking behavior is correct ** if the appliation uses the newer Native Posix Thread Library (NPTL) ** on linux - with NPTL a lock created by thread A can override locks ** in thread B. But there is no way to know at compile-time which ** threading library is being used. So there is no way to know at ** compile-time whether or not thread A can override locks on thread B. ** One has to do a run-time check to discover the behavior of the ** current process. ** ** SQLite used to support LinuxThreads. But support for LinuxThreads ** was dropped beginning with version 3.7.0. SQLite will still work with ** LinuxThreads provided that (1) there is no more than one connection ** per database file in the same process and (2) database connections ** do not move across threads. */ /* ** An instance of the following structure serves as the key used ** to locate a particular unixInodeInfo object. */ struct unixFileId { dev_t dev; /* Device number */ #if OS_VXWORKS struct vxworksFileId *pId; /* Unique file ID for vxworks. */ #else /* We are told that some versions of Android contain a bug that ** sizes ino_t at only 32-bits instead of 64-bits. (See ** https://android-review.googlesource.com/#/c/115351/3/dist/sqlite3.c) ** To work around this, always allocate 64-bits for the inode number. ** On small machines that only have 32-bit inodes, this wastes 4 bytes, ** but that should not be a big deal. */ /* WAS: ino_t ino; */ u64 ino; /* Inode number */ #endif }; /* ** An instance of the following structure is allocated for each open ** inode. ** ** A single inode can have multiple file descriptors, so each unixFile ** structure contains a pointer to an instance of this object and this ** object keeps a count of the number of unixFile pointing to it. ** ** Mutex rules: ** ** (1) Only the pLockMutex mutex must be held in order to read or write ** any of the locking fields: ** nShared, nLock, eFileLock, bProcessLock, pUnused ** ** (2) When nRef>0, then the following fields are unchanging and can ** be read (but not written) without holding any mutex: ** fileId, pLockMutex ** ** (3) With the exceptions above, all the fields may only be read ** or written while holding the global unixBigLock mutex. ** ** Deadlock prevention: The global unixBigLock mutex may not ** be acquired while holding the pLockMutex mutex. If both unixBigLock ** and pLockMutex are needed, then unixBigLock must be acquired first. */ struct unixInodeInfo { struct unixFileId fileId; /* The lookup key */ sqlite3_mutex *pLockMutex; /* Hold this mutex for... */ int nShared; /* Number of SHARED locks held */ int nLock; /* Number of outstanding file locks */ unsigned char eFileLock; /* One of SHARED_LOCK, RESERVED_LOCK etc. */ unsigned char bProcessLock; /* An exclusive process lock is held */ UnixUnusedFd *pUnused; /* Unused file descriptors to close */ int nRef; /* Number of pointers to this structure */ unixShmNode *pShmNode; /* Shared memory associated with this inode */ unixInodeInfo *pNext; /* List of all unixInodeInfo objects */ unixInodeInfo *pPrev; /* .... doubly linked */ #if SQLITE_ENABLE_LOCKING_STYLE unsigned long long sharedByte; /* for AFP simulated shared lock */ #endif #if OS_VXWORKS sem_t *pSem; /* Named POSIX semaphore */ char aSemName[MAX_PATHNAME+2]; /* Name of that semaphore */ #endif }; /* ** A lists of all unixInodeInfo objects. ** ** Must hold unixBigLock in order to read or write this variable. */ static unixInodeInfo *inodeList = 0; /* All unixInodeInfo objects */ #ifdef SQLITE_DEBUG /* ** True if the inode mutex (on the unixFile.pFileMutex field) is held, or not. ** This routine is used only within assert() to help verify correct mutex ** usage. */ int unixFileMutexHeld(unixFile *pFile){ assert( pFile->pInode ); return sqlite3_mutex_held(pFile->pInode->pLockMutex); } int unixFileMutexNotheld(unixFile *pFile){ assert( pFile->pInode ); return sqlite3_mutex_notheld(pFile->pInode->pLockMutex); } #endif /* ** ** This function - unixLogErrorAtLine(), is only ever called via the macro ** unixLogError(). ** ** It is invoked after an error occurs in an OS function and errno has been ** set. It logs a message using sqlite3_log() containing the current value of ** errno and, if possible, the human-readable equivalent from strerror() or ** strerror_r(). ** ** The first argument passed to the macro should be the error code that ** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN). ** The two subsequent arguments should be the name of the OS function that ** failed (e.g. "unlink", "open") and the associated file-system path, ** if any. */ #define unixLogError(a,b,c) unixLogErrorAtLine(a,b,c,__LINE__) static int unixLogErrorAtLine( int errcode, /* SQLite error code */ const char *zFunc, /* Name of OS function that failed */ const char *zPath, /* File path associated with error */ int iLine /* Source line number where error occurred */ ){ char *zErr; /* Message from strerror() or equivalent */ int iErrno = errno; /* Saved syscall error number */ /* If this is not a threadsafe build (SQLITE_THREADSAFE==0), then use ** the strerror() function to obtain the human-readable error message ** equivalent to errno. Otherwise, use strerror_r(). */ #if SQLITE_THREADSAFE && defined(HAVE_STRERROR_R) char aErr[80]; memset(aErr, 0, sizeof(aErr)); zErr = aErr; /* If STRERROR_R_CHAR_P (set by autoconf scripts) or __USE_GNU is defined, ** assume that the system provides the GNU version of strerror_r() that ** returns a pointer to a buffer containing the error message. That pointer ** may point to aErr[], or it may point to some static storage somewhere. ** Otherwise, assume that the system provides the POSIX version of ** strerror_r(), which always writes an error message into aErr[]. ** ** If the code incorrectly assumes that it is the POSIX version that is ** available, the error message will often be an empty string. Not a ** huge problem. Incorrectly concluding that the GNU version is available ** could lead to a segfault though. */ #if defined(STRERROR_R_CHAR_P) || defined(__USE_GNU) zErr = # endif strerror_r(iErrno, aErr, sizeof(aErr)-1); #elif SQLITE_THREADSAFE /* This is a threadsafe build, but strerror_r() is not available. */ zErr = ""; #else /* Non-threadsafe build, use strerror(). */ zErr = strerror(iErrno); #endif if( zPath==0 ) zPath = ""; sqlite3_log(errcode, "os_unix.c:%d: (%d) %s(%s) - %s", iLine, iErrno, zFunc, zPath, zErr ); return errcode; } /* ** Close a file descriptor. ** ** We assume that close() almost always works, since it is only in a ** very sick application or on a very sick platform that it might fail. ** If it does fail, simply leak the file descriptor, but do log the ** error. ** ** Note that it is not safe to retry close() after EINTR since the ** file descriptor might have already been reused by another thread. ** So we don't even try to recover from an EINTR. Just log the error ** and move on. */ static void robust_close(unixFile *pFile, int h, int lineno){ if( osClose(h) ){ unixLogErrorAtLine(SQLITE_IOERR_CLOSE, "close", pFile ? pFile->zPath : 0, lineno); } } /* ** Set the pFile->lastErrno. Do this in a subroutine as that provides ** a convenient place to set a breakpoint. */ static void storeLastErrno(unixFile *pFile, int error){ pFile->lastErrno = error; } /* ** Close all file descriptors accumuated in the unixInodeInfo->pUnused list. */ static void closePendingFds(unixFile *pFile){ unixInodeInfo *pInode = pFile->pInode; UnixUnusedFd *p; UnixUnusedFd *pNext; assert( unixFileMutexHeld(pFile) ); for(p=pInode->pUnused; p; p=pNext){ pNext = p->pNext; robust_close(pFile, p->fd, __LINE__); sqlite3_free(p); } pInode->pUnused = 0; } /* ** Release a unixInodeInfo structure previously allocated by findInodeInfo(). ** ** The global mutex must be held when this routine is called, but the mutex ** on the inode being deleted must NOT be held. */ static void releaseInodeInfo(unixFile *pFile){ unixInodeInfo *pInode = pFile->pInode; assert( unixMutexHeld() ); assert( unixFileMutexNotheld(pFile) ); if( ALWAYS(pInode) ){ pInode->nRef--; if( pInode->nRef==0 ){ assert( pInode->pShmNode==0 ); sqlite3_mutex_enter(pInode->pLockMutex); closePendingFds(pFile); sqlite3_mutex_leave(pInode->pLockMutex); if( pInode->pPrev ){ assert( pInode->pPrev->pNext==pInode ); pInode->pPrev->pNext = pInode->pNext; }else{ assert( inodeList==pInode ); inodeList = pInode->pNext; } if( pInode->pNext ){ assert( pInode->pNext->pPrev==pInode ); pInode->pNext->pPrev = pInode->pPrev; } sqlite3_mutex_free(pInode->pLockMutex); sqlite3_free(pInode); } } } /* ** Given a file descriptor, locate the unixInodeInfo object that ** describes that file descriptor. Create a new one if necessary. The ** return value might be uninitialized if an error occurs. ** ** The global mutex must held when calling this routine. ** ** Return an appropriate error code. */ static int findInodeInfo( unixFile *pFile, /* Unix file with file desc used in the key */ unixInodeInfo **ppInode /* Return the unixInodeInfo object here */ ){ int rc; /* System call return code */ int fd; /* The file descriptor for pFile */ struct unixFileId fileId; /* Lookup key for the unixInodeInfo */ struct stat statbuf; /* Low-level file information */ unixInodeInfo *pInode = 0; /* Candidate unixInodeInfo object */ assert( unixMutexHeld() ); /* Get low-level information about the file that we can used to ** create a unique name for the file. */ fd = pFile->h; rc = osFstat(fd, &statbuf); if( rc!=0 ){ storeLastErrno(pFile, errno); #if defined(EOVERFLOW) && defined(SQLITE_DISABLE_LFS) if( pFile->lastErrno==EOVERFLOW ) return SQLITE_NOLFS; #endif return SQLITE_IOERR; } #ifdef __APPLE__ /* On OS X on an msdos filesystem, the inode number is reported ** incorrectly for zero-size files. See ticket #3260. To work ** around this problem (we consider it a bug in OS X, not SQLite) ** we always increase the file size to 1 by writing a single byte ** prior to accessing the inode number. The one byte written is ** an ASCII 'S' character which also happens to be the first byte ** in the header of every SQLite database. In this way, if there ** is a race condition such that another thread has already populated ** the first page of the database, no damage is done. */ if( statbuf.st_size==0 && (pFile->fsFlags & SQLITE_FSFLAGS_IS_MSDOS)!=0 ){ do{ rc = osWrite(fd, "S", 1); }while( rc<0 && errno==EINTR ); if( rc!=1 ){ storeLastErrno(pFile, errno); return SQLITE_IOERR; } rc = osFstat(fd, &statbuf); if( rc!=0 ){ storeLastErrno(pFile, errno); return SQLITE_IOERR; } } #endif memset(&fileId, 0, sizeof(fileId)); fileId.dev = statbuf.st_dev; #if OS_VXWORKS fileId.pId = pFile->pId; #else fileId.ino = (u64)statbuf.st_ino; #endif assert( unixMutexHeld() ); pInode = inodeList; while( pInode && memcmp(&fileId, &pInode->fileId, sizeof(fileId)) ){ pInode = pInode->pNext; } if( pInode==0 ){ pInode = sqlite3_malloc64( sizeof(*pInode) ); if( pInode==0 ){ return SQLITE_NOMEM_BKPT; } memset(pInode, 0, sizeof(*pInode)); memcpy(&pInode->fileId, &fileId, sizeof(fileId)); if( sqlite3GlobalConfig.bCoreMutex ){ pInode->pLockMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( pInode->pLockMutex==0 ){ sqlite3_free(pInode); return SQLITE_NOMEM_BKPT; } } pInode->nRef = 1; assert( unixMutexHeld() ); pInode->pNext = inodeList; pInode->pPrev = 0; if( inodeList ) inodeList->pPrev = pInode; inodeList = pInode; }else{ pInode->nRef++; } *ppInode = pInode; return SQLITE_OK; } /* ** Return TRUE if pFile has been renamed or unlinked since it was first opened. */ static int fileHasMoved(unixFile *pFile){ #if OS_VXWORKS return pFile->pInode!=0 && pFile->pId!=pFile->pInode->fileId.pId; #else struct stat buf; return pFile->pInode!=0 && (osStat(pFile->zPath, &buf)!=0 || (u64)buf.st_ino!=pFile->pInode->fileId.ino); #endif } /* ** Check a unixFile that is a database. Verify the following: ** ** (1) There is exactly one hard link on the file ** (2) The file is not a symbolic link ** (3) The file has not been renamed or unlinked ** ** Issue sqlite3_log(SQLITE_WARNING,...) messages if anything is not right. */ static void verifyDbFile(unixFile *pFile){ struct stat buf; int rc; /* These verifications occurs for the main database only */ if( pFile->ctrlFlags & UNIXFILE_NOLOCK ) return; rc = osFstat(pFile->h, &buf); if( rc!=0 ){ sqlite3_log(SQLITE_WARNING, "cannot fstat db file %s", pFile->zPath); return; } if( buf.st_nlink==0 ){ sqlite3_log(SQLITE_WARNING, "file unlinked while open: %s", pFile->zPath); return; } if( buf.st_nlink>1 ){ sqlite3_log(SQLITE_WARNING, "multiple links to file: %s", pFile->zPath); return; } if( fileHasMoved(pFile) ){ sqlite3_log(SQLITE_WARNING, "file renamed while open: %s", pFile->zPath); return; } } /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){ int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); assert( pFile->eFileLock<=SHARED_LOCK ); sqlite3_mutex_enter(pFile->pInode->pLockMutex); /* Check if a thread in this process holds such a lock */ if( pFile->pInode->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ #ifndef __DJGPP__ if( !reserved && !pFile->pInode->bProcessLock ){ struct flock lock; lock.l_whence = SEEK_SET; lock.l_start = RESERVED_BYTE; lock.l_len = 1; lock.l_type = F_WRLCK; if( osFcntl(pFile->h, F_GETLK, &lock) ){ rc = SQLITE_IOERR_CHECKRESERVEDLOCK; storeLastErrno(pFile, errno); } else if( lock.l_type!=F_UNLCK ){ reserved = 1; } } #endif sqlite3_mutex_leave(pFile->pInode->pLockMutex); OSTRACE(("TEST WR-LOCK %d %d %d (unix)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* Forward declaration*/ static int unixSleep(sqlite3_vfs*,int); /* ** Set a posix-advisory-lock. ** ** There are two versions of this routine. If compiled with ** SQLITE_ENABLE_SETLK_TIMEOUT then the routine has an extra parameter ** which is a pointer to a unixFile. If the unixFile->iBusyTimeout ** value is set, then it is the number of milliseconds to wait before ** failing the lock. The iBusyTimeout value is always reset back to ** zero on each call. ** ** If SQLITE_ENABLE_SETLK_TIMEOUT is not defined, then do a non-blocking ** attempt to set the lock. */ #ifndef SQLITE_ENABLE_SETLK_TIMEOUT # define osSetPosixAdvisoryLock(h,x,t) osFcntl(h,F_SETLK,x) #else static int osSetPosixAdvisoryLock( int h, /* The file descriptor on which to take the lock */ struct flock *pLock, /* The description of the lock */ unixFile *pFile /* Structure holding timeout value */ ){ int tm = pFile->iBusyTimeout; int rc = osFcntl(h,F_SETLK,pLock); while( rc<0 && tm>0 ){ /* On systems that support some kind of blocking file lock with a timeout, ** make appropriate changes here to invoke that blocking file lock. On ** generic posix, however, there is no such API. So we simply try the ** lock once every millisecond until either the timeout expires, or until ** the lock is obtained. */ unixSleep(0,1000); rc = osFcntl(h,F_SETLK,pLock); tm--; } return rc; } #endif /* SQLITE_ENABLE_SETLK_TIMEOUT */ /* ** Attempt to set a system-lock on the file pFile. The lock is ** described by pLock. ** ** If the pFile was opened read/write from unix-excl, then the only lock ** ever obtained is an exclusive lock, and it is obtained exactly once ** the first time any lock is attempted. All subsequent system locking ** operations become no-ops. Locking operations still happen internally, ** in order to coordinate access between separate database connections ** within this process, but all of that is handled in memory and the ** operating system does not participate. ** ** This function is a pass-through to fcntl(F_SETLK) if pFile is using ** any VFS other than "unix-excl" or if pFile is opened on "unix-excl" ** and is read-only. ** ** Zero is returned if the call completes successfully, or -1 if a call ** to fcntl() fails. In this case, errno is set appropriately (by fcntl()). */ static int unixFileLock(unixFile *pFile, struct flock *pLock){ int rc; unixInodeInfo *pInode = pFile->pInode; assert( pInode!=0 ); assert( sqlite3_mutex_held(pInode->pLockMutex) ); if( (pFile->ctrlFlags & (UNIXFILE_EXCL|UNIXFILE_RDONLY))==UNIXFILE_EXCL ){ if( pInode->bProcessLock==0 ){ struct flock lock; assert( pInode->nLock==0 ); lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; lock.l_type = F_WRLCK; rc = osSetPosixAdvisoryLock(pFile->h, &lock, pFile); if( rc<0 ) return rc; pInode->bProcessLock = 1; pInode->nLock++; }else{ rc = 0; } }else{ rc = osSetPosixAdvisoryLock(pFile->h, pLock, pFile); } return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int unixLock(sqlite3_file *id, int eFileLock){ /* The following describes the implementation of the various locks and ** lock transitions in terms of the POSIX advisory shared and exclusive ** lock primitives (called read-locks and write-locks below, to avoid ** confusion with SQLite lock names). The algorithms are complicated ** slightly in order to be compatible with Windows95 systems simultaneously ** accessing the same database file, in case that is ever required. ** ** Symbols defined in os.h indentify the 'pending byte' and the 'reserved ** byte', each single bytes at well known offsets, and the 'shared byte ** range', a range of 510 bytes at a well known offset. ** ** To obtain a SHARED lock, a read-lock is obtained on the 'pending ** byte'. If this is successful, 'shared byte range' is read-locked ** and the lock on the 'pending byte' released. (Legacy note: When ** SQLite was first developed, Windows95 systems were still very common, ** and Widnows95 lacks a shared-lock capability. So on Windows95, a ** single randomly selected by from the 'shared byte range' is locked. ** Windows95 is now pretty much extinct, but this work-around for the ** lack of shared-locks on Windows95 lives on, for backwards ** compatibility.) ** ** A process may only obtain a RESERVED lock after it has a SHARED lock. ** A RESERVED lock is implemented by grabbing a write-lock on the ** 'reserved byte'. ** ** A process may only obtain a PENDING lock after it has obtained a ** SHARED lock. A PENDING lock is implemented by obtaining a write-lock ** on the 'pending byte'. This ensures that no new SHARED locks can be ** obtained, but existing SHARED locks are allowed to persist. A process ** does not have to obtain a RESERVED lock on the way to a PENDING lock. ** This property is used by the algorithm for rolling back a journal file ** after a crash. ** ** An EXCLUSIVE lock, obtained after a PENDING lock is held, is ** implemented by obtaining a write-lock on the entire 'shared byte ** range'. Since all other locks require a read-lock on one of the bytes ** within this range, this ensures that no other locks are held on the ** database. */ int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode; struct flock lock; int tErrno = 0; assert( pFile ); OSTRACE(("LOCK %d %s was %s(%s,%d) pid=%d (unix)\n", pFile->h, azFileLock(eFileLock), azFileLock(pFile->eFileLock), azFileLock(pFile->pInode->eFileLock), pFile->pInode->nShared, osGetpid(0))); /* If there is already a lock of this type or more restrictive on the ** unixFile, do nothing. Don't use the end_lock: exit path, as ** unixEnterMutex() hasn't been called yet. */ if( pFile->eFileLock>=eFileLock ){ OSTRACE(("LOCK %d %s ok (already held) (unix)\n", pFile->h, azFileLock(eFileLock))); return SQLITE_OK; } /* Make sure the locking sequence is correct. ** (1) We never move from unlocked to anything higher than shared lock. ** (2) SQLite never explicitly requests a pendig lock. ** (3) A shared lock is always held when a reserve lock is requested. */ assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK ); assert( eFileLock!=PENDING_LOCK ); assert( eFileLock!=RESERVED_LOCK || pFile->eFileLock==SHARED_LOCK ); /* This mutex is needed because pFile->pInode is shared across threads */ pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); /* If some thread using this PID has a lock via a different unixFile* ** handle that precludes the requested lock, return BUSY. */ if( (pFile->eFileLock!=pInode->eFileLock && (pInode->eFileLock>=PENDING_LOCK || eFileLock>SHARED_LOCK)) ){ rc = SQLITE_BUSY; goto end_lock; } /* If a SHARED lock is requested, and some thread using this PID already ** has a SHARED or RESERVED lock, then increment reference counts and ** return SQLITE_OK. */ if( eFileLock==SHARED_LOCK && (pInode->eFileLock==SHARED_LOCK || pInode->eFileLock==RESERVED_LOCK) ){ assert( eFileLock==SHARED_LOCK ); assert( pFile->eFileLock==0 ); assert( pInode->nShared>0 ); pFile->eFileLock = SHARED_LOCK; pInode->nShared++; pInode->nLock++; goto end_lock; } /* A PENDING lock is needed before acquiring a SHARED lock and before ** acquiring an EXCLUSIVE lock. For the SHARED lock, the PENDING will ** be released. */ lock.l_len = 1L; lock.l_whence = SEEK_SET; if( eFileLock==SHARED_LOCK || (eFileLock==EXCLUSIVE_LOCK && pFile->eFileLocknShared==0 ); assert( pInode->eFileLock==0 ); assert( rc==SQLITE_OK ); /* Now get the read-lock */ lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; if( unixFileLock(pFile, &lock) ){ tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); } /* Drop the temporary PENDING lock */ lock.l_start = PENDING_BYTE; lock.l_len = 1L; lock.l_type = F_UNLCK; if( unixFileLock(pFile, &lock) && rc==SQLITE_OK ){ /* This could happen with a network mount */ tErrno = errno; rc = SQLITE_IOERR_UNLOCK; } if( rc ){ if( rc!=SQLITE_BUSY ){ storeLastErrno(pFile, tErrno); } goto end_lock; }else{ pFile->eFileLock = SHARED_LOCK; pInode->nLock++; pInode->nShared = 1; } }else if( eFileLock==EXCLUSIVE_LOCK && pInode->nShared>1 ){ /* We are trying for an exclusive lock but another thread in this ** same process is still holding a shared lock. */ rc = SQLITE_BUSY; }else{ /* The request was for a RESERVED or EXCLUSIVE lock. It is ** assumed that there is a SHARED or greater lock on the file ** already. */ assert( 0!=pFile->eFileLock ); lock.l_type = F_WRLCK; assert( eFileLock==RESERVED_LOCK || eFileLock==EXCLUSIVE_LOCK ); if( eFileLock==RESERVED_LOCK ){ lock.l_start = RESERVED_BYTE; lock.l_len = 1L; }else{ lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; } if( unixFileLock(pFile, &lock) ){ tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( rc!=SQLITE_BUSY ){ storeLastErrno(pFile, tErrno); } } } #ifdef SQLITE_DEBUG /* Set up the transaction-counter change checking flags when ** transitioning from a SHARED to a RESERVED lock. The change ** from SHARED to RESERVED marks the beginning of a normal ** write operation (not a hot journal rollback). */ if( rc==SQLITE_OK && pFile->eFileLock<=SHARED_LOCK && eFileLock==RESERVED_LOCK ){ pFile->transCntrChng = 0; pFile->dbUpdate = 0; pFile->inNormalWrite = 1; } #endif if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; pInode->eFileLock = eFileLock; }else if( eFileLock==EXCLUSIVE_LOCK ){ pFile->eFileLock = PENDING_LOCK; pInode->eFileLock = PENDING_LOCK; } end_lock: sqlite3_mutex_leave(pInode->pLockMutex); OSTRACE(("LOCK %d %s %s (unix)\n", pFile->h, azFileLock(eFileLock), rc==SQLITE_OK ? "ok" : "failed")); return rc; } /* ** Add the file descriptor used by file handle pFile to the corresponding ** pUnused list. */ static void setPendingFd(unixFile *pFile){ unixInodeInfo *pInode = pFile->pInode; UnixUnusedFd *p = pFile->pPreallocatedUnused; assert( unixFileMutexHeld(pFile) ); p->pNext = pInode->pUnused; pInode->pUnused = p; pFile->h = -1; pFile->pPreallocatedUnused = 0; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. ** ** If handleNFSUnlock is true, then on downgrading an EXCLUSIVE_LOCK to SHARED ** the byte range is divided into 2 parts and the first part is unlocked then ** set to a read lock, then the other part is simply unlocked. This works ** around a bug in BSD NFS lockd (also seen on MacOSX 10.3+) that fails to ** remove the write lock on a region when a read lock is set. */ static int posixUnlock(sqlite3_file *id, int eFileLock, int handleNFSUnlock){ unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode; struct flock lock; int rc = SQLITE_OK; assert( pFile ); OSTRACE(("UNLOCK %d %d was %d(%d,%d) pid=%d (unix)\n", pFile->h, eFileLock, pFile->eFileLock, pFile->pInode->eFileLock, pFile->pInode->nShared, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); if( pFile->eFileLock<=eFileLock ){ return SQLITE_OK; } pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); assert( pInode->nShared!=0 ); if( pFile->eFileLock>SHARED_LOCK ){ assert( pInode->eFileLock==pFile->eFileLock ); #ifdef SQLITE_DEBUG /* When reducing a lock such that other processes can start ** reading the database file again, make sure that the ** transaction counter was updated if any part of the database ** file changed. If the transaction counter is not updated, ** other connections to the same file might not realize that ** the file has changed and hence might not know to flush their ** cache. The use of a stale cache can lead to database corruption. */ pFile->inNormalWrite = 0; #endif /* downgrading to a shared lock on NFS involves clearing the write lock ** before establishing the readlock - to avoid a race condition we downgrade ** the lock in 2 blocks, so that part of the range will be covered by a ** write lock until the rest is covered by a read lock: ** 1: [WWWWW] ** 2: [....W] ** 3: [RRRRW] ** 4: [RRRR.] */ if( eFileLock==SHARED_LOCK ){ #if !defined(__APPLE__) || !SQLITE_ENABLE_LOCKING_STYLE (void)handleNFSUnlock; assert( handleNFSUnlock==0 ); #endif #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE if( handleNFSUnlock ){ int tErrno; /* Error code from system call errors */ off_t divSize = SHARED_SIZE - 1; lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = divSize; if( unixFileLock(pFile, &lock)==(-1) ){ tErrno = errno; rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); goto end_unlock; } lock.l_type = F_RDLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = divSize; if( unixFileLock(pFile, &lock)==(-1) ){ tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_RDLOCK); if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } goto end_unlock; } lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST+divSize; lock.l_len = SHARED_SIZE-divSize; if( unixFileLock(pFile, &lock)==(-1) ){ tErrno = errno; rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); goto end_unlock; } }else #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ { lock.l_type = F_RDLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; if( unixFileLock(pFile, &lock) ){ /* In theory, the call to unixFileLock() cannot fail because another ** process is holding an incompatible lock. If it does, this ** indicates that the other process is not following the locking ** protocol. If this happens, return SQLITE_IOERR_RDLOCK. Returning ** SQLITE_BUSY would confuse the upper layer (in practice it causes ** an assert to fail). */ rc = SQLITE_IOERR_RDLOCK; storeLastErrno(pFile, errno); goto end_unlock; } } } lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = PENDING_BYTE; lock.l_len = 2L; assert( PENDING_BYTE+1==RESERVED_BYTE ); if( unixFileLock(pFile, &lock)==0 ){ pInode->eFileLock = SHARED_LOCK; }else{ rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, errno); goto end_unlock; } } if( eFileLock==NO_LOCK ){ /* Decrement the shared lock counter. Release the lock using an ** OS call only when all threads in this same process have released ** the lock. */ pInode->nShared--; if( pInode->nShared==0 ){ lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = lock.l_len = 0L; if( unixFileLock(pFile, &lock)==0 ){ pInode->eFileLock = NO_LOCK; }else{ rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, errno); pInode->eFileLock = NO_LOCK; pFile->eFileLock = NO_LOCK; } } /* Decrement the count of locks against this same file. When the ** count reaches zero, close any other file descriptors whose close ** was deferred because of outstanding locks. */ pInode->nLock--; assert( pInode->nLock>=0 ); if( pInode->nLock==0 ) closePendingFds(pFile); } end_unlock: sqlite3_mutex_leave(pInode->pLockMutex); if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; } return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int unixUnlock(sqlite3_file *id, int eFileLock){ #if SQLITE_MAX_MMAP_SIZE>0 assert( eFileLock==SHARED_LOCK || ((unixFile *)id)->nFetchOut==0 ); #endif return posixUnlock(id, eFileLock, 0); } #if SQLITE_MAX_MMAP_SIZE>0 static int unixMapfile(unixFile *pFd, i64 nByte); static void unixUnmapfile(unixFile *pFd); #endif /* ** This function performs the parts of the "close file" operation ** common to all locking schemes. It closes the directory and file ** handles, if they are valid, and sets all fields of the unixFile ** structure to 0. ** ** It is *not* necessary to hold the mutex when this routine is called, ** even on VxWorks. A mutex will be acquired on VxWorks by the ** vxworksReleaseFileId() routine. */ static int closeUnixFile(sqlite3_file *id){ unixFile *pFile = (unixFile*)id; #if SQLITE_MAX_MMAP_SIZE>0 unixUnmapfile(pFile); #endif if( pFile->h>=0 ){ robust_close(pFile, pFile->h, __LINE__); pFile->h = -1; } #if OS_VXWORKS if( pFile->pId ){ if( pFile->ctrlFlags & UNIXFILE_DELETE ){ osUnlink(pFile->pId->zCanonicalName); } vxworksReleaseFileId(pFile->pId); pFile->pId = 0; } #endif #ifdef SQLITE_UNLINK_AFTER_CLOSE if( pFile->ctrlFlags & UNIXFILE_DELETE ){ osUnlink(pFile->zPath); sqlite3_free(*(char**)&pFile->zPath); pFile->zPath = 0; } #endif OSTRACE(("CLOSE %-3d\n", pFile->h)); OpenCounter(-1); sqlite3_free(pFile->pPreallocatedUnused); memset(pFile, 0, sizeof(unixFile)); return SQLITE_OK; } /* ** Close a file. */ static int unixClose(sqlite3_file *id){ int rc = SQLITE_OK; unixFile *pFile = (unixFile *)id; unixInodeInfo *pInode = pFile->pInode; assert( pInode!=0 ); verifyDbFile(pFile); unixUnlock(id, NO_LOCK); assert( unixFileMutexNotheld(pFile) ); unixEnterMutex(); /* unixFile.pInode is always valid here. Otherwise, a different close ** routine (e.g. nolockClose()) would be called instead. */ assert( pFile->pInode->nLock>0 || pFile->pInode->bProcessLock==0 ); sqlite3_mutex_enter(pInode->pLockMutex); if( pInode->nLock ){ /* If there are outstanding locks, do not actually close the file just ** yet because that would clear those locks. Instead, add the file ** descriptor to pInode->pUnused list. It will be automatically closed ** when the last lock is cleared. */ setPendingFd(pFile); } sqlite3_mutex_leave(pInode->pLockMutex); releaseInodeInfo(pFile); assert( pFile->pShm==0 ); rc = closeUnixFile(id); unixLeaveMutex(); return rc; } /************** End of the posix advisory lock implementation ***************** ******************************************************************************/ /****************************************************************************** ****************************** No-op Locking ********************************** ** ** Of the various locking implementations available, this is by far the ** simplest: locking is ignored. No attempt is made to lock the database ** file for reading or writing. ** ** This locking mode is appropriate for use on read-only databases ** (ex: databases that are burned into CD-ROM, for example.) It can ** also be used if the application employs some external mechanism to ** prevent simultaneous access of the same database by two or more ** database connections. But there is a serious risk of database ** corruption if this locking mode is used in situations where multiple ** database connections are accessing the same database file at the same ** time and one or more of those connections are writing. */ static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){ UNUSED_PARAMETER(NotUsed); *pResOut = 0; return SQLITE_OK; } static int nolockLock(sqlite3_file *NotUsed, int NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return SQLITE_OK; } static int nolockUnlock(sqlite3_file *NotUsed, int NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return SQLITE_OK; } /* ** Close the file. */ static int nolockClose(sqlite3_file *id) { return closeUnixFile(id); } /******************* End of the no-op lock implementation ********************* ******************************************************************************/ /****************************************************************************** ************************* Begin dot-file Locking ****************************** ** ** The dotfile locking implementation uses the existence of separate lock ** files (really a directory) to control access to the database. This works ** on just about every filesystem imaginable. But there are serious downsides: ** ** (1) There is zero concurrency. A single reader blocks all other ** connections from reading or writing the database. ** ** (2) An application crash or power loss can leave stale lock files ** sitting around that need to be cleared manually. ** ** Nevertheless, a dotlock is an appropriate locking mode for use if no ** other locking strategy is available. ** ** Dotfile locking works by creating a subdirectory in the same directory as ** the database and with the same name but with a ".lock" extension added. ** The existence of a lock directory implies an EXCLUSIVE lock. All other ** lock types (SHARED, RESERVED, PENDING) are mapped into EXCLUSIVE. */ /* ** The file suffix added to the data base filename in order to create the ** lock directory. */ #define DOTLOCK_SUFFIX ".lock" /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. ** ** In dotfile locking, either a lock exists or it does not. So in this ** variation of CheckReservedLock(), *pResOut is set to true if any lock ** is held on the file and false if the file is unlocked. */ static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) { int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); reserved = osAccess((const char*)pFile->lockingContext, 0)==0; OSTRACE(("TEST WR-LOCK %d %d %d (dotlock)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. ** ** With dotfile locking, we really only support state (4): EXCLUSIVE. ** But we track the other locking levels internally. */ static int dotlockLock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; char *zLockFile = (char *)pFile->lockingContext; int rc = SQLITE_OK; /* If we have any lock, then the lock file already exists. All we have ** to do is adjust our internal record of the lock level. */ if( pFile->eFileLock > NO_LOCK ){ pFile->eFileLock = eFileLock; /* Always update the timestamp on the old file */ #ifdef HAVE_UTIME utime(zLockFile, NULL); #else utimes(zLockFile, NULL); #endif return SQLITE_OK; } /* grab an exclusive lock */ rc = osMkdir(zLockFile, 0777); if( rc<0 ){ /* failed to open/create the lock directory */ int tErrno = errno; if( EEXIST == tErrno ){ rc = SQLITE_BUSY; } else { rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( rc!=SQLITE_BUSY ){ storeLastErrno(pFile, tErrno); } } return rc; } /* got it, set the type and return ok */ pFile->eFileLock = eFileLock; return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. ** ** When the locking level reaches NO_LOCK, delete the lock file. */ static int dotlockUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; char *zLockFile = (char *)pFile->lockingContext; int rc; assert( pFile ); OSTRACE(("UNLOCK %d %d was %d pid=%d (dotlock)\n", pFile->h, eFileLock, pFile->eFileLock, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); /* no-op if possible */ if( pFile->eFileLock==eFileLock ){ return SQLITE_OK; } /* To downgrade to shared, simply update our internal notion of the ** lock state. No need to mess with the file on disk. */ if( eFileLock==SHARED_LOCK ){ pFile->eFileLock = SHARED_LOCK; return SQLITE_OK; } /* To fully unlock the database, delete the lock file */ assert( eFileLock==NO_LOCK ); rc = osRmdir(zLockFile); if( rc<0 ){ int tErrno = errno; if( tErrno==ENOENT ){ rc = SQLITE_OK; }else{ rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); } return rc; } pFile->eFileLock = NO_LOCK; return SQLITE_OK; } /* ** Close a file. Make sure the lock has been released before closing. */ static int dotlockClose(sqlite3_file *id) { unixFile *pFile = (unixFile*)id; assert( id!=0 ); dotlockUnlock(id, NO_LOCK); sqlite3_free(pFile->lockingContext); return closeUnixFile(id); } /****************** End of the dot-file lock implementation ******************* ******************************************************************************/ /****************************************************************************** ************************** Begin flock Locking ******************************** ** ** Use the flock() system call to do file locking. ** ** flock() locking is like dot-file locking in that the various ** fine-grain locking levels supported by SQLite are collapsed into ** a single exclusive lock. In other words, SHARED, RESERVED, and ** PENDING locks are the same thing as an EXCLUSIVE lock. SQLite ** still works when you do this, but concurrency is reduced since ** only a single process can be reading the database at a time. ** ** Omit this section if SQLITE_ENABLE_LOCKING_STYLE is turned off */ #if SQLITE_ENABLE_LOCKING_STYLE /* ** Retry flock() calls that fail with EINTR */ #ifdef EINTR static int robust_flock(int fd, int op){ int rc; do{ rc = flock(fd,op); }while( rc<0 && errno==EINTR ); return rc; } #else # define robust_flock(a,b) flock(a,b) #endif /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){ int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); /* Check if a thread in this process holds such a lock */ if( pFile->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ if( !reserved ){ /* attempt to get the lock */ int lrc = robust_flock(pFile->h, LOCK_EX | LOCK_NB); if( !lrc ){ /* got the lock, unlock it */ lrc = robust_flock(pFile->h, LOCK_UN); if ( lrc ) { int tErrno = errno; /* unlock failed with an error */ lrc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); rc = lrc; } } else { int tErrno = errno; reserved = 1; /* someone else might have it reserved */ lrc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( IS_LOCK_ERROR(lrc) ){ storeLastErrno(pFile, tErrno); rc = lrc; } } } OSTRACE(("TEST WR-LOCK %d %d %d (flock)\n", pFile->h, rc, reserved)); #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS if( (rc & 0xff) == SQLITE_IOERR ){ rc = SQLITE_OK; reserved=1; } #endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** flock() only really support EXCLUSIVE locks. We track intermediate ** lock states in the sqlite3_file structure, but all locks SHARED or ** above are really EXCLUSIVE locks and exclude all other processes from ** access the file. ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int flockLock(sqlite3_file *id, int eFileLock) { int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; assert( pFile ); /* if we already have a lock, it is exclusive. ** Just adjust level and punt on outta here. */ if (pFile->eFileLock > NO_LOCK) { pFile->eFileLock = eFileLock; return SQLITE_OK; } /* grab an exclusive lock */ if (robust_flock(pFile->h, LOCK_EX | LOCK_NB)) { int tErrno = errno; /* didn't get, must be busy */ rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } } else { /* got it, set the type and return ok */ pFile->eFileLock = eFileLock; } OSTRACE(("LOCK %d %s %s (flock)\n", pFile->h, azFileLock(eFileLock), rc==SQLITE_OK ? "ok" : "failed")); #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS if( (rc & 0xff) == SQLITE_IOERR ){ rc = SQLITE_BUSY; } #endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int flockUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; assert( pFile ); OSTRACE(("UNLOCK %d %d was %d pid=%d (flock)\n", pFile->h, eFileLock, pFile->eFileLock, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); /* no-op if possible */ if( pFile->eFileLock==eFileLock ){ return SQLITE_OK; } /* shared can just be set because we always have an exclusive */ if (eFileLock==SHARED_LOCK) { pFile->eFileLock = eFileLock; return SQLITE_OK; } /* no, really, unlock. */ if( robust_flock(pFile->h, LOCK_UN) ){ #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS return SQLITE_OK; #endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ return SQLITE_IOERR_UNLOCK; }else{ pFile->eFileLock = NO_LOCK; return SQLITE_OK; } } /* ** Close a file. */ static int flockClose(sqlite3_file *id) { assert( id!=0 ); flockUnlock(id, NO_LOCK); return closeUnixFile(id); } #endif /* SQLITE_ENABLE_LOCKING_STYLE && !OS_VXWORK */ /******************* End of the flock lock implementation ********************* ******************************************************************************/ /****************************************************************************** ************************ Begin Named Semaphore Locking ************************ ** ** Named semaphore locking is only supported on VxWorks. ** ** Semaphore locking is like dot-lock and flock in that it really only ** supports EXCLUSIVE locking. Only a single process can read or write ** the database file at a time. This reduces potential concurrency, but ** makes the lock implementation much easier. */ #if OS_VXWORKS /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int semXCheckReservedLock(sqlite3_file *id, int *pResOut) { int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); /* Check if a thread in this process holds such a lock */ if( pFile->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ if( !reserved ){ sem_t *pSem = pFile->pInode->pSem; if( sem_trywait(pSem)==-1 ){ int tErrno = errno; if( EAGAIN != tErrno ){ rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_CHECKRESERVEDLOCK); storeLastErrno(pFile, tErrno); } else { /* someone else has the lock when we are in NO_LOCK */ reserved = (pFile->eFileLock < SHARED_LOCK); } }else{ /* we could have it if we want it */ sem_post(pSem); } } OSTRACE(("TEST WR-LOCK %d %d %d (sem)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** Semaphore locks only really support EXCLUSIVE locks. We track intermediate ** lock states in the sqlite3_file structure, but all locks SHARED or ** above are really EXCLUSIVE locks and exclude all other processes from ** access the file. ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int semXLock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; sem_t *pSem = pFile->pInode->pSem; int rc = SQLITE_OK; /* if we already have a lock, it is exclusive. ** Just adjust level and punt on outta here. */ if (pFile->eFileLock > NO_LOCK) { pFile->eFileLock = eFileLock; rc = SQLITE_OK; goto sem_end_lock; } /* lock semaphore now but bail out when already locked. */ if( sem_trywait(pSem)==-1 ){ rc = SQLITE_BUSY; goto sem_end_lock; } /* got it, set the type and return ok */ pFile->eFileLock = eFileLock; sem_end_lock: return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int semXUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; sem_t *pSem = pFile->pInode->pSem; assert( pFile ); assert( pSem ); OSTRACE(("UNLOCK %d %d was %d pid=%d (sem)\n", pFile->h, eFileLock, pFile->eFileLock, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); /* no-op if possible */ if( pFile->eFileLock==eFileLock ){ return SQLITE_OK; } /* shared can just be set because we always have an exclusive */ if (eFileLock==SHARED_LOCK) { pFile->eFileLock = eFileLock; return SQLITE_OK; } /* no, really unlock. */ if ( sem_post(pSem)==-1 ) { int rc, tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_UNLOCK); if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } return rc; } pFile->eFileLock = NO_LOCK; return SQLITE_OK; } /* ** Close a file. */ static int semXClose(sqlite3_file *id) { if( id ){ unixFile *pFile = (unixFile*)id; semXUnlock(id, NO_LOCK); assert( pFile ); assert( unixFileMutexNotheld(pFile) ); unixEnterMutex(); releaseInodeInfo(pFile); unixLeaveMutex(); closeUnixFile(id); } return SQLITE_OK; } #endif /* OS_VXWORKS */ /* ** Named semaphore locking is only available on VxWorks. ** *************** End of the named semaphore lock implementation **************** ******************************************************************************/ /****************************************************************************** *************************** Begin AFP Locking ********************************* ** ** AFP is the Apple Filing Protocol. AFP is a network filesystem found ** on Apple Macintosh computers - both OS9 and OSX. ** ** Third-party implementations of AFP are available. But this code here ** only works on OSX. */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** The afpLockingContext structure contains all afp lock specific state */ typedef struct afpLockingContext afpLockingContext; struct afpLockingContext { int reserved; const char *dbPath; /* Name of the open file */ }; struct ByteRangeLockPB2 { unsigned long long offset; /* offset to first byte to lock */ unsigned long long length; /* nbr of bytes to lock */ unsigned long long retRangeStart; /* nbr of 1st byte locked if successful */ unsigned char unLockFlag; /* 1 = unlock, 0 = lock */ unsigned char startEndFlag; /* 1=rel to end of fork, 0=rel to start */ int fd; /* file desc to assoc this lock with */ }; #define afpfsByteRangeLock2FSCTL _IOWR('z', 23, struct ByteRangeLockPB2) /* ** This is a utility for setting or clearing a bit-range lock on an ** AFP filesystem. ** ** Return SQLITE_OK on success, SQLITE_BUSY on failure. */ static int afpSetLock( const char *path, /* Name of the file to be locked or unlocked */ unixFile *pFile, /* Open file descriptor on path */ unsigned long long offset, /* First byte to be locked */ unsigned long long length, /* Number of bytes to lock */ int setLockFlag /* True to set lock. False to clear lock */ ){ struct ByteRangeLockPB2 pb; int err; pb.unLockFlag = setLockFlag ? 0 : 1; pb.startEndFlag = 0; pb.offset = offset; pb.length = length; pb.fd = pFile->h; OSTRACE(("AFPSETLOCK [%s] for %d%s in range %llx:%llx\n", (setLockFlag?"ON":"OFF"), pFile->h, (pb.fd==-1?"[testval-1]":""), offset, length)); err = fsctl(path, afpfsByteRangeLock2FSCTL, &pb, 0); if ( err==-1 ) { int rc; int tErrno = errno; OSTRACE(("AFPSETLOCK failed to fsctl() '%s' %d %s\n", path, tErrno, strerror(tErrno))); #ifdef SQLITE_IGNORE_AFP_LOCK_ERRORS rc = SQLITE_BUSY; #else rc = sqliteErrorFromPosixError(tErrno, setLockFlag ? SQLITE_IOERR_LOCK : SQLITE_IOERR_UNLOCK); #endif /* SQLITE_IGNORE_AFP_LOCK_ERRORS */ if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } return rc; } else { return SQLITE_OK; } } /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){ int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; afpLockingContext *context; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); context = (afpLockingContext *) pFile->lockingContext; if( context->reserved ){ *pResOut = 1; return SQLITE_OK; } sqlite3_mutex_enter(pFile->pInode->pLockMutex); /* Check if a thread in this process holds such a lock */ if( pFile->pInode->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ if( !reserved ){ /* lock the RESERVED byte */ int lrc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1); if( SQLITE_OK==lrc ){ /* if we succeeded in taking the reserved lock, unlock it to restore ** the original state */ lrc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1, 0); } else { /* if we failed to get the lock then someone else must have it */ reserved = 1; } if( IS_LOCK_ERROR(lrc) ){ rc=lrc; } } sqlite3_mutex_leave(pFile->pInode->pLockMutex); OSTRACE(("TEST WR-LOCK %d %d %d (afp)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int afpLock(sqlite3_file *id, int eFileLock){ int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode = pFile->pInode; afpLockingContext *context = (afpLockingContext *) pFile->lockingContext; assert( pFile ); OSTRACE(("LOCK %d %s was %s(%s,%d) pid=%d (afp)\n", pFile->h, azFileLock(eFileLock), azFileLock(pFile->eFileLock), azFileLock(pInode->eFileLock), pInode->nShared , osGetpid(0))); /* If there is already a lock of this type or more restrictive on the ** unixFile, do nothing. Don't use the afp_end_lock: exit path, as ** unixEnterMutex() hasn't been called yet. */ if( pFile->eFileLock>=eFileLock ){ OSTRACE(("LOCK %d %s ok (already held) (afp)\n", pFile->h, azFileLock(eFileLock))); return SQLITE_OK; } /* Make sure the locking sequence is correct ** (1) We never move from unlocked to anything higher than shared lock. ** (2) SQLite never explicitly requests a pendig lock. ** (3) A shared lock is always held when a reserve lock is requested. */ assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK ); assert( eFileLock!=PENDING_LOCK ); assert( eFileLock!=RESERVED_LOCK || pFile->eFileLock==SHARED_LOCK ); /* This mutex is needed because pFile->pInode is shared across threads */ pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); /* If some thread using this PID has a lock via a different unixFile* ** handle that precludes the requested lock, return BUSY. */ if( (pFile->eFileLock!=pInode->eFileLock && (pInode->eFileLock>=PENDING_LOCK || eFileLock>SHARED_LOCK)) ){ rc = SQLITE_BUSY; goto afp_end_lock; } /* If a SHARED lock is requested, and some thread using this PID already ** has a SHARED or RESERVED lock, then increment reference counts and ** return SQLITE_OK. */ if( eFileLock==SHARED_LOCK && (pInode->eFileLock==SHARED_LOCK || pInode->eFileLock==RESERVED_LOCK) ){ assert( eFileLock==SHARED_LOCK ); assert( pFile->eFileLock==0 ); assert( pInode->nShared>0 ); pFile->eFileLock = SHARED_LOCK; pInode->nShared++; pInode->nLock++; goto afp_end_lock; } /* A PENDING lock is needed before acquiring a SHARED lock and before ** acquiring an EXCLUSIVE lock. For the SHARED lock, the PENDING will ** be released. */ if( eFileLock==SHARED_LOCK || (eFileLock==EXCLUSIVE_LOCK && pFile->eFileLockdbPath, pFile, PENDING_BYTE, 1, 1); if (failed) { rc = failed; goto afp_end_lock; } } /* If control gets to this point, then actually go ahead and make ** operating system calls for the specified lock. */ if( eFileLock==SHARED_LOCK ){ int lrc1, lrc2, lrc1Errno = 0; long lk, mask; assert( pInode->nShared==0 ); assert( pInode->eFileLock==0 ); mask = (sizeof(long)==8) ? LARGEST_INT64 : 0x7fffffff; /* Now get the read-lock SHARED_LOCK */ /* note that the quality of the randomness doesn't matter that much */ lk = random(); pInode->sharedByte = (lk & mask)%(SHARED_SIZE - 1); lrc1 = afpSetLock(context->dbPath, pFile, SHARED_FIRST+pInode->sharedByte, 1, 1); if( IS_LOCK_ERROR(lrc1) ){ lrc1Errno = pFile->lastErrno; } /* Drop the temporary PENDING lock */ lrc2 = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 0); if( IS_LOCK_ERROR(lrc1) ) { storeLastErrno(pFile, lrc1Errno); rc = lrc1; goto afp_end_lock; } else if( IS_LOCK_ERROR(lrc2) ){ rc = lrc2; goto afp_end_lock; } else if( lrc1 != SQLITE_OK ) { rc = lrc1; } else { pFile->eFileLock = SHARED_LOCK; pInode->nLock++; pInode->nShared = 1; } }else if( eFileLock==EXCLUSIVE_LOCK && pInode->nShared>1 ){ /* We are trying for an exclusive lock but another thread in this ** same process is still holding a shared lock. */ rc = SQLITE_BUSY; }else{ /* The request was for a RESERVED or EXCLUSIVE lock. It is ** assumed that there is a SHARED or greater lock on the file ** already. */ int failed = 0; assert( 0!=pFile->eFileLock ); if (eFileLock >= RESERVED_LOCK && pFile->eFileLock < RESERVED_LOCK) { /* Acquire a RESERVED lock */ failed = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1); if( !failed ){ context->reserved = 1; } } if (!failed && eFileLock == EXCLUSIVE_LOCK) { /* Acquire an EXCLUSIVE lock */ /* Remove the shared lock before trying the range. we'll need to ** reestablish the shared lock if we can't get the afpUnlock */ if( !(failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST + pInode->sharedByte, 1, 0)) ){ int failed2 = SQLITE_OK; /* now attemmpt to get the exclusive lock range */ failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST, SHARED_SIZE, 1); if( failed && (failed2 = afpSetLock(context->dbPath, pFile, SHARED_FIRST + pInode->sharedByte, 1, 1)) ){ /* Can't reestablish the shared lock. Sqlite can't deal, this is ** a critical I/O error */ rc = ((failed & 0xff) == SQLITE_IOERR) ? failed2 : SQLITE_IOERR_LOCK; goto afp_end_lock; } }else{ rc = failed; } } if( failed ){ rc = failed; } } if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; pInode->eFileLock = eFileLock; }else if( eFileLock==EXCLUSIVE_LOCK ){ pFile->eFileLock = PENDING_LOCK; pInode->eFileLock = PENDING_LOCK; } afp_end_lock: sqlite3_mutex_leave(pInode->pLockMutex); OSTRACE(("LOCK %d %s %s (afp)\n", pFile->h, azFileLock(eFileLock), rc==SQLITE_OK ? "ok" : "failed")); return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int afpUnlock(sqlite3_file *id, int eFileLock) { int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode; afpLockingContext *context = (afpLockingContext *) pFile->lockingContext; int skipShared = 0; #ifdef SQLITE_TEST int h = pFile->h; #endif assert( pFile ); OSTRACE(("UNLOCK %d %d was %d(%d,%d) pid=%d (afp)\n", pFile->h, eFileLock, pFile->eFileLock, pFile->pInode->eFileLock, pFile->pInode->nShared, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); if( pFile->eFileLock<=eFileLock ){ return SQLITE_OK; } pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); assert( pInode->nShared!=0 ); if( pFile->eFileLock>SHARED_LOCK ){ assert( pInode->eFileLock==pFile->eFileLock ); SimulateIOErrorBenign(1); SimulateIOError( h=(-1) ) SimulateIOErrorBenign(0); #ifdef SQLITE_DEBUG /* When reducing a lock such that other processes can start ** reading the database file again, make sure that the ** transaction counter was updated if any part of the database ** file changed. If the transaction counter is not updated, ** other connections to the same file might not realize that ** the file has changed and hence might not know to flush their ** cache. The use of a stale cache can lead to database corruption. */ assert( pFile->inNormalWrite==0 || pFile->dbUpdate==0 || pFile->transCntrChng==1 ); pFile->inNormalWrite = 0; #endif if( pFile->eFileLock==EXCLUSIVE_LOCK ){ rc = afpSetLock(context->dbPath, pFile, SHARED_FIRST, SHARED_SIZE, 0); if( rc==SQLITE_OK && (eFileLock==SHARED_LOCK || pInode->nShared>1) ){ /* only re-establish the shared lock if necessary */ int sharedLockByte = SHARED_FIRST+pInode->sharedByte; rc = afpSetLock(context->dbPath, pFile, sharedLockByte, 1, 1); } else { skipShared = 1; } } if( rc==SQLITE_OK && pFile->eFileLock>=PENDING_LOCK ){ rc = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 0); } if( rc==SQLITE_OK && pFile->eFileLock>=RESERVED_LOCK && context->reserved ){ rc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1, 0); if( !rc ){ context->reserved = 0; } } if( rc==SQLITE_OK && (eFileLock==SHARED_LOCK || pInode->nShared>1)){ pInode->eFileLock = SHARED_LOCK; } } if( rc==SQLITE_OK && eFileLock==NO_LOCK ){ /* Decrement the shared lock counter. Release the lock using an ** OS call only when all threads in this same process have released ** the lock. */ unsigned long long sharedLockByte = SHARED_FIRST+pInode->sharedByte; pInode->nShared--; if( pInode->nShared==0 ){ SimulateIOErrorBenign(1); SimulateIOError( h=(-1) ) SimulateIOErrorBenign(0); if( !skipShared ){ rc = afpSetLock(context->dbPath, pFile, sharedLockByte, 1, 0); } if( !rc ){ pInode->eFileLock = NO_LOCK; pFile->eFileLock = NO_LOCK; } } if( rc==SQLITE_OK ){ pInode->nLock--; assert( pInode->nLock>=0 ); if( pInode->nLock==0 ) closePendingFds(pFile); } } sqlite3_mutex_leave(pInode->pLockMutex); if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; } return rc; } /* ** Close a file & cleanup AFP specific locking context */ static int afpClose(sqlite3_file *id) { int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; assert( id!=0 ); afpUnlock(id, NO_LOCK); assert( unixFileMutexNotheld(pFile) ); unixEnterMutex(); if( pFile->pInode ){ unixInodeInfo *pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); if( pInode->nLock ){ /* If there are outstanding locks, do not actually close the file just ** yet because that would clear those locks. Instead, add the file ** descriptor to pInode->aPending. It will be automatically closed when ** the last lock is cleared. */ setPendingFd(pFile); } sqlite3_mutex_leave(pInode->pLockMutex); } releaseInodeInfo(pFile); sqlite3_free(pFile->lockingContext); rc = closeUnixFile(id); unixLeaveMutex(); return rc; } #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ /* ** The code above is the AFP lock implementation. The code is specific ** to MacOSX and does not work on other unix platforms. No alternative ** is available. If you don't compile for a mac, then the "unix-afp" ** VFS is not available. ** ********************* End of the AFP lock implementation ********************** ******************************************************************************/ /****************************************************************************** *************************** Begin NFS Locking ********************************/ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int nfsUnlock(sqlite3_file *id, int eFileLock){ return posixUnlock(id, eFileLock, 1); } #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ /* ** The code above is the NFS lock implementation. The code is specific ** to MacOSX and does not work on other unix platforms. No alternative ** is available. ** ********************* End of the NFS lock implementation ********************** ******************************************************************************/ /****************************************************************************** **************** Non-locking sqlite3_file methods ***************************** ** ** The next division contains implementations for all methods of the ** sqlite3_file object other than the locking methods. The locking ** methods were defined in divisions above (one locking method per ** division). Those methods that are common to all locking modes ** are gather together into this division. */ /* ** Seek to the offset passed as the second argument, then read cnt ** bytes into pBuf. Return the number of bytes actually read. ** ** NB: If you define USE_PREAD or USE_PREAD64, then it might also ** be necessary to define _XOPEN_SOURCE to be 500. This varies from ** one system to another. Since SQLite does not define USE_PREAD ** in any form by default, we will not attempt to define _XOPEN_SOURCE. ** See tickets #2741 and #2681. ** ** To avoid stomping the errno value on a failed read the lastErrno value ** is set before returning. */ static int seekAndRead(unixFile *id, sqlite3_int64 offset, void *pBuf, int cnt){ int got; int prior = 0; #if (!defined(USE_PREAD) && !defined(USE_PREAD64)) i64 newOffset; #endif TIMER_START; assert( cnt==(cnt&0x1ffff) ); assert( id->h>2 ); do{ #if defined(USE_PREAD) got = osPread(id->h, pBuf, cnt, offset); SimulateIOError( got = -1 ); #elif defined(USE_PREAD64) got = osPread64(id->h, pBuf, cnt, offset); SimulateIOError( got = -1 ); #else newOffset = lseek(id->h, offset, SEEK_SET); SimulateIOError( newOffset = -1 ); if( newOffset<0 ){ storeLastErrno((unixFile*)id, errno); return -1; } got = osRead(id->h, pBuf, cnt); #endif if( got==cnt ) break; if( got<0 ){ if( errno==EINTR ){ got = 1; continue; } prior = 0; storeLastErrno((unixFile*)id, errno); break; }else if( got>0 ){ cnt -= got; offset += got; prior += got; pBuf = (void*)(got + (char*)pBuf); } }while( got>0 ); TIMER_END; OSTRACE(("READ %-3d %5d %7lld %llu\n", id->h, got+prior, offset-prior, TIMER_ELAPSED)); return got+prior; } /* ** Read data from a file into a buffer. Return SQLITE_OK if all ** bytes were read successfully and SQLITE_IOERR if anything goes ** wrong. */ static int unixRead( sqlite3_file *id, void *pBuf, int amt, sqlite3_int64 offset ){ unixFile *pFile = (unixFile *)id; int got; assert( id ); assert( offset>=0 ); assert( amt>0 ); /* If this is a database file (not a journal, super-journal or temp ** file), the bytes in the locking range should never be read or written. */ #if 0 assert( pFile->pPreallocatedUnused==0 || offset>=PENDING_BYTE+512 || offset+amt<=PENDING_BYTE ); #endif #if SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this read request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt); return SQLITE_OK; }else{ int nCopy = pFile->mmapSize - offset; memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif got = seekAndRead(pFile, offset, pBuf, amt); if( got==amt ){ return SQLITE_OK; }else if( got<0 ){ /* pFile->lastErrno has been set by seekAndRead(). ** Usually we return SQLITE_IOERR_READ here, though for some ** kinds of errors we return SQLITE_IOERR_CORRUPTFS. The ** SQLITE_IOERR_CORRUPTFS will be converted into SQLITE_CORRUPT ** prior to returning to the application by the sqlite3ApiExit() ** routine. */ switch( pFile->lastErrno ){ case ERANGE: case EIO: #ifdef ENXIO case ENXIO: #endif #ifdef EDEVERR case EDEVERR: #endif return SQLITE_IOERR_CORRUPTFS; } return SQLITE_IOERR_READ; }else{ storeLastErrno(pFile, 0); /* not a system error */ /* Unread parts of the buffer must be zero-filled */ memset(&((char*)pBuf)[got], 0, amt-got); return SQLITE_IOERR_SHORT_READ; } } /* ** Attempt to seek the file-descriptor passed as the first argument to ** absolute offset iOff, then attempt to write nBuf bytes of data from ** pBuf to it. If an error occurs, return -1 and set *piErrno. Otherwise, ** return the actual number of bytes written (which may be less than ** nBuf). */ static int seekAndWriteFd( int fd, /* File descriptor to write to */ i64 iOff, /* File offset to begin writing at */ const void *pBuf, /* Copy data from this buffer to the file */ int nBuf, /* Size of buffer pBuf in bytes */ int *piErrno /* OUT: Error number if error occurs */ ){ int rc = 0; /* Value returned by system call */ assert( nBuf==(nBuf&0x1ffff) ); assert( fd>2 ); assert( piErrno!=0 ); nBuf &= 0x1ffff; TIMER_START; #if defined(USE_PREAD) do{ rc = (int)osPwrite(fd, pBuf, nBuf, iOff); }while( rc<0 && errno==EINTR ); #elif defined(USE_PREAD64) do{ rc = (int)osPwrite64(fd, pBuf, nBuf, iOff);}while( rc<0 && errno==EINTR); #else do{ i64 iSeek = lseek(fd, iOff, SEEK_SET); SimulateIOError( iSeek = -1 ); if( iSeek<0 ){ rc = -1; break; } rc = osWrite(fd, pBuf, nBuf); }while( rc<0 && errno==EINTR ); #endif TIMER_END; OSTRACE(("WRITE %-3d %5d %7lld %llu\n", fd, rc, iOff, TIMER_ELAPSED)); if( rc<0 ) *piErrno = errno; return rc; } /* ** Seek to the offset in id->offset then read cnt bytes into pBuf. ** Return the number of bytes actually read. Update the offset. ** ** To avoid stomping the errno value on a failed write the lastErrno value ** is set before returning. */ static int seekAndWrite(unixFile *id, i64 offset, const void *pBuf, int cnt){ return seekAndWriteFd(id->h, offset, pBuf, cnt, &id->lastErrno); } /* ** Write data from a buffer into a file. Return SQLITE_OK on success ** or some other error code on failure. */ static int unixWrite( sqlite3_file *id, const void *pBuf, int amt, sqlite3_int64 offset ){ unixFile *pFile = (unixFile*)id; int wrote = 0; assert( id ); assert( amt>0 ); /* If this is a database file (not a journal, super-journal or temp ** file), the bytes in the locking range should never be read or written. */ #if 0 assert( pFile->pPreallocatedUnused==0 || offset>=PENDING_BYTE+512 || offset+amt<=PENDING_BYTE ); #endif #ifdef SQLITE_DEBUG /* If we are doing a normal write to a database file (as opposed to ** doing a hot-journal rollback or a write to some file other than a ** normal database file) then record the fact that the database ** has changed. If the transaction counter is modified, record that ** fact too. */ if( pFile->inNormalWrite ){ pFile->dbUpdate = 1; /* The database has been modified */ if( offset<=24 && offset+amt>=27 ){ int rc; char oldCntr[4]; SimulateIOErrorBenign(1); rc = seekAndRead(pFile, 24, oldCntr, 4); SimulateIOErrorBenign(0); if( rc!=4 || memcmp(oldCntr, &((char*)pBuf)[24-offset], 4)!=0 ){ pFile->transCntrChng = 1; /* The transaction counter has changed */ } } } #endif #if defined(SQLITE_MMAP_READWRITE) && SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this write request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt); return SQLITE_OK; }else{ int nCopy = pFile->mmapSize - offset; memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif while( (wrote = seekAndWrite(pFile, offset, pBuf, amt))0 ){ amt -= wrote; offset += wrote; pBuf = &((char*)pBuf)[wrote]; } SimulateIOError(( wrote=(-1), amt=1 )); SimulateDiskfullError(( wrote=0, amt=1 )); if( amt>wrote ){ if( wrote<0 && pFile->lastErrno!=ENOSPC ){ /* lastErrno set by seekAndWrite */ return SQLITE_IOERR_WRITE; }else{ storeLastErrno(pFile, 0); /* not a system error */ return SQLITE_FULL; } } return SQLITE_OK; } #ifdef SQLITE_TEST /* ** Count the number of fullsyncs and normal syncs. This is used to test ** that syncs and fullsyncs are occurring at the right times. */ SQLITE_API int sqlite3_sync_count = 0; SQLITE_API int sqlite3_fullsync_count = 0; #endif /* ** We do not trust systems to provide a working fdatasync(). Some do. ** Others do no. To be safe, we will stick with the (slightly slower) ** fsync(). If you know that your system does support fdatasync() correctly, ** then simply compile with -Dfdatasync=fdatasync or -DHAVE_FDATASYNC */ #if !defined(fdatasync) && !HAVE_FDATASYNC # define fdatasync fsync #endif /* ** Define HAVE_FULLFSYNC to 0 or 1 depending on whether or not ** the F_FULLFSYNC macro is defined. F_FULLFSYNC is currently ** only available on Mac OS X. But that could change. */ #ifdef F_FULLFSYNC # define HAVE_FULLFSYNC 1 #else # define HAVE_FULLFSYNC 0 #endif /* ** The fsync() system call does not work as advertised on many ** unix systems. The following procedure is an attempt to make ** it work better. ** ** The SQLITE_NO_SYNC macro disables all fsync()s. This is useful ** for testing when we want to run through the test suite quickly. ** You are strongly advised *not* to deploy with SQLITE_NO_SYNC ** enabled, however, since with SQLITE_NO_SYNC enabled, an OS crash ** or power failure will likely corrupt the database file. ** ** SQLite sets the dataOnly flag if the size of the file is unchanged. ** The idea behind dataOnly is that it should only write the file content ** to disk, not the inode. We only set dataOnly if the file size is ** unchanged since the file size is part of the inode. However, ** Ted Ts'o tells us that fdatasync() will also write the inode if the ** file size has changed. The only real difference between fdatasync() ** and fsync(), Ted tells us, is that fdatasync() will not flush the ** inode if the mtime or owner or other inode attributes have changed. ** We only care about the file size, not the other file attributes, so ** as far as SQLite is concerned, an fdatasync() is always adequate. ** So, we always use fdatasync() if it is available, regardless of ** the value of the dataOnly flag. */ static int full_fsync(int fd, int fullSync, int dataOnly){ int rc; /* The following "ifdef/elif/else/" block has the same structure as ** the one below. It is replicated here solely to avoid cluttering ** up the real code with the UNUSED_PARAMETER() macros. */ #ifdef SQLITE_NO_SYNC UNUSED_PARAMETER(fd); UNUSED_PARAMETER(fullSync); UNUSED_PARAMETER(dataOnly); #elif HAVE_FULLFSYNC UNUSED_PARAMETER(dataOnly); #else UNUSED_PARAMETER(fullSync); UNUSED_PARAMETER(dataOnly); #endif /* Record the number of times that we do a normal fsync() and ** FULLSYNC. This is used during testing to verify that this procedure ** gets called with the correct arguments. */ #ifdef SQLITE_TEST if( fullSync ) sqlite3_fullsync_count++; sqlite3_sync_count++; #endif /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a ** no-op. But go ahead and call fstat() to validate the file ** descriptor as we need a method to provoke a failure during ** coverate testing. */ #ifdef SQLITE_NO_SYNC { struct stat buf; rc = osFstat(fd, &buf); } #elif HAVE_FULLFSYNC if( fullSync ){ rc = osFcntl(fd, F_FULLFSYNC, 0); }else{ rc = 1; } /* If the FULLFSYNC failed, fall back to attempting an fsync(). ** It shouldn't be possible for fullfsync to fail on the local ** file system (on OSX), so failure indicates that FULLFSYNC ** isn't supported for this file system. So, attempt an fsync ** and (for now) ignore the overhead of a superfluous fcntl call. ** It'd be better to detect fullfsync support once and avoid ** the fcntl call every time sync is called. */ if( rc ) rc = fsync(fd); #elif defined(__APPLE__) /* fdatasync() on HFS+ doesn't yet flush the file size if it changed correctly ** so currently we default to the macro that redefines fdatasync to fsync */ rc = fsync(fd); #else rc = fdatasync(fd); #if OS_VXWORKS if( rc==-1 && errno==ENOTSUP ){ rc = fsync(fd); } #endif /* OS_VXWORKS */ #endif /* ifdef SQLITE_NO_SYNC elif HAVE_FULLFSYNC */ if( OS_VXWORKS && rc!= -1 ){ rc = 0; } return rc; } /* ** Open a file descriptor to the directory containing file zFilename. ** If successful, *pFd is set to the opened file descriptor and ** SQLITE_OK is returned. If an error occurs, either SQLITE_NOMEM ** or SQLITE_CANTOPEN is returned and *pFd is set to an undefined ** value. ** ** The directory file descriptor is used for only one thing - to ** fsync() a directory to make sure file creation and deletion events ** are flushed to disk. Such fsyncs are not needed on newer ** journaling filesystems, but are required on older filesystems. ** ** This routine can be overridden using the xSetSysCall interface. ** The ability to override this routine was added in support of the ** chromium sandbox. Opening a directory is a security risk (we are ** told) so making it overrideable allows the chromium sandbox to ** replace this routine with a harmless no-op. To make this routine ** a no-op, replace it with a stub that returns SQLITE_OK but leaves ** *pFd set to a negative number. ** ** If SQLITE_OK is returned, the caller is responsible for closing ** the file descriptor *pFd using close(). */ static int openDirectory(const char *zFilename, int *pFd){ int ii; int fd = -1; char zDirname[MAX_PATHNAME+1]; sqlite3_snprintf(MAX_PATHNAME, zDirname, "%s", zFilename); for(ii=(int)strlen(zDirname); ii>0 && zDirname[ii]!='/'; ii--); if( ii>0 ){ zDirname[ii] = '\0'; }else{ if( zDirname[0]!='/' ) zDirname[0] = '.'; zDirname[1] = 0; } fd = robust_open(zDirname, O_RDONLY|O_BINARY, 0); if( fd>=0 ){ OSTRACE(("OPENDIR %-3d %s\n", fd, zDirname)); } *pFd = fd; if( fd>=0 ) return SQLITE_OK; return unixLogError(SQLITE_CANTOPEN_BKPT, "openDirectory", zDirname); } /* ** Make sure all writes to a particular file are committed to disk. ** ** If dataOnly==0 then both the file itself and its metadata (file ** size, access time, etc) are synced. If dataOnly!=0 then only the ** file data is synced. ** ** Under Unix, also make sure that the directory entry for the file ** has been created by fsync-ing the directory that contains the file. ** If we do not do this and we encounter a power failure, the directory ** entry for the journal might not exist after we reboot. The next ** SQLite to access the file will not know that the journal exists (because ** the directory entry for the journal was never created) and the transaction ** will not roll back - possibly leading to database corruption. */ static int unixSync(sqlite3_file *id, int flags){ int rc; unixFile *pFile = (unixFile*)id; int isDataOnly = (flags&SQLITE_SYNC_DATAONLY); int isFullsync = (flags&0x0F)==SQLITE_SYNC_FULL; /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */ assert((flags&0x0F)==SQLITE_SYNC_NORMAL || (flags&0x0F)==SQLITE_SYNC_FULL ); /* Unix cannot, but some systems may return SQLITE_FULL from here. This ** line is to test that doing so does not cause any problems. */ SimulateDiskfullError( return SQLITE_FULL ); assert( pFile ); OSTRACE(("SYNC %-3d\n", pFile->h)); rc = full_fsync(pFile->h, isFullsync, isDataOnly); SimulateIOError( rc=1 ); if( rc ){ storeLastErrno(pFile, errno); return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath); } /* Also fsync the directory containing the file if the DIRSYNC flag ** is set. This is a one-time occurrence. Many systems (examples: AIX) ** are unable to fsync a directory, so ignore errors on the fsync. */ if( pFile->ctrlFlags & UNIXFILE_DIRSYNC ){ int dirfd; OSTRACE(("DIRSYNC %s (have_fullfsync=%d fullsync=%d)\n", pFile->zPath, HAVE_FULLFSYNC, isFullsync)); rc = osOpenDirectory(pFile->zPath, &dirfd); if( rc==SQLITE_OK ){ full_fsync(dirfd, 0, 0); robust_close(pFile, dirfd, __LINE__); }else{ assert( rc==SQLITE_CANTOPEN ); rc = SQLITE_OK; } pFile->ctrlFlags &= ~UNIXFILE_DIRSYNC; } return rc; } /* ** Truncate an open file to a specified size */ static int unixTruncate(sqlite3_file *id, i64 nByte){ unixFile *pFile = (unixFile *)id; int rc; assert( pFile ); SimulateIOError( return SQLITE_IOERR_TRUNCATE ); /* If the user has configured a chunk-size for this file, truncate the ** file so that it consists of an integer number of chunks (i.e. the ** actual file size after the operation may be larger than the requested ** size). */ if( pFile->szChunk>0 ){ nByte = ((nByte + pFile->szChunk - 1)/pFile->szChunk) * pFile->szChunk; } rc = robust_ftruncate(pFile->h, nByte); if( rc ){ storeLastErrno(pFile, errno); return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); }else{ #ifdef SQLITE_DEBUG /* If we are doing a normal write to a database file (as opposed to ** doing a hot-journal rollback or a write to some file other than a ** normal database file) and we truncate the file to zero length, ** that effectively updates the change counter. This might happen ** when restoring a database using the backup API from a zero-length ** source. */ if( pFile->inNormalWrite && nByte==0 ){ pFile->transCntrChng = 1; } #endif #if SQLITE_MAX_MMAP_SIZE>0 /* If the file was just truncated to a size smaller than the currently ** mapped region, reduce the effective mapping size as well. SQLite will ** use read() and write() to access data beyond this point from now on. */ if( nBytemmapSize ){ pFile->mmapSize = nByte; } #endif return SQLITE_OK; } } /* ** Determine the current size of a file in bytes */ static int unixFileSize(sqlite3_file *id, i64 *pSize){ int rc; struct stat buf; assert( id ); rc = osFstat(((unixFile*)id)->h, &buf); SimulateIOError( rc=1 ); if( rc!=0 ){ storeLastErrno((unixFile*)id, errno); return SQLITE_IOERR_FSTAT; } *pSize = buf.st_size; /* When opening a zero-size database, the findInodeInfo() procedure ** writes a single byte into that file in order to work around a bug ** in the OS-X msdos filesystem. In order to avoid problems with upper ** layers, we need to report this file size as zero even though it is ** really 1. Ticket #3260. */ if( *pSize==1 ) *pSize = 0; return SQLITE_OK; } #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) /* ** Handler for proxy-locking file-control verbs. Defined below in the ** proxying locking division. */ static int proxyFileControl(sqlite3_file*,int,void*); #endif /* ** This function is called to handle the SQLITE_FCNTL_SIZE_HINT ** file-control operation. Enlarge the database to nBytes in size ** (rounded up to the next chunk-size). If the database is already ** nBytes or larger, this routine is a no-op. */ static int fcntlSizeHint(unixFile *pFile, i64 nByte){ if( pFile->szChunk>0 ){ i64 nSize; /* Required file size */ struct stat buf; /* Used to hold return values of fstat() */ if( osFstat(pFile->h, &buf) ){ return SQLITE_IOERR_FSTAT; } nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk; if( nSize>(i64)buf.st_size ){ #if defined(HAVE_POSIX_FALLOCATE) && HAVE_POSIX_FALLOCATE /* The code below is handling the return value of osFallocate() ** correctly. posix_fallocate() is defined to "returns zero on success, ** or an error number on failure". See the manpage for details. */ int err; do{ err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size); }while( err==EINTR ); if( err && err!=EINVAL ) return SQLITE_IOERR_WRITE; #else /* If the OS does not have posix_fallocate(), fake it. Write a ** single byte to the last byte in each block that falls entirely ** within the extended region. Then, if required, a single byte ** at offset (nSize-1), to set the size of the file correctly. ** This is a similar technique to that used by glibc on systems ** that do not have a real fallocate() call. */ int nBlk = buf.st_blksize; /* File-system block size */ int nWrite = 0; /* Number of bytes written by seekAndWrite */ i64 iWrite; /* Next offset to write to */ iWrite = (buf.st_size/nBlk)*nBlk + nBlk - 1; assert( iWrite>=buf.st_size ); assert( ((iWrite+1)%nBlk)==0 ); for(/*no-op*/; iWrite=nSize ) iWrite = nSize - 1; nWrite = seekAndWrite(pFile, iWrite, "", 1); if( nWrite!=1 ) return SQLITE_IOERR_WRITE; } #endif } } #if SQLITE_MAX_MMAP_SIZE>0 if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){ int rc; if( pFile->szChunk<=0 ){ if( robust_ftruncate(pFile->h, nByte) ){ storeLastErrno(pFile, errno); return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); } } rc = unixMapfile(pFile, nByte); return rc; } #endif return SQLITE_OK; } /* ** If *pArg is initially negative then this is a query. Set *pArg to ** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set. ** ** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags. */ static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){ if( *pArg<0 ){ *pArg = (pFile->ctrlFlags & mask)!=0; }else if( (*pArg)==0 ){ pFile->ctrlFlags &= ~mask; }else{ pFile->ctrlFlags |= mask; } } /* Forward declaration */ static int unixGetTempname(int nBuf, char *zBuf); #ifndef SQLITE_OMIT_WAL static int unixFcntlExternalReader(unixFile*, int*); #endif /* ** Information and control of an open file handle. */ static int unixFileControl(sqlite3_file *id, int op, void *pArg){ unixFile *pFile = (unixFile*)id; switch( op ){ #if defined(__linux__) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) case SQLITE_FCNTL_BEGIN_ATOMIC_WRITE: { int rc = osIoctl(pFile->h, F2FS_IOC_START_ATOMIC_WRITE); return rc ? SQLITE_IOERR_BEGIN_ATOMIC : SQLITE_OK; } case SQLITE_FCNTL_COMMIT_ATOMIC_WRITE: { int rc = osIoctl(pFile->h, F2FS_IOC_COMMIT_ATOMIC_WRITE); return rc ? SQLITE_IOERR_COMMIT_ATOMIC : SQLITE_OK; } case SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE: { int rc = osIoctl(pFile->h, F2FS_IOC_ABORT_VOLATILE_WRITE); return rc ? SQLITE_IOERR_ROLLBACK_ATOMIC : SQLITE_OK; } #endif /* __linux__ && SQLITE_ENABLE_BATCH_ATOMIC_WRITE */ case SQLITE_FCNTL_LOCKSTATE: { *(int*)pArg = pFile->eFileLock; return SQLITE_OK; } case SQLITE_FCNTL_LAST_ERRNO: { *(int*)pArg = pFile->lastErrno; return SQLITE_OK; } case SQLITE_FCNTL_CHUNK_SIZE: { pFile->szChunk = *(int *)pArg; return SQLITE_OK; } case SQLITE_FCNTL_SIZE_HINT: { int rc; SimulateIOErrorBenign(1); rc = fcntlSizeHint(pFile, *(i64 *)pArg); SimulateIOErrorBenign(0); return rc; } case SQLITE_FCNTL_PERSIST_WAL: { unixModeBit(pFile, UNIXFILE_PERSIST_WAL, (int*)pArg); return SQLITE_OK; } case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { unixModeBit(pFile, UNIXFILE_PSOW, (int*)pArg); return SQLITE_OK; } case SQLITE_FCNTL_VFSNAME: { *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); return SQLITE_OK; } case SQLITE_FCNTL_TEMPFILENAME: { char *zTFile = sqlite3_malloc64( pFile->pVfs->mxPathname ); if( zTFile ){ unixGetTempname(pFile->pVfs->mxPathname, zTFile); *(char**)pArg = zTFile; } return SQLITE_OK; } case SQLITE_FCNTL_HAS_MOVED: { *(int*)pArg = fileHasMoved(pFile); return SQLITE_OK; } #ifdef SQLITE_ENABLE_SETLK_TIMEOUT case SQLITE_FCNTL_LOCK_TIMEOUT: { int iOld = pFile->iBusyTimeout; pFile->iBusyTimeout = *(int*)pArg; *(int*)pArg = iOld; return SQLITE_OK; } #endif #if SQLITE_MAX_MMAP_SIZE>0 case SQLITE_FCNTL_MMAP_SIZE: { i64 newLimit = *(i64*)pArg; int rc = SQLITE_OK; if( newLimit>sqlite3GlobalConfig.mxMmap ){ newLimit = sqlite3GlobalConfig.mxMmap; } /* The value of newLimit may be eventually cast to (size_t) and passed ** to mmap(). Restrict its value to 2GB if (size_t) is not at least a ** 64-bit type. */ if( newLimit>0 && sizeof(size_t)<8 ){ newLimit = (newLimit & 0x7FFFFFFF); } *(i64*)pArg = pFile->mmapSizeMax; if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ pFile->mmapSizeMax = newLimit; if( pFile->mmapSize>0 ){ unixUnmapfile(pFile); rc = unixMapfile(pFile, -1); } } return rc; } #endif #ifdef SQLITE_DEBUG /* The pager calls this method to signal that it has done ** a rollback and that the database is therefore unchanged and ** it hence it is OK for the transaction change counter to be ** unchanged. */ case SQLITE_FCNTL_DB_UNCHANGED: { ((unixFile*)id)->dbUpdate = 0; return SQLITE_OK; } #endif #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) case SQLITE_FCNTL_SET_LOCKPROXYFILE: case SQLITE_FCNTL_GET_LOCKPROXYFILE: { return proxyFileControl(id,op,pArg); } #endif /* SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) */ case SQLITE_FCNTL_EXTERNAL_READER: { #ifndef SQLITE_OMIT_WAL return unixFcntlExternalReader((unixFile*)id, (int*)pArg); #else *(int*)pArg = 0; return SQLITE_OK; #endif } } return SQLITE_NOTFOUND; } /* ** If pFd->sectorSize is non-zero when this function is called, it is a ** no-op. Otherwise, the values of pFd->sectorSize and ** pFd->deviceCharacteristics are set according to the file-system ** characteristics. ** ** There are two versions of this function. One for QNX and one for all ** other systems. */ #ifndef __QNXNTO__ static void setDeviceCharacteristics(unixFile *pFd){ assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 ); if( pFd->sectorSize==0 ){ #if defined(__linux__) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) int res; u32 f = 0; /* Check for support for F2FS atomic batch writes. */ res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f); if( res==0 && (f & F2FS_FEATURE_ATOMIC_WRITE) ){ pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC; } #endif /* __linux__ && SQLITE_ENABLE_BATCH_ATOMIC_WRITE */ /* Set the POWERSAFE_OVERWRITE flag if requested. */ if( pFd->ctrlFlags & UNIXFILE_PSOW ){ pFd->deviceCharacteristics |= SQLITE_IOCAP_POWERSAFE_OVERWRITE; } pFd->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; } } #else #include #include static void setDeviceCharacteristics(unixFile *pFile){ if( pFile->sectorSize == 0 ){ struct statvfs fsInfo; /* Set defaults for non-supported filesystems */ pFile->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; pFile->deviceCharacteristics = 0; if( fstatvfs(pFile->h, &fsInfo) == -1 ) { return; } if( !strcmp(fsInfo.f_basetype, "tmp") ) { pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = SQLITE_IOCAP_ATOMIC4K | /* All ram filesystem writes are atomic */ SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( strstr(fsInfo.f_basetype, "etfs") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = /* etfs cluster size writes are atomic */ (pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) | SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = SQLITE_IOCAP_ATOMIC | /* All filesystem writes are atomic */ SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = /* full bitset of atomics from max sector size and smaller */ ((pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) << 1) - 2 | SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( strstr(fsInfo.f_basetype, "dos") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = /* full bitset of atomics from max sector size and smaller */ ((pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) << 1) - 2 | SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else{ pFile->deviceCharacteristics = SQLITE_IOCAP_ATOMIC512 | /* blocks are atomic */ SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ 0; } } /* Last chance verification. If the sector size isn't a multiple of 512 ** then it isn't valid.*/ if( pFile->sectorSize % 512 != 0 ){ pFile->deviceCharacteristics = 0; pFile->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; } } #endif /* ** Return the sector size in bytes of the underlying block device for ** the specified file. This is almost always 512 bytes, but may be ** larger for some devices. ** ** SQLite code assumes this function cannot fail. It also assumes that ** if two files are created in the same file-system directory (i.e. ** a database and its journal file) that the sector size will be the ** same for both. */ static int unixSectorSize(sqlite3_file *id){ unixFile *pFd = (unixFile*)id; setDeviceCharacteristics(pFd); return pFd->sectorSize; } /* ** Return the device characteristics for the file. ** ** This VFS is set up to return SQLITE_IOCAP_POWERSAFE_OVERWRITE by default. ** However, that choice is controversial since technically the underlying ** file system does not always provide powersafe overwrites. (In other ** words, after a power-loss event, parts of the file that were never ** written might end up being altered.) However, non-PSOW behavior is very, ** very rare. And asserting PSOW makes a large reduction in the amount ** of required I/O for journaling, since a lot of padding is eliminated. ** Hence, while POWERSAFE_OVERWRITE is on by default, there is a file-control ** available to turn it off and URI query parameter available to turn it off. */ static int unixDeviceCharacteristics(sqlite3_file *id){ unixFile *pFd = (unixFile*)id; setDeviceCharacteristics(pFd); return pFd->deviceCharacteristics; } #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 /* ** Return the system page size. ** ** This function should not be called directly by other code in this file. ** Instead, it should be called via macro osGetpagesize(). */ static int unixGetpagesize(void){ #if OS_VXWORKS return 1024; #elif defined(_BSD_SOURCE) return getpagesize(); #else return (int)sysconf(_SC_PAGESIZE); #endif } #endif /* !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 */ #ifndef SQLITE_OMIT_WAL /* ** Object used to represent an shared memory buffer. ** ** When multiple threads all reference the same wal-index, each thread ** has its own unixShm object, but they all point to a single instance ** of this unixShmNode object. In other words, each wal-index is opened ** only once per process. ** ** Each unixShmNode object is connected to a single unixInodeInfo object. ** We could coalesce this object into unixInodeInfo, but that would mean ** every open file that does not use shared memory (in other words, most ** open files) would have to carry around this extra information. So ** the unixInodeInfo object contains a pointer to this unixShmNode object ** and the unixShmNode object is created only when needed. ** ** unixMutexHeld() must be true when creating or destroying ** this object or while reading or writing the following fields: ** ** nRef ** ** The following fields are read-only after the object is created: ** ** hShm ** zFilename ** ** Either unixShmNode.pShmMutex must be held or unixShmNode.nRef==0 and ** unixMutexHeld() is true when reading or writing any other field ** in this structure. */ struct unixShmNode { unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */ sqlite3_mutex *pShmMutex; /* Mutex to access this object */ char *zFilename; /* Name of the mmapped file */ int hShm; /* Open file descriptor */ int szRegion; /* Size of shared-memory regions */ u16 nRegion; /* Size of array apRegion */ u8 isReadonly; /* True if read-only */ u8 isUnlocked; /* True if no DMS lock held */ char **apRegion; /* Array of mapped shared-memory regions */ int nRef; /* Number of unixShm objects pointing to this */ unixShm *pFirst; /* All unixShm objects pointing to this */ int aLock[SQLITE_SHM_NLOCK]; /* # shared locks on slot, -1==excl lock */ #ifdef SQLITE_DEBUG u8 exclMask; /* Mask of exclusive locks held */ u8 sharedMask; /* Mask of shared locks held */ u8 nextShmId; /* Next available unixShm.id value */ #endif }; /* ** Structure used internally by this VFS to record the state of an ** open shared memory connection. ** ** The following fields are initialized when this object is created and ** are read-only thereafter: ** ** unixShm.pShmNode ** unixShm.id ** ** All other fields are read/write. The unixShm.pShmNode->pShmMutex must ** be held while accessing any read/write fields. */ struct unixShm { unixShmNode *pShmNode; /* The underlying unixShmNode object */ unixShm *pNext; /* Next unixShm with the same unixShmNode */ u8 hasMutex; /* True if holding the unixShmNode->pShmMutex */ u8 id; /* Id of this connection within its unixShmNode */ u16 sharedMask; /* Mask of shared locks held */ u16 exclMask; /* Mask of exclusive locks held */ }; /* ** Constants used for locking */ #define UNIX_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */ #define UNIX_SHM_DMS (UNIX_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */ /* ** Use F_GETLK to check whether or not there are any readers with open ** wal-mode transactions in other processes on database file pFile. If ** no error occurs, return SQLITE_OK and set (*piOut) to 1 if there are ** such transactions, or 0 otherwise. If an error occurs, return an ** SQLite error code. The final value of *piOut is undefined in this ** case. */ static int unixFcntlExternalReader(unixFile *pFile, int *piOut){ int rc = SQLITE_OK; *piOut = 0; if( pFile->pShm){ unixShmNode *pShmNode = pFile->pShm->pShmNode; struct flock f; memset(&f, 0, sizeof(f)); f.l_type = F_WRLCK; f.l_whence = SEEK_SET; f.l_start = UNIX_SHM_BASE + 3; f.l_len = SQLITE_SHM_NLOCK - 3; sqlite3_mutex_enter(pShmNode->pShmMutex); if( osFcntl(pShmNode->hShm, F_GETLK, &f)<0 ){ rc = SQLITE_IOERR_LOCK; }else{ *piOut = (f.l_type!=F_UNLCK); } sqlite3_mutex_leave(pShmNode->pShmMutex); } return rc; } /* ** Apply posix advisory locks for all bytes from ofst through ofst+n-1. ** ** Locks block if the mask is exactly UNIX_SHM_C and are non-blocking ** otherwise. */ static int unixShmSystemLock( unixFile *pFile, /* Open connection to the WAL file */ int lockType, /* F_UNLCK, F_RDLCK, or F_WRLCK */ int ofst, /* First byte of the locking range */ int n /* Number of bytes to lock */ ){ unixShmNode *pShmNode; /* Apply locks to this open shared-memory segment */ struct flock f; /* The posix advisory locking structure */ int rc = SQLITE_OK; /* Result code form fcntl() */ /* Access to the unixShmNode object is serialized by the caller */ pShmNode = pFile->pInode->pShmNode; assert( pShmNode->nRef==0 || sqlite3_mutex_held(pShmNode->pShmMutex) ); assert( pShmNode->nRef>0 || unixMutexHeld() ); /* Shared locks never span more than one byte */ assert( n==1 || lockType!=F_RDLCK ); /* Locks are within range */ assert( n>=1 && n<=SQLITE_SHM_NLOCK ); if( pShmNode->hShm>=0 ){ int res; /* Initialize the locking parameters */ f.l_type = lockType; f.l_whence = SEEK_SET; f.l_start = ofst; f.l_len = n; res = osSetPosixAdvisoryLock(pShmNode->hShm, &f, pFile); if( res==-1 ){ #ifdef SQLITE_ENABLE_SETLK_TIMEOUT rc = (pFile->iBusyTimeout ? SQLITE_BUSY_TIMEOUT : SQLITE_BUSY); #else rc = SQLITE_BUSY; #endif } } /* Update the global lock state and do debug tracing */ #ifdef SQLITE_DEBUG { u16 mask; OSTRACE(("SHM-LOCK ")); mask = ofst>31 ? 0xffff : (1<<(ofst+n)) - (1<exclMask &= ~mask; pShmNode->sharedMask &= ~mask; }else if( lockType==F_RDLCK ){ OSTRACE(("read-lock %d ok", ofst)); pShmNode->exclMask &= ~mask; pShmNode->sharedMask |= mask; }else{ assert( lockType==F_WRLCK ); OSTRACE(("write-lock %d ok", ofst)); pShmNode->exclMask |= mask; pShmNode->sharedMask &= ~mask; } }else{ if( lockType==F_UNLCK ){ OSTRACE(("unlock %d failed", ofst)); }else if( lockType==F_RDLCK ){ OSTRACE(("read-lock failed")); }else{ assert( lockType==F_WRLCK ); OSTRACE(("write-lock %d failed", ofst)); } } OSTRACE((" - afterwards %03x,%03x\n", pShmNode->sharedMask, pShmNode->exclMask)); } #endif return rc; } /* ** Return the minimum number of 32KB shm regions that should be mapped at ** a time, assuming that each mapping must be an integer multiple of the ** current system page-size. ** ** Usually, this is 1. The exception seems to be systems that are configured ** to use 64KB pages - in this case each mapping must cover at least two ** shm regions. */ static int unixShmRegionPerMap(void){ int shmsz = 32*1024; /* SHM region size */ int pgsz = osGetpagesize(); /* System page size */ assert( ((pgsz-1)&pgsz)==0 ); /* Page size must be a power of 2 */ if( pgszpInode->pShmNode; assert( unixMutexHeld() ); if( p && ALWAYS(p->nRef==0) ){ int nShmPerMap = unixShmRegionPerMap(); int i; assert( p->pInode==pFd->pInode ); sqlite3_mutex_free(p->pShmMutex); for(i=0; inRegion; i+=nShmPerMap){ if( p->hShm>=0 ){ osMunmap(p->apRegion[i], p->szRegion); }else{ sqlite3_free(p->apRegion[i]); } } sqlite3_free(p->apRegion); if( p->hShm>=0 ){ robust_close(pFd, p->hShm, __LINE__); p->hShm = -1; } p->pInode->pShmNode = 0; sqlite3_free(p); } } /* ** The DMS lock has not yet been taken on shm file pShmNode. Attempt to ** take it now. Return SQLITE_OK if successful, or an SQLite error ** code otherwise. ** ** If the DMS cannot be locked because this is a readonly_shm=1 ** connection and no other process already holds a lock, return ** SQLITE_READONLY_CANTINIT and set pShmNode->isUnlocked=1. */ static int unixLockSharedMemory(unixFile *pDbFd, unixShmNode *pShmNode){ struct flock lock; int rc = SQLITE_OK; /* Use F_GETLK to determine the locks other processes are holding ** on the DMS byte. If it indicates that another process is holding ** a SHARED lock, then this process may also take a SHARED lock ** and proceed with opening the *-shm file. ** ** Or, if no other process is holding any lock, then this process ** is the first to open it. In this case take an EXCLUSIVE lock on the ** DMS byte and truncate the *-shm file to zero bytes in size. Then ** downgrade to a SHARED lock on the DMS byte. ** ** If another process is holding an EXCLUSIVE lock on the DMS byte, ** return SQLITE_BUSY to the caller (it will try again). An earlier ** version of this code attempted the SHARED lock at this point. But ** this introduced a subtle race condition: if the process holding ** EXCLUSIVE failed just before truncating the *-shm file, then this ** process might open and use the *-shm file without truncating it. ** And if the *-shm file has been corrupted by a power failure or ** system crash, the database itself may also become corrupt. */ lock.l_whence = SEEK_SET; lock.l_start = UNIX_SHM_DMS; lock.l_len = 1; lock.l_type = F_WRLCK; if( osFcntl(pShmNode->hShm, F_GETLK, &lock)!=0 ) { rc = SQLITE_IOERR_LOCK; }else if( lock.l_type==F_UNLCK ){ if( pShmNode->isReadonly ){ pShmNode->isUnlocked = 1; rc = SQLITE_READONLY_CANTINIT; }else{ rc = unixShmSystemLock(pDbFd, F_WRLCK, UNIX_SHM_DMS, 1); /* The first connection to attach must truncate the -shm file. We ** truncate to 3 bytes (an arbitrary small number, less than the ** -shm header size) rather than 0 as a system debugging aid, to ** help detect if a -shm file truncation is legitimate or is the work ** or a rogue process. */ if( rc==SQLITE_OK && robust_ftruncate(pShmNode->hShm, 3) ){ rc = unixLogError(SQLITE_IOERR_SHMOPEN,"ftruncate",pShmNode->zFilename); } } }else if( lock.l_type==F_WRLCK ){ rc = SQLITE_BUSY; } if( rc==SQLITE_OK ){ assert( lock.l_type==F_UNLCK || lock.l_type==F_RDLCK ); rc = unixShmSystemLock(pDbFd, F_RDLCK, UNIX_SHM_DMS, 1); } return rc; } /* ** Open a shared-memory area associated with open database file pDbFd. ** This particular implementation uses mmapped files. ** ** The file used to implement shared-memory is in the same directory ** as the open database file and has the same name as the open database ** file with the "-shm" suffix added. For example, if the database file ** is "/home/user1/config.db" then the file that is created and mmapped ** for shared memory will be called "/home/user1/config.db-shm". ** ** Another approach to is to use files in /dev/shm or /dev/tmp or an ** some other tmpfs mount. But if a file in a different directory ** from the database file is used, then differing access permissions ** or a chroot() might cause two different processes on the same ** database to end up using different files for shared memory - ** meaning that their memory would not really be shared - resulting ** in database corruption. Nevertheless, this tmpfs file usage ** can be enabled at compile-time using -DSQLITE_SHM_DIRECTORY="/dev/shm" ** or the equivalent. The use of the SQLITE_SHM_DIRECTORY compile-time ** option results in an incompatible build of SQLite; builds of SQLite ** that with differing SQLITE_SHM_DIRECTORY settings attempt to use the ** same database file at the same time, database corruption will likely ** result. The SQLITE_SHM_DIRECTORY compile-time option is considered ** "unsupported" and may go away in a future SQLite release. ** ** When opening a new shared-memory file, if no other instances of that ** file are currently open, in this process or in other processes, then ** the file must be truncated to zero length or have its header cleared. ** ** If the original database file (pDbFd) is using the "unix-excl" VFS ** that means that an exclusive lock is held on the database file and ** that no other processes are able to read or write the database. In ** that case, we do not really need shared memory. No shared memory ** file is created. The shared memory will be simulated with heap memory. */ static int unixOpenSharedMemory(unixFile *pDbFd){ struct unixShm *p = 0; /* The connection to be opened */ struct unixShmNode *pShmNode; /* The underlying mmapped file */ int rc = SQLITE_OK; /* Result code */ unixInodeInfo *pInode; /* The inode of fd */ char *zShm; /* Name of the file used for SHM */ int nShmFilename; /* Size of the SHM filename in bytes */ /* Allocate space for the new unixShm object. */ p = sqlite3_malloc64( sizeof(*p) ); if( p==0 ) return SQLITE_NOMEM_BKPT; memset(p, 0, sizeof(*p)); assert( pDbFd->pShm==0 ); /* Check to see if a unixShmNode object already exists. Reuse an existing ** one if present. Create a new one if necessary. */ assert( unixFileMutexNotheld(pDbFd) ); unixEnterMutex(); pInode = pDbFd->pInode; pShmNode = pInode->pShmNode; if( pShmNode==0 ){ struct stat sStat; /* fstat() info for database file */ #ifndef SQLITE_SHM_DIRECTORY const char *zBasePath = pDbFd->zPath; #endif /* Call fstat() to figure out the permissions on the database file. If ** a new *-shm file is created, an attempt will be made to create it ** with the same permissions. */ if( osFstat(pDbFd->h, &sStat) ){ rc = SQLITE_IOERR_FSTAT; goto shm_open_err; } #ifdef SQLITE_SHM_DIRECTORY nShmFilename = sizeof(SQLITE_SHM_DIRECTORY) + 31; #else nShmFilename = 6 + (int)strlen(zBasePath); #endif pShmNode = sqlite3_malloc64( sizeof(*pShmNode) + nShmFilename ); if( pShmNode==0 ){ rc = SQLITE_NOMEM_BKPT; goto shm_open_err; } memset(pShmNode, 0, sizeof(*pShmNode)+nShmFilename); zShm = pShmNode->zFilename = (char*)&pShmNode[1]; #ifdef SQLITE_SHM_DIRECTORY sqlite3_snprintf(nShmFilename, zShm, SQLITE_SHM_DIRECTORY "/sqlite-shm-%x-%x", (u32)sStat.st_ino, (u32)sStat.st_dev); #else sqlite3_snprintf(nShmFilename, zShm, "%s-shm", zBasePath); sqlite3FileSuffix3(pDbFd->zPath, zShm); #endif pShmNode->hShm = -1; pDbFd->pInode->pShmNode = pShmNode; pShmNode->pInode = pDbFd->pInode; if( sqlite3GlobalConfig.bCoreMutex ){ pShmNode->pShmMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( pShmNode->pShmMutex==0 ){ rc = SQLITE_NOMEM_BKPT; goto shm_open_err; } } if( pInode->bProcessLock==0 ){ if( 0==sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){ pShmNode->hShm = robust_open(zShm, O_RDWR|O_CREAT|O_NOFOLLOW, (sStat.st_mode&0777)); } if( pShmNode->hShm<0 ){ pShmNode->hShm = robust_open(zShm, O_RDONLY|O_NOFOLLOW, (sStat.st_mode&0777)); if( pShmNode->hShm<0 ){ rc = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zShm); goto shm_open_err; } pShmNode->isReadonly = 1; } /* If this process is running as root, make sure that the SHM file ** is owned by the same user that owns the original database. Otherwise, ** the original owner will not be able to connect. */ robustFchown(pShmNode->hShm, sStat.st_uid, sStat.st_gid); rc = unixLockSharedMemory(pDbFd, pShmNode); if( rc!=SQLITE_OK && rc!=SQLITE_READONLY_CANTINIT ) goto shm_open_err; } } /* Make the new connection a child of the unixShmNode */ p->pShmNode = pShmNode; #ifdef SQLITE_DEBUG p->id = pShmNode->nextShmId++; #endif pShmNode->nRef++; pDbFd->pShm = p; unixLeaveMutex(); /* The reference count on pShmNode has already been incremented under ** the cover of the unixEnterMutex() mutex and the pointer from the ** new (struct unixShm) object to the pShmNode has been set. All that is ** left to do is to link the new object into the linked list starting ** at pShmNode->pFirst. This must be done while holding the ** pShmNode->pShmMutex. */ sqlite3_mutex_enter(pShmNode->pShmMutex); p->pNext = pShmNode->pFirst; pShmNode->pFirst = p; sqlite3_mutex_leave(pShmNode->pShmMutex); return rc; /* Jump here on any error */ shm_open_err: unixShmPurge(pDbFd); /* This call frees pShmNode if required */ sqlite3_free(p); unixLeaveMutex(); return rc; } /* ** This function is called to obtain a pointer to region iRegion of the ** shared-memory associated with the database file fd. Shared-memory regions ** are numbered starting from zero. Each shared-memory region is szRegion ** bytes in size. ** ** If an error occurs, an error code is returned and *pp is set to NULL. ** ** Otherwise, if the bExtend parameter is 0 and the requested shared-memory ** region has not been allocated (by any client, including one running in a ** separate process), then *pp is set to NULL and SQLITE_OK returned. If ** bExtend is non-zero and the requested shared-memory region has not yet ** been allocated, it is allocated by this function. ** ** If the shared-memory region has already been allocated or is allocated by ** this call as described above, then it is mapped into this processes ** address space (if it is not already), *pp is set to point to the mapped ** memory and SQLITE_OK returned. */ static int unixShmMap( sqlite3_file *fd, /* Handle open on database file */ int iRegion, /* Region to retrieve */ int szRegion, /* Size of regions */ int bExtend, /* True to extend file if necessary */ void volatile **pp /* OUT: Mapped memory */ ){ unixFile *pDbFd = (unixFile*)fd; unixShm *p; unixShmNode *pShmNode; int rc = SQLITE_OK; int nShmPerMap = unixShmRegionPerMap(); int nReqRegion; /* If the shared-memory file has not yet been opened, open it now. */ if( pDbFd->pShm==0 ){ rc = unixOpenSharedMemory(pDbFd); if( rc!=SQLITE_OK ) return rc; } p = pDbFd->pShm; pShmNode = p->pShmNode; sqlite3_mutex_enter(pShmNode->pShmMutex); if( pShmNode->isUnlocked ){ rc = unixLockSharedMemory(pDbFd, pShmNode); if( rc!=SQLITE_OK ) goto shmpage_out; pShmNode->isUnlocked = 0; } assert( szRegion==pShmNode->szRegion || pShmNode->nRegion==0 ); assert( pShmNode->pInode==pDbFd->pInode ); assert( pShmNode->hShm>=0 || pDbFd->pInode->bProcessLock==1 ); assert( pShmNode->hShm<0 || pDbFd->pInode->bProcessLock==0 ); /* Minimum number of regions required to be mapped. */ nReqRegion = ((iRegion+nShmPerMap) / nShmPerMap) * nShmPerMap; if( pShmNode->nRegionszRegion = szRegion; if( pShmNode->hShm>=0 ){ /* The requested region is not mapped into this processes address space. ** Check to see if it has been allocated (i.e. if the wal-index file is ** large enough to contain the requested region). */ if( osFstat(pShmNode->hShm, &sStat) ){ rc = SQLITE_IOERR_SHMSIZE; goto shmpage_out; } if( sStat.st_sizehShm, iPg*pgsz + pgsz-1,"",1,&x)!=1 ){ const char *zFile = pShmNode->zFilename; rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile); goto shmpage_out; } } } } } /* Map the requested memory region into this processes address space. */ apNew = (char **)sqlite3_realloc( pShmNode->apRegion, nReqRegion*sizeof(char *) ); if( !apNew ){ rc = SQLITE_IOERR_NOMEM_BKPT; goto shmpage_out; } pShmNode->apRegion = apNew; while( pShmNode->nRegionhShm>=0 ){ pMem = osMmap(0, nMap, pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE, MAP_SHARED, pShmNode->hShm, szRegion*(i64)pShmNode->nRegion ); if( pMem==MAP_FAILED ){ rc = unixLogError(SQLITE_IOERR_SHMMAP, "mmap", pShmNode->zFilename); goto shmpage_out; } }else{ pMem = sqlite3_malloc64(nMap); if( pMem==0 ){ rc = SQLITE_NOMEM_BKPT; goto shmpage_out; } memset(pMem, 0, nMap); } for(i=0; iapRegion[pShmNode->nRegion+i] = &((char*)pMem)[szRegion*i]; } pShmNode->nRegion += nShmPerMap; } } shmpage_out: if( pShmNode->nRegion>iRegion ){ *pp = pShmNode->apRegion[iRegion]; }else{ *pp = 0; } if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY; sqlite3_mutex_leave(pShmNode->pShmMutex); return rc; } /* ** Check that the pShmNode->aLock[] array comports with the locking bitmasks ** held by each client. Return true if it does, or false otherwise. This ** is to be used in an assert(). e.g. ** ** assert( assertLockingArrayOk(pShmNode) ); */ #ifdef SQLITE_DEBUG static int assertLockingArrayOk(unixShmNode *pShmNode){ unixShm *pX; int aLock[SQLITE_SHM_NLOCK]; assert( sqlite3_mutex_held(pShmNode->pShmMutex) ); memset(aLock, 0, sizeof(aLock)); for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ int i; for(i=0; iexclMask & (1<sharedMask & (1<=0 ); aLock[i]++; } } } assert( 0==memcmp(pShmNode->aLock, aLock, sizeof(aLock)) ); return (memcmp(pShmNode->aLock, aLock, sizeof(aLock))==0); } #endif /* ** Change the lock state for a shared-memory segment. ** ** Note that the relationship between SHAREd and EXCLUSIVE locks is a little ** different here than in posix. In xShmLock(), one can go from unlocked ** to shared and back or from unlocked to exclusive and back. But one may ** not go from shared to exclusive or from exclusive to shared. */ static int unixShmLock( sqlite3_file *fd, /* Database file holding the shared memory */ int ofst, /* First lock to acquire or release */ int n, /* Number of locks to acquire or release */ int flags /* What to do with the lock */ ){ unixFile *pDbFd = (unixFile*)fd; /* Connection holding shared memory */ unixShm *p = pDbFd->pShm; /* The shared memory being locked */ unixShmNode *pShmNode = p->pShmNode; /* The underlying file iNode */ int rc = SQLITE_OK; /* Result code */ u16 mask; /* Mask of locks to take or release */ int *aLock = pShmNode->aLock; assert( pShmNode==pDbFd->pInode->pShmNode ); assert( pShmNode->pInode==pDbFd->pInode ); assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK ); assert( n>=1 ); assert( flags==(SQLITE_SHM_LOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE) ); assert( n==1 || (flags & SQLITE_SHM_EXCLUSIVE)!=0 ); assert( pShmNode->hShm>=0 || pDbFd->pInode->bProcessLock==1 ); assert( pShmNode->hShm<0 || pDbFd->pInode->bProcessLock==0 ); /* Check that, if this to be a blocking lock, no locks that occur later ** in the following list than the lock being obtained are already held: ** ** 1. Checkpointer lock (ofst==1). ** 2. Write lock (ofst==0). ** 3. Read locks (ofst>=3 && ofstiBusyTimeout==0 || ( (ofst!=2) /* not RECOVER */ && (ofst!=1 || (p->exclMask|p->sharedMask)==0) && (ofst!=0 || (p->exclMask|p->sharedMask)<3) && (ofst<3 || (p->exclMask|p->sharedMask)<(1<1 || mask==(1<pShmMutex); assert( assertLockingArrayOk(pShmNode) ); if( flags & SQLITE_SHM_UNLOCK ){ if( (p->exclMask|p->sharedMask) & mask ){ int ii; int bUnlock = 1; for(ii=ofst; ii((p->sharedMask & (1<sharedMask & (1<1 ); aLock[ofst]--; } /* Undo the local locks */ if( rc==SQLITE_OK ){ p->exclMask &= ~mask; p->sharedMask &= ~mask; } } }else if( flags & SQLITE_SHM_SHARED ){ assert( n==1 ); assert( (p->exclMask & (1<sharedMask & mask)==0 ){ if( aLock[ofst]<0 ){ rc = SQLITE_BUSY; }else if( aLock[ofst]==0 ){ rc = unixShmSystemLock(pDbFd, F_RDLCK, ofst+UNIX_SHM_BASE, n); } /* Get the local shared locks */ if( rc==SQLITE_OK ){ p->sharedMask |= mask; aLock[ofst]++; } } }else{ /* Make sure no sibling connections hold locks that will block this ** lock. If any do, return SQLITE_BUSY right away. */ int ii; for(ii=ofst; iisharedMask & mask)==0 ); if( ALWAYS((p->exclMask & (1<sharedMask & mask)==0 ); p->exclMask |= mask; for(ii=ofst; iipShmMutex); OSTRACE(("SHM-LOCK shmid-%d, pid-%d got %03x,%03x\n", p->id, osGetpid(0), p->sharedMask, p->exclMask)); return rc; } /* ** Implement a memory barrier or memory fence on shared memory. ** ** All loads and stores begun before the barrier must complete before ** any load or store begun after the barrier. */ static void unixShmBarrier( sqlite3_file *fd /* Database file holding the shared memory */ ){ UNUSED_PARAMETER(fd); sqlite3MemoryBarrier(); /* compiler-defined memory barrier */ assert( fd->pMethods->xLock==nolockLock || unixFileMutexNotheld((unixFile*)fd) ); unixEnterMutex(); /* Also mutex, for redundancy */ unixLeaveMutex(); } /* ** Close a connection to shared-memory. Delete the underlying ** storage if deleteFlag is true. ** ** If there is no shared memory associated with the connection then this ** routine is a harmless no-op. */ static int unixShmUnmap( sqlite3_file *fd, /* The underlying database file */ int deleteFlag /* Delete shared-memory if true */ ){ unixShm *p; /* The connection to be closed */ unixShmNode *pShmNode; /* The underlying shared-memory file */ unixShm **pp; /* For looping over sibling connections */ unixFile *pDbFd; /* The underlying database file */ pDbFd = (unixFile*)fd; p = pDbFd->pShm; if( p==0 ) return SQLITE_OK; pShmNode = p->pShmNode; assert( pShmNode==pDbFd->pInode->pShmNode ); assert( pShmNode->pInode==pDbFd->pInode ); /* Remove connection p from the set of connections associated ** with pShmNode */ sqlite3_mutex_enter(pShmNode->pShmMutex); for(pp=&pShmNode->pFirst; (*pp)!=p; pp = &(*pp)->pNext){} *pp = p->pNext; /* Free the connection p */ sqlite3_free(p); pDbFd->pShm = 0; sqlite3_mutex_leave(pShmNode->pShmMutex); /* If pShmNode->nRef has reached 0, then close the underlying ** shared-memory file, too */ assert( unixFileMutexNotheld(pDbFd) ); unixEnterMutex(); assert( pShmNode->nRef>0 ); pShmNode->nRef--; if( pShmNode->nRef==0 ){ if( deleteFlag && pShmNode->hShm>=0 ){ osUnlink(pShmNode->zFilename); } unixShmPurge(pDbFd); } unixLeaveMutex(); return SQLITE_OK; } #else # define unixShmMap 0 # define unixShmLock 0 # define unixShmBarrier 0 # define unixShmUnmap 0 #endif /* #ifndef SQLITE_OMIT_WAL */ #if SQLITE_MAX_MMAP_SIZE>0 /* ** If it is currently memory mapped, unmap file pFd. */ static void unixUnmapfile(unixFile *pFd){ assert( pFd->nFetchOut==0 ); if( pFd->pMapRegion ){ osMunmap(pFd->pMapRegion, pFd->mmapSizeActual); pFd->pMapRegion = 0; pFd->mmapSize = 0; pFd->mmapSizeActual = 0; } } /* ** Attempt to set the size of the memory mapping maintained by file ** descriptor pFd to nNew bytes. Any existing mapping is discarded. ** ** If successful, this function sets the following variables: ** ** unixFile.pMapRegion ** unixFile.mmapSize ** unixFile.mmapSizeActual ** ** If unsuccessful, an error message is logged via sqlite3_log() and ** the three variables above are zeroed. In this case SQLite should ** continue accessing the database using the xRead() and xWrite() ** methods. */ static void unixRemapfile( unixFile *pFd, /* File descriptor object */ i64 nNew /* Required mapping size */ ){ const char *zErr = "mmap"; int h = pFd->h; /* File descriptor open on db file */ u8 *pOrig = (u8 *)pFd->pMapRegion; /* Pointer to current file mapping */ i64 nOrig = pFd->mmapSizeActual; /* Size of pOrig region in bytes */ u8 *pNew = 0; /* Location of new mapping */ int flags = PROT_READ; /* Flags to pass to mmap() */ assert( pFd->nFetchOut==0 ); assert( nNew>pFd->mmapSize ); assert( nNew<=pFd->mmapSizeMax ); assert( nNew>0 ); assert( pFd->mmapSizeActual>=pFd->mmapSize ); assert( MAP_FAILED!=0 ); #ifdef SQLITE_MMAP_READWRITE if( (pFd->ctrlFlags & UNIXFILE_RDONLY)==0 ) flags |= PROT_WRITE; #endif if( pOrig ){ #if HAVE_MREMAP i64 nReuse = pFd->mmapSize; #else const int szSyspage = osGetpagesize(); i64 nReuse = (pFd->mmapSize & ~(szSyspage-1)); #endif u8 *pReq = &pOrig[nReuse]; /* Unmap any pages of the existing mapping that cannot be reused. */ if( nReuse!=nOrig ){ osMunmap(pReq, nOrig-nReuse); } #if HAVE_MREMAP pNew = osMremap(pOrig, nReuse, nNew, MREMAP_MAYMOVE); zErr = "mremap"; #else pNew = osMmap(pReq, nNew-nReuse, flags, MAP_SHARED, h, nReuse); if( pNew!=MAP_FAILED ){ if( pNew!=pReq ){ osMunmap(pNew, nNew - nReuse); pNew = 0; }else{ pNew = pOrig; } } #endif /* The attempt to extend the existing mapping failed. Free it. */ if( pNew==MAP_FAILED || pNew==0 ){ osMunmap(pOrig, nReuse); } } /* If pNew is still NULL, try to create an entirely new mapping. */ if( pNew==0 ){ pNew = osMmap(0, nNew, flags, MAP_SHARED, h, 0); } if( pNew==MAP_FAILED ){ pNew = 0; nNew = 0; unixLogError(SQLITE_OK, zErr, pFd->zPath); /* If the mmap() above failed, assume that all subsequent mmap() calls ** will probably fail too. Fall back to using xRead/xWrite exclusively ** in this case. */ pFd->mmapSizeMax = 0; } pFd->pMapRegion = (void *)pNew; pFd->mmapSize = pFd->mmapSizeActual = nNew; } /* ** Memory map or remap the file opened by file-descriptor pFd (if the file ** is already mapped, the existing mapping is replaced by the new). Or, if ** there already exists a mapping for this file, and there are still ** outstanding xFetch() references to it, this function is a no-op. ** ** If parameter nByte is non-negative, then it is the requested size of ** the mapping to create. Otherwise, if nByte is less than zero, then the ** requested size is the size of the file on disk. The actual size of the ** created mapping is either the requested size or the value configured ** using SQLITE_FCNTL_MMAP_LIMIT, whichever is smaller. ** ** SQLITE_OK is returned if no error occurs (even if the mapping is not ** recreated as a result of outstanding references) or an SQLite error ** code otherwise. */ static int unixMapfile(unixFile *pFd, i64 nMap){ assert( nMap>=0 || pFd->nFetchOut==0 ); assert( nMap>0 || (pFd->mmapSize==0 && pFd->pMapRegion==0) ); if( pFd->nFetchOut>0 ) return SQLITE_OK; if( nMap<0 ){ struct stat statbuf; /* Low-level file information */ if( osFstat(pFd->h, &statbuf) ){ return SQLITE_IOERR_FSTAT; } nMap = statbuf.st_size; } if( nMap>pFd->mmapSizeMax ){ nMap = pFd->mmapSizeMax; } assert( nMap>0 || (pFd->mmapSize==0 && pFd->pMapRegion==0) ); if( nMap!=pFd->mmapSize ){ unixRemapfile(pFd, nMap); } return SQLITE_OK; } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* ** If possible, return a pointer to a mapping of file fd starting at offset ** iOff. The mapping must be valid for at least nAmt bytes. ** ** If such a pointer can be obtained, store it in *pp and return SQLITE_OK. ** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK. ** Finally, if an error does occur, return an SQLite error code. The final ** value of *pp is undefined in this case. ** ** If this function does return a pointer, the caller must eventually ** release the reference by calling unixUnfetch(). */ static int unixFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){ #if SQLITE_MAX_MMAP_SIZE>0 unixFile *pFd = (unixFile *)fd; /* The underlying database file */ #endif *pp = 0; #if SQLITE_MAX_MMAP_SIZE>0 if( pFd->mmapSizeMax>0 ){ if( pFd->pMapRegion==0 ){ int rc = unixMapfile(pFd, -1); if( rc!=SQLITE_OK ) return rc; } if( pFd->mmapSize >= iOff+nAmt ){ *pp = &((u8 *)pFd->pMapRegion)[iOff]; pFd->nFetchOut++; } } #endif return SQLITE_OK; } /* ** If the third argument is non-NULL, then this function releases a ** reference obtained by an earlier call to unixFetch(). The second ** argument passed to this function must be the same as the corresponding ** argument that was passed to the unixFetch() invocation. ** ** Or, if the third argument is NULL, then this function is being called ** to inform the VFS layer that, according to POSIX, any existing mapping ** may now be invalid and should be unmapped. */ static int unixUnfetch(sqlite3_file *fd, i64 iOff, void *p){ #if SQLITE_MAX_MMAP_SIZE>0 unixFile *pFd = (unixFile *)fd; /* The underlying database file */ UNUSED_PARAMETER(iOff); /* If p==0 (unmap the entire file) then there must be no outstanding ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference), ** then there must be at least one outstanding. */ assert( (p==0)==(pFd->nFetchOut==0) ); /* If p!=0, it must match the iOff value. */ assert( p==0 || p==&((u8 *)pFd->pMapRegion)[iOff] ); if( p ){ pFd->nFetchOut--; }else{ unixUnmapfile(pFd); } assert( pFd->nFetchOut>=0 ); #else UNUSED_PARAMETER(fd); UNUSED_PARAMETER(p); UNUSED_PARAMETER(iOff); #endif return SQLITE_OK; } /* ** Here ends the implementation of all sqlite3_file methods. ** ********************** End sqlite3_file Methods ******************************* ******************************************************************************/ /* ** This division contains definitions of sqlite3_io_methods objects that ** implement various file locking strategies. It also contains definitions ** of "finder" functions. A finder-function is used to locate the appropriate ** sqlite3_io_methods object for a particular database file. The pAppData ** field of the sqlite3_vfs VFS objects are initialized to be pointers to ** the correct finder-function for that VFS. ** ** Most finder functions return a pointer to a fixed sqlite3_io_methods ** object. The only interesting finder-function is autolockIoFinder, which ** looks at the filesystem type and tries to guess the best locking ** strategy from that. ** ** For finder-function F, two objects are created: ** ** (1) The real finder-function named "FImpt()". ** ** (2) A constant pointer to this function named just "F". ** ** ** A pointer to the F pointer is used as the pAppData value for VFS ** objects. We have to do this instead of letting pAppData point ** directly at the finder-function since C90 rules prevent a void* ** from be cast into a function pointer. ** ** ** Each instance of this macro generates two objects: ** ** * A constant sqlite3_io_methods object call METHOD that has locking ** methods CLOSE, LOCK, UNLOCK, CKRESLOCK. ** ** * An I/O method finder function called FINDER that returns a pointer ** to the METHOD object in the previous bullet. */ #define IOMETHODS(FINDER,METHOD,VERSION,CLOSE,LOCK,UNLOCK,CKLOCK,SHMMAP) \ static const sqlite3_io_methods METHOD = { \ VERSION, /* iVersion */ \ CLOSE, /* xClose */ \ unixRead, /* xRead */ \ unixWrite, /* xWrite */ \ unixTruncate, /* xTruncate */ \ unixSync, /* xSync */ \ unixFileSize, /* xFileSize */ \ LOCK, /* xLock */ \ UNLOCK, /* xUnlock */ \ CKLOCK, /* xCheckReservedLock */ \ unixFileControl, /* xFileControl */ \ unixSectorSize, /* xSectorSize */ \ unixDeviceCharacteristics, /* xDeviceCapabilities */ \ SHMMAP, /* xShmMap */ \ unixShmLock, /* xShmLock */ \ unixShmBarrier, /* xShmBarrier */ \ unixShmUnmap, /* xShmUnmap */ \ unixFetch, /* xFetch */ \ unixUnfetch, /* xUnfetch */ \ }; \ static const sqlite3_io_methods *FINDER##Impl(const char *z, unixFile *p){ \ UNUSED_PARAMETER(z); UNUSED_PARAMETER(p); \ return &METHOD; \ } \ static const sqlite3_io_methods *(*const FINDER)(const char*,unixFile *p) \ = FINDER##Impl; /* ** Here are all of the sqlite3_io_methods objects for each of the ** locking strategies. Functions that return pointers to these methods ** are also created. */ IOMETHODS( posixIoFinder, /* Finder function name */ posixIoMethods, /* sqlite3_io_methods object name */ 3, /* shared memory and mmap are enabled */ unixClose, /* xClose method */ unixLock, /* xLock method */ unixUnlock, /* xUnlock method */ unixCheckReservedLock, /* xCheckReservedLock method */ unixShmMap /* xShmMap method */ ) IOMETHODS( nolockIoFinder, /* Finder function name */ nolockIoMethods, /* sqlite3_io_methods object name */ 3, /* shared memory and mmap are enabled */ nolockClose, /* xClose method */ nolockLock, /* xLock method */ nolockUnlock, /* xUnlock method */ nolockCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) IOMETHODS( dotlockIoFinder, /* Finder function name */ dotlockIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ dotlockClose, /* xClose method */ dotlockLock, /* xLock method */ dotlockUnlock, /* xUnlock method */ dotlockCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #if SQLITE_ENABLE_LOCKING_STYLE IOMETHODS( flockIoFinder, /* Finder function name */ flockIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ flockClose, /* xClose method */ flockLock, /* xLock method */ flockUnlock, /* xUnlock method */ flockCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif #if OS_VXWORKS IOMETHODS( semIoFinder, /* Finder function name */ semIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ semXClose, /* xClose method */ semXLock, /* xLock method */ semXUnlock, /* xUnlock method */ semXCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE IOMETHODS( afpIoFinder, /* Finder function name */ afpIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ afpClose, /* xClose method */ afpLock, /* xLock method */ afpUnlock, /* xUnlock method */ afpCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif /* ** The proxy locking method is a "super-method" in the sense that it ** opens secondary file descriptors for the conch and lock files and ** it uses proxy, dot-file, AFP, and flock() locking methods on those ** secondary files. For this reason, the division that implements ** proxy locking is located much further down in the file. But we need ** to go ahead and define the sqlite3_io_methods and finder function ** for proxy locking here. So we forward declare the I/O methods. */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE static int proxyClose(sqlite3_file*); static int proxyLock(sqlite3_file*, int); static int proxyUnlock(sqlite3_file*, int); static int proxyCheckReservedLock(sqlite3_file*, int*); IOMETHODS( proxyIoFinder, /* Finder function name */ proxyIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ proxyClose, /* xClose method */ proxyLock, /* xLock method */ proxyUnlock, /* xUnlock method */ proxyCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif /* nfs lockd on OSX 10.3+ doesn't clear write locks when a read lock is set */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE IOMETHODS( nfsIoFinder, /* Finder function name */ nfsIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ unixClose, /* xClose method */ unixLock, /* xLock method */ nfsUnlock, /* xUnlock method */ unixCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** This "finder" function attempts to determine the best locking strategy ** for the database file "filePath". It then returns the sqlite3_io_methods ** object that implements that strategy. ** ** This is for MacOSX only. */ static const sqlite3_io_methods *autolockIoFinderImpl( const char *filePath, /* name of the database file */ unixFile *pNew /* open file object for the database file */ ){ static const struct Mapping { const char *zFilesystem; /* Filesystem type name */ const sqlite3_io_methods *pMethods; /* Appropriate locking method */ } aMap[] = { { "hfs", &posixIoMethods }, { "ufs", &posixIoMethods }, { "afpfs", &afpIoMethods }, { "smbfs", &afpIoMethods }, { "webdav", &nolockIoMethods }, { 0, 0 } }; int i; struct statfs fsInfo; struct flock lockInfo; if( !filePath ){ /* If filePath==NULL that means we are dealing with a transient file ** that does not need to be locked. */ return &nolockIoMethods; } if( statfs(filePath, &fsInfo) != -1 ){ if( fsInfo.f_flags & MNT_RDONLY ){ return &nolockIoMethods; } for(i=0; aMap[i].zFilesystem; i++){ if( strcmp(fsInfo.f_fstypename, aMap[i].zFilesystem)==0 ){ return aMap[i].pMethods; } } } /* Default case. Handles, amongst others, "nfs". ** Test byte-range lock using fcntl(). If the call succeeds, ** assume that the file-system supports POSIX style locks. */ lockInfo.l_len = 1; lockInfo.l_start = 0; lockInfo.l_whence = SEEK_SET; lockInfo.l_type = F_RDLCK; if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) { if( strcmp(fsInfo.f_fstypename, "nfs")==0 ){ return &nfsIoMethods; } else { return &posixIoMethods; } }else{ return &dotlockIoMethods; } } static const sqlite3_io_methods *(*const autolockIoFinder)(const char*,unixFile*) = autolockIoFinderImpl; #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ #if OS_VXWORKS /* ** This "finder" function for VxWorks checks to see if posix advisory ** locking works. If it does, then that is what is used. If it does not ** work, then fallback to named semaphore locking. */ static const sqlite3_io_methods *vxworksIoFinderImpl( const char *filePath, /* name of the database file */ unixFile *pNew /* the open file object */ ){ struct flock lockInfo; if( !filePath ){ /* If filePath==NULL that means we are dealing with a transient file ** that does not need to be locked. */ return &nolockIoMethods; } /* Test if fcntl() is supported and use POSIX style locks. ** Otherwise fall back to the named semaphore method. */ lockInfo.l_len = 1; lockInfo.l_start = 0; lockInfo.l_whence = SEEK_SET; lockInfo.l_type = F_RDLCK; if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) { return &posixIoMethods; }else{ return &semIoMethods; } } static const sqlite3_io_methods *(*const vxworksIoFinder)(const char*,unixFile*) = vxworksIoFinderImpl; #endif /* OS_VXWORKS */ /* ** An abstract type for a pointer to an IO method finder function: */ typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*); /**************************************************************************** **************************** sqlite3_vfs methods **************************** ** ** This division contains the implementation of methods on the ** sqlite3_vfs object. */ /* ** Initialize the contents of the unixFile structure pointed to by pId. */ static int fillInUnixFile( sqlite3_vfs *pVfs, /* Pointer to vfs object */ int h, /* Open file descriptor of file being opened */ sqlite3_file *pId, /* Write to the unixFile structure here */ const char *zFilename, /* Name of the file being opened */ int ctrlFlags /* Zero or more UNIXFILE_* values */ ){ const sqlite3_io_methods *pLockingStyle; unixFile *pNew = (unixFile *)pId; int rc = SQLITE_OK; assert( pNew->pInode==NULL ); /* No locking occurs in temporary files */ assert( zFilename!=0 || (ctrlFlags & UNIXFILE_NOLOCK)!=0 ); OSTRACE(("OPEN %-3d %s\n", h, zFilename)); pNew->h = h; pNew->pVfs = pVfs; pNew->zPath = zFilename; pNew->ctrlFlags = (u8)ctrlFlags; #if SQLITE_MAX_MMAP_SIZE>0 pNew->mmapSizeMax = sqlite3GlobalConfig.szMmap; #endif if( sqlite3_uri_boolean(((ctrlFlags & UNIXFILE_URI) ? zFilename : 0), "psow", SQLITE_POWERSAFE_OVERWRITE) ){ pNew->ctrlFlags |= UNIXFILE_PSOW; } if( strcmp(pVfs->zName,"unix-excl")==0 ){ pNew->ctrlFlags |= UNIXFILE_EXCL; } #if OS_VXWORKS pNew->pId = vxworksFindFileId(zFilename); if( pNew->pId==0 ){ ctrlFlags |= UNIXFILE_NOLOCK; rc = SQLITE_NOMEM_BKPT; } #endif if( ctrlFlags & UNIXFILE_NOLOCK ){ pLockingStyle = &nolockIoMethods; }else{ pLockingStyle = (**(finder_type*)pVfs->pAppData)(zFilename, pNew); #if SQLITE_ENABLE_LOCKING_STYLE /* Cache zFilename in the locking context (AFP and dotlock override) for ** proxyLock activation is possible (remote proxy is based on db name) ** zFilename remains valid until file is closed, to support */ pNew->lockingContext = (void*)zFilename; #endif } if( pLockingStyle == &posixIoMethods #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE || pLockingStyle == &nfsIoMethods #endif ){ unixEnterMutex(); rc = findInodeInfo(pNew, &pNew->pInode); if( rc!=SQLITE_OK ){ /* If an error occurred in findInodeInfo(), close the file descriptor ** immediately, before releasing the mutex. findInodeInfo() may fail ** in two scenarios: ** ** (a) A call to fstat() failed. ** (b) A malloc failed. ** ** Scenario (b) may only occur if the process is holding no other ** file descriptors open on the same file. If there were other file ** descriptors on this file, then no malloc would be required by ** findInodeInfo(). If this is the case, it is quite safe to close ** handle h - as it is guaranteed that no posix locks will be released ** by doing so. ** ** If scenario (a) caused the error then things are not so safe. The ** implicit assumption here is that if fstat() fails, things are in ** such bad shape that dropping a lock or two doesn't matter much. */ robust_close(pNew, h, __LINE__); h = -1; } unixLeaveMutex(); } #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) else if( pLockingStyle == &afpIoMethods ){ /* AFP locking uses the file path so it needs to be included in ** the afpLockingContext. */ afpLockingContext *pCtx; pNew->lockingContext = pCtx = sqlite3_malloc64( sizeof(*pCtx) ); if( pCtx==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ /* NB: zFilename exists and remains valid until the file is closed ** according to requirement F11141. So we do not need to make a ** copy of the filename. */ pCtx->dbPath = zFilename; pCtx->reserved = 0; srandomdev(); unixEnterMutex(); rc = findInodeInfo(pNew, &pNew->pInode); if( rc!=SQLITE_OK ){ sqlite3_free(pNew->lockingContext); robust_close(pNew, h, __LINE__); h = -1; } unixLeaveMutex(); } } #endif else if( pLockingStyle == &dotlockIoMethods ){ /* Dotfile locking uses the file path so it needs to be included in ** the dotlockLockingContext */ char *zLockFile; int nFilename; assert( zFilename!=0 ); nFilename = (int)strlen(zFilename) + 6; zLockFile = (char *)sqlite3_malloc64(nFilename); if( zLockFile==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ sqlite3_snprintf(nFilename, zLockFile, "%s" DOTLOCK_SUFFIX, zFilename); } pNew->lockingContext = zLockFile; } #if OS_VXWORKS else if( pLockingStyle == &semIoMethods ){ /* Named semaphore locking uses the file path so it needs to be ** included in the semLockingContext */ unixEnterMutex(); rc = findInodeInfo(pNew, &pNew->pInode); if( (rc==SQLITE_OK) && (pNew->pInode->pSem==NULL) ){ char *zSemName = pNew->pInode->aSemName; int n; sqlite3_snprintf(MAX_PATHNAME, zSemName, "/%s.sem", pNew->pId->zCanonicalName); for( n=1; zSemName[n]; n++ ) if( zSemName[n]=='/' ) zSemName[n] = '_'; pNew->pInode->pSem = sem_open(zSemName, O_CREAT, 0666, 1); if( pNew->pInode->pSem == SEM_FAILED ){ rc = SQLITE_NOMEM_BKPT; pNew->pInode->aSemName[0] = '\0'; } } unixLeaveMutex(); } #endif storeLastErrno(pNew, 0); #if OS_VXWORKS if( rc!=SQLITE_OK ){ if( h>=0 ) robust_close(pNew, h, __LINE__); h = -1; osUnlink(zFilename); pNew->ctrlFlags |= UNIXFILE_DELETE; } #endif if( rc!=SQLITE_OK ){ if( h>=0 ) robust_close(pNew, h, __LINE__); }else{ pId->pMethods = pLockingStyle; OpenCounter(+1); verifyDbFile(pNew); } return rc; } /* ** Directories to consider for temp files. */ static const char *azTempDirs[] = { 0, 0, "/var/tmp", "/usr/tmp", "/tmp", "." }; /* ** Initialize first two members of azTempDirs[] array. */ static void unixTempFileInit(void){ azTempDirs[0] = getenv("SQLITE_TMPDIR"); azTempDirs[1] = getenv("TMPDIR"); } /* ** Return the name of a directory in which to put temporary files. ** If no suitable temporary file directory can be found, return NULL. */ static const char *unixTempFileDir(void){ unsigned int i = 0; struct stat buf; const char *zDir = sqlite3_temp_directory; while(1){ if( zDir!=0 && osStat(zDir, &buf)==0 && S_ISDIR(buf.st_mode) && osAccess(zDir, 03)==0 ){ return zDir; } if( i>=sizeof(azTempDirs)/sizeof(azTempDirs[0]) ) break; zDir = azTempDirs[i++]; } return 0; } /* ** Create a temporary file name in zBuf. zBuf must be allocated ** by the calling process and must be big enough to hold at least ** pVfs->mxPathname bytes. */ static int unixGetTempname(int nBuf, char *zBuf){ const char *zDir; int iLimit = 0; /* It's odd to simulate an io-error here, but really this is just ** using the io-error infrastructure to test that SQLite handles this ** function failing. */ zBuf[0] = 0; SimulateIOError( return SQLITE_IOERR ); zDir = unixTempFileDir(); if( zDir==0 ) return SQLITE_IOERR_GETTEMPPATH; do{ u64 r; sqlite3_randomness(sizeof(r), &r); assert( nBuf>2 ); zBuf[nBuf-2] = 0; sqlite3_snprintf(nBuf, zBuf, "%s/"SQLITE_TEMP_FILE_PREFIX"%llx%c", zDir, r, 0); if( zBuf[nBuf-2]!=0 || (iLimit++)>10 ) return SQLITE_ERROR; }while( osAccess(zBuf,0)==0 ); return SQLITE_OK; } #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) /* ** Routine to transform a unixFile into a proxy-locking unixFile. ** Implementation in the proxy-lock division, but used by unixOpen() ** if SQLITE_PREFER_PROXY_LOCKING is defined. */ static int proxyTransformUnixFile(unixFile*, const char*); #endif /* ** Search for an unused file descriptor that was opened on the database ** file (not a journal or super-journal file) identified by pathname ** zPath with SQLITE_OPEN_XXX flags matching those passed as the second ** argument to this function. ** ** Such a file descriptor may exist if a database connection was closed ** but the associated file descriptor could not be closed because some ** other file descriptor open on the same file is holding a file-lock. ** Refer to comments in the unixClose() function and the lengthy comment ** describing "Posix Advisory Locking" at the start of this file for ** further details. Also, ticket #4018. ** ** If a suitable file descriptor is found, then it is returned. If no ** such file descriptor is located, -1 is returned. */ static UnixUnusedFd *findReusableFd(const char *zPath, int flags){ UnixUnusedFd *pUnused = 0; /* Do not search for an unused file descriptor on vxworks. Not because ** vxworks would not benefit from the change (it might, we're not sure), ** but because no way to test it is currently available. It is better ** not to risk breaking vxworks support for the sake of such an obscure ** feature. */ #if !OS_VXWORKS struct stat sStat; /* Results of stat() call */ unixEnterMutex(); /* A stat() call may fail for various reasons. If this happens, it is ** almost certain that an open() call on the same path will also fail. ** For this reason, if an error occurs in the stat() call here, it is ** ignored and -1 is returned. The caller will try to open a new file ** descriptor on the same path, fail, and return an error to SQLite. ** ** Even if a subsequent open() call does succeed, the consequences of ** not searching for a reusable file descriptor are not dire. */ if( inodeList!=0 && 0==osStat(zPath, &sStat) ){ unixInodeInfo *pInode; pInode = inodeList; while( pInode && (pInode->fileId.dev!=sStat.st_dev || pInode->fileId.ino!=(u64)sStat.st_ino) ){ pInode = pInode->pNext; } if( pInode ){ UnixUnusedFd **pp; assert( sqlite3_mutex_notheld(pInode->pLockMutex) ); sqlite3_mutex_enter(pInode->pLockMutex); flags &= (SQLITE_OPEN_READONLY|SQLITE_OPEN_READWRITE); for(pp=&pInode->pUnused; *pp && (*pp)->flags!=flags; pp=&((*pp)->pNext)); pUnused = *pp; if( pUnused ){ *pp = pUnused->pNext; } sqlite3_mutex_leave(pInode->pLockMutex); } } unixLeaveMutex(); #endif /* if !OS_VXWORKS */ return pUnused; } /* ** Find the mode, uid and gid of file zFile. */ static int getFileMode( const char *zFile, /* File name */ mode_t *pMode, /* OUT: Permissions of zFile */ uid_t *pUid, /* OUT: uid of zFile. */ gid_t *pGid /* OUT: gid of zFile. */ ){ struct stat sStat; /* Output of stat() on database file */ int rc = SQLITE_OK; if( 0==osStat(zFile, &sStat) ){ *pMode = sStat.st_mode & 0777; *pUid = sStat.st_uid; *pGid = sStat.st_gid; }else{ rc = SQLITE_IOERR_FSTAT; } return rc; } /* ** This function is called by unixOpen() to determine the unix permissions ** to create new files with. If no error occurs, then SQLITE_OK is returned ** and a value suitable for passing as the third argument to open(2) is ** written to *pMode. If an IO error occurs, an SQLite error code is ** returned and the value of *pMode is not modified. ** ** In most cases, this routine sets *pMode to 0, which will become ** an indication to robust_open() to create the file using ** SQLITE_DEFAULT_FILE_PERMISSIONS adjusted by the umask. ** But if the file being opened is a WAL or regular journal file, then ** this function queries the file-system for the permissions on the ** corresponding database file and sets *pMode to this value. Whenever ** possible, WAL and journal files are created using the same permissions ** as the associated database file. ** ** If the SQLITE_ENABLE_8_3_NAMES option is enabled, then the ** original filename is unavailable. But 8_3_NAMES is only used for ** FAT filesystems and permissions do not matter there, so just use ** the default permissions. In 8_3_NAMES mode, leave *pMode set to zero. */ static int findCreateFileMode( const char *zPath, /* Path of file (possibly) being created */ int flags, /* Flags passed as 4th argument to xOpen() */ mode_t *pMode, /* OUT: Permissions to open file with */ uid_t *pUid, /* OUT: uid to set on the file */ gid_t *pGid /* OUT: gid to set on the file */ ){ int rc = SQLITE_OK; /* Return Code */ *pMode = 0; *pUid = 0; *pGid = 0; if( flags & (SQLITE_OPEN_WAL|SQLITE_OPEN_MAIN_JOURNAL) ){ char zDb[MAX_PATHNAME+1]; /* Database file path */ int nDb; /* Number of valid bytes in zDb */ /* zPath is a path to a WAL or journal file. The following block derives ** the path to the associated database file from zPath. This block handles ** the following naming conventions: ** ** "-journal" ** "-wal" ** "-journalNN" ** "-walNN" ** ** where NN is a decimal number. The NN naming schemes are ** used by the test_multiplex.c module. */ nDb = sqlite3Strlen30(zPath) - 1; while( zPath[nDb]!='-' ){ /* In normal operation, the journal file name will always contain ** a '-' character. However in 8+3 filename mode, or if a corrupt ** rollback journal specifies a super-journal with a goofy name, then ** the '-' might be missing. */ if( nDb==0 || zPath[nDb]=='.' ) return SQLITE_OK; nDb--; } memcpy(zDb, zPath, nDb); zDb[nDb] = '\0'; rc = getFileMode(zDb, pMode, pUid, pGid); }else if( flags & SQLITE_OPEN_DELETEONCLOSE ){ *pMode = 0600; }else if( flags & SQLITE_OPEN_URI ){ /* If this is a main database file and the file was opened using a URI ** filename, check for the "modeof" parameter. If present, interpret ** its value as a filename and try to copy the mode, uid and gid from ** that file. */ const char *z = sqlite3_uri_parameter(zPath, "modeof"); if( z ){ rc = getFileMode(z, pMode, pUid, pGid); } } return rc; } /* ** Open the file zPath. ** ** Previously, the SQLite OS layer used three functions in place of this ** one: ** ** sqlite3OsOpenReadWrite(); ** sqlite3OsOpenReadOnly(); ** sqlite3OsOpenExclusive(); ** ** These calls correspond to the following combinations of flags: ** ** ReadWrite() -> (READWRITE | CREATE) ** ReadOnly() -> (READONLY) ** OpenExclusive() -> (READWRITE | CREATE | EXCLUSIVE) ** ** The old OpenExclusive() accepted a boolean argument - "delFlag". If ** true, the file was configured to be automatically deleted when the ** file handle closed. To achieve the same effect using this new ** interface, add the DELETEONCLOSE flag to those specified above for ** OpenExclusive(). */ static int unixOpen( sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */ const char *zPath, /* Pathname of file to be opened */ sqlite3_file *pFile, /* The file descriptor to be filled in */ int flags, /* Input flags to control the opening */ int *pOutFlags /* Output flags returned to SQLite core */ ){ unixFile *p = (unixFile *)pFile; int fd = -1; /* File descriptor returned by open() */ int openFlags = 0; /* Flags to pass to open() */ int eType = flags&0x0FFF00; /* Type of file to open */ int noLock; /* True to omit locking primitives */ int rc = SQLITE_OK; /* Function Return Code */ int ctrlFlags = 0; /* UNIXFILE_* flags */ int isExclusive = (flags & SQLITE_OPEN_EXCLUSIVE); int isDelete = (flags & SQLITE_OPEN_DELETEONCLOSE); int isCreate = (flags & SQLITE_OPEN_CREATE); int isReadonly = (flags & SQLITE_OPEN_READONLY); int isReadWrite = (flags & SQLITE_OPEN_READWRITE); #if SQLITE_ENABLE_LOCKING_STYLE int isAutoProxy = (flags & SQLITE_OPEN_AUTOPROXY); #endif #if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE struct statfs fsInfo; #endif /* If creating a super- or main-file journal, this function will open ** a file-descriptor on the directory too. The first time unixSync() ** is called the directory file descriptor will be fsync()ed and close()d. */ int isNewJrnl = (isCreate && ( eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_WAL )); /* If argument zPath is a NULL pointer, this function is required to open ** a temporary file. Use this buffer to store the file name in. */ char zTmpname[MAX_PATHNAME+2]; const char *zName = zPath; /* Check the following statements are true: ** ** (a) Exactly one of the READWRITE and READONLY flags must be set, and ** (b) if CREATE is set, then READWRITE must also be set, and ** (c) if EXCLUSIVE is set, then CREATE must also be set. ** (d) if DELETEONCLOSE is set, then CREATE must also be set. */ assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly)); assert(isCreate==0 || isReadWrite); assert(isExclusive==0 || isCreate); assert(isDelete==0 || isCreate); /* The main DB, main journal, WAL file and super-journal are never ** automatically deleted. Nor are they ever temporary files. */ assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_SUPER_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); /* Assert that the upper layer has set one of the "file-type" flags. */ assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL ); /* Detect a pid change and reset the PRNG. There is a race condition ** here such that two or more threads all trying to open databases at ** the same instant might all reset the PRNG. But multiple resets ** are harmless. */ if( randomnessPid!=osGetpid(0) ){ randomnessPid = osGetpid(0); sqlite3_randomness(0,0); } memset(p, 0, sizeof(unixFile)); #ifdef SQLITE_ASSERT_NO_FILES /* Applications that never read or write a persistent disk files */ assert( zName==0 ); #endif if( eType==SQLITE_OPEN_MAIN_DB ){ UnixUnusedFd *pUnused; pUnused = findReusableFd(zName, flags); if( pUnused ){ fd = pUnused->fd; }else{ pUnused = sqlite3_malloc64(sizeof(*pUnused)); if( !pUnused ){ return SQLITE_NOMEM_BKPT; } } p->pPreallocatedUnused = pUnused; /* Database filenames are double-zero terminated if they are not ** URIs with parameters. Hence, they can always be passed into ** sqlite3_uri_parameter(). */ assert( (flags & SQLITE_OPEN_URI) || zName[strlen(zName)+1]==0 ); }else if( !zName ){ /* If zName is NULL, the upper layer is requesting a temp file. */ assert(isDelete && !isNewJrnl); rc = unixGetTempname(pVfs->mxPathname, zTmpname); if( rc!=SQLITE_OK ){ return rc; } zName = zTmpname; /* Generated temporary filenames are always double-zero terminated ** for use by sqlite3_uri_parameter(). */ assert( zName[strlen(zName)+1]==0 ); } /* Determine the value of the flags parameter passed to POSIX function ** open(). These must be calculated even if open() is not called, as ** they may be stored as part of the file handle and used by the ** 'conch file' locking functions later on. */ if( isReadonly ) openFlags |= O_RDONLY; if( isReadWrite ) openFlags |= O_RDWR; if( isCreate ) openFlags |= O_CREAT; if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW); openFlags |= (O_LARGEFILE|O_BINARY|O_NOFOLLOW); if( fd<0 ){ mode_t openMode; /* Permissions to create file with */ uid_t uid; /* Userid for the file */ gid_t gid; /* Groupid for the file */ rc = findCreateFileMode(zName, flags, &openMode, &uid, &gid); if( rc!=SQLITE_OK ){ assert( !p->pPreallocatedUnused ); assert( eType==SQLITE_OPEN_WAL || eType==SQLITE_OPEN_MAIN_JOURNAL ); return rc; } fd = robust_open(zName, openFlags, openMode); OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags)); assert( !isExclusive || (openFlags & O_CREAT)!=0 ); if( fd<0 ){ if( isNewJrnl && errno==EACCES && osAccess(zName, F_OK) ){ /* If unable to create a journal because the directory is not ** writable, change the error code to indicate that. */ rc = SQLITE_READONLY_DIRECTORY; }else if( errno!=EISDIR && isReadWrite ){ /* Failed to open the file for read/write access. Try read-only. */ flags &= ~(SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE); openFlags &= ~(O_RDWR|O_CREAT); flags |= SQLITE_OPEN_READONLY; openFlags |= O_RDONLY; isReadonly = 1; fd = robust_open(zName, openFlags, openMode); } } if( fd<0 ){ int rc2 = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zName); if( rc==SQLITE_OK ) rc = rc2; goto open_finished; } /* The owner of the rollback journal or WAL file should always be the ** same as the owner of the database file. Try to ensure that this is ** the case. The chown() system call will be a no-op if the current ** process lacks root privileges, be we should at least try. Without ** this step, if a root process opens a database file, it can leave ** behinds a journal/WAL that is owned by root and hence make the ** database inaccessible to unprivileged processes. ** ** If openMode==0, then that means uid and gid are not set correctly ** (probably because SQLite is configured to use 8+3 filename mode) and ** in that case we do not want to attempt the chown(). */ if( openMode && (flags & (SQLITE_OPEN_WAL|SQLITE_OPEN_MAIN_JOURNAL))!=0 ){ robustFchown(fd, uid, gid); } } assert( fd>=0 ); if( pOutFlags ){ *pOutFlags = flags; } if( p->pPreallocatedUnused ){ p->pPreallocatedUnused->fd = fd; p->pPreallocatedUnused->flags = flags & (SQLITE_OPEN_READONLY|SQLITE_OPEN_READWRITE); } if( isDelete ){ #if OS_VXWORKS zPath = zName; #elif defined(SQLITE_UNLINK_AFTER_CLOSE) zPath = sqlite3_mprintf("%s", zName); if( zPath==0 ){ robust_close(p, fd, __LINE__); return SQLITE_NOMEM_BKPT; } #else osUnlink(zName); #endif } #if SQLITE_ENABLE_LOCKING_STYLE else{ p->openFlags = openFlags; } #endif #if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE if( fstatfs(fd, &fsInfo) == -1 ){ storeLastErrno(p, errno); robust_close(p, fd, __LINE__); return SQLITE_IOERR_ACCESS; } if (0 == strncmp("msdos", fsInfo.f_fstypename, 5)) { ((unixFile*)pFile)->fsFlags |= SQLITE_FSFLAGS_IS_MSDOS; } if (0 == strncmp("exfat", fsInfo.f_fstypename, 5)) { ((unixFile*)pFile)->fsFlags |= SQLITE_FSFLAGS_IS_MSDOS; } #endif /* Set up appropriate ctrlFlags */ if( isDelete ) ctrlFlags |= UNIXFILE_DELETE; if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY; noLock = eType!=SQLITE_OPEN_MAIN_DB; if( noLock ) ctrlFlags |= UNIXFILE_NOLOCK; if( isNewJrnl ) ctrlFlags |= UNIXFILE_DIRSYNC; if( flags & SQLITE_OPEN_URI ) ctrlFlags |= UNIXFILE_URI; #if SQLITE_ENABLE_LOCKING_STYLE #if SQLITE_PREFER_PROXY_LOCKING isAutoProxy = 1; #endif if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){ char *envforce = getenv("SQLITE_FORCE_PROXY_LOCKING"); int useProxy = 0; /* SQLITE_FORCE_PROXY_LOCKING==1 means force always use proxy, 0 means ** never use proxy, NULL means use proxy for non-local files only. */ if( envforce!=NULL ){ useProxy = atoi(envforce)>0; }else{ useProxy = !(fsInfo.f_flags&MNT_LOCAL); } if( useProxy ){ rc = fillInUnixFile(pVfs, fd, pFile, zPath, ctrlFlags); if( rc==SQLITE_OK ){ rc = proxyTransformUnixFile((unixFile*)pFile, ":auto:"); if( rc!=SQLITE_OK ){ /* Use unixClose to clean up the resources added in fillInUnixFile ** and clear all the structure's references. Specifically, ** pFile->pMethods will be NULL so sqlite3OsClose will be a no-op */ unixClose(pFile); return rc; } } goto open_finished; } } #endif assert( zPath==0 || zPath[0]=='/' || eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_MAIN_JOURNAL ); rc = fillInUnixFile(pVfs, fd, pFile, zPath, ctrlFlags); open_finished: if( rc!=SQLITE_OK ){ sqlite3_free(p->pPreallocatedUnused); } return rc; } /* ** Delete the file at zPath. If the dirSync argument is true, fsync() ** the directory after deleting the file. */ static int unixDelete( sqlite3_vfs *NotUsed, /* VFS containing this as the xDelete method */ const char *zPath, /* Name of file to be deleted */ int dirSync /* If true, fsync() directory after deleting file */ ){ int rc = SQLITE_OK; UNUSED_PARAMETER(NotUsed); SimulateIOError(return SQLITE_IOERR_DELETE); if( osUnlink(zPath)==(-1) ){ if( errno==ENOENT #if OS_VXWORKS || osAccess(zPath,0)!=0 #endif ){ rc = SQLITE_IOERR_DELETE_NOENT; }else{ rc = unixLogError(SQLITE_IOERR_DELETE, "unlink", zPath); } return rc; } #ifndef SQLITE_DISABLE_DIRSYNC if( (dirSync & 1)!=0 ){ int fd; rc = osOpenDirectory(zPath, &fd); if( rc==SQLITE_OK ){ if( full_fsync(fd,0,0) ){ rc = unixLogError(SQLITE_IOERR_DIR_FSYNC, "fsync", zPath); } robust_close(0, fd, __LINE__); }else{ assert( rc==SQLITE_CANTOPEN ); rc = SQLITE_OK; } } #endif return rc; } /* ** Test the existence of or access permissions of file zPath. The ** test performed depends on the value of flags: ** ** SQLITE_ACCESS_EXISTS: Return 1 if the file exists ** SQLITE_ACCESS_READWRITE: Return 1 if the file is read and writable. ** SQLITE_ACCESS_READONLY: Return 1 if the file is readable. ** ** Otherwise return 0. */ static int unixAccess( sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */ const char *zPath, /* Path of the file to examine */ int flags, /* What do we want to learn about the zPath file? */ int *pResOut /* Write result boolean here */ ){ UNUSED_PARAMETER(NotUsed); SimulateIOError( return SQLITE_IOERR_ACCESS; ); assert( pResOut!=0 ); /* The spec says there are three possible values for flags. But only ** two of them are actually used */ assert( flags==SQLITE_ACCESS_EXISTS || flags==SQLITE_ACCESS_READWRITE ); if( flags==SQLITE_ACCESS_EXISTS ){ struct stat buf; *pResOut = 0==osStat(zPath, &buf) && (!S_ISREG(buf.st_mode) || buf.st_size>0); }else{ *pResOut = osAccess(zPath, W_OK|R_OK)==0; } return SQLITE_OK; } /* ** If the last component of the pathname in z[0]..z[j-1] is something ** other than ".." then back it out and return true. If the last ** component is empty or if it is ".." then return false. */ static int unixBackupDir(const char *z, int *pJ){ int j = *pJ; int i; if( j<=0 ) return 0; for(i=j-1; i>0 && z[i-1]!='/'; i--){} if( i==0 ) return 0; if( z[i]=='.' && i==j-2 && z[i+1]=='.' ) return 0; *pJ = i-1; return 1; } /* ** Convert a relative pathname into a full pathname. Also ** simplify the pathname as follows: ** ** Remove all instances of /./ ** Remove all isntances of /X/../ for any X */ static int mkFullPathname( const char *zPath, /* Input path */ char *zOut, /* Output buffer */ int nOut /* Allocated size of buffer zOut */ ){ int nPath = sqlite3Strlen30(zPath); int iOff = 0; int i, j; if( zPath[0]!='/' ){ if( osGetcwd(zOut, nOut-2)==0 ){ return unixLogError(SQLITE_CANTOPEN_BKPT, "getcwd", zPath); } iOff = sqlite3Strlen30(zOut); zOut[iOff++] = '/'; } if( (iOff+nPath+1)>nOut ){ /* SQLite assumes that xFullPathname() nul-terminates the output buffer ** even if it returns an error. */ zOut[iOff] = '\0'; return SQLITE_CANTOPEN_BKPT; } sqlite3_snprintf(nOut-iOff, &zOut[iOff], "%s", zPath); /* Remove duplicate '/' characters. Except, two // at the beginning ** of a pathname is allowed since this is important on windows. */ for(i=j=1; zOut[i]; i++){ zOut[j++] = zOut[i]; while( zOut[i]=='/' && zOut[i+1]=='/' ) i++; } zOut[j] = 0; assert( zOut[0]=='/' ); for(i=j=0; zOut[i]; i++){ if( zOut[i]=='/' ){ /* Skip over internal "/." directory components */ if( zOut[i+1]=='.' && zOut[i+2]=='/' ){ i += 1; continue; } /* If this is a "/.." directory component then back out the ** previous term of the directory if it is something other than "..". */ if( zOut[i+1]=='.' && zOut[i+2]=='.' && zOut[i+3]=='/' && unixBackupDir(zOut, &j) ){ i += 2; continue; } } if( ALWAYS(j>=0) ) zOut[j] = zOut[i]; j++; } if( NEVER(j==0) ) zOut[j++] = '/'; zOut[j] = 0; return SQLITE_OK; } /* ** Turn a relative pathname into a full pathname. The relative path ** is stored as a nul-terminated string in the buffer pointed to by ** zPath. ** ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes ** (in this case, MAX_PATHNAME bytes). The full-path is written to ** this buffer before returning. */ static int unixFullPathname( sqlite3_vfs *pVfs, /* Pointer to vfs object */ const char *zPath, /* Possibly relative input path */ int nOut, /* Size of output buffer in bytes */ char *zOut /* Output buffer */ ){ #if !defined(HAVE_READLINK) || !defined(HAVE_LSTAT) return mkFullPathname(zPath, zOut, nOut); #else int rc = SQLITE_OK; int nByte; int nLink = 0; /* Number of symbolic links followed so far */ const char *zIn = zPath; /* Input path for each iteration of loop */ char *zDel = 0; assert( pVfs->mxPathname==MAX_PATHNAME ); UNUSED_PARAMETER(pVfs); /* It's odd to simulate an io-error here, but really this is just ** using the io-error infrastructure to test that SQLite handles this ** function failing. This function could fail if, for example, the ** current working directory has been unlinked. */ SimulateIOError( return SQLITE_ERROR ); do { /* Call stat() on path zIn. Set bLink to true if the path is a symbolic ** link, or false otherwise. */ int bLink = 0; struct stat buf; if( osLstat(zIn, &buf)!=0 ){ if( errno!=ENOENT ){ rc = unixLogError(SQLITE_CANTOPEN_BKPT, "lstat", zIn); } }else{ bLink = S_ISLNK(buf.st_mode); } if( bLink ){ nLink++; if( zDel==0 ){ zDel = sqlite3_malloc(nOut); if( zDel==0 ) rc = SQLITE_NOMEM_BKPT; }else if( nLink>=SQLITE_MAX_SYMLINKS ){ rc = SQLITE_CANTOPEN_BKPT; } if( rc==SQLITE_OK ){ nByte = osReadlink(zIn, zDel, nOut-1); if( nByte<0 ){ rc = unixLogError(SQLITE_CANTOPEN_BKPT, "readlink", zIn); }else{ if( zDel[0]!='/' ){ int n; for(n = sqlite3Strlen30(zIn); n>0 && zIn[n-1]!='/'; n--); if( nByte+n+1>nOut ){ rc = SQLITE_CANTOPEN_BKPT; }else{ memmove(&zDel[n], zDel, nByte+1); memcpy(zDel, zIn, n); nByte += n; } } zDel[nByte] = '\0'; } } zIn = zDel; } assert( rc!=SQLITE_OK || zIn!=zOut || zIn[0]=='/' ); if( rc==SQLITE_OK && zIn!=zOut ){ rc = mkFullPathname(zIn, zOut, nOut); } if( bLink==0 ) break; zIn = zOut; }while( rc==SQLITE_OK ); sqlite3_free(zDel); if( rc==SQLITE_OK && nLink ) rc = SQLITE_OK_SYMLINK; return rc; #endif /* HAVE_READLINK && HAVE_LSTAT */ } #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** Interfaces for opening a shared library, finding entry points ** within the shared library, and closing the shared library. */ #include static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){ UNUSED_PARAMETER(NotUsed); return dlopen(zFilename, RTLD_NOW | RTLD_GLOBAL); } /* ** SQLite calls this function immediately after a call to unixDlSym() or ** unixDlOpen() fails (returns a null pointer). If a more detailed error ** message is available, it is written to zBufOut. If no error message ** is available, zBufOut is left unmodified and SQLite uses a default ** error message. */ static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){ const char *zErr; UNUSED_PARAMETER(NotUsed); unixEnterMutex(); zErr = dlerror(); if( zErr ){ sqlite3_snprintf(nBuf, zBufOut, "%s", zErr); } unixLeaveMutex(); } static void (*unixDlSym(sqlite3_vfs *NotUsed, void *p, const char*zSym))(void){ /* ** GCC with -pedantic-errors says that C90 does not allow a void* to be ** cast into a pointer to a function. And yet the library dlsym() routine ** returns a void* which is really a pointer to a function. So how do we ** use dlsym() with -pedantic-errors? ** ** Variable x below is defined to be a pointer to a function taking ** parameters void* and const char* and returning a pointer to a function. ** We initialize x by assigning it a pointer to the dlsym() function. ** (That assignment requires a cast.) Then we call the function that ** x points to. ** ** This work-around is unlikely to work correctly on any system where ** you really cannot cast a function pointer into void*. But then, on the ** other hand, dlsym() will not work on such a system either, so we have ** not really lost anything. */ void (*(*x)(void*,const char*))(void); UNUSED_PARAMETER(NotUsed); x = (void(*(*)(void*,const char*))(void))dlsym; return (*x)(p, zSym); } static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){ UNUSED_PARAMETER(NotUsed); dlclose(pHandle); } #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */ #define unixDlOpen 0 #define unixDlError 0 #define unixDlSym 0 #define unixDlClose 0 #endif /* ** Write nBuf bytes of random data to the supplied buffer zBuf. */ static int unixRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ UNUSED_PARAMETER(NotUsed); assert((size_t)nBuf>=(sizeof(time_t)+sizeof(int))); /* We have to initialize zBuf to prevent valgrind from reporting ** errors. The reports issued by valgrind are incorrect - we would ** prefer that the randomness be increased by making use of the ** uninitialized space in zBuf - but valgrind errors tend to worry ** some users. Rather than argue, it seems easier just to initialize ** the whole array and silence valgrind, even if that means less randomness ** in the random seed. ** ** When testing, initializing zBuf[] to zero is all we do. That means ** that we always use the same random number sequence. This makes the ** tests repeatable. */ memset(zBuf, 0, nBuf); randomnessPid = osGetpid(0); #if !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) { int fd, got; fd = robust_open("/dev/urandom", O_RDONLY, 0); if( fd<0 ){ time_t t; time(&t); memcpy(zBuf, &t, sizeof(t)); memcpy(&zBuf[sizeof(t)], &randomnessPid, sizeof(randomnessPid)); assert( sizeof(t)+sizeof(randomnessPid)<=(size_t)nBuf ); nBuf = sizeof(t) + sizeof(randomnessPid); }else{ do{ got = osRead(fd, zBuf, nBuf); }while( got<0 && errno==EINTR ); robust_close(0, fd, __LINE__); } } #endif return nBuf; } /* ** Sleep for a little while. Return the amount of time slept. ** The argument is the number of microseconds we want to sleep. ** The return value is the number of microseconds of sleep actually ** requested from the underlying operating system, a number which ** might be greater than or equal to the argument, but not less ** than the argument. */ static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){ #if OS_VXWORKS struct timespec sp; sp.tv_sec = microseconds / 1000000; sp.tv_nsec = (microseconds % 1000000) * 1000; nanosleep(&sp, NULL); UNUSED_PARAMETER(NotUsed); return microseconds; #elif defined(HAVE_USLEEP) && HAVE_USLEEP if( microseconds>=1000000 ) sleep(microseconds/1000000); if( microseconds%1000000 ) usleep(microseconds%1000000); UNUSED_PARAMETER(NotUsed); return microseconds; #else int seconds = (microseconds+999999)/1000000; sleep(seconds); UNUSED_PARAMETER(NotUsed); return seconds*1000000; #endif } /* ** The following variable, if set to a non-zero value, is interpreted as ** the number of seconds since 1970 and is used to set the result of ** sqlite3OsCurrentTime() during testing. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */ #endif /* ** Find the current time (in Universal Coordinated Time). Write into *piNow ** the current time and date as a Julian Day number times 86_400_000. In ** other words, write into *piNow the number of milliseconds since the Julian ** epoch of noon in Greenwich on November 24, 4714 B.C according to the ** proleptic Gregorian calendar. ** ** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date ** cannot be found. */ static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ static const sqlite3_int64 unixEpoch = 24405875*(sqlite3_int64)8640000; int rc = SQLITE_OK; #if defined(NO_GETTOD) time_t t; time(&t); *piNow = ((sqlite3_int64)t)*1000 + unixEpoch; #elif OS_VXWORKS struct timespec sNow; clock_gettime(CLOCK_REALTIME, &sNow); *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000; #else struct timeval sNow; (void)gettimeofday(&sNow, 0); /* Cannot fail given valid arguments */ *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000; #endif #ifdef SQLITE_TEST if( sqlite3_current_time ){ *piNow = 1000*(sqlite3_int64)sqlite3_current_time + unixEpoch; } #endif UNUSED_PARAMETER(NotUsed); return rc; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Find the current time (in Universal Coordinated Time). Write the ** current time and date as a Julian Day number into *prNow and ** return 0. Return 1 if the time and date cannot be found. */ static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ sqlite3_int64 i = 0; int rc; UNUSED_PARAMETER(NotUsed); rc = unixCurrentTimeInt64(0, &i); *prNow = i/86400000.0; return rc; } #else # define unixCurrentTime 0 #endif /* ** The xGetLastError() method is designed to return a better ** low-level error message when operating-system problems come up ** during SQLite operation. Only the integer return code is currently ** used. */ static int unixGetLastError(sqlite3_vfs *NotUsed, int NotUsed2, char *NotUsed3){ UNUSED_PARAMETER(NotUsed); UNUSED_PARAMETER(NotUsed2); UNUSED_PARAMETER(NotUsed3); return errno; } /* ************************ End of sqlite3_vfs methods *************************** ******************************************************************************/ /****************************************************************************** ************************** Begin Proxy Locking ******************************** ** ** Proxy locking is a "uber-locking-method" in this sense: It uses the ** other locking methods on secondary lock files. Proxy locking is a ** meta-layer over top of the primitive locking implemented above. For ** this reason, the division that implements of proxy locking is deferred ** until late in the file (here) after all of the other I/O methods have ** been defined - so that the primitive locking methods are available ** as services to help with the implementation of proxy locking. ** **** ** ** The default locking schemes in SQLite use byte-range locks on the ** database file to coordinate safe, concurrent access by multiple readers ** and writers [http://sqlite.org/lockingv3.html]. The five file locking ** states (UNLOCKED, PENDING, SHARED, RESERVED, EXCLUSIVE) are implemented ** as POSIX read & write locks over fixed set of locations (via fsctl), ** on AFP and SMB only exclusive byte-range locks are available via fsctl ** with _IOWR('z', 23, struct ByteRangeLockPB2) to track the same 5 states. ** To simulate a F_RDLCK on the shared range, on AFP a randomly selected ** address in the shared range is taken for a SHARED lock, the entire ** shared range is taken for an EXCLUSIVE lock): ** ** PENDING_BYTE 0x40000000 ** RESERVED_BYTE 0x40000001 ** SHARED_RANGE 0x40000002 -> 0x40000200 ** ** This works well on the local file system, but shows a nearly 100x ** slowdown in read performance on AFP because the AFP client disables ** the read cache when byte-range locks are present. Enabling the read ** cache exposes a cache coherency problem that is present on all OS X ** supported network file systems. NFS and AFP both observe the ** close-to-open semantics for ensuring cache coherency ** [http://nfs.sourceforge.net/#faq_a8], which does not effectively ** address the requirements for concurrent database access by multiple ** readers and writers ** [http://www.nabble.com/SQLite-on-NFS-cache-coherency-td15655701.html]. ** ** To address the performance and cache coherency issues, proxy file locking ** changes the way database access is controlled by limiting access to a ** single host at a time and moving file locks off of the database file ** and onto a proxy file on the local file system. ** ** ** Using proxy locks ** ----------------- ** ** C APIs ** ** sqlite3_file_control(db, dbname, SQLITE_FCNTL_SET_LOCKPROXYFILE, ** | ":auto:"); ** sqlite3_file_control(db, dbname, SQLITE_FCNTL_GET_LOCKPROXYFILE, ** &); ** ** ** SQL pragmas ** ** PRAGMA [database.]lock_proxy_file= | :auto: ** PRAGMA [database.]lock_proxy_file ** ** Specifying ":auto:" means that if there is a conch file with a matching ** host ID in it, the proxy path in the conch file will be used, otherwise ** a proxy path based on the user's temp dir ** (via confstr(_CS_DARWIN_USER_TEMP_DIR,...)) will be used and the ** actual proxy file name is generated from the name and path of the ** database file. For example: ** ** For database path "/Users/me/foo.db" ** The lock path will be "/sqliteplocks/_Users_me_foo.db:auto:") ** ** Once a lock proxy is configured for a database connection, it can not ** be removed, however it may be switched to a different proxy path via ** the above APIs (assuming the conch file is not being held by another ** connection or process). ** ** ** How proxy locking works ** ----------------------- ** ** Proxy file locking relies primarily on two new supporting files: ** ** * conch file to limit access to the database file to a single host ** at a time ** ** * proxy file to act as a proxy for the advisory locks normally ** taken on the database ** ** The conch file - to use a proxy file, sqlite must first "hold the conch" ** by taking an sqlite-style shared lock on the conch file, reading the ** contents and comparing the host's unique host ID (see below) and lock ** proxy path against the values stored in the conch. The conch file is ** stored in the same directory as the database file and the file name ** is patterned after the database file name as ".-conch". ** If the conch file does not exist, or its contents do not match the ** host ID and/or proxy path, then the lock is escalated to an exclusive ** lock and the conch file contents is updated with the host ID and proxy ** path and the lock is downgraded to a shared lock again. If the conch ** is held by another process (with a shared lock), the exclusive lock ** will fail and SQLITE_BUSY is returned. ** ** The proxy file - a single-byte file used for all advisory file locks ** normally taken on the database file. This allows for safe sharing ** of the database file for multiple readers and writers on the same ** host (the conch ensures that they all use the same local lock file). ** ** Requesting the lock proxy does not immediately take the conch, it is ** only taken when the first request to lock database file is made. ** This matches the semantics of the traditional locking behavior, where ** opening a connection to a database file does not take a lock on it. ** The shared lock and an open file descriptor are maintained until ** the connection to the database is closed. ** ** The proxy file and the lock file are never deleted so they only need ** to be created the first time they are used. ** ** Configuration options ** --------------------- ** ** SQLITE_PREFER_PROXY_LOCKING ** ** Database files accessed on non-local file systems are ** automatically configured for proxy locking, lock files are ** named automatically using the same logic as ** PRAGMA lock_proxy_file=":auto:" ** ** SQLITE_PROXY_DEBUG ** ** Enables the logging of error messages during host id file ** retrieval and creation ** ** LOCKPROXYDIR ** ** Overrides the default directory used for lock proxy files that ** are named automatically via the ":auto:" setting ** ** SQLITE_DEFAULT_PROXYDIR_PERMISSIONS ** ** Permissions to use when creating a directory for storing the ** lock proxy files, only used when LOCKPROXYDIR is not set. ** ** ** As mentioned above, when compiled with SQLITE_PREFER_PROXY_LOCKING, ** setting the environment variable SQLITE_FORCE_PROXY_LOCKING to 1 will ** force proxy locking to be used for every database file opened, and 0 ** will force automatic proxy locking to be disabled for all database ** files (explicitly calling the SQLITE_FCNTL_SET_LOCKPROXYFILE pragma or ** sqlite_file_control API is not affected by SQLITE_FORCE_PROXY_LOCKING). */ /* ** Proxy locking is only available on MacOSX */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** The proxyLockingContext has the path and file structures for the remote ** and local proxy files in it */ typedef struct proxyLockingContext proxyLockingContext; struct proxyLockingContext { unixFile *conchFile; /* Open conch file */ char *conchFilePath; /* Name of the conch file */ unixFile *lockProxy; /* Open proxy lock file */ char *lockProxyPath; /* Name of the proxy lock file */ char *dbPath; /* Name of the open file */ int conchHeld; /* 1 if the conch is held, -1 if lockless */ int nFails; /* Number of conch taking failures */ void *oldLockingContext; /* Original lockingcontext to restore on close */ sqlite3_io_methods const *pOldMethod; /* Original I/O methods for close */ }; /* ** The proxy lock file path for the database at dbPath is written into lPath, ** which must point to valid, writable memory large enough for a maxLen length ** file path. */ static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){ int len; int dbLen; int i; #ifdef LOCKPROXYDIR len = strlcpy(lPath, LOCKPROXYDIR, maxLen); #else # ifdef _CS_DARWIN_USER_TEMP_DIR { if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){ OSTRACE(("GETLOCKPATH failed %s errno=%d pid=%d\n", lPath, errno, osGetpid(0))); return SQLITE_IOERR_LOCK; } len = strlcat(lPath, "sqliteplocks", maxLen); } # else len = strlcpy(lPath, "/tmp/", maxLen); # endif #endif if( lPath[len-1]!='/' ){ len = strlcat(lPath, "/", maxLen); } /* transform the db path to a unique cache name */ dbLen = (int)strlen(dbPath); for( i=0; i 0) ){ /* only mkdir if leaf dir != "." or "/" or ".." */ if( i-start>2 || (i-start==1 && buf[start] != '.' && buf[start] != '/') || (i-start==2 && buf[start] != '.' && buf[start+1] != '.') ){ buf[i]='\0'; if( osMkdir(buf, SQLITE_DEFAULT_PROXYDIR_PERMISSIONS) ){ int err=errno; if( err!=EEXIST ) { OSTRACE(("CREATELOCKPATH FAILED creating %s, " "'%s' proxy lock path=%s pid=%d\n", buf, strerror(err), lockPath, osGetpid(0))); return err; } } } start=i+1; } buf[i] = lockPath[i]; } OSTRACE(("CREATELOCKPATH proxy lock path=%s pid=%d\n",lockPath,osGetpid(0))); return 0; } /* ** Create a new VFS file descriptor (stored in memory obtained from ** sqlite3_malloc) and open the file named "path" in the file descriptor. ** ** The caller is responsible not only for closing the file descriptor ** but also for freeing the memory associated with the file descriptor. */ static int proxyCreateUnixFile( const char *path, /* path for the new unixFile */ unixFile **ppFile, /* unixFile created and returned by ref */ int islockfile /* if non zero missing dirs will be created */ ) { int fd = -1; unixFile *pNew; int rc = SQLITE_OK; int openFlags = O_RDWR | O_CREAT | O_NOFOLLOW; sqlite3_vfs dummyVfs; int terrno = 0; UnixUnusedFd *pUnused = NULL; /* 1. first try to open/create the file ** 2. if that fails, and this is a lock file (not-conch), try creating ** the parent directories and then try again. ** 3. if that fails, try to open the file read-only ** otherwise return BUSY (if lock file) or CANTOPEN for the conch file */ pUnused = findReusableFd(path, openFlags); if( pUnused ){ fd = pUnused->fd; }else{ pUnused = sqlite3_malloc64(sizeof(*pUnused)); if( !pUnused ){ return SQLITE_NOMEM_BKPT; } } if( fd<0 ){ fd = robust_open(path, openFlags, 0); terrno = errno; if( fd<0 && errno==ENOENT && islockfile ){ if( proxyCreateLockPath(path) == SQLITE_OK ){ fd = robust_open(path, openFlags, 0); } } } if( fd<0 ){ openFlags = O_RDONLY | O_NOFOLLOW; fd = robust_open(path, openFlags, 0); terrno = errno; } if( fd<0 ){ if( islockfile ){ return SQLITE_BUSY; } switch (terrno) { case EACCES: return SQLITE_PERM; case EIO: return SQLITE_IOERR_LOCK; /* even though it is the conch */ default: return SQLITE_CANTOPEN_BKPT; } } pNew = (unixFile *)sqlite3_malloc64(sizeof(*pNew)); if( pNew==NULL ){ rc = SQLITE_NOMEM_BKPT; goto end_create_proxy; } memset(pNew, 0, sizeof(unixFile)); pNew->openFlags = openFlags; memset(&dummyVfs, 0, sizeof(dummyVfs)); dummyVfs.pAppData = (void*)&autolockIoFinder; dummyVfs.zName = "dummy"; pUnused->fd = fd; pUnused->flags = openFlags; pNew->pPreallocatedUnused = pUnused; rc = fillInUnixFile(&dummyVfs, fd, (sqlite3_file*)pNew, path, 0); if( rc==SQLITE_OK ){ *ppFile = pNew; return SQLITE_OK; } end_create_proxy: robust_close(pNew, fd, __LINE__); sqlite3_free(pNew); sqlite3_free(pUnused); return rc; } #ifdef SQLITE_TEST /* simulate multiple hosts by creating unique hostid file paths */ SQLITE_API int sqlite3_hostid_num = 0; #endif #define PROXY_HOSTIDLEN 16 /* conch file host id length */ #if HAVE_GETHOSTUUID /* Not always defined in the headers as it ought to be */ extern int gethostuuid(uuid_t id, const struct timespec *wait); #endif /* get the host ID via gethostuuid(), pHostID must point to PROXY_HOSTIDLEN ** bytes of writable memory. */ static int proxyGetHostID(unsigned char *pHostID, int *pError){ assert(PROXY_HOSTIDLEN == sizeof(uuid_t)); memset(pHostID, 0, PROXY_HOSTIDLEN); #if HAVE_GETHOSTUUID { struct timespec timeout = {1, 0}; /* 1 sec timeout */ if( gethostuuid(pHostID, &timeout) ){ int err = errno; if( pError ){ *pError = err; } return SQLITE_IOERR; } } #else UNUSED_PARAMETER(pError); #endif #ifdef SQLITE_TEST /* simulate multiple hosts by creating unique hostid file paths */ if( sqlite3_hostid_num != 0){ pHostID[0] = (char)(pHostID[0] + (char)(sqlite3_hostid_num & 0xFF)); } #endif return SQLITE_OK; } /* The conch file contains the header, host id and lock file path */ #define PROXY_CONCHVERSION 2 /* 1-byte header, 16-byte host id, path */ #define PROXY_HEADERLEN 1 /* conch file header length */ #define PROXY_PATHINDEX (PROXY_HEADERLEN+PROXY_HOSTIDLEN) #define PROXY_MAXCONCHLEN (PROXY_HEADERLEN+PROXY_HOSTIDLEN+MAXPATHLEN) /* ** Takes an open conch file, copies the contents to a new path and then moves ** it back. The newly created file's file descriptor is assigned to the ** conch file structure and finally the original conch file descriptor is ** closed. Returns zero if successful. */ static int proxyBreakConchLock(unixFile *pFile, uuid_t myHostID){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; unixFile *conchFile = pCtx->conchFile; char tPath[MAXPATHLEN]; char buf[PROXY_MAXCONCHLEN]; char *cPath = pCtx->conchFilePath; size_t readLen = 0; size_t pathLen = 0; char errmsg[64] = ""; int fd = -1; int rc = -1; UNUSED_PARAMETER(myHostID); /* create a new path by replace the trailing '-conch' with '-break' */ pathLen = strlcpy(tPath, cPath, MAXPATHLEN); if( pathLen>MAXPATHLEN || pathLen<6 || (strlcpy(&tPath[pathLen-5], "break", 6) != 5) ){ sqlite3_snprintf(sizeof(errmsg),errmsg,"path error (len %d)",(int)pathLen); goto end_breaklock; } /* read the conch content */ readLen = osPread(conchFile->h, buf, PROXY_MAXCONCHLEN, 0); if( readLenh, __LINE__); conchFile->h = fd; conchFile->openFlags = O_RDWR | O_CREAT; end_breaklock: if( rc ){ if( fd>=0 ){ osUnlink(tPath); robust_close(pFile, fd, __LINE__); } fprintf(stderr, "failed to break stale lock on %s, %s\n", cPath, errmsg); } return rc; } /* Take the requested lock on the conch file and break a stale lock if the ** host id matches. */ static int proxyConchLock(unixFile *pFile, uuid_t myHostID, int lockType){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; unixFile *conchFile = pCtx->conchFile; int rc = SQLITE_OK; int nTries = 0; struct timespec conchModTime; memset(&conchModTime, 0, sizeof(conchModTime)); do { rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); nTries ++; if( rc==SQLITE_BUSY ){ /* If the lock failed (busy): * 1st try: get the mod time of the conch, wait 0.5s and try again. * 2nd try: fail if the mod time changed or host id is different, wait * 10 sec and try again * 3rd try: break the lock unless the mod time has changed. */ struct stat buf; if( osFstat(conchFile->h, &buf) ){ storeLastErrno(pFile, errno); return SQLITE_IOERR_LOCK; } if( nTries==1 ){ conchModTime = buf.st_mtimespec; unixSleep(0,500000); /* wait 0.5 sec and try the lock again*/ continue; } assert( nTries>1 ); if( conchModTime.tv_sec != buf.st_mtimespec.tv_sec || conchModTime.tv_nsec != buf.st_mtimespec.tv_nsec ){ return SQLITE_BUSY; } if( nTries==2 ){ char tBuf[PROXY_MAXCONCHLEN]; int len = osPread(conchFile->h, tBuf, PROXY_MAXCONCHLEN, 0); if( len<0 ){ storeLastErrno(pFile, errno); return SQLITE_IOERR_LOCK; } if( len>PROXY_PATHINDEX && tBuf[0]==(char)PROXY_CONCHVERSION){ /* don't break the lock if the host id doesn't match */ if( 0!=memcmp(&tBuf[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN) ){ return SQLITE_BUSY; } }else{ /* don't break the lock on short read or a version mismatch */ return SQLITE_BUSY; } unixSleep(0,10000000); /* wait 10 sec and try the lock again */ continue; } assert( nTries==3 ); if( 0==proxyBreakConchLock(pFile, myHostID) ){ rc = SQLITE_OK; if( lockType==EXCLUSIVE_LOCK ){ rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK); } if( !rc ){ rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); } } } } while( rc==SQLITE_BUSY && nTries<3 ); return rc; } /* Takes the conch by taking a shared lock and read the contents conch, if ** lockPath is non-NULL, the host ID and lock file path must match. A NULL ** lockPath means that the lockPath in the conch file will be used if the ** host IDs match, or a new lock path will be generated automatically ** and written to the conch file. */ static int proxyTakeConch(unixFile *pFile){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld!=0 ){ return SQLITE_OK; }else{ unixFile *conchFile = pCtx->conchFile; uuid_t myHostID; int pError = 0; char readBuf[PROXY_MAXCONCHLEN]; char lockPath[MAXPATHLEN]; char *tempLockPath = NULL; int rc = SQLITE_OK; int createConch = 0; int hostIdMatch = 0; int readLen = 0; int tryOldLockPath = 0; int forceNewLockPath = 0; OSTRACE(("TAKECONCH %d for %s pid=%d\n", conchFile->h, (pCtx->lockProxyPath ? pCtx->lockProxyPath : ":auto:"), osGetpid(0))); rc = proxyGetHostID(myHostID, &pError); if( (rc&0xff)==SQLITE_IOERR ){ storeLastErrno(pFile, pError); goto end_takeconch; } rc = proxyConchLock(pFile, myHostID, SHARED_LOCK); if( rc!=SQLITE_OK ){ goto end_takeconch; } /* read the existing conch file */ readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN); if( readLen<0 ){ /* I/O error: lastErrno set by seekAndRead */ storeLastErrno(pFile, conchFile->lastErrno); rc = SQLITE_IOERR_READ; goto end_takeconch; }else if( readLen<=(PROXY_HEADERLEN+PROXY_HOSTIDLEN) || readBuf[0]!=(char)PROXY_CONCHVERSION ){ /* a short read or version format mismatch means we need to create a new ** conch file. */ createConch = 1; } /* if the host id matches and the lock path already exists in the conch ** we'll try to use the path there, if we can't open that path, we'll ** retry with a new auto-generated path */ do { /* in case we need to try again for an :auto: named lock file */ if( !createConch && !forceNewLockPath ){ hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN); /* if the conch has data compare the contents */ if( !pCtx->lockProxyPath ){ /* for auto-named local lock file, just check the host ID and we'll ** use the local lock file path that's already in there */ if( hostIdMatch ){ size_t pathLen = (readLen - PROXY_PATHINDEX); if( pathLen>=MAXPATHLEN ){ pathLen=MAXPATHLEN-1; } memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen); lockPath[pathLen] = 0; tempLockPath = lockPath; tryOldLockPath = 1; /* create a copy of the lock path if the conch is taken */ goto end_takeconch; } }else if( hostIdMatch && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX], readLen-PROXY_PATHINDEX) ){ /* conch host and lock path match */ goto end_takeconch; } } /* if the conch isn't writable and doesn't match, we can't take it */ if( (conchFile->openFlags&O_RDWR) == 0 ){ rc = SQLITE_BUSY; goto end_takeconch; } /* either the conch didn't match or we need to create a new one */ if( !pCtx->lockProxyPath ){ proxyGetLockPath(pCtx->dbPath, lockPath, MAXPATHLEN); tempLockPath = lockPath; /* create a copy of the lock path _only_ if the conch is taken */ } /* update conch with host and path (this will fail if other process ** has a shared lock already), if the host id matches, use the big ** stick. */ futimes(conchFile->h, NULL); if( hostIdMatch && !createConch ){ if( conchFile->pInode && conchFile->pInode->nShared>1 ){ /* We are trying for an exclusive lock but another thread in this ** same process is still holding a shared lock. */ rc = SQLITE_BUSY; } else { rc = proxyConchLock(pFile, myHostID, EXCLUSIVE_LOCK); } }else{ rc = proxyConchLock(pFile, myHostID, EXCLUSIVE_LOCK); } if( rc==SQLITE_OK ){ char writeBuffer[PROXY_MAXCONCHLEN]; int writeSize = 0; writeBuffer[0] = (char)PROXY_CONCHVERSION; memcpy(&writeBuffer[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN); if( pCtx->lockProxyPath!=NULL ){ strlcpy(&writeBuffer[PROXY_PATHINDEX], pCtx->lockProxyPath, MAXPATHLEN); }else{ strlcpy(&writeBuffer[PROXY_PATHINDEX], tempLockPath, MAXPATHLEN); } writeSize = PROXY_PATHINDEX + strlen(&writeBuffer[PROXY_PATHINDEX]); robust_ftruncate(conchFile->h, writeSize); rc = unixWrite((sqlite3_file *)conchFile, writeBuffer, writeSize, 0); full_fsync(conchFile->h,0,0); /* If we created a new conch file (not just updated the contents of a ** valid conch file), try to match the permissions of the database */ if( rc==SQLITE_OK && createConch ){ struct stat buf; int err = osFstat(pFile->h, &buf); if( err==0 ){ mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP | S_IROTH|S_IWOTH); /* try to match the database file R/W permissions, ignore failure */ #ifndef SQLITE_PROXY_DEBUG osFchmod(conchFile->h, cmode); #else do{ rc = osFchmod(conchFile->h, cmode); }while( rc==(-1) && errno==EINTR ); if( rc!=0 ){ int code = errno; fprintf(stderr, "fchmod %o FAILED with %d %s\n", cmode, code, strerror(code)); } else { fprintf(stderr, "fchmod %o SUCCEDED\n",cmode); } }else{ int code = errno; fprintf(stderr, "STAT FAILED[%d] with %d %s\n", err, code, strerror(code)); #endif } } } conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK); end_takeconch: OSTRACE(("TRANSPROXY: CLOSE %d\n", pFile->h)); if( rc==SQLITE_OK && pFile->openFlags ){ int fd; if( pFile->h>=0 ){ robust_close(pFile, pFile->h, __LINE__); } pFile->h = -1; fd = robust_open(pCtx->dbPath, pFile->openFlags, 0); OSTRACE(("TRANSPROXY: OPEN %d\n", fd)); if( fd>=0 ){ pFile->h = fd; }else{ rc=SQLITE_CANTOPEN_BKPT; /* SQLITE_BUSY? proxyTakeConch called during locking */ } } if( rc==SQLITE_OK && !pCtx->lockProxy ){ char *path = tempLockPath ? tempLockPath : pCtx->lockProxyPath; rc = proxyCreateUnixFile(path, &pCtx->lockProxy, 1); if( rc!=SQLITE_OK && rc!=SQLITE_NOMEM && tryOldLockPath ){ /* we couldn't create the proxy lock file with the old lock file path ** so try again via auto-naming */ forceNewLockPath = 1; tryOldLockPath = 0; continue; /* go back to the do {} while start point, try again */ } } if( rc==SQLITE_OK ){ /* Need to make a copy of path if we extracted the value ** from the conch file or the path was allocated on the stack */ if( tempLockPath ){ pCtx->lockProxyPath = sqlite3DbStrDup(0, tempLockPath); if( !pCtx->lockProxyPath ){ rc = SQLITE_NOMEM_BKPT; } } } if( rc==SQLITE_OK ){ pCtx->conchHeld = 1; if( pCtx->lockProxy->pMethod == &afpIoMethods ){ afpLockingContext *afpCtx; afpCtx = (afpLockingContext *)pCtx->lockProxy->lockingContext; afpCtx->dbPath = pCtx->lockProxyPath; } } else { conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK); } OSTRACE(("TAKECONCH %d %s\n", conchFile->h, rc==SQLITE_OK?"ok":"failed")); return rc; } while (1); /* in case we need to retry the :auto: lock file - ** we should never get here except via the 'continue' call. */ } } /* ** If pFile holds a lock on a conch file, then release that lock. */ static int proxyReleaseConch(unixFile *pFile){ int rc = SQLITE_OK; /* Subroutine return code */ proxyLockingContext *pCtx; /* The locking context for the proxy lock */ unixFile *conchFile; /* Name of the conch file */ pCtx = (proxyLockingContext *)pFile->lockingContext; conchFile = pCtx->conchFile; OSTRACE(("RELEASECONCH %d for %s pid=%d\n", conchFile->h, (pCtx->lockProxyPath ? pCtx->lockProxyPath : ":auto:"), osGetpid(0))); if( pCtx->conchHeld>0 ){ rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK); } pCtx->conchHeld = 0; OSTRACE(("RELEASECONCH %d %s\n", conchFile->h, (rc==SQLITE_OK ? "ok" : "failed"))); return rc; } /* ** Given the name of a database file, compute the name of its conch file. ** Store the conch filename in memory obtained from sqlite3_malloc64(). ** Make *pConchPath point to the new name. Return SQLITE_OK on success ** or SQLITE_NOMEM if unable to obtain memory. ** ** The caller is responsible for ensuring that the allocated memory ** space is eventually freed. ** ** *pConchPath is set to NULL if a memory allocation error occurs. */ static int proxyCreateConchPathname(char *dbPath, char **pConchPath){ int i; /* Loop counter */ int len = (int)strlen(dbPath); /* Length of database filename - dbPath */ char *conchPath; /* buffer in which to construct conch name */ /* Allocate space for the conch filename and initialize the name to ** the name of the original database file. */ *pConchPath = conchPath = (char *)sqlite3_malloc64(len + 8); if( conchPath==0 ){ return SQLITE_NOMEM_BKPT; } memcpy(conchPath, dbPath, len+1); /* now insert a "." before the last / character */ for( i=(len-1); i>=0; i-- ){ if( conchPath[i]=='/' ){ i++; break; } } conchPath[i]='.'; while ( ilockingContext; char *oldPath = pCtx->lockProxyPath; int rc = SQLITE_OK; if( pFile->eFileLock!=NO_LOCK ){ return SQLITE_BUSY; } /* nothing to do if the path is NULL, :auto: or matches the existing path */ if( !path || path[0]=='\0' || !strcmp(path, ":auto:") || (oldPath && !strncmp(oldPath, path, MAXPATHLEN)) ){ return SQLITE_OK; }else{ unixFile *lockProxy = pCtx->lockProxy; pCtx->lockProxy=NULL; pCtx->conchHeld = 0; if( lockProxy!=NULL ){ rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy); if( rc ) return rc; sqlite3_free(lockProxy); } sqlite3_free(oldPath); pCtx->lockProxyPath = sqlite3DbStrDup(0, path); } return rc; } /* ** pFile is a file that has been opened by a prior xOpen call. dbPath ** is a string buffer at least MAXPATHLEN+1 characters in size. ** ** This routine find the filename associated with pFile and writes it ** int dbPath. */ static int proxyGetDbPathForUnixFile(unixFile *pFile, char *dbPath){ #if defined(__APPLE__) if( pFile->pMethod == &afpIoMethods ){ /* afp style keeps a reference to the db path in the filePath field ** of the struct */ assert( (int)strlen((char*)pFile->lockingContext)<=MAXPATHLEN ); strlcpy(dbPath, ((afpLockingContext *)pFile->lockingContext)->dbPath, MAXPATHLEN); } else #endif if( pFile->pMethod == &dotlockIoMethods ){ /* dot lock style uses the locking context to store the dot lock ** file path */ int len = strlen((char *)pFile->lockingContext) - strlen(DOTLOCK_SUFFIX); memcpy(dbPath, (char *)pFile->lockingContext, len + 1); }else{ /* all other styles use the locking context to store the db file path */ assert( strlen((char*)pFile->lockingContext)<=MAXPATHLEN ); strlcpy(dbPath, (char *)pFile->lockingContext, MAXPATHLEN); } return SQLITE_OK; } /* ** Takes an already filled in unix file and alters it so all file locking ** will be performed on the local proxy lock file. The following fields ** are preserved in the locking context so that they can be restored and ** the unix structure properly cleaned up at close time: ** ->lockingContext ** ->pMethod */ static int proxyTransformUnixFile(unixFile *pFile, const char *path) { proxyLockingContext *pCtx; char dbPath[MAXPATHLEN+1]; /* Name of the database file */ char *lockPath=NULL; int rc = SQLITE_OK; if( pFile->eFileLock!=NO_LOCK ){ return SQLITE_BUSY; } proxyGetDbPathForUnixFile(pFile, dbPath); if( !path || path[0]=='\0' || !strcmp(path, ":auto:") ){ lockPath=NULL; }else{ lockPath=(char *)path; } OSTRACE(("TRANSPROXY %d for %s pid=%d\n", pFile->h, (lockPath ? lockPath : ":auto:"), osGetpid(0))); pCtx = sqlite3_malloc64( sizeof(*pCtx) ); if( pCtx==0 ){ return SQLITE_NOMEM_BKPT; } memset(pCtx, 0, sizeof(*pCtx)); rc = proxyCreateConchPathname(dbPath, &pCtx->conchFilePath); if( rc==SQLITE_OK ){ rc = proxyCreateUnixFile(pCtx->conchFilePath, &pCtx->conchFile, 0); if( rc==SQLITE_CANTOPEN && ((pFile->openFlags&O_RDWR) == 0) ){ /* if (a) the open flags are not O_RDWR, (b) the conch isn't there, and ** (c) the file system is read-only, then enable no-locking access. ** Ugh, since O_RDONLY==0x0000 we test for !O_RDWR since unixOpen asserts ** that openFlags will have only one of O_RDONLY or O_RDWR. */ struct statfs fsInfo; struct stat conchInfo; int goLockless = 0; if( osStat(pCtx->conchFilePath, &conchInfo) == -1 ) { int err = errno; if( (err==ENOENT) && (statfs(dbPath, &fsInfo) != -1) ){ goLockless = (fsInfo.f_flags&MNT_RDONLY) == MNT_RDONLY; } } if( goLockless ){ pCtx->conchHeld = -1; /* read only FS/ lockless */ rc = SQLITE_OK; } } } if( rc==SQLITE_OK && lockPath ){ pCtx->lockProxyPath = sqlite3DbStrDup(0, lockPath); } if( rc==SQLITE_OK ){ pCtx->dbPath = sqlite3DbStrDup(0, dbPath); if( pCtx->dbPath==NULL ){ rc = SQLITE_NOMEM_BKPT; } } if( rc==SQLITE_OK ){ /* all memory is allocated, proxys are created and assigned, ** switch the locking context and pMethod then return. */ pCtx->oldLockingContext = pFile->lockingContext; pFile->lockingContext = pCtx; pCtx->pOldMethod = pFile->pMethod; pFile->pMethod = &proxyIoMethods; }else{ if( pCtx->conchFile ){ pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile); sqlite3_free(pCtx->conchFile); } sqlite3DbFree(0, pCtx->lockProxyPath); sqlite3_free(pCtx->conchFilePath); sqlite3_free(pCtx); } OSTRACE(("TRANSPROXY %d %s\n", pFile->h, (rc==SQLITE_OK ? "ok" : "failed"))); return rc; } /* ** This routine handles sqlite3_file_control() calls that are specific ** to proxy locking. */ static int proxyFileControl(sqlite3_file *id, int op, void *pArg){ switch( op ){ case SQLITE_FCNTL_GET_LOCKPROXYFILE: { unixFile *pFile = (unixFile*)id; if( pFile->pMethod == &proxyIoMethods ){ proxyLockingContext *pCtx = (proxyLockingContext*)pFile->lockingContext; proxyTakeConch(pFile); if( pCtx->lockProxyPath ){ *(const char **)pArg = pCtx->lockProxyPath; }else{ *(const char **)pArg = ":auto: (not held)"; } } else { *(const char **)pArg = NULL; } return SQLITE_OK; } case SQLITE_FCNTL_SET_LOCKPROXYFILE: { unixFile *pFile = (unixFile*)id; int rc = SQLITE_OK; int isProxyStyle = (pFile->pMethod == &proxyIoMethods); if( pArg==NULL || (const char *)pArg==0 ){ if( isProxyStyle ){ /* turn off proxy locking - not supported. If support is added for ** switching proxy locking mode off then it will need to fail if ** the journal mode is WAL mode. */ rc = SQLITE_ERROR /*SQLITE_PROTOCOL? SQLITE_MISUSE?*/; }else{ /* turn off proxy locking - already off - NOOP */ rc = SQLITE_OK; } }else{ const char *proxyPath = (const char *)pArg; if( isProxyStyle ){ proxyLockingContext *pCtx = (proxyLockingContext*)pFile->lockingContext; if( !strcmp(pArg, ":auto:") || (pCtx->lockProxyPath && !strncmp(pCtx->lockProxyPath, proxyPath, MAXPATHLEN)) ){ rc = SQLITE_OK; }else{ rc = switchLockProxyPath(pFile, proxyPath); } }else{ /* turn on proxy file locking */ rc = proxyTransformUnixFile(pFile, proxyPath); } } return rc; } default: { assert( 0 ); /* The call assures that only valid opcodes are sent */ } } /*NOTREACHED*/ assert(0); return SQLITE_ERROR; } /* ** Within this division (the proxying locking implementation) the procedures ** above this point are all utilities. The lock-related methods of the ** proxy-locking sqlite3_io_method object follow. */ /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) { unixFile *pFile = (unixFile*)id; int rc = proxyTakeConch(pFile); if( rc==SQLITE_OK ){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld>0 ){ unixFile *proxy = pCtx->lockProxy; return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut); }else{ /* conchHeld < 0 is lockless */ pResOut=0; } } return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int proxyLock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; int rc = proxyTakeConch(pFile); if( rc==SQLITE_OK ){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld>0 ){ unixFile *proxy = pCtx->lockProxy; rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock); pFile->eFileLock = proxy->eFileLock; }else{ /* conchHeld < 0 is lockless */ } } return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int proxyUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; int rc = proxyTakeConch(pFile); if( rc==SQLITE_OK ){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld>0 ){ unixFile *proxy = pCtx->lockProxy; rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock); pFile->eFileLock = proxy->eFileLock; }else{ /* conchHeld < 0 is lockless */ } } return rc; } /* ** Close a file that uses proxy locks. */ static int proxyClose(sqlite3_file *id) { if( ALWAYS(id) ){ unixFile *pFile = (unixFile*)id; proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; unixFile *lockProxy = pCtx->lockProxy; unixFile *conchFile = pCtx->conchFile; int rc = SQLITE_OK; if( lockProxy ){ rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK); if( rc ) return rc; rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy); if( rc ) return rc; sqlite3_free(lockProxy); pCtx->lockProxy = 0; } if( conchFile ){ if( pCtx->conchHeld ){ rc = proxyReleaseConch(pFile); if( rc ) return rc; } rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile); if( rc ) return rc; sqlite3_free(conchFile); } sqlite3DbFree(0, pCtx->lockProxyPath); sqlite3_free(pCtx->conchFilePath); sqlite3DbFree(0, pCtx->dbPath); /* restore the original locking context and pMethod then close it */ pFile->lockingContext = pCtx->oldLockingContext; pFile->pMethod = pCtx->pOldMethod; sqlite3_free(pCtx); return pFile->pMethod->xClose(id); } return SQLITE_OK; } #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ /* ** The proxy locking style is intended for use with AFP filesystems. ** And since AFP is only supported on MacOSX, the proxy locking is also ** restricted to MacOSX. ** ** ******************* End of the proxy lock implementation ********************** ******************************************************************************/ /* ** Initialize the operating system interface. ** ** This routine registers all VFS implementations for unix-like operating ** systems. This routine, and the sqlite3_os_end() routine that follows, ** should be the only routines in this file that are visible from other ** files. ** ** This routine is called once during SQLite initialization and by a ** single thread. The memory allocation and mutex subsystems have not ** necessarily been initialized when this routine is called, and so they ** should not be used. */ SQLITE_API int sqlite3_os_init(void){ /* ** The following macro defines an initializer for an sqlite3_vfs object. ** The name of the VFS is NAME. The pAppData is a pointer to a pointer ** to the "finder" function. (pAppData is a pointer to a pointer because ** silly C90 rules prohibit a void* from being cast to a function pointer ** and so we have to go through the intermediate pointer to avoid problems ** when compiling with -pedantic-errors on GCC.) ** ** The FINDER parameter to this macro is the name of the pointer to the ** finder-function. The finder-function returns a pointer to the ** sqlite_io_methods object that implements the desired locking ** behaviors. See the division above that contains the IOMETHODS ** macro for addition information on finder-functions. ** ** Most finders simply return a pointer to a fixed sqlite3_io_methods ** object. But the "autolockIoFinder" available on MacOSX does a little ** more than that; it looks at the filesystem type that hosts the ** database file and tries to choose an locking method appropriate for ** that filesystem time. */ #define UNIXVFS(VFSNAME, FINDER) { \ 3, /* iVersion */ \ sizeof(unixFile), /* szOsFile */ \ MAX_PATHNAME, /* mxPathname */ \ 0, /* pNext */ \ VFSNAME, /* zName */ \ (void*)&FINDER, /* pAppData */ \ unixOpen, /* xOpen */ \ unixDelete, /* xDelete */ \ unixAccess, /* xAccess */ \ unixFullPathname, /* xFullPathname */ \ unixDlOpen, /* xDlOpen */ \ unixDlError, /* xDlError */ \ unixDlSym, /* xDlSym */ \ unixDlClose, /* xDlClose */ \ unixRandomness, /* xRandomness */ \ unixSleep, /* xSleep */ \ unixCurrentTime, /* xCurrentTime */ \ unixGetLastError, /* xGetLastError */ \ unixCurrentTimeInt64, /* xCurrentTimeInt64 */ \ unixSetSystemCall, /* xSetSystemCall */ \ unixGetSystemCall, /* xGetSystemCall */ \ unixNextSystemCall, /* xNextSystemCall */ \ } /* ** All default VFSes for unix are contained in the following array. ** ** Note that the sqlite3_vfs.pNext field of the VFS object is modified ** by the SQLite core when the VFS is registered. So the following ** array cannot be const. */ static sqlite3_vfs aVfs[] = { #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) UNIXVFS("unix", autolockIoFinder ), #elif OS_VXWORKS UNIXVFS("unix", vxworksIoFinder ), #else UNIXVFS("unix", posixIoFinder ), #endif UNIXVFS("unix-none", nolockIoFinder ), UNIXVFS("unix-dotfile", dotlockIoFinder ), UNIXVFS("unix-excl", posixIoFinder ), #if OS_VXWORKS UNIXVFS("unix-namedsem", semIoFinder ), #endif #if SQLITE_ENABLE_LOCKING_STYLE || OS_VXWORKS UNIXVFS("unix-posix", posixIoFinder ), #endif #if SQLITE_ENABLE_LOCKING_STYLE UNIXVFS("unix-flock", flockIoFinder ), #endif #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) UNIXVFS("unix-afp", afpIoFinder ), UNIXVFS("unix-nfs", nfsIoFinder ), UNIXVFS("unix-proxy", proxyIoFinder ), #endif }; unsigned int i; /* Loop counter */ /* Double-check that the aSyscall[] array has been constructed ** correctly. See ticket [bb3a86e890c8e96ab] */ assert( ArraySize(aSyscall)==29 ); /* Register all VFSes defined in the aVfs[] array */ for(i=0; i<(sizeof(aVfs)/sizeof(sqlite3_vfs)); i++){ sqlite3_vfs_register(&aVfs[i], i==0); } unixBigLock = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); #ifndef SQLITE_OMIT_WAL /* Validate lock assumptions */ assert( SQLITE_SHM_NLOCK==8 ); /* Number of available locks */ assert( UNIX_SHM_BASE==120 ); /* Start of locking area */ /* Locks: ** WRITE UNIX_SHM_BASE 120 ** CKPT UNIX_SHM_BASE+1 121 ** RECOVER UNIX_SHM_BASE+2 122 ** READ-0 UNIX_SHM_BASE+3 123 ** READ-1 UNIX_SHM_BASE+4 124 ** READ-2 UNIX_SHM_BASE+5 125 ** READ-3 UNIX_SHM_BASE+6 126 ** READ-4 UNIX_SHM_BASE+7 127 ** DMS UNIX_SHM_BASE+8 128 */ assert( UNIX_SHM_DMS==128 ); /* Byte offset of the deadman-switch */ #endif /* Initialize temp file dir array. */ unixTempFileInit(); return SQLITE_OK; } /* ** Shutdown the operating system interface. ** ** Some operating systems might need to do some cleanup in this routine, ** to release dynamically allocated objects. But not on unix. ** This routine is a no-op for unix. */ SQLITE_API int sqlite3_os_end(void){ unixBigLock = 0; return SQLITE_OK; } #endif /* SQLITE_OS_UNIX */ /************** End of os_unix.c *********************************************/ /************** Begin file os_win.c ******************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to Windows. */ /* #include "sqliteInt.h" */ #if SQLITE_OS_WIN /* This file is used for Windows only */ /* ** Include code that is common to all os_*.c files */ /* #include "os_common.h" */ /* ** Include the header file for the Windows VFS. */ /* #include "os_win.h" */ /* ** Compiling and using WAL mode requires several APIs that are only ** available in Windows platforms based on the NT kernel. */ #if !SQLITE_OS_WINNT && !defined(SQLITE_OMIT_WAL) # error "WAL mode requires support from the Windows NT kernel, compile\ with SQLITE_OMIT_WAL." #endif #if !SQLITE_OS_WINNT && SQLITE_MAX_MMAP_SIZE>0 # error "Memory mapped files require support from the Windows NT kernel,\ compile with SQLITE_MAX_MMAP_SIZE=0." #endif /* ** Are most of the Win32 ANSI APIs available (i.e. with certain exceptions ** based on the sub-platform)? */ #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(SQLITE_WIN32_NO_ANSI) # define SQLITE_WIN32_HAS_ANSI #endif /* ** Are most of the Win32 Unicode APIs available (i.e. with certain exceptions ** based on the sub-platform)? */ #if (SQLITE_OS_WINCE || SQLITE_OS_WINNT || SQLITE_OS_WINRT) && \ !defined(SQLITE_WIN32_NO_WIDE) # define SQLITE_WIN32_HAS_WIDE #endif /* ** Make sure at least one set of Win32 APIs is available. */ #if !defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_WIN32_HAS_WIDE) # error "At least one of SQLITE_WIN32_HAS_ANSI and SQLITE_WIN32_HAS_WIDE\ must be defined." #endif /* ** Define the required Windows SDK version constants if they are not ** already available. */ #ifndef NTDDI_WIN8 # define NTDDI_WIN8 0x06020000 #endif #ifndef NTDDI_WINBLUE # define NTDDI_WINBLUE 0x06030000 #endif #ifndef NTDDI_WINTHRESHOLD # define NTDDI_WINTHRESHOLD 0x06040000 #endif /* ** Check to see if the GetVersionEx[AW] functions are deprecated on the ** target system. GetVersionEx was first deprecated in Win8.1. */ #ifndef SQLITE_WIN32_GETVERSIONEX # if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINBLUE # define SQLITE_WIN32_GETVERSIONEX 0 /* GetVersionEx() is deprecated */ # else # define SQLITE_WIN32_GETVERSIONEX 1 /* GetVersionEx() is current */ # endif #endif /* ** Check to see if the CreateFileMappingA function is supported on the ** target system. It is unavailable when using "mincore.lib" on Win10. ** When compiling for Windows 10, always assume "mincore.lib" is in use. */ #ifndef SQLITE_WIN32_CREATEFILEMAPPINGA # if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINTHRESHOLD # define SQLITE_WIN32_CREATEFILEMAPPINGA 0 # else # define SQLITE_WIN32_CREATEFILEMAPPINGA 1 # endif #endif /* ** This constant should already be defined (in the "WinDef.h" SDK file). */ #ifndef MAX_PATH # define MAX_PATH (260) #endif /* ** Maximum pathname length (in chars) for Win32. This should normally be ** MAX_PATH. */ #ifndef SQLITE_WIN32_MAX_PATH_CHARS # define SQLITE_WIN32_MAX_PATH_CHARS (MAX_PATH) #endif /* ** This constant should already be defined (in the "WinNT.h" SDK file). */ #ifndef UNICODE_STRING_MAX_CHARS # define UNICODE_STRING_MAX_CHARS (32767) #endif /* ** Maximum pathname length (in chars) for WinNT. This should normally be ** UNICODE_STRING_MAX_CHARS. */ #ifndef SQLITE_WINNT_MAX_PATH_CHARS # define SQLITE_WINNT_MAX_PATH_CHARS (UNICODE_STRING_MAX_CHARS) #endif /* ** Maximum pathname length (in bytes) for Win32. The MAX_PATH macro is in ** characters, so we allocate 4 bytes per character assuming worst-case of ** 4-bytes-per-character for UTF8. */ #ifndef SQLITE_WIN32_MAX_PATH_BYTES # define SQLITE_WIN32_MAX_PATH_BYTES (SQLITE_WIN32_MAX_PATH_CHARS*4) #endif /* ** Maximum pathname length (in bytes) for WinNT. This should normally be ** UNICODE_STRING_MAX_CHARS * sizeof(WCHAR). */ #ifndef SQLITE_WINNT_MAX_PATH_BYTES # define SQLITE_WINNT_MAX_PATH_BYTES \ (sizeof(WCHAR) * SQLITE_WINNT_MAX_PATH_CHARS) #endif /* ** Maximum error message length (in chars) for WinRT. */ #ifndef SQLITE_WIN32_MAX_ERRMSG_CHARS # define SQLITE_WIN32_MAX_ERRMSG_CHARS (1024) #endif /* ** Returns non-zero if the character should be treated as a directory ** separator. */ #ifndef winIsDirSep # define winIsDirSep(a) (((a) == '/') || ((a) == '\\')) #endif /* ** This macro is used when a local variable is set to a value that is ** [sometimes] not used by the code (e.g. via conditional compilation). */ #ifndef UNUSED_VARIABLE_VALUE # define UNUSED_VARIABLE_VALUE(x) (void)(x) #endif /* ** Returns the character that should be used as the directory separator. */ #ifndef winGetDirSep # define winGetDirSep() '\\' #endif /* ** Do we need to manually define the Win32 file mapping APIs for use with WAL ** mode or memory mapped files (e.g. these APIs are available in the Windows ** CE SDK; however, they are not present in the header file)? */ #if SQLITE_WIN32_FILEMAPPING_API && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) /* ** Two of the file mapping APIs are different under WinRT. Figure out which ** set we need. */ #if SQLITE_OS_WINRT WINBASEAPI HANDLE WINAPI CreateFileMappingFromApp(HANDLE, \ LPSECURITY_ATTRIBUTES, ULONG, ULONG64, LPCWSTR); WINBASEAPI LPVOID WINAPI MapViewOfFileFromApp(HANDLE, ULONG, ULONG64, SIZE_T); #else #if defined(SQLITE_WIN32_HAS_ANSI) WINBASEAPI HANDLE WINAPI CreateFileMappingA(HANDLE, LPSECURITY_ATTRIBUTES, \ DWORD, DWORD, DWORD, LPCSTR); #endif /* defined(SQLITE_WIN32_HAS_ANSI) */ #if defined(SQLITE_WIN32_HAS_WIDE) WINBASEAPI HANDLE WINAPI CreateFileMappingW(HANDLE, LPSECURITY_ATTRIBUTES, \ DWORD, DWORD, DWORD, LPCWSTR); #endif /* defined(SQLITE_WIN32_HAS_WIDE) */ WINBASEAPI LPVOID WINAPI MapViewOfFile(HANDLE, DWORD, DWORD, DWORD, SIZE_T); #endif /* SQLITE_OS_WINRT */ /* ** These file mapping APIs are common to both Win32 and WinRT. */ WINBASEAPI BOOL WINAPI FlushViewOfFile(LPCVOID, SIZE_T); WINBASEAPI BOOL WINAPI UnmapViewOfFile(LPCVOID); #endif /* SQLITE_WIN32_FILEMAPPING_API */ /* ** Some Microsoft compilers lack this definition. */ #ifndef INVALID_FILE_ATTRIBUTES # define INVALID_FILE_ATTRIBUTES ((DWORD)-1) #endif #ifndef FILE_FLAG_MASK # define FILE_FLAG_MASK (0xFF3C0000) #endif #ifndef FILE_ATTRIBUTE_MASK # define FILE_ATTRIBUTE_MASK (0x0003FFF7) #endif #ifndef SQLITE_OMIT_WAL /* Forward references to structures used for WAL */ typedef struct winShm winShm; /* A connection to shared-memory */ typedef struct winShmNode winShmNode; /* A region of shared-memory */ #endif /* ** WinCE lacks native support for file locking so we have to fake it ** with some code of our own. */ #if SQLITE_OS_WINCE typedef struct winceLock { int nReaders; /* Number of reader locks obtained */ BOOL bPending; /* Indicates a pending lock has been obtained */ BOOL bReserved; /* Indicates a reserved lock has been obtained */ BOOL bExclusive; /* Indicates an exclusive lock has been obtained */ } winceLock; #endif /* ** The winFile structure is a subclass of sqlite3_file* specific to the win32 ** portability layer. */ typedef struct winFile winFile; struct winFile { const sqlite3_io_methods *pMethod; /*** Must be first ***/ sqlite3_vfs *pVfs; /* The VFS used to open this file */ HANDLE h; /* Handle for accessing the file */ u8 locktype; /* Type of lock currently held on this file */ short sharedLockByte; /* Randomly chosen byte used as a shared lock */ u8 ctrlFlags; /* Flags. See WINFILE_* below */ DWORD lastErrno; /* The Windows errno from the last I/O error */ #ifndef SQLITE_OMIT_WAL winShm *pShm; /* Instance of shared memory on this file */ #endif const char *zPath; /* Full pathname of this file */ int szChunk; /* Chunk size configured by FCNTL_CHUNK_SIZE */ #if SQLITE_OS_WINCE LPWSTR zDeleteOnClose; /* Name of file to delete when closing */ HANDLE hMutex; /* Mutex used to control access to shared lock */ HANDLE hShared; /* Shared memory segment used for locking */ winceLock local; /* Locks obtained by this instance of winFile */ winceLock *shared; /* Global shared lock memory for the file */ #endif #if SQLITE_MAX_MMAP_SIZE>0 int nFetchOut; /* Number of outstanding xFetch references */ HANDLE hMap; /* Handle for accessing memory mapping */ void *pMapRegion; /* Area memory mapped */ sqlite3_int64 mmapSize; /* Size of mapped region */ sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ #endif }; /* ** The winVfsAppData structure is used for the pAppData member for all of the ** Win32 VFS variants. */ typedef struct winVfsAppData winVfsAppData; struct winVfsAppData { const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */ void *pAppData; /* The extra pAppData, if any. */ BOOL bNoLock; /* Non-zero if locking is disabled. */ }; /* ** Allowed values for winFile.ctrlFlags */ #define WINFILE_RDONLY 0x02 /* Connection is read only */ #define WINFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ #define WINFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */ /* * The size of the buffer used by sqlite3_win32_write_debug(). */ #ifndef SQLITE_WIN32_DBG_BUF_SIZE # define SQLITE_WIN32_DBG_BUF_SIZE ((int)(4096-sizeof(DWORD))) #endif /* * If compiled with SQLITE_WIN32_MALLOC on Windows, we will use the * various Win32 API heap functions instead of our own. */ #ifdef SQLITE_WIN32_MALLOC /* * If this is non-zero, an isolated heap will be created by the native Win32 * allocator subsystem; otherwise, the default process heap will be used. This * setting has no effect when compiling for WinRT. By default, this is enabled * and an isolated heap will be created to store all allocated data. * ****************************************************************************** * WARNING: It is important to note that when this setting is non-zero and the * winMemShutdown function is called (e.g. by the sqlite3_shutdown * function), all data that was allocated using the isolated heap will * be freed immediately and any attempt to access any of that freed * data will almost certainly result in an immediate access violation. ****************************************************************************** */ #ifndef SQLITE_WIN32_HEAP_CREATE # define SQLITE_WIN32_HEAP_CREATE (TRUE) #endif /* * This is the maximum possible initial size of the Win32-specific heap, in * bytes. */ #ifndef SQLITE_WIN32_HEAP_MAX_INIT_SIZE # define SQLITE_WIN32_HEAP_MAX_INIT_SIZE (4294967295U) #endif /* * This is the extra space for the initial size of the Win32-specific heap, * in bytes. This value may be zero. */ #ifndef SQLITE_WIN32_HEAP_INIT_EXTRA # define SQLITE_WIN32_HEAP_INIT_EXTRA (4194304) #endif /* * Calculate the maximum legal cache size, in pages, based on the maximum * possible initial heap size and the default page size, setting aside the * needed extra space. */ #ifndef SQLITE_WIN32_MAX_CACHE_SIZE # define SQLITE_WIN32_MAX_CACHE_SIZE (((SQLITE_WIN32_HEAP_MAX_INIT_SIZE) - \ (SQLITE_WIN32_HEAP_INIT_EXTRA)) / \ (SQLITE_DEFAULT_PAGE_SIZE)) #endif /* * This is cache size used in the calculation of the initial size of the * Win32-specific heap. It cannot be negative. */ #ifndef SQLITE_WIN32_CACHE_SIZE # if SQLITE_DEFAULT_CACHE_SIZE>=0 # define SQLITE_WIN32_CACHE_SIZE (SQLITE_DEFAULT_CACHE_SIZE) # else # define SQLITE_WIN32_CACHE_SIZE (-(SQLITE_DEFAULT_CACHE_SIZE)) # endif #endif /* * Make sure that the calculated cache size, in pages, cannot cause the * initial size of the Win32-specific heap to exceed the maximum amount * of memory that can be specified in the call to HeapCreate. */ #if SQLITE_WIN32_CACHE_SIZE>SQLITE_WIN32_MAX_CACHE_SIZE # undef SQLITE_WIN32_CACHE_SIZE # define SQLITE_WIN32_CACHE_SIZE (2000) #endif /* * The initial size of the Win32-specific heap. This value may be zero. */ #ifndef SQLITE_WIN32_HEAP_INIT_SIZE # define SQLITE_WIN32_HEAP_INIT_SIZE ((SQLITE_WIN32_CACHE_SIZE) * \ (SQLITE_DEFAULT_PAGE_SIZE) + \ (SQLITE_WIN32_HEAP_INIT_EXTRA)) #endif /* * The maximum size of the Win32-specific heap. This value may be zero. */ #ifndef SQLITE_WIN32_HEAP_MAX_SIZE # define SQLITE_WIN32_HEAP_MAX_SIZE (0) #endif /* * The extra flags to use in calls to the Win32 heap APIs. This value may be * zero for the default behavior. */ #ifndef SQLITE_WIN32_HEAP_FLAGS # define SQLITE_WIN32_HEAP_FLAGS (0) #endif /* ** The winMemData structure stores information required by the Win32-specific ** sqlite3_mem_methods implementation. */ typedef struct winMemData winMemData; struct winMemData { #ifndef NDEBUG u32 magic1; /* Magic number to detect structure corruption. */ #endif HANDLE hHeap; /* The handle to our heap. */ BOOL bOwned; /* Do we own the heap (i.e. destroy it on shutdown)? */ #ifndef NDEBUG u32 magic2; /* Magic number to detect structure corruption. */ #endif }; #ifndef NDEBUG #define WINMEM_MAGIC1 0x42b2830b #define WINMEM_MAGIC2 0xbd4d7cf4 #endif static struct winMemData win_mem_data = { #ifndef NDEBUG WINMEM_MAGIC1, #endif NULL, FALSE #ifndef NDEBUG ,WINMEM_MAGIC2 #endif }; #ifndef NDEBUG #define winMemAssertMagic1() assert( win_mem_data.magic1==WINMEM_MAGIC1 ) #define winMemAssertMagic2() assert( win_mem_data.magic2==WINMEM_MAGIC2 ) #define winMemAssertMagic() winMemAssertMagic1(); winMemAssertMagic2(); #else #define winMemAssertMagic() #endif #define winMemGetDataPtr() &win_mem_data #define winMemGetHeap() win_mem_data.hHeap #define winMemGetOwned() win_mem_data.bOwned static void *winMemMalloc(int nBytes); static void winMemFree(void *pPrior); static void *winMemRealloc(void *pPrior, int nBytes); static int winMemSize(void *p); static int winMemRoundup(int n); static int winMemInit(void *pAppData); static void winMemShutdown(void *pAppData); SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void); #endif /* SQLITE_WIN32_MALLOC */ /* ** The following variable is (normally) set once and never changes ** thereafter. It records whether the operating system is Win9x ** or WinNT. ** ** 0: Operating system unknown. ** 1: Operating system is Win9x. ** 2: Operating system is WinNT. ** ** In order to facilitate testing on a WinNT system, the test fixture ** can manually set this value to 1 to emulate Win98 behavior. */ #ifdef SQLITE_TEST SQLITE_API LONG SQLITE_WIN32_VOLATILE sqlite3_os_type = 0; #else static LONG SQLITE_WIN32_VOLATILE sqlite3_os_type = 0; #endif #ifndef SYSCALL # define SYSCALL sqlite3_syscall_ptr #endif /* ** This function is not available on Windows CE or WinRT. */ #if SQLITE_OS_WINCE || SQLITE_OS_WINRT # define osAreFileApisANSI() 1 #endif /* ** Many system calls are accessed through pointer-to-functions so that ** they may be overridden at runtime to facilitate fault injection during ** testing and sandboxing. The following array holds the names and pointers ** to all overrideable system calls. */ static struct win_syscall { const char *zName; /* Name of the system call */ sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ sqlite3_syscall_ptr pDefault; /* Default value */ } aSyscall[] = { #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "AreFileApisANSI", (SYSCALL)AreFileApisANSI, 0 }, #else { "AreFileApisANSI", (SYSCALL)0, 0 }, #endif #ifndef osAreFileApisANSI #define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent) #endif #if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE) { "CharLowerW", (SYSCALL)CharLowerW, 0 }, #else { "CharLowerW", (SYSCALL)0, 0 }, #endif #define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent) #if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE) { "CharUpperW", (SYSCALL)CharUpperW, 0 }, #else { "CharUpperW", (SYSCALL)0, 0 }, #endif #define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent) { "CloseHandle", (SYSCALL)CloseHandle, 0 }, #define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "CreateFileA", (SYSCALL)CreateFileA, 0 }, #else { "CreateFileA", (SYSCALL)0, 0 }, #endif #define osCreateFileA ((HANDLE(WINAPI*)(LPCSTR,DWORD,DWORD, \ LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "CreateFileW", (SYSCALL)CreateFileW, 0 }, #else { "CreateFileW", (SYSCALL)0, 0 }, #endif #define osCreateFileW ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD, \ LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_ANSI) && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) && \ SQLITE_WIN32_CREATEFILEMAPPINGA { "CreateFileMappingA", (SYSCALL)CreateFileMappingA, 0 }, #else { "CreateFileMappingA", (SYSCALL)0, 0 }, #endif #define osCreateFileMappingA ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \ DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent) #if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)) { "CreateFileMappingW", (SYSCALL)CreateFileMappingW, 0 }, #else { "CreateFileMappingW", (SYSCALL)0, 0 }, #endif #define osCreateFileMappingW ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \ DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "CreateMutexW", (SYSCALL)CreateMutexW, 0 }, #else { "CreateMutexW", (SYSCALL)0, 0 }, #endif #define osCreateMutexW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,BOOL, \ LPCWSTR))aSyscall[8].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "DeleteFileA", (SYSCALL)DeleteFileA, 0 }, #else { "DeleteFileA", (SYSCALL)0, 0 }, #endif #define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "DeleteFileW", (SYSCALL)DeleteFileW, 0 }, #else { "DeleteFileW", (SYSCALL)0, 0 }, #endif #define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent) #if SQLITE_OS_WINCE { "FileTimeToLocalFileTime", (SYSCALL)FileTimeToLocalFileTime, 0 }, #else { "FileTimeToLocalFileTime", (SYSCALL)0, 0 }, #endif #define osFileTimeToLocalFileTime ((BOOL(WINAPI*)(CONST FILETIME*, \ LPFILETIME))aSyscall[11].pCurrent) #if SQLITE_OS_WINCE { "FileTimeToSystemTime", (SYSCALL)FileTimeToSystemTime, 0 }, #else { "FileTimeToSystemTime", (SYSCALL)0, 0 }, #endif #define osFileTimeToSystemTime ((BOOL(WINAPI*)(CONST FILETIME*, \ LPSYSTEMTIME))aSyscall[12].pCurrent) { "FlushFileBuffers", (SYSCALL)FlushFileBuffers, 0 }, #define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "FormatMessageA", (SYSCALL)FormatMessageA, 0 }, #else { "FormatMessageA", (SYSCALL)0, 0 }, #endif #define osFormatMessageA ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPSTR, \ DWORD,va_list*))aSyscall[14].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "FormatMessageW", (SYSCALL)FormatMessageW, 0 }, #else { "FormatMessageW", (SYSCALL)0, 0 }, #endif #define osFormatMessageW ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPWSTR, \ DWORD,va_list*))aSyscall[15].pCurrent) #if !defined(SQLITE_OMIT_LOAD_EXTENSION) { "FreeLibrary", (SYSCALL)FreeLibrary, 0 }, #else { "FreeLibrary", (SYSCALL)0, 0 }, #endif #define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent) { "GetCurrentProcessId", (SYSCALL)GetCurrentProcessId, 0 }, #define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent) #if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI) { "GetDiskFreeSpaceA", (SYSCALL)GetDiskFreeSpaceA, 0 }, #else { "GetDiskFreeSpaceA", (SYSCALL)0, 0 }, #endif #define osGetDiskFreeSpaceA ((BOOL(WINAPI*)(LPCSTR,LPDWORD,LPDWORD,LPDWORD, \ LPDWORD))aSyscall[18].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetDiskFreeSpaceW", (SYSCALL)GetDiskFreeSpaceW, 0 }, #else { "GetDiskFreeSpaceW", (SYSCALL)0, 0 }, #endif #define osGetDiskFreeSpaceW ((BOOL(WINAPI*)(LPCWSTR,LPDWORD,LPDWORD,LPDWORD, \ LPDWORD))aSyscall[19].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "GetFileAttributesA", (SYSCALL)GetFileAttributesA, 0 }, #else { "GetFileAttributesA", (SYSCALL)0, 0 }, #endif #define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetFileAttributesW", (SYSCALL)GetFileAttributesW, 0 }, #else { "GetFileAttributesW", (SYSCALL)0, 0 }, #endif #define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "GetFileAttributesExW", (SYSCALL)GetFileAttributesExW, 0 }, #else { "GetFileAttributesExW", (SYSCALL)0, 0 }, #endif #define osGetFileAttributesExW ((BOOL(WINAPI*)(LPCWSTR,GET_FILEEX_INFO_LEVELS, \ LPVOID))aSyscall[22].pCurrent) #if !SQLITE_OS_WINRT { "GetFileSize", (SYSCALL)GetFileSize, 0 }, #else { "GetFileSize", (SYSCALL)0, 0 }, #endif #define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent) #if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI) { "GetFullPathNameA", (SYSCALL)GetFullPathNameA, 0 }, #else { "GetFullPathNameA", (SYSCALL)0, 0 }, #endif #define osGetFullPathNameA ((DWORD(WINAPI*)(LPCSTR,DWORD,LPSTR, \ LPSTR*))aSyscall[24].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetFullPathNameW", (SYSCALL)GetFullPathNameW, 0 }, #else { "GetFullPathNameW", (SYSCALL)0, 0 }, #endif #define osGetFullPathNameW ((DWORD(WINAPI*)(LPCWSTR,DWORD,LPWSTR, \ LPWSTR*))aSyscall[25].pCurrent) { "GetLastError", (SYSCALL)GetLastError, 0 }, #define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent) #if !defined(SQLITE_OMIT_LOAD_EXTENSION) #if SQLITE_OS_WINCE /* The GetProcAddressA() routine is only available on Windows CE. */ { "GetProcAddressA", (SYSCALL)GetProcAddressA, 0 }, #else /* All other Windows platforms expect GetProcAddress() to take ** an ANSI string regardless of the _UNICODE setting */ { "GetProcAddressA", (SYSCALL)GetProcAddress, 0 }, #endif #else { "GetProcAddressA", (SYSCALL)0, 0 }, #endif #define osGetProcAddressA ((FARPROC(WINAPI*)(HMODULE, \ LPCSTR))aSyscall[27].pCurrent) #if !SQLITE_OS_WINRT { "GetSystemInfo", (SYSCALL)GetSystemInfo, 0 }, #else { "GetSystemInfo", (SYSCALL)0, 0 }, #endif #define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent) { "GetSystemTime", (SYSCALL)GetSystemTime, 0 }, #define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent) #if !SQLITE_OS_WINCE { "GetSystemTimeAsFileTime", (SYSCALL)GetSystemTimeAsFileTime, 0 }, #else { "GetSystemTimeAsFileTime", (SYSCALL)0, 0 }, #endif #define osGetSystemTimeAsFileTime ((VOID(WINAPI*)( \ LPFILETIME))aSyscall[30].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "GetTempPathA", (SYSCALL)GetTempPathA, 0 }, #else { "GetTempPathA", (SYSCALL)0, 0 }, #endif #define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetTempPathW", (SYSCALL)GetTempPathW, 0 }, #else { "GetTempPathW", (SYSCALL)0, 0 }, #endif #define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent) #if !SQLITE_OS_WINRT { "GetTickCount", (SYSCALL)GetTickCount, 0 }, #else { "GetTickCount", (SYSCALL)0, 0 }, #endif #define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_GETVERSIONEX { "GetVersionExA", (SYSCALL)GetVersionExA, 0 }, #else { "GetVersionExA", (SYSCALL)0, 0 }, #endif #define osGetVersionExA ((BOOL(WINAPI*)( \ LPOSVERSIONINFOA))aSyscall[34].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ SQLITE_WIN32_GETVERSIONEX { "GetVersionExW", (SYSCALL)GetVersionExW, 0 }, #else { "GetVersionExW", (SYSCALL)0, 0 }, #endif #define osGetVersionExW ((BOOL(WINAPI*)( \ LPOSVERSIONINFOW))aSyscall[35].pCurrent) { "HeapAlloc", (SYSCALL)HeapAlloc, 0 }, #define osHeapAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD, \ SIZE_T))aSyscall[36].pCurrent) #if !SQLITE_OS_WINRT { "HeapCreate", (SYSCALL)HeapCreate, 0 }, #else { "HeapCreate", (SYSCALL)0, 0 }, #endif #define osHeapCreate ((HANDLE(WINAPI*)(DWORD,SIZE_T, \ SIZE_T))aSyscall[37].pCurrent) #if !SQLITE_OS_WINRT { "HeapDestroy", (SYSCALL)HeapDestroy, 0 }, #else { "HeapDestroy", (SYSCALL)0, 0 }, #endif #define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent) { "HeapFree", (SYSCALL)HeapFree, 0 }, #define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent) { "HeapReAlloc", (SYSCALL)HeapReAlloc, 0 }, #define osHeapReAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD,LPVOID, \ SIZE_T))aSyscall[40].pCurrent) { "HeapSize", (SYSCALL)HeapSize, 0 }, #define osHeapSize ((SIZE_T(WINAPI*)(HANDLE,DWORD, \ LPCVOID))aSyscall[41].pCurrent) #if !SQLITE_OS_WINRT { "HeapValidate", (SYSCALL)HeapValidate, 0 }, #else { "HeapValidate", (SYSCALL)0, 0 }, #endif #define osHeapValidate ((BOOL(WINAPI*)(HANDLE,DWORD, \ LPCVOID))aSyscall[42].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "HeapCompact", (SYSCALL)HeapCompact, 0 }, #else { "HeapCompact", (SYSCALL)0, 0 }, #endif #define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_OMIT_LOAD_EXTENSION) { "LoadLibraryA", (SYSCALL)LoadLibraryA, 0 }, #else { "LoadLibraryA", (SYSCALL)0, 0 }, #endif #define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ !defined(SQLITE_OMIT_LOAD_EXTENSION) { "LoadLibraryW", (SYSCALL)LoadLibraryW, 0 }, #else { "LoadLibraryW", (SYSCALL)0, 0 }, #endif #define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent) #if !SQLITE_OS_WINRT { "LocalFree", (SYSCALL)LocalFree, 0 }, #else { "LocalFree", (SYSCALL)0, 0 }, #endif #define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "LockFile", (SYSCALL)LockFile, 0 }, #else { "LockFile", (SYSCALL)0, 0 }, #endif #ifndef osLockFile #define osLockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ DWORD))aSyscall[47].pCurrent) #endif #if !SQLITE_OS_WINCE { "LockFileEx", (SYSCALL)LockFileEx, 0 }, #else { "LockFileEx", (SYSCALL)0, 0 }, #endif #ifndef osLockFileEx #define osLockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD,DWORD, \ LPOVERLAPPED))aSyscall[48].pCurrent) #endif #if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)) { "MapViewOfFile", (SYSCALL)MapViewOfFile, 0 }, #else { "MapViewOfFile", (SYSCALL)0, 0 }, #endif #define osMapViewOfFile ((LPVOID(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ SIZE_T))aSyscall[49].pCurrent) { "MultiByteToWideChar", (SYSCALL)MultiByteToWideChar, 0 }, #define osMultiByteToWideChar ((int(WINAPI*)(UINT,DWORD,LPCSTR,int,LPWSTR, \ int))aSyscall[50].pCurrent) { "QueryPerformanceCounter", (SYSCALL)QueryPerformanceCounter, 0 }, #define osQueryPerformanceCounter ((BOOL(WINAPI*)( \ LARGE_INTEGER*))aSyscall[51].pCurrent) { "ReadFile", (SYSCALL)ReadFile, 0 }, #define osReadFile ((BOOL(WINAPI*)(HANDLE,LPVOID,DWORD,LPDWORD, \ LPOVERLAPPED))aSyscall[52].pCurrent) { "SetEndOfFile", (SYSCALL)SetEndOfFile, 0 }, #define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent) #if !SQLITE_OS_WINRT { "SetFilePointer", (SYSCALL)SetFilePointer, 0 }, #else { "SetFilePointer", (SYSCALL)0, 0 }, #endif #define osSetFilePointer ((DWORD(WINAPI*)(HANDLE,LONG,PLONG, \ DWORD))aSyscall[54].pCurrent) #if !SQLITE_OS_WINRT { "Sleep", (SYSCALL)Sleep, 0 }, #else { "Sleep", (SYSCALL)0, 0 }, #endif #define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent) { "SystemTimeToFileTime", (SYSCALL)SystemTimeToFileTime, 0 }, #define osSystemTimeToFileTime ((BOOL(WINAPI*)(CONST SYSTEMTIME*, \ LPFILETIME))aSyscall[56].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "UnlockFile", (SYSCALL)UnlockFile, 0 }, #else { "UnlockFile", (SYSCALL)0, 0 }, #endif #ifndef osUnlockFile #define osUnlockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ DWORD))aSyscall[57].pCurrent) #endif #if !SQLITE_OS_WINCE { "UnlockFileEx", (SYSCALL)UnlockFileEx, 0 }, #else { "UnlockFileEx", (SYSCALL)0, 0 }, #endif #define osUnlockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ LPOVERLAPPED))aSyscall[58].pCurrent) #if SQLITE_OS_WINCE || !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "UnmapViewOfFile", (SYSCALL)UnmapViewOfFile, 0 }, #else { "UnmapViewOfFile", (SYSCALL)0, 0 }, #endif #define osUnmapViewOfFile ((BOOL(WINAPI*)(LPCVOID))aSyscall[59].pCurrent) { "WideCharToMultiByte", (SYSCALL)WideCharToMultiByte, 0 }, #define osWideCharToMultiByte ((int(WINAPI*)(UINT,DWORD,LPCWSTR,int,LPSTR,int, \ LPCSTR,LPBOOL))aSyscall[60].pCurrent) { "WriteFile", (SYSCALL)WriteFile, 0 }, #define osWriteFile ((BOOL(WINAPI*)(HANDLE,LPCVOID,DWORD,LPDWORD, \ LPOVERLAPPED))aSyscall[61].pCurrent) #if SQLITE_OS_WINRT { "CreateEventExW", (SYSCALL)CreateEventExW, 0 }, #else { "CreateEventExW", (SYSCALL)0, 0 }, #endif #define osCreateEventExW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,LPCWSTR, \ DWORD,DWORD))aSyscall[62].pCurrent) #if !SQLITE_OS_WINRT { "WaitForSingleObject", (SYSCALL)WaitForSingleObject, 0 }, #else { "WaitForSingleObject", (SYSCALL)0, 0 }, #endif #define osWaitForSingleObject ((DWORD(WINAPI*)(HANDLE, \ DWORD))aSyscall[63].pCurrent) #if !SQLITE_OS_WINCE { "WaitForSingleObjectEx", (SYSCALL)WaitForSingleObjectEx, 0 }, #else { "WaitForSingleObjectEx", (SYSCALL)0, 0 }, #endif #define osWaitForSingleObjectEx ((DWORD(WINAPI*)(HANDLE,DWORD, \ BOOL))aSyscall[64].pCurrent) #if SQLITE_OS_WINRT { "SetFilePointerEx", (SYSCALL)SetFilePointerEx, 0 }, #else { "SetFilePointerEx", (SYSCALL)0, 0 }, #endif #define osSetFilePointerEx ((BOOL(WINAPI*)(HANDLE,LARGE_INTEGER, \ PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent) #if SQLITE_OS_WINRT { "GetFileInformationByHandleEx", (SYSCALL)GetFileInformationByHandleEx, 0 }, #else { "GetFileInformationByHandleEx", (SYSCALL)0, 0 }, #endif #define osGetFileInformationByHandleEx ((BOOL(WINAPI*)(HANDLE, \ FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent) #if SQLITE_OS_WINRT && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) { "MapViewOfFileFromApp", (SYSCALL)MapViewOfFileFromApp, 0 }, #else { "MapViewOfFileFromApp", (SYSCALL)0, 0 }, #endif #define osMapViewOfFileFromApp ((LPVOID(WINAPI*)(HANDLE,ULONG,ULONG64, \ SIZE_T))aSyscall[67].pCurrent) #if SQLITE_OS_WINRT { "CreateFile2", (SYSCALL)CreateFile2, 0 }, #else { "CreateFile2", (SYSCALL)0, 0 }, #endif #define osCreateFile2 ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD,DWORD, \ LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent) #if SQLITE_OS_WINRT && !defined(SQLITE_OMIT_LOAD_EXTENSION) { "LoadPackagedLibrary", (SYSCALL)LoadPackagedLibrary, 0 }, #else { "LoadPackagedLibrary", (SYSCALL)0, 0 }, #endif #define osLoadPackagedLibrary ((HMODULE(WINAPI*)(LPCWSTR, \ DWORD))aSyscall[69].pCurrent) #if SQLITE_OS_WINRT { "GetTickCount64", (SYSCALL)GetTickCount64, 0 }, #else { "GetTickCount64", (SYSCALL)0, 0 }, #endif #define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent) #if SQLITE_OS_WINRT { "GetNativeSystemInfo", (SYSCALL)GetNativeSystemInfo, 0 }, #else { "GetNativeSystemInfo", (SYSCALL)0, 0 }, #endif #define osGetNativeSystemInfo ((VOID(WINAPI*)( \ LPSYSTEM_INFO))aSyscall[71].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "OutputDebugStringA", (SYSCALL)OutputDebugStringA, 0 }, #else { "OutputDebugStringA", (SYSCALL)0, 0 }, #endif #define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "OutputDebugStringW", (SYSCALL)OutputDebugStringW, 0 }, #else { "OutputDebugStringW", (SYSCALL)0, 0 }, #endif #define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent) { "GetProcessHeap", (SYSCALL)GetProcessHeap, 0 }, #define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent) #if SQLITE_OS_WINRT && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) { "CreateFileMappingFromApp", (SYSCALL)CreateFileMappingFromApp, 0 }, #else { "CreateFileMappingFromApp", (SYSCALL)0, 0 }, #endif #define osCreateFileMappingFromApp ((HANDLE(WINAPI*)(HANDLE, \ LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent) /* ** NOTE: On some sub-platforms, the InterlockedCompareExchange "function" ** is really just a macro that uses a compiler intrinsic (e.g. x64). ** So do not try to make this is into a redefinable interface. */ #if defined(InterlockedCompareExchange) { "InterlockedCompareExchange", (SYSCALL)0, 0 }, #define osInterlockedCompareExchange InterlockedCompareExchange #else { "InterlockedCompareExchange", (SYSCALL)InterlockedCompareExchange, 0 }, #define osInterlockedCompareExchange ((LONG(WINAPI*)(LONG \ SQLITE_WIN32_VOLATILE*, LONG,LONG))aSyscall[76].pCurrent) #endif /* defined(InterlockedCompareExchange) */ #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID { "UuidCreate", (SYSCALL)UuidCreate, 0 }, #else { "UuidCreate", (SYSCALL)0, 0 }, #endif #define osUuidCreate ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[77].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID { "UuidCreateSequential", (SYSCALL)UuidCreateSequential, 0 }, #else { "UuidCreateSequential", (SYSCALL)0, 0 }, #endif #define osUuidCreateSequential \ ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[78].pCurrent) #if !defined(SQLITE_NO_SYNC) && SQLITE_MAX_MMAP_SIZE>0 { "FlushViewOfFile", (SYSCALL)FlushViewOfFile, 0 }, #else { "FlushViewOfFile", (SYSCALL)0, 0 }, #endif #define osFlushViewOfFile \ ((BOOL(WINAPI*)(LPCVOID,SIZE_T))aSyscall[79].pCurrent) }; /* End of the overrideable system calls */ /* ** This is the xSetSystemCall() method of sqlite3_vfs for all of the ** "win32" VFSes. Return SQLITE_OK opon successfully updating the ** system call pointer, or SQLITE_NOTFOUND if there is no configurable ** system call named zName. */ static int winSetSystemCall( sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ const char *zName, /* Name of system call to override */ sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */ ){ unsigned int i; int rc = SQLITE_NOTFOUND; UNUSED_PARAMETER(pNotUsed); if( zName==0 ){ /* If no zName is given, restore all system calls to their default ** settings and return NULL */ rc = SQLITE_OK; for(i=0; i0 ){ memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); memcpy(zDbgBuf, zBuf, nMin); osOutputDebugStringA(zDbgBuf); }else{ osOutputDebugStringA(zBuf); } #elif defined(SQLITE_WIN32_HAS_WIDE) memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); if ( osMultiByteToWideChar( osAreFileApisANSI() ? CP_ACP : CP_OEMCP, 0, zBuf, nMin, (LPWSTR)zDbgBuf, SQLITE_WIN32_DBG_BUF_SIZE/sizeof(WCHAR))<=0 ){ return; } osOutputDebugStringW((LPCWSTR)zDbgBuf); #else if( nMin>0 ){ memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); memcpy(zDbgBuf, zBuf, nMin); fprintf(stderr, "%s", zDbgBuf); }else{ fprintf(stderr, "%s", zBuf); } #endif } /* ** The following routine suspends the current thread for at least ms ** milliseconds. This is equivalent to the Win32 Sleep() interface. */ #if SQLITE_OS_WINRT static HANDLE sleepObj = NULL; #endif SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds){ #if SQLITE_OS_WINRT if ( sleepObj==NULL ){ sleepObj = osCreateEventExW(NULL, NULL, CREATE_EVENT_MANUAL_RESET, SYNCHRONIZE); } assert( sleepObj!=NULL ); osWaitForSingleObjectEx(sleepObj, milliseconds, FALSE); #else osSleep(milliseconds); #endif } #if SQLITE_MAX_WORKER_THREADS>0 && !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && \ SQLITE_THREADSAFE>0 SQLITE_PRIVATE DWORD sqlite3Win32Wait(HANDLE hObject){ DWORD rc; while( (rc = osWaitForSingleObjectEx(hObject, INFINITE, TRUE))==WAIT_IO_COMPLETION ){} return rc; } #endif /* ** Return true (non-zero) if we are running under WinNT, Win2K, WinXP, ** or WinCE. Return false (zero) for Win95, Win98, or WinME. ** ** Here is an interesting observation: Win95, Win98, and WinME lack ** the LockFileEx() API. But we can still statically link against that ** API as long as we don't call it when running Win95/98/ME. A call to ** this routine is used to determine if the host is Win95/98/ME or ** WinNT/2K/XP so that we will know whether or not we can safely call ** the LockFileEx() API. */ #if !SQLITE_WIN32_GETVERSIONEX # define osIsNT() (1) #elif SQLITE_OS_WINCE || SQLITE_OS_WINRT || !defined(SQLITE_WIN32_HAS_ANSI) # define osIsNT() (1) #elif !defined(SQLITE_WIN32_HAS_WIDE) # define osIsNT() (0) #else # define osIsNT() ((sqlite3_os_type==2) || sqlite3_win32_is_nt()) #endif /* ** This function determines if the machine is running a version of Windows ** based on the NT kernel. */ SQLITE_API int sqlite3_win32_is_nt(void){ #if SQLITE_OS_WINRT /* ** NOTE: The WinRT sub-platform is always assumed to be based on the NT ** kernel. */ return 1; #elif SQLITE_WIN32_GETVERSIONEX if( osInterlockedCompareExchange(&sqlite3_os_type, 0, 0)==0 ){ #if defined(SQLITE_WIN32_HAS_ANSI) OSVERSIONINFOA sInfo; sInfo.dwOSVersionInfoSize = sizeof(sInfo); osGetVersionExA(&sInfo); osInterlockedCompareExchange(&sqlite3_os_type, (sInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) ? 2 : 1, 0); #elif defined(SQLITE_WIN32_HAS_WIDE) OSVERSIONINFOW sInfo; sInfo.dwOSVersionInfoSize = sizeof(sInfo); osGetVersionExW(&sInfo); osInterlockedCompareExchange(&sqlite3_os_type, (sInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) ? 2 : 1, 0); #endif } return osInterlockedCompareExchange(&sqlite3_os_type, 2, 2)==2; #elif SQLITE_TEST return osInterlockedCompareExchange(&sqlite3_os_type, 2, 2)==2; #else /* ** NOTE: All sub-platforms where the GetVersionEx[AW] functions are ** deprecated are always assumed to be based on the NT kernel. */ return 1; #endif } #ifdef SQLITE_WIN32_MALLOC /* ** Allocate nBytes of memory. */ static void *winMemMalloc(int nBytes){ HANDLE hHeap; void *p; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); #endif assert( nBytes>=0 ); p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); if( !p ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%lu), heap=%p", nBytes, osGetLastError(), (void*)hHeap); } return p; } /* ** Free memory. */ static void winMemFree(void *pPrior){ HANDLE hHeap; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); #endif if( !pPrior ) return; /* Passing NULL to HeapFree is undefined. */ if( !osHeapFree(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%lu), heap=%p", pPrior, osGetLastError(), (void*)hHeap); } } /* ** Change the size of an existing memory allocation */ static void *winMemRealloc(void *pPrior, int nBytes){ HANDLE hHeap; void *p; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); #endif assert( nBytes>=0 ); if( !pPrior ){ p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); }else{ p = osHeapReAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior, (SIZE_T)nBytes); } if( !p ){ sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%lu), heap=%p", pPrior ? "HeapReAlloc" : "HeapAlloc", nBytes, osGetLastError(), (void*)hHeap); } return p; } /* ** Return the size of an outstanding allocation, in bytes. */ static int winMemSize(void *p){ HANDLE hHeap; SIZE_T n; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, p) ); #endif if( !p ) return 0; n = osHeapSize(hHeap, SQLITE_WIN32_HEAP_FLAGS, p); if( n==(SIZE_T)-1 ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%lu), heap=%p", p, osGetLastError(), (void*)hHeap); return 0; } return (int)n; } /* ** Round up a request size to the next valid allocation size. */ static int winMemRoundup(int n){ return n; } /* ** Initialize this module. */ static int winMemInit(void *pAppData){ winMemData *pWinMemData = (winMemData *)pAppData; if( !pWinMemData ) return SQLITE_ERROR; assert( pWinMemData->magic1==WINMEM_MAGIC1 ); assert( pWinMemData->magic2==WINMEM_MAGIC2 ); #if !SQLITE_OS_WINRT && SQLITE_WIN32_HEAP_CREATE if( !pWinMemData->hHeap ){ DWORD dwInitialSize = SQLITE_WIN32_HEAP_INIT_SIZE; DWORD dwMaximumSize = (DWORD)sqlite3GlobalConfig.nHeap; if( dwMaximumSize==0 ){ dwMaximumSize = SQLITE_WIN32_HEAP_MAX_SIZE; }else if( dwInitialSize>dwMaximumSize ){ dwInitialSize = dwMaximumSize; } pWinMemData->hHeap = osHeapCreate(SQLITE_WIN32_HEAP_FLAGS, dwInitialSize, dwMaximumSize); if( !pWinMemData->hHeap ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapCreate (%lu), flags=%u, initSize=%lu, maxSize=%lu", osGetLastError(), SQLITE_WIN32_HEAP_FLAGS, dwInitialSize, dwMaximumSize); return SQLITE_NOMEM_BKPT; } pWinMemData->bOwned = TRUE; assert( pWinMemData->bOwned ); } #else pWinMemData->hHeap = osGetProcessHeap(); if( !pWinMemData->hHeap ){ sqlite3_log(SQLITE_NOMEM, "failed to GetProcessHeap (%lu)", osGetLastError()); return SQLITE_NOMEM_BKPT; } pWinMemData->bOwned = FALSE; assert( !pWinMemData->bOwned ); #endif assert( pWinMemData->hHeap!=0 ); assert( pWinMemData->hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(pWinMemData->hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); #endif return SQLITE_OK; } /* ** Deinitialize this module. */ static void winMemShutdown(void *pAppData){ winMemData *pWinMemData = (winMemData *)pAppData; if( !pWinMemData ) return; assert( pWinMemData->magic1==WINMEM_MAGIC1 ); assert( pWinMemData->magic2==WINMEM_MAGIC2 ); if( pWinMemData->hHeap ){ assert( pWinMemData->hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(pWinMemData->hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); #endif if( pWinMemData->bOwned ){ if( !osHeapDestroy(pWinMemData->hHeap) ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%lu), heap=%p", osGetLastError(), (void*)pWinMemData->hHeap); } pWinMemData->bOwned = FALSE; } pWinMemData->hHeap = NULL; } } /* ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. The ** arguments specify the block of memory to manage. ** ** This routine is only called by sqlite3_config(), and therefore ** is not required to be threadsafe (it is not). */ SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){ static const sqlite3_mem_methods winMemMethods = { winMemMalloc, winMemFree, winMemRealloc, winMemSize, winMemRoundup, winMemInit, winMemShutdown, &win_mem_data }; return &winMemMethods; } SQLITE_PRIVATE void sqlite3MemSetDefault(void){ sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32()); } #endif /* SQLITE_WIN32_MALLOC */ /* ** Convert a UTF-8 string to Microsoft Unicode. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static LPWSTR winUtf8ToUnicode(const char *zText){ int nChar; LPWSTR zWideText; nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, NULL, 0); if( nChar==0 ){ return 0; } zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); if( zWideText==0 ){ return 0; } nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, nChar); if( nChar==0 ){ sqlite3_free(zWideText); zWideText = 0; } return zWideText; } /* ** Convert a Microsoft Unicode string to UTF-8. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winUnicodeToUtf8(LPCWSTR zWideText){ int nByte; char *zText; nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); if( nByte == 0 ){ return 0; } zText = sqlite3MallocZero( nByte ); if( zText==0 ){ return 0; } nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, 0, 0); if( nByte == 0 ){ sqlite3_free(zText); zText = 0; } return zText; } /* ** Convert an ANSI string to Microsoft Unicode, using the ANSI or OEM ** code page. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static LPWSTR winMbcsToUnicode(const char *zText, int useAnsi){ int nByte; LPWSTR zMbcsText; int codepage = useAnsi ? CP_ACP : CP_OEMCP; nByte = osMultiByteToWideChar(codepage, 0, zText, -1, NULL, 0)*sizeof(WCHAR); if( nByte==0 ){ return 0; } zMbcsText = sqlite3MallocZero( nByte*sizeof(WCHAR) ); if( zMbcsText==0 ){ return 0; } nByte = osMultiByteToWideChar(codepage, 0, zText, -1, zMbcsText, nByte); if( nByte==0 ){ sqlite3_free(zMbcsText); zMbcsText = 0; } return zMbcsText; } /* ** Convert a Microsoft Unicode string to a multi-byte character string, ** using the ANSI or OEM code page. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winUnicodeToMbcs(LPCWSTR zWideText, int useAnsi){ int nByte; char *zText; int codepage = useAnsi ? CP_ACP : CP_OEMCP; nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, 0, 0, 0, 0); if( nByte == 0 ){ return 0; } zText = sqlite3MallocZero( nByte ); if( zText==0 ){ return 0; } nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, zText, nByte, 0, 0); if( nByte == 0 ){ sqlite3_free(zText); zText = 0; } return zText; } /* ** Convert a multi-byte character string to UTF-8. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winMbcsToUtf8(const char *zText, int useAnsi){ char *zTextUtf8; LPWSTR zTmpWide; zTmpWide = winMbcsToUnicode(zText, useAnsi); if( zTmpWide==0 ){ return 0; } zTextUtf8 = winUnicodeToUtf8(zTmpWide); sqlite3_free(zTmpWide); return zTextUtf8; } /* ** Convert a UTF-8 string to a multi-byte character string. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winUtf8ToMbcs(const char *zText, int useAnsi){ char *zTextMbcs; LPWSTR zTmpWide; zTmpWide = winUtf8ToUnicode(zText); if( zTmpWide==0 ){ return 0; } zTextMbcs = winUnicodeToMbcs(zTmpWide, useAnsi); sqlite3_free(zTmpWide); return zTextMbcs; } /* ** This is a public wrapper for the winUtf8ToUnicode() function. */ SQLITE_API LPWSTR sqlite3_win32_utf8_to_unicode(const char *zText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUtf8ToUnicode(zText); } /* ** This is a public wrapper for the winUnicodeToUtf8() function. */ SQLITE_API char *sqlite3_win32_unicode_to_utf8(LPCWSTR zWideText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zWideText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUnicodeToUtf8(zWideText); } /* ** This is a public wrapper for the winMbcsToUtf8() function. */ SQLITE_API char *sqlite3_win32_mbcs_to_utf8(const char *zText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winMbcsToUtf8(zText, osAreFileApisANSI()); } /* ** This is a public wrapper for the winMbcsToUtf8() function. */ SQLITE_API char *sqlite3_win32_mbcs_to_utf8_v2(const char *zText, int useAnsi){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winMbcsToUtf8(zText, useAnsi); } /* ** This is a public wrapper for the winUtf8ToMbcs() function. */ SQLITE_API char *sqlite3_win32_utf8_to_mbcs(const char *zText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUtf8ToMbcs(zText, osAreFileApisANSI()); } /* ** This is a public wrapper for the winUtf8ToMbcs() function. */ SQLITE_API char *sqlite3_win32_utf8_to_mbcs_v2(const char *zText, int useAnsi){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUtf8ToMbcs(zText, useAnsi); } /* ** This function is the same as sqlite3_win32_set_directory (below); however, ** it accepts a UTF-8 string. */ SQLITE_API int sqlite3_win32_set_directory8( unsigned long type, /* Identifier for directory being set or reset */ const char *zValue /* New value for directory being set or reset */ ){ char **ppDirectory = 0; #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return rc; #endif if( type==SQLITE_WIN32_DATA_DIRECTORY_TYPE ){ ppDirectory = &sqlite3_data_directory; }else if( type==SQLITE_WIN32_TEMP_DIRECTORY_TYPE ){ ppDirectory = &sqlite3_temp_directory; } assert( !ppDirectory || type==SQLITE_WIN32_DATA_DIRECTORY_TYPE || type==SQLITE_WIN32_TEMP_DIRECTORY_TYPE ); assert( !ppDirectory || sqlite3MemdebugHasType(*ppDirectory, MEMTYPE_HEAP) ); if( ppDirectory ){ char *zCopy = 0; if( zValue && zValue[0] ){ zCopy = sqlite3_mprintf("%s", zValue); if ( zCopy==0 ){ return SQLITE_NOMEM_BKPT; } } sqlite3_free(*ppDirectory); *ppDirectory = zCopy; return SQLITE_OK; } return SQLITE_ERROR; } /* ** This function is the same as sqlite3_win32_set_directory (below); however, ** it accepts a UTF-16 string. */ SQLITE_API int sqlite3_win32_set_directory16( unsigned long type, /* Identifier for directory being set or reset */ const void *zValue /* New value for directory being set or reset */ ){ int rc; char *zUtf8 = 0; if( zValue ){ zUtf8 = sqlite3_win32_unicode_to_utf8(zValue); if( zUtf8==0 ) return SQLITE_NOMEM_BKPT; } rc = sqlite3_win32_set_directory8(type, zUtf8); if( zUtf8 ) sqlite3_free(zUtf8); return rc; } /* ** This function sets the data directory or the temporary directory based on ** the provided arguments. The type argument must be 1 in order to set the ** data directory or 2 in order to set the temporary directory. The zValue ** argument is the name of the directory to use. The return value will be ** SQLITE_OK if successful. */ SQLITE_API int sqlite3_win32_set_directory( unsigned long type, /* Identifier for directory being set or reset */ void *zValue /* New value for directory being set or reset */ ){ return sqlite3_win32_set_directory16(type, zValue); } /* ** The return value of winGetLastErrorMsg ** is zero if the error message fits in the buffer, or non-zero ** otherwise (if the message was truncated). */ static int winGetLastErrorMsg(DWORD lastErrno, int nBuf, char *zBuf){ /* FormatMessage returns 0 on failure. Otherwise it ** returns the number of TCHARs written to the output ** buffer, excluding the terminating null char. */ DWORD dwLen = 0; char *zOut = 0; if( osIsNT() ){ #if SQLITE_OS_WINRT WCHAR zTempWide[SQLITE_WIN32_MAX_ERRMSG_CHARS+1]; dwLen = osFormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, lastErrno, 0, zTempWide, SQLITE_WIN32_MAX_ERRMSG_CHARS, 0); #else LPWSTR zTempWide = NULL; dwLen = osFormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, lastErrno, 0, (LPWSTR) &zTempWide, 0, 0); #endif if( dwLen > 0 ){ /* allocate a buffer and convert to UTF8 */ sqlite3BeginBenignMalloc(); zOut = winUnicodeToUtf8(zTempWide); sqlite3EndBenignMalloc(); #if !SQLITE_OS_WINRT /* free the system buffer allocated by FormatMessage */ osLocalFree(zTempWide); #endif } } #ifdef SQLITE_WIN32_HAS_ANSI else{ char *zTemp = NULL; dwLen = osFormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, lastErrno, 0, (LPSTR) &zTemp, 0, 0); if( dwLen > 0 ){ /* allocate a buffer and convert to UTF8 */ sqlite3BeginBenignMalloc(); zOut = winMbcsToUtf8(zTemp, osAreFileApisANSI()); sqlite3EndBenignMalloc(); /* free the system buffer allocated by FormatMessage */ osLocalFree(zTemp); } } #endif if( 0 == dwLen ){ sqlite3_snprintf(nBuf, zBuf, "OsError 0x%lx (%lu)", lastErrno, lastErrno); }else{ /* copy a maximum of nBuf chars to output buffer */ sqlite3_snprintf(nBuf, zBuf, "%s", zOut); /* free the UTF8 buffer */ sqlite3_free(zOut); } return 0; } /* ** ** This function - winLogErrorAtLine() - is only ever called via the macro ** winLogError(). ** ** This routine is invoked after an error occurs in an OS function. ** It logs a message using sqlite3_log() containing the current value of ** error code and, if possible, the human-readable equivalent from ** FormatMessage. ** ** The first argument passed to the macro should be the error code that ** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN). ** The two subsequent arguments should be the name of the OS function that ** failed and the associated file-system path, if any. */ #define winLogError(a,b,c,d) winLogErrorAtLine(a,b,c,d,__LINE__) static int winLogErrorAtLine( int errcode, /* SQLite error code */ DWORD lastErrno, /* Win32 last error */ const char *zFunc, /* Name of OS function that failed */ const char *zPath, /* File path associated with error */ int iLine /* Source line number where error occurred */ ){ char zMsg[500]; /* Human readable error text */ int i; /* Loop counter */ zMsg[0] = 0; winGetLastErrorMsg(lastErrno, sizeof(zMsg), zMsg); assert( errcode!=SQLITE_OK ); if( zPath==0 ) zPath = ""; for(i=0; zMsg[i] && zMsg[i]!='\r' && zMsg[i]!='\n'; i++){} zMsg[i] = 0; sqlite3_log(errcode, "os_win.c:%d: (%lu) %s(%s) - %s", iLine, lastErrno, zFunc, zPath, zMsg ); return errcode; } /* ** The number of times that a ReadFile(), WriteFile(), and DeleteFile() ** will be retried following a locking error - probably caused by ** antivirus software. Also the initial delay before the first retry. ** The delay increases linearly with each retry. */ #ifndef SQLITE_WIN32_IOERR_RETRY # define SQLITE_WIN32_IOERR_RETRY 10 #endif #ifndef SQLITE_WIN32_IOERR_RETRY_DELAY # define SQLITE_WIN32_IOERR_RETRY_DELAY 25 #endif static int winIoerrRetry = SQLITE_WIN32_IOERR_RETRY; static int winIoerrRetryDelay = SQLITE_WIN32_IOERR_RETRY_DELAY; /* ** The "winIoerrCanRetry1" macro is used to determine if a particular I/O ** error code obtained via GetLastError() is eligible to be retried. It ** must accept the error code DWORD as its only argument and should return ** non-zero if the error code is transient in nature and the operation ** responsible for generating the original error might succeed upon being ** retried. The argument to this macro should be a variable. ** ** Additionally, a macro named "winIoerrCanRetry2" may be defined. If it ** is defined, it will be consulted only when the macro "winIoerrCanRetry1" ** returns zero. The "winIoerrCanRetry2" macro is completely optional and ** may be used to include additional error codes in the set that should ** result in the failing I/O operation being retried by the caller. If ** defined, the "winIoerrCanRetry2" macro must exhibit external semantics ** identical to those of the "winIoerrCanRetry1" macro. */ #if !defined(winIoerrCanRetry1) #define winIoerrCanRetry1(a) (((a)==ERROR_ACCESS_DENIED) || \ ((a)==ERROR_SHARING_VIOLATION) || \ ((a)==ERROR_LOCK_VIOLATION) || \ ((a)==ERROR_DEV_NOT_EXIST) || \ ((a)==ERROR_NETNAME_DELETED) || \ ((a)==ERROR_SEM_TIMEOUT) || \ ((a)==ERROR_NETWORK_UNREACHABLE)) #endif /* ** If a ReadFile() or WriteFile() error occurs, invoke this routine ** to see if it should be retried. Return TRUE to retry. Return FALSE ** to give up with an error. */ static int winRetryIoerr(int *pnRetry, DWORD *pError){ DWORD e = osGetLastError(); if( *pnRetry>=winIoerrRetry ){ if( pError ){ *pError = e; } return 0; } if( winIoerrCanRetry1(e) ){ sqlite3_win32_sleep(winIoerrRetryDelay*(1+*pnRetry)); ++*pnRetry; return 1; } #if defined(winIoerrCanRetry2) else if( winIoerrCanRetry2(e) ){ sqlite3_win32_sleep(winIoerrRetryDelay*(1+*pnRetry)); ++*pnRetry; return 1; } #endif if( pError ){ *pError = e; } return 0; } /* ** Log a I/O error retry episode. */ static void winLogIoerr(int nRetry, int lineno){ if( nRetry ){ sqlite3_log(SQLITE_NOTICE, "delayed %dms for lock/sharing conflict at line %d", winIoerrRetryDelay*nRetry*(nRetry+1)/2, lineno ); } } /* ** This #if does not rely on the SQLITE_OS_WINCE define because the ** corresponding section in "date.c" cannot use it. */ #if !defined(SQLITE_OMIT_LOCALTIME) && defined(_WIN32_WCE) && \ (!defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API) /* ** The MSVC CRT on Windows CE may not have a localtime() function. ** So define a substitute. */ /* # include */ struct tm *__cdecl localtime(const time_t *t) { static struct tm y; FILETIME uTm, lTm; SYSTEMTIME pTm; sqlite3_int64 t64; t64 = *t; t64 = (t64 + 11644473600)*10000000; uTm.dwLowDateTime = (DWORD)(t64 & 0xFFFFFFFF); uTm.dwHighDateTime= (DWORD)(t64 >> 32); osFileTimeToLocalFileTime(&uTm,&lTm); osFileTimeToSystemTime(&lTm,&pTm); y.tm_year = pTm.wYear - 1900; y.tm_mon = pTm.wMonth - 1; y.tm_wday = pTm.wDayOfWeek; y.tm_mday = pTm.wDay; y.tm_hour = pTm.wHour; y.tm_min = pTm.wMinute; y.tm_sec = pTm.wSecond; return &y; } #endif #if SQLITE_OS_WINCE /************************************************************************* ** This section contains code for WinCE only. */ #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-(int)offsetof(winFile,h)] /* ** Acquire a lock on the handle h */ static void winceMutexAcquire(HANDLE h){ DWORD dwErr; do { dwErr = osWaitForSingleObject(h, INFINITE); } while (dwErr != WAIT_OBJECT_0 && dwErr != WAIT_ABANDONED); } /* ** Release a lock acquired by winceMutexAcquire() */ #define winceMutexRelease(h) ReleaseMutex(h) /* ** Create the mutex and shared memory used for locking in the file ** descriptor pFile */ static int winceCreateLock(const char *zFilename, winFile *pFile){ LPWSTR zTok; LPWSTR zName; DWORD lastErrno; BOOL bLogged = FALSE; BOOL bInit = TRUE; zName = winUtf8ToUnicode(zFilename); if( zName==0 ){ /* out of memory */ return SQLITE_IOERR_NOMEM_BKPT; } /* Initialize the local lockdata */ memset(&pFile->local, 0, sizeof(pFile->local)); /* Replace the backslashes from the filename and lowercase it ** to derive a mutex name. */ zTok = osCharLowerW(zName); for (;*zTok;zTok++){ if (*zTok == '\\') *zTok = '_'; } /* Create/open the named mutex */ pFile->hMutex = osCreateMutexW(NULL, FALSE, zName); if (!pFile->hMutex){ pFile->lastErrno = osGetLastError(); sqlite3_free(zName); return winLogError(SQLITE_IOERR, pFile->lastErrno, "winceCreateLock1", zFilename); } /* Acquire the mutex before continuing */ winceMutexAcquire(pFile->hMutex); /* Since the names of named mutexes, semaphores, file mappings etc are ** case-sensitive, take advantage of that by uppercasing the mutex name ** and using that as the shared filemapping name. */ osCharUpperW(zName); pFile->hShared = osCreateFileMappingW(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, sizeof(winceLock), zName); /* Set a flag that indicates we're the first to create the memory so it ** must be zero-initialized */ lastErrno = osGetLastError(); if (lastErrno == ERROR_ALREADY_EXISTS){ bInit = FALSE; } sqlite3_free(zName); /* If we succeeded in making the shared memory handle, map it. */ if( pFile->hShared ){ pFile->shared = (winceLock*)osMapViewOfFile(pFile->hShared, FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, sizeof(winceLock)); /* If mapping failed, close the shared memory handle and erase it */ if( !pFile->shared ){ pFile->lastErrno = osGetLastError(); winLogError(SQLITE_IOERR, pFile->lastErrno, "winceCreateLock2", zFilename); bLogged = TRUE; osCloseHandle(pFile->hShared); pFile->hShared = NULL; } } /* If shared memory could not be created, then close the mutex and fail */ if( pFile->hShared==NULL ){ if( !bLogged ){ pFile->lastErrno = lastErrno; winLogError(SQLITE_IOERR, pFile->lastErrno, "winceCreateLock3", zFilename); bLogged = TRUE; } winceMutexRelease(pFile->hMutex); osCloseHandle(pFile->hMutex); pFile->hMutex = NULL; return SQLITE_IOERR; } /* Initialize the shared memory if we're supposed to */ if( bInit ){ memset(pFile->shared, 0, sizeof(winceLock)); } winceMutexRelease(pFile->hMutex); return SQLITE_OK; } /* ** Destroy the part of winFile that deals with wince locks */ static void winceDestroyLock(winFile *pFile){ if (pFile->hMutex){ /* Acquire the mutex */ winceMutexAcquire(pFile->hMutex); /* The following blocks should probably assert in debug mode, but they are to cleanup in case any locks remained open */ if (pFile->local.nReaders){ pFile->shared->nReaders --; } if (pFile->local.bReserved){ pFile->shared->bReserved = FALSE; } if (pFile->local.bPending){ pFile->shared->bPending = FALSE; } if (pFile->local.bExclusive){ pFile->shared->bExclusive = FALSE; } /* De-reference and close our copy of the shared memory handle */ osUnmapViewOfFile(pFile->shared); osCloseHandle(pFile->hShared); /* Done with the mutex */ winceMutexRelease(pFile->hMutex); osCloseHandle(pFile->hMutex); pFile->hMutex = NULL; } } /* ** An implementation of the LockFile() API of Windows for CE */ static BOOL winceLockFile( LPHANDLE phFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh, DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh ){ winFile *pFile = HANDLE_TO_WINFILE(phFile); BOOL bReturn = FALSE; UNUSED_PARAMETER(dwFileOffsetHigh); UNUSED_PARAMETER(nNumberOfBytesToLockHigh); if (!pFile->hMutex) return TRUE; winceMutexAcquire(pFile->hMutex); /* Wanting an exclusive lock? */ if (dwFileOffsetLow == (DWORD)SHARED_FIRST && nNumberOfBytesToLockLow == (DWORD)SHARED_SIZE){ if (pFile->shared->nReaders == 0 && pFile->shared->bExclusive == 0){ pFile->shared->bExclusive = TRUE; pFile->local.bExclusive = TRUE; bReturn = TRUE; } } /* Want a read-only lock? */ else if (dwFileOffsetLow == (DWORD)SHARED_FIRST && nNumberOfBytesToLockLow == 1){ if (pFile->shared->bExclusive == 0){ pFile->local.nReaders ++; if (pFile->local.nReaders == 1){ pFile->shared->nReaders ++; } bReturn = TRUE; } } /* Want a pending lock? */ else if (dwFileOffsetLow == (DWORD)PENDING_BYTE && nNumberOfBytesToLockLow == 1){ /* If no pending lock has been acquired, then acquire it */ if (pFile->shared->bPending == 0) { pFile->shared->bPending = TRUE; pFile->local.bPending = TRUE; bReturn = TRUE; } } /* Want a reserved lock? */ else if (dwFileOffsetLow == (DWORD)RESERVED_BYTE && nNumberOfBytesToLockLow == 1){ if (pFile->shared->bReserved == 0) { pFile->shared->bReserved = TRUE; pFile->local.bReserved = TRUE; bReturn = TRUE; } } winceMutexRelease(pFile->hMutex); return bReturn; } /* ** An implementation of the UnlockFile API of Windows for CE */ static BOOL winceUnlockFile( LPHANDLE phFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh, DWORD nNumberOfBytesToUnlockLow, DWORD nNumberOfBytesToUnlockHigh ){ winFile *pFile = HANDLE_TO_WINFILE(phFile); BOOL bReturn = FALSE; UNUSED_PARAMETER(dwFileOffsetHigh); UNUSED_PARAMETER(nNumberOfBytesToUnlockHigh); if (!pFile->hMutex) return TRUE; winceMutexAcquire(pFile->hMutex); /* Releasing a reader lock or an exclusive lock */ if (dwFileOffsetLow == (DWORD)SHARED_FIRST){ /* Did we have an exclusive lock? */ if (pFile->local.bExclusive){ assert(nNumberOfBytesToUnlockLow == (DWORD)SHARED_SIZE); pFile->local.bExclusive = FALSE; pFile->shared->bExclusive = FALSE; bReturn = TRUE; } /* Did we just have a reader lock? */ else if (pFile->local.nReaders){ assert(nNumberOfBytesToUnlockLow == (DWORD)SHARED_SIZE || nNumberOfBytesToUnlockLow == 1); pFile->local.nReaders --; if (pFile->local.nReaders == 0) { pFile->shared->nReaders --; } bReturn = TRUE; } } /* Releasing a pending lock */ else if (dwFileOffsetLow == (DWORD)PENDING_BYTE && nNumberOfBytesToUnlockLow == 1){ if (pFile->local.bPending){ pFile->local.bPending = FALSE; pFile->shared->bPending = FALSE; bReturn = TRUE; } } /* Releasing a reserved lock */ else if (dwFileOffsetLow == (DWORD)RESERVED_BYTE && nNumberOfBytesToUnlockLow == 1){ if (pFile->local.bReserved) { pFile->local.bReserved = FALSE; pFile->shared->bReserved = FALSE; bReturn = TRUE; } } winceMutexRelease(pFile->hMutex); return bReturn; } /* ** End of the special code for wince *****************************************************************************/ #endif /* SQLITE_OS_WINCE */ /* ** Lock a file region. */ static BOOL winLockFile( LPHANDLE phFile, DWORD flags, DWORD offsetLow, DWORD offsetHigh, DWORD numBytesLow, DWORD numBytesHigh ){ #if SQLITE_OS_WINCE /* ** NOTE: Windows CE is handled differently here due its lack of the Win32 ** API LockFile. */ return winceLockFile(phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); #else if( osIsNT() ){ OVERLAPPED ovlp; memset(&ovlp, 0, sizeof(OVERLAPPED)); ovlp.Offset = offsetLow; ovlp.OffsetHigh = offsetHigh; return osLockFileEx(*phFile, flags, 0, numBytesLow, numBytesHigh, &ovlp); }else{ return osLockFile(*phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); } #endif } /* ** Unlock a file region. */ static BOOL winUnlockFile( LPHANDLE phFile, DWORD offsetLow, DWORD offsetHigh, DWORD numBytesLow, DWORD numBytesHigh ){ #if SQLITE_OS_WINCE /* ** NOTE: Windows CE is handled differently here due its lack of the Win32 ** API UnlockFile. */ return winceUnlockFile(phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); #else if( osIsNT() ){ OVERLAPPED ovlp; memset(&ovlp, 0, sizeof(OVERLAPPED)); ovlp.Offset = offsetLow; ovlp.OffsetHigh = offsetHigh; return osUnlockFileEx(*phFile, 0, numBytesLow, numBytesHigh, &ovlp); }else{ return osUnlockFile(*phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); } #endif } /***************************************************************************** ** The next group of routines implement the I/O methods specified ** by the sqlite3_io_methods object. ******************************************************************************/ /* ** Some Microsoft compilers lack this definition. */ #ifndef INVALID_SET_FILE_POINTER # define INVALID_SET_FILE_POINTER ((DWORD)-1) #endif /* ** Move the current position of the file handle passed as the first ** argument to offset iOffset within the file. If successful, return 0. ** Otherwise, set pFile->lastErrno and return non-zero. */ static int winSeekFile(winFile *pFile, sqlite3_int64 iOffset){ #if !SQLITE_OS_WINRT LONG upperBits; /* Most sig. 32 bits of new offset */ LONG lowerBits; /* Least sig. 32 bits of new offset */ DWORD dwRet; /* Value returned by SetFilePointer() */ DWORD lastErrno; /* Value returned by GetLastError() */ OSTRACE(("SEEK file=%p, offset=%lld\n", pFile->h, iOffset)); upperBits = (LONG)((iOffset>>32) & 0x7fffffff); lowerBits = (LONG)(iOffset & 0xffffffff); /* API oddity: If successful, SetFilePointer() returns a dword ** containing the lower 32-bits of the new file-offset. Or, if it fails, ** it returns INVALID_SET_FILE_POINTER. However according to MSDN, ** INVALID_SET_FILE_POINTER may also be a valid new offset. So to determine ** whether an error has actually occurred, it is also necessary to call ** GetLastError(). */ dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN); if( (dwRet==INVALID_SET_FILE_POINTER && ((lastErrno = osGetLastError())!=NO_ERROR)) ){ pFile->lastErrno = lastErrno; winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno, "winSeekFile", pFile->zPath); OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h)); return 1; } OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h)); return 0; #else /* ** Same as above, except that this implementation works for WinRT. */ LARGE_INTEGER x; /* The new offset */ BOOL bRet; /* Value returned by SetFilePointerEx() */ x.QuadPart = iOffset; bRet = osSetFilePointerEx(pFile->h, x, 0, FILE_BEGIN); if(!bRet){ pFile->lastErrno = osGetLastError(); winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno, "winSeekFile", pFile->zPath); OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h)); return 1; } OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h)); return 0; #endif } #if SQLITE_MAX_MMAP_SIZE>0 /* Forward references to VFS helper methods used for memory mapped files */ static int winMapfile(winFile*, sqlite3_int64); static int winUnmapfile(winFile*); #endif /* ** Close a file. ** ** It is reported that an attempt to close a handle might sometimes ** fail. This is a very unreasonable result, but Windows is notorious ** for being unreasonable so I do not doubt that it might happen. If ** the close fails, we pause for 100 milliseconds and try again. As ** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before ** giving up and returning an error. */ #define MX_CLOSE_ATTEMPT 3 static int winClose(sqlite3_file *id){ int rc, cnt = 0; winFile *pFile = (winFile*)id; assert( id!=0 ); #ifndef SQLITE_OMIT_WAL assert( pFile->pShm==0 ); #endif assert( pFile->h!=NULL && pFile->h!=INVALID_HANDLE_VALUE ); OSTRACE(("CLOSE pid=%lu, pFile=%p, file=%p\n", osGetCurrentProcessId(), pFile, pFile->h)); #if SQLITE_MAX_MMAP_SIZE>0 winUnmapfile(pFile); #endif do{ rc = osCloseHandle(pFile->h); /* SimulateIOError( rc=0; cnt=MX_CLOSE_ATTEMPT; ); */ }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (sqlite3_win32_sleep(100), 1) ); #if SQLITE_OS_WINCE #define WINCE_DELETION_ATTEMPTS 3 { winVfsAppData *pAppData = (winVfsAppData*)pFile->pVfs->pAppData; if( pAppData==NULL || !pAppData->bNoLock ){ winceDestroyLock(pFile); } } if( pFile->zDeleteOnClose ){ int cnt = 0; while( osDeleteFileW(pFile->zDeleteOnClose)==0 && osGetFileAttributesW(pFile->zDeleteOnClose)!=0xffffffff && cnt++ < WINCE_DELETION_ATTEMPTS ){ sqlite3_win32_sleep(100); /* Wait a little before trying again */ } sqlite3_free(pFile->zDeleteOnClose); } #endif if( rc ){ pFile->h = NULL; } OpenCounter(-1); OSTRACE(("CLOSE pid=%lu, pFile=%p, file=%p, rc=%s\n", osGetCurrentProcessId(), pFile, pFile->h, rc ? "ok" : "failed")); return rc ? SQLITE_OK : winLogError(SQLITE_IOERR_CLOSE, osGetLastError(), "winClose", pFile->zPath); } /* ** Read data from a file into a buffer. Return SQLITE_OK if all ** bytes were read successfully and SQLITE_IOERR if anything goes ** wrong. */ static int winRead( sqlite3_file *id, /* File to read from */ void *pBuf, /* Write content into this buffer */ int amt, /* Number of bytes to read */ sqlite3_int64 offset /* Begin reading at this offset */ ){ #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) OVERLAPPED overlapped; /* The offset for ReadFile. */ #endif winFile *pFile = (winFile*)id; /* file handle */ DWORD nRead; /* Number of bytes actually read from file */ int nRetry = 0; /* Number of retrys */ assert( id!=0 ); assert( amt>0 ); assert( offset>=0 ); SimulateIOError(return SQLITE_IOERR_READ); OSTRACE(("READ pid=%lu, pFile=%p, file=%p, buffer=%p, amount=%d, " "offset=%lld, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, pBuf, amt, offset, pFile->locktype)); #if SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this read request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt); OSTRACE(("READ-MMAP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; }else{ int nCopy = (int)(pFile->mmapSize - offset); memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED) if( winSeekFile(pFile, offset) ){ OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_FULL\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_FULL; } while( !osReadFile(pFile->h, pBuf, amt, &nRead, 0) ){ #else memset(&overlapped, 0, sizeof(OVERLAPPED)); overlapped.Offset = (LONG)(offset & 0xffffffff); overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) && osGetLastError()!=ERROR_HANDLE_EOF ){ #endif DWORD lastErrno; if( winRetryIoerr(&nRetry, &lastErrno) ) continue; pFile->lastErrno = lastErrno; OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_READ\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_IOERR_READ, pFile->lastErrno, "winRead", pFile->zPath); } winLogIoerr(nRetry, __LINE__); if( nRead<(DWORD)amt ){ /* Unread parts of the buffer must be zero-filled */ memset(&((char*)pBuf)[nRead], 0, amt-nRead); OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_SHORT_READ\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_IOERR_SHORT_READ; } OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; } /* ** Write data from a buffer into a file. Return SQLITE_OK on success ** or some other error code on failure. */ static int winWrite( sqlite3_file *id, /* File to write into */ const void *pBuf, /* The bytes to be written */ int amt, /* Number of bytes to write */ sqlite3_int64 offset /* Offset into the file to begin writing at */ ){ int rc = 0; /* True if error has occurred, else false */ winFile *pFile = (winFile*)id; /* File handle */ int nRetry = 0; /* Number of retries */ assert( amt>0 ); assert( pFile ); SimulateIOError(return SQLITE_IOERR_WRITE); SimulateDiskfullError(return SQLITE_FULL); OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, buffer=%p, amount=%d, " "offset=%lld, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, pBuf, amt, offset, pFile->locktype)); #if defined(SQLITE_MMAP_READWRITE) && SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this write request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt); OSTRACE(("WRITE-MMAP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; }else{ int nCopy = (int)(pFile->mmapSize - offset); memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED) rc = winSeekFile(pFile, offset); if( rc==0 ){ #else { #endif #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) OVERLAPPED overlapped; /* The offset for WriteFile. */ #endif u8 *aRem = (u8 *)pBuf; /* Data yet to be written */ int nRem = amt; /* Number of bytes yet to be written */ DWORD nWrite; /* Bytes written by each WriteFile() call */ DWORD lastErrno = NO_ERROR; /* Value returned by GetLastError() */ #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) memset(&overlapped, 0, sizeof(OVERLAPPED)); overlapped.Offset = (LONG)(offset & 0xffffffff); overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); #endif while( nRem>0 ){ #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED) if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, 0) ){ #else if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){ #endif if( winRetryIoerr(&nRetry, &lastErrno) ) continue; break; } assert( nWrite==0 || nWrite<=(DWORD)nRem ); if( nWrite==0 || nWrite>(DWORD)nRem ){ lastErrno = osGetLastError(); break; } #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) offset += nWrite; overlapped.Offset = (LONG)(offset & 0xffffffff); overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); #endif aRem += nWrite; nRem -= nWrite; } if( nRem>0 ){ pFile->lastErrno = lastErrno; rc = 1; } } if( rc ){ if( ( pFile->lastErrno==ERROR_HANDLE_DISK_FULL ) || ( pFile->lastErrno==ERROR_DISK_FULL )){ OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_FULL\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_FULL, pFile->lastErrno, "winWrite1", pFile->zPath); } OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_WRITE\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_IOERR_WRITE, pFile->lastErrno, "winWrite2", pFile->zPath); }else{ winLogIoerr(nRetry, __LINE__); } OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; } /* ** Truncate an open file to a specified size */ static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){ winFile *pFile = (winFile*)id; /* File handle object */ int rc = SQLITE_OK; /* Return code for this function */ DWORD lastErrno; #if SQLITE_MAX_MMAP_SIZE>0 sqlite3_int64 oldMmapSize; if( pFile->nFetchOut>0 ){ /* File truncation is a no-op if there are outstanding memory mapped ** pages. This is because truncating the file means temporarily unmapping ** the file, and that might delete memory out from under existing cursors. ** ** This can result in incremental vacuum not truncating the file, ** if there is an active read cursor when the incremental vacuum occurs. ** No real harm comes of this - the database file is not corrupted, ** though some folks might complain that the file is bigger than it ** needs to be. ** ** The only feasible work-around is to defer the truncation until after ** all references to memory-mapped content are closed. That is doable, ** but involves adding a few branches in the common write code path which ** could slow down normal operations slightly. Hence, we have decided for ** now to simply make trancations a no-op if there are pending reads. We ** can maybe revisit this decision in the future. */ return SQLITE_OK; } #endif assert( pFile ); SimulateIOError(return SQLITE_IOERR_TRUNCATE); OSTRACE(("TRUNCATE pid=%lu, pFile=%p, file=%p, size=%lld, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, nByte, pFile->locktype)); /* If the user has configured a chunk-size for this file, truncate the ** file so that it consists of an integer number of chunks (i.e. the ** actual file size after the operation may be larger than the requested ** size). */ if( pFile->szChunk>0 ){ nByte = ((nByte + pFile->szChunk - 1)/pFile->szChunk) * pFile->szChunk; } #if SQLITE_MAX_MMAP_SIZE>0 if( pFile->pMapRegion ){ oldMmapSize = pFile->mmapSize; }else{ oldMmapSize = 0; } winUnmapfile(pFile); #endif /* SetEndOfFile() returns non-zero when successful, or zero when it fails. */ if( winSeekFile(pFile, nByte) ){ rc = winLogError(SQLITE_IOERR_TRUNCATE, pFile->lastErrno, "winTruncate1", pFile->zPath); }else if( 0==osSetEndOfFile(pFile->h) && ((lastErrno = osGetLastError())!=ERROR_USER_MAPPED_FILE) ){ pFile->lastErrno = lastErrno; rc = winLogError(SQLITE_IOERR_TRUNCATE, pFile->lastErrno, "winTruncate2", pFile->zPath); } #if SQLITE_MAX_MMAP_SIZE>0 if( rc==SQLITE_OK && oldMmapSize>0 ){ if( oldMmapSize>nByte ){ winMapfile(pFile, -1); }else{ winMapfile(pFile, oldMmapSize); } } #endif OSTRACE(("TRUNCATE pid=%lu, pFile=%p, file=%p, rc=%s\n", osGetCurrentProcessId(), pFile, pFile->h, sqlite3ErrName(rc))); return rc; } #ifdef SQLITE_TEST /* ** Count the number of fullsyncs and normal syncs. This is used to test ** that syncs and fullsyncs are occuring at the right times. */ SQLITE_API int sqlite3_sync_count = 0; SQLITE_API int sqlite3_fullsync_count = 0; #endif /* ** Make sure all writes to a particular file are committed to disk. */ static int winSync(sqlite3_file *id, int flags){ #ifndef SQLITE_NO_SYNC /* ** Used only when SQLITE_NO_SYNC is not defined. */ BOOL rc; #endif #if !defined(NDEBUG) || !defined(SQLITE_NO_SYNC) || \ defined(SQLITE_HAVE_OS_TRACE) /* ** Used when SQLITE_NO_SYNC is not defined and by the assert() and/or ** OSTRACE() macros. */ winFile *pFile = (winFile*)id; #else UNUSED_PARAMETER(id); #endif assert( pFile ); /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */ assert((flags&0x0F)==SQLITE_SYNC_NORMAL || (flags&0x0F)==SQLITE_SYNC_FULL ); /* Unix cannot, but some systems may return SQLITE_FULL from here. This ** line is to test that doing so does not cause any problems. */ SimulateDiskfullError( return SQLITE_FULL ); OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, flags=%x, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, flags, pFile->locktype)); #ifndef SQLITE_TEST UNUSED_PARAMETER(flags); #else if( (flags&0x0F)==SQLITE_SYNC_FULL ){ sqlite3_fullsync_count++; } sqlite3_sync_count++; #endif /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a ** no-op */ #ifdef SQLITE_NO_SYNC OSTRACE(("SYNC-NOP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; #else #if SQLITE_MAX_MMAP_SIZE>0 if( pFile->pMapRegion ){ if( osFlushViewOfFile(pFile->pMapRegion, 0) ){ OSTRACE(("SYNC-MMAP pid=%lu, pFile=%p, pMapRegion=%p, " "rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->pMapRegion)); }else{ pFile->lastErrno = osGetLastError(); OSTRACE(("SYNC-MMAP pid=%lu, pFile=%p, pMapRegion=%p, " "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, pFile->pMapRegion)); return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, "winSync1", pFile->zPath); } } #endif rc = osFlushFileBuffers(pFile->h); SimulateIOError( rc=FALSE ); if( rc ){ OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; }else{ pFile->lastErrno = osGetLastError(); OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_FSYNC\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_IOERR_FSYNC, pFile->lastErrno, "winSync2", pFile->zPath); } #endif } /* ** Determine the current size of a file in bytes */ static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){ winFile *pFile = (winFile*)id; int rc = SQLITE_OK; assert( id!=0 ); assert( pSize!=0 ); SimulateIOError(return SQLITE_IOERR_FSTAT); OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize)); #if SQLITE_OS_WINRT { FILE_STANDARD_INFO info; if( osGetFileInformationByHandleEx(pFile->h, FileStandardInfo, &info, sizeof(info)) ){ *pSize = info.EndOfFile.QuadPart; }else{ pFile->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_FSTAT, pFile->lastErrno, "winFileSize", pFile->zPath); } } #else { DWORD upperBits; DWORD lowerBits; DWORD lastErrno; lowerBits = osGetFileSize(pFile->h, &upperBits); *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits; if( (lowerBits == INVALID_FILE_SIZE) && ((lastErrno = osGetLastError())!=NO_ERROR) ){ pFile->lastErrno = lastErrno; rc = winLogError(SQLITE_IOERR_FSTAT, pFile->lastErrno, "winFileSize", pFile->zPath); } } #endif OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n", pFile->h, pSize, *pSize, sqlite3ErrName(rc))); return rc; } /* ** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems. */ #ifndef LOCKFILE_FAIL_IMMEDIATELY # define LOCKFILE_FAIL_IMMEDIATELY 1 #endif #ifndef LOCKFILE_EXCLUSIVE_LOCK # define LOCKFILE_EXCLUSIVE_LOCK 2 #endif /* ** Historically, SQLite has used both the LockFile and LockFileEx functions. ** When the LockFile function was used, it was always expected to fail ** immediately if the lock could not be obtained. Also, it always expected to ** obtain an exclusive lock. These flags are used with the LockFileEx function ** and reflect those expectations; therefore, they should not be changed. */ #ifndef SQLITE_LOCKFILE_FLAGS # define SQLITE_LOCKFILE_FLAGS (LOCKFILE_FAIL_IMMEDIATELY | \ LOCKFILE_EXCLUSIVE_LOCK) #endif /* ** Currently, SQLite never calls the LockFileEx function without wanting the ** call to fail immediately if the lock cannot be obtained. */ #ifndef SQLITE_LOCKFILEEX_FLAGS # define SQLITE_LOCKFILEEX_FLAGS (LOCKFILE_FAIL_IMMEDIATELY) #endif /* ** Acquire a reader lock. ** Different API routines are called depending on whether or not this ** is Win9x or WinNT. */ static int winGetReadLock(winFile *pFile){ int res; OSTRACE(("READ-LOCK file=%p, lock=%d\n", pFile->h, pFile->locktype)); if( osIsNT() ){ #if SQLITE_OS_WINCE /* ** NOTE: Windows CE is handled differently here due its lack of the Win32 ** API LockFileEx. */ res = winceLockFile(&pFile->h, SHARED_FIRST, 0, 1, 0); #else res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS, SHARED_FIRST, 0, SHARED_SIZE, 0); #endif } #ifdef SQLITE_WIN32_HAS_ANSI else{ int lk; sqlite3_randomness(sizeof(lk), &lk); pFile->sharedLockByte = (short)((lk & 0x7fffffff)%(SHARED_SIZE - 1)); res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0); } #endif if( res == 0 ){ pFile->lastErrno = osGetLastError(); /* No need to log a failure to lock */ } OSTRACE(("READ-LOCK file=%p, result=%d\n", pFile->h, res)); return res; } /* ** Undo a readlock */ static int winUnlockReadLock(winFile *pFile){ int res; DWORD lastErrno; OSTRACE(("READ-UNLOCK file=%p, lock=%d\n", pFile->h, pFile->locktype)); if( osIsNT() ){ res = winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0); } #ifdef SQLITE_WIN32_HAS_ANSI else{ res = winUnlockFile(&pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0); } #endif if( res==0 && ((lastErrno = osGetLastError())!=ERROR_NOT_LOCKED) ){ pFile->lastErrno = lastErrno; winLogError(SQLITE_IOERR_UNLOCK, pFile->lastErrno, "winUnlockReadLock", pFile->zPath); } OSTRACE(("READ-UNLOCK file=%p, result=%d\n", pFile->h, res)); return res; } /* ** Lock the file with the lock specified by parameter locktype - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. The winUnlock() routine ** erases all locks at once and returns us immediately to locking level 0. ** It is not possible to lower the locking level one step at a time. You ** must go straight to locking level 0. */ static int winLock(sqlite3_file *id, int locktype){ int rc = SQLITE_OK; /* Return code from subroutines */ int res = 1; /* Result of a Windows lock call */ int newLocktype; /* Set pFile->locktype to this value before exiting */ int gotPendingLock = 0;/* True if we acquired a PENDING lock this time */ winFile *pFile = (winFile*)id; DWORD lastErrno = NO_ERROR; assert( id!=0 ); OSTRACE(("LOCK file=%p, oldLock=%d(%d), newLock=%d\n", pFile->h, pFile->locktype, pFile->sharedLockByte, locktype)); /* If there is already a lock of this type or more restrictive on the ** OsFile, do nothing. Don't use the end_lock: exit path, as ** sqlite3OsEnterMutex() hasn't been called yet. */ if( pFile->locktype>=locktype ){ OSTRACE(("LOCK-HELD file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } /* Do not allow any kind of write-lock on a read-only database */ if( (pFile->ctrlFlags & WINFILE_RDONLY)!=0 && locktype>=RESERVED_LOCK ){ return SQLITE_IOERR_LOCK; } /* Make sure the locking sequence is correct */ assert( pFile->locktype!=NO_LOCK || locktype==SHARED_LOCK ); assert( locktype!=PENDING_LOCK ); assert( locktype!=RESERVED_LOCK || pFile->locktype==SHARED_LOCK ); /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or ** a SHARED lock. If we are acquiring a SHARED lock, the acquisition of ** the PENDING_LOCK byte is temporary. */ newLocktype = pFile->locktype; if( pFile->locktype==NO_LOCK || (locktype==EXCLUSIVE_LOCK && pFile->locktype<=RESERVED_LOCK) ){ int cnt = 3; while( cnt-->0 && (res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, PENDING_BYTE, 0, 1, 0))==0 ){ /* Try 3 times to get the pending lock. This is needed to work ** around problems caused by indexing and/or anti-virus software on ** Windows systems. ** If you are using this code as a model for alternative VFSes, do not ** copy this retry logic. It is a hack intended for Windows only. */ lastErrno = osGetLastError(); OSTRACE(("LOCK-PENDING-FAIL file=%p, count=%d, result=%d\n", pFile->h, cnt, res)); if( lastErrno==ERROR_INVALID_HANDLE ){ pFile->lastErrno = lastErrno; rc = SQLITE_IOERR_LOCK; OSTRACE(("LOCK-FAIL file=%p, count=%d, rc=%s\n", pFile->h, cnt, sqlite3ErrName(rc))); return rc; } if( cnt ) sqlite3_win32_sleep(1); } gotPendingLock = res; if( !res ){ lastErrno = osGetLastError(); } } /* Acquire a shared lock */ if( locktype==SHARED_LOCK && res ){ assert( pFile->locktype==NO_LOCK ); res = winGetReadLock(pFile); if( res ){ newLocktype = SHARED_LOCK; }else{ lastErrno = osGetLastError(); } } /* Acquire a RESERVED lock */ if( locktype==RESERVED_LOCK && res ){ assert( pFile->locktype==SHARED_LOCK ); res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, RESERVED_BYTE, 0, 1, 0); if( res ){ newLocktype = RESERVED_LOCK; }else{ lastErrno = osGetLastError(); } } /* Acquire a PENDING lock */ if( locktype==EXCLUSIVE_LOCK && res ){ newLocktype = PENDING_LOCK; gotPendingLock = 0; } /* Acquire an EXCLUSIVE lock */ if( locktype==EXCLUSIVE_LOCK && res ){ assert( pFile->locktype>=SHARED_LOCK ); res = winUnlockReadLock(pFile); res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, SHARED_FIRST, 0, SHARED_SIZE, 0); if( res ){ newLocktype = EXCLUSIVE_LOCK; }else{ lastErrno = osGetLastError(); winGetReadLock(pFile); } } /* If we are holding a PENDING lock that ought to be released, then ** release it now. */ if( gotPendingLock && locktype==SHARED_LOCK ){ winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0); } /* Update the state of the lock has held in the file descriptor then ** return the appropriate result code. */ if( res ){ rc = SQLITE_OK; }else{ pFile->lastErrno = lastErrno; rc = SQLITE_BUSY; OSTRACE(("LOCK-FAIL file=%p, wanted=%d, got=%d\n", pFile->h, locktype, newLocktype)); } pFile->locktype = (u8)newLocktype; OSTRACE(("LOCK file=%p, lock=%d, rc=%s\n", pFile->h, pFile->locktype, sqlite3ErrName(rc))); return rc; } /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, return ** non-zero, otherwise zero. */ static int winCheckReservedLock(sqlite3_file *id, int *pResOut){ int res; winFile *pFile = (winFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile->h, pResOut)); assert( id!=0 ); if( pFile->locktype>=RESERVED_LOCK ){ res = 1; OSTRACE(("TEST-WR-LOCK file=%p, result=%d (local)\n", pFile->h, res)); }else{ res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS,RESERVED_BYTE,0,1,0); if( res ){ winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0); } res = !res; OSTRACE(("TEST-WR-LOCK file=%p, result=%d (remote)\n", pFile->h, res)); } *pResOut = res; OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n", pFile->h, pResOut, *pResOut)); return SQLITE_OK; } /* ** Lower the locking level on file descriptor id to locktype. locktype ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. ** ** It is not possible for this routine to fail if the second argument ** is NO_LOCK. If the second argument is SHARED_LOCK then this routine ** might return SQLITE_IOERR; */ static int winUnlock(sqlite3_file *id, int locktype){ int type; winFile *pFile = (winFile*)id; int rc = SQLITE_OK; assert( pFile!=0 ); assert( locktype<=SHARED_LOCK ); OSTRACE(("UNLOCK file=%p, oldLock=%d(%d), newLock=%d\n", pFile->h, pFile->locktype, pFile->sharedLockByte, locktype)); type = pFile->locktype; if( type>=EXCLUSIVE_LOCK ){ winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0); if( locktype==SHARED_LOCK && !winGetReadLock(pFile) ){ /* This should never happen. We should always be able to ** reacquire the read lock */ rc = winLogError(SQLITE_IOERR_UNLOCK, osGetLastError(), "winUnlock", pFile->zPath); } } if( type>=RESERVED_LOCK ){ winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0); } if( locktype==NO_LOCK && type>=SHARED_LOCK ){ winUnlockReadLock(pFile); } if( type>=PENDING_LOCK ){ winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0); } pFile->locktype = (u8)locktype; OSTRACE(("UNLOCK file=%p, lock=%d, rc=%s\n", pFile->h, pFile->locktype, sqlite3ErrName(rc))); return rc; } /****************************************************************************** ****************************** No-op Locking ********************************** ** ** Of the various locking implementations available, this is by far the ** simplest: locking is ignored. No attempt is made to lock the database ** file for reading or writing. ** ** This locking mode is appropriate for use on read-only databases ** (ex: databases that are burned into CD-ROM, for example.) It can ** also be used if the application employs some external mechanism to ** prevent simultaneous access of the same database by two or more ** database connections. But there is a serious risk of database ** corruption if this locking mode is used in situations where multiple ** database connections are accessing the same database file at the same ** time and one or more of those connections are writing. */ static int winNolockLock(sqlite3_file *id, int locktype){ UNUSED_PARAMETER(id); UNUSED_PARAMETER(locktype); return SQLITE_OK; } static int winNolockCheckReservedLock(sqlite3_file *id, int *pResOut){ UNUSED_PARAMETER(id); UNUSED_PARAMETER(pResOut); return SQLITE_OK; } static int winNolockUnlock(sqlite3_file *id, int locktype){ UNUSED_PARAMETER(id); UNUSED_PARAMETER(locktype); return SQLITE_OK; } /******************* End of the no-op lock implementation ********************* ******************************************************************************/ /* ** If *pArg is initially negative then this is a query. Set *pArg to ** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set. ** ** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags. */ static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){ if( *pArg<0 ){ *pArg = (pFile->ctrlFlags & mask)!=0; }else if( (*pArg)==0 ){ pFile->ctrlFlags &= ~mask; }else{ pFile->ctrlFlags |= mask; } } /* Forward references to VFS helper methods used for temporary files */ static int winGetTempname(sqlite3_vfs *, char **); static int winIsDir(const void *); static BOOL winIsLongPathPrefix(const char *); static BOOL winIsDriveLetterAndColon(const char *); /* ** Control and query of the open file handle. */ static int winFileControl(sqlite3_file *id, int op, void *pArg){ winFile *pFile = (winFile*)id; OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg)); switch( op ){ case SQLITE_FCNTL_LOCKSTATE: { *(int*)pArg = pFile->locktype; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_LAST_ERRNO: { *(int*)pArg = (int)pFile->lastErrno; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_CHUNK_SIZE: { pFile->szChunk = *(int *)pArg; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_SIZE_HINT: { if( pFile->szChunk>0 ){ sqlite3_int64 oldSz; int rc = winFileSize(id, &oldSz); if( rc==SQLITE_OK ){ sqlite3_int64 newSz = *(sqlite3_int64*)pArg; if( newSz>oldSz ){ SimulateIOErrorBenign(1); rc = winTruncate(id, newSz); SimulateIOErrorBenign(0); } } OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); return rc; } OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_PERSIST_WAL: { winModeBit(pFile, WINFILE_PERSIST_WAL, (int*)pArg); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { winModeBit(pFile, WINFILE_PSOW, (int*)pArg); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_VFSNAME: { *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_WIN32_AV_RETRY: { int *a = (int*)pArg; if( a[0]>0 ){ winIoerrRetry = a[0]; }else{ a[0] = winIoerrRetry; } if( a[1]>0 ){ winIoerrRetryDelay = a[1]; }else{ a[1] = winIoerrRetryDelay; } OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_WIN32_GET_HANDLE: { LPHANDLE phFile = (LPHANDLE)pArg; *phFile = pFile->h; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } #ifdef SQLITE_TEST case SQLITE_FCNTL_WIN32_SET_HANDLE: { LPHANDLE phFile = (LPHANDLE)pArg; HANDLE hOldFile = pFile->h; pFile->h = *phFile; *phFile = hOldFile; OSTRACE(("FCNTL oldFile=%p, newFile=%p, rc=SQLITE_OK\n", hOldFile, pFile->h)); return SQLITE_OK; } #endif case SQLITE_FCNTL_TEMPFILENAME: { char *zTFile = 0; int rc = winGetTempname(pFile->pVfs, &zTFile); if( rc==SQLITE_OK ){ *(char**)pArg = zTFile; } OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); return rc; } #if SQLITE_MAX_MMAP_SIZE>0 case SQLITE_FCNTL_MMAP_SIZE: { i64 newLimit = *(i64*)pArg; int rc = SQLITE_OK; if( newLimit>sqlite3GlobalConfig.mxMmap ){ newLimit = sqlite3GlobalConfig.mxMmap; } /* The value of newLimit may be eventually cast to (SIZE_T) and passed ** to MapViewOfFile(). Restrict its value to 2GB if (SIZE_T) is not at ** least a 64-bit type. */ if( newLimit>0 && sizeof(SIZE_T)<8 ){ newLimit = (newLimit & 0x7FFFFFFF); } *(i64*)pArg = pFile->mmapSizeMax; if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ pFile->mmapSizeMax = newLimit; if( pFile->mmapSize>0 ){ winUnmapfile(pFile); rc = winMapfile(pFile, -1); } } OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); return rc; } #endif } OSTRACE(("FCNTL file=%p, rc=SQLITE_NOTFOUND\n", pFile->h)); return SQLITE_NOTFOUND; } /* ** Return the sector size in bytes of the underlying block device for ** the specified file. This is almost always 512 bytes, but may be ** larger for some devices. ** ** SQLite code assumes this function cannot fail. It also assumes that ** if two files are created in the same file-system directory (i.e. ** a database and its journal file) that the sector size will be the ** same for both. */ static int winSectorSize(sqlite3_file *id){ (void)id; return SQLITE_DEFAULT_SECTOR_SIZE; } /* ** Return a vector of device characteristics. */ static int winDeviceCharacteristics(sqlite3_file *id){ winFile *p = (winFile*)id; return SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN | ((p->ctrlFlags & WINFILE_PSOW)?SQLITE_IOCAP_POWERSAFE_OVERWRITE:0); } /* ** Windows will only let you create file view mappings ** on allocation size granularity boundaries. ** During sqlite3_os_init() we do a GetSystemInfo() ** to get the granularity size. */ static SYSTEM_INFO winSysInfo; #ifndef SQLITE_OMIT_WAL /* ** Helper functions to obtain and relinquish the global mutex. The ** global mutex is used to protect the winLockInfo objects used by ** this file, all of which may be shared by multiple threads. ** ** Function winShmMutexHeld() is used to assert() that the global mutex ** is held when required. This function is only used as part of assert() ** statements. e.g. ** ** winShmEnterMutex() ** assert( winShmMutexHeld() ); ** winShmLeaveMutex() */ static sqlite3_mutex *winBigLock = 0; static void winShmEnterMutex(void){ sqlite3_mutex_enter(winBigLock); } static void winShmLeaveMutex(void){ sqlite3_mutex_leave(winBigLock); } #ifndef NDEBUG static int winShmMutexHeld(void) { return sqlite3_mutex_held(winBigLock); } #endif /* ** Object used to represent a single file opened and mmapped to provide ** shared memory. When multiple threads all reference the same ** log-summary, each thread has its own winFile object, but they all ** point to a single instance of this object. In other words, each ** log-summary is opened only once per process. ** ** winShmMutexHeld() must be true when creating or destroying ** this object or while reading or writing the following fields: ** ** nRef ** pNext ** ** The following fields are read-only after the object is created: ** ** fid ** zFilename ** ** Either winShmNode.mutex must be held or winShmNode.nRef==0 and ** winShmMutexHeld() is true when reading or writing any other field ** in this structure. ** */ struct winShmNode { sqlite3_mutex *mutex; /* Mutex to access this object */ char *zFilename; /* Name of the file */ winFile hFile; /* File handle from winOpen */ int szRegion; /* Size of shared-memory regions */ int nRegion; /* Size of array apRegion */ u8 isReadonly; /* True if read-only */ u8 isUnlocked; /* True if no DMS lock held */ struct ShmRegion { HANDLE hMap; /* File handle from CreateFileMapping */ void *pMap; } *aRegion; DWORD lastErrno; /* The Windows errno from the last I/O error */ int nRef; /* Number of winShm objects pointing to this */ winShm *pFirst; /* All winShm objects pointing to this */ winShmNode *pNext; /* Next in list of all winShmNode objects */ #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) u8 nextShmId; /* Next available winShm.id value */ #endif }; /* ** A global array of all winShmNode objects. ** ** The winShmMutexHeld() must be true while reading or writing this list. */ static winShmNode *winShmNodeList = 0; /* ** Structure used internally by this VFS to record the state of an ** open shared memory connection. ** ** The following fields are initialized when this object is created and ** are read-only thereafter: ** ** winShm.pShmNode ** winShm.id ** ** All other fields are read/write. The winShm.pShmNode->mutex must be held ** while accessing any read/write fields. */ struct winShm { winShmNode *pShmNode; /* The underlying winShmNode object */ winShm *pNext; /* Next winShm with the same winShmNode */ u8 hasMutex; /* True if holding the winShmNode mutex */ u16 sharedMask; /* Mask of shared locks held */ u16 exclMask; /* Mask of exclusive locks held */ #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) u8 id; /* Id of this connection with its winShmNode */ #endif }; /* ** Constants used for locking */ #define WIN_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */ #define WIN_SHM_DMS (WIN_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */ /* ** Apply advisory locks for all n bytes beginning at ofst. */ #define WINSHM_UNLCK 1 #define WINSHM_RDLCK 2 #define WINSHM_WRLCK 3 static int winShmSystemLock( winShmNode *pFile, /* Apply locks to this open shared-memory segment */ int lockType, /* WINSHM_UNLCK, WINSHM_RDLCK, or WINSHM_WRLCK */ int ofst, /* Offset to first byte to be locked/unlocked */ int nByte /* Number of bytes to lock or unlock */ ){ int rc = 0; /* Result code form Lock/UnlockFileEx() */ /* Access to the winShmNode object is serialized by the caller */ assert( pFile->nRef==0 || sqlite3_mutex_held(pFile->mutex) ); OSTRACE(("SHM-LOCK file=%p, lock=%d, offset=%d, size=%d\n", pFile->hFile.h, lockType, ofst, nByte)); /* Release/Acquire the system-level lock */ if( lockType==WINSHM_UNLCK ){ rc = winUnlockFile(&pFile->hFile.h, ofst, 0, nByte, 0); }else{ /* Initialize the locking parameters */ DWORD dwFlags = LOCKFILE_FAIL_IMMEDIATELY; if( lockType == WINSHM_WRLCK ) dwFlags |= LOCKFILE_EXCLUSIVE_LOCK; rc = winLockFile(&pFile->hFile.h, dwFlags, ofst, 0, nByte, 0); } if( rc!= 0 ){ rc = SQLITE_OK; }else{ pFile->lastErrno = osGetLastError(); rc = SQLITE_BUSY; } OSTRACE(("SHM-LOCK file=%p, func=%s, errno=%lu, rc=%s\n", pFile->hFile.h, (lockType == WINSHM_UNLCK) ? "winUnlockFile" : "winLockFile", pFile->lastErrno, sqlite3ErrName(rc))); return rc; } /* Forward references to VFS methods */ static int winOpen(sqlite3_vfs*,const char*,sqlite3_file*,int,int*); static int winDelete(sqlite3_vfs *,const char*,int); /* ** Purge the winShmNodeList list of all entries with winShmNode.nRef==0. ** ** This is not a VFS shared-memory method; it is a utility function called ** by VFS shared-memory methods. */ static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){ winShmNode **pp; winShmNode *p; assert( winShmMutexHeld() ); OSTRACE(("SHM-PURGE pid=%lu, deleteFlag=%d\n", osGetCurrentProcessId(), deleteFlag)); pp = &winShmNodeList; while( (p = *pp)!=0 ){ if( p->nRef==0 ){ int i; if( p->mutex ){ sqlite3_mutex_free(p->mutex); } for(i=0; inRegion; i++){ BOOL bRc = osUnmapViewOfFile(p->aRegion[i].pMap); OSTRACE(("SHM-PURGE-UNMAP pid=%lu, region=%d, rc=%s\n", osGetCurrentProcessId(), i, bRc ? "ok" : "failed")); UNUSED_VARIABLE_VALUE(bRc); bRc = osCloseHandle(p->aRegion[i].hMap); OSTRACE(("SHM-PURGE-CLOSE pid=%lu, region=%d, rc=%s\n", osGetCurrentProcessId(), i, bRc ? "ok" : "failed")); UNUSED_VARIABLE_VALUE(bRc); } if( p->hFile.h!=NULL && p->hFile.h!=INVALID_HANDLE_VALUE ){ SimulateIOErrorBenign(1); winClose((sqlite3_file *)&p->hFile); SimulateIOErrorBenign(0); } if( deleteFlag ){ SimulateIOErrorBenign(1); sqlite3BeginBenignMalloc(); winDelete(pVfs, p->zFilename, 0); sqlite3EndBenignMalloc(); SimulateIOErrorBenign(0); } *pp = p->pNext; sqlite3_free(p->aRegion); sqlite3_free(p); }else{ pp = &p->pNext; } } } /* ** The DMS lock has not yet been taken on shm file pShmNode. Attempt to ** take it now. Return SQLITE_OK if successful, or an SQLite error ** code otherwise. ** ** If the DMS cannot be locked because this is a readonly_shm=1 ** connection and no other process already holds a lock, return ** SQLITE_READONLY_CANTINIT and set pShmNode->isUnlocked=1. */ static int winLockSharedMemory(winShmNode *pShmNode){ int rc = winShmSystemLock(pShmNode, WINSHM_WRLCK, WIN_SHM_DMS, 1); if( rc==SQLITE_OK ){ if( pShmNode->isReadonly ){ pShmNode->isUnlocked = 1; winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); return SQLITE_READONLY_CANTINIT; }else if( winTruncate((sqlite3_file*)&pShmNode->hFile, 0) ){ winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); return winLogError(SQLITE_IOERR_SHMOPEN, osGetLastError(), "winLockSharedMemory", pShmNode->zFilename); } } if( rc==SQLITE_OK ){ winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); } return winShmSystemLock(pShmNode, WINSHM_RDLCK, WIN_SHM_DMS, 1); } /* ** Open the shared-memory area associated with database file pDbFd. ** ** When opening a new shared-memory file, if no other instances of that ** file are currently open, in this process or in other processes, then ** the file must be truncated to zero length or have its header cleared. */ static int winOpenSharedMemory(winFile *pDbFd){ struct winShm *p; /* The connection to be opened */ winShmNode *pShmNode = 0; /* The underlying mmapped file */ int rc = SQLITE_OK; /* Result code */ winShmNode *pNew; /* Newly allocated winShmNode */ int nName; /* Size of zName in bytes */ assert( pDbFd->pShm==0 ); /* Not previously opened */ /* Allocate space for the new sqlite3_shm object. Also speculatively ** allocate space for a new winShmNode and filename. */ p = sqlite3MallocZero( sizeof(*p) ); if( p==0 ) return SQLITE_IOERR_NOMEM_BKPT; nName = sqlite3Strlen30(pDbFd->zPath); pNew = sqlite3MallocZero( sizeof(*pShmNode) + nName + 17 ); if( pNew==0 ){ sqlite3_free(p); return SQLITE_IOERR_NOMEM_BKPT; } pNew->zFilename = (char*)&pNew[1]; sqlite3_snprintf(nName+15, pNew->zFilename, "%s-shm", pDbFd->zPath); sqlite3FileSuffix3(pDbFd->zPath, pNew->zFilename); /* Look to see if there is an existing winShmNode that can be used. ** If no matching winShmNode currently exists, create a new one. */ winShmEnterMutex(); for(pShmNode = winShmNodeList; pShmNode; pShmNode=pShmNode->pNext){ /* TBD need to come up with better match here. Perhaps ** use FILE_ID_BOTH_DIR_INFO Structure. */ if( sqlite3StrICmp(pShmNode->zFilename, pNew->zFilename)==0 ) break; } if( pShmNode ){ sqlite3_free(pNew); }else{ int inFlags = SQLITE_OPEN_WAL; int outFlags = 0; pShmNode = pNew; pNew = 0; ((winFile*)(&pShmNode->hFile))->h = INVALID_HANDLE_VALUE; pShmNode->pNext = winShmNodeList; winShmNodeList = pShmNode; if( sqlite3GlobalConfig.bCoreMutex ){ pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( pShmNode->mutex==0 ){ rc = SQLITE_IOERR_NOMEM_BKPT; goto shm_open_err; } } if( 0==sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){ inFlags |= SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE; }else{ inFlags |= SQLITE_OPEN_READONLY; } rc = winOpen(pDbFd->pVfs, pShmNode->zFilename, (sqlite3_file*)&pShmNode->hFile, inFlags, &outFlags); if( rc!=SQLITE_OK ){ rc = winLogError(rc, osGetLastError(), "winOpenShm", pShmNode->zFilename); goto shm_open_err; } if( outFlags==SQLITE_OPEN_READONLY ) pShmNode->isReadonly = 1; rc = winLockSharedMemory(pShmNode); if( rc!=SQLITE_OK && rc!=SQLITE_READONLY_CANTINIT ) goto shm_open_err; } /* Make the new connection a child of the winShmNode */ p->pShmNode = pShmNode; #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) p->id = pShmNode->nextShmId++; #endif pShmNode->nRef++; pDbFd->pShm = p; winShmLeaveMutex(); /* The reference count on pShmNode has already been incremented under ** the cover of the winShmEnterMutex() mutex and the pointer from the ** new (struct winShm) object to the pShmNode has been set. All that is ** left to do is to link the new object into the linked list starting ** at pShmNode->pFirst. This must be done while holding the pShmNode->mutex ** mutex. */ sqlite3_mutex_enter(pShmNode->mutex); p->pNext = pShmNode->pFirst; pShmNode->pFirst = p; sqlite3_mutex_leave(pShmNode->mutex); return rc; /* Jump here on any error */ shm_open_err: winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); winShmPurge(pDbFd->pVfs, 0); /* This call frees pShmNode if required */ sqlite3_free(p); sqlite3_free(pNew); winShmLeaveMutex(); return rc; } /* ** Close a connection to shared-memory. Delete the underlying ** storage if deleteFlag is true. */ static int winShmUnmap( sqlite3_file *fd, /* Database holding shared memory */ int deleteFlag /* Delete after closing if true */ ){ winFile *pDbFd; /* Database holding shared-memory */ winShm *p; /* The connection to be closed */ winShmNode *pShmNode; /* The underlying shared-memory file */ winShm **pp; /* For looping over sibling connections */ pDbFd = (winFile*)fd; p = pDbFd->pShm; if( p==0 ) return SQLITE_OK; pShmNode = p->pShmNode; /* Remove connection p from the set of connections associated ** with pShmNode */ sqlite3_mutex_enter(pShmNode->mutex); for(pp=&pShmNode->pFirst; (*pp)!=p; pp = &(*pp)->pNext){} *pp = p->pNext; /* Free the connection p */ sqlite3_free(p); pDbFd->pShm = 0; sqlite3_mutex_leave(pShmNode->mutex); /* If pShmNode->nRef has reached 0, then close the underlying ** shared-memory file, too */ winShmEnterMutex(); assert( pShmNode->nRef>0 ); pShmNode->nRef--; if( pShmNode->nRef==0 ){ winShmPurge(pDbFd->pVfs, deleteFlag); } winShmLeaveMutex(); return SQLITE_OK; } /* ** Change the lock state for a shared-memory segment. */ static int winShmLock( sqlite3_file *fd, /* Database file holding the shared memory */ int ofst, /* First lock to acquire or release */ int n, /* Number of locks to acquire or release */ int flags /* What to do with the lock */ ){ winFile *pDbFd = (winFile*)fd; /* Connection holding shared memory */ winShm *p = pDbFd->pShm; /* The shared memory being locked */ winShm *pX; /* For looping over all siblings */ winShmNode *pShmNode = p->pShmNode; int rc = SQLITE_OK; /* Result code */ u16 mask; /* Mask of locks to take or release */ assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK ); assert( n>=1 ); assert( flags==(SQLITE_SHM_LOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE) ); assert( n==1 || (flags & SQLITE_SHM_EXCLUSIVE)!=0 ); mask = (u16)((1U<<(ofst+n)) - (1U<1 || mask==(1<mutex); if( flags & SQLITE_SHM_UNLOCK ){ u16 allMask = 0; /* Mask of locks held by siblings */ /* See if any siblings hold this same lock */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( pX==p ) continue; assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 ); allMask |= pX->sharedMask; } /* Unlock the system-level locks */ if( (mask & allMask)==0 ){ rc = winShmSystemLock(pShmNode, WINSHM_UNLCK, ofst+WIN_SHM_BASE, n); }else{ rc = SQLITE_OK; } /* Undo the local locks */ if( rc==SQLITE_OK ){ p->exclMask &= ~mask; p->sharedMask &= ~mask; } }else if( flags & SQLITE_SHM_SHARED ){ u16 allShared = 0; /* Union of locks held by connections other than "p" */ /* Find out which shared locks are already held by sibling connections. ** If any sibling already holds an exclusive lock, go ahead and return ** SQLITE_BUSY. */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( (pX->exclMask & mask)!=0 ){ rc = SQLITE_BUSY; break; } allShared |= pX->sharedMask; } /* Get shared locks at the system level, if necessary */ if( rc==SQLITE_OK ){ if( (allShared & mask)==0 ){ rc = winShmSystemLock(pShmNode, WINSHM_RDLCK, ofst+WIN_SHM_BASE, n); }else{ rc = SQLITE_OK; } } /* Get the local shared locks */ if( rc==SQLITE_OK ){ p->sharedMask |= mask; } }else{ /* Make sure no sibling connections hold locks that will block this ** lock. If any do, return SQLITE_BUSY right away. */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( (pX->exclMask & mask)!=0 || (pX->sharedMask & mask)!=0 ){ rc = SQLITE_BUSY; break; } } /* Get the exclusive locks at the system level. Then if successful ** also mark the local connection as being locked. */ if( rc==SQLITE_OK ){ rc = winShmSystemLock(pShmNode, WINSHM_WRLCK, ofst+WIN_SHM_BASE, n); if( rc==SQLITE_OK ){ assert( (p->sharedMask & mask)==0 ); p->exclMask |= mask; } } } sqlite3_mutex_leave(pShmNode->mutex); OSTRACE(("SHM-LOCK pid=%lu, id=%d, sharedMask=%03x, exclMask=%03x, rc=%s\n", osGetCurrentProcessId(), p->id, p->sharedMask, p->exclMask, sqlite3ErrName(rc))); return rc; } /* ** Implement a memory barrier or memory fence on shared memory. ** ** All loads and stores begun before the barrier must complete before ** any load or store begun after the barrier. */ static void winShmBarrier( sqlite3_file *fd /* Database holding the shared memory */ ){ UNUSED_PARAMETER(fd); sqlite3MemoryBarrier(); /* compiler-defined memory barrier */ winShmEnterMutex(); /* Also mutex, for redundancy */ winShmLeaveMutex(); } /* ** This function is called to obtain a pointer to region iRegion of the ** shared-memory associated with the database file fd. Shared-memory regions ** are numbered starting from zero. Each shared-memory region is szRegion ** bytes in size. ** ** If an error occurs, an error code is returned and *pp is set to NULL. ** ** Otherwise, if the isWrite parameter is 0 and the requested shared-memory ** region has not been allocated (by any client, including one running in a ** separate process), then *pp is set to NULL and SQLITE_OK returned. If ** isWrite is non-zero and the requested shared-memory region has not yet ** been allocated, it is allocated by this function. ** ** If the shared-memory region has already been allocated or is allocated by ** this call as described above, then it is mapped into this processes ** address space (if it is not already), *pp is set to point to the mapped ** memory and SQLITE_OK returned. */ static int winShmMap( sqlite3_file *fd, /* Handle open on database file */ int iRegion, /* Region to retrieve */ int szRegion, /* Size of regions */ int isWrite, /* True to extend file if necessary */ void volatile **pp /* OUT: Mapped memory */ ){ winFile *pDbFd = (winFile*)fd; winShm *pShm = pDbFd->pShm; winShmNode *pShmNode; DWORD protect = PAGE_READWRITE; DWORD flags = FILE_MAP_WRITE | FILE_MAP_READ; int rc = SQLITE_OK; if( !pShm ){ rc = winOpenSharedMemory(pDbFd); if( rc!=SQLITE_OK ) return rc; pShm = pDbFd->pShm; assert( pShm!=0 ); } pShmNode = pShm->pShmNode; sqlite3_mutex_enter(pShmNode->mutex); if( pShmNode->isUnlocked ){ rc = winLockSharedMemory(pShmNode); if( rc!=SQLITE_OK ) goto shmpage_out; pShmNode->isUnlocked = 0; } assert( szRegion==pShmNode->szRegion || pShmNode->nRegion==0 ); if( pShmNode->nRegion<=iRegion ){ struct ShmRegion *apNew; /* New aRegion[] array */ int nByte = (iRegion+1)*szRegion; /* Minimum required file size */ sqlite3_int64 sz; /* Current size of wal-index file */ pShmNode->szRegion = szRegion; /* The requested region is not mapped into this processes address space. ** Check to see if it has been allocated (i.e. if the wal-index file is ** large enough to contain the requested region). */ rc = winFileSize((sqlite3_file *)&pShmNode->hFile, &sz); if( rc!=SQLITE_OK ){ rc = winLogError(SQLITE_IOERR_SHMSIZE, osGetLastError(), "winShmMap1", pDbFd->zPath); goto shmpage_out; } if( szhFile, nByte); if( rc!=SQLITE_OK ){ rc = winLogError(SQLITE_IOERR_SHMSIZE, osGetLastError(), "winShmMap2", pDbFd->zPath); goto shmpage_out; } } /* Map the requested memory region into this processes address space. */ apNew = (struct ShmRegion *)sqlite3_realloc64( pShmNode->aRegion, (iRegion+1)*sizeof(apNew[0]) ); if( !apNew ){ rc = SQLITE_IOERR_NOMEM_BKPT; goto shmpage_out; } pShmNode->aRegion = apNew; if( pShmNode->isReadonly ){ protect = PAGE_READONLY; flags = FILE_MAP_READ; } while( pShmNode->nRegion<=iRegion ){ HANDLE hMap = NULL; /* file-mapping handle */ void *pMap = 0; /* Mapped memory region */ #if SQLITE_OS_WINRT hMap = osCreateFileMappingFromApp(pShmNode->hFile.h, NULL, protect, nByte, NULL ); #elif defined(SQLITE_WIN32_HAS_WIDE) hMap = osCreateFileMappingW(pShmNode->hFile.h, NULL, protect, 0, nByte, NULL ); #elif defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_CREATEFILEMAPPINGA hMap = osCreateFileMappingA(pShmNode->hFile.h, NULL, protect, 0, nByte, NULL ); #endif OSTRACE(("SHM-MAP-CREATE pid=%lu, region=%d, size=%d, rc=%s\n", osGetCurrentProcessId(), pShmNode->nRegion, nByte, hMap ? "ok" : "failed")); if( hMap ){ int iOffset = pShmNode->nRegion*szRegion; int iOffsetShift = iOffset % winSysInfo.dwAllocationGranularity; #if SQLITE_OS_WINRT pMap = osMapViewOfFileFromApp(hMap, flags, iOffset - iOffsetShift, szRegion + iOffsetShift ); #else pMap = osMapViewOfFile(hMap, flags, 0, iOffset - iOffsetShift, szRegion + iOffsetShift ); #endif OSTRACE(("SHM-MAP-MAP pid=%lu, region=%d, offset=%d, size=%d, rc=%s\n", osGetCurrentProcessId(), pShmNode->nRegion, iOffset, szRegion, pMap ? "ok" : "failed")); } if( !pMap ){ pShmNode->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_SHMMAP, pShmNode->lastErrno, "winShmMap3", pDbFd->zPath); if( hMap ) osCloseHandle(hMap); goto shmpage_out; } pShmNode->aRegion[pShmNode->nRegion].pMap = pMap; pShmNode->aRegion[pShmNode->nRegion].hMap = hMap; pShmNode->nRegion++; } } shmpage_out: if( pShmNode->nRegion>iRegion ){ int iOffset = iRegion*szRegion; int iOffsetShift = iOffset % winSysInfo.dwAllocationGranularity; char *p = (char *)pShmNode->aRegion[iRegion].pMap; *pp = (void *)&p[iOffsetShift]; }else{ *pp = 0; } if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY; sqlite3_mutex_leave(pShmNode->mutex); return rc; } #else # define winShmMap 0 # define winShmLock 0 # define winShmBarrier 0 # define winShmUnmap 0 #endif /* #ifndef SQLITE_OMIT_WAL */ /* ** Cleans up the mapped region of the specified file, if any. */ #if SQLITE_MAX_MMAP_SIZE>0 static int winUnmapfile(winFile *pFile){ assert( pFile!=0 ); OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, pMapRegion=%p, " "mmapSize=%lld, mmapSizeMax=%lld\n", osGetCurrentProcessId(), pFile, pFile->hMap, pFile->pMapRegion, pFile->mmapSize, pFile->mmapSizeMax)); if( pFile->pMapRegion ){ if( !osUnmapViewOfFile(pFile->pMapRegion) ){ pFile->lastErrno = osGetLastError(); OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, pMapRegion=%p, " "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, pFile->pMapRegion)); return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, "winUnmapfile1", pFile->zPath); } pFile->pMapRegion = 0; pFile->mmapSize = 0; } if( pFile->hMap!=NULL ){ if( !osCloseHandle(pFile->hMap) ){ pFile->lastErrno = osGetLastError(); OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, pFile->hMap)); return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, "winUnmapfile2", pFile->zPath); } pFile->hMap = NULL; } OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile)); return SQLITE_OK; } /* ** Memory map or remap the file opened by file-descriptor pFd (if the file ** is already mapped, the existing mapping is replaced by the new). Or, if ** there already exists a mapping for this file, and there are still ** outstanding xFetch() references to it, this function is a no-op. ** ** If parameter nByte is non-negative, then it is the requested size of ** the mapping to create. Otherwise, if nByte is less than zero, then the ** requested size is the size of the file on disk. The actual size of the ** created mapping is either the requested size or the value configured ** using SQLITE_FCNTL_MMAP_SIZE, whichever is smaller. ** ** SQLITE_OK is returned if no error occurs (even if the mapping is not ** recreated as a result of outstanding references) or an SQLite error ** code otherwise. */ static int winMapfile(winFile *pFd, sqlite3_int64 nByte){ sqlite3_int64 nMap = nByte; int rc; assert( nMap>=0 || pFd->nFetchOut==0 ); OSTRACE(("MAP-FILE pid=%lu, pFile=%p, size=%lld\n", osGetCurrentProcessId(), pFd, nByte)); if( pFd->nFetchOut>0 ) return SQLITE_OK; if( nMap<0 ){ rc = winFileSize((sqlite3_file*)pFd, &nMap); if( rc ){ OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_IOERR_FSTAT\n", osGetCurrentProcessId(), pFd)); return SQLITE_IOERR_FSTAT; } } if( nMap>pFd->mmapSizeMax ){ nMap = pFd->mmapSizeMax; } nMap &= ~(sqlite3_int64)(winSysInfo.dwPageSize - 1); if( nMap==0 && pFd->mmapSize>0 ){ winUnmapfile(pFd); } if( nMap!=pFd->mmapSize ){ void *pNew = 0; DWORD protect = PAGE_READONLY; DWORD flags = FILE_MAP_READ; winUnmapfile(pFd); #ifdef SQLITE_MMAP_READWRITE if( (pFd->ctrlFlags & WINFILE_RDONLY)==0 ){ protect = PAGE_READWRITE; flags |= FILE_MAP_WRITE; } #endif #if SQLITE_OS_WINRT pFd->hMap = osCreateFileMappingFromApp(pFd->h, NULL, protect, nMap, NULL); #elif defined(SQLITE_WIN32_HAS_WIDE) pFd->hMap = osCreateFileMappingW(pFd->h, NULL, protect, (DWORD)((nMap>>32) & 0xffffffff), (DWORD)(nMap & 0xffffffff), NULL); #elif defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_CREATEFILEMAPPINGA pFd->hMap = osCreateFileMappingA(pFd->h, NULL, protect, (DWORD)((nMap>>32) & 0xffffffff), (DWORD)(nMap & 0xffffffff), NULL); #endif if( pFd->hMap==NULL ){ pFd->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_MMAP, pFd->lastErrno, "winMapfile1", pFd->zPath); /* Log the error, but continue normal operation using xRead/xWrite */ OSTRACE(("MAP-FILE-CREATE pid=%lu, pFile=%p, rc=%s\n", osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); return SQLITE_OK; } assert( (nMap % winSysInfo.dwPageSize)==0 ); assert( sizeof(SIZE_T)==sizeof(sqlite3_int64) || nMap<=0xffffffff ); #if SQLITE_OS_WINRT pNew = osMapViewOfFileFromApp(pFd->hMap, flags, 0, (SIZE_T)nMap); #else pNew = osMapViewOfFile(pFd->hMap, flags, 0, 0, (SIZE_T)nMap); #endif if( pNew==NULL ){ osCloseHandle(pFd->hMap); pFd->hMap = NULL; pFd->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_MMAP, pFd->lastErrno, "winMapfile2", pFd->zPath); /* Log the error, but continue normal operation using xRead/xWrite */ OSTRACE(("MAP-FILE-MAP pid=%lu, pFile=%p, rc=%s\n", osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); return SQLITE_OK; } pFd->pMapRegion = pNew; pFd->mmapSize = nMap; } OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFd)); return SQLITE_OK; } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* ** If possible, return a pointer to a mapping of file fd starting at offset ** iOff. The mapping must be valid for at least nAmt bytes. ** ** If such a pointer can be obtained, store it in *pp and return SQLITE_OK. ** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK. ** Finally, if an error does occur, return an SQLite error code. The final ** value of *pp is undefined in this case. ** ** If this function does return a pointer, the caller must eventually ** release the reference by calling winUnfetch(). */ static int winFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){ #if SQLITE_MAX_MMAP_SIZE>0 winFile *pFd = (winFile*)fd; /* The underlying database file */ #endif *pp = 0; OSTRACE(("FETCH pid=%lu, pFile=%p, offset=%lld, amount=%d, pp=%p\n", osGetCurrentProcessId(), fd, iOff, nAmt, pp)); #if SQLITE_MAX_MMAP_SIZE>0 if( pFd->mmapSizeMax>0 ){ if( pFd->pMapRegion==0 ){ int rc = winMapfile(pFd, -1); if( rc!=SQLITE_OK ){ OSTRACE(("FETCH pid=%lu, pFile=%p, rc=%s\n", osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); return rc; } } if( pFd->mmapSize >= iOff+nAmt ){ assert( pFd->pMapRegion!=0 ); *pp = &((u8 *)pFd->pMapRegion)[iOff]; pFd->nFetchOut++; } } #endif OSTRACE(("FETCH pid=%lu, pFile=%p, pp=%p, *pp=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), fd, pp, *pp)); return SQLITE_OK; } /* ** If the third argument is non-NULL, then this function releases a ** reference obtained by an earlier call to winFetch(). The second ** argument passed to this function must be the same as the corresponding ** argument that was passed to the winFetch() invocation. ** ** Or, if the third argument is NULL, then this function is being called ** to inform the VFS layer that, according to POSIX, any existing mapping ** may now be invalid and should be unmapped. */ static int winUnfetch(sqlite3_file *fd, i64 iOff, void *p){ #if SQLITE_MAX_MMAP_SIZE>0 winFile *pFd = (winFile*)fd; /* The underlying database file */ /* If p==0 (unmap the entire file) then there must be no outstanding ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference), ** then there must be at least one outstanding. */ assert( (p==0)==(pFd->nFetchOut==0) ); /* If p!=0, it must match the iOff value. */ assert( p==0 || p==&((u8 *)pFd->pMapRegion)[iOff] ); OSTRACE(("UNFETCH pid=%lu, pFile=%p, offset=%lld, p=%p\n", osGetCurrentProcessId(), pFd, iOff, p)); if( p ){ pFd->nFetchOut--; }else{ /* FIXME: If Windows truly always prevents truncating or deleting a ** file while a mapping is held, then the following winUnmapfile() call ** is unnecessary can be omitted - potentially improving ** performance. */ winUnmapfile(pFd); } assert( pFd->nFetchOut>=0 ); #endif OSTRACE(("UNFETCH pid=%lu, pFile=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), fd)); return SQLITE_OK; } /* ** Here ends the implementation of all sqlite3_file methods. ** ********************** End sqlite3_file Methods ******************************* ******************************************************************************/ /* ** This vector defines all the methods that can operate on an ** sqlite3_file for win32. */ static const sqlite3_io_methods winIoMethod = { 3, /* iVersion */ winClose, /* xClose */ winRead, /* xRead */ winWrite, /* xWrite */ winTruncate, /* xTruncate */ winSync, /* xSync */ winFileSize, /* xFileSize */ winLock, /* xLock */ winUnlock, /* xUnlock */ winCheckReservedLock, /* xCheckReservedLock */ winFileControl, /* xFileControl */ winSectorSize, /* xSectorSize */ winDeviceCharacteristics, /* xDeviceCharacteristics */ winShmMap, /* xShmMap */ winShmLock, /* xShmLock */ winShmBarrier, /* xShmBarrier */ winShmUnmap, /* xShmUnmap */ winFetch, /* xFetch */ winUnfetch /* xUnfetch */ }; /* ** This vector defines all the methods that can operate on an ** sqlite3_file for win32 without performing any locking. */ static const sqlite3_io_methods winIoNolockMethod = { 3, /* iVersion */ winClose, /* xClose */ winRead, /* xRead */ winWrite, /* xWrite */ winTruncate, /* xTruncate */ winSync, /* xSync */ winFileSize, /* xFileSize */ winNolockLock, /* xLock */ winNolockUnlock, /* xUnlock */ winNolockCheckReservedLock, /* xCheckReservedLock */ winFileControl, /* xFileControl */ winSectorSize, /* xSectorSize */ winDeviceCharacteristics, /* xDeviceCharacteristics */ winShmMap, /* xShmMap */ winShmLock, /* xShmLock */ winShmBarrier, /* xShmBarrier */ winShmUnmap, /* xShmUnmap */ winFetch, /* xFetch */ winUnfetch /* xUnfetch */ }; static winVfsAppData winAppData = { &winIoMethod, /* pMethod */ 0, /* pAppData */ 0 /* bNoLock */ }; static winVfsAppData winNolockAppData = { &winIoNolockMethod, /* pMethod */ 0, /* pAppData */ 1 /* bNoLock */ }; /**************************************************************************** **************************** sqlite3_vfs methods **************************** ** ** This division contains the implementation of methods on the ** sqlite3_vfs object. */ #if defined(__CYGWIN__) /* ** Convert a filename from whatever the underlying operating system ** supports for filenames into UTF-8. Space to hold the result is ** obtained from malloc and must be freed by the calling function. */ static char *winConvertToUtf8Filename(const void *zFilename){ char *zConverted = 0; if( osIsNT() ){ zConverted = winUnicodeToUtf8(zFilename); } #ifdef SQLITE_WIN32_HAS_ANSI else{ zConverted = winMbcsToUtf8(zFilename, osAreFileApisANSI()); } #endif /* caller will handle out of memory */ return zConverted; } #endif /* ** Convert a UTF-8 filename into whatever form the underlying ** operating system wants filenames in. Space to hold the result ** is obtained from malloc and must be freed by the calling ** function. */ static void *winConvertFromUtf8Filename(const char *zFilename){ void *zConverted = 0; if( osIsNT() ){ zConverted = winUtf8ToUnicode(zFilename); } #ifdef SQLITE_WIN32_HAS_ANSI else{ zConverted = winUtf8ToMbcs(zFilename, osAreFileApisANSI()); } #endif /* caller will handle out of memory */ return zConverted; } /* ** This function returns non-zero if the specified UTF-8 string buffer ** ends with a directory separator character or one was successfully ** added to it. */ static int winMakeEndInDirSep(int nBuf, char *zBuf){ if( zBuf ){ int nLen = sqlite3Strlen30(zBuf); if( nLen>0 ){ if( winIsDirSep(zBuf[nLen-1]) ){ return 1; }else if( nLen+1mxPathname; nBuf = nMax + 2; zBuf = sqlite3MallocZero( nBuf ); if( !zBuf ){ OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n")); return SQLITE_IOERR_NOMEM_BKPT; } /* Figure out the effective temporary directory. First, check if one ** has been explicitly set by the application; otherwise, use the one ** configured by the operating system. */ nDir = nMax - (nPre + 15); assert( nDir>0 ); if( sqlite3_temp_directory ){ int nDirLen = sqlite3Strlen30(sqlite3_temp_directory); if( nDirLen>0 ){ if( !winIsDirSep(sqlite3_temp_directory[nDirLen-1]) ){ nDirLen++; } if( nDirLen>nDir ){ sqlite3_free(zBuf); OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n")); return winLogError(SQLITE_ERROR, 0, "winGetTempname1", 0); } sqlite3_snprintf(nMax, zBuf, "%s", sqlite3_temp_directory); } } #if defined(__CYGWIN__) else{ static const char *azDirs[] = { 0, /* getenv("SQLITE_TMPDIR") */ 0, /* getenv("TMPDIR") */ 0, /* getenv("TMP") */ 0, /* getenv("TEMP") */ 0, /* getenv("USERPROFILE") */ "/var/tmp", "/usr/tmp", "/tmp", ".", 0 /* List terminator */ }; unsigned int i; const char *zDir = 0; if( !azDirs[0] ) azDirs[0] = getenv("SQLITE_TMPDIR"); if( !azDirs[1] ) azDirs[1] = getenv("TMPDIR"); if( !azDirs[2] ) azDirs[2] = getenv("TMP"); if( !azDirs[3] ) azDirs[3] = getenv("TEMP"); if( !azDirs[4] ) azDirs[4] = getenv("USERPROFILE"); for(i=0; i/etilqs_XXXXXXXXXXXXXXX\0\0" ** ** If not, return SQLITE_ERROR. The number 17 is used here in order to ** account for the space used by the 15 character random suffix and the ** two trailing NUL characters. The final directory separator character ** has already added if it was not already present. */ nLen = sqlite3Strlen30(zBuf); if( (nLen + nPre + 17) > nBuf ){ sqlite3_free(zBuf); OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n")); return winLogError(SQLITE_ERROR, 0, "winGetTempname5", 0); } sqlite3_snprintf(nBuf-16-nLen, zBuf+nLen, SQLITE_TEMP_FILE_PREFIX); j = sqlite3Strlen30(zBuf); sqlite3_randomness(15, &zBuf[j]); for(i=0; i<15; i++, j++){ zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ]; } zBuf[j] = 0; zBuf[j+1] = 0; *pzBuf = zBuf; OSTRACE(("TEMP-FILENAME name=%s, rc=SQLITE_OK\n", zBuf)); return SQLITE_OK; } /* ** Return TRUE if the named file is really a directory. Return false if ** it is something other than a directory, or if there is any kind of memory ** allocation failure. */ static int winIsDir(const void *zConverted){ DWORD attr; int rc = 0; DWORD lastErrno; if( osIsNT() ){ int cnt = 0; WIN32_FILE_ATTRIBUTE_DATA sAttrData; memset(&sAttrData, 0, sizeof(sAttrData)); while( !(rc = osGetFileAttributesExW((LPCWSTR)zConverted, GetFileExInfoStandard, &sAttrData)) && winRetryIoerr(&cnt, &lastErrno) ){} if( !rc ){ return 0; /* Invalid name? */ } attr = sAttrData.dwFileAttributes; #if SQLITE_OS_WINCE==0 }else{ attr = osGetFileAttributesA((char*)zConverted); #endif } return (attr!=INVALID_FILE_ATTRIBUTES) && (attr&FILE_ATTRIBUTE_DIRECTORY); } /* forward reference */ static int winAccess( sqlite3_vfs *pVfs, /* Not used on win32 */ const char *zFilename, /* Name of file to check */ int flags, /* Type of test to make on this file */ int *pResOut /* OUT: Result */ ); /* ** Open a file. */ static int winOpen( sqlite3_vfs *pVfs, /* Used to get maximum path length and AppData */ const char *zName, /* Name of the file (UTF-8) */ sqlite3_file *id, /* Write the SQLite file handle here */ int flags, /* Open mode flags */ int *pOutFlags /* Status return flags */ ){ HANDLE h; DWORD lastErrno = 0; DWORD dwDesiredAccess; DWORD dwShareMode; DWORD dwCreationDisposition; DWORD dwFlagsAndAttributes = 0; #if SQLITE_OS_WINCE int isTemp = 0; #endif winVfsAppData *pAppData; winFile *pFile = (winFile*)id; void *zConverted; /* Filename in OS encoding */ const char *zUtf8Name = zName; /* Filename in UTF-8 encoding */ int cnt = 0; /* If argument zPath is a NULL pointer, this function is required to open ** a temporary file. Use this buffer to store the file name in. */ char *zTmpname = 0; /* For temporary filename, if necessary. */ int rc = SQLITE_OK; /* Function Return Code */ #if !defined(NDEBUG) || SQLITE_OS_WINCE int eType = flags&0xFFFFFF00; /* Type of file to open */ #endif int isExclusive = (flags & SQLITE_OPEN_EXCLUSIVE); int isDelete = (flags & SQLITE_OPEN_DELETEONCLOSE); int isCreate = (flags & SQLITE_OPEN_CREATE); int isReadonly = (flags & SQLITE_OPEN_READONLY); int isReadWrite = (flags & SQLITE_OPEN_READWRITE); #ifndef NDEBUG int isOpenJournal = (isCreate && ( eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_WAL )); #endif OSTRACE(("OPEN name=%s, pFile=%p, flags=%x, pOutFlags=%p\n", zUtf8Name, id, flags, pOutFlags)); /* Check the following statements are true: ** ** (a) Exactly one of the READWRITE and READONLY flags must be set, and ** (b) if CREATE is set, then READWRITE must also be set, and ** (c) if EXCLUSIVE is set, then CREATE must also be set. ** (d) if DELETEONCLOSE is set, then CREATE must also be set. */ assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly)); assert(isCreate==0 || isReadWrite); assert(isExclusive==0 || isCreate); assert(isDelete==0 || isCreate); /* The main DB, main journal, WAL file and super-journal are never ** automatically deleted. Nor are they ever temporary files. */ assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_SUPER_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); /* Assert that the upper layer has set one of the "file-type" flags. */ assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL ); assert( pFile!=0 ); memset(pFile, 0, sizeof(winFile)); pFile->h = INVALID_HANDLE_VALUE; #if SQLITE_OS_WINRT if( !zUtf8Name && !sqlite3_temp_directory ){ sqlite3_log(SQLITE_ERROR, "sqlite3_temp_directory variable should be set for WinRT"); } #endif /* If the second argument to this function is NULL, generate a ** temporary file name to use */ if( !zUtf8Name ){ assert( isDelete && !isOpenJournal ); rc = winGetTempname(pVfs, &zTmpname); if( rc!=SQLITE_OK ){ OSTRACE(("OPEN name=%s, rc=%s", zUtf8Name, sqlite3ErrName(rc))); return rc; } zUtf8Name = zTmpname; } /* Database filenames are double-zero terminated if they are not ** URIs with parameters. Hence, they can always be passed into ** sqlite3_uri_parameter(). */ assert( (eType!=SQLITE_OPEN_MAIN_DB) || (flags & SQLITE_OPEN_URI) || zUtf8Name[sqlite3Strlen30(zUtf8Name)+1]==0 ); /* Convert the filename to the system encoding. */ zConverted = winConvertFromUtf8Filename(zUtf8Name); if( zConverted==0 ){ sqlite3_free(zTmpname); OSTRACE(("OPEN name=%s, rc=SQLITE_IOERR_NOMEM", zUtf8Name)); return SQLITE_IOERR_NOMEM_BKPT; } if( winIsDir(zConverted) ){ sqlite3_free(zConverted); sqlite3_free(zTmpname); OSTRACE(("OPEN name=%s, rc=SQLITE_CANTOPEN_ISDIR", zUtf8Name)); return SQLITE_CANTOPEN_ISDIR; } if( isReadWrite ){ dwDesiredAccess = GENERIC_READ | GENERIC_WRITE; }else{ dwDesiredAccess = GENERIC_READ; } /* SQLITE_OPEN_EXCLUSIVE is used to make sure that a new file is ** created. SQLite doesn't use it to indicate "exclusive access" ** as it is usually understood. */ if( isExclusive ){ /* Creates a new file, only if it does not already exist. */ /* If the file exists, it fails. */ dwCreationDisposition = CREATE_NEW; }else if( isCreate ){ /* Open existing file, or create if it doesn't exist */ dwCreationDisposition = OPEN_ALWAYS; }else{ /* Opens a file, only if it exists. */ dwCreationDisposition = OPEN_EXISTING; } if( 0==sqlite3_uri_boolean(zName, "exclusive", 0) ){ dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE; }else{ dwShareMode = 0; } if( isDelete ){ #if SQLITE_OS_WINCE dwFlagsAndAttributes = FILE_ATTRIBUTE_HIDDEN; isTemp = 1; #else dwFlagsAndAttributes = FILE_ATTRIBUTE_TEMPORARY | FILE_ATTRIBUTE_HIDDEN | FILE_FLAG_DELETE_ON_CLOSE; #endif }else{ dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL; } /* Reports from the internet are that performance is always ** better if FILE_FLAG_RANDOM_ACCESS is used. Ticket #2699. */ #if SQLITE_OS_WINCE dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS; #endif if( osIsNT() ){ #if SQLITE_OS_WINRT CREATEFILE2_EXTENDED_PARAMETERS extendedParameters; extendedParameters.dwSize = sizeof(CREATEFILE2_EXTENDED_PARAMETERS); extendedParameters.dwFileAttributes = dwFlagsAndAttributes & FILE_ATTRIBUTE_MASK; extendedParameters.dwFileFlags = dwFlagsAndAttributes & FILE_FLAG_MASK; extendedParameters.dwSecurityQosFlags = SECURITY_ANONYMOUS; extendedParameters.lpSecurityAttributes = NULL; extendedParameters.hTemplateFile = NULL; do{ h = osCreateFile2((LPCWSTR)zConverted, dwDesiredAccess, dwShareMode, dwCreationDisposition, &extendedParameters); if( h!=INVALID_HANDLE_VALUE ) break; if( isReadWrite ){ int rc2, isRO = 0; sqlite3BeginBenignMalloc(); rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO); sqlite3EndBenignMalloc(); if( rc2==SQLITE_OK && isRO ) break; } }while( winRetryIoerr(&cnt, &lastErrno) ); #else do{ h = osCreateFileW((LPCWSTR)zConverted, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); if( h!=INVALID_HANDLE_VALUE ) break; if( isReadWrite ){ int rc2, isRO = 0; sqlite3BeginBenignMalloc(); rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO); sqlite3EndBenignMalloc(); if( rc2==SQLITE_OK && isRO ) break; } }while( winRetryIoerr(&cnt, &lastErrno) ); #endif } #ifdef SQLITE_WIN32_HAS_ANSI else{ do{ h = osCreateFileA((LPCSTR)zConverted, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); if( h!=INVALID_HANDLE_VALUE ) break; if( isReadWrite ){ int rc2, isRO = 0; sqlite3BeginBenignMalloc(); rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO); sqlite3EndBenignMalloc(); if( rc2==SQLITE_OK && isRO ) break; } }while( winRetryIoerr(&cnt, &lastErrno) ); } #endif winLogIoerr(cnt, __LINE__); OSTRACE(("OPEN file=%p, name=%s, access=%lx, rc=%s\n", h, zUtf8Name, dwDesiredAccess, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok")); if( h==INVALID_HANDLE_VALUE ){ sqlite3_free(zConverted); sqlite3_free(zTmpname); if( isReadWrite && !isExclusive ){ return winOpen(pVfs, zName, id, ((flags|SQLITE_OPEN_READONLY) & ~(SQLITE_OPEN_CREATE|SQLITE_OPEN_READWRITE)), pOutFlags); }else{ pFile->lastErrno = lastErrno; winLogError(SQLITE_CANTOPEN, pFile->lastErrno, "winOpen", zUtf8Name); return SQLITE_CANTOPEN_BKPT; } } if( pOutFlags ){ if( isReadWrite ){ *pOutFlags = SQLITE_OPEN_READWRITE; }else{ *pOutFlags = SQLITE_OPEN_READONLY; } } OSTRACE(("OPEN file=%p, name=%s, access=%lx, pOutFlags=%p, *pOutFlags=%d, " "rc=%s\n", h, zUtf8Name, dwDesiredAccess, pOutFlags, pOutFlags ? *pOutFlags : 0, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok")); pAppData = (winVfsAppData*)pVfs->pAppData; #if SQLITE_OS_WINCE { if( isReadWrite && eType==SQLITE_OPEN_MAIN_DB && ((pAppData==NULL) || !pAppData->bNoLock) && (rc = winceCreateLock(zName, pFile))!=SQLITE_OK ){ osCloseHandle(h); sqlite3_free(zConverted); sqlite3_free(zTmpname); OSTRACE(("OPEN-CE-LOCK name=%s, rc=%s\n", zName, sqlite3ErrName(rc))); return rc; } } if( isTemp ){ pFile->zDeleteOnClose = zConverted; }else #endif { sqlite3_free(zConverted); } sqlite3_free(zTmpname); id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod; pFile->pVfs = pVfs; pFile->h = h; if( isReadonly ){ pFile->ctrlFlags |= WINFILE_RDONLY; } if( (flags & SQLITE_OPEN_MAIN_DB) && sqlite3_uri_boolean(zName, "psow", SQLITE_POWERSAFE_OVERWRITE) ){ pFile->ctrlFlags |= WINFILE_PSOW; } pFile->lastErrno = NO_ERROR; pFile->zPath = zName; #if SQLITE_MAX_MMAP_SIZE>0 pFile->hMap = NULL; pFile->pMapRegion = 0; pFile->mmapSize = 0; pFile->mmapSizeMax = sqlite3GlobalConfig.szMmap; #endif OpenCounter(+1); return rc; } /* ** Delete the named file. ** ** Note that Windows does not allow a file to be deleted if some other ** process has it open. Sometimes a virus scanner or indexing program ** will open a journal file shortly after it is created in order to do ** whatever it does. While this other process is holding the ** file open, we will be unable to delete it. To work around this ** problem, we delay 100 milliseconds and try to delete again. Up ** to MX_DELETION_ATTEMPTs deletion attempts are run before giving ** up and returning an error. */ static int winDelete( sqlite3_vfs *pVfs, /* Not used on win32 */ const char *zFilename, /* Name of file to delete */ int syncDir /* Not used on win32 */ ){ int cnt = 0; int rc; DWORD attr; DWORD lastErrno = 0; void *zConverted; UNUSED_PARAMETER(pVfs); UNUSED_PARAMETER(syncDir); SimulateIOError(return SQLITE_IOERR_DELETE); OSTRACE(("DELETE name=%s, syncDir=%d\n", zFilename, syncDir)); zConverted = winConvertFromUtf8Filename(zFilename); if( zConverted==0 ){ OSTRACE(("DELETE name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename)); return SQLITE_IOERR_NOMEM_BKPT; } if( osIsNT() ){ do { #if SQLITE_OS_WINRT WIN32_FILE_ATTRIBUTE_DATA sAttrData; memset(&sAttrData, 0, sizeof(sAttrData)); if ( osGetFileAttributesExW(zConverted, GetFileExInfoStandard, &sAttrData) ){ attr = sAttrData.dwFileAttributes; }else{ lastErrno = osGetLastError(); if( lastErrno==ERROR_FILE_NOT_FOUND || lastErrno==ERROR_PATH_NOT_FOUND ){ rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ }else{ rc = SQLITE_ERROR; } break; } #else attr = osGetFileAttributesW(zConverted); #endif if ( attr==INVALID_FILE_ATTRIBUTES ){ lastErrno = osGetLastError(); if( lastErrno==ERROR_FILE_NOT_FOUND || lastErrno==ERROR_PATH_NOT_FOUND ){ rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ }else{ rc = SQLITE_ERROR; } break; } if ( attr&FILE_ATTRIBUTE_DIRECTORY ){ rc = SQLITE_ERROR; /* Files only. */ break; } if ( osDeleteFileW(zConverted) ){ rc = SQLITE_OK; /* Deleted OK. */ break; } if ( !winRetryIoerr(&cnt, &lastErrno) ){ rc = SQLITE_ERROR; /* No more retries. */ break; } } while(1); } #ifdef SQLITE_WIN32_HAS_ANSI else{ do { attr = osGetFileAttributesA(zConverted); if ( attr==INVALID_FILE_ATTRIBUTES ){ lastErrno = osGetLastError(); if( lastErrno==ERROR_FILE_NOT_FOUND || lastErrno==ERROR_PATH_NOT_FOUND ){ rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ }else{ rc = SQLITE_ERROR; } break; } if ( attr&FILE_ATTRIBUTE_DIRECTORY ){ rc = SQLITE_ERROR; /* Files only. */ break; } if ( osDeleteFileA(zConverted) ){ rc = SQLITE_OK; /* Deleted OK. */ break; } if ( !winRetryIoerr(&cnt, &lastErrno) ){ rc = SQLITE_ERROR; /* No more retries. */ break; } } while(1); } #endif if( rc && rc!=SQLITE_IOERR_DELETE_NOENT ){ rc = winLogError(SQLITE_IOERR_DELETE, lastErrno, "winDelete", zFilename); }else{ winLogIoerr(cnt, __LINE__); } sqlite3_free(zConverted); OSTRACE(("DELETE name=%s, rc=%s\n", zFilename, sqlite3ErrName(rc))); return rc; } /* ** Check the existence and status of a file. */ static int winAccess( sqlite3_vfs *pVfs, /* Not used on win32 */ const char *zFilename, /* Name of file to check */ int flags, /* Type of test to make on this file */ int *pResOut /* OUT: Result */ ){ DWORD attr; int rc = 0; DWORD lastErrno = 0; void *zConverted; UNUSED_PARAMETER(pVfs); SimulateIOError( return SQLITE_IOERR_ACCESS; ); OSTRACE(("ACCESS name=%s, flags=%x, pResOut=%p\n", zFilename, flags, pResOut)); zConverted = winConvertFromUtf8Filename(zFilename); if( zConverted==0 ){ OSTRACE(("ACCESS name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename)); return SQLITE_IOERR_NOMEM_BKPT; } if( osIsNT() ){ int cnt = 0; WIN32_FILE_ATTRIBUTE_DATA sAttrData; memset(&sAttrData, 0, sizeof(sAttrData)); while( !(rc = osGetFileAttributesExW((LPCWSTR)zConverted, GetFileExInfoStandard, &sAttrData)) && winRetryIoerr(&cnt, &lastErrno) ){} if( rc ){ /* For an SQLITE_ACCESS_EXISTS query, treat a zero-length file ** as if it does not exist. */ if( flags==SQLITE_ACCESS_EXISTS && sAttrData.nFileSizeHigh==0 && sAttrData.nFileSizeLow==0 ){ attr = INVALID_FILE_ATTRIBUTES; }else{ attr = sAttrData.dwFileAttributes; } }else{ winLogIoerr(cnt, __LINE__); if( lastErrno!=ERROR_FILE_NOT_FOUND && lastErrno!=ERROR_PATH_NOT_FOUND ){ sqlite3_free(zConverted); return winLogError(SQLITE_IOERR_ACCESS, lastErrno, "winAccess", zFilename); }else{ attr = INVALID_FILE_ATTRIBUTES; } } } #ifdef SQLITE_WIN32_HAS_ANSI else{ attr = osGetFileAttributesA((char*)zConverted); } #endif sqlite3_free(zConverted); switch( flags ){ case SQLITE_ACCESS_READ: case SQLITE_ACCESS_EXISTS: rc = attr!=INVALID_FILE_ATTRIBUTES; break; case SQLITE_ACCESS_READWRITE: rc = attr!=INVALID_FILE_ATTRIBUTES && (attr & FILE_ATTRIBUTE_READONLY)==0; break; default: assert(!"Invalid flags argument"); } *pResOut = rc; OSTRACE(("ACCESS name=%s, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n", zFilename, pResOut, *pResOut)); return SQLITE_OK; } /* ** Returns non-zero if the specified path name starts with the "long path" ** prefix. */ static BOOL winIsLongPathPrefix( const char *zPathname ){ return ( zPathname[0]=='\\' && zPathname[1]=='\\' && zPathname[2]=='?' && zPathname[3]=='\\' ); } /* ** Returns non-zero if the specified path name starts with a drive letter ** followed by a colon character. */ static BOOL winIsDriveLetterAndColon( const char *zPathname ){ return ( sqlite3Isalpha(zPathname[0]) && zPathname[1]==':' ); } /* ** Returns non-zero if the specified path name should be used verbatim. If ** non-zero is returned from this function, the calling function must simply ** use the provided path name verbatim -OR- resolve it into a full path name ** using the GetFullPathName Win32 API function (if available). */ static BOOL winIsVerbatimPathname( const char *zPathname ){ /* ** If the path name starts with a forward slash or a backslash, it is either ** a legal UNC name, a volume relative path, or an absolute path name in the ** "Unix" format on Windows. There is no easy way to differentiate between ** the final two cases; therefore, we return the safer return value of TRUE ** so that callers of this function will simply use it verbatim. */ if ( winIsDirSep(zPathname[0]) ){ return TRUE; } /* ** If the path name starts with a letter and a colon it is either a volume ** relative path or an absolute path. Callers of this function must not ** attempt to treat it as a relative path name (i.e. they should simply use ** it verbatim). */ if ( winIsDriveLetterAndColon(zPathname) ){ return TRUE; } /* ** If we get to this point, the path name should almost certainly be a purely ** relative one (i.e. not a UNC name, not absolute, and not volume relative). */ return FALSE; } /* ** Turn a relative pathname into a full pathname. Write the full ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname ** bytes in size. */ static int winFullPathname( sqlite3_vfs *pVfs, /* Pointer to vfs object */ const char *zRelative, /* Possibly relative input path */ int nFull, /* Size of output buffer in bytes */ char *zFull /* Output buffer */ ){ #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__) DWORD nByte; void *zConverted; char *zOut; #endif /* If this path name begins with "/X:" or "\\?\", where "X" is any ** alphabetic character, discard the initial "/" from the pathname. */ if( zRelative[0]=='/' && (winIsDriveLetterAndColon(zRelative+1) || winIsLongPathPrefix(zRelative+1)) ){ zRelative++; } #if defined(__CYGWIN__) SimulateIOError( return SQLITE_ERROR ); UNUSED_PARAMETER(nFull); assert( nFull>=pVfs->mxPathname ); if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ /* ** NOTE: We are dealing with a relative path name and the data ** directory has been set. Therefore, use it as the basis ** for converting the relative path name to an absolute ** one by prepending the data directory and a slash. */ char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); if( !zOut ){ return SQLITE_IOERR_NOMEM_BKPT; } if( cygwin_conv_path( (osIsNT() ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A) | CCP_RELATIVE, zRelative, zOut, pVfs->mxPathname+1)<0 ){ sqlite3_free(zOut); return winLogError(SQLITE_CANTOPEN_CONVPATH, (DWORD)errno, "winFullPathname1", zRelative); }else{ char *zUtf8 = winConvertToUtf8Filename(zOut); if( !zUtf8 ){ sqlite3_free(zOut); return SQLITE_IOERR_NOMEM_BKPT; } sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", sqlite3_data_directory, winGetDirSep(), zUtf8); sqlite3_free(zUtf8); sqlite3_free(zOut); } }else{ char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); if( !zOut ){ return SQLITE_IOERR_NOMEM_BKPT; } if( cygwin_conv_path( (osIsNT() ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A), zRelative, zOut, pVfs->mxPathname+1)<0 ){ sqlite3_free(zOut); return winLogError(SQLITE_CANTOPEN_CONVPATH, (DWORD)errno, "winFullPathname2", zRelative); }else{ char *zUtf8 = winConvertToUtf8Filename(zOut); if( !zUtf8 ){ sqlite3_free(zOut); return SQLITE_IOERR_NOMEM_BKPT; } sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zUtf8); sqlite3_free(zUtf8); sqlite3_free(zOut); } } return SQLITE_OK; #endif #if (SQLITE_OS_WINCE || SQLITE_OS_WINRT) && !defined(__CYGWIN__) SimulateIOError( return SQLITE_ERROR ); /* WinCE has no concept of a relative pathname, or so I am told. */ /* WinRT has no way to convert a relative path to an absolute one. */ if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ /* ** NOTE: We are dealing with a relative path name and the data ** directory has been set. Therefore, use it as the basis ** for converting the relative path name to an absolute ** one by prepending the data directory and a backslash. */ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", sqlite3_data_directory, winGetDirSep(), zRelative); }else{ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zRelative); } return SQLITE_OK; #endif #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__) /* It's odd to simulate an io-error here, but really this is just ** using the io-error infrastructure to test that SQLite handles this ** function failing. This function could fail if, for example, the ** current working directory has been unlinked. */ SimulateIOError( return SQLITE_ERROR ); if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ /* ** NOTE: We are dealing with a relative path name and the data ** directory has been set. Therefore, use it as the basis ** for converting the relative path name to an absolute ** one by prepending the data directory and a backslash. */ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", sqlite3_data_directory, winGetDirSep(), zRelative); return SQLITE_OK; } zConverted = winConvertFromUtf8Filename(zRelative); if( zConverted==0 ){ return SQLITE_IOERR_NOMEM_BKPT; } if( osIsNT() ){ LPWSTR zTemp; nByte = osGetFullPathNameW((LPCWSTR)zConverted, 0, 0, 0); if( nByte==0 ){ sqlite3_free(zConverted); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname1", zRelative); } nByte += 3; zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) ); if( zTemp==0 ){ sqlite3_free(zConverted); return SQLITE_IOERR_NOMEM_BKPT; } nByte = osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0); if( nByte==0 ){ sqlite3_free(zConverted); sqlite3_free(zTemp); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname2", zRelative); } sqlite3_free(zConverted); zOut = winUnicodeToUtf8(zTemp); sqlite3_free(zTemp); } #ifdef SQLITE_WIN32_HAS_ANSI else{ char *zTemp; nByte = osGetFullPathNameA((char*)zConverted, 0, 0, 0); if( nByte==0 ){ sqlite3_free(zConverted); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname3", zRelative); } nByte += 3; zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) ); if( zTemp==0 ){ sqlite3_free(zConverted); return SQLITE_IOERR_NOMEM_BKPT; } nByte = osGetFullPathNameA((char*)zConverted, nByte, zTemp, 0); if( nByte==0 ){ sqlite3_free(zConverted); sqlite3_free(zTemp); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname4", zRelative); } sqlite3_free(zConverted); zOut = winMbcsToUtf8(zTemp, osAreFileApisANSI()); sqlite3_free(zTemp); } #endif if( zOut ){ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut); sqlite3_free(zOut); return SQLITE_OK; }else{ return SQLITE_IOERR_NOMEM_BKPT; } #endif } #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** Interfaces for opening a shared library, finding entry points ** within the shared library, and closing the shared library. */ static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){ HANDLE h; #if defined(__CYGWIN__) int nFull = pVfs->mxPathname+1; char *zFull = sqlite3MallocZero( nFull ); void *zConverted = 0; if( zFull==0 ){ OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); return 0; } if( winFullPathname(pVfs, zFilename, nFull, zFull)!=SQLITE_OK ){ sqlite3_free(zFull); OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); return 0; } zConverted = winConvertFromUtf8Filename(zFull); sqlite3_free(zFull); #else void *zConverted = winConvertFromUtf8Filename(zFilename); UNUSED_PARAMETER(pVfs); #endif if( zConverted==0 ){ OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); return 0; } if( osIsNT() ){ #if SQLITE_OS_WINRT h = osLoadPackagedLibrary((LPCWSTR)zConverted, 0); #else h = osLoadLibraryW((LPCWSTR)zConverted); #endif } #ifdef SQLITE_WIN32_HAS_ANSI else{ h = osLoadLibraryA((char*)zConverted); } #endif OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)h)); sqlite3_free(zConverted); return (void*)h; } static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ UNUSED_PARAMETER(pVfs); winGetLastErrorMsg(osGetLastError(), nBuf, zBufOut); } static void (*winDlSym(sqlite3_vfs *pVfs,void *pH,const char *zSym))(void){ FARPROC proc; UNUSED_PARAMETER(pVfs); proc = osGetProcAddressA((HANDLE)pH, zSym); OSTRACE(("DLSYM handle=%p, symbol=%s, address=%p\n", (void*)pH, zSym, (void*)proc)); return (void(*)(void))proc; } static void winDlClose(sqlite3_vfs *pVfs, void *pHandle){ UNUSED_PARAMETER(pVfs); osFreeLibrary((HANDLE)pHandle); OSTRACE(("DLCLOSE handle=%p\n", (void*)pHandle)); } #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */ #define winDlOpen 0 #define winDlError 0 #define winDlSym 0 #define winDlClose 0 #endif /* State information for the randomness gatherer. */ typedef struct EntropyGatherer EntropyGatherer; struct EntropyGatherer { unsigned char *a; /* Gather entropy into this buffer */ int na; /* Size of a[] in bytes */ int i; /* XOR next input into a[i] */ int nXor; /* Number of XOR operations done */ }; #if !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) /* Mix sz bytes of entropy into p. */ static void xorMemory(EntropyGatherer *p, unsigned char *x, int sz){ int j, k; for(j=0, k=p->i; ja[k++] ^= x[j]; if( k>=p->na ) k = 0; } p->i = k; p->nXor += sz; } #endif /* !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) */ /* ** Write up to nBuf bytes of randomness into zBuf. */ static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ #if defined(SQLITE_TEST) || defined(SQLITE_OMIT_RANDOMNESS) UNUSED_PARAMETER(pVfs); memset(zBuf, 0, nBuf); return nBuf; #else EntropyGatherer e; UNUSED_PARAMETER(pVfs); memset(zBuf, 0, nBuf); e.a = (unsigned char*)zBuf; e.na = nBuf; e.nXor = 0; e.i = 0; { SYSTEMTIME x; osGetSystemTime(&x); xorMemory(&e, (unsigned char*)&x, sizeof(SYSTEMTIME)); } { DWORD pid = osGetCurrentProcessId(); xorMemory(&e, (unsigned char*)&pid, sizeof(DWORD)); } #if SQLITE_OS_WINRT { ULONGLONG cnt = osGetTickCount64(); xorMemory(&e, (unsigned char*)&cnt, sizeof(ULONGLONG)); } #else { DWORD cnt = osGetTickCount(); xorMemory(&e, (unsigned char*)&cnt, sizeof(DWORD)); } #endif /* SQLITE_OS_WINRT */ { LARGE_INTEGER i; osQueryPerformanceCounter(&i); xorMemory(&e, (unsigned char*)&i, sizeof(LARGE_INTEGER)); } #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID { UUID id; memset(&id, 0, sizeof(UUID)); osUuidCreate(&id); xorMemory(&e, (unsigned char*)&id, sizeof(UUID)); memset(&id, 0, sizeof(UUID)); osUuidCreateSequential(&id); xorMemory(&e, (unsigned char*)&id, sizeof(UUID)); } #endif /* !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID */ return e.nXor>nBuf ? nBuf : e.nXor; #endif /* defined(SQLITE_TEST) || defined(SQLITE_OMIT_RANDOMNESS) */ } /* ** Sleep for a little while. Return the amount of time slept. */ static int winSleep(sqlite3_vfs *pVfs, int microsec){ sqlite3_win32_sleep((microsec+999)/1000); UNUSED_PARAMETER(pVfs); return ((microsec+999)/1000)*1000; } /* ** The following variable, if set to a non-zero value, is interpreted as ** the number of seconds since 1970 and is used to set the result of ** sqlite3OsCurrentTime() during testing. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */ #endif /* ** Find the current time (in Universal Coordinated Time). Write into *piNow ** the current time and date as a Julian Day number times 86_400_000. In ** other words, write into *piNow the number of milliseconds since the Julian ** epoch of noon in Greenwich on November 24, 4714 B.C according to the ** proleptic Gregorian calendar. ** ** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date ** cannot be found. */ static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ /* FILETIME structure is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (= JD 2305813.5). */ FILETIME ft; static const sqlite3_int64 winFiletimeEpoch = 23058135*(sqlite3_int64)8640000; #ifdef SQLITE_TEST static const sqlite3_int64 unixEpoch = 24405875*(sqlite3_int64)8640000; #endif /* 2^32 - to avoid use of LL and warnings in gcc */ static const sqlite3_int64 max32BitValue = (sqlite3_int64)2000000000 + (sqlite3_int64)2000000000 + (sqlite3_int64)294967296; #if SQLITE_OS_WINCE SYSTEMTIME time; osGetSystemTime(&time); /* if SystemTimeToFileTime() fails, it returns zero. */ if (!osSystemTimeToFileTime(&time,&ft)){ return SQLITE_ERROR; } #else osGetSystemTimeAsFileTime( &ft ); #endif *piNow = winFiletimeEpoch + ((((sqlite3_int64)ft.dwHighDateTime)*max32BitValue) + (sqlite3_int64)ft.dwLowDateTime)/(sqlite3_int64)10000; #ifdef SQLITE_TEST if( sqlite3_current_time ){ *piNow = 1000*(sqlite3_int64)sqlite3_current_time + unixEpoch; } #endif UNUSED_PARAMETER(pVfs); return SQLITE_OK; } /* ** Find the current time (in Universal Coordinated Time). Write the ** current time and date as a Julian Day number into *prNow and ** return 0. Return 1 if the time and date cannot be found. */ static int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){ int rc; sqlite3_int64 i; rc = winCurrentTimeInt64(pVfs, &i); if( !rc ){ *prNow = i/86400000.0; } return rc; } /* ** The idea is that this function works like a combination of ** GetLastError() and FormatMessage() on Windows (or errno and ** strerror_r() on Unix). After an error is returned by an OS ** function, SQLite calls this function with zBuf pointing to ** a buffer of nBuf bytes. The OS layer should populate the ** buffer with a nul-terminated UTF-8 encoded error message ** describing the last IO error to have occurred within the calling ** thread. ** ** If the error message is too large for the supplied buffer, ** it should be truncated. The return value of xGetLastError ** is zero if the error message fits in the buffer, or non-zero ** otherwise (if the message was truncated). If non-zero is returned, ** then it is not necessary to include the nul-terminator character ** in the output buffer. ** ** Not supplying an error message will have no adverse effect ** on SQLite. It is fine to have an implementation that never ** returns an error message: ** ** int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ ** assert(zBuf[0]=='\0'); ** return 0; ** } ** ** However if an error message is supplied, it will be incorporated ** by sqlite into the error message available to the user using ** sqlite3_errmsg(), possibly making IO errors easier to debug. */ static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ DWORD e = osGetLastError(); UNUSED_PARAMETER(pVfs); if( nBuf>0 ) winGetLastErrorMsg(e, nBuf, zBuf); return e; } /* ** Initialize and deinitialize the operating system interface. */ SQLITE_API int sqlite3_os_init(void){ static sqlite3_vfs winVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32", /* zName */ &winAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #if defined(SQLITE_WIN32_HAS_WIDE) static sqlite3_vfs winLongPathVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32-longpath", /* zName */ &winAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #endif static sqlite3_vfs winNolockVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32-none", /* zName */ &winNolockAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #if defined(SQLITE_WIN32_HAS_WIDE) static sqlite3_vfs winLongPathNolockVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32-longpath-none", /* zName */ &winNolockAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #endif /* Double-check that the aSyscall[] array has been constructed ** correctly. See ticket [bb3a86e890c8e96ab] */ assert( ArraySize(aSyscall)==80 ); /* get memory map allocation granularity */ memset(&winSysInfo, 0, sizeof(SYSTEM_INFO)); #if SQLITE_OS_WINRT osGetNativeSystemInfo(&winSysInfo); #else osGetSystemInfo(&winSysInfo); #endif assert( winSysInfo.dwAllocationGranularity>0 ); assert( winSysInfo.dwPageSize>0 ); sqlite3_vfs_register(&winVfs, 1); #if defined(SQLITE_WIN32_HAS_WIDE) sqlite3_vfs_register(&winLongPathVfs, 0); #endif sqlite3_vfs_register(&winNolockVfs, 0); #if defined(SQLITE_WIN32_HAS_WIDE) sqlite3_vfs_register(&winLongPathNolockVfs, 0); #endif #ifndef SQLITE_OMIT_WAL winBigLock = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); #endif return SQLITE_OK; } SQLITE_API int sqlite3_os_end(void){ #if SQLITE_OS_WINRT if( sleepObj!=NULL ){ osCloseHandle(sleepObj); sleepObj = NULL; } #endif #ifndef SQLITE_OMIT_WAL winBigLock = 0; #endif return SQLITE_OK; } #endif /* SQLITE_OS_WIN */ /************** End of os_win.c **********************************************/ /************** Begin file memdb.c *******************************************/ /* ** 2016-09-07 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file implements an in-memory VFS. A database is held as a contiguous ** block of memory. ** ** This file also implements interface sqlite3_serialize() and ** sqlite3_deserialize(). */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_DESERIALIZE /* ** Forward declaration of objects used by this utility */ typedef struct sqlite3_vfs MemVfs; typedef struct MemFile MemFile; typedef struct MemStore MemStore; /* Access to a lower-level VFS that (might) implement dynamic loading, ** access to randomness, etc. */ #define ORIGVFS(p) ((sqlite3_vfs*)((p)->pAppData)) /* Storage for a memdb file. ** ** An memdb object can be shared or separate. Shared memdb objects can be ** used by more than one database connection. Mutexes are used by shared ** memdb objects to coordinate access. Separate memdb objects are only ** connected to a single database connection and do not require additional ** mutexes. ** ** Shared memdb objects have .zFName!=0 and .pMutex!=0. They are created ** using "file:/name?vfs=memdb". The first character of the name must be ** "/" or else the object will be a separate memdb object. All shared ** memdb objects are stored in memdb_g.apMemStore[] in an arbitrary order. ** ** Separate memdb objects are created using a name that does not begin ** with "/" or using sqlite3_deserialize(). ** ** Access rules for shared MemStore objects: ** ** * .zFName is initialized when the object is created and afterwards ** is unchanged until the object is destroyed. So it can be accessed ** at any time as long as we know the object is not being destroyed, ** which means while either the SQLITE_MUTEX_STATIC_VFS1 or ** .pMutex is held or the object is not part of memdb_g.apMemStore[]. ** ** * Can .pMutex can only be changed while holding the ** SQLITE_MUTEX_STATIC_VFS1 mutex or while the object is not part ** of memdb_g.apMemStore[]. ** ** * Other fields can only be changed while holding the .pMutex mutex ** or when the .nRef is less than zero and the object is not part of ** memdb_g.apMemStore[]. ** ** * The .aData pointer has the added requirement that it can can only ** be changed (for resizing) when nMmap is zero. ** */ struct MemStore { sqlite3_int64 sz; /* Size of the file */ sqlite3_int64 szAlloc; /* Space allocated to aData */ sqlite3_int64 szMax; /* Maximum allowed size of the file */ unsigned char *aData; /* content of the file */ sqlite3_mutex *pMutex; /* Used by shared stores only */ int nMmap; /* Number of memory mapped pages */ unsigned mFlags; /* Flags */ int nRdLock; /* Number of readers */ int nWrLock; /* Number of writers. (Always 0 or 1) */ int nRef; /* Number of users of this MemStore */ char *zFName; /* The filename for shared stores */ }; /* An open file */ struct MemFile { sqlite3_file base; /* IO methods */ MemStore *pStore; /* The storage */ int eLock; /* Most recent lock against this file */ }; /* ** File-scope variables for holding the memdb files that are accessible ** to multiple database connections in separate threads. ** ** Must hold SQLITE_MUTEX_STATIC_VFS1 to access any part of this object. */ static struct MemFS { int nMemStore; /* Number of shared MemStore objects */ MemStore **apMemStore; /* Array of all shared MemStore objects */ } memdb_g; /* ** Methods for MemFile */ static int memdbClose(sqlite3_file*); static int memdbRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); static int memdbWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); static int memdbTruncate(sqlite3_file*, sqlite3_int64 size); static int memdbSync(sqlite3_file*, int flags); static int memdbFileSize(sqlite3_file*, sqlite3_int64 *pSize); static int memdbLock(sqlite3_file*, int); /* static int memdbCheckReservedLock(sqlite3_file*, int *pResOut);// not used */ static int memdbFileControl(sqlite3_file*, int op, void *pArg); /* static int memdbSectorSize(sqlite3_file*); // not used */ static int memdbDeviceCharacteristics(sqlite3_file*); static int memdbFetch(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); static int memdbUnfetch(sqlite3_file*, sqlite3_int64 iOfst, void *p); /* ** Methods for MemVfs */ static int memdbOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); /* static int memdbDelete(sqlite3_vfs*, const char *zName, int syncDir); */ static int memdbAccess(sqlite3_vfs*, const char *zName, int flags, int *); static int memdbFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); static void *memdbDlOpen(sqlite3_vfs*, const char *zFilename); static void memdbDlError(sqlite3_vfs*, int nByte, char *zErrMsg); static void (*memdbDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void); static void memdbDlClose(sqlite3_vfs*, void*); static int memdbRandomness(sqlite3_vfs*, int nByte, char *zOut); static int memdbSleep(sqlite3_vfs*, int microseconds); /* static int memdbCurrentTime(sqlite3_vfs*, double*); */ static int memdbGetLastError(sqlite3_vfs*, int, char *); static int memdbCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*); static sqlite3_vfs memdb_vfs = { 2, /* iVersion */ 0, /* szOsFile (set when registered) */ 1024, /* mxPathname */ 0, /* pNext */ "memdb", /* zName */ 0, /* pAppData (set when registered) */ memdbOpen, /* xOpen */ 0, /* memdbDelete, */ /* xDelete */ memdbAccess, /* xAccess */ memdbFullPathname, /* xFullPathname */ memdbDlOpen, /* xDlOpen */ memdbDlError, /* xDlError */ memdbDlSym, /* xDlSym */ memdbDlClose, /* xDlClose */ memdbRandomness, /* xRandomness */ memdbSleep, /* xSleep */ 0, /* memdbCurrentTime, */ /* xCurrentTime */ memdbGetLastError, /* xGetLastError */ memdbCurrentTimeInt64, /* xCurrentTimeInt64 */ 0, /* xSetSystemCall */ 0, /* xGetSystemCall */ 0, /* xNextSystemCall */ }; static const sqlite3_io_methods memdb_io_methods = { 3, /* iVersion */ memdbClose, /* xClose */ memdbRead, /* xRead */ memdbWrite, /* xWrite */ memdbTruncate, /* xTruncate */ memdbSync, /* xSync */ memdbFileSize, /* xFileSize */ memdbLock, /* xLock */ memdbLock, /* xUnlock - same as xLock in this case */ 0, /* memdbCheckReservedLock, */ /* xCheckReservedLock */ memdbFileControl, /* xFileControl */ 0, /* memdbSectorSize,*/ /* xSectorSize */ memdbDeviceCharacteristics, /* xDeviceCharacteristics */ 0, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ 0, /* xShmUnmap */ memdbFetch, /* xFetch */ memdbUnfetch /* xUnfetch */ }; /* ** Enter/leave the mutex on a MemStore */ #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE==0 static void memdbEnter(MemStore *p){ UNUSED_PARAMETER(p); } static void memdbLeave(MemStore *p){ UNUSED_PARAMETER(p); } #else static void memdbEnter(MemStore *p){ sqlite3_mutex_enter(p->pMutex); } static void memdbLeave(MemStore *p){ sqlite3_mutex_leave(p->pMutex); } #endif /* ** Close an memdb-file. ** Free the underlying MemStore object when its refcount drops to zero ** or less. */ static int memdbClose(sqlite3_file *pFile){ MemStore *p = ((MemFile*)pFile)->pStore; if( p->zFName ){ int i; #ifndef SQLITE_MUTEX_OMIT sqlite3_mutex *pVfsMutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); #endif sqlite3_mutex_enter(pVfsMutex); for(i=0; ALWAYS(inRef==1 ){ memdb_g.apMemStore[i] = memdb_g.apMemStore[--memdb_g.nMemStore]; if( memdb_g.nMemStore==0 ){ sqlite3_free(memdb_g.apMemStore); memdb_g.apMemStore = 0; } } break; } } sqlite3_mutex_leave(pVfsMutex); }else{ memdbEnter(p); } p->nRef--; if( p->nRef<=0 ){ if( p->mFlags & SQLITE_DESERIALIZE_FREEONCLOSE ){ sqlite3_free(p->aData); } memdbLeave(p); sqlite3_mutex_free(p->pMutex); sqlite3_free(p); }else{ memdbLeave(p); } return SQLITE_OK; } /* ** Read data from an memdb-file. */ static int memdbRead( sqlite3_file *pFile, void *zBuf, int iAmt, sqlite_int64 iOfst ){ MemStore *p = ((MemFile*)pFile)->pStore; memdbEnter(p); if( iOfst+iAmt>p->sz ){ memset(zBuf, 0, iAmt); if( iOfstsz ) memcpy(zBuf, p->aData+iOfst, p->sz - iOfst); memdbLeave(p); return SQLITE_IOERR_SHORT_READ; } memcpy(zBuf, p->aData+iOfst, iAmt); memdbLeave(p); return SQLITE_OK; } /* ** Try to enlarge the memory allocation to hold at least sz bytes */ static int memdbEnlarge(MemStore *p, sqlite3_int64 newSz){ unsigned char *pNew; if( (p->mFlags & SQLITE_DESERIALIZE_RESIZEABLE)==0 || NEVER(p->nMmap>0) ){ return SQLITE_FULL; } if( newSz>p->szMax ){ return SQLITE_FULL; } newSz *= 2; if( newSz>p->szMax ) newSz = p->szMax; pNew = sqlite3Realloc(p->aData, newSz); if( pNew==0 ) return SQLITE_IOERR_NOMEM; p->aData = pNew; p->szAlloc = newSz; return SQLITE_OK; } /* ** Write data to an memdb-file. */ static int memdbWrite( sqlite3_file *pFile, const void *z, int iAmt, sqlite_int64 iOfst ){ MemStore *p = ((MemFile*)pFile)->pStore; memdbEnter(p); if( NEVER(p->mFlags & SQLITE_DESERIALIZE_READONLY) ){ /* Can't happen: memdbLock() will return SQLITE_READONLY before ** reaching this point */ memdbLeave(p); return SQLITE_IOERR_WRITE; } if( iOfst+iAmt>p->sz ){ int rc; if( iOfst+iAmt>p->szAlloc && (rc = memdbEnlarge(p, iOfst+iAmt))!=SQLITE_OK ){ memdbLeave(p); return rc; } if( iOfst>p->sz ) memset(p->aData+p->sz, 0, iOfst-p->sz); p->sz = iOfst+iAmt; } memcpy(p->aData+iOfst, z, iAmt); memdbLeave(p); return SQLITE_OK; } /* ** Truncate an memdb-file. ** ** In rollback mode (which is always the case for memdb, as it does not ** support WAL mode) the truncate() method is only used to reduce ** the size of a file, never to increase the size. */ static int memdbTruncate(sqlite3_file *pFile, sqlite_int64 size){ MemStore *p = ((MemFile*)pFile)->pStore; int rc = SQLITE_OK; memdbEnter(p); if( size>p->sz ){ /* This can only happen with a corrupt wal mode db */ rc = SQLITE_CORRUPT; }else{ p->sz = size; } memdbLeave(p); return rc; } /* ** Sync an memdb-file. */ static int memdbSync(sqlite3_file *pFile, int flags){ UNUSED_PARAMETER(pFile); UNUSED_PARAMETER(flags); return SQLITE_OK; } /* ** Return the current file-size of an memdb-file. */ static int memdbFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ MemStore *p = ((MemFile*)pFile)->pStore; memdbEnter(p); *pSize = p->sz; memdbLeave(p); return SQLITE_OK; } /* ** Lock an memdb-file. */ static int memdbLock(sqlite3_file *pFile, int eLock){ MemFile *pThis = (MemFile*)pFile; MemStore *p = pThis->pStore; int rc = SQLITE_OK; if( eLock==pThis->eLock ) return SQLITE_OK; memdbEnter(p); if( eLock>SQLITE_LOCK_SHARED ){ if( p->mFlags & SQLITE_DESERIALIZE_READONLY ){ rc = SQLITE_READONLY; }else if( pThis->eLock<=SQLITE_LOCK_SHARED ){ if( p->nWrLock ){ rc = SQLITE_BUSY; }else{ p->nWrLock = 1; } } }else if( eLock==SQLITE_LOCK_SHARED ){ if( pThis->eLock > SQLITE_LOCK_SHARED ){ assert( p->nWrLock==1 ); p->nWrLock = 0; }else if( p->nWrLock ){ rc = SQLITE_BUSY; }else{ p->nRdLock++; } }else{ assert( eLock==SQLITE_LOCK_NONE ); if( pThis->eLock>SQLITE_LOCK_SHARED ){ assert( p->nWrLock==1 ); p->nWrLock = 0; } assert( p->nRdLock>0 ); p->nRdLock--; } if( rc==SQLITE_OK ) pThis->eLock = eLock; memdbLeave(p); return rc; } #if 0 /* ** This interface is only used for crash recovery, which does not ** occur on an in-memory database. */ static int memdbCheckReservedLock(sqlite3_file *pFile, int *pResOut){ *pResOut = 0; return SQLITE_OK; } #endif /* ** File control method. For custom operations on an memdb-file. */ static int memdbFileControl(sqlite3_file *pFile, int op, void *pArg){ MemStore *p = ((MemFile*)pFile)->pStore; int rc = SQLITE_NOTFOUND; memdbEnter(p); if( op==SQLITE_FCNTL_VFSNAME ){ *(char**)pArg = sqlite3_mprintf("memdb(%p,%lld)", p->aData, p->sz); rc = SQLITE_OK; } if( op==SQLITE_FCNTL_SIZE_LIMIT ){ sqlite3_int64 iLimit = *(sqlite3_int64*)pArg; if( iLimitsz ){ if( iLimit<0 ){ iLimit = p->szMax; }else{ iLimit = p->sz; } } p->szMax = iLimit; *(sqlite3_int64*)pArg = iLimit; rc = SQLITE_OK; } memdbLeave(p); return rc; } #if 0 /* Not used because of SQLITE_IOCAP_POWERSAFE_OVERWRITE */ /* ** Return the sector-size in bytes for an memdb-file. */ static int memdbSectorSize(sqlite3_file *pFile){ return 1024; } #endif /* ** Return the device characteristic flags supported by an memdb-file. */ static int memdbDeviceCharacteristics(sqlite3_file *pFile){ UNUSED_PARAMETER(pFile); return SQLITE_IOCAP_ATOMIC | SQLITE_IOCAP_POWERSAFE_OVERWRITE | SQLITE_IOCAP_SAFE_APPEND | SQLITE_IOCAP_SEQUENTIAL; } /* Fetch a page of a memory-mapped file */ static int memdbFetch( sqlite3_file *pFile, sqlite3_int64 iOfst, int iAmt, void **pp ){ MemStore *p = ((MemFile*)pFile)->pStore; memdbEnter(p); if( iOfst+iAmt>p->sz || (p->mFlags & SQLITE_DESERIALIZE_RESIZEABLE)!=0 ){ *pp = 0; }else{ p->nMmap++; *pp = (void*)(p->aData + iOfst); } memdbLeave(p); return SQLITE_OK; } /* Release a memory-mapped page */ static int memdbUnfetch(sqlite3_file *pFile, sqlite3_int64 iOfst, void *pPage){ MemStore *p = ((MemFile*)pFile)->pStore; UNUSED_PARAMETER(iOfst); UNUSED_PARAMETER(pPage); memdbEnter(p); p->nMmap--; memdbLeave(p); return SQLITE_OK; } /* ** Open an mem file handle. */ static int memdbOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFd, int flags, int *pOutFlags ){ MemFile *pFile = (MemFile*)pFd; MemStore *p = 0; int szName; UNUSED_PARAMETER(pVfs); memset(pFile, 0, sizeof(*pFile)); szName = sqlite3Strlen30(zName); if( szName>1 && zName[0]=='/' ){ int i; #ifndef SQLITE_MUTEX_OMIT sqlite3_mutex *pVfsMutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); #endif sqlite3_mutex_enter(pVfsMutex); for(i=0; izFName,zName)==0 ){ p = memdb_g.apMemStore[i]; break; } } if( p==0 ){ MemStore **apNew; p = sqlite3Malloc( sizeof(*p) + szName + 3 ); if( p==0 ){ sqlite3_mutex_leave(pVfsMutex); return SQLITE_NOMEM; } apNew = sqlite3Realloc(memdb_g.apMemStore, sizeof(apNew[0])*(memdb_g.nMemStore+1) ); if( apNew==0 ){ sqlite3_free(p); sqlite3_mutex_leave(pVfsMutex); return SQLITE_NOMEM; } apNew[memdb_g.nMemStore++] = p; memdb_g.apMemStore = apNew; memset(p, 0, sizeof(*p)); p->mFlags = SQLITE_DESERIALIZE_RESIZEABLE|SQLITE_DESERIALIZE_FREEONCLOSE; p->szMax = sqlite3GlobalConfig.mxMemdbSize; p->zFName = (char*)&p[1]; memcpy(p->zFName, zName, szName+1); p->pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( p->pMutex==0 ){ memdb_g.nMemStore--; sqlite3_free(p); sqlite3_mutex_leave(pVfsMutex); return SQLITE_NOMEM; } p->nRef = 1; memdbEnter(p); }else{ memdbEnter(p); p->nRef++; } sqlite3_mutex_leave(pVfsMutex); }else{ p = sqlite3Malloc( sizeof(*p) ); if( p==0 ){ return SQLITE_NOMEM; } memset(p, 0, sizeof(*p)); p->mFlags = SQLITE_DESERIALIZE_RESIZEABLE | SQLITE_DESERIALIZE_FREEONCLOSE; p->szMax = sqlite3GlobalConfig.mxMemdbSize; } pFile->pStore = p; if( pOutFlags!=0 ){ *pOutFlags = flags | SQLITE_OPEN_MEMORY; } pFd->pMethods = &memdb_io_methods; memdbLeave(p); return SQLITE_OK; } #if 0 /* Only used to delete rollback journals, super-journals, and WAL ** files, none of which exist in memdb. So this routine is never used */ /* ** Delete the file located at zPath. If the dirSync argument is true, ** ensure the file-system modifications are synced to disk before ** returning. */ static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ return SQLITE_IOERR_DELETE; } #endif /* ** Test for access permissions. Return true if the requested permission ** is available, or false otherwise. ** ** With memdb, no files ever exist on disk. So always return false. */ static int memdbAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ){ UNUSED_PARAMETER(pVfs); UNUSED_PARAMETER(zPath); UNUSED_PARAMETER(flags); *pResOut = 0; return SQLITE_OK; } /* ** Populate buffer zOut with the full canonical pathname corresponding ** to the pathname in zPath. zOut is guaranteed to point to a buffer ** of at least (INST_MAX_PATHNAME+1) bytes. */ static int memdbFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ){ UNUSED_PARAMETER(pVfs); sqlite3_snprintf(nOut, zOut, "%s", zPath); return SQLITE_OK; } /* ** Open the dynamic library located at zPath and return a handle. */ static void *memdbDlOpen(sqlite3_vfs *pVfs, const char *zPath){ return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); } /* ** Populate the buffer zErrMsg (size nByte bytes) with a human readable ** utf-8 string describing the most recent error encountered associated ** with dynamic libraries. */ static void memdbDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); } /* ** Return a pointer to the symbol zSymbol in the dynamic library pHandle. */ static void (*memdbDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); } /* ** Close the dynamic library handle pHandle. */ static void memdbDlClose(sqlite3_vfs *pVfs, void *pHandle){ ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); } /* ** Populate the buffer pointed to by zBufOut with nByte bytes of ** random data. */ static int memdbRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); } /* ** Sleep for nMicro microseconds. Return the number of microseconds ** actually slept. */ static int memdbSleep(sqlite3_vfs *pVfs, int nMicro){ return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); } #if 0 /* Never used. Modern cores only call xCurrentTimeInt64() */ /* ** Return the current time as a Julian Day number in *pTimeOut. */ static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); } #endif static int memdbGetLastError(sqlite3_vfs *pVfs, int a, char *b){ return ORIGVFS(pVfs)->xGetLastError(ORIGVFS(pVfs), a, b); } static int memdbCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p); } /* ** Translate a database connection pointer and schema name into a ** MemFile pointer. */ static MemFile *memdbFromDbSchema(sqlite3 *db, const char *zSchema){ MemFile *p = 0; MemStore *pStore; int rc = sqlite3_file_control(db, zSchema, SQLITE_FCNTL_FILE_POINTER, &p); if( rc ) return 0; if( p->base.pMethods!=&memdb_io_methods ) return 0; pStore = p->pStore; memdbEnter(pStore); if( pStore->zFName!=0 ) p = 0; memdbLeave(pStore); return p; } /* ** Return the serialization of a database */ SQLITE_API unsigned char *sqlite3_serialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which database within the connection */ sqlite3_int64 *piSize, /* Write size here, if not NULL */ unsigned int mFlags /* Maybe SQLITE_SERIALIZE_NOCOPY */ ){ MemFile *p; int iDb; Btree *pBt; sqlite3_int64 sz; int szPage = 0; sqlite3_stmt *pStmt = 0; unsigned char *pOut; char *zSql; int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif if( zSchema==0 ) zSchema = db->aDb[0].zDbSName; p = memdbFromDbSchema(db, zSchema); iDb = sqlite3FindDbName(db, zSchema); if( piSize ) *piSize = -1; if( iDb<0 ) return 0; if( p ){ MemStore *pStore = p->pStore; assert( pStore->pMutex==0 ); if( piSize ) *piSize = pStore->sz; if( mFlags & SQLITE_SERIALIZE_NOCOPY ){ pOut = pStore->aData; }else{ pOut = sqlite3_malloc64( pStore->sz ); if( pOut ) memcpy(pOut, pStore->aData, pStore->sz); } return pOut; } pBt = db->aDb[iDb].pBt; if( pBt==0 ) return 0; szPage = sqlite3BtreeGetPageSize(pBt); zSql = sqlite3_mprintf("PRAGMA \"%w\".page_count", zSchema); rc = zSql ? sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0) : SQLITE_NOMEM; sqlite3_free(zSql); if( rc ) return 0; rc = sqlite3_step(pStmt); if( rc!=SQLITE_ROW ){ pOut = 0; }else{ sz = sqlite3_column_int64(pStmt, 0)*szPage; if( piSize ) *piSize = sz; if( mFlags & SQLITE_SERIALIZE_NOCOPY ){ pOut = 0; }else{ pOut = sqlite3_malloc64( sz ); if( pOut ){ int nPage = sqlite3_column_int(pStmt, 0); Pager *pPager = sqlite3BtreePager(pBt); int pgno; for(pgno=1; pgno<=nPage; pgno++){ DbPage *pPage = 0; unsigned char *pTo = pOut + szPage*(sqlite3_int64)(pgno-1); rc = sqlite3PagerGet(pPager, pgno, (DbPage**)&pPage, 0); if( rc==SQLITE_OK ){ memcpy(pTo, sqlite3PagerGetData(pPage), szPage); }else{ memset(pTo, 0, szPage); } sqlite3PagerUnref(pPage); } } } } sqlite3_finalize(pStmt); return pOut; } /* Convert zSchema to a MemDB and initialize its content. */ SQLITE_API int sqlite3_deserialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which DB to reopen with the deserialization */ unsigned char *pData, /* The serialized database content */ sqlite3_int64 szDb, /* Number bytes in the deserialization */ sqlite3_int64 szBuf, /* Total size of buffer pData[] */ unsigned mFlags /* Zero or more SQLITE_DESERIALIZE_* flags */ ){ MemFile *p; char *zSql; sqlite3_stmt *pStmt = 0; int rc; int iDb; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } if( szDb<0 ) return SQLITE_MISUSE_BKPT; if( szBuf<0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); if( zSchema==0 ) zSchema = db->aDb[0].zDbSName; iDb = sqlite3FindDbName(db, zSchema); testcase( iDb==1 ); if( iDb<2 && iDb!=0 ){ rc = SQLITE_ERROR; goto end_deserialize; } zSql = sqlite3_mprintf("ATTACH x AS %Q", zSchema); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); } if( rc ) goto end_deserialize; db->init.iDb = (u8)iDb; db->init.reopenMemdb = 1; rc = sqlite3_step(pStmt); db->init.reopenMemdb = 0; if( rc!=SQLITE_DONE ){ rc = SQLITE_ERROR; goto end_deserialize; } p = memdbFromDbSchema(db, zSchema); if( p==0 ){ rc = SQLITE_ERROR; }else{ MemStore *pStore = p->pStore; pStore->aData = pData; pData = 0; pStore->sz = szDb; pStore->szAlloc = szBuf; pStore->szMax = szBuf; if( pStore->szMaxszMax = sqlite3GlobalConfig.mxMemdbSize; } pStore->mFlags = mFlags; rc = SQLITE_OK; } end_deserialize: sqlite3_finalize(pStmt); if( pData && (mFlags & SQLITE_DESERIALIZE_FREEONCLOSE)!=0 ){ sqlite3_free(pData); } sqlite3_mutex_leave(db->mutex); return rc; } /* ** This routine is called when the extension is loaded. ** Register the new VFS. */ SQLITE_PRIVATE int sqlite3MemdbInit(void){ sqlite3_vfs *pLower = sqlite3_vfs_find(0); unsigned int sz; if( NEVER(pLower==0) ) return SQLITE_ERROR; sz = pLower->szOsFile; memdb_vfs.pAppData = pLower; /* The following conditional can only be true when compiled for ** Windows x86 and SQLITE_MAX_MMAP_SIZE=0. We always leave ** it in, to be safe, but it is marked as NO_TEST since there ** is no way to reach it under most builds. */ if( szBITVEC_NBIT and iDivisor==0 then Bitvec.u.aHash[] is ** a hash table that will hold up to BITVEC_MXHASH distinct values. ** ** Otherwise, the value i is redirected into one of BITVEC_NPTR ** sub-bitmaps pointed to by Bitvec.u.apSub[]. Each subbitmap ** handles up to iDivisor separate values of i. apSub[0] holds ** values between 1 and iDivisor. apSub[1] holds values between ** iDivisor+1 and 2*iDivisor. apSub[N] holds values between ** N*iDivisor+1 and (N+1)*iDivisor. Each subbitmap is normalized ** to hold deal with values between 1 and iDivisor. */ struct Bitvec { u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */ u32 nSet; /* Number of bits that are set - only valid for aHash ** element. Max is BITVEC_NINT. For BITVEC_SZ of 512, ** this would be 125. */ u32 iDivisor; /* Number of bits handled by each apSub[] entry. */ /* Should >=0 for apSub element. */ /* Max iDivisor is max(u32) / BITVEC_NPTR + 1. */ /* For a BITVEC_SZ of 512, this would be 34,359,739. */ union { BITVEC_TELEM aBitmap[BITVEC_NELEM]; /* Bitmap representation */ u32 aHash[BITVEC_NINT]; /* Hash table representation */ Bitvec *apSub[BITVEC_NPTR]; /* Recursive representation */ } u; }; /* ** Create a new bitmap object able to handle bits between 0 and iSize, ** inclusive. Return a pointer to the new object. Return NULL if ** malloc fails. */ SQLITE_PRIVATE Bitvec *sqlite3BitvecCreate(u32 iSize){ Bitvec *p; assert( sizeof(*p)==BITVEC_SZ ); p = sqlite3MallocZero( sizeof(*p) ); if( p ){ p->iSize = iSize; } return p; } /* ** Check to see if the i-th bit is set. Return true or false. ** If p is NULL (if the bitmap has not been created) or if ** i is out of range, then return false. */ SQLITE_PRIVATE int sqlite3BitvecTestNotNull(Bitvec *p, u32 i){ assert( p!=0 ); i--; if( i>=p->iSize ) return 0; while( p->iDivisor ){ u32 bin = i/p->iDivisor; i = i%p->iDivisor; p = p->u.apSub[bin]; if (!p) { return 0; } } if( p->iSize<=BITVEC_NBIT ){ return (p->u.aBitmap[i/BITVEC_SZELEM] & (1<<(i&(BITVEC_SZELEM-1))))!=0; } else{ u32 h = BITVEC_HASH(i++); while( p->u.aHash[h] ){ if( p->u.aHash[h]==i ) return 1; h = (h+1) % BITVEC_NINT; } return 0; } } SQLITE_PRIVATE int sqlite3BitvecTest(Bitvec *p, u32 i){ return p!=0 && sqlite3BitvecTestNotNull(p,i); } /* ** Set the i-th bit. Return 0 on success and an error code if ** anything goes wrong. ** ** This routine might cause sub-bitmaps to be allocated. Failing ** to get the memory needed to hold the sub-bitmap is the only ** that can go wrong with an insert, assuming p and i are valid. ** ** The calling function must ensure that p is a valid Bitvec object ** and that the value for "i" is within range of the Bitvec object. ** Otherwise the behavior is undefined. */ SQLITE_PRIVATE int sqlite3BitvecSet(Bitvec *p, u32 i){ u32 h; if( p==0 ) return SQLITE_OK; assert( i>0 ); assert( i<=p->iSize ); i--; while((p->iSize > BITVEC_NBIT) && p->iDivisor) { u32 bin = i/p->iDivisor; i = i%p->iDivisor; if( p->u.apSub[bin]==0 ){ p->u.apSub[bin] = sqlite3BitvecCreate( p->iDivisor ); if( p->u.apSub[bin]==0 ) return SQLITE_NOMEM_BKPT; } p = p->u.apSub[bin]; } if( p->iSize<=BITVEC_NBIT ){ p->u.aBitmap[i/BITVEC_SZELEM] |= 1 << (i&(BITVEC_SZELEM-1)); return SQLITE_OK; } h = BITVEC_HASH(i++); /* if there wasn't a hash collision, and this doesn't */ /* completely fill the hash, then just add it without */ /* worring about sub-dividing and re-hashing. */ if( !p->u.aHash[h] ){ if (p->nSet<(BITVEC_NINT-1)) { goto bitvec_set_end; } else { goto bitvec_set_rehash; } } /* there was a collision, check to see if it's already */ /* in hash, if not, try to find a spot for it */ do { if( p->u.aHash[h]==i ) return SQLITE_OK; h++; if( h>=BITVEC_NINT ) h = 0; } while( p->u.aHash[h] ); /* we didn't find it in the hash. h points to the first */ /* available free spot. check to see if this is going to */ /* make our hash too "full". */ bitvec_set_rehash: if( p->nSet>=BITVEC_MXHASH ){ unsigned int j; int rc; u32 *aiValues = sqlite3StackAllocRaw(0, sizeof(p->u.aHash)); if( aiValues==0 ){ return SQLITE_NOMEM_BKPT; }else{ memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash)); memset(p->u.apSub, 0, sizeof(p->u.apSub)); p->iDivisor = (p->iSize + BITVEC_NPTR - 1)/BITVEC_NPTR; rc = sqlite3BitvecSet(p, i); for(j=0; jnSet++; p->u.aHash[h] = i; return SQLITE_OK; } /* ** Clear the i-th bit. ** ** pBuf must be a pointer to at least BITVEC_SZ bytes of temporary storage ** that BitvecClear can use to rebuilt its hash table. */ SQLITE_PRIVATE void sqlite3BitvecClear(Bitvec *p, u32 i, void *pBuf){ if( p==0 ) return; assert( i>0 ); i--; while( p->iDivisor ){ u32 bin = i/p->iDivisor; i = i%p->iDivisor; p = p->u.apSub[bin]; if (!p) { return; } } if( p->iSize<=BITVEC_NBIT ){ p->u.aBitmap[i/BITVEC_SZELEM] &= ~(1 << (i&(BITVEC_SZELEM-1))); }else{ unsigned int j; u32 *aiValues = pBuf; memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash)); memset(p->u.aHash, 0, sizeof(p->u.aHash)); p->nSet = 0; for(j=0; jnSet++; while( p->u.aHash[h] ){ h++; if( h>=BITVEC_NINT ) h = 0; } p->u.aHash[h] = aiValues[j]; } } } } /* ** Destroy a bitmap object. Reclaim all memory used. */ SQLITE_PRIVATE void sqlite3BitvecDestroy(Bitvec *p){ if( p==0 ) return; if( p->iDivisor ){ unsigned int i; for(i=0; iu.apSub[i]); } } sqlite3_free(p); } /* ** Return the value of the iSize parameter specified when Bitvec *p ** was created. */ SQLITE_PRIVATE u32 sqlite3BitvecSize(Bitvec *p){ return p->iSize; } #ifndef SQLITE_UNTESTABLE /* ** Let V[] be an array of unsigned characters sufficient to hold ** up to N bits. Let I be an integer between 0 and N. 0<=I>3] |= (1<<(I&7)) #define CLEARBIT(V,I) V[I>>3] &= ~(1<<(I&7)) #define TESTBIT(V,I) (V[I>>3]&(1<<(I&7)))!=0 /* ** This routine runs an extensive test of the Bitvec code. ** ** The input is an array of integers that acts as a program ** to test the Bitvec. The integers are opcodes followed ** by 0, 1, or 3 operands, depending on the opcode. Another ** opcode follows immediately after the last operand. ** ** There are 6 opcodes numbered from 0 through 5. 0 is the ** "halt" opcode and causes the test to end. ** ** 0 Halt and return the number of errors ** 1 N S X Set N bits beginning with S and incrementing by X ** 2 N S X Clear N bits beginning with S and incrementing by X ** 3 N Set N randomly chosen bits ** 4 N Clear N randomly chosen bits ** 5 N S X Set N bits from S increment X in array only, not in bitvec ** ** The opcodes 1 through 4 perform set and clear operations are performed ** on both a Bitvec object and on a linear array of bits obtained from malloc. ** Opcode 5 works on the linear array only, not on the Bitvec. ** Opcode 5 is used to deliberately induce a fault in order to ** confirm that error detection works. ** ** At the conclusion of the test the linear array is compared ** against the Bitvec object. If there are any differences, ** an error is returned. If they are the same, zero is returned. ** ** If a memory allocation error occurs, return -1. */ SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){ Bitvec *pBitvec = 0; unsigned char *pV = 0; int rc = -1; int i, nx, pc, op; void *pTmpSpace; /* Allocate the Bitvec to be tested and a linear array of ** bits to act as the reference */ pBitvec = sqlite3BitvecCreate( sz ); pV = sqlite3MallocZero( (sz+7)/8 + 1 ); pTmpSpace = sqlite3_malloc64(BITVEC_SZ); if( pBitvec==0 || pV==0 || pTmpSpace==0 ) goto bitvec_end; /* NULL pBitvec tests */ sqlite3BitvecSet(0, 1); sqlite3BitvecClear(0, 1, pTmpSpace); /* Run the program */ pc = i = 0; while( (op = aOp[pc])!=0 ){ switch( op ){ case 1: case 2: case 5: { nx = 4; i = aOp[pc+2] - 1; aOp[pc+2] += aOp[pc+3]; break; } case 3: case 4: default: { nx = 2; sqlite3_randomness(sizeof(i), &i); break; } } if( (--aOp[pc+1]) > 0 ) nx = 0; pc += nx; i = (i & 0x7fffffff)%sz; if( (op & 1)!=0 ){ SETBIT(pV, (i+1)); if( op!=5 ){ if( sqlite3BitvecSet(pBitvec, i+1) ) goto bitvec_end; } }else{ CLEARBIT(pV, (i+1)); sqlite3BitvecClear(pBitvec, i+1, pTmpSpace); } } /* Test to make sure the linear array exactly matches the ** Bitvec object. Start with the assumption that they do ** match (rc==0). Change rc to non-zero if a discrepancy ** is found. */ rc = sqlite3BitvecTest(0,0) + sqlite3BitvecTest(pBitvec, sz+1) + sqlite3BitvecTest(pBitvec, 0) + (sqlite3BitvecSize(pBitvec) - sz); for(i=1; i<=sz; i++){ if( (TESTBIT(pV,i))!=sqlite3BitvecTest(pBitvec,i) ){ rc = i; break; } } /* Free allocated structure */ bitvec_end: sqlite3_free(pTmpSpace); sqlite3_free(pV); sqlite3BitvecDestroy(pBitvec); return rc; } #endif /* SQLITE_UNTESTABLE */ /************** End of bitvec.c **********************************************/ /************** Begin file pcache.c ******************************************/ /* ** 2008 August 05 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements that page cache. */ /* #include "sqliteInt.h" */ /* ** A complete page cache is an instance of this structure. Every ** entry in the cache holds a single page of the database file. The ** btree layer only operates on the cached copy of the database pages. ** ** A page cache entry is "clean" if it exactly matches what is currently ** on disk. A page is "dirty" if it has been modified and needs to be ** persisted to disk. ** ** pDirty, pDirtyTail, pSynced: ** All dirty pages are linked into the doubly linked list using ** PgHdr.pDirtyNext and pDirtyPrev. The list is maintained in LRU order ** such that p was added to the list more recently than p->pDirtyNext. ** PCache.pDirty points to the first (newest) element in the list and ** pDirtyTail to the last (oldest). ** ** The PCache.pSynced variable is used to optimize searching for a dirty ** page to eject from the cache mid-transaction. It is better to eject ** a page that does not require a journal sync than one that does. ** Therefore, pSynced is maintained so that it *almost* always points ** to either the oldest page in the pDirty/pDirtyTail list that has a ** clear PGHDR_NEED_SYNC flag or to a page that is older than this one ** (so that the right page to eject can be found by following pDirtyPrev ** pointers). */ struct PCache { PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */ PgHdr *pSynced; /* Last synced page in dirty page list */ int nRefSum; /* Sum of ref counts over all pages */ int szCache; /* Configured cache size */ int szSpill; /* Size before spilling occurs */ int szPage; /* Size of every page in this cache */ int szExtra; /* Size of extra space for each page */ u8 bPurgeable; /* True if pages are on backing store */ u8 eCreate; /* eCreate value for for xFetch() */ int (*xStress)(void*,PgHdr*); /* Call to try make a page clean */ void *pStress; /* Argument to xStress */ sqlite3_pcache *pCache; /* Pluggable cache module */ }; /********************************** Test and Debug Logic **********************/ /* ** Debug tracing macros. Enable by by changing the "0" to "1" and ** recompiling. ** ** When sqlite3PcacheTrace is 1, single line trace messages are issued. ** When sqlite3PcacheTrace is 2, a dump of the pcache showing all cache entries ** is displayed for many operations, resulting in a lot of output. */ #if defined(SQLITE_DEBUG) && 0 int sqlite3PcacheTrace = 2; /* 0: off 1: simple 2: cache dumps */ int sqlite3PcacheMxDump = 9999; /* Max cache entries for pcacheDump() */ # define pcacheTrace(X) if(sqlite3PcacheTrace){sqlite3DebugPrintf X;} void pcacheDump(PCache *pCache){ int N; int i, j; sqlite3_pcache_page *pLower; PgHdr *pPg; unsigned char *a; if( sqlite3PcacheTrace<2 ) return; if( pCache->pCache==0 ) return; N = sqlite3PcachePagecount(pCache); if( N>sqlite3PcacheMxDump ) N = sqlite3PcacheMxDump; for(i=1; i<=N; i++){ pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0); if( pLower==0 ) continue; pPg = (PgHdr*)pLower->pExtra; printf("%3d: nRef %2d flgs %02x data ", i, pPg->nRef, pPg->flags); a = (unsigned char *)pLower->pBuf; for(j=0; j<12; j++) printf("%02x", a[j]); printf("\n"); if( pPg->pPage==0 ){ sqlite3GlobalConfig.pcache2.xUnpin(pCache->pCache, pLower, 0); } } } #else # define pcacheTrace(X) # define pcacheDump(X) #endif /* ** Check invariants on a PgHdr entry. Return true if everything is OK. ** Return false if any invariant is violated. ** ** This routine is for use inside of assert() statements only. For ** example: ** ** assert( sqlite3PcachePageSanity(pPg) ); */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr *pPg){ PCache *pCache; assert( pPg!=0 ); assert( pPg->pgno>0 || pPg->pPager==0 ); /* Page number is 1 or more */ pCache = pPg->pCache; assert( pCache!=0 ); /* Every page has an associated PCache */ if( pPg->flags & PGHDR_CLEAN ){ assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */ assert( pCache->pDirty!=pPg ); /* CLEAN pages not on dirty list */ assert( pCache->pDirtyTail!=pPg ); } /* WRITEABLE pages must also be DIRTY */ if( pPg->flags & PGHDR_WRITEABLE ){ assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */ } /* NEED_SYNC can be set independently of WRITEABLE. This can happen, ** for example, when using the sqlite3PagerDontWrite() optimization: ** (1) Page X is journalled, and gets WRITEABLE and NEED_SEEK. ** (2) Page X moved to freelist, WRITEABLE is cleared ** (3) Page X reused, WRITEABLE is set again ** If NEED_SYNC had been cleared in step 2, then it would not be reset ** in step 3, and page might be written into the database without first ** syncing the rollback journal, which might cause corruption on a power ** loss. ** ** Another example is when the database page size is smaller than the ** disk sector size. When any page of a sector is journalled, all pages ** in that sector are marked NEED_SYNC even if they are still CLEAN, just ** in case they are later modified, since all pages in the same sector ** must be journalled and synced before any of those pages can be safely ** written. */ return 1; } #endif /* SQLITE_DEBUG */ /********************************** Linked List Management ********************/ /* Allowed values for second argument to pcacheManageDirtyList() */ #define PCACHE_DIRTYLIST_REMOVE 1 /* Remove pPage from dirty list */ #define PCACHE_DIRTYLIST_ADD 2 /* Add pPage to the dirty list */ #define PCACHE_DIRTYLIST_FRONT 3 /* Move pPage to the front of the list */ /* ** Manage pPage's participation on the dirty list. Bits of the addRemove ** argument determines what operation to do. The 0x01 bit means first ** remove pPage from the dirty list. The 0x02 means add pPage back to ** the dirty list. Doing both moves pPage to the front of the dirty list. */ static void pcacheManageDirtyList(PgHdr *pPage, u8 addRemove){ PCache *p = pPage->pCache; pcacheTrace(("%p.DIRTYLIST.%s %d\n", p, addRemove==1 ? "REMOVE" : addRemove==2 ? "ADD" : "FRONT", pPage->pgno)); if( addRemove & PCACHE_DIRTYLIST_REMOVE ){ assert( pPage->pDirtyNext || pPage==p->pDirtyTail ); assert( pPage->pDirtyPrev || pPage==p->pDirty ); /* Update the PCache1.pSynced variable if necessary. */ if( p->pSynced==pPage ){ p->pSynced = pPage->pDirtyPrev; } if( pPage->pDirtyNext ){ pPage->pDirtyNext->pDirtyPrev = pPage->pDirtyPrev; }else{ assert( pPage==p->pDirtyTail ); p->pDirtyTail = pPage->pDirtyPrev; } if( pPage->pDirtyPrev ){ pPage->pDirtyPrev->pDirtyNext = pPage->pDirtyNext; }else{ /* If there are now no dirty pages in the cache, set eCreate to 2. ** This is an optimization that allows sqlite3PcacheFetch() to skip ** searching for a dirty page to eject from the cache when it might ** otherwise have to. */ assert( pPage==p->pDirty ); p->pDirty = pPage->pDirtyNext; assert( p->bPurgeable || p->eCreate==2 ); if( p->pDirty==0 ){ /*OPTIMIZATION-IF-TRUE*/ assert( p->bPurgeable==0 || p->eCreate==1 ); p->eCreate = 2; } } } if( addRemove & PCACHE_DIRTYLIST_ADD ){ pPage->pDirtyPrev = 0; pPage->pDirtyNext = p->pDirty; if( pPage->pDirtyNext ){ assert( pPage->pDirtyNext->pDirtyPrev==0 ); pPage->pDirtyNext->pDirtyPrev = pPage; }else{ p->pDirtyTail = pPage; if( p->bPurgeable ){ assert( p->eCreate==2 ); p->eCreate = 1; } } p->pDirty = pPage; /* If pSynced is NULL and this page has a clear NEED_SYNC flag, set ** pSynced to point to it. Checking the NEED_SYNC flag is an ** optimization, as if pSynced points to a page with the NEED_SYNC ** flag set sqlite3PcacheFetchStress() searches through all newer ** entries of the dirty-list for a page with NEED_SYNC clear anyway. */ if( !p->pSynced && 0==(pPage->flags&PGHDR_NEED_SYNC) /*OPTIMIZATION-IF-FALSE*/ ){ p->pSynced = pPage; } } pcacheDump(p); } /* ** Wrapper around the pluggable caches xUnpin method. If the cache is ** being used for an in-memory database, this function is a no-op. */ static void pcacheUnpin(PgHdr *p){ if( p->pCache->bPurgeable ){ pcacheTrace(("%p.UNPIN %d\n", p->pCache, p->pgno)); sqlite3GlobalConfig.pcache2.xUnpin(p->pCache->pCache, p->pPage, 0); pcacheDump(p->pCache); } } /* ** Compute the number of pages of cache requested. p->szCache is the ** cache size requested by the "PRAGMA cache_size" statement. */ static int numberOfCachePages(PCache *p){ if( p->szCache>=0 ){ /* IMPLEMENTATION-OF: R-42059-47211 If the argument N is positive then the ** suggested cache size is set to N. */ return p->szCache; }else{ i64 n; /* IMPLEMANTATION-OF: R-59858-46238 If the argument N is negative, then the ** number of cache pages is adjusted to be a number of pages that would ** use approximately abs(N*1024) bytes of memory based on the current ** page size. */ n = ((-1024*(i64)p->szCache)/(p->szPage+p->szExtra)); if( n>1000000000 ) n = 1000000000; return (int)n; } } /*************************************************** General Interfaces ****** ** ** Initialize and shutdown the page cache subsystem. Neither of these ** functions are threadsafe. */ SQLITE_PRIVATE int sqlite3PcacheInitialize(void){ if( sqlite3GlobalConfig.pcache2.xInit==0 ){ /* IMPLEMENTATION-OF: R-26801-64137 If the xInit() method is NULL, then the ** built-in default page cache is used instead of the application defined ** page cache. */ sqlite3PCacheSetDefault(); assert( sqlite3GlobalConfig.pcache2.xInit!=0 ); } return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); } SQLITE_PRIVATE void sqlite3PcacheShutdown(void){ if( sqlite3GlobalConfig.pcache2.xShutdown ){ /* IMPLEMENTATION-OF: R-26000-56589 The xShutdown() method may be NULL. */ sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); } } /* ** Return the size in bytes of a PCache object. */ SQLITE_PRIVATE int sqlite3PcacheSize(void){ return sizeof(PCache); } /* ** Create a new PCache object. Storage space to hold the object ** has already been allocated and is passed in as the p pointer. ** The caller discovers how much space needs to be allocated by ** calling sqlite3PcacheSize(). ** ** szExtra is some extra space allocated for each page. The first ** 8 bytes of the extra space will be zeroed as the page is allocated, ** but remaining content will be uninitialized. Though it is opaque ** to this module, the extra space really ends up being the MemPage ** structure in the pager. */ SQLITE_PRIVATE int sqlite3PcacheOpen( int szPage, /* Size of every page */ int szExtra, /* Extra space associated with each page */ int bPurgeable, /* True if pages are on backing store */ int (*xStress)(void*,PgHdr*),/* Call to try to make pages clean */ void *pStress, /* Argument to xStress */ PCache *p /* Preallocated space for the PCache */ ){ memset(p, 0, sizeof(PCache)); p->szPage = 1; p->szExtra = szExtra; assert( szExtra>=8 ); /* First 8 bytes will be zeroed */ p->bPurgeable = bPurgeable; p->eCreate = 2; p->xStress = xStress; p->pStress = pStress; p->szCache = 100; p->szSpill = 1; pcacheTrace(("%p.OPEN szPage %d bPurgeable %d\n",p,szPage,bPurgeable)); return sqlite3PcacheSetPageSize(p, szPage); } /* ** Change the page size for PCache object. The caller must ensure that there ** are no outstanding page references when this function is called. */ SQLITE_PRIVATE int sqlite3PcacheSetPageSize(PCache *pCache, int szPage){ assert( pCache->nRefSum==0 && pCache->pDirty==0 ); if( pCache->szPage ){ sqlite3_pcache *pNew; pNew = sqlite3GlobalConfig.pcache2.xCreate( szPage, pCache->szExtra + ROUND8(sizeof(PgHdr)), pCache->bPurgeable ); if( pNew==0 ) return SQLITE_NOMEM_BKPT; sqlite3GlobalConfig.pcache2.xCachesize(pNew, numberOfCachePages(pCache)); if( pCache->pCache ){ sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); } pCache->pCache = pNew; pCache->szPage = szPage; pcacheTrace(("%p.PAGESIZE %d\n",pCache,szPage)); } return SQLITE_OK; } /* ** Try to obtain a page from the cache. ** ** This routine returns a pointer to an sqlite3_pcache_page object if ** such an object is already in cache, or if a new one is created. ** This routine returns a NULL pointer if the object was not in cache ** and could not be created. ** ** The createFlags should be 0 to check for existing pages and should ** be 3 (not 1, but 3) to try to create a new page. ** ** If the createFlag is 0, then NULL is always returned if the page ** is not already in the cache. If createFlag is 1, then a new page ** is created only if that can be done without spilling dirty pages ** and without exceeding the cache size limit. ** ** The caller needs to invoke sqlite3PcacheFetchFinish() to properly ** initialize the sqlite3_pcache_page object and convert it into a ** PgHdr object. The sqlite3PcacheFetch() and sqlite3PcacheFetchFinish() ** routines are split this way for performance reasons. When separated ** they can both (usually) operate without having to push values to ** the stack on entry and pop them back off on exit, which saves a ** lot of pushing and popping. */ SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number to obtain */ int createFlag /* If true, create page if it does not exist already */ ){ int eCreate; sqlite3_pcache_page *pRes; assert( pCache!=0 ); assert( pCache->pCache!=0 ); assert( createFlag==3 || createFlag==0 ); assert( pCache->eCreate==((pCache->bPurgeable && pCache->pDirty) ? 1 : 2) ); /* eCreate defines what to do if the page does not exist. ** 0 Do not allocate a new page. (createFlag==0) ** 1 Allocate a new page if doing so is inexpensive. ** (createFlag==1 AND bPurgeable AND pDirty) ** 2 Allocate a new page even it doing so is difficult. ** (createFlag==1 AND !(bPurgeable AND pDirty) */ eCreate = createFlag & pCache->eCreate; assert( eCreate==0 || eCreate==1 || eCreate==2 ); assert( createFlag==0 || pCache->eCreate==eCreate ); assert( createFlag==0 || eCreate==1+(!pCache->bPurgeable||!pCache->pDirty) ); pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); pcacheTrace(("%p.FETCH %d%s (result: %p)\n",pCache,pgno, createFlag?" create":"",pRes)); return pRes; } /* ** If the sqlite3PcacheFetch() routine is unable to allocate a new ** page because no clean pages are available for reuse and the cache ** size limit has been reached, then this routine can be invoked to ** try harder to allocate a page. This routine might invoke the stress ** callback to spill dirty pages to the journal. It will then try to ** allocate the new page and will only fail to allocate a new page on ** an OOM error. ** ** This routine should be invoked only after sqlite3PcacheFetch() fails. */ SQLITE_PRIVATE int sqlite3PcacheFetchStress( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number to obtain */ sqlite3_pcache_page **ppPage /* Write result here */ ){ PgHdr *pPg; if( pCache->eCreate==2 ) return 0; if( sqlite3PcachePagecount(pCache)>pCache->szSpill ){ /* Find a dirty page to write-out and recycle. First try to find a ** page that does not require a journal-sync (one with PGHDR_NEED_SYNC ** cleared), but if that is not possible settle for any other ** unreferenced dirty page. ** ** If the LRU page in the dirty list that has a clear PGHDR_NEED_SYNC ** flag is currently referenced, then the following may leave pSynced ** set incorrectly (pointing to other than the LRU page with NEED_SYNC ** cleared). This is Ok, as pSynced is just an optimization. */ for(pPg=pCache->pSynced; pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); pPg=pPg->pDirtyPrev ); pCache->pSynced = pPg; if( !pPg ){ for(pPg=pCache->pDirtyTail; pPg && pPg->nRef; pPg=pPg->pDirtyPrev); } if( pPg ){ int rc; #ifdef SQLITE_LOG_CACHE_SPILL sqlite3_log(SQLITE_FULL, "spill page %d making room for %d - cache used: %d/%d", pPg->pgno, pgno, sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache), numberOfCachePages(pCache)); #endif pcacheTrace(("%p.SPILL %d\n",pCache,pPg->pgno)); rc = pCache->xStress(pCache->pStress, pPg); pcacheDump(pCache); if( rc!=SQLITE_OK && rc!=SQLITE_BUSY ){ return rc; } } } *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2); return *ppPage==0 ? SQLITE_NOMEM_BKPT : SQLITE_OK; } /* ** This is a helper routine for sqlite3PcacheFetchFinish() ** ** In the uncommon case where the page being fetched has not been ** initialized, this routine is invoked to do the initialization. ** This routine is broken out into a separate function since it ** requires extra stack manipulation that can be avoided in the common ** case. */ static SQLITE_NOINLINE PgHdr *pcacheFetchFinishWithInit( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number obtained */ sqlite3_pcache_page *pPage /* Page obtained by prior PcacheFetch() call */ ){ PgHdr *pPgHdr; assert( pPage!=0 ); pPgHdr = (PgHdr*)pPage->pExtra; assert( pPgHdr->pPage==0 ); memset(&pPgHdr->pDirty, 0, sizeof(PgHdr) - offsetof(PgHdr,pDirty)); pPgHdr->pPage = pPage; pPgHdr->pData = pPage->pBuf; pPgHdr->pExtra = (void *)&pPgHdr[1]; memset(pPgHdr->pExtra, 0, 8); pPgHdr->pCache = pCache; pPgHdr->pgno = pgno; pPgHdr->flags = PGHDR_CLEAN; return sqlite3PcacheFetchFinish(pCache,pgno,pPage); } /* ** This routine converts the sqlite3_pcache_page object returned by ** sqlite3PcacheFetch() into an initialized PgHdr object. This routine ** must be called after sqlite3PcacheFetch() in order to get a usable ** result. */ SQLITE_PRIVATE PgHdr *sqlite3PcacheFetchFinish( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number obtained */ sqlite3_pcache_page *pPage /* Page obtained by prior PcacheFetch() call */ ){ PgHdr *pPgHdr; assert( pPage!=0 ); pPgHdr = (PgHdr *)pPage->pExtra; if( !pPgHdr->pPage ){ return pcacheFetchFinishWithInit(pCache, pgno, pPage); } pCache->nRefSum++; pPgHdr->nRef++; assert( sqlite3PcachePageSanity(pPgHdr) ); return pPgHdr; } /* ** Decrement the reference count on a page. If the page is clean and the ** reference count drops to 0, then it is made eligible for recycling. */ SQLITE_PRIVATE void SQLITE_NOINLINE sqlite3PcacheRelease(PgHdr *p){ assert( p->nRef>0 ); p->pCache->nRefSum--; if( (--p->nRef)==0 ){ if( p->flags&PGHDR_CLEAN ){ pcacheUnpin(p); }else{ pcacheManageDirtyList(p, PCACHE_DIRTYLIST_FRONT); } } } /* ** Increase the reference count of a supplied page by 1. */ SQLITE_PRIVATE void sqlite3PcacheRef(PgHdr *p){ assert(p->nRef>0); assert( sqlite3PcachePageSanity(p) ); p->nRef++; p->pCache->nRefSum++; } /* ** Drop a page from the cache. There must be exactly one reference to the ** page. This function deletes that reference, so after it returns the ** page pointed to by p is invalid. */ SQLITE_PRIVATE void sqlite3PcacheDrop(PgHdr *p){ assert( p->nRef==1 ); assert( sqlite3PcachePageSanity(p) ); if( p->flags&PGHDR_DIRTY ){ pcacheManageDirtyList(p, PCACHE_DIRTYLIST_REMOVE); } p->pCache->nRefSum--; sqlite3GlobalConfig.pcache2.xUnpin(p->pCache->pCache, p->pPage, 1); } /* ** Make sure the page is marked as dirty. If it isn't dirty already, ** make it so. */ SQLITE_PRIVATE void sqlite3PcacheMakeDirty(PgHdr *p){ assert( p->nRef>0 ); assert( sqlite3PcachePageSanity(p) ); if( p->flags & (PGHDR_CLEAN|PGHDR_DONT_WRITE) ){ /*OPTIMIZATION-IF-FALSE*/ p->flags &= ~PGHDR_DONT_WRITE; if( p->flags & PGHDR_CLEAN ){ p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN); pcacheTrace(("%p.DIRTY %d\n",p->pCache,p->pgno)); assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY ); pcacheManageDirtyList(p, PCACHE_DIRTYLIST_ADD); } assert( sqlite3PcachePageSanity(p) ); } } /* ** Make sure the page is marked as clean. If it isn't clean already, ** make it so. */ SQLITE_PRIVATE void sqlite3PcacheMakeClean(PgHdr *p){ assert( sqlite3PcachePageSanity(p) ); assert( (p->flags & PGHDR_DIRTY)!=0 ); assert( (p->flags & PGHDR_CLEAN)==0 ); pcacheManageDirtyList(p, PCACHE_DIRTYLIST_REMOVE); p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE); p->flags |= PGHDR_CLEAN; pcacheTrace(("%p.CLEAN %d\n",p->pCache,p->pgno)); assert( sqlite3PcachePageSanity(p) ); if( p->nRef==0 ){ pcacheUnpin(p); } } /* ** Make every page in the cache clean. */ SQLITE_PRIVATE void sqlite3PcacheCleanAll(PCache *pCache){ PgHdr *p; pcacheTrace(("%p.CLEAN-ALL\n",pCache)); while( (p = pCache->pDirty)!=0 ){ sqlite3PcacheMakeClean(p); } } /* ** Clear the PGHDR_NEED_SYNC and PGHDR_WRITEABLE flag from all dirty pages. */ SQLITE_PRIVATE void sqlite3PcacheClearWritable(PCache *pCache){ PgHdr *p; pcacheTrace(("%p.CLEAR-WRITEABLE\n",pCache)); for(p=pCache->pDirty; p; p=p->pDirtyNext){ p->flags &= ~(PGHDR_NEED_SYNC|PGHDR_WRITEABLE); } pCache->pSynced = pCache->pDirtyTail; } /* ** Clear the PGHDR_NEED_SYNC flag from all dirty pages. */ SQLITE_PRIVATE void sqlite3PcacheClearSyncFlags(PCache *pCache){ PgHdr *p; for(p=pCache->pDirty; p; p=p->pDirtyNext){ p->flags &= ~PGHDR_NEED_SYNC; } pCache->pSynced = pCache->pDirtyTail; } /* ** Change the page number of page p to newPgno. */ SQLITE_PRIVATE void sqlite3PcacheMove(PgHdr *p, Pgno newPgno){ PCache *pCache = p->pCache; assert( p->nRef>0 ); assert( newPgno>0 ); assert( sqlite3PcachePageSanity(p) ); pcacheTrace(("%p.MOVE %d -> %d\n",pCache,p->pgno,newPgno)); sqlite3GlobalConfig.pcache2.xRekey(pCache->pCache, p->pPage, p->pgno,newPgno); p->pgno = newPgno; if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ pcacheManageDirtyList(p, PCACHE_DIRTYLIST_FRONT); } } /* ** Drop every cache entry whose page number is greater than "pgno". The ** caller must ensure that there are no outstanding references to any pages ** other than page 1 with a page number greater than pgno. ** ** If there is a reference to page 1 and the pgno parameter passed to this ** function is 0, then the data area associated with page 1 is zeroed, but ** the page object is not dropped. */ SQLITE_PRIVATE void sqlite3PcacheTruncate(PCache *pCache, Pgno pgno){ if( pCache->pCache ){ PgHdr *p; PgHdr *pNext; pcacheTrace(("%p.TRUNCATE %d\n",pCache,pgno)); for(p=pCache->pDirty; p; p=pNext){ pNext = p->pDirtyNext; /* This routine never gets call with a positive pgno except right ** after sqlite3PcacheCleanAll(). So if there are dirty pages, ** it must be that pgno==0. */ assert( p->pgno>0 ); if( p->pgno>pgno ){ assert( p->flags&PGHDR_DIRTY ); sqlite3PcacheMakeClean(p); } } if( pgno==0 && pCache->nRefSum ){ sqlite3_pcache_page *pPage1; pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0); if( ALWAYS(pPage1) ){ /* Page 1 is always available in cache, because ** pCache->nRefSum>0 */ memset(pPage1->pBuf, 0, pCache->szPage); pgno = 1; } } sqlite3GlobalConfig.pcache2.xTruncate(pCache->pCache, pgno+1); } } /* ** Close a cache. */ SQLITE_PRIVATE void sqlite3PcacheClose(PCache *pCache){ assert( pCache->pCache!=0 ); pcacheTrace(("%p.CLOSE\n",pCache)); sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); } /* ** Discard the contents of the cache. */ SQLITE_PRIVATE void sqlite3PcacheClear(PCache *pCache){ sqlite3PcacheTruncate(pCache, 0); } /* ** Merge two lists of pages connected by pDirty and in pgno order. ** Do not bother fixing the pDirtyPrev pointers. */ static PgHdr *pcacheMergeDirtyList(PgHdr *pA, PgHdr *pB){ PgHdr result, *pTail; pTail = &result; assert( pA!=0 && pB!=0 ); for(;;){ if( pA->pgnopgno ){ pTail->pDirty = pA; pTail = pA; pA = pA->pDirty; if( pA==0 ){ pTail->pDirty = pB; break; } }else{ pTail->pDirty = pB; pTail = pB; pB = pB->pDirty; if( pB==0 ){ pTail->pDirty = pA; break; } } } return result.pDirty; } /* ** Sort the list of pages in accending order by pgno. Pages are ** connected by pDirty pointers. The pDirtyPrev pointers are ** corrupted by this sort. ** ** Since there cannot be more than 2^31 distinct pages in a database, ** there cannot be more than 31 buckets required by the merge sorter. ** One extra bucket is added to catch overflow in case something ** ever changes to make the previous sentence incorrect. */ #define N_SORT_BUCKET 32 static PgHdr *pcacheSortDirtyList(PgHdr *pIn){ PgHdr *a[N_SORT_BUCKET], *p; int i; memset(a, 0, sizeof(a)); while( pIn ){ p = pIn; pIn = p->pDirty; p->pDirty = 0; for(i=0; ALWAYS(ipDirty; p; p=p->pDirtyNext){ p->pDirty = p->pDirtyNext; } return pcacheSortDirtyList(pCache->pDirty); } /* ** Return the total number of references to all pages held by the cache. ** ** This is not the total number of pages referenced, but the sum of the ** reference count for all pages. */ SQLITE_PRIVATE int sqlite3PcacheRefCount(PCache *pCache){ return pCache->nRefSum; } /* ** Return the number of references to the page supplied as an argument. */ SQLITE_PRIVATE int sqlite3PcachePageRefcount(PgHdr *p){ return p->nRef; } /* ** Return the total number of pages in the cache. */ SQLITE_PRIVATE int sqlite3PcachePagecount(PCache *pCache){ assert( pCache->pCache!=0 ); return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); } #ifdef SQLITE_TEST /* ** Get the suggested cache-size value. */ SQLITE_PRIVATE int sqlite3PcacheGetCachesize(PCache *pCache){ return numberOfCachePages(pCache); } #endif /* ** Set the suggested cache-size value. */ SQLITE_PRIVATE void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){ assert( pCache->pCache!=0 ); pCache->szCache = mxPage; sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, numberOfCachePages(pCache)); } /* ** Set the suggested cache-spill value. Make no changes if if the ** argument is zero. Return the effective cache-spill size, which will ** be the larger of the szSpill and szCache. */ SQLITE_PRIVATE int sqlite3PcacheSetSpillsize(PCache *p, int mxPage){ int res; assert( p->pCache!=0 ); if( mxPage ){ if( mxPage<0 ){ mxPage = (int)((-1024*(i64)mxPage)/(p->szPage+p->szExtra)); } p->szSpill = mxPage; } res = numberOfCachePages(p); if( resszSpill ) res = p->szSpill; return res; } /* ** Free up as much memory as possible from the page cache. */ SQLITE_PRIVATE void sqlite3PcacheShrink(PCache *pCache){ assert( pCache->pCache!=0 ); sqlite3GlobalConfig.pcache2.xShrink(pCache->pCache); } /* ** Return the size of the header added by this middleware layer ** in the page-cache hierarchy. */ SQLITE_PRIVATE int sqlite3HeaderSizePcache(void){ return ROUND8(sizeof(PgHdr)); } /* ** Return the number of dirty pages currently in the cache, as a percentage ** of the configured cache size. */ SQLITE_PRIVATE int sqlite3PCachePercentDirty(PCache *pCache){ PgHdr *pDirty; int nDirty = 0; int nCache = numberOfCachePages(pCache); for(pDirty=pCache->pDirty; pDirty; pDirty=pDirty->pDirtyNext) nDirty++; return nCache ? (int)(((i64)nDirty * 100) / nCache) : 0; } #ifdef SQLITE_DIRECT_OVERFLOW_READ /* ** Return true if there are one or more dirty pages in the cache. Else false. */ SQLITE_PRIVATE int sqlite3PCacheIsDirty(PCache *pCache){ return (pCache->pDirty!=0); } #endif #if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG) /* ** For all dirty pages currently in the cache, invoke the specified ** callback. This is only used if the SQLITE_CHECK_PAGES macro is ** defined. */ SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)){ PgHdr *pDirty; for(pDirty=pCache->pDirty; pDirty; pDirty=pDirty->pDirtyNext){ xIter(pDirty); } } #endif /************** End of pcache.c **********************************************/ /************** Begin file pcache1.c *****************************************/ /* ** 2008 November 05 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file implements the default page cache implementation (the ** sqlite3_pcache interface). It also contains part of the implementation ** of the SQLITE_CONFIG_PAGECACHE and sqlite3_release_memory() features. ** If the default page cache implementation is overridden, then neither of ** these two features are available. ** ** A Page cache line looks like this: ** ** ------------------------------------------------------------- ** | database page content | PgHdr1 | MemPage | PgHdr | ** ------------------------------------------------------------- ** ** The database page content is up front (so that buffer overreads tend to ** flow harmlessly into the PgHdr1, MemPage, and PgHdr extensions). MemPage ** is the extension added by the btree.c module containing information such ** as the database page number and how that database page is used. PgHdr ** is added by the pcache.c layer and contains information used to keep track ** of which pages are "dirty". PgHdr1 is an extension added by this ** module (pcache1.c). The PgHdr1 header is a subclass of sqlite3_pcache_page. ** PgHdr1 contains information needed to look up a page by its page number. ** The superclass sqlite3_pcache_page.pBuf points to the start of the ** database page content and sqlite3_pcache_page.pExtra points to PgHdr. ** ** The size of the extension (MemPage+PgHdr+PgHdr1) can be determined at ** runtime using sqlite3_config(SQLITE_CONFIG_PCACHE_HDRSZ, &size). The ** sizes of the extensions sum to 272 bytes on x64 for 3.8.10, but this ** size can vary according to architecture, compile-time options, and ** SQLite library version number. ** ** If SQLITE_PCACHE_SEPARATE_HEADER is defined, then the extension is obtained ** using a separate memory allocation from the database page content. This ** seeks to overcome the "clownshoe" problem (also called "internal ** fragmentation" in academic literature) of allocating a few bytes more ** than a power of two with the memory allocator rounding up to the next ** power of two, and leaving the rounded-up space unused. ** ** This module tracks pointers to PgHdr1 objects. Only pcache.c communicates ** with this module. Information is passed back and forth as PgHdr1 pointers. ** ** The pcache.c and pager.c modules deal pointers to PgHdr objects. ** The btree.c module deals with pointers to MemPage objects. ** ** SOURCE OF PAGE CACHE MEMORY: ** ** Memory for a page might come from any of three sources: ** ** (1) The general-purpose memory allocator - sqlite3Malloc() ** (2) Global page-cache memory provided using sqlite3_config() with ** SQLITE_CONFIG_PAGECACHE. ** (3) PCache-local bulk allocation. ** ** The third case is a chunk of heap memory (defaulting to 100 pages worth) ** that is allocated when the page cache is created. The size of the local ** bulk allocation can be adjusted using ** ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, (void*)0, 0, N). ** ** If N is positive, then N pages worth of memory are allocated using a single ** sqlite3Malloc() call and that memory is used for the first N pages allocated. ** Or if N is negative, then -1024*N bytes of memory are allocated and used ** for as many pages as can be accomodated. ** ** Only one of (2) or (3) can be used. Once the memory available to (2) or ** (3) is exhausted, subsequent allocations fail over to the general-purpose ** memory allocator (1). ** ** Earlier versions of SQLite used only methods (1) and (2). But experiments ** show that method (3) with N==100 provides about a 5% performance boost for ** common workloads. */ /* #include "sqliteInt.h" */ typedef struct PCache1 PCache1; typedef struct PgHdr1 PgHdr1; typedef struct PgFreeslot PgFreeslot; typedef struct PGroup PGroup; /* ** Each cache entry is represented by an instance of the following ** structure. Unless SQLITE_PCACHE_SEPARATE_HEADER is defined, a buffer of ** PgHdr1.pCache->szPage bytes is allocated directly before this structure ** in memory. ** ** Note: Variables isBulkLocal and isAnchor were once type "u8". That works, ** but causes a 2-byte gap in the structure for most architectures (since ** pointers must be either 4 or 8-byte aligned). As this structure is located ** in memory directly after the associated page data, if the database is ** corrupt, code at the b-tree layer may overread the page buffer and ** read part of this structure before the corruption is detected. This ** can cause a valgrind error if the unitialized gap is accessed. Using u16 ** ensures there is no such gap, and therefore no bytes of unitialized memory ** in the structure. */ struct PgHdr1 { sqlite3_pcache_page page; /* Base class. Must be first. pBuf & pExtra */ unsigned int iKey; /* Key value (page number) */ u16 isBulkLocal; /* This page from bulk local storage */ u16 isAnchor; /* This is the PGroup.lru element */ PgHdr1 *pNext; /* Next in hash table chain */ PCache1 *pCache; /* Cache that currently owns this page */ PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */ PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */ /* NB: pLruPrev is only valid if pLruNext!=0 */ }; /* ** A page is pinned if it is not on the LRU list. To be "pinned" means ** that the page is in active use and must not be deallocated. */ #define PAGE_IS_PINNED(p) ((p)->pLruNext==0) #define PAGE_IS_UNPINNED(p) ((p)->pLruNext!=0) /* Each page cache (or PCache) belongs to a PGroup. A PGroup is a set ** of one or more PCaches that are able to recycle each other's unpinned ** pages when they are under memory pressure. A PGroup is an instance of ** the following object. ** ** This page cache implementation works in one of two modes: ** ** (1) Every PCache is the sole member of its own PGroup. There is ** one PGroup per PCache. ** ** (2) There is a single global PGroup that all PCaches are a member ** of. ** ** Mode 1 uses more memory (since PCache instances are not able to rob ** unused pages from other PCaches) but it also operates without a mutex, ** and is therefore often faster. Mode 2 requires a mutex in order to be ** threadsafe, but recycles pages more efficiently. ** ** For mode (1), PGroup.mutex is NULL. For mode (2) there is only a single ** PGroup which is the pcache1.grp global variable and its mutex is ** SQLITE_MUTEX_STATIC_LRU. */ struct PGroup { sqlite3_mutex *mutex; /* MUTEX_STATIC_LRU or NULL */ unsigned int nMaxPage; /* Sum of nMax for purgeable caches */ unsigned int nMinPage; /* Sum of nMin for purgeable caches */ unsigned int mxPinned; /* nMaxpage + 10 - nMinPage */ unsigned int nPurgeable; /* Number of purgeable pages allocated */ PgHdr1 lru; /* The beginning and end of the LRU list */ }; /* Each page cache is an instance of the following object. Every ** open database file (including each in-memory database and each ** temporary or transient database) has a single page cache which ** is an instance of this object. ** ** Pointers to structures of this type are cast and returned as ** opaque sqlite3_pcache* handles. */ struct PCache1 { /* Cache configuration parameters. Page size (szPage) and the purgeable ** flag (bPurgeable) and the pnPurgeable pointer are all set when the ** cache is created and are never changed thereafter. nMax may be ** modified at any time by a call to the pcache1Cachesize() method. ** The PGroup mutex must be held when accessing nMax. */ PGroup *pGroup; /* PGroup this cache belongs to */ unsigned int *pnPurgeable; /* Pointer to pGroup->nPurgeable */ int szPage; /* Size of database content section */ int szExtra; /* sizeof(MemPage)+sizeof(PgHdr) */ int szAlloc; /* Total size of one pcache line */ int bPurgeable; /* True if cache is purgeable */ unsigned int nMin; /* Minimum number of pages reserved */ unsigned int nMax; /* Configured "cache_size" value */ unsigned int n90pct; /* nMax*9/10 */ unsigned int iMaxKey; /* Largest key seen since xTruncate() */ unsigned int nPurgeableDummy; /* pnPurgeable points here when not used*/ /* Hash table of all pages. The following variables may only be accessed ** when the accessor is holding the PGroup mutex. */ unsigned int nRecyclable; /* Number of pages in the LRU list */ unsigned int nPage; /* Total number of pages in apHash */ unsigned int nHash; /* Number of slots in apHash[] */ PgHdr1 **apHash; /* Hash table for fast lookup by key */ PgHdr1 *pFree; /* List of unused pcache-local pages */ void *pBulk; /* Bulk memory used by pcache-local */ }; /* ** Free slots in the allocator used to divide up the global page cache ** buffer provided using the SQLITE_CONFIG_PAGECACHE mechanism. */ struct PgFreeslot { PgFreeslot *pNext; /* Next free slot */ }; /* ** Global data used by this cache. */ static SQLITE_WSD struct PCacheGlobal { PGroup grp; /* The global PGroup for mode (2) */ /* Variables related to SQLITE_CONFIG_PAGECACHE settings. The ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all ** fixed at sqlite3_initialize() time and do not require mutex protection. ** The nFreeSlot and pFree values do require mutex protection. */ int isInit; /* True if initialized */ int separateCache; /* Use a new PGroup for each PCache */ int nInitPage; /* Initial bulk allocation size */ int szSlot; /* Size of each free slot */ int nSlot; /* The number of pcache slots */ int nReserve; /* Try to keep nFreeSlot above this */ void *pStart, *pEnd; /* Bounds of global page cache memory */ /* Above requires no mutex. Use mutex below for variable that follow. */ sqlite3_mutex *mutex; /* Mutex for accessing the following: */ PgFreeslot *pFree; /* Free page blocks */ int nFreeSlot; /* Number of unused pcache slots */ /* The following value requires a mutex to change. We skip the mutex on ** reading because (1) most platforms read a 32-bit integer atomically and ** (2) even if an incorrect value is read, no great harm is done since this ** is really just an optimization. */ int bUnderPressure; /* True if low on PAGECACHE memory */ } pcache1_g; /* ** All code in this file should access the global structure above via the ** alias "pcache1". This ensures that the WSD emulation is used when ** compiling for systems that do not support real WSD. */ #define pcache1 (GLOBAL(struct PCacheGlobal, pcache1_g)) /* ** Macros to enter and leave the PCache LRU mutex. */ #if !defined(SQLITE_ENABLE_MEMORY_MANAGEMENT) || SQLITE_THREADSAFE==0 # define pcache1EnterMutex(X) assert((X)->mutex==0) # define pcache1LeaveMutex(X) assert((X)->mutex==0) # define PCACHE1_MIGHT_USE_GROUP_MUTEX 0 #else # define pcache1EnterMutex(X) sqlite3_mutex_enter((X)->mutex) # define pcache1LeaveMutex(X) sqlite3_mutex_leave((X)->mutex) # define PCACHE1_MIGHT_USE_GROUP_MUTEX 1 #endif /******************************************************************************/ /******** Page Allocation/SQLITE_CONFIG_PCACHE Related Functions **************/ /* ** This function is called during initialization if a static buffer is ** supplied to use for the page-cache by passing the SQLITE_CONFIG_PAGECACHE ** verb to sqlite3_config(). Parameter pBuf points to an allocation large ** enough to contain 'n' buffers of 'sz' bytes each. ** ** This routine is called from sqlite3_initialize() and so it is guaranteed ** to be serialized already. There is no need for further mutexing. */ SQLITE_PRIVATE void sqlite3PCacheBufferSetup(void *pBuf, int sz, int n){ if( pcache1.isInit ){ PgFreeslot *p; if( pBuf==0 ) sz = n = 0; if( n==0 ) sz = 0; sz = ROUNDDOWN8(sz); pcache1.szSlot = sz; pcache1.nSlot = pcache1.nFreeSlot = n; pcache1.nReserve = n>90 ? 10 : (n/10 + 1); pcache1.pStart = pBuf; pcache1.pFree = 0; pcache1.bUnderPressure = 0; while( n-- ){ p = (PgFreeslot*)pBuf; p->pNext = pcache1.pFree; pcache1.pFree = p; pBuf = (void*)&((char*)pBuf)[sz]; } pcache1.pEnd = pBuf; } } /* ** Try to initialize the pCache->pFree and pCache->pBulk fields. Return ** true if pCache->pFree ends up containing one or more free pages. */ static int pcache1InitBulk(PCache1 *pCache){ i64 szBulk; char *zBulk; if( pcache1.nInitPage==0 ) return 0; /* Do not bother with a bulk allocation if the cache size very small */ if( pCache->nMax<3 ) return 0; sqlite3BeginBenignMalloc(); if( pcache1.nInitPage>0 ){ szBulk = pCache->szAlloc * (i64)pcache1.nInitPage; }else{ szBulk = -1024 * (i64)pcache1.nInitPage; } if( szBulk > pCache->szAlloc*(i64)pCache->nMax ){ szBulk = pCache->szAlloc*(i64)pCache->nMax; } zBulk = pCache->pBulk = sqlite3Malloc( szBulk ); sqlite3EndBenignMalloc(); if( zBulk ){ int nBulk = sqlite3MallocSize(zBulk)/pCache->szAlloc; do{ PgHdr1 *pX = (PgHdr1*)&zBulk[pCache->szPage]; pX->page.pBuf = zBulk; pX->page.pExtra = &pX[1]; pX->isBulkLocal = 1; pX->isAnchor = 0; pX->pNext = pCache->pFree; pX->pLruPrev = 0; /* Initializing this saves a valgrind error */ pCache->pFree = pX; zBulk += pCache->szAlloc; }while( --nBulk ); } return pCache->pFree!=0; } /* ** Malloc function used within this file to allocate space from the buffer ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no ** such buffer exists or there is no space left in it, this function falls ** back to sqlite3Malloc(). ** ** Multiple threads can run this routine at the same time. Global variables ** in pcache1 need to be protected via mutex. */ static void *pcache1Alloc(int nByte){ void *p = 0; assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); if( nByte<=pcache1.szSlot ){ sqlite3_mutex_enter(pcache1.mutex); p = (PgHdr1 *)pcache1.pFree; if( p ){ pcache1.pFree = pcache1.pFree->pNext; pcache1.nFreeSlot--; pcache1.bUnderPressure = pcache1.nFreeSlot=0 ); sqlite3StatusHighwater(SQLITE_STATUS_PAGECACHE_SIZE, nByte); sqlite3StatusUp(SQLITE_STATUS_PAGECACHE_USED, 1); } sqlite3_mutex_leave(pcache1.mutex); } if( p==0 ){ /* Memory is not available in the SQLITE_CONFIG_PAGECACHE pool. Get ** it from sqlite3Malloc instead. */ p = sqlite3Malloc(nByte); #ifndef SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS if( p ){ int sz = sqlite3MallocSize(p); sqlite3_mutex_enter(pcache1.mutex); sqlite3StatusHighwater(SQLITE_STATUS_PAGECACHE_SIZE, nByte); sqlite3StatusUp(SQLITE_STATUS_PAGECACHE_OVERFLOW, sz); sqlite3_mutex_leave(pcache1.mutex); } #endif sqlite3MemdebugSetType(p, MEMTYPE_PCACHE); } return p; } /* ** Free an allocated buffer obtained from pcache1Alloc(). */ static void pcache1Free(void *p){ if( p==0 ) return; if( SQLITE_WITHIN(p, pcache1.pStart, pcache1.pEnd) ){ PgFreeslot *pSlot; sqlite3_mutex_enter(pcache1.mutex); sqlite3StatusDown(SQLITE_STATUS_PAGECACHE_USED, 1); pSlot = (PgFreeslot*)p; pSlot->pNext = pcache1.pFree; pcache1.pFree = pSlot; pcache1.nFreeSlot++; pcache1.bUnderPressure = pcache1.nFreeSlot=pcache1.pStart && ppGroup->mutex) ); if( pCache->pFree || (pCache->nPage==0 && pcache1InitBulk(pCache)) ){ assert( pCache->pFree!=0 ); p = pCache->pFree; pCache->pFree = p->pNext; p->pNext = 0; }else{ #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT /* The group mutex must be released before pcache1Alloc() is called. This ** is because it might call sqlite3_release_memory(), which assumes that ** this mutex is not held. */ assert( pcache1.separateCache==0 ); assert( pCache->pGroup==&pcache1.grp ); pcache1LeaveMutex(pCache->pGroup); #endif if( benignMalloc ){ sqlite3BeginBenignMalloc(); } #ifdef SQLITE_PCACHE_SEPARATE_HEADER pPg = pcache1Alloc(pCache->szPage); p = sqlite3Malloc(sizeof(PgHdr1) + pCache->szExtra); if( !pPg || !p ){ pcache1Free(pPg); sqlite3_free(p); pPg = 0; } #else pPg = pcache1Alloc(pCache->szAlloc); #endif if( benignMalloc ){ sqlite3EndBenignMalloc(); } #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT pcache1EnterMutex(pCache->pGroup); #endif if( pPg==0 ) return 0; #ifndef SQLITE_PCACHE_SEPARATE_HEADER p = (PgHdr1 *)&((u8 *)pPg)[pCache->szPage]; #endif p->page.pBuf = pPg; p->page.pExtra = &p[1]; p->isBulkLocal = 0; p->isAnchor = 0; p->pLruPrev = 0; /* Initializing this saves a valgrind error */ } (*pCache->pnPurgeable)++; return p; } /* ** Free a page object allocated by pcache1AllocPage(). */ static void pcache1FreePage(PgHdr1 *p){ PCache1 *pCache; assert( p!=0 ); pCache = p->pCache; assert( sqlite3_mutex_held(p->pCache->pGroup->mutex) ); if( p->isBulkLocal ){ p->pNext = pCache->pFree; pCache->pFree = p; }else{ pcache1Free(p->page.pBuf); #ifdef SQLITE_PCACHE_SEPARATE_HEADER sqlite3_free(p); #endif } (*pCache->pnPurgeable)--; } /* ** Malloc function used by SQLite to obtain space from the buffer configured ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer ** exists, this function falls back to sqlite3Malloc(). */ SQLITE_PRIVATE void *sqlite3PageMalloc(int sz){ assert( sz<=65536+8 ); /* These allocations are never very large */ return pcache1Alloc(sz); } /* ** Free an allocated buffer obtained from sqlite3PageMalloc(). */ SQLITE_PRIVATE void sqlite3PageFree(void *p){ pcache1Free(p); } /* ** Return true if it desirable to avoid allocating a new page cache ** entry. ** ** If memory was allocated specifically to the page cache using ** SQLITE_CONFIG_PAGECACHE but that memory has all been used, then ** it is desirable to avoid allocating a new page cache entry because ** presumably SQLITE_CONFIG_PAGECACHE was suppose to be sufficient ** for all page cache needs and we should not need to spill the ** allocation onto the heap. ** ** Or, the heap is used for all page cache memory but the heap is ** under memory pressure, then again it is desirable to avoid ** allocating a new page cache entry in order to avoid stressing ** the heap even further. */ static int pcache1UnderMemoryPressure(PCache1 *pCache){ if( pcache1.nSlot && (pCache->szPage+pCache->szExtra)<=pcache1.szSlot ){ return pcache1.bUnderPressure; }else{ return sqlite3HeapNearlyFull(); } } /******************************************************************************/ /******** General Implementation Functions ************************************/ /* ** This function is used to resize the hash table used by the cache passed ** as the first argument. ** ** The PCache mutex must be held when this function is called. */ static void pcache1ResizeHash(PCache1 *p){ PgHdr1 **apNew; unsigned int nNew; unsigned int i; assert( sqlite3_mutex_held(p->pGroup->mutex) ); nNew = p->nHash*2; if( nNew<256 ){ nNew = 256; } pcache1LeaveMutex(p->pGroup); if( p->nHash ){ sqlite3BeginBenignMalloc(); } apNew = (PgHdr1 **)sqlite3MallocZero(sizeof(PgHdr1 *)*nNew); if( p->nHash ){ sqlite3EndBenignMalloc(); } pcache1EnterMutex(p->pGroup); if( apNew ){ for(i=0; inHash; i++){ PgHdr1 *pPage; PgHdr1 *pNext = p->apHash[i]; while( (pPage = pNext)!=0 ){ unsigned int h = pPage->iKey % nNew; pNext = pPage->pNext; pPage->pNext = apNew[h]; apNew[h] = pPage; } } sqlite3_free(p->apHash); p->apHash = apNew; p->nHash = nNew; } } /* ** This function is used internally to remove the page pPage from the ** PGroup LRU list, if is part of it. If pPage is not part of the PGroup ** LRU list, then this function is a no-op. ** ** The PGroup mutex must be held when this function is called. */ static PgHdr1 *pcache1PinPage(PgHdr1 *pPage){ assert( pPage!=0 ); assert( PAGE_IS_UNPINNED(pPage) ); assert( pPage->pLruNext ); assert( pPage->pLruPrev ); assert( sqlite3_mutex_held(pPage->pCache->pGroup->mutex) ); pPage->pLruPrev->pLruNext = pPage->pLruNext; pPage->pLruNext->pLruPrev = pPage->pLruPrev; pPage->pLruNext = 0; /* pPage->pLruPrev = 0; ** No need to clear pLruPrev as it is never accessed if pLruNext is 0 */ assert( pPage->isAnchor==0 ); assert( pPage->pCache->pGroup->lru.isAnchor==1 ); pPage->pCache->nRecyclable--; return pPage; } /* ** Remove the page supplied as an argument from the hash table ** (PCache1.apHash structure) that it is currently stored in. ** Also free the page if freePage is true. ** ** The PGroup mutex must be held when this function is called. */ static void pcache1RemoveFromHash(PgHdr1 *pPage, int freeFlag){ unsigned int h; PCache1 *pCache = pPage->pCache; PgHdr1 **pp; assert( sqlite3_mutex_held(pCache->pGroup->mutex) ); h = pPage->iKey % pCache->nHash; for(pp=&pCache->apHash[h]; (*pp)!=pPage; pp=&(*pp)->pNext); *pp = (*pp)->pNext; pCache->nPage--; if( freeFlag ) pcache1FreePage(pPage); } /* ** If there are currently more than nMaxPage pages allocated, try ** to recycle pages to reduce the number allocated to nMaxPage. */ static void pcache1EnforceMaxPage(PCache1 *pCache){ PGroup *pGroup = pCache->pGroup; PgHdr1 *p; assert( sqlite3_mutex_held(pGroup->mutex) ); while( pGroup->nPurgeable>pGroup->nMaxPage && (p=pGroup->lru.pLruPrev)->isAnchor==0 ){ assert( p->pCache->pGroup==pGroup ); assert( PAGE_IS_UNPINNED(p) ); pcache1PinPage(p); pcache1RemoveFromHash(p, 1); } if( pCache->nPage==0 && pCache->pBulk ){ sqlite3_free(pCache->pBulk); pCache->pBulk = pCache->pFree = 0; } } /* ** Discard all pages from cache pCache with a page number (key value) ** greater than or equal to iLimit. Any pinned pages that meet this ** criteria are unpinned before they are discarded. ** ** The PCache mutex must be held when this function is called. */ static void pcache1TruncateUnsafe( PCache1 *pCache, /* The cache to truncate */ unsigned int iLimit /* Drop pages with this pgno or larger */ ){ TESTONLY( int nPage = 0; ) /* To assert pCache->nPage is correct */ unsigned int h, iStop; assert( sqlite3_mutex_held(pCache->pGroup->mutex) ); assert( pCache->iMaxKey >= iLimit ); assert( pCache->nHash > 0 ); if( pCache->iMaxKey - iLimit < pCache->nHash ){ /* If we are just shaving the last few pages off the end of the ** cache, then there is no point in scanning the entire hash table. ** Only scan those hash slots that might contain pages that need to ** be removed. */ h = iLimit % pCache->nHash; iStop = pCache->iMaxKey % pCache->nHash; TESTONLY( nPage = -10; ) /* Disable the pCache->nPage validity check */ }else{ /* This is the general case where many pages are being removed. ** It is necessary to scan the entire hash table */ h = pCache->nHash/2; iStop = h - 1; } for(;;){ PgHdr1 **pp; PgHdr1 *pPage; assert( hnHash ); pp = &pCache->apHash[h]; while( (pPage = *pp)!=0 ){ if( pPage->iKey>=iLimit ){ pCache->nPage--; *pp = pPage->pNext; if( PAGE_IS_UNPINNED(pPage) ) pcache1PinPage(pPage); pcache1FreePage(pPage); }else{ pp = &pPage->pNext; TESTONLY( if( nPage>=0 ) nPage++; ) } } if( h==iStop ) break; h = (h+1) % pCache->nHash; } assert( nPage<0 || pCache->nPage==(unsigned)nPage ); } /******************************************************************************/ /******** sqlite3_pcache Methods **********************************************/ /* ** Implementation of the sqlite3_pcache.xInit method. */ static int pcache1Init(void *NotUsed){ UNUSED_PARAMETER(NotUsed); assert( pcache1.isInit==0 ); memset(&pcache1, 0, sizeof(pcache1)); /* ** The pcache1.separateCache variable is true if each PCache has its own ** private PGroup (mode-1). pcache1.separateCache is false if the single ** PGroup in pcache1.grp is used for all page caches (mode-2). ** ** * Always use a unified cache (mode-2) if ENABLE_MEMORY_MANAGEMENT ** ** * Use a unified cache in single-threaded applications that have ** configured a start-time buffer for use as page-cache memory using ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, pBuf, sz, N) with non-NULL ** pBuf argument. ** ** * Otherwise use separate caches (mode-1) */ #if defined(SQLITE_ENABLE_MEMORY_MANAGEMENT) pcache1.separateCache = 0; #elif SQLITE_THREADSAFE pcache1.separateCache = sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.bCoreMutex>0; #else pcache1.separateCache = sqlite3GlobalConfig.pPage==0; #endif #if SQLITE_THREADSAFE if( sqlite3GlobalConfig.bCoreMutex ){ pcache1.grp.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU); pcache1.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PMEM); } #endif if( pcache1.separateCache && sqlite3GlobalConfig.nPage!=0 && sqlite3GlobalConfig.pPage==0 ){ pcache1.nInitPage = sqlite3GlobalConfig.nPage; }else{ pcache1.nInitPage = 0; } pcache1.grp.mxPinned = 10; pcache1.isInit = 1; return SQLITE_OK; } /* ** Implementation of the sqlite3_pcache.xShutdown method. ** Note that the static mutex allocated in xInit does ** not need to be freed. */ static void pcache1Shutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); assert( pcache1.isInit!=0 ); memset(&pcache1, 0, sizeof(pcache1)); } /* forward declaration */ static void pcache1Destroy(sqlite3_pcache *p); /* ** Implementation of the sqlite3_pcache.xCreate method. ** ** Allocate a new cache. */ static sqlite3_pcache *pcache1Create(int szPage, int szExtra, int bPurgeable){ PCache1 *pCache; /* The newly created page cache */ PGroup *pGroup; /* The group the new page cache will belong to */ int sz; /* Bytes of memory required to allocate the new cache */ assert( (szPage & (szPage-1))==0 && szPage>=512 && szPage<=65536 ); assert( szExtra < 300 ); sz = sizeof(PCache1) + sizeof(PGroup)*pcache1.separateCache; pCache = (PCache1 *)sqlite3MallocZero(sz); if( pCache ){ if( pcache1.separateCache ){ pGroup = (PGroup*)&pCache[1]; pGroup->mxPinned = 10; }else{ pGroup = &pcache1.grp; } pcache1EnterMutex(pGroup); if( pGroup->lru.isAnchor==0 ){ pGroup->lru.isAnchor = 1; pGroup->lru.pLruPrev = pGroup->lru.pLruNext = &pGroup->lru; } pCache->pGroup = pGroup; pCache->szPage = szPage; pCache->szExtra = szExtra; pCache->szAlloc = szPage + szExtra + ROUND8(sizeof(PgHdr1)); pCache->bPurgeable = (bPurgeable ? 1 : 0); pcache1ResizeHash(pCache); if( bPurgeable ){ pCache->nMin = 10; pGroup->nMinPage += pCache->nMin; pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; pCache->pnPurgeable = &pGroup->nPurgeable; }else{ pCache->pnPurgeable = &pCache->nPurgeableDummy; } pcache1LeaveMutex(pGroup); if( pCache->nHash==0 ){ pcache1Destroy((sqlite3_pcache*)pCache); pCache = 0; } } return (sqlite3_pcache *)pCache; } /* ** Implementation of the sqlite3_pcache.xCachesize method. ** ** Configure the cache_size limit for a cache. */ static void pcache1Cachesize(sqlite3_pcache *p, int nMax){ PCache1 *pCache = (PCache1 *)p; u32 n; assert( nMax>=0 ); if( pCache->bPurgeable ){ PGroup *pGroup = pCache->pGroup; pcache1EnterMutex(pGroup); n = (u32)nMax; if( n > 0x7fff0000 - pGroup->nMaxPage + pCache->nMax ){ n = 0x7fff0000 - pGroup->nMaxPage + pCache->nMax; } pGroup->nMaxPage += (n - pCache->nMax); pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; pCache->nMax = n; pCache->n90pct = pCache->nMax*9/10; pcache1EnforceMaxPage(pCache); pcache1LeaveMutex(pGroup); } } /* ** Implementation of the sqlite3_pcache.xShrink method. ** ** Free up as much memory as possible. */ static void pcache1Shrink(sqlite3_pcache *p){ PCache1 *pCache = (PCache1*)p; if( pCache->bPurgeable ){ PGroup *pGroup = pCache->pGroup; unsigned int savedMaxPage; pcache1EnterMutex(pGroup); savedMaxPage = pGroup->nMaxPage; pGroup->nMaxPage = 0; pcache1EnforceMaxPage(pCache); pGroup->nMaxPage = savedMaxPage; pcache1LeaveMutex(pGroup); } } /* ** Implementation of the sqlite3_pcache.xPagecount method. */ static int pcache1Pagecount(sqlite3_pcache *p){ int n; PCache1 *pCache = (PCache1*)p; pcache1EnterMutex(pCache->pGroup); n = pCache->nPage; pcache1LeaveMutex(pCache->pGroup); return n; } /* ** Implement steps 3, 4, and 5 of the pcache1Fetch() algorithm described ** in the header of the pcache1Fetch() procedure. ** ** This steps are broken out into a separate procedure because they are ** usually not needed, and by avoiding the stack initialization required ** for these steps, the main pcache1Fetch() procedure can run faster. */ static SQLITE_NOINLINE PgHdr1 *pcache1FetchStage2( PCache1 *pCache, unsigned int iKey, int createFlag ){ unsigned int nPinned; PGroup *pGroup = pCache->pGroup; PgHdr1 *pPage = 0; /* Step 3: Abort if createFlag is 1 but the cache is nearly full */ assert( pCache->nPage >= pCache->nRecyclable ); nPinned = pCache->nPage - pCache->nRecyclable; assert( pGroup->mxPinned == pGroup->nMaxPage + 10 - pGroup->nMinPage ); assert( pCache->n90pct == pCache->nMax*9/10 ); if( createFlag==1 && ( nPinned>=pGroup->mxPinned || nPinned>=pCache->n90pct || (pcache1UnderMemoryPressure(pCache) && pCache->nRecyclablenPage>=pCache->nHash ) pcache1ResizeHash(pCache); assert( pCache->nHash>0 && pCache->apHash ); /* Step 4. Try to recycle a page. */ if( pCache->bPurgeable && !pGroup->lru.pLruPrev->isAnchor && ((pCache->nPage+1>=pCache->nMax) || pcache1UnderMemoryPressure(pCache)) ){ PCache1 *pOther; pPage = pGroup->lru.pLruPrev; assert( PAGE_IS_UNPINNED(pPage) ); pcache1RemoveFromHash(pPage, 0); pcache1PinPage(pPage); pOther = pPage->pCache; if( pOther->szAlloc != pCache->szAlloc ){ pcache1FreePage(pPage); pPage = 0; }else{ pGroup->nPurgeable -= (pOther->bPurgeable - pCache->bPurgeable); } } /* Step 5. If a usable page buffer has still not been found, ** attempt to allocate a new one. */ if( !pPage ){ pPage = pcache1AllocPage(pCache, createFlag==1); } if( pPage ){ unsigned int h = iKey % pCache->nHash; pCache->nPage++; pPage->iKey = iKey; pPage->pNext = pCache->apHash[h]; pPage->pCache = pCache; pPage->pLruNext = 0; /* pPage->pLruPrev = 0; ** No need to clear pLruPrev since it is not accessed when pLruNext==0 */ *(void **)pPage->page.pExtra = 0; pCache->apHash[h] = pPage; if( iKey>pCache->iMaxKey ){ pCache->iMaxKey = iKey; } } return pPage; } /* ** Implementation of the sqlite3_pcache.xFetch method. ** ** Fetch a page by key value. ** ** Whether or not a new page may be allocated by this function depends on ** the value of the createFlag argument. 0 means do not allocate a new ** page. 1 means allocate a new page if space is easily available. 2 ** means to try really hard to allocate a new page. ** ** For a non-purgeable cache (a cache used as the storage for an in-memory ** database) there is really no difference between createFlag 1 and 2. So ** the calling function (pcache.c) will never have a createFlag of 1 on ** a non-purgeable cache. ** ** There are three different approaches to obtaining space for a page, ** depending on the value of parameter createFlag (which may be 0, 1 or 2). ** ** 1. Regardless of the value of createFlag, the cache is searched for a ** copy of the requested page. If one is found, it is returned. ** ** 2. If createFlag==0 and the page is not already in the cache, NULL is ** returned. ** ** 3. If createFlag is 1, and the page is not already in the cache, then ** return NULL (do not allocate a new page) if any of the following ** conditions are true: ** ** (a) the number of pages pinned by the cache is greater than ** PCache1.nMax, or ** ** (b) the number of pages pinned by the cache is greater than ** the sum of nMax for all purgeable caches, less the sum of ** nMin for all other purgeable caches, or ** ** 4. If none of the first three conditions apply and the cache is marked ** as purgeable, and if one of the following is true: ** ** (a) The number of pages allocated for the cache is already ** PCache1.nMax, or ** ** (b) The number of pages allocated for all purgeable caches is ** already equal to or greater than the sum of nMax for all ** purgeable caches, ** ** (c) The system is under memory pressure and wants to avoid ** unnecessary pages cache entry allocations ** ** then attempt to recycle a page from the LRU list. If it is the right ** size, return the recycled buffer. Otherwise, free the buffer and ** proceed to step 5. ** ** 5. Otherwise, allocate and return a new page buffer. ** ** There are two versions of this routine. pcache1FetchWithMutex() is ** the general case. pcache1FetchNoMutex() is a faster implementation for ** the common case where pGroup->mutex is NULL. The pcache1Fetch() wrapper ** invokes the appropriate routine. */ static PgHdr1 *pcache1FetchNoMutex( sqlite3_pcache *p, unsigned int iKey, int createFlag ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage = 0; /* Step 1: Search the hash table for an existing entry. */ pPage = pCache->apHash[iKey % pCache->nHash]; while( pPage && pPage->iKey!=iKey ){ pPage = pPage->pNext; } /* Step 2: If the page was found in the hash table, then return it. ** If the page was not in the hash table and createFlag is 0, abort. ** Otherwise (page not in hash and createFlag!=0) continue with ** subsequent steps to try to create the page. */ if( pPage ){ if( PAGE_IS_UNPINNED(pPage) ){ return pcache1PinPage(pPage); }else{ return pPage; } }else if( createFlag ){ /* Steps 3, 4, and 5 implemented by this subroutine */ return pcache1FetchStage2(pCache, iKey, createFlag); }else{ return 0; } } #if PCACHE1_MIGHT_USE_GROUP_MUTEX static PgHdr1 *pcache1FetchWithMutex( sqlite3_pcache *p, unsigned int iKey, int createFlag ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage; pcache1EnterMutex(pCache->pGroup); pPage = pcache1FetchNoMutex(p, iKey, createFlag); assert( pPage==0 || pCache->iMaxKey>=iKey ); pcache1LeaveMutex(pCache->pGroup); return pPage; } #endif static sqlite3_pcache_page *pcache1Fetch( sqlite3_pcache *p, unsigned int iKey, int createFlag ){ #if PCACHE1_MIGHT_USE_GROUP_MUTEX || defined(SQLITE_DEBUG) PCache1 *pCache = (PCache1 *)p; #endif assert( offsetof(PgHdr1,page)==0 ); assert( pCache->bPurgeable || createFlag!=1 ); assert( pCache->bPurgeable || pCache->nMin==0 ); assert( pCache->bPurgeable==0 || pCache->nMin==10 ); assert( pCache->nMin==0 || pCache->bPurgeable ); assert( pCache->nHash>0 ); #if PCACHE1_MIGHT_USE_GROUP_MUTEX if( pCache->pGroup->mutex ){ return (sqlite3_pcache_page*)pcache1FetchWithMutex(p, iKey, createFlag); }else #endif { return (sqlite3_pcache_page*)pcache1FetchNoMutex(p, iKey, createFlag); } } /* ** Implementation of the sqlite3_pcache.xUnpin method. ** ** Mark a page as unpinned (eligible for asynchronous recycling). */ static void pcache1Unpin( sqlite3_pcache *p, sqlite3_pcache_page *pPg, int reuseUnlikely ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage = (PgHdr1 *)pPg; PGroup *pGroup = pCache->pGroup; assert( pPage->pCache==pCache ); pcache1EnterMutex(pGroup); /* It is an error to call this function if the page is already ** part of the PGroup LRU list. */ assert( pPage->pLruNext==0 ); assert( PAGE_IS_PINNED(pPage) ); if( reuseUnlikely || pGroup->nPurgeable>pGroup->nMaxPage ){ pcache1RemoveFromHash(pPage, 1); }else{ /* Add the page to the PGroup LRU list. */ PgHdr1 **ppFirst = &pGroup->lru.pLruNext; pPage->pLruPrev = &pGroup->lru; (pPage->pLruNext = *ppFirst)->pLruPrev = pPage; *ppFirst = pPage; pCache->nRecyclable++; } pcache1LeaveMutex(pCache->pGroup); } /* ** Implementation of the sqlite3_pcache.xRekey method. */ static void pcache1Rekey( sqlite3_pcache *p, sqlite3_pcache_page *pPg, unsigned int iOld, unsigned int iNew ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage = (PgHdr1 *)pPg; PgHdr1 **pp; unsigned int h; assert( pPage->iKey==iOld ); assert( pPage->pCache==pCache ); pcache1EnterMutex(pCache->pGroup); h = iOld%pCache->nHash; pp = &pCache->apHash[h]; while( (*pp)!=pPage ){ pp = &(*pp)->pNext; } *pp = pPage->pNext; h = iNew%pCache->nHash; pPage->iKey = iNew; pPage->pNext = pCache->apHash[h]; pCache->apHash[h] = pPage; if( iNew>pCache->iMaxKey ){ pCache->iMaxKey = iNew; } pcache1LeaveMutex(pCache->pGroup); } /* ** Implementation of the sqlite3_pcache.xTruncate method. ** ** Discard all unpinned pages in the cache with a page number equal to ** or greater than parameter iLimit. Any pinned pages with a page number ** equal to or greater than iLimit are implicitly unpinned. */ static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){ PCache1 *pCache = (PCache1 *)p; pcache1EnterMutex(pCache->pGroup); if( iLimit<=pCache->iMaxKey ){ pcache1TruncateUnsafe(pCache, iLimit); pCache->iMaxKey = iLimit-1; } pcache1LeaveMutex(pCache->pGroup); } /* ** Implementation of the sqlite3_pcache.xDestroy method. ** ** Destroy a cache allocated using pcache1Create(). */ static void pcache1Destroy(sqlite3_pcache *p){ PCache1 *pCache = (PCache1 *)p; PGroup *pGroup = pCache->pGroup; assert( pCache->bPurgeable || (pCache->nMax==0 && pCache->nMin==0) ); pcache1EnterMutex(pGroup); if( pCache->nPage ) pcache1TruncateUnsafe(pCache, 0); assert( pGroup->nMaxPage >= pCache->nMax ); pGroup->nMaxPage -= pCache->nMax; assert( pGroup->nMinPage >= pCache->nMin ); pGroup->nMinPage -= pCache->nMin; pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; pcache1EnforceMaxPage(pCache); pcache1LeaveMutex(pGroup); sqlite3_free(pCache->pBulk); sqlite3_free(pCache->apHash); sqlite3_free(pCache); } /* ** This function is called during initialization (sqlite3_initialize()) to ** install the default pluggable cache module, assuming the user has not ** already provided an alternative. */ SQLITE_PRIVATE void sqlite3PCacheSetDefault(void){ static const sqlite3_pcache_methods2 defaultMethods = { 1, /* iVersion */ 0, /* pArg */ pcache1Init, /* xInit */ pcache1Shutdown, /* xShutdown */ pcache1Create, /* xCreate */ pcache1Cachesize, /* xCachesize */ pcache1Pagecount, /* xPagecount */ pcache1Fetch, /* xFetch */ pcache1Unpin, /* xUnpin */ pcache1Rekey, /* xRekey */ pcache1Truncate, /* xTruncate */ pcache1Destroy, /* xDestroy */ pcache1Shrink /* xShrink */ }; sqlite3_config(SQLITE_CONFIG_PCACHE2, &defaultMethods); } /* ** Return the size of the header on each page of this PCACHE implementation. */ SQLITE_PRIVATE int sqlite3HeaderSizePcache1(void){ return ROUND8(sizeof(PgHdr1)); } /* ** Return the global mutex used by this PCACHE implementation. The ** sqlite3_status() routine needs access to this mutex. */ SQLITE_PRIVATE sqlite3_mutex *sqlite3Pcache1Mutex(void){ return pcache1.mutex; } #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT /* ** This function is called to free superfluous dynamically allocated memory ** held by the pager system. Memory in use by any SQLite pager allocated ** by the current thread may be sqlite3_free()ed. ** ** nReq is the number of bytes of memory required. Once this much has ** been released, the function returns. The return value is the total number ** of bytes of memory released. */ SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int nReq){ int nFree = 0; assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); assert( sqlite3_mutex_notheld(pcache1.mutex) ); if( sqlite3GlobalConfig.pPage==0 ){ PgHdr1 *p; pcache1EnterMutex(&pcache1.grp); while( (nReq<0 || nFreeisAnchor==0 ){ nFree += pcache1MemSize(p->page.pBuf); #ifdef SQLITE_PCACHE_SEPARATE_HEADER nFree += sqlite3MemSize(p); #endif assert( PAGE_IS_UNPINNED(p) ); pcache1PinPage(p); pcache1RemoveFromHash(p, 1); } pcache1LeaveMutex(&pcache1.grp); } return nFree; } #endif /* SQLITE_ENABLE_MEMORY_MANAGEMENT */ #ifdef SQLITE_TEST /* ** This function is used by test procedures to inspect the internal state ** of the global cache. */ SQLITE_PRIVATE void sqlite3PcacheStats( int *pnCurrent, /* OUT: Total number of pages cached */ int *pnMax, /* OUT: Global maximum cache size */ int *pnMin, /* OUT: Sum of PCache1.nMin for purgeable caches */ int *pnRecyclable /* OUT: Total number of pages available for recycling */ ){ PgHdr1 *p; int nRecyclable = 0; for(p=pcache1.grp.lru.pLruNext; p && !p->isAnchor; p=p->pLruNext){ assert( PAGE_IS_UNPINNED(p) ); nRecyclable++; } *pnCurrent = pcache1.grp.nPurgeable; *pnMax = (int)pcache1.grp.nMaxPage; *pnMin = (int)pcache1.grp.nMinPage; *pnRecyclable = nRecyclable; } #endif /************** End of pcache1.c *********************************************/ /************** Begin file rowset.c ******************************************/ /* ** 2008 December 3 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This module implements an object we call a "RowSet". ** ** The RowSet object is a collection of rowids. Rowids ** are inserted into the RowSet in an arbitrary order. Inserts ** can be intermixed with tests to see if a given rowid has been ** previously inserted into the RowSet. ** ** After all inserts are finished, it is possible to extract the ** elements of the RowSet in sorted order. Once this extraction ** process has started, no new elements may be inserted. ** ** Hence, the primitive operations for a RowSet are: ** ** CREATE ** INSERT ** TEST ** SMALLEST ** DESTROY ** ** The CREATE and DESTROY primitives are the constructor and destructor, ** obviously. The INSERT primitive adds a new element to the RowSet. ** TEST checks to see if an element is already in the RowSet. SMALLEST ** extracts the least value from the RowSet. ** ** The INSERT primitive might allocate additional memory. Memory is ** allocated in chunks so most INSERTs do no allocation. There is an ** upper bound on the size of allocated memory. No memory is freed ** until DESTROY. ** ** The TEST primitive includes a "batch" number. The TEST primitive ** will only see elements that were inserted before the last change ** in the batch number. In other words, if an INSERT occurs between ** two TESTs where the TESTs have the same batch nubmer, then the ** value added by the INSERT will not be visible to the second TEST. ** The initial batch number is zero, so if the very first TEST contains ** a non-zero batch number, it will see all prior INSERTs. ** ** No INSERTs may occurs after a SMALLEST. An assertion will fail if ** that is attempted. ** ** The cost of an INSERT is roughly constant. (Sometimes new memory ** has to be allocated on an INSERT.) The cost of a TEST with a new ** batch number is O(NlogN) where N is the number of elements in the RowSet. ** The cost of a TEST using the same batch number is O(logN). The cost ** of the first SMALLEST is O(NlogN). Second and subsequent SMALLEST ** primitives are constant time. The cost of DESTROY is O(N). ** ** TEST and SMALLEST may not be used by the same RowSet. This used to ** be possible, but the feature was not used, so it was removed in order ** to simplify the code. */ /* #include "sqliteInt.h" */ /* ** Target size for allocation chunks. */ #define ROWSET_ALLOCATION_SIZE 1024 /* ** The number of rowset entries per allocation chunk. */ #define ROWSET_ENTRY_PER_CHUNK \ ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry)) /* ** Each entry in a RowSet is an instance of the following object. ** ** This same object is reused to store a linked list of trees of RowSetEntry ** objects. In that alternative use, pRight points to the next entry ** in the list, pLeft points to the tree, and v is unused. The ** RowSet.pForest value points to the head of this forest list. */ struct RowSetEntry { i64 v; /* ROWID value for this entry */ struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ }; /* ** RowSetEntry objects are allocated in large chunks (instances of the ** following structure) to reduce memory allocation overhead. The ** chunks are kept on a linked list so that they can be deallocated ** when the RowSet is destroyed. */ struct RowSetChunk { struct RowSetChunk *pNextChunk; /* Next chunk on list of them all */ struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */ }; /* ** A RowSet in an instance of the following structure. ** ** A typedef of this structure if found in sqliteInt.h. */ struct RowSet { struct RowSetChunk *pChunk; /* List of all chunk allocations */ sqlite3 *db; /* The database connection */ struct RowSetEntry *pEntry; /* List of entries using pRight */ struct RowSetEntry *pLast; /* Last entry on the pEntry list */ struct RowSetEntry *pFresh; /* Source of new entry objects */ struct RowSetEntry *pForest; /* List of binary trees of entries */ u16 nFresh; /* Number of objects on pFresh */ u16 rsFlags; /* Various flags */ int iBatch; /* Current insert batch */ }; /* ** Allowed values for RowSet.rsFlags */ #define ROWSET_SORTED 0x01 /* True if RowSet.pEntry is sorted */ #define ROWSET_NEXT 0x02 /* True if sqlite3RowSetNext() has been called */ /* ** Allocate a RowSet object. Return NULL if a memory allocation ** error occurs. */ SQLITE_PRIVATE RowSet *sqlite3RowSetInit(sqlite3 *db){ RowSet *p = sqlite3DbMallocRawNN(db, sizeof(*p)); if( p ){ int N = sqlite3DbMallocSize(db, p); p->pChunk = 0; p->db = db; p->pEntry = 0; p->pLast = 0; p->pForest = 0; p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p); p->nFresh = (u16)((N - ROUND8(sizeof(*p)))/sizeof(struct RowSetEntry)); p->rsFlags = ROWSET_SORTED; p->iBatch = 0; } return p; } /* ** Deallocate all chunks from a RowSet. This frees all memory that ** the RowSet has allocated over its lifetime. This routine is ** the destructor for the RowSet. */ SQLITE_PRIVATE void sqlite3RowSetClear(void *pArg){ RowSet *p = (RowSet*)pArg; struct RowSetChunk *pChunk, *pNextChunk; for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){ pNextChunk = pChunk->pNextChunk; sqlite3DbFree(p->db, pChunk); } p->pChunk = 0; p->nFresh = 0; p->pEntry = 0; p->pLast = 0; p->pForest = 0; p->rsFlags = ROWSET_SORTED; } /* ** Deallocate all chunks from a RowSet. This frees all memory that ** the RowSet has allocated over its lifetime. This routine is ** the destructor for the RowSet. */ SQLITE_PRIVATE void sqlite3RowSetDelete(void *pArg){ sqlite3RowSetClear(pArg); sqlite3DbFree(((RowSet*)pArg)->db, pArg); } /* ** Allocate a new RowSetEntry object that is associated with the ** given RowSet. Return a pointer to the new and completely uninitialized ** object. ** ** In an OOM situation, the RowSet.db->mallocFailed flag is set and this ** routine returns NULL. */ static struct RowSetEntry *rowSetEntryAlloc(RowSet *p){ assert( p!=0 ); if( p->nFresh==0 ){ /*OPTIMIZATION-IF-FALSE*/ /* We could allocate a fresh RowSetEntry each time one is needed, but it ** is more efficient to pull a preallocated entry from the pool */ struct RowSetChunk *pNew; pNew = sqlite3DbMallocRawNN(p->db, sizeof(*pNew)); if( pNew==0 ){ return 0; } pNew->pNextChunk = p->pChunk; p->pChunk = pNew; p->pFresh = pNew->aEntry; p->nFresh = ROWSET_ENTRY_PER_CHUNK; } p->nFresh--; return p->pFresh++; } /* ** Insert a new value into a RowSet. ** ** The mallocFailed flag of the database connection is set if a ** memory allocation fails. */ SQLITE_PRIVATE void sqlite3RowSetInsert(RowSet *p, i64 rowid){ struct RowSetEntry *pEntry; /* The new entry */ struct RowSetEntry *pLast; /* The last prior entry */ /* This routine is never called after sqlite3RowSetNext() */ assert( p!=0 && (p->rsFlags & ROWSET_NEXT)==0 ); pEntry = rowSetEntryAlloc(p); if( pEntry==0 ) return; pEntry->v = rowid; pEntry->pRight = 0; pLast = p->pLast; if( pLast ){ if( rowid<=pLast->v ){ /*OPTIMIZATION-IF-FALSE*/ /* Avoid unnecessary sorts by preserving the ROWSET_SORTED flags ** where possible */ p->rsFlags &= ~ROWSET_SORTED; } pLast->pRight = pEntry; }else{ p->pEntry = pEntry; } p->pLast = pEntry; } /* ** Merge two lists of RowSetEntry objects. Remove duplicates. ** ** The input lists are connected via pRight pointers and are ** assumed to each already be in sorted order. */ static struct RowSetEntry *rowSetEntryMerge( struct RowSetEntry *pA, /* First sorted list to be merged */ struct RowSetEntry *pB /* Second sorted list to be merged */ ){ struct RowSetEntry head; struct RowSetEntry *pTail; pTail = &head; assert( pA!=0 && pB!=0 ); for(;;){ assert( pA->pRight==0 || pA->v<=pA->pRight->v ); assert( pB->pRight==0 || pB->v<=pB->pRight->v ); if( pA->v<=pB->v ){ if( pA->vv ) pTail = pTail->pRight = pA; pA = pA->pRight; if( pA==0 ){ pTail->pRight = pB; break; } }else{ pTail = pTail->pRight = pB; pB = pB->pRight; if( pB==0 ){ pTail->pRight = pA; break; } } } return head.pRight; } /* ** Sort all elements on the list of RowSetEntry objects into order of ** increasing v. */ static struct RowSetEntry *rowSetEntrySort(struct RowSetEntry *pIn){ unsigned int i; struct RowSetEntry *pNext, *aBucket[40]; memset(aBucket, 0, sizeof(aBucket)); while( pIn ){ pNext = pIn->pRight; pIn->pRight = 0; for(i=0; aBucket[i]; i++){ pIn = rowSetEntryMerge(aBucket[i], pIn); aBucket[i] = 0; } aBucket[i] = pIn; pIn = pNext; } pIn = aBucket[0]; for(i=1; ipLeft ){ struct RowSetEntry *p; rowSetTreeToList(pIn->pLeft, ppFirst, &p); p->pRight = pIn; }else{ *ppFirst = pIn; } if( pIn->pRight ){ rowSetTreeToList(pIn->pRight, &pIn->pRight, ppLast); }else{ *ppLast = pIn; } assert( (*ppLast)->pRight==0 ); } /* ** Convert a sorted list of elements (connected by pRight) into a binary ** tree with depth of iDepth. A depth of 1 means the tree contains a single ** node taken from the head of *ppList. A depth of 2 means a tree with ** three nodes. And so forth. ** ** Use as many entries from the input list as required and update the ** *ppList to point to the unused elements of the list. If the input ** list contains too few elements, then construct an incomplete tree ** and leave *ppList set to NULL. ** ** Return a pointer to the root of the constructed binary tree. */ static struct RowSetEntry *rowSetNDeepTree( struct RowSetEntry **ppList, int iDepth ){ struct RowSetEntry *p; /* Root of the new tree */ struct RowSetEntry *pLeft; /* Left subtree */ if( *ppList==0 ){ /*OPTIMIZATION-IF-TRUE*/ /* Prevent unnecessary deep recursion when we run out of entries */ return 0; } if( iDepth>1 ){ /*OPTIMIZATION-IF-TRUE*/ /* This branch causes a *balanced* tree to be generated. A valid tree ** is still generated without this branch, but the tree is wildly ** unbalanced and inefficient. */ pLeft = rowSetNDeepTree(ppList, iDepth-1); p = *ppList; if( p==0 ){ /*OPTIMIZATION-IF-FALSE*/ /* It is safe to always return here, but the resulting tree ** would be unbalanced */ return pLeft; } p->pLeft = pLeft; *ppList = p->pRight; p->pRight = rowSetNDeepTree(ppList, iDepth-1); }else{ p = *ppList; *ppList = p->pRight; p->pLeft = p->pRight = 0; } return p; } /* ** Convert a sorted list of elements into a binary tree. Make the tree ** as deep as it needs to be in order to contain the entire list. */ static struct RowSetEntry *rowSetListToTree(struct RowSetEntry *pList){ int iDepth; /* Depth of the tree so far */ struct RowSetEntry *p; /* Current tree root */ struct RowSetEntry *pLeft; /* Left subtree */ assert( pList!=0 ); p = pList; pList = p->pRight; p->pLeft = p->pRight = 0; for(iDepth=1; pList; iDepth++){ pLeft = p; p = pList; pList = p->pRight; p->pLeft = pLeft; p->pRight = rowSetNDeepTree(&pList, iDepth); } return p; } /* ** Extract the smallest element from the RowSet. ** Write the element into *pRowid. Return 1 on success. Return ** 0 if the RowSet is already empty. ** ** After this routine has been called, the sqlite3RowSetInsert() ** routine may not be called again. ** ** This routine may not be called after sqlite3RowSetTest() has ** been used. Older versions of RowSet allowed that, but as the ** capability was not used by the code generator, it was removed ** for code economy. */ SQLITE_PRIVATE int sqlite3RowSetNext(RowSet *p, i64 *pRowid){ assert( p!=0 ); assert( p->pForest==0 ); /* Cannot be used with sqlite3RowSetText() */ /* Merge the forest into a single sorted list on first call */ if( (p->rsFlags & ROWSET_NEXT)==0 ){ /*OPTIMIZATION-IF-FALSE*/ if( (p->rsFlags & ROWSET_SORTED)==0 ){ /*OPTIMIZATION-IF-FALSE*/ p->pEntry = rowSetEntrySort(p->pEntry); } p->rsFlags |= ROWSET_SORTED|ROWSET_NEXT; } /* Return the next entry on the list */ if( p->pEntry ){ *pRowid = p->pEntry->v; p->pEntry = p->pEntry->pRight; if( p->pEntry==0 ){ /*OPTIMIZATION-IF-TRUE*/ /* Free memory immediately, rather than waiting on sqlite3_finalize() */ sqlite3RowSetClear(p); } return 1; }else{ return 0; } } /* ** Check to see if element iRowid was inserted into the rowset as ** part of any insert batch prior to iBatch. Return 1 or 0. ** ** If this is the first test of a new batch and if there exist entries ** on pRowSet->pEntry, then sort those entries into the forest at ** pRowSet->pForest so that they can be tested. */ SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){ struct RowSetEntry *p, *pTree; /* This routine is never called after sqlite3RowSetNext() */ assert( pRowSet!=0 && (pRowSet->rsFlags & ROWSET_NEXT)==0 ); /* Sort entries into the forest on the first test of a new batch. ** To save unnecessary work, only do this when the batch number changes. */ if( iBatch!=pRowSet->iBatch ){ /*OPTIMIZATION-IF-FALSE*/ p = pRowSet->pEntry; if( p ){ struct RowSetEntry **ppPrevTree = &pRowSet->pForest; if( (pRowSet->rsFlags & ROWSET_SORTED)==0 ){ /*OPTIMIZATION-IF-FALSE*/ /* Only sort the current set of entries if they need it */ p = rowSetEntrySort(p); } for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){ ppPrevTree = &pTree->pRight; if( pTree->pLeft==0 ){ pTree->pLeft = rowSetListToTree(p); break; }else{ struct RowSetEntry *pAux, *pTail; rowSetTreeToList(pTree->pLeft, &pAux, &pTail); pTree->pLeft = 0; p = rowSetEntryMerge(pAux, p); } } if( pTree==0 ){ *ppPrevTree = pTree = rowSetEntryAlloc(pRowSet); if( pTree ){ pTree->v = 0; pTree->pRight = 0; pTree->pLeft = rowSetListToTree(p); } } pRowSet->pEntry = 0; pRowSet->pLast = 0; pRowSet->rsFlags |= ROWSET_SORTED; } pRowSet->iBatch = iBatch; } /* Test to see if the iRowid value appears anywhere in the forest. ** Return 1 if it does and 0 if not. */ for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){ p = pTree->pLeft; while( p ){ if( p->vpRight; }else if( p->v>iRowid ){ p = p->pLeft; }else{ return 1; } } } return 0; } /************** End of rowset.c **********************************************/ /************** Begin file pager.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the implementation of the page cache subsystem or "pager". ** ** The pager is used to access a database disk file. It implements ** atomic commit and rollback through the use of a journal file that ** is separate from the database file. The pager also implements file ** locking to prevent two processes from writing the same database ** file simultaneously, or one process from reading the database while ** another is writing. */ #ifndef SQLITE_OMIT_DISKIO /* #include "sqliteInt.h" */ /************** Include wal.h in the middle of pager.c ***********************/ /************** Begin file wal.h *********************************************/ /* ** 2010 February 1 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface to the write-ahead logging ** system. Refer to the comments below and the header comment attached to ** the implementation of each function in log.c for further details. */ #ifndef SQLITE_WAL_H #define SQLITE_WAL_H /* #include "sqliteInt.h" */ /* Macros for extracting appropriate sync flags for either transaction ** commits (WAL_SYNC_FLAGS(X)) or for checkpoint ops (CKPT_SYNC_FLAGS(X)): */ #define WAL_SYNC_FLAGS(X) ((X)&0x03) #define CKPT_SYNC_FLAGS(X) (((X)>>2)&0x03) #ifdef SQLITE_OMIT_WAL # define sqlite3WalOpen(x,y,z) 0 # define sqlite3WalLimit(x,y) # define sqlite3WalClose(v,w,x,y,z) 0 # define sqlite3WalBeginReadTransaction(y,z) 0 # define sqlite3WalEndReadTransaction(z) # define sqlite3WalDbsize(y) 0 # define sqlite3WalBeginWriteTransaction(y) 0 # define sqlite3WalEndWriteTransaction(x) 0 # define sqlite3WalUndo(x,y,z) 0 # define sqlite3WalSavepoint(y,z) # define sqlite3WalSavepointUndo(y,z) 0 # define sqlite3WalFrames(u,v,w,x,y,z) 0 # define sqlite3WalCheckpoint(q,r,s,t,u,v,w,x,y,z) 0 # define sqlite3WalCallback(z) 0 # define sqlite3WalExclusiveMode(y,z) 0 # define sqlite3WalHeapMemory(z) 0 # define sqlite3WalFramesize(z) 0 # define sqlite3WalFindFrame(x,y,z) 0 # define sqlite3WalFile(x) 0 #else #define WAL_SAVEPOINT_NDATA 4 /* Connection to a write-ahead log (WAL) file. ** There is one object of this type for each pager. */ typedef struct Wal Wal; /* Open and close a connection to a write-ahead log. */ SQLITE_PRIVATE int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *, int, i64, Wal**); SQLITE_PRIVATE int sqlite3WalClose(Wal *pWal, sqlite3*, int sync_flags, int, u8 *); /* Set the limiting size of a WAL file. */ SQLITE_PRIVATE void sqlite3WalLimit(Wal*, i64); /* Used by readers to open (lock) and close (unlock) a snapshot. A ** snapshot is like a read-transaction. It is the state of the database ** at an instant in time. sqlite3WalOpenSnapshot gets a read lock and ** preserves the current state even if the other threads or processes ** write to or checkpoint the WAL. sqlite3WalCloseSnapshot() closes the ** transaction and releases the lock. */ SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *); SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal); /* Read a page from the write-ahead log, if it is present. */ SQLITE_PRIVATE int sqlite3WalFindFrame(Wal *, Pgno, u32 *); SQLITE_PRIVATE int sqlite3WalReadFrame(Wal *, u32, int, u8 *); /* If the WAL is not empty, return the size of the database. */ SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal); /* Obtain or release the WRITER lock. */ SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal); SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal); /* Undo any frames written (but not committed) to the log */ SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx); /* Return an integer that records the current (uncommitted) write ** position in the WAL */ SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData); /* Move the write position of the WAL back to iFrame. Called in ** response to a ROLLBACK TO command. */ SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData); /* Write a frame or frames to the log. */ SQLITE_PRIVATE int sqlite3WalFrames(Wal *pWal, int, PgHdr *, Pgno, int, int); /* Copy pages from the log to the database file */ SQLITE_PRIVATE int sqlite3WalCheckpoint( Wal *pWal, /* Write-ahead log connection */ sqlite3 *db, /* Check this handle's interrupt flag */ int eMode, /* One of PASSIVE, FULL and RESTART */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int sync_flags, /* Flags to sync db file with (or 0) */ int nBuf, /* Size of buffer nBuf */ u8 *zBuf, /* Temporary buffer to use */ int *pnLog, /* OUT: Number of frames in WAL */ int *pnCkpt /* OUT: Number of backfilled frames in WAL */ ); /* Return the value to pass to a sqlite3_wal_hook callback, the ** number of frames in the WAL at the point of the last commit since ** sqlite3WalCallback() was called. If no commits have occurred since ** the last call, then return 0. */ SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal); /* Tell the wal layer that an EXCLUSIVE lock has been obtained (or released) ** by the pager layer on the database file. */ SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op); /* Return true if the argument is non-NULL and the WAL module is using ** heap-memory for the wal-index. Otherwise, if the argument is NULL or the ** WAL module is using shared-memory, return false. */ SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal); #ifdef SQLITE_ENABLE_SNAPSHOT SQLITE_PRIVATE int sqlite3WalSnapshotGet(Wal *pWal, sqlite3_snapshot **ppSnapshot); SQLITE_PRIVATE void sqlite3WalSnapshotOpen(Wal *pWal, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE int sqlite3WalSnapshotRecover(Wal *pWal); SQLITE_PRIVATE int sqlite3WalSnapshotCheck(Wal *pWal, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE void sqlite3WalSnapshotUnlock(Wal *pWal); #endif #ifdef SQLITE_ENABLE_ZIPVFS /* If the WAL file is not empty, return the number of bytes of content ** stored in each frame (i.e. the db page-size when the WAL was created). */ SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal); #endif /* Return the sqlite3_file object for the WAL file */ SQLITE_PRIVATE sqlite3_file *sqlite3WalFile(Wal *pWal); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT SQLITE_PRIVATE int sqlite3WalWriteLock(Wal *pWal, int bLock); SQLITE_PRIVATE void sqlite3WalDb(Wal *pWal, sqlite3 *db); #endif #endif /* ifndef SQLITE_OMIT_WAL */ #endif /* SQLITE_WAL_H */ /************** End of wal.h *************************************************/ /************** Continuing where we left off in pager.c **********************/ /******************* NOTES ON THE DESIGN OF THE PAGER ************************ ** ** This comment block describes invariants that hold when using a rollback ** journal. These invariants do not apply for journal_mode=WAL, ** journal_mode=MEMORY, or journal_mode=OFF. ** ** Within this comment block, a page is deemed to have been synced ** automatically as soon as it is written when PRAGMA synchronous=OFF. ** Otherwise, the page is not synced until the xSync method of the VFS ** is called successfully on the file containing the page. ** ** Definition: A page of the database file is said to be "overwriteable" if ** one or more of the following are true about the page: ** ** (a) The original content of the page as it was at the beginning of ** the transaction has been written into the rollback journal and ** synced. ** ** (b) The page was a freelist leaf page at the start of the transaction. ** ** (c) The page number is greater than the largest page that existed in ** the database file at the start of the transaction. ** ** (1) A page of the database file is never overwritten unless one of the ** following are true: ** ** (a) The page and all other pages on the same sector are overwriteable. ** ** (b) The atomic page write optimization is enabled, and the entire ** transaction other than the update of the transaction sequence ** number consists of a single page change. ** ** (2) The content of a page written into the rollback journal exactly matches ** both the content in the database when the rollback journal was written ** and the content in the database at the beginning of the current ** transaction. ** ** (3) Writes to the database file are an integer multiple of the page size ** in length and are aligned on a page boundary. ** ** (4) Reads from the database file are either aligned on a page boundary and ** an integer multiple of the page size in length or are taken from the ** first 100 bytes of the database file. ** ** (5) All writes to the database file are synced prior to the rollback journal ** being deleted, truncated, or zeroed. ** ** (6) If a super-journal file is used, then all writes to the database file ** are synced prior to the super-journal being deleted. ** ** Definition: Two databases (or the same database at two points it time) ** are said to be "logically equivalent" if they give the same answer to ** all queries. Note in particular the content of freelist leaf ** pages can be changed arbitrarily without affecting the logical equivalence ** of the database. ** ** (7) At any time, if any subset, including the empty set and the total set, ** of the unsynced changes to a rollback journal are removed and the ** journal is rolled back, the resulting database file will be logically ** equivalent to the database file at the beginning of the transaction. ** ** (8) When a transaction is rolled back, the xTruncate method of the VFS ** is called to restore the database file to the same size it was at ** the beginning of the transaction. (In some VFSes, the xTruncate ** method is a no-op, but that does not change the fact the SQLite will ** invoke it.) ** ** (9) Whenever the database file is modified, at least one bit in the range ** of bytes from 24 through 39 inclusive will be changed prior to releasing ** the EXCLUSIVE lock, thus signaling other connections on the same ** database to flush their caches. ** ** (10) The pattern of bits in bytes 24 through 39 shall not repeat in less ** than one billion transactions. ** ** (11) A database file is well-formed at the beginning and at the conclusion ** of every transaction. ** ** (12) An EXCLUSIVE lock is held on the database file when writing to ** the database file. ** ** (13) A SHARED lock is held on the database file while reading any ** content out of the database file. ** ******************************************************************************/ /* ** Macros for troubleshooting. Normally turned off */ #if 0 int sqlite3PagerTrace=1; /* True to enable tracing */ #define sqlite3DebugPrintf printf #define PAGERTRACE(X) if( sqlite3PagerTrace ){ sqlite3DebugPrintf X; } #else #define PAGERTRACE(X) #endif /* ** The following two macros are used within the PAGERTRACE() macros above ** to print out file-descriptors. ** ** PAGERID() takes a pointer to a Pager struct as its argument. The ** associated file-descriptor is returned. FILEHANDLEID() takes an sqlite3_file ** struct as its argument. */ #define PAGERID(p) (SQLITE_PTR_TO_INT(p->fd)) #define FILEHANDLEID(fd) (SQLITE_PTR_TO_INT(fd)) /* ** The Pager.eState variable stores the current 'state' of a pager. A ** pager may be in any one of the seven states shown in the following ** state diagram. ** ** OPEN <------+------+ ** | | | ** V | | ** +---------> READER-------+ | ** | | | ** | V | ** |<-------WRITER_LOCKED------> ERROR ** | | ^ ** | V | ** |<------WRITER_CACHEMOD-------->| ** | | | ** | V | ** |<-------WRITER_DBMOD---------->| ** | | | ** | V | ** +<------WRITER_FINISHED-------->+ ** ** ** List of state transitions and the C [function] that performs each: ** ** OPEN -> READER [sqlite3PagerSharedLock] ** READER -> OPEN [pager_unlock] ** ** READER -> WRITER_LOCKED [sqlite3PagerBegin] ** WRITER_LOCKED -> WRITER_CACHEMOD [pager_open_journal] ** WRITER_CACHEMOD -> WRITER_DBMOD [syncJournal] ** WRITER_DBMOD -> WRITER_FINISHED [sqlite3PagerCommitPhaseOne] ** WRITER_*** -> READER [pager_end_transaction] ** ** WRITER_*** -> ERROR [pager_error] ** ERROR -> OPEN [pager_unlock] ** ** ** OPEN: ** ** The pager starts up in this state. Nothing is guaranteed in this ** state - the file may or may not be locked and the database size is ** unknown. The database may not be read or written. ** ** * No read or write transaction is active. ** * Any lock, or no lock at all, may be held on the database file. ** * The dbSize, dbOrigSize and dbFileSize variables may not be trusted. ** ** READER: ** ** In this state all the requirements for reading the database in ** rollback (non-WAL) mode are met. Unless the pager is (or recently ** was) in exclusive-locking mode, a user-level read transaction is ** open. The database size is known in this state. ** ** A connection running with locking_mode=normal enters this state when ** it opens a read-transaction on the database and returns to state ** OPEN after the read-transaction is completed. However a connection ** running in locking_mode=exclusive (including temp databases) remains in ** this state even after the read-transaction is closed. The only way ** a locking_mode=exclusive connection can transition from READER to OPEN ** is via the ERROR state (see below). ** ** * A read transaction may be active (but a write-transaction cannot). ** * A SHARED or greater lock is held on the database file. ** * The dbSize variable may be trusted (even if a user-level read ** transaction is not active). The dbOrigSize and dbFileSize variables ** may not be trusted at this point. ** * If the database is a WAL database, then the WAL connection is open. ** * Even if a read-transaction is not open, it is guaranteed that ** there is no hot-journal in the file-system. ** ** WRITER_LOCKED: ** ** The pager moves to this state from READER when a write-transaction ** is first opened on the database. In WRITER_LOCKED state, all locks ** required to start a write-transaction are held, but no actual ** modifications to the cache or database have taken place. ** ** In rollback mode, a RESERVED or (if the transaction was opened with ** BEGIN EXCLUSIVE) EXCLUSIVE lock is obtained on the database file when ** moving to this state, but the journal file is not written to or opened ** to in this state. If the transaction is committed or rolled back while ** in WRITER_LOCKED state, all that is required is to unlock the database ** file. ** ** IN WAL mode, WalBeginWriteTransaction() is called to lock the log file. ** If the connection is running with locking_mode=exclusive, an attempt ** is made to obtain an EXCLUSIVE lock on the database file. ** ** * A write transaction is active. ** * If the connection is open in rollback-mode, a RESERVED or greater ** lock is held on the database file. ** * If the connection is open in WAL-mode, a WAL write transaction ** is open (i.e. sqlite3WalBeginWriteTransaction() has been successfully ** called). ** * The dbSize, dbOrigSize and dbFileSize variables are all valid. ** * The contents of the pager cache have not been modified. ** * The journal file may or may not be open. ** * Nothing (not even the first header) has been written to the journal. ** ** WRITER_CACHEMOD: ** ** A pager moves from WRITER_LOCKED state to this state when a page is ** first modified by the upper layer. In rollback mode the journal file ** is opened (if it is not already open) and a header written to the ** start of it. The database file on disk has not been modified. ** ** * A write transaction is active. ** * A RESERVED or greater lock is held on the database file. ** * The journal file is open and the first header has been written ** to it, but the header has not been synced to disk. ** * The contents of the page cache have been modified. ** ** WRITER_DBMOD: ** ** The pager transitions from WRITER_CACHEMOD into WRITER_DBMOD state ** when it modifies the contents of the database file. WAL connections ** never enter this state (since they do not modify the database file, ** just the log file). ** ** * A write transaction is active. ** * An EXCLUSIVE or greater lock is held on the database file. ** * The journal file is open and the first header has been written ** and synced to disk. ** * The contents of the page cache have been modified (and possibly ** written to disk). ** ** WRITER_FINISHED: ** ** It is not possible for a WAL connection to enter this state. ** ** A rollback-mode pager changes to WRITER_FINISHED state from WRITER_DBMOD ** state after the entire transaction has been successfully written into the ** database file. In this state the transaction may be committed simply ** by finalizing the journal file. Once in WRITER_FINISHED state, it is ** not possible to modify the database further. At this point, the upper ** layer must either commit or rollback the transaction. ** ** * A write transaction is active. ** * An EXCLUSIVE or greater lock is held on the database file. ** * All writing and syncing of journal and database data has finished. ** If no error occurred, all that remains is to finalize the journal to ** commit the transaction. If an error did occur, the caller will need ** to rollback the transaction. ** ** ERROR: ** ** The ERROR state is entered when an IO or disk-full error (including ** SQLITE_IOERR_NOMEM) occurs at a point in the code that makes it ** difficult to be sure that the in-memory pager state (cache contents, ** db size etc.) are consistent with the contents of the file-system. ** ** Temporary pager files may enter the ERROR state, but in-memory pagers ** cannot. ** ** For example, if an IO error occurs while performing a rollback, ** the contents of the page-cache may be left in an inconsistent state. ** At this point it would be dangerous to change back to READER state ** (as usually happens after a rollback). Any subsequent readers might ** report database corruption (due to the inconsistent cache), and if ** they upgrade to writers, they may inadvertently corrupt the database ** file. To avoid this hazard, the pager switches into the ERROR state ** instead of READER following such an error. ** ** Once it has entered the ERROR state, any attempt to use the pager ** to read or write data returns an error. Eventually, once all ** outstanding transactions have been abandoned, the pager is able to ** transition back to OPEN state, discarding the contents of the ** page-cache and any other in-memory state at the same time. Everything ** is reloaded from disk (and, if necessary, hot-journal rollback peformed) ** when a read-transaction is next opened on the pager (transitioning ** the pager into READER state). At that point the system has recovered ** from the error. ** ** Specifically, the pager jumps into the ERROR state if: ** ** 1. An error occurs while attempting a rollback. This happens in ** function sqlite3PagerRollback(). ** ** 2. An error occurs while attempting to finalize a journal file ** following a commit in function sqlite3PagerCommitPhaseTwo(). ** ** 3. An error occurs while attempting to write to the journal or ** database file in function pagerStress() in order to free up ** memory. ** ** In other cases, the error is returned to the b-tree layer. The b-tree ** layer then attempts a rollback operation. If the error condition ** persists, the pager enters the ERROR state via condition (1) above. ** ** Condition (3) is necessary because it can be triggered by a read-only ** statement executed within a transaction. In this case, if the error ** code were simply returned to the user, the b-tree layer would not ** automatically attempt a rollback, as it assumes that an error in a ** read-only statement cannot leave the pager in an internally inconsistent ** state. ** ** * The Pager.errCode variable is set to something other than SQLITE_OK. ** * There are one or more outstanding references to pages (after the ** last reference is dropped the pager should move back to OPEN state). ** * The pager is not an in-memory pager. ** ** ** Notes: ** ** * A pager is never in WRITER_DBMOD or WRITER_FINISHED state if the ** connection is open in WAL mode. A WAL connection is always in one ** of the first four states. ** ** * Normally, a connection open in exclusive mode is never in PAGER_OPEN ** state. There are two exceptions: immediately after exclusive-mode has ** been turned on (and before any read or write transactions are ** executed), and when the pager is leaving the "error state". ** ** * See also: assert_pager_state(). */ #define PAGER_OPEN 0 #define PAGER_READER 1 #define PAGER_WRITER_LOCKED 2 #define PAGER_WRITER_CACHEMOD 3 #define PAGER_WRITER_DBMOD 4 #define PAGER_WRITER_FINISHED 5 #define PAGER_ERROR 6 /* ** The Pager.eLock variable is almost always set to one of the ** following locking-states, according to the lock currently held on ** the database file: NO_LOCK, SHARED_LOCK, RESERVED_LOCK or EXCLUSIVE_LOCK. ** This variable is kept up to date as locks are taken and released by ** the pagerLockDb() and pagerUnlockDb() wrappers. ** ** If the VFS xLock() or xUnlock() returns an error other than SQLITE_BUSY ** (i.e. one of the SQLITE_IOERR subtypes), it is not clear whether or not ** the operation was successful. In these circumstances pagerLockDb() and ** pagerUnlockDb() take a conservative approach - eLock is always updated ** when unlocking the file, and only updated when locking the file if the ** VFS call is successful. This way, the Pager.eLock variable may be set ** to a less exclusive (lower) value than the lock that is actually held ** at the system level, but it is never set to a more exclusive value. ** ** This is usually safe. If an xUnlock fails or appears to fail, there may ** be a few redundant xLock() calls or a lock may be held for longer than ** required, but nothing really goes wrong. ** ** The exception is when the database file is unlocked as the pager moves ** from ERROR to OPEN state. At this point there may be a hot-journal file ** in the file-system that needs to be rolled back (as part of an OPEN->SHARED ** transition, by the same pager or any other). If the call to xUnlock() ** fails at this point and the pager is left holding an EXCLUSIVE lock, this ** can confuse the call to xCheckReservedLock() call made later as part ** of hot-journal detection. ** ** xCheckReservedLock() is defined as returning true "if there is a RESERVED ** lock held by this process or any others". So xCheckReservedLock may ** return true because the caller itself is holding an EXCLUSIVE lock (but ** doesn't know it because of a previous error in xUnlock). If this happens ** a hot-journal may be mistaken for a journal being created by an active ** transaction in another process, causing SQLite to read from the database ** without rolling it back. ** ** To work around this, if a call to xUnlock() fails when unlocking the ** database in the ERROR state, Pager.eLock is set to UNKNOWN_LOCK. It ** is only changed back to a real locking state after a successful call ** to xLock(EXCLUSIVE). Also, the code to do the OPEN->SHARED state transition ** omits the check for a hot-journal if Pager.eLock is set to UNKNOWN_LOCK ** lock. Instead, it assumes a hot-journal exists and obtains an EXCLUSIVE ** lock on the database file before attempting to roll it back. See function ** PagerSharedLock() for more detail. ** ** Pager.eLock may only be set to UNKNOWN_LOCK when the pager is in ** PAGER_OPEN state. */ #define UNKNOWN_LOCK (EXCLUSIVE_LOCK+1) /* ** The maximum allowed sector size. 64KiB. If the xSectorsize() method ** returns a value larger than this, then MAX_SECTOR_SIZE is used instead. ** This could conceivably cause corruption following a power failure on ** such a system. This is currently an undocumented limit. */ #define MAX_SECTOR_SIZE 0x10000 /* ** An instance of the following structure is allocated for each active ** savepoint and statement transaction in the system. All such structures ** are stored in the Pager.aSavepoint[] array, which is allocated and ** resized using sqlite3Realloc(). ** ** When a savepoint is created, the PagerSavepoint.iHdrOffset field is ** set to 0. If a journal-header is written into the main journal while ** the savepoint is active, then iHdrOffset is set to the byte offset ** immediately following the last journal record written into the main ** journal before the journal-header. This is required during savepoint ** rollback (see pagerPlaybackSavepoint()). */ typedef struct PagerSavepoint PagerSavepoint; struct PagerSavepoint { i64 iOffset; /* Starting offset in main journal */ i64 iHdrOffset; /* See above */ Bitvec *pInSavepoint; /* Set of pages in this savepoint */ Pgno nOrig; /* Original number of pages in file */ Pgno iSubRec; /* Index of first record in sub-journal */ int bTruncateOnRelease; /* If stmt journal may be truncated on RELEASE */ #ifndef SQLITE_OMIT_WAL u32 aWalData[WAL_SAVEPOINT_NDATA]; /* WAL savepoint context */ #endif }; /* ** Bits of the Pager.doNotSpill flag. See further description below. */ #define SPILLFLAG_OFF 0x01 /* Never spill cache. Set via pragma */ #define SPILLFLAG_ROLLBACK 0x02 /* Current rolling back, so do not spill */ #define SPILLFLAG_NOSYNC 0x04 /* Spill is ok, but do not sync */ /* ** An open page cache is an instance of struct Pager. A description of ** some of the more important member variables follows: ** ** eState ** ** The current 'state' of the pager object. See the comment and state ** diagram above for a description of the pager state. ** ** eLock ** ** For a real on-disk database, the current lock held on the database file - ** NO_LOCK, SHARED_LOCK, RESERVED_LOCK or EXCLUSIVE_LOCK. ** ** For a temporary or in-memory database (neither of which require any ** locks), this variable is always set to EXCLUSIVE_LOCK. Since such ** databases always have Pager.exclusiveMode==1, this tricks the pager ** logic into thinking that it already has all the locks it will ever ** need (and no reason to release them). ** ** In some (obscure) circumstances, this variable may also be set to ** UNKNOWN_LOCK. See the comment above the #define of UNKNOWN_LOCK for ** details. ** ** changeCountDone ** ** This boolean variable is used to make sure that the change-counter ** (the 4-byte header field at byte offset 24 of the database file) is ** not updated more often than necessary. ** ** It is set to true when the change-counter field is updated, which ** can only happen if an exclusive lock is held on the database file. ** It is cleared (set to false) whenever an exclusive lock is ** relinquished on the database file. Each time a transaction is committed, ** The changeCountDone flag is inspected. If it is true, the work of ** updating the change-counter is omitted for the current transaction. ** ** This mechanism means that when running in exclusive mode, a connection ** need only update the change-counter once, for the first transaction ** committed. ** ** setSuper ** ** When PagerCommitPhaseOne() is called to commit a transaction, it may ** (or may not) specify a super-journal name to be written into the ** journal file before it is synced to disk. ** ** Whether or not a journal file contains a super-journal pointer affects ** the way in which the journal file is finalized after the transaction is ** committed or rolled back when running in "journal_mode=PERSIST" mode. ** If a journal file does not contain a super-journal pointer, it is ** finalized by overwriting the first journal header with zeroes. If ** it does contain a super-journal pointer the journal file is finalized ** by truncating it to zero bytes, just as if the connection were ** running in "journal_mode=truncate" mode. ** ** Journal files that contain super-journal pointers cannot be finalized ** simply by overwriting the first journal-header with zeroes, as the ** super-journal pointer could interfere with hot-journal rollback of any ** subsequently interrupted transaction that reuses the journal file. ** ** The flag is cleared as soon as the journal file is finalized (either ** by PagerCommitPhaseTwo or PagerRollback). If an IO error prevents the ** journal file from being successfully finalized, the setSuper flag ** is cleared anyway (and the pager will move to ERROR state). ** ** doNotSpill ** ** This variables control the behavior of cache-spills (calls made by ** the pcache module to the pagerStress() routine to write cached data ** to the file-system in order to free up memory). ** ** When bits SPILLFLAG_OFF or SPILLFLAG_ROLLBACK of doNotSpill are set, ** writing to the database from pagerStress() is disabled altogether. ** The SPILLFLAG_ROLLBACK case is done in a very obscure case that ** comes up during savepoint rollback that requires the pcache module ** to allocate a new page to prevent the journal file from being written ** while it is being traversed by code in pager_playback(). The SPILLFLAG_OFF ** case is a user preference. ** ** If the SPILLFLAG_NOSYNC bit is set, writing to the database from ** pagerStress() is permitted, but syncing the journal file is not. ** This flag is set by sqlite3PagerWrite() when the file-system sector-size ** is larger than the database page-size in order to prevent a journal sync ** from happening in between the journalling of two pages on the same sector. ** ** subjInMemory ** ** This is a boolean variable. If true, then any required sub-journal ** is opened as an in-memory journal file. If false, then in-memory ** sub-journals are only used for in-memory pager files. ** ** This variable is updated by the upper layer each time a new ** write-transaction is opened. ** ** dbSize, dbOrigSize, dbFileSize ** ** Variable dbSize is set to the number of pages in the database file. ** It is valid in PAGER_READER and higher states (all states except for ** OPEN and ERROR). ** ** dbSize is set based on the size of the database file, which may be ** larger than the size of the database (the value stored at offset ** 28 of the database header by the btree). If the size of the file ** is not an integer multiple of the page-size, the value stored in ** dbSize is rounded down (i.e. a 5KB file with 2K page-size has dbSize==2). ** Except, any file that is greater than 0 bytes in size is considered ** to have at least one page. (i.e. a 1KB file with 2K page-size leads ** to dbSize==1). ** ** During a write-transaction, if pages with page-numbers greater than ** dbSize are modified in the cache, dbSize is updated accordingly. ** Similarly, if the database is truncated using PagerTruncateImage(), ** dbSize is updated. ** ** Variables dbOrigSize and dbFileSize are valid in states ** PAGER_WRITER_LOCKED and higher. dbOrigSize is a copy of the dbSize ** variable at the start of the transaction. It is used during rollback, ** and to determine whether or not pages need to be journalled before ** being modified. ** ** Throughout a write-transaction, dbFileSize contains the size of ** the file on disk in pages. It is set to a copy of dbSize when the ** write-transaction is first opened, and updated when VFS calls are made ** to write or truncate the database file on disk. ** ** The only reason the dbFileSize variable is required is to suppress ** unnecessary calls to xTruncate() after committing a transaction. If, ** when a transaction is committed, the dbFileSize variable indicates ** that the database file is larger than the database image (Pager.dbSize), ** pager_truncate() is called. The pager_truncate() call uses xFilesize() ** to measure the database file on disk, and then truncates it if required. ** dbFileSize is not used when rolling back a transaction. In this case ** pager_truncate() is called unconditionally (which means there may be ** a call to xFilesize() that is not strictly required). In either case, ** pager_truncate() may cause the file to become smaller or larger. ** ** dbHintSize ** ** The dbHintSize variable is used to limit the number of calls made to ** the VFS xFileControl(FCNTL_SIZE_HINT) method. ** ** dbHintSize is set to a copy of the dbSize variable when a ** write-transaction is opened (at the same time as dbFileSize and ** dbOrigSize). If the xFileControl(FCNTL_SIZE_HINT) method is called, ** dbHintSize is increased to the number of pages that correspond to the ** size-hint passed to the method call. See pager_write_pagelist() for ** details. ** ** errCode ** ** The Pager.errCode variable is only ever used in PAGER_ERROR state. It ** is set to zero in all other states. In PAGER_ERROR state, Pager.errCode ** is always set to SQLITE_FULL, SQLITE_IOERR or one of the SQLITE_IOERR_XXX ** sub-codes. ** ** syncFlags, walSyncFlags ** ** syncFlags is either SQLITE_SYNC_NORMAL (0x02) or SQLITE_SYNC_FULL (0x03). ** syncFlags is used for rollback mode. walSyncFlags is used for WAL mode ** and contains the flags used to sync the checkpoint operations in the ** lower two bits, and sync flags used for transaction commits in the WAL ** file in bits 0x04 and 0x08. In other words, to get the correct sync flags ** for checkpoint operations, use (walSyncFlags&0x03) and to get the correct ** sync flags for transaction commit, use ((walSyncFlags>>2)&0x03). Note ** that with synchronous=NORMAL in WAL mode, transaction commit is not synced ** meaning that the 0x04 and 0x08 bits are both zero. */ struct Pager { sqlite3_vfs *pVfs; /* OS functions to use for IO */ u8 exclusiveMode; /* Boolean. True if locking_mode==EXCLUSIVE */ u8 journalMode; /* One of the PAGER_JOURNALMODE_* values */ u8 useJournal; /* Use a rollback journal on this file */ u8 noSync; /* Do not sync the journal if true */ u8 fullSync; /* Do extra syncs of the journal for robustness */ u8 extraSync; /* sync directory after journal delete */ u8 syncFlags; /* SYNC_NORMAL or SYNC_FULL otherwise */ u8 walSyncFlags; /* See description above */ u8 tempFile; /* zFilename is a temporary or immutable file */ u8 noLock; /* Do not lock (except in WAL mode) */ u8 readOnly; /* True for a read-only database */ u8 memDb; /* True to inhibit all file I/O */ u8 memVfs; /* VFS-implemented memory database */ /************************************************************************** ** The following block contains those class members that change during ** routine operation. Class members not in this block are either fixed ** when the pager is first created or else only change when there is a ** significant mode change (such as changing the page_size, locking_mode, ** or the journal_mode). From another view, these class members describe ** the "state" of the pager, while other class members describe the ** "configuration" of the pager. */ u8 eState; /* Pager state (OPEN, READER, WRITER_LOCKED..) */ u8 eLock; /* Current lock held on database file */ u8 changeCountDone; /* Set after incrementing the change-counter */ u8 setSuper; /* Super-jrnl name is written into jrnl */ u8 doNotSpill; /* Do not spill the cache when non-zero */ u8 subjInMemory; /* True to use in-memory sub-journals */ u8 bUseFetch; /* True to use xFetch() */ u8 hasHeldSharedLock; /* True if a shared lock has ever been held */ Pgno dbSize; /* Number of pages in the database */ Pgno dbOrigSize; /* dbSize before the current transaction */ Pgno dbFileSize; /* Number of pages in the database file */ Pgno dbHintSize; /* Value passed to FCNTL_SIZE_HINT call */ int errCode; /* One of several kinds of errors */ int nRec; /* Pages journalled since last j-header written */ u32 cksumInit; /* Quasi-random value added to every checksum */ u32 nSubRec; /* Number of records written to sub-journal */ Bitvec *pInJournal; /* One bit for each page in the database file */ sqlite3_file *fd; /* File descriptor for database */ sqlite3_file *jfd; /* File descriptor for main journal */ sqlite3_file *sjfd; /* File descriptor for sub-journal */ i64 journalOff; /* Current write offset in the journal file */ i64 journalHdr; /* Byte offset to previous journal header */ sqlite3_backup *pBackup; /* Pointer to list of ongoing backup processes */ PagerSavepoint *aSavepoint; /* Array of active savepoints */ int nSavepoint; /* Number of elements in aSavepoint[] */ u32 iDataVersion; /* Changes whenever database content changes */ char dbFileVers[16]; /* Changes whenever database file changes */ int nMmapOut; /* Number of mmap pages currently outstanding */ sqlite3_int64 szMmap; /* Desired maximum mmap size */ PgHdr *pMmapFreelist; /* List of free mmap page headers (pDirty) */ /* ** End of the routinely-changing class members ***************************************************************************/ u16 nExtra; /* Add this many bytes to each in-memory page */ i16 nReserve; /* Number of unused bytes at end of each page */ u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */ u32 sectorSize; /* Assumed sector size during rollback */ Pgno mxPgno; /* Maximum allowed size of the database */ i64 pageSize; /* Number of bytes in a page */ i64 journalSizeLimit; /* Size limit for persistent journal files */ char *zFilename; /* Name of the database file */ char *zJournal; /* Name of the journal file */ int (*xBusyHandler)(void*); /* Function to call when busy */ void *pBusyHandlerArg; /* Context argument for xBusyHandler */ int aStat[4]; /* Total cache hits, misses, writes, spills */ #ifdef SQLITE_TEST int nRead; /* Database pages read */ #endif void (*xReiniter)(DbPage*); /* Call this routine when reloading pages */ int (*xGet)(Pager*,Pgno,DbPage**,int); /* Routine to fetch a patch */ char *pTmpSpace; /* Pager.pageSize bytes of space for tmp use */ PCache *pPCache; /* Pointer to page cache object */ #ifndef SQLITE_OMIT_WAL Wal *pWal; /* Write-ahead log used by "journal_mode=wal" */ char *zWal; /* File name for write-ahead log */ #endif }; /* ** Indexes for use with Pager.aStat[]. The Pager.aStat[] array contains ** the values accessed by passing SQLITE_DBSTATUS_CACHE_HIT, CACHE_MISS ** or CACHE_WRITE to sqlite3_db_status(). */ #define PAGER_STAT_HIT 0 #define PAGER_STAT_MISS 1 #define PAGER_STAT_WRITE 2 #define PAGER_STAT_SPILL 3 /* ** The following global variables hold counters used for ** testing purposes only. These variables do not exist in ** a non-testing build. These variables are not thread-safe. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_pager_readdb_count = 0; /* Number of full pages read from DB */ SQLITE_API int sqlite3_pager_writedb_count = 0; /* Number of full pages written to DB */ SQLITE_API int sqlite3_pager_writej_count = 0; /* Number of pages written to journal */ # define PAGER_INCR(v) v++ #else # define PAGER_INCR(v) #endif /* ** Journal files begin with the following magic string. The data ** was obtained from /dev/random. It is used only as a sanity check. ** ** Since version 2.8.0, the journal format contains additional sanity ** checking information. If the power fails while the journal is being ** written, semi-random garbage data might appear in the journal ** file after power is restored. If an attempt is then made ** to roll the journal back, the database could be corrupted. The additional ** sanity checking data is an attempt to discover the garbage in the ** journal and ignore it. ** ** The sanity checking information for the new journal format consists ** of a 32-bit checksum on each page of data. The checksum covers both ** the page number and the pPager->pageSize bytes of data for the page. ** This cksum is initialized to a 32-bit random value that appears in the ** journal file right after the header. The random initializer is important, ** because garbage data that appears at the end of a journal is likely ** data that was once in other files that have now been deleted. If the ** garbage data came from an obsolete journal file, the checksums might ** be correct. But by initializing the checksum to random value which ** is different for every journal, we minimize that risk. */ static const unsigned char aJournalMagic[] = { 0xd9, 0xd5, 0x05, 0xf9, 0x20, 0xa1, 0x63, 0xd7, }; /* ** The size of the of each page record in the journal is given by ** the following macro. */ #define JOURNAL_PG_SZ(pPager) ((pPager->pageSize) + 8) /* ** The journal header size for this pager. This is usually the same ** size as a single disk sector. See also setSectorSize(). */ #define JOURNAL_HDR_SZ(pPager) (pPager->sectorSize) /* ** The macro MEMDB is true if we are dealing with an in-memory database. ** We do this as a macro so that if the SQLITE_OMIT_MEMORYDB macro is set, ** the value of MEMDB will be a constant and the compiler will optimize ** out code that would never execute. */ #ifdef SQLITE_OMIT_MEMORYDB # define MEMDB 0 #else # define MEMDB pPager->memDb #endif /* ** The macro USEFETCH is true if we are allowed to use the xFetch and xUnfetch ** interfaces to access the database using memory-mapped I/O. */ #if SQLITE_MAX_MMAP_SIZE>0 # define USEFETCH(x) ((x)->bUseFetch) #else # define USEFETCH(x) 0 #endif /* ** The argument to this macro is a file descriptor (type sqlite3_file*). ** Return 0 if it is not open, or non-zero (but not 1) if it is. ** ** This is so that expressions can be written as: ** ** if( isOpen(pPager->jfd) ){ ... ** ** instead of ** ** if( pPager->jfd->pMethods ){ ... */ #define isOpen(pFd) ((pFd)->pMethods!=0) #ifdef SQLITE_DIRECT_OVERFLOW_READ /* ** Return true if page pgno can be read directly from the database file ** by the b-tree layer. This is the case if: ** ** * the database file is open, ** * there are no dirty pages in the cache, and ** * the desired page is not currently in the wal file. */ SQLITE_PRIVATE int sqlite3PagerDirectReadOk(Pager *pPager, Pgno pgno){ if( pPager->fd->pMethods==0 ) return 0; if( sqlite3PCacheIsDirty(pPager->pPCache) ) return 0; #ifndef SQLITE_OMIT_WAL if( pPager->pWal ){ u32 iRead = 0; int rc; rc = sqlite3WalFindFrame(pPager->pWal, pgno, &iRead); return (rc==SQLITE_OK && iRead==0); } #endif return 1; } #endif #ifndef SQLITE_OMIT_WAL # define pagerUseWal(x) ((x)->pWal!=0) #else # define pagerUseWal(x) 0 # define pagerRollbackWal(x) 0 # define pagerWalFrames(v,w,x,y) 0 # define pagerOpenWalIfPresent(z) SQLITE_OK # define pagerBeginReadTransaction(z) SQLITE_OK #endif #ifndef NDEBUG /* ** Usage: ** ** assert( assert_pager_state(pPager) ); ** ** This function runs many asserts to try to find inconsistencies in ** the internal state of the Pager object. */ static int assert_pager_state(Pager *p){ Pager *pPager = p; /* State must be valid. */ assert( p->eState==PAGER_OPEN || p->eState==PAGER_READER || p->eState==PAGER_WRITER_LOCKED || p->eState==PAGER_WRITER_CACHEMOD || p->eState==PAGER_WRITER_DBMOD || p->eState==PAGER_WRITER_FINISHED || p->eState==PAGER_ERROR ); /* Regardless of the current state, a temp-file connection always behaves ** as if it has an exclusive lock on the database file. It never updates ** the change-counter field, so the changeCountDone flag is always set. */ assert( p->tempFile==0 || p->eLock==EXCLUSIVE_LOCK ); assert( p->tempFile==0 || pPager->changeCountDone ); /* If the useJournal flag is clear, the journal-mode must be "OFF". ** And if the journal-mode is "OFF", the journal file must not be open. */ assert( p->journalMode==PAGER_JOURNALMODE_OFF || p->useJournal ); assert( p->journalMode!=PAGER_JOURNALMODE_OFF || !isOpen(p->jfd) ); /* Check that MEMDB implies noSync. And an in-memory journal. Since ** this means an in-memory pager performs no IO at all, it cannot encounter ** either SQLITE_IOERR or SQLITE_FULL during rollback or while finalizing ** a journal file. (although the in-memory journal implementation may ** return SQLITE_IOERR_NOMEM while the journal file is being written). It ** is therefore not possible for an in-memory pager to enter the ERROR ** state. */ if( MEMDB ){ assert( !isOpen(p->fd) ); assert( p->noSync ); assert( p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_MEMORY ); assert( p->eState!=PAGER_ERROR && p->eState!=PAGER_OPEN ); assert( pagerUseWal(p)==0 ); } /* If changeCountDone is set, a RESERVED lock or greater must be held ** on the file. */ assert( pPager->changeCountDone==0 || pPager->eLock>=RESERVED_LOCK ); assert( p->eLock!=PENDING_LOCK ); switch( p->eState ){ case PAGER_OPEN: assert( !MEMDB ); assert( pPager->errCode==SQLITE_OK ); assert( sqlite3PcacheRefCount(pPager->pPCache)==0 || pPager->tempFile ); break; case PAGER_READER: assert( pPager->errCode==SQLITE_OK ); assert( p->eLock!=UNKNOWN_LOCK ); assert( p->eLock>=SHARED_LOCK ); break; case PAGER_WRITER_LOCKED: assert( p->eLock!=UNKNOWN_LOCK ); assert( pPager->errCode==SQLITE_OK ); if( !pagerUseWal(pPager) ){ assert( p->eLock>=RESERVED_LOCK ); } assert( pPager->dbSize==pPager->dbOrigSize ); assert( pPager->dbOrigSize==pPager->dbFileSize ); assert( pPager->dbOrigSize==pPager->dbHintSize ); assert( pPager->setSuper==0 ); break; case PAGER_WRITER_CACHEMOD: assert( p->eLock!=UNKNOWN_LOCK ); assert( pPager->errCode==SQLITE_OK ); if( !pagerUseWal(pPager) ){ /* It is possible that if journal_mode=wal here that neither the ** journal file nor the WAL file are open. This happens during ** a rollback transaction that switches from journal_mode=off ** to journal_mode=wal. */ assert( p->eLock>=RESERVED_LOCK ); assert( isOpen(p->jfd) || p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_WAL ); } assert( pPager->dbOrigSize==pPager->dbFileSize ); assert( pPager->dbOrigSize==pPager->dbHintSize ); break; case PAGER_WRITER_DBMOD: assert( p->eLock==EXCLUSIVE_LOCK ); assert( pPager->errCode==SQLITE_OK ); assert( !pagerUseWal(pPager) ); assert( p->eLock>=EXCLUSIVE_LOCK ); assert( isOpen(p->jfd) || p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_WAL || (sqlite3OsDeviceCharacteristics(p->fd)&SQLITE_IOCAP_BATCH_ATOMIC) ); assert( pPager->dbOrigSize<=pPager->dbHintSize ); break; case PAGER_WRITER_FINISHED: assert( p->eLock==EXCLUSIVE_LOCK ); assert( pPager->errCode==SQLITE_OK ); assert( !pagerUseWal(pPager) ); assert( isOpen(p->jfd) || p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_WAL || (sqlite3OsDeviceCharacteristics(p->fd)&SQLITE_IOCAP_BATCH_ATOMIC) ); break; case PAGER_ERROR: /* There must be at least one outstanding reference to the pager if ** in ERROR state. Otherwise the pager should have already dropped ** back to OPEN state. */ assert( pPager->errCode!=SQLITE_OK ); assert( sqlite3PcacheRefCount(pPager->pPCache)>0 || pPager->tempFile ); break; } return 1; } #endif /* ifndef NDEBUG */ #ifdef SQLITE_DEBUG /* ** Return a pointer to a human readable string in a static buffer ** containing the state of the Pager object passed as an argument. This ** is intended to be used within debuggers. For example, as an alternative ** to "print *pPager" in gdb: ** ** (gdb) printf "%s", print_pager_state(pPager) ** ** This routine has external linkage in order to suppress compiler warnings ** about an unused function. It is enclosed within SQLITE_DEBUG and so does ** not appear in normal builds. */ char *print_pager_state(Pager *p){ static char zRet[1024]; sqlite3_snprintf(1024, zRet, "Filename: %s\n" "State: %s errCode=%d\n" "Lock: %s\n" "Locking mode: locking_mode=%s\n" "Journal mode: journal_mode=%s\n" "Backing store: tempFile=%d memDb=%d useJournal=%d\n" "Journal: journalOff=%lld journalHdr=%lld\n" "Size: dbsize=%d dbOrigSize=%d dbFileSize=%d\n" , p->zFilename , p->eState==PAGER_OPEN ? "OPEN" : p->eState==PAGER_READER ? "READER" : p->eState==PAGER_WRITER_LOCKED ? "WRITER_LOCKED" : p->eState==PAGER_WRITER_CACHEMOD ? "WRITER_CACHEMOD" : p->eState==PAGER_WRITER_DBMOD ? "WRITER_DBMOD" : p->eState==PAGER_WRITER_FINISHED ? "WRITER_FINISHED" : p->eState==PAGER_ERROR ? "ERROR" : "?error?" , (int)p->errCode , p->eLock==NO_LOCK ? "NO_LOCK" : p->eLock==RESERVED_LOCK ? "RESERVED" : p->eLock==EXCLUSIVE_LOCK ? "EXCLUSIVE" : p->eLock==SHARED_LOCK ? "SHARED" : p->eLock==UNKNOWN_LOCK ? "UNKNOWN" : "?error?" , p->exclusiveMode ? "exclusive" : "normal" , p->journalMode==PAGER_JOURNALMODE_MEMORY ? "memory" : p->journalMode==PAGER_JOURNALMODE_OFF ? "off" : p->journalMode==PAGER_JOURNALMODE_DELETE ? "delete" : p->journalMode==PAGER_JOURNALMODE_PERSIST ? "persist" : p->journalMode==PAGER_JOURNALMODE_TRUNCATE ? "truncate" : p->journalMode==PAGER_JOURNALMODE_WAL ? "wal" : "?error?" , (int)p->tempFile, (int)p->memDb, (int)p->useJournal , p->journalOff, p->journalHdr , (int)p->dbSize, (int)p->dbOrigSize, (int)p->dbFileSize ); return zRet; } #endif /* Forward references to the various page getters */ static int getPageNormal(Pager*,Pgno,DbPage**,int); static int getPageError(Pager*,Pgno,DbPage**,int); #if SQLITE_MAX_MMAP_SIZE>0 static int getPageMMap(Pager*,Pgno,DbPage**,int); #endif /* ** Set the Pager.xGet method for the appropriate routine used to fetch ** content from the pager. */ static void setGetterMethod(Pager *pPager){ if( pPager->errCode ){ pPager->xGet = getPageError; #if SQLITE_MAX_MMAP_SIZE>0 }else if( USEFETCH(pPager) ){ pPager->xGet = getPageMMap; #endif /* SQLITE_MAX_MMAP_SIZE>0 */ }else{ pPager->xGet = getPageNormal; } } /* ** Return true if it is necessary to write page *pPg into the sub-journal. ** A page needs to be written into the sub-journal if there exists one ** or more open savepoints for which: ** ** * The page-number is less than or equal to PagerSavepoint.nOrig, and ** * The bit corresponding to the page-number is not set in ** PagerSavepoint.pInSavepoint. */ static int subjRequiresPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; PagerSavepoint *p; Pgno pgno = pPg->pgno; int i; for(i=0; inSavepoint; i++){ p = &pPager->aSavepoint[i]; if( p->nOrig>=pgno && 0==sqlite3BitvecTestNotNull(p->pInSavepoint, pgno) ){ for(i=i+1; inSavepoint; i++){ pPager->aSavepoint[i].bTruncateOnRelease = 0; } return 1; } } return 0; } #ifdef SQLITE_DEBUG /* ** Return true if the page is already in the journal file. */ static int pageInJournal(Pager *pPager, PgHdr *pPg){ return sqlite3BitvecTest(pPager->pInJournal, pPg->pgno); } #endif /* ** Read a 32-bit integer from the given file descriptor. Store the integer ** that is read in *pRes. Return SQLITE_OK if everything worked, or an ** error code is something goes wrong. ** ** All values are stored on disk as big-endian. */ static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){ unsigned char ac[4]; int rc = sqlite3OsRead(fd, ac, sizeof(ac), offset); if( rc==SQLITE_OK ){ *pRes = sqlite3Get4byte(ac); } return rc; } /* ** Write a 32-bit integer into a string buffer in big-endian byte order. */ #define put32bits(A,B) sqlite3Put4byte((u8*)A,B) /* ** Write a 32-bit integer into the given file descriptor. Return SQLITE_OK ** on success or an error code is something goes wrong. */ static int write32bits(sqlite3_file *fd, i64 offset, u32 val){ char ac[4]; put32bits(ac, val); return sqlite3OsWrite(fd, ac, 4, offset); } /* ** Unlock the database file to level eLock, which must be either NO_LOCK ** or SHARED_LOCK. Regardless of whether or not the call to xUnlock() ** succeeds, set the Pager.eLock variable to match the (attempted) new lock. ** ** Except, if Pager.eLock is set to UNKNOWN_LOCK when this function is ** called, do not modify it. See the comment above the #define of ** UNKNOWN_LOCK for an explanation of this. */ static int pagerUnlockDb(Pager *pPager, int eLock){ int rc = SQLITE_OK; assert( !pPager->exclusiveMode || pPager->eLock==eLock ); assert( eLock==NO_LOCK || eLock==SHARED_LOCK ); assert( eLock!=NO_LOCK || pagerUseWal(pPager)==0 ); if( isOpen(pPager->fd) ){ assert( pPager->eLock>=eLock ); rc = pPager->noLock ? SQLITE_OK : sqlite3OsUnlock(pPager->fd, eLock); if( pPager->eLock!=UNKNOWN_LOCK ){ pPager->eLock = (u8)eLock; } IOTRACE(("UNLOCK %p %d\n", pPager, eLock)) } pPager->changeCountDone = pPager->tempFile; /* ticket fb3b3024ea238d5c */ return rc; } /* ** Lock the database file to level eLock, which must be either SHARED_LOCK, ** RESERVED_LOCK or EXCLUSIVE_LOCK. If the caller is successful, set the ** Pager.eLock variable to the new locking state. ** ** Except, if Pager.eLock is set to UNKNOWN_LOCK when this function is ** called, do not modify it unless the new locking state is EXCLUSIVE_LOCK. ** See the comment above the #define of UNKNOWN_LOCK for an explanation ** of this. */ static int pagerLockDb(Pager *pPager, int eLock){ int rc = SQLITE_OK; assert( eLock==SHARED_LOCK || eLock==RESERVED_LOCK || eLock==EXCLUSIVE_LOCK ); if( pPager->eLockeLock==UNKNOWN_LOCK ){ rc = pPager->noLock ? SQLITE_OK : sqlite3OsLock(pPager->fd, eLock); if( rc==SQLITE_OK && (pPager->eLock!=UNKNOWN_LOCK||eLock==EXCLUSIVE_LOCK) ){ pPager->eLock = (u8)eLock; IOTRACE(("LOCK %p %d\n", pPager, eLock)) } } return rc; } /* ** This function determines whether or not the atomic-write or ** atomic-batch-write optimizations can be used with this pager. The ** atomic-write optimization can be used if: ** ** (a) the value returned by OsDeviceCharacteristics() indicates that ** a database page may be written atomically, and ** (b) the value returned by OsSectorSize() is less than or equal ** to the page size. ** ** If it can be used, then the value returned is the size of the journal ** file when it contains rollback data for exactly one page. ** ** The atomic-batch-write optimization can be used if OsDeviceCharacteristics() ** returns a value with the SQLITE_IOCAP_BATCH_ATOMIC bit set. -1 is ** returned in this case. ** ** If neither optimization can be used, 0 is returned. */ static int jrnlBufferSize(Pager *pPager){ assert( !MEMDB ); #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) int dc; /* Device characteristics */ assert( isOpen(pPager->fd) ); dc = sqlite3OsDeviceCharacteristics(pPager->fd); #else UNUSED_PARAMETER(pPager); #endif #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( pPager->dbSize>0 && (dc&SQLITE_IOCAP_BATCH_ATOMIC) ){ return -1; } #endif #ifdef SQLITE_ENABLE_ATOMIC_WRITE { int nSector = pPager->sectorSize; int szPage = pPager->pageSize; assert(SQLITE_IOCAP_ATOMIC512==(512>>8)); assert(SQLITE_IOCAP_ATOMIC64K==(65536>>8)); if( 0==(dc&(SQLITE_IOCAP_ATOMIC|(szPage>>8)) || nSector>szPage) ){ return 0; } } return JOURNAL_HDR_SZ(pPager) + JOURNAL_PG_SZ(pPager); #endif return 0; } /* ** If SQLITE_CHECK_PAGES is defined then we do some sanity checking ** on the cache using a hash function. This is used for testing ** and debugging only. */ #ifdef SQLITE_CHECK_PAGES /* ** Return a 32-bit hash of the page data for pPage. */ static u32 pager_datahash(int nByte, unsigned char *pData){ u32 hash = 0; int i; for(i=0; ipPager->pageSize, (unsigned char *)pPage->pData); } static void pager_set_pagehash(PgHdr *pPage){ pPage->pageHash = pager_pagehash(pPage); } /* ** The CHECK_PAGE macro takes a PgHdr* as an argument. If SQLITE_CHECK_PAGES ** is defined, and NDEBUG is not defined, an assert() statement checks ** that the page is either dirty or still matches the calculated page-hash. */ #define CHECK_PAGE(x) checkPage(x) static void checkPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; assert( pPager->eState!=PAGER_ERROR ); assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); } #else #define pager_datahash(X,Y) 0 #define pager_pagehash(X) 0 #define pager_set_pagehash(X) #define CHECK_PAGE(x) #endif /* SQLITE_CHECK_PAGES */ /* ** When this is called the journal file for pager pPager must be open. ** This function attempts to read a super-journal file name from the ** end of the file and, if successful, copies it into memory supplied ** by the caller. See comments above writeSuperJournal() for the format ** used to store a super-journal file name at the end of a journal file. ** ** zSuper must point to a buffer of at least nSuper bytes allocated by ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is ** enough space to write the super-journal name). If the super-journal ** name in the journal is longer than nSuper bytes (including a ** nul-terminator), then this is handled as if no super-journal name ** were present in the journal. ** ** If a super-journal file name is present at the end of the journal ** file, then it is copied into the buffer pointed to by zSuper. A ** nul-terminator byte is appended to the buffer following the ** super-journal file name. ** ** If it is determined that no super-journal file name is present ** zSuper[0] is set to 0 and SQLITE_OK returned. ** ** If an error occurs while reading from the journal file, an SQLite ** error code is returned. */ static int readSuperJournal(sqlite3_file *pJrnl, char *zSuper, u32 nSuper){ int rc; /* Return code */ u32 len; /* Length in bytes of super-journal name */ i64 szJ; /* Total size in bytes of journal file pJrnl */ u32 cksum; /* MJ checksum value read from journal */ u32 u; /* Unsigned loop counter */ unsigned char aMagic[8]; /* A buffer to hold the magic header */ zSuper[0] = '\0'; if( SQLITE_OK!=(rc = sqlite3OsFileSize(pJrnl, &szJ)) || szJ<16 || SQLITE_OK!=(rc = read32bits(pJrnl, szJ-16, &len)) || len>=nSuper || len>szJ-16 || len==0 || SQLITE_OK!=(rc = read32bits(pJrnl, szJ-12, &cksum)) || SQLITE_OK!=(rc = sqlite3OsRead(pJrnl, aMagic, 8, szJ-8)) || memcmp(aMagic, aJournalMagic, 8) || SQLITE_OK!=(rc = sqlite3OsRead(pJrnl, zSuper, len, szJ-16-len)) ){ return rc; } /* See if the checksum matches the super-journal name */ for(u=0; ujournalOff, assuming a sector ** size of pPager->sectorSize bytes. ** ** i.e for a sector size of 512: ** ** Pager.journalOff Return value ** --------------------------------------- ** 0 0 ** 512 512 ** 100 512 ** 2000 2048 ** */ static i64 journalHdrOffset(Pager *pPager){ i64 offset = 0; i64 c = pPager->journalOff; if( c ){ offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager); } assert( offset%JOURNAL_HDR_SZ(pPager)==0 ); assert( offset>=c ); assert( (offset-c)jfd) ); assert( !sqlite3JournalIsInMemory(pPager->jfd) ); if( pPager->journalOff ){ const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ IOTRACE(("JZEROHDR %p\n", pPager)) if( doTruncate || iLimit==0 ){ rc = sqlite3OsTruncate(pPager->jfd, 0); }else{ static const char zeroHdr[28] = {0}; rc = sqlite3OsWrite(pPager->jfd, zeroHdr, sizeof(zeroHdr), 0); } if( rc==SQLITE_OK && !pPager->noSync ){ rc = sqlite3OsSync(pPager->jfd, SQLITE_SYNC_DATAONLY|pPager->syncFlags); } /* At this point the transaction is committed but the write lock ** is still held on the file. If there is a size limit configured for ** the persistent journal and the journal file currently consumes more ** space than that limit allows for, truncate it now. There is no need ** to sync the file following this operation. */ if( rc==SQLITE_OK && iLimit>0 ){ i64 sz; rc = sqlite3OsFileSize(pPager->jfd, &sz); if( rc==SQLITE_OK && sz>iLimit ){ rc = sqlite3OsTruncate(pPager->jfd, iLimit); } } } return rc; } /* ** The journal file must be open when this routine is called. A journal ** header (JOURNAL_HDR_SZ bytes) is written into the journal file at the ** current location. ** ** The format for the journal header is as follows: ** - 8 bytes: Magic identifying journal format. ** - 4 bytes: Number of records in journal, or -1 no-sync mode is on. ** - 4 bytes: Random number used for page hash. ** - 4 bytes: Initial database page count. ** - 4 bytes: Sector size used by the process that wrote this journal. ** - 4 bytes: Database page size. ** ** Followed by (JOURNAL_HDR_SZ - 28) bytes of unused space. */ static int writeJournalHdr(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ char *zHeader = pPager->pTmpSpace; /* Temporary space used to build header */ u32 nHeader = (u32)pPager->pageSize;/* Size of buffer pointed to by zHeader */ u32 nWrite; /* Bytes of header sector written */ int ii; /* Loop counter */ assert( isOpen(pPager->jfd) ); /* Journal file must be open. */ if( nHeader>JOURNAL_HDR_SZ(pPager) ){ nHeader = JOURNAL_HDR_SZ(pPager); } /* If there are active savepoints and any of them were created ** since the most recent journal header was written, update the ** PagerSavepoint.iHdrOffset fields now. */ for(ii=0; iinSavepoint; ii++){ if( pPager->aSavepoint[ii].iHdrOffset==0 ){ pPager->aSavepoint[ii].iHdrOffset = pPager->journalOff; } } pPager->journalHdr = pPager->journalOff = journalHdrOffset(pPager); /* ** Write the nRec Field - the number of page records that follow this ** journal header. Normally, zero is written to this value at this time. ** After the records are added to the journal (and the journal synced, ** if in full-sync mode), the zero is overwritten with the true number ** of records (see syncJournal()). ** ** A faster alternative is to write 0xFFFFFFFF to the nRec field. When ** reading the journal this value tells SQLite to assume that the ** rest of the journal file contains valid page records. This assumption ** is dangerous, as if a failure occurred whilst writing to the journal ** file it may contain some garbage data. There are two scenarios ** where this risk can be ignored: ** ** * When the pager is in no-sync mode. Corruption can follow a ** power failure in this case anyway. ** ** * When the SQLITE_IOCAP_SAFE_APPEND flag is set. This guarantees ** that garbage data is never appended to the journal file. */ assert( isOpen(pPager->fd) || pPager->noSync ); if( pPager->noSync || (pPager->journalMode==PAGER_JOURNALMODE_MEMORY) || (sqlite3OsDeviceCharacteristics(pPager->fd)&SQLITE_IOCAP_SAFE_APPEND) ){ memcpy(zHeader, aJournalMagic, sizeof(aJournalMagic)); put32bits(&zHeader[sizeof(aJournalMagic)], 0xffffffff); }else{ memset(zHeader, 0, sizeof(aJournalMagic)+4); } /* The random check-hash initializer */ sqlite3_randomness(sizeof(pPager->cksumInit), &pPager->cksumInit); put32bits(&zHeader[sizeof(aJournalMagic)+4], pPager->cksumInit); /* The initial database size */ put32bits(&zHeader[sizeof(aJournalMagic)+8], pPager->dbOrigSize); /* The assumed sector size for this process */ put32bits(&zHeader[sizeof(aJournalMagic)+12], pPager->sectorSize); /* The page size */ put32bits(&zHeader[sizeof(aJournalMagic)+16], pPager->pageSize); /* Initializing the tail of the buffer is not necessary. Everything ** works find if the following memset() is omitted. But initializing ** the memory prevents valgrind from complaining, so we are willing to ** take the performance hit. */ memset(&zHeader[sizeof(aJournalMagic)+20], 0, nHeader-(sizeof(aJournalMagic)+20)); /* In theory, it is only necessary to write the 28 bytes that the ** journal header consumes to the journal file here. Then increment the ** Pager.journalOff variable by JOURNAL_HDR_SZ so that the next ** record is written to the following sector (leaving a gap in the file ** that will be implicitly filled in by the OS). ** ** However it has been discovered that on some systems this pattern can ** be significantly slower than contiguously writing data to the file, ** even if that means explicitly writing data to the block of ** (JOURNAL_HDR_SZ - 28) bytes that will not be used. So that is what ** is done. ** ** The loop is required here in case the sector-size is larger than the ** database page size. Since the zHeader buffer is only Pager.pageSize ** bytes in size, more than one call to sqlite3OsWrite() may be required ** to populate the entire journal header sector. */ for(nWrite=0; rc==SQLITE_OK&&nWritejournalHdr, nHeader)) rc = sqlite3OsWrite(pPager->jfd, zHeader, nHeader, pPager->journalOff); assert( pPager->journalHdr <= pPager->journalOff ); pPager->journalOff += nHeader; } return rc; } /* ** The journal file must be open when this is called. A journal header file ** (JOURNAL_HDR_SZ bytes) is read from the current location in the journal ** file. The current location in the journal file is given by ** pPager->journalOff. See comments above function writeJournalHdr() for ** a description of the journal header format. ** ** If the header is read successfully, *pNRec is set to the number of ** page records following this header and *pDbSize is set to the size of the ** database before the transaction began, in pages. Also, pPager->cksumInit ** is set to the value read from the journal header. SQLITE_OK is returned ** in this case. ** ** If the journal header file appears to be corrupted, SQLITE_DONE is ** returned and *pNRec and *PDbSize are undefined. If JOURNAL_HDR_SZ bytes ** cannot be read from the journal file an error code is returned. */ static int readJournalHdr( Pager *pPager, /* Pager object */ int isHot, i64 journalSize, /* Size of the open journal file in bytes */ u32 *pNRec, /* OUT: Value read from the nRec field */ u32 *pDbSize /* OUT: Value of original database size field */ ){ int rc; /* Return code */ unsigned char aMagic[8]; /* A buffer to hold the magic header */ i64 iHdrOff; /* Offset of journal header being read */ assert( isOpen(pPager->jfd) ); /* Journal file must be open. */ /* Advance Pager.journalOff to the start of the next sector. If the ** journal file is too small for there to be a header stored at this ** point, return SQLITE_DONE. */ pPager->journalOff = journalHdrOffset(pPager); if( pPager->journalOff+JOURNAL_HDR_SZ(pPager) > journalSize ){ return SQLITE_DONE; } iHdrOff = pPager->journalOff; /* Read in the first 8 bytes of the journal header. If they do not match ** the magic string found at the start of each journal header, return ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise, ** proceed. */ if( isHot || iHdrOff!=pPager->journalHdr ){ rc = sqlite3OsRead(pPager->jfd, aMagic, sizeof(aMagic), iHdrOff); if( rc ){ return rc; } if( memcmp(aMagic, aJournalMagic, sizeof(aMagic))!=0 ){ return SQLITE_DONE; } } /* Read the first three 32-bit fields of the journal header: The nRec ** field, the checksum-initializer and the database size at the start ** of the transaction. Return an error code if anything goes wrong. */ if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+8, pNRec)) || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+12, &pPager->cksumInit)) || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+16, pDbSize)) ){ return rc; } if( pPager->journalOff==0 ){ u32 iPageSize; /* Page-size field of journal header */ u32 iSectorSize; /* Sector-size field of journal header */ /* Read the page-size and sector-size journal header fields. */ if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+20, &iSectorSize)) || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+24, &iPageSize)) ){ return rc; } /* Versions of SQLite prior to 3.5.8 set the page-size field of the ** journal header to zero. In this case, assume that the Pager.pageSize ** variable is already set to the correct page size. */ if( iPageSize==0 ){ iPageSize = pPager->pageSize; } /* Check that the values read from the page-size and sector-size fields ** are within range. To be 'in range', both values need to be a power ** of two greater than or equal to 512 or 32, and not greater than their ** respective compile time maximum limits. */ if( iPageSize<512 || iSectorSize<32 || iPageSize>SQLITE_MAX_PAGE_SIZE || iSectorSize>MAX_SECTOR_SIZE || ((iPageSize-1)&iPageSize)!=0 || ((iSectorSize-1)&iSectorSize)!=0 ){ /* If the either the page-size or sector-size in the journal-header is ** invalid, then the process that wrote the journal-header must have ** crashed before the header was synced. In this case stop reading ** the journal file here. */ return SQLITE_DONE; } /* Update the page-size to match the value read from the journal. ** Use a testcase() macro to make sure that malloc failure within ** PagerSetPagesize() is tested. */ rc = sqlite3PagerSetPagesize(pPager, &iPageSize, -1); testcase( rc!=SQLITE_OK ); /* Update the assumed sector-size to match the value used by ** the process that created this journal. If this journal was ** created by a process other than this one, then this routine ** is being called from within pager_playback(). The local value ** of Pager.sectorSize is restored at the end of that routine. */ pPager->sectorSize = iSectorSize; } pPager->journalOff += JOURNAL_HDR_SZ(pPager); return rc; } /* ** Write the supplied super-journal name into the journal file for pager ** pPager at the current location. The super-journal name must be the last ** thing written to a journal file. If the pager is in full-sync mode, the ** journal file descriptor is advanced to the next sector boundary before ** anything is written. The format is: ** ** + 4 bytes: PAGER_MJ_PGNO. ** + N bytes: super-journal filename in utf-8. ** + 4 bytes: N (length of super-journal name in bytes, no nul-terminator). ** + 4 bytes: super-journal name checksum. ** + 8 bytes: aJournalMagic[]. ** ** The super-journal page checksum is the sum of the bytes in thesuper-journal ** name, where each byte is interpreted as a signed 8-bit integer. ** ** If zSuper is a NULL pointer (occurs for a single database transaction), ** this call is a no-op. */ static int writeSuperJournal(Pager *pPager, const char *zSuper){ int rc; /* Return code */ int nSuper; /* Length of string zSuper */ i64 iHdrOff; /* Offset of header in journal file */ i64 jrnlSize; /* Size of journal file on disk */ u32 cksum = 0; /* Checksum of string zSuper */ assert( pPager->setSuper==0 ); assert( !pagerUseWal(pPager) ); if( !zSuper || pPager->journalMode==PAGER_JOURNALMODE_MEMORY || !isOpen(pPager->jfd) ){ return SQLITE_OK; } pPager->setSuper = 1; assert( pPager->journalHdr <= pPager->journalOff ); /* Calculate the length in bytes and the checksum of zSuper */ for(nSuper=0; zSuper[nSuper]; nSuper++){ cksum += zSuper[nSuper]; } /* If in full-sync mode, advance to the next disk sector before writing ** the super-journal name. This is in case the previous page written to ** the journal has already been synced. */ if( pPager->fullSync ){ pPager->journalOff = journalHdrOffset(pPager); } iHdrOff = pPager->journalOff; /* Write the super-journal data to the end of the journal file. If ** an error occurs, return the error code to the caller. */ if( (0 != (rc = write32bits(pPager->jfd, iHdrOff, PAGER_MJ_PGNO(pPager)))) || (0 != (rc = sqlite3OsWrite(pPager->jfd, zSuper, nSuper, iHdrOff+4))) || (0 != (rc = write32bits(pPager->jfd, iHdrOff+4+nSuper, nSuper))) || (0 != (rc = write32bits(pPager->jfd, iHdrOff+4+nSuper+4, cksum))) || (0 != (rc = sqlite3OsWrite(pPager->jfd, aJournalMagic, 8, iHdrOff+4+nSuper+8))) ){ return rc; } pPager->journalOff += (nSuper+20); /* If the pager is in peristent-journal mode, then the physical ** journal-file may extend past the end of the super-journal name ** and 8 bytes of magic data just written to the file. This is ** dangerous because the code to rollback a hot-journal file ** will not be able to find the super-journal name to determine ** whether or not the journal is hot. ** ** Easiest thing to do in this scenario is to truncate the journal ** file to the required size. */ if( SQLITE_OK==(rc = sqlite3OsFileSize(pPager->jfd, &jrnlSize)) && jrnlSize>pPager->journalOff ){ rc = sqlite3OsTruncate(pPager->jfd, pPager->journalOff); } return rc; } /* ** Discard the entire contents of the in-memory page-cache. */ static void pager_reset(Pager *pPager){ pPager->iDataVersion++; sqlite3BackupRestart(pPager->pBackup); sqlite3PcacheClear(pPager->pPCache); } /* ** Return the pPager->iDataVersion value */ SQLITE_PRIVATE u32 sqlite3PagerDataVersion(Pager *pPager){ return pPager->iDataVersion; } /* ** Free all structures in the Pager.aSavepoint[] array and set both ** Pager.aSavepoint and Pager.nSavepoint to zero. Close the sub-journal ** if it is open and the pager is not in exclusive mode. */ static void releaseAllSavepoints(Pager *pPager){ int ii; /* Iterator for looping through Pager.aSavepoint */ for(ii=0; iinSavepoint; ii++){ sqlite3BitvecDestroy(pPager->aSavepoint[ii].pInSavepoint); } if( !pPager->exclusiveMode || sqlite3JournalIsInMemory(pPager->sjfd) ){ sqlite3OsClose(pPager->sjfd); } sqlite3_free(pPager->aSavepoint); pPager->aSavepoint = 0; pPager->nSavepoint = 0; pPager->nSubRec = 0; } /* ** Set the bit number pgno in the PagerSavepoint.pInSavepoint ** bitvecs of all open savepoints. Return SQLITE_OK if successful ** or SQLITE_NOMEM if a malloc failure occurs. */ static int addToSavepointBitvecs(Pager *pPager, Pgno pgno){ int ii; /* Loop counter */ int rc = SQLITE_OK; /* Result code */ for(ii=0; iinSavepoint; ii++){ PagerSavepoint *p = &pPager->aSavepoint[ii]; if( pgno<=p->nOrig ){ rc |= sqlite3BitvecSet(p->pInSavepoint, pgno); testcase( rc==SQLITE_NOMEM ); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); } } return rc; } /* ** This function is a no-op if the pager is in exclusive mode and not ** in the ERROR state. Otherwise, it switches the pager to PAGER_OPEN ** state. ** ** If the pager is not in exclusive-access mode, the database file is ** completely unlocked. If the file is unlocked and the file-system does ** not exhibit the UNDELETABLE_WHEN_OPEN property, the journal file is ** closed (if it is open). ** ** If the pager is in ERROR state when this function is called, the ** contents of the pager cache are discarded before switching back to ** the OPEN state. Regardless of whether the pager is in exclusive-mode ** or not, any journal file left in the file-system will be treated ** as a hot-journal and rolled back the next time a read-transaction ** is opened (by this or by any other connection). */ static void pager_unlock(Pager *pPager){ assert( pPager->eState==PAGER_READER || pPager->eState==PAGER_OPEN || pPager->eState==PAGER_ERROR ); sqlite3BitvecDestroy(pPager->pInJournal); pPager->pInJournal = 0; releaseAllSavepoints(pPager); if( pagerUseWal(pPager) ){ assert( !isOpen(pPager->jfd) ); sqlite3WalEndReadTransaction(pPager->pWal); pPager->eState = PAGER_OPEN; }else if( !pPager->exclusiveMode ){ int rc; /* Error code returned by pagerUnlockDb() */ int iDc = isOpen(pPager->fd)?sqlite3OsDeviceCharacteristics(pPager->fd):0; /* If the operating system support deletion of open files, then ** close the journal file when dropping the database lock. Otherwise ** another connection with journal_mode=delete might delete the file ** out from under us. */ assert( (PAGER_JOURNALMODE_MEMORY & 5)!=1 ); assert( (PAGER_JOURNALMODE_OFF & 5)!=1 ); assert( (PAGER_JOURNALMODE_WAL & 5)!=1 ); assert( (PAGER_JOURNALMODE_DELETE & 5)!=1 ); assert( (PAGER_JOURNALMODE_TRUNCATE & 5)==1 ); assert( (PAGER_JOURNALMODE_PERSIST & 5)==1 ); if( 0==(iDc & SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN) || 1!=(pPager->journalMode & 5) ){ sqlite3OsClose(pPager->jfd); } /* If the pager is in the ERROR state and the call to unlock the database ** file fails, set the current lock to UNKNOWN_LOCK. See the comment ** above the #define for UNKNOWN_LOCK for an explanation of why this ** is necessary. */ rc = pagerUnlockDb(pPager, NO_LOCK); if( rc!=SQLITE_OK && pPager->eState==PAGER_ERROR ){ pPager->eLock = UNKNOWN_LOCK; } /* The pager state may be changed from PAGER_ERROR to PAGER_OPEN here ** without clearing the error code. This is intentional - the error ** code is cleared and the cache reset in the block below. */ assert( pPager->errCode || pPager->eState!=PAGER_ERROR ); pPager->eState = PAGER_OPEN; } /* If Pager.errCode is set, the contents of the pager cache cannot be ** trusted. Now that there are no outstanding references to the pager, ** it can safely move back to PAGER_OPEN state. This happens in both ** normal and exclusive-locking mode. */ assert( pPager->errCode==SQLITE_OK || !MEMDB ); if( pPager->errCode ){ if( pPager->tempFile==0 ){ pager_reset(pPager); pPager->changeCountDone = 0; pPager->eState = PAGER_OPEN; }else{ pPager->eState = (isOpen(pPager->jfd) ? PAGER_OPEN : PAGER_READER); } if( USEFETCH(pPager) ) sqlite3OsUnfetch(pPager->fd, 0, 0); pPager->errCode = SQLITE_OK; setGetterMethod(pPager); } pPager->journalOff = 0; pPager->journalHdr = 0; pPager->setSuper = 0; } /* ** This function is called whenever an IOERR or FULL error that requires ** the pager to transition into the ERROR state may ahve occurred. ** The first argument is a pointer to the pager structure, the second ** the error-code about to be returned by a pager API function. The ** value returned is a copy of the second argument to this function. ** ** If the second argument is SQLITE_FULL, SQLITE_IOERR or one of the ** IOERR sub-codes, the pager enters the ERROR state and the error code ** is stored in Pager.errCode. While the pager remains in the ERROR state, ** all major API calls on the Pager will immediately return Pager.errCode. ** ** The ERROR state indicates that the contents of the pager-cache ** cannot be trusted. This state can be cleared by completely discarding ** the contents of the pager-cache. If a transaction was active when ** the persistent error occurred, then the rollback journal may need ** to be replayed to restore the contents of the database file (as if ** it were a hot-journal). */ static int pager_error(Pager *pPager, int rc){ int rc2 = rc & 0xff; assert( rc==SQLITE_OK || !MEMDB ); assert( pPager->errCode==SQLITE_FULL || pPager->errCode==SQLITE_OK || (pPager->errCode & 0xff)==SQLITE_IOERR ); if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){ pPager->errCode = rc; pPager->eState = PAGER_ERROR; setGetterMethod(pPager); } return rc; } static int pager_truncate(Pager *pPager, Pgno nPage); /* ** The write transaction open on pPager is being committed (bCommit==1) ** or rolled back (bCommit==0). ** ** Return TRUE if and only if all dirty pages should be flushed to disk. ** ** Rules: ** ** * For non-TEMP databases, always sync to disk. This is necessary ** for transactions to be durable. ** ** * Sync TEMP database only on a COMMIT (not a ROLLBACK) when the backing ** file has been created already (via a spill on pagerStress()) and ** when the number of dirty pages in memory exceeds 25% of the total ** cache size. */ static int pagerFlushOnCommit(Pager *pPager, int bCommit){ if( pPager->tempFile==0 ) return 1; if( !bCommit ) return 0; if( !isOpen(pPager->fd) ) return 0; return (sqlite3PCachePercentDirty(pPager->pPCache)>=25); } /* ** This routine ends a transaction. A transaction is usually ended by ** either a COMMIT or a ROLLBACK operation. This routine may be called ** after rollback of a hot-journal, or if an error occurs while opening ** the journal file or writing the very first journal-header of a ** database transaction. ** ** This routine is never called in PAGER_ERROR state. If it is called ** in PAGER_NONE or PAGER_SHARED state and the lock held is less ** exclusive than a RESERVED lock, it is a no-op. ** ** Otherwise, any active savepoints are released. ** ** If the journal file is open, then it is "finalized". Once a journal ** file has been finalized it is not possible to use it to roll back a ** transaction. Nor will it be considered to be a hot-journal by this ** or any other database connection. Exactly how a journal is finalized ** depends on whether or not the pager is running in exclusive mode and ** the current journal-mode (Pager.journalMode value), as follows: ** ** journalMode==MEMORY ** Journal file descriptor is simply closed. This destroys an ** in-memory journal. ** ** journalMode==TRUNCATE ** Journal file is truncated to zero bytes in size. ** ** journalMode==PERSIST ** The first 28 bytes of the journal file are zeroed. This invalidates ** the first journal header in the file, and hence the entire journal ** file. An invalid journal file cannot be rolled back. ** ** journalMode==DELETE ** The journal file is closed and deleted using sqlite3OsDelete(). ** ** If the pager is running in exclusive mode, this method of finalizing ** the journal file is never used. Instead, if the journalMode is ** DELETE and the pager is in exclusive mode, the method described under ** journalMode==PERSIST is used instead. ** ** After the journal is finalized, the pager moves to PAGER_READER state. ** If running in non-exclusive rollback mode, the lock on the file is ** downgraded to a SHARED_LOCK. ** ** SQLITE_OK is returned if no error occurs. If an error occurs during ** any of the IO operations to finalize the journal file or unlock the ** database then the IO error code is returned to the user. If the ** operation to finalize the journal file fails, then the code still ** tries to unlock the database file if not in exclusive mode. If the ** unlock operation fails as well, then the first error code related ** to the first error encountered (the journal finalization one) is ** returned. */ static int pager_end_transaction(Pager *pPager, int hasSuper, int bCommit){ int rc = SQLITE_OK; /* Error code from journal finalization operation */ int rc2 = SQLITE_OK; /* Error code from db file unlock operation */ /* Do nothing if the pager does not have an open write transaction ** or at least a RESERVED lock. This function may be called when there ** is no write-transaction active but a RESERVED or greater lock is ** held under two circumstances: ** ** 1. After a successful hot-journal rollback, it is called with ** eState==PAGER_NONE and eLock==EXCLUSIVE_LOCK. ** ** 2. If a connection with locking_mode=exclusive holding an EXCLUSIVE ** lock switches back to locking_mode=normal and then executes a ** read-transaction, this function is called with eState==PAGER_READER ** and eLock==EXCLUSIVE_LOCK when the read-transaction is closed. */ assert( assert_pager_state(pPager) ); assert( pPager->eState!=PAGER_ERROR ); if( pPager->eStateeLockjfd) || pPager->pInJournal==0 || (sqlite3OsDeviceCharacteristics(pPager->fd)&SQLITE_IOCAP_BATCH_ATOMIC) ); if( isOpen(pPager->jfd) ){ assert( !pagerUseWal(pPager) ); /* Finalize the journal file. */ if( sqlite3JournalIsInMemory(pPager->jfd) ){ /* assert( pPager->journalMode==PAGER_JOURNALMODE_MEMORY ); */ sqlite3OsClose(pPager->jfd); }else if( pPager->journalMode==PAGER_JOURNALMODE_TRUNCATE ){ if( pPager->journalOff==0 ){ rc = SQLITE_OK; }else{ rc = sqlite3OsTruncate(pPager->jfd, 0); if( rc==SQLITE_OK && pPager->fullSync ){ /* Make sure the new file size is written into the inode right away. ** Otherwise the journal might resurrect following a power loss and ** cause the last transaction to roll back. See ** https://bugzilla.mozilla.org/show_bug.cgi?id=1072773 */ rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags); } } pPager->journalOff = 0; }else if( pPager->journalMode==PAGER_JOURNALMODE_PERSIST || (pPager->exclusiveMode && pPager->journalMode!=PAGER_JOURNALMODE_WAL) ){ rc = zeroJournalHdr(pPager, hasSuper||pPager->tempFile); pPager->journalOff = 0; }else{ /* This branch may be executed with Pager.journalMode==MEMORY if ** a hot-journal was just rolled back. In this case the journal ** file should be closed and deleted. If this connection writes to ** the database file, it will do so using an in-memory journal. */ int bDelete = !pPager->tempFile; assert( sqlite3JournalIsInMemory(pPager->jfd)==0 ); assert( pPager->journalMode==PAGER_JOURNALMODE_DELETE || pPager->journalMode==PAGER_JOURNALMODE_MEMORY || pPager->journalMode==PAGER_JOURNALMODE_WAL ); sqlite3OsClose(pPager->jfd); if( bDelete ){ rc = sqlite3OsDelete(pPager->pVfs, pPager->zJournal, pPager->extraSync); } } } #ifdef SQLITE_CHECK_PAGES sqlite3PcacheIterateDirty(pPager->pPCache, pager_set_pagehash); if( pPager->dbSize==0 && sqlite3PcacheRefCount(pPager->pPCache)>0 ){ PgHdr *p = sqlite3PagerLookup(pPager, 1); if( p ){ p->pageHash = 0; sqlite3PagerUnrefNotNull(p); } } #endif sqlite3BitvecDestroy(pPager->pInJournal); pPager->pInJournal = 0; pPager->nRec = 0; if( rc==SQLITE_OK ){ if( MEMDB || pagerFlushOnCommit(pPager, bCommit) ){ sqlite3PcacheCleanAll(pPager->pPCache); }else{ sqlite3PcacheClearWritable(pPager->pPCache); } sqlite3PcacheTruncate(pPager->pPCache, pPager->dbSize); } if( pagerUseWal(pPager) ){ /* Drop the WAL write-lock, if any. Also, if the connection was in ** locking_mode=exclusive mode but is no longer, drop the EXCLUSIVE ** lock held on the database file. */ rc2 = sqlite3WalEndWriteTransaction(pPager->pWal); assert( rc2==SQLITE_OK ); }else if( rc==SQLITE_OK && bCommit && pPager->dbFileSize>pPager->dbSize ){ /* This branch is taken when committing a transaction in rollback-journal ** mode if the database file on disk is larger than the database image. ** At this point the journal has been finalized and the transaction ** successfully committed, but the EXCLUSIVE lock is still held on the ** file. So it is safe to truncate the database file to its minimum ** required size. */ assert( pPager->eLock==EXCLUSIVE_LOCK ); rc = pager_truncate(pPager, pPager->dbSize); } if( rc==SQLITE_OK && bCommit ){ rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_COMMIT_PHASETWO, 0); if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; } if( !pPager->exclusiveMode && (!pagerUseWal(pPager) || sqlite3WalExclusiveMode(pPager->pWal, 0)) ){ rc2 = pagerUnlockDb(pPager, SHARED_LOCK); } pPager->eState = PAGER_READER; pPager->setSuper = 0; return (rc==SQLITE_OK?rc2:rc); } /* ** Execute a rollback if a transaction is active and unlock the ** database file. ** ** If the pager has already entered the ERROR state, do not attempt ** the rollback at this time. Instead, pager_unlock() is called. The ** call to pager_unlock() will discard all in-memory pages, unlock ** the database file and move the pager back to OPEN state. If this ** means that there is a hot-journal left in the file-system, the next ** connection to obtain a shared lock on the pager (which may be this one) ** will roll it back. ** ** If the pager has not already entered the ERROR state, but an IO or ** malloc error occurs during a rollback, then this will itself cause ** the pager to enter the ERROR state. Which will be cleared by the ** call to pager_unlock(), as described above. */ static void pagerUnlockAndRollback(Pager *pPager){ if( pPager->eState!=PAGER_ERROR && pPager->eState!=PAGER_OPEN ){ assert( assert_pager_state(pPager) ); if( pPager->eState>=PAGER_WRITER_LOCKED ){ sqlite3BeginBenignMalloc(); sqlite3PagerRollback(pPager); sqlite3EndBenignMalloc(); }else if( !pPager->exclusiveMode ){ assert( pPager->eState==PAGER_READER ); pager_end_transaction(pPager, 0, 0); } } pager_unlock(pPager); } /* ** Parameter aData must point to a buffer of pPager->pageSize bytes ** of data. Compute and return a checksum based ont the contents of the ** page of data and the current value of pPager->cksumInit. ** ** This is not a real checksum. It is really just the sum of the ** random initial value (pPager->cksumInit) and every 200th byte ** of the page data, starting with byte offset (pPager->pageSize%200). ** Each byte is interpreted as an 8-bit unsigned integer. ** ** Changing the formula used to compute this checksum results in an ** incompatible journal file format. ** ** If journal corruption occurs due to a power failure, the most likely ** scenario is that one end or the other of the record will be changed. ** It is much less likely that the two ends of the journal record will be ** correct and the middle be corrupt. Thus, this "checksum" scheme, ** though fast and simple, catches the mostly likely kind of corruption. */ static u32 pager_cksum(Pager *pPager, const u8 *aData){ u32 cksum = pPager->cksumInit; /* Checksum value to return */ int i = pPager->pageSize-200; /* Loop counter */ while( i>0 ){ cksum += aData[i]; i -= 200; } return cksum; } /* ** Read a single page from either the journal file (if isMainJrnl==1) or ** from the sub-journal (if isMainJrnl==0) and playback that page. ** The page begins at offset *pOffset into the file. The *pOffset ** value is increased to the start of the next page in the journal. ** ** The main rollback journal uses checksums - the statement journal does ** not. ** ** If the page number of the page record read from the (sub-)journal file ** is greater than the current value of Pager.dbSize, then playback is ** skipped and SQLITE_OK is returned. ** ** If pDone is not NULL, then it is a record of pages that have already ** been played back. If the page at *pOffset has already been played back ** (if the corresponding pDone bit is set) then skip the playback. ** Make sure the pDone bit corresponding to the *pOffset page is set ** prior to returning. ** ** If the page record is successfully read from the (sub-)journal file ** and played back, then SQLITE_OK is returned. If an IO error occurs ** while reading the record from the (sub-)journal file or while writing ** to the database file, then the IO error code is returned. If data ** is successfully read from the (sub-)journal file but appears to be ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in ** two circumstances: ** ** * If the record page-number is illegal (0 or PAGER_MJ_PGNO), or ** * If the record is being rolled back from the main journal file ** and the checksum field does not match the record content. ** ** Neither of these two scenarios are possible during a savepoint rollback. ** ** If this is a savepoint rollback, then memory may have to be dynamically ** allocated by this function. If this is the case and an allocation fails, ** SQLITE_NOMEM is returned. */ static int pager_playback_one_page( Pager *pPager, /* The pager being played back */ i64 *pOffset, /* Offset of record to playback */ Bitvec *pDone, /* Bitvec of pages already played back */ int isMainJrnl, /* 1 -> main journal. 0 -> sub-journal. */ int isSavepnt /* True for a savepoint rollback */ ){ int rc; PgHdr *pPg; /* An existing page in the cache */ Pgno pgno; /* The page number of a page in journal */ u32 cksum; /* Checksum used for sanity checking */ char *aData; /* Temporary storage for the page */ sqlite3_file *jfd; /* The file descriptor for the journal file */ int isSynced; /* True if journal page is synced */ assert( (isMainJrnl&~1)==0 ); /* isMainJrnl is 0 or 1 */ assert( (isSavepnt&~1)==0 ); /* isSavepnt is 0 or 1 */ assert( isMainJrnl || pDone ); /* pDone always used on sub-journals */ assert( isSavepnt || pDone==0 ); /* pDone never used on non-savepoint */ aData = pPager->pTmpSpace; assert( aData ); /* Temp storage must have already been allocated */ assert( pagerUseWal(pPager)==0 || (!isMainJrnl && isSavepnt) ); /* Either the state is greater than PAGER_WRITER_CACHEMOD (a transaction ** or savepoint rollback done at the request of the caller) or this is ** a hot-journal rollback. If it is a hot-journal rollback, the pager ** is in state OPEN and holds an EXCLUSIVE lock. Hot-journal rollback ** only reads from the main journal, not the sub-journal. */ assert( pPager->eState>=PAGER_WRITER_CACHEMOD || (pPager->eState==PAGER_OPEN && pPager->eLock==EXCLUSIVE_LOCK) ); assert( pPager->eState>=PAGER_WRITER_CACHEMOD || isMainJrnl ); /* Read the page number and page data from the journal or sub-journal ** file. Return an error code to the caller if an IO error occurs. */ jfd = isMainJrnl ? pPager->jfd : pPager->sjfd; rc = read32bits(jfd, *pOffset, &pgno); if( rc!=SQLITE_OK ) return rc; rc = sqlite3OsRead(jfd, (u8*)aData, pPager->pageSize, (*pOffset)+4); if( rc!=SQLITE_OK ) return rc; *pOffset += pPager->pageSize + 4 + isMainJrnl*4; /* Sanity checking on the page. This is more important that I originally ** thought. If a power failure occurs while the journal is being written, ** it could cause invalid data to be written into the journal. We need to ** detect this invalid data (with high probability) and ignore it. */ if( pgno==0 || pgno==PAGER_MJ_PGNO(pPager) ){ assert( !isSavepnt ); return SQLITE_DONE; } if( pgno>(Pgno)pPager->dbSize || sqlite3BitvecTest(pDone, pgno) ){ return SQLITE_OK; } if( isMainJrnl ){ rc = read32bits(jfd, (*pOffset)-4, &cksum); if( rc ) return rc; if( !isSavepnt && pager_cksum(pPager, (u8*)aData)!=cksum ){ return SQLITE_DONE; } } /* If this page has already been played back before during the current ** rollback, then don't bother to play it back again. */ if( pDone && (rc = sqlite3BitvecSet(pDone, pgno))!=SQLITE_OK ){ return rc; } /* When playing back page 1, restore the nReserve setting */ if( pgno==1 && pPager->nReserve!=((u8*)aData)[20] ){ pPager->nReserve = ((u8*)aData)[20]; } /* If the pager is in CACHEMOD state, then there must be a copy of this ** page in the pager cache. In this case just update the pager cache, ** not the database file. The page is left marked dirty in this case. ** ** An exception to the above rule: If the database is in no-sync mode ** and a page is moved during an incremental vacuum then the page may ** not be in the pager cache. Later: if a malloc() or IO error occurs ** during a Movepage() call, then the page may not be in the cache ** either. So the condition described in the above paragraph is not ** assert()able. ** ** If in WRITER_DBMOD, WRITER_FINISHED or OPEN state, then we update the ** pager cache if it exists and the main file. The page is then marked ** not dirty. Since this code is only executed in PAGER_OPEN state for ** a hot-journal rollback, it is guaranteed that the page-cache is empty ** if the pager is in OPEN state. ** ** Ticket #1171: The statement journal might contain page content that is ** different from the page content at the start of the transaction. ** This occurs when a page is changed prior to the start of a statement ** then changed again within the statement. When rolling back such a ** statement we must not write to the original database unless we know ** for certain that original page contents are synced into the main rollback ** journal. Otherwise, a power loss might leave modified data in the ** database file without an entry in the rollback journal that can ** restore the database to its original form. Two conditions must be ** met before writing to the database files. (1) the database must be ** locked. (2) we know that the original page content is fully synced ** in the main journal either because the page is not in cache or else ** the page is marked as needSync==0. ** ** 2008-04-14: When attempting to vacuum a corrupt database file, it ** is possible to fail a statement on a database that does not yet exist. ** Do not attempt to write if database file has never been opened. */ if( pagerUseWal(pPager) ){ pPg = 0; }else{ pPg = sqlite3PagerLookup(pPager, pgno); } assert( pPg || !MEMDB ); assert( pPager->eState!=PAGER_OPEN || pPg==0 || pPager->tempFile ); PAGERTRACE(("PLAYBACK %d page %d hash(%08x) %s\n", PAGERID(pPager), pgno, pager_datahash(pPager->pageSize, (u8*)aData), (isMainJrnl?"main-journal":"sub-journal") )); if( isMainJrnl ){ isSynced = pPager->noSync || (*pOffset <= pPager->journalHdr); }else{ isSynced = (pPg==0 || 0==(pPg->flags & PGHDR_NEED_SYNC)); } if( isOpen(pPager->fd) && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) && isSynced ){ i64 ofst = (pgno-1)*(i64)pPager->pageSize; testcase( !isSavepnt && pPg!=0 && (pPg->flags&PGHDR_NEED_SYNC)!=0 ); assert( !pagerUseWal(pPager) ); /* Write the data read from the journal back into the database file. ** This is usually safe even for an encrypted database - as the data ** was encrypted before it was written to the journal file. The exception ** is if the data was just read from an in-memory sub-journal. In that ** case it must be encrypted here before it is copied into the database ** file. */ rc = sqlite3OsWrite(pPager->fd, (u8 *)aData, pPager->pageSize, ofst); if( pgno>pPager->dbFileSize ){ pPager->dbFileSize = pgno; } if( pPager->pBackup ){ sqlite3BackupUpdate(pPager->pBackup, pgno, (u8*)aData); } }else if( !isMainJrnl && pPg==0 ){ /* If this is a rollback of a savepoint and data was not written to ** the database and the page is not in-memory, there is a potential ** problem. When the page is next fetched by the b-tree layer, it ** will be read from the database file, which may or may not be ** current. ** ** There are a couple of different ways this can happen. All are quite ** obscure. When running in synchronous mode, this can only happen ** if the page is on the free-list at the start of the transaction, then ** populated, then moved using sqlite3PagerMovepage(). ** ** The solution is to add an in-memory page to the cache containing ** the data just read from the sub-journal. Mark the page as dirty ** and if the pager requires a journal-sync, then mark the page as ** requiring a journal-sync before it is written. */ assert( isSavepnt ); assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)==0 ); pPager->doNotSpill |= SPILLFLAG_ROLLBACK; rc = sqlite3PagerGet(pPager, pgno, &pPg, 1); assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)!=0 ); pPager->doNotSpill &= ~SPILLFLAG_ROLLBACK; if( rc!=SQLITE_OK ) return rc; sqlite3PcacheMakeDirty(pPg); } if( pPg ){ /* No page should ever be explicitly rolled back that is in use, except ** for page 1 which is held in use in order to keep the lock on the ** database active. However such a page may be rolled back as a result ** of an internal error resulting in an automatic call to ** sqlite3PagerRollback(). */ void *pData; pData = pPg->pData; memcpy(pData, (u8*)aData, pPager->pageSize); pPager->xReiniter(pPg); /* It used to be that sqlite3PcacheMakeClean(pPg) was called here. But ** that call was dangerous and had no detectable benefit since the cache ** is normally cleaned by sqlite3PcacheCleanAll() after rollback and so ** has been removed. */ pager_set_pagehash(pPg); /* If this was page 1, then restore the value of Pager.dbFileVers. ** Do this before any decoding. */ if( pgno==1 ){ memcpy(&pPager->dbFileVers, &((u8*)pData)[24],sizeof(pPager->dbFileVers)); } sqlite3PcacheRelease(pPg); } return rc; } /* ** Parameter zSuper is the name of a super-journal file. A single journal ** file that referred to the super-journal file has just been rolled back. ** This routine checks if it is possible to delete the super-journal file, ** and does so if it is. ** ** Argument zSuper may point to Pager.pTmpSpace. So that buffer is not ** available for use within this function. ** ** When a super-journal file is created, it is populated with the names ** of all of its child journals, one after another, formatted as utf-8 ** encoded text. The end of each child journal file is marked with a ** nul-terminator byte (0x00). i.e. the entire contents of a super-journal ** file for a transaction involving two databases might be: ** ** "/home/bill/a.db-journal\x00/home/bill/b.db-journal\x00" ** ** A super-journal file may only be deleted once all of its child ** journals have been rolled back. ** ** This function reads the contents of the super-journal file into ** memory and loops through each of the child journal names. For ** each child journal, it checks if: ** ** * if the child journal exists, and if so ** * if the child journal contains a reference to super-journal ** file zSuper ** ** If a child journal can be found that matches both of the criteria ** above, this function returns without doing anything. Otherwise, if ** no such child journal can be found, file zSuper is deleted from ** the file-system using sqlite3OsDelete(). ** ** If an IO error within this function, an error code is returned. This ** function allocates memory by calling sqlite3Malloc(). If an allocation ** fails, SQLITE_NOMEM is returned. Otherwise, if no IO or malloc errors ** occur, SQLITE_OK is returned. ** ** TODO: This function allocates a single block of memory to load ** the entire contents of the super-journal file. This could be ** a couple of kilobytes or so - potentially larger than the page ** size. */ static int pager_delsuper(Pager *pPager, const char *zSuper){ sqlite3_vfs *pVfs = pPager->pVfs; int rc; /* Return code */ sqlite3_file *pSuper; /* Malloc'd super-journal file descriptor */ sqlite3_file *pJournal; /* Malloc'd child-journal file descriptor */ char *zSuperJournal = 0; /* Contents of super-journal file */ i64 nSuperJournal; /* Size of super-journal file */ char *zJournal; /* Pointer to one journal within MJ file */ char *zSuperPtr; /* Space to hold super-journal filename */ char *zFree = 0; /* Free this buffer */ int nSuperPtr; /* Amount of space allocated to zSuperPtr[] */ /* Allocate space for both the pJournal and pSuper file descriptors. ** If successful, open the super-journal file for reading. */ pSuper = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile * 2); if( !pSuper ){ rc = SQLITE_NOMEM_BKPT; pJournal = 0; }else{ const int flags = (SQLITE_OPEN_READONLY|SQLITE_OPEN_SUPER_JOURNAL); rc = sqlite3OsOpen(pVfs, zSuper, pSuper, flags, 0); pJournal = (sqlite3_file *)(((u8 *)pSuper) + pVfs->szOsFile); } if( rc!=SQLITE_OK ) goto delsuper_out; /* Load the entire super-journal file into space obtained from ** sqlite3_malloc() and pointed to by zSuperJournal. Also obtain ** sufficient space (in zSuperPtr) to hold the names of super-journal ** files extracted from regular rollback-journals. */ rc = sqlite3OsFileSize(pSuper, &nSuperJournal); if( rc!=SQLITE_OK ) goto delsuper_out; nSuperPtr = pVfs->mxPathname+1; zFree = sqlite3Malloc(4 + nSuperJournal + nSuperPtr + 2); if( !zFree ){ rc = SQLITE_NOMEM_BKPT; goto delsuper_out; } zFree[0] = zFree[1] = zFree[2] = zFree[3] = 0; zSuperJournal = &zFree[4]; zSuperPtr = &zSuperJournal[nSuperJournal+2]; rc = sqlite3OsRead(pSuper, zSuperJournal, (int)nSuperJournal, 0); if( rc!=SQLITE_OK ) goto delsuper_out; zSuperJournal[nSuperJournal] = 0; zSuperJournal[nSuperJournal+1] = 0; zJournal = zSuperJournal; while( (zJournal-zSuperJournal)pageSize bytes). ** If the file on disk is currently larger than nPage pages, then use the VFS ** xTruncate() method to truncate it. ** ** Or, it might be the case that the file on disk is smaller than ** nPage pages. Some operating system implementations can get confused if ** you try to truncate a file to some size that is larger than it ** currently is, so detect this case and write a single zero byte to ** the end of the new file instead. ** ** If successful, return SQLITE_OK. If an IO error occurs while modifying ** the database file, return the error code to the caller. */ static int pager_truncate(Pager *pPager, Pgno nPage){ int rc = SQLITE_OK; assert( pPager->eState!=PAGER_ERROR ); assert( pPager->eState!=PAGER_READER ); if( isOpen(pPager->fd) && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) ){ i64 currentSize, newSize; int szPage = pPager->pageSize; assert( pPager->eLock==EXCLUSIVE_LOCK ); /* TODO: Is it safe to use Pager.dbFileSize here? */ rc = sqlite3OsFileSize(pPager->fd, ¤tSize); newSize = szPage*(i64)nPage; if( rc==SQLITE_OK && currentSize!=newSize ){ if( currentSize>newSize ){ rc = sqlite3OsTruncate(pPager->fd, newSize); }else if( (currentSize+szPage)<=newSize ){ char *pTmp = pPager->pTmpSpace; memset(pTmp, 0, szPage); testcase( (newSize-szPage) == currentSize ); testcase( (newSize-szPage) > currentSize ); rc = sqlite3OsWrite(pPager->fd, pTmp, szPage, newSize-szPage); } if( rc==SQLITE_OK ){ pPager->dbFileSize = nPage; } } } return rc; } /* ** Return a sanitized version of the sector-size of OS file pFile. The ** return value is guaranteed to lie between 32 and MAX_SECTOR_SIZE. */ SQLITE_PRIVATE int sqlite3SectorSize(sqlite3_file *pFile){ int iRet = sqlite3OsSectorSize(pFile); if( iRet<32 ){ iRet = 512; }else if( iRet>MAX_SECTOR_SIZE ){ assert( MAX_SECTOR_SIZE>=512 ); iRet = MAX_SECTOR_SIZE; } return iRet; } /* ** Set the value of the Pager.sectorSize variable for the given ** pager based on the value returned by the xSectorSize method ** of the open database file. The sector size will be used ** to determine the size and alignment of journal header and ** super-journal pointers within created journal files. ** ** For temporary files the effective sector size is always 512 bytes. ** ** Otherwise, for non-temporary files, the effective sector size is ** the value returned by the xSectorSize() method rounded up to 32 if ** it is less than 32, or rounded down to MAX_SECTOR_SIZE if it ** is greater than MAX_SECTOR_SIZE. ** ** If the file has the SQLITE_IOCAP_POWERSAFE_OVERWRITE property, then set ** the effective sector size to its minimum value (512). The purpose of ** pPager->sectorSize is to define the "blast radius" of bytes that ** might change if a crash occurs while writing to a single byte in ** that range. But with POWERSAFE_OVERWRITE, the blast radius is zero ** (that is what POWERSAFE_OVERWRITE means), so we minimize the sector ** size. For backwards compatibility of the rollback journal file format, ** we cannot reduce the effective sector size below 512. */ static void setSectorSize(Pager *pPager){ assert( isOpen(pPager->fd) || pPager->tempFile ); if( pPager->tempFile || (sqlite3OsDeviceCharacteristics(pPager->fd) & SQLITE_IOCAP_POWERSAFE_OVERWRITE)!=0 ){ /* Sector size doesn't matter for temporary files. Also, the file ** may not have been opened yet, in which case the OsSectorSize() ** call will segfault. */ pPager->sectorSize = 512; }else{ pPager->sectorSize = sqlite3SectorSize(pPager->fd); } } /* ** Playback the journal and thus restore the database file to ** the state it was in before we started making changes. ** ** The journal file format is as follows: ** ** (1) 8 byte prefix. A copy of aJournalMagic[]. ** (2) 4 byte big-endian integer which is the number of valid page records ** in the journal. If this value is 0xffffffff, then compute the ** number of page records from the journal size. ** (3) 4 byte big-endian integer which is the initial value for the ** sanity checksum. ** (4) 4 byte integer which is the number of pages to truncate the ** database to during a rollback. ** (5) 4 byte big-endian integer which is the sector size. The header ** is this many bytes in size. ** (6) 4 byte big-endian integer which is the page size. ** (7) zero padding out to the next sector size. ** (8) Zero or more pages instances, each as follows: ** + 4 byte page number. ** + pPager->pageSize bytes of data. ** + 4 byte checksum ** ** When we speak of the journal header, we mean the first 7 items above. ** Each entry in the journal is an instance of the 8th item. ** ** Call the value from the second bullet "nRec". nRec is the number of ** valid page entries in the journal. In most cases, you can compute the ** value of nRec from the size of the journal file. But if a power ** failure occurred while the journal was being written, it could be the ** case that the size of the journal file had already been increased but ** the extra entries had not yet made it safely to disk. In such a case, ** the value of nRec computed from the file size would be too large. For ** that reason, we always use the nRec value in the header. ** ** If the nRec value is 0xffffffff it means that nRec should be computed ** from the file size. This value is used when the user selects the ** no-sync option for the journal. A power failure could lead to corruption ** in this case. But for things like temporary table (which will be ** deleted when the power is restored) we don't care. ** ** If the file opened as the journal file is not a well-formed ** journal file then all pages up to the first corrupted page are rolled ** back (or no pages if the journal header is corrupted). The journal file ** is then deleted and SQLITE_OK returned, just as if no corruption had ** been encountered. ** ** If an I/O or malloc() error occurs, the journal-file is not deleted ** and an error code is returned. ** ** The isHot parameter indicates that we are trying to rollback a journal ** that might be a hot journal. Or, it could be that the journal is ** preserved because of JOURNALMODE_PERSIST or JOURNALMODE_TRUNCATE. ** If the journal really is hot, reset the pager cache prior rolling ** back any content. If the journal is merely persistent, no reset is ** needed. */ static int pager_playback(Pager *pPager, int isHot){ sqlite3_vfs *pVfs = pPager->pVfs; i64 szJ; /* Size of the journal file in bytes */ u32 nRec; /* Number of Records in the journal */ u32 u; /* Unsigned loop counter */ Pgno mxPg = 0; /* Size of the original file in pages */ int rc; /* Result code of a subroutine */ int res = 1; /* Value returned by sqlite3OsAccess() */ char *zSuper = 0; /* Name of super-journal file if any */ int needPagerReset; /* True to reset page prior to first page rollback */ int nPlayback = 0; /* Total number of pages restored from journal */ u32 savedPageSize = pPager->pageSize; /* Figure out how many records are in the journal. Abort early if ** the journal is empty. */ assert( isOpen(pPager->jfd) ); rc = sqlite3OsFileSize(pPager->jfd, &szJ); if( rc!=SQLITE_OK ){ goto end_playback; } /* Read the super-journal name from the journal, if it is present. ** If a super-journal file name is specified, but the file is not ** present on disk, then the journal is not hot and does not need to be ** played back. ** ** TODO: Technically the following is an error because it assumes that ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c, ** mxPathname is 512, which is the same as the minimum allowable value ** for pageSize. */ zSuper = pPager->pTmpSpace; rc = readSuperJournal(pPager->jfd, zSuper, pPager->pVfs->mxPathname+1); if( rc==SQLITE_OK && zSuper[0] ){ rc = sqlite3OsAccess(pVfs, zSuper, SQLITE_ACCESS_EXISTS, &res); } zSuper = 0; if( rc!=SQLITE_OK || !res ){ goto end_playback; } pPager->journalOff = 0; needPagerReset = isHot; /* This loop terminates either when a readJournalHdr() or ** pager_playback_one_page() call returns SQLITE_DONE or an IO error ** occurs. */ while( 1 ){ /* Read the next journal header from the journal file. If there are ** not enough bytes left in the journal file for a complete header, or ** it is corrupted, then a process must have failed while writing it. ** This indicates nothing more needs to be rolled back. */ rc = readJournalHdr(pPager, isHot, szJ, &nRec, &mxPg); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; } goto end_playback; } /* If nRec is 0xffffffff, then this journal was created by a process ** working in no-sync mode. This means that the rest of the journal ** file consists of pages, there are no more journal headers. Compute ** the value of nRec based on this assumption. */ if( nRec==0xffffffff ){ assert( pPager->journalOff==JOURNAL_HDR_SZ(pPager) ); nRec = (int)((szJ - JOURNAL_HDR_SZ(pPager))/JOURNAL_PG_SZ(pPager)); } /* If nRec is 0 and this rollback is of a transaction created by this ** process and if this is the final header in the journal, then it means ** that this part of the journal was being filled but has not yet been ** synced to disk. Compute the number of pages based on the remaining ** size of the file. ** ** The third term of the test was added to fix ticket #2565. ** When rolling back a hot journal, nRec==0 always means that the next ** chunk of the journal contains zero pages to be rolled back. But ** when doing a ROLLBACK and the nRec==0 chunk is the last chunk in ** the journal, it means that the journal might contain additional ** pages that need to be rolled back and that the number of pages ** should be computed based on the journal file size. */ if( nRec==0 && !isHot && pPager->journalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff ){ nRec = (int)((szJ - pPager->journalOff) / JOURNAL_PG_SZ(pPager)); } /* If this is the first header read from the journal, truncate the ** database file back to its original size. */ if( pPager->journalOff==JOURNAL_HDR_SZ(pPager) ){ rc = pager_truncate(pPager, mxPg); if( rc!=SQLITE_OK ){ goto end_playback; } pPager->dbSize = mxPg; } /* Copy original pages out of the journal and back into the ** database file and/or page cache. */ for(u=0; ujournalOff,0,1,0); if( rc==SQLITE_OK ){ nPlayback++; }else{ if( rc==SQLITE_DONE ){ pPager->journalOff = szJ; break; }else if( rc==SQLITE_IOERR_SHORT_READ ){ /* If the journal has been truncated, simply stop reading and ** processing the journal. This might happen if the journal was ** not completely written and synced prior to a crash. In that ** case, the database should have never been written in the ** first place so it is OK to simply abandon the rollback. */ rc = SQLITE_OK; goto end_playback; }else{ /* If we are unable to rollback, quit and return the error ** code. This will cause the pager to enter the error state ** so that no further harm will be done. Perhaps the next ** process to come along will be able to rollback the database. */ goto end_playback; } } } } /*NOTREACHED*/ assert( 0 ); end_playback: if( rc==SQLITE_OK ){ rc = sqlite3PagerSetPagesize(pPager, &savedPageSize, -1); } /* Following a rollback, the database file should be back in its original ** state prior to the start of the transaction, so invoke the ** SQLITE_FCNTL_DB_UNCHANGED file-control method to disable the ** assertion that the transaction counter was modified. */ #ifdef SQLITE_DEBUG sqlite3OsFileControlHint(pPager->fd,SQLITE_FCNTL_DB_UNCHANGED,0); #endif /* If this playback is happening automatically as a result of an IO or ** malloc error that occurred after the change-counter was updated but ** before the transaction was committed, then the change-counter ** modification may just have been reverted. If this happens in exclusive ** mode, then subsequent transactions performed by the connection will not ** update the change-counter at all. This may lead to cache inconsistency ** problems for other processes at some point in the future. So, just ** in case this has happened, clear the changeCountDone flag now. */ pPager->changeCountDone = pPager->tempFile; if( rc==SQLITE_OK ){ /* Leave 4 bytes of space before the super-journal filename in memory. ** This is because it may end up being passed to sqlite3OsOpen(), in ** which case it requires 4 0x00 bytes in memory immediately before ** the filename. */ zSuper = &pPager->pTmpSpace[4]; rc = readSuperJournal(pPager->jfd, zSuper, pPager->pVfs->mxPathname+1); testcase( rc!=SQLITE_OK ); } if( rc==SQLITE_OK && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) ){ rc = sqlite3PagerSync(pPager, 0); } if( rc==SQLITE_OK ){ rc = pager_end_transaction(pPager, zSuper[0]!='\0', 0); testcase( rc!=SQLITE_OK ); } if( rc==SQLITE_OK && zSuper[0] && res ){ /* If there was a super-journal and this routine will return success, ** see if it is possible to delete the super-journal. */ assert( zSuper==&pPager->pTmpSpace[4] ); memset(&zSuper[-4], 0, 4); rc = pager_delsuper(pPager, zSuper); testcase( rc!=SQLITE_OK ); } if( isHot && nPlayback ){ sqlite3_log(SQLITE_NOTICE_RECOVER_ROLLBACK, "recovered %d pages from %s", nPlayback, pPager->zJournal); } /* The Pager.sectorSize variable may have been updated while rolling ** back a journal created by a process with a different sector size ** value. Reset it to the correct value for this process. */ setSectorSize(pPager); return rc; } /* ** Read the content for page pPg out of the database file (or out of ** the WAL if that is where the most recent copy if found) into ** pPg->pData. A shared lock or greater must be held on the database ** file before this function is called. ** ** If page 1 is read, then the value of Pager.dbFileVers[] is set to ** the value read from the database file. ** ** If an IO error occurs, then the IO error is returned to the caller. ** Otherwise, SQLITE_OK is returned. */ static int readDbPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; /* Pager object associated with page pPg */ int rc = SQLITE_OK; /* Return code */ #ifndef SQLITE_OMIT_WAL u32 iFrame = 0; /* Frame of WAL containing pgno */ assert( pPager->eState>=PAGER_READER && !MEMDB ); assert( isOpen(pPager->fd) ); if( pagerUseWal(pPager) ){ rc = sqlite3WalFindFrame(pPager->pWal, pPg->pgno, &iFrame); if( rc ) return rc; } if( iFrame ){ rc = sqlite3WalReadFrame(pPager->pWal, iFrame,pPager->pageSize,pPg->pData); }else #endif { i64 iOffset = (pPg->pgno-1)*(i64)pPager->pageSize; rc = sqlite3OsRead(pPager->fd, pPg->pData, pPager->pageSize, iOffset); if( rc==SQLITE_IOERR_SHORT_READ ){ rc = SQLITE_OK; } } if( pPg->pgno==1 ){ if( rc ){ /* If the read is unsuccessful, set the dbFileVers[] to something ** that will never be a valid file version. dbFileVers[] is a copy ** of bytes 24..39 of the database. Bytes 28..31 should always be ** zero or the size of the database in page. Bytes 32..35 and 35..39 ** should be page numbers which are never 0xffffffff. So filling ** pPager->dbFileVers[] with all 0xff bytes should suffice. ** ** For an encrypted database, the situation is more complex: bytes ** 24..39 of the database are white noise. But the probability of ** white noise equaling 16 bytes of 0xff is vanishingly small so ** we should still be ok. */ memset(pPager->dbFileVers, 0xff, sizeof(pPager->dbFileVers)); }else{ u8 *dbFileVers = &((u8*)pPg->pData)[24]; memcpy(&pPager->dbFileVers, dbFileVers, sizeof(pPager->dbFileVers)); } } PAGER_INCR(sqlite3_pager_readdb_count); PAGER_INCR(pPager->nRead); IOTRACE(("PGIN %p %d\n", pPager, pPg->pgno)); PAGERTRACE(("FETCH %d page %d hash(%08x)\n", PAGERID(pPager), pPg->pgno, pager_pagehash(pPg))); return rc; } /* ** Update the value of the change-counter at offsets 24 and 92 in ** the header and the sqlite version number at offset 96. ** ** This is an unconditional update. See also the pager_incr_changecounter() ** routine which only updates the change-counter if the update is actually ** needed, as determined by the pPager->changeCountDone state variable. */ static void pager_write_changecounter(PgHdr *pPg){ u32 change_counter; if( NEVER(pPg==0) ) return; /* Increment the value just read and write it back to byte 24. */ change_counter = sqlite3Get4byte((u8*)pPg->pPager->dbFileVers)+1; put32bits(((char*)pPg->pData)+24, change_counter); /* Also store the SQLite version number in bytes 96..99 and in ** bytes 92..95 store the change counter for which the version number ** is valid. */ put32bits(((char*)pPg->pData)+92, change_counter); put32bits(((char*)pPg->pData)+96, SQLITE_VERSION_NUMBER); } #ifndef SQLITE_OMIT_WAL /* ** This function is invoked once for each page that has already been ** written into the log file when a WAL transaction is rolled back. ** Parameter iPg is the page number of said page. The pCtx argument ** is actually a pointer to the Pager structure. ** ** If page iPg is present in the cache, and has no outstanding references, ** it is discarded. Otherwise, if there are one or more outstanding ** references, the page content is reloaded from the database. If the ** attempt to reload content from the database is required and fails, ** return an SQLite error code. Otherwise, SQLITE_OK. */ static int pagerUndoCallback(void *pCtx, Pgno iPg){ int rc = SQLITE_OK; Pager *pPager = (Pager *)pCtx; PgHdr *pPg; assert( pagerUseWal(pPager) ); pPg = sqlite3PagerLookup(pPager, iPg); if( pPg ){ if( sqlite3PcachePageRefcount(pPg)==1 ){ sqlite3PcacheDrop(pPg); }else{ rc = readDbPage(pPg); if( rc==SQLITE_OK ){ pPager->xReiniter(pPg); } sqlite3PagerUnrefNotNull(pPg); } } /* Normally, if a transaction is rolled back, any backup processes are ** updated as data is copied out of the rollback journal and into the ** database. This is not generally possible with a WAL database, as ** rollback involves simply truncating the log file. Therefore, if one ** or more frames have already been written to the log (and therefore ** also copied into the backup databases) as part of this transaction, ** the backups must be restarted. */ sqlite3BackupRestart(pPager->pBackup); return rc; } /* ** This function is called to rollback a transaction on a WAL database. */ static int pagerRollbackWal(Pager *pPager){ int rc; /* Return Code */ PgHdr *pList; /* List of dirty pages to revert */ /* For all pages in the cache that are currently dirty or have already ** been written (but not committed) to the log file, do one of the ** following: ** ** + Discard the cached page (if refcount==0), or ** + Reload page content from the database (if refcount>0). */ pPager->dbSize = pPager->dbOrigSize; rc = sqlite3WalUndo(pPager->pWal, pagerUndoCallback, (void *)pPager); pList = sqlite3PcacheDirtyList(pPager->pPCache); while( pList && rc==SQLITE_OK ){ PgHdr *pNext = pList->pDirty; rc = pagerUndoCallback((void *)pPager, pList->pgno); pList = pNext; } return rc; } /* ** This function is a wrapper around sqlite3WalFrames(). As well as logging ** the contents of the list of pages headed by pList (connected by pDirty), ** this function notifies any active backup processes that the pages have ** changed. ** ** The list of pages passed into this routine is always sorted by page number. ** Hence, if page 1 appears anywhere on the list, it will be the first page. */ static int pagerWalFrames( Pager *pPager, /* Pager object */ PgHdr *pList, /* List of frames to log */ Pgno nTruncate, /* Database size after this commit */ int isCommit /* True if this is a commit */ ){ int rc; /* Return code */ int nList; /* Number of pages in pList */ PgHdr *p; /* For looping over pages */ assert( pPager->pWal ); assert( pList ); #ifdef SQLITE_DEBUG /* Verify that the page list is in accending order */ for(p=pList; p && p->pDirty; p=p->pDirty){ assert( p->pgno < p->pDirty->pgno ); } #endif assert( pList->pDirty==0 || isCommit ); if( isCommit ){ /* If a WAL transaction is being committed, there is no point in writing ** any pages with page numbers greater than nTruncate into the WAL file. ** They will never be read by any client. So remove them from the pDirty ** list here. */ PgHdr **ppNext = &pList; nList = 0; for(p=pList; (*ppNext = p)!=0; p=p->pDirty){ if( p->pgno<=nTruncate ){ ppNext = &p->pDirty; nList++; } } assert( pList ); }else{ nList = 1; } pPager->aStat[PAGER_STAT_WRITE] += nList; if( pList->pgno==1 ) pager_write_changecounter(pList); rc = sqlite3WalFrames(pPager->pWal, pPager->pageSize, pList, nTruncate, isCommit, pPager->walSyncFlags ); if( rc==SQLITE_OK && pPager->pBackup ){ for(p=pList; p; p=p->pDirty){ sqlite3BackupUpdate(pPager->pBackup, p->pgno, (u8 *)p->pData); } } #ifdef SQLITE_CHECK_PAGES pList = sqlite3PcacheDirtyList(pPager->pPCache); for(p=pList; p; p=p->pDirty){ pager_set_pagehash(p); } #endif return rc; } /* ** Begin a read transaction on the WAL. ** ** This routine used to be called "pagerOpenSnapshot()" because it essentially ** makes a snapshot of the database at the current point in time and preserves ** that snapshot for use by the reader in spite of concurrently changes by ** other writers or checkpointers. */ static int pagerBeginReadTransaction(Pager *pPager){ int rc; /* Return code */ int changed = 0; /* True if cache must be reset */ assert( pagerUseWal(pPager) ); assert( pPager->eState==PAGER_OPEN || pPager->eState==PAGER_READER ); /* sqlite3WalEndReadTransaction() was not called for the previous ** transaction in locking_mode=EXCLUSIVE. So call it now. If we ** are in locking_mode=NORMAL and EndRead() was previously called, ** the duplicate call is harmless. */ sqlite3WalEndReadTransaction(pPager->pWal); rc = sqlite3WalBeginReadTransaction(pPager->pWal, &changed); if( rc!=SQLITE_OK || changed ){ pager_reset(pPager); if( USEFETCH(pPager) ) sqlite3OsUnfetch(pPager->fd, 0, 0); } return rc; } #endif /* ** This function is called as part of the transition from PAGER_OPEN ** to PAGER_READER state to determine the size of the database file ** in pages (assuming the page size currently stored in Pager.pageSize). ** ** If no error occurs, SQLITE_OK is returned and the size of the database ** in pages is stored in *pnPage. Otherwise, an error code (perhaps ** SQLITE_IOERR_FSTAT) is returned and *pnPage is left unmodified. */ static int pagerPagecount(Pager *pPager, Pgno *pnPage){ Pgno nPage; /* Value to return via *pnPage */ /* Query the WAL sub-system for the database size. The WalDbsize() ** function returns zero if the WAL is not open (i.e. Pager.pWal==0), or ** if the database size is not available. The database size is not ** available from the WAL sub-system if the log file is empty or ** contains no valid committed transactions. */ assert( pPager->eState==PAGER_OPEN ); assert( pPager->eLock>=SHARED_LOCK ); assert( isOpen(pPager->fd) ); assert( pPager->tempFile==0 ); nPage = sqlite3WalDbsize(pPager->pWal); /* If the number of pages in the database is not available from the ** WAL sub-system, determine the page count based on the size of ** the database file. If the size of the database file is not an ** integer multiple of the page-size, round up the result. */ if( nPage==0 && ALWAYS(isOpen(pPager->fd)) ){ i64 n = 0; /* Size of db file in bytes */ int rc = sqlite3OsFileSize(pPager->fd, &n); if( rc!=SQLITE_OK ){ return rc; } nPage = (Pgno)((n+pPager->pageSize-1) / pPager->pageSize); } /* If the current number of pages in the file is greater than the ** configured maximum pager number, increase the allowed limit so ** that the file can be read. */ if( nPage>pPager->mxPgno ){ pPager->mxPgno = (Pgno)nPage; } *pnPage = nPage; return SQLITE_OK; } #ifndef SQLITE_OMIT_WAL /* ** Check if the *-wal file that corresponds to the database opened by pPager ** exists if the database is not empy, or verify that the *-wal file does ** not exist (by deleting it) if the database file is empty. ** ** If the database is not empty and the *-wal file exists, open the pager ** in WAL mode. If the database is empty or if no *-wal file exists and ** if no error occurs, make sure Pager.journalMode is not set to ** PAGER_JOURNALMODE_WAL. ** ** Return SQLITE_OK or an error code. ** ** The caller must hold a SHARED lock on the database file to call this ** function. Because an EXCLUSIVE lock on the db file is required to delete ** a WAL on a none-empty database, this ensures there is no race condition ** between the xAccess() below and an xDelete() being executed by some ** other connection. */ static int pagerOpenWalIfPresent(Pager *pPager){ int rc = SQLITE_OK; assert( pPager->eState==PAGER_OPEN ); assert( pPager->eLock>=SHARED_LOCK ); if( !pPager->tempFile ){ int isWal; /* True if WAL file exists */ rc = sqlite3OsAccess( pPager->pVfs, pPager->zWal, SQLITE_ACCESS_EXISTS, &isWal ); if( rc==SQLITE_OK ){ if( isWal ){ Pgno nPage; /* Size of the database file */ rc = pagerPagecount(pPager, &nPage); if( rc ) return rc; if( nPage==0 ){ rc = sqlite3OsDelete(pPager->pVfs, pPager->zWal, 0); }else{ testcase( sqlite3PcachePagecount(pPager->pPCache)==0 ); rc = sqlite3PagerOpenWal(pPager, 0); } }else if( pPager->journalMode==PAGER_JOURNALMODE_WAL ){ pPager->journalMode = PAGER_JOURNALMODE_DELETE; } } } return rc; } #endif /* ** Playback savepoint pSavepoint. Or, if pSavepoint==NULL, then playback ** the entire super-journal file. The case pSavepoint==NULL occurs when ** a ROLLBACK TO command is invoked on a SAVEPOINT that is a transaction ** savepoint. ** ** When pSavepoint is not NULL (meaning a non-transaction savepoint is ** being rolled back), then the rollback consists of up to three stages, ** performed in the order specified: ** ** * Pages are played back from the main journal starting at byte ** offset PagerSavepoint.iOffset and continuing to ** PagerSavepoint.iHdrOffset, or to the end of the main journal ** file if PagerSavepoint.iHdrOffset is zero. ** ** * If PagerSavepoint.iHdrOffset is not zero, then pages are played ** back starting from the journal header immediately following ** PagerSavepoint.iHdrOffset to the end of the main journal file. ** ** * Pages are then played back from the sub-journal file, starting ** with the PagerSavepoint.iSubRec and continuing to the end of ** the journal file. ** ** Throughout the rollback process, each time a page is rolled back, the ** corresponding bit is set in a bitvec structure (variable pDone in the ** implementation below). This is used to ensure that a page is only ** rolled back the first time it is encountered in either journal. ** ** If pSavepoint is NULL, then pages are only played back from the main ** journal file. There is no need for a bitvec in this case. ** ** In either case, before playback commences the Pager.dbSize variable ** is reset to the value that it held at the start of the savepoint ** (or transaction). No page with a page-number greater than this value ** is played back. If one is encountered it is simply skipped. */ static int pagerPlaybackSavepoint(Pager *pPager, PagerSavepoint *pSavepoint){ i64 szJ; /* Effective size of the main journal */ i64 iHdrOff; /* End of first segment of main-journal records */ int rc = SQLITE_OK; /* Return code */ Bitvec *pDone = 0; /* Bitvec to ensure pages played back only once */ assert( pPager->eState!=PAGER_ERROR ); assert( pPager->eState>=PAGER_WRITER_LOCKED ); /* Allocate a bitvec to use to store the set of pages rolled back */ if( pSavepoint ){ pDone = sqlite3BitvecCreate(pSavepoint->nOrig); if( !pDone ){ return SQLITE_NOMEM_BKPT; } } /* Set the database size back to the value it was before the savepoint ** being reverted was opened. */ pPager->dbSize = pSavepoint ? pSavepoint->nOrig : pPager->dbOrigSize; pPager->changeCountDone = pPager->tempFile; if( !pSavepoint && pagerUseWal(pPager) ){ return pagerRollbackWal(pPager); } /* Use pPager->journalOff as the effective size of the main rollback ** journal. The actual file might be larger than this in ** PAGER_JOURNALMODE_TRUNCATE or PAGER_JOURNALMODE_PERSIST. But anything ** past pPager->journalOff is off-limits to us. */ szJ = pPager->journalOff; assert( pagerUseWal(pPager)==0 || szJ==0 ); /* Begin by rolling back records from the main journal starting at ** PagerSavepoint.iOffset and continuing to the next journal header. ** There might be records in the main journal that have a page number ** greater than the current database size (pPager->dbSize) but those ** will be skipped automatically. Pages are added to pDone as they ** are played back. */ if( pSavepoint && !pagerUseWal(pPager) ){ iHdrOff = pSavepoint->iHdrOffset ? pSavepoint->iHdrOffset : szJ; pPager->journalOff = pSavepoint->iOffset; while( rc==SQLITE_OK && pPager->journalOffjournalOff, pDone, 1, 1); } assert( rc!=SQLITE_DONE ); }else{ pPager->journalOff = 0; } /* Continue rolling back records out of the main journal starting at ** the first journal header seen and continuing until the effective end ** of the main journal file. Continue to skip out-of-range pages and ** continue adding pages rolled back to pDone. */ while( rc==SQLITE_OK && pPager->journalOffjournalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff" ** test is related to ticket #2565. See the discussion in the ** pager_playback() function for additional information. */ if( nJRec==0 && pPager->journalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff ){ nJRec = (u32)((szJ - pPager->journalOff)/JOURNAL_PG_SZ(pPager)); } for(ii=0; rc==SQLITE_OK && iijournalOffjournalOff, pDone, 1, 1); } assert( rc!=SQLITE_DONE ); } assert( rc!=SQLITE_OK || pPager->journalOff>=szJ ); /* Finally, rollback pages from the sub-journal. Page that were ** previously rolled back out of the main journal (and are hence in pDone) ** will be skipped. Out-of-range pages are also skipped. */ if( pSavepoint ){ u32 ii; /* Loop counter */ i64 offset = (i64)pSavepoint->iSubRec*(4+pPager->pageSize); if( pagerUseWal(pPager) ){ rc = sqlite3WalSavepointUndo(pPager->pWal, pSavepoint->aWalData); } for(ii=pSavepoint->iSubRec; rc==SQLITE_OK && iinSubRec; ii++){ assert( offset==(i64)ii*(4+pPager->pageSize) ); rc = pager_playback_one_page(pPager, &offset, pDone, 0, 1); } assert( rc!=SQLITE_DONE ); } sqlite3BitvecDestroy(pDone); if( rc==SQLITE_OK ){ pPager->journalOff = szJ; } return rc; } /* ** Change the maximum number of in-memory pages that are allowed ** before attempting to recycle clean and unused pages. */ SQLITE_PRIVATE void sqlite3PagerSetCachesize(Pager *pPager, int mxPage){ sqlite3PcacheSetCachesize(pPager->pPCache, mxPage); } /* ** Change the maximum number of in-memory pages that are allowed ** before attempting to spill pages to journal. */ SQLITE_PRIVATE int sqlite3PagerSetSpillsize(Pager *pPager, int mxPage){ return sqlite3PcacheSetSpillsize(pPager->pPCache, mxPage); } /* ** Invoke SQLITE_FCNTL_MMAP_SIZE based on the current value of szMmap. */ static void pagerFixMaplimit(Pager *pPager){ #if SQLITE_MAX_MMAP_SIZE>0 sqlite3_file *fd = pPager->fd; if( isOpen(fd) && fd->pMethods->iVersion>=3 ){ sqlite3_int64 sz; sz = pPager->szMmap; pPager->bUseFetch = (sz>0); setGetterMethod(pPager); sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_MMAP_SIZE, &sz); } #endif } /* ** Change the maximum size of any memory mapping made of the database file. */ SQLITE_PRIVATE void sqlite3PagerSetMmapLimit(Pager *pPager, sqlite3_int64 szMmap){ pPager->szMmap = szMmap; pagerFixMaplimit(pPager); } /* ** Free as much memory as possible from the pager. */ SQLITE_PRIVATE void sqlite3PagerShrink(Pager *pPager){ sqlite3PcacheShrink(pPager->pPCache); } /* ** Adjust settings of the pager to those specified in the pgFlags parameter. ** ** The "level" in pgFlags & PAGER_SYNCHRONOUS_MASK sets the robustness ** of the database to damage due to OS crashes or power failures by ** changing the number of syncs()s when writing the journals. ** There are four levels: ** ** OFF sqlite3OsSync() is never called. This is the default ** for temporary and transient files. ** ** NORMAL The journal is synced once before writes begin on the ** database. This is normally adequate protection, but ** it is theoretically possible, though very unlikely, ** that an inopertune power failure could leave the journal ** in a state which would cause damage to the database ** when it is rolled back. ** ** FULL The journal is synced twice before writes begin on the ** database (with some additional information - the nRec field ** of the journal header - being written in between the two ** syncs). If we assume that writing a ** single disk sector is atomic, then this mode provides ** assurance that the journal will not be corrupted to the ** point of causing damage to the database during rollback. ** ** EXTRA This is like FULL except that is also syncs the directory ** that contains the rollback journal after the rollback ** journal is unlinked. ** ** The above is for a rollback-journal mode. For WAL mode, OFF continues ** to mean that no syncs ever occur. NORMAL means that the WAL is synced ** prior to the start of checkpoint and that the database file is synced ** at the conclusion of the checkpoint if the entire content of the WAL ** was written back into the database. But no sync operations occur for ** an ordinary commit in NORMAL mode with WAL. FULL means that the WAL ** file is synced following each commit operation, in addition to the ** syncs associated with NORMAL. There is no difference between FULL ** and EXTRA for WAL mode. ** ** Do not confuse synchronous=FULL with SQLITE_SYNC_FULL. The ** SQLITE_SYNC_FULL macro means to use the MacOSX-style full-fsync ** using fcntl(F_FULLFSYNC). SQLITE_SYNC_NORMAL means to do an ** ordinary fsync() call. There is no difference between SQLITE_SYNC_FULL ** and SQLITE_SYNC_NORMAL on platforms other than MacOSX. But the ** synchronous=FULL versus synchronous=NORMAL setting determines when ** the xSync primitive is called and is relevant to all platforms. ** ** Numeric values associated with these states are OFF==1, NORMAL=2, ** and FULL=3. */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS SQLITE_PRIVATE void sqlite3PagerSetFlags( Pager *pPager, /* The pager to set safety level for */ unsigned pgFlags /* Various flags */ ){ unsigned level = pgFlags & PAGER_SYNCHRONOUS_MASK; if( pPager->tempFile ){ pPager->noSync = 1; pPager->fullSync = 0; pPager->extraSync = 0; }else{ pPager->noSync = level==PAGER_SYNCHRONOUS_OFF ?1:0; pPager->fullSync = level>=PAGER_SYNCHRONOUS_FULL ?1:0; pPager->extraSync = level==PAGER_SYNCHRONOUS_EXTRA ?1:0; } if( pPager->noSync ){ pPager->syncFlags = 0; }else if( pgFlags & PAGER_FULLFSYNC ){ pPager->syncFlags = SQLITE_SYNC_FULL; }else{ pPager->syncFlags = SQLITE_SYNC_NORMAL; } pPager->walSyncFlags = (pPager->syncFlags<<2); if( pPager->fullSync ){ pPager->walSyncFlags |= pPager->syncFlags; } if( (pgFlags & PAGER_CKPT_FULLFSYNC) && !pPager->noSync ){ pPager->walSyncFlags |= (SQLITE_SYNC_FULL<<2); } if( pgFlags & PAGER_CACHESPILL ){ pPager->doNotSpill &= ~SPILLFLAG_OFF; }else{ pPager->doNotSpill |= SPILLFLAG_OFF; } } #endif /* ** The following global variable is incremented whenever the library ** attempts to open a temporary file. This information is used for ** testing and analysis only. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_opentemp_count = 0; #endif /* ** Open a temporary file. ** ** Write the file descriptor into *pFile. Return SQLITE_OK on success ** or some other error code if we fail. The OS will automatically ** delete the temporary file when it is closed. ** ** The flags passed to the VFS layer xOpen() call are those specified ** by parameter vfsFlags ORed with the following: ** ** SQLITE_OPEN_READWRITE ** SQLITE_OPEN_CREATE ** SQLITE_OPEN_EXCLUSIVE ** SQLITE_OPEN_DELETEONCLOSE */ static int pagerOpentemp( Pager *pPager, /* The pager object */ sqlite3_file *pFile, /* Write the file descriptor here */ int vfsFlags /* Flags passed through to the VFS */ ){ int rc; /* Return code */ #ifdef SQLITE_TEST sqlite3_opentemp_count++; /* Used for testing and analysis only */ #endif vfsFlags |= SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE; rc = sqlite3OsOpen(pPager->pVfs, 0, pFile, vfsFlags, 0); assert( rc!=SQLITE_OK || isOpen(pFile) ); return rc; } /* ** Set the busy handler function. ** ** The pager invokes the busy-handler if sqlite3OsLock() returns ** SQLITE_BUSY when trying to upgrade from no-lock to a SHARED lock, ** or when trying to upgrade from a RESERVED lock to an EXCLUSIVE ** lock. It does *not* invoke the busy handler when upgrading from ** SHARED to RESERVED, or when upgrading from SHARED to EXCLUSIVE ** (which occurs during hot-journal rollback). Summary: ** ** Transition | Invokes xBusyHandler ** -------------------------------------------------------- ** NO_LOCK -> SHARED_LOCK | Yes ** SHARED_LOCK -> RESERVED_LOCK | No ** SHARED_LOCK -> EXCLUSIVE_LOCK | No ** RESERVED_LOCK -> EXCLUSIVE_LOCK | Yes ** ** If the busy-handler callback returns non-zero, the lock is ** retried. If it returns zero, then the SQLITE_BUSY error is ** returned to the caller of the pager API function. */ SQLITE_PRIVATE void sqlite3PagerSetBusyHandler( Pager *pPager, /* Pager object */ int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ void *pBusyHandlerArg /* Argument to pass to xBusyHandler */ ){ void **ap; pPager->xBusyHandler = xBusyHandler; pPager->pBusyHandlerArg = pBusyHandlerArg; ap = (void **)&pPager->xBusyHandler; assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); assert( ap[1]==pBusyHandlerArg ); sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_BUSYHANDLER, (void *)ap); } /* ** Change the page size used by the Pager object. The new page size ** is passed in *pPageSize. ** ** If the pager is in the error state when this function is called, it ** is a no-op. The value returned is the error state error code (i.e. ** one of SQLITE_IOERR, an SQLITE_IOERR_xxx sub-code or SQLITE_FULL). ** ** Otherwise, if all of the following are true: ** ** * the new page size (value of *pPageSize) is valid (a power ** of two between 512 and SQLITE_MAX_PAGE_SIZE, inclusive), and ** ** * there are no outstanding page references, and ** ** * the database is either not an in-memory database or it is ** an in-memory database that currently consists of zero pages. ** ** then the pager object page size is set to *pPageSize. ** ** If the page size is changed, then this function uses sqlite3PagerMalloc() ** to obtain a new Pager.pTmpSpace buffer. If this allocation attempt ** fails, SQLITE_NOMEM is returned and the page size remains unchanged. ** In all other cases, SQLITE_OK is returned. ** ** If the page size is not changed, either because one of the enumerated ** conditions above is not true, the pager was in error state when this ** function was called, or because the memory allocation attempt failed, ** then *pPageSize is set to the old, retained page size before returning. */ SQLITE_PRIVATE int sqlite3PagerSetPagesize(Pager *pPager, u32 *pPageSize, int nReserve){ int rc = SQLITE_OK; /* It is not possible to do a full assert_pager_state() here, as this ** function may be called from within PagerOpen(), before the state ** of the Pager object is internally consistent. ** ** At one point this function returned an error if the pager was in ** PAGER_ERROR state. But since PAGER_ERROR state guarantees that ** there is at least one outstanding page reference, this function ** is a no-op for that case anyhow. */ u32 pageSize = *pPageSize; assert( pageSize==0 || (pageSize>=512 && pageSize<=SQLITE_MAX_PAGE_SIZE) ); if( (pPager->memDb==0 || pPager->dbSize==0) && sqlite3PcacheRefCount(pPager->pPCache)==0 && pageSize && pageSize!=(u32)pPager->pageSize ){ char *pNew = NULL; /* New temp space */ i64 nByte = 0; if( pPager->eState>PAGER_OPEN && isOpen(pPager->fd) ){ rc = sqlite3OsFileSize(pPager->fd, &nByte); } if( rc==SQLITE_OK ){ /* 8 bytes of zeroed overrun space is sufficient so that the b-tree * cell header parser will never run off the end of the allocation */ pNew = (char *)sqlite3PageMalloc(pageSize+8); if( !pNew ){ rc = SQLITE_NOMEM_BKPT; }else{ memset(pNew+pageSize, 0, 8); } } if( rc==SQLITE_OK ){ pager_reset(pPager); rc = sqlite3PcacheSetPageSize(pPager->pPCache, pageSize); } if( rc==SQLITE_OK ){ sqlite3PageFree(pPager->pTmpSpace); pPager->pTmpSpace = pNew; pPager->dbSize = (Pgno)((nByte+pageSize-1)/pageSize); pPager->pageSize = pageSize; }else{ sqlite3PageFree(pNew); } } *pPageSize = pPager->pageSize; if( rc==SQLITE_OK ){ if( nReserve<0 ) nReserve = pPager->nReserve; assert( nReserve>=0 && nReserve<1000 ); pPager->nReserve = (i16)nReserve; pagerFixMaplimit(pPager); } return rc; } /* ** Return a pointer to the "temporary page" buffer held internally ** by the pager. This is a buffer that is big enough to hold the ** entire content of a database page. This buffer is used internally ** during rollback and will be overwritten whenever a rollback ** occurs. But other modules are free to use it too, as long as ** no rollbacks are happening. */ SQLITE_PRIVATE void *sqlite3PagerTempSpace(Pager *pPager){ return pPager->pTmpSpace; } /* ** Attempt to set the maximum database page count if mxPage is positive. ** Make no changes if mxPage is zero or negative. And never reduce the ** maximum page count below the current size of the database. ** ** Regardless of mxPage, return the current maximum page count. */ SQLITE_PRIVATE Pgno sqlite3PagerMaxPageCount(Pager *pPager, Pgno mxPage){ if( mxPage>0 ){ pPager->mxPgno = mxPage; } assert( pPager->eState!=PAGER_OPEN ); /* Called only by OP_MaxPgcnt */ /* assert( pPager->mxPgno>=pPager->dbSize ); */ /* OP_MaxPgcnt ensures that the parameter passed to this function is not ** less than the total number of valid pages in the database. But this ** may be less than Pager.dbSize, and so the assert() above is not valid */ return pPager->mxPgno; } /* ** The following set of routines are used to disable the simulated ** I/O error mechanism. These routines are used to avoid simulated ** errors in places where we do not care about errors. ** ** Unless -DSQLITE_TEST=1 is used, these routines are all no-ops ** and generate no code. */ #ifdef SQLITE_TEST SQLITE_API extern int sqlite3_io_error_pending; SQLITE_API extern int sqlite3_io_error_hit; static int saved_cnt; void disable_simulated_io_errors(void){ saved_cnt = sqlite3_io_error_pending; sqlite3_io_error_pending = -1; } void enable_simulated_io_errors(void){ sqlite3_io_error_pending = saved_cnt; } #else # define disable_simulated_io_errors() # define enable_simulated_io_errors() #endif /* ** Read the first N bytes from the beginning of the file into memory ** that pDest points to. ** ** If the pager was opened on a transient file (zFilename==""), or ** opened on a file less than N bytes in size, the output buffer is ** zeroed and SQLITE_OK returned. The rationale for this is that this ** function is used to read database headers, and a new transient or ** zero sized database has a header than consists entirely of zeroes. ** ** If any IO error apart from SQLITE_IOERR_SHORT_READ is encountered, ** the error code is returned to the caller and the contents of the ** output buffer undefined. */ SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest){ int rc = SQLITE_OK; memset(pDest, 0, N); assert( isOpen(pPager->fd) || pPager->tempFile ); /* This routine is only called by btree immediately after creating ** the Pager object. There has not been an opportunity to transition ** to WAL mode yet. */ assert( !pagerUseWal(pPager) ); if( isOpen(pPager->fd) ){ IOTRACE(("DBHDR %p 0 %d\n", pPager, N)) rc = sqlite3OsRead(pPager->fd, pDest, N, 0); if( rc==SQLITE_IOERR_SHORT_READ ){ rc = SQLITE_OK; } } return rc; } /* ** This function may only be called when a read-transaction is open on ** the pager. It returns the total number of pages in the database. ** ** However, if the file is between 1 and bytes in size, then ** this is considered a 1 page file. */ SQLITE_PRIVATE void sqlite3PagerPagecount(Pager *pPager, int *pnPage){ assert( pPager->eState>=PAGER_READER ); assert( pPager->eState!=PAGER_WRITER_FINISHED ); *pnPage = (int)pPager->dbSize; } /* ** Try to obtain a lock of type locktype on the database file. If ** a similar or greater lock is already held, this function is a no-op ** (returning SQLITE_OK immediately). ** ** Otherwise, attempt to obtain the lock using sqlite3OsLock(). Invoke ** the busy callback if the lock is currently not available. Repeat ** until the busy callback returns false or until the attempt to ** obtain the lock succeeds. ** ** Return SQLITE_OK on success and an error code if we cannot obtain ** the lock. If the lock is obtained successfully, set the Pager.state ** variable to locktype before returning. */ static int pager_wait_on_lock(Pager *pPager, int locktype){ int rc; /* Return code */ /* Check that this is either a no-op (because the requested lock is ** already held), or one of the transitions that the busy-handler ** may be invoked during, according to the comment above ** sqlite3PagerSetBusyhandler(). */ assert( (pPager->eLock>=locktype) || (pPager->eLock==NO_LOCK && locktype==SHARED_LOCK) || (pPager->eLock==RESERVED_LOCK && locktype==EXCLUSIVE_LOCK) ); do { rc = pagerLockDb(pPager, locktype); }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); return rc; } /* ** Function assertTruncateConstraint(pPager) checks that one of the ** following is true for all dirty pages currently in the page-cache: ** ** a) The page number is less than or equal to the size of the ** current database image, in pages, OR ** ** b) if the page content were written at this time, it would not ** be necessary to write the current content out to the sub-journal. ** ** If the condition asserted by this function were not true, and the ** dirty page were to be discarded from the cache via the pagerStress() ** routine, pagerStress() would not write the current page content to ** the database file. If a savepoint transaction were rolled back after ** this happened, the correct behavior would be to restore the current ** content of the page. However, since this content is not present in either ** the database file or the portion of the rollback journal and ** sub-journal rolled back the content could not be restored and the ** database image would become corrupt. It is therefore fortunate that ** this circumstance cannot arise. */ #if defined(SQLITE_DEBUG) static void assertTruncateConstraintCb(PgHdr *pPg){ Pager *pPager = pPg->pPager; assert( pPg->flags&PGHDR_DIRTY ); if( pPg->pgno>pPager->dbSize ){ /* if (a) is false */ Pgno pgno = pPg->pgno; int i; for(i=0; ipPager->nSavepoint; i++){ PagerSavepoint *p = &pPager->aSavepoint[i]; assert( p->nOrigpInSavepoint,pgno) ); } } } static void assertTruncateConstraint(Pager *pPager){ sqlite3PcacheIterateDirty(pPager->pPCache, assertTruncateConstraintCb); } #else # define assertTruncateConstraint(pPager) #endif /* ** Truncate the in-memory database file image to nPage pages. This ** function does not actually modify the database file on disk. It ** just sets the internal state of the pager object so that the ** truncation will be done when the current transaction is committed. ** ** This function is only called right before committing a transaction. ** Once this function has been called, the transaction must either be ** rolled back or committed. It is not safe to call this function and ** then continue writing to the database. */ SQLITE_PRIVATE void sqlite3PagerTruncateImage(Pager *pPager, Pgno nPage){ assert( pPager->dbSize>=nPage || CORRUPT_DB ); assert( pPager->eState>=PAGER_WRITER_CACHEMOD ); pPager->dbSize = nPage; /* At one point the code here called assertTruncateConstraint() to ** ensure that all pages being truncated away by this operation are, ** if one or more savepoints are open, present in the savepoint ** journal so that they can be restored if the savepoint is rolled ** back. This is no longer necessary as this function is now only ** called right before committing a transaction. So although the ** Pager object may still have open savepoints (Pager.nSavepoint!=0), ** they cannot be rolled back. So the assertTruncateConstraint() call ** is no longer correct. */ } /* ** This function is called before attempting a hot-journal rollback. It ** syncs the journal file to disk, then sets pPager->journalHdr to the ** size of the journal file so that the pager_playback() routine knows ** that the entire journal file has been synced. ** ** Syncing a hot-journal to disk before attempting to roll it back ensures ** that if a power-failure occurs during the rollback, the process that ** attempts rollback following system recovery sees the same journal ** content as this process. ** ** If everything goes as planned, SQLITE_OK is returned. Otherwise, ** an SQLite error code. */ static int pagerSyncHotJournal(Pager *pPager){ int rc = SQLITE_OK; if( !pPager->noSync ){ rc = sqlite3OsSync(pPager->jfd, SQLITE_SYNC_NORMAL); } if( rc==SQLITE_OK ){ rc = sqlite3OsFileSize(pPager->jfd, &pPager->journalHdr); } return rc; } #if SQLITE_MAX_MMAP_SIZE>0 /* ** Obtain a reference to a memory mapped page object for page number pgno. ** The new object will use the pointer pData, obtained from xFetch(). ** If successful, set *ppPage to point to the new page reference ** and return SQLITE_OK. Otherwise, return an SQLite error code and set ** *ppPage to zero. ** ** Page references obtained by calling this function should be released ** by calling pagerReleaseMapPage(). */ static int pagerAcquireMapPage( Pager *pPager, /* Pager object */ Pgno pgno, /* Page number */ void *pData, /* xFetch()'d data for this page */ PgHdr **ppPage /* OUT: Acquired page object */ ){ PgHdr *p; /* Memory mapped page to return */ if( pPager->pMmapFreelist ){ *ppPage = p = pPager->pMmapFreelist; pPager->pMmapFreelist = p->pDirty; p->pDirty = 0; assert( pPager->nExtra>=8 ); memset(p->pExtra, 0, 8); }else{ *ppPage = p = (PgHdr *)sqlite3MallocZero(sizeof(PgHdr) + pPager->nExtra); if( p==0 ){ sqlite3OsUnfetch(pPager->fd, (i64)(pgno-1) * pPager->pageSize, pData); return SQLITE_NOMEM_BKPT; } p->pExtra = (void *)&p[1]; p->flags = PGHDR_MMAP; p->nRef = 1; p->pPager = pPager; } assert( p->pExtra==(void *)&p[1] ); assert( p->pPage==0 ); assert( p->flags==PGHDR_MMAP ); assert( p->pPager==pPager ); assert( p->nRef==1 ); p->pgno = pgno; p->pData = pData; pPager->nMmapOut++; return SQLITE_OK; } #endif /* ** Release a reference to page pPg. pPg must have been returned by an ** earlier call to pagerAcquireMapPage(). */ static void pagerReleaseMapPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; pPager->nMmapOut--; pPg->pDirty = pPager->pMmapFreelist; pPager->pMmapFreelist = pPg; assert( pPager->fd->pMethods->iVersion>=3 ); sqlite3OsUnfetch(pPager->fd, (i64)(pPg->pgno-1)*pPager->pageSize, pPg->pData); } /* ** Free all PgHdr objects stored in the Pager.pMmapFreelist list. */ static void pagerFreeMapHdrs(Pager *pPager){ PgHdr *p; PgHdr *pNext; for(p=pPager->pMmapFreelist; p; p=pNext){ pNext = p->pDirty; sqlite3_free(p); } } /* Verify that the database file has not be deleted or renamed out from ** under the pager. Return SQLITE_OK if the database is still where it ought ** to be on disk. Return non-zero (SQLITE_READONLY_DBMOVED or some other error ** code from sqlite3OsAccess()) if the database has gone missing. */ static int databaseIsUnmoved(Pager *pPager){ int bHasMoved = 0; int rc; if( pPager->tempFile ) return SQLITE_OK; if( pPager->dbSize==0 ) return SQLITE_OK; assert( pPager->zFilename && pPager->zFilename[0] ); rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_HAS_MOVED, &bHasMoved); if( rc==SQLITE_NOTFOUND ){ /* If the HAS_MOVED file-control is unimplemented, assume that the file ** has not been moved. That is the historical behavior of SQLite: prior to ** version 3.8.3, it never checked */ rc = SQLITE_OK; }else if( rc==SQLITE_OK && bHasMoved ){ rc = SQLITE_READONLY_DBMOVED; } return rc; } /* ** Shutdown the page cache. Free all memory and close all files. ** ** If a transaction was in progress when this routine is called, that ** transaction is rolled back. All outstanding pages are invalidated ** and their memory is freed. Any attempt to use a page associated ** with this page cache after this function returns will likely ** result in a coredump. ** ** This function always succeeds. If a transaction is active an attempt ** is made to roll it back. If an error occurs during the rollback ** a hot journal may be left in the filesystem but no error is returned ** to the caller. */ SQLITE_PRIVATE int sqlite3PagerClose(Pager *pPager, sqlite3 *db){ u8 *pTmp = (u8*)pPager->pTmpSpace; assert( db || pagerUseWal(pPager)==0 ); assert( assert_pager_state(pPager) ); disable_simulated_io_errors(); sqlite3BeginBenignMalloc(); pagerFreeMapHdrs(pPager); /* pPager->errCode = 0; */ pPager->exclusiveMode = 0; #ifndef SQLITE_OMIT_WAL { u8 *a = 0; assert( db || pPager->pWal==0 ); if( db && 0==(db->flags & SQLITE_NoCkptOnClose) && SQLITE_OK==databaseIsUnmoved(pPager) ){ a = pTmp; } sqlite3WalClose(pPager->pWal, db, pPager->walSyncFlags, pPager->pageSize,a); pPager->pWal = 0; } #endif pager_reset(pPager); if( MEMDB ){ pager_unlock(pPager); }else{ /* If it is open, sync the journal file before calling UnlockAndRollback. ** If this is not done, then an unsynced portion of the open journal ** file may be played back into the database. If a power failure occurs ** while this is happening, the database could become corrupt. ** ** If an error occurs while trying to sync the journal, shift the pager ** into the ERROR state. This causes UnlockAndRollback to unlock the ** database and close the journal file without attempting to roll it ** back or finalize it. The next database user will have to do hot-journal ** rollback before accessing the database file. */ if( isOpen(pPager->jfd) ){ pager_error(pPager, pagerSyncHotJournal(pPager)); } pagerUnlockAndRollback(pPager); } sqlite3EndBenignMalloc(); enable_simulated_io_errors(); PAGERTRACE(("CLOSE %d\n", PAGERID(pPager))); IOTRACE(("CLOSE %p\n", pPager)) sqlite3OsClose(pPager->jfd); sqlite3OsClose(pPager->fd); sqlite3PageFree(pTmp); sqlite3PcacheClose(pPager->pPCache); assert( !pPager->aSavepoint && !pPager->pInJournal ); assert( !isOpen(pPager->jfd) && !isOpen(pPager->sjfd) ); sqlite3_free(pPager); return SQLITE_OK; } #if !defined(NDEBUG) || defined(SQLITE_TEST) /* ** Return the page number for page pPg. */ SQLITE_PRIVATE Pgno sqlite3PagerPagenumber(DbPage *pPg){ return pPg->pgno; } #endif /* ** Increment the reference count for page pPg. */ SQLITE_PRIVATE void sqlite3PagerRef(DbPage *pPg){ sqlite3PcacheRef(pPg); } /* ** Sync the journal. In other words, make sure all the pages that have ** been written to the journal have actually reached the surface of the ** disk and can be restored in the event of a hot-journal rollback. ** ** If the Pager.noSync flag is set, then this function is a no-op. ** Otherwise, the actions required depend on the journal-mode and the ** device characteristics of the file-system, as follows: ** ** * If the journal file is an in-memory journal file, no action need ** be taken. ** ** * Otherwise, if the device does not support the SAFE_APPEND property, ** then the nRec field of the most recently written journal header ** is updated to contain the number of journal records that have ** been written following it. If the pager is operating in full-sync ** mode, then the journal file is synced before this field is updated. ** ** * If the device does not support the SEQUENTIAL property, then ** journal file is synced. ** ** Or, in pseudo-code: ** ** if( NOT ){ ** if( NOT SAFE_APPEND ){ ** if( ) xSync(); ** ** } ** if( NOT SEQUENTIAL ) xSync(); ** } ** ** If successful, this routine clears the PGHDR_NEED_SYNC flag of every ** page currently held in memory before returning SQLITE_OK. If an IO ** error is encountered, then the IO error code is returned to the caller. */ static int syncJournal(Pager *pPager, int newHdr){ int rc; /* Return code */ assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); assert( !pagerUseWal(pPager) ); rc = sqlite3PagerExclusiveLock(pPager); if( rc!=SQLITE_OK ) return rc; if( !pPager->noSync ){ assert( !pPager->tempFile ); if( isOpen(pPager->jfd) && pPager->journalMode!=PAGER_JOURNALMODE_MEMORY ){ const int iDc = sqlite3OsDeviceCharacteristics(pPager->fd); assert( isOpen(pPager->jfd) ); if( 0==(iDc&SQLITE_IOCAP_SAFE_APPEND) ){ /* This block deals with an obscure problem. If the last connection ** that wrote to this database was operating in persistent-journal ** mode, then the journal file may at this point actually be larger ** than Pager.journalOff bytes. If the next thing in the journal ** file happens to be a journal-header (written as part of the ** previous connection's transaction), and a crash or power-failure ** occurs after nRec is updated but before this connection writes ** anything else to the journal file (or commits/rolls back its ** transaction), then SQLite may become confused when doing the ** hot-journal rollback following recovery. It may roll back all ** of this connections data, then proceed to rolling back the old, ** out-of-date data that follows it. Database corruption. ** ** To work around this, if the journal file does appear to contain ** a valid header following Pager.journalOff, then write a 0x00 ** byte to the start of it to prevent it from being recognized. ** ** Variable iNextHdrOffset is set to the offset at which this ** problematic header will occur, if it exists. aMagic is used ** as a temporary buffer to inspect the first couple of bytes of ** the potential journal header. */ i64 iNextHdrOffset; u8 aMagic[8]; u8 zHeader[sizeof(aJournalMagic)+4]; memcpy(zHeader, aJournalMagic, sizeof(aJournalMagic)); put32bits(&zHeader[sizeof(aJournalMagic)], pPager->nRec); iNextHdrOffset = journalHdrOffset(pPager); rc = sqlite3OsRead(pPager->jfd, aMagic, 8, iNextHdrOffset); if( rc==SQLITE_OK && 0==memcmp(aMagic, aJournalMagic, 8) ){ static const u8 zerobyte = 0; rc = sqlite3OsWrite(pPager->jfd, &zerobyte, 1, iNextHdrOffset); } if( rc!=SQLITE_OK && rc!=SQLITE_IOERR_SHORT_READ ){ return rc; } /* Write the nRec value into the journal file header. If in ** full-synchronous mode, sync the journal first. This ensures that ** all data has really hit the disk before nRec is updated to mark ** it as a candidate for rollback. ** ** This is not required if the persistent media supports the ** SAFE_APPEND property. Because in this case it is not possible ** for garbage data to be appended to the file, the nRec field ** is populated with 0xFFFFFFFF when the journal header is written ** and never needs to be updated. */ if( pPager->fullSync && 0==(iDc&SQLITE_IOCAP_SEQUENTIAL) ){ PAGERTRACE(("SYNC journal of %d\n", PAGERID(pPager))); IOTRACE(("JSYNC %p\n", pPager)) rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags); if( rc!=SQLITE_OK ) return rc; } IOTRACE(("JHDR %p %lld\n", pPager, pPager->journalHdr)); rc = sqlite3OsWrite( pPager->jfd, zHeader, sizeof(zHeader), pPager->journalHdr ); if( rc!=SQLITE_OK ) return rc; } if( 0==(iDc&SQLITE_IOCAP_SEQUENTIAL) ){ PAGERTRACE(("SYNC journal of %d\n", PAGERID(pPager))); IOTRACE(("JSYNC %p\n", pPager)) rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags| (pPager->syncFlags==SQLITE_SYNC_FULL?SQLITE_SYNC_DATAONLY:0) ); if( rc!=SQLITE_OK ) return rc; } pPager->journalHdr = pPager->journalOff; if( newHdr && 0==(iDc&SQLITE_IOCAP_SAFE_APPEND) ){ pPager->nRec = 0; rc = writeJournalHdr(pPager); if( rc!=SQLITE_OK ) return rc; } }else{ pPager->journalHdr = pPager->journalOff; } } /* Unless the pager is in noSync mode, the journal file was just ** successfully synced. Either way, clear the PGHDR_NEED_SYNC flag on ** all pages. */ sqlite3PcacheClearSyncFlags(pPager->pPCache); pPager->eState = PAGER_WRITER_DBMOD; assert( assert_pager_state(pPager) ); return SQLITE_OK; } /* ** The argument is the first in a linked list of dirty pages connected ** by the PgHdr.pDirty pointer. This function writes each one of the ** in-memory pages in the list to the database file. The argument may ** be NULL, representing an empty list. In this case this function is ** a no-op. ** ** The pager must hold at least a RESERVED lock when this function ** is called. Before writing anything to the database file, this lock ** is upgraded to an EXCLUSIVE lock. If the lock cannot be obtained, ** SQLITE_BUSY is returned and no data is written to the database file. ** ** If the pager is a temp-file pager and the actual file-system file ** is not yet open, it is created and opened before any data is ** written out. ** ** Once the lock has been upgraded and, if necessary, the file opened, ** the pages are written out to the database file in list order. Writing ** a page is skipped if it meets either of the following criteria: ** ** * The page number is greater than Pager.dbSize, or ** * The PGHDR_DONT_WRITE flag is set on the page. ** ** If writing out a page causes the database file to grow, Pager.dbFileSize ** is updated accordingly. If page 1 is written out, then the value cached ** in Pager.dbFileVers[] is updated to match the new value stored in ** the database file. ** ** If everything is successful, SQLITE_OK is returned. If an IO error ** occurs, an IO error code is returned. Or, if the EXCLUSIVE lock cannot ** be obtained, SQLITE_BUSY is returned. */ static int pager_write_pagelist(Pager *pPager, PgHdr *pList){ int rc = SQLITE_OK; /* Return code */ /* This function is only called for rollback pagers in WRITER_DBMOD state. */ assert( !pagerUseWal(pPager) ); assert( pPager->tempFile || pPager->eState==PAGER_WRITER_DBMOD ); assert( pPager->eLock==EXCLUSIVE_LOCK ); assert( isOpen(pPager->fd) || pList->pDirty==0 ); /* If the file is a temp-file has not yet been opened, open it now. It ** is not possible for rc to be other than SQLITE_OK if this branch ** is taken, as pager_wait_on_lock() is a no-op for temp-files. */ if( !isOpen(pPager->fd) ){ assert( pPager->tempFile && rc==SQLITE_OK ); rc = pagerOpentemp(pPager, pPager->fd, pPager->vfsFlags); } /* Before the first write, give the VFS a hint of what the final ** file size will be. */ assert( rc!=SQLITE_OK || isOpen(pPager->fd) ); if( rc==SQLITE_OK && pPager->dbHintSizedbSize && (pList->pDirty || pList->pgno>pPager->dbHintSize) ){ sqlite3_int64 szFile = pPager->pageSize * (sqlite3_int64)pPager->dbSize; sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_SIZE_HINT, &szFile); pPager->dbHintSize = pPager->dbSize; } while( rc==SQLITE_OK && pList ){ Pgno pgno = pList->pgno; /* If there are dirty pages in the page cache with page numbers greater ** than Pager.dbSize, this means sqlite3PagerTruncateImage() was called to ** make the file smaller (presumably by auto-vacuum code). Do not write ** any such pages to the file. ** ** Also, do not write out any page that has the PGHDR_DONT_WRITE flag ** set (set by sqlite3PagerDontWrite()). */ if( pgno<=pPager->dbSize && 0==(pList->flags&PGHDR_DONT_WRITE) ){ i64 offset = (pgno-1)*(i64)pPager->pageSize; /* Offset to write */ char *pData; /* Data to write */ assert( (pList->flags&PGHDR_NEED_SYNC)==0 ); if( pList->pgno==1 ) pager_write_changecounter(pList); pData = pList->pData; /* Write out the page data. */ rc = sqlite3OsWrite(pPager->fd, pData, pPager->pageSize, offset); /* If page 1 was just written, update Pager.dbFileVers to match ** the value now stored in the database file. If writing this ** page caused the database file to grow, update dbFileSize. */ if( pgno==1 ){ memcpy(&pPager->dbFileVers, &pData[24], sizeof(pPager->dbFileVers)); } if( pgno>pPager->dbFileSize ){ pPager->dbFileSize = pgno; } pPager->aStat[PAGER_STAT_WRITE]++; /* Update any backup objects copying the contents of this pager. */ sqlite3BackupUpdate(pPager->pBackup, pgno, (u8*)pList->pData); PAGERTRACE(("STORE %d page %d hash(%08x)\n", PAGERID(pPager), pgno, pager_pagehash(pList))); IOTRACE(("PGOUT %p %d\n", pPager, pgno)); PAGER_INCR(sqlite3_pager_writedb_count); }else{ PAGERTRACE(("NOSTORE %d page %d\n", PAGERID(pPager), pgno)); } pager_set_pagehash(pList); pList = pList->pDirty; } return rc; } /* ** Ensure that the sub-journal file is open. If it is already open, this ** function is a no-op. ** ** SQLITE_OK is returned if everything goes according to plan. An ** SQLITE_IOERR_XXX error code is returned if a call to sqlite3OsOpen() ** fails. */ static int openSubJournal(Pager *pPager){ int rc = SQLITE_OK; if( !isOpen(pPager->sjfd) ){ const int flags = SQLITE_OPEN_SUBJOURNAL | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE; int nStmtSpill = sqlite3Config.nStmtSpill; if( pPager->journalMode==PAGER_JOURNALMODE_MEMORY || pPager->subjInMemory ){ nStmtSpill = -1; } rc = sqlite3JournalOpen(pPager->pVfs, 0, pPager->sjfd, flags, nStmtSpill); } return rc; } /* ** Append a record of the current state of page pPg to the sub-journal. ** ** If successful, set the bit corresponding to pPg->pgno in the bitvecs ** for all open savepoints before returning. ** ** This function returns SQLITE_OK if everything is successful, an IO ** error code if the attempt to write to the sub-journal fails, or ** SQLITE_NOMEM if a malloc fails while setting a bit in a savepoint ** bitvec. */ static int subjournalPage(PgHdr *pPg){ int rc = SQLITE_OK; Pager *pPager = pPg->pPager; if( pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ /* Open the sub-journal, if it has not already been opened */ assert( pPager->useJournal ); assert( isOpen(pPager->jfd) || pagerUseWal(pPager) ); assert( isOpen(pPager->sjfd) || pPager->nSubRec==0 ); assert( pagerUseWal(pPager) || pageInJournal(pPager, pPg) || pPg->pgno>pPager->dbOrigSize ); rc = openSubJournal(pPager); /* If the sub-journal was opened successfully (or was already open), ** write the journal record into the file. */ if( rc==SQLITE_OK ){ void *pData = pPg->pData; i64 offset = (i64)pPager->nSubRec*(4+pPager->pageSize); char *pData2; pData2 = pData; PAGERTRACE(("STMT-JOURNAL %d page %d\n", PAGERID(pPager), pPg->pgno)); rc = write32bits(pPager->sjfd, offset, pPg->pgno); if( rc==SQLITE_OK ){ rc = sqlite3OsWrite(pPager->sjfd, pData2, pPager->pageSize, offset+4); } } } if( rc==SQLITE_OK ){ pPager->nSubRec++; assert( pPager->nSavepoint>0 ); rc = addToSavepointBitvecs(pPager, pPg->pgno); } return rc; } static int subjournalPageIfRequired(PgHdr *pPg){ if( subjRequiresPage(pPg) ){ return subjournalPage(pPg); }else{ return SQLITE_OK; } } /* ** This function is called by the pcache layer when it has reached some ** soft memory limit. The first argument is a pointer to a Pager object ** (cast as a void*). The pager is always 'purgeable' (not an in-memory ** database). The second argument is a reference to a page that is ** currently dirty but has no outstanding references. The page ** is always associated with the Pager object passed as the first ** argument. ** ** The job of this function is to make pPg clean by writing its contents ** out to the database file, if possible. This may involve syncing the ** journal file. ** ** If successful, sqlite3PcacheMakeClean() is called on the page and ** SQLITE_OK returned. If an IO error occurs while trying to make the ** page clean, the IO error code is returned. If the page cannot be ** made clean for some other reason, but no error occurs, then SQLITE_OK ** is returned by sqlite3PcacheMakeClean() is not called. */ static int pagerStress(void *p, PgHdr *pPg){ Pager *pPager = (Pager *)p; int rc = SQLITE_OK; assert( pPg->pPager==pPager ); assert( pPg->flags&PGHDR_DIRTY ); /* The doNotSpill NOSYNC bit is set during times when doing a sync of ** journal (and adding a new header) is not allowed. This occurs ** during calls to sqlite3PagerWrite() while trying to journal multiple ** pages belonging to the same sector. ** ** The doNotSpill ROLLBACK and OFF bits inhibits all cache spilling ** regardless of whether or not a sync is required. This is set during ** a rollback or by user request, respectively. ** ** Spilling is also prohibited when in an error state since that could ** lead to database corruption. In the current implementation it ** is impossible for sqlite3PcacheFetch() to be called with createFlag==3 ** while in the error state, hence it is impossible for this routine to ** be called in the error state. Nevertheless, we include a NEVER() ** test for the error state as a safeguard against future changes. */ if( NEVER(pPager->errCode) ) return SQLITE_OK; testcase( pPager->doNotSpill & SPILLFLAG_ROLLBACK ); testcase( pPager->doNotSpill & SPILLFLAG_OFF ); testcase( pPager->doNotSpill & SPILLFLAG_NOSYNC ); if( pPager->doNotSpill && ((pPager->doNotSpill & (SPILLFLAG_ROLLBACK|SPILLFLAG_OFF))!=0 || (pPg->flags & PGHDR_NEED_SYNC)!=0) ){ return SQLITE_OK; } pPager->aStat[PAGER_STAT_SPILL]++; pPg->pDirty = 0; if( pagerUseWal(pPager) ){ /* Write a single frame for this page to the log. */ rc = subjournalPageIfRequired(pPg); if( rc==SQLITE_OK ){ rc = pagerWalFrames(pPager, pPg, 0, 0); } }else{ #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( pPager->tempFile==0 ){ rc = sqlite3JournalCreate(pPager->jfd); if( rc!=SQLITE_OK ) return pager_error(pPager, rc); } #endif /* Sync the journal file if required. */ if( pPg->flags&PGHDR_NEED_SYNC || pPager->eState==PAGER_WRITER_CACHEMOD ){ rc = syncJournal(pPager, 1); } /* Write the contents of the page out to the database file. */ if( rc==SQLITE_OK ){ assert( (pPg->flags&PGHDR_NEED_SYNC)==0 ); rc = pager_write_pagelist(pPager, pPg); } } /* Mark the page as clean. */ if( rc==SQLITE_OK ){ PAGERTRACE(("STRESS %d page %d\n", PAGERID(pPager), pPg->pgno)); sqlite3PcacheMakeClean(pPg); } return pager_error(pPager, rc); } /* ** Flush all unreferenced dirty pages to disk. */ SQLITE_PRIVATE int sqlite3PagerFlush(Pager *pPager){ int rc = pPager->errCode; if( !MEMDB ){ PgHdr *pList = sqlite3PcacheDirtyList(pPager->pPCache); assert( assert_pager_state(pPager) ); while( rc==SQLITE_OK && pList ){ PgHdr *pNext = pList->pDirty; if( pList->nRef==0 ){ rc = pagerStress((void*)pPager, pList); } pList = pNext; } } return rc; } /* ** Allocate and initialize a new Pager object and put a pointer to it ** in *ppPager. The pager should eventually be freed by passing it ** to sqlite3PagerClose(). ** ** The zFilename argument is the path to the database file to open. ** If zFilename is NULL then a randomly-named temporary file is created ** and used as the file to be cached. Temporary files are be deleted ** automatically when they are closed. If zFilename is ":memory:" then ** all information is held in cache. It is never written to disk. ** This can be used to implement an in-memory database. ** ** The nExtra parameter specifies the number of bytes of space allocated ** along with each page reference. This space is available to the user ** via the sqlite3PagerGetExtra() API. When a new page is allocated, the ** first 8 bytes of this space are zeroed but the remainder is uninitialized. ** (The extra space is used by btree as the MemPage object.) ** ** The flags argument is used to specify properties that affect the ** operation of the pager. It should be passed some bitwise combination ** of the PAGER_* flags. ** ** The vfsFlags parameter is a bitmask to pass to the flags parameter ** of the xOpen() method of the supplied VFS when opening files. ** ** If the pager object is allocated and the specified file opened ** successfully, SQLITE_OK is returned and *ppPager set to point to ** the new pager object. If an error occurs, *ppPager is set to NULL ** and error code returned. This function may return SQLITE_NOMEM ** (sqlite3Malloc() is used to allocate memory), SQLITE_CANTOPEN or ** various SQLITE_IO_XXX errors. */ SQLITE_PRIVATE int sqlite3PagerOpen( sqlite3_vfs *pVfs, /* The virtual file system to use */ Pager **ppPager, /* OUT: Return the Pager structure here */ const char *zFilename, /* Name of the database file to open */ int nExtra, /* Extra bytes append to each in-memory page */ int flags, /* flags controlling this file */ int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */ void (*xReinit)(DbPage*) /* Function to reinitialize pages */ ){ u8 *pPtr; Pager *pPager = 0; /* Pager object to allocate and return */ int rc = SQLITE_OK; /* Return code */ int tempFile = 0; /* True for temp files (incl. in-memory files) */ int memDb = 0; /* True if this is an in-memory file */ #ifndef SQLITE_OMIT_DESERIALIZE int memJM = 0; /* Memory journal mode */ #else # define memJM 0 #endif int readOnly = 0; /* True if this is a read-only file */ int journalFileSize; /* Bytes to allocate for each journal fd */ char *zPathname = 0; /* Full path to database file */ int nPathname = 0; /* Number of bytes in zPathname */ int useJournal = (flags & PAGER_OMIT_JOURNAL)==0; /* False to omit journal */ int pcacheSize = sqlite3PcacheSize(); /* Bytes to allocate for PCache */ u32 szPageDflt = SQLITE_DEFAULT_PAGE_SIZE; /* Default page size */ const char *zUri = 0; /* URI args to copy */ int nUriByte = 1; /* Number of bytes of URI args at *zUri */ int nUri = 0; /* Number of URI parameters */ /* Figure out how much space is required for each journal file-handle ** (there are two of them, the main journal and the sub-journal). */ journalFileSize = ROUND8(sqlite3JournalSize(pVfs)); /* Set the output variable to NULL in case an error occurs. */ *ppPager = 0; #ifndef SQLITE_OMIT_MEMORYDB if( flags & PAGER_MEMORY ){ memDb = 1; if( zFilename && zFilename[0] ){ zPathname = sqlite3DbStrDup(0, zFilename); if( zPathname==0 ) return SQLITE_NOMEM_BKPT; nPathname = sqlite3Strlen30(zPathname); zFilename = 0; } } #endif /* Compute and store the full pathname in an allocated buffer pointed ** to by zPathname, length nPathname. Or, if this is a temporary file, ** leave both nPathname and zPathname set to 0. */ if( zFilename && zFilename[0] ){ const char *z; nPathname = pVfs->mxPathname+1; zPathname = sqlite3DbMallocRaw(0, nPathname*2); if( zPathname==0 ){ return SQLITE_NOMEM_BKPT; } zPathname[0] = 0; /* Make sure initialized even if FullPathname() fails */ rc = sqlite3OsFullPathname(pVfs, zFilename, nPathname, zPathname); if( rc!=SQLITE_OK ){ if( rc==SQLITE_OK_SYMLINK ){ if( vfsFlags & SQLITE_OPEN_NOFOLLOW ){ rc = SQLITE_CANTOPEN_SYMLINK; }else{ rc = SQLITE_OK; } } } nPathname = sqlite3Strlen30(zPathname); z = zUri = &zFilename[sqlite3Strlen30(zFilename)+1]; while( *z ){ z += strlen(z)+1; z += strlen(z)+1; nUri++; } nUriByte = (int)(&z[1] - zUri); assert( nUriByte>=1 ); if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){ /* This branch is taken when the journal path required by ** the database being opened will be more than pVfs->mxPathname ** bytes in length. This means the database cannot be opened, ** as it will not be possible to open the journal file or even ** check for a hot-journal before reading. */ rc = SQLITE_CANTOPEN_BKPT; } if( rc!=SQLITE_OK ){ sqlite3DbFree(0, zPathname); return rc; } } /* Allocate memory for the Pager structure, PCache object, the ** three file descriptors, the database file name and the journal ** file name. The layout in memory is as follows: ** ** Pager object (sizeof(Pager) bytes) ** PCache object (sqlite3PcacheSize() bytes) ** Database file handle (pVfs->szOsFile bytes) ** Sub-journal file handle (journalFileSize bytes) ** Main journal file handle (journalFileSize bytes) ** Ptr back to the Pager (sizeof(Pager*) bytes) ** \0\0\0\0 database prefix (4 bytes) ** Database file name (nPathname+1 bytes) ** URI query parameters (nUriByte bytes) ** Journal filename (nPathname+8+1 bytes) ** WAL filename (nPathname+4+1 bytes) ** \0\0\0 terminator (3 bytes) ** ** Some 3rd-party software, over which we have no control, depends on ** the specific order of the filenames and the \0 separators between them ** so that it can (for example) find the database filename given the WAL ** filename without using the sqlite3_filename_database() API. This is a ** misuse of SQLite and a bug in the 3rd-party software, but the 3rd-party ** software is in widespread use, so we try to avoid changing the filename ** order and formatting if possible. In particular, the details of the ** filename format expected by 3rd-party software should be as follows: ** ** - Main Database Path ** - \0 ** - Multiple URI components consisting of: ** - Key ** - \0 ** - Value ** - \0 ** - \0 ** - Journal Path ** - \0 ** - WAL Path (zWALName) ** - \0 ** ** The sqlite3_create_filename() interface and the databaseFilename() utility ** that is used by sqlite3_filename_database() and kin also depend on the ** specific formatting and order of the various filenames, so if the format ** changes here, be sure to change it there as well. */ pPtr = (u8 *)sqlite3MallocZero( ROUND8(sizeof(*pPager)) + /* Pager structure */ ROUND8(pcacheSize) + /* PCache object */ ROUND8(pVfs->szOsFile) + /* The main db file */ journalFileSize * 2 + /* The two journal files */ sizeof(pPager) + /* Space to hold a pointer */ 4 + /* Database prefix */ nPathname + 1 + /* database filename */ nUriByte + /* query parameters */ nPathname + 8 + 1 + /* Journal filename */ #ifndef SQLITE_OMIT_WAL nPathname + 4 + 1 + /* WAL filename */ #endif 3 /* Terminator */ ); assert( EIGHT_BYTE_ALIGNMENT(SQLITE_INT_TO_PTR(journalFileSize)) ); if( !pPtr ){ sqlite3DbFree(0, zPathname); return SQLITE_NOMEM_BKPT; } pPager = (Pager*)pPtr; pPtr += ROUND8(sizeof(*pPager)); pPager->pPCache = (PCache*)pPtr; pPtr += ROUND8(pcacheSize); pPager->fd = (sqlite3_file*)pPtr; pPtr += ROUND8(pVfs->szOsFile); pPager->sjfd = (sqlite3_file*)pPtr; pPtr += journalFileSize; pPager->jfd = (sqlite3_file*)pPtr; pPtr += journalFileSize; assert( EIGHT_BYTE_ALIGNMENT(pPager->jfd) ); memcpy(pPtr, &pPager, sizeof(pPager)); pPtr += sizeof(pPager); /* Fill in the Pager.zFilename and pPager.zQueryParam fields */ pPtr += 4; /* Skip zero prefix */ pPager->zFilename = (char*)pPtr; if( nPathname>0 ){ memcpy(pPtr, zPathname, nPathname); pPtr += nPathname + 1; if( zUri ){ memcpy(pPtr, zUri, nUriByte); pPtr += nUriByte; }else{ pPtr++; } } /* Fill in Pager.zJournal */ if( nPathname>0 ){ pPager->zJournal = (char*)pPtr; memcpy(pPtr, zPathname, nPathname); pPtr += nPathname; memcpy(pPtr, "-journal",8); pPtr += 8 + 1; #ifdef SQLITE_ENABLE_8_3_NAMES sqlite3FileSuffix3(zFilename,pPager->zJournal); pPtr = (u8*)(pPager->zJournal + sqlite3Strlen30(pPager->zJournal)+1); #endif }else{ pPager->zJournal = 0; } #ifndef SQLITE_OMIT_WAL /* Fill in Pager.zWal */ if( nPathname>0 ){ pPager->zWal = (char*)pPtr; memcpy(pPtr, zPathname, nPathname); pPtr += nPathname; memcpy(pPtr, "-wal", 4); pPtr += 4 + 1; #ifdef SQLITE_ENABLE_8_3_NAMES sqlite3FileSuffix3(zFilename, pPager->zWal); pPtr = (u8*)(pPager->zWal + sqlite3Strlen30(pPager->zWal)+1); #endif }else{ pPager->zWal = 0; } #endif (void)pPtr; /* Suppress warning about unused pPtr value */ if( nPathname ) sqlite3DbFree(0, zPathname); pPager->pVfs = pVfs; pPager->vfsFlags = vfsFlags; /* Open the pager file. */ if( zFilename && zFilename[0] ){ int fout = 0; /* VFS flags returned by xOpen() */ rc = sqlite3OsOpen(pVfs, pPager->zFilename, pPager->fd, vfsFlags, &fout); assert( !memDb ); #ifndef SQLITE_OMIT_DESERIALIZE pPager->memVfs = memJM = (fout&SQLITE_OPEN_MEMORY)!=0; #endif readOnly = (fout&SQLITE_OPEN_READONLY)!=0; /* If the file was successfully opened for read/write access, ** choose a default page size in case we have to create the ** database file. The default page size is the maximum of: ** ** + SQLITE_DEFAULT_PAGE_SIZE, ** + The value returned by sqlite3OsSectorSize() ** + The largest page size that can be written atomically. */ if( rc==SQLITE_OK ){ int iDc = sqlite3OsDeviceCharacteristics(pPager->fd); if( !readOnly ){ setSectorSize(pPager); assert(SQLITE_DEFAULT_PAGE_SIZE<=SQLITE_MAX_DEFAULT_PAGE_SIZE); if( szPageDfltsectorSize ){ if( pPager->sectorSize>SQLITE_MAX_DEFAULT_PAGE_SIZE ){ szPageDflt = SQLITE_MAX_DEFAULT_PAGE_SIZE; }else{ szPageDflt = (u32)pPager->sectorSize; } } #ifdef SQLITE_ENABLE_ATOMIC_WRITE { int ii; assert(SQLITE_IOCAP_ATOMIC512==(512>>8)); assert(SQLITE_IOCAP_ATOMIC64K==(65536>>8)); assert(SQLITE_MAX_DEFAULT_PAGE_SIZE<=65536); for(ii=szPageDflt; ii<=SQLITE_MAX_DEFAULT_PAGE_SIZE; ii=ii*2){ if( iDc&(SQLITE_IOCAP_ATOMIC|(ii>>8)) ){ szPageDflt = ii; } } } #endif } pPager->noLock = sqlite3_uri_boolean(pPager->zFilename, "nolock", 0); if( (iDc & SQLITE_IOCAP_IMMUTABLE)!=0 || sqlite3_uri_boolean(pPager->zFilename, "immutable", 0) ){ vfsFlags |= SQLITE_OPEN_READONLY; goto act_like_temp_file; } } }else{ /* If a temporary file is requested, it is not opened immediately. ** In this case we accept the default page size and delay actually ** opening the file until the first call to OsWrite(). ** ** This branch is also run for an in-memory database. An in-memory ** database is the same as a temp-file that is never written out to ** disk and uses an in-memory rollback journal. ** ** This branch also runs for files marked as immutable. */ act_like_temp_file: tempFile = 1; pPager->eState = PAGER_READER; /* Pretend we already have a lock */ pPager->eLock = EXCLUSIVE_LOCK; /* Pretend we are in EXCLUSIVE mode */ pPager->noLock = 1; /* Do no locking */ readOnly = (vfsFlags&SQLITE_OPEN_READONLY); } /* The following call to PagerSetPagesize() serves to set the value of ** Pager.pageSize and to allocate the Pager.pTmpSpace buffer. */ if( rc==SQLITE_OK ){ assert( pPager->memDb==0 ); rc = sqlite3PagerSetPagesize(pPager, &szPageDflt, -1); testcase( rc!=SQLITE_OK ); } /* Initialize the PCache object. */ if( rc==SQLITE_OK ){ nExtra = ROUND8(nExtra); assert( nExtra>=8 && nExtra<1000 ); rc = sqlite3PcacheOpen(szPageDflt, nExtra, !memDb, !memDb?pagerStress:0, (void *)pPager, pPager->pPCache); } /* If an error occurred above, free the Pager structure and close the file. */ if( rc!=SQLITE_OK ){ sqlite3OsClose(pPager->fd); sqlite3PageFree(pPager->pTmpSpace); sqlite3_free(pPager); return rc; } PAGERTRACE(("OPEN %d %s\n", FILEHANDLEID(pPager->fd), pPager->zFilename)); IOTRACE(("OPEN %p %s\n", pPager, pPager->zFilename)) pPager->useJournal = (u8)useJournal; /* pPager->stmtOpen = 0; */ /* pPager->stmtInUse = 0; */ /* pPager->nRef = 0; */ /* pPager->stmtSize = 0; */ /* pPager->stmtJSize = 0; */ /* pPager->nPage = 0; */ pPager->mxPgno = SQLITE_MAX_PAGE_COUNT; /* pPager->state = PAGER_UNLOCK; */ /* pPager->errMask = 0; */ pPager->tempFile = (u8)tempFile; assert( tempFile==PAGER_LOCKINGMODE_NORMAL || tempFile==PAGER_LOCKINGMODE_EXCLUSIVE ); assert( PAGER_LOCKINGMODE_EXCLUSIVE==1 ); pPager->exclusiveMode = (u8)tempFile; pPager->changeCountDone = pPager->tempFile; pPager->memDb = (u8)memDb; pPager->readOnly = (u8)readOnly; assert( useJournal || pPager->tempFile ); pPager->noSync = pPager->tempFile; if( pPager->noSync ){ assert( pPager->fullSync==0 ); assert( pPager->extraSync==0 ); assert( pPager->syncFlags==0 ); assert( pPager->walSyncFlags==0 ); }else{ pPager->fullSync = 1; pPager->extraSync = 0; pPager->syncFlags = SQLITE_SYNC_NORMAL; pPager->walSyncFlags = SQLITE_SYNC_NORMAL | (SQLITE_SYNC_NORMAL<<2); } /* pPager->pFirst = 0; */ /* pPager->pFirstSynced = 0; */ /* pPager->pLast = 0; */ pPager->nExtra = (u16)nExtra; pPager->journalSizeLimit = SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT; assert( isOpen(pPager->fd) || tempFile ); setSectorSize(pPager); if( !useJournal ){ pPager->journalMode = PAGER_JOURNALMODE_OFF; }else if( memDb || memJM ){ pPager->journalMode = PAGER_JOURNALMODE_MEMORY; } /* pPager->xBusyHandler = 0; */ /* pPager->pBusyHandlerArg = 0; */ pPager->xReiniter = xReinit; setGetterMethod(pPager); /* memset(pPager->aHash, 0, sizeof(pPager->aHash)); */ /* pPager->szMmap = SQLITE_DEFAULT_MMAP_SIZE // will be set by btree.c */ *ppPager = pPager; return SQLITE_OK; } /* ** Return the sqlite3_file for the main database given the name ** of the corresonding WAL or Journal name as passed into ** xOpen. */ SQLITE_API sqlite3_file *sqlite3_database_file_object(const char *zName){ Pager *pPager; while( zName[-1]!=0 || zName[-2]!=0 || zName[-3]!=0 || zName[-4]!=0 ){ zName--; } pPager = *(Pager**)(zName - 4 - sizeof(Pager*)); return pPager->fd; } /* ** This function is called after transitioning from PAGER_UNLOCK to ** PAGER_SHARED state. It tests if there is a hot journal present in ** the file-system for the given pager. A hot journal is one that ** needs to be played back. According to this function, a hot-journal ** file exists if the following criteria are met: ** ** * The journal file exists in the file system, and ** * No process holds a RESERVED or greater lock on the database file, and ** * The database file itself is greater than 0 bytes in size, and ** * The first byte of the journal file exists and is not 0x00. ** ** If the current size of the database file is 0 but a journal file ** exists, that is probably an old journal left over from a prior ** database with the same name. In this case the journal file is ** just deleted using OsDelete, *pExists is set to 0 and SQLITE_OK ** is returned. ** ** This routine does not check if there is a super-journal filename ** at the end of the file. If there is, and that super-journal file ** does not exist, then the journal file is not really hot. In this ** case this routine will return a false-positive. The pager_playback() ** routine will discover that the journal file is not really hot and ** will not roll it back. ** ** If a hot-journal file is found to exist, *pExists is set to 1 and ** SQLITE_OK returned. If no hot-journal file is present, *pExists is ** set to 0 and SQLITE_OK returned. If an IO error occurs while trying ** to determine whether or not a hot-journal file exists, the IO error ** code is returned and the value of *pExists is undefined. */ static int hasHotJournal(Pager *pPager, int *pExists){ sqlite3_vfs * const pVfs = pPager->pVfs; int rc = SQLITE_OK; /* Return code */ int exists = 1; /* True if a journal file is present */ int jrnlOpen = !!isOpen(pPager->jfd); assert( pPager->useJournal ); assert( isOpen(pPager->fd) ); assert( pPager->eState==PAGER_OPEN ); assert( jrnlOpen==0 || ( sqlite3OsDeviceCharacteristics(pPager->jfd) & SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN )); *pExists = 0; if( !jrnlOpen ){ rc = sqlite3OsAccess(pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &exists); } if( rc==SQLITE_OK && exists ){ int locked = 0; /* True if some process holds a RESERVED lock */ /* Race condition here: Another process might have been holding the ** the RESERVED lock and have a journal open at the sqlite3OsAccess() ** call above, but then delete the journal and drop the lock before ** we get to the following sqlite3OsCheckReservedLock() call. If that ** is the case, this routine might think there is a hot journal when ** in fact there is none. This results in a false-positive which will ** be dealt with by the playback routine. Ticket #3883. */ rc = sqlite3OsCheckReservedLock(pPager->fd, &locked); if( rc==SQLITE_OK && !locked ){ Pgno nPage; /* Number of pages in database file */ assert( pPager->tempFile==0 ); rc = pagerPagecount(pPager, &nPage); if( rc==SQLITE_OK ){ /* If the database is zero pages in size, that means that either (1) the ** journal is a remnant from a prior database with the same name where ** the database file but not the journal was deleted, or (2) the initial ** transaction that populates a new database is being rolled back. ** In either case, the journal file can be deleted. However, take care ** not to delete the journal file if it is already open due to ** journal_mode=PERSIST. */ if( nPage==0 && !jrnlOpen ){ sqlite3BeginBenignMalloc(); if( pagerLockDb(pPager, RESERVED_LOCK)==SQLITE_OK ){ sqlite3OsDelete(pVfs, pPager->zJournal, 0); if( !pPager->exclusiveMode ) pagerUnlockDb(pPager, SHARED_LOCK); } sqlite3EndBenignMalloc(); }else{ /* The journal file exists and no other connection has a reserved ** or greater lock on the database file. Now check that there is ** at least one non-zero bytes at the start of the journal file. ** If there is, then we consider this journal to be hot. If not, ** it can be ignored. */ if( !jrnlOpen ){ int f = SQLITE_OPEN_READONLY|SQLITE_OPEN_MAIN_JOURNAL; rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &f); } if( rc==SQLITE_OK ){ u8 first = 0; rc = sqlite3OsRead(pPager->jfd, (void *)&first, 1, 0); if( rc==SQLITE_IOERR_SHORT_READ ){ rc = SQLITE_OK; } if( !jrnlOpen ){ sqlite3OsClose(pPager->jfd); } *pExists = (first!=0); }else if( rc==SQLITE_CANTOPEN ){ /* If we cannot open the rollback journal file in order to see if ** it has a zero header, that might be due to an I/O error, or ** it might be due to the race condition described above and in ** ticket #3883. Either way, assume that the journal is hot. ** This might be a false positive. But if it is, then the ** automatic journal playback and recovery mechanism will deal ** with it under an EXCLUSIVE lock where we do not need to ** worry so much with race conditions. */ *pExists = 1; rc = SQLITE_OK; } } } } } return rc; } /* ** This function is called to obtain a shared lock on the database file. ** It is illegal to call sqlite3PagerGet() until after this function ** has been successfully called. If a shared-lock is already held when ** this function is called, it is a no-op. ** ** The following operations are also performed by this function. ** ** 1) If the pager is currently in PAGER_OPEN state (no lock held ** on the database file), then an attempt is made to obtain a ** SHARED lock on the database file. Immediately after obtaining ** the SHARED lock, the file-system is checked for a hot-journal, ** which is played back if present. Following any hot-journal ** rollback, the contents of the cache are validated by checking ** the 'change-counter' field of the database file header and ** discarded if they are found to be invalid. ** ** 2) If the pager is running in exclusive-mode, and there are currently ** no outstanding references to any pages, and is in the error state, ** then an attempt is made to clear the error state by discarding ** the contents of the page cache and rolling back any open journal ** file. ** ** If everything is successful, SQLITE_OK is returned. If an IO error ** occurs while locking the database, checking for a hot-journal file or ** rolling back a journal file, the IO error code is returned. */ SQLITE_PRIVATE int sqlite3PagerSharedLock(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ /* This routine is only called from b-tree and only when there are no ** outstanding pages. This implies that the pager state should either ** be OPEN or READER. READER is only possible if the pager is or was in ** exclusive access mode. */ assert( sqlite3PcacheRefCount(pPager->pPCache)==0 ); assert( assert_pager_state(pPager) ); assert( pPager->eState==PAGER_OPEN || pPager->eState==PAGER_READER ); assert( pPager->errCode==SQLITE_OK ); if( !pagerUseWal(pPager) && pPager->eState==PAGER_OPEN ){ int bHotJournal = 1; /* True if there exists a hot journal-file */ assert( !MEMDB ); assert( pPager->tempFile==0 || pPager->eLock==EXCLUSIVE_LOCK ); rc = pager_wait_on_lock(pPager, SHARED_LOCK); if( rc!=SQLITE_OK ){ assert( pPager->eLock==NO_LOCK || pPager->eLock==UNKNOWN_LOCK ); goto failed; } /* If a journal file exists, and there is no RESERVED lock on the ** database file, then it either needs to be played back or deleted. */ if( pPager->eLock<=SHARED_LOCK ){ rc = hasHotJournal(pPager, &bHotJournal); } if( rc!=SQLITE_OK ){ goto failed; } if( bHotJournal ){ if( pPager->readOnly ){ rc = SQLITE_READONLY_ROLLBACK; goto failed; } /* Get an EXCLUSIVE lock on the database file. At this point it is ** important that a RESERVED lock is not obtained on the way to the ** EXCLUSIVE lock. If it were, another process might open the ** database file, detect the RESERVED lock, and conclude that the ** database is safe to read while this process is still rolling the ** hot-journal back. ** ** Because the intermediate RESERVED lock is not requested, any ** other process attempting to access the database file will get to ** this point in the code and fail to obtain its own EXCLUSIVE lock ** on the database file. ** ** Unless the pager is in locking_mode=exclusive mode, the lock is ** downgraded to SHARED_LOCK before this function returns. */ rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); if( rc!=SQLITE_OK ){ goto failed; } /* If it is not already open and the file exists on disk, open the ** journal for read/write access. Write access is required because ** in exclusive-access mode the file descriptor will be kept open ** and possibly used for a transaction later on. Also, write-access ** is usually required to finalize the journal in journal_mode=persist ** mode (and also for journal_mode=truncate on some systems). ** ** If the journal does not exist, it usually means that some ** other connection managed to get in and roll it back before ** this connection obtained the exclusive lock above. Or, it ** may mean that the pager was in the error-state when this ** function was called and the journal file does not exist. */ if( !isOpen(pPager->jfd) && pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ sqlite3_vfs * const pVfs = pPager->pVfs; int bExists; /* True if journal file exists */ rc = sqlite3OsAccess( pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &bExists); if( rc==SQLITE_OK && bExists ){ int fout = 0; int f = SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_JOURNAL; assert( !pPager->tempFile ); rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &fout); assert( rc!=SQLITE_OK || isOpen(pPager->jfd) ); if( rc==SQLITE_OK && fout&SQLITE_OPEN_READONLY ){ rc = SQLITE_CANTOPEN_BKPT; sqlite3OsClose(pPager->jfd); } } } /* Playback and delete the journal. Drop the database write ** lock and reacquire the read lock. Purge the cache before ** playing back the hot-journal so that we don't end up with ** an inconsistent cache. Sync the hot journal before playing ** it back since the process that crashed and left the hot journal ** probably did not sync it and we are required to always sync ** the journal before playing it back. */ if( isOpen(pPager->jfd) ){ assert( rc==SQLITE_OK ); rc = pagerSyncHotJournal(pPager); if( rc==SQLITE_OK ){ rc = pager_playback(pPager, !pPager->tempFile); pPager->eState = PAGER_OPEN; } }else if( !pPager->exclusiveMode ){ pagerUnlockDb(pPager, SHARED_LOCK); } if( rc!=SQLITE_OK ){ /* This branch is taken if an error occurs while trying to open ** or roll back a hot-journal while holding an EXCLUSIVE lock. The ** pager_unlock() routine will be called before returning to unlock ** the file. If the unlock attempt fails, then Pager.eLock must be ** set to UNKNOWN_LOCK (see the comment above the #define for ** UNKNOWN_LOCK above for an explanation). ** ** In order to get pager_unlock() to do this, set Pager.eState to ** PAGER_ERROR now. This is not actually counted as a transition ** to ERROR state in the state diagram at the top of this file, ** since we know that the same call to pager_unlock() will very ** shortly transition the pager object to the OPEN state. Calling ** assert_pager_state() would fail now, as it should not be possible ** to be in ERROR state when there are zero outstanding page ** references. */ pager_error(pPager, rc); goto failed; } assert( pPager->eState==PAGER_OPEN ); assert( (pPager->eLock==SHARED_LOCK) || (pPager->exclusiveMode && pPager->eLock>SHARED_LOCK) ); } if( !pPager->tempFile && pPager->hasHeldSharedLock ){ /* The shared-lock has just been acquired then check to ** see if the database has been modified. If the database has changed, ** flush the cache. The hasHeldSharedLock flag prevents this from ** occurring on the very first access to a file, in order to save a ** single unnecessary sqlite3OsRead() call at the start-up. ** ** Database changes are detected by looking at 15 bytes beginning ** at offset 24 into the file. The first 4 of these 16 bytes are ** a 32-bit counter that is incremented with each change. The ** other bytes change randomly with each file change when ** a codec is in use. ** ** There is a vanishingly small chance that a change will not be ** detected. The chance of an undetected change is so small that ** it can be neglected. */ char dbFileVers[sizeof(pPager->dbFileVers)]; IOTRACE(("CKVERS %p %d\n", pPager, sizeof(dbFileVers))); rc = sqlite3OsRead(pPager->fd, &dbFileVers, sizeof(dbFileVers), 24); if( rc!=SQLITE_OK ){ if( rc!=SQLITE_IOERR_SHORT_READ ){ goto failed; } memset(dbFileVers, 0, sizeof(dbFileVers)); } if( memcmp(pPager->dbFileVers, dbFileVers, sizeof(dbFileVers))!=0 ){ pager_reset(pPager); /* Unmap the database file. It is possible that external processes ** may have truncated the database file and then extended it back ** to its original size while this process was not holding a lock. ** In this case there may exist a Pager.pMap mapping that appears ** to be the right size but is not actually valid. Avoid this ** possibility by unmapping the db here. */ if( USEFETCH(pPager) ){ sqlite3OsUnfetch(pPager->fd, 0, 0); } } } /* If there is a WAL file in the file-system, open this database in WAL ** mode. Otherwise, the following function call is a no-op. */ rc = pagerOpenWalIfPresent(pPager); #ifndef SQLITE_OMIT_WAL assert( pPager->pWal==0 || rc==SQLITE_OK ); #endif } if( pagerUseWal(pPager) ){ assert( rc==SQLITE_OK ); rc = pagerBeginReadTransaction(pPager); } if( pPager->tempFile==0 && pPager->eState==PAGER_OPEN && rc==SQLITE_OK ){ rc = pagerPagecount(pPager, &pPager->dbSize); } failed: if( rc!=SQLITE_OK ){ assert( !MEMDB ); pager_unlock(pPager); assert( pPager->eState==PAGER_OPEN ); }else{ pPager->eState = PAGER_READER; pPager->hasHeldSharedLock = 1; } return rc; } /* ** If the reference count has reached zero, rollback any active ** transaction and unlock the pager. ** ** Except, in locking_mode=EXCLUSIVE when there is nothing to in ** the rollback journal, the unlock is not performed and there is ** nothing to rollback, so this routine is a no-op. */ static void pagerUnlockIfUnused(Pager *pPager){ if( sqlite3PcacheRefCount(pPager->pPCache)==0 ){ assert( pPager->nMmapOut==0 ); /* because page1 is never memory mapped */ pagerUnlockAndRollback(pPager); } } /* ** The page getter methods each try to acquire a reference to a ** page with page number pgno. If the requested reference is ** successfully obtained, it is copied to *ppPage and SQLITE_OK returned. ** ** There are different implementations of the getter method depending ** on the current state of the pager. ** ** getPageNormal() -- The normal getter ** getPageError() -- Used if the pager is in an error state ** getPageMmap() -- Used if memory-mapped I/O is enabled ** ** If the requested page is already in the cache, it is returned. ** Otherwise, a new page object is allocated and populated with data ** read from the database file. In some cases, the pcache module may ** choose not to allocate a new page object and may reuse an existing ** object with no outstanding references. ** ** The extra data appended to a page is always initialized to zeros the ** first time a page is loaded into memory. If the page requested is ** already in the cache when this function is called, then the extra ** data is left as it was when the page object was last used. ** ** If the database image is smaller than the requested page or if ** the flags parameter contains the PAGER_GET_NOCONTENT bit and the ** requested page is not already stored in the cache, then no ** actual disk read occurs. In this case the memory image of the ** page is initialized to all zeros. ** ** If PAGER_GET_NOCONTENT is true, it means that we do not care about ** the contents of the page. This occurs in two scenarios: ** ** a) When reading a free-list leaf page from the database, and ** ** b) When a savepoint is being rolled back and we need to load ** a new page into the cache to be filled with the data read ** from the savepoint journal. ** ** If PAGER_GET_NOCONTENT is true, then the data returned is zeroed instead ** of being read from the database. Additionally, the bits corresponding ** to pgno in Pager.pInJournal (bitvec of pages already written to the ** journal file) and the PagerSavepoint.pInSavepoint bitvecs of any open ** savepoints are set. This means if the page is made writable at any ** point in the future, using a call to sqlite3PagerWrite(), its contents ** will not be journaled. This saves IO. ** ** The acquisition might fail for several reasons. In all cases, ** an appropriate error code is returned and *ppPage is set to NULL. ** ** See also sqlite3PagerLookup(). Both this routine and Lookup() attempt ** to find a page in the in-memory cache first. If the page is not already ** in memory, this routine goes to disk to read it in whereas Lookup() ** just returns 0. This routine acquires a read-lock the first time it ** has to go to disk, and could also playback an old journal if necessary. ** Since Lookup() never goes to disk, it never has to deal with locks ** or journal files. */ static int getPageNormal( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ int rc = SQLITE_OK; PgHdr *pPg; u8 noContent; /* True if PAGER_GET_NOCONTENT is set */ sqlite3_pcache_page *pBase; assert( pPager->errCode==SQLITE_OK ); assert( pPager->eState>=PAGER_READER ); assert( assert_pager_state(pPager) ); assert( pPager->hasHeldSharedLock==1 ); if( pgno==0 ) return SQLITE_CORRUPT_BKPT; pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3); if( pBase==0 ){ pPg = 0; rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase); if( rc!=SQLITE_OK ) goto pager_acquire_err; if( pBase==0 ){ rc = SQLITE_NOMEM_BKPT; goto pager_acquire_err; } } pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase); assert( pPg==(*ppPage) ); assert( pPg->pgno==pgno ); assert( pPg->pPager==pPager || pPg->pPager==0 ); noContent = (flags & PAGER_GET_NOCONTENT)!=0; if( pPg->pPager && !noContent ){ /* In this case the pcache already contains an initialized copy of ** the page. Return without further ado. */ assert( pgno!=PAGER_MJ_PGNO(pPager) ); pPager->aStat[PAGER_STAT_HIT]++; return SQLITE_OK; }else{ /* The pager cache has created a new page. Its content needs to ** be initialized. But first some error checks: ** ** (*) obsolete. Was: maximum page number is 2^31 ** (2) Never try to fetch the locking page */ if( pgno==PAGER_MJ_PGNO(pPager) ){ rc = SQLITE_CORRUPT_BKPT; goto pager_acquire_err; } pPg->pPager = pPager; assert( !isOpen(pPager->fd) || !MEMDB ); if( !isOpen(pPager->fd) || pPager->dbSizepPager->mxPgno ){ rc = SQLITE_FULL; goto pager_acquire_err; } if( noContent ){ /* Failure to set the bits in the InJournal bit-vectors is benign. ** It merely means that we might do some extra work to journal a ** page that does not need to be journaled. Nevertheless, be sure ** to test the case where a malloc error occurs while trying to set ** a bit in a bit vector. */ sqlite3BeginBenignMalloc(); if( pgno<=pPager->dbOrigSize ){ TESTONLY( rc = ) sqlite3BitvecSet(pPager->pInJournal, pgno); testcase( rc==SQLITE_NOMEM ); } TESTONLY( rc = ) addToSavepointBitvecs(pPager, pgno); testcase( rc==SQLITE_NOMEM ); sqlite3EndBenignMalloc(); } memset(pPg->pData, 0, pPager->pageSize); IOTRACE(("ZERO %p %d\n", pPager, pgno)); }else{ assert( pPg->pPager==pPager ); pPager->aStat[PAGER_STAT_MISS]++; rc = readDbPage(pPg); if( rc!=SQLITE_OK ){ goto pager_acquire_err; } } pager_set_pagehash(pPg); } return SQLITE_OK; pager_acquire_err: assert( rc!=SQLITE_OK ); if( pPg ){ sqlite3PcacheDrop(pPg); } pagerUnlockIfUnused(pPager); *ppPage = 0; return rc; } #if SQLITE_MAX_MMAP_SIZE>0 /* The page getter for when memory-mapped I/O is enabled */ static int getPageMMap( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ int rc = SQLITE_OK; PgHdr *pPg = 0; u32 iFrame = 0; /* Frame to read from WAL file */ /* It is acceptable to use a read-only (mmap) page for any page except ** page 1 if there is no write-transaction open or the ACQUIRE_READONLY ** flag was specified by the caller. And so long as the db is not a ** temporary or in-memory database. */ const int bMmapOk = (pgno>1 && (pPager->eState==PAGER_READER || (flags & PAGER_GET_READONLY)) ); assert( USEFETCH(pPager) ); /* Optimization note: Adding the "pgno<=1" term before "pgno==0" here ** allows the compiler optimizer to reuse the results of the "pgno>1" ** test in the previous statement, and avoid testing pgno==0 in the ** common case where pgno is large. */ if( pgno<=1 && pgno==0 ){ return SQLITE_CORRUPT_BKPT; } assert( pPager->eState>=PAGER_READER ); assert( assert_pager_state(pPager) ); assert( pPager->hasHeldSharedLock==1 ); assert( pPager->errCode==SQLITE_OK ); if( bMmapOk && pagerUseWal(pPager) ){ rc = sqlite3WalFindFrame(pPager->pWal, pgno, &iFrame); if( rc!=SQLITE_OK ){ *ppPage = 0; return rc; } } if( bMmapOk && iFrame==0 ){ void *pData = 0; rc = sqlite3OsFetch(pPager->fd, (i64)(pgno-1) * pPager->pageSize, pPager->pageSize, &pData ); if( rc==SQLITE_OK && pData ){ if( pPager->eState>PAGER_READER || pPager->tempFile ){ pPg = sqlite3PagerLookup(pPager, pgno); } if( pPg==0 ){ rc = pagerAcquireMapPage(pPager, pgno, pData, &pPg); }else{ sqlite3OsUnfetch(pPager->fd, (i64)(pgno-1)*pPager->pageSize, pData); } if( pPg ){ assert( rc==SQLITE_OK ); *ppPage = pPg; return SQLITE_OK; } } if( rc!=SQLITE_OK ){ *ppPage = 0; return rc; } } return getPageNormal(pPager, pgno, ppPage, flags); } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* The page getter method for when the pager is an error state */ static int getPageError( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ UNUSED_PARAMETER(pgno); UNUSED_PARAMETER(flags); assert( pPager->errCode!=SQLITE_OK ); *ppPage = 0; return pPager->errCode; } /* Dispatch all page fetch requests to the appropriate getter method. */ SQLITE_PRIVATE int sqlite3PagerGet( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ /* printf("PAGE %u\n", pgno); fflush(stdout); */ return pPager->xGet(pPager, pgno, ppPage, flags); } /* ** Acquire a page if it is already in the in-memory cache. Do ** not read the page from disk. Return a pointer to the page, ** or 0 if the page is not in cache. ** ** See also sqlite3PagerGet(). The difference between this routine ** and sqlite3PagerGet() is that _get() will go to the disk and read ** in the page if the page is not already in cache. This routine ** returns NULL if the page is not in cache or if a disk I/O error ** has ever happened. */ SQLITE_PRIVATE DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno){ sqlite3_pcache_page *pPage; assert( pPager!=0 ); assert( pgno!=0 ); assert( pPager->pPCache!=0 ); pPage = sqlite3PcacheFetch(pPager->pPCache, pgno, 0); assert( pPage==0 || pPager->hasHeldSharedLock ); if( pPage==0 ) return 0; return sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pPage); } /* ** Release a page reference. ** ** The sqlite3PagerUnref() and sqlite3PagerUnrefNotNull() may only be ** used if we know that the page being released is not the last page. ** The btree layer always holds page1 open until the end, so these first ** to routines can be used to release any page other than BtShared.pPage1. ** ** Use sqlite3PagerUnrefPageOne() to release page1. This latter routine ** checks the total number of outstanding pages and if the number of ** pages reaches zero it drops the database lock. */ SQLITE_PRIVATE void sqlite3PagerUnrefNotNull(DbPage *pPg){ TESTONLY( Pager *pPager = pPg->pPager; ) assert( pPg!=0 ); if( pPg->flags & PGHDR_MMAP ){ assert( pPg->pgno!=1 ); /* Page1 is never memory mapped */ pagerReleaseMapPage(pPg); }else{ sqlite3PcacheRelease(pPg); } /* Do not use this routine to release the last reference to page1 */ assert( sqlite3PcacheRefCount(pPager->pPCache)>0 ); } SQLITE_PRIVATE void sqlite3PagerUnref(DbPage *pPg){ if( pPg ) sqlite3PagerUnrefNotNull(pPg); } SQLITE_PRIVATE void sqlite3PagerUnrefPageOne(DbPage *pPg){ Pager *pPager; assert( pPg!=0 ); assert( pPg->pgno==1 ); assert( (pPg->flags & PGHDR_MMAP)==0 ); /* Page1 is never memory mapped */ pPager = pPg->pPager; sqlite3PcacheRelease(pPg); pagerUnlockIfUnused(pPager); } /* ** This function is called at the start of every write transaction. ** There must already be a RESERVED or EXCLUSIVE lock on the database ** file when this routine is called. ** ** Open the journal file for pager pPager and write a journal header ** to the start of it. If there are active savepoints, open the sub-journal ** as well. This function is only used when the journal file is being ** opened to write a rollback log for a transaction. It is not used ** when opening a hot journal file to roll it back. ** ** If the journal file is already open (as it may be in exclusive mode), ** then this function just writes a journal header to the start of the ** already open file. ** ** Whether or not the journal file is opened by this function, the ** Pager.pInJournal bitvec structure is allocated. ** ** Return SQLITE_OK if everything is successful. Otherwise, return ** SQLITE_NOMEM if the attempt to allocate Pager.pInJournal fails, or ** an IO error code if opening or writing the journal file fails. */ static int pager_open_journal(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ assert( pPager->eState==PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); assert( pPager->pInJournal==0 ); /* If already in the error state, this function is a no-op. But on ** the other hand, this routine is never called if we are already in ** an error state. */ if( NEVER(pPager->errCode) ) return pPager->errCode; if( !pagerUseWal(pPager) && pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ pPager->pInJournal = sqlite3BitvecCreate(pPager->dbSize); if( pPager->pInJournal==0 ){ return SQLITE_NOMEM_BKPT; } /* Open the journal file if it is not already open. */ if( !isOpen(pPager->jfd) ){ if( pPager->journalMode==PAGER_JOURNALMODE_MEMORY ){ sqlite3MemJournalOpen(pPager->jfd); }else{ int flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; int nSpill; if( pPager->tempFile ){ flags |= (SQLITE_OPEN_DELETEONCLOSE|SQLITE_OPEN_TEMP_JOURNAL); nSpill = sqlite3Config.nStmtSpill; }else{ flags |= SQLITE_OPEN_MAIN_JOURNAL; nSpill = jrnlBufferSize(pPager); } /* Verify that the database still has the same name as it did when ** it was originally opened. */ rc = databaseIsUnmoved(pPager); if( rc==SQLITE_OK ){ rc = sqlite3JournalOpen ( pVfs, pPager->zJournal, pPager->jfd, flags, nSpill ); } } assert( rc!=SQLITE_OK || isOpen(pPager->jfd) ); } /* Write the first journal header to the journal file and open ** the sub-journal if necessary. */ if( rc==SQLITE_OK ){ /* TODO: Check if all of these are really required. */ pPager->nRec = 0; pPager->journalOff = 0; pPager->setSuper = 0; pPager->journalHdr = 0; rc = writeJournalHdr(pPager); } } if( rc!=SQLITE_OK ){ sqlite3BitvecDestroy(pPager->pInJournal); pPager->pInJournal = 0; }else{ assert( pPager->eState==PAGER_WRITER_LOCKED ); pPager->eState = PAGER_WRITER_CACHEMOD; } return rc; } /* ** Begin a write-transaction on the specified pager object. If a ** write-transaction has already been opened, this function is a no-op. ** ** If the exFlag argument is false, then acquire at least a RESERVED ** lock on the database file. If exFlag is true, then acquire at least ** an EXCLUSIVE lock. If such a lock is already held, no locking ** functions need be called. ** ** If the subjInMemory argument is non-zero, then any sub-journal opened ** within this transaction will be opened as an in-memory file. This ** has no effect if the sub-journal is already opened (as it may be when ** running in exclusive mode) or if the transaction does not require a ** sub-journal. If the subjInMemory argument is zero, then any required ** sub-journal is implemented in-memory if pPager is an in-memory database, ** or using a temporary file otherwise. */ SQLITE_PRIVATE int sqlite3PagerBegin(Pager *pPager, int exFlag, int subjInMemory){ int rc = SQLITE_OK; if( pPager->errCode ) return pPager->errCode; assert( pPager->eState>=PAGER_READER && pPager->eStatesubjInMemory = (u8)subjInMemory; if( pPager->eState==PAGER_READER ){ assert( pPager->pInJournal==0 ); if( pagerUseWal(pPager) ){ /* If the pager is configured to use locking_mode=exclusive, and an ** exclusive lock on the database is not already held, obtain it now. */ if( pPager->exclusiveMode && sqlite3WalExclusiveMode(pPager->pWal, -1) ){ rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); if( rc!=SQLITE_OK ){ return rc; } (void)sqlite3WalExclusiveMode(pPager->pWal, 1); } /* Grab the write lock on the log file. If successful, upgrade to ** PAGER_RESERVED state. Otherwise, return an error code to the caller. ** The busy-handler is not invoked if another connection already ** holds the write-lock. If possible, the upper layer will call it. */ rc = sqlite3WalBeginWriteTransaction(pPager->pWal); }else{ /* Obtain a RESERVED lock on the database file. If the exFlag parameter ** is true, then immediately upgrade this to an EXCLUSIVE lock. The ** busy-handler callback can be used when upgrading to the EXCLUSIVE ** lock, but not when obtaining the RESERVED lock. */ rc = pagerLockDb(pPager, RESERVED_LOCK); if( rc==SQLITE_OK && exFlag ){ rc = pager_wait_on_lock(pPager, EXCLUSIVE_LOCK); } } if( rc==SQLITE_OK ){ /* Change to WRITER_LOCKED state. ** ** WAL mode sets Pager.eState to PAGER_WRITER_LOCKED or CACHEMOD ** when it has an open transaction, but never to DBMOD or FINISHED. ** This is because in those states the code to roll back savepoint ** transactions may copy data from the sub-journal into the database ** file as well as into the page cache. Which would be incorrect in ** WAL mode. */ pPager->eState = PAGER_WRITER_LOCKED; pPager->dbHintSize = pPager->dbSize; pPager->dbFileSize = pPager->dbSize; pPager->dbOrigSize = pPager->dbSize; pPager->journalOff = 0; } assert( rc==SQLITE_OK || pPager->eState==PAGER_READER ); assert( rc!=SQLITE_OK || pPager->eState==PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); } PAGERTRACE(("TRANSACTION %d\n", PAGERID(pPager))); return rc; } /* ** Write page pPg onto the end of the rollback journal. */ static SQLITE_NOINLINE int pagerAddPageToRollbackJournal(PgHdr *pPg){ Pager *pPager = pPg->pPager; int rc; u32 cksum; char *pData2; i64 iOff = pPager->journalOff; /* We should never write to the journal file the page that ** contains the database locks. The following assert verifies ** that we do not. */ assert( pPg->pgno!=PAGER_MJ_PGNO(pPager) ); assert( pPager->journalHdr<=pPager->journalOff ); pData2 = pPg->pData; cksum = pager_cksum(pPager, (u8*)pData2); /* Even if an IO or diskfull error occurs while journalling the ** page in the block above, set the need-sync flag for the page. ** Otherwise, when the transaction is rolled back, the logic in ** playback_one_page() will think that the page needs to be restored ** in the database file. And if an IO error occurs while doing so, ** then corruption may follow. */ pPg->flags |= PGHDR_NEED_SYNC; rc = write32bits(pPager->jfd, iOff, pPg->pgno); if( rc!=SQLITE_OK ) return rc; rc = sqlite3OsWrite(pPager->jfd, pData2, pPager->pageSize, iOff+4); if( rc!=SQLITE_OK ) return rc; rc = write32bits(pPager->jfd, iOff+pPager->pageSize+4, cksum); if( rc!=SQLITE_OK ) return rc; IOTRACE(("JOUT %p %d %lld %d\n", pPager, pPg->pgno, pPager->journalOff, pPager->pageSize)); PAGER_INCR(sqlite3_pager_writej_count); PAGERTRACE(("JOURNAL %d page %d needSync=%d hash(%08x)\n", PAGERID(pPager), pPg->pgno, ((pPg->flags&PGHDR_NEED_SYNC)?1:0), pager_pagehash(pPg))); pPager->journalOff += 8 + pPager->pageSize; pPager->nRec++; assert( pPager->pInJournal!=0 ); rc = sqlite3BitvecSet(pPager->pInJournal, pPg->pgno); testcase( rc==SQLITE_NOMEM ); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); rc |= addToSavepointBitvecs(pPager, pPg->pgno); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); return rc; } /* ** Mark a single data page as writeable. The page is written into the ** main journal or sub-journal as required. If the page is written into ** one of the journals, the corresponding bit is set in the ** Pager.pInJournal bitvec and the PagerSavepoint.pInSavepoint bitvecs ** of any open savepoints as appropriate. */ static int pager_write(PgHdr *pPg){ Pager *pPager = pPg->pPager; int rc = SQLITE_OK; /* This routine is not called unless a write-transaction has already ** been started. The journal file may or may not be open at this point. ** It is never called in the ERROR state. */ assert( pPager->eState==PAGER_WRITER_LOCKED || pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); assert( pPager->errCode==0 ); assert( pPager->readOnly==0 ); CHECK_PAGE(pPg); /* The journal file needs to be opened. Higher level routines have already ** obtained the necessary locks to begin the write-transaction, but the ** rollback journal might not yet be open. Open it now if this is the case. ** ** This is done before calling sqlite3PcacheMakeDirty() on the page. ** Otherwise, if it were done after calling sqlite3PcacheMakeDirty(), then ** an error might occur and the pager would end up in WRITER_LOCKED state ** with pages marked as dirty in the cache. */ if( pPager->eState==PAGER_WRITER_LOCKED ){ rc = pager_open_journal(pPager); if( rc!=SQLITE_OK ) return rc; } assert( pPager->eState>=PAGER_WRITER_CACHEMOD ); assert( assert_pager_state(pPager) ); /* Mark the page that is about to be modified as dirty. */ sqlite3PcacheMakeDirty(pPg); /* If a rollback journal is in use, them make sure the page that is about ** to change is in the rollback journal, or if the page is a new page off ** then end of the file, make sure it is marked as PGHDR_NEED_SYNC. */ assert( (pPager->pInJournal!=0) == isOpen(pPager->jfd) ); if( pPager->pInJournal!=0 && sqlite3BitvecTestNotNull(pPager->pInJournal, pPg->pgno)==0 ){ assert( pagerUseWal(pPager)==0 ); if( pPg->pgno<=pPager->dbOrigSize ){ rc = pagerAddPageToRollbackJournal(pPg); if( rc!=SQLITE_OK ){ return rc; } }else{ if( pPager->eState!=PAGER_WRITER_DBMOD ){ pPg->flags |= PGHDR_NEED_SYNC; } PAGERTRACE(("APPEND %d page %d needSync=%d\n", PAGERID(pPager), pPg->pgno, ((pPg->flags&PGHDR_NEED_SYNC)?1:0))); } } /* The PGHDR_DIRTY bit is set above when the page was added to the dirty-list ** and before writing the page into the rollback journal. Wait until now, ** after the page has been successfully journalled, before setting the ** PGHDR_WRITEABLE bit that indicates that the page can be safely modified. */ pPg->flags |= PGHDR_WRITEABLE; /* If the statement journal is open and the page is not in it, ** then write the page into the statement journal. */ if( pPager->nSavepoint>0 ){ rc = subjournalPageIfRequired(pPg); } /* Update the database size and return. */ if( pPager->dbSizepgno ){ pPager->dbSize = pPg->pgno; } return rc; } /* ** This is a variant of sqlite3PagerWrite() that runs when the sector size ** is larger than the page size. SQLite makes the (reasonable) assumption that ** all bytes of a sector are written together by hardware. Hence, all bytes of ** a sector need to be journalled in case of a power loss in the middle of ** a write. ** ** Usually, the sector size is less than or equal to the page size, in which ** case pages can be individually written. This routine only runs in the ** exceptional case where the page size is smaller than the sector size. */ static SQLITE_NOINLINE int pagerWriteLargeSector(PgHdr *pPg){ int rc = SQLITE_OK; /* Return code */ Pgno nPageCount; /* Total number of pages in database file */ Pgno pg1; /* First page of the sector pPg is located on. */ int nPage = 0; /* Number of pages starting at pg1 to journal */ int ii; /* Loop counter */ int needSync = 0; /* True if any page has PGHDR_NEED_SYNC */ Pager *pPager = pPg->pPager; /* The pager that owns pPg */ Pgno nPagePerSector = (pPager->sectorSize/pPager->pageSize); /* Set the doNotSpill NOSYNC bit to 1. This is because we cannot allow ** a journal header to be written between the pages journaled by ** this function. */ assert( !MEMDB ); assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)==0 ); pPager->doNotSpill |= SPILLFLAG_NOSYNC; /* This trick assumes that both the page-size and sector-size are ** an integer power of 2. It sets variable pg1 to the identifier ** of the first page of the sector pPg is located on. */ pg1 = ((pPg->pgno-1) & ~(nPagePerSector-1)) + 1; nPageCount = pPager->dbSize; if( pPg->pgno>nPageCount ){ nPage = (pPg->pgno - pg1)+1; }else if( (pg1+nPagePerSector-1)>nPageCount ){ nPage = nPageCount+1-pg1; }else{ nPage = nPagePerSector; } assert(nPage>0); assert(pg1<=pPg->pgno); assert((pg1+nPage)>pPg->pgno); for(ii=0; iipgno || !sqlite3BitvecTest(pPager->pInJournal, pg) ){ if( pg!=PAGER_MJ_PGNO(pPager) ){ rc = sqlite3PagerGet(pPager, pg, &pPage, 0); if( rc==SQLITE_OK ){ rc = pager_write(pPage); if( pPage->flags&PGHDR_NEED_SYNC ){ needSync = 1; } sqlite3PagerUnrefNotNull(pPage); } } }else if( (pPage = sqlite3PagerLookup(pPager, pg))!=0 ){ if( pPage->flags&PGHDR_NEED_SYNC ){ needSync = 1; } sqlite3PagerUnrefNotNull(pPage); } } /* If the PGHDR_NEED_SYNC flag is set for any of the nPage pages ** starting at pg1, then it needs to be set for all of them. Because ** writing to any of these nPage pages may damage the others, the ** journal file must contain sync()ed copies of all of them ** before any of them can be written out to the database file. */ if( rc==SQLITE_OK && needSync ){ assert( !MEMDB ); for(ii=0; iiflags |= PGHDR_NEED_SYNC; sqlite3PagerUnrefNotNull(pPage); } } } assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)!=0 ); pPager->doNotSpill &= ~SPILLFLAG_NOSYNC; return rc; } /* ** Mark a data page as writeable. This routine must be called before ** making changes to a page. The caller must check the return value ** of this function and be careful not to change any page data unless ** this routine returns SQLITE_OK. ** ** The difference between this function and pager_write() is that this ** function also deals with the special case where 2 or more pages ** fit on a single disk sector. In this case all co-resident pages ** must have been written to the journal file before returning. ** ** If an error occurs, SQLITE_NOMEM or an IO error code is returned ** as appropriate. Otherwise, SQLITE_OK. */ SQLITE_PRIVATE int sqlite3PagerWrite(PgHdr *pPg){ Pager *pPager = pPg->pPager; assert( (pPg->flags & PGHDR_MMAP)==0 ); assert( pPager->eState>=PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); if( (pPg->flags & PGHDR_WRITEABLE)!=0 && pPager->dbSize>=pPg->pgno ){ if( pPager->nSavepoint ) return subjournalPageIfRequired(pPg); return SQLITE_OK; }else if( pPager->errCode ){ return pPager->errCode; }else if( pPager->sectorSize > (u32)pPager->pageSize ){ assert( pPager->tempFile==0 ); return pagerWriteLargeSector(pPg); }else{ return pager_write(pPg); } } /* ** Return TRUE if the page given in the argument was previously passed ** to sqlite3PagerWrite(). In other words, return TRUE if it is ok ** to change the content of the page. */ #ifndef NDEBUG SQLITE_PRIVATE int sqlite3PagerIswriteable(DbPage *pPg){ return pPg->flags & PGHDR_WRITEABLE; } #endif /* ** A call to this routine tells the pager that it is not necessary to ** write the information on page pPg back to the disk, even though ** that page might be marked as dirty. This happens, for example, when ** the page has been added as a leaf of the freelist and so its ** content no longer matters. ** ** The overlying software layer calls this routine when all of the data ** on the given page is unused. The pager marks the page as clean so ** that it does not get written to disk. ** ** Tests show that this optimization can quadruple the speed of large ** DELETE operations. ** ** This optimization cannot be used with a temp-file, as the page may ** have been dirty at the start of the transaction. In that case, if ** memory pressure forces page pPg out of the cache, the data does need ** to be written out to disk so that it may be read back in if the ** current transaction is rolled back. */ SQLITE_PRIVATE void sqlite3PagerDontWrite(PgHdr *pPg){ Pager *pPager = pPg->pPager; if( !pPager->tempFile && (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ PAGERTRACE(("DONT_WRITE page %d of %d\n", pPg->pgno, PAGERID(pPager))); IOTRACE(("CLEAN %p %d\n", pPager, pPg->pgno)) pPg->flags |= PGHDR_DONT_WRITE; pPg->flags &= ~PGHDR_WRITEABLE; testcase( pPg->flags & PGHDR_NEED_SYNC ); pager_set_pagehash(pPg); } } /* ** This routine is called to increment the value of the database file ** change-counter, stored as a 4-byte big-endian integer starting at ** byte offset 24 of the pager file. The secondary change counter at ** 92 is also updated, as is the SQLite version number at offset 96. ** ** But this only happens if the pPager->changeCountDone flag is false. ** To avoid excess churning of page 1, the update only happens once. ** See also the pager_write_changecounter() routine that does an ** unconditional update of the change counters. ** ** If the isDirectMode flag is zero, then this is done by calling ** sqlite3PagerWrite() on page 1, then modifying the contents of the ** page data. In this case the file will be updated when the current ** transaction is committed. ** ** The isDirectMode flag may only be non-zero if the library was compiled ** with the SQLITE_ENABLE_ATOMIC_WRITE macro defined. In this case, ** if isDirect is non-zero, then the database file is updated directly ** by writing an updated version of page 1 using a call to the ** sqlite3OsWrite() function. */ static int pager_incr_changecounter(Pager *pPager, int isDirectMode){ int rc = SQLITE_OK; assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); /* Declare and initialize constant integer 'isDirect'. If the ** atomic-write optimization is enabled in this build, then isDirect ** is initialized to the value passed as the isDirectMode parameter ** to this function. Otherwise, it is always set to zero. ** ** The idea is that if the atomic-write optimization is not ** enabled at compile time, the compiler can omit the tests of ** 'isDirect' below, as well as the block enclosed in the ** "if( isDirect )" condition. */ #ifndef SQLITE_ENABLE_ATOMIC_WRITE # define DIRECT_MODE 0 assert( isDirectMode==0 ); UNUSED_PARAMETER(isDirectMode); #else # define DIRECT_MODE isDirectMode #endif if( !pPager->changeCountDone && ALWAYS(pPager->dbSize>0) ){ PgHdr *pPgHdr; /* Reference to page 1 */ assert( !pPager->tempFile && isOpen(pPager->fd) ); /* Open page 1 of the file for writing. */ rc = sqlite3PagerGet(pPager, 1, &pPgHdr, 0); assert( pPgHdr==0 || rc==SQLITE_OK ); /* If page one was fetched successfully, and this function is not ** operating in direct-mode, make page 1 writable. When not in ** direct mode, page 1 is always held in cache and hence the PagerGet() ** above is always successful - hence the ALWAYS on rc==SQLITE_OK. */ if( !DIRECT_MODE && ALWAYS(rc==SQLITE_OK) ){ rc = sqlite3PagerWrite(pPgHdr); } if( rc==SQLITE_OK ){ /* Actually do the update of the change counter */ pager_write_changecounter(pPgHdr); /* If running in direct mode, write the contents of page 1 to the file. */ if( DIRECT_MODE ){ const void *zBuf; assert( pPager->dbFileSize>0 ); zBuf = pPgHdr->pData; if( rc==SQLITE_OK ){ rc = sqlite3OsWrite(pPager->fd, zBuf, pPager->pageSize, 0); pPager->aStat[PAGER_STAT_WRITE]++; } if( rc==SQLITE_OK ){ /* Update the pager's copy of the change-counter. Otherwise, the ** next time a read transaction is opened the cache will be ** flushed (as the change-counter values will not match). */ const void *pCopy = (const void *)&((const char *)zBuf)[24]; memcpy(&pPager->dbFileVers, pCopy, sizeof(pPager->dbFileVers)); pPager->changeCountDone = 1; } }else{ pPager->changeCountDone = 1; } } /* Release the page reference. */ sqlite3PagerUnref(pPgHdr); } return rc; } /* ** Sync the database file to disk. This is a no-op for in-memory databases ** or pages with the Pager.noSync flag set. ** ** If successful, or if called on a pager for which it is a no-op, this ** function returns SQLITE_OK. Otherwise, an IO error code is returned. */ SQLITE_PRIVATE int sqlite3PagerSync(Pager *pPager, const char *zSuper){ int rc = SQLITE_OK; void *pArg = (void*)zSuper; rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_SYNC, pArg); if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; if( rc==SQLITE_OK && !pPager->noSync ){ assert( !MEMDB ); rc = sqlite3OsSync(pPager->fd, pPager->syncFlags); } return rc; } /* ** This function may only be called while a write-transaction is active in ** rollback. If the connection is in WAL mode, this call is a no-op. ** Otherwise, if the connection does not already have an EXCLUSIVE lock on ** the database file, an attempt is made to obtain one. ** ** If the EXCLUSIVE lock is already held or the attempt to obtain it is ** successful, or the connection is in WAL mode, SQLITE_OK is returned. ** Otherwise, either SQLITE_BUSY or an SQLITE_IOERR_XXX error code is ** returned. */ SQLITE_PRIVATE int sqlite3PagerExclusiveLock(Pager *pPager){ int rc = pPager->errCode; assert( assert_pager_state(pPager) ); if( rc==SQLITE_OK ){ assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD || pPager->eState==PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); if( 0==pagerUseWal(pPager) ){ rc = pager_wait_on_lock(pPager, EXCLUSIVE_LOCK); } } return rc; } /* ** Sync the database file for the pager pPager. zSuper points to the name ** of a super-journal file that should be written into the individual ** journal file. zSuper may be NULL, which is interpreted as no ** super-journal (a single database transaction). ** ** This routine ensures that: ** ** * The database file change-counter is updated, ** * the journal is synced (unless the atomic-write optimization is used), ** * all dirty pages are written to the database file, ** * the database file is truncated (if required), and ** * the database file synced. ** ** The only thing that remains to commit the transaction is to finalize ** (delete, truncate or zero the first part of) the journal file (or ** delete the super-journal file if specified). ** ** Note that if zSuper==NULL, this does not overwrite a previous value ** passed to an sqlite3PagerCommitPhaseOne() call. ** ** If the final parameter - noSync - is true, then the database file itself ** is not synced. The caller must call sqlite3PagerSync() directly to ** sync the database file before calling CommitPhaseTwo() to delete the ** journal file in this case. */ SQLITE_PRIVATE int sqlite3PagerCommitPhaseOne( Pager *pPager, /* Pager object */ const char *zSuper, /* If not NULL, the super-journal name */ int noSync /* True to omit the xSync on the db file */ ){ int rc = SQLITE_OK; /* Return code */ assert( pPager->eState==PAGER_WRITER_LOCKED || pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD || pPager->eState==PAGER_ERROR ); assert( assert_pager_state(pPager) ); /* If a prior error occurred, report that error again. */ if( NEVER(pPager->errCode) ) return pPager->errCode; /* Provide the ability to easily simulate an I/O error during testing */ if( sqlite3FaultSim(400) ) return SQLITE_IOERR; PAGERTRACE(("DATABASE SYNC: File=%s zSuper=%s nSize=%d\n", pPager->zFilename, zSuper, pPager->dbSize)); /* If no database changes have been made, return early. */ if( pPager->eStatetempFile ); assert( isOpen(pPager->fd) || pPager->tempFile ); if( 0==pagerFlushOnCommit(pPager, 1) ){ /* If this is an in-memory db, or no pages have been written to, or this ** function has already been called, it is mostly a no-op. However, any ** backup in progress needs to be restarted. */ sqlite3BackupRestart(pPager->pBackup); }else{ PgHdr *pList; if( pagerUseWal(pPager) ){ PgHdr *pPageOne = 0; pList = sqlite3PcacheDirtyList(pPager->pPCache); if( pList==0 ){ /* Must have at least one page for the WAL commit flag. ** Ticket [2d1a5c67dfc2363e44f29d9bbd57f] 2011-05-18 */ rc = sqlite3PagerGet(pPager, 1, &pPageOne, 0); pList = pPageOne; pList->pDirty = 0; } assert( rc==SQLITE_OK ); if( ALWAYS(pList) ){ rc = pagerWalFrames(pPager, pList, pPager->dbSize, 1); } sqlite3PagerUnref(pPageOne); if( rc==SQLITE_OK ){ sqlite3PcacheCleanAll(pPager->pPCache); } }else{ /* The bBatch boolean is true if the batch-atomic-write commit method ** should be used. No rollback journal is created if batch-atomic-write ** is enabled. */ #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE sqlite3_file *fd = pPager->fd; int bBatch = zSuper==0 /* An SQLITE_IOCAP_BATCH_ATOMIC commit */ && (sqlite3OsDeviceCharacteristics(fd) & SQLITE_IOCAP_BATCH_ATOMIC) && !pPager->noSync && sqlite3JournalIsInMemory(pPager->jfd); #else # define bBatch 0 #endif #ifdef SQLITE_ENABLE_ATOMIC_WRITE /* The following block updates the change-counter. Exactly how it ** does this depends on whether or not the atomic-update optimization ** was enabled at compile time, and if this transaction meets the ** runtime criteria to use the operation: ** ** * The file-system supports the atomic-write property for ** blocks of size page-size, and ** * This commit is not part of a multi-file transaction, and ** * Exactly one page has been modified and store in the journal file. ** ** If the optimization was not enabled at compile time, then the ** pager_incr_changecounter() function is called to update the change ** counter in 'indirect-mode'. If the optimization is compiled in but ** is not applicable to this transaction, call sqlite3JournalCreate() ** to make sure the journal file has actually been created, then call ** pager_incr_changecounter() to update the change-counter in indirect ** mode. ** ** Otherwise, if the optimization is both enabled and applicable, ** then call pager_incr_changecounter() to update the change-counter ** in 'direct' mode. In this case the journal file will never be ** created for this transaction. */ if( bBatch==0 ){ PgHdr *pPg; assert( isOpen(pPager->jfd) || pPager->journalMode==PAGER_JOURNALMODE_OFF || pPager->journalMode==PAGER_JOURNALMODE_WAL ); if( !zSuper && isOpen(pPager->jfd) && pPager->journalOff==jrnlBufferSize(pPager) && pPager->dbSize>=pPager->dbOrigSize && (!(pPg = sqlite3PcacheDirtyList(pPager->pPCache)) || 0==pPg->pDirty) ){ /* Update the db file change counter via the direct-write method. The ** following call will modify the in-memory representation of page 1 ** to include the updated change counter and then write page 1 ** directly to the database file. Because of the atomic-write ** property of the host file-system, this is safe. */ rc = pager_incr_changecounter(pPager, 1); }else{ rc = sqlite3JournalCreate(pPager->jfd); if( rc==SQLITE_OK ){ rc = pager_incr_changecounter(pPager, 0); } } } #else /* SQLITE_ENABLE_ATOMIC_WRITE */ #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( zSuper ){ rc = sqlite3JournalCreate(pPager->jfd); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; assert( bBatch==0 ); } #endif rc = pager_incr_changecounter(pPager, 0); #endif /* !SQLITE_ENABLE_ATOMIC_WRITE */ if( rc!=SQLITE_OK ) goto commit_phase_one_exit; /* Write the super-journal name into the journal file. If a ** super-journal file name has already been written to the journal file, ** or if zSuper is NULL (no super-journal), then this call is a no-op. */ rc = writeSuperJournal(pPager, zSuper); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; /* Sync the journal file and write all dirty pages to the database. ** If the atomic-update optimization is being used, this sync will not ** create the journal file or perform any real IO. ** ** Because the change-counter page was just modified, unless the ** atomic-update optimization is used it is almost certain that the ** journal requires a sync here. However, in locking_mode=exclusive ** on a system under memory pressure it is just possible that this is ** not the case. In this case it is likely enough that the redundant ** xSync() call will be changed to a no-op by the OS anyhow. */ rc = syncJournal(pPager, 0); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; pList = sqlite3PcacheDirtyList(pPager->pPCache); #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( bBatch ){ rc = sqlite3OsFileControl(fd, SQLITE_FCNTL_BEGIN_ATOMIC_WRITE, 0); if( rc==SQLITE_OK ){ rc = pager_write_pagelist(pPager, pList); if( rc==SQLITE_OK ){ rc = sqlite3OsFileControl(fd, SQLITE_FCNTL_COMMIT_ATOMIC_WRITE, 0); } if( rc!=SQLITE_OK ){ sqlite3OsFileControlHint(fd, SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE, 0); } } if( (rc&0xFF)==SQLITE_IOERR && rc!=SQLITE_IOERR_NOMEM ){ rc = sqlite3JournalCreate(pPager->jfd); if( rc!=SQLITE_OK ){ sqlite3OsClose(pPager->jfd); goto commit_phase_one_exit; } bBatch = 0; }else{ sqlite3OsClose(pPager->jfd); } } #endif /* SQLITE_ENABLE_BATCH_ATOMIC_WRITE */ if( bBatch==0 ){ rc = pager_write_pagelist(pPager, pList); } if( rc!=SQLITE_OK ){ assert( rc!=SQLITE_IOERR_BLOCKED ); goto commit_phase_one_exit; } sqlite3PcacheCleanAll(pPager->pPCache); /* If the file on disk is smaller than the database image, use ** pager_truncate to grow the file here. This can happen if the database ** image was extended as part of the current transaction and then the ** last page in the db image moved to the free-list. In this case the ** last page is never written out to disk, leaving the database file ** undersized. Fix this now if it is the case. */ if( pPager->dbSize>pPager->dbFileSize ){ Pgno nNew = pPager->dbSize - (pPager->dbSize==PAGER_MJ_PGNO(pPager)); assert( pPager->eState==PAGER_WRITER_DBMOD ); rc = pager_truncate(pPager, nNew); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; } /* Finally, sync the database file. */ if( !noSync ){ rc = sqlite3PagerSync(pPager, zSuper); } IOTRACE(("DBSYNC %p\n", pPager)) } } commit_phase_one_exit: if( rc==SQLITE_OK && !pagerUseWal(pPager) ){ pPager->eState = PAGER_WRITER_FINISHED; } return rc; } /* ** When this function is called, the database file has been completely ** updated to reflect the changes made by the current transaction and ** synced to disk. The journal file still exists in the file-system ** though, and if a failure occurs at this point it will eventually ** be used as a hot-journal and the current transaction rolled back. ** ** This function finalizes the journal file, either by deleting, ** truncating or partially zeroing it, so that it cannot be used ** for hot-journal rollback. Once this is done the transaction is ** irrevocably committed. ** ** If an error occurs, an IO error code is returned and the pager ** moves into the error state. Otherwise, SQLITE_OK is returned. */ SQLITE_PRIVATE int sqlite3PagerCommitPhaseTwo(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ /* This routine should not be called if a prior error has occurred. ** But if (due to a coding error elsewhere in the system) it does get ** called, just return the same error code without doing anything. */ if( NEVER(pPager->errCode) ) return pPager->errCode; pPager->iDataVersion++; assert( pPager->eState==PAGER_WRITER_LOCKED || pPager->eState==PAGER_WRITER_FINISHED || (pagerUseWal(pPager) && pPager->eState==PAGER_WRITER_CACHEMOD) ); assert( assert_pager_state(pPager) ); /* An optimization. If the database was not actually modified during ** this transaction, the pager is running in exclusive-mode and is ** using persistent journals, then this function is a no-op. ** ** The start of the journal file currently contains a single journal ** header with the nRec field set to 0. If such a journal is used as ** a hot-journal during hot-journal rollback, 0 changes will be made ** to the database file. So there is no need to zero the journal ** header. Since the pager is in exclusive mode, there is no need ** to drop any locks either. */ if( pPager->eState==PAGER_WRITER_LOCKED && pPager->exclusiveMode && pPager->journalMode==PAGER_JOURNALMODE_PERSIST ){ assert( pPager->journalOff==JOURNAL_HDR_SZ(pPager) || !pPager->journalOff ); pPager->eState = PAGER_READER; return SQLITE_OK; } PAGERTRACE(("COMMIT %d\n", PAGERID(pPager))); rc = pager_end_transaction(pPager, pPager->setSuper, 1); return pager_error(pPager, rc); } /* ** If a write transaction is open, then all changes made within the ** transaction are reverted and the current write-transaction is closed. ** The pager falls back to PAGER_READER state if successful, or PAGER_ERROR ** state if an error occurs. ** ** If the pager is already in PAGER_ERROR state when this function is called, ** it returns Pager.errCode immediately. No work is performed in this case. ** ** Otherwise, in rollback mode, this function performs two functions: ** ** 1) It rolls back the journal file, restoring all database file and ** in-memory cache pages to the state they were in when the transaction ** was opened, and ** ** 2) It finalizes the journal file, so that it is not used for hot ** rollback at any point in the future. ** ** Finalization of the journal file (task 2) is only performed if the ** rollback is successful. ** ** In WAL mode, all cache-entries containing data modified within the ** current transaction are either expelled from the cache or reverted to ** their pre-transaction state by re-reading data from the database or ** WAL files. The WAL transaction is then closed. */ SQLITE_PRIVATE int sqlite3PagerRollback(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ PAGERTRACE(("ROLLBACK %d\n", PAGERID(pPager))); /* PagerRollback() is a no-op if called in READER or OPEN state. If ** the pager is already in the ERROR state, the rollback is not ** attempted here. Instead, the error code is returned to the caller. */ assert( assert_pager_state(pPager) ); if( pPager->eState==PAGER_ERROR ) return pPager->errCode; if( pPager->eState<=PAGER_READER ) return SQLITE_OK; if( pagerUseWal(pPager) ){ int rc2; rc = sqlite3PagerSavepoint(pPager, SAVEPOINT_ROLLBACK, -1); rc2 = pager_end_transaction(pPager, pPager->setSuper, 0); if( rc==SQLITE_OK ) rc = rc2; }else if( !isOpen(pPager->jfd) || pPager->eState==PAGER_WRITER_LOCKED ){ int eState = pPager->eState; rc = pager_end_transaction(pPager, 0, 0); if( !MEMDB && eState>PAGER_WRITER_LOCKED ){ /* This can happen using journal_mode=off. Move the pager to the error ** state to indicate that the contents of the cache may not be trusted. ** Any active readers will get SQLITE_ABORT. */ pPager->errCode = SQLITE_ABORT; pPager->eState = PAGER_ERROR; setGetterMethod(pPager); return rc; } }else{ rc = pager_playback(pPager, 0); } assert( pPager->eState==PAGER_READER || rc!=SQLITE_OK ); assert( rc==SQLITE_OK || rc==SQLITE_FULL || rc==SQLITE_CORRUPT || rc==SQLITE_NOMEM || (rc&0xFF)==SQLITE_IOERR || rc==SQLITE_CANTOPEN ); /* If an error occurs during a ROLLBACK, we can no longer trust the pager ** cache. So call pager_error() on the way out to make any error persistent. */ return pager_error(pPager, rc); } /* ** Return TRUE if the database file is opened read-only. Return FALSE ** if the database is (in theory) writable. */ SQLITE_PRIVATE u8 sqlite3PagerIsreadonly(Pager *pPager){ return pPager->readOnly; } #ifdef SQLITE_DEBUG /* ** Return the sum of the reference counts for all pages held by pPager. */ SQLITE_PRIVATE int sqlite3PagerRefcount(Pager *pPager){ return sqlite3PcacheRefCount(pPager->pPCache); } #endif /* ** Return the approximate number of bytes of memory currently ** used by the pager and its associated cache. */ SQLITE_PRIVATE int sqlite3PagerMemUsed(Pager *pPager){ int perPageSize = pPager->pageSize + pPager->nExtra + (int)(sizeof(PgHdr) + 5*sizeof(void*)); return perPageSize*sqlite3PcachePagecount(pPager->pPCache) + sqlite3MallocSize(pPager) + pPager->pageSize; } /* ** Return the number of references to the specified page. */ SQLITE_PRIVATE int sqlite3PagerPageRefcount(DbPage *pPage){ return sqlite3PcachePageRefcount(pPage); } #ifdef SQLITE_TEST /* ** This routine is used for testing and analysis only. */ SQLITE_PRIVATE int *sqlite3PagerStats(Pager *pPager){ static int a[11]; a[0] = sqlite3PcacheRefCount(pPager->pPCache); a[1] = sqlite3PcachePagecount(pPager->pPCache); a[2] = sqlite3PcacheGetCachesize(pPager->pPCache); a[3] = pPager->eState==PAGER_OPEN ? -1 : (int) pPager->dbSize; a[4] = pPager->eState; a[5] = pPager->errCode; a[6] = pPager->aStat[PAGER_STAT_HIT]; a[7] = pPager->aStat[PAGER_STAT_MISS]; a[8] = 0; /* Used to be pPager->nOvfl */ a[9] = pPager->nRead; a[10] = pPager->aStat[PAGER_STAT_WRITE]; return a; } #endif /* ** Parameter eStat must be one of SQLITE_DBSTATUS_CACHE_HIT, _MISS, _WRITE, ** or _WRITE+1. The SQLITE_DBSTATUS_CACHE_WRITE+1 case is a translation ** of SQLITE_DBSTATUS_CACHE_SPILL. The _SPILL case is not contiguous because ** it was added later. ** ** Before returning, *pnVal is incremented by the ** current cache hit or miss count, according to the value of eStat. If the ** reset parameter is non-zero, the cache hit or miss count is zeroed before ** returning. */ SQLITE_PRIVATE void sqlite3PagerCacheStat(Pager *pPager, int eStat, int reset, int *pnVal){ assert( eStat==SQLITE_DBSTATUS_CACHE_HIT || eStat==SQLITE_DBSTATUS_CACHE_MISS || eStat==SQLITE_DBSTATUS_CACHE_WRITE || eStat==SQLITE_DBSTATUS_CACHE_WRITE+1 ); assert( SQLITE_DBSTATUS_CACHE_HIT+1==SQLITE_DBSTATUS_CACHE_MISS ); assert( SQLITE_DBSTATUS_CACHE_HIT+2==SQLITE_DBSTATUS_CACHE_WRITE ); assert( PAGER_STAT_HIT==0 && PAGER_STAT_MISS==1 && PAGER_STAT_WRITE==2 && PAGER_STAT_SPILL==3 ); eStat -= SQLITE_DBSTATUS_CACHE_HIT; *pnVal += pPager->aStat[eStat]; if( reset ){ pPager->aStat[eStat] = 0; } } /* ** Return true if this is an in-memory or temp-file backed pager. */ SQLITE_PRIVATE int sqlite3PagerIsMemdb(Pager *pPager){ return pPager->tempFile || pPager->memVfs; } /* ** Check that there are at least nSavepoint savepoints open. If there are ** currently less than nSavepoints open, then open one or more savepoints ** to make up the difference. If the number of savepoints is already ** equal to nSavepoint, then this function is a no-op. ** ** If a memory allocation fails, SQLITE_NOMEM is returned. If an error ** occurs while opening the sub-journal file, then an IO error code is ** returned. Otherwise, SQLITE_OK. */ static SQLITE_NOINLINE int pagerOpenSavepoint(Pager *pPager, int nSavepoint){ int rc = SQLITE_OK; /* Return code */ int nCurrent = pPager->nSavepoint; /* Current number of savepoints */ int ii; /* Iterator variable */ PagerSavepoint *aNew; /* New Pager.aSavepoint array */ assert( pPager->eState>=PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); assert( nSavepoint>nCurrent && pPager->useJournal ); /* Grow the Pager.aSavepoint array using realloc(). Return SQLITE_NOMEM ** if the allocation fails. Otherwise, zero the new portion in case a ** malloc failure occurs while populating it in the for(...) loop below. */ aNew = (PagerSavepoint *)sqlite3Realloc( pPager->aSavepoint, sizeof(PagerSavepoint)*nSavepoint ); if( !aNew ){ return SQLITE_NOMEM_BKPT; } memset(&aNew[nCurrent], 0, (nSavepoint-nCurrent) * sizeof(PagerSavepoint)); pPager->aSavepoint = aNew; /* Populate the PagerSavepoint structures just allocated. */ for(ii=nCurrent; iidbSize; if( isOpen(pPager->jfd) && pPager->journalOff>0 ){ aNew[ii].iOffset = pPager->journalOff; }else{ aNew[ii].iOffset = JOURNAL_HDR_SZ(pPager); } aNew[ii].iSubRec = pPager->nSubRec; aNew[ii].pInSavepoint = sqlite3BitvecCreate(pPager->dbSize); aNew[ii].bTruncateOnRelease = 1; if( !aNew[ii].pInSavepoint ){ return SQLITE_NOMEM_BKPT; } if( pagerUseWal(pPager) ){ sqlite3WalSavepoint(pPager->pWal, aNew[ii].aWalData); } pPager->nSavepoint = ii+1; } assert( pPager->nSavepoint==nSavepoint ); assertTruncateConstraint(pPager); return rc; } SQLITE_PRIVATE int sqlite3PagerOpenSavepoint(Pager *pPager, int nSavepoint){ assert( pPager->eState>=PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); if( nSavepoint>pPager->nSavepoint && pPager->useJournal ){ return pagerOpenSavepoint(pPager, nSavepoint); }else{ return SQLITE_OK; } } /* ** This function is called to rollback or release (commit) a savepoint. ** The savepoint to release or rollback need not be the most recently ** created savepoint. ** ** Parameter op is always either SAVEPOINT_ROLLBACK or SAVEPOINT_RELEASE. ** If it is SAVEPOINT_RELEASE, then release and destroy the savepoint with ** index iSavepoint. If it is SAVEPOINT_ROLLBACK, then rollback all changes ** that have occurred since the specified savepoint was created. ** ** The savepoint to rollback or release is identified by parameter ** iSavepoint. A value of 0 means to operate on the outermost savepoint ** (the first created). A value of (Pager.nSavepoint-1) means operate ** on the most recently created savepoint. If iSavepoint is greater than ** (Pager.nSavepoint-1), then this function is a no-op. ** ** If a negative value is passed to this function, then the current ** transaction is rolled back. This is different to calling ** sqlite3PagerRollback() because this function does not terminate ** the transaction or unlock the database, it just restores the ** contents of the database to its original state. ** ** In any case, all savepoints with an index greater than iSavepoint ** are destroyed. If this is a release operation (op==SAVEPOINT_RELEASE), ** then savepoint iSavepoint is also destroyed. ** ** This function may return SQLITE_NOMEM if a memory allocation fails, ** or an IO error code if an IO error occurs while rolling back a ** savepoint. If no errors occur, SQLITE_OK is returned. */ SQLITE_PRIVATE int sqlite3PagerSavepoint(Pager *pPager, int op, int iSavepoint){ int rc = pPager->errCode; #ifdef SQLITE_ENABLE_ZIPVFS if( op==SAVEPOINT_RELEASE ) rc = SQLITE_OK; #endif assert( op==SAVEPOINT_RELEASE || op==SAVEPOINT_ROLLBACK ); assert( iSavepoint>=0 || op==SAVEPOINT_ROLLBACK ); if( rc==SQLITE_OK && iSavepointnSavepoint ){ int ii; /* Iterator variable */ int nNew; /* Number of remaining savepoints after this op. */ /* Figure out how many savepoints will still be active after this ** operation. Store this value in nNew. Then free resources associated ** with any savepoints that are destroyed by this operation. */ nNew = iSavepoint + (( op==SAVEPOINT_RELEASE ) ? 0 : 1); for(ii=nNew; iinSavepoint; ii++){ sqlite3BitvecDestroy(pPager->aSavepoint[ii].pInSavepoint); } pPager->nSavepoint = nNew; /* Truncate the sub-journal so that it only includes the parts ** that are still in use. */ if( op==SAVEPOINT_RELEASE ){ PagerSavepoint *pRel = &pPager->aSavepoint[nNew]; if( pRel->bTruncateOnRelease && isOpen(pPager->sjfd) ){ /* Only truncate if it is an in-memory sub-journal. */ if( sqlite3JournalIsInMemory(pPager->sjfd) ){ i64 sz = (pPager->pageSize+4)*(i64)pRel->iSubRec; rc = sqlite3OsTruncate(pPager->sjfd, sz); assert( rc==SQLITE_OK ); } pPager->nSubRec = pRel->iSubRec; } } /* Else this is a rollback operation, playback the specified savepoint. ** If this is a temp-file, it is possible that the journal file has ** not yet been opened. In this case there have been no changes to ** the database file, so the playback operation can be skipped. */ else if( pagerUseWal(pPager) || isOpen(pPager->jfd) ){ PagerSavepoint *pSavepoint = (nNew==0)?0:&pPager->aSavepoint[nNew-1]; rc = pagerPlaybackSavepoint(pPager, pSavepoint); assert(rc!=SQLITE_DONE); } #ifdef SQLITE_ENABLE_ZIPVFS /* If the cache has been modified but the savepoint cannot be rolled ** back journal_mode=off, put the pager in the error state. This way, ** if the VFS used by this pager includes ZipVFS, the entire transaction ** can be rolled back at the ZipVFS level. */ else if( pPager->journalMode==PAGER_JOURNALMODE_OFF && pPager->eState>=PAGER_WRITER_CACHEMOD ){ pPager->errCode = SQLITE_ABORT; pPager->eState = PAGER_ERROR; setGetterMethod(pPager); } #endif } return rc; } /* ** Return the full pathname of the database file. ** ** Except, if the pager is in-memory only, then return an empty string if ** nullIfMemDb is true. This routine is called with nullIfMemDb==1 when ** used to report the filename to the user, for compatibility with legacy ** behavior. But when the Btree needs to know the filename for matching to ** shared cache, it uses nullIfMemDb==0 so that in-memory databases can ** participate in shared-cache. ** ** The return value to this routine is always safe to use with ** sqlite3_uri_parameter() and sqlite3_filename_database() and friends. */ SQLITE_PRIVATE const char *sqlite3PagerFilename(const Pager *pPager, int nullIfMemDb){ static const char zFake[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; return (nullIfMemDb && pPager->memDb) ? &zFake[4] : pPager->zFilename; } /* ** Return the VFS structure for the pager. */ SQLITE_PRIVATE sqlite3_vfs *sqlite3PagerVfs(Pager *pPager){ return pPager->pVfs; } /* ** Return the file handle for the database file associated ** with the pager. This might return NULL if the file has ** not yet been opened. */ SQLITE_PRIVATE sqlite3_file *sqlite3PagerFile(Pager *pPager){ return pPager->fd; } /* ** Return the file handle for the journal file (if it exists). ** This will be either the rollback journal or the WAL file. */ SQLITE_PRIVATE sqlite3_file *sqlite3PagerJrnlFile(Pager *pPager){ #if SQLITE_OMIT_WAL return pPager->jfd; #else return pPager->pWal ? sqlite3WalFile(pPager->pWal) : pPager->jfd; #endif } /* ** Return the full pathname of the journal file. */ SQLITE_PRIVATE const char *sqlite3PagerJournalname(Pager *pPager){ return pPager->zJournal; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Move the page pPg to location pgno in the file. ** ** There must be no references to the page previously located at ** pgno (which we call pPgOld) though that page is allowed to be ** in cache. If the page previously located at pgno is not already ** in the rollback journal, it is not put there by by this routine. ** ** References to the page pPg remain valid. Updating any ** meta-data associated with pPg (i.e. data stored in the nExtra bytes ** allocated along with the page) is the responsibility of the caller. ** ** A transaction must be active when this routine is called. It used to be ** required that a statement transaction was not active, but this restriction ** has been removed (CREATE INDEX needs to move a page when a statement ** transaction is active). ** ** If the fourth argument, isCommit, is non-zero, then this page is being ** moved as part of a database reorganization just before the transaction ** is being committed. In this case, it is guaranteed that the database page ** pPg refers to will not be written to again within this transaction. ** ** This function may return SQLITE_NOMEM or an IO error code if an error ** occurs. Otherwise, it returns SQLITE_OK. */ SQLITE_PRIVATE int sqlite3PagerMovepage(Pager *pPager, DbPage *pPg, Pgno pgno, int isCommit){ PgHdr *pPgOld; /* The page being overwritten. */ Pgno needSyncPgno = 0; /* Old value of pPg->pgno, if sync is required */ int rc; /* Return code */ Pgno origPgno; /* The original page number */ assert( pPg->nRef>0 ); assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); /* In order to be able to rollback, an in-memory database must journal ** the page we are moving from. */ assert( pPager->tempFile || !MEMDB ); if( pPager->tempFile ){ rc = sqlite3PagerWrite(pPg); if( rc ) return rc; } /* If the page being moved is dirty and has not been saved by the latest ** savepoint, then save the current contents of the page into the ** sub-journal now. This is required to handle the following scenario: ** ** BEGIN; ** ** SAVEPOINT one; ** ** ROLLBACK TO one; ** ** If page X were not written to the sub-journal here, it would not ** be possible to restore its contents when the "ROLLBACK TO one" ** statement were is processed. ** ** subjournalPage() may need to allocate space to store pPg->pgno into ** one or more savepoint bitvecs. This is the reason this function ** may return SQLITE_NOMEM. */ if( (pPg->flags & PGHDR_DIRTY)!=0 && SQLITE_OK!=(rc = subjournalPageIfRequired(pPg)) ){ return rc; } PAGERTRACE(("MOVE %d page %d (needSync=%d) moves to %d\n", PAGERID(pPager), pPg->pgno, (pPg->flags&PGHDR_NEED_SYNC)?1:0, pgno)); IOTRACE(("MOVE %p %d %d\n", pPager, pPg->pgno, pgno)) /* If the journal needs to be sync()ed before page pPg->pgno can ** be written to, store pPg->pgno in local variable needSyncPgno. ** ** If the isCommit flag is set, there is no need to remember that ** the journal needs to be sync()ed before database page pPg->pgno ** can be written to. The caller has already promised not to write to it. */ if( (pPg->flags&PGHDR_NEED_SYNC) && !isCommit ){ needSyncPgno = pPg->pgno; assert( pPager->journalMode==PAGER_JOURNALMODE_OFF || pageInJournal(pPager, pPg) || pPg->pgno>pPager->dbOrigSize ); assert( pPg->flags&PGHDR_DIRTY ); } /* If the cache contains a page with page-number pgno, remove it ** from its hash chain. Also, if the PGHDR_NEED_SYNC flag was set for ** page pgno before the 'move' operation, it needs to be retained ** for the page moved there. */ pPg->flags &= ~PGHDR_NEED_SYNC; pPgOld = sqlite3PagerLookup(pPager, pgno); assert( !pPgOld || pPgOld->nRef==1 || CORRUPT_DB ); if( pPgOld ){ if( NEVER(pPgOld->nRef>1) ){ sqlite3PagerUnrefNotNull(pPgOld); return SQLITE_CORRUPT_BKPT; } pPg->flags |= (pPgOld->flags&PGHDR_NEED_SYNC); if( pPager->tempFile ){ /* Do not discard pages from an in-memory database since we might ** need to rollback later. Just move the page out of the way. */ sqlite3PcacheMove(pPgOld, pPager->dbSize+1); }else{ sqlite3PcacheDrop(pPgOld); } } origPgno = pPg->pgno; sqlite3PcacheMove(pPg, pgno); sqlite3PcacheMakeDirty(pPg); /* For an in-memory database, make sure the original page continues ** to exist, in case the transaction needs to roll back. Use pPgOld ** as the original page since it has already been allocated. */ if( pPager->tempFile && pPgOld ){ sqlite3PcacheMove(pPgOld, origPgno); sqlite3PagerUnrefNotNull(pPgOld); } if( needSyncPgno ){ /* If needSyncPgno is non-zero, then the journal file needs to be ** sync()ed before any data is written to database file page needSyncPgno. ** Currently, no such page exists in the page-cache and the ** "is journaled" bitvec flag has been set. This needs to be remedied by ** loading the page into the pager-cache and setting the PGHDR_NEED_SYNC ** flag. ** ** If the attempt to load the page into the page-cache fails, (due ** to a malloc() or IO failure), clear the bit in the pInJournal[] ** array. Otherwise, if the page is loaded and written again in ** this transaction, it may be written to the database file before ** it is synced into the journal file. This way, it may end up in ** the journal file twice, but that is not a problem. */ PgHdr *pPgHdr; rc = sqlite3PagerGet(pPager, needSyncPgno, &pPgHdr, 0); if( rc!=SQLITE_OK ){ if( needSyncPgno<=pPager->dbOrigSize ){ assert( pPager->pTmpSpace!=0 ); sqlite3BitvecClear(pPager->pInJournal, needSyncPgno, pPager->pTmpSpace); } return rc; } pPgHdr->flags |= PGHDR_NEED_SYNC; sqlite3PcacheMakeDirty(pPgHdr); sqlite3PagerUnrefNotNull(pPgHdr); } return SQLITE_OK; } #endif /* ** The page handle passed as the first argument refers to a dirty page ** with a page number other than iNew. This function changes the page's ** page number to iNew and sets the value of the PgHdr.flags field to ** the value passed as the third parameter. */ SQLITE_PRIVATE void sqlite3PagerRekey(DbPage *pPg, Pgno iNew, u16 flags){ assert( pPg->pgno!=iNew ); pPg->flags = flags; sqlite3PcacheMove(pPg, iNew); } /* ** Return a pointer to the data for the specified page. */ SQLITE_PRIVATE void *sqlite3PagerGetData(DbPage *pPg){ assert( pPg->nRef>0 || pPg->pPager->memDb ); return pPg->pData; } /* ** Return a pointer to the Pager.nExtra bytes of "extra" space ** allocated along with the specified page. */ SQLITE_PRIVATE void *sqlite3PagerGetExtra(DbPage *pPg){ return pPg->pExtra; } /* ** Get/set the locking-mode for this pager. Parameter eMode must be one ** of PAGER_LOCKINGMODE_QUERY, PAGER_LOCKINGMODE_NORMAL or ** PAGER_LOCKINGMODE_EXCLUSIVE. If the parameter is not _QUERY, then ** the locking-mode is set to the value specified. ** ** The returned value is either PAGER_LOCKINGMODE_NORMAL or ** PAGER_LOCKINGMODE_EXCLUSIVE, indicating the current (possibly updated) ** locking-mode. */ SQLITE_PRIVATE int sqlite3PagerLockingMode(Pager *pPager, int eMode){ assert( eMode==PAGER_LOCKINGMODE_QUERY || eMode==PAGER_LOCKINGMODE_NORMAL || eMode==PAGER_LOCKINGMODE_EXCLUSIVE ); assert( PAGER_LOCKINGMODE_QUERY<0 ); assert( PAGER_LOCKINGMODE_NORMAL>=0 && PAGER_LOCKINGMODE_EXCLUSIVE>=0 ); assert( pPager->exclusiveMode || 0==sqlite3WalHeapMemory(pPager->pWal) ); if( eMode>=0 && !pPager->tempFile && !sqlite3WalHeapMemory(pPager->pWal) ){ pPager->exclusiveMode = (u8)eMode; } return (int)pPager->exclusiveMode; } /* ** Set the journal-mode for this pager. Parameter eMode must be one of: ** ** PAGER_JOURNALMODE_DELETE ** PAGER_JOURNALMODE_TRUNCATE ** PAGER_JOURNALMODE_PERSIST ** PAGER_JOURNALMODE_OFF ** PAGER_JOURNALMODE_MEMORY ** PAGER_JOURNALMODE_WAL ** ** The journalmode is set to the value specified if the change is allowed. ** The change may be disallowed for the following reasons: ** ** * An in-memory database can only have its journal_mode set to _OFF ** or _MEMORY. ** ** * Temporary databases cannot have _WAL journalmode. ** ** The returned indicate the current (possibly updated) journal-mode. */ SQLITE_PRIVATE int sqlite3PagerSetJournalMode(Pager *pPager, int eMode){ u8 eOld = pPager->journalMode; /* Prior journalmode */ /* The eMode parameter is always valid */ assert( eMode==PAGER_JOURNALMODE_DELETE /* 0 */ || eMode==PAGER_JOURNALMODE_PERSIST /* 1 */ || eMode==PAGER_JOURNALMODE_OFF /* 2 */ || eMode==PAGER_JOURNALMODE_TRUNCATE /* 3 */ || eMode==PAGER_JOURNALMODE_MEMORY /* 4 */ || eMode==PAGER_JOURNALMODE_WAL /* 5 */ ); /* This routine is only called from the OP_JournalMode opcode, and ** the logic there will never allow a temporary file to be changed ** to WAL mode. */ assert( pPager->tempFile==0 || eMode!=PAGER_JOURNALMODE_WAL ); /* Do allow the journalmode of an in-memory database to be set to ** anything other than MEMORY or OFF */ if( MEMDB ){ assert( eOld==PAGER_JOURNALMODE_MEMORY || eOld==PAGER_JOURNALMODE_OFF ); if( eMode!=PAGER_JOURNALMODE_MEMORY && eMode!=PAGER_JOURNALMODE_OFF ){ eMode = eOld; } } if( eMode!=eOld ){ /* Change the journal mode. */ assert( pPager->eState!=PAGER_ERROR ); pPager->journalMode = (u8)eMode; /* When transistioning from TRUNCATE or PERSIST to any other journal ** mode except WAL, unless the pager is in locking_mode=exclusive mode, ** delete the journal file. */ assert( (PAGER_JOURNALMODE_TRUNCATE & 5)==1 ); assert( (PAGER_JOURNALMODE_PERSIST & 5)==1 ); assert( (PAGER_JOURNALMODE_DELETE & 5)==0 ); assert( (PAGER_JOURNALMODE_MEMORY & 5)==4 ); assert( (PAGER_JOURNALMODE_OFF & 5)==0 ); assert( (PAGER_JOURNALMODE_WAL & 5)==5 ); assert( isOpen(pPager->fd) || pPager->exclusiveMode ); if( !pPager->exclusiveMode && (eOld & 5)==1 && (eMode & 1)==0 ){ /* In this case we would like to delete the journal file. If it is ** not possible, then that is not a problem. Deleting the journal file ** here is an optimization only. ** ** Before deleting the journal file, obtain a RESERVED lock on the ** database file. This ensures that the journal file is not deleted ** while it is in use by some other client. */ sqlite3OsClose(pPager->jfd); if( pPager->eLock>=RESERVED_LOCK ){ sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); }else{ int rc = SQLITE_OK; int state = pPager->eState; assert( state==PAGER_OPEN || state==PAGER_READER ); if( state==PAGER_OPEN ){ rc = sqlite3PagerSharedLock(pPager); } if( pPager->eState==PAGER_READER ){ assert( rc==SQLITE_OK ); rc = pagerLockDb(pPager, RESERVED_LOCK); } if( rc==SQLITE_OK ){ sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); } if( rc==SQLITE_OK && state==PAGER_READER ){ pagerUnlockDb(pPager, SHARED_LOCK); }else if( state==PAGER_OPEN ){ pager_unlock(pPager); } assert( state==pPager->eState ); } }else if( eMode==PAGER_JOURNALMODE_OFF ){ sqlite3OsClose(pPager->jfd); } } /* Return the new journal mode */ return (int)pPager->journalMode; } /* ** Return the current journal mode. */ SQLITE_PRIVATE int sqlite3PagerGetJournalMode(Pager *pPager){ return (int)pPager->journalMode; } /* ** Return TRUE if the pager is in a state where it is OK to change the ** journalmode. Journalmode changes can only happen when the database ** is unmodified. */ SQLITE_PRIVATE int sqlite3PagerOkToChangeJournalMode(Pager *pPager){ assert( assert_pager_state(pPager) ); if( pPager->eState>=PAGER_WRITER_CACHEMOD ) return 0; if( NEVER(isOpen(pPager->jfd) && pPager->journalOff>0) ) return 0; return 1; } /* ** Get/set the size-limit used for persistent journal files. ** ** Setting the size limit to -1 means no limit is enforced. ** An attempt to set a limit smaller than -1 is a no-op. */ SQLITE_PRIVATE i64 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit){ if( iLimit>=-1 ){ pPager->journalSizeLimit = iLimit; sqlite3WalLimit(pPager->pWal, iLimit); } return pPager->journalSizeLimit; } /* ** Return a pointer to the pPager->pBackup variable. The backup module ** in backup.c maintains the content of this variable. This module ** uses it opaquely as an argument to sqlite3BackupRestart() and ** sqlite3BackupUpdate() only. */ SQLITE_PRIVATE sqlite3_backup **sqlite3PagerBackupPtr(Pager *pPager){ return &pPager->pBackup; } #ifndef SQLITE_OMIT_VACUUM /* ** Unless this is an in-memory or temporary database, clear the pager cache. */ SQLITE_PRIVATE void sqlite3PagerClearCache(Pager *pPager){ assert( MEMDB==0 || pPager->tempFile ); if( pPager->tempFile==0 ) pager_reset(pPager); } #endif #ifndef SQLITE_OMIT_WAL /* ** This function is called when the user invokes "PRAGMA wal_checkpoint", ** "PRAGMA wal_blocking_checkpoint" or calls the sqlite3_wal_checkpoint() ** or wal_blocking_checkpoint() API functions. ** ** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. */ SQLITE_PRIVATE int sqlite3PagerCheckpoint( Pager *pPager, /* Checkpoint on this pager */ sqlite3 *db, /* Db handle used to check for interrupts */ int eMode, /* Type of checkpoint */ int *pnLog, /* OUT: Final number of frames in log */ int *pnCkpt /* OUT: Final number of checkpointed frames */ ){ int rc = SQLITE_OK; if( pPager->pWal==0 && pPager->journalMode==PAGER_JOURNALMODE_WAL ){ /* This only happens when a database file is zero bytes in size opened and ** then "PRAGMA journal_mode=WAL" is run and then sqlite3_wal_checkpoint() ** is invoked without any intervening transactions. We need to start ** a transaction to initialize pWal. The PRAGMA table_list statement is ** used for this since it starts transactions on every database file, ** including all ATTACHed databases. This seems expensive for a single ** sqlite3_wal_checkpoint() call, but it happens very rarely. ** https://sqlite.org/forum/forumpost/fd0f19d229156939 */ sqlite3_exec(db, "PRAGMA table_list",0,0,0); } if( pPager->pWal ){ rc = sqlite3WalCheckpoint(pPager->pWal, db, eMode, (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), pPager->pBusyHandlerArg, pPager->walSyncFlags, pPager->pageSize, (u8 *)pPager->pTmpSpace, pnLog, pnCkpt ); } return rc; } SQLITE_PRIVATE int sqlite3PagerWalCallback(Pager *pPager){ return sqlite3WalCallback(pPager->pWal); } /* ** Return true if the underlying VFS for the given pager supports the ** primitives necessary for write-ahead logging. */ SQLITE_PRIVATE int sqlite3PagerWalSupported(Pager *pPager){ const sqlite3_io_methods *pMethods = pPager->fd->pMethods; if( pPager->noLock ) return 0; return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap); } /* ** Attempt to take an exclusive lock on the database file. If a PENDING lock ** is obtained instead, immediately release it. */ static int pagerExclusiveLock(Pager *pPager){ int rc; /* Return code */ assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK ); rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); if( rc!=SQLITE_OK ){ /* If the attempt to grab the exclusive lock failed, release the ** pending lock that may have been obtained instead. */ pagerUnlockDb(pPager, SHARED_LOCK); } return rc; } /* ** Call sqlite3WalOpen() to open the WAL handle. If the pager is in ** exclusive-locking mode when this function is called, take an EXCLUSIVE ** lock on the database file and use heap-memory to store the wal-index ** in. Otherwise, use the normal shared-memory. */ static int pagerOpenWal(Pager *pPager){ int rc = SQLITE_OK; assert( pPager->pWal==0 && pPager->tempFile==0 ); assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK ); /* If the pager is already in exclusive-mode, the WAL module will use ** heap-memory for the wal-index instead of the VFS shared-memory ** implementation. Take the exclusive lock now, before opening the WAL ** file, to make sure this is safe. */ if( pPager->exclusiveMode ){ rc = pagerExclusiveLock(pPager); } /* Open the connection to the log file. If this operation fails, ** (e.g. due to malloc() failure), return an error code. */ if( rc==SQLITE_OK ){ rc = sqlite3WalOpen(pPager->pVfs, pPager->fd, pPager->zWal, pPager->exclusiveMode, pPager->journalSizeLimit, &pPager->pWal ); } pagerFixMaplimit(pPager); return rc; } /* ** The caller must be holding a SHARED lock on the database file to call ** this function. ** ** If the pager passed as the first argument is open on a real database ** file (not a temp file or an in-memory database), and the WAL file ** is not already open, make an attempt to open it now. If successful, ** return SQLITE_OK. If an error occurs or the VFS used by the pager does ** not support the xShmXXX() methods, return an error code. *pbOpen is ** not modified in either case. ** ** If the pager is open on a temp-file (or in-memory database), or if ** the WAL file is already open, set *pbOpen to 1 and return SQLITE_OK ** without doing anything. */ SQLITE_PRIVATE int sqlite3PagerOpenWal( Pager *pPager, /* Pager object */ int *pbOpen /* OUT: Set to true if call is a no-op */ ){ int rc = SQLITE_OK; /* Return code */ assert( assert_pager_state(pPager) ); assert( pPager->eState==PAGER_OPEN || pbOpen ); assert( pPager->eState==PAGER_READER || !pbOpen ); assert( pbOpen==0 || *pbOpen==0 ); assert( pbOpen!=0 || (!pPager->tempFile && !pPager->pWal) ); if( !pPager->tempFile && !pPager->pWal ){ if( !sqlite3PagerWalSupported(pPager) ) return SQLITE_CANTOPEN; /* Close any rollback journal previously open */ sqlite3OsClose(pPager->jfd); rc = pagerOpenWal(pPager); if( rc==SQLITE_OK ){ pPager->journalMode = PAGER_JOURNALMODE_WAL; pPager->eState = PAGER_OPEN; } }else{ *pbOpen = 1; } return rc; } /* ** This function is called to close the connection to the log file prior ** to switching from WAL to rollback mode. ** ** Before closing the log file, this function attempts to take an ** EXCLUSIVE lock on the database file. If this cannot be obtained, an ** error (SQLITE_BUSY) is returned and the log connection is not closed. ** If successful, the EXCLUSIVE lock is not released before returning. */ SQLITE_PRIVATE int sqlite3PagerCloseWal(Pager *pPager, sqlite3 *db){ int rc = SQLITE_OK; assert( pPager->journalMode==PAGER_JOURNALMODE_WAL ); /* If the log file is not already open, but does exist in the file-system, ** it may need to be checkpointed before the connection can switch to ** rollback mode. Open it now so this can happen. */ if( !pPager->pWal ){ int logexists = 0; rc = pagerLockDb(pPager, SHARED_LOCK); if( rc==SQLITE_OK ){ rc = sqlite3OsAccess( pPager->pVfs, pPager->zWal, SQLITE_ACCESS_EXISTS, &logexists ); } if( rc==SQLITE_OK && logexists ){ rc = pagerOpenWal(pPager); } } /* Checkpoint and close the log. Because an EXCLUSIVE lock is held on ** the database file, the log and log-summary files will be deleted. */ if( rc==SQLITE_OK && pPager->pWal ){ rc = pagerExclusiveLock(pPager); if( rc==SQLITE_OK ){ rc = sqlite3WalClose(pPager->pWal, db, pPager->walSyncFlags, pPager->pageSize, (u8*)pPager->pTmpSpace); pPager->pWal = 0; pagerFixMaplimit(pPager); if( rc && !pPager->exclusiveMode ) pagerUnlockDb(pPager, SHARED_LOCK); } } return rc; } #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* ** If pager pPager is a wal-mode database not in exclusive locking mode, ** invoke the sqlite3WalWriteLock() function on the associated Wal object ** with the same db and bLock parameters as were passed to this function. ** Return an SQLite error code if an error occurs, or SQLITE_OK otherwise. */ SQLITE_PRIVATE int sqlite3PagerWalWriteLock(Pager *pPager, int bLock){ int rc = SQLITE_OK; if( pagerUseWal(pPager) && pPager->exclusiveMode==0 ){ rc = sqlite3WalWriteLock(pPager->pWal, bLock); } return rc; } /* ** Set the database handle used by the wal layer to determine if ** blocking locks are required. */ SQLITE_PRIVATE void sqlite3PagerWalDb(Pager *pPager, sqlite3 *db){ if( pagerUseWal(pPager) ){ sqlite3WalDb(pPager->pWal, db); } } #endif #ifdef SQLITE_ENABLE_SNAPSHOT /* ** If this is a WAL database, obtain a snapshot handle for the snapshot ** currently open. Otherwise, return an error. */ SQLITE_PRIVATE int sqlite3PagerSnapshotGet(Pager *pPager, sqlite3_snapshot **ppSnapshot){ int rc = SQLITE_ERROR; if( pPager->pWal ){ rc = sqlite3WalSnapshotGet(pPager->pWal, ppSnapshot); } return rc; } /* ** If this is a WAL database, store a pointer to pSnapshot. Next time a ** read transaction is opened, attempt to read from the snapshot it ** identifies. If this is not a WAL database, return an error. */ SQLITE_PRIVATE int sqlite3PagerSnapshotOpen( Pager *pPager, sqlite3_snapshot *pSnapshot ){ int rc = SQLITE_OK; if( pPager->pWal ){ sqlite3WalSnapshotOpen(pPager->pWal, pSnapshot); }else{ rc = SQLITE_ERROR; } return rc; } /* ** If this is a WAL database, call sqlite3WalSnapshotRecover(). If this ** is not a WAL database, return an error. */ SQLITE_PRIVATE int sqlite3PagerSnapshotRecover(Pager *pPager){ int rc; if( pPager->pWal ){ rc = sqlite3WalSnapshotRecover(pPager->pWal); }else{ rc = SQLITE_ERROR; } return rc; } /* ** The caller currently has a read transaction open on the database. ** If this is not a WAL database, SQLITE_ERROR is returned. Otherwise, ** this function takes a SHARED lock on the CHECKPOINTER slot and then ** checks if the snapshot passed as the second argument is still ** available. If so, SQLITE_OK is returned. ** ** If the snapshot is not available, SQLITE_ERROR is returned. Or, if ** the CHECKPOINTER lock cannot be obtained, SQLITE_BUSY. If any error ** occurs (any value other than SQLITE_OK is returned), the CHECKPOINTER ** lock is released before returning. */ SQLITE_PRIVATE int sqlite3PagerSnapshotCheck(Pager *pPager, sqlite3_snapshot *pSnapshot){ int rc; if( pPager->pWal ){ rc = sqlite3WalSnapshotCheck(pPager->pWal, pSnapshot); }else{ rc = SQLITE_ERROR; } return rc; } /* ** Release a lock obtained by an earlier successful call to ** sqlite3PagerSnapshotCheck(). */ SQLITE_PRIVATE void sqlite3PagerSnapshotUnlock(Pager *pPager){ assert( pPager->pWal ); sqlite3WalSnapshotUnlock(pPager->pWal); } #endif /* SQLITE_ENABLE_SNAPSHOT */ #endif /* !SQLITE_OMIT_WAL */ #ifdef SQLITE_ENABLE_ZIPVFS /* ** A read-lock must be held on the pager when this function is called. If ** the pager is in WAL mode and the WAL file currently contains one or more ** frames, return the size in bytes of the page images stored within the ** WAL frames. Otherwise, if this is not a WAL database or the WAL file ** is empty, return 0. */ SQLITE_PRIVATE int sqlite3PagerWalFramesize(Pager *pPager){ assert( pPager->eState>=PAGER_READER ); return sqlite3WalFramesize(pPager->pWal); } #endif #endif /* SQLITE_OMIT_DISKIO */ /************** End of pager.c ***********************************************/ /************** Begin file wal.c *********************************************/ /* ** 2010 February 1 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains the implementation of a write-ahead log (WAL) used in ** "journal_mode=WAL" mode. ** ** WRITE-AHEAD LOG (WAL) FILE FORMAT ** ** A WAL file consists of a header followed by zero or more "frames". ** Each frame records the revised content of a single page from the ** database file. All changes to the database are recorded by writing ** frames into the WAL. Transactions commit when a frame is written that ** contains a commit marker. A single WAL can and usually does record ** multiple transactions. Periodically, the content of the WAL is ** transferred back into the database file in an operation called a ** "checkpoint". ** ** A single WAL file can be used multiple times. In other words, the ** WAL can fill up with frames and then be checkpointed and then new ** frames can overwrite the old ones. A WAL always grows from beginning ** toward the end. Checksums and counters attached to each frame are ** used to determine which frames within the WAL are valid and which ** are leftovers from prior checkpoints. ** ** The WAL header is 32 bytes in size and consists of the following eight ** big-endian 32-bit unsigned integer values: ** ** 0: Magic number. 0x377f0682 or 0x377f0683 ** 4: File format version. Currently 3007000 ** 8: Database page size. Example: 1024 ** 12: Checkpoint sequence number ** 16: Salt-1, random integer incremented with each checkpoint ** 20: Salt-2, a different random integer changing with each ckpt ** 24: Checksum-1 (first part of checksum for first 24 bytes of header). ** 28: Checksum-2 (second part of checksum for first 24 bytes of header). ** ** Immediately following the wal-header are zero or more frames. Each ** frame consists of a 24-byte frame-header followed by a bytes ** of page data. The frame-header is six big-endian 32-bit unsigned ** integer values, as follows: ** ** 0: Page number. ** 4: For commit records, the size of the database image in pages ** after the commit. For all other records, zero. ** 8: Salt-1 (copied from the header) ** 12: Salt-2 (copied from the header) ** 16: Checksum-1. ** 20: Checksum-2. ** ** A frame is considered valid if and only if the following conditions are ** true: ** ** (1) The salt-1 and salt-2 values in the frame-header match ** salt values in the wal-header ** ** (2) The checksum values in the final 8 bytes of the frame-header ** exactly match the checksum computed consecutively on the ** WAL header and the first 8 bytes and the content of all frames ** up to and including the current frame. ** ** The checksum is computed using 32-bit big-endian integers if the ** magic number in the first 4 bytes of the WAL is 0x377f0683 and it ** is computed using little-endian if the magic number is 0x377f0682. ** The checksum values are always stored in the frame header in a ** big-endian format regardless of which byte order is used to compute ** the checksum. The checksum is computed by interpreting the input as ** an even number of unsigned 32-bit integers: x[0] through x[N]. The ** algorithm used for the checksum is as follows: ** ** for i from 0 to n-1 step 2: ** s0 += x[i] + s1; ** s1 += x[i+1] + s0; ** endfor ** ** Note that s0 and s1 are both weighted checksums using fibonacci weights ** in reverse order (the largest fibonacci weight occurs on the first element ** of the sequence being summed.) The s1 value spans all 32-bit ** terms of the sequence whereas s0 omits the final term. ** ** On a checkpoint, the WAL is first VFS.xSync-ed, then valid content of the ** WAL is transferred into the database, then the database is VFS.xSync-ed. ** The VFS.xSync operations serve as write barriers - all writes launched ** before the xSync must complete before any write that launches after the ** xSync begins. ** ** After each checkpoint, the salt-1 value is incremented and the salt-2 ** value is randomized. This prevents old and new frames in the WAL from ** being considered valid at the same time and being checkpointing together ** following a crash. ** ** READER ALGORITHM ** ** To read a page from the database (call it page number P), a reader ** first checks the WAL to see if it contains page P. If so, then the ** last valid instance of page P that is a followed by a commit frame ** or is a commit frame itself becomes the value read. If the WAL ** contains no copies of page P that are valid and which are a commit ** frame or are followed by a commit frame, then page P is read from ** the database file. ** ** To start a read transaction, the reader records the index of the last ** valid frame in the WAL. The reader uses this recorded "mxFrame" value ** for all subsequent read operations. New transactions can be appended ** to the WAL, but as long as the reader uses its original mxFrame value ** and ignores the newly appended content, it will see a consistent snapshot ** of the database from a single point in time. This technique allows ** multiple concurrent readers to view different versions of the database ** content simultaneously. ** ** The reader algorithm in the previous paragraphs works correctly, but ** because frames for page P can appear anywhere within the WAL, the ** reader has to scan the entire WAL looking for page P frames. If the ** WAL is large (multiple megabytes is typical) that scan can be slow, ** and read performance suffers. To overcome this problem, a separate ** data structure called the wal-index is maintained to expedite the ** search for frames of a particular page. ** ** WAL-INDEX FORMAT ** ** Conceptually, the wal-index is shared memory, though VFS implementations ** might choose to implement the wal-index using a mmapped file. Because ** the wal-index is shared memory, SQLite does not support journal_mode=WAL ** on a network filesystem. All users of the database must be able to ** share memory. ** ** In the default unix and windows implementation, the wal-index is a mmapped ** file whose name is the database name with a "-shm" suffix added. For that ** reason, the wal-index is sometimes called the "shm" file. ** ** The wal-index is transient. After a crash, the wal-index can (and should ** be) reconstructed from the original WAL file. In fact, the VFS is required ** to either truncate or zero the header of the wal-index when the last ** connection to it closes. Because the wal-index is transient, it can ** use an architecture-specific format; it does not have to be cross-platform. ** Hence, unlike the database and WAL file formats which store all values ** as big endian, the wal-index can store multi-byte values in the native ** byte order of the host computer. ** ** The purpose of the wal-index is to answer this question quickly: Given ** a page number P and a maximum frame index M, return the index of the ** last frame in the wal before frame M for page P in the WAL, or return ** NULL if there are no frames for page P in the WAL prior to M. ** ** The wal-index consists of a header region, followed by an one or ** more index blocks. ** ** The wal-index header contains the total number of frames within the WAL ** in the mxFrame field. ** ** Each index block except for the first contains information on ** HASHTABLE_NPAGE frames. The first index block contains information on ** HASHTABLE_NPAGE_ONE frames. The values of HASHTABLE_NPAGE_ONE and ** HASHTABLE_NPAGE are selected so that together the wal-index header and ** first index block are the same size as all other index blocks in the ** wal-index. The values are: ** ** HASHTABLE_NPAGE 4096 ** HASHTABLE_NPAGE_ONE 4062 ** ** Each index block contains two sections, a page-mapping that contains the ** database page number associated with each wal frame, and a hash-table ** that allows readers to query an index block for a specific page number. ** The page-mapping is an array of HASHTABLE_NPAGE (or HASHTABLE_NPAGE_ONE ** for the first index block) 32-bit page numbers. The first entry in the ** first index-block contains the database page number corresponding to the ** first frame in the WAL file. The first entry in the second index block ** in the WAL file corresponds to the (HASHTABLE_NPAGE_ONE+1)th frame in ** the log, and so on. ** ** The last index block in a wal-index usually contains less than the full ** complement of HASHTABLE_NPAGE (or HASHTABLE_NPAGE_ONE) page-numbers, ** depending on the contents of the WAL file. This does not change the ** allocated size of the page-mapping array - the page-mapping array merely ** contains unused entries. ** ** Even without using the hash table, the last frame for page P ** can be found by scanning the page-mapping sections of each index block ** starting with the last index block and moving toward the first, and ** within each index block, starting at the end and moving toward the ** beginning. The first entry that equals P corresponds to the frame ** holding the content for that page. ** ** The hash table consists of HASHTABLE_NSLOT 16-bit unsigned integers. ** HASHTABLE_NSLOT = 2*HASHTABLE_NPAGE, and there is one entry in the ** hash table for each page number in the mapping section, so the hash ** table is never more than half full. The expected number of collisions ** prior to finding a match is 1. Each entry of the hash table is an ** 1-based index of an entry in the mapping section of the same ** index block. Let K be the 1-based index of the largest entry in ** the mapping section. (For index blocks other than the last, K will ** always be exactly HASHTABLE_NPAGE (4096) and for the last index block ** K will be (mxFrame%HASHTABLE_NPAGE).) Unused slots of the hash table ** contain a value of 0. ** ** To look for page P in the hash table, first compute a hash iKey on ** P as follows: ** ** iKey = (P * 383) % HASHTABLE_NSLOT ** ** Then start scanning entries of the hash table, starting with iKey ** (wrapping around to the beginning when the end of the hash table is ** reached) until an unused hash slot is found. Let the first unused slot ** be at index iUnused. (iUnused might be less than iKey if there was ** wrap-around.) Because the hash table is never more than half full, ** the search is guaranteed to eventually hit an unused entry. Let ** iMax be the value between iKey and iUnused, closest to iUnused, ** where aHash[iMax]==P. If there is no iMax entry (if there exists ** no hash slot such that aHash[i]==p) then page P is not in the ** current index block. Otherwise the iMax-th mapping entry of the ** current index block corresponds to the last entry that references ** page P. ** ** A hash search begins with the last index block and moves toward the ** first index block, looking for entries corresponding to page P. On ** average, only two or three slots in each index block need to be ** examined in order to either find the last entry for page P, or to ** establish that no such entry exists in the block. Each index block ** holds over 4000 entries. So two or three index blocks are sufficient ** to cover a typical 10 megabyte WAL file, assuming 1K pages. 8 or 10 ** comparisons (on average) suffice to either locate a frame in the ** WAL or to establish that the frame does not exist in the WAL. This ** is much faster than scanning the entire 10MB WAL. ** ** Note that entries are added in order of increasing K. Hence, one ** reader might be using some value K0 and a second reader that started ** at a later time (after additional transactions were added to the WAL ** and to the wal-index) might be using a different value K1, where K1>K0. ** Both readers can use the same hash table and mapping section to get ** the correct result. There may be entries in the hash table with ** K>K0 but to the first reader, those entries will appear to be unused ** slots in the hash table and so the first reader will get an answer as ** if no values greater than K0 had ever been inserted into the hash table ** in the first place - which is what reader one wants. Meanwhile, the ** second reader using K1 will see additional values that were inserted ** later, which is exactly what reader two wants. ** ** When a rollback occurs, the value of K is decreased. Hash table entries ** that correspond to frames greater than the new K value are removed ** from the hash table at this point. */ #ifndef SQLITE_OMIT_WAL /* #include "wal.h" */ /* ** Trace output macros */ #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) SQLITE_PRIVATE int sqlite3WalTrace = 0; # define WALTRACE(X) if(sqlite3WalTrace) sqlite3DebugPrintf X #else # define WALTRACE(X) #endif /* ** The maximum (and only) versions of the wal and wal-index formats ** that may be interpreted by this version of SQLite. ** ** If a client begins recovering a WAL file and finds that (a) the checksum ** values in the wal-header are correct and (b) the version field is not ** WAL_MAX_VERSION, recovery fails and SQLite returns SQLITE_CANTOPEN. ** ** Similarly, if a client successfully reads a wal-index header (i.e. the ** checksum test is successful) and finds that the version field is not ** WALINDEX_MAX_VERSION, then no read-transaction is opened and SQLite ** returns SQLITE_CANTOPEN. */ #define WAL_MAX_VERSION 3007000 #define WALINDEX_MAX_VERSION 3007000 /* ** Index numbers for various locking bytes. WAL_NREADER is the number ** of available reader locks and should be at least 3. The default ** is SQLITE_SHM_NLOCK==8 and WAL_NREADER==5. ** ** Technically, the various VFSes are free to implement these locks however ** they see fit. However, compatibility is encouraged so that VFSes can ** interoperate. The standard implemention used on both unix and windows ** is for the index number to indicate a byte offset into the ** WalCkptInfo.aLock[] array in the wal-index header. In other words, all ** locks are on the shm file. The WALINDEX_LOCK_OFFSET constant (which ** should be 120) is the location in the shm file for the first locking ** byte. */ #define WAL_WRITE_LOCK 0 #define WAL_ALL_BUT_WRITE 1 #define WAL_CKPT_LOCK 1 #define WAL_RECOVER_LOCK 2 #define WAL_READ_LOCK(I) (3+(I)) #define WAL_NREADER (SQLITE_SHM_NLOCK-3) /* Object declarations */ typedef struct WalIndexHdr WalIndexHdr; typedef struct WalIterator WalIterator; typedef struct WalCkptInfo WalCkptInfo; /* ** The following object holds a copy of the wal-index header content. ** ** The actual header in the wal-index consists of two copies of this ** object followed by one instance of the WalCkptInfo object. ** For all versions of SQLite through 3.10.0 and probably beyond, ** the locking bytes (WalCkptInfo.aLock) start at offset 120 and ** the total header size is 136 bytes. ** ** The szPage value can be any power of 2 between 512 and 32768, inclusive. ** Or it can be 1 to represent a 65536-byte page. The latter case was ** added in 3.7.1 when support for 64K pages was added. */ struct WalIndexHdr { u32 iVersion; /* Wal-index version */ u32 unused; /* Unused (padding) field */ u32 iChange; /* Counter incremented each transaction */ u8 isInit; /* 1 when initialized */ u8 bigEndCksum; /* True if checksums in WAL are big-endian */ u16 szPage; /* Database page size in bytes. 1==64K */ u32 mxFrame; /* Index of last valid frame in the WAL */ u32 nPage; /* Size of database in pages */ u32 aFrameCksum[2]; /* Checksum of last frame in log */ u32 aSalt[2]; /* Two salt values copied from WAL header */ u32 aCksum[2]; /* Checksum over all prior fields */ }; /* ** A copy of the following object occurs in the wal-index immediately ** following the second copy of the WalIndexHdr. This object stores ** information used by checkpoint. ** ** nBackfill is the number of frames in the WAL that have been written ** back into the database. (We call the act of moving content from WAL to ** database "backfilling".) The nBackfill number is never greater than ** WalIndexHdr.mxFrame. nBackfill can only be increased by threads ** holding the WAL_CKPT_LOCK lock (which includes a recovery thread). ** However, a WAL_WRITE_LOCK thread can move the value of nBackfill from ** mxFrame back to zero when the WAL is reset. ** ** nBackfillAttempted is the largest value of nBackfill that a checkpoint ** has attempted to achieve. Normally nBackfill==nBackfillAtempted, however ** the nBackfillAttempted is set before any backfilling is done and the ** nBackfill is only set after all backfilling completes. So if a checkpoint ** crashes, nBackfillAttempted might be larger than nBackfill. The ** WalIndexHdr.mxFrame must never be less than nBackfillAttempted. ** ** The aLock[] field is a set of bytes used for locking. These bytes should ** never be read or written. ** ** There is one entry in aReadMark[] for each reader lock. If a reader ** holds read-lock K, then the value in aReadMark[K] is no greater than ** the mxFrame for that reader. The value READMARK_NOT_USED (0xffffffff) ** for any aReadMark[] means that entry is unused. aReadMark[0] is ** a special case; its value is never used and it exists as a place-holder ** to avoid having to offset aReadMark[] indexs by one. Readers holding ** WAL_READ_LOCK(0) always ignore the entire WAL and read all content ** directly from the database. ** ** The value of aReadMark[K] may only be changed by a thread that ** is holding an exclusive lock on WAL_READ_LOCK(K). Thus, the value of ** aReadMark[K] cannot changed while there is a reader is using that mark ** since the reader will be holding a shared lock on WAL_READ_LOCK(K). ** ** The checkpointer may only transfer frames from WAL to database where ** the frame numbers are less than or equal to every aReadMark[] that is ** in use (that is, every aReadMark[j] for which there is a corresponding ** WAL_READ_LOCK(j)). New readers (usually) pick the aReadMark[] with the ** largest value and will increase an unused aReadMark[] to mxFrame if there ** is not already an aReadMark[] equal to mxFrame. The exception to the ** previous sentence is when nBackfill equals mxFrame (meaning that everything ** in the WAL has been backfilled into the database) then new readers ** will choose aReadMark[0] which has value 0 and hence such reader will ** get all their all content directly from the database file and ignore ** the WAL. ** ** Writers normally append new frames to the end of the WAL. However, ** if nBackfill equals mxFrame (meaning that all WAL content has been ** written back into the database) and if no readers are using the WAL ** (in other words, if there are no WAL_READ_LOCK(i) where i>0) then ** the writer will first "reset" the WAL back to the beginning and start ** writing new content beginning at frame 1. ** ** We assume that 32-bit loads are atomic and so no locks are needed in ** order to read from any aReadMark[] entries. */ struct WalCkptInfo { u32 nBackfill; /* Number of WAL frames backfilled into DB */ u32 aReadMark[WAL_NREADER]; /* Reader marks */ u8 aLock[SQLITE_SHM_NLOCK]; /* Reserved space for locks */ u32 nBackfillAttempted; /* WAL frames perhaps written, or maybe not */ u32 notUsed0; /* Available for future enhancements */ }; #define READMARK_NOT_USED 0xffffffff /* ** This is a schematic view of the complete 136-byte header of the ** wal-index file (also known as the -shm file): ** ** +-----------------------------+ ** 0: | iVersion | \ ** +-----------------------------+ | ** 4: | (unused padding) | | ** +-----------------------------+ | ** 8: | iChange | | ** +-------+-------+-------------+ | ** 12: | bInit | bBig | szPage | | ** +-------+-------+-------------+ | ** 16: | mxFrame | | First copy of the ** +-----------------------------+ | WalIndexHdr object ** 20: | nPage | | ** +-----------------------------+ | ** 24: | aFrameCksum | | ** | | | ** +-----------------------------+ | ** 32: | aSalt | | ** | | | ** +-----------------------------+ | ** 40: | aCksum | | ** | | / ** +-----------------------------+ ** 48: | iVersion | \ ** +-----------------------------+ | ** 52: | (unused padding) | | ** +-----------------------------+ | ** 56: | iChange | | ** +-------+-------+-------------+ | ** 60: | bInit | bBig | szPage | | ** +-------+-------+-------------+ | Second copy of the ** 64: | mxFrame | | WalIndexHdr ** +-----------------------------+ | ** 68: | nPage | | ** +-----------------------------+ | ** 72: | aFrameCksum | | ** | | | ** +-----------------------------+ | ** 80: | aSalt | | ** | | | ** +-----------------------------+ | ** 88: | aCksum | | ** | | / ** +-----------------------------+ ** 96: | nBackfill | ** +-----------------------------+ ** 100: | 5 read marks | ** | | ** | | ** | | ** | | ** +-------+-------+------+------+ ** 120: | Write | Ckpt | Rcvr | Rd0 | \ ** +-------+-------+------+------+ ) 8 lock bytes ** | Read1 | Read2 | Rd3 | Rd4 | / ** +-------+-------+------+------+ ** 128: | nBackfillAttempted | ** +-----------------------------+ ** 132: | (unused padding) | ** +-----------------------------+ */ /* A block of WALINDEX_LOCK_RESERVED bytes beginning at ** WALINDEX_LOCK_OFFSET is reserved for locks. Since some systems ** only support mandatory file-locks, we do not read or write data ** from the region of the file on which locks are applied. */ #define WALINDEX_LOCK_OFFSET (sizeof(WalIndexHdr)*2+offsetof(WalCkptInfo,aLock)) #define WALINDEX_HDR_SIZE (sizeof(WalIndexHdr)*2+sizeof(WalCkptInfo)) /* Size of header before each frame in wal */ #define WAL_FRAME_HDRSIZE 24 /* Size of write ahead log header, including checksum. */ #define WAL_HDRSIZE 32 /* WAL magic value. Either this value, or the same value with the least ** significant bit also set (WAL_MAGIC | 0x00000001) is stored in 32-bit ** big-endian format in the first 4 bytes of a WAL file. ** ** If the LSB is set, then the checksums for each frame within the WAL ** file are calculated by treating all data as an array of 32-bit ** big-endian words. Otherwise, they are calculated by interpreting ** all data as 32-bit little-endian words. */ #define WAL_MAGIC 0x377f0682 /* ** Return the offset of frame iFrame in the write-ahead log file, ** assuming a database page size of szPage bytes. The offset returned ** is to the start of the write-ahead log frame-header. */ #define walFrameOffset(iFrame, szPage) ( \ WAL_HDRSIZE + ((iFrame)-1)*(i64)((szPage)+WAL_FRAME_HDRSIZE) \ ) /* ** An open write-ahead log file is represented by an instance of the ** following object. */ struct Wal { sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ sqlite3_file *pDbFd; /* File handle for the database file */ sqlite3_file *pWalFd; /* File handle for WAL file */ u32 iCallback; /* Value to pass to log callback (or 0) */ i64 mxWalSize; /* Truncate WAL to this size upon reset */ int nWiData; /* Size of array apWiData */ int szFirstBlock; /* Size of first block written to WAL file */ volatile u32 **apWiData; /* Pointer to wal-index content in memory */ u32 szPage; /* Database page size */ i16 readLock; /* Which read lock is being held. -1 for none */ u8 syncFlags; /* Flags to use to sync header writes */ u8 exclusiveMode; /* Non-zero if connection is in exclusive mode */ u8 writeLock; /* True if in a write transaction */ u8 ckptLock; /* True if holding a checkpoint lock */ u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */ u8 truncateOnCommit; /* True to truncate WAL file on commit */ u8 syncHeader; /* Fsync the WAL header if true */ u8 padToSectorBoundary; /* Pad transactions out to the next sector */ u8 bShmUnreliable; /* SHM content is read-only and unreliable */ WalIndexHdr hdr; /* Wal-index header for current transaction */ u32 minFrame; /* Ignore wal frames before this one */ u32 iReCksum; /* On commit, recalculate checksums from here */ const char *zWalName; /* Name of WAL file */ u32 nCkpt; /* Checkpoint sequence counter in the wal-header */ #ifdef SQLITE_DEBUG u8 lockError; /* True if a locking error has occurred */ #endif #ifdef SQLITE_ENABLE_SNAPSHOT WalIndexHdr *pSnapshot; /* Start transaction here if not NULL */ #endif #ifdef SQLITE_ENABLE_SETLK_TIMEOUT sqlite3 *db; #endif }; /* ** Candidate values for Wal.exclusiveMode. */ #define WAL_NORMAL_MODE 0 #define WAL_EXCLUSIVE_MODE 1 #define WAL_HEAPMEMORY_MODE 2 /* ** Possible values for WAL.readOnly */ #define WAL_RDWR 0 /* Normal read/write connection */ #define WAL_RDONLY 1 /* The WAL file is readonly */ #define WAL_SHM_RDONLY 2 /* The SHM file is readonly */ /* ** Each page of the wal-index mapping contains a hash-table made up of ** an array of HASHTABLE_NSLOT elements of the following type. */ typedef u16 ht_slot; /* ** This structure is used to implement an iterator that loops through ** all frames in the WAL in database page order. Where two or more frames ** correspond to the same database page, the iterator visits only the ** frame most recently written to the WAL (in other words, the frame with ** the largest index). ** ** The internals of this structure are only accessed by: ** ** walIteratorInit() - Create a new iterator, ** walIteratorNext() - Step an iterator, ** walIteratorFree() - Free an iterator. ** ** This functionality is used by the checkpoint code (see walCheckpoint()). */ struct WalIterator { u32 iPrior; /* Last result returned from the iterator */ int nSegment; /* Number of entries in aSegment[] */ struct WalSegment { int iNext; /* Next slot in aIndex[] not yet returned */ ht_slot *aIndex; /* i0, i1, i2... such that aPgno[iN] ascend */ u32 *aPgno; /* Array of page numbers. */ int nEntry; /* Nr. of entries in aPgno[] and aIndex[] */ int iZero; /* Frame number associated with aPgno[0] */ } aSegment[1]; /* One for every 32KB page in the wal-index */ }; /* ** Define the parameters of the hash tables in the wal-index file. There ** is a hash-table following every HASHTABLE_NPAGE page numbers in the ** wal-index. ** ** Changing any of these constants will alter the wal-index format and ** create incompatibilities. */ #define HASHTABLE_NPAGE 4096 /* Must be power of 2 */ #define HASHTABLE_HASH_1 383 /* Should be prime */ #define HASHTABLE_NSLOT (HASHTABLE_NPAGE*2) /* Must be a power of 2 */ /* ** The block of page numbers associated with the first hash-table in a ** wal-index is smaller than usual. This is so that there is a complete ** hash-table on each aligned 32KB page of the wal-index. */ #define HASHTABLE_NPAGE_ONE (HASHTABLE_NPAGE - (WALINDEX_HDR_SIZE/sizeof(u32))) /* The wal-index is divided into pages of WALINDEX_PGSZ bytes each. */ #define WALINDEX_PGSZ ( \ sizeof(ht_slot)*HASHTABLE_NSLOT + HASHTABLE_NPAGE*sizeof(u32) \ ) /* ** Obtain a pointer to the iPage'th page of the wal-index. The wal-index ** is broken into pages of WALINDEX_PGSZ bytes. Wal-index pages are ** numbered from zero. ** ** If the wal-index is currently smaller the iPage pages then the size ** of the wal-index might be increased, but only if it is safe to do ** so. It is safe to enlarge the wal-index if pWal->writeLock is true ** or pWal->exclusiveMode==WAL_HEAPMEMORY_MODE. ** ** Three possible result scenarios: ** ** (1) rc==SQLITE_OK and *ppPage==Requested-Wal-Index-Page ** (2) rc>=SQLITE_ERROR and *ppPage==NULL ** (3) rc==SQLITE_OK and *ppPage==NULL // only if iPage==0 ** ** Scenario (3) can only occur when pWal->writeLock is false and iPage==0 */ static SQLITE_NOINLINE int walIndexPageRealloc( Wal *pWal, /* The WAL context */ int iPage, /* The page we seek */ volatile u32 **ppPage /* Write the page pointer here */ ){ int rc = SQLITE_OK; /* Enlarge the pWal->apWiData[] array if required */ if( pWal->nWiData<=iPage ){ sqlite3_int64 nByte = sizeof(u32*)*(iPage+1); volatile u32 **apNew; apNew = (volatile u32 **)sqlite3Realloc((void *)pWal->apWiData, nByte); if( !apNew ){ *ppPage = 0; return SQLITE_NOMEM_BKPT; } memset((void*)&apNew[pWal->nWiData], 0, sizeof(u32*)*(iPage+1-pWal->nWiData)); pWal->apWiData = apNew; pWal->nWiData = iPage+1; } /* Request a pointer to the required page from the VFS */ assert( pWal->apWiData[iPage]==0 ); if( pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ){ pWal->apWiData[iPage] = (u32 volatile *)sqlite3MallocZero(WALINDEX_PGSZ); if( !pWal->apWiData[iPage] ) rc = SQLITE_NOMEM_BKPT; }else{ rc = sqlite3OsShmMap(pWal->pDbFd, iPage, WALINDEX_PGSZ, pWal->writeLock, (void volatile **)&pWal->apWiData[iPage] ); assert( pWal->apWiData[iPage]!=0 || rc!=SQLITE_OK || (pWal->writeLock==0 && iPage==0) ); testcase( pWal->apWiData[iPage]==0 && rc==SQLITE_OK ); if( rc==SQLITE_OK ){ if( iPage>0 && sqlite3FaultSim(600) ) rc = SQLITE_NOMEM; }else if( (rc&0xff)==SQLITE_READONLY ){ pWal->readOnly |= WAL_SHM_RDONLY; if( rc==SQLITE_READONLY ){ rc = SQLITE_OK; } } } *ppPage = pWal->apWiData[iPage]; assert( iPage==0 || *ppPage || rc!=SQLITE_OK ); return rc; } static int walIndexPage( Wal *pWal, /* The WAL context */ int iPage, /* The page we seek */ volatile u32 **ppPage /* Write the page pointer here */ ){ if( pWal->nWiData<=iPage || (*ppPage = pWal->apWiData[iPage])==0 ){ return walIndexPageRealloc(pWal, iPage, ppPage); } return SQLITE_OK; } /* ** Return a pointer to the WalCkptInfo structure in the wal-index. */ static volatile WalCkptInfo *walCkptInfo(Wal *pWal){ assert( pWal->nWiData>0 && pWal->apWiData[0] ); return (volatile WalCkptInfo*)&(pWal->apWiData[0][sizeof(WalIndexHdr)/2]); } /* ** Return a pointer to the WalIndexHdr structure in the wal-index. */ static volatile WalIndexHdr *walIndexHdr(Wal *pWal){ assert( pWal->nWiData>0 && pWal->apWiData[0] ); return (volatile WalIndexHdr*)pWal->apWiData[0]; } /* ** The argument to this macro must be of type u32. On a little-endian ** architecture, it returns the u32 value that results from interpreting ** the 4 bytes as a big-endian value. On a big-endian architecture, it ** returns the value that would be produced by interpreting the 4 bytes ** of the input value as a little-endian integer. */ #define BYTESWAP32(x) ( \ (((x)&0x000000FF)<<24) + (((x)&0x0000FF00)<<8) \ + (((x)&0x00FF0000)>>8) + (((x)&0xFF000000)>>24) \ ) /* ** Generate or extend an 8 byte checksum based on the data in ** array aByte[] and the initial values of aIn[0] and aIn[1] (or ** initial values of 0 and 0 if aIn==NULL). ** ** The checksum is written back into aOut[] before returning. ** ** nByte must be a positive multiple of 8. */ static void walChecksumBytes( int nativeCksum, /* True for native byte-order, false for non-native */ u8 *a, /* Content to be checksummed */ int nByte, /* Bytes of content in a[]. Must be a multiple of 8. */ const u32 *aIn, /* Initial checksum value input */ u32 *aOut /* OUT: Final checksum value output */ ){ u32 s1, s2; u32 *aData = (u32 *)a; u32 *aEnd = (u32 *)&a[nByte]; if( aIn ){ s1 = aIn[0]; s2 = aIn[1]; }else{ s1 = s2 = 0; } assert( nByte>=8 ); assert( (nByte&0x00000007)==0 ); assert( nByte<=65536 ); if( nativeCksum ){ do { s1 += *aData++ + s2; s2 += *aData++ + s1; }while( aDataexclusiveMode!=WAL_HEAPMEMORY_MODE ){ sqlite3OsShmBarrier(pWal->pDbFd); } } /* ** Add the SQLITE_NO_TSAN as part of the return-type of a function ** definition as a hint that the function contains constructs that ** might give false-positive TSAN warnings. ** ** See tag-20200519-1. */ #if defined(__clang__) && !defined(SQLITE_NO_TSAN) # define SQLITE_NO_TSAN __attribute__((no_sanitize_thread)) #else # define SQLITE_NO_TSAN #endif /* ** Write the header information in pWal->hdr into the wal-index. ** ** The checksum on pWal->hdr is updated before it is written. */ static SQLITE_NO_TSAN void walIndexWriteHdr(Wal *pWal){ volatile WalIndexHdr *aHdr = walIndexHdr(pWal); const int nCksum = offsetof(WalIndexHdr, aCksum); assert( pWal->writeLock ); pWal->hdr.isInit = 1; pWal->hdr.iVersion = WALINDEX_MAX_VERSION; walChecksumBytes(1, (u8*)&pWal->hdr, nCksum, 0, pWal->hdr.aCksum); /* Possible TSAN false-positive. See tag-20200519-1 */ memcpy((void*)&aHdr[1], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); walShmBarrier(pWal); memcpy((void*)&aHdr[0], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); } /* ** This function encodes a single frame header and writes it to a buffer ** supplied by the caller. A frame-header is made up of a series of ** 4-byte big-endian integers, as follows: ** ** 0: Page number. ** 4: For commit records, the size of the database image in pages ** after the commit. For all other records, zero. ** 8: Salt-1 (copied from the wal-header) ** 12: Salt-2 (copied from the wal-header) ** 16: Checksum-1. ** 20: Checksum-2. */ static void walEncodeFrame( Wal *pWal, /* The write-ahead log */ u32 iPage, /* Database page number for frame */ u32 nTruncate, /* New db size (or 0 for non-commit frames) */ u8 *aData, /* Pointer to page data */ u8 *aFrame /* OUT: Write encoded frame here */ ){ int nativeCksum; /* True for native byte-order checksums */ u32 *aCksum = pWal->hdr.aFrameCksum; assert( WAL_FRAME_HDRSIZE==24 ); sqlite3Put4byte(&aFrame[0], iPage); sqlite3Put4byte(&aFrame[4], nTruncate); if( pWal->iReCksum==0 ){ memcpy(&aFrame[8], pWal->hdr.aSalt, 8); nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); sqlite3Put4byte(&aFrame[16], aCksum[0]); sqlite3Put4byte(&aFrame[20], aCksum[1]); }else{ memset(&aFrame[8], 0, 16); } } /* ** Check to see if the frame with header in aFrame[] and content ** in aData[] is valid. If it is a valid frame, fill *piPage and ** *pnTruncate and return true. Return if the frame is not valid. */ static int walDecodeFrame( Wal *pWal, /* The write-ahead log */ u32 *piPage, /* OUT: Database page number for frame */ u32 *pnTruncate, /* OUT: New db size (or 0 if not commit) */ u8 *aData, /* Pointer to page data (for checksum) */ u8 *aFrame /* Frame data */ ){ int nativeCksum; /* True for native byte-order checksums */ u32 *aCksum = pWal->hdr.aFrameCksum; u32 pgno; /* Page number of the frame */ assert( WAL_FRAME_HDRSIZE==24 ); /* A frame is only valid if the salt values in the frame-header ** match the salt values in the wal-header. */ if( memcmp(&pWal->hdr.aSalt, &aFrame[8], 8)!=0 ){ return 0; } /* A frame is only valid if the page number is creater than zero. */ pgno = sqlite3Get4byte(&aFrame[0]); if( pgno==0 ){ return 0; } /* A frame is only valid if a checksum of the WAL header, ** all prior frams, the first 16 bytes of this frame-header, ** and the frame-data matches the checksum in the last 8 ** bytes of this frame-header. */ nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); if( aCksum[0]!=sqlite3Get4byte(&aFrame[16]) || aCksum[1]!=sqlite3Get4byte(&aFrame[20]) ){ /* Checksum failed. */ return 0; } /* If we reach this point, the frame is valid. Return the page number ** and the new database size. */ *piPage = pgno; *pnTruncate = sqlite3Get4byte(&aFrame[4]); return 1; } #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) /* ** Names of locks. This routine is used to provide debugging output and is not ** a part of an ordinary build. */ static const char *walLockName(int lockIdx){ if( lockIdx==WAL_WRITE_LOCK ){ return "WRITE-LOCK"; }else if( lockIdx==WAL_CKPT_LOCK ){ return "CKPT-LOCK"; }else if( lockIdx==WAL_RECOVER_LOCK ){ return "RECOVER-LOCK"; }else{ static char zName[15]; sqlite3_snprintf(sizeof(zName), zName, "READ-LOCK[%d]", lockIdx-WAL_READ_LOCK(0)); return zName; } } #endif /*defined(SQLITE_TEST) || defined(SQLITE_DEBUG) */ /* ** Set or release locks on the WAL. Locks are either shared or exclusive. ** A lock cannot be moved directly between shared and exclusive - it must go ** through the unlocked state first. ** ** In locking_mode=EXCLUSIVE, all of these routines become no-ops. */ static int walLockShared(Wal *pWal, int lockIdx){ int rc; if( pWal->exclusiveMode ) return SQLITE_OK; rc = sqlite3OsShmLock(pWal->pDbFd, lockIdx, 1, SQLITE_SHM_LOCK | SQLITE_SHM_SHARED); WALTRACE(("WAL%p: acquire SHARED-%s %s\n", pWal, walLockName(lockIdx), rc ? "failed" : "ok")); VVA_ONLY( pWal->lockError = (u8)(rc!=SQLITE_OK && (rc&0xFF)!=SQLITE_BUSY); ) return rc; } static void walUnlockShared(Wal *pWal, int lockIdx){ if( pWal->exclusiveMode ) return; (void)sqlite3OsShmLock(pWal->pDbFd, lockIdx, 1, SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED); WALTRACE(("WAL%p: release SHARED-%s\n", pWal, walLockName(lockIdx))); } static int walLockExclusive(Wal *pWal, int lockIdx, int n){ int rc; if( pWal->exclusiveMode ) return SQLITE_OK; rc = sqlite3OsShmLock(pWal->pDbFd, lockIdx, n, SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE); WALTRACE(("WAL%p: acquire EXCLUSIVE-%s cnt=%d %s\n", pWal, walLockName(lockIdx), n, rc ? "failed" : "ok")); VVA_ONLY( pWal->lockError = (u8)(rc!=SQLITE_OK && (rc&0xFF)!=SQLITE_BUSY); ) return rc; } static void walUnlockExclusive(Wal *pWal, int lockIdx, int n){ if( pWal->exclusiveMode ) return; (void)sqlite3OsShmLock(pWal->pDbFd, lockIdx, n, SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE); WALTRACE(("WAL%p: release EXCLUSIVE-%s cnt=%d\n", pWal, walLockName(lockIdx), n)); } /* ** Compute a hash on a page number. The resulting hash value must land ** between 0 and (HASHTABLE_NSLOT-1). The walHashNext() function advances ** the hash to the next value in the event of a collision. */ static int walHash(u32 iPage){ assert( iPage>0 ); assert( (HASHTABLE_NSLOT & (HASHTABLE_NSLOT-1))==0 ); return (iPage*HASHTABLE_HASH_1) & (HASHTABLE_NSLOT-1); } static int walNextHash(int iPriorHash){ return (iPriorHash+1)&(HASHTABLE_NSLOT-1); } /* ** An instance of the WalHashLoc object is used to describe the location ** of a page hash table in the wal-index. This becomes the return value ** from walHashGet(). */ typedef struct WalHashLoc WalHashLoc; struct WalHashLoc { volatile ht_slot *aHash; /* Start of the wal-index hash table */ volatile u32 *aPgno; /* aPgno[1] is the page of first frame indexed */ u32 iZero; /* One less than the frame number of first indexed*/ }; /* ** Return pointers to the hash table and page number array stored on ** page iHash of the wal-index. The wal-index is broken into 32KB pages ** numbered starting from 0. ** ** Set output variable pLoc->aHash to point to the start of the hash table ** in the wal-index file. Set pLoc->iZero to one less than the frame ** number of the first frame indexed by this hash table. If a ** slot in the hash table is set to N, it refers to frame number ** (pLoc->iZero+N) in the log. ** ** Finally, set pLoc->aPgno so that pLoc->aPgno[0] is the page number of the ** first frame indexed by the hash table, frame (pLoc->iZero). */ static int walHashGet( Wal *pWal, /* WAL handle */ int iHash, /* Find the iHash'th table */ WalHashLoc *pLoc /* OUT: Hash table location */ ){ int rc; /* Return code */ rc = walIndexPage(pWal, iHash, &pLoc->aPgno); assert( rc==SQLITE_OK || iHash>0 ); if( pLoc->aPgno ){ pLoc->aHash = (volatile ht_slot *)&pLoc->aPgno[HASHTABLE_NPAGE]; if( iHash==0 ){ pLoc->aPgno = &pLoc->aPgno[WALINDEX_HDR_SIZE/sizeof(u32)]; pLoc->iZero = 0; }else{ pLoc->iZero = HASHTABLE_NPAGE_ONE + (iHash-1)*HASHTABLE_NPAGE; } }else if( NEVER(rc==SQLITE_OK) ){ rc = SQLITE_ERROR; } return rc; } /* ** Return the number of the wal-index page that contains the hash-table ** and page-number array that contain entries corresponding to WAL frame ** iFrame. The wal-index is broken up into 32KB pages. Wal-index pages ** are numbered starting from 0. */ static int walFramePage(u32 iFrame){ int iHash = (iFrame+HASHTABLE_NPAGE-HASHTABLE_NPAGE_ONE-1) / HASHTABLE_NPAGE; assert( (iHash==0 || iFrame>HASHTABLE_NPAGE_ONE) && (iHash>=1 || iFrame<=HASHTABLE_NPAGE_ONE) && (iHash<=1 || iFrame>(HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE)) && (iHash>=2 || iFrame<=HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE) && (iHash<=2 || iFrame>(HASHTABLE_NPAGE_ONE+2*HASHTABLE_NPAGE)) ); assert( iHash>=0 ); return iHash; } /* ** Return the page number associated with frame iFrame in this WAL. */ static u32 walFramePgno(Wal *pWal, u32 iFrame){ int iHash = walFramePage(iFrame); if( iHash==0 ){ return pWal->apWiData[0][WALINDEX_HDR_SIZE/sizeof(u32) + iFrame - 1]; } return pWal->apWiData[iHash][(iFrame-1-HASHTABLE_NPAGE_ONE)%HASHTABLE_NPAGE]; } /* ** Remove entries from the hash table that point to WAL slots greater ** than pWal->hdr.mxFrame. ** ** This function is called whenever pWal->hdr.mxFrame is decreased due ** to a rollback or savepoint. ** ** At most only the hash table containing pWal->hdr.mxFrame needs to be ** updated. Any later hash tables will be automatically cleared when ** pWal->hdr.mxFrame advances to the point where those hash tables are ** actually needed. */ static void walCleanupHash(Wal *pWal){ WalHashLoc sLoc; /* Hash table location */ int iLimit = 0; /* Zero values greater than this */ int nByte; /* Number of bytes to zero in aPgno[] */ int i; /* Used to iterate through aHash[] */ assert( pWal->writeLock ); testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE-1 ); testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE ); testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE+1 ); if( pWal->hdr.mxFrame==0 ) return; /* Obtain pointers to the hash-table and page-number array containing ** the entry that corresponds to frame pWal->hdr.mxFrame. It is guaranteed ** that the page said hash-table and array reside on is already mapped.(1) */ assert( pWal->nWiData>walFramePage(pWal->hdr.mxFrame) ); assert( pWal->apWiData[walFramePage(pWal->hdr.mxFrame)] ); i = walHashGet(pWal, walFramePage(pWal->hdr.mxFrame), &sLoc); if( NEVER(i) ) return; /* Defense-in-depth, in case (1) above is wrong */ /* Zero all hash-table entries that correspond to frame numbers greater ** than pWal->hdr.mxFrame. */ iLimit = pWal->hdr.mxFrame - sLoc.iZero; assert( iLimit>0 ); for(i=0; iiLimit ){ sLoc.aHash[i] = 0; } } /* Zero the entries in the aPgno array that correspond to frames with ** frame numbers greater than pWal->hdr.mxFrame. */ nByte = (int)((char *)sLoc.aHash - (char *)&sLoc.aPgno[iLimit]); assert( nByte>=0 ); memset((void *)&sLoc.aPgno[iLimit], 0, nByte); #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT /* Verify that the every entry in the mapping region is still reachable ** via the hash table even after the cleanup. */ if( iLimit ){ int j; /* Loop counter */ int iKey; /* Hash key */ for(j=0; j=0 ); memset((void*)sLoc.aPgno, 0, nByte); } /* If the entry in aPgno[] is already set, then the previous writer ** must have exited unexpectedly in the middle of a transaction (after ** writing one or more dirty pages to the WAL to free up memory). ** Remove the remnants of that writers uncommitted transaction from ** the hash-table before writing any new entries. */ if( sLoc.aPgno[idx-1] ){ walCleanupHash(pWal); assert( !sLoc.aPgno[idx-1] ); } /* Write the aPgno[] array entry and the hash-table slot. */ nCollide = idx; for(iKey=walHash(iPage); sLoc.aHash[iKey]; iKey=walNextHash(iKey)){ if( (nCollide--)==0 ) return SQLITE_CORRUPT_BKPT; } sLoc.aPgno[idx-1] = iPage; AtomicStore(&sLoc.aHash[iKey], (ht_slot)idx); #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT /* Verify that the number of entries in the hash table exactly equals ** the number of entries in the mapping region. */ { int i; /* Loop counter */ int nEntry = 0; /* Number of entries in the hash table */ for(i=0; ickptLock==1 || pWal->ckptLock==0 ); assert( WAL_ALL_BUT_WRITE==WAL_WRITE_LOCK+1 ); assert( WAL_CKPT_LOCK==WAL_ALL_BUT_WRITE ); assert( pWal->writeLock ); iLock = WAL_ALL_BUT_WRITE + pWal->ckptLock; rc = walLockExclusive(pWal, iLock, WAL_READ_LOCK(0)-iLock); if( rc ){ return rc; } WALTRACE(("WAL%p: recovery begin...\n", pWal)); memset(&pWal->hdr, 0, sizeof(WalIndexHdr)); rc = sqlite3OsFileSize(pWal->pWalFd, &nSize); if( rc!=SQLITE_OK ){ goto recovery_error; } if( nSize>WAL_HDRSIZE ){ u8 aBuf[WAL_HDRSIZE]; /* Buffer to load WAL header into */ u32 *aPrivate = 0; /* Heap copy of *-shm hash being populated */ u8 *aFrame = 0; /* Malloc'd buffer to load entire frame */ int szFrame; /* Number of bytes in buffer aFrame[] */ u8 *aData; /* Pointer to data part of aFrame buffer */ int szPage; /* Page size according to the log */ u32 magic; /* Magic value read from WAL header */ u32 version; /* Magic value read from WAL header */ int isValid; /* True if this frame is valid */ u32 iPg; /* Current 32KB wal-index page */ u32 iLastFrame; /* Last frame in wal, based on nSize alone */ /* Read in the WAL header. */ rc = sqlite3OsRead(pWal->pWalFd, aBuf, WAL_HDRSIZE, 0); if( rc!=SQLITE_OK ){ goto recovery_error; } /* If the database page size is not a power of two, or is greater than ** SQLITE_MAX_PAGE_SIZE, conclude that the WAL file contains no valid ** data. Similarly, if the 'magic' value is invalid, ignore the whole ** WAL file. */ magic = sqlite3Get4byte(&aBuf[0]); szPage = sqlite3Get4byte(&aBuf[8]); if( (magic&0xFFFFFFFE)!=WAL_MAGIC || szPage&(szPage-1) || szPage>SQLITE_MAX_PAGE_SIZE || szPage<512 ){ goto finished; } pWal->hdr.bigEndCksum = (u8)(magic&0x00000001); pWal->szPage = szPage; pWal->nCkpt = sqlite3Get4byte(&aBuf[12]); memcpy(&pWal->hdr.aSalt, &aBuf[16], 8); /* Verify that the WAL header checksum is correct */ walChecksumBytes(pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN, aBuf, WAL_HDRSIZE-2*4, 0, pWal->hdr.aFrameCksum ); if( pWal->hdr.aFrameCksum[0]!=sqlite3Get4byte(&aBuf[24]) || pWal->hdr.aFrameCksum[1]!=sqlite3Get4byte(&aBuf[28]) ){ goto finished; } /* Verify that the version number on the WAL format is one that ** are able to understand */ version = sqlite3Get4byte(&aBuf[4]); if( version!=WAL_MAX_VERSION ){ rc = SQLITE_CANTOPEN_BKPT; goto finished; } /* Malloc a buffer to read frames into. */ szFrame = szPage + WAL_FRAME_HDRSIZE; aFrame = (u8 *)sqlite3_malloc64(szFrame + WALINDEX_PGSZ); if( !aFrame ){ rc = SQLITE_NOMEM_BKPT; goto recovery_error; } aData = &aFrame[WAL_FRAME_HDRSIZE]; aPrivate = (u32*)&aData[szPage]; /* Read all frames from the log file. */ iLastFrame = (nSize - WAL_HDRSIZE) / szFrame; for(iPg=0; iPg<=(u32)walFramePage(iLastFrame); iPg++){ u32 *aShare; u32 iFrame; /* Index of last frame read */ u32 iLast = MIN(iLastFrame, HASHTABLE_NPAGE_ONE+iPg*HASHTABLE_NPAGE); u32 iFirst = 1 + (iPg==0?0:HASHTABLE_NPAGE_ONE+(iPg-1)*HASHTABLE_NPAGE); u32 nHdr, nHdr32; rc = walIndexPage(pWal, iPg, (volatile u32**)&aShare); assert( aShare!=0 || rc!=SQLITE_OK ); if( aShare==0 ) break; pWal->apWiData[iPg] = aPrivate; for(iFrame=iFirst; iFrame<=iLast; iFrame++){ i64 iOffset = walFrameOffset(iFrame, szPage); u32 pgno; /* Database page number for frame */ u32 nTruncate; /* dbsize field from frame header */ /* Read and decode the next log frame. */ rc = sqlite3OsRead(pWal->pWalFd, aFrame, szFrame, iOffset); if( rc!=SQLITE_OK ) break; isValid = walDecodeFrame(pWal, &pgno, &nTruncate, aData, aFrame); if( !isValid ) break; rc = walIndexAppend(pWal, iFrame, pgno); if( NEVER(rc!=SQLITE_OK) ) break; /* If nTruncate is non-zero, this is a commit record. */ if( nTruncate ){ pWal->hdr.mxFrame = iFrame; pWal->hdr.nPage = nTruncate; pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16)); testcase( szPage<=32768 ); testcase( szPage>=65536 ); aFrameCksum[0] = pWal->hdr.aFrameCksum[0]; aFrameCksum[1] = pWal->hdr.aFrameCksum[1]; } } pWal->apWiData[iPg] = aShare; nHdr = (iPg==0 ? WALINDEX_HDR_SIZE : 0); nHdr32 = nHdr / sizeof(u32); #ifndef SQLITE_SAFER_WALINDEX_RECOVERY /* Memcpy() should work fine here, on all reasonable implementations. ** Technically, memcpy() might change the destination to some ** intermediate value before setting to the final value, and that might ** cause a concurrent reader to malfunction. Memcpy() is allowed to ** do that, according to the spec, but no memcpy() implementation that ** we know of actually does that, which is why we say that memcpy() ** is safe for this. Memcpy() is certainly a lot faster. */ memcpy(&aShare[nHdr32], &aPrivate[nHdr32], WALINDEX_PGSZ-nHdr); #else /* In the event that some platform is found for which memcpy() ** changes the destination to some intermediate value before ** setting the final value, this alternative copy routine is ** provided. */ { int i; for(i=nHdr32; ihdr.aFrameCksum[0] = aFrameCksum[0]; pWal->hdr.aFrameCksum[1] = aFrameCksum[1]; walIndexWriteHdr(pWal); /* Reset the checkpoint-header. This is safe because this thread is ** currently holding locks that exclude all other writers and ** checkpointers. Then set the values of read-mark slots 1 through N. */ pInfo = walCkptInfo(pWal); pInfo->nBackfill = 0; pInfo->nBackfillAttempted = pWal->hdr.mxFrame; pInfo->aReadMark[0] = 0; for(i=1; ihdr.mxFrame ){ pInfo->aReadMark[i] = pWal->hdr.mxFrame; }else{ pInfo->aReadMark[i] = READMARK_NOT_USED; } walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); }else if( rc!=SQLITE_BUSY ){ goto recovery_error; } } /* If more than one frame was recovered from the log file, report an ** event via sqlite3_log(). This is to help with identifying performance ** problems caused by applications routinely shutting down without ** checkpointing the log file. */ if( pWal->hdr.nPage ){ sqlite3_log(SQLITE_NOTICE_RECOVER_WAL, "recovered %d frames from WAL file %s", pWal->hdr.mxFrame, pWal->zWalName ); } } recovery_error: WALTRACE(("WAL%p: recovery %s\n", pWal, rc ? "failed" : "ok")); walUnlockExclusive(pWal, iLock, WAL_READ_LOCK(0)-iLock); return rc; } /* ** Close an open wal-index. */ static void walIndexClose(Wal *pWal, int isDelete){ if( pWal->exclusiveMode==WAL_HEAPMEMORY_MODE || pWal->bShmUnreliable ){ int i; for(i=0; inWiData; i++){ sqlite3_free((void *)pWal->apWiData[i]); pWal->apWiData[i] = 0; } } if( pWal->exclusiveMode!=WAL_HEAPMEMORY_MODE ){ sqlite3OsShmUnmap(pWal->pDbFd, isDelete); } } /* ** Open a connection to the WAL file zWalName. The database file must ** already be opened on connection pDbFd. The buffer that zWalName points ** to must remain valid for the lifetime of the returned Wal* handle. ** ** A SHARED lock should be held on the database file when this function ** is called. The purpose of this SHARED lock is to prevent any other ** client from unlinking the WAL or wal-index file. If another process ** were to do this just after this client opened one of these files, the ** system would be badly broken. ** ** If the log file is successfully opened, SQLITE_OK is returned and ** *ppWal is set to point to a new WAL handle. If an error occurs, ** an SQLite error code is returned and *ppWal is left unmodified. */ SQLITE_PRIVATE int sqlite3WalOpen( sqlite3_vfs *pVfs, /* vfs module to open wal and wal-index */ sqlite3_file *pDbFd, /* The open database file */ const char *zWalName, /* Name of the WAL file */ int bNoShm, /* True to run in heap-memory mode */ i64 mxWalSize, /* Truncate WAL to this size on reset */ Wal **ppWal /* OUT: Allocated Wal handle */ ){ int rc; /* Return Code */ Wal *pRet; /* Object to allocate and return */ int flags; /* Flags passed to OsOpen() */ assert( zWalName && zWalName[0] ); assert( pDbFd ); /* Verify the values of various constants. Any changes to the values ** of these constants would result in an incompatible on-disk format ** for the -shm file. Any change that causes one of these asserts to ** fail is a backward compatibility problem, even if the change otherwise ** works. ** ** This table also serves as a helpful cross-reference when trying to ** interpret hex dumps of the -shm file. */ assert( 48 == sizeof(WalIndexHdr) ); assert( 40 == sizeof(WalCkptInfo) ); assert( 120 == WALINDEX_LOCK_OFFSET ); assert( 136 == WALINDEX_HDR_SIZE ); assert( 4096 == HASHTABLE_NPAGE ); assert( 4062 == HASHTABLE_NPAGE_ONE ); assert( 8192 == HASHTABLE_NSLOT ); assert( 383 == HASHTABLE_HASH_1 ); assert( 32768 == WALINDEX_PGSZ ); assert( 8 == SQLITE_SHM_NLOCK ); assert( 5 == WAL_NREADER ); assert( 24 == WAL_FRAME_HDRSIZE ); assert( 32 == WAL_HDRSIZE ); assert( 120 == WALINDEX_LOCK_OFFSET + WAL_WRITE_LOCK ); assert( 121 == WALINDEX_LOCK_OFFSET + WAL_CKPT_LOCK ); assert( 122 == WALINDEX_LOCK_OFFSET + WAL_RECOVER_LOCK ); assert( 123 == WALINDEX_LOCK_OFFSET + WAL_READ_LOCK(0) ); assert( 124 == WALINDEX_LOCK_OFFSET + WAL_READ_LOCK(1) ); assert( 125 == WALINDEX_LOCK_OFFSET + WAL_READ_LOCK(2) ); assert( 126 == WALINDEX_LOCK_OFFSET + WAL_READ_LOCK(3) ); assert( 127 == WALINDEX_LOCK_OFFSET + WAL_READ_LOCK(4) ); /* In the amalgamation, the os_unix.c and os_win.c source files come before ** this source file. Verify that the #defines of the locking byte offsets ** in os_unix.c and os_win.c agree with the WALINDEX_LOCK_OFFSET value. ** For that matter, if the lock offset ever changes from its initial design ** value of 120, we need to know that so there is an assert() to check it. */ #ifdef WIN_SHM_BASE assert( WIN_SHM_BASE==WALINDEX_LOCK_OFFSET ); #endif #ifdef UNIX_SHM_BASE assert( UNIX_SHM_BASE==WALINDEX_LOCK_OFFSET ); #endif /* Allocate an instance of struct Wal to return. */ *ppWal = 0; pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile); if( !pRet ){ return SQLITE_NOMEM_BKPT; } pRet->pVfs = pVfs; pRet->pWalFd = (sqlite3_file *)&pRet[1]; pRet->pDbFd = pDbFd; pRet->readLock = -1; pRet->mxWalSize = mxWalSize; pRet->zWalName = zWalName; pRet->syncHeader = 1; pRet->padToSectorBoundary = 1; pRet->exclusiveMode = (bNoShm ? WAL_HEAPMEMORY_MODE: WAL_NORMAL_MODE); /* Open file handle on the write-ahead log file. */ flags = (SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_WAL); rc = sqlite3OsOpen(pVfs, zWalName, pRet->pWalFd, flags, &flags); if( rc==SQLITE_OK && flags&SQLITE_OPEN_READONLY ){ pRet->readOnly = WAL_RDONLY; } if( rc!=SQLITE_OK ){ walIndexClose(pRet, 0); sqlite3OsClose(pRet->pWalFd); sqlite3_free(pRet); }else{ int iDC = sqlite3OsDeviceCharacteristics(pDbFd); if( iDC & SQLITE_IOCAP_SEQUENTIAL ){ pRet->syncHeader = 0; } if( iDC & SQLITE_IOCAP_POWERSAFE_OVERWRITE ){ pRet->padToSectorBoundary = 0; } *ppWal = pRet; WALTRACE(("WAL%d: opened\n", pRet)); } return rc; } /* ** Change the size to which the WAL file is trucated on each reset. */ SQLITE_PRIVATE void sqlite3WalLimit(Wal *pWal, i64 iLimit){ if( pWal ) pWal->mxWalSize = iLimit; } /* ** Find the smallest page number out of all pages held in the WAL that ** has not been returned by any prior invocation of this method on the ** same WalIterator object. Write into *piFrame the frame index where ** that page was last written into the WAL. Write into *piPage the page ** number. ** ** Return 0 on success. If there are no pages in the WAL with a page ** number larger than *piPage, then return 1. */ static int walIteratorNext( WalIterator *p, /* Iterator */ u32 *piPage, /* OUT: The page number of the next page */ u32 *piFrame /* OUT: Wal frame index of next page */ ){ u32 iMin; /* Result pgno must be greater than iMin */ u32 iRet = 0xFFFFFFFF; /* 0xffffffff is never a valid page number */ int i; /* For looping through segments */ iMin = p->iPrior; assert( iMin<0xffffffff ); for(i=p->nSegment-1; i>=0; i--){ struct WalSegment *pSegment = &p->aSegment[i]; while( pSegment->iNextnEntry ){ u32 iPg = pSegment->aPgno[pSegment->aIndex[pSegment->iNext]]; if( iPg>iMin ){ if( iPgiZero + pSegment->aIndex[pSegment->iNext]; } break; } pSegment->iNext++; } } *piPage = p->iPrior = iRet; return (iRet==0xFFFFFFFF); } /* ** This function merges two sorted lists into a single sorted list. ** ** aLeft[] and aRight[] are arrays of indices. The sort key is ** aContent[aLeft[]] and aContent[aRight[]]. Upon entry, the following ** is guaranteed for all J0 && nRight>0 ); while( iRight=nRight || aContent[aLeft[iLeft]]=nLeft || aContent[aLeft[iLeft]]>dbpage ); assert( iRight>=nRight || aContent[aRight[iRight]]>dbpage ); } *paRight = aLeft; *pnRight = iOut; memcpy(aLeft, aTmp, sizeof(aTmp[0])*iOut); } /* ** Sort the elements in list aList using aContent[] as the sort key. ** Remove elements with duplicate keys, preferring to keep the ** larger aList[] values. ** ** The aList[] entries are indices into aContent[]. The values in ** aList[] are to be sorted so that for all J0 ); assert( HASHTABLE_NPAGE==(1<<(ArraySize(aSub)-1)) ); for(iList=0; iListaList && p->nList<=(1<aList==&aList[iList&~((2<aList, p->nList, &aMerge, &nMerge, aBuffer); } aSub[iSub].aList = aMerge; aSub[iSub].nList = nMerge; } for(iSub++; iSubnList<=(1<aList==&aList[nList&~((2<aList, p->nList, &aMerge, &nMerge, aBuffer); } } assert( aMerge==aList ); *pnList = nMerge; #ifdef SQLITE_DEBUG { int i; for(i=1; i<*pnList; i++){ assert( aContent[aList[i]] > aContent[aList[i-1]] ); } } #endif } /* ** Free an iterator allocated by walIteratorInit(). */ static void walIteratorFree(WalIterator *p){ sqlite3_free(p); } /* ** Construct a WalInterator object that can be used to loop over all ** pages in the WAL following frame nBackfill in ascending order. Frames ** nBackfill or earlier may be included - excluding them is an optimization ** only. The caller must hold the checkpoint lock. ** ** On success, make *pp point to the newly allocated WalInterator object ** return SQLITE_OK. Otherwise, return an error code. If this routine ** returns an error, the value of *pp is undefined. ** ** The calling routine should invoke walIteratorFree() to destroy the ** WalIterator object when it has finished with it. */ static int walIteratorInit(Wal *pWal, u32 nBackfill, WalIterator **pp){ WalIterator *p; /* Return value */ int nSegment; /* Number of segments to merge */ u32 iLast; /* Last frame in log */ sqlite3_int64 nByte; /* Number of bytes to allocate */ int i; /* Iterator variable */ ht_slot *aTmp; /* Temp space used by merge-sort */ int rc = SQLITE_OK; /* Return Code */ /* This routine only runs while holding the checkpoint lock. And ** it only runs if there is actually content in the log (mxFrame>0). */ assert( pWal->ckptLock && pWal->hdr.mxFrame>0 ); iLast = pWal->hdr.mxFrame; /* Allocate space for the WalIterator object. */ nSegment = walFramePage(iLast) + 1; nByte = sizeof(WalIterator) + (nSegment-1)*sizeof(struct WalSegment) + iLast*sizeof(ht_slot); p = (WalIterator *)sqlite3_malloc64(nByte); if( !p ){ return SQLITE_NOMEM_BKPT; } memset(p, 0, nByte); p->nSegment = nSegment; /* Allocate temporary space used by the merge-sort routine. This block ** of memory will be freed before this function returns. */ aTmp = (ht_slot *)sqlite3_malloc64( sizeof(ht_slot) * (iLast>HASHTABLE_NPAGE?HASHTABLE_NPAGE:iLast) ); if( !aTmp ){ rc = SQLITE_NOMEM_BKPT; } for(i=walFramePage(nBackfill+1); rc==SQLITE_OK && iaSegment[p->nSegment])[sLoc.iZero]; sLoc.iZero++; for(j=0; jaSegment[i].iZero = sLoc.iZero; p->aSegment[i].nEntry = nEntry; p->aSegment[i].aIndex = aIndex; p->aSegment[i].aPgno = (u32 *)sLoc.aPgno; } } sqlite3_free(aTmp); if( rc!=SQLITE_OK ){ walIteratorFree(p); p = 0; } *pp = p; return rc; } #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* ** Attempt to enable blocking locks. Blocking locks are enabled only if (a) ** they are supported by the VFS, and (b) the database handle is configured ** with a busy-timeout. Return 1 if blocking locks are successfully enabled, ** or 0 otherwise. */ static int walEnableBlocking(Wal *pWal){ int res = 0; if( pWal->db ){ int tmout = pWal->db->busyTimeout; if( tmout ){ int rc; rc = sqlite3OsFileControl( pWal->pDbFd, SQLITE_FCNTL_LOCK_TIMEOUT, (void*)&tmout ); res = (rc==SQLITE_OK); } } return res; } /* ** Disable blocking locks. */ static void walDisableBlocking(Wal *pWal){ int tmout = 0; sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_LOCK_TIMEOUT, (void*)&tmout); } /* ** If parameter bLock is true, attempt to enable blocking locks, take ** the WRITER lock, and then disable blocking locks. If blocking locks ** cannot be enabled, no attempt to obtain the WRITER lock is made. Return ** an SQLite error code if an error occurs, or SQLITE_OK otherwise. It is not ** an error if blocking locks can not be enabled. ** ** If the bLock parameter is false and the WRITER lock is held, release it. */ SQLITE_PRIVATE int sqlite3WalWriteLock(Wal *pWal, int bLock){ int rc = SQLITE_OK; assert( pWal->readLock<0 || bLock==0 ); if( bLock ){ assert( pWal->db ); if( walEnableBlocking(pWal) ){ rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); if( rc==SQLITE_OK ){ pWal->writeLock = 1; } walDisableBlocking(pWal); } }else if( pWal->writeLock ){ walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); pWal->writeLock = 0; } return rc; } /* ** Set the database handle used to determine if blocking locks are required. */ SQLITE_PRIVATE void sqlite3WalDb(Wal *pWal, sqlite3 *db){ pWal->db = db; } /* ** Take an exclusive WRITE lock. Blocking if so configured. */ static int walLockWriter(Wal *pWal){ int rc; walEnableBlocking(pWal); rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); walDisableBlocking(pWal); return rc; } #else # define walEnableBlocking(x) 0 # define walDisableBlocking(x) # define walLockWriter(pWal) walLockExclusive((pWal), WAL_WRITE_LOCK, 1) # define sqlite3WalDb(pWal, db) #endif /* ifdef SQLITE_ENABLE_SETLK_TIMEOUT */ /* ** Attempt to obtain the exclusive WAL lock defined by parameters lockIdx and ** n. If the attempt fails and parameter xBusy is not NULL, then it is a ** busy-handler function. Invoke it and retry the lock until either the ** lock is successfully obtained or the busy-handler returns 0. */ static int walBusyLock( Wal *pWal, /* WAL connection */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int lockIdx, /* Offset of first byte to lock */ int n /* Number of bytes to lock */ ){ int rc; do { rc = walLockExclusive(pWal, lockIdx, n); }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT if( rc==SQLITE_BUSY_TIMEOUT ){ walDisableBlocking(pWal); rc = SQLITE_BUSY; } #endif return rc; } /* ** The cache of the wal-index header must be valid to call this function. ** Return the page-size in bytes used by the database. */ static int walPagesize(Wal *pWal){ return (pWal->hdr.szPage&0xfe00) + ((pWal->hdr.szPage&0x0001)<<16); } /* ** The following is guaranteed when this function is called: ** ** a) the WRITER lock is held, ** b) the entire log file has been checkpointed, and ** c) any existing readers are reading exclusively from the database ** file - there are no readers that may attempt to read a frame from ** the log file. ** ** This function updates the shared-memory structures so that the next ** client to write to the database (which may be this one) does so by ** writing frames into the start of the log file. ** ** The value of parameter salt1 is used as the aSalt[1] value in the ** new wal-index header. It should be passed a pseudo-random value (i.e. ** one obtained from sqlite3_randomness()). */ static void walRestartHdr(Wal *pWal, u32 salt1){ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); int i; /* Loop counter */ u32 *aSalt = pWal->hdr.aSalt; /* Big-endian salt values */ pWal->nCkpt++; pWal->hdr.mxFrame = 0; sqlite3Put4byte((u8*)&aSalt[0], 1 + sqlite3Get4byte((u8*)&aSalt[0])); memcpy(&pWal->hdr.aSalt[1], &salt1, 4); walIndexWriteHdr(pWal); AtomicStore(&pInfo->nBackfill, 0); pInfo->nBackfillAttempted = 0; pInfo->aReadMark[1] = 0; for(i=2; iaReadMark[i] = READMARK_NOT_USED; assert( pInfo->aReadMark[0]==0 ); } /* ** Copy as much content as we can from the WAL back into the database file ** in response to an sqlite3_wal_checkpoint() request or the equivalent. ** ** The amount of information copies from WAL to database might be limited ** by active readers. This routine will never overwrite a database page ** that a concurrent reader might be using. ** ** All I/O barrier operations (a.k.a fsyncs) occur in this routine when ** SQLite is in WAL-mode in synchronous=NORMAL. That means that if ** checkpoints are always run by a background thread or background ** process, foreground threads will never block on a lengthy fsync call. ** ** Fsync is called on the WAL before writing content out of the WAL and ** into the database. This ensures that if the new content is persistent ** in the WAL and can be recovered following a power-loss or hard reset. ** ** Fsync is also called on the database file if (and only if) the entire ** WAL content is copied into the database file. This second fsync makes ** it safe to delete the WAL since the new content will persist in the ** database file. ** ** This routine uses and updates the nBackfill field of the wal-index header. ** This is the only routine that will increase the value of nBackfill. ** (A WAL reset or recovery will revert nBackfill to zero, but not increase ** its value.) ** ** The caller must be holding sufficient locks to ensure that no other ** checkpoint is running (in any other thread or process) at the same ** time. */ static int walCheckpoint( Wal *pWal, /* Wal connection */ sqlite3 *db, /* Check for interrupts on this handle */ int eMode, /* One of PASSIVE, FULL or RESTART */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int sync_flags, /* Flags for OsSync() (or 0) */ u8 *zBuf /* Temporary buffer to use */ ){ int rc = SQLITE_OK; /* Return code */ int szPage; /* Database page-size */ WalIterator *pIter = 0; /* Wal iterator context */ u32 iDbpage = 0; /* Next database page to write */ u32 iFrame = 0; /* Wal frame containing data for iDbpage */ u32 mxSafeFrame; /* Max frame that can be backfilled */ u32 mxPage; /* Max database page to write */ int i; /* Loop counter */ volatile WalCkptInfo *pInfo; /* The checkpoint status information */ szPage = walPagesize(pWal); testcase( szPage<=32768 ); testcase( szPage>=65536 ); pInfo = walCkptInfo(pWal); if( pInfo->nBackfillhdr.mxFrame ){ /* EVIDENCE-OF: R-62920-47450 The busy-handler callback is never invoked ** in the SQLITE_CHECKPOINT_PASSIVE mode. */ assert( eMode!=SQLITE_CHECKPOINT_PASSIVE || xBusy==0 ); /* Compute in mxSafeFrame the index of the last frame of the WAL that is ** safe to write into the database. Frames beyond mxSafeFrame might ** overwrite database pages that are in use by active readers and thus ** cannot be backfilled from the WAL. */ mxSafeFrame = pWal->hdr.mxFrame; mxPage = pWal->hdr.nPage; for(i=1; iaReadMark+i); if( mxSafeFrame>y ){ assert( y<=pWal->hdr.mxFrame ); rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); if( rc==SQLITE_OK ){ u32 iMark = (i==1 ? mxSafeFrame : READMARK_NOT_USED); AtomicStore(pInfo->aReadMark+i, iMark); walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); }else if( rc==SQLITE_BUSY ){ mxSafeFrame = y; xBusy = 0; }else{ goto walcheckpoint_out; } } } /* Allocate the iterator */ if( pInfo->nBackfillnBackfill, &pIter); assert( rc==SQLITE_OK || pIter==0 ); } if( pIter && (rc = walBusyLock(pWal,xBusy,pBusyArg,WAL_READ_LOCK(0),1))==SQLITE_OK ){ u32 nBackfill = pInfo->nBackfill; pInfo->nBackfillAttempted = mxSafeFrame; /* Sync the WAL to disk */ rc = sqlite3OsSync(pWal->pWalFd, CKPT_SYNC_FLAGS(sync_flags)); /* If the database may grow as a result of this checkpoint, hint ** about the eventual size of the db file to the VFS layer. */ if( rc==SQLITE_OK ){ i64 nReq = ((i64)mxPage * szPage); i64 nSize; /* Current size of database file */ sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_CKPT_START, 0); rc = sqlite3OsFileSize(pWal->pDbFd, &nSize); if( rc==SQLITE_OK && nSizehdr.mxFrame*szPage)pDbFd, SQLITE_FCNTL_SIZE_HINT,&nReq); } } } /* Iterate through the contents of the WAL, copying data to the db file */ while( rc==SQLITE_OK && 0==walIteratorNext(pIter, &iDbpage, &iFrame) ){ i64 iOffset; assert( walFramePgno(pWal, iFrame)==iDbpage ); if( AtomicLoad(&db->u1.isInterrupted) ){ rc = db->mallocFailed ? SQLITE_NOMEM_BKPT : SQLITE_INTERRUPT; break; } if( iFrame<=nBackfill || iFrame>mxSafeFrame || iDbpage>mxPage ){ continue; } iOffset = walFrameOffset(iFrame, szPage) + WAL_FRAME_HDRSIZE; /* testcase( IS_BIG_INT(iOffset) ); // requires a 4GiB WAL file */ rc = sqlite3OsRead(pWal->pWalFd, zBuf, szPage, iOffset); if( rc!=SQLITE_OK ) break; iOffset = (iDbpage-1)*(i64)szPage; testcase( IS_BIG_INT(iOffset) ); rc = sqlite3OsWrite(pWal->pDbFd, zBuf, szPage, iOffset); if( rc!=SQLITE_OK ) break; } sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_CKPT_DONE, 0); /* If work was actually accomplished... */ if( rc==SQLITE_OK ){ if( mxSafeFrame==walIndexHdr(pWal)->mxFrame ){ i64 szDb = pWal->hdr.nPage*(i64)szPage; testcase( IS_BIG_INT(szDb) ); rc = sqlite3OsTruncate(pWal->pDbFd, szDb); if( rc==SQLITE_OK ){ rc = sqlite3OsSync(pWal->pDbFd, CKPT_SYNC_FLAGS(sync_flags)); } } if( rc==SQLITE_OK ){ AtomicStore(&pInfo->nBackfill, mxSafeFrame); } } /* Release the reader lock held while backfilling */ walUnlockExclusive(pWal, WAL_READ_LOCK(0), 1); } if( rc==SQLITE_BUSY ){ /* Reset the return code so as not to report a checkpoint failure ** just because there are active readers. */ rc = SQLITE_OK; } } /* If this is an SQLITE_CHECKPOINT_RESTART or TRUNCATE operation, and the ** entire wal file has been copied into the database file, then block ** until all readers have finished using the wal file. This ensures that ** the next process to write to the database restarts the wal file. */ if( rc==SQLITE_OK && eMode!=SQLITE_CHECKPOINT_PASSIVE ){ assert( pWal->writeLock ); if( pInfo->nBackfillhdr.mxFrame ){ rc = SQLITE_BUSY; }else if( eMode>=SQLITE_CHECKPOINT_RESTART ){ u32 salt1; sqlite3_randomness(4, &salt1); assert( pInfo->nBackfill==pWal->hdr.mxFrame ); rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); if( rc==SQLITE_OK ){ if( eMode==SQLITE_CHECKPOINT_TRUNCATE ){ /* IMPLEMENTATION-OF: R-44699-57140 This mode works the same way as ** SQLITE_CHECKPOINT_RESTART with the addition that it also ** truncates the log file to zero bytes just prior to a ** successful return. ** ** In theory, it might be safe to do this without updating the ** wal-index header in shared memory, as all subsequent reader or ** writer clients should see that the entire log file has been ** checkpointed and behave accordingly. This seems unsafe though, ** as it would leave the system in a state where the contents of ** the wal-index header do not match the contents of the ** file-system. To avoid this, update the wal-index header to ** indicate that the log file contains zero valid frames. */ walRestartHdr(pWal, salt1); rc = sqlite3OsTruncate(pWal->pWalFd, 0); } walUnlockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); } } } walcheckpoint_out: walIteratorFree(pIter); return rc; } /* ** If the WAL file is currently larger than nMax bytes in size, truncate ** it to exactly nMax bytes. If an error occurs while doing so, ignore it. */ static void walLimitSize(Wal *pWal, i64 nMax){ i64 sz; int rx; sqlite3BeginBenignMalloc(); rx = sqlite3OsFileSize(pWal->pWalFd, &sz); if( rx==SQLITE_OK && (sz > nMax ) ){ rx = sqlite3OsTruncate(pWal->pWalFd, nMax); } sqlite3EndBenignMalloc(); if( rx ){ sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName); } } /* ** Close a connection to a log file. */ SQLITE_PRIVATE int sqlite3WalClose( Wal *pWal, /* Wal to close */ sqlite3 *db, /* For interrupt flag */ int sync_flags, /* Flags to pass to OsSync() (or 0) */ int nBuf, u8 *zBuf /* Buffer of at least nBuf bytes */ ){ int rc = SQLITE_OK; if( pWal ){ int isDelete = 0; /* True to unlink wal and wal-index files */ /* If an EXCLUSIVE lock can be obtained on the database file (using the ** ordinary, rollback-mode locking methods, this guarantees that the ** connection associated with this log file is the only connection to ** the database. In this case checkpoint the database and unlink both ** the wal and wal-index files. ** ** The EXCLUSIVE lock is not released before returning. */ if( zBuf!=0 && SQLITE_OK==(rc = sqlite3OsLock(pWal->pDbFd, SQLITE_LOCK_EXCLUSIVE)) ){ if( pWal->exclusiveMode==WAL_NORMAL_MODE ){ pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; } rc = sqlite3WalCheckpoint(pWal, db, SQLITE_CHECKPOINT_PASSIVE, 0, 0, sync_flags, nBuf, zBuf, 0, 0 ); if( rc==SQLITE_OK ){ int bPersist = -1; sqlite3OsFileControlHint( pWal->pDbFd, SQLITE_FCNTL_PERSIST_WAL, &bPersist ); if( bPersist!=1 ){ /* Try to delete the WAL file if the checkpoint completed and ** fsyned (rc==SQLITE_OK) and if we are not in persistent-wal ** mode (!bPersist) */ isDelete = 1; }else if( pWal->mxWalSize>=0 ){ /* Try to truncate the WAL file to zero bytes if the checkpoint ** completed and fsynced (rc==SQLITE_OK) and we are in persistent ** WAL mode (bPersist) and if the PRAGMA journal_size_limit is a ** non-negative value (pWal->mxWalSize>=0). Note that we truncate ** to zero bytes as truncating to the journal_size_limit might ** leave a corrupt WAL file on disk. */ walLimitSize(pWal, 0); } } } walIndexClose(pWal, isDelete); sqlite3OsClose(pWal->pWalFd); if( isDelete ){ sqlite3BeginBenignMalloc(); sqlite3OsDelete(pWal->pVfs, pWal->zWalName, 0); sqlite3EndBenignMalloc(); } WALTRACE(("WAL%p: closed\n", pWal)); sqlite3_free((void *)pWal->apWiData); sqlite3_free(pWal); } return rc; } /* ** Try to read the wal-index header. Return 0 on success and 1 if ** there is a problem. ** ** The wal-index is in shared memory. Another thread or process might ** be writing the header at the same time this procedure is trying to ** read it, which might result in inconsistency. A dirty read is detected ** by verifying that both copies of the header are the same and also by ** a checksum on the header. ** ** If and only if the read is consistent and the header is different from ** pWal->hdr, then pWal->hdr is updated to the content of the new header ** and *pChanged is set to 1. ** ** If the checksum cannot be verified return non-zero. If the header ** is read successfully and the checksum verified, return zero. */ static SQLITE_NO_TSAN int walIndexTryHdr(Wal *pWal, int *pChanged){ u32 aCksum[2]; /* Checksum on the header content */ WalIndexHdr h1, h2; /* Two copies of the header content */ WalIndexHdr volatile *aHdr; /* Header in shared memory */ /* The first page of the wal-index must be mapped at this point. */ assert( pWal->nWiData>0 && pWal->apWiData[0] ); /* Read the header. This might happen concurrently with a write to the ** same area of shared memory on a different CPU in a SMP, ** meaning it is possible that an inconsistent snapshot is read ** from the file. If this happens, return non-zero. ** ** tag-20200519-1: ** There are two copies of the header at the beginning of the wal-index. ** When reading, read [0] first then [1]. Writes are in the reverse order. ** Memory barriers are used to prevent the compiler or the hardware from ** reordering the reads and writes. TSAN and similar tools can sometimes ** give false-positive warnings about these accesses because the tools do not ** account for the double-read and the memory barrier. The use of mutexes ** here would be problematic as the memory being accessed is potentially ** shared among multiple processes and not all mutex implementions work ** reliably in that environment. */ aHdr = walIndexHdr(pWal); memcpy(&h1, (void *)&aHdr[0], sizeof(h1)); /* Possible TSAN false-positive */ walShmBarrier(pWal); memcpy(&h2, (void *)&aHdr[1], sizeof(h2)); if( memcmp(&h1, &h2, sizeof(h1))!=0 ){ return 1; /* Dirty read */ } if( h1.isInit==0 ){ return 1; /* Malformed header - probably all zeros */ } walChecksumBytes(1, (u8*)&h1, sizeof(h1)-sizeof(h1.aCksum), 0, aCksum); if( aCksum[0]!=h1.aCksum[0] || aCksum[1]!=h1.aCksum[1] ){ return 1; /* Checksum does not match */ } if( memcmp(&pWal->hdr, &h1, sizeof(WalIndexHdr)) ){ *pChanged = 1; memcpy(&pWal->hdr, &h1, sizeof(WalIndexHdr)); pWal->szPage = (pWal->hdr.szPage&0xfe00) + ((pWal->hdr.szPage&0x0001)<<16); testcase( pWal->szPage<=32768 ); testcase( pWal->szPage>=65536 ); } /* The header was successfully read. Return zero. */ return 0; } /* ** This is the value that walTryBeginRead returns when it needs to ** be retried. */ #define WAL_RETRY (-1) /* ** Read the wal-index header from the wal-index and into pWal->hdr. ** If the wal-header appears to be corrupt, try to reconstruct the ** wal-index from the WAL before returning. ** ** Set *pChanged to 1 if the wal-index header value in pWal->hdr is ** changed by this operation. If pWal->hdr is unchanged, set *pChanged ** to 0. ** ** If the wal-index header is successfully read, return SQLITE_OK. ** Otherwise an SQLite error code. */ static int walIndexReadHdr(Wal *pWal, int *pChanged){ int rc; /* Return code */ int badHdr; /* True if a header read failed */ volatile u32 *page0; /* Chunk of wal-index containing header */ /* Ensure that page 0 of the wal-index (the page that contains the ** wal-index header) is mapped. Return early if an error occurs here. */ assert( pChanged ); rc = walIndexPage(pWal, 0, &page0); if( rc!=SQLITE_OK ){ assert( rc!=SQLITE_READONLY ); /* READONLY changed to OK in walIndexPage */ if( rc==SQLITE_READONLY_CANTINIT ){ /* The SQLITE_READONLY_CANTINIT return means that the shared-memory ** was openable but is not writable, and this thread is unable to ** confirm that another write-capable connection has the shared-memory ** open, and hence the content of the shared-memory is unreliable, ** since the shared-memory might be inconsistent with the WAL file ** and there is no writer on hand to fix it. */ assert( page0==0 ); assert( pWal->writeLock==0 ); assert( pWal->readOnly & WAL_SHM_RDONLY ); pWal->bShmUnreliable = 1; pWal->exclusiveMode = WAL_HEAPMEMORY_MODE; *pChanged = 1; }else{ return rc; /* Any other non-OK return is just an error */ } }else{ /* page0 can be NULL if the SHM is zero bytes in size and pWal->writeLock ** is zero, which prevents the SHM from growing */ testcase( page0!=0 ); } assert( page0!=0 || pWal->writeLock==0 ); /* If the first page of the wal-index has been mapped, try to read the ** wal-index header immediately, without holding any lock. This usually ** works, but may fail if the wal-index header is corrupt or currently ** being modified by another thread or process. */ badHdr = (page0 ? walIndexTryHdr(pWal, pChanged) : 1); /* If the first attempt failed, it might have been due to a race ** with a writer. So get a WRITE lock and try again. */ if( badHdr ){ if( pWal->bShmUnreliable==0 && (pWal->readOnly & WAL_SHM_RDONLY) ){ if( SQLITE_OK==(rc = walLockShared(pWal, WAL_WRITE_LOCK)) ){ walUnlockShared(pWal, WAL_WRITE_LOCK); rc = SQLITE_READONLY_RECOVERY; } }else{ int bWriteLock = pWal->writeLock; if( bWriteLock || SQLITE_OK==(rc = walLockWriter(pWal)) ){ pWal->writeLock = 1; if( SQLITE_OK==(rc = walIndexPage(pWal, 0, &page0)) ){ badHdr = walIndexTryHdr(pWal, pChanged); if( badHdr ){ /* If the wal-index header is still malformed even while holding ** a WRITE lock, it can only mean that the header is corrupted and ** needs to be reconstructed. So run recovery to do exactly that. */ rc = walIndexRecover(pWal); *pChanged = 1; } } if( bWriteLock==0 ){ pWal->writeLock = 0; walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); } } } } /* If the header is read successfully, check the version number to make ** sure the wal-index was not constructed with some future format that ** this version of SQLite cannot understand. */ if( badHdr==0 && pWal->hdr.iVersion!=WALINDEX_MAX_VERSION ){ rc = SQLITE_CANTOPEN_BKPT; } if( pWal->bShmUnreliable ){ if( rc!=SQLITE_OK ){ walIndexClose(pWal, 0); pWal->bShmUnreliable = 0; assert( pWal->nWiData>0 && pWal->apWiData[0]==0 ); /* walIndexRecover() might have returned SHORT_READ if a concurrent ** writer truncated the WAL out from under it. If that happens, it ** indicates that a writer has fixed the SHM file for us, so retry */ if( rc==SQLITE_IOERR_SHORT_READ ) rc = WAL_RETRY; } pWal->exclusiveMode = WAL_NORMAL_MODE; } return rc; } /* ** Open a transaction in a connection where the shared-memory is read-only ** and where we cannot verify that there is a separate write-capable connection ** on hand to keep the shared-memory up-to-date with the WAL file. ** ** This can happen, for example, when the shared-memory is implemented by ** memory-mapping a *-shm file, where a prior writer has shut down and ** left the *-shm file on disk, and now the present connection is trying ** to use that database but lacks write permission on the *-shm file. ** Other scenarios are also possible, depending on the VFS implementation. ** ** Precondition: ** ** The *-wal file has been read and an appropriate wal-index has been ** constructed in pWal->apWiData[] using heap memory instead of shared ** memory. ** ** If this function returns SQLITE_OK, then the read transaction has ** been successfully opened. In this case output variable (*pChanged) ** is set to true before returning if the caller should discard the ** contents of the page cache before proceeding. Or, if it returns ** WAL_RETRY, then the heap memory wal-index has been discarded and ** the caller should retry opening the read transaction from the ** beginning (including attempting to map the *-shm file). ** ** If an error occurs, an SQLite error code is returned. */ static int walBeginShmUnreliable(Wal *pWal, int *pChanged){ i64 szWal; /* Size of wal file on disk in bytes */ i64 iOffset; /* Current offset when reading wal file */ u8 aBuf[WAL_HDRSIZE]; /* Buffer to load WAL header into */ u8 *aFrame = 0; /* Malloc'd buffer to load entire frame */ int szFrame; /* Number of bytes in buffer aFrame[] */ u8 *aData; /* Pointer to data part of aFrame buffer */ volatile void *pDummy; /* Dummy argument for xShmMap */ int rc; /* Return code */ u32 aSaveCksum[2]; /* Saved copy of pWal->hdr.aFrameCksum */ assert( pWal->bShmUnreliable ); assert( pWal->readOnly & WAL_SHM_RDONLY ); assert( pWal->nWiData>0 && pWal->apWiData[0] ); /* Take WAL_READ_LOCK(0). This has the effect of preventing any ** writers from running a checkpoint, but does not stop them ** from running recovery. */ rc = walLockShared(pWal, WAL_READ_LOCK(0)); if( rc!=SQLITE_OK ){ if( rc==SQLITE_BUSY ) rc = WAL_RETRY; goto begin_unreliable_shm_out; } pWal->readLock = 0; /* Check to see if a separate writer has attached to the shared-memory area, ** thus making the shared-memory "reliable" again. Do this by invoking ** the xShmMap() routine of the VFS and looking to see if the return ** is SQLITE_READONLY instead of SQLITE_READONLY_CANTINIT. ** ** If the shared-memory is now "reliable" return WAL_RETRY, which will ** cause the heap-memory WAL-index to be discarded and the actual ** shared memory to be used in its place. ** ** This step is important because, even though this connection is holding ** the WAL_READ_LOCK(0) which prevents a checkpoint, a writer might ** have already checkpointed the WAL file and, while the current ** is active, wrap the WAL and start overwriting frames that this ** process wants to use. ** ** Once sqlite3OsShmMap() has been called for an sqlite3_file and has ** returned any SQLITE_READONLY value, it must return only SQLITE_READONLY ** or SQLITE_READONLY_CANTINIT or some error for all subsequent invocations, ** even if some external agent does a "chmod" to make the shared-memory ** writable by us, until sqlite3OsShmUnmap() has been called. ** This is a requirement on the VFS implementation. */ rc = sqlite3OsShmMap(pWal->pDbFd, 0, WALINDEX_PGSZ, 0, &pDummy); assert( rc!=SQLITE_OK ); /* SQLITE_OK not possible for read-only connection */ if( rc!=SQLITE_READONLY_CANTINIT ){ rc = (rc==SQLITE_READONLY ? WAL_RETRY : rc); goto begin_unreliable_shm_out; } /* We reach this point only if the real shared-memory is still unreliable. ** Assume the in-memory WAL-index substitute is correct and load it ** into pWal->hdr. */ memcpy(&pWal->hdr, (void*)walIndexHdr(pWal), sizeof(WalIndexHdr)); /* Make sure some writer hasn't come in and changed the WAL file out ** from under us, then disconnected, while we were not looking. */ rc = sqlite3OsFileSize(pWal->pWalFd, &szWal); if( rc!=SQLITE_OK ){ goto begin_unreliable_shm_out; } if( szWalhdr.mxFrame==0 ? SQLITE_OK : WAL_RETRY); goto begin_unreliable_shm_out; } /* Check the salt keys at the start of the wal file still match. */ rc = sqlite3OsRead(pWal->pWalFd, aBuf, WAL_HDRSIZE, 0); if( rc!=SQLITE_OK ){ goto begin_unreliable_shm_out; } if( memcmp(&pWal->hdr.aSalt, &aBuf[16], 8) ){ /* Some writer has wrapped the WAL file while we were not looking. ** Return WAL_RETRY which will cause the in-memory WAL-index to be ** rebuilt. */ rc = WAL_RETRY; goto begin_unreliable_shm_out; } /* Allocate a buffer to read frames into */ assert( (pWal->szPage & (pWal->szPage-1))==0 ); assert( pWal->szPage>=512 && pWal->szPage<=65536 ); szFrame = pWal->szPage + WAL_FRAME_HDRSIZE; aFrame = (u8 *)sqlite3_malloc64(szFrame); if( aFrame==0 ){ rc = SQLITE_NOMEM_BKPT; goto begin_unreliable_shm_out; } aData = &aFrame[WAL_FRAME_HDRSIZE]; /* Check to see if a complete transaction has been appended to the ** wal file since the heap-memory wal-index was created. If so, the ** heap-memory wal-index is discarded and WAL_RETRY returned to ** the caller. */ aSaveCksum[0] = pWal->hdr.aFrameCksum[0]; aSaveCksum[1] = pWal->hdr.aFrameCksum[1]; for(iOffset=walFrameOffset(pWal->hdr.mxFrame+1, pWal->szPage); iOffset+szFrame<=szWal; iOffset+=szFrame ){ u32 pgno; /* Database page number for frame */ u32 nTruncate; /* dbsize field from frame header */ /* Read and decode the next log frame. */ rc = sqlite3OsRead(pWal->pWalFd, aFrame, szFrame, iOffset); if( rc!=SQLITE_OK ) break; if( !walDecodeFrame(pWal, &pgno, &nTruncate, aData, aFrame) ) break; /* If nTruncate is non-zero, then a complete transaction has been ** appended to this wal file. Set rc to WAL_RETRY and break out of ** the loop. */ if( nTruncate ){ rc = WAL_RETRY; break; } } pWal->hdr.aFrameCksum[0] = aSaveCksum[0]; pWal->hdr.aFrameCksum[1] = aSaveCksum[1]; begin_unreliable_shm_out: sqlite3_free(aFrame); if( rc!=SQLITE_OK ){ int i; for(i=0; inWiData; i++){ sqlite3_free((void*)pWal->apWiData[i]); pWal->apWiData[i] = 0; } pWal->bShmUnreliable = 0; sqlite3WalEndReadTransaction(pWal); *pChanged = 1; } return rc; } /* ** Attempt to start a read transaction. This might fail due to a race or ** other transient condition. When that happens, it returns WAL_RETRY to ** indicate to the caller that it is safe to retry immediately. ** ** On success return SQLITE_OK. On a permanent failure (such an ** I/O error or an SQLITE_BUSY because another process is running ** recovery) return a positive error code. ** ** The useWal parameter is true to force the use of the WAL and disable ** the case where the WAL is bypassed because it has been completely ** checkpointed. If useWal==0 then this routine calls walIndexReadHdr() ** to make a copy of the wal-index header into pWal->hdr. If the ** wal-index header has changed, *pChanged is set to 1 (as an indication ** to the caller that the local page cache is obsolete and needs to be ** flushed.) When useWal==1, the wal-index header is assumed to already ** be loaded and the pChanged parameter is unused. ** ** The caller must set the cnt parameter to the number of prior calls to ** this routine during the current read attempt that returned WAL_RETRY. ** This routine will start taking more aggressive measures to clear the ** race conditions after multiple WAL_RETRY returns, and after an excessive ** number of errors will ultimately return SQLITE_PROTOCOL. The ** SQLITE_PROTOCOL return indicates that some other process has gone rogue ** and is not honoring the locking protocol. There is a vanishingly small ** chance that SQLITE_PROTOCOL could be returned because of a run of really ** bad luck when there is lots of contention for the wal-index, but that ** possibility is so small that it can be safely neglected, we believe. ** ** On success, this routine obtains a read lock on ** WAL_READ_LOCK(pWal->readLock). The pWal->readLock integer is ** in the range 0 <= pWal->readLock < WAL_NREADER. If pWal->readLock==(-1) ** that means the Wal does not hold any read lock. The reader must not ** access any database page that is modified by a WAL frame up to and ** including frame number aReadMark[pWal->readLock]. The reader will ** use WAL frames up to and including pWal->hdr.mxFrame if pWal->readLock>0 ** Or if pWal->readLock==0, then the reader will ignore the WAL ** completely and get all content directly from the database file. ** If the useWal parameter is 1 then the WAL will never be ignored and ** this routine will always set pWal->readLock>0 on success. ** When the read transaction is completed, the caller must release the ** lock on WAL_READ_LOCK(pWal->readLock) and set pWal->readLock to -1. ** ** This routine uses the nBackfill and aReadMark[] fields of the header ** to select a particular WAL_READ_LOCK() that strives to let the ** checkpoint process do as much work as possible. This routine might ** update values of the aReadMark[] array in the header, but if it does ** so it takes care to hold an exclusive lock on the corresponding ** WAL_READ_LOCK() while changing values. */ static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int cnt){ volatile WalCkptInfo *pInfo; /* Checkpoint information in wal-index */ u32 mxReadMark; /* Largest aReadMark[] value */ int mxI; /* Index of largest aReadMark[] value */ int i; /* Loop counter */ int rc = SQLITE_OK; /* Return code */ u32 mxFrame; /* Wal frame to lock to */ assert( pWal->readLock<0 ); /* Not currently locked */ /* useWal may only be set for read/write connections */ assert( (pWal->readOnly & WAL_SHM_RDONLY)==0 || useWal==0 ); /* Take steps to avoid spinning forever if there is a protocol error. ** ** Circumstances that cause a RETRY should only last for the briefest ** instances of time. No I/O or other system calls are done while the ** locks are held, so the locks should not be held for very long. But ** if we are unlucky, another process that is holding a lock might get ** paged out or take a page-fault that is time-consuming to resolve, ** during the few nanoseconds that it is holding the lock. In that case, ** it might take longer than normal for the lock to free. ** ** After 5 RETRYs, we begin calling sqlite3OsSleep(). The first few ** calls to sqlite3OsSleep() have a delay of 1 microsecond. Really this ** is more of a scheduler yield than an actual delay. But on the 10th ** an subsequent retries, the delays start becoming longer and longer, ** so that on the 100th (and last) RETRY we delay for 323 milliseconds. ** The total delay time before giving up is less than 10 seconds. */ if( cnt>5 ){ int nDelay = 1; /* Pause time in microseconds */ if( cnt>100 ){ VVA_ONLY( pWal->lockError = 1; ) return SQLITE_PROTOCOL; } if( cnt>=10 ) nDelay = (cnt-9)*(cnt-9)*39; sqlite3OsSleep(pWal->pVfs, nDelay); } if( !useWal ){ assert( rc==SQLITE_OK ); if( pWal->bShmUnreliable==0 ){ rc = walIndexReadHdr(pWal, pChanged); } if( rc==SQLITE_BUSY ){ /* If there is not a recovery running in another thread or process ** then convert BUSY errors to WAL_RETRY. If recovery is known to ** be running, convert BUSY to BUSY_RECOVERY. There is a race here ** which might cause WAL_RETRY to be returned even if BUSY_RECOVERY ** would be technically correct. But the race is benign since with ** WAL_RETRY this routine will be called again and will probably be ** right on the second iteration. */ if( pWal->apWiData[0]==0 ){ /* This branch is taken when the xShmMap() method returns SQLITE_BUSY. ** We assume this is a transient condition, so return WAL_RETRY. The ** xShmMap() implementation used by the default unix and win32 VFS ** modules may return SQLITE_BUSY due to a race condition in the ** code that determines whether or not the shared-memory region ** must be zeroed before the requested page is returned. */ rc = WAL_RETRY; }else if( SQLITE_OK==(rc = walLockShared(pWal, WAL_RECOVER_LOCK)) ){ walUnlockShared(pWal, WAL_RECOVER_LOCK); rc = WAL_RETRY; }else if( rc==SQLITE_BUSY ){ rc = SQLITE_BUSY_RECOVERY; } } if( rc!=SQLITE_OK ){ return rc; } else if( pWal->bShmUnreliable ){ return walBeginShmUnreliable(pWal, pChanged); } } assert( pWal->nWiData>0 ); assert( pWal->apWiData[0]!=0 ); pInfo = walCkptInfo(pWal); if( !useWal && AtomicLoad(&pInfo->nBackfill)==pWal->hdr.mxFrame #ifdef SQLITE_ENABLE_SNAPSHOT && (pWal->pSnapshot==0 || pWal->hdr.mxFrame==0) #endif ){ /* The WAL has been completely backfilled (or it is empty). ** and can be safely ignored. */ rc = walLockShared(pWal, WAL_READ_LOCK(0)); walShmBarrier(pWal); if( rc==SQLITE_OK ){ if( memcmp((void *)walIndexHdr(pWal), &pWal->hdr, sizeof(WalIndexHdr)) ){ /* It is not safe to allow the reader to continue here if frames ** may have been appended to the log before READ_LOCK(0) was obtained. ** When holding READ_LOCK(0), the reader ignores the entire log file, ** which implies that the database file contains a trustworthy ** snapshot. Since holding READ_LOCK(0) prevents a checkpoint from ** happening, this is usually correct. ** ** However, if frames have been appended to the log (or if the log ** is wrapped and written for that matter) before the READ_LOCK(0) ** is obtained, that is not necessarily true. A checkpointer may ** have started to backfill the appended frames but crashed before ** it finished. Leaving a corrupt image in the database file. */ walUnlockShared(pWal, WAL_READ_LOCK(0)); return WAL_RETRY; } pWal->readLock = 0; return SQLITE_OK; }else if( rc!=SQLITE_BUSY ){ return rc; } } /* If we get this far, it means that the reader will want to use ** the WAL to get at content from recent commits. The job now is ** to select one of the aReadMark[] entries that is closest to ** but not exceeding pWal->hdr.mxFrame and lock that entry. */ mxReadMark = 0; mxI = 0; mxFrame = pWal->hdr.mxFrame; #ifdef SQLITE_ENABLE_SNAPSHOT if( pWal->pSnapshot && pWal->pSnapshot->mxFramepSnapshot->mxFrame; } #endif for(i=1; iaReadMark+i); if( mxReadMark<=thisMark && thisMark<=mxFrame ){ assert( thisMark!=READMARK_NOT_USED ); mxReadMark = thisMark; mxI = i; } } if( (pWal->readOnly & WAL_SHM_RDONLY)==0 && (mxReadMarkaReadMark+i,mxFrame); mxReadMark = mxFrame; mxI = i; walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); break; }else if( rc!=SQLITE_BUSY ){ return rc; } } } if( mxI==0 ){ assert( rc==SQLITE_BUSY || (pWal->readOnly & WAL_SHM_RDONLY)!=0 ); return rc==SQLITE_BUSY ? WAL_RETRY : SQLITE_READONLY_CANTINIT; } rc = walLockShared(pWal, WAL_READ_LOCK(mxI)); if( rc ){ return rc==SQLITE_BUSY ? WAL_RETRY : rc; } /* Now that the read-lock has been obtained, check that neither the ** value in the aReadMark[] array or the contents of the wal-index ** header have changed. ** ** It is necessary to check that the wal-index header did not change ** between the time it was read and when the shared-lock was obtained ** on WAL_READ_LOCK(mxI) was obtained to account for the possibility ** that the log file may have been wrapped by a writer, or that frames ** that occur later in the log than pWal->hdr.mxFrame may have been ** copied into the database by a checkpointer. If either of these things ** happened, then reading the database with the current value of ** pWal->hdr.mxFrame risks reading a corrupted snapshot. So, retry ** instead. ** ** Before checking that the live wal-index header has not changed ** since it was read, set Wal.minFrame to the first frame in the wal ** file that has not yet been checkpointed. This client will not need ** to read any frames earlier than minFrame from the wal file - they ** can be safely read directly from the database file. ** ** Because a ShmBarrier() call is made between taking the copy of ** nBackfill and checking that the wal-header in shared-memory still ** matches the one cached in pWal->hdr, it is guaranteed that the ** checkpointer that set nBackfill was not working with a wal-index ** header newer than that cached in pWal->hdr. If it were, that could ** cause a problem. The checkpointer could omit to checkpoint ** a version of page X that lies before pWal->minFrame (call that version ** A) on the basis that there is a newer version (version B) of the same ** page later in the wal file. But if version B happens to like past ** frame pWal->hdr.mxFrame - then the client would incorrectly assume ** that it can read version A from the database file. However, since ** we can guarantee that the checkpointer that set nBackfill could not ** see any pages past pWal->hdr.mxFrame, this problem does not come up. */ pWal->minFrame = AtomicLoad(&pInfo->nBackfill)+1; walShmBarrier(pWal); if( AtomicLoad(pInfo->aReadMark+mxI)!=mxReadMark || memcmp((void *)walIndexHdr(pWal), &pWal->hdr, sizeof(WalIndexHdr)) ){ walUnlockShared(pWal, WAL_READ_LOCK(mxI)); return WAL_RETRY; }else{ assert( mxReadMark<=pWal->hdr.mxFrame ); pWal->readLock = (i16)mxI; } return rc; } #ifdef SQLITE_ENABLE_SNAPSHOT /* ** Attempt to reduce the value of the WalCkptInfo.nBackfillAttempted ** variable so that older snapshots can be accessed. To do this, loop ** through all wal frames from nBackfillAttempted to (nBackfill+1), ** comparing their content to the corresponding page with the database ** file, if any. Set nBackfillAttempted to the frame number of the ** first frame for which the wal file content matches the db file. ** ** This is only really safe if the file-system is such that any page ** writes made by earlier checkpointers were atomic operations, which ** is not always true. It is also possible that nBackfillAttempted ** may be left set to a value larger than expected, if a wal frame ** contains content that duplicate of an earlier version of the same ** page. ** ** SQLITE_OK is returned if successful, or an SQLite error code if an ** error occurs. It is not an error if nBackfillAttempted cannot be ** decreased at all. */ SQLITE_PRIVATE int sqlite3WalSnapshotRecover(Wal *pWal){ int rc; assert( pWal->readLock>=0 ); rc = walLockExclusive(pWal, WAL_CKPT_LOCK, 1); if( rc==SQLITE_OK ){ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); int szPage = (int)pWal->szPage; i64 szDb; /* Size of db file in bytes */ rc = sqlite3OsFileSize(pWal->pDbFd, &szDb); if( rc==SQLITE_OK ){ void *pBuf1 = sqlite3_malloc(szPage); void *pBuf2 = sqlite3_malloc(szPage); if( pBuf1==0 || pBuf2==0 ){ rc = SQLITE_NOMEM; }else{ u32 i = pInfo->nBackfillAttempted; for(i=pInfo->nBackfillAttempted; i>AtomicLoad(&pInfo->nBackfill); i--){ WalHashLoc sLoc; /* Hash table location */ u32 pgno; /* Page number in db file */ i64 iDbOff; /* Offset of db file entry */ i64 iWalOff; /* Offset of wal file entry */ rc = walHashGet(pWal, walFramePage(i), &sLoc); if( rc!=SQLITE_OK ) break; assert( i - sLoc.iZero - 1 >=0 ); pgno = sLoc.aPgno[i-sLoc.iZero-1]; iDbOff = (i64)(pgno-1) * szPage; if( iDbOff+szPage<=szDb ){ iWalOff = walFrameOffset(i, szPage) + WAL_FRAME_HDRSIZE; rc = sqlite3OsRead(pWal->pWalFd, pBuf1, szPage, iWalOff); if( rc==SQLITE_OK ){ rc = sqlite3OsRead(pWal->pDbFd, pBuf2, szPage, iDbOff); } if( rc!=SQLITE_OK || 0==memcmp(pBuf1, pBuf2, szPage) ){ break; } } pInfo->nBackfillAttempted = i-1; } } sqlite3_free(pBuf1); sqlite3_free(pBuf2); } walUnlockExclusive(pWal, WAL_CKPT_LOCK, 1); } return rc; } #endif /* SQLITE_ENABLE_SNAPSHOT */ /* ** Begin a read transaction on the database. ** ** This routine used to be called sqlite3OpenSnapshot() and with good reason: ** it takes a snapshot of the state of the WAL and wal-index for the current ** instant in time. The current thread will continue to use this snapshot. ** Other threads might append new content to the WAL and wal-index but ** that extra content is ignored by the current thread. ** ** If the database contents have changes since the previous read ** transaction, then *pChanged is set to 1 before returning. The ** Pager layer will use this to know that its cache is stale and ** needs to be flushed. */ SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *pChanged){ int rc; /* Return code */ int cnt = 0; /* Number of TryBeginRead attempts */ #ifdef SQLITE_ENABLE_SNAPSHOT int bChanged = 0; WalIndexHdr *pSnapshot = pWal->pSnapshot; #endif assert( pWal->ckptLock==0 ); #ifdef SQLITE_ENABLE_SNAPSHOT if( pSnapshot ){ if( memcmp(pSnapshot, &pWal->hdr, sizeof(WalIndexHdr))!=0 ){ bChanged = 1; } /* It is possible that there is a checkpointer thread running ** concurrent with this code. If this is the case, it may be that the ** checkpointer has already determined that it will checkpoint ** snapshot X, where X is later in the wal file than pSnapshot, but ** has not yet set the pInfo->nBackfillAttempted variable to indicate ** its intent. To avoid the race condition this leads to, ensure that ** there is no checkpointer process by taking a shared CKPT lock ** before checking pInfo->nBackfillAttempted. */ (void)walEnableBlocking(pWal); rc = walLockShared(pWal, WAL_CKPT_LOCK); walDisableBlocking(pWal); if( rc!=SQLITE_OK ){ return rc; } pWal->ckptLock = 1; } #endif do{ rc = walTryBeginRead(pWal, pChanged, 0, ++cnt); }while( rc==WAL_RETRY ); testcase( (rc&0xff)==SQLITE_BUSY ); testcase( (rc&0xff)==SQLITE_IOERR ); testcase( rc==SQLITE_PROTOCOL ); testcase( rc==SQLITE_OK ); #ifdef SQLITE_ENABLE_SNAPSHOT if( rc==SQLITE_OK ){ if( pSnapshot && memcmp(pSnapshot, &pWal->hdr, sizeof(WalIndexHdr))!=0 ){ /* At this point the client has a lock on an aReadMark[] slot holding ** a value equal to or smaller than pSnapshot->mxFrame, but pWal->hdr ** is populated with the wal-index header corresponding to the head ** of the wal file. Verify that pSnapshot is still valid before ** continuing. Reasons why pSnapshot might no longer be valid: ** ** (1) The WAL file has been reset since the snapshot was taken. ** In this case, the salt will have changed. ** ** (2) A checkpoint as been attempted that wrote frames past ** pSnapshot->mxFrame into the database file. Note that the ** checkpoint need not have completed for this to cause problems. */ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); assert( pWal->readLock>0 || pWal->hdr.mxFrame==0 ); assert( pInfo->aReadMark[pWal->readLock]<=pSnapshot->mxFrame ); /* Check that the wal file has not been wrapped. Assuming that it has ** not, also check that no checkpointer has attempted to checkpoint any ** frames beyond pSnapshot->mxFrame. If either of these conditions are ** true, return SQLITE_ERROR_SNAPSHOT. Otherwise, overwrite pWal->hdr ** with *pSnapshot and set *pChanged as appropriate for opening the ** snapshot. */ if( !memcmp(pSnapshot->aSalt, pWal->hdr.aSalt, sizeof(pWal->hdr.aSalt)) && pSnapshot->mxFrame>=pInfo->nBackfillAttempted ){ assert( pWal->readLock>0 ); memcpy(&pWal->hdr, pSnapshot, sizeof(WalIndexHdr)); *pChanged = bChanged; }else{ rc = SQLITE_ERROR_SNAPSHOT; } /* A client using a non-current snapshot may not ignore any frames ** from the start of the wal file. This is because, for a system ** where (minFrame < iSnapshot < maxFrame), a checkpointer may ** have omitted to checkpoint a frame earlier than minFrame in ** the file because there exists a frame after iSnapshot that ** is the same database page. */ pWal->minFrame = 1; if( rc!=SQLITE_OK ){ sqlite3WalEndReadTransaction(pWal); } } } /* Release the shared CKPT lock obtained above. */ if( pWal->ckptLock ){ assert( pSnapshot ); walUnlockShared(pWal, WAL_CKPT_LOCK); pWal->ckptLock = 0; } #endif return rc; } /* ** Finish with a read transaction. All this does is release the ** read-lock. */ SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal){ sqlite3WalEndWriteTransaction(pWal); if( pWal->readLock>=0 ){ walUnlockShared(pWal, WAL_READ_LOCK(pWal->readLock)); pWal->readLock = -1; } } /* ** Search the wal file for page pgno. If found, set *piRead to the frame that ** contains the page. Otherwise, if pgno is not in the wal file, set *piRead ** to zero. ** ** Return SQLITE_OK if successful, or an error code if an error occurs. If an ** error does occur, the final value of *piRead is undefined. */ SQLITE_PRIVATE int sqlite3WalFindFrame( Wal *pWal, /* WAL handle */ Pgno pgno, /* Database page number to read data for */ u32 *piRead /* OUT: Frame number (or zero) */ ){ u32 iRead = 0; /* If !=0, WAL frame to return data from */ u32 iLast = pWal->hdr.mxFrame; /* Last page in WAL for this reader */ int iHash; /* Used to loop through N hash tables */ int iMinHash; /* This routine is only be called from within a read transaction. */ assert( pWal->readLock>=0 || pWal->lockError ); /* If the "last page" field of the wal-index header snapshot is 0, then ** no data will be read from the wal under any circumstances. Return early ** in this case as an optimization. Likewise, if pWal->readLock==0, ** then the WAL is ignored by the reader so return early, as if the ** WAL were empty. */ if( iLast==0 || (pWal->readLock==0 && pWal->bShmUnreliable==0) ){ *piRead = 0; return SQLITE_OK; } /* Search the hash table or tables for an entry matching page number ** pgno. Each iteration of the following for() loop searches one ** hash table (each hash table indexes up to HASHTABLE_NPAGE frames). ** ** This code might run concurrently to the code in walIndexAppend() ** that adds entries to the wal-index (and possibly to this hash ** table). This means the value just read from the hash ** slot (aHash[iKey]) may have been added before or after the ** current read transaction was opened. Values added after the ** read transaction was opened may have been written incorrectly - ** i.e. these slots may contain garbage data. However, we assume ** that any slots written before the current read transaction was ** opened remain unmodified. ** ** For the reasons above, the if(...) condition featured in the inner ** loop of the following block is more stringent that would be required ** if we had exclusive access to the hash-table: ** ** (aPgno[iFrame]==pgno): ** This condition filters out normal hash-table collisions. ** ** (iFrame<=iLast): ** This condition filters out entries that were added to the hash ** table after the current read-transaction had started. */ iMinHash = walFramePage(pWal->minFrame); for(iHash=walFramePage(iLast); iHash>=iMinHash; iHash--){ WalHashLoc sLoc; /* Hash table location */ int iKey; /* Hash slot index */ int nCollide; /* Number of hash collisions remaining */ int rc; /* Error code */ u32 iH; rc = walHashGet(pWal, iHash, &sLoc); if( rc!=SQLITE_OK ){ return rc; } nCollide = HASHTABLE_NSLOT; iKey = walHash(pgno); while( (iH = AtomicLoad(&sLoc.aHash[iKey]))!=0 ){ u32 iFrame = iH + sLoc.iZero; if( iFrame<=iLast && iFrame>=pWal->minFrame && sLoc.aPgno[iH-1]==pgno ){ assert( iFrame>iRead || CORRUPT_DB ); iRead = iFrame; } if( (nCollide--)==0 ){ return SQLITE_CORRUPT_BKPT; } iKey = walNextHash(iKey); } if( iRead ) break; } #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT /* If expensive assert() statements are available, do a linear search ** of the wal-index file content. Make sure the results agree with the ** result obtained using the hash indexes above. */ { u32 iRead2 = 0; u32 iTest; assert( pWal->bShmUnreliable || pWal->minFrame>0 ); for(iTest=iLast; iTest>=pWal->minFrame && iTest>0; iTest--){ if( walFramePgno(pWal, iTest)==pgno ){ iRead2 = iTest; break; } } assert( iRead==iRead2 ); } #endif *piRead = iRead; return SQLITE_OK; } /* ** Read the contents of frame iRead from the wal file into buffer pOut ** (which is nOut bytes in size). Return SQLITE_OK if successful, or an ** error code otherwise. */ SQLITE_PRIVATE int sqlite3WalReadFrame( Wal *pWal, /* WAL handle */ u32 iRead, /* Frame to read */ int nOut, /* Size of buffer pOut in bytes */ u8 *pOut /* Buffer to write page data to */ ){ int sz; i64 iOffset; sz = pWal->hdr.szPage; sz = (sz&0xfe00) + ((sz&0x0001)<<16); testcase( sz<=32768 ); testcase( sz>=65536 ); iOffset = walFrameOffset(iRead, sz) + WAL_FRAME_HDRSIZE; /* testcase( IS_BIG_INT(iOffset) ); // requires a 4GiB WAL */ return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset); } /* ** Return the size of the database in pages (or zero, if unknown). */ SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal){ if( pWal && ALWAYS(pWal->readLock>=0) ){ return pWal->hdr.nPage; } return 0; } /* ** This function starts a write transaction on the WAL. ** ** A read transaction must have already been started by a prior call ** to sqlite3WalBeginReadTransaction(). ** ** If another thread or process has written into the database since ** the read transaction was started, then it is not possible for this ** thread to write as doing so would cause a fork. So this routine ** returns SQLITE_BUSY in that case and no write transaction is started. ** ** There can only be a single writer active at a time. */ SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal){ int rc; #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* If the write-lock is already held, then it was obtained before the ** read-transaction was even opened, making this call a no-op. ** Return early. */ if( pWal->writeLock ){ assert( !memcmp(&pWal->hdr,(void *)walIndexHdr(pWal),sizeof(WalIndexHdr)) ); return SQLITE_OK; } #endif /* Cannot start a write transaction without first holding a read ** transaction. */ assert( pWal->readLock>=0 ); assert( pWal->writeLock==0 && pWal->iReCksum==0 ); if( pWal->readOnly ){ return SQLITE_READONLY; } /* Only one writer allowed at a time. Get the write lock. Return ** SQLITE_BUSY if unable. */ rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); if( rc ){ return rc; } pWal->writeLock = 1; /* If another connection has written to the database file since the ** time the read transaction on this connection was started, then ** the write is disallowed. */ if( memcmp(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr))!=0 ){ walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); pWal->writeLock = 0; rc = SQLITE_BUSY_SNAPSHOT; } return rc; } /* ** End a write transaction. The commit has already been done. This ** routine merely releases the lock. */ SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal){ if( pWal->writeLock ){ walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); pWal->writeLock = 0; pWal->iReCksum = 0; pWal->truncateOnCommit = 0; } return SQLITE_OK; } /* ** If any data has been written (but not committed) to the log file, this ** function moves the write-pointer back to the start of the transaction. ** ** Additionally, the callback function is invoked for each frame written ** to the WAL since the start of the transaction. If the callback returns ** other than SQLITE_OK, it is not invoked again and the error code is ** returned to the caller. ** ** Otherwise, if the callback function does not return an error, this ** function returns SQLITE_OK. */ SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx){ int rc = SQLITE_OK; if( ALWAYS(pWal->writeLock) ){ Pgno iMax = pWal->hdr.mxFrame; Pgno iFrame; /* Restore the clients cache of the wal-index header to the state it ** was in before the client began writing to the database. */ memcpy(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr)); for(iFrame=pWal->hdr.mxFrame+1; ALWAYS(rc==SQLITE_OK) && iFrame<=iMax; iFrame++ ){ /* This call cannot fail. Unless the page for which the page number ** is passed as the second argument is (a) in the cache and ** (b) has an outstanding reference, then xUndo is either a no-op ** (if (a) is false) or simply expels the page from the cache (if (b) ** is false). ** ** If the upper layer is doing a rollback, it is guaranteed that there ** are no outstanding references to any page other than page 1. And ** page 1 is never written to the log until the transaction is ** committed. As a result, the call to xUndo may not fail. */ assert( walFramePgno(pWal, iFrame)!=1 ); rc = xUndo(pUndoCtx, walFramePgno(pWal, iFrame)); } if( iMax!=pWal->hdr.mxFrame ) walCleanupHash(pWal); } return rc; } /* ** Argument aWalData must point to an array of WAL_SAVEPOINT_NDATA u32 ** values. This function populates the array with values required to ** "rollback" the write position of the WAL handle back to the current ** point in the event of a savepoint rollback (via WalSavepointUndo()). */ SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData){ assert( pWal->writeLock ); aWalData[0] = pWal->hdr.mxFrame; aWalData[1] = pWal->hdr.aFrameCksum[0]; aWalData[2] = pWal->hdr.aFrameCksum[1]; aWalData[3] = pWal->nCkpt; } /* ** Move the write position of the WAL back to the point identified by ** the values in the aWalData[] array. aWalData must point to an array ** of WAL_SAVEPOINT_NDATA u32 values that has been previously populated ** by a call to WalSavepoint(). */ SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData){ int rc = SQLITE_OK; assert( pWal->writeLock ); assert( aWalData[3]!=pWal->nCkpt || aWalData[0]<=pWal->hdr.mxFrame ); if( aWalData[3]!=pWal->nCkpt ){ /* This savepoint was opened immediately after the write-transaction ** was started. Right after that, the writer decided to wrap around ** to the start of the log. Update the savepoint values to match. */ aWalData[0] = 0; aWalData[3] = pWal->nCkpt; } if( aWalData[0]hdr.mxFrame ){ pWal->hdr.mxFrame = aWalData[0]; pWal->hdr.aFrameCksum[0] = aWalData[1]; pWal->hdr.aFrameCksum[1] = aWalData[2]; walCleanupHash(pWal); } return rc; } /* ** This function is called just before writing a set of frames to the log ** file (see sqlite3WalFrames()). It checks to see if, instead of appending ** to the current log file, it is possible to overwrite the start of the ** existing log file with the new frames (i.e. "reset" the log). If so, ** it sets pWal->hdr.mxFrame to 0. Otherwise, pWal->hdr.mxFrame is left ** unchanged. ** ** SQLITE_OK is returned if no error is encountered (regardless of whether ** or not pWal->hdr.mxFrame is modified). An SQLite error code is returned ** if an error occurs. */ static int walRestartLog(Wal *pWal){ int rc = SQLITE_OK; int cnt; if( pWal->readLock==0 ){ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); assert( pInfo->nBackfill==pWal->hdr.mxFrame ); if( pInfo->nBackfill>0 ){ u32 salt1; sqlite3_randomness(4, &salt1); rc = walLockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); if( rc==SQLITE_OK ){ /* If all readers are using WAL_READ_LOCK(0) (in other words if no ** readers are currently using the WAL), then the transactions ** frames will overwrite the start of the existing log. Update the ** wal-index header to reflect this. ** ** In theory it would be Ok to update the cache of the header only ** at this point. But updating the actual wal-index header is also ** safe and means there is no special case for sqlite3WalUndo() ** to handle if this transaction is rolled back. */ walRestartHdr(pWal, salt1); walUnlockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); }else if( rc!=SQLITE_BUSY ){ return rc; } } walUnlockShared(pWal, WAL_READ_LOCK(0)); pWal->readLock = -1; cnt = 0; do{ int notUsed; rc = walTryBeginRead(pWal, ¬Used, 1, ++cnt); }while( rc==WAL_RETRY ); assert( (rc&0xff)!=SQLITE_BUSY ); /* BUSY not possible when useWal==1 */ testcase( (rc&0xff)==SQLITE_IOERR ); testcase( rc==SQLITE_PROTOCOL ); testcase( rc==SQLITE_OK ); } return rc; } /* ** Information about the current state of the WAL file and where ** the next fsync should occur - passed from sqlite3WalFrames() into ** walWriteToLog(). */ typedef struct WalWriter { Wal *pWal; /* The complete WAL information */ sqlite3_file *pFd; /* The WAL file to which we write */ sqlite3_int64 iSyncPoint; /* Fsync at this offset */ int syncFlags; /* Flags for the fsync */ int szPage; /* Size of one page */ } WalWriter; /* ** Write iAmt bytes of content into the WAL file beginning at iOffset. ** Do a sync when crossing the p->iSyncPoint boundary. ** ** In other words, if iSyncPoint is in between iOffset and iOffset+iAmt, ** first write the part before iSyncPoint, then sync, then write the ** rest. */ static int walWriteToLog( WalWriter *p, /* WAL to write to */ void *pContent, /* Content to be written */ int iAmt, /* Number of bytes to write */ sqlite3_int64 iOffset /* Start writing at this offset */ ){ int rc; if( iOffsetiSyncPoint && iOffset+iAmt>=p->iSyncPoint ){ int iFirstAmt = (int)(p->iSyncPoint - iOffset); rc = sqlite3OsWrite(p->pFd, pContent, iFirstAmt, iOffset); if( rc ) return rc; iOffset += iFirstAmt; iAmt -= iFirstAmt; pContent = (void*)(iFirstAmt + (char*)pContent); assert( WAL_SYNC_FLAGS(p->syncFlags)!=0 ); rc = sqlite3OsSync(p->pFd, WAL_SYNC_FLAGS(p->syncFlags)); if( iAmt==0 || rc ) return rc; } rc = sqlite3OsWrite(p->pFd, pContent, iAmt, iOffset); return rc; } /* ** Write out a single frame of the WAL */ static int walWriteOneFrame( WalWriter *p, /* Where to write the frame */ PgHdr *pPage, /* The page of the frame to be written */ int nTruncate, /* The commit flag. Usually 0. >0 for commit */ sqlite3_int64 iOffset /* Byte offset at which to write */ ){ int rc; /* Result code from subfunctions */ void *pData; /* Data actually written */ u8 aFrame[WAL_FRAME_HDRSIZE]; /* Buffer to assemble frame-header in */ pData = pPage->pData; walEncodeFrame(p->pWal, pPage->pgno, nTruncate, pData, aFrame); rc = walWriteToLog(p, aFrame, sizeof(aFrame), iOffset); if( rc ) return rc; /* Write the page data */ rc = walWriteToLog(p, pData, p->szPage, iOffset+sizeof(aFrame)); return rc; } /* ** This function is called as part of committing a transaction within which ** one or more frames have been overwritten. It updates the checksums for ** all frames written to the wal file by the current transaction starting ** with the earliest to have been overwritten. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int walRewriteChecksums(Wal *pWal, u32 iLast){ const int szPage = pWal->szPage;/* Database page size */ int rc = SQLITE_OK; /* Return code */ u8 *aBuf; /* Buffer to load data from wal file into */ u8 aFrame[WAL_FRAME_HDRSIZE]; /* Buffer to assemble frame-headers in */ u32 iRead; /* Next frame to read from wal file */ i64 iCksumOff; aBuf = sqlite3_malloc(szPage + WAL_FRAME_HDRSIZE); if( aBuf==0 ) return SQLITE_NOMEM_BKPT; /* Find the checksum values to use as input for the recalculating the ** first checksum. If the first frame is frame 1 (implying that the current ** transaction restarted the wal file), these values must be read from the ** wal-file header. Otherwise, read them from the frame header of the ** previous frame. */ assert( pWal->iReCksum>0 ); if( pWal->iReCksum==1 ){ iCksumOff = 24; }else{ iCksumOff = walFrameOffset(pWal->iReCksum-1, szPage) + 16; } rc = sqlite3OsRead(pWal->pWalFd, aBuf, sizeof(u32)*2, iCksumOff); pWal->hdr.aFrameCksum[0] = sqlite3Get4byte(aBuf); pWal->hdr.aFrameCksum[1] = sqlite3Get4byte(&aBuf[sizeof(u32)]); iRead = pWal->iReCksum; pWal->iReCksum = 0; for(; rc==SQLITE_OK && iRead<=iLast; iRead++){ i64 iOff = walFrameOffset(iRead, szPage); rc = sqlite3OsRead(pWal->pWalFd, aBuf, szPage+WAL_FRAME_HDRSIZE, iOff); if( rc==SQLITE_OK ){ u32 iPgno, nDbSize; iPgno = sqlite3Get4byte(aBuf); nDbSize = sqlite3Get4byte(&aBuf[4]); walEncodeFrame(pWal, iPgno, nDbSize, &aBuf[WAL_FRAME_HDRSIZE], aFrame); rc = sqlite3OsWrite(pWal->pWalFd, aFrame, sizeof(aFrame), iOff); } } sqlite3_free(aBuf); return rc; } /* ** Write a set of frames to the log. The caller must hold the write-lock ** on the log file (obtained using sqlite3WalBeginWriteTransaction()). */ SQLITE_PRIVATE int sqlite3WalFrames( Wal *pWal, /* Wal handle to write to */ int szPage, /* Database page-size in bytes */ PgHdr *pList, /* List of dirty pages to write */ Pgno nTruncate, /* Database size after this commit */ int isCommit, /* True if this is a commit */ int sync_flags /* Flags to pass to OsSync() (or 0) */ ){ int rc; /* Used to catch return codes */ u32 iFrame; /* Next frame address */ PgHdr *p; /* Iterator to run through pList with. */ PgHdr *pLast = 0; /* Last frame in list */ int nExtra = 0; /* Number of extra copies of last page */ int szFrame; /* The size of a single frame */ i64 iOffset; /* Next byte to write in WAL file */ WalWriter w; /* The writer */ u32 iFirst = 0; /* First frame that may be overwritten */ WalIndexHdr *pLive; /* Pointer to shared header */ assert( pList ); assert( pWal->writeLock ); /* If this frame set completes a transaction, then nTruncate>0. If ** nTruncate==0 then this frame set does not complete the transaction. */ assert( (isCommit!=0)==(nTruncate!=0) ); #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) { int cnt; for(cnt=0, p=pList; p; p=p->pDirty, cnt++){} WALTRACE(("WAL%p: frame write begin. %d frames. mxFrame=%d. %s\n", pWal, cnt, pWal->hdr.mxFrame, isCommit ? "Commit" : "Spill")); } #endif pLive = (WalIndexHdr*)walIndexHdr(pWal); if( memcmp(&pWal->hdr, (void *)pLive, sizeof(WalIndexHdr))!=0 ){ iFirst = pLive->mxFrame+1; } /* See if it is possible to write these frames into the start of the ** log file, instead of appending to it at pWal->hdr.mxFrame. */ if( SQLITE_OK!=(rc = walRestartLog(pWal)) ){ return rc; } /* If this is the first frame written into the log, write the WAL ** header to the start of the WAL file. See comments at the top of ** this source file for a description of the WAL header format. */ iFrame = pWal->hdr.mxFrame; if( iFrame==0 ){ u8 aWalHdr[WAL_HDRSIZE]; /* Buffer to assemble wal-header in */ u32 aCksum[2]; /* Checksum for wal-header */ sqlite3Put4byte(&aWalHdr[0], (WAL_MAGIC | SQLITE_BIGENDIAN)); sqlite3Put4byte(&aWalHdr[4], WAL_MAX_VERSION); sqlite3Put4byte(&aWalHdr[8], szPage); sqlite3Put4byte(&aWalHdr[12], pWal->nCkpt); if( pWal->nCkpt==0 ) sqlite3_randomness(8, pWal->hdr.aSalt); memcpy(&aWalHdr[16], pWal->hdr.aSalt, 8); walChecksumBytes(1, aWalHdr, WAL_HDRSIZE-2*4, 0, aCksum); sqlite3Put4byte(&aWalHdr[24], aCksum[0]); sqlite3Put4byte(&aWalHdr[28], aCksum[1]); pWal->szPage = szPage; pWal->hdr.bigEndCksum = SQLITE_BIGENDIAN; pWal->hdr.aFrameCksum[0] = aCksum[0]; pWal->hdr.aFrameCksum[1] = aCksum[1]; pWal->truncateOnCommit = 1; rc = sqlite3OsWrite(pWal->pWalFd, aWalHdr, sizeof(aWalHdr), 0); WALTRACE(("WAL%p: wal-header write %s\n", pWal, rc ? "failed" : "ok")); if( rc!=SQLITE_OK ){ return rc; } /* Sync the header (unless SQLITE_IOCAP_SEQUENTIAL is true or unless ** all syncing is turned off by PRAGMA synchronous=OFF). Otherwise ** an out-of-order write following a WAL restart could result in ** database corruption. See the ticket: ** ** https://sqlite.org/src/info/ff5be73dee */ if( pWal->syncHeader ){ rc = sqlite3OsSync(pWal->pWalFd, CKPT_SYNC_FLAGS(sync_flags)); if( rc ) return rc; } } assert( (int)pWal->szPage==szPage ); /* Setup information needed to write frames into the WAL */ w.pWal = pWal; w.pFd = pWal->pWalFd; w.iSyncPoint = 0; w.syncFlags = sync_flags; w.szPage = szPage; iOffset = walFrameOffset(iFrame+1, szPage); szFrame = szPage + WAL_FRAME_HDRSIZE; /* Write all frames into the log file exactly once */ for(p=pList; p; p=p->pDirty){ int nDbSize; /* 0 normally. Positive == commit flag */ /* Check if this page has already been written into the wal file by ** the current transaction. If so, overwrite the existing frame and ** set Wal.writeLock to WAL_WRITELOCK_RECKSUM - indicating that ** checksums must be recomputed when the transaction is committed. */ if( iFirst && (p->pDirty || isCommit==0) ){ u32 iWrite = 0; VVA_ONLY(rc =) sqlite3WalFindFrame(pWal, p->pgno, &iWrite); assert( rc==SQLITE_OK || iWrite==0 ); if( iWrite>=iFirst ){ i64 iOff = walFrameOffset(iWrite, szPage) + WAL_FRAME_HDRSIZE; void *pData; if( pWal->iReCksum==0 || iWriteiReCksum ){ pWal->iReCksum = iWrite; } pData = p->pData; rc = sqlite3OsWrite(pWal->pWalFd, pData, szPage, iOff); if( rc ) return rc; p->flags &= ~PGHDR_WAL_APPEND; continue; } } iFrame++; assert( iOffset==walFrameOffset(iFrame, szPage) ); nDbSize = (isCommit && p->pDirty==0) ? nTruncate : 0; rc = walWriteOneFrame(&w, p, nDbSize, iOffset); if( rc ) return rc; pLast = p; iOffset += szFrame; p->flags |= PGHDR_WAL_APPEND; } /* Recalculate checksums within the wal file if required. */ if( isCommit && pWal->iReCksum ){ rc = walRewriteChecksums(pWal, iFrame); if( rc ) return rc; } /* If this is the end of a transaction, then we might need to pad ** the transaction and/or sync the WAL file. ** ** Padding and syncing only occur if this set of frames complete a ** transaction and if PRAGMA synchronous=FULL. If synchronous==NORMAL ** or synchronous==OFF, then no padding or syncing are needed. ** ** If SQLITE_IOCAP_POWERSAFE_OVERWRITE is defined, then padding is not ** needed and only the sync is done. If padding is needed, then the ** final frame is repeated (with its commit mark) until the next sector ** boundary is crossed. Only the part of the WAL prior to the last ** sector boundary is synced; the part of the last frame that extends ** past the sector boundary is written after the sync. */ if( isCommit && WAL_SYNC_FLAGS(sync_flags)!=0 ){ int bSync = 1; if( pWal->padToSectorBoundary ){ int sectorSize = sqlite3SectorSize(pWal->pWalFd); w.iSyncPoint = ((iOffset+sectorSize-1)/sectorSize)*sectorSize; bSync = (w.iSyncPoint==iOffset); testcase( bSync ); while( iOffsettruncateOnCommit && pWal->mxWalSize>=0 ){ i64 sz = pWal->mxWalSize; if( walFrameOffset(iFrame+nExtra+1, szPage)>pWal->mxWalSize ){ sz = walFrameOffset(iFrame+nExtra+1, szPage); } walLimitSize(pWal, sz); pWal->truncateOnCommit = 0; } /* Append data to the wal-index. It is not necessary to lock the ** wal-index to do this as the SQLITE_SHM_WRITE lock held on the wal-index ** guarantees that there are no other writers, and no data that may ** be in use by existing readers is being overwritten. */ iFrame = pWal->hdr.mxFrame; for(p=pList; p && rc==SQLITE_OK; p=p->pDirty){ if( (p->flags & PGHDR_WAL_APPEND)==0 ) continue; iFrame++; rc = walIndexAppend(pWal, iFrame, p->pgno); } assert( pLast!=0 || nExtra==0 ); while( rc==SQLITE_OK && nExtra>0 ){ iFrame++; nExtra--; rc = walIndexAppend(pWal, iFrame, pLast->pgno); } if( rc==SQLITE_OK ){ /* Update the private copy of the header. */ pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16)); testcase( szPage<=32768 ); testcase( szPage>=65536 ); pWal->hdr.mxFrame = iFrame; if( isCommit ){ pWal->hdr.iChange++; pWal->hdr.nPage = nTruncate; } /* If this is a commit, update the wal-index header too. */ if( isCommit ){ walIndexWriteHdr(pWal); pWal->iCallback = iFrame; } } WALTRACE(("WAL%p: frame write %s\n", pWal, rc ? "failed" : "ok")); return rc; } /* ** This routine is called to implement sqlite3_wal_checkpoint() and ** related interfaces. ** ** Obtain a CHECKPOINT lock and then backfill as much information as ** we can from WAL into the database. ** ** If parameter xBusy is not NULL, it is a pointer to a busy-handler ** callback. In this case this function runs a blocking checkpoint. */ SQLITE_PRIVATE int sqlite3WalCheckpoint( Wal *pWal, /* Wal connection */ sqlite3 *db, /* Check this handle's interrupt flag */ int eMode, /* PASSIVE, FULL, RESTART, or TRUNCATE */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int sync_flags, /* Flags to sync db file with (or 0) */ int nBuf, /* Size of temporary buffer */ u8 *zBuf, /* Temporary buffer to use */ int *pnLog, /* OUT: Number of frames in WAL */ int *pnCkpt /* OUT: Number of backfilled frames in WAL */ ){ int rc; /* Return code */ int isChanged = 0; /* True if a new wal-index header is loaded */ int eMode2 = eMode; /* Mode to pass to walCheckpoint() */ int (*xBusy2)(void*) = xBusy; /* Busy handler for eMode2 */ assert( pWal->ckptLock==0 ); assert( pWal->writeLock==0 ); /* EVIDENCE-OF: R-62920-47450 The busy-handler callback is never invoked ** in the SQLITE_CHECKPOINT_PASSIVE mode. */ assert( eMode!=SQLITE_CHECKPOINT_PASSIVE || xBusy==0 ); if( pWal->readOnly ) return SQLITE_READONLY; WALTRACE(("WAL%p: checkpoint begins\n", pWal)); /* Enable blocking locks, if possible. If blocking locks are successfully ** enabled, set xBusy2=0 so that the busy-handler is never invoked. */ sqlite3WalDb(pWal, db); (void)walEnableBlocking(pWal); /* IMPLEMENTATION-OF: R-62028-47212 All calls obtain an exclusive ** "checkpoint" lock on the database file. ** EVIDENCE-OF: R-10421-19736 If any other process is running a ** checkpoint operation at the same time, the lock cannot be obtained and ** SQLITE_BUSY is returned. ** EVIDENCE-OF: R-53820-33897 Even if there is a busy-handler configured, ** it will not be invoked in this case. */ rc = walLockExclusive(pWal, WAL_CKPT_LOCK, 1); testcase( rc==SQLITE_BUSY ); testcase( rc!=SQLITE_OK && xBusy2!=0 ); if( rc==SQLITE_OK ){ pWal->ckptLock = 1; /* IMPLEMENTATION-OF: R-59782-36818 The SQLITE_CHECKPOINT_FULL, RESTART and ** TRUNCATE modes also obtain the exclusive "writer" lock on the database ** file. ** ** EVIDENCE-OF: R-60642-04082 If the writer lock cannot be obtained ** immediately, and a busy-handler is configured, it is invoked and the ** writer lock retried until either the busy-handler returns 0 or the ** lock is successfully obtained. */ if( eMode!=SQLITE_CHECKPOINT_PASSIVE ){ rc = walBusyLock(pWal, xBusy2, pBusyArg, WAL_WRITE_LOCK, 1); if( rc==SQLITE_OK ){ pWal->writeLock = 1; }else if( rc==SQLITE_BUSY ){ eMode2 = SQLITE_CHECKPOINT_PASSIVE; xBusy2 = 0; rc = SQLITE_OK; } } } /* Read the wal-index header. */ if( rc==SQLITE_OK ){ walDisableBlocking(pWal); rc = walIndexReadHdr(pWal, &isChanged); (void)walEnableBlocking(pWal); if( isChanged && pWal->pDbFd->pMethods->iVersion>=3 ){ sqlite3OsUnfetch(pWal->pDbFd, 0, 0); } } /* Copy data from the log to the database file. */ if( rc==SQLITE_OK ){ if( pWal->hdr.mxFrame && walPagesize(pWal)!=nBuf ){ rc = SQLITE_CORRUPT_BKPT; }else{ rc = walCheckpoint(pWal, db, eMode2, xBusy2, pBusyArg, sync_flags, zBuf); } /* If no error occurred, set the output variables. */ if( rc==SQLITE_OK || rc==SQLITE_BUSY ){ if( pnLog ) *pnLog = (int)pWal->hdr.mxFrame; if( pnCkpt ) *pnCkpt = (int)(walCkptInfo(pWal)->nBackfill); } } if( isChanged ){ /* If a new wal-index header was loaded before the checkpoint was ** performed, then the pager-cache associated with pWal is now ** out of date. So zero the cached wal-index header to ensure that ** next time the pager opens a snapshot on this database it knows that ** the cache needs to be reset. */ memset(&pWal->hdr, 0, sizeof(WalIndexHdr)); } walDisableBlocking(pWal); sqlite3WalDb(pWal, 0); /* Release the locks. */ sqlite3WalEndWriteTransaction(pWal); if( pWal->ckptLock ){ walUnlockExclusive(pWal, WAL_CKPT_LOCK, 1); pWal->ckptLock = 0; } WALTRACE(("WAL%p: checkpoint %s\n", pWal, rc ? "failed" : "ok")); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT if( rc==SQLITE_BUSY_TIMEOUT ) rc = SQLITE_BUSY; #endif return (rc==SQLITE_OK && eMode!=eMode2 ? SQLITE_BUSY : rc); } /* Return the value to pass to a sqlite3_wal_hook callback, the ** number of frames in the WAL at the point of the last commit since ** sqlite3WalCallback() was called. If no commits have occurred since ** the last call, then return 0. */ SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal){ u32 ret = 0; if( pWal ){ ret = pWal->iCallback; pWal->iCallback = 0; } return (int)ret; } /* ** This function is called to change the WAL subsystem into or out ** of locking_mode=EXCLUSIVE. ** ** If op is zero, then attempt to change from locking_mode=EXCLUSIVE ** into locking_mode=NORMAL. This means that we must acquire a lock ** on the pWal->readLock byte. If the WAL is already in locking_mode=NORMAL ** or if the acquisition of the lock fails, then return 0. If the ** transition out of exclusive-mode is successful, return 1. This ** operation must occur while the pager is still holding the exclusive ** lock on the main database file. ** ** If op is one, then change from locking_mode=NORMAL into ** locking_mode=EXCLUSIVE. This means that the pWal->readLock must ** be released. Return 1 if the transition is made and 0 if the ** WAL is already in exclusive-locking mode - meaning that this ** routine is a no-op. The pager must already hold the exclusive lock ** on the main database file before invoking this operation. ** ** If op is negative, then do a dry-run of the op==1 case but do ** not actually change anything. The pager uses this to see if it ** should acquire the database exclusive lock prior to invoking ** the op==1 case. */ SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op){ int rc; assert( pWal->writeLock==0 ); assert( pWal->exclusiveMode!=WAL_HEAPMEMORY_MODE || op==-1 ); /* pWal->readLock is usually set, but might be -1 if there was a ** prior error while attempting to acquire are read-lock. This cannot ** happen if the connection is actually in exclusive mode (as no xShmLock ** locks are taken in this case). Nor should the pager attempt to ** upgrade to exclusive-mode following such an error. */ assert( pWal->readLock>=0 || pWal->lockError ); assert( pWal->readLock>=0 || (op<=0 && pWal->exclusiveMode==0) ); if( op==0 ){ if( pWal->exclusiveMode!=WAL_NORMAL_MODE ){ pWal->exclusiveMode = WAL_NORMAL_MODE; if( walLockShared(pWal, WAL_READ_LOCK(pWal->readLock))!=SQLITE_OK ){ pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; } rc = pWal->exclusiveMode==WAL_NORMAL_MODE; }else{ /* Already in locking_mode=NORMAL */ rc = 0; } }else if( op>0 ){ assert( pWal->exclusiveMode==WAL_NORMAL_MODE ); assert( pWal->readLock>=0 ); walUnlockShared(pWal, WAL_READ_LOCK(pWal->readLock)); pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; rc = 1; }else{ rc = pWal->exclusiveMode==WAL_NORMAL_MODE; } return rc; } /* ** Return true if the argument is non-NULL and the WAL module is using ** heap-memory for the wal-index. Otherwise, if the argument is NULL or the ** WAL module is using shared-memory, return false. */ SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal){ return (pWal && pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ); } #ifdef SQLITE_ENABLE_SNAPSHOT /* Create a snapshot object. The content of a snapshot is opaque to ** every other subsystem, so the WAL module can put whatever it needs ** in the object. */ SQLITE_PRIVATE int sqlite3WalSnapshotGet(Wal *pWal, sqlite3_snapshot **ppSnapshot){ int rc = SQLITE_OK; WalIndexHdr *pRet; static const u32 aZero[4] = { 0, 0, 0, 0 }; assert( pWal->readLock>=0 && pWal->writeLock==0 ); if( memcmp(&pWal->hdr.aFrameCksum[0],aZero,16)==0 ){ *ppSnapshot = 0; return SQLITE_ERROR; } pRet = (WalIndexHdr*)sqlite3_malloc(sizeof(WalIndexHdr)); if( pRet==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ memcpy(pRet, &pWal->hdr, sizeof(WalIndexHdr)); *ppSnapshot = (sqlite3_snapshot*)pRet; } return rc; } /* Try to open on pSnapshot when the next read-transaction starts */ SQLITE_PRIVATE void sqlite3WalSnapshotOpen( Wal *pWal, sqlite3_snapshot *pSnapshot ){ pWal->pSnapshot = (WalIndexHdr*)pSnapshot; } /* ** Return a +ve value if snapshot p1 is newer than p2. A -ve value if ** p1 is older than p2 and zero if p1 and p2 are the same snapshot. */ SQLITE_API int sqlite3_snapshot_cmp(sqlite3_snapshot *p1, sqlite3_snapshot *p2){ WalIndexHdr *pHdr1 = (WalIndexHdr*)p1; WalIndexHdr *pHdr2 = (WalIndexHdr*)p2; /* aSalt[0] is a copy of the value stored in the wal file header. It ** is incremented each time the wal file is restarted. */ if( pHdr1->aSalt[0]aSalt[0] ) return -1; if( pHdr1->aSalt[0]>pHdr2->aSalt[0] ) return +1; if( pHdr1->mxFramemxFrame ) return -1; if( pHdr1->mxFrame>pHdr2->mxFrame ) return +1; return 0; } /* ** The caller currently has a read transaction open on the database. ** This function takes a SHARED lock on the CHECKPOINTER slot and then ** checks if the snapshot passed as the second argument is still ** available. If so, SQLITE_OK is returned. ** ** If the snapshot is not available, SQLITE_ERROR is returned. Or, if ** the CHECKPOINTER lock cannot be obtained, SQLITE_BUSY. If any error ** occurs (any value other than SQLITE_OK is returned), the CHECKPOINTER ** lock is released before returning. */ SQLITE_PRIVATE int sqlite3WalSnapshotCheck(Wal *pWal, sqlite3_snapshot *pSnapshot){ int rc; rc = walLockShared(pWal, WAL_CKPT_LOCK); if( rc==SQLITE_OK ){ WalIndexHdr *pNew = (WalIndexHdr*)pSnapshot; if( memcmp(pNew->aSalt, pWal->hdr.aSalt, sizeof(pWal->hdr.aSalt)) || pNew->mxFramenBackfillAttempted ){ rc = SQLITE_ERROR_SNAPSHOT; walUnlockShared(pWal, WAL_CKPT_LOCK); } } return rc; } /* ** Release a lock obtained by an earlier successful call to ** sqlite3WalSnapshotCheck(). */ SQLITE_PRIVATE void sqlite3WalSnapshotUnlock(Wal *pWal){ assert( pWal ); walUnlockShared(pWal, WAL_CKPT_LOCK); } #endif /* SQLITE_ENABLE_SNAPSHOT */ #ifdef SQLITE_ENABLE_ZIPVFS /* ** If the argument is not NULL, it points to a Wal object that holds a ** read-lock. This function returns the database page-size if it is known, ** or zero if it is not (or if pWal is NULL). */ SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal){ assert( pWal==0 || pWal->readLock>=0 ); return (pWal ? pWal->szPage : 0); } #endif /* Return the sqlite3_file object for the WAL file */ SQLITE_PRIVATE sqlite3_file *sqlite3WalFile(Wal *pWal){ return pWal->pWalFd; } #endif /* #ifndef SQLITE_OMIT_WAL */ /************** End of wal.c *************************************************/ /************** Begin file btmutex.c *****************************************/ /* ** 2007 August 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code used to implement mutexes on Btree objects. ** This code really belongs in btree.c. But btree.c is getting too ** big and we want to break it down some. This packaged seemed like ** a good breakout. */ /************** Include btreeInt.h in the middle of btmutex.c ****************/ /************** Begin file btreeInt.h ****************************************/ /* ** 2004 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements an external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to ** ** Donald E. Knuth, THE ART OF COMPUTER PROGRAMMING, Volume 3: ** "Sorting And Searching", pages 473-480. Addison-Wesley ** Publishing Company, Reading, Massachusetts. ** ** The basic idea is that each page of the file contains N database ** entries and N+1 pointers to subpages. ** ** ---------------------------------------------------------------- ** | Ptr(0) | Key(0) | Ptr(1) | Key(1) | ... | Key(N-1) | Ptr(N) | ** ---------------------------------------------------------------- ** ** All of the keys on the page that Ptr(0) points to have values less ** than Key(0). All of the keys on page Ptr(1) and its subpages have ** values greater than Key(0) and less than Key(1). All of the keys ** on Ptr(N) and its subpages have values greater than Key(N-1). And ** so forth. ** ** Finding a particular key requires reading O(log(M)) pages from the ** disk where M is the number of entries in the tree. ** ** In this implementation, a single file can hold one or more separate ** BTrees. Each BTree is identified by the index of its root page. The ** key and data for any entry are combined to form the "payload". A ** fixed amount of payload can be carried directly on the database ** page. If the payload is larger than the preset amount then surplus ** bytes are stored on overflow pages. The payload for an entry ** and the preceding pointer are combined to form a "Cell". Each ** page has a small header which contains the Ptr(N) pointer and other ** information such as the size of key and data. ** ** FORMAT DETAILS ** ** The file is divided into pages. The first page is called page 1, ** the second is page 2, and so forth. A page number of zero indicates ** "no such page". The page size can be any power of 2 between 512 and 65536. ** Each page can be either a btree page, a freelist page, an overflow ** page, or a pointer-map page. ** ** The first page is always a btree page. The first 100 bytes of the first ** page contain a special header (the "file header") that describes the file. ** The format of the file header is as follows: ** ** OFFSET SIZE DESCRIPTION ** 0 16 Header string: "SQLite format 3\000" ** 16 2 Page size in bytes. (1 means 65536) ** 18 1 File format write version ** 19 1 File format read version ** 20 1 Bytes of unused space at the end of each page ** 21 1 Max embedded payload fraction (must be 64) ** 22 1 Min embedded payload fraction (must be 32) ** 23 1 Min leaf payload fraction (must be 32) ** 24 4 File change counter ** 28 4 Reserved for future use ** 32 4 First freelist page ** 36 4 Number of freelist pages in the file ** 40 60 15 4-byte meta values passed to higher layers ** ** 40 4 Schema cookie ** 44 4 File format of schema layer ** 48 4 Size of page cache ** 52 4 Largest root-page (auto/incr_vacuum) ** 56 4 1=UTF-8 2=UTF16le 3=UTF16be ** 60 4 User version ** 64 4 Incremental vacuum mode ** 68 4 Application-ID ** 72 20 unused ** 92 4 The version-valid-for number ** 96 4 SQLITE_VERSION_NUMBER ** ** All of the integer values are big-endian (most significant byte first). ** ** The file change counter is incremented when the database is changed ** This counter allows other processes to know when the file has changed ** and thus when they need to flush their cache. ** ** The max embedded payload fraction is the amount of the total usable ** space in a page that can be consumed by a single cell for standard ** B-tree (non-LEAFDATA) tables. A value of 255 means 100%. The default ** is to limit the maximum cell size so that at least 4 cells will fit ** on one page. Thus the default max embedded payload fraction is 64. ** ** If the payload for a cell is larger than the max payload, then extra ** payload is spilled to overflow pages. Once an overflow page is allocated, ** as many bytes as possible are moved into the overflow pages without letting ** the cell size drop below the min embedded payload fraction. ** ** The min leaf payload fraction is like the min embedded payload fraction ** except that it applies to leaf nodes in a LEAFDATA tree. The maximum ** payload fraction for a LEAFDATA tree is always 100% (or 255) and it ** not specified in the header. ** ** Each btree pages is divided into three sections: The header, the ** cell pointer array, and the cell content area. Page 1 also has a 100-byte ** file header that occurs before the page header. ** ** |----------------| ** | file header | 100 bytes. Page 1 only. ** |----------------| ** | page header | 8 bytes for leaves. 12 bytes for interior nodes ** |----------------| ** | cell pointer | | 2 bytes per cell. Sorted order. ** | array | | Grows downward ** | | v ** |----------------| ** | unallocated | ** | space | ** |----------------| ^ Grows upwards ** | cell content | | Arbitrary order interspersed with freeblocks. ** | area | | and free space fragments. ** |----------------| ** ** The page headers looks like this: ** ** OFFSET SIZE DESCRIPTION ** 0 1 Flags. 1: intkey, 2: zerodata, 4: leafdata, 8: leaf ** 1 2 byte offset to the first freeblock ** 3 2 number of cells on this page ** 5 2 first byte of the cell content area ** 7 1 number of fragmented free bytes ** 8 4 Right child (the Ptr(N) value). Omitted on leaves. ** ** The flags define the format of this btree page. The leaf flag means that ** this page has no children. The zerodata flag means that this page carries ** only keys and no data. The intkey flag means that the key is an integer ** which is stored in the key size entry of the cell header rather than in ** the payload area. ** ** The cell pointer array begins on the first byte after the page header. ** The cell pointer array contains zero or more 2-byte numbers which are ** offsets from the beginning of the page to the cell content in the cell ** content area. The cell pointers occur in sorted order. The system strives ** to keep free space after the last cell pointer so that new cells can ** be easily added without having to defragment the page. ** ** Cell content is stored at the very end of the page and grows toward the ** beginning of the page. ** ** Unused space within the cell content area is collected into a linked list of ** freeblocks. Each freeblock is at least 4 bytes in size. The byte offset ** to the first freeblock is given in the header. Freeblocks occur in ** increasing order. Because a freeblock must be at least 4 bytes in size, ** any group of 3 or fewer unused bytes in the cell content area cannot ** exist on the freeblock chain. A group of 3 or fewer free bytes is called ** a fragment. The total number of bytes in all fragments is recorded. ** in the page header at offset 7. ** ** SIZE DESCRIPTION ** 2 Byte offset of the next freeblock ** 2 Bytes in this freeblock ** ** Cells are of variable length. Cells are stored in the cell content area at ** the end of the page. Pointers to the cells are in the cell pointer array ** that immediately follows the page header. Cells is not necessarily ** contiguous or in order, but cell pointers are contiguous and in order. ** ** Cell content makes use of variable length integers. A variable ** length integer is 1 to 9 bytes where the lower 7 bits of each ** byte are used. The integer consists of all bytes that have bit 8 set and ** the first byte with bit 8 clear. The most significant byte of the integer ** appears first. A variable-length integer may not be more than 9 bytes long. ** As a special case, all 8 bytes of the 9th byte are used as data. This ** allows a 64-bit integer to be encoded in 9 bytes. ** ** 0x00 becomes 0x00000000 ** 0x7f becomes 0x0000007f ** 0x81 0x00 becomes 0x00000080 ** 0x82 0x00 becomes 0x00000100 ** 0x80 0x7f becomes 0x0000007f ** 0x8a 0x91 0xd1 0xac 0x78 becomes 0x12345678 ** 0x81 0x81 0x81 0x81 0x01 becomes 0x10204081 ** ** Variable length integers are used for rowids and to hold the number of ** bytes of key and data in a btree cell. ** ** The content of a cell looks like this: ** ** SIZE DESCRIPTION ** 4 Page number of the left child. Omitted if leaf flag is set. ** var Number of bytes of data. Omitted if the zerodata flag is set. ** var Number of bytes of key. Or the key itself if intkey flag is set. ** * Payload ** 4 First page of the overflow chain. Omitted if no overflow ** ** Overflow pages form a linked list. Each page except the last is completely ** filled with data (pagesize - 4 bytes). The last page can have as little ** as 1 byte of data. ** ** SIZE DESCRIPTION ** 4 Page number of next overflow page ** * Data ** ** Freelist pages come in two subtypes: trunk pages and leaf pages. The ** file header points to the first in a linked list of trunk page. Each trunk ** page points to multiple leaf pages. The content of a leaf page is ** unspecified. A trunk page looks like this: ** ** SIZE DESCRIPTION ** 4 Page number of next trunk page ** 4 Number of leaf pointers on this page ** * zero or more pages numbers of leaves */ /* #include "sqliteInt.h" */ /* The following value is the maximum cell size assuming a maximum page ** size give above. */ #define MX_CELL_SIZE(pBt) ((int)(pBt->pageSize-8)) /* The maximum number of cells on a single page of the database. This ** assumes a minimum cell size of 6 bytes (4 bytes for the cell itself ** plus 2 bytes for the index to the cell in the page header). Such ** small cells will be rare, but they are possible. */ #define MX_CELL(pBt) ((pBt->pageSize-8)/6) /* Forward declarations */ typedef struct MemPage MemPage; typedef struct BtLock BtLock; typedef struct CellInfo CellInfo; /* ** This is a magic string that appears at the beginning of every ** SQLite database in order to identify the file as a real database. ** ** You can change this value at compile-time by specifying a ** -DSQLITE_FILE_HEADER="..." on the compiler command-line. The ** header must be exactly 16 bytes including the zero-terminator so ** the string itself should be 15 characters long. If you change ** the header, then your custom library will not be able to read ** databases generated by the standard tools and the standard tools ** will not be able to read databases created by your custom library. */ #ifndef SQLITE_FILE_HEADER /* 123456789 123456 */ # define SQLITE_FILE_HEADER "SQLite format 3" #endif /* ** Page type flags. An ORed combination of these flags appear as the ** first byte of on-disk image of every BTree page. */ #define PTF_INTKEY 0x01 #define PTF_ZERODATA 0x02 #define PTF_LEAFDATA 0x04 #define PTF_LEAF 0x08 /* ** An instance of this object stores information about each a single database ** page that has been loaded into memory. The information in this object ** is derived from the raw on-disk page content. ** ** As each database page is loaded into memory, the pager allocats an ** instance of this object and zeros the first 8 bytes. (This is the ** "extra" information associated with each page of the pager.) ** ** Access to all fields of this structure is controlled by the mutex ** stored in MemPage.pBt->mutex. */ struct MemPage { u8 isInit; /* True if previously initialized. MUST BE FIRST! */ u8 intKey; /* True if table b-trees. False for index b-trees */ u8 intKeyLeaf; /* True if the leaf of an intKey table */ Pgno pgno; /* Page number for this page */ /* Only the first 8 bytes (above) are zeroed by pager.c when a new page ** is allocated. All fields that follow must be initialized before use */ u8 leaf; /* True if a leaf page */ u8 hdrOffset; /* 100 for page 1. 0 otherwise */ u8 childPtrSize; /* 0 if leaf==1. 4 if leaf==0 */ u8 max1bytePayload; /* min(maxLocal,127) */ u8 nOverflow; /* Number of overflow cell bodies in aCell[] */ u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */ u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */ u16 cellOffset; /* Index in aData of first cell pointer */ int nFree; /* Number of free bytes on the page. -1 for unknown */ u16 nCell; /* Number of cells on this page, local and ovfl */ u16 maskPage; /* Mask for page offset */ u16 aiOvfl[4]; /* Insert the i-th overflow cell before the aiOvfl-th ** non-overflow cell */ u8 *apOvfl[4]; /* Pointers to the body of overflow cells */ BtShared *pBt; /* Pointer to BtShared that this page is part of */ u8 *aData; /* Pointer to disk image of the page data */ u8 *aDataEnd; /* One byte past the end of usable data */ u8 *aCellIdx; /* The cell index area */ u8 *aDataOfst; /* Same as aData for leaves. aData+4 for interior */ DbPage *pDbPage; /* Pager page handle */ u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */ void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */ }; /* ** A linked list of the following structures is stored at BtShared.pLock. ** Locks are added (or upgraded from READ_LOCK to WRITE_LOCK) when a cursor ** is opened on the table with root page BtShared.iTable. Locks are removed ** from this list when a transaction is committed or rolled back, or when ** a btree handle is closed. */ struct BtLock { Btree *pBtree; /* Btree handle holding this lock */ Pgno iTable; /* Root page of table */ u8 eLock; /* READ_LOCK or WRITE_LOCK */ BtLock *pNext; /* Next in BtShared.pLock list */ }; /* Candidate values for BtLock.eLock */ #define READ_LOCK 1 #define WRITE_LOCK 2 /* A Btree handle ** ** A database connection contains a pointer to an instance of ** this object for every database file that it has open. This structure ** is opaque to the database connection. The database connection cannot ** see the internals of this structure and only deals with pointers to ** this structure. ** ** For some database files, the same underlying database cache might be ** shared between multiple connections. In that case, each connection ** has it own instance of this object. But each instance of this object ** points to the same BtShared object. The database cache and the ** schema associated with the database file are all contained within ** the BtShared object. ** ** All fields in this structure are accessed under sqlite3.mutex. ** The pBt pointer itself may not be changed while there exists cursors ** in the referenced BtShared that point back to this Btree since those ** cursors have to go through this Btree to find their BtShared and ** they often do so without holding sqlite3.mutex. */ struct Btree { sqlite3 *db; /* The database connection holding this btree */ BtShared *pBt; /* Sharable content of this btree */ u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */ u8 sharable; /* True if we can share pBt with another db */ u8 locked; /* True if db currently has pBt locked */ u8 hasIncrblobCur; /* True if there are one or more Incrblob cursors */ int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */ int nBackup; /* Number of backup operations reading this btree */ u32 iBDataVersion; /* Combines with pBt->pPager->iDataVersion */ Btree *pNext; /* List of other sharable Btrees from the same db */ Btree *pPrev; /* Back pointer of the same list */ #ifdef SQLITE_DEBUG u64 nSeek; /* Calls to sqlite3BtreeMovetoUnpacked() */ #endif #ifndef SQLITE_OMIT_SHARED_CACHE BtLock lock; /* Object used to lock page 1 */ #endif }; /* ** Btree.inTrans may take one of the following values. ** ** If the shared-data extension is enabled, there may be multiple users ** of the Btree structure. At most one of these may open a write transaction, ** but any number may have active read transactions. ** ** These values must match SQLITE_TXN_NONE, SQLITE_TXN_READ, and ** SQLITE_TXN_WRITE */ #define TRANS_NONE 0 #define TRANS_READ 1 #define TRANS_WRITE 2 #if TRANS_NONE!=SQLITE_TXN_NONE # error wrong numeric code for no-transaction #endif #if TRANS_READ!=SQLITE_TXN_READ # error wrong numeric code for read-transaction #endif #if TRANS_WRITE!=SQLITE_TXN_WRITE # error wrong numeric code for write-transaction #endif /* ** An instance of this object represents a single database file. ** ** A single database file can be in use at the same time by two ** or more database connections. When two or more connections are ** sharing the same database file, each connection has it own ** private Btree object for the file and each of those Btrees points ** to this one BtShared object. BtShared.nRef is the number of ** connections currently sharing this database file. ** ** Fields in this structure are accessed under the BtShared.mutex ** mutex, except for nRef and pNext which are accessed under the ** global SQLITE_MUTEX_STATIC_MAIN mutex. The pPager field ** may not be modified once it is initially set as long as nRef>0. ** The pSchema field may be set once under BtShared.mutex and ** thereafter is unchanged as long as nRef>0. ** ** isPending: ** ** If a BtShared client fails to obtain a write-lock on a database ** table (because there exists one or more read-locks on the table), ** the shared-cache enters 'pending-lock' state and isPending is ** set to true. ** ** The shared-cache leaves the 'pending lock' state when either of ** the following occur: ** ** 1) The current writer (BtShared.pWriter) concludes its transaction, OR ** 2) The number of locks held by other connections drops to zero. ** ** while in the 'pending-lock' state, no connection may start a new ** transaction. ** ** This feature is included to help prevent writer-starvation. */ struct BtShared { Pager *pPager; /* The page cache */ sqlite3 *db; /* Database connection currently using this Btree */ BtCursor *pCursor; /* A list of all open cursors */ MemPage *pPage1; /* First page of the database */ u8 openFlags; /* Flags to sqlite3BtreeOpen() */ #ifndef SQLITE_OMIT_AUTOVACUUM u8 autoVacuum; /* True if auto-vacuum is enabled */ u8 incrVacuum; /* True if incr-vacuum is enabled */ u8 bDoTruncate; /* True to truncate db on commit */ #endif u8 inTransaction; /* Transaction state */ u8 max1bytePayload; /* Maximum first byte of cell for a 1-byte payload */ u8 nReserveWanted; /* Desired number of extra bytes per page */ u16 btsFlags; /* Boolean parameters. See BTS_* macros below */ u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */ u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */ u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */ u16 minLeaf; /* Minimum local payload in a LEAFDATA table */ u32 pageSize; /* Total number of bytes on a page */ u32 usableSize; /* Number of usable bytes on each page */ int nTransaction; /* Number of open transactions (read + write) */ u32 nPage; /* Number of pages in the database */ void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */ void (*xFreeSchema)(void*); /* Destructor for BtShared.pSchema */ sqlite3_mutex *mutex; /* Non-recursive mutex required to access this object */ Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */ #ifndef SQLITE_OMIT_SHARED_CACHE int nRef; /* Number of references to this structure */ BtShared *pNext; /* Next on a list of sharable BtShared structs */ BtLock *pLock; /* List of locks held on this shared-btree struct */ Btree *pWriter; /* Btree with currently open write transaction */ #endif u8 *pTmpSpace; /* Temp space sufficient to hold a single cell */ int nPreformatSize; /* Size of last cell written by TransferRow() */ }; /* ** Allowed values for BtShared.btsFlags */ #define BTS_READ_ONLY 0x0001 /* Underlying file is readonly */ #define BTS_PAGESIZE_FIXED 0x0002 /* Page size can no longer be changed */ #define BTS_SECURE_DELETE 0x0004 /* PRAGMA secure_delete is enabled */ #define BTS_OVERWRITE 0x0008 /* Overwrite deleted content with zeros */ #define BTS_FAST_SECURE 0x000c /* Combination of the previous two */ #define BTS_INITIALLY_EMPTY 0x0010 /* Database was empty at trans start */ #define BTS_NO_WAL 0x0020 /* Do not open write-ahead-log files */ #define BTS_EXCLUSIVE 0x0040 /* pWriter has an exclusive lock */ #define BTS_PENDING 0x0080 /* Waiting for read-locks to clear */ /* ** An instance of the following structure is used to hold information ** about a cell. The parseCellPtr() function fills in this structure ** based on information extract from the raw disk page. */ struct CellInfo { i64 nKey; /* The key for INTKEY tables, or nPayload otherwise */ u8 *pPayload; /* Pointer to the start of payload */ u32 nPayload; /* Bytes of payload */ u16 nLocal; /* Amount of payload held locally, not on overflow */ u16 nSize; /* Size of the cell content on the main b-tree page */ }; /* ** Maximum depth of an SQLite B-Tree structure. Any B-Tree deeper than ** this will be declared corrupt. This value is calculated based on a ** maximum database size of 2^31 pages a minimum fanout of 2 for a ** root-node and 3 for all other internal nodes. ** ** If a tree that appears to be taller than this is encountered, it is ** assumed that the database is corrupt. */ #define BTCURSOR_MAX_DEPTH 20 /* ** A cursor is a pointer to a particular entry within a particular ** b-tree within a database file. ** ** The entry is identified by its MemPage and the index in ** MemPage.aCell[] of the entry. ** ** A single database file can be shared by two more database connections, ** but cursors cannot be shared. Each cursor is associated with a ** particular database connection identified BtCursor.pBtree.db. ** ** Fields in this structure are accessed under the BtShared.mutex ** found at self->pBt->mutex. ** ** skipNext meaning: ** The meaning of skipNext depends on the value of eState: ** ** eState Meaning of skipNext ** VALID skipNext is meaningless and is ignored ** INVALID skipNext is meaningless and is ignored ** SKIPNEXT sqlite3BtreeNext() is a no-op if skipNext>0 and ** sqlite3BtreePrevious() is no-op if skipNext<0. ** REQUIRESEEK restoreCursorPosition() restores the cursor to ** eState=SKIPNEXT if skipNext!=0 ** FAULT skipNext holds the cursor fault error code. */ struct BtCursor { u8 eState; /* One of the CURSOR_XXX constants (see below) */ u8 curFlags; /* zero or more BTCF_* flags defined below */ u8 curPagerFlags; /* Flags to send to sqlite3PagerGet() */ u8 hints; /* As configured by CursorSetHints() */ int skipNext; /* Prev() is noop if negative. Next() is noop if positive. ** Error code if eState==CURSOR_FAULT */ Btree *pBtree; /* The Btree to which this cursor belongs */ Pgno *aOverflow; /* Cache of overflow page locations */ void *pKey; /* Saved key that was cursor last known position */ /* All fields above are zeroed when the cursor is allocated. See ** sqlite3BtreeCursorZero(). Fields that follow must be manually ** initialized. */ #define BTCURSOR_FIRST_UNINIT pBt /* Name of first uninitialized field */ BtShared *pBt; /* The BtShared this cursor points to */ BtCursor *pNext; /* Forms a linked list of all cursors */ CellInfo info; /* A parse of the cell we are pointing at */ i64 nKey; /* Size of pKey, or last integer key */ Pgno pgnoRoot; /* The root page of this tree */ i8 iPage; /* Index of current page in apPage */ u8 curIntKey; /* Value of apPage[0]->intKey */ u16 ix; /* Current index for apPage[iPage] */ u16 aiIdx[BTCURSOR_MAX_DEPTH-1]; /* Current index in apPage[i] */ struct KeyInfo *pKeyInfo; /* Arg passed to comparison function */ MemPage *pPage; /* Current page */ MemPage *apPage[BTCURSOR_MAX_DEPTH-1]; /* Stack of parents of current page */ }; /* ** Legal values for BtCursor.curFlags */ #define BTCF_WriteFlag 0x01 /* True if a write cursor */ #define BTCF_ValidNKey 0x02 /* True if info.nKey is valid */ #define BTCF_ValidOvfl 0x04 /* True if aOverflow is valid */ #define BTCF_AtLast 0x08 /* Cursor is pointing ot the last entry */ #define BTCF_Incrblob 0x10 /* True if an incremental I/O handle */ #define BTCF_Multiple 0x20 /* Maybe another cursor on the same btree */ #define BTCF_Pinned 0x40 /* Cursor is busy and cannot be moved */ /* ** Potential values for BtCursor.eState. ** ** CURSOR_INVALID: ** Cursor does not point to a valid entry. This can happen (for example) ** because the table is empty or because BtreeCursorFirst() has not been ** called. ** ** CURSOR_VALID: ** Cursor points to a valid entry. getPayload() etc. may be called. ** ** CURSOR_SKIPNEXT: ** Cursor is valid except that the Cursor.skipNext field is non-zero ** indicating that the next sqlite3BtreeNext() or sqlite3BtreePrevious() ** operation should be a no-op. ** ** CURSOR_REQUIRESEEK: ** The table that this cursor was opened on still exists, but has been ** modified since the cursor was last used. The cursor position is saved ** in variables BtCursor.pKey and BtCursor.nKey. When a cursor is in ** this state, restoreCursorPosition() can be called to attempt to ** seek the cursor to the saved position. ** ** CURSOR_FAULT: ** An unrecoverable error (an I/O error or a malloc failure) has occurred ** on a different connection that shares the BtShared cache with this ** cursor. The error has left the cache in an inconsistent state. ** Do nothing else with this cursor. Any attempt to use the cursor ** should return the error code stored in BtCursor.skipNext */ #define CURSOR_VALID 0 #define CURSOR_INVALID 1 #define CURSOR_SKIPNEXT 2 #define CURSOR_REQUIRESEEK 3 #define CURSOR_FAULT 4 /* ** The database page the PENDING_BYTE occupies. This page is never used. */ # define PENDING_BYTE_PAGE(pBt) PAGER_MJ_PGNO(pBt) /* ** These macros define the location of the pointer-map entry for a ** database page. The first argument to each is the number of usable ** bytes on each page of the database (often 1024). The second is the ** page number to look up in the pointer map. ** ** PTRMAP_PAGENO returns the database page number of the pointer-map ** page that stores the required pointer. PTRMAP_PTROFFSET returns ** the offset of the requested map entry. ** ** If the pgno argument passed to PTRMAP_PAGENO is a pointer-map page, ** then pgno is returned. So (pgno==PTRMAP_PAGENO(pgsz, pgno)) can be ** used to test if pgno is a pointer-map page. PTRMAP_ISPAGE implements ** this test. */ #define PTRMAP_PAGENO(pBt, pgno) ptrmapPageno(pBt, pgno) #define PTRMAP_PTROFFSET(pgptrmap, pgno) (5*(pgno-pgptrmap-1)) #define PTRMAP_ISPAGE(pBt, pgno) (PTRMAP_PAGENO((pBt),(pgno))==(pgno)) /* ** The pointer map is a lookup table that identifies the parent page for ** each child page in the database file. The parent page is the page that ** contains a pointer to the child. Every page in the database contains ** 0 or 1 parent pages. (In this context 'database page' refers ** to any page that is not part of the pointer map itself.) Each pointer map ** entry consists of a single byte 'type' and a 4 byte parent page number. ** The PTRMAP_XXX identifiers below are the valid types. ** ** The purpose of the pointer map is to facility moving pages from one ** position in the file to another as part of autovacuum. When a page ** is moved, the pointer in its parent must be updated to point to the ** new location. The pointer map is used to locate the parent page quickly. ** ** PTRMAP_ROOTPAGE: The database page is a root-page. The page-number is not ** used in this case. ** ** PTRMAP_FREEPAGE: The database page is an unused (free) page. The page-number ** is not used in this case. ** ** PTRMAP_OVERFLOW1: The database page is the first page in a list of ** overflow pages. The page number identifies the page that ** contains the cell with a pointer to this overflow page. ** ** PTRMAP_OVERFLOW2: The database page is the second or later page in a list of ** overflow pages. The page-number identifies the previous ** page in the overflow page list. ** ** PTRMAP_BTREE: The database page is a non-root btree page. The page number ** identifies the parent page in the btree. */ #define PTRMAP_ROOTPAGE 1 #define PTRMAP_FREEPAGE 2 #define PTRMAP_OVERFLOW1 3 #define PTRMAP_OVERFLOW2 4 #define PTRMAP_BTREE 5 /* A bunch of assert() statements to check the transaction state variables ** of handle p (type Btree*) are internally consistent. */ #define btreeIntegrity(p) \ assert( p->pBt->inTransaction!=TRANS_NONE || p->pBt->nTransaction==0 ); \ assert( p->pBt->inTransaction>=p->inTrans ); /* ** The ISAUTOVACUUM macro is used within balance_nonroot() to determine ** if the database supports auto-vacuum or not. Because it is used ** within an expression that is an argument to another macro ** (sqliteMallocRaw), it is not possible to use conditional compilation. ** So, this macro is defined instead. */ #ifndef SQLITE_OMIT_AUTOVACUUM #define ISAUTOVACUUM (pBt->autoVacuum) #else #define ISAUTOVACUUM 0 #endif /* ** This structure is passed around through all the sanity checking routines ** in order to keep track of some global state information. ** ** The aRef[] array is allocated so that there is 1 bit for each page in ** the database. As the integrity-check proceeds, for each page used in ** the database the corresponding bit is set. This allows integrity-check to ** detect pages that are used twice and orphaned pages (both of which ** indicate corruption). */ typedef struct IntegrityCk IntegrityCk; struct IntegrityCk { BtShared *pBt; /* The tree being checked out */ Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */ u8 *aPgRef; /* 1 bit per page in the db (see above) */ Pgno nPage; /* Number of pages in the database */ int mxErr; /* Stop accumulating errors when this reaches zero */ int nErr; /* Number of messages written to zErrMsg so far */ int bOomFault; /* A memory allocation error has occurred */ const char *zPfx; /* Error message prefix */ Pgno v1; /* Value for first %u substitution in zPfx */ int v2; /* Value for second %d substitution in zPfx */ StrAccum errMsg; /* Accumulate the error message text here */ u32 *heap; /* Min-heap used for analyzing cell coverage */ sqlite3 *db; /* Database connection running the check */ }; /* ** Routines to read or write a two- and four-byte big-endian integer values. */ #define get2byte(x) ((x)[0]<<8 | (x)[1]) #define put2byte(p,v) ((p)[0] = (u8)((v)>>8), (p)[1] = (u8)(v)) #define get4byte sqlite3Get4byte #define put4byte sqlite3Put4byte /* ** get2byteAligned(), unlike get2byte(), requires that its argument point to a ** two-byte aligned address. get2bytea() is only used for accessing the ** cell addresses in a btree header. */ #if SQLITE_BYTEORDER==4321 # define get2byteAligned(x) (*(u16*)(x)) #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4008000 # define get2byteAligned(x) __builtin_bswap16(*(u16*)(x)) #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 # define get2byteAligned(x) _byteswap_ushort(*(u16*)(x)) #else # define get2byteAligned(x) ((x)[0]<<8 | (x)[1]) #endif /************** End of btreeInt.h ********************************************/ /************** Continuing where we left off in btmutex.c ********************/ #ifndef SQLITE_OMIT_SHARED_CACHE #if SQLITE_THREADSAFE /* ** Obtain the BtShared mutex associated with B-Tree handle p. Also, ** set BtShared.db to the database handle associated with p and the ** p->locked boolean to true. */ static void lockBtreeMutex(Btree *p){ assert( p->locked==0 ); assert( sqlite3_mutex_notheld(p->pBt->mutex) ); assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3_mutex_enter(p->pBt->mutex); p->pBt->db = p->db; p->locked = 1; } /* ** Release the BtShared mutex associated with B-Tree handle p and ** clear the p->locked boolean. */ static void SQLITE_NOINLINE unlockBtreeMutex(Btree *p){ BtShared *pBt = p->pBt; assert( p->locked==1 ); assert( sqlite3_mutex_held(pBt->mutex) ); assert( sqlite3_mutex_held(p->db->mutex) ); assert( p->db==pBt->db ); sqlite3_mutex_leave(pBt->mutex); p->locked = 0; } /* Forward reference */ static void SQLITE_NOINLINE btreeLockCarefully(Btree *p); /* ** Enter a mutex on the given BTree object. ** ** If the object is not sharable, then no mutex is ever required ** and this routine is a no-op. The underlying mutex is non-recursive. ** But we keep a reference count in Btree.wantToLock so the behavior ** of this interface is recursive. ** ** To avoid deadlocks, multiple Btrees are locked in the same order ** by all database connections. The p->pNext is a list of other ** Btrees belonging to the same database connection as the p Btree ** which need to be locked after p. If we cannot get a lock on ** p, then first unlock all of the others on p->pNext, then wait ** for the lock to become available on p, then relock all of the ** subsequent Btrees that desire a lock. */ SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){ /* Some basic sanity checking on the Btree. The list of Btrees ** connected by pNext and pPrev should be in sorted order by ** Btree.pBt value. All elements of the list should belong to ** the same connection. Only shared Btrees are on the list. */ assert( p->pNext==0 || p->pNext->pBt>p->pBt ); assert( p->pPrev==0 || p->pPrev->pBtpBt ); assert( p->pNext==0 || p->pNext->db==p->db ); assert( p->pPrev==0 || p->pPrev->db==p->db ); assert( p->sharable || (p->pNext==0 && p->pPrev==0) ); /* Check for locking consistency */ assert( !p->locked || p->wantToLock>0 ); assert( p->sharable || p->wantToLock==0 ); /* We should already hold a lock on the database connection */ assert( sqlite3_mutex_held(p->db->mutex) ); /* Unless the database is sharable and unlocked, then BtShared.db ** should already be set correctly. */ assert( (p->locked==0 && p->sharable) || p->pBt->db==p->db ); if( !p->sharable ) return; p->wantToLock++; if( p->locked ) return; btreeLockCarefully(p); } /* This is a helper function for sqlite3BtreeLock(). By moving ** complex, but seldom used logic, out of sqlite3BtreeLock() and ** into this routine, we avoid unnecessary stack pointer changes ** and thus help the sqlite3BtreeLock() routine to run much faster ** in the common case. */ static void SQLITE_NOINLINE btreeLockCarefully(Btree *p){ Btree *pLater; /* In most cases, we should be able to acquire the lock we ** want without having to go through the ascending lock ** procedure that follows. Just be sure not to block. */ if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){ p->pBt->db = p->db; p->locked = 1; return; } /* To avoid deadlock, first release all locks with a larger ** BtShared address. Then acquire our lock. Then reacquire ** the other BtShared locks that we used to hold in ascending ** order. */ for(pLater=p->pNext; pLater; pLater=pLater->pNext){ assert( pLater->sharable ); assert( pLater->pNext==0 || pLater->pNext->pBt>pLater->pBt ); assert( !pLater->locked || pLater->wantToLock>0 ); if( pLater->locked ){ unlockBtreeMutex(pLater); } } lockBtreeMutex(p); for(pLater=p->pNext; pLater; pLater=pLater->pNext){ if( pLater->wantToLock ){ lockBtreeMutex(pLater); } } } /* ** Exit the recursive mutex on a Btree. */ SQLITE_PRIVATE void sqlite3BtreeLeave(Btree *p){ assert( sqlite3_mutex_held(p->db->mutex) ); if( p->sharable ){ assert( p->wantToLock>0 ); p->wantToLock--; if( p->wantToLock==0 ){ unlockBtreeMutex(p); } } } #ifndef NDEBUG /* ** Return true if the BtShared mutex is held on the btree, or if the ** B-Tree is not marked as sharable. ** ** This routine is used only from within assert() statements. */ SQLITE_PRIVATE int sqlite3BtreeHoldsMutex(Btree *p){ assert( p->sharable==0 || p->locked==0 || p->wantToLock>0 ); assert( p->sharable==0 || p->locked==0 || p->db==p->pBt->db ); assert( p->sharable==0 || p->locked==0 || sqlite3_mutex_held(p->pBt->mutex) ); assert( p->sharable==0 || p->locked==0 || sqlite3_mutex_held(p->db->mutex) ); return (p->sharable==0 || p->locked); } #endif /* ** Enter the mutex on every Btree associated with a database ** connection. This is needed (for example) prior to parsing ** a statement since we will be comparing table and column names ** against all schemas and we do not want those schemas being ** reset out from under us. ** ** There is a corresponding leave-all procedures. ** ** Enter the mutexes in accending order by BtShared pointer address ** to avoid the possibility of deadlock when two threads with ** two or more btrees in common both try to lock all their btrees ** at the same instant. */ static void SQLITE_NOINLINE btreeEnterAll(sqlite3 *db){ int i; int skipOk = 1; Btree *p; assert( sqlite3_mutex_held(db->mutex) ); for(i=0; inDb; i++){ p = db->aDb[i].pBt; if( p && p->sharable ){ sqlite3BtreeEnter(p); skipOk = 0; } } db->noSharedCache = skipOk; } SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){ if( db->noSharedCache==0 ) btreeEnterAll(db); } static void SQLITE_NOINLINE btreeLeaveAll(sqlite3 *db){ int i; Btree *p; assert( sqlite3_mutex_held(db->mutex) ); for(i=0; inDb; i++){ p = db->aDb[i].pBt; if( p ) sqlite3BtreeLeave(p); } } SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3 *db){ if( db->noSharedCache==0 ) btreeLeaveAll(db); } #ifndef NDEBUG /* ** Return true if the current thread holds the database connection ** mutex and all required BtShared mutexes. ** ** This routine is used inside assert() statements only. */ SQLITE_PRIVATE int sqlite3BtreeHoldsAllMutexes(sqlite3 *db){ int i; if( !sqlite3_mutex_held(db->mutex) ){ return 0; } for(i=0; inDb; i++){ Btree *p; p = db->aDb[i].pBt; if( p && p->sharable && (p->wantToLock==0 || !sqlite3_mutex_held(p->pBt->mutex)) ){ return 0; } } return 1; } #endif /* NDEBUG */ #ifndef NDEBUG /* ** Return true if the correct mutexes are held for accessing the ** db->aDb[iDb].pSchema structure. The mutexes required for schema ** access are: ** ** (1) The mutex on db ** (2) if iDb!=1, then the mutex on db->aDb[iDb].pBt. ** ** If pSchema is not NULL, then iDb is computed from pSchema and ** db using sqlite3SchemaToIndex(). */ SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3 *db, int iDb, Schema *pSchema){ Btree *p; assert( db!=0 ); if( pSchema ) iDb = sqlite3SchemaToIndex(db, pSchema); assert( iDb>=0 && iDbnDb ); if( !sqlite3_mutex_held(db->mutex) ) return 0; if( iDb==1 ) return 1; p = db->aDb[iDb].pBt; assert( p!=0 ); return p->sharable==0 || p->locked==1; } #endif /* NDEBUG */ #else /* SQLITE_THREADSAFE>0 above. SQLITE_THREADSAFE==0 below */ /* ** The following are special cases for mutex enter routines for use ** in single threaded applications that use shared cache. Except for ** these two routines, all mutex operations are no-ops in that case and ** are null #defines in btree.h. ** ** If shared cache is disabled, then all btree mutex routines, including ** the ones below, are no-ops and are null #defines in btree.h. */ SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){ p->pBt->db = p->db; } SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){ int i; for(i=0; inDb; i++){ Btree *p = db->aDb[i].pBt; if( p ){ p->pBt->db = p->db; } } } #endif /* if SQLITE_THREADSAFE */ #ifndef SQLITE_OMIT_INCRBLOB /* ** Enter a mutex on a Btree given a cursor owned by that Btree. ** ** These entry points are used by incremental I/O only. Enter() is required ** any time OMIT_SHARED_CACHE is not defined, regardless of whether or not ** the build is threadsafe. Leave() is only required by threadsafe builds. */ SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor *pCur){ sqlite3BtreeEnter(pCur->pBtree); } # if SQLITE_THREADSAFE SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor *pCur){ sqlite3BtreeLeave(pCur->pBtree); } # endif #endif /* ifndef SQLITE_OMIT_INCRBLOB */ #endif /* ifndef SQLITE_OMIT_SHARED_CACHE */ /************** End of btmutex.c *********************************************/ /************** Begin file btree.c *******************************************/ /* ** 2004 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements an external (disk-based) database using BTrees. ** See the header comment on "btreeInt.h" for additional information. ** Including a description of file format and an overview of operation. */ /* #include "btreeInt.h" */ /* ** The header string that appears at the beginning of every ** SQLite database. */ static const char zMagicHeader[] = SQLITE_FILE_HEADER; /* ** Set this global variable to 1 to enable tracing using the TRACE ** macro. */ #if 0 int sqlite3BtreeTrace=1; /* True to enable tracing */ # define TRACE(X) if(sqlite3BtreeTrace){printf X;fflush(stdout);} #else # define TRACE(X) #endif /* ** Extract a 2-byte big-endian integer from an array of unsigned bytes. ** But if the value is zero, make it 65536. ** ** This routine is used to extract the "offset to cell content area" value ** from the header of a btree page. If the page size is 65536 and the page ** is empty, the offset should be 65536, but the 2-byte value stores zero. ** This routine makes the necessary adjustment to 65536. */ #define get2byteNotZero(X) (((((int)get2byte(X))-1)&0xffff)+1) /* ** Values passed as the 5th argument to allocateBtreePage() */ #define BTALLOC_ANY 0 /* Allocate any page */ #define BTALLOC_EXACT 1 /* Allocate exact page if possible */ #define BTALLOC_LE 2 /* Allocate any page <= the parameter */ /* ** Macro IfNotOmitAV(x) returns (x) if SQLITE_OMIT_AUTOVACUUM is not ** defined, or 0 if it is. For example: ** ** bIncrVacuum = IfNotOmitAV(pBtShared->incrVacuum); */ #ifndef SQLITE_OMIT_AUTOVACUUM #define IfNotOmitAV(expr) (expr) #else #define IfNotOmitAV(expr) 0 #endif #ifndef SQLITE_OMIT_SHARED_CACHE /* ** A list of BtShared objects that are eligible for participation ** in shared cache. This variable has file scope during normal builds, ** but the test harness needs to access it so we make it global for ** test builds. ** ** Access to this variable is protected by SQLITE_MUTEX_STATIC_MAIN. */ #ifdef SQLITE_TEST SQLITE_PRIVATE BtShared *SQLITE_WSD sqlite3SharedCacheList = 0; #else static BtShared *SQLITE_WSD sqlite3SharedCacheList = 0; #endif #endif /* SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Enable or disable the shared pager and schema features. ** ** This routine has no effect on existing database connections. ** The shared cache setting effects only future calls to ** sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2(). */ SQLITE_API int sqlite3_enable_shared_cache(int enable){ sqlite3GlobalConfig.sharedCacheEnabled = enable; return SQLITE_OK; } #endif #ifdef SQLITE_OMIT_SHARED_CACHE /* ** The functions querySharedCacheTableLock(), setSharedCacheTableLock(), ** and clearAllSharedCacheTableLocks() ** manipulate entries in the BtShared.pLock linked list used to store ** shared-cache table level locks. If the library is compiled with the ** shared-cache feature disabled, then there is only ever one user ** of each BtShared structure and so this locking is not necessary. ** So define the lock related functions as no-ops. */ #define querySharedCacheTableLock(a,b,c) SQLITE_OK #define setSharedCacheTableLock(a,b,c) SQLITE_OK #define clearAllSharedCacheTableLocks(a) #define downgradeAllSharedCacheTableLocks(a) #define hasSharedCacheTableLock(a,b,c,d) 1 #define hasReadConflicts(a, b) 0 #endif #ifdef SQLITE_DEBUG /* ** Return and reset the seek counter for a Btree object. */ SQLITE_PRIVATE sqlite3_uint64 sqlite3BtreeSeekCount(Btree *pBt){ u64 n = pBt->nSeek; pBt->nSeek = 0; return n; } #endif /* ** Implementation of the SQLITE_CORRUPT_PAGE() macro. Takes a single ** (MemPage*) as an argument. The (MemPage*) must not be NULL. ** ** If SQLITE_DEBUG is not defined, then this macro is equivalent to ** SQLITE_CORRUPT_BKPT. Or, if SQLITE_DEBUG is set, then the log message ** normally produced as a side-effect of SQLITE_CORRUPT_BKPT is augmented ** with the page number and filename associated with the (MemPage*). */ #ifdef SQLITE_DEBUG int corruptPageError(int lineno, MemPage *p){ char *zMsg; sqlite3BeginBenignMalloc(); zMsg = sqlite3_mprintf("database corruption page %d of %s", (int)p->pgno, sqlite3PagerFilename(p->pBt->pPager, 0) ); sqlite3EndBenignMalloc(); if( zMsg ){ sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); } sqlite3_free(zMsg); return SQLITE_CORRUPT_BKPT; } # define SQLITE_CORRUPT_PAGE(pMemPage) corruptPageError(__LINE__, pMemPage) #else # define SQLITE_CORRUPT_PAGE(pMemPage) SQLITE_CORRUPT_PGNO(pMemPage->pgno) #endif #ifndef SQLITE_OMIT_SHARED_CACHE #ifdef SQLITE_DEBUG /* **** This function is only used as part of an assert() statement. *** ** ** Check to see if pBtree holds the required locks to read or write to the ** table with root page iRoot. Return 1 if it does and 0 if not. ** ** For example, when writing to a table with root-page iRoot via ** Btree connection pBtree: ** ** assert( hasSharedCacheTableLock(pBtree, iRoot, 0, WRITE_LOCK) ); ** ** When writing to an index that resides in a sharable database, the ** caller should have first obtained a lock specifying the root page of ** the corresponding table. This makes things a bit more complicated, ** as this module treats each table as a separate structure. To determine ** the table corresponding to the index being written, this ** function has to search through the database schema. ** ** Instead of a lock on the table/index rooted at page iRoot, the caller may ** hold a write-lock on the schema table (root page 1). This is also ** acceptable. */ static int hasSharedCacheTableLock( Btree *pBtree, /* Handle that must hold lock */ Pgno iRoot, /* Root page of b-tree */ int isIndex, /* True if iRoot is the root of an index b-tree */ int eLockType /* Required lock type (READ_LOCK or WRITE_LOCK) */ ){ Schema *pSchema = (Schema *)pBtree->pBt->pSchema; Pgno iTab = 0; BtLock *pLock; /* If this database is not shareable, or if the client is reading ** and has the read-uncommitted flag set, then no lock is required. ** Return true immediately. */ if( (pBtree->sharable==0) || (eLockType==READ_LOCK && (pBtree->db->flags & SQLITE_ReadUncommit)) ){ return 1; } /* If the client is reading or writing an index and the schema is ** not loaded, then it is too difficult to actually check to see if ** the correct locks are held. So do not bother - just return true. ** This case does not come up very often anyhow. */ if( isIndex && (!pSchema || (pSchema->schemaFlags&DB_SchemaLoaded)==0) ){ return 1; } /* Figure out the root-page that the lock should be held on. For table ** b-trees, this is just the root page of the b-tree being read or ** written. For index b-trees, it is the root page of the associated ** table. */ if( isIndex ){ HashElem *p; int bSeen = 0; for(p=sqliteHashFirst(&pSchema->idxHash); p; p=sqliteHashNext(p)){ Index *pIdx = (Index *)sqliteHashData(p); if( pIdx->tnum==(int)iRoot ){ if( bSeen ){ /* Two or more indexes share the same root page. There must ** be imposter tables. So just return true. The assert is not ** useful in that case. */ return 1; } iTab = pIdx->pTable->tnum; bSeen = 1; } } }else{ iTab = iRoot; } /* Search for the required lock. Either a write-lock on root-page iTab, a ** write-lock on the schema table, or (if the client is reading) a ** read-lock on iTab will suffice. Return 1 if any of these are found. */ for(pLock=pBtree->pBt->pLock; pLock; pLock=pLock->pNext){ if( pLock->pBtree==pBtree && (pLock->iTable==iTab || (pLock->eLock==WRITE_LOCK && pLock->iTable==1)) && pLock->eLock>=eLockType ){ return 1; } } /* Failed to find the required lock. */ return 0; } #endif /* SQLITE_DEBUG */ #ifdef SQLITE_DEBUG /* **** This function may be used as part of assert() statements only. **** ** ** Return true if it would be illegal for pBtree to write into the ** table or index rooted at iRoot because other shared connections are ** simultaneously reading that same table or index. ** ** It is illegal for pBtree to write if some other Btree object that ** shares the same BtShared object is currently reading or writing ** the iRoot table. Except, if the other Btree object has the ** read-uncommitted flag set, then it is OK for the other object to ** have a read cursor. ** ** For example, before writing to any part of the table or index ** rooted at page iRoot, one should call: ** ** assert( !hasReadConflicts(pBtree, iRoot) ); */ static int hasReadConflicts(Btree *pBtree, Pgno iRoot){ BtCursor *p; for(p=pBtree->pBt->pCursor; p; p=p->pNext){ if( p->pgnoRoot==iRoot && p->pBtree!=pBtree && 0==(p->pBtree->db->flags & SQLITE_ReadUncommit) ){ return 1; } } return 0; } #endif /* #ifdef SQLITE_DEBUG */ /* ** Query to see if Btree handle p may obtain a lock of type eLock ** (READ_LOCK or WRITE_LOCK) on the table with root-page iTab. Return ** SQLITE_OK if the lock may be obtained (by calling ** setSharedCacheTableLock()), or SQLITE_LOCKED if not. */ static int querySharedCacheTableLock(Btree *p, Pgno iTab, u8 eLock){ BtShared *pBt = p->pBt; BtLock *pIter; assert( sqlite3BtreeHoldsMutex(p) ); assert( eLock==READ_LOCK || eLock==WRITE_LOCK ); assert( p->db!=0 ); assert( !(p->db->flags&SQLITE_ReadUncommit)||eLock==WRITE_LOCK||iTab==1 ); /* If requesting a write-lock, then the Btree must have an open write ** transaction on this file. And, obviously, for this to be so there ** must be an open write transaction on the file itself. */ assert( eLock==READ_LOCK || (p==pBt->pWriter && p->inTrans==TRANS_WRITE) ); assert( eLock==READ_LOCK || pBt->inTransaction==TRANS_WRITE ); /* This routine is a no-op if the shared-cache is not enabled */ if( !p->sharable ){ return SQLITE_OK; } /* If some other connection is holding an exclusive lock, the ** requested lock may not be obtained. */ if( pBt->pWriter!=p && (pBt->btsFlags & BTS_EXCLUSIVE)!=0 ){ sqlite3ConnectionBlocked(p->db, pBt->pWriter->db); return SQLITE_LOCKED_SHAREDCACHE; } for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ /* The condition (pIter->eLock!=eLock) in the following if(...) ** statement is a simplification of: ** ** (eLock==WRITE_LOCK || pIter->eLock==WRITE_LOCK) ** ** since we know that if eLock==WRITE_LOCK, then no other connection ** may hold a WRITE_LOCK on any table in this file (since there can ** only be a single writer). */ assert( pIter->eLock==READ_LOCK || pIter->eLock==WRITE_LOCK ); assert( eLock==READ_LOCK || pIter->pBtree==p || pIter->eLock==READ_LOCK); if( pIter->pBtree!=p && pIter->iTable==iTab && pIter->eLock!=eLock ){ sqlite3ConnectionBlocked(p->db, pIter->pBtree->db); if( eLock==WRITE_LOCK ){ assert( p==pBt->pWriter ); pBt->btsFlags |= BTS_PENDING; } return SQLITE_LOCKED_SHAREDCACHE; } } return SQLITE_OK; } #endif /* !SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Add a lock on the table with root-page iTable to the shared-btree used ** by Btree handle p. Parameter eLock must be either READ_LOCK or ** WRITE_LOCK. ** ** This function assumes the following: ** ** (a) The specified Btree object p is connected to a sharable ** database (one with the BtShared.sharable flag set), and ** ** (b) No other Btree objects hold a lock that conflicts ** with the requested lock (i.e. querySharedCacheTableLock() has ** already been called and returned SQLITE_OK). ** ** SQLITE_OK is returned if the lock is added successfully. SQLITE_NOMEM ** is returned if a malloc attempt fails. */ static int setSharedCacheTableLock(Btree *p, Pgno iTable, u8 eLock){ BtShared *pBt = p->pBt; BtLock *pLock = 0; BtLock *pIter; assert( sqlite3BtreeHoldsMutex(p) ); assert( eLock==READ_LOCK || eLock==WRITE_LOCK ); assert( p->db!=0 ); /* A connection with the read-uncommitted flag set will never try to ** obtain a read-lock using this function. The only read-lock obtained ** by a connection in read-uncommitted mode is on the sqlite_schema ** table, and that lock is obtained in BtreeBeginTrans(). */ assert( 0==(p->db->flags&SQLITE_ReadUncommit) || eLock==WRITE_LOCK ); /* This function should only be called on a sharable b-tree after it ** has been determined that no other b-tree holds a conflicting lock. */ assert( p->sharable ); assert( SQLITE_OK==querySharedCacheTableLock(p, iTable, eLock) ); /* First search the list for an existing lock on this table. */ for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ if( pIter->iTable==iTable && pIter->pBtree==p ){ pLock = pIter; break; } } /* If the above search did not find a BtLock struct associating Btree p ** with table iTable, allocate one and link it into the list. */ if( !pLock ){ pLock = (BtLock *)sqlite3MallocZero(sizeof(BtLock)); if( !pLock ){ return SQLITE_NOMEM_BKPT; } pLock->iTable = iTable; pLock->pBtree = p; pLock->pNext = pBt->pLock; pBt->pLock = pLock; } /* Set the BtLock.eLock variable to the maximum of the current lock ** and the requested lock. This means if a write-lock was already held ** and a read-lock requested, we don't incorrectly downgrade the lock. */ assert( WRITE_LOCK>READ_LOCK ); if( eLock>pLock->eLock ){ pLock->eLock = eLock; } return SQLITE_OK; } #endif /* !SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Release all the table locks (locks obtained via calls to ** the setSharedCacheTableLock() procedure) held by Btree object p. ** ** This function assumes that Btree p has an open read or write ** transaction. If it does not, then the BTS_PENDING flag ** may be incorrectly cleared. */ static void clearAllSharedCacheTableLocks(Btree *p){ BtShared *pBt = p->pBt; BtLock **ppIter = &pBt->pLock; assert( sqlite3BtreeHoldsMutex(p) ); assert( p->sharable || 0==*ppIter ); assert( p->inTrans>0 ); while( *ppIter ){ BtLock *pLock = *ppIter; assert( (pBt->btsFlags & BTS_EXCLUSIVE)==0 || pBt->pWriter==pLock->pBtree ); assert( pLock->pBtree->inTrans>=pLock->eLock ); if( pLock->pBtree==p ){ *ppIter = pLock->pNext; assert( pLock->iTable!=1 || pLock==&p->lock ); if( pLock->iTable!=1 ){ sqlite3_free(pLock); } }else{ ppIter = &pLock->pNext; } } assert( (pBt->btsFlags & BTS_PENDING)==0 || pBt->pWriter ); if( pBt->pWriter==p ){ pBt->pWriter = 0; pBt->btsFlags &= ~(BTS_EXCLUSIVE|BTS_PENDING); }else if( pBt->nTransaction==2 ){ /* This function is called when Btree p is concluding its ** transaction. If there currently exists a writer, and p is not ** that writer, then the number of locks held by connections other ** than the writer must be about to drop to zero. In this case ** set the BTS_PENDING flag to 0. ** ** If there is not currently a writer, then BTS_PENDING must ** be zero already. So this next line is harmless in that case. */ pBt->btsFlags &= ~BTS_PENDING; } } /* ** This function changes all write-locks held by Btree p into read-locks. */ static void downgradeAllSharedCacheTableLocks(Btree *p){ BtShared *pBt = p->pBt; if( pBt->pWriter==p ){ BtLock *pLock; pBt->pWriter = 0; pBt->btsFlags &= ~(BTS_EXCLUSIVE|BTS_PENDING); for(pLock=pBt->pLock; pLock; pLock=pLock->pNext){ assert( pLock->eLock==READ_LOCK || pLock->pBtree==p ); pLock->eLock = READ_LOCK; } } } #endif /* SQLITE_OMIT_SHARED_CACHE */ static void releasePage(MemPage *pPage); /* Forward reference */ static void releasePageOne(MemPage *pPage); /* Forward reference */ static void releasePageNotNull(MemPage *pPage); /* Forward reference */ /* ***** This routine is used inside of assert() only **** ** ** Verify that the cursor holds the mutex on its BtShared */ #ifdef SQLITE_DEBUG static int cursorHoldsMutex(BtCursor *p){ return sqlite3_mutex_held(p->pBt->mutex); } /* Verify that the cursor and the BtShared agree about what is the current ** database connetion. This is important in shared-cache mode. If the database ** connection pointers get out-of-sync, it is possible for routines like ** btreeInitPage() to reference an stale connection pointer that references a ** a connection that has already closed. This routine is used inside assert() ** statements only and for the purpose of double-checking that the btree code ** does keep the database connection pointers up-to-date. */ static int cursorOwnsBtShared(BtCursor *p){ assert( cursorHoldsMutex(p) ); return (p->pBtree->db==p->pBt->db); } #endif /* ** Invalidate the overflow cache of the cursor passed as the first argument. ** on the shared btree structure pBt. */ #define invalidateOverflowCache(pCur) (pCur->curFlags &= ~BTCF_ValidOvfl) /* ** Invalidate the overflow page-list cache for all cursors opened ** on the shared btree structure pBt. */ static void invalidateAllOverflowCache(BtShared *pBt){ BtCursor *p; assert( sqlite3_mutex_held(pBt->mutex) ); for(p=pBt->pCursor; p; p=p->pNext){ invalidateOverflowCache(p); } } #ifndef SQLITE_OMIT_INCRBLOB /* ** This function is called before modifying the contents of a table ** to invalidate any incrblob cursors that are open on the ** row or one of the rows being modified. ** ** If argument isClearTable is true, then the entire contents of the ** table is about to be deleted. In this case invalidate all incrblob ** cursors open on any row within the table with root-page pgnoRoot. ** ** Otherwise, if argument isClearTable is false, then the row with ** rowid iRow is being replaced or deleted. In this case invalidate ** only those incrblob cursors open on that specific row. */ static void invalidateIncrblobCursors( Btree *pBtree, /* The database file to check */ Pgno pgnoRoot, /* The table that might be changing */ i64 iRow, /* The rowid that might be changing */ int isClearTable /* True if all rows are being deleted */ ){ BtCursor *p; assert( pBtree->hasIncrblobCur ); assert( sqlite3BtreeHoldsMutex(pBtree) ); pBtree->hasIncrblobCur = 0; for(p=pBtree->pBt->pCursor; p; p=p->pNext){ if( (p->curFlags & BTCF_Incrblob)!=0 ){ pBtree->hasIncrblobCur = 1; if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){ p->eState = CURSOR_INVALID; } } } } #else /* Stub function when INCRBLOB is omitted */ #define invalidateIncrblobCursors(w,x,y,z) #endif /* SQLITE_OMIT_INCRBLOB */ /* ** Set bit pgno of the BtShared.pHasContent bitvec. This is called ** when a page that previously contained data becomes a free-list leaf ** page. ** ** The BtShared.pHasContent bitvec exists to work around an obscure ** bug caused by the interaction of two useful IO optimizations surrounding ** free-list leaf pages: ** ** 1) When all data is deleted from a page and the page becomes ** a free-list leaf page, the page is not written to the database ** (as free-list leaf pages contain no meaningful data). Sometimes ** such a page is not even journalled (as it will not be modified, ** why bother journalling it?). ** ** 2) When a free-list leaf page is reused, its content is not read ** from the database or written to the journal file (why should it ** be, if it is not at all meaningful?). ** ** By themselves, these optimizations work fine and provide a handy ** performance boost to bulk delete or insert operations. However, if ** a page is moved to the free-list and then reused within the same ** transaction, a problem comes up. If the page is not journalled when ** it is moved to the free-list and it is also not journalled when it ** is extracted from the free-list and reused, then the original data ** may be lost. In the event of a rollback, it may not be possible ** to restore the database to its original configuration. ** ** The solution is the BtShared.pHasContent bitvec. Whenever a page is ** moved to become a free-list leaf page, the corresponding bit is ** set in the bitvec. Whenever a leaf page is extracted from the free-list, ** optimization 2 above is omitted if the corresponding bit is already ** set in BtShared.pHasContent. The contents of the bitvec are cleared ** at the end of every transaction. */ static int btreeSetHasContent(BtShared *pBt, Pgno pgno){ int rc = SQLITE_OK; if( !pBt->pHasContent ){ assert( pgno<=pBt->nPage ); pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage); if( !pBt->pHasContent ){ rc = SQLITE_NOMEM_BKPT; } } if( rc==SQLITE_OK && pgno<=sqlite3BitvecSize(pBt->pHasContent) ){ rc = sqlite3BitvecSet(pBt->pHasContent, pgno); } return rc; } /* ** Query the BtShared.pHasContent vector. ** ** This function is called when a free-list leaf page is removed from the ** free-list for reuse. It returns false if it is safe to retrieve the ** page from the pager layer with the 'no-content' flag set. True otherwise. */ static int btreeGetHasContent(BtShared *pBt, Pgno pgno){ Bitvec *p = pBt->pHasContent; return p && (pgno>sqlite3BitvecSize(p) || sqlite3BitvecTestNotNull(p, pgno)); } /* ** Clear (destroy) the BtShared.pHasContent bitvec. This should be ** invoked at the conclusion of each write-transaction. */ static void btreeClearHasContent(BtShared *pBt){ sqlite3BitvecDestroy(pBt->pHasContent); pBt->pHasContent = 0; } /* ** Release all of the apPage[] pages for a cursor. */ static void btreeReleaseAllCursorPages(BtCursor *pCur){ int i; if( pCur->iPage>=0 ){ for(i=0; iiPage; i++){ releasePageNotNull(pCur->apPage[i]); } releasePageNotNull(pCur->pPage); pCur->iPage = -1; } } /* ** The cursor passed as the only argument must point to a valid entry ** when this function is called (i.e. have eState==CURSOR_VALID). This ** function saves the current cursor key in variables pCur->nKey and ** pCur->pKey. SQLITE_OK is returned if successful or an SQLite error ** code otherwise. ** ** If the cursor is open on an intkey table, then the integer key ** (the rowid) is stored in pCur->nKey and pCur->pKey is left set to ** NULL. If the cursor is open on a non-intkey table, then pCur->pKey is ** set to point to a malloced buffer pCur->nKey bytes in size containing ** the key. */ static int saveCursorKey(BtCursor *pCur){ int rc = SQLITE_OK; assert( CURSOR_VALID==pCur->eState ); assert( 0==pCur->pKey ); assert( cursorHoldsMutex(pCur) ); if( pCur->curIntKey ){ /* Only the rowid is required for a table btree */ pCur->nKey = sqlite3BtreeIntegerKey(pCur); }else{ /* For an index btree, save the complete key content. It is possible ** that the current key is corrupt. In that case, it is possible that ** the sqlite3VdbeRecordUnpack() function may overread the buffer by ** up to the size of 1 varint plus 1 8-byte value when the cursor ** position is restored. Hence the 17 bytes of padding allocated ** below. */ void *pKey; pCur->nKey = sqlite3BtreePayloadSize(pCur); pKey = sqlite3Malloc( pCur->nKey + 9 + 8 ); if( pKey ){ rc = sqlite3BtreePayload(pCur, 0, (int)pCur->nKey, pKey); if( rc==SQLITE_OK ){ memset(((u8*)pKey)+pCur->nKey, 0, 9+8); pCur->pKey = pKey; }else{ sqlite3_free(pKey); } }else{ rc = SQLITE_NOMEM_BKPT; } } assert( !pCur->curIntKey || !pCur->pKey ); return rc; } /* ** Save the current cursor position in the variables BtCursor.nKey ** and BtCursor.pKey. The cursor's state is set to CURSOR_REQUIRESEEK. ** ** The caller must ensure that the cursor is valid (has eState==CURSOR_VALID) ** prior to calling this routine. */ static int saveCursorPosition(BtCursor *pCur){ int rc; assert( CURSOR_VALID==pCur->eState || CURSOR_SKIPNEXT==pCur->eState ); assert( 0==pCur->pKey ); assert( cursorHoldsMutex(pCur) ); if( pCur->curFlags & BTCF_Pinned ){ return SQLITE_CONSTRAINT_PINNED; } if( pCur->eState==CURSOR_SKIPNEXT ){ pCur->eState = CURSOR_VALID; }else{ pCur->skipNext = 0; } rc = saveCursorKey(pCur); if( rc==SQLITE_OK ){ btreeReleaseAllCursorPages(pCur); pCur->eState = CURSOR_REQUIRESEEK; } pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl|BTCF_AtLast); return rc; } /* Forward reference */ static int SQLITE_NOINLINE saveCursorsOnList(BtCursor*,Pgno,BtCursor*); /* ** Save the positions of all cursors (except pExcept) that are open on ** the table with root-page iRoot. "Saving the cursor position" means that ** the location in the btree is remembered in such a way that it can be ** moved back to the same spot after the btree has been modified. This ** routine is called just before cursor pExcept is used to modify the ** table, for example in BtreeDelete() or BtreeInsert(). ** ** If there are two or more cursors on the same btree, then all such ** cursors should have their BTCF_Multiple flag set. The btreeCursor() ** routine enforces that rule. This routine only needs to be called in ** the uncommon case when pExpect has the BTCF_Multiple flag set. ** ** If pExpect!=NULL and if no other cursors are found on the same root-page, ** then the BTCF_Multiple flag on pExpect is cleared, to avoid another ** pointless call to this routine. ** ** Implementation note: This routine merely checks to see if any cursors ** need to be saved. It calls out to saveCursorsOnList() in the (unusual) ** event that cursors are in need to being saved. */ static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){ BtCursor *p; assert( sqlite3_mutex_held(pBt->mutex) ); assert( pExcept==0 || pExcept->pBt==pBt ); for(p=pBt->pCursor; p; p=p->pNext){ if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ) break; } if( p ) return saveCursorsOnList(p, iRoot, pExcept); if( pExcept ) pExcept->curFlags &= ~BTCF_Multiple; return SQLITE_OK; } /* This helper routine to saveAllCursors does the actual work of saving ** the cursors if and when a cursor is found that actually requires saving. ** The common case is that no cursors need to be saved, so this routine is ** broken out from its caller to avoid unnecessary stack pointer movement. */ static int SQLITE_NOINLINE saveCursorsOnList( BtCursor *p, /* The first cursor that needs saving */ Pgno iRoot, /* Only save cursor with this iRoot. Save all if zero */ BtCursor *pExcept /* Do not save this cursor */ ){ do{ if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ){ if( p->eState==CURSOR_VALID || p->eState==CURSOR_SKIPNEXT ){ int rc = saveCursorPosition(p); if( SQLITE_OK!=rc ){ return rc; } }else{ testcase( p->iPage>=0 ); btreeReleaseAllCursorPages(p); } } p = p->pNext; }while( p ); return SQLITE_OK; } /* ** Clear the current cursor position. */ SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); sqlite3_free(pCur->pKey); pCur->pKey = 0; pCur->eState = CURSOR_INVALID; } /* ** In this version of BtreeMoveto, pKey is a packed index record ** such as is generated by the OP_MakeRecord opcode. Unpack the ** record and then call BtreeMovetoUnpacked() to do the work. */ static int btreeMoveto( BtCursor *pCur, /* Cursor open on the btree to be searched */ const void *pKey, /* Packed key if the btree is an index */ i64 nKey, /* Integer key for tables. Size of pKey for indices */ int bias, /* Bias search to the high end */ int *pRes /* Write search results here */ ){ int rc; /* Status code */ UnpackedRecord *pIdxKey; /* Unpacked index key */ if( pKey ){ KeyInfo *pKeyInfo = pCur->pKeyInfo; assert( nKey==(i64)(int)nKey ); pIdxKey = sqlite3VdbeAllocUnpackedRecord(pKeyInfo); if( pIdxKey==0 ) return SQLITE_NOMEM_BKPT; sqlite3VdbeRecordUnpack(pKeyInfo, (int)nKey, pKey, pIdxKey); if( pIdxKey->nField==0 || pIdxKey->nField>pKeyInfo->nAllField ){ rc = SQLITE_CORRUPT_BKPT; }else{ rc = sqlite3BtreeIndexMoveto(pCur, pIdxKey, pRes); } sqlite3DbFree(pCur->pKeyInfo->db, pIdxKey); }else{ pIdxKey = 0; rc = sqlite3BtreeTableMoveto(pCur, nKey, bias, pRes); } return rc; } /* ** Restore the cursor to the position it was in (or as close to as possible) ** when saveCursorPosition() was called. Note that this call deletes the ** saved position info stored by saveCursorPosition(), so there can be ** at most one effective restoreCursorPosition() call after each ** saveCursorPosition(). */ static int btreeRestoreCursorPosition(BtCursor *pCur){ int rc; int skipNext = 0; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState>=CURSOR_REQUIRESEEK ); if( pCur->eState==CURSOR_FAULT ){ return pCur->skipNext; } pCur->eState = CURSOR_INVALID; if( sqlite3FaultSim(410) ){ rc = SQLITE_IOERR; }else{ rc = btreeMoveto(pCur, pCur->pKey, pCur->nKey, 0, &skipNext); } if( rc==SQLITE_OK ){ sqlite3_free(pCur->pKey); pCur->pKey = 0; assert( pCur->eState==CURSOR_VALID || pCur->eState==CURSOR_INVALID ); if( skipNext ) pCur->skipNext = skipNext; if( pCur->skipNext && pCur->eState==CURSOR_VALID ){ pCur->eState = CURSOR_SKIPNEXT; } } return rc; } #define restoreCursorPosition(p) \ (p->eState>=CURSOR_REQUIRESEEK ? \ btreeRestoreCursorPosition(p) : \ SQLITE_OK) /* ** Determine whether or not a cursor has moved from the position where ** it was last placed, or has been invalidated for any other reason. ** Cursors can move when the row they are pointing at is deleted out ** from under them, for example. Cursor might also move if a btree ** is rebalanced. ** ** Calling this routine with a NULL cursor pointer returns false. ** ** Use the separate sqlite3BtreeCursorRestore() routine to restore a cursor ** back to where it ought to be if this routine returns true. */ SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor *pCur){ assert( EIGHT_BYTE_ALIGNMENT(pCur) || pCur==sqlite3BtreeFakeValidCursor() ); assert( offsetof(BtCursor, eState)==0 ); assert( sizeof(pCur->eState)==1 ); return CURSOR_VALID != *(u8*)pCur; } /* ** Return a pointer to a fake BtCursor object that will always answer ** false to the sqlite3BtreeCursorHasMoved() routine above. The fake ** cursor returned must not be used with any other Btree interface. */ SQLITE_PRIVATE BtCursor *sqlite3BtreeFakeValidCursor(void){ static u8 fakeCursor = CURSOR_VALID; assert( offsetof(BtCursor, eState)==0 ); return (BtCursor*)&fakeCursor; } /* ** This routine restores a cursor back to its original position after it ** has been moved by some outside activity (such as a btree rebalance or ** a row having been deleted out from under the cursor). ** ** On success, the *pDifferentRow parameter is false if the cursor is left ** pointing at exactly the same row. *pDifferntRow is the row the cursor ** was pointing to has been deleted, forcing the cursor to point to some ** nearby row. ** ** This routine should only be called for a cursor that just returned ** TRUE from sqlite3BtreeCursorHasMoved(). */ SQLITE_PRIVATE int sqlite3BtreeCursorRestore(BtCursor *pCur, int *pDifferentRow){ int rc; assert( pCur!=0 ); assert( pCur->eState!=CURSOR_VALID ); rc = restoreCursorPosition(pCur); if( rc ){ *pDifferentRow = 1; return rc; } if( pCur->eState!=CURSOR_VALID ){ *pDifferentRow = 1; }else{ *pDifferentRow = 0; } return SQLITE_OK; } #ifdef SQLITE_ENABLE_CURSOR_HINTS /* ** Provide hints to the cursor. The particular hint given (and the type ** and number of the varargs parameters) is determined by the eHintType ** parameter. See the definitions of the BTREE_HINT_* macros for details. */ SQLITE_PRIVATE void sqlite3BtreeCursorHint(BtCursor *pCur, int eHintType, ...){ /* Used only by system that substitute their own storage engine */ } #endif /* ** Provide flag hints to the cursor. */ SQLITE_PRIVATE void sqlite3BtreeCursorHintFlags(BtCursor *pCur, unsigned x){ assert( x==BTREE_SEEK_EQ || x==BTREE_BULKLOAD || x==0 ); pCur->hints = x; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Given a page number of a regular database page, return the page ** number for the pointer-map page that contains the entry for the ** input page number. ** ** Return 0 (not a valid page) for pgno==1 since there is ** no pointer map associated with page 1. The integrity_check logic ** requires that ptrmapPageno(*,1)!=1. */ static Pgno ptrmapPageno(BtShared *pBt, Pgno pgno){ int nPagesPerMapPage; Pgno iPtrMap, ret; assert( sqlite3_mutex_held(pBt->mutex) ); if( pgno<2 ) return 0; nPagesPerMapPage = (pBt->usableSize/5)+1; iPtrMap = (pgno-2)/nPagesPerMapPage; ret = (iPtrMap*nPagesPerMapPage) + 2; if( ret==PENDING_BYTE_PAGE(pBt) ){ ret++; } return ret; } /* ** Write an entry into the pointer map. ** ** This routine updates the pointer map entry for page number 'key' ** so that it maps to type 'eType' and parent page number 'pgno'. ** ** If *pRC is initially non-zero (non-SQLITE_OK) then this routine is ** a no-op. If an error occurs, the appropriate error code is written ** into *pRC. */ static void ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC){ DbPage *pDbPage; /* The pointer map page */ u8 *pPtrmap; /* The pointer map data */ Pgno iPtrmap; /* The pointer map page number */ int offset; /* Offset in pointer map page */ int rc; /* Return code from subfunctions */ if( *pRC ) return; assert( sqlite3_mutex_held(pBt->mutex) ); /* The super-journal page number must never be used as a pointer map page */ assert( 0==PTRMAP_ISPAGE(pBt, PENDING_BYTE_PAGE(pBt)) ); assert( pBt->autoVacuum ); if( key==0 ){ *pRC = SQLITE_CORRUPT_BKPT; return; } iPtrmap = PTRMAP_PAGENO(pBt, key); rc = sqlite3PagerGet(pBt->pPager, iPtrmap, &pDbPage, 0); if( rc!=SQLITE_OK ){ *pRC = rc; return; } if( ((char*)sqlite3PagerGetExtra(pDbPage))[0]!=0 ){ /* The first byte of the extra data is the MemPage.isInit byte. ** If that byte is set, it means this page is also being used ** as a btree page. */ *pRC = SQLITE_CORRUPT_BKPT; goto ptrmap_exit; } offset = PTRMAP_PTROFFSET(iPtrmap, key); if( offset<0 ){ *pRC = SQLITE_CORRUPT_BKPT; goto ptrmap_exit; } assert( offset <= (int)pBt->usableSize-5 ); pPtrmap = (u8 *)sqlite3PagerGetData(pDbPage); if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){ TRACE(("PTRMAP_UPDATE: %d->(%d,%d)\n", key, eType, parent)); *pRC= rc = sqlite3PagerWrite(pDbPage); if( rc==SQLITE_OK ){ pPtrmap[offset] = eType; put4byte(&pPtrmap[offset+1], parent); } } ptrmap_exit: sqlite3PagerUnref(pDbPage); } /* ** Read an entry from the pointer map. ** ** This routine retrieves the pointer map entry for page 'key', writing ** the type and parent page number to *pEType and *pPgno respectively. ** An error code is returned if something goes wrong, otherwise SQLITE_OK. */ static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){ DbPage *pDbPage; /* The pointer map page */ int iPtrmap; /* Pointer map page index */ u8 *pPtrmap; /* Pointer map page data */ int offset; /* Offset of entry in pointer map */ int rc; assert( sqlite3_mutex_held(pBt->mutex) ); iPtrmap = PTRMAP_PAGENO(pBt, key); rc = sqlite3PagerGet(pBt->pPager, iPtrmap, &pDbPage, 0); if( rc!=0 ){ return rc; } pPtrmap = (u8 *)sqlite3PagerGetData(pDbPage); offset = PTRMAP_PTROFFSET(iPtrmap, key); if( offset<0 ){ sqlite3PagerUnref(pDbPage); return SQLITE_CORRUPT_BKPT; } assert( offset <= (int)pBt->usableSize-5 ); assert( pEType!=0 ); *pEType = pPtrmap[offset]; if( pPgno ) *pPgno = get4byte(&pPtrmap[offset+1]); sqlite3PagerUnref(pDbPage); if( *pEType<1 || *pEType>5 ) return SQLITE_CORRUPT_PGNO(iPtrmap); return SQLITE_OK; } #else /* if defined SQLITE_OMIT_AUTOVACUUM */ #define ptrmapPut(w,x,y,z,rc) #define ptrmapGet(w,x,y,z) SQLITE_OK #define ptrmapPutOvflPtr(x, y, z, rc) #endif /* ** Given a btree page and a cell index (0 means the first cell on ** the page, 1 means the second cell, and so forth) return a pointer ** to the cell content. ** ** findCellPastPtr() does the same except it skips past the initial ** 4-byte child pointer found on interior pages, if there is one. ** ** This routine works only for pages that do not contain overflow cells. */ #define findCell(P,I) \ ((P)->aData + ((P)->maskPage & get2byteAligned(&(P)->aCellIdx[2*(I)]))) #define findCellPastPtr(P,I) \ ((P)->aDataOfst + ((P)->maskPage & get2byteAligned(&(P)->aCellIdx[2*(I)]))) /* ** This is common tail processing for btreeParseCellPtr() and ** btreeParseCellPtrIndex() for the case when the cell does not fit entirely ** on a single B-tree page. Make necessary adjustments to the CellInfo ** structure. */ static SQLITE_NOINLINE void btreeParseCellAdjustSizeForOverflow( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ /* If the payload will not fit completely on the local page, we have ** to decide how much to store locally and how much to spill onto ** overflow pages. The strategy is to minimize the amount of unused ** space on overflow pages while keeping the amount of local storage ** in between minLocal and maxLocal. ** ** Warning: changing the way overflow payload is distributed in any ** way will result in an incompatible file format. */ int minLocal; /* Minimum amount of payload held locally */ int maxLocal; /* Maximum amount of payload held locally */ int surplus; /* Overflow payload available for local storage */ minLocal = pPage->minLocal; maxLocal = pPage->maxLocal; surplus = minLocal + (pInfo->nPayload - minLocal)%(pPage->pBt->usableSize-4); testcase( surplus==maxLocal ); testcase( surplus==maxLocal+1 ); if( surplus <= maxLocal ){ pInfo->nLocal = (u16)surplus; }else{ pInfo->nLocal = (u16)minLocal; } pInfo->nSize = (u16)(&pInfo->pPayload[pInfo->nLocal] - pCell) + 4; } /* ** Given a record with nPayload bytes of payload stored within btree ** page pPage, return the number of bytes of payload stored locally. */ static int btreePayloadToLocal(MemPage *pPage, i64 nPayload){ int maxLocal; /* Maximum amount of payload held locally */ maxLocal = pPage->maxLocal; if( nPayload<=maxLocal ){ return nPayload; }else{ int minLocal; /* Minimum amount of payload held locally */ int surplus; /* Overflow payload available for local storage */ minLocal = pPage->minLocal; surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize-4); return ( surplus <= maxLocal ) ? surplus : minLocal; } } /* ** The following routines are implementations of the MemPage.xParseCell() ** method. ** ** Parse a cell content block and fill in the CellInfo structure. ** ** btreeParseCellPtr() => table btree leaf nodes ** btreeParseCellNoPayload() => table btree internal nodes ** btreeParseCellPtrIndex() => index btree nodes ** ** There is also a wrapper function btreeParseCell() that works for ** all MemPage types and that references the cell by index rather than ** by pointer. */ static void btreeParseCellPtrNoPayload( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->leaf==0 ); assert( pPage->childPtrSize==4 ); #ifndef SQLITE_DEBUG UNUSED_PARAMETER(pPage); #endif pInfo->nSize = 4 + getVarint(&pCell[4], (u64*)&pInfo->nKey); pInfo->nPayload = 0; pInfo->nLocal = 0; pInfo->pPayload = 0; return; } static void btreeParseCellPtr( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ u8 *pIter; /* For scanning through pCell */ u32 nPayload; /* Number of bytes of cell payload */ u64 iKey; /* Extracted Key value */ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->leaf==0 || pPage->leaf==1 ); assert( pPage->intKeyLeaf ); assert( pPage->childPtrSize==0 ); pIter = pCell; /* The next block of code is equivalent to: ** ** pIter += getVarint32(pIter, nPayload); ** ** The code is inlined to avoid a function call. */ nPayload = *pIter; if( nPayload>=0x80 ){ u8 *pEnd = &pIter[8]; nPayload &= 0x7f; do{ nPayload = (nPayload<<7) | (*++pIter & 0x7f); }while( (*pIter)>=0x80 && pIternKey); ** ** The code is inlined and the loop is unrolled for performance. ** This routine is a high-runner. */ iKey = *pIter; if( iKey>=0x80 ){ u8 x; iKey = ((iKey&0x7f)<<7) | ((x = *++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<7) | ((x =*++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<7) | ((x = *++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<7) | ((x = *++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<7) | ((x = *++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<7) | ((x = *++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<7) | ((x = *++pIter) & 0x7f); if( x>=0x80 ){ iKey = (iKey<<8) | (*++pIter); } } } } } } } } pIter++; pInfo->nKey = *(i64*)&iKey; pInfo->nPayload = nPayload; pInfo->pPayload = pIter; testcase( nPayload==pPage->maxLocal ); testcase( nPayload==(u32)pPage->maxLocal+1 ); if( nPayload<=pPage->maxLocal ){ /* This is the (easy) common case where the entire payload fits ** on the local page. No overflow is required. */ pInfo->nSize = nPayload + (u16)(pIter - pCell); if( pInfo->nSize<4 ) pInfo->nSize = 4; pInfo->nLocal = (u16)nPayload; }else{ btreeParseCellAdjustSizeForOverflow(pPage, pCell, pInfo); } } static void btreeParseCellPtrIndex( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ u8 *pIter; /* For scanning through pCell */ u32 nPayload; /* Number of bytes of cell payload */ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->leaf==0 || pPage->leaf==1 ); assert( pPage->intKeyLeaf==0 ); pIter = pCell + pPage->childPtrSize; nPayload = *pIter; if( nPayload>=0x80 ){ u8 *pEnd = &pIter[8]; nPayload &= 0x7f; do{ nPayload = (nPayload<<7) | (*++pIter & 0x7f); }while( *(pIter)>=0x80 && pIternKey = nPayload; pInfo->nPayload = nPayload; pInfo->pPayload = pIter; testcase( nPayload==pPage->maxLocal ); testcase( nPayload==(u32)pPage->maxLocal+1 ); if( nPayload<=pPage->maxLocal ){ /* This is the (easy) common case where the entire payload fits ** on the local page. No overflow is required. */ pInfo->nSize = nPayload + (u16)(pIter - pCell); if( pInfo->nSize<4 ) pInfo->nSize = 4; pInfo->nLocal = (u16)nPayload; }else{ btreeParseCellAdjustSizeForOverflow(pPage, pCell, pInfo); } } static void btreeParseCell( MemPage *pPage, /* Page containing the cell */ int iCell, /* The cell index. First cell is 0 */ CellInfo *pInfo /* Fill in this structure */ ){ pPage->xParseCell(pPage, findCell(pPage, iCell), pInfo); } /* ** The following routines are implementations of the MemPage.xCellSize ** method. ** ** Compute the total number of bytes that a Cell needs in the cell ** data area of the btree-page. The return number includes the cell ** data header and the local payload, but not any overflow page or ** the space used by the cell pointer. ** ** cellSizePtrNoPayload() => table internal nodes ** cellSizePtr() => all index nodes & table leaf nodes */ static u16 cellSizePtr(MemPage *pPage, u8 *pCell){ u8 *pIter = pCell + pPage->childPtrSize; /* For looping over bytes of pCell */ u8 *pEnd; /* End mark for a varint */ u32 nSize; /* Size value to return */ #ifdef SQLITE_DEBUG /* The value returned by this function should always be the same as ** the (CellInfo.nSize) value found by doing a full parse of the ** cell. If SQLITE_DEBUG is defined, an assert() at the bottom of ** this function verifies that this invariant is not violated. */ CellInfo debuginfo; pPage->xParseCell(pPage, pCell, &debuginfo); #endif nSize = *pIter; if( nSize>=0x80 ){ pEnd = &pIter[8]; nSize &= 0x7f; do{ nSize = (nSize<<7) | (*++pIter & 0x7f); }while( *(pIter)>=0x80 && pIterintKey ){ /* pIter now points at the 64-bit integer key value, a variable length ** integer. The following block moves pIter to point at the first byte ** past the end of the key value. */ pEnd = &pIter[9]; while( (*pIter++)&0x80 && pItermaxLocal ); testcase( nSize==(u32)pPage->maxLocal+1 ); if( nSize<=pPage->maxLocal ){ nSize += (u32)(pIter - pCell); if( nSize<4 ) nSize = 4; }else{ int minLocal = pPage->minLocal; nSize = minLocal + (nSize - minLocal) % (pPage->pBt->usableSize - 4); testcase( nSize==pPage->maxLocal ); testcase( nSize==(u32)pPage->maxLocal+1 ); if( nSize>pPage->maxLocal ){ nSize = minLocal; } nSize += 4 + (u16)(pIter - pCell); } assert( nSize==debuginfo.nSize || CORRUPT_DB ); return (u16)nSize; } static u16 cellSizePtrNoPayload(MemPage *pPage, u8 *pCell){ u8 *pIter = pCell + 4; /* For looping over bytes of pCell */ u8 *pEnd; /* End mark for a varint */ #ifdef SQLITE_DEBUG /* The value returned by this function should always be the same as ** the (CellInfo.nSize) value found by doing a full parse of the ** cell. If SQLITE_DEBUG is defined, an assert() at the bottom of ** this function verifies that this invariant is not violated. */ CellInfo debuginfo; pPage->xParseCell(pPage, pCell, &debuginfo); #else UNUSED_PARAMETER(pPage); #endif assert( pPage->childPtrSize==4 ); pEnd = pIter + 9; while( (*pIter++)&0x80 && pIterxCellSize(pPage, findCell(pPage, iCell)); } #endif #ifndef SQLITE_OMIT_AUTOVACUUM /* ** The cell pCell is currently part of page pSrc but will ultimately be part ** of pPage. (pSrc and pPager are often the same.) If pCell contains a ** pointer to an overflow page, insert an entry into the pointer-map for ** the overflow page that will be valid after pCell has been moved to pPage. */ static void ptrmapPutOvflPtr(MemPage *pPage, MemPage *pSrc, u8 *pCell,int *pRC){ CellInfo info; if( *pRC ) return; assert( pCell!=0 ); pPage->xParseCell(pPage, pCell, &info); if( info.nLocalaDataEnd, pCell, pCell+info.nLocal) ){ testcase( pSrc!=pPage ); *pRC = SQLITE_CORRUPT_BKPT; return; } ovfl = get4byte(&pCell[info.nSize-4]); ptrmapPut(pPage->pBt, ovfl, PTRMAP_OVERFLOW1, pPage->pgno, pRC); } } #endif /* ** Defragment the page given. This routine reorganizes cells within the ** page so that there are no free-blocks on the free-block list. ** ** Parameter nMaxFrag is the maximum amount of fragmented space that may be ** present in the page after this routine returns. ** ** EVIDENCE-OF: R-44582-60138 SQLite may from time to time reorganize a ** b-tree page so that there are no freeblocks or fragment bytes, all ** unused bytes are contained in the unallocated space region, and all ** cells are packed tightly at the end of the page. */ static int defragmentPage(MemPage *pPage, int nMaxFrag){ int i; /* Loop counter */ int pc; /* Address of the i-th cell */ int hdr; /* Offset to the page header */ int size; /* Size of a cell */ int usableSize; /* Number of usable bytes on a page */ int cellOffset; /* Offset to the cell pointer array */ int cbrk; /* Offset to the cell content area */ int nCell; /* Number of cells on the page */ unsigned char *data; /* The page data */ unsigned char *temp; /* Temp area for cell content */ unsigned char *src; /* Source of content */ int iCellFirst; /* First allowable cell index */ int iCellLast; /* Last possible cell index */ int iCellStart; /* First cell offset in input */ assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( pPage->pBt!=0 ); assert( pPage->pBt->usableSize <= SQLITE_MAX_PAGE_SIZE ); assert( pPage->nOverflow==0 ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); temp = 0; src = data = pPage->aData; hdr = pPage->hdrOffset; cellOffset = pPage->cellOffset; nCell = pPage->nCell; assert( nCell==get2byte(&data[hdr+3]) || CORRUPT_DB ); iCellFirst = cellOffset + 2*nCell; usableSize = pPage->pBt->usableSize; /* This block handles pages with two or fewer free blocks and nMaxFrag ** or fewer fragmented bytes. In this case it is faster to move the ** two (or one) blocks of cells using memmove() and add the required ** offsets to each pointer in the cell-pointer array than it is to ** reconstruct the entire page. */ if( (int)data[hdr+7]<=nMaxFrag ){ int iFree = get2byte(&data[hdr+1]); if( iFree>usableSize-4 ) return SQLITE_CORRUPT_PAGE(pPage); if( iFree ){ int iFree2 = get2byte(&data[iFree]); if( iFree2>usableSize-4 ) return SQLITE_CORRUPT_PAGE(pPage); if( 0==iFree2 || (data[iFree2]==0 && data[iFree2+1]==0) ){ u8 *pEnd = &data[cellOffset + nCell*2]; u8 *pAddr; int sz2 = 0; int sz = get2byte(&data[iFree+2]); int top = get2byte(&data[hdr+5]); if( top>=iFree ){ return SQLITE_CORRUPT_PAGE(pPage); } if( iFree2 ){ if( iFree+sz>iFree2 ) return SQLITE_CORRUPT_PAGE(pPage); sz2 = get2byte(&data[iFree2+2]); if( iFree2+sz2 > usableSize ) return SQLITE_CORRUPT_PAGE(pPage); memmove(&data[iFree+sz+sz2], &data[iFree+sz], iFree2-(iFree+sz)); sz += sz2; }else if( NEVER(iFree+sz>usableSize) ){ return SQLITE_CORRUPT_PAGE(pPage); } cbrk = top+sz; assert( cbrk+(iFree-top) <= usableSize ); memmove(&data[cbrk], &data[top], iFree-top); for(pAddr=&data[cellOffset]; pAddriCellLast ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( pc>=iCellStart && pc<=iCellLast ); size = pPage->xCellSize(pPage, &src[pc]); cbrk -= size; if( cbrkusableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( cbrk+size<=usableSize && cbrk>=iCellStart ); testcase( cbrk+size==usableSize ); testcase( pc+size==usableSize ); put2byte(pAddr, cbrk); if( temp==0 ){ if( cbrk==pc ) continue; temp = sqlite3PagerTempSpace(pPage->pBt->pPager); memcpy(&temp[iCellStart], &data[iCellStart], usableSize - iCellStart); src = temp; } memcpy(&data[cbrk], &src[pc], size); } data[hdr+7] = 0; defragment_out: assert( pPage->nFree>=0 ); if( data[hdr+7]+cbrk-iCellFirst!=pPage->nFree ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( cbrk>=iCellFirst ); put2byte(&data[hdr+5], cbrk); data[hdr+1] = 0; data[hdr+2] = 0; memset(&data[iCellFirst], 0, cbrk-iCellFirst); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); return SQLITE_OK; } /* ** Search the free-list on page pPg for space to store a cell nByte bytes in ** size. If one can be found, return a pointer to the space and remove it ** from the free-list. ** ** If no suitable space can be found on the free-list, return NULL. ** ** This function may detect corruption within pPg. If corruption is ** detected then *pRc is set to SQLITE_CORRUPT and NULL is returned. ** ** Slots on the free list that are between 1 and 3 bytes larger than nByte ** will be ignored if adding the extra space to the fragmentation count ** causes the fragmentation count to exceed 60. */ static u8 *pageFindSlot(MemPage *pPg, int nByte, int *pRc){ const int hdr = pPg->hdrOffset; /* Offset to page header */ u8 * const aData = pPg->aData; /* Page data */ int iAddr = hdr + 1; /* Address of ptr to pc */ int pc = get2byte(&aData[iAddr]); /* Address of a free slot */ int x; /* Excess size of the slot */ int maxPC = pPg->pBt->usableSize - nByte; /* Max address for a usable slot */ int size; /* Size of the free slot */ assert( pc>0 ); while( pc<=maxPC ){ /* EVIDENCE-OF: R-22710-53328 The third and fourth bytes of each ** freeblock form a big-endian integer which is the size of the freeblock ** in bytes, including the 4-byte header. */ size = get2byte(&aData[pc+2]); if( (x = size - nByte)>=0 ){ testcase( x==4 ); testcase( x==3 ); if( x<4 ){ /* EVIDENCE-OF: R-11498-58022 In a well-formed b-tree page, the total ** number of bytes in fragments may not exceed 60. */ if( aData[hdr+7]>57 ) return 0; /* Remove the slot from the free-list. Update the number of ** fragmented bytes within the page. */ memcpy(&aData[iAddr], &aData[pc], 2); aData[hdr+7] += (u8)x; }else if( x+pc > maxPC ){ /* This slot extends off the end of the usable part of the page */ *pRc = SQLITE_CORRUPT_PAGE(pPg); return 0; }else{ /* The slot remains on the free-list. Reduce its size to account ** for the portion used by the new allocation. */ put2byte(&aData[pc+2], x); } return &aData[pc + x]; } iAddr = pc; pc = get2byte(&aData[pc]); if( pc<=iAddr+size ){ if( pc ){ /* The next slot in the chain is not past the end of the current slot */ *pRc = SQLITE_CORRUPT_PAGE(pPg); } return 0; } } if( pc>maxPC+nByte-4 ){ /* The free slot chain extends off the end of the page */ *pRc = SQLITE_CORRUPT_PAGE(pPg); } return 0; } /* ** Allocate nByte bytes of space from within the B-Tree page passed ** as the first argument. Write into *pIdx the index into pPage->aData[] ** of the first byte of allocated space. Return either SQLITE_OK or ** an error code (usually SQLITE_CORRUPT). ** ** The caller guarantees that there is sufficient space to make the ** allocation. This routine might need to defragment in order to bring ** all the space together, however. This routine will avoid using ** the first two bytes past the cell pointer area since presumably this ** allocation is being made in order to insert a new cell, so we will ** also end up needing a new cell pointer. */ static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){ const int hdr = pPage->hdrOffset; /* Local cache of pPage->hdrOffset */ u8 * const data = pPage->aData; /* Local cache of pPage->aData */ int top; /* First byte of cell content area */ int rc = SQLITE_OK; /* Integer return code */ int gap; /* First byte of gap between cell pointers and cell content */ assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( pPage->pBt ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( nByte>=0 ); /* Minimum cell size is 4 */ assert( pPage->nFree>=nByte ); assert( pPage->nOverflow==0 ); assert( nByte < (int)(pPage->pBt->usableSize-8) ); assert( pPage->cellOffset == hdr + 12 - 4*pPage->leaf ); gap = pPage->cellOffset + 2*pPage->nCell; assert( gap<=65536 ); /* EVIDENCE-OF: R-29356-02391 If the database uses a 65536-byte page size ** and the reserved space is zero (the usual value for reserved space) ** then the cell content offset of an empty page wants to be 65536. ** However, that integer is too large to be stored in a 2-byte unsigned ** integer, so a value of 0 is used in its place. */ top = get2byte(&data[hdr+5]); assert( top<=(int)pPage->pBt->usableSize ); /* by btreeComputeFreeSpace() */ if( gap>top ){ if( top==0 && pPage->pBt->usableSize==65536 ){ top = 65536; }else{ return SQLITE_CORRUPT_PAGE(pPage); } } /* If there is enough space between gap and top for one more cell pointer, ** and if the freelist is not empty, then search the ** freelist looking for a slot big enough to satisfy the request. */ testcase( gap+2==top ); testcase( gap+1==top ); testcase( gap==top ); if( (data[hdr+2] || data[hdr+1]) && gap+2<=top ){ u8 *pSpace = pageFindSlot(pPage, nByte, &rc); if( pSpace ){ int g2; assert( pSpace+nByte<=data+pPage->pBt->usableSize ); *pIdx = g2 = (int)(pSpace-data); if( g2<=gap ){ return SQLITE_CORRUPT_PAGE(pPage); }else{ return SQLITE_OK; } }else if( rc ){ return rc; } } /* The request could not be fulfilled using a freelist slot. Check ** to see if defragmentation is necessary. */ testcase( gap+2+nByte==top ); if( gap+2+nByte>top ){ assert( pPage->nCell>0 || CORRUPT_DB ); assert( pPage->nFree>=0 ); rc = defragmentPage(pPage, MIN(4, pPage->nFree - (2+nByte))); if( rc ) return rc; top = get2byteNotZero(&data[hdr+5]); assert( gap+2+nByte<=top ); } /* Allocate memory from the gap in between the cell pointer array ** and the cell content area. The btreeComputeFreeSpace() call has already ** validated the freelist. Given that the freelist is valid, there ** is no way that the allocation can extend off the end of the page. ** The assert() below verifies the previous sentence. */ top -= nByte; put2byte(&data[hdr+5], top); assert( top+nByte <= (int)pPage->pBt->usableSize ); *pIdx = top; return SQLITE_OK; } /* ** Return a section of the pPage->aData to the freelist. ** The first byte of the new free block is pPage->aData[iStart] ** and the size of the block is iSize bytes. ** ** Adjacent freeblocks are coalesced. ** ** Even though the freeblock list was checked by btreeComputeFreeSpace(), ** that routine will not detect overlap between cells or freeblocks. Nor ** does it detect cells or freeblocks that encrouch into the reserved bytes ** at the end of the page. So do additional corruption checks inside this ** routine and return SQLITE_CORRUPT if any problems are found. */ static int freeSpace(MemPage *pPage, u16 iStart, u16 iSize){ u16 iPtr; /* Address of ptr to next freeblock */ u16 iFreeBlk; /* Address of the next freeblock */ u8 hdr; /* Page header size. 0 or 100 */ u8 nFrag = 0; /* Reduction in fragmentation */ u16 iOrigSize = iSize; /* Original value of iSize */ u16 x; /* Offset to cell content area */ u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */ unsigned char *data = pPage->aData; /* Page content */ assert( pPage->pBt!=0 ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( CORRUPT_DB || iStart>=pPage->hdrOffset+6+pPage->childPtrSize ); assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( iSize>=4 ); /* Minimum cell size is 4 */ assert( iStart<=pPage->pBt->usableSize-4 ); /* The list of freeblocks must be in ascending order. Find the ** spot on the list where iStart should be inserted. */ hdr = pPage->hdrOffset; iPtr = hdr + 1; if( data[iPtr+1]==0 && data[iPtr]==0 ){ iFreeBlk = 0; /* Shortcut for the case when the freelist is empty */ }else{ while( (iFreeBlk = get2byte(&data[iPtr]))pPage->pBt->usableSize-4 ){ /* TH3: corrupt081.100 */ return SQLITE_CORRUPT_PAGE(pPage); } assert( iFreeBlk>iPtr || iFreeBlk==0 || CORRUPT_DB ); /* At this point: ** iFreeBlk: First freeblock after iStart, or zero if none ** iPtr: The address of a pointer to iFreeBlk ** ** Check to see if iFreeBlk should be coalesced onto the end of iStart. */ if( iFreeBlk && iEnd+3>=iFreeBlk ){ nFrag = iFreeBlk - iEnd; if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage); iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]); if( iEnd > pPage->pBt->usableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } iSize = iEnd - iStart; iFreeBlk = get2byte(&data[iFreeBlk]); } /* If iPtr is another freeblock (that is, if iPtr is not the freelist ** pointer in the page header) then check to see if iStart should be ** coalesced onto the end of iPtr. */ if( iPtr>hdr+1 ){ int iPtrEnd = iPtr + get2byte(&data[iPtr+2]); if( iPtrEnd+3>=iStart ){ if( iPtrEnd>iStart ) return SQLITE_CORRUPT_PAGE(pPage); nFrag += iStart - iPtrEnd; iSize = iEnd - iPtr; iStart = iPtr; } } if( nFrag>data[hdr+7] ) return SQLITE_CORRUPT_PAGE(pPage); data[hdr+7] -= nFrag; } x = get2byte(&data[hdr+5]); if( iStart<=x ){ /* The new freeblock is at the beginning of the cell content area, ** so just extend the cell content area rather than create another ** freelist entry */ if( iStartpBt->btsFlags & BTS_FAST_SECURE ){ /* Overwrite deleted information with zeros when the secure_delete ** option is enabled */ memset(&data[iStart], 0, iSize); } put2byte(&data[iStart], iFreeBlk); put2byte(&data[iStart+2], iSize); pPage->nFree += iOrigSize; return SQLITE_OK; } /* ** Decode the flags byte (the first byte of the header) for a page ** and initialize fields of the MemPage structure accordingly. ** ** Only the following combinations are supported. Anything different ** indicates a corrupt database files: ** ** PTF_ZERODATA ** PTF_ZERODATA | PTF_LEAF ** PTF_LEAFDATA | PTF_INTKEY ** PTF_LEAFDATA | PTF_INTKEY | PTF_LEAF */ static int decodeFlags(MemPage *pPage, int flagByte){ BtShared *pBt; /* A copy of pPage->pBt */ assert( pPage->hdrOffset==(pPage->pgno==1 ? 100 : 0) ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); pPage->leaf = (u8)(flagByte>>3); assert( PTF_LEAF == 1<<3 ); flagByte &= ~PTF_LEAF; pPage->childPtrSize = 4-4*pPage->leaf; pPage->xCellSize = cellSizePtr; pBt = pPage->pBt; if( flagByte==(PTF_LEAFDATA | PTF_INTKEY) ){ /* EVIDENCE-OF: R-07291-35328 A value of 5 (0x05) means the page is an ** interior table b-tree page. */ assert( (PTF_LEAFDATA|PTF_INTKEY)==5 ); /* EVIDENCE-OF: R-26900-09176 A value of 13 (0x0d) means the page is a ** leaf table b-tree page. */ assert( (PTF_LEAFDATA|PTF_INTKEY|PTF_LEAF)==13 ); pPage->intKey = 1; if( pPage->leaf ){ pPage->intKeyLeaf = 1; pPage->xParseCell = btreeParseCellPtr; }else{ pPage->intKeyLeaf = 0; pPage->xCellSize = cellSizePtrNoPayload; pPage->xParseCell = btreeParseCellPtrNoPayload; } pPage->maxLocal = pBt->maxLeaf; pPage->minLocal = pBt->minLeaf; }else if( flagByte==PTF_ZERODATA ){ /* EVIDENCE-OF: R-43316-37308 A value of 2 (0x02) means the page is an ** interior index b-tree page. */ assert( (PTF_ZERODATA)==2 ); /* EVIDENCE-OF: R-59615-42828 A value of 10 (0x0a) means the page is a ** leaf index b-tree page. */ assert( (PTF_ZERODATA|PTF_LEAF)==10 ); pPage->intKey = 0; pPage->intKeyLeaf = 0; pPage->xParseCell = btreeParseCellPtrIndex; pPage->maxLocal = pBt->maxLocal; pPage->minLocal = pBt->minLocal; }else{ /* EVIDENCE-OF: R-47608-56469 Any other value for the b-tree page type is ** an error. */ return SQLITE_CORRUPT_PAGE(pPage); } pPage->max1bytePayload = pBt->max1bytePayload; return SQLITE_OK; } /* ** Compute the amount of freespace on the page. In other words, fill ** in the pPage->nFree field. */ static int btreeComputeFreeSpace(MemPage *pPage){ int pc; /* Address of a freeblock within pPage->aData[] */ u8 hdr; /* Offset to beginning of page header */ u8 *data; /* Equal to pPage->aData */ int usableSize; /* Amount of usable space on each page */ int nFree; /* Number of unused bytes on the page */ int top; /* First byte of the cell content area */ int iCellFirst; /* First allowable cell or freeblock offset */ int iCellLast; /* Last possible cell or freeblock offset */ assert( pPage->pBt!=0 ); assert( pPage->pBt->db!=0 ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->pgno==sqlite3PagerPagenumber(pPage->pDbPage) ); assert( pPage == sqlite3PagerGetExtra(pPage->pDbPage) ); assert( pPage->aData == sqlite3PagerGetData(pPage->pDbPage) ); assert( pPage->isInit==1 ); assert( pPage->nFree<0 ); usableSize = pPage->pBt->usableSize; hdr = pPage->hdrOffset; data = pPage->aData; /* EVIDENCE-OF: R-58015-48175 The two-byte integer at offset 5 designates ** the start of the cell content area. A zero value for this integer is ** interpreted as 65536. */ top = get2byteNotZero(&data[hdr+5]); iCellFirst = hdr + 8 + pPage->childPtrSize + 2*pPage->nCell; iCellLast = usableSize - 4; /* Compute the total free space on the page ** EVIDENCE-OF: R-23588-34450 The two-byte integer at offset 1 gives the ** start of the first freeblock on the page, or is zero if there are no ** freeblocks. */ pc = get2byte(&data[hdr+1]); nFree = data[hdr+7] + top; /* Init nFree to non-freeblock free space */ if( pc>0 ){ u32 next, size; if( pciCellLast ){ /* Freeblock off the end of the page */ return SQLITE_CORRUPT_PAGE(pPage); } next = get2byte(&data[pc]); size = get2byte(&data[pc+2]); nFree = nFree + size; if( next<=pc+size+3 ) break; pc = next; } if( next>0 ){ /* Freeblock not in ascending order */ return SQLITE_CORRUPT_PAGE(pPage); } if( pc+size>(unsigned int)usableSize ){ /* Last freeblock extends past page end */ return SQLITE_CORRUPT_PAGE(pPage); } } /* At this point, nFree contains the sum of the offset to the start ** of the cell-content area plus the number of free bytes within ** the cell-content area. If this is greater than the usable-size ** of the page, then the page must be corrupted. This check also ** serves to verify that the offset to the start of the cell-content ** area, according to the page header, lies within the page. */ if( nFree>usableSize || nFreenFree = (u16)(nFree - iCellFirst); return SQLITE_OK; } /* ** Do additional sanity check after btreeInitPage() if ** PRAGMA cell_size_check=ON */ static SQLITE_NOINLINE int btreeCellSizeCheck(MemPage *pPage){ int iCellFirst; /* First allowable cell or freeblock offset */ int iCellLast; /* Last possible cell or freeblock offset */ int i; /* Index into the cell pointer array */ int sz; /* Size of a cell */ int pc; /* Address of a freeblock within pPage->aData[] */ u8 *data; /* Equal to pPage->aData */ int usableSize; /* Maximum usable space on the page */ int cellOffset; /* Start of cell content area */ iCellFirst = pPage->cellOffset + 2*pPage->nCell; usableSize = pPage->pBt->usableSize; iCellLast = usableSize - 4; data = pPage->aData; cellOffset = pPage->cellOffset; if( !pPage->leaf ) iCellLast--; for(i=0; inCell; i++){ pc = get2byteAligned(&data[cellOffset+i*2]); testcase( pc==iCellFirst ); testcase( pc==iCellLast ); if( pciCellLast ){ return SQLITE_CORRUPT_PAGE(pPage); } sz = pPage->xCellSize(pPage, &data[pc]); testcase( pc+sz==usableSize ); if( pc+sz>usableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } } return SQLITE_OK; } /* ** Initialize the auxiliary information for a disk block. ** ** Return SQLITE_OK on success. If we see that the page does ** not contain a well-formed database page, then return ** SQLITE_CORRUPT. Note that a return of SQLITE_OK does not ** guarantee that the page is well-formed. It only shows that ** we failed to detect any corruption. */ static int btreeInitPage(MemPage *pPage){ u8 *data; /* Equal to pPage->aData */ BtShared *pBt; /* The main btree structure */ assert( pPage->pBt!=0 ); assert( pPage->pBt->db!=0 ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->pgno==sqlite3PagerPagenumber(pPage->pDbPage) ); assert( pPage == sqlite3PagerGetExtra(pPage->pDbPage) ); assert( pPage->aData == sqlite3PagerGetData(pPage->pDbPage) ); assert( pPage->isInit==0 ); pBt = pPage->pBt; data = pPage->aData + pPage->hdrOffset; /* EVIDENCE-OF: R-28594-02890 The one-byte flag at offset 0 indicating ** the b-tree page type. */ if( decodeFlags(pPage, data[0]) ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( pBt->pageSize>=512 && pBt->pageSize<=65536 ); pPage->maskPage = (u16)(pBt->pageSize - 1); pPage->nOverflow = 0; pPage->cellOffset = pPage->hdrOffset + 8 + pPage->childPtrSize; pPage->aCellIdx = data + pPage->childPtrSize + 8; pPage->aDataEnd = pPage->aData + pBt->usableSize; pPage->aDataOfst = pPage->aData + pPage->childPtrSize; /* EVIDENCE-OF: R-37002-32774 The two-byte integer at offset 3 gives the ** number of cells on the page. */ pPage->nCell = get2byte(&data[3]); if( pPage->nCell>MX_CELL(pBt) ){ /* To many cells for a single page. The page must be corrupt */ return SQLITE_CORRUPT_PAGE(pPage); } testcase( pPage->nCell==MX_CELL(pBt) ); /* EVIDENCE-OF: R-24089-57979 If a page contains no cells (which is only ** possible for a root page of a table that contains no rows) then the ** offset to the cell content area will equal the page size minus the ** bytes of reserved space. */ assert( pPage->nCell>0 || get2byteNotZero(&data[5])==(int)pBt->usableSize || CORRUPT_DB ); pPage->nFree = -1; /* Indicate that this value is yet uncomputed */ pPage->isInit = 1; if( pBt->db->flags & SQLITE_CellSizeCk ){ return btreeCellSizeCheck(pPage); } return SQLITE_OK; } /* ** Set up a raw page so that it looks like a database page holding ** no entries. */ static void zeroPage(MemPage *pPage, int flags){ unsigned char *data = pPage->aData; BtShared *pBt = pPage->pBt; u8 hdr = pPage->hdrOffset; u16 first; assert( sqlite3PagerPagenumber(pPage->pDbPage)==pPage->pgno ); assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); assert( sqlite3PagerGetData(pPage->pDbPage) == data ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( sqlite3_mutex_held(pBt->mutex) ); if( pBt->btsFlags & BTS_FAST_SECURE ){ memset(&data[hdr], 0, pBt->usableSize - hdr); } data[hdr] = (char)flags; first = hdr + ((flags&PTF_LEAF)==0 ? 12 : 8); memset(&data[hdr+1], 0, 4); data[hdr+7] = 0; put2byte(&data[hdr+5], pBt->usableSize); pPage->nFree = (u16)(pBt->usableSize - first); decodeFlags(pPage, flags); pPage->cellOffset = first; pPage->aDataEnd = &data[pBt->usableSize]; pPage->aCellIdx = &data[first]; pPage->aDataOfst = &data[pPage->childPtrSize]; pPage->nOverflow = 0; assert( pBt->pageSize>=512 && pBt->pageSize<=65536 ); pPage->maskPage = (u16)(pBt->pageSize - 1); pPage->nCell = 0; pPage->isInit = 1; } /* ** Convert a DbPage obtained from the pager into a MemPage used by ** the btree layer. */ static MemPage *btreePageFromDbPage(DbPage *pDbPage, Pgno pgno, BtShared *pBt){ MemPage *pPage = (MemPage*)sqlite3PagerGetExtra(pDbPage); if( pgno!=pPage->pgno ){ pPage->aData = sqlite3PagerGetData(pDbPage); pPage->pDbPage = pDbPage; pPage->pBt = pBt; pPage->pgno = pgno; pPage->hdrOffset = pgno==1 ? 100 : 0; } assert( pPage->aData==sqlite3PagerGetData(pDbPage) ); return pPage; } /* ** Get a page from the pager. Initialize the MemPage.pBt and ** MemPage.aData elements if needed. See also: btreeGetUnusedPage(). ** ** If the PAGER_GET_NOCONTENT flag is set, it means that we do not care ** about the content of the page at this time. So do not go to the disk ** to fetch the content. Just fill in the content with zeros for now. ** If in the future we call sqlite3PagerWrite() on this page, that ** means we have started to be concerned about content and the disk ** read should occur at that point. */ static int btreeGetPage( BtShared *pBt, /* The btree */ Pgno pgno, /* Number of the page to fetch */ MemPage **ppPage, /* Return the page in this parameter */ int flags /* PAGER_GET_NOCONTENT or PAGER_GET_READONLY */ ){ int rc; DbPage *pDbPage; assert( flags==0 || flags==PAGER_GET_NOCONTENT || flags==PAGER_GET_READONLY ); assert( sqlite3_mutex_held(pBt->mutex) ); rc = sqlite3PagerGet(pBt->pPager, pgno, (DbPage**)&pDbPage, flags); if( rc ) return rc; *ppPage = btreePageFromDbPage(pDbPage, pgno, pBt); return SQLITE_OK; } /* ** Retrieve a page from the pager cache. If the requested page is not ** already in the pager cache return NULL. Initialize the MemPage.pBt and ** MemPage.aData elements if needed. */ static MemPage *btreePageLookup(BtShared *pBt, Pgno pgno){ DbPage *pDbPage; assert( sqlite3_mutex_held(pBt->mutex) ); pDbPage = sqlite3PagerLookup(pBt->pPager, pgno); if( pDbPage ){ return btreePageFromDbPage(pDbPage, pgno, pBt); } return 0; } /* ** Return the size of the database file in pages. If there is any kind of ** error, return ((unsigned int)-1). */ static Pgno btreePagecount(BtShared *pBt){ return pBt->nPage; } SQLITE_PRIVATE Pgno sqlite3BtreeLastPage(Btree *p){ assert( sqlite3BtreeHoldsMutex(p) ); return btreePagecount(p->pBt); } /* ** Get a page from the pager and initialize it. ** ** If pCur!=0 then the page is being fetched as part of a moveToChild() ** call. Do additional sanity checking on the page in this case. ** And if the fetch fails, this routine must decrement pCur->iPage. ** ** The page is fetched as read-write unless pCur is not NULL and is ** a read-only cursor. ** ** If an error occurs, then *ppPage is undefined. It ** may remain unchanged, or it may be set to an invalid value. */ static int getAndInitPage( BtShared *pBt, /* The database file */ Pgno pgno, /* Number of the page to get */ MemPage **ppPage, /* Write the page pointer here */ BtCursor *pCur, /* Cursor to receive the page, or NULL */ int bReadOnly /* True for a read-only page */ ){ int rc; DbPage *pDbPage; assert( sqlite3_mutex_held(pBt->mutex) ); assert( pCur==0 || ppPage==&pCur->pPage ); assert( pCur==0 || bReadOnly==pCur->curPagerFlags ); assert( pCur==0 || pCur->iPage>0 ); if( pgno>btreePagecount(pBt) ){ rc = SQLITE_CORRUPT_BKPT; goto getAndInitPage_error1; } rc = sqlite3PagerGet(pBt->pPager, pgno, (DbPage**)&pDbPage, bReadOnly); if( rc ){ goto getAndInitPage_error1; } *ppPage = (MemPage*)sqlite3PagerGetExtra(pDbPage); if( (*ppPage)->isInit==0 ){ btreePageFromDbPage(pDbPage, pgno, pBt); rc = btreeInitPage(*ppPage); if( rc!=SQLITE_OK ){ goto getAndInitPage_error2; } } assert( (*ppPage)->pgno==pgno ); assert( (*ppPage)->aData==sqlite3PagerGetData(pDbPage) ); /* If obtaining a child page for a cursor, we must verify that the page is ** compatible with the root page. */ if( pCur && ((*ppPage)->nCell<1 || (*ppPage)->intKey!=pCur->curIntKey) ){ rc = SQLITE_CORRUPT_PGNO(pgno); goto getAndInitPage_error2; } return SQLITE_OK; getAndInitPage_error2: releasePage(*ppPage); getAndInitPage_error1: if( pCur ){ pCur->iPage--; pCur->pPage = pCur->apPage[pCur->iPage]; } testcase( pgno==0 ); assert( pgno!=0 || rc==SQLITE_CORRUPT ); return rc; } /* ** Release a MemPage. This should be called once for each prior ** call to btreeGetPage. ** ** Page1 is a special case and must be released using releasePageOne(). */ static void releasePageNotNull(MemPage *pPage){ assert( pPage->aData ); assert( pPage->pBt ); assert( pPage->pDbPage!=0 ); assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); assert( sqlite3PagerGetData(pPage->pDbPage)==pPage->aData ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); sqlite3PagerUnrefNotNull(pPage->pDbPage); } static void releasePage(MemPage *pPage){ if( pPage ) releasePageNotNull(pPage); } static void releasePageOne(MemPage *pPage){ assert( pPage!=0 ); assert( pPage->aData ); assert( pPage->pBt ); assert( pPage->pDbPage!=0 ); assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); assert( sqlite3PagerGetData(pPage->pDbPage)==pPage->aData ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); sqlite3PagerUnrefPageOne(pPage->pDbPage); } /* ** Get an unused page. ** ** This works just like btreeGetPage() with the addition: ** ** * If the page is already in use for some other purpose, immediately ** release it and return an SQLITE_CURRUPT error. ** * Make sure the isInit flag is clear */ static int btreeGetUnusedPage( BtShared *pBt, /* The btree */ Pgno pgno, /* Number of the page to fetch */ MemPage **ppPage, /* Return the page in this parameter */ int flags /* PAGER_GET_NOCONTENT or PAGER_GET_READONLY */ ){ int rc = btreeGetPage(pBt, pgno, ppPage, flags); if( rc==SQLITE_OK ){ if( sqlite3PagerPageRefcount((*ppPage)->pDbPage)>1 ){ releasePage(*ppPage); *ppPage = 0; return SQLITE_CORRUPT_BKPT; } (*ppPage)->isInit = 0; }else{ *ppPage = 0; } return rc; } /* ** During a rollback, when the pager reloads information into the cache ** so that the cache is restored to its original state at the start of ** the transaction, for each page restored this routine is called. ** ** This routine needs to reset the extra data section at the end of the ** page to agree with the restored data. */ static void pageReinit(DbPage *pData){ MemPage *pPage; pPage = (MemPage *)sqlite3PagerGetExtra(pData); assert( sqlite3PagerPageRefcount(pData)>0 ); if( pPage->isInit ){ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); pPage->isInit = 0; if( sqlite3PagerPageRefcount(pData)>1 ){ /* pPage might not be a btree page; it might be an overflow page ** or ptrmap page or a free page. In those cases, the following ** call to btreeInitPage() will likely return SQLITE_CORRUPT. ** But no harm is done by this. And it is very important that ** btreeInitPage() be called on every btree page so we make ** the call for every page that comes in for re-initing. */ btreeInitPage(pPage); } } } /* ** Invoke the busy handler for a btree. */ static int btreeInvokeBusyHandler(void *pArg){ BtShared *pBt = (BtShared*)pArg; assert( pBt->db ); assert( sqlite3_mutex_held(pBt->db->mutex) ); return sqlite3InvokeBusyHandler(&pBt->db->busyHandler); } /* ** Open a database file. ** ** zFilename is the name of the database file. If zFilename is NULL ** then an ephemeral database is created. The ephemeral database might ** be exclusively in memory, or it might use a disk-based memory cache. ** Either way, the ephemeral database will be automatically deleted ** when sqlite3BtreeClose() is called. ** ** If zFilename is ":memory:" then an in-memory database is created ** that is automatically destroyed when it is closed. ** ** The "flags" parameter is a bitmask that might contain bits like ** BTREE_OMIT_JOURNAL and/or BTREE_MEMORY. ** ** If the database is already opened in the same database connection ** and we are in shared cache mode, then the open will fail with an ** SQLITE_CONSTRAINT error. We cannot allow two or more BtShared ** objects in the same database connection since doing so will lead ** to problems with locking. */ SQLITE_PRIVATE int sqlite3BtreeOpen( sqlite3_vfs *pVfs, /* VFS to use for this b-tree */ const char *zFilename, /* Name of the file containing the BTree database */ sqlite3 *db, /* Associated database handle */ Btree **ppBtree, /* Pointer to new Btree object written here */ int flags, /* Options */ int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */ ){ BtShared *pBt = 0; /* Shared part of btree structure */ Btree *p; /* Handle to return */ sqlite3_mutex *mutexOpen = 0; /* Prevents a race condition. Ticket #3537 */ int rc = SQLITE_OK; /* Result code from this function */ u8 nReserve; /* Byte of unused space on each page */ unsigned char zDbHeader[100]; /* Database header content */ /* True if opening an ephemeral, temporary database */ const int isTempDb = zFilename==0 || zFilename[0]==0; /* Set the variable isMemdb to true for an in-memory database, or ** false for a file-based database. */ #ifdef SQLITE_OMIT_MEMORYDB const int isMemdb = 0; #else const int isMemdb = (zFilename && strcmp(zFilename, ":memory:")==0) || (isTempDb && sqlite3TempInMemory(db)) || (vfsFlags & SQLITE_OPEN_MEMORY)!=0; #endif assert( db!=0 ); assert( pVfs!=0 ); assert( sqlite3_mutex_held(db->mutex) ); assert( (flags&0xff)==flags ); /* flags fit in 8 bits */ /* Only a BTREE_SINGLE database can be BTREE_UNORDERED */ assert( (flags & BTREE_UNORDERED)==0 || (flags & BTREE_SINGLE)!=0 ); /* A BTREE_SINGLE database is always a temporary and/or ephemeral */ assert( (flags & BTREE_SINGLE)==0 || isTempDb ); if( isMemdb ){ flags |= BTREE_MEMORY; } if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (isMemdb || isTempDb) ){ vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB; } p = sqlite3MallocZero(sizeof(Btree)); if( !p ){ return SQLITE_NOMEM_BKPT; } p->inTrans = TRANS_NONE; p->db = db; #ifndef SQLITE_OMIT_SHARED_CACHE p->lock.pBtree = p; p->lock.iTable = 1; #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) /* ** If this Btree is a candidate for shared cache, try to find an ** existing BtShared object that we can share with */ if( isTempDb==0 && (isMemdb==0 || (vfsFlags&SQLITE_OPEN_URI)!=0) ){ if( vfsFlags & SQLITE_OPEN_SHAREDCACHE ){ int nFilename = sqlite3Strlen30(zFilename)+1; int nFullPathname = pVfs->mxPathname+1; char *zFullPathname = sqlite3Malloc(MAX(nFullPathname,nFilename)); MUTEX_LOGIC( sqlite3_mutex *mutexShared; ) p->sharable = 1; if( !zFullPathname ){ sqlite3_free(p); return SQLITE_NOMEM_BKPT; } if( isMemdb ){ memcpy(zFullPathname, zFilename, nFilename); }else{ rc = sqlite3OsFullPathname(pVfs, zFilename, nFullPathname, zFullPathname); if( rc ){ if( rc==SQLITE_OK_SYMLINK ){ rc = SQLITE_OK; }else{ sqlite3_free(zFullPathname); sqlite3_free(p); return rc; } } } #if SQLITE_THREADSAFE mutexOpen = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_OPEN); sqlite3_mutex_enter(mutexOpen); mutexShared = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); sqlite3_mutex_enter(mutexShared); #endif for(pBt=GLOBAL(BtShared*,sqlite3SharedCacheList); pBt; pBt=pBt->pNext){ assert( pBt->nRef>0 ); if( 0==strcmp(zFullPathname, sqlite3PagerFilename(pBt->pPager, 0)) && sqlite3PagerVfs(pBt->pPager)==pVfs ){ int iDb; for(iDb=db->nDb-1; iDb>=0; iDb--){ Btree *pExisting = db->aDb[iDb].pBt; if( pExisting && pExisting->pBt==pBt ){ sqlite3_mutex_leave(mutexShared); sqlite3_mutex_leave(mutexOpen); sqlite3_free(zFullPathname); sqlite3_free(p); return SQLITE_CONSTRAINT; } } p->pBt = pBt; pBt->nRef++; break; } } sqlite3_mutex_leave(mutexShared); sqlite3_free(zFullPathname); } #ifdef SQLITE_DEBUG else{ /* In debug mode, we mark all persistent databases as sharable ** even when they are not. This exercises the locking code and ** gives more opportunity for asserts(sqlite3_mutex_held()) ** statements to find locking problems. */ p->sharable = 1; } #endif } #endif if( pBt==0 ){ /* ** The following asserts make sure that structures used by the btree are ** the right size. This is to guard against size changes that result ** when compiling on a different architecture. */ assert( sizeof(i64)==8 ); assert( sizeof(u64)==8 ); assert( sizeof(u32)==4 ); assert( sizeof(u16)==2 ); assert( sizeof(Pgno)==4 ); pBt = sqlite3MallocZero( sizeof(*pBt) ); if( pBt==0 ){ rc = SQLITE_NOMEM_BKPT; goto btree_open_out; } rc = sqlite3PagerOpen(pVfs, &pBt->pPager, zFilename, sizeof(MemPage), flags, vfsFlags, pageReinit); if( rc==SQLITE_OK ){ sqlite3PagerSetMmapLimit(pBt->pPager, db->szMmap); rc = sqlite3PagerReadFileheader(pBt->pPager,sizeof(zDbHeader),zDbHeader); } if( rc!=SQLITE_OK ){ goto btree_open_out; } pBt->openFlags = (u8)flags; pBt->db = db; sqlite3PagerSetBusyHandler(pBt->pPager, btreeInvokeBusyHandler, pBt); p->pBt = pBt; pBt->pCursor = 0; pBt->pPage1 = 0; if( sqlite3PagerIsreadonly(pBt->pPager) ) pBt->btsFlags |= BTS_READ_ONLY; #if defined(SQLITE_SECURE_DELETE) pBt->btsFlags |= BTS_SECURE_DELETE; #elif defined(SQLITE_FAST_SECURE_DELETE) pBt->btsFlags |= BTS_OVERWRITE; #endif /* EVIDENCE-OF: R-51873-39618 The page size for a database file is ** determined by the 2-byte integer located at an offset of 16 bytes from ** the beginning of the database file. */ pBt->pageSize = (zDbHeader[16]<<8) | (zDbHeader[17]<<16); if( pBt->pageSize<512 || pBt->pageSize>SQLITE_MAX_PAGE_SIZE || ((pBt->pageSize-1)&pBt->pageSize)!=0 ){ pBt->pageSize = 0; #ifndef SQLITE_OMIT_AUTOVACUUM /* If the magic name ":memory:" will create an in-memory database, then ** leave the autoVacuum mode at 0 (do not auto-vacuum), even if ** SQLITE_DEFAULT_AUTOVACUUM is true. On the other hand, if ** SQLITE_OMIT_MEMORYDB has been defined, then ":memory:" is just a ** regular file-name. In this case the auto-vacuum applies as per normal. */ if( zFilename && !isMemdb ){ pBt->autoVacuum = (SQLITE_DEFAULT_AUTOVACUUM ? 1 : 0); pBt->incrVacuum = (SQLITE_DEFAULT_AUTOVACUUM==2 ? 1 : 0); } #endif nReserve = 0; }else{ /* EVIDENCE-OF: R-37497-42412 The size of the reserved region is ** determined by the one-byte unsigned integer found at an offset of 20 ** into the database file header. */ nReserve = zDbHeader[20]; pBt->btsFlags |= BTS_PAGESIZE_FIXED; #ifndef SQLITE_OMIT_AUTOVACUUM pBt->autoVacuum = (get4byte(&zDbHeader[36 + 4*4])?1:0); pBt->incrVacuum = (get4byte(&zDbHeader[36 + 7*4])?1:0); #endif } rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, nReserve); if( rc ) goto btree_open_out; pBt->usableSize = pBt->pageSize - nReserve; assert( (pBt->pageSize & 7)==0 ); /* 8-byte alignment of pageSize */ #if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) /* Add the new BtShared object to the linked list sharable BtShareds. */ pBt->nRef = 1; if( p->sharable ){ MUTEX_LOGIC( sqlite3_mutex *mutexShared; ) MUTEX_LOGIC( mutexShared = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN);) if( SQLITE_THREADSAFE && sqlite3GlobalConfig.bCoreMutex ){ pBt->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_FAST); if( pBt->mutex==0 ){ rc = SQLITE_NOMEM_BKPT; goto btree_open_out; } } sqlite3_mutex_enter(mutexShared); pBt->pNext = GLOBAL(BtShared*,sqlite3SharedCacheList); GLOBAL(BtShared*,sqlite3SharedCacheList) = pBt; sqlite3_mutex_leave(mutexShared); } #endif } #if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) /* If the new Btree uses a sharable pBtShared, then link the new ** Btree into the list of all sharable Btrees for the same connection. ** The list is kept in ascending order by pBt address. */ if( p->sharable ){ int i; Btree *pSib; for(i=0; inDb; i++){ if( (pSib = db->aDb[i].pBt)!=0 && pSib->sharable ){ while( pSib->pPrev ){ pSib = pSib->pPrev; } if( (uptr)p->pBt<(uptr)pSib->pBt ){ p->pNext = pSib; p->pPrev = 0; pSib->pPrev = p; }else{ while( pSib->pNext && (uptr)pSib->pNext->pBt<(uptr)p->pBt ){ pSib = pSib->pNext; } p->pNext = pSib->pNext; p->pPrev = pSib; if( p->pNext ){ p->pNext->pPrev = p; } pSib->pNext = p; } break; } } } #endif *ppBtree = p; btree_open_out: if( rc!=SQLITE_OK ){ if( pBt && pBt->pPager ){ sqlite3PagerClose(pBt->pPager, 0); } sqlite3_free(pBt); sqlite3_free(p); *ppBtree = 0; }else{ sqlite3_file *pFile; /* If the B-Tree was successfully opened, set the pager-cache size to the ** default value. Except, when opening on an existing shared pager-cache, ** do not change the pager-cache size. */ if( sqlite3BtreeSchema(p, 0, 0)==0 ){ sqlite3BtreeSetCacheSize(p, SQLITE_DEFAULT_CACHE_SIZE); } pFile = sqlite3PagerFile(pBt->pPager); if( pFile->pMethods ){ sqlite3OsFileControlHint(pFile, SQLITE_FCNTL_PDB, (void*)&pBt->db); } } if( mutexOpen ){ assert( sqlite3_mutex_held(mutexOpen) ); sqlite3_mutex_leave(mutexOpen); } assert( rc!=SQLITE_OK || sqlite3BtreeConnectionCount(*ppBtree)>0 ); return rc; } /* ** Decrement the BtShared.nRef counter. When it reaches zero, ** remove the BtShared structure from the sharing list. Return ** true if the BtShared.nRef counter reaches zero and return ** false if it is still positive. */ static int removeFromSharingList(BtShared *pBt){ #ifndef SQLITE_OMIT_SHARED_CACHE MUTEX_LOGIC( sqlite3_mutex *pMainMtx; ) BtShared *pList; int removed = 0; assert( sqlite3_mutex_notheld(pBt->mutex) ); MUTEX_LOGIC( pMainMtx = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(pMainMtx); pBt->nRef--; if( pBt->nRef<=0 ){ if( GLOBAL(BtShared*,sqlite3SharedCacheList)==pBt ){ GLOBAL(BtShared*,sqlite3SharedCacheList) = pBt->pNext; }else{ pList = GLOBAL(BtShared*,sqlite3SharedCacheList); while( ALWAYS(pList) && pList->pNext!=pBt ){ pList=pList->pNext; } if( ALWAYS(pList) ){ pList->pNext = pBt->pNext; } } if( SQLITE_THREADSAFE ){ sqlite3_mutex_free(pBt->mutex); } removed = 1; } sqlite3_mutex_leave(pMainMtx); return removed; #else return 1; #endif } /* ** Make sure pBt->pTmpSpace points to an allocation of ** MX_CELL_SIZE(pBt) bytes with a 4-byte prefix for a left-child ** pointer. */ static SQLITE_NOINLINE int allocateTempSpace(BtShared *pBt){ assert( pBt!=0 ); assert( pBt->pTmpSpace==0 ); /* This routine is called only by btreeCursor() when allocating the ** first write cursor for the BtShared object */ assert( pBt->pCursor!=0 && (pBt->pCursor->curFlags & BTCF_WriteFlag)!=0 ); pBt->pTmpSpace = sqlite3PageMalloc( pBt->pageSize ); if( pBt->pTmpSpace==0 ){ BtCursor *pCur = pBt->pCursor; pBt->pCursor = pCur->pNext; /* Unlink the cursor */ memset(pCur, 0, sizeof(*pCur)); return SQLITE_NOMEM_BKPT; } /* One of the uses of pBt->pTmpSpace is to format cells before ** inserting them into a leaf page (function fillInCell()). If ** a cell is less than 4 bytes in size, it is rounded up to 4 bytes ** by the various routines that manipulate binary cells. Which ** can mean that fillInCell() only initializes the first 2 or 3 ** bytes of pTmpSpace, but that the first 4 bytes are copied from ** it into a database page. This is not actually a problem, but it ** does cause a valgrind error when the 1 or 2 bytes of unitialized ** data is passed to system call write(). So to avoid this error, ** zero the first 4 bytes of temp space here. ** ** Also: Provide four bytes of initialized space before the ** beginning of pTmpSpace as an area available to prepend the ** left-child pointer to the beginning of a cell. */ memset(pBt->pTmpSpace, 0, 8); pBt->pTmpSpace += 4; return SQLITE_OK; } /* ** Free the pBt->pTmpSpace allocation */ static void freeTempSpace(BtShared *pBt){ if( pBt->pTmpSpace ){ pBt->pTmpSpace -= 4; sqlite3PageFree(pBt->pTmpSpace); pBt->pTmpSpace = 0; } } /* ** Close an open database and invalidate all cursors. */ SQLITE_PRIVATE int sqlite3BtreeClose(Btree *p){ BtShared *pBt = p->pBt; /* Close all cursors opened via this handle. */ assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); /* Verify that no other cursors have this Btree open */ #ifdef SQLITE_DEBUG { BtCursor *pCur = pBt->pCursor; while( pCur ){ BtCursor *pTmp = pCur; pCur = pCur->pNext; assert( pTmp->pBtree!=p ); } } #endif /* Rollback any active transaction and free the handle structure. ** The call to sqlite3BtreeRollback() drops any table-locks held by ** this handle. */ sqlite3BtreeRollback(p, SQLITE_OK, 0); sqlite3BtreeLeave(p); /* If there are still other outstanding references to the shared-btree ** structure, return now. The remainder of this procedure cleans ** up the shared-btree. */ assert( p->wantToLock==0 && p->locked==0 ); if( !p->sharable || removeFromSharingList(pBt) ){ /* The pBt is no longer on the sharing list, so we can access ** it without having to hold the mutex. ** ** Clean out and delete the BtShared object. */ assert( !pBt->pCursor ); sqlite3PagerClose(pBt->pPager, p->db); if( pBt->xFreeSchema && pBt->pSchema ){ pBt->xFreeSchema(pBt->pSchema); } sqlite3DbFree(0, pBt->pSchema); freeTempSpace(pBt); sqlite3_free(pBt); } #ifndef SQLITE_OMIT_SHARED_CACHE assert( p->wantToLock==0 ); assert( p->locked==0 ); if( p->pPrev ) p->pPrev->pNext = p->pNext; if( p->pNext ) p->pNext->pPrev = p->pPrev; #endif sqlite3_free(p); return SQLITE_OK; } /* ** Change the "soft" limit on the number of pages in the cache. ** Unused and unmodified pages will be recycled when the number of ** pages in the cache exceeds this soft limit. But the size of the ** cache is allowed to grow larger than this limit if it contains ** dirty pages or pages still in active use. */ SQLITE_PRIVATE int sqlite3BtreeSetCacheSize(Btree *p, int mxPage){ BtShared *pBt = p->pBt; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); sqlite3PagerSetCachesize(pBt->pPager, mxPage); sqlite3BtreeLeave(p); return SQLITE_OK; } /* ** Change the "spill" limit on the number of pages in the cache. ** If the number of pages exceeds this limit during a write transaction, ** the pager might attempt to "spill" pages to the journal early in ** order to free up memory. ** ** The value returned is the current spill size. If zero is passed ** as an argument, no changes are made to the spill size setting, so ** using mxPage of 0 is a way to query the current spill size. */ SQLITE_PRIVATE int sqlite3BtreeSetSpillSize(Btree *p, int mxPage){ BtShared *pBt = p->pBt; int res; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); res = sqlite3PagerSetSpillsize(pBt->pPager, mxPage); sqlite3BtreeLeave(p); return res; } #if SQLITE_MAX_MMAP_SIZE>0 /* ** Change the limit on the amount of the database file that may be ** memory mapped. */ SQLITE_PRIVATE int sqlite3BtreeSetMmapLimit(Btree *p, sqlite3_int64 szMmap){ BtShared *pBt = p->pBt; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); sqlite3PagerSetMmapLimit(pBt->pPager, szMmap); sqlite3BtreeLeave(p); return SQLITE_OK; } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* ** Change the way data is synced to disk in order to increase or decrease ** how well the database resists damage due to OS crashes and power ** failures. Level 1 is the same as asynchronous (no syncs() occur and ** there is a high probability of damage) Level 2 is the default. There ** is a very low but non-zero probability of damage. Level 3 reduces the ** probability of damage to near zero but with a write performance reduction. */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS SQLITE_PRIVATE int sqlite3BtreeSetPagerFlags( Btree *p, /* The btree to set the safety level on */ unsigned pgFlags /* Various PAGER_* flags */ ){ BtShared *pBt = p->pBt; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); sqlite3PagerSetFlags(pBt->pPager, pgFlags); sqlite3BtreeLeave(p); return SQLITE_OK; } #endif /* ** Change the default pages size and the number of reserved bytes per page. ** Or, if the page size has already been fixed, return SQLITE_READONLY ** without changing anything. ** ** The page size must be a power of 2 between 512 and 65536. If the page ** size supplied does not meet this constraint then the page size is not ** changed. ** ** Page sizes are constrained to be a power of two so that the region ** of the database file used for locking (beginning at PENDING_BYTE, ** the first byte past the 1GB boundary, 0x40000000) needs to occur ** at the beginning of a page. ** ** If parameter nReserve is less than zero, then the number of reserved ** bytes per page is left unchanged. ** ** If the iFix!=0 then the BTS_PAGESIZE_FIXED flag is set so that the page size ** and autovacuum mode can no longer be changed. */ SQLITE_PRIVATE int sqlite3BtreeSetPageSize(Btree *p, int pageSize, int nReserve, int iFix){ int rc = SQLITE_OK; int x; BtShared *pBt = p->pBt; assert( nReserve>=0 && nReserve<=255 ); sqlite3BtreeEnter(p); pBt->nReserveWanted = nReserve; x = pBt->pageSize - pBt->usableSize; if( nReservebtsFlags & BTS_PAGESIZE_FIXED ){ sqlite3BtreeLeave(p); return SQLITE_READONLY; } assert( nReserve>=0 && nReserve<=255 ); if( pageSize>=512 && pageSize<=SQLITE_MAX_PAGE_SIZE && ((pageSize-1)&pageSize)==0 ){ assert( (pageSize & 7)==0 ); assert( !pBt->pCursor ); if( nReserve>32 && pageSize==512 ) pageSize = 1024; pBt->pageSize = (u32)pageSize; freeTempSpace(pBt); } rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, nReserve); pBt->usableSize = pBt->pageSize - (u16)nReserve; if( iFix ) pBt->btsFlags |= BTS_PAGESIZE_FIXED; sqlite3BtreeLeave(p); return rc; } /* ** Return the currently defined page size */ SQLITE_PRIVATE int sqlite3BtreeGetPageSize(Btree *p){ return p->pBt->pageSize; } /* ** This function is similar to sqlite3BtreeGetReserve(), except that it ** may only be called if it is guaranteed that the b-tree mutex is already ** held. ** ** This is useful in one special case in the backup API code where it is ** known that the shared b-tree mutex is held, but the mutex on the ** database handle that owns *p is not. In this case if sqlite3BtreeEnter() ** were to be called, it might collide with some other operation on the ** database handle that owns *p, causing undefined behavior. */ SQLITE_PRIVATE int sqlite3BtreeGetReserveNoMutex(Btree *p){ int n; assert( sqlite3_mutex_held(p->pBt->mutex) ); n = p->pBt->pageSize - p->pBt->usableSize; return n; } /* ** Return the number of bytes of space at the end of every page that ** are intentually left unused. This is the "reserved" space that is ** sometimes used by extensions. ** ** The value returned is the larger of the current reserve size and ** the latest reserve size requested by SQLITE_FILECTRL_RESERVE_BYTES. ** The amount of reserve can only grow - never shrink. */ SQLITE_PRIVATE int sqlite3BtreeGetRequestedReserve(Btree *p){ int n1, n2; sqlite3BtreeEnter(p); n1 = (int)p->pBt->nReserveWanted; n2 = sqlite3BtreeGetReserveNoMutex(p); sqlite3BtreeLeave(p); return n1>n2 ? n1 : n2; } /* ** Set the maximum page count for a database if mxPage is positive. ** No changes are made if mxPage is 0 or negative. ** Regardless of the value of mxPage, return the maximum page count. */ SQLITE_PRIVATE Pgno sqlite3BtreeMaxPageCount(Btree *p, Pgno mxPage){ Pgno n; sqlite3BtreeEnter(p); n = sqlite3PagerMaxPageCount(p->pBt->pPager, mxPage); sqlite3BtreeLeave(p); return n; } /* ** Change the values for the BTS_SECURE_DELETE and BTS_OVERWRITE flags: ** ** newFlag==0 Both BTS_SECURE_DELETE and BTS_OVERWRITE are cleared ** newFlag==1 BTS_SECURE_DELETE set and BTS_OVERWRITE is cleared ** newFlag==2 BTS_SECURE_DELETE cleared and BTS_OVERWRITE is set ** newFlag==(-1) No changes ** ** This routine acts as a query if newFlag is less than zero ** ** With BTS_OVERWRITE set, deleted content is overwritten by zeros, but ** freelist leaf pages are not written back to the database. Thus in-page ** deleted content is cleared, but freelist deleted content is not. ** ** With BTS_SECURE_DELETE, operation is like BTS_OVERWRITE with the addition ** that freelist leaf pages are written back into the database, increasing ** the amount of disk I/O. */ SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree *p, int newFlag){ int b; if( p==0 ) return 0; sqlite3BtreeEnter(p); assert( BTS_OVERWRITE==BTS_SECURE_DELETE*2 ); assert( BTS_FAST_SECURE==(BTS_OVERWRITE|BTS_SECURE_DELETE) ); if( newFlag>=0 ){ p->pBt->btsFlags &= ~BTS_FAST_SECURE; p->pBt->btsFlags |= BTS_SECURE_DELETE*newFlag; } b = (p->pBt->btsFlags & BTS_FAST_SECURE)/BTS_SECURE_DELETE; sqlite3BtreeLeave(p); return b; } /* ** Change the 'auto-vacuum' property of the database. If the 'autoVacuum' ** parameter is non-zero, then auto-vacuum mode is enabled. If zero, it ** is disabled. The default value for the auto-vacuum property is ** determined by the SQLITE_DEFAULT_AUTOVACUUM macro. */ SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *p, int autoVacuum){ #ifdef SQLITE_OMIT_AUTOVACUUM return SQLITE_READONLY; #else BtShared *pBt = p->pBt; int rc = SQLITE_OK; u8 av = (u8)autoVacuum; sqlite3BtreeEnter(p); if( (pBt->btsFlags & BTS_PAGESIZE_FIXED)!=0 && (av ?1:0)!=pBt->autoVacuum ){ rc = SQLITE_READONLY; }else{ pBt->autoVacuum = av ?1:0; pBt->incrVacuum = av==2 ?1:0; } sqlite3BtreeLeave(p); return rc; #endif } /* ** Return the value of the 'auto-vacuum' property. If auto-vacuum is ** enabled 1 is returned. Otherwise 0. */ SQLITE_PRIVATE int sqlite3BtreeGetAutoVacuum(Btree *p){ #ifdef SQLITE_OMIT_AUTOVACUUM return BTREE_AUTOVACUUM_NONE; #else int rc; sqlite3BtreeEnter(p); rc = ( (!p->pBt->autoVacuum)?BTREE_AUTOVACUUM_NONE: (!p->pBt->incrVacuum)?BTREE_AUTOVACUUM_FULL: BTREE_AUTOVACUUM_INCR ); sqlite3BtreeLeave(p); return rc; #endif } /* ** If the user has not set the safety-level for this database connection ** using "PRAGMA synchronous", and if the safety-level is not already ** set to the value passed to this function as the second parameter, ** set it so. */ #if SQLITE_DEFAULT_SYNCHRONOUS!=SQLITE_DEFAULT_WAL_SYNCHRONOUS \ && !defined(SQLITE_OMIT_WAL) static void setDefaultSyncFlag(BtShared *pBt, u8 safety_level){ sqlite3 *db; Db *pDb; if( (db=pBt->db)!=0 && (pDb=db->aDb)!=0 ){ while( pDb->pBt==0 || pDb->pBt->pBt!=pBt ){ pDb++; } if( pDb->bSyncSet==0 && pDb->safety_level!=safety_level && pDb!=&db->aDb[1] ){ pDb->safety_level = safety_level; sqlite3PagerSetFlags(pBt->pPager, pDb->safety_level | (db->flags & PAGER_FLAGS_MASK)); } } } #else # define setDefaultSyncFlag(pBt,safety_level) #endif /* Forward declaration */ static int newDatabase(BtShared*); /* ** Get a reference to pPage1 of the database file. This will ** also acquire a readlock on that file. ** ** SQLITE_OK is returned on success. If the file is not a ** well-formed database file, then SQLITE_CORRUPT is returned. ** SQLITE_BUSY is returned if the database is locked. SQLITE_NOMEM ** is returned if we run out of memory. */ static int lockBtree(BtShared *pBt){ int rc; /* Result code from subfunctions */ MemPage *pPage1; /* Page 1 of the database file */ u32 nPage; /* Number of pages in the database */ u32 nPageFile = 0; /* Number of pages in the database file */ assert( sqlite3_mutex_held(pBt->mutex) ); assert( pBt->pPage1==0 ); rc = sqlite3PagerSharedLock(pBt->pPager); if( rc!=SQLITE_OK ) return rc; rc = btreeGetPage(pBt, 1, &pPage1, 0); if( rc!=SQLITE_OK ) return rc; /* Do some checking to help insure the file we opened really is ** a valid database file. */ nPage = get4byte(28+(u8*)pPage1->aData); sqlite3PagerPagecount(pBt->pPager, (int*)&nPageFile); if( nPage==0 || memcmp(24+(u8*)pPage1->aData, 92+(u8*)pPage1->aData,4)!=0 ){ nPage = nPageFile; } if( (pBt->db->flags & SQLITE_ResetDatabase)!=0 ){ nPage = 0; } if( nPage>0 ){ u32 pageSize; u32 usableSize; u8 *page1 = pPage1->aData; rc = SQLITE_NOTADB; /* EVIDENCE-OF: R-43737-39999 Every valid SQLite database file begins ** with the following 16 bytes (in hex): 53 51 4c 69 74 65 20 66 6f 72 6d ** 61 74 20 33 00. */ if( memcmp(page1, zMagicHeader, 16)!=0 ){ goto page1_init_failed; } #ifdef SQLITE_OMIT_WAL if( page1[18]>1 ){ pBt->btsFlags |= BTS_READ_ONLY; } if( page1[19]>1 ){ goto page1_init_failed; } #else if( page1[18]>2 ){ pBt->btsFlags |= BTS_READ_ONLY; } if( page1[19]>2 ){ goto page1_init_failed; } /* If the read version is set to 2, this database should be accessed ** in WAL mode. If the log is not already open, open it now. Then ** return SQLITE_OK and return without populating BtShared.pPage1. ** The caller detects this and calls this function again. This is ** required as the version of page 1 currently in the page1 buffer ** may not be the latest version - there may be a newer one in the log ** file. */ if( page1[19]==2 && (pBt->btsFlags & BTS_NO_WAL)==0 ){ int isOpen = 0; rc = sqlite3PagerOpenWal(pBt->pPager, &isOpen); if( rc!=SQLITE_OK ){ goto page1_init_failed; }else{ setDefaultSyncFlag(pBt, SQLITE_DEFAULT_WAL_SYNCHRONOUS+1); if( isOpen==0 ){ releasePageOne(pPage1); return SQLITE_OK; } } rc = SQLITE_NOTADB; }else{ setDefaultSyncFlag(pBt, SQLITE_DEFAULT_SYNCHRONOUS+1); } #endif /* EVIDENCE-OF: R-15465-20813 The maximum and minimum embedded payload ** fractions and the leaf payload fraction values must be 64, 32, and 32. ** ** The original design allowed these amounts to vary, but as of ** version 3.6.0, we require them to be fixed. */ if( memcmp(&page1[21], "\100\040\040",3)!=0 ){ goto page1_init_failed; } /* EVIDENCE-OF: R-51873-39618 The page size for a database file is ** determined by the 2-byte integer located at an offset of 16 bytes from ** the beginning of the database file. */ pageSize = (page1[16]<<8) | (page1[17]<<16); /* EVIDENCE-OF: R-25008-21688 The size of a page is a power of two ** between 512 and 65536 inclusive. */ if( ((pageSize-1)&pageSize)!=0 || pageSize>SQLITE_MAX_PAGE_SIZE || pageSize<=256 ){ goto page1_init_failed; } pBt->btsFlags |= BTS_PAGESIZE_FIXED; assert( (pageSize & 7)==0 ); /* EVIDENCE-OF: R-59310-51205 The "reserved space" size in the 1-byte ** integer at offset 20 is the number of bytes of space at the end of ** each page to reserve for extensions. ** ** EVIDENCE-OF: R-37497-42412 The size of the reserved region is ** determined by the one-byte unsigned integer found at an offset of 20 ** into the database file header. */ usableSize = pageSize - page1[20]; if( (u32)pageSize!=pBt->pageSize ){ /* After reading the first page of the database assuming a page size ** of BtShared.pageSize, we have discovered that the page-size is ** actually pageSize. Unlock the database, leave pBt->pPage1 at ** zero and return SQLITE_OK. The caller will call this function ** again with the correct page-size. */ releasePageOne(pPage1); pBt->usableSize = usableSize; pBt->pageSize = pageSize; freeTempSpace(pBt); rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, pageSize-usableSize); return rc; } if( nPage>nPageFile ){ if( sqlite3WritableSchema(pBt->db)==0 ){ rc = SQLITE_CORRUPT_BKPT; goto page1_init_failed; }else{ nPage = nPageFile; } } /* EVIDENCE-OF: R-28312-64704 However, the usable size is not allowed to ** be less than 480. In other words, if the page size is 512, then the ** reserved space size cannot exceed 32. */ if( usableSize<480 ){ goto page1_init_failed; } pBt->pageSize = pageSize; pBt->usableSize = usableSize; #ifndef SQLITE_OMIT_AUTOVACUUM pBt->autoVacuum = (get4byte(&page1[36 + 4*4])?1:0); pBt->incrVacuum = (get4byte(&page1[36 + 7*4])?1:0); #endif } /* maxLocal is the maximum amount of payload to store locally for ** a cell. Make sure it is small enough so that at least minFanout ** cells can will fit on one page. We assume a 10-byte page header. ** Besides the payload, the cell must store: ** 2-byte pointer to the cell ** 4-byte child pointer ** 9-byte nKey value ** 4-byte nData value ** 4-byte overflow page pointer ** So a cell consists of a 2-byte pointer, a header which is as much as ** 17 bytes long, 0 to N bytes of payload, and an optional 4 byte overflow ** page pointer. */ pBt->maxLocal = (u16)((pBt->usableSize-12)*64/255 - 23); pBt->minLocal = (u16)((pBt->usableSize-12)*32/255 - 23); pBt->maxLeaf = (u16)(pBt->usableSize - 35); pBt->minLeaf = (u16)((pBt->usableSize-12)*32/255 - 23); if( pBt->maxLocal>127 ){ pBt->max1bytePayload = 127; }else{ pBt->max1bytePayload = (u8)pBt->maxLocal; } assert( pBt->maxLeaf + 23 <= MX_CELL_SIZE(pBt) ); pBt->pPage1 = pPage1; pBt->nPage = nPage; return SQLITE_OK; page1_init_failed: releasePageOne(pPage1); pBt->pPage1 = 0; return rc; } #ifndef NDEBUG /* ** Return the number of cursors open on pBt. This is for use ** in assert() expressions, so it is only compiled if NDEBUG is not ** defined. ** ** Only write cursors are counted if wrOnly is true. If wrOnly is ** false then all cursors are counted. ** ** For the purposes of this routine, a cursor is any cursor that ** is capable of reading or writing to the database. Cursors that ** have been tripped into the CURSOR_FAULT state are not counted. */ static int countValidCursors(BtShared *pBt, int wrOnly){ BtCursor *pCur; int r = 0; for(pCur=pBt->pCursor; pCur; pCur=pCur->pNext){ if( (wrOnly==0 || (pCur->curFlags & BTCF_WriteFlag)!=0) && pCur->eState!=CURSOR_FAULT ) r++; } return r; } #endif /* ** If there are no outstanding cursors and we are not in the middle ** of a transaction but there is a read lock on the database, then ** this routine unrefs the first page of the database file which ** has the effect of releasing the read lock. ** ** If there is a transaction in progress, this routine is a no-op. */ static void unlockBtreeIfUnused(BtShared *pBt){ assert( sqlite3_mutex_held(pBt->mutex) ); assert( countValidCursors(pBt,0)==0 || pBt->inTransaction>TRANS_NONE ); if( pBt->inTransaction==TRANS_NONE && pBt->pPage1!=0 ){ MemPage *pPage1 = pBt->pPage1; assert( pPage1->aData ); assert( sqlite3PagerRefcount(pBt->pPager)==1 ); pBt->pPage1 = 0; releasePageOne(pPage1); } } /* ** If pBt points to an empty file then convert that empty file ** into a new empty database by initializing the first page of ** the database. */ static int newDatabase(BtShared *pBt){ MemPage *pP1; unsigned char *data; int rc; assert( sqlite3_mutex_held(pBt->mutex) ); if( pBt->nPage>0 ){ return SQLITE_OK; } pP1 = pBt->pPage1; assert( pP1!=0 ); data = pP1->aData; rc = sqlite3PagerWrite(pP1->pDbPage); if( rc ) return rc; memcpy(data, zMagicHeader, sizeof(zMagicHeader)); assert( sizeof(zMagicHeader)==16 ); data[16] = (u8)((pBt->pageSize>>8)&0xff); data[17] = (u8)((pBt->pageSize>>16)&0xff); data[18] = 1; data[19] = 1; assert( pBt->usableSize<=pBt->pageSize && pBt->usableSize+255>=pBt->pageSize); data[20] = (u8)(pBt->pageSize - pBt->usableSize); data[21] = 64; data[22] = 32; data[23] = 32; memset(&data[24], 0, 100-24); zeroPage(pP1, PTF_INTKEY|PTF_LEAF|PTF_LEAFDATA ); pBt->btsFlags |= BTS_PAGESIZE_FIXED; #ifndef SQLITE_OMIT_AUTOVACUUM assert( pBt->autoVacuum==1 || pBt->autoVacuum==0 ); assert( pBt->incrVacuum==1 || pBt->incrVacuum==0 ); put4byte(&data[36 + 4*4], pBt->autoVacuum); put4byte(&data[36 + 7*4], pBt->incrVacuum); #endif pBt->nPage = 1; data[31] = 1; return SQLITE_OK; } /* ** Initialize the first page of the database file (creating a database ** consisting of a single page and no schema objects). Return SQLITE_OK ** if successful, or an SQLite error code otherwise. */ SQLITE_PRIVATE int sqlite3BtreeNewDb(Btree *p){ int rc; sqlite3BtreeEnter(p); p->pBt->nPage = 0; rc = newDatabase(p->pBt); sqlite3BtreeLeave(p); return rc; } /* ** Attempt to start a new transaction. A write-transaction ** is started if the second argument is nonzero, otherwise a read- ** transaction. If the second argument is 2 or more and exclusive ** transaction is started, meaning that no other process is allowed ** to access the database. A preexisting transaction may not be ** upgraded to exclusive by calling this routine a second time - the ** exclusivity flag only works for a new transaction. ** ** A write-transaction must be started before attempting any ** changes to the database. None of the following routines ** will work unless a transaction is started first: ** ** sqlite3BtreeCreateTable() ** sqlite3BtreeCreateIndex() ** sqlite3BtreeClearTable() ** sqlite3BtreeDropTable() ** sqlite3BtreeInsert() ** sqlite3BtreeDelete() ** sqlite3BtreeUpdateMeta() ** ** If an initial attempt to acquire the lock fails because of lock contention ** and the database was previously unlocked, then invoke the busy handler ** if there is one. But if there was previously a read-lock, do not ** invoke the busy handler - just return SQLITE_BUSY. SQLITE_BUSY is ** returned when there is already a read-lock in order to avoid a deadlock. ** ** Suppose there are two processes A and B. A has a read lock and B has ** a reserved lock. B tries to promote to exclusive but is blocked because ** of A's read lock. A tries to promote to reserved but is blocked by B. ** One or the other of the two processes must give way or there can be ** no progress. By returning SQLITE_BUSY and not invoking the busy callback ** when A already has a read lock, we encourage A to give up and let B ** proceed. */ SQLITE_PRIVATE int sqlite3BtreeBeginTrans(Btree *p, int wrflag, int *pSchemaVersion){ BtShared *pBt = p->pBt; Pager *pPager = pBt->pPager; int rc = SQLITE_OK; sqlite3BtreeEnter(p); btreeIntegrity(p); /* If the btree is already in a write-transaction, or it ** is already in a read-transaction and a read-transaction ** is requested, this is a no-op. */ if( p->inTrans==TRANS_WRITE || (p->inTrans==TRANS_READ && !wrflag) ){ goto trans_begun; } assert( pBt->inTransaction==TRANS_WRITE || IfNotOmitAV(pBt->bDoTruncate)==0 ); if( (p->db->flags & SQLITE_ResetDatabase) && sqlite3PagerIsreadonly(pPager)==0 ){ pBt->btsFlags &= ~BTS_READ_ONLY; } /* Write transactions are not possible on a read-only database */ if( (pBt->btsFlags & BTS_READ_ONLY)!=0 && wrflag ){ rc = SQLITE_READONLY; goto trans_begun; } #ifndef SQLITE_OMIT_SHARED_CACHE { sqlite3 *pBlock = 0; /* If another database handle has already opened a write transaction ** on this shared-btree structure and a second write transaction is ** requested, return SQLITE_LOCKED. */ if( (wrflag && pBt->inTransaction==TRANS_WRITE) || (pBt->btsFlags & BTS_PENDING)!=0 ){ pBlock = pBt->pWriter->db; }else if( wrflag>1 ){ BtLock *pIter; for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ if( pIter->pBtree!=p ){ pBlock = pIter->pBtree->db; break; } } } if( pBlock ){ sqlite3ConnectionBlocked(p->db, pBlock); rc = SQLITE_LOCKED_SHAREDCACHE; goto trans_begun; } } #endif /* Any read-only or read-write transaction implies a read-lock on ** page 1. So if some other shared-cache client already has a write-lock ** on page 1, the transaction cannot be opened. */ rc = querySharedCacheTableLock(p, SCHEMA_ROOT, READ_LOCK); if( SQLITE_OK!=rc ) goto trans_begun; pBt->btsFlags &= ~BTS_INITIALLY_EMPTY; if( pBt->nPage==0 ) pBt->btsFlags |= BTS_INITIALLY_EMPTY; do { sqlite3PagerWalDb(pPager, p->db); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* If transitioning from no transaction directly to a write transaction, ** block for the WRITER lock first if possible. */ if( pBt->pPage1==0 && wrflag ){ assert( pBt->inTransaction==TRANS_NONE ); rc = sqlite3PagerWalWriteLock(pPager, 1); if( rc!=SQLITE_BUSY && rc!=SQLITE_OK ) break; } #endif /* Call lockBtree() until either pBt->pPage1 is populated or ** lockBtree() returns something other than SQLITE_OK. lockBtree() ** may return SQLITE_OK but leave pBt->pPage1 set to 0 if after ** reading page 1 it discovers that the page-size of the database ** file is not pBt->pageSize. In this case lockBtree() will update ** pBt->pageSize to the page-size of the file on disk. */ while( pBt->pPage1==0 && SQLITE_OK==(rc = lockBtree(pBt)) ); if( rc==SQLITE_OK && wrflag ){ if( (pBt->btsFlags & BTS_READ_ONLY)!=0 ){ rc = SQLITE_READONLY; }else{ rc = sqlite3PagerBegin(pPager, wrflag>1, sqlite3TempInMemory(p->db)); if( rc==SQLITE_OK ){ rc = newDatabase(pBt); }else if( rc==SQLITE_BUSY_SNAPSHOT && pBt->inTransaction==TRANS_NONE ){ /* if there was no transaction opened when this function was ** called and SQLITE_BUSY_SNAPSHOT is returned, change the error ** code to SQLITE_BUSY. */ rc = SQLITE_BUSY; } } } if( rc!=SQLITE_OK ){ (void)sqlite3PagerWalWriteLock(pPager, 0); unlockBtreeIfUnused(pBt); } }while( (rc&0xFF)==SQLITE_BUSY && pBt->inTransaction==TRANS_NONE && btreeInvokeBusyHandler(pBt) ); sqlite3PagerWalDb(pPager, 0); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT if( rc==SQLITE_BUSY_TIMEOUT ) rc = SQLITE_BUSY; #endif if( rc==SQLITE_OK ){ if( p->inTrans==TRANS_NONE ){ pBt->nTransaction++; #ifndef SQLITE_OMIT_SHARED_CACHE if( p->sharable ){ assert( p->lock.pBtree==p && p->lock.iTable==1 ); p->lock.eLock = READ_LOCK; p->lock.pNext = pBt->pLock; pBt->pLock = &p->lock; } #endif } p->inTrans = (wrflag?TRANS_WRITE:TRANS_READ); if( p->inTrans>pBt->inTransaction ){ pBt->inTransaction = p->inTrans; } if( wrflag ){ MemPage *pPage1 = pBt->pPage1; #ifndef SQLITE_OMIT_SHARED_CACHE assert( !pBt->pWriter ); pBt->pWriter = p; pBt->btsFlags &= ~BTS_EXCLUSIVE; if( wrflag>1 ) pBt->btsFlags |= BTS_EXCLUSIVE; #endif /* If the db-size header field is incorrect (as it may be if an old ** client has been writing the database file), update it now. Doing ** this sooner rather than later means the database size can safely ** re-read the database size from page 1 if a savepoint or transaction ** rollback occurs within the transaction. */ if( pBt->nPage!=get4byte(&pPage1->aData[28]) ){ rc = sqlite3PagerWrite(pPage1->pDbPage); if( rc==SQLITE_OK ){ put4byte(&pPage1->aData[28], pBt->nPage); } } } } trans_begun: if( rc==SQLITE_OK ){ if( pSchemaVersion ){ *pSchemaVersion = get4byte(&pBt->pPage1->aData[40]); } if( wrflag ){ /* This call makes sure that the pager has the correct number of ** open savepoints. If the second parameter is greater than 0 and ** the sub-journal is not already open, then it will be opened here. */ rc = sqlite3PagerOpenSavepoint(pPager, p->db->nSavepoint); } } btreeIntegrity(p); sqlite3BtreeLeave(p); return rc; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Set the pointer-map entries for all children of page pPage. Also, if ** pPage contains cells that point to overflow pages, set the pointer ** map entries for the overflow pages as well. */ static int setChildPtrmaps(MemPage *pPage){ int i; /* Counter variable */ int nCell; /* Number of cells in page pPage */ int rc; /* Return code */ BtShared *pBt = pPage->pBt; Pgno pgno = pPage->pgno; assert( sqlite3_mutex_held(pPage->pBt->mutex) ); rc = pPage->isInit ? SQLITE_OK : btreeInitPage(pPage); if( rc!=SQLITE_OK ) return rc; nCell = pPage->nCell; for(i=0; ileaf ){ Pgno childPgno = get4byte(pCell); ptrmapPut(pBt, childPgno, PTRMAP_BTREE, pgno, &rc); } } if( !pPage->leaf ){ Pgno childPgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); ptrmapPut(pBt, childPgno, PTRMAP_BTREE, pgno, &rc); } return rc; } /* ** Somewhere on pPage is a pointer to page iFrom. Modify this pointer so ** that it points to iTo. Parameter eType describes the type of pointer to ** be modified, as follows: ** ** PTRMAP_BTREE: pPage is a btree-page. The pointer points at a child ** page of pPage. ** ** PTRMAP_OVERFLOW1: pPage is a btree-page. The pointer points at an overflow ** page pointed to by one of the cells on pPage. ** ** PTRMAP_OVERFLOW2: pPage is an overflow-page. The pointer points at the next ** overflow page in the list. */ static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); if( eType==PTRMAP_OVERFLOW2 ){ /* The pointer is always the first 4 bytes of the page in this case. */ if( get4byte(pPage->aData)!=iFrom ){ return SQLITE_CORRUPT_PAGE(pPage); } put4byte(pPage->aData, iTo); }else{ int i; int nCell; int rc; rc = pPage->isInit ? SQLITE_OK : btreeInitPage(pPage); if( rc ) return rc; nCell = pPage->nCell; for(i=0; ixParseCell(pPage, pCell, &info); if( info.nLocal pPage->aData+pPage->pBt->usableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } if( iFrom==get4byte(pCell+info.nSize-4) ){ put4byte(pCell+info.nSize-4, iTo); break; } } }else{ if( get4byte(pCell)==iFrom ){ put4byte(pCell, iTo); break; } } } if( i==nCell ){ if( eType!=PTRMAP_BTREE || get4byte(&pPage->aData[pPage->hdrOffset+8])!=iFrom ){ return SQLITE_CORRUPT_PAGE(pPage); } put4byte(&pPage->aData[pPage->hdrOffset+8], iTo); } } return SQLITE_OK; } /* ** Move the open database page pDbPage to location iFreePage in the ** database. The pDbPage reference remains valid. ** ** The isCommit flag indicates that there is no need to remember that ** the journal needs to be sync()ed before database page pDbPage->pgno ** can be written to. The caller has already promised not to write to that ** page. */ static int relocatePage( BtShared *pBt, /* Btree */ MemPage *pDbPage, /* Open page to move */ u8 eType, /* Pointer map 'type' entry for pDbPage */ Pgno iPtrPage, /* Pointer map 'page-no' entry for pDbPage */ Pgno iFreePage, /* The location to move pDbPage to */ int isCommit /* isCommit flag passed to sqlite3PagerMovepage */ ){ MemPage *pPtrPage; /* The page that contains a pointer to pDbPage */ Pgno iDbPage = pDbPage->pgno; Pager *pPager = pBt->pPager; int rc; assert( eType==PTRMAP_OVERFLOW2 || eType==PTRMAP_OVERFLOW1 || eType==PTRMAP_BTREE || eType==PTRMAP_ROOTPAGE ); assert( sqlite3_mutex_held(pBt->mutex) ); assert( pDbPage->pBt==pBt ); if( iDbPage<3 ) return SQLITE_CORRUPT_BKPT; /* Move page iDbPage from its current location to page number iFreePage */ TRACE(("AUTOVACUUM: Moving %d to free page %d (ptr page %d type %d)\n", iDbPage, iFreePage, iPtrPage, eType)); rc = sqlite3PagerMovepage(pPager, pDbPage->pDbPage, iFreePage, isCommit); if( rc!=SQLITE_OK ){ return rc; } pDbPage->pgno = iFreePage; /* If pDbPage was a btree-page, then it may have child pages and/or cells ** that point to overflow pages. The pointer map entries for all these ** pages need to be changed. ** ** If pDbPage is an overflow page, then the first 4 bytes may store a ** pointer to a subsequent overflow page. If this is the case, then ** the pointer map needs to be updated for the subsequent overflow page. */ if( eType==PTRMAP_BTREE || eType==PTRMAP_ROOTPAGE ){ rc = setChildPtrmaps(pDbPage); if( rc!=SQLITE_OK ){ return rc; } }else{ Pgno nextOvfl = get4byte(pDbPage->aData); if( nextOvfl!=0 ){ ptrmapPut(pBt, nextOvfl, PTRMAP_OVERFLOW2, iFreePage, &rc); if( rc!=SQLITE_OK ){ return rc; } } } /* Fix the database pointer on page iPtrPage that pointed at iDbPage so ** that it points at iFreePage. Also fix the pointer map entry for ** iPtrPage. */ if( eType!=PTRMAP_ROOTPAGE ){ rc = btreeGetPage(pBt, iPtrPage, &pPtrPage, 0); if( rc!=SQLITE_OK ){ return rc; } rc = sqlite3PagerWrite(pPtrPage->pDbPage); if( rc!=SQLITE_OK ){ releasePage(pPtrPage); return rc; } rc = modifyPagePointer(pPtrPage, iDbPage, iFreePage, eType); releasePage(pPtrPage); if( rc==SQLITE_OK ){ ptrmapPut(pBt, iFreePage, eType, iPtrPage, &rc); } } return rc; } /* Forward declaration required by incrVacuumStep(). */ static int allocateBtreePage(BtShared *, MemPage **, Pgno *, Pgno, u8); /* ** Perform a single step of an incremental-vacuum. If successful, return ** SQLITE_OK. If there is no work to do (and therefore no point in ** calling this function again), return SQLITE_DONE. Or, if an error ** occurs, return some other error code. ** ** More specifically, this function attempts to re-organize the database so ** that the last page of the file currently in use is no longer in use. ** ** Parameter nFin is the number of pages that this database would contain ** were this function called until it returns SQLITE_DONE. ** ** If the bCommit parameter is non-zero, this function assumes that the ** caller will keep calling incrVacuumStep() until it returns SQLITE_DONE ** or an error. bCommit is passed true for an auto-vacuum-on-commit ** operation, or false for an incremental vacuum. */ static int incrVacuumStep(BtShared *pBt, Pgno nFin, Pgno iLastPg, int bCommit){ Pgno nFreeList; /* Number of pages still on the free-list */ int rc; assert( sqlite3_mutex_held(pBt->mutex) ); assert( iLastPg>nFin ); if( !PTRMAP_ISPAGE(pBt, iLastPg) && iLastPg!=PENDING_BYTE_PAGE(pBt) ){ u8 eType; Pgno iPtrPage; nFreeList = get4byte(&pBt->pPage1->aData[36]); if( nFreeList==0 ){ return SQLITE_DONE; } rc = ptrmapGet(pBt, iLastPg, &eType, &iPtrPage); if( rc!=SQLITE_OK ){ return rc; } if( eType==PTRMAP_ROOTPAGE ){ return SQLITE_CORRUPT_BKPT; } if( eType==PTRMAP_FREEPAGE ){ if( bCommit==0 ){ /* Remove the page from the files free-list. This is not required ** if bCommit is non-zero. In that case, the free-list will be ** truncated to zero after this function returns, so it doesn't ** matter if it still contains some garbage entries. */ Pgno iFreePg; MemPage *pFreePg; rc = allocateBtreePage(pBt, &pFreePg, &iFreePg, iLastPg, BTALLOC_EXACT); if( rc!=SQLITE_OK ){ return rc; } assert( iFreePg==iLastPg ); releasePage(pFreePg); } } else { Pgno iFreePg; /* Index of free page to move pLastPg to */ MemPage *pLastPg; u8 eMode = BTALLOC_ANY; /* Mode parameter for allocateBtreePage() */ Pgno iNear = 0; /* nearby parameter for allocateBtreePage() */ rc = btreeGetPage(pBt, iLastPg, &pLastPg, 0); if( rc!=SQLITE_OK ){ return rc; } /* If bCommit is zero, this loop runs exactly once and page pLastPg ** is swapped with the first free page pulled off the free list. ** ** On the other hand, if bCommit is greater than zero, then keep ** looping until a free-page located within the first nFin pages ** of the file is found. */ if( bCommit==0 ){ eMode = BTALLOC_LE; iNear = nFin; } do { MemPage *pFreePg; rc = allocateBtreePage(pBt, &pFreePg, &iFreePg, iNear, eMode); if( rc!=SQLITE_OK ){ releasePage(pLastPg); return rc; } releasePage(pFreePg); }while( bCommit && iFreePg>nFin ); assert( iFreePgbDoTruncate = 1; pBt->nPage = iLastPg; } return SQLITE_OK; } /* ** The database opened by the first argument is an auto-vacuum database ** nOrig pages in size containing nFree free pages. Return the expected ** size of the database in pages following an auto-vacuum operation. */ static Pgno finalDbSize(BtShared *pBt, Pgno nOrig, Pgno nFree){ int nEntry; /* Number of entries on one ptrmap page */ Pgno nPtrmap; /* Number of PtrMap pages to be freed */ Pgno nFin; /* Return value */ nEntry = pBt->usableSize/5; nPtrmap = (nFree-nOrig+PTRMAP_PAGENO(pBt, nOrig)+nEntry)/nEntry; nFin = nOrig - nFree - nPtrmap; if( nOrig>PENDING_BYTE_PAGE(pBt) && nFinpBt; sqlite3BtreeEnter(p); assert( pBt->inTransaction==TRANS_WRITE && p->inTrans==TRANS_WRITE ); if( !pBt->autoVacuum ){ rc = SQLITE_DONE; }else{ Pgno nOrig = btreePagecount(pBt); Pgno nFree = get4byte(&pBt->pPage1->aData[36]); Pgno nFin = finalDbSize(pBt, nOrig, nFree); if( nOrig=nOrig ){ rc = SQLITE_CORRUPT_BKPT; }else if( nFree>0 ){ rc = saveAllCursors(pBt, 0, 0); if( rc==SQLITE_OK ){ invalidateAllOverflowCache(pBt); rc = incrVacuumStep(pBt, nFin, nOrig, 0); } if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); put4byte(&pBt->pPage1->aData[28], pBt->nPage); } }else{ rc = SQLITE_DONE; } } sqlite3BtreeLeave(p); return rc; } /* ** This routine is called prior to sqlite3PagerCommit when a transaction ** is committed for an auto-vacuum database. */ static int autoVacuumCommit(Btree *p){ int rc = SQLITE_OK; Pager *pPager; BtShared *pBt; sqlite3 *db; VVA_ONLY( int nRef ); assert( p!=0 ); pBt = p->pBt; pPager = pBt->pPager; VVA_ONLY( nRef = sqlite3PagerRefcount(pPager); ) assert( sqlite3_mutex_held(pBt->mutex) ); invalidateAllOverflowCache(pBt); assert(pBt->autoVacuum); if( !pBt->incrVacuum ){ Pgno nFin; /* Number of pages in database after autovacuuming */ Pgno nFree; /* Number of pages on the freelist initially */ Pgno nVac; /* Number of pages to vacuum */ Pgno iFree; /* The next page to be freed */ Pgno nOrig; /* Database size before freeing */ nOrig = btreePagecount(pBt); if( PTRMAP_ISPAGE(pBt, nOrig) || nOrig==PENDING_BYTE_PAGE(pBt) ){ /* It is not possible to create a database for which the final page ** is either a pointer-map page or the pending-byte page. If one ** is encountered, this indicates corruption. */ return SQLITE_CORRUPT_BKPT; } nFree = get4byte(&pBt->pPage1->aData[36]); db = p->db; if( db->xAutovacPages ){ int iDb; for(iDb=0; ALWAYS(iDbnDb); iDb++){ if( db->aDb[iDb].pBt==p ) break; } nVac = db->xAutovacPages( db->pAutovacPagesArg, db->aDb[iDb].zDbSName, nOrig, nFree, pBt->pageSize ); if( nVac>nFree ){ nVac = nFree; } if( nVac==0 ){ return SQLITE_OK; } }else{ nVac = nFree; } nFin = finalDbSize(pBt, nOrig, nVac); if( nFin>nOrig ) return SQLITE_CORRUPT_BKPT; if( nFinnFin && rc==SQLITE_OK; iFree--){ rc = incrVacuumStep(pBt, nFin, iFree, nVac==nFree); } if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){ rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( nVac==nFree ){ put4byte(&pBt->pPage1->aData[32], 0); put4byte(&pBt->pPage1->aData[36], 0); } put4byte(&pBt->pPage1->aData[28], nFin); pBt->bDoTruncate = 1; pBt->nPage = nFin; } if( rc!=SQLITE_OK ){ sqlite3PagerRollback(pPager); } } assert( nRef>=sqlite3PagerRefcount(pPager) ); return rc; } #else /* ifndef SQLITE_OMIT_AUTOVACUUM */ # define setChildPtrmaps(x) SQLITE_OK #endif /* ** This routine does the first phase of a two-phase commit. This routine ** causes a rollback journal to be created (if it does not already exist) ** and populated with enough information so that if a power loss occurs ** the database can be restored to its original state by playing back ** the journal. Then the contents of the journal are flushed out to ** the disk. After the journal is safely on oxide, the changes to the ** database are written into the database file and flushed to oxide. ** At the end of this call, the rollback journal still exists on the ** disk and we are still holding all locks, so the transaction has not ** committed. See sqlite3BtreeCommitPhaseTwo() for the second phase of the ** commit process. ** ** This call is a no-op if no write-transaction is currently active on pBt. ** ** Otherwise, sync the database file for the btree pBt. zSuperJrnl points to ** the name of a super-journal file that should be written into the ** individual journal file, or is NULL, indicating no super-journal file ** (single database transaction). ** ** When this is called, the super-journal should already have been ** created, populated with this journal pointer and synced to disk. ** ** Once this is routine has returned, the only thing required to commit ** the write-transaction for this database file is to delete the journal. */ SQLITE_PRIVATE int sqlite3BtreeCommitPhaseOne(Btree *p, const char *zSuperJrnl){ int rc = SQLITE_OK; if( p->inTrans==TRANS_WRITE ){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ rc = autoVacuumCommit(p); if( rc!=SQLITE_OK ){ sqlite3BtreeLeave(p); return rc; } } if( pBt->bDoTruncate ){ sqlite3PagerTruncateImage(pBt->pPager, pBt->nPage); } #endif rc = sqlite3PagerCommitPhaseOne(pBt->pPager, zSuperJrnl, 0); sqlite3BtreeLeave(p); } return rc; } /* ** This function is called from both BtreeCommitPhaseTwo() and BtreeRollback() ** at the conclusion of a transaction. */ static void btreeEndTransaction(Btree *p){ BtShared *pBt = p->pBt; sqlite3 *db = p->db; assert( sqlite3BtreeHoldsMutex(p) ); #ifndef SQLITE_OMIT_AUTOVACUUM pBt->bDoTruncate = 0; #endif if( p->inTrans>TRANS_NONE && db->nVdbeRead>1 ){ /* If there are other active statements that belong to this database ** handle, downgrade to a read-only transaction. The other statements ** may still be reading from the database. */ downgradeAllSharedCacheTableLocks(p); p->inTrans = TRANS_READ; }else{ /* If the handle had any kind of transaction open, decrement the ** transaction count of the shared btree. If the transaction count ** reaches 0, set the shared state to TRANS_NONE. The unlockBtreeIfUnused() ** call below will unlock the pager. */ if( p->inTrans!=TRANS_NONE ){ clearAllSharedCacheTableLocks(p); pBt->nTransaction--; if( 0==pBt->nTransaction ){ pBt->inTransaction = TRANS_NONE; } } /* Set the current transaction state to TRANS_NONE and unlock the ** pager if this call closed the only read or write transaction. */ p->inTrans = TRANS_NONE; unlockBtreeIfUnused(pBt); } btreeIntegrity(p); } /* ** Commit the transaction currently in progress. ** ** This routine implements the second phase of a 2-phase commit. The ** sqlite3BtreeCommitPhaseOne() routine does the first phase and should ** be invoked prior to calling this routine. The sqlite3BtreeCommitPhaseOne() ** routine did all the work of writing information out to disk and flushing the ** contents so that they are written onto the disk platter. All this ** routine has to do is delete or truncate or zero the header in the ** the rollback journal (which causes the transaction to commit) and ** drop locks. ** ** Normally, if an error occurs while the pager layer is attempting to ** finalize the underlying journal file, this function returns an error and ** the upper layer will attempt a rollback. However, if the second argument ** is non-zero then this b-tree transaction is part of a multi-file ** transaction. In this case, the transaction has already been committed ** (by deleting a super-journal file) and the caller will ignore this ** functions return code. So, even if an error occurs in the pager layer, ** reset the b-tree objects internal state to indicate that the write ** transaction has been closed. This is quite safe, as the pager will have ** transitioned to the error state. ** ** This will release the write lock on the database file. If there ** are no active cursors, it also releases the read lock. */ SQLITE_PRIVATE int sqlite3BtreeCommitPhaseTwo(Btree *p, int bCleanup){ if( p->inTrans==TRANS_NONE ) return SQLITE_OK; sqlite3BtreeEnter(p); btreeIntegrity(p); /* If the handle has a write-transaction open, commit the shared-btrees ** transaction and set the shared state to TRANS_READ. */ if( p->inTrans==TRANS_WRITE ){ int rc; BtShared *pBt = p->pBt; assert( pBt->inTransaction==TRANS_WRITE ); assert( pBt->nTransaction>0 ); rc = sqlite3PagerCommitPhaseTwo(pBt->pPager); if( rc!=SQLITE_OK && bCleanup==0 ){ sqlite3BtreeLeave(p); return rc; } p->iBDataVersion--; /* Compensate for pPager->iDataVersion++; */ pBt->inTransaction = TRANS_READ; btreeClearHasContent(pBt); } btreeEndTransaction(p); sqlite3BtreeLeave(p); return SQLITE_OK; } /* ** Do both phases of a commit. */ SQLITE_PRIVATE int sqlite3BtreeCommit(Btree *p){ int rc; sqlite3BtreeEnter(p); rc = sqlite3BtreeCommitPhaseOne(p, 0); if( rc==SQLITE_OK ){ rc = sqlite3BtreeCommitPhaseTwo(p, 0); } sqlite3BtreeLeave(p); return rc; } /* ** This routine sets the state to CURSOR_FAULT and the error ** code to errCode for every cursor on any BtShared that pBtree ** references. Or if the writeOnly flag is set to 1, then only ** trip write cursors and leave read cursors unchanged. ** ** Every cursor is a candidate to be tripped, including cursors ** that belong to other database connections that happen to be ** sharing the cache with pBtree. ** ** This routine gets called when a rollback occurs. If the writeOnly ** flag is true, then only write-cursors need be tripped - read-only ** cursors save their current positions so that they may continue ** following the rollback. Or, if writeOnly is false, all cursors are ** tripped. In general, writeOnly is false if the transaction being ** rolled back modified the database schema. In this case b-tree root ** pages may be moved or deleted from the database altogether, making ** it unsafe for read cursors to continue. ** ** If the writeOnly flag is true and an error is encountered while ** saving the current position of a read-only cursor, all cursors, ** including all read-cursors are tripped. ** ** SQLITE_OK is returned if successful, or if an error occurs while ** saving a cursor position, an SQLite error code. */ SQLITE_PRIVATE int sqlite3BtreeTripAllCursors(Btree *pBtree, int errCode, int writeOnly){ BtCursor *p; int rc = SQLITE_OK; assert( (writeOnly==0 || writeOnly==1) && BTCF_WriteFlag==1 ); if( pBtree ){ sqlite3BtreeEnter(pBtree); for(p=pBtree->pBt->pCursor; p; p=p->pNext){ if( writeOnly && (p->curFlags & BTCF_WriteFlag)==0 ){ if( p->eState==CURSOR_VALID || p->eState==CURSOR_SKIPNEXT ){ rc = saveCursorPosition(p); if( rc!=SQLITE_OK ){ (void)sqlite3BtreeTripAllCursors(pBtree, rc, 0); break; } } }else{ sqlite3BtreeClearCursor(p); p->eState = CURSOR_FAULT; p->skipNext = errCode; } btreeReleaseAllCursorPages(p); } sqlite3BtreeLeave(pBtree); } return rc; } /* ** Set the pBt->nPage field correctly, according to the current ** state of the database. Assume pBt->pPage1 is valid. */ static void btreeSetNPage(BtShared *pBt, MemPage *pPage1){ int nPage = get4byte(&pPage1->aData[28]); testcase( nPage==0 ); if( nPage==0 ) sqlite3PagerPagecount(pBt->pPager, &nPage); testcase( pBt->nPage!=(u32)nPage ); pBt->nPage = nPage; } /* ** Rollback the transaction in progress. ** ** If tripCode is not SQLITE_OK then cursors will be invalidated (tripped). ** Only write cursors are tripped if writeOnly is true but all cursors are ** tripped if writeOnly is false. Any attempt to use ** a tripped cursor will result in an error. ** ** This will release the write lock on the database file. If there ** are no active cursors, it also releases the read lock. */ SQLITE_PRIVATE int sqlite3BtreeRollback(Btree *p, int tripCode, int writeOnly){ int rc; BtShared *pBt = p->pBt; MemPage *pPage1; assert( writeOnly==1 || writeOnly==0 ); assert( tripCode==SQLITE_ABORT_ROLLBACK || tripCode==SQLITE_OK ); sqlite3BtreeEnter(p); if( tripCode==SQLITE_OK ){ rc = tripCode = saveAllCursors(pBt, 0, 0); if( rc ) writeOnly = 0; }else{ rc = SQLITE_OK; } if( tripCode ){ int rc2 = sqlite3BtreeTripAllCursors(p, tripCode, writeOnly); assert( rc==SQLITE_OK || (writeOnly==0 && rc2==SQLITE_OK) ); if( rc2!=SQLITE_OK ) rc = rc2; } btreeIntegrity(p); if( p->inTrans==TRANS_WRITE ){ int rc2; assert( TRANS_WRITE==pBt->inTransaction ); rc2 = sqlite3PagerRollback(pBt->pPager); if( rc2!=SQLITE_OK ){ rc = rc2; } /* The rollback may have destroyed the pPage1->aData value. So ** call btreeGetPage() on page 1 again to make ** sure pPage1->aData is set correctly. */ if( btreeGetPage(pBt, 1, &pPage1, 0)==SQLITE_OK ){ btreeSetNPage(pBt, pPage1); releasePageOne(pPage1); } assert( countValidCursors(pBt, 1)==0 ); pBt->inTransaction = TRANS_READ; btreeClearHasContent(pBt); } btreeEndTransaction(p); sqlite3BtreeLeave(p); return rc; } /* ** Start a statement subtransaction. The subtransaction can be rolled ** back independently of the main transaction. You must start a transaction ** before starting a subtransaction. The subtransaction is ended automatically ** if the main transaction commits or rolls back. ** ** Statement subtransactions are used around individual SQL statements ** that are contained within a BEGIN...COMMIT block. If a constraint ** error occurs within the statement, the effect of that one statement ** can be rolled back without having to rollback the entire transaction. ** ** A statement sub-transaction is implemented as an anonymous savepoint. The ** value passed as the second parameter is the total number of savepoints, ** including the new anonymous savepoint, open on the B-Tree. i.e. if there ** are no active savepoints and no other statement-transactions open, ** iStatement is 1. This anonymous savepoint can be released or rolled back ** using the sqlite3BtreeSavepoint() function. */ SQLITE_PRIVATE int sqlite3BtreeBeginStmt(Btree *p, int iStatement){ int rc; BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); assert( p->inTrans==TRANS_WRITE ); assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); assert( iStatement>0 ); assert( iStatement>p->db->nSavepoint ); assert( pBt->inTransaction==TRANS_WRITE ); /* At the pager level, a statement transaction is a savepoint with ** an index greater than all savepoints created explicitly using ** SQL statements. It is illegal to open, release or rollback any ** such savepoints while the statement transaction savepoint is active. */ rc = sqlite3PagerOpenSavepoint(pBt->pPager, iStatement); sqlite3BtreeLeave(p); return rc; } /* ** The second argument to this function, op, is always SAVEPOINT_ROLLBACK ** or SAVEPOINT_RELEASE. This function either releases or rolls back the ** savepoint identified by parameter iSavepoint, depending on the value ** of op. ** ** Normally, iSavepoint is greater than or equal to zero. However, if op is ** SAVEPOINT_ROLLBACK, then iSavepoint may also be -1. In this case the ** contents of the entire transaction are rolled back. This is different ** from a normal transaction rollback, as no locks are released and the ** transaction remains open. */ SQLITE_PRIVATE int sqlite3BtreeSavepoint(Btree *p, int op, int iSavepoint){ int rc = SQLITE_OK; if( p && p->inTrans==TRANS_WRITE ){ BtShared *pBt = p->pBt; assert( op==SAVEPOINT_RELEASE || op==SAVEPOINT_ROLLBACK ); assert( iSavepoint>=0 || (iSavepoint==-1 && op==SAVEPOINT_ROLLBACK) ); sqlite3BtreeEnter(p); if( op==SAVEPOINT_ROLLBACK ){ rc = saveAllCursors(pBt, 0, 0); } if( rc==SQLITE_OK ){ rc = sqlite3PagerSavepoint(pBt->pPager, op, iSavepoint); } if( rc==SQLITE_OK ){ if( iSavepoint<0 && (pBt->btsFlags & BTS_INITIALLY_EMPTY)!=0 ){ pBt->nPage = 0; } rc = newDatabase(pBt); btreeSetNPage(pBt, pBt->pPage1); /* pBt->nPage might be zero if the database was corrupt when ** the transaction was started. Otherwise, it must be at least 1. */ assert( CORRUPT_DB || pBt->nPage>0 ); } sqlite3BtreeLeave(p); } return rc; } /* ** Create a new cursor for the BTree whose root is on the page ** iTable. If a read-only cursor is requested, it is assumed that ** the caller already has at least a read-only transaction open ** on the database already. If a write-cursor is requested, then ** the caller is assumed to have an open write transaction. ** ** If the BTREE_WRCSR bit of wrFlag is clear, then the cursor can only ** be used for reading. If the BTREE_WRCSR bit is set, then the cursor ** can be used for reading or for writing if other conditions for writing ** are also met. These are the conditions that must be met in order ** for writing to be allowed: ** ** 1: The cursor must have been opened with wrFlag containing BTREE_WRCSR ** ** 2: Other database connections that share the same pager cache ** but which are not in the READ_UNCOMMITTED state may not have ** cursors open with wrFlag==0 on the same table. Otherwise ** the changes made by this write cursor would be visible to ** the read cursors in the other database connection. ** ** 3: The database must be writable (not on read-only media) ** ** 4: There must be an active transaction. ** ** The BTREE_FORDELETE bit of wrFlag may optionally be set if BTREE_WRCSR ** is set. If FORDELETE is set, that is a hint to the implementation that ** this cursor will only be used to seek to and delete entries of an index ** as part of a larger DELETE statement. The FORDELETE hint is not used by ** this implementation. But in a hypothetical alternative storage engine ** in which index entries are automatically deleted when corresponding table ** rows are deleted, the FORDELETE flag is a hint that all SEEK and DELETE ** operations on this cursor can be no-ops and all READ operations can ** return a null row (2-bytes: 0x01 0x00). ** ** No checking is done to make sure that page iTable really is the ** root page of a b-tree. If it is not, then the cursor acquired ** will not work correctly. ** ** It is assumed that the sqlite3BtreeCursorZero() has been called ** on pCur to initialize the memory space prior to invoking this routine. */ static int btreeCursor( Btree *p, /* The btree */ Pgno iTable, /* Root page of table to open */ int wrFlag, /* 1 to write. 0 read-only */ struct KeyInfo *pKeyInfo, /* First arg to comparison function */ BtCursor *pCur /* Space for new cursor */ ){ BtShared *pBt = p->pBt; /* Shared b-tree handle */ BtCursor *pX; /* Looping over other all cursors */ assert( sqlite3BtreeHoldsMutex(p) ); assert( wrFlag==0 || wrFlag==BTREE_WRCSR || wrFlag==(BTREE_WRCSR|BTREE_FORDELETE) ); /* The following assert statements verify that if this is a sharable ** b-tree database, the connection is holding the required table locks, ** and that no other connection has any open cursor that conflicts with ** this lock. The iTable<1 term disables the check for corrupt schemas. */ assert( hasSharedCacheTableLock(p, iTable, pKeyInfo!=0, (wrFlag?2:1)) || iTable<1 ); assert( wrFlag==0 || !hasReadConflicts(p, iTable) ); /* Assert that the caller has opened the required transaction. */ assert( p->inTrans>TRANS_NONE ); assert( wrFlag==0 || p->inTrans==TRANS_WRITE ); assert( pBt->pPage1 && pBt->pPage1->aData ); assert( wrFlag==0 || (pBt->btsFlags & BTS_READ_ONLY)==0 ); if( iTable<=1 ){ if( iTable<1 ){ return SQLITE_CORRUPT_BKPT; }else if( btreePagecount(pBt)==0 ){ assert( wrFlag==0 ); iTable = 0; } } /* Now that no other errors can occur, finish filling in the BtCursor ** variables and link the cursor into the BtShared list. */ pCur->pgnoRoot = iTable; pCur->iPage = -1; pCur->pKeyInfo = pKeyInfo; pCur->pBtree = p; pCur->pBt = pBt; pCur->curFlags = 0; /* If there are two or more cursors on the same btree, then all such ** cursors *must* have the BTCF_Multiple flag set. */ for(pX=pBt->pCursor; pX; pX=pX->pNext){ if( pX->pgnoRoot==iTable ){ pX->curFlags |= BTCF_Multiple; pCur->curFlags = BTCF_Multiple; } } pCur->eState = CURSOR_INVALID; pCur->pNext = pBt->pCursor; pBt->pCursor = pCur; if( wrFlag ){ pCur->curFlags |= BTCF_WriteFlag; pCur->curPagerFlags = 0; if( pBt->pTmpSpace==0 ) return allocateTempSpace(pBt); }else{ pCur->curPagerFlags = PAGER_GET_READONLY; } return SQLITE_OK; } static int btreeCursorWithLock( Btree *p, /* The btree */ Pgno iTable, /* Root page of table to open */ int wrFlag, /* 1 to write. 0 read-only */ struct KeyInfo *pKeyInfo, /* First arg to comparison function */ BtCursor *pCur /* Space for new cursor */ ){ int rc; sqlite3BtreeEnter(p); rc = btreeCursor(p, iTable, wrFlag, pKeyInfo, pCur); sqlite3BtreeLeave(p); return rc; } SQLITE_PRIVATE int sqlite3BtreeCursor( Btree *p, /* The btree */ Pgno iTable, /* Root page of table to open */ int wrFlag, /* 1 to write. 0 read-only */ struct KeyInfo *pKeyInfo, /* First arg to xCompare() */ BtCursor *pCur /* Write new cursor here */ ){ if( p->sharable ){ return btreeCursorWithLock(p, iTable, wrFlag, pKeyInfo, pCur); }else{ return btreeCursor(p, iTable, wrFlag, pKeyInfo, pCur); } } /* ** Return the size of a BtCursor object in bytes. ** ** This interfaces is needed so that users of cursors can preallocate ** sufficient storage to hold a cursor. The BtCursor object is opaque ** to users so they cannot do the sizeof() themselves - they must call ** this routine. */ SQLITE_PRIVATE int sqlite3BtreeCursorSize(void){ return ROUND8(sizeof(BtCursor)); } /* ** Initialize memory that will be converted into a BtCursor object. ** ** The simple approach here would be to memset() the entire object ** to zero. But it turns out that the apPage[] and aiIdx[] arrays ** do not need to be zeroed and they are large, so we can save a lot ** of run-time by skipping the initialization of those elements. */ SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor *p){ memset(p, 0, offsetof(BtCursor, BTCURSOR_FIRST_UNINIT)); } /* ** Close a cursor. The read lock on the database file is released ** when the last cursor is closed. */ SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor *pCur){ Btree *pBtree = pCur->pBtree; if( pBtree ){ BtShared *pBt = pCur->pBt; sqlite3BtreeEnter(pBtree); assert( pBt->pCursor!=0 ); if( pBt->pCursor==pCur ){ pBt->pCursor = pCur->pNext; }else{ BtCursor *pPrev = pBt->pCursor; do{ if( pPrev->pNext==pCur ){ pPrev->pNext = pCur->pNext; break; } pPrev = pPrev->pNext; }while( ALWAYS(pPrev) ); } btreeReleaseAllCursorPages(pCur); unlockBtreeIfUnused(pBt); sqlite3_free(pCur->aOverflow); sqlite3_free(pCur->pKey); if( (pBt->openFlags & BTREE_SINGLE) && pBt->pCursor==0 ){ /* Since the BtShared is not sharable, there is no need to ** worry about the missing sqlite3BtreeLeave() call here. */ assert( pBtree->sharable==0 ); sqlite3BtreeClose(pBtree); }else{ sqlite3BtreeLeave(pBtree); } pCur->pBtree = 0; } return SQLITE_OK; } /* ** Make sure the BtCursor* given in the argument has a valid ** BtCursor.info structure. If it is not already valid, call ** btreeParseCell() to fill it in. ** ** BtCursor.info is a cache of the information in the current cell. ** Using this cache reduces the number of calls to btreeParseCell(). */ #ifndef NDEBUG static int cellInfoEqual(CellInfo *a, CellInfo *b){ if( a->nKey!=b->nKey ) return 0; if( a->pPayload!=b->pPayload ) return 0; if( a->nPayload!=b->nPayload ) return 0; if( a->nLocal!=b->nLocal ) return 0; if( a->nSize!=b->nSize ) return 0; return 1; } static void assertCellInfo(BtCursor *pCur){ CellInfo info; memset(&info, 0, sizeof(info)); btreeParseCell(pCur->pPage, pCur->ix, &info); assert( CORRUPT_DB || cellInfoEqual(&info, &pCur->info) ); } #else #define assertCellInfo(x) #endif static SQLITE_NOINLINE void getCellInfo(BtCursor *pCur){ if( pCur->info.nSize==0 ){ pCur->curFlags |= BTCF_ValidNKey; btreeParseCell(pCur->pPage,pCur->ix,&pCur->info); }else{ assertCellInfo(pCur); } } #ifndef NDEBUG /* The next routine used only within assert() statements */ /* ** Return true if the given BtCursor is valid. A valid cursor is one ** that is currently pointing to a row in a (non-empty) table. ** This is a verification routine is used only within assert() statements. */ SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor *pCur){ return pCur && pCur->eState==CURSOR_VALID; } #endif /* NDEBUG */ SQLITE_PRIVATE int sqlite3BtreeCursorIsValidNN(BtCursor *pCur){ assert( pCur!=0 ); return pCur->eState==CURSOR_VALID; } /* ** Return the value of the integer key or "rowid" for a table btree. ** This routine is only valid for a cursor that is pointing into a ** ordinary table btree. If the cursor points to an index btree or ** is invalid, the result of this routine is undefined. */ SQLITE_PRIVATE i64 sqlite3BtreeIntegerKey(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->curIntKey ); getCellInfo(pCur); return pCur->info.nKey; } /* ** Pin or unpin a cursor. */ SQLITE_PRIVATE void sqlite3BtreeCursorPin(BtCursor *pCur){ assert( (pCur->curFlags & BTCF_Pinned)==0 ); pCur->curFlags |= BTCF_Pinned; } SQLITE_PRIVATE void sqlite3BtreeCursorUnpin(BtCursor *pCur){ assert( (pCur->curFlags & BTCF_Pinned)!=0 ); pCur->curFlags &= ~BTCF_Pinned; } #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC /* ** Return the offset into the database file for the start of the ** payload to which the cursor is pointing. */ SQLITE_PRIVATE i64 sqlite3BtreeOffset(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); getCellInfo(pCur); return (i64)pCur->pBt->pageSize*((i64)pCur->pPage->pgno - 1) + (i64)(pCur->info.pPayload - pCur->pPage->aData); } #endif /* SQLITE_ENABLE_OFFSET_SQL_FUNC */ /* ** Return the number of bytes of payload for the entry that pCur is ** currently pointing to. For table btrees, this will be the amount ** of data. For index btrees, this will be the size of the key. ** ** The caller must guarantee that the cursor is pointing to a non-NULL ** valid entry. In other words, the calling procedure must guarantee ** that the cursor has Cursor.eState==CURSOR_VALID. */ SQLITE_PRIVATE u32 sqlite3BtreePayloadSize(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); getCellInfo(pCur); return pCur->info.nPayload; } /* ** Return an upper bound on the size of any record for the table ** that the cursor is pointing into. ** ** This is an optimization. Everything will still work if this ** routine always returns 2147483647 (which is the largest record ** that SQLite can handle) or more. But returning a smaller value might ** prevent large memory allocations when trying to interpret a ** corrupt datrabase. ** ** The current implementation merely returns the size of the underlying ** database file. */ SQLITE_PRIVATE sqlite3_int64 sqlite3BtreeMaxRecordSize(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); return pCur->pBt->pageSize * (sqlite3_int64)pCur->pBt->nPage; } /* ** Given the page number of an overflow page in the database (parameter ** ovfl), this function finds the page number of the next page in the ** linked list of overflow pages. If possible, it uses the auto-vacuum ** pointer-map data instead of reading the content of page ovfl to do so. ** ** If an error occurs an SQLite error code is returned. Otherwise: ** ** The page number of the next overflow page in the linked list is ** written to *pPgnoNext. If page ovfl is the last page in its linked ** list, *pPgnoNext is set to zero. ** ** If ppPage is not NULL, and a reference to the MemPage object corresponding ** to page number pOvfl was obtained, then *ppPage is set to point to that ** reference. It is the responsibility of the caller to call releasePage() ** on *ppPage to free the reference. In no reference was obtained (because ** the pointer-map was used to obtain the value for *pPgnoNext), then ** *ppPage is set to zero. */ static int getOverflowPage( BtShared *pBt, /* The database file */ Pgno ovfl, /* Current overflow page number */ MemPage **ppPage, /* OUT: MemPage handle (may be NULL) */ Pgno *pPgnoNext /* OUT: Next overflow page number */ ){ Pgno next = 0; MemPage *pPage = 0; int rc = SQLITE_OK; assert( sqlite3_mutex_held(pBt->mutex) ); assert(pPgnoNext); #ifndef SQLITE_OMIT_AUTOVACUUM /* Try to find the next page in the overflow list using the ** autovacuum pointer-map pages. Guess that the next page in ** the overflow list is page number (ovfl+1). If that guess turns ** out to be wrong, fall back to loading the data of page ** number ovfl to determine the next page number. */ if( pBt->autoVacuum ){ Pgno pgno; Pgno iGuess = ovfl+1; u8 eType; while( PTRMAP_ISPAGE(pBt, iGuess) || iGuess==PENDING_BYTE_PAGE(pBt) ){ iGuess++; } if( iGuess<=btreePagecount(pBt) ){ rc = ptrmapGet(pBt, iGuess, &eType, &pgno); if( rc==SQLITE_OK && eType==PTRMAP_OVERFLOW2 && pgno==ovfl ){ next = iGuess; rc = SQLITE_DONE; } } } #endif assert( next==0 || rc==SQLITE_DONE ); if( rc==SQLITE_OK ){ rc = btreeGetPage(pBt, ovfl, &pPage, (ppPage==0) ? PAGER_GET_READONLY : 0); assert( rc==SQLITE_OK || pPage==0 ); if( rc==SQLITE_OK ){ next = get4byte(pPage->aData); } } *pPgnoNext = next; if( ppPage ){ *ppPage = pPage; }else{ releasePage(pPage); } return (rc==SQLITE_DONE ? SQLITE_OK : rc); } /* ** Copy data from a buffer to a page, or from a page to a buffer. ** ** pPayload is a pointer to data stored on database page pDbPage. ** If argument eOp is false, then nByte bytes of data are copied ** from pPayload to the buffer pointed at by pBuf. If eOp is true, ** then sqlite3PagerWrite() is called on pDbPage and nByte bytes ** of data are copied from the buffer pBuf to pPayload. ** ** SQLITE_OK is returned on success, otherwise an error code. */ static int copyPayload( void *pPayload, /* Pointer to page data */ void *pBuf, /* Pointer to buffer */ int nByte, /* Number of bytes to copy */ int eOp, /* 0 -> copy from page, 1 -> copy to page */ DbPage *pDbPage /* Page containing pPayload */ ){ if( eOp ){ /* Copy data from buffer to page (a write operation) */ int rc = sqlite3PagerWrite(pDbPage); if( rc!=SQLITE_OK ){ return rc; } memcpy(pPayload, pBuf, nByte); }else{ /* Copy data from page to buffer (a read operation) */ memcpy(pBuf, pPayload, nByte); } return SQLITE_OK; } /* ** This function is used to read or overwrite payload information ** for the entry that the pCur cursor is pointing to. The eOp ** argument is interpreted as follows: ** ** 0: The operation is a read. Populate the overflow cache. ** 1: The operation is a write. Populate the overflow cache. ** ** A total of "amt" bytes are read or written beginning at "offset". ** Data is read to or from the buffer pBuf. ** ** The content being read or written might appear on the main page ** or be scattered out on multiple overflow pages. ** ** If the current cursor entry uses one or more overflow pages ** this function may allocate space for and lazily populate ** the overflow page-list cache array (BtCursor.aOverflow). ** Subsequent calls use this cache to make seeking to the supplied offset ** more efficient. ** ** Once an overflow page-list cache has been allocated, it must be ** invalidated if some other cursor writes to the same table, or if ** the cursor is moved to a different row. Additionally, in auto-vacuum ** mode, the following events may invalidate an overflow page-list cache. ** ** * An incremental vacuum, ** * A commit in auto_vacuum="full" mode, ** * Creating a table (may require moving an overflow page). */ static int accessPayload( BtCursor *pCur, /* Cursor pointing to entry to read from */ u32 offset, /* Begin reading this far into payload */ u32 amt, /* Read this many bytes */ unsigned char *pBuf, /* Write the bytes into this buffer */ int eOp /* zero to read. non-zero to write. */ ){ unsigned char *aPayload; int rc = SQLITE_OK; int iIdx = 0; MemPage *pPage = pCur->pPage; /* Btree page of current entry */ BtShared *pBt = pCur->pBt; /* Btree this cursor belongs to */ #ifdef SQLITE_DIRECT_OVERFLOW_READ unsigned char * const pBufStart = pBuf; /* Start of original out buffer */ #endif assert( pPage ); assert( eOp==0 || eOp==1 ); assert( pCur->eState==CURSOR_VALID ); if( pCur->ix>=pPage->nCell ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( cursorHoldsMutex(pCur) ); getCellInfo(pCur); aPayload = pCur->info.pPayload; assert( offset+amt <= pCur->info.nPayload ); assert( aPayload > pPage->aData ); if( (uptr)(aPayload - pPage->aData) > (pBt->usableSize - pCur->info.nLocal) ){ /* Trying to read or write past the end of the data is an error. The ** conditional above is really: ** &aPayload[pCur->info.nLocal] > &pPage->aData[pBt->usableSize] ** but is recast into its current form to avoid integer overflow problems */ return SQLITE_CORRUPT_PAGE(pPage); } /* Check if data must be read/written to/from the btree page itself. */ if( offsetinfo.nLocal ){ int a = amt; if( a+offset>pCur->info.nLocal ){ a = pCur->info.nLocal - offset; } rc = copyPayload(&aPayload[offset], pBuf, a, eOp, pPage->pDbPage); offset = 0; pBuf += a; amt -= a; }else{ offset -= pCur->info.nLocal; } if( rc==SQLITE_OK && amt>0 ){ const u32 ovflSize = pBt->usableSize - 4; /* Bytes content per ovfl page */ Pgno nextPage; nextPage = get4byte(&aPayload[pCur->info.nLocal]); /* If the BtCursor.aOverflow[] has not been allocated, allocate it now. ** ** The aOverflow[] array is sized at one entry for each overflow page ** in the overflow chain. The page number of the first overflow page is ** stored in aOverflow[0], etc. A value of 0 in the aOverflow[] array ** means "not yet known" (the cache is lazily populated). */ if( (pCur->curFlags & BTCF_ValidOvfl)==0 ){ int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize; if( pCur->aOverflow==0 || nOvfl*(int)sizeof(Pgno) > sqlite3MallocSize(pCur->aOverflow) ){ Pgno *aNew = (Pgno*)sqlite3Realloc( pCur->aOverflow, nOvfl*2*sizeof(Pgno) ); if( aNew==0 ){ return SQLITE_NOMEM_BKPT; }else{ pCur->aOverflow = aNew; } } memset(pCur->aOverflow, 0, nOvfl*sizeof(Pgno)); pCur->curFlags |= BTCF_ValidOvfl; }else{ /* If the overflow page-list cache has been allocated and the ** entry for the first required overflow page is valid, skip ** directly to it. */ if( pCur->aOverflow[offset/ovflSize] ){ iIdx = (offset/ovflSize); nextPage = pCur->aOverflow[iIdx]; offset = (offset%ovflSize); } } assert( rc==SQLITE_OK && amt>0 ); while( nextPage ){ /* If required, populate the overflow page-list cache. */ if( nextPage > pBt->nPage ) return SQLITE_CORRUPT_BKPT; assert( pCur->aOverflow[iIdx]==0 || pCur->aOverflow[iIdx]==nextPage || CORRUPT_DB ); pCur->aOverflow[iIdx] = nextPage; if( offset>=ovflSize ){ /* The only reason to read this page is to obtain the page ** number for the next page in the overflow chain. The page ** data is not required. So first try to lookup the overflow ** page-list cache, if any, then fall back to the getOverflowPage() ** function. */ assert( pCur->curFlags & BTCF_ValidOvfl ); assert( pCur->pBtree->db==pBt->db ); if( pCur->aOverflow[iIdx+1] ){ nextPage = pCur->aOverflow[iIdx+1]; }else{ rc = getOverflowPage(pBt, nextPage, 0, &nextPage); } offset -= ovflSize; }else{ /* Need to read this page properly. It contains some of the ** range of data that is being read (eOp==0) or written (eOp!=0). */ int a = amt; if( a + offset > ovflSize ){ a = ovflSize - offset; } #ifdef SQLITE_DIRECT_OVERFLOW_READ /* If all the following are true: ** ** 1) this is a read operation, and ** 2) data is required from the start of this overflow page, and ** 3) there are no dirty pages in the page-cache ** 4) the database is file-backed, and ** 5) the page is not in the WAL file ** 6) at least 4 bytes have already been read into the output buffer ** ** then data can be read directly from the database file into the ** output buffer, bypassing the page-cache altogether. This speeds ** up loading large records that span many overflow pages. */ if( eOp==0 /* (1) */ && offset==0 /* (2) */ && sqlite3PagerDirectReadOk(pBt->pPager, nextPage) /* (3,4,5) */ && &pBuf[-4]>=pBufStart /* (6) */ ){ sqlite3_file *fd = sqlite3PagerFile(pBt->pPager); u8 aSave[4]; u8 *aWrite = &pBuf[-4]; assert( aWrite>=pBufStart ); /* due to (6) */ memcpy(aSave, aWrite, 4); rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1)); if( rc && nextPage>pBt->nPage ) rc = SQLITE_CORRUPT_BKPT; nextPage = get4byte(aWrite); memcpy(aWrite, aSave, 4); }else #endif { DbPage *pDbPage; rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage, (eOp==0 ? PAGER_GET_READONLY : 0) ); if( rc==SQLITE_OK ){ aPayload = sqlite3PagerGetData(pDbPage); nextPage = get4byte(aPayload); rc = copyPayload(&aPayload[offset+4], pBuf, a, eOp, pDbPage); sqlite3PagerUnref(pDbPage); offset = 0; } } amt -= a; if( amt==0 ) return rc; pBuf += a; } if( rc ) break; iIdx++; } } if( rc==SQLITE_OK && amt>0 ){ /* Overflow chain ends prematurely */ return SQLITE_CORRUPT_PAGE(pPage); } return rc; } /* ** Read part of the payload for the row at which that cursor pCur is currently ** pointing. "amt" bytes will be transferred into pBuf[]. The transfer ** begins at "offset". ** ** pCur can be pointing to either a table or an index b-tree. ** If pointing to a table btree, then the content section is read. If ** pCur is pointing to an index b-tree then the key section is read. ** ** For sqlite3BtreePayload(), the caller must ensure that pCur is pointing ** to a valid row in the table. For sqlite3BtreePayloadChecked(), the ** cursor might be invalid or might need to be restored before being read. ** ** Return SQLITE_OK on success or an error code if anything goes ** wrong. An error is returned if "offset+amt" is larger than ** the available payload. */ SQLITE_PRIVATE int sqlite3BtreePayload(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->iPage>=0 && pCur->pPage ); return accessPayload(pCur, offset, amt, (unsigned char*)pBuf, 0); } /* ** This variant of sqlite3BtreePayload() works even if the cursor has not ** in the CURSOR_VALID state. It is only used by the sqlite3_blob_read() ** interface. */ #ifndef SQLITE_OMIT_INCRBLOB static SQLITE_NOINLINE int accessPayloadChecked( BtCursor *pCur, u32 offset, u32 amt, void *pBuf ){ int rc; if ( pCur->eState==CURSOR_INVALID ){ return SQLITE_ABORT; } assert( cursorOwnsBtShared(pCur) ); rc = btreeRestoreCursorPosition(pCur); return rc ? rc : accessPayload(pCur, offset, amt, pBuf, 0); } SQLITE_PRIVATE int sqlite3BtreePayloadChecked(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){ if( pCur->eState==CURSOR_VALID ){ assert( cursorOwnsBtShared(pCur) ); return accessPayload(pCur, offset, amt, pBuf, 0); }else{ return accessPayloadChecked(pCur, offset, amt, pBuf); } } #endif /* SQLITE_OMIT_INCRBLOB */ /* ** Return a pointer to payload information from the entry that the ** pCur cursor is pointing to. The pointer is to the beginning of ** the key if index btrees (pPage->intKey==0) and is the data for ** table btrees (pPage->intKey==1). The number of bytes of available ** key/data is written into *pAmt. If *pAmt==0, then the value ** returned will not be a valid pointer. ** ** This routine is an optimization. It is common for the entire key ** and data to fit on the local page and for there to be no overflow ** pages. When that is so, this routine can be used to access the ** key and data without making a copy. If the key and/or data spills ** onto overflow pages, then accessPayload() must be used to reassemble ** the key/data and copy it into a preallocated buffer. ** ** The pointer returned by this routine looks directly into the cached ** page of the database. The data might change or move the next time ** any btree routine is called. */ static const void *fetchPayload( BtCursor *pCur, /* Cursor pointing to entry to read from */ u32 *pAmt /* Write the number of available bytes here */ ){ int amt; assert( pCur!=0 && pCur->iPage>=0 && pCur->pPage); assert( pCur->eState==CURSOR_VALID ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); assert( cursorOwnsBtShared(pCur) ); assert( pCur->ixpPage->nCell || CORRUPT_DB ); assert( pCur->info.nSize>0 ); assert( pCur->info.pPayload>pCur->pPage->aData || CORRUPT_DB ); assert( pCur->info.pPayloadpPage->aDataEnd ||CORRUPT_DB); amt = pCur->info.nLocal; if( amt>(int)(pCur->pPage->aDataEnd - pCur->info.pPayload) ){ /* There is too little space on the page for the expected amount ** of local content. Database must be corrupt. */ assert( CORRUPT_DB ); amt = MAX(0, (int)(pCur->pPage->aDataEnd - pCur->info.pPayload)); } *pAmt = (u32)amt; return (void*)pCur->info.pPayload; } /* ** For the entry that cursor pCur is point to, return as ** many bytes of the key or data as are available on the local ** b-tree page. Write the number of available bytes into *pAmt. ** ** The pointer returned is ephemeral. The key/data may move ** or be destroyed on the next call to any Btree routine, ** including calls from other threads against the same cache. ** Hence, a mutex on the BtShared should be held prior to calling ** this routine. ** ** These routines is used to get quick access to key and data ** in the common case where no overflow pages are used. */ SQLITE_PRIVATE const void *sqlite3BtreePayloadFetch(BtCursor *pCur, u32 *pAmt){ return fetchPayload(pCur, pAmt); } /* ** Move the cursor down to a new child page. The newPgno argument is the ** page number of the child page to move to. ** ** This function returns SQLITE_CORRUPT if the page-header flags field of ** the new child page does not match the flags field of the parent (i.e. ** if an intkey page appears to be the parent of a non-intkey page, or ** vice-versa). */ static int moveToChild(BtCursor *pCur, u32 newPgno){ BtShared *pBt = pCur->pBt; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->iPageiPage>=0 ); if( pCur->iPage>=(BTCURSOR_MAX_DEPTH-1) ){ return SQLITE_CORRUPT_BKPT; } pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); pCur->aiIdx[pCur->iPage] = pCur->ix; pCur->apPage[pCur->iPage] = pCur->pPage; pCur->ix = 0; pCur->iPage++; return getAndInitPage(pBt, newPgno, &pCur->pPage, pCur, pCur->curPagerFlags); } #ifdef SQLITE_DEBUG /* ** Page pParent is an internal (non-leaf) tree page. This function ** asserts that page number iChild is the left-child if the iIdx'th ** cell in page pParent. Or, if iIdx is equal to the total number of ** cells in pParent, that page number iChild is the right-child of ** the page. */ static void assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild){ if( CORRUPT_DB ) return; /* The conditions tested below might not be true ** in a corrupt database */ assert( iIdx<=pParent->nCell ); if( iIdx==pParent->nCell ){ assert( get4byte(&pParent->aData[pParent->hdrOffset+8])==iChild ); }else{ assert( get4byte(findCell(pParent, iIdx))==iChild ); } } #else # define assertParentIndex(x,y,z) #endif /* ** Move the cursor up to the parent page. ** ** pCur->idx is set to the cell index that contains the pointer ** to the page we are coming from. If we are coming from the ** right-most child page then pCur->idx is set to one more than ** the largest cell index. */ static void moveToParent(BtCursor *pCur){ MemPage *pLeaf; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->iPage>0 ); assert( pCur->pPage ); assertParentIndex( pCur->apPage[pCur->iPage-1], pCur->aiIdx[pCur->iPage-1], pCur->pPage->pgno ); testcase( pCur->aiIdx[pCur->iPage-1] > pCur->apPage[pCur->iPage-1]->nCell ); pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); pCur->ix = pCur->aiIdx[pCur->iPage-1]; pLeaf = pCur->pPage; pCur->pPage = pCur->apPage[--pCur->iPage]; releasePageNotNull(pLeaf); } /* ** Move the cursor to point to the root page of its b-tree structure. ** ** If the table has a virtual root page, then the cursor is moved to point ** to the virtual root page instead of the actual root page. A table has a ** virtual root page when the actual root page contains no cells and a ** single child page. This can only happen with the table rooted at page 1. ** ** If the b-tree structure is empty, the cursor state is set to ** CURSOR_INVALID and this routine returns SQLITE_EMPTY. Otherwise, ** the cursor is set to point to the first cell located on the root ** (or virtual root) page and the cursor state is set to CURSOR_VALID. ** ** If this function returns successfully, it may be assumed that the ** page-header flags indicate that the [virtual] root-page is the expected ** kind of b-tree page (i.e. if when opening the cursor the caller did not ** specify a KeyInfo structure the flags byte is set to 0x05 or 0x0D, ** indicating a table b-tree, or if the caller did specify a KeyInfo ** structure the flags byte is set to 0x02 or 0x0A, indicating an index ** b-tree). */ static int moveToRoot(BtCursor *pCur){ MemPage *pRoot; int rc = SQLITE_OK; assert( cursorOwnsBtShared(pCur) ); assert( CURSOR_INVALID < CURSOR_REQUIRESEEK ); assert( CURSOR_VALID < CURSOR_REQUIRESEEK ); assert( CURSOR_FAULT > CURSOR_REQUIRESEEK ); assert( pCur->eState < CURSOR_REQUIRESEEK || pCur->iPage<0 ); assert( pCur->pgnoRoot>0 || pCur->iPage<0 ); if( pCur->iPage>=0 ){ if( pCur->iPage ){ releasePageNotNull(pCur->pPage); while( --pCur->iPage ){ releasePageNotNull(pCur->apPage[pCur->iPage]); } pRoot = pCur->pPage = pCur->apPage[0]; goto skip_init; } }else if( pCur->pgnoRoot==0 ){ pCur->eState = CURSOR_INVALID; return SQLITE_EMPTY; }else{ assert( pCur->iPage==(-1) ); if( pCur->eState>=CURSOR_REQUIRESEEK ){ if( pCur->eState==CURSOR_FAULT ){ assert( pCur->skipNext!=SQLITE_OK ); return pCur->skipNext; } sqlite3BtreeClearCursor(pCur); } rc = getAndInitPage(pCur->pBtree->pBt, pCur->pgnoRoot, &pCur->pPage, 0, pCur->curPagerFlags); if( rc!=SQLITE_OK ){ pCur->eState = CURSOR_INVALID; return rc; } pCur->iPage = 0; pCur->curIntKey = pCur->pPage->intKey; } pRoot = pCur->pPage; assert( pRoot->pgno==pCur->pgnoRoot ); /* If pCur->pKeyInfo is not NULL, then the caller that opened this cursor ** expected to open it on an index b-tree. Otherwise, if pKeyInfo is ** NULL, the caller expects a table b-tree. If this is not the case, ** return an SQLITE_CORRUPT error. ** ** Earlier versions of SQLite assumed that this test could not fail ** if the root page was already loaded when this function was called (i.e. ** if pCur->iPage>=0). But this is not so if the database is corrupted ** in such a way that page pRoot is linked into a second b-tree table ** (or the freelist). */ assert( pRoot->intKey==1 || pRoot->intKey==0 ); if( pRoot->isInit==0 || (pCur->pKeyInfo==0)!=pRoot->intKey ){ return SQLITE_CORRUPT_PAGE(pCur->pPage); } skip_init: pCur->ix = 0; pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_AtLast|BTCF_ValidNKey|BTCF_ValidOvfl); if( pRoot->nCell>0 ){ pCur->eState = CURSOR_VALID; }else if( !pRoot->leaf ){ Pgno subpage; if( pRoot->pgno!=1 ) return SQLITE_CORRUPT_BKPT; subpage = get4byte(&pRoot->aData[pRoot->hdrOffset+8]); pCur->eState = CURSOR_VALID; rc = moveToChild(pCur, subpage); }else{ pCur->eState = CURSOR_INVALID; rc = SQLITE_EMPTY; } return rc; } /* ** Move the cursor down to the left-most leaf entry beneath the ** entry to which it is currently pointing. ** ** The left-most leaf is the one with the smallest key - the first ** in ascending order. */ static int moveToLeftmost(BtCursor *pCur){ Pgno pgno; int rc = SQLITE_OK; MemPage *pPage; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); while( rc==SQLITE_OK && !(pPage = pCur->pPage)->leaf ){ assert( pCur->ixnCell ); pgno = get4byte(findCell(pPage, pCur->ix)); rc = moveToChild(pCur, pgno); } return rc; } /* ** Move the cursor down to the right-most leaf entry beneath the ** page to which it is currently pointing. Notice the difference ** between moveToLeftmost() and moveToRightmost(). moveToLeftmost() ** finds the left-most entry beneath the *entry* whereas moveToRightmost() ** finds the right-most entry beneath the *page*. ** ** The right-most entry is the one with the largest key - the last ** key in ascending order. */ static int moveToRightmost(BtCursor *pCur){ Pgno pgno; int rc = SQLITE_OK; MemPage *pPage = 0; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); while( !(pPage = pCur->pPage)->leaf ){ pgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); pCur->ix = pPage->nCell; rc = moveToChild(pCur, pgno); if( rc ) return rc; } pCur->ix = pPage->nCell-1; assert( pCur->info.nSize==0 ); assert( (pCur->curFlags & BTCF_ValidNKey)==0 ); return SQLITE_OK; } /* Move the cursor to the first entry in the table. Return SQLITE_OK ** on success. Set *pRes to 0 if the cursor actually points to something ** or set *pRes to 1 if the table is empty. */ SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){ int rc; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); rc = moveToRoot(pCur); if( rc==SQLITE_OK ){ assert( pCur->pPage->nCell>0 ); *pRes = 0; rc = moveToLeftmost(pCur); }else if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = 1; rc = SQLITE_OK; } return rc; } /* Move the cursor to the last entry in the table. Return SQLITE_OK ** on success. Set *pRes to 0 if the cursor actually points to something ** or set *pRes to 1 if the table is empty. */ SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){ int rc; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); /* If the cursor already points to the last entry, this is a no-op. */ if( CURSOR_VALID==pCur->eState && (pCur->curFlags & BTCF_AtLast)!=0 ){ #ifdef SQLITE_DEBUG /* This block serves to assert() that the cursor really does point ** to the last entry in the b-tree. */ int ii; for(ii=0; iiiPage; ii++){ assert( pCur->aiIdx[ii]==pCur->apPage[ii]->nCell ); } assert( pCur->ix==pCur->pPage->nCell-1 || CORRUPT_DB ); testcase( pCur->ix!=pCur->pPage->nCell-1 ); /* ^-- dbsqlfuzz b92b72e4de80b5140c30ab71372ca719b8feb618 */ assert( pCur->pPage->leaf ); #endif *pRes = 0; return SQLITE_OK; } rc = moveToRoot(pCur); if( rc==SQLITE_OK ){ assert( pCur->eState==CURSOR_VALID ); *pRes = 0; rc = moveToRightmost(pCur); if( rc==SQLITE_OK ){ pCur->curFlags |= BTCF_AtLast; }else{ pCur->curFlags &= ~BTCF_AtLast; } }else if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = 1; rc = SQLITE_OK; } return rc; } /* Move the cursor so that it points to an entry in a table (a.k.a INTKEY) ** table near the key intKey. Return a success code. ** ** If an exact match is not found, then the cursor is always ** left pointing at a leaf page which would hold the entry if it ** were present. The cursor might point to an entry that comes ** before or after the key. ** ** An integer is written into *pRes which is the result of ** comparing the key with the entry to which the cursor is ** pointing. The meaning of the integer written into ** *pRes is as follows: ** ** *pRes<0 The cursor is left pointing at an entry that ** is smaller than intKey or if the table is empty ** and the cursor is therefore left point to nothing. ** ** *pRes==0 The cursor is left pointing at an entry that ** exactly matches intKey. ** ** *pRes>0 The cursor is left pointing at an entry that ** is larger than intKey. */ SQLITE_PRIVATE int sqlite3BtreeTableMoveto( BtCursor *pCur, /* The cursor to be moved */ i64 intKey, /* The table key */ int biasRight, /* If true, bias the search to the high end */ int *pRes /* Write search results here */ ){ int rc; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); assert( pRes ); assert( pCur->pKeyInfo==0 ); assert( pCur->eState!=CURSOR_VALID || pCur->curIntKey!=0 ); /* If the cursor is already positioned at the point we are trying ** to move to, then just return without doing any work */ if( pCur->eState==CURSOR_VALID && (pCur->curFlags & BTCF_ValidNKey)!=0 ){ if( pCur->info.nKey==intKey ){ *pRes = 0; return SQLITE_OK; } if( pCur->info.nKeycurFlags & BTCF_AtLast)!=0 ){ *pRes = -1; return SQLITE_OK; } /* If the requested key is one more than the previous key, then ** try to get there using sqlite3BtreeNext() rather than a full ** binary search. This is an optimization only. The correct answer ** is still obtained without this case, only a little more slowely */ if( pCur->info.nKey+1==intKey ){ *pRes = 0; rc = sqlite3BtreeNext(pCur, 0); if( rc==SQLITE_OK ){ getCellInfo(pCur); if( pCur->info.nKey==intKey ){ return SQLITE_OK; } }else if( rc!=SQLITE_DONE ){ return rc; } } } } #ifdef SQLITE_DEBUG pCur->pBtree->nSeek++; /* Performance measurement during testing */ #endif rc = moveToRoot(pCur); if( rc ){ if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = -1; return SQLITE_OK; } return rc; } assert( pCur->pPage ); assert( pCur->pPage->isInit ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->pPage->nCell > 0 ); assert( pCur->iPage==0 || pCur->apPage[0]->intKey==pCur->curIntKey ); assert( pCur->curIntKey ); for(;;){ int lwr, upr, idx, c; Pgno chldPg; MemPage *pPage = pCur->pPage; u8 *pCell; /* Pointer to current cell in pPage */ /* pPage->nCell must be greater than zero. If this is the root-page ** the cursor would have been INVALID above and this for(;;) loop ** not run. If this is not the root-page, then the moveToChild() routine ** would have already detected db corruption. Similarly, pPage must ** be the right kind (index or table) of b-tree page. Otherwise ** a moveToChild() or moveToRoot() call would have detected corruption. */ assert( pPage->nCell>0 ); assert( pPage->intKey ); lwr = 0; upr = pPage->nCell-1; assert( biasRight==0 || biasRight==1 ); idx = upr>>(1-biasRight); /* idx = biasRight ? upr : (lwr+upr)/2; */ for(;;){ i64 nCellKey; pCell = findCellPastPtr(pPage, idx); if( pPage->intKeyLeaf ){ while( 0x80 <= *(pCell++) ){ if( pCell>=pPage->aDataEnd ){ return SQLITE_CORRUPT_PAGE(pPage); } } } getVarint(pCell, (u64*)&nCellKey); if( nCellKeyupr ){ c = -1; break; } }else if( nCellKey>intKey ){ upr = idx-1; if( lwr>upr ){ c = +1; break; } }else{ assert( nCellKey==intKey ); pCur->ix = (u16)idx; if( !pPage->leaf ){ lwr = idx; goto moveto_table_next_layer; }else{ pCur->curFlags |= BTCF_ValidNKey; pCur->info.nKey = nCellKey; pCur->info.nSize = 0; *pRes = 0; return SQLITE_OK; } } assert( lwr+upr>=0 ); idx = (lwr+upr)>>1; /* idx = (lwr+upr)/2; */ } assert( lwr==upr+1 || !pPage->leaf ); assert( pPage->isInit ); if( pPage->leaf ){ assert( pCur->ixpPage->nCell ); pCur->ix = (u16)idx; *pRes = c; rc = SQLITE_OK; goto moveto_table_finish; } moveto_table_next_layer: if( lwr>=pPage->nCell ){ chldPg = get4byte(&pPage->aData[pPage->hdrOffset+8]); }else{ chldPg = get4byte(findCell(pPage, lwr)); } pCur->ix = (u16)lwr; rc = moveToChild(pCur, chldPg); if( rc ) break; } moveto_table_finish: pCur->info.nSize = 0; assert( (pCur->curFlags & BTCF_ValidOvfl)==0 ); return rc; } /* Move the cursor so that it points to an entry in an index table ** near the key pIdxKey. Return a success code. ** ** If an exact match is not found, then the cursor is always ** left pointing at a leaf page which would hold the entry if it ** were present. The cursor might point to an entry that comes ** before or after the key. ** ** An integer is written into *pRes which is the result of ** comparing the key with the entry to which the cursor is ** pointing. The meaning of the integer written into ** *pRes is as follows: ** ** *pRes<0 The cursor is left pointing at an entry that ** is smaller than pIdxKey or if the table is empty ** and the cursor is therefore left point to nothing. ** ** *pRes==0 The cursor is left pointing at an entry that ** exactly matches pIdxKey. ** ** *pRes>0 The cursor is left pointing at an entry that ** is larger than pIdxKey. ** ** The pIdxKey->eqSeen field is set to 1 if there ** exists an entry in the table that exactly matches pIdxKey. */ SQLITE_PRIVATE int sqlite3BtreeIndexMoveto( BtCursor *pCur, /* The cursor to be moved */ UnpackedRecord *pIdxKey, /* Unpacked index key */ int *pRes /* Write search results here */ ){ int rc; RecordCompare xRecordCompare; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); assert( pRes ); assert( pCur->pKeyInfo!=0 ); #ifdef SQLITE_DEBUG pCur->pBtree->nSeek++; /* Performance measurement during testing */ #endif xRecordCompare = sqlite3VdbeFindCompare(pIdxKey); pIdxKey->errCode = 0; assert( pIdxKey->default_rc==1 || pIdxKey->default_rc==0 || pIdxKey->default_rc==-1 ); rc = moveToRoot(pCur); if( rc ){ if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = -1; return SQLITE_OK; } return rc; } assert( pCur->pPage ); assert( pCur->pPage->isInit ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->pPage->nCell > 0 ); assert( pCur->iPage==0 || pCur->apPage[0]->intKey==pCur->curIntKey ); assert( pCur->curIntKey || pIdxKey ); for(;;){ int lwr, upr, idx, c; Pgno chldPg; MemPage *pPage = pCur->pPage; u8 *pCell; /* Pointer to current cell in pPage */ /* pPage->nCell must be greater than zero. If this is the root-page ** the cursor would have been INVALID above and this for(;;) loop ** not run. If this is not the root-page, then the moveToChild() routine ** would have already detected db corruption. Similarly, pPage must ** be the right kind (index or table) of b-tree page. Otherwise ** a moveToChild() or moveToRoot() call would have detected corruption. */ assert( pPage->nCell>0 ); assert( pPage->intKey==(pIdxKey==0) ); lwr = 0; upr = pPage->nCell-1; idx = upr>>1; /* idx = (lwr+upr)/2; */ for(;;){ int nCell; /* Size of the pCell cell in bytes */ pCell = findCellPastPtr(pPage, idx); /* The maximum supported page-size is 65536 bytes. This means that ** the maximum number of record bytes stored on an index B-Tree ** page is less than 16384 bytes and may be stored as a 2-byte ** varint. This information is used to attempt to avoid parsing ** the entire cell by checking for the cases where the record is ** stored entirely within the b-tree page by inspecting the first ** 2 bytes of the cell. */ nCell = pCell[0]; if( nCell<=pPage->max1bytePayload ){ /* This branch runs if the record-size field of the cell is a ** single byte varint and the record fits entirely on the main ** b-tree page. */ testcase( pCell+nCell+1==pPage->aDataEnd ); c = xRecordCompare(nCell, (void*)&pCell[1], pIdxKey); }else if( !(pCell[1] & 0x80) && (nCell = ((nCell&0x7f)<<7) + pCell[1])<=pPage->maxLocal ){ /* The record-size field is a 2 byte varint and the record ** fits entirely on the main b-tree page. */ testcase( pCell+nCell+2==pPage->aDataEnd ); c = xRecordCompare(nCell, (void*)&pCell[2], pIdxKey); }else{ /* The record flows over onto one or more overflow pages. In ** this case the whole cell needs to be parsed, a buffer allocated ** and accessPayload() used to retrieve the record into the ** buffer before VdbeRecordCompare() can be called. ** ** If the record is corrupt, the xRecordCompare routine may read ** up to two varints past the end of the buffer. An extra 18 ** bytes of padding is allocated at the end of the buffer in ** case this happens. */ void *pCellKey; u8 * const pCellBody = pCell - pPage->childPtrSize; const int nOverrun = 18; /* Size of the overrun padding */ pPage->xParseCell(pPage, pCellBody, &pCur->info); nCell = (int)pCur->info.nKey; testcase( nCell<0 ); /* True if key size is 2^32 or more */ testcase( nCell==0 ); /* Invalid key size: 0x80 0x80 0x00 */ testcase( nCell==1 ); /* Invalid key size: 0x80 0x80 0x01 */ testcase( nCell==2 ); /* Minimum legal index key size */ if( nCell<2 || nCell/pCur->pBt->usableSize>pCur->pBt->nPage ){ rc = SQLITE_CORRUPT_PAGE(pPage); goto moveto_index_finish; } pCellKey = sqlite3Malloc( nCell+nOverrun ); if( pCellKey==0 ){ rc = SQLITE_NOMEM_BKPT; goto moveto_index_finish; } pCur->ix = (u16)idx; rc = accessPayload(pCur, 0, nCell, (unsigned char*)pCellKey, 0); memset(((u8*)pCellKey)+nCell,0,nOverrun); /* Fix uninit warnings */ pCur->curFlags &= ~BTCF_ValidOvfl; if( rc ){ sqlite3_free(pCellKey); goto moveto_index_finish; } c = sqlite3VdbeRecordCompare(nCell, pCellKey, pIdxKey); sqlite3_free(pCellKey); } assert( (pIdxKey->errCode!=SQLITE_CORRUPT || c==0) && (pIdxKey->errCode!=SQLITE_NOMEM || pCur->pBtree->db->mallocFailed) ); if( c<0 ){ lwr = idx+1; }else if( c>0 ){ upr = idx-1; }else{ assert( c==0 ); *pRes = 0; rc = SQLITE_OK; pCur->ix = (u16)idx; if( pIdxKey->errCode ) rc = SQLITE_CORRUPT_BKPT; goto moveto_index_finish; } if( lwr>upr ) break; assert( lwr+upr>=0 ); idx = (lwr+upr)>>1; /* idx = (lwr+upr)/2 */ } assert( lwr==upr+1 || (pPage->intKey && !pPage->leaf) ); assert( pPage->isInit ); if( pPage->leaf ){ assert( pCur->ixpPage->nCell ); pCur->ix = (u16)idx; *pRes = c; rc = SQLITE_OK; goto moveto_index_finish; } if( lwr>=pPage->nCell ){ chldPg = get4byte(&pPage->aData[pPage->hdrOffset+8]); }else{ chldPg = get4byte(findCell(pPage, lwr)); } pCur->ix = (u16)lwr; rc = moveToChild(pCur, chldPg); if( rc ) break; } moveto_index_finish: pCur->info.nSize = 0; assert( (pCur->curFlags & BTCF_ValidOvfl)==0 ); return rc; } /* ** Return TRUE if the cursor is not pointing at an entry of the table. ** ** TRUE will be returned after a call to sqlite3BtreeNext() moves ** past the last entry in the table or sqlite3BtreePrev() moves past ** the first entry. TRUE is also returned if the table is empty. */ SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor *pCur){ /* TODO: What if the cursor is in CURSOR_REQUIRESEEK but all table entries ** have been deleted? This API will need to change to return an error code ** as well as the boolean result value. */ return (CURSOR_VALID!=pCur->eState); } /* ** Return an estimate for the number of rows in the table that pCur is ** pointing to. Return a negative number if no estimate is currently ** available. */ SQLITE_PRIVATE i64 sqlite3BtreeRowCountEst(BtCursor *pCur){ i64 n; u8 i; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); /* Currently this interface is only called by the OP_IfSmaller ** opcode, and it that case the cursor will always be valid and ** will always point to a leaf node. */ if( NEVER(pCur->eState!=CURSOR_VALID) ) return -1; if( NEVER(pCur->pPage->leaf==0) ) return -1; n = pCur->pPage->nCell; for(i=0; iiPage; i++){ n *= pCur->apPage[i]->nCell; } return n; } /* ** Advance the cursor to the next entry in the database. ** Return value: ** ** SQLITE_OK success ** SQLITE_DONE cursor is already pointing at the last element ** otherwise some kind of error occurred ** ** The main entry point is sqlite3BtreeNext(). That routine is optimized ** for the common case of merely incrementing the cell counter BtCursor.aiIdx ** to the next cell on the current page. The (slower) btreeNext() helper ** routine is called when it is necessary to move to a different page or ** to restore the cursor. ** ** If bit 0x01 of the F argument in sqlite3BtreeNext(C,F) is 1, then the ** cursor corresponds to an SQL index and this routine could have been ** skipped if the SQL index had been a unique index. The F argument ** is a hint to the implement. SQLite btree implementation does not use ** this hint, but COMDB2 does. */ static SQLITE_NOINLINE int btreeNext(BtCursor *pCur){ int rc; int idx; MemPage *pPage; assert( cursorOwnsBtShared(pCur) ); if( pCur->eState!=CURSOR_VALID ){ assert( (pCur->curFlags & BTCF_ValidOvfl)==0 ); rc = restoreCursorPosition(pCur); if( rc!=SQLITE_OK ){ return rc; } if( CURSOR_INVALID==pCur->eState ){ return SQLITE_DONE; } if( pCur->eState==CURSOR_SKIPNEXT ){ pCur->eState = CURSOR_VALID; if( pCur->skipNext>0 ) return SQLITE_OK; } } pPage = pCur->pPage; idx = ++pCur->ix; if( !pPage->isInit || sqlite3FaultSim(412) ){ /* The only known way for this to happen is for there to be a ** recursive SQL function that does a DELETE operation as part of a ** SELECT which deletes content out from under an active cursor ** in a corrupt database file where the table being DELETE-ed from ** has pages in common with the table being queried. See TH3 ** module cov1/btree78.test testcase 220 (2018-06-08) for an ** example. */ return SQLITE_CORRUPT_BKPT; } if( idx>=pPage->nCell ){ if( !pPage->leaf ){ rc = moveToChild(pCur, get4byte(&pPage->aData[pPage->hdrOffset+8])); if( rc ) return rc; return moveToLeftmost(pCur); } do{ if( pCur->iPage==0 ){ pCur->eState = CURSOR_INVALID; return SQLITE_DONE; } moveToParent(pCur); pPage = pCur->pPage; }while( pCur->ix>=pPage->nCell ); if( pPage->intKey ){ return sqlite3BtreeNext(pCur, 0); }else{ return SQLITE_OK; } } if( pPage->leaf ){ return SQLITE_OK; }else{ return moveToLeftmost(pCur); } } SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int flags){ MemPage *pPage; UNUSED_PARAMETER( flags ); /* Used in COMDB2 but not native SQLite */ assert( cursorOwnsBtShared(pCur) ); assert( flags==0 || flags==1 ); pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); if( pCur->eState!=CURSOR_VALID ) return btreeNext(pCur); pPage = pCur->pPage; if( (++pCur->ix)>=pPage->nCell ){ pCur->ix--; return btreeNext(pCur); } if( pPage->leaf ){ return SQLITE_OK; }else{ return moveToLeftmost(pCur); } } /* ** Step the cursor to the back to the previous entry in the database. ** Return values: ** ** SQLITE_OK success ** SQLITE_DONE the cursor is already on the first element of the table ** otherwise some kind of error occurred ** ** The main entry point is sqlite3BtreePrevious(). That routine is optimized ** for the common case of merely decrementing the cell counter BtCursor.aiIdx ** to the previous cell on the current page. The (slower) btreePrevious() ** helper routine is called when it is necessary to move to a different page ** or to restore the cursor. ** ** If bit 0x01 of the F argument to sqlite3BtreePrevious(C,F) is 1, then ** the cursor corresponds to an SQL index and this routine could have been ** skipped if the SQL index had been a unique index. The F argument is a ** hint to the implement. The native SQLite btree implementation does not ** use this hint, but COMDB2 does. */ static SQLITE_NOINLINE int btreePrevious(BtCursor *pCur){ int rc; MemPage *pPage; assert( cursorOwnsBtShared(pCur) ); assert( (pCur->curFlags & (BTCF_AtLast|BTCF_ValidOvfl|BTCF_ValidNKey))==0 ); assert( pCur->info.nSize==0 ); if( pCur->eState!=CURSOR_VALID ){ rc = restoreCursorPosition(pCur); if( rc!=SQLITE_OK ){ return rc; } if( CURSOR_INVALID==pCur->eState ){ return SQLITE_DONE; } if( CURSOR_SKIPNEXT==pCur->eState ){ pCur->eState = CURSOR_VALID; if( pCur->skipNext<0 ) return SQLITE_OK; } } pPage = pCur->pPage; assert( pPage->isInit ); if( !pPage->leaf ){ int idx = pCur->ix; rc = moveToChild(pCur, get4byte(findCell(pPage, idx))); if( rc ) return rc; rc = moveToRightmost(pCur); }else{ while( pCur->ix==0 ){ if( pCur->iPage==0 ){ pCur->eState = CURSOR_INVALID; return SQLITE_DONE; } moveToParent(pCur); } assert( pCur->info.nSize==0 ); assert( (pCur->curFlags & (BTCF_ValidOvfl))==0 ); pCur->ix--; pPage = pCur->pPage; if( pPage->intKey && !pPage->leaf ){ rc = sqlite3BtreePrevious(pCur, 0); }else{ rc = SQLITE_OK; } } return rc; } SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int flags){ assert( cursorOwnsBtShared(pCur) ); assert( flags==0 || flags==1 ); UNUSED_PARAMETER( flags ); /* Used in COMDB2 but not native SQLite */ pCur->curFlags &= ~(BTCF_AtLast|BTCF_ValidOvfl|BTCF_ValidNKey); pCur->info.nSize = 0; if( pCur->eState!=CURSOR_VALID || pCur->ix==0 || pCur->pPage->leaf==0 ){ return btreePrevious(pCur); } pCur->ix--; return SQLITE_OK; } /* ** Allocate a new page from the database file. ** ** The new page is marked as dirty. (In other words, sqlite3PagerWrite() ** has already been called on the new page.) The new page has also ** been referenced and the calling routine is responsible for calling ** sqlite3PagerUnref() on the new page when it is done. ** ** SQLITE_OK is returned on success. Any other return value indicates ** an error. *ppPage is set to NULL in the event of an error. ** ** If the "nearby" parameter is not 0, then an effort is made to ** locate a page close to the page number "nearby". This can be used in an ** attempt to keep related pages close to each other in the database file, ** which in turn can make database access faster. ** ** If the eMode parameter is BTALLOC_EXACT and the nearby page exists ** anywhere on the free-list, then it is guaranteed to be returned. If ** eMode is BTALLOC_LT then the page returned will be less than or equal ** to nearby if any such page exists. If eMode is BTALLOC_ANY then there ** are no restrictions on which page is returned. */ static int allocateBtreePage( BtShared *pBt, /* The btree */ MemPage **ppPage, /* Store pointer to the allocated page here */ Pgno *pPgno, /* Store the page number here */ Pgno nearby, /* Search for a page near this one */ u8 eMode /* BTALLOC_EXACT, BTALLOC_LT, or BTALLOC_ANY */ ){ MemPage *pPage1; int rc; u32 n; /* Number of pages on the freelist */ u32 k; /* Number of leaves on the trunk of the freelist */ MemPage *pTrunk = 0; MemPage *pPrevTrunk = 0; Pgno mxPage; /* Total size of the database file */ assert( sqlite3_mutex_held(pBt->mutex) ); assert( eMode==BTALLOC_ANY || (nearby>0 && IfNotOmitAV(pBt->autoVacuum)) ); pPage1 = pBt->pPage1; mxPage = btreePagecount(pBt); /* EVIDENCE-OF: R-05119-02637 The 4-byte big-endian integer at offset 36 ** stores stores the total number of pages on the freelist. */ n = get4byte(&pPage1->aData[36]); testcase( n==mxPage-1 ); if( n>=mxPage ){ return SQLITE_CORRUPT_BKPT; } if( n>0 ){ /* There are pages on the freelist. Reuse one of those pages. */ Pgno iTrunk; u8 searchList = 0; /* If the free-list must be searched for 'nearby' */ u32 nSearch = 0; /* Count of the number of search attempts */ /* If eMode==BTALLOC_EXACT and a query of the pointer-map ** shows that the page 'nearby' is somewhere on the free-list, then ** the entire-list will be searched for that page. */ #ifndef SQLITE_OMIT_AUTOVACUUM if( eMode==BTALLOC_EXACT ){ if( nearby<=mxPage ){ u8 eType; assert( nearby>0 ); assert( pBt->autoVacuum ); rc = ptrmapGet(pBt, nearby, &eType, 0); if( rc ) return rc; if( eType==PTRMAP_FREEPAGE ){ searchList = 1; } } }else if( eMode==BTALLOC_LE ){ searchList = 1; } #endif /* Decrement the free-list count by 1. Set iTrunk to the index of the ** first free-list trunk page. iPrevTrunk is initially 1. */ rc = sqlite3PagerWrite(pPage1->pDbPage); if( rc ) return rc; put4byte(&pPage1->aData[36], n-1); /* The code within this loop is run only once if the 'searchList' variable ** is not true. Otherwise, it runs once for each trunk-page on the ** free-list until the page 'nearby' is located (eMode==BTALLOC_EXACT) ** or until a page less than 'nearby' is located (eMode==BTALLOC_LT) */ do { pPrevTrunk = pTrunk; if( pPrevTrunk ){ /* EVIDENCE-OF: R-01506-11053 The first integer on a freelist trunk page ** is the page number of the next freelist trunk page in the list or ** zero if this is the last freelist trunk page. */ iTrunk = get4byte(&pPrevTrunk->aData[0]); }else{ /* EVIDENCE-OF: R-59841-13798 The 4-byte big-endian integer at offset 32 ** stores the page number of the first page of the freelist, or zero if ** the freelist is empty. */ iTrunk = get4byte(&pPage1->aData[32]); } testcase( iTrunk==mxPage ); if( iTrunk>mxPage || nSearch++ > n ){ rc = SQLITE_CORRUPT_PGNO(pPrevTrunk ? pPrevTrunk->pgno : 1); }else{ rc = btreeGetUnusedPage(pBt, iTrunk, &pTrunk, 0); } if( rc ){ pTrunk = 0; goto end_allocate_page; } assert( pTrunk!=0 ); assert( pTrunk->aData!=0 ); /* EVIDENCE-OF: R-13523-04394 The second integer on a freelist trunk page ** is the number of leaf page pointers to follow. */ k = get4byte(&pTrunk->aData[4]); if( k==0 && !searchList ){ /* The trunk has no leaves and the list is not being searched. ** So extract the trunk page itself and use it as the newly ** allocated page */ assert( pPrevTrunk==0 ); rc = sqlite3PagerWrite(pTrunk->pDbPage); if( rc ){ goto end_allocate_page; } *pPgno = iTrunk; memcpy(&pPage1->aData[32], &pTrunk->aData[0], 4); *ppPage = pTrunk; pTrunk = 0; TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1)); }else if( k>(u32)(pBt->usableSize/4 - 2) ){ /* Value of k is out of range. Database corruption */ rc = SQLITE_CORRUPT_PGNO(iTrunk); goto end_allocate_page; #ifndef SQLITE_OMIT_AUTOVACUUM }else if( searchList && (nearby==iTrunk || (iTrunkpDbPage); if( rc ){ goto end_allocate_page; } if( k==0 ){ if( !pPrevTrunk ){ memcpy(&pPage1->aData[32], &pTrunk->aData[0], 4); }else{ rc = sqlite3PagerWrite(pPrevTrunk->pDbPage); if( rc!=SQLITE_OK ){ goto end_allocate_page; } memcpy(&pPrevTrunk->aData[0], &pTrunk->aData[0], 4); } }else{ /* The trunk page is required by the caller but it contains ** pointers to free-list leaves. The first leaf becomes a trunk ** page in this case. */ MemPage *pNewTrunk; Pgno iNewTrunk = get4byte(&pTrunk->aData[8]); if( iNewTrunk>mxPage ){ rc = SQLITE_CORRUPT_PGNO(iTrunk); goto end_allocate_page; } testcase( iNewTrunk==mxPage ); rc = btreeGetUnusedPage(pBt, iNewTrunk, &pNewTrunk, 0); if( rc!=SQLITE_OK ){ goto end_allocate_page; } rc = sqlite3PagerWrite(pNewTrunk->pDbPage); if( rc!=SQLITE_OK ){ releasePage(pNewTrunk); goto end_allocate_page; } memcpy(&pNewTrunk->aData[0], &pTrunk->aData[0], 4); put4byte(&pNewTrunk->aData[4], k-1); memcpy(&pNewTrunk->aData[8], &pTrunk->aData[12], (k-1)*4); releasePage(pNewTrunk); if( !pPrevTrunk ){ assert( sqlite3PagerIswriteable(pPage1->pDbPage) ); put4byte(&pPage1->aData[32], iNewTrunk); }else{ rc = sqlite3PagerWrite(pPrevTrunk->pDbPage); if( rc ){ goto end_allocate_page; } put4byte(&pPrevTrunk->aData[0], iNewTrunk); } } pTrunk = 0; TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1)); #endif }else if( k>0 ){ /* Extract a leaf from the trunk */ u32 closest; Pgno iPage; unsigned char *aData = pTrunk->aData; if( nearby>0 ){ u32 i; closest = 0; if( eMode==BTALLOC_LE ){ for(i=0; imxPage || iPage<2 ){ rc = SQLITE_CORRUPT_PGNO(iTrunk); goto end_allocate_page; } testcase( iPage==mxPage ); if( !searchList || (iPage==nearby || (iPagepgno, n-1)); rc = sqlite3PagerWrite(pTrunk->pDbPage); if( rc ) goto end_allocate_page; if( closestpDbPage); if( rc!=SQLITE_OK ){ releasePage(*ppPage); *ppPage = 0; } } searchList = 0; } } releasePage(pPrevTrunk); pPrevTrunk = 0; }while( searchList ); }else{ /* There are no pages on the freelist, so append a new page to the ** database image. ** ** Normally, new pages allocated by this block can be requested from the ** pager layer with the 'no-content' flag set. This prevents the pager ** from trying to read the pages content from disk. However, if the ** current transaction has already run one or more incremental-vacuum ** steps, then the page we are about to allocate may contain content ** that is required in the event of a rollback. In this case, do ** not set the no-content flag. This causes the pager to load and journal ** the current page content before overwriting it. ** ** Note that the pager will not actually attempt to load or journal ** content for any page that really does lie past the end of the database ** file on disk. So the effects of disabling the no-content optimization ** here are confined to those pages that lie between the end of the ** database image and the end of the database file. */ int bNoContent = (0==IfNotOmitAV(pBt->bDoTruncate))? PAGER_GET_NOCONTENT:0; rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( rc ) return rc; pBt->nPage++; if( pBt->nPage==PENDING_BYTE_PAGE(pBt) ) pBt->nPage++; #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum && PTRMAP_ISPAGE(pBt, pBt->nPage) ){ /* If *pPgno refers to a pointer-map page, allocate two new pages ** at the end of the file instead of one. The first allocated page ** becomes a new pointer-map page, the second is used by the caller. */ MemPage *pPg = 0; TRACE(("ALLOCATE: %d from end of file (pointer-map page)\n", pBt->nPage)); assert( pBt->nPage!=PENDING_BYTE_PAGE(pBt) ); rc = btreeGetUnusedPage(pBt, pBt->nPage, &pPg, bNoContent); if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pPg->pDbPage); releasePage(pPg); } if( rc ) return rc; pBt->nPage++; if( pBt->nPage==PENDING_BYTE_PAGE(pBt) ){ pBt->nPage++; } } #endif put4byte(28 + (u8*)pBt->pPage1->aData, pBt->nPage); *pPgno = pBt->nPage; assert( *pPgno!=PENDING_BYTE_PAGE(pBt) ); rc = btreeGetUnusedPage(pBt, *pPgno, ppPage, bNoContent); if( rc ) return rc; rc = sqlite3PagerWrite((*ppPage)->pDbPage); if( rc!=SQLITE_OK ){ releasePage(*ppPage); *ppPage = 0; } TRACE(("ALLOCATE: %d from end of file\n", *pPgno)); } assert( CORRUPT_DB || *pPgno!=PENDING_BYTE_PAGE(pBt) ); end_allocate_page: releasePage(pTrunk); releasePage(pPrevTrunk); assert( rc!=SQLITE_OK || sqlite3PagerPageRefcount((*ppPage)->pDbPage)<=1 ); assert( rc!=SQLITE_OK || (*ppPage)->isInit==0 ); return rc; } /* ** This function is used to add page iPage to the database file free-list. ** It is assumed that the page is not already a part of the free-list. ** ** The value passed as the second argument to this function is optional. ** If the caller happens to have a pointer to the MemPage object ** corresponding to page iPage handy, it may pass it as the second value. ** Otherwise, it may pass NULL. ** ** If a pointer to a MemPage object is passed as the second argument, ** its reference count is not altered by this function. */ static int freePage2(BtShared *pBt, MemPage *pMemPage, Pgno iPage){ MemPage *pTrunk = 0; /* Free-list trunk page */ Pgno iTrunk = 0; /* Page number of free-list trunk page */ MemPage *pPage1 = pBt->pPage1; /* Local reference to page 1 */ MemPage *pPage; /* Page being freed. May be NULL. */ int rc; /* Return Code */ u32 nFree; /* Initial number of pages on free-list */ assert( sqlite3_mutex_held(pBt->mutex) ); assert( CORRUPT_DB || iPage>1 ); assert( !pMemPage || pMemPage->pgno==iPage ); if( iPage<2 || iPage>pBt->nPage ){ return SQLITE_CORRUPT_BKPT; } if( pMemPage ){ pPage = pMemPage; sqlite3PagerRef(pPage->pDbPage); }else{ pPage = btreePageLookup(pBt, iPage); } /* Increment the free page count on pPage1 */ rc = sqlite3PagerWrite(pPage1->pDbPage); if( rc ) goto freepage_out; nFree = get4byte(&pPage1->aData[36]); put4byte(&pPage1->aData[36], nFree+1); if( pBt->btsFlags & BTS_SECURE_DELETE ){ /* If the secure_delete option is enabled, then ** always fully overwrite deleted information with zeros. */ if( (!pPage && ((rc = btreeGetPage(pBt, iPage, &pPage, 0))!=0) ) || ((rc = sqlite3PagerWrite(pPage->pDbPage))!=0) ){ goto freepage_out; } memset(pPage->aData, 0, pPage->pBt->pageSize); } /* If the database supports auto-vacuum, write an entry in the pointer-map ** to indicate that the page is free. */ if( ISAUTOVACUUM ){ ptrmapPut(pBt, iPage, PTRMAP_FREEPAGE, 0, &rc); if( rc ) goto freepage_out; } /* Now manipulate the actual database free-list structure. There are two ** possibilities. If the free-list is currently empty, or if the first ** trunk page in the free-list is full, then this page will become a ** new free-list trunk page. Otherwise, it will become a leaf of the ** first trunk page in the current free-list. This block tests if it ** is possible to add the page as a new free-list leaf. */ if( nFree!=0 ){ u32 nLeaf; /* Initial number of leaf cells on trunk page */ iTrunk = get4byte(&pPage1->aData[32]); if( iTrunk>btreePagecount(pBt) ){ rc = SQLITE_CORRUPT_BKPT; goto freepage_out; } rc = btreeGetPage(pBt, iTrunk, &pTrunk, 0); if( rc!=SQLITE_OK ){ goto freepage_out; } nLeaf = get4byte(&pTrunk->aData[4]); assert( pBt->usableSize>32 ); if( nLeaf > (u32)pBt->usableSize/4 - 2 ){ rc = SQLITE_CORRUPT_BKPT; goto freepage_out; } if( nLeaf < (u32)pBt->usableSize/4 - 8 ){ /* In this case there is room on the trunk page to insert the page ** being freed as a new leaf. ** ** Note that the trunk page is not really full until it contains ** usableSize/4 - 2 entries, not usableSize/4 - 8 entries as we have ** coded. But due to a coding error in versions of SQLite prior to ** 3.6.0, databases with freelist trunk pages holding more than ** usableSize/4 - 8 entries will be reported as corrupt. In order ** to maintain backwards compatibility with older versions of SQLite, ** we will continue to restrict the number of entries to usableSize/4 - 8 ** for now. At some point in the future (once everyone has upgraded ** to 3.6.0 or later) we should consider fixing the conditional above ** to read "usableSize/4-2" instead of "usableSize/4-8". ** ** EVIDENCE-OF: R-19920-11576 However, newer versions of SQLite still ** avoid using the last six entries in the freelist trunk page array in ** order that database files created by newer versions of SQLite can be ** read by older versions of SQLite. */ rc = sqlite3PagerWrite(pTrunk->pDbPage); if( rc==SQLITE_OK ){ put4byte(&pTrunk->aData[4], nLeaf+1); put4byte(&pTrunk->aData[8+nLeaf*4], iPage); if( pPage && (pBt->btsFlags & BTS_SECURE_DELETE)==0 ){ sqlite3PagerDontWrite(pPage->pDbPage); } rc = btreeSetHasContent(pBt, iPage); } TRACE(("FREE-PAGE: %d leaf on trunk page %d\n",pPage->pgno,pTrunk->pgno)); goto freepage_out; } } /* If control flows to this point, then it was not possible to add the ** the page being freed as a leaf page of the first trunk in the free-list. ** Possibly because the free-list is empty, or possibly because the ** first trunk in the free-list is full. Either way, the page being freed ** will become the new first trunk page in the free-list. */ if( pPage==0 && SQLITE_OK!=(rc = btreeGetPage(pBt, iPage, &pPage, 0)) ){ goto freepage_out; } rc = sqlite3PagerWrite(pPage->pDbPage); if( rc!=SQLITE_OK ){ goto freepage_out; } put4byte(pPage->aData, iTrunk); put4byte(&pPage->aData[4], 0); put4byte(&pPage1->aData[32], iPage); TRACE(("FREE-PAGE: %d new trunk page replacing %d\n", pPage->pgno, iTrunk)); freepage_out: if( pPage ){ pPage->isInit = 0; } releasePage(pPage); releasePage(pTrunk); return rc; } static void freePage(MemPage *pPage, int *pRC){ if( (*pRC)==SQLITE_OK ){ *pRC = freePage2(pPage->pBt, pPage, pPage->pgno); } } /* ** Free the overflow pages associated with the given Cell. */ static SQLITE_NOINLINE int clearCellOverflow( MemPage *pPage, /* The page that contains the Cell */ unsigned char *pCell, /* First byte of the Cell */ CellInfo *pInfo /* Size information about the cell */ ){ BtShared *pBt; Pgno ovflPgno; int rc; int nOvfl; u32 ovflPageSize; assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pInfo->nLocal!=pInfo->nPayload ); testcase( pCell + pInfo->nSize == pPage->aDataEnd ); testcase( pCell + (pInfo->nSize-1) == pPage->aDataEnd ); if( pCell + pInfo->nSize > pPage->aDataEnd ){ /* Cell extends past end of page */ return SQLITE_CORRUPT_PAGE(pPage); } ovflPgno = get4byte(pCell + pInfo->nSize - 4); pBt = pPage->pBt; assert( pBt->usableSize > 4 ); ovflPageSize = pBt->usableSize - 4; nOvfl = (pInfo->nPayload - pInfo->nLocal + ovflPageSize - 1)/ovflPageSize; assert( nOvfl>0 || (CORRUPT_DB && (pInfo->nPayload + ovflPageSize)btreePagecount(pBt) ){ /* 0 is not a legal page number and page 1 cannot be an ** overflow page. Therefore if ovflPgno<2 or past the end of the ** file the database must be corrupt. */ return SQLITE_CORRUPT_BKPT; } if( nOvfl ){ rc = getOverflowPage(pBt, ovflPgno, &pOvfl, &iNext); if( rc ) return rc; } if( ( pOvfl || ((pOvfl = btreePageLookup(pBt, ovflPgno))!=0) ) && sqlite3PagerPageRefcount(pOvfl->pDbPage)!=1 ){ /* There is no reason any cursor should have an outstanding reference ** to an overflow page belonging to a cell that is being deleted/updated. ** So if there exists more than one reference to this page, then it ** must not really be an overflow page and the database must be corrupt. ** It is helpful to detect this before calling freePage2(), as ** freePage2() may zero the page contents if secure-delete mode is ** enabled. If this 'overflow' page happens to be a page that the ** caller is iterating through or using in some other way, this ** can be problematic. */ rc = SQLITE_CORRUPT_BKPT; }else{ rc = freePage2(pBt, pOvfl, ovflPgno); } if( pOvfl ){ sqlite3PagerUnref(pOvfl->pDbPage); } if( rc ) return rc; ovflPgno = iNext; } return SQLITE_OK; } /* Call xParseCell to compute the size of a cell. If the cell contains ** overflow, then invoke cellClearOverflow to clear out that overflow. ** STore the result code (SQLITE_OK or some error code) in rc. ** ** Implemented as macro to force inlining for performance. */ #define BTREE_CLEAR_CELL(rc, pPage, pCell, sInfo) \ pPage->xParseCell(pPage, pCell, &sInfo); \ if( sInfo.nLocal!=sInfo.nPayload ){ \ rc = clearCellOverflow(pPage, pCell, &sInfo); \ }else{ \ rc = SQLITE_OK; \ } /* ** Create the byte sequence used to represent a cell on page pPage ** and write that byte sequence into pCell[]. Overflow pages are ** allocated and filled in as necessary. The calling procedure ** is responsible for making sure sufficient space has been allocated ** for pCell[]. ** ** Note that pCell does not necessary need to point to the pPage->aData ** area. pCell might point to some temporary storage. The cell will ** be constructed in this temporary area then copied into pPage->aData ** later. */ static int fillInCell( MemPage *pPage, /* The page that contains the cell */ unsigned char *pCell, /* Complete text of the cell */ const BtreePayload *pX, /* Payload with which to construct the cell */ int *pnSize /* Write cell size here */ ){ int nPayload; const u8 *pSrc; int nSrc, n, rc, mn; int spaceLeft; MemPage *pToRelease; unsigned char *pPrior; unsigned char *pPayload; BtShared *pBt; Pgno pgnoOvfl; int nHeader; assert( sqlite3_mutex_held(pPage->pBt->mutex) ); /* pPage is not necessarily writeable since pCell might be auxiliary ** buffer space that is separate from the pPage buffer area */ assert( pCellaData || pCell>=&pPage->aData[pPage->pBt->pageSize] || sqlite3PagerIswriteable(pPage->pDbPage) ); /* Fill in the header. */ nHeader = pPage->childPtrSize; if( pPage->intKey ){ nPayload = pX->nData + pX->nZero; pSrc = pX->pData; nSrc = pX->nData; assert( pPage->intKeyLeaf ); /* fillInCell() only called for leaves */ nHeader += putVarint32(&pCell[nHeader], nPayload); nHeader += putVarint(&pCell[nHeader], *(u64*)&pX->nKey); }else{ assert( pX->nKey<=0x7fffffff && pX->pKey!=0 ); nSrc = nPayload = (int)pX->nKey; pSrc = pX->pKey; nHeader += putVarint32(&pCell[nHeader], nPayload); } /* Fill in the payload */ pPayload = &pCell[nHeader]; if( nPayload<=pPage->maxLocal ){ /* This is the common case where everything fits on the btree page ** and no overflow pages are required. */ n = nHeader + nPayload; testcase( n==3 ); testcase( n==4 ); if( n<4 ) n = 4; *pnSize = n; assert( nSrc<=nPayload ); testcase( nSrcminLocal; n = mn + (nPayload - mn) % (pPage->pBt->usableSize - 4); testcase( n==pPage->maxLocal ); testcase( n==pPage->maxLocal+1 ); if( n > pPage->maxLocal ) n = mn; spaceLeft = n; *pnSize = n + nHeader + 4; pPrior = &pCell[nHeader+n]; pToRelease = 0; pgnoOvfl = 0; pBt = pPage->pBt; /* At this point variables should be set as follows: ** ** nPayload Total payload size in bytes ** pPayload Begin writing payload here ** spaceLeft Space available at pPayload. If nPayload>spaceLeft, ** that means content must spill into overflow pages. ** *pnSize Size of the local cell (not counting overflow pages) ** pPrior Where to write the pgno of the first overflow page ** ** Use a call to btreeParseCellPtr() to verify that the values above ** were computed correctly. */ #ifdef SQLITE_DEBUG { CellInfo info; pPage->xParseCell(pPage, pCell, &info); assert( nHeader==(int)(info.pPayload - pCell) ); assert( info.nKey==pX->nKey ); assert( *pnSize == info.nSize ); assert( spaceLeft == info.nLocal ); } #endif /* Write the payload into the local Cell and any extra into overflow pages */ while( 1 ){ n = nPayload; if( n>spaceLeft ) n = spaceLeft; /* If pToRelease is not zero than pPayload points into the data area ** of pToRelease. Make sure pToRelease is still writeable. */ assert( pToRelease==0 || sqlite3PagerIswriteable(pToRelease->pDbPage) ); /* If pPayload is part of the data area of pPage, then make sure pPage ** is still writeable */ assert( pPayloadaData || pPayload>=&pPage->aData[pBt->pageSize] || sqlite3PagerIswriteable(pPage->pDbPage) ); if( nSrc>=n ){ memcpy(pPayload, pSrc, n); }else if( nSrc>0 ){ n = nSrc; memcpy(pPayload, pSrc, n); }else{ memset(pPayload, 0, n); } nPayload -= n; if( nPayload<=0 ) break; pPayload += n; pSrc += n; nSrc -= n; spaceLeft -= n; if( spaceLeft==0 ){ MemPage *pOvfl = 0; #ifndef SQLITE_OMIT_AUTOVACUUM Pgno pgnoPtrmap = pgnoOvfl; /* Overflow page pointer-map entry page */ if( pBt->autoVacuum ){ do{ pgnoOvfl++; } while( PTRMAP_ISPAGE(pBt, pgnoOvfl) || pgnoOvfl==PENDING_BYTE_PAGE(pBt) ); } #endif rc = allocateBtreePage(pBt, &pOvfl, &pgnoOvfl, pgnoOvfl, 0); #ifndef SQLITE_OMIT_AUTOVACUUM /* If the database supports auto-vacuum, and the second or subsequent ** overflow page is being allocated, add an entry to the pointer-map ** for that page now. ** ** If this is the first overflow page, then write a partial entry ** to the pointer-map. If we write nothing to this pointer-map slot, ** then the optimistic overflow chain processing in clearCell() ** may misinterpret the uninitialized values and delete the ** wrong pages from the database. */ if( pBt->autoVacuum && rc==SQLITE_OK ){ u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); ptrmapPut(pBt, pgnoOvfl, eType, pgnoPtrmap, &rc); if( rc ){ releasePage(pOvfl); } } #endif if( rc ){ releasePage(pToRelease); return rc; } /* If pToRelease is not zero than pPrior points into the data area ** of pToRelease. Make sure pToRelease is still writeable. */ assert( pToRelease==0 || sqlite3PagerIswriteable(pToRelease->pDbPage) ); /* If pPrior is part of the data area of pPage, then make sure pPage ** is still writeable */ assert( pPrioraData || pPrior>=&pPage->aData[pBt->pageSize] || sqlite3PagerIswriteable(pPage->pDbPage) ); put4byte(pPrior, pgnoOvfl); releasePage(pToRelease); pToRelease = pOvfl; pPrior = pOvfl->aData; put4byte(pPrior, 0); pPayload = &pOvfl->aData[4]; spaceLeft = pBt->usableSize - 4; } } releasePage(pToRelease); return SQLITE_OK; } /* ** Remove the i-th cell from pPage. This routine effects pPage only. ** The cell content is not freed or deallocated. It is assumed that ** the cell content has been copied someplace else. This routine just ** removes the reference to the cell from pPage. ** ** "sz" must be the number of bytes in the cell. */ static void dropCell(MemPage *pPage, int idx, int sz, int *pRC){ u32 pc; /* Offset to cell content of cell being deleted */ u8 *data; /* pPage->aData */ u8 *ptr; /* Used to move bytes around within data[] */ int rc; /* The return code */ int hdr; /* Beginning of the header. 0 most pages. 100 page 1 */ if( *pRC ) return; assert( idx>=0 ); assert( idxnCell ); assert( CORRUPT_DB || sz==cellSize(pPage, idx) ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->nFree>=0 ); data = pPage->aData; ptr = &pPage->aCellIdx[2*idx]; assert( pPage->pBt->usableSize > (u32)(ptr-data) ); pc = get2byte(ptr); hdr = pPage->hdrOffset; #if 0 /* Not required. Omit for efficiency */ if( pcnCell*2 ){ *pRC = SQLITE_CORRUPT_BKPT; return; } #endif testcase( pc==(u32)get2byte(&data[hdr+5]) ); testcase( pc+sz==pPage->pBt->usableSize ); if( pc+sz > pPage->pBt->usableSize ){ *pRC = SQLITE_CORRUPT_BKPT; return; } rc = freeSpace(pPage, pc, sz); if( rc ){ *pRC = rc; return; } pPage->nCell--; if( pPage->nCell==0 ){ memset(&data[hdr+1], 0, 4); data[hdr+7] = 0; put2byte(&data[hdr+5], pPage->pBt->usableSize); pPage->nFree = pPage->pBt->usableSize - pPage->hdrOffset - pPage->childPtrSize - 8; }else{ memmove(ptr, ptr+2, 2*(pPage->nCell - idx)); put2byte(&data[hdr+3], pPage->nCell); pPage->nFree += 2; } } /* ** Insert a new cell on pPage at cell index "i". pCell points to the ** content of the cell. ** ** If the cell content will fit on the page, then put it there. If it ** will not fit, then make a copy of the cell content into pTemp if ** pTemp is not null. Regardless of pTemp, allocate a new entry ** in pPage->apOvfl[] and make it point to the cell content (either ** in pTemp or the original pCell) and also record its index. ** Allocating a new entry in pPage->aCell[] implies that ** pPage->nOverflow is incremented. ** ** *pRC must be SQLITE_OK when this routine is called. */ static void insertCell( MemPage *pPage, /* Page into which we are copying */ int i, /* New cell becomes the i-th cell of the page */ u8 *pCell, /* Content of the new cell */ int sz, /* Bytes of content in pCell */ u8 *pTemp, /* Temp storage space for pCell, if needed */ Pgno iChild, /* If non-zero, replace first 4 bytes with this value */ int *pRC /* Read and write return code from here */ ){ int idx = 0; /* Where to write new cell content in data[] */ int j; /* Loop counter */ u8 *data; /* The content of the whole page */ u8 *pIns; /* The point in pPage->aCellIdx[] where no cell inserted */ assert( *pRC==SQLITE_OK ); assert( i>=0 && i<=pPage->nCell+pPage->nOverflow ); assert( MX_CELL(pPage->pBt)<=10921 ); assert( pPage->nCell<=MX_CELL(pPage->pBt) || CORRUPT_DB ); assert( pPage->nOverflow<=ArraySize(pPage->apOvfl) ); assert( ArraySize(pPage->apOvfl)==ArraySize(pPage->aiOvfl) ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( sz==pPage->xCellSize(pPage, pCell) || CORRUPT_DB ); assert( pPage->nFree>=0 ); if( pPage->nOverflow || sz+2>pPage->nFree ){ if( pTemp ){ memcpy(pTemp, pCell, sz); pCell = pTemp; } if( iChild ){ put4byte(pCell, iChild); } j = pPage->nOverflow++; /* Comparison against ArraySize-1 since we hold back one extra slot ** as a contingency. In other words, never need more than 3 overflow ** slots but 4 are allocated, just to be safe. */ assert( j < ArraySize(pPage->apOvfl)-1 ); pPage->apOvfl[j] = pCell; pPage->aiOvfl[j] = (u16)i; /* When multiple overflows occur, they are always sequential and in ** sorted order. This invariants arise because multiple overflows can ** only occur when inserting divider cells into the parent page during ** balancing, and the dividers are adjacent and sorted. */ assert( j==0 || pPage->aiOvfl[j-1]<(u16)i ); /* Overflows in sorted order */ assert( j==0 || i==pPage->aiOvfl[j-1]+1 ); /* Overflows are sequential */ }else{ int rc = sqlite3PagerWrite(pPage->pDbPage); if( rc!=SQLITE_OK ){ *pRC = rc; return; } assert( sqlite3PagerIswriteable(pPage->pDbPage) ); data = pPage->aData; assert( &data[pPage->cellOffset]==pPage->aCellIdx ); rc = allocateSpace(pPage, sz, &idx); if( rc ){ *pRC = rc; return; } /* The allocateSpace() routine guarantees the following properties ** if it returns successfully */ assert( idx >= 0 ); assert( idx >= pPage->cellOffset+2*pPage->nCell+2 || CORRUPT_DB ); assert( idx+sz <= (int)pPage->pBt->usableSize ); pPage->nFree -= (u16)(2 + sz); if( iChild ){ /* In a corrupt database where an entry in the cell index section of ** a btree page has a value of 3 or less, the pCell value might point ** as many as 4 bytes in front of the start of the aData buffer for ** the source page. Make sure this does not cause problems by not ** reading the first 4 bytes */ memcpy(&data[idx+4], pCell+4, sz-4); put4byte(&data[idx], iChild); }else{ memcpy(&data[idx], pCell, sz); } pIns = pPage->aCellIdx + i*2; memmove(pIns+2, pIns, 2*(pPage->nCell - i)); put2byte(pIns, idx); pPage->nCell++; /* increment the cell count */ if( (++data[pPage->hdrOffset+4])==0 ) data[pPage->hdrOffset+3]++; assert( get2byte(&data[pPage->hdrOffset+3])==pPage->nCell || CORRUPT_DB ); #ifndef SQLITE_OMIT_AUTOVACUUM if( pPage->pBt->autoVacuum ){ /* The cell may contain a pointer to an overflow page. If so, write ** the entry for the overflow page into the pointer map. */ ptrmapPutOvflPtr(pPage, pPage, pCell, pRC); } #endif } } /* ** The following parameters determine how many adjacent pages get involved ** in a balancing operation. NN is the number of neighbors on either side ** of the page that participate in the balancing operation. NB is the ** total number of pages that participate, including the target page and ** NN neighbors on either side. ** ** The minimum value of NN is 1 (of course). Increasing NN above 1 ** (to 2 or 3) gives a modest improvement in SELECT and DELETE performance ** in exchange for a larger degradation in INSERT and UPDATE performance. ** The value of NN appears to give the best results overall. ** ** (Later:) The description above makes it seem as if these values are ** tunable - as if you could change them and recompile and it would all work. ** But that is unlikely. NB has been 3 since the inception of SQLite and ** we have never tested any other value. */ #define NN 1 /* Number of neighbors on either side of pPage */ #define NB 3 /* (NN*2+1): Total pages involved in the balance */ /* ** A CellArray object contains a cache of pointers and sizes for a ** consecutive sequence of cells that might be held on multiple pages. ** ** The cells in this array are the divider cell or cells from the pParent ** page plus up to three child pages. There are a total of nCell cells. ** ** pRef is a pointer to one of the pages that contributes cells. This is ** used to access information such as MemPage.intKey and MemPage.pBt->pageSize ** which should be common to all pages that contribute cells to this array. ** ** apCell[] and szCell[] hold, respectively, pointers to the start of each ** cell and the size of each cell. Some of the apCell[] pointers might refer ** to overflow cells. In other words, some apCel[] pointers might not point ** to content area of the pages. ** ** A szCell[] of zero means the size of that cell has not yet been computed. ** ** The cells come from as many as four different pages: ** ** ----------- ** | Parent | ** ----------- ** / | \ ** / | \ ** --------- --------- --------- ** |Child-1| |Child-2| |Child-3| ** --------- --------- --------- ** ** The order of cells is in the array is for an index btree is: ** ** 1. All cells from Child-1 in order ** 2. The first divider cell from Parent ** 3. All cells from Child-2 in order ** 4. The second divider cell from Parent ** 5. All cells from Child-3 in order ** ** For a table-btree (with rowids) the items 2 and 4 are empty because ** content exists only in leaves and there are no divider cells. ** ** For an index btree, the apEnd[] array holds pointer to the end of page ** for Child-1, the Parent, Child-2, the Parent (again), and Child-3, ** respectively. The ixNx[] array holds the number of cells contained in ** each of these 5 stages, and all stages to the left. Hence: ** ** ixNx[0] = Number of cells in Child-1. ** ixNx[1] = Number of cells in Child-1 plus 1 for first divider. ** ixNx[2] = Number of cells in Child-1 and Child-2 + 1 for 1st divider. ** ixNx[3] = Number of cells in Child-1 and Child-2 + both divider cells ** ixNx[4] = Total number of cells. ** ** For a table-btree, the concept is similar, except only apEnd[0]..apEnd[2] ** are used and they point to the leaf pages only, and the ixNx value are: ** ** ixNx[0] = Number of cells in Child-1. ** ixNx[1] = Number of cells in Child-1 and Child-2. ** ixNx[2] = Total number of cells. ** ** Sometimes when deleting, a child page can have zero cells. In those ** cases, ixNx[] entries with higher indexes, and the corresponding apEnd[] ** entries, shift down. The end result is that each ixNx[] entry should ** be larger than the previous */ typedef struct CellArray CellArray; struct CellArray { int nCell; /* Number of cells in apCell[] */ MemPage *pRef; /* Reference page */ u8 **apCell; /* All cells begin balanced */ u16 *szCell; /* Local size of all cells in apCell[] */ u8 *apEnd[NB*2]; /* MemPage.aDataEnd values */ int ixNx[NB*2]; /* Index of at which we move to the next apEnd[] */ }; /* ** Make sure the cell sizes at idx, idx+1, ..., idx+N-1 have been ** computed. */ static void populateCellCache(CellArray *p, int idx, int N){ assert( idx>=0 && idx+N<=p->nCell ); while( N>0 ){ assert( p->apCell[idx]!=0 ); if( p->szCell[idx]==0 ){ p->szCell[idx] = p->pRef->xCellSize(p->pRef, p->apCell[idx]); }else{ assert( CORRUPT_DB || p->szCell[idx]==p->pRef->xCellSize(p->pRef, p->apCell[idx]) ); } idx++; N--; } } /* ** Return the size of the Nth element of the cell array */ static SQLITE_NOINLINE u16 computeCellSize(CellArray *p, int N){ assert( N>=0 && NnCell ); assert( p->szCell[N]==0 ); p->szCell[N] = p->pRef->xCellSize(p->pRef, p->apCell[N]); return p->szCell[N]; } static u16 cachedCellSize(CellArray *p, int N){ assert( N>=0 && NnCell ); if( p->szCell[N] ) return p->szCell[N]; return computeCellSize(p, N); } /* ** Array apCell[] contains pointers to nCell b-tree page cells. The ** szCell[] array contains the size in bytes of each cell. This function ** replaces the current contents of page pPg with the contents of the cell ** array. ** ** Some of the cells in apCell[] may currently be stored in pPg. This ** function works around problems caused by this by making a copy of any ** such cells before overwriting the page data. ** ** The MemPage.nFree field is invalidated by this function. It is the ** responsibility of the caller to set it correctly. */ static int rebuildPage( CellArray *pCArray, /* Content to be added to page pPg */ int iFirst, /* First cell in pCArray to use */ int nCell, /* Final number of cells on page */ MemPage *pPg /* The page to be reconstructed */ ){ const int hdr = pPg->hdrOffset; /* Offset of header on pPg */ u8 * const aData = pPg->aData; /* Pointer to data for pPg */ const int usableSize = pPg->pBt->usableSize; u8 * const pEnd = &aData[usableSize]; int i = iFirst; /* Which cell to copy from pCArray*/ u32 j; /* Start of cell content area */ int iEnd = i+nCell; /* Loop terminator */ u8 *pCellptr = pPg->aCellIdx; u8 *pTmp = sqlite3PagerTempSpace(pPg->pBt->pPager); u8 *pData; int k; /* Current slot in pCArray->apEnd[] */ u8 *pSrcEnd; /* Current pCArray->apEnd[k] value */ assert( i(u32)usableSize ){ j = 0; } memcpy(&pTmp[j], &aData[j], usableSize - j); for(k=0; pCArray->ixNx[k]<=i && ALWAYS(kapEnd[k]; pData = pEnd; while( 1/*exit by break*/ ){ u8 *pCell = pCArray->apCell[i]; u16 sz = pCArray->szCell[i]; assert( sz>0 ); if( SQLITE_WITHIN(pCell,aData+j,pEnd) ){ if( ((uptr)(pCell+sz))>(uptr)pEnd ) return SQLITE_CORRUPT_BKPT; pCell = &pTmp[pCell - aData]; }else if( (uptr)(pCell+sz)>(uptr)pSrcEnd && (uptr)(pCell)<(uptr)pSrcEnd ){ return SQLITE_CORRUPT_BKPT; } pData -= sz; put2byte(pCellptr, (pData - aData)); pCellptr += 2; if( pData < pCellptr ) return SQLITE_CORRUPT_BKPT; memmove(pData, pCell, sz); assert( sz==pPg->xCellSize(pPg, pCell) || CORRUPT_DB ); i++; if( i>=iEnd ) break; if( pCArray->ixNx[k]<=i ){ k++; pSrcEnd = pCArray->apEnd[k]; } } /* The pPg->nFree field is now set incorrectly. The caller will fix it. */ pPg->nCell = nCell; pPg->nOverflow = 0; put2byte(&aData[hdr+1], 0); put2byte(&aData[hdr+3], pPg->nCell); put2byte(&aData[hdr+5], pData - aData); aData[hdr+7] = 0x00; return SQLITE_OK; } /* ** The pCArray objects contains pointers to b-tree cells and the cell sizes. ** This function attempts to add the cells stored in the array to page pPg. ** If it cannot (because the page needs to be defragmented before the cells ** will fit), non-zero is returned. Otherwise, if the cells are added ** successfully, zero is returned. ** ** Argument pCellptr points to the first entry in the cell-pointer array ** (part of page pPg) to populate. After cell apCell[0] is written to the ** page body, a 16-bit offset is written to pCellptr. And so on, for each ** cell in the array. It is the responsibility of the caller to ensure ** that it is safe to overwrite this part of the cell-pointer array. ** ** When this function is called, *ppData points to the start of the ** content area on page pPg. If the size of the content area is extended, ** *ppData is updated to point to the new start of the content area ** before returning. ** ** Finally, argument pBegin points to the byte immediately following the ** end of the space required by this page for the cell-pointer area (for ** all cells - not just those inserted by the current call). If the content ** area must be extended to before this point in order to accomodate all ** cells in apCell[], then the cells do not fit and non-zero is returned. */ static int pageInsertArray( MemPage *pPg, /* Page to add cells to */ u8 *pBegin, /* End of cell-pointer array */ u8 **ppData, /* IN/OUT: Page content-area pointer */ u8 *pCellptr, /* Pointer to cell-pointer area */ int iFirst, /* Index of first cell to add */ int nCell, /* Number of cells to add to pPg */ CellArray *pCArray /* Array of cells */ ){ int i = iFirst; /* Loop counter - cell index to insert */ u8 *aData = pPg->aData; /* Complete page */ u8 *pData = *ppData; /* Content area. A subset of aData[] */ int iEnd = iFirst + nCell; /* End of loop. One past last cell to ins */ int k; /* Current slot in pCArray->apEnd[] */ u8 *pEnd; /* Maximum extent of cell data */ assert( CORRUPT_DB || pPg->hdrOffset==0 ); /* Never called on page 1 */ if( iEnd<=iFirst ) return 0; for(k=0; pCArray->ixNx[k]<=i && ALWAYS(kapEnd[k]; while( 1 /*Exit by break*/ ){ int sz, rc; u8 *pSlot; assert( pCArray->szCell[i]!=0 ); sz = pCArray->szCell[i]; if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){ if( (pData - pBegin)apCell[i] will never overlap on a well-formed ** database. But they might for a corrupt database. Hence use memmove() ** since memcpy() sends SIGABORT with overlapping buffers on OpenBSD */ assert( (pSlot+sz)<=pCArray->apCell[i] || pSlot>=(pCArray->apCell[i]+sz) || CORRUPT_DB ); if( (uptr)(pCArray->apCell[i]+sz)>(uptr)pEnd && (uptr)(pCArray->apCell[i])<(uptr)pEnd ){ assert( CORRUPT_DB ); (void)SQLITE_CORRUPT_BKPT; return 1; } memmove(pSlot, pCArray->apCell[i], sz); put2byte(pCellptr, (pSlot - aData)); pCellptr += 2; i++; if( i>=iEnd ) break; if( pCArray->ixNx[k]<=i ){ k++; pEnd = pCArray->apEnd[k]; } } *ppData = pData; return 0; } /* ** The pCArray object contains pointers to b-tree cells and their sizes. ** ** This function adds the space associated with each cell in the array ** that is currently stored within the body of pPg to the pPg free-list. ** The cell-pointers and other fields of the page are not updated. ** ** This function returns the total number of cells added to the free-list. */ static int pageFreeArray( MemPage *pPg, /* Page to edit */ int iFirst, /* First cell to delete */ int nCell, /* Cells to delete */ CellArray *pCArray /* Array of cells */ ){ u8 * const aData = pPg->aData; u8 * const pEnd = &aData[pPg->pBt->usableSize]; u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize]; int nRet = 0; int i; int iEnd = iFirst + nCell; u8 *pFree = 0; int szFree = 0; for(i=iFirst; iapCell[i]; if( SQLITE_WITHIN(pCell, pStart, pEnd) ){ int sz; /* No need to use cachedCellSize() here. The sizes of all cells that ** are to be freed have already been computing while deciding which ** cells need freeing */ sz = pCArray->szCell[i]; assert( sz>0 ); if( pFree!=(pCell + sz) ){ if( pFree ){ assert( pFree>aData && (pFree - aData)<65536 ); freeSpace(pPg, (u16)(pFree - aData), szFree); } pFree = pCell; szFree = sz; if( pFree+sz>pEnd ){ return 0; } }else{ pFree = pCell; szFree += sz; } nRet++; } } if( pFree ){ assert( pFree>aData && (pFree - aData)<65536 ); freeSpace(pPg, (u16)(pFree - aData), szFree); } return nRet; } /* ** pCArray contains pointers to and sizes of all cells in the page being ** balanced. The current page, pPg, has pPg->nCell cells starting with ** pCArray->apCell[iOld]. After balancing, this page should hold nNew cells ** starting at apCell[iNew]. ** ** This routine makes the necessary adjustments to pPg so that it contains ** the correct cells after being balanced. ** ** The pPg->nFree field is invalid when this function returns. It is the ** responsibility of the caller to set it correctly. */ static int editPage( MemPage *pPg, /* Edit this page */ int iOld, /* Index of first cell currently on page */ int iNew, /* Index of new first cell on page */ int nNew, /* Final number of cells on page */ CellArray *pCArray /* Array of cells and sizes */ ){ u8 * const aData = pPg->aData; const int hdr = pPg->hdrOffset; u8 *pBegin = &pPg->aCellIdx[nNew * 2]; int nCell = pPg->nCell; /* Cells stored on pPg */ u8 *pData; u8 *pCellptr; int i; int iOldEnd = iOld + pPg->nCell + pPg->nOverflow; int iNewEnd = iNew + nNew; #ifdef SQLITE_DEBUG u8 *pTmp = sqlite3PagerTempSpace(pPg->pBt->pPager); memcpy(pTmp, aData, pPg->pBt->usableSize); #endif /* Remove cells from the start and end of the page */ assert( nCell>=0 ); if( iOldnCell) ) return SQLITE_CORRUPT_BKPT; memmove(pPg->aCellIdx, &pPg->aCellIdx[nShift*2], nCell*2); nCell -= nShift; } if( iNewEnd < iOldEnd ){ int nTail = pageFreeArray(pPg, iNewEnd, iOldEnd - iNewEnd, pCArray); assert( nCell>=nTail ); nCell -= nTail; } pData = &aData[get2byteNotZero(&aData[hdr+5])]; if( pDatapPg->aDataEnd ) goto editpage_fail; /* Add cells to the start of the page */ if( iNew=0 ); pCellptr = pPg->aCellIdx; memmove(&pCellptr[nAdd*2], pCellptr, nCell*2); if( pageInsertArray( pPg, pBegin, &pData, pCellptr, iNew, nAdd, pCArray ) ) goto editpage_fail; nCell += nAdd; } /* Add any overflow cells */ for(i=0; inOverflow; i++){ int iCell = (iOld + pPg->aiOvfl[i]) - iNew; if( iCell>=0 && iCellaCellIdx[iCell * 2]; if( nCell>iCell ){ memmove(&pCellptr[2], pCellptr, (nCell - iCell) * 2); } nCell++; cachedCellSize(pCArray, iCell+iNew); if( pageInsertArray( pPg, pBegin, &pData, pCellptr, iCell+iNew, 1, pCArray ) ) goto editpage_fail; } } /* Append cells to the end of the page */ assert( nCell>=0 ); pCellptr = &pPg->aCellIdx[nCell*2]; if( pageInsertArray( pPg, pBegin, &pData, pCellptr, iNew+nCell, nNew-nCell, pCArray ) ) goto editpage_fail; pPg->nCell = nNew; pPg->nOverflow = 0; put2byte(&aData[hdr+3], pPg->nCell); put2byte(&aData[hdr+5], pData - aData); #ifdef SQLITE_DEBUG for(i=0; iapCell[i+iNew]; int iOff = get2byteAligned(&pPg->aCellIdx[i*2]); if( SQLITE_WITHIN(pCell, aData, &aData[pPg->pBt->usableSize]) ){ pCell = &pTmp[pCell - aData]; } assert( 0==memcmp(pCell, &aData[iOff], pCArray->pRef->xCellSize(pCArray->pRef, pCArray->apCell[i+iNew])) ); } #endif return SQLITE_OK; editpage_fail: /* Unable to edit this page. Rebuild it from scratch instead. */ populateCellCache(pCArray, iNew, nNew); return rebuildPage(pCArray, iNew, nNew, pPg); } #ifndef SQLITE_OMIT_QUICKBALANCE /* ** This version of balance() handles the common special case where ** a new entry is being inserted on the extreme right-end of the ** tree, in other words, when the new entry will become the largest ** entry in the tree. ** ** Instead of trying to balance the 3 right-most leaf pages, just add ** a new page to the right-hand side and put the one new entry in ** that page. This leaves the right side of the tree somewhat ** unbalanced. But odds are that we will be inserting new entries ** at the end soon afterwards so the nearly empty page will quickly ** fill up. On average. ** ** pPage is the leaf page which is the right-most page in the tree. ** pParent is its parent. pPage must have a single overflow entry ** which is also the right-most entry on the page. ** ** The pSpace buffer is used to store a temporary copy of the divider ** cell that will be inserted into pParent. Such a cell consists of a 4 ** byte page number followed by a variable length integer. In other ** words, at most 13 bytes. Hence the pSpace buffer must be at ** least 13 bytes in size. */ static int balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace){ BtShared *const pBt = pPage->pBt; /* B-Tree Database */ MemPage *pNew; /* Newly allocated page */ int rc; /* Return Code */ Pgno pgnoNew; /* Page number of pNew */ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( sqlite3PagerIswriteable(pParent->pDbPage) ); assert( pPage->nOverflow==1 ); if( pPage->nCell==0 ) return SQLITE_CORRUPT_BKPT; /* dbfuzz001.test */ assert( pPage->nFree>=0 ); assert( pParent->nFree>=0 ); /* Allocate a new page. This page will become the right-sibling of ** pPage. Make the parent page writable, so that the new divider cell ** may be inserted. If both these operations are successful, proceed. */ rc = allocateBtreePage(pBt, &pNew, &pgnoNew, 0, 0); if( rc==SQLITE_OK ){ u8 *pOut = &pSpace[4]; u8 *pCell = pPage->apOvfl[0]; u16 szCell = pPage->xCellSize(pPage, pCell); u8 *pStop; CellArray b; assert( sqlite3PagerIswriteable(pNew->pDbPage) ); assert( CORRUPT_DB || pPage->aData[0]==(PTF_INTKEY|PTF_LEAFDATA|PTF_LEAF) ); zeroPage(pNew, PTF_INTKEY|PTF_LEAFDATA|PTF_LEAF); b.nCell = 1; b.pRef = pPage; b.apCell = &pCell; b.szCell = &szCell; b.apEnd[0] = pPage->aDataEnd; b.ixNx[0] = 2; rc = rebuildPage(&b, 0, 1, pNew); if( NEVER(rc) ){ releasePage(pNew); return rc; } pNew->nFree = pBt->usableSize - pNew->cellOffset - 2 - szCell; /* If this is an auto-vacuum database, update the pointer map ** with entries for the new page, and any pointer from the ** cell on the page to an overflow page. If either of these ** operations fails, the return code is set, but the contents ** of the parent page are still manipulated by thh code below. ** That is Ok, at this point the parent page is guaranteed to ** be marked as dirty. Returning an error code will cause a ** rollback, undoing any changes made to the parent page. */ if( ISAUTOVACUUM ){ ptrmapPut(pBt, pgnoNew, PTRMAP_BTREE, pParent->pgno, &rc); if( szCell>pNew->minLocal ){ ptrmapPutOvflPtr(pNew, pNew, pCell, &rc); } } /* Create a divider cell to insert into pParent. The divider cell ** consists of a 4-byte page number (the page number of pPage) and ** a variable length key value (which must be the same value as the ** largest key on pPage). ** ** To find the largest key value on pPage, first find the right-most ** cell on pPage. The first two fields of this cell are the ** record-length (a variable length integer at most 32-bits in size) ** and the key value (a variable length integer, may have any value). ** The first of the while(...) loops below skips over the record-length ** field. The second while(...) loop copies the key value from the ** cell on pPage into the pSpace buffer. */ pCell = findCell(pPage, pPage->nCell-1); pStop = &pCell[9]; while( (*(pCell++)&0x80) && pCellnCell, pSpace, (int)(pOut-pSpace), 0, pPage->pgno, &rc); } /* Set the right-child pointer of pParent to point to the new page. */ put4byte(&pParent->aData[pParent->hdrOffset+8], pgnoNew); /* Release the reference to the new page. */ releasePage(pNew); } return rc; } #endif /* SQLITE_OMIT_QUICKBALANCE */ #if 0 /* ** This function does not contribute anything to the operation of SQLite. ** it is sometimes activated temporarily while debugging code responsible ** for setting pointer-map entries. */ static int ptrmapCheckPages(MemPage **apPage, int nPage){ int i, j; for(i=0; ipBt; assert( pPage->isInit ); for(j=0; jnCell; j++){ CellInfo info; u8 *z; z = findCell(pPage, j); pPage->xParseCell(pPage, z, &info); if( info.nLocalpgno && e==PTRMAP_OVERFLOW1 ); } if( !pPage->leaf ){ Pgno child = get4byte(z); ptrmapGet(pBt, child, &e, &n); assert( n==pPage->pgno && e==PTRMAP_BTREE ); } } if( !pPage->leaf ){ Pgno child = get4byte(&pPage->aData[pPage->hdrOffset+8]); ptrmapGet(pBt, child, &e, &n); assert( n==pPage->pgno && e==PTRMAP_BTREE ); } } return 1; } #endif /* ** This function is used to copy the contents of the b-tree node stored ** on page pFrom to page pTo. If page pFrom was not a leaf page, then ** the pointer-map entries for each child page are updated so that the ** parent page stored in the pointer map is page pTo. If pFrom contained ** any cells with overflow page pointers, then the corresponding pointer ** map entries are also updated so that the parent page is page pTo. ** ** If pFrom is currently carrying any overflow cells (entries in the ** MemPage.apOvfl[] array), they are not copied to pTo. ** ** Before returning, page pTo is reinitialized using btreeInitPage(). ** ** The performance of this function is not critical. It is only used by ** the balance_shallower() and balance_deeper() procedures, neither of ** which are called often under normal circumstances. */ static void copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC){ if( (*pRC)==SQLITE_OK ){ BtShared * const pBt = pFrom->pBt; u8 * const aFrom = pFrom->aData; u8 * const aTo = pTo->aData; int const iFromHdr = pFrom->hdrOffset; int const iToHdr = ((pTo->pgno==1) ? 100 : 0); int rc; int iData; assert( pFrom->isInit ); assert( pFrom->nFree>=iToHdr ); assert( get2byte(&aFrom[iFromHdr+5]) <= (int)pBt->usableSize ); /* Copy the b-tree node content from page pFrom to page pTo. */ iData = get2byte(&aFrom[iFromHdr+5]); memcpy(&aTo[iData], &aFrom[iData], pBt->usableSize-iData); memcpy(&aTo[iToHdr], &aFrom[iFromHdr], pFrom->cellOffset + 2*pFrom->nCell); /* Reinitialize page pTo so that the contents of the MemPage structure ** match the new data. The initialization of pTo can actually fail under ** fairly obscure circumstances, even though it is a copy of initialized ** page pFrom. */ pTo->isInit = 0; rc = btreeInitPage(pTo); if( rc==SQLITE_OK ) rc = btreeComputeFreeSpace(pTo); if( rc!=SQLITE_OK ){ *pRC = rc; return; } /* If this is an auto-vacuum database, update the pointer-map entries ** for any b-tree or overflow pages that pTo now contains the pointers to. */ if( ISAUTOVACUUM ){ *pRC = setChildPtrmaps(pTo); } } } /* ** This routine redistributes cells on the iParentIdx'th child of pParent ** (hereafter "the page") and up to 2 siblings so that all pages have about the ** same amount of free space. Usually a single sibling on either side of the ** page are used in the balancing, though both siblings might come from one ** side if the page is the first or last child of its parent. If the page ** has fewer than 2 siblings (something which can only happen if the page ** is a root page or a child of a root page) then all available siblings ** participate in the balancing. ** ** The number of siblings of the page might be increased or decreased by ** one or two in an effort to keep pages nearly full but not over full. ** ** Note that when this routine is called, some of the cells on the page ** might not actually be stored in MemPage.aData[]. This can happen ** if the page is overfull. This routine ensures that all cells allocated ** to the page and its siblings fit into MemPage.aData[] before returning. ** ** In the course of balancing the page and its siblings, cells may be ** inserted into or removed from the parent page (pParent). Doing so ** may cause the parent page to become overfull or underfull. If this ** happens, it is the responsibility of the caller to invoke the correct ** balancing routine to fix this problem (see the balance() routine). ** ** If this routine fails for any reason, it might leave the database ** in a corrupted state. So if this routine fails, the database should ** be rolled back. ** ** The third argument to this function, aOvflSpace, is a pointer to a ** buffer big enough to hold one page. If while inserting cells into the parent ** page (pParent) the parent page becomes overfull, this buffer is ** used to store the parent's overflow cells. Because this function inserts ** a maximum of four divider cells into the parent page, and the maximum ** size of a cell stored within an internal node is always less than 1/4 ** of the page-size, the aOvflSpace[] buffer is guaranteed to be large ** enough for all overflow cells. ** ** If aOvflSpace is set to a null pointer, this function returns ** SQLITE_NOMEM. */ static int balance_nonroot( MemPage *pParent, /* Parent page of siblings being balanced */ int iParentIdx, /* Index of "the page" in pParent */ u8 *aOvflSpace, /* page-size bytes of space for parent ovfl */ int isRoot, /* True if pParent is a root-page */ int bBulk /* True if this call is part of a bulk load */ ){ BtShared *pBt; /* The whole database */ int nMaxCells = 0; /* Allocated size of apCell, szCell, aFrom. */ int nNew = 0; /* Number of pages in apNew[] */ int nOld; /* Number of pages in apOld[] */ int i, j, k; /* Loop counters */ int nxDiv; /* Next divider slot in pParent->aCell[] */ int rc = SQLITE_OK; /* The return code */ u16 leafCorrection; /* 4 if pPage is a leaf. 0 if not */ int leafData; /* True if pPage is a leaf of a LEAFDATA tree */ int usableSpace; /* Bytes in pPage beyond the header */ int pageFlags; /* Value of pPage->aData[0] */ int iSpace1 = 0; /* First unused byte of aSpace1[] */ int iOvflSpace = 0; /* First unused byte of aOvflSpace[] */ int szScratch; /* Size of scratch memory requested */ MemPage *apOld[NB]; /* pPage and up to two siblings */ MemPage *apNew[NB+2]; /* pPage and up to NB siblings after balancing */ u8 *pRight; /* Location in parent of right-sibling pointer */ u8 *apDiv[NB-1]; /* Divider cells in pParent */ int cntNew[NB+2]; /* Index in b.paCell[] of cell after i-th page */ int cntOld[NB+2]; /* Old index in b.apCell[] */ int szNew[NB+2]; /* Combined size of cells placed on i-th page */ u8 *aSpace1; /* Space for copies of dividers cells */ Pgno pgno; /* Temp var to store a page number in */ u8 abDone[NB+2]; /* True after i'th new page is populated */ Pgno aPgno[NB+2]; /* Page numbers of new pages before shuffling */ Pgno aPgOrder[NB+2]; /* Copy of aPgno[] used for sorting pages */ u16 aPgFlags[NB+2]; /* flags field of new pages before shuffling */ CellArray b; /* Parsed information on cells being balanced */ memset(abDone, 0, sizeof(abDone)); memset(&b, 0, sizeof(b)); pBt = pParent->pBt; assert( sqlite3_mutex_held(pBt->mutex) ); assert( sqlite3PagerIswriteable(pParent->pDbPage) ); /* At this point pParent may have at most one overflow cell. And if ** this overflow cell is present, it must be the cell with ** index iParentIdx. This scenario comes about when this function ** is called (indirectly) from sqlite3BtreeDelete(). */ assert( pParent->nOverflow==0 || pParent->nOverflow==1 ); assert( pParent->nOverflow==0 || pParent->aiOvfl[0]==iParentIdx ); if( !aOvflSpace ){ return SQLITE_NOMEM_BKPT; } assert( pParent->nFree>=0 ); /* Find the sibling pages to balance. Also locate the cells in pParent ** that divide the siblings. An attempt is made to find NN siblings on ** either side of pPage. More siblings are taken from one side, however, ** if there are fewer than NN siblings on the other side. If pParent ** has NB or fewer children then all children of pParent are taken. ** ** This loop also drops the divider cells from the parent page. This ** way, the remainder of the function does not have to deal with any ** overflow cells in the parent page, since if any existed they will ** have already been removed. */ i = pParent->nOverflow + pParent->nCell; if( i<2 ){ nxDiv = 0; }else{ assert( bBulk==0 || bBulk==1 ); if( iParentIdx==0 ){ nxDiv = 0; }else if( iParentIdx==i ){ nxDiv = i-2+bBulk; }else{ nxDiv = iParentIdx-1; } i = 2-bBulk; } nOld = i+1; if( (i+nxDiv-pParent->nOverflow)==pParent->nCell ){ pRight = &pParent->aData[pParent->hdrOffset+8]; }else{ pRight = findCell(pParent, i+nxDiv-pParent->nOverflow); } pgno = get4byte(pRight); while( 1 ){ if( rc==SQLITE_OK ){ rc = getAndInitPage(pBt, pgno, &apOld[i], 0, 0); } if( rc ){ memset(apOld, 0, (i+1)*sizeof(MemPage*)); goto balance_cleanup; } if( apOld[i]->nFree<0 ){ rc = btreeComputeFreeSpace(apOld[i]); if( rc ){ memset(apOld, 0, (i)*sizeof(MemPage*)); goto balance_cleanup; } } nMaxCells += apOld[i]->nCell + ArraySize(pParent->apOvfl); if( (i--)==0 ) break; if( pParent->nOverflow && i+nxDiv==pParent->aiOvfl[0] ){ apDiv[i] = pParent->apOvfl[0]; pgno = get4byte(apDiv[i]); szNew[i] = pParent->xCellSize(pParent, apDiv[i]); pParent->nOverflow = 0; }else{ apDiv[i] = findCell(pParent, i+nxDiv-pParent->nOverflow); pgno = get4byte(apDiv[i]); szNew[i] = pParent->xCellSize(pParent, apDiv[i]); /* Drop the cell from the parent page. apDiv[i] still points to ** the cell within the parent, even though it has been dropped. ** This is safe because dropping a cell only overwrites the first ** four bytes of it, and this function does not need the first ** four bytes of the divider cell. So the pointer is safe to use ** later on. ** ** But not if we are in secure-delete mode. In secure-delete mode, ** the dropCell() routine will overwrite the entire cell with zeroes. ** In this case, temporarily copy the cell into the aOvflSpace[] ** buffer. It will be copied out again as soon as the aSpace[] buffer ** is allocated. */ if( pBt->btsFlags & BTS_FAST_SECURE ){ int iOff; /* If the following if() condition is not true, the db is corrupted. ** The call to dropCell() below will detect this. */ iOff = SQLITE_PTR_TO_INT(apDiv[i]) - SQLITE_PTR_TO_INT(pParent->aData); if( (iOff+szNew[i])<=(int)pBt->usableSize ){ memcpy(&aOvflSpace[iOff], apDiv[i], szNew[i]); apDiv[i] = &aOvflSpace[apDiv[i]-pParent->aData]; } } dropCell(pParent, i+nxDiv-pParent->nOverflow, szNew[i], &rc); } } /* Make nMaxCells a multiple of 4 in order to preserve 8-byte ** alignment */ nMaxCells = (nMaxCells + 3)&~3; /* ** Allocate space for memory structures */ szScratch = nMaxCells*sizeof(u8*) /* b.apCell */ + nMaxCells*sizeof(u16) /* b.szCell */ + pBt->pageSize; /* aSpace1 */ assert( szScratch<=7*(int)pBt->pageSize ); b.apCell = sqlite3StackAllocRaw(0, szScratch ); if( b.apCell==0 ){ rc = SQLITE_NOMEM_BKPT; goto balance_cleanup; } b.szCell = (u16*)&b.apCell[nMaxCells]; aSpace1 = (u8*)&b.szCell[nMaxCells]; assert( EIGHT_BYTE_ALIGNMENT(aSpace1) ); /* ** Load pointers to all cells on sibling pages and the divider cells ** into the local b.apCell[] array. Make copies of the divider cells ** into space obtained from aSpace1[]. The divider cells have already ** been removed from pParent. ** ** If the siblings are on leaf pages, then the child pointers of the ** divider cells are stripped from the cells before they are copied ** into aSpace1[]. In this way, all cells in b.apCell[] are without ** child pointers. If siblings are not leaves, then all cell in ** b.apCell[] include child pointers. Either way, all cells in b.apCell[] ** are alike. ** ** leafCorrection: 4 if pPage is a leaf. 0 if pPage is not a leaf. ** leafData: 1 if pPage holds key+data and pParent holds only keys. */ b.pRef = apOld[0]; leafCorrection = b.pRef->leaf*4; leafData = b.pRef->intKeyLeaf; for(i=0; inCell; u8 *aData = pOld->aData; u16 maskPage = pOld->maskPage; u8 *piCell = aData + pOld->cellOffset; u8 *piEnd; VVA_ONLY( int nCellAtStart = b.nCell; ) /* Verify that all sibling pages are of the same "type" (table-leaf, ** table-interior, index-leaf, or index-interior). */ if( pOld->aData[0]!=apOld[0]->aData[0] ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } /* Load b.apCell[] with pointers to all cells in pOld. If pOld ** contains overflow cells, include them in the b.apCell[] array ** in the correct spot. ** ** Note that when there are multiple overflow cells, it is always the ** case that they are sequential and adjacent. This invariant arises ** because multiple overflows can only occurs when inserting divider ** cells into a parent on a prior balance, and divider cells are always ** adjacent and are inserted in order. There is an assert() tagged ** with "NOTE 1" in the overflow cell insertion loop to prove this ** invariant. ** ** This must be done in advance. Once the balance starts, the cell ** offset section of the btree page will be overwritten and we will no ** long be able to find the cells if a pointer to each cell is not saved ** first. */ memset(&b.szCell[b.nCell], 0, sizeof(b.szCell[0])*(limit+pOld->nOverflow)); if( pOld->nOverflow>0 ){ if( NEVER(limitaiOvfl[0]) ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } limit = pOld->aiOvfl[0]; for(j=0; jnOverflow; k++){ assert( k==0 || pOld->aiOvfl[k-1]+1==pOld->aiOvfl[k] );/* NOTE 1 */ b.apCell[b.nCell] = pOld->apOvfl[k]; b.nCell++; } } piEnd = aData + pOld->cellOffset + 2*pOld->nCell; while( piCellnCell+pOld->nOverflow) ); cntOld[i] = b.nCell; if( imaxLocal+23 ); assert( iSpace1 <= (int)pBt->pageSize ); memcpy(pTemp, apDiv[i], sz); b.apCell[b.nCell] = pTemp+leafCorrection; assert( leafCorrection==0 || leafCorrection==4 ); b.szCell[b.nCell] = b.szCell[b.nCell] - leafCorrection; if( !pOld->leaf ){ assert( leafCorrection==0 ); assert( pOld->hdrOffset==0 || CORRUPT_DB ); /* The right pointer of the child page pOld becomes the left ** pointer of the divider cell */ memcpy(b.apCell[b.nCell], &pOld->aData[8], 4); }else{ assert( leafCorrection==4 ); while( b.szCell[b.nCell]<4 ){ /* Do not allow any cells smaller than 4 bytes. If a smaller cell ** does exist, pad it with 0x00 bytes. */ assert( b.szCell[b.nCell]==3 || CORRUPT_DB ); assert( b.apCell[b.nCell]==&aSpace1[iSpace1-3] || CORRUPT_DB ); aSpace1[iSpace1++] = 0x00; b.szCell[b.nCell]++; } } b.nCell++; } } /* ** Figure out the number of pages needed to hold all b.nCell cells. ** Store this number in "k". Also compute szNew[] which is the total ** size of all cells on the i-th page and cntNew[] which is the index ** in b.apCell[] of the cell that divides page i from page i+1. ** cntNew[k] should equal b.nCell. ** ** Values computed by this block: ** ** k: The total number of sibling pages ** szNew[i]: Spaced used on the i-th sibling page. ** cntNew[i]: Index in b.apCell[] and b.szCell[] for the first cell to ** the right of the i-th sibling page. ** usableSpace: Number of bytes of space available on each sibling. ** */ usableSpace = pBt->usableSize - 12 + leafCorrection; for(i=k=0; iaDataEnd; b.ixNx[k] = cntOld[i]; if( k && b.ixNx[k]==b.ixNx[k-1] ){ k--; /* Omit b.ixNx[] entry for child pages with no cells */ } if( !leafData ){ k++; b.apEnd[k] = pParent->aDataEnd; b.ixNx[k] = cntOld[i]+1; } assert( p->nFree>=0 ); szNew[i] = usableSpace - p->nFree; for(j=0; jnOverflow; j++){ szNew[i] += 2 + p->xCellSize(p, p->apOvfl[j]); } cntNew[i] = cntOld[i]; } k = nOld; for(i=0; iusableSpace ){ if( i+1>=k ){ k = i+2; if( k>NB+2 ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } szNew[k-1] = 0; cntNew[k-1] = b.nCell; } sz = 2 + cachedCellSize(&b, cntNew[i]-1); szNew[i] -= sz; if( !leafData ){ if( cntNew[i]usableSpace ) break; szNew[i] += sz; cntNew[i]++; if( !leafData ){ if( cntNew[i]=b.nCell ){ k = i+1; }else if( cntNew[i] <= (i>0 ? cntNew[i-1] : 0) ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } } /* ** The packing computed by the previous block is biased toward the siblings ** on the left side (siblings with smaller keys). The left siblings are ** always nearly full, while the right-most sibling might be nearly empty. ** The next block of code attempts to adjust the packing of siblings to ** get a better balance. ** ** This adjustment is more than an optimization. The packing above might ** be so out of balance as to be illegal. For example, the right-most ** sibling might be completely empty. This adjustment is not optional. */ for(i=k-1; i>0; i--){ int szRight = szNew[i]; /* Size of sibling on the right */ int szLeft = szNew[i-1]; /* Size of sibling on the left */ int r; /* Index of right-most cell in left sibling */ int d; /* Index of first cell to the left of right sibling */ r = cntNew[i-1] - 1; d = r + 1 - leafData; (void)cachedCellSize(&b, d); do{ assert( d szLeft-(b.szCell[r]+(i==k-1?0:2)))){ break; } szRight += b.szCell[d] + 2; szLeft -= b.szCell[r] + 2; cntNew[i-1] = r; r--; d--; }while( r>=0 ); szNew[i] = szRight; szNew[i-1] = szLeft; if( cntNew[i-1] <= (i>1 ? cntNew[i-2] : 0) ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } } /* Sanity check: For a non-corrupt database file one of the follwing ** must be true: ** (1) We found one or more cells (cntNew[0])>0), or ** (2) pPage is a virtual root page. A virtual root page is when ** the real root page is page 1 and we are the only child of ** that page. */ assert( cntNew[0]>0 || (pParent->pgno==1 && pParent->nCell==0) || CORRUPT_DB); TRACE(("BALANCE: old: %d(nc=%d) %d(nc=%d) %d(nc=%d)\n", apOld[0]->pgno, apOld[0]->nCell, nOld>=2 ? apOld[1]->pgno : 0, nOld>=2 ? apOld[1]->nCell : 0, nOld>=3 ? apOld[2]->pgno : 0, nOld>=3 ? apOld[2]->nCell : 0 )); /* ** Allocate k new pages. Reuse old pages where possible. */ pageFlags = apOld[0]->aData[0]; for(i=0; ipDbPage); nNew++; if( sqlite3PagerPageRefcount(pNew->pDbPage)!=1+(i==(iParentIdx-nxDiv)) && rc==SQLITE_OK ){ rc = SQLITE_CORRUPT_BKPT; } if( rc ) goto balance_cleanup; }else{ assert( i>0 ); rc = allocateBtreePage(pBt, &pNew, &pgno, (bBulk ? 1 : pgno), 0); if( rc ) goto balance_cleanup; zeroPage(pNew, pageFlags); apNew[i] = pNew; nNew++; cntOld[i] = b.nCell; /* Set the pointer-map entry for the new sibling page. */ if( ISAUTOVACUUM ){ ptrmapPut(pBt, pNew->pgno, PTRMAP_BTREE, pParent->pgno, &rc); if( rc!=SQLITE_OK ){ goto balance_cleanup; } } } } /* ** Reassign page numbers so that the new pages are in ascending order. ** This helps to keep entries in the disk file in order so that a scan ** of the table is closer to a linear scan through the file. That in turn ** helps the operating system to deliver pages from the disk more rapidly. ** ** An O(n^2) insertion sort algorithm is used, but since n is never more ** than (NB+2) (a small constant), that should not be a problem. ** ** When NB==3, this one optimization makes the database about 25% faster ** for large insertions and deletions. */ for(i=0; ipgno; aPgFlags[i] = apNew[i]->pDbPage->flags; for(j=0; ji ){ sqlite3PagerRekey(apNew[iBest]->pDbPage, pBt->nPage+iBest+1, 0); } sqlite3PagerRekey(apNew[i]->pDbPage, pgno, aPgFlags[iBest]); apNew[i]->pgno = pgno; } } TRACE(("BALANCE: new: %d(%d nc=%d) %d(%d nc=%d) %d(%d nc=%d) " "%d(%d nc=%d) %d(%d nc=%d)\n", apNew[0]->pgno, szNew[0], cntNew[0], nNew>=2 ? apNew[1]->pgno : 0, nNew>=2 ? szNew[1] : 0, nNew>=2 ? cntNew[1] - cntNew[0] - !leafData : 0, nNew>=3 ? apNew[2]->pgno : 0, nNew>=3 ? szNew[2] : 0, nNew>=3 ? cntNew[2] - cntNew[1] - !leafData : 0, nNew>=4 ? apNew[3]->pgno : 0, nNew>=4 ? szNew[3] : 0, nNew>=4 ? cntNew[3] - cntNew[2] - !leafData : 0, nNew>=5 ? apNew[4]->pgno : 0, nNew>=5 ? szNew[4] : 0, nNew>=5 ? cntNew[4] - cntNew[3] - !leafData : 0 )); assert( sqlite3PagerIswriteable(pParent->pDbPage) ); assert( nNew>=1 && nNew<=ArraySize(apNew) ); assert( apNew[nNew-1]!=0 ); put4byte(pRight, apNew[nNew-1]->pgno); /* If the sibling pages are not leaves, ensure that the right-child pointer ** of the right-most new sibling page is set to the value that was ** originally in the same field of the right-most old sibling page. */ if( (pageFlags & PTF_LEAF)==0 && nOld!=nNew ){ MemPage *pOld = (nNew>nOld ? apNew : apOld)[nOld-1]; memcpy(&apNew[nNew-1]->aData[8], &pOld->aData[8], 4); } /* Make any required updates to pointer map entries associated with ** cells stored on sibling pages following the balance operation. Pointer ** map entries associated with divider cells are set by the insertCell() ** routine. The associated pointer map entries are: ** ** a) if the cell contains a reference to an overflow chain, the ** entry associated with the first page in the overflow chain, and ** ** b) if the sibling pages are not leaves, the child page associated ** with the cell. ** ** If the sibling pages are not leaves, then the pointer map entry ** associated with the right-child of each sibling may also need to be ** updated. This happens below, after the sibling pages have been ** populated, not here. */ if( ISAUTOVACUUM ){ MemPage *pOld; MemPage *pNew = pOld = apNew[0]; int cntOldNext = pNew->nCell + pNew->nOverflow; int iNew = 0; int iOld = 0; for(i=0; i=0 && iOldnCell + pOld->nOverflow + !leafData; } if( i==cntNew[iNew] ){ pNew = apNew[++iNew]; if( !leafData ) continue; } /* Cell pCell is destined for new sibling page pNew. Originally, it ** was either part of sibling page iOld (possibly an overflow cell), ** or else the divider cell to the left of sibling page iOld. So, ** if sibling page iOld had the same page number as pNew, and if ** pCell really was a part of sibling page iOld (not a divider or ** overflow cell), we can skip updating the pointer map entries. */ if( iOld>=nNew || pNew->pgno!=aPgno[iOld] || !SQLITE_WITHIN(pCell,pOld->aData,pOld->aDataEnd) ){ if( !leafCorrection ){ ptrmapPut(pBt, get4byte(pCell), PTRMAP_BTREE, pNew->pgno, &rc); } if( cachedCellSize(&b,i)>pNew->minLocal ){ ptrmapPutOvflPtr(pNew, pOld, pCell, &rc); } if( rc ) goto balance_cleanup; } } } /* Insert new divider cells into pParent. */ for(i=0; ileaf ){ memcpy(&pNew->aData[8], pCell, 4); }else if( leafData ){ /* If the tree is a leaf-data tree, and the siblings are leaves, ** then there is no divider cell in b.apCell[]. Instead, the divider ** cell consists of the integer key for the right-most cell of ** the sibling-page assembled above only. */ CellInfo info; j--; pNew->xParseCell(pNew, b.apCell[j], &info); pCell = pTemp; sz = 4 + putVarint(&pCell[4], info.nKey); pTemp = 0; }else{ pCell -= 4; /* Obscure case for non-leaf-data trees: If the cell at pCell was ** previously stored on a leaf node, and its reported size was 4 ** bytes, then it may actually be smaller than this ** (see btreeParseCellPtr(), 4 bytes is the minimum size of ** any cell). But it is important to pass the correct size to ** insertCell(), so reparse the cell now. ** ** This can only happen for b-trees used to evaluate "IN (SELECT ...)" ** and WITHOUT ROWID tables with exactly one column which is the ** primary key. */ if( b.szCell[j]==4 ){ assert(leafCorrection==4); sz = pParent->xCellSize(pParent, pCell); } } iOvflSpace += sz; assert( sz<=pBt->maxLocal+23 ); assert( iOvflSpace <= (int)pBt->pageSize ); for(k=0; b.ixNx[k]<=i && ALWAYS(kpgno, &rc); if( rc!=SQLITE_OK ) goto balance_cleanup; assert( sqlite3PagerIswriteable(pParent->pDbPage) ); } /* Now update the actual sibling pages. The order in which they are updated ** is important, as this code needs to avoid disrupting any page from which ** cells may still to be read. In practice, this means: ** ** (1) If cells are moving left (from apNew[iPg] to apNew[iPg-1]) ** then it is not safe to update page apNew[iPg] until after ** the left-hand sibling apNew[iPg-1] has been updated. ** ** (2) If cells are moving right (from apNew[iPg] to apNew[iPg+1]) ** then it is not safe to update page apNew[iPg] until after ** the right-hand sibling apNew[iPg+1] has been updated. ** ** If neither of the above apply, the page is safe to update. ** ** The iPg value in the following loop starts at nNew-1 goes down ** to 0, then back up to nNew-1 again, thus making two passes over ** the pages. On the initial downward pass, only condition (1) above ** needs to be tested because (2) will always be true from the previous ** step. On the upward pass, both conditions are always true, so the ** upwards pass simply processes pages that were missed on the downward ** pass. */ for(i=1-nNew; i=0 && iPg=0 /* On the upwards pass, or... */ || cntOld[iPg-1]>=cntNew[iPg-1] /* Condition (1) is true */ ){ int iNew; int iOld; int nNewCell; /* Verify condition (1): If cells are moving left, update iPg ** only after iPg-1 has already been updated. */ assert( iPg==0 || cntOld[iPg-1]>=cntNew[iPg-1] || abDone[iPg-1] ); /* Verify condition (2): If cells are moving right, update iPg ** only after iPg+1 has already been updated. */ assert( cntNew[iPg]>=cntOld[iPg] || abDone[iPg+1] ); if( iPg==0 ){ iNew = iOld = 0; nNewCell = cntNew[0]; }else{ iOld = iPgnFree = usableSpace-szNew[iPg]; assert( apNew[iPg]->nOverflow==0 ); assert( apNew[iPg]->nCell==nNewCell ); } } /* All pages have been processed exactly once */ assert( memcmp(abDone, "\01\01\01\01\01", nNew)==0 ); assert( nOld>0 ); assert( nNew>0 ); if( isRoot && pParent->nCell==0 && pParent->hdrOffset<=apNew[0]->nFree ){ /* The root page of the b-tree now contains no cells. The only sibling ** page is the right-child of the parent. Copy the contents of the ** child page into the parent, decreasing the overall height of the ** b-tree structure by one. This is described as the "balance-shallower" ** sub-algorithm in some documentation. ** ** If this is an auto-vacuum database, the call to copyNodeContent() ** sets all pointer-map entries corresponding to database image pages ** for which the pointer is stored within the content being copied. ** ** It is critical that the child page be defragmented before being ** copied into the parent, because if the parent is page 1 then it will ** by smaller than the child due to the database header, and so all the ** free space needs to be up front. */ assert( nNew==1 || CORRUPT_DB ); rc = defragmentPage(apNew[0], -1); testcase( rc!=SQLITE_OK ); assert( apNew[0]->nFree == (get2byteNotZero(&apNew[0]->aData[5]) - apNew[0]->cellOffset - apNew[0]->nCell*2) || rc!=SQLITE_OK ); copyNodeContent(apNew[0], pParent, &rc); freePage(apNew[0], &rc); }else if( ISAUTOVACUUM && !leafCorrection ){ /* Fix the pointer map entries associated with the right-child of each ** sibling page. All other pointer map entries have already been taken ** care of. */ for(i=0; iaData[8]); ptrmapPut(pBt, key, PTRMAP_BTREE, apNew[i]->pgno, &rc); } } assert( pParent->isInit ); TRACE(("BALANCE: finished: old=%d new=%d cells=%d\n", nOld, nNew, b.nCell)); /* Free any old pages that were not reused as new pages. */ for(i=nNew; iisInit ){ /* The ptrmapCheckPages() contains assert() statements that verify that ** all pointer map pages are set correctly. This is helpful while ** debugging. This is usually disabled because a corrupt database may ** cause an assert() statement to fail. */ ptrmapCheckPages(apNew, nNew); ptrmapCheckPages(&pParent, 1); } #endif /* ** Cleanup before returning. */ balance_cleanup: sqlite3StackFree(0, b.apCell); for(i=0; ipBt; /* The BTree */ assert( pRoot->nOverflow>0 ); assert( sqlite3_mutex_held(pBt->mutex) ); /* Make pRoot, the root page of the b-tree, writable. Allocate a new ** page that will become the new right-child of pPage. Copy the contents ** of the node stored on pRoot into the new child page. */ rc = sqlite3PagerWrite(pRoot->pDbPage); if( rc==SQLITE_OK ){ rc = allocateBtreePage(pBt,&pChild,&pgnoChild,pRoot->pgno,0); copyNodeContent(pRoot, pChild, &rc); if( ISAUTOVACUUM ){ ptrmapPut(pBt, pgnoChild, PTRMAP_BTREE, pRoot->pgno, &rc); } } if( rc ){ *ppChild = 0; releasePage(pChild); return rc; } assert( sqlite3PagerIswriteable(pChild->pDbPage) ); assert( sqlite3PagerIswriteable(pRoot->pDbPage) ); assert( pChild->nCell==pRoot->nCell || CORRUPT_DB ); TRACE(("BALANCE: copy root %d into %d\n", pRoot->pgno, pChild->pgno)); /* Copy the overflow cells from pRoot to pChild */ memcpy(pChild->aiOvfl, pRoot->aiOvfl, pRoot->nOverflow*sizeof(pRoot->aiOvfl[0])); memcpy(pChild->apOvfl, pRoot->apOvfl, pRoot->nOverflow*sizeof(pRoot->apOvfl[0])); pChild->nOverflow = pRoot->nOverflow; /* Zero the contents of pRoot. Then install pChild as the right-child. */ zeroPage(pRoot, pChild->aData[0] & ~PTF_LEAF); put4byte(&pRoot->aData[pRoot->hdrOffset+8], pgnoChild); *ppChild = pChild; return SQLITE_OK; } /* ** Return SQLITE_CORRUPT if any cursor other than pCur is currently valid ** on the same B-tree as pCur. ** ** This can occur if a database is corrupt with two or more SQL tables ** pointing to the same b-tree. If an insert occurs on one SQL table ** and causes a BEFORE TRIGGER to do a secondary insert on the other SQL ** table linked to the same b-tree. If the secondary insert causes a ** rebalance, that can change content out from under the cursor on the ** first SQL table, violating invariants on the first insert. */ static int anotherValidCursor(BtCursor *pCur){ BtCursor *pOther; for(pOther=pCur->pBt->pCursor; pOther; pOther=pOther->pNext){ if( pOther!=pCur && pOther->eState==CURSOR_VALID && pOther->pPage==pCur->pPage ){ return SQLITE_CORRUPT_BKPT; } } return SQLITE_OK; } /* ** The page that pCur currently points to has just been modified in ** some way. This function figures out if this modification means the ** tree needs to be balanced, and if so calls the appropriate balancing ** routine. Balancing routines are: ** ** balance_quick() ** balance_deeper() ** balance_nonroot() */ static int balance(BtCursor *pCur){ int rc = SQLITE_OK; const int nMin = pCur->pBt->usableSize * 2 / 3; u8 aBalanceQuickSpace[13]; u8 *pFree = 0; VVA_ONLY( int balance_quick_called = 0 ); VVA_ONLY( int balance_deeper_called = 0 ); do { int iPage; MemPage *pPage = pCur->pPage; if( NEVER(pPage->nFree<0) && btreeComputeFreeSpace(pPage) ) break; if( pPage->nOverflow==0 && pPage->nFree<=nMin ){ break; }else if( (iPage = pCur->iPage)==0 ){ if( pPage->nOverflow && (rc = anotherValidCursor(pCur))==SQLITE_OK ){ /* The root page of the b-tree is overfull. In this case call the ** balance_deeper() function to create a new child for the root-page ** and copy the current contents of the root-page to it. The ** next iteration of the do-loop will balance the child page. */ assert( balance_deeper_called==0 ); VVA_ONLY( balance_deeper_called++ ); rc = balance_deeper(pPage, &pCur->apPage[1]); if( rc==SQLITE_OK ){ pCur->iPage = 1; pCur->ix = 0; pCur->aiIdx[0] = 0; pCur->apPage[0] = pPage; pCur->pPage = pCur->apPage[1]; assert( pCur->pPage->nOverflow ); } }else{ break; } }else{ MemPage * const pParent = pCur->apPage[iPage-1]; int const iIdx = pCur->aiIdx[iPage-1]; rc = sqlite3PagerWrite(pParent->pDbPage); if( rc==SQLITE_OK && pParent->nFree<0 ){ rc = btreeComputeFreeSpace(pParent); } if( rc==SQLITE_OK ){ #ifndef SQLITE_OMIT_QUICKBALANCE if( pPage->intKeyLeaf && pPage->nOverflow==1 && pPage->aiOvfl[0]==pPage->nCell && pParent->pgno!=1 && pParent->nCell==iIdx ){ /* Call balance_quick() to create a new sibling of pPage on which ** to store the overflow cell. balance_quick() inserts a new cell ** into pParent, which may cause pParent overflow. If this ** happens, the next iteration of the do-loop will balance pParent ** use either balance_nonroot() or balance_deeper(). Until this ** happens, the overflow cell is stored in the aBalanceQuickSpace[] ** buffer. ** ** The purpose of the following assert() is to check that only a ** single call to balance_quick() is made for each call to this ** function. If this were not verified, a subtle bug involving reuse ** of the aBalanceQuickSpace[] might sneak in. */ assert( balance_quick_called==0 ); VVA_ONLY( balance_quick_called++ ); rc = balance_quick(pParent, pPage, aBalanceQuickSpace); }else #endif { /* In this case, call balance_nonroot() to redistribute cells ** between pPage and up to 2 of its sibling pages. This involves ** modifying the contents of pParent, which may cause pParent to ** become overfull or underfull. The next iteration of the do-loop ** will balance the parent page to correct this. ** ** If the parent page becomes overfull, the overflow cell or cells ** are stored in the pSpace buffer allocated immediately below. ** A subsequent iteration of the do-loop will deal with this by ** calling balance_nonroot() (balance_deeper() may be called first, ** but it doesn't deal with overflow cells - just moves them to a ** different page). Once this subsequent call to balance_nonroot() ** has completed, it is safe to release the pSpace buffer used by ** the previous call, as the overflow cell data will have been ** copied either into the body of a database page or into the new ** pSpace buffer passed to the latter call to balance_nonroot(). */ u8 *pSpace = sqlite3PageMalloc(pCur->pBt->pageSize); rc = balance_nonroot(pParent, iIdx, pSpace, iPage==1, pCur->hints&BTREE_BULKLOAD); if( pFree ){ /* If pFree is not NULL, it points to the pSpace buffer used ** by a previous call to balance_nonroot(). Its contents are ** now stored either on real database pages or within the ** new pSpace buffer, so it may be safely freed here. */ sqlite3PageFree(pFree); } /* The pSpace buffer will be freed after the next call to ** balance_nonroot(), or just before this function returns, whichever ** comes first. */ pFree = pSpace; } } pPage->nOverflow = 0; /* The next iteration of the do-loop balances the parent page. */ releasePage(pPage); pCur->iPage--; assert( pCur->iPage>=0 ); pCur->pPage = pCur->apPage[pCur->iPage]; } }while( rc==SQLITE_OK ); if( pFree ){ sqlite3PageFree(pFree); } return rc; } /* Overwrite content from pX into pDest. Only do the write if the ** content is different from what is already there. */ static int btreeOverwriteContent( MemPage *pPage, /* MemPage on which writing will occur */ u8 *pDest, /* Pointer to the place to start writing */ const BtreePayload *pX, /* Source of data to write */ int iOffset, /* Offset of first byte to write */ int iAmt /* Number of bytes to be written */ ){ int nData = pX->nData - iOffset; if( nData<=0 ){ /* Overwritting with zeros */ int i; for(i=0; ipDbPage); if( rc ) return rc; memset(pDest + i, 0, iAmt - i); } }else{ if( nDatapData) + iOffset, iAmt)!=0 ){ int rc = sqlite3PagerWrite(pPage->pDbPage); if( rc ) return rc; /* In a corrupt database, it is possible for the source and destination ** buffers to overlap. This is harmless since the database is already ** corrupt but it does cause valgrind and ASAN warnings. So use ** memmove(). */ memmove(pDest, ((u8*)pX->pData) + iOffset, iAmt); } } return SQLITE_OK; } /* ** Overwrite the cell that cursor pCur is pointing to with fresh content ** contained in pX. */ static int btreeOverwriteCell(BtCursor *pCur, const BtreePayload *pX){ int iOffset; /* Next byte of pX->pData to write */ int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */ int rc; /* Return code */ MemPage *pPage = pCur->pPage; /* Page being written */ BtShared *pBt; /* Btree */ Pgno ovflPgno; /* Next overflow page to write */ u32 ovflPageSize; /* Size to write on overflow page */ if( pCur->info.pPayload + pCur->info.nLocal > pPage->aDataEnd || pCur->info.pPayload < pPage->aData + pPage->cellOffset ){ return SQLITE_CORRUPT_BKPT; } /* Overwrite the local portion first */ rc = btreeOverwriteContent(pPage, pCur->info.pPayload, pX, 0, pCur->info.nLocal); if( rc ) return rc; if( pCur->info.nLocal==nTotal ) return SQLITE_OK; /* Now overwrite the overflow pages */ iOffset = pCur->info.nLocal; assert( nTotal>=0 ); assert( iOffset>=0 ); ovflPgno = get4byte(pCur->info.pPayload + iOffset); pBt = pPage->pBt; ovflPageSize = pBt->usableSize - 4; do{ rc = btreeGetPage(pBt, ovflPgno, &pPage, 0); if( rc ) return rc; if( sqlite3PagerPageRefcount(pPage->pDbPage)!=1 || pPage->isInit ){ rc = SQLITE_CORRUPT_BKPT; }else{ if( iOffset+ovflPageSize<(u32)nTotal ){ ovflPgno = get4byte(pPage->aData); }else{ ovflPageSize = nTotal - iOffset; } rc = btreeOverwriteContent(pPage, pPage->aData+4, pX, iOffset, ovflPageSize); } sqlite3PagerUnref(pPage->pDbPage); if( rc ) return rc; iOffset += ovflPageSize; }while( iOffset0 then pCur points to a cell ** that is larger than (pKey,nKey). ** ** If seekResult==0, that means pCur is pointing at some unknown location. ** In that case, this routine must seek the cursor to the correct insertion ** point for (pKey,nKey) before doing the insertion. For index btrees, ** if pX->nMem is non-zero, then pX->aMem contains pointers to the unpacked ** key values and pX->aMem can be used instead of pX->pKey to avoid having ** to decode the key. */ SQLITE_PRIVATE int sqlite3BtreeInsert( BtCursor *pCur, /* Insert data into the table of this cursor */ const BtreePayload *pX, /* Content of the row to be inserted */ int flags, /* True if this is likely an append */ int seekResult /* Result of prior MovetoUnpacked() call */ ){ int rc; int loc = seekResult; /* -1: before desired location +1: after */ int szNew = 0; int idx; MemPage *pPage; Btree *p = pCur->pBtree; BtShared *pBt = p->pBt; unsigned char *oldCell; unsigned char *newCell = 0; assert( (flags & (BTREE_SAVEPOSITION|BTREE_APPEND|BTREE_PREFORMAT))==flags ); assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 ); if( pCur->eState==CURSOR_FAULT ){ assert( pCur->skipNext!=SQLITE_OK ); return pCur->skipNext; } assert( cursorOwnsBtShared(pCur) ); assert( (pCur->curFlags & BTCF_WriteFlag)!=0 && pBt->inTransaction==TRANS_WRITE && (pBt->btsFlags & BTS_READ_ONLY)==0 ); assert( hasSharedCacheTableLock(p, pCur->pgnoRoot, pCur->pKeyInfo!=0, 2) ); /* Assert that the caller has been consistent. If this cursor was opened ** expecting an index b-tree, then the caller should be inserting blob ** keys with no associated data. If the cursor was opened expecting an ** intkey table, the caller should be inserting integer keys with a ** blob of associated data. */ assert( (flags & BTREE_PREFORMAT) || (pX->pKey==0)==(pCur->pKeyInfo==0) ); /* Save the positions of any other cursors open on this table. ** ** In some cases, the call to btreeMoveto() below is a no-op. For ** example, when inserting data into a table with auto-generated integer ** keys, the VDBE layer invokes sqlite3BtreeLast() to figure out the ** integer key to use. It then calls this function to actually insert the ** data into the intkey B-Tree. In this case btreeMoveto() recognizes ** that the cursor is already where it needs to be and returns without ** doing any work. To avoid thwarting these optimizations, it is important ** not to clear the cursor here. */ if( pCur->curFlags & BTCF_Multiple ){ rc = saveAllCursors(pBt, pCur->pgnoRoot, pCur); if( rc ) return rc; if( loc && pCur->iPage<0 ){ /* This can only happen if the schema is corrupt such that there is more ** than one table or index with the same root page as used by the cursor. ** Which can only happen if the SQLITE_NoSchemaError flag was set when ** the schema was loaded. This cannot be asserted though, as a user might ** set the flag, load the schema, and then unset the flag. */ return SQLITE_CORRUPT_BKPT; } } if( pCur->pKeyInfo==0 ){ assert( pX->pKey==0 ); /* If this is an insert into a table b-tree, invalidate any incrblob ** cursors open on the row being replaced */ if( p->hasIncrblobCur ){ invalidateIncrblobCursors(p, pCur->pgnoRoot, pX->nKey, 0); } /* If BTREE_SAVEPOSITION is set, the cursor must already be pointing ** to a row with the same key as the new entry being inserted. */ #ifdef SQLITE_DEBUG if( flags & BTREE_SAVEPOSITION ){ assert( pCur->curFlags & BTCF_ValidNKey ); assert( pX->nKey==pCur->info.nKey ); assert( loc==0 ); } #endif /* On the other hand, BTREE_SAVEPOSITION==0 does not imply ** that the cursor is not pointing to a row to be overwritten. ** So do a complete check. */ if( (pCur->curFlags&BTCF_ValidNKey)!=0 && pX->nKey==pCur->info.nKey ){ /* The cursor is pointing to the entry that is to be ** overwritten */ assert( pX->nData>=0 && pX->nZero>=0 ); if( pCur->info.nSize!=0 && pCur->info.nPayload==(u32)pX->nData+pX->nZero ){ /* New entry is the same size as the old. Do an overwrite */ return btreeOverwriteCell(pCur, pX); } assert( loc==0 ); }else if( loc==0 ){ /* The cursor is *not* pointing to the cell to be overwritten, nor ** to an adjacent cell. Move the cursor so that it is pointing either ** to the cell to be overwritten or an adjacent cell. */ rc = sqlite3BtreeTableMoveto(pCur, pX->nKey, (flags & BTREE_APPEND)!=0, &loc); if( rc ) return rc; } }else{ /* This is an index or a WITHOUT ROWID table */ /* If BTREE_SAVEPOSITION is set, the cursor must already be pointing ** to a row with the same key as the new entry being inserted. */ assert( (flags & BTREE_SAVEPOSITION)==0 || loc==0 ); /* If the cursor is not already pointing either to the cell to be ** overwritten, or if a new cell is being inserted, if the cursor is ** not pointing to an immediately adjacent cell, then move the cursor ** so that it does. */ if( loc==0 && (flags & BTREE_SAVEPOSITION)==0 ){ if( pX->nMem ){ UnpackedRecord r; r.pKeyInfo = pCur->pKeyInfo; r.aMem = pX->aMem; r.nField = pX->nMem; r.default_rc = 0; r.eqSeen = 0; rc = sqlite3BtreeIndexMoveto(pCur, &r, &loc); }else{ rc = btreeMoveto(pCur, pX->pKey, pX->nKey, (flags & BTREE_APPEND)!=0, &loc); } if( rc ) return rc; } /* If the cursor is currently pointing to an entry to be overwritten ** and the new content is the same as as the old, then use the ** overwrite optimization. */ if( loc==0 ){ getCellInfo(pCur); if( pCur->info.nKey==pX->nKey ){ BtreePayload x2; x2.pData = pX->pKey; x2.nData = pX->nKey; x2.nZero = 0; return btreeOverwriteCell(pCur, &x2); } } } assert( pCur->eState==CURSOR_VALID || (pCur->eState==CURSOR_INVALID && loc) || CORRUPT_DB ); pPage = pCur->pPage; assert( pPage->intKey || pX->nKey>=0 || (flags & BTREE_PREFORMAT) ); assert( pPage->leaf || !pPage->intKey ); if( pPage->nFree<0 ){ if( NEVER(pCur->eState>CURSOR_INVALID) ){ rc = SQLITE_CORRUPT_BKPT; }else{ rc = btreeComputeFreeSpace(pPage); } if( rc ) return rc; } TRACE(("INSERT: table=%d nkey=%lld ndata=%d page=%d %s\n", pCur->pgnoRoot, pX->nKey, pX->nData, pPage->pgno, loc==0 ? "overwrite" : "new entry")); assert( pPage->isInit ); newCell = pBt->pTmpSpace; assert( newCell!=0 ); if( flags & BTREE_PREFORMAT ){ rc = SQLITE_OK; szNew = pBt->nPreformatSize; if( szNew<4 ) szNew = 4; if( ISAUTOVACUUM && szNew>pPage->maxLocal ){ CellInfo info; pPage->xParseCell(pPage, newCell, &info); if( info.nPayload!=info.nLocal ){ Pgno ovfl = get4byte(&newCell[szNew-4]); ptrmapPut(pBt, ovfl, PTRMAP_OVERFLOW1, pPage->pgno, &rc); } } }else{ rc = fillInCell(pPage, newCell, pX, &szNew); } if( rc ) goto end_insert; assert( szNew==pPage->xCellSize(pPage, newCell) ); assert( szNew <= MX_CELL_SIZE(pBt) ); idx = pCur->ix; if( loc==0 ){ CellInfo info; assert( idx>=0 ); if( idx>=pPage->nCell ){ return SQLITE_CORRUPT_BKPT; } rc = sqlite3PagerWrite(pPage->pDbPage); if( rc ){ goto end_insert; } oldCell = findCell(pPage, idx); if( !pPage->leaf ){ memcpy(newCell, oldCell, 4); } BTREE_CLEAR_CELL(rc, pPage, oldCell, info); testcase( pCur->curFlags & BTCF_ValidOvfl ); invalidateOverflowCache(pCur); if( info.nSize==szNew && info.nLocal==info.nPayload && (!ISAUTOVACUUM || szNewminLocal) ){ /* Overwrite the old cell with the new if they are the same size. ** We could also try to do this if the old cell is smaller, then add ** the leftover space to the free list. But experiments show that ** doing that is no faster then skipping this optimization and just ** calling dropCell() and insertCell(). ** ** This optimization cannot be used on an autovacuum database if the ** new entry uses overflow pages, as the insertCell() call below is ** necessary to add the PTRMAP_OVERFLOW1 pointer-map entry. */ assert( rc==SQLITE_OK ); /* clearCell never fails when nLocal==nPayload */ if( oldCell < pPage->aData+pPage->hdrOffset+10 ){ return SQLITE_CORRUPT_BKPT; } if( oldCell+szNew > pPage->aDataEnd ){ return SQLITE_CORRUPT_BKPT; } memcpy(oldCell, newCell, szNew); return SQLITE_OK; } dropCell(pPage, idx, info.nSize, &rc); if( rc ) goto end_insert; }else if( loc<0 && pPage->nCell>0 ){ assert( pPage->leaf ); idx = ++pCur->ix; pCur->curFlags &= ~BTCF_ValidNKey; }else{ assert( pPage->leaf ); } insertCell(pPage, idx, newCell, szNew, 0, 0, &rc); assert( pPage->nOverflow==0 || rc==SQLITE_OK ); assert( rc!=SQLITE_OK || pPage->nCell>0 || pPage->nOverflow>0 ); /* If no error has occurred and pPage has an overflow cell, call balance() ** to redistribute the cells within the tree. Since balance() may move ** the cursor, zero the BtCursor.info.nSize and BTCF_ValidNKey ** variables. ** ** Previous versions of SQLite called moveToRoot() to move the cursor ** back to the root page as balance() used to invalidate the contents ** of BtCursor.apPage[] and BtCursor.aiIdx[]. Instead of doing that, ** set the cursor state to "invalid". This makes common insert operations ** slightly faster. ** ** There is a subtle but important optimization here too. When inserting ** multiple records into an intkey b-tree using a single cursor (as can ** happen while processing an "INSERT INTO ... SELECT" statement), it ** is advantageous to leave the cursor pointing to the last entry in ** the b-tree if possible. If the cursor is left pointing to the last ** entry in the table, and the next row inserted has an integer key ** larger than the largest existing key, it is possible to insert the ** row without seeking the cursor. This can be a big performance boost. */ pCur->info.nSize = 0; if( pPage->nOverflow ){ assert( rc==SQLITE_OK ); pCur->curFlags &= ~(BTCF_ValidNKey); rc = balance(pCur); /* Must make sure nOverflow is reset to zero even if the balance() ** fails. Internal data structure corruption will result otherwise. ** Also, set the cursor state to invalid. This stops saveCursorPosition() ** from trying to save the current position of the cursor. */ pCur->pPage->nOverflow = 0; pCur->eState = CURSOR_INVALID; if( (flags & BTREE_SAVEPOSITION) && rc==SQLITE_OK ){ btreeReleaseAllCursorPages(pCur); if( pCur->pKeyInfo ){ assert( pCur->pKey==0 ); pCur->pKey = sqlite3Malloc( pX->nKey ); if( pCur->pKey==0 ){ rc = SQLITE_NOMEM; }else{ memcpy(pCur->pKey, pX->pKey, pX->nKey); } } pCur->eState = CURSOR_REQUIRESEEK; pCur->nKey = pX->nKey; } } assert( pCur->iPage<0 || pCur->pPage->nOverflow==0 ); end_insert: return rc; } /* ** This function is used as part of copying the current row from cursor ** pSrc into cursor pDest. If the cursors are open on intkey tables, then ** parameter iKey is used as the rowid value when the record is copied ** into pDest. Otherwise, the record is copied verbatim. ** ** This function does not actually write the new value to cursor pDest. ** Instead, it creates and populates any required overflow pages and ** writes the data for the new cell into the BtShared.pTmpSpace buffer ** for the destination database. The size of the cell, in bytes, is left ** in BtShared.nPreformatSize. The caller completes the insertion by ** calling sqlite3BtreeInsert() with the BTREE_PREFORMAT flag specified. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ SQLITE_PRIVATE int sqlite3BtreeTransferRow(BtCursor *pDest, BtCursor *pSrc, i64 iKey){ int rc = SQLITE_OK; BtShared *pBt = pDest->pBt; u8 *aOut = pBt->pTmpSpace; /* Pointer to next output buffer */ const u8 *aIn; /* Pointer to next input buffer */ u32 nIn; /* Size of input buffer aIn[] */ u32 nRem; /* Bytes of data still to copy */ getCellInfo(pSrc); aOut += putVarint32(aOut, pSrc->info.nPayload); if( pDest->pKeyInfo==0 ) aOut += putVarint(aOut, iKey); nIn = pSrc->info.nLocal; aIn = pSrc->info.pPayload; if( aIn+nIn>pSrc->pPage->aDataEnd ){ return SQLITE_CORRUPT_BKPT; } nRem = pSrc->info.nPayload; if( nIn==nRem && nInpPage->maxLocal ){ memcpy(aOut, aIn, nIn); pBt->nPreformatSize = nIn + (aOut - pBt->pTmpSpace); }else{ Pager *pSrcPager = pSrc->pBt->pPager; u8 *pPgnoOut = 0; Pgno ovflIn = 0; DbPage *pPageIn = 0; MemPage *pPageOut = 0; u32 nOut; /* Size of output buffer aOut[] */ nOut = btreePayloadToLocal(pDest->pPage, pSrc->info.nPayload); pBt->nPreformatSize = nOut + (aOut - pBt->pTmpSpace); if( nOutinfo.nPayload ){ pPgnoOut = &aOut[nOut]; pBt->nPreformatSize += 4; } if( nRem>nIn ){ if( aIn+nIn+4>pSrc->pPage->aDataEnd ){ return SQLITE_CORRUPT_BKPT; } ovflIn = get4byte(&pSrc->info.pPayload[nIn]); } do { nRem -= nOut; do{ assert( nOut>0 ); if( nIn>0 ){ int nCopy = MIN(nOut, nIn); memcpy(aOut, aIn, nCopy); nOut -= nCopy; nIn -= nCopy; aOut += nCopy; aIn += nCopy; } if( nOut>0 ){ sqlite3PagerUnref(pPageIn); pPageIn = 0; rc = sqlite3PagerGet(pSrcPager, ovflIn, &pPageIn, PAGER_GET_READONLY); if( rc==SQLITE_OK ){ aIn = (const u8*)sqlite3PagerGetData(pPageIn); ovflIn = get4byte(aIn); aIn += 4; nIn = pSrc->pBt->usableSize - 4; } } }while( rc==SQLITE_OK && nOut>0 ); if( rc==SQLITE_OK && nRem>0 && ALWAYS(pPgnoOut) ){ Pgno pgnoNew; MemPage *pNew = 0; rc = allocateBtreePage(pBt, &pNew, &pgnoNew, 0, 0); put4byte(pPgnoOut, pgnoNew); if( ISAUTOVACUUM && pPageOut ){ ptrmapPut(pBt, pgnoNew, PTRMAP_OVERFLOW2, pPageOut->pgno, &rc); } releasePage(pPageOut); pPageOut = pNew; if( pPageOut ){ pPgnoOut = pPageOut->aData; put4byte(pPgnoOut, 0); aOut = &pPgnoOut[4]; nOut = MIN(pBt->usableSize - 4, nRem); } } }while( nRem>0 && rc==SQLITE_OK ); releasePage(pPageOut); sqlite3PagerUnref(pPageIn); } return rc; } /* ** Delete the entry that the cursor is pointing to. ** ** If the BTREE_SAVEPOSITION bit of the flags parameter is zero, then ** the cursor is left pointing at an arbitrary location after the delete. ** But if that bit is set, then the cursor is left in a state such that ** the next call to BtreeNext() or BtreePrev() moves it to the same row ** as it would have been on if the call to BtreeDelete() had been omitted. ** ** The BTREE_AUXDELETE bit of flags indicates that is one of several deletes ** associated with a single table entry and its indexes. Only one of those ** deletes is considered the "primary" delete. The primary delete occurs ** on a cursor that is not a BTREE_FORDELETE cursor. All but one delete ** operation on non-FORDELETE cursors is tagged with the AUXDELETE flag. ** The BTREE_AUXDELETE bit is a hint that is not used by this implementation, ** but which might be used by alternative storage engines. */ SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur, u8 flags){ Btree *p = pCur->pBtree; BtShared *pBt = p->pBt; int rc; /* Return code */ MemPage *pPage; /* Page to delete cell from */ unsigned char *pCell; /* Pointer to cell to delete */ int iCellIdx; /* Index of cell to delete */ int iCellDepth; /* Depth of node containing pCell */ CellInfo info; /* Size of the cell being deleted */ u8 bPreserve; /* Keep cursor valid. 2 for CURSOR_SKIPNEXT */ assert( cursorOwnsBtShared(pCur) ); assert( pBt->inTransaction==TRANS_WRITE ); assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); assert( pCur->curFlags & BTCF_WriteFlag ); assert( hasSharedCacheTableLock(p, pCur->pgnoRoot, pCur->pKeyInfo!=0, 2) ); assert( !hasReadConflicts(p, pCur->pgnoRoot) ); assert( (flags & ~(BTREE_SAVEPOSITION | BTREE_AUXDELETE))==0 ); if( pCur->eState==CURSOR_REQUIRESEEK ){ rc = btreeRestoreCursorPosition(pCur); assert( rc!=SQLITE_OK || CORRUPT_DB || pCur->eState==CURSOR_VALID ); if( rc || pCur->eState!=CURSOR_VALID ) return rc; } assert( CORRUPT_DB || pCur->eState==CURSOR_VALID ); iCellDepth = pCur->iPage; iCellIdx = pCur->ix; pPage = pCur->pPage; if( pPage->nCell<=iCellIdx ){ return SQLITE_CORRUPT_BKPT; } pCell = findCell(pPage, iCellIdx); if( pPage->nFree<0 && btreeComputeFreeSpace(pPage) ){ return SQLITE_CORRUPT_BKPT; } /* If the BTREE_SAVEPOSITION bit is on, then the cursor position must ** be preserved following this delete operation. If the current delete ** will cause a b-tree rebalance, then this is done by saving the cursor ** key and leaving the cursor in CURSOR_REQUIRESEEK state before ** returning. ** ** If the current delete will not cause a rebalance, then the cursor ** will be left in CURSOR_SKIPNEXT state pointing to the entry immediately ** before or after the deleted entry. ** ** The bPreserve value records which path is required: ** ** bPreserve==0 Not necessary to save the cursor position ** bPreserve==1 Use CURSOR_REQUIRESEEK to save the cursor position ** bPreserve==2 Cursor won't move. Set CURSOR_SKIPNEXT. */ bPreserve = (flags & BTREE_SAVEPOSITION)!=0; if( bPreserve ){ if( !pPage->leaf || (pPage->nFree+cellSizePtr(pPage,pCell)+2)>(int)(pBt->usableSize*2/3) || pPage->nCell==1 /* See dbfuzz001.test for a test case */ ){ /* A b-tree rebalance will be required after deleting this entry. ** Save the cursor key. */ rc = saveCursorKey(pCur); if( rc ) return rc; }else{ bPreserve = 2; } } /* If the page containing the entry to delete is not a leaf page, move ** the cursor to the largest entry in the tree that is smaller than ** the entry being deleted. This cell will replace the cell being deleted ** from the internal node. The 'previous' entry is used for this instead ** of the 'next' entry, as the previous entry is always a part of the ** sub-tree headed by the child page of the cell being deleted. This makes ** balancing the tree following the delete operation easier. */ if( !pPage->leaf ){ rc = sqlite3BtreePrevious(pCur, 0); assert( rc!=SQLITE_DONE ); if( rc ) return rc; } /* Save the positions of any other cursors open on this table before ** making any modifications. */ if( pCur->curFlags & BTCF_Multiple ){ rc = saveAllCursors(pBt, pCur->pgnoRoot, pCur); if( rc ) return rc; } /* If this is a delete operation to remove a row from a table b-tree, ** invalidate any incrblob cursors open on the row being deleted. */ if( pCur->pKeyInfo==0 && p->hasIncrblobCur ){ invalidateIncrblobCursors(p, pCur->pgnoRoot, pCur->info.nKey, 0); } /* Make the page containing the entry to be deleted writable. Then free any ** overflow pages associated with the entry and finally remove the cell ** itself from within the page. */ rc = sqlite3PagerWrite(pPage->pDbPage); if( rc ) return rc; BTREE_CLEAR_CELL(rc, pPage, pCell, info); dropCell(pPage, iCellIdx, info.nSize, &rc); if( rc ) return rc; /* If the cell deleted was not located on a leaf page, then the cursor ** is currently pointing to the largest entry in the sub-tree headed ** by the child-page of the cell that was just deleted from an internal ** node. The cell from the leaf node needs to be moved to the internal ** node to replace the deleted cell. */ if( !pPage->leaf ){ MemPage *pLeaf = pCur->pPage; int nCell; Pgno n; unsigned char *pTmp; if( pLeaf->nFree<0 ){ rc = btreeComputeFreeSpace(pLeaf); if( rc ) return rc; } if( iCellDepthiPage-1 ){ n = pCur->apPage[iCellDepth+1]->pgno; }else{ n = pCur->pPage->pgno; } pCell = findCell(pLeaf, pLeaf->nCell-1); if( pCell<&pLeaf->aData[4] ) return SQLITE_CORRUPT_BKPT; nCell = pLeaf->xCellSize(pLeaf, pCell); assert( MX_CELL_SIZE(pBt) >= nCell ); pTmp = pBt->pTmpSpace; assert( pTmp!=0 ); rc = sqlite3PagerWrite(pLeaf->pDbPage); if( rc==SQLITE_OK ){ insertCell(pPage, iCellIdx, pCell-4, nCell+4, pTmp, n, &rc); } dropCell(pLeaf, pLeaf->nCell-1, nCell, &rc); if( rc ) return rc; } /* Balance the tree. If the entry deleted was located on a leaf page, ** then the cursor still points to that page. In this case the first ** call to balance() repairs the tree, and the if(...) condition is ** never true. ** ** Otherwise, if the entry deleted was on an internal node page, then ** pCur is pointing to the leaf page from which a cell was removed to ** replace the cell deleted from the internal node. This is slightly ** tricky as the leaf node may be underfull, and the internal node may ** be either under or overfull. In this case run the balancing algorithm ** on the leaf node first. If the balance proceeds far enough up the ** tree that we can be sure that any problem in the internal node has ** been corrected, so be it. Otherwise, after balancing the leaf node, ** walk the cursor up the tree to the internal node and balance it as ** well. */ rc = balance(pCur); if( rc==SQLITE_OK && pCur->iPage>iCellDepth ){ releasePageNotNull(pCur->pPage); pCur->iPage--; while( pCur->iPage>iCellDepth ){ releasePage(pCur->apPage[pCur->iPage--]); } pCur->pPage = pCur->apPage[pCur->iPage]; rc = balance(pCur); } if( rc==SQLITE_OK ){ if( bPreserve>1 ){ assert( (pCur->iPage==iCellDepth || CORRUPT_DB) ); assert( pPage==pCur->pPage || CORRUPT_DB ); assert( (pPage->nCell>0 || CORRUPT_DB) && iCellIdx<=pPage->nCell ); pCur->eState = CURSOR_SKIPNEXT; if( iCellIdx>=pPage->nCell ){ pCur->skipNext = -1; pCur->ix = pPage->nCell-1; }else{ pCur->skipNext = 1; } }else{ rc = moveToRoot(pCur); if( bPreserve ){ btreeReleaseAllCursorPages(pCur); pCur->eState = CURSOR_REQUIRESEEK; } if( rc==SQLITE_EMPTY ) rc = SQLITE_OK; } } return rc; } /* ** Create a new BTree table. Write into *piTable the page ** number for the root page of the new table. ** ** The type of type is determined by the flags parameter. Only the ** following values of flags are currently in use. Other values for ** flags might not work: ** ** BTREE_INTKEY|BTREE_LEAFDATA Used for SQL tables with rowid keys ** BTREE_ZERODATA Used for SQL indices */ static int btreeCreateTable(Btree *p, Pgno *piTable, int createTabFlags){ BtShared *pBt = p->pBt; MemPage *pRoot; Pgno pgnoRoot; int rc; int ptfFlags; /* Page-type flage for the root page of new table */ assert( sqlite3BtreeHoldsMutex(p) ); assert( pBt->inTransaction==TRANS_WRITE ); assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); #ifdef SQLITE_OMIT_AUTOVACUUM rc = allocateBtreePage(pBt, &pRoot, &pgnoRoot, 1, 0); if( rc ){ return rc; } #else if( pBt->autoVacuum ){ Pgno pgnoMove; /* Move a page here to make room for the root-page */ MemPage *pPageMove; /* The page to move to. */ /* Creating a new table may probably require moving an existing database ** to make room for the new tables root page. In case this page turns ** out to be an overflow page, delete all overflow page-map caches ** held by open cursors. */ invalidateAllOverflowCache(pBt); /* Read the value of meta[3] from the database to determine where the ** root page of the new table should go. meta[3] is the largest root-page ** created so far, so the new root-page is (meta[3]+1). */ sqlite3BtreeGetMeta(p, BTREE_LARGEST_ROOT_PAGE, &pgnoRoot); if( pgnoRoot>btreePagecount(pBt) ){ return SQLITE_CORRUPT_BKPT; } pgnoRoot++; /* The new root-page may not be allocated on a pointer-map page, or the ** PENDING_BYTE page. */ while( pgnoRoot==PTRMAP_PAGENO(pBt, pgnoRoot) || pgnoRoot==PENDING_BYTE_PAGE(pBt) ){ pgnoRoot++; } assert( pgnoRoot>=3 ); /* Allocate a page. The page that currently resides at pgnoRoot will ** be moved to the allocated page (unless the allocated page happens ** to reside at pgnoRoot). */ rc = allocateBtreePage(pBt, &pPageMove, &pgnoMove, pgnoRoot, BTALLOC_EXACT); if( rc!=SQLITE_OK ){ return rc; } if( pgnoMove!=pgnoRoot ){ /* pgnoRoot is the page that will be used for the root-page of ** the new table (assuming an error did not occur). But we were ** allocated pgnoMove. If required (i.e. if it was not allocated ** by extending the file), the current page at position pgnoMove ** is already journaled. */ u8 eType = 0; Pgno iPtrPage = 0; /* Save the positions of any open cursors. This is required in ** case they are holding a reference to an xFetch reference ** corresponding to page pgnoRoot. */ rc = saveAllCursors(pBt, 0, 0); releasePage(pPageMove); if( rc!=SQLITE_OK ){ return rc; } /* Move the page currently at pgnoRoot to pgnoMove. */ rc = btreeGetPage(pBt, pgnoRoot, &pRoot, 0); if( rc!=SQLITE_OK ){ return rc; } rc = ptrmapGet(pBt, pgnoRoot, &eType, &iPtrPage); if( eType==PTRMAP_ROOTPAGE || eType==PTRMAP_FREEPAGE ){ rc = SQLITE_CORRUPT_BKPT; } if( rc!=SQLITE_OK ){ releasePage(pRoot); return rc; } assert( eType!=PTRMAP_ROOTPAGE ); assert( eType!=PTRMAP_FREEPAGE ); rc = relocatePage(pBt, pRoot, eType, iPtrPage, pgnoMove, 0); releasePage(pRoot); /* Obtain the page at pgnoRoot */ if( rc!=SQLITE_OK ){ return rc; } rc = btreeGetPage(pBt, pgnoRoot, &pRoot, 0); if( rc!=SQLITE_OK ){ return rc; } rc = sqlite3PagerWrite(pRoot->pDbPage); if( rc!=SQLITE_OK ){ releasePage(pRoot); return rc; } }else{ pRoot = pPageMove; } /* Update the pointer-map and meta-data with the new root-page number. */ ptrmapPut(pBt, pgnoRoot, PTRMAP_ROOTPAGE, 0, &rc); if( rc ){ releasePage(pRoot); return rc; } /* When the new root page was allocated, page 1 was made writable in ** order either to increase the database filesize, or to decrement the ** freelist count. Hence, the sqlite3BtreeUpdateMeta() call cannot fail. */ assert( sqlite3PagerIswriteable(pBt->pPage1->pDbPage) ); rc = sqlite3BtreeUpdateMeta(p, 4, pgnoRoot); if( NEVER(rc) ){ releasePage(pRoot); return rc; } }else{ rc = allocateBtreePage(pBt, &pRoot, &pgnoRoot, 1, 0); if( rc ) return rc; } #endif assert( sqlite3PagerIswriteable(pRoot->pDbPage) ); if( createTabFlags & BTREE_INTKEY ){ ptfFlags = PTF_INTKEY | PTF_LEAFDATA | PTF_LEAF; }else{ ptfFlags = PTF_ZERODATA | PTF_LEAF; } zeroPage(pRoot, ptfFlags); sqlite3PagerUnref(pRoot->pDbPage); assert( (pBt->openFlags & BTREE_SINGLE)==0 || pgnoRoot==2 ); *piTable = pgnoRoot; return SQLITE_OK; } SQLITE_PRIVATE int sqlite3BtreeCreateTable(Btree *p, Pgno *piTable, int flags){ int rc; sqlite3BtreeEnter(p); rc = btreeCreateTable(p, piTable, flags); sqlite3BtreeLeave(p); return rc; } /* ** Erase the given database page and all its children. Return ** the page to the freelist. */ static int clearDatabasePage( BtShared *pBt, /* The BTree that contains the table */ Pgno pgno, /* Page number to clear */ int freePageFlag, /* Deallocate page if true */ i64 *pnChange /* Add number of Cells freed to this counter */ ){ MemPage *pPage; int rc; unsigned char *pCell; int i; int hdr; CellInfo info; assert( sqlite3_mutex_held(pBt->mutex) ); if( pgno>btreePagecount(pBt) ){ return SQLITE_CORRUPT_BKPT; } rc = getAndInitPage(pBt, pgno, &pPage, 0, 0); if( rc ) return rc; if( (pBt->openFlags & BTREE_SINGLE)==0 && sqlite3PagerPageRefcount(pPage->pDbPage) != (1 + (pgno==1)) ){ rc = SQLITE_CORRUPT_BKPT; goto cleardatabasepage_out; } hdr = pPage->hdrOffset; for(i=0; inCell; i++){ pCell = findCell(pPage, i); if( !pPage->leaf ){ rc = clearDatabasePage(pBt, get4byte(pCell), 1, pnChange); if( rc ) goto cleardatabasepage_out; } BTREE_CLEAR_CELL(rc, pPage, pCell, info); if( rc ) goto cleardatabasepage_out; } if( !pPage->leaf ){ rc = clearDatabasePage(pBt, get4byte(&pPage->aData[hdr+8]), 1, pnChange); if( rc ) goto cleardatabasepage_out; if( pPage->intKey ) pnChange = 0; } if( pnChange ){ testcase( !pPage->intKey ); *pnChange += pPage->nCell; } if( freePageFlag ){ freePage(pPage, &rc); }else if( (rc = sqlite3PagerWrite(pPage->pDbPage))==0 ){ zeroPage(pPage, pPage->aData[hdr] | PTF_LEAF); } cleardatabasepage_out: releasePage(pPage); return rc; } /* ** Delete all information from a single table in the database. iTable is ** the page number of the root of the table. After this routine returns, ** the root page is empty, but still exists. ** ** This routine will fail with SQLITE_LOCKED if there are any open ** read cursors on the table. Open write cursors are moved to the ** root of the table. ** ** If pnChange is not NULL, then the integer value pointed to by pnChange ** is incremented by the number of entries in the table. */ SQLITE_PRIVATE int sqlite3BtreeClearTable(Btree *p, int iTable, i64 *pnChange){ int rc; BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); assert( p->inTrans==TRANS_WRITE ); rc = saveAllCursors(pBt, (Pgno)iTable, 0); if( SQLITE_OK==rc ){ /* Invalidate all incrblob cursors open on table iTable (assuming iTable ** is the root of a table b-tree - if it is not, the following call is ** a no-op). */ if( p->hasIncrblobCur ){ invalidateIncrblobCursors(p, (Pgno)iTable, 0, 1); } rc = clearDatabasePage(pBt, (Pgno)iTable, 0, pnChange); } sqlite3BtreeLeave(p); return rc; } /* ** Delete all information from the single table that pCur is open on. ** ** This routine only work for pCur on an ephemeral table. */ SQLITE_PRIVATE int sqlite3BtreeClearTableOfCursor(BtCursor *pCur){ return sqlite3BtreeClearTable(pCur->pBtree, pCur->pgnoRoot, 0); } /* ** Erase all information in a table and add the root of the table to ** the freelist. Except, the root of the principle table (the one on ** page 1) is never added to the freelist. ** ** This routine will fail with SQLITE_LOCKED if there are any open ** cursors on the table. ** ** If AUTOVACUUM is enabled and the page at iTable is not the last ** root page in the database file, then the last root page ** in the database file is moved into the slot formerly occupied by ** iTable and that last slot formerly occupied by the last root page ** is added to the freelist instead of iTable. In this say, all ** root pages are kept at the beginning of the database file, which ** is necessary for AUTOVACUUM to work right. *piMoved is set to the ** page number that used to be the last root page in the file before ** the move. If no page gets moved, *piMoved is set to 0. ** The last root page is recorded in meta[3] and the value of ** meta[3] is updated by this procedure. */ static int btreeDropTable(Btree *p, Pgno iTable, int *piMoved){ int rc; MemPage *pPage = 0; BtShared *pBt = p->pBt; assert( sqlite3BtreeHoldsMutex(p) ); assert( p->inTrans==TRANS_WRITE ); assert( iTable>=2 ); if( iTable>btreePagecount(pBt) ){ return SQLITE_CORRUPT_BKPT; } rc = sqlite3BtreeClearTable(p, iTable, 0); if( rc ) return rc; rc = btreeGetPage(pBt, (Pgno)iTable, &pPage, 0); if( NEVER(rc) ){ releasePage(pPage); return rc; } *piMoved = 0; #ifdef SQLITE_OMIT_AUTOVACUUM freePage(pPage, &rc); releasePage(pPage); #else if( pBt->autoVacuum ){ Pgno maxRootPgno; sqlite3BtreeGetMeta(p, BTREE_LARGEST_ROOT_PAGE, &maxRootPgno); if( iTable==maxRootPgno ){ /* If the table being dropped is the table with the largest root-page ** number in the database, put the root page on the free list. */ freePage(pPage, &rc); releasePage(pPage); if( rc!=SQLITE_OK ){ return rc; } }else{ /* The table being dropped does not have the largest root-page ** number in the database. So move the page that does into the ** gap left by the deleted root-page. */ MemPage *pMove; releasePage(pPage); rc = btreeGetPage(pBt, maxRootPgno, &pMove, 0); if( rc!=SQLITE_OK ){ return rc; } rc = relocatePage(pBt, pMove, PTRMAP_ROOTPAGE, 0, iTable, 0); releasePage(pMove); if( rc!=SQLITE_OK ){ return rc; } pMove = 0; rc = btreeGetPage(pBt, maxRootPgno, &pMove, 0); freePage(pMove, &rc); releasePage(pMove); if( rc!=SQLITE_OK ){ return rc; } *piMoved = maxRootPgno; } /* Set the new 'max-root-page' value in the database header. This ** is the old value less one, less one more if that happens to ** be a root-page number, less one again if that is the ** PENDING_BYTE_PAGE. */ maxRootPgno--; while( maxRootPgno==PENDING_BYTE_PAGE(pBt) || PTRMAP_ISPAGE(pBt, maxRootPgno) ){ maxRootPgno--; } assert( maxRootPgno!=PENDING_BYTE_PAGE(pBt) ); rc = sqlite3BtreeUpdateMeta(p, 4, maxRootPgno); }else{ freePage(pPage, &rc); releasePage(pPage); } #endif return rc; } SQLITE_PRIVATE int sqlite3BtreeDropTable(Btree *p, int iTable, int *piMoved){ int rc; sqlite3BtreeEnter(p); rc = btreeDropTable(p, iTable, piMoved); sqlite3BtreeLeave(p); return rc; } /* ** This function may only be called if the b-tree connection already ** has a read or write transaction open on the database. ** ** Read the meta-information out of a database file. Meta[0] ** is the number of free pages currently in the database. Meta[1] ** through meta[15] are available for use by higher layers. Meta[0] ** is read-only, the others are read/write. ** ** The schema layer numbers meta values differently. At the schema ** layer (and the SetCookie and ReadCookie opcodes) the number of ** free pages is not visible. So Cookie[0] is the same as Meta[1]. ** ** This routine treats Meta[BTREE_DATA_VERSION] as a special case. Instead ** of reading the value out of the header, it instead loads the "DataVersion" ** from the pager. The BTREE_DATA_VERSION value is not actually stored in the ** database file. It is a number computed by the pager. But its access ** pattern is the same as header meta values, and so it is convenient to ** read it from this routine. */ SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *p, int idx, u32 *pMeta){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); assert( p->inTrans>TRANS_NONE ); assert( SQLITE_OK==querySharedCacheTableLock(p, SCHEMA_ROOT, READ_LOCK) ); assert( pBt->pPage1 ); assert( idx>=0 && idx<=15 ); if( idx==BTREE_DATA_VERSION ){ *pMeta = sqlite3PagerDataVersion(pBt->pPager) + p->iBDataVersion; }else{ *pMeta = get4byte(&pBt->pPage1->aData[36 + idx*4]); } /* If auto-vacuum is disabled in this build and this is an auto-vacuum ** database, mark the database as read-only. */ #ifdef SQLITE_OMIT_AUTOVACUUM if( idx==BTREE_LARGEST_ROOT_PAGE && *pMeta>0 ){ pBt->btsFlags |= BTS_READ_ONLY; } #endif sqlite3BtreeLeave(p); } /* ** Write meta-information back into the database. Meta[0] is ** read-only and may not be written. */ SQLITE_PRIVATE int sqlite3BtreeUpdateMeta(Btree *p, int idx, u32 iMeta){ BtShared *pBt = p->pBt; unsigned char *pP1; int rc; assert( idx>=1 && idx<=15 ); sqlite3BtreeEnter(p); assert( p->inTrans==TRANS_WRITE ); assert( pBt->pPage1!=0 ); pP1 = pBt->pPage1->aData; rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( rc==SQLITE_OK ){ put4byte(&pP1[36 + idx*4], iMeta); #ifndef SQLITE_OMIT_AUTOVACUUM if( idx==BTREE_INCR_VACUUM ){ assert( pBt->autoVacuum || iMeta==0 ); assert( iMeta==0 || iMeta==1 ); pBt->incrVacuum = (u8)iMeta; } #endif } sqlite3BtreeLeave(p); return rc; } /* ** The first argument, pCur, is a cursor opened on some b-tree. Count the ** number of entries in the b-tree and write the result to *pnEntry. ** ** SQLITE_OK is returned if the operation is successfully executed. ** Otherwise, if an error is encountered (i.e. an IO error or database ** corruption) an SQLite error code is returned. */ SQLITE_PRIVATE int sqlite3BtreeCount(sqlite3 *db, BtCursor *pCur, i64 *pnEntry){ i64 nEntry = 0; /* Value to return in *pnEntry */ int rc; /* Return code */ rc = moveToRoot(pCur); if( rc==SQLITE_EMPTY ){ *pnEntry = 0; return SQLITE_OK; } /* Unless an error occurs, the following loop runs one iteration for each ** page in the B-Tree structure (not including overflow pages). */ while( rc==SQLITE_OK && !AtomicLoad(&db->u1.isInterrupted) ){ int iIdx; /* Index of child node in parent */ MemPage *pPage; /* Current page of the b-tree */ /* If this is a leaf page or the tree is not an int-key tree, then ** this page contains countable entries. Increment the entry counter ** accordingly. */ pPage = pCur->pPage; if( pPage->leaf || !pPage->intKey ){ nEntry += pPage->nCell; } /* pPage is a leaf node. This loop navigates the cursor so that it ** points to the first interior cell that it points to the parent of ** the next page in the tree that has not yet been visited. The ** pCur->aiIdx[pCur->iPage] value is set to the index of the parent cell ** of the page, or to the number of cells in the page if the next page ** to visit is the right-child of its parent. ** ** If all pages in the tree have been visited, return SQLITE_OK to the ** caller. */ if( pPage->leaf ){ do { if( pCur->iPage==0 ){ /* All pages of the b-tree have been visited. Return successfully. */ *pnEntry = nEntry; return moveToRoot(pCur); } moveToParent(pCur); }while ( pCur->ix>=pCur->pPage->nCell ); pCur->ix++; pPage = pCur->pPage; } /* Descend to the child node of the cell that the cursor currently ** points at. This is the right-child if (iIdx==pPage->nCell). */ iIdx = pCur->ix; if( iIdx==pPage->nCell ){ rc = moveToChild(pCur, get4byte(&pPage->aData[pPage->hdrOffset+8])); }else{ rc = moveToChild(pCur, get4byte(findCell(pPage, iIdx))); } } /* An error has occurred. Return an error code. */ return rc; } /* ** Return the pager associated with a BTree. This routine is used for ** testing and debugging only. */ SQLITE_PRIVATE Pager *sqlite3BtreePager(Btree *p){ return p->pBt->pPager; } #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* ** Append a message to the error message string. */ static void checkAppendMsg( IntegrityCk *pCheck, const char *zFormat, ... ){ va_list ap; if( !pCheck->mxErr ) return; pCheck->mxErr--; pCheck->nErr++; va_start(ap, zFormat); if( pCheck->errMsg.nChar ){ sqlite3_str_append(&pCheck->errMsg, "\n", 1); } if( pCheck->zPfx ){ sqlite3_str_appendf(&pCheck->errMsg, pCheck->zPfx, pCheck->v1, pCheck->v2); } sqlite3_str_vappendf(&pCheck->errMsg, zFormat, ap); va_end(ap); if( pCheck->errMsg.accError==SQLITE_NOMEM ){ pCheck->bOomFault = 1; } } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* ** Return non-zero if the bit in the IntegrityCk.aPgRef[] array that ** corresponds to page iPg is already set. */ static int getPageReferenced(IntegrityCk *pCheck, Pgno iPg){ assert( iPg<=pCheck->nPage && sizeof(pCheck->aPgRef[0])==1 ); return (pCheck->aPgRef[iPg/8] & (1 << (iPg & 0x07))); } /* ** Set the bit in the IntegrityCk.aPgRef[] array that corresponds to page iPg. */ static void setPageReferenced(IntegrityCk *pCheck, Pgno iPg){ assert( iPg<=pCheck->nPage && sizeof(pCheck->aPgRef[0])==1 ); pCheck->aPgRef[iPg/8] |= (1 << (iPg & 0x07)); } /* ** Add 1 to the reference count for page iPage. If this is the second ** reference to the page, add an error message to pCheck->zErrMsg. ** Return 1 if there are 2 or more references to the page and 0 if ** if this is the first reference to the page. ** ** Also check that the page number is in bounds. */ static int checkRef(IntegrityCk *pCheck, Pgno iPage){ if( iPage>pCheck->nPage || iPage==0 ){ checkAppendMsg(pCheck, "invalid page number %d", iPage); return 1; } if( getPageReferenced(pCheck, iPage) ){ checkAppendMsg(pCheck, "2nd reference to page %d", iPage); return 1; } if( AtomicLoad(&pCheck->db->u1.isInterrupted) ) return 1; setPageReferenced(pCheck, iPage); return 0; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Check that the entry in the pointer-map for page iChild maps to ** page iParent, pointer type ptrType. If not, append an error message ** to pCheck. */ static void checkPtrmap( IntegrityCk *pCheck, /* Integrity check context */ Pgno iChild, /* Child page number */ u8 eType, /* Expected pointer map type */ Pgno iParent /* Expected pointer map parent page number */ ){ int rc; u8 ePtrmapType; Pgno iPtrmapParent; rc = ptrmapGet(pCheck->pBt, iChild, &ePtrmapType, &iPtrmapParent); if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ) pCheck->bOomFault = 1; checkAppendMsg(pCheck, "Failed to read ptrmap key=%d", iChild); return; } if( ePtrmapType!=eType || iPtrmapParent!=iParent ){ checkAppendMsg(pCheck, "Bad ptr map entry key=%d expected=(%d,%d) got=(%d,%d)", iChild, eType, iParent, ePtrmapType, iPtrmapParent); } } #endif /* ** Check the integrity of the freelist or of an overflow page list. ** Verify that the number of pages on the list is N. */ static void checkList( IntegrityCk *pCheck, /* Integrity checking context */ int isFreeList, /* True for a freelist. False for overflow page list */ Pgno iPage, /* Page number for first page in the list */ u32 N /* Expected number of pages in the list */ ){ int i; u32 expected = N; int nErrAtStart = pCheck->nErr; while( iPage!=0 && pCheck->mxErr ){ DbPage *pOvflPage; unsigned char *pOvflData; if( checkRef(pCheck, iPage) ) break; N--; if( sqlite3PagerGet(pCheck->pPager, (Pgno)iPage, &pOvflPage, 0) ){ checkAppendMsg(pCheck, "failed to get page %d", iPage); break; } pOvflData = (unsigned char *)sqlite3PagerGetData(pOvflPage); if( isFreeList ){ u32 n = (u32)get4byte(&pOvflData[4]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pCheck->pBt->autoVacuum ){ checkPtrmap(pCheck, iPage, PTRMAP_FREEPAGE, 0); } #endif if( n>pCheck->pBt->usableSize/4-2 ){ checkAppendMsg(pCheck, "freelist leaf count too big on page %d", iPage); N--; }else{ for(i=0; i<(int)n; i++){ Pgno iFreePage = get4byte(&pOvflData[8+i*4]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pCheck->pBt->autoVacuum ){ checkPtrmap(pCheck, iFreePage, PTRMAP_FREEPAGE, 0); } #endif checkRef(pCheck, iFreePage); } N -= n; } } #ifndef SQLITE_OMIT_AUTOVACUUM else{ /* If this database supports auto-vacuum and iPage is not the last ** page in this overflow list, check that the pointer-map entry for ** the following page matches iPage. */ if( pCheck->pBt->autoVacuum && N>0 ){ i = get4byte(pOvflData); checkPtrmap(pCheck, i, PTRMAP_OVERFLOW2, iPage); } } #endif iPage = get4byte(pOvflData); sqlite3PagerUnref(pOvflPage); } if( N && nErrAtStart==pCheck->nErr ){ checkAppendMsg(pCheck, "%s is %d but should be %d", isFreeList ? "size" : "overflow list length", expected-N, expected); } } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ /* ** An implementation of a min-heap. ** ** aHeap[0] is the number of elements on the heap. aHeap[1] is the ** root element. The daughter nodes of aHeap[N] are aHeap[N*2] ** and aHeap[N*2+1]. ** ** The heap property is this: Every node is less than or equal to both ** of its daughter nodes. A consequence of the heap property is that the ** root node aHeap[1] is always the minimum value currently in the heap. ** ** The btreeHeapInsert() routine inserts an unsigned 32-bit number onto ** the heap, preserving the heap property. The btreeHeapPull() routine ** removes the root element from the heap (the minimum value in the heap) ** and then moves other nodes around as necessary to preserve the heap ** property. ** ** This heap is used for cell overlap and coverage testing. Each u32 ** entry represents the span of a cell or freeblock on a btree page. ** The upper 16 bits are the index of the first byte of a range and the ** lower 16 bits are the index of the last byte of that range. */ static void btreeHeapInsert(u32 *aHeap, u32 x){ u32 j, i = ++aHeap[0]; aHeap[i] = x; while( (j = i/2)>0 && aHeap[j]>aHeap[i] ){ x = aHeap[j]; aHeap[j] = aHeap[i]; aHeap[i] = x; i = j; } } static int btreeHeapPull(u32 *aHeap, u32 *pOut){ u32 j, i, x; if( (x = aHeap[0])==0 ) return 0; *pOut = aHeap[1]; aHeap[1] = aHeap[x]; aHeap[x] = 0xffffffff; aHeap[0]--; i = 1; while( (j = i*2)<=aHeap[0] ){ if( aHeap[j]>aHeap[j+1] ) j++; if( aHeap[i]zPfx; int saved_v1 = pCheck->v1; int saved_v2 = pCheck->v2; u8 savedIsInit = 0; /* Check that the page exists */ pBt = pCheck->pBt; usableSize = pBt->usableSize; if( iPage==0 ) return 0; if( checkRef(pCheck, iPage) ) return 0; pCheck->zPfx = "Page %u: "; pCheck->v1 = iPage; if( (rc = btreeGetPage(pBt, iPage, &pPage, 0))!=0 ){ checkAppendMsg(pCheck, "unable to get the page. error code=%d", rc); goto end_of_check; } /* Clear MemPage.isInit to make sure the corruption detection code in ** btreeInitPage() is executed. */ savedIsInit = pPage->isInit; pPage->isInit = 0; if( (rc = btreeInitPage(pPage))!=0 ){ assert( rc==SQLITE_CORRUPT ); /* The only possible error from InitPage */ checkAppendMsg(pCheck, "btreeInitPage() returns error code %d", rc); goto end_of_check; } if( (rc = btreeComputeFreeSpace(pPage))!=0 ){ assert( rc==SQLITE_CORRUPT ); checkAppendMsg(pCheck, "free space corruption", rc); goto end_of_check; } data = pPage->aData; hdr = pPage->hdrOffset; /* Set up for cell analysis */ pCheck->zPfx = "On tree page %u cell %d: "; contentOffset = get2byteNotZero(&data[hdr+5]); assert( contentOffset<=usableSize ); /* Enforced by btreeInitPage() */ /* EVIDENCE-OF: R-37002-32774 The two-byte integer at offset 3 gives the ** number of cells on the page. */ nCell = get2byte(&data[hdr+3]); assert( pPage->nCell==nCell ); /* EVIDENCE-OF: R-23882-45353 The cell pointer array of a b-tree page ** immediately follows the b-tree page header. */ cellStart = hdr + 12 - 4*pPage->leaf; assert( pPage->aCellIdx==&data[cellStart] ); pCellIdx = &data[cellStart + 2*(nCell-1)]; if( !pPage->leaf ){ /* Analyze the right-child page of internal pages */ pgno = get4byte(&data[hdr+8]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ pCheck->zPfx = "On page %u at right child: "; checkPtrmap(pCheck, pgno, PTRMAP_BTREE, iPage); } #endif depth = checkTreePage(pCheck, pgno, &maxKey, maxKey); keyCanBeEqual = 0; }else{ /* For leaf pages, the coverage check will occur in the same loop ** as the other cell checks, so initialize the heap. */ heap = pCheck->heap; heap[0] = 0; } /* EVIDENCE-OF: R-02776-14802 The cell pointer array consists of K 2-byte ** integer offsets to the cell contents. */ for(i=nCell-1; i>=0 && pCheck->mxErr; i--){ CellInfo info; /* Check cell size */ pCheck->v2 = i; assert( pCellIdx==&data[cellStart + i*2] ); pc = get2byteAligned(pCellIdx); pCellIdx -= 2; if( pcusableSize-4 ){ checkAppendMsg(pCheck, "Offset %d out of range %d..%d", pc, contentOffset, usableSize-4); doCoverageCheck = 0; continue; } pCell = &data[pc]; pPage->xParseCell(pPage, pCell, &info); if( pc+info.nSize>usableSize ){ checkAppendMsg(pCheck, "Extends off end of page"); doCoverageCheck = 0; continue; } /* Check for integer primary key out of range */ if( pPage->intKey ){ if( keyCanBeEqual ? (info.nKey > maxKey) : (info.nKey >= maxKey) ){ checkAppendMsg(pCheck, "Rowid %lld out of order", info.nKey); } maxKey = info.nKey; keyCanBeEqual = 0; /* Only the first key on the page may ==maxKey */ } /* Check the content overflow list */ if( info.nPayload>info.nLocal ){ u32 nPage; /* Number of pages on the overflow chain */ Pgno pgnoOvfl; /* First page of the overflow chain */ assert( pc + info.nSize - 4 <= usableSize ); nPage = (info.nPayload - info.nLocal + usableSize - 5)/(usableSize - 4); pgnoOvfl = get4byte(&pCell[info.nSize - 4]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ checkPtrmap(pCheck, pgnoOvfl, PTRMAP_OVERFLOW1, iPage); } #endif checkList(pCheck, 0, pgnoOvfl, nPage); } if( !pPage->leaf ){ /* Check sanity of left child page for internal pages */ pgno = get4byte(pCell); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ checkPtrmap(pCheck, pgno, PTRMAP_BTREE, iPage); } #endif d2 = checkTreePage(pCheck, pgno, &maxKey, maxKey); keyCanBeEqual = 0; if( d2!=depth ){ checkAppendMsg(pCheck, "Child page depth differs"); depth = d2; } }else{ /* Populate the coverage-checking heap for leaf pages */ btreeHeapInsert(heap, (pc<<16)|(pc+info.nSize-1)); } } *piMinKey = maxKey; /* Check for complete coverage of the page */ pCheck->zPfx = 0; if( doCoverageCheck && pCheck->mxErr>0 ){ /* For leaf pages, the min-heap has already been initialized and the ** cells have already been inserted. But for internal pages, that has ** not yet been done, so do it now */ if( !pPage->leaf ){ heap = pCheck->heap; heap[0] = 0; for(i=nCell-1; i>=0; i--){ u32 size; pc = get2byteAligned(&data[cellStart+i*2]); size = pPage->xCellSize(pPage, &data[pc]); btreeHeapInsert(heap, (pc<<16)|(pc+size-1)); } } /* Add the freeblocks to the min-heap ** ** EVIDENCE-OF: R-20690-50594 The second field of the b-tree page header ** is the offset of the first freeblock, or zero if there are no ** freeblocks on the page. */ i = get2byte(&data[hdr+1]); while( i>0 ){ int size, j; assert( (u32)i<=usableSize-4 ); /* Enforced by btreeComputeFreeSpace() */ size = get2byte(&data[i+2]); assert( (u32)(i+size)<=usableSize ); /* due to btreeComputeFreeSpace() */ btreeHeapInsert(heap, (((u32)i)<<16)|(i+size-1)); /* EVIDENCE-OF: R-58208-19414 The first 2 bytes of a freeblock are a ** big-endian integer which is the offset in the b-tree page of the next ** freeblock in the chain, or zero if the freeblock is the last on the ** chain. */ j = get2byte(&data[i]); /* EVIDENCE-OF: R-06866-39125 Freeblocks are always connected in order of ** increasing offset. */ assert( j==0 || j>i+size ); /* Enforced by btreeComputeFreeSpace() */ assert( (u32)j<=usableSize-4 ); /* Enforced by btreeComputeFreeSpace() */ i = j; } /* Analyze the min-heap looking for overlap between cells and/or ** freeblocks, and counting the number of untracked bytes in nFrag. ** ** Each min-heap entry is of the form: (start_address<<16)|end_address. ** There is an implied first entry the covers the page header, the cell ** pointer index, and the gap between the cell pointer index and the start ** of cell content. ** ** The loop below pulls entries from the min-heap in order and compares ** the start_address against the previous end_address. If there is an ** overlap, that means bytes are used multiple times. If there is a gap, ** that gap is added to the fragmentation count. */ nFrag = 0; prev = contentOffset - 1; /* Implied first min-heap entry */ while( btreeHeapPull(heap,&x) ){ if( (prev&0xffff)>=(x>>16) ){ checkAppendMsg(pCheck, "Multiple uses for byte %u of page %u", x>>16, iPage); break; }else{ nFrag += (x>>16) - (prev&0xffff) - 1; prev = x; } } nFrag += usableSize - (prev&0xffff) - 1; /* EVIDENCE-OF: R-43263-13491 The total number of bytes in all fragments ** is stored in the fifth field of the b-tree page header. ** EVIDENCE-OF: R-07161-27322 The one-byte integer at offset 7 gives the ** number of fragmented free bytes within the cell content area. */ if( heap[0]==0 && nFrag!=data[hdr+7] ){ checkAppendMsg(pCheck, "Fragmentation of %d bytes reported as %d on page %u", nFrag, data[hdr+7], iPage); } } end_of_check: if( !doCoverageCheck ) pPage->isInit = savedIsInit; releasePage(pPage); pCheck->zPfx = saved_zPfx; pCheck->v1 = saved_v1; pCheck->v2 = saved_v2; return depth+1; } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* ** This routine does a complete check of the given BTree file. aRoot[] is ** an array of pages numbers were each page number is the root page of ** a table. nRoot is the number of entries in aRoot. ** ** A read-only or read-write transaction must be opened before calling ** this function. ** ** Write the number of error seen in *pnErr. Except for some memory ** allocation errors, an error message held in memory obtained from ** malloc is returned if *pnErr is non-zero. If *pnErr==0 then NULL is ** returned. If a memory allocation error occurs, NULL is returned. ** ** If the first entry in aRoot[] is 0, that indicates that the list of ** root pages is incomplete. This is a "partial integrity-check". This ** happens when performing an integrity check on a single table. The ** zero is skipped, of course. But in addition, the freelist checks ** and the checks to make sure every page is referenced are also skipped, ** since obviously it is not possible to know which pages are covered by ** the unverified btrees. Except, if aRoot[1] is 1, then the freelist ** checks are still performed. */ SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck( sqlite3 *db, /* Database connection that is running the check */ Btree *p, /* The btree to be checked */ Pgno *aRoot, /* An array of root pages numbers for individual trees */ int nRoot, /* Number of entries in aRoot[] */ int mxErr, /* Stop reporting errors after this many */ int *pnErr /* Write number of errors seen to this variable */ ){ Pgno i; IntegrityCk sCheck; BtShared *pBt = p->pBt; u64 savedDbFlags = pBt->db->flags; char zErr[100]; int bPartial = 0; /* True if not checking all btrees */ int bCkFreelist = 1; /* True to scan the freelist */ VVA_ONLY( int nRef ); assert( nRoot>0 ); /* aRoot[0]==0 means this is a partial check */ if( aRoot[0]==0 ){ assert( nRoot>1 ); bPartial = 1; if( aRoot[1]!=1 ) bCkFreelist = 0; } sqlite3BtreeEnter(p); assert( p->inTrans>TRANS_NONE && pBt->inTransaction>TRANS_NONE ); VVA_ONLY( nRef = sqlite3PagerRefcount(pBt->pPager) ); assert( nRef>=0 ); sCheck.db = db; sCheck.pBt = pBt; sCheck.pPager = pBt->pPager; sCheck.nPage = btreePagecount(sCheck.pBt); sCheck.mxErr = mxErr; sCheck.nErr = 0; sCheck.bOomFault = 0; sCheck.zPfx = 0; sCheck.v1 = 0; sCheck.v2 = 0; sCheck.aPgRef = 0; sCheck.heap = 0; sqlite3StrAccumInit(&sCheck.errMsg, 0, zErr, sizeof(zErr), SQLITE_MAX_LENGTH); sCheck.errMsg.printfFlags = SQLITE_PRINTF_INTERNAL; if( sCheck.nPage==0 ){ goto integrity_ck_cleanup; } sCheck.aPgRef = sqlite3MallocZero((sCheck.nPage / 8)+ 1); if( !sCheck.aPgRef ){ sCheck.bOomFault = 1; goto integrity_ck_cleanup; } sCheck.heap = (u32*)sqlite3PageMalloc( pBt->pageSize ); if( sCheck.heap==0 ){ sCheck.bOomFault = 1; goto integrity_ck_cleanup; } i = PENDING_BYTE_PAGE(pBt); if( i<=sCheck.nPage ) setPageReferenced(&sCheck, i); /* Check the integrity of the freelist */ if( bCkFreelist ){ sCheck.zPfx = "Main freelist: "; checkList(&sCheck, 1, get4byte(&pBt->pPage1->aData[32]), get4byte(&pBt->pPage1->aData[36])); sCheck.zPfx = 0; } /* Check all the tables. */ #ifndef SQLITE_OMIT_AUTOVACUUM if( !bPartial ){ if( pBt->autoVacuum ){ Pgno mx = 0; Pgno mxInHdr; for(i=0; (int)ipPage1->aData[52]); if( mx!=mxInHdr ){ checkAppendMsg(&sCheck, "max rootpage (%d) disagrees with header (%d)", mx, mxInHdr ); } }else if( get4byte(&pBt->pPage1->aData[64])!=0 ){ checkAppendMsg(&sCheck, "incremental_vacuum enabled with a max rootpage of zero" ); } } #endif testcase( pBt->db->flags & SQLITE_CellSizeCk ); pBt->db->flags &= ~(u64)SQLITE_CellSizeCk; for(i=0; (int)iautoVacuum && aRoot[i]>1 && !bPartial ){ checkPtrmap(&sCheck, aRoot[i], PTRMAP_ROOTPAGE, 0); } #endif checkTreePage(&sCheck, aRoot[i], ¬Used, LARGEST_INT64); } pBt->db->flags = savedDbFlags; /* Make sure every page in the file is referenced */ if( !bPartial ){ for(i=1; i<=sCheck.nPage && sCheck.mxErr; i++){ #ifdef SQLITE_OMIT_AUTOVACUUM if( getPageReferenced(&sCheck, i)==0 ){ checkAppendMsg(&sCheck, "Page %d is never used", i); } #else /* If the database supports auto-vacuum, make sure no tables contain ** references to pointer-map pages. */ if( getPageReferenced(&sCheck, i)==0 && (PTRMAP_PAGENO(pBt, i)!=i || !pBt->autoVacuum) ){ checkAppendMsg(&sCheck, "Page %d is never used", i); } if( getPageReferenced(&sCheck, i)!=0 && (PTRMAP_PAGENO(pBt, i)==i && pBt->autoVacuum) ){ checkAppendMsg(&sCheck, "Pointer map page %d is referenced", i); } #endif } } /* Clean up and report errors. */ integrity_ck_cleanup: sqlite3PageFree(sCheck.heap); sqlite3_free(sCheck.aPgRef); if( sCheck.bOomFault ){ sqlite3_str_reset(&sCheck.errMsg); sCheck.nErr++; } *pnErr = sCheck.nErr; if( sCheck.nErr==0 ) sqlite3_str_reset(&sCheck.errMsg); /* Make sure this analysis did not leave any unref() pages. */ assert( nRef==sqlite3PagerRefcount(pBt->pPager) ); sqlite3BtreeLeave(p); return sqlite3StrAccumFinish(&sCheck.errMsg); } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ /* ** Return the full pathname of the underlying database file. Return ** an empty string if the database is in-memory or a TEMP database. ** ** The pager filename is invariant as long as the pager is ** open so it is safe to access without the BtShared mutex. */ SQLITE_PRIVATE const char *sqlite3BtreeGetFilename(Btree *p){ assert( p->pBt->pPager!=0 ); return sqlite3PagerFilename(p->pBt->pPager, 1); } /* ** Return the pathname of the journal file for this database. The return ** value of this routine is the same regardless of whether the journal file ** has been created or not. ** ** The pager journal filename is invariant as long as the pager is ** open so it is safe to access without the BtShared mutex. */ SQLITE_PRIVATE const char *sqlite3BtreeGetJournalname(Btree *p){ assert( p->pBt->pPager!=0 ); return sqlite3PagerJournalname(p->pBt->pPager); } /* ** Return one of SQLITE_TXN_NONE, SQLITE_TXN_READ, or SQLITE_TXN_WRITE ** to describe the current transaction state of Btree p. */ SQLITE_PRIVATE int sqlite3BtreeTxnState(Btree *p){ assert( p==0 || sqlite3_mutex_held(p->db->mutex) ); return p ? p->inTrans : 0; } #ifndef SQLITE_OMIT_WAL /* ** Run a checkpoint on the Btree passed as the first argument. ** ** Return SQLITE_LOCKED if this or any other connection has an open ** transaction on the shared-cache the argument Btree is connected to. ** ** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. */ SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree *p, int eMode, int *pnLog, int *pnCkpt){ int rc = SQLITE_OK; if( p ){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); if( pBt->inTransaction!=TRANS_NONE ){ rc = SQLITE_LOCKED; }else{ rc = sqlite3PagerCheckpoint(pBt->pPager, p->db, eMode, pnLog, pnCkpt); } sqlite3BtreeLeave(p); } return rc; } #endif /* ** Return true if there is currently a backup running on Btree p. */ SQLITE_PRIVATE int sqlite3BtreeIsInBackup(Btree *p){ assert( p ); assert( sqlite3_mutex_held(p->db->mutex) ); return p->nBackup!=0; } /* ** This function returns a pointer to a blob of memory associated with ** a single shared-btree. The memory is used by client code for its own ** purposes (for example, to store a high-level schema associated with ** the shared-btree). The btree layer manages reference counting issues. ** ** The first time this is called on a shared-btree, nBytes bytes of memory ** are allocated, zeroed, and returned to the caller. For each subsequent ** call the nBytes parameter is ignored and a pointer to the same blob ** of memory returned. ** ** If the nBytes parameter is 0 and the blob of memory has not yet been ** allocated, a null pointer is returned. If the blob has already been ** allocated, it is returned as normal. ** ** Just before the shared-btree is closed, the function passed as the ** xFree argument when the memory allocation was made is invoked on the ** blob of allocated memory. The xFree function should not call sqlite3_free() ** on the memory, the btree layer does that. */ SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); if( !pBt->pSchema && nBytes ){ pBt->pSchema = sqlite3DbMallocZero(0, nBytes); pBt->xFreeSchema = xFree; } sqlite3BtreeLeave(p); return pBt->pSchema; } /* ** Return SQLITE_LOCKED_SHAREDCACHE if another user of the same shared ** btree as the argument handle holds an exclusive lock on the ** sqlite_schema table. Otherwise SQLITE_OK. */ SQLITE_PRIVATE int sqlite3BtreeSchemaLocked(Btree *p){ int rc; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); rc = querySharedCacheTableLock(p, SCHEMA_ROOT, READ_LOCK); assert( rc==SQLITE_OK || rc==SQLITE_LOCKED_SHAREDCACHE ); sqlite3BtreeLeave(p); return rc; } #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Obtain a lock on the table whose root page is iTab. The ** lock is a write lock if isWritelock is true or a read lock ** if it is false. */ SQLITE_PRIVATE int sqlite3BtreeLockTable(Btree *p, int iTab, u8 isWriteLock){ int rc = SQLITE_OK; assert( p->inTrans!=TRANS_NONE ); if( p->sharable ){ u8 lockType = READ_LOCK + isWriteLock; assert( READ_LOCK+1==WRITE_LOCK ); assert( isWriteLock==0 || isWriteLock==1 ); sqlite3BtreeEnter(p); rc = querySharedCacheTableLock(p, iTab, lockType); if( rc==SQLITE_OK ){ rc = setSharedCacheTableLock(p, iTab, lockType); } sqlite3BtreeLeave(p); } return rc; } #endif #ifndef SQLITE_OMIT_INCRBLOB /* ** Argument pCsr must be a cursor opened for writing on an ** INTKEY table currently pointing at a valid table entry. ** This function modifies the data stored as part of that entry. ** ** Only the data content may only be modified, it is not possible to ** change the length of the data stored. If this function is called with ** parameters that attempt to write past the end of the existing data, ** no modifications are made and SQLITE_CORRUPT is returned. */ SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){ int rc; assert( cursorOwnsBtShared(pCsr) ); assert( sqlite3_mutex_held(pCsr->pBtree->db->mutex) ); assert( pCsr->curFlags & BTCF_Incrblob ); rc = restoreCursorPosition(pCsr); if( rc!=SQLITE_OK ){ return rc; } assert( pCsr->eState!=CURSOR_REQUIRESEEK ); if( pCsr->eState!=CURSOR_VALID ){ return SQLITE_ABORT; } /* Save the positions of all other cursors open on this table. This is ** required in case any of them are holding references to an xFetch ** version of the b-tree page modified by the accessPayload call below. ** ** Note that pCsr must be open on a INTKEY table and saveCursorPosition() ** and hence saveAllCursors() cannot fail on a BTREE_INTKEY table, hence ** saveAllCursors can only return SQLITE_OK. */ VVA_ONLY(rc =) saveAllCursors(pCsr->pBt, pCsr->pgnoRoot, pCsr); assert( rc==SQLITE_OK ); /* Check some assumptions: ** (a) the cursor is open for writing, ** (b) there is a read/write transaction open, ** (c) the connection holds a write-lock on the table (if required), ** (d) there are no conflicting read-locks, and ** (e) the cursor points at a valid row of an intKey table. */ if( (pCsr->curFlags & BTCF_WriteFlag)==0 ){ return SQLITE_READONLY; } assert( (pCsr->pBt->btsFlags & BTS_READ_ONLY)==0 && pCsr->pBt->inTransaction==TRANS_WRITE ); assert( hasSharedCacheTableLock(pCsr->pBtree, pCsr->pgnoRoot, 0, 2) ); assert( !hasReadConflicts(pCsr->pBtree, pCsr->pgnoRoot) ); assert( pCsr->pPage->intKey ); return accessPayload(pCsr, offset, amt, (unsigned char *)z, 1); } /* ** Mark this cursor as an incremental blob cursor. */ SQLITE_PRIVATE void sqlite3BtreeIncrblobCursor(BtCursor *pCur){ pCur->curFlags |= BTCF_Incrblob; pCur->pBtree->hasIncrblobCur = 1; } #endif /* ** Set both the "read version" (single byte at byte offset 18) and ** "write version" (single byte at byte offset 19) fields in the database ** header to iVersion. */ SQLITE_PRIVATE int sqlite3BtreeSetVersion(Btree *pBtree, int iVersion){ BtShared *pBt = pBtree->pBt; int rc; /* Return code */ assert( iVersion==1 || iVersion==2 ); /* If setting the version fields to 1, do not automatically open the ** WAL connection, even if the version fields are currently set to 2. */ pBt->btsFlags &= ~BTS_NO_WAL; if( iVersion==1 ) pBt->btsFlags |= BTS_NO_WAL; rc = sqlite3BtreeBeginTrans(pBtree, 0, 0); if( rc==SQLITE_OK ){ u8 *aData = pBt->pPage1->aData; if( aData[18]!=(u8)iVersion || aData[19]!=(u8)iVersion ){ rc = sqlite3BtreeBeginTrans(pBtree, 2, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( rc==SQLITE_OK ){ aData[18] = (u8)iVersion; aData[19] = (u8)iVersion; } } } } pBt->btsFlags &= ~BTS_NO_WAL; return rc; } /* ** Return true if the cursor has a hint specified. This routine is ** only used from within assert() statements */ SQLITE_PRIVATE int sqlite3BtreeCursorHasHint(BtCursor *pCsr, unsigned int mask){ return (pCsr->hints & mask)!=0; } /* ** Return true if the given Btree is read-only. */ SQLITE_PRIVATE int sqlite3BtreeIsReadonly(Btree *p){ return (p->pBt->btsFlags & BTS_READ_ONLY)!=0; } /* ** Return the size of the header added to each page by this module. */ SQLITE_PRIVATE int sqlite3HeaderSizeBtree(void){ return ROUND8(sizeof(MemPage)); } #if !defined(SQLITE_OMIT_SHARED_CACHE) /* ** Return true if the Btree passed as the only argument is sharable. */ SQLITE_PRIVATE int sqlite3BtreeSharable(Btree *p){ return p->sharable; } /* ** Return the number of connections to the BtShared object accessed by ** the Btree handle passed as the only argument. For private caches ** this is always 1. For shared caches it may be 1 or greater. */ SQLITE_PRIVATE int sqlite3BtreeConnectionCount(Btree *p){ testcase( p->sharable ); return p->pBt->nRef; } #endif /************** End of btree.c ***********************************************/ /************** Begin file backup.c ******************************************/ /* ** 2009 January 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the implementation of the sqlite3_backup_XXX() ** API functions and the related features. */ /* #include "sqliteInt.h" */ /* #include "btreeInt.h" */ /* ** Structure allocated for each backup operation. */ struct sqlite3_backup { sqlite3* pDestDb; /* Destination database handle */ Btree *pDest; /* Destination b-tree file */ u32 iDestSchema; /* Original schema cookie in destination */ int bDestLocked; /* True once a write-transaction is open on pDest */ Pgno iNext; /* Page number of the next source page to copy */ sqlite3* pSrcDb; /* Source database handle */ Btree *pSrc; /* Source b-tree file */ int rc; /* Backup process error code */ /* These two variables are set by every call to backup_step(). They are ** read by calls to backup_remaining() and backup_pagecount(). */ Pgno nRemaining; /* Number of pages left to copy */ Pgno nPagecount; /* Total number of pages to copy */ int isAttached; /* True once backup has been registered with pager */ sqlite3_backup *pNext; /* Next backup associated with source pager */ }; /* ** THREAD SAFETY NOTES: ** ** Once it has been created using backup_init(), a single sqlite3_backup ** structure may be accessed via two groups of thread-safe entry points: ** ** * Via the sqlite3_backup_XXX() API function backup_step() and ** backup_finish(). Both these functions obtain the source database ** handle mutex and the mutex associated with the source BtShared ** structure, in that order. ** ** * Via the BackupUpdate() and BackupRestart() functions, which are ** invoked by the pager layer to report various state changes in ** the page cache associated with the source database. The mutex ** associated with the source database BtShared structure will always ** be held when either of these functions are invoked. ** ** The other sqlite3_backup_XXX() API functions, backup_remaining() and ** backup_pagecount() are not thread-safe functions. If they are called ** while some other thread is calling backup_step() or backup_finish(), ** the values returned may be invalid. There is no way for a call to ** BackupUpdate() or BackupRestart() to interfere with backup_remaining() ** or backup_pagecount(). ** ** Depending on the SQLite configuration, the database handles and/or ** the Btree objects may have their own mutexes that require locking. ** Non-sharable Btrees (in-memory databases for example), do not have ** associated mutexes. */ /* ** Return a pointer corresponding to database zDb (i.e. "main", "temp") ** in connection handle pDb. If such a database cannot be found, return ** a NULL pointer and write an error message to pErrorDb. ** ** If the "temp" database is requested, it may need to be opened by this ** function. If an error occurs while doing so, return 0 and write an ** error message to pErrorDb. */ static Btree *findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb){ int i = sqlite3FindDbName(pDb, zDb); if( i==1 ){ Parse sParse; int rc = 0; sqlite3ParseObjectInit(&sParse,pDb); if( sqlite3OpenTempDatabase(&sParse) ){ sqlite3ErrorWithMsg(pErrorDb, sParse.rc, "%s", sParse.zErrMsg); rc = SQLITE_ERROR; } sqlite3DbFree(pErrorDb, sParse.zErrMsg); sqlite3ParseObjectReset(&sParse); if( rc ){ return 0; } } if( i<0 ){ sqlite3ErrorWithMsg(pErrorDb, SQLITE_ERROR, "unknown database %s", zDb); return 0; } return pDb->aDb[i].pBt; } /* ** Attempt to set the page size of the destination to match the page size ** of the source. */ static int setDestPgsz(sqlite3_backup *p){ int rc; rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),0,0); return rc; } /* ** Check that there is no open read-transaction on the b-tree passed as the ** second argument. If there is not, return SQLITE_OK. Otherwise, if there ** is an open read-transaction, return SQLITE_ERROR and leave an error ** message in database handle db. */ static int checkReadTransaction(sqlite3 *db, Btree *p){ if( sqlite3BtreeTxnState(p)!=SQLITE_TXN_NONE ){ sqlite3ErrorWithMsg(db, SQLITE_ERROR, "destination database is in use"); return SQLITE_ERROR; } return SQLITE_OK; } /* ** Create an sqlite3_backup process to copy the contents of zSrcDb from ** connection handle pSrcDb to zDestDb in pDestDb. If successful, return ** a pointer to the new sqlite3_backup object. ** ** If an error occurs, NULL is returned and an error code and error message ** stored in database handle pDestDb. */ SQLITE_API sqlite3_backup *sqlite3_backup_init( sqlite3* pDestDb, /* Database to write to */ const char *zDestDb, /* Name of database within pDestDb */ sqlite3* pSrcDb, /* Database connection to read from */ const char *zSrcDb /* Name of database within pSrcDb */ ){ sqlite3_backup *p; /* Value to return */ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(pSrcDb)||!sqlite3SafetyCheckOk(pDestDb) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif /* Lock the source database handle. The destination database ** handle is not locked in this routine, but it is locked in ** sqlite3_backup_step(). The user is required to ensure that no ** other thread accesses the destination handle for the duration ** of the backup operation. Any attempt to use the destination ** database connection while a backup is in progress may cause ** a malfunction or a deadlock. */ sqlite3_mutex_enter(pSrcDb->mutex); sqlite3_mutex_enter(pDestDb->mutex); if( pSrcDb==pDestDb ){ sqlite3ErrorWithMsg( pDestDb, SQLITE_ERROR, "source and destination must be distinct" ); p = 0; }else { /* Allocate space for a new sqlite3_backup object... ** EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a ** call to sqlite3_backup_init() and is destroyed by a call to ** sqlite3_backup_finish(). */ p = (sqlite3_backup *)sqlite3MallocZero(sizeof(sqlite3_backup)); if( !p ){ sqlite3Error(pDestDb, SQLITE_NOMEM_BKPT); } } /* If the allocation succeeded, populate the new object. */ if( p ){ p->pSrc = findBtree(pDestDb, pSrcDb, zSrcDb); p->pDest = findBtree(pDestDb, pDestDb, zDestDb); p->pDestDb = pDestDb; p->pSrcDb = pSrcDb; p->iNext = 1; p->isAttached = 0; if( 0==p->pSrc || 0==p->pDest || checkReadTransaction(pDestDb, p->pDest)!=SQLITE_OK ){ /* One (or both) of the named databases did not exist or an OOM ** error was hit. Or there is a transaction open on the destination ** database. The error has already been written into the pDestDb ** handle. All that is left to do here is free the sqlite3_backup ** structure. */ sqlite3_free(p); p = 0; } } if( p ){ p->pSrc->nBackup++; } sqlite3_mutex_leave(pDestDb->mutex); sqlite3_mutex_leave(pSrcDb->mutex); return p; } /* ** Argument rc is an SQLite error code. Return true if this error is ** considered fatal if encountered during a backup operation. All errors ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED. */ static int isFatalError(int rc){ return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED)); } /* ** Parameter zSrcData points to a buffer containing the data for ** page iSrcPg from the source database. Copy this data into the ** destination database. */ static int backupOnePage( sqlite3_backup *p, /* Backup handle */ Pgno iSrcPg, /* Source database page to backup */ const u8 *zSrcData, /* Source database page data */ int bUpdate /* True for an update, false otherwise */ ){ Pager * const pDestPager = sqlite3BtreePager(p->pDest); const int nSrcPgsz = sqlite3BtreeGetPageSize(p->pSrc); int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest); const int nCopy = MIN(nSrcPgsz, nDestPgsz); const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; int rc = SQLITE_OK; i64 iOff; assert( sqlite3BtreeGetReserveNoMutex(p->pSrc)>=0 ); assert( p->bDestLocked ); assert( !isFatalError(p->rc) ); assert( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ); assert( zSrcData ); /* Catch the case where the destination is an in-memory database and the ** page sizes of the source and destination differ. */ if( nSrcPgsz!=nDestPgsz && sqlite3PagerIsMemdb(pDestPager) ){ rc = SQLITE_READONLY; } /* This loop runs once for each destination page spanned by the source ** page. For each iteration, variable iOff is set to the byte offset ** of the destination page. */ for(iOff=iEnd-(i64)nSrcPgsz; rc==SQLITE_OK && iOffpDest->pBt) ) continue; if( SQLITE_OK==(rc = sqlite3PagerGet(pDestPager, iDest, &pDestPg, 0)) && SQLITE_OK==(rc = sqlite3PagerWrite(pDestPg)) ){ const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; u8 *zDestData = sqlite3PagerGetData(pDestPg); u8 *zOut = &zDestData[iOff%nDestPgsz]; /* Copy the data from the source page into the destination page. ** Then clear the Btree layer MemPage.isInit flag. Both this module ** and the pager code use this trick (clearing the first byte ** of the page 'extra' space to invalidate the Btree layers ** cached parse of the page). MemPage.isInit is marked ** "MUST BE FIRST" for this purpose. */ memcpy(zOut, zIn, nCopy); ((u8 *)sqlite3PagerGetExtra(pDestPg))[0] = 0; if( iOff==0 && bUpdate==0 ){ sqlite3Put4byte(&zOut[28], sqlite3BtreeLastPage(p->pSrc)); } } sqlite3PagerUnref(pDestPg); } return rc; } /* ** If pFile is currently larger than iSize bytes, then truncate it to ** exactly iSize bytes. If pFile is not larger than iSize bytes, then ** this function is a no-op. ** ** Return SQLITE_OK if everything is successful, or an SQLite error ** code if an error occurs. */ static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){ i64 iCurrent; int rc = sqlite3OsFileSize(pFile, &iCurrent); if( rc==SQLITE_OK && iCurrent>iSize ){ rc = sqlite3OsTruncate(pFile, iSize); } return rc; } /* ** Register this backup object with the associated source pager for ** callbacks when pages are changed or the cache invalidated. */ static void attachBackupObject(sqlite3_backup *p){ sqlite3_backup **pp; assert( sqlite3BtreeHoldsMutex(p->pSrc) ); pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc)); p->pNext = *pp; *pp = p; p->isAttached = 1; } /* ** Copy nPage pages from the source b-tree to the destination. */ SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage){ int rc; int destMode; /* Destination journal mode */ int pgszSrc = 0; /* Source page size */ int pgszDest = 0; /* Destination page size */ #ifdef SQLITE_ENABLE_API_ARMOR if( p==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(p->pSrcDb->mutex); sqlite3BtreeEnter(p->pSrc); if( p->pDestDb ){ sqlite3_mutex_enter(p->pDestDb->mutex); } rc = p->rc; if( !isFatalError(rc) ){ Pager * const pSrcPager = sqlite3BtreePager(p->pSrc); /* Source pager */ Pager * const pDestPager = sqlite3BtreePager(p->pDest); /* Dest pager */ int ii; /* Iterator variable */ int nSrcPage = -1; /* Size of source db in pages */ int bCloseTrans = 0; /* True if src db requires unlocking */ /* If the source pager is currently in a write-transaction, return ** SQLITE_BUSY immediately. */ if( p->pDestDb && p->pSrc->pBt->inTransaction==TRANS_WRITE ){ rc = SQLITE_BUSY; }else{ rc = SQLITE_OK; } /* If there is no open read-transaction on the source database, open ** one now. If a transaction is opened here, then it will be closed ** before this function exits. */ if( rc==SQLITE_OK && SQLITE_TXN_NONE==sqlite3BtreeTxnState(p->pSrc) ){ rc = sqlite3BtreeBeginTrans(p->pSrc, 0, 0); bCloseTrans = 1; } /* If the destination database has not yet been locked (i.e. if this ** is the first call to backup_step() for the current backup operation), ** try to set its page size to the same as the source database. This ** is especially important on ZipVFS systems, as in that case it is ** not possible to create a database file that uses one page size by ** writing to it with another. */ if( p->bDestLocked==0 && rc==SQLITE_OK && setDestPgsz(p)==SQLITE_NOMEM ){ rc = SQLITE_NOMEM; } /* Lock the destination database, if it is not locked already. */ if( SQLITE_OK==rc && p->bDestLocked==0 && SQLITE_OK==(rc = sqlite3BtreeBeginTrans(p->pDest, 2, (int*)&p->iDestSchema)) ){ p->bDestLocked = 1; } /* Do not allow backup if the destination database is in WAL mode ** and the page sizes are different between source and destination */ pgszSrc = sqlite3BtreeGetPageSize(p->pSrc); pgszDest = sqlite3BtreeGetPageSize(p->pDest); destMode = sqlite3PagerGetJournalMode(sqlite3BtreePager(p->pDest)); if( SQLITE_OK==rc && destMode==PAGER_JOURNALMODE_WAL && pgszSrc!=pgszDest ){ rc = SQLITE_READONLY; } /* Now that there is a read-lock on the source database, query the ** source pager for the number of pages in the database. */ nSrcPage = (int)sqlite3BtreeLastPage(p->pSrc); assert( nSrcPage>=0 ); for(ii=0; (nPage<0 || iiiNext<=(Pgno)nSrcPage && !rc; ii++){ const Pgno iSrcPg = p->iNext; /* Source page number */ if( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ){ DbPage *pSrcPg; /* Source page object */ rc = sqlite3PagerGet(pSrcPager, iSrcPg, &pSrcPg,PAGER_GET_READONLY); if( rc==SQLITE_OK ){ rc = backupOnePage(p, iSrcPg, sqlite3PagerGetData(pSrcPg), 0); sqlite3PagerUnref(pSrcPg); } } p->iNext++; } if( rc==SQLITE_OK ){ p->nPagecount = nSrcPage; p->nRemaining = nSrcPage+1-p->iNext; if( p->iNext>(Pgno)nSrcPage ){ rc = SQLITE_DONE; }else if( !p->isAttached ){ attachBackupObject(p); } } /* Update the schema version field in the destination database. This ** is to make sure that the schema-version really does change in ** the case where the source and destination databases have the ** same schema version. */ if( rc==SQLITE_DONE ){ if( nSrcPage==0 ){ rc = sqlite3BtreeNewDb(p->pDest); nSrcPage = 1; } if( rc==SQLITE_OK || rc==SQLITE_DONE ){ rc = sqlite3BtreeUpdateMeta(p->pDest,1,p->iDestSchema+1); } if( rc==SQLITE_OK ){ if( p->pDestDb ){ sqlite3ResetAllSchemasOfConnection(p->pDestDb); } if( destMode==PAGER_JOURNALMODE_WAL ){ rc = sqlite3BtreeSetVersion(p->pDest, 2); } } if( rc==SQLITE_OK ){ int nDestTruncate; /* Set nDestTruncate to the final number of pages in the destination ** database. The complication here is that the destination page ** size may be different to the source page size. ** ** If the source page size is smaller than the destination page size, ** round up. In this case the call to sqlite3OsTruncate() below will ** fix the size of the file. However it is important to call ** sqlite3PagerTruncateImage() here so that any pages in the ** destination file that lie beyond the nDestTruncate page mark are ** journalled by PagerCommitPhaseOne() before they are destroyed ** by the file truncation. */ assert( pgszSrc==sqlite3BtreeGetPageSize(p->pSrc) ); assert( pgszDest==sqlite3BtreeGetPageSize(p->pDest) ); if( pgszSrcpDest->pBt) ){ nDestTruncate--; } }else{ nDestTruncate = nSrcPage * (pgszSrc/pgszDest); } assert( nDestTruncate>0 ); if( pgszSrc= iSize || ( nDestTruncate==(int)(PENDING_BYTE_PAGE(p->pDest->pBt)-1) && iSize>=PENDING_BYTE && iSize<=PENDING_BYTE+pgszDest )); /* This block ensures that all data required to recreate the original ** database has been stored in the journal for pDestPager and the ** journal synced to disk. So at this point we may safely modify ** the database file in any way, knowing that if a power failure ** occurs, the original database will be reconstructed from the ** journal file. */ sqlite3PagerPagecount(pDestPager, &nDstPage); for(iPg=nDestTruncate; rc==SQLITE_OK && iPg<=(Pgno)nDstPage; iPg++){ if( iPg!=PENDING_BYTE_PAGE(p->pDest->pBt) ){ DbPage *pPg; rc = sqlite3PagerGet(pDestPager, iPg, &pPg, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pPg); sqlite3PagerUnref(pPg); } } } if( rc==SQLITE_OK ){ rc = sqlite3PagerCommitPhaseOne(pDestPager, 0, 1); } /* Write the extra pages and truncate the database file as required */ iEnd = MIN(PENDING_BYTE + pgszDest, iSize); for( iOff=PENDING_BYTE+pgszSrc; rc==SQLITE_OK && iOffpDest, 0)) ){ rc = SQLITE_DONE; } } } /* If bCloseTrans is true, then this function opened a read transaction ** on the source database. Close the read transaction here. There is ** no need to check the return values of the btree methods here, as ** "committing" a read-only transaction cannot fail. */ if( bCloseTrans ){ TESTONLY( int rc2 ); TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0); TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0); assert( rc2==SQLITE_OK ); } if( rc==SQLITE_IOERR_NOMEM ){ rc = SQLITE_NOMEM_BKPT; } p->rc = rc; } if( p->pDestDb ){ sqlite3_mutex_leave(p->pDestDb->mutex); } sqlite3BtreeLeave(p->pSrc); sqlite3_mutex_leave(p->pSrcDb->mutex); return rc; } /* ** Release all resources associated with an sqlite3_backup* handle. */ SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p){ sqlite3_backup **pp; /* Ptr to head of pagers backup list */ sqlite3 *pSrcDb; /* Source database connection */ int rc; /* Value to return */ /* Enter the mutexes */ if( p==0 ) return SQLITE_OK; pSrcDb = p->pSrcDb; sqlite3_mutex_enter(pSrcDb->mutex); sqlite3BtreeEnter(p->pSrc); if( p->pDestDb ){ sqlite3_mutex_enter(p->pDestDb->mutex); } /* Detach this backup from the source pager. */ if( p->pDestDb ){ p->pSrc->nBackup--; } if( p->isAttached ){ pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc)); assert( pp!=0 ); while( *pp!=p ){ pp = &(*pp)->pNext; assert( pp!=0 ); } *pp = p->pNext; } /* If a transaction is still open on the Btree, roll it back. */ sqlite3BtreeRollback(p->pDest, SQLITE_OK, 0); /* Set the error code of the destination database handle. */ rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc; if( p->pDestDb ){ sqlite3Error(p->pDestDb, rc); /* Exit the mutexes and free the backup context structure. */ sqlite3LeaveMutexAndCloseZombie(p->pDestDb); } sqlite3BtreeLeave(p->pSrc); if( p->pDestDb ){ /* EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a ** call to sqlite3_backup_init() and is destroyed by a call to ** sqlite3_backup_finish(). */ sqlite3_free(p); } sqlite3LeaveMutexAndCloseZombie(pSrcDb); return rc; } /* ** Return the number of pages still to be backed up as of the most recent ** call to sqlite3_backup_step(). */ SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p){ #ifdef SQLITE_ENABLE_API_ARMOR if( p==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return p->nRemaining; } /* ** Return the total number of pages in the source database as of the most ** recent call to sqlite3_backup_step(). */ SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p){ #ifdef SQLITE_ENABLE_API_ARMOR if( p==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return p->nPagecount; } /* ** This function is called after the contents of page iPage of the ** source database have been modified. If page iPage has already been ** copied into the destination database, then the data written to the ** destination is now invalidated. The destination copy of iPage needs ** to be updated with the new data before the backup operation is ** complete. ** ** It is assumed that the mutex associated with the BtShared object ** corresponding to the source database is held when this function is ** called. */ static SQLITE_NOINLINE void backupUpdate( sqlite3_backup *p, Pgno iPage, const u8 *aData ){ assert( p!=0 ); do{ assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) ); if( !isFatalError(p->rc) && iPageiNext ){ /* The backup process p has already copied page iPage. But now it ** has been modified by a transaction on the source pager. Copy ** the new data into the backup. */ int rc; assert( p->pDestDb ); sqlite3_mutex_enter(p->pDestDb->mutex); rc = backupOnePage(p, iPage, aData, 1); sqlite3_mutex_leave(p->pDestDb->mutex); assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED ); if( rc!=SQLITE_OK ){ p->rc = rc; } } }while( (p = p->pNext)!=0 ); } SQLITE_PRIVATE void sqlite3BackupUpdate(sqlite3_backup *pBackup, Pgno iPage, const u8 *aData){ if( pBackup ) backupUpdate(pBackup, iPage, aData); } /* ** Restart the backup process. This is called when the pager layer ** detects that the database has been modified by an external database ** connection. In this case there is no way of knowing which of the ** pages that have been copied into the destination database are still ** valid and which are not, so the entire process needs to be restarted. ** ** It is assumed that the mutex associated with the BtShared object ** corresponding to the source database is held when this function is ** called. */ SQLITE_PRIVATE void sqlite3BackupRestart(sqlite3_backup *pBackup){ sqlite3_backup *p; /* Iterator variable */ for(p=pBackup; p; p=p->pNext){ assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) ); p->iNext = 1; } } #ifndef SQLITE_OMIT_VACUUM /* ** Copy the complete content of pBtFrom into pBtTo. A transaction ** must be active for both files. ** ** The size of file pTo may be reduced by this operation. If anything ** goes wrong, the transaction on pTo is rolled back. If successful, the ** transaction is committed before returning. */ SQLITE_PRIVATE int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){ int rc; sqlite3_file *pFd; /* File descriptor for database pTo */ sqlite3_backup b; sqlite3BtreeEnter(pTo); sqlite3BtreeEnter(pFrom); assert( sqlite3BtreeTxnState(pTo)==SQLITE_TXN_WRITE ); pFd = sqlite3PagerFile(sqlite3BtreePager(pTo)); if( pFd->pMethods ){ i64 nByte = sqlite3BtreeGetPageSize(pFrom)*(i64)sqlite3BtreeLastPage(pFrom); rc = sqlite3OsFileControl(pFd, SQLITE_FCNTL_OVERWRITE, &nByte); if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; if( rc ) goto copy_finished; } /* Set up an sqlite3_backup object. sqlite3_backup.pDestDb must be set ** to 0. This is used by the implementations of sqlite3_backup_step() ** and sqlite3_backup_finish() to detect that they are being called ** from this function, not directly by the user. */ memset(&b, 0, sizeof(b)); b.pSrcDb = pFrom->db; b.pSrc = pFrom; b.pDest = pTo; b.iNext = 1; /* 0x7FFFFFFF is the hard limit for the number of pages in a database ** file. By passing this as the number of pages to copy to ** sqlite3_backup_step(), we can guarantee that the copy finishes ** within a single call (unless an error occurs). The assert() statement ** checks this assumption - (p->rc) should be set to either SQLITE_DONE ** or an error code. */ sqlite3_backup_step(&b, 0x7FFFFFFF); assert( b.rc!=SQLITE_OK ); rc = sqlite3_backup_finish(&b); if( rc==SQLITE_OK ){ pTo->pBt->btsFlags &= ~BTS_PAGESIZE_FIXED; }else{ sqlite3PagerClearCache(sqlite3BtreePager(b.pDest)); } assert( sqlite3BtreeTxnState(pTo)!=SQLITE_TXN_WRITE ); copy_finished: sqlite3BtreeLeave(pFrom); sqlite3BtreeLeave(pTo); return rc; } #endif /* SQLITE_OMIT_VACUUM */ /************** End of backup.c **********************************************/ /************** Begin file vdbemem.c *****************************************/ /* ** 2004 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code use to manipulate "Mem" structure. A "Mem" ** stores a single value in the VDBE. Mem is an opaque structure visible ** only within the VDBE. Interface routines refer to a Mem using the ** name sqlite_value */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* True if X is a power of two. 0 is considered a power of two here. ** In other words, return true if X has at most one bit set. */ #define ISPOWEROF2(X) (((X)&((X)-1))==0) #ifdef SQLITE_DEBUG /* ** Check invariants on a Mem object. ** ** This routine is intended for use inside of assert() statements, like ** this: assert( sqlite3VdbeCheckMemInvariants(pMem) ); */ SQLITE_PRIVATE int sqlite3VdbeCheckMemInvariants(Mem *p){ /* If MEM_Dyn is set then Mem.xDel!=0. ** Mem.xDel might not be initialized if MEM_Dyn is clear. */ assert( (p->flags & MEM_Dyn)==0 || p->xDel!=0 ); /* MEM_Dyn may only be set if Mem.szMalloc==0. In this way we ** ensure that if Mem.szMalloc>0 then it is safe to do ** Mem.z = Mem.zMalloc without having to check Mem.flags&MEM_Dyn. ** That saves a few cycles in inner loops. */ assert( (p->flags & MEM_Dyn)==0 || p->szMalloc==0 ); /* Cannot have more than one of MEM_Int, MEM_Real, or MEM_IntReal */ assert( ISPOWEROF2(p->flags & (MEM_Int|MEM_Real|MEM_IntReal)) ); if( p->flags & MEM_Null ){ /* Cannot be both MEM_Null and some other type */ assert( (p->flags & (MEM_Int|MEM_Real|MEM_Str|MEM_Blob|MEM_Agg))==0 ); /* If MEM_Null is set, then either the value is a pure NULL (the usual ** case) or it is a pointer set using sqlite3_bind_pointer() or ** sqlite3_result_pointer(). If a pointer, then MEM_Term must also be ** set. */ if( (p->flags & (MEM_Term|MEM_Subtype))==(MEM_Term|MEM_Subtype) ){ /* This is a pointer type. There may be a flag to indicate what to ** do with the pointer. */ assert( ((p->flags&MEM_Dyn)!=0 ? 1 : 0) + ((p->flags&MEM_Ephem)!=0 ? 1 : 0) + ((p->flags&MEM_Static)!=0 ? 1 : 0) <= 1 ); /* No other bits set */ assert( (p->flags & ~(MEM_Null|MEM_Term|MEM_Subtype|MEM_FromBind |MEM_Dyn|MEM_Ephem|MEM_Static))==0 ); }else{ /* A pure NULL might have other flags, such as MEM_Static, MEM_Dyn, ** MEM_Ephem, MEM_Cleared, or MEM_Subtype */ } }else{ /* The MEM_Cleared bit is only allowed on NULLs */ assert( (p->flags & MEM_Cleared)==0 ); } /* The szMalloc field holds the correct memory allocation size */ assert( p->szMalloc==0 || (p->flags==MEM_Undefined && p->szMalloc<=sqlite3DbMallocSize(p->db,p->zMalloc)) || p->szMalloc==sqlite3DbMallocSize(p->db,p->zMalloc)); /* If p holds a string or blob, the Mem.z must point to exactly ** one of the following: ** ** (1) Memory in Mem.zMalloc and managed by the Mem object ** (2) Memory to be freed using Mem.xDel ** (3) An ephemeral string or blob ** (4) A static string or blob */ if( (p->flags & (MEM_Str|MEM_Blob)) && p->n>0 ){ assert( ((p->szMalloc>0 && p->z==p->zMalloc)? 1 : 0) + ((p->flags&MEM_Dyn)!=0 ? 1 : 0) + ((p->flags&MEM_Ephem)!=0 ? 1 : 0) + ((p->flags&MEM_Static)!=0 ? 1 : 0) == 1 ); } return 1; } #endif /* ** Render a Mem object which is one of MEM_Int, MEM_Real, or MEM_IntReal ** into a buffer. */ static void vdbeMemRenderNum(int sz, char *zBuf, Mem *p){ StrAccum acc; assert( p->flags & (MEM_Int|MEM_Real|MEM_IntReal) ); assert( sz>22 ); if( p->flags & MEM_Int ){ #if GCC_VERSION>=7000000 /* Work-around for GCC bug ** https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96270 */ i64 x; assert( (p->flags&MEM_Int)*2==sizeof(x) ); memcpy(&x, (char*)&p->u, (p->flags&MEM_Int)*2); sqlite3Int64ToText(x, zBuf); #else sqlite3Int64ToText(p->u.i, zBuf); #endif }else{ sqlite3StrAccumInit(&acc, 0, zBuf, sz, 0); sqlite3_str_appendf(&acc, "%!.15g", (p->flags & MEM_IntReal)!=0 ? (double)p->u.i : p->u.r); assert( acc.zText==zBuf && acc.mxAlloc<=0 ); zBuf[acc.nChar] = 0; /* Fast version of sqlite3StrAccumFinish(&acc) */ } } #ifdef SQLITE_DEBUG /* ** Validity checks on pMem. pMem holds a string. ** ** (1) Check that string value of pMem agrees with its integer or real value. ** (2) Check that the string is correctly zero terminated ** ** A single int or real value always converts to the same strings. But ** many different strings can be converted into the same int or real. ** If a table contains a numeric value and an index is based on the ** corresponding string value, then it is important that the string be ** derived from the numeric value, not the other way around, to ensure ** that the index and table are consistent. See ticket ** https://www.sqlite.org/src/info/343634942dd54ab (2018-01-31) for ** an example. ** ** This routine looks at pMem to verify that if it has both a numeric ** representation and a string representation then the string rep has ** been derived from the numeric and not the other way around. It returns ** true if everything is ok and false if there is a problem. ** ** This routine is for use inside of assert() statements only. */ SQLITE_PRIVATE int sqlite3VdbeMemValidStrRep(Mem *p){ char zBuf[100]; char *z; int i, j, incr; if( (p->flags & MEM_Str)==0 ) return 1; if( p->flags & MEM_Term ){ /* Insure that the string is properly zero-terminated. Pay particular ** attention to the case where p->n is odd */ if( p->szMalloc>0 && p->z==p->zMalloc ){ assert( p->enc==SQLITE_UTF8 || p->szMalloc >= ((p->n+1)&~1)+2 ); assert( p->enc!=SQLITE_UTF8 || p->szMalloc >= p->n+1 ); } assert( p->z[p->n]==0 ); assert( p->enc==SQLITE_UTF8 || p->z[(p->n+1)&~1]==0 ); assert( p->enc==SQLITE_UTF8 || p->z[((p->n+1)&~1)+1]==0 ); } if( (p->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ) return 1; vdbeMemRenderNum(sizeof(zBuf), zBuf, p); z = p->z; i = j = 0; incr = 1; if( p->enc!=SQLITE_UTF8 ){ incr = 2; if( p->enc==SQLITE_UTF16BE ) z++; } while( zBuf[j] ){ if( zBuf[j++]!=z[i] ) return 0; i += incr; } return 1; } #endif /* SQLITE_DEBUG */ /* ** If pMem is an object with a valid string representation, this routine ** ensures the internal encoding for the string representation is ** 'desiredEnc', one of SQLITE_UTF8, SQLITE_UTF16LE or SQLITE_UTF16BE. ** ** If pMem is not a string object, or the encoding of the string ** representation is already stored using the requested encoding, then this ** routine is a no-op. ** ** SQLITE_OK is returned if the conversion is successful (or not required). ** SQLITE_NOMEM may be returned if a malloc() fails during conversion ** between formats. */ SQLITE_PRIVATE int sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc){ #ifndef SQLITE_OMIT_UTF16 int rc; #endif assert( pMem!=0 ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( desiredEnc==SQLITE_UTF8 || desiredEnc==SQLITE_UTF16LE || desiredEnc==SQLITE_UTF16BE ); if( !(pMem->flags&MEM_Str) || pMem->enc==desiredEnc ){ return SQLITE_OK; } assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); #ifdef SQLITE_OMIT_UTF16 return SQLITE_ERROR; #else /* MemTranslate() may return SQLITE_OK or SQLITE_NOMEM. If NOMEM is returned, ** then the encoding of the value may not have changed. */ rc = sqlite3VdbeMemTranslate(pMem, (u8)desiredEnc); assert(rc==SQLITE_OK || rc==SQLITE_NOMEM); assert(rc==SQLITE_OK || pMem->enc!=desiredEnc); assert(rc==SQLITE_NOMEM || pMem->enc==desiredEnc); return rc; #endif } /* ** Make sure pMem->z points to a writable allocation of at least n bytes. ** ** If the bPreserve argument is true, then copy of the content of ** pMem->z into the new allocation. pMem must be either a string or ** blob if bPreserve is true. If bPreserve is false, any prior content ** in pMem->z is discarded. */ SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3VdbeMemGrow(Mem *pMem, int n, int bPreserve){ assert( sqlite3VdbeCheckMemInvariants(pMem) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); testcase( pMem->db==0 ); /* If the bPreserve flag is set to true, then the memory cell must already ** contain a valid string or blob value. */ assert( bPreserve==0 || pMem->flags&(MEM_Blob|MEM_Str) ); testcase( bPreserve && pMem->z==0 ); assert( pMem->szMalloc==0 || (pMem->flags==MEM_Undefined && pMem->szMalloc<=sqlite3DbMallocSize(pMem->db,pMem->zMalloc)) || pMem->szMalloc==sqlite3DbMallocSize(pMem->db,pMem->zMalloc)); if( pMem->szMalloc>0 && bPreserve && pMem->z==pMem->zMalloc ){ if( pMem->db ){ pMem->z = pMem->zMalloc = sqlite3DbReallocOrFree(pMem->db, pMem->z, n); }else{ pMem->zMalloc = sqlite3Realloc(pMem->z, n); if( pMem->zMalloc==0 ) sqlite3_free(pMem->z); pMem->z = pMem->zMalloc; } bPreserve = 0; }else{ if( pMem->szMalloc>0 ) sqlite3DbFreeNN(pMem->db, pMem->zMalloc); pMem->zMalloc = sqlite3DbMallocRaw(pMem->db, n); } if( pMem->zMalloc==0 ){ sqlite3VdbeMemSetNull(pMem); pMem->z = 0; pMem->szMalloc = 0; return SQLITE_NOMEM_BKPT; }else{ pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->zMalloc); } if( bPreserve && pMem->z ){ assert( pMem->z!=pMem->zMalloc ); memcpy(pMem->zMalloc, pMem->z, pMem->n); } if( (pMem->flags&MEM_Dyn)!=0 ){ assert( pMem->xDel!=0 && pMem->xDel!=SQLITE_DYNAMIC ); pMem->xDel((void *)(pMem->z)); } pMem->z = pMem->zMalloc; pMem->flags &= ~(MEM_Dyn|MEM_Ephem|MEM_Static); return SQLITE_OK; } /* ** Change the pMem->zMalloc allocation to be at least szNew bytes. ** If pMem->zMalloc already meets or exceeds the requested size, this ** routine is a no-op. ** ** Any prior string or blob content in the pMem object may be discarded. ** The pMem->xDel destructor is called, if it exists. Though MEM_Str ** and MEM_Blob values may be discarded, MEM_Int, MEM_Real, MEM_IntReal, ** and MEM_Null values are preserved. ** ** Return SQLITE_OK on success or an error code (probably SQLITE_NOMEM) ** if unable to complete the resizing. */ SQLITE_PRIVATE int sqlite3VdbeMemClearAndResize(Mem *pMem, int szNew){ assert( CORRUPT_DB || szNew>0 ); assert( (pMem->flags & MEM_Dyn)==0 || pMem->szMalloc==0 ); if( pMem->szMallocflags & MEM_Dyn)==0 ); pMem->z = pMem->zMalloc; pMem->flags &= (MEM_Null|MEM_Int|MEM_Real|MEM_IntReal); return SQLITE_OK; } /* ** It is already known that pMem contains an unterminated string. ** Add the zero terminator. ** ** Three bytes of zero are added. In this way, there is guaranteed ** to be a double-zero byte at an even byte boundary in order to ** terminate a UTF16 string, even if the initial size of the buffer ** is an odd number of bytes. */ static SQLITE_NOINLINE int vdbeMemAddTerminator(Mem *pMem){ if( sqlite3VdbeMemGrow(pMem, pMem->n+3, 1) ){ return SQLITE_NOMEM_BKPT; } pMem->z[pMem->n] = 0; pMem->z[pMem->n+1] = 0; pMem->z[pMem->n+2] = 0; pMem->flags |= MEM_Term; return SQLITE_OK; } /* ** Change pMem so that its MEM_Str or MEM_Blob value is stored in ** MEM.zMalloc, where it can be safely written. ** ** Return SQLITE_OK on success or SQLITE_NOMEM if malloc fails. */ SQLITE_PRIVATE int sqlite3VdbeMemMakeWriteable(Mem *pMem){ assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); if( (pMem->flags & (MEM_Str|MEM_Blob))!=0 ){ if( ExpandBlob(pMem) ) return SQLITE_NOMEM; if( pMem->szMalloc==0 || pMem->z!=pMem->zMalloc ){ int rc = vdbeMemAddTerminator(pMem); if( rc ) return rc; } } pMem->flags &= ~MEM_Ephem; #ifdef SQLITE_DEBUG pMem->pScopyFrom = 0; #endif return SQLITE_OK; } /* ** If the given Mem* has a zero-filled tail, turn it into an ordinary ** blob stored in dynamically allocated space. */ #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE int sqlite3VdbeMemExpandBlob(Mem *pMem){ int nByte; assert( pMem!=0 ); assert( pMem->flags & MEM_Zero ); assert( (pMem->flags&MEM_Blob)!=0 || MemNullNochng(pMem) ); testcase( sqlite3_value_nochange(pMem) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); /* Set nByte to the number of bytes required to store the expanded blob. */ nByte = pMem->n + pMem->u.nZero; if( nByte<=0 ){ if( (pMem->flags & MEM_Blob)==0 ) return SQLITE_OK; nByte = 1; } if( sqlite3VdbeMemGrow(pMem, nByte, 1) ){ return SQLITE_NOMEM_BKPT; } assert( pMem->z!=0 ); assert( sqlite3DbMallocSize(pMem->db,pMem->z) >= nByte ); memset(&pMem->z[pMem->n], 0, pMem->u.nZero); pMem->n += pMem->u.nZero; pMem->flags &= ~(MEM_Zero|MEM_Term); return SQLITE_OK; } #endif /* ** Make sure the given Mem is \u0000 terminated. */ SQLITE_PRIVATE int sqlite3VdbeMemNulTerminate(Mem *pMem){ assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); testcase( (pMem->flags & (MEM_Term|MEM_Str))==(MEM_Term|MEM_Str) ); testcase( (pMem->flags & (MEM_Term|MEM_Str))==0 ); if( (pMem->flags & (MEM_Term|MEM_Str))!=MEM_Str ){ return SQLITE_OK; /* Nothing to do */ }else{ return vdbeMemAddTerminator(pMem); } } /* ** Add MEM_Str to the set of representations for the given Mem. This ** routine is only called if pMem is a number of some kind, not a NULL ** or a BLOB. ** ** Existing representations MEM_Int, MEM_Real, or MEM_IntReal are invalidated ** if bForce is true but are retained if bForce is false. ** ** A MEM_Null value will never be passed to this function. This function is ** used for converting values to text for returning to the user (i.e. via ** sqlite3_value_text()), or for ensuring that values to be used as btree ** keys are strings. In the former case a NULL pointer is returned the ** user and the latter is an internal programming error. */ SQLITE_PRIVATE int sqlite3VdbeMemStringify(Mem *pMem, u8 enc, u8 bForce){ const int nByte = 32; assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !(pMem->flags&MEM_Zero) ); assert( !(pMem->flags&(MEM_Str|MEM_Blob)) ); assert( pMem->flags&(MEM_Int|MEM_Real|MEM_IntReal) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); if( sqlite3VdbeMemClearAndResize(pMem, nByte) ){ pMem->enc = 0; return SQLITE_NOMEM_BKPT; } vdbeMemRenderNum(nByte, pMem->z, pMem); assert( pMem->z!=0 ); pMem->n = sqlite3Strlen30NN(pMem->z); pMem->enc = SQLITE_UTF8; pMem->flags |= MEM_Str|MEM_Term; if( bForce ) pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal); sqlite3VdbeChangeEncoding(pMem, enc); return SQLITE_OK; } /* ** Memory cell pMem contains the context of an aggregate function. ** This routine calls the finalize method for that function. The ** result of the aggregate is stored back into pMem. ** ** Return SQLITE_ERROR if the finalizer reports an error. SQLITE_OK ** otherwise. */ SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){ sqlite3_context ctx; Mem t; assert( pFunc!=0 ); assert( pMem!=0 ); assert( pFunc->xFinalize!=0 ); assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); memset(&ctx, 0, sizeof(ctx)); memset(&t, 0, sizeof(t)); t.flags = MEM_Null; t.db = pMem->db; ctx.pOut = &t; ctx.pMem = pMem; ctx.pFunc = pFunc; pFunc->xFinalize(&ctx); /* IMP: R-24505-23230 */ assert( (pMem->flags & MEM_Dyn)==0 ); if( pMem->szMalloc>0 ) sqlite3DbFreeNN(pMem->db, pMem->zMalloc); memcpy(pMem, &t, sizeof(t)); return ctx.isError; } /* ** Memory cell pAccum contains the context of an aggregate function. ** This routine calls the xValue method for that function and stores ** the results in memory cell pMem. ** ** SQLITE_ERROR is returned if xValue() reports an error. SQLITE_OK ** otherwise. */ #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE int sqlite3VdbeMemAggValue(Mem *pAccum, Mem *pOut, FuncDef *pFunc){ sqlite3_context ctx; assert( pFunc!=0 ); assert( pFunc->xValue!=0 ); assert( (pAccum->flags & MEM_Null)!=0 || pFunc==pAccum->u.pDef ); assert( pAccum->db==0 || sqlite3_mutex_held(pAccum->db->mutex) ); memset(&ctx, 0, sizeof(ctx)); sqlite3VdbeMemSetNull(pOut); ctx.pOut = pOut; ctx.pMem = pAccum; ctx.pFunc = pFunc; pFunc->xValue(&ctx); return ctx.isError; } #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** If the memory cell contains a value that must be freed by ** invoking the external callback in Mem.xDel, then this routine ** will free that value. It also sets Mem.flags to MEM_Null. ** ** This is a helper routine for sqlite3VdbeMemSetNull() and ** for sqlite3VdbeMemRelease(). Use those other routines as the ** entry point for releasing Mem resources. */ static SQLITE_NOINLINE void vdbeMemClearExternAndSetNull(Mem *p){ assert( p->db==0 || sqlite3_mutex_held(p->db->mutex) ); assert( VdbeMemDynamic(p) ); if( p->flags&MEM_Agg ){ sqlite3VdbeMemFinalize(p, p->u.pDef); assert( (p->flags & MEM_Agg)==0 ); testcase( p->flags & MEM_Dyn ); } if( p->flags&MEM_Dyn ){ assert( p->xDel!=SQLITE_DYNAMIC && p->xDel!=0 ); p->xDel((void *)p->z); } p->flags = MEM_Null; } /* ** Release memory held by the Mem p, both external memory cleared ** by p->xDel and memory in p->zMalloc. ** ** This is a helper routine invoked by sqlite3VdbeMemRelease() in ** the unusual case where there really is memory in p that needs ** to be freed. */ static SQLITE_NOINLINE void vdbeMemClear(Mem *p){ if( VdbeMemDynamic(p) ){ vdbeMemClearExternAndSetNull(p); } if( p->szMalloc ){ sqlite3DbFreeNN(p->db, p->zMalloc); p->szMalloc = 0; } p->z = 0; } /* ** Release any memory resources held by the Mem. Both the memory that is ** free by Mem.xDel and the Mem.zMalloc allocation are freed. ** ** Use this routine prior to clean up prior to abandoning a Mem, or to ** reset a Mem back to its minimum memory utilization. ** ** Use sqlite3VdbeMemSetNull() to release just the Mem.xDel space ** prior to inserting new content into the Mem. */ SQLITE_PRIVATE void sqlite3VdbeMemRelease(Mem *p){ assert( sqlite3VdbeCheckMemInvariants(p) ); if( VdbeMemDynamic(p) || p->szMalloc ){ vdbeMemClear(p); } } /* ** Convert a 64-bit IEEE double into a 64-bit signed integer. ** If the double is out of range of a 64-bit signed integer then ** return the closest available 64-bit signed integer. */ static SQLITE_NOINLINE i64 doubleToInt64(double r){ #ifdef SQLITE_OMIT_FLOATING_POINT /* When floating-point is omitted, double and int64 are the same thing */ return r; #else /* ** Many compilers we encounter do not define constants for the ** minimum and maximum 64-bit integers, or they define them ** inconsistently. And many do not understand the "LL" notation. ** So we define our own static constants here using nothing ** larger than a 32-bit integer constant. */ static const i64 maxInt = LARGEST_INT64; static const i64 minInt = SMALLEST_INT64; if( r<=(double)minInt ){ return minInt; }else if( r>=(double)maxInt ){ return maxInt; }else{ return (i64)r; } #endif } /* ** Return some kind of integer value which is the best we can do ** at representing the value that *pMem describes as an integer. ** If pMem is an integer, then the value is exact. If pMem is ** a floating-point then the value returned is the integer part. ** If pMem is a string or blob, then we make an attempt to convert ** it into an integer and return that. If pMem represents an ** an SQL-NULL value, return 0. ** ** If pMem represents a string value, its encoding might be changed. */ static SQLITE_NOINLINE i64 memIntValue(const Mem *pMem){ i64 value = 0; sqlite3Atoi64(pMem->z, &value, pMem->n, pMem->enc); return value; } SQLITE_PRIVATE i64 sqlite3VdbeIntValue(const Mem *pMem){ int flags; assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); flags = pMem->flags; if( flags & (MEM_Int|MEM_IntReal) ){ testcase( flags & MEM_IntReal ); return pMem->u.i; }else if( flags & MEM_Real ){ return doubleToInt64(pMem->u.r); }else if( (flags & (MEM_Str|MEM_Blob))!=0 && pMem->z!=0 ){ return memIntValue(pMem); }else{ return 0; } } /* ** Return the best representation of pMem that we can get into a ** double. If pMem is already a double or an integer, return its ** value. If it is a string or blob, try to convert it to a double. ** If it is a NULL, return 0.0. */ static SQLITE_NOINLINE double memRealValue(Mem *pMem){ /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ double val = (double)0; sqlite3AtoF(pMem->z, &val, pMem->n, pMem->enc); return val; } SQLITE_PRIVATE double sqlite3VdbeRealValue(Mem *pMem){ assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); if( pMem->flags & MEM_Real ){ return pMem->u.r; }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ testcase( pMem->flags & MEM_IntReal ); return (double)pMem->u.i; }else if( pMem->flags & (MEM_Str|MEM_Blob) ){ return memRealValue(pMem); }else{ /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ return (double)0; } } /* ** Return 1 if pMem represents true, and return 0 if pMem represents false. ** Return the value ifNull if pMem is NULL. */ SQLITE_PRIVATE int sqlite3VdbeBooleanValue(Mem *pMem, int ifNull){ testcase( pMem->flags & MEM_IntReal ); if( pMem->flags & (MEM_Int|MEM_IntReal) ) return pMem->u.i!=0; if( pMem->flags & MEM_Null ) return ifNull; return sqlite3VdbeRealValue(pMem)!=0.0; } /* ** The MEM structure is already a MEM_Real. Try to also make it a ** MEM_Int if we can. */ SQLITE_PRIVATE void sqlite3VdbeIntegerAffinity(Mem *pMem){ i64 ix; assert( pMem!=0 ); assert( pMem->flags & MEM_Real ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); ix = doubleToInt64(pMem->u.r); /* Only mark the value as an integer if ** ** (1) the round-trip conversion real->int->real is a no-op, and ** (2) The integer is neither the largest nor the smallest ** possible integer (ticket #3922) ** ** The second and third terms in the following conditional enforces ** the second condition under the assumption that addition overflow causes ** values to wrap around. */ if( pMem->u.r==ix && ix>SMALLEST_INT64 && ixu.i = ix; MemSetTypeFlag(pMem, MEM_Int); } } /* ** Convert pMem to type integer. Invalidate any prior representations. */ SQLITE_PRIVATE int sqlite3VdbeMemIntegerify(Mem *pMem){ assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); pMem->u.i = sqlite3VdbeIntValue(pMem); MemSetTypeFlag(pMem, MEM_Int); return SQLITE_OK; } /* ** Convert pMem so that it is of type MEM_Real. ** Invalidate any prior representations. */ SQLITE_PRIVATE int sqlite3VdbeMemRealify(Mem *pMem){ assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); pMem->u.r = sqlite3VdbeRealValue(pMem); MemSetTypeFlag(pMem, MEM_Real); return SQLITE_OK; } /* Compare a floating point value to an integer. Return true if the two ** values are the same within the precision of the floating point value. ** ** This function assumes that i was obtained by assignment from r1. ** ** For some versions of GCC on 32-bit machines, if you do the more obvious ** comparison of "r1==(double)i" you sometimes get an answer of false even ** though the r1 and (double)i values are bit-for-bit the same. */ SQLITE_PRIVATE int sqlite3RealSameAsInt(double r1, sqlite3_int64 i){ double r2 = (double)i; return r1==0.0 || (memcmp(&r1, &r2, sizeof(r1))==0 && i >= -2251799813685248LL && i < 2251799813685248LL); } /* ** Convert pMem so that it has type MEM_Real or MEM_Int. ** Invalidate any prior representations. ** ** Every effort is made to force the conversion, even if the input ** is a string that does not look completely like a number. Convert ** as much of the string as we can and ignore the rest. */ SQLITE_PRIVATE int sqlite3VdbeMemNumerify(Mem *pMem){ assert( pMem!=0 ); testcase( pMem->flags & MEM_Int ); testcase( pMem->flags & MEM_Real ); testcase( pMem->flags & MEM_IntReal ); testcase( pMem->flags & MEM_Null ); if( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Null))==0 ){ int rc; sqlite3_int64 ix; assert( (pMem->flags & (MEM_Blob|MEM_Str))!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); rc = sqlite3AtoF(pMem->z, &pMem->u.r, pMem->n, pMem->enc); if( ((rc==0 || rc==1) && sqlite3Atoi64(pMem->z, &ix, pMem->n, pMem->enc)<=1) || sqlite3RealSameAsInt(pMem->u.r, (ix = (i64)pMem->u.r)) ){ pMem->u.i = ix; MemSetTypeFlag(pMem, MEM_Int); }else{ MemSetTypeFlag(pMem, MEM_Real); } } assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Null))!=0 ); pMem->flags &= ~(MEM_Str|MEM_Blob|MEM_Zero); return SQLITE_OK; } /* ** Cast the datatype of the value in pMem according to the affinity ** "aff". Casting is different from applying affinity in that a cast ** is forced. In other words, the value is converted into the desired ** affinity even if that results in loss of data. This routine is ** used (for example) to implement the SQL "cast()" operator. */ SQLITE_PRIVATE int sqlite3VdbeMemCast(Mem *pMem, u8 aff, u8 encoding){ if( pMem->flags & MEM_Null ) return SQLITE_OK; switch( aff ){ case SQLITE_AFF_BLOB: { /* Really a cast to BLOB */ if( (pMem->flags & MEM_Blob)==0 ){ sqlite3ValueApplyAffinity(pMem, SQLITE_AFF_TEXT, encoding); assert( pMem->flags & MEM_Str || pMem->db->mallocFailed ); if( pMem->flags & MEM_Str ) MemSetTypeFlag(pMem, MEM_Blob); }else{ pMem->flags &= ~(MEM_TypeMask&~MEM_Blob); } break; } case SQLITE_AFF_NUMERIC: { sqlite3VdbeMemNumerify(pMem); break; } case SQLITE_AFF_INTEGER: { sqlite3VdbeMemIntegerify(pMem); break; } case SQLITE_AFF_REAL: { sqlite3VdbeMemRealify(pMem); break; } default: { assert( aff==SQLITE_AFF_TEXT ); assert( MEM_Str==(MEM_Blob>>3) ); pMem->flags |= (pMem->flags&MEM_Blob)>>3; sqlite3ValueApplyAffinity(pMem, SQLITE_AFF_TEXT, encoding); assert( pMem->flags & MEM_Str || pMem->db->mallocFailed ); pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal|MEM_Blob|MEM_Zero); return sqlite3VdbeChangeEncoding(pMem, encoding); } } return SQLITE_OK; } /* ** Initialize bulk memory to be a consistent Mem object. ** ** The minimum amount of initialization feasible is performed. */ SQLITE_PRIVATE void sqlite3VdbeMemInit(Mem *pMem, sqlite3 *db, u16 flags){ assert( (flags & ~MEM_TypeMask)==0 ); pMem->flags = flags; pMem->db = db; pMem->szMalloc = 0; } /* ** Delete any previous value and set the value stored in *pMem to NULL. ** ** This routine calls the Mem.xDel destructor to dispose of values that ** require the destructor. But it preserves the Mem.zMalloc memory allocation. ** To free all resources, use sqlite3VdbeMemRelease(), which both calls this ** routine to invoke the destructor and deallocates Mem.zMalloc. ** ** Use this routine to reset the Mem prior to insert a new value. ** ** Use sqlite3VdbeMemRelease() to complete erase the Mem prior to abandoning it. */ SQLITE_PRIVATE void sqlite3VdbeMemSetNull(Mem *pMem){ if( VdbeMemDynamic(pMem) ){ vdbeMemClearExternAndSetNull(pMem); }else{ pMem->flags = MEM_Null; } } SQLITE_PRIVATE void sqlite3ValueSetNull(sqlite3_value *p){ sqlite3VdbeMemSetNull((Mem*)p); } /* ** Delete any previous value and set the value to be a BLOB of length ** n containing all zeros. */ #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE void sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n){ sqlite3VdbeMemRelease(pMem); pMem->flags = MEM_Blob|MEM_Zero; pMem->n = 0; if( n<0 ) n = 0; pMem->u.nZero = n; pMem->enc = SQLITE_UTF8; pMem->z = 0; } #else SQLITE_PRIVATE int sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n){ int nByte = n>0?n:1; if( sqlite3VdbeMemGrow(pMem, nByte, 0) ){ return SQLITE_NOMEM_BKPT; } assert( pMem->z!=0 ); assert( sqlite3DbMallocSize(pMem->db, pMem->z)>=nByte ); memset(pMem->z, 0, nByte); pMem->n = n>0?n:0; pMem->flags = MEM_Blob; pMem->enc = SQLITE_UTF8; return SQLITE_OK; } #endif /* ** The pMem is known to contain content that needs to be destroyed prior ** to a value change. So invoke the destructor, then set the value to ** a 64-bit integer. */ static SQLITE_NOINLINE void vdbeReleaseAndSetInt64(Mem *pMem, i64 val){ sqlite3VdbeMemSetNull(pMem); pMem->u.i = val; pMem->flags = MEM_Int; } /* ** Delete any previous value and set the value stored in *pMem to val, ** manifest type INTEGER. */ SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem *pMem, i64 val){ if( VdbeMemDynamic(pMem) ){ vdbeReleaseAndSetInt64(pMem, val); }else{ pMem->u.i = val; pMem->flags = MEM_Int; } } /* A no-op destructor */ SQLITE_PRIVATE void sqlite3NoopDestructor(void *p){ UNUSED_PARAMETER(p); } /* ** Set the value stored in *pMem should already be a NULL. ** Also store a pointer to go with it. */ SQLITE_PRIVATE void sqlite3VdbeMemSetPointer( Mem *pMem, void *pPtr, const char *zPType, void (*xDestructor)(void*) ){ assert( pMem->flags==MEM_Null ); pMem->u.zPType = zPType ? zPType : ""; pMem->z = pPtr; pMem->flags = MEM_Null|MEM_Dyn|MEM_Subtype|MEM_Term; pMem->eSubtype = 'p'; pMem->xDel = xDestructor ? xDestructor : sqlite3NoopDestructor; } #ifndef SQLITE_OMIT_FLOATING_POINT /* ** Delete any previous value and set the value stored in *pMem to val, ** manifest type REAL. */ SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem *pMem, double val){ sqlite3VdbeMemSetNull(pMem); if( !sqlite3IsNaN(val) ){ pMem->u.r = val; pMem->flags = MEM_Real; } } #endif #ifdef SQLITE_DEBUG /* ** Return true if the Mem holds a RowSet object. This routine is intended ** for use inside of assert() statements. */ SQLITE_PRIVATE int sqlite3VdbeMemIsRowSet(const Mem *pMem){ return (pMem->flags&(MEM_Blob|MEM_Dyn))==(MEM_Blob|MEM_Dyn) && pMem->xDel==sqlite3RowSetDelete; } #endif /* ** Delete any previous value and set the value of pMem to be an ** empty boolean index. ** ** Return SQLITE_OK on success and SQLITE_NOMEM if a memory allocation ** error occurs. */ SQLITE_PRIVATE int sqlite3VdbeMemSetRowSet(Mem *pMem){ sqlite3 *db = pMem->db; RowSet *p; assert( db!=0 ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); sqlite3VdbeMemRelease(pMem); p = sqlite3RowSetInit(db); if( p==0 ) return SQLITE_NOMEM; pMem->z = (char*)p; pMem->flags = MEM_Blob|MEM_Dyn; pMem->xDel = sqlite3RowSetDelete; return SQLITE_OK; } /* ** Return true if the Mem object contains a TEXT or BLOB that is ** too large - whose size exceeds SQLITE_MAX_LENGTH. */ SQLITE_PRIVATE int sqlite3VdbeMemTooBig(Mem *p){ assert( p->db!=0 ); if( p->flags & (MEM_Str|MEM_Blob) ){ int n = p->n; if( p->flags & MEM_Zero ){ n += p->u.nZero; } return n>p->db->aLimit[SQLITE_LIMIT_LENGTH]; } return 0; } #ifdef SQLITE_DEBUG /* ** This routine prepares a memory cell for modification by breaking ** its link to a shallow copy and by marking any current shallow ** copies of this cell as invalid. ** ** This is used for testing and debugging only - to help ensure that shallow ** copies (created by OP_SCopy) are not misused. */ SQLITE_PRIVATE void sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem){ int i; Mem *pX; for(i=1, pX=pVdbe->aMem+1; inMem; i++, pX++){ if( pX->pScopyFrom==pMem ){ u16 mFlags; if( pVdbe->db->flags & SQLITE_VdbeTrace ){ sqlite3DebugPrintf("Invalidate R[%d] due to change in R[%d]\n", (int)(pX - pVdbe->aMem), (int)(pMem - pVdbe->aMem)); } /* If pX is marked as a shallow copy of pMem, then try to verify that ** no significant changes have been made to pX since the OP_SCopy. ** A significant change would indicated a missed call to this ** function for pX. Minor changes, such as adding or removing a ** dual type, are allowed, as long as the underlying value is the ** same. */ mFlags = pMem->flags & pX->flags & pX->mScopyFlags; assert( (mFlags&(MEM_Int|MEM_IntReal))==0 || pMem->u.i==pX->u.i ); /* pMem is the register that is changing. But also mark pX as ** undefined so that we can quickly detect the shallow-copy error */ pX->flags = MEM_Undefined; pX->pScopyFrom = 0; } } pMem->pScopyFrom = 0; } #endif /* SQLITE_DEBUG */ /* ** Make an shallow copy of pFrom into pTo. Prior contents of ** pTo are freed. The pFrom->z field is not duplicated. If ** pFrom->z is used, then pTo->z points to the same thing as pFrom->z ** and flags gets srcType (either MEM_Ephem or MEM_Static). */ static SQLITE_NOINLINE void vdbeClrCopy(Mem *pTo, const Mem *pFrom, int eType){ vdbeMemClearExternAndSetNull(pTo); assert( !VdbeMemDynamic(pTo) ); sqlite3VdbeMemShallowCopy(pTo, pFrom, eType); } SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){ assert( !sqlite3VdbeMemIsRowSet(pFrom) ); assert( pTo->db==pFrom->db ); if( VdbeMemDynamic(pTo) ){ vdbeClrCopy(pTo,pFrom,srcType); return; } memcpy(pTo, pFrom, MEMCELLSIZE); if( (pFrom->flags&MEM_Static)==0 ){ pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem); assert( srcType==MEM_Ephem || srcType==MEM_Static ); pTo->flags |= srcType; } } /* ** Make a full copy of pFrom into pTo. Prior contents of pTo are ** freed before the copy is made. */ SQLITE_PRIVATE int sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom){ int rc = SQLITE_OK; assert( !sqlite3VdbeMemIsRowSet(pFrom) ); if( VdbeMemDynamic(pTo) ) vdbeMemClearExternAndSetNull(pTo); memcpy(pTo, pFrom, MEMCELLSIZE); pTo->flags &= ~MEM_Dyn; if( pTo->flags&(MEM_Str|MEM_Blob) ){ if( 0==(pFrom->flags&MEM_Static) ){ pTo->flags |= MEM_Ephem; rc = sqlite3VdbeMemMakeWriteable(pTo); } } return rc; } /* ** Transfer the contents of pFrom to pTo. Any existing value in pTo is ** freed. If pFrom contains ephemeral data, a copy is made. ** ** pFrom contains an SQL NULL when this routine returns. */ SQLITE_PRIVATE void sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom){ assert( pFrom->db==0 || sqlite3_mutex_held(pFrom->db->mutex) ); assert( pTo->db==0 || sqlite3_mutex_held(pTo->db->mutex) ); assert( pFrom->db==0 || pTo->db==0 || pFrom->db==pTo->db ); sqlite3VdbeMemRelease(pTo); memcpy(pTo, pFrom, sizeof(Mem)); pFrom->flags = MEM_Null; pFrom->szMalloc = 0; } /* ** Change the value of a Mem to be a string or a BLOB. ** ** The memory management strategy depends on the value of the xDel ** parameter. If the value passed is SQLITE_TRANSIENT, then the ** string is copied into a (possibly existing) buffer managed by the ** Mem structure. Otherwise, any existing buffer is freed and the ** pointer copied. ** ** If the string is too large (if it exceeds the SQLITE_LIMIT_LENGTH ** size limit) then no memory allocation occurs. If the string can be ** stored without allocating memory, then it is. If a memory allocation ** is required to store the string, then value of pMem is unchanged. In ** either case, SQLITE_TOOBIG is returned. */ SQLITE_PRIVATE int sqlite3VdbeMemSetStr( Mem *pMem, /* Memory cell to set to string value */ const char *z, /* String pointer */ i64 n, /* Bytes in string, or negative */ u8 enc, /* Encoding of z. 0 for BLOBs */ void (*xDel)(void*) /* Destructor function */ ){ i64 nByte = n; /* New value for pMem->n */ int iLimit; /* Maximum allowed string or blob size */ u16 flags = 0; /* New value for pMem->flags */ assert( pMem!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); /* If z is a NULL pointer, set pMem to contain an SQL NULL. */ if( !z ){ sqlite3VdbeMemSetNull(pMem); return SQLITE_OK; } if( pMem->db ){ iLimit = pMem->db->aLimit[SQLITE_LIMIT_LENGTH]; }else{ iLimit = SQLITE_MAX_LENGTH; } flags = (enc==0?MEM_Blob:MEM_Str); if( nByte<0 ){ assert( enc!=0 ); if( enc==SQLITE_UTF8 ){ nByte = strlen(z); }else{ for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){} } flags |= MEM_Term; } /* The following block sets the new values of Mem.z and Mem.xDel. It ** also sets a flag in local variable "flags" to indicate the memory ** management (one of MEM_Dyn or MEM_Static). */ if( xDel==SQLITE_TRANSIENT ){ i64 nAlloc = nByte; if( flags&MEM_Term ){ nAlloc += (enc==SQLITE_UTF8?1:2); } if( nByte>iLimit ){ return sqlite3ErrorToParser(pMem->db, SQLITE_TOOBIG); } testcase( nAlloc==0 ); testcase( nAlloc==31 ); testcase( nAlloc==32 ); if( sqlite3VdbeMemClearAndResize(pMem, (int)MAX(nAlloc,32)) ){ return SQLITE_NOMEM_BKPT; } memcpy(pMem->z, z, nAlloc); }else{ sqlite3VdbeMemRelease(pMem); pMem->z = (char *)z; if( xDel==SQLITE_DYNAMIC ){ pMem->zMalloc = pMem->z; pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->zMalloc); }else{ pMem->xDel = xDel; flags |= ((xDel==SQLITE_STATIC)?MEM_Static:MEM_Dyn); } } pMem->n = (int)(nByte & 0x7fffffff); pMem->flags = flags; if( enc ){ pMem->enc = enc; #ifdef SQLITE_ENABLE_SESSION }else if( pMem->db==0 ){ pMem->enc = SQLITE_UTF8; #endif }else{ assert( pMem->db!=0 ); pMem->enc = ENC(pMem->db); } #ifndef SQLITE_OMIT_UTF16 if( enc>SQLITE_UTF8 && sqlite3VdbeMemHandleBom(pMem) ){ return SQLITE_NOMEM_BKPT; } #endif if( nByte>iLimit ){ return sqlite3ErrorToParser(pMem->db, SQLITE_TOOBIG); } return SQLITE_OK; } /* ** Move data out of a btree key or data field and into a Mem structure. ** The data is payload from the entry that pCur is currently pointing ** to. offset and amt determine what portion of the data or key to retrieve. ** The result is written into the pMem element. ** ** The pMem object must have been initialized. This routine will use ** pMem->zMalloc to hold the content from the btree, if possible. New ** pMem->zMalloc space will be allocated if necessary. The calling routine ** is responsible for making sure that the pMem object is eventually ** destroyed. ** ** If this routine fails for any reason (malloc returns NULL or unable ** to read from the disk) then the pMem is left in an inconsistent state. */ SQLITE_PRIVATE int sqlite3VdbeMemFromBtree( BtCursor *pCur, /* Cursor pointing at record to retrieve. */ u32 offset, /* Offset from the start of data to return bytes from. */ u32 amt, /* Number of bytes to return. */ Mem *pMem /* OUT: Return data in this Mem structure. */ ){ int rc; pMem->flags = MEM_Null; if( sqlite3BtreeMaxRecordSize(pCur)z); if( rc==SQLITE_OK ){ pMem->z[amt] = 0; /* Overrun area used when reading malformed records */ pMem->flags = MEM_Blob; pMem->n = (int)amt; }else{ sqlite3VdbeMemRelease(pMem); } } return rc; } SQLITE_PRIVATE int sqlite3VdbeMemFromBtreeZeroOffset( BtCursor *pCur, /* Cursor pointing at record to retrieve. */ u32 amt, /* Number of bytes to return. */ Mem *pMem /* OUT: Return data in this Mem structure. */ ){ u32 available = 0; /* Number of bytes available on the local btree page */ int rc = SQLITE_OK; /* Return code */ assert( sqlite3BtreeCursorIsValid(pCur) ); assert( !VdbeMemDynamic(pMem) ); /* Note: the calls to BtreeKeyFetch() and DataFetch() below assert() ** that both the BtShared and database handle mutexes are held. */ assert( !sqlite3VdbeMemIsRowSet(pMem) ); pMem->z = (char *)sqlite3BtreePayloadFetch(pCur, &available); assert( pMem->z!=0 ); if( amt<=available ){ pMem->flags = MEM_Blob|MEM_Ephem; pMem->n = (int)amt; }else{ rc = sqlite3VdbeMemFromBtree(pCur, 0, amt, pMem); } return rc; } /* ** The pVal argument is known to be a value other than NULL. ** Convert it into a string with encoding enc and return a pointer ** to a zero-terminated version of that string. */ static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ assert( pVal!=0 ); assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); assert( (enc&3)==(enc&~SQLITE_UTF16_ALIGNED) ); assert( !sqlite3VdbeMemIsRowSet(pVal) ); assert( (pVal->flags & (MEM_Null))==0 ); if( pVal->flags & (MEM_Blob|MEM_Str) ){ if( ExpandBlob(pVal) ) return 0; pVal->flags |= MEM_Str; if( pVal->enc != (enc & ~SQLITE_UTF16_ALIGNED) ){ sqlite3VdbeChangeEncoding(pVal, enc & ~SQLITE_UTF16_ALIGNED); } if( (enc & SQLITE_UTF16_ALIGNED)!=0 && 1==(1&SQLITE_PTR_TO_INT(pVal->z)) ){ assert( (pVal->flags & (MEM_Ephem|MEM_Static))!=0 ); if( sqlite3VdbeMemMakeWriteable(pVal)!=SQLITE_OK ){ return 0; } } sqlite3VdbeMemNulTerminate(pVal); /* IMP: R-31275-44060 */ }else{ sqlite3VdbeMemStringify(pVal, enc, 0); assert( 0==(1&SQLITE_PTR_TO_INT(pVal->z)) ); } assert(pVal->enc==(enc & ~SQLITE_UTF16_ALIGNED) || pVal->db==0 || pVal->db->mallocFailed ); if( pVal->enc==(enc & ~SQLITE_UTF16_ALIGNED) ){ assert( sqlite3VdbeMemValidStrRep(pVal) ); return pVal->z; }else{ return 0; } } /* This function is only available internally, it is not part of the ** external API. It works in a similar way to sqlite3_value_text(), ** except the data returned is in the encoding specified by the second ** parameter, which must be one of SQLITE_UTF16BE, SQLITE_UTF16LE or ** SQLITE_UTF8. ** ** (2006-02-16:) The enc value can be or-ed with SQLITE_UTF16_ALIGNED. ** If that is the case, then the result must be aligned on an even byte ** boundary. */ SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){ if( !pVal ) return 0; assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); assert( (enc&3)==(enc&~SQLITE_UTF16_ALIGNED) ); assert( !sqlite3VdbeMemIsRowSet(pVal) ); if( (pVal->flags&(MEM_Str|MEM_Term))==(MEM_Str|MEM_Term) && pVal->enc==enc ){ assert( sqlite3VdbeMemValidStrRep(pVal) ); return pVal->z; } if( pVal->flags&MEM_Null ){ return 0; } return valueToText(pVal, enc); } /* ** Create a new sqlite3_value object. */ SQLITE_PRIVATE sqlite3_value *sqlite3ValueNew(sqlite3 *db){ Mem *p = sqlite3DbMallocZero(db, sizeof(*p)); if( p ){ p->flags = MEM_Null; p->db = db; } return p; } /* ** Context object passed by sqlite3Stat4ProbeSetValue() through to ** valueNew(). See comments above valueNew() for details. */ struct ValueNewStat4Ctx { Parse *pParse; Index *pIdx; UnpackedRecord **ppRec; int iVal; }; /* ** Allocate and return a pointer to a new sqlite3_value object. If ** the second argument to this function is NULL, the object is allocated ** by calling sqlite3ValueNew(). ** ** Otherwise, if the second argument is non-zero, then this function is ** being called indirectly by sqlite3Stat4ProbeSetValue(). If it has not ** already been allocated, allocate the UnpackedRecord structure that ** that function will return to its caller here. Then return a pointer to ** an sqlite3_value within the UnpackedRecord.a[] array. */ static sqlite3_value *valueNew(sqlite3 *db, struct ValueNewStat4Ctx *p){ #ifdef SQLITE_ENABLE_STAT4 if( p ){ UnpackedRecord *pRec = p->ppRec[0]; if( pRec==0 ){ Index *pIdx = p->pIdx; /* Index being probed */ int nByte; /* Bytes of space to allocate */ int i; /* Counter variable */ int nCol = pIdx->nColumn; /* Number of index columns including rowid */ nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord)); pRec = (UnpackedRecord*)sqlite3DbMallocZero(db, nByte); if( pRec ){ pRec->pKeyInfo = sqlite3KeyInfoOfIndex(p->pParse, pIdx); if( pRec->pKeyInfo ){ assert( pRec->pKeyInfo->nAllField==nCol ); assert( pRec->pKeyInfo->enc==ENC(db) ); pRec->aMem = (Mem *)((u8*)pRec + ROUND8(sizeof(UnpackedRecord))); for(i=0; iaMem[i].flags = MEM_Null; pRec->aMem[i].db = db; } }else{ sqlite3DbFreeNN(db, pRec); pRec = 0; } } if( pRec==0 ) return 0; p->ppRec[0] = pRec; } pRec->nField = p->iVal+1; return &pRec->aMem[p->iVal]; } #else UNUSED_PARAMETER(p); #endif /* defined(SQLITE_ENABLE_STAT4) */ return sqlite3ValueNew(db); } /* ** The expression object indicated by the second argument is guaranteed ** to be a scalar SQL function. If ** ** * all function arguments are SQL literals, ** * one of the SQLITE_FUNC_CONSTANT or _SLOCHNG function flags is set, and ** * the SQLITE_FUNC_NEEDCOLL function flag is not set, ** ** then this routine attempts to invoke the SQL function. Assuming no ** error occurs, output parameter (*ppVal) is set to point to a value ** object containing the result before returning SQLITE_OK. ** ** Affinity aff is applied to the result of the function before returning. ** If the result is a text value, the sqlite3_value object uses encoding ** enc. ** ** If the conditions above are not met, this function returns SQLITE_OK ** and sets (*ppVal) to NULL. Or, if an error occurs, (*ppVal) is set to ** NULL and an SQLite error code returned. */ #ifdef SQLITE_ENABLE_STAT4 static int valueFromFunction( sqlite3 *db, /* The database connection */ const Expr *p, /* The expression to evaluate */ u8 enc, /* Encoding to use */ u8 aff, /* Affinity to use */ sqlite3_value **ppVal, /* Write the new value here */ struct ValueNewStat4Ctx *pCtx /* Second argument for valueNew() */ ){ sqlite3_context ctx; /* Context object for function invocation */ sqlite3_value **apVal = 0; /* Function arguments */ int nVal = 0; /* Size of apVal[] array */ FuncDef *pFunc = 0; /* Function definition */ sqlite3_value *pVal = 0; /* New value */ int rc = SQLITE_OK; /* Return code */ ExprList *pList = 0; /* Function arguments */ int i; /* Iterator variable */ assert( pCtx!=0 ); assert( (p->flags & EP_TokenOnly)==0 ); assert( ExprUseXList(p) ); pList = p->x.pList; if( pList ) nVal = pList->nExpr; assert( !ExprHasProperty(p, EP_IntValue) ); pFunc = sqlite3FindFunction(db, p->u.zToken, nVal, enc, 0); assert( pFunc ); if( (pFunc->funcFlags & (SQLITE_FUNC_CONSTANT|SQLITE_FUNC_SLOCHNG))==0 || (pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL) ){ return SQLITE_OK; } if( pList ){ apVal = (sqlite3_value**)sqlite3DbMallocZero(db, sizeof(apVal[0]) * nVal); if( apVal==0 ){ rc = SQLITE_NOMEM_BKPT; goto value_from_function_out; } for(i=0; ia[i].pExpr, enc, aff, &apVal[i]); if( apVal[i]==0 || rc!=SQLITE_OK ) goto value_from_function_out; } } pVal = valueNew(db, pCtx); if( pVal==0 ){ rc = SQLITE_NOMEM_BKPT; goto value_from_function_out; } assert( pCtx->pParse->rc==SQLITE_OK ); memset(&ctx, 0, sizeof(ctx)); ctx.pOut = pVal; ctx.pFunc = pFunc; pFunc->xSFunc(&ctx, nVal, apVal); if( ctx.isError ){ rc = ctx.isError; sqlite3ErrorMsg(pCtx->pParse, "%s", sqlite3_value_text(pVal)); }else{ sqlite3ValueApplyAffinity(pVal, aff, SQLITE_UTF8); assert( rc==SQLITE_OK ); rc = sqlite3VdbeChangeEncoding(pVal, enc); if( rc==SQLITE_OK && sqlite3VdbeMemTooBig(pVal) ){ rc = SQLITE_TOOBIG; pCtx->pParse->nErr++; } } pCtx->pParse->rc = rc; value_from_function_out: if( rc!=SQLITE_OK ){ pVal = 0; } if( apVal ){ for(i=0; iop)==TK_UPLUS || op==TK_SPAN ) pExpr = pExpr->pLeft; if( op==TK_REGISTER ) op = pExpr->op2; /* Compressed expressions only appear when parsing the DEFAULT clause ** on a table column definition, and hence only when pCtx==0. This ** check ensures that an EP_TokenOnly expression is never passed down ** into valueFromFunction(). */ assert( (pExpr->flags & EP_TokenOnly)==0 || pCtx==0 ); if( op==TK_CAST ){ u8 aff; assert( !ExprHasProperty(pExpr, EP_IntValue) ); aff = sqlite3AffinityType(pExpr->u.zToken,0); rc = valueFromExpr(db, pExpr->pLeft, enc, aff, ppVal, pCtx); testcase( rc!=SQLITE_OK ); if( *ppVal ){ sqlite3VdbeMemCast(*ppVal, aff, SQLITE_UTF8); sqlite3ValueApplyAffinity(*ppVal, affinity, SQLITE_UTF8); } return rc; } /* Handle negative integers in a single step. This is needed in the ** case when the value is -9223372036854775808. */ if( op==TK_UMINUS && (pExpr->pLeft->op==TK_INTEGER || pExpr->pLeft->op==TK_FLOAT) ){ pExpr = pExpr->pLeft; op = pExpr->op; negInt = -1; zNeg = "-"; } if( op==TK_STRING || op==TK_FLOAT || op==TK_INTEGER ){ pVal = valueNew(db, pCtx); if( pVal==0 ) goto no_mem; if( ExprHasProperty(pExpr, EP_IntValue) ){ sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt); }else{ zVal = sqlite3MPrintf(db, "%s%s", zNeg, pExpr->u.zToken); if( zVal==0 ) goto no_mem; sqlite3ValueSetStr(pVal, -1, zVal, SQLITE_UTF8, SQLITE_DYNAMIC); } if( (op==TK_INTEGER || op==TK_FLOAT ) && affinity==SQLITE_AFF_BLOB ){ sqlite3ValueApplyAffinity(pVal, SQLITE_AFF_NUMERIC, SQLITE_UTF8); }else{ sqlite3ValueApplyAffinity(pVal, affinity, SQLITE_UTF8); } assert( (pVal->flags & MEM_IntReal)==0 ); if( pVal->flags & (MEM_Int|MEM_IntReal|MEM_Real) ){ testcase( pVal->flags & MEM_Int ); testcase( pVal->flags & MEM_Real ); pVal->flags &= ~MEM_Str; } if( enc!=SQLITE_UTF8 ){ rc = sqlite3VdbeChangeEncoding(pVal, enc); } }else if( op==TK_UMINUS ) { /* This branch happens for multiple negative signs. Ex: -(-5) */ if( SQLITE_OK==valueFromExpr(db,pExpr->pLeft,enc,affinity,&pVal,pCtx) && pVal!=0 ){ sqlite3VdbeMemNumerify(pVal); if( pVal->flags & MEM_Real ){ pVal->u.r = -pVal->u.r; }else if( pVal->u.i==SMALLEST_INT64 ){ #ifndef SQLITE_OMIT_FLOATING_POINT pVal->u.r = -(double)SMALLEST_INT64; #else pVal->u.r = LARGEST_INT64; #endif MemSetTypeFlag(pVal, MEM_Real); }else{ pVal->u.i = -pVal->u.i; } sqlite3ValueApplyAffinity(pVal, affinity, enc); } }else if( op==TK_NULL ){ pVal = valueNew(db, pCtx); if( pVal==0 ) goto no_mem; sqlite3VdbeMemSetNull(pVal); } #ifndef SQLITE_OMIT_BLOB_LITERAL else if( op==TK_BLOB ){ int nVal; assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); assert( pExpr->u.zToken[1]=='\'' ); pVal = valueNew(db, pCtx); if( !pVal ) goto no_mem; zVal = &pExpr->u.zToken[2]; nVal = sqlite3Strlen30(zVal)-1; assert( zVal[nVal]=='\'' ); sqlite3VdbeMemSetStr(pVal, sqlite3HexToBlob(db, zVal, nVal), nVal/2, 0, SQLITE_DYNAMIC); } #endif #ifdef SQLITE_ENABLE_STAT4 else if( op==TK_FUNCTION && pCtx!=0 ){ rc = valueFromFunction(db, pExpr, enc, affinity, &pVal, pCtx); } #endif else if( op==TK_TRUEFALSE ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); pVal = valueNew(db, pCtx); if( pVal ){ pVal->flags = MEM_Int; pVal->u.i = pExpr->u.zToken[4]==0; } } *ppVal = pVal; return rc; no_mem: #ifdef SQLITE_ENABLE_STAT4 if( pCtx==0 || NEVER(pCtx->pParse->nErr==0) ) #endif sqlite3OomFault(db); sqlite3DbFree(db, zVal); assert( *ppVal==0 ); #ifdef SQLITE_ENABLE_STAT4 if( pCtx==0 ) sqlite3ValueFree(pVal); #else assert( pCtx==0 ); sqlite3ValueFree(pVal); #endif return SQLITE_NOMEM_BKPT; } /* ** Create a new sqlite3_value object, containing the value of pExpr. ** ** This only works for very simple expressions that consist of one constant ** token (i.e. "5", "5.1", "'a string'"). If the expression can ** be converted directly into a value, then the value is allocated and ** a pointer written to *ppVal. The caller is responsible for deallocating ** the value by passing it to sqlite3ValueFree() later on. If the expression ** cannot be converted to a value, then *ppVal is set to NULL. */ SQLITE_PRIVATE int sqlite3ValueFromExpr( sqlite3 *db, /* The database connection */ const Expr *pExpr, /* The expression to evaluate */ u8 enc, /* Encoding to use */ u8 affinity, /* Affinity to use */ sqlite3_value **ppVal /* Write the new value here */ ){ return pExpr ? valueFromExpr(db, pExpr, enc, affinity, ppVal, 0) : 0; } #ifdef SQLITE_ENABLE_STAT4 /* ** Attempt to extract a value from pExpr and use it to construct *ppVal. ** ** If pAlloc is not NULL, then an UnpackedRecord object is created for ** pAlloc if one does not exist and the new value is added to the ** UnpackedRecord object. ** ** A value is extracted in the following cases: ** ** * (pExpr==0). In this case the value is assumed to be an SQL NULL, ** ** * The expression is a bound variable, and this is a reprepare, or ** ** * The expression is a literal value. ** ** On success, *ppVal is made to point to the extracted value. The caller ** is responsible for ensuring that the value is eventually freed. */ static int stat4ValueFromExpr( Parse *pParse, /* Parse context */ Expr *pExpr, /* The expression to extract a value from */ u8 affinity, /* Affinity to use */ struct ValueNewStat4Ctx *pAlloc,/* How to allocate space. Or NULL */ sqlite3_value **ppVal /* OUT: New value object (or NULL) */ ){ int rc = SQLITE_OK; sqlite3_value *pVal = 0; sqlite3 *db = pParse->db; /* Skip over any TK_COLLATE nodes */ pExpr = sqlite3ExprSkipCollate(pExpr); assert( pExpr==0 || pExpr->op!=TK_REGISTER || pExpr->op2!=TK_VARIABLE ); if( !pExpr ){ pVal = valueNew(db, pAlloc); if( pVal ){ sqlite3VdbeMemSetNull((Mem*)pVal); } }else if( pExpr->op==TK_VARIABLE && (db->flags & SQLITE_EnableQPSG)==0 ){ Vdbe *v; int iBindVar = pExpr->iColumn; sqlite3VdbeSetVarmask(pParse->pVdbe, iBindVar); if( (v = pParse->pReprepare)!=0 ){ pVal = valueNew(db, pAlloc); if( pVal ){ rc = sqlite3VdbeMemCopy((Mem*)pVal, &v->aVar[iBindVar-1]); sqlite3ValueApplyAffinity(pVal, affinity, ENC(db)); pVal->db = pParse->db; } } }else{ rc = valueFromExpr(db, pExpr, ENC(db), affinity, &pVal, pAlloc); } assert( pVal==0 || pVal->db==db ); *ppVal = pVal; return rc; } /* ** This function is used to allocate and populate UnpackedRecord ** structures intended to be compared against sample index keys stored ** in the sqlite_stat4 table. ** ** A single call to this function populates zero or more fields of the ** record starting with field iVal (fields are numbered from left to ** right starting with 0). A single field is populated if: ** ** * (pExpr==0). In this case the value is assumed to be an SQL NULL, ** ** * The expression is a bound variable, and this is a reprepare, or ** ** * The sqlite3ValueFromExpr() function is able to extract a value ** from the expression (i.e. the expression is a literal value). ** ** Or, if pExpr is a TK_VECTOR, one field is populated for each of the ** vector components that match either of the two latter criteria listed ** above. ** ** Before any value is appended to the record, the affinity of the ** corresponding column within index pIdx is applied to it. Before ** this function returns, output parameter *pnExtract is set to the ** number of values appended to the record. ** ** When this function is called, *ppRec must either point to an object ** allocated by an earlier call to this function, or must be NULL. If it ** is NULL and a value can be successfully extracted, a new UnpackedRecord ** is allocated (and *ppRec set to point to it) before returning. ** ** Unless an error is encountered, SQLITE_OK is returned. It is not an ** error if a value cannot be extracted from pExpr. If an error does ** occur, an SQLite error code is returned. */ SQLITE_PRIVATE int sqlite3Stat4ProbeSetValue( Parse *pParse, /* Parse context */ Index *pIdx, /* Index being probed */ UnpackedRecord **ppRec, /* IN/OUT: Probe record */ Expr *pExpr, /* The expression to extract a value from */ int nElem, /* Maximum number of values to append */ int iVal, /* Array element to populate */ int *pnExtract /* OUT: Values appended to the record */ ){ int rc = SQLITE_OK; int nExtract = 0; if( pExpr==0 || pExpr->op!=TK_SELECT ){ int i; struct ValueNewStat4Ctx alloc; alloc.pParse = pParse; alloc.pIdx = pIdx; alloc.ppRec = ppRec; for(i=0; idb, pIdx, iVal+i); alloc.iVal = iVal+i; rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal); if( !pVal ) break; nExtract++; } } *pnExtract = nExtract; return rc; } /* ** Attempt to extract a value from expression pExpr using the methods ** as described for sqlite3Stat4ProbeSetValue() above. ** ** If successful, set *ppVal to point to a new value object and return ** SQLITE_OK. If no value can be extracted, but no other error occurs ** (e.g. OOM), return SQLITE_OK and set *ppVal to NULL. Or, if an error ** does occur, return an SQLite error code. The final value of *ppVal ** is undefined in this case. */ SQLITE_PRIVATE int sqlite3Stat4ValueFromExpr( Parse *pParse, /* Parse context */ Expr *pExpr, /* The expression to extract a value from */ u8 affinity, /* Affinity to use */ sqlite3_value **ppVal /* OUT: New value object (or NULL) */ ){ return stat4ValueFromExpr(pParse, pExpr, affinity, 0, ppVal); } /* ** Extract the iCol-th column from the nRec-byte record in pRec. Write ** the column value into *ppVal. If *ppVal is initially NULL then a new ** sqlite3_value object is allocated. ** ** If *ppVal is initially NULL then the caller is responsible for ** ensuring that the value written into *ppVal is eventually freed. */ SQLITE_PRIVATE int sqlite3Stat4Column( sqlite3 *db, /* Database handle */ const void *pRec, /* Pointer to buffer containing record */ int nRec, /* Size of buffer pRec in bytes */ int iCol, /* Column to extract */ sqlite3_value **ppVal /* OUT: Extracted value */ ){ u32 t = 0; /* a column type code */ int nHdr; /* Size of the header in the record */ int iHdr; /* Next unread header byte */ int iField; /* Next unread data byte */ int szField = 0; /* Size of the current data field */ int i; /* Column index */ u8 *a = (u8*)pRec; /* Typecast byte array */ Mem *pMem = *ppVal; /* Write result into this Mem object */ assert( iCol>0 ); iHdr = getVarint32(a, nHdr); if( nHdr>nRec || iHdr>=nHdr ) return SQLITE_CORRUPT_BKPT; iField = nHdr; for(i=0; i<=iCol; i++){ iHdr += getVarint32(&a[iHdr], t); testcase( iHdr==nHdr ); testcase( iHdr==nHdr+1 ); if( iHdr>nHdr ) return SQLITE_CORRUPT_BKPT; szField = sqlite3VdbeSerialTypeLen(t); iField += szField; } testcase( iField==nRec ); testcase( iField==nRec+1 ); if( iField>nRec ) return SQLITE_CORRUPT_BKPT; if( pMem==0 ){ pMem = *ppVal = sqlite3ValueNew(db); if( pMem==0 ) return SQLITE_NOMEM_BKPT; } sqlite3VdbeSerialGet(&a[iField-szField], t, pMem); pMem->enc = ENC(db); return SQLITE_OK; } /* ** Unless it is NULL, the argument must be an UnpackedRecord object returned ** by an earlier call to sqlite3Stat4ProbeSetValue(). This call deletes ** the object. */ SQLITE_PRIVATE void sqlite3Stat4ProbeFree(UnpackedRecord *pRec){ if( pRec ){ int i; int nCol = pRec->pKeyInfo->nAllField; Mem *aMem = pRec->aMem; sqlite3 *db = aMem[0].db; for(i=0; ipKeyInfo); sqlite3DbFreeNN(db, pRec); } } #endif /* ifdef SQLITE_ENABLE_STAT4 */ /* ** Change the string value of an sqlite3_value object */ SQLITE_PRIVATE void sqlite3ValueSetStr( sqlite3_value *v, /* Value to be set */ int n, /* Length of string z */ const void *z, /* Text of the new string */ u8 enc, /* Encoding to use */ void (*xDel)(void*) /* Destructor for the string */ ){ if( v ) sqlite3VdbeMemSetStr((Mem *)v, z, n, enc, xDel); } /* ** Free an sqlite3_value object */ SQLITE_PRIVATE void sqlite3ValueFree(sqlite3_value *v){ if( !v ) return; sqlite3VdbeMemRelease((Mem *)v); sqlite3DbFreeNN(((Mem*)v)->db, v); } /* ** The sqlite3ValueBytes() routine returns the number of bytes in the ** sqlite3_value object assuming that it uses the encoding "enc". ** The valueBytes() routine is a helper function. */ static SQLITE_NOINLINE int valueBytes(sqlite3_value *pVal, u8 enc){ return valueToText(pVal, enc)!=0 ? pVal->n : 0; } SQLITE_PRIVATE int sqlite3ValueBytes(sqlite3_value *pVal, u8 enc){ Mem *p = (Mem*)pVal; assert( (p->flags & MEM_Null)==0 || (p->flags & (MEM_Str|MEM_Blob))==0 ); if( (p->flags & MEM_Str)!=0 && pVal->enc==enc ){ return p->n; } if( (p->flags & MEM_Blob)!=0 ){ if( p->flags & MEM_Zero ){ return p->n + p->u.nZero; }else{ return p->n; } } if( p->flags & MEM_Null ) return 0; return valueBytes(pVal, enc); } /************** End of vdbemem.c *********************************************/ /************** Begin file vdbeaux.c *****************************************/ /* ** 2003 September 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used for creating, destroying, and populating ** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* Forward references */ static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef); static void vdbeFreeOpArray(sqlite3 *, Op *, int); /* ** Create a new virtual database engine. */ SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(Parse *pParse){ sqlite3 *db = pParse->db; Vdbe *p; p = sqlite3DbMallocRawNN(db, sizeof(Vdbe) ); if( p==0 ) return 0; memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp)); p->db = db; if( db->pVdbe ){ db->pVdbe->pPrev = p; } p->pNext = db->pVdbe; p->pPrev = 0; db->pVdbe = p; p->iVdbeMagic = VDBE_MAGIC_INIT; p->pParse = pParse; pParse->pVdbe = p; assert( pParse->aLabel==0 ); assert( pParse->nLabel==0 ); assert( p->nOpAlloc==0 ); assert( pParse->szOpAlloc==0 ); sqlite3VdbeAddOp2(p, OP_Init, 0, 1); return p; } /* ** Return the Parse object that owns a Vdbe object. */ SQLITE_PRIVATE Parse *sqlite3VdbeParser(Vdbe *p){ return p->pParse; } /* ** Change the error string stored in Vdbe.zErrMsg */ SQLITE_PRIVATE void sqlite3VdbeError(Vdbe *p, const char *zFormat, ...){ va_list ap; sqlite3DbFree(p->db, p->zErrMsg); va_start(ap, zFormat); p->zErrMsg = sqlite3VMPrintf(p->db, zFormat, ap); va_end(ap); } /* ** Remember the SQL string for a prepared statement. */ SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, u8 prepFlags){ if( p==0 ) return; p->prepFlags = prepFlags; if( (prepFlags & SQLITE_PREPARE_SAVESQL)==0 ){ p->expmask = 0; } assert( p->zSql==0 ); p->zSql = sqlite3DbStrNDup(p->db, z, n); } #ifdef SQLITE_ENABLE_NORMALIZE /* ** Add a new element to the Vdbe->pDblStr list. */ SQLITE_PRIVATE void sqlite3VdbeAddDblquoteStr(sqlite3 *db, Vdbe *p, const char *z){ if( p ){ int n = sqlite3Strlen30(z); DblquoteStr *pStr = sqlite3DbMallocRawNN(db, sizeof(*pStr)+n+1-sizeof(pStr->z)); if( pStr ){ pStr->pNextStr = p->pDblStr; p->pDblStr = pStr; memcpy(pStr->z, z, n+1); } } } #endif #ifdef SQLITE_ENABLE_NORMALIZE /* ** zId of length nId is a double-quoted identifier. Check to see if ** that identifier is really used as a string literal. */ SQLITE_PRIVATE int sqlite3VdbeUsesDoubleQuotedString( Vdbe *pVdbe, /* The prepared statement */ const char *zId /* The double-quoted identifier, already dequoted */ ){ DblquoteStr *pStr; assert( zId!=0 ); if( pVdbe->pDblStr==0 ) return 0; for(pStr=pVdbe->pDblStr; pStr; pStr=pStr->pNextStr){ if( strcmp(zId, pStr->z)==0 ) return 1; } return 0; } #endif /* ** Swap all content between two VDBE structures. */ SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){ Vdbe tmp, *pTmp; char *zTmp; assert( pA->db==pB->db ); tmp = *pA; *pA = *pB; *pB = tmp; pTmp = pA->pNext; pA->pNext = pB->pNext; pB->pNext = pTmp; pTmp = pA->pPrev; pA->pPrev = pB->pPrev; pB->pPrev = pTmp; zTmp = pA->zSql; pA->zSql = pB->zSql; pB->zSql = zTmp; #ifdef SQLITE_ENABLE_NORMALIZE zTmp = pA->zNormSql; pA->zNormSql = pB->zNormSql; pB->zNormSql = zTmp; #endif pB->expmask = pA->expmask; pB->prepFlags = pA->prepFlags; memcpy(pB->aCounter, pA->aCounter, sizeof(pB->aCounter)); pB->aCounter[SQLITE_STMTSTATUS_REPREPARE]++; } /* ** Resize the Vdbe.aOp array so that it is at least nOp elements larger ** than its current size. nOp is guaranteed to be less than or equal ** to 1024/sizeof(Op). ** ** If an out-of-memory error occurs while resizing the array, return ** SQLITE_NOMEM. In this case Vdbe.aOp and Vdbe.nOpAlloc remain ** unchanged (this is so that any opcodes already allocated can be ** correctly deallocated along with the rest of the Vdbe). */ static int growOpArray(Vdbe *v, int nOp){ VdbeOp *pNew; Parse *p = v->pParse; /* The SQLITE_TEST_REALLOC_STRESS compile-time option is designed to force ** more frequent reallocs and hence provide more opportunities for ** simulated OOM faults. SQLITE_TEST_REALLOC_STRESS is generally used ** during testing only. With SQLITE_TEST_REALLOC_STRESS grow the op array ** by the minimum* amount required until the size reaches 512. Normal ** operation (without SQLITE_TEST_REALLOC_STRESS) is to double the current ** size of the op array or add 1KB of space, whichever is smaller. */ #ifdef SQLITE_TEST_REALLOC_STRESS sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc : (sqlite3_int64)v->nOpAlloc+nOp); #else sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc : (sqlite3_int64)(1024/sizeof(Op))); UNUSED_PARAMETER(nOp); #endif /* Ensure that the size of a VDBE does not grow too large */ if( nNew > p->db->aLimit[SQLITE_LIMIT_VDBE_OP] ){ sqlite3OomFault(p->db); return SQLITE_NOMEM; } assert( nOp<=(1024/sizeof(Op)) ); assert( nNew>=(v->nOpAlloc+nOp) ); pNew = sqlite3DbRealloc(p->db, v->aOp, nNew*sizeof(Op)); if( pNew ){ p->szOpAlloc = sqlite3DbMallocSize(p->db, pNew); v->nOpAlloc = p->szOpAlloc/sizeof(Op); v->aOp = pNew; } return (pNew ? SQLITE_OK : SQLITE_NOMEM_BKPT); } #ifdef SQLITE_DEBUG /* This routine is just a convenient place to set a breakpoint that will ** fire after each opcode is inserted and displayed using ** "PRAGMA vdbe_addoptrace=on". Parameters "pc" (program counter) and ** pOp are available to make the breakpoint conditional. ** ** Other useful labels for breakpoints include: ** test_trace_breakpoint(pc,pOp) ** sqlite3CorruptError(lineno) ** sqlite3MisuseError(lineno) ** sqlite3CantopenError(lineno) */ static void test_addop_breakpoint(int pc, Op *pOp){ static int n = 0; n++; } #endif /* ** Add a new instruction to the list of instructions current in the ** VDBE. Return the address of the new instruction. ** ** Parameters: ** ** p Pointer to the VDBE ** ** op The opcode for this instruction ** ** p1, p2, p3 Operands ** ** Use the sqlite3VdbeResolveLabel() function to fix an address and ** the sqlite3VdbeChangeP4() function to change the value of the P4 ** operand. */ static SQLITE_NOINLINE int growOp3(Vdbe *p, int op, int p1, int p2, int p3){ assert( p->nOpAlloc<=p->nOp ); if( growOpArray(p, 1) ) return 1; assert( p->nOpAlloc>p->nOp ); return sqlite3VdbeAddOp3(p, op, p1, p2, p3); } SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){ int i; VdbeOp *pOp; i = p->nOp; assert( p->iVdbeMagic==VDBE_MAGIC_INIT ); assert( op>=0 && op<0xff ); if( p->nOpAlloc<=i ){ return growOp3(p, op, p1, p2, p3); } assert( p->aOp!=0 ); p->nOp++; pOp = &p->aOp[i]; assert( pOp!=0 ); pOp->opcode = (u8)op; pOp->p5 = 0; pOp->p1 = p1; pOp->p2 = p2; pOp->p3 = p3; pOp->p4.p = 0; pOp->p4type = P4_NOTUSED; #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS pOp->zComment = 0; #endif #ifdef SQLITE_DEBUG if( p->db->flags & SQLITE_VdbeAddopTrace ){ sqlite3VdbePrintOp(0, i, &p->aOp[i]); test_addop_breakpoint(i, &p->aOp[i]); } #endif #ifdef VDBE_PROFILE pOp->cycles = 0; pOp->cnt = 0; #endif #ifdef SQLITE_VDBE_COVERAGE pOp->iSrcLine = 0; #endif return i; } SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe *p, int op){ return sqlite3VdbeAddOp3(p, op, 0, 0, 0); } SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){ return sqlite3VdbeAddOp3(p, op, p1, 0, 0); } SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){ return sqlite3VdbeAddOp3(p, op, p1, p2, 0); } /* Generate code for an unconditional jump to instruction iDest */ SQLITE_PRIVATE int sqlite3VdbeGoto(Vdbe *p, int iDest){ return sqlite3VdbeAddOp3(p, OP_Goto, 0, iDest, 0); } /* Generate code to cause the string zStr to be loaded into ** register iDest */ SQLITE_PRIVATE int sqlite3VdbeLoadString(Vdbe *p, int iDest, const char *zStr){ return sqlite3VdbeAddOp4(p, OP_String8, 0, iDest, 0, zStr, 0); } /* ** Generate code that initializes multiple registers to string or integer ** constants. The registers begin with iDest and increase consecutively. ** One register is initialized for each characgter in zTypes[]. For each ** "s" character in zTypes[], the register is a string if the argument is ** not NULL, or OP_Null if the value is a null pointer. For each "i" character ** in zTypes[], the register is initialized to an integer. ** ** If the input string does not end with "X" then an OP_ResultRow instruction ** is generated for the values inserted. */ SQLITE_PRIVATE void sqlite3VdbeMultiLoad(Vdbe *p, int iDest, const char *zTypes, ...){ va_list ap; int i; char c; va_start(ap, zTypes); for(i=0; (c = zTypes[i])!=0; i++){ if( c=='s' ){ const char *z = va_arg(ap, const char*); sqlite3VdbeAddOp4(p, z==0 ? OP_Null : OP_String8, 0, iDest+i, 0, z, 0); }else if( c=='i' ){ sqlite3VdbeAddOp2(p, OP_Integer, va_arg(ap, int), iDest+i); }else{ goto skip_op_resultrow; } } sqlite3VdbeAddOp2(p, OP_ResultRow, iDest, i); skip_op_resultrow: va_end(ap); } /* ** Add an opcode that includes the p4 value as a pointer. */ SQLITE_PRIVATE int sqlite3VdbeAddOp4( Vdbe *p, /* Add the opcode to this VM */ int op, /* The new opcode */ int p1, /* The P1 operand */ int p2, /* The P2 operand */ int p3, /* The P3 operand */ const char *zP4, /* The P4 operand */ int p4type /* P4 operand type */ ){ int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); sqlite3VdbeChangeP4(p, addr, zP4, p4type); return addr; } /* ** Add an OP_Function or OP_PureFunc opcode. ** ** The eCallCtx argument is information (typically taken from Expr.op2) ** that describes the calling context of the function. 0 means a general ** function call. NC_IsCheck means called by a check constraint, ** NC_IdxExpr means called as part of an index expression. NC_PartIdx ** means in the WHERE clause of a partial index. NC_GenCol means called ** while computing a generated column value. 0 is the usual case. */ SQLITE_PRIVATE int sqlite3VdbeAddFunctionCall( Parse *pParse, /* Parsing context */ int p1, /* Constant argument mask */ int p2, /* First argument register */ int p3, /* Register into which results are written */ int nArg, /* Number of argument */ const FuncDef *pFunc, /* The function to be invoked */ int eCallCtx /* Calling context */ ){ Vdbe *v = pParse->pVdbe; int nByte; int addr; sqlite3_context *pCtx; assert( v ); nByte = sizeof(*pCtx) + (nArg-1)*sizeof(sqlite3_value*); pCtx = sqlite3DbMallocRawNN(pParse->db, nByte); if( pCtx==0 ){ assert( pParse->db->mallocFailed ); freeEphemeralFunction(pParse->db, (FuncDef*)pFunc); return 0; } pCtx->pOut = 0; pCtx->pFunc = (FuncDef*)pFunc; pCtx->pVdbe = 0; pCtx->isError = 0; pCtx->argc = nArg; pCtx->iOp = sqlite3VdbeCurrentAddr(v); addr = sqlite3VdbeAddOp4(v, eCallCtx ? OP_PureFunc : OP_Function, p1, p2, p3, (char*)pCtx, P4_FUNCCTX); sqlite3VdbeChangeP5(v, eCallCtx & NC_SelfRef); return addr; } /* ** Add an opcode that includes the p4 value with a P4_INT64 or ** P4_REAL type. */ SQLITE_PRIVATE int sqlite3VdbeAddOp4Dup8( Vdbe *p, /* Add the opcode to this VM */ int op, /* The new opcode */ int p1, /* The P1 operand */ int p2, /* The P2 operand */ int p3, /* The P3 operand */ const u8 *zP4, /* The P4 operand */ int p4type /* P4 operand type */ ){ char *p4copy = sqlite3DbMallocRawNN(sqlite3VdbeDb(p), 8); if( p4copy ) memcpy(p4copy, zP4, 8); return sqlite3VdbeAddOp4(p, op, p1, p2, p3, p4copy, p4type); } #ifndef SQLITE_OMIT_EXPLAIN /* ** Return the address of the current EXPLAIN QUERY PLAN baseline. ** 0 means "none". */ SQLITE_PRIVATE int sqlite3VdbeExplainParent(Parse *pParse){ VdbeOp *pOp; if( pParse->addrExplain==0 ) return 0; pOp = sqlite3VdbeGetOp(pParse->pVdbe, pParse->addrExplain); return pOp->p2; } /* ** Set a debugger breakpoint on the following routine in order to ** monitor the EXPLAIN QUERY PLAN code generation. */ #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3ExplainBreakpoint(const char *z1, const char *z2){ (void)z1; (void)z2; } #endif /* ** Add a new OP_Explain opcode. ** ** If the bPush flag is true, then make this opcode the parent for ** subsequent Explains until sqlite3VdbeExplainPop() is called. */ SQLITE_PRIVATE void sqlite3VdbeExplain(Parse *pParse, u8 bPush, const char *zFmt, ...){ #ifndef SQLITE_DEBUG /* Always include the OP_Explain opcodes if SQLITE_DEBUG is defined. ** But omit them (for performance) during production builds */ if( pParse->explain==2 ) #endif { char *zMsg; Vdbe *v; va_list ap; int iThis; va_start(ap, zFmt); zMsg = sqlite3VMPrintf(pParse->db, zFmt, ap); va_end(ap); v = pParse->pVdbe; iThis = v->nOp; sqlite3VdbeAddOp4(v, OP_Explain, iThis, pParse->addrExplain, 0, zMsg, P4_DYNAMIC); sqlite3ExplainBreakpoint(bPush?"PUSH":"", sqlite3VdbeGetOp(v,-1)->p4.z); if( bPush){ pParse->addrExplain = iThis; } } } /* ** Pop the EXPLAIN QUERY PLAN stack one level. */ SQLITE_PRIVATE void sqlite3VdbeExplainPop(Parse *pParse){ sqlite3ExplainBreakpoint("POP", 0); pParse->addrExplain = sqlite3VdbeExplainParent(pParse); } #endif /* SQLITE_OMIT_EXPLAIN */ /* ** Add an OP_ParseSchema opcode. This routine is broken out from ** sqlite3VdbeAddOp4() since it needs to also needs to mark all btrees ** as having been used. ** ** The zWhere string must have been obtained from sqlite3_malloc(). ** This routine will take ownership of the allocated memory. */ SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere, u16 p5){ int j; sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC); sqlite3VdbeChangeP5(p, p5); for(j=0; jdb->nDb; j++) sqlite3VdbeUsesBtree(p, j); sqlite3MayAbort(p->pParse); } /* ** Add an opcode that includes the p4 value as an integer. */ SQLITE_PRIVATE int sqlite3VdbeAddOp4Int( Vdbe *p, /* Add the opcode to this VM */ int op, /* The new opcode */ int p1, /* The P1 operand */ int p2, /* The P2 operand */ int p3, /* The P3 operand */ int p4 /* The P4 operand as an integer */ ){ int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); if( p->db->mallocFailed==0 ){ VdbeOp *pOp = &p->aOp[addr]; pOp->p4type = P4_INT32; pOp->p4.i = p4; } return addr; } /* Insert the end of a co-routine */ SQLITE_PRIVATE void sqlite3VdbeEndCoroutine(Vdbe *v, int regYield){ sqlite3VdbeAddOp1(v, OP_EndCoroutine, regYield); /* Clear the temporary register cache, thereby ensuring that each ** co-routine has its own independent set of registers, because co-routines ** might expect their registers to be preserved across an OP_Yield, and ** that could cause problems if two or more co-routines are using the same ** temporary register. */ v->pParse->nTempReg = 0; v->pParse->nRangeReg = 0; } /* ** Create a new symbolic label for an instruction that has yet to be ** coded. The symbolic label is really just a negative number. The ** label can be used as the P2 value of an operation. Later, when ** the label is resolved to a specific address, the VDBE will scan ** through its operation list and change all values of P2 which match ** the label into the resolved address. ** ** The VDBE knows that a P2 value is a label because labels are ** always negative and P2 values are suppose to be non-negative. ** Hence, a negative P2 value is a label that has yet to be resolved. ** (Later:) This is only true for opcodes that have the OPFLG_JUMP ** property. ** ** Variable usage notes: ** ** Parse.aLabel[x] Stores the address that the x-th label resolves ** into. For testing (SQLITE_DEBUG), unresolved ** labels stores -1, but that is not required. ** Parse.nLabelAlloc Number of slots allocated to Parse.aLabel[] ** Parse.nLabel The *negative* of the number of labels that have ** been issued. The negative is stored because ** that gives a performance improvement over storing ** the equivalent positive value. */ SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Parse *pParse){ return --pParse->nLabel; } /* ** Resolve label "x" to be the address of the next instruction to ** be inserted. The parameter "x" must have been obtained from ** a prior call to sqlite3VdbeMakeLabel(). */ static SQLITE_NOINLINE void resizeResolveLabel(Parse *p, Vdbe *v, int j){ int nNewSize = 10 - p->nLabel; p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel, nNewSize*sizeof(p->aLabel[0])); if( p->aLabel==0 ){ p->nLabelAlloc = 0; }else{ #ifdef SQLITE_DEBUG int i; for(i=p->nLabelAlloc; iaLabel[i] = -1; #endif p->nLabelAlloc = nNewSize; p->aLabel[j] = v->nOp; } } SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe *v, int x){ Parse *p = v->pParse; int j = ADDR(x); assert( v->iVdbeMagic==VDBE_MAGIC_INIT ); assert( j<-p->nLabel ); assert( j>=0 ); #ifdef SQLITE_DEBUG if( p->db->flags & SQLITE_VdbeAddopTrace ){ printf("RESOLVE LABEL %d to %d\n", x, v->nOp); } #endif if( p->nLabelAlloc + p->nLabel < 0 ){ resizeResolveLabel(p,v,j); }else{ assert( p->aLabel[j]==(-1) ); /* Labels may only be resolved once */ p->aLabel[j] = v->nOp; } } /* ** Mark the VDBE as one that can only be run one time. */ SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe *p){ p->runOnlyOnce = 1; } /* ** Mark the VDBE as one that can only be run multiple times. */ SQLITE_PRIVATE void sqlite3VdbeReusable(Vdbe *p){ p->runOnlyOnce = 0; } #ifdef SQLITE_DEBUG /* sqlite3AssertMayAbort() logic */ /* ** The following type and function are used to iterate through all opcodes ** in a Vdbe main program and each of the sub-programs (triggers) it may ** invoke directly or indirectly. It should be used as follows: ** ** Op *pOp; ** VdbeOpIter sIter; ** ** memset(&sIter, 0, sizeof(sIter)); ** sIter.v = v; // v is of type Vdbe* ** while( (pOp = opIterNext(&sIter)) ){ ** // Do something with pOp ** } ** sqlite3DbFree(v->db, sIter.apSub); ** */ typedef struct VdbeOpIter VdbeOpIter; struct VdbeOpIter { Vdbe *v; /* Vdbe to iterate through the opcodes of */ SubProgram **apSub; /* Array of subprograms */ int nSub; /* Number of entries in apSub */ int iAddr; /* Address of next instruction to return */ int iSub; /* 0 = main program, 1 = first sub-program etc. */ }; static Op *opIterNext(VdbeOpIter *p){ Vdbe *v = p->v; Op *pRet = 0; Op *aOp; int nOp; if( p->iSub<=p->nSub ){ if( p->iSub==0 ){ aOp = v->aOp; nOp = v->nOp; }else{ aOp = p->apSub[p->iSub-1]->aOp; nOp = p->apSub[p->iSub-1]->nOp; } assert( p->iAddriAddr]; p->iAddr++; if( p->iAddr==nOp ){ p->iSub++; p->iAddr = 0; } if( pRet->p4type==P4_SUBPROGRAM ){ int nByte = (p->nSub+1)*sizeof(SubProgram*); int j; for(j=0; jnSub; j++){ if( p->apSub[j]==pRet->p4.pProgram ) break; } if( j==p->nSub ){ p->apSub = sqlite3DbReallocOrFree(v->db, p->apSub, nByte); if( !p->apSub ){ pRet = 0; }else{ p->apSub[p->nSub++] = pRet->p4.pProgram; } } } } return pRet; } /* ** Check if the program stored in the VM associated with pParse may ** throw an ABORT exception (causing the statement, but not entire transaction ** to be rolled back). This condition is true if the main program or any ** sub-programs contains any of the following: ** ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort. ** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort. ** * OP_Destroy ** * OP_VUpdate ** * OP_VCreate ** * OP_VRename ** * OP_FkCounter with P2==0 (immediate foreign key constraint) ** * OP_CreateBtree/BTREE_INTKEY and OP_InitCoroutine ** (for CREATE TABLE AS SELECT ...) ** ** Then check that the value of Parse.mayAbort is true if an ** ABORT may be thrown, or false otherwise. Return true if it does ** match, or false otherwise. This function is intended to be used as ** part of an assert statement in the compiler. Similar to: ** ** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) ); */ SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){ int hasAbort = 0; int hasFkCounter = 0; int hasCreateTable = 0; int hasCreateIndex = 0; int hasInitCoroutine = 0; Op *pOp; VdbeOpIter sIter; memset(&sIter, 0, sizeof(sIter)); sIter.v = v; while( (pOp = opIterNext(&sIter))!=0 ){ int opcode = pOp->opcode; if( opcode==OP_Destroy || opcode==OP_VUpdate || opcode==OP_VRename || opcode==OP_VDestroy || opcode==OP_VCreate || opcode==OP_ParseSchema || ((opcode==OP_Halt || opcode==OP_HaltIfNull) && ((pOp->p1)!=SQLITE_OK && pOp->p2==OE_Abort)) ){ hasAbort = 1; break; } if( opcode==OP_CreateBtree && pOp->p3==BTREE_INTKEY ) hasCreateTable = 1; if( mayAbort ){ /* hasCreateIndex may also be set for some DELETE statements that use ** OP_Clear. So this routine may end up returning true in the case ** where a "DELETE FROM tbl" has a statement-journal but does not ** require one. This is not so bad - it is an inefficiency, not a bug. */ if( opcode==OP_CreateBtree && pOp->p3==BTREE_BLOBKEY ) hasCreateIndex = 1; if( opcode==OP_Clear ) hasCreateIndex = 1; } if( opcode==OP_InitCoroutine ) hasInitCoroutine = 1; #ifndef SQLITE_OMIT_FOREIGN_KEY if( opcode==OP_FkCounter && pOp->p1==0 && pOp->p2==1 ){ hasFkCounter = 1; } #endif } sqlite3DbFree(v->db, sIter.apSub); /* Return true if hasAbort==mayAbort. Or if a malloc failure occurred. ** If malloc failed, then the while() loop above may not have iterated ** through all opcodes and hasAbort may be set incorrectly. Return ** true for this case to prevent the assert() in the callers frame ** from failing. */ return ( v->db->mallocFailed || hasAbort==mayAbort || hasFkCounter || (hasCreateTable && hasInitCoroutine) || hasCreateIndex ); } #endif /* SQLITE_DEBUG - the sqlite3AssertMayAbort() function */ #ifdef SQLITE_DEBUG /* ** Increment the nWrite counter in the VDBE if the cursor is not an ** ephemeral cursor, or if the cursor argument is NULL. */ SQLITE_PRIVATE void sqlite3VdbeIncrWriteCounter(Vdbe *p, VdbeCursor *pC){ if( pC==0 || (pC->eCurType!=CURTYPE_SORTER && pC->eCurType!=CURTYPE_PSEUDO && !pC->isEphemeral) ){ p->nWrite++; } } #endif #ifdef SQLITE_DEBUG /* ** Assert if an Abort at this point in time might result in a corrupt ** database. */ SQLITE_PRIVATE void sqlite3VdbeAssertAbortable(Vdbe *p){ assert( p->nWrite==0 || p->usesStmtJournal ); } #endif /* ** This routine is called after all opcodes have been inserted. It loops ** through all the opcodes and fixes up some details. ** ** (1) For each jump instruction with a negative P2 value (a label) ** resolve the P2 value to an actual address. ** ** (2) Compute the maximum number of arguments used by any SQL function ** and store that value in *pMaxFuncArgs. ** ** (3) Update the Vdbe.readOnly and Vdbe.bIsReader flags to accurately ** indicate what the prepared statement actually does. ** ** (4) Initialize the p4.xAdvance pointer on opcodes that use it. ** ** (5) Reclaim the memory allocated for storing labels. ** ** This routine will only function correctly if the mkopcodeh.tcl generator ** script numbers the opcodes correctly. Changes to this routine must be ** coordinated with changes to mkopcodeh.tcl. */ static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){ int nMaxArgs = *pMaxFuncArgs; Op *pOp; Parse *pParse = p->pParse; int *aLabel = pParse->aLabel; p->readOnly = 1; p->bIsReader = 0; pOp = &p->aOp[p->nOp-1]; while(1){ /* Only JUMP opcodes and the short list of special opcodes in the switch ** below need to be considered. The mkopcodeh.tcl generator script groups ** all these opcodes together near the front of the opcode list. Skip ** any opcode that does not need processing by virtual of the fact that ** it is larger than SQLITE_MX_JUMP_OPCODE, as a performance optimization. */ if( pOp->opcode<=SQLITE_MX_JUMP_OPCODE ){ /* NOTE: Be sure to update mkopcodeh.tcl when adding or removing ** cases from this switch! */ switch( pOp->opcode ){ case OP_Transaction: { if( pOp->p2!=0 ) p->readOnly = 0; /* no break */ deliberate_fall_through } case OP_AutoCommit: case OP_Savepoint: { p->bIsReader = 1; break; } #ifndef SQLITE_OMIT_WAL case OP_Checkpoint: #endif case OP_Vacuum: case OP_JournalMode: { p->readOnly = 0; p->bIsReader = 1; break; } case OP_Next: case OP_SorterNext: { pOp->p4.xAdvance = sqlite3BtreeNext; pOp->p4type = P4_ADVANCE; /* The code generator never codes any of these opcodes as a jump ** to a label. They are always coded as a jump backwards to a ** known address */ assert( pOp->p2>=0 ); break; } case OP_Prev: { pOp->p4.xAdvance = sqlite3BtreePrevious; pOp->p4type = P4_ADVANCE; /* The code generator never codes any of these opcodes as a jump ** to a label. They are always coded as a jump backwards to a ** known address */ assert( pOp->p2>=0 ); break; } #ifndef SQLITE_OMIT_VIRTUALTABLE case OP_VUpdate: { if( pOp->p2>nMaxArgs ) nMaxArgs = pOp->p2; break; } case OP_VFilter: { int n; assert( (pOp - p->aOp) >= 3 ); assert( pOp[-1].opcode==OP_Integer ); n = pOp[-1].p1; if( n>nMaxArgs ) nMaxArgs = n; /* Fall through into the default case */ /* no break */ deliberate_fall_through } #endif default: { if( pOp->p2<0 ){ /* The mkopcodeh.tcl script has so arranged things that the only ** non-jump opcodes less than SQLITE_MX_JUMP_CODE are guaranteed to ** have non-negative values for P2. */ assert( (sqlite3OpcodeProperty[pOp->opcode] & OPFLG_JUMP)!=0 ); assert( ADDR(pOp->p2)<-pParse->nLabel ); pOp->p2 = aLabel[ADDR(pOp->p2)]; } break; } } /* The mkopcodeh.tcl script has so arranged things that the only ** non-jump opcodes less than SQLITE_MX_JUMP_CODE are guaranteed to ** have non-negative values for P2. */ assert( (sqlite3OpcodeProperty[pOp->opcode]&OPFLG_JUMP)==0 || pOp->p2>=0); } if( pOp==p->aOp ) break; pOp--; } sqlite3DbFree(p->db, pParse->aLabel); pParse->aLabel = 0; pParse->nLabel = 0; *pMaxFuncArgs = nMaxArgs; assert( p->bIsReader!=0 || DbMaskAllZero(p->btreeMask) ); } /* ** Return the address of the next instruction to be inserted. */ SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe *p){ assert( p->iVdbeMagic==VDBE_MAGIC_INIT ); return p->nOp; } /* ** Verify that at least N opcode slots are available in p without ** having to malloc for more space (except when compiled using ** SQLITE_TEST_REALLOC_STRESS). This interface is used during testing ** to verify that certain calls to sqlite3VdbeAddOpList() can never ** fail due to a OOM fault and hence that the return value from ** sqlite3VdbeAddOpList() will always be non-NULL. */ #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) SQLITE_PRIVATE void sqlite3VdbeVerifyNoMallocRequired(Vdbe *p, int N){ assert( p->nOp + N <= p->nOpAlloc ); } #endif /* ** Verify that the VM passed as the only argument does not contain ** an OP_ResultRow opcode. Fail an assert() if it does. This is used ** by code in pragma.c to ensure that the implementation of certain ** pragmas comports with the flags specified in the mkpragmatab.tcl ** script. */ #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) SQLITE_PRIVATE void sqlite3VdbeVerifyNoResultRow(Vdbe *p){ int i; for(i=0; inOp; i++){ assert( p->aOp[i].opcode!=OP_ResultRow ); } } #endif /* ** Generate code (a single OP_Abortable opcode) that will ** verify that the VDBE program can safely call Abort in the current ** context. */ #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3VdbeVerifyAbortable(Vdbe *p, int onError){ if( onError==OE_Abort ) sqlite3VdbeAddOp0(p, OP_Abortable); } #endif /* ** This function returns a pointer to the array of opcodes associated with ** the Vdbe passed as the first argument. It is the callers responsibility ** to arrange for the returned array to be eventually freed using the ** vdbeFreeOpArray() function. ** ** Before returning, *pnOp is set to the number of entries in the returned ** array. Also, *pnMaxArg is set to the larger of its current value and ** the number of entries in the Vdbe.apArg[] array required to execute the ** returned program. */ SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){ VdbeOp *aOp = p->aOp; assert( aOp && !p->db->mallocFailed ); /* Check that sqlite3VdbeUsesBtree() was not called on this VM */ assert( DbMaskAllZero(p->btreeMask) ); resolveP2Values(p, pnMaxArg); *pnOp = p->nOp; p->aOp = 0; return aOp; } /* ** Add a whole list of operations to the operation stack. Return a ** pointer to the first operation inserted. ** ** Non-zero P2 arguments to jump instructions are automatically adjusted ** so that the jump target is relative to the first operation inserted. */ SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList( Vdbe *p, /* Add opcodes to the prepared statement */ int nOp, /* Number of opcodes to add */ VdbeOpList const *aOp, /* The opcodes to be added */ int iLineno /* Source-file line number of first opcode */ ){ int i; VdbeOp *pOut, *pFirst; assert( nOp>0 ); assert( p->iVdbeMagic==VDBE_MAGIC_INIT ); if( p->nOp + nOp > p->nOpAlloc && growOpArray(p, nOp) ){ return 0; } pFirst = pOut = &p->aOp[p->nOp]; for(i=0; iopcode = aOp->opcode; pOut->p1 = aOp->p1; pOut->p2 = aOp->p2; assert( aOp->p2>=0 ); if( (sqlite3OpcodeProperty[aOp->opcode] & OPFLG_JUMP)!=0 && aOp->p2>0 ){ pOut->p2 += p->nOp; } pOut->p3 = aOp->p3; pOut->p4type = P4_NOTUSED; pOut->p4.p = 0; pOut->p5 = 0; #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS pOut->zComment = 0; #endif #ifdef SQLITE_VDBE_COVERAGE pOut->iSrcLine = iLineno+i; #else (void)iLineno; #endif #ifdef SQLITE_DEBUG if( p->db->flags & SQLITE_VdbeAddopTrace ){ sqlite3VdbePrintOp(0, i+p->nOp, &p->aOp[i+p->nOp]); } #endif } p->nOp += nOp; return pFirst; } #if defined(SQLITE_ENABLE_STMT_SCANSTATUS) /* ** Add an entry to the array of counters managed by sqlite3_stmt_scanstatus(). */ SQLITE_PRIVATE void sqlite3VdbeScanStatus( Vdbe *p, /* VM to add scanstatus() to */ int addrExplain, /* Address of OP_Explain (or 0) */ int addrLoop, /* Address of loop counter */ int addrVisit, /* Address of rows visited counter */ LogEst nEst, /* Estimated number of output rows */ const char *zName /* Name of table or index being scanned */ ){ sqlite3_int64 nByte = (p->nScan+1) * sizeof(ScanStatus); ScanStatus *aNew; aNew = (ScanStatus*)sqlite3DbRealloc(p->db, p->aScan, nByte); if( aNew ){ ScanStatus *pNew = &aNew[p->nScan++]; pNew->addrExplain = addrExplain; pNew->addrLoop = addrLoop; pNew->addrVisit = addrVisit; pNew->nEst = nEst; pNew->zName = sqlite3DbStrDup(p->db, zName); p->aScan = aNew; } } #endif /* ** Change the value of the opcode, or P1, P2, P3, or P5 operands ** for a specific instruction. */ SQLITE_PRIVATE void sqlite3VdbeChangeOpcode(Vdbe *p, int addr, u8 iNewOpcode){ sqlite3VdbeGetOp(p,addr)->opcode = iNewOpcode; } SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe *p, int addr, int val){ sqlite3VdbeGetOp(p,addr)->p1 = val; } SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe *p, int addr, int val){ sqlite3VdbeGetOp(p,addr)->p2 = val; } SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe *p, int addr, int val){ sqlite3VdbeGetOp(p,addr)->p3 = val; } SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe *p, u16 p5){ assert( p->nOp>0 || p->db->mallocFailed ); if( p->nOp>0 ) p->aOp[p->nOp-1].p5 = p5; } /* ** Change the P2 operand of instruction addr so that it points to ** the address of the next instruction to be coded. */ SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe *p, int addr){ sqlite3VdbeChangeP2(p, addr, p->nOp); } /* ** Change the P2 operand of the jump instruction at addr so that ** the jump lands on the next opcode. Or if the jump instruction was ** the previous opcode (and is thus a no-op) then simply back up ** the next instruction counter by one slot so that the jump is ** overwritten by the next inserted opcode. ** ** This routine is an optimization of sqlite3VdbeJumpHere() that ** strives to omit useless byte-code like this: ** ** 7 Once 0 8 0 ** 8 ... */ SQLITE_PRIVATE void sqlite3VdbeJumpHereOrPopInst(Vdbe *p, int addr){ if( addr==p->nOp-1 ){ assert( p->aOp[addr].opcode==OP_Once || p->aOp[addr].opcode==OP_If || p->aOp[addr].opcode==OP_FkIfZero ); assert( p->aOp[addr].p4type==0 ); #ifdef SQLITE_VDBE_COVERAGE sqlite3VdbeGetOp(p,-1)->iSrcLine = 0; /* Erase VdbeCoverage() macros */ #endif p->nOp--; }else{ sqlite3VdbeChangeP2(p, addr, p->nOp); } } /* ** If the input FuncDef structure is ephemeral, then free it. If ** the FuncDef is not ephermal, then do nothing. */ static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef){ if( (pDef->funcFlags & SQLITE_FUNC_EPHEM)!=0 ){ sqlite3DbFreeNN(db, pDef); } } /* ** Delete a P4 value if necessary. */ static SQLITE_NOINLINE void freeP4Mem(sqlite3 *db, Mem *p){ if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); sqlite3DbFreeNN(db, p); } static SQLITE_NOINLINE void freeP4FuncCtx(sqlite3 *db, sqlite3_context *p){ freeEphemeralFunction(db, p->pFunc); sqlite3DbFreeNN(db, p); } static void freeP4(sqlite3 *db, int p4type, void *p4){ assert( db ); switch( p4type ){ case P4_FUNCCTX: { freeP4FuncCtx(db, (sqlite3_context*)p4); break; } case P4_REAL: case P4_INT64: case P4_DYNAMIC: case P4_DYNBLOB: case P4_INTARRAY: { sqlite3DbFree(db, p4); break; } case P4_KEYINFO: { if( db->pnBytesFreed==0 ) sqlite3KeyInfoUnref((KeyInfo*)p4); break; } #ifdef SQLITE_ENABLE_CURSOR_HINTS case P4_EXPR: { sqlite3ExprDelete(db, (Expr*)p4); break; } #endif case P4_FUNCDEF: { freeEphemeralFunction(db, (FuncDef*)p4); break; } case P4_MEM: { if( db->pnBytesFreed==0 ){ sqlite3ValueFree((sqlite3_value*)p4); }else{ freeP4Mem(db, (Mem*)p4); } break; } case P4_VTAB : { if( db->pnBytesFreed==0 ) sqlite3VtabUnlock((VTable *)p4); break; } } } /* ** Free the space allocated for aOp and any p4 values allocated for the ** opcodes contained within. If aOp is not NULL it is assumed to contain ** nOp entries. */ static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){ if( aOp ){ Op *pOp; for(pOp=&aOp[nOp-1]; pOp>=aOp; pOp--){ if( pOp->p4type <= P4_FREE_IF_LE ) freeP4(db, pOp->p4type, pOp->p4.p); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS sqlite3DbFree(db, pOp->zComment); #endif } sqlite3DbFreeNN(db, aOp); } } /* ** Link the SubProgram object passed as the second argument into the linked ** list at Vdbe.pSubProgram. This list is used to delete all sub-program ** objects when the VM is no longer required. */ SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ p->pNext = pVdbe->pProgram; pVdbe->pProgram = p; } /* ** Return true if the given Vdbe has any SubPrograms. */ SQLITE_PRIVATE int sqlite3VdbeHasSubProgram(Vdbe *pVdbe){ return pVdbe->pProgram!=0; } /* ** Change the opcode at addr into OP_Noop */ SQLITE_PRIVATE int sqlite3VdbeChangeToNoop(Vdbe *p, int addr){ VdbeOp *pOp; if( p->db->mallocFailed ) return 0; assert( addr>=0 && addrnOp ); pOp = &p->aOp[addr]; freeP4(p->db, pOp->p4type, pOp->p4.p); pOp->p4type = P4_NOTUSED; pOp->p4.z = 0; pOp->opcode = OP_Noop; return 1; } /* ** If the last opcode is "op" and it is not a jump destination, ** then remove it. Return true if and only if an opcode was removed. */ SQLITE_PRIVATE int sqlite3VdbeDeletePriorOpcode(Vdbe *p, u8 op){ if( p->nOp>0 && p->aOp[p->nOp-1].opcode==op ){ return sqlite3VdbeChangeToNoop(p, p->nOp-1); }else{ return 0; } } #ifdef SQLITE_DEBUG /* ** Generate an OP_ReleaseReg opcode to indicate that a range of ** registers, except any identified by mask, are no longer in use. */ SQLITE_PRIVATE void sqlite3VdbeReleaseRegisters( Parse *pParse, /* Parsing context */ int iFirst, /* Index of first register to be released */ int N, /* Number of registers to release */ u32 mask, /* Mask of registers to NOT release */ int bUndefine /* If true, mark registers as undefined */ ){ if( N==0 ) return; assert( pParse->pVdbe ); assert( iFirst>=1 ); assert( iFirst+N-1<=pParse->nMem ); if( N<=31 && mask!=0 ){ while( N>0 && (mask&1)!=0 ){ mask >>= 1; iFirst++; N--; } while( N>0 && N<=32 && (mask & MASKBIT32(N-1))!=0 ){ mask &= ~MASKBIT32(N-1); N--; } } if( N>0 ){ sqlite3VdbeAddOp3(pParse->pVdbe, OP_ReleaseReg, iFirst, N, *(int*)&mask); if( bUndefine ) sqlite3VdbeChangeP5(pParse->pVdbe, 1); } } #endif /* SQLITE_DEBUG */ /* ** Change the value of the P4 operand for a specific instruction. ** This routine is useful when a large program is loaded from a ** static array using sqlite3VdbeAddOpList but we want to make a ** few minor changes to the program. ** ** If n>=0 then the P4 operand is dynamic, meaning that a copy of ** the string is made into memory obtained from sqlite3_malloc(). ** A value of n==0 means copy bytes of zP4 up to and including the ** first null byte. If n>0 then copy n+1 bytes of zP4. ** ** Other values of n (P4_STATIC, P4_COLLSEQ etc.) indicate that zP4 points ** to a string or structure that is guaranteed to exist for the lifetime of ** the Vdbe. In these cases we can just copy the pointer. ** ** If addr<0 then change P4 on the most recently inserted instruction. */ static void SQLITE_NOINLINE vdbeChangeP4Full( Vdbe *p, Op *pOp, const char *zP4, int n ){ if( pOp->p4type ){ freeP4(p->db, pOp->p4type, pOp->p4.p); pOp->p4type = 0; pOp->p4.p = 0; } if( n<0 ){ sqlite3VdbeChangeP4(p, (int)(pOp - p->aOp), zP4, n); }else{ if( n==0 ) n = sqlite3Strlen30(zP4); pOp->p4.z = sqlite3DbStrNDup(p->db, zP4, n); pOp->p4type = P4_DYNAMIC; } } SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){ Op *pOp; sqlite3 *db; assert( p!=0 ); db = p->db; assert( p->iVdbeMagic==VDBE_MAGIC_INIT ); assert( p->aOp!=0 || db->mallocFailed ); if( db->mallocFailed ){ if( n!=P4_VTAB ) freeP4(db, n, (void*)*(char**)&zP4); return; } assert( p->nOp>0 ); assert( addrnOp ); if( addr<0 ){ addr = p->nOp - 1; } pOp = &p->aOp[addr]; if( n>=0 || pOp->p4type ){ vdbeChangeP4Full(p, pOp, zP4, n); return; } if( n==P4_INT32 ){ /* Note: this cast is safe, because the origin data point was an int ** that was cast to a (const char *). */ pOp->p4.i = SQLITE_PTR_TO_INT(zP4); pOp->p4type = P4_INT32; }else if( zP4!=0 ){ assert( n<0 ); pOp->p4.p = (void*)zP4; pOp->p4type = (signed char)n; if( n==P4_VTAB ) sqlite3VtabLock((VTable*)zP4); } } /* ** Change the P4 operand of the most recently coded instruction ** to the value defined by the arguments. This is a high-speed ** version of sqlite3VdbeChangeP4(). ** ** The P4 operand must not have been previously defined. And the new ** P4 must not be P4_INT32. Use sqlite3VdbeChangeP4() in either of ** those cases. */ SQLITE_PRIVATE void sqlite3VdbeAppendP4(Vdbe *p, void *pP4, int n){ VdbeOp *pOp; assert( n!=P4_INT32 && n!=P4_VTAB ); assert( n<=0 ); if( p->db->mallocFailed ){ freeP4(p->db, n, pP4); }else{ assert( pP4!=0 ); assert( p->nOp>0 ); pOp = &p->aOp[p->nOp-1]; assert( pOp->p4type==P4_NOTUSED ); pOp->p4type = n; pOp->p4.p = pP4; } } /* ** Set the P4 on the most recently added opcode to the KeyInfo for the ** index given. */ SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){ Vdbe *v = pParse->pVdbe; KeyInfo *pKeyInfo; assert( v!=0 ); assert( pIdx!=0 ); pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pIdx); if( pKeyInfo ) sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); } #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS /* ** Change the comment on the most recently coded instruction. Or ** insert a No-op and add the comment to that new instruction. This ** makes the code easier to read during debugging. None of this happens ** in a production build. */ static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){ assert( p->nOp>0 || p->aOp==0 ); assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->pParse->nErr>0 ); if( p->nOp ){ assert( p->aOp ); sqlite3DbFree(p->db, p->aOp[p->nOp-1].zComment); p->aOp[p->nOp-1].zComment = sqlite3VMPrintf(p->db, zFormat, ap); } } SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ va_list ap; if( p ){ va_start(ap, zFormat); vdbeVComment(p, zFormat, ap); va_end(ap); } } SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ va_list ap; if( p ){ sqlite3VdbeAddOp0(p, OP_Noop); va_start(ap, zFormat); vdbeVComment(p, zFormat, ap); va_end(ap); } } #endif /* NDEBUG */ #ifdef SQLITE_VDBE_COVERAGE /* ** Set the value if the iSrcLine field for the previously coded instruction. */ SQLITE_PRIVATE void sqlite3VdbeSetLineNumber(Vdbe *v, int iLine){ sqlite3VdbeGetOp(v,-1)->iSrcLine = iLine; } #endif /* SQLITE_VDBE_COVERAGE */ /* ** Return the opcode for a given address. If the address is -1, then ** return the most recently inserted opcode. ** ** If a memory allocation error has occurred prior to the calling of this ** routine, then a pointer to a dummy VdbeOp will be returned. That opcode ** is readable but not writable, though it is cast to a writable value. ** The return of a dummy opcode allows the call to continue functioning ** after an OOM fault without having to check to see if the return from ** this routine is a valid pointer. But because the dummy.opcode is 0, ** dummy will never be written to. This is verified by code inspection and ** by running with Valgrind. */ SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){ /* C89 specifies that the constant "dummy" will be initialized to all ** zeros, which is correct. MSVC generates a warning, nevertheless. */ static VdbeOp dummy; /* Ignore the MSVC warning about no initializer */ assert( p->iVdbeMagic==VDBE_MAGIC_INIT ); if( addr<0 ){ addr = p->nOp - 1; } assert( (addr>=0 && addrnOp) || p->db->mallocFailed ); if( p->db->mallocFailed ){ return (VdbeOp*)&dummy; }else{ return &p->aOp[addr]; } } #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) /* ** Return an integer value for one of the parameters to the opcode pOp ** determined by character c. */ static int translateP(char c, const Op *pOp){ if( c=='1' ) return pOp->p1; if( c=='2' ) return pOp->p2; if( c=='3' ) return pOp->p3; if( c=='4' ) return pOp->p4.i; return pOp->p5; } /* ** Compute a string for the "comment" field of a VDBE opcode listing. ** ** The Synopsis: field in comments in the vdbe.c source file gets converted ** to an extra string that is appended to the sqlite3OpcodeName(). In the ** absence of other comments, this synopsis becomes the comment on the opcode. ** Some translation occurs: ** ** "PX" -> "r[X]" ** "PX@PY" -> "r[X..X+Y-1]" or "r[x]" if y is 0 or 1 ** "PX@PY+1" -> "r[X..X+Y]" or "r[x]" if y is 0 ** "PY..PY" -> "r[X..Y]" or "r[x]" if y<=x */ SQLITE_PRIVATE char *sqlite3VdbeDisplayComment( sqlite3 *db, /* Optional - Oom error reporting only */ const Op *pOp, /* The opcode to be commented */ const char *zP4 /* Previously obtained value for P4 */ ){ const char *zOpName; const char *zSynopsis; int nOpName; int ii; char zAlt[50]; StrAccum x; sqlite3StrAccumInit(&x, 0, 0, 0, SQLITE_MAX_LENGTH); zOpName = sqlite3OpcodeName(pOp->opcode); nOpName = sqlite3Strlen30(zOpName); if( zOpName[nOpName+1] ){ int seenCom = 0; char c; zSynopsis = zOpName + nOpName + 1; if( strncmp(zSynopsis,"IF ",3)==0 ){ sqlite3_snprintf(sizeof(zAlt), zAlt, "if %s goto P2", zSynopsis+3); zSynopsis = zAlt; } for(ii=0; (c = zSynopsis[ii])!=0; ii++){ if( c=='P' ){ c = zSynopsis[++ii]; if( c=='4' ){ sqlite3_str_appendall(&x, zP4); }else if( c=='X' ){ sqlite3_str_appendall(&x, pOp->zComment); seenCom = 1; }else{ int v1 = translateP(c, pOp); int v2; if( strncmp(zSynopsis+ii+1, "@P", 2)==0 ){ ii += 3; v2 = translateP(zSynopsis[ii], pOp); if( strncmp(zSynopsis+ii+1,"+1",2)==0 ){ ii += 2; v2++; } if( v2<2 ){ sqlite3_str_appendf(&x, "%d", v1); }else{ sqlite3_str_appendf(&x, "%d..%d", v1, v1+v2-1); } }else if( strncmp(zSynopsis+ii+1, "@NP", 3)==0 ){ sqlite3_context *pCtx = pOp->p4.pCtx; if( pOp->p4type!=P4_FUNCCTX || pCtx->argc==1 ){ sqlite3_str_appendf(&x, "%d", v1); }else if( pCtx->argc>1 ){ sqlite3_str_appendf(&x, "%d..%d", v1, v1+pCtx->argc-1); }else if( x.accError==0 ){ assert( x.nChar>2 ); x.nChar -= 2; ii++; } ii += 3; }else{ sqlite3_str_appendf(&x, "%d", v1); if( strncmp(zSynopsis+ii+1, "..P3", 4)==0 && pOp->p3==0 ){ ii += 4; } } } }else{ sqlite3_str_appendchar(&x, 1, c); } } if( !seenCom && pOp->zComment ){ sqlite3_str_appendf(&x, "; %s", pOp->zComment); } }else if( pOp->zComment ){ sqlite3_str_appendall(&x, pOp->zComment); } if( (x.accError & SQLITE_NOMEM)!=0 && db!=0 ){ sqlite3OomFault(db); } return sqlite3StrAccumFinish(&x); } #endif /* SQLITE_ENABLE_EXPLAIN_COMMENTS */ #if VDBE_DISPLAY_P4 && defined(SQLITE_ENABLE_CURSOR_HINTS) /* ** Translate the P4.pExpr value for an OP_CursorHint opcode into text ** that can be displayed in the P4 column of EXPLAIN output. */ static void displayP4Expr(StrAccum *p, Expr *pExpr){ const char *zOp = 0; switch( pExpr->op ){ case TK_STRING: assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3_str_appendf(p, "%Q", pExpr->u.zToken); break; case TK_INTEGER: sqlite3_str_appendf(p, "%d", pExpr->u.iValue); break; case TK_NULL: sqlite3_str_appendf(p, "NULL"); break; case TK_REGISTER: { sqlite3_str_appendf(p, "r[%d]", pExpr->iTable); break; } case TK_COLUMN: { if( pExpr->iColumn<0 ){ sqlite3_str_appendf(p, "rowid"); }else{ sqlite3_str_appendf(p, "c%d", (int)pExpr->iColumn); } break; } case TK_LT: zOp = "LT"; break; case TK_LE: zOp = "LE"; break; case TK_GT: zOp = "GT"; break; case TK_GE: zOp = "GE"; break; case TK_NE: zOp = "NE"; break; case TK_EQ: zOp = "EQ"; break; case TK_IS: zOp = "IS"; break; case TK_ISNOT: zOp = "ISNOT"; break; case TK_AND: zOp = "AND"; break; case TK_OR: zOp = "OR"; break; case TK_PLUS: zOp = "ADD"; break; case TK_STAR: zOp = "MUL"; break; case TK_MINUS: zOp = "SUB"; break; case TK_REM: zOp = "REM"; break; case TK_BITAND: zOp = "BITAND"; break; case TK_BITOR: zOp = "BITOR"; break; case TK_SLASH: zOp = "DIV"; break; case TK_LSHIFT: zOp = "LSHIFT"; break; case TK_RSHIFT: zOp = "RSHIFT"; break; case TK_CONCAT: zOp = "CONCAT"; break; case TK_UMINUS: zOp = "MINUS"; break; case TK_UPLUS: zOp = "PLUS"; break; case TK_BITNOT: zOp = "BITNOT"; break; case TK_NOT: zOp = "NOT"; break; case TK_ISNULL: zOp = "ISNULL"; break; case TK_NOTNULL: zOp = "NOTNULL"; break; default: sqlite3_str_appendf(p, "%s", "expr"); break; } if( zOp ){ sqlite3_str_appendf(p, "%s(", zOp); displayP4Expr(p, pExpr->pLeft); if( pExpr->pRight ){ sqlite3_str_append(p, ",", 1); displayP4Expr(p, pExpr->pRight); } sqlite3_str_append(p, ")", 1); } } #endif /* VDBE_DISPLAY_P4 && defined(SQLITE_ENABLE_CURSOR_HINTS) */ #if VDBE_DISPLAY_P4 /* ** Compute a string that describes the P4 parameter for an opcode. ** Use zTemp for any required temporary buffer space. */ SQLITE_PRIVATE char *sqlite3VdbeDisplayP4(sqlite3 *db, Op *pOp){ char *zP4 = 0; StrAccum x; sqlite3StrAccumInit(&x, 0, 0, 0, SQLITE_MAX_LENGTH); switch( pOp->p4type ){ case P4_KEYINFO: { int j; KeyInfo *pKeyInfo = pOp->p4.pKeyInfo; assert( pKeyInfo->aSortFlags!=0 ); sqlite3_str_appendf(&x, "k(%d", pKeyInfo->nKeyField); for(j=0; jnKeyField; j++){ CollSeq *pColl = pKeyInfo->aColl[j]; const char *zColl = pColl ? pColl->zName : ""; if( strcmp(zColl, "BINARY")==0 ) zColl = "B"; sqlite3_str_appendf(&x, ",%s%s%s", (pKeyInfo->aSortFlags[j] & KEYINFO_ORDER_DESC) ? "-" : "", (pKeyInfo->aSortFlags[j] & KEYINFO_ORDER_BIGNULL)? "N." : "", zColl); } sqlite3_str_append(&x, ")", 1); break; } #ifdef SQLITE_ENABLE_CURSOR_HINTS case P4_EXPR: { displayP4Expr(&x, pOp->p4.pExpr); break; } #endif case P4_COLLSEQ: { static const char *const encnames[] = {"?", "8", "16LE", "16BE"}; CollSeq *pColl = pOp->p4.pColl; assert( pColl->enc<4 ); sqlite3_str_appendf(&x, "%.18s-%s", pColl->zName, encnames[pColl->enc]); break; } case P4_FUNCDEF: { FuncDef *pDef = pOp->p4.pFunc; sqlite3_str_appendf(&x, "%s(%d)", pDef->zName, pDef->nArg); break; } case P4_FUNCCTX: { FuncDef *pDef = pOp->p4.pCtx->pFunc; sqlite3_str_appendf(&x, "%s(%d)", pDef->zName, pDef->nArg); break; } case P4_INT64: { sqlite3_str_appendf(&x, "%lld", *pOp->p4.pI64); break; } case P4_INT32: { sqlite3_str_appendf(&x, "%d", pOp->p4.i); break; } case P4_REAL: { sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal); break; } case P4_MEM: { Mem *pMem = pOp->p4.pMem; if( pMem->flags & MEM_Str ){ zP4 = pMem->z; }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ sqlite3_str_appendf(&x, "%lld", pMem->u.i); }else if( pMem->flags & MEM_Real ){ sqlite3_str_appendf(&x, "%.16g", pMem->u.r); }else if( pMem->flags & MEM_Null ){ zP4 = "NULL"; }else{ assert( pMem->flags & MEM_Blob ); zP4 = "(blob)"; } break; } #ifndef SQLITE_OMIT_VIRTUALTABLE case P4_VTAB: { sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab; sqlite3_str_appendf(&x, "vtab:%p", pVtab); break; } #endif case P4_INTARRAY: { u32 i; u32 *ai = pOp->p4.ai; u32 n = ai[0]; /* The first element of an INTARRAY is always the ** count of the number of elements to follow */ for(i=1; i<=n; i++){ sqlite3_str_appendf(&x, "%c%u", (i==1 ? '[' : ','), ai[i]); } sqlite3_str_append(&x, "]", 1); break; } case P4_SUBPROGRAM: { zP4 = "program"; break; } case P4_DYNBLOB: case P4_ADVANCE: { break; } case P4_TABLE: { zP4 = pOp->p4.pTab->zName; break; } default: { zP4 = pOp->p4.z; } } if( zP4 ) sqlite3_str_appendall(&x, zP4); if( (x.accError & SQLITE_NOMEM)!=0 ){ sqlite3OomFault(db); } return sqlite3StrAccumFinish(&x); } #endif /* VDBE_DISPLAY_P4 */ /* ** Declare to the Vdbe that the BTree object at db->aDb[i] is used. ** ** The prepared statements need to know in advance the complete set of ** attached databases that will be use. A mask of these databases ** is maintained in p->btreeMask. The p->lockMask value is the subset of ** p->btreeMask of databases that will require a lock. */ SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe *p, int i){ assert( i>=0 && idb->nDb && i<(int)sizeof(yDbMask)*8 ); assert( i<(int)sizeof(p->btreeMask)*8 ); DbMaskSet(p->btreeMask, i); if( i!=1 && sqlite3BtreeSharable(p->db->aDb[i].pBt) ){ DbMaskSet(p->lockMask, i); } } #if !defined(SQLITE_OMIT_SHARED_CACHE) /* ** If SQLite is compiled to support shared-cache mode and to be threadsafe, ** this routine obtains the mutex associated with each BtShared structure ** that may be accessed by the VM passed as an argument. In doing so it also ** sets the BtShared.db member of each of the BtShared structures, ensuring ** that the correct busy-handler callback is invoked if required. ** ** If SQLite is not threadsafe but does support shared-cache mode, then ** sqlite3BtreeEnter() is invoked to set the BtShared.db variables ** of all of BtShared structures accessible via the database handle ** associated with the VM. ** ** If SQLite is not threadsafe and does not support shared-cache mode, this ** function is a no-op. ** ** The p->btreeMask field is a bitmask of all btrees that the prepared ** statement p will ever use. Let N be the number of bits in p->btreeMask ** corresponding to btrees that use shared cache. Then the runtime of ** this routine is N*N. But as N is rarely more than 1, this should not ** be a problem. */ SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe *p){ int i; sqlite3 *db; Db *aDb; int nDb; if( DbMaskAllZero(p->lockMask) ) return; /* The common case */ db = p->db; aDb = db->aDb; nDb = db->nDb; for(i=0; ilockMask,i) && ALWAYS(aDb[i].pBt!=0) ){ sqlite3BtreeEnter(aDb[i].pBt); } } } #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0 /* ** Unlock all of the btrees previously locked by a call to sqlite3VdbeEnter(). */ static SQLITE_NOINLINE void vdbeLeave(Vdbe *p){ int i; sqlite3 *db; Db *aDb; int nDb; db = p->db; aDb = db->aDb; nDb = db->nDb; for(i=0; ilockMask,i) && ALWAYS(aDb[i].pBt!=0) ){ sqlite3BtreeLeave(aDb[i].pBt); } } } SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe *p){ if( DbMaskAllZero(p->lockMask) ) return; /* The common case */ vdbeLeave(p); } #endif #if defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) /* ** Print a single opcode. This routine is used for debugging only. */ SQLITE_PRIVATE void sqlite3VdbePrintOp(FILE *pOut, int pc, VdbeOp *pOp){ char *zP4; char *zCom; sqlite3 dummyDb; static const char *zFormat1 = "%4d %-13s %4d %4d %4d %-13s %.2X %s\n"; if( pOut==0 ) pOut = stdout; sqlite3BeginBenignMalloc(); dummyDb.mallocFailed = 1; zP4 = sqlite3VdbeDisplayP4(&dummyDb, pOp); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS zCom = sqlite3VdbeDisplayComment(0, pOp, zP4); #else zCom = 0; #endif /* NB: The sqlite3OpcodeName() function is implemented by code created ** by the mkopcodeh.awk and mkopcodec.awk scripts which extract the ** information from the vdbe.c source text */ fprintf(pOut, zFormat1, pc, sqlite3OpcodeName(pOp->opcode), pOp->p1, pOp->p2, pOp->p3, zP4 ? zP4 : "", pOp->p5, zCom ? zCom : "" ); fflush(pOut); sqlite3_free(zP4); sqlite3_free(zCom); sqlite3EndBenignMalloc(); } #endif /* ** Initialize an array of N Mem element. */ static void initMemArray(Mem *p, int N, sqlite3 *db, u16 flags){ while( (N--)>0 ){ p->db = db; p->flags = flags; p->szMalloc = 0; #ifdef SQLITE_DEBUG p->pScopyFrom = 0; #endif p++; } } /* ** Release an array of N Mem elements */ static void releaseMemArray(Mem *p, int N){ if( p && N ){ Mem *pEnd = &p[N]; sqlite3 *db = p->db; if( db->pnBytesFreed ){ do{ if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); }while( (++p)flags & MEM_Agg ); testcase( p->flags & MEM_Dyn ); if( p->flags&(MEM_Agg|MEM_Dyn) ){ testcase( (p->flags & MEM_Dyn)!=0 && p->xDel==sqlite3VdbeFrameMemDel ); sqlite3VdbeMemRelease(p); }else if( p->szMalloc ){ sqlite3DbFreeNN(db, p->zMalloc); p->szMalloc = 0; } p->flags = MEM_Undefined; }while( (++p)iFrameMagic!=SQLITE_FRAME_MAGIC ) return 0; return 1; } #endif /* ** This is a destructor on a Mem object (which is really an sqlite3_value) ** that deletes the Frame object that is attached to it as a blob. ** ** This routine does not delete the Frame right away. It merely adds the ** frame to a list of frames to be deleted when the Vdbe halts. */ SQLITE_PRIVATE void sqlite3VdbeFrameMemDel(void *pArg){ VdbeFrame *pFrame = (VdbeFrame*)pArg; assert( sqlite3VdbeFrameIsValid(pFrame) ); pFrame->pParent = pFrame->v->pDelFrame; pFrame->v->pDelFrame = pFrame; } #if defined(SQLITE_ENABLE_BYTECODE_VTAB) || !defined(SQLITE_OMIT_EXPLAIN) /* ** Locate the next opcode to be displayed in EXPLAIN or EXPLAIN ** QUERY PLAN output. ** ** Return SQLITE_ROW on success. Return SQLITE_DONE if there are no ** more opcodes to be displayed. */ SQLITE_PRIVATE int sqlite3VdbeNextOpcode( Vdbe *p, /* The statement being explained */ Mem *pSub, /* Storage for keeping track of subprogram nesting */ int eMode, /* 0: normal. 1: EQP. 2: TablesUsed */ int *piPc, /* IN/OUT: Current rowid. Overwritten with next rowid */ int *piAddr, /* OUT: Write index into (*paOp)[] here */ Op **paOp /* OUT: Write the opcode array here */ ){ int nRow; /* Stop when row count reaches this */ int nSub = 0; /* Number of sub-vdbes seen so far */ SubProgram **apSub = 0; /* Array of sub-vdbes */ int i; /* Next instruction address */ int rc = SQLITE_OK; /* Result code */ Op *aOp = 0; /* Opcode array */ int iPc; /* Rowid. Copy of value in *piPc */ /* When the number of output rows reaches nRow, that means the ** listing has finished and sqlite3_step() should return SQLITE_DONE. ** nRow is the sum of the number of rows in the main program, plus ** the sum of the number of rows in all trigger subprograms encountered ** so far. The nRow value will increase as new trigger subprograms are ** encountered, but p->pc will eventually catch up to nRow. */ nRow = p->nOp; if( pSub!=0 ){ if( pSub->flags&MEM_Blob ){ /* pSub is initiallly NULL. It is initialized to a BLOB by ** the P4_SUBPROGRAM processing logic below */ nSub = pSub->n/sizeof(Vdbe*); apSub = (SubProgram **)pSub->z; } for(i=0; inOp; } } iPc = *piPc; while(1){ /* Loop exits via break */ i = iPc++; if( i>=nRow ){ p->rc = SQLITE_OK; rc = SQLITE_DONE; break; } if( inOp ){ /* The rowid is small enough that we are still in the ** main program. */ aOp = p->aOp; }else{ /* We are currently listing subprograms. Figure out which one and ** pick up the appropriate opcode. */ int j; i -= p->nOp; assert( apSub!=0 ); assert( nSub>0 ); for(j=0; i>=apSub[j]->nOp; j++){ i -= apSub[j]->nOp; assert( inOp || j+1aOp; } /* When an OP_Program opcode is encounter (the only opcode that has ** a P4_SUBPROGRAM argument), expand the size of the array of subprograms ** kept in p->aMem[9].z to hold the new program - assuming this subprogram ** has not already been seen. */ if( pSub!=0 && aOp[i].p4type==P4_SUBPROGRAM ){ int nByte = (nSub+1)*sizeof(SubProgram*); int j; for(j=0; jrc = sqlite3VdbeMemGrow(pSub, nByte, nSub!=0); if( p->rc!=SQLITE_OK ){ rc = SQLITE_ERROR; break; } apSub = (SubProgram **)pSub->z; apSub[nSub++] = aOp[i].p4.pProgram; MemSetTypeFlag(pSub, MEM_Blob); pSub->n = nSub*sizeof(SubProgram*); nRow += aOp[i].p4.pProgram->nOp; } } if( eMode==0 ) break; #ifdef SQLITE_ENABLE_BYTECODE_VTAB if( eMode==2 ){ Op *pOp = aOp + i; if( pOp->opcode==OP_OpenRead ) break; if( pOp->opcode==OP_OpenWrite && (pOp->p5 & OPFLAG_P2ISREG)==0 ) break; if( pOp->opcode==OP_ReopenIdx ) break; }else #endif { assert( eMode==1 ); if( aOp[i].opcode==OP_Explain ) break; if( aOp[i].opcode==OP_Init && iPc>1 ) break; } } *piPc = iPc; *piAddr = i; *paOp = aOp; return rc; } #endif /* SQLITE_ENABLE_BYTECODE_VTAB || !SQLITE_OMIT_EXPLAIN */ /* ** Delete a VdbeFrame object and its contents. VdbeFrame objects are ** allocated by the OP_Program opcode in sqlite3VdbeExec(). */ SQLITE_PRIVATE void sqlite3VdbeFrameDelete(VdbeFrame *p){ int i; Mem *aMem = VdbeFrameMem(p); VdbeCursor **apCsr = (VdbeCursor **)&aMem[p->nChildMem]; assert( sqlite3VdbeFrameIsValid(p) ); for(i=0; inChildCsr; i++){ sqlite3VdbeFreeCursor(p->v, apCsr[i]); } releaseMemArray(aMem, p->nChildMem); sqlite3VdbeDeleteAuxData(p->v->db, &p->pAuxData, -1, 0); sqlite3DbFree(p->v->db, p); } #ifndef SQLITE_OMIT_EXPLAIN /* ** Give a listing of the program in the virtual machine. ** ** The interface is the same as sqlite3VdbeExec(). But instead of ** running the code, it invokes the callback once for each instruction. ** This feature is used to implement "EXPLAIN". ** ** When p->explain==1, each instruction is listed. When ** p->explain==2, only OP_Explain instructions are listed and these ** are shown in a different format. p->explain==2 is used to implement ** EXPLAIN QUERY PLAN. ** 2018-04-24: In p->explain==2 mode, the OP_Init opcodes of triggers ** are also shown, so that the boundaries between the main program and ** each trigger are clear. ** ** When p->explain==1, first the main program is listed, then each of ** the trigger subprograms are listed one by one. */ SQLITE_PRIVATE int sqlite3VdbeList( Vdbe *p /* The VDBE */ ){ Mem *pSub = 0; /* Memory cell hold array of subprogs */ sqlite3 *db = p->db; /* The database connection */ int i; /* Loop counter */ int rc = SQLITE_OK; /* Return code */ Mem *pMem = &p->aMem[1]; /* First Mem of result set */ int bListSubprogs = (p->explain==1 || (db->flags & SQLITE_TriggerEQP)!=0); Op *aOp; /* Array of opcodes */ Op *pOp; /* Current opcode */ assert( p->explain ); assert( p->iVdbeMagic==VDBE_MAGIC_RUN ); assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY || p->rc==SQLITE_NOMEM ); /* Even though this opcode does not use dynamic strings for ** the result, result columns may become dynamic if the user calls ** sqlite3_column_text16(), causing a translation to UTF-16 encoding. */ releaseMemArray(pMem, 8); p->pResultSet = 0; if( p->rc==SQLITE_NOMEM ){ /* This happens if a malloc() inside a call to sqlite3_column_text() or ** sqlite3_column_text16() failed. */ sqlite3OomFault(db); return SQLITE_ERROR; } if( bListSubprogs ){ /* The first 8 memory cells are used for the result set. So we will ** commandeer the 9th cell to use as storage for an array of pointers ** to trigger subprograms. The VDBE is guaranteed to have at least 9 ** cells. */ assert( p->nMem>9 ); pSub = &p->aMem[9]; }else{ pSub = 0; } /* Figure out which opcode is next to display */ rc = sqlite3VdbeNextOpcode(p, pSub, p->explain==2, &p->pc, &i, &aOp); if( rc==SQLITE_OK ){ pOp = aOp + i; if( AtomicLoad(&db->u1.isInterrupted) ){ p->rc = SQLITE_INTERRUPT; rc = SQLITE_ERROR; sqlite3VdbeError(p, sqlite3ErrStr(p->rc)); }else{ char *zP4 = sqlite3VdbeDisplayP4(db, pOp); if( p->explain==2 ){ sqlite3VdbeMemSetInt64(pMem, pOp->p1); sqlite3VdbeMemSetInt64(pMem+1, pOp->p2); sqlite3VdbeMemSetInt64(pMem+2, pOp->p3); sqlite3VdbeMemSetStr(pMem+3, zP4, -1, SQLITE_UTF8, sqlite3_free); p->nResColumn = 4; }else{ sqlite3VdbeMemSetInt64(pMem+0, i); sqlite3VdbeMemSetStr(pMem+1, (char*)sqlite3OpcodeName(pOp->opcode), -1, SQLITE_UTF8, SQLITE_STATIC); sqlite3VdbeMemSetInt64(pMem+2, pOp->p1); sqlite3VdbeMemSetInt64(pMem+3, pOp->p2); sqlite3VdbeMemSetInt64(pMem+4, pOp->p3); /* pMem+5 for p4 is done last */ sqlite3VdbeMemSetInt64(pMem+6, pOp->p5); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS { char *zCom = sqlite3VdbeDisplayComment(db, pOp, zP4); sqlite3VdbeMemSetStr(pMem+7, zCom, -1, SQLITE_UTF8, sqlite3_free); } #else sqlite3VdbeMemSetNull(pMem+7); #endif sqlite3VdbeMemSetStr(pMem+5, zP4, -1, SQLITE_UTF8, sqlite3_free); p->nResColumn = 8; } p->pResultSet = pMem; if( db->mallocFailed ){ p->rc = SQLITE_NOMEM; rc = SQLITE_ERROR; }else{ p->rc = SQLITE_OK; rc = SQLITE_ROW; } } } return rc; } #endif /* SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_DEBUG /* ** Print the SQL that was used to generate a VDBE program. */ SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe *p){ const char *z = 0; if( p->zSql ){ z = p->zSql; }else if( p->nOp>=1 ){ const VdbeOp *pOp = &p->aOp[0]; if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ z = pOp->p4.z; while( sqlite3Isspace(*z) ) z++; } } if( z ) printf("SQL: [%s]\n", z); } #endif #if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) /* ** Print an IOTRACE message showing SQL content. */ SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe *p){ int nOp = p->nOp; VdbeOp *pOp; if( sqlite3IoTrace==0 ) return; if( nOp<1 ) return; pOp = &p->aOp[0]; if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ int i, j; char z[1000]; sqlite3_snprintf(sizeof(z), z, "%s", pOp->p4.z); for(i=0; sqlite3Isspace(z[i]); i++){} for(j=0; z[i]; i++){ if( sqlite3Isspace(z[i]) ){ if( z[i-1]!=' ' ){ z[j++] = ' '; } }else{ z[j++] = z[i]; } } z[j] = 0; sqlite3IoTrace("SQL %s\n", z); } } #endif /* !SQLITE_OMIT_TRACE && SQLITE_ENABLE_IOTRACE */ /* An instance of this object describes bulk memory available for use ** by subcomponents of a prepared statement. Space is allocated out ** of a ReusableSpace object by the allocSpace() routine below. */ struct ReusableSpace { u8 *pSpace; /* Available memory */ sqlite3_int64 nFree; /* Bytes of available memory */ sqlite3_int64 nNeeded; /* Total bytes that could not be allocated */ }; /* Try to allocate nByte bytes of 8-byte aligned bulk memory for pBuf ** from the ReusableSpace object. Return a pointer to the allocated ** memory on success. If insufficient memory is available in the ** ReusableSpace object, increase the ReusableSpace.nNeeded ** value by the amount needed and return NULL. ** ** If pBuf is not initially NULL, that means that the memory has already ** been allocated by a prior call to this routine, so just return a copy ** of pBuf and leave ReusableSpace unchanged. ** ** This allocator is employed to repurpose unused slots at the end of the ** opcode array of prepared state for other memory needs of the prepared ** statement. */ static void *allocSpace( struct ReusableSpace *p, /* Bulk memory available for allocation */ void *pBuf, /* Pointer to a prior allocation */ sqlite3_int64 nByte /* Bytes of memory needed */ ){ assert( EIGHT_BYTE_ALIGNMENT(p->pSpace) ); if( pBuf==0 ){ nByte = ROUND8(nByte); if( nByte <= p->nFree ){ p->nFree -= nByte; pBuf = &p->pSpace[p->nFree]; }else{ p->nNeeded += nByte; } } assert( EIGHT_BYTE_ALIGNMENT(pBuf) ); return pBuf; } /* ** Rewind the VDBE back to the beginning in preparation for ** running it. */ SQLITE_PRIVATE void sqlite3VdbeRewind(Vdbe *p){ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) int i; #endif assert( p!=0 ); assert( p->iVdbeMagic==VDBE_MAGIC_INIT || p->iVdbeMagic==VDBE_MAGIC_RESET ); /* There should be at least one opcode. */ assert( p->nOp>0 ); /* Set the magic to VDBE_MAGIC_RUN sooner rather than later. */ p->iVdbeMagic = VDBE_MAGIC_RUN; #ifdef SQLITE_DEBUG for(i=0; inMem; i++){ assert( p->aMem[i].db==p->db ); } #endif p->pc = -1; p->rc = SQLITE_OK; p->errorAction = OE_Abort; p->nChange = 0; p->cacheCtr = 1; p->minWriteFileFormat = 255; p->iStatement = 0; p->nFkConstraint = 0; #ifdef VDBE_PROFILE for(i=0; inOp; i++){ p->aOp[i].cnt = 0; p->aOp[i].cycles = 0; } #endif } /* ** Prepare a virtual machine for execution for the first time after ** creating the virtual machine. This involves things such ** as allocating registers and initializing the program counter. ** After the VDBE has be prepped, it can be executed by one or more ** calls to sqlite3VdbeExec(). ** ** This function may be called exactly once on each virtual machine. ** After this routine is called the VM has been "packaged" and is ready ** to run. After this routine is called, further calls to ** sqlite3VdbeAddOp() functions are prohibited. This routine disconnects ** the Vdbe from the Parse object that helped generate it so that the ** the Vdbe becomes an independent entity and the Parse object can be ** destroyed. ** ** Use the sqlite3VdbeRewind() procedure to restore a virtual machine back ** to its initial state after it has been run. */ SQLITE_PRIVATE void sqlite3VdbeMakeReady( Vdbe *p, /* The VDBE */ Parse *pParse /* Parsing context */ ){ sqlite3 *db; /* The database connection */ int nVar; /* Number of parameters */ int nMem; /* Number of VM memory registers */ int nCursor; /* Number of cursors required */ int nArg; /* Number of arguments in subprograms */ int n; /* Loop counter */ struct ReusableSpace x; /* Reusable bulk memory */ assert( p!=0 ); assert( p->nOp>0 ); assert( pParse!=0 ); assert( p->iVdbeMagic==VDBE_MAGIC_INIT ); assert( pParse==p->pParse ); p->pVList = pParse->pVList; pParse->pVList = 0; db = p->db; assert( db->mallocFailed==0 ); nVar = pParse->nVar; nMem = pParse->nMem; nCursor = pParse->nTab; nArg = pParse->nMaxArg; /* Each cursor uses a memory cell. The first cursor (cursor 0) can ** use aMem[0] which is not otherwise used by the VDBE program. Allocate ** space at the end of aMem[] for cursors 1 and greater. ** See also: allocateCursor(). */ nMem += nCursor; if( nCursor==0 && nMem>0 ) nMem++; /* Space for aMem[0] even if not used */ /* Figure out how much reusable memory is available at the end of the ** opcode array. This extra memory will be reallocated for other elements ** of the prepared statement. */ n = ROUND8(sizeof(Op)*p->nOp); /* Bytes of opcode memory used */ x.pSpace = &((u8*)p->aOp)[n]; /* Unused opcode memory */ assert( EIGHT_BYTE_ALIGNMENT(x.pSpace) ); x.nFree = ROUNDDOWN8(pParse->szOpAlloc - n); /* Bytes of unused memory */ assert( x.nFree>=0 ); assert( EIGHT_BYTE_ALIGNMENT(&x.pSpace[x.nFree]) ); resolveP2Values(p, &nArg); p->usesStmtJournal = (u8)(pParse->isMultiWrite && pParse->mayAbort); if( pParse->explain ){ static const char * const azColName[] = { "addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment", "id", "parent", "notused", "detail" }; int iFirst, mx, i; if( nMem<10 ) nMem = 10; p->explain = pParse->explain; if( pParse->explain==2 ){ sqlite3VdbeSetNumCols(p, 4); iFirst = 8; mx = 12; }else{ sqlite3VdbeSetNumCols(p, 8); iFirst = 0; mx = 8; } for(i=iFirst; iexpired = 0; /* Memory for registers, parameters, cursor, etc, is allocated in one or two ** passes. On the first pass, we try to reuse unused memory at the ** end of the opcode array. If we are unable to satisfy all memory ** requirements by reusing the opcode array tail, then the second ** pass will fill in the remainder using a fresh memory allocation. ** ** This two-pass approach that reuses as much memory as possible from ** the leftover memory at the end of the opcode array. This can significantly ** reduce the amount of memory held by a prepared statement. */ x.nNeeded = 0; p->aMem = allocSpace(&x, 0, nMem*sizeof(Mem)); p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem)); p->apArg = allocSpace(&x, 0, nArg*sizeof(Mem*)); p->apCsr = allocSpace(&x, 0, nCursor*sizeof(VdbeCursor*)); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS p->anExec = allocSpace(&x, 0, p->nOp*sizeof(i64)); #endif if( x.nNeeded ){ x.pSpace = p->pFree = sqlite3DbMallocRawNN(db, x.nNeeded); x.nFree = x.nNeeded; if( !db->mallocFailed ){ p->aMem = allocSpace(&x, p->aMem, nMem*sizeof(Mem)); p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem)); p->apArg = allocSpace(&x, p->apArg, nArg*sizeof(Mem*)); p->apCsr = allocSpace(&x, p->apCsr, nCursor*sizeof(VdbeCursor*)); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS p->anExec = allocSpace(&x, p->anExec, p->nOp*sizeof(i64)); #endif } } if( db->mallocFailed ){ p->nVar = 0; p->nCursor = 0; p->nMem = 0; }else{ p->nCursor = nCursor; p->nVar = (ynVar)nVar; initMemArray(p->aVar, nVar, db, MEM_Null); p->nMem = nMem; initMemArray(p->aMem, nMem, db, MEM_Undefined); memset(p->apCsr, 0, nCursor*sizeof(VdbeCursor*)); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS memset(p->anExec, 0, p->nOp*sizeof(i64)); #endif } sqlite3VdbeRewind(p); } /* ** Close a VDBE cursor and release all the resources that cursor ** happens to hold. */ SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ if( pCx==0 ){ return; } switch( pCx->eCurType ){ case CURTYPE_SORTER: { sqlite3VdbeSorterClose(p->db, pCx); break; } case CURTYPE_BTREE: { assert( pCx->uc.pCursor!=0 ); sqlite3BtreeCloseCursor(pCx->uc.pCursor); break; } #ifndef SQLITE_OMIT_VIRTUALTABLE case CURTYPE_VTAB: { sqlite3_vtab_cursor *pVCur = pCx->uc.pVCur; const sqlite3_module *pModule = pVCur->pVtab->pModule; assert( pVCur->pVtab->nRef>0 ); pVCur->pVtab->nRef--; pModule->xClose(pVCur); break; } #endif } } /* ** Close all cursors in the current frame. */ static void closeCursorsInFrame(Vdbe *p){ if( p->apCsr ){ int i; for(i=0; inCursor; i++){ VdbeCursor *pC = p->apCsr[i]; if( pC ){ sqlite3VdbeFreeCursor(p, pC); p->apCsr[i] = 0; } } } } /* ** Copy the values stored in the VdbeFrame structure to its Vdbe. This ** is used, for example, when a trigger sub-program is halted to restore ** control to the main program. */ SQLITE_PRIVATE int sqlite3VdbeFrameRestore(VdbeFrame *pFrame){ Vdbe *v = pFrame->v; closeCursorsInFrame(v); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS v->anExec = pFrame->anExec; #endif v->aOp = pFrame->aOp; v->nOp = pFrame->nOp; v->aMem = pFrame->aMem; v->nMem = pFrame->nMem; v->apCsr = pFrame->apCsr; v->nCursor = pFrame->nCursor; v->db->lastRowid = pFrame->lastRowid; v->nChange = pFrame->nChange; v->db->nChange = pFrame->nDbChange; sqlite3VdbeDeleteAuxData(v->db, &v->pAuxData, -1, 0); v->pAuxData = pFrame->pAuxData; pFrame->pAuxData = 0; return pFrame->pc; } /* ** Close all cursors. ** ** Also release any dynamic memory held by the VM in the Vdbe.aMem memory ** cell array. This is necessary as the memory cell array may contain ** pointers to VdbeFrame objects, which may in turn contain pointers to ** open cursors. */ static void closeAllCursors(Vdbe *p){ if( p->pFrame ){ VdbeFrame *pFrame; for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); sqlite3VdbeFrameRestore(pFrame); p->pFrame = 0; p->nFrame = 0; } assert( p->nFrame==0 ); closeCursorsInFrame(p); if( p->aMem ){ releaseMemArray(p->aMem, p->nMem); } while( p->pDelFrame ){ VdbeFrame *pDel = p->pDelFrame; p->pDelFrame = pDel->pParent; sqlite3VdbeFrameDelete(pDel); } /* Delete any auxdata allocations made by the VM */ if( p->pAuxData ) sqlite3VdbeDeleteAuxData(p->db, &p->pAuxData, -1, 0); assert( p->pAuxData==0 ); } /* ** Set the number of result columns that will be returned by this SQL ** statement. This is now set at compile time, rather than during ** execution of the vdbe program so that sqlite3_column_count() can ** be called on an SQL statement before sqlite3_step(). */ SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){ int n; sqlite3 *db = p->db; if( p->nResColumn ){ releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); sqlite3DbFree(db, p->aColName); } n = nResColumn*COLNAME_N; p->nResColumn = (u16)nResColumn; p->aColName = (Mem*)sqlite3DbMallocRawNN(db, sizeof(Mem)*n ); if( p->aColName==0 ) return; initMemArray(p->aColName, n, db, MEM_Null); } /* ** Set the name of the idx'th column to be returned by the SQL statement. ** zName must be a pointer to a nul terminated string. ** ** This call must be made after a call to sqlite3VdbeSetNumCols(). ** ** The final parameter, xDel, must be one of SQLITE_DYNAMIC, SQLITE_STATIC ** or SQLITE_TRANSIENT. If it is SQLITE_DYNAMIC, then the buffer pointed ** to by zName will be freed by sqlite3DbFree() when the vdbe is destroyed. */ SQLITE_PRIVATE int sqlite3VdbeSetColName( Vdbe *p, /* Vdbe being configured */ int idx, /* Index of column zName applies to */ int var, /* One of the COLNAME_* constants */ const char *zName, /* Pointer to buffer containing name */ void (*xDel)(void*) /* Memory management strategy for zName */ ){ int rc; Mem *pColName; assert( idxnResColumn ); assert( vardb->mallocFailed ){ assert( !zName || xDel!=SQLITE_DYNAMIC ); return SQLITE_NOMEM_BKPT; } assert( p->aColName!=0 ); pColName = &(p->aColName[idx+var*p->nResColumn]); rc = sqlite3VdbeMemSetStr(pColName, zName, -1, SQLITE_UTF8, xDel); assert( rc!=0 || !zName || (pColName->flags&MEM_Term)!=0 ); return rc; } /* ** A read or write transaction may or may not be active on database handle ** db. If a transaction is active, commit it. If there is a ** write-transaction spanning more than one database file, this routine ** takes care of the super-journal trickery. */ static int vdbeCommit(sqlite3 *db, Vdbe *p){ int i; int nTrans = 0; /* Number of databases with an active write-transaction ** that are candidates for a two-phase commit using a ** super-journal */ int rc = SQLITE_OK; int needXcommit = 0; #ifdef SQLITE_OMIT_VIRTUALTABLE /* With this option, sqlite3VtabSync() is defined to be simply ** SQLITE_OK so p is not used. */ UNUSED_PARAMETER(p); #endif /* Before doing anything else, call the xSync() callback for any ** virtual module tables written in this transaction. This has to ** be done before determining whether a super-journal file is ** required, as an xSync() callback may add an attached database ** to the transaction. */ rc = sqlite3VtabSync(db, p); /* This loop determines (a) if the commit hook should be invoked and ** (b) how many database files have open write transactions, not ** including the temp database. (b) is important because if more than ** one database file has an open write transaction, a super-journal ** file is required for an atomic commit. */ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( sqlite3BtreeTxnState(pBt)==SQLITE_TXN_WRITE ){ /* Whether or not a database might need a super-journal depends upon ** its journal mode (among other things). This matrix determines which ** journal modes use a super-journal and which do not */ static const u8 aMJNeeded[] = { /* DELETE */ 1, /* PERSIST */ 1, /* OFF */ 0, /* TRUNCATE */ 1, /* MEMORY */ 0, /* WAL */ 0 }; Pager *pPager; /* Pager associated with pBt */ needXcommit = 1; sqlite3BtreeEnter(pBt); pPager = sqlite3BtreePager(pBt); if( db->aDb[i].safety_level!=PAGER_SYNCHRONOUS_OFF && aMJNeeded[sqlite3PagerGetJournalMode(pPager)] && sqlite3PagerIsMemdb(pPager)==0 ){ assert( i!=1 ); nTrans++; } rc = sqlite3PagerExclusiveLock(pPager); sqlite3BtreeLeave(pBt); } } if( rc!=SQLITE_OK ){ return rc; } /* If there are any write-transactions at all, invoke the commit hook */ if( needXcommit && db->xCommitCallback ){ rc = db->xCommitCallback(db->pCommitArg); if( rc ){ return SQLITE_CONSTRAINT_COMMITHOOK; } } /* The simple case - no more than one database file (not counting the ** TEMP database) has a transaction active. There is no need for the ** super-journal. ** ** If the return value of sqlite3BtreeGetFilename() is a zero length ** string, it means the main database is :memory: or a temp file. In ** that case we do not support atomic multi-file commits, so use the ** simple case then too. */ if( 0==sqlite3Strlen30(sqlite3BtreeGetFilename(db->aDb[0].pBt)) || nTrans<=1 ){ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ rc = sqlite3BtreeCommitPhaseOne(pBt, 0); } } /* Do the commit only if all databases successfully complete phase 1. ** If one of the BtreeCommitPhaseOne() calls fails, this indicates an ** IO error while deleting or truncating a journal file. It is unlikely, ** but could happen. In this case abandon processing and return the error. */ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ rc = sqlite3BtreeCommitPhaseTwo(pBt, 0); } } if( rc==SQLITE_OK ){ sqlite3VtabCommit(db); } } /* The complex case - There is a multi-file write-transaction active. ** This requires a super-journal file to ensure the transaction is ** committed atomically. */ #ifndef SQLITE_OMIT_DISKIO else{ sqlite3_vfs *pVfs = db->pVfs; char *zSuper = 0; /* File-name for the super-journal */ char const *zMainFile = sqlite3BtreeGetFilename(db->aDb[0].pBt); sqlite3_file *pSuperJrnl = 0; i64 offset = 0; int res; int retryCount = 0; int nMainFile; /* Select a super-journal file name */ nMainFile = sqlite3Strlen30(zMainFile); zSuper = sqlite3MPrintf(db, "%.4c%s%.16c", 0,zMainFile,0); if( zSuper==0 ) return SQLITE_NOMEM_BKPT; zSuper += 4; do { u32 iRandom; if( retryCount ){ if( retryCount>100 ){ sqlite3_log(SQLITE_FULL, "MJ delete: %s", zSuper); sqlite3OsDelete(pVfs, zSuper, 0); break; }else if( retryCount==1 ){ sqlite3_log(SQLITE_FULL, "MJ collide: %s", zSuper); } } retryCount++; sqlite3_randomness(sizeof(iRandom), &iRandom); sqlite3_snprintf(13, &zSuper[nMainFile], "-mj%06X9%02X", (iRandom>>8)&0xffffff, iRandom&0xff); /* The antipenultimate character of the super-journal name must ** be "9" to avoid name collisions when using 8+3 filenames. */ assert( zSuper[sqlite3Strlen30(zSuper)-3]=='9' ); sqlite3FileSuffix3(zMainFile, zSuper); rc = sqlite3OsAccess(pVfs, zSuper, SQLITE_ACCESS_EXISTS, &res); }while( rc==SQLITE_OK && res ); if( rc==SQLITE_OK ){ /* Open the super-journal. */ rc = sqlite3OsOpenMalloc(pVfs, zSuper, &pSuperJrnl, SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE| SQLITE_OPEN_EXCLUSIVE|SQLITE_OPEN_SUPER_JOURNAL, 0 ); } if( rc!=SQLITE_OK ){ sqlite3DbFree(db, zSuper-4); return rc; } /* Write the name of each database file in the transaction into the new ** super-journal file. If an error occurs at this point close ** and delete the super-journal file. All the individual journal files ** still have 'null' as the super-journal pointer, so they will roll ** back independently if a failure occurs. */ for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( sqlite3BtreeTxnState(pBt)==SQLITE_TXN_WRITE ){ char const *zFile = sqlite3BtreeGetJournalname(pBt); if( zFile==0 ){ continue; /* Ignore TEMP and :memory: databases */ } assert( zFile[0]!=0 ); rc = sqlite3OsWrite(pSuperJrnl, zFile, sqlite3Strlen30(zFile)+1,offset); offset += sqlite3Strlen30(zFile)+1; if( rc!=SQLITE_OK ){ sqlite3OsCloseFree(pSuperJrnl); sqlite3OsDelete(pVfs, zSuper, 0); sqlite3DbFree(db, zSuper-4); return rc; } } } /* Sync the super-journal file. If the IOCAP_SEQUENTIAL device ** flag is set this is not required. */ if( 0==(sqlite3OsDeviceCharacteristics(pSuperJrnl)&SQLITE_IOCAP_SEQUENTIAL) && SQLITE_OK!=(rc = sqlite3OsSync(pSuperJrnl, SQLITE_SYNC_NORMAL)) ){ sqlite3OsCloseFree(pSuperJrnl); sqlite3OsDelete(pVfs, zSuper, 0); sqlite3DbFree(db, zSuper-4); return rc; } /* Sync all the db files involved in the transaction. The same call ** sets the super-journal pointer in each individual journal. If ** an error occurs here, do not delete the super-journal file. ** ** If the error occurs during the first call to ** sqlite3BtreeCommitPhaseOne(), then there is a chance that the ** super-journal file will be orphaned. But we cannot delete it, ** in case the super-journal file name was written into the journal ** file before the failure occurred. */ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ rc = sqlite3BtreeCommitPhaseOne(pBt, zSuper); } } sqlite3OsCloseFree(pSuperJrnl); assert( rc!=SQLITE_BUSY ); if( rc!=SQLITE_OK ){ sqlite3DbFree(db, zSuper-4); return rc; } /* Delete the super-journal file. This commits the transaction. After ** doing this the directory is synced again before any individual ** transaction files are deleted. */ rc = sqlite3OsDelete(pVfs, zSuper, 1); sqlite3DbFree(db, zSuper-4); zSuper = 0; if( rc ){ return rc; } /* All files and directories have already been synced, so the following ** calls to sqlite3BtreeCommitPhaseTwo() are only closing files and ** deleting or truncating journals. If something goes wrong while ** this is happening we don't really care. The integrity of the ** transaction is already guaranteed, but some stray 'cold' journals ** may be lying around. Returning an error code won't help matters. */ disable_simulated_io_errors(); sqlite3BeginBenignMalloc(); for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ sqlite3BtreeCommitPhaseTwo(pBt, 1); } } sqlite3EndBenignMalloc(); enable_simulated_io_errors(); sqlite3VtabCommit(db); } #endif return rc; } /* ** This routine checks that the sqlite3.nVdbeActive count variable ** matches the number of vdbe's in the list sqlite3.pVdbe that are ** currently active. An assertion fails if the two counts do not match. ** This is an internal self-check only - it is not an essential processing ** step. ** ** This is a no-op if NDEBUG is defined. */ #ifndef NDEBUG static void checkActiveVdbeCnt(sqlite3 *db){ Vdbe *p; int cnt = 0; int nWrite = 0; int nRead = 0; p = db->pVdbe; while( p ){ if( sqlite3_stmt_busy((sqlite3_stmt*)p) ){ cnt++; if( p->readOnly==0 ) nWrite++; if( p->bIsReader ) nRead++; } p = p->pNext; } assert( cnt==db->nVdbeActive ); assert( nWrite==db->nVdbeWrite ); assert( nRead==db->nVdbeRead ); } #else #define checkActiveVdbeCnt(x) #endif /* ** If the Vdbe passed as the first argument opened a statement-transaction, ** close it now. Argument eOp must be either SAVEPOINT_ROLLBACK or ** SAVEPOINT_RELEASE. If it is SAVEPOINT_ROLLBACK, then the statement ** transaction is rolled back. If eOp is SAVEPOINT_RELEASE, then the ** statement transaction is committed. ** ** If an IO error occurs, an SQLITE_IOERR_XXX error code is returned. ** Otherwise SQLITE_OK. */ static SQLITE_NOINLINE int vdbeCloseStatement(Vdbe *p, int eOp){ sqlite3 *const db = p->db; int rc = SQLITE_OK; int i; const int iSavepoint = p->iStatement-1; assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE); assert( db->nStatement>0 ); assert( p->iStatement==(db->nStatement+db->nSavepoint) ); for(i=0; inDb; i++){ int rc2 = SQLITE_OK; Btree *pBt = db->aDb[i].pBt; if( pBt ){ if( eOp==SAVEPOINT_ROLLBACK ){ rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint); } if( rc2==SQLITE_OK ){ rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint); } if( rc==SQLITE_OK ){ rc = rc2; } } } db->nStatement--; p->iStatement = 0; if( rc==SQLITE_OK ){ if( eOp==SAVEPOINT_ROLLBACK ){ rc = sqlite3VtabSavepoint(db, SAVEPOINT_ROLLBACK, iSavepoint); } if( rc==SQLITE_OK ){ rc = sqlite3VtabSavepoint(db, SAVEPOINT_RELEASE, iSavepoint); } } /* If the statement transaction is being rolled back, also restore the ** database handles deferred constraint counter to the value it had when ** the statement transaction was opened. */ if( eOp==SAVEPOINT_ROLLBACK ){ db->nDeferredCons = p->nStmtDefCons; db->nDeferredImmCons = p->nStmtDefImmCons; } return rc; } SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){ if( p->db->nStatement && p->iStatement ){ return vdbeCloseStatement(p, eOp); } return SQLITE_OK; } /* ** This function is called when a transaction opened by the database ** handle associated with the VM passed as an argument is about to be ** committed. If there are outstanding deferred foreign key constraint ** violations, return SQLITE_ERROR. Otherwise, SQLITE_OK. ** ** If there are outstanding FK violations and this function returns ** SQLITE_ERROR, set the result of the VM to SQLITE_CONSTRAINT_FOREIGNKEY ** and write an error message to it. Then return SQLITE_ERROR. */ #ifndef SQLITE_OMIT_FOREIGN_KEY SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *p, int deferred){ sqlite3 *db = p->db; if( (deferred && (db->nDeferredCons+db->nDeferredImmCons)>0) || (!deferred && p->nFkConstraint>0) ){ p->rc = SQLITE_CONSTRAINT_FOREIGNKEY; p->errorAction = OE_Abort; sqlite3VdbeError(p, "FOREIGN KEY constraint failed"); return SQLITE_ERROR; } return SQLITE_OK; } #endif /* ** This routine is called the when a VDBE tries to halt. If the VDBE ** has made changes and is in autocommit mode, then commit those ** changes. If a rollback is needed, then do the rollback. ** ** This routine is the only way to move the sqlite3eOpenState of a VM from ** SQLITE_STATE_RUN to SQLITE_STATE_HALT. It is harmless to ** call this on a VM that is in the SQLITE_STATE_HALT state. ** ** Return an error code. If the commit could not complete because of ** lock contention, return SQLITE_BUSY. If SQLITE_BUSY is returned, it ** means the close did not happen and needs to be repeated. */ SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe *p){ int rc; /* Used to store transient return codes */ sqlite3 *db = p->db; /* This function contains the logic that determines if a statement or ** transaction will be committed or rolled back as a result of the ** execution of this virtual machine. ** ** If any of the following errors occur: ** ** SQLITE_NOMEM ** SQLITE_IOERR ** SQLITE_FULL ** SQLITE_INTERRUPT ** ** Then the internal cache might have been left in an inconsistent ** state. We need to rollback the statement transaction, if there is ** one, or the complete transaction if there is no statement transaction. */ if( p->iVdbeMagic!=VDBE_MAGIC_RUN ){ return SQLITE_OK; } if( db->mallocFailed ){ p->rc = SQLITE_NOMEM_BKPT; } closeAllCursors(p); checkActiveVdbeCnt(db); /* No commit or rollback needed if the program never started or if the ** SQL statement does not read or write a database file. */ if( p->pc>=0 && p->bIsReader ){ int mrc; /* Primary error code from p->rc */ int eStatementOp = 0; int isSpecialError; /* Set to true if a 'special' error */ /* Lock all btrees used by the statement */ sqlite3VdbeEnter(p); /* Check for one of the special errors */ if( p->rc ){ mrc = p->rc & 0xff; isSpecialError = mrc==SQLITE_NOMEM || mrc==SQLITE_IOERR || mrc==SQLITE_INTERRUPT || mrc==SQLITE_FULL; }else{ mrc = isSpecialError = 0; } if( isSpecialError ){ /* If the query was read-only and the error code is SQLITE_INTERRUPT, ** no rollback is necessary. Otherwise, at least a savepoint ** transaction must be rolled back to restore the database to a ** consistent state. ** ** Even if the statement is read-only, it is important to perform ** a statement or transaction rollback operation. If the error ** occurred while writing to the journal, sub-journal or database ** file as part of an effort to free up cache space (see function ** pagerStress() in pager.c), the rollback is required to restore ** the pager to a consistent state. */ if( !p->readOnly || mrc!=SQLITE_INTERRUPT ){ if( (mrc==SQLITE_NOMEM || mrc==SQLITE_FULL) && p->usesStmtJournal ){ eStatementOp = SAVEPOINT_ROLLBACK; }else{ /* We are forced to roll back the active transaction. Before doing ** so, abort any other statements this handle currently has active. */ sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); sqlite3CloseSavepoints(db); db->autoCommit = 1; p->nChange = 0; } } } /* Check for immediate foreign key violations. */ if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ sqlite3VdbeCheckFk(p, 0); } /* If the auto-commit flag is set and this is the only active writer ** VM, then we do either a commit or rollback of the current transaction. ** ** Note: This block also runs if one of the special errors handled ** above has occurred. */ if( !sqlite3VtabInSync(db) && db->autoCommit && db->nVdbeWrite==(p->readOnly==0) ){ if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ rc = sqlite3VdbeCheckFk(p, 1); if( rc!=SQLITE_OK ){ if( NEVER(p->readOnly) ){ sqlite3VdbeLeave(p); return SQLITE_ERROR; } rc = SQLITE_CONSTRAINT_FOREIGNKEY; }else if( db->flags & SQLITE_CorruptRdOnly ){ rc = SQLITE_CORRUPT; db->flags &= ~SQLITE_CorruptRdOnly; }else{ /* The auto-commit flag is true, the vdbe program was successful ** or hit an 'OR FAIL' constraint and there are no deferred foreign ** key constraints to hold up the transaction. This means a commit ** is required. */ rc = vdbeCommit(db, p); } if( rc==SQLITE_BUSY && p->readOnly ){ sqlite3VdbeLeave(p); return SQLITE_BUSY; }else if( rc!=SQLITE_OK ){ p->rc = rc; sqlite3RollbackAll(db, SQLITE_OK); p->nChange = 0; }else{ db->nDeferredCons = 0; db->nDeferredImmCons = 0; db->flags &= ~(u64)SQLITE_DeferFKs; sqlite3CommitInternalChanges(db); } }else{ sqlite3RollbackAll(db, SQLITE_OK); p->nChange = 0; } db->nStatement = 0; }else if( eStatementOp==0 ){ if( p->rc==SQLITE_OK || p->errorAction==OE_Fail ){ eStatementOp = SAVEPOINT_RELEASE; }else if( p->errorAction==OE_Abort ){ eStatementOp = SAVEPOINT_ROLLBACK; }else{ sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); sqlite3CloseSavepoints(db); db->autoCommit = 1; p->nChange = 0; } } /* If eStatementOp is non-zero, then a statement transaction needs to ** be committed or rolled back. Call sqlite3VdbeCloseStatement() to ** do so. If this operation returns an error, and the current statement ** error code is SQLITE_OK or SQLITE_CONSTRAINT, then promote the ** current statement error code. */ if( eStatementOp ){ rc = sqlite3VdbeCloseStatement(p, eStatementOp); if( rc ){ if( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ){ p->rc = rc; sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = 0; } sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); sqlite3CloseSavepoints(db); db->autoCommit = 1; p->nChange = 0; } } /* If this was an INSERT, UPDATE or DELETE and no statement transaction ** has been rolled back, update the database connection change-counter. */ if( p->changeCntOn ){ if( eStatementOp!=SAVEPOINT_ROLLBACK ){ sqlite3VdbeSetChanges(db, p->nChange); }else{ sqlite3VdbeSetChanges(db, 0); } p->nChange = 0; } /* Release the locks */ sqlite3VdbeLeave(p); } /* We have successfully halted and closed the VM. Record this fact. */ if( p->pc>=0 ){ db->nVdbeActive--; if( !p->readOnly ) db->nVdbeWrite--; if( p->bIsReader ) db->nVdbeRead--; assert( db->nVdbeActive>=db->nVdbeRead ); assert( db->nVdbeRead>=db->nVdbeWrite ); assert( db->nVdbeWrite>=0 ); } p->iVdbeMagic = VDBE_MAGIC_HALT; checkActiveVdbeCnt(db); if( db->mallocFailed ){ p->rc = SQLITE_NOMEM_BKPT; } /* If the auto-commit flag is set to true, then any locks that were held ** by connection db have now been released. Call sqlite3ConnectionUnlocked() ** to invoke any required unlock-notify callbacks. */ if( db->autoCommit ){ sqlite3ConnectionUnlocked(db); } assert( db->nVdbeActive>0 || db->autoCommit==0 || db->nStatement==0 ); return (p->rc==SQLITE_BUSY ? SQLITE_BUSY : SQLITE_OK); } /* ** Each VDBE holds the result of the most recent sqlite3_step() call ** in p->rc. This routine sets that result back to SQLITE_OK. */ SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe *p){ p->rc = SQLITE_OK; } /* ** Copy the error code and error message belonging to the VDBE passed ** as the first argument to its database handle (so that they will be ** returned by calls to sqlite3_errcode() and sqlite3_errmsg()). ** ** This function does not clear the VDBE error code or message, just ** copies them to the database handle. */ SQLITE_PRIVATE int sqlite3VdbeTransferError(Vdbe *p){ sqlite3 *db = p->db; int rc = p->rc; if( p->zErrMsg ){ db->bBenignMalloc++; sqlite3BeginBenignMalloc(); if( db->pErr==0 ) db->pErr = sqlite3ValueNew(db); sqlite3ValueSetStr(db->pErr, -1, p->zErrMsg, SQLITE_UTF8, SQLITE_TRANSIENT); sqlite3EndBenignMalloc(); db->bBenignMalloc--; }else if( db->pErr ){ sqlite3ValueSetNull(db->pErr); } db->errCode = rc; db->errByteOffset = -1; return rc; } #ifdef SQLITE_ENABLE_SQLLOG /* ** If an SQLITE_CONFIG_SQLLOG hook is registered and the VM has been run, ** invoke it. */ static void vdbeInvokeSqllog(Vdbe *v){ if( sqlite3GlobalConfig.xSqllog && v->rc==SQLITE_OK && v->zSql && v->pc>=0 ){ char *zExpanded = sqlite3VdbeExpandSql(v, v->zSql); assert( v->db->init.busy==0 ); if( zExpanded ){ sqlite3GlobalConfig.xSqllog( sqlite3GlobalConfig.pSqllogArg, v->db, zExpanded, 1 ); sqlite3DbFree(v->db, zExpanded); } } } #else # define vdbeInvokeSqllog(x) #endif /* ** Clean up a VDBE after execution but do not delete the VDBE just yet. ** Write any error messages into *pzErrMsg. Return the result code. ** ** After this routine is run, the VDBE should be ready to be executed ** again. ** ** To look at it another way, this routine resets the state of the ** virtual machine from VDBE_MAGIC_RUN or VDBE_MAGIC_HALT back to ** VDBE_MAGIC_INIT. */ SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe *p){ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) int i; #endif sqlite3 *db; db = p->db; /* If the VM did not run to completion or if it encountered an ** error, then it might not have been halted properly. So halt ** it now. */ sqlite3VdbeHalt(p); /* If the VDBE has been run even partially, then transfer the error code ** and error message from the VDBE into the main database structure. But ** if the VDBE has just been set to run but has not actually executed any ** instructions yet, leave the main database error information unchanged. */ if( p->pc>=0 ){ vdbeInvokeSqllog(p); if( db->pErr || p->zErrMsg ){ sqlite3VdbeTransferError(p); }else{ db->errCode = p->rc; } if( p->runOnlyOnce ) p->expired = 1; }else if( p->rc && p->expired ){ /* The expired flag was set on the VDBE before the first call ** to sqlite3_step(). For consistency (since sqlite3_step() was ** called), set the database error in this case as well. */ sqlite3ErrorWithMsg(db, p->rc, p->zErrMsg ? "%s" : 0, p->zErrMsg); } /* Reset register contents and reclaim error message memory. */ #ifdef SQLITE_DEBUG /* Execute assert() statements to ensure that the Vdbe.apCsr[] and ** Vdbe.aMem[] arrays have already been cleaned up. */ if( p->apCsr ) for(i=0; inCursor; i++) assert( p->apCsr[i]==0 ); if( p->aMem ){ for(i=0; inMem; i++) assert( p->aMem[i].flags==MEM_Undefined ); } #endif if( p->zErrMsg ){ sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = 0; } p->pResultSet = 0; #ifdef SQLITE_DEBUG p->nWrite = 0; #endif /* Save profiling information from this VDBE run. */ #ifdef VDBE_PROFILE { FILE *out = fopen("vdbe_profile.out", "a"); if( out ){ fprintf(out, "---- "); for(i=0; inOp; i++){ fprintf(out, "%02x", p->aOp[i].opcode); } fprintf(out, "\n"); if( p->zSql ){ char c, pc = 0; fprintf(out, "-- "); for(i=0; (c = p->zSql[i])!=0; i++){ if( pc=='\n' ) fprintf(out, "-- "); putc(c, out); pc = c; } if( pc!='\n' ) fprintf(out, "\n"); } for(i=0; inOp; i++){ char zHdr[100]; sqlite3_snprintf(sizeof(zHdr), zHdr, "%6u %12llu %8llu ", p->aOp[i].cnt, p->aOp[i].cycles, p->aOp[i].cnt>0 ? p->aOp[i].cycles/p->aOp[i].cnt : 0 ); fprintf(out, "%s", zHdr); sqlite3VdbePrintOp(out, i, &p->aOp[i]); } fclose(out); } } #endif p->iVdbeMagic = VDBE_MAGIC_RESET; return p->rc & db->errMask; } /* ** Clean up and delete a VDBE after execution. Return an integer which is ** the result code. Write any error message text into *pzErrMsg. */ SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe *p){ int rc = SQLITE_OK; if( p->iVdbeMagic==VDBE_MAGIC_RUN || p->iVdbeMagic==VDBE_MAGIC_HALT ){ rc = sqlite3VdbeReset(p); assert( (rc & p->db->errMask)==rc ); } sqlite3VdbeDelete(p); return rc; } /* ** If parameter iOp is less than zero, then invoke the destructor for ** all auxiliary data pointers currently cached by the VM passed as ** the first argument. ** ** Or, if iOp is greater than or equal to zero, then the destructor is ** only invoked for those auxiliary data pointers created by the user ** function invoked by the OP_Function opcode at instruction iOp of ** VM pVdbe, and only then if: ** ** * the associated function parameter is the 32nd or later (counting ** from left to right), or ** ** * the corresponding bit in argument mask is clear (where the first ** function parameter corresponds to bit 0 etc.). */ SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(sqlite3 *db, AuxData **pp, int iOp, int mask){ while( *pp ){ AuxData *pAux = *pp; if( (iOp<0) || (pAux->iAuxOp==iOp && pAux->iAuxArg>=0 && (pAux->iAuxArg>31 || !(mask & MASKBIT32(pAux->iAuxArg)))) ){ testcase( pAux->iAuxArg==31 ); if( pAux->xDeleteAux ){ pAux->xDeleteAux(pAux->pAux); } *pp = pAux->pNextAux; sqlite3DbFree(db, pAux); }else{ pp= &pAux->pNextAux; } } } /* ** Free all memory associated with the Vdbe passed as the second argument, ** except for object itself, which is preserved. ** ** The difference between this function and sqlite3VdbeDelete() is that ** VdbeDelete() also unlinks the Vdbe from the list of VMs associated with ** the database connection and frees the object itself. */ SQLITE_PRIVATE void sqlite3VdbeClearObject(sqlite3 *db, Vdbe *p){ SubProgram *pSub, *pNext; assert( p->db==0 || p->db==db ); releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); for(pSub=p->pProgram; pSub; pSub=pNext){ pNext = pSub->pNext; vdbeFreeOpArray(db, pSub->aOp, pSub->nOp); sqlite3DbFree(db, pSub); } if( p->iVdbeMagic!=VDBE_MAGIC_INIT ){ releaseMemArray(p->aVar, p->nVar); sqlite3DbFree(db, p->pVList); sqlite3DbFree(db, p->pFree); } vdbeFreeOpArray(db, p->aOp, p->nOp); sqlite3DbFree(db, p->aColName); sqlite3DbFree(db, p->zSql); #ifdef SQLITE_ENABLE_NORMALIZE sqlite3DbFree(db, p->zNormSql); { DblquoteStr *pThis, *pNext; for(pThis=p->pDblStr; pThis; pThis=pNext){ pNext = pThis->pNextStr; sqlite3DbFree(db, pThis); } } #endif #ifdef SQLITE_ENABLE_STMT_SCANSTATUS { int i; for(i=0; inScan; i++){ sqlite3DbFree(db, p->aScan[i].zName); } sqlite3DbFree(db, p->aScan); } #endif } /* ** Delete an entire VDBE. */ SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe *p){ sqlite3 *db; assert( p!=0 ); db = p->db; assert( sqlite3_mutex_held(db->mutex) ); sqlite3VdbeClearObject(db, p); if( p->pPrev ){ p->pPrev->pNext = p->pNext; }else{ assert( db->pVdbe==p ); db->pVdbe = p->pNext; } if( p->pNext ){ p->pNext->pPrev = p->pPrev; } p->iVdbeMagic = VDBE_MAGIC_DEAD; p->db = 0; sqlite3DbFreeNN(db, p); } /* ** The cursor "p" has a pending seek operation that has not yet been ** carried out. Seek the cursor now. If an error occurs, return ** the appropriate error code. */ SQLITE_PRIVATE int SQLITE_NOINLINE sqlite3VdbeFinishMoveto(VdbeCursor *p){ int res, rc; #ifdef SQLITE_TEST extern int sqlite3_search_count; #endif assert( p->deferredMoveto ); assert( p->isTable ); assert( p->eCurType==CURTYPE_BTREE ); rc = sqlite3BtreeTableMoveto(p->uc.pCursor, p->movetoTarget, 0, &res); if( rc ) return rc; if( res!=0 ) return SQLITE_CORRUPT_BKPT; #ifdef SQLITE_TEST sqlite3_search_count++; #endif p->deferredMoveto = 0; p->cacheStatus = CACHE_STALE; return SQLITE_OK; } /* ** Something has moved cursor "p" out of place. Maybe the row it was ** pointed to was deleted out from under it. Or maybe the btree was ** rebalanced. Whatever the cause, try to restore "p" to the place it ** is supposed to be pointing. If the row was deleted out from under the ** cursor, set the cursor to point to a NULL row. */ static int SQLITE_NOINLINE handleMovedCursor(VdbeCursor *p){ int isDifferentRow, rc; assert( p->eCurType==CURTYPE_BTREE ); assert( p->uc.pCursor!=0 ); assert( sqlite3BtreeCursorHasMoved(p->uc.pCursor) ); rc = sqlite3BtreeCursorRestore(p->uc.pCursor, &isDifferentRow); p->cacheStatus = CACHE_STALE; if( isDifferentRow ) p->nullRow = 1; return rc; } /* ** Check to ensure that the cursor is valid. Restore the cursor ** if need be. Return any I/O error from the restore operation. */ SQLITE_PRIVATE int sqlite3VdbeCursorRestore(VdbeCursor *p){ assert( p->eCurType==CURTYPE_BTREE ); if( sqlite3BtreeCursorHasMoved(p->uc.pCursor) ){ return handleMovedCursor(p); } return SQLITE_OK; } /* ** Make sure the cursor p is ready to read or write the row to which it ** was last positioned. Return an error code if an OOM fault or I/O error ** prevents us from positioning the cursor to its correct position. ** ** If a MoveTo operation is pending on the given cursor, then do that ** MoveTo now. If no move is pending, check to see if the row has been ** deleted out from under the cursor and if it has, mark the row as ** a NULL row. ** ** If the cursor is already pointing to the correct row and that row has ** not been deleted out from under the cursor, then this routine is a no-op. */ SQLITE_PRIVATE int sqlite3VdbeCursorMoveto(VdbeCursor **pp, u32 *piCol){ VdbeCursor *p = *pp; assert( p->eCurType==CURTYPE_BTREE || p->eCurType==CURTYPE_PSEUDO ); if( p->deferredMoveto ){ u32 iMap; assert( !p->isEphemeral ); if( p->ub.aAltMap && (iMap = p->ub.aAltMap[1+*piCol])>0 && !p->nullRow ){ *pp = p->pAltCursor; *piCol = iMap - 1; return SQLITE_OK; } return sqlite3VdbeFinishMoveto(p); } if( sqlite3BtreeCursorHasMoved(p->uc.pCursor) ){ return handleMovedCursor(p); } return SQLITE_OK; } /* ** The following functions: ** ** sqlite3VdbeSerialType() ** sqlite3VdbeSerialTypeLen() ** sqlite3VdbeSerialLen() ** sqlite3VdbeSerialPut() ** sqlite3VdbeSerialGet() ** ** encapsulate the code that serializes values for storage in SQLite ** data and index records. Each serialized value consists of a ** 'serial-type' and a blob of data. The serial type is an 8-byte unsigned ** integer, stored as a varint. ** ** In an SQLite index record, the serial type is stored directly before ** the blob of data that it corresponds to. In a table record, all serial ** types are stored at the start of the record, and the blobs of data at ** the end. Hence these functions allow the caller to handle the ** serial-type and data blob separately. ** ** The following table describes the various storage classes for data: ** ** serial type bytes of data type ** -------------- --------------- --------------- ** 0 0 NULL ** 1 1 signed integer ** 2 2 signed integer ** 3 3 signed integer ** 4 4 signed integer ** 5 6 signed integer ** 6 8 signed integer ** 7 8 IEEE float ** 8 0 Integer constant 0 ** 9 0 Integer constant 1 ** 10,11 reserved for expansion ** N>=12 and even (N-12)/2 BLOB ** N>=13 and odd (N-13)/2 text ** ** The 8 and 9 types were added in 3.3.0, file format 4. Prior versions ** of SQLite will not understand those serial types. */ #if 0 /* Inlined into the OP_MakeRecord opcode */ /* ** Return the serial-type for the value stored in pMem. ** ** This routine might convert a large MEM_IntReal value into MEM_Real. ** ** 2019-07-11: The primary user of this subroutine was the OP_MakeRecord ** opcode in the byte-code engine. But by moving this routine in-line, we ** can omit some redundant tests and make that opcode a lot faster. So ** this routine is now only used by the STAT3 logic and STAT3 support has ** ended. The code is kept here for historical reference only. */ SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){ int flags = pMem->flags; u32 n; assert( pLen!=0 ); if( flags&MEM_Null ){ *pLen = 0; return 0; } if( flags&(MEM_Int|MEM_IntReal) ){ /* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */ # define MAX_6BYTE ((((i64)0x00008000)<<32)-1) i64 i = pMem->u.i; u64 u; testcase( flags & MEM_Int ); testcase( flags & MEM_IntReal ); if( i<0 ){ u = ~i; }else{ u = i; } if( u<=127 ){ if( (i&1)==i && file_format>=4 ){ *pLen = 0; return 8+(u32)u; }else{ *pLen = 1; return 1; } } if( u<=32767 ){ *pLen = 2; return 2; } if( u<=8388607 ){ *pLen = 3; return 3; } if( u<=2147483647 ){ *pLen = 4; return 4; } if( u<=MAX_6BYTE ){ *pLen = 6; return 5; } *pLen = 8; if( flags&MEM_IntReal ){ /* If the value is IntReal and is going to take up 8 bytes to store ** as an integer, then we might as well make it an 8-byte floating ** point value */ pMem->u.r = (double)pMem->u.i; pMem->flags &= ~MEM_IntReal; pMem->flags |= MEM_Real; return 7; } return 6; } if( flags&MEM_Real ){ *pLen = 8; return 7; } assert( pMem->db->mallocFailed || flags&(MEM_Str|MEM_Blob) ); assert( pMem->n>=0 ); n = (u32)pMem->n; if( flags & MEM_Zero ){ n += pMem->u.nZero; } *pLen = n; return ((n*2) + 12 + ((flags&MEM_Str)!=0)); } #endif /* inlined into OP_MakeRecord */ /* ** The sizes for serial types less than 128 */ static const u8 sqlite3SmallTypeSizes[] = { /* 0 1 2 3 4 5 6 7 8 9 */ /* 0 */ 0, 1, 2, 3, 4, 6, 8, 8, 0, 0, /* 10 */ 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, /* 20 */ 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, /* 30 */ 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, /* 40 */ 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, /* 50 */ 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, /* 60 */ 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, /* 70 */ 29, 29, 30, 30, 31, 31, 32, 32, 33, 33, /* 80 */ 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, /* 90 */ 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, /* 100 */ 44, 44, 45, 45, 46, 46, 47, 47, 48, 48, /* 110 */ 49, 49, 50, 50, 51, 51, 52, 52, 53, 53, /* 120 */ 54, 54, 55, 55, 56, 56, 57, 57 }; /* ** Return the length of the data corresponding to the supplied serial-type. */ SQLITE_PRIVATE u32 sqlite3VdbeSerialTypeLen(u32 serial_type){ if( serial_type>=128 ){ return (serial_type-12)/2; }else{ assert( serial_type<12 || sqlite3SmallTypeSizes[serial_type]==(serial_type - 12)/2 ); return sqlite3SmallTypeSizes[serial_type]; } } SQLITE_PRIVATE u8 sqlite3VdbeOneByteSerialTypeLen(u8 serial_type){ assert( serial_type<128 ); return sqlite3SmallTypeSizes[serial_type]; } /* ** If we are on an architecture with mixed-endian floating ** points (ex: ARM7) then swap the lower 4 bytes with the ** upper 4 bytes. Return the result. ** ** For most architectures, this is a no-op. ** ** (later): It is reported to me that the mixed-endian problem ** on ARM7 is an issue with GCC, not with the ARM7 chip. It seems ** that early versions of GCC stored the two words of a 64-bit ** float in the wrong order. And that error has been propagated ** ever since. The blame is not necessarily with GCC, though. ** GCC might have just copying the problem from a prior compiler. ** I am also told that newer versions of GCC that follow a different ** ABI get the byte order right. ** ** Developers using SQLite on an ARM7 should compile and run their ** application using -DSQLITE_DEBUG=1 at least once. With DEBUG ** enabled, some asserts below will ensure that the byte order of ** floating point values is correct. ** ** (2007-08-30) Frank van Vugt has studied this problem closely ** and has send his findings to the SQLite developers. Frank ** writes that some Linux kernels offer floating point hardware ** emulation that uses only 32-bit mantissas instead of a full ** 48-bits as required by the IEEE standard. (This is the ** CONFIG_FPE_FASTFPE option.) On such systems, floating point ** byte swapping becomes very complicated. To avoid problems, ** the necessary byte swapping is carried out using a 64-bit integer ** rather than a 64-bit float. Frank assures us that the code here ** works for him. We, the developers, have no way to independently ** verify this, but Frank seems to know what he is talking about ** so we trust him. */ #ifdef SQLITE_MIXED_ENDIAN_64BIT_FLOAT static u64 floatSwap(u64 in){ union { u64 r; u32 i[2]; } u; u32 t; u.r = in; t = u.i[0]; u.i[0] = u.i[1]; u.i[1] = t; return u.r; } # define swapMixedEndianFloat(X) X = floatSwap(X) #else # define swapMixedEndianFloat(X) #endif /* ** Write the serialized data blob for the value stored in pMem into ** buf. It is assumed that the caller has allocated sufficient space. ** Return the number of bytes written. ** ** nBuf is the amount of space left in buf[]. The caller is responsible ** for allocating enough space to buf[] to hold the entire field, exclusive ** of the pMem->u.nZero bytes for a MEM_Zero value. ** ** Return the number of bytes actually written into buf[]. The number ** of bytes in the zero-filled tail is included in the return value only ** if those bytes were zeroed in buf[]. */ SQLITE_PRIVATE u32 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type){ u32 len; /* Integer and Real */ if( serial_type<=7 && serial_type>0 ){ u64 v; u32 i; if( serial_type==7 ){ assert( sizeof(v)==sizeof(pMem->u.r) ); memcpy(&v, &pMem->u.r, sizeof(v)); swapMixedEndianFloat(v); }else{ v = pMem->u.i; } len = i = sqlite3SmallTypeSizes[serial_type]; assert( i>0 ); do{ buf[--i] = (u8)(v&0xFF); v >>= 8; }while( i ); return len; } /* String or blob */ if( serial_type>=12 ){ assert( pMem->n + ((pMem->flags & MEM_Zero)?pMem->u.nZero:0) == (int)sqlite3VdbeSerialTypeLen(serial_type) ); len = pMem->n; if( len>0 ) memcpy(buf, pMem->z, len); return len; } /* NULL or constants 0 or 1 */ return 0; } /* Input "x" is a sequence of unsigned characters that represent a ** big-endian integer. Return the equivalent native integer */ #define ONE_BYTE_INT(x) ((i8)(x)[0]) #define TWO_BYTE_INT(x) (256*(i8)((x)[0])|(x)[1]) #define THREE_BYTE_INT(x) (65536*(i8)((x)[0])|((x)[1]<<8)|(x)[2]) #define FOUR_BYTE_UINT(x) (((u32)(x)[0]<<24)|((x)[1]<<16)|((x)[2]<<8)|(x)[3]) #define FOUR_BYTE_INT(x) (16777216*(i8)((x)[0])|((x)[1]<<16)|((x)[2]<<8)|(x)[3]) /* ** Deserialize the data blob pointed to by buf as serial type serial_type ** and store the result in pMem. ** ** This function is implemented as two separate routines for performance. ** The few cases that require local variables are broken out into a separate ** routine so that in most cases the overhead of moving the stack pointer ** is avoided. */ static void serialGet( const unsigned char *buf, /* Buffer to deserialize from */ u32 serial_type, /* Serial type to deserialize */ Mem *pMem /* Memory cell to write value into */ ){ u64 x = FOUR_BYTE_UINT(buf); u32 y = FOUR_BYTE_UINT(buf+4); x = (x<<32) + y; if( serial_type==6 ){ /* EVIDENCE-OF: R-29851-52272 Value is a big-endian 64-bit ** twos-complement integer. */ pMem->u.i = *(i64*)&x; pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); }else{ /* EVIDENCE-OF: R-57343-49114 Value is a big-endian IEEE 754-2008 64-bit ** floating point number. */ #if !defined(NDEBUG) && !defined(SQLITE_OMIT_FLOATING_POINT) /* Verify that integers and floating point values use the same ** byte order. Or, that if SQLITE_MIXED_ENDIAN_64BIT_FLOAT is ** defined that 64-bit floating point values really are mixed ** endian. */ static const u64 t1 = ((u64)0x3ff00000)<<32; static const double r1 = 1.0; u64 t2 = t1; swapMixedEndianFloat(t2); assert( sizeof(r1)==sizeof(t2) && memcmp(&r1, &t2, sizeof(r1))==0 ); #endif assert( sizeof(x)==8 && sizeof(pMem->u.r)==8 ); swapMixedEndianFloat(x); memcpy(&pMem->u.r, &x, sizeof(x)); pMem->flags = IsNaN(x) ? MEM_Null : MEM_Real; } } SQLITE_PRIVATE void sqlite3VdbeSerialGet( const unsigned char *buf, /* Buffer to deserialize from */ u32 serial_type, /* Serial type to deserialize */ Mem *pMem /* Memory cell to write value into */ ){ switch( serial_type ){ case 10: { /* Internal use only: NULL with virtual table ** UPDATE no-change flag set */ pMem->flags = MEM_Null|MEM_Zero; pMem->n = 0; pMem->u.nZero = 0; return; } case 11: /* Reserved for future use */ case 0: { /* Null */ /* EVIDENCE-OF: R-24078-09375 Value is a NULL. */ pMem->flags = MEM_Null; return; } case 1: { /* EVIDENCE-OF: R-44885-25196 Value is an 8-bit twos-complement ** integer. */ pMem->u.i = ONE_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return; } case 2: { /* 2-byte signed integer */ /* EVIDENCE-OF: R-49794-35026 Value is a big-endian 16-bit ** twos-complement integer. */ pMem->u.i = TWO_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return; } case 3: { /* 3-byte signed integer */ /* EVIDENCE-OF: R-37839-54301 Value is a big-endian 24-bit ** twos-complement integer. */ pMem->u.i = THREE_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return; } case 4: { /* 4-byte signed integer */ /* EVIDENCE-OF: R-01849-26079 Value is a big-endian 32-bit ** twos-complement integer. */ pMem->u.i = FOUR_BYTE_INT(buf); #ifdef __HP_cc /* Work around a sign-extension bug in the HP compiler for HP/UX */ if( buf[0]&0x80 ) pMem->u.i |= 0xffffffff80000000LL; #endif pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return; } case 5: { /* 6-byte signed integer */ /* EVIDENCE-OF: R-50385-09674 Value is a big-endian 48-bit ** twos-complement integer. */ pMem->u.i = FOUR_BYTE_UINT(buf+2) + (((i64)1)<<32)*TWO_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return; } case 6: /* 8-byte signed integer */ case 7: { /* IEEE floating point */ /* These use local variables, so do them in a separate routine ** to avoid having to move the frame pointer in the common case */ serialGet(buf,serial_type,pMem); return; } case 8: /* Integer 0 */ case 9: { /* Integer 1 */ /* EVIDENCE-OF: R-12976-22893 Value is the integer 0. */ /* EVIDENCE-OF: R-18143-12121 Value is the integer 1. */ pMem->u.i = serial_type-8; pMem->flags = MEM_Int; return; } default: { /* EVIDENCE-OF: R-14606-31564 Value is a BLOB that is (N-12)/2 bytes in ** length. ** EVIDENCE-OF: R-28401-00140 Value is a string in the text encoding and ** (N-13)/2 bytes in length. */ static const u16 aFlag[] = { MEM_Blob|MEM_Ephem, MEM_Str|MEM_Ephem }; pMem->z = (char *)buf; pMem->n = (serial_type-12)/2; pMem->flags = aFlag[serial_type&1]; return; } } return; } /* ** This routine is used to allocate sufficient space for an UnpackedRecord ** structure large enough to be used with sqlite3VdbeRecordUnpack() if ** the first argument is a pointer to KeyInfo structure pKeyInfo. ** ** The space is either allocated using sqlite3DbMallocRaw() or from within ** the unaligned buffer passed via the second and third arguments (presumably ** stack space). If the former, then *ppFree is set to a pointer that should ** be eventually freed by the caller using sqlite3DbFree(). Or, if the ** allocation comes from the pSpace/szSpace buffer, *ppFree is set to NULL ** before returning. ** ** If an OOM error occurs, NULL is returned. */ SQLITE_PRIVATE UnpackedRecord *sqlite3VdbeAllocUnpackedRecord( KeyInfo *pKeyInfo /* Description of the record */ ){ UnpackedRecord *p; /* Unpacked record to return */ int nByte; /* Number of bytes required for *p */ nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nKeyField+1); p = (UnpackedRecord *)sqlite3DbMallocRaw(pKeyInfo->db, nByte); if( !p ) return 0; p->aMem = (Mem*)&((char*)p)[ROUND8(sizeof(UnpackedRecord))]; assert( pKeyInfo->aSortFlags!=0 ); p->pKeyInfo = pKeyInfo; p->nField = pKeyInfo->nKeyField + 1; return p; } /* ** Given the nKey-byte encoding of a record in pKey[], populate the ** UnpackedRecord structure indicated by the fourth argument with the ** contents of the decoded record. */ SQLITE_PRIVATE void sqlite3VdbeRecordUnpack( KeyInfo *pKeyInfo, /* Information about the record format */ int nKey, /* Size of the binary record */ const void *pKey, /* The binary record */ UnpackedRecord *p /* Populate this structure before returning. */ ){ const unsigned char *aKey = (const unsigned char *)pKey; u32 d; u32 idx; /* Offset in aKey[] to read from */ u16 u; /* Unsigned loop counter */ u32 szHdr; Mem *pMem = p->aMem; p->default_rc = 0; assert( EIGHT_BYTE_ALIGNMENT(pMem) ); idx = getVarint32(aKey, szHdr); d = szHdr; u = 0; while( idxenc = pKeyInfo->enc; pMem->db = pKeyInfo->db; /* pMem->flags = 0; // sqlite3VdbeSerialGet() will set this for us */ pMem->szMalloc = 0; pMem->z = 0; sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem); d += sqlite3VdbeSerialTypeLen(serial_type); pMem++; if( (++u)>=p->nField ) break; } if( d>(u32)nKey && u ){ assert( CORRUPT_DB ); /* In a corrupt record entry, the last pMem might have been set up using ** uninitialized memory. Overwrite its value with NULL, to prevent ** warnings from MSAN. */ sqlite3VdbeMemSetNull(pMem-1); } assert( u<=pKeyInfo->nKeyField + 1 ); p->nField = u; } #ifdef SQLITE_DEBUG /* ** This function compares two index or table record keys in the same way ** as the sqlite3VdbeRecordCompare() routine. Unlike VdbeRecordCompare(), ** this function deserializes and compares values using the ** sqlite3VdbeSerialGet() and sqlite3MemCompare() functions. It is used ** in assert() statements to ensure that the optimized code in ** sqlite3VdbeRecordCompare() returns results with these two primitives. ** ** Return true if the result of comparison is equivalent to desiredResult. ** Return false if there is a disagreement. */ static int vdbeRecordCompareDebug( int nKey1, const void *pKey1, /* Left key */ const UnpackedRecord *pPKey2, /* Right key */ int desiredResult /* Correct answer */ ){ u32 d1; /* Offset into aKey[] of next data element */ u32 idx1; /* Offset into aKey[] of next header element */ u32 szHdr1; /* Number of bytes in header */ int i = 0; int rc = 0; const unsigned char *aKey1 = (const unsigned char *)pKey1; KeyInfo *pKeyInfo; Mem mem1; pKeyInfo = pPKey2->pKeyInfo; if( pKeyInfo->db==0 ) return 1; mem1.enc = pKeyInfo->enc; mem1.db = pKeyInfo->db; /* mem1.flags = 0; // Will be initialized by sqlite3VdbeSerialGet() */ VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */ /* Compilers may complain that mem1.u.i is potentially uninitialized. ** We could initialize it, as shown here, to silence those complaints. ** But in fact, mem1.u.i will never actually be used uninitialized, and doing ** the unnecessary initialization has a measurable negative performance ** impact, since this routine is a very high runner. And so, we choose ** to ignore the compiler warnings and leave this variable uninitialized. */ /* mem1.u.i = 0; // not needed, here to silence compiler warning */ idx1 = getVarint32(aKey1, szHdr1); if( szHdr1>98307 ) return SQLITE_CORRUPT; d1 = szHdr1; assert( pKeyInfo->nAllField>=pPKey2->nField || CORRUPT_DB ); assert( pKeyInfo->aSortFlags!=0 ); assert( pKeyInfo->nKeyField>0 ); assert( idx1<=szHdr1 || CORRUPT_DB ); do{ u32 serial_type1; /* Read the serial types for the next element in each key. */ idx1 += getVarint32( aKey1+idx1, serial_type1 ); /* Verify that there is enough key space remaining to avoid ** a buffer overread. The "d1+serial_type1+2" subexpression will ** always be greater than or equal to the amount of required key space. ** Use that approximation to avoid the more expensive call to ** sqlite3VdbeSerialTypeLen() in the common case. */ if( d1+(u64)serial_type1+2>(u64)nKey1 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)>(u64)nKey1 ){ break; } /* Extract the values to be compared. */ sqlite3VdbeSerialGet(&aKey1[d1], serial_type1, &mem1); d1 += sqlite3VdbeSerialTypeLen(serial_type1); /* Do the comparison */ rc = sqlite3MemCompare(&mem1, &pPKey2->aMem[i], pKeyInfo->nAllField>i ? pKeyInfo->aColl[i] : 0); if( rc!=0 ){ assert( mem1.szMalloc==0 ); /* See comment below */ if( (pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_BIGNULL) && ((mem1.flags & MEM_Null) || (pPKey2->aMem[i].flags & MEM_Null)) ){ rc = -rc; } if( pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_DESC ){ rc = -rc; /* Invert the result for DESC sort order. */ } goto debugCompareEnd; } i++; }while( idx1nField ); /* No memory allocation is ever used on mem1. Prove this using ** the following assert(). If the assert() fails, it indicates a ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). */ assert( mem1.szMalloc==0 ); /* rc==0 here means that one of the keys ran out of fields and ** all the fields up to that point were equal. Return the default_rc ** value. */ rc = pPKey2->default_rc; debugCompareEnd: if( desiredResult==0 && rc==0 ) return 1; if( desiredResult<0 && rc<0 ) return 1; if( desiredResult>0 && rc>0 ) return 1; if( CORRUPT_DB ) return 1; if( pKeyInfo->db->mallocFailed ) return 1; return 0; } #endif #ifdef SQLITE_DEBUG /* ** Count the number of fields (a.k.a. columns) in the record given by ** pKey,nKey. The verify that this count is less than or equal to the ** limit given by pKeyInfo->nAllField. ** ** If this constraint is not satisfied, it means that the high-speed ** vdbeRecordCompareInt() and vdbeRecordCompareString() routines will ** not work correctly. If this assert() ever fires, it probably means ** that the KeyInfo.nKeyField or KeyInfo.nAllField values were computed ** incorrectly. */ static void vdbeAssertFieldCountWithinLimits( int nKey, const void *pKey, /* The record to verify */ const KeyInfo *pKeyInfo /* Compare size with this KeyInfo */ ){ int nField = 0; u32 szHdr; u32 idx; u32 notUsed; const unsigned char *aKey = (const unsigned char*)pKey; if( CORRUPT_DB ) return; idx = getVarint32(aKey, szHdr); assert( nKey>=0 ); assert( szHdr<=(u32)nKey ); while( idxnAllField ); } #else # define vdbeAssertFieldCountWithinLimits(A,B,C) #endif /* ** Both *pMem1 and *pMem2 contain string values. Compare the two values ** using the collation sequence pColl. As usual, return a negative , zero ** or positive value if *pMem1 is less than, equal to or greater than ** *pMem2, respectively. Similar in spirit to "rc = (*pMem1) - (*pMem2);". */ static int vdbeCompareMemString( const Mem *pMem1, const Mem *pMem2, const CollSeq *pColl, u8 *prcErr /* If an OOM occurs, set to SQLITE_NOMEM */ ){ if( pMem1->enc==pColl->enc ){ /* The strings are already in the correct encoding. Call the ** comparison function directly */ return pColl->xCmp(pColl->pUser,pMem1->n,pMem1->z,pMem2->n,pMem2->z); }else{ int rc; const void *v1, *v2; Mem c1; Mem c2; sqlite3VdbeMemInit(&c1, pMem1->db, MEM_Null); sqlite3VdbeMemInit(&c2, pMem1->db, MEM_Null); sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem); sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem); v1 = sqlite3ValueText((sqlite3_value*)&c1, pColl->enc); v2 = sqlite3ValueText((sqlite3_value*)&c2, pColl->enc); if( (v1==0 || v2==0) ){ if( prcErr ) *prcErr = SQLITE_NOMEM_BKPT; rc = 0; }else{ rc = pColl->xCmp(pColl->pUser, c1.n, v1, c2.n, v2); } sqlite3VdbeMemRelease(&c1); sqlite3VdbeMemRelease(&c2); return rc; } } /* ** The input pBlob is guaranteed to be a Blob that is not marked ** with MEM_Zero. Return true if it could be a zero-blob. */ static int isAllZero(const char *z, int n){ int i; for(i=0; in; int n2 = pB2->n; /* It is possible to have a Blob value that has some non-zero content ** followed by zero content. But that only comes up for Blobs formed ** by the OP_MakeRecord opcode, and such Blobs never get passed into ** sqlite3MemCompare(). */ assert( (pB1->flags & MEM_Zero)==0 || n1==0 ); assert( (pB2->flags & MEM_Zero)==0 || n2==0 ); if( (pB1->flags|pB2->flags) & MEM_Zero ){ if( pB1->flags & pB2->flags & MEM_Zero ){ return pB1->u.nZero - pB2->u.nZero; }else if( pB1->flags & MEM_Zero ){ if( !isAllZero(pB2->z, pB2->n) ) return -1; return pB1->u.nZero - n2; }else{ if( !isAllZero(pB1->z, pB1->n) ) return +1; return n1 - pB2->u.nZero; } } c = memcmp(pB1->z, pB2->z, n1>n2 ? n2 : n1); if( c ) return c; return n1 - n2; } /* ** Do a comparison between a 64-bit signed integer and a 64-bit floating-point ** number. Return negative, zero, or positive if the first (i64) is less than, ** equal to, or greater than the second (double). */ SQLITE_PRIVATE int sqlite3IntFloatCompare(i64 i, double r){ if( sizeof(LONGDOUBLE_TYPE)>8 ){ LONGDOUBLE_TYPE x = (LONGDOUBLE_TYPE)i; testcase( xr ); testcase( x==r ); if( xr ) return +1; /*NO_TEST*/ /* work around bugs in gcov */ return 0; /*NO_TEST*/ /* work around bugs in gcov */ }else{ i64 y; double s; if( r<-9223372036854775808.0 ) return +1; if( r>=9223372036854775808.0 ) return -1; y = (i64)r; if( iy ) return +1; s = (double)i; if( sr ) return +1; return 0; } } /* ** Compare the values contained by the two memory cells, returning ** negative, zero or positive if pMem1 is less than, equal to, or greater ** than pMem2. Sorting order is NULL's first, followed by numbers (integers ** and reals) sorted numerically, followed by text ordered by the collating ** sequence pColl and finally blob's ordered by memcmp(). ** ** Two NULL values are considered equal by this function. */ SQLITE_PRIVATE int sqlite3MemCompare(const Mem *pMem1, const Mem *pMem2, const CollSeq *pColl){ int f1, f2; int combined_flags; f1 = pMem1->flags; f2 = pMem2->flags; combined_flags = f1|f2; assert( !sqlite3VdbeMemIsRowSet(pMem1) && !sqlite3VdbeMemIsRowSet(pMem2) ); /* If one value is NULL, it is less than the other. If both values ** are NULL, return 0. */ if( combined_flags&MEM_Null ){ return (f2&MEM_Null) - (f1&MEM_Null); } /* At least one of the two values is a number */ if( combined_flags&(MEM_Int|MEM_Real|MEM_IntReal) ){ testcase( combined_flags & MEM_Int ); testcase( combined_flags & MEM_Real ); testcase( combined_flags & MEM_IntReal ); if( (f1 & f2 & (MEM_Int|MEM_IntReal))!=0 ){ testcase( f1 & f2 & MEM_Int ); testcase( f1 & f2 & MEM_IntReal ); if( pMem1->u.i < pMem2->u.i ) return -1; if( pMem1->u.i > pMem2->u.i ) return +1; return 0; } if( (f1 & f2 & MEM_Real)!=0 ){ if( pMem1->u.r < pMem2->u.r ) return -1; if( pMem1->u.r > pMem2->u.r ) return +1; return 0; } if( (f1&(MEM_Int|MEM_IntReal))!=0 ){ testcase( f1 & MEM_Int ); testcase( f1 & MEM_IntReal ); if( (f2&MEM_Real)!=0 ){ return sqlite3IntFloatCompare(pMem1->u.i, pMem2->u.r); }else if( (f2&(MEM_Int|MEM_IntReal))!=0 ){ if( pMem1->u.i < pMem2->u.i ) return -1; if( pMem1->u.i > pMem2->u.i ) return +1; return 0; }else{ return -1; } } if( (f1&MEM_Real)!=0 ){ if( (f2&(MEM_Int|MEM_IntReal))!=0 ){ testcase( f2 & MEM_Int ); testcase( f2 & MEM_IntReal ); return -sqlite3IntFloatCompare(pMem2->u.i, pMem1->u.r); }else{ return -1; } } return +1; } /* If one value is a string and the other is a blob, the string is less. ** If both are strings, compare using the collating functions. */ if( combined_flags&MEM_Str ){ if( (f1 & MEM_Str)==0 ){ return 1; } if( (f2 & MEM_Str)==0 ){ return -1; } assert( pMem1->enc==pMem2->enc || pMem1->db->mallocFailed ); assert( pMem1->enc==SQLITE_UTF8 || pMem1->enc==SQLITE_UTF16LE || pMem1->enc==SQLITE_UTF16BE ); /* The collation sequence must be defined at this point, even if ** the user deletes the collation sequence after the vdbe program is ** compiled (this was not always the case). */ assert( !pColl || pColl->xCmp ); if( pColl ){ return vdbeCompareMemString(pMem1, pMem2, pColl, 0); } /* If a NULL pointer was passed as the collate function, fall through ** to the blob case and use memcmp(). */ } /* Both values must be blobs. Compare using memcmp(). */ return sqlite3BlobCompare(pMem1, pMem2); } /* ** The first argument passed to this function is a serial-type that ** corresponds to an integer - all values between 1 and 9 inclusive ** except 7. The second points to a buffer containing an integer value ** serialized according to serial_type. This function deserializes ** and returns the value. */ static i64 vdbeRecordDecodeInt(u32 serial_type, const u8 *aKey){ u32 y; assert( CORRUPT_DB || (serial_type>=1 && serial_type<=9 && serial_type!=7) ); switch( serial_type ){ case 0: case 1: testcase( aKey[0]&0x80 ); return ONE_BYTE_INT(aKey); case 2: testcase( aKey[0]&0x80 ); return TWO_BYTE_INT(aKey); case 3: testcase( aKey[0]&0x80 ); return THREE_BYTE_INT(aKey); case 4: { testcase( aKey[0]&0x80 ); y = FOUR_BYTE_UINT(aKey); return (i64)*(int*)&y; } case 5: { testcase( aKey[0]&0x80 ); return FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey); } case 6: { u64 x = FOUR_BYTE_UINT(aKey); testcase( aKey[0]&0x80 ); x = (x<<32) | FOUR_BYTE_UINT(aKey+4); return (i64)*(i64*)&x; } } return (serial_type - 8); } /* ** This function compares the two table rows or index records ** specified by {nKey1, pKey1} and pPKey2. It returns a negative, zero ** or positive integer if key1 is less than, equal to or ** greater than key2. The {nKey1, pKey1} key must be a blob ** created by the OP_MakeRecord opcode of the VDBE. The pPKey2 ** key must be a parsed key such as obtained from ** sqlite3VdbeParseRecord. ** ** If argument bSkip is non-zero, it is assumed that the caller has already ** determined that the first fields of the keys are equal. ** ** Key1 and Key2 do not have to contain the same number of fields. If all ** fields that appear in both keys are equal, then pPKey2->default_rc is ** returned. ** ** If database corruption is discovered, set pPKey2->errCode to ** SQLITE_CORRUPT and return 0. If an OOM error is encountered, ** pPKey2->errCode is set to SQLITE_NOMEM and, if it is not NULL, the ** malloc-failed flag set on database handle (pPKey2->pKeyInfo->db). */ SQLITE_PRIVATE int sqlite3VdbeRecordCompareWithSkip( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2, /* Right key */ int bSkip /* If true, skip the first field */ ){ u32 d1; /* Offset into aKey[] of next data element */ int i; /* Index of next field to compare */ u32 szHdr1; /* Size of record header in bytes */ u32 idx1; /* Offset of first type in header */ int rc = 0; /* Return value */ Mem *pRhs = pPKey2->aMem; /* Next field of pPKey2 to compare */ KeyInfo *pKeyInfo; const unsigned char *aKey1 = (const unsigned char *)pKey1; Mem mem1; /* If bSkip is true, then the caller has already determined that the first ** two elements in the keys are equal. Fix the various stack variables so ** that this routine begins comparing at the second field. */ if( bSkip ){ u32 s1; idx1 = 1 + getVarint32(&aKey1[1], s1); szHdr1 = aKey1[0]; d1 = szHdr1 + sqlite3VdbeSerialTypeLen(s1); i = 1; pRhs++; }else{ idx1 = getVarint32(aKey1, szHdr1); d1 = szHdr1; i = 0; } if( d1>(unsigned)nKey1 ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ } VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */ assert( pPKey2->pKeyInfo->nAllField>=pPKey2->nField || CORRUPT_DB ); assert( pPKey2->pKeyInfo->aSortFlags!=0 ); assert( pPKey2->pKeyInfo->nKeyField>0 ); assert( idx1<=szHdr1 || CORRUPT_DB ); do{ u32 serial_type; /* RHS is an integer */ if( pRhs->flags & (MEM_Int|MEM_IntReal) ){ testcase( pRhs->flags & MEM_Int ); testcase( pRhs->flags & MEM_IntReal ); serial_type = aKey1[idx1]; testcase( serial_type==12 ); if( serial_type>=10 ){ rc = +1; }else if( serial_type==0 ){ rc = -1; }else if( serial_type==7 ){ sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1); rc = -sqlite3IntFloatCompare(pRhs->u.i, mem1.u.r); }else{ i64 lhs = vdbeRecordDecodeInt(serial_type, &aKey1[d1]); i64 rhs = pRhs->u.i; if( lhsrhs ){ rc = +1; } } } /* RHS is real */ else if( pRhs->flags & MEM_Real ){ serial_type = aKey1[idx1]; if( serial_type>=10 ){ /* Serial types 12 or greater are strings and blobs (greater than ** numbers). Types 10 and 11 are currently "reserved for future ** use", so it doesn't really matter what the results of comparing ** them to numberic values are. */ rc = +1; }else if( serial_type==0 ){ rc = -1; }else{ sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1); if( serial_type==7 ){ if( mem1.u.ru.r ){ rc = -1; }else if( mem1.u.r>pRhs->u.r ){ rc = +1; } }else{ rc = sqlite3IntFloatCompare(mem1.u.i, pRhs->u.r); } } } /* RHS is a string */ else if( pRhs->flags & MEM_Str ){ getVarint32NR(&aKey1[idx1], serial_type); testcase( serial_type==12 ); if( serial_type<12 ){ rc = -1; }else if( !(serial_type & 0x01) ){ rc = +1; }else{ mem1.n = (serial_type - 12) / 2; testcase( (d1+mem1.n)==(unsigned)nKey1 ); testcase( (d1+mem1.n+1)==(unsigned)nKey1 ); if( (d1+mem1.n) > (unsigned)nKey1 || (pKeyInfo = pPKey2->pKeyInfo)->nAllField<=i ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ }else if( pKeyInfo->aColl[i] ){ mem1.enc = pKeyInfo->enc; mem1.db = pKeyInfo->db; mem1.flags = MEM_Str; mem1.z = (char*)&aKey1[d1]; rc = vdbeCompareMemString( &mem1, pRhs, pKeyInfo->aColl[i], &pPKey2->errCode ); }else{ int nCmp = MIN(mem1.n, pRhs->n); rc = memcmp(&aKey1[d1], pRhs->z, nCmp); if( rc==0 ) rc = mem1.n - pRhs->n; } } } /* RHS is a blob */ else if( pRhs->flags & MEM_Blob ){ assert( (pRhs->flags & MEM_Zero)==0 || pRhs->n==0 ); getVarint32NR(&aKey1[idx1], serial_type); testcase( serial_type==12 ); if( serial_type<12 || (serial_type & 0x01) ){ rc = -1; }else{ int nStr = (serial_type - 12) / 2; testcase( (d1+nStr)==(unsigned)nKey1 ); testcase( (d1+nStr+1)==(unsigned)nKey1 ); if( (d1+nStr) > (unsigned)nKey1 ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ }else if( pRhs->flags & MEM_Zero ){ if( !isAllZero((const char*)&aKey1[d1],nStr) ){ rc = 1; }else{ rc = nStr - pRhs->u.nZero; } }else{ int nCmp = MIN(nStr, pRhs->n); rc = memcmp(&aKey1[d1], pRhs->z, nCmp); if( rc==0 ) rc = nStr - pRhs->n; } } } /* RHS is null */ else{ serial_type = aKey1[idx1]; rc = (serial_type!=0); } if( rc!=0 ){ int sortFlags = pPKey2->pKeyInfo->aSortFlags[i]; if( sortFlags ){ if( (sortFlags & KEYINFO_ORDER_BIGNULL)==0 || ((sortFlags & KEYINFO_ORDER_DESC) !=(serial_type==0 || (pRhs->flags&MEM_Null))) ){ rc = -rc; } } assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) ); assert( mem1.szMalloc==0 ); /* See comment below */ return rc; } i++; if( i==pPKey2->nField ) break; pRhs++; d1 += sqlite3VdbeSerialTypeLen(serial_type); idx1 += sqlite3VarintLen(serial_type); }while( idx1<(unsigned)szHdr1 && d1<=(unsigned)nKey1 ); /* No memory allocation is ever used on mem1. Prove this using ** the following assert(). If the assert() fails, it indicates a ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). */ assert( mem1.szMalloc==0 ); /* rc==0 here means that one or both of the keys ran out of fields and ** all the fields up to that point were equal. Return the default_rc ** value. */ assert( CORRUPT_DB || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc) || pPKey2->pKeyInfo->db->mallocFailed ); pPKey2->eqSeen = 1; return pPKey2->default_rc; } SQLITE_PRIVATE int sqlite3VdbeRecordCompare( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2 /* Right key */ ){ return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0); } /* ** This function is an optimized version of sqlite3VdbeRecordCompare() ** that (a) the first field of pPKey2 is an integer, and (b) the ** size-of-header varint at the start of (pKey1/nKey1) fits in a single ** byte (i.e. is less than 128). ** ** To avoid concerns about buffer overreads, this routine is only used ** on schemas where the maximum valid header size is 63 bytes or less. */ static int vdbeRecordCompareInt( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2 /* Right key */ ){ const u8 *aKey = &((const u8*)pKey1)[*(const u8*)pKey1 & 0x3F]; int serial_type = ((const u8*)pKey1)[1]; int res; u32 y; u64 x; i64 v; i64 lhs; vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo); assert( (*(u8*)pKey1)<=0x3F || CORRUPT_DB ); switch( serial_type ){ case 1: { /* 1-byte signed integer */ lhs = ONE_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 2: { /* 2-byte signed integer */ lhs = TWO_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 3: { /* 3-byte signed integer */ lhs = THREE_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 4: { /* 4-byte signed integer */ y = FOUR_BYTE_UINT(aKey); lhs = (i64)*(int*)&y; testcase( lhs<0 ); break; } case 5: { /* 6-byte signed integer */ lhs = FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 6: { /* 8-byte signed integer */ x = FOUR_BYTE_UINT(aKey); x = (x<<32) | FOUR_BYTE_UINT(aKey+4); lhs = *(i64*)&x; testcase( lhs<0 ); break; } case 8: lhs = 0; break; case 9: lhs = 1; break; /* This case could be removed without changing the results of running ** this code. Including it causes gcc to generate a faster switch ** statement (since the range of switch targets now starts at zero and ** is contiguous) but does not cause any duplicate code to be generated ** (as gcc is clever enough to combine the two like cases). Other ** compilers might be similar. */ case 0: case 7: return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2); default: return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2); } v = pPKey2->aMem[0].u.i; if( v>lhs ){ res = pPKey2->r1; }else if( vr2; }else if( pPKey2->nField>1 ){ /* The first fields of the two keys are equal. Compare the trailing ** fields. */ res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1); }else{ /* The first fields of the two keys are equal and there are no trailing ** fields. Return pPKey2->default_rc in this case. */ res = pPKey2->default_rc; pPKey2->eqSeen = 1; } assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) ); return res; } /* ** This function is an optimized version of sqlite3VdbeRecordCompare() ** that (a) the first field of pPKey2 is a string, that (b) the first field ** uses the collation sequence BINARY and (c) that the size-of-header varint ** at the start of (pKey1/nKey1) fits in a single byte. */ static int vdbeRecordCompareString( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2 /* Right key */ ){ const u8 *aKey1 = (const u8*)pKey1; int serial_type; int res; assert( pPKey2->aMem[0].flags & MEM_Str ); vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo); serial_type = (u8)(aKey1[1]); if( serial_type >= 0x80 ){ sqlite3GetVarint32(&aKey1[1], (u32*)&serial_type); } if( serial_type<12 ){ res = pPKey2->r1; /* (pKey1/nKey1) is a number or a null */ }else if( !(serial_type & 0x01) ){ res = pPKey2->r2; /* (pKey1/nKey1) is a blob */ }else{ int nCmp; int nStr; int szHdr = aKey1[0]; nStr = (serial_type-12) / 2; if( (szHdr + nStr) > nKey1 ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ } nCmp = MIN( pPKey2->aMem[0].n, nStr ); res = memcmp(&aKey1[szHdr], pPKey2->aMem[0].z, nCmp); if( res>0 ){ res = pPKey2->r2; }else if( res<0 ){ res = pPKey2->r1; }else{ res = nStr - pPKey2->aMem[0].n; if( res==0 ){ if( pPKey2->nField>1 ){ res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1); }else{ res = pPKey2->default_rc; pPKey2->eqSeen = 1; } }else if( res>0 ){ res = pPKey2->r2; }else{ res = pPKey2->r1; } } } assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) || CORRUPT_DB || pPKey2->pKeyInfo->db->mallocFailed ); return res; } /* ** Return a pointer to an sqlite3VdbeRecordCompare() compatible function ** suitable for comparing serialized records to the unpacked record passed ** as the only argument. */ SQLITE_PRIVATE RecordCompare sqlite3VdbeFindCompare(UnpackedRecord *p){ /* varintRecordCompareInt() and varintRecordCompareString() both assume ** that the size-of-header varint that occurs at the start of each record ** fits in a single byte (i.e. is 127 or less). varintRecordCompareInt() ** also assumes that it is safe to overread a buffer by at least the ** maximum possible legal header size plus 8 bytes. Because there is ** guaranteed to be at least 74 (but not 136) bytes of padding following each ** buffer passed to varintRecordCompareInt() this makes it convenient to ** limit the size of the header to 64 bytes in cases where the first field ** is an integer. ** ** The easiest way to enforce this limit is to consider only records with ** 13 fields or less. If the first field is an integer, the maximum legal ** header size is (12*5 + 1 + 1) bytes. */ if( p->pKeyInfo->nAllField<=13 ){ int flags = p->aMem[0].flags; if( p->pKeyInfo->aSortFlags[0] ){ if( p->pKeyInfo->aSortFlags[0] & KEYINFO_ORDER_BIGNULL ){ return sqlite3VdbeRecordCompare; } p->r1 = 1; p->r2 = -1; }else{ p->r1 = -1; p->r2 = 1; } if( (flags & MEM_Int) ){ return vdbeRecordCompareInt; } testcase( flags & MEM_Real ); testcase( flags & MEM_Null ); testcase( flags & MEM_Blob ); if( (flags & (MEM_Real|MEM_IntReal|MEM_Null|MEM_Blob))==0 && p->pKeyInfo->aColl[0]==0 ){ assert( flags & MEM_Str ); return vdbeRecordCompareString; } } return sqlite3VdbeRecordCompare; } /* ** pCur points at an index entry created using the OP_MakeRecord opcode. ** Read the rowid (the last field in the record) and store it in *rowid. ** Return SQLITE_OK if everything works, or an error code otherwise. ** ** pCur might be pointing to text obtained from a corrupt database file. ** So the content cannot be trusted. Do appropriate checks on the content. */ SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){ i64 nCellKey = 0; int rc; u32 szHdr; /* Size of the header */ u32 typeRowid; /* Serial type of the rowid */ u32 lenRowid; /* Size of the rowid */ Mem m, v; /* Get the size of the index entry. Only indices entries of less ** than 2GiB are support - anything large must be database corruption. ** Any corruption is detected in sqlite3BtreeParseCellPtr(), though, so ** this code can safely assume that nCellKey is 32-bits */ assert( sqlite3BtreeCursorIsValid(pCur) ); nCellKey = sqlite3BtreePayloadSize(pCur); assert( (nCellKey & SQLITE_MAX_U32)==(u64)nCellKey ); /* Read in the complete content of the index entry */ sqlite3VdbeMemInit(&m, db, 0); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCur, (u32)nCellKey, &m); if( rc ){ return rc; } /* The index entry must begin with a header size */ getVarint32NR((u8*)m.z, szHdr); testcase( szHdr==3 ); testcase( szHdr==(u32)m.n ); testcase( szHdr>0x7fffffff ); assert( m.n>=0 ); if( unlikely(szHdr<3 || szHdr>(unsigned)m.n) ){ goto idx_rowid_corruption; } /* The last field of the index should be an integer - the ROWID. ** Verify that the last entry really is an integer. */ getVarint32NR((u8*)&m.z[szHdr-1], typeRowid); testcase( typeRowid==1 ); testcase( typeRowid==2 ); testcase( typeRowid==3 ); testcase( typeRowid==4 ); testcase( typeRowid==5 ); testcase( typeRowid==6 ); testcase( typeRowid==8 ); testcase( typeRowid==9 ); if( unlikely(typeRowid<1 || typeRowid>9 || typeRowid==7) ){ goto idx_rowid_corruption; } lenRowid = sqlite3SmallTypeSizes[typeRowid]; testcase( (u32)m.n==szHdr+lenRowid ); if( unlikely((u32)m.neCurType==CURTYPE_BTREE ); pCur = pC->uc.pCursor; assert( sqlite3BtreeCursorIsValid(pCur) ); nCellKey = sqlite3BtreePayloadSize(pCur); /* nCellKey will always be between 0 and 0xffffffff because of the way ** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */ if( nCellKey<=0 || nCellKey>0x7fffffff ){ *res = 0; return SQLITE_CORRUPT_BKPT; } sqlite3VdbeMemInit(&m, db, 0); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCur, (u32)nCellKey, &m); if( rc ){ return rc; } *res = sqlite3VdbeRecordCompareWithSkip(m.n, m.z, pUnpacked, 0); sqlite3VdbeMemRelease(&m); return SQLITE_OK; } /* ** This routine sets the value to be returned by subsequent calls to ** sqlite3_changes() on the database handle 'db'. */ SQLITE_PRIVATE void sqlite3VdbeSetChanges(sqlite3 *db, i64 nChange){ assert( sqlite3_mutex_held(db->mutex) ); db->nChange = nChange; db->nTotalChange += nChange; } /* ** Set a flag in the vdbe to update the change counter when it is finalised ** or reset. */ SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe *v){ v->changeCntOn = 1; } /* ** Mark every prepared statement associated with a database connection ** as expired. ** ** An expired statement means that recompilation of the statement is ** recommend. Statements expire when things happen that make their ** programs obsolete. Removing user-defined functions or collating ** sequences, or changing an authorization function are the types of ** things that make prepared statements obsolete. ** ** If iCode is 1, then expiration is advisory. The statement should ** be reprepared before being restarted, but if it is already running ** it is allowed to run to completion. ** ** Internally, this function just sets the Vdbe.expired flag on all ** prepared statements. The flag is set to 1 for an immediate expiration ** and set to 2 for an advisory expiration. */ SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3 *db, int iCode){ Vdbe *p; for(p = db->pVdbe; p; p=p->pNext){ p->expired = iCode+1; } } /* ** Return the database associated with the Vdbe. */ SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe *v){ return v->db; } /* ** Return the SQLITE_PREPARE flags for a Vdbe. */ SQLITE_PRIVATE u8 sqlite3VdbePrepareFlags(Vdbe *v){ return v->prepFlags; } /* ** Return a pointer to an sqlite3_value structure containing the value bound ** parameter iVar of VM v. Except, if the value is an SQL NULL, return ** 0 instead. Unless it is NULL, apply affinity aff (one of the SQLITE_AFF_* ** constants) to the value before returning it. ** ** The returned value must be freed by the caller using sqlite3ValueFree(). */ SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe *v, int iVar, u8 aff){ assert( iVar>0 ); if( v ){ Mem *pMem = &v->aVar[iVar-1]; assert( (v->db->flags & SQLITE_EnableQPSG)==0 ); if( 0==(pMem->flags & MEM_Null) ){ sqlite3_value *pRet = sqlite3ValueNew(v->db); if( pRet ){ sqlite3VdbeMemCopy((Mem *)pRet, pMem); sqlite3ValueApplyAffinity(pRet, aff, SQLITE_UTF8); } return pRet; } } return 0; } /* ** Configure SQL variable iVar so that binding a new value to it signals ** to sqlite3_reoptimize() that re-preparing the statement may result ** in a better query plan. */ SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ assert( iVar>0 ); assert( (v->db->flags & SQLITE_EnableQPSG)==0 ); if( iVar>=32 ){ v->expmask |= 0x80000000; }else{ v->expmask |= ((u32)1 << (iVar-1)); } } /* ** Cause a function to throw an error if it was call from OP_PureFunc ** rather than OP_Function. ** ** OP_PureFunc means that the function must be deterministic, and should ** throw an error if it is given inputs that would make it non-deterministic. ** This routine is invoked by date/time functions that use non-deterministic ** features such as 'now'. */ SQLITE_PRIVATE int sqlite3NotPureFunc(sqlite3_context *pCtx){ const VdbeOp *pOp; #ifdef SQLITE_ENABLE_STAT4 if( pCtx->pVdbe==0 ) return 1; #endif pOp = pCtx->pVdbe->aOp + pCtx->iOp; if( pOp->opcode==OP_PureFunc ){ const char *zContext; char *zMsg; if( pOp->p5 & NC_IsCheck ){ zContext = "a CHECK constraint"; }else if( pOp->p5 & NC_GenCol ){ zContext = "a generated column"; }else{ zContext = "an index"; } zMsg = sqlite3_mprintf("non-deterministic use of %s() in %s", pCtx->pFunc->zName, zContext); sqlite3_result_error(pCtx, zMsg, -1); sqlite3_free(zMsg); return 0; } return 1; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Transfer error message text from an sqlite3_vtab.zErrMsg (text stored ** in memory obtained from sqlite3_malloc) into a Vdbe.zErrMsg (text stored ** in memory obtained from sqlite3DbMalloc). */ SQLITE_PRIVATE void sqlite3VtabImportErrmsg(Vdbe *p, sqlite3_vtab *pVtab){ if( pVtab->zErrMsg ){ sqlite3 *db = p->db; sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = sqlite3DbStrDup(db, pVtab->zErrMsg); sqlite3_free(pVtab->zErrMsg); pVtab->zErrMsg = 0; } } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** If the second argument is not NULL, release any allocations associated ** with the memory cells in the p->aMem[] array. Also free the UnpackedRecord ** structure itself, using sqlite3DbFree(). ** ** This function is used to free UnpackedRecord structures allocated by ** the vdbeUnpackRecord() function found in vdbeapi.c. */ static void vdbeFreeUnpacked(sqlite3 *db, int nField, UnpackedRecord *p){ if( p ){ int i; for(i=0; iaMem[i]; if( pMem->zMalloc ) sqlite3VdbeMemRelease(pMem); } sqlite3DbFreeNN(db, p); } } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** Invoke the pre-update hook. If this is an UPDATE or DELETE pre-update call, ** then cursor passed as the second argument should point to the row about ** to be update or deleted. If the application calls sqlite3_preupdate_old(), ** the required value will be read from the row the cursor points to. */ SQLITE_PRIVATE void sqlite3VdbePreUpdateHook( Vdbe *v, /* Vdbe pre-update hook is invoked by */ VdbeCursor *pCsr, /* Cursor to grab old.* values from */ int op, /* SQLITE_INSERT, UPDATE or DELETE */ const char *zDb, /* Database name */ Table *pTab, /* Modified table */ i64 iKey1, /* Initial key value */ int iReg, /* Register for new.* record */ int iBlobWrite ){ sqlite3 *db = v->db; i64 iKey2; PreUpdate preupdate; const char *zTbl = pTab->zName; static const u8 fakeSortOrder = 0; assert( db->pPreUpdate==0 ); memset(&preupdate, 0, sizeof(PreUpdate)); if( HasRowid(pTab)==0 ){ iKey1 = iKey2 = 0; preupdate.pPk = sqlite3PrimaryKeyIndex(pTab); }else{ if( op==SQLITE_UPDATE ){ iKey2 = v->aMem[iReg].u.i; }else{ iKey2 = iKey1; } } assert( pCsr!=0 ); assert( pCsr->eCurType==CURTYPE_BTREE ); assert( pCsr->nField==pTab->nCol || (pCsr->nField==pTab->nCol+1 && op==SQLITE_DELETE && iReg==-1) ); preupdate.v = v; preupdate.pCsr = pCsr; preupdate.op = op; preupdate.iNewReg = iReg; preupdate.keyinfo.db = db; preupdate.keyinfo.enc = ENC(db); preupdate.keyinfo.nKeyField = pTab->nCol; preupdate.keyinfo.aSortFlags = (u8*)&fakeSortOrder; preupdate.iKey1 = iKey1; preupdate.iKey2 = iKey2; preupdate.pTab = pTab; preupdate.iBlobWrite = iBlobWrite; db->pPreUpdate = &preupdate; db->xPreUpdateCallback(db->pPreUpdateArg, db, op, zDb, zTbl, iKey1, iKey2); db->pPreUpdate = 0; sqlite3DbFree(db, preupdate.aRecord); vdbeFreeUnpacked(db, preupdate.keyinfo.nKeyField+1, preupdate.pUnpacked); vdbeFreeUnpacked(db, preupdate.keyinfo.nKeyField+1, preupdate.pNewUnpacked); if( preupdate.aNew ){ int i; for(i=0; inField; i++){ sqlite3VdbeMemRelease(&preupdate.aNew[i]); } sqlite3DbFreeNN(db, preupdate.aNew); } } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ /************** End of vdbeaux.c *********************************************/ /************** Begin file vdbeapi.c *****************************************/ /* ** 2004 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code use to implement APIs that are part of the ** VDBE. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #ifndef SQLITE_OMIT_DEPRECATED /* ** Return TRUE (non-zero) of the statement supplied as an argument needs ** to be recompiled. A statement needs to be recompiled whenever the ** execution environment changes in a way that would alter the program ** that sqlite3_prepare() generates. For example, if new functions or ** collating sequences are registered or if an authorizer function is ** added or changed. */ SQLITE_API int sqlite3_expired(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe*)pStmt; return p==0 || p->expired; } #endif /* ** Check on a Vdbe to make sure it has not been finalized. Log ** an error and return true if it has been finalized (or is otherwise ** invalid). Return false if it is ok. */ static int vdbeSafety(Vdbe *p){ if( p->db==0 ){ sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement"); return 1; }else{ return 0; } } static int vdbeSafetyNotNull(Vdbe *p){ if( p==0 ){ sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement"); return 1; }else{ return vdbeSafety(p); } } #ifndef SQLITE_OMIT_TRACE /* ** Invoke the profile callback. This routine is only called if we already ** know that the profile callback is defined and needs to be invoked. */ static SQLITE_NOINLINE void invokeProfileCallback(sqlite3 *db, Vdbe *p){ sqlite3_int64 iNow; sqlite3_int64 iElapse; assert( p->startTime>0 ); assert( (db->mTrace & (SQLITE_TRACE_PROFILE|SQLITE_TRACE_XPROFILE))!=0 ); assert( db->init.busy==0 ); assert( p->zSql!=0 ); sqlite3OsCurrentTimeInt64(db->pVfs, &iNow); iElapse = (iNow - p->startTime)*1000000; #ifndef SQLITE_OMIT_DEPRECATED if( db->xProfile ){ db->xProfile(db->pProfileArg, p->zSql, iElapse); } #endif if( db->mTrace & SQLITE_TRACE_PROFILE ){ db->trace.xV2(SQLITE_TRACE_PROFILE, db->pTraceArg, p, (void*)&iElapse); } p->startTime = 0; } /* ** The checkProfileCallback(DB,P) macro checks to see if a profile callback ** is needed, and it invokes the callback if it is needed. */ # define checkProfileCallback(DB,P) \ if( ((P)->startTime)>0 ){ invokeProfileCallback(DB,P); } #else # define checkProfileCallback(DB,P) /*no-op*/ #endif /* ** The following routine destroys a virtual machine that is created by ** the sqlite3_compile() routine. The integer returned is an SQLITE_ ** success/failure code that describes the result of executing the virtual ** machine. ** ** This routine sets the error code and string returned by ** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16(). */ SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt){ int rc; if( pStmt==0 ){ /* IMPLEMENTATION-OF: R-57228-12904 Invoking sqlite3_finalize() on a NULL ** pointer is a harmless no-op. */ rc = SQLITE_OK; }else{ Vdbe *v = (Vdbe*)pStmt; sqlite3 *db = v->db; if( vdbeSafety(v) ) return SQLITE_MISUSE_BKPT; sqlite3_mutex_enter(db->mutex); checkProfileCallback(db, v); rc = sqlite3VdbeFinalize(v); rc = sqlite3ApiExit(db, rc); sqlite3LeaveMutexAndCloseZombie(db); } return rc; } /* ** Terminate the current execution of an SQL statement and reset it ** back to its starting state so that it can be reused. A success code from ** the prior execution is returned. ** ** This routine sets the error code and string returned by ** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16(). */ SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt){ int rc; if( pStmt==0 ){ rc = SQLITE_OK; }else{ Vdbe *v = (Vdbe*)pStmt; sqlite3 *db = v->db; sqlite3_mutex_enter(db->mutex); checkProfileCallback(db, v); rc = sqlite3VdbeReset(v); sqlite3VdbeRewind(v); assert( (rc & (db->errMask))==rc ); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); } return rc; } /* ** Set all the parameters in the compiled SQL statement to NULL. */ SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt *pStmt){ int i; int rc = SQLITE_OK; Vdbe *p = (Vdbe*)pStmt; #if SQLITE_THREADSAFE sqlite3_mutex *mutex = ((Vdbe*)pStmt)->db->mutex; #endif sqlite3_mutex_enter(mutex); for(i=0; inVar; i++){ sqlite3VdbeMemRelease(&p->aVar[i]); p->aVar[i].flags = MEM_Null; } assert( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || p->expmask==0 ); if( p->expmask ){ p->expired = 1; } sqlite3_mutex_leave(mutex); return rc; } /**************************** sqlite3_value_ ******************************* ** The following routines extract information from a Mem or sqlite3_value ** structure. */ SQLITE_API const void *sqlite3_value_blob(sqlite3_value *pVal){ Mem *p = (Mem*)pVal; if( p->flags & (MEM_Blob|MEM_Str) ){ if( ExpandBlob(p)!=SQLITE_OK ){ assert( p->flags==MEM_Null && p->z==0 ); return 0; } p->flags |= MEM_Blob; return p->n ? p->z : 0; }else{ return sqlite3_value_text(pVal); } } SQLITE_API int sqlite3_value_bytes(sqlite3_value *pVal){ return sqlite3ValueBytes(pVal, SQLITE_UTF8); } SQLITE_API int sqlite3_value_bytes16(sqlite3_value *pVal){ return sqlite3ValueBytes(pVal, SQLITE_UTF16NATIVE); } SQLITE_API double sqlite3_value_double(sqlite3_value *pVal){ return sqlite3VdbeRealValue((Mem*)pVal); } SQLITE_API int sqlite3_value_int(sqlite3_value *pVal){ return (int)sqlite3VdbeIntValue((Mem*)pVal); } SQLITE_API sqlite_int64 sqlite3_value_int64(sqlite3_value *pVal){ return sqlite3VdbeIntValue((Mem*)pVal); } SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value *pVal){ Mem *pMem = (Mem*)pVal; return ((pMem->flags & MEM_Subtype) ? pMem->eSubtype : 0); } SQLITE_API void *sqlite3_value_pointer(sqlite3_value *pVal, const char *zPType){ Mem *p = (Mem*)pVal; if( (p->flags&(MEM_TypeMask|MEM_Term|MEM_Subtype)) == (MEM_Null|MEM_Term|MEM_Subtype) && zPType!=0 && p->eSubtype=='p' && strcmp(p->u.zPType, zPType)==0 ){ return (void*)p->z; }else{ return 0; } } SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value *pVal){ return (const unsigned char *)sqlite3ValueText(pVal, SQLITE_UTF8); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_value_text16(sqlite3_value* pVal){ return sqlite3ValueText(pVal, SQLITE_UTF16NATIVE); } SQLITE_API const void *sqlite3_value_text16be(sqlite3_value *pVal){ return sqlite3ValueText(pVal, SQLITE_UTF16BE); } SQLITE_API const void *sqlite3_value_text16le(sqlite3_value *pVal){ return sqlite3ValueText(pVal, SQLITE_UTF16LE); } #endif /* SQLITE_OMIT_UTF16 */ /* EVIDENCE-OF: R-12793-43283 Every value in SQLite has one of five ** fundamental datatypes: 64-bit signed integer 64-bit IEEE floating ** point number string BLOB NULL */ SQLITE_API int sqlite3_value_type(sqlite3_value* pVal){ static const u8 aType[] = { SQLITE_BLOB, /* 0x00 (not possible) */ SQLITE_NULL, /* 0x01 NULL */ SQLITE_TEXT, /* 0x02 TEXT */ SQLITE_NULL, /* 0x03 (not possible) */ SQLITE_INTEGER, /* 0x04 INTEGER */ SQLITE_NULL, /* 0x05 (not possible) */ SQLITE_INTEGER, /* 0x06 INTEGER + TEXT */ SQLITE_NULL, /* 0x07 (not possible) */ SQLITE_FLOAT, /* 0x08 FLOAT */ SQLITE_NULL, /* 0x09 (not possible) */ SQLITE_FLOAT, /* 0x0a FLOAT + TEXT */ SQLITE_NULL, /* 0x0b (not possible) */ SQLITE_INTEGER, /* 0x0c (not possible) */ SQLITE_NULL, /* 0x0d (not possible) */ SQLITE_INTEGER, /* 0x0e (not possible) */ SQLITE_NULL, /* 0x0f (not possible) */ SQLITE_BLOB, /* 0x10 BLOB */ SQLITE_NULL, /* 0x11 (not possible) */ SQLITE_TEXT, /* 0x12 (not possible) */ SQLITE_NULL, /* 0x13 (not possible) */ SQLITE_INTEGER, /* 0x14 INTEGER + BLOB */ SQLITE_NULL, /* 0x15 (not possible) */ SQLITE_INTEGER, /* 0x16 (not possible) */ SQLITE_NULL, /* 0x17 (not possible) */ SQLITE_FLOAT, /* 0x18 FLOAT + BLOB */ SQLITE_NULL, /* 0x19 (not possible) */ SQLITE_FLOAT, /* 0x1a (not possible) */ SQLITE_NULL, /* 0x1b (not possible) */ SQLITE_INTEGER, /* 0x1c (not possible) */ SQLITE_NULL, /* 0x1d (not possible) */ SQLITE_INTEGER, /* 0x1e (not possible) */ SQLITE_NULL, /* 0x1f (not possible) */ SQLITE_FLOAT, /* 0x20 INTREAL */ SQLITE_NULL, /* 0x21 (not possible) */ SQLITE_TEXT, /* 0x22 INTREAL + TEXT */ SQLITE_NULL, /* 0x23 (not possible) */ SQLITE_FLOAT, /* 0x24 (not possible) */ SQLITE_NULL, /* 0x25 (not possible) */ SQLITE_FLOAT, /* 0x26 (not possible) */ SQLITE_NULL, /* 0x27 (not possible) */ SQLITE_FLOAT, /* 0x28 (not possible) */ SQLITE_NULL, /* 0x29 (not possible) */ SQLITE_FLOAT, /* 0x2a (not possible) */ SQLITE_NULL, /* 0x2b (not possible) */ SQLITE_FLOAT, /* 0x2c (not possible) */ SQLITE_NULL, /* 0x2d (not possible) */ SQLITE_FLOAT, /* 0x2e (not possible) */ SQLITE_NULL, /* 0x2f (not possible) */ SQLITE_BLOB, /* 0x30 (not possible) */ SQLITE_NULL, /* 0x31 (not possible) */ SQLITE_TEXT, /* 0x32 (not possible) */ SQLITE_NULL, /* 0x33 (not possible) */ SQLITE_FLOAT, /* 0x34 (not possible) */ SQLITE_NULL, /* 0x35 (not possible) */ SQLITE_FLOAT, /* 0x36 (not possible) */ SQLITE_NULL, /* 0x37 (not possible) */ SQLITE_FLOAT, /* 0x38 (not possible) */ SQLITE_NULL, /* 0x39 (not possible) */ SQLITE_FLOAT, /* 0x3a (not possible) */ SQLITE_NULL, /* 0x3b (not possible) */ SQLITE_FLOAT, /* 0x3c (not possible) */ SQLITE_NULL, /* 0x3d (not possible) */ SQLITE_FLOAT, /* 0x3e (not possible) */ SQLITE_NULL, /* 0x3f (not possible) */ }; #ifdef SQLITE_DEBUG { int eType = SQLITE_BLOB; if( pVal->flags & MEM_Null ){ eType = SQLITE_NULL; }else if( pVal->flags & (MEM_Real|MEM_IntReal) ){ eType = SQLITE_FLOAT; }else if( pVal->flags & MEM_Int ){ eType = SQLITE_INTEGER; }else if( pVal->flags & MEM_Str ){ eType = SQLITE_TEXT; } assert( eType == aType[pVal->flags&MEM_AffMask] ); } #endif return aType[pVal->flags&MEM_AffMask]; } /* Return true if a parameter to xUpdate represents an unchanged column */ SQLITE_API int sqlite3_value_nochange(sqlite3_value *pVal){ return (pVal->flags&(MEM_Null|MEM_Zero))==(MEM_Null|MEM_Zero); } /* Return true if a parameter value originated from an sqlite3_bind() */ SQLITE_API int sqlite3_value_frombind(sqlite3_value *pVal){ return (pVal->flags&MEM_FromBind)!=0; } /* Make a copy of an sqlite3_value object */ SQLITE_API sqlite3_value *sqlite3_value_dup(const sqlite3_value *pOrig){ sqlite3_value *pNew; if( pOrig==0 ) return 0; pNew = sqlite3_malloc( sizeof(*pNew) ); if( pNew==0 ) return 0; memset(pNew, 0, sizeof(*pNew)); memcpy(pNew, pOrig, MEMCELLSIZE); pNew->flags &= ~MEM_Dyn; pNew->db = 0; if( pNew->flags&(MEM_Str|MEM_Blob) ){ pNew->flags &= ~(MEM_Static|MEM_Dyn); pNew->flags |= MEM_Ephem; if( sqlite3VdbeMemMakeWriteable(pNew)!=SQLITE_OK ){ sqlite3ValueFree(pNew); pNew = 0; } } return pNew; } /* Destroy an sqlite3_value object previously obtained from ** sqlite3_value_dup(). */ SQLITE_API void sqlite3_value_free(sqlite3_value *pOld){ sqlite3ValueFree(pOld); } /**************************** sqlite3_result_ ******************************* ** The following routines are used by user-defined functions to specify ** the function result. ** ** The setStrOrError() function calls sqlite3VdbeMemSetStr() to store the ** result as a string or blob. Appropriate errors are set if the string/blob ** is too big or if an OOM occurs. ** ** The invokeValueDestructor(P,X) routine invokes destructor function X() ** on value P is not going to be used and need to be destroyed. */ static void setResultStrOrError( sqlite3_context *pCtx, /* Function context */ const char *z, /* String pointer */ int n, /* Bytes in string, or negative */ u8 enc, /* Encoding of z. 0 for BLOBs */ void (*xDel)(void*) /* Destructor function */ ){ int rc = sqlite3VdbeMemSetStr(pCtx->pOut, z, n, enc, xDel); if( rc ){ if( rc==SQLITE_TOOBIG ){ sqlite3_result_error_toobig(pCtx); }else{ /* The only errors possible from sqlite3VdbeMemSetStr are ** SQLITE_TOOBIG and SQLITE_NOMEM */ assert( rc==SQLITE_NOMEM ); sqlite3_result_error_nomem(pCtx); } } } static int invokeValueDestructor( const void *p, /* Value to destroy */ void (*xDel)(void*), /* The destructor */ sqlite3_context *pCtx /* Set a SQLITE_TOOBIG error if no NULL */ ){ assert( xDel!=SQLITE_DYNAMIC ); if( xDel==0 ){ /* noop */ }else if( xDel==SQLITE_TRANSIENT ){ /* noop */ }else{ xDel((void*)p); } sqlite3_result_error_toobig(pCtx); return SQLITE_TOOBIG; } SQLITE_API void sqlite3_result_blob( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( n>=0 ); assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, 0, xDel); } SQLITE_API void sqlite3_result_blob64( sqlite3_context *pCtx, const void *z, sqlite3_uint64 n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); assert( xDel!=SQLITE_DYNAMIC ); if( n>0x7fffffff ){ (void)invokeValueDestructor(z, xDel, pCtx); }else{ setResultStrOrError(pCtx, z, (int)n, 0, xDel); } } SQLITE_API void sqlite3_result_double(sqlite3_context *pCtx, double rVal){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetDouble(pCtx->pOut, rVal); } SQLITE_API void sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); pCtx->isError = SQLITE_ERROR; sqlite3VdbeMemSetStr(pCtx->pOut, z, n, SQLITE_UTF8, SQLITE_TRANSIENT); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API void sqlite3_result_error16(sqlite3_context *pCtx, const void *z, int n){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); pCtx->isError = SQLITE_ERROR; sqlite3VdbeMemSetStr(pCtx->pOut, z, n, SQLITE_UTF16NATIVE, SQLITE_TRANSIENT); } #endif SQLITE_API void sqlite3_result_int(sqlite3_context *pCtx, int iVal){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetInt64(pCtx->pOut, (i64)iVal); } SQLITE_API void sqlite3_result_int64(sqlite3_context *pCtx, i64 iVal){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetInt64(pCtx->pOut, iVal); } SQLITE_API void sqlite3_result_null(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetNull(pCtx->pOut); } SQLITE_API void sqlite3_result_pointer( sqlite3_context *pCtx, void *pPtr, const char *zPType, void (*xDestructor)(void*) ){ Mem *pOut = pCtx->pOut; assert( sqlite3_mutex_held(pOut->db->mutex) ); sqlite3VdbeMemRelease(pOut); pOut->flags = MEM_Null; sqlite3VdbeMemSetPointer(pOut, pPtr, zPType, xDestructor); } SQLITE_API void sqlite3_result_subtype(sqlite3_context *pCtx, unsigned int eSubtype){ Mem *pOut = pCtx->pOut; assert( sqlite3_mutex_held(pOut->db->mutex) ); pOut->eSubtype = eSubtype & 0xff; pOut->flags |= MEM_Subtype; } SQLITE_API void sqlite3_result_text( sqlite3_context *pCtx, const char *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF8, xDel); } SQLITE_API void sqlite3_result_text64( sqlite3_context *pCtx, const char *z, sqlite3_uint64 n, void (*xDel)(void *), unsigned char enc ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); assert( xDel!=SQLITE_DYNAMIC ); if( enc==SQLITE_UTF16 ) enc = SQLITE_UTF16NATIVE; if( n>0x7fffffff ){ (void)invokeValueDestructor(z, xDel, pCtx); }else{ setResultStrOrError(pCtx, z, (int)n, enc, xDel); } } #ifndef SQLITE_OMIT_UTF16 SQLITE_API void sqlite3_result_text16( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF16NATIVE, xDel); } SQLITE_API void sqlite3_result_text16be( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF16BE, xDel); } SQLITE_API void sqlite3_result_text16le( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF16LE, xDel); } #endif /* SQLITE_OMIT_UTF16 */ SQLITE_API void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemCopy(pCtx->pOut, pValue); } SQLITE_API void sqlite3_result_zeroblob(sqlite3_context *pCtx, int n){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetZeroBlob(pCtx->pOut, n); } SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context *pCtx, u64 n){ Mem *pOut = pCtx->pOut; assert( sqlite3_mutex_held(pOut->db->mutex) ); if( n>(u64)pOut->db->aLimit[SQLITE_LIMIT_LENGTH] ){ return SQLITE_TOOBIG; } #ifndef SQLITE_OMIT_INCRBLOB sqlite3VdbeMemSetZeroBlob(pCtx->pOut, (int)n); return SQLITE_OK; #else return sqlite3VdbeMemSetZeroBlob(pCtx->pOut, (int)n); #endif } SQLITE_API void sqlite3_result_error_code(sqlite3_context *pCtx, int errCode){ pCtx->isError = errCode ? errCode : -1; #ifdef SQLITE_DEBUG if( pCtx->pVdbe ) pCtx->pVdbe->rcApp = errCode; #endif if( pCtx->pOut->flags & MEM_Null ){ sqlite3VdbeMemSetStr(pCtx->pOut, sqlite3ErrStr(errCode), -1, SQLITE_UTF8, SQLITE_STATIC); } } /* Force an SQLITE_TOOBIG error. */ SQLITE_API void sqlite3_result_error_toobig(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); pCtx->isError = SQLITE_TOOBIG; sqlite3VdbeMemSetStr(pCtx->pOut, "string or blob too big", -1, SQLITE_UTF8, SQLITE_STATIC); } /* An SQLITE_NOMEM error. */ SQLITE_API void sqlite3_result_error_nomem(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetNull(pCtx->pOut); pCtx->isError = SQLITE_NOMEM_BKPT; sqlite3OomFault(pCtx->pOut->db); } #ifndef SQLITE_UNTESTABLE /* Force the INT64 value currently stored as the result to be ** a MEM_IntReal value. See the SQLITE_TESTCTRL_RESULT_INTREAL ** test-control. */ SQLITE_PRIVATE void sqlite3ResultIntReal(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); if( pCtx->pOut->flags & MEM_Int ){ pCtx->pOut->flags &= ~MEM_Int; pCtx->pOut->flags |= MEM_IntReal; } } #endif /* ** This function is called after a transaction has been committed. It ** invokes callbacks registered with sqlite3_wal_hook() as required. */ static int doWalCallbacks(sqlite3 *db){ int rc = SQLITE_OK; #ifndef SQLITE_OMIT_WAL int i; for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ int nEntry; sqlite3BtreeEnter(pBt); nEntry = sqlite3PagerWalCallback(sqlite3BtreePager(pBt)); sqlite3BtreeLeave(pBt); if( nEntry>0 && db->xWalCallback && rc==SQLITE_OK ){ rc = db->xWalCallback(db->pWalArg, db, db->aDb[i].zDbSName, nEntry); } } } #endif return rc; } /* ** Execute the statement pStmt, either until a row of data is ready, the ** statement is completely executed or an error occurs. ** ** This routine implements the bulk of the logic behind the sqlite_step() ** API. The only thing omitted is the automatic recompile if a ** schema change has occurred. That detail is handled by the ** outer sqlite3_step() wrapper procedure. */ static int sqlite3Step(Vdbe *p){ sqlite3 *db; int rc; assert(p); if( p->iVdbeMagic!=VDBE_MAGIC_RUN ){ /* We used to require that sqlite3_reset() be called before retrying ** sqlite3_step() after any error or after SQLITE_DONE. But beginning ** with version 3.7.0, we changed this so that sqlite3_reset() would ** be called automatically instead of throwing the SQLITE_MISUSE error. ** This "automatic-reset" change is not technically an incompatibility, ** since any application that receives an SQLITE_MISUSE is broken by ** definition. ** ** Nevertheless, some published applications that were originally written ** for version 3.6.23 or earlier do in fact depend on SQLITE_MISUSE ** returns, and those were broken by the automatic-reset change. As a ** a work-around, the SQLITE_OMIT_AUTORESET compile-time restores the ** legacy behavior of returning SQLITE_MISUSE for cases where the ** previous sqlite3_step() returned something other than a SQLITE_LOCKED ** or SQLITE_BUSY error. */ #ifdef SQLITE_OMIT_AUTORESET if( (rc = p->rc&0xff)==SQLITE_BUSY || rc==SQLITE_LOCKED ){ sqlite3_reset((sqlite3_stmt*)p); }else{ return SQLITE_MISUSE_BKPT; } #else sqlite3_reset((sqlite3_stmt*)p); #endif } /* Check that malloc() has not failed. If it has, return early. */ db = p->db; if( db->mallocFailed ){ p->rc = SQLITE_NOMEM; return SQLITE_NOMEM_BKPT; } if( p->pc<0 && p->expired ){ p->rc = SQLITE_SCHEMA; rc = SQLITE_ERROR; if( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 ){ /* If this statement was prepared using saved SQL and an ** error has occurred, then return the error code in p->rc to the ** caller. Set the error code in the database handle to the same value. */ rc = sqlite3VdbeTransferError(p); } goto end_of_step; } if( p->pc<0 ){ /* If there are no other statements currently running, then ** reset the interrupt flag. This prevents a call to sqlite3_interrupt ** from interrupting a statement that has not yet started. */ if( db->nVdbeActive==0 ){ AtomicStore(&db->u1.isInterrupted, 0); } assert( db->nVdbeWrite>0 || db->autoCommit==0 || (db->nDeferredCons==0 && db->nDeferredImmCons==0) ); #ifndef SQLITE_OMIT_TRACE if( (db->mTrace & (SQLITE_TRACE_PROFILE|SQLITE_TRACE_XPROFILE))!=0 && !db->init.busy && p->zSql ){ sqlite3OsCurrentTimeInt64(db->pVfs, &p->startTime); }else{ assert( p->startTime==0 ); } #endif db->nVdbeActive++; if( p->readOnly==0 ) db->nVdbeWrite++; if( p->bIsReader ) db->nVdbeRead++; p->pc = 0; } #ifdef SQLITE_DEBUG p->rcApp = SQLITE_OK; #endif #ifndef SQLITE_OMIT_EXPLAIN if( p->explain ){ rc = sqlite3VdbeList(p); }else #endif /* SQLITE_OMIT_EXPLAIN */ { db->nVdbeExec++; rc = sqlite3VdbeExec(p); db->nVdbeExec--; } if( rc!=SQLITE_ROW ){ #ifndef SQLITE_OMIT_TRACE /* If the statement completed successfully, invoke the profile callback */ checkProfileCallback(db, p); #endif if( rc==SQLITE_DONE && db->autoCommit ){ assert( p->rc==SQLITE_OK ); p->rc = doWalCallbacks(db); if( p->rc!=SQLITE_OK ){ rc = SQLITE_ERROR; } }else if( rc!=SQLITE_DONE && (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 ){ /* If this statement was prepared using saved SQL and an ** error has occurred, then return the error code in p->rc to the ** caller. Set the error code in the database handle to the same value. */ rc = sqlite3VdbeTransferError(p); } } db->errCode = rc; if( SQLITE_NOMEM==sqlite3ApiExit(p->db, p->rc) ){ p->rc = SQLITE_NOMEM_BKPT; if( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 ) rc = p->rc; } end_of_step: /* There are only a limited number of result codes allowed from the ** statements prepared using the legacy sqlite3_prepare() interface */ assert( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR || (rc&0xff)==SQLITE_BUSY || rc==SQLITE_MISUSE ); return (rc&db->errMask); } /* ** This is the top-level implementation of sqlite3_step(). Call ** sqlite3Step() to do most of the work. If a schema error occurs, ** call sqlite3Reprepare() and try again. */ SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ int rc = SQLITE_OK; /* Result from sqlite3Step() */ Vdbe *v = (Vdbe*)pStmt; /* the prepared statement */ int cnt = 0; /* Counter to prevent infinite loop of reprepares */ sqlite3 *db; /* The database connection */ if( vdbeSafetyNotNull(v) ){ return SQLITE_MISUSE_BKPT; } db = v->db; sqlite3_mutex_enter(db->mutex); v->doingRerun = 0; while( (rc = sqlite3Step(v))==SQLITE_SCHEMA && cnt++ < SQLITE_MAX_SCHEMA_RETRY ){ int savedPc = v->pc; rc = sqlite3Reprepare(v); if( rc!=SQLITE_OK ){ /* This case occurs after failing to recompile an sql statement. ** The error message from the SQL compiler has already been loaded ** into the database handle. This block copies the error message ** from the database handle into the statement and sets the statement ** program counter to 0 to ensure that when the statement is ** finalized or reset the parser error message is available via ** sqlite3_errmsg() and sqlite3_errcode(). */ const char *zErr = (const char *)sqlite3_value_text(db->pErr); sqlite3DbFree(db, v->zErrMsg); if( !db->mallocFailed ){ v->zErrMsg = sqlite3DbStrDup(db, zErr); v->rc = rc = sqlite3ApiExit(db, rc); } else { v->zErrMsg = 0; v->rc = rc = SQLITE_NOMEM_BKPT; } break; } sqlite3_reset(pStmt); if( savedPc>=0 ) v->doingRerun = 1; assert( v->expired==0 ); } sqlite3_mutex_leave(db->mutex); return rc; } /* ** Extract the user data from a sqlite3_context structure and return a ** pointer to it. */ SQLITE_API void *sqlite3_user_data(sqlite3_context *p){ assert( p && p->pFunc ); return p->pFunc->pUserData; } /* ** Extract the user data from a sqlite3_context structure and return a ** pointer to it. ** ** IMPLEMENTATION-OF: R-46798-50301 The sqlite3_context_db_handle() interface ** returns a copy of the pointer to the database connection (the 1st ** parameter) of the sqlite3_create_function() and ** sqlite3_create_function16() routines that originally registered the ** application defined function. */ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context *p){ assert( p && p->pOut ); return p->pOut->db; } /* ** If this routine is invoked from within an xColumn method of a virtual ** table, then it returns true if and only if the the call is during an ** UPDATE operation and the value of the column will not be modified ** by the UPDATE. ** ** If this routine is called from any context other than within the ** xColumn method of a virtual table, then the return value is meaningless ** and arbitrary. ** ** Virtual table implements might use this routine to optimize their ** performance by substituting a NULL result, or some other light-weight ** value, as a signal to the xUpdate routine that the column is unchanged. */ SQLITE_API int sqlite3_vtab_nochange(sqlite3_context *p){ assert( p ); return sqlite3_value_nochange(p->pOut); } /* ** Implementation of sqlite3_vtab_in_first() (if bNext==0) and ** sqlite3_vtab_in_next() (if bNext!=0). */ static int valueFromValueList( sqlite3_value *pVal, /* Pointer to the ValueList object */ sqlite3_value **ppOut, /* Store the next value from the list here */ int bNext /* 1 for _next(). 0 for _first() */ ){ int rc; ValueList *pRhs; *ppOut = 0; if( pVal==0 ) return SQLITE_MISUSE; pRhs = (ValueList*)sqlite3_value_pointer(pVal, "ValueList"); if( pRhs==0 ) return SQLITE_MISUSE; if( bNext ){ rc = sqlite3BtreeNext(pRhs->pCsr, 0); }else{ int dummy = 0; rc = sqlite3BtreeFirst(pRhs->pCsr, &dummy); assert( rc==SQLITE_OK || sqlite3BtreeEof(pRhs->pCsr) ); if( sqlite3BtreeEof(pRhs->pCsr) ) rc = SQLITE_DONE; } if( rc==SQLITE_OK ){ u32 sz; /* Size of current row in bytes */ Mem sMem; /* Raw content of current row */ memset(&sMem, 0, sizeof(sMem)); sz = sqlite3BtreePayloadSize(pRhs->pCsr); rc = sqlite3VdbeMemFromBtreeZeroOffset(pRhs->pCsr,(int)sz,&sMem); if( rc==SQLITE_OK ){ u8 *zBuf = (u8*)sMem.z; u32 iSerial; sqlite3_value *pOut = pRhs->pOut; int iOff = 1 + getVarint32(&zBuf[1], iSerial); sqlite3VdbeSerialGet(&zBuf[iOff], iSerial, pOut); pOut->enc = ENC(pOut->db); if( (pOut->flags & MEM_Ephem)!=0 && sqlite3VdbeMemMakeWriteable(pOut) ){ rc = SQLITE_NOMEM; }else{ *ppOut = pOut; } } sqlite3VdbeMemRelease(&sMem); } return rc; } /* ** Set the iterator value pVal to point to the first value in the set. ** Set (*ppOut) to point to this value before returning. */ SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut){ return valueFromValueList(pVal, ppOut, 0); } /* ** Set the iterator value pVal to point to the next value in the set. ** Set (*ppOut) to point to this value before returning. */ SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut){ return valueFromValueList(pVal, ppOut, 1); } /* ** Return the current time for a statement. If the current time ** is requested more than once within the same run of a single prepared ** statement, the exact same time is returned for each invocation regardless ** of the amount of time that elapses between invocations. In other words, ** the time returned is always the time of the first call. */ SQLITE_PRIVATE sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context *p){ int rc; #ifndef SQLITE_ENABLE_STAT4 sqlite3_int64 *piTime = &p->pVdbe->iCurrentTime; assert( p->pVdbe!=0 ); #else sqlite3_int64 iTime = 0; sqlite3_int64 *piTime = p->pVdbe!=0 ? &p->pVdbe->iCurrentTime : &iTime; #endif if( *piTime==0 ){ rc = sqlite3OsCurrentTimeInt64(p->pOut->db->pVfs, piTime); if( rc ) *piTime = 0; } return *piTime; } /* ** Create a new aggregate context for p and return a pointer to ** its pMem->z element. */ static SQLITE_NOINLINE void *createAggContext(sqlite3_context *p, int nByte){ Mem *pMem = p->pMem; assert( (pMem->flags & MEM_Agg)==0 ); if( nByte<=0 ){ sqlite3VdbeMemSetNull(pMem); pMem->z = 0; }else{ sqlite3VdbeMemClearAndResize(pMem, nByte); pMem->flags = MEM_Agg; pMem->u.pDef = p->pFunc; if( pMem->z ){ memset(pMem->z, 0, nByte); } } return (void*)pMem->z; } /* ** Allocate or return the aggregate context for a user function. A new ** context is allocated on the first call. Subsequent calls return the ** same context that was returned on prior calls. */ SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ assert( p && p->pFunc && p->pFunc->xFinalize ); assert( sqlite3_mutex_held(p->pOut->db->mutex) ); testcase( nByte<0 ); if( (p->pMem->flags & MEM_Agg)==0 ){ return createAggContext(p, nByte); }else{ return (void*)p->pMem->z; } } /* ** Return the auxiliary data pointer, if any, for the iArg'th argument to ** the user-function defined by pCtx. ** ** The left-most argument is 0. ** ** Undocumented behavior: If iArg is negative then access a cache of ** auxiliary data pointers that is available to all functions within a ** single prepared statement. The iArg values must match. */ SQLITE_API void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){ AuxData *pAuxData; assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); #if SQLITE_ENABLE_STAT4 if( pCtx->pVdbe==0 ) return 0; #else assert( pCtx->pVdbe!=0 ); #endif for(pAuxData=pCtx->pVdbe->pAuxData; pAuxData; pAuxData=pAuxData->pNextAux){ if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){ return pAuxData->pAux; } } return 0; } /* ** Set the auxiliary data pointer and delete function, for the iArg'th ** argument to the user-function defined by pCtx. Any previous value is ** deleted by calling the delete function specified when it was set. ** ** The left-most argument is 0. ** ** Undocumented behavior: If iArg is negative then make the data available ** to all functions within the current prepared statement using iArg as an ** access code. */ SQLITE_API void sqlite3_set_auxdata( sqlite3_context *pCtx, int iArg, void *pAux, void (*xDelete)(void*) ){ AuxData *pAuxData; Vdbe *pVdbe = pCtx->pVdbe; assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); #ifdef SQLITE_ENABLE_STAT4 if( pVdbe==0 ) goto failed; #else assert( pVdbe!=0 ); #endif for(pAuxData=pVdbe->pAuxData; pAuxData; pAuxData=pAuxData->pNextAux){ if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){ break; } } if( pAuxData==0 ){ pAuxData = sqlite3DbMallocZero(pVdbe->db, sizeof(AuxData)); if( !pAuxData ) goto failed; pAuxData->iAuxOp = pCtx->iOp; pAuxData->iAuxArg = iArg; pAuxData->pNextAux = pVdbe->pAuxData; pVdbe->pAuxData = pAuxData; if( pCtx->isError==0 ) pCtx->isError = -1; }else if( pAuxData->xDeleteAux ){ pAuxData->xDeleteAux(pAuxData->pAux); } pAuxData->pAux = pAux; pAuxData->xDeleteAux = xDelete; return; failed: if( xDelete ){ xDelete(pAux); } } #ifndef SQLITE_OMIT_DEPRECATED /* ** Return the number of times the Step function of an aggregate has been ** called. ** ** This function is deprecated. Do not use it for new code. It is ** provide only to avoid breaking legacy code. New aggregate function ** implementations should keep their own counts within their aggregate ** context. */ SQLITE_API int sqlite3_aggregate_count(sqlite3_context *p){ assert( p && p->pMem && p->pFunc && p->pFunc->xFinalize ); return p->pMem->n; } #endif /* ** Return the number of columns in the result set for the statement pStmt. */ SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt){ Vdbe *pVm = (Vdbe *)pStmt; return pVm ? pVm->nResColumn : 0; } /* ** Return the number of values available from the current row of the ** currently executing statement pStmt. */ SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){ Vdbe *pVm = (Vdbe *)pStmt; if( pVm==0 || pVm->pResultSet==0 ) return 0; return pVm->nResColumn; } /* ** Return a pointer to static memory containing an SQL NULL value. */ static const Mem *columnNullValue(void){ /* Even though the Mem structure contains an element ** of type i64, on certain architectures (x86) with certain compiler ** switches (-Os), gcc may align this Mem object on a 4-byte boundary ** instead of an 8-byte one. This all works fine, except that when ** running with SQLITE_DEBUG defined the SQLite code sometimes assert()s ** that a Mem structure is located on an 8-byte boundary. To prevent ** these assert()s from failing, when building with SQLITE_DEBUG defined ** using gcc, we force nullMem to be 8-byte aligned using the magical ** __attribute__((aligned(8))) macro. */ static const Mem nullMem #if defined(SQLITE_DEBUG) && defined(__GNUC__) __attribute__((aligned(8))) #endif = { /* .u = */ {0}, /* .flags = */ (u16)MEM_Null, /* .enc = */ (u8)0, /* .eSubtype = */ (u8)0, /* .n = */ (int)0, /* .z = */ (char*)0, /* .zMalloc = */ (char*)0, /* .szMalloc = */ (int)0, /* .uTemp = */ (u32)0, /* .db = */ (sqlite3*)0, /* .xDel = */ (void(*)(void*))0, #ifdef SQLITE_DEBUG /* .pScopyFrom = */ (Mem*)0, /* .mScopyFlags= */ 0, #endif }; return &nullMem; } /* ** Check to see if column iCol of the given statement is valid. If ** it is, return a pointer to the Mem for the value of that column. ** If iCol is not valid, return a pointer to a Mem which has a value ** of NULL. */ static Mem *columnMem(sqlite3_stmt *pStmt, int i){ Vdbe *pVm; Mem *pOut; pVm = (Vdbe *)pStmt; if( pVm==0 ) return (Mem*)columnNullValue(); assert( pVm->db ); sqlite3_mutex_enter(pVm->db->mutex); if( pVm->pResultSet!=0 && inResColumn && i>=0 ){ pOut = &pVm->pResultSet[i]; }else{ sqlite3Error(pVm->db, SQLITE_RANGE); pOut = (Mem*)columnNullValue(); } return pOut; } /* ** This function is called after invoking an sqlite3_value_XXX function on a ** column value (i.e. a value returned by evaluating an SQL expression in the ** select list of a SELECT statement) that may cause a malloc() failure. If ** malloc() has failed, the threads mallocFailed flag is cleared and the result ** code of statement pStmt set to SQLITE_NOMEM. ** ** Specifically, this is called from within: ** ** sqlite3_column_int() ** sqlite3_column_int64() ** sqlite3_column_text() ** sqlite3_column_text16() ** sqlite3_column_real() ** sqlite3_column_bytes() ** sqlite3_column_bytes16() ** sqiite3_column_blob() */ static void columnMallocFailure(sqlite3_stmt *pStmt) { /* If malloc() failed during an encoding conversion within an ** sqlite3_column_XXX API, then set the return code of the statement to ** SQLITE_NOMEM. The next call to _step() (if any) will return SQLITE_ERROR ** and _finalize() will return NOMEM. */ Vdbe *p = (Vdbe *)pStmt; if( p ){ assert( p->db!=0 ); assert( sqlite3_mutex_held(p->db->mutex) ); p->rc = sqlite3ApiExit(p->db, p->rc); sqlite3_mutex_leave(p->db->mutex); } } /**************************** sqlite3_column_ ******************************* ** The following routines are used to access elements of the current row ** in the result set. */ SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt *pStmt, int i){ const void *val; val = sqlite3_value_blob( columnMem(pStmt,i) ); /* Even though there is no encoding conversion, value_blob() might ** need to call malloc() to expand the result of a zeroblob() ** expression. */ columnMallocFailure(pStmt); return val; } SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){ int val = sqlite3_value_bytes( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt *pStmt, int i){ int val = sqlite3_value_bytes16( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API double sqlite3_column_double(sqlite3_stmt *pStmt, int i){ double val = sqlite3_value_double( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API int sqlite3_column_int(sqlite3_stmt *pStmt, int i){ int val = sqlite3_value_int( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API sqlite_int64 sqlite3_column_int64(sqlite3_stmt *pStmt, int i){ sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){ const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){ Mem *pOut = columnMem(pStmt, i); if( pOut->flags&MEM_Static ){ pOut->flags &= ~MEM_Static; pOut->flags |= MEM_Ephem; } columnMallocFailure(pStmt); return (sqlite3_value *)pOut; } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt *pStmt, int i){ const void *val = sqlite3_value_text16( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } #endif /* SQLITE_OMIT_UTF16 */ SQLITE_API int sqlite3_column_type(sqlite3_stmt *pStmt, int i){ int iType = sqlite3_value_type( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return iType; } /* ** Convert the N-th element of pStmt->pColName[] into a string using ** xFunc() then return that string. If N is out of range, return 0. ** ** There are up to 5 names for each column. useType determines which ** name is returned. Here are the names: ** ** 0 The column name as it should be displayed for output ** 1 The datatype name for the column ** 2 The name of the database that the column derives from ** 3 The name of the table that the column derives from ** 4 The name of the table column that the result column derives from ** ** If the result is not a simple column reference (if it is an expression ** or a constant) then useTypes 2, 3, and 4 return NULL. */ static const void *columnName( sqlite3_stmt *pStmt, /* The statement */ int N, /* Which column to get the name for */ int useUtf16, /* True to return the name as UTF16 */ int useType /* What type of name */ ){ const void *ret; Vdbe *p; int n; sqlite3 *db; #ifdef SQLITE_ENABLE_API_ARMOR if( pStmt==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif ret = 0; p = (Vdbe *)pStmt; db = p->db; assert( db!=0 ); n = sqlite3_column_count(pStmt); if( N=0 ){ N += useType*n; sqlite3_mutex_enter(db->mutex); assert( db->mallocFailed==0 ); #ifndef SQLITE_OMIT_UTF16 if( useUtf16 ){ ret = sqlite3_value_text16((sqlite3_value*)&p->aColName[N]); }else #endif { ret = sqlite3_value_text((sqlite3_value*)&p->aColName[N]); } /* A malloc may have failed inside of the _text() call. If this ** is the case, clear the mallocFailed flag and return NULL. */ if( db->mallocFailed ){ sqlite3OomClear(db); ret = 0; } sqlite3_mutex_leave(db->mutex); } return ret; } /* ** Return the name of the Nth column of the result set returned by SQL ** statement pStmt. */ SQLITE_API const char *sqlite3_column_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_NAME); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_NAME); } #endif /* ** Constraint: If you have ENABLE_COLUMN_METADATA then you must ** not define OMIT_DECLTYPE. */ #if defined(SQLITE_OMIT_DECLTYPE) && defined(SQLITE_ENABLE_COLUMN_METADATA) # error "Must not define both SQLITE_OMIT_DECLTYPE \ and SQLITE_ENABLE_COLUMN_METADATA" #endif #ifndef SQLITE_OMIT_DECLTYPE /* ** Return the column declaration type (if applicable) of the 'i'th column ** of the result set of SQL statement pStmt. */ SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_DECLTYPE); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_DECLTYPE); } #endif /* SQLITE_OMIT_UTF16 */ #endif /* SQLITE_OMIT_DECLTYPE */ #ifdef SQLITE_ENABLE_COLUMN_METADATA /* ** Return the name of the database from which a result column derives. ** NULL is returned if the result column is an expression or constant or ** anything else which is not an unambiguous reference to a database column. */ SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_DATABASE); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_DATABASE); } #endif /* SQLITE_OMIT_UTF16 */ /* ** Return the name of the table from which a result column derives. ** NULL is returned if the result column is an expression or constant or ** anything else which is not an unambiguous reference to a database column. */ SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_TABLE); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_TABLE); } #endif /* SQLITE_OMIT_UTF16 */ /* ** Return the name of the table column from which a result column derives. ** NULL is returned if the result column is an expression or constant or ** anything else which is not an unambiguous reference to a database column. */ SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_COLUMN); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_COLUMN); } #endif /* SQLITE_OMIT_UTF16 */ #endif /* SQLITE_ENABLE_COLUMN_METADATA */ /******************************* sqlite3_bind_ *************************** ** ** Routines used to attach values to wildcards in a compiled SQL statement. */ /* ** Unbind the value bound to variable i in virtual machine p. This is the ** the same as binding a NULL value to the column. If the "i" parameter is ** out of range, then SQLITE_RANGE is returned. Othewise SQLITE_OK. ** ** A successful evaluation of this routine acquires the mutex on p. ** the mutex is released if any kind of error occurs. ** ** The error code stored in database p->db is overwritten with the return ** value in any case. */ static int vdbeUnbind(Vdbe *p, int i){ Mem *pVar; if( vdbeSafetyNotNull(p) ){ return SQLITE_MISUSE_BKPT; } sqlite3_mutex_enter(p->db->mutex); if( p->iVdbeMagic!=VDBE_MAGIC_RUN || p->pc>=0 ){ sqlite3Error(p->db, SQLITE_MISUSE); sqlite3_mutex_leave(p->db->mutex); sqlite3_log(SQLITE_MISUSE, "bind on a busy prepared statement: [%s]", p->zSql); return SQLITE_MISUSE_BKPT; } if( i<1 || i>p->nVar ){ sqlite3Error(p->db, SQLITE_RANGE); sqlite3_mutex_leave(p->db->mutex); return SQLITE_RANGE; } i--; pVar = &p->aVar[i]; sqlite3VdbeMemRelease(pVar); pVar->flags = MEM_Null; p->db->errCode = SQLITE_OK; /* If the bit corresponding to this variable in Vdbe.expmask is set, then ** binding a new value to this variable invalidates the current query plan. ** ** IMPLEMENTATION-OF: R-57496-20354 If the specific value bound to a host ** parameter in the WHERE clause might influence the choice of query plan ** for a statement, then the statement will be automatically recompiled, ** as if there had been a schema change, on the first sqlite3_step() call ** following any change to the bindings of that parameter. */ assert( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || p->expmask==0 ); if( p->expmask!=0 && (p->expmask & (i>=31 ? 0x80000000 : (u32)1<expired = 1; } return SQLITE_OK; } /* ** Bind a text or BLOB value. */ static int bindText( sqlite3_stmt *pStmt, /* The statement to bind against */ int i, /* Index of the parameter to bind */ const void *zData, /* Pointer to the data to be bound */ i64 nData, /* Number of bytes of data to be bound */ void (*xDel)(void*), /* Destructor for the data */ u8 encoding /* Encoding for the data */ ){ Vdbe *p = (Vdbe *)pStmt; Mem *pVar; int rc; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ if( zData!=0 ){ pVar = &p->aVar[i-1]; rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel); if( rc==SQLITE_OK && encoding!=0 ){ rc = sqlite3VdbeChangeEncoding(pVar, ENC(p->db)); } if( rc ){ sqlite3Error(p->db, rc); rc = sqlite3ApiExit(p->db, rc); } } sqlite3_mutex_leave(p->db->mutex); }else if( xDel!=SQLITE_STATIC && xDel!=SQLITE_TRANSIENT ){ xDel((void*)zData); } return rc; } /* ** Bind a blob value to an SQL statement variable. */ SQLITE_API int sqlite3_bind_blob( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*) ){ #ifdef SQLITE_ENABLE_API_ARMOR if( nData<0 ) return SQLITE_MISUSE_BKPT; #endif return bindText(pStmt, i, zData, nData, xDel, 0); } SQLITE_API int sqlite3_bind_blob64( sqlite3_stmt *pStmt, int i, const void *zData, sqlite3_uint64 nData, void (*xDel)(void*) ){ assert( xDel!=SQLITE_DYNAMIC ); return bindText(pStmt, i, zData, nData, xDel, 0); } SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){ int rc; Vdbe *p = (Vdbe *)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue); sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){ return sqlite3_bind_int64(p, i, (i64)iValue); } SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){ int rc; Vdbe *p = (Vdbe *)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue); sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_null(sqlite3_stmt *pStmt, int i){ int rc; Vdbe *p = (Vdbe*)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_pointer( sqlite3_stmt *pStmt, int i, void *pPtr, const char *zPTtype, void (*xDestructor)(void*) ){ int rc; Vdbe *p = (Vdbe*)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetPointer(&p->aVar[i-1], pPtr, zPTtype, xDestructor); sqlite3_mutex_leave(p->db->mutex); }else if( xDestructor ){ xDestructor(pPtr); } return rc; } SQLITE_API int sqlite3_bind_text( sqlite3_stmt *pStmt, int i, const char *zData, int nData, void (*xDel)(void*) ){ return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8); } SQLITE_API int sqlite3_bind_text64( sqlite3_stmt *pStmt, int i, const char *zData, sqlite3_uint64 nData, void (*xDel)(void*), unsigned char enc ){ assert( xDel!=SQLITE_DYNAMIC ); if( enc==SQLITE_UTF16 ) enc = SQLITE_UTF16NATIVE; return bindText(pStmt, i, zData, nData, xDel, enc); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API int sqlite3_bind_text16( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*) ){ return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE); } #endif /* SQLITE_OMIT_UTF16 */ SQLITE_API int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){ int rc; switch( sqlite3_value_type((sqlite3_value*)pValue) ){ case SQLITE_INTEGER: { rc = sqlite3_bind_int64(pStmt, i, pValue->u.i); break; } case SQLITE_FLOAT: { assert( pValue->flags & (MEM_Real|MEM_IntReal) ); rc = sqlite3_bind_double(pStmt, i, (pValue->flags & MEM_Real) ? pValue->u.r : (double)pValue->u.i ); break; } case SQLITE_BLOB: { if( pValue->flags & MEM_Zero ){ rc = sqlite3_bind_zeroblob(pStmt, i, pValue->u.nZero); }else{ rc = sqlite3_bind_blob(pStmt, i, pValue->z, pValue->n,SQLITE_TRANSIENT); } break; } case SQLITE_TEXT: { rc = bindText(pStmt,i, pValue->z, pValue->n, SQLITE_TRANSIENT, pValue->enc); break; } default: { rc = sqlite3_bind_null(pStmt, i); break; } } return rc; } SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt *pStmt, int i, int n){ int rc; Vdbe *p = (Vdbe *)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ #ifndef SQLITE_OMIT_INCRBLOB sqlite3VdbeMemSetZeroBlob(&p->aVar[i-1], n); #else rc = sqlite3VdbeMemSetZeroBlob(&p->aVar[i-1], n); #endif sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_zeroblob64(sqlite3_stmt *pStmt, int i, sqlite3_uint64 n){ int rc; Vdbe *p = (Vdbe *)pStmt; sqlite3_mutex_enter(p->db->mutex); if( n>(u64)p->db->aLimit[SQLITE_LIMIT_LENGTH] ){ rc = SQLITE_TOOBIG; }else{ assert( (n & 0x7FFFFFFF)==n ); rc = sqlite3_bind_zeroblob(pStmt, i, n); } rc = sqlite3ApiExit(p->db, rc); sqlite3_mutex_leave(p->db->mutex); return rc; } /* ** Return the number of wildcards that can be potentially bound to. ** This routine is added to support DBD::SQLite. */ SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe*)pStmt; return p ? p->nVar : 0; } /* ** Return the name of a wildcard parameter. Return NULL if the index ** is out of range or if the wildcard is unnamed. ** ** The result is always UTF-8. */ SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt *pStmt, int i){ Vdbe *p = (Vdbe*)pStmt; if( p==0 ) return 0; return sqlite3VListNumToName(p->pVList, i); } /* ** Given a wildcard parameter name, return the index of the variable ** with that name. If there is no variable with the given name, ** return 0. */ SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName){ if( p==0 || zName==0 ) return 0; return sqlite3VListNameToNum(p->pVList, zName, nName); } SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName){ return sqlite3VdbeParameterIndex((Vdbe*)pStmt, zName, sqlite3Strlen30(zName)); } /* ** Transfer all bindings from the first statement over to the second. */ SQLITE_PRIVATE int sqlite3TransferBindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){ Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe *pTo = (Vdbe*)pToStmt; int i; assert( pTo->db==pFrom->db ); assert( pTo->nVar==pFrom->nVar ); sqlite3_mutex_enter(pTo->db->mutex); for(i=0; inVar; i++){ sqlite3VdbeMemMove(&pTo->aVar[i], &pFrom->aVar[i]); } sqlite3_mutex_leave(pTo->db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Deprecated external interface. Internal/core SQLite code ** should call sqlite3TransferBindings. ** ** It is misuse to call this routine with statements from different ** database connections. But as this is a deprecated interface, we ** will not bother to check for that condition. ** ** If the two statements contain a different number of bindings, then ** an SQLITE_ERROR is returned. Nothing else can go wrong, so otherwise ** SQLITE_OK is returned. */ SQLITE_API int sqlite3_transfer_bindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){ Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe *pTo = (Vdbe*)pToStmt; if( pFrom->nVar!=pTo->nVar ){ return SQLITE_ERROR; } assert( (pTo->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || pTo->expmask==0 ); if( pTo->expmask ){ pTo->expired = 1; } assert( (pFrom->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || pFrom->expmask==0 ); if( pFrom->expmask ){ pFrom->expired = 1; } return sqlite3TransferBindings(pFromStmt, pToStmt); } #endif /* ** Return the sqlite3* database handle to which the prepared statement given ** in the argument belongs. This is the same database handle that was ** the first argument to the sqlite3_prepare() that was used to create ** the statement in the first place. */ SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt *pStmt){ return pStmt ? ((Vdbe*)pStmt)->db : 0; } /* ** Return true if the prepared statement is guaranteed to not modify the ** database. */ SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt){ return pStmt ? ((Vdbe*)pStmt)->readOnly : 1; } /* ** Return 1 if the statement is an EXPLAIN and return 2 if the ** statement is an EXPLAIN QUERY PLAN */ SQLITE_API int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt){ return pStmt ? ((Vdbe*)pStmt)->explain : 0; } /* ** Return true if the prepared statement is in need of being reset. */ SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt *pStmt){ Vdbe *v = (Vdbe*)pStmt; return v!=0 && v->iVdbeMagic==VDBE_MAGIC_RUN && v->pc>=0; } /* ** Return a pointer to the next prepared statement after pStmt associated ** with database connection pDb. If pStmt is NULL, return the first ** prepared statement for the database connection. Return NULL if there ** are no more. */ SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt){ sqlite3_stmt *pNext; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(pDb) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(pDb->mutex); if( pStmt==0 ){ pNext = (sqlite3_stmt*)pDb->pVdbe; }else{ pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext; } sqlite3_mutex_leave(pDb->mutex); return pNext; } /* ** Return the value of a status counter for a prepared statement */ SQLITE_API int sqlite3_stmt_status(sqlite3_stmt *pStmt, int op, int resetFlag){ Vdbe *pVdbe = (Vdbe*)pStmt; u32 v; #ifdef SQLITE_ENABLE_API_ARMOR if( !pStmt || (op!=SQLITE_STMTSTATUS_MEMUSED && (op<0||op>=ArraySize(pVdbe->aCounter))) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif if( op==SQLITE_STMTSTATUS_MEMUSED ){ sqlite3 *db = pVdbe->db; sqlite3_mutex_enter(db->mutex); v = 0; db->pnBytesFreed = (int*)&v; sqlite3VdbeClearObject(db, pVdbe); sqlite3DbFree(db, pVdbe); db->pnBytesFreed = 0; sqlite3_mutex_leave(db->mutex); }else{ v = pVdbe->aCounter[op]; if( resetFlag ) pVdbe->aCounter[op] = 0; } return (int)v; } /* ** Return the SQL associated with a prepared statement */ SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe *)pStmt; return p ? p->zSql : 0; } /* ** Return the SQL associated with a prepared statement with ** bound parameters expanded. Space to hold the returned string is ** obtained from sqlite3_malloc(). The caller is responsible for ** freeing the returned string by passing it to sqlite3_free(). ** ** The SQLITE_TRACE_SIZE_LIMIT puts an upper bound on the size of ** expanded bound parameters. */ SQLITE_API char *sqlite3_expanded_sql(sqlite3_stmt *pStmt){ #ifdef SQLITE_OMIT_TRACE return 0; #else char *z = 0; const char *zSql = sqlite3_sql(pStmt); if( zSql ){ Vdbe *p = (Vdbe *)pStmt; sqlite3_mutex_enter(p->db->mutex); z = sqlite3VdbeExpandSql(p, zSql); sqlite3_mutex_leave(p->db->mutex); } return z; #endif } #ifdef SQLITE_ENABLE_NORMALIZE /* ** Return the normalized SQL associated with a prepared statement. */ SQLITE_API const char *sqlite3_normalized_sql(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe *)pStmt; if( p==0 ) return 0; if( p->zNormSql==0 && ALWAYS(p->zSql!=0) ){ sqlite3_mutex_enter(p->db->mutex); p->zNormSql = sqlite3Normalize(p, p->zSql); sqlite3_mutex_leave(p->db->mutex); } return p->zNormSql; } #endif /* SQLITE_ENABLE_NORMALIZE */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** Allocate and populate an UnpackedRecord structure based on the serialized ** record in nKey/pKey. Return a pointer to the new UnpackedRecord structure ** if successful, or a NULL pointer if an OOM error is encountered. */ static UnpackedRecord *vdbeUnpackRecord( KeyInfo *pKeyInfo, int nKey, const void *pKey ){ UnpackedRecord *pRet; /* Return value */ pRet = sqlite3VdbeAllocUnpackedRecord(pKeyInfo); if( pRet ){ memset(pRet->aMem, 0, sizeof(Mem)*(pKeyInfo->nKeyField+1)); sqlite3VdbeRecordUnpack(pKeyInfo, nKey, pKey, pRet); } return pRet; } /* ** This function is called from within a pre-update callback to retrieve ** a field of the row currently being updated or deleted. */ SQLITE_API int sqlite3_preupdate_old(sqlite3 *db, int iIdx, sqlite3_value **ppValue){ PreUpdate *p = db->pPreUpdate; Mem *pMem; int rc = SQLITE_OK; /* Test that this call is being made from within an SQLITE_DELETE or ** SQLITE_UPDATE pre-update callback, and that iIdx is within range. */ if( !p || p->op==SQLITE_INSERT ){ rc = SQLITE_MISUSE_BKPT; goto preupdate_old_out; } if( p->pPk ){ iIdx = sqlite3TableColumnToIndex(p->pPk, iIdx); } if( iIdx>=p->pCsr->nField || iIdx<0 ){ rc = SQLITE_RANGE; goto preupdate_old_out; } /* If the old.* record has not yet been loaded into memory, do so now. */ if( p->pUnpacked==0 ){ u32 nRec; u8 *aRec; assert( p->pCsr->eCurType==CURTYPE_BTREE ); nRec = sqlite3BtreePayloadSize(p->pCsr->uc.pCursor); aRec = sqlite3DbMallocRaw(db, nRec); if( !aRec ) goto preupdate_old_out; rc = sqlite3BtreePayload(p->pCsr->uc.pCursor, 0, nRec, aRec); if( rc==SQLITE_OK ){ p->pUnpacked = vdbeUnpackRecord(&p->keyinfo, nRec, aRec); if( !p->pUnpacked ) rc = SQLITE_NOMEM; } if( rc!=SQLITE_OK ){ sqlite3DbFree(db, aRec); goto preupdate_old_out; } p->aRecord = aRec; } pMem = *ppValue = &p->pUnpacked->aMem[iIdx]; if( iIdx==p->pTab->iPKey ){ sqlite3VdbeMemSetInt64(pMem, p->iKey1); }else if( iIdx>=p->pUnpacked->nField ){ *ppValue = (sqlite3_value *)columnNullValue(); }else if( p->pTab->aCol[iIdx].affinity==SQLITE_AFF_REAL ){ if( pMem->flags & (MEM_Int|MEM_IntReal) ){ testcase( pMem->flags & MEM_Int ); testcase( pMem->flags & MEM_IntReal ); sqlite3VdbeMemRealify(pMem); } } preupdate_old_out: sqlite3Error(db, rc); return sqlite3ApiExit(db, rc); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is called from within a pre-update callback to retrieve ** the number of columns in the row being updated, deleted or inserted. */ SQLITE_API int sqlite3_preupdate_count(sqlite3 *db){ PreUpdate *p = db->pPreUpdate; return (p ? p->keyinfo.nKeyField : 0); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is designed to be called from within a pre-update callback ** only. It returns zero if the change that caused the callback was made ** immediately by a user SQL statement. Or, if the change was made by a ** trigger program, it returns the number of trigger programs currently ** on the stack (1 for a top-level trigger, 2 for a trigger fired by a ** top-level trigger etc.). ** ** For the purposes of the previous paragraph, a foreign key CASCADE, SET NULL ** or SET DEFAULT action is considered a trigger. */ SQLITE_API int sqlite3_preupdate_depth(sqlite3 *db){ PreUpdate *p = db->pPreUpdate; return (p ? p->v->nFrame : 0); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is designed to be called from within a pre-update callback ** only. */ SQLITE_API int sqlite3_preupdate_blobwrite(sqlite3 *db){ PreUpdate *p = db->pPreUpdate; return (p ? p->iBlobWrite : -1); } #endif #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is called from within a pre-update callback to retrieve ** a field of the row currently being updated or inserted. */ SQLITE_API int sqlite3_preupdate_new(sqlite3 *db, int iIdx, sqlite3_value **ppValue){ PreUpdate *p = db->pPreUpdate; int rc = SQLITE_OK; Mem *pMem; if( !p || p->op==SQLITE_DELETE ){ rc = SQLITE_MISUSE_BKPT; goto preupdate_new_out; } if( p->pPk && p->op!=SQLITE_UPDATE ){ iIdx = sqlite3TableColumnToIndex(p->pPk, iIdx); } if( iIdx>=p->pCsr->nField || iIdx<0 ){ rc = SQLITE_RANGE; goto preupdate_new_out; } if( p->op==SQLITE_INSERT ){ /* For an INSERT, memory cell p->iNewReg contains the serialized record ** that is being inserted. Deserialize it. */ UnpackedRecord *pUnpack = p->pNewUnpacked; if( !pUnpack ){ Mem *pData = &p->v->aMem[p->iNewReg]; rc = ExpandBlob(pData); if( rc!=SQLITE_OK ) goto preupdate_new_out; pUnpack = vdbeUnpackRecord(&p->keyinfo, pData->n, pData->z); if( !pUnpack ){ rc = SQLITE_NOMEM; goto preupdate_new_out; } p->pNewUnpacked = pUnpack; } pMem = &pUnpack->aMem[iIdx]; if( iIdx==p->pTab->iPKey ){ sqlite3VdbeMemSetInt64(pMem, p->iKey2); }else if( iIdx>=pUnpack->nField ){ pMem = (sqlite3_value *)columnNullValue(); } }else{ /* For an UPDATE, memory cell (p->iNewReg+1+iIdx) contains the required ** value. Make a copy of the cell contents and return a pointer to it. ** It is not safe to return a pointer to the memory cell itself as the ** caller may modify the value text encoding. */ assert( p->op==SQLITE_UPDATE ); if( !p->aNew ){ p->aNew = (Mem *)sqlite3DbMallocZero(db, sizeof(Mem) * p->pCsr->nField); if( !p->aNew ){ rc = SQLITE_NOMEM; goto preupdate_new_out; } } assert( iIdx>=0 && iIdxpCsr->nField ); pMem = &p->aNew[iIdx]; if( pMem->flags==0 ){ if( iIdx==p->pTab->iPKey ){ sqlite3VdbeMemSetInt64(pMem, p->iKey2); }else{ rc = sqlite3VdbeMemCopy(pMem, &p->v->aMem[p->iNewReg+1+iIdx]); if( rc!=SQLITE_OK ) goto preupdate_new_out; } } } *ppValue = pMem; preupdate_new_out: sqlite3Error(db, rc); return sqlite3ApiExit(db, rc); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS /* ** Return status data for a single loop within query pStmt. */ SQLITE_API int sqlite3_stmt_scanstatus( sqlite3_stmt *pStmt, /* Prepared statement being queried */ int idx, /* Index of loop to report on */ int iScanStatusOp, /* Which metric to return */ void *pOut /* OUT: Write the answer here */ ){ Vdbe *p = (Vdbe*)pStmt; ScanStatus *pScan; if( idx<0 || idx>=p->nScan ) return 1; pScan = &p->aScan[idx]; switch( iScanStatusOp ){ case SQLITE_SCANSTAT_NLOOP: { *(sqlite3_int64*)pOut = p->anExec[pScan->addrLoop]; break; } case SQLITE_SCANSTAT_NVISIT: { *(sqlite3_int64*)pOut = p->anExec[pScan->addrVisit]; break; } case SQLITE_SCANSTAT_EST: { double r = 1.0; LogEst x = pScan->nEst; while( x<100 ){ x += 10; r *= 0.5; } *(double*)pOut = r*sqlite3LogEstToInt(x); break; } case SQLITE_SCANSTAT_NAME: { *(const char**)pOut = pScan->zName; break; } case SQLITE_SCANSTAT_EXPLAIN: { if( pScan->addrExplain ){ *(const char**)pOut = p->aOp[ pScan->addrExplain ].p4.z; }else{ *(const char**)pOut = 0; } break; } case SQLITE_SCANSTAT_SELECTID: { if( pScan->addrExplain ){ *(int*)pOut = p->aOp[ pScan->addrExplain ].p1; }else{ *(int*)pOut = -1; } break; } default: { return 1; } } return 0; } /* ** Zero all counters associated with the sqlite3_stmt_scanstatus() data. */ SQLITE_API void sqlite3_stmt_scanstatus_reset(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe*)pStmt; memset(p->anExec, 0, p->nOp * sizeof(i64)); } #endif /* SQLITE_ENABLE_STMT_SCANSTATUS */ /************** End of vdbeapi.c *********************************************/ /************** Begin file vdbetrace.c ***************************************/ /* ** 2009 November 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code used to insert the values of host parameters ** (aka "wildcards") into the SQL text output by sqlite3_trace(). ** ** The Vdbe parse-tree explainer is also found here. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #ifndef SQLITE_OMIT_TRACE /* ** zSql is a zero-terminated string of UTF-8 SQL text. Return the number of ** bytes in this text up to but excluding the first character in ** a host parameter. If the text contains no host parameters, return ** the total number of bytes in the text. */ static int findNextHostParameter(const char *zSql, int *pnToken){ int tokenType; int nTotal = 0; int n; *pnToken = 0; while( zSql[0] ){ n = sqlite3GetToken((u8*)zSql, &tokenType); assert( n>0 && tokenType!=TK_ILLEGAL ); if( tokenType==TK_VARIABLE ){ *pnToken = n; break; } nTotal += n; zSql += n; } return nTotal; } /* ** This function returns a pointer to a nul-terminated string in memory ** obtained from sqlite3DbMalloc(). If sqlite3.nVdbeExec is 1, then the ** string contains a copy of zRawSql but with host parameters expanded to ** their current bindings. Or, if sqlite3.nVdbeExec is greater than 1, ** then the returned string holds a copy of zRawSql with "-- " prepended ** to each line of text. ** ** If the SQLITE_TRACE_SIZE_LIMIT macro is defined to an integer, then ** then long strings and blobs are truncated to that many bytes. This ** can be used to prevent unreasonably large trace strings when dealing ** with large (multi-megabyte) strings and blobs. ** ** The calling function is responsible for making sure the memory returned ** is eventually freed. ** ** ALGORITHM: Scan the input string looking for host parameters in any of ** these forms: ?, ?N, $A, @A, :A. Take care to avoid text within ** string literals, quoted identifier names, and comments. For text forms, ** the host parameter index is found by scanning the prepared ** statement for the corresponding OP_Variable opcode. Once the host ** parameter index is known, locate the value in p->aVar[]. Then render ** the value as a literal in place of the host parameter name. */ SQLITE_PRIVATE char *sqlite3VdbeExpandSql( Vdbe *p, /* The prepared statement being evaluated */ const char *zRawSql /* Raw text of the SQL statement */ ){ sqlite3 *db; /* The database connection */ int idx = 0; /* Index of a host parameter */ int nextIndex = 1; /* Index of next ? host parameter */ int n; /* Length of a token prefix */ int nToken; /* Length of the parameter token */ int i; /* Loop counter */ Mem *pVar; /* Value of a host parameter */ StrAccum out; /* Accumulate the output here */ #ifndef SQLITE_OMIT_UTF16 Mem utf8; /* Used to convert UTF16 into UTF8 for display */ #endif db = p->db; sqlite3StrAccumInit(&out, 0, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]); if( db->nVdbeExec>1 ){ while( *zRawSql ){ const char *zStart = zRawSql; while( *(zRawSql++)!='\n' && *zRawSql ); sqlite3_str_append(&out, "-- ", 3); assert( (zRawSql - zStart) > 0 ); sqlite3_str_append(&out, zStart, (int)(zRawSql-zStart)); } }else if( p->nVar==0 ){ sqlite3_str_append(&out, zRawSql, sqlite3Strlen30(zRawSql)); }else{ while( zRawSql[0] ){ n = findNextHostParameter(zRawSql, &nToken); assert( n>0 ); sqlite3_str_append(&out, zRawSql, n); zRawSql += n; assert( zRawSql[0] || nToken==0 ); if( nToken==0 ) break; if( zRawSql[0]=='?' ){ if( nToken>1 ){ assert( sqlite3Isdigit(zRawSql[1]) ); sqlite3GetInt32(&zRawSql[1], &idx); }else{ idx = nextIndex; } }else{ assert( zRawSql[0]==':' || zRawSql[0]=='$' || zRawSql[0]=='@' || zRawSql[0]=='#' ); testcase( zRawSql[0]==':' ); testcase( zRawSql[0]=='$' ); testcase( zRawSql[0]=='@' ); testcase( zRawSql[0]=='#' ); idx = sqlite3VdbeParameterIndex(p, zRawSql, nToken); assert( idx>0 ); } zRawSql += nToken; nextIndex = MAX(idx + 1, nextIndex); assert( idx>0 && idx<=p->nVar ); pVar = &p->aVar[idx-1]; if( pVar->flags & MEM_Null ){ sqlite3_str_append(&out, "NULL", 4); }else if( pVar->flags & (MEM_Int|MEM_IntReal) ){ sqlite3_str_appendf(&out, "%lld", pVar->u.i); }else if( pVar->flags & MEM_Real ){ sqlite3_str_appendf(&out, "%!.15g", pVar->u.r); }else if( pVar->flags & MEM_Str ){ int nOut; /* Number of bytes of the string text to include in output */ #ifndef SQLITE_OMIT_UTF16 u8 enc = ENC(db); if( enc!=SQLITE_UTF8 ){ memset(&utf8, 0, sizeof(utf8)); utf8.db = db; sqlite3VdbeMemSetStr(&utf8, pVar->z, pVar->n, enc, SQLITE_STATIC); if( SQLITE_NOMEM==sqlite3VdbeChangeEncoding(&utf8, SQLITE_UTF8) ){ out.accError = SQLITE_NOMEM; out.nAlloc = 0; } pVar = &utf8; } #endif nOut = pVar->n; #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOut>SQLITE_TRACE_SIZE_LIMIT ){ nOut = SQLITE_TRACE_SIZE_LIMIT; while( nOutn && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; } } #endif sqlite3_str_appendf(&out, "'%.*q'", nOut, pVar->z); #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOutn ){ sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut); } #endif #ifndef SQLITE_OMIT_UTF16 if( enc!=SQLITE_UTF8 ) sqlite3VdbeMemRelease(&utf8); #endif }else if( pVar->flags & MEM_Zero ){ sqlite3_str_appendf(&out, "zeroblob(%d)", pVar->u.nZero); }else{ int nOut; /* Number of bytes of the blob to include in output */ assert( pVar->flags & MEM_Blob ); sqlite3_str_append(&out, "x'", 2); nOut = pVar->n; #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT; #endif for(i=0; iz[i]&0xff); } sqlite3_str_append(&out, "'", 1); #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOutn ){ sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut); } #endif } } } if( out.accError ) sqlite3_str_reset(&out); return sqlite3StrAccumFinish(&out); } #endif /* #ifndef SQLITE_OMIT_TRACE */ /************** End of vdbetrace.c *******************************************/ /************** Begin file vdbe.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** The code in this file implements the function that runs the ** bytecode of a prepared statement. ** ** Various scripts scan this source file in order to generate HTML ** documentation, headers files, or other derived files. The formatting ** of the code in this file is, therefore, important. See other comments ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* ** Invoke this macro on memory cells just prior to changing the ** value of the cell. This macro verifies that shallow copies are ** not misused. A shallow copy of a string or blob just copies a ** pointer to the string or blob, not the content. If the original ** is changed while the copy is still in use, the string or blob might ** be changed out from under the copy. This macro verifies that nothing ** like that ever happens. */ #ifdef SQLITE_DEBUG # define memAboutToChange(P,M) sqlite3VdbeMemAboutToChange(P,M) #else # define memAboutToChange(P,M) #endif /* ** The following global variable is incremented every time a cursor ** moves, either by the OP_SeekXX, OP_Next, or OP_Prev opcodes. The test ** procedures use this information to make sure that indices are ** working correctly. This variable has no function other than to ** help verify the correct operation of the library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_search_count = 0; #endif /* ** When this global variable is positive, it gets decremented once before ** each instruction in the VDBE. When it reaches zero, the u1.isInterrupted ** field of the sqlite3 structure is set in order to simulate an interrupt. ** ** This facility is used for testing purposes only. It does not function ** in an ordinary build. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_interrupt_count = 0; #endif /* ** The next global variable is incremented each type the OP_Sort opcode ** is executed. The test procedures use this information to make sure that ** sorting is occurring or not occurring at appropriate times. This variable ** has no function other than to help verify the correct operation of the ** library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_sort_count = 0; #endif /* ** The next global variable records the size of the largest MEM_Blob ** or MEM_Str that has been used by a VDBE opcode. The test procedures ** use this information to make sure that the zero-blob functionality ** is working correctly. This variable has no function other than to ** help verify the correct operation of the library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_max_blobsize = 0; static void updateMaxBlobsize(Mem *p){ if( (p->flags & (MEM_Str|MEM_Blob))!=0 && p->n>sqlite3_max_blobsize ){ sqlite3_max_blobsize = p->n; } } #endif /* ** This macro evaluates to true if either the update hook or the preupdate ** hook are enabled for database connect DB. */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK # define HAS_UPDATE_HOOK(DB) ((DB)->xPreUpdateCallback||(DB)->xUpdateCallback) #else # define HAS_UPDATE_HOOK(DB) ((DB)->xUpdateCallback) #endif /* ** The next global variable is incremented each time the OP_Found opcode ** is executed. This is used to test whether or not the foreign key ** operation implemented using OP_FkIsZero is working. This variable ** has no function other than to help verify the correct operation of the ** library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_found_count = 0; #endif /* ** Test a register to see if it exceeds the current maximum blob size. ** If it does, record the new maximum blob size. */ #if defined(SQLITE_TEST) && !defined(SQLITE_UNTESTABLE) # define UPDATE_MAX_BLOBSIZE(P) updateMaxBlobsize(P) #else # define UPDATE_MAX_BLOBSIZE(P) #endif #ifdef SQLITE_DEBUG /* This routine provides a convenient place to set a breakpoint during ** tracing with PRAGMA vdbe_trace=on. The breakpoint fires right after ** each opcode is printed. Variables "pc" (program counter) and pOp are ** available to add conditionals to the breakpoint. GDB example: ** ** break test_trace_breakpoint if pc=22 ** ** Other useful labels for breakpoints include: ** test_addop_breakpoint(pc,pOp) ** sqlite3CorruptError(lineno) ** sqlite3MisuseError(lineno) ** sqlite3CantopenError(lineno) */ static void test_trace_breakpoint(int pc, Op *pOp, Vdbe *v){ static int n = 0; n++; } #endif /* ** Invoke the VDBE coverage callback, if that callback is defined. This ** feature is used for test suite validation only and does not appear an ** production builds. ** ** M is the type of branch. I is the direction taken for this instance of ** the branch. ** ** M: 2 - two-way branch (I=0: fall-thru 1: jump ) ** 3 - two-way + NULL (I=0: fall-thru 1: jump 2: NULL ) ** 4 - OP_Jump (I=0: jump p1 1: jump p2 2: jump p3) ** ** In other words, if M is 2, then I is either 0 (for fall-through) or ** 1 (for when the branch is taken). If M is 3, the I is 0 for an ** ordinary fall-through, I is 1 if the branch was taken, and I is 2 ** if the result of comparison is NULL. For M=3, I=2 the jump may or ** may not be taken, depending on the SQLITE_JUMPIFNULL flags in p5. ** When M is 4, that means that an OP_Jump is being run. I is 0, 1, or 2 ** depending on if the operands are less than, equal, or greater than. ** ** iSrcLine is the source code line (from the __LINE__ macro) that ** generated the VDBE instruction combined with flag bits. The source ** code line number is in the lower 24 bits of iSrcLine and the upper ** 8 bytes are flags. The lower three bits of the flags indicate ** values for I that should never occur. For example, if the branch is ** always taken, the flags should be 0x05 since the fall-through and ** alternate branch are never taken. If a branch is never taken then ** flags should be 0x06 since only the fall-through approach is allowed. ** ** Bit 0x08 of the flags indicates an OP_Jump opcode that is only ** interested in equal or not-equal. In other words, I==0 and I==2 ** should be treated as equivalent ** ** Since only a line number is retained, not the filename, this macro ** only works for amalgamation builds. But that is ok, since these macros ** should be no-ops except for special builds used to measure test coverage. */ #if !defined(SQLITE_VDBE_COVERAGE) # define VdbeBranchTaken(I,M) #else # define VdbeBranchTaken(I,M) vdbeTakeBranch(pOp->iSrcLine,I,M) static void vdbeTakeBranch(u32 iSrcLine, u8 I, u8 M){ u8 mNever; assert( I<=2 ); /* 0: fall through, 1: taken, 2: alternate taken */ assert( M<=4 ); /* 2: two-way branch, 3: three-way branch, 4: OP_Jump */ assert( I> 24; assert( (I & mNever)==0 ); if( sqlite3GlobalConfig.xVdbeBranch==0 ) return; /*NO_TEST*/ /* Invoke the branch coverage callback with three arguments: ** iSrcLine - the line number of the VdbeCoverage() macro, with ** flags removed. ** I - Mask of bits 0x07 indicating which cases are are ** fulfilled by this instance of the jump. 0x01 means ** fall-thru, 0x02 means taken, 0x04 means NULL. Any ** impossible cases (ex: if the comparison is never NULL) ** are filled in automatically so that the coverage ** measurement logic does not flag those impossible cases ** as missed coverage. ** M - Type of jump. Same as M argument above */ I |= mNever; if( M==2 ) I |= 0x04; if( M==4 ){ I |= 0x08; if( (mNever&0x08)!=0 && (I&0x05)!=0) I |= 0x05; /*NO_TEST*/ } sqlite3GlobalConfig.xVdbeBranch(sqlite3GlobalConfig.pVdbeBranchArg, iSrcLine&0xffffff, I, M); } #endif /* ** An ephemeral string value (signified by the MEM_Ephem flag) contains ** a pointer to a dynamically allocated string where some other entity ** is responsible for deallocating that string. Because the register ** does not control the string, it might be deleted without the register ** knowing it. ** ** This routine converts an ephemeral string into a dynamically allocated ** string that the register itself controls. In other words, it ** converts an MEM_Ephem string into a string with P.z==P.zMalloc. */ #define Deephemeralize(P) \ if( ((P)->flags&MEM_Ephem)!=0 \ && sqlite3VdbeMemMakeWriteable(P) ){ goto no_mem;} /* Return true if the cursor was opened using the OP_OpenSorter opcode. */ #define isSorter(x) ((x)->eCurType==CURTYPE_SORTER) /* ** Allocate VdbeCursor number iCur. Return a pointer to it. Return NULL ** if we run out of memory. */ static VdbeCursor *allocateCursor( Vdbe *p, /* The virtual machine */ int iCur, /* Index of the new VdbeCursor */ int nField, /* Number of fields in the table or index */ u8 eCurType /* Type of the new cursor */ ){ /* Find the memory cell that will be used to store the blob of memory ** required for this VdbeCursor structure. It is convenient to use a ** vdbe memory cell to manage the memory allocation required for a ** VdbeCursor structure for the following reasons: ** ** * Sometimes cursor numbers are used for a couple of different ** purposes in a vdbe program. The different uses might require ** different sized allocations. Memory cells provide growable ** allocations. ** ** * When using ENABLE_MEMORY_MANAGEMENT, memory cell buffers can ** be freed lazily via the sqlite3_release_memory() API. This ** minimizes the number of malloc calls made by the system. ** ** The memory cell for cursor 0 is aMem[0]. The rest are allocated from ** the top of the register space. Cursor 1 is at Mem[p->nMem-1]. ** Cursor 2 is at Mem[p->nMem-2]. And so forth. */ Mem *pMem = iCur>0 ? &p->aMem[p->nMem-iCur] : p->aMem; int nByte; VdbeCursor *pCx = 0; nByte = ROUND8(sizeof(VdbeCursor)) + 2*sizeof(u32)*nField + (eCurType==CURTYPE_BTREE?sqlite3BtreeCursorSize():0); assert( iCur>=0 && iCurnCursor ); if( p->apCsr[iCur] ){ /*OPTIMIZATION-IF-FALSE*/ sqlite3VdbeFreeCursor(p, p->apCsr[iCur]); p->apCsr[iCur] = 0; } /* There used to be a call to sqlite3VdbeMemClearAndResize() to make sure ** the pMem used to hold space for the cursor has enough storage available ** in pMem->zMalloc. But for the special case of the aMem[] entries used ** to hold cursors, it is faster to in-line the logic. */ assert( pMem->flags==MEM_Undefined ); assert( (pMem->flags & MEM_Dyn)==0 ); assert( pMem->szMalloc==0 || pMem->z==pMem->zMalloc ); if( pMem->szMallocszMalloc>0 ){ sqlite3DbFreeNN(pMem->db, pMem->zMalloc); } pMem->z = pMem->zMalloc = sqlite3DbMallocRaw(pMem->db, nByte); if( pMem->zMalloc==0 ){ pMem->szMalloc = 0; return 0; } pMem->szMalloc = nByte; } p->apCsr[iCur] = pCx = (VdbeCursor*)pMem->zMalloc; memset(pCx, 0, offsetof(VdbeCursor,pAltCursor)); pCx->eCurType = eCurType; pCx->nField = nField; pCx->aOffset = &pCx->aType[nField]; if( eCurType==CURTYPE_BTREE ){ pCx->uc.pCursor = (BtCursor*) &pMem->z[ROUND8(sizeof(VdbeCursor))+2*sizeof(u32)*nField]; sqlite3BtreeCursorZero(pCx->uc.pCursor); } return pCx; } /* ** The string in pRec is known to look like an integer and to have a ** floating point value of rValue. Return true and set *piValue to the ** integer value if the string is in range to be an integer. Otherwise, ** return false. */ static int alsoAnInt(Mem *pRec, double rValue, i64 *piValue){ i64 iValue = (double)rValue; if( sqlite3RealSameAsInt(rValue,iValue) ){ *piValue = iValue; return 1; } return 0==sqlite3Atoi64(pRec->z, piValue, pRec->n, pRec->enc); } /* ** Try to convert a value into a numeric representation if we can ** do so without loss of information. In other words, if the string ** looks like a number, convert it into a number. If it does not ** look like a number, leave it alone. ** ** If the bTryForInt flag is true, then extra effort is made to give ** an integer representation. Strings that look like floating point ** values but which have no fractional component (example: '48.00') ** will have a MEM_Int representation when bTryForInt is true. ** ** If bTryForInt is false, then if the input string contains a decimal ** point or exponential notation, the result is only MEM_Real, even ** if there is an exact integer representation of the quantity. */ static void applyNumericAffinity(Mem *pRec, int bTryForInt){ double rValue; u8 enc = pRec->enc; int rc; assert( (pRec->flags & (MEM_Str|MEM_Int|MEM_Real|MEM_IntReal))==MEM_Str ); rc = sqlite3AtoF(pRec->z, &rValue, pRec->n, enc); if( rc<=0 ) return; if( rc==1 && alsoAnInt(pRec, rValue, &pRec->u.i) ){ pRec->flags |= MEM_Int; }else{ pRec->u.r = rValue; pRec->flags |= MEM_Real; if( bTryForInt ) sqlite3VdbeIntegerAffinity(pRec); } /* TEXT->NUMERIC is many->one. Hence, it is important to invalidate the ** string representation after computing a numeric equivalent, because the ** string representation might not be the canonical representation for the ** numeric value. Ticket [343634942dd54ab57b7024] 2018-01-31. */ pRec->flags &= ~MEM_Str; } /* ** Processing is determine by the affinity parameter: ** ** SQLITE_AFF_INTEGER: ** SQLITE_AFF_REAL: ** SQLITE_AFF_NUMERIC: ** Try to convert pRec to an integer representation or a ** floating-point representation if an integer representation ** is not possible. Note that the integer representation is ** always preferred, even if the affinity is REAL, because ** an integer representation is more space efficient on disk. ** ** SQLITE_AFF_TEXT: ** Convert pRec to a text representation. ** ** SQLITE_AFF_BLOB: ** SQLITE_AFF_NONE: ** No-op. pRec is unchanged. */ static void applyAffinity( Mem *pRec, /* The value to apply affinity to */ char affinity, /* The affinity to be applied */ u8 enc /* Use this text encoding */ ){ if( affinity>=SQLITE_AFF_NUMERIC ){ assert( affinity==SQLITE_AFF_INTEGER || affinity==SQLITE_AFF_REAL || affinity==SQLITE_AFF_NUMERIC ); if( (pRec->flags & MEM_Int)==0 ){ /*OPTIMIZATION-IF-FALSE*/ if( (pRec->flags & MEM_Real)==0 ){ if( pRec->flags & MEM_Str ) applyNumericAffinity(pRec,1); }else{ sqlite3VdbeIntegerAffinity(pRec); } } }else if( affinity==SQLITE_AFF_TEXT ){ /* Only attempt the conversion to TEXT if there is an integer or real ** representation (blob and NULL do not get converted) but no string ** representation. It would be harmless to repeat the conversion if ** there is already a string rep, but it is pointless to waste those ** CPU cycles. */ if( 0==(pRec->flags&MEM_Str) ){ /*OPTIMIZATION-IF-FALSE*/ if( (pRec->flags&(MEM_Real|MEM_Int|MEM_IntReal)) ){ testcase( pRec->flags & MEM_Int ); testcase( pRec->flags & MEM_Real ); testcase( pRec->flags & MEM_IntReal ); sqlite3VdbeMemStringify(pRec, enc, 1); } } pRec->flags &= ~(MEM_Real|MEM_Int|MEM_IntReal); } } /* ** Try to convert the type of a function argument or a result column ** into a numeric representation. Use either INTEGER or REAL whichever ** is appropriate. But only do the conversion if it is possible without ** loss of information and return the revised type of the argument. */ SQLITE_API int sqlite3_value_numeric_type(sqlite3_value *pVal){ int eType = sqlite3_value_type(pVal); if( eType==SQLITE_TEXT ){ Mem *pMem = (Mem*)pVal; applyNumericAffinity(pMem, 0); eType = sqlite3_value_type(pVal); } return eType; } /* ** Exported version of applyAffinity(). This one works on sqlite3_value*, ** not the internal Mem* type. */ SQLITE_PRIVATE void sqlite3ValueApplyAffinity( sqlite3_value *pVal, u8 affinity, u8 enc ){ applyAffinity((Mem *)pVal, affinity, enc); } /* ** pMem currently only holds a string type (or maybe a BLOB that we can ** interpret as a string if we want to). Compute its corresponding ** numeric type, if has one. Set the pMem->u.r and pMem->u.i fields ** accordingly. */ static u16 SQLITE_NOINLINE computeNumericType(Mem *pMem){ int rc; sqlite3_int64 ix; assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ); assert( (pMem->flags & (MEM_Str|MEM_Blob))!=0 ); if( ExpandBlob(pMem) ){ pMem->u.i = 0; return MEM_Int; } rc = sqlite3AtoF(pMem->z, &pMem->u.r, pMem->n, pMem->enc); if( rc<=0 ){ if( rc==0 && sqlite3Atoi64(pMem->z, &ix, pMem->n, pMem->enc)<=1 ){ pMem->u.i = ix; return MEM_Int; }else{ return MEM_Real; } }else if( rc==1 && sqlite3Atoi64(pMem->z, &ix, pMem->n, pMem->enc)==0 ){ pMem->u.i = ix; return MEM_Int; } return MEM_Real; } /* ** Return the numeric type for pMem, either MEM_Int or MEM_Real or both or ** none. ** ** Unlike applyNumericAffinity(), this routine does not modify pMem->flags. ** But it does set pMem->u.r and pMem->u.i appropriately. */ static u16 numericType(Mem *pMem){ if( pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal) ){ testcase( pMem->flags & MEM_Int ); testcase( pMem->flags & MEM_Real ); testcase( pMem->flags & MEM_IntReal ); return pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal); } if( pMem->flags & (MEM_Str|MEM_Blob) ){ testcase( pMem->flags & MEM_Str ); testcase( pMem->flags & MEM_Blob ); return computeNumericType(pMem); } return 0; } #ifdef SQLITE_DEBUG /* ** Write a nice string representation of the contents of cell pMem ** into buffer zBuf, length nBuf. */ SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr){ int f = pMem->flags; static const char *const encnames[] = {"(X)", "(8)", "(16LE)", "(16BE)"}; if( f&MEM_Blob ){ int i; char c; if( f & MEM_Dyn ){ c = 'z'; assert( (f & (MEM_Static|MEM_Ephem))==0 ); }else if( f & MEM_Static ){ c = 't'; assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); }else if( f & MEM_Ephem ){ c = 'e'; assert( (f & (MEM_Static|MEM_Dyn))==0 ); }else{ c = 's'; } sqlite3_str_appendf(pStr, "%cx[", c); for(i=0; i<25 && in; i++){ sqlite3_str_appendf(pStr, "%02X", ((int)pMem->z[i] & 0xFF)); } sqlite3_str_appendf(pStr, "|"); for(i=0; i<25 && in; i++){ char z = pMem->z[i]; sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z); } sqlite3_str_appendf(pStr,"]"); if( f & MEM_Zero ){ sqlite3_str_appendf(pStr, "+%dz",pMem->u.nZero); } }else if( f & MEM_Str ){ int j; u8 c; if( f & MEM_Dyn ){ c = 'z'; assert( (f & (MEM_Static|MEM_Ephem))==0 ); }else if( f & MEM_Static ){ c = 't'; assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); }else if( f & MEM_Ephem ){ c = 'e'; assert( (f & (MEM_Static|MEM_Dyn))==0 ); }else{ c = 's'; } sqlite3_str_appendf(pStr, " %c%d[", c, pMem->n); for(j=0; j<25 && jn; j++){ c = pMem->z[j]; sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.'); } sqlite3_str_appendf(pStr, "]%s", encnames[pMem->enc]); } } #endif #ifdef SQLITE_DEBUG /* ** Print the value of a register for tracing purposes: */ static void memTracePrint(Mem *p){ if( p->flags & MEM_Undefined ){ printf(" undefined"); }else if( p->flags & MEM_Null ){ printf(p->flags & MEM_Zero ? " NULL-nochng" : " NULL"); }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){ printf(" si:%lld", p->u.i); }else if( (p->flags & (MEM_IntReal))!=0 ){ printf(" ir:%lld", p->u.i); }else if( p->flags & MEM_Int ){ printf(" i:%lld", p->u.i); #ifndef SQLITE_OMIT_FLOATING_POINT }else if( p->flags & MEM_Real ){ printf(" r:%.17g", p->u.r); #endif }else if( sqlite3VdbeMemIsRowSet(p) ){ printf(" (rowset)"); }else{ StrAccum acc; char zBuf[1000]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3VdbeMemPrettyPrint(p, &acc); printf(" %s", sqlite3StrAccumFinish(&acc)); } if( p->flags & MEM_Subtype ) printf(" subtype=0x%02x", p->eSubtype); } static void registerTrace(int iReg, Mem *p){ printf("R[%d] = ", iReg); memTracePrint(p); if( p->pScopyFrom ){ printf(" <== R[%d]", (int)(p->pScopyFrom - &p[-iReg])); } printf("\n"); sqlite3VdbeCheckMemInvariants(p); } /**/ void sqlite3PrintMem(Mem *pMem){ memTracePrint(pMem); printf("\n"); fflush(stdout); } #endif #ifdef SQLITE_DEBUG /* ** Show the values of all registers in the virtual machine. Used for ** interactive debugging. */ SQLITE_PRIVATE void sqlite3VdbeRegisterDump(Vdbe *v){ int i; for(i=1; inMem; i++) registerTrace(i, v->aMem+i); } #endif /* SQLITE_DEBUG */ #ifdef SQLITE_DEBUG # define REGISTER_TRACE(R,M) if(db->flags&SQLITE_VdbeTrace)registerTrace(R,M) #else # define REGISTER_TRACE(R,M) #endif #ifdef VDBE_PROFILE /* ** hwtime.h contains inline assembler code for implementing ** high-performance timing routines. */ /* #include "hwtime.h" */ #endif #ifndef NDEBUG /* ** This function is only called from within an assert() expression. It ** checks that the sqlite3.nTransaction variable is correctly set to ** the number of non-transaction savepoints currently in the ** linked list starting at sqlite3.pSavepoint. ** ** Usage: ** ** assert( checkSavepointCount(db) ); */ static int checkSavepointCount(sqlite3 *db){ int n = 0; Savepoint *p; for(p=db->pSavepoint; p; p=p->pNext) n++; assert( n==(db->nSavepoint + db->isTransactionSavepoint) ); return 1; } #endif /* ** Return the register of pOp->p2 after first preparing it to be ** overwritten with an integer value. */ static SQLITE_NOINLINE Mem *out2PrereleaseWithClear(Mem *pOut){ sqlite3VdbeMemSetNull(pOut); pOut->flags = MEM_Int; return pOut; } static Mem *out2Prerelease(Vdbe *p, VdbeOp *pOp){ Mem *pOut; assert( pOp->p2>0 ); assert( pOp->p2<=(p->nMem+1 - p->nCursor) ); pOut = &p->aMem[pOp->p2]; memAboutToChange(p, pOut); if( VdbeMemDynamic(pOut) ){ /*OPTIMIZATION-IF-FALSE*/ return out2PrereleaseWithClear(pOut); }else{ pOut->flags = MEM_Int; return pOut; } } /* ** Compute a bloom filter hash using pOp->p4.i registers from aMem[] beginning ** with pOp->p3. Return the hash. */ static u64 filterHash(const Mem *aMem, const Op *pOp){ int i, mx; u64 h = 0; assert( pOp->p4type==P4_INT32 ); for(i=pOp->p3, mx=i+pOp->p4.i; iflags & (MEM_Int|MEM_IntReal) ){ h += p->u.i; }else if( p->flags & MEM_Real ){ h += sqlite3VdbeIntValue(p); }else if( p->flags & (MEM_Str|MEM_Blob) ){ h += p->n; if( p->flags & MEM_Zero ) h += p->u.nZero; } } return h; } /* ** Return the symbolic name for the data type of a pMem */ static const char *vdbeMemTypeName(Mem *pMem){ static const char *azTypes[] = { /* SQLITE_INTEGER */ "INT", /* SQLITE_FLOAT */ "REAL", /* SQLITE_TEXT */ "TEXT", /* SQLITE_BLOB */ "BLOB", /* SQLITE_NULL */ "NULL" }; return azTypes[sqlite3_value_type(pMem)-1]; } /* ** Execute as much of a VDBE program as we can. ** This is the core of sqlite3_step(). */ SQLITE_PRIVATE int sqlite3VdbeExec( Vdbe *p /* The VDBE */ ){ Op *aOp = p->aOp; /* Copy of p->aOp */ Op *pOp = aOp; /* Current operation */ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) Op *pOrigOp; /* Value of pOp at the top of the loop */ #endif #ifdef SQLITE_DEBUG int nExtraDelete = 0; /* Verifies FORDELETE and AUXDELETE flags */ #endif int rc = SQLITE_OK; /* Value to return */ sqlite3 *db = p->db; /* The database */ u8 resetSchemaOnFault = 0; /* Reset schema after an error if positive */ u8 encoding = ENC(db); /* The database encoding */ int iCompare = 0; /* Result of last comparison */ u64 nVmStep = 0; /* Number of virtual machine steps */ #ifndef SQLITE_OMIT_PROGRESS_CALLBACK u64 nProgressLimit; /* Invoke xProgress() when nVmStep reaches this */ #endif Mem *aMem = p->aMem; /* Copy of p->aMem */ Mem *pIn1 = 0; /* 1st input operand */ Mem *pIn2 = 0; /* 2nd input operand */ Mem *pIn3 = 0; /* 3rd input operand */ Mem *pOut = 0; /* Output operand */ #ifdef VDBE_PROFILE u64 start; /* CPU clock count at start of opcode */ #endif /*** INSERT STACK UNION HERE ***/ assert( p->iVdbeMagic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */ sqlite3VdbeEnter(p); #ifndef SQLITE_OMIT_PROGRESS_CALLBACK if( db->xProgress ){ u32 iPrior = p->aCounter[SQLITE_STMTSTATUS_VM_STEP]; assert( 0 < db->nProgressOps ); nProgressLimit = db->nProgressOps - (iPrior % db->nProgressOps); }else{ nProgressLimit = LARGEST_UINT64; } #endif if( p->rc==SQLITE_NOMEM ){ /* This happens if a malloc() inside a call to sqlite3_column_text() or ** sqlite3_column_text16() failed. */ goto no_mem; } assert( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_BUSY ); testcase( p->rc!=SQLITE_OK ); p->rc = SQLITE_OK; assert( p->bIsReader || p->readOnly!=0 ); p->iCurrentTime = 0; assert( p->explain==0 ); p->pResultSet = 0; db->busyHandler.nBusy = 0; if( AtomicLoad(&db->u1.isInterrupted) ) goto abort_due_to_interrupt; sqlite3VdbeIOTraceSql(p); #ifdef SQLITE_DEBUG sqlite3BeginBenignMalloc(); if( p->pc==0 && (p->db->flags & (SQLITE_VdbeListing|SQLITE_VdbeEQP|SQLITE_VdbeTrace))!=0 ){ int i; int once = 1; sqlite3VdbePrintSql(p); if( p->db->flags & SQLITE_VdbeListing ){ printf("VDBE Program Listing:\n"); for(i=0; inOp; i++){ sqlite3VdbePrintOp(stdout, i, &aOp[i]); } } if( p->db->flags & SQLITE_VdbeEQP ){ for(i=0; inOp; i++){ if( aOp[i].opcode==OP_Explain ){ if( once ) printf("VDBE Query Plan:\n"); printf("%s\n", aOp[i].p4.z); once = 0; } } } if( p->db->flags & SQLITE_VdbeTrace ) printf("VDBE Trace:\n"); } sqlite3EndBenignMalloc(); #endif for(pOp=&aOp[p->pc]; 1; pOp++){ /* Errors are detected by individual opcodes, with an immediate ** jumps to abort_due_to_error. */ assert( rc==SQLITE_OK ); assert( pOp>=aOp && pOp<&aOp[p->nOp]); #ifdef VDBE_PROFILE start = sqlite3NProfileCnt ? sqlite3NProfileCnt : sqlite3Hwtime(); #endif nVmStep++; #ifdef SQLITE_ENABLE_STMT_SCANSTATUS if( p->anExec ) p->anExec[(int)(pOp-aOp)]++; #endif /* Only allow tracing if SQLITE_DEBUG is defined. */ #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeTrace ){ sqlite3VdbePrintOp(stdout, (int)(pOp - aOp), pOp); test_trace_breakpoint((int)(pOp - aOp),pOp,p); } #endif /* Check to see if we need to simulate an interrupt. This only happens ** if we have a special test build. */ #ifdef SQLITE_TEST if( sqlite3_interrupt_count>0 ){ sqlite3_interrupt_count--; if( sqlite3_interrupt_count==0 ){ sqlite3_interrupt(db); } } #endif /* Sanity checking on other operands */ #ifdef SQLITE_DEBUG { u8 opProperty = sqlite3OpcodeProperty[pOp->opcode]; if( (opProperty & OPFLG_IN1)!=0 ){ assert( pOp->p1>0 ); assert( pOp->p1<=(p->nMem+1 - p->nCursor) ); assert( memIsValid(&aMem[pOp->p1]) ); assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p1]) ); REGISTER_TRACE(pOp->p1, &aMem[pOp->p1]); } if( (opProperty & OPFLG_IN2)!=0 ){ assert( pOp->p2>0 ); assert( pOp->p2<=(p->nMem+1 - p->nCursor) ); assert( memIsValid(&aMem[pOp->p2]) ); assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p2]) ); REGISTER_TRACE(pOp->p2, &aMem[pOp->p2]); } if( (opProperty & OPFLG_IN3)!=0 ){ assert( pOp->p3>0 ); assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); assert( memIsValid(&aMem[pOp->p3]) ); assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p3]) ); REGISTER_TRACE(pOp->p3, &aMem[pOp->p3]); } if( (opProperty & OPFLG_OUT2)!=0 ){ assert( pOp->p2>0 ); assert( pOp->p2<=(p->nMem+1 - p->nCursor) ); memAboutToChange(p, &aMem[pOp->p2]); } if( (opProperty & OPFLG_OUT3)!=0 ){ assert( pOp->p3>0 ); assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); memAboutToChange(p, &aMem[pOp->p3]); } } #endif #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) pOrigOp = pOp; #endif switch( pOp->opcode ){ /***************************************************************************** ** What follows is a massive switch statement where each case implements a ** separate instruction in the virtual machine. If we follow the usual ** indentation conventions, each case should be indented by 6 spaces. But ** that is a lot of wasted space on the left margin. So the code within ** the switch statement will break with convention and be flush-left. Another ** big comment (similar to this one) will mark the point in the code where ** we transition back to normal indentation. ** ** The formatting of each case is important. The makefile for SQLite ** generates two C files "opcodes.h" and "opcodes.c" by scanning this ** file looking for lines that begin with "case OP_". The opcodes.h files ** will be filled with #defines that give unique integer values to each ** opcode and the opcodes.c file is filled with an array of strings where ** each string is the symbolic name for the corresponding opcode. If the ** case statement is followed by a comment of the form "/# same as ... #/" ** that comment is used to determine the particular value of the opcode. ** ** Other keywords in the comment that follows each case are used to ** construct the OPFLG_INITIALIZER value that initializes opcodeProperty[]. ** Keywords include: in1, in2, in3, out2, out3. See ** the mkopcodeh.awk script for additional information. ** ** Documentation about VDBE opcodes is generated by scanning this file ** for lines of that contain "Opcode:". That line and all subsequent ** comment lines are used in the generation of the opcode.html documentation ** file. ** ** SUMMARY: ** ** Formatting is important to scripts that scan this file. ** Do not deviate from the formatting style currently in use. ** *****************************************************************************/ /* Opcode: Goto * P2 * * * ** ** An unconditional jump to address P2. ** The next instruction executed will be ** the one at index P2 from the beginning of ** the program. ** ** The P1 parameter is not actually used by this opcode. However, it ** is sometimes set to 1 instead of 0 as a hint to the command-line shell ** that this Goto is the bottom of a loop and that the lines from P2 down ** to the current line should be indented for EXPLAIN output. */ case OP_Goto: { /* jump */ #ifdef SQLITE_DEBUG /* In debuggging mode, when the p5 flags is set on an OP_Goto, that ** means we should really jump back to the preceeding OP_ReleaseReg ** instruction. */ if( pOp->p5 ){ assert( pOp->p2 < (int)(pOp - aOp) ); assert( pOp->p2 > 1 ); pOp = &aOp[pOp->p2 - 2]; assert( pOp[1].opcode==OP_ReleaseReg ); goto check_for_interrupt; } #endif jump_to_p2_and_check_for_interrupt: pOp = &aOp[pOp->p2 - 1]; /* Opcodes that are used as the bottom of a loop (OP_Next, OP_Prev, ** OP_VNext, or OP_SorterNext) all jump here upon ** completion. Check to see if sqlite3_interrupt() has been called ** or if the progress callback needs to be invoked. ** ** This code uses unstructured "goto" statements and does not look clean. ** But that is not due to sloppy coding habits. The code is written this ** way for performance, to avoid having to run the interrupt and progress ** checks on every opcode. This helps sqlite3_step() to run about 1.5% ** faster according to "valgrind --tool=cachegrind" */ check_for_interrupt: if( AtomicLoad(&db->u1.isInterrupted) ) goto abort_due_to_interrupt; #ifndef SQLITE_OMIT_PROGRESS_CALLBACK /* Call the progress callback if it is configured and the required number ** of VDBE ops have been executed (either since this invocation of ** sqlite3VdbeExec() or since last time the progress callback was called). ** If the progress callback returns non-zero, exit the virtual machine with ** a return code SQLITE_ABORT. */ while( nVmStep>=nProgressLimit && db->xProgress!=0 ){ assert( db->nProgressOps!=0 ); nProgressLimit += db->nProgressOps; if( db->xProgress(db->pProgressArg) ){ nProgressLimit = LARGEST_UINT64; rc = SQLITE_INTERRUPT; goto abort_due_to_error; } } #endif break; } /* Opcode: Gosub P1 P2 * * * ** ** Write the current address onto register P1 ** and then jump to address P2. */ case OP_Gosub: { /* jump */ assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); pIn1 = &aMem[pOp->p1]; assert( VdbeMemDynamic(pIn1)==0 ); memAboutToChange(p, pIn1); pIn1->flags = MEM_Int; pIn1->u.i = (int)(pOp-aOp); REGISTER_TRACE(pOp->p1, pIn1); /* Most jump operations do a goto to this spot in order to update ** the pOp pointer. */ jump_to_p2: pOp = &aOp[pOp->p2 - 1]; break; } /* Opcode: Return P1 * * * * ** ** Jump to the next instruction after the address in register P1. After ** the jump, register P1 becomes undefined. */ case OP_Return: { /* in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags==MEM_Int ); pOp = &aOp[pIn1->u.i]; pIn1->flags = MEM_Undefined; break; } /* Opcode: InitCoroutine P1 P2 P3 * * ** ** Set up register P1 so that it will Yield to the coroutine ** located at address P3. ** ** If P2!=0 then the coroutine implementation immediately follows ** this opcode. So jump over the coroutine implementation to ** address P2. ** ** See also: EndCoroutine */ case OP_InitCoroutine: { /* jump */ assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); assert( pOp->p2>=0 && pOp->p2nOp ); assert( pOp->p3>=0 && pOp->p3nOp ); pOut = &aMem[pOp->p1]; assert( !VdbeMemDynamic(pOut) ); pOut->u.i = pOp->p3 - 1; pOut->flags = MEM_Int; if( pOp->p2 ) goto jump_to_p2; break; } /* Opcode: EndCoroutine P1 * * * * ** ** The instruction at the address in register P1 is a Yield. ** Jump to the P2 parameter of that Yield. ** After the jump, register P1 becomes undefined. ** ** See also: InitCoroutine */ case OP_EndCoroutine: { /* in1 */ VdbeOp *pCaller; pIn1 = &aMem[pOp->p1]; assert( pIn1->flags==MEM_Int ); assert( pIn1->u.i>=0 && pIn1->u.inOp ); pCaller = &aOp[pIn1->u.i]; assert( pCaller->opcode==OP_Yield ); assert( pCaller->p2>=0 && pCaller->p2nOp ); pOp = &aOp[pCaller->p2 - 1]; pIn1->flags = MEM_Undefined; break; } /* Opcode: Yield P1 P2 * * * ** ** Swap the program counter with the value in register P1. This ** has the effect of yielding to a coroutine. ** ** If the coroutine that is launched by this instruction ends with ** Yield or Return then continue to the next instruction. But if ** the coroutine launched by this instruction ends with ** EndCoroutine, then jump to P2 rather than continuing with the ** next instruction. ** ** See also: InitCoroutine */ case OP_Yield: { /* in1, jump */ int pcDest; pIn1 = &aMem[pOp->p1]; assert( VdbeMemDynamic(pIn1)==0 ); pIn1->flags = MEM_Int; pcDest = (int)pIn1->u.i; pIn1->u.i = (int)(pOp - aOp); REGISTER_TRACE(pOp->p1, pIn1); pOp = &aOp[pcDest]; break; } /* Opcode: HaltIfNull P1 P2 P3 P4 P5 ** Synopsis: if r[P3]=null halt ** ** Check the value in register P3. If it is NULL then Halt using ** parameter P1, P2, and P4 as if this were a Halt instruction. If the ** value in register P3 is not NULL, then this routine is a no-op. ** The P5 parameter should be 1. */ case OP_HaltIfNull: { /* in3 */ pIn3 = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG if( pOp->p2==OE_Abort ){ sqlite3VdbeAssertAbortable(p); } #endif if( (pIn3->flags & MEM_Null)==0 ) break; /* Fall through into OP_Halt */ /* no break */ deliberate_fall_through } /* Opcode: Halt P1 P2 * P4 P5 ** ** Exit immediately. All open cursors, etc are closed ** automatically. ** ** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(), ** or sqlite3_finalize(). For a normal halt, this should be SQLITE_OK (0). ** For errors, it can be some other value. If P1!=0 then P2 will determine ** whether or not to rollback the current transaction. Do not rollback ** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort, ** then back out all changes that have occurred during this execution of the ** VDBE, but do not rollback the transaction. ** ** If P4 is not null then it is an error message string. ** ** P5 is a value between 0 and 4, inclusive, that modifies the P4 string. ** ** 0: (no change) ** 1: NOT NULL contraint failed: P4 ** 2: UNIQUE constraint failed: P4 ** 3: CHECK constraint failed: P4 ** 4: FOREIGN KEY constraint failed: P4 ** ** If P5 is not zero and P4 is NULL, then everything after the ":" is ** omitted. ** ** There is an implied "Halt 0 0 0" instruction inserted at the very end of ** every program. So a jump past the last instruction of the program ** is the same as executing Halt. */ case OP_Halt: { VdbeFrame *pFrame; int pcx; pcx = (int)(pOp - aOp); #ifdef SQLITE_DEBUG if( pOp->p2==OE_Abort ){ sqlite3VdbeAssertAbortable(p); } #endif if( pOp->p1==SQLITE_OK && p->pFrame ){ /* Halt the sub-program. Return control to the parent frame. */ pFrame = p->pFrame; p->pFrame = pFrame->pParent; p->nFrame--; sqlite3VdbeSetChanges(db, p->nChange); pcx = sqlite3VdbeFrameRestore(pFrame); if( pOp->p2==OE_Ignore ){ /* Instruction pcx is the OP_Program that invoked the sub-program ** currently being halted. If the p2 instruction of this OP_Halt ** instruction is set to OE_Ignore, then the sub-program is throwing ** an IGNORE exception. In this case jump to the address specified ** as the p2 of the calling OP_Program. */ pcx = p->aOp[pcx].p2-1; } aOp = p->aOp; aMem = p->aMem; pOp = &aOp[pcx]; break; } p->rc = pOp->p1; p->errorAction = (u8)pOp->p2; p->pc = pcx; assert( pOp->p5<=4 ); if( p->rc ){ if( pOp->p5 ){ static const char * const azType[] = { "NOT NULL", "UNIQUE", "CHECK", "FOREIGN KEY" }; testcase( pOp->p5==1 ); testcase( pOp->p5==2 ); testcase( pOp->p5==3 ); testcase( pOp->p5==4 ); sqlite3VdbeError(p, "%s constraint failed", azType[pOp->p5-1]); if( pOp->p4.z ){ p->zErrMsg = sqlite3MPrintf(db, "%z: %s", p->zErrMsg, pOp->p4.z); } }else{ sqlite3VdbeError(p, "%s", pOp->p4.z); } sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pcx, p->zSql, p->zErrMsg); } rc = sqlite3VdbeHalt(p); assert( rc==SQLITE_BUSY || rc==SQLITE_OK || rc==SQLITE_ERROR ); if( rc==SQLITE_BUSY ){ p->rc = SQLITE_BUSY; }else{ assert( rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ); assert( rc==SQLITE_OK || db->nDeferredCons>0 || db->nDeferredImmCons>0 ); rc = p->rc ? SQLITE_ERROR : SQLITE_DONE; } goto vdbe_return; } /* Opcode: Integer P1 P2 * * * ** Synopsis: r[P2]=P1 ** ** The 32-bit integer value P1 is written into register P2. */ case OP_Integer: { /* out2 */ pOut = out2Prerelease(p, pOp); pOut->u.i = pOp->p1; break; } /* Opcode: Int64 * P2 * P4 * ** Synopsis: r[P2]=P4 ** ** P4 is a pointer to a 64-bit integer value. ** Write that value into register P2. */ case OP_Int64: { /* out2 */ pOut = out2Prerelease(p, pOp); assert( pOp->p4.pI64!=0 ); pOut->u.i = *pOp->p4.pI64; break; } #ifndef SQLITE_OMIT_FLOATING_POINT /* Opcode: Real * P2 * P4 * ** Synopsis: r[P2]=P4 ** ** P4 is a pointer to a 64-bit floating point value. ** Write that value into register P2. */ case OP_Real: { /* same as TK_FLOAT, out2 */ pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Real; assert( !sqlite3IsNaN(*pOp->p4.pReal) ); pOut->u.r = *pOp->p4.pReal; break; } #endif /* Opcode: String8 * P2 * P4 * ** Synopsis: r[P2]='P4' ** ** P4 points to a nul terminated UTF-8 string. This opcode is transformed ** into a String opcode before it is executed for the first time. During ** this transformation, the length of string P4 is computed and stored ** as the P1 parameter. */ case OP_String8: { /* same as TK_STRING, out2 */ assert( pOp->p4.z!=0 ); pOut = out2Prerelease(p, pOp); pOp->p1 = sqlite3Strlen30(pOp->p4.z); #ifndef SQLITE_OMIT_UTF16 if( encoding!=SQLITE_UTF8 ){ rc = sqlite3VdbeMemSetStr(pOut, pOp->p4.z, -1, SQLITE_UTF8, SQLITE_STATIC); assert( rc==SQLITE_OK || rc==SQLITE_TOOBIG ); if( rc ) goto too_big; if( SQLITE_OK!=sqlite3VdbeChangeEncoding(pOut, encoding) ) goto no_mem; assert( pOut->szMalloc>0 && pOut->zMalloc==pOut->z ); assert( VdbeMemDynamic(pOut)==0 ); pOut->szMalloc = 0; pOut->flags |= MEM_Static; if( pOp->p4type==P4_DYNAMIC ){ sqlite3DbFree(db, pOp->p4.z); } pOp->p4type = P4_DYNAMIC; pOp->p4.z = pOut->z; pOp->p1 = pOut->n; } #endif if( pOp->p1>db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } pOp->opcode = OP_String; assert( rc==SQLITE_OK ); /* Fall through to the next case, OP_String */ /* no break */ deliberate_fall_through } /* Opcode: String P1 P2 P3 P4 P5 ** Synopsis: r[P2]='P4' (len=P1) ** ** The string value P4 of length P1 (bytes) is stored in register P2. ** ** If P3 is not zero and the content of register P3 is equal to P5, then ** the datatype of the register P2 is converted to BLOB. The content is ** the same sequence of bytes, it is merely interpreted as a BLOB instead ** of a string, as if it had been CAST. In other words: ** ** if( P3!=0 and reg[P3]==P5 ) reg[P2] := CAST(reg[P2] as BLOB) */ case OP_String: { /* out2 */ assert( pOp->p4.z!=0 ); pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Str|MEM_Static|MEM_Term; pOut->z = pOp->p4.z; pOut->n = pOp->p1; pOut->enc = encoding; UPDATE_MAX_BLOBSIZE(pOut); #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( pOp->p3>0 ){ assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); pIn3 = &aMem[pOp->p3]; assert( pIn3->flags & MEM_Int ); if( pIn3->u.i==pOp->p5 ) pOut->flags = MEM_Blob|MEM_Static|MEM_Term; } #endif break; } /* Opcode: Null P1 P2 P3 * * ** Synopsis: r[P2..P3]=NULL ** ** Write a NULL into registers P2. If P3 greater than P2, then also write ** NULL into register P3 and every register in between P2 and P3. If P3 ** is less than P2 (typically P3 is zero) then only register P2 is ** set to NULL. ** ** If the P1 value is non-zero, then also set the MEM_Cleared flag so that ** NULL values will not compare equal even if SQLITE_NULLEQ is set on ** OP_Ne or OP_Eq. */ case OP_Null: { /* out2 */ int cnt; u16 nullFlag; pOut = out2Prerelease(p, pOp); cnt = pOp->p3-pOp->p2; assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); pOut->flags = nullFlag = pOp->p1 ? (MEM_Null|MEM_Cleared) : MEM_Null; pOut->n = 0; #ifdef SQLITE_DEBUG pOut->uTemp = 0; #endif while( cnt>0 ){ pOut++; memAboutToChange(p, pOut); sqlite3VdbeMemSetNull(pOut); pOut->flags = nullFlag; pOut->n = 0; cnt--; } break; } /* Opcode: SoftNull P1 * * * * ** Synopsis: r[P1]=NULL ** ** Set register P1 to have the value NULL as seen by the OP_MakeRecord ** instruction, but do not free any string or blob memory associated with ** the register, so that if the value was a string or blob that was ** previously copied using OP_SCopy, the copies will continue to be valid. */ case OP_SoftNull: { assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); pOut = &aMem[pOp->p1]; pOut->flags = (pOut->flags&~(MEM_Undefined|MEM_AffMask))|MEM_Null; break; } /* Opcode: Blob P1 P2 * P4 * ** Synopsis: r[P2]=P4 (len=P1) ** ** P4 points to a blob of data P1 bytes long. Store this ** blob in register P2. If P4 is a NULL pointer, then construct ** a zero-filled blob that is P1 bytes long in P2. */ case OP_Blob: { /* out2 */ assert( pOp->p1 <= SQLITE_MAX_LENGTH ); pOut = out2Prerelease(p, pOp); if( pOp->p4.z==0 ){ sqlite3VdbeMemSetZeroBlob(pOut, pOp->p1); if( sqlite3VdbeMemExpandBlob(pOut) ) goto no_mem; }else{ sqlite3VdbeMemSetStr(pOut, pOp->p4.z, pOp->p1, 0, 0); } pOut->enc = encoding; UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Variable P1 P2 * P4 * ** Synopsis: r[P2]=parameter(P1,P4) ** ** Transfer the values of bound parameter P1 into register P2 ** ** If the parameter is named, then its name appears in P4. ** The P4 value is used by sqlite3_bind_parameter_name(). */ case OP_Variable: { /* out2 */ Mem *pVar; /* Value being transferred */ assert( pOp->p1>0 && pOp->p1<=p->nVar ); assert( pOp->p4.z==0 || pOp->p4.z==sqlite3VListNumToName(p->pVList,pOp->p1) ); pVar = &p->aVar[pOp->p1 - 1]; if( sqlite3VdbeMemTooBig(pVar) ){ goto too_big; } pOut = &aMem[pOp->p2]; if( VdbeMemDynamic(pOut) ) sqlite3VdbeMemSetNull(pOut); memcpy(pOut, pVar, MEMCELLSIZE); pOut->flags &= ~(MEM_Dyn|MEM_Ephem); pOut->flags |= MEM_Static|MEM_FromBind; UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Move P1 P2 P3 * * ** Synopsis: r[P2@P3]=r[P1@P3] ** ** Move the P3 values in register P1..P1+P3-1 over into ** registers P2..P2+P3-1. Registers P1..P1+P3-1 are ** left holding a NULL. It is an error for register ranges ** P1..P1+P3-1 and P2..P2+P3-1 to overlap. It is an error ** for P3 to be less than 1. */ case OP_Move: { int n; /* Number of registers left to copy */ int p1; /* Register to copy from */ int p2; /* Register to copy to */ n = pOp->p3; p1 = pOp->p1; p2 = pOp->p2; assert( n>0 && p1>0 && p2>0 ); assert( p1+n<=p2 || p2+n<=p1 ); pIn1 = &aMem[p1]; pOut = &aMem[p2]; do{ assert( pOut<=&aMem[(p->nMem+1 - p->nCursor)] ); assert( pIn1<=&aMem[(p->nMem+1 - p->nCursor)] ); assert( memIsValid(pIn1) ); memAboutToChange(p, pOut); sqlite3VdbeMemMove(pOut, pIn1); #ifdef SQLITE_DEBUG pIn1->pScopyFrom = 0; { int i; for(i=1; inMem; i++){ if( aMem[i].pScopyFrom==pIn1 ){ aMem[i].pScopyFrom = pOut; } } } #endif Deephemeralize(pOut); REGISTER_TRACE(p2++, pOut); pIn1++; pOut++; }while( --n ); break; } /* Opcode: Copy P1 P2 P3 * * ** Synopsis: r[P2@P3+1]=r[P1@P3+1] ** ** Make a copy of registers P1..P1+P3 into registers P2..P2+P3. ** ** This instruction makes a deep copy of the value. A duplicate ** is made of any string or blob constant. See also OP_SCopy. */ case OP_Copy: { int n; n = pOp->p3; pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; assert( pOut!=pIn1 ); while( 1 ){ memAboutToChange(p, pOut); sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem); Deephemeralize(pOut); #ifdef SQLITE_DEBUG pOut->pScopyFrom = 0; #endif REGISTER_TRACE(pOp->p2+pOp->p3-n, pOut); if( (n--)==0 ) break; pOut++; pIn1++; } break; } /* Opcode: SCopy P1 P2 * * * ** Synopsis: r[P2]=r[P1] ** ** Make a shallow copy of register P1 into register P2. ** ** This instruction makes a shallow copy of the value. If the value ** is a string or blob, then the copy is only a pointer to the ** original and hence if the original changes so will the copy. ** Worse, if the original is deallocated, the copy becomes invalid. ** Thus the program must guarantee that the original will not change ** during the lifetime of the copy. Use OP_Copy to make a complete ** copy. */ case OP_SCopy: { /* out2 */ pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; assert( pOut!=pIn1 ); sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem); #ifdef SQLITE_DEBUG pOut->pScopyFrom = pIn1; pOut->mScopyFlags = pIn1->flags; #endif break; } /* Opcode: IntCopy P1 P2 * * * ** Synopsis: r[P2]=r[P1] ** ** Transfer the integer value held in register P1 into register P2. ** ** This is an optimized version of SCopy that works only for integer ** values. */ case OP_IntCopy: { /* out2 */ pIn1 = &aMem[pOp->p1]; assert( (pIn1->flags & MEM_Int)!=0 ); pOut = &aMem[pOp->p2]; sqlite3VdbeMemSetInt64(pOut, pIn1->u.i); break; } /* Opcode: FkCheck * * * * * ** ** Halt with an SQLITE_CONSTRAINT error if there are any unresolved ** foreign key constraint violations. If there are no foreign key ** constraint violations, this is a no-op. ** ** FK constraint violations are also checked when the prepared statement ** exits. This opcode is used to raise foreign key constraint errors prior ** to returning results such as a row change count or the result of a ** RETURNING clause. */ case OP_FkCheck: { if( (rc = sqlite3VdbeCheckFk(p,0))!=SQLITE_OK ){ goto abort_due_to_error; } break; } /* Opcode: ResultRow P1 P2 * * * ** Synopsis: output=r[P1@P2] ** ** The registers P1 through P1+P2-1 contain a single row of ** results. This opcode causes the sqlite3_step() call to terminate ** with an SQLITE_ROW return code and it sets up the sqlite3_stmt ** structure to provide access to the r(P1)..r(P1+P2-1) values as ** the result row. */ case OP_ResultRow: { Mem *pMem; int i; assert( p->nResColumn==pOp->p2 ); assert( pOp->p1>0 || CORRUPT_DB ); assert( pOp->p1+pOp->p2<=(p->nMem+1 - p->nCursor)+1 ); /* Invalidate all ephemeral cursor row caches */ p->cacheCtr = (p->cacheCtr + 2)|1; /* Make sure the results of the current row are \000 terminated ** and have an assigned type. The results are de-ephemeralized as ** a side effect. */ pMem = p->pResultSet = &aMem[pOp->p1]; for(i=0; ip2; i++){ assert( memIsValid(&pMem[i]) ); Deephemeralize(&pMem[i]); assert( (pMem[i].flags & MEM_Ephem)==0 || (pMem[i].flags & (MEM_Str|MEM_Blob))==0 ); sqlite3VdbeMemNulTerminate(&pMem[i]); REGISTER_TRACE(pOp->p1+i, &pMem[i]); #ifdef SQLITE_DEBUG /* The registers in the result will not be used again when the ** prepared statement restarts. This is because sqlite3_column() ** APIs might have caused type conversions of made other changes to ** the register values. Therefore, we can go ahead and break any ** OP_SCopy dependencies. */ pMem[i].pScopyFrom = 0; #endif } if( db->mallocFailed ) goto no_mem; if( db->mTrace & SQLITE_TRACE_ROW ){ db->trace.xV2(SQLITE_TRACE_ROW, db->pTraceArg, p, 0); } /* Return SQLITE_ROW */ p->pc = (int)(pOp - aOp) + 1; rc = SQLITE_ROW; goto vdbe_return; } /* Opcode: Concat P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]+r[P1] ** ** Add the text in register P1 onto the end of the text in ** register P2 and store the result in register P3. ** If either the P1 or P2 text are NULL then store NULL in P3. ** ** P3 = P2 || P1 ** ** It is illegal for P1 and P3 to be the same register. Sometimes, ** if P3 is the same register as P2, the implementation is able ** to avoid a memcpy(). */ case OP_Concat: { /* same as TK_CONCAT, in1, in2, out3 */ i64 nByte; /* Total size of the output string or blob */ u16 flags1; /* Initial flags for P1 */ u16 flags2; /* Initial flags for P2 */ pIn1 = &aMem[pOp->p1]; pIn2 = &aMem[pOp->p2]; pOut = &aMem[pOp->p3]; testcase( pOut==pIn2 ); assert( pIn1!=pOut ); flags1 = pIn1->flags; testcase( flags1 & MEM_Null ); testcase( pIn2->flags & MEM_Null ); if( (flags1 | pIn2->flags) & MEM_Null ){ sqlite3VdbeMemSetNull(pOut); break; } if( (flags1 & (MEM_Str|MEM_Blob))==0 ){ if( sqlite3VdbeMemStringify(pIn1,encoding,0) ) goto no_mem; flags1 = pIn1->flags & ~MEM_Str; }else if( (flags1 & MEM_Zero)!=0 ){ if( sqlite3VdbeMemExpandBlob(pIn1) ) goto no_mem; flags1 = pIn1->flags & ~MEM_Str; } flags2 = pIn2->flags; if( (flags2 & (MEM_Str|MEM_Blob))==0 ){ if( sqlite3VdbeMemStringify(pIn2,encoding,0) ) goto no_mem; flags2 = pIn2->flags & ~MEM_Str; }else if( (flags2 & MEM_Zero)!=0 ){ if( sqlite3VdbeMemExpandBlob(pIn2) ) goto no_mem; flags2 = pIn2->flags & ~MEM_Str; } nByte = pIn1->n + pIn2->n; if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } if( sqlite3VdbeMemGrow(pOut, (int)nByte+3, pOut==pIn2) ){ goto no_mem; } MemSetTypeFlag(pOut, MEM_Str); if( pOut!=pIn2 ){ memcpy(pOut->z, pIn2->z, pIn2->n); assert( (pIn2->flags & MEM_Dyn) == (flags2 & MEM_Dyn) ); pIn2->flags = flags2; } memcpy(&pOut->z[pIn2->n], pIn1->z, pIn1->n); assert( (pIn1->flags & MEM_Dyn) == (flags1 & MEM_Dyn) ); pIn1->flags = flags1; pOut->z[nByte]=0; pOut->z[nByte+1] = 0; pOut->z[nByte+2] = 0; pOut->flags |= MEM_Term; pOut->n = (int)nByte; pOut->enc = encoding; UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Add P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]+r[P2] ** ** Add the value in register P1 to the value in register P2 ** and store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: Multiply P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]*r[P2] ** ** ** Multiply the value in register P1 by the value in register P2 ** and store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: Subtract P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]-r[P1] ** ** Subtract the value in register P1 from the value in register P2 ** and store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: Divide P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]/r[P1] ** ** Divide the value in register P1 by the value in register P2 ** and store the result in register P3 (P3=P2/P1). If the value in ** register P1 is zero, then the result is NULL. If either input is ** NULL, the result is NULL. */ /* Opcode: Remainder P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]%r[P1] ** ** Compute the remainder after integer register P2 is divided by ** register P1 and store the result in register P3. ** If the value in register P1 is zero the result is NULL. ** If either operand is NULL, the result is NULL. */ case OP_Add: /* same as TK_PLUS, in1, in2, out3 */ case OP_Subtract: /* same as TK_MINUS, in1, in2, out3 */ case OP_Multiply: /* same as TK_STAR, in1, in2, out3 */ case OP_Divide: /* same as TK_SLASH, in1, in2, out3 */ case OP_Remainder: { /* same as TK_REM, in1, in2, out3 */ u16 flags; /* Combined MEM_* flags from both inputs */ u16 type1; /* Numeric type of left operand */ u16 type2; /* Numeric type of right operand */ i64 iA; /* Integer value of left operand */ i64 iB; /* Integer value of right operand */ double rA; /* Real value of left operand */ double rB; /* Real value of right operand */ pIn1 = &aMem[pOp->p1]; type1 = numericType(pIn1); pIn2 = &aMem[pOp->p2]; type2 = numericType(pIn2); pOut = &aMem[pOp->p3]; flags = pIn1->flags | pIn2->flags; if( (type1 & type2 & MEM_Int)!=0 ){ iA = pIn1->u.i; iB = pIn2->u.i; switch( pOp->opcode ){ case OP_Add: if( sqlite3AddInt64(&iB,iA) ) goto fp_math; break; case OP_Subtract: if( sqlite3SubInt64(&iB,iA) ) goto fp_math; break; case OP_Multiply: if( sqlite3MulInt64(&iB,iA) ) goto fp_math; break; case OP_Divide: { if( iA==0 ) goto arithmetic_result_is_null; if( iA==-1 && iB==SMALLEST_INT64 ) goto fp_math; iB /= iA; break; } default: { if( iA==0 ) goto arithmetic_result_is_null; if( iA==-1 ) iA = 1; iB %= iA; break; } } pOut->u.i = iB; MemSetTypeFlag(pOut, MEM_Int); }else if( (flags & MEM_Null)!=0 ){ goto arithmetic_result_is_null; }else{ fp_math: rA = sqlite3VdbeRealValue(pIn1); rB = sqlite3VdbeRealValue(pIn2); switch( pOp->opcode ){ case OP_Add: rB += rA; break; case OP_Subtract: rB -= rA; break; case OP_Multiply: rB *= rA; break; case OP_Divide: { /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ if( rA==(double)0 ) goto arithmetic_result_is_null; rB /= rA; break; } default: { iA = sqlite3VdbeIntValue(pIn1); iB = sqlite3VdbeIntValue(pIn2); if( iA==0 ) goto arithmetic_result_is_null; if( iA==-1 ) iA = 1; rB = (double)(iB % iA); break; } } #ifdef SQLITE_OMIT_FLOATING_POINT pOut->u.i = rB; MemSetTypeFlag(pOut, MEM_Int); #else if( sqlite3IsNaN(rB) ){ goto arithmetic_result_is_null; } pOut->u.r = rB; MemSetTypeFlag(pOut, MEM_Real); #endif } break; arithmetic_result_is_null: sqlite3VdbeMemSetNull(pOut); break; } /* Opcode: CollSeq P1 * * P4 ** ** P4 is a pointer to a CollSeq object. If the next call to a user function ** or aggregate calls sqlite3GetFuncCollSeq(), this collation sequence will ** be returned. This is used by the built-in min(), max() and nullif() ** functions. ** ** If P1 is not zero, then it is a register that a subsequent min() or ** max() aggregate will set to 1 if the current row is not the minimum or ** maximum. The P1 register is initialized to 0 by this instruction. ** ** The interface used by the implementation of the aforementioned functions ** to retrieve the collation sequence set by this opcode is not available ** publicly. Only built-in functions have access to this feature. */ case OP_CollSeq: { assert( pOp->p4type==P4_COLLSEQ ); if( pOp->p1 ){ sqlite3VdbeMemSetInt64(&aMem[pOp->p1], 0); } break; } /* Opcode: BitAnd P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]&r[P2] ** ** Take the bit-wise AND of the values in register P1 and P2 and ** store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: BitOr P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]|r[P2] ** ** Take the bit-wise OR of the values in register P1 and P2 and ** store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: ShiftLeft P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]<>r[P1] ** ** Shift the integer value in register P2 to the right by the ** number of bits specified by the integer in register P1. ** Store the result in register P3. ** If either input is NULL, the result is NULL. */ case OP_BitAnd: /* same as TK_BITAND, in1, in2, out3 */ case OP_BitOr: /* same as TK_BITOR, in1, in2, out3 */ case OP_ShiftLeft: /* same as TK_LSHIFT, in1, in2, out3 */ case OP_ShiftRight: { /* same as TK_RSHIFT, in1, in2, out3 */ i64 iA; u64 uA; i64 iB; u8 op; pIn1 = &aMem[pOp->p1]; pIn2 = &aMem[pOp->p2]; pOut = &aMem[pOp->p3]; if( (pIn1->flags | pIn2->flags) & MEM_Null ){ sqlite3VdbeMemSetNull(pOut); break; } iA = sqlite3VdbeIntValue(pIn2); iB = sqlite3VdbeIntValue(pIn1); op = pOp->opcode; if( op==OP_BitAnd ){ iA &= iB; }else if( op==OP_BitOr ){ iA |= iB; }else if( iB!=0 ){ assert( op==OP_ShiftRight || op==OP_ShiftLeft ); /* If shifting by a negative amount, shift in the other direction */ if( iB<0 ){ assert( OP_ShiftRight==OP_ShiftLeft+1 ); op = 2*OP_ShiftLeft + 1 - op; iB = iB>(-64) ? -iB : 64; } if( iB>=64 ){ iA = (iA>=0 || op==OP_ShiftLeft) ? 0 : -1; }else{ memcpy(&uA, &iA, sizeof(uA)); if( op==OP_ShiftLeft ){ uA <<= iB; }else{ uA >>= iB; /* Sign-extend on a right shift of a negative number */ if( iA<0 ) uA |= ((((u64)0xffffffff)<<32)|0xffffffff) << (64-iB); } memcpy(&iA, &uA, sizeof(iA)); } } pOut->u.i = iA; MemSetTypeFlag(pOut, MEM_Int); break; } /* Opcode: AddImm P1 P2 * * * ** Synopsis: r[P1]=r[P1]+P2 ** ** Add the constant P2 to the value in register P1. ** The result is always an integer. ** ** To force any register to be an integer, just add 0. */ case OP_AddImm: { /* in1 */ pIn1 = &aMem[pOp->p1]; memAboutToChange(p, pIn1); sqlite3VdbeMemIntegerify(pIn1); pIn1->u.i += pOp->p2; break; } /* Opcode: MustBeInt P1 P2 * * * ** ** Force the value in register P1 to be an integer. If the value ** in P1 is not an integer and cannot be converted into an integer ** without data loss, then jump immediately to P2, or if P2==0 ** raise an SQLITE_MISMATCH exception. */ case OP_MustBeInt: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; if( (pIn1->flags & MEM_Int)==0 ){ applyAffinity(pIn1, SQLITE_AFF_NUMERIC, encoding); if( (pIn1->flags & MEM_Int)==0 ){ VdbeBranchTaken(1, 2); if( pOp->p2==0 ){ rc = SQLITE_MISMATCH; goto abort_due_to_error; }else{ goto jump_to_p2; } } } VdbeBranchTaken(0, 2); MemSetTypeFlag(pIn1, MEM_Int); break; } #ifndef SQLITE_OMIT_FLOATING_POINT /* Opcode: RealAffinity P1 * * * * ** ** If register P1 holds an integer convert it to a real value. ** ** This opcode is used when extracting information from a column that ** has REAL affinity. Such column values may still be stored as ** integers, for space efficiency, but after extraction we want them ** to have only a real value. */ case OP_RealAffinity: { /* in1 */ pIn1 = &aMem[pOp->p1]; if( pIn1->flags & (MEM_Int|MEM_IntReal) ){ testcase( pIn1->flags & MEM_Int ); testcase( pIn1->flags & MEM_IntReal ); sqlite3VdbeMemRealify(pIn1); REGISTER_TRACE(pOp->p1, pIn1); } break; } #endif #ifndef SQLITE_OMIT_CAST /* Opcode: Cast P1 P2 * * * ** Synopsis: affinity(r[P1]) ** ** Force the value in register P1 to be the type defined by P2. ** **
      **
    • P2=='A' → BLOB **
    • P2=='B' → TEXT **
    • P2=='C' → NUMERIC **
    • P2=='D' → INTEGER **
    • P2=='E' → REAL **
    ** ** A NULL value is not changed by this routine. It remains NULL. */ case OP_Cast: { /* in1 */ assert( pOp->p2>=SQLITE_AFF_BLOB && pOp->p2<=SQLITE_AFF_REAL ); testcase( pOp->p2==SQLITE_AFF_TEXT ); testcase( pOp->p2==SQLITE_AFF_BLOB ); testcase( pOp->p2==SQLITE_AFF_NUMERIC ); testcase( pOp->p2==SQLITE_AFF_INTEGER ); testcase( pOp->p2==SQLITE_AFF_REAL ); pIn1 = &aMem[pOp->p1]; memAboutToChange(p, pIn1); rc = ExpandBlob(pIn1); if( rc ) goto abort_due_to_error; rc = sqlite3VdbeMemCast(pIn1, pOp->p2, encoding); if( rc ) goto abort_due_to_error; UPDATE_MAX_BLOBSIZE(pIn1); REGISTER_TRACE(pOp->p1, pIn1); break; } #endif /* SQLITE_OMIT_CAST */ /* Opcode: Eq P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]==r[P1] ** ** Compare the values in register P1 and P3. If reg(P3)==reg(P1) then ** jump to address P2. ** ** The SQLITE_AFF_MASK portion of P5 must be an affinity character - ** SQLITE_AFF_TEXT, SQLITE_AFF_INTEGER, and so forth. An attempt is made ** to coerce both inputs according to this affinity before the ** comparison is made. If the SQLITE_AFF_MASK is 0x00, then numeric ** affinity is used. Note that the affinity conversions are stored ** back into the input registers P1 and P3. So this opcode can cause ** persistent changes to registers P1 and P3. ** ** Once any conversions have taken place, and neither value is NULL, ** the values are compared. If both values are blobs then memcmp() is ** used to determine the results of the comparison. If both values ** are text, then the appropriate collating function specified in ** P4 is used to do the comparison. If P4 is not specified then ** memcmp() is used to compare text string. If both values are ** numeric, then a numeric comparison is used. If the two values ** are of different types, then numbers are considered less than ** strings and strings are considered less than blobs. ** ** If SQLITE_NULLEQ is set in P5 then the result of comparison is always either ** true or false and is never NULL. If both operands are NULL then the result ** of comparison is true. If either operand is NULL then the result is false. ** If neither operand is NULL the result is the same as it would be if ** the SQLITE_NULLEQ flag were omitted from P5. ** ** This opcode saves the result of comparison for use by the new ** OP_Jump opcode. */ /* Opcode: Ne P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]!=r[P1] ** ** This works just like the Eq opcode except that the jump is taken if ** the operands in registers P1 and P3 are not equal. See the Eq opcode for ** additional information. */ /* Opcode: Lt P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]r[P1] ** ** This works just like the Lt opcode except that the jump is taken if ** the content of register P3 is greater than the content of ** register P1. See the Lt opcode for additional information. */ /* Opcode: Ge P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]>=r[P1] ** ** This works just like the Lt opcode except that the jump is taken if ** the content of register P3 is greater than or equal to the content of ** register P1. See the Lt opcode for additional information. */ case OP_Eq: /* same as TK_EQ, jump, in1, in3 */ case OP_Ne: /* same as TK_NE, jump, in1, in3 */ case OP_Lt: /* same as TK_LT, jump, in1, in3 */ case OP_Le: /* same as TK_LE, jump, in1, in3 */ case OP_Gt: /* same as TK_GT, jump, in1, in3 */ case OP_Ge: { /* same as TK_GE, jump, in1, in3 */ int res, res2; /* Result of the comparison of pIn1 against pIn3 */ char affinity; /* Affinity to use for comparison */ u16 flags1; /* Copy of initial value of pIn1->flags */ u16 flags3; /* Copy of initial value of pIn3->flags */ pIn1 = &aMem[pOp->p1]; pIn3 = &aMem[pOp->p3]; flags1 = pIn1->flags; flags3 = pIn3->flags; if( (flags1 & flags3 & MEM_Int)!=0 ){ assert( (pOp->p5 & SQLITE_AFF_MASK)!=SQLITE_AFF_TEXT || CORRUPT_DB ); /* Common case of comparison of two integers */ if( pIn3->u.i > pIn1->u.i ){ iCompare = +1; if( sqlite3aGTb[pOp->opcode] ){ VdbeBranchTaken(1, (pOp->p5 & SQLITE_NULLEQ)?2:3); goto jump_to_p2; } }else if( pIn3->u.i < pIn1->u.i ){ iCompare = -1; if( sqlite3aLTb[pOp->opcode] ){ VdbeBranchTaken(1, (pOp->p5 & SQLITE_NULLEQ)?2:3); goto jump_to_p2; } }else{ iCompare = 0; if( sqlite3aEQb[pOp->opcode] ){ VdbeBranchTaken(1, (pOp->p5 & SQLITE_NULLEQ)?2:3); goto jump_to_p2; } } VdbeBranchTaken(0, (pOp->p5 & SQLITE_NULLEQ)?2:3); break; } if( (flags1 | flags3)&MEM_Null ){ /* One or both operands are NULL */ if( pOp->p5 & SQLITE_NULLEQ ){ /* If SQLITE_NULLEQ is set (which will only happen if the operator is ** OP_Eq or OP_Ne) then take the jump or not depending on whether ** or not both operands are null. */ assert( (flags1 & MEM_Cleared)==0 ); assert( (pOp->p5 & SQLITE_JUMPIFNULL)==0 || CORRUPT_DB ); testcase( (pOp->p5 & SQLITE_JUMPIFNULL)!=0 ); if( (flags1&flags3&MEM_Null)!=0 && (flags3&MEM_Cleared)==0 ){ res = 0; /* Operands are equal */ }else{ res = ((flags3 & MEM_Null) ? -1 : +1); /* Operands are not equal */ } }else{ /* SQLITE_NULLEQ is clear and at least one operand is NULL, ** then the result is always NULL. ** The jump is taken if the SQLITE_JUMPIFNULL bit is set. */ iCompare = 1; /* Operands are not equal */ VdbeBranchTaken(2,3); if( pOp->p5 & SQLITE_JUMPIFNULL ){ goto jump_to_p2; } break; } }else{ /* Neither operand is NULL and we couldn't do the special high-speed ** integer comparison case. So do a general-case comparison. */ affinity = pOp->p5 & SQLITE_AFF_MASK; if( affinity>=SQLITE_AFF_NUMERIC ){ if( (flags1 | flags3)&MEM_Str ){ if( (flags1 & (MEM_Int|MEM_IntReal|MEM_Real|MEM_Str))==MEM_Str ){ applyNumericAffinity(pIn1,0); testcase( flags3==pIn3->flags ); flags3 = pIn3->flags; } if( (flags3 & (MEM_Int|MEM_IntReal|MEM_Real|MEM_Str))==MEM_Str ){ applyNumericAffinity(pIn3,0); } } }else if( affinity==SQLITE_AFF_TEXT ){ if( (flags1 & MEM_Str)==0 && (flags1&(MEM_Int|MEM_Real|MEM_IntReal))!=0 ){ testcase( pIn1->flags & MEM_Int ); testcase( pIn1->flags & MEM_Real ); testcase( pIn1->flags & MEM_IntReal ); sqlite3VdbeMemStringify(pIn1, encoding, 1); testcase( (flags1&MEM_Dyn) != (pIn1->flags&MEM_Dyn) ); flags1 = (pIn1->flags & ~MEM_TypeMask) | (flags1 & MEM_TypeMask); if( pIn1==pIn3 ) flags3 = flags1 | MEM_Str; } if( (flags3 & MEM_Str)==0 && (flags3&(MEM_Int|MEM_Real|MEM_IntReal))!=0 ){ testcase( pIn3->flags & MEM_Int ); testcase( pIn3->flags & MEM_Real ); testcase( pIn3->flags & MEM_IntReal ); sqlite3VdbeMemStringify(pIn3, encoding, 1); testcase( (flags3&MEM_Dyn) != (pIn3->flags&MEM_Dyn) ); flags3 = (pIn3->flags & ~MEM_TypeMask) | (flags3 & MEM_TypeMask); } } assert( pOp->p4type==P4_COLLSEQ || pOp->p4.pColl==0 ); res = sqlite3MemCompare(pIn3, pIn1, pOp->p4.pColl); } /* At this point, res is negative, zero, or positive if reg[P1] is ** less than, equal to, or greater than reg[P3], respectively. Compute ** the answer to this operator in res2, depending on what the comparison ** operator actually is. The next block of code depends on the fact ** that the 6 comparison operators are consecutive integers in this ** order: NE, EQ, GT, LE, LT, GE */ assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 ); assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 ); if( res<0 ){ res2 = sqlite3aLTb[pOp->opcode]; }else if( res==0 ){ res2 = sqlite3aEQb[pOp->opcode]; }else{ res2 = sqlite3aGTb[pOp->opcode]; } iCompare = res; /* Undo any changes made by applyAffinity() to the input registers. */ assert( (pIn3->flags & MEM_Dyn) == (flags3 & MEM_Dyn) ); pIn3->flags = flags3; assert( (pIn1->flags & MEM_Dyn) == (flags1 & MEM_Dyn) ); pIn1->flags = flags1; VdbeBranchTaken(res2!=0, (pOp->p5 & SQLITE_NULLEQ)?2:3); if( res2 ){ goto jump_to_p2; } break; } /* Opcode: ElseEq * P2 * * * ** ** This opcode must follow an OP_Lt or OP_Gt comparison operator. There ** can be zero or more OP_ReleaseReg opcodes intervening, but no other ** opcodes are allowed to occur between this instruction and the previous ** OP_Lt or OP_Gt. ** ** If result of an OP_Eq comparison on the same two operands as the ** prior OP_Lt or OP_Gt would have been true, then jump to P2. ** If the result of an OP_Eq comparison on the two previous ** operands would have been false or NULL, then fall through. */ case OP_ElseEq: { /* same as TK_ESCAPE, jump */ #ifdef SQLITE_DEBUG /* Verify the preconditions of this opcode - that it follows an OP_Lt or ** OP_Gt with zero or more intervening OP_ReleaseReg opcodes */ int iAddr; for(iAddr = (int)(pOp - aOp) - 1; ALWAYS(iAddr>=0); iAddr--){ if( aOp[iAddr].opcode==OP_ReleaseReg ) continue; assert( aOp[iAddr].opcode==OP_Lt || aOp[iAddr].opcode==OP_Gt ); break; } #endif /* SQLITE_DEBUG */ VdbeBranchTaken(iCompare==0, 2); if( iCompare==0 ) goto jump_to_p2; break; } /* Opcode: Permutation * * * P4 * ** ** Set the permutation used by the OP_Compare operator in the next ** instruction. The permutation is stored in the P4 operand. ** ** The permutation is only valid until the next OP_Compare that has ** the OPFLAG_PERMUTE bit set in P5. Typically the OP_Permutation should ** occur immediately prior to the OP_Compare. ** ** The first integer in the P4 integer array is the length of the array ** and does not become part of the permutation. */ case OP_Permutation: { assert( pOp->p4type==P4_INTARRAY ); assert( pOp->p4.ai ); assert( pOp[1].opcode==OP_Compare ); assert( pOp[1].p5 & OPFLAG_PERMUTE ); break; } /* Opcode: Compare P1 P2 P3 P4 P5 ** Synopsis: r[P1@P3] <-> r[P2@P3] ** ** Compare two vectors of registers in reg(P1)..reg(P1+P3-1) (call this ** vector "A") and in reg(P2)..reg(P2+P3-1) ("B"). Save the result of ** the comparison for use by the next OP_Jump instruct. ** ** If P5 has the OPFLAG_PERMUTE bit set, then the order of comparison is ** determined by the most recent OP_Permutation operator. If the ** OPFLAG_PERMUTE bit is clear, then register are compared in sequential ** order. ** ** P4 is a KeyInfo structure that defines collating sequences and sort ** orders for the comparison. The permutation applies to registers ** only. The KeyInfo elements are used sequentially. ** ** The comparison is a sort comparison, so NULLs compare equal, ** NULLs are less than numbers, numbers are less than strings, ** and strings are less than blobs. */ case OP_Compare: { int n; int i; int p1; int p2; const KeyInfo *pKeyInfo; u32 idx; CollSeq *pColl; /* Collating sequence to use on this term */ int bRev; /* True for DESCENDING sort order */ u32 *aPermute; /* The permutation */ if( (pOp->p5 & OPFLAG_PERMUTE)==0 ){ aPermute = 0; }else{ assert( pOp>aOp ); assert( pOp[-1].opcode==OP_Permutation ); assert( pOp[-1].p4type==P4_INTARRAY ); aPermute = pOp[-1].p4.ai + 1; assert( aPermute!=0 ); } n = pOp->p3; pKeyInfo = pOp->p4.pKeyInfo; assert( n>0 ); assert( pKeyInfo!=0 ); p1 = pOp->p1; p2 = pOp->p2; #ifdef SQLITE_DEBUG if( aPermute ){ int k, mx = 0; for(k=0; k(u32)mx ) mx = aPermute[k]; assert( p1>0 && p1+mx<=(p->nMem+1 - p->nCursor)+1 ); assert( p2>0 && p2+mx<=(p->nMem+1 - p->nCursor)+1 ); }else{ assert( p1>0 && p1+n<=(p->nMem+1 - p->nCursor)+1 ); assert( p2>0 && p2+n<=(p->nMem+1 - p->nCursor)+1 ); } #endif /* SQLITE_DEBUG */ for(i=0; inKeyField ); pColl = pKeyInfo->aColl[i]; bRev = (pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_DESC); iCompare = sqlite3MemCompare(&aMem[p1+idx], &aMem[p2+idx], pColl); if( iCompare ){ if( (pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_BIGNULL) && ((aMem[p1+idx].flags & MEM_Null) || (aMem[p2+idx].flags & MEM_Null)) ){ iCompare = -iCompare; } if( bRev ) iCompare = -iCompare; break; } } break; } /* Opcode: Jump P1 P2 P3 * * ** ** Jump to the instruction at address P1, P2, or P3 depending on whether ** in the most recent OP_Compare instruction the P1 vector was less than ** equal to, or greater than the P2 vector, respectively. */ case OP_Jump: { /* jump */ if( iCompare<0 ){ VdbeBranchTaken(0,4); pOp = &aOp[pOp->p1 - 1]; }else if( iCompare==0 ){ VdbeBranchTaken(1,4); pOp = &aOp[pOp->p2 - 1]; }else{ VdbeBranchTaken(2,4); pOp = &aOp[pOp->p3 - 1]; } break; } /* Opcode: And P1 P2 P3 * * ** Synopsis: r[P3]=(r[P1] && r[P2]) ** ** Take the logical AND of the values in registers P1 and P2 and ** write the result into register P3. ** ** If either P1 or P2 is 0 (false) then the result is 0 even if ** the other input is NULL. A NULL and true or two NULLs give ** a NULL output. */ /* Opcode: Or P1 P2 P3 * * ** Synopsis: r[P3]=(r[P1] || r[P2]) ** ** Take the logical OR of the values in register P1 and P2 and ** store the answer in register P3. ** ** If either P1 or P2 is nonzero (true) then the result is 1 (true) ** even if the other input is NULL. A NULL and false or two NULLs ** give a NULL output. */ case OP_And: /* same as TK_AND, in1, in2, out3 */ case OP_Or: { /* same as TK_OR, in1, in2, out3 */ int v1; /* Left operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */ int v2; /* Right operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */ v1 = sqlite3VdbeBooleanValue(&aMem[pOp->p1], 2); v2 = sqlite3VdbeBooleanValue(&aMem[pOp->p2], 2); if( pOp->opcode==OP_And ){ static const unsigned char and_logic[] = { 0, 0, 0, 0, 1, 2, 0, 2, 2 }; v1 = and_logic[v1*3+v2]; }else{ static const unsigned char or_logic[] = { 0, 1, 2, 1, 1, 1, 2, 1, 2 }; v1 = or_logic[v1*3+v2]; } pOut = &aMem[pOp->p3]; if( v1==2 ){ MemSetTypeFlag(pOut, MEM_Null); }else{ pOut->u.i = v1; MemSetTypeFlag(pOut, MEM_Int); } break; } /* Opcode: IsTrue P1 P2 P3 P4 * ** Synopsis: r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4 ** ** This opcode implements the IS TRUE, IS FALSE, IS NOT TRUE, and ** IS NOT FALSE operators. ** ** Interpret the value in register P1 as a boolean value. Store that ** boolean (a 0 or 1) in register P2. Or if the value in register P1 is ** NULL, then the P3 is stored in register P2. Invert the answer if P4 ** is 1. ** ** The logic is summarized like this: ** **
      **
    • If P3==0 and P4==0 then r[P2] := r[P1] IS TRUE **
    • If P3==1 and P4==1 then r[P2] := r[P1] IS FALSE **
    • If P3==0 and P4==1 then r[P2] := r[P1] IS NOT TRUE **
    • If P3==1 and P4==0 then r[P2] := r[P1] IS NOT FALSE **
    */ case OP_IsTrue: { /* in1, out2 */ assert( pOp->p4type==P4_INT32 ); assert( pOp->p4.i==0 || pOp->p4.i==1 ); assert( pOp->p3==0 || pOp->p3==1 ); sqlite3VdbeMemSetInt64(&aMem[pOp->p2], sqlite3VdbeBooleanValue(&aMem[pOp->p1], pOp->p3) ^ pOp->p4.i); break; } /* Opcode: Not P1 P2 * * * ** Synopsis: r[P2]= !r[P1] ** ** Interpret the value in register P1 as a boolean value. Store the ** boolean complement in register P2. If the value in register P1 is ** NULL, then a NULL is stored in P2. */ case OP_Not: { /* same as TK_NOT, in1, out2 */ pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; if( (pIn1->flags & MEM_Null)==0 ){ sqlite3VdbeMemSetInt64(pOut, !sqlite3VdbeBooleanValue(pIn1,0)); }else{ sqlite3VdbeMemSetNull(pOut); } break; } /* Opcode: BitNot P1 P2 * * * ** Synopsis: r[P2]= ~r[P1] ** ** Interpret the content of register P1 as an integer. Store the ** ones-complement of the P1 value into register P2. If P1 holds ** a NULL then store a NULL in P2. */ case OP_BitNot: { /* same as TK_BITNOT, in1, out2 */ pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; sqlite3VdbeMemSetNull(pOut); if( (pIn1->flags & MEM_Null)==0 ){ pOut->flags = MEM_Int; pOut->u.i = ~sqlite3VdbeIntValue(pIn1); } break; } /* Opcode: Once P1 P2 * * * ** ** Fall through to the next instruction the first time this opcode is ** encountered on each invocation of the byte-code program. Jump to P2 ** on the second and all subsequent encounters during the same invocation. ** ** Top-level programs determine first invocation by comparing the P1 ** operand against the P1 operand on the OP_Init opcode at the beginning ** of the program. If the P1 values differ, then fall through and make ** the P1 of this opcode equal to the P1 of OP_Init. If P1 values are ** the same then take the jump. ** ** For subprograms, there is a bitmask in the VdbeFrame that determines ** whether or not the jump should be taken. The bitmask is necessary ** because the self-altering code trick does not work for recursive ** triggers. */ case OP_Once: { /* jump */ u32 iAddr; /* Address of this instruction */ assert( p->aOp[0].opcode==OP_Init ); if( p->pFrame ){ iAddr = (int)(pOp - p->aOp); if( (p->pFrame->aOnce[iAddr/8] & (1<<(iAddr & 7)))!=0 ){ VdbeBranchTaken(1, 2); goto jump_to_p2; } p->pFrame->aOnce[iAddr/8] |= 1<<(iAddr & 7); }else{ if( p->aOp[0].p1==pOp->p1 ){ VdbeBranchTaken(1, 2); goto jump_to_p2; } } VdbeBranchTaken(0, 2); pOp->p1 = p->aOp[0].p1; break; } /* Opcode: If P1 P2 P3 * * ** ** Jump to P2 if the value in register P1 is true. The value ** is considered true if it is numeric and non-zero. If the value ** in P1 is NULL then take the jump if and only if P3 is non-zero. */ case OP_If: { /* jump, in1 */ int c; c = sqlite3VdbeBooleanValue(&aMem[pOp->p1], pOp->p3); VdbeBranchTaken(c!=0, 2); if( c ) goto jump_to_p2; break; } /* Opcode: IfNot P1 P2 P3 * * ** ** Jump to P2 if the value in register P1 is False. The value ** is considered false if it has a numeric value of zero. If the value ** in P1 is NULL then take the jump if and only if P3 is non-zero. */ case OP_IfNot: { /* jump, in1 */ int c; c = !sqlite3VdbeBooleanValue(&aMem[pOp->p1], !pOp->p3); VdbeBranchTaken(c!=0, 2); if( c ) goto jump_to_p2; break; } /* Opcode: IsNull P1 P2 * * * ** Synopsis: if r[P1]==NULL goto P2 ** ** Jump to P2 if the value in register P1 is NULL. */ case OP_IsNull: { /* same as TK_ISNULL, jump, in1 */ pIn1 = &aMem[pOp->p1]; VdbeBranchTaken( (pIn1->flags & MEM_Null)!=0, 2); if( (pIn1->flags & MEM_Null)!=0 ){ goto jump_to_p2; } break; } /* Opcode: IsNullOrType P1 P2 P3 * * ** Synopsis: if typeof(r[P1]) IN (P3,5) goto P2 ** ** Jump to P2 if the value in register P1 is NULL or has a datatype P3. ** P3 is an integer which should be one of SQLITE_INTEGER, SQLITE_FLOAT, ** SQLITE_BLOB, SQLITE_NULL, or SQLITE_TEXT. */ case OP_IsNullOrType: { /* jump, in1 */ int doTheJump; pIn1 = &aMem[pOp->p1]; doTheJump = (pIn1->flags & MEM_Null)!=0 || sqlite3_value_type(pIn1)==pOp->p3; VdbeBranchTaken( doTheJump, 2); if( doTheJump ) goto jump_to_p2; break; } /* Opcode: ZeroOrNull P1 P2 P3 * * ** Synopsis: r[P2] = 0 OR NULL ** ** If all both registers P1 and P3 are NOT NULL, then store a zero in ** register P2. If either registers P1 or P3 are NULL then put ** a NULL in register P2. */ case OP_ZeroOrNull: { /* in1, in2, out2, in3 */ if( (aMem[pOp->p1].flags & MEM_Null)!=0 || (aMem[pOp->p3].flags & MEM_Null)!=0 ){ sqlite3VdbeMemSetNull(aMem + pOp->p2); }else{ sqlite3VdbeMemSetInt64(aMem + pOp->p2, 0); } break; } /* Opcode: NotNull P1 P2 * * * ** Synopsis: if r[P1]!=NULL goto P2 ** ** Jump to P2 if the value in register P1 is not NULL. */ case OP_NotNull: { /* same as TK_NOTNULL, jump, in1 */ pIn1 = &aMem[pOp->p1]; VdbeBranchTaken( (pIn1->flags & MEM_Null)==0, 2); if( (pIn1->flags & MEM_Null)==0 ){ goto jump_to_p2; } break; } /* Opcode: IfNullRow P1 P2 P3 * * ** Synopsis: if P1.nullRow then r[P3]=NULL, goto P2 ** ** Check the cursor P1 to see if it is currently pointing at a NULL row. ** If it is, then set register P3 to NULL and jump immediately to P2. ** If P1 is not on a NULL row, then fall through without making any ** changes. */ case OP_IfNullRow: { /* jump */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( p->apCsr[pOp->p1]!=0 ); if( p->apCsr[pOp->p1]->nullRow ){ sqlite3VdbeMemSetNull(aMem + pOp->p3); goto jump_to_p2; } break; } #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC /* Opcode: Offset P1 P2 P3 * * ** Synopsis: r[P3] = sqlite_offset(P1) ** ** Store in register r[P3] the byte offset into the database file that is the ** start of the payload for the record at which that cursor P1 is currently ** pointing. ** ** P2 is the column number for the argument to the sqlite_offset() function. ** This opcode does not use P2 itself, but the P2 value is used by the ** code generator. The P1, P2, and P3 operands to this opcode are the ** same as for OP_Column. ** ** This opcode is only available if SQLite is compiled with the ** -DSQLITE_ENABLE_OFFSET_SQL_FUNC option. */ case OP_Offset: { /* out3 */ VdbeCursor *pC; /* The VDBE cursor */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; pOut = &p->aMem[pOp->p3]; if( NEVER(pC==0) || pC->eCurType!=CURTYPE_BTREE ){ sqlite3VdbeMemSetNull(pOut); }else{ sqlite3VdbeMemSetInt64(pOut, sqlite3BtreeOffset(pC->uc.pCursor)); } break; } #endif /* SQLITE_ENABLE_OFFSET_SQL_FUNC */ /* Opcode: Column P1 P2 P3 P4 P5 ** Synopsis: r[P3]=PX ** ** Interpret the data that cursor P1 points to as a structure built using ** the MakeRecord instruction. (See the MakeRecord opcode for additional ** information about the format of the data.) Extract the P2-th column ** from this record. If there are less that (P2+1) ** values in the record, extract a NULL. ** ** The value extracted is stored in register P3. ** ** If the record contains fewer than P2 fields, then extract a NULL. Or, ** if the P4 argument is a P4_MEM use the value of the P4 argument as ** the result. ** ** If the OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG bits are set on P5 then ** the result is guaranteed to only be used as the argument of a length() ** or typeof() function, respectively. The loading of large blobs can be ** skipped for length() and all content loading can be skipped for typeof(). */ case OP_Column: { u32 p2; /* column number to retrieve */ VdbeCursor *pC; /* The VDBE cursor */ BtCursor *pCrsr; /* The BTree cursor */ u32 *aOffset; /* aOffset[i] is offset to start of data for i-th column */ int len; /* The length of the serialized data for the column */ int i; /* Loop counter */ Mem *pDest; /* Where to write the extracted value */ Mem sMem; /* For storing the record being decoded */ const u8 *zData; /* Part of the record being decoded */ const u8 *zHdr; /* Next unparsed byte of the header */ const u8 *zEndHdr; /* Pointer to first byte after the header */ u64 offset64; /* 64-bit offset */ u32 t; /* A type code from the record header */ Mem *pReg; /* PseudoTable input register */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); p2 = (u32)pOp->p2; /* If the cursor cache is stale (meaning it is not currently point at ** the correct row) then bring it up-to-date by doing the necessary ** B-Tree seek. */ rc = sqlite3VdbeCursorMoveto(&pC, &p2); if( rc ) goto abort_due_to_error; assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); pDest = &aMem[pOp->p3]; memAboutToChange(p, pDest); assert( pC!=0 ); assert( p2<(u32)pC->nField ); aOffset = pC->aOffset; assert( aOffset==pC->aType+pC->nField ); assert( pC->eCurType!=CURTYPE_VTAB ); assert( pC->eCurType!=CURTYPE_PSEUDO || pC->nullRow ); assert( pC->eCurType!=CURTYPE_SORTER ); if( pC->cacheStatus!=p->cacheCtr ){ /*OPTIMIZATION-IF-FALSE*/ if( pC->nullRow ){ if( pC->eCurType==CURTYPE_PSEUDO ){ /* For the special case of as pseudo-cursor, the seekResult field ** identifies the register that holds the record */ assert( pC->seekResult>0 ); pReg = &aMem[pC->seekResult]; assert( pReg->flags & MEM_Blob ); assert( memIsValid(pReg) ); pC->payloadSize = pC->szRow = pReg->n; pC->aRow = (u8*)pReg->z; }else{ sqlite3VdbeMemSetNull(pDest); goto op_column_out; } }else{ pCrsr = pC->uc.pCursor; assert( pC->eCurType==CURTYPE_BTREE ); assert( pCrsr ); assert( sqlite3BtreeCursorIsValid(pCrsr) ); pC->payloadSize = sqlite3BtreePayloadSize(pCrsr); pC->aRow = sqlite3BtreePayloadFetch(pCrsr, &pC->szRow); assert( pC->szRow<=pC->payloadSize ); assert( pC->szRow<=65536 ); /* Maximum page size is 64KiB */ if( pC->payloadSize > (u32)db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } } pC->cacheStatus = p->cacheCtr; pC->iHdrOffset = getVarint32(pC->aRow, aOffset[0]); pC->nHdrParsed = 0; if( pC->szRowaRow does not have to hold the entire row, but it does at least ** need to cover the header of the record. If pC->aRow does not contain ** the complete header, then set it to zero, forcing the header to be ** dynamically allocated. */ pC->aRow = 0; pC->szRow = 0; /* Make sure a corrupt database has not given us an oversize header. ** Do this now to avoid an oversize memory allocation. ** ** Type entries can be between 1 and 5 bytes each. But 4 and 5 byte ** types use so much data space that there can only be 4096 and 32 of ** them, respectively. So the maximum header length results from a ** 3-byte type for each of the maximum of 32768 columns plus three ** extra bytes for the header length itself. 32768*3 + 3 = 98307. */ if( aOffset[0] > 98307 || aOffset[0] > pC->payloadSize ){ goto op_column_corrupt; } }else{ /* This is an optimization. By skipping over the first few tests ** (ex: pC->nHdrParsed<=p2) in the next section, we achieve a ** measurable performance gain. ** ** This branch is taken even if aOffset[0]==0. Such a record is never ** generated by SQLite, and could be considered corruption, but we ** accept it for historical reasons. When aOffset[0]==0, the code this ** branch jumps to reads past the end of the record, but never more ** than a few bytes. Even if the record occurs at the end of the page ** content area, the "page header" comes after the page content and so ** this overread is harmless. Similar overreads can occur for a corrupt ** database file. */ zData = pC->aRow; assert( pC->nHdrParsed<=p2 ); /* Conditional skipped */ testcase( aOffset[0]==0 ); goto op_column_read_header; } } /* Make sure at least the first p2+1 entries of the header have been ** parsed and valid information is in aOffset[] and pC->aType[]. */ if( pC->nHdrParsed<=p2 ){ /* If there is more header available for parsing in the record, try ** to extract additional fields up through the p2+1-th field */ if( pC->iHdrOffsetaRow==0 ){ memset(&sMem, 0, sizeof(sMem)); rc = sqlite3VdbeMemFromBtreeZeroOffset(pC->uc.pCursor,aOffset[0],&sMem); if( rc!=SQLITE_OK ) goto abort_due_to_error; zData = (u8*)sMem.z; }else{ zData = pC->aRow; } /* Fill in pC->aType[i] and aOffset[i] values through the p2-th field. */ op_column_read_header: i = pC->nHdrParsed; offset64 = aOffset[i]; zHdr = zData + pC->iHdrOffset; zEndHdr = zData + aOffset[0]; testcase( zHdr>=zEndHdr ); do{ if( (pC->aType[i] = t = zHdr[0])<0x80 ){ zHdr++; offset64 += sqlite3VdbeOneByteSerialTypeLen(t); }else{ zHdr += sqlite3GetVarint32(zHdr, &t); pC->aType[i] = t; offset64 += sqlite3VdbeSerialTypeLen(t); } aOffset[++i] = (u32)(offset64 & 0xffffffff); }while( (u32)i<=p2 && zHdr=zEndHdr && (zHdr>zEndHdr || offset64!=pC->payloadSize)) || (offset64 > pC->payloadSize) ){ if( aOffset[0]==0 ){ i = 0; zHdr = zEndHdr; }else{ if( pC->aRow==0 ) sqlite3VdbeMemRelease(&sMem); goto op_column_corrupt; } } pC->nHdrParsed = i; pC->iHdrOffset = (u32)(zHdr - zData); if( pC->aRow==0 ) sqlite3VdbeMemRelease(&sMem); }else{ t = 0; } /* If after trying to extract new entries from the header, nHdrParsed is ** still not up to p2, that means that the record has fewer than p2 ** columns. So the result will be either the default value or a NULL. */ if( pC->nHdrParsed<=p2 ){ if( pOp->p4type==P4_MEM ){ sqlite3VdbeMemShallowCopy(pDest, pOp->p4.pMem, MEM_Static); }else{ sqlite3VdbeMemSetNull(pDest); } goto op_column_out; } }else{ t = pC->aType[p2]; } /* Extract the content for the p2+1-th column. Control can only ** reach this point if aOffset[p2], aOffset[p2+1], and pC->aType[p2] are ** all valid. */ assert( p2nHdrParsed ); assert( rc==SQLITE_OK ); assert( sqlite3VdbeCheckMemInvariants(pDest) ); if( VdbeMemDynamic(pDest) ){ sqlite3VdbeMemSetNull(pDest); } assert( t==pC->aType[p2] ); if( pC->szRow>=aOffset[p2+1] ){ /* This is the common case where the desired content fits on the original ** page - where the content is not on an overflow page */ zData = pC->aRow + aOffset[p2]; if( t<12 ){ sqlite3VdbeSerialGet(zData, t, pDest); }else{ /* If the column value is a string, we need a persistent value, not ** a MEM_Ephem value. This branch is a fast short-cut that is equivalent ** to calling sqlite3VdbeSerialGet() and sqlite3VdbeDeephemeralize(). */ static const u16 aFlag[] = { MEM_Blob, MEM_Str|MEM_Term }; pDest->n = len = (t-12)/2; pDest->enc = encoding; if( pDest->szMalloc < len+2 ){ pDest->flags = MEM_Null; if( sqlite3VdbeMemGrow(pDest, len+2, 0) ) goto no_mem; }else{ pDest->z = pDest->zMalloc; } memcpy(pDest->z, zData, len); pDest->z[len] = 0; pDest->z[len+1] = 0; pDest->flags = aFlag[t&1]; } }else{ pDest->enc = encoding; /* This branch happens only when content is on overflow pages */ if( ((pOp->p5 & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG))!=0 && ((t>=12 && (t&1)==0) || (pOp->p5 & OPFLAG_TYPEOFARG)!=0)) || (len = sqlite3VdbeSerialTypeLen(t))==0 ){ /* Content is irrelevant for ** 1. the typeof() function, ** 2. the length(X) function if X is a blob, and ** 3. if the content length is zero. ** So we might as well use bogus content rather than reading ** content from disk. ** ** Although sqlite3VdbeSerialGet() may read at most 8 bytes from the ** buffer passed to it, debugging function VdbeMemPrettyPrint() may ** read more. Use the global constant sqlite3CtypeMap[] as the array, ** as that array is 256 bytes long (plenty for VdbeMemPrettyPrint()) ** and it begins with a bunch of zeros. */ sqlite3VdbeSerialGet((u8*)sqlite3CtypeMap, t, pDest); }else{ rc = sqlite3VdbeMemFromBtree(pC->uc.pCursor, aOffset[p2], len, pDest); if( rc!=SQLITE_OK ) goto abort_due_to_error; sqlite3VdbeSerialGet((const u8*)pDest->z, t, pDest); pDest->flags &= ~MEM_Ephem; } } op_column_out: UPDATE_MAX_BLOBSIZE(pDest); REGISTER_TRACE(pOp->p3, pDest); break; op_column_corrupt: if( aOp[0].p3>0 ){ pOp = &aOp[aOp[0].p3-1]; break; }else{ rc = SQLITE_CORRUPT_BKPT; goto abort_due_to_error; } } /* Opcode: TypeCheck P1 P2 P3 P4 * ** Synopsis: typecheck(r[P1@P2]) ** ** Apply affinities to the range of P2 registers beginning with P1. ** Take the affinities from the Table object in P4. If any value ** cannot be coerced into the correct type, then raise an error. ** ** This opcode is similar to OP_Affinity except that this opcode ** forces the register type to the Table column type. This is used ** to implement "strict affinity". ** ** GENERATED ALWAYS AS ... STATIC columns are only checked if P3 ** is zero. When P3 is non-zero, no type checking occurs for ** static generated columns. Virtual columns are computed at query time ** and so they are never checked. ** ** Preconditions: ** **
      **
    • P2 should be the number of non-virtual columns in the ** table of P4. **
    • Table P4 should be a STRICT table. **
    ** ** If any precondition is false, an assertion fault occurs. */ case OP_TypeCheck: { Table *pTab; Column *aCol; int i; assert( pOp->p4type==P4_TABLE ); pTab = pOp->p4.pTab; assert( pTab->tabFlags & TF_Strict ); assert( pTab->nNVCol==pOp->p2 ); aCol = pTab->aCol; pIn1 = &aMem[pOp->p1]; for(i=0; inCol; i++){ if( aCol[i].colFlags & COLFLAG_GENERATED ){ if( aCol[i].colFlags & COLFLAG_VIRTUAL ) continue; if( pOp->p3 ){ pIn1++; continue; } } assert( pIn1 < &aMem[pOp->p1+pOp->p2] ); applyAffinity(pIn1, aCol[i].affinity, encoding); if( (pIn1->flags & MEM_Null)==0 ){ switch( aCol[i].eCType ){ case COLTYPE_BLOB: { if( (pIn1->flags & MEM_Blob)==0 ) goto vdbe_type_error; break; } case COLTYPE_INTEGER: case COLTYPE_INT: { if( (pIn1->flags & MEM_Int)==0 ) goto vdbe_type_error; break; } case COLTYPE_TEXT: { if( (pIn1->flags & MEM_Str)==0 ) goto vdbe_type_error; break; } case COLTYPE_REAL: { testcase( (pIn1->flags & (MEM_Real|MEM_IntReal))==MEM_Real ); testcase( (pIn1->flags & (MEM_Real|MEM_IntReal))==MEM_IntReal ); if( pIn1->flags & MEM_Int ){ /* When applying REAL affinity, if the result is still an MEM_Int ** that will fit in 6 bytes, then change the type to MEM_IntReal ** so that we keep the high-resolution integer value but know that ** the type really wants to be REAL. */ testcase( pIn1->u.i==140737488355328LL ); testcase( pIn1->u.i==140737488355327LL ); testcase( pIn1->u.i==-140737488355328LL ); testcase( pIn1->u.i==-140737488355329LL ); if( pIn1->u.i<=140737488355327LL && pIn1->u.i>=-140737488355328LL){ pIn1->flags |= MEM_IntReal; pIn1->flags &= ~MEM_Int; }else{ pIn1->u.r = (double)pIn1->u.i; pIn1->flags |= MEM_Real; pIn1->flags &= ~MEM_Int; } }else if( (pIn1->flags & (MEM_Real|MEM_IntReal))==0 ){ goto vdbe_type_error; } break; } default: { /* COLTYPE_ANY. Accept anything. */ break; } } } REGISTER_TRACE((int)(pIn1-aMem), pIn1); pIn1++; } assert( pIn1 == &aMem[pOp->p1+pOp->p2] ); break; vdbe_type_error: sqlite3VdbeError(p, "cannot store %s value in %s column %s.%s", vdbeMemTypeName(pIn1), sqlite3StdType[aCol[i].eCType-1], pTab->zName, aCol[i].zCnName); rc = SQLITE_CONSTRAINT_DATATYPE; goto abort_due_to_error; } /* Opcode: Affinity P1 P2 * P4 * ** Synopsis: affinity(r[P1@P2]) ** ** Apply affinities to a range of P2 registers starting with P1. ** ** P4 is a string that is P2 characters long. The N-th character of the ** string indicates the column affinity that should be used for the N-th ** memory cell in the range. */ case OP_Affinity: { const char *zAffinity; /* The affinity to be applied */ zAffinity = pOp->p4.z; assert( zAffinity!=0 ); assert( pOp->p2>0 ); assert( zAffinity[pOp->p2]==0 ); pIn1 = &aMem[pOp->p1]; while( 1 /*exit-by-break*/ ){ assert( pIn1 <= &p->aMem[(p->nMem+1 - p->nCursor)] ); assert( zAffinity[0]==SQLITE_AFF_NONE || memIsValid(pIn1) ); applyAffinity(pIn1, zAffinity[0], encoding); if( zAffinity[0]==SQLITE_AFF_REAL && (pIn1->flags & MEM_Int)!=0 ){ /* When applying REAL affinity, if the result is still an MEM_Int ** that will fit in 6 bytes, then change the type to MEM_IntReal ** so that we keep the high-resolution integer value but know that ** the type really wants to be REAL. */ testcase( pIn1->u.i==140737488355328LL ); testcase( pIn1->u.i==140737488355327LL ); testcase( pIn1->u.i==-140737488355328LL ); testcase( pIn1->u.i==-140737488355329LL ); if( pIn1->u.i<=140737488355327LL && pIn1->u.i>=-140737488355328LL ){ pIn1->flags |= MEM_IntReal; pIn1->flags &= ~MEM_Int; }else{ pIn1->u.r = (double)pIn1->u.i; pIn1->flags |= MEM_Real; pIn1->flags &= ~MEM_Int; } } REGISTER_TRACE((int)(pIn1-aMem), pIn1); zAffinity++; if( zAffinity[0]==0 ) break; pIn1++; } break; } /* Opcode: MakeRecord P1 P2 P3 P4 * ** Synopsis: r[P3]=mkrec(r[P1@P2]) ** ** Convert P2 registers beginning with P1 into the [record format] ** use as a data record in a database table or as a key ** in an index. The OP_Column opcode can decode the record later. ** ** P4 may be a string that is P2 characters long. The N-th character of the ** string indicates the column affinity that should be used for the N-th ** field of the index key. ** ** The mapping from character to affinity is given by the SQLITE_AFF_ ** macros defined in sqliteInt.h. ** ** If P4 is NULL then all index fields have the affinity BLOB. ** ** The meaning of P5 depends on whether or not the SQLITE_ENABLE_NULL_TRIM ** compile-time option is enabled: ** ** * If SQLITE_ENABLE_NULL_TRIM is enabled, then the P5 is the index ** of the right-most table that can be null-trimmed. ** ** * If SQLITE_ENABLE_NULL_TRIM is omitted, then P5 has the value ** OPFLAG_NOCHNG_MAGIC if the OP_MakeRecord opcode is allowed to ** accept no-change records with serial_type 10. This value is ** only used inside an assert() and does not affect the end result. */ case OP_MakeRecord: { Mem *pRec; /* The new record */ u64 nData; /* Number of bytes of data space */ int nHdr; /* Number of bytes of header space */ i64 nByte; /* Data space required for this record */ i64 nZero; /* Number of zero bytes at the end of the record */ int nVarint; /* Number of bytes in a varint */ u32 serial_type; /* Type field */ Mem *pData0; /* First field to be combined into the record */ Mem *pLast; /* Last field of the record */ int nField; /* Number of fields in the record */ char *zAffinity; /* The affinity string for the record */ int file_format; /* File format to use for encoding */ u32 len; /* Length of a field */ u8 *zHdr; /* Where to write next byte of the header */ u8 *zPayload; /* Where to write next byte of the payload */ /* Assuming the record contains N fields, the record format looks ** like this: ** ** ------------------------------------------------------------------------ ** | hdr-size | type 0 | type 1 | ... | type N-1 | data0 | ... | data N-1 | ** ------------------------------------------------------------------------ ** ** Data(0) is taken from register P1. Data(1) comes from register P1+1 ** and so forth. ** ** Each type field is a varint representing the serial type of the ** corresponding data element (see sqlite3VdbeSerialType()). The ** hdr-size field is also a varint which is the offset from the beginning ** of the record to data0. */ nData = 0; /* Number of bytes of data space */ nHdr = 0; /* Number of bytes of header space */ nZero = 0; /* Number of zero bytes at the end of the record */ nField = pOp->p1; zAffinity = pOp->p4.z; assert( nField>0 && pOp->p2>0 && pOp->p2+nField<=(p->nMem+1 - p->nCursor)+1 ); pData0 = &aMem[nField]; nField = pOp->p2; pLast = &pData0[nField-1]; file_format = p->minWriteFileFormat; /* Identify the output register */ assert( pOp->p3p1 || pOp->p3>=pOp->p1+pOp->p2 ); pOut = &aMem[pOp->p3]; memAboutToChange(p, pOut); /* Apply the requested affinity to all inputs */ assert( pData0<=pLast ); if( zAffinity ){ pRec = pData0; do{ applyAffinity(pRec, zAffinity[0], encoding); if( zAffinity[0]==SQLITE_AFF_REAL && (pRec->flags & MEM_Int) ){ pRec->flags |= MEM_IntReal; pRec->flags &= ~(MEM_Int); } REGISTER_TRACE((int)(pRec-aMem), pRec); zAffinity++; pRec++; assert( zAffinity[0]==0 || pRec<=pLast ); }while( zAffinity[0] ); } #ifdef SQLITE_ENABLE_NULL_TRIM /* NULLs can be safely trimmed from the end of the record, as long as ** as the schema format is 2 or more and none of the omitted columns ** have a non-NULL default value. Also, the record must be left with ** at least one field. If P5>0 then it will be one more than the ** index of the right-most column with a non-NULL default value */ if( pOp->p5 ){ while( (pLast->flags & MEM_Null)!=0 && nField>pOp->p5 ){ pLast--; nField--; } } #endif /* Loop through the elements that will make up the record to figure ** out how much space is required for the new record. After this loop, ** the Mem.uTemp field of each term should hold the serial-type that will ** be used for that term in the generated record: ** ** Mem.uTemp value type ** --------------- --------------- ** 0 NULL ** 1 1-byte signed integer ** 2 2-byte signed integer ** 3 3-byte signed integer ** 4 4-byte signed integer ** 5 6-byte signed integer ** 6 8-byte signed integer ** 7 IEEE float ** 8 Integer constant 0 ** 9 Integer constant 1 ** 10,11 reserved for expansion ** N>=12 and even BLOB ** N>=13 and odd text ** ** The following additional values are computed: ** nHdr Number of bytes needed for the record header ** nData Number of bytes of data space needed for the record ** nZero Zero bytes at the end of the record */ pRec = pLast; do{ assert( memIsValid(pRec) ); if( pRec->flags & MEM_Null ){ if( pRec->flags & MEM_Zero ){ /* Values with MEM_Null and MEM_Zero are created by xColumn virtual ** table methods that never invoke sqlite3_result_xxxxx() while ** computing an unchanging column value in an UPDATE statement. ** Give such values a special internal-use-only serial-type of 10 ** so that they can be passed through to xUpdate and have ** a true sqlite3_value_nochange(). */ #ifndef SQLITE_ENABLE_NULL_TRIM assert( pOp->p5==OPFLAG_NOCHNG_MAGIC || CORRUPT_DB ); #endif pRec->uTemp = 10; }else{ pRec->uTemp = 0; } nHdr++; }else if( pRec->flags & (MEM_Int|MEM_IntReal) ){ /* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */ i64 i = pRec->u.i; u64 uu; testcase( pRec->flags & MEM_Int ); testcase( pRec->flags & MEM_IntReal ); if( i<0 ){ uu = ~i; }else{ uu = i; } nHdr++; testcase( uu==127 ); testcase( uu==128 ); testcase( uu==32767 ); testcase( uu==32768 ); testcase( uu==8388607 ); testcase( uu==8388608 ); testcase( uu==2147483647 ); testcase( uu==2147483648LL ); testcase( uu==140737488355327LL ); testcase( uu==140737488355328LL ); if( uu<=127 ){ if( (i&1)==i && file_format>=4 ){ pRec->uTemp = 8+(u32)uu; }else{ nData++; pRec->uTemp = 1; } }else if( uu<=32767 ){ nData += 2; pRec->uTemp = 2; }else if( uu<=8388607 ){ nData += 3; pRec->uTemp = 3; }else if( uu<=2147483647 ){ nData += 4; pRec->uTemp = 4; }else if( uu<=140737488355327LL ){ nData += 6; pRec->uTemp = 5; }else{ nData += 8; if( pRec->flags & MEM_IntReal ){ /* If the value is IntReal and is going to take up 8 bytes to store ** as an integer, then we might as well make it an 8-byte floating ** point value */ pRec->u.r = (double)pRec->u.i; pRec->flags &= ~MEM_IntReal; pRec->flags |= MEM_Real; pRec->uTemp = 7; }else{ pRec->uTemp = 6; } } }else if( pRec->flags & MEM_Real ){ nHdr++; nData += 8; pRec->uTemp = 7; }else{ assert( db->mallocFailed || pRec->flags&(MEM_Str|MEM_Blob) ); assert( pRec->n>=0 ); len = (u32)pRec->n; serial_type = (len*2) + 12 + ((pRec->flags & MEM_Str)!=0); if( pRec->flags & MEM_Zero ){ serial_type += pRec->u.nZero*2; if( nData ){ if( sqlite3VdbeMemExpandBlob(pRec) ) goto no_mem; len += pRec->u.nZero; }else{ nZero += pRec->u.nZero; } } nData += len; nHdr += sqlite3VarintLen(serial_type); pRec->uTemp = serial_type; } if( pRec==pData0 ) break; pRec--; }while(1); /* EVIDENCE-OF: R-22564-11647 The header begins with a single varint ** which determines the total number of bytes in the header. The varint ** value is the size of the header in bytes including the size varint ** itself. */ testcase( nHdr==126 ); testcase( nHdr==127 ); if( nHdr<=126 ){ /* The common case */ nHdr += 1; }else{ /* Rare case of a really large header */ nVarint = sqlite3VarintLen(nHdr); nHdr += nVarint; if( nVarintp3) is not allowed to ** be one of the input registers (because the following call to ** sqlite3VdbeMemClearAndResize() could clobber the value before it is used). */ if( nByte+nZero<=pOut->szMalloc ){ /* The output register is already large enough to hold the record. ** No error checks or buffer enlargement is required */ pOut->z = pOut->zMalloc; }else{ /* Need to make sure that the output is not too big and then enlarge ** the output register to hold the full result */ if( nByte+nZero>db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } if( sqlite3VdbeMemClearAndResize(pOut, (int)nByte) ){ goto no_mem; } } pOut->n = (int)nByte; pOut->flags = MEM_Blob; if( nZero ){ pOut->u.nZero = nZero; pOut->flags |= MEM_Zero; } UPDATE_MAX_BLOBSIZE(pOut); zHdr = (u8 *)pOut->z; zPayload = zHdr + nHdr; /* Write the record */ zHdr += putVarint32(zHdr, nHdr); assert( pData0<=pLast ); pRec = pData0; do{ serial_type = pRec->uTemp; /* EVIDENCE-OF: R-06529-47362 Following the size varint are one or more ** additional varints, one per column. */ zHdr += putVarint32(zHdr, serial_type); /* serial type */ /* EVIDENCE-OF: R-64536-51728 The values for each column in the record ** immediately follow the header. */ zPayload += sqlite3VdbeSerialPut(zPayload, pRec, serial_type); /* content */ }while( (++pRec)<=pLast ); assert( nHdr==(int)(zHdr - (u8*)pOut->z) ); assert( nByte==(int)(zPayload - (u8*)pOut->z) ); assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); REGISTER_TRACE(pOp->p3, pOut); break; } /* Opcode: Count P1 P2 P3 * * ** Synopsis: r[P2]=count() ** ** Store the number of entries (an integer value) in the table or index ** opened by cursor P1 in register P2. ** ** If P3==0, then an exact count is obtained, which involves visiting ** every btree page of the table. But if P3 is non-zero, an estimate ** is returned based on the current cursor position. */ case OP_Count: { /* out2 */ i64 nEntry; BtCursor *pCrsr; assert( p->apCsr[pOp->p1]->eCurType==CURTYPE_BTREE ); pCrsr = p->apCsr[pOp->p1]->uc.pCursor; assert( pCrsr ); if( pOp->p3 ){ nEntry = sqlite3BtreeRowCountEst(pCrsr); }else{ nEntry = 0; /* Not needed. Only used to silence a warning. */ rc = sqlite3BtreeCount(db, pCrsr, &nEntry); if( rc ) goto abort_due_to_error; } pOut = out2Prerelease(p, pOp); pOut->u.i = nEntry; goto check_for_interrupt; } /* Opcode: Savepoint P1 * * P4 * ** ** Open, release or rollback the savepoint named by parameter P4, depending ** on the value of P1. To open a new savepoint set P1==0 (SAVEPOINT_BEGIN). ** To release (commit) an existing savepoint set P1==1 (SAVEPOINT_RELEASE). ** To rollback an existing savepoint set P1==2 (SAVEPOINT_ROLLBACK). */ case OP_Savepoint: { int p1; /* Value of P1 operand */ char *zName; /* Name of savepoint */ int nName; Savepoint *pNew; Savepoint *pSavepoint; Savepoint *pTmp; int iSavepoint; int ii; p1 = pOp->p1; zName = pOp->p4.z; /* Assert that the p1 parameter is valid. Also that if there is no open ** transaction, then there cannot be any savepoints. */ assert( db->pSavepoint==0 || db->autoCommit==0 ); assert( p1==SAVEPOINT_BEGIN||p1==SAVEPOINT_RELEASE||p1==SAVEPOINT_ROLLBACK ); assert( db->pSavepoint || db->isTransactionSavepoint==0 ); assert( checkSavepointCount(db) ); assert( p->bIsReader ); if( p1==SAVEPOINT_BEGIN ){ if( db->nVdbeWrite>0 ){ /* A new savepoint cannot be created if there are active write ** statements (i.e. open read/write incremental blob handles). */ sqlite3VdbeError(p, "cannot open savepoint - SQL statements in progress"); rc = SQLITE_BUSY; }else{ nName = sqlite3Strlen30(zName); #ifndef SQLITE_OMIT_VIRTUALTABLE /* This call is Ok even if this savepoint is actually a transaction ** savepoint (and therefore should not prompt xSavepoint()) callbacks. ** If this is a transaction savepoint being opened, it is guaranteed ** that the db->aVTrans[] array is empty. */ assert( db->autoCommit==0 || db->nVTrans==0 ); rc = sqlite3VtabSavepoint(db, SAVEPOINT_BEGIN, db->nStatement+db->nSavepoint); if( rc!=SQLITE_OK ) goto abort_due_to_error; #endif /* Create a new savepoint structure. */ pNew = sqlite3DbMallocRawNN(db, sizeof(Savepoint)+nName+1); if( pNew ){ pNew->zName = (char *)&pNew[1]; memcpy(pNew->zName, zName, nName+1); /* If there is no open transaction, then mark this as a special ** "transaction savepoint". */ if( db->autoCommit ){ db->autoCommit = 0; db->isTransactionSavepoint = 1; }else{ db->nSavepoint++; } /* Link the new savepoint into the database handle's list. */ pNew->pNext = db->pSavepoint; db->pSavepoint = pNew; pNew->nDeferredCons = db->nDeferredCons; pNew->nDeferredImmCons = db->nDeferredImmCons; } } }else{ assert( p1==SAVEPOINT_RELEASE || p1==SAVEPOINT_ROLLBACK ); iSavepoint = 0; /* Find the named savepoint. If there is no such savepoint, then an ** an error is returned to the user. */ for( pSavepoint = db->pSavepoint; pSavepoint && sqlite3StrICmp(pSavepoint->zName, zName); pSavepoint = pSavepoint->pNext ){ iSavepoint++; } if( !pSavepoint ){ sqlite3VdbeError(p, "no such savepoint: %s", zName); rc = SQLITE_ERROR; }else if( db->nVdbeWrite>0 && p1==SAVEPOINT_RELEASE ){ /* It is not possible to release (commit) a savepoint if there are ** active write statements. */ sqlite3VdbeError(p, "cannot release savepoint - " "SQL statements in progress"); rc = SQLITE_BUSY; }else{ /* Determine whether or not this is a transaction savepoint. If so, ** and this is a RELEASE command, then the current transaction ** is committed. */ int isTransaction = pSavepoint->pNext==0 && db->isTransactionSavepoint; if( isTransaction && p1==SAVEPOINT_RELEASE ){ if( (rc = sqlite3VdbeCheckFk(p, 1))!=SQLITE_OK ){ goto vdbe_return; } db->autoCommit = 1; if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){ p->pc = (int)(pOp - aOp); db->autoCommit = 0; p->rc = rc = SQLITE_BUSY; goto vdbe_return; } rc = p->rc; if( rc ){ db->autoCommit = 0; }else{ db->isTransactionSavepoint = 0; } }else{ int isSchemaChange; iSavepoint = db->nSavepoint - iSavepoint - 1; if( p1==SAVEPOINT_ROLLBACK ){ isSchemaChange = (db->mDbFlags & DBFLAG_SchemaChange)!=0; for(ii=0; iinDb; ii++){ rc = sqlite3BtreeTripAllCursors(db->aDb[ii].pBt, SQLITE_ABORT_ROLLBACK, isSchemaChange==0); if( rc!=SQLITE_OK ) goto abort_due_to_error; } }else{ assert( p1==SAVEPOINT_RELEASE ); isSchemaChange = 0; } for(ii=0; iinDb; ii++){ rc = sqlite3BtreeSavepoint(db->aDb[ii].pBt, p1, iSavepoint); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } } if( isSchemaChange ){ sqlite3ExpirePreparedStatements(db, 0); sqlite3ResetAllSchemasOfConnection(db); db->mDbFlags |= DBFLAG_SchemaChange; } } if( rc ) goto abort_due_to_error; /* Regardless of whether this is a RELEASE or ROLLBACK, destroy all ** savepoints nested inside of the savepoint being operated on. */ while( db->pSavepoint!=pSavepoint ){ pTmp = db->pSavepoint; db->pSavepoint = pTmp->pNext; sqlite3DbFree(db, pTmp); db->nSavepoint--; } /* If it is a RELEASE, then destroy the savepoint being operated on ** too. If it is a ROLLBACK TO, then set the number of deferred ** constraint violations present in the database to the value stored ** when the savepoint was created. */ if( p1==SAVEPOINT_RELEASE ){ assert( pSavepoint==db->pSavepoint ); db->pSavepoint = pSavepoint->pNext; sqlite3DbFree(db, pSavepoint); if( !isTransaction ){ db->nSavepoint--; } }else{ assert( p1==SAVEPOINT_ROLLBACK ); db->nDeferredCons = pSavepoint->nDeferredCons; db->nDeferredImmCons = pSavepoint->nDeferredImmCons; } if( !isTransaction || p1==SAVEPOINT_ROLLBACK ){ rc = sqlite3VtabSavepoint(db, p1, iSavepoint); if( rc!=SQLITE_OK ) goto abort_due_to_error; } } } if( rc ) goto abort_due_to_error; break; } /* Opcode: AutoCommit P1 P2 * * * ** ** Set the database auto-commit flag to P1 (1 or 0). If P2 is true, roll ** back any currently active btree transactions. If there are any active ** VMs (apart from this one), then a ROLLBACK fails. A COMMIT fails if ** there are active writing VMs or active VMs that use shared cache. ** ** This instruction causes the VM to halt. */ case OP_AutoCommit: { int desiredAutoCommit; int iRollback; desiredAutoCommit = pOp->p1; iRollback = pOp->p2; assert( desiredAutoCommit==1 || desiredAutoCommit==0 ); assert( desiredAutoCommit==1 || iRollback==0 ); assert( db->nVdbeActive>0 ); /* At least this one VM is active */ assert( p->bIsReader ); if( desiredAutoCommit!=db->autoCommit ){ if( iRollback ){ assert( desiredAutoCommit==1 ); sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); db->autoCommit = 1; }else if( desiredAutoCommit && db->nVdbeWrite>0 ){ /* If this instruction implements a COMMIT and other VMs are writing ** return an error indicating that the other VMs must complete first. */ sqlite3VdbeError(p, "cannot commit transaction - " "SQL statements in progress"); rc = SQLITE_BUSY; goto abort_due_to_error; }else if( (rc = sqlite3VdbeCheckFk(p, 1))!=SQLITE_OK ){ goto vdbe_return; }else{ db->autoCommit = (u8)desiredAutoCommit; } if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){ p->pc = (int)(pOp - aOp); db->autoCommit = (u8)(1-desiredAutoCommit); p->rc = rc = SQLITE_BUSY; goto vdbe_return; } sqlite3CloseSavepoints(db); if( p->rc==SQLITE_OK ){ rc = SQLITE_DONE; }else{ rc = SQLITE_ERROR; } goto vdbe_return; }else{ sqlite3VdbeError(p, (!desiredAutoCommit)?"cannot start a transaction within a transaction":( (iRollback)?"cannot rollback - no transaction is active": "cannot commit - no transaction is active")); rc = SQLITE_ERROR; goto abort_due_to_error; } /*NOTREACHED*/ assert(0); } /* Opcode: Transaction P1 P2 P3 P4 P5 ** ** Begin a transaction on database P1 if a transaction is not already ** active. ** If P2 is non-zero, then a write-transaction is started, or if a ** read-transaction is already active, it is upgraded to a write-transaction. ** If P2 is zero, then a read-transaction is started. If P2 is 2 or more ** then an exclusive transaction is started. ** ** P1 is the index of the database file on which the transaction is ** started. Index 0 is the main database file and index 1 is the ** file used for temporary tables. Indices of 2 or more are used for ** attached databases. ** ** If a write-transaction is started and the Vdbe.usesStmtJournal flag is ** true (this flag is set if the Vdbe may modify more than one row and may ** throw an ABORT exception), a statement transaction may also be opened. ** More specifically, a statement transaction is opened iff the database ** connection is currently not in autocommit mode, or if there are other ** active statements. A statement transaction allows the changes made by this ** VDBE to be rolled back after an error without having to roll back the ** entire transaction. If no error is encountered, the statement transaction ** will automatically commit when the VDBE halts. ** ** If P5!=0 then this opcode also checks the schema cookie against P3 ** and the schema generation counter against P4. ** The cookie changes its value whenever the database schema changes. ** This operation is used to detect when that the cookie has changed ** and that the current process needs to reread the schema. If the schema ** cookie in P3 differs from the schema cookie in the database header or ** if the schema generation counter in P4 differs from the current ** generation counter, then an SQLITE_SCHEMA error is raised and execution ** halts. The sqlite3_step() wrapper function might then reprepare the ** statement and rerun it from the beginning. */ case OP_Transaction: { Btree *pBt; int iMeta = 0; assert( p->bIsReader ); assert( p->readOnly==0 || pOp->p2==0 ); assert( pOp->p2>=0 && pOp->p2<=2 ); assert( pOp->p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( rc==SQLITE_OK ); if( pOp->p2 && (db->flags & (SQLITE_QueryOnly|SQLITE_CorruptRdOnly))!=0 ){ if( db->flags & SQLITE_QueryOnly ){ /* Writes prohibited by the "PRAGMA query_only=TRUE" statement */ rc = SQLITE_READONLY; }else{ /* Writes prohibited due to a prior SQLITE_CORRUPT in the current ** transaction */ rc = SQLITE_CORRUPT; } goto abort_due_to_error; } pBt = db->aDb[pOp->p1].pBt; if( pBt ){ rc = sqlite3BtreeBeginTrans(pBt, pOp->p2, &iMeta); testcase( rc==SQLITE_BUSY_SNAPSHOT ); testcase( rc==SQLITE_BUSY_RECOVERY ); if( rc!=SQLITE_OK ){ if( (rc&0xff)==SQLITE_BUSY ){ p->pc = (int)(pOp - aOp); p->rc = rc; goto vdbe_return; } goto abort_due_to_error; } if( p->usesStmtJournal && pOp->p2 && (db->autoCommit==0 || db->nVdbeRead>1) ){ assert( sqlite3BtreeTxnState(pBt)==SQLITE_TXN_WRITE ); if( p->iStatement==0 ){ assert( db->nStatement>=0 && db->nSavepoint>=0 ); db->nStatement++; p->iStatement = db->nSavepoint + db->nStatement; } rc = sqlite3VtabSavepoint(db, SAVEPOINT_BEGIN, p->iStatement-1); if( rc==SQLITE_OK ){ rc = sqlite3BtreeBeginStmt(pBt, p->iStatement); } /* Store the current value of the database handles deferred constraint ** counter. If the statement transaction needs to be rolled back, ** the value of this counter needs to be restored too. */ p->nStmtDefCons = db->nDeferredCons; p->nStmtDefImmCons = db->nDeferredImmCons; } } assert( pOp->p5==0 || pOp->p4type==P4_INT32 ); if( rc==SQLITE_OK && pOp->p5 && (iMeta!=pOp->p3 || db->aDb[pOp->p1].pSchema->iGeneration!=pOp->p4.i) ){ /* ** IMPLEMENTATION-OF: R-03189-51135 As each SQL statement runs, the schema ** version is checked to ensure that the schema has not changed since the ** SQL statement was prepared. */ sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = sqlite3DbStrDup(db, "database schema has changed"); /* If the schema-cookie from the database file matches the cookie ** stored with the in-memory representation of the schema, do ** not reload the schema from the database file. ** ** If virtual-tables are in use, this is not just an optimization. ** Often, v-tables store their data in other SQLite tables, which ** are queried from within xNext() and other v-table methods using ** prepared queries. If such a query is out-of-date, we do not want to ** discard the database schema, as the user code implementing the ** v-table would have to be ready for the sqlite3_vtab structure itself ** to be invalidated whenever sqlite3_step() is called from within ** a v-table method. */ if( db->aDb[pOp->p1].pSchema->schema_cookie!=iMeta ){ sqlite3ResetOneSchema(db, pOp->p1); } p->expired = 1; rc = SQLITE_SCHEMA; } if( rc ) goto abort_due_to_error; break; } /* Opcode: ReadCookie P1 P2 P3 * * ** ** Read cookie number P3 from database P1 and write it into register P2. ** P3==1 is the schema version. P3==2 is the database format. ** P3==3 is the recommended pager cache size, and so forth. P1==0 is ** the main database file and P1==1 is the database file used to store ** temporary tables. ** ** There must be a read-lock on the database (either a transaction ** must be started or there must be an open cursor) before ** executing this instruction. */ case OP_ReadCookie: { /* out2 */ int iMeta; int iDb; int iCookie; assert( p->bIsReader ); iDb = pOp->p1; iCookie = pOp->p3; assert( pOp->p3=0 && iDbnDb ); assert( db->aDb[iDb].pBt!=0 ); assert( DbMaskTest(p->btreeMask, iDb) ); sqlite3BtreeGetMeta(db->aDb[iDb].pBt, iCookie, (u32 *)&iMeta); pOut = out2Prerelease(p, pOp); pOut->u.i = iMeta; break; } /* Opcode: SetCookie P1 P2 P3 * P5 ** ** Write the integer value P3 into cookie number P2 of database P1. ** P2==1 is the schema version. P2==2 is the database format. ** P2==3 is the recommended pager cache ** size, and so forth. P1==0 is the main database file and P1==1 is the ** database file used to store temporary tables. ** ** A transaction must be started before executing this opcode. ** ** If P2 is the SCHEMA_VERSION cookie (cookie number 1) then the internal ** schema version is set to P3-P5. The "PRAGMA schema_version=N" statement ** has P5 set to 1, so that the internal schema version will be different ** from the database schema version, resulting in a schema reset. */ case OP_SetCookie: { Db *pDb; sqlite3VdbeIncrWriteCounter(p, 0); assert( pOp->p2p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( p->readOnly==0 ); pDb = &db->aDb[pOp->p1]; assert( pDb->pBt!=0 ); assert( sqlite3SchemaMutexHeld(db, pOp->p1, 0) ); /* See note about index shifting on OP_ReadCookie */ rc = sqlite3BtreeUpdateMeta(pDb->pBt, pOp->p2, pOp->p3); if( pOp->p2==BTREE_SCHEMA_VERSION ){ /* When the schema cookie changes, record the new cookie internally */ pDb->pSchema->schema_cookie = pOp->p3 - pOp->p5; db->mDbFlags |= DBFLAG_SchemaChange; sqlite3FkClearTriggerCache(db, pOp->p1); }else if( pOp->p2==BTREE_FILE_FORMAT ){ /* Record changes in the file format */ pDb->pSchema->file_format = pOp->p3; } if( pOp->p1==1 ){ /* Invalidate all prepared statements whenever the TEMP database ** schema is changed. Ticket #1644 */ sqlite3ExpirePreparedStatements(db, 0); p->expired = 0; } if( rc ) goto abort_due_to_error; break; } /* Opcode: OpenRead P1 P2 P3 P4 P5 ** Synopsis: root=P2 iDb=P3 ** ** Open a read-only cursor for the database table whose root page is ** P2 in a database file. The database file is determined by P3. ** P3==0 means the main database, P3==1 means the database used for ** temporary tables, and P3>1 means used the corresponding attached ** database. Give the new cursor an identifier of P1. The P1 ** values need not be contiguous but all P1 values should be small integers. ** It is an error for P1 to be negative. ** ** Allowed P5 bits: **
      **
    • 0x02 OPFLAG_SEEKEQ: This cursor will only be used for ** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT ** of OP_SeekLE/OP_IdxLT) **
    ** ** The P4 value may be either an integer (P4_INT32) or a pointer to ** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo ** object, then table being opened must be an [index b-tree] where the ** KeyInfo object defines the content and collating ** sequence of that index b-tree. Otherwise, if P4 is an integer ** value, then the table being opened must be a [table b-tree] with a ** number of columns no less than the value of P4. ** ** See also: OpenWrite, ReopenIdx */ /* Opcode: ReopenIdx P1 P2 P3 P4 P5 ** Synopsis: root=P2 iDb=P3 ** ** The ReopenIdx opcode works like OP_OpenRead except that it first ** checks to see if the cursor on P1 is already open on the same ** b-tree and if it is this opcode becomes a no-op. In other words, ** if the cursor is already open, do not reopen it. ** ** The ReopenIdx opcode may only be used with P5==0 or P5==OPFLAG_SEEKEQ ** and with P4 being a P4_KEYINFO object. Furthermore, the P3 value must ** be the same as every other ReopenIdx or OpenRead for the same cursor ** number. ** ** Allowed P5 bits: **
      **
    • 0x02 OPFLAG_SEEKEQ: This cursor will only be used for ** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT ** of OP_SeekLE/OP_IdxLT) **
    ** ** See also: OP_OpenRead, OP_OpenWrite */ /* Opcode: OpenWrite P1 P2 P3 P4 P5 ** Synopsis: root=P2 iDb=P3 ** ** Open a read/write cursor named P1 on the table or index whose root ** page is P2 (or whose root page is held in register P2 if the ** OPFLAG_P2ISREG bit is set in P5 - see below). ** ** The P4 value may be either an integer (P4_INT32) or a pointer to ** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo ** object, then table being opened must be an [index b-tree] where the ** KeyInfo object defines the content and collating ** sequence of that index b-tree. Otherwise, if P4 is an integer ** value, then the table being opened must be a [table b-tree] with a ** number of columns no less than the value of P4. ** ** Allowed P5 bits: **
      **
    • 0x02 OPFLAG_SEEKEQ: This cursor will only be used for ** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT ** of OP_SeekLE/OP_IdxLT) **
    • 0x08 OPFLAG_FORDELETE: This cursor is used only to seek ** and subsequently delete entries in an index btree. This is a ** hint to the storage engine that the storage engine is allowed to ** ignore. The hint is not used by the official SQLite b*tree storage ** engine, but is used by COMDB2. **
    • 0x10 OPFLAG_P2ISREG: Use the content of register P2 ** as the root page, not the value of P2 itself. **
    ** ** This instruction works like OpenRead except that it opens the cursor ** in read/write mode. ** ** See also: OP_OpenRead, OP_ReopenIdx */ case OP_ReopenIdx: { int nField; KeyInfo *pKeyInfo; u32 p2; int iDb; int wrFlag; Btree *pX; VdbeCursor *pCur; Db *pDb; assert( pOp->p5==0 || pOp->p5==OPFLAG_SEEKEQ ); assert( pOp->p4type==P4_KEYINFO ); pCur = p->apCsr[pOp->p1]; if( pCur && pCur->pgnoRoot==(u32)pOp->p2 ){ assert( pCur->iDb==pOp->p3 ); /* Guaranteed by the code generator */ assert( pCur->eCurType==CURTYPE_BTREE ); sqlite3BtreeClearCursor(pCur->uc.pCursor); goto open_cursor_set_hints; } /* If the cursor is not currently open or is open on a different ** index, then fall through into OP_OpenRead to force a reopen */ case OP_OpenRead: case OP_OpenWrite: assert( pOp->opcode==OP_OpenWrite || pOp->p5==0 || pOp->p5==OPFLAG_SEEKEQ ); assert( p->bIsReader ); assert( pOp->opcode==OP_OpenRead || pOp->opcode==OP_ReopenIdx || p->readOnly==0 ); if( p->expired==1 ){ rc = SQLITE_ABORT_ROLLBACK; goto abort_due_to_error; } nField = 0; pKeyInfo = 0; p2 = (u32)pOp->p2; iDb = pOp->p3; assert( iDb>=0 && iDbnDb ); assert( DbMaskTest(p->btreeMask, iDb) ); pDb = &db->aDb[iDb]; pX = pDb->pBt; assert( pX!=0 ); if( pOp->opcode==OP_OpenWrite ){ assert( OPFLAG_FORDELETE==BTREE_FORDELETE ); wrFlag = BTREE_WRCSR | (pOp->p5 & OPFLAG_FORDELETE); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( pDb->pSchema->file_format < p->minWriteFileFormat ){ p->minWriteFileFormat = pDb->pSchema->file_format; } }else{ wrFlag = 0; } if( pOp->p5 & OPFLAG_P2ISREG ){ assert( p2>0 ); assert( p2<=(u32)(p->nMem+1 - p->nCursor) ); assert( pOp->opcode==OP_OpenWrite ); pIn2 = &aMem[p2]; assert( memIsValid(pIn2) ); assert( (pIn2->flags & MEM_Int)!=0 ); sqlite3VdbeMemIntegerify(pIn2); p2 = (int)pIn2->u.i; /* The p2 value always comes from a prior OP_CreateBtree opcode and ** that opcode will always set the p2 value to 2 or more or else fail. ** If there were a failure, the prepared statement would have halted ** before reaching this instruction. */ assert( p2>=2 ); } if( pOp->p4type==P4_KEYINFO ){ pKeyInfo = pOp->p4.pKeyInfo; assert( pKeyInfo->enc==ENC(db) ); assert( pKeyInfo->db==db ); nField = pKeyInfo->nAllField; }else if( pOp->p4type==P4_INT32 ){ nField = pOp->p4.i; } assert( pOp->p1>=0 ); assert( nField>=0 ); testcase( nField==0 ); /* Table with INTEGER PRIMARY KEY and nothing else */ pCur = allocateCursor(p, pOp->p1, nField, CURTYPE_BTREE); if( pCur==0 ) goto no_mem; pCur->iDb = iDb; pCur->nullRow = 1; pCur->isOrdered = 1; pCur->pgnoRoot = p2; #ifdef SQLITE_DEBUG pCur->wrFlag = wrFlag; #endif rc = sqlite3BtreeCursor(pX, p2, wrFlag, pKeyInfo, pCur->uc.pCursor); pCur->pKeyInfo = pKeyInfo; /* Set the VdbeCursor.isTable variable. Previous versions of ** SQLite used to check if the root-page flags were sane at this point ** and report database corruption if they were not, but this check has ** since moved into the btree layer. */ pCur->isTable = pOp->p4type!=P4_KEYINFO; open_cursor_set_hints: assert( OPFLAG_BULKCSR==BTREE_BULKLOAD ); assert( OPFLAG_SEEKEQ==BTREE_SEEK_EQ ); testcase( pOp->p5 & OPFLAG_BULKCSR ); testcase( pOp->p2 & OPFLAG_SEEKEQ ); sqlite3BtreeCursorHintFlags(pCur->uc.pCursor, (pOp->p5 & (OPFLAG_BULKCSR|OPFLAG_SEEKEQ))); if( rc ) goto abort_due_to_error; break; } /* Opcode: OpenDup P1 P2 * * * ** ** Open a new cursor P1 that points to the same ephemeral table as ** cursor P2. The P2 cursor must have been opened by a prior OP_OpenEphemeral ** opcode. Only ephemeral cursors may be duplicated. ** ** Duplicate ephemeral cursors are used for self-joins of materialized views. */ case OP_OpenDup: { VdbeCursor *pOrig; /* The original cursor to be duplicated */ VdbeCursor *pCx; /* The new cursor */ pOrig = p->apCsr[pOp->p2]; assert( pOrig ); assert( pOrig->isEphemeral ); /* Only ephemeral cursors can be duplicated */ pCx = allocateCursor(p, pOp->p1, pOrig->nField, CURTYPE_BTREE); if( pCx==0 ) goto no_mem; pCx->nullRow = 1; pCx->isEphemeral = 1; pCx->pKeyInfo = pOrig->pKeyInfo; pCx->isTable = pOrig->isTable; pCx->pgnoRoot = pOrig->pgnoRoot; pCx->isOrdered = pOrig->isOrdered; pCx->ub.pBtx = pOrig->ub.pBtx; pCx->hasBeenDuped = 1; pOrig->hasBeenDuped = 1; rc = sqlite3BtreeCursor(pCx->ub.pBtx, pCx->pgnoRoot, BTREE_WRCSR, pCx->pKeyInfo, pCx->uc.pCursor); /* The sqlite3BtreeCursor() routine can only fail for the first cursor ** opened for a database. Since there is already an open cursor when this ** opcode is run, the sqlite3BtreeCursor() cannot fail */ assert( rc==SQLITE_OK ); break; } /* Opcode: OpenEphemeral P1 P2 P3 P4 P5 ** Synopsis: nColumn=P2 ** ** Open a new cursor P1 to a transient table. ** The cursor is always opened read/write even if ** the main database is read-only. The ephemeral ** table is deleted automatically when the cursor is closed. ** ** If the cursor P1 is already opened on an ephemeral table, the table ** is cleared (all content is erased). ** ** P2 is the number of columns in the ephemeral table. ** The cursor points to a BTree table if P4==0 and to a BTree index ** if P4 is not 0. If P4 is not NULL, it points to a KeyInfo structure ** that defines the format of keys in the index. ** ** The P5 parameter can be a mask of the BTREE_* flags defined ** in btree.h. These flags control aspects of the operation of ** the btree. The BTREE_OMIT_JOURNAL and BTREE_SINGLE flags are ** added automatically. ** ** If P3 is positive, then reg[P3] is modified slightly so that it ** can be used as zero-length data for OP_Insert. This is an optimization ** that avoids an extra OP_Blob opcode to initialize that register. */ /* Opcode: OpenAutoindex P1 P2 * P4 * ** Synopsis: nColumn=P2 ** ** This opcode works the same as OP_OpenEphemeral. It has a ** different name to distinguish its use. Tables created using ** by this opcode will be used for automatically created transient ** indices in joins. */ case OP_OpenAutoindex: case OP_OpenEphemeral: { VdbeCursor *pCx; KeyInfo *pKeyInfo; static const int vfsFlags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_TRANSIENT_DB; assert( pOp->p1>=0 ); assert( pOp->p2>=0 ); if( pOp->p3>0 ){ /* Make register reg[P3] into a value that can be used as the data ** form sqlite3BtreeInsert() where the length of the data is zero. */ assert( pOp->p2==0 ); /* Only used when number of columns is zero */ assert( pOp->opcode==OP_OpenEphemeral ); assert( aMem[pOp->p3].flags & MEM_Null ); aMem[pOp->p3].n = 0; aMem[pOp->p3].z = ""; } pCx = p->apCsr[pOp->p1]; if( pCx && !pCx->hasBeenDuped && ALWAYS(pOp->p2<=pCx->nField) ){ /* If the ephermeral table is already open and has no duplicates from ** OP_OpenDup, then erase all existing content so that the table is ** empty again, rather than creating a new table. */ assert( pCx->isEphemeral ); pCx->seqCount = 0; pCx->cacheStatus = CACHE_STALE; rc = sqlite3BtreeClearTable(pCx->ub.pBtx, pCx->pgnoRoot, 0); }else{ pCx = allocateCursor(p, pOp->p1, pOp->p2, CURTYPE_BTREE); if( pCx==0 ) goto no_mem; pCx->isEphemeral = 1; rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pCx->ub.pBtx, BTREE_OMIT_JOURNAL | BTREE_SINGLE | pOp->p5, vfsFlags); if( rc==SQLITE_OK ){ rc = sqlite3BtreeBeginTrans(pCx->ub.pBtx, 1, 0); if( rc==SQLITE_OK ){ /* If a transient index is required, create it by calling ** sqlite3BtreeCreateTable() with the BTREE_BLOBKEY flag before ** opening it. If a transient table is required, just use the ** automatically created table with root-page 1 (an BLOB_INTKEY table). */ if( (pCx->pKeyInfo = pKeyInfo = pOp->p4.pKeyInfo)!=0 ){ assert( pOp->p4type==P4_KEYINFO ); rc = sqlite3BtreeCreateTable(pCx->ub.pBtx, &pCx->pgnoRoot, BTREE_BLOBKEY | pOp->p5); if( rc==SQLITE_OK ){ assert( pCx->pgnoRoot==SCHEMA_ROOT+1 ); assert( pKeyInfo->db==db ); assert( pKeyInfo->enc==ENC(db) ); rc = sqlite3BtreeCursor(pCx->ub.pBtx, pCx->pgnoRoot, BTREE_WRCSR, pKeyInfo, pCx->uc.pCursor); } pCx->isTable = 0; }else{ pCx->pgnoRoot = SCHEMA_ROOT; rc = sqlite3BtreeCursor(pCx->ub.pBtx, SCHEMA_ROOT, BTREE_WRCSR, 0, pCx->uc.pCursor); pCx->isTable = 1; } } pCx->isOrdered = (pOp->p5!=BTREE_UNORDERED); if( rc ){ sqlite3BtreeClose(pCx->ub.pBtx); } } } if( rc ) goto abort_due_to_error; pCx->nullRow = 1; break; } /* Opcode: SorterOpen P1 P2 P3 P4 * ** ** This opcode works like OP_OpenEphemeral except that it opens ** a transient index that is specifically designed to sort large ** tables using an external merge-sort algorithm. ** ** If argument P3 is non-zero, then it indicates that the sorter may ** assume that a stable sort considering the first P3 fields of each ** key is sufficient to produce the required results. */ case OP_SorterOpen: { VdbeCursor *pCx; assert( pOp->p1>=0 ); assert( pOp->p2>=0 ); pCx = allocateCursor(p, pOp->p1, pOp->p2, CURTYPE_SORTER); if( pCx==0 ) goto no_mem; pCx->pKeyInfo = pOp->p4.pKeyInfo; assert( pCx->pKeyInfo->db==db ); assert( pCx->pKeyInfo->enc==ENC(db) ); rc = sqlite3VdbeSorterInit(db, pOp->p3, pCx); if( rc ) goto abort_due_to_error; break; } /* Opcode: SequenceTest P1 P2 * * * ** Synopsis: if( cursor[P1].ctr++ ) pc = P2 ** ** P1 is a sorter cursor. If the sequence counter is currently zero, jump ** to P2. Regardless of whether or not the jump is taken, increment the ** the sequence value. */ case OP_SequenceTest: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); if( (pC->seqCount++)==0 ){ goto jump_to_p2; } break; } /* Opcode: OpenPseudo P1 P2 P3 * * ** Synopsis: P3 columns in r[P2] ** ** Open a new cursor that points to a fake table that contains a single ** row of data. The content of that one row is the content of memory ** register P2. In other words, cursor P1 becomes an alias for the ** MEM_Blob content contained in register P2. ** ** A pseudo-table created by this opcode is used to hold a single ** row output from the sorter so that the row can be decomposed into ** individual columns using the OP_Column opcode. The OP_Column opcode ** is the only cursor opcode that works with a pseudo-table. ** ** P3 is the number of fields in the records that will be stored by ** the pseudo-table. */ case OP_OpenPseudo: { VdbeCursor *pCx; assert( pOp->p1>=0 ); assert( pOp->p3>=0 ); pCx = allocateCursor(p, pOp->p1, pOp->p3, CURTYPE_PSEUDO); if( pCx==0 ) goto no_mem; pCx->nullRow = 1; pCx->seekResult = pOp->p2; pCx->isTable = 1; /* Give this pseudo-cursor a fake BtCursor pointer so that pCx ** can be safely passed to sqlite3VdbeCursorMoveto(). This avoids a test ** for pCx->eCurType==CURTYPE_BTREE inside of sqlite3VdbeCursorMoveto() ** which is a performance optimization */ pCx->uc.pCursor = sqlite3BtreeFakeValidCursor(); assert( pOp->p5==0 ); break; } /* Opcode: Close P1 * * * * ** ** Close a cursor previously opened as P1. If P1 is not ** currently open, this instruction is a no-op. */ case OP_Close: { assert( pOp->p1>=0 && pOp->p1nCursor ); sqlite3VdbeFreeCursor(p, p->apCsr[pOp->p1]); p->apCsr[pOp->p1] = 0; break; } #ifdef SQLITE_ENABLE_COLUMN_USED_MASK /* Opcode: ColumnsUsed P1 * * P4 * ** ** This opcode (which only exists if SQLite was compiled with ** SQLITE_ENABLE_COLUMN_USED_MASK) identifies which columns of the ** table or index for cursor P1 are used. P4 is a 64-bit integer ** (P4_INT64) in which the first 63 bits are one for each of the ** first 63 columns of the table or index that are actually used ** by the cursor. The high-order bit is set if any column after ** the 64th is used. */ case OP_ColumnsUsed: { VdbeCursor *pC; pC = p->apCsr[pOp->p1]; assert( pC->eCurType==CURTYPE_BTREE ); pC->maskUsed = *(u64*)pOp->p4.pI64; break; } #endif /* Opcode: SeekGE P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as the key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the smallest entry that ** is greater than or equal to the key value. If there are no records ** greater than or equal to the key and P2 is not zero, then jump to P2. ** ** If the cursor P1 was opened using the OPFLAG_SEEKEQ flag, then this ** opcode will either land on a record that exactly matches the key, or ** else it will cause a jump to P2. When the cursor is OPFLAG_SEEKEQ, ** this opcode must be followed by an IdxLE opcode with the same arguments. ** The IdxGT opcode will be skipped if this opcode succeeds, but the ** IdxGT opcode will be used on subsequent loop iterations. The ** OPFLAG_SEEKEQ flags is a hint to the btree layer to say that this ** is an equality search. ** ** This opcode leaves the cursor configured to move in forward order, ** from the beginning toward the end. In other words, the cursor is ** configured to use Next, not Prev. ** ** See also: Found, NotFound, SeekLt, SeekGt, SeekLe */ /* Opcode: SeekGT P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as a key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the smallest entry that ** is greater than the key value. If there are no records greater than ** the key and P2 is not zero, then jump to P2. ** ** This opcode leaves the cursor configured to move in forward order, ** from the beginning toward the end. In other words, the cursor is ** configured to use Next, not Prev. ** ** See also: Found, NotFound, SeekLt, SeekGe, SeekLe */ /* Opcode: SeekLT P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as a key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the largest entry that ** is less than the key value. If there are no records less than ** the key and P2 is not zero, then jump to P2. ** ** This opcode leaves the cursor configured to move in reverse order, ** from the end toward the beginning. In other words, the cursor is ** configured to use Prev, not Next. ** ** See also: Found, NotFound, SeekGt, SeekGe, SeekLe */ /* Opcode: SeekLE P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as a key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the largest entry that ** is less than or equal to the key value. If there are no records ** less than or equal to the key and P2 is not zero, then jump to P2. ** ** This opcode leaves the cursor configured to move in reverse order, ** from the end toward the beginning. In other words, the cursor is ** configured to use Prev, not Next. ** ** If the cursor P1 was opened using the OPFLAG_SEEKEQ flag, then this ** opcode will either land on a record that exactly matches the key, or ** else it will cause a jump to P2. When the cursor is OPFLAG_SEEKEQ, ** this opcode must be followed by an IdxLE opcode with the same arguments. ** The IdxGE opcode will be skipped if this opcode succeeds, but the ** IdxGE opcode will be used on subsequent loop iterations. The ** OPFLAG_SEEKEQ flags is a hint to the btree layer to say that this ** is an equality search. ** ** See also: Found, NotFound, SeekGt, SeekGe, SeekLt */ case OP_SeekLT: /* jump, in3, group */ case OP_SeekLE: /* jump, in3, group */ case OP_SeekGE: /* jump, in3, group */ case OP_SeekGT: { /* jump, in3, group */ int res; /* Comparison result */ int oc; /* Opcode */ VdbeCursor *pC; /* The cursor to seek */ UnpackedRecord r; /* The key to seek for */ int nField; /* Number of columns or fields in the key */ i64 iKey; /* The rowid we are to seek to */ int eqOnly; /* Only interested in == results */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p2!=0 ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( OP_SeekLE == OP_SeekLT+1 ); assert( OP_SeekGE == OP_SeekLT+2 ); assert( OP_SeekGT == OP_SeekLT+3 ); assert( pC->isOrdered ); assert( pC->uc.pCursor!=0 ); oc = pOp->opcode; eqOnly = 0; pC->nullRow = 0; #ifdef SQLITE_DEBUG pC->seekOp = pOp->opcode; #endif pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; if( pC->isTable ){ u16 flags3, newType; /* The OPFLAG_SEEKEQ/BTREE_SEEK_EQ flag is only set on index cursors */ assert( sqlite3BtreeCursorHasHint(pC->uc.pCursor, BTREE_SEEK_EQ)==0 || CORRUPT_DB ); /* The input value in P3 might be of any type: integer, real, string, ** blob, or NULL. But it needs to be an integer before we can do ** the seek, so convert it. */ pIn3 = &aMem[pOp->p3]; flags3 = pIn3->flags; if( (flags3 & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Str))==MEM_Str ){ applyNumericAffinity(pIn3, 0); } iKey = sqlite3VdbeIntValue(pIn3); /* Get the integer key value */ newType = pIn3->flags; /* Record the type after applying numeric affinity */ pIn3->flags = flags3; /* But convert the type back to its original */ /* If the P3 value could not be converted into an integer without ** loss of information, then special processing is required... */ if( (newType & (MEM_Int|MEM_IntReal))==0 ){ int c; if( (newType & MEM_Real)==0 ){ if( (newType & MEM_Null) || oc>=OP_SeekGE ){ VdbeBranchTaken(1,2); goto jump_to_p2; }else{ rc = sqlite3BtreeLast(pC->uc.pCursor, &res); if( rc!=SQLITE_OK ) goto abort_due_to_error; goto seek_not_found; } } c = sqlite3IntFloatCompare(iKey, pIn3->u.r); /* If the approximation iKey is larger than the actual real search ** term, substitute >= for > and < for <=. e.g. if the search term ** is 4.9 and the integer approximation 5: ** ** (x > 4.9) -> (x >= 5) ** (x <= 4.9) -> (x < 5) */ if( c>0 ){ assert( OP_SeekGE==(OP_SeekGT-1) ); assert( OP_SeekLT==(OP_SeekLE-1) ); assert( (OP_SeekLE & 0x0001)==(OP_SeekGT & 0x0001) ); if( (oc & 0x0001)==(OP_SeekGT & 0x0001) ) oc--; } /* If the approximation iKey is smaller than the actual real search ** term, substitute <= for < and > for >=. */ else if( c<0 ){ assert( OP_SeekLE==(OP_SeekLT+1) ); assert( OP_SeekGT==(OP_SeekGE+1) ); assert( (OP_SeekLT & 0x0001)==(OP_SeekGE & 0x0001) ); if( (oc & 0x0001)==(OP_SeekLT & 0x0001) ) oc++; } } rc = sqlite3BtreeTableMoveto(pC->uc.pCursor, (u64)iKey, 0, &res); pC->movetoTarget = iKey; /* Used by OP_Delete */ if( rc!=SQLITE_OK ){ goto abort_due_to_error; } }else{ /* For a cursor with the OPFLAG_SEEKEQ/BTREE_SEEK_EQ hint, only the ** OP_SeekGE and OP_SeekLE opcodes are allowed, and these must be ** immediately followed by an OP_IdxGT or OP_IdxLT opcode, respectively, ** with the same key. */ if( sqlite3BtreeCursorHasHint(pC->uc.pCursor, BTREE_SEEK_EQ) ){ eqOnly = 1; assert( pOp->opcode==OP_SeekGE || pOp->opcode==OP_SeekLE ); assert( pOp[1].opcode==OP_IdxLT || pOp[1].opcode==OP_IdxGT ); assert( pOp->opcode==OP_SeekGE || pOp[1].opcode==OP_IdxLT ); assert( pOp->opcode==OP_SeekLE || pOp[1].opcode==OP_IdxGT ); assert( pOp[1].p1==pOp[0].p1 ); assert( pOp[1].p2==pOp[0].p2 ); assert( pOp[1].p3==pOp[0].p3 ); assert( pOp[1].p4.i==pOp[0].p4.i ); } nField = pOp->p4.i; assert( pOp->p4type==P4_INT32 ); assert( nField>0 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)nField; /* The next line of code computes as follows, only faster: ** if( oc==OP_SeekGT || oc==OP_SeekLE ){ ** r.default_rc = -1; ** }else{ ** r.default_rc = +1; ** } */ r.default_rc = ((1 & (oc - OP_SeekLT)) ? -1 : +1); assert( oc!=OP_SeekGT || r.default_rc==-1 ); assert( oc!=OP_SeekLE || r.default_rc==-1 ); assert( oc!=OP_SeekGE || r.default_rc==+1 ); assert( oc!=OP_SeekLT || r.default_rc==+1 ); r.aMem = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG { int i; for(i=0; iuc.pCursor, &r, &res); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } if( eqOnly && r.eqSeen==0 ){ assert( res!=0 ); goto seek_not_found; } } #ifdef SQLITE_TEST sqlite3_search_count++; #endif if( oc>=OP_SeekGE ){ assert( oc==OP_SeekGE || oc==OP_SeekGT ); if( res<0 || (res==0 && oc==OP_SeekGT) ){ res = 0; rc = sqlite3BtreeNext(pC->uc.pCursor, 0); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; res = 1; }else{ goto abort_due_to_error; } } }else{ res = 0; } }else{ assert( oc==OP_SeekLT || oc==OP_SeekLE ); if( res>0 || (res==0 && oc==OP_SeekLT) ){ res = 0; rc = sqlite3BtreePrevious(pC->uc.pCursor, 0); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; res = 1; }else{ goto abort_due_to_error; } } }else{ /* res might be negative because the table is empty. Check to ** see if this is the case. */ res = sqlite3BtreeEof(pC->uc.pCursor); } } seek_not_found: assert( pOp->p2>0 ); VdbeBranchTaken(res!=0,2); if( res ){ goto jump_to_p2; }else if( eqOnly ){ assert( pOp[1].opcode==OP_IdxLT || pOp[1].opcode==OP_IdxGT ); pOp++; /* Skip the OP_IdxLt or OP_IdxGT that follows */ } break; } /* Opcode: SeekScan P1 P2 * * * ** Synopsis: Scan-ahead up to P1 rows ** ** This opcode is a prefix opcode to OP_SeekGE. In other words, this ** opcode must be immediately followed by OP_SeekGE. This constraint is ** checked by assert() statements. ** ** This opcode uses the P1 through P4 operands of the subsequent ** OP_SeekGE. In the text that follows, the operands of the subsequent ** OP_SeekGE opcode are denoted as SeekOP.P1 through SeekOP.P4. Only ** the P1 and P2 operands of this opcode are also used, and are called ** This.P1 and This.P2. ** ** This opcode helps to optimize IN operators on a multi-column index ** where the IN operator is on the later terms of the index by avoiding ** unnecessary seeks on the btree, substituting steps to the next row ** of the b-tree instead. A correct answer is obtained if this opcode ** is omitted or is a no-op. ** ** The SeekGE.P3 and SeekGE.P4 operands identify an unpacked key which ** is the desired entry that we want the cursor SeekGE.P1 to be pointing ** to. Call this SeekGE.P4/P5 row the "target". ** ** If the SeekGE.P1 cursor is not currently pointing to a valid row, ** then this opcode is a no-op and control passes through into the OP_SeekGE. ** ** If the SeekGE.P1 cursor is pointing to a valid row, then that row ** might be the target row, or it might be near and slightly before the ** target row. This opcode attempts to position the cursor on the target ** row by, perhaps by invoking sqlite3BtreeStep() on the cursor ** between 0 and This.P1 times. ** ** There are three possible outcomes from this opcode:
      ** **
    1. If after This.P1 steps, the cursor is still pointing to a place that ** is earlier in the btree than the target row, then fall through ** into the subsquence OP_SeekGE opcode. ** **
    2. If the cursor is successfully moved to the target row by 0 or more ** sqlite3BtreeNext() calls, then jump to This.P2, which will land just ** past the OP_IdxGT or OP_IdxGE opcode that follows the OP_SeekGE. ** **
    3. If the cursor ends up past the target row (indicating the the target ** row does not exist in the btree) then jump to SeekOP.P2. **
    */ case OP_SeekScan: { VdbeCursor *pC; int res; int nStep; UnpackedRecord r; assert( pOp[1].opcode==OP_SeekGE ); /* pOp->p2 points to the first instruction past the OP_IdxGT that ** follows the OP_SeekGE. */ assert( pOp->p2>=(int)(pOp-aOp)+2 ); assert( aOp[pOp->p2-1].opcode==OP_IdxGT || aOp[pOp->p2-1].opcode==OP_IdxGE ); testcase( aOp[pOp->p2-1].opcode==OP_IdxGE ); assert( pOp[1].p1==aOp[pOp->p2-1].p1 ); assert( pOp[1].p2==aOp[pOp->p2-1].p2 ); assert( pOp[1].p3==aOp[pOp->p2-1].p3 ); assert( pOp->p1>0 ); pC = p->apCsr[pOp[1].p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( !pC->isTable ); if( !sqlite3BtreeCursorIsValidNN(pC->uc.pCursor) ){ #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("... cursor not valid - fall through\n"); } #endif break; } nStep = pOp->p1; assert( nStep>=1 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp[1].p4.i; r.default_rc = 0; r.aMem = &aMem[pOp[1].p3]; #ifdef SQLITE_DEBUG { int i; for(i=0; i0 ){ seekscan_search_fail: #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("... %d steps and then skip\n", pOp->p1 - nStep); } #endif VdbeBranchTaken(1,3); pOp++; goto jump_to_p2; } if( res==0 ){ #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("... %d steps and then success\n", pOp->p1 - nStep); } #endif VdbeBranchTaken(2,3); goto jump_to_p2; break; } if( nStep<=0 ){ #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("... fall through after %d steps\n", pOp->p1); } #endif VdbeBranchTaken(0,3); break; } nStep--; rc = sqlite3BtreeNext(pC->uc.pCursor, 0); if( rc ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; goto seekscan_search_fail; }else{ goto abort_due_to_error; } } } break; } /* Opcode: SeekHit P1 P2 P3 * * ** Synopsis: set P2<=seekHit<=P3 ** ** Increase or decrease the seekHit value for cursor P1, if necessary, ** so that it is no less than P2 and no greater than P3. ** ** The seekHit integer represents the maximum of terms in an index for which ** there is known to be at least one match. If the seekHit value is smaller ** than the total number of equality terms in an index lookup, then the ** OP_IfNoHope opcode might run to see if the IN loop can be abandoned ** early, thus saving work. This is part of the IN-early-out optimization. ** ** P1 must be a valid b-tree cursor. */ case OP_SeekHit: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pOp->p3>=pOp->p2 ); if( pC->seekHitp2 ){ #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("seekHit changes from %d to %d\n", pC->seekHit, pOp->p2); } #endif pC->seekHit = pOp->p2; }else if( pC->seekHit>pOp->p3 ){ #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("seekHit changes from %d to %d\n", pC->seekHit, pOp->p3); } #endif pC->seekHit = pOp->p3; } break; } /* Opcode: IfNotOpen P1 P2 * * * ** Synopsis: if( !csr[P1] ) goto P2 ** ** If cursor P1 is not open, jump to instruction P2. Otherwise, fall through. */ case OP_IfNotOpen: { /* jump */ assert( pOp->p1>=0 && pOp->p1nCursor ); VdbeBranchTaken(p->apCsr[pOp->p1]==0, 2); if( !p->apCsr[pOp->p1] ){ goto jump_to_p2_and_check_for_interrupt; } break; } /* Opcode: Found P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If P4==0 then register P3 holds a blob constructed by MakeRecord. If ** P4>0 then register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the record identified by P3 and P4 ** is a prefix of any entry in P1 then a jump is made to P2 and ** P1 is left pointing at the matching entry. ** ** This operation leaves the cursor in a state where it can be ** advanced in the forward direction. The Next instruction will work, ** but not the Prev instruction. ** ** See also: NotFound, NoConflict, NotExists. SeekGe */ /* Opcode: NotFound P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If P4==0 then register P3 holds a blob constructed by MakeRecord. If ** P4>0 then register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the record identified by P3 and P4 ** is not the prefix of any entry in P1 then a jump is made to P2. If P1 ** does contain an entry whose prefix matches the P3/P4 record then control ** falls through to the next instruction and P1 is left pointing at the ** matching entry. ** ** This operation leaves the cursor in a state where it cannot be ** advanced in either direction. In other words, the Next and Prev ** opcodes do not work after this operation. ** ** See also: Found, NotExists, NoConflict, IfNoHope */ /* Opcode: IfNoHope P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** Register P3 is the first of P4 registers that form an unpacked ** record. Cursor P1 is an index btree. P2 is a jump destination. ** In other words, the operands to this opcode are the same as the ** operands to OP_NotFound and OP_IdxGT. ** ** This opcode is an optimization attempt only. If this opcode always ** falls through, the correct answer is still obtained, but extra works ** is performed. ** ** A value of N in the seekHit flag of cursor P1 means that there exists ** a key P3:N that will match some record in the index. We want to know ** if it is possible for a record P3:P4 to match some record in the ** index. If it is not possible, we can skips some work. So if seekHit ** is less than P4, attempt to find out if a match is possible by running ** OP_NotFound. ** ** This opcode is used in IN clause processing for a multi-column key. ** If an IN clause is attached to an element of the key other than the ** left-most element, and if there are no matches on the most recent ** seek over the whole key, then it might be that one of the key element ** to the left is prohibiting a match, and hence there is "no hope" of ** any match regardless of how many IN clause elements are checked. ** In such a case, we abandon the IN clause search early, using this ** opcode. The opcode name comes from the fact that the ** jump is taken if there is "no hope" of achieving a match. ** ** See also: NotFound, SeekHit */ /* Opcode: NoConflict P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If P4==0 then register P3 holds a blob constructed by MakeRecord. If ** P4>0 then register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the record identified by P3 and P4 ** contains any NULL value, jump immediately to P2. If all terms of the ** record are not-NULL then a check is done to determine if any row in the ** P1 index btree has a matching key prefix. If there are no matches, jump ** immediately to P2. If there is a match, fall through and leave the P1 ** cursor pointing to the matching row. ** ** This opcode is similar to OP_NotFound with the exceptions that the ** branch is always taken if any part of the search key input is NULL. ** ** This operation leaves the cursor in a state where it cannot be ** advanced in either direction. In other words, the Next and Prev ** opcodes do not work after this operation. ** ** See also: NotFound, Found, NotExists */ case OP_IfNoHope: { /* jump, in3 */ VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ printf("seekHit is %d\n", pC->seekHit); } #endif if( pC->seekHit>=pOp->p4.i ) break; /* Fall through into OP_NotFound */ /* no break */ deliberate_fall_through } case OP_NoConflict: /* jump, in3 */ case OP_NotFound: /* jump, in3 */ case OP_Found: { /* jump, in3 */ int alreadyExists; int takeJump; int ii; VdbeCursor *pC; int res; UnpackedRecord *pFree; UnpackedRecord *pIdxKey; UnpackedRecord r; #ifdef SQLITE_TEST if( pOp->opcode!=OP_NoConflict ) sqlite3_found_count++; #endif assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p4type==P4_INT32 ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); #ifdef SQLITE_DEBUG pC->seekOp = pOp->opcode; #endif pIn3 = &aMem[pOp->p3]; assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); assert( pC->isTable==0 ); if( pOp->p4.i>0 ){ r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp->p4.i; r.aMem = pIn3; #ifdef SQLITE_DEBUG for(ii=0; iip3+ii, &r.aMem[ii]); } #endif pIdxKey = &r; pFree = 0; }else{ assert( pIn3->flags & MEM_Blob ); rc = ExpandBlob(pIn3); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); if( rc ) goto no_mem; pFree = pIdxKey = sqlite3VdbeAllocUnpackedRecord(pC->pKeyInfo); if( pIdxKey==0 ) goto no_mem; sqlite3VdbeRecordUnpack(pC->pKeyInfo, pIn3->n, pIn3->z, pIdxKey); } pIdxKey->default_rc = 0; takeJump = 0; if( pOp->opcode==OP_NoConflict ){ /* For the OP_NoConflict opcode, take the jump if any of the ** input fields are NULL, since any key with a NULL will not ** conflict */ for(ii=0; iinField; ii++){ if( pIdxKey->aMem[ii].flags & MEM_Null ){ takeJump = 1; break; } } } rc = sqlite3BtreeIndexMoveto(pC->uc.pCursor, pIdxKey, &res); if( pFree ) sqlite3DbFreeNN(db, pFree); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } pC->seekResult = res; alreadyExists = (res==0); pC->nullRow = 1-alreadyExists; pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; if( pOp->opcode==OP_Found ){ VdbeBranchTaken(alreadyExists!=0,2); if( alreadyExists ) goto jump_to_p2; }else{ VdbeBranchTaken(takeJump||alreadyExists==0,2); if( takeJump || !alreadyExists ) goto jump_to_p2; if( pOp->opcode==OP_IfNoHope ) pC->seekHit = pOp->p4.i; } break; } /* Opcode: SeekRowid P1 P2 P3 * * ** Synopsis: intkey=r[P3] ** ** P1 is the index of a cursor open on an SQL table btree (with integer ** keys). If register P3 does not contain an integer or if P1 does not ** contain a record with rowid P3 then jump immediately to P2. ** Or, if P2 is 0, raise an SQLITE_CORRUPT error. If P1 does contain ** a record with rowid P3 then ** leave the cursor pointing at that record and fall through to the next ** instruction. ** ** The OP_NotExists opcode performs the same operation, but with OP_NotExists ** the P3 register must be guaranteed to contain an integer value. With this ** opcode, register P3 might not contain an integer. ** ** The OP_NotFound opcode performs the same operation on index btrees ** (with arbitrary multi-value keys). ** ** This opcode leaves the cursor in a state where it cannot be advanced ** in either direction. In other words, the Next and Prev opcodes will ** not work following this opcode. ** ** See also: Found, NotFound, NoConflict, SeekRowid */ /* Opcode: NotExists P1 P2 P3 * * ** Synopsis: intkey=r[P3] ** ** P1 is the index of a cursor open on an SQL table btree (with integer ** keys). P3 is an integer rowid. If P1 does not contain a record with ** rowid P3 then jump immediately to P2. Or, if P2 is 0, raise an ** SQLITE_CORRUPT error. If P1 does contain a record with rowid P3 then ** leave the cursor pointing at that record and fall through to the next ** instruction. ** ** The OP_SeekRowid opcode performs the same operation but also allows the ** P3 register to contain a non-integer value, in which case the jump is ** always taken. This opcode requires that P3 always contain an integer. ** ** The OP_NotFound opcode performs the same operation on index btrees ** (with arbitrary multi-value keys). ** ** This opcode leaves the cursor in a state where it cannot be advanced ** in either direction. In other words, the Next and Prev opcodes will ** not work following this opcode. ** ** See also: Found, NotFound, NoConflict, SeekRowid */ case OP_SeekRowid: { /* jump, in3 */ VdbeCursor *pC; BtCursor *pCrsr; int res; u64 iKey; pIn3 = &aMem[pOp->p3]; testcase( pIn3->flags & MEM_Int ); testcase( pIn3->flags & MEM_IntReal ); testcase( pIn3->flags & MEM_Real ); testcase( (pIn3->flags & (MEM_Str|MEM_Int))==MEM_Str ); if( (pIn3->flags & (MEM_Int|MEM_IntReal))==0 ){ /* If pIn3->u.i does not contain an integer, compute iKey as the ** integer value of pIn3. Jump to P2 if pIn3 cannot be converted ** into an integer without loss of information. Take care to avoid ** changing the datatype of pIn3, however, as it is used by other ** parts of the prepared statement. */ Mem x = pIn3[0]; applyAffinity(&x, SQLITE_AFF_NUMERIC, encoding); if( (x.flags & MEM_Int)==0 ) goto jump_to_p2; iKey = x.u.i; goto notExistsWithKey; } /* Fall through into OP_NotExists */ /* no break */ deliberate_fall_through case OP_NotExists: /* jump, in3 */ pIn3 = &aMem[pOp->p3]; assert( (pIn3->flags & MEM_Int)!=0 || pOp->opcode==OP_SeekRowid ); assert( pOp->p1>=0 && pOp->p1nCursor ); iKey = pIn3->u.i; notExistsWithKey: pC = p->apCsr[pOp->p1]; assert( pC!=0 ); #ifdef SQLITE_DEBUG if( pOp->opcode==OP_SeekRowid ) pC->seekOp = OP_SeekRowid; #endif assert( pC->isTable ); assert( pC->eCurType==CURTYPE_BTREE ); pCrsr = pC->uc.pCursor; assert( pCrsr!=0 ); res = 0; rc = sqlite3BtreeTableMoveto(pCrsr, iKey, 0, &res); assert( rc==SQLITE_OK || res==0 ); pC->movetoTarget = iKey; /* Used by OP_Delete */ pC->nullRow = 0; pC->cacheStatus = CACHE_STALE; pC->deferredMoveto = 0; VdbeBranchTaken(res!=0,2); pC->seekResult = res; if( res!=0 ){ assert( rc==SQLITE_OK ); if( pOp->p2==0 ){ rc = SQLITE_CORRUPT_BKPT; }else{ goto jump_to_p2; } } if( rc ) goto abort_due_to_error; break; } /* Opcode: Sequence P1 P2 * * * ** Synopsis: r[P2]=cursor[P1].ctr++ ** ** Find the next available sequence number for cursor P1. ** Write the sequence number into register P2. ** The sequence number on the cursor is incremented after this ** instruction. */ case OP_Sequence: { /* out2 */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( p->apCsr[pOp->p1]!=0 ); assert( p->apCsr[pOp->p1]->eCurType!=CURTYPE_VTAB ); pOut = out2Prerelease(p, pOp); pOut->u.i = p->apCsr[pOp->p1]->seqCount++; break; } /* Opcode: NewRowid P1 P2 P3 * * ** Synopsis: r[P2]=rowid ** ** Get a new integer record number (a.k.a "rowid") used as the key to a table. ** The record number is not previously used as a key in the database ** table that cursor P1 points to. The new record number is written ** written to register P2. ** ** If P3>0 then P3 is a register in the root frame of this VDBE that holds ** the largest previously generated record number. No new record numbers are ** allowed to be less than this value. When this value reaches its maximum, ** an SQLITE_FULL error is generated. The P3 register is updated with the ' ** generated record number. This P3 mechanism is used to help implement the ** AUTOINCREMENT feature. */ case OP_NewRowid: { /* out2 */ i64 v; /* The new rowid */ VdbeCursor *pC; /* Cursor of table to get the new rowid */ int res; /* Result of an sqlite3BtreeLast() */ int cnt; /* Counter to limit the number of searches */ #ifndef SQLITE_OMIT_AUTOINCREMENT Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ VdbeFrame *pFrame; /* Root frame of VDBE */ #endif v = 0; res = 0; pOut = out2Prerelease(p, pOp); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->isTable ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); { /* The next rowid or record number (different terms for the same ** thing) is obtained in a two-step algorithm. ** ** First we attempt to find the largest existing rowid and add one ** to that. But if the largest existing rowid is already the maximum ** positive integer, we have to fall through to the second ** probabilistic algorithm ** ** The second algorithm is to select a rowid at random and see if ** it already exists in the table. If it does not exist, we have ** succeeded. If the random rowid does exist, we select a new one ** and try again, up to 100 times. */ assert( pC->isTable ); #ifdef SQLITE_32BIT_ROWID # define MAX_ROWID 0x7fffffff #else /* Some compilers complain about constants of the form 0x7fffffffffffffff. ** Others complain about 0x7ffffffffffffffffLL. The following macro seems ** to provide the constant while making all compilers happy. */ # define MAX_ROWID (i64)( (((u64)0x7fffffff)<<32) | (u64)0xffffffff ) #endif if( !pC->useRandomRowid ){ rc = sqlite3BtreeLast(pC->uc.pCursor, &res); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } if( res ){ v = 1; /* IMP: R-61914-48074 */ }else{ assert( sqlite3BtreeCursorIsValid(pC->uc.pCursor) ); v = sqlite3BtreeIntegerKey(pC->uc.pCursor); if( v>=MAX_ROWID ){ pC->useRandomRowid = 1; }else{ v++; /* IMP: R-29538-34987 */ } } } #ifndef SQLITE_OMIT_AUTOINCREMENT if( pOp->p3 ){ /* Assert that P3 is a valid memory cell. */ assert( pOp->p3>0 ); if( p->pFrame ){ for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); /* Assert that P3 is a valid memory cell. */ assert( pOp->p3<=pFrame->nMem ); pMem = &pFrame->aMem[pOp->p3]; }else{ /* Assert that P3 is a valid memory cell. */ assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); pMem = &aMem[pOp->p3]; memAboutToChange(p, pMem); } assert( memIsValid(pMem) ); REGISTER_TRACE(pOp->p3, pMem); sqlite3VdbeMemIntegerify(pMem); assert( (pMem->flags & MEM_Int)!=0 ); /* mem(P3) holds an integer */ if( pMem->u.i==MAX_ROWID || pC->useRandomRowid ){ rc = SQLITE_FULL; /* IMP: R-17817-00630 */ goto abort_due_to_error; } if( vu.i+1 ){ v = pMem->u.i + 1; } pMem->u.i = v; } #endif if( pC->useRandomRowid ){ /* IMPLEMENTATION-OF: R-07677-41881 If the largest ROWID is equal to the ** largest possible integer (9223372036854775807) then the database ** engine starts picking positive candidate ROWIDs at random until ** it finds one that is not previously used. */ assert( pOp->p3==0 ); /* We cannot be in random rowid mode if this is ** an AUTOINCREMENT table. */ cnt = 0; do{ sqlite3_randomness(sizeof(v), &v); v &= (MAX_ROWID>>1); v++; /* Ensure that v is greater than zero */ }while( ((rc = sqlite3BtreeTableMoveto(pC->uc.pCursor, (u64)v, 0, &res))==SQLITE_OK) && (res==0) && (++cnt<100)); if( rc ) goto abort_due_to_error; if( res==0 ){ rc = SQLITE_FULL; /* IMP: R-38219-53002 */ goto abort_due_to_error; } assert( v>0 ); /* EV: R-40812-03570 */ } pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; } pOut->u.i = v; break; } /* Opcode: Insert P1 P2 P3 P4 P5 ** Synopsis: intkey=r[P3] data=r[P2] ** ** Write an entry into the table of cursor P1. A new entry is ** created if it doesn't already exist or the data for an existing ** entry is overwritten. The data is the value MEM_Blob stored in register ** number P2. The key is stored in register P3. The key must ** be a MEM_Int. ** ** If the OPFLAG_NCHANGE flag of P5 is set, then the row change count is ** incremented (otherwise not). If the OPFLAG_LASTROWID flag of P5 is set, ** then rowid is stored for subsequent return by the ** sqlite3_last_insert_rowid() function (otherwise it is unmodified). ** ** If the OPFLAG_USESEEKRESULT flag of P5 is set, the implementation might ** run faster by avoiding an unnecessary seek on cursor P1. However, ** the OPFLAG_USESEEKRESULT flag must only be set if there have been no prior ** seeks on the cursor or if the most recent seek used a key equal to P3. ** ** If the OPFLAG_ISUPDATE flag is set, then this opcode is part of an ** UPDATE operation. Otherwise (if the flag is clear) then this opcode ** is part of an INSERT operation. The difference is only important to ** the update hook. ** ** Parameter P4 may point to a Table structure, or may be NULL. If it is ** not NULL, then the update-hook (sqlite3.xUpdateCallback) is invoked ** following a successful insert. ** ** (WARNING/TODO: If P1 is a pseudo-cursor and P2 is dynamically ** allocated, then ownership of P2 is transferred to the pseudo-cursor ** and register P2 becomes ephemeral. If the cursor is changed, the ** value of register P2 will then change. Make sure this does not ** cause any problems.) ** ** This instruction only works on tables. The equivalent instruction ** for indices is OP_IdxInsert. */ case OP_Insert: { Mem *pData; /* MEM cell holding data for the record to be inserted */ Mem *pKey; /* MEM cell holding key for the record */ VdbeCursor *pC; /* Cursor to table into which insert is written */ int seekResult; /* Result of prior seek or 0 if no USESEEKRESULT flag */ const char *zDb; /* database name - used by the update hook */ Table *pTab; /* Table structure - used by update and pre-update hooks */ BtreePayload x; /* Payload to be inserted */ pData = &aMem[pOp->p2]; assert( pOp->p1>=0 && pOp->p1nCursor ); assert( memIsValid(pData) ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->deferredMoveto==0 ); assert( pC->uc.pCursor!=0 ); assert( (pOp->p5 & OPFLAG_ISNOOP) || pC->isTable ); assert( pOp->p4type==P4_TABLE || pOp->p4type>=P4_STATIC ); REGISTER_TRACE(pOp->p2, pData); sqlite3VdbeIncrWriteCounter(p, pC); pKey = &aMem[pOp->p3]; assert( pKey->flags & MEM_Int ); assert( memIsValid(pKey) ); REGISTER_TRACE(pOp->p3, pKey); x.nKey = pKey->u.i; if( pOp->p4type==P4_TABLE && HAS_UPDATE_HOOK(db) ){ assert( pC->iDb>=0 ); zDb = db->aDb[pC->iDb].zDbSName; pTab = pOp->p4.pTab; assert( (pOp->p5 & OPFLAG_ISNOOP) || HasRowid(pTab) ); }else{ pTab = 0; zDb = 0; } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* Invoke the pre-update hook, if any */ if( pTab ){ if( db->xPreUpdateCallback && !(pOp->p5 & OPFLAG_ISUPDATE) ){ sqlite3VdbePreUpdateHook(p,pC,SQLITE_INSERT,zDb,pTab,x.nKey,pOp->p2,-1); } if( db->xUpdateCallback==0 || pTab->aCol==0 ){ /* Prevent post-update hook from running in cases when it should not */ pTab = 0; } } if( pOp->p5 & OPFLAG_ISNOOP ) break; #endif if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++; if( pOp->p5 & OPFLAG_LASTROWID ) db->lastRowid = x.nKey; assert( (pData->flags & (MEM_Blob|MEM_Str))!=0 || pData->n==0 ); x.pData = pData->z; x.nData = pData->n; seekResult = ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0); if( pData->flags & MEM_Zero ){ x.nZero = pData->u.nZero; }else{ x.nZero = 0; } x.pKey = 0; rc = sqlite3BtreeInsert(pC->uc.pCursor, &x, (pOp->p5 & (OPFLAG_APPEND|OPFLAG_SAVEPOSITION|OPFLAG_PREFORMAT)), seekResult ); pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; /* Invoke the update-hook if required. */ if( rc ) goto abort_due_to_error; if( pTab ){ assert( db->xUpdateCallback!=0 ); assert( pTab->aCol!=0 ); db->xUpdateCallback(db->pUpdateArg, (pOp->p5 & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_INSERT, zDb, pTab->zName, x.nKey); } break; } /* Opcode: RowCell P1 P2 P3 * * ** ** P1 and P2 are both open cursors. Both must be opened on the same type ** of table - intkey or index. This opcode is used as part of copying ** the current row from P2 into P1. If the cursors are opened on intkey ** tables, register P3 contains the rowid to use with the new record in ** P1. If they are opened on index tables, P3 is not used. ** ** This opcode must be followed by either an Insert or InsertIdx opcode ** with the OPFLAG_PREFORMAT flag set to complete the insert operation. */ case OP_RowCell: { VdbeCursor *pDest; /* Cursor to write to */ VdbeCursor *pSrc; /* Cursor to read from */ i64 iKey; /* Rowid value to insert with */ assert( pOp[1].opcode==OP_Insert || pOp[1].opcode==OP_IdxInsert ); assert( pOp[1].opcode==OP_Insert || pOp->p3==0 ); assert( pOp[1].opcode==OP_IdxInsert || pOp->p3>0 ); assert( pOp[1].p5 & OPFLAG_PREFORMAT ); pDest = p->apCsr[pOp->p1]; pSrc = p->apCsr[pOp->p2]; iKey = pOp->p3 ? aMem[pOp->p3].u.i : 0; rc = sqlite3BtreeTransferRow(pDest->uc.pCursor, pSrc->uc.pCursor, iKey); if( rc!=SQLITE_OK ) goto abort_due_to_error; break; }; /* Opcode: Delete P1 P2 P3 P4 P5 ** ** Delete the record at which the P1 cursor is currently pointing. ** ** If the OPFLAG_SAVEPOSITION bit of the P5 parameter is set, then ** the cursor will be left pointing at either the next or the previous ** record in the table. If it is left pointing at the next record, then ** the next Next instruction will be a no-op. As a result, in this case ** it is ok to delete a record from within a Next loop. If ** OPFLAG_SAVEPOSITION bit of P5 is clear, then the cursor will be ** left in an undefined state. ** ** If the OPFLAG_AUXDELETE bit is set on P5, that indicates that this ** delete one of several associated with deleting a table row and all its ** associated index entries. Exactly one of those deletes is the "primary" ** delete. The others are all on OPFLAG_FORDELETE cursors or else are ** marked with the AUXDELETE flag. ** ** If the OPFLAG_NCHANGE flag of P2 (NB: P2 not P5) is set, then the row ** change count is incremented (otherwise not). ** ** P1 must not be pseudo-table. It has to be a real table with ** multiple rows. ** ** If P4 is not NULL then it points to a Table object. In this case either ** the update or pre-update hook, or both, may be invoked. The P1 cursor must ** have been positioned using OP_NotFound prior to invoking this opcode in ** this case. Specifically, if one is configured, the pre-update hook is ** invoked if P4 is not NULL. The update-hook is invoked if one is configured, ** P4 is not NULL, and the OPFLAG_NCHANGE flag is set in P2. ** ** If the OPFLAG_ISUPDATE flag is set in P2, then P3 contains the address ** of the memory cell that contains the value that the rowid of the row will ** be set to by the update. */ case OP_Delete: { VdbeCursor *pC; const char *zDb; Table *pTab; int opflags; opflags = pOp->p2; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); assert( pC->deferredMoveto==0 ); sqlite3VdbeIncrWriteCounter(p, pC); #ifdef SQLITE_DEBUG if( pOp->p4type==P4_TABLE && HasRowid(pOp->p4.pTab) && pOp->p5==0 && sqlite3BtreeCursorIsValidNN(pC->uc.pCursor) ){ /* If p5 is zero, the seek operation that positioned the cursor prior to ** OP_Delete will have also set the pC->movetoTarget field to the rowid of ** the row that is being deleted */ i64 iKey = sqlite3BtreeIntegerKey(pC->uc.pCursor); assert( CORRUPT_DB || pC->movetoTarget==iKey ); } #endif /* If the update-hook or pre-update-hook will be invoked, set zDb to ** the name of the db to pass as to it. Also set local pTab to a copy ** of p4.pTab. Finally, if p5 is true, indicating that this cursor was ** last moved with OP_Next or OP_Prev, not Seek or NotFound, set ** VdbeCursor.movetoTarget to the current rowid. */ if( pOp->p4type==P4_TABLE && HAS_UPDATE_HOOK(db) ){ assert( pC->iDb>=0 ); assert( pOp->p4.pTab!=0 ); zDb = db->aDb[pC->iDb].zDbSName; pTab = pOp->p4.pTab; if( (pOp->p5 & OPFLAG_SAVEPOSITION)!=0 && pC->isTable ){ pC->movetoTarget = sqlite3BtreeIntegerKey(pC->uc.pCursor); } }else{ zDb = 0; pTab = 0; } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* Invoke the pre-update-hook if required. */ assert( db->xPreUpdateCallback==0 || pTab==pOp->p4.pTab ); if( db->xPreUpdateCallback && pTab ){ assert( !(opflags & OPFLAG_ISUPDATE) || HasRowid(pTab)==0 || (aMem[pOp->p3].flags & MEM_Int) ); sqlite3VdbePreUpdateHook(p, pC, (opflags & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_DELETE, zDb, pTab, pC->movetoTarget, pOp->p3, -1 ); } if( opflags & OPFLAG_ISNOOP ) break; #endif /* Only flags that can be set are SAVEPOISTION and AUXDELETE */ assert( (pOp->p5 & ~(OPFLAG_SAVEPOSITION|OPFLAG_AUXDELETE))==0 ); assert( OPFLAG_SAVEPOSITION==BTREE_SAVEPOSITION ); assert( OPFLAG_AUXDELETE==BTREE_AUXDELETE ); #ifdef SQLITE_DEBUG if( p->pFrame==0 ){ if( pC->isEphemeral==0 && (pOp->p5 & OPFLAG_AUXDELETE)==0 && (pC->wrFlag & OPFLAG_FORDELETE)==0 ){ nExtraDelete++; } if( pOp->p2 & OPFLAG_NCHANGE ){ nExtraDelete--; } } #endif rc = sqlite3BtreeDelete(pC->uc.pCursor, pOp->p5); pC->cacheStatus = CACHE_STALE; pC->seekResult = 0; if( rc ) goto abort_due_to_error; /* Invoke the update-hook if required. */ if( opflags & OPFLAG_NCHANGE ){ p->nChange++; if( db->xUpdateCallback && ALWAYS(pTab!=0) && HasRowid(pTab) ){ db->xUpdateCallback(db->pUpdateArg, SQLITE_DELETE, zDb, pTab->zName, pC->movetoTarget); assert( pC->iDb>=0 ); } } break; } /* Opcode: ResetCount * * * * * ** ** The value of the change counter is copied to the database handle ** change counter (returned by subsequent calls to sqlite3_changes()). ** Then the VMs internal change counter resets to 0. ** This is used by trigger programs. */ case OP_ResetCount: { sqlite3VdbeSetChanges(db, p->nChange); p->nChange = 0; break; } /* Opcode: SorterCompare P1 P2 P3 P4 ** Synopsis: if key(P1)!=trim(r[P3],P4) goto P2 ** ** P1 is a sorter cursor. This instruction compares a prefix of the ** record blob in register P3 against a prefix of the entry that ** the sorter cursor currently points to. Only the first P4 fields ** of r[P3] and the sorter record are compared. ** ** If either P3 or the sorter contains a NULL in one of their significant ** fields (not counting the P4 fields at the end which are ignored) then ** the comparison is assumed to be equal. ** ** Fall through to next instruction if the two records compare equal to ** each other. Jump to P2 if they are different. */ case OP_SorterCompare: { VdbeCursor *pC; int res; int nKeyCol; pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); assert( pOp->p4type==P4_INT32 ); pIn3 = &aMem[pOp->p3]; nKeyCol = pOp->p4.i; res = 0; rc = sqlite3VdbeSorterCompare(pC, pIn3, nKeyCol, &res); VdbeBranchTaken(res!=0,2); if( rc ) goto abort_due_to_error; if( res ) goto jump_to_p2; break; }; /* Opcode: SorterData P1 P2 P3 * * ** Synopsis: r[P2]=data ** ** Write into register P2 the current sorter data for sorter cursor P1. ** Then clear the column header cache on cursor P3. ** ** This opcode is normally use to move a record out of the sorter and into ** a register that is the source for a pseudo-table cursor created using ** OpenPseudo. That pseudo-table cursor is the one that is identified by ** parameter P3. Clearing the P3 column cache as part of this opcode saves ** us from having to issue a separate NullRow instruction to clear that cache. */ case OP_SorterData: { VdbeCursor *pC; pOut = &aMem[pOp->p2]; pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); rc = sqlite3VdbeSorterRowkey(pC, pOut); assert( rc!=SQLITE_OK || (pOut->flags & MEM_Blob) ); assert( pOp->p1>=0 && pOp->p1nCursor ); if( rc ) goto abort_due_to_error; p->apCsr[pOp->p3]->cacheStatus = CACHE_STALE; break; } /* Opcode: RowData P1 P2 P3 * * ** Synopsis: r[P2]=data ** ** Write into register P2 the complete row content for the row at ** which cursor P1 is currently pointing. ** There is no interpretation of the data. ** It is just copied onto the P2 register exactly as ** it is found in the database file. ** ** If cursor P1 is an index, then the content is the key of the row. ** If cursor P2 is a table, then the content extracted is the data. ** ** If the P1 cursor must be pointing to a valid row (not a NULL row) ** of a real table, not a pseudo-table. ** ** If P3!=0 then this opcode is allowed to make an ephemeral pointer ** into the database page. That means that the content of the output ** register will be invalidated as soon as the cursor moves - including ** moves caused by other cursors that "save" the current cursors ** position in order that they can write to the same table. If P3==0 ** then a copy of the data is made into memory. P3!=0 is faster, but ** P3==0 is safer. ** ** If P3!=0 then the content of the P2 register is unsuitable for use ** in OP_Result and any OP_Result will invalidate the P2 register content. ** The P2 register content is invalidated by opcodes like OP_Function or ** by any use of another cursor pointing to the same table. */ case OP_RowData: { VdbeCursor *pC; BtCursor *pCrsr; u32 n; pOut = out2Prerelease(p, pOp); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( isSorter(pC)==0 ); assert( pC->nullRow==0 ); assert( pC->uc.pCursor!=0 ); pCrsr = pC->uc.pCursor; /* The OP_RowData opcodes always follow OP_NotExists or ** OP_SeekRowid or OP_Rewind/Op_Next with no intervening instructions ** that might invalidate the cursor. ** If this where not the case, on of the following assert()s ** would fail. Should this ever change (because of changes in the code ** generator) then the fix would be to insert a call to ** sqlite3VdbeCursorMoveto(). */ assert( pC->deferredMoveto==0 ); assert( sqlite3BtreeCursorIsValid(pCrsr) ); n = sqlite3BtreePayloadSize(pCrsr); if( n>(u32)db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } testcase( n==0 ); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCrsr, n, pOut); if( rc ) goto abort_due_to_error; if( !pOp->p3 ) Deephemeralize(pOut); UPDATE_MAX_BLOBSIZE(pOut); REGISTER_TRACE(pOp->p2, pOut); break; } /* Opcode: Rowid P1 P2 * * * ** Synopsis: r[P2]=rowid ** ** Store in register P2 an integer which is the key of the table entry that ** P1 is currently point to. ** ** P1 can be either an ordinary table or a virtual table. There used to ** be a separate OP_VRowid opcode for use with virtual tables, but this ** one opcode now works for both table types. */ case OP_Rowid: { /* out2 */ VdbeCursor *pC; i64 v; sqlite3_vtab *pVtab; const sqlite3_module *pModule; pOut = out2Prerelease(p, pOp); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType!=CURTYPE_PSEUDO || pC->nullRow ); if( pC->nullRow ){ pOut->flags = MEM_Null; break; }else if( pC->deferredMoveto ){ v = pC->movetoTarget; #ifndef SQLITE_OMIT_VIRTUALTABLE }else if( pC->eCurType==CURTYPE_VTAB ){ assert( pC->uc.pVCur!=0 ); pVtab = pC->uc.pVCur->pVtab; pModule = pVtab->pModule; assert( pModule->xRowid ); rc = pModule->xRowid(pC->uc.pVCur, &v); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; #endif /* SQLITE_OMIT_VIRTUALTABLE */ }else{ assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); rc = sqlite3VdbeCursorRestore(pC); if( rc ) goto abort_due_to_error; if( pC->nullRow ){ pOut->flags = MEM_Null; break; } v = sqlite3BtreeIntegerKey(pC->uc.pCursor); } pOut->u.i = v; break; } /* Opcode: NullRow P1 * * * * ** ** Move the cursor P1 to a null row. Any OP_Column operations ** that occur while the cursor is on the null row will always ** write a NULL. */ case OP_NullRow: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); pC->nullRow = 1; pC->cacheStatus = CACHE_STALE; if( pC->eCurType==CURTYPE_BTREE ){ assert( pC->uc.pCursor!=0 ); sqlite3BtreeClearCursor(pC->uc.pCursor); } #ifdef SQLITE_DEBUG if( pC->seekOp==0 ) pC->seekOp = OP_NullRow; #endif break; } /* Opcode: SeekEnd P1 * * * * ** ** Position cursor P1 at the end of the btree for the purpose of ** appending a new entry onto the btree. ** ** It is assumed that the cursor is used only for appending and so ** if the cursor is valid, then the cursor must already be pointing ** at the end of the btree and so no changes are made to ** the cursor. */ /* Opcode: Last P1 P2 * * * ** ** The next use of the Rowid or Column or Prev instruction for P1 ** will refer to the last entry in the database table or index. ** If the table or index is empty and P2>0, then jump immediately to P2. ** If P2 is 0 or if the table or index is not empty, fall through ** to the following instruction. ** ** This opcode leaves the cursor configured to move in reverse order, ** from the end toward the beginning. In other words, the cursor is ** configured to use Prev, not Next. */ case OP_SeekEnd: case OP_Last: { /* jump */ VdbeCursor *pC; BtCursor *pCrsr; int res; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); pCrsr = pC->uc.pCursor; res = 0; assert( pCrsr!=0 ); #ifdef SQLITE_DEBUG pC->seekOp = pOp->opcode; #endif if( pOp->opcode==OP_SeekEnd ){ assert( pOp->p2==0 ); pC->seekResult = -1; if( sqlite3BtreeCursorIsValidNN(pCrsr) ){ break; } } rc = sqlite3BtreeLast(pCrsr, &res); pC->nullRow = (u8)res; pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; if( rc ) goto abort_due_to_error; if( pOp->p2>0 ){ VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; } break; } /* Opcode: IfSmaller P1 P2 P3 * * ** ** Estimate the number of rows in the table P1. Jump to P2 if that ** estimate is less than approximately 2**(0.1*P3). */ case OP_IfSmaller: { /* jump */ VdbeCursor *pC; BtCursor *pCrsr; int res; i64 sz; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); pCrsr = pC->uc.pCursor; assert( pCrsr ); rc = sqlite3BtreeFirst(pCrsr, &res); if( rc ) goto abort_due_to_error; if( res==0 ){ sz = sqlite3BtreeRowCountEst(pCrsr); if( ALWAYS(sz>=0) && sqlite3LogEst((u64)sz)p3 ) res = 1; } VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; break; } /* Opcode: SorterSort P1 P2 * * * ** ** After all records have been inserted into the Sorter object ** identified by P1, invoke this opcode to actually do the sorting. ** Jump to P2 if there are no records to be sorted. ** ** This opcode is an alias for OP_Sort and OP_Rewind that is used ** for Sorter objects. */ /* Opcode: Sort P1 P2 * * * ** ** This opcode does exactly the same thing as OP_Rewind except that ** it increments an undocumented global variable used for testing. ** ** Sorting is accomplished by writing records into a sorting index, ** then rewinding that index and playing it back from beginning to ** end. We use the OP_Sort opcode instead of OP_Rewind to do the ** rewinding so that the global variable will be incremented and ** regression tests can determine whether or not the optimizer is ** correctly optimizing out sorts. */ case OP_SorterSort: /* jump */ case OP_Sort: { /* jump */ #ifdef SQLITE_TEST sqlite3_sort_count++; sqlite3_search_count--; #endif p->aCounter[SQLITE_STMTSTATUS_SORT]++; /* Fall through into OP_Rewind */ /* no break */ deliberate_fall_through } /* Opcode: Rewind P1 P2 * * * ** ** The next use of the Rowid or Column or Next instruction for P1 ** will refer to the first entry in the database table or index. ** If the table or index is empty, jump immediately to P2. ** If the table or index is not empty, fall through to the following ** instruction. ** ** This opcode leaves the cursor configured to move in forward order, ** from the beginning toward the end. In other words, the cursor is ** configured to use Next, not Prev. */ case OP_Rewind: { /* jump */ VdbeCursor *pC; BtCursor *pCrsr; int res; assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p5==0 ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( isSorter(pC)==(pOp->opcode==OP_SorterSort) ); res = 1; #ifdef SQLITE_DEBUG pC->seekOp = OP_Rewind; #endif if( isSorter(pC) ){ rc = sqlite3VdbeSorterRewind(pC, &res); }else{ assert( pC->eCurType==CURTYPE_BTREE ); pCrsr = pC->uc.pCursor; assert( pCrsr ); rc = sqlite3BtreeFirst(pCrsr, &res); pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; } if( rc ) goto abort_due_to_error; pC->nullRow = (u8)res; assert( pOp->p2>0 && pOp->p2nOp ); VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; break; } /* Opcode: Next P1 P2 P3 P4 P5 ** ** Advance cursor P1 so that it points to the next key/data pair in its ** table or index. If there are no more key/value pairs then fall through ** to the following instruction. But if the cursor advance was successful, ** jump immediately to P2. ** ** The Next opcode is only valid following an SeekGT, SeekGE, or ** OP_Rewind opcode used to position the cursor. Next is not allowed ** to follow SeekLT, SeekLE, or OP_Last. ** ** The P1 cursor must be for a real table, not a pseudo-table. P1 must have ** been opened prior to this opcode or the program will segfault. ** ** The P3 value is a hint to the btree implementation. If P3==1, that ** means P1 is an SQL index and that this instruction could have been ** omitted if that index had been unique. P3 is usually 0. P3 is ** always either 0 or 1. ** ** P4 is always of type P4_ADVANCE. The function pointer points to ** sqlite3BtreeNext(). ** ** If P5 is positive and the jump is taken, then event counter ** number P5-1 in the prepared statement is incremented. ** ** See also: Prev */ /* Opcode: Prev P1 P2 P3 P4 P5 ** ** Back up cursor P1 so that it points to the previous key/data pair in its ** table or index. If there is no previous key/value pairs then fall through ** to the following instruction. But if the cursor backup was successful, ** jump immediately to P2. ** ** ** The Prev opcode is only valid following an SeekLT, SeekLE, or ** OP_Last opcode used to position the cursor. Prev is not allowed ** to follow SeekGT, SeekGE, or OP_Rewind. ** ** The P1 cursor must be for a real table, not a pseudo-table. If P1 is ** not open then the behavior is undefined. ** ** The P3 value is a hint to the btree implementation. If P3==1, that ** means P1 is an SQL index and that this instruction could have been ** omitted if that index had been unique. P3 is usually 0. P3 is ** always either 0 or 1. ** ** P4 is always of type P4_ADVANCE. The function pointer points to ** sqlite3BtreePrevious(). ** ** If P5 is positive and the jump is taken, then event counter ** number P5-1 in the prepared statement is incremented. */ /* Opcode: SorterNext P1 P2 * * P5 ** ** This opcode works just like OP_Next except that P1 must be a ** sorter object for which the OP_SorterSort opcode has been ** invoked. This opcode advances the cursor to the next sorted ** record, or jumps to P2 if there are no more sorted records. */ case OP_SorterNext: { /* jump */ VdbeCursor *pC; pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); rc = sqlite3VdbeSorterNext(db, pC); goto next_tail; case OP_Prev: /* jump */ case OP_Next: /* jump */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p5aCounter) ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->deferredMoveto==0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pOp->opcode!=OP_Next || pOp->p4.xAdvance==sqlite3BtreeNext ); assert( pOp->opcode!=OP_Prev || pOp->p4.xAdvance==sqlite3BtreePrevious ); /* The Next opcode is only used after SeekGT, SeekGE, Rewind, and Found. ** The Prev opcode is only used after SeekLT, SeekLE, and Last. */ assert( pOp->opcode!=OP_Next || pC->seekOp==OP_SeekGT || pC->seekOp==OP_SeekGE || pC->seekOp==OP_Rewind || pC->seekOp==OP_Found || pC->seekOp==OP_NullRow|| pC->seekOp==OP_SeekRowid || pC->seekOp==OP_IfNoHope); assert( pOp->opcode!=OP_Prev || pC->seekOp==OP_SeekLT || pC->seekOp==OP_SeekLE || pC->seekOp==OP_Last || pC->seekOp==OP_IfNoHope || pC->seekOp==OP_NullRow); rc = pOp->p4.xAdvance(pC->uc.pCursor, pOp->p3); next_tail: pC->cacheStatus = CACHE_STALE; VdbeBranchTaken(rc==SQLITE_OK,2); if( rc==SQLITE_OK ){ pC->nullRow = 0; p->aCounter[pOp->p5]++; #ifdef SQLITE_TEST sqlite3_search_count++; #endif goto jump_to_p2_and_check_for_interrupt; } if( rc!=SQLITE_DONE ) goto abort_due_to_error; rc = SQLITE_OK; pC->nullRow = 1; goto check_for_interrupt; } /* Opcode: IdxInsert P1 P2 P3 P4 P5 ** Synopsis: key=r[P2] ** ** Register P2 holds an SQL index key made using the ** MakeRecord instructions. This opcode writes that key ** into the index P1. Data for the entry is nil. ** ** If P4 is not zero, then it is the number of values in the unpacked ** key of reg(P2). In that case, P3 is the index of the first register ** for the unpacked key. The availability of the unpacked key can sometimes ** be an optimization. ** ** If P5 has the OPFLAG_APPEND bit set, that is a hint to the b-tree layer ** that this insert is likely to be an append. ** ** If P5 has the OPFLAG_NCHANGE bit set, then the change counter is ** incremented by this instruction. If the OPFLAG_NCHANGE bit is clear, ** then the change counter is unchanged. ** ** If the OPFLAG_USESEEKRESULT flag of P5 is set, the implementation might ** run faster by avoiding an unnecessary seek on cursor P1. However, ** the OPFLAG_USESEEKRESULT flag must only be set if there have been no prior ** seeks on the cursor or if the most recent seek used a key equivalent ** to P2. ** ** This instruction only works for indices. The equivalent instruction ** for tables is OP_Insert. */ case OP_IdxInsert: { /* in2 */ VdbeCursor *pC; BtreePayload x; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; sqlite3VdbeIncrWriteCounter(p, pC); assert( pC!=0 ); assert( !isSorter(pC) ); pIn2 = &aMem[pOp->p2]; assert( (pIn2->flags & MEM_Blob) || (pOp->p5 & OPFLAG_PREFORMAT) ); if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++; assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->isTable==0 ); rc = ExpandBlob(pIn2); if( rc ) goto abort_due_to_error; x.nKey = pIn2->n; x.pKey = pIn2->z; x.aMem = aMem + pOp->p3; x.nMem = (u16)pOp->p4.i; rc = sqlite3BtreeInsert(pC->uc.pCursor, &x, (pOp->p5 & (OPFLAG_APPEND|OPFLAG_SAVEPOSITION|OPFLAG_PREFORMAT)), ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0) ); assert( pC->deferredMoveto==0 ); pC->cacheStatus = CACHE_STALE; if( rc) goto abort_due_to_error; break; } /* Opcode: SorterInsert P1 P2 * * * ** Synopsis: key=r[P2] ** ** Register P2 holds an SQL index key made using the ** MakeRecord instructions. This opcode writes that key ** into the sorter P1. Data for the entry is nil. */ case OP_SorterInsert: { /* in2 */ VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; sqlite3VdbeIncrWriteCounter(p, pC); assert( pC!=0 ); assert( isSorter(pC) ); pIn2 = &aMem[pOp->p2]; assert( pIn2->flags & MEM_Blob ); assert( pC->isTable==0 ); rc = ExpandBlob(pIn2); if( rc ) goto abort_due_to_error; rc = sqlite3VdbeSorterWrite(pC, pIn2); if( rc) goto abort_due_to_error; break; } /* Opcode: IdxDelete P1 P2 P3 * P5 ** Synopsis: key=r[P2@P3] ** ** The content of P3 registers starting at register P2 form ** an unpacked index key. This opcode removes that entry from the ** index opened by cursor P1. ** ** If P5 is not zero, then raise an SQLITE_CORRUPT_INDEX error ** if no matching index entry is found. This happens when running ** an UPDATE or DELETE statement and the index entry to be updated ** or deleted is not found. For some uses of IdxDelete ** (example: the EXCEPT operator) it does not matter that no matching ** entry is found. For those cases, P5 is zero. Also, do not raise ** this (self-correcting and non-critical) error if in writable_schema mode. */ case OP_IdxDelete: { VdbeCursor *pC; BtCursor *pCrsr; int res; UnpackedRecord r; assert( pOp->p3>0 ); assert( pOp->p2>0 && pOp->p2+pOp->p3<=(p->nMem+1 - p->nCursor)+1 ); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); sqlite3VdbeIncrWriteCounter(p, pC); pCrsr = pC->uc.pCursor; assert( pCrsr!=0 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp->p3; r.default_rc = 0; r.aMem = &aMem[pOp->p2]; rc = sqlite3BtreeIndexMoveto(pCrsr, &r, &res); if( rc ) goto abort_due_to_error; if( res==0 ){ rc = sqlite3BtreeDelete(pCrsr, BTREE_AUXDELETE); if( rc ) goto abort_due_to_error; }else if( pOp->p5 && !sqlite3WritableSchema(db) ){ rc = sqlite3ReportError(SQLITE_CORRUPT_INDEX, __LINE__, "index corruption"); goto abort_due_to_error; } assert( pC->deferredMoveto==0 ); pC->cacheStatus = CACHE_STALE; pC->seekResult = 0; break; } /* Opcode: DeferredSeek P1 * P3 P4 * ** Synopsis: Move P3 to P1.rowid if needed ** ** P1 is an open index cursor and P3 is a cursor on the corresponding ** table. This opcode does a deferred seek of the P3 table cursor ** to the row that corresponds to the current row of P1. ** ** This is a deferred seek. Nothing actually happens until ** the cursor is used to read a record. That way, if no reads ** occur, no unnecessary I/O happens. ** ** P4 may be an array of integers (type P4_INTARRAY) containing ** one entry for each column in the P3 table. If array entry a(i) ** is non-zero, then reading column a(i)-1 from cursor P3 is ** equivalent to performing the deferred seek and then reading column i ** from P1. This information is stored in P3 and used to redirect ** reads against P3 over to P1, thus possibly avoiding the need to ** seek and read cursor P3. */ /* Opcode: IdxRowid P1 P2 * * * ** Synopsis: r[P2]=rowid ** ** Write into register P2 an integer which is the last entry in the record at ** the end of the index key pointed to by cursor P1. This integer should be ** the rowid of the table entry to which this index entry points. ** ** See also: Rowid, MakeRecord. */ case OP_DeferredSeek: case OP_IdxRowid: { /* out2 */ VdbeCursor *pC; /* The P1 index cursor */ VdbeCursor *pTabCur; /* The P2 table cursor (OP_DeferredSeek only) */ i64 rowid; /* Rowid that P1 current points to */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); assert( pC->isTable==0 ); assert( pC->deferredMoveto==0 ); assert( !pC->nullRow || pOp->opcode==OP_IdxRowid ); /* The IdxRowid and Seek opcodes are combined because of the commonality ** of sqlite3VdbeCursorRestore() and sqlite3VdbeIdxRowid(). */ rc = sqlite3VdbeCursorRestore(pC); /* sqlite3VbeCursorRestore() can only fail if the record has been deleted ** out from under the cursor. That will never happens for an IdxRowid ** or Seek opcode */ if( NEVER(rc!=SQLITE_OK) ) goto abort_due_to_error; if( !pC->nullRow ){ rowid = 0; /* Not needed. Only used to silence a warning. */ rc = sqlite3VdbeIdxRowid(db, pC->uc.pCursor, &rowid); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } if( pOp->opcode==OP_DeferredSeek ){ assert( pOp->p3>=0 && pOp->p3nCursor ); pTabCur = p->apCsr[pOp->p3]; assert( pTabCur!=0 ); assert( pTabCur->eCurType==CURTYPE_BTREE ); assert( pTabCur->uc.pCursor!=0 ); assert( pTabCur->isTable ); pTabCur->nullRow = 0; pTabCur->movetoTarget = rowid; pTabCur->deferredMoveto = 1; assert( pOp->p4type==P4_INTARRAY || pOp->p4.ai==0 ); assert( !pTabCur->isEphemeral ); pTabCur->ub.aAltMap = pOp->p4.ai; assert( !pC->isEphemeral ); pTabCur->pAltCursor = pC; }else{ pOut = out2Prerelease(p, pOp); pOut->u.i = rowid; } }else{ assert( pOp->opcode==OP_IdxRowid ); sqlite3VdbeMemSetNull(&aMem[pOp->p2]); } break; } /* Opcode: FinishSeek P1 * * * * ** ** If cursor P1 was previously moved via OP_DeferredSeek, complete that ** seek operation now, without further delay. If the cursor seek has ** already occurred, this instruction is a no-op. */ case OP_FinishSeek: { VdbeCursor *pC; /* The P1 index cursor */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; if( pC->deferredMoveto ){ rc = sqlite3VdbeFinishMoveto(pC); if( rc ) goto abort_due_to_error; } break; } /* Opcode: IdxGE P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY. Compare this key value against the index ** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID ** fields at the end. ** ** If the P1 index entry is greater than or equal to the key value ** then jump to P2. Otherwise fall through to the next instruction. */ /* Opcode: IdxGT P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY. Compare this key value against the index ** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID ** fields at the end. ** ** If the P1 index entry is greater than the key value ** then jump to P2. Otherwise fall through to the next instruction. */ /* Opcode: IdxLT P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY or ROWID. Compare this key value against ** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or ** ROWID on the P1 index. ** ** If the P1 index entry is less than the key value then jump to P2. ** Otherwise fall through to the next instruction. */ /* Opcode: IdxLE P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY or ROWID. Compare this key value against ** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or ** ROWID on the P1 index. ** ** If the P1 index entry is less than or equal to the key value then jump ** to P2. Otherwise fall through to the next instruction. */ case OP_IdxLE: /* jump */ case OP_IdxGT: /* jump */ case OP_IdxLT: /* jump */ case OP_IdxGE: { /* jump */ VdbeCursor *pC; int res; UnpackedRecord r; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->isOrdered ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0); assert( pC->deferredMoveto==0 ); assert( pOp->p4type==P4_INT32 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp->p4.i; if( pOp->opcodeopcode==OP_IdxLE || pOp->opcode==OP_IdxGT ); r.default_rc = -1; }else{ assert( pOp->opcode==OP_IdxGE || pOp->opcode==OP_IdxLT ); r.default_rc = 0; } r.aMem = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG { int i; for(i=0; ip3+i, &aMem[pOp->p3+i]); } } #endif /* Inlined version of sqlite3VdbeIdxKeyCompare() */ { i64 nCellKey = 0; BtCursor *pCur; Mem m; assert( pC->eCurType==CURTYPE_BTREE ); pCur = pC->uc.pCursor; assert( sqlite3BtreeCursorIsValid(pCur) ); nCellKey = sqlite3BtreePayloadSize(pCur); /* nCellKey will always be between 0 and 0xffffffff because of the way ** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */ if( nCellKey<=0 || nCellKey>0x7fffffff ){ rc = SQLITE_CORRUPT_BKPT; goto abort_due_to_error; } sqlite3VdbeMemInit(&m, db, 0); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCur, (u32)nCellKey, &m); if( rc ) goto abort_due_to_error; res = sqlite3VdbeRecordCompareWithSkip(m.n, m.z, &r, 0); sqlite3VdbeMemRelease(&m); } /* End of inlined sqlite3VdbeIdxKeyCompare() */ assert( (OP_IdxLE&1)==(OP_IdxLT&1) && (OP_IdxGE&1)==(OP_IdxGT&1) ); if( (pOp->opcode&1)==(OP_IdxLT&1) ){ assert( pOp->opcode==OP_IdxLE || pOp->opcode==OP_IdxLT ); res = -res; }else{ assert( pOp->opcode==OP_IdxGE || pOp->opcode==OP_IdxGT ); res++; } VdbeBranchTaken(res>0,2); assert( rc==SQLITE_OK ); if( res>0 ) goto jump_to_p2; break; } /* Opcode: Destroy P1 P2 P3 * * ** ** Delete an entire database table or index whose root page in the database ** file is given by P1. ** ** The table being destroyed is in the main database file if P3==0. If ** P3==1 then the table to be clear is in the auxiliary database file ** that is used to store tables create using CREATE TEMPORARY TABLE. ** ** If AUTOVACUUM is enabled then it is possible that another root page ** might be moved into the newly deleted root page in order to keep all ** root pages contiguous at the beginning of the database. The former ** value of the root page that moved - its value before the move occurred - ** is stored in register P2. If no page movement was required (because the ** table being dropped was already the last one in the database) then a ** zero is stored in register P2. If AUTOVACUUM is disabled then a zero ** is stored in register P2. ** ** This opcode throws an error if there are any active reader VMs when ** it is invoked. This is done to avoid the difficulty associated with ** updating existing cursors when a root page is moved in an AUTOVACUUM ** database. This error is thrown even if the database is not an AUTOVACUUM ** db in order to avoid introducing an incompatibility between autovacuum ** and non-autovacuum modes. ** ** See also: Clear */ case OP_Destroy: { /* out2 */ int iMoved; int iDb; sqlite3VdbeIncrWriteCounter(p, 0); assert( p->readOnly==0 ); assert( pOp->p1>1 ); pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Null; if( db->nVdbeRead > db->nVDestroy+1 ){ rc = SQLITE_LOCKED; p->errorAction = OE_Abort; goto abort_due_to_error; }else{ iDb = pOp->p3; assert( DbMaskTest(p->btreeMask, iDb) ); iMoved = 0; /* Not needed. Only to silence a warning. */ rc = sqlite3BtreeDropTable(db->aDb[iDb].pBt, pOp->p1, &iMoved); pOut->flags = MEM_Int; pOut->u.i = iMoved; if( rc ) goto abort_due_to_error; #ifndef SQLITE_OMIT_AUTOVACUUM if( iMoved!=0 ){ sqlite3RootPageMoved(db, iDb, iMoved, pOp->p1); /* All OP_Destroy operations occur on the same btree */ assert( resetSchemaOnFault==0 || resetSchemaOnFault==iDb+1 ); resetSchemaOnFault = iDb+1; } #endif } break; } /* Opcode: Clear P1 P2 P3 ** ** Delete all contents of the database table or index whose root page ** in the database file is given by P1. But, unlike Destroy, do not ** remove the table or index from the database file. ** ** The table being clear is in the main database file if P2==0. If ** P2==1 then the table to be clear is in the auxiliary database file ** that is used to store tables create using CREATE TEMPORARY TABLE. ** ** If the P3 value is non-zero, then the row change count is incremented ** by the number of rows in the table being cleared. If P3 is greater ** than zero, then the value stored in register P3 is also incremented ** by the number of rows in the table being cleared. ** ** See also: Destroy */ case OP_Clear: { i64 nChange; sqlite3VdbeIncrWriteCounter(p, 0); nChange = 0; assert( p->readOnly==0 ); assert( DbMaskTest(p->btreeMask, pOp->p2) ); rc = sqlite3BtreeClearTable(db->aDb[pOp->p2].pBt, (u32)pOp->p1, &nChange); if( pOp->p3 ){ p->nChange += nChange; if( pOp->p3>0 ){ assert( memIsValid(&aMem[pOp->p3]) ); memAboutToChange(p, &aMem[pOp->p3]); aMem[pOp->p3].u.i += nChange; } } if( rc ) goto abort_due_to_error; break; } /* Opcode: ResetSorter P1 * * * * ** ** Delete all contents from the ephemeral table or sorter ** that is open on cursor P1. ** ** This opcode only works for cursors used for sorting and ** opened with OP_OpenEphemeral or OP_SorterOpen. */ case OP_ResetSorter: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); if( isSorter(pC) ){ sqlite3VdbeSorterReset(db, pC->uc.pSorter); }else{ assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->isEphemeral ); rc = sqlite3BtreeClearTableOfCursor(pC->uc.pCursor); if( rc ) goto abort_due_to_error; } break; } /* Opcode: CreateBtree P1 P2 P3 * * ** Synopsis: r[P2]=root iDb=P1 flags=P3 ** ** Allocate a new b-tree in the main database file if P1==0 or in the ** TEMP database file if P1==1 or in an attached database if ** P1>1. The P3 argument must be 1 (BTREE_INTKEY) for a rowid table ** it must be 2 (BTREE_BLOBKEY) for an index or WITHOUT ROWID table. ** The root page number of the new b-tree is stored in register P2. */ case OP_CreateBtree: { /* out2 */ Pgno pgno; Db *pDb; sqlite3VdbeIncrWriteCounter(p, 0); pOut = out2Prerelease(p, pOp); pgno = 0; assert( pOp->p3==BTREE_INTKEY || pOp->p3==BTREE_BLOBKEY ); assert( pOp->p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( p->readOnly==0 ); pDb = &db->aDb[pOp->p1]; assert( pDb->pBt!=0 ); rc = sqlite3BtreeCreateTable(pDb->pBt, &pgno, pOp->p3); if( rc ) goto abort_due_to_error; pOut->u.i = pgno; break; } /* Opcode: SqlExec * * * P4 * ** ** Run the SQL statement or statements specified in the P4 string. */ case OP_SqlExec: { sqlite3VdbeIncrWriteCounter(p, 0); db->nSqlExec++; rc = sqlite3_exec(db, pOp->p4.z, 0, 0, 0); db->nSqlExec--; if( rc ) goto abort_due_to_error; break; } /* Opcode: ParseSchema P1 * * P4 * ** ** Read and parse all entries from the schema table of database P1 ** that match the WHERE clause P4. If P4 is a NULL pointer, then the ** entire schema for P1 is reparsed. ** ** This opcode invokes the parser to create a new virtual machine, ** then runs the new virtual machine. It is thus a re-entrant opcode. */ case OP_ParseSchema: { int iDb; const char *zSchema; char *zSql; InitData initData; /* Any prepared statement that invokes this opcode will hold mutexes ** on every btree. This is a prerequisite for invoking ** sqlite3InitCallback(). */ #ifdef SQLITE_DEBUG for(iDb=0; iDbnDb; iDb++){ assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) ); } #endif iDb = pOp->p1; assert( iDb>=0 && iDbnDb ); assert( DbHasProperty(db, iDb, DB_SchemaLoaded) || db->mallocFailed || (CORRUPT_DB && (db->flags & SQLITE_NoSchemaError)!=0) ); #ifndef SQLITE_OMIT_ALTERTABLE if( pOp->p4.z==0 ){ sqlite3SchemaClear(db->aDb[iDb].pSchema); db->mDbFlags &= ~DBFLAG_SchemaKnownOk; rc = sqlite3InitOne(db, iDb, &p->zErrMsg, pOp->p5); db->mDbFlags |= DBFLAG_SchemaChange; p->expired = 0; }else #endif { zSchema = LEGACY_SCHEMA_TABLE; initData.db = db; initData.iDb = iDb; initData.pzErrMsg = &p->zErrMsg; initData.mInitFlags = 0; initData.mxPage = sqlite3BtreeLastPage(db->aDb[iDb].pBt); zSql = sqlite3MPrintf(db, "SELECT*FROM\"%w\".%s WHERE %s ORDER BY rowid", db->aDb[iDb].zDbSName, zSchema, pOp->p4.z); if( zSql==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ assert( db->init.busy==0 ); db->init.busy = 1; initData.rc = SQLITE_OK; initData.nInitRow = 0; assert( !db->mallocFailed ); rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0); if( rc==SQLITE_OK ) rc = initData.rc; if( rc==SQLITE_OK && initData.nInitRow==0 ){ /* The OP_ParseSchema opcode with a non-NULL P4 argument should parse ** at least one SQL statement. Any less than that indicates that ** the sqlite_schema table is corrupt. */ rc = SQLITE_CORRUPT_BKPT; } sqlite3DbFreeNN(db, zSql); db->init.busy = 0; } } if( rc ){ sqlite3ResetAllSchemasOfConnection(db); if( rc==SQLITE_NOMEM ){ goto no_mem; } goto abort_due_to_error; } break; } #if !defined(SQLITE_OMIT_ANALYZE) /* Opcode: LoadAnalysis P1 * * * * ** ** Read the sqlite_stat1 table for database P1 and load the content ** of that table into the internal index hash table. This will cause ** the analysis to be used when preparing all subsequent queries. */ case OP_LoadAnalysis: { assert( pOp->p1>=0 && pOp->p1nDb ); rc = sqlite3AnalysisLoad(db, pOp->p1); if( rc ) goto abort_due_to_error; break; } #endif /* !defined(SQLITE_OMIT_ANALYZE) */ /* Opcode: DropTable P1 * * P4 * ** ** Remove the internal (in-memory) data structures that describe ** the table named P4 in database P1. This is called after a table ** is dropped from disk (using the Destroy opcode) in order to keep ** the internal representation of the ** schema consistent with what is on disk. */ case OP_DropTable: { sqlite3VdbeIncrWriteCounter(p, 0); sqlite3UnlinkAndDeleteTable(db, pOp->p1, pOp->p4.z); break; } /* Opcode: DropIndex P1 * * P4 * ** ** Remove the internal (in-memory) data structures that describe ** the index named P4 in database P1. This is called after an index ** is dropped from disk (using the Destroy opcode) ** in order to keep the internal representation of the ** schema consistent with what is on disk. */ case OP_DropIndex: { sqlite3VdbeIncrWriteCounter(p, 0); sqlite3UnlinkAndDeleteIndex(db, pOp->p1, pOp->p4.z); break; } /* Opcode: DropTrigger P1 * * P4 * ** ** Remove the internal (in-memory) data structures that describe ** the trigger named P4 in database P1. This is called after a trigger ** is dropped from disk (using the Destroy opcode) in order to keep ** the internal representation of the ** schema consistent with what is on disk. */ case OP_DropTrigger: { sqlite3VdbeIncrWriteCounter(p, 0); sqlite3UnlinkAndDeleteTrigger(db, pOp->p1, pOp->p4.z); break; } #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* Opcode: IntegrityCk P1 P2 P3 P4 P5 ** ** Do an analysis of the currently open database. Store in ** register P1 the text of an error message describing any problems. ** If no problems are found, store a NULL in register P1. ** ** The register P3 contains one less than the maximum number of allowed errors. ** At most reg(P3) errors will be reported. ** In other words, the analysis stops as soon as reg(P1) errors are ** seen. Reg(P1) is updated with the number of errors remaining. ** ** The root page numbers of all tables in the database are integers ** stored in P4_INTARRAY argument. ** ** If P5 is not zero, the check is done on the auxiliary database ** file, not the main database file. ** ** This opcode is used to implement the integrity_check pragma. */ case OP_IntegrityCk: { int nRoot; /* Number of tables to check. (Number of root pages.) */ Pgno *aRoot; /* Array of rootpage numbers for tables to be checked */ int nErr; /* Number of errors reported */ char *z; /* Text of the error report */ Mem *pnErr; /* Register keeping track of errors remaining */ assert( p->bIsReader ); nRoot = pOp->p2; aRoot = pOp->p4.ai; assert( nRoot>0 ); assert( aRoot[0]==(Pgno)nRoot ); assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); pnErr = &aMem[pOp->p3]; assert( (pnErr->flags & MEM_Int)!=0 ); assert( (pnErr->flags & (MEM_Str|MEM_Blob))==0 ); pIn1 = &aMem[pOp->p1]; assert( pOp->p5nDb ); assert( DbMaskTest(p->btreeMask, pOp->p5) ); z = sqlite3BtreeIntegrityCheck(db, db->aDb[pOp->p5].pBt, &aRoot[1], nRoot, (int)pnErr->u.i+1, &nErr); sqlite3VdbeMemSetNull(pIn1); if( nErr==0 ){ assert( z==0 ); }else if( z==0 ){ goto no_mem; }else{ pnErr->u.i -= nErr-1; sqlite3VdbeMemSetStr(pIn1, z, -1, SQLITE_UTF8, sqlite3_free); } UPDATE_MAX_BLOBSIZE(pIn1); sqlite3VdbeChangeEncoding(pIn1, encoding); goto check_for_interrupt; } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ /* Opcode: RowSetAdd P1 P2 * * * ** Synopsis: rowset(P1)=r[P2] ** ** Insert the integer value held by register P2 into a RowSet object ** held in register P1. ** ** An assertion fails if P2 is not an integer. */ case OP_RowSetAdd: { /* in1, in2 */ pIn1 = &aMem[pOp->p1]; pIn2 = &aMem[pOp->p2]; assert( (pIn2->flags & MEM_Int)!=0 ); if( (pIn1->flags & MEM_Blob)==0 ){ if( sqlite3VdbeMemSetRowSet(pIn1) ) goto no_mem; } assert( sqlite3VdbeMemIsRowSet(pIn1) ); sqlite3RowSetInsert((RowSet*)pIn1->z, pIn2->u.i); break; } /* Opcode: RowSetRead P1 P2 P3 * * ** Synopsis: r[P3]=rowset(P1) ** ** Extract the smallest value from the RowSet object in P1 ** and put that value into register P3. ** Or, if RowSet object P1 is initially empty, leave P3 ** unchanged and jump to instruction P2. */ case OP_RowSetRead: { /* jump, in1, out3 */ i64 val; pIn1 = &aMem[pOp->p1]; assert( (pIn1->flags & MEM_Blob)==0 || sqlite3VdbeMemIsRowSet(pIn1) ); if( (pIn1->flags & MEM_Blob)==0 || sqlite3RowSetNext((RowSet*)pIn1->z, &val)==0 ){ /* The boolean index is empty */ sqlite3VdbeMemSetNull(pIn1); VdbeBranchTaken(1,2); goto jump_to_p2_and_check_for_interrupt; }else{ /* A value was pulled from the index */ VdbeBranchTaken(0,2); sqlite3VdbeMemSetInt64(&aMem[pOp->p3], val); } goto check_for_interrupt; } /* Opcode: RowSetTest P1 P2 P3 P4 ** Synopsis: if r[P3] in rowset(P1) goto P2 ** ** Register P3 is assumed to hold a 64-bit integer value. If register P1 ** contains a RowSet object and that RowSet object contains ** the value held in P3, jump to register P2. Otherwise, insert the ** integer in P3 into the RowSet and continue on to the ** next opcode. ** ** The RowSet object is optimized for the case where sets of integers ** are inserted in distinct phases, which each set contains no duplicates. ** Each set is identified by a unique P4 value. The first set ** must have P4==0, the final set must have P4==-1, and for all other sets ** must have P4>0. ** ** This allows optimizations: (a) when P4==0 there is no need to test ** the RowSet object for P3, as it is guaranteed not to contain it, ** (b) when P4==-1 there is no need to insert the value, as it will ** never be tested for, and (c) when a value that is part of set X is ** inserted, there is no need to search to see if the same value was ** previously inserted as part of set X (only if it was previously ** inserted as part of some other set). */ case OP_RowSetTest: { /* jump, in1, in3 */ int iSet; int exists; pIn1 = &aMem[pOp->p1]; pIn3 = &aMem[pOp->p3]; iSet = pOp->p4.i; assert( pIn3->flags&MEM_Int ); /* If there is anything other than a rowset object in memory cell P1, ** delete it now and initialize P1 with an empty rowset */ if( (pIn1->flags & MEM_Blob)==0 ){ if( sqlite3VdbeMemSetRowSet(pIn1) ) goto no_mem; } assert( sqlite3VdbeMemIsRowSet(pIn1) ); assert( pOp->p4type==P4_INT32 ); assert( iSet==-1 || iSet>=0 ); if( iSet ){ exists = sqlite3RowSetTest((RowSet*)pIn1->z, iSet, pIn3->u.i); VdbeBranchTaken(exists!=0,2); if( exists ) goto jump_to_p2; } if( iSet>=0 ){ sqlite3RowSetInsert((RowSet*)pIn1->z, pIn3->u.i); } break; } #ifndef SQLITE_OMIT_TRIGGER /* Opcode: Program P1 P2 P3 P4 P5 ** ** Execute the trigger program passed as P4 (type P4_SUBPROGRAM). ** ** P1 contains the address of the memory cell that contains the first memory ** cell in an array of values used as arguments to the sub-program. P2 ** contains the address to jump to if the sub-program throws an IGNORE ** exception using the RAISE() function. Register P3 contains the address ** of a memory cell in this (the parent) VM that is used to allocate the ** memory required by the sub-vdbe at runtime. ** ** P4 is a pointer to the VM containing the trigger program. ** ** If P5 is non-zero, then recursive program invocation is enabled. */ case OP_Program: { /* jump */ int nMem; /* Number of memory registers for sub-program */ int nByte; /* Bytes of runtime space required for sub-program */ Mem *pRt; /* Register to allocate runtime space */ Mem *pMem; /* Used to iterate through memory cells */ Mem *pEnd; /* Last memory cell in new array */ VdbeFrame *pFrame; /* New vdbe frame to execute in */ SubProgram *pProgram; /* Sub-program to execute */ void *t; /* Token identifying trigger */ pProgram = pOp->p4.pProgram; pRt = &aMem[pOp->p3]; assert( pProgram->nOp>0 ); /* If the p5 flag is clear, then recursive invocation of triggers is ** disabled for backwards compatibility (p5 is set if this sub-program ** is really a trigger, not a foreign key action, and the flag set ** and cleared by the "PRAGMA recursive_triggers" command is clear). ** ** It is recursive invocation of triggers, at the SQL level, that is ** disabled. In some cases a single trigger may generate more than one ** SubProgram (if the trigger may be executed with more than one different ** ON CONFLICT algorithm). SubProgram structures associated with a ** single trigger all have the same value for the SubProgram.token ** variable. */ if( pOp->p5 ){ t = pProgram->token; for(pFrame=p->pFrame; pFrame && pFrame->token!=t; pFrame=pFrame->pParent); if( pFrame ) break; } if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){ rc = SQLITE_ERROR; sqlite3VdbeError(p, "too many levels of trigger recursion"); goto abort_due_to_error; } /* Register pRt is used to store the memory required to save the state ** of the current program, and the memory required at runtime to execute ** the trigger program. If this trigger has been fired before, then pRt ** is already allocated. Otherwise, it must be initialized. */ if( (pRt->flags&MEM_Blob)==0 ){ /* SubProgram.nMem is set to the number of memory cells used by the ** program stored in SubProgram.aOp. As well as these, one memory ** cell is required for each cursor used by the program. Set local ** variable nMem (and later, VdbeFrame.nChildMem) to this value. */ nMem = pProgram->nMem + pProgram->nCsr; assert( nMem>0 ); if( pProgram->nCsr==0 ) nMem++; nByte = ROUND8(sizeof(VdbeFrame)) + nMem * sizeof(Mem) + pProgram->nCsr * sizeof(VdbeCursor*) + (pProgram->nOp + 7)/8; pFrame = sqlite3DbMallocZero(db, nByte); if( !pFrame ){ goto no_mem; } sqlite3VdbeMemRelease(pRt); pRt->flags = MEM_Blob|MEM_Dyn; pRt->z = (char*)pFrame; pRt->n = nByte; pRt->xDel = sqlite3VdbeFrameMemDel; pFrame->v = p; pFrame->nChildMem = nMem; pFrame->nChildCsr = pProgram->nCsr; pFrame->pc = (int)(pOp - aOp); pFrame->aMem = p->aMem; pFrame->nMem = p->nMem; pFrame->apCsr = p->apCsr; pFrame->nCursor = p->nCursor; pFrame->aOp = p->aOp; pFrame->nOp = p->nOp; pFrame->token = pProgram->token; #ifdef SQLITE_ENABLE_STMT_SCANSTATUS pFrame->anExec = p->anExec; #endif #ifdef SQLITE_DEBUG pFrame->iFrameMagic = SQLITE_FRAME_MAGIC; #endif pEnd = &VdbeFrameMem(pFrame)[pFrame->nChildMem]; for(pMem=VdbeFrameMem(pFrame); pMem!=pEnd; pMem++){ pMem->flags = MEM_Undefined; pMem->db = db; } }else{ pFrame = (VdbeFrame*)pRt->z; assert( pRt->xDel==sqlite3VdbeFrameMemDel ); assert( pProgram->nMem+pProgram->nCsr==pFrame->nChildMem || (pProgram->nCsr==0 && pProgram->nMem+1==pFrame->nChildMem) ); assert( pProgram->nCsr==pFrame->nChildCsr ); assert( (int)(pOp - aOp)==pFrame->pc ); } p->nFrame++; pFrame->pParent = p->pFrame; pFrame->lastRowid = db->lastRowid; pFrame->nChange = p->nChange; pFrame->nDbChange = p->db->nChange; assert( pFrame->pAuxData==0 ); pFrame->pAuxData = p->pAuxData; p->pAuxData = 0; p->nChange = 0; p->pFrame = pFrame; p->aMem = aMem = VdbeFrameMem(pFrame); p->nMem = pFrame->nChildMem; p->nCursor = (u16)pFrame->nChildCsr; p->apCsr = (VdbeCursor **)&aMem[p->nMem]; pFrame->aOnce = (u8*)&p->apCsr[pProgram->nCsr]; memset(pFrame->aOnce, 0, (pProgram->nOp + 7)/8); p->aOp = aOp = pProgram->aOp; p->nOp = pProgram->nOp; #ifdef SQLITE_ENABLE_STMT_SCANSTATUS p->anExec = 0; #endif #ifdef SQLITE_DEBUG /* Verify that second and subsequent executions of the same trigger do not ** try to reuse register values from the first use. */ { int i; for(i=0; inMem; i++){ aMem[i].pScopyFrom = 0; /* Prevent false-positive AboutToChange() errs */ MemSetTypeFlag(&aMem[i], MEM_Undefined); /* Fault if this reg is reused */ } } #endif pOp = &aOp[-1]; goto check_for_interrupt; } /* Opcode: Param P1 P2 * * * ** ** This opcode is only ever present in sub-programs called via the ** OP_Program instruction. Copy a value currently stored in a memory ** cell of the calling (parent) frame to cell P2 in the current frames ** address space. This is used by trigger programs to access the new.* ** and old.* values. ** ** The address of the cell in the parent frame is determined by adding ** the value of the P1 argument to the value of the P1 argument to the ** calling OP_Program instruction. */ case OP_Param: { /* out2 */ VdbeFrame *pFrame; Mem *pIn; pOut = out2Prerelease(p, pOp); pFrame = p->pFrame; pIn = &pFrame->aMem[pOp->p1 + pFrame->aOp[pFrame->pc].p1]; sqlite3VdbeMemShallowCopy(pOut, pIn, MEM_Ephem); break; } #endif /* #ifndef SQLITE_OMIT_TRIGGER */ #ifndef SQLITE_OMIT_FOREIGN_KEY /* Opcode: FkCounter P1 P2 * * * ** Synopsis: fkctr[P1]+=P2 ** ** Increment a "constraint counter" by P2 (P2 may be negative or positive). ** If P1 is non-zero, the database constraint counter is incremented ** (deferred foreign key constraints). Otherwise, if P1 is zero, the ** statement counter is incremented (immediate foreign key constraints). */ case OP_FkCounter: { if( db->flags & SQLITE_DeferFKs ){ db->nDeferredImmCons += pOp->p2; }else if( pOp->p1 ){ db->nDeferredCons += pOp->p2; }else{ p->nFkConstraint += pOp->p2; } break; } /* Opcode: FkIfZero P1 P2 * * * ** Synopsis: if fkctr[P1]==0 goto P2 ** ** This opcode tests if a foreign key constraint-counter is currently zero. ** If so, jump to instruction P2. Otherwise, fall through to the next ** instruction. ** ** If P1 is non-zero, then the jump is taken if the database constraint-counter ** is zero (the one that counts deferred constraint violations). If P1 is ** zero, the jump is taken if the statement constraint-counter is zero ** (immediate foreign key constraint violations). */ case OP_FkIfZero: { /* jump */ if( pOp->p1 ){ VdbeBranchTaken(db->nDeferredCons==0 && db->nDeferredImmCons==0, 2); if( db->nDeferredCons==0 && db->nDeferredImmCons==0 ) goto jump_to_p2; }else{ VdbeBranchTaken(p->nFkConstraint==0 && db->nDeferredImmCons==0, 2); if( p->nFkConstraint==0 && db->nDeferredImmCons==0 ) goto jump_to_p2; } break; } #endif /* #ifndef SQLITE_OMIT_FOREIGN_KEY */ #ifndef SQLITE_OMIT_AUTOINCREMENT /* Opcode: MemMax P1 P2 * * * ** Synopsis: r[P1]=max(r[P1],r[P2]) ** ** P1 is a register in the root frame of this VM (the root frame is ** different from the current frame if this instruction is being executed ** within a sub-program). Set the value of register P1 to the maximum of ** its current value and the value in register P2. ** ** This instruction throws an error if the memory cell is not initially ** an integer. */ case OP_MemMax: { /* in2 */ VdbeFrame *pFrame; if( p->pFrame ){ for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); pIn1 = &pFrame->aMem[pOp->p1]; }else{ pIn1 = &aMem[pOp->p1]; } assert( memIsValid(pIn1) ); sqlite3VdbeMemIntegerify(pIn1); pIn2 = &aMem[pOp->p2]; sqlite3VdbeMemIntegerify(pIn2); if( pIn1->u.iu.i){ pIn1->u.i = pIn2->u.i; } break; } #endif /* SQLITE_OMIT_AUTOINCREMENT */ /* Opcode: IfPos P1 P2 P3 * * ** Synopsis: if r[P1]>0 then r[P1]-=P3, goto P2 ** ** Register P1 must contain an integer. ** If the value of register P1 is 1 or greater, subtract P3 from the ** value in P1 and jump to P2. ** ** If the initial value of register P1 is less than 1, then the ** value is unchanged and control passes through to the next instruction. */ case OP_IfPos: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags&MEM_Int ); VdbeBranchTaken( pIn1->u.i>0, 2); if( pIn1->u.i>0 ){ pIn1->u.i -= pOp->p3; goto jump_to_p2; } break; } /* Opcode: OffsetLimit P1 P2 P3 * * ** Synopsis: if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1) ** ** This opcode performs a commonly used computation associated with ** LIMIT and OFFSET process. r[P1] holds the limit counter. r[P3] ** holds the offset counter. The opcode computes the combined value ** of the LIMIT and OFFSET and stores that value in r[P2]. The r[P2] ** value computed is the total number of rows that will need to be ** visited in order to complete the query. ** ** If r[P3] is zero or negative, that means there is no OFFSET ** and r[P2] is set to be the value of the LIMIT, r[P1]. ** ** if r[P1] is zero or negative, that means there is no LIMIT ** and r[P2] is set to -1. ** ** Otherwise, r[P2] is set to the sum of r[P1] and r[P3]. */ case OP_OffsetLimit: { /* in1, out2, in3 */ i64 x; pIn1 = &aMem[pOp->p1]; pIn3 = &aMem[pOp->p3]; pOut = out2Prerelease(p, pOp); assert( pIn1->flags & MEM_Int ); assert( pIn3->flags & MEM_Int ); x = pIn1->u.i; if( x<=0 || sqlite3AddInt64(&x, pIn3->u.i>0?pIn3->u.i:0) ){ /* If the LIMIT is less than or equal to zero, loop forever. This ** is documented. But also, if the LIMIT+OFFSET exceeds 2^63 then ** also loop forever. This is undocumented. In fact, one could argue ** that the loop should terminate. But assuming 1 billion iterations ** per second (far exceeding the capabilities of any current hardware) ** it would take nearly 300 years to actually reach the limit. So ** looping forever is a reasonable approximation. */ pOut->u.i = -1; }else{ pOut->u.i = x; } break; } /* Opcode: IfNotZero P1 P2 * * * ** Synopsis: if r[P1]!=0 then r[P1]--, goto P2 ** ** Register P1 must contain an integer. If the content of register P1 is ** initially greater than zero, then decrement the value in register P1. ** If it is non-zero (negative or positive) and then also jump to P2. ** If register P1 is initially zero, leave it unchanged and fall through. */ case OP_IfNotZero: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags&MEM_Int ); VdbeBranchTaken(pIn1->u.i<0, 2); if( pIn1->u.i ){ if( pIn1->u.i>0 ) pIn1->u.i--; goto jump_to_p2; } break; } /* Opcode: DecrJumpZero P1 P2 * * * ** Synopsis: if (--r[P1])==0 goto P2 ** ** Register P1 must hold an integer. Decrement the value in P1 ** and jump to P2 if the new value is exactly zero. */ case OP_DecrJumpZero: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags&MEM_Int ); if( pIn1->u.i>SMALLEST_INT64 ) pIn1->u.i--; VdbeBranchTaken(pIn1->u.i==0, 2); if( pIn1->u.i==0 ) goto jump_to_p2; break; } /* Opcode: AggStep * P2 P3 P4 P5 ** Synopsis: accum=r[P3] step(r[P2@P5]) ** ** Execute the xStep function for an aggregate. ** The function has P5 arguments. P4 is a pointer to the ** FuncDef structure that specifies the function. Register P3 is the ** accumulator. ** ** The P5 arguments are taken from register P2 and its ** successors. */ /* Opcode: AggInverse * P2 P3 P4 P5 ** Synopsis: accum=r[P3] inverse(r[P2@P5]) ** ** Execute the xInverse function for an aggregate. ** The function has P5 arguments. P4 is a pointer to the ** FuncDef structure that specifies the function. Register P3 is the ** accumulator. ** ** The P5 arguments are taken from register P2 and its ** successors. */ /* Opcode: AggStep1 P1 P2 P3 P4 P5 ** Synopsis: accum=r[P3] step(r[P2@P5]) ** ** Execute the xStep (if P1==0) or xInverse (if P1!=0) function for an ** aggregate. The function has P5 arguments. P4 is a pointer to the ** FuncDef structure that specifies the function. Register P3 is the ** accumulator. ** ** The P5 arguments are taken from register P2 and its ** successors. ** ** This opcode is initially coded as OP_AggStep0. On first evaluation, ** the FuncDef stored in P4 is converted into an sqlite3_context and ** the opcode is changed. In this way, the initialization of the ** sqlite3_context only happens once, instead of on each call to the ** step function. */ case OP_AggInverse: case OP_AggStep: { int n; sqlite3_context *pCtx; assert( pOp->p4type==P4_FUNCDEF ); n = pOp->p5; assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); assert( n==0 || (pOp->p2>0 && pOp->p2+n<=(p->nMem+1 - p->nCursor)+1) ); assert( pOp->p3p2 || pOp->p3>=pOp->p2+n ); pCtx = sqlite3DbMallocRawNN(db, n*sizeof(sqlite3_value*) + (sizeof(pCtx[0]) + sizeof(Mem) - sizeof(sqlite3_value*))); if( pCtx==0 ) goto no_mem; pCtx->pMem = 0; pCtx->pOut = (Mem*)&(pCtx->argv[n]); sqlite3VdbeMemInit(pCtx->pOut, db, MEM_Null); pCtx->pFunc = pOp->p4.pFunc; pCtx->iOp = (int)(pOp - aOp); pCtx->pVdbe = p; pCtx->skipFlag = 0; pCtx->isError = 0; pCtx->argc = n; pOp->p4type = P4_FUNCCTX; pOp->p4.pCtx = pCtx; /* OP_AggInverse must have P1==1 and OP_AggStep must have P1==0 */ assert( pOp->p1==(pOp->opcode==OP_AggInverse) ); pOp->opcode = OP_AggStep1; /* Fall through into OP_AggStep */ /* no break */ deliberate_fall_through } case OP_AggStep1: { int i; sqlite3_context *pCtx; Mem *pMem; assert( pOp->p4type==P4_FUNCCTX ); pCtx = pOp->p4.pCtx; pMem = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG if( pOp->p1 ){ /* This is an OP_AggInverse call. Verify that xStep has always ** been called at least once prior to any xInverse call. */ assert( pMem->uTemp==0x1122e0e3 ); }else{ /* This is an OP_AggStep call. Mark it as such. */ pMem->uTemp = 0x1122e0e3; } #endif /* If this function is inside of a trigger, the register array in aMem[] ** might change from one evaluation to the next. The next block of code ** checks to see if the register array has changed, and if so it ** reinitializes the relavant parts of the sqlite3_context object */ if( pCtx->pMem != pMem ){ pCtx->pMem = pMem; for(i=pCtx->argc-1; i>=0; i--) pCtx->argv[i] = &aMem[pOp->p2+i]; } #ifdef SQLITE_DEBUG for(i=0; iargc; i++){ assert( memIsValid(pCtx->argv[i]) ); REGISTER_TRACE(pOp->p2+i, pCtx->argv[i]); } #endif pMem->n++; assert( pCtx->pOut->flags==MEM_Null ); assert( pCtx->isError==0 ); assert( pCtx->skipFlag==0 ); #ifndef SQLITE_OMIT_WINDOWFUNC if( pOp->p1 ){ (pCtx->pFunc->xInverse)(pCtx,pCtx->argc,pCtx->argv); }else #endif (pCtx->pFunc->xSFunc)(pCtx,pCtx->argc,pCtx->argv); /* IMP: R-24505-23230 */ if( pCtx->isError ){ if( pCtx->isError>0 ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pCtx->pOut)); rc = pCtx->isError; } if( pCtx->skipFlag ){ assert( pOp[-1].opcode==OP_CollSeq ); i = pOp[-1].p1; if( i ) sqlite3VdbeMemSetInt64(&aMem[i], 1); pCtx->skipFlag = 0; } sqlite3VdbeMemRelease(pCtx->pOut); pCtx->pOut->flags = MEM_Null; pCtx->isError = 0; if( rc ) goto abort_due_to_error; } assert( pCtx->pOut->flags==MEM_Null ); assert( pCtx->skipFlag==0 ); break; } /* Opcode: AggFinal P1 P2 * P4 * ** Synopsis: accum=r[P1] N=P2 ** ** P1 is the memory location that is the accumulator for an aggregate ** or window function. Execute the finalizer function ** for an aggregate and store the result in P1. ** ** P2 is the number of arguments that the step function takes and ** P4 is a pointer to the FuncDef for this function. The P2 ** argument is not used by this opcode. It is only there to disambiguate ** functions that can take varying numbers of arguments. The ** P4 argument is only needed for the case where ** the step function was not previously called. */ /* Opcode: AggValue * P2 P3 P4 * ** Synopsis: r[P3]=value N=P2 ** ** Invoke the xValue() function and store the result in register P3. ** ** P2 is the number of arguments that the step function takes and ** P4 is a pointer to the FuncDef for this function. The P2 ** argument is not used by this opcode. It is only there to disambiguate ** functions that can take varying numbers of arguments. The ** P4 argument is only needed for the case where ** the step function was not previously called. */ case OP_AggValue: case OP_AggFinal: { Mem *pMem; assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); assert( pOp->p3==0 || pOp->opcode==OP_AggValue ); pMem = &aMem[pOp->p1]; assert( (pMem->flags & ~(MEM_Null|MEM_Agg))==0 ); #ifndef SQLITE_OMIT_WINDOWFUNC if( pOp->p3 ){ memAboutToChange(p, &aMem[pOp->p3]); rc = sqlite3VdbeMemAggValue(pMem, &aMem[pOp->p3], pOp->p4.pFunc); pMem = &aMem[pOp->p3]; }else #endif { rc = sqlite3VdbeMemFinalize(pMem, pOp->p4.pFunc); } if( rc ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pMem)); goto abort_due_to_error; } sqlite3VdbeChangeEncoding(pMem, encoding); UPDATE_MAX_BLOBSIZE(pMem); if( sqlite3VdbeMemTooBig(pMem) ){ goto too_big; } break; } #ifndef SQLITE_OMIT_WAL /* Opcode: Checkpoint P1 P2 P3 * * ** ** Checkpoint database P1. This is a no-op if P1 is not currently in ** WAL mode. Parameter P2 is one of SQLITE_CHECKPOINT_PASSIVE, FULL, ** RESTART, or TRUNCATE. Write 1 or 0 into mem[P3] if the checkpoint returns ** SQLITE_BUSY or not, respectively. Write the number of pages in the ** WAL after the checkpoint into mem[P3+1] and the number of pages ** in the WAL that have been checkpointed after the checkpoint ** completes into mem[P3+2]. However on an error, mem[P3+1] and ** mem[P3+2] are initialized to -1. */ case OP_Checkpoint: { int i; /* Loop counter */ int aRes[3]; /* Results */ Mem *pMem; /* Write results here */ assert( p->readOnly==0 ); aRes[0] = 0; aRes[1] = aRes[2] = -1; assert( pOp->p2==SQLITE_CHECKPOINT_PASSIVE || pOp->p2==SQLITE_CHECKPOINT_FULL || pOp->p2==SQLITE_CHECKPOINT_RESTART || pOp->p2==SQLITE_CHECKPOINT_TRUNCATE ); rc = sqlite3Checkpoint(db, pOp->p1, pOp->p2, &aRes[1], &aRes[2]); if( rc ){ if( rc!=SQLITE_BUSY ) goto abort_due_to_error; rc = SQLITE_OK; aRes[0] = 1; } for(i=0, pMem = &aMem[pOp->p3]; i<3; i++, pMem++){ sqlite3VdbeMemSetInt64(pMem, (i64)aRes[i]); } break; }; #endif #ifndef SQLITE_OMIT_PRAGMA /* Opcode: JournalMode P1 P2 P3 * * ** ** Change the journal mode of database P1 to P3. P3 must be one of the ** PAGER_JOURNALMODE_XXX values. If changing between the various rollback ** modes (delete, truncate, persist, off and memory), this is a simple ** operation. No IO is required. ** ** If changing into or out of WAL mode the procedure is more complicated. ** ** Write a string containing the final journal-mode to register P2. */ case OP_JournalMode: { /* out2 */ Btree *pBt; /* Btree to change journal mode of */ Pager *pPager; /* Pager associated with pBt */ int eNew; /* New journal mode */ int eOld; /* The old journal mode */ #ifndef SQLITE_OMIT_WAL const char *zFilename; /* Name of database file for pPager */ #endif pOut = out2Prerelease(p, pOp); eNew = pOp->p3; assert( eNew==PAGER_JOURNALMODE_DELETE || eNew==PAGER_JOURNALMODE_TRUNCATE || eNew==PAGER_JOURNALMODE_PERSIST || eNew==PAGER_JOURNALMODE_OFF || eNew==PAGER_JOURNALMODE_MEMORY || eNew==PAGER_JOURNALMODE_WAL || eNew==PAGER_JOURNALMODE_QUERY ); assert( pOp->p1>=0 && pOp->p1nDb ); assert( p->readOnly==0 ); pBt = db->aDb[pOp->p1].pBt; pPager = sqlite3BtreePager(pBt); eOld = sqlite3PagerGetJournalMode(pPager); if( eNew==PAGER_JOURNALMODE_QUERY ) eNew = eOld; assert( sqlite3BtreeHoldsMutex(pBt) ); if( !sqlite3PagerOkToChangeJournalMode(pPager) ) eNew = eOld; #ifndef SQLITE_OMIT_WAL zFilename = sqlite3PagerFilename(pPager, 1); /* Do not allow a transition to journal_mode=WAL for a database ** in temporary storage or if the VFS does not support shared memory */ if( eNew==PAGER_JOURNALMODE_WAL && (sqlite3Strlen30(zFilename)==0 /* Temp file */ || !sqlite3PagerWalSupported(pPager)) /* No shared-memory support */ ){ eNew = eOld; } if( (eNew!=eOld) && (eOld==PAGER_JOURNALMODE_WAL || eNew==PAGER_JOURNALMODE_WAL) ){ if( !db->autoCommit || db->nVdbeRead>1 ){ rc = SQLITE_ERROR; sqlite3VdbeError(p, "cannot change %s wal mode from within a transaction", (eNew==PAGER_JOURNALMODE_WAL ? "into" : "out of") ); goto abort_due_to_error; }else{ if( eOld==PAGER_JOURNALMODE_WAL ){ /* If leaving WAL mode, close the log file. If successful, the call ** to PagerCloseWal() checkpoints and deletes the write-ahead-log ** file. An EXCLUSIVE lock may still be held on the database file ** after a successful return. */ rc = sqlite3PagerCloseWal(pPager, db); if( rc==SQLITE_OK ){ sqlite3PagerSetJournalMode(pPager, eNew); } }else if( eOld==PAGER_JOURNALMODE_MEMORY ){ /* Cannot transition directly from MEMORY to WAL. Use mode OFF ** as an intermediate */ sqlite3PagerSetJournalMode(pPager, PAGER_JOURNALMODE_OFF); } /* Open a transaction on the database file. Regardless of the journal ** mode, this transaction always uses a rollback journal. */ assert( sqlite3BtreeTxnState(pBt)!=SQLITE_TXN_WRITE ); if( rc==SQLITE_OK ){ rc = sqlite3BtreeSetVersion(pBt, (eNew==PAGER_JOURNALMODE_WAL ? 2 : 1)); } } } #endif /* ifndef SQLITE_OMIT_WAL */ if( rc ) eNew = eOld; eNew = sqlite3PagerSetJournalMode(pPager, eNew); pOut->flags = MEM_Str|MEM_Static|MEM_Term; pOut->z = (char *)sqlite3JournalModename(eNew); pOut->n = sqlite3Strlen30(pOut->z); pOut->enc = SQLITE_UTF8; sqlite3VdbeChangeEncoding(pOut, encoding); if( rc ) goto abort_due_to_error; break; }; #endif /* SQLITE_OMIT_PRAGMA */ #if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) /* Opcode: Vacuum P1 P2 * * * ** ** Vacuum the entire database P1. P1 is 0 for "main", and 2 or more ** for an attached database. The "temp" database may not be vacuumed. ** ** If P2 is not zero, then it is a register holding a string which is ** the file into which the result of vacuum should be written. When ** P2 is zero, the vacuum overwrites the original database. */ case OP_Vacuum: { assert( p->readOnly==0 ); rc = sqlite3RunVacuum(&p->zErrMsg, db, pOp->p1, pOp->p2 ? &aMem[pOp->p2] : 0); if( rc ) goto abort_due_to_error; break; } #endif #if !defined(SQLITE_OMIT_AUTOVACUUM) /* Opcode: IncrVacuum P1 P2 * * * ** ** Perform a single step of the incremental vacuum procedure on ** the P1 database. If the vacuum has finished, jump to instruction ** P2. Otherwise, fall through to the next instruction. */ case OP_IncrVacuum: { /* jump */ Btree *pBt; assert( pOp->p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( p->readOnly==0 ); pBt = db->aDb[pOp->p1].pBt; rc = sqlite3BtreeIncrVacuum(pBt); VdbeBranchTaken(rc==SQLITE_DONE,2); if( rc ){ if( rc!=SQLITE_DONE ) goto abort_due_to_error; rc = SQLITE_OK; goto jump_to_p2; } break; } #endif /* Opcode: Expire P1 P2 * * * ** ** Cause precompiled statements to expire. When an expired statement ** is executed using sqlite3_step() it will either automatically ** reprepare itself (if it was originally created using sqlite3_prepare_v2()) ** or it will fail with SQLITE_SCHEMA. ** ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero, ** then only the currently executing statement is expired. ** ** If P2 is 0, then SQL statements are expired immediately. If P2 is 1, ** then running SQL statements are allowed to continue to run to completion. ** The P2==1 case occurs when a CREATE INDEX or similar schema change happens ** that might help the statement run faster but which does not affect the ** correctness of operation. */ case OP_Expire: { assert( pOp->p2==0 || pOp->p2==1 ); if( !pOp->p1 ){ sqlite3ExpirePreparedStatements(db, pOp->p2); }else{ p->expired = pOp->p2+1; } break; } /* Opcode: CursorLock P1 * * * * ** ** Lock the btree to which cursor P1 is pointing so that the btree cannot be ** written by an other cursor. */ case OP_CursorLock: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); sqlite3BtreeCursorPin(pC->uc.pCursor); break; } /* Opcode: CursorUnlock P1 * * * * ** ** Unlock the btree to which cursor P1 is pointing so that it can be ** written by other cursors. */ case OP_CursorUnlock: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); sqlite3BtreeCursorUnpin(pC->uc.pCursor); break; } #ifndef SQLITE_OMIT_SHARED_CACHE /* Opcode: TableLock P1 P2 P3 P4 * ** Synopsis: iDb=P1 root=P2 write=P3 ** ** Obtain a lock on a particular table. This instruction is only used when ** the shared-cache feature is enabled. ** ** P1 is the index of the database in sqlite3.aDb[] of the database ** on which the lock is acquired. A readlock is obtained if P3==0 or ** a write lock if P3==1. ** ** P2 contains the root-page of the table to lock. ** ** P4 contains a pointer to the name of the table being locked. This is only ** used to generate an error message if the lock cannot be obtained. */ case OP_TableLock: { u8 isWriteLock = (u8)pOp->p3; if( isWriteLock || 0==(db->flags&SQLITE_ReadUncommit) ){ int p1 = pOp->p1; assert( p1>=0 && p1nDb ); assert( DbMaskTest(p->btreeMask, p1) ); assert( isWriteLock==0 || isWriteLock==1 ); rc = sqlite3BtreeLockTable(db->aDb[p1].pBt, pOp->p2, isWriteLock); if( rc ){ if( (rc&0xFF)==SQLITE_LOCKED ){ const char *z = pOp->p4.z; sqlite3VdbeError(p, "database table is locked: %s", z); } goto abort_due_to_error; } } break; } #endif /* SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VBegin * * * P4 * ** ** P4 may be a pointer to an sqlite3_vtab structure. If so, call the ** xBegin method for that table. ** ** Also, whether or not P4 is set, check that this is not being called from ** within a callback to a virtual table xSync() method. If it is, the error ** code will be set to SQLITE_LOCKED. */ case OP_VBegin: { VTable *pVTab; pVTab = pOp->p4.pVtab; rc = sqlite3VtabBegin(db, pVTab); if( pVTab ) sqlite3VtabImportErrmsg(p, pVTab->pVtab); if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VCreate P1 P2 * * * ** ** P2 is a register that holds the name of a virtual table in database ** P1. Call the xCreate method for that table. */ case OP_VCreate: { Mem sMem; /* For storing the record being decoded */ const char *zTab; /* Name of the virtual table */ memset(&sMem, 0, sizeof(sMem)); sMem.db = db; /* Because P2 is always a static string, it is impossible for the ** sqlite3VdbeMemCopy() to fail */ assert( (aMem[pOp->p2].flags & MEM_Str)!=0 ); assert( (aMem[pOp->p2].flags & MEM_Static)!=0 ); rc = sqlite3VdbeMemCopy(&sMem, &aMem[pOp->p2]); assert( rc==SQLITE_OK ); zTab = (const char*)sqlite3_value_text(&sMem); assert( zTab || db->mallocFailed ); if( zTab ){ rc = sqlite3VtabCallCreate(db, pOp->p1, zTab, &p->zErrMsg); } sqlite3VdbeMemRelease(&sMem); if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VDestroy P1 * * P4 * ** ** P4 is the name of a virtual table in database P1. Call the xDestroy method ** of that table. */ case OP_VDestroy: { db->nVDestroy++; rc = sqlite3VtabCallDestroy(db, pOp->p1, pOp->p4.z); db->nVDestroy--; assert( p->errorAction==OE_Abort && p->usesStmtJournal ); if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VOpen P1 * * P4 * ** ** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. ** P1 is a cursor number. This opcode opens a cursor to the virtual ** table and stores that cursor in P1. */ case OP_VOpen: { VdbeCursor *pCur; sqlite3_vtab_cursor *pVCur; sqlite3_vtab *pVtab; const sqlite3_module *pModule; assert( p->bIsReader ); pCur = 0; pVCur = 0; pVtab = pOp->p4.pVtab->pVtab; if( pVtab==0 || NEVER(pVtab->pModule==0) ){ rc = SQLITE_LOCKED; goto abort_due_to_error; } pModule = pVtab->pModule; rc = pModule->xOpen(pVtab, &pVCur); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; /* Initialize sqlite3_vtab_cursor base class */ pVCur->pVtab = pVtab; /* Initialize vdbe cursor object */ pCur = allocateCursor(p, pOp->p1, 0, CURTYPE_VTAB); if( pCur ){ pCur->uc.pVCur = pVCur; pVtab->nRef++; }else{ assert( db->mallocFailed ); pModule->xClose(pVCur); goto no_mem; } break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VInitIn P1 P2 P3 * * ** Synopsis: r[P2]=ValueList(P1,P3) ** ** Set register P2 to be a pointer to a ValueList object for cursor P1 ** with cache register P3 and output register P3+1. This ValueList object ** can be used as the first argument to sqlite3_vtab_in_first() and ** sqlite3_vtab_in_next() to extract all of the values stored in the P1 ** cursor. Register P3 is used to hold the values returned by ** sqlite3_vtab_in_first() and sqlite3_vtab_in_next(). */ case OP_VInitIn: { /* out2 */ VdbeCursor *pC; /* The cursor containing the RHS values */ ValueList *pRhs; /* New ValueList object to put in reg[P2] */ pC = p->apCsr[pOp->p1]; pRhs = sqlite3_malloc64( sizeof(*pRhs) ); if( pRhs==0 ) goto no_mem; pRhs->pCsr = pC->uc.pCursor; pRhs->pOut = &aMem[pOp->p3]; pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Null; sqlite3VdbeMemSetPointer(pOut, pRhs, "ValueList", sqlite3_free); break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VFilter P1 P2 P3 P4 * ** Synopsis: iplan=r[P3] zplan='P4' ** ** P1 is a cursor opened using VOpen. P2 is an address to jump to if ** the filtered result set is empty. ** ** P4 is either NULL or a string that was generated by the xBestIndex ** method of the module. The interpretation of the P4 string is left ** to the module implementation. ** ** This opcode invokes the xFilter method on the virtual table specified ** by P1. The integer query plan parameter to xFilter is stored in register ** P3. Register P3+1 stores the argc parameter to be passed to the ** xFilter method. Registers P3+2..P3+1+argc are the argc ** additional parameters which are passed to ** xFilter as argv. Register P3+2 becomes argv[0] when passed to xFilter. ** ** A jump is made to P2 if the result set after filtering would be empty. */ case OP_VFilter: { /* jump */ int nArg; int iQuery; const sqlite3_module *pModule; Mem *pQuery; Mem *pArgc; sqlite3_vtab_cursor *pVCur; sqlite3_vtab *pVtab; VdbeCursor *pCur; int res; int i; Mem **apArg; pQuery = &aMem[pOp->p3]; pArgc = &pQuery[1]; pCur = p->apCsr[pOp->p1]; assert( memIsValid(pQuery) ); REGISTER_TRACE(pOp->p3, pQuery); assert( pCur!=0 ); assert( pCur->eCurType==CURTYPE_VTAB ); pVCur = pCur->uc.pVCur; pVtab = pVCur->pVtab; pModule = pVtab->pModule; /* Grab the index number and argc parameters */ assert( (pQuery->flags&MEM_Int)!=0 && pArgc->flags==MEM_Int ); nArg = (int)pArgc->u.i; iQuery = (int)pQuery->u.i; /* Invoke the xFilter method */ apArg = p->apArg; for(i = 0; ixFilter(pVCur, iQuery, pOp->p4.z, nArg, apArg); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; res = pModule->xEof(pVCur); pCur->nullRow = 0; VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VColumn P1 P2 P3 * P5 ** Synopsis: r[P3]=vcolumn(P2) ** ** Store in register P3 the value of the P2-th column of ** the current row of the virtual-table of cursor P1. ** ** If the VColumn opcode is being used to fetch the value of ** an unchanging column during an UPDATE operation, then the P5 ** value is OPFLAG_NOCHNG. This will cause the sqlite3_vtab_nochange() ** function to return true inside the xColumn method of the virtual ** table implementation. The P5 column might also contain other ** bits (OPFLAG_LENGTHARG or OPFLAG_TYPEOFARG) but those bits are ** unused by OP_VColumn. */ case OP_VColumn: { sqlite3_vtab *pVtab; const sqlite3_module *pModule; Mem *pDest; sqlite3_context sContext; VdbeCursor *pCur = p->apCsr[pOp->p1]; assert( pCur!=0 ); assert( pCur->eCurType==CURTYPE_VTAB ); assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); pDest = &aMem[pOp->p3]; memAboutToChange(p, pDest); if( pCur->nullRow ){ sqlite3VdbeMemSetNull(pDest); break; } pVtab = pCur->uc.pVCur->pVtab; pModule = pVtab->pModule; assert( pModule->xColumn ); memset(&sContext, 0, sizeof(sContext)); sContext.pOut = pDest; assert( pOp->p5==OPFLAG_NOCHNG || pOp->p5==0 ); if( pOp->p5 & OPFLAG_NOCHNG ){ sqlite3VdbeMemSetNull(pDest); pDest->flags = MEM_Null|MEM_Zero; pDest->u.nZero = 0; }else{ MemSetTypeFlag(pDest, MEM_Null); } rc = pModule->xColumn(pCur->uc.pVCur, &sContext, pOp->p2); sqlite3VtabImportErrmsg(p, pVtab); if( sContext.isError>0 ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pDest)); rc = sContext.isError; } sqlite3VdbeChangeEncoding(pDest, encoding); REGISTER_TRACE(pOp->p3, pDest); UPDATE_MAX_BLOBSIZE(pDest); if( sqlite3VdbeMemTooBig(pDest) ){ goto too_big; } if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VNext P1 P2 * * * ** ** Advance virtual table P1 to the next row in its result set and ** jump to instruction P2. Or, if the virtual table has reached ** the end of its result set, then fall through to the next instruction. */ case OP_VNext: { /* jump */ sqlite3_vtab *pVtab; const sqlite3_module *pModule; int res; VdbeCursor *pCur; pCur = p->apCsr[pOp->p1]; assert( pCur!=0 ); assert( pCur->eCurType==CURTYPE_VTAB ); if( pCur->nullRow ){ break; } pVtab = pCur->uc.pVCur->pVtab; pModule = pVtab->pModule; assert( pModule->xNext ); /* Invoke the xNext() method of the module. There is no way for the ** underlying implementation to return an error if one occurs during ** xNext(). Instead, if an error occurs, true is returned (indicating that ** data is available) and the error code returned when xColumn or ** some other method is next invoked on the save virtual table cursor. */ rc = pModule->xNext(pCur->uc.pVCur); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; res = pModule->xEof(pCur->uc.pVCur); VdbeBranchTaken(!res,2); if( !res ){ /* If there is data, jump to P2 */ goto jump_to_p2_and_check_for_interrupt; } goto check_for_interrupt; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VRename P1 * * P4 * ** ** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. ** This opcode invokes the corresponding xRename method. The value ** in register P1 is passed as the zName argument to the xRename method. */ case OP_VRename: { sqlite3_vtab *pVtab; Mem *pName; int isLegacy; isLegacy = (db->flags & SQLITE_LegacyAlter); db->flags |= SQLITE_LegacyAlter; pVtab = pOp->p4.pVtab->pVtab; pName = &aMem[pOp->p1]; assert( pVtab->pModule->xRename ); assert( memIsValid(pName) ); assert( p->readOnly==0 ); REGISTER_TRACE(pOp->p1, pName); assert( pName->flags & MEM_Str ); testcase( pName->enc==SQLITE_UTF8 ); testcase( pName->enc==SQLITE_UTF16BE ); testcase( pName->enc==SQLITE_UTF16LE ); rc = sqlite3VdbeChangeEncoding(pName, SQLITE_UTF8); if( rc ) goto abort_due_to_error; rc = pVtab->pModule->xRename(pVtab, pName->z); if( isLegacy==0 ) db->flags &= ~(u64)SQLITE_LegacyAlter; sqlite3VtabImportErrmsg(p, pVtab); p->expired = 0; if( rc ) goto abort_due_to_error; break; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VUpdate P1 P2 P3 P4 P5 ** Synopsis: data=r[P3@P2] ** ** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. ** This opcode invokes the corresponding xUpdate method. P2 values ** are contiguous memory cells starting at P3 to pass to the xUpdate ** invocation. The value in register (P3+P2-1) corresponds to the ** p2th element of the argv array passed to xUpdate. ** ** The xUpdate method will do a DELETE or an INSERT or both. ** The argv[0] element (which corresponds to memory cell P3) ** is the rowid of a row to delete. If argv[0] is NULL then no ** deletion occurs. The argv[1] element is the rowid of the new ** row. This can be NULL to have the virtual table select the new ** rowid for itself. The subsequent elements in the array are ** the values of columns in the new row. ** ** If P2==1 then no insert is performed. argv[0] is the rowid of ** a row to delete. ** ** P1 is a boolean flag. If it is set to true and the xUpdate call ** is successful, then the value returned by sqlite3_last_insert_rowid() ** is set to the value of the rowid for the row just inserted. ** ** P5 is the error actions (OE_Replace, OE_Fail, OE_Ignore, etc) to ** apply in the case of a constraint failure on an insert or update. */ case OP_VUpdate: { sqlite3_vtab *pVtab; const sqlite3_module *pModule; int nArg; int i; sqlite_int64 rowid = 0; Mem **apArg; Mem *pX; assert( pOp->p2==1 || pOp->p5==OE_Fail || pOp->p5==OE_Rollback || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace ); assert( p->readOnly==0 ); if( db->mallocFailed ) goto no_mem; sqlite3VdbeIncrWriteCounter(p, 0); pVtab = pOp->p4.pVtab->pVtab; if( pVtab==0 || NEVER(pVtab->pModule==0) ){ rc = SQLITE_LOCKED; goto abort_due_to_error; } pModule = pVtab->pModule; nArg = pOp->p2; assert( pOp->p4type==P4_VTAB ); if( ALWAYS(pModule->xUpdate) ){ u8 vtabOnConflict = db->vtabOnConflict; apArg = p->apArg; pX = &aMem[pOp->p3]; for(i=0; ivtabOnConflict = pOp->p5; rc = pModule->xUpdate(pVtab, nArg, apArg, &rowid); db->vtabOnConflict = vtabOnConflict; sqlite3VtabImportErrmsg(p, pVtab); if( rc==SQLITE_OK && pOp->p1 ){ assert( nArg>1 && apArg[0] && (apArg[0]->flags&MEM_Null) ); db->lastRowid = rowid; } if( (rc&0xff)==SQLITE_CONSTRAINT && pOp->p4.pVtab->bConstraint ){ if( pOp->p5==OE_Ignore ){ rc = SQLITE_OK; }else{ p->errorAction = ((pOp->p5==OE_Replace) ? OE_Abort : pOp->p5); } }else{ p->nChange++; } if( rc ) goto abort_due_to_error; } break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* Opcode: Pagecount P1 P2 * * * ** ** Write the current number of pages in database P1 to memory cell P2. */ case OP_Pagecount: { /* out2 */ pOut = out2Prerelease(p, pOp); pOut->u.i = sqlite3BtreeLastPage(db->aDb[pOp->p1].pBt); break; } #endif #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* Opcode: MaxPgcnt P1 P2 P3 * * ** ** Try to set the maximum page count for database P1 to the value in P3. ** Do not let the maximum page count fall below the current page count and ** do not change the maximum page count value if P3==0. ** ** Store the maximum page count after the change in register P2. */ case OP_MaxPgcnt: { /* out2 */ unsigned int newMax; Btree *pBt; pOut = out2Prerelease(p, pOp); pBt = db->aDb[pOp->p1].pBt; newMax = 0; if( pOp->p3 ){ newMax = sqlite3BtreeLastPage(pBt); if( newMax < (unsigned)pOp->p3 ) newMax = (unsigned)pOp->p3; } pOut->u.i = sqlite3BtreeMaxPageCount(pBt, newMax); break; } #endif /* Opcode: Function P1 P2 P3 P4 * ** Synopsis: r[P3]=func(r[P2@NP]) ** ** Invoke a user function (P4 is a pointer to an sqlite3_context object that ** contains a pointer to the function to be run) with arguments taken ** from register P2 and successors. The number of arguments is in ** the sqlite3_context object that P4 points to. ** The result of the function is stored ** in register P3. Register P3 must not be one of the function inputs. ** ** P1 is a 32-bit bitmask indicating whether or not each argument to the ** function was determined to be constant at compile time. If the first ** argument was constant then bit 0 of P1 is set. This is used to determine ** whether meta data associated with a user function argument using the ** sqlite3_set_auxdata() API may be safely retained until the next ** invocation of this opcode. ** ** See also: AggStep, AggFinal, PureFunc */ /* Opcode: PureFunc P1 P2 P3 P4 * ** Synopsis: r[P3]=func(r[P2@NP]) ** ** Invoke a user function (P4 is a pointer to an sqlite3_context object that ** contains a pointer to the function to be run) with arguments taken ** from register P2 and successors. The number of arguments is in ** the sqlite3_context object that P4 points to. ** The result of the function is stored ** in register P3. Register P3 must not be one of the function inputs. ** ** P1 is a 32-bit bitmask indicating whether or not each argument to the ** function was determined to be constant at compile time. If the first ** argument was constant then bit 0 of P1 is set. This is used to determine ** whether meta data associated with a user function argument using the ** sqlite3_set_auxdata() API may be safely retained until the next ** invocation of this opcode. ** ** This opcode works exactly like OP_Function. The only difference is in ** its name. This opcode is used in places where the function must be ** purely non-deterministic. Some built-in date/time functions can be ** either determinitic of non-deterministic, depending on their arguments. ** When those function are used in a non-deterministic way, they will check ** to see if they were called using OP_PureFunc instead of OP_Function, and ** if they were, they throw an error. ** ** See also: AggStep, AggFinal, Function */ case OP_PureFunc: /* group */ case OP_Function: { /* group */ int i; sqlite3_context *pCtx; assert( pOp->p4type==P4_FUNCCTX ); pCtx = pOp->p4.pCtx; /* If this function is inside of a trigger, the register array in aMem[] ** might change from one evaluation to the next. The next block of code ** checks to see if the register array has changed, and if so it ** reinitializes the relavant parts of the sqlite3_context object */ pOut = &aMem[pOp->p3]; if( pCtx->pOut != pOut ){ pCtx->pVdbe = p; pCtx->pOut = pOut; for(i=pCtx->argc-1; i>=0; i--) pCtx->argv[i] = &aMem[pOp->p2+i]; } assert( pCtx->pVdbe==p ); memAboutToChange(p, pOut); #ifdef SQLITE_DEBUG for(i=0; iargc; i++){ assert( memIsValid(pCtx->argv[i]) ); REGISTER_TRACE(pOp->p2+i, pCtx->argv[i]); } #endif MemSetTypeFlag(pOut, MEM_Null); assert( pCtx->isError==0 ); (*pCtx->pFunc->xSFunc)(pCtx, pCtx->argc, pCtx->argv);/* IMP: R-24505-23230 */ /* If the function returned an error, throw an exception */ if( pCtx->isError ){ if( pCtx->isError>0 ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pOut)); rc = pCtx->isError; } sqlite3VdbeDeleteAuxData(db, &p->pAuxData, pCtx->iOp, pOp->p1); pCtx->isError = 0; if( rc ) goto abort_due_to_error; } /* Copy the result of the function into register P3 */ if( pOut->flags & (MEM_Str|MEM_Blob) ){ sqlite3VdbeChangeEncoding(pOut, encoding); if( sqlite3VdbeMemTooBig(pOut) ) goto too_big; } REGISTER_TRACE(pOp->p3, pOut); UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: FilterAdd P1 * P3 P4 * ** Synopsis: filter(P1) += key(P3@P4) ** ** Compute a hash on the P4 registers starting with r[P3] and ** add that hash to the bloom filter contained in r[P1]. */ case OP_FilterAdd: { u64 h; assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); pIn1 = &aMem[pOp->p1]; assert( pIn1->flags & MEM_Blob ); assert( pIn1->n>0 ); h = filterHash(aMem, pOp); #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ int ii; for(ii=pOp->p3; iip3+pOp->p4.i; ii++){ registerTrace(ii, &aMem[ii]); } printf("hash: %llu modulo %d -> %u\n", h, pIn1->n, (int)(h%pIn1->n)); } #endif h %= pIn1->n; pIn1->z[h/8] |= 1<<(h&7); break; } /* Opcode: Filter P1 P2 P3 P4 * ** Synopsis: if key(P3@P4) not in filter(P1) goto P2 ** ** Compute a hash on the key contained in the P4 registers starting ** with r[P3]. Check to see if that hash is found in the ** bloom filter hosted by register P1. If it is not present then ** maybe jump to P2. Otherwise fall through. ** ** False negatives are harmless. It is always safe to fall through, ** even if the value is in the bloom filter. A false negative causes ** more CPU cycles to be used, but it should still yield the correct ** answer. However, an incorrect answer may well arise from a ** false positive - if the jump is taken when it should fall through. */ case OP_Filter: { /* jump */ u64 h; assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); pIn1 = &aMem[pOp->p1]; assert( (pIn1->flags & MEM_Blob)!=0 ); assert( pIn1->n >= 1 ); h = filterHash(aMem, pOp); #ifdef SQLITE_DEBUG if( db->flags&SQLITE_VdbeTrace ){ int ii; for(ii=pOp->p3; iip3+pOp->p4.i; ii++){ registerTrace(ii, &aMem[ii]); } printf("hash: %llu modulo %d -> %u\n", h, pIn1->n, (int)(h%pIn1->n)); } #endif h %= pIn1->n; if( (pIn1->z[h/8] & (1<<(h&7)))==0 ){ VdbeBranchTaken(1, 2); p->aCounter[SQLITE_STMTSTATUS_FILTER_HIT]++; goto jump_to_p2; }else{ p->aCounter[SQLITE_STMTSTATUS_FILTER_MISS]++; VdbeBranchTaken(0, 2); } break; } /* Opcode: Trace P1 P2 * P4 * ** ** Write P4 on the statement trace output if statement tracing is ** enabled. ** ** Operand P1 must be 0x7fffffff and P2 must positive. */ /* Opcode: Init P1 P2 P3 P4 * ** Synopsis: Start at P2 ** ** Programs contain a single instance of this opcode as the very first ** opcode. ** ** If tracing is enabled (by the sqlite3_trace()) interface, then ** the UTF-8 string contained in P4 is emitted on the trace callback. ** Or if P4 is blank, use the string returned by sqlite3_sql(). ** ** If P2 is not zero, jump to instruction P2. ** ** Increment the value of P1 so that OP_Once opcodes will jump the ** first time they are evaluated for this run. ** ** If P3 is not zero, then it is an address to jump to if an SQLITE_CORRUPT ** error is encountered. */ case OP_Trace: case OP_Init: { /* jump */ int i; #ifndef SQLITE_OMIT_TRACE char *zTrace; #endif /* If the P4 argument is not NULL, then it must be an SQL comment string. ** The "--" string is broken up to prevent false-positives with srcck1.c. ** ** This assert() provides evidence for: ** EVIDENCE-OF: R-50676-09860 The callback can compute the same text that ** would have been returned by the legacy sqlite3_trace() interface by ** using the X argument when X begins with "--" and invoking ** sqlite3_expanded_sql(P) otherwise. */ assert( pOp->p4.z==0 || strncmp(pOp->p4.z, "-" "- ", 3)==0 ); /* OP_Init is always instruction 0 */ assert( pOp==p->aOp || pOp->opcode==OP_Trace ); #ifndef SQLITE_OMIT_TRACE if( (db->mTrace & (SQLITE_TRACE_STMT|SQLITE_TRACE_LEGACY))!=0 && !p->doingRerun && (zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql))!=0 ){ #ifndef SQLITE_OMIT_DEPRECATED if( db->mTrace & SQLITE_TRACE_LEGACY ){ char *z = sqlite3VdbeExpandSql(p, zTrace); db->trace.xLegacy(db->pTraceArg, z); sqlite3_free(z); }else #endif if( db->nVdbeExec>1 ){ char *z = sqlite3MPrintf(db, "-- %s", zTrace); (void)db->trace.xV2(SQLITE_TRACE_STMT, db->pTraceArg, p, z); sqlite3DbFree(db, z); }else{ (void)db->trace.xV2(SQLITE_TRACE_STMT, db->pTraceArg, p, zTrace); } } #ifdef SQLITE_USE_FCNTL_TRACE zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql); if( zTrace ){ int j; for(j=0; jnDb; j++){ if( DbMaskTest(p->btreeMask, j)==0 ) continue; sqlite3_file_control(db, db->aDb[j].zDbSName, SQLITE_FCNTL_TRACE, zTrace); } } #endif /* SQLITE_USE_FCNTL_TRACE */ #ifdef SQLITE_DEBUG if( (db->flags & SQLITE_SqlTrace)!=0 && (zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql))!=0 ){ sqlite3DebugPrintf("SQL-trace: %s\n", zTrace); } #endif /* SQLITE_DEBUG */ #endif /* SQLITE_OMIT_TRACE */ assert( pOp->p2>0 ); if( pOp->p1>=sqlite3GlobalConfig.iOnceResetThreshold ){ if( pOp->opcode==OP_Trace ) break; for(i=1; inOp; i++){ if( p->aOp[i].opcode==OP_Once ) p->aOp[i].p1 = 0; } pOp->p1 = 0; } pOp->p1++; p->aCounter[SQLITE_STMTSTATUS_RUN]++; goto jump_to_p2; } #ifdef SQLITE_ENABLE_CURSOR_HINTS /* Opcode: CursorHint P1 * * P4 * ** ** Provide a hint to cursor P1 that it only needs to return rows that ** satisfy the Expr in P4. TK_REGISTER terms in the P4 expression refer ** to values currently held in registers. TK_COLUMN terms in the P4 ** expression refer to columns in the b-tree to which cursor P1 is pointing. */ case OP_CursorHint: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p4type==P4_EXPR ); pC = p->apCsr[pOp->p1]; if( pC ){ assert( pC->eCurType==CURTYPE_BTREE ); sqlite3BtreeCursorHint(pC->uc.pCursor, BTREE_HINT_RANGE, pOp->p4.pExpr, aMem); } break; } #endif /* SQLITE_ENABLE_CURSOR_HINTS */ #ifdef SQLITE_DEBUG /* Opcode: Abortable * * * * * ** ** Verify that an Abort can happen. Assert if an Abort at this point ** might cause database corruption. This opcode only appears in debugging ** builds. ** ** An Abort is safe if either there have been no writes, or if there is ** an active statement journal. */ case OP_Abortable: { sqlite3VdbeAssertAbortable(p); break; } #endif #ifdef SQLITE_DEBUG /* Opcode: ReleaseReg P1 P2 P3 * P5 ** Synopsis: release r[P1@P2] mask P3 ** ** Release registers from service. Any content that was in the ** the registers is unreliable after this opcode completes. ** ** The registers released will be the P2 registers starting at P1, ** except if bit ii of P3 set, then do not release register P1+ii. ** In other words, P3 is a mask of registers to preserve. ** ** Releasing a register clears the Mem.pScopyFrom pointer. That means ** that if the content of the released register was set using OP_SCopy, ** a change to the value of the source register for the OP_SCopy will no longer ** generate an assertion fault in sqlite3VdbeMemAboutToChange(). ** ** If P5 is set, then all released registers have their type set ** to MEM_Undefined so that any subsequent attempt to read the released ** register (before it is reinitialized) will generate an assertion fault. ** ** P5 ought to be set on every call to this opcode. ** However, there are places in the code generator will release registers ** before their are used, under the (valid) assumption that the registers ** will not be reallocated for some other purpose before they are used and ** hence are safe to release. ** ** This opcode is only available in testing and debugging builds. It is ** not generated for release builds. The purpose of this opcode is to help ** validate the generated bytecode. This opcode does not actually contribute ** to computing an answer. */ case OP_ReleaseReg: { Mem *pMem; int i; u32 constMask; assert( pOp->p1>0 ); assert( pOp->p1+pOp->p2<=(p->nMem+1 - p->nCursor)+1 ); pMem = &aMem[pOp->p1]; constMask = pOp->p3; for(i=0; ip2; i++, pMem++){ if( i>=32 || (constMask & MASKBIT32(i))==0 ){ pMem->pScopyFrom = 0; if( i<32 && pOp->p5 ) MemSetTypeFlag(pMem, MEM_Undefined); } } break; } #endif /* Opcode: Noop * * * * * ** ** Do nothing. This instruction is often useful as a jump ** destination. */ /* ** The magic Explain opcode are only inserted when explain==2 (which ** is to say when the EXPLAIN QUERY PLAN syntax is used.) ** This opcode records information from the optimizer. It is the ** the same as a no-op. This opcodesnever appears in a real VM program. */ default: { /* This is really OP_Noop, OP_Explain */ assert( pOp->opcode==OP_Noop || pOp->opcode==OP_Explain ); break; } /***************************************************************************** ** The cases of the switch statement above this line should all be indented ** by 6 spaces. But the left-most 6 spaces have been removed to improve the ** readability. From this point on down, the normal indentation rules are ** restored. *****************************************************************************/ } #ifdef VDBE_PROFILE { u64 endTime = sqlite3NProfileCnt ? sqlite3NProfileCnt : sqlite3Hwtime(); if( endTime>start ) pOrigOp->cycles += endTime - start; pOrigOp->cnt++; } #endif /* The following code adds nothing to the actual functionality ** of the program. It is only here for testing and debugging. ** On the other hand, it does burn CPU cycles every time through ** the evaluator loop. So we can leave it out when NDEBUG is defined. */ #ifndef NDEBUG assert( pOp>=&aOp[-1] && pOp<&aOp[p->nOp-1] ); #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeTrace ){ u8 opProperty = sqlite3OpcodeProperty[pOrigOp->opcode]; if( rc!=0 ) printf("rc=%d\n",rc); if( opProperty & (OPFLG_OUT2) ){ registerTrace(pOrigOp->p2, &aMem[pOrigOp->p2]); } if( opProperty & OPFLG_OUT3 ){ registerTrace(pOrigOp->p3, &aMem[pOrigOp->p3]); } if( opProperty==0xff ){ /* Never happens. This code exists to avoid a harmless linkage ** warning aboud sqlite3VdbeRegisterDump() being defined but not ** used. */ sqlite3VdbeRegisterDump(p); } } #endif /* SQLITE_DEBUG */ #endif /* NDEBUG */ } /* The end of the for(;;) loop the loops through opcodes */ /* If we reach this point, it means that execution is finished with ** an error of some kind. */ abort_due_to_error: if( db->mallocFailed ){ rc = SQLITE_NOMEM_BKPT; }else if( rc==SQLITE_IOERR_CORRUPTFS ){ rc = SQLITE_CORRUPT_BKPT; } assert( rc ); #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeTrace ){ const char *zTrace = p->zSql; if( zTrace==0 ){ if( aOp[0].opcode==OP_Trace ){ zTrace = aOp[0].p4.z; } if( zTrace==0 ) zTrace = "???"; } printf("ABORT-due-to-error (rc=%d): %s\n", rc, zTrace); } #endif if( p->zErrMsg==0 && rc!=SQLITE_IOERR_NOMEM ){ sqlite3VdbeError(p, "%s", sqlite3ErrStr(rc)); } p->rc = rc; sqlite3SystemError(db, rc); testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(rc, "statement aborts at %d: [%s] %s", (int)(pOp - aOp), p->zSql, p->zErrMsg); sqlite3VdbeHalt(p); if( rc==SQLITE_IOERR_NOMEM ) sqlite3OomFault(db); if( rc==SQLITE_CORRUPT && db->autoCommit==0 ){ db->flags |= SQLITE_CorruptRdOnly; } rc = SQLITE_ERROR; if( resetSchemaOnFault>0 ){ sqlite3ResetOneSchema(db, resetSchemaOnFault-1); } /* This is the only way out of this procedure. We have to ** release the mutexes on btrees that were acquired at the ** top. */ vdbe_return: #ifndef SQLITE_OMIT_PROGRESS_CALLBACK while( nVmStep>=nProgressLimit && db->xProgress!=0 ){ nProgressLimit += db->nProgressOps; if( db->xProgress(db->pProgressArg) ){ nProgressLimit = LARGEST_UINT64; rc = SQLITE_INTERRUPT; goto abort_due_to_error; } } #endif p->aCounter[SQLITE_STMTSTATUS_VM_STEP] += (int)nVmStep; sqlite3VdbeLeave(p); assert( rc!=SQLITE_OK || nExtraDelete==0 || sqlite3_strlike("DELETE%",p->zSql,0)!=0 ); return rc; /* Jump to here if a string or blob larger than SQLITE_MAX_LENGTH ** is encountered. */ too_big: sqlite3VdbeError(p, "string or blob too big"); rc = SQLITE_TOOBIG; goto abort_due_to_error; /* Jump to here if a malloc() fails. */ no_mem: sqlite3OomFault(db); sqlite3VdbeError(p, "out of memory"); rc = SQLITE_NOMEM_BKPT; goto abort_due_to_error; /* Jump to here if the sqlite3_interrupt() API sets the interrupt ** flag. */ abort_due_to_interrupt: assert( AtomicLoad(&db->u1.isInterrupted) ); rc = SQLITE_INTERRUPT; goto abort_due_to_error; } /************** End of vdbe.c ************************************************/ /************** Begin file vdbeblob.c ****************************************/ /* ** 2007 May 1 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code used to implement incremental BLOB I/O. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #ifndef SQLITE_OMIT_INCRBLOB /* ** Valid sqlite3_blob* handles point to Incrblob structures. */ typedef struct Incrblob Incrblob; struct Incrblob { int nByte; /* Size of open blob, in bytes */ int iOffset; /* Byte offset of blob in cursor data */ u16 iCol; /* Table column this handle is open on */ BtCursor *pCsr; /* Cursor pointing at blob row */ sqlite3_stmt *pStmt; /* Statement holding cursor open */ sqlite3 *db; /* The associated database */ char *zDb; /* Database name */ Table *pTab; /* Table object */ }; /* ** This function is used by both blob_open() and blob_reopen(). It seeks ** the b-tree cursor associated with blob handle p to point to row iRow. ** If successful, SQLITE_OK is returned and subsequent calls to ** sqlite3_blob_read() or sqlite3_blob_write() access the specified row. ** ** If an error occurs, or if the specified row does not exist or does not ** contain a value of type TEXT or BLOB in the column nominated when the ** blob handle was opened, then an error code is returned and *pzErr may ** be set to point to a buffer containing an error message. It is the ** responsibility of the caller to free the error message buffer using ** sqlite3DbFree(). ** ** If an error does occur, then the b-tree cursor is closed. All subsequent ** calls to sqlite3_blob_read(), blob_write() or blob_reopen() will ** immediately return SQLITE_ABORT. */ static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){ int rc; /* Error code */ char *zErr = 0; /* Error message */ Vdbe *v = (Vdbe *)p->pStmt; /* Set the value of register r[1] in the SQL statement to integer iRow. ** This is done directly as a performance optimization */ v->aMem[1].flags = MEM_Int; v->aMem[1].u.i = iRow; /* If the statement has been run before (and is paused at the OP_ResultRow) ** then back it up to the point where it does the OP_NotExists. This could ** have been down with an extra OP_Goto, but simply setting the program ** counter is faster. */ if( v->pc>4 ){ v->pc = 4; assert( v->aOp[v->pc].opcode==OP_NotExists ); rc = sqlite3VdbeExec(v); }else{ rc = sqlite3_step(p->pStmt); } if( rc==SQLITE_ROW ){ VdbeCursor *pC = v->apCsr[0]; u32 type; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); type = pC->nHdrParsed>p->iCol ? pC->aType[p->iCol] : 0; testcase( pC->nHdrParsed==p->iCol ); testcase( pC->nHdrParsed==p->iCol+1 ); if( type<12 ){ zErr = sqlite3MPrintf(p->db, "cannot open value of type %s", type==0?"null": type==7?"real": "integer" ); rc = SQLITE_ERROR; sqlite3_finalize(p->pStmt); p->pStmt = 0; }else{ p->iOffset = pC->aType[p->iCol + pC->nField]; p->nByte = sqlite3VdbeSerialTypeLen(type); p->pCsr = pC->uc.pCursor; sqlite3BtreeIncrblobCursor(p->pCsr); } } if( rc==SQLITE_ROW ){ rc = SQLITE_OK; }else if( p->pStmt ){ rc = sqlite3_finalize(p->pStmt); p->pStmt = 0; if( rc==SQLITE_OK ){ zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow); rc = SQLITE_ERROR; }else{ zErr = sqlite3MPrintf(p->db, "%s", sqlite3_errmsg(p->db)); } } assert( rc!=SQLITE_OK || zErr==0 ); assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE ); *pzErr = zErr; return rc; } /* ** Open a blob handle. */ SQLITE_API int sqlite3_blob_open( sqlite3* db, /* The database connection */ const char *zDb, /* The attached database containing the blob */ const char *zTable, /* The table containing the blob */ const char *zColumn, /* The column containing the blob */ sqlite_int64 iRow, /* The row containing the glob */ int wrFlag, /* True -> read/write access, false -> read-only */ sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */ ){ int nAttempt = 0; int iCol; /* Index of zColumn in row-record */ int rc = SQLITE_OK; char *zErr = 0; Table *pTab; Incrblob *pBlob = 0; Parse sParse; #ifdef SQLITE_ENABLE_API_ARMOR if( ppBlob==0 ){ return SQLITE_MISUSE_BKPT; } #endif *ppBlob = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zTable==0 ){ return SQLITE_MISUSE_BKPT; } #endif wrFlag = !!wrFlag; /* wrFlag = (wrFlag ? 1 : 0); */ sqlite3_mutex_enter(db->mutex); pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob)); while(1){ sqlite3ParseObjectInit(&sParse,db); if( !pBlob ) goto blob_open_out; sqlite3DbFree(db, zErr); zErr = 0; sqlite3BtreeEnterAll(db); pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb); if( pTab && IsVirtual(pTab) ){ pTab = 0; sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable); } if( pTab && !HasRowid(pTab) ){ pTab = 0; sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable); } #ifndef SQLITE_OMIT_VIEW if( pTab && IsView(pTab) ){ pTab = 0; sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable); } #endif if( !pTab ){ if( sParse.zErrMsg ){ sqlite3DbFree(db, zErr); zErr = sParse.zErrMsg; sParse.zErrMsg = 0; } rc = SQLITE_ERROR; sqlite3BtreeLeaveAll(db); goto blob_open_out; } pBlob->pTab = pTab; pBlob->zDb = db->aDb[sqlite3SchemaToIndex(db, pTab->pSchema)].zDbSName; /* Now search pTab for the exact column. */ for(iCol=0; iColnCol; iCol++) { if( sqlite3StrICmp(pTab->aCol[iCol].zCnName, zColumn)==0 ){ break; } } if( iCol==pTab->nCol ){ sqlite3DbFree(db, zErr); zErr = sqlite3MPrintf(db, "no such column: \"%s\"", zColumn); rc = SQLITE_ERROR; sqlite3BtreeLeaveAll(db); goto blob_open_out; } /* If the value is being opened for writing, check that the ** column is not indexed, and that it is not part of a foreign key. */ if( wrFlag ){ const char *zFault = 0; Index *pIdx; #ifndef SQLITE_OMIT_FOREIGN_KEY if( db->flags&SQLITE_ForeignKeys ){ /* Check that the column is not part of an FK child key definition. It ** is not necessary to check if it is part of a parent key, as parent ** key columns must be indexed. The check below will pick up this ** case. */ FKey *pFKey; assert( IsOrdinaryTable(pTab) ); for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){ int j; for(j=0; jnCol; j++){ if( pFKey->aCol[j].iFrom==iCol ){ zFault = "foreign key"; } } } } #endif for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int j; for(j=0; jnKeyCol; j++){ /* FIXME: Be smarter about indexes that use expressions */ if( pIdx->aiColumn[j]==iCol || pIdx->aiColumn[j]==XN_EXPR ){ zFault = "indexed"; } } } if( zFault ){ sqlite3DbFree(db, zErr); zErr = sqlite3MPrintf(db, "cannot open %s column for writing", zFault); rc = SQLITE_ERROR; sqlite3BtreeLeaveAll(db); goto blob_open_out; } } pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(&sParse); assert( pBlob->pStmt || db->mallocFailed ); if( pBlob->pStmt ){ /* This VDBE program seeks a btree cursor to the identified ** db/table/row entry. The reason for using a vdbe program instead ** of writing code to use the b-tree layer directly is that the ** vdbe program will take advantage of the various transaction, ** locking and error handling infrastructure built into the vdbe. ** ** After seeking the cursor, the vdbe executes an OP_ResultRow. ** Code external to the Vdbe then "borrows" the b-tree cursor and ** uses it to implement the blob_read(), blob_write() and ** blob_bytes() functions. ** ** The sqlite3_blob_close() function finalizes the vdbe program, ** which closes the b-tree cursor and (possibly) commits the ** transaction. */ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList openBlob[] = { {OP_TableLock, 0, 0, 0}, /* 0: Acquire a read or write lock */ {OP_OpenRead, 0, 0, 0}, /* 1: Open a cursor */ /* blobSeekToRow() will initialize r[1] to the desired rowid */ {OP_NotExists, 0, 5, 1}, /* 2: Seek the cursor to rowid=r[1] */ {OP_Column, 0, 0, 1}, /* 3 */ {OP_ResultRow, 1, 0, 0}, /* 4 */ {OP_Halt, 0, 0, 0}, /* 5 */ }; Vdbe *v = (Vdbe *)pBlob->pStmt; int iDb = sqlite3SchemaToIndex(db, pTab->pSchema); VdbeOp *aOp; sqlite3VdbeAddOp4Int(v, OP_Transaction, iDb, wrFlag, pTab->pSchema->schema_cookie, pTab->pSchema->iGeneration); sqlite3VdbeChangeP5(v, 1); assert( sqlite3VdbeCurrentAddr(v)==2 || db->mallocFailed ); aOp = sqlite3VdbeAddOpList(v, ArraySize(openBlob), openBlob, iLn); /* Make sure a mutex is held on the table to be accessed */ sqlite3VdbeUsesBtree(v, iDb); if( db->mallocFailed==0 ){ assert( aOp!=0 ); /* Configure the OP_TableLock instruction */ #ifdef SQLITE_OMIT_SHARED_CACHE aOp[0].opcode = OP_Noop; #else aOp[0].p1 = iDb; aOp[0].p2 = pTab->tnum; aOp[0].p3 = wrFlag; sqlite3VdbeChangeP4(v, 2, pTab->zName, P4_TRANSIENT); } if( db->mallocFailed==0 ){ #endif /* Remove either the OP_OpenWrite or OpenRead. Set the P2 ** parameter of the other to pTab->tnum. */ if( wrFlag ) aOp[1].opcode = OP_OpenWrite; aOp[1].p2 = pTab->tnum; aOp[1].p3 = iDb; /* Configure the number of columns. Configure the cursor to ** think that the table has one more column than it really ** does. An OP_Column to retrieve this imaginary column will ** always return an SQL NULL. This is useful because it means ** we can invoke OP_Column to fill in the vdbe cursors type ** and offset cache without causing any IO. */ aOp[1].p4type = P4_INT32; aOp[1].p4.i = pTab->nCol+1; aOp[3].p2 = pTab->nCol; sParse.nVar = 0; sParse.nMem = 1; sParse.nTab = 1; sqlite3VdbeMakeReady(v, &sParse); } } pBlob->iCol = iCol; pBlob->db = db; sqlite3BtreeLeaveAll(db); if( db->mallocFailed ){ goto blob_open_out; } rc = blobSeekToRow(pBlob, iRow, &zErr); if( (++nAttempt)>=SQLITE_MAX_SCHEMA_RETRY || rc!=SQLITE_SCHEMA ) break; sqlite3ParseObjectReset(&sParse); } blob_open_out: if( rc==SQLITE_OK && db->mallocFailed==0 ){ *ppBlob = (sqlite3_blob *)pBlob; }else{ if( pBlob && pBlob->pStmt ) sqlite3VdbeFinalize((Vdbe *)pBlob->pStmt); sqlite3DbFree(db, pBlob); } sqlite3ErrorWithMsg(db, rc, (zErr ? "%s" : 0), zErr); sqlite3DbFree(db, zErr); sqlite3ParseObjectReset(&sParse); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Close a blob handle that was previously created using ** sqlite3_blob_open(). */ SQLITE_API int sqlite3_blob_close(sqlite3_blob *pBlob){ Incrblob *p = (Incrblob *)pBlob; int rc; sqlite3 *db; if( p ){ sqlite3_stmt *pStmt = p->pStmt; db = p->db; sqlite3_mutex_enter(db->mutex); sqlite3DbFree(db, p); sqlite3_mutex_leave(db->mutex); rc = sqlite3_finalize(pStmt); }else{ rc = SQLITE_OK; } return rc; } /* ** Perform a read or write operation on a blob */ static int blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ){ int rc; Incrblob *p = (Incrblob *)pBlob; Vdbe *v; sqlite3 *db; if( p==0 ) return SQLITE_MISUSE_BKPT; db = p->db; sqlite3_mutex_enter(db->mutex); v = (Vdbe*)p->pStmt; if( n<0 || iOffset<0 || ((sqlite3_int64)iOffset+n)>p->nByte ){ /* Request is out of range. Return a transient error. */ rc = SQLITE_ERROR; }else if( v==0 ){ /* If there is no statement handle, then the blob-handle has ** already been invalidated. Return SQLITE_ABORT in this case. */ rc = SQLITE_ABORT; }else{ /* Call either BtreeData() or BtreePutData(). If SQLITE_ABORT is ** returned, clean-up the statement handle. */ assert( db == v->db ); sqlite3BtreeEnterCursor(p->pCsr); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK if( xCall==sqlite3BtreePutData && db->xPreUpdateCallback ){ /* If a pre-update hook is registered and this is a write cursor, ** invoke it here. ** ** TODO: The preupdate-hook is passed SQLITE_DELETE, even though this ** operation should really be an SQLITE_UPDATE. This is probably ** incorrect, but is convenient because at this point the new.* values ** are not easily obtainable. And for the sessions module, an ** SQLITE_UPDATE where the PK columns do not change is handled in the ** same way as an SQLITE_DELETE (the SQLITE_DELETE code is actually ** slightly more efficient). Since you cannot write to a PK column ** using the incremental-blob API, this works. For the sessions module ** anyhow. */ sqlite3_int64 iKey; iKey = sqlite3BtreeIntegerKey(p->pCsr); assert( v->apCsr[0]!=0 ); assert( v->apCsr[0]->eCurType==CURTYPE_BTREE ); sqlite3VdbePreUpdateHook( v, v->apCsr[0], SQLITE_DELETE, p->zDb, p->pTab, iKey, -1, p->iCol ); } #endif rc = xCall(p->pCsr, iOffset+p->iOffset, n, z); sqlite3BtreeLeaveCursor(p->pCsr); if( rc==SQLITE_ABORT ){ sqlite3VdbeFinalize(v); p->pStmt = 0; }else{ v->rc = rc; } } sqlite3Error(db, rc); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Read data from a blob handle. */ SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreePayloadChecked); } /* ** Write data to a blob handle. */ SQLITE_API int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ return blobReadWrite(pBlob, (void *)z, n, iOffset, sqlite3BtreePutData); } /* ** Query a blob handle for the size of the data. ** ** The Incrblob.nByte field is fixed for the lifetime of the Incrblob ** so no mutex is required for access. */ SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *pBlob){ Incrblob *p = (Incrblob *)pBlob; return (p && p->pStmt) ? p->nByte : 0; } /* ** Move an existing blob handle to point to a different row of the same ** database table. ** ** If an error occurs, or if the specified row does not exist or does not ** contain a blob or text value, then an error code is returned and the ** database handle error code and message set. If this happens, then all ** subsequent calls to sqlite3_blob_xxx() functions (except blob_close()) ** immediately return SQLITE_ABORT. */ SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){ int rc; Incrblob *p = (Incrblob *)pBlob; sqlite3 *db; if( p==0 ) return SQLITE_MISUSE_BKPT; db = p->db; sqlite3_mutex_enter(db->mutex); if( p->pStmt==0 ){ /* If there is no statement handle, then the blob-handle has ** already been invalidated. Return SQLITE_ABORT in this case. */ rc = SQLITE_ABORT; }else{ char *zErr; ((Vdbe*)p->pStmt)->rc = SQLITE_OK; rc = blobSeekToRow(p, iRow, &zErr); if( rc!=SQLITE_OK ){ sqlite3ErrorWithMsg(db, rc, (zErr ? "%s" : 0), zErr); sqlite3DbFree(db, zErr); } assert( rc!=SQLITE_SCHEMA ); } rc = sqlite3ApiExit(db, rc); assert( rc==SQLITE_OK || p->pStmt==0 ); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* #ifndef SQLITE_OMIT_INCRBLOB */ /************** End of vdbeblob.c ********************************************/ /************** Begin file vdbesort.c ****************************************/ /* ** 2011-07-09 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code for the VdbeSorter object, used in concert with ** a VdbeCursor to sort large numbers of keys for CREATE INDEX statements ** or by SELECT statements with ORDER BY clauses that cannot be satisfied ** using indexes and without LIMIT clauses. ** ** The VdbeSorter object implements a multi-threaded external merge sort ** algorithm that is efficient even if the number of elements being sorted ** exceeds the available memory. ** ** Here is the (internal, non-API) interface between this module and the ** rest of the SQLite system: ** ** sqlite3VdbeSorterInit() Create a new VdbeSorter object. ** ** sqlite3VdbeSorterWrite() Add a single new row to the VdbeSorter ** object. The row is a binary blob in the ** OP_MakeRecord format that contains both ** the ORDER BY key columns and result columns ** in the case of a SELECT w/ ORDER BY, or ** the complete record for an index entry ** in the case of a CREATE INDEX. ** ** sqlite3VdbeSorterRewind() Sort all content previously added. ** Position the read cursor on the ** first sorted element. ** ** sqlite3VdbeSorterNext() Advance the read cursor to the next sorted ** element. ** ** sqlite3VdbeSorterRowkey() Return the complete binary blob for the ** row currently under the read cursor. ** ** sqlite3VdbeSorterCompare() Compare the binary blob for the row ** currently under the read cursor against ** another binary blob X and report if ** X is strictly less than the read cursor. ** Used to enforce uniqueness in a ** CREATE UNIQUE INDEX statement. ** ** sqlite3VdbeSorterClose() Close the VdbeSorter object and reclaim ** all resources. ** ** sqlite3VdbeSorterReset() Refurbish the VdbeSorter for reuse. This ** is like Close() followed by Init() only ** much faster. ** ** The interfaces above must be called in a particular order. Write() can ** only occur in between Init()/Reset() and Rewind(). Next(), Rowkey(), and ** Compare() can only occur in between Rewind() and Close()/Reset(). i.e. ** ** Init() ** for each record: Write() ** Rewind() ** Rowkey()/Compare() ** Next() ** Close() ** ** Algorithm: ** ** Records passed to the sorter via calls to Write() are initially held ** unsorted in main memory. Assuming the amount of memory used never exceeds ** a threshold, when Rewind() is called the set of records is sorted using ** an in-memory merge sort. In this case, no temporary files are required ** and subsequent calls to Rowkey(), Next() and Compare() read records ** directly from main memory. ** ** If the amount of space used to store records in main memory exceeds the ** threshold, then the set of records currently in memory are sorted and ** written to a temporary file in "Packed Memory Array" (PMA) format. ** A PMA created at this point is known as a "level-0 PMA". Higher levels ** of PMAs may be created by merging existing PMAs together - for example ** merging two or more level-0 PMAs together creates a level-1 PMA. ** ** The threshold for the amount of main memory to use before flushing ** records to a PMA is roughly the same as the limit configured for the ** page-cache of the main database. Specifically, the threshold is set to ** the value returned by "PRAGMA main.page_size" multipled by ** that returned by "PRAGMA main.cache_size", in bytes. ** ** If the sorter is running in single-threaded mode, then all PMAs generated ** are appended to a single temporary file. Or, if the sorter is running in ** multi-threaded mode then up to (N+1) temporary files may be opened, where ** N is the configured number of worker threads. In this case, instead of ** sorting the records and writing the PMA to a temporary file itself, the ** calling thread usually launches a worker thread to do so. Except, if ** there are already N worker threads running, the main thread does the work ** itself. ** ** The sorter is running in multi-threaded mode if (a) the library was built ** with pre-processor symbol SQLITE_MAX_WORKER_THREADS set to a value greater ** than zero, and (b) worker threads have been enabled at runtime by calling ** "PRAGMA threads=N" with some value of N greater than 0. ** ** When Rewind() is called, any data remaining in memory is flushed to a ** final PMA. So at this point the data is stored in some number of sorted ** PMAs within temporary files on disk. ** ** If there are fewer than SORTER_MAX_MERGE_COUNT PMAs in total and the ** sorter is running in single-threaded mode, then these PMAs are merged ** incrementally as keys are retreived from the sorter by the VDBE. The ** MergeEngine object, described in further detail below, performs this ** merge. ** ** Or, if running in multi-threaded mode, then a background thread is ** launched to merge the existing PMAs. Once the background thread has ** merged T bytes of data into a single sorted PMA, the main thread ** begins reading keys from that PMA while the background thread proceeds ** with merging the next T bytes of data. And so on. ** ** Parameter T is set to half the value of the memory threshold used ** by Write() above to determine when to create a new PMA. ** ** If there are more than SORTER_MAX_MERGE_COUNT PMAs in total when ** Rewind() is called, then a hierarchy of incremental-merges is used. ** First, T bytes of data from the first SORTER_MAX_MERGE_COUNT PMAs on ** disk are merged together. Then T bytes of data from the second set, and ** so on, such that no operation ever merges more than SORTER_MAX_MERGE_COUNT ** PMAs at a time. This done is to improve locality. ** ** If running in multi-threaded mode and there are more than ** SORTER_MAX_MERGE_COUNT PMAs on disk when Rewind() is called, then more ** than one background thread may be created. Specifically, there may be ** one background thread for each temporary file on disk, and one background ** thread to merge the output of each of the others to a single PMA for ** the main thread to read from. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* ** If SQLITE_DEBUG_SORTER_THREADS is defined, this module outputs various ** messages to stderr that may be helpful in understanding the performance ** characteristics of the sorter in multi-threaded mode. */ #if 0 # define SQLITE_DEBUG_SORTER_THREADS 1 #endif /* ** Hard-coded maximum amount of data to accumulate in memory before flushing ** to a level 0 PMA. The purpose of this limit is to prevent various integer ** overflows. 512MiB. */ #define SQLITE_MAX_PMASZ (1<<29) /* ** Private objects used by the sorter */ typedef struct MergeEngine MergeEngine; /* Merge PMAs together */ typedef struct PmaReader PmaReader; /* Incrementally read one PMA */ typedef struct PmaWriter PmaWriter; /* Incrementally write one PMA */ typedef struct SorterRecord SorterRecord; /* A record being sorted */ typedef struct SortSubtask SortSubtask; /* A sub-task in the sort process */ typedef struct SorterFile SorterFile; /* Temporary file object wrapper */ typedef struct SorterList SorterList; /* In-memory list of records */ typedef struct IncrMerger IncrMerger; /* Read & merge multiple PMAs */ /* ** A container for a temp file handle and the current amount of data ** stored in the file. */ struct SorterFile { sqlite3_file *pFd; /* File handle */ i64 iEof; /* Bytes of data stored in pFd */ }; /* ** An in-memory list of objects to be sorted. ** ** If aMemory==0 then each object is allocated separately and the objects ** are connected using SorterRecord.u.pNext. If aMemory!=0 then all objects ** are stored in the aMemory[] bulk memory, one right after the other, and ** are connected using SorterRecord.u.iNext. */ struct SorterList { SorterRecord *pList; /* Linked list of records */ u8 *aMemory; /* If non-NULL, bulk memory to hold pList */ int szPMA; /* Size of pList as PMA in bytes */ }; /* ** The MergeEngine object is used to combine two or more smaller PMAs into ** one big PMA using a merge operation. Separate PMAs all need to be ** combined into one big PMA in order to be able to step through the sorted ** records in order. ** ** The aReadr[] array contains a PmaReader object for each of the PMAs being ** merged. An aReadr[] object either points to a valid key or else is at EOF. ** ("EOF" means "End Of File". When aReadr[] is at EOF there is no more data.) ** For the purposes of the paragraphs below, we assume that the array is ** actually N elements in size, where N is the smallest power of 2 greater ** to or equal to the number of PMAs being merged. The extra aReadr[] elements ** are treated as if they are empty (always at EOF). ** ** The aTree[] array is also N elements in size. The value of N is stored in ** the MergeEngine.nTree variable. ** ** The final (N/2) elements of aTree[] contain the results of comparing ** pairs of PMA keys together. Element i contains the result of ** comparing aReadr[2*i-N] and aReadr[2*i-N+1]. Whichever key is smaller, the ** aTree element is set to the index of it. ** ** For the purposes of this comparison, EOF is considered greater than any ** other key value. If the keys are equal (only possible with two EOF ** values), it doesn't matter which index is stored. ** ** The (N/4) elements of aTree[] that precede the final (N/2) described ** above contains the index of the smallest of each block of 4 PmaReaders ** And so on. So that aTree[1] contains the index of the PmaReader that ** currently points to the smallest key value. aTree[0] is unused. ** ** Example: ** ** aReadr[0] -> Banana ** aReadr[1] -> Feijoa ** aReadr[2] -> Elderberry ** aReadr[3] -> Currant ** aReadr[4] -> Grapefruit ** aReadr[5] -> Apple ** aReadr[6] -> Durian ** aReadr[7] -> EOF ** ** aTree[] = { X, 5 0, 5 0, 3, 5, 6 } ** ** The current element is "Apple" (the value of the key indicated by ** PmaReader 5). When the Next() operation is invoked, PmaReader 5 will ** be advanced to the next key in its segment. Say the next key is ** "Eggplant": ** ** aReadr[5] -> Eggplant ** ** The contents of aTree[] are updated first by comparing the new PmaReader ** 5 key to the current key of PmaReader 4 (still "Grapefruit"). The PmaReader ** 5 value is still smaller, so aTree[6] is set to 5. And so on up the tree. ** The value of PmaReader 6 - "Durian" - is now smaller than that of PmaReader ** 5, so aTree[3] is set to 6. Key 0 is smaller than key 6 (Bananafile2. And instead of using a ** background thread to prepare data for the PmaReader, with a single ** threaded IncrMerger the allocate part of pTask->file2 is "refilled" with ** keys from pMerger by the calling thread whenever the PmaReader runs out ** of data. */ struct IncrMerger { SortSubtask *pTask; /* Task that owns this merger */ MergeEngine *pMerger; /* Merge engine thread reads data from */ i64 iStartOff; /* Offset to start writing file at */ int mxSz; /* Maximum bytes of data to store */ int bEof; /* Set to true when merge is finished */ int bUseThread; /* True to use a bg thread for this object */ SorterFile aFile[2]; /* aFile[0] for reading, [1] for writing */ }; /* ** An instance of this object is used for writing a PMA. ** ** The PMA is written one record at a time. Each record is of an arbitrary ** size. But I/O is more efficient if it occurs in page-sized blocks where ** each block is aligned on a page boundary. This object caches writes to ** the PMA so that aligned, page-size blocks are written. */ struct PmaWriter { int eFWErr; /* Non-zero if in an error state */ u8 *aBuffer; /* Pointer to write buffer */ int nBuffer; /* Size of write buffer in bytes */ int iBufStart; /* First byte of buffer to write */ int iBufEnd; /* Last byte of buffer to write */ i64 iWriteOff; /* Offset of start of buffer in file */ sqlite3_file *pFd; /* File handle to write to */ }; /* ** This object is the header on a single record while that record is being ** held in memory and prior to being written out as part of a PMA. ** ** How the linked list is connected depends on how memory is being managed ** by this module. If using a separate allocation for each in-memory record ** (VdbeSorter.list.aMemory==0), then the list is always connected using the ** SorterRecord.u.pNext pointers. ** ** Or, if using the single large allocation method (VdbeSorter.list.aMemory!=0), ** then while records are being accumulated the list is linked using the ** SorterRecord.u.iNext offset. This is because the aMemory[] array may ** be sqlite3Realloc()ed while records are being accumulated. Once the VM ** has finished passing records to the sorter, or when the in-memory buffer ** is full, the list is sorted. As part of the sorting process, it is ** converted to use the SorterRecord.u.pNext pointers. See function ** vdbeSorterSort() for details. */ struct SorterRecord { int nVal; /* Size of the record in bytes */ union { SorterRecord *pNext; /* Pointer to next record in list */ int iNext; /* Offset within aMemory of next record */ } u; /* The data for the record immediately follows this header */ }; /* Return a pointer to the buffer containing the record data for SorterRecord ** object p. Should be used as if: ** ** void *SRVAL(SorterRecord *p) { return (void*)&p[1]; } */ #define SRVAL(p) ((void*)((SorterRecord*)(p) + 1)) /* Maximum number of PMAs that a single MergeEngine can merge */ #define SORTER_MAX_MERGE_COUNT 16 static int vdbeIncrSwap(IncrMerger*); static void vdbeIncrFree(IncrMerger *); /* ** Free all memory belonging to the PmaReader object passed as the ** argument. All structure fields are set to zero before returning. */ static void vdbePmaReaderClear(PmaReader *pReadr){ sqlite3_free(pReadr->aAlloc); sqlite3_free(pReadr->aBuffer); if( pReadr->aMap ) sqlite3OsUnfetch(pReadr->pFd, 0, pReadr->aMap); vdbeIncrFree(pReadr->pIncr); memset(pReadr, 0, sizeof(PmaReader)); } /* ** Read the next nByte bytes of data from the PMA p. ** If successful, set *ppOut to point to a buffer containing the data ** and return SQLITE_OK. Otherwise, if an error occurs, return an SQLite ** error code. ** ** The buffer returned in *ppOut is only valid until the ** next call to this function. */ static int vdbePmaReadBlob( PmaReader *p, /* PmaReader from which to take the blob */ int nByte, /* Bytes of data to read */ u8 **ppOut /* OUT: Pointer to buffer containing data */ ){ int iBuf; /* Offset within buffer to read from */ int nAvail; /* Bytes of data available in buffer */ if( p->aMap ){ *ppOut = &p->aMap[p->iReadOff]; p->iReadOff += nByte; return SQLITE_OK; } assert( p->aBuffer ); /* If there is no more data to be read from the buffer, read the next ** p->nBuffer bytes of data from the file into it. Or, if there are less ** than p->nBuffer bytes remaining in the PMA, read all remaining data. */ iBuf = p->iReadOff % p->nBuffer; if( iBuf==0 ){ int nRead; /* Bytes to read from disk */ int rc; /* sqlite3OsRead() return code */ /* Determine how many bytes of data to read. */ if( (p->iEof - p->iReadOff) > (i64)p->nBuffer ){ nRead = p->nBuffer; }else{ nRead = (int)(p->iEof - p->iReadOff); } assert( nRead>0 ); /* Readr data from the file. Return early if an error occurs. */ rc = sqlite3OsRead(p->pFd, p->aBuffer, nRead, p->iReadOff); assert( rc!=SQLITE_IOERR_SHORT_READ ); if( rc!=SQLITE_OK ) return rc; } nAvail = p->nBuffer - iBuf; if( nByte<=nAvail ){ /* The requested data is available in the in-memory buffer. In this ** case there is no need to make a copy of the data, just return a ** pointer into the buffer to the caller. */ *ppOut = &p->aBuffer[iBuf]; p->iReadOff += nByte; }else{ /* The requested data is not all available in the in-memory buffer. ** In this case, allocate space at p->aAlloc[] to copy the requested ** range into. Then return a copy of pointer p->aAlloc to the caller. */ int nRem; /* Bytes remaining to copy */ /* Extend the p->aAlloc[] allocation if required. */ if( p->nAllocnAlloc); while( nByte>nNew ) nNew = nNew*2; aNew = sqlite3Realloc(p->aAlloc, nNew); if( !aNew ) return SQLITE_NOMEM_BKPT; p->nAlloc = nNew; p->aAlloc = aNew; } /* Copy as much data as is available in the buffer into the start of ** p->aAlloc[]. */ memcpy(p->aAlloc, &p->aBuffer[iBuf], nAvail); p->iReadOff += nAvail; nRem = nByte - nAvail; /* The following loop copies up to p->nBuffer bytes per iteration into ** the p->aAlloc[] buffer. */ while( nRem>0 ){ int rc; /* vdbePmaReadBlob() return code */ int nCopy; /* Number of bytes to copy */ u8 *aNext; /* Pointer to buffer to copy data from */ nCopy = nRem; if( nRem>p->nBuffer ) nCopy = p->nBuffer; rc = vdbePmaReadBlob(p, nCopy, &aNext); if( rc!=SQLITE_OK ) return rc; assert( aNext!=p->aAlloc ); memcpy(&p->aAlloc[nByte - nRem], aNext, nCopy); nRem -= nCopy; } *ppOut = p->aAlloc; } return SQLITE_OK; } /* ** Read a varint from the stream of data accessed by p. Set *pnOut to ** the value read. */ static int vdbePmaReadVarint(PmaReader *p, u64 *pnOut){ int iBuf; if( p->aMap ){ p->iReadOff += sqlite3GetVarint(&p->aMap[p->iReadOff], pnOut); }else{ iBuf = p->iReadOff % p->nBuffer; if( iBuf && (p->nBuffer-iBuf)>=9 ){ p->iReadOff += sqlite3GetVarint(&p->aBuffer[iBuf], pnOut); }else{ u8 aVarint[16], *a; int i = 0, rc; do{ rc = vdbePmaReadBlob(p, 1, &a); if( rc ) return rc; aVarint[(i++)&0xf] = a[0]; }while( (a[0]&0x80)!=0 ); sqlite3GetVarint(aVarint, pnOut); } } return SQLITE_OK; } /* ** Attempt to memory map file pFile. If successful, set *pp to point to the ** new mapping and return SQLITE_OK. If the mapping is not attempted ** (because the file is too large or the VFS layer is configured not to use ** mmap), return SQLITE_OK and set *pp to NULL. ** ** Or, if an error occurs, return an SQLite error code. The final value of ** *pp is undefined in this case. */ static int vdbeSorterMapFile(SortSubtask *pTask, SorterFile *pFile, u8 **pp){ int rc = SQLITE_OK; if( pFile->iEof<=(i64)(pTask->pSorter->db->nMaxSorterMmap) ){ sqlite3_file *pFd = pFile->pFd; if( pFd->pMethods->iVersion>=3 ){ rc = sqlite3OsFetch(pFd, 0, (int)pFile->iEof, (void**)pp); testcase( rc!=SQLITE_OK ); } } return rc; } /* ** Attach PmaReader pReadr to file pFile (if it is not already attached to ** that file) and seek it to offset iOff within the file. Return SQLITE_OK ** if successful, or an SQLite error code if an error occurs. */ static int vdbePmaReaderSeek( SortSubtask *pTask, /* Task context */ PmaReader *pReadr, /* Reader whose cursor is to be moved */ SorterFile *pFile, /* Sorter file to read from */ i64 iOff /* Offset in pFile */ ){ int rc = SQLITE_OK; assert( pReadr->pIncr==0 || pReadr->pIncr->bEof==0 ); if( sqlite3FaultSim(201) ) return SQLITE_IOERR_READ; if( pReadr->aMap ){ sqlite3OsUnfetch(pReadr->pFd, 0, pReadr->aMap); pReadr->aMap = 0; } pReadr->iReadOff = iOff; pReadr->iEof = pFile->iEof; pReadr->pFd = pFile->pFd; rc = vdbeSorterMapFile(pTask, pFile, &pReadr->aMap); if( rc==SQLITE_OK && pReadr->aMap==0 ){ int pgsz = pTask->pSorter->pgsz; int iBuf = pReadr->iReadOff % pgsz; if( pReadr->aBuffer==0 ){ pReadr->aBuffer = (u8*)sqlite3Malloc(pgsz); if( pReadr->aBuffer==0 ) rc = SQLITE_NOMEM_BKPT; pReadr->nBuffer = pgsz; } if( rc==SQLITE_OK && iBuf ){ int nRead = pgsz - iBuf; if( (pReadr->iReadOff + nRead) > pReadr->iEof ){ nRead = (int)(pReadr->iEof - pReadr->iReadOff); } rc = sqlite3OsRead( pReadr->pFd, &pReadr->aBuffer[iBuf], nRead, pReadr->iReadOff ); testcase( rc!=SQLITE_OK ); } } return rc; } /* ** Advance PmaReader pReadr to the next key in its PMA. Return SQLITE_OK if ** no error occurs, or an SQLite error code if one does. */ static int vdbePmaReaderNext(PmaReader *pReadr){ int rc = SQLITE_OK; /* Return Code */ u64 nRec = 0; /* Size of record in bytes */ if( pReadr->iReadOff>=pReadr->iEof ){ IncrMerger *pIncr = pReadr->pIncr; int bEof = 1; if( pIncr ){ rc = vdbeIncrSwap(pIncr); if( rc==SQLITE_OK && pIncr->bEof==0 ){ rc = vdbePmaReaderSeek( pIncr->pTask, pReadr, &pIncr->aFile[0], pIncr->iStartOff ); bEof = 0; } } if( bEof ){ /* This is an EOF condition */ vdbePmaReaderClear(pReadr); testcase( rc!=SQLITE_OK ); return rc; } } if( rc==SQLITE_OK ){ rc = vdbePmaReadVarint(pReadr, &nRec); } if( rc==SQLITE_OK ){ pReadr->nKey = (int)nRec; rc = vdbePmaReadBlob(pReadr, (int)nRec, &pReadr->aKey); testcase( rc!=SQLITE_OK ); } return rc; } /* ** Initialize PmaReader pReadr to scan through the PMA stored in file pFile ** starting at offset iStart and ending at offset iEof-1. This function ** leaves the PmaReader pointing to the first key in the PMA (or EOF if the ** PMA is empty). ** ** If the pnByte parameter is NULL, then it is assumed that the file ** contains a single PMA, and that that PMA omits the initial length varint. */ static int vdbePmaReaderInit( SortSubtask *pTask, /* Task context */ SorterFile *pFile, /* Sorter file to read from */ i64 iStart, /* Start offset in pFile */ PmaReader *pReadr, /* PmaReader to populate */ i64 *pnByte /* IN/OUT: Increment this value by PMA size */ ){ int rc; assert( pFile->iEof>iStart ); assert( pReadr->aAlloc==0 && pReadr->nAlloc==0 ); assert( pReadr->aBuffer==0 ); assert( pReadr->aMap==0 ); rc = vdbePmaReaderSeek(pTask, pReadr, pFile, iStart); if( rc==SQLITE_OK ){ u64 nByte = 0; /* Size of PMA in bytes */ rc = vdbePmaReadVarint(pReadr, &nByte); pReadr->iEof = pReadr->iReadOff + nByte; *pnByte += nByte; } if( rc==SQLITE_OK ){ rc = vdbePmaReaderNext(pReadr); } return rc; } /* ** A version of vdbeSorterCompare() that assumes that it has already been ** determined that the first field of key1 is equal to the first field of ** key2. */ static int vdbeSorterCompareTail( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ UnpackedRecord *r2 = pTask->pUnpacked; if( *pbKey2Cached==0 ){ sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2); *pbKey2Cached = 1; } return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, r2, 1); } /* ** Compare key1 (buffer pKey1, size nKey1 bytes) with key2 (buffer pKey2, ** size nKey2 bytes). Use (pTask->pKeyInfo) for the collation sequences ** used by the comparison. Return the result of the comparison. ** ** If IN/OUT parameter *pbKey2Cached is true when this function is called, ** it is assumed that (pTask->pUnpacked) contains the unpacked version ** of key2. If it is false, (pTask->pUnpacked) is populated with the unpacked ** version of key2 and *pbKey2Cached set to true before returning. ** ** If an OOM error is encountered, (pTask->pUnpacked->error_rc) is set ** to SQLITE_NOMEM. */ static int vdbeSorterCompare( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ UnpackedRecord *r2 = pTask->pUnpacked; if( !*pbKey2Cached ){ sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2); *pbKey2Cached = 1; } return sqlite3VdbeRecordCompare(nKey1, pKey1, r2); } /* ** A specially optimized version of vdbeSorterCompare() that assumes that ** the first field of each key is a TEXT value and that the collation ** sequence to compare them with is BINARY. */ static int vdbeSorterCompareText( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ const u8 * const p1 = (const u8 * const)pKey1; const u8 * const p2 = (const u8 * const)pKey2; const u8 * const v1 = &p1[ p1[0] ]; /* Pointer to value 1 */ const u8 * const v2 = &p2[ p2[0] ]; /* Pointer to value 2 */ int n1; int n2; int res; getVarint32NR(&p1[1], n1); getVarint32NR(&p2[1], n2); res = memcmp(v1, v2, (MIN(n1, n2) - 13)/2); if( res==0 ){ res = n1 - n2; } if( res==0 ){ if( pTask->pSorter->pKeyInfo->nKeyField>1 ){ res = vdbeSorterCompareTail( pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 ); } }else{ assert( !(pTask->pSorter->pKeyInfo->aSortFlags[0]&KEYINFO_ORDER_BIGNULL) ); if( pTask->pSorter->pKeyInfo->aSortFlags[0] ){ res = res * -1; } } return res; } /* ** A specially optimized version of vdbeSorterCompare() that assumes that ** the first field of each key is an INTEGER value. */ static int vdbeSorterCompareInt( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ const u8 * const p1 = (const u8 * const)pKey1; const u8 * const p2 = (const u8 * const)pKey2; const int s1 = p1[1]; /* Left hand serial type */ const int s2 = p2[1]; /* Right hand serial type */ const u8 * const v1 = &p1[ p1[0] ]; /* Pointer to value 1 */ const u8 * const v2 = &p2[ p2[0] ]; /* Pointer to value 2 */ int res; /* Return value */ assert( (s1>0 && s1<7) || s1==8 || s1==9 ); assert( (s2>0 && s2<7) || s2==8 || s2==9 ); if( s1==s2 ){ /* The two values have the same sign. Compare using memcmp(). */ static const u8 aLen[] = {0, 1, 2, 3, 4, 6, 8, 0, 0, 0 }; const u8 n = aLen[s1]; int i; res = 0; for(i=0; i7 && s2>7 ){ res = s1 - s2; }else{ if( s2>7 ){ res = +1; }else if( s1>7 ){ res = -1; }else{ res = s1 - s2; } assert( res!=0 ); if( res>0 ){ if( *v1 & 0x80 ) res = -1; }else{ if( *v2 & 0x80 ) res = +1; } } if( res==0 ){ if( pTask->pSorter->pKeyInfo->nKeyField>1 ){ res = vdbeSorterCompareTail( pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 ); } }else if( pTask->pSorter->pKeyInfo->aSortFlags[0] ){ assert( !(pTask->pSorter->pKeyInfo->aSortFlags[0]&KEYINFO_ORDER_BIGNULL) ); res = res * -1; } return res; } /* ** Initialize the temporary index cursor just opened as a sorter cursor. ** ** Usually, the sorter module uses the value of (pCsr->pKeyInfo->nKeyField) ** to determine the number of fields that should be compared from the ** records being sorted. However, if the value passed as argument nField ** is non-zero and the sorter is able to guarantee a stable sort, nField ** is used instead. This is used when sorting records for a CREATE INDEX ** statement. In this case, keys are always delivered to the sorter in ** order of the primary key, which happens to be make up the final part ** of the records being sorted. So if the sort is stable, there is never ** any reason to compare PK fields and they can be ignored for a small ** performance boost. ** ** The sorter can guarantee a stable sort when running in single-threaded ** mode, but not in multi-threaded mode. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ SQLITE_PRIVATE int sqlite3VdbeSorterInit( sqlite3 *db, /* Database connection (for malloc()) */ int nField, /* Number of key fields in each record */ VdbeCursor *pCsr /* Cursor that holds the new sorter */ ){ int pgsz; /* Page size of main database */ int i; /* Used to iterate through aTask[] */ VdbeSorter *pSorter; /* The new sorter */ KeyInfo *pKeyInfo; /* Copy of pCsr->pKeyInfo with db==0 */ int szKeyInfo; /* Size of pCsr->pKeyInfo in bytes */ int sz; /* Size of pSorter in bytes */ int rc = SQLITE_OK; #if SQLITE_MAX_WORKER_THREADS==0 # define nWorker 0 #else int nWorker; #endif /* Initialize the upper limit on the number of worker threads */ #if SQLITE_MAX_WORKER_THREADS>0 if( sqlite3TempInMemory(db) || sqlite3GlobalConfig.bCoreMutex==0 ){ nWorker = 0; }else{ nWorker = db->aLimit[SQLITE_LIMIT_WORKER_THREADS]; } #endif /* Do not allow the total number of threads (main thread + all workers) ** to exceed the maximum merge count */ #if SQLITE_MAX_WORKER_THREADS>=SORTER_MAX_MERGE_COUNT if( nWorker>=SORTER_MAX_MERGE_COUNT ){ nWorker = SORTER_MAX_MERGE_COUNT-1; } #endif assert( pCsr->pKeyInfo ); assert( !pCsr->isEphemeral ); assert( pCsr->eCurType==CURTYPE_SORTER ); szKeyInfo = sizeof(KeyInfo) + (pCsr->pKeyInfo->nKeyField-1)*sizeof(CollSeq*); sz = sizeof(VdbeSorter) + nWorker * sizeof(SortSubtask); pSorter = (VdbeSorter*)sqlite3DbMallocZero(db, sz + szKeyInfo); pCsr->uc.pSorter = pSorter; if( pSorter==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ Btree *pBt = db->aDb[0].pBt; pSorter->pKeyInfo = pKeyInfo = (KeyInfo*)((u8*)pSorter + sz); memcpy(pKeyInfo, pCsr->pKeyInfo, szKeyInfo); pKeyInfo->db = 0; if( nField && nWorker==0 ){ pKeyInfo->nKeyField = nField; } sqlite3BtreeEnter(pBt); pSorter->pgsz = pgsz = sqlite3BtreeGetPageSize(pBt); sqlite3BtreeLeave(pBt); pSorter->nTask = nWorker + 1; pSorter->iPrev = (u8)(nWorker - 1); pSorter->bUseThreads = (pSorter->nTask>1); pSorter->db = db; for(i=0; inTask; i++){ SortSubtask *pTask = &pSorter->aTask[i]; pTask->pSorter = pSorter; } if( !sqlite3TempInMemory(db) ){ i64 mxCache; /* Cache size in bytes*/ u32 szPma = sqlite3GlobalConfig.szPma; pSorter->mnPmaSize = szPma * pgsz; mxCache = db->aDb[0].pSchema->cache_size; if( mxCache<0 ){ /* A negative cache-size value C indicates that the cache is abs(C) ** KiB in size. */ mxCache = mxCache * -1024; }else{ mxCache = mxCache * pgsz; } mxCache = MIN(mxCache, SQLITE_MAX_PMASZ); pSorter->mxPmaSize = MAX(pSorter->mnPmaSize, (int)mxCache); /* Avoid large memory allocations if the application has requested ** SQLITE_CONFIG_SMALL_MALLOC. */ if( sqlite3GlobalConfig.bSmallMalloc==0 ){ assert( pSorter->iMemory==0 ); pSorter->nMemory = pgsz; pSorter->list.aMemory = (u8*)sqlite3Malloc(pgsz); if( !pSorter->list.aMemory ) rc = SQLITE_NOMEM_BKPT; } } if( pKeyInfo->nAllField<13 && (pKeyInfo->aColl[0]==0 || pKeyInfo->aColl[0]==db->pDfltColl) && (pKeyInfo->aSortFlags[0] & KEYINFO_ORDER_BIGNULL)==0 ){ pSorter->typeMask = SORTER_TYPE_INTEGER | SORTER_TYPE_TEXT; } } return rc; } #undef nWorker /* Defined at the top of this function */ /* ** Free the list of sorted records starting at pRecord. */ static void vdbeSorterRecordFree(sqlite3 *db, SorterRecord *pRecord){ SorterRecord *p; SorterRecord *pNext; for(p=pRecord; p; p=pNext){ pNext = p->u.pNext; sqlite3DbFree(db, p); } } /* ** Free all resources owned by the object indicated by argument pTask. All ** fields of *pTask are zeroed before returning. */ static void vdbeSortSubtaskCleanup(sqlite3 *db, SortSubtask *pTask){ sqlite3DbFree(db, pTask->pUnpacked); #if SQLITE_MAX_WORKER_THREADS>0 /* pTask->list.aMemory can only be non-zero if it was handed memory ** from the main thread. That only occurs SQLITE_MAX_WORKER_THREADS>0 */ if( pTask->list.aMemory ){ sqlite3_free(pTask->list.aMemory); }else #endif { assert( pTask->list.aMemory==0 ); vdbeSorterRecordFree(0, pTask->list.pList); } if( pTask->file.pFd ){ sqlite3OsCloseFree(pTask->file.pFd); } if( pTask->file2.pFd ){ sqlite3OsCloseFree(pTask->file2.pFd); } memset(pTask, 0, sizeof(SortSubtask)); } #ifdef SQLITE_DEBUG_SORTER_THREADS static void vdbeSorterWorkDebug(SortSubtask *pTask, const char *zEvent){ i64 t; int iTask = (pTask - pTask->pSorter->aTask); sqlite3OsCurrentTimeInt64(pTask->pSorter->db->pVfs, &t); fprintf(stderr, "%lld:%d %s\n", t, iTask, zEvent); } static void vdbeSorterRewindDebug(const char *zEvent){ i64 t = 0; sqlite3_vfs *pVfs = sqlite3_vfs_find(0); if( ALWAYS(pVfs) ) sqlite3OsCurrentTimeInt64(pVfs, &t); fprintf(stderr, "%lld:X %s\n", t, zEvent); } static void vdbeSorterPopulateDebug( SortSubtask *pTask, const char *zEvent ){ i64 t; int iTask = (pTask - pTask->pSorter->aTask); sqlite3OsCurrentTimeInt64(pTask->pSorter->db->pVfs, &t); fprintf(stderr, "%lld:bg%d %s\n", t, iTask, zEvent); } static void vdbeSorterBlockDebug( SortSubtask *pTask, int bBlocked, const char *zEvent ){ if( bBlocked ){ i64 t; sqlite3OsCurrentTimeInt64(pTask->pSorter->db->pVfs, &t); fprintf(stderr, "%lld:main %s\n", t, zEvent); } } #else # define vdbeSorterWorkDebug(x,y) # define vdbeSorterRewindDebug(y) # define vdbeSorterPopulateDebug(x,y) # define vdbeSorterBlockDebug(x,y,z) #endif #if SQLITE_MAX_WORKER_THREADS>0 /* ** Join thread pTask->thread. */ static int vdbeSorterJoinThread(SortSubtask *pTask){ int rc = SQLITE_OK; if( pTask->pThread ){ #ifdef SQLITE_DEBUG_SORTER_THREADS int bDone = pTask->bDone; #endif void *pRet = SQLITE_INT_TO_PTR(SQLITE_ERROR); vdbeSorterBlockDebug(pTask, !bDone, "enter"); (void)sqlite3ThreadJoin(pTask->pThread, &pRet); vdbeSorterBlockDebug(pTask, !bDone, "exit"); rc = SQLITE_PTR_TO_INT(pRet); assert( pTask->bDone==1 ); pTask->bDone = 0; pTask->pThread = 0; } return rc; } /* ** Launch a background thread to run xTask(pIn). */ static int vdbeSorterCreateThread( SortSubtask *pTask, /* Thread will use this task object */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ assert( pTask->pThread==0 && pTask->bDone==0 ); return sqlite3ThreadCreate(&pTask->pThread, xTask, pIn); } /* ** Join all outstanding threads launched by SorterWrite() to create ** level-0 PMAs. */ static int vdbeSorterJoinAll(VdbeSorter *pSorter, int rcin){ int rc = rcin; int i; /* This function is always called by the main user thread. ** ** If this function is being called after SorterRewind() has been called, ** it is possible that thread pSorter->aTask[pSorter->nTask-1].pThread ** is currently attempt to join one of the other threads. To avoid a race ** condition where this thread also attempts to join the same object, join ** thread pSorter->aTask[pSorter->nTask-1].pThread first. */ for(i=pSorter->nTask-1; i>=0; i--){ SortSubtask *pTask = &pSorter->aTask[i]; int rc2 = vdbeSorterJoinThread(pTask); if( rc==SQLITE_OK ) rc = rc2; } return rc; } #else # define vdbeSorterJoinAll(x,rcin) (rcin) # define vdbeSorterJoinThread(pTask) SQLITE_OK #endif /* ** Allocate a new MergeEngine object capable of handling up to ** nReader PmaReader inputs. ** ** nReader is automatically rounded up to the next power of two. ** nReader may not exceed SORTER_MAX_MERGE_COUNT even after rounding up. */ static MergeEngine *vdbeMergeEngineNew(int nReader){ int N = 2; /* Smallest power of two >= nReader */ int nByte; /* Total bytes of space to allocate */ MergeEngine *pNew; /* Pointer to allocated object to return */ assert( nReader<=SORTER_MAX_MERGE_COUNT ); while( NnTree = N; pNew->pTask = 0; pNew->aReadr = (PmaReader*)&pNew[1]; pNew->aTree = (int*)&pNew->aReadr[N]; } return pNew; } /* ** Free the MergeEngine object passed as the only argument. */ static void vdbeMergeEngineFree(MergeEngine *pMerger){ int i; if( pMerger ){ for(i=0; inTree; i++){ vdbePmaReaderClear(&pMerger->aReadr[i]); } } sqlite3_free(pMerger); } /* ** Free all resources associated with the IncrMerger object indicated by ** the first argument. */ static void vdbeIncrFree(IncrMerger *pIncr){ if( pIncr ){ #if SQLITE_MAX_WORKER_THREADS>0 if( pIncr->bUseThread ){ vdbeSorterJoinThread(pIncr->pTask); if( pIncr->aFile[0].pFd ) sqlite3OsCloseFree(pIncr->aFile[0].pFd); if( pIncr->aFile[1].pFd ) sqlite3OsCloseFree(pIncr->aFile[1].pFd); } #endif vdbeMergeEngineFree(pIncr->pMerger); sqlite3_free(pIncr); } } /* ** Reset a sorting cursor back to its original empty state. */ SQLITE_PRIVATE void sqlite3VdbeSorterReset(sqlite3 *db, VdbeSorter *pSorter){ int i; (void)vdbeSorterJoinAll(pSorter, SQLITE_OK); assert( pSorter->bUseThreads || pSorter->pReader==0 ); #if SQLITE_MAX_WORKER_THREADS>0 if( pSorter->pReader ){ vdbePmaReaderClear(pSorter->pReader); sqlite3DbFree(db, pSorter->pReader); pSorter->pReader = 0; } #endif vdbeMergeEngineFree(pSorter->pMerger); pSorter->pMerger = 0; for(i=0; inTask; i++){ SortSubtask *pTask = &pSorter->aTask[i]; vdbeSortSubtaskCleanup(db, pTask); pTask->pSorter = pSorter; } if( pSorter->list.aMemory==0 ){ vdbeSorterRecordFree(0, pSorter->list.pList); } pSorter->list.pList = 0; pSorter->list.szPMA = 0; pSorter->bUsePMA = 0; pSorter->iMemory = 0; pSorter->mxKeysize = 0; sqlite3DbFree(db, pSorter->pUnpacked); pSorter->pUnpacked = 0; } /* ** Free any cursor components allocated by sqlite3VdbeSorterXXX routines. */ SQLITE_PRIVATE void sqlite3VdbeSorterClose(sqlite3 *db, VdbeCursor *pCsr){ VdbeSorter *pSorter; assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; if( pSorter ){ sqlite3VdbeSorterReset(db, pSorter); sqlite3_free(pSorter->list.aMemory); sqlite3DbFree(db, pSorter); pCsr->uc.pSorter = 0; } } #if SQLITE_MAX_MMAP_SIZE>0 /* ** The first argument is a file-handle open on a temporary file. The file ** is guaranteed to be nByte bytes or smaller in size. This function ** attempts to extend the file to nByte bytes in size and to ensure that ** the VFS has memory mapped it. ** ** Whether or not the file does end up memory mapped of course depends on ** the specific VFS implementation. */ static void vdbeSorterExtendFile(sqlite3 *db, sqlite3_file *pFd, i64 nByte){ if( nByte<=(i64)(db->nMaxSorterMmap) && pFd->pMethods->iVersion>=3 ){ void *p = 0; int chunksize = 4*1024; sqlite3OsFileControlHint(pFd, SQLITE_FCNTL_CHUNK_SIZE, &chunksize); sqlite3OsFileControlHint(pFd, SQLITE_FCNTL_SIZE_HINT, &nByte); sqlite3OsFetch(pFd, 0, (int)nByte, &p); if( p ) sqlite3OsUnfetch(pFd, 0, p); } } #else # define vdbeSorterExtendFile(x,y,z) #endif /* ** Allocate space for a file-handle and open a temporary file. If successful, ** set *ppFd to point to the malloc'd file-handle and return SQLITE_OK. ** Otherwise, set *ppFd to 0 and return an SQLite error code. */ static int vdbeSorterOpenTempFile( sqlite3 *db, /* Database handle doing sort */ i64 nExtend, /* Attempt to extend file to this size */ sqlite3_file **ppFd ){ int rc; if( sqlite3FaultSim(202) ) return SQLITE_IOERR_ACCESS; rc = sqlite3OsOpenMalloc(db->pVfs, 0, ppFd, SQLITE_OPEN_TEMP_JOURNAL | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE, &rc ); if( rc==SQLITE_OK ){ i64 max = SQLITE_MAX_MMAP_SIZE; sqlite3OsFileControlHint(*ppFd, SQLITE_FCNTL_MMAP_SIZE, (void*)&max); if( nExtend>0 ){ vdbeSorterExtendFile(db, *ppFd, nExtend); } } return rc; } /* ** If it has not already been allocated, allocate the UnpackedRecord ** structure at pTask->pUnpacked. Return SQLITE_OK if successful (or ** if no allocation was required), or SQLITE_NOMEM otherwise. */ static int vdbeSortAllocUnpacked(SortSubtask *pTask){ if( pTask->pUnpacked==0 ){ pTask->pUnpacked = sqlite3VdbeAllocUnpackedRecord(pTask->pSorter->pKeyInfo); if( pTask->pUnpacked==0 ) return SQLITE_NOMEM_BKPT; pTask->pUnpacked->nField = pTask->pSorter->pKeyInfo->nKeyField; pTask->pUnpacked->errCode = 0; } return SQLITE_OK; } /* ** Merge the two sorted lists p1 and p2 into a single list. */ static SorterRecord *vdbeSorterMerge( SortSubtask *pTask, /* Calling thread context */ SorterRecord *p1, /* First list to merge */ SorterRecord *p2 /* Second list to merge */ ){ SorterRecord *pFinal = 0; SorterRecord **pp = &pFinal; int bCached = 0; assert( p1!=0 && p2!=0 ); for(;;){ int res; res = pTask->xCompare( pTask, &bCached, SRVAL(p1), p1->nVal, SRVAL(p2), p2->nVal ); if( res<=0 ){ *pp = p1; pp = &p1->u.pNext; p1 = p1->u.pNext; if( p1==0 ){ *pp = p2; break; } }else{ *pp = p2; pp = &p2->u.pNext; p2 = p2->u.pNext; bCached = 0; if( p2==0 ){ *pp = p1; break; } } } return pFinal; } /* ** Return the SorterCompare function to compare values collected by the ** sorter object passed as the only argument. */ static SorterCompare vdbeSorterGetCompare(VdbeSorter *p){ if( p->typeMask==SORTER_TYPE_INTEGER ){ return vdbeSorterCompareInt; }else if( p->typeMask==SORTER_TYPE_TEXT ){ return vdbeSorterCompareText; } return vdbeSorterCompare; } /* ** Sort the linked list of records headed at pTask->pList. Return ** SQLITE_OK if successful, or an SQLite error code (i.e. SQLITE_NOMEM) if ** an error occurs. */ static int vdbeSorterSort(SortSubtask *pTask, SorterList *pList){ int i; SorterRecord *p; int rc; SorterRecord *aSlot[64]; rc = vdbeSortAllocUnpacked(pTask); if( rc!=SQLITE_OK ) return rc; p = pList->pList; pTask->xCompare = vdbeSorterGetCompare(pTask->pSorter); memset(aSlot, 0, sizeof(aSlot)); while( p ){ SorterRecord *pNext; if( pList->aMemory ){ if( (u8*)p==pList->aMemory ){ pNext = 0; }else{ assert( p->u.iNextaMemory) ); pNext = (SorterRecord*)&pList->aMemory[p->u.iNext]; } }else{ pNext = p->u.pNext; } p->u.pNext = 0; for(i=0; aSlot[i]; i++){ p = vdbeSorterMerge(pTask, p, aSlot[i]); aSlot[i] = 0; } aSlot[i] = p; p = pNext; } p = 0; for(i=0; ipList = p; assert( pTask->pUnpacked->errCode==SQLITE_OK || pTask->pUnpacked->errCode==SQLITE_NOMEM ); return pTask->pUnpacked->errCode; } /* ** Initialize a PMA-writer object. */ static void vdbePmaWriterInit( sqlite3_file *pFd, /* File handle to write to */ PmaWriter *p, /* Object to populate */ int nBuf, /* Buffer size */ i64 iStart /* Offset of pFd to begin writing at */ ){ memset(p, 0, sizeof(PmaWriter)); p->aBuffer = (u8*)sqlite3Malloc(nBuf); if( !p->aBuffer ){ p->eFWErr = SQLITE_NOMEM_BKPT; }else{ p->iBufEnd = p->iBufStart = (iStart % nBuf); p->iWriteOff = iStart - p->iBufStart; p->nBuffer = nBuf; p->pFd = pFd; } } /* ** Write nData bytes of data to the PMA. Return SQLITE_OK ** if successful, or an SQLite error code if an error occurs. */ static void vdbePmaWriteBlob(PmaWriter *p, u8 *pData, int nData){ int nRem = nData; while( nRem>0 && p->eFWErr==0 ){ int nCopy = nRem; if( nCopy>(p->nBuffer - p->iBufEnd) ){ nCopy = p->nBuffer - p->iBufEnd; } memcpy(&p->aBuffer[p->iBufEnd], &pData[nData-nRem], nCopy); p->iBufEnd += nCopy; if( p->iBufEnd==p->nBuffer ){ p->eFWErr = sqlite3OsWrite(p->pFd, &p->aBuffer[p->iBufStart], p->iBufEnd - p->iBufStart, p->iWriteOff + p->iBufStart ); p->iBufStart = p->iBufEnd = 0; p->iWriteOff += p->nBuffer; } assert( p->iBufEndnBuffer ); nRem -= nCopy; } } /* ** Flush any buffered data to disk and clean up the PMA-writer object. ** The results of using the PMA-writer after this call are undefined. ** Return SQLITE_OK if flushing the buffered data succeeds or is not ** required. Otherwise, return an SQLite error code. ** ** Before returning, set *piEof to the offset immediately following the ** last byte written to the file. */ static int vdbePmaWriterFinish(PmaWriter *p, i64 *piEof){ int rc; if( p->eFWErr==0 && ALWAYS(p->aBuffer) && p->iBufEnd>p->iBufStart ){ p->eFWErr = sqlite3OsWrite(p->pFd, &p->aBuffer[p->iBufStart], p->iBufEnd - p->iBufStart, p->iWriteOff + p->iBufStart ); } *piEof = (p->iWriteOff + p->iBufEnd); sqlite3_free(p->aBuffer); rc = p->eFWErr; memset(p, 0, sizeof(PmaWriter)); return rc; } /* ** Write value iVal encoded as a varint to the PMA. Return ** SQLITE_OK if successful, or an SQLite error code if an error occurs. */ static void vdbePmaWriteVarint(PmaWriter *p, u64 iVal){ int nByte; u8 aByte[10]; nByte = sqlite3PutVarint(aByte, iVal); vdbePmaWriteBlob(p, aByte, nByte); } /* ** Write the current contents of in-memory linked-list pList to a level-0 ** PMA in the temp file belonging to sub-task pTask. Return SQLITE_OK if ** successful, or an SQLite error code otherwise. ** ** The format of a PMA is: ** ** * A varint. This varint contains the total number of bytes of content ** in the PMA (not including the varint itself). ** ** * One or more records packed end-to-end in order of ascending keys. ** Each record consists of a varint followed by a blob of data (the ** key). The varint is the number of bytes in the blob of data. */ static int vdbeSorterListToPMA(SortSubtask *pTask, SorterList *pList){ sqlite3 *db = pTask->pSorter->db; int rc = SQLITE_OK; /* Return code */ PmaWriter writer; /* Object used to write to the file */ #ifdef SQLITE_DEBUG /* Set iSz to the expected size of file pTask->file after writing the PMA. ** This is used by an assert() statement at the end of this function. */ i64 iSz = pList->szPMA + sqlite3VarintLen(pList->szPMA) + pTask->file.iEof; #endif vdbeSorterWorkDebug(pTask, "enter"); memset(&writer, 0, sizeof(PmaWriter)); assert( pList->szPMA>0 ); /* If the first temporary PMA file has not been opened, open it now. */ if( pTask->file.pFd==0 ){ rc = vdbeSorterOpenTempFile(db, 0, &pTask->file.pFd); assert( rc!=SQLITE_OK || pTask->file.pFd ); assert( pTask->file.iEof==0 ); assert( pTask->nPMA==0 ); } /* Try to get the file to memory map */ if( rc==SQLITE_OK ){ vdbeSorterExtendFile(db, pTask->file.pFd, pTask->file.iEof+pList->szPMA+9); } /* Sort the list */ if( rc==SQLITE_OK ){ rc = vdbeSorterSort(pTask, pList); } if( rc==SQLITE_OK ){ SorterRecord *p; SorterRecord *pNext = 0; vdbePmaWriterInit(pTask->file.pFd, &writer, pTask->pSorter->pgsz, pTask->file.iEof); pTask->nPMA++; vdbePmaWriteVarint(&writer, pList->szPMA); for(p=pList->pList; p; p=pNext){ pNext = p->u.pNext; vdbePmaWriteVarint(&writer, p->nVal); vdbePmaWriteBlob(&writer, SRVAL(p), p->nVal); if( pList->aMemory==0 ) sqlite3_free(p); } pList->pList = p; rc = vdbePmaWriterFinish(&writer, &pTask->file.iEof); } vdbeSorterWorkDebug(pTask, "exit"); assert( rc!=SQLITE_OK || pList->pList==0 ); assert( rc!=SQLITE_OK || pTask->file.iEof==iSz ); return rc; } /* ** Advance the MergeEngine to its next entry. ** Set *pbEof to true there is no next entry because ** the MergeEngine has reached the end of all its inputs. ** ** Return SQLITE_OK if successful or an error code if an error occurs. */ static int vdbeMergeEngineStep( MergeEngine *pMerger, /* The merge engine to advance to the next row */ int *pbEof /* Set TRUE at EOF. Set false for more content */ ){ int rc; int iPrev = pMerger->aTree[1];/* Index of PmaReader to advance */ SortSubtask *pTask = pMerger->pTask; /* Advance the current PmaReader */ rc = vdbePmaReaderNext(&pMerger->aReadr[iPrev]); /* Update contents of aTree[] */ if( rc==SQLITE_OK ){ int i; /* Index of aTree[] to recalculate */ PmaReader *pReadr1; /* First PmaReader to compare */ PmaReader *pReadr2; /* Second PmaReader to compare */ int bCached = 0; /* Find the first two PmaReaders to compare. The one that was just ** advanced (iPrev) and the one next to it in the array. */ pReadr1 = &pMerger->aReadr[(iPrev & 0xFFFE)]; pReadr2 = &pMerger->aReadr[(iPrev | 0x0001)]; for(i=(pMerger->nTree+iPrev)/2; i>0; i=i/2){ /* Compare pReadr1 and pReadr2. Store the result in variable iRes. */ int iRes; if( pReadr1->pFd==0 ){ iRes = +1; }else if( pReadr2->pFd==0 ){ iRes = -1; }else{ iRes = pTask->xCompare(pTask, &bCached, pReadr1->aKey, pReadr1->nKey, pReadr2->aKey, pReadr2->nKey ); } /* If pReadr1 contained the smaller value, set aTree[i] to its index. ** Then set pReadr2 to the next PmaReader to compare to pReadr1. In this ** case there is no cache of pReadr2 in pTask->pUnpacked, so set ** pKey2 to point to the record belonging to pReadr2. ** ** Alternatively, if pReadr2 contains the smaller of the two values, ** set aTree[i] to its index and update pReadr1. If vdbeSorterCompare() ** was actually called above, then pTask->pUnpacked now contains ** a value equivalent to pReadr2. So set pKey2 to NULL to prevent ** vdbeSorterCompare() from decoding pReadr2 again. ** ** If the two values were equal, then the value from the oldest ** PMA should be considered smaller. The VdbeSorter.aReadr[] array ** is sorted from oldest to newest, so pReadr1 contains older values ** than pReadr2 iff (pReadr1aTree[i] = (int)(pReadr1 - pMerger->aReadr); pReadr2 = &pMerger->aReadr[ pMerger->aTree[i ^ 0x0001] ]; bCached = 0; }else{ if( pReadr1->pFd ) bCached = 0; pMerger->aTree[i] = (int)(pReadr2 - pMerger->aReadr); pReadr1 = &pMerger->aReadr[ pMerger->aTree[i ^ 0x0001] ]; } } *pbEof = (pMerger->aReadr[pMerger->aTree[1]].pFd==0); } return (rc==SQLITE_OK ? pTask->pUnpacked->errCode : rc); } #if SQLITE_MAX_WORKER_THREADS>0 /* ** The main routine for background threads that write level-0 PMAs. */ static void *vdbeSorterFlushThread(void *pCtx){ SortSubtask *pTask = (SortSubtask*)pCtx; int rc; /* Return code */ assert( pTask->bDone==0 ); rc = vdbeSorterListToPMA(pTask, &pTask->list); pTask->bDone = 1; return SQLITE_INT_TO_PTR(rc); } #endif /* SQLITE_MAX_WORKER_THREADS>0 */ /* ** Flush the current contents of VdbeSorter.list to a new PMA, possibly ** using a background thread. */ static int vdbeSorterFlushPMA(VdbeSorter *pSorter){ #if SQLITE_MAX_WORKER_THREADS==0 pSorter->bUsePMA = 1; return vdbeSorterListToPMA(&pSorter->aTask[0], &pSorter->list); #else int rc = SQLITE_OK; int i; SortSubtask *pTask = 0; /* Thread context used to create new PMA */ int nWorker = (pSorter->nTask-1); /* Set the flag to indicate that at least one PMA has been written. ** Or will be, anyhow. */ pSorter->bUsePMA = 1; /* Select a sub-task to sort and flush the current list of in-memory ** records to disk. If the sorter is running in multi-threaded mode, ** round-robin between the first (pSorter->nTask-1) tasks. Except, if ** the background thread from a sub-tasks previous turn is still running, ** skip it. If the first (pSorter->nTask-1) sub-tasks are all still busy, ** fall back to using the final sub-task. The first (pSorter->nTask-1) ** sub-tasks are prefered as they use background threads - the final ** sub-task uses the main thread. */ for(i=0; iiPrev + i + 1) % nWorker; pTask = &pSorter->aTask[iTest]; if( pTask->bDone ){ rc = vdbeSorterJoinThread(pTask); } if( rc!=SQLITE_OK || pTask->pThread==0 ) break; } if( rc==SQLITE_OK ){ if( i==nWorker ){ /* Use the foreground thread for this operation */ rc = vdbeSorterListToPMA(&pSorter->aTask[nWorker], &pSorter->list); }else{ /* Launch a background thread for this operation */ u8 *aMem; void *pCtx; assert( pTask!=0 ); assert( pTask->pThread==0 && pTask->bDone==0 ); assert( pTask->list.pList==0 ); assert( pTask->list.aMemory==0 || pSorter->list.aMemory!=0 ); aMem = pTask->list.aMemory; pCtx = (void*)pTask; pSorter->iPrev = (u8)(pTask - pSorter->aTask); pTask->list = pSorter->list; pSorter->list.pList = 0; pSorter->list.szPMA = 0; if( aMem ){ pSorter->list.aMemory = aMem; pSorter->nMemory = sqlite3MallocSize(aMem); }else if( pSorter->list.aMemory ){ pSorter->list.aMemory = sqlite3Malloc(pSorter->nMemory); if( !pSorter->list.aMemory ) return SQLITE_NOMEM_BKPT; } rc = vdbeSorterCreateThread(pTask, vdbeSorterFlushThread, pCtx); } } return rc; #endif /* SQLITE_MAX_WORKER_THREADS!=0 */ } /* ** Add a record to the sorter. */ SQLITE_PRIVATE int sqlite3VdbeSorterWrite( const VdbeCursor *pCsr, /* Sorter cursor */ Mem *pVal /* Memory cell containing record */ ){ VdbeSorter *pSorter; int rc = SQLITE_OK; /* Return Code */ SorterRecord *pNew; /* New list element */ int bFlush; /* True to flush contents of memory to PMA */ int nReq; /* Bytes of memory required */ int nPMA; /* Bytes of PMA space required */ int t; /* serial type of first record field */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; getVarint32NR((const u8*)&pVal->z[1], t); if( t>0 && t<10 && t!=7 ){ pSorter->typeMask &= SORTER_TYPE_INTEGER; }else if( t>10 && (t & 0x01) ){ pSorter->typeMask &= SORTER_TYPE_TEXT; }else{ pSorter->typeMask = 0; } assert( pSorter ); /* Figure out whether or not the current contents of memory should be ** flushed to a PMA before continuing. If so, do so. ** ** If using the single large allocation mode (pSorter->aMemory!=0), then ** flush the contents of memory to a new PMA if (a) at least one value is ** already in memory and (b) the new value will not fit in memory. ** ** Or, if using separate allocations for each record, flush the contents ** of memory to a PMA if either of the following are true: ** ** * The total memory allocated for the in-memory list is greater ** than (page-size * cache-size), or ** ** * The total memory allocated for the in-memory list is greater ** than (page-size * 10) and sqlite3HeapNearlyFull() returns true. */ nReq = pVal->n + sizeof(SorterRecord); nPMA = pVal->n + sqlite3VarintLen(pVal->n); if( pSorter->mxPmaSize ){ if( pSorter->list.aMemory ){ bFlush = pSorter->iMemory && (pSorter->iMemory+nReq) > pSorter->mxPmaSize; }else{ bFlush = ( (pSorter->list.szPMA > pSorter->mxPmaSize) || (pSorter->list.szPMA > pSorter->mnPmaSize && sqlite3HeapNearlyFull()) ); } if( bFlush ){ rc = vdbeSorterFlushPMA(pSorter); pSorter->list.szPMA = 0; pSorter->iMemory = 0; assert( rc!=SQLITE_OK || pSorter->list.pList==0 ); } } pSorter->list.szPMA += nPMA; if( nPMA>pSorter->mxKeysize ){ pSorter->mxKeysize = nPMA; } if( pSorter->list.aMemory ){ int nMin = pSorter->iMemory + nReq; if( nMin>pSorter->nMemory ){ u8 *aNew; sqlite3_int64 nNew = 2 * (sqlite3_int64)pSorter->nMemory; int iListOff = -1; if( pSorter->list.pList ){ iListOff = (u8*)pSorter->list.pList - pSorter->list.aMemory; } while( nNew < nMin ) nNew = nNew*2; if( nNew > pSorter->mxPmaSize ) nNew = pSorter->mxPmaSize; if( nNew < nMin ) nNew = nMin; aNew = sqlite3Realloc(pSorter->list.aMemory, nNew); if( !aNew ) return SQLITE_NOMEM_BKPT; if( iListOff>=0 ){ pSorter->list.pList = (SorterRecord*)&aNew[iListOff]; } pSorter->list.aMemory = aNew; pSorter->nMemory = nNew; } pNew = (SorterRecord*)&pSorter->list.aMemory[pSorter->iMemory]; pSorter->iMemory += ROUND8(nReq); if( pSorter->list.pList ){ pNew->u.iNext = (int)((u8*)(pSorter->list.pList) - pSorter->list.aMemory); } }else{ pNew = (SorterRecord *)sqlite3Malloc(nReq); if( pNew==0 ){ return SQLITE_NOMEM_BKPT; } pNew->u.pNext = pSorter->list.pList; } memcpy(SRVAL(pNew), pVal->z, pVal->n); pNew->nVal = pVal->n; pSorter->list.pList = pNew; return rc; } /* ** Read keys from pIncr->pMerger and populate pIncr->aFile[1]. The format ** of the data stored in aFile[1] is the same as that used by regular PMAs, ** except that the number-of-bytes varint is omitted from the start. */ static int vdbeIncrPopulate(IncrMerger *pIncr){ int rc = SQLITE_OK; int rc2; i64 iStart = pIncr->iStartOff; SorterFile *pOut = &pIncr->aFile[1]; SortSubtask *pTask = pIncr->pTask; MergeEngine *pMerger = pIncr->pMerger; PmaWriter writer; assert( pIncr->bEof==0 ); vdbeSorterPopulateDebug(pTask, "enter"); vdbePmaWriterInit(pOut->pFd, &writer, pTask->pSorter->pgsz, iStart); while( rc==SQLITE_OK ){ int dummy; PmaReader *pReader = &pMerger->aReadr[ pMerger->aTree[1] ]; int nKey = pReader->nKey; i64 iEof = writer.iWriteOff + writer.iBufEnd; /* Check if the output file is full or if the input has been exhausted. ** In either case exit the loop. */ if( pReader->pFd==0 ) break; if( (iEof + nKey + sqlite3VarintLen(nKey))>(iStart + pIncr->mxSz) ) break; /* Write the next key to the output. */ vdbePmaWriteVarint(&writer, nKey); vdbePmaWriteBlob(&writer, pReader->aKey, nKey); assert( pIncr->pMerger->pTask==pTask ); rc = vdbeMergeEngineStep(pIncr->pMerger, &dummy); } rc2 = vdbePmaWriterFinish(&writer, &pOut->iEof); if( rc==SQLITE_OK ) rc = rc2; vdbeSorterPopulateDebug(pTask, "exit"); return rc; } #if SQLITE_MAX_WORKER_THREADS>0 /* ** The main routine for background threads that populate aFile[1] of ** multi-threaded IncrMerger objects. */ static void *vdbeIncrPopulateThread(void *pCtx){ IncrMerger *pIncr = (IncrMerger*)pCtx; void *pRet = SQLITE_INT_TO_PTR( vdbeIncrPopulate(pIncr) ); pIncr->pTask->bDone = 1; return pRet; } /* ** Launch a background thread to populate aFile[1] of pIncr. */ static int vdbeIncrBgPopulate(IncrMerger *pIncr){ void *p = (void*)pIncr; assert( pIncr->bUseThread ); return vdbeSorterCreateThread(pIncr->pTask, vdbeIncrPopulateThread, p); } #endif /* ** This function is called when the PmaReader corresponding to pIncr has ** finished reading the contents of aFile[0]. Its purpose is to "refill" ** aFile[0] such that the PmaReader should start rereading it from the ** beginning. ** ** For single-threaded objects, this is accomplished by literally reading ** keys from pIncr->pMerger and repopulating aFile[0]. ** ** For multi-threaded objects, all that is required is to wait until the ** background thread is finished (if it is not already) and then swap ** aFile[0] and aFile[1] in place. If the contents of pMerger have not ** been exhausted, this function also launches a new background thread ** to populate the new aFile[1]. ** ** SQLITE_OK is returned on success, or an SQLite error code otherwise. */ static int vdbeIncrSwap(IncrMerger *pIncr){ int rc = SQLITE_OK; #if SQLITE_MAX_WORKER_THREADS>0 if( pIncr->bUseThread ){ rc = vdbeSorterJoinThread(pIncr->pTask); if( rc==SQLITE_OK ){ SorterFile f0 = pIncr->aFile[0]; pIncr->aFile[0] = pIncr->aFile[1]; pIncr->aFile[1] = f0; } if( rc==SQLITE_OK ){ if( pIncr->aFile[0].iEof==pIncr->iStartOff ){ pIncr->bEof = 1; }else{ rc = vdbeIncrBgPopulate(pIncr); } } }else #endif { rc = vdbeIncrPopulate(pIncr); pIncr->aFile[0] = pIncr->aFile[1]; if( pIncr->aFile[0].iEof==pIncr->iStartOff ){ pIncr->bEof = 1; } } return rc; } /* ** Allocate and return a new IncrMerger object to read data from pMerger. ** ** If an OOM condition is encountered, return NULL. In this case free the ** pMerger argument before returning. */ static int vdbeIncrMergerNew( SortSubtask *pTask, /* The thread that will be using the new IncrMerger */ MergeEngine *pMerger, /* The MergeEngine that the IncrMerger will control */ IncrMerger **ppOut /* Write the new IncrMerger here */ ){ int rc = SQLITE_OK; IncrMerger *pIncr = *ppOut = (IncrMerger*) (sqlite3FaultSim(100) ? 0 : sqlite3MallocZero(sizeof(*pIncr))); if( pIncr ){ pIncr->pMerger = pMerger; pIncr->pTask = pTask; pIncr->mxSz = MAX(pTask->pSorter->mxKeysize+9,pTask->pSorter->mxPmaSize/2); pTask->file2.iEof += pIncr->mxSz; }else{ vdbeMergeEngineFree(pMerger); rc = SQLITE_NOMEM_BKPT; } assert( *ppOut!=0 || rc!=SQLITE_OK ); return rc; } #if SQLITE_MAX_WORKER_THREADS>0 /* ** Set the "use-threads" flag on object pIncr. */ static void vdbeIncrMergerSetThreads(IncrMerger *pIncr){ pIncr->bUseThread = 1; pIncr->pTask->file2.iEof -= pIncr->mxSz; } #endif /* SQLITE_MAX_WORKER_THREADS>0 */ /* ** Recompute pMerger->aTree[iOut] by comparing the next keys on the ** two PmaReaders that feed that entry. Neither of the PmaReaders ** are advanced. This routine merely does the comparison. */ static void vdbeMergeEngineCompare( MergeEngine *pMerger, /* Merge engine containing PmaReaders to compare */ int iOut /* Store the result in pMerger->aTree[iOut] */ ){ int i1; int i2; int iRes; PmaReader *p1; PmaReader *p2; assert( iOutnTree && iOut>0 ); if( iOut>=(pMerger->nTree/2) ){ i1 = (iOut - pMerger->nTree/2) * 2; i2 = i1 + 1; }else{ i1 = pMerger->aTree[iOut*2]; i2 = pMerger->aTree[iOut*2+1]; } p1 = &pMerger->aReadr[i1]; p2 = &pMerger->aReadr[i2]; if( p1->pFd==0 ){ iRes = i2; }else if( p2->pFd==0 ){ iRes = i1; }else{ SortSubtask *pTask = pMerger->pTask; int bCached = 0; int res; assert( pTask->pUnpacked!=0 ); /* from vdbeSortSubtaskMain() */ res = pTask->xCompare( pTask, &bCached, p1->aKey, p1->nKey, p2->aKey, p2->nKey ); if( res<=0 ){ iRes = i1; }else{ iRes = i2; } } pMerger->aTree[iOut] = iRes; } /* ** Allowed values for the eMode parameter to vdbeMergeEngineInit() ** and vdbePmaReaderIncrMergeInit(). ** ** Only INCRINIT_NORMAL is valid in single-threaded builds (when ** SQLITE_MAX_WORKER_THREADS==0). The other values are only used ** when there exists one or more separate worker threads. */ #define INCRINIT_NORMAL 0 #define INCRINIT_TASK 1 #define INCRINIT_ROOT 2 /* ** Forward reference required as the vdbeIncrMergeInit() and ** vdbePmaReaderIncrInit() routines are called mutually recursively when ** building a merge tree. */ static int vdbePmaReaderIncrInit(PmaReader *pReadr, int eMode); /* ** Initialize the MergeEngine object passed as the second argument. Once this ** function returns, the first key of merged data may be read from the ** MergeEngine object in the usual fashion. ** ** If argument eMode is INCRINIT_ROOT, then it is assumed that any IncrMerge ** objects attached to the PmaReader objects that the merger reads from have ** already been populated, but that they have not yet populated aFile[0] and ** set the PmaReader objects up to read from it. In this case all that is ** required is to call vdbePmaReaderNext() on each PmaReader to point it at ** its first key. ** ** Otherwise, if eMode is any value other than INCRINIT_ROOT, then use ** vdbePmaReaderIncrMergeInit() to initialize each PmaReader that feeds data ** to pMerger. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int vdbeMergeEngineInit( SortSubtask *pTask, /* Thread that will run pMerger */ MergeEngine *pMerger, /* MergeEngine to initialize */ int eMode /* One of the INCRINIT_XXX constants */ ){ int rc = SQLITE_OK; /* Return code */ int i; /* For looping over PmaReader objects */ int nTree; /* Number of subtrees to merge */ /* Failure to allocate the merge would have been detected prior to ** invoking this routine */ assert( pMerger!=0 ); /* eMode is always INCRINIT_NORMAL in single-threaded mode */ assert( SQLITE_MAX_WORKER_THREADS>0 || eMode==INCRINIT_NORMAL ); /* Verify that the MergeEngine is assigned to a single thread */ assert( pMerger->pTask==0 ); pMerger->pTask = pTask; nTree = pMerger->nTree; for(i=0; i0 && eMode==INCRINIT_ROOT ){ /* PmaReaders should be normally initialized in order, as if they are ** reading from the same temp file this makes for more linear file IO. ** However, in the INCRINIT_ROOT case, if PmaReader aReadr[nTask-1] is ** in use it will block the vdbePmaReaderNext() call while it uses ** the main thread to fill its buffer. So calling PmaReaderNext() ** on this PmaReader before any of the multi-threaded PmaReaders takes ** better advantage of multi-processor hardware. */ rc = vdbePmaReaderNext(&pMerger->aReadr[nTree-i-1]); }else{ rc = vdbePmaReaderIncrInit(&pMerger->aReadr[i], INCRINIT_NORMAL); } if( rc!=SQLITE_OK ) return rc; } for(i=pMerger->nTree-1; i>0; i--){ vdbeMergeEngineCompare(pMerger, i); } return pTask->pUnpacked->errCode; } /* ** The PmaReader passed as the first argument is guaranteed to be an ** incremental-reader (pReadr->pIncr!=0). This function serves to open ** and/or initialize the temp file related fields of the IncrMerge ** object at (pReadr->pIncr). ** ** If argument eMode is set to INCRINIT_NORMAL, then all PmaReaders ** in the sub-tree headed by pReadr are also initialized. Data is then ** loaded into the buffers belonging to pReadr and it is set to point to ** the first key in its range. ** ** If argument eMode is set to INCRINIT_TASK, then pReadr is guaranteed ** to be a multi-threaded PmaReader and this function is being called in a ** background thread. In this case all PmaReaders in the sub-tree are ** initialized as for INCRINIT_NORMAL and the aFile[1] buffer belonging to ** pReadr is populated. However, pReadr itself is not set up to point ** to its first key. A call to vdbePmaReaderNext() is still required to do ** that. ** ** The reason this function does not call vdbePmaReaderNext() immediately ** in the INCRINIT_TASK case is that vdbePmaReaderNext() assumes that it has ** to block on thread (pTask->thread) before accessing aFile[1]. But, since ** this entire function is being run by thread (pTask->thread), that will ** lead to the current background thread attempting to join itself. ** ** Finally, if argument eMode is set to INCRINIT_ROOT, it may be assumed ** that pReadr->pIncr is a multi-threaded IncrMerge objects, and that all ** child-trees have already been initialized using IncrInit(INCRINIT_TASK). ** In this case vdbePmaReaderNext() is called on all child PmaReaders and ** the current PmaReader set to point to the first key in its range. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int vdbePmaReaderIncrMergeInit(PmaReader *pReadr, int eMode){ int rc = SQLITE_OK; IncrMerger *pIncr = pReadr->pIncr; SortSubtask *pTask = pIncr->pTask; sqlite3 *db = pTask->pSorter->db; /* eMode is always INCRINIT_NORMAL in single-threaded mode */ assert( SQLITE_MAX_WORKER_THREADS>0 || eMode==INCRINIT_NORMAL ); rc = vdbeMergeEngineInit(pTask, pIncr->pMerger, eMode); /* Set up the required files for pIncr. A multi-theaded IncrMerge object ** requires two temp files to itself, whereas a single-threaded object ** only requires a region of pTask->file2. */ if( rc==SQLITE_OK ){ int mxSz = pIncr->mxSz; #if SQLITE_MAX_WORKER_THREADS>0 if( pIncr->bUseThread ){ rc = vdbeSorterOpenTempFile(db, mxSz, &pIncr->aFile[0].pFd); if( rc==SQLITE_OK ){ rc = vdbeSorterOpenTempFile(db, mxSz, &pIncr->aFile[1].pFd); } }else #endif /*if( !pIncr->bUseThread )*/{ if( pTask->file2.pFd==0 ){ assert( pTask->file2.iEof>0 ); rc = vdbeSorterOpenTempFile(db, pTask->file2.iEof, &pTask->file2.pFd); pTask->file2.iEof = 0; } if( rc==SQLITE_OK ){ pIncr->aFile[1].pFd = pTask->file2.pFd; pIncr->iStartOff = pTask->file2.iEof; pTask->file2.iEof += mxSz; } } } #if SQLITE_MAX_WORKER_THREADS>0 if( rc==SQLITE_OK && pIncr->bUseThread ){ /* Use the current thread to populate aFile[1], even though this ** PmaReader is multi-threaded. If this is an INCRINIT_TASK object, ** then this function is already running in background thread ** pIncr->pTask->thread. ** ** If this is the INCRINIT_ROOT object, then it is running in the ** main VDBE thread. But that is Ok, as that thread cannot return ** control to the VDBE or proceed with anything useful until the ** first results are ready from this merger object anyway. */ assert( eMode==INCRINIT_ROOT || eMode==INCRINIT_TASK ); rc = vdbeIncrPopulate(pIncr); } #endif if( rc==SQLITE_OK && (SQLITE_MAX_WORKER_THREADS==0 || eMode!=INCRINIT_TASK) ){ rc = vdbePmaReaderNext(pReadr); } return rc; } #if SQLITE_MAX_WORKER_THREADS>0 /* ** The main routine for vdbePmaReaderIncrMergeInit() operations run in ** background threads. */ static void *vdbePmaReaderBgIncrInit(void *pCtx){ PmaReader *pReader = (PmaReader*)pCtx; void *pRet = SQLITE_INT_TO_PTR( vdbePmaReaderIncrMergeInit(pReader,INCRINIT_TASK) ); pReader->pIncr->pTask->bDone = 1; return pRet; } #endif /* ** If the PmaReader passed as the first argument is not an incremental-reader ** (if pReadr->pIncr==0), then this function is a no-op. Otherwise, it invokes ** the vdbePmaReaderIncrMergeInit() function with the parameters passed to ** this routine to initialize the incremental merge. ** ** If the IncrMerger object is multi-threaded (IncrMerger.bUseThread==1), ** then a background thread is launched to call vdbePmaReaderIncrMergeInit(). ** Or, if the IncrMerger is single threaded, the same function is called ** using the current thread. */ static int vdbePmaReaderIncrInit(PmaReader *pReadr, int eMode){ IncrMerger *pIncr = pReadr->pIncr; /* Incremental merger */ int rc = SQLITE_OK; /* Return code */ if( pIncr ){ #if SQLITE_MAX_WORKER_THREADS>0 assert( pIncr->bUseThread==0 || eMode==INCRINIT_TASK ); if( pIncr->bUseThread ){ void *pCtx = (void*)pReadr; rc = vdbeSorterCreateThread(pIncr->pTask, vdbePmaReaderBgIncrInit, pCtx); }else #endif { rc = vdbePmaReaderIncrMergeInit(pReadr, eMode); } } return rc; } /* ** Allocate a new MergeEngine object to merge the contents of nPMA level-0 ** PMAs from pTask->file. If no error occurs, set *ppOut to point to ** the new object and return SQLITE_OK. Or, if an error does occur, set *ppOut ** to NULL and return an SQLite error code. ** ** When this function is called, *piOffset is set to the offset of the ** first PMA to read from pTask->file. Assuming no error occurs, it is ** set to the offset immediately following the last byte of the last ** PMA before returning. If an error does occur, then the final value of ** *piOffset is undefined. */ static int vdbeMergeEngineLevel0( SortSubtask *pTask, /* Sorter task to read from */ int nPMA, /* Number of PMAs to read */ i64 *piOffset, /* IN/OUT: Readr offset in pTask->file */ MergeEngine **ppOut /* OUT: New merge-engine */ ){ MergeEngine *pNew; /* Merge engine to return */ i64 iOff = *piOffset; int i; int rc = SQLITE_OK; *ppOut = pNew = vdbeMergeEngineNew(nPMA); if( pNew==0 ) rc = SQLITE_NOMEM_BKPT; for(i=0; iaReadr[i]; rc = vdbePmaReaderInit(pTask, &pTask->file, iOff, pReadr, &nDummy); iOff = pReadr->iEof; } if( rc!=SQLITE_OK ){ vdbeMergeEngineFree(pNew); *ppOut = 0; } *piOffset = iOff; return rc; } /* ** Return the depth of a tree comprising nPMA PMAs, assuming a fanout of ** SORTER_MAX_MERGE_COUNT. The returned value does not include leaf nodes. ** ** i.e. ** ** nPMA<=16 -> TreeDepth() == 0 ** nPMA<=256 -> TreeDepth() == 1 ** nPMA<=65536 -> TreeDepth() == 2 */ static int vdbeSorterTreeDepth(int nPMA){ int nDepth = 0; i64 nDiv = SORTER_MAX_MERGE_COUNT; while( nDiv < (i64)nPMA ){ nDiv = nDiv * SORTER_MAX_MERGE_COUNT; nDepth++; } return nDepth; } /* ** pRoot is the root of an incremental merge-tree with depth nDepth (according ** to vdbeSorterTreeDepth()). pLeaf is the iSeq'th leaf to be added to the ** tree, counting from zero. This function adds pLeaf to the tree. ** ** If successful, SQLITE_OK is returned. If an error occurs, an SQLite error ** code is returned and pLeaf is freed. */ static int vdbeSorterAddToTree( SortSubtask *pTask, /* Task context */ int nDepth, /* Depth of tree according to TreeDepth() */ int iSeq, /* Sequence number of leaf within tree */ MergeEngine *pRoot, /* Root of tree */ MergeEngine *pLeaf /* Leaf to add to tree */ ){ int rc = SQLITE_OK; int nDiv = 1; int i; MergeEngine *p = pRoot; IncrMerger *pIncr; rc = vdbeIncrMergerNew(pTask, pLeaf, &pIncr); for(i=1; iaReadr[iIter]; if( pReadr->pIncr==0 ){ MergeEngine *pNew = vdbeMergeEngineNew(SORTER_MAX_MERGE_COUNT); if( pNew==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ rc = vdbeIncrMergerNew(pTask, pNew, &pReadr->pIncr); } } if( rc==SQLITE_OK ){ p = pReadr->pIncr->pMerger; nDiv = nDiv / SORTER_MAX_MERGE_COUNT; } } if( rc==SQLITE_OK ){ p->aReadr[iSeq % SORTER_MAX_MERGE_COUNT].pIncr = pIncr; }else{ vdbeIncrFree(pIncr); } return rc; } /* ** This function is called as part of a SorterRewind() operation on a sorter ** that has already written two or more level-0 PMAs to one or more temp ** files. It builds a tree of MergeEngine/IncrMerger/PmaReader objects that ** can be used to incrementally merge all PMAs on disk. ** ** If successful, SQLITE_OK is returned and *ppOut set to point to the ** MergeEngine object at the root of the tree before returning. Or, if an ** error occurs, an SQLite error code is returned and the final value ** of *ppOut is undefined. */ static int vdbeSorterMergeTreeBuild( VdbeSorter *pSorter, /* The VDBE cursor that implements the sort */ MergeEngine **ppOut /* Write the MergeEngine here */ ){ MergeEngine *pMain = 0; int rc = SQLITE_OK; int iTask; #if SQLITE_MAX_WORKER_THREADS>0 /* If the sorter uses more than one task, then create the top-level ** MergeEngine here. This MergeEngine will read data from exactly ** one PmaReader per sub-task. */ assert( pSorter->bUseThreads || pSorter->nTask==1 ); if( pSorter->nTask>1 ){ pMain = vdbeMergeEngineNew(pSorter->nTask); if( pMain==0 ) rc = SQLITE_NOMEM_BKPT; } #endif for(iTask=0; rc==SQLITE_OK && iTasknTask; iTask++){ SortSubtask *pTask = &pSorter->aTask[iTask]; assert( pTask->nPMA>0 || SQLITE_MAX_WORKER_THREADS>0 ); if( SQLITE_MAX_WORKER_THREADS==0 || pTask->nPMA ){ MergeEngine *pRoot = 0; /* Root node of tree for this task */ int nDepth = vdbeSorterTreeDepth(pTask->nPMA); i64 iReadOff = 0; if( pTask->nPMA<=SORTER_MAX_MERGE_COUNT ){ rc = vdbeMergeEngineLevel0(pTask, pTask->nPMA, &iReadOff, &pRoot); }else{ int i; int iSeq = 0; pRoot = vdbeMergeEngineNew(SORTER_MAX_MERGE_COUNT); if( pRoot==0 ) rc = SQLITE_NOMEM_BKPT; for(i=0; inPMA && rc==SQLITE_OK; i += SORTER_MAX_MERGE_COUNT){ MergeEngine *pMerger = 0; /* New level-0 PMA merger */ int nReader; /* Number of level-0 PMAs to merge */ nReader = MIN(pTask->nPMA - i, SORTER_MAX_MERGE_COUNT); rc = vdbeMergeEngineLevel0(pTask, nReader, &iReadOff, &pMerger); if( rc==SQLITE_OK ){ rc = vdbeSorterAddToTree(pTask, nDepth, iSeq++, pRoot, pMerger); } } } if( rc==SQLITE_OK ){ #if SQLITE_MAX_WORKER_THREADS>0 if( pMain!=0 ){ rc = vdbeIncrMergerNew(pTask, pRoot, &pMain->aReadr[iTask].pIncr); }else #endif { assert( pMain==0 ); pMain = pRoot; } }else{ vdbeMergeEngineFree(pRoot); } } } if( rc!=SQLITE_OK ){ vdbeMergeEngineFree(pMain); pMain = 0; } *ppOut = pMain; return rc; } /* ** This function is called as part of an sqlite3VdbeSorterRewind() operation ** on a sorter that has written two or more PMAs to temporary files. It sets ** up either VdbeSorter.pMerger (for single threaded sorters) or pReader ** (for multi-threaded sorters) so that it can be used to iterate through ** all records stored in the sorter. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int vdbeSorterSetupMerge(VdbeSorter *pSorter){ int rc; /* Return code */ SortSubtask *pTask0 = &pSorter->aTask[0]; MergeEngine *pMain = 0; #if SQLITE_MAX_WORKER_THREADS sqlite3 *db = pTask0->pSorter->db; int i; SorterCompare xCompare = vdbeSorterGetCompare(pSorter); for(i=0; inTask; i++){ pSorter->aTask[i].xCompare = xCompare; } #endif rc = vdbeSorterMergeTreeBuild(pSorter, &pMain); if( rc==SQLITE_OK ){ #if SQLITE_MAX_WORKER_THREADS assert( pSorter->bUseThreads==0 || pSorter->nTask>1 ); if( pSorter->bUseThreads ){ int iTask; PmaReader *pReadr = 0; SortSubtask *pLast = &pSorter->aTask[pSorter->nTask-1]; rc = vdbeSortAllocUnpacked(pLast); if( rc==SQLITE_OK ){ pReadr = (PmaReader*)sqlite3DbMallocZero(db, sizeof(PmaReader)); pSorter->pReader = pReadr; if( pReadr==0 ) rc = SQLITE_NOMEM_BKPT; } if( rc==SQLITE_OK ){ rc = vdbeIncrMergerNew(pLast, pMain, &pReadr->pIncr); if( rc==SQLITE_OK ){ vdbeIncrMergerSetThreads(pReadr->pIncr); for(iTask=0; iTask<(pSorter->nTask-1); iTask++){ IncrMerger *pIncr; if( (pIncr = pMain->aReadr[iTask].pIncr) ){ vdbeIncrMergerSetThreads(pIncr); assert( pIncr->pTask!=pLast ); } } for(iTask=0; rc==SQLITE_OK && iTasknTask; iTask++){ /* Check that: ** ** a) The incremental merge object is configured to use the ** right task, and ** b) If it is using task (nTask-1), it is configured to run ** in single-threaded mode. This is important, as the ** root merge (INCRINIT_ROOT) will be using the same task ** object. */ PmaReader *p = &pMain->aReadr[iTask]; assert( p->pIncr==0 || ( (p->pIncr->pTask==&pSorter->aTask[iTask]) /* a */ && (iTask!=pSorter->nTask-1 || p->pIncr->bUseThread==0) /* b */ )); rc = vdbePmaReaderIncrInit(p, INCRINIT_TASK); } } pMain = 0; } if( rc==SQLITE_OK ){ rc = vdbePmaReaderIncrMergeInit(pReadr, INCRINIT_ROOT); } }else #endif { rc = vdbeMergeEngineInit(pTask0, pMain, INCRINIT_NORMAL); pSorter->pMerger = pMain; pMain = 0; } } if( rc!=SQLITE_OK ){ vdbeMergeEngineFree(pMain); } return rc; } /* ** Once the sorter has been populated by calls to sqlite3VdbeSorterWrite, ** this function is called to prepare for iterating through the records ** in sorted order. */ SQLITE_PRIVATE int sqlite3VdbeSorterRewind(const VdbeCursor *pCsr, int *pbEof){ VdbeSorter *pSorter; int rc = SQLITE_OK; /* Return code */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; assert( pSorter ); /* If no data has been written to disk, then do not do so now. Instead, ** sort the VdbeSorter.pRecord list. The vdbe layer will read data directly ** from the in-memory list. */ if( pSorter->bUsePMA==0 ){ if( pSorter->list.pList ){ *pbEof = 0; rc = vdbeSorterSort(&pSorter->aTask[0], &pSorter->list); }else{ *pbEof = 1; } return rc; } /* Write the current in-memory list to a PMA. When the VdbeSorterWrite() ** function flushes the contents of memory to disk, it immediately always ** creates a new list consisting of a single key immediately afterwards. ** So the list is never empty at this point. */ assert( pSorter->list.pList ); rc = vdbeSorterFlushPMA(pSorter); /* Join all threads */ rc = vdbeSorterJoinAll(pSorter, rc); vdbeSorterRewindDebug("rewind"); /* Assuming no errors have occurred, set up a merger structure to ** incrementally read and merge all remaining PMAs. */ assert( pSorter->pReader==0 ); if( rc==SQLITE_OK ){ rc = vdbeSorterSetupMerge(pSorter); *pbEof = 0; } vdbeSorterRewindDebug("rewinddone"); return rc; } /* ** Advance to the next element in the sorter. Return value: ** ** SQLITE_OK success ** SQLITE_DONE end of data ** otherwise some kind of error. */ SQLITE_PRIVATE int sqlite3VdbeSorterNext(sqlite3 *db, const VdbeCursor *pCsr){ VdbeSorter *pSorter; int rc; /* Return code */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; assert( pSorter->bUsePMA || (pSorter->pReader==0 && pSorter->pMerger==0) ); if( pSorter->bUsePMA ){ assert( pSorter->pReader==0 || pSorter->pMerger==0 ); assert( pSorter->bUseThreads==0 || pSorter->pReader ); assert( pSorter->bUseThreads==1 || pSorter->pMerger ); #if SQLITE_MAX_WORKER_THREADS>0 if( pSorter->bUseThreads ){ rc = vdbePmaReaderNext(pSorter->pReader); if( rc==SQLITE_OK && pSorter->pReader->pFd==0 ) rc = SQLITE_DONE; }else #endif /*if( !pSorter->bUseThreads )*/ { int res = 0; assert( pSorter->pMerger!=0 ); assert( pSorter->pMerger->pTask==(&pSorter->aTask[0]) ); rc = vdbeMergeEngineStep(pSorter->pMerger, &res); if( rc==SQLITE_OK && res ) rc = SQLITE_DONE; } }else{ SorterRecord *pFree = pSorter->list.pList; pSorter->list.pList = pFree->u.pNext; pFree->u.pNext = 0; if( pSorter->list.aMemory==0 ) vdbeSorterRecordFree(db, pFree); rc = pSorter->list.pList ? SQLITE_OK : SQLITE_DONE; } return rc; } /* ** Return a pointer to a buffer owned by the sorter that contains the ** current key. */ static void *vdbeSorterRowkey( const VdbeSorter *pSorter, /* Sorter object */ int *pnKey /* OUT: Size of current key in bytes */ ){ void *pKey; if( pSorter->bUsePMA ){ PmaReader *pReader; #if SQLITE_MAX_WORKER_THREADS>0 if( pSorter->bUseThreads ){ pReader = pSorter->pReader; }else #endif /*if( !pSorter->bUseThreads )*/{ pReader = &pSorter->pMerger->aReadr[pSorter->pMerger->aTree[1]]; } *pnKey = pReader->nKey; pKey = pReader->aKey; }else{ *pnKey = pSorter->list.pList->nVal; pKey = SRVAL(pSorter->list.pList); } return pKey; } /* ** Copy the current sorter key into the memory cell pOut. */ SQLITE_PRIVATE int sqlite3VdbeSorterRowkey(const VdbeCursor *pCsr, Mem *pOut){ VdbeSorter *pSorter; void *pKey; int nKey; /* Sorter key to copy into pOut */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; pKey = vdbeSorterRowkey(pSorter, &nKey); if( sqlite3VdbeMemClearAndResize(pOut, nKey) ){ return SQLITE_NOMEM_BKPT; } pOut->n = nKey; MemSetTypeFlag(pOut, MEM_Blob); memcpy(pOut->z, pKey, nKey); return SQLITE_OK; } /* ** Compare the key in memory cell pVal with the key that the sorter cursor ** passed as the first argument currently points to. For the purposes of ** the comparison, ignore the rowid field at the end of each record. ** ** If the sorter cursor key contains any NULL values, consider it to be ** less than pVal. Even if pVal also contains NULL values. ** ** If an error occurs, return an SQLite error code (i.e. SQLITE_NOMEM). ** Otherwise, set *pRes to a negative, zero or positive value if the ** key in pVal is smaller than, equal to or larger than the current sorter ** key. ** ** This routine forms the core of the OP_SorterCompare opcode, which in ** turn is used to verify uniqueness when constructing a UNIQUE INDEX. */ SQLITE_PRIVATE int sqlite3VdbeSorterCompare( const VdbeCursor *pCsr, /* Sorter cursor */ Mem *pVal, /* Value to compare to current sorter key */ int nKeyCol, /* Compare this many columns */ int *pRes /* OUT: Result of comparison */ ){ VdbeSorter *pSorter; UnpackedRecord *r2; KeyInfo *pKeyInfo; int i; void *pKey; int nKey; /* Sorter key to compare pVal with */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; r2 = pSorter->pUnpacked; pKeyInfo = pCsr->pKeyInfo; if( r2==0 ){ r2 = pSorter->pUnpacked = sqlite3VdbeAllocUnpackedRecord(pKeyInfo); if( r2==0 ) return SQLITE_NOMEM_BKPT; r2->nField = nKeyCol; } assert( r2->nField==nKeyCol ); pKey = vdbeSorterRowkey(pSorter, &nKey); sqlite3VdbeRecordUnpack(pKeyInfo, nKey, pKey, r2); for(i=0; iaMem[i].flags & MEM_Null ){ *pRes = -1; return SQLITE_OK; } } *pRes = sqlite3VdbeRecordCompare(pVal->n, pVal->z, r2); return SQLITE_OK; } /************** End of vdbesort.c ********************************************/ /************** Begin file vdbevtab.c ****************************************/ /* ** 2020-03-23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file implements virtual-tables for examining the bytecode content ** of a prepared statement. */ /* #include "sqliteInt.h" */ #if defined(SQLITE_ENABLE_BYTECODE_VTAB) && !defined(SQLITE_OMIT_VIRTUALTABLE) /* #include "vdbeInt.h" */ /* An instance of the bytecode() table-valued function. */ typedef struct bytecodevtab bytecodevtab; struct bytecodevtab { sqlite3_vtab base; /* Base class - must be first */ sqlite3 *db; /* Database connection */ int bTablesUsed; /* 2 for tables_used(). 0 for bytecode(). */ }; /* A cursor for scanning through the bytecode */ typedef struct bytecodevtab_cursor bytecodevtab_cursor; struct bytecodevtab_cursor { sqlite3_vtab_cursor base; /* Base class - must be first */ sqlite3_stmt *pStmt; /* The statement whose bytecode is displayed */ int iRowid; /* The rowid of the output table */ int iAddr; /* Address */ int needFinalize; /* Cursors owns pStmt and must finalize it */ int showSubprograms; /* Provide a listing of subprograms */ Op *aOp; /* Operand array */ char *zP4; /* Rendered P4 value */ const char *zType; /* tables_used.type */ const char *zSchema; /* tables_used.schema */ const char *zName; /* tables_used.name */ Mem sub; /* Subprograms */ }; /* ** Create a new bytecode() table-valued function. */ static int bytecodevtabConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ bytecodevtab *pNew; int rc; int isTabUsed = pAux!=0; const char *azSchema[2] = { /* bytecode() schema */ "CREATE TABLE x(" "addr INT," "opcode TEXT," "p1 INT," "p2 INT," "p3 INT," "p4 TEXT," "p5 INT," "comment TEXT," "subprog TEXT," "stmt HIDDEN" ");", /* Tables_used() schema */ "CREATE TABLE x(" "type TEXT," "schema TEXT," "name TEXT," "wr INT," "subprog TEXT," "stmt HIDDEN" ");" }; rc = sqlite3_declare_vtab(db, azSchema[isTabUsed]); if( rc==SQLITE_OK ){ pNew = sqlite3_malloc( sizeof(*pNew) ); *ppVtab = (sqlite3_vtab*)pNew; if( pNew==0 ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(*pNew)); pNew->db = db; pNew->bTablesUsed = isTabUsed*2; } return rc; } /* ** This method is the destructor for bytecodevtab objects. */ static int bytecodevtabDisconnect(sqlite3_vtab *pVtab){ bytecodevtab *p = (bytecodevtab*)pVtab; sqlite3_free(p); return SQLITE_OK; } /* ** Constructor for a new bytecodevtab_cursor object. */ static int bytecodevtabOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ bytecodevtab *pVTab = (bytecodevtab*)p; bytecodevtab_cursor *pCur; pCur = sqlite3_malloc( sizeof(*pCur) ); if( pCur==0 ) return SQLITE_NOMEM; memset(pCur, 0, sizeof(*pCur)); sqlite3VdbeMemInit(&pCur->sub, pVTab->db, 1); *ppCursor = &pCur->base; return SQLITE_OK; } /* ** Clear all internal content from a bytecodevtab cursor. */ static void bytecodevtabCursorClear(bytecodevtab_cursor *pCur){ sqlite3_free(pCur->zP4); pCur->zP4 = 0; sqlite3VdbeMemRelease(&pCur->sub); sqlite3VdbeMemSetNull(&pCur->sub); if( pCur->needFinalize ){ sqlite3_finalize(pCur->pStmt); } pCur->pStmt = 0; pCur->needFinalize = 0; pCur->zType = 0; pCur->zSchema = 0; pCur->zName = 0; } /* ** Destructor for a bytecodevtab_cursor. */ static int bytecodevtabClose(sqlite3_vtab_cursor *cur){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; bytecodevtabCursorClear(pCur); sqlite3_free(pCur); return SQLITE_OK; } /* ** Advance a bytecodevtab_cursor to its next row of output. */ static int bytecodevtabNext(sqlite3_vtab_cursor *cur){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; bytecodevtab *pTab = (bytecodevtab*)cur->pVtab; int rc; if( pCur->zP4 ){ sqlite3_free(pCur->zP4); pCur->zP4 = 0; } if( pCur->zName ){ pCur->zName = 0; pCur->zType = 0; pCur->zSchema = 0; } rc = sqlite3VdbeNextOpcode( (Vdbe*)pCur->pStmt, pCur->showSubprograms ? &pCur->sub : 0, pTab->bTablesUsed, &pCur->iRowid, &pCur->iAddr, &pCur->aOp); if( rc!=SQLITE_OK ){ sqlite3VdbeMemSetNull(&pCur->sub); pCur->aOp = 0; } return SQLITE_OK; } /* ** Return TRUE if the cursor has been moved off of the last ** row of output. */ static int bytecodevtabEof(sqlite3_vtab_cursor *cur){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; return pCur->aOp==0; } /* ** Return values of columns for the row at which the bytecodevtab_cursor ** is currently pointing. */ static int bytecodevtabColumn( sqlite3_vtab_cursor *cur, /* The cursor */ sqlite3_context *ctx, /* First argument to sqlite3_result_...() */ int i /* Which column to return */ ){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; bytecodevtab *pVTab = (bytecodevtab*)cur->pVtab; Op *pOp = pCur->aOp + pCur->iAddr; if( pVTab->bTablesUsed ){ if( i==4 ){ i = 8; }else{ if( i<=2 && pCur->zType==0 ){ Schema *pSchema; HashElem *k; int iDb = pOp->p3; Pgno iRoot = (Pgno)pOp->p2; sqlite3 *db = pVTab->db; pSchema = db->aDb[iDb].pSchema; pCur->zSchema = db->aDb[iDb].zDbSName; for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ Table *pTab = (Table*)sqliteHashData(k); if( !IsVirtual(pTab) && pTab->tnum==iRoot ){ pCur->zName = pTab->zName; pCur->zType = "table"; break; } } if( pCur->zName==0 ){ for(k=sqliteHashFirst(&pSchema->idxHash); k; k=sqliteHashNext(k)){ Index *pIdx = (Index*)sqliteHashData(k); if( pIdx->tnum==iRoot ){ pCur->zName = pIdx->zName; pCur->zType = "index"; } } } } i += 10; } } switch( i ){ case 0: /* addr */ sqlite3_result_int(ctx, pCur->iAddr); break; case 1: /* opcode */ sqlite3_result_text(ctx, (char*)sqlite3OpcodeName(pOp->opcode), -1, SQLITE_STATIC); break; case 2: /* p1 */ sqlite3_result_int(ctx, pOp->p1); break; case 3: /* p2 */ sqlite3_result_int(ctx, pOp->p2); break; case 4: /* p3 */ sqlite3_result_int(ctx, pOp->p3); break; case 5: /* p4 */ case 7: /* comment */ if( pCur->zP4==0 ){ pCur->zP4 = sqlite3VdbeDisplayP4(pVTab->db, pOp); } if( i==5 ){ sqlite3_result_text(ctx, pCur->zP4, -1, SQLITE_STATIC); }else{ #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS char *zCom = sqlite3VdbeDisplayComment(pVTab->db, pOp, pCur->zP4); sqlite3_result_text(ctx, zCom, -1, sqlite3_free); #endif } break; case 6: /* p5 */ sqlite3_result_int(ctx, pOp->p5); break; case 8: { /* subprog */ Op *aOp = pCur->aOp; assert( aOp[0].opcode==OP_Init ); assert( aOp[0].p4.z==0 || strncmp(aOp[0].p4.z,"-" "- ",3)==0 ); if( pCur->iRowid==pCur->iAddr+1 ){ break; /* Result is NULL for the main program */ }else if( aOp[0].p4.z!=0 ){ sqlite3_result_text(ctx, aOp[0].p4.z+3, -1, SQLITE_STATIC); }else{ sqlite3_result_text(ctx, "(FK)", 4, SQLITE_STATIC); } break; } case 10: /* tables_used.type */ sqlite3_result_text(ctx, pCur->zType, -1, SQLITE_STATIC); break; case 11: /* tables_used.schema */ sqlite3_result_text(ctx, pCur->zSchema, -1, SQLITE_STATIC); break; case 12: /* tables_used.name */ sqlite3_result_text(ctx, pCur->zName, -1, SQLITE_STATIC); break; case 13: /* tables_used.wr */ sqlite3_result_int(ctx, pOp->opcode==OP_OpenWrite); break; } return SQLITE_OK; } /* ** Return the rowid for the current row. In this implementation, the ** rowid is the same as the output value. */ static int bytecodevtabRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; *pRowid = pCur->iRowid; return SQLITE_OK; } /* ** Initialize a cursor. ** ** idxNum==0 means show all subprograms ** idxNum==1 means show only the main bytecode and omit subprograms. */ static int bytecodevtabFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor *)pVtabCursor; bytecodevtab *pVTab = (bytecodevtab *)pVtabCursor->pVtab; int rc = SQLITE_OK; bytecodevtabCursorClear(pCur); pCur->iRowid = 0; pCur->iAddr = 0; pCur->showSubprograms = idxNum==0; assert( argc==1 ); if( sqlite3_value_type(argv[0])==SQLITE_TEXT ){ const char *zSql = (const char*)sqlite3_value_text(argv[0]); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(pVTab->db, zSql, -1, &pCur->pStmt, 0); pCur->needFinalize = 1; } }else{ pCur->pStmt = (sqlite3_stmt*)sqlite3_value_pointer(argv[0],"stmt-pointer"); } if( pCur->pStmt==0 ){ pVTab->base.zErrMsg = sqlite3_mprintf( "argument to %s() is not a valid SQL statement", pVTab->bTablesUsed ? "tables_used" : "bytecode" ); rc = SQLITE_ERROR; }else{ bytecodevtabNext(pVtabCursor); } return rc; } /* ** We must have a single stmt=? constraint that will be passed through ** into the xFilter method. If there is no valid stmt=? constraint, ** then return an SQLITE_CONSTRAINT error. */ static int bytecodevtabBestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo ){ int i; int rc = SQLITE_CONSTRAINT; struct sqlite3_index_constraint *p; bytecodevtab *pVTab = (bytecodevtab*)tab; int iBaseCol = pVTab->bTablesUsed ? 4 : 8; pIdxInfo->estimatedCost = (double)100; pIdxInfo->estimatedRows = 100; pIdxInfo->idxNum = 0; for(i=0, p=pIdxInfo->aConstraint; inConstraint; i++, p++){ if( p->usable==0 ) continue; if( p->op==SQLITE_INDEX_CONSTRAINT_EQ && p->iColumn==iBaseCol+1 ){ rc = SQLITE_OK; pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->aConstraintUsage[i].argvIndex = 1; } if( p->op==SQLITE_INDEX_CONSTRAINT_ISNULL && p->iColumn==iBaseCol ){ pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->idxNum = 1; } } return rc; } /* ** This following structure defines all the methods for the ** virtual table. */ static sqlite3_module bytecodevtabModule = { /* iVersion */ 0, /* xCreate */ 0, /* xConnect */ bytecodevtabConnect, /* xBestIndex */ bytecodevtabBestIndex, /* xDisconnect */ bytecodevtabDisconnect, /* xDestroy */ 0, /* xOpen */ bytecodevtabOpen, /* xClose */ bytecodevtabClose, /* xFilter */ bytecodevtabFilter, /* xNext */ bytecodevtabNext, /* xEof */ bytecodevtabEof, /* xColumn */ bytecodevtabColumn, /* xRowid */ bytecodevtabRowid, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0, /* xShadowName */ 0 }; SQLITE_PRIVATE int sqlite3VdbeBytecodeVtabInit(sqlite3 *db){ int rc; rc = sqlite3_create_module(db, "bytecode", &bytecodevtabModule, 0); if( rc==SQLITE_OK ){ rc = sqlite3_create_module(db, "tables_used", &bytecodevtabModule, &db); } return rc; } #elif defined(SQLITE_ENABLE_BYTECODE_VTAB) SQLITE_PRIVATE int sqlite3VdbeBytecodeVtabInit(sqlite3 *db){ return SQLITE_OK; } #endif /* SQLITE_ENABLE_BYTECODE_VTAB */ /************** End of vdbevtab.c ********************************************/ /************** Begin file memjournal.c **************************************/ /* ** 2008 October 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code use to implement an in-memory rollback journal. ** The in-memory rollback journal is used to journal transactions for ** ":memory:" databases and when the journal_mode=MEMORY pragma is used. ** ** Update: The in-memory journal is also used to temporarily cache ** smaller journals that are not critical for power-loss recovery. ** For example, statement journals that are not too big will be held ** entirely in memory, thus reducing the number of file I/O calls, and ** more importantly, reducing temporary file creation events. If these ** journals become too large for memory, they are spilled to disk. But ** in the common case, they are usually small and no file I/O needs to ** occur. */ /* #include "sqliteInt.h" */ /* Forward references to internal structures */ typedef struct MemJournal MemJournal; typedef struct FilePoint FilePoint; typedef struct FileChunk FileChunk; /* ** The rollback journal is composed of a linked list of these structures. ** ** The zChunk array is always at least 8 bytes in size - usually much more. ** Its actual size is stored in the MemJournal.nChunkSize variable. */ struct FileChunk { FileChunk *pNext; /* Next chunk in the journal */ u8 zChunk[8]; /* Content of this chunk */ }; /* ** By default, allocate this many bytes of memory for each FileChunk object. */ #define MEMJOURNAL_DFLT_FILECHUNKSIZE 1024 /* ** For chunk size nChunkSize, return the number of bytes that should ** be allocated for each FileChunk structure. */ #define fileChunkSize(nChunkSize) (sizeof(FileChunk) + ((nChunkSize)-8)) /* ** An instance of this object serves as a cursor into the rollback journal. ** The cursor can be either for reading or writing. */ struct FilePoint { sqlite3_int64 iOffset; /* Offset from the beginning of the file */ FileChunk *pChunk; /* Specific chunk into which cursor points */ }; /* ** This structure is a subclass of sqlite3_file. Each open memory-journal ** is an instance of this class. */ struct MemJournal { const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */ int nChunkSize; /* In-memory chunk-size */ int nSpill; /* Bytes of data before flushing */ FileChunk *pFirst; /* Head of in-memory chunk-list */ FilePoint endpoint; /* Pointer to the end of the file */ FilePoint readpoint; /* Pointer to the end of the last xRead() */ int flags; /* xOpen flags */ sqlite3_vfs *pVfs; /* The "real" underlying VFS */ const char *zJournal; /* Name of the journal file */ }; /* ** Read data from the in-memory journal file. This is the implementation ** of the sqlite3_vfs.xRead method. */ static int memjrnlRead( sqlite3_file *pJfd, /* The journal file from which to read */ void *zBuf, /* Put the results here */ int iAmt, /* Number of bytes to read */ sqlite_int64 iOfst /* Begin reading at this offset */ ){ MemJournal *p = (MemJournal *)pJfd; u8 *zOut = zBuf; int nRead = iAmt; int iChunkOffset; FileChunk *pChunk; if( (iAmt+iOfst)>p->endpoint.iOffset ){ return SQLITE_IOERR_SHORT_READ; } assert( p->readpoint.iOffset==0 || p->readpoint.pChunk!=0 ); if( p->readpoint.iOffset!=iOfst || iOfst==0 ){ sqlite3_int64 iOff = 0; for(pChunk=p->pFirst; ALWAYS(pChunk) && (iOff+p->nChunkSize)<=iOfst; pChunk=pChunk->pNext ){ iOff += p->nChunkSize; } }else{ pChunk = p->readpoint.pChunk; assert( pChunk!=0 ); } iChunkOffset = (int)(iOfst%p->nChunkSize); do { int iSpace = p->nChunkSize - iChunkOffset; int nCopy = MIN(nRead, (p->nChunkSize - iChunkOffset)); memcpy(zOut, (u8*)pChunk->zChunk + iChunkOffset, nCopy); zOut += nCopy; nRead -= iSpace; iChunkOffset = 0; } while( nRead>=0 && (pChunk=pChunk->pNext)!=0 && nRead>0 ); p->readpoint.iOffset = pChunk ? iOfst+iAmt : 0; p->readpoint.pChunk = pChunk; return SQLITE_OK; } /* ** Free the list of FileChunk structures headed at MemJournal.pFirst. */ static void memjrnlFreeChunks(FileChunk *pFirst){ FileChunk *pIter; FileChunk *pNext; for(pIter=pFirst; pIter; pIter=pNext){ pNext = pIter->pNext; sqlite3_free(pIter); } } /* ** Flush the contents of memory to a real file on disk. */ static int memjrnlCreateFile(MemJournal *p){ int rc; sqlite3_file *pReal = (sqlite3_file*)p; MemJournal copy = *p; memset(p, 0, sizeof(MemJournal)); rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0); if( rc==SQLITE_OK ){ int nChunk = copy.nChunkSize; i64 iOff = 0; FileChunk *pIter; for(pIter=copy.pFirst; pIter; pIter=pIter->pNext){ if( iOff + nChunk > copy.endpoint.iOffset ){ nChunk = copy.endpoint.iOffset - iOff; } rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff); if( rc ) break; iOff += nChunk; } if( rc==SQLITE_OK ){ /* No error has occurred. Free the in-memory buffers. */ memjrnlFreeChunks(copy.pFirst); } } if( rc!=SQLITE_OK ){ /* If an error occurred while creating or writing to the file, restore ** the original before returning. This way, SQLite uses the in-memory ** journal data to roll back changes made to the internal page-cache ** before this function was called. */ sqlite3OsClose(pReal); *p = copy; } return rc; } /* Forward reference */ static int memjrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size); /* ** Write data to the file. */ static int memjrnlWrite( sqlite3_file *pJfd, /* The journal file into which to write */ const void *zBuf, /* Take data to be written from here */ int iAmt, /* Number of bytes to write */ sqlite_int64 iOfst /* Begin writing at this offset into the file */ ){ MemJournal *p = (MemJournal *)pJfd; int nWrite = iAmt; u8 *zWrite = (u8 *)zBuf; /* If the file should be created now, create it and write the new data ** into the file on disk. */ if( p->nSpill>0 && (iAmt+iOfst)>p->nSpill ){ int rc = memjrnlCreateFile(p); if( rc==SQLITE_OK ){ rc = sqlite3OsWrite(pJfd, zBuf, iAmt, iOfst); } return rc; } /* If the contents of this write should be stored in memory */ else{ /* An in-memory journal file should only ever be appended to. Random ** access writes are not required. The only exception to this is when ** the in-memory journal is being used by a connection using the ** atomic-write optimization. In this case the first 28 bytes of the ** journal file may be written as part of committing the transaction. */ assert( iOfst<=p->endpoint.iOffset ); if( iOfst>0 && iOfst!=p->endpoint.iOffset ){ memjrnlTruncate(pJfd, iOfst); } if( iOfst==0 && p->pFirst ){ assert( p->nChunkSize>iAmt ); memcpy((u8*)p->pFirst->zChunk, zBuf, iAmt); }else{ while( nWrite>0 ){ FileChunk *pChunk = p->endpoint.pChunk; int iChunkOffset = (int)(p->endpoint.iOffset%p->nChunkSize); int iSpace = MIN(nWrite, p->nChunkSize - iChunkOffset); assert( pChunk!=0 || iChunkOffset==0 ); if( iChunkOffset==0 ){ /* New chunk is required to extend the file. */ FileChunk *pNew = sqlite3_malloc(fileChunkSize(p->nChunkSize)); if( !pNew ){ return SQLITE_IOERR_NOMEM_BKPT; } pNew->pNext = 0; if( pChunk ){ assert( p->pFirst ); pChunk->pNext = pNew; }else{ assert( !p->pFirst ); p->pFirst = pNew; } pChunk = p->endpoint.pChunk = pNew; } assert( pChunk!=0 ); memcpy((u8*)pChunk->zChunk + iChunkOffset, zWrite, iSpace); zWrite += iSpace; nWrite -= iSpace; p->endpoint.iOffset += iSpace; } } } return SQLITE_OK; } /* ** Truncate the in-memory file. */ static int memjrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){ MemJournal *p = (MemJournal *)pJfd; assert( p->endpoint.pChunk==0 || p->endpoint.pChunk->pNext==0 ); if( sizeendpoint.iOffset ){ FileChunk *pIter = 0; if( size==0 ){ memjrnlFreeChunks(p->pFirst); p->pFirst = 0; }else{ i64 iOff = p->nChunkSize; for(pIter=p->pFirst; ALWAYS(pIter) && iOffpNext){ iOff += p->nChunkSize; } if( ALWAYS(pIter) ){ memjrnlFreeChunks(pIter->pNext); pIter->pNext = 0; } } p->endpoint.pChunk = pIter; p->endpoint.iOffset = size; p->readpoint.pChunk = 0; p->readpoint.iOffset = 0; } return SQLITE_OK; } /* ** Close the file. */ static int memjrnlClose(sqlite3_file *pJfd){ MemJournal *p = (MemJournal *)pJfd; memjrnlFreeChunks(p->pFirst); return SQLITE_OK; } /* ** Sync the file. ** ** If the real file has been created, call its xSync method. Otherwise, ** syncing an in-memory journal is a no-op. */ static int memjrnlSync(sqlite3_file *pJfd, int flags){ UNUSED_PARAMETER2(pJfd, flags); return SQLITE_OK; } /* ** Query the size of the file in bytes. */ static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ MemJournal *p = (MemJournal *)pJfd; *pSize = (sqlite_int64) p->endpoint.iOffset; return SQLITE_OK; } /* ** Table of methods for MemJournal sqlite3_file object. */ static const struct sqlite3_io_methods MemJournalMethods = { 1, /* iVersion */ memjrnlClose, /* xClose */ memjrnlRead, /* xRead */ memjrnlWrite, /* xWrite */ memjrnlTruncate, /* xTruncate */ memjrnlSync, /* xSync */ memjrnlFileSize, /* xFileSize */ 0, /* xLock */ 0, /* xUnlock */ 0, /* xCheckReservedLock */ 0, /* xFileControl */ 0, /* xSectorSize */ 0, /* xDeviceCharacteristics */ 0, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ 0, /* xShmUnmap */ 0, /* xFetch */ 0 /* xUnfetch */ }; /* ** Open a journal file. ** ** The behaviour of the journal file depends on the value of parameter ** nSpill. If nSpill is 0, then the journal file is always create and ** accessed using the underlying VFS. If nSpill is less than zero, then ** all content is always stored in main-memory. Finally, if nSpill is a ** positive value, then the journal file is initially created in-memory ** but may be flushed to disk later on. In this case the journal file is ** flushed to disk either when it grows larger than nSpill bytes in size, ** or when sqlite3JournalCreate() is called. */ SQLITE_PRIVATE int sqlite3JournalOpen( sqlite3_vfs *pVfs, /* The VFS to use for actual file I/O */ const char *zName, /* Name of the journal file */ sqlite3_file *pJfd, /* Preallocated, blank file handle */ int flags, /* Opening flags */ int nSpill /* Bytes buffered before opening the file */ ){ MemJournal *p = (MemJournal*)pJfd; /* Zero the file-handle object. If nSpill was passed zero, initialize ** it using the sqlite3OsOpen() function of the underlying VFS. In this ** case none of the code in this module is executed as a result of calls ** made on the journal file-handle. */ memset(p, 0, sizeof(MemJournal)); if( nSpill==0 ){ return sqlite3OsOpen(pVfs, zName, pJfd, flags, 0); } if( nSpill>0 ){ p->nChunkSize = nSpill; }else{ p->nChunkSize = 8 + MEMJOURNAL_DFLT_FILECHUNKSIZE - sizeof(FileChunk); assert( MEMJOURNAL_DFLT_FILECHUNKSIZE==fileChunkSize(p->nChunkSize) ); } pJfd->pMethods = (const sqlite3_io_methods*)&MemJournalMethods; p->nSpill = nSpill; p->flags = flags; p->zJournal = zName; p->pVfs = pVfs; return SQLITE_OK; } /* ** Open an in-memory journal file. */ SQLITE_PRIVATE void sqlite3MemJournalOpen(sqlite3_file *pJfd){ sqlite3JournalOpen(0, 0, pJfd, 0, -1); } #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) /* ** If the argument p points to a MemJournal structure that is not an ** in-memory-only journal file (i.e. is one that was opened with a +ve ** nSpill parameter or as SQLITE_OPEN_MAIN_JOURNAL), and the underlying ** file has not yet been created, create it now. */ SQLITE_PRIVATE int sqlite3JournalCreate(sqlite3_file *pJfd){ int rc = SQLITE_OK; MemJournal *p = (MemJournal*)pJfd; if( pJfd->pMethods==&MemJournalMethods && ( #ifdef SQLITE_ENABLE_ATOMIC_WRITE p->nSpill>0 #else /* While this appears to not be possible without ATOMIC_WRITE, the ** paths are complex, so it seems prudent to leave the test in as ** a NEVER(), in case our analysis is subtly flawed. */ NEVER(p->nSpill>0) #endif #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE || (p->flags & SQLITE_OPEN_MAIN_JOURNAL) #endif )){ rc = memjrnlCreateFile(p); } return rc; } #endif /* ** The file-handle passed as the only argument is open on a journal file. ** Return true if this "journal file" is currently stored in heap memory, ** or false otherwise. */ SQLITE_PRIVATE int sqlite3JournalIsInMemory(sqlite3_file *p){ return p->pMethods==&MemJournalMethods; } /* ** Return the number of bytes required to store a JournalFile that uses vfs ** pVfs to create the underlying on-disk files. */ SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *pVfs){ return MAX(pVfs->szOsFile, (int)sizeof(MemJournal)); } /************** End of memjournal.c ******************************************/ /************** Begin file walker.c ******************************************/ /* ** 2008 August 16 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used for walking the parser tree for ** an SQL statement. */ /* #include "sqliteInt.h" */ /* #include */ /* #include */ #if !defined(SQLITE_OMIT_WINDOWFUNC) /* ** Walk all expressions linked into the list of Window objects passed ** as the second argument. */ static int walkWindowList(Walker *pWalker, Window *pList, int bOneOnly){ Window *pWin; for(pWin=pList; pWin; pWin=pWin->pNextWin){ int rc; rc = sqlite3WalkExprList(pWalker, pWin->pOrderBy); if( rc ) return WRC_Abort; rc = sqlite3WalkExprList(pWalker, pWin->pPartition); if( rc ) return WRC_Abort; rc = sqlite3WalkExpr(pWalker, pWin->pFilter); if( rc ) return WRC_Abort; rc = sqlite3WalkExpr(pWalker, pWin->pStart); if( rc ) return WRC_Abort; rc = sqlite3WalkExpr(pWalker, pWin->pEnd); if( rc ) return WRC_Abort; if( bOneOnly ) break; } return WRC_Continue; } #endif /* ** Walk an expression tree. Invoke the callback once for each node ** of the expression, while descending. (In other words, the callback ** is invoked before visiting children.) ** ** The return value from the callback should be one of the WRC_* ** constants to specify how to proceed with the walk. ** ** WRC_Continue Continue descending down the tree. ** ** WRC_Prune Do not descend into child nodes, but allow ** the walk to continue with sibling nodes. ** ** WRC_Abort Do no more callbacks. Unwind the stack and ** return from the top-level walk call. ** ** The return value from this routine is WRC_Abort to abandon the tree walk ** and WRC_Continue to continue. */ static SQLITE_NOINLINE int walkExpr(Walker *pWalker, Expr *pExpr){ int rc; testcase( ExprHasProperty(pExpr, EP_TokenOnly) ); testcase( ExprHasProperty(pExpr, EP_Reduced) ); while(1){ rc = pWalker->xExprCallback(pWalker, pExpr); if( rc ) return rc & WRC_Abort; if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ assert( pExpr->x.pList==0 || pExpr->pRight==0 ); if( pExpr->pLeft && walkExpr(pWalker, pExpr->pLeft) ) return WRC_Abort; if( pExpr->pRight ){ assert( !ExprHasProperty(pExpr, EP_WinFunc) ); pExpr = pExpr->pRight; continue; }else if( ExprUseXSelect(pExpr) ){ assert( !ExprHasProperty(pExpr, EP_WinFunc) ); if( sqlite3WalkSelect(pWalker, pExpr->x.pSelect) ) return WRC_Abort; }else{ if( pExpr->x.pList ){ if( sqlite3WalkExprList(pWalker, pExpr->x.pList) ) return WRC_Abort; } #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ if( walkWindowList(pWalker, pExpr->y.pWin, 1) ) return WRC_Abort; } #endif } } break; } return WRC_Continue; } SQLITE_PRIVATE int sqlite3WalkExpr(Walker *pWalker, Expr *pExpr){ return pExpr ? walkExpr(pWalker,pExpr) : WRC_Continue; } /* ** Call sqlite3WalkExpr() for every expression in list p or until ** an abort request is seen. */ SQLITE_PRIVATE int sqlite3WalkExprList(Walker *pWalker, ExprList *p){ int i; struct ExprList_item *pItem; if( p ){ for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){ if( sqlite3WalkExpr(pWalker, pItem->pExpr) ) return WRC_Abort; } } return WRC_Continue; } /* ** This is a no-op callback for Walker->xSelectCallback2. If this ** callback is set, then the Select->pWinDefn list is traversed. */ SQLITE_PRIVATE void sqlite3WalkWinDefnDummyCallback(Walker *pWalker, Select *p){ UNUSED_PARAMETER(pWalker); UNUSED_PARAMETER(p); /* No-op */ } /* ** Walk all expressions associated with SELECT statement p. Do ** not invoke the SELECT callback on p, but do (of course) invoke ** any expr callbacks and SELECT callbacks that come from subqueries. ** Return WRC_Abort or WRC_Continue. */ SQLITE_PRIVATE int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){ if( sqlite3WalkExprList(pWalker, p->pEList) ) return WRC_Abort; if( sqlite3WalkExpr(pWalker, p->pWhere) ) return WRC_Abort; if( sqlite3WalkExprList(pWalker, p->pGroupBy) ) return WRC_Abort; if( sqlite3WalkExpr(pWalker, p->pHaving) ) return WRC_Abort; if( sqlite3WalkExprList(pWalker, p->pOrderBy) ) return WRC_Abort; if( sqlite3WalkExpr(pWalker, p->pLimit) ) return WRC_Abort; #if !defined(SQLITE_OMIT_WINDOWFUNC) if( p->pWinDefn ){ Parse *pParse; if( pWalker->xSelectCallback2==sqlite3WalkWinDefnDummyCallback || ((pParse = pWalker->pParse)!=0 && IN_RENAME_OBJECT) #ifndef SQLITE_OMIT_CTE || pWalker->xSelectCallback2==sqlite3SelectPopWith #endif ){ /* The following may return WRC_Abort if there are unresolvable ** symbols (e.g. a table that does not exist) in a window definition. */ int rc = walkWindowList(pWalker, p->pWinDefn, 0); return rc; } } #endif return WRC_Continue; } /* ** Walk the parse trees associated with all subqueries in the ** FROM clause of SELECT statement p. Do not invoke the select ** callback on p, but do invoke it on each FROM clause subquery ** and on any subqueries further down in the tree. Return ** WRC_Abort or WRC_Continue; */ SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker *pWalker, Select *p){ SrcList *pSrc; int i; SrcItem *pItem; pSrc = p->pSrc; if( ALWAYS(pSrc) ){ for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ if( pItem->pSelect && sqlite3WalkSelect(pWalker, pItem->pSelect) ){ return WRC_Abort; } if( pItem->fg.isTabFunc && sqlite3WalkExprList(pWalker, pItem->u1.pFuncArg) ){ return WRC_Abort; } } } return WRC_Continue; } /* ** Call sqlite3WalkExpr() for every expression in Select statement p. ** Invoke sqlite3WalkSelect() for subqueries in the FROM clause and ** on the compound select chain, p->pPrior. ** ** If it is not NULL, the xSelectCallback() callback is invoked before ** the walk of the expressions and FROM clause. The xSelectCallback2() ** method is invoked following the walk of the expressions and FROM clause, ** but only if both xSelectCallback and xSelectCallback2 are both non-NULL ** and if the expressions and FROM clause both return WRC_Continue; ** ** Return WRC_Continue under normal conditions. Return WRC_Abort if ** there is an abort request. ** ** If the Walker does not have an xSelectCallback() then this routine ** is a no-op returning WRC_Continue. */ SQLITE_PRIVATE int sqlite3WalkSelect(Walker *pWalker, Select *p){ int rc; if( p==0 ) return WRC_Continue; if( pWalker->xSelectCallback==0 ) return WRC_Continue; do{ rc = pWalker->xSelectCallback(pWalker, p); if( rc ) return rc & WRC_Abort; if( sqlite3WalkSelectExpr(pWalker, p) || sqlite3WalkSelectFrom(pWalker, p) ){ return WRC_Abort; } if( pWalker->xSelectCallback2 ){ pWalker->xSelectCallback2(pWalker, p); } p = p->pPrior; }while( p!=0 ); return WRC_Continue; } /* Increase the walkerDepth when entering a subquery, and ** descrease when leaving the subquery. */ SQLITE_PRIVATE int sqlite3WalkerDepthIncrease(Walker *pWalker, Select *pSelect){ UNUSED_PARAMETER(pSelect); pWalker->walkerDepth++; return WRC_Continue; } SQLITE_PRIVATE void sqlite3WalkerDepthDecrease(Walker *pWalker, Select *pSelect){ UNUSED_PARAMETER(pSelect); pWalker->walkerDepth--; } /* ** No-op routine for the parse-tree walker. ** ** When this routine is the Walker.xExprCallback then expression trees ** are walked without any actions being taken at each node. Presumably, ** when this routine is used for Walker.xExprCallback then ** Walker.xSelectCallback is set to do something useful for every ** subquery in the parser tree. */ SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker *NotUsed, Expr *NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return WRC_Continue; } /* ** No-op routine for the parse-tree walker for SELECT statements. ** subquery in the parser tree. */ SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker *NotUsed, Select *NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return WRC_Continue; } /************** End of walker.c **********************************************/ /************** Begin file resolve.c *****************************************/ /* ** 2008 August 18 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains routines used for walking the parser tree and ** resolve all identifiers by associating them with a particular ** table and column. */ /* #include "sqliteInt.h" */ /* ** Magic table number to mean the EXCLUDED table in an UPSERT statement. */ #define EXCLUDED_TABLE_NUMBER 2 /* ** Walk the expression tree pExpr and increase the aggregate function ** depth (the Expr.op2 field) by N on every TK_AGG_FUNCTION node. ** This needs to occur when copying a TK_AGG_FUNCTION node from an ** outer query into an inner subquery. ** ** incrAggFunctionDepth(pExpr,n) is the main routine. incrAggDepth(..) ** is a helper function - a callback for the tree walker. ** ** See also the sqlite3WindowExtraAggFuncDepth() routine in window.c */ static int incrAggDepth(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_AGG_FUNCTION ) pExpr->op2 += pWalker->u.n; return WRC_Continue; } static void incrAggFunctionDepth(Expr *pExpr, int N){ if( N>0 ){ Walker w; memset(&w, 0, sizeof(w)); w.xExprCallback = incrAggDepth; w.u.n = N; sqlite3WalkExpr(&w, pExpr); } } /* ** Turn the pExpr expression into an alias for the iCol-th column of the ** result set in pEList. ** ** If the reference is followed by a COLLATE operator, then make sure ** the COLLATE operator is preserved. For example: ** ** SELECT a+b, c+d FROM t1 ORDER BY 1 COLLATE nocase; ** ** Should be transformed into: ** ** SELECT a+b, c+d FROM t1 ORDER BY (a+b) COLLATE nocase; ** ** The nSubquery parameter specifies how many levels of subquery the ** alias is removed from the original expression. The usual value is ** zero but it might be more if the alias is contained within a subquery ** of the original expression. The Expr.op2 field of TK_AGG_FUNCTION ** structures must be increased by the nSubquery amount. */ static void resolveAlias( Parse *pParse, /* Parsing context */ ExprList *pEList, /* A result set */ int iCol, /* A column in the result set. 0..pEList->nExpr-1 */ Expr *pExpr, /* Transform this into an alias to the result set */ int nSubquery /* Number of subqueries that the label is moving */ ){ Expr *pOrig; /* The iCol-th column of the result set */ Expr *pDup; /* Copy of pOrig */ sqlite3 *db; /* The database connection */ assert( iCol>=0 && iColnExpr ); pOrig = pEList->a[iCol].pExpr; assert( pOrig!=0 ); db = pParse->db; pDup = sqlite3ExprDup(db, pOrig, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDup); pDup = 0; }else{ incrAggFunctionDepth(pDup, nSubquery); if( pExpr->op==TK_COLLATE ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); pDup = sqlite3ExprAddCollateString(pParse, pDup, pExpr->u.zToken); } /* Before calling sqlite3ExprDelete(), set the EP_Static flag. This ** prevents ExprDelete() from deleting the Expr structure itself, ** allowing it to be repopulated by the memcpy() on the following line. ** The pExpr->u.zToken might point into memory that will be freed by the ** sqlite3DbFree(db, pDup) on the last line of this block, so be sure to ** make a copy of the token before doing the sqlite3DbFree(). */ ExprSetProperty(pExpr, EP_Static); sqlite3ExprDelete(db, pExpr); memcpy(pExpr, pDup, sizeof(*pExpr)); if( !ExprHasProperty(pExpr, EP_IntValue) && pExpr->u.zToken!=0 ){ assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 ); pExpr->u.zToken = sqlite3DbStrDup(db, pExpr->u.zToken); pExpr->flags |= EP_MemToken; } if( ExprHasProperty(pExpr, EP_WinFunc) ){ if( ALWAYS(pExpr->y.pWin!=0) ){ pExpr->y.pWin->pOwner = pExpr; } } sqlite3DbFree(db, pDup); } } /* ** Return TRUE if the name zCol occurs anywhere in the USING clause. ** ** Return FALSE if the USING clause is NULL or if it does not contain ** zCol. */ static int nameInUsingClause(IdList *pUsing, const char *zCol){ if( pUsing ){ int k; for(k=0; knId; k++){ if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ) return 1; } } return 0; } /* ** Subqueries stores the original database, table and column names for their ** result sets in ExprList.a[].zSpan, in the form "DATABASE.TABLE.COLUMN". ** Check to see if the zSpan given to this routine matches the zDb, zTab, ** and zCol. If any of zDb, zTab, and zCol are NULL then those fields will ** match anything. */ SQLITE_PRIVATE int sqlite3MatchEName( const struct ExprList_item *pItem, const char *zCol, const char *zTab, const char *zDb ){ int n; const char *zSpan; if( pItem->eEName!=ENAME_TAB ) return 0; zSpan = pItem->zEName; for(n=0; ALWAYS(zSpan[n]) && zSpan[n]!='.'; n++){} if( zDb && (sqlite3StrNICmp(zSpan, zDb, n)!=0 || zDb[n]!=0) ){ return 0; } zSpan += n+1; for(n=0; ALWAYS(zSpan[n]) && zSpan[n]!='.'; n++){} if( zTab && (sqlite3StrNICmp(zSpan, zTab, n)!=0 || zTab[n]!=0) ){ return 0; } zSpan += n+1; if( zCol && sqlite3StrICmp(zSpan, zCol)!=0 ){ return 0; } return 1; } /* ** Return TRUE if the double-quoted string mis-feature should be supported. */ static int areDoubleQuotedStringsEnabled(sqlite3 *db, NameContext *pTopNC){ if( db->init.busy ) return 1; /* Always support for legacy schemas */ if( pTopNC->ncFlags & NC_IsDDL ){ /* Currently parsing a DDL statement */ if( sqlite3WritableSchema(db) && (db->flags & SQLITE_DqsDML)!=0 ){ return 1; } return (db->flags & SQLITE_DqsDDL)!=0; }else{ /* Currently parsing a DML statement */ return (db->flags & SQLITE_DqsDML)!=0; } } /* ** The argument is guaranteed to be a non-NULL Expr node of type TK_COLUMN. ** return the appropriate colUsed mask. */ SQLITE_PRIVATE Bitmask sqlite3ExprColUsed(Expr *pExpr){ int n; Table *pExTab; n = pExpr->iColumn; assert( ExprUseYTab(pExpr) ); pExTab = pExpr->y.pTab; assert( pExTab!=0 ); if( (pExTab->tabFlags & TF_HasGenerated)!=0 && (pExTab->aCol[n].colFlags & COLFLAG_GENERATED)!=0 ){ testcase( pExTab->nCol==BMS-1 ); testcase( pExTab->nCol==BMS ); return pExTab->nCol>=BMS ? ALLBITS : MASKBIT(pExTab->nCol)-1; }else{ testcase( n==BMS-1 ); testcase( n==BMS ); if( n>=BMS ) n = BMS-1; return ((Bitmask)1)<iDb Set the index in db->aDb[] of the database X ** (even if X is implied). ** pExpr->iTable Set to the cursor number for the table obtained ** from pSrcList. ** pExpr->y.pTab Points to the Table structure of X.Y (even if ** X and/or Y are implied.) ** pExpr->iColumn Set to the column number within the table. ** pExpr->op Set to TK_COLUMN. ** pExpr->pLeft Any expression this points to is deleted ** pExpr->pRight Any expression this points to is deleted. ** ** The zDb variable is the name of the database (the "X"). This value may be ** NULL meaning that name is of the form Y.Z or Z. Any available database ** can be used. The zTable variable is the name of the table (the "Y"). This ** value can be NULL if zDb is also NULL. If zTable is NULL it ** means that the form of the name is Z and that columns from any table ** can be used. ** ** If the name cannot be resolved unambiguously, leave an error message ** in pParse and return WRC_Abort. Return WRC_Prune on success. */ static int lookupName( Parse *pParse, /* The parsing context */ const char *zDb, /* Name of the database containing table, or NULL */ const char *zTab, /* Name of table containing column, or NULL */ const char *zCol, /* Name of the column. */ NameContext *pNC, /* The name context used to resolve the name */ Expr *pExpr /* Make this EXPR node point to the selected column */ ){ int i, j; /* Loop counters */ int cnt = 0; /* Number of matching column names */ int cntTab = 0; /* Number of matching table names */ int nSubquery = 0; /* How many levels of subquery */ sqlite3 *db = pParse->db; /* The database connection */ SrcItem *pItem; /* Use for looping over pSrcList items */ SrcItem *pMatch = 0; /* The matching pSrcList item */ NameContext *pTopNC = pNC; /* First namecontext in the list */ Schema *pSchema = 0; /* Schema of the expression */ int eNewExprOp = TK_COLUMN; /* New value for pExpr->op on success */ Table *pTab = 0; /* Table hold the row */ Column *pCol; /* A column of pTab */ assert( pNC ); /* the name context cannot be NULL. */ assert( zCol ); /* The Z in X.Y.Z cannot be NULL */ assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); /* Initialize the node to no-match */ pExpr->iTable = -1; ExprSetVVAProperty(pExpr, EP_NoReduce); /* Translate the schema name in zDb into a pointer to the corresponding ** schema. If not found, pSchema will remain NULL and nothing will match ** resulting in an appropriate error message toward the end of this routine */ if( zDb ){ testcase( pNC->ncFlags & NC_PartIdx ); testcase( pNC->ncFlags & NC_IsCheck ); if( (pNC->ncFlags & (NC_PartIdx|NC_IsCheck))!=0 ){ /* Silently ignore database qualifiers inside CHECK constraints and ** partial indices. Do not raise errors because that might break ** legacy and because it does not hurt anything to just ignore the ** database name. */ zDb = 0; }else{ for(i=0; inDb; i++){ assert( db->aDb[i].zDbSName ); if( sqlite3StrICmp(db->aDb[i].zDbSName,zDb)==0 ){ pSchema = db->aDb[i].pSchema; break; } } if( i==db->nDb && sqlite3StrICmp("main", zDb)==0 ){ /* This branch is taken when the main database has been renamed ** using SQLITE_DBCONFIG_MAINDBNAME. */ pSchema = db->aDb[0].pSchema; zDb = db->aDb[0].zDbSName; } } } /* Start at the inner-most context and move outward until a match is found */ assert( pNC && cnt==0 ); do{ ExprList *pEList; SrcList *pSrcList = pNC->pSrcList; if( pSrcList ){ for(i=0, pItem=pSrcList->a; inSrc; i++, pItem++){ u8 hCol; pTab = pItem->pTab; assert( pTab!=0 && pTab->zName!=0 ); assert( pTab->nCol>0 || pParse->nErr ); if( pItem->pSelect && (pItem->pSelect->selFlags & SF_NestedFrom)!=0 ){ int hit = 0; pEList = pItem->pSelect->pEList; for(j=0; jnExpr; j++){ if( sqlite3MatchEName(&pEList->a[j], zCol, zTab, zDb) ){ cnt++; cntTab = 2; pMatch = pItem; pExpr->iColumn = j; hit = 1; } } if( hit || zTab==0 ) continue; } if( zDb ){ if( pTab->pSchema!=pSchema ) continue; if( pSchema==0 && strcmp(zDb,"*")!=0 ) continue; } if( zTab ){ const char *zTabName = pItem->zAlias ? pItem->zAlias : pTab->zName; assert( zTabName!=0 ); if( sqlite3StrICmp(zTabName, zTab)!=0 ){ continue; } assert( ExprUseYTab(pExpr) ); if( IN_RENAME_OBJECT && pItem->zAlias ){ sqlite3RenameTokenRemap(pParse, 0, (void*)&pExpr->y.pTab); } } hCol = sqlite3StrIHash(zCol); for(j=0, pCol=pTab->aCol; jnCol; j++, pCol++){ if( pCol->hName==hCol && sqlite3StrICmp(pCol->zCnName, zCol)==0 ){ /* If there has been exactly one prior match and this match ** is for the right-hand table of a NATURAL JOIN or is in a ** USING clause, then skip this match. */ if( cnt==1 ){ if( pItem->fg.jointype & JT_NATURAL ) continue; if( nameInUsingClause(pItem->pUsing, zCol) ) continue; } cnt++; pMatch = pItem; /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */ pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j; break; } } if( 0==cnt && VisibleRowid(pTab) ){ cntTab++; pMatch = pItem; } } if( pMatch ){ pExpr->iTable = pMatch->iCursor; assert( ExprUseYTab(pExpr) ); pExpr->y.pTab = pMatch->pTab; /* RIGHT JOIN not (yet) supported */ assert( (pMatch->fg.jointype & JT_RIGHT)==0 ); if( (pMatch->fg.jointype & JT_LEFT)!=0 ){ ExprSetProperty(pExpr, EP_CanBeNull); } pSchema = pExpr->y.pTab->pSchema; } } /* if( pSrcList ) */ #if !defined(SQLITE_OMIT_TRIGGER) || !defined(SQLITE_OMIT_UPSERT) /* If we have not already resolved the name, then maybe ** it is a new.* or old.* trigger argument reference. Or ** maybe it is an excluded.* from an upsert. Or maybe it is ** a reference in the RETURNING clause to a table being modified. */ if( cnt==0 && zDb==0 ){ pTab = 0; #ifndef SQLITE_OMIT_TRIGGER if( pParse->pTriggerTab!=0 ){ int op = pParse->eTriggerOp; assert( op==TK_DELETE || op==TK_UPDATE || op==TK_INSERT ); if( pParse->bReturning ){ if( (pNC->ncFlags & NC_UBaseReg)!=0 && (zTab==0 || sqlite3StrICmp(zTab,pParse->pTriggerTab->zName)==0) ){ pExpr->iTable = op!=TK_DELETE; pTab = pParse->pTriggerTab; } }else if( op!=TK_DELETE && zTab && sqlite3StrICmp("new",zTab) == 0 ){ pExpr->iTable = 1; pTab = pParse->pTriggerTab; }else if( op!=TK_INSERT && zTab && sqlite3StrICmp("old",zTab)==0 ){ pExpr->iTable = 0; pTab = pParse->pTriggerTab; } } #endif /* SQLITE_OMIT_TRIGGER */ #ifndef SQLITE_OMIT_UPSERT if( (pNC->ncFlags & NC_UUpsert)!=0 && zTab!=0 ){ Upsert *pUpsert = pNC->uNC.pUpsert; if( pUpsert && sqlite3StrICmp("excluded",zTab)==0 ){ pTab = pUpsert->pUpsertSrc->a[0].pTab; pExpr->iTable = EXCLUDED_TABLE_NUMBER; } } #endif /* SQLITE_OMIT_UPSERT */ if( pTab ){ int iCol; u8 hCol = sqlite3StrIHash(zCol); pSchema = pTab->pSchema; cntTab++; for(iCol=0, pCol=pTab->aCol; iColnCol; iCol++, pCol++){ if( pCol->hName==hCol && sqlite3StrICmp(pCol->zCnName, zCol)==0 ){ if( iCol==pTab->iPKey ){ iCol = -1; } break; } } if( iCol>=pTab->nCol && sqlite3IsRowid(zCol) && VisibleRowid(pTab) ){ /* IMP: R-51414-32910 */ iCol = -1; } if( iColnCol ){ cnt++; pMatch = 0; #ifndef SQLITE_OMIT_UPSERT if( pExpr->iTable==EXCLUDED_TABLE_NUMBER ){ testcase( iCol==(-1) ); assert( ExprUseYTab(pExpr) ); if( IN_RENAME_OBJECT ){ pExpr->iColumn = iCol; pExpr->y.pTab = pTab; eNewExprOp = TK_COLUMN; }else{ pExpr->iTable = pNC->uNC.pUpsert->regData + sqlite3TableColumnToStorage(pTab, iCol); eNewExprOp = TK_REGISTER; } }else #endif /* SQLITE_OMIT_UPSERT */ { assert( ExprUseYTab(pExpr) ); pExpr->y.pTab = pTab; if( pParse->bReturning ){ eNewExprOp = TK_REGISTER; pExpr->op2 = TK_COLUMN; pExpr->iTable = pNC->uNC.iBaseReg + (pTab->nCol+1)*pExpr->iTable + sqlite3TableColumnToStorage(pTab, iCol) + 1; }else{ pExpr->iColumn = (i16)iCol; eNewExprOp = TK_TRIGGER; #ifndef SQLITE_OMIT_TRIGGER if( iCol<0 ){ pExpr->affExpr = SQLITE_AFF_INTEGER; }else if( pExpr->iTable==0 ){ testcase( iCol==31 ); testcase( iCol==32 ); pParse->oldmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<newmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<ncFlags & (NC_IdxExpr|NC_GenCol))==0 && sqlite3IsRowid(zCol) && ALWAYS(VisibleRowid(pMatch->pTab)) ){ cnt = 1; pExpr->iColumn = -1; pExpr->affExpr = SQLITE_AFF_INTEGER; } /* ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z ** might refer to an result-set alias. This happens, for example, when ** we are resolving names in the WHERE clause of the following command: ** ** SELECT a+b AS x FROM table WHERE x<10; ** ** In cases like this, replace pExpr with a copy of the expression that ** forms the result set entry ("a+b" in the example) and return immediately. ** Note that the expression in the result set should have already been ** resolved by the time the WHERE clause is resolved. ** ** The ability to use an output result-set column in the WHERE, GROUP BY, ** or HAVING clauses, or as part of a larger expression in the ORDER BY ** clause is not standard SQL. This is a (goofy) SQLite extension, that ** is supported for backwards compatibility only. Hence, we issue a warning ** on sqlite3_log() whenever the capability is used. */ if( cnt==0 && (pNC->ncFlags & NC_UEList)!=0 && zTab==0 ){ pEList = pNC->uNC.pEList; assert( pEList!=0 ); for(j=0; jnExpr; j++){ char *zAs = pEList->a[j].zEName; if( pEList->a[j].eEName==ENAME_NAME && sqlite3_stricmp(zAs, zCol)==0 ){ Expr *pOrig; assert( pExpr->pLeft==0 && pExpr->pRight==0 ); assert( ExprUseXList(pExpr)==0 || pExpr->x.pList==0 ); assert( ExprUseXSelect(pExpr)==0 || pExpr->x.pSelect==0 ); pOrig = pEList->a[j].pExpr; if( (pNC->ncFlags&NC_AllowAgg)==0 && ExprHasProperty(pOrig, EP_Agg) ){ sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs); return WRC_Abort; } if( ExprHasProperty(pOrig, EP_Win) && ((pNC->ncFlags&NC_AllowWin)==0 || pNC!=pTopNC ) ){ sqlite3ErrorMsg(pParse, "misuse of aliased window function %s",zAs); return WRC_Abort; } if( sqlite3ExprVectorSize(pOrig)!=1 ){ sqlite3ErrorMsg(pParse, "row value misused"); return WRC_Abort; } resolveAlias(pParse, pEList, j, pExpr, nSubquery); cnt = 1; pMatch = 0; assert( zTab==0 && zDb==0 ); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, 0, (void*)pExpr); } goto lookupname_end; } } } /* Advance to the next name context. The loop will exit when either ** we have a match (cnt>0) or when we run out of name contexts. */ if( cnt ) break; pNC = pNC->pNext; nSubquery++; }while( pNC ); /* ** If X and Y are NULL (in other words if only the column name Z is ** supplied) and the value of Z is enclosed in double-quotes, then ** Z is a string literal if it doesn't match any column names. In that ** case, we need to return right away and not make any changes to ** pExpr. ** ** Because no reference was made to outer contexts, the pNC->nRef ** fields are not changed in any context. */ if( cnt==0 && zTab==0 ){ assert( pExpr->op==TK_ID ); if( ExprHasProperty(pExpr,EP_DblQuoted) && areDoubleQuotedStringsEnabled(db, pTopNC) ){ /* If a double-quoted identifier does not match any known column name, ** then treat it as a string. ** ** This hack was added in the early days of SQLite in a misguided attempt ** to be compatible with MySQL 3.x, which used double-quotes for strings. ** I now sorely regret putting in this hack. The effect of this hack is ** that misspelled identifier names are silently converted into strings ** rather than causing an error, to the frustration of countless ** programmers. To all those frustrated programmers, my apologies. ** ** Someday, I hope to get rid of this hack. Unfortunately there is ** a huge amount of legacy SQL that uses it. So for now, we just ** issue a warning. */ sqlite3_log(SQLITE_WARNING, "double-quoted string literal: \"%w\"", zCol); #ifdef SQLITE_ENABLE_NORMALIZE sqlite3VdbeAddDblquoteStr(db, pParse->pVdbe, zCol); #endif pExpr->op = TK_STRING; memset(&pExpr->y, 0, sizeof(pExpr->y)); return WRC_Prune; } if( sqlite3ExprIdToTrueFalse(pExpr) ){ return WRC_Prune; } } /* ** cnt==0 means there was not match. cnt>1 means there were two or ** more matches. Either way, we have an error. */ if( cnt!=1 ){ const char *zErr; zErr = cnt==0 ? "no such column" : "ambiguous column name"; if( zDb ){ sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol); }else if( zTab ){ sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol); }else{ sqlite3ErrorMsg(pParse, "%s: %s", zErr, zCol); } sqlite3RecordErrorOffsetOfExpr(pParse->db, pExpr); pParse->checkSchema = 1; pTopNC->nNcErr++; } /* If a column from a table in pSrcList is referenced, then record ** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes ** bit 0 to be set. Column 1 sets bit 1. And so forth. Bit 63 is ** set if the 63rd or any subsequent column is used. ** ** The colUsed mask is an optimization used to help determine if an ** index is a covering index. The correct answer is still obtained ** if the mask contains extra set bits. However, it is important to ** avoid setting bits beyond the maximum column number of the table. ** (See ticket [b92e5e8ec2cdbaa1]). ** ** If a generated column is referenced, set bits for every column ** of the table. */ if( pExpr->iColumn>=0 && pMatch!=0 ){ pMatch->colUsed |= sqlite3ExprColUsed(pExpr); } /* Clean up and return */ if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ sqlite3ExprDelete(db, pExpr->pLeft); pExpr->pLeft = 0; sqlite3ExprDelete(db, pExpr->pRight); pExpr->pRight = 0; } pExpr->op = eNewExprOp; ExprSetProperty(pExpr, EP_Leaf); lookupname_end: if( cnt==1 ){ assert( pNC!=0 ); #ifndef SQLITE_OMIT_AUTHORIZATION if( pParse->db->xAuth && (pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER) ){ sqlite3AuthRead(pParse, pExpr, pSchema, pNC->pSrcList); } #endif /* Increment the nRef value on all name contexts from TopNC up to ** the point where the name matched. */ for(;;){ assert( pTopNC!=0 ); pTopNC->nRef++; if( pTopNC==pNC ) break; pTopNC = pTopNC->pNext; } return WRC_Prune; } else { return WRC_Abort; } } /* ** Allocate and return a pointer to an expression to load the column iCol ** from datasource iSrc in SrcList pSrc. */ SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){ Expr *p = sqlite3ExprAlloc(db, TK_COLUMN, 0, 0); if( p ){ SrcItem *pItem = &pSrc->a[iSrc]; Table *pTab; assert( ExprUseYTab(p) ); pTab = p->y.pTab = pItem->pTab; p->iTable = pItem->iCursor; if( p->y.pTab->iPKey==iCol ){ p->iColumn = -1; }else{ p->iColumn = (ynVar)iCol; if( (pTab->tabFlags & TF_HasGenerated)!=0 && (pTab->aCol[iCol].colFlags & COLFLAG_GENERATED)!=0 ){ testcase( pTab->nCol==63 ); testcase( pTab->nCol==64 ); pItem->colUsed = pTab->nCol>=64 ? ALLBITS : MASKBIT(pTab->nCol)-1; }else{ testcase( iCol==BMS ); testcase( iCol==BMS-1 ); pItem->colUsed |= ((Bitmask)1)<<(iCol>=BMS ? BMS-1 : iCol); } } } return p; } /* ** Report an error that an expression is not valid for some set of ** pNC->ncFlags values determined by validMask. ** ** static void notValid( ** Parse *pParse, // Leave error message here ** NameContext *pNC, // The name context ** const char *zMsg, // Type of error ** int validMask, // Set of contexts for which prohibited ** Expr *pExpr // Invalidate this expression on error ** ){...} ** ** As an optimization, since the conditional is almost always false ** (because errors are rare), the conditional is moved outside of the ** function call using a macro. */ static void notValidImpl( Parse *pParse, /* Leave error message here */ NameContext *pNC, /* The name context */ const char *zMsg, /* Type of error */ Expr *pExpr, /* Invalidate this expression on error */ Expr *pError /* Associate error with this expression */ ){ const char *zIn = "partial index WHERE clauses"; if( pNC->ncFlags & NC_IdxExpr ) zIn = "index expressions"; #ifndef SQLITE_OMIT_CHECK else if( pNC->ncFlags & NC_IsCheck ) zIn = "CHECK constraints"; #endif #ifndef SQLITE_OMIT_GENERATED_COLUMNS else if( pNC->ncFlags & NC_GenCol ) zIn = "generated columns"; #endif sqlite3ErrorMsg(pParse, "%s prohibited in %s", zMsg, zIn); if( pExpr ) pExpr->op = TK_NULL; sqlite3RecordErrorOffsetOfExpr(pParse->db, pError); } #define sqlite3ResolveNotValid(P,N,M,X,E,R) \ assert( ((X)&~(NC_IsCheck|NC_PartIdx|NC_IdxExpr|NC_GenCol))==0 ); \ if( ((N)->ncFlags & (X))!=0 ) notValidImpl(P,N,M,E,R); /* ** Expression p should encode a floating point value between 1.0 and 0.0. ** Return 1024 times this value. Or return -1 if p is not a floating point ** value between 1.0 and 0.0. */ static int exprProbability(Expr *p){ double r = -1.0; if( p->op!=TK_FLOAT ) return -1; assert( !ExprHasProperty(p, EP_IntValue) ); sqlite3AtoF(p->u.zToken, &r, sqlite3Strlen30(p->u.zToken), SQLITE_UTF8); assert( r>=0.0 ); if( r>1.0 ) return -1; return (int)(r*134217728.0); } /* ** This routine is callback for sqlite3WalkExpr(). ** ** Resolve symbolic names into TK_COLUMN operators for the current ** node in the expression tree. Return 0 to continue the search down ** the tree or 2 to abort the tree walk. ** ** This routine also does error checking and name resolution for ** function names. The operator for aggregate functions is changed ** to TK_AGG_FUNCTION. */ static int resolveExprStep(Walker *pWalker, Expr *pExpr){ NameContext *pNC; Parse *pParse; pNC = pWalker->u.pNC; assert( pNC!=0 ); pParse = pNC->pParse; assert( pParse==pWalker->pParse ); #ifndef NDEBUG if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){ SrcList *pSrcList = pNC->pSrcList; int i; for(i=0; ipSrcList->nSrc; i++){ assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursornTab); } } #endif switch( pExpr->op ){ /* The special operator TK_ROW means use the rowid for the first ** column in the FROM clause. This is used by the LIMIT and ORDER BY ** clause processing on UPDATE and DELETE statements, and by ** UPDATE ... FROM statement processing. */ case TK_ROW: { SrcList *pSrcList = pNC->pSrcList; SrcItem *pItem; assert( pSrcList && pSrcList->nSrc>=1 ); pItem = pSrcList->a; pExpr->op = TK_COLUMN; assert( ExprUseYTab(pExpr) ); pExpr->y.pTab = pItem->pTab; pExpr->iTable = pItem->iCursor; pExpr->iColumn--; pExpr->affExpr = SQLITE_AFF_INTEGER; break; } /* An optimization: Attempt to convert ** ** "expr IS NOT NULL" --> "TRUE" ** "expr IS NULL" --> "FALSE" ** ** if we can prove that "expr" is never NULL. Call this the ** "NOT NULL strength reduction optimization". ** ** If this optimization occurs, also restore the NameContext ref-counts ** to the state they where in before the "column" LHS expression was ** resolved. This prevents "column" from being counted as having been ** referenced, which might prevent a SELECT from being erroneously ** marked as correlated. */ case TK_NOTNULL: case TK_ISNULL: { int anRef[8]; NameContext *p; int i; for(i=0, p=pNC; p && ipNext, i++){ anRef[i] = p->nRef; } sqlite3WalkExpr(pWalker, pExpr->pLeft); if( 0==sqlite3ExprCanBeNull(pExpr->pLeft) && !IN_RENAME_OBJECT ){ testcase( ExprHasProperty(pExpr, EP_FromJoin) ); assert( !ExprHasProperty(pExpr, EP_IntValue) ); if( pExpr->op==TK_NOTNULL ){ pExpr->u.zToken = "true"; ExprSetProperty(pExpr, EP_IsTrue); }else{ pExpr->u.zToken = "false"; ExprSetProperty(pExpr, EP_IsFalse); } pExpr->op = TK_TRUEFALSE; for(i=0, p=pNC; p && ipNext, i++){ p->nRef = anRef[i]; } sqlite3ExprDelete(pParse->db, pExpr->pLeft); pExpr->pLeft = 0; } return WRC_Prune; } /* A column name: ID ** Or table name and column name: ID.ID ** Or a database, table and column: ID.ID.ID ** ** The TK_ID and TK_OUT cases are combined so that there will only ** be one call to lookupName(). Then the compiler will in-line ** lookupName() for a size reduction and performance increase. */ case TK_ID: case TK_DOT: { const char *zColumn; const char *zTable; const char *zDb; Expr *pRight; if( pExpr->op==TK_ID ){ zDb = 0; zTable = 0; assert( !ExprHasProperty(pExpr, EP_IntValue) ); zColumn = pExpr->u.zToken; }else{ Expr *pLeft = pExpr->pLeft; testcase( pNC->ncFlags & NC_IdxExpr ); testcase( pNC->ncFlags & NC_GenCol ); sqlite3ResolveNotValid(pParse, pNC, "the \".\" operator", NC_IdxExpr|NC_GenCol, 0, pExpr); pRight = pExpr->pRight; if( pRight->op==TK_ID ){ zDb = 0; }else{ assert( pRight->op==TK_DOT ); assert( !ExprHasProperty(pRight, EP_IntValue) ); zDb = pLeft->u.zToken; pLeft = pRight->pLeft; pRight = pRight->pRight; } assert( ExprUseUToken(pLeft) && ExprUseUToken(pRight) ); zTable = pLeft->u.zToken; zColumn = pRight->u.zToken; assert( ExprUseYTab(pExpr) ); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, (void*)pExpr, (void*)pRight); sqlite3RenameTokenRemap(pParse, (void*)&pExpr->y.pTab, (void*)pLeft); } } return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr); } /* Resolve function names */ case TK_FUNCTION: { ExprList *pList = pExpr->x.pList; /* The argument list */ int n = pList ? pList->nExpr : 0; /* Number of arguments */ int no_such_func = 0; /* True if no such function exists */ int wrong_num_args = 0; /* True if wrong number of arguments */ int is_agg = 0; /* True if is an aggregate function */ const char *zId; /* The function name. */ FuncDef *pDef; /* Information about the function */ u8 enc = ENC(pParse->db); /* The database encoding */ int savedAllowFlags = (pNC->ncFlags & (NC_AllowAgg | NC_AllowWin)); #ifndef SQLITE_OMIT_WINDOWFUNC Window *pWin = (IsWindowFunc(pExpr) ? pExpr->y.pWin : 0); #endif assert( !ExprHasProperty(pExpr, EP_xIsSelect|EP_IntValue) ); zId = pExpr->u.zToken; pDef = sqlite3FindFunction(pParse->db, zId, n, enc, 0); if( pDef==0 ){ pDef = sqlite3FindFunction(pParse->db, zId, -2, enc, 0); if( pDef==0 ){ no_such_func = 1; }else{ wrong_num_args = 1; } }else{ is_agg = pDef->xFinalize!=0; if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ ExprSetProperty(pExpr, EP_Unlikely); if( n==2 ){ pExpr->iTable = exprProbability(pList->a[1].pExpr); if( pExpr->iTable<0 ){ sqlite3ErrorMsg(pParse, "second argument to %#T() must be a " "constant between 0.0 and 1.0", pExpr); pNC->nNcErr++; } }else{ /* EVIDENCE-OF: R-61304-29449 The unlikely(X) function is ** equivalent to likelihood(X, 0.0625). ** EVIDENCE-OF: R-01283-11636 The unlikely(X) function is ** short-hand for likelihood(X,0.0625). ** EVIDENCE-OF: R-36850-34127 The likely(X) function is short-hand ** for likelihood(X,0.9375). ** EVIDENCE-OF: R-53436-40973 The likely(X) function is equivalent ** to likelihood(X,0.9375). */ /* TUNING: unlikely() probability is 0.0625. likely() is 0.9375 */ pExpr->iTable = pDef->zName[0]=='u' ? 8388608 : 125829120; } } #ifndef SQLITE_OMIT_AUTHORIZATION { int auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0,pDef->zName,0); if( auth!=SQLITE_OK ){ if( auth==SQLITE_DENY ){ sqlite3ErrorMsg(pParse, "not authorized to use function: %#T", pExpr); pNC->nNcErr++; } pExpr->op = TK_NULL; return WRC_Prune; } } #endif if( pDef->funcFlags & (SQLITE_FUNC_CONSTANT|SQLITE_FUNC_SLOCHNG) ){ /* For the purposes of the EP_ConstFunc flag, date and time ** functions and other functions that change slowly are considered ** constant because they are constant for the duration of one query. ** This allows them to be factored out of inner loops. */ ExprSetProperty(pExpr,EP_ConstFunc); } if( (pDef->funcFlags & SQLITE_FUNC_CONSTANT)==0 ){ /* Clearly non-deterministic functions like random(), but also ** date/time functions that use 'now', and other functions like ** sqlite_version() that might change over time cannot be used ** in an index or generated column. Curiously, they can be used ** in a CHECK constraint. SQLServer, MySQL, and PostgreSQL all ** all this. */ sqlite3ResolveNotValid(pParse, pNC, "non-deterministic functions", NC_IdxExpr|NC_PartIdx|NC_GenCol, 0, pExpr); }else{ assert( (NC_SelfRef & 0xff)==NC_SelfRef ); /* Must fit in 8 bits */ pExpr->op2 = pNC->ncFlags & NC_SelfRef; if( pNC->ncFlags & NC_FromDDL ) ExprSetProperty(pExpr, EP_FromDDL); } if( (pDef->funcFlags & SQLITE_FUNC_INTERNAL)!=0 && pParse->nested==0 && (pParse->db->mDbFlags & DBFLAG_InternalFunc)==0 ){ /* Internal-use-only functions are disallowed unless the ** SQL is being compiled using sqlite3NestedParse() or ** the SQLITE_TESTCTRL_INTERNAL_FUNCTIONS test-control has be ** used to activate internal functions for testing purposes */ no_such_func = 1; pDef = 0; }else if( (pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE))!=0 && !IN_RENAME_OBJECT ){ sqlite3ExprFunctionUsable(pParse, pExpr, pDef); } } if( 0==IN_RENAME_OBJECT ){ #ifndef SQLITE_OMIT_WINDOWFUNC assert( is_agg==0 || (pDef->funcFlags & SQLITE_FUNC_MINMAX) || (pDef->xValue==0 && pDef->xInverse==0) || (pDef->xValue && pDef->xInverse && pDef->xSFunc && pDef->xFinalize) ); if( pDef && pDef->xValue==0 && pWin ){ sqlite3ErrorMsg(pParse, "%#T() may not be used as a window function", pExpr ); pNC->nNcErr++; }else if( (is_agg && (pNC->ncFlags & NC_AllowAgg)==0) || (is_agg && (pDef->funcFlags&SQLITE_FUNC_WINDOW) && !pWin) || (is_agg && pWin && (pNC->ncFlags & NC_AllowWin)==0) ){ const char *zType; if( (pDef->funcFlags & SQLITE_FUNC_WINDOW) || pWin ){ zType = "window"; }else{ zType = "aggregate"; } sqlite3ErrorMsg(pParse, "misuse of %s function %#T()",zType,pExpr); pNC->nNcErr++; is_agg = 0; } #else if( (is_agg && (pNC->ncFlags & NC_AllowAgg)==0) ){ sqlite3ErrorMsg(pParse,"misuse of aggregate function %#T()",pExpr); pNC->nNcErr++; is_agg = 0; } #endif else if( no_such_func && pParse->db->init.busy==0 #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION && pParse->explain==0 #endif ){ sqlite3ErrorMsg(pParse, "no such function: %#T", pExpr); pNC->nNcErr++; }else if( wrong_num_args ){ sqlite3ErrorMsg(pParse,"wrong number of arguments to function %#T()", pExpr); pNC->nNcErr++; } #ifndef SQLITE_OMIT_WINDOWFUNC else if( is_agg==0 && ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3ErrorMsg(pParse, "FILTER may not be used with non-aggregate %#T()", pExpr ); pNC->nNcErr++; } #endif if( is_agg ){ /* Window functions may not be arguments of aggregate functions. ** Or arguments of other window functions. But aggregate functions ** may be arguments for window functions. */ #ifndef SQLITE_OMIT_WINDOWFUNC pNC->ncFlags &= ~(NC_AllowWin | (!pWin ? NC_AllowAgg : 0)); #else pNC->ncFlags &= ~NC_AllowAgg; #endif } } #ifndef SQLITE_OMIT_WINDOWFUNC else if( ExprHasProperty(pExpr, EP_WinFunc) ){ is_agg = 1; } #endif sqlite3WalkExprList(pWalker, pList); if( is_agg ){ #ifndef SQLITE_OMIT_WINDOWFUNC if( pWin ){ Select *pSel = pNC->pWinSelect; assert( pWin==0 || (ExprUseYWin(pExpr) && pWin==pExpr->y.pWin) ); if( IN_RENAME_OBJECT==0 ){ sqlite3WindowUpdate(pParse, pSel ? pSel->pWinDefn : 0, pWin, pDef); if( pParse->db->mallocFailed ) break; } sqlite3WalkExprList(pWalker, pWin->pPartition); sqlite3WalkExprList(pWalker, pWin->pOrderBy); sqlite3WalkExpr(pWalker, pWin->pFilter); sqlite3WindowLink(pSel, pWin); pNC->ncFlags |= NC_HasWin; }else #endif /* SQLITE_OMIT_WINDOWFUNC */ { NameContext *pNC2; /* For looping up thru outer contexts */ pExpr->op = TK_AGG_FUNCTION; pExpr->op2 = 0; #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3WalkExpr(pWalker, pExpr->y.pWin->pFilter); } #endif pNC2 = pNC; while( pNC2 && sqlite3ReferencesSrcList(pParse, pExpr, pNC2->pSrcList)==0 ){ pExpr->op2++; pNC2 = pNC2->pNext; } assert( pDef!=0 || IN_RENAME_OBJECT ); if( pNC2 && pDef ){ assert( SQLITE_FUNC_MINMAX==NC_MinMaxAgg ); assert( SQLITE_FUNC_ANYORDER==NC_OrderAgg ); testcase( (pDef->funcFlags & SQLITE_FUNC_MINMAX)!=0 ); testcase( (pDef->funcFlags & SQLITE_FUNC_ANYORDER)!=0 ); pNC2->ncFlags |= NC_HasAgg | ((pDef->funcFlags^SQLITE_FUNC_ANYORDER) & (SQLITE_FUNC_MINMAX|SQLITE_FUNC_ANYORDER)); } } pNC->ncFlags |= savedAllowFlags; } /* FIX ME: Compute pExpr->affinity based on the expected return ** type of the function */ return WRC_Prune; } #ifndef SQLITE_OMIT_SUBQUERY case TK_SELECT: case TK_EXISTS: testcase( pExpr->op==TK_EXISTS ); #endif case TK_IN: { testcase( pExpr->op==TK_IN ); if( ExprUseXSelect(pExpr) ){ int nRef = pNC->nRef; testcase( pNC->ncFlags & NC_IsCheck ); testcase( pNC->ncFlags & NC_PartIdx ); testcase( pNC->ncFlags & NC_IdxExpr ); testcase( pNC->ncFlags & NC_GenCol ); if( pNC->ncFlags & NC_SelfRef ){ notValidImpl(pParse, pNC, "subqueries", pExpr, pExpr); }else{ sqlite3WalkSelect(pWalker, pExpr->x.pSelect); } assert( pNC->nRef>=nRef ); if( nRef!=pNC->nRef ){ ExprSetProperty(pExpr, EP_VarSelect); pNC->ncFlags |= NC_VarSelect; } } break; } case TK_VARIABLE: { testcase( pNC->ncFlags & NC_IsCheck ); testcase( pNC->ncFlags & NC_PartIdx ); testcase( pNC->ncFlags & NC_IdxExpr ); testcase( pNC->ncFlags & NC_GenCol ); sqlite3ResolveNotValid(pParse, pNC, "parameters", NC_IsCheck|NC_PartIdx|NC_IdxExpr|NC_GenCol, pExpr, pExpr); break; } case TK_IS: case TK_ISNOT: { Expr *pRight = sqlite3ExprSkipCollateAndLikely(pExpr->pRight); assert( !ExprHasProperty(pExpr, EP_Reduced) ); /* Handle special cases of "x IS TRUE", "x IS FALSE", "x IS NOT TRUE", ** and "x IS NOT FALSE". */ if( ALWAYS(pRight) && (pRight->op==TK_ID || pRight->op==TK_TRUEFALSE) ){ int rc = resolveExprStep(pWalker, pRight); if( rc==WRC_Abort ) return WRC_Abort; if( pRight->op==TK_TRUEFALSE ){ pExpr->op2 = pExpr->op; pExpr->op = TK_TRUTH; return WRC_Continue; } } /* no break */ deliberate_fall_through } case TK_BETWEEN: case TK_EQ: case TK_NE: case TK_LT: case TK_LE: case TK_GT: case TK_GE: { int nLeft, nRight; if( pParse->db->mallocFailed ) break; assert( pExpr->pLeft!=0 ); nLeft = sqlite3ExprVectorSize(pExpr->pLeft); if( pExpr->op==TK_BETWEEN ){ assert( ExprUseXList(pExpr) ); nRight = sqlite3ExprVectorSize(pExpr->x.pList->a[0].pExpr); if( nRight==nLeft ){ nRight = sqlite3ExprVectorSize(pExpr->x.pList->a[1].pExpr); } }else{ assert( pExpr->pRight!=0 ); nRight = sqlite3ExprVectorSize(pExpr->pRight); } if( nLeft!=nRight ){ testcase( pExpr->op==TK_EQ ); testcase( pExpr->op==TK_NE ); testcase( pExpr->op==TK_LT ); testcase( pExpr->op==TK_LE ); testcase( pExpr->op==TK_GT ); testcase( pExpr->op==TK_GE ); testcase( pExpr->op==TK_IS ); testcase( pExpr->op==TK_ISNOT ); testcase( pExpr->op==TK_BETWEEN ); sqlite3ErrorMsg(pParse, "row value misused"); sqlite3RecordErrorOffsetOfExpr(pParse->db, pExpr); } break; } } assert( pParse->db->mallocFailed==0 || pParse->nErr!=0 ); return pParse->nErr ? WRC_Abort : WRC_Continue; } /* ** pEList is a list of expressions which are really the result set of the ** a SELECT statement. pE is a term in an ORDER BY or GROUP BY clause. ** This routine checks to see if pE is a simple identifier which corresponds ** to the AS-name of one of the terms of the expression list. If it is, ** this routine return an integer between 1 and N where N is the number of ** elements in pEList, corresponding to the matching entry. If there is ** no match, or if pE is not a simple identifier, then this routine ** return 0. ** ** pEList has been resolved. pE has not. */ static int resolveAsName( Parse *pParse, /* Parsing context for error messages */ ExprList *pEList, /* List of expressions to scan */ Expr *pE /* Expression we are trying to match */ ){ int i; /* Loop counter */ UNUSED_PARAMETER(pParse); if( pE->op==TK_ID ){ const char *zCol; assert( !ExprHasProperty(pE, EP_IntValue) ); zCol = pE->u.zToken; for(i=0; inExpr; i++){ if( pEList->a[i].eEName==ENAME_NAME && sqlite3_stricmp(pEList->a[i].zEName, zCol)==0 ){ return i+1; } } } return 0; } /* ** pE is a pointer to an expression which is a single term in the ** ORDER BY of a compound SELECT. The expression has not been ** name resolved. ** ** At the point this routine is called, we already know that the ** ORDER BY term is not an integer index into the result set. That ** case is handled by the calling routine. ** ** Attempt to match pE against result set columns in the left-most ** SELECT statement. Return the index i of the matching column, ** as an indication to the caller that it should sort by the i-th column. ** The left-most column is 1. In other words, the value returned is the ** same integer value that would be used in the SQL statement to indicate ** the column. ** ** If there is no match, return 0. Return -1 if an error occurs. */ static int resolveOrderByTermToExprList( Parse *pParse, /* Parsing context for error messages */ Select *pSelect, /* The SELECT statement with the ORDER BY clause */ Expr *pE /* The specific ORDER BY term */ ){ int i; /* Loop counter */ ExprList *pEList; /* The columns of the result set */ NameContext nc; /* Name context for resolving pE */ sqlite3 *db; /* Database connection */ int rc; /* Return code from subprocedures */ u8 savedSuppErr; /* Saved value of db->suppressErr */ assert( sqlite3ExprIsInteger(pE, &i)==0 ); pEList = pSelect->pEList; /* Resolve all names in the ORDER BY term expression */ memset(&nc, 0, sizeof(nc)); nc.pParse = pParse; nc.pSrcList = pSelect->pSrc; nc.uNC.pEList = pEList; nc.ncFlags = NC_AllowAgg|NC_UEList|NC_NoSelect; nc.nNcErr = 0; db = pParse->db; savedSuppErr = db->suppressErr; db->suppressErr = 1; rc = sqlite3ResolveExprNames(&nc, pE); db->suppressErr = savedSuppErr; if( rc ) return 0; /* Try to match the ORDER BY expression against an expression ** in the result set. Return an 1-based index of the matching ** result-set entry. */ for(i=0; inExpr; i++){ if( sqlite3ExprCompare(0, pEList->a[i].pExpr, pE, -1)<2 ){ return i+1; } } /* If no match, return 0. */ return 0; } /* ** Generate an ORDER BY or GROUP BY term out-of-range error. */ static void resolveOutOfRangeError( Parse *pParse, /* The error context into which to write the error */ const char *zType, /* "ORDER" or "GROUP" */ int i, /* The index (1-based) of the term out of range */ int mx, /* Largest permissible value of i */ Expr *pError /* Associate the error with the expression */ ){ sqlite3ErrorMsg(pParse, "%r %s BY term out of range - should be " "between 1 and %d", i, zType, mx); sqlite3RecordErrorOffsetOfExpr(pParse->db, pError); } /* ** Analyze the ORDER BY clause in a compound SELECT statement. Modify ** each term of the ORDER BY clause is a constant integer between 1 ** and N where N is the number of columns in the compound SELECT. ** ** ORDER BY terms that are already an integer between 1 and N are ** unmodified. ORDER BY terms that are integers outside the range of ** 1 through N generate an error. ORDER BY terms that are expressions ** are matched against result set expressions of compound SELECT ** beginning with the left-most SELECT and working toward the right. ** At the first match, the ORDER BY expression is transformed into ** the integer column number. ** ** Return the number of errors seen. */ static int resolveCompoundOrderBy( Parse *pParse, /* Parsing context. Leave error messages here */ Select *pSelect /* The SELECT statement containing the ORDER BY */ ){ int i; ExprList *pOrderBy; ExprList *pEList; sqlite3 *db; int moreToDo = 1; pOrderBy = pSelect->pOrderBy; if( pOrderBy==0 ) return 0; db = pParse->db; if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many terms in ORDER BY clause"); return 1; } for(i=0; inExpr; i++){ pOrderBy->a[i].done = 0; } pSelect->pNext = 0; while( pSelect->pPrior ){ pSelect->pPrior->pNext = pSelect; pSelect = pSelect->pPrior; } while( pSelect && moreToDo ){ struct ExprList_item *pItem; moreToDo = 0; pEList = pSelect->pEList; assert( pEList!=0 ); for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ int iCol = -1; Expr *pE, *pDup; if( pItem->done ) continue; pE = sqlite3ExprSkipCollateAndLikely(pItem->pExpr); if( NEVER(pE==0) ) continue; if( sqlite3ExprIsInteger(pE, &iCol) ){ if( iCol<=0 || iCol>pEList->nExpr ){ resolveOutOfRangeError(pParse, "ORDER", i+1, pEList->nExpr, pE); return 1; } }else{ iCol = resolveAsName(pParse, pEList, pE); if( iCol==0 ){ /* Now test if expression pE matches one of the values returned ** by pSelect. In the usual case this is done by duplicating the ** expression, resolving any symbols in it, and then comparing ** it against each expression returned by the SELECT statement. ** Once the comparisons are finished, the duplicate expression ** is deleted. ** ** If this is running as part of an ALTER TABLE operation and ** the symbols resolve successfully, also resolve the symbols in the ** actual expression. This allows the code in alter.c to modify ** column references within the ORDER BY expression as required. */ pDup = sqlite3ExprDup(db, pE, 0); if( !db->mallocFailed ){ assert(pDup); iCol = resolveOrderByTermToExprList(pParse, pSelect, pDup); if( IN_RENAME_OBJECT && iCol>0 ){ resolveOrderByTermToExprList(pParse, pSelect, pE); } } sqlite3ExprDelete(db, pDup); } } if( iCol>0 ){ /* Convert the ORDER BY term into an integer column number iCol, ** taking care to preserve the COLLATE clause if it exists. */ if( !IN_RENAME_OBJECT ){ Expr *pNew = sqlite3Expr(db, TK_INTEGER, 0); if( pNew==0 ) return 1; pNew->flags |= EP_IntValue; pNew->u.iValue = iCol; if( pItem->pExpr==pE ){ pItem->pExpr = pNew; }else{ Expr *pParent = pItem->pExpr; assert( pParent->op==TK_COLLATE ); while( pParent->pLeft->op==TK_COLLATE ) pParent = pParent->pLeft; assert( pParent->pLeft==pE ); pParent->pLeft = pNew; } sqlite3ExprDelete(db, pE); pItem->u.x.iOrderByCol = (u16)iCol; } pItem->done = 1; }else{ moreToDo = 1; } } pSelect = pSelect->pNext; } for(i=0; inExpr; i++){ if( pOrderBy->a[i].done==0 ){ sqlite3ErrorMsg(pParse, "%r ORDER BY term does not match any " "column in the result set", i+1); return 1; } } return 0; } /* ** Check every term in the ORDER BY or GROUP BY clause pOrderBy of ** the SELECT statement pSelect. If any term is reference to a ** result set expression (as determined by the ExprList.a.u.x.iOrderByCol ** field) then convert that term into a copy of the corresponding result set ** column. ** ** If any errors are detected, add an error message to pParse and ** return non-zero. Return zero if no errors are seen. */ SQLITE_PRIVATE int sqlite3ResolveOrderGroupBy( Parse *pParse, /* Parsing context. Leave error messages here */ Select *pSelect, /* The SELECT statement containing the clause */ ExprList *pOrderBy, /* The ORDER BY or GROUP BY clause to be processed */ const char *zType /* "ORDER" or "GROUP" */ ){ int i; sqlite3 *db = pParse->db; ExprList *pEList; struct ExprList_item *pItem; if( pOrderBy==0 || pParse->db->mallocFailed || IN_RENAME_OBJECT ) return 0; if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many terms in %s BY clause", zType); return 1; } pEList = pSelect->pEList; assert( pEList!=0 ); /* sqlite3SelectNew() guarantees this */ for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ if( pItem->u.x.iOrderByCol ){ if( pItem->u.x.iOrderByCol>pEList->nExpr ){ resolveOutOfRangeError(pParse, zType, i+1, pEList->nExpr, 0); return 1; } resolveAlias(pParse, pEList, pItem->u.x.iOrderByCol-1, pItem->pExpr,0); } } return 0; } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Walker callback for windowRemoveExprFromSelect(). */ static int resolveRemoveWindowsCb(Walker *pWalker, Expr *pExpr){ UNUSED_PARAMETER(pWalker); if( ExprHasProperty(pExpr, EP_WinFunc) ){ Window *pWin = pExpr->y.pWin; sqlite3WindowUnlinkFromSelect(pWin); } return WRC_Continue; } /* ** Remove any Window objects owned by the expression pExpr from the ** Select.pWin list of Select object pSelect. */ static void windowRemoveExprFromSelect(Select *pSelect, Expr *pExpr){ if( pSelect->pWin ){ Walker sWalker; memset(&sWalker, 0, sizeof(Walker)); sWalker.xExprCallback = resolveRemoveWindowsCb; sWalker.u.pSelect = pSelect; sqlite3WalkExpr(&sWalker, pExpr); } } #else # define windowRemoveExprFromSelect(a, b) #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** pOrderBy is an ORDER BY or GROUP BY clause in SELECT statement pSelect. ** The Name context of the SELECT statement is pNC. zType is either ** "ORDER" or "GROUP" depending on which type of clause pOrderBy is. ** ** This routine resolves each term of the clause into an expression. ** If the order-by term is an integer I between 1 and N (where N is the ** number of columns in the result set of the SELECT) then the expression ** in the resolution is a copy of the I-th result-set expression. If ** the order-by term is an identifier that corresponds to the AS-name of ** a result-set expression, then the term resolves to a copy of the ** result-set expression. Otherwise, the expression is resolved in ** the usual way - using sqlite3ResolveExprNames(). ** ** This routine returns the number of errors. If errors occur, then ** an appropriate error message might be left in pParse. (OOM errors ** excepted.) */ static int resolveOrderGroupBy( NameContext *pNC, /* The name context of the SELECT statement */ Select *pSelect, /* The SELECT statement holding pOrderBy */ ExprList *pOrderBy, /* An ORDER BY or GROUP BY clause to resolve */ const char *zType /* Either "ORDER" or "GROUP", as appropriate */ ){ int i, j; /* Loop counters */ int iCol; /* Column number */ struct ExprList_item *pItem; /* A term of the ORDER BY clause */ Parse *pParse; /* Parsing context */ int nResult; /* Number of terms in the result set */ assert( pOrderBy!=0 ); nResult = pSelect->pEList->nExpr; pParse = pNC->pParse; for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ Expr *pE = pItem->pExpr; Expr *pE2 = sqlite3ExprSkipCollateAndLikely(pE); if( NEVER(pE2==0) ) continue; if( zType[0]!='G' ){ iCol = resolveAsName(pParse, pSelect->pEList, pE2); if( iCol>0 ){ /* If an AS-name match is found, mark this ORDER BY column as being ** a copy of the iCol-th result-set column. The subsequent call to ** sqlite3ResolveOrderGroupBy() will convert the expression to a ** copy of the iCol-th result-set expression. */ pItem->u.x.iOrderByCol = (u16)iCol; continue; } } if( sqlite3ExprIsInteger(pE2, &iCol) ){ /* The ORDER BY term is an integer constant. Again, set the column ** number so that sqlite3ResolveOrderGroupBy() will convert the ** order-by term to a copy of the result-set expression */ if( iCol<1 || iCol>0xffff ){ resolveOutOfRangeError(pParse, zType, i+1, nResult, pE2); return 1; } pItem->u.x.iOrderByCol = (u16)iCol; continue; } /* Otherwise, treat the ORDER BY term as an ordinary expression */ pItem->u.x.iOrderByCol = 0; if( sqlite3ResolveExprNames(pNC, pE) ){ return 1; } for(j=0; jpEList->nExpr; j++){ if( sqlite3ExprCompare(0, pE, pSelect->pEList->a[j].pExpr, -1)==0 ){ /* Since this expresion is being changed into a reference ** to an identical expression in the result set, remove all Window ** objects belonging to the expression from the Select.pWin list. */ windowRemoveExprFromSelect(pSelect, pE); pItem->u.x.iOrderByCol = j+1; } } } return sqlite3ResolveOrderGroupBy(pParse, pSelect, pOrderBy, zType); } /* ** Resolve names in the SELECT statement p and all of its descendants. */ static int resolveSelectStep(Walker *pWalker, Select *p){ NameContext *pOuterNC; /* Context that contains this SELECT */ NameContext sNC; /* Name context of this SELECT */ int isCompound; /* True if p is a compound select */ int nCompound; /* Number of compound terms processed so far */ Parse *pParse; /* Parsing context */ int i; /* Loop counter */ ExprList *pGroupBy; /* The GROUP BY clause */ Select *pLeftmost; /* Left-most of SELECT of a compound */ sqlite3 *db; /* Database connection */ assert( p!=0 ); if( p->selFlags & SF_Resolved ){ return WRC_Prune; } pOuterNC = pWalker->u.pNC; pParse = pWalker->pParse; db = pParse->db; /* Normally sqlite3SelectExpand() will be called first and will have ** already expanded this SELECT. However, if this is a subquery within ** an expression, sqlite3ResolveExprNames() will be called without a ** prior call to sqlite3SelectExpand(). When that happens, let ** sqlite3SelectPrep() do all of the processing for this SELECT. ** sqlite3SelectPrep() will invoke both sqlite3SelectExpand() and ** this routine in the correct order. */ if( (p->selFlags & SF_Expanded)==0 ){ sqlite3SelectPrep(pParse, p, pOuterNC); return pParse->nErr ? WRC_Abort : WRC_Prune; } isCompound = p->pPrior!=0; nCompound = 0; pLeftmost = p; while( p ){ assert( (p->selFlags & SF_Expanded)!=0 ); assert( (p->selFlags & SF_Resolved)==0 ); assert( db->suppressErr==0 ); /* SF_Resolved not set if errors suppressed */ p->selFlags |= SF_Resolved; /* Resolve the expressions in the LIMIT and OFFSET clauses. These ** are not allowed to refer to any names, so pass an empty NameContext. */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pWinSelect = p; if( sqlite3ResolveExprNames(&sNC, p->pLimit) ){ return WRC_Abort; } /* If the SF_Converted flags is set, then this Select object was ** was created by the convertCompoundSelectToSubquery() function. ** In this case the ORDER BY clause (p->pOrderBy) should be resolved ** as if it were part of the sub-query, not the parent. This block ** moves the pOrderBy down to the sub-query. It will be moved back ** after the names have been resolved. */ if( p->selFlags & SF_Converted ){ Select *pSub = p->pSrc->a[0].pSelect; assert( p->pSrc->nSrc==1 && p->pOrderBy ); assert( pSub->pPrior && pSub->pOrderBy==0 ); pSub->pOrderBy = p->pOrderBy; p->pOrderBy = 0; } /* Recursively resolve names in all subqueries in the FROM clause */ for(i=0; ipSrc->nSrc; i++){ SrcItem *pItem = &p->pSrc->a[i]; if( pItem->pSelect && (pItem->pSelect->selFlags & SF_Resolved)==0 ){ int nRef = pOuterNC ? pOuterNC->nRef : 0; const char *zSavedContext = pParse->zAuthContext; if( pItem->zName ) pParse->zAuthContext = pItem->zName; sqlite3ResolveSelectNames(pParse, pItem->pSelect, pOuterNC); pParse->zAuthContext = zSavedContext; if( pParse->nErr ) return WRC_Abort; assert( db->mallocFailed==0 ); /* If the number of references to the outer context changed when ** expressions in the sub-select were resolved, the sub-select ** is correlated. It is not required to check the refcount on any ** but the innermost outer context object, as lookupName() increments ** the refcount on all contexts between the current one and the ** context containing the column when it resolves a name. */ if( pOuterNC ){ assert( pItem->fg.isCorrelated==0 && pOuterNC->nRef>=nRef ); pItem->fg.isCorrelated = (pOuterNC->nRef>nRef); } } } /* Set up the local name-context to pass to sqlite3ResolveExprNames() to ** resolve the result-set expression list. */ sNC.ncFlags = NC_AllowAgg|NC_AllowWin; sNC.pSrcList = p->pSrc; sNC.pNext = pOuterNC; /* Resolve names in the result set. */ if( sqlite3ResolveExprListNames(&sNC, p->pEList) ) return WRC_Abort; sNC.ncFlags &= ~NC_AllowWin; /* If there are no aggregate functions in the result-set, and no GROUP BY ** expression, do not allow aggregates in any of the other expressions. */ assert( (p->selFlags & SF_Aggregate)==0 ); pGroupBy = p->pGroupBy; if( pGroupBy || (sNC.ncFlags & NC_HasAgg)!=0 ){ assert( NC_MinMaxAgg==SF_MinMaxAgg ); assert( NC_OrderAgg==SF_OrderByReqd ); p->selFlags |= SF_Aggregate | (sNC.ncFlags&(NC_MinMaxAgg|NC_OrderAgg)); }else{ sNC.ncFlags &= ~NC_AllowAgg; } /* Add the output column list to the name-context before parsing the ** other expressions in the SELECT statement. This is so that ** expressions in the WHERE clause (etc.) can refer to expressions by ** aliases in the result set. ** ** Minor point: If this is the case, then the expression will be ** re-evaluated for each reference to it. */ assert( (sNC.ncFlags & (NC_UAggInfo|NC_UUpsert|NC_UBaseReg))==0 ); sNC.uNC.pEList = p->pEList; sNC.ncFlags |= NC_UEList; if( p->pHaving ){ if( !pGroupBy ){ sqlite3ErrorMsg(pParse, "a GROUP BY clause is required before HAVING"); return WRC_Abort; } if( sqlite3ResolveExprNames(&sNC, p->pHaving) ) return WRC_Abort; } if( sqlite3ResolveExprNames(&sNC, p->pWhere) ) return WRC_Abort; /* Resolve names in table-valued-function arguments */ for(i=0; ipSrc->nSrc; i++){ SrcItem *pItem = &p->pSrc->a[i]; if( pItem->fg.isTabFunc && sqlite3ResolveExprListNames(&sNC, pItem->u1.pFuncArg) ){ return WRC_Abort; } } #ifndef SQLITE_OMIT_WINDOWFUNC if( IN_RENAME_OBJECT ){ Window *pWin; for(pWin=p->pWinDefn; pWin; pWin=pWin->pNextWin){ if( sqlite3ResolveExprListNames(&sNC, pWin->pOrderBy) || sqlite3ResolveExprListNames(&sNC, pWin->pPartition) ){ return WRC_Abort; } } } #endif /* The ORDER BY and GROUP BY clauses may not refer to terms in ** outer queries */ sNC.pNext = 0; sNC.ncFlags |= NC_AllowAgg|NC_AllowWin; /* If this is a converted compound query, move the ORDER BY clause from ** the sub-query back to the parent query. At this point each term ** within the ORDER BY clause has been transformed to an integer value. ** These integers will be replaced by copies of the corresponding result ** set expressions by the call to resolveOrderGroupBy() below. */ if( p->selFlags & SF_Converted ){ Select *pSub = p->pSrc->a[0].pSelect; p->pOrderBy = pSub->pOrderBy; pSub->pOrderBy = 0; } /* Process the ORDER BY clause for singleton SELECT statements. ** The ORDER BY clause for compounds SELECT statements is handled ** below, after all of the result-sets for all of the elements of ** the compound have been resolved. ** ** If there is an ORDER BY clause on a term of a compound-select other ** than the right-most term, then that is a syntax error. But the error ** is not detected until much later, and so we need to go ahead and ** resolve those symbols on the incorrect ORDER BY for consistency. */ if( p->pOrderBy!=0 && isCompound<=nCompound /* Defer right-most ORDER BY of a compound */ && resolveOrderGroupBy(&sNC, p, p->pOrderBy, "ORDER") ){ return WRC_Abort; } if( db->mallocFailed ){ return WRC_Abort; } sNC.ncFlags &= ~NC_AllowWin; /* Resolve the GROUP BY clause. At the same time, make sure ** the GROUP BY clause does not contain aggregate functions. */ if( pGroupBy ){ struct ExprList_item *pItem; if( resolveOrderGroupBy(&sNC, p, pGroupBy, "GROUP") || db->mallocFailed ){ return WRC_Abort; } for(i=0, pItem=pGroupBy->a; inExpr; i++, pItem++){ if( ExprHasProperty(pItem->pExpr, EP_Agg) ){ sqlite3ErrorMsg(pParse, "aggregate functions are not allowed in " "the GROUP BY clause"); return WRC_Abort; } } } /* If this is part of a compound SELECT, check that it has the right ** number of expressions in the select list. */ if( p->pNext && p->pEList->nExpr!=p->pNext->pEList->nExpr ){ sqlite3SelectWrongNumTermsError(pParse, p->pNext); return WRC_Abort; } /* Advance to the next term of the compound */ p = p->pPrior; nCompound++; } /* Resolve the ORDER BY on a compound SELECT after all terms of ** the compound have been resolved. */ if( isCompound && resolveCompoundOrderBy(pParse, pLeftmost) ){ return WRC_Abort; } return WRC_Prune; } /* ** This routine walks an expression tree and resolves references to ** table columns and result-set columns. At the same time, do error ** checking on function usage and set a flag if any aggregate functions ** are seen. ** ** To resolve table columns references we look for nodes (or subtrees) of the ** form X.Y.Z or Y.Z or just Z where ** ** X: The name of a database. Ex: "main" or "temp" or ** the symbolic name assigned to an ATTACH-ed database. ** ** Y: The name of a table in a FROM clause. Or in a trigger ** one of the special names "old" or "new". ** ** Z: The name of a column in table Y. ** ** The node at the root of the subtree is modified as follows: ** ** Expr.op Changed to TK_COLUMN ** Expr.pTab Points to the Table object for X.Y ** Expr.iColumn The column index in X.Y. -1 for the rowid. ** Expr.iTable The VDBE cursor number for X.Y ** ** ** To resolve result-set references, look for expression nodes of the ** form Z (with no X and Y prefix) where the Z matches the right-hand ** size of an AS clause in the result-set of a SELECT. The Z expression ** is replaced by a copy of the left-hand side of the result-set expression. ** Table-name and function resolution occurs on the substituted expression ** tree. For example, in: ** ** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY x; ** ** The "x" term of the order by is replaced by "a+b" to render: ** ** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY a+b; ** ** Function calls are checked to make sure that the function is ** defined and that the correct number of arguments are specified. ** If the function is an aggregate function, then the NC_HasAgg flag is ** set and the opcode is changed from TK_FUNCTION to TK_AGG_FUNCTION. ** If an expression contains aggregate functions then the EP_Agg ** property on the expression is set. ** ** An error message is left in pParse if anything is amiss. The number ** if errors is returned. */ SQLITE_PRIVATE int sqlite3ResolveExprNames( NameContext *pNC, /* Namespace to resolve expressions in. */ Expr *pExpr /* The expression to be analyzed. */ ){ int savedHasAgg; Walker w; if( pExpr==0 ) return SQLITE_OK; savedHasAgg = pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg); pNC->ncFlags &= ~(NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg); w.pParse = pNC->pParse; w.xExprCallback = resolveExprStep; w.xSelectCallback = (pNC->ncFlags & NC_NoSelect) ? 0 : resolveSelectStep; w.xSelectCallback2 = 0; w.u.pNC = pNC; #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight += pExpr->nHeight; if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){ return SQLITE_ERROR; } #endif sqlite3WalkExpr(&w, pExpr); #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight -= pExpr->nHeight; #endif assert( EP_Agg==NC_HasAgg ); assert( EP_Win==NC_HasWin ); testcase( pNC->ncFlags & NC_HasAgg ); testcase( pNC->ncFlags & NC_HasWin ); ExprSetProperty(pExpr, pNC->ncFlags & (NC_HasAgg|NC_HasWin) ); pNC->ncFlags |= savedHasAgg; return pNC->nNcErr>0 || w.pParse->nErr>0; } /* ** Resolve all names for all expression in an expression list. This is ** just like sqlite3ResolveExprNames() except that it works for an expression ** list rather than a single expression. */ SQLITE_PRIVATE int sqlite3ResolveExprListNames( NameContext *pNC, /* Namespace to resolve expressions in. */ ExprList *pList /* The expression list to be analyzed. */ ){ int i; int savedHasAgg = 0; Walker w; if( pList==0 ) return WRC_Continue; w.pParse = pNC->pParse; w.xExprCallback = resolveExprStep; w.xSelectCallback = resolveSelectStep; w.xSelectCallback2 = 0; w.u.pNC = pNC; savedHasAgg = pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg); pNC->ncFlags &= ~(NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg); for(i=0; inExpr; i++){ Expr *pExpr = pList->a[i].pExpr; if( pExpr==0 ) continue; #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight += pExpr->nHeight; if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){ return WRC_Abort; } #endif sqlite3WalkExpr(&w, pExpr); #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight -= pExpr->nHeight; #endif assert( EP_Agg==NC_HasAgg ); assert( EP_Win==NC_HasWin ); testcase( pNC->ncFlags & NC_HasAgg ); testcase( pNC->ncFlags & NC_HasWin ); if( pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg) ){ ExprSetProperty(pExpr, pNC->ncFlags & (NC_HasAgg|NC_HasWin) ); savedHasAgg |= pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg); pNC->ncFlags &= ~(NC_HasAgg|NC_MinMaxAgg|NC_HasWin|NC_OrderAgg); } if( w.pParse->nErr>0 ) return WRC_Abort; } pNC->ncFlags |= savedHasAgg; return WRC_Continue; } /* ** Resolve all names in all expressions of a SELECT and in all ** decendents of the SELECT, including compounds off of p->pPrior, ** subqueries in expressions, and subqueries used as FROM clause ** terms. ** ** See sqlite3ResolveExprNames() for a description of the kinds of ** transformations that occur. ** ** All SELECT statements should have been expanded using ** sqlite3SelectExpand() prior to invoking this routine. */ SQLITE_PRIVATE void sqlite3ResolveSelectNames( Parse *pParse, /* The parser context */ Select *p, /* The SELECT statement being coded. */ NameContext *pOuterNC /* Name context for parent SELECT statement */ ){ Walker w; assert( p!=0 ); w.xExprCallback = resolveExprStep; w.xSelectCallback = resolveSelectStep; w.xSelectCallback2 = 0; w.pParse = pParse; w.u.pNC = pOuterNC; sqlite3WalkSelect(&w, p); } /* ** Resolve names in expressions that can only reference a single table ** or which cannot reference any tables at all. Examples: ** ** "type" flag ** ------------ ** (1) CHECK constraints NC_IsCheck ** (2) WHERE clauses on partial indices NC_PartIdx ** (3) Expressions in indexes on expressions NC_IdxExpr ** (4) Expression arguments to VACUUM INTO. 0 ** (5) GENERATED ALWAYS as expressions NC_GenCol ** ** In all cases except (4), the Expr.iTable value for Expr.op==TK_COLUMN ** nodes of the expression is set to -1 and the Expr.iColumn value is ** set to the column number. In case (4), TK_COLUMN nodes cause an error. ** ** Any errors cause an error message to be set in pParse. */ SQLITE_PRIVATE int sqlite3ResolveSelfReference( Parse *pParse, /* Parsing context */ Table *pTab, /* The table being referenced, or NULL */ int type, /* NC_IsCheck, NC_PartIdx, NC_IdxExpr, NC_GenCol, or 0 */ Expr *pExpr, /* Expression to resolve. May be NULL. */ ExprList *pList /* Expression list to resolve. May be NULL. */ ){ SrcList sSrc; /* Fake SrcList for pParse->pNewTable */ NameContext sNC; /* Name context for pParse->pNewTable */ int rc; assert( type==0 || pTab!=0 ); assert( type==NC_IsCheck || type==NC_PartIdx || type==NC_IdxExpr || type==NC_GenCol || pTab==0 ); memset(&sNC, 0, sizeof(sNC)); memset(&sSrc, 0, sizeof(sSrc)); if( pTab ){ sSrc.nSrc = 1; sSrc.a[0].zName = pTab->zName; sSrc.a[0].pTab = pTab; sSrc.a[0].iCursor = -1; if( pTab->pSchema!=pParse->db->aDb[1].pSchema ){ /* Cause EP_FromDDL to be set on TK_FUNCTION nodes of non-TEMP ** schema elements */ type |= NC_FromDDL; } } sNC.pParse = pParse; sNC.pSrcList = &sSrc; sNC.ncFlags = type | NC_IsDDL; if( (rc = sqlite3ResolveExprNames(&sNC, pExpr))!=SQLITE_OK ) return rc; if( pList ) rc = sqlite3ResolveExprListNames(&sNC, pList); return rc; } /************** End of resolve.c *********************************************/ /************** Begin file expr.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. */ /* #include "sqliteInt.h" */ /* Forward declarations */ static void exprCodeBetween(Parse*,Expr*,int,void(*)(Parse*,Expr*,int,int),int); static int exprCodeVector(Parse *pParse, Expr *p, int *piToFree); /* ** Return the affinity character for a single column of a table. */ SQLITE_PRIVATE char sqlite3TableColumnAffinity(const Table *pTab, int iCol){ if( iCol<0 || NEVER(iCol>=pTab->nCol) ) return SQLITE_AFF_INTEGER; return pTab->aCol[iCol].affinity; } /* ** Return the 'affinity' of the expression pExpr if any. ** ** If pExpr is a column, a reference to a column via an 'AS' alias, ** or a sub-select with a column as the return value, then the ** affinity of that column is returned. Otherwise, 0x00 is returned, ** indicating no affinity for the expression. ** ** i.e. the WHERE clause expressions in the following statements all ** have an affinity: ** ** CREATE TABLE t1(a); ** SELECT * FROM t1 WHERE a; ** SELECT a AS b FROM t1 WHERE b; ** SELECT * FROM t1 WHERE (select a from t1); */ SQLITE_PRIVATE char sqlite3ExprAffinity(const Expr *pExpr){ int op; while( ExprHasProperty(pExpr, EP_Skip|EP_IfNullRow) ){ assert( pExpr->op==TK_COLLATE || pExpr->op==TK_IF_NULL_ROW || (pExpr->op==TK_REGISTER && pExpr->op2==TK_IF_NULL_ROW) ); pExpr = pExpr->pLeft; assert( pExpr!=0 ); } op = pExpr->op; if( op==TK_REGISTER ) op = pExpr->op2; if( op==TK_COLUMN || op==TK_AGG_COLUMN ){ assert( ExprUseYTab(pExpr) ); if( pExpr->y.pTab ){ return sqlite3TableColumnAffinity(pExpr->y.pTab, pExpr->iColumn); } } if( op==TK_SELECT ){ assert( ExprUseXSelect(pExpr) ); assert( pExpr->x.pSelect!=0 ); assert( pExpr->x.pSelect->pEList!=0 ); assert( pExpr->x.pSelect->pEList->a[0].pExpr!=0 ); return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); } #ifndef SQLITE_OMIT_CAST if( op==TK_CAST ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); return sqlite3AffinityType(pExpr->u.zToken, 0); } #endif if( op==TK_SELECT_COLUMN ){ assert( pExpr->pLeft!=0 && ExprUseXSelect(pExpr->pLeft) ); assert( pExpr->iColumn < pExpr->iTable ); assert( pExpr->iTable==pExpr->pLeft->x.pSelect->pEList->nExpr ); return sqlite3ExprAffinity( pExpr->pLeft->x.pSelect->pEList->a[pExpr->iColumn].pExpr ); } if( op==TK_VECTOR ){ assert( ExprUseXList(pExpr) ); return sqlite3ExprAffinity(pExpr->x.pList->a[0].pExpr); } return pExpr->affExpr; } /* ** Set the collating sequence for expression pExpr to be the collating ** sequence named by pToken. Return a pointer to a new Expr node that ** implements the COLLATE operator. ** ** If a memory allocation error occurs, that fact is recorded in pParse->db ** and the pExpr parameter is returned unchanged. */ SQLITE_PRIVATE Expr *sqlite3ExprAddCollateToken( const Parse *pParse, /* Parsing context */ Expr *pExpr, /* Add the "COLLATE" clause to this expression */ const Token *pCollName, /* Name of collating sequence */ int dequote /* True to dequote pCollName */ ){ if( pCollName->n>0 ){ Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, dequote); if( pNew ){ pNew->pLeft = pExpr; pNew->flags |= EP_Collate|EP_Skip; pExpr = pNew; } } return pExpr; } SQLITE_PRIVATE Expr *sqlite3ExprAddCollateString( const Parse *pParse, /* Parsing context */ Expr *pExpr, /* Add the "COLLATE" clause to this expression */ const char *zC /* The collating sequence name */ ){ Token s; assert( zC!=0 ); sqlite3TokenInit(&s, (char*)zC); return sqlite3ExprAddCollateToken(pParse, pExpr, &s, 0); } /* ** Skip over any TK_COLLATE operators. */ SQLITE_PRIVATE Expr *sqlite3ExprSkipCollate(Expr *pExpr){ while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){ assert( pExpr->op==TK_COLLATE ); pExpr = pExpr->pLeft; } return pExpr; } /* ** Skip over any TK_COLLATE operators and/or any unlikely() ** or likelihood() or likely() functions at the root of an ** expression. */ SQLITE_PRIVATE Expr *sqlite3ExprSkipCollateAndLikely(Expr *pExpr){ while( pExpr && ExprHasProperty(pExpr, EP_Skip|EP_Unlikely) ){ if( ExprHasProperty(pExpr, EP_Unlikely) ){ assert( ExprUseXList(pExpr) ); assert( pExpr->x.pList->nExpr>0 ); assert( pExpr->op==TK_FUNCTION ); pExpr = pExpr->x.pList->a[0].pExpr; }else{ assert( pExpr->op==TK_COLLATE ); pExpr = pExpr->pLeft; } } return pExpr; } /* ** Return the collation sequence for the expression pExpr. If ** there is no defined collating sequence, return NULL. ** ** See also: sqlite3ExprNNCollSeq() ** ** The sqlite3ExprNNCollSeq() works the same exact that it returns the ** default collation if pExpr has no defined collation. ** ** The collating sequence might be determined by a COLLATE operator ** or by the presence of a column with a defined collating sequence. ** COLLATE operators take first precedence. Left operands take ** precedence over right operands. */ SQLITE_PRIVATE CollSeq *sqlite3ExprCollSeq(Parse *pParse, const Expr *pExpr){ sqlite3 *db = pParse->db; CollSeq *pColl = 0; const Expr *p = pExpr; while( p ){ int op = p->op; if( op==TK_REGISTER ) op = p->op2; if( op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_TRIGGER ){ assert( ExprUseYTab(p) ); if( p->y.pTab!=0 ){ /* op==TK_REGISTER && p->y.pTab!=0 happens when pExpr was originally ** a TK_COLUMN but was previously evaluated and cached in a register */ int j = p->iColumn; if( j>=0 ){ const char *zColl = sqlite3ColumnColl(&p->y.pTab->aCol[j]); pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); } break; } } if( op==TK_CAST || op==TK_UPLUS ){ p = p->pLeft; continue; } if( op==TK_VECTOR ){ assert( ExprUseXList(p) ); p = p->x.pList->a[0].pExpr; continue; } if( op==TK_COLLATE ){ assert( !ExprHasProperty(p, EP_IntValue) ); pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); break; } if( p->flags & EP_Collate ){ if( p->pLeft && (p->pLeft->flags & EP_Collate)!=0 ){ p = p->pLeft; }else{ Expr *pNext = p->pRight; /* The Expr.x union is never used at the same time as Expr.pRight */ assert( ExprUseXList(p) ); assert( p->x.pList==0 || p->pRight==0 ); if( p->x.pList!=0 && !db->mallocFailed ){ int i; for(i=0; ALWAYS(ix.pList->nExpr); i++){ if( ExprHasProperty(p->x.pList->a[i].pExpr, EP_Collate) ){ pNext = p->x.pList->a[i].pExpr; break; } } } p = pNext; } }else{ break; } } if( sqlite3CheckCollSeq(pParse, pColl) ){ pColl = 0; } return pColl; } /* ** Return the collation sequence for the expression pExpr. If ** there is no defined collating sequence, return a pointer to the ** defautl collation sequence. ** ** See also: sqlite3ExprCollSeq() ** ** The sqlite3ExprCollSeq() routine works the same except that it ** returns NULL if there is no defined collation. */ SQLITE_PRIVATE CollSeq *sqlite3ExprNNCollSeq(Parse *pParse, const Expr *pExpr){ CollSeq *p = sqlite3ExprCollSeq(pParse, pExpr); if( p==0 ) p = pParse->db->pDfltColl; assert( p!=0 ); return p; } /* ** Return TRUE if the two expressions have equivalent collating sequences. */ SQLITE_PRIVATE int sqlite3ExprCollSeqMatch(Parse *pParse, const Expr *pE1, const Expr *pE2){ CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pE1); CollSeq *pColl2 = sqlite3ExprNNCollSeq(pParse, pE2); return sqlite3StrICmp(pColl1->zName, pColl2->zName)==0; } /* ** pExpr is an operand of a comparison operator. aff2 is the ** type affinity of the other operand. This routine returns the ** type affinity that should be used for the comparison operator. */ SQLITE_PRIVATE char sqlite3CompareAffinity(const Expr *pExpr, char aff2){ char aff1 = sqlite3ExprAffinity(pExpr); if( aff1>SQLITE_AFF_NONE && aff2>SQLITE_AFF_NONE ){ /* Both sides of the comparison are columns. If one has numeric ** affinity, use that. Otherwise use no affinity. */ if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ return SQLITE_AFF_NUMERIC; }else{ return SQLITE_AFF_BLOB; } }else{ /* One side is a column, the other is not. Use the columns affinity. */ assert( aff1<=SQLITE_AFF_NONE || aff2<=SQLITE_AFF_NONE ); return (aff1<=SQLITE_AFF_NONE ? aff2 : aff1) | SQLITE_AFF_NONE; } } /* ** pExpr is a comparison operator. Return the type affinity that should ** be applied to both operands prior to doing the comparison. */ static char comparisonAffinity(const Expr *pExpr){ char aff; assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); assert( pExpr->pLeft ); aff = sqlite3ExprAffinity(pExpr->pLeft); if( pExpr->pRight ){ aff = sqlite3CompareAffinity(pExpr->pRight, aff); }else if( ExprUseXSelect(pExpr) ){ aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); }else if( aff==0 ){ aff = SQLITE_AFF_BLOB; } return aff; } /* ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. ** idx_affinity is the affinity of an indexed column. Return true ** if the index with affinity idx_affinity may be used to implement ** the comparison in pExpr. */ SQLITE_PRIVATE int sqlite3IndexAffinityOk(const Expr *pExpr, char idx_affinity){ char aff = comparisonAffinity(pExpr); if( affflags & EP_Collate ){ pColl = sqlite3ExprCollSeq(pParse, pLeft); }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ pColl = sqlite3ExprCollSeq(pParse, pRight); }else{ pColl = sqlite3ExprCollSeq(pParse, pLeft); if( !pColl ){ pColl = sqlite3ExprCollSeq(pParse, pRight); } } return pColl; } /* Expresssion p is a comparison operator. Return a collation sequence ** appropriate for the comparison operator. ** ** This is normally just a wrapper around sqlite3BinaryCompareCollSeq(). ** However, if the OP_Commuted flag is set, then the order of the operands ** is reversed in the sqlite3BinaryCompareCollSeq() call so that the ** correct collating sequence is found. */ SQLITE_PRIVATE CollSeq *sqlite3ExprCompareCollSeq(Parse *pParse, const Expr *p){ if( ExprHasProperty(p, EP_Commuted) ){ return sqlite3BinaryCompareCollSeq(pParse, p->pRight, p->pLeft); }else{ return sqlite3BinaryCompareCollSeq(pParse, p->pLeft, p->pRight); } } /* ** Generate code for a comparison operator. */ static int codeCompare( Parse *pParse, /* The parsing (and code generating) context */ Expr *pLeft, /* The left operand */ Expr *pRight, /* The right operand */ int opcode, /* The comparison opcode */ int in1, int in2, /* Register holding operands */ int dest, /* Jump here if true. */ int jumpIfNull, /* If true, jump if either operand is NULL */ int isCommuted /* The comparison has been commuted */ ){ int p5; int addr; CollSeq *p4; if( pParse->nErr ) return 0; if( isCommuted ){ p4 = sqlite3BinaryCompareCollSeq(pParse, pRight, pLeft); }else{ p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); } p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, (void*)p4, P4_COLLSEQ); sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); return addr; } /* ** Return true if expression pExpr is a vector, or false otherwise. ** ** A vector is defined as any expression that results in two or more ** columns of result. Every TK_VECTOR node is an vector because the ** parser will not generate a TK_VECTOR with fewer than two entries. ** But a TK_SELECT might be either a vector or a scalar. It is only ** considered a vector if it has two or more result columns. */ SQLITE_PRIVATE int sqlite3ExprIsVector(const Expr *pExpr){ return sqlite3ExprVectorSize(pExpr)>1; } /* ** If the expression passed as the only argument is of type TK_VECTOR ** return the number of expressions in the vector. Or, if the expression ** is a sub-select, return the number of columns in the sub-select. For ** any other type of expression, return 1. */ SQLITE_PRIVATE int sqlite3ExprVectorSize(const Expr *pExpr){ u8 op = pExpr->op; if( op==TK_REGISTER ) op = pExpr->op2; if( op==TK_VECTOR ){ assert( ExprUseXList(pExpr) ); return pExpr->x.pList->nExpr; }else if( op==TK_SELECT ){ assert( ExprUseXSelect(pExpr) ); return pExpr->x.pSelect->pEList->nExpr; }else{ return 1; } } /* ** Return a pointer to a subexpression of pVector that is the i-th ** column of the vector (numbered starting with 0). The caller must ** ensure that i is within range. ** ** If pVector is really a scalar (and "scalar" here includes subqueries ** that return a single column!) then return pVector unmodified. ** ** pVector retains ownership of the returned subexpression. ** ** If the vector is a (SELECT ...) then the expression returned is ** just the expression for the i-th term of the result set, and may ** not be ready for evaluation because the table cursor has not yet ** been positioned. */ SQLITE_PRIVATE Expr *sqlite3VectorFieldSubexpr(Expr *pVector, int i){ assert( iop==TK_ERROR ); if( sqlite3ExprIsVector(pVector) ){ assert( pVector->op2==0 || pVector->op==TK_REGISTER ); if( pVector->op==TK_SELECT || pVector->op2==TK_SELECT ){ assert( ExprUseXSelect(pVector) ); return pVector->x.pSelect->pEList->a[i].pExpr; }else{ assert( ExprUseXList(pVector) ); return pVector->x.pList->a[i].pExpr; } } return pVector; } /* ** Compute and return a new Expr object which when passed to ** sqlite3ExprCode() will generate all necessary code to compute ** the iField-th column of the vector expression pVector. ** ** It is ok for pVector to be a scalar (as long as iField==0). ** In that case, this routine works like sqlite3ExprDup(). ** ** The caller owns the returned Expr object and is responsible for ** ensuring that the returned value eventually gets freed. ** ** The caller retains ownership of pVector. If pVector is a TK_SELECT, ** then the returned object will reference pVector and so pVector must remain ** valid for the life of the returned object. If pVector is a TK_VECTOR ** or a scalar expression, then it can be deleted as soon as this routine ** returns. ** ** A trick to cause a TK_SELECT pVector to be deleted together with ** the returned Expr object is to attach the pVector to the pRight field ** of the returned TK_SELECT_COLUMN Expr object. */ SQLITE_PRIVATE Expr *sqlite3ExprForVectorField( Parse *pParse, /* Parsing context */ Expr *pVector, /* The vector. List of expressions or a sub-SELECT */ int iField, /* Which column of the vector to return */ int nField /* Total number of columns in the vector */ ){ Expr *pRet; if( pVector->op==TK_SELECT ){ assert( ExprUseXSelect(pVector) ); /* The TK_SELECT_COLUMN Expr node: ** ** pLeft: pVector containing TK_SELECT. Not deleted. ** pRight: not used. But recursively deleted. ** iColumn: Index of a column in pVector ** iTable: 0 or the number of columns on the LHS of an assignment ** pLeft->iTable: First in an array of register holding result, or 0 ** if the result is not yet computed. ** ** sqlite3ExprDelete() specifically skips the recursive delete of ** pLeft on TK_SELECT_COLUMN nodes. But pRight is followed, so pVector ** can be attached to pRight to cause this node to take ownership of ** pVector. Typically there will be multiple TK_SELECT_COLUMN nodes ** with the same pLeft pointer to the pVector, but only one of them ** will own the pVector. */ pRet = sqlite3PExpr(pParse, TK_SELECT_COLUMN, 0, 0); if( pRet ){ pRet->iTable = nField; pRet->iColumn = iField; pRet->pLeft = pVector; } }else{ if( pVector->op==TK_VECTOR ){ Expr **ppVector; assert( ExprUseXList(pVector) ); ppVector = &pVector->x.pList->a[iField].pExpr; pVector = *ppVector; if( IN_RENAME_OBJECT ){ /* This must be a vector UPDATE inside a trigger */ *ppVector = 0; return pVector; } } pRet = sqlite3ExprDup(pParse->db, pVector, 0); } return pRet; } /* ** If expression pExpr is of type TK_SELECT, generate code to evaluate ** it. Return the register in which the result is stored (or, if the ** sub-select returns more than one column, the first in an array ** of registers in which the result is stored). ** ** If pExpr is not a TK_SELECT expression, return 0. */ static int exprCodeSubselect(Parse *pParse, Expr *pExpr){ int reg = 0; #ifndef SQLITE_OMIT_SUBQUERY if( pExpr->op==TK_SELECT ){ reg = sqlite3CodeSubselect(pParse, pExpr); } #endif return reg; } /* ** Argument pVector points to a vector expression - either a TK_VECTOR ** or TK_SELECT that returns more than one column. This function returns ** the register number of a register that contains the value of ** element iField of the vector. ** ** If pVector is a TK_SELECT expression, then code for it must have ** already been generated using the exprCodeSubselect() routine. In this ** case parameter regSelect should be the first in an array of registers ** containing the results of the sub-select. ** ** If pVector is of type TK_VECTOR, then code for the requested field ** is generated. In this case (*pRegFree) may be set to the number of ** a temporary register to be freed by the caller before returning. ** ** Before returning, output parameter (*ppExpr) is set to point to the ** Expr object corresponding to element iElem of the vector. */ static int exprVectorRegister( Parse *pParse, /* Parse context */ Expr *pVector, /* Vector to extract element from */ int iField, /* Field to extract from pVector */ int regSelect, /* First in array of registers */ Expr **ppExpr, /* OUT: Expression element */ int *pRegFree /* OUT: Temp register to free */ ){ u8 op = pVector->op; assert( op==TK_VECTOR || op==TK_REGISTER || op==TK_SELECT || op==TK_ERROR ); if( op==TK_REGISTER ){ *ppExpr = sqlite3VectorFieldSubexpr(pVector, iField); return pVector->iTable+iField; } if( op==TK_SELECT ){ assert( ExprUseXSelect(pVector) ); *ppExpr = pVector->x.pSelect->pEList->a[iField].pExpr; return regSelect+iField; } if( op==TK_VECTOR ){ assert( ExprUseXList(pVector) ); *ppExpr = pVector->x.pList->a[iField].pExpr; return sqlite3ExprCodeTemp(pParse, *ppExpr, pRegFree); } return 0; } /* ** Expression pExpr is a comparison between two vector values. Compute ** the result of the comparison (1, 0, or NULL) and write that ** result into register dest. ** ** The caller must satisfy the following preconditions: ** ** if pExpr->op==TK_IS: op==TK_EQ and p5==SQLITE_NULLEQ ** if pExpr->op==TK_ISNOT: op==TK_NE and p5==SQLITE_NULLEQ ** otherwise: op==pExpr->op and p5==0 */ static void codeVectorCompare( Parse *pParse, /* Code generator context */ Expr *pExpr, /* The comparison operation */ int dest, /* Write results into this register */ u8 op, /* Comparison operator */ u8 p5 /* SQLITE_NULLEQ or zero */ ){ Vdbe *v = pParse->pVdbe; Expr *pLeft = pExpr->pLeft; Expr *pRight = pExpr->pRight; int nLeft = sqlite3ExprVectorSize(pLeft); int i; int regLeft = 0; int regRight = 0; u8 opx = op; int addrCmp = 0; int addrDone = sqlite3VdbeMakeLabel(pParse); int isCommuted = ExprHasProperty(pExpr,EP_Commuted); assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); if( pParse->nErr ) return; if( nLeft!=sqlite3ExprVectorSize(pRight) ){ sqlite3ErrorMsg(pParse, "row value misused"); return; } assert( pExpr->op==TK_EQ || pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT || pExpr->op==TK_LT || pExpr->op==TK_GT || pExpr->op==TK_LE || pExpr->op==TK_GE ); assert( pExpr->op==op || (pExpr->op==TK_IS && op==TK_EQ) || (pExpr->op==TK_ISNOT && op==TK_NE) ); assert( p5==0 || pExpr->op!=op ); assert( p5==SQLITE_NULLEQ || pExpr->op==op ); if( op==TK_LE ) opx = TK_LT; if( op==TK_GE ) opx = TK_GT; if( op==TK_NE ) opx = TK_EQ; regLeft = exprCodeSubselect(pParse, pLeft); regRight = exprCodeSubselect(pParse, pRight); sqlite3VdbeAddOp2(v, OP_Integer, 1, dest); for(i=0; 1 /*Loop exits by "break"*/; i++){ int regFree1 = 0, regFree2 = 0; Expr *pL = 0, *pR = 0; int r1, r2; assert( i>=0 && i0 /* ** Check that argument nHeight is less than or equal to the maximum ** expression depth allowed. If it is not, leave an error message in ** pParse. */ SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ int rc = SQLITE_OK; int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; if( nHeight>mxHeight ){ sqlite3ErrorMsg(pParse, "Expression tree is too large (maximum depth %d)", mxHeight ); rc = SQLITE_ERROR; } return rc; } /* The following three functions, heightOfExpr(), heightOfExprList() ** and heightOfSelect(), are used to determine the maximum height ** of any expression tree referenced by the structure passed as the ** first argument. ** ** If this maximum height is greater than the current value pointed ** to by pnHeight, the second parameter, then set *pnHeight to that ** value. */ static void heightOfExpr(const Expr *p, int *pnHeight){ if( p ){ if( p->nHeight>*pnHeight ){ *pnHeight = p->nHeight; } } } static void heightOfExprList(const ExprList *p, int *pnHeight){ if( p ){ int i; for(i=0; inExpr; i++){ heightOfExpr(p->a[i].pExpr, pnHeight); } } } static void heightOfSelect(const Select *pSelect, int *pnHeight){ const Select *p; for(p=pSelect; p; p=p->pPrior){ heightOfExpr(p->pWhere, pnHeight); heightOfExpr(p->pHaving, pnHeight); heightOfExpr(p->pLimit, pnHeight); heightOfExprList(p->pEList, pnHeight); heightOfExprList(p->pGroupBy, pnHeight); heightOfExprList(p->pOrderBy, pnHeight); } } /* ** Set the Expr.nHeight variable in the structure passed as an ** argument. An expression with no children, Expr.pList or ** Expr.pSelect member has a height of 1. Any other expression ** has a height equal to the maximum height of any other ** referenced Expr plus one. ** ** Also propagate EP_Propagate flags up from Expr.x.pList to Expr.flags, ** if appropriate. */ static void exprSetHeight(Expr *p){ int nHeight = p->pLeft ? p->pLeft->nHeight : 0; if( p->pRight && p->pRight->nHeight>nHeight ) nHeight = p->pRight->nHeight; if( ExprUseXSelect(p) ){ heightOfSelect(p->x.pSelect, &nHeight); }else if( p->x.pList ){ heightOfExprList(p->x.pList, &nHeight); p->flags |= EP_Propagate & sqlite3ExprListFlags(p->x.pList); } p->nHeight = nHeight + 1; } /* ** Set the Expr.nHeight variable using the exprSetHeight() function. If ** the height is greater than the maximum allowed expression depth, ** leave an error in pParse. ** ** Also propagate all EP_Propagate flags from the Expr.x.pList into ** Expr.flags. */ SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){ if( pParse->nErr ) return; exprSetHeight(p); sqlite3ExprCheckHeight(pParse, p->nHeight); } /* ** Return the maximum height of any expression tree referenced ** by the select statement passed as an argument. */ SQLITE_PRIVATE int sqlite3SelectExprHeight(const Select *p){ int nHeight = 0; heightOfSelect(p, &nHeight); return nHeight; } #else /* ABOVE: Height enforcement enabled. BELOW: Height enforcement off */ /* ** Propagate all EP_Propagate flags from the Expr.x.pList into ** Expr.flags. */ SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){ if( pParse->nErr ) return; if( p && ExprUseXList(p) && p->x.pList ){ p->flags |= EP_Propagate & sqlite3ExprListFlags(p->x.pList); } } #define exprSetHeight(y) #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ /* ** This routine is the core allocator for Expr nodes. ** ** Construct a new expression node and return a pointer to it. Memory ** for this node and for the pToken argument is a single allocation ** obtained from sqlite3DbMalloc(). The calling function ** is responsible for making sure the node eventually gets freed. ** ** If dequote is true, then the token (if it exists) is dequoted. ** If dequote is false, no dequoting is performed. The deQuote ** parameter is ignored if pToken is NULL or if the token does not ** appear to be quoted. If the quotes were of the form "..." (double-quotes) ** then the EP_DblQuoted flag is set on the expression node. ** ** Special case: If op==TK_INTEGER and pToken points to a string that ** can be translated into a 32-bit integer, then the token is not ** stored in u.zToken. Instead, the integer values is written ** into u.iValue and the EP_IntValue flag is set. No extra storage ** is allocated to hold the integer text and the dequote flag is ignored. */ SQLITE_PRIVATE Expr *sqlite3ExprAlloc( sqlite3 *db, /* Handle for sqlite3DbMallocRawNN() */ int op, /* Expression opcode */ const Token *pToken, /* Token argument. Might be NULL */ int dequote /* True to dequote */ ){ Expr *pNew; int nExtra = 0; int iValue = 0; assert( db!=0 ); if( pToken ){ if( op!=TK_INTEGER || pToken->z==0 || sqlite3GetInt32(pToken->z, &iValue)==0 ){ nExtra = pToken->n+1; assert( iValue>=0 ); } } pNew = sqlite3DbMallocRawNN(db, sizeof(Expr)+nExtra); if( pNew ){ memset(pNew, 0, sizeof(Expr)); pNew->op = (u8)op; pNew->iAgg = -1; if( pToken ){ if( nExtra==0 ){ pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse); pNew->u.iValue = iValue; }else{ pNew->u.zToken = (char*)&pNew[1]; assert( pToken->z!=0 || pToken->n==0 ); if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); pNew->u.zToken[pToken->n] = 0; if( dequote && sqlite3Isquote(pNew->u.zToken[0]) ){ sqlite3DequoteExpr(pNew); } } } #if SQLITE_MAX_EXPR_DEPTH>0 pNew->nHeight = 1; #endif } return pNew; } /* ** Allocate a new expression node from a zero-terminated token that has ** already been dequoted. */ SQLITE_PRIVATE Expr *sqlite3Expr( sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ int op, /* Expression opcode */ const char *zToken /* Token argument. Might be NULL */ ){ Token x; x.z = zToken; x.n = sqlite3Strlen30(zToken); return sqlite3ExprAlloc(db, op, &x, 0); } /* ** Attach subtrees pLeft and pRight to the Expr node pRoot. ** ** If pRoot==NULL that means that a memory allocation error has occurred. ** In that case, delete the subtrees pLeft and pRight. */ SQLITE_PRIVATE void sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ){ if( pRoot==0 ){ assert( db->mallocFailed ); sqlite3ExprDelete(db, pLeft); sqlite3ExprDelete(db, pRight); }else{ if( pRight ){ pRoot->pRight = pRight; pRoot->flags |= EP_Propagate & pRight->flags; } if( pLeft ){ pRoot->pLeft = pLeft; pRoot->flags |= EP_Propagate & pLeft->flags; } exprSetHeight(pRoot); } } /* ** Allocate an Expr node which joins as many as two subtrees. ** ** One or both of the subtrees can be NULL. Return a pointer to the new ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, ** free the subtrees and return NULL. */ SQLITE_PRIVATE Expr *sqlite3PExpr( Parse *pParse, /* Parsing context */ int op, /* Expression opcode */ Expr *pLeft, /* Left operand */ Expr *pRight /* Right operand */ ){ Expr *p; p = sqlite3DbMallocRawNN(pParse->db, sizeof(Expr)); if( p ){ memset(p, 0, sizeof(Expr)); p->op = op & 0xff; p->iAgg = -1; sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); sqlite3ExprCheckHeight(pParse, p->nHeight); }else{ sqlite3ExprDelete(pParse->db, pLeft); sqlite3ExprDelete(pParse->db, pRight); } return p; } /* ** Add pSelect to the Expr.x.pSelect field. Or, if pExpr is NULL (due ** do a memory allocation failure) then delete the pSelect object. */ SQLITE_PRIVATE void sqlite3PExprAddSelect(Parse *pParse, Expr *pExpr, Select *pSelect){ if( pExpr ){ pExpr->x.pSelect = pSelect; ExprSetProperty(pExpr, EP_xIsSelect|EP_Subquery); sqlite3ExprSetHeightAndFlags(pParse, pExpr); }else{ assert( pParse->db->mallocFailed ); sqlite3SelectDelete(pParse->db, pSelect); } } /* ** Expression list pEList is a list of vector values. This function ** converts the contents of pEList to a VALUES(...) Select statement ** returning 1 row for each element of the list. For example, the ** expression list: ** ** ( (1,2), (3,4) (5,6) ) ** ** is translated to the equivalent of: ** ** VALUES(1,2), (3,4), (5,6) ** ** Each of the vector values in pEList must contain exactly nElem terms. ** If a list element that is not a vector or does not contain nElem terms, ** an error message is left in pParse. ** ** This is used as part of processing IN(...) expressions with a list ** of vectors on the RHS. e.g. "... IN ((1,2), (3,4), (5,6))". */ SQLITE_PRIVATE Select *sqlite3ExprListToValues(Parse *pParse, int nElem, ExprList *pEList){ int ii; Select *pRet = 0; assert( nElem>1 ); for(ii=0; iinExpr; ii++){ Select *pSel; Expr *pExpr = pEList->a[ii].pExpr; int nExprElem; if( pExpr->op==TK_VECTOR ){ assert( ExprUseXList(pExpr) ); nExprElem = pExpr->x.pList->nExpr; }else{ nExprElem = 1; } if( nExprElem!=nElem ){ sqlite3ErrorMsg(pParse, "IN(...) element has %d term%s - expected %d", nExprElem, nExprElem>1?"s":"", nElem ); break; } assert( ExprUseXList(pExpr) ); pSel = sqlite3SelectNew(pParse, pExpr->x.pList, 0, 0, 0, 0, 0, SF_Values,0); pExpr->x.pList = 0; if( pSel ){ if( pRet ){ pSel->op = TK_ALL; pSel->pPrior = pRet; } pRet = pSel; } } if( pRet && pRet->pPrior ){ pRet->selFlags |= SF_MultiValue; } sqlite3ExprListDelete(pParse->db, pEList); return pRet; } /* ** Join two expressions using an AND operator. If either expression is ** NULL, then just return the other expression. ** ** If one side or the other of the AND is known to be false, then instead ** of returning an AND expression, just return a constant expression with ** a value of false. */ SQLITE_PRIVATE Expr *sqlite3ExprAnd(Parse *pParse, Expr *pLeft, Expr *pRight){ sqlite3 *db = pParse->db; if( pLeft==0 ){ return pRight; }else if( pRight==0 ){ return pLeft; }else if( (ExprAlwaysFalse(pLeft) || ExprAlwaysFalse(pRight)) && !IN_RENAME_OBJECT ){ sqlite3ExprDeferredDelete(pParse, pLeft); sqlite3ExprDeferredDelete(pParse, pRight); return sqlite3Expr(db, TK_INTEGER, "0"); }else{ return sqlite3PExpr(pParse, TK_AND, pLeft, pRight); } } /* ** Construct a new expression node for a function with multiple ** arguments. */ SQLITE_PRIVATE Expr *sqlite3ExprFunction( Parse *pParse, /* Parsing context */ ExprList *pList, /* Argument list */ const Token *pToken, /* Name of the function */ int eDistinct /* SF_Distinct or SF_ALL or 0 */ ){ Expr *pNew; sqlite3 *db = pParse->db; assert( pToken ); pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); if( pNew==0 ){ sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ return 0; } pNew->w.iOfst = (int)(pToken->z - pParse->zTail); if( pList && pList->nExpr > pParse->db->aLimit[SQLITE_LIMIT_FUNCTION_ARG] && !pParse->nested ){ sqlite3ErrorMsg(pParse, "too many arguments on function %T", pToken); } pNew->x.pList = pList; ExprSetProperty(pNew, EP_HasFunc); assert( ExprUseXList(pNew) ); sqlite3ExprSetHeightAndFlags(pParse, pNew); if( eDistinct==SF_Distinct ) ExprSetProperty(pNew, EP_Distinct); return pNew; } /* ** Check to see if a function is usable according to current access ** rules: ** ** SQLITE_FUNC_DIRECT - Only usable from top-level SQL ** ** SQLITE_FUNC_UNSAFE - Usable if TRUSTED_SCHEMA or from ** top-level SQL ** ** If the function is not usable, create an error. */ SQLITE_PRIVATE void sqlite3ExprFunctionUsable( Parse *pParse, /* Parsing and code generating context */ const Expr *pExpr, /* The function invocation */ const FuncDef *pDef /* The function being invoked */ ){ assert( !IN_RENAME_OBJECT ); assert( (pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE))!=0 ); if( ExprHasProperty(pExpr, EP_FromDDL) ){ if( (pDef->funcFlags & SQLITE_FUNC_DIRECT)!=0 || (pParse->db->flags & SQLITE_TrustedSchema)==0 ){ /* Functions prohibited in triggers and views if: ** (1) tagged with SQLITE_DIRECTONLY ** (2) not tagged with SQLITE_INNOCUOUS (which means it ** is tagged with SQLITE_FUNC_UNSAFE) and ** SQLITE_DBCONFIG_TRUSTED_SCHEMA is off (meaning ** that the schema is possibly tainted). */ sqlite3ErrorMsg(pParse, "unsafe use of %#T()", pExpr); } } } /* ** Assign a variable number to an expression that encodes a wildcard ** in the original SQL statement. ** ** Wildcards consisting of a single "?" are assigned the next sequential ** variable number. ** ** Wildcards of the form "?nnn" are assigned the number "nnn". We make ** sure "nnn" is not too big to avoid a denial of service attack when ** the SQL statement comes from an external source. ** ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number ** as the previous instance of the same wildcard. Or if this is the first ** instance of the wildcard, the next sequential variable number is ** assigned. */ SQLITE_PRIVATE void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr, u32 n){ sqlite3 *db = pParse->db; const char *z; ynVar x; if( pExpr==0 ) return; assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); z = pExpr->u.zToken; assert( z!=0 ); assert( z[0]!=0 ); assert( n==(u32)sqlite3Strlen30(z) ); if( z[1]==0 ){ /* Wildcard of the form "?". Assign the next variable number */ assert( z[0]=='?' ); x = (ynVar)(++pParse->nVar); }else{ int doAdd = 0; if( z[0]=='?' ){ /* Wildcard of the form "?nnn". Convert "nnn" to an integer and ** use it as the variable number */ i64 i; int bOk; if( n==2 ){ /*OPTIMIZATION-IF-TRUE*/ i = z[1]-'0'; /* The common case of ?N for a single digit N */ bOk = 1; }else{ bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); } testcase( i==0 ); testcase( i==1 ); testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); sqlite3RecordErrorOffsetOfExpr(pParse->db, pExpr); return; } x = (ynVar)i; if( x>pParse->nVar ){ pParse->nVar = (int)x; doAdd = 1; }else if( sqlite3VListNumToName(pParse->pVList, x)==0 ){ doAdd = 1; } }else{ /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable ** number as the prior appearance of the same name, or if the name ** has never appeared before, reuse the same variable number */ x = (ynVar)sqlite3VListNameToNum(pParse->pVList, z, n); if( x==0 ){ x = (ynVar)(++pParse->nVar); doAdd = 1; } } if( doAdd ){ pParse->pVList = sqlite3VListAdd(db, pParse->pVList, z, n, x); } } pExpr->iColumn = x; if( x>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ sqlite3ErrorMsg(pParse, "too many SQL variables"); sqlite3RecordErrorOffsetOfExpr(pParse->db, pExpr); } } /* ** Recursively delete an expression tree. */ static SQLITE_NOINLINE void sqlite3ExprDeleteNN(sqlite3 *db, Expr *p){ assert( p!=0 ); assert( !ExprUseUValue(p) || p->u.iValue>=0 ); assert( !ExprUseYWin(p) || !ExprUseYSub(p) ); assert( !ExprUseYWin(p) || p->y.pWin!=0 || db->mallocFailed ); assert( p->op!=TK_FUNCTION || !ExprUseYSub(p) ); #ifdef SQLITE_DEBUG if( ExprHasProperty(p, EP_Leaf) && !ExprHasProperty(p, EP_TokenOnly) ){ assert( p->pLeft==0 ); assert( p->pRight==0 ); assert( !ExprUseXSelect(p) || p->x.pSelect==0 ); assert( !ExprUseXList(p) || p->x.pList==0 ); } #endif if( !ExprHasProperty(p, (EP_TokenOnly|EP_Leaf)) ){ /* The Expr.x union is never used at the same time as Expr.pRight */ assert( (ExprUseXList(p) && p->x.pList==0) || p->pRight==0 ); if( p->pLeft && p->op!=TK_SELECT_COLUMN ) sqlite3ExprDeleteNN(db, p->pLeft); if( p->pRight ){ assert( !ExprHasProperty(p, EP_WinFunc) ); sqlite3ExprDeleteNN(db, p->pRight); }else if( ExprUseXSelect(p) ){ assert( !ExprHasProperty(p, EP_WinFunc) ); sqlite3SelectDelete(db, p->x.pSelect); }else{ sqlite3ExprListDelete(db, p->x.pList); #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(p, EP_WinFunc) ){ sqlite3WindowDelete(db, p->y.pWin); } #endif } } if( ExprHasProperty(p, EP_MemToken) ){ assert( !ExprHasProperty(p, EP_IntValue) ); sqlite3DbFree(db, p->u.zToken); } if( !ExprHasProperty(p, EP_Static) ){ sqlite3DbFreeNN(db, p); } } SQLITE_PRIVATE void sqlite3ExprDelete(sqlite3 *db, Expr *p){ if( p ) sqlite3ExprDeleteNN(db, p); } /* ** Arrange to cause pExpr to be deleted when the pParse is deleted. ** This is similar to sqlite3ExprDelete() except that the delete is ** deferred untilthe pParse is deleted. ** ** The pExpr might be deleted immediately on an OOM error. ** ** The deferred delete is (currently) implemented by adding the ** pExpr to the pParse->pConstExpr list with a register number of 0. */ SQLITE_PRIVATE void sqlite3ExprDeferredDelete(Parse *pParse, Expr *pExpr){ pParse->pConstExpr = sqlite3ExprListAppend(pParse, pParse->pConstExpr, pExpr); } /* Invoke sqlite3RenameExprUnmap() and sqlite3ExprDelete() on the ** expression. */ SQLITE_PRIVATE void sqlite3ExprUnmapAndDelete(Parse *pParse, Expr *p){ if( p ){ if( IN_RENAME_OBJECT ){ sqlite3RenameExprUnmap(pParse, p); } sqlite3ExprDeleteNN(pParse->db, p); } } /* ** Return the number of bytes allocated for the expression structure ** passed as the first argument. This is always one of EXPR_FULLSIZE, ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. */ static int exprStructSize(const Expr *p){ if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; return EXPR_FULLSIZE; } /* ** The dupedExpr*Size() routines each return the number of bytes required ** to store a copy of an expression or expression tree. They differ in ** how much of the tree is measured. ** ** dupedExprStructSize() Size of only the Expr structure ** dupedExprNodeSize() Size of Expr + space for token ** dupedExprSize() Expr + token + subtree components ** *************************************************************************** ** ** The dupedExprStructSize() function returns two values OR-ed together: ** (1) the space required for a copy of the Expr structure only and ** (2) the EP_xxx flags that indicate what the structure size should be. ** The return values is always one of: ** ** EXPR_FULLSIZE ** EXPR_REDUCEDSIZE | EP_Reduced ** EXPR_TOKENONLYSIZE | EP_TokenOnly ** ** The size of the structure can be found by masking the return value ** of this routine with 0xfff. The flags can be found by masking the ** return value with EP_Reduced|EP_TokenOnly. ** ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size ** (unreduced) Expr objects as they or originally constructed by the parser. ** During expression analysis, extra information is computed and moved into ** later parts of the Expr object and that extra information might get chopped ** off if the expression is reduced. Note also that it does not work to ** make an EXPRDUP_REDUCE copy of a reduced expression. It is only legal ** to reduce a pristine expression tree from the parser. The implementation ** of dupedExprStructSize() contain multiple assert() statements that attempt ** to enforce this constraint. */ static int dupedExprStructSize(const Expr *p, int flags){ int nSize; assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ assert( EXPR_FULLSIZE<=0xfff ); assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); if( 0==flags || p->op==TK_SELECT_COLUMN #ifndef SQLITE_OMIT_WINDOWFUNC || ExprHasProperty(p, EP_WinFunc) #endif ){ nSize = EXPR_FULLSIZE; }else{ assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); assert( !ExprHasProperty(p, EP_FromJoin) ); assert( !ExprHasProperty(p, EP_MemToken) ); assert( !ExprHasVVAProperty(p, EP_NoReduce) ); if( p->pLeft || p->x.pList ){ nSize = EXPR_REDUCEDSIZE | EP_Reduced; }else{ assert( p->pRight==0 ); nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; } } return nSize; } /* ** This function returns the space in bytes required to store the copy ** of the Expr structure and a copy of the Expr.u.zToken string (if that ** string is defined.) */ static int dupedExprNodeSize(const Expr *p, int flags){ int nByte = dupedExprStructSize(p, flags) & 0xfff; if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ nByte += sqlite3Strlen30NN(p->u.zToken)+1; } return ROUND8(nByte); } /* ** Return the number of bytes required to create a duplicate of the ** expression passed as the first argument. The second argument is a ** mask containing EXPRDUP_XXX flags. ** ** The value returned includes space to create a copy of the Expr struct ** itself and the buffer referred to by Expr.u.zToken, if any. ** ** If the EXPRDUP_REDUCE flag is set, then the return value includes ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft ** and Expr.pRight variables (but not for any structures pointed to or ** descended from the Expr.x.pList or Expr.x.pSelect variables). */ static int dupedExprSize(const Expr *p, int flags){ int nByte = 0; if( p ){ nByte = dupedExprNodeSize(p, flags); if( flags&EXPRDUP_REDUCE ){ nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); } } return nByte; } /* ** This function is similar to sqlite3ExprDup(), except that if pzBuffer ** is not NULL then *pzBuffer is assumed to point to a buffer large enough ** to store the copy of expression p, the copies of p->u.zToken ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, ** if any. Before returning, *pzBuffer is set to the first byte past the ** portion of the buffer copied into by this function. */ static Expr *exprDup(sqlite3 *db, const Expr *p, int dupFlags, u8 **pzBuffer){ Expr *pNew; /* Value to return */ u8 *zAlloc; /* Memory space from which to build Expr object */ u32 staticFlag; /* EP_Static if space not obtained from malloc */ assert( db!=0 ); assert( p ); assert( dupFlags==0 || dupFlags==EXPRDUP_REDUCE ); assert( pzBuffer==0 || dupFlags==EXPRDUP_REDUCE ); /* Figure out where to write the new Expr structure. */ if( pzBuffer ){ zAlloc = *pzBuffer; staticFlag = EP_Static; assert( zAlloc!=0 ); }else{ zAlloc = sqlite3DbMallocRawNN(db, dupedExprSize(p, dupFlags)); staticFlag = 0; } pNew = (Expr *)zAlloc; if( pNew ){ /* Set nNewSize to the size allocated for the structure pointed to ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed ** by the copy of the p->u.zToken string (if any). */ const unsigned nStructSize = dupedExprStructSize(p, dupFlags); const int nNewSize = nStructSize & 0xfff; int nToken; if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ nToken = sqlite3Strlen30(p->u.zToken) + 1; }else{ nToken = 0; } if( dupFlags ){ assert( ExprHasProperty(p, EP_Reduced)==0 ); memcpy(zAlloc, p, nNewSize); }else{ u32 nSize = (u32)exprStructSize(p); memcpy(zAlloc, p, nSize); if( nSizeflags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken); pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); pNew->flags |= staticFlag; ExprClearVVAProperties(pNew); if( dupFlags ){ ExprSetVVAProperty(pNew, EP_Immutable); } /* Copy the p->u.zToken string, if any. */ if( nToken ){ char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; memcpy(zToken, p->u.zToken, nToken); } if( 0==((p->flags|pNew->flags) & (EP_TokenOnly|EP_Leaf)) ){ /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ if( ExprUseXSelect(p) ){ pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, dupFlags); }else{ pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, dupFlags); } } /* Fill in pNew->pLeft and pNew->pRight. */ if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly|EP_WinFunc) ){ zAlloc += dupedExprNodeSize(p, dupFlags); if( !ExprHasProperty(pNew, EP_TokenOnly|EP_Leaf) ){ pNew->pLeft = p->pLeft ? exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc) : 0; pNew->pRight = p->pRight ? exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc) : 0; } #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(p, EP_WinFunc) ){ pNew->y.pWin = sqlite3WindowDup(db, pNew, p->y.pWin); assert( ExprHasProperty(pNew, EP_WinFunc) ); } #endif /* SQLITE_OMIT_WINDOWFUNC */ if( pzBuffer ){ *pzBuffer = zAlloc; } }else{ if( !ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ if( pNew->op==TK_SELECT_COLUMN ){ pNew->pLeft = p->pLeft; assert( p->pRight==0 || p->pRight==p->pLeft || ExprHasProperty(p->pLeft, EP_Subquery) ); }else{ pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); } pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); } } } return pNew; } /* ** Create and return a deep copy of the object passed as the second ** argument. If an OOM condition is encountered, NULL is returned ** and the db->mallocFailed flag set. */ #ifndef SQLITE_OMIT_CTE SQLITE_PRIVATE With *sqlite3WithDup(sqlite3 *db, With *p){ With *pRet = 0; if( p ){ sqlite3_int64 nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1); pRet = sqlite3DbMallocZero(db, nByte); if( pRet ){ int i; pRet->nCte = p->nCte; for(i=0; inCte; i++){ pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0); pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0); pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName); } } } return pRet; } #else # define sqlite3WithDup(x,y) 0 #endif #ifndef SQLITE_OMIT_WINDOWFUNC /* ** The gatherSelectWindows() procedure and its helper routine ** gatherSelectWindowsCallback() are used to scan all the expressions ** an a newly duplicated SELECT statement and gather all of the Window ** objects found there, assembling them onto the linked list at Select->pWin. */ static int gatherSelectWindowsCallback(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_FUNCTION && ExprHasProperty(pExpr, EP_WinFunc) ){ Select *pSelect = pWalker->u.pSelect; Window *pWin = pExpr->y.pWin; assert( pWin ); assert( IsWindowFunc(pExpr) ); assert( pWin->ppThis==0 ); sqlite3WindowLink(pSelect, pWin); } return WRC_Continue; } static int gatherSelectWindowsSelectCallback(Walker *pWalker, Select *p){ return p==pWalker->u.pSelect ? WRC_Continue : WRC_Prune; } static void gatherSelectWindows(Select *p){ Walker w; w.xExprCallback = gatherSelectWindowsCallback; w.xSelectCallback = gatherSelectWindowsSelectCallback; w.xSelectCallback2 = 0; w.pParse = 0; w.u.pSelect = p; sqlite3WalkSelect(&w, p); } #endif /* ** The following group of routines make deep copies of expressions, ** expression lists, ID lists, and select statements. The copies can ** be deleted (by being passed to their respective ...Delete() routines) ** without effecting the originals. ** ** The expression list, ID, and source lists return by sqlite3ExprListDup(), ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded ** by subsequent calls to sqlite*ListAppend() routines. ** ** Any tables that the SrcList might point to are not duplicated. ** ** The flags parameter contains a combination of the EXPRDUP_XXX flags. ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a ** truncated version of the usual Expr structure that will be stored as ** part of the in-memory representation of the database schema. */ SQLITE_PRIVATE Expr *sqlite3ExprDup(sqlite3 *db, const Expr *p, int flags){ assert( flags==0 || flags==EXPRDUP_REDUCE ); return p ? exprDup(db, p, flags, 0) : 0; } SQLITE_PRIVATE ExprList *sqlite3ExprListDup(sqlite3 *db, const ExprList *p, int flags){ ExprList *pNew; struct ExprList_item *pItem; const struct ExprList_item *pOldItem; int i; Expr *pPriorSelectColOld = 0; Expr *pPriorSelectColNew = 0; assert( db!=0 ); if( p==0 ) return 0; pNew = sqlite3DbMallocRawNN(db, sqlite3DbMallocSize(db, p)); if( pNew==0 ) return 0; pNew->nExpr = p->nExpr; pNew->nAlloc = p->nAlloc; pItem = pNew->a; pOldItem = p->a; for(i=0; inExpr; i++, pItem++, pOldItem++){ Expr *pOldExpr = pOldItem->pExpr; Expr *pNewExpr; pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); if( pOldExpr && pOldExpr->op==TK_SELECT_COLUMN && (pNewExpr = pItem->pExpr)!=0 ){ if( pNewExpr->pRight ){ pPriorSelectColOld = pOldExpr->pRight; pPriorSelectColNew = pNewExpr->pRight; pNewExpr->pLeft = pNewExpr->pRight; }else{ if( pOldExpr->pLeft!=pPriorSelectColOld ){ pPriorSelectColOld = pOldExpr->pLeft; pPriorSelectColNew = sqlite3ExprDup(db, pPriorSelectColOld, flags); pNewExpr->pRight = pPriorSelectColNew; } pNewExpr->pLeft = pPriorSelectColNew; } } pItem->zEName = sqlite3DbStrDup(db, pOldItem->zEName); pItem->sortFlags = pOldItem->sortFlags; pItem->eEName = pOldItem->eEName; pItem->done = 0; pItem->bNulls = pOldItem->bNulls; pItem->bSorterRef = pOldItem->bSorterRef; pItem->u = pOldItem->u; } return pNew; } /* ** If cursors, triggers, views and subqueries are all omitted from ** the build, then none of the following routines, except for ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes ** called with a NULL argument. */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ || !defined(SQLITE_OMIT_SUBQUERY) SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3 *db, const SrcList *p, int flags){ SrcList *pNew; int i; int nByte; assert( db!=0 ); if( p==0 ) return 0; nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); pNew = sqlite3DbMallocRawNN(db, nByte ); if( pNew==0 ) return 0; pNew->nSrc = pNew->nAlloc = p->nSrc; for(i=0; inSrc; i++){ SrcItem *pNewItem = &pNew->a[i]; const SrcItem *pOldItem = &p->a[i]; Table *pTab; pNewItem->pSchema = pOldItem->pSchema; pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); pNewItem->fg = pOldItem->fg; pNewItem->iCursor = pOldItem->iCursor; pNewItem->addrFillSub = pOldItem->addrFillSub; pNewItem->regReturn = pOldItem->regReturn; if( pNewItem->fg.isIndexedBy ){ pNewItem->u1.zIndexedBy = sqlite3DbStrDup(db, pOldItem->u1.zIndexedBy); } pNewItem->u2 = pOldItem->u2; if( pNewItem->fg.isCte ){ pNewItem->u2.pCteUse->nUse++; } if( pNewItem->fg.isTabFunc ){ pNewItem->u1.pFuncArg = sqlite3ExprListDup(db, pOldItem->u1.pFuncArg, flags); } pTab = pNewItem->pTab = pOldItem->pTab; if( pTab ){ pTab->nTabRef++; } pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); pNewItem->colUsed = pOldItem->colUsed; } return pNew; } SQLITE_PRIVATE IdList *sqlite3IdListDup(sqlite3 *db, const IdList *p){ IdList *pNew; int i; assert( db!=0 ); if( p==0 ) return 0; pNew = sqlite3DbMallocRawNN(db, sizeof(*pNew) ); if( pNew==0 ) return 0; pNew->nId = p->nId; pNew->a = sqlite3DbMallocRawNN(db, p->nId*sizeof(p->a[0]) ); if( pNew->a==0 ){ sqlite3DbFreeNN(db, pNew); return 0; } /* Note that because the size of the allocation for p->a[] is not ** necessarily a power of two, sqlite3IdListAppend() may not be called ** on the duplicate created by this function. */ for(i=0; inId; i++){ struct IdList_item *pNewItem = &pNew->a[i]; struct IdList_item *pOldItem = &p->a[i]; pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); pNewItem->idx = pOldItem->idx; } return pNew; } SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, const Select *pDup, int flags){ Select *pRet = 0; Select *pNext = 0; Select **pp = &pRet; const Select *p; assert( db!=0 ); for(p=pDup; p; p=p->pPrior){ Select *pNew = sqlite3DbMallocRawNN(db, sizeof(*p) ); if( pNew==0 ) break; pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); pNew->op = p->op; pNew->pNext = pNext; pNew->pPrior = 0; pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); pNew->iLimit = 0; pNew->iOffset = 0; pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; pNew->addrOpenEphm[0] = -1; pNew->addrOpenEphm[1] = -1; pNew->nSelectRow = p->nSelectRow; pNew->pWith = sqlite3WithDup(db, p->pWith); #ifndef SQLITE_OMIT_WINDOWFUNC pNew->pWin = 0; pNew->pWinDefn = sqlite3WindowListDup(db, p->pWinDefn); if( p->pWin && db->mallocFailed==0 ) gatherSelectWindows(pNew); #endif pNew->selId = p->selId; if( db->mallocFailed ){ /* Any prior OOM might have left the Select object incomplete. ** Delete the whole thing rather than allow an incomplete Select ** to be used by the code generator. */ pNew->pNext = 0; sqlite3SelectDelete(db, pNew); break; } *pp = pNew; pp = &pNew->pPrior; pNext = pNew; } return pRet; } #else SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, const Select *p, int flags){ assert( p==0 ); return 0; } #endif /* ** Add a new element to the end of an expression list. If pList is ** initially NULL, then create a new expression list. ** ** The pList argument must be either NULL or a pointer to an ExprList ** obtained from a prior call to sqlite3ExprListAppend(). This routine ** may not be used with an ExprList obtained from sqlite3ExprListDup(). ** Reason: This routine assumes that the number of slots in pList->a[] ** is a power of two. That is true for sqlite3ExprListAppend() returns ** but is not necessarily true from the return value of sqlite3ExprListDup(). ** ** If a memory allocation error occurs, the entire list is freed and ** NULL is returned. If non-NULL is returned, then it is guaranteed ** that the new entry was successfully appended. */ static const struct ExprList_item zeroItem = {0}; SQLITE_PRIVATE SQLITE_NOINLINE ExprList *sqlite3ExprListAppendNew( sqlite3 *db, /* Database handle. Used for memory allocation */ Expr *pExpr /* Expression to be appended. Might be NULL */ ){ struct ExprList_item *pItem; ExprList *pList; pList = sqlite3DbMallocRawNN(db, sizeof(ExprList)+sizeof(pList->a[0])*4 ); if( pList==0 ){ sqlite3ExprDelete(db, pExpr); return 0; } pList->nAlloc = 4; pList->nExpr = 1; pItem = &pList->a[0]; *pItem = zeroItem; pItem->pExpr = pExpr; return pList; } SQLITE_PRIVATE SQLITE_NOINLINE ExprList *sqlite3ExprListAppendGrow( sqlite3 *db, /* Database handle. Used for memory allocation */ ExprList *pList, /* List to which to append. Might be NULL */ Expr *pExpr /* Expression to be appended. Might be NULL */ ){ struct ExprList_item *pItem; ExprList *pNew; pList->nAlloc *= 2; pNew = sqlite3DbRealloc(db, pList, sizeof(*pList)+(pList->nAlloc-1)*sizeof(pList->a[0])); if( pNew==0 ){ sqlite3ExprListDelete(db, pList); sqlite3ExprDelete(db, pExpr); return 0; }else{ pList = pNew; } pItem = &pList->a[pList->nExpr++]; *pItem = zeroItem; pItem->pExpr = pExpr; return pList; } SQLITE_PRIVATE ExprList *sqlite3ExprListAppend( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to append. Might be NULL */ Expr *pExpr /* Expression to be appended. Might be NULL */ ){ struct ExprList_item *pItem; if( pList==0 ){ return sqlite3ExprListAppendNew(pParse->db,pExpr); } if( pList->nAllocnExpr+1 ){ return sqlite3ExprListAppendGrow(pParse->db,pList,pExpr); } pItem = &pList->a[pList->nExpr++]; *pItem = zeroItem; pItem->pExpr = pExpr; return pList; } /* ** pColumns and pExpr form a vector assignment which is part of the SET ** clause of an UPDATE statement. Like this: ** ** (a,b,c) = (expr1,expr2,expr3) ** Or: (a,b,c) = (SELECT x,y,z FROM ....) ** ** For each term of the vector assignment, append new entries to the ** expression list pList. In the case of a subquery on the RHS, append ** TK_SELECT_COLUMN expressions. */ SQLITE_PRIVATE ExprList *sqlite3ExprListAppendVector( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to append. Might be NULL */ IdList *pColumns, /* List of names of LHS of the assignment */ Expr *pExpr /* Vector expression to be appended. Might be NULL */ ){ sqlite3 *db = pParse->db; int n; int i; int iFirst = pList ? pList->nExpr : 0; /* pColumns can only be NULL due to an OOM but an OOM will cause an ** exit prior to this routine being invoked */ if( NEVER(pColumns==0) ) goto vector_append_error; if( pExpr==0 ) goto vector_append_error; /* If the RHS is a vector, then we can immediately check to see that ** the size of the RHS and LHS match. But if the RHS is a SELECT, ** wildcards ("*") in the result set of the SELECT must be expanded before ** we can do the size check, so defer the size check until code generation. */ if( pExpr->op!=TK_SELECT && pColumns->nId!=(n=sqlite3ExprVectorSize(pExpr)) ){ sqlite3ErrorMsg(pParse, "%d columns assigned %d values", pColumns->nId, n); goto vector_append_error; } for(i=0; inId; i++){ Expr *pSubExpr = sqlite3ExprForVectorField(pParse, pExpr, i, pColumns->nId); assert( pSubExpr!=0 || db->mallocFailed ); if( pSubExpr==0 ) continue; pList = sqlite3ExprListAppend(pParse, pList, pSubExpr); if( pList ){ assert( pList->nExpr==iFirst+i+1 ); pList->a[pList->nExpr-1].zEName = pColumns->a[i].zName; pColumns->a[i].zName = 0; } } if( !db->mallocFailed && pExpr->op==TK_SELECT && ALWAYS(pList!=0) ){ Expr *pFirst = pList->a[iFirst].pExpr; assert( pFirst!=0 ); assert( pFirst->op==TK_SELECT_COLUMN ); /* Store the SELECT statement in pRight so it will be deleted when ** sqlite3ExprListDelete() is called */ pFirst->pRight = pExpr; pExpr = 0; /* Remember the size of the LHS in iTable so that we can check that ** the RHS and LHS sizes match during code generation. */ pFirst->iTable = pColumns->nId; } vector_append_error: sqlite3ExprUnmapAndDelete(pParse, pExpr); sqlite3IdListDelete(db, pColumns); return pList; } /* ** Set the sort order for the last element on the given ExprList. */ SQLITE_PRIVATE void sqlite3ExprListSetSortOrder(ExprList *p, int iSortOrder, int eNulls){ struct ExprList_item *pItem; if( p==0 ) return; assert( p->nExpr>0 ); assert( SQLITE_SO_UNDEFINED<0 && SQLITE_SO_ASC==0 && SQLITE_SO_DESC>0 ); assert( iSortOrder==SQLITE_SO_UNDEFINED || iSortOrder==SQLITE_SO_ASC || iSortOrder==SQLITE_SO_DESC ); assert( eNulls==SQLITE_SO_UNDEFINED || eNulls==SQLITE_SO_ASC || eNulls==SQLITE_SO_DESC ); pItem = &p->a[p->nExpr-1]; assert( pItem->bNulls==0 ); if( iSortOrder==SQLITE_SO_UNDEFINED ){ iSortOrder = SQLITE_SO_ASC; } pItem->sortFlags = (u8)iSortOrder; if( eNulls!=SQLITE_SO_UNDEFINED ){ pItem->bNulls = 1; if( iSortOrder!=eNulls ){ pItem->sortFlags |= KEYINFO_ORDER_BIGNULL; } } } /* ** Set the ExprList.a[].zEName element of the most recently added item ** on the expression list. ** ** pList might be NULL following an OOM error. But pName should never be ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag ** is set. */ SQLITE_PRIVATE void sqlite3ExprListSetName( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to add the span. */ const Token *pName, /* Name to be added */ int dequote /* True to cause the name to be dequoted */ ){ assert( pList!=0 || pParse->db->mallocFailed!=0 ); assert( pParse->eParseMode!=PARSE_MODE_UNMAP || dequote==0 ); if( pList ){ struct ExprList_item *pItem; assert( pList->nExpr>0 ); pItem = &pList->a[pList->nExpr-1]; assert( pItem->zEName==0 ); assert( pItem->eEName==ENAME_NAME ); pItem->zEName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); if( dequote ){ /* If dequote==0, then pName->z does not point to part of a DDL ** statement handled by the parser. And so no token need be added ** to the token-map. */ sqlite3Dequote(pItem->zEName); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (const void*)pItem->zEName, pName); } } } } /* ** Set the ExprList.a[].zSpan element of the most recently added item ** on the expression list. ** ** pList might be NULL following an OOM error. But pSpan should never be ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag ** is set. */ SQLITE_PRIVATE void sqlite3ExprListSetSpan( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to add the span. */ const char *zStart, /* Start of the span */ const char *zEnd /* End of the span */ ){ sqlite3 *db = pParse->db; assert( pList!=0 || db->mallocFailed!=0 ); if( pList ){ struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; assert( pList->nExpr>0 ); if( pItem->zEName==0 ){ pItem->zEName = sqlite3DbSpanDup(db, zStart, zEnd); pItem->eEName = ENAME_SPAN; } } } /* ** If the expression list pEList contains more than iLimit elements, ** leave an error message in pParse. */ SQLITE_PRIVATE void sqlite3ExprListCheckLength( Parse *pParse, ExprList *pEList, const char *zObject ){ int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; testcase( pEList && pEList->nExpr==mx ); testcase( pEList && pEList->nExpr==mx+1 ); if( pEList && pEList->nExpr>mx ){ sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); } } /* ** Delete an entire expression list. */ static SQLITE_NOINLINE void exprListDeleteNN(sqlite3 *db, ExprList *pList){ int i = pList->nExpr; struct ExprList_item *pItem = pList->a; assert( pList->nExpr>0 ); do{ sqlite3ExprDelete(db, pItem->pExpr); sqlite3DbFree(db, pItem->zEName); pItem++; }while( --i>0 ); sqlite3DbFreeNN(db, pList); } SQLITE_PRIVATE void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ if( pList ) exprListDeleteNN(db, pList); } /* ** Return the bitwise-OR of all Expr.flags fields in the given ** ExprList. */ SQLITE_PRIVATE u32 sqlite3ExprListFlags(const ExprList *pList){ int i; u32 m = 0; assert( pList!=0 ); for(i=0; inExpr; i++){ Expr *pExpr = pList->a[i].pExpr; assert( pExpr!=0 ); m |= pExpr->flags; } return m; } /* ** This is a SELECT-node callback for the expression walker that ** always "fails". By "fail" in this case, we mean set ** pWalker->eCode to zero and abort. ** ** This callback is used by multiple expression walkers. */ SQLITE_PRIVATE int sqlite3SelectWalkFail(Walker *pWalker, Select *NotUsed){ UNUSED_PARAMETER(NotUsed); pWalker->eCode = 0; return WRC_Abort; } /* ** Check the input string to see if it is "true" or "false" (in any case). ** ** If the string is.... Return ** "true" EP_IsTrue ** "false" EP_IsFalse ** anything else 0 */ SQLITE_PRIVATE u32 sqlite3IsTrueOrFalse(const char *zIn){ if( sqlite3StrICmp(zIn, "true")==0 ) return EP_IsTrue; if( sqlite3StrICmp(zIn, "false")==0 ) return EP_IsFalse; return 0; } /* ** If the input expression is an ID with the name "true" or "false" ** then convert it into an TK_TRUEFALSE term. Return non-zero if ** the conversion happened, and zero if the expression is unaltered. */ SQLITE_PRIVATE int sqlite3ExprIdToTrueFalse(Expr *pExpr){ u32 v; assert( pExpr->op==TK_ID || pExpr->op==TK_STRING ); if( !ExprHasProperty(pExpr, EP_Quoted|EP_IntValue) && (v = sqlite3IsTrueOrFalse(pExpr->u.zToken))!=0 ){ pExpr->op = TK_TRUEFALSE; ExprSetProperty(pExpr, v); return 1; } return 0; } /* ** The argument must be a TK_TRUEFALSE Expr node. Return 1 if it is TRUE ** and 0 if it is FALSE. */ SQLITE_PRIVATE int sqlite3ExprTruthValue(const Expr *pExpr){ pExpr = sqlite3ExprSkipCollate((Expr*)pExpr); assert( pExpr->op==TK_TRUEFALSE ); assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( sqlite3StrICmp(pExpr->u.zToken,"true")==0 || sqlite3StrICmp(pExpr->u.zToken,"false")==0 ); return pExpr->u.zToken[4]==0; } /* ** If pExpr is an AND or OR expression, try to simplify it by eliminating ** terms that are always true or false. Return the simplified expression. ** Or return the original expression if no simplification is possible. ** ** Examples: ** ** (x<10) AND true => (x<10) ** (x<10) AND false => false ** (x<10) AND (y=22 OR false) => (x<10) AND (y=22) ** (x<10) AND (y=22 OR true) => (x<10) ** (y=22) OR true => true */ SQLITE_PRIVATE Expr *sqlite3ExprSimplifiedAndOr(Expr *pExpr){ assert( pExpr!=0 ); if( pExpr->op==TK_AND || pExpr->op==TK_OR ){ Expr *pRight = sqlite3ExprSimplifiedAndOr(pExpr->pRight); Expr *pLeft = sqlite3ExprSimplifiedAndOr(pExpr->pLeft); if( ExprAlwaysTrue(pLeft) || ExprAlwaysFalse(pRight) ){ pExpr = pExpr->op==TK_AND ? pRight : pLeft; }else if( ExprAlwaysTrue(pRight) || ExprAlwaysFalse(pLeft) ){ pExpr = pExpr->op==TK_AND ? pLeft : pRight; } } return pExpr; } /* ** These routines are Walker callbacks used to check expressions to ** see if they are "constant" for some definition of constant. The ** Walker.eCode value determines the type of "constant" we are looking ** for. ** ** These callback routines are used to implement the following: ** ** sqlite3ExprIsConstant() pWalker->eCode==1 ** sqlite3ExprIsConstantNotJoin() pWalker->eCode==2 ** sqlite3ExprIsTableConstant() pWalker->eCode==3 ** sqlite3ExprIsConstantOrFunction() pWalker->eCode==4 or 5 ** ** In all cases, the callbacks set Walker.eCode=0 and abort if the expression ** is found to not be a constant. ** ** The sqlite3ExprIsConstantOrFunction() is used for evaluating DEFAULT ** expressions in a CREATE TABLE statement. The Walker.eCode value is 5 ** when parsing an existing schema out of the sqlite_schema table and 4 ** when processing a new CREATE TABLE statement. A bound parameter raises ** an error for new statements, but is silently converted ** to NULL for existing schemas. This allows sqlite_schema tables that ** contain a bound parameter because they were generated by older versions ** of SQLite to be parsed by newer versions of SQLite without raising a ** malformed schema error. */ static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ /* If pWalker->eCode is 2 then any term of the expression that comes from ** the ON or USING clauses of a left join disqualifies the expression ** from being considered constant. */ if( pWalker->eCode==2 && ExprHasProperty(pExpr, EP_FromJoin) ){ pWalker->eCode = 0; return WRC_Abort; } switch( pExpr->op ){ /* Consider functions to be constant if all their arguments are constant ** and either pWalker->eCode==4 or 5 or the function has the ** SQLITE_FUNC_CONST flag. */ case TK_FUNCTION: if( (pWalker->eCode>=4 || ExprHasProperty(pExpr,EP_ConstFunc)) && !ExprHasProperty(pExpr, EP_WinFunc) ){ if( pWalker->eCode==5 ) ExprSetProperty(pExpr, EP_FromDDL); return WRC_Continue; }else{ pWalker->eCode = 0; return WRC_Abort; } case TK_ID: /* Convert "true" or "false" in a DEFAULT clause into the ** appropriate TK_TRUEFALSE operator */ if( sqlite3ExprIdToTrueFalse(pExpr) ){ return WRC_Prune; } /* no break */ deliberate_fall_through case TK_COLUMN: case TK_AGG_FUNCTION: case TK_AGG_COLUMN: testcase( pExpr->op==TK_ID ); testcase( pExpr->op==TK_COLUMN ); testcase( pExpr->op==TK_AGG_FUNCTION ); testcase( pExpr->op==TK_AGG_COLUMN ); if( ExprHasProperty(pExpr, EP_FixedCol) && pWalker->eCode!=2 ){ return WRC_Continue; } if( pWalker->eCode==3 && pExpr->iTable==pWalker->u.iCur ){ return WRC_Continue; } /* no break */ deliberate_fall_through case TK_IF_NULL_ROW: case TK_REGISTER: case TK_DOT: testcase( pExpr->op==TK_REGISTER ); testcase( pExpr->op==TK_IF_NULL_ROW ); testcase( pExpr->op==TK_DOT ); pWalker->eCode = 0; return WRC_Abort; case TK_VARIABLE: if( pWalker->eCode==5 ){ /* Silently convert bound parameters that appear inside of CREATE ** statements into a NULL when parsing the CREATE statement text out ** of the sqlite_schema table */ pExpr->op = TK_NULL; }else if( pWalker->eCode==4 ){ /* A bound parameter in a CREATE statement that originates from ** sqlite3_prepare() causes an error */ pWalker->eCode = 0; return WRC_Abort; } /* no break */ deliberate_fall_through default: testcase( pExpr->op==TK_SELECT ); /* sqlite3SelectWalkFail() disallows */ testcase( pExpr->op==TK_EXISTS ); /* sqlite3SelectWalkFail() disallows */ return WRC_Continue; } } static int exprIsConst(Expr *p, int initFlag, int iCur){ Walker w; w.eCode = initFlag; w.xExprCallback = exprNodeIsConstant; w.xSelectCallback = sqlite3SelectWalkFail; #ifdef SQLITE_DEBUG w.xSelectCallback2 = sqlite3SelectWalkAssert2; #endif w.u.iCur = iCur; sqlite3WalkExpr(&w, p); return w.eCode; } /* ** Walk an expression tree. Return non-zero if the expression is constant ** and 0 if it involves variables or function calls. ** ** For the purposes of this function, a double-quoted string (ex: "abc") ** is considered a variable but a single-quoted string (ex: 'abc') is ** a constant. */ SQLITE_PRIVATE int sqlite3ExprIsConstant(Expr *p){ return exprIsConst(p, 1, 0); } /* ** Walk an expression tree. Return non-zero if ** ** (1) the expression is constant, and ** (2) the expression does originate in the ON or USING clause ** of a LEFT JOIN, and ** (3) the expression does not contain any EP_FixedCol TK_COLUMN ** operands created by the constant propagation optimization. ** ** When this routine returns true, it indicates that the expression ** can be added to the pParse->pConstExpr list and evaluated once when ** the prepared statement starts up. See sqlite3ExprCodeRunJustOnce(). */ SQLITE_PRIVATE int sqlite3ExprIsConstantNotJoin(Expr *p){ return exprIsConst(p, 2, 0); } /* ** Walk an expression tree. Return non-zero if the expression is constant ** for any single row of the table with cursor iCur. In other words, the ** expression must not refer to any non-deterministic function nor any ** table other than iCur. */ SQLITE_PRIVATE int sqlite3ExprIsTableConstant(Expr *p, int iCur){ return exprIsConst(p, 3, iCur); } /* ** sqlite3WalkExpr() callback used by sqlite3ExprIsConstantOrGroupBy(). */ static int exprNodeIsConstantOrGroupBy(Walker *pWalker, Expr *pExpr){ ExprList *pGroupBy = pWalker->u.pGroupBy; int i; /* Check if pExpr is identical to any GROUP BY term. If so, consider ** it constant. */ for(i=0; inExpr; i++){ Expr *p = pGroupBy->a[i].pExpr; if( sqlite3ExprCompare(0, pExpr, p, -1)<2 ){ CollSeq *pColl = sqlite3ExprNNCollSeq(pWalker->pParse, p); if( sqlite3IsBinary(pColl) ){ return WRC_Prune; } } } /* Check if pExpr is a sub-select. If so, consider it variable. */ if( ExprUseXSelect(pExpr) ){ pWalker->eCode = 0; return WRC_Abort; } return exprNodeIsConstant(pWalker, pExpr); } /* ** Walk the expression tree passed as the first argument. Return non-zero ** if the expression consists entirely of constants or copies of terms ** in pGroupBy that sort with the BINARY collation sequence. ** ** This routine is used to determine if a term of the HAVING clause can ** be promoted into the WHERE clause. In order for such a promotion to work, ** the value of the HAVING clause term must be the same for all members of ** a "group". The requirement that the GROUP BY term must be BINARY ** assumes that no other collating sequence will have a finer-grained ** grouping than binary. In other words (A=B COLLATE binary) implies ** A=B in every other collating sequence. The requirement that the ** GROUP BY be BINARY is stricter than necessary. It would also work ** to promote HAVING clauses that use the same alternative collating ** sequence as the GROUP BY term, but that is much harder to check, ** alternative collating sequences are uncommon, and this is only an ** optimization, so we take the easy way out and simply require the ** GROUP BY to use the BINARY collating sequence. */ SQLITE_PRIVATE int sqlite3ExprIsConstantOrGroupBy(Parse *pParse, Expr *p, ExprList *pGroupBy){ Walker w; w.eCode = 1; w.xExprCallback = exprNodeIsConstantOrGroupBy; w.xSelectCallback = 0; w.u.pGroupBy = pGroupBy; w.pParse = pParse; sqlite3WalkExpr(&w, p); return w.eCode; } /* ** Walk an expression tree for the DEFAULT field of a column definition ** in a CREATE TABLE statement. Return non-zero if the expression is ** acceptable for use as a DEFAULT. That is to say, return non-zero if ** the expression is constant or a function call with constant arguments. ** Return and 0 if there are any variables. ** ** isInit is true when parsing from sqlite_schema. isInit is false when ** processing a new CREATE TABLE statement. When isInit is true, parameters ** (such as ? or $abc) in the expression are converted into NULL. When ** isInit is false, parameters raise an error. Parameters should not be ** allowed in a CREATE TABLE statement, but some legacy versions of SQLite ** allowed it, so we need to support it when reading sqlite_schema for ** backwards compatibility. ** ** If isInit is true, set EP_FromDDL on every TK_FUNCTION node. ** ** For the purposes of this function, a double-quoted string (ex: "abc") ** is considered a variable but a single-quoted string (ex: 'abc') is ** a constant. */ SQLITE_PRIVATE int sqlite3ExprIsConstantOrFunction(Expr *p, u8 isInit){ assert( isInit==0 || isInit==1 ); return exprIsConst(p, 4+isInit, 0); } #ifdef SQLITE_ENABLE_CURSOR_HINTS /* ** Walk an expression tree. Return 1 if the expression contains a ** subquery of some kind. Return 0 if there are no subqueries. */ SQLITE_PRIVATE int sqlite3ExprContainsSubquery(Expr *p){ Walker w; w.eCode = 1; w.xExprCallback = sqlite3ExprWalkNoop; w.xSelectCallback = sqlite3SelectWalkFail; #ifdef SQLITE_DEBUG w.xSelectCallback2 = sqlite3SelectWalkAssert2; #endif sqlite3WalkExpr(&w, p); return w.eCode==0; } #endif /* ** If the expression p codes a constant integer that is small enough ** to fit in a 32-bit integer, return 1 and put the value of the integer ** in *pValue. If the expression is not an integer or if it is too big ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. */ SQLITE_PRIVATE int sqlite3ExprIsInteger(const Expr *p, int *pValue){ int rc = 0; if( NEVER(p==0) ) return 0; /* Used to only happen following on OOM */ /* If an expression is an integer literal that fits in a signed 32-bit ** integer, then the EP_IntValue flag will have already been set */ assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 || sqlite3GetInt32(p->u.zToken, &rc)==0 ); if( p->flags & EP_IntValue ){ *pValue = p->u.iValue; return 1; } switch( p->op ){ case TK_UPLUS: { rc = sqlite3ExprIsInteger(p->pLeft, pValue); break; } case TK_UMINUS: { int v = 0; if( sqlite3ExprIsInteger(p->pLeft, &v) ){ assert( ((unsigned int)v)!=0x80000000 ); *pValue = -v; rc = 1; } break; } default: break; } return rc; } /* ** Return FALSE if there is no chance that the expression can be NULL. ** ** If the expression might be NULL or if the expression is too complex ** to tell return TRUE. ** ** This routine is used as an optimization, to skip OP_IsNull opcodes ** when we know that a value cannot be NULL. Hence, a false positive ** (returning TRUE when in fact the expression can never be NULL) might ** be a small performance hit but is otherwise harmless. On the other ** hand, a false negative (returning FALSE when the result could be NULL) ** will likely result in an incorrect answer. So when in doubt, return ** TRUE. */ SQLITE_PRIVATE int sqlite3ExprCanBeNull(const Expr *p){ u8 op; assert( p!=0 ); while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; assert( p!=0 ); } op = p->op; if( op==TK_REGISTER ) op = p->op2; switch( op ){ case TK_INTEGER: case TK_STRING: case TK_FLOAT: case TK_BLOB: return 0; case TK_COLUMN: assert( ExprUseYTab(p) ); return ExprHasProperty(p, EP_CanBeNull) || p->y.pTab==0 || /* Reference to column of index on expression */ (p->iColumn>=0 && p->y.pTab->aCol!=0 /* Possible due to prior error */ && p->y.pTab->aCol[p->iColumn].notNull==0); default: return 1; } } /* ** Return TRUE if the given expression is a constant which would be ** unchanged by OP_Affinity with the affinity given in the second ** argument. ** ** This routine is used to determine if the OP_Affinity operation ** can be omitted. When in doubt return FALSE. A false negative ** is harmless. A false positive, however, can result in the wrong ** answer. */ SQLITE_PRIVATE int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ u8 op; int unaryMinus = 0; if( aff==SQLITE_AFF_BLOB ) return 1; while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ if( p->op==TK_UMINUS ) unaryMinus = 1; p = p->pLeft; } op = p->op; if( op==TK_REGISTER ) op = p->op2; switch( op ){ case TK_INTEGER: { return aff>=SQLITE_AFF_NUMERIC; } case TK_FLOAT: { return aff>=SQLITE_AFF_NUMERIC; } case TK_STRING: { return !unaryMinus && aff==SQLITE_AFF_TEXT; } case TK_BLOB: { return !unaryMinus; } case TK_COLUMN: { assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ return aff>=SQLITE_AFF_NUMERIC && p->iColumn<0; } default: { return 0; } } } /* ** Return TRUE if the given string is a row-id column name. */ SQLITE_PRIVATE int sqlite3IsRowid(const char *z){ if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; if( sqlite3StrICmp(z, "OID")==0 ) return 1; return 0; } /* ** pX is the RHS of an IN operator. If pX is a SELECT statement ** that can be simplified to a direct table access, then return ** a pointer to the SELECT statement. If pX is not a SELECT statement, ** or if the SELECT statement needs to be manifested into a transient ** table, then return NULL. */ #ifndef SQLITE_OMIT_SUBQUERY static Select *isCandidateForInOpt(const Expr *pX){ Select *p; SrcList *pSrc; ExprList *pEList; Table *pTab; int i; if( !ExprUseXSelect(pX) ) return 0; /* Not a subquery */ if( ExprHasProperty(pX, EP_VarSelect) ) return 0; /* Correlated subq */ p = pX->x.pSelect; if( p->pPrior ) return 0; /* Not a compound SELECT */ if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); return 0; /* No DISTINCT keyword and no aggregate functions */ } assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ if( p->pLimit ) return 0; /* Has no LIMIT clause */ if( p->pWhere ) return 0; /* Has no WHERE clause */ pSrc = p->pSrc; assert( pSrc!=0 ); if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ pTab = pSrc->a[0].pTab; assert( pTab!=0 ); assert( !IsView(pTab) ); /* FROM clause is not a view */ if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ pEList = p->pEList; assert( pEList!=0 ); /* All SELECT results must be columns. */ for(i=0; inExpr; i++){ Expr *pRes = pEList->a[i].pExpr; if( pRes->op!=TK_COLUMN ) return 0; assert( pRes->iTable==pSrc->a[0].iCursor ); /* Not a correlated subquery */ } return p; } #endif /* SQLITE_OMIT_SUBQUERY */ #ifndef SQLITE_OMIT_SUBQUERY /* ** Generate code that checks the left-most column of index table iCur to see if ** it contains any NULL entries. Cause the register at regHasNull to be set ** to a non-NULL value if iCur contains no NULLs. Cause register regHasNull ** to be set to NULL if iCur contains one or more NULL values. */ static void sqlite3SetHasNullFlag(Vdbe *v, int iCur, int regHasNull){ int addr1; sqlite3VdbeAddOp2(v, OP_Integer, 0, regHasNull); addr1 = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Column, iCur, 0, regHasNull); sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); VdbeComment((v, "first_entry_in(%d)", iCur)); sqlite3VdbeJumpHere(v, addr1); } #endif #ifndef SQLITE_OMIT_SUBQUERY /* ** The argument is an IN operator with a list (not a subquery) on the ** right-hand side. Return TRUE if that list is constant. */ static int sqlite3InRhsIsConstant(Expr *pIn){ Expr *pLHS; int res; assert( !ExprHasProperty(pIn, EP_xIsSelect) ); pLHS = pIn->pLeft; pIn->pLeft = 0; res = sqlite3ExprIsConstant(pIn); pIn->pLeft = pLHS; return res; } #endif /* ** This function is used by the implementation of the IN (...) operator. ** The pX parameter is the expression on the RHS of the IN operator, which ** might be either a list of expressions or a subquery. ** ** The job of this routine is to find or create a b-tree object that can ** be used either to test for membership in the RHS set or to iterate through ** all members of the RHS set, skipping duplicates. ** ** A cursor is opened on the b-tree object that is the RHS of the IN operator ** and pX->iTable is set to the index of that cursor. ** ** The returned value of this function indicates the b-tree type, as follows: ** ** IN_INDEX_ROWID - The cursor was opened on a database table. ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. ** IN_INDEX_EPH - The cursor was opened on a specially created and ** populated epheremal table. ** IN_INDEX_NOOP - No cursor was allocated. The IN operator must be ** implemented as a sequence of comparisons. ** ** An existing b-tree might be used if the RHS expression pX is a simple ** subquery such as: ** ** SELECT , ... FROM ** ** If the RHS of the IN operator is a list or a more complex subquery, then ** an ephemeral table might need to be generated from the RHS and then ** pX->iTable made to point to the ephemeral table instead of an ** existing table. ** ** The inFlags parameter must contain, at a minimum, one of the bits ** IN_INDEX_MEMBERSHIP or IN_INDEX_LOOP but not both. If inFlags contains ** IN_INDEX_MEMBERSHIP, then the generated table will be used for a fast ** membership test. When the IN_INDEX_LOOP bit is set, the IN index will ** be used to loop over all values of the RHS of the IN operator. ** ** When IN_INDEX_LOOP is used (and the b-tree will be used to iterate ** through the set members) then the b-tree must not contain duplicates. ** An epheremal table will be created unless the selected columns are guaranteed ** to be unique - either because it is an INTEGER PRIMARY KEY or due to ** a UNIQUE constraint or index. ** ** When IN_INDEX_MEMBERSHIP is used (and the b-tree will be used ** for fast set membership tests) then an epheremal table must ** be used unless is a single INTEGER PRIMARY KEY column or an ** index can be found with the specified as its left-most. ** ** If the IN_INDEX_NOOP_OK and IN_INDEX_MEMBERSHIP are both set and ** if the RHS of the IN operator is a list (not a subquery) then this ** routine might decide that creating an ephemeral b-tree for membership ** testing is too expensive and return IN_INDEX_NOOP. In that case, the ** calling routine should implement the IN operator using a sequence ** of Eq or Ne comparison operations. ** ** When the b-tree is being used for membership tests, the calling function ** might need to know whether or not the RHS side of the IN operator ** contains a NULL. If prRhsHasNull is not a NULL pointer and ** if there is any chance that the (...) might contain a NULL value at ** runtime, then a register is allocated and the register number written ** to *prRhsHasNull. If there is no chance that the (...) contains a ** NULL value, then *prRhsHasNull is left unchanged. ** ** If a register is allocated and its location stored in *prRhsHasNull, then ** the value in that register will be NULL if the b-tree contains one or more ** NULL values, and it will be some non-NULL value if the b-tree contains no ** NULL values. ** ** If the aiMap parameter is not NULL, it must point to an array containing ** one element for each column returned by the SELECT statement on the RHS ** of the IN(...) operator. The i'th entry of the array is populated with the ** offset of the index column that matches the i'th column returned by the ** SELECT. For example, if the expression and selected index are: ** ** (?,?,?) IN (SELECT a, b, c FROM t1) ** CREATE INDEX i1 ON t1(b, c, a); ** ** then aiMap[] is populated with {2, 0, 1}. */ #ifndef SQLITE_OMIT_SUBQUERY SQLITE_PRIVATE int sqlite3FindInIndex( Parse *pParse, /* Parsing context */ Expr *pX, /* The IN expression */ u32 inFlags, /* IN_INDEX_LOOP, _MEMBERSHIP, and/or _NOOP_OK */ int *prRhsHasNull, /* Register holding NULL status. See notes */ int *aiMap, /* Mapping from Index fields to RHS fields */ int *piTab /* OUT: index to use */ ){ Select *p; /* SELECT to the right of IN operator */ int eType = 0; /* Type of RHS table. IN_INDEX_* */ int iTab = pParse->nTab++; /* Cursor of the RHS table */ int mustBeUnique; /* True if RHS must be unique */ Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ assert( pX->op==TK_IN ); mustBeUnique = (inFlags & IN_INDEX_LOOP)!=0; /* If the RHS of this IN(...) operator is a SELECT, and if it matters ** whether or not the SELECT result contains NULL values, check whether ** or not NULL is actually possible (it may not be, for example, due ** to NOT NULL constraints in the schema). If no NULL values are possible, ** set prRhsHasNull to 0 before continuing. */ if( prRhsHasNull && ExprUseXSelect(pX) ){ int i; ExprList *pEList = pX->x.pSelect->pEList; for(i=0; inExpr; i++){ if( sqlite3ExprCanBeNull(pEList->a[i].pExpr) ) break; } if( i==pEList->nExpr ){ prRhsHasNull = 0; } } /* Check to see if an existing table or index can be used to ** satisfy the query. This is preferable to generating a new ** ephemeral table. */ if( pParse->nErr==0 && (p = isCandidateForInOpt(pX))!=0 ){ sqlite3 *db = pParse->db; /* Database connection */ Table *pTab; /* Table
    . */ int iDb; /* Database idx for pTab */ ExprList *pEList = p->pEList; int nExpr = pEList->nExpr; assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ pTab = p->pSrc->a[0].pTab; /* Code an OP_Transaction and OP_TableLock for
    . */ iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 && iDbtnum, 0, pTab->zName); assert(v); /* sqlite3GetVdbe() has always been previously called */ if( nExpr==1 && pEList->a[0].pExpr->iColumn<0 ){ /* The "x IN (SELECT rowid FROM table)" case */ int iAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); eType = IN_INDEX_ROWID; ExplainQueryPlan((pParse, 0, "USING ROWID SEARCH ON TABLE %s FOR IN-OPERATOR",pTab->zName)); sqlite3VdbeJumpHere(v, iAddr); }else{ Index *pIdx; /* Iterator variable */ int affinity_ok = 1; int i; /* Check that the affinity that will be used to perform each ** comparison is the same as the affinity of each column in table ** on the RHS of the IN operator. If it not, it is not possible to ** use any index of the RHS table. */ for(i=0; ipLeft, i); int iCol = pEList->a[i].pExpr->iColumn; char idxaff = sqlite3TableColumnAffinity(pTab,iCol); /* RHS table */ char cmpaff = sqlite3CompareAffinity(pLhs, idxaff); testcase( cmpaff==SQLITE_AFF_BLOB ); testcase( cmpaff==SQLITE_AFF_TEXT ); switch( cmpaff ){ case SQLITE_AFF_BLOB: break; case SQLITE_AFF_TEXT: /* sqlite3CompareAffinity() only returns TEXT if one side or the ** other has no affinity and the other side is TEXT. Hence, ** the only way for cmpaff to be TEXT is for idxaff to be TEXT ** and for the term on the LHS of the IN to have no affinity. */ assert( idxaff==SQLITE_AFF_TEXT ); break; default: affinity_ok = sqlite3IsNumericAffinity(idxaff); } } if( affinity_ok ){ /* Search for an existing index that will work for this IN operator */ for(pIdx=pTab->pIndex; pIdx && eType==0; pIdx=pIdx->pNext){ Bitmask colUsed; /* Columns of the index used */ Bitmask mCol; /* Mask for the current column */ if( pIdx->nColumnpPartIdxWhere!=0 ) continue; /* Maximum nColumn is BMS-2, not BMS-1, so that we can compute ** BITMASK(nExpr) without overflowing */ testcase( pIdx->nColumn==BMS-2 ); testcase( pIdx->nColumn==BMS-1 ); if( pIdx->nColumn>=BMS-1 ) continue; if( mustBeUnique ){ if( pIdx->nKeyCol>nExpr ||(pIdx->nColumn>nExpr && !IsUniqueIndex(pIdx)) ){ continue; /* This index is not unique over the IN RHS columns */ } } colUsed = 0; /* Columns of index used so far */ for(i=0; ipLeft, i); Expr *pRhs = pEList->a[i].pExpr; CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pLhs, pRhs); int j; assert( pReq!=0 || pRhs->iColumn==XN_ROWID || pParse->nErr ); for(j=0; jaiColumn[j]!=pRhs->iColumn ) continue; assert( pIdx->azColl[j] ); if( pReq!=0 && sqlite3StrICmp(pReq->zName, pIdx->azColl[j])!=0 ){ continue; } break; } if( j==nExpr ) break; mCol = MASKBIT(j); if( mCol & colUsed ) break; /* Each column used only once */ colUsed |= mCol; if( aiMap ) aiMap[i] = j; } assert( i==nExpr || colUsed!=(MASKBIT(nExpr)-1) ); if( colUsed==(MASKBIT(nExpr)-1) ){ /* If we reach this point, that means the index pIdx is usable */ int iAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); ExplainQueryPlan((pParse, 0, "USING INDEX %s FOR IN-OPERATOR",pIdx->zName)); sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); VdbeComment((v, "%s", pIdx->zName)); assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; if( prRhsHasNull ){ #ifdef SQLITE_ENABLE_COLUMN_USED_MASK i64 mask = (1<nMem; if( nExpr==1 ){ sqlite3SetHasNullFlag(v, iTab, *prRhsHasNull); } } sqlite3VdbeJumpHere(v, iAddr); } } /* End loop over indexes */ } /* End if( affinity_ok ) */ } /* End if not an rowid index */ } /* End attempt to optimize using an index */ /* If no preexisting index is available for the IN clause ** and IN_INDEX_NOOP is an allowed reply ** and the RHS of the IN operator is a list, not a subquery ** and the RHS is not constant or has two or fewer terms, ** then it is not worth creating an ephemeral table to evaluate ** the IN operator so return IN_INDEX_NOOP. */ if( eType==0 && (inFlags & IN_INDEX_NOOP_OK) && ExprUseXList(pX) && (!sqlite3InRhsIsConstant(pX) || pX->x.pList->nExpr<=2) ){ eType = IN_INDEX_NOOP; } if( eType==0 ){ /* Could not find an existing table or index to use as the RHS b-tree. ** We will have to generate an ephemeral table to do the job. */ u32 savedNQueryLoop = pParse->nQueryLoop; int rMayHaveNull = 0; eType = IN_INDEX_EPH; if( inFlags & IN_INDEX_LOOP ){ pParse->nQueryLoop = 0; }else if( prRhsHasNull ){ *prRhsHasNull = rMayHaveNull = ++pParse->nMem; } assert( pX->op==TK_IN ); sqlite3CodeRhsOfIN(pParse, pX, iTab); if( rMayHaveNull ){ sqlite3SetHasNullFlag(v, iTab, rMayHaveNull); } pParse->nQueryLoop = savedNQueryLoop; } if( aiMap && eType!=IN_INDEX_INDEX_ASC && eType!=IN_INDEX_INDEX_DESC ){ int i, n; n = sqlite3ExprVectorSize(pX->pLeft); for(i=0; ipLeft; int nVal = sqlite3ExprVectorSize(pLeft); Select *pSelect = ExprUseXSelect(pExpr) ? pExpr->x.pSelect : 0; char *zRet; assert( pExpr->op==TK_IN ); zRet = sqlite3DbMallocRaw(pParse->db, nVal+1); if( zRet ){ int i; for(i=0; ipEList->a[i].pExpr, a); }else{ zRet[i] = a; } } zRet[nVal] = '\0'; } return zRet; } #endif #ifndef SQLITE_OMIT_SUBQUERY /* ** Load the Parse object passed as the first argument with an error ** message of the form: ** ** "sub-select returns N columns - expected M" */ SQLITE_PRIVATE void sqlite3SubselectError(Parse *pParse, int nActual, int nExpect){ if( pParse->nErr==0 ){ const char *zFmt = "sub-select returns %d columns - expected %d"; sqlite3ErrorMsg(pParse, zFmt, nActual, nExpect); } } #endif /* ** Expression pExpr is a vector that has been used in a context where ** it is not permitted. If pExpr is a sub-select vector, this routine ** loads the Parse object with a message of the form: ** ** "sub-select returns N columns - expected 1" ** ** Or, if it is a regular scalar vector: ** ** "row value misused" */ SQLITE_PRIVATE void sqlite3VectorErrorMsg(Parse *pParse, Expr *pExpr){ #ifndef SQLITE_OMIT_SUBQUERY if( ExprUseXSelect(pExpr) ){ sqlite3SubselectError(pParse, pExpr->x.pSelect->pEList->nExpr, 1); }else #endif { sqlite3ErrorMsg(pParse, "row value misused"); } } #ifndef SQLITE_OMIT_SUBQUERY /* ** Generate code that will construct an ephemeral table containing all terms ** in the RHS of an IN operator. The IN operator can be in either of two ** forms: ** ** x IN (4,5,11) -- IN operator with list on right-hand side ** x IN (SELECT a FROM b) -- IN operator with subquery on the right ** ** The pExpr parameter is the IN operator. The cursor number for the ** constructed ephermeral table is returned. The first time the ephemeral ** table is computed, the cursor number is also stored in pExpr->iTable, ** however the cursor number returned might not be the same, as it might ** have been duplicated using OP_OpenDup. ** ** If the LHS expression ("x" in the examples) is a column value, or ** the SELECT statement returns a column value, then the affinity of that ** column is used to build the index keys. If both 'x' and the ** SELECT... statement are columns, then numeric affinity is used ** if either column has NUMERIC or INTEGER affinity. If neither ** 'x' nor the SELECT... statement are columns, then numeric affinity ** is used. */ SQLITE_PRIVATE void sqlite3CodeRhsOfIN( Parse *pParse, /* Parsing context */ Expr *pExpr, /* The IN operator */ int iTab /* Use this cursor number */ ){ int addrOnce = 0; /* Address of the OP_Once instruction at top */ int addr; /* Address of OP_OpenEphemeral instruction */ Expr *pLeft; /* the LHS of the IN operator */ KeyInfo *pKeyInfo = 0; /* Key information */ int nVal; /* Size of vector pLeft */ Vdbe *v; /* The prepared statement under construction */ v = pParse->pVdbe; assert( v!=0 ); /* The evaluation of the IN must be repeated every time it ** is encountered if any of the following is true: ** ** * The right-hand side is a correlated subquery ** * The right-hand side is an expression list containing variables ** * We are inside a trigger ** ** If all of the above are false, then we can compute the RHS just once ** and reuse it many names. */ if( !ExprHasProperty(pExpr, EP_VarSelect) && pParse->iSelfTab==0 ){ /* Reuse of the RHS is allowed */ /* If this routine has already been coded, but the previous code ** might not have been invoked yet, so invoke it now as a subroutine. */ if( ExprHasProperty(pExpr, EP_Subrtn) ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); if( ExprUseXSelect(pExpr) ){ ExplainQueryPlan((pParse, 0, "REUSE LIST SUBQUERY %d", pExpr->x.pSelect->selId)); } assert( ExprUseYSub(pExpr) ); sqlite3VdbeAddOp2(v, OP_Gosub, pExpr->y.sub.regReturn, pExpr->y.sub.iAddr); sqlite3VdbeAddOp2(v, OP_OpenDup, iTab, pExpr->iTable); sqlite3VdbeJumpHere(v, addrOnce); return; } /* Begin coding the subroutine */ assert( !ExprUseYWin(pExpr) ); ExprSetProperty(pExpr, EP_Subrtn); assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); pExpr->y.sub.regReturn = ++pParse->nMem; pExpr->y.sub.iAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pExpr->y.sub.regReturn) + 1; VdbeComment((v, "return address")); addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } /* Check to see if this is a vector IN operator */ pLeft = pExpr->pLeft; nVal = sqlite3ExprVectorSize(pLeft); /* Construct the ephemeral table that will contain the content of ** RHS of the IN operator. */ pExpr->iTable = iTab; addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, nVal); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS if( ExprUseXSelect(pExpr) ){ VdbeComment((v, "Result of SELECT %u", pExpr->x.pSelect->selId)); }else{ VdbeComment((v, "RHS of IN operator")); } #endif pKeyInfo = sqlite3KeyInfoAlloc(pParse->db, nVal, 1); if( ExprUseXSelect(pExpr) ){ /* Case 1: expr IN (SELECT ...) ** ** Generate code to write the results of the select into the temporary ** table allocated and opened above. */ Select *pSelect = pExpr->x.pSelect; ExprList *pEList = pSelect->pEList; ExplainQueryPlan((pParse, 1, "%sLIST SUBQUERY %d", addrOnce?"":"CORRELATED ", pSelect->selId )); /* If the LHS and RHS of the IN operator do not match, that ** error will have been caught long before we reach this point. */ if( ALWAYS(pEList->nExpr==nVal) ){ Select *pCopy; SelectDest dest; int i; int rc; sqlite3SelectDestInit(&dest, SRT_Set, iTab); dest.zAffSdst = exprINAffinity(pParse, pExpr); pSelect->iLimit = 0; testcase( pSelect->selFlags & SF_Distinct ); testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */ pCopy = sqlite3SelectDup(pParse->db, pSelect, 0); rc = pParse->db->mallocFailed ? 1 :sqlite3Select(pParse, pCopy, &dest); sqlite3SelectDelete(pParse->db, pCopy); sqlite3DbFree(pParse->db, dest.zAffSdst); if( rc ){ sqlite3KeyInfoUnref(pKeyInfo); return; } assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */ assert( pEList!=0 ); assert( pEList->nExpr>0 ); assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); for(i=0; iaColl[i] = sqlite3BinaryCompareCollSeq( pParse, p, pEList->a[i].pExpr ); } } }else if( ALWAYS(pExpr->x.pList!=0) ){ /* Case 2: expr IN (exprlist) ** ** For each expression, build an index key from the evaluation and ** store it in the temporary table. If is a column, then use ** that columns affinity when building index keys. If is not ** a column, use numeric affinity. */ char affinity; /* Affinity of the LHS of the IN */ int i; ExprList *pList = pExpr->x.pList; struct ExprList_item *pItem; int r1, r2; affinity = sqlite3ExprAffinity(pLeft); if( affinity<=SQLITE_AFF_NONE ){ affinity = SQLITE_AFF_BLOB; }else if( affinity==SQLITE_AFF_REAL ){ affinity = SQLITE_AFF_NUMERIC; } if( pKeyInfo ){ assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); } /* Loop through each expression in . */ r1 = sqlite3GetTempReg(pParse); r2 = sqlite3GetTempReg(pParse); for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ Expr *pE2 = pItem->pExpr; /* If the expression is not constant then we will need to ** disable the test that was generated above that makes sure ** this code only executes once. Because for a non-constant ** expression we need to rerun this code each time. */ if( addrOnce && !sqlite3ExprIsConstant(pE2) ){ sqlite3VdbeChangeToNoop(v, addrOnce); ExprClearProperty(pExpr, EP_Subrtn); addrOnce = 0; } /* Evaluate the expression and insert it into the temp table */ sqlite3ExprCode(pParse, pE2, r1); sqlite3VdbeAddOp4(v, OP_MakeRecord, r1, 1, r2, &affinity, 1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iTab, r2, r1, 1); } sqlite3ReleaseTempReg(pParse, r1); sqlite3ReleaseTempReg(pParse, r2); } if( pKeyInfo ){ sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO); } if( addrOnce ){ sqlite3VdbeJumpHere(v, addrOnce); /* Subroutine return */ assert( ExprUseYSub(pExpr) ); sqlite3VdbeAddOp1(v, OP_Return, pExpr->y.sub.regReturn); sqlite3VdbeChangeP1(v, pExpr->y.sub.iAddr-1, sqlite3VdbeCurrentAddr(v)-1); sqlite3ClearTempRegCache(pParse); } } #endif /* SQLITE_OMIT_SUBQUERY */ /* ** Generate code for scalar subqueries used as a subquery expression ** or EXISTS operator: ** ** (SELECT a FROM b) -- subquery ** EXISTS (SELECT a FROM b) -- EXISTS subquery ** ** The pExpr parameter is the SELECT or EXISTS operator to be coded. ** ** Return the register that holds the result. For a multi-column SELECT, ** the result is stored in a contiguous array of registers and the ** return value is the register of the left-most result column. ** Return 0 if an error occurs. */ #ifndef SQLITE_OMIT_SUBQUERY SQLITE_PRIVATE int sqlite3CodeSubselect(Parse *pParse, Expr *pExpr){ int addrOnce = 0; /* Address of OP_Once at top of subroutine */ int rReg = 0; /* Register storing resulting */ Select *pSel; /* SELECT statement to encode */ SelectDest dest; /* How to deal with SELECT result */ int nReg; /* Registers to allocate */ Expr *pLimit; /* New limit expression */ Vdbe *v = pParse->pVdbe; assert( v!=0 ); if( pParse->nErr ) return 0; testcase( pExpr->op==TK_EXISTS ); testcase( pExpr->op==TK_SELECT ); assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); assert( ExprUseXSelect(pExpr) ); pSel = pExpr->x.pSelect; /* If this routine has already been coded, then invoke it as a ** subroutine. */ if( ExprHasProperty(pExpr, EP_Subrtn) ){ ExplainQueryPlan((pParse, 0, "REUSE SUBQUERY %d", pSel->selId)); assert( ExprUseYSub(pExpr) ); sqlite3VdbeAddOp2(v, OP_Gosub, pExpr->y.sub.regReturn, pExpr->y.sub.iAddr); return pExpr->iTable; } /* Begin coding the subroutine */ assert( !ExprUseYWin(pExpr) ); assert( !ExprHasProperty(pExpr, EP_Reduced|EP_TokenOnly) ); ExprSetProperty(pExpr, EP_Subrtn); pExpr->y.sub.regReturn = ++pParse->nMem; pExpr->y.sub.iAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pExpr->y.sub.regReturn) + 1; VdbeComment((v, "return address")); /* The evaluation of the EXISTS/SELECT must be repeated every time it ** is encountered if any of the following is true: ** ** * The right-hand side is a correlated subquery ** * The right-hand side is an expression list containing variables ** * We are inside a trigger ** ** If all of the above are false, then we can run this code just once ** save the results, and reuse the same result on subsequent invocations. */ if( !ExprHasProperty(pExpr, EP_VarSelect) ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } /* For a SELECT, generate code to put the values for all columns of ** the first row into an array of registers and return the index of ** the first register. ** ** If this is an EXISTS, write an integer 0 (not exists) or 1 (exists) ** into a register and return that register number. ** ** In both cases, the query is augmented with "LIMIT 1". Any ** preexisting limit is discarded in place of the new LIMIT 1. */ ExplainQueryPlan((pParse, 1, "%sSCALAR SUBQUERY %d", addrOnce?"":"CORRELATED ", pSel->selId)); nReg = pExpr->op==TK_SELECT ? pSel->pEList->nExpr : 1; sqlite3SelectDestInit(&dest, 0, pParse->nMem+1); pParse->nMem += nReg; if( pExpr->op==TK_SELECT ){ dest.eDest = SRT_Mem; dest.iSdst = dest.iSDParm; dest.nSdst = nReg; sqlite3VdbeAddOp3(v, OP_Null, 0, dest.iSDParm, dest.iSDParm+nReg-1); VdbeComment((v, "Init subquery result")); }else{ dest.eDest = SRT_Exists; sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); VdbeComment((v, "Init EXISTS result")); } if( pSel->pLimit ){ /* The subquery already has a limit. If the pre-existing limit is X ** then make the new limit X<>0 so that the new limit is either 1 or 0 */ sqlite3 *db = pParse->db; pLimit = sqlite3Expr(db, TK_INTEGER, "0"); if( pLimit ){ pLimit->affExpr = SQLITE_AFF_NUMERIC; pLimit = sqlite3PExpr(pParse, TK_NE, sqlite3ExprDup(db, pSel->pLimit->pLeft, 0), pLimit); } sqlite3ExprDelete(db, pSel->pLimit->pLeft); pSel->pLimit->pLeft = pLimit; }else{ /* If there is no pre-existing limit add a limit of 1 */ pLimit = sqlite3Expr(pParse->db, TK_INTEGER, "1"); pSel->pLimit = sqlite3PExpr(pParse, TK_LIMIT, pLimit, 0); } pSel->iLimit = 0; if( sqlite3Select(pParse, pSel, &dest) ){ pExpr->op2 = pExpr->op; pExpr->op = TK_ERROR; return 0; } pExpr->iTable = rReg = dest.iSDParm; ExprSetVVAProperty(pExpr, EP_NoReduce); if( addrOnce ){ sqlite3VdbeJumpHere(v, addrOnce); } /* Subroutine return */ assert( ExprUseYSub(pExpr) ); sqlite3VdbeAddOp1(v, OP_Return, pExpr->y.sub.regReturn); sqlite3VdbeChangeP1(v, pExpr->y.sub.iAddr-1, sqlite3VdbeCurrentAddr(v)-1); sqlite3ClearTempRegCache(pParse); return rReg; } #endif /* SQLITE_OMIT_SUBQUERY */ #ifndef SQLITE_OMIT_SUBQUERY /* ** Expr pIn is an IN(...) expression. This function checks that the ** sub-select on the RHS of the IN() operator has the same number of ** columns as the vector on the LHS. Or, if the RHS of the IN() is not ** a sub-query, that the LHS is a vector of size 1. */ SQLITE_PRIVATE int sqlite3ExprCheckIN(Parse *pParse, Expr *pIn){ int nVector = sqlite3ExprVectorSize(pIn->pLeft); if( ExprUseXSelect(pIn) && !pParse->db->mallocFailed ){ if( nVector!=pIn->x.pSelect->pEList->nExpr ){ sqlite3SubselectError(pParse, pIn->x.pSelect->pEList->nExpr, nVector); return 1; } }else if( nVector!=1 ){ sqlite3VectorErrorMsg(pParse, pIn->pLeft); return 1; } return 0; } #endif #ifndef SQLITE_OMIT_SUBQUERY /* ** Generate code for an IN expression. ** ** x IN (SELECT ...) ** x IN (value, value, ...) ** ** The left-hand side (LHS) is a scalar or vector expression. The ** right-hand side (RHS) is an array of zero or more scalar values, or a ** subquery. If the RHS is a subquery, the number of result columns must ** match the number of columns in the vector on the LHS. If the RHS is ** a list of values, the LHS must be a scalar. ** ** The IN operator is true if the LHS value is contained within the RHS. ** The result is false if the LHS is definitely not in the RHS. The ** result is NULL if the presence of the LHS in the RHS cannot be ** determined due to NULLs. ** ** This routine generates code that jumps to destIfFalse if the LHS is not ** contained within the RHS. If due to NULLs we cannot determine if the LHS ** is contained in the RHS then jump to destIfNull. If the LHS is contained ** within the RHS then fall through. ** ** See the separate in-operator.md documentation file in the canonical ** SQLite source tree for additional information. */ static void sqlite3ExprCodeIN( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* The IN expression */ int destIfFalse, /* Jump here if LHS is not contained in the RHS */ int destIfNull /* Jump here if the results are unknown due to NULLs */ ){ int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ int eType; /* Type of the RHS */ int rLhs; /* Register(s) holding the LHS values */ int rLhsOrig; /* LHS values prior to reordering by aiMap[] */ Vdbe *v; /* Statement under construction */ int *aiMap = 0; /* Map from vector field to index column */ char *zAff = 0; /* Affinity string for comparisons */ int nVector; /* Size of vectors for this IN operator */ int iDummy; /* Dummy parameter to exprCodeVector() */ Expr *pLeft; /* The LHS of the IN operator */ int i; /* loop counter */ int destStep2; /* Where to jump when NULLs seen in step 2 */ int destStep6 = 0; /* Start of code for Step 6 */ int addrTruthOp; /* Address of opcode that determines the IN is true */ int destNotNull; /* Jump here if a comparison is not true in step 6 */ int addrTop; /* Top of the step-6 loop */ int iTab = 0; /* Index to use */ u8 okConstFactor = pParse->okConstFactor; assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); pLeft = pExpr->pLeft; if( sqlite3ExprCheckIN(pParse, pExpr) ) return; zAff = exprINAffinity(pParse, pExpr); nVector = sqlite3ExprVectorSize(pExpr->pLeft); aiMap = (int*)sqlite3DbMallocZero( pParse->db, nVector*(sizeof(int) + sizeof(char)) + 1 ); if( pParse->db->mallocFailed ) goto sqlite3ExprCodeIN_oom_error; /* Attempt to compute the RHS. After this step, if anything other than ** IN_INDEX_NOOP is returned, the table opened with cursor iTab ** contains the values that make up the RHS. If IN_INDEX_NOOP is returned, ** the RHS has not yet been coded. */ v = pParse->pVdbe; assert( v!=0 ); /* OOM detected prior to this routine */ VdbeNoopComment((v, "begin IN expr")); eType = sqlite3FindInIndex(pParse, pExpr, IN_INDEX_MEMBERSHIP | IN_INDEX_NOOP_OK, destIfFalse==destIfNull ? 0 : &rRhsHasNull, aiMap, &iTab); assert( pParse->nErr || nVector==1 || eType==IN_INDEX_EPH || eType==IN_INDEX_INDEX_ASC || eType==IN_INDEX_INDEX_DESC ); #ifdef SQLITE_DEBUG /* Confirm that aiMap[] contains nVector integer values between 0 and ** nVector-1. */ for(i=0; i from " IN (...)". If the LHS is a ** vector, then it is stored in an array of nVector registers starting ** at r1. ** ** sqlite3FindInIndex() might have reordered the fields of the LHS vector ** so that the fields are in the same order as an existing index. The ** aiMap[] array contains a mapping from the original LHS field order to ** the field order that matches the RHS index. ** ** Avoid factoring the LHS of the IN(...) expression out of the loop, ** even if it is constant, as OP_Affinity may be used on the register ** by code generated below. */ assert( pParse->okConstFactor==okConstFactor ); pParse->okConstFactor = 0; rLhsOrig = exprCodeVector(pParse, pLeft, &iDummy); pParse->okConstFactor = okConstFactor; for(i=0; ix.pList; pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft); if( destIfNull!=destIfFalse ){ regCkNull = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_BitAnd, rLhs, rLhs, regCkNull); } for(ii=0; iinExpr; ii++){ r2 = sqlite3ExprCodeTemp(pParse, pList->a[ii].pExpr, ®ToFree); if( regCkNull && sqlite3ExprCanBeNull(pList->a[ii].pExpr) ){ sqlite3VdbeAddOp3(v, OP_BitAnd, regCkNull, r2, regCkNull); } sqlite3ReleaseTempReg(pParse, regToFree); if( iinExpr-1 || destIfNull!=destIfFalse ){ int op = rLhs!=r2 ? OP_Eq : OP_NotNull; sqlite3VdbeAddOp4(v, op, rLhs, labelOk, r2, (void*)pColl, P4_COLLSEQ); VdbeCoverageIf(v, iinExpr-1 && op==OP_Eq); VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq); VdbeCoverageIf(v, iinExpr-1 && op==OP_NotNull); VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_NotNull); sqlite3VdbeChangeP5(v, zAff[0]); }else{ int op = rLhs!=r2 ? OP_Ne : OP_IsNull; assert( destIfNull==destIfFalse ); sqlite3VdbeAddOp4(v, op, rLhs, destIfFalse, r2, (void*)pColl, P4_COLLSEQ); VdbeCoverageIf(v, op==OP_Ne); VdbeCoverageIf(v, op==OP_IsNull); sqlite3VdbeChangeP5(v, zAff[0] | SQLITE_JUMPIFNULL); } } if( regCkNull ){ sqlite3VdbeAddOp2(v, OP_IsNull, regCkNull, destIfNull); VdbeCoverage(v); sqlite3VdbeGoto(v, destIfFalse); } sqlite3VdbeResolveLabel(v, labelOk); sqlite3ReleaseTempReg(pParse, regCkNull); goto sqlite3ExprCodeIN_finished; } /* Step 2: Check to see if the LHS contains any NULL columns. If the ** LHS does contain NULLs then the result must be either FALSE or NULL. ** We will then skip the binary search of the RHS. */ if( destIfNull==destIfFalse ){ destStep2 = destIfFalse; }else{ destStep2 = destStep6 = sqlite3VdbeMakeLabel(pParse); } for(i=0; ipLeft, i); if( pParse->nErr ) goto sqlite3ExprCodeIN_oom_error; if( sqlite3ExprCanBeNull(p) ){ sqlite3VdbeAddOp2(v, OP_IsNull, rLhs+i, destStep2); VdbeCoverage(v); } } /* Step 3. The LHS is now known to be non-NULL. Do the binary search ** of the RHS using the LHS as a probe. If found, the result is ** true. */ if( eType==IN_INDEX_ROWID ){ /* In this case, the RHS is the ROWID of table b-tree and so we also ** know that the RHS is non-NULL. Hence, we combine steps 3 and 4 ** into a single opcode. */ sqlite3VdbeAddOp3(v, OP_SeekRowid, iTab, destIfFalse, rLhs); VdbeCoverage(v); addrTruthOp = sqlite3VdbeAddOp0(v, OP_Goto); /* Return True */ }else{ sqlite3VdbeAddOp4(v, OP_Affinity, rLhs, nVector, 0, zAff, nVector); if( destIfFalse==destIfNull ){ /* Combine Step 3 and Step 5 into a single opcode */ sqlite3VdbeAddOp4Int(v, OP_NotFound, iTab, destIfFalse, rLhs, nVector); VdbeCoverage(v); goto sqlite3ExprCodeIN_finished; } /* Ordinary Step 3, for the case where FALSE and NULL are distinct */ addrTruthOp = sqlite3VdbeAddOp4Int(v, OP_Found, iTab, 0, rLhs, nVector); VdbeCoverage(v); } /* Step 4. If the RHS is known to be non-NULL and we did not find ** an match on the search above, then the result must be FALSE. */ if( rRhsHasNull && nVector==1 ){ sqlite3VdbeAddOp2(v, OP_NotNull, rRhsHasNull, destIfFalse); VdbeCoverage(v); } /* Step 5. If we do not care about the difference between NULL and ** FALSE, then just return false. */ if( destIfFalse==destIfNull ) sqlite3VdbeGoto(v, destIfFalse); /* Step 6: Loop through rows of the RHS. Compare each row to the LHS. ** If any comparison is NULL, then the result is NULL. If all ** comparisons are FALSE then the final result is FALSE. ** ** For a scalar LHS, it is sufficient to check just the first row ** of the RHS. */ if( destStep6 ) sqlite3VdbeResolveLabel(v, destStep6); addrTop = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, destIfFalse); VdbeCoverage(v); if( nVector>1 ){ destNotNull = sqlite3VdbeMakeLabel(pParse); }else{ /* For nVector==1, combine steps 6 and 7 by immediately returning ** FALSE if the first comparison is not NULL */ destNotNull = destIfFalse; } for(i=0; i1 ){ sqlite3VdbeResolveLabel(v, destNotNull); sqlite3VdbeAddOp2(v, OP_Next, iTab, addrTop+1); VdbeCoverage(v); /* Step 7: If we reach this point, we know that the result must ** be false. */ sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); } /* Jumps here in order to return true. */ sqlite3VdbeJumpHere(v, addrTruthOp); sqlite3ExprCodeIN_finished: if( rLhs!=rLhsOrig ) sqlite3ReleaseTempReg(pParse, rLhs); VdbeComment((v, "end IN expr")); sqlite3ExprCodeIN_oom_error: sqlite3DbFree(pParse->db, aiMap); sqlite3DbFree(pParse->db, zAff); } #endif /* SQLITE_OMIT_SUBQUERY */ #ifndef SQLITE_OMIT_FLOATING_POINT /* ** Generate an instruction that will put the floating point ** value described by z[0..n-1] into register iMem. ** ** The z[] string will probably not be zero-terminated. But the ** z[n] character is guaranteed to be something that does not look ** like the continuation of the number. */ static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ if( ALWAYS(z!=0) ){ double value; sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ if( negateFlag ) value = -value; sqlite3VdbeAddOp4Dup8(v, OP_Real, 0, iMem, 0, (u8*)&value, P4_REAL); } } #endif /* ** Generate an instruction that will put the integer describe by ** text z[0..n-1] into register iMem. ** ** Expr.u.zToken is always UTF8 and zero-terminated. */ static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ Vdbe *v = pParse->pVdbe; if( pExpr->flags & EP_IntValue ){ int i = pExpr->u.iValue; assert( i>=0 ); if( negFlag ) i = -i; sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); }else{ int c; i64 value; const char *z = pExpr->u.zToken; assert( z!=0 ); c = sqlite3DecOrHexToI64(z, &value); if( (c==3 && !negFlag) || (c==2) || (negFlag && value==SMALLEST_INT64)){ #ifdef SQLITE_OMIT_FLOATING_POINT sqlite3ErrorMsg(pParse, "oversized integer: %s%#T", negFlag?"-":"",pExpr); #else #ifndef SQLITE_OMIT_HEX_INTEGER if( sqlite3_strnicmp(z,"0x",2)==0 ){ sqlite3ErrorMsg(pParse, "hex literal too big: %s%#T", negFlag?"-":"",pExpr); }else #endif { codeReal(v, z, negFlag, iMem); } #endif }else{ if( negFlag ){ value = c==3 ? SMALLEST_INT64 : -value; } sqlite3VdbeAddOp4Dup8(v, OP_Int64, 0, iMem, 0, (u8*)&value, P4_INT64); } } } /* Generate code that will load into register regOut a value that is ** appropriate for the iIdxCol-th column of index pIdx. */ SQLITE_PRIVATE void sqlite3ExprCodeLoadIndexColumn( Parse *pParse, /* The parsing context */ Index *pIdx, /* The index whose column is to be loaded */ int iTabCur, /* Cursor pointing to a table row */ int iIdxCol, /* The column of the index to be loaded */ int regOut /* Store the index column value in this register */ ){ i16 iTabCol = pIdx->aiColumn[iIdxCol]; if( iTabCol==XN_EXPR ){ assert( pIdx->aColExpr ); assert( pIdx->aColExpr->nExpr>iIdxCol ); pParse->iSelfTab = iTabCur + 1; sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[iIdxCol].pExpr, regOut); pParse->iSelfTab = 0; }else{ sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pIdx->pTable, iTabCur, iTabCol, regOut); } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* ** Generate code that will compute the value of generated column pCol ** and store the result in register regOut */ SQLITE_PRIVATE void sqlite3ExprCodeGeneratedColumn( Parse *pParse, /* Parsing context */ Table *pTab, /* Table containing the generated column */ Column *pCol, /* The generated column */ int regOut /* Put the result in this register */ ){ int iAddr; Vdbe *v = pParse->pVdbe; assert( v!=0 ); assert( pParse->iSelfTab!=0 ); if( pParse->iSelfTab>0 ){ iAddr = sqlite3VdbeAddOp3(v, OP_IfNullRow, pParse->iSelfTab-1, 0, regOut); }else{ iAddr = 0; } sqlite3ExprCodeCopy(pParse, sqlite3ColumnExpr(pTab,pCol), regOut); if( pCol->affinity>=SQLITE_AFF_TEXT ){ sqlite3VdbeAddOp4(v, OP_Affinity, regOut, 1, 0, &pCol->affinity, 1); } if( iAddr ) sqlite3VdbeJumpHere(v, iAddr); } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ /* ** Generate code to extract the value of the iCol-th column of a table. */ SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable( Vdbe *v, /* Parsing context */ Table *pTab, /* The table containing the value */ int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */ int iCol, /* Index of the column to extract */ int regOut /* Extract the value into this register */ ){ Column *pCol; assert( v!=0 ); if( pTab==0 ){ sqlite3VdbeAddOp3(v, OP_Column, iTabCur, iCol, regOut); return; } if( iCol<0 || iCol==pTab->iPKey ){ sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); }else{ int op; int x; if( IsVirtual(pTab) ){ op = OP_VColumn; x = iCol; #ifndef SQLITE_OMIT_GENERATED_COLUMNS }else if( (pCol = &pTab->aCol[iCol])->colFlags & COLFLAG_VIRTUAL ){ Parse *pParse = sqlite3VdbeParser(v); if( pCol->colFlags & COLFLAG_BUSY ){ sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pCol->zCnName); }else{ int savedSelfTab = pParse->iSelfTab; pCol->colFlags |= COLFLAG_BUSY; pParse->iSelfTab = iTabCur+1; sqlite3ExprCodeGeneratedColumn(pParse, pTab, pCol, regOut); pParse->iSelfTab = savedSelfTab; pCol->colFlags &= ~COLFLAG_BUSY; } return; #endif }else if( !HasRowid(pTab) ){ testcase( iCol!=sqlite3TableColumnToStorage(pTab, iCol) ); x = sqlite3TableColumnToIndex(sqlite3PrimaryKeyIndex(pTab), iCol); op = OP_Column; }else{ x = sqlite3TableColumnToStorage(pTab,iCol); testcase( x!=iCol ); op = OP_Column; } sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); sqlite3ColumnDefault(v, pTab, iCol, regOut); } } /* ** Generate code that will extract the iColumn-th column from ** table pTab and store the column value in register iReg. ** ** There must be an open cursor to pTab in iTable when this routine ** is called. If iColumn<0 then code is generated that extracts the rowid. */ SQLITE_PRIVATE int sqlite3ExprCodeGetColumn( Parse *pParse, /* Parsing and code generating context */ Table *pTab, /* Description of the table we are reading from */ int iColumn, /* Index of the table column */ int iTable, /* The cursor pointing to the table */ int iReg, /* Store results here */ u8 p5 /* P5 value for OP_Column + FLAGS */ ){ assert( pParse->pVdbe!=0 ); sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pTab, iTable, iColumn, iReg); if( p5 ){ VdbeOp *pOp = sqlite3VdbeGetOp(pParse->pVdbe,-1); if( pOp->opcode==OP_Column ) pOp->p5 = p5; } return iReg; } /* ** Generate code to move content from registers iFrom...iFrom+nReg-1 ** over to iTo..iTo+nReg-1. */ SQLITE_PRIVATE void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); } /* ** Convert a scalar expression node to a TK_REGISTER referencing ** register iReg. The caller must ensure that iReg already contains ** the correct value for the expression. */ static void exprToRegister(Expr *pExpr, int iReg){ Expr *p = sqlite3ExprSkipCollateAndLikely(pExpr); if( NEVER(p==0) ) return; p->op2 = p->op; p->op = TK_REGISTER; p->iTable = iReg; ExprClearProperty(p, EP_Skip); } /* ** Evaluate an expression (either a vector or a scalar expression) and store ** the result in continguous temporary registers. Return the index of ** the first register used to store the result. ** ** If the returned result register is a temporary scalar, then also write ** that register number into *piFreeable. If the returned result register ** is not a temporary or if the expression is a vector set *piFreeable ** to 0. */ static int exprCodeVector(Parse *pParse, Expr *p, int *piFreeable){ int iResult; int nResult = sqlite3ExprVectorSize(p); if( nResult==1 ){ iResult = sqlite3ExprCodeTemp(pParse, p, piFreeable); }else{ *piFreeable = 0; if( p->op==TK_SELECT ){ #if SQLITE_OMIT_SUBQUERY iResult = 0; #else iResult = sqlite3CodeSubselect(pParse, p); #endif }else{ int i; iResult = pParse->nMem+1; pParse->nMem += nResult; assert( ExprUseXList(p) ); for(i=0; ix.pList->a[i].pExpr, i+iResult); } } } return iResult; } /* ** If the last opcode is a OP_Copy, then set the do-not-merge flag (p5) ** so that a subsequent copy will not be merged into this one. */ static void setDoNotMergeFlagOnCopy(Vdbe *v){ if( sqlite3VdbeGetOp(v, -1)->opcode==OP_Copy ){ sqlite3VdbeChangeP5(v, 1); /* Tag trailing OP_Copy as not mergable */ } } /* ** Generate code to implement special SQL functions that are implemented ** in-line rather than by using the usual callbacks. */ static int exprCodeInlineFunction( Parse *pParse, /* Parsing context */ ExprList *pFarg, /* List of function arguments */ int iFuncId, /* Function ID. One of the INTFUNC_... values */ int target /* Store function result in this register */ ){ int nFarg; Vdbe *v = pParse->pVdbe; assert( v!=0 ); assert( pFarg!=0 ); nFarg = pFarg->nExpr; assert( nFarg>0 ); /* All in-line functions have at least one argument */ switch( iFuncId ){ case INLINEFUNC_coalesce: { /* Attempt a direct implementation of the built-in COALESCE() and ** IFNULL() functions. This avoids unnecessary evaluation of ** arguments past the first non-NULL argument. */ int endCoalesce = sqlite3VdbeMakeLabel(pParse); int i; assert( nFarg>=2 ); sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); for(i=1; ia[i].pExpr, target); } setDoNotMergeFlagOnCopy(v); sqlite3VdbeResolveLabel(v, endCoalesce); break; } case INLINEFUNC_iif: { Expr caseExpr; memset(&caseExpr, 0, sizeof(caseExpr)); caseExpr.op = TK_CASE; caseExpr.x.pList = pFarg; return sqlite3ExprCodeTarget(pParse, &caseExpr, target); } default: { /* The UNLIKELY() function is a no-op. The result is the value ** of the first argument. */ assert( nFarg==1 || nFarg==2 ); target = sqlite3ExprCodeTarget(pParse, pFarg->a[0].pExpr, target); break; } /*********************************************************************** ** Test-only SQL functions that are only usable if enabled ** via SQLITE_TESTCTRL_INTERNAL_FUNCTIONS */ #if !defined(SQLITE_UNTESTABLE) case INLINEFUNC_expr_compare: { /* Compare two expressions using sqlite3ExprCompare() */ assert( nFarg==2 ); sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprCompare(0,pFarg->a[0].pExpr, pFarg->a[1].pExpr,-1), target); break; } case INLINEFUNC_expr_implies_expr: { /* Compare two expressions using sqlite3ExprImpliesExpr() */ assert( nFarg==2 ); sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprImpliesExpr(pParse,pFarg->a[0].pExpr, pFarg->a[1].pExpr,-1), target); break; } case INLINEFUNC_implies_nonnull_row: { /* REsult of sqlite3ExprImpliesNonNullRow() */ Expr *pA1; assert( nFarg==2 ); pA1 = pFarg->a[1].pExpr; if( pA1->op==TK_COLUMN ){ sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprImpliesNonNullRow(pFarg->a[0].pExpr,pA1->iTable), target); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, target); } break; } case INLINEFUNC_affinity: { /* The AFFINITY() function evaluates to a string that describes ** the type affinity of the argument. This is used for testing of ** the SQLite type logic. */ const char *azAff[] = { "blob", "text", "numeric", "integer", "real" }; char aff; assert( nFarg==1 ); aff = sqlite3ExprAffinity(pFarg->a[0].pExpr); sqlite3VdbeLoadString(v, target, (aff<=SQLITE_AFF_NONE) ? "none" : azAff[aff-SQLITE_AFF_BLOB]); break; } #endif /* !defined(SQLITE_UNTESTABLE) */ } return target; } /* ** Generate code into the current Vdbe to evaluate the given ** expression. Attempt to store the results in register "target". ** Return the register where results are stored. ** ** With this routine, there is no guarantee that results will ** be stored in target. The result might be stored in some other ** register if it is convenient to do so. The calling function ** must check the return code and move the results to the desired ** register. */ SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ Vdbe *v = pParse->pVdbe; /* The VM under construction */ int op; /* The opcode being coded */ int inReg = target; /* Results stored in register inReg */ int regFree1 = 0; /* If non-zero free this temporary register */ int regFree2 = 0; /* If non-zero free this temporary register */ int r1, r2; /* Various register numbers */ Expr tempX; /* Temporary expression node */ int p5 = 0; assert( target>0 && target<=pParse->nMem ); assert( v!=0 ); expr_code_doover: if( pExpr==0 ){ op = TK_NULL; }else{ assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); op = pExpr->op; } switch( op ){ case TK_AGG_COLUMN: { AggInfo *pAggInfo = pExpr->pAggInfo; struct AggInfo_col *pCol; assert( pAggInfo!=0 ); assert( pExpr->iAgg>=0 && pExpr->iAggnColumn ); pCol = &pAggInfo->aCol[pExpr->iAgg]; if( !pAggInfo->directMode ){ assert( pCol->iMem>0 ); return pCol->iMem; }else if( pAggInfo->useSortingIdx ){ Table *pTab = pCol->pTab; sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, pCol->iSorterColumn, target); if( pCol->iColumn<0 ){ VdbeComment((v,"%s.rowid",pTab->zName)); }else{ VdbeComment((v,"%s.%s", pTab->zName, pTab->aCol[pCol->iColumn].zCnName)); if( pTab->aCol[pCol->iColumn].affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, target); } } return target; } /* Otherwise, fall thru into the TK_COLUMN case */ /* no break */ deliberate_fall_through } case TK_COLUMN: { int iTab = pExpr->iTable; int iReg; if( ExprHasProperty(pExpr, EP_FixedCol) ){ /* This COLUMN expression is really a constant due to WHERE clause ** constraints, and that constant is coded by the pExpr->pLeft ** expresssion. However, make sure the constant has the correct ** datatype by applying the Affinity of the table column to the ** constant. */ int aff; iReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft,target); assert( ExprUseYTab(pExpr) ); if( pExpr->y.pTab ){ aff = sqlite3TableColumnAffinity(pExpr->y.pTab, pExpr->iColumn); }else{ aff = pExpr->affExpr; } if( aff>SQLITE_AFF_BLOB ){ static const char zAff[] = "B\000C\000D\000E"; assert( SQLITE_AFF_BLOB=='A' ); assert( SQLITE_AFF_TEXT=='B' ); sqlite3VdbeAddOp4(v, OP_Affinity, iReg, 1, 0, &zAff[(aff-'B')*2], P4_STATIC); } return iReg; } if( iTab<0 ){ if( pParse->iSelfTab<0 ){ /* Other columns in the same row for CHECK constraints or ** generated columns or for inserting into partial index. ** The row is unpacked into registers beginning at ** 0-(pParse->iSelfTab). The rowid (if any) is in a register ** immediately prior to the first column. */ Column *pCol; Table *pTab; int iSrc; int iCol = pExpr->iColumn; assert( ExprUseYTab(pExpr) ); pTab = pExpr->y.pTab; assert( pTab!=0 ); assert( iCol>=XN_ROWID ); assert( iColnCol ); if( iCol<0 ){ return -1-pParse->iSelfTab; } pCol = pTab->aCol + iCol; testcase( iCol!=sqlite3TableColumnToStorage(pTab,iCol) ); iSrc = sqlite3TableColumnToStorage(pTab, iCol) - pParse->iSelfTab; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pCol->colFlags & COLFLAG_GENERATED ){ if( pCol->colFlags & COLFLAG_BUSY ){ sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pCol->zCnName); return 0; } pCol->colFlags |= COLFLAG_BUSY; if( pCol->colFlags & COLFLAG_NOTAVAIL ){ sqlite3ExprCodeGeneratedColumn(pParse, pTab, pCol, iSrc); } pCol->colFlags &= ~(COLFLAG_BUSY|COLFLAG_NOTAVAIL); return iSrc; }else #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ if( pCol->affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp2(v, OP_SCopy, iSrc, target); sqlite3VdbeAddOp1(v, OP_RealAffinity, target); return target; }else{ return iSrc; } }else{ /* Coding an expression that is part of an index where column names ** in the index refer to the table to which the index belongs */ iTab = pParse->iSelfTab - 1; } } assert( ExprUseYTab(pExpr) ); iReg = sqlite3ExprCodeGetColumn(pParse, pExpr->y.pTab, pExpr->iColumn, iTab, target, pExpr->op2); if( pExpr->y.pTab==0 && pExpr->affExpr==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg); } return iReg; } case TK_INTEGER: { codeInteger(pParse, pExpr, 0, target); return target; } case TK_TRUEFALSE: { sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprTruthValue(pExpr), target); return target; } #ifndef SQLITE_OMIT_FLOATING_POINT case TK_FLOAT: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); codeReal(v, pExpr->u.zToken, 0, target); return target; } #endif case TK_STRING: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3VdbeLoadString(v, target, pExpr->u.zToken); return target; } default: { /* Make NULL the default case so that if a bug causes an illegal ** Expr node to be passed into this function, it will be handled ** sanely and not crash. But keep the assert() to bring the problem ** to the attention of the developers. */ assert( op==TK_NULL || op==TK_ERROR || pParse->db->mallocFailed ); sqlite3VdbeAddOp2(v, OP_Null, 0, target); return target; } #ifndef SQLITE_OMIT_BLOB_LITERAL case TK_BLOB: { int n; const char *z; char *zBlob; assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); assert( pExpr->u.zToken[1]=='\'' ); z = &pExpr->u.zToken[2]; n = sqlite3Strlen30(z) - 1; assert( z[n]=='\'' ); zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); return target; } #endif case TK_VARIABLE: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( pExpr->u.zToken!=0 ); assert( pExpr->u.zToken[0]!=0 ); sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); if( pExpr->u.zToken[1]!=0 ){ const char *z = sqlite3VListNumToName(pParse->pVList, pExpr->iColumn); assert( pExpr->u.zToken[0]=='?' || (z && !strcmp(pExpr->u.zToken, z)) ); pParse->pVList[0] = 0; /* Indicate VList may no longer be enlarged */ sqlite3VdbeAppendP4(v, (char*)z, P4_STATIC); } return target; } case TK_REGISTER: { return pExpr->iTable; } #ifndef SQLITE_OMIT_CAST case TK_CAST: { /* Expressions of the form: CAST(pLeft AS token) */ inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); if( inReg!=target ){ sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); inReg = target; } assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3VdbeAddOp2(v, OP_Cast, target, sqlite3AffinityType(pExpr->u.zToken, 0)); return inReg; } #endif /* SQLITE_OMIT_CAST */ case TK_IS: case TK_ISNOT: op = (op==TK_IS) ? TK_EQ : TK_NE; p5 = SQLITE_NULLEQ; /* fall-through */ case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_NE: case TK_EQ: { Expr *pLeft = pExpr->pLeft; if( sqlite3ExprIsVector(pLeft) ){ codeVectorCompare(pParse, pExpr, target, op, p5); }else{ r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); sqlite3VdbeAddOp2(v, OP_Integer, 1, inReg); codeCompare(pParse, pLeft, pExpr->pRight, op, r1, r2, sqlite3VdbeCurrentAddr(v)+2, p5, ExprHasProperty(pExpr,EP_Commuted)); assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); if( p5==SQLITE_NULLEQ ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, inReg); }else{ sqlite3VdbeAddOp3(v, OP_ZeroOrNull, r1, inReg, r2); } testcase( regFree1==0 ); testcase( regFree2==0 ); } break; } case TK_AND: case TK_OR: case TK_PLUS: case TK_STAR: case TK_MINUS: case TK_REM: case TK_BITAND: case TK_BITOR: case TK_SLASH: case TK_LSHIFT: case TK_RSHIFT: case TK_CONCAT: { assert( TK_AND==OP_And ); testcase( op==TK_AND ); assert( TK_OR==OP_Or ); testcase( op==TK_OR ); assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS ); assert( TK_MINUS==OP_Subtract ); testcase( op==TK_MINUS ); assert( TK_REM==OP_Remainder ); testcase( op==TK_REM ); assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND ); assert( TK_BITOR==OP_BitOr ); testcase( op==TK_BITOR ); assert( TK_SLASH==OP_Divide ); testcase( op==TK_SLASH ); assert( TK_LSHIFT==OP_ShiftLeft ); testcase( op==TK_LSHIFT ); assert( TK_RSHIFT==OP_ShiftRight ); testcase( op==TK_RSHIFT ); assert( TK_CONCAT==OP_Concat ); testcase( op==TK_CONCAT ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); sqlite3VdbeAddOp3(v, op, r2, r1, target); testcase( regFree1==0 ); testcase( regFree2==0 ); break; } case TK_UMINUS: { Expr *pLeft = pExpr->pLeft; assert( pLeft ); if( pLeft->op==TK_INTEGER ){ codeInteger(pParse, pLeft, 1, target); return target; #ifndef SQLITE_OMIT_FLOATING_POINT }else if( pLeft->op==TK_FLOAT ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); codeReal(v, pLeft->u.zToken, 1, target); return target; #endif }else{ tempX.op = TK_INTEGER; tempX.flags = EP_IntValue|EP_TokenOnly; tempX.u.iValue = 0; ExprClearVVAProperties(&tempX); r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); testcase( regFree2==0 ); } break; } case TK_BITNOT: case TK_NOT: { assert( TK_BITNOT==OP_BitNot ); testcase( op==TK_BITNOT ); assert( TK_NOT==OP_Not ); testcase( op==TK_NOT ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); testcase( regFree1==0 ); sqlite3VdbeAddOp2(v, op, r1, inReg); break; } case TK_TRUTH: { int isTrue; /* IS TRUE or IS NOT TRUE */ int bNormal; /* IS TRUE or IS FALSE */ r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); testcase( regFree1==0 ); isTrue = sqlite3ExprTruthValue(pExpr->pRight); bNormal = pExpr->op2==TK_IS; testcase( isTrue && bNormal); testcase( !isTrue && bNormal); sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal); break; } case TK_ISNULL: case TK_NOTNULL: { int addr; assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); sqlite3VdbeAddOp2(v, OP_Integer, 1, target); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); testcase( regFree1==0 ); addr = sqlite3VdbeAddOp1(v, op, r1); VdbeCoverageIf(v, op==TK_ISNULL); VdbeCoverageIf(v, op==TK_NOTNULL); sqlite3VdbeAddOp2(v, OP_Integer, 0, target); sqlite3VdbeJumpHere(v, addr); break; } case TK_AGG_FUNCTION: { AggInfo *pInfo = pExpr->pAggInfo; if( pInfo==0 || NEVER(pExpr->iAgg<0) || NEVER(pExpr->iAgg>=pInfo->nFunc) ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3ErrorMsg(pParse, "misuse of aggregate: %#T()", pExpr); }else{ return pInfo->aFunc[pExpr->iAgg].iMem; } break; } case TK_FUNCTION: { ExprList *pFarg; /* List of function arguments */ int nFarg; /* Number of function arguments */ FuncDef *pDef; /* The function definition object */ const char *zId; /* The function name */ u32 constMask = 0; /* Mask of function arguments that are constant */ int i; /* Loop counter */ sqlite3 *db = pParse->db; /* The database connection */ u8 enc = ENC(db); /* The text encoding used by this database */ CollSeq *pColl = 0; /* A collating sequence */ #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ return pExpr->y.pWin->regResult; } #endif if( ConstFactorOk(pParse) && sqlite3ExprIsConstantNotJoin(pExpr) ){ /* SQL functions can be expensive. So try to avoid running them ** multiple times if we know they always give the same result */ return sqlite3ExprCodeRunJustOnce(pParse, pExpr, -1); } assert( !ExprHasProperty(pExpr, EP_TokenOnly) ); assert( ExprUseXList(pExpr) ); pFarg = pExpr->x.pList; nFarg = pFarg ? pFarg->nExpr : 0; assert( !ExprHasProperty(pExpr, EP_IntValue) ); zId = pExpr->u.zToken; pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0); #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION if( pDef==0 && pParse->explain ){ pDef = sqlite3FindFunction(db, "unknown", nFarg, enc, 0); } #endif if( pDef==0 || pDef->xFinalize!=0 ){ sqlite3ErrorMsg(pParse, "unknown function: %#T()", pExpr); break; } if( pDef->funcFlags & SQLITE_FUNC_INLINE ){ assert( (pDef->funcFlags & SQLITE_FUNC_UNSAFE)==0 ); assert( (pDef->funcFlags & SQLITE_FUNC_DIRECT)==0 ); return exprCodeInlineFunction(pParse, pFarg, SQLITE_PTR_TO_INT(pDef->pUserData), target); }else if( pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE) ){ sqlite3ExprFunctionUsable(pParse, pExpr, pDef); } for(i=0; ia[i].pExpr) ){ testcase( i==31 ); constMask |= MASKBIT32(i); } if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); } } if( pFarg ){ if( constMask ){ r1 = pParse->nMem+1; pParse->nMem += nFarg; }else{ r1 = sqlite3GetTempRange(pParse, nFarg); } /* For length() and typeof() functions with a column argument, ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data ** loading. */ if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ u8 exprOp; assert( nFarg==1 ); assert( pFarg->a[0].pExpr!=0 ); exprOp = pFarg->a[0].pExpr->op; if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); testcase( pDef->funcFlags & OPFLAG_LENGTHARG ); pFarg->a[0].pExpr->op2 = pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG); } } sqlite3ExprCodeExprList(pParse, pFarg, r1, 0, SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR); }else{ r1 = 0; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* Possibly overload the function if the first argument is ** a virtual table column. ** ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the ** second argument, not the first, as the argument to test to ** see if it is a column in a virtual table. This is done because ** the left operand of infix functions (the operand we want to ** control overloading) ends up as the second argument to the ** function. The expression "A glob B" is equivalent to ** "glob(B,A). We want to use the A in "A glob B" to test ** for function overloading. But we use the B term in "glob(B,A)". */ if( nFarg>=2 && ExprHasProperty(pExpr, EP_InfixFunc) ){ pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); }else if( nFarg>0 ){ pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); } #endif if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){ if( !pColl ) pColl = db->pDfltColl; sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); } #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC if( (pDef->funcFlags & SQLITE_FUNC_OFFSET)!=0 && ALWAYS(pFarg!=0) ){ Expr *pArg = pFarg->a[0].pExpr; if( pArg->op==TK_COLUMN ){ sqlite3VdbeAddOp3(v, OP_Offset, pArg->iTable, pArg->iColumn, target); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, target); } }else #endif { sqlite3VdbeAddFunctionCall(pParse, constMask, r1, target, nFarg, pDef, pExpr->op2); } if( nFarg ){ if( constMask==0 ){ sqlite3ReleaseTempRange(pParse, r1, nFarg); }else{ sqlite3VdbeReleaseRegisters(pParse, r1, nFarg, constMask, 1); } } return target; } #ifndef SQLITE_OMIT_SUBQUERY case TK_EXISTS: case TK_SELECT: { int nCol; testcase( op==TK_EXISTS ); testcase( op==TK_SELECT ); if( pParse->db->mallocFailed ){ return 0; }else if( op==TK_SELECT && ALWAYS( ExprUseXSelect(pExpr) ) && (nCol = pExpr->x.pSelect->pEList->nExpr)!=1 ){ sqlite3SubselectError(pParse, nCol, 1); }else{ return sqlite3CodeSubselect(pParse, pExpr); } break; } case TK_SELECT_COLUMN: { int n; if( pExpr->pLeft->iTable==0 ){ pExpr->pLeft->iTable = sqlite3CodeSubselect(pParse, pExpr->pLeft); } assert( pExpr->pLeft->op==TK_SELECT || pExpr->pLeft->op==TK_ERROR ); n = sqlite3ExprVectorSize(pExpr->pLeft); if( pExpr->iTable!=n ){ sqlite3ErrorMsg(pParse, "%d columns assigned %d values", pExpr->iTable, n); } return pExpr->pLeft->iTable + pExpr->iColumn; } case TK_IN: { int destIfFalse = sqlite3VdbeMakeLabel(pParse); int destIfNull = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeAddOp2(v, OP_Null, 0, target); sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); sqlite3VdbeAddOp2(v, OP_Integer, 1, target); sqlite3VdbeResolveLabel(v, destIfFalse); sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); sqlite3VdbeResolveLabel(v, destIfNull); return target; } #endif /* SQLITE_OMIT_SUBQUERY */ /* ** x BETWEEN y AND z ** ** This is equivalent to ** ** x>=y AND x<=z ** ** X is stored in pExpr->pLeft. ** Y is stored in pExpr->pList->a[0].pExpr. ** Z is stored in pExpr->pList->a[1].pExpr. */ case TK_BETWEEN: { exprCodeBetween(pParse, pExpr, target, 0, 0); return target; } case TK_SPAN: case TK_COLLATE: case TK_UPLUS: { pExpr = pExpr->pLeft; goto expr_code_doover; /* 2018-04-28: Prevent deep recursion. OSSFuzz. */ } case TK_TRIGGER: { /* If the opcode is TK_TRIGGER, then the expression is a reference ** to a column in the new.* or old.* pseudo-tables available to ** trigger programs. In this case Expr.iTable is set to 1 for the ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn ** is set to the column of the pseudo-table to read, or to -1 to ** read the rowid field. ** ** The expression is implemented using an OP_Param opcode. The p1 ** parameter is set to 0 for an old.rowid reference, or to (i+1) ** to reference another column of the old.* pseudo-table, where ** i is the index of the column. For a new.rowid reference, p1 is ** set to (n+1), where n is the number of columns in each pseudo-table. ** For a reference to any other column in the new.* pseudo-table, p1 ** is set to (n+2+i), where n and i are as defined previously. For ** example, if the table on which triggers are being fired is ** declared as: ** ** CREATE TABLE t1(a, b); ** ** Then p1 is interpreted as follows: ** ** p1==0 -> old.rowid p1==3 -> new.rowid ** p1==1 -> old.a p1==4 -> new.a ** p1==2 -> old.b p1==5 -> new.b */ Table *pTab; int iCol; int p1; assert( ExprUseYTab(pExpr) ); pTab = pExpr->y.pTab; iCol = pExpr->iColumn; p1 = pExpr->iTable * (pTab->nCol+1) + 1 + sqlite3TableColumnToStorage(pTab, iCol); assert( pExpr->iTable==0 || pExpr->iTable==1 ); assert( iCol>=-1 && iColnCol ); assert( pTab->iPKey<0 || iCol!=pTab->iPKey ); assert( p1>=0 && p1<(pTab->nCol*2+2) ); sqlite3VdbeAddOp2(v, OP_Param, p1, target); VdbeComment((v, "r[%d]=%s.%s", target, (pExpr->iTable ? "new" : "old"), (pExpr->iColumn<0 ? "rowid" : pExpr->y.pTab->aCol[iCol].zCnName) )); #ifndef SQLITE_OMIT_FLOATING_POINT /* If the column has REAL affinity, it may currently be stored as an ** integer. Use OP_RealAffinity to make sure it is really real. ** ** EVIDENCE-OF: R-60985-57662 SQLite will convert the value back to ** floating point when extracting it from the record. */ if( iCol>=0 && pTab->aCol[iCol].affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, target); } #endif break; } case TK_VECTOR: { sqlite3ErrorMsg(pParse, "row value misused"); break; } /* TK_IF_NULL_ROW Expr nodes are inserted ahead of expressions ** that derive from the right-hand table of a LEFT JOIN. The ** Expr.iTable value is the table number for the right-hand table. ** The expression is only evaluated if that table is not currently ** on a LEFT JOIN NULL row. */ case TK_IF_NULL_ROW: { int addrINR; u8 okConstFactor = pParse->okConstFactor; addrINR = sqlite3VdbeAddOp1(v, OP_IfNullRow, pExpr->iTable); /* Temporarily disable factoring of constant expressions, since ** even though expressions may appear to be constant, they are not ** really constant because they originate from the right-hand side ** of a LEFT JOIN. */ pParse->okConstFactor = 0; inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); pParse->okConstFactor = okConstFactor; sqlite3VdbeJumpHere(v, addrINR); sqlite3VdbeChangeP3(v, addrINR, inReg); break; } /* ** Form A: ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END ** ** Form B: ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END ** ** Form A is can be transformed into the equivalent form B as follows: ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... ** WHEN x=eN THEN rN ELSE y END ** ** X (if it exists) is in pExpr->pLeft. ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is ** odd. The Y is also optional. If the number of elements in x.pList ** is even, then Y is omitted and the "otherwise" result is NULL. ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. ** ** The result of the expression is the Ri for the first matching Ei, ** or if there is no matching Ei, the ELSE term Y, or if there is ** no ELSE term, NULL. */ case TK_CASE: { int endLabel; /* GOTO label for end of CASE stmt */ int nextCase; /* GOTO label for next WHEN clause */ int nExpr; /* 2x number of WHEN terms */ int i; /* Loop counter */ ExprList *pEList; /* List of WHEN terms */ struct ExprList_item *aListelem; /* Array of WHEN terms */ Expr opCompare; /* The X==Ei expression */ Expr *pX; /* The X expression */ Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ Expr *pDel = 0; sqlite3 *db = pParse->db; assert( ExprUseXList(pExpr) && pExpr->x.pList!=0 ); assert(pExpr->x.pList->nExpr > 0); pEList = pExpr->x.pList; aListelem = pEList->a; nExpr = pEList->nExpr; endLabel = sqlite3VdbeMakeLabel(pParse); if( (pX = pExpr->pLeft)!=0 ){ pDel = sqlite3ExprDup(db, pX, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDel); break; } testcase( pX->op==TK_COLUMN ); exprToRegister(pDel, exprCodeVector(pParse, pDel, ®Free1)); testcase( regFree1==0 ); memset(&opCompare, 0, sizeof(opCompare)); opCompare.op = TK_EQ; opCompare.pLeft = pDel; pTest = &opCompare; /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: ** The value in regFree1 might get SCopy-ed into the file result. ** So make sure that the regFree1 register is not reused for other ** purposes and possibly overwritten. */ regFree1 = 0; } for(i=0; iop==TK_COLUMN ); sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); sqlite3VdbeGoto(v, endLabel); sqlite3VdbeResolveLabel(v, nextCase); } if( (nExpr&1)!=0 ){ sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, target); } sqlite3ExprDelete(db, pDel); setDoNotMergeFlagOnCopy(v); sqlite3VdbeResolveLabel(v, endLabel); break; } #ifndef SQLITE_OMIT_TRIGGER case TK_RAISE: { assert( pExpr->affExpr==OE_Rollback || pExpr->affExpr==OE_Abort || pExpr->affExpr==OE_Fail || pExpr->affExpr==OE_Ignore ); if( !pParse->pTriggerTab && !pParse->nested ){ sqlite3ErrorMsg(pParse, "RAISE() may only be used within a trigger-program"); return 0; } if( pExpr->affExpr==OE_Abort ){ sqlite3MayAbort(pParse); } assert( !ExprHasProperty(pExpr, EP_IntValue) ); if( pExpr->affExpr==OE_Ignore ){ sqlite3VdbeAddOp4( v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); VdbeCoverage(v); }else{ sqlite3HaltConstraint(pParse, pParse->pTriggerTab ? SQLITE_CONSTRAINT_TRIGGER : SQLITE_ERROR, pExpr->affExpr, pExpr->u.zToken, 0, 0); } break; } #endif } sqlite3ReleaseTempReg(pParse, regFree1); sqlite3ReleaseTempReg(pParse, regFree2); return inReg; } /* ** Generate code that will evaluate expression pExpr just one time ** per prepared statement execution. ** ** If the expression uses functions (that might throw an exception) then ** guard them with an OP_Once opcode to ensure that the code is only executed ** once. If no functions are involved, then factor the code out and put it at ** the end of the prepared statement in the initialization section. ** ** If regDest>=0 then the result is always stored in that register and the ** result is not reusable. If regDest<0 then this routine is free to ** store the value whereever it wants. The register where the expression ** is stored is returned. When regDest<0, two identical expressions might ** code to the same register, if they do not contain function calls and hence ** are factored out into the initialization section at the end of the ** prepared statement. */ SQLITE_PRIVATE int sqlite3ExprCodeRunJustOnce( Parse *pParse, /* Parsing context */ Expr *pExpr, /* The expression to code when the VDBE initializes */ int regDest /* Store the value in this register */ ){ ExprList *p; assert( ConstFactorOk(pParse) ); p = pParse->pConstExpr; if( regDest<0 && p ){ struct ExprList_item *pItem; int i; for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){ if( pItem->reusable && sqlite3ExprCompare(0,pItem->pExpr,pExpr,-1)==0 ){ return pItem->u.iConstExprReg; } } } pExpr = sqlite3ExprDup(pParse->db, pExpr, 0); if( pExpr!=0 && ExprHasProperty(pExpr, EP_HasFunc) ){ Vdbe *v = pParse->pVdbe; int addr; assert( v ); addr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); pParse->okConstFactor = 0; if( !pParse->db->mallocFailed ){ if( regDest<0 ) regDest = ++pParse->nMem; sqlite3ExprCode(pParse, pExpr, regDest); } pParse->okConstFactor = 1; sqlite3ExprDelete(pParse->db, pExpr); sqlite3VdbeJumpHere(v, addr); }else{ p = sqlite3ExprListAppend(pParse, p, pExpr); if( p ){ struct ExprList_item *pItem = &p->a[p->nExpr-1]; pItem->reusable = regDest<0; if( regDest<0 ) regDest = ++pParse->nMem; pItem->u.iConstExprReg = regDest; } pParse->pConstExpr = p; } return regDest; } /* ** Generate code to evaluate an expression and store the results ** into a register. Return the register number where the results ** are stored. ** ** If the register is a temporary register that can be deallocated, ** then write its number into *pReg. If the result register is not ** a temporary, then set *pReg to zero. ** ** If pExpr is a constant, then this routine might generate this ** code to fill the register in the initialization section of the ** VDBE program, in order to factor it out of the evaluation loop. */ SQLITE_PRIVATE int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ int r2; pExpr = sqlite3ExprSkipCollateAndLikely(pExpr); if( ConstFactorOk(pParse) && ALWAYS(pExpr!=0) && pExpr->op!=TK_REGISTER && sqlite3ExprIsConstantNotJoin(pExpr) ){ *pReg = 0; r2 = sqlite3ExprCodeRunJustOnce(pParse, pExpr, -1); }else{ int r1 = sqlite3GetTempReg(pParse); r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); if( r2==r1 ){ *pReg = r1; }else{ sqlite3ReleaseTempReg(pParse, r1); *pReg = 0; } } return r2; } /* ** Generate code that will evaluate expression pExpr and store the ** results in register target. The results are guaranteed to appear ** in register target. */ SQLITE_PRIVATE void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ int inReg; assert( pExpr==0 || !ExprHasVVAProperty(pExpr,EP_Immutable) ); assert( target>0 && target<=pParse->nMem ); assert( pParse->pVdbe!=0 || pParse->db->mallocFailed ); if( pParse->pVdbe==0 ) return; inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); if( inReg!=target ){ u8 op; if( ALWAYS(pExpr) && ExprHasProperty(pExpr,EP_Subquery) ){ op = OP_Copy; }else{ op = OP_SCopy; } sqlite3VdbeAddOp2(pParse->pVdbe, op, inReg, target); } } /* ** Make a transient copy of expression pExpr and then code it using ** sqlite3ExprCode(). This routine works just like sqlite3ExprCode() ** except that the input expression is guaranteed to be unchanged. */ SQLITE_PRIVATE void sqlite3ExprCodeCopy(Parse *pParse, Expr *pExpr, int target){ sqlite3 *db = pParse->db; pExpr = sqlite3ExprDup(db, pExpr, 0); if( !db->mallocFailed ) sqlite3ExprCode(pParse, pExpr, target); sqlite3ExprDelete(db, pExpr); } /* ** Generate code that will evaluate expression pExpr and store the ** results in register target. The results are guaranteed to appear ** in register target. If the expression is constant, then this routine ** might choose to code the expression at initialization time. */ SQLITE_PRIVATE void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){ if( pParse->okConstFactor && sqlite3ExprIsConstantNotJoin(pExpr) ){ sqlite3ExprCodeRunJustOnce(pParse, pExpr, target); }else{ sqlite3ExprCodeCopy(pParse, pExpr, target); } } /* ** Generate code that pushes the value of every element of the given ** expression list into a sequence of registers beginning at target. ** ** Return the number of elements evaluated. The number returned will ** usually be pList->nExpr but might be reduced if SQLITE_ECEL_OMITREF ** is defined. ** ** The SQLITE_ECEL_DUP flag prevents the arguments from being ** filled using OP_SCopy. OP_Copy must be used instead. ** ** The SQLITE_ECEL_FACTOR argument allows constant arguments to be ** factored out into initialization code. ** ** The SQLITE_ECEL_REF flag means that expressions in the list with ** ExprList.a[].u.x.iOrderByCol>0 have already been evaluated and stored ** in registers at srcReg, and so the value can be copied from there. ** If SQLITE_ECEL_OMITREF is also set, then the values with u.x.iOrderByCol>0 ** are simply omitted rather than being copied from srcReg. */ SQLITE_PRIVATE int sqlite3ExprCodeExprList( Parse *pParse, /* Parsing context */ ExprList *pList, /* The expression list to be coded */ int target, /* Where to write results */ int srcReg, /* Source registers if SQLITE_ECEL_REF */ u8 flags /* SQLITE_ECEL_* flags */ ){ struct ExprList_item *pItem; int i, j, n; u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy; Vdbe *v = pParse->pVdbe; assert( pList!=0 ); assert( target>0 ); assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ n = pList->nExpr; if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR; for(pItem=pList->a, i=0; ipExpr; #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( pItem->bSorterRef ){ i--; n--; }else #endif if( (flags & SQLITE_ECEL_REF)!=0 && (j = pItem->u.x.iOrderByCol)>0 ){ if( flags & SQLITE_ECEL_OMITREF ){ i--; n--; }else{ sqlite3VdbeAddOp2(v, copyOp, j+srcReg-1, target+i); } }else if( (flags & SQLITE_ECEL_FACTOR)!=0 && sqlite3ExprIsConstantNotJoin(pExpr) ){ sqlite3ExprCodeRunJustOnce(pParse, pExpr, target+i); }else{ int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); if( inReg!=target+i ){ VdbeOp *pOp; if( copyOp==OP_Copy && (pOp=sqlite3VdbeGetOp(v, -1))->opcode==OP_Copy && pOp->p1+pOp->p3+1==inReg && pOp->p2+pOp->p3+1==target+i && pOp->p5==0 /* The do-not-merge flag must be clear */ ){ pOp->p3++; }else{ sqlite3VdbeAddOp2(v, copyOp, inReg, target+i); } } } } return n; } /* ** Generate code for a BETWEEN operator. ** ** x BETWEEN y AND z ** ** The above is equivalent to ** ** x>=y AND x<=z ** ** Code it as such, taking care to do the common subexpression ** elimination of x. ** ** The xJumpIf parameter determines details: ** ** NULL: Store the boolean result in reg[dest] ** sqlite3ExprIfTrue: Jump to dest if true ** sqlite3ExprIfFalse: Jump to dest if false ** ** The jumpIfNull parameter is ignored if xJumpIf is NULL. */ static void exprCodeBetween( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* The BETWEEN expression */ int dest, /* Jump destination or storage location */ void (*xJump)(Parse*,Expr*,int,int), /* Action to take */ int jumpIfNull /* Take the jump if the BETWEEN is NULL */ ){ Expr exprAnd; /* The AND operator in x>=y AND x<=z */ Expr compLeft; /* The x>=y term */ Expr compRight; /* The x<=z term */ int regFree1 = 0; /* Temporary use register */ Expr *pDel = 0; sqlite3 *db = pParse->db; memset(&compLeft, 0, sizeof(Expr)); memset(&compRight, 0, sizeof(Expr)); memset(&exprAnd, 0, sizeof(Expr)); assert( ExprUseXList(pExpr) ); pDel = sqlite3ExprDup(db, pExpr->pLeft, 0); if( db->mallocFailed==0 ){ exprAnd.op = TK_AND; exprAnd.pLeft = &compLeft; exprAnd.pRight = &compRight; compLeft.op = TK_GE; compLeft.pLeft = pDel; compLeft.pRight = pExpr->x.pList->a[0].pExpr; compRight.op = TK_LE; compRight.pLeft = pDel; compRight.pRight = pExpr->x.pList->a[1].pExpr; exprToRegister(pDel, exprCodeVector(pParse, pDel, ®Free1)); if( xJump ){ xJump(pParse, &exprAnd, dest, jumpIfNull); }else{ /* Mark the expression is being from the ON or USING clause of a join ** so that the sqlite3ExprCodeTarget() routine will not attempt to move ** it into the Parse.pConstExpr list. We should use a new bit for this, ** for clarity, but we are out of bits in the Expr.flags field so we ** have to reuse the EP_FromJoin bit. Bummer. */ pDel->flags |= EP_FromJoin; sqlite3ExprCodeTarget(pParse, &exprAnd, dest); } sqlite3ReleaseTempReg(pParse, regFree1); } sqlite3ExprDelete(db, pDel); /* Ensure adequate test coverage */ testcase( xJump==sqlite3ExprIfTrue && jumpIfNull==0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfTrue && jumpIfNull==0 && regFree1!=0 ); testcase( xJump==sqlite3ExprIfTrue && jumpIfNull!=0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfTrue && jumpIfNull!=0 && regFree1!=0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull==0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull==0 && regFree1!=0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull!=0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull!=0 && regFree1!=0 ); testcase( xJump==0 ); } /* ** Generate code for a boolean expression such that a jump is made ** to the label "dest" if the expression is true but execution ** continues straight thru if the expression is false. ** ** If the expression evaluates to NULL (neither true nor false), then ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. ** ** This code depends on the fact that certain token values (ex: TK_EQ) ** are the same as opcode values (ex: OP_Eq) that implement the corresponding ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in ** the make process cause these values to align. Assert()s in the code ** below verify that the numbers are aligned correctly. */ SQLITE_PRIVATE void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ Vdbe *v = pParse->pVdbe; int op = 0; int regFree1 = 0; int regFree2 = 0; int r1, r2; assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ if( NEVER(pExpr==0) ) return; /* No way this can happen */ assert( !ExprHasVVAProperty(pExpr, EP_Immutable) ); op = pExpr->op; switch( op ){ case TK_AND: case TK_OR: { Expr *pAlt = sqlite3ExprSimplifiedAndOr(pExpr); if( pAlt!=pExpr ){ sqlite3ExprIfTrue(pParse, pAlt, dest, jumpIfNull); }else if( op==TK_AND ){ int d2 = sqlite3VdbeMakeLabel(pParse); testcase( jumpIfNull==0 ); sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); sqlite3VdbeResolveLabel(v, d2); }else{ testcase( jumpIfNull==0 ); sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); } break; } case TK_NOT: { testcase( jumpIfNull==0 ); sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); break; } case TK_TRUTH: { int isNot; /* IS NOT TRUE or IS NOT FALSE */ int isTrue; /* IS TRUE or IS NOT TRUE */ testcase( jumpIfNull==0 ); isNot = pExpr->op2==TK_ISNOT; isTrue = sqlite3ExprTruthValue(pExpr->pRight); testcase( isTrue && isNot ); testcase( !isTrue && isNot ); if( isTrue ^ isNot ){ sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, isNot ? SQLITE_JUMPIFNULL : 0); }else{ sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, isNot ? SQLITE_JUMPIFNULL : 0); } break; } case TK_IS: case TK_ISNOT: testcase( op==TK_IS ); testcase( op==TK_ISNOT ); op = (op==TK_IS) ? TK_EQ : TK_NE; jumpIfNull = SQLITE_NULLEQ; /* no break */ deliberate_fall_through case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_NE: case TK_EQ: { if( sqlite3ExprIsVector(pExpr->pLeft) ) goto default_expr; testcase( jumpIfNull==0 ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, r1, r2, dest, jumpIfNull, ExprHasProperty(pExpr,EP_Commuted)); assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); testcase( regFree1==0 ); testcase( regFree2==0 ); break; } case TK_ISNULL: case TK_NOTNULL: { assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); sqlite3VdbeAddOp2(v, op, r1, dest); VdbeCoverageIf(v, op==TK_ISNULL); VdbeCoverageIf(v, op==TK_NOTNULL); testcase( regFree1==0 ); break; } case TK_BETWEEN: { testcase( jumpIfNull==0 ); exprCodeBetween(pParse, pExpr, dest, sqlite3ExprIfTrue, jumpIfNull); break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_IN: { int destIfFalse = sqlite3VdbeMakeLabel(pParse); int destIfNull = jumpIfNull ? dest : destIfFalse; sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); sqlite3VdbeGoto(v, dest); sqlite3VdbeResolveLabel(v, destIfFalse); break; } #endif default: { default_expr: if( ExprAlwaysTrue(pExpr) ){ sqlite3VdbeGoto(v, dest); }else if( ExprAlwaysFalse(pExpr) ){ /* No-op */ }else{ r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); VdbeCoverage(v); testcase( regFree1==0 ); testcase( jumpIfNull==0 ); } break; } } sqlite3ReleaseTempReg(pParse, regFree1); sqlite3ReleaseTempReg(pParse, regFree2); } /* ** Generate code for a boolean expression such that a jump is made ** to the label "dest" if the expression is false but execution ** continues straight thru if the expression is true. ** ** If the expression evaluates to NULL (neither true nor false) then ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull ** is 0. */ SQLITE_PRIVATE void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ Vdbe *v = pParse->pVdbe; int op = 0; int regFree1 = 0; int regFree2 = 0; int r1, r2; assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ if( pExpr==0 ) return; assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); /* The value of pExpr->op and op are related as follows: ** ** pExpr->op op ** --------- ---------- ** TK_ISNULL OP_NotNull ** TK_NOTNULL OP_IsNull ** TK_NE OP_Eq ** TK_EQ OP_Ne ** TK_GT OP_Le ** TK_LE OP_Gt ** TK_GE OP_Lt ** TK_LT OP_Ge ** ** For other values of pExpr->op, op is undefined and unused. ** The value of TK_ and OP_ constants are arranged such that we ** can compute the mapping above using the following expression. ** Assert()s verify that the computation is correct. */ op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); /* Verify correct alignment of TK_ and OP_ constants */ assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); assert( pExpr->op!=TK_NE || op==OP_Eq ); assert( pExpr->op!=TK_EQ || op==OP_Ne ); assert( pExpr->op!=TK_LT || op==OP_Ge ); assert( pExpr->op!=TK_LE || op==OP_Gt ); assert( pExpr->op!=TK_GT || op==OP_Le ); assert( pExpr->op!=TK_GE || op==OP_Lt ); switch( pExpr->op ){ case TK_AND: case TK_OR: { Expr *pAlt = sqlite3ExprSimplifiedAndOr(pExpr); if( pAlt!=pExpr ){ sqlite3ExprIfFalse(pParse, pAlt, dest, jumpIfNull); }else if( pExpr->op==TK_AND ){ testcase( jumpIfNull==0 ); sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); }else{ int d2 = sqlite3VdbeMakeLabel(pParse); testcase( jumpIfNull==0 ); sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); sqlite3VdbeResolveLabel(v, d2); } break; } case TK_NOT: { testcase( jumpIfNull==0 ); sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); break; } case TK_TRUTH: { int isNot; /* IS NOT TRUE or IS NOT FALSE */ int isTrue; /* IS TRUE or IS NOT TRUE */ testcase( jumpIfNull==0 ); isNot = pExpr->op2==TK_ISNOT; isTrue = sqlite3ExprTruthValue(pExpr->pRight); testcase( isTrue && isNot ); testcase( !isTrue && isNot ); if( isTrue ^ isNot ){ /* IS TRUE and IS NOT FALSE */ sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, isNot ? 0 : SQLITE_JUMPIFNULL); }else{ /* IS FALSE and IS NOT TRUE */ sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, isNot ? 0 : SQLITE_JUMPIFNULL); } break; } case TK_IS: case TK_ISNOT: testcase( pExpr->op==TK_IS ); testcase( pExpr->op==TK_ISNOT ); op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; jumpIfNull = SQLITE_NULLEQ; /* no break */ deliberate_fall_through case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_NE: case TK_EQ: { if( sqlite3ExprIsVector(pExpr->pLeft) ) goto default_expr; testcase( jumpIfNull==0 ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, r1, r2, dest, jumpIfNull,ExprHasProperty(pExpr,EP_Commuted)); assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); testcase( regFree1==0 ); testcase( regFree2==0 ); break; } case TK_ISNULL: case TK_NOTNULL: { r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); sqlite3VdbeAddOp2(v, op, r1, dest); testcase( op==TK_ISNULL ); VdbeCoverageIf(v, op==TK_ISNULL); testcase( op==TK_NOTNULL ); VdbeCoverageIf(v, op==TK_NOTNULL); testcase( regFree1==0 ); break; } case TK_BETWEEN: { testcase( jumpIfNull==0 ); exprCodeBetween(pParse, pExpr, dest, sqlite3ExprIfFalse, jumpIfNull); break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_IN: { if( jumpIfNull ){ sqlite3ExprCodeIN(pParse, pExpr, dest, dest); }else{ int destIfNull = sqlite3VdbeMakeLabel(pParse); sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); sqlite3VdbeResolveLabel(v, destIfNull); } break; } #endif default: { default_expr: if( ExprAlwaysFalse(pExpr) ){ sqlite3VdbeGoto(v, dest); }else if( ExprAlwaysTrue(pExpr) ){ /* no-op */ }else{ r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); VdbeCoverage(v); testcase( regFree1==0 ); testcase( jumpIfNull==0 ); } break; } } sqlite3ReleaseTempReg(pParse, regFree1); sqlite3ReleaseTempReg(pParse, regFree2); } /* ** Like sqlite3ExprIfFalse() except that a copy is made of pExpr before ** code generation, and that copy is deleted after code generation. This ** ensures that the original pExpr is unchanged. */ SQLITE_PRIVATE void sqlite3ExprIfFalseDup(Parse *pParse, Expr *pExpr, int dest,int jumpIfNull){ sqlite3 *db = pParse->db; Expr *pCopy = sqlite3ExprDup(db, pExpr, 0); if( db->mallocFailed==0 ){ sqlite3ExprIfFalse(pParse, pCopy, dest, jumpIfNull); } sqlite3ExprDelete(db, pCopy); } /* ** Expression pVar is guaranteed to be an SQL variable. pExpr may be any ** type of expression. ** ** If pExpr is a simple SQL value - an integer, real, string, blob ** or NULL value - then the VDBE currently being prepared is configured ** to re-prepare each time a new value is bound to variable pVar. ** ** Additionally, if pExpr is a simple SQL value and the value is the ** same as that currently bound to variable pVar, non-zero is returned. ** Otherwise, if the values are not the same or if pExpr is not a simple ** SQL value, zero is returned. */ static int exprCompareVariable( const Parse *pParse, const Expr *pVar, const Expr *pExpr ){ int res = 0; int iVar; sqlite3_value *pL, *pR = 0; sqlite3ValueFromExpr(pParse->db, pExpr, SQLITE_UTF8, SQLITE_AFF_BLOB, &pR); if( pR ){ iVar = pVar->iColumn; sqlite3VdbeSetVarmask(pParse->pVdbe, iVar); pL = sqlite3VdbeGetBoundValue(pParse->pReprepare, iVar, SQLITE_AFF_BLOB); if( pL ){ if( sqlite3_value_type(pL)==SQLITE_TEXT ){ sqlite3_value_text(pL); /* Make sure the encoding is UTF-8 */ } res = 0==sqlite3MemCompare(pL, pR, 0); } sqlite3ValueFree(pR); sqlite3ValueFree(pL); } return res; } /* ** Do a deep comparison of two expression trees. Return 0 if the two ** expressions are completely identical. Return 1 if they differ only ** by a COLLATE operator at the top level. Return 2 if there are differences ** other than the top-level COLLATE operator. ** ** If any subelement of pB has Expr.iTable==(-1) then it is allowed ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. ** ** The pA side might be using TK_REGISTER. If that is the case and pB is ** not using TK_REGISTER but is otherwise equivalent, then still return 0. ** ** Sometimes this routine will return 2 even if the two expressions ** really are equivalent. If we cannot prove that the expressions are ** identical, we return 2 just to be safe. So if this routine ** returns 2, then you do not really know for certain if the two ** expressions are the same. But if you get a 0 or 1 return, then you ** can be sure the expressions are the same. In the places where ** this routine is used, it does not hurt to get an extra 2 - that ** just might result in some slightly slower code. But returning ** an incorrect 0 or 1 could lead to a malfunction. ** ** If pParse is not NULL then TK_VARIABLE terms in pA with bindings in ** pParse->pReprepare can be matched against literals in pB. The ** pParse->pVdbe->expmask bitmask is updated for each variable referenced. ** If pParse is NULL (the normal case) then any TK_VARIABLE term in ** Argument pParse should normally be NULL. If it is not NULL and pA or ** pB causes a return value of 2. */ SQLITE_PRIVATE int sqlite3ExprCompare( const Parse *pParse, const Expr *pA, const Expr *pB, int iTab ){ u32 combinedFlags; if( pA==0 || pB==0 ){ return pB==pA ? 0 : 2; } if( pParse && pA->op==TK_VARIABLE && exprCompareVariable(pParse, pA, pB) ){ return 0; } combinedFlags = pA->flags | pB->flags; if( combinedFlags & EP_IntValue ){ if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ return 0; } return 2; } if( pA->op!=pB->op || pA->op==TK_RAISE ){ if( pA->op==TK_COLLATE && sqlite3ExprCompare(pParse, pA->pLeft,pB,iTab)<2 ){ return 1; } if( pB->op==TK_COLLATE && sqlite3ExprCompare(pParse, pA,pB->pLeft,iTab)<2 ){ return 1; } return 2; } assert( !ExprHasProperty(pA, EP_IntValue) ); assert( !ExprHasProperty(pB, EP_IntValue) ); if( pA->u.zToken ){ if( pA->op==TK_FUNCTION || pA->op==TK_AGG_FUNCTION ){ if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ) return 2; #ifndef SQLITE_OMIT_WINDOWFUNC assert( pA->op==pB->op ); if( ExprHasProperty(pA,EP_WinFunc)!=ExprHasProperty(pB,EP_WinFunc) ){ return 2; } if( ExprHasProperty(pA,EP_WinFunc) ){ if( sqlite3WindowCompare(pParse, pA->y.pWin, pB->y.pWin, 1)!=0 ){ return 2; } } #endif }else if( pA->op==TK_NULL ){ return 0; }else if( pA->op==TK_COLLATE ){ if( sqlite3_stricmp(pA->u.zToken,pB->u.zToken)!=0 ) return 2; }else if( pB->u.zToken!=0 && pA->op!=TK_COLUMN && pA->op!=TK_AGG_COLUMN && strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ return 2; } } if( (pA->flags & (EP_Distinct|EP_Commuted)) != (pB->flags & (EP_Distinct|EP_Commuted)) ) return 2; if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){ if( combinedFlags & EP_xIsSelect ) return 2; if( (combinedFlags & EP_FixedCol)==0 && sqlite3ExprCompare(pParse, pA->pLeft, pB->pLeft, iTab) ) return 2; if( sqlite3ExprCompare(pParse, pA->pRight, pB->pRight, iTab) ) return 2; if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2; if( pA->op!=TK_STRING && pA->op!=TK_TRUEFALSE && ALWAYS((combinedFlags & EP_Reduced)==0) ){ if( pA->iColumn!=pB->iColumn ) return 2; if( pA->op2!=pB->op2 && pA->op==TK_TRUTH ) return 2; if( pA->op!=TK_IN && pA->iTable!=pB->iTable && pA->iTable!=iTab ){ return 2; } } } return 0; } /* ** Compare two ExprList objects. Return 0 if they are identical, 1 ** if they are certainly different, or 2 if it is not possible to ** determine if they are identical or not. ** ** If any subelement of pB has Expr.iTable==(-1) then it is allowed ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. ** ** This routine might return non-zero for equivalent ExprLists. The ** only consequence will be disabled optimizations. But this routine ** must never return 0 if the two ExprList objects are different, or ** a malfunction will result. ** ** Two NULL pointers are considered to be the same. But a NULL pointer ** always differs from a non-NULL pointer. */ SQLITE_PRIVATE int sqlite3ExprListCompare(const ExprList *pA, const ExprList *pB, int iTab){ int i; if( pA==0 && pB==0 ) return 0; if( pA==0 || pB==0 ) return 1; if( pA->nExpr!=pB->nExpr ) return 1; for(i=0; inExpr; i++){ int res; Expr *pExprA = pA->a[i].pExpr; Expr *pExprB = pB->a[i].pExpr; if( pA->a[i].sortFlags!=pB->a[i].sortFlags ) return 1; if( (res = sqlite3ExprCompare(0, pExprA, pExprB, iTab)) ) return res; } return 0; } /* ** Like sqlite3ExprCompare() except COLLATE operators at the top-level ** are ignored. */ SQLITE_PRIVATE int sqlite3ExprCompareSkip(Expr *pA,Expr *pB, int iTab){ return sqlite3ExprCompare(0, sqlite3ExprSkipCollateAndLikely(pA), sqlite3ExprSkipCollateAndLikely(pB), iTab); } /* ** Return non-zero if Expr p can only be true if pNN is not NULL. ** ** Or if seenNot is true, return non-zero if Expr p can only be ** non-NULL if pNN is not NULL */ static int exprImpliesNotNull( const Parse *pParse,/* Parsing context */ const Expr *p, /* The expression to be checked */ const Expr *pNN, /* The expression that is NOT NULL */ int iTab, /* Table being evaluated */ int seenNot /* Return true only if p can be any non-NULL value */ ){ assert( p ); assert( pNN ); if( sqlite3ExprCompare(pParse, p, pNN, iTab)==0 ){ return pNN->op!=TK_NULL; } switch( p->op ){ case TK_IN: { if( seenNot && ExprHasProperty(p, EP_xIsSelect) ) return 0; assert( ExprUseXSelect(p) || (p->x.pList!=0 && p->x.pList->nExpr>0) ); return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } case TK_BETWEEN: { ExprList *pList; assert( ExprUseXList(p) ); pList = p->x.pList; assert( pList!=0 ); assert( pList->nExpr==2 ); if( seenNot ) return 0; if( exprImpliesNotNull(pParse, pList->a[0].pExpr, pNN, iTab, 1) || exprImpliesNotNull(pParse, pList->a[1].pExpr, pNN, iTab, 1) ){ return 1; } return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } case TK_EQ: case TK_NE: case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_PLUS: case TK_MINUS: case TK_BITOR: case TK_LSHIFT: case TK_RSHIFT: case TK_CONCAT: seenNot = 1; /* no break */ deliberate_fall_through case TK_STAR: case TK_REM: case TK_BITAND: case TK_SLASH: { if( exprImpliesNotNull(pParse, p->pRight, pNN, iTab, seenNot) ) return 1; /* no break */ deliberate_fall_through } case TK_SPAN: case TK_COLLATE: case TK_UPLUS: case TK_UMINUS: { return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, seenNot); } case TK_TRUTH: { if( seenNot ) return 0; if( p->op2!=TK_IS ) return 0; return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } case TK_BITNOT: case TK_NOT: { return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } } return 0; } /* ** Return true if we can prove the pE2 will always be true if pE1 is ** true. Return false if we cannot complete the proof or if pE2 might ** be false. Examples: ** ** pE1: x==5 pE2: x==5 Result: true ** pE1: x>0 pE2: x==5 Result: false ** pE1: x=21 pE2: x=21 OR y=43 Result: true ** pE1: x!=123 pE2: x IS NOT NULL Result: true ** pE1: x!=?1 pE2: x IS NOT NULL Result: true ** pE1: x IS NULL pE2: x IS NOT NULL Result: false ** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false ** ** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has ** Expr.iTable<0 then assume a table number given by iTab. ** ** If pParse is not NULL, then the values of bound variables in pE1 are ** compared against literal values in pE2 and pParse->pVdbe->expmask is ** modified to record which bound variables are referenced. If pParse ** is NULL, then false will be returned if pE1 contains any bound variables. ** ** When in doubt, return false. Returning true might give a performance ** improvement. Returning false might cause a performance reduction, but ** it will always give the correct answer and is hence always safe. */ SQLITE_PRIVATE int sqlite3ExprImpliesExpr( const Parse *pParse, const Expr *pE1, const Expr *pE2, int iTab ){ if( sqlite3ExprCompare(pParse, pE1, pE2, iTab)==0 ){ return 1; } if( pE2->op==TK_OR && (sqlite3ExprImpliesExpr(pParse, pE1, pE2->pLeft, iTab) || sqlite3ExprImpliesExpr(pParse, pE1, pE2->pRight, iTab) ) ){ return 1; } if( pE2->op==TK_NOTNULL && exprImpliesNotNull(pParse, pE1, pE2->pLeft, iTab, 0) ){ return 1; } return 0; } /* ** This is the Expr node callback for sqlite3ExprImpliesNonNullRow(). ** If the expression node requires that the table at pWalker->iCur ** have one or more non-NULL column, then set pWalker->eCode to 1 and abort. ** ** This routine controls an optimization. False positives (setting ** pWalker->eCode to 1 when it should not be) are deadly, but false-negatives ** (never setting pWalker->eCode) is a harmless missed optimization. */ static int impliesNotNullRow(Walker *pWalker, Expr *pExpr){ testcase( pExpr->op==TK_AGG_COLUMN ); testcase( pExpr->op==TK_AGG_FUNCTION ); if( ExprHasProperty(pExpr, EP_FromJoin) ) return WRC_Prune; switch( pExpr->op ){ case TK_ISNOT: case TK_ISNULL: case TK_NOTNULL: case TK_IS: case TK_OR: case TK_VECTOR: case TK_CASE: case TK_IN: case TK_FUNCTION: case TK_TRUTH: testcase( pExpr->op==TK_ISNOT ); testcase( pExpr->op==TK_ISNULL ); testcase( pExpr->op==TK_NOTNULL ); testcase( pExpr->op==TK_IS ); testcase( pExpr->op==TK_OR ); testcase( pExpr->op==TK_VECTOR ); testcase( pExpr->op==TK_CASE ); testcase( pExpr->op==TK_IN ); testcase( pExpr->op==TK_FUNCTION ); testcase( pExpr->op==TK_TRUTH ); return WRC_Prune; case TK_COLUMN: if( pWalker->u.iCur==pExpr->iTable ){ pWalker->eCode = 1; return WRC_Abort; } return WRC_Prune; case TK_AND: if( pWalker->eCode==0 ){ sqlite3WalkExpr(pWalker, pExpr->pLeft); if( pWalker->eCode ){ pWalker->eCode = 0; sqlite3WalkExpr(pWalker, pExpr->pRight); } } return WRC_Prune; case TK_BETWEEN: if( sqlite3WalkExpr(pWalker, pExpr->pLeft)==WRC_Abort ){ assert( pWalker->eCode ); return WRC_Abort; } return WRC_Prune; /* Virtual tables are allowed to use constraints like x=NULL. So ** a term of the form x=y does not prove that y is not null if x ** is the column of a virtual table */ case TK_EQ: case TK_NE: case TK_LT: case TK_LE: case TK_GT: case TK_GE: { Expr *pLeft = pExpr->pLeft; Expr *pRight = pExpr->pRight; testcase( pExpr->op==TK_EQ ); testcase( pExpr->op==TK_NE ); testcase( pExpr->op==TK_LT ); testcase( pExpr->op==TK_LE ); testcase( pExpr->op==TK_GT ); testcase( pExpr->op==TK_GE ); /* The y.pTab=0 assignment in wherecode.c always happens after the ** impliesNotNullRow() test */ assert( pLeft->op!=TK_COLUMN || ExprUseYTab(pLeft) ); assert( pRight->op!=TK_COLUMN || ExprUseYTab(pRight) ); if( (pLeft->op==TK_COLUMN && pLeft->y.pTab!=0 && IsVirtual(pLeft->y.pTab)) || (pRight->op==TK_COLUMN && pRight->y.pTab!=0 && IsVirtual(pRight->y.pTab)) ){ return WRC_Prune; } /* no break */ deliberate_fall_through } default: return WRC_Continue; } } /* ** Return true (non-zero) if expression p can only be true if at least ** one column of table iTab is non-null. In other words, return true ** if expression p will always be NULL or false if every column of iTab ** is NULL. ** ** False negatives are acceptable. In other words, it is ok to return ** zero even if expression p will never be true of every column of iTab ** is NULL. A false negative is merely a missed optimization opportunity. ** ** False positives are not allowed, however. A false positive may result ** in an incorrect answer. ** ** Terms of p that are marked with EP_FromJoin (and hence that come from ** the ON or USING clauses of LEFT JOINS) are excluded from the analysis. ** ** This routine is used to check if a LEFT JOIN can be converted into ** an ordinary JOIN. The p argument is the WHERE clause. If the WHERE ** clause requires that some column of the right table of the LEFT JOIN ** be non-NULL, then the LEFT JOIN can be safely converted into an ** ordinary join. */ SQLITE_PRIVATE int sqlite3ExprImpliesNonNullRow(Expr *p, int iTab){ Walker w; p = sqlite3ExprSkipCollateAndLikely(p); if( p==0 ) return 0; if( p->op==TK_NOTNULL ){ p = p->pLeft; }else{ while( p->op==TK_AND ){ if( sqlite3ExprImpliesNonNullRow(p->pLeft, iTab) ) return 1; p = p->pRight; } } w.xExprCallback = impliesNotNullRow; w.xSelectCallback = 0; w.xSelectCallback2 = 0; w.eCode = 0; w.u.iCur = iTab; sqlite3WalkExpr(&w, p); return w.eCode; } /* ** An instance of the following structure is used by the tree walker ** to determine if an expression can be evaluated by reference to the ** index only, without having to do a search for the corresponding ** table entry. The IdxCover.pIdx field is the index. IdxCover.iCur ** is the cursor for the table. */ struct IdxCover { Index *pIdx; /* The index to be tested for coverage */ int iCur; /* Cursor number for the table corresponding to the index */ }; /* ** Check to see if there are references to columns in table ** pWalker->u.pIdxCover->iCur can be satisfied using the index ** pWalker->u.pIdxCover->pIdx. */ static int exprIdxCover(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN && pExpr->iTable==pWalker->u.pIdxCover->iCur && sqlite3TableColumnToIndex(pWalker->u.pIdxCover->pIdx, pExpr->iColumn)<0 ){ pWalker->eCode = 1; return WRC_Abort; } return WRC_Continue; } /* ** Determine if an index pIdx on table with cursor iCur contains will ** the expression pExpr. Return true if the index does cover the ** expression and false if the pExpr expression references table columns ** that are not found in the index pIdx. ** ** An index covering an expression means that the expression can be ** evaluated using only the index and without having to lookup the ** corresponding table entry. */ SQLITE_PRIVATE int sqlite3ExprCoveredByIndex( Expr *pExpr, /* The index to be tested */ int iCur, /* The cursor number for the corresponding table */ Index *pIdx /* The index that might be used for coverage */ ){ Walker w; struct IdxCover xcov; memset(&w, 0, sizeof(w)); xcov.iCur = iCur; xcov.pIdx = pIdx; w.xExprCallback = exprIdxCover; w.u.pIdxCover = &xcov; sqlite3WalkExpr(&w, pExpr); return !w.eCode; } /* Structure used to pass information throught the Walker in order to ** implement sqlite3ReferencesSrcList(). */ struct RefSrcList { sqlite3 *db; /* Database connection used for sqlite3DbRealloc() */ SrcList *pRef; /* Looking for references to these tables */ i64 nExclude; /* Number of tables to exclude from the search */ int *aiExclude; /* Cursor IDs for tables to exclude from the search */ }; /* ** Walker SELECT callbacks for sqlite3ReferencesSrcList(). ** ** When entering a new subquery on the pExpr argument, add all FROM clause ** entries for that subquery to the exclude list. ** ** When leaving the subquery, remove those entries from the exclude list. */ static int selectRefEnter(Walker *pWalker, Select *pSelect){ struct RefSrcList *p = pWalker->u.pRefSrcList; SrcList *pSrc = pSelect->pSrc; i64 i, j; int *piNew; if( pSrc->nSrc==0 ) return WRC_Continue; j = p->nExclude; p->nExclude += pSrc->nSrc; piNew = sqlite3DbRealloc(p->db, p->aiExclude, p->nExclude*sizeof(int)); if( piNew==0 ){ p->nExclude = 0; return WRC_Abort; }else{ p->aiExclude = piNew; } for(i=0; inSrc; i++, j++){ p->aiExclude[j] = pSrc->a[i].iCursor; } return WRC_Continue; } static void selectRefLeave(Walker *pWalker, Select *pSelect){ struct RefSrcList *p = pWalker->u.pRefSrcList; SrcList *pSrc = pSelect->pSrc; if( p->nExclude ){ assert( p->nExclude>=pSrc->nSrc ); p->nExclude -= pSrc->nSrc; } } /* This is the Walker EXPR callback for sqlite3ReferencesSrcList(). ** ** Set the 0x01 bit of pWalker->eCode if there is a reference to any ** of the tables shown in RefSrcList.pRef. ** ** Set the 0x02 bit of pWalker->eCode if there is a reference to a ** table is in neither RefSrcList.pRef nor RefSrcList.aiExclude. */ static int exprRefToSrcList(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN || pExpr->op==TK_AGG_COLUMN ){ int i; struct RefSrcList *p = pWalker->u.pRefSrcList; SrcList *pSrc = p->pRef; int nSrc = pSrc ? pSrc->nSrc : 0; for(i=0; iiTable==pSrc->a[i].iCursor ){ pWalker->eCode |= 1; return WRC_Continue; } } for(i=0; inExclude && p->aiExclude[i]!=pExpr->iTable; i++){} if( i>=p->nExclude ){ pWalker->eCode |= 2; } } return WRC_Continue; } /* ** Check to see if pExpr references any tables in pSrcList. ** Possible return values: ** ** 1 pExpr does references a table in pSrcList. ** ** 0 pExpr references some table that is not defined in either ** pSrcList or in subqueries of pExpr itself. ** ** -1 pExpr only references no tables at all, or it only ** references tables defined in subqueries of pExpr itself. ** ** As currently used, pExpr is always an aggregate function call. That ** fact is exploited for efficiency. */ SQLITE_PRIVATE int sqlite3ReferencesSrcList(Parse *pParse, Expr *pExpr, SrcList *pSrcList){ Walker w; struct RefSrcList x; memset(&w, 0, sizeof(w)); memset(&x, 0, sizeof(x)); w.xExprCallback = exprRefToSrcList; w.xSelectCallback = selectRefEnter; w.xSelectCallback2 = selectRefLeave; w.u.pRefSrcList = &x; x.db = pParse->db; x.pRef = pSrcList; assert( pExpr->op==TK_AGG_FUNCTION ); assert( ExprUseXList(pExpr) ); sqlite3WalkExprList(&w, pExpr->x.pList); #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3WalkExpr(&w, pExpr->y.pWin->pFilter); } #endif sqlite3DbFree(pParse->db, x.aiExclude); if( w.eCode & 0x01 ){ return 1; }else if( w.eCode ){ return 0; }else{ return -1; } } /* ** This is a Walker expression node callback. ** ** For Expr nodes that contain pAggInfo pointers, make sure the AggInfo ** object that is referenced does not refer directly to the Expr. If ** it does, make a copy. This is done because the pExpr argument is ** subject to change. ** ** The copy is stored on pParse->pConstExpr with a register number of 0. ** This will cause the expression to be deleted automatically when the ** Parse object is destroyed, but the zero register number means that it ** will not generate any code in the preamble. */ static int agginfoPersistExprCb(Walker *pWalker, Expr *pExpr){ if( ALWAYS(!ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced)) && pExpr->pAggInfo!=0 ){ AggInfo *pAggInfo = pExpr->pAggInfo; int iAgg = pExpr->iAgg; Parse *pParse = pWalker->pParse; sqlite3 *db = pParse->db; assert( pExpr->op==TK_AGG_COLUMN || pExpr->op==TK_AGG_FUNCTION ); if( pExpr->op==TK_AGG_COLUMN ){ assert( iAgg>=0 && iAggnColumn ); if( pAggInfo->aCol[iAgg].pCExpr==pExpr ){ pExpr = sqlite3ExprDup(db, pExpr, 0); if( pExpr ){ pAggInfo->aCol[iAgg].pCExpr = pExpr; sqlite3ExprDeferredDelete(pParse, pExpr); } } }else{ assert( iAgg>=0 && iAggnFunc ); if( pAggInfo->aFunc[iAgg].pFExpr==pExpr ){ pExpr = sqlite3ExprDup(db, pExpr, 0); if( pExpr ){ pAggInfo->aFunc[iAgg].pFExpr = pExpr; sqlite3ExprDeferredDelete(pParse, pExpr); } } } } return WRC_Continue; } /* ** Initialize a Walker object so that will persist AggInfo entries referenced ** by the tree that is walked. */ SQLITE_PRIVATE void sqlite3AggInfoPersistWalkerInit(Walker *pWalker, Parse *pParse){ memset(pWalker, 0, sizeof(*pWalker)); pWalker->pParse = pParse; pWalker->xExprCallback = agginfoPersistExprCb; pWalker->xSelectCallback = sqlite3SelectWalkNoop; } /* ** Add a new element to the pAggInfo->aCol[] array. Return the index of ** the new element. Return a negative number if malloc fails. */ static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ int i; pInfo->aCol = sqlite3ArrayAllocate( db, pInfo->aCol, sizeof(pInfo->aCol[0]), &pInfo->nColumn, &i ); return i; } /* ** Add a new element to the pAggInfo->aFunc[] array. Return the index of ** the new element. Return a negative number if malloc fails. */ static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ int i; pInfo->aFunc = sqlite3ArrayAllocate( db, pInfo->aFunc, sizeof(pInfo->aFunc[0]), &pInfo->nFunc, &i ); return i; } /* ** This is the xExprCallback for a tree walker. It is used to ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates ** for additional information. */ static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ int i; NameContext *pNC = pWalker->u.pNC; Parse *pParse = pNC->pParse; SrcList *pSrcList = pNC->pSrcList; AggInfo *pAggInfo = pNC->uNC.pAggInfo; assert( pNC->ncFlags & NC_UAggInfo ); switch( pExpr->op ){ case TK_AGG_COLUMN: case TK_COLUMN: { testcase( pExpr->op==TK_AGG_COLUMN ); testcase( pExpr->op==TK_COLUMN ); /* Check to see if the column is in one of the tables in the FROM ** clause of the aggregate query */ if( ALWAYS(pSrcList!=0) ){ SrcItem *pItem = pSrcList->a; for(i=0; inSrc; i++, pItem++){ struct AggInfo_col *pCol; assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); if( pExpr->iTable==pItem->iCursor ){ /* If we reach this point, it means that pExpr refers to a table ** that is in the FROM clause of the aggregate query. ** ** Make an entry for the column in pAggInfo->aCol[] if there ** is not an entry there already. */ int k; pCol = pAggInfo->aCol; for(k=0; knColumn; k++, pCol++){ if( pCol->iTable==pExpr->iTable && pCol->iColumn==pExpr->iColumn ){ break; } } if( (k>=pAggInfo->nColumn) && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 ){ pCol = &pAggInfo->aCol[k]; assert( ExprUseYTab(pExpr) ); pCol->pTab = pExpr->y.pTab; pCol->iTable = pExpr->iTable; pCol->iColumn = pExpr->iColumn; pCol->iMem = ++pParse->nMem; pCol->iSorterColumn = -1; pCol->pCExpr = pExpr; if( pAggInfo->pGroupBy ){ int j, n; ExprList *pGB = pAggInfo->pGroupBy; struct ExprList_item *pTerm = pGB->a; n = pGB->nExpr; for(j=0; jpExpr; if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && pE->iColumn==pExpr->iColumn ){ pCol->iSorterColumn = j; break; } } } if( pCol->iSorterColumn<0 ){ pCol->iSorterColumn = pAggInfo->nSortingColumn++; } } /* There is now an entry for pExpr in pAggInfo->aCol[] (either ** because it was there before or because we just created it). ** Convert the pExpr to be a TK_AGG_COLUMN referring to that ** pAggInfo->aCol[] entry. */ ExprSetVVAProperty(pExpr, EP_NoReduce); pExpr->pAggInfo = pAggInfo; pExpr->op = TK_AGG_COLUMN; pExpr->iAgg = (i16)k; break; } /* endif pExpr->iTable==pItem->iCursor */ } /* end loop over pSrcList */ } return WRC_Prune; } case TK_AGG_FUNCTION: { if( (pNC->ncFlags & NC_InAggFunc)==0 && pWalker->walkerDepth==pExpr->op2 ){ /* Check to see if pExpr is a duplicate of another aggregate ** function that is already in the pAggInfo structure */ struct AggInfo_func *pItem = pAggInfo->aFunc; for(i=0; inFunc; i++, pItem++){ if( pItem->pFExpr==pExpr ) break; if( sqlite3ExprCompare(0, pItem->pFExpr, pExpr, -1)==0 ){ break; } } if( i>=pAggInfo->nFunc ){ /* pExpr is original. Make a new entry in pAggInfo->aFunc[] */ u8 enc = ENC(pParse->db); i = addAggInfoFunc(pParse->db, pAggInfo); if( i>=0 ){ assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); pItem = &pAggInfo->aFunc[i]; pItem->pFExpr = pExpr; pItem->iMem = ++pParse->nMem; assert( ExprUseUToken(pExpr) ); pItem->pFunc = sqlite3FindFunction(pParse->db, pExpr->u.zToken, pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); if( pExpr->flags & EP_Distinct ){ pItem->iDistinct = pParse->nTab++; }else{ pItem->iDistinct = -1; } } } /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry */ assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); ExprSetVVAProperty(pExpr, EP_NoReduce); pExpr->iAgg = (i16)i; pExpr->pAggInfo = pAggInfo; return WRC_Prune; }else{ return WRC_Continue; } } } return WRC_Continue; } /* ** Analyze the pExpr expression looking for aggregate functions and ** for variables that need to be added to AggInfo object that pNC->pAggInfo ** points to. Additional entries are made on the AggInfo object as ** necessary. ** ** This routine should only be called after the expression has been ** analyzed by sqlite3ResolveExprNames(). */ SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ Walker w; w.xExprCallback = analyzeAggregate; w.xSelectCallback = sqlite3WalkerDepthIncrease; w.xSelectCallback2 = sqlite3WalkerDepthDecrease; w.walkerDepth = 0; w.u.pNC = pNC; w.pParse = 0; assert( pNC->pSrcList!=0 ); sqlite3WalkExpr(&w, pExpr); } /* ** Call sqlite3ExprAnalyzeAggregates() for every expression in an ** expression list. Return the number of errors. ** ** If an error is found, the analysis is cut short. */ SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ struct ExprList_item *pItem; int i; if( pList ){ for(pItem=pList->a, i=0; inExpr; i++, pItem++){ sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); } } } /* ** Allocate a single new register for use to hold some intermediate result. */ SQLITE_PRIVATE int sqlite3GetTempReg(Parse *pParse){ if( pParse->nTempReg==0 ){ return ++pParse->nMem; } return pParse->aTempReg[--pParse->nTempReg]; } /* ** Deallocate a register, making available for reuse for some other ** purpose. */ SQLITE_PRIVATE void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ if( iReg ){ sqlite3VdbeReleaseRegisters(pParse, iReg, 1, 0, 0); if( pParse->nTempRegaTempReg) ){ pParse->aTempReg[pParse->nTempReg++] = iReg; } } } /* ** Allocate or deallocate a block of nReg consecutive registers. */ SQLITE_PRIVATE int sqlite3GetTempRange(Parse *pParse, int nReg){ int i, n; if( nReg==1 ) return sqlite3GetTempReg(pParse); i = pParse->iRangeReg; n = pParse->nRangeReg; if( nReg<=n ){ pParse->iRangeReg += nReg; pParse->nRangeReg -= nReg; }else{ i = pParse->nMem+1; pParse->nMem += nReg; } return i; } SQLITE_PRIVATE void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ if( nReg==1 ){ sqlite3ReleaseTempReg(pParse, iReg); return; } sqlite3VdbeReleaseRegisters(pParse, iReg, nReg, 0, 0); if( nReg>pParse->nRangeReg ){ pParse->nRangeReg = nReg; pParse->iRangeReg = iReg; } } /* ** Mark all temporary registers as being unavailable for reuse. ** ** Always invoke this procedure after coding a subroutine or co-routine ** that might be invoked from other parts of the code, to ensure that ** the sub/co-routine does not use registers in common with the code that ** invokes the sub/co-routine. */ SQLITE_PRIVATE void sqlite3ClearTempRegCache(Parse *pParse){ pParse->nTempReg = 0; pParse->nRangeReg = 0; } /* ** Validate that no temporary register falls within the range of ** iFirst..iLast, inclusive. This routine is only call from within assert() ** statements. */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NoTempsInRange(Parse *pParse, int iFirst, int iLast){ int i; if( pParse->nRangeReg>0 && pParse->iRangeReg+pParse->nRangeReg > iFirst && pParse->iRangeReg <= iLast ){ return 0; } for(i=0; inTempReg; i++){ if( pParse->aTempReg[i]>=iFirst && pParse->aTempReg[i]<=iLast ){ return 0; } } return 1; } #endif /* SQLITE_DEBUG */ /************** End of expr.c ************************************************/ /************** Begin file alter.c *******************************************/ /* ** 2005 February 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that used to generate VDBE code ** that implements the ALTER TABLE command. */ /* #include "sqliteInt.h" */ /* ** The code in this file only exists if we are not omitting the ** ALTER TABLE logic from the build. */ #ifndef SQLITE_OMIT_ALTERTABLE /* ** Parameter zName is the name of a table that is about to be altered ** (either with ALTER TABLE ... RENAME TO or ALTER TABLE ... ADD COLUMN). ** If the table is a system table, this function leaves an error message ** in pParse->zErr (system tables may not be altered) and returns non-zero. ** ** Or, if zName is not a system table, zero is returned. */ static int isAlterableTable(Parse *pParse, Table *pTab){ if( 0==sqlite3StrNICmp(pTab->zName, "sqlite_", 7) #ifndef SQLITE_OMIT_VIRTUALTABLE || (pTab->tabFlags & TF_Eponymous)!=0 || ( (pTab->tabFlags & TF_Shadow)!=0 && sqlite3ReadOnlyShadowTables(pParse->db) ) #endif ){ sqlite3ErrorMsg(pParse, "table %s may not be altered", pTab->zName); return 1; } return 0; } /* ** Generate code to verify that the schemas of database zDb and, if ** bTemp is not true, database "temp", can still be parsed. This is ** called at the end of the generation of an ALTER TABLE ... RENAME ... ** statement to ensure that the operation has not rendered any schema ** objects unusable. */ static void renameTestSchema( Parse *pParse, /* Parse context */ const char *zDb, /* Name of db to verify schema of */ int bTemp, /* True if this is the temp db */ const char *zWhen, /* "when" part of error message */ int bNoDQS /* Do not allow DQS in the schema */ ){ pParse->colNamesSet = 1; sqlite3NestedParse(pParse, "SELECT 1 " "FROM \"%w\"." LEGACY_SCHEMA_TABLE " " "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" " AND sql NOT LIKE 'create virtual%%'" " AND sqlite_rename_test(%Q, sql, type, name, %d, %Q, %d)=NULL ", zDb, zDb, bTemp, zWhen, bNoDQS ); if( bTemp==0 ){ sqlite3NestedParse(pParse, "SELECT 1 " "FROM temp." LEGACY_SCHEMA_TABLE " " "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" " AND sql NOT LIKE 'create virtual%%'" " AND sqlite_rename_test(%Q, sql, type, name, 1, %Q, %d)=NULL ", zDb, zWhen, bNoDQS ); } } /* ** Generate VM code to replace any double-quoted strings (but not double-quoted ** identifiers) within the "sql" column of the sqlite_schema table in ** database zDb with their single-quoted equivalents. If argument bTemp is ** not true, similarly update all SQL statements in the sqlite_schema table ** of the temp db. */ static void renameFixQuotes(Parse *pParse, const char *zDb, int bTemp){ sqlite3NestedParse(pParse, "UPDATE \"%w\"." LEGACY_SCHEMA_TABLE " SET sql = sqlite_rename_quotefix(%Q, sql)" "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" " AND sql NOT LIKE 'create virtual%%'" , zDb, zDb ); if( bTemp==0 ){ sqlite3NestedParse(pParse, "UPDATE temp." LEGACY_SCHEMA_TABLE " SET sql = sqlite_rename_quotefix('temp', sql)" "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" " AND sql NOT LIKE 'create virtual%%'" ); } } /* ** Generate code to reload the schema for database iDb. And, if iDb!=1, for ** the temp database as well. */ static void renameReloadSchema(Parse *pParse, int iDb, u16 p5){ Vdbe *v = pParse->pVdbe; if( v ){ sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddParseSchemaOp(pParse->pVdbe, iDb, 0, p5); if( iDb!=1 ) sqlite3VdbeAddParseSchemaOp(pParse->pVdbe, 1, 0, p5); } } /* ** Generate code to implement the "ALTER TABLE xxx RENAME TO yyy" ** command. */ SQLITE_PRIVATE void sqlite3AlterRenameTable( Parse *pParse, /* Parser context. */ SrcList *pSrc, /* The table to rename. */ Token *pName /* The new table name. */ ){ int iDb; /* Database that contains the table */ char *zDb; /* Name of database iDb */ Table *pTab; /* Table being renamed */ char *zName = 0; /* NULL-terminated version of pName */ sqlite3 *db = pParse->db; /* Database connection */ int nTabName; /* Number of UTF-8 characters in zTabName */ const char *zTabName; /* Original name of the table */ Vdbe *v; VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ if( NEVER(db->mallocFailed) ) goto exit_rename_table; assert( pSrc->nSrc==1 ); assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_rename_table; iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); zDb = db->aDb[iDb].zDbSName; /* Get a NULL terminated version of the new table name. */ zName = sqlite3NameFromToken(db, pName); if( !zName ) goto exit_rename_table; /* Check that a table or index named 'zName' does not already exist ** in database iDb. If so, this is an error. */ if( sqlite3FindTable(db, zName, zDb) || sqlite3FindIndex(db, zName, zDb) || sqlite3IsShadowTableOf(db, pTab, zName) ){ sqlite3ErrorMsg(pParse, "there is already another table or index with this name: %s", zName); goto exit_rename_table; } /* Make sure it is not a system table being altered, or a reserved name ** that the table is being renamed to. */ if( SQLITE_OK!=isAlterableTable(pParse, pTab) ){ goto exit_rename_table; } if( SQLITE_OK!=sqlite3CheckObjectName(pParse,zName,"table",zName) ){ goto exit_rename_table; } #ifndef SQLITE_OMIT_VIEW if( IsView(pTab) ){ sqlite3ErrorMsg(pParse, "view %s may not be altered", pTab->zName); goto exit_rename_table; } #endif #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ goto exit_rename_table; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto exit_rename_table; } if( IsVirtual(pTab) ){ pVTab = sqlite3GetVTable(db, pTab); if( pVTab->pVtab->pModule->xRename==0 ){ pVTab = 0; } } #endif /* Begin a transaction for database iDb. Then modify the schema cookie ** (since the ALTER TABLE modifies the schema). Call sqlite3MayAbort(), ** as the scalar functions (e.g. sqlite_rename_table()) invoked by the ** nested SQL may raise an exception. */ v = sqlite3GetVdbe(pParse); if( v==0 ){ goto exit_rename_table; } sqlite3MayAbort(pParse); /* figure out how many UTF-8 characters are in zName */ zTabName = pTab->zName; nTabName = sqlite3Utf8CharLen(zTabName, -1); /* Rewrite all CREATE TABLE, INDEX, TRIGGER or VIEW statements in ** the schema to use the new table name. */ sqlite3NestedParse(pParse, "UPDATE \"%w\"." LEGACY_SCHEMA_TABLE " SET " "sql = sqlite_rename_table(%Q, type, name, sql, %Q, %Q, %d) " "WHERE (type!='index' OR tbl_name=%Q COLLATE nocase)" "AND name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" , zDb, zDb, zTabName, zName, (iDb==1), zTabName ); /* Update the tbl_name and name columns of the sqlite_schema table ** as required. */ sqlite3NestedParse(pParse, "UPDATE %Q." LEGACY_SCHEMA_TABLE " SET " "tbl_name = %Q, " "name = CASE " "WHEN type='table' THEN %Q " "WHEN name LIKE 'sqliteX_autoindex%%' ESCAPE 'X' " " AND type='index' THEN " "'sqlite_autoindex_' || %Q || substr(name,%d+18) " "ELSE name END " "WHERE tbl_name=%Q COLLATE nocase AND " "(type='table' OR type='index' OR type='trigger');", zDb, zName, zName, zName, nTabName, zTabName ); #ifndef SQLITE_OMIT_AUTOINCREMENT /* If the sqlite_sequence table exists in this database, then update ** it with the new table name. */ if( sqlite3FindTable(db, "sqlite_sequence", zDb) ){ sqlite3NestedParse(pParse, "UPDATE \"%w\".sqlite_sequence set name = %Q WHERE name = %Q", zDb, zName, pTab->zName); } #endif /* If the table being renamed is not itself part of the temp database, ** edit view and trigger definitions within the temp database ** as required. */ if( iDb!=1 ){ sqlite3NestedParse(pParse, "UPDATE sqlite_temp_schema SET " "sql = sqlite_rename_table(%Q, type, name, sql, %Q, %Q, 1), " "tbl_name = " "CASE WHEN tbl_name=%Q COLLATE nocase AND " " sqlite_rename_test(%Q, sql, type, name, 1, 'after rename', 0) " "THEN %Q ELSE tbl_name END " "WHERE type IN ('view', 'trigger')" , zDb, zTabName, zName, zTabName, zDb, zName); } /* If this is a virtual table, invoke the xRename() function if ** one is defined. The xRename() callback will modify the names ** of any resources used by the v-table implementation (including other ** SQLite tables) that are identified by the name of the virtual table. */ #ifndef SQLITE_OMIT_VIRTUALTABLE if( pVTab ){ int i = ++pParse->nMem; sqlite3VdbeLoadString(v, i, zName); sqlite3VdbeAddOp4(v, OP_VRename, i, 0, 0,(const char*)pVTab, P4_VTAB); } #endif renameReloadSchema(pParse, iDb, INITFLAG_AlterRename); renameTestSchema(pParse, zDb, iDb==1, "after rename", 0); exit_rename_table: sqlite3SrcListDelete(db, pSrc); sqlite3DbFree(db, zName); } /* ** Write code that will raise an error if the table described by ** zDb and zTab is not empty. */ static void sqlite3ErrorIfNotEmpty( Parse *pParse, /* Parsing context */ const char *zDb, /* Schema holding the table */ const char *zTab, /* Table to check for empty */ const char *zErr /* Error message text */ ){ sqlite3NestedParse(pParse, "SELECT raise(ABORT,%Q) FROM \"%w\".\"%w\"", zErr, zDb, zTab ); } /* ** This function is called after an "ALTER TABLE ... ADD" statement ** has been parsed. Argument pColDef contains the text of the new ** column definition. ** ** The Table structure pParse->pNewTable was extended to include ** the new column during parsing. */ SQLITE_PRIVATE void sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef){ Table *pNew; /* Copy of pParse->pNewTable */ Table *pTab; /* Table being altered */ int iDb; /* Database number */ const char *zDb; /* Database name */ const char *zTab; /* Table name */ char *zCol; /* Null-terminated column definition */ Column *pCol; /* The new column */ Expr *pDflt; /* Default value for the new column */ sqlite3 *db; /* The database connection; */ Vdbe *v; /* The prepared statement under construction */ int r1; /* Temporary registers */ db = pParse->db; assert( db->pParse==pParse ); if( pParse->nErr ) return; assert( db->mallocFailed==0 ); pNew = pParse->pNewTable; assert( pNew ); assert( sqlite3BtreeHoldsAllMutexes(db) ); iDb = sqlite3SchemaToIndex(db, pNew->pSchema); zDb = db->aDb[iDb].zDbSName; zTab = &pNew->zName[16]; /* Skip the "sqlite_altertab_" prefix on the name */ pCol = &pNew->aCol[pNew->nCol-1]; pDflt = sqlite3ColumnExpr(pNew, pCol); pTab = sqlite3FindTable(db, zTab, zDb); assert( pTab ); #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ return; } #endif /* Check that the new column is not specified as PRIMARY KEY or UNIQUE. ** If there is a NOT NULL constraint, then the default value for the ** column must not be NULL. */ if( pCol->colFlags & COLFLAG_PRIMKEY ){ sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column"); return; } if( pNew->pIndex ){ sqlite3ErrorMsg(pParse, "Cannot add a UNIQUE column"); return; } if( (pCol->colFlags & COLFLAG_GENERATED)==0 ){ /* If the default value for the new column was specified with a ** literal NULL, then set pDflt to 0. This simplifies checking ** for an SQL NULL default below. */ assert( pDflt==0 || pDflt->op==TK_SPAN ); if( pDflt && pDflt->pLeft->op==TK_NULL ){ pDflt = 0; } assert( IsOrdinaryTable(pNew) ); if( (db->flags&SQLITE_ForeignKeys) && pNew->u.tab.pFKey && pDflt ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "Cannot add a REFERENCES column with non-NULL default value"); } if( pCol->notNull && !pDflt ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "Cannot add a NOT NULL column with default value NULL"); } /* Ensure the default expression is something that sqlite3ValueFromExpr() ** can handle (i.e. not CURRENT_TIME etc.) */ if( pDflt ){ sqlite3_value *pVal = 0; int rc; rc = sqlite3ValueFromExpr(db, pDflt, SQLITE_UTF8, SQLITE_AFF_BLOB, &pVal); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); if( rc!=SQLITE_OK ){ assert( db->mallocFailed == 1 ); return; } if( !pVal ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "Cannot add a column with non-constant default"); } sqlite3ValueFree(pVal); } }else if( pCol->colFlags & COLFLAG_STORED ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "cannot add a STORED column"); } /* Modify the CREATE TABLE statement. */ zCol = sqlite3DbStrNDup(db, (char*)pColDef->z, pColDef->n); if( zCol ){ char *zEnd = &zCol[pColDef->n-1]; while( zEnd>zCol && (*zEnd==';' || sqlite3Isspace(*zEnd)) ){ *zEnd-- = '\0'; } /* substr() operations on characters, but addColOffset is in bytes. So we ** have to use printf() to translate between these units: */ assert( IsOrdinaryTable(pTab) ); assert( IsOrdinaryTable(pNew) ); sqlite3NestedParse(pParse, "UPDATE \"%w\"." LEGACY_SCHEMA_TABLE " SET " "sql = printf('%%.%ds, ',sql) || %Q" " || substr(sql,1+length(printf('%%.%ds',sql))) " "WHERE type = 'table' AND name = %Q", zDb, pNew->u.tab.addColOffset, zCol, pNew->u.tab.addColOffset, zTab ); sqlite3DbFree(db, zCol); } v = sqlite3GetVdbe(pParse); if( v ){ /* Make sure the schema version is at least 3. But do not upgrade ** from less than 3 to 4, as that will corrupt any preexisting DESC ** index. */ r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, r1, BTREE_FILE_FORMAT); sqlite3VdbeUsesBtree(v, iDb); sqlite3VdbeAddOp2(v, OP_AddImm, r1, -2); sqlite3VdbeAddOp2(v, OP_IfPos, r1, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_FILE_FORMAT, 3); sqlite3ReleaseTempReg(pParse, r1); /* Reload the table definition */ renameReloadSchema(pParse, iDb, INITFLAG_AlterAdd); /* Verify that constraints are still satisfied */ if( pNew->pCheck!=0 || (pCol->notNull && (pCol->colFlags & COLFLAG_GENERATED)!=0) ){ sqlite3NestedParse(pParse, "SELECT CASE WHEN quick_check GLOB 'CHECK*'" " THEN raise(ABORT,'CHECK constraint failed')" " ELSE raise(ABORT,'NOT NULL constraint failed')" " END" " FROM pragma_quick_check(%Q,%Q)" " WHERE quick_check GLOB 'CHECK*' OR quick_check GLOB 'NULL*'", zTab, zDb ); } } } /* ** This function is called by the parser after the table-name in ** an "ALTER TABLE ADD" statement is parsed. Argument ** pSrc is the full-name of the table being altered. ** ** This routine makes a (partial) copy of the Table structure ** for the table being altered and sets Parse.pNewTable to point ** to it. Routines called by the parser as the column definition ** is parsed (i.e. sqlite3AddColumn()) add the new Column data to ** the copy. The copy of the Table structure is deleted by tokenize.c ** after parsing is finished. ** ** Routine sqlite3AlterFinishAddColumn() will be called to complete ** coding the "ALTER TABLE ... ADD" statement. */ SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){ Table *pNew; Table *pTab; int iDb; int i; int nAlloc; sqlite3 *db = pParse->db; /* Look up the table being altered. */ assert( pParse->pNewTable==0 ); assert( sqlite3BtreeHoldsAllMutexes(db) ); if( db->mallocFailed ) goto exit_begin_add_column; pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_begin_add_column; #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "virtual tables may not be altered"); goto exit_begin_add_column; } #endif /* Make sure this is not an attempt to ALTER a view. */ if( IsView(pTab) ){ sqlite3ErrorMsg(pParse, "Cannot add a column to a view"); goto exit_begin_add_column; } if( SQLITE_OK!=isAlterableTable(pParse, pTab) ){ goto exit_begin_add_column; } sqlite3MayAbort(pParse); assert( IsOrdinaryTable(pTab) ); assert( pTab->u.tab.addColOffset>0 ); iDb = sqlite3SchemaToIndex(db, pTab->pSchema); /* Put a copy of the Table struct in Parse.pNewTable for the ** sqlite3AddColumn() function and friends to modify. But modify ** the name by adding an "sqlite_altertab_" prefix. By adding this ** prefix, we insure that the name will not collide with an existing ** table because user table are not allowed to have the "sqlite_" ** prefix on their name. */ pNew = (Table*)sqlite3DbMallocZero(db, sizeof(Table)); if( !pNew ) goto exit_begin_add_column; pParse->pNewTable = pNew; pNew->nTabRef = 1; pNew->nCol = pTab->nCol; assert( pNew->nCol>0 ); nAlloc = (((pNew->nCol-1)/8)*8)+8; assert( nAlloc>=pNew->nCol && nAlloc%8==0 && nAlloc-pNew->nCol<8 ); pNew->aCol = (Column*)sqlite3DbMallocZero(db, sizeof(Column)*nAlloc); pNew->zName = sqlite3MPrintf(db, "sqlite_altertab_%s", pTab->zName); if( !pNew->aCol || !pNew->zName ){ assert( db->mallocFailed ); goto exit_begin_add_column; } memcpy(pNew->aCol, pTab->aCol, sizeof(Column)*pNew->nCol); for(i=0; inCol; i++){ Column *pCol = &pNew->aCol[i]; pCol->zCnName = sqlite3DbStrDup(db, pCol->zCnName); pCol->hName = sqlite3StrIHash(pCol->zCnName); } assert( IsOrdinaryTable(pNew) ); pNew->u.tab.pDfltList = sqlite3ExprListDup(db, pTab->u.tab.pDfltList, 0); pNew->pSchema = db->aDb[iDb].pSchema; pNew->u.tab.addColOffset = pTab->u.tab.addColOffset; pNew->nTabRef = 1; exit_begin_add_column: sqlite3SrcListDelete(db, pSrc); return; } /* ** Parameter pTab is the subject of an ALTER TABLE ... RENAME COLUMN ** command. This function checks if the table is a view or virtual ** table (columns of views or virtual tables may not be renamed). If so, ** it loads an error message into pParse and returns non-zero. ** ** Or, if pTab is not a view or virtual table, zero is returned. */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) static int isRealTable(Parse *pParse, Table *pTab, int bDrop){ const char *zType = 0; #ifndef SQLITE_OMIT_VIEW if( IsView(pTab) ){ zType = "view"; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ zType = "virtual table"; } #endif if( zType ){ sqlite3ErrorMsg(pParse, "cannot %s %s \"%s\"", (bDrop ? "drop column from" : "rename columns of"), zType, pTab->zName ); return 1; } return 0; } #else /* !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) */ # define isRealTable(x,y,z) (0) #endif /* ** Handles the following parser reduction: ** ** cmd ::= ALTER TABLE pSrc RENAME COLUMN pOld TO pNew */ SQLITE_PRIVATE void sqlite3AlterRenameColumn( Parse *pParse, /* Parsing context */ SrcList *pSrc, /* Table being altered. pSrc->nSrc==1 */ Token *pOld, /* Name of column being changed */ Token *pNew /* New column name */ ){ sqlite3 *db = pParse->db; /* Database connection */ Table *pTab; /* Table being updated */ int iCol; /* Index of column being renamed */ char *zOld = 0; /* Old column name */ char *zNew = 0; /* New column name */ const char *zDb; /* Name of schema containing the table */ int iSchema; /* Index of the schema */ int bQuote; /* True to quote the new name */ /* Locate the table to be altered */ pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_rename_column; /* Cannot alter a system table */ if( SQLITE_OK!=isAlterableTable(pParse, pTab) ) goto exit_rename_column; if( SQLITE_OK!=isRealTable(pParse, pTab, 0) ) goto exit_rename_column; /* Which schema holds the table to be altered */ iSchema = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iSchema>=0 ); zDb = db->aDb[iSchema].zDbSName; #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ goto exit_rename_column; } #endif /* Make sure the old name really is a column name in the table to be ** altered. Set iCol to be the index of the column being renamed */ zOld = sqlite3NameFromToken(db, pOld); if( !zOld ) goto exit_rename_column; for(iCol=0; iColnCol; iCol++){ if( 0==sqlite3StrICmp(pTab->aCol[iCol].zCnName, zOld) ) break; } if( iCol==pTab->nCol ){ sqlite3ErrorMsg(pParse, "no such column: \"%T\"", pOld); goto exit_rename_column; } /* Ensure the schema contains no double-quoted strings */ renameTestSchema(pParse, zDb, iSchema==1, "", 0); renameFixQuotes(pParse, zDb, iSchema==1); /* Do the rename operation using a recursive UPDATE statement that ** uses the sqlite_rename_column() SQL function to compute the new ** CREATE statement text for the sqlite_schema table. */ sqlite3MayAbort(pParse); zNew = sqlite3NameFromToken(db, pNew); if( !zNew ) goto exit_rename_column; assert( pNew->n>0 ); bQuote = sqlite3Isquote(pNew->z[0]); sqlite3NestedParse(pParse, "UPDATE \"%w\"." LEGACY_SCHEMA_TABLE " SET " "sql = sqlite_rename_column(sql, type, name, %Q, %Q, %d, %Q, %d, %d) " "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X' " " AND (type != 'index' OR tbl_name = %Q)", zDb, zDb, pTab->zName, iCol, zNew, bQuote, iSchema==1, pTab->zName ); sqlite3NestedParse(pParse, "UPDATE temp." LEGACY_SCHEMA_TABLE " SET " "sql = sqlite_rename_column(sql, type, name, %Q, %Q, %d, %Q, %d, 1) " "WHERE type IN ('trigger', 'view')", zDb, pTab->zName, iCol, zNew, bQuote ); /* Drop and reload the database schema. */ renameReloadSchema(pParse, iSchema, INITFLAG_AlterRename); renameTestSchema(pParse, zDb, iSchema==1, "after rename", 1); exit_rename_column: sqlite3SrcListDelete(db, pSrc); sqlite3DbFree(db, zOld); sqlite3DbFree(db, zNew); return; } /* ** Each RenameToken object maps an element of the parse tree into ** the token that generated that element. The parse tree element ** might be one of: ** ** * A pointer to an Expr that represents an ID ** * The name of a table column in Column.zName ** ** A list of RenameToken objects can be constructed during parsing. ** Each new object is created by sqlite3RenameTokenMap(). ** As the parse tree is transformed, the sqlite3RenameTokenRemap() ** routine is used to keep the mapping current. ** ** After the parse finishes, renameTokenFind() routine can be used ** to look up the actual token value that created some element in ** the parse tree. */ struct RenameToken { const void *p; /* Parse tree element created by token t */ Token t; /* The token that created parse tree element p */ RenameToken *pNext; /* Next is a list of all RenameToken objects */ }; /* ** The context of an ALTER TABLE RENAME COLUMN operation that gets passed ** down into the Walker. */ typedef struct RenameCtx RenameCtx; struct RenameCtx { RenameToken *pList; /* List of tokens to overwrite */ int nList; /* Number of tokens in pList */ int iCol; /* Index of column being renamed */ Table *pTab; /* Table being ALTERed */ const char *zOld; /* Old column name */ }; #ifdef SQLITE_DEBUG /* ** This function is only for debugging. It performs two tasks: ** ** 1. Checks that pointer pPtr does not already appear in the ** rename-token list. ** ** 2. Dereferences each pointer in the rename-token list. ** ** The second is most effective when debugging under valgrind or ** address-sanitizer or similar. If any of these pointers no longer ** point to valid objects, an exception is raised by the memory-checking ** tool. ** ** The point of this is to prevent comparisons of invalid pointer values. ** Even though this always seems to work, it is undefined according to the ** C standard. Example of undefined comparison: ** ** sqlite3_free(x); ** if( x==y ) ... ** ** Technically, as x no longer points into a valid object or to the byte ** following a valid object, it may not be used in comparison operations. */ static void renameTokenCheckAll(Parse *pParse, const void *pPtr){ assert( pParse==pParse->db->pParse ); assert( pParse->db->mallocFailed==0 || pParse->nErr!=0 ); if( pParse->nErr==0 ){ const RenameToken *p; u8 i = 0; for(p=pParse->pRename; p; p=p->pNext){ if( p->p ){ assert( p->p!=pPtr ); i += *(u8*)(p->p); } } } } #else # define renameTokenCheckAll(x,y) #endif /* ** Remember that the parser tree element pPtr was created using ** the token pToken. ** ** In other words, construct a new RenameToken object and add it ** to the list of RenameToken objects currently being built up ** in pParse->pRename. ** ** The pPtr argument is returned so that this routine can be used ** with tail recursion in tokenExpr() routine, for a small performance ** improvement. */ SQLITE_PRIVATE const void *sqlite3RenameTokenMap( Parse *pParse, const void *pPtr, const Token *pToken ){ RenameToken *pNew; assert( pPtr || pParse->db->mallocFailed ); renameTokenCheckAll(pParse, pPtr); if( ALWAYS(pParse->eParseMode!=PARSE_MODE_UNMAP) ){ pNew = sqlite3DbMallocZero(pParse->db, sizeof(RenameToken)); if( pNew ){ pNew->p = pPtr; pNew->t = *pToken; pNew->pNext = pParse->pRename; pParse->pRename = pNew; } } return pPtr; } /* ** It is assumed that there is already a RenameToken object associated ** with parse tree element pFrom. This function remaps the associated token ** to parse tree element pTo. */ SQLITE_PRIVATE void sqlite3RenameTokenRemap(Parse *pParse, const void *pTo, const void *pFrom){ RenameToken *p; renameTokenCheckAll(pParse, pTo); for(p=pParse->pRename; p; p=p->pNext){ if( p->p==pFrom ){ p->p = pTo; break; } } } /* ** Walker callback used by sqlite3RenameExprUnmap(). */ static int renameUnmapExprCb(Walker *pWalker, Expr *pExpr){ Parse *pParse = pWalker->pParse; sqlite3RenameTokenRemap(pParse, 0, (const void*)pExpr); if( ExprUseYTab(pExpr) ){ sqlite3RenameTokenRemap(pParse, 0, (const void*)&pExpr->y.pTab); } return WRC_Continue; } /* ** Iterate through the Select objects that are part of WITH clauses attached ** to select statement pSelect. */ static void renameWalkWith(Walker *pWalker, Select *pSelect){ With *pWith = pSelect->pWith; if( pWith ){ Parse *pParse = pWalker->pParse; int i; With *pCopy = 0; assert( pWith->nCte>0 ); if( (pWith->a[0].pSelect->selFlags & SF_Expanded)==0 ){ /* Push a copy of the With object onto the with-stack. We use a copy ** here as the original will be expanded and resolved (flags SF_Expanded ** and SF_Resolved) below. And the parser code that uses the with-stack ** fails if the Select objects on it have already been expanded and ** resolved. */ pCopy = sqlite3WithDup(pParse->db, pWith); pCopy = sqlite3WithPush(pParse, pCopy, 1); } for(i=0; inCte; i++){ Select *p = pWith->a[i].pSelect; NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; if( pCopy ) sqlite3SelectPrep(sNC.pParse, p, &sNC); if( sNC.pParse->db->mallocFailed ) return; sqlite3WalkSelect(pWalker, p); sqlite3RenameExprlistUnmap(pParse, pWith->a[i].pCols); } if( pCopy && pParse->pWith==pCopy ){ pParse->pWith = pCopy->pOuter; } } } /* ** Unmap all tokens in the IdList object passed as the second argument. */ static void unmapColumnIdlistNames( Parse *pParse, const IdList *pIdList ){ if( pIdList ){ int ii; for(ii=0; iinId; ii++){ sqlite3RenameTokenRemap(pParse, 0, (const void*)pIdList->a[ii].zName); } } } /* ** Walker callback used by sqlite3RenameExprUnmap(). */ static int renameUnmapSelectCb(Walker *pWalker, Select *p){ Parse *pParse = pWalker->pParse; int i; if( pParse->nErr ) return WRC_Abort; testcase( p->selFlags & SF_View ); testcase( p->selFlags & SF_CopyCte ); if( p->selFlags & (SF_View|SF_CopyCte) ){ return WRC_Prune; } if( ALWAYS(p->pEList) ){ ExprList *pList = p->pEList; for(i=0; inExpr; i++){ if( pList->a[i].zEName && pList->a[i].eEName==ENAME_NAME ){ sqlite3RenameTokenRemap(pParse, 0, (void*)pList->a[i].zEName); } } } if( ALWAYS(p->pSrc) ){ /* Every Select as a SrcList, even if it is empty */ SrcList *pSrc = p->pSrc; for(i=0; inSrc; i++){ sqlite3RenameTokenRemap(pParse, 0, (void*)pSrc->a[i].zName); sqlite3WalkExpr(pWalker, pSrc->a[i].pOn); unmapColumnIdlistNames(pParse, pSrc->a[i].pUsing); } } renameWalkWith(pWalker, p); return WRC_Continue; } /* ** Remove all nodes that are part of expression pExpr from the rename list. */ SQLITE_PRIVATE void sqlite3RenameExprUnmap(Parse *pParse, Expr *pExpr){ u8 eMode = pParse->eParseMode; Walker sWalker; memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = pParse; sWalker.xExprCallback = renameUnmapExprCb; sWalker.xSelectCallback = renameUnmapSelectCb; pParse->eParseMode = PARSE_MODE_UNMAP; sqlite3WalkExpr(&sWalker, pExpr); pParse->eParseMode = eMode; } /* ** Remove all nodes that are part of expression-list pEList from the ** rename list. */ SQLITE_PRIVATE void sqlite3RenameExprlistUnmap(Parse *pParse, ExprList *pEList){ if( pEList ){ int i; Walker sWalker; memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = pParse; sWalker.xExprCallback = renameUnmapExprCb; sqlite3WalkExprList(&sWalker, pEList); for(i=0; inExpr; i++){ if( ALWAYS(pEList->a[i].eEName==ENAME_NAME) ){ sqlite3RenameTokenRemap(pParse, 0, (void*)pEList->a[i].zEName); } } } } /* ** Free the list of RenameToken objects given in the second argument */ static void renameTokenFree(sqlite3 *db, RenameToken *pToken){ RenameToken *pNext; RenameToken *p; for(p=pToken; p; p=pNext){ pNext = p->pNext; sqlite3DbFree(db, p); } } /* ** Search the Parse object passed as the first argument for a RenameToken ** object associated with parse tree element pPtr. If found, return a pointer ** to it. Otherwise, return NULL. ** ** If the second argument passed to this function is not NULL and a matching ** RenameToken object is found, remove it from the Parse object and add it to ** the list maintained by the RenameCtx object. */ static RenameToken *renameTokenFind( Parse *pParse, struct RenameCtx *pCtx, const void *pPtr ){ RenameToken **pp; if( NEVER(pPtr==0) ){ return 0; } for(pp=&pParse->pRename; (*pp); pp=&(*pp)->pNext){ if( (*pp)->p==pPtr ){ RenameToken *pToken = *pp; if( pCtx ){ *pp = pToken->pNext; pToken->pNext = pCtx->pList; pCtx->pList = pToken; pCtx->nList++; } return pToken; } } return 0; } /* ** This is a Walker select callback. It does nothing. It is only required ** because without a dummy callback, sqlite3WalkExpr() and similar do not ** descend into sub-select statements. */ static int renameColumnSelectCb(Walker *pWalker, Select *p){ if( p->selFlags & (SF_View|SF_CopyCte) ){ testcase( p->selFlags & SF_View ); testcase( p->selFlags & SF_CopyCte ); return WRC_Prune; } renameWalkWith(pWalker, p); return WRC_Continue; } /* ** This is a Walker expression callback. ** ** For every TK_COLUMN node in the expression tree, search to see ** if the column being references is the column being renamed by an ** ALTER TABLE statement. If it is, then attach its associated ** RenameToken object to the list of RenameToken objects being ** constructed in RenameCtx object at pWalker->u.pRename. */ static int renameColumnExprCb(Walker *pWalker, Expr *pExpr){ RenameCtx *p = pWalker->u.pRename; if( pExpr->op==TK_TRIGGER && pExpr->iColumn==p->iCol && pWalker->pParse->pTriggerTab==p->pTab ){ renameTokenFind(pWalker->pParse, p, (void*)pExpr); }else if( pExpr->op==TK_COLUMN && pExpr->iColumn==p->iCol && ALWAYS(ExprUseYTab(pExpr)) && p->pTab==pExpr->y.pTab ){ renameTokenFind(pWalker->pParse, p, (void*)pExpr); } return WRC_Continue; } /* ** The RenameCtx contains a list of tokens that reference a column that ** is being renamed by an ALTER TABLE statement. Return the "last" ** RenameToken in the RenameCtx and remove that RenameToken from the ** RenameContext. "Last" means the last RenameToken encountered when ** the input SQL is parsed from left to right. Repeated calls to this routine ** return all column name tokens in the order that they are encountered ** in the SQL statement. */ static RenameToken *renameColumnTokenNext(RenameCtx *pCtx){ RenameToken *pBest = pCtx->pList; RenameToken *pToken; RenameToken **pp; for(pToken=pBest->pNext; pToken; pToken=pToken->pNext){ if( pToken->t.z>pBest->t.z ) pBest = pToken; } for(pp=&pCtx->pList; *pp!=pBest; pp=&(*pp)->pNext); *pp = pBest->pNext; return pBest; } /* ** An error occurred while parsing or otherwise processing a database ** object (either pParse->pNewTable, pNewIndex or pNewTrigger) as part of an ** ALTER TABLE RENAME COLUMN program. The error message emitted by the ** sub-routine is currently stored in pParse->zErrMsg. This function ** adds context to the error message and then stores it in pCtx. */ static void renameColumnParseError( sqlite3_context *pCtx, const char *zWhen, sqlite3_value *pType, sqlite3_value *pObject, Parse *pParse ){ const char *zT = (const char*)sqlite3_value_text(pType); const char *zN = (const char*)sqlite3_value_text(pObject); char *zErr; zErr = sqlite3MPrintf(pParse->db, "error in %s %s%s%s: %s", zT, zN, (zWhen[0] ? " " : ""), zWhen, pParse->zErrMsg ); sqlite3_result_error(pCtx, zErr, -1); sqlite3DbFree(pParse->db, zErr); } /* ** For each name in the the expression-list pEList (i.e. each ** pEList->a[i].zName) that matches the string in zOld, extract the ** corresponding rename-token from Parse object pParse and add it ** to the RenameCtx pCtx. */ static void renameColumnElistNames( Parse *pParse, RenameCtx *pCtx, const ExprList *pEList, const char *zOld ){ if( pEList ){ int i; for(i=0; inExpr; i++){ const char *zName = pEList->a[i].zEName; if( ALWAYS(pEList->a[i].eEName==ENAME_NAME) && ALWAYS(zName!=0) && 0==sqlite3_stricmp(zName, zOld) ){ renameTokenFind(pParse, pCtx, (const void*)zName); } } } } /* ** For each name in the the id-list pIdList (i.e. each pIdList->a[i].zName) ** that matches the string in zOld, extract the corresponding rename-token ** from Parse object pParse and add it to the RenameCtx pCtx. */ static void renameColumnIdlistNames( Parse *pParse, RenameCtx *pCtx, const IdList *pIdList, const char *zOld ){ if( pIdList ){ int i; for(i=0; inId; i++){ const char *zName = pIdList->a[i].zName; if( 0==sqlite3_stricmp(zName, zOld) ){ renameTokenFind(pParse, pCtx, (const void*)zName); } } } } /* ** Parse the SQL statement zSql using Parse object (*p). The Parse object ** is initialized by this function before it is used. */ static int renameParseSql( Parse *p, /* Memory to use for Parse object */ const char *zDb, /* Name of schema SQL belongs to */ sqlite3 *db, /* Database handle */ const char *zSql, /* SQL to parse */ int bTemp /* True if SQL is from temp schema */ ){ int rc; db->init.iDb = bTemp ? 1 : sqlite3FindDbName(db, zDb); /* Parse the SQL statement passed as the first argument. If no error ** occurs and the parse does not result in a new table, index or ** trigger object, the database must be corrupt. */ sqlite3ParseObjectInit(p, db); p->eParseMode = PARSE_MODE_RENAME; p->db = db; p->nQueryLoop = 1; rc = zSql ? sqlite3RunParser(p, zSql) : SQLITE_NOMEM; if( db->mallocFailed ) rc = SQLITE_NOMEM; if( rc==SQLITE_OK && p->pNewTable==0 && p->pNewIndex==0 && p->pNewTrigger==0 ){ rc = SQLITE_CORRUPT_BKPT; } #ifdef SQLITE_DEBUG /* Ensure that all mappings in the Parse.pRename list really do map to ** a part of the input string. */ if( rc==SQLITE_OK ){ int nSql = sqlite3Strlen30(zSql); RenameToken *pToken; for(pToken=p->pRename; pToken; pToken=pToken->pNext){ assert( pToken->t.z>=zSql && &pToken->t.z[pToken->t.n]<=&zSql[nSql] ); } } #endif db->init.iDb = 0; return rc; } /* ** This function edits SQL statement zSql, replacing each token identified ** by the linked list pRename with the text of zNew. If argument bQuote is ** true, then zNew is always quoted first. If no error occurs, the result ** is loaded into context object pCtx as the result. ** ** Or, if an error occurs (i.e. an OOM condition), an error is left in ** pCtx and an SQLite error code returned. */ static int renameEditSql( sqlite3_context *pCtx, /* Return result here */ RenameCtx *pRename, /* Rename context */ const char *zSql, /* SQL statement to edit */ const char *zNew, /* New token text */ int bQuote /* True to always quote token */ ){ i64 nNew = sqlite3Strlen30(zNew); i64 nSql = sqlite3Strlen30(zSql); sqlite3 *db = sqlite3_context_db_handle(pCtx); int rc = SQLITE_OK; char *zQuot = 0; char *zOut; i64 nQuot = 0; char *zBuf1 = 0; char *zBuf2 = 0; if( zNew ){ /* Set zQuot to point to a buffer containing a quoted copy of the ** identifier zNew. If the corresponding identifier in the original ** ALTER TABLE statement was quoted (bQuote==1), then set zNew to ** point to zQuot so that all substitutions are made using the ** quoted version of the new column name. */ zQuot = sqlite3MPrintf(db, "\"%w\" ", zNew); if( zQuot==0 ){ return SQLITE_NOMEM; }else{ nQuot = sqlite3Strlen30(zQuot)-1; } assert( nQuot>=nNew ); zOut = sqlite3DbMallocZero(db, nSql + pRename->nList*nQuot + 1); }else{ zOut = (char*)sqlite3DbMallocZero(db, (nSql*2+1) * 3); if( zOut ){ zBuf1 = &zOut[nSql*2+1]; zBuf2 = &zOut[nSql*4+2]; } } /* At this point pRename->pList contains a list of RenameToken objects ** corresponding to all tokens in the input SQL that must be replaced ** with the new column name, or with single-quoted versions of themselves. ** All that remains is to construct and return the edited SQL string. */ if( zOut ){ int nOut = nSql; memcpy(zOut, zSql, nSql); while( pRename->pList ){ int iOff; /* Offset of token to replace in zOut */ u32 nReplace; const char *zReplace; RenameToken *pBest = renameColumnTokenNext(pRename); if( zNew ){ if( bQuote==0 && sqlite3IsIdChar(*pBest->t.z) ){ nReplace = nNew; zReplace = zNew; }else{ nReplace = nQuot; zReplace = zQuot; if( pBest->t.z[pBest->t.n]=='"' ) nReplace++; } }else{ /* Dequote the double-quoted token. Then requote it again, this time ** using single quotes. If the character immediately following the ** original token within the input SQL was a single quote ('), then ** add another space after the new, single-quoted version of the ** token. This is so that (SELECT "string"'alias') maps to ** (SELECT 'string' 'alias'), and not (SELECT 'string''alias'). */ memcpy(zBuf1, pBest->t.z, pBest->t.n); zBuf1[pBest->t.n] = 0; sqlite3Dequote(zBuf1); sqlite3_snprintf(nSql*2, zBuf2, "%Q%s", zBuf1, pBest->t.z[pBest->t.n]=='\'' ? " " : "" ); zReplace = zBuf2; nReplace = sqlite3Strlen30(zReplace); } iOff = pBest->t.z - zSql; if( pBest->t.n!=nReplace ){ memmove(&zOut[iOff + nReplace], &zOut[iOff + pBest->t.n], nOut - (iOff + pBest->t.n) ); nOut += nReplace - pBest->t.n; zOut[nOut] = '\0'; } memcpy(&zOut[iOff], zReplace, nReplace); sqlite3DbFree(db, pBest); } sqlite3_result_text(pCtx, zOut, -1, SQLITE_TRANSIENT); sqlite3DbFree(db, zOut); }else{ rc = SQLITE_NOMEM; } sqlite3_free(zQuot); return rc; } /* ** Resolve all symbols in the trigger at pParse->pNewTrigger, assuming ** it was read from the schema of database zDb. Return SQLITE_OK if ** successful. Otherwise, return an SQLite error code and leave an error ** message in the Parse object. */ static int renameResolveTrigger(Parse *pParse){ sqlite3 *db = pParse->db; Trigger *pNew = pParse->pNewTrigger; TriggerStep *pStep; NameContext sNC; int rc = SQLITE_OK; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; assert( pNew->pTabSchema ); pParse->pTriggerTab = sqlite3FindTable(db, pNew->table, db->aDb[sqlite3SchemaToIndex(db, pNew->pTabSchema)].zDbSName ); pParse->eTriggerOp = pNew->op; /* ALWAYS() because if the table of the trigger does not exist, the ** error would have been hit before this point */ if( ALWAYS(pParse->pTriggerTab) ){ rc = sqlite3ViewGetColumnNames(pParse, pParse->pTriggerTab); } /* Resolve symbols in WHEN clause */ if( rc==SQLITE_OK && pNew->pWhen ){ rc = sqlite3ResolveExprNames(&sNC, pNew->pWhen); } for(pStep=pNew->step_list; rc==SQLITE_OK && pStep; pStep=pStep->pNext){ if( pStep->pSelect ){ sqlite3SelectPrep(pParse, pStep->pSelect, &sNC); if( pParse->nErr ) rc = pParse->rc; } if( rc==SQLITE_OK && pStep->zTarget ){ SrcList *pSrc = sqlite3TriggerStepSrc(pParse, pStep); if( pSrc ){ int i; for(i=0; inSrc && rc==SQLITE_OK; i++){ SrcItem *p = &pSrc->a[i]; p->iCursor = pParse->nTab++; if( p->pSelect ){ sqlite3SelectPrep(pParse, p->pSelect, 0); sqlite3ExpandSubquery(pParse, p); assert( i>0 ); assert( pStep->pFrom->a[i-1].pSelect ); sqlite3SelectPrep(pParse, pStep->pFrom->a[i-1].pSelect, 0); }else{ p->pTab = sqlite3LocateTableItem(pParse, 0, p); if( p->pTab==0 ){ rc = SQLITE_ERROR; }else{ p->pTab->nTabRef++; rc = sqlite3ViewGetColumnNames(pParse, p->pTab); } } } if( rc==SQLITE_OK && db->mallocFailed ){ rc = SQLITE_NOMEM; } sNC.pSrcList = pSrc; if( rc==SQLITE_OK && pStep->pWhere ){ rc = sqlite3ResolveExprNames(&sNC, pStep->pWhere); } if( rc==SQLITE_OK ){ rc = sqlite3ResolveExprListNames(&sNC, pStep->pExprList); } assert( !pStep->pUpsert || (!pStep->pWhere && !pStep->pExprList) ); if( pStep->pUpsert && rc==SQLITE_OK ){ Upsert *pUpsert = pStep->pUpsert; pUpsert->pUpsertSrc = pSrc; sNC.uNC.pUpsert = pUpsert; sNC.ncFlags = NC_UUpsert; rc = sqlite3ResolveExprListNames(&sNC, pUpsert->pUpsertTarget); if( rc==SQLITE_OK ){ ExprList *pUpsertSet = pUpsert->pUpsertSet; rc = sqlite3ResolveExprListNames(&sNC, pUpsertSet); } if( rc==SQLITE_OK ){ rc = sqlite3ResolveExprNames(&sNC, pUpsert->pUpsertWhere); } if( rc==SQLITE_OK ){ rc = sqlite3ResolveExprNames(&sNC, pUpsert->pUpsertTargetWhere); } sNC.ncFlags = 0; } sNC.pSrcList = 0; sqlite3SrcListDelete(db, pSrc); }else{ rc = SQLITE_NOMEM; } } } return rc; } /* ** Invoke sqlite3WalkExpr() or sqlite3WalkSelect() on all Select or Expr ** objects that are part of the trigger passed as the second argument. */ static void renameWalkTrigger(Walker *pWalker, Trigger *pTrigger){ TriggerStep *pStep; /* Find tokens to edit in WHEN clause */ sqlite3WalkExpr(pWalker, pTrigger->pWhen); /* Find tokens to edit in trigger steps */ for(pStep=pTrigger->step_list; pStep; pStep=pStep->pNext){ sqlite3WalkSelect(pWalker, pStep->pSelect); sqlite3WalkExpr(pWalker, pStep->pWhere); sqlite3WalkExprList(pWalker, pStep->pExprList); if( pStep->pUpsert ){ Upsert *pUpsert = pStep->pUpsert; sqlite3WalkExprList(pWalker, pUpsert->pUpsertTarget); sqlite3WalkExprList(pWalker, pUpsert->pUpsertSet); sqlite3WalkExpr(pWalker, pUpsert->pUpsertWhere); sqlite3WalkExpr(pWalker, pUpsert->pUpsertTargetWhere); } if( pStep->pFrom ){ int i; for(i=0; ipFrom->nSrc; i++){ sqlite3WalkSelect(pWalker, pStep->pFrom->a[i].pSelect); } } } } /* ** Free the contents of Parse object (*pParse). Do not free the memory ** occupied by the Parse object itself. */ static void renameParseCleanup(Parse *pParse){ sqlite3 *db = pParse->db; Index *pIdx; if( pParse->pVdbe ){ sqlite3VdbeFinalize(pParse->pVdbe); } sqlite3DeleteTable(db, pParse->pNewTable); while( (pIdx = pParse->pNewIndex)!=0 ){ pParse->pNewIndex = pIdx->pNext; sqlite3FreeIndex(db, pIdx); } sqlite3DeleteTrigger(db, pParse->pNewTrigger); sqlite3DbFree(db, pParse->zErrMsg); renameTokenFree(db, pParse->pRename); sqlite3ParseObjectReset(pParse); } /* ** SQL function: ** ** sqlite_rename_column(SQL,TYPE,OBJ,DB,TABLE,COL,NEWNAME,QUOTE,TEMP) ** ** 0. zSql: SQL statement to rewrite ** 1. type: Type of object ("table", "view" etc.) ** 2. object: Name of object ** 3. Database: Database name (e.g. "main") ** 4. Table: Table name ** 5. iCol: Index of column to rename ** 6. zNew: New column name ** 7. bQuote: Non-zero if the new column name should be quoted. ** 8. bTemp: True if zSql comes from temp schema ** ** Do a column rename operation on the CREATE statement given in zSql. ** The iCol-th column (left-most is 0) of table zTable is renamed from zCol ** into zNew. The name should be quoted if bQuote is true. ** ** This function is used internally by the ALTER TABLE RENAME COLUMN command. ** It is only accessible to SQL created using sqlite3NestedParse(). It is ** not reachable from ordinary SQL passed into sqlite3_prepare() unless the ** SQLITE_TESTCTRL_INTERNAL_FUNCTIONS test setting is enabled. */ static void renameColumnFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); RenameCtx sCtx; const char *zSql = (const char*)sqlite3_value_text(argv[0]); const char *zDb = (const char*)sqlite3_value_text(argv[3]); const char *zTable = (const char*)sqlite3_value_text(argv[4]); int iCol = sqlite3_value_int(argv[5]); const char *zNew = (const char*)sqlite3_value_text(argv[6]); int bQuote = sqlite3_value_int(argv[7]); int bTemp = sqlite3_value_int(argv[8]); const char *zOld; int rc; Parse sParse; Walker sWalker; Index *pIdx; int i; Table *pTab; #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; #endif UNUSED_PARAMETER(NotUsed); if( zSql==0 ) return; if( zTable==0 ) return; if( zNew==0 ) return; if( iCol<0 ) return; sqlite3BtreeEnterAll(db); pTab = sqlite3FindTable(db, zTable, zDb); if( pTab==0 || iCol>=pTab->nCol ){ sqlite3BtreeLeaveAll(db); return; } zOld = pTab->aCol[iCol].zCnName; memset(&sCtx, 0, sizeof(sCtx)); sCtx.iCol = ((iCol==pTab->iPKey) ? -1 : iCol); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = 0; #endif rc = renameParseSql(&sParse, zDb, db, zSql, bTemp); /* Find tokens that need to be replaced. */ memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = &sParse; sWalker.xExprCallback = renameColumnExprCb; sWalker.xSelectCallback = renameColumnSelectCb; sWalker.u.pRename = &sCtx; sCtx.pTab = pTab; if( rc!=SQLITE_OK ) goto renameColumnFunc_done; if( sParse.pNewTable ){ if( IsView(sParse.pNewTable) ){ Select *pSelect = sParse.pNewTable->u.view.pSelect; pSelect->selFlags &= ~SF_View; sParse.rc = SQLITE_OK; sqlite3SelectPrep(&sParse, pSelect, 0); rc = (db->mallocFailed ? SQLITE_NOMEM : sParse.rc); if( rc==SQLITE_OK ){ sqlite3WalkSelect(&sWalker, pSelect); } if( rc!=SQLITE_OK ) goto renameColumnFunc_done; }else if( IsOrdinaryTable(sParse.pNewTable) ){ /* A regular table */ int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName); FKey *pFKey; sCtx.pTab = sParse.pNewTable; if( bFKOnly==0 ){ if( iColnCol ){ renameTokenFind( &sParse, &sCtx, (void*)sParse.pNewTable->aCol[iCol].zCnName ); } if( sCtx.iCol<0 ){ renameTokenFind(&sParse, &sCtx, (void*)&sParse.pNewTable->iPKey); } sqlite3WalkExprList(&sWalker, sParse.pNewTable->pCheck); for(pIdx=sParse.pNewTable->pIndex; pIdx; pIdx=pIdx->pNext){ sqlite3WalkExprList(&sWalker, pIdx->aColExpr); } for(pIdx=sParse.pNewIndex; pIdx; pIdx=pIdx->pNext){ sqlite3WalkExprList(&sWalker, pIdx->aColExpr); } #ifndef SQLITE_OMIT_GENERATED_COLUMNS for(i=0; inCol; i++){ Expr *pExpr = sqlite3ColumnExpr(sParse.pNewTable, &sParse.pNewTable->aCol[i]); sqlite3WalkExpr(&sWalker, pExpr); } #endif } assert( IsOrdinaryTable(sParse.pNewTable) ); for(pFKey=sParse.pNewTable->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){ for(i=0; inCol; i++){ if( bFKOnly==0 && pFKey->aCol[i].iFrom==iCol ){ renameTokenFind(&sParse, &sCtx, (void*)&pFKey->aCol[i]); } if( 0==sqlite3_stricmp(pFKey->zTo, zTable) && 0==sqlite3_stricmp(pFKey->aCol[i].zCol, zOld) ){ renameTokenFind(&sParse, &sCtx, (void*)pFKey->aCol[i].zCol); } } } } }else if( sParse.pNewIndex ){ sqlite3WalkExprList(&sWalker, sParse.pNewIndex->aColExpr); sqlite3WalkExpr(&sWalker, sParse.pNewIndex->pPartIdxWhere); }else{ /* A trigger */ TriggerStep *pStep; rc = renameResolveTrigger(&sParse); if( rc!=SQLITE_OK ) goto renameColumnFunc_done; for(pStep=sParse.pNewTrigger->step_list; pStep; pStep=pStep->pNext){ if( pStep->zTarget ){ Table *pTarget = sqlite3LocateTable(&sParse, 0, pStep->zTarget, zDb); if( pTarget==pTab ){ if( pStep->pUpsert ){ ExprList *pUpsertSet = pStep->pUpsert->pUpsertSet; renameColumnElistNames(&sParse, &sCtx, pUpsertSet, zOld); } renameColumnIdlistNames(&sParse, &sCtx, pStep->pIdList, zOld); renameColumnElistNames(&sParse, &sCtx, pStep->pExprList, zOld); } } } /* Find tokens to edit in UPDATE OF clause */ if( sParse.pTriggerTab==pTab ){ renameColumnIdlistNames(&sParse, &sCtx,sParse.pNewTrigger->pColumns,zOld); } /* Find tokens to edit in various expressions and selects */ renameWalkTrigger(&sWalker, sParse.pNewTrigger); } assert( rc==SQLITE_OK ); rc = renameEditSql(context, &sCtx, zSql, zNew, bQuote); renameColumnFunc_done: if( rc!=SQLITE_OK ){ if( rc==SQLITE_ERROR && sqlite3WritableSchema(db) ){ sqlite3_result_value(context, argv[0]); }else if( sParse.zErrMsg ){ renameColumnParseError(context, "", argv[1], argv[2], &sParse); }else{ sqlite3_result_error_code(context, rc); } } renameParseCleanup(&sParse); renameTokenFree(db, sCtx.pList); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif sqlite3BtreeLeaveAll(db); } /* ** Walker expression callback used by "RENAME TABLE". */ static int renameTableExprCb(Walker *pWalker, Expr *pExpr){ RenameCtx *p = pWalker->u.pRename; if( pExpr->op==TK_COLUMN && ALWAYS(ExprUseYTab(pExpr)) && p->pTab==pExpr->y.pTab ){ renameTokenFind(pWalker->pParse, p, (void*)&pExpr->y.pTab); } return WRC_Continue; } /* ** Walker select callback used by "RENAME TABLE". */ static int renameTableSelectCb(Walker *pWalker, Select *pSelect){ int i; RenameCtx *p = pWalker->u.pRename; SrcList *pSrc = pSelect->pSrc; if( pSelect->selFlags & (SF_View|SF_CopyCte) ){ testcase( pSelect->selFlags & SF_View ); testcase( pSelect->selFlags & SF_CopyCte ); return WRC_Prune; } if( NEVER(pSrc==0) ){ assert( pWalker->pParse->db->mallocFailed ); return WRC_Abort; } for(i=0; inSrc; i++){ SrcItem *pItem = &pSrc->a[i]; if( pItem->pTab==p->pTab ){ renameTokenFind(pWalker->pParse, p, pItem->zName); } } renameWalkWith(pWalker, pSelect); return WRC_Continue; } /* ** This C function implements an SQL user function that is used by SQL code ** generated by the ALTER TABLE ... RENAME command to modify the definition ** of any foreign key constraints that use the table being renamed as the ** parent table. It is passed three arguments: ** ** 0: The database containing the table being renamed. ** 1. type: Type of object ("table", "view" etc.) ** 2. object: Name of object ** 3: The complete text of the schema statement being modified, ** 4: The old name of the table being renamed, and ** 5: The new name of the table being renamed. ** 6: True if the schema statement comes from the temp db. ** ** It returns the new schema statement. For example: ** ** sqlite_rename_table('main', 'CREATE TABLE t1(a REFERENCES t2)','t2','t3',0) ** -> 'CREATE TABLE t1(a REFERENCES t3)' */ static void renameTableFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); const char *zDb = (const char*)sqlite3_value_text(argv[0]); const char *zInput = (const char*)sqlite3_value_text(argv[3]); const char *zOld = (const char*)sqlite3_value_text(argv[4]); const char *zNew = (const char*)sqlite3_value_text(argv[5]); int bTemp = sqlite3_value_int(argv[6]); UNUSED_PARAMETER(NotUsed); if( zInput && zOld && zNew ){ Parse sParse; int rc; int bQuote = 1; RenameCtx sCtx; Walker sWalker; #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; db->xAuth = 0; #endif sqlite3BtreeEnterAll(db); memset(&sCtx, 0, sizeof(RenameCtx)); sCtx.pTab = sqlite3FindTable(db, zOld, zDb); memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = &sParse; sWalker.xExprCallback = renameTableExprCb; sWalker.xSelectCallback = renameTableSelectCb; sWalker.u.pRename = &sCtx; rc = renameParseSql(&sParse, zDb, db, zInput, bTemp); if( rc==SQLITE_OK ){ int isLegacy = (db->flags & SQLITE_LegacyAlter); if( sParse.pNewTable ){ Table *pTab = sParse.pNewTable; if( IsView(pTab) ){ if( isLegacy==0 ){ Select *pSelect = pTab->u.view.pSelect; NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = &sParse; assert( pSelect->selFlags & SF_View ); pSelect->selFlags &= ~SF_View; sqlite3SelectPrep(&sParse, pTab->u.view.pSelect, &sNC); if( sParse.nErr ){ rc = sParse.rc; }else{ sqlite3WalkSelect(&sWalker, pTab->u.view.pSelect); } } }else{ /* Modify any FK definitions to point to the new table. */ #ifndef SQLITE_OMIT_FOREIGN_KEY if( (isLegacy==0 || (db->flags & SQLITE_ForeignKeys)) && !IsVirtual(pTab) ){ FKey *pFKey; assert( IsOrdinaryTable(pTab) ); for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){ if( sqlite3_stricmp(pFKey->zTo, zOld)==0 ){ renameTokenFind(&sParse, &sCtx, (void*)pFKey->zTo); } } } #endif /* If this is the table being altered, fix any table refs in CHECK ** expressions. Also update the name that appears right after the ** "CREATE [VIRTUAL] TABLE" bit. */ if( sqlite3_stricmp(zOld, pTab->zName)==0 ){ sCtx.pTab = pTab; if( isLegacy==0 ){ sqlite3WalkExprList(&sWalker, pTab->pCheck); } renameTokenFind(&sParse, &sCtx, pTab->zName); } } } else if( sParse.pNewIndex ){ renameTokenFind(&sParse, &sCtx, sParse.pNewIndex->zName); if( isLegacy==0 ){ sqlite3WalkExpr(&sWalker, sParse.pNewIndex->pPartIdxWhere); } } #ifndef SQLITE_OMIT_TRIGGER else{ Trigger *pTrigger = sParse.pNewTrigger; TriggerStep *pStep; if( 0==sqlite3_stricmp(sParse.pNewTrigger->table, zOld) && sCtx.pTab->pSchema==pTrigger->pTabSchema ){ renameTokenFind(&sParse, &sCtx, sParse.pNewTrigger->table); } if( isLegacy==0 ){ rc = renameResolveTrigger(&sParse); if( rc==SQLITE_OK ){ renameWalkTrigger(&sWalker, pTrigger); for(pStep=pTrigger->step_list; pStep; pStep=pStep->pNext){ if( pStep->zTarget && 0==sqlite3_stricmp(pStep->zTarget, zOld) ){ renameTokenFind(&sParse, &sCtx, pStep->zTarget); } } } } } #endif } if( rc==SQLITE_OK ){ rc = renameEditSql(context, &sCtx, zInput, zNew, bQuote); } if( rc!=SQLITE_OK ){ if( rc==SQLITE_ERROR && sqlite3WritableSchema(db) ){ sqlite3_result_value(context, argv[3]); }else if( sParse.zErrMsg ){ renameColumnParseError(context, "", argv[1], argv[2], &sParse); }else{ sqlite3_result_error_code(context, rc); } } renameParseCleanup(&sParse); renameTokenFree(db, sCtx.pList); sqlite3BtreeLeaveAll(db); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif } return; } static int renameQuotefixExprCb(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_STRING && (pExpr->flags & EP_DblQuoted) ){ renameTokenFind(pWalker->pParse, pWalker->u.pRename, (const void*)pExpr); } return WRC_Continue; } /* SQL function: sqlite_rename_quotefix(DB,SQL) ** ** Rewrite the DDL statement "SQL" so that any string literals that use ** double-quotes use single quotes instead. ** ** Two arguments must be passed: ** ** 0: Database name ("main", "temp" etc.). ** 1: SQL statement to edit. ** ** The returned value is the modified SQL statement. For example, given ** the database schema: ** ** CREATE TABLE t1(a, b, c); ** ** SELECT sqlite_rename_quotefix('main', ** 'CREATE VIEW v1 AS SELECT "a", "string" FROM t1' ** ); ** ** returns the string: ** ** CREATE VIEW v1 AS SELECT "a", 'string' FROM t1 ** ** If there is a error in the input SQL, then raise an error, except ** if PRAGMA writable_schema=ON, then just return the input string ** unmodified following an error. */ static void renameQuotefixFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); char const *zDb = (const char*)sqlite3_value_text(argv[0]); char const *zInput = (const char*)sqlite3_value_text(argv[1]); #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; db->xAuth = 0; #endif sqlite3BtreeEnterAll(db); UNUSED_PARAMETER(NotUsed); if( zDb && zInput ){ int rc; Parse sParse; rc = renameParseSql(&sParse, zDb, db, zInput, 0); if( rc==SQLITE_OK ){ RenameCtx sCtx; Walker sWalker; /* Walker to find tokens that need to be replaced. */ memset(&sCtx, 0, sizeof(RenameCtx)); memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = &sParse; sWalker.xExprCallback = renameQuotefixExprCb; sWalker.xSelectCallback = renameColumnSelectCb; sWalker.u.pRename = &sCtx; if( sParse.pNewTable ){ if( IsView(sParse.pNewTable) ){ Select *pSelect = sParse.pNewTable->u.view.pSelect; pSelect->selFlags &= ~SF_View; sParse.rc = SQLITE_OK; sqlite3SelectPrep(&sParse, pSelect, 0); rc = (db->mallocFailed ? SQLITE_NOMEM : sParse.rc); if( rc==SQLITE_OK ){ sqlite3WalkSelect(&sWalker, pSelect); } }else{ int i; sqlite3WalkExprList(&sWalker, sParse.pNewTable->pCheck); #ifndef SQLITE_OMIT_GENERATED_COLUMNS for(i=0; inCol; i++){ sqlite3WalkExpr(&sWalker, sqlite3ColumnExpr(sParse.pNewTable, &sParse.pNewTable->aCol[i])); } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ } }else if( sParse.pNewIndex ){ sqlite3WalkExprList(&sWalker, sParse.pNewIndex->aColExpr); sqlite3WalkExpr(&sWalker, sParse.pNewIndex->pPartIdxWhere); }else{ #ifndef SQLITE_OMIT_TRIGGER rc = renameResolveTrigger(&sParse); if( rc==SQLITE_OK ){ renameWalkTrigger(&sWalker, sParse.pNewTrigger); } #endif /* SQLITE_OMIT_TRIGGER */ } if( rc==SQLITE_OK ){ rc = renameEditSql(context, &sCtx, zInput, 0, 0); } renameTokenFree(db, sCtx.pList); } if( rc!=SQLITE_OK ){ if( sqlite3WritableSchema(db) && rc==SQLITE_ERROR ){ sqlite3_result_value(context, argv[1]); }else{ sqlite3_result_error_code(context, rc); } } renameParseCleanup(&sParse); } #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif sqlite3BtreeLeaveAll(db); } /* Function: sqlite_rename_test(DB,SQL,TYPE,NAME,ISTEMP,WHEN,DQS) ** ** An SQL user function that checks that there are no parse or symbol ** resolution problems in a CREATE TRIGGER|TABLE|VIEW|INDEX statement. ** After an ALTER TABLE .. RENAME operation is performed and the schema ** reloaded, this function is called on each SQL statement in the schema ** to ensure that it is still usable. ** ** 0: Database name ("main", "temp" etc.). ** 1: SQL statement. ** 2: Object type ("view", "table", "trigger" or "index"). ** 3: Object name. ** 4: True if object is from temp schema. ** 5: "when" part of error message. ** 6: True to disable the DQS quirk when parsing SQL. ** ** The return value is computed as follows: ** ** A. If an error is seen and not in PRAGMA writable_schema=ON mode, ** then raise the error. ** B. Else if a trigger is created and the the table that the trigger is ** attached to is in database zDb, then return 1. ** C. Otherwise return NULL. */ static void renameTableTest( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); char const *zDb = (const char*)sqlite3_value_text(argv[0]); char const *zInput = (const char*)sqlite3_value_text(argv[1]); int bTemp = sqlite3_value_int(argv[4]); int isLegacy = (db->flags & SQLITE_LegacyAlter); char const *zWhen = (const char*)sqlite3_value_text(argv[5]); int bNoDQS = sqlite3_value_int(argv[6]); #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; db->xAuth = 0; #endif UNUSED_PARAMETER(NotUsed); if( zDb && zInput ){ int rc; Parse sParse; int flags = db->flags; if( bNoDQS ) db->flags &= ~(SQLITE_DqsDML|SQLITE_DqsDDL); rc = renameParseSql(&sParse, zDb, db, zInput, bTemp); db->flags |= (flags & (SQLITE_DqsDML|SQLITE_DqsDDL)); if( rc==SQLITE_OK ){ if( isLegacy==0 && sParse.pNewTable && IsView(sParse.pNewTable) ){ NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = &sParse; sqlite3SelectPrep(&sParse, sParse.pNewTable->u.view.pSelect, &sNC); if( sParse.nErr ) rc = sParse.rc; } else if( sParse.pNewTrigger ){ if( isLegacy==0 ){ rc = renameResolveTrigger(&sParse); } if( rc==SQLITE_OK ){ int i1 = sqlite3SchemaToIndex(db, sParse.pNewTrigger->pTabSchema); int i2 = sqlite3FindDbName(db, zDb); if( i1==i2 ){ /* Handle output case B */ sqlite3_result_int(context, 1); } } } } if( rc!=SQLITE_OK && zWhen && !sqlite3WritableSchema(db) ){ /* Output case A */ renameColumnParseError(context, zWhen, argv[2], argv[3],&sParse); } renameParseCleanup(&sParse); } #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif } /* ** The implementation of internal UDF sqlite_drop_column(). ** ** Arguments: ** ** argv[0]: An integer - the index of the schema containing the table ** argv[1]: CREATE TABLE statement to modify. ** argv[2]: An integer - the index of the column to remove. ** ** The value returned is a string containing the CREATE TABLE statement ** with column argv[2] removed. */ static void dropColumnFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); int iSchema = sqlite3_value_int(argv[0]); const char *zSql = (const char*)sqlite3_value_text(argv[1]); int iCol = sqlite3_value_int(argv[2]); const char *zDb = db->aDb[iSchema].zDbSName; int rc; Parse sParse; RenameToken *pCol; Table *pTab; const char *zEnd; char *zNew = 0; #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; db->xAuth = 0; #endif UNUSED_PARAMETER(NotUsed); rc = renameParseSql(&sParse, zDb, db, zSql, iSchema==1); if( rc!=SQLITE_OK ) goto drop_column_done; pTab = sParse.pNewTable; if( pTab==0 || pTab->nCol==1 || iCol>=pTab->nCol ){ /* This can happen if the sqlite_schema table is corrupt */ rc = SQLITE_CORRUPT_BKPT; goto drop_column_done; } pCol = renameTokenFind(&sParse, 0, (void*)pTab->aCol[iCol].zCnName); if( iColnCol-1 ){ RenameToken *pEnd; pEnd = renameTokenFind(&sParse, 0, (void*)pTab->aCol[iCol+1].zCnName); zEnd = (const char*)pEnd->t.z; }else{ assert( IsOrdinaryTable(pTab) ); zEnd = (const char*)&zSql[pTab->u.tab.addColOffset]; while( ALWAYS(pCol->t.z[0]!=0) && pCol->t.z[0]!=',' ) pCol->t.z--; } zNew = sqlite3MPrintf(db, "%.*s%s", pCol->t.z-zSql, zSql, zEnd); sqlite3_result_text(context, zNew, -1, SQLITE_TRANSIENT); sqlite3_free(zNew); drop_column_done: renameParseCleanup(&sParse); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif if( rc!=SQLITE_OK ){ sqlite3_result_error_code(context, rc); } } /* ** This function is called by the parser upon parsing an ** ** ALTER TABLE pSrc DROP COLUMN pName ** ** statement. Argument pSrc contains the possibly qualified name of the ** table being edited, and token pName the name of the column to drop. */ SQLITE_PRIVATE void sqlite3AlterDropColumn(Parse *pParse, SrcList *pSrc, const Token *pName){ sqlite3 *db = pParse->db; /* Database handle */ Table *pTab; /* Table to modify */ int iDb; /* Index of db containing pTab in aDb[] */ const char *zDb; /* Database containing pTab ("main" etc.) */ char *zCol = 0; /* Name of column to drop */ int iCol; /* Index of column zCol in pTab->aCol[] */ /* Look up the table being altered. */ assert( pParse->pNewTable==0 ); assert( sqlite3BtreeHoldsAllMutexes(db) ); if( NEVER(db->mallocFailed) ) goto exit_drop_column; pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_drop_column; /* Make sure this is not an attempt to ALTER a view, virtual table or ** system table. */ if( SQLITE_OK!=isAlterableTable(pParse, pTab) ) goto exit_drop_column; if( SQLITE_OK!=isRealTable(pParse, pTab, 1) ) goto exit_drop_column; /* Find the index of the column being dropped. */ zCol = sqlite3NameFromToken(db, pName); if( zCol==0 ){ assert( db->mallocFailed ); goto exit_drop_column; } iCol = sqlite3ColumnIndex(pTab, zCol); if( iCol<0 ){ sqlite3ErrorMsg(pParse, "no such column: \"%T\"", pName); goto exit_drop_column; } /* Do not allow the user to drop a PRIMARY KEY column or a column ** constrained by a UNIQUE constraint. */ if( pTab->aCol[iCol].colFlags & (COLFLAG_PRIMKEY|COLFLAG_UNIQUE) ){ sqlite3ErrorMsg(pParse, "cannot drop %s column: \"%s\"", (pTab->aCol[iCol].colFlags&COLFLAG_PRIMKEY) ? "PRIMARY KEY" : "UNIQUE", zCol ); goto exit_drop_column; } /* Do not allow the number of columns to go to zero */ if( pTab->nCol<=1 ){ sqlite3ErrorMsg(pParse, "cannot drop column \"%s\": no other columns exist",zCol); goto exit_drop_column; } /* Edit the sqlite_schema table */ iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 ); zDb = db->aDb[iDb].zDbSName; #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, zCol) ){ goto exit_drop_column; } #endif renameTestSchema(pParse, zDb, iDb==1, "", 0); renameFixQuotes(pParse, zDb, iDb==1); sqlite3NestedParse(pParse, "UPDATE \"%w\"." LEGACY_SCHEMA_TABLE " SET " "sql = sqlite_drop_column(%d, sql, %d) " "WHERE (type=='table' AND tbl_name=%Q COLLATE nocase)" , zDb, iDb, iCol, pTab->zName ); /* Drop and reload the database schema. */ renameReloadSchema(pParse, iDb, INITFLAG_AlterDrop); renameTestSchema(pParse, zDb, iDb==1, "after drop column", 1); /* Edit rows of table on disk */ if( pParse->nErr==0 && (pTab->aCol[iCol].colFlags & COLFLAG_VIRTUAL)==0 ){ int i; int addr; int reg; int regRec; Index *pPk = 0; int nField = 0; /* Number of non-virtual columns after drop */ int iCur; Vdbe *v = sqlite3GetVdbe(pParse); iCur = pParse->nTab++; sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenWrite); addr = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v); reg = ++pParse->nMem; if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_Rowid, iCur, reg); pParse->nMem += pTab->nCol; }else{ pPk = sqlite3PrimaryKeyIndex(pTab); pParse->nMem += pPk->nColumn; for(i=0; inKeyCol; i++){ sqlite3VdbeAddOp3(v, OP_Column, iCur, i, reg+i+1); } nField = pPk->nKeyCol; } regRec = ++pParse->nMem; for(i=0; inCol; i++){ if( i!=iCol && (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){ int regOut; if( pPk ){ int iPos = sqlite3TableColumnToIndex(pPk, i); int iColPos = sqlite3TableColumnToIndex(pPk, iCol); if( iPosnKeyCol ) continue; regOut = reg+1+iPos-(iPos>iColPos); }else{ regOut = reg+1+nField; } if( i==pTab->iPKey ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regOut); }else{ sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, i, regOut); } nField++; } } if( nField==0 ){ /* dbsqlfuzz 5f09e7bcc78b4954d06bf9f2400d7715f48d1fef */ pParse->nMem++; sqlite3VdbeAddOp2(v, OP_Null, 0, reg+1); nField = 1; } sqlite3VdbeAddOp3(v, OP_MakeRecord, reg+1, nField, regRec); if( pPk ){ sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iCur, regRec, reg+1, pPk->nKeyCol); }else{ sqlite3VdbeAddOp3(v, OP_Insert, iCur, regRec, reg); } sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); sqlite3VdbeAddOp2(v, OP_Next, iCur, addr+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr); } exit_drop_column: sqlite3DbFree(db, zCol); sqlite3SrcListDelete(db, pSrc); } /* ** Register built-in functions used to help implement ALTER TABLE */ SQLITE_PRIVATE void sqlite3AlterFunctions(void){ static FuncDef aAlterTableFuncs[] = { INTERNAL_FUNCTION(sqlite_rename_column, 9, renameColumnFunc), INTERNAL_FUNCTION(sqlite_rename_table, 7, renameTableFunc), INTERNAL_FUNCTION(sqlite_rename_test, 7, renameTableTest), INTERNAL_FUNCTION(sqlite_drop_column, 3, dropColumnFunc), INTERNAL_FUNCTION(sqlite_rename_quotefix,2, renameQuotefixFunc), }; sqlite3InsertBuiltinFuncs(aAlterTableFuncs, ArraySize(aAlterTableFuncs)); } #endif /* SQLITE_ALTER_TABLE */ /************** End of alter.c ***********************************************/ /************** Begin file analyze.c *****************************************/ /* ** 2005-07-08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code associated with the ANALYZE command. ** ** The ANALYZE command gather statistics about the content of tables ** and indices. These statistics are made available to the query planner ** to help it make better decisions about how to perform queries. ** ** The following system tables are or have been supported: ** ** CREATE TABLE sqlite_stat1(tbl, idx, stat); ** CREATE TABLE sqlite_stat2(tbl, idx, sampleno, sample); ** CREATE TABLE sqlite_stat3(tbl, idx, nEq, nLt, nDLt, sample); ** CREATE TABLE sqlite_stat4(tbl, idx, nEq, nLt, nDLt, sample); ** ** Additional tables might be added in future releases of SQLite. ** The sqlite_stat2 table is not created or used unless the SQLite version ** is between 3.6.18 and 3.7.8, inclusive, and unless SQLite is compiled ** with SQLITE_ENABLE_STAT2. The sqlite_stat2 table is deprecated. ** The sqlite_stat2 table is superseded by sqlite_stat3, which is only ** created and used by SQLite versions 3.7.9 through 3.29.0 when ** SQLITE_ENABLE_STAT3 defined. The functionality of sqlite_stat3 ** is a superset of sqlite_stat2 and is also now deprecated. The ** sqlite_stat4 is an enhanced version of sqlite_stat3 and is only ** available when compiled with SQLITE_ENABLE_STAT4 and in SQLite ** versions 3.8.1 and later. STAT4 is the only variant that is still ** supported. ** ** For most applications, sqlite_stat1 provides all the statistics required ** for the query planner to make good choices. ** ** Format of sqlite_stat1: ** ** There is normally one row per index, with the index identified by the ** name in the idx column. The tbl column is the name of the table to ** which the index belongs. In each such row, the stat column will be ** a string consisting of a list of integers. The first integer in this ** list is the number of rows in the index. (This is the same as the ** number of rows in the table, except for partial indices.) The second ** integer is the average number of rows in the index that have the same ** value in the first column of the index. The third integer is the average ** number of rows in the index that have the same value for the first two ** columns. The N-th integer (for N>1) is the average number of rows in ** the index which have the same value for the first N-1 columns. For ** a K-column index, there will be K+1 integers in the stat column. If ** the index is unique, then the last integer will be 1. ** ** The list of integers in the stat column can optionally be followed ** by the keyword "unordered". The "unordered" keyword, if it is present, ** must be separated from the last integer by a single space. If the ** "unordered" keyword is present, then the query planner assumes that ** the index is unordered and will not use the index for a range query. ** ** If the sqlite_stat1.idx column is NULL, then the sqlite_stat1.stat ** column contains a single integer which is the (estimated) number of ** rows in the table identified by sqlite_stat1.tbl. ** ** Format of sqlite_stat2: ** ** The sqlite_stat2 is only created and is only used if SQLite is compiled ** with SQLITE_ENABLE_STAT2 and if the SQLite version number is between ** 3.6.18 and 3.7.8. The "stat2" table contains additional information ** about the distribution of keys within an index. The index is identified by ** the "idx" column and the "tbl" column is the name of the table to which ** the index belongs. There are usually 10 rows in the sqlite_stat2 ** table for each index. ** ** The sqlite_stat2 entries for an index that have sampleno between 0 and 9 ** inclusive are samples of the left-most key value in the index taken at ** evenly spaced points along the index. Let the number of samples be S ** (10 in the standard build) and let C be the number of rows in the index. ** Then the sampled rows are given by: ** ** rownumber = (i*C*2 + C)/(S*2) ** ** For i between 0 and S-1. Conceptually, the index space is divided into ** S uniform buckets and the samples are the middle row from each bucket. ** ** The format for sqlite_stat2 is recorded here for legacy reference. This ** version of SQLite does not support sqlite_stat2. It neither reads nor ** writes the sqlite_stat2 table. This version of SQLite only supports ** sqlite_stat3. ** ** Format for sqlite_stat3: ** ** The sqlite_stat3 format is a subset of sqlite_stat4. Hence, the ** sqlite_stat4 format will be described first. Further information ** about sqlite_stat3 follows the sqlite_stat4 description. ** ** Format for sqlite_stat4: ** ** As with sqlite_stat2, the sqlite_stat4 table contains histogram data ** to aid the query planner in choosing good indices based on the values ** that indexed columns are compared against in the WHERE clauses of ** queries. ** ** The sqlite_stat4 table contains multiple entries for each index. ** The idx column names the index and the tbl column is the table of the ** index. If the idx and tbl columns are the same, then the sample is ** of the INTEGER PRIMARY KEY. The sample column is a blob which is the ** binary encoding of a key from the index. The nEq column is a ** list of integers. The first integer is the approximate number ** of entries in the index whose left-most column exactly matches ** the left-most column of the sample. The second integer in nEq ** is the approximate number of entries in the index where the ** first two columns match the first two columns of the sample. ** And so forth. nLt is another list of integers that show the approximate ** number of entries that are strictly less than the sample. The first ** integer in nLt contains the number of entries in the index where the ** left-most column is less than the left-most column of the sample. ** The K-th integer in the nLt entry is the number of index entries ** where the first K columns are less than the first K columns of the ** sample. The nDLt column is like nLt except that it contains the ** number of distinct entries in the index that are less than the ** sample. ** ** There can be an arbitrary number of sqlite_stat4 entries per index. ** The ANALYZE command will typically generate sqlite_stat4 tables ** that contain between 10 and 40 samples which are distributed across ** the key space, though not uniformly, and which include samples with ** large nEq values. ** ** Format for sqlite_stat3 redux: ** ** The sqlite_stat3 table is like sqlite_stat4 except that it only ** looks at the left-most column of the index. The sqlite_stat3.sample ** column contains the actual value of the left-most column instead ** of a blob encoding of the complete index key as is found in ** sqlite_stat4.sample. The nEq, nLt, and nDLt entries of sqlite_stat3 ** all contain just a single integer which is the same as the first ** integer in the equivalent columns in sqlite_stat4. */ #ifndef SQLITE_OMIT_ANALYZE /* #include "sqliteInt.h" */ #if defined(SQLITE_ENABLE_STAT4) # define IsStat4 1 #else # define IsStat4 0 # undef SQLITE_STAT4_SAMPLES # define SQLITE_STAT4_SAMPLES 1 #endif /* ** This routine generates code that opens the sqlite_statN tables. ** The sqlite_stat1 table is always relevant. sqlite_stat2 is now ** obsolete. sqlite_stat3 and sqlite_stat4 are only opened when ** appropriate compile-time options are provided. ** ** If the sqlite_statN tables do not previously exist, it is created. ** ** Argument zWhere may be a pointer to a buffer containing a table name, ** or it may be a NULL pointer. If it is not NULL, then all entries in ** the sqlite_statN tables associated with the named table are deleted. ** If zWhere==0, then code is generated to delete all stat table entries. */ static void openStatTable( Parse *pParse, /* Parsing context */ int iDb, /* The database we are looking in */ int iStatCur, /* Open the sqlite_stat1 table on this cursor */ const char *zWhere, /* Delete entries for this table or index */ const char *zWhereType /* Either "tbl" or "idx" */ ){ static const struct { const char *zName; const char *zCols; } aTable[] = { { "sqlite_stat1", "tbl,idx,stat" }, #if defined(SQLITE_ENABLE_STAT4) { "sqlite_stat4", "tbl,idx,neq,nlt,ndlt,sample" }, #else { "sqlite_stat4", 0 }, #endif { "sqlite_stat3", 0 }, }; int i; sqlite3 *db = pParse->db; Db *pDb; Vdbe *v = sqlite3GetVdbe(pParse); u32 aRoot[ArraySize(aTable)]; u8 aCreateTbl[ArraySize(aTable)]; #ifdef SQLITE_ENABLE_STAT4 const int nToOpen = OptimizationEnabled(db,SQLITE_Stat4) ? 2 : 1; #else const int nToOpen = 1; #endif if( v==0 ) return; assert( sqlite3BtreeHoldsAllMutexes(db) ); assert( sqlite3VdbeDb(v)==db ); pDb = &db->aDb[iDb]; /* Create new statistic tables if they do not exist, or clear them ** if they do already exist. */ for(i=0; izDbSName))==0 ){ if( iregRoot. This is important ** because the OpenWrite opcode below will be needing it. */ sqlite3NestedParse(pParse, "CREATE TABLE %Q.%s(%s)", pDb->zDbSName, zTab, aTable[i].zCols ); aRoot[i] = (u32)pParse->regRoot; aCreateTbl[i] = OPFLAG_P2ISREG; } }else{ /* The table already exists. If zWhere is not NULL, delete all entries ** associated with the table zWhere. If zWhere is NULL, delete the ** entire contents of the table. */ aRoot[i] = pStat->tnum; sqlite3TableLock(pParse, iDb, aRoot[i], 1, zTab); if( zWhere ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.%s WHERE %s=%Q", pDb->zDbSName, zTab, zWhereType, zWhere ); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK }else if( db->xPreUpdateCallback ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.%s", pDb->zDbSName, zTab); #endif }else{ /* The sqlite_stat[134] table already exists. Delete all rows. */ sqlite3VdbeAddOp2(v, OP_Clear, (int)aRoot[i], iDb); } } } /* Open the sqlite_stat[134] tables for writing. */ for(i=0; inRowid ){ sqlite3DbFree(db, p->u.aRowid); p->nRowid = 0; } } #endif /* Initialize the BLOB value of a ROWID */ #ifdef SQLITE_ENABLE_STAT4 static void sampleSetRowid(sqlite3 *db, StatSample *p, int n, const u8 *pData){ assert( db!=0 ); if( p->nRowid ) sqlite3DbFree(db, p->u.aRowid); p->u.aRowid = sqlite3DbMallocRawNN(db, n); if( p->u.aRowid ){ p->nRowid = n; memcpy(p->u.aRowid, pData, n); }else{ p->nRowid = 0; } } #endif /* Initialize the INTEGER value of a ROWID. */ #ifdef SQLITE_ENABLE_STAT4 static void sampleSetRowidInt64(sqlite3 *db, StatSample *p, i64 iRowid){ assert( db!=0 ); if( p->nRowid ) sqlite3DbFree(db, p->u.aRowid); p->nRowid = 0; p->u.iRowid = iRowid; } #endif /* ** Copy the contents of object (*pFrom) into (*pTo). */ #ifdef SQLITE_ENABLE_STAT4 static void sampleCopy(StatAccum *p, StatSample *pTo, StatSample *pFrom){ pTo->isPSample = pFrom->isPSample; pTo->iCol = pFrom->iCol; pTo->iHash = pFrom->iHash; memcpy(pTo->anEq, pFrom->anEq, sizeof(tRowcnt)*p->nCol); memcpy(pTo->anLt, pFrom->anLt, sizeof(tRowcnt)*p->nCol); memcpy(pTo->anDLt, pFrom->anDLt, sizeof(tRowcnt)*p->nCol); if( pFrom->nRowid ){ sampleSetRowid(p->db, pTo, pFrom->nRowid, pFrom->u.aRowid); }else{ sampleSetRowidInt64(p->db, pTo, pFrom->u.iRowid); } } #endif /* ** Reclaim all memory of a StatAccum structure. */ static void statAccumDestructor(void *pOld){ StatAccum *p = (StatAccum*)pOld; #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ){ int i; for(i=0; inCol; i++) sampleClear(p->db, p->aBest+i); for(i=0; imxSample; i++) sampleClear(p->db, p->a+i); sampleClear(p->db, &p->current); } #endif sqlite3DbFree(p->db, p); } /* ** Implementation of the stat_init(N,K,C,L) SQL function. The four parameters ** are: ** N: The number of columns in the index including the rowid/pk (note 1) ** K: The number of columns in the index excluding the rowid/pk. ** C: Estimated number of rows in the index ** L: A limit on the number of rows to scan, or 0 for no-limit ** ** Note 1: In the special case of the covering index that implements a ** WITHOUT ROWID table, N is the number of PRIMARY KEY columns, not the ** total number of columns in the table. ** ** For indexes on ordinary rowid tables, N==K+1. But for indexes on ** WITHOUT ROWID tables, N=K+P where P is the number of columns in the ** PRIMARY KEY of the table. The covering index that implements the ** original WITHOUT ROWID table as N==K as a special case. ** ** This routine allocates the StatAccum object in heap memory. The return ** value is a pointer to the StatAccum object. The datatype of the ** return value is BLOB, but it is really just a pointer to the StatAccum ** object. */ static void statInit( sqlite3_context *context, int argc, sqlite3_value **argv ){ StatAccum *p; int nCol; /* Number of columns in index being sampled */ int nKeyCol; /* Number of key columns */ int nColUp; /* nCol rounded up for alignment */ int n; /* Bytes of space to allocate */ sqlite3 *db = sqlite3_context_db_handle(context); /* Database connection */ #ifdef SQLITE_ENABLE_STAT4 /* Maximum number of samples. 0 if STAT4 data is not collected */ int mxSample = OptimizationEnabled(db,SQLITE_Stat4) ?SQLITE_STAT4_SAMPLES :0; #endif /* Decode the three function arguments */ UNUSED_PARAMETER(argc); nCol = sqlite3_value_int(argv[0]); assert( nCol>0 ); nColUp = sizeof(tRowcnt)<8 ? (nCol+1)&~1 : nCol; nKeyCol = sqlite3_value_int(argv[1]); assert( nKeyCol<=nCol ); assert( nKeyCol>0 ); /* Allocate the space required for the StatAccum object */ n = sizeof(*p) + sizeof(tRowcnt)*nColUp /* StatAccum.anEq */ + sizeof(tRowcnt)*nColUp; /* StatAccum.anDLt */ #ifdef SQLITE_ENABLE_STAT4 if( mxSample ){ n += sizeof(tRowcnt)*nColUp /* StatAccum.anLt */ + sizeof(StatSample)*(nCol+mxSample) /* StatAccum.aBest[], a[] */ + sizeof(tRowcnt)*3*nColUp*(nCol+mxSample); } #endif p = sqlite3DbMallocZero(db, n); if( p==0 ){ sqlite3_result_error_nomem(context); return; } p->db = db; p->nEst = sqlite3_value_int64(argv[2]); p->nRow = 0; p->nLimit = sqlite3_value_int64(argv[3]); p->nCol = nCol; p->nKeyCol = nKeyCol; p->nSkipAhead = 0; p->current.anDLt = (tRowcnt*)&p[1]; p->current.anEq = &p->current.anDLt[nColUp]; #ifdef SQLITE_ENABLE_STAT4 p->mxSample = p->nLimit==0 ? mxSample : 0; if( mxSample ){ u8 *pSpace; /* Allocated space not yet assigned */ int i; /* Used to iterate through p->aSample[] */ p->iGet = -1; p->nPSample = (tRowcnt)(p->nEst/(mxSample/3+1) + 1); p->current.anLt = &p->current.anEq[nColUp]; p->iPrn = 0x689e962d*(u32)nCol ^ 0xd0944565*(u32)sqlite3_value_int(argv[2]); /* Set up the StatAccum.a[] and aBest[] arrays */ p->a = (struct StatSample*)&p->current.anLt[nColUp]; p->aBest = &p->a[mxSample]; pSpace = (u8*)(&p->a[mxSample+nCol]); for(i=0; i<(mxSample+nCol); i++){ p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); } assert( (pSpace - (u8*)p)==n ); for(i=0; iaBest[i].iCol = i; } } #endif /* Return a pointer to the allocated object to the caller. Note that ** only the pointer (the 2nd parameter) matters. The size of the object ** (given by the 3rd parameter) is never used and can be any positive ** value. */ sqlite3_result_blob(context, p, sizeof(*p), statAccumDestructor); } static const FuncDef statInitFuncdef = { 4, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ statInit, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "stat_init", /* zName */ {0} }; #ifdef SQLITE_ENABLE_STAT4 /* ** pNew and pOld are both candidate non-periodic samples selected for ** the same column (pNew->iCol==pOld->iCol). Ignoring this column and ** considering only any trailing columns and the sample hash value, this ** function returns true if sample pNew is to be preferred over pOld. ** In other words, if we assume that the cardinalities of the selected ** column for pNew and pOld are equal, is pNew to be preferred over pOld. ** ** This function assumes that for each argument sample, the contents of ** the anEq[] array from pSample->anEq[pSample->iCol+1] onwards are valid. */ static int sampleIsBetterPost( StatAccum *pAccum, StatSample *pNew, StatSample *pOld ){ int nCol = pAccum->nCol; int i; assert( pNew->iCol==pOld->iCol ); for(i=pNew->iCol+1; ianEq[i]>pOld->anEq[i] ) return 1; if( pNew->anEq[i]anEq[i] ) return 0; } if( pNew->iHash>pOld->iHash ) return 1; return 0; } #endif #ifdef SQLITE_ENABLE_STAT4 /* ** Return true if pNew is to be preferred over pOld. ** ** This function assumes that for each argument sample, the contents of ** the anEq[] array from pSample->anEq[pSample->iCol] onwards are valid. */ static int sampleIsBetter( StatAccum *pAccum, StatSample *pNew, StatSample *pOld ){ tRowcnt nEqNew = pNew->anEq[pNew->iCol]; tRowcnt nEqOld = pOld->anEq[pOld->iCol]; assert( pOld->isPSample==0 && pNew->isPSample==0 ); assert( IsStat4 || (pNew->iCol==0 && pOld->iCol==0) ); if( (nEqNew>nEqOld) ) return 1; if( nEqNew==nEqOld ){ if( pNew->iColiCol ) return 1; return (pNew->iCol==pOld->iCol && sampleIsBetterPost(pAccum, pNew, pOld)); } return 0; } /* ** Copy the contents of sample *pNew into the p->a[] array. If necessary, ** remove the least desirable sample from p->a[] to make room. */ static void sampleInsert(StatAccum *p, StatSample *pNew, int nEqZero){ StatSample *pSample = 0; int i; assert( IsStat4 || nEqZero==0 ); /* StatAccum.nMaxEqZero is set to the maximum number of leading 0 ** values in the anEq[] array of any sample in StatAccum.a[]. In ** other words, if nMaxEqZero is n, then it is guaranteed that there ** are no samples with StatSample.anEq[m]==0 for (m>=n). */ if( nEqZero>p->nMaxEqZero ){ p->nMaxEqZero = nEqZero; } if( pNew->isPSample==0 ){ StatSample *pUpgrade = 0; assert( pNew->anEq[pNew->iCol]>0 ); /* This sample is being added because the prefix that ends in column ** iCol occurs many times in the table. However, if we have already ** added a sample that shares this prefix, there is no need to add ** this one. Instead, upgrade the priority of the highest priority ** existing sample that shares this prefix. */ for(i=p->nSample-1; i>=0; i--){ StatSample *pOld = &p->a[i]; if( pOld->anEq[pNew->iCol]==0 ){ if( pOld->isPSample ) return; assert( pOld->iCol>pNew->iCol ); assert( sampleIsBetter(p, pNew, pOld) ); if( pUpgrade==0 || sampleIsBetter(p, pOld, pUpgrade) ){ pUpgrade = pOld; } } } if( pUpgrade ){ pUpgrade->iCol = pNew->iCol; pUpgrade->anEq[pUpgrade->iCol] = pNew->anEq[pUpgrade->iCol]; goto find_new_min; } } /* If necessary, remove sample iMin to make room for the new sample. */ if( p->nSample>=p->mxSample ){ StatSample *pMin = &p->a[p->iMin]; tRowcnt *anEq = pMin->anEq; tRowcnt *anLt = pMin->anLt; tRowcnt *anDLt = pMin->anDLt; sampleClear(p->db, pMin); memmove(pMin, &pMin[1], sizeof(p->a[0])*(p->nSample-p->iMin-1)); pSample = &p->a[p->nSample-1]; pSample->nRowid = 0; pSample->anEq = anEq; pSample->anDLt = anDLt; pSample->anLt = anLt; p->nSample = p->mxSample-1; } /* The "rows less-than" for the rowid column must be greater than that ** for the last sample in the p->a[] array. Otherwise, the samples would ** be out of order. */ assert( p->nSample==0 || pNew->anLt[p->nCol-1] > p->a[p->nSample-1].anLt[p->nCol-1] ); /* Insert the new sample */ pSample = &p->a[p->nSample]; sampleCopy(p, pSample, pNew); p->nSample++; /* Zero the first nEqZero entries in the anEq[] array. */ memset(pSample->anEq, 0, sizeof(tRowcnt)*nEqZero); find_new_min: if( p->nSample>=p->mxSample ){ int iMin = -1; for(i=0; imxSample; i++){ if( p->a[i].isPSample ) continue; if( iMin<0 || sampleIsBetter(p, &p->a[iMin], &p->a[i]) ){ iMin = i; } } assert( iMin>=0 ); p->iMin = iMin; } } #endif /* SQLITE_ENABLE_STAT4 */ #ifdef SQLITE_ENABLE_STAT4 /* ** Field iChng of the index being scanned has changed. So at this point ** p->current contains a sample that reflects the previous row of the ** index. The value of anEq[iChng] and subsequent anEq[] elements are ** correct at this point. */ static void samplePushPrevious(StatAccum *p, int iChng){ int i; /* Check if any samples from the aBest[] array should be pushed ** into IndexSample.a[] at this point. */ for(i=(p->nCol-2); i>=iChng; i--){ StatSample *pBest = &p->aBest[i]; pBest->anEq[i] = p->current.anEq[i]; if( p->nSamplemxSample || sampleIsBetter(p, pBest, &p->a[p->iMin]) ){ sampleInsert(p, pBest, i); } } /* Check that no sample contains an anEq[] entry with an index of ** p->nMaxEqZero or greater set to zero. */ for(i=p->nSample-1; i>=0; i--){ int j; for(j=p->nMaxEqZero; jnCol; j++) assert( p->a[i].anEq[j]>0 ); } /* Update the anEq[] fields of any samples already collected. */ if( iChngnMaxEqZero ){ for(i=p->nSample-1; i>=0; i--){ int j; for(j=iChng; jnCol; j++){ if( p->a[i].anEq[j]==0 ) p->a[i].anEq[j] = p->current.anEq[j]; } } p->nMaxEqZero = iChng; } } #endif /* SQLITE_ENABLE_STAT4 */ /* ** Implementation of the stat_push SQL function: stat_push(P,C,R) ** Arguments: ** ** P Pointer to the StatAccum object created by stat_init() ** C Index of left-most column to differ from previous row ** R Rowid for the current row. Might be a key record for ** WITHOUT ROWID tables. ** ** The purpose of this routine is to collect statistical data and/or ** samples from the index being analyzed into the StatAccum object. ** The stat_get() SQL function will be used afterwards to ** retrieve the information gathered. ** ** This SQL function usually returns NULL, but might return an integer ** if it wants the byte-code to do special processing. ** ** The R parameter is only used for STAT4 */ static void statPush( sqlite3_context *context, int argc, sqlite3_value **argv ){ int i; /* The three function arguments */ StatAccum *p = (StatAccum*)sqlite3_value_blob(argv[0]); int iChng = sqlite3_value_int(argv[1]); UNUSED_PARAMETER( argc ); UNUSED_PARAMETER( context ); assert( p->nCol>0 ); assert( iChngnCol ); if( p->nRow==0 ){ /* This is the first call to this function. Do initialization. */ for(i=0; inCol; i++) p->current.anEq[i] = 1; }else{ /* Second and subsequent calls get processed here */ #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ) samplePushPrevious(p, iChng); #endif /* Update anDLt[], anLt[] and anEq[] to reflect the values that apply ** to the current row of the index. */ for(i=0; icurrent.anEq[i]++; } for(i=iChng; inCol; i++){ p->current.anDLt[i]++; #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ) p->current.anLt[i] += p->current.anEq[i]; #endif p->current.anEq[i] = 1; } } p->nRow++; #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ){ tRowcnt nLt; if( sqlite3_value_type(argv[2])==SQLITE_INTEGER ){ sampleSetRowidInt64(p->db, &p->current, sqlite3_value_int64(argv[2])); }else{ sampleSetRowid(p->db, &p->current, sqlite3_value_bytes(argv[2]), sqlite3_value_blob(argv[2])); } p->current.iHash = p->iPrn = p->iPrn*1103515245 + 12345; nLt = p->current.anLt[p->nCol-1]; /* Check if this is to be a periodic sample. If so, add it. */ if( (nLt/p->nPSample)!=(nLt+1)/p->nPSample ){ p->current.isPSample = 1; p->current.iCol = 0; sampleInsert(p, &p->current, p->nCol-1); p->current.isPSample = 0; } /* Update the aBest[] array. */ for(i=0; i<(p->nCol-1); i++){ p->current.iCol = i; if( i>=iChng || sampleIsBetterPost(p, &p->current, &p->aBest[i]) ){ sampleCopy(p, &p->aBest[i], &p->current); } } }else #endif if( p->nLimit && p->nRow>(tRowcnt)p->nLimit*(p->nSkipAhead+1) ){ p->nSkipAhead++; sqlite3_result_int(context, p->current.anDLt[0]>0); } } static const FuncDef statPushFuncdef = { 2+IsStat4, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ statPush, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "stat_push", /* zName */ {0} }; #define STAT_GET_STAT1 0 /* "stat" column of stat1 table */ #define STAT_GET_ROWID 1 /* "rowid" column of stat[34] entry */ #define STAT_GET_NEQ 2 /* "neq" column of stat[34] entry */ #define STAT_GET_NLT 3 /* "nlt" column of stat[34] entry */ #define STAT_GET_NDLT 4 /* "ndlt" column of stat[34] entry */ /* ** Implementation of the stat_get(P,J) SQL function. This routine is ** used to query statistical information that has been gathered into ** the StatAccum object by prior calls to stat_push(). The P parameter ** has type BLOB but it is really just a pointer to the StatAccum object. ** The content to returned is determined by the parameter J ** which is one of the STAT_GET_xxxx values defined above. ** ** The stat_get(P,J) function is not available to generic SQL. It is ** inserted as part of a manually constructed bytecode program. (See ** the callStatGet() routine below.) It is guaranteed that the P ** parameter will always be a pointer to a StatAccum object, never a ** NULL. ** ** If STAT4 is not enabled, then J is always ** STAT_GET_STAT1 and is hence omitted and this routine becomes ** a one-parameter function, stat_get(P), that always returns the ** stat1 table entry information. */ static void statGet( sqlite3_context *context, int argc, sqlite3_value **argv ){ StatAccum *p = (StatAccum*)sqlite3_value_blob(argv[0]); #ifdef SQLITE_ENABLE_STAT4 /* STAT4 has a parameter on this routine. */ int eCall = sqlite3_value_int(argv[1]); assert( argc==2 ); assert( eCall==STAT_GET_STAT1 || eCall==STAT_GET_NEQ || eCall==STAT_GET_ROWID || eCall==STAT_GET_NLT || eCall==STAT_GET_NDLT ); assert( eCall==STAT_GET_STAT1 || p->mxSample ); if( eCall==STAT_GET_STAT1 ) #else assert( argc==1 ); #endif { /* Return the value to store in the "stat" column of the sqlite_stat1 ** table for this index. ** ** The value is a string composed of a list of integers describing ** the index. The first integer in the list is the total number of ** entries in the index. There is one additional integer in the list ** for each indexed column. This additional integer is an estimate of ** the number of rows matched by a equality query on the index using ** a key with the corresponding number of fields. In other words, ** if the index is on columns (a,b) and the sqlite_stat1 value is ** "100 10 2", then SQLite estimates that: ** ** * the index contains 100 rows, ** * "WHERE a=?" matches 10 rows, and ** * "WHERE a=? AND b=?" matches 2 rows. ** ** If D is the count of distinct values and K is the total number of ** rows, then each estimate is computed as: ** ** I = (K+D-1)/D */ sqlite3_str sStat; /* Text of the constructed "stat" line */ int i; /* Loop counter */ sqlite3StrAccumInit(&sStat, 0, 0, 0, (p->nKeyCol+1)*100); sqlite3_str_appendf(&sStat, "%llu", p->nSkipAhead ? (u64)p->nEst : (u64)p->nRow); for(i=0; inKeyCol; i++){ u64 nDistinct = p->current.anDLt[i] + 1; u64 iVal = (p->nRow + nDistinct - 1) / nDistinct; sqlite3_str_appendf(&sStat, " %llu", iVal); assert( p->current.anEq[i] ); } sqlite3ResultStrAccum(context, &sStat); } #ifdef SQLITE_ENABLE_STAT4 else if( eCall==STAT_GET_ROWID ){ if( p->iGet<0 ){ samplePushPrevious(p, 0); p->iGet = 0; } if( p->iGetnSample ){ StatSample *pS = p->a + p->iGet; if( pS->nRowid==0 ){ sqlite3_result_int64(context, pS->u.iRowid); }else{ sqlite3_result_blob(context, pS->u.aRowid, pS->nRowid, SQLITE_TRANSIENT); } } }else{ tRowcnt *aCnt = 0; sqlite3_str sStat; int i; assert( p->iGetnSample ); switch( eCall ){ case STAT_GET_NEQ: aCnt = p->a[p->iGet].anEq; break; case STAT_GET_NLT: aCnt = p->a[p->iGet].anLt; break; default: { aCnt = p->a[p->iGet].anDLt; p->iGet++; break; } } sqlite3StrAccumInit(&sStat, 0, 0, 0, p->nCol*100); for(i=0; inCol; i++){ sqlite3_str_appendf(&sStat, "%llu ", (u64)aCnt[i]); } if( sStat.nChar ) sStat.nChar--; sqlite3ResultStrAccum(context, &sStat); } #endif /* SQLITE_ENABLE_STAT4 */ #ifndef SQLITE_DEBUG UNUSED_PARAMETER( argc ); #endif } static const FuncDef statGetFuncdef = { 1+IsStat4, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ statGet, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "stat_get", /* zName */ {0} }; static void callStatGet(Parse *pParse, int regStat, int iParam, int regOut){ #ifdef SQLITE_ENABLE_STAT4 sqlite3VdbeAddOp2(pParse->pVdbe, OP_Integer, iParam, regStat+1); #elif SQLITE_DEBUG assert( iParam==STAT_GET_STAT1 ); #else UNUSED_PARAMETER( iParam ); #endif assert( regOut!=regStat && regOut!=regStat+1 ); sqlite3VdbeAddFunctionCall(pParse, 0, regStat, regOut, 1+IsStat4, &statGetFuncdef, 0); } #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS /* Add a comment to the most recent VDBE opcode that is the name ** of the k-th column of the pIdx index. */ static void analyzeVdbeCommentIndexWithColumnName( Vdbe *v, /* Prepared statement under construction */ Index *pIdx, /* Index whose column is being loaded */ int k /* Which column index */ ){ int i; /* Index of column in the table */ assert( k>=0 && knColumn ); i = pIdx->aiColumn[k]; if( NEVER(i==XN_ROWID) ){ VdbeComment((v,"%s.rowid",pIdx->zName)); }else if( i==XN_EXPR ){ VdbeComment((v,"%s.expr(%d)",pIdx->zName, k)); }else{ VdbeComment((v,"%s.%s", pIdx->zName, pIdx->pTable->aCol[i].zCnName)); } } #else # define analyzeVdbeCommentIndexWithColumnName(a,b,c) #endif /* SQLITE_DEBUG */ /* ** Generate code to do an analysis of all indices associated with ** a single table. */ static void analyzeOneTable( Parse *pParse, /* Parser context */ Table *pTab, /* Table whose indices are to be analyzed */ Index *pOnlyIdx, /* If not NULL, only analyze this one index */ int iStatCur, /* Index of VdbeCursor that writes the sqlite_stat1 table */ int iMem, /* Available memory locations begin here */ int iTab /* Next available cursor */ ){ sqlite3 *db = pParse->db; /* Database handle */ Index *pIdx; /* An index to being analyzed */ int iIdxCur; /* Cursor open on index being analyzed */ int iTabCur; /* Table cursor */ Vdbe *v; /* The virtual machine being built up */ int i; /* Loop counter */ int jZeroRows = -1; /* Jump from here if number of rows is zero */ int iDb; /* Index of database containing pTab */ u8 needTableCnt = 1; /* True to count the table */ int regNewRowid = iMem++; /* Rowid for the inserted record */ int regStat = iMem++; /* Register to hold StatAccum object */ int regChng = iMem++; /* Index of changed index field */ int regRowid = iMem++; /* Rowid argument passed to stat_push() */ int regTemp = iMem++; /* Temporary use register */ int regTemp2 = iMem++; /* Second temporary use register */ int regTabname = iMem++; /* Register containing table name */ int regIdxname = iMem++; /* Register containing index name */ int regStat1 = iMem++; /* Value for the stat column of sqlite_stat1 */ int regPrev = iMem; /* MUST BE LAST (see below) */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK Table *pStat1 = 0; #endif pParse->nMem = MAX(pParse->nMem, iMem); v = sqlite3GetVdbe(pParse); if( v==0 || NEVER(pTab==0) ){ return; } if( !IsOrdinaryTable(pTab) ){ /* Do not gather statistics on views or virtual tables */ return; } if( sqlite3_strlike("sqlite\\_%", pTab->zName, '\\')==0 ){ /* Do not gather statistics on system tables */ return; } assert( sqlite3BtreeHoldsAllMutexes(db) ); iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 ); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); #ifndef SQLITE_OMIT_AUTHORIZATION if( sqlite3AuthCheck(pParse, SQLITE_ANALYZE, pTab->zName, 0, db->aDb[iDb].zDbSName ) ){ return; } #endif #ifdef SQLITE_ENABLE_PREUPDATE_HOOK if( db->xPreUpdateCallback ){ pStat1 = (Table*)sqlite3DbMallocZero(db, sizeof(Table) + 13); if( pStat1==0 ) return; pStat1->zName = (char*)&pStat1[1]; memcpy(pStat1->zName, "sqlite_stat1", 13); pStat1->nCol = 3; pStat1->iPKey = -1; sqlite3VdbeAddOp4(pParse->pVdbe, OP_Noop, 0, 0, 0,(char*)pStat1,P4_DYNBLOB); } #endif /* Establish a read-lock on the table at the shared-cache level. ** Open a read-only cursor on the table. Also allocate a cursor number ** to use for scanning indexes (iIdxCur). No index cursor is opened at ** this time though. */ sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); iTabCur = iTab++; iIdxCur = iTab++; pParse->nTab = MAX(pParse->nTab, iTab); sqlite3OpenTable(pParse, iTabCur, iDb, pTab, OP_OpenRead); sqlite3VdbeLoadString(v, regTabname, pTab->zName); for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int nCol; /* Number of columns in pIdx. "N" */ int addrRewind; /* Address of "OP_Rewind iIdxCur" */ int addrNextRow; /* Address of "next_row:" */ const char *zIdxName; /* Name of the index */ int nColTest; /* Number of columns to test for changes */ if( pOnlyIdx && pOnlyIdx!=pIdx ) continue; if( pIdx->pPartIdxWhere==0 ) needTableCnt = 0; if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIdx) ){ nCol = pIdx->nKeyCol; zIdxName = pTab->zName; nColTest = nCol - 1; }else{ nCol = pIdx->nColumn; zIdxName = pIdx->zName; nColTest = pIdx->uniqNotNull ? pIdx->nKeyCol-1 : nCol-1; } /* Populate the register containing the index name. */ sqlite3VdbeLoadString(v, regIdxname, zIdxName); VdbeComment((v, "Analysis for %s.%s", pTab->zName, zIdxName)); /* ** Pseudo-code for loop that calls stat_push(): ** ** Rewind csr ** if eof(csr) goto end_of_scan; ** regChng = 0 ** goto chng_addr_0; ** ** next_row: ** regChng = 0 ** if( idx(0) != regPrev(0) ) goto chng_addr_0 ** regChng = 1 ** if( idx(1) != regPrev(1) ) goto chng_addr_1 ** ... ** regChng = N ** goto chng_addr_N ** ** chng_addr_0: ** regPrev(0) = idx(0) ** chng_addr_1: ** regPrev(1) = idx(1) ** ... ** ** endDistinctTest: ** regRowid = idx(rowid) ** stat_push(P, regChng, regRowid) ** Next csr ** if !eof(csr) goto next_row; ** ** end_of_scan: */ /* Make sure there are enough memory cells allocated to accommodate ** the regPrev array and a trailing rowid (the rowid slot is required ** when building a record to insert into the sample column of ** the sqlite_stat4 table. */ pParse->nMem = MAX(pParse->nMem, regPrev+nColTest); /* Open a read-only cursor on the index being analyzed. */ assert( iDb==sqlite3SchemaToIndex(db, pIdx->pSchema) ); sqlite3VdbeAddOp3(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); VdbeComment((v, "%s", pIdx->zName)); /* Invoke the stat_init() function. The arguments are: ** ** (1) the number of columns in the index including the rowid ** (or for a WITHOUT ROWID table, the number of PK columns), ** (2) the number of columns in the key without the rowid/pk ** (3) estimated number of rows in the index, */ sqlite3VdbeAddOp2(v, OP_Integer, nCol, regStat+1); assert( regRowid==regStat+2 ); sqlite3VdbeAddOp2(v, OP_Integer, pIdx->nKeyCol, regRowid); #ifdef SQLITE_ENABLE_STAT4 if( OptimizationEnabled(db, SQLITE_Stat4) ){ sqlite3VdbeAddOp2(v, OP_Count, iIdxCur, regTemp); addrRewind = sqlite3VdbeAddOp1(v, OP_Rewind, iIdxCur); VdbeCoverage(v); }else #endif { addrRewind = sqlite3VdbeAddOp1(v, OP_Rewind, iIdxCur); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Count, iIdxCur, regTemp, 1); } assert( regTemp2==regStat+4 ); sqlite3VdbeAddOp2(v, OP_Integer, db->nAnalysisLimit, regTemp2); sqlite3VdbeAddFunctionCall(pParse, 0, regStat+1, regStat, 4, &statInitFuncdef, 0); /* Implementation of the following: ** ** Rewind csr ** if eof(csr) goto end_of_scan; ** regChng = 0 ** goto next_push_0; ** */ sqlite3VdbeAddOp2(v, OP_Integer, 0, regChng); addrNextRow = sqlite3VdbeCurrentAddr(v); if( nColTest>0 ){ int endDistinctTest = sqlite3VdbeMakeLabel(pParse); int *aGotoChng; /* Array of jump instruction addresses */ aGotoChng = sqlite3DbMallocRawNN(db, sizeof(int)*nColTest); if( aGotoChng==0 ) continue; /* ** next_row: ** regChng = 0 ** if( idx(0) != regPrev(0) ) goto chng_addr_0 ** regChng = 1 ** if( idx(1) != regPrev(1) ) goto chng_addr_1 ** ... ** regChng = N ** goto endDistinctTest */ sqlite3VdbeAddOp0(v, OP_Goto); addrNextRow = sqlite3VdbeCurrentAddr(v); if( nColTest==1 && pIdx->nKeyCol==1 && IsUniqueIndex(pIdx) ){ /* For a single-column UNIQUE index, once we have found a non-NULL ** row, we know that all the rest will be distinct, so skip ** subsequent distinctness tests. */ sqlite3VdbeAddOp2(v, OP_NotNull, regPrev, endDistinctTest); VdbeCoverage(v); } for(i=0; iazColl[i]); sqlite3VdbeAddOp2(v, OP_Integer, i, regChng); sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, regTemp); analyzeVdbeCommentIndexWithColumnName(v,pIdx,i); aGotoChng[i] = sqlite3VdbeAddOp4(v, OP_Ne, regTemp, 0, regPrev+i, pColl, P4_COLLSEQ); sqlite3VdbeChangeP5(v, SQLITE_NULLEQ); VdbeCoverage(v); } sqlite3VdbeAddOp2(v, OP_Integer, nColTest, regChng); sqlite3VdbeGoto(v, endDistinctTest); /* ** chng_addr_0: ** regPrev(0) = idx(0) ** chng_addr_1: ** regPrev(1) = idx(1) ** ... */ sqlite3VdbeJumpHere(v, addrNextRow-1); for(i=0; ipTable); int j, k, regKey; regKey = sqlite3GetTempRange(pParse, pPk->nKeyCol); for(j=0; jnKeyCol; j++){ k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[j]); assert( k>=0 && knColumn ); sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, regKey+j); analyzeVdbeCommentIndexWithColumnName(v,pIdx,k); } sqlite3VdbeAddOp3(v, OP_MakeRecord, regKey, pPk->nKeyCol, regRowid); sqlite3ReleaseTempRange(pParse, regKey, pPk->nKeyCol); } } #endif assert( regChng==(regStat+1) ); { sqlite3VdbeAddFunctionCall(pParse, 1, regStat, regTemp, 2+IsStat4, &statPushFuncdef, 0); if( db->nAnalysisLimit ){ int j1, j2, j3; j1 = sqlite3VdbeAddOp1(v, OP_IsNull, regTemp); VdbeCoverage(v); j2 = sqlite3VdbeAddOp1(v, OP_If, regTemp); VdbeCoverage(v); j3 = sqlite3VdbeAddOp4Int(v, OP_SeekGT, iIdxCur, 0, regPrev, 1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, j1); sqlite3VdbeAddOp2(v, OP_Next, iIdxCur, addrNextRow); VdbeCoverage(v); sqlite3VdbeJumpHere(v, j2); sqlite3VdbeJumpHere(v, j3); }else{ sqlite3VdbeAddOp2(v, OP_Next, iIdxCur, addrNextRow); VdbeCoverage(v); } } /* Add the entry to the stat1 table. */ callStatGet(pParse, regStat, STAT_GET_STAT1, regStat1); assert( "BBB"[0]==SQLITE_AFF_TEXT ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regTabname, 3, regTemp, "BBB", 0); sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regNewRowid); sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regTemp, regNewRowid); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK sqlite3VdbeChangeP4(v, -1, (char*)pStat1, P4_TABLE); #endif sqlite3VdbeChangeP5(v, OPFLAG_APPEND); /* Add the entries to the stat4 table. */ #ifdef SQLITE_ENABLE_STAT4 if( OptimizationEnabled(db, SQLITE_Stat4) && db->nAnalysisLimit==0 ){ int regEq = regStat1; int regLt = regStat1+1; int regDLt = regStat1+2; int regSample = regStat1+3; int regCol = regStat1+4; int regSampleRowid = regCol + nCol; int addrNext; int addrIsNull; u8 seekOp = HasRowid(pTab) ? OP_NotExists : OP_NotFound; pParse->nMem = MAX(pParse->nMem, regCol+nCol); addrNext = sqlite3VdbeCurrentAddr(v); callStatGet(pParse, regStat, STAT_GET_ROWID, regSampleRowid); addrIsNull = sqlite3VdbeAddOp1(v, OP_IsNull, regSampleRowid); VdbeCoverage(v); callStatGet(pParse, regStat, STAT_GET_NEQ, regEq); callStatGet(pParse, regStat, STAT_GET_NLT, regLt); callStatGet(pParse, regStat, STAT_GET_NDLT, regDLt); sqlite3VdbeAddOp4Int(v, seekOp, iTabCur, addrNext, regSampleRowid, 0); VdbeCoverage(v); for(i=0; izName)); sqlite3VdbeAddOp2(v, OP_Count, iTabCur, regStat1); jZeroRows = sqlite3VdbeAddOp1(v, OP_IfNot, regStat1); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Null, 0, regIdxname); assert( "BBB"[0]==SQLITE_AFF_TEXT ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regTabname, 3, regTemp, "BBB", 0); sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regNewRowid); sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regTemp, regNewRowid); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK sqlite3VdbeChangeP4(v, -1, (char*)pStat1, P4_TABLE); #endif sqlite3VdbeJumpHere(v, jZeroRows); } } /* ** Generate code that will cause the most recent index analysis to ** be loaded into internal hash tables where is can be used. */ static void loadAnalysis(Parse *pParse, int iDb){ Vdbe *v = sqlite3GetVdbe(pParse); if( v ){ sqlite3VdbeAddOp1(v, OP_LoadAnalysis, iDb); } } /* ** Generate code that will do an analysis of an entire database */ static void analyzeDatabase(Parse *pParse, int iDb){ sqlite3 *db = pParse->db; Schema *pSchema = db->aDb[iDb].pSchema; /* Schema of database iDb */ HashElem *k; int iStatCur; int iMem; int iTab; sqlite3BeginWriteOperation(pParse, 0, iDb); iStatCur = pParse->nTab; pParse->nTab += 3; openStatTable(pParse, iDb, iStatCur, 0, 0); iMem = pParse->nMem+1; iTab = pParse->nTab; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ Table *pTab = (Table*)sqliteHashData(k); analyzeOneTable(pParse, pTab, 0, iStatCur, iMem, iTab); } loadAnalysis(pParse, iDb); } /* ** Generate code that will do an analysis of a single table in ** a database. If pOnlyIdx is not NULL then it is a single index ** in pTab that should be analyzed. */ static void analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx){ int iDb; int iStatCur; assert( pTab!=0 ); assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); sqlite3BeginWriteOperation(pParse, 0, iDb); iStatCur = pParse->nTab; pParse->nTab += 3; if( pOnlyIdx ){ openStatTable(pParse, iDb, iStatCur, pOnlyIdx->zName, "idx"); }else{ openStatTable(pParse, iDb, iStatCur, pTab->zName, "tbl"); } analyzeOneTable(pParse, pTab, pOnlyIdx, iStatCur,pParse->nMem+1,pParse->nTab); loadAnalysis(pParse, iDb); } /* ** Generate code for the ANALYZE command. The parser calls this routine ** when it recognizes an ANALYZE command. ** ** ANALYZE -- 1 ** ANALYZE -- 2 ** ANALYZE ?.? -- 3 ** ** Form 1 causes all indices in all attached databases to be analyzed. ** Form 2 analyzes all indices the single database named. ** Form 3 analyzes all indices associated with the named table. */ SQLITE_PRIVATE void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){ sqlite3 *db = pParse->db; int iDb; int i; char *z, *zDb; Table *pTab; Index *pIdx; Token *pTableName; Vdbe *v; /* Read the database schema. If an error occurs, leave an error message ** and code in pParse and return NULL. */ assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ return; } assert( pName2!=0 || pName1==0 ); if( pName1==0 ){ /* Form 1: Analyze everything */ for(i=0; inDb; i++){ if( i==1 ) continue; /* Do not analyze the TEMP database */ analyzeDatabase(pParse, i); } }else if( pName2->n==0 && (iDb = sqlite3FindDb(db, pName1))>=0 ){ /* Analyze the schema named as the argument */ analyzeDatabase(pParse, iDb); }else{ /* Form 3: Analyze the table or index named as an argument */ iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pTableName); if( iDb>=0 ){ zDb = pName2->n ? db->aDb[iDb].zDbSName : 0; z = sqlite3NameFromToken(db, pTableName); if( z ){ if( (pIdx = sqlite3FindIndex(db, z, zDb))!=0 ){ analyzeTable(pParse, pIdx->pTable, pIdx); }else if( (pTab = sqlite3LocateTable(pParse, 0, z, zDb))!=0 ){ analyzeTable(pParse, pTab, 0); } sqlite3DbFree(db, z); } } } if( db->nSqlExec==0 && (v = sqlite3GetVdbe(pParse))!=0 ){ sqlite3VdbeAddOp0(v, OP_Expire); } } /* ** Used to pass information from the analyzer reader through to the ** callback routine. */ typedef struct analysisInfo analysisInfo; struct analysisInfo { sqlite3 *db; const char *zDatabase; }; /* ** The first argument points to a nul-terminated string containing a ** list of space separated integers. Read the first nOut of these into ** the array aOut[]. */ static void decodeIntArray( char *zIntArray, /* String containing int array to decode */ int nOut, /* Number of slots in aOut[] */ tRowcnt *aOut, /* Store integers here */ LogEst *aLog, /* Or, if aOut==0, here */ Index *pIndex /* Handle extra flags for this index, if not NULL */ ){ char *z = zIntArray; int c; int i; tRowcnt v; #ifdef SQLITE_ENABLE_STAT4 if( z==0 ) z = ""; #else assert( z!=0 ); #endif for(i=0; *z && i='0' && c<='9' ){ v = v*10 + c - '0'; z++; } #ifdef SQLITE_ENABLE_STAT4 if( aOut ) aOut[i] = v; if( aLog ) aLog[i] = sqlite3LogEst(v); #else assert( aOut==0 ); UNUSED_PARAMETER(aOut); assert( aLog!=0 ); aLog[i] = sqlite3LogEst(v); #endif if( *z==' ' ) z++; } #ifndef SQLITE_ENABLE_STAT4 assert( pIndex!=0 ); { #else if( pIndex ){ #endif pIndex->bUnordered = 0; pIndex->noSkipScan = 0; while( z[0] ){ if( sqlite3_strglob("unordered*", z)==0 ){ pIndex->bUnordered = 1; }else if( sqlite3_strglob("sz=[0-9]*", z)==0 ){ int sz = sqlite3Atoi(z+3); if( sz<2 ) sz = 2; pIndex->szIdxRow = sqlite3LogEst(sz); }else if( sqlite3_strglob("noskipscan*", z)==0 ){ pIndex->noSkipScan = 1; } #ifdef SQLITE_ENABLE_COSTMULT else if( sqlite3_strglob("costmult=[0-9]*",z)==0 ){ pIndex->pTable->costMult = sqlite3LogEst(sqlite3Atoi(z+9)); } #endif while( z[0]!=0 && z[0]!=' ' ) z++; while( z[0]==' ' ) z++; } } } /* ** This callback is invoked once for each index when reading the ** sqlite_stat1 table. ** ** argv[0] = name of the table ** argv[1] = name of the index (might be NULL) ** argv[2] = results of analysis - on integer for each column ** ** Entries for which argv[1]==NULL simply record the number of rows in ** the table. */ static int analysisLoader(void *pData, int argc, char **argv, char **NotUsed){ analysisInfo *pInfo = (analysisInfo*)pData; Index *pIndex; Table *pTable; const char *z; assert( argc==3 ); UNUSED_PARAMETER2(NotUsed, argc); if( argv==0 || argv[0]==0 || argv[2]==0 ){ return 0; } pTable = sqlite3FindTable(pInfo->db, argv[0], pInfo->zDatabase); if( pTable==0 ){ return 0; } if( argv[1]==0 ){ pIndex = 0; }else if( sqlite3_stricmp(argv[0],argv[1])==0 ){ pIndex = sqlite3PrimaryKeyIndex(pTable); }else{ pIndex = sqlite3FindIndex(pInfo->db, argv[1], pInfo->zDatabase); } z = argv[2]; if( pIndex ){ tRowcnt *aiRowEst = 0; int nCol = pIndex->nKeyCol+1; #ifdef SQLITE_ENABLE_STAT4 /* Index.aiRowEst may already be set here if there are duplicate ** sqlite_stat1 entries for this index. In that case just clobber ** the old data with the new instead of allocating a new array. */ if( pIndex->aiRowEst==0 ){ pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol); if( pIndex->aiRowEst==0 ) sqlite3OomFault(pInfo->db); } aiRowEst = pIndex->aiRowEst; #endif pIndex->bUnordered = 0; decodeIntArray((char*)z, nCol, aiRowEst, pIndex->aiRowLogEst, pIndex); pIndex->hasStat1 = 1; if( pIndex->pPartIdxWhere==0 ){ pTable->nRowLogEst = pIndex->aiRowLogEst[0]; pTable->tabFlags |= TF_HasStat1; } }else{ Index fakeIdx; fakeIdx.szIdxRow = pTable->szTabRow; #ifdef SQLITE_ENABLE_COSTMULT fakeIdx.pTable = pTable; #endif decodeIntArray((char*)z, 1, 0, &pTable->nRowLogEst, &fakeIdx); pTable->szTabRow = fakeIdx.szIdxRow; pTable->tabFlags |= TF_HasStat1; } return 0; } /* ** If the Index.aSample variable is not NULL, delete the aSample[] array ** and its contents. */ SQLITE_PRIVATE void sqlite3DeleteIndexSamples(sqlite3 *db, Index *pIdx){ #ifdef SQLITE_ENABLE_STAT4 if( pIdx->aSample ){ int j; for(j=0; jnSample; j++){ IndexSample *p = &pIdx->aSample[j]; sqlite3DbFree(db, p->p); } sqlite3DbFree(db, pIdx->aSample); } if( db && db->pnBytesFreed==0 ){ pIdx->nSample = 0; pIdx->aSample = 0; } #else UNUSED_PARAMETER(db); UNUSED_PARAMETER(pIdx); #endif /* SQLITE_ENABLE_STAT4 */ } #ifdef SQLITE_ENABLE_STAT4 /* ** Populate the pIdx->aAvgEq[] array based on the samples currently ** stored in pIdx->aSample[]. */ static void initAvgEq(Index *pIdx){ if( pIdx ){ IndexSample *aSample = pIdx->aSample; IndexSample *pFinal = &aSample[pIdx->nSample-1]; int iCol; int nCol = 1; if( pIdx->nSampleCol>1 ){ /* If this is stat4 data, then calculate aAvgEq[] values for all ** sample columns except the last. The last is always set to 1, as ** once the trailing PK fields are considered all index keys are ** unique. */ nCol = pIdx->nSampleCol-1; pIdx->aAvgEq[nCol] = 1; } for(iCol=0; iColnSample; int i; /* Used to iterate through samples */ tRowcnt sumEq = 0; /* Sum of the nEq values */ tRowcnt avgEq = 0; tRowcnt nRow; /* Number of rows in index */ i64 nSum100 = 0; /* Number of terms contributing to sumEq */ i64 nDist100; /* Number of distinct values in index */ if( !pIdx->aiRowEst || iCol>=pIdx->nKeyCol || pIdx->aiRowEst[iCol+1]==0 ){ nRow = pFinal->anLt[iCol]; nDist100 = (i64)100 * pFinal->anDLt[iCol]; nSample--; }else{ nRow = pIdx->aiRowEst[0]; nDist100 = ((i64)100 * pIdx->aiRowEst[0]) / pIdx->aiRowEst[iCol+1]; } pIdx->nRowEst0 = nRow; /* Set nSum to the number of distinct (iCol+1) field prefixes that ** occur in the stat4 table for this index. Set sumEq to the sum of ** the nEq values for column iCol for the same set (adding the value ** only once where there exist duplicate prefixes). */ for(i=0; inSample-1) || aSample[i].anDLt[iCol]!=aSample[i+1].anDLt[iCol] ){ sumEq += aSample[i].anEq[iCol]; nSum100 += 100; } } if( nDist100>nSum100 && sumEqaAvgEq[iCol] = avgEq; } } } /* ** Look up an index by name. Or, if the name of a WITHOUT ROWID table ** is supplied instead, find the PRIMARY KEY index for that table. */ static Index *findIndexOrPrimaryKey( sqlite3 *db, const char *zName, const char *zDb ){ Index *pIdx = sqlite3FindIndex(db, zName, zDb); if( pIdx==0 ){ Table *pTab = sqlite3FindTable(db, zName, zDb); if( pTab && !HasRowid(pTab) ) pIdx = sqlite3PrimaryKeyIndex(pTab); } return pIdx; } /* ** Load the content from either the sqlite_stat4 ** into the relevant Index.aSample[] arrays. ** ** Arguments zSql1 and zSql2 must point to SQL statements that return ** data equivalent to the following: ** ** zSql1: SELECT idx,count(*) FROM %Q.sqlite_stat4 GROUP BY idx ** zSql2: SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4 ** ** where %Q is replaced with the database name before the SQL is executed. */ static int loadStatTbl( sqlite3 *db, /* Database handle */ const char *zSql1, /* SQL statement 1 (see above) */ const char *zSql2, /* SQL statement 2 (see above) */ const char *zDb /* Database name (e.g. "main") */ ){ int rc; /* Result codes from subroutines */ sqlite3_stmt *pStmt = 0; /* An SQL statement being run */ char *zSql; /* Text of the SQL statement */ Index *pPrevIdx = 0; /* Previous index in the loop */ IndexSample *pSample; /* A slot in pIdx->aSample[] */ assert( db->lookaside.bDisable ); zSql = sqlite3MPrintf(db, zSql1, zDb); if( !zSql ){ return SQLITE_NOMEM_BKPT; } rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); sqlite3DbFree(db, zSql); if( rc ) return rc; while( sqlite3_step(pStmt)==SQLITE_ROW ){ int nIdxCol = 1; /* Number of columns in stat4 records */ char *zIndex; /* Index name */ Index *pIdx; /* Pointer to the index object */ int nSample; /* Number of samples */ int nByte; /* Bytes of space required */ int i; /* Bytes of space required */ tRowcnt *pSpace; zIndex = (char *)sqlite3_column_text(pStmt, 0); if( zIndex==0 ) continue; nSample = sqlite3_column_int(pStmt, 1); pIdx = findIndexOrPrimaryKey(db, zIndex, zDb); assert( pIdx==0 || pIdx->nSample==0 ); if( pIdx==0 ) continue; assert( !HasRowid(pIdx->pTable) || pIdx->nColumn==pIdx->nKeyCol+1 ); if( !HasRowid(pIdx->pTable) && IsPrimaryKeyIndex(pIdx) ){ nIdxCol = pIdx->nKeyCol; }else{ nIdxCol = pIdx->nColumn; } pIdx->nSampleCol = nIdxCol; nByte = sizeof(IndexSample) * nSample; nByte += sizeof(tRowcnt) * nIdxCol * 3 * nSample; nByte += nIdxCol * sizeof(tRowcnt); /* Space for Index.aAvgEq[] */ pIdx->aSample = sqlite3DbMallocZero(db, nByte); if( pIdx->aSample==0 ){ sqlite3_finalize(pStmt); return SQLITE_NOMEM_BKPT; } pSpace = (tRowcnt*)&pIdx->aSample[nSample]; pIdx->aAvgEq = pSpace; pSpace += nIdxCol; pIdx->pTable->tabFlags |= TF_HasStat4; for(i=0; iaSample[i].anEq = pSpace; pSpace += nIdxCol; pIdx->aSample[i].anLt = pSpace; pSpace += nIdxCol; pIdx->aSample[i].anDLt = pSpace; pSpace += nIdxCol; } assert( ((u8*)pSpace)-nByte==(u8*)(pIdx->aSample) ); } rc = sqlite3_finalize(pStmt); if( rc ) return rc; zSql = sqlite3MPrintf(db, zSql2, zDb); if( !zSql ){ return SQLITE_NOMEM_BKPT; } rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); sqlite3DbFree(db, zSql); if( rc ) return rc; while( sqlite3_step(pStmt)==SQLITE_ROW ){ char *zIndex; /* Index name */ Index *pIdx; /* Pointer to the index object */ int nCol = 1; /* Number of columns in index */ zIndex = (char *)sqlite3_column_text(pStmt, 0); if( zIndex==0 ) continue; pIdx = findIndexOrPrimaryKey(db, zIndex, zDb); if( pIdx==0 ) continue; /* This next condition is true if data has already been loaded from ** the sqlite_stat4 table. */ nCol = pIdx->nSampleCol; if( pIdx!=pPrevIdx ){ initAvgEq(pPrevIdx); pPrevIdx = pIdx; } pSample = &pIdx->aSample[pIdx->nSample]; decodeIntArray((char*)sqlite3_column_text(pStmt,1),nCol,pSample->anEq,0,0); decodeIntArray((char*)sqlite3_column_text(pStmt,2),nCol,pSample->anLt,0,0); decodeIntArray((char*)sqlite3_column_text(pStmt,3),nCol,pSample->anDLt,0,0); /* Take a copy of the sample. Add two 0x00 bytes the end of the buffer. ** This is in case the sample record is corrupted. In that case, the ** sqlite3VdbeRecordCompare() may read up to two varints past the ** end of the allocated buffer before it realizes it is dealing with ** a corrupt record. Adding the two 0x00 bytes prevents this from causing ** a buffer overread. */ pSample->n = sqlite3_column_bytes(pStmt, 4); pSample->p = sqlite3DbMallocZero(db, pSample->n + 2); if( pSample->p==0 ){ sqlite3_finalize(pStmt); return SQLITE_NOMEM_BKPT; } if( pSample->n ){ memcpy(pSample->p, sqlite3_column_blob(pStmt, 4), pSample->n); } pIdx->nSample++; } rc = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ) initAvgEq(pPrevIdx); return rc; } /* ** Load content from the sqlite_stat4 table into ** the Index.aSample[] arrays of all indices. */ static int loadStat4(sqlite3 *db, const char *zDb){ int rc = SQLITE_OK; /* Result codes from subroutines */ const Table *pStat4; assert( db->lookaside.bDisable ); if( (pStat4 = sqlite3FindTable(db, "sqlite_stat4", zDb))!=0 && IsOrdinaryTable(pStat4) ){ rc = loadStatTbl(db, "SELECT idx,count(*) FROM %Q.sqlite_stat4 GROUP BY idx", "SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4", zDb ); } return rc; } #endif /* SQLITE_ENABLE_STAT4 */ /* ** Load the content of the sqlite_stat1 and sqlite_stat4 tables. The ** contents of sqlite_stat1 are used to populate the Index.aiRowEst[] ** arrays. The contents of sqlite_stat4 are used to populate the ** Index.aSample[] arrays. ** ** If the sqlite_stat1 table is not present in the database, SQLITE_ERROR ** is returned. In this case, even if SQLITE_ENABLE_STAT4 was defined ** during compilation and the sqlite_stat4 table is present, no data is ** read from it. ** ** If SQLITE_ENABLE_STAT4 was defined during compilation and the ** sqlite_stat4 table is not present in the database, SQLITE_ERROR is ** returned. However, in this case, data is read from the sqlite_stat1 ** table (if it is present) before returning. ** ** If an OOM error occurs, this function always sets db->mallocFailed. ** This means if the caller does not care about other errors, the return ** code may be ignored. */ SQLITE_PRIVATE int sqlite3AnalysisLoad(sqlite3 *db, int iDb){ analysisInfo sInfo; HashElem *i; char *zSql; int rc = SQLITE_OK; Schema *pSchema = db->aDb[iDb].pSchema; const Table *pStat1; assert( iDb>=0 && iDbnDb ); assert( db->aDb[iDb].pBt!=0 ); /* Clear any prior statistics */ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); for(i=sqliteHashFirst(&pSchema->tblHash); i; i=sqliteHashNext(i)){ Table *pTab = sqliteHashData(i); pTab->tabFlags &= ~TF_HasStat1; } for(i=sqliteHashFirst(&pSchema->idxHash); i; i=sqliteHashNext(i)){ Index *pIdx = sqliteHashData(i); pIdx->hasStat1 = 0; #ifdef SQLITE_ENABLE_STAT4 sqlite3DeleteIndexSamples(db, pIdx); pIdx->aSample = 0; #endif } /* Load new statistics out of the sqlite_stat1 table */ sInfo.db = db; sInfo.zDatabase = db->aDb[iDb].zDbSName; if( (pStat1 = sqlite3FindTable(db, "sqlite_stat1", sInfo.zDatabase)) && IsOrdinaryTable(pStat1) ){ zSql = sqlite3MPrintf(db, "SELECT tbl,idx,stat FROM %Q.sqlite_stat1", sInfo.zDatabase); if( zSql==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0); sqlite3DbFree(db, zSql); } } /* Set appropriate defaults on all indexes not in the sqlite_stat1 table */ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); for(i=sqliteHashFirst(&pSchema->idxHash); i; i=sqliteHashNext(i)){ Index *pIdx = sqliteHashData(i); if( !pIdx->hasStat1 ) sqlite3DefaultRowEst(pIdx); } /* Load the statistics from the sqlite_stat4 table. */ #ifdef SQLITE_ENABLE_STAT4 if( rc==SQLITE_OK ){ DisableLookaside; rc = loadStat4(db, sInfo.zDatabase); EnableLookaside; } for(i=sqliteHashFirst(&pSchema->idxHash); i; i=sqliteHashNext(i)){ Index *pIdx = sqliteHashData(i); sqlite3_free(pIdx->aiRowEst); pIdx->aiRowEst = 0; } #endif if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); } return rc; } #endif /* SQLITE_OMIT_ANALYZE */ /************** End of analyze.c *********************************************/ /************** Begin file attach.c ******************************************/ /* ** 2003 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the ATTACH and DETACH commands. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_ATTACH /* ** Resolve an expression that was part of an ATTACH or DETACH statement. This ** is slightly different from resolving a normal SQL expression, because simple ** identifiers are treated as strings, not possible column names or aliases. ** ** i.e. if the parser sees: ** ** ATTACH DATABASE abc AS def ** ** it treats the two expressions as literal strings 'abc' and 'def' instead of ** looking for columns of the same name. ** ** This only applies to the root node of pExpr, so the statement: ** ** ATTACH DATABASE abc||def AS 'db2' ** ** will fail because neither abc or def can be resolved. */ static int resolveAttachExpr(NameContext *pName, Expr *pExpr) { int rc = SQLITE_OK; if( pExpr ){ if( pExpr->op!=TK_ID ){ rc = sqlite3ResolveExprNames(pName, pExpr); }else{ pExpr->op = TK_STRING; } } return rc; } /* ** Return true if zName points to a name that may be used to refer to ** database iDb attached to handle db. */ SQLITE_PRIVATE int sqlite3DbIsNamed(sqlite3 *db, int iDb, const char *zName){ return ( sqlite3StrICmp(db->aDb[iDb].zDbSName, zName)==0 || (iDb==0 && sqlite3StrICmp("main", zName)==0) ); } /* ** An SQL user-function registered to do the work of an ATTACH statement. The ** three arguments to the function come directly from an attach statement: ** ** ATTACH DATABASE x AS y KEY z ** ** SELECT sqlite_attach(x, y, z) ** ** If the optional "KEY z" syntax is omitted, an SQL NULL is passed as the ** third argument. ** ** If the db->init.reopenMemdb flags is set, then instead of attaching a ** new database, close the database on db->init.iDb and reopen it as an ** empty MemDB. */ static void attachFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ int i; int rc = 0; sqlite3 *db = sqlite3_context_db_handle(context); const char *zName; const char *zFile; char *zPath = 0; char *zErr = 0; unsigned int flags; Db *aNew; /* New array of Db pointers */ Db *pNew; /* Db object for the newly attached database */ char *zErrDyn = 0; sqlite3_vfs *pVfs; UNUSED_PARAMETER(NotUsed); zFile = (const char *)sqlite3_value_text(argv[0]); zName = (const char *)sqlite3_value_text(argv[1]); if( zFile==0 ) zFile = ""; if( zName==0 ) zName = ""; #ifndef SQLITE_OMIT_DESERIALIZE # define REOPEN_AS_MEMDB(db) (db->init.reopenMemdb) #else # define REOPEN_AS_MEMDB(db) (0) #endif if( REOPEN_AS_MEMDB(db) ){ /* This is not a real ATTACH. Instead, this routine is being called ** from sqlite3_deserialize() to close database db->init.iDb and ** reopen it as a MemDB */ pVfs = sqlite3_vfs_find("memdb"); if( pVfs==0 ) return; pNew = &db->aDb[db->init.iDb]; if( pNew->pBt ) sqlite3BtreeClose(pNew->pBt); pNew->pBt = 0; pNew->pSchema = 0; rc = sqlite3BtreeOpen(pVfs, "x\0", db, &pNew->pBt, 0, SQLITE_OPEN_MAIN_DB); }else{ /* This is a real ATTACH ** ** Check for the following errors: ** ** * Too many attached databases, ** * Transaction currently open ** * Specified database name already being used. */ if( db->nDb>=db->aLimit[SQLITE_LIMIT_ATTACHED]+2 ){ zErrDyn = sqlite3MPrintf(db, "too many attached databases - max %d", db->aLimit[SQLITE_LIMIT_ATTACHED] ); goto attach_error; } for(i=0; inDb; i++){ assert( zName ); if( sqlite3DbIsNamed(db, i, zName) ){ zErrDyn = sqlite3MPrintf(db, "database %s is already in use", zName); goto attach_error; } } /* Allocate the new entry in the db->aDb[] array and initialize the schema ** hash tables. */ if( db->aDb==db->aDbStatic ){ aNew = sqlite3DbMallocRawNN(db, sizeof(db->aDb[0])*3 ); if( aNew==0 ) return; memcpy(aNew, db->aDb, sizeof(db->aDb[0])*2); }else{ aNew = sqlite3DbRealloc(db, db->aDb, sizeof(db->aDb[0])*(db->nDb+1) ); if( aNew==0 ) return; } db->aDb = aNew; pNew = &db->aDb[db->nDb]; memset(pNew, 0, sizeof(*pNew)); /* Open the database file. If the btree is successfully opened, use ** it to obtain the database schema. At this point the schema may ** or may not be initialized. */ flags = db->openFlags; rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr); if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM ) sqlite3OomFault(db); sqlite3_result_error(context, zErr, -1); sqlite3_free(zErr); return; } assert( pVfs ); flags |= SQLITE_OPEN_MAIN_DB; rc = sqlite3BtreeOpen(pVfs, zPath, db, &pNew->pBt, 0, flags); db->nDb++; pNew->zDbSName = sqlite3DbStrDup(db, zName); } db->noSharedCache = 0; if( rc==SQLITE_CONSTRAINT ){ rc = SQLITE_ERROR; zErrDyn = sqlite3MPrintf(db, "database is already attached"); }else if( rc==SQLITE_OK ){ Pager *pPager; pNew->pSchema = sqlite3SchemaGet(db, pNew->pBt); if( !pNew->pSchema ){ rc = SQLITE_NOMEM_BKPT; }else if( pNew->pSchema->file_format && pNew->pSchema->enc!=ENC(db) ){ zErrDyn = sqlite3MPrintf(db, "attached databases must use the same text encoding as main database"); rc = SQLITE_ERROR; } sqlite3BtreeEnter(pNew->pBt); pPager = sqlite3BtreePager(pNew->pBt); sqlite3PagerLockingMode(pPager, db->dfltLockMode); sqlite3BtreeSecureDelete(pNew->pBt, sqlite3BtreeSecureDelete(db->aDb[0].pBt,-1) ); #ifndef SQLITE_OMIT_PAGER_PRAGMAS sqlite3BtreeSetPagerFlags(pNew->pBt, PAGER_SYNCHRONOUS_FULL | (db->flags & PAGER_FLAGS_MASK)); #endif sqlite3BtreeLeave(pNew->pBt); } pNew->safety_level = SQLITE_DEFAULT_SYNCHRONOUS+1; if( rc==SQLITE_OK && pNew->zDbSName==0 ){ rc = SQLITE_NOMEM_BKPT; } sqlite3_free_filename( zPath ); /* If the file was opened successfully, read the schema for the new database. ** If this fails, or if opening the file failed, then close the file and ** remove the entry from the db->aDb[] array. i.e. put everything back the ** way we found it. */ if( rc==SQLITE_OK ){ sqlite3BtreeEnterAll(db); db->init.iDb = 0; db->mDbFlags &= ~(DBFLAG_SchemaKnownOk); if( !REOPEN_AS_MEMDB(db) ){ rc = sqlite3Init(db, &zErrDyn); } sqlite3BtreeLeaveAll(db); assert( zErrDyn==0 || rc!=SQLITE_OK ); } #ifdef SQLITE_USER_AUTHENTICATION if( rc==SQLITE_OK && !REOPEN_AS_MEMDB(db) ){ u8 newAuth = 0; rc = sqlite3UserAuthCheckLogin(db, zName, &newAuth); if( newAuthauth.authLevel ){ rc = SQLITE_AUTH_USER; } } #endif if( rc ){ if( !REOPEN_AS_MEMDB(db) ){ int iDb = db->nDb - 1; assert( iDb>=2 ); if( db->aDb[iDb].pBt ){ sqlite3BtreeClose(db->aDb[iDb].pBt); db->aDb[iDb].pBt = 0; db->aDb[iDb].pSchema = 0; } sqlite3ResetAllSchemasOfConnection(db); db->nDb = iDb; if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomFault(db); sqlite3DbFree(db, zErrDyn); zErrDyn = sqlite3MPrintf(db, "out of memory"); }else if( zErrDyn==0 ){ zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile); } } goto attach_error; } return; attach_error: /* Return an error if we get here */ if( zErrDyn ){ sqlite3_result_error(context, zErrDyn, -1); sqlite3DbFree(db, zErrDyn); } if( rc ) sqlite3_result_error_code(context, rc); } /* ** An SQL user-function registered to do the work of an DETACH statement. The ** three arguments to the function come directly from a detach statement: ** ** DETACH DATABASE x ** ** SELECT sqlite_detach(x) */ static void detachFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ const char *zName = (const char *)sqlite3_value_text(argv[0]); sqlite3 *db = sqlite3_context_db_handle(context); int i; Db *pDb = 0; HashElem *pEntry; char zErr[128]; UNUSED_PARAMETER(NotUsed); if( zName==0 ) zName = ""; for(i=0; inDb; i++){ pDb = &db->aDb[i]; if( pDb->pBt==0 ) continue; if( sqlite3DbIsNamed(db, i, zName) ) break; } if( i>=db->nDb ){ sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); goto detach_error; } if( i<2 ){ sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); goto detach_error; } if( sqlite3BtreeTxnState(pDb->pBt)!=SQLITE_TXN_NONE || sqlite3BtreeIsInBackup(pDb->pBt) ){ sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); goto detach_error; } /* If any TEMP triggers reference the schema being detached, move those ** triggers to reference the TEMP schema itself. */ assert( db->aDb[1].pSchema ); pEntry = sqliteHashFirst(&db->aDb[1].pSchema->trigHash); while( pEntry ){ Trigger *pTrig = (Trigger*)sqliteHashData(pEntry); if( pTrig->pTabSchema==pDb->pSchema ){ pTrig->pTabSchema = pTrig->pSchema; } pEntry = sqliteHashNext(pEntry); } sqlite3BtreeClose(pDb->pBt); pDb->pBt = 0; pDb->pSchema = 0; sqlite3CollapseDatabaseArray(db); return; detach_error: sqlite3_result_error(context, zErr, -1); } /* ** This procedure generates VDBE code for a single invocation of either the ** sqlite_detach() or sqlite_attach() SQL user functions. */ static void codeAttach( Parse *pParse, /* The parser context */ int type, /* Either SQLITE_ATTACH or SQLITE_DETACH */ FuncDef const *pFunc,/* FuncDef wrapper for detachFunc() or attachFunc() */ Expr *pAuthArg, /* Expression to pass to authorization callback */ Expr *pFilename, /* Name of database file */ Expr *pDbname, /* Name of the database to use internally */ Expr *pKey /* Database key for encryption extension */ ){ int rc; NameContext sName; Vdbe *v; sqlite3* db = pParse->db; int regArgs; if( pParse->nErr ) goto attach_end; memset(&sName, 0, sizeof(NameContext)); sName.pParse = pParse; if( SQLITE_OK!=resolveAttachExpr(&sName, pFilename) || SQLITE_OK!=resolveAttachExpr(&sName, pDbname) || SQLITE_OK!=resolveAttachExpr(&sName, pKey) ){ goto attach_end; } #ifndef SQLITE_OMIT_AUTHORIZATION if( ALWAYS(pAuthArg) ){ char *zAuthArg; if( pAuthArg->op==TK_STRING ){ assert( !ExprHasProperty(pAuthArg, EP_IntValue) ); zAuthArg = pAuthArg->u.zToken; }else{ zAuthArg = 0; } rc = sqlite3AuthCheck(pParse, type, zAuthArg, 0, 0); if(rc!=SQLITE_OK ){ goto attach_end; } } #endif /* SQLITE_OMIT_AUTHORIZATION */ v = sqlite3GetVdbe(pParse); regArgs = sqlite3GetTempRange(pParse, 4); sqlite3ExprCode(pParse, pFilename, regArgs); sqlite3ExprCode(pParse, pDbname, regArgs+1); sqlite3ExprCode(pParse, pKey, regArgs+2); assert( v || db->mallocFailed ); if( v ){ sqlite3VdbeAddFunctionCall(pParse, 0, regArgs+3-pFunc->nArg, regArgs+3, pFunc->nArg, pFunc, 0); /* Code an OP_Expire. For an ATTACH statement, set P1 to true (expire this ** statement only). For DETACH, set it to false (expire all existing ** statements). */ sqlite3VdbeAddOp1(v, OP_Expire, (type==SQLITE_ATTACH)); } attach_end: sqlite3ExprDelete(db, pFilename); sqlite3ExprDelete(db, pDbname); sqlite3ExprDelete(db, pKey); } /* ** Called by the parser to compile a DETACH statement. ** ** DETACH pDbname */ SQLITE_PRIVATE void sqlite3Detach(Parse *pParse, Expr *pDbname){ static const FuncDef detach_func = { 1, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ detachFunc, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "sqlite_detach", /* zName */ {0} }; codeAttach(pParse, SQLITE_DETACH, &detach_func, pDbname, 0, 0, pDbname); } /* ** Called by the parser to compile an ATTACH statement. ** ** ATTACH p AS pDbname KEY pKey */ SQLITE_PRIVATE void sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey){ static const FuncDef attach_func = { 3, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ attachFunc, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "sqlite_attach", /* zName */ {0} }; codeAttach(pParse, SQLITE_ATTACH, &attach_func, p, p, pDbname, pKey); } #endif /* SQLITE_OMIT_ATTACH */ /* ** Expression callback used by sqlite3FixAAAA() routines. */ static int fixExprCb(Walker *p, Expr *pExpr){ DbFixer *pFix = p->u.pFix; if( !pFix->bTemp ) ExprSetProperty(pExpr, EP_FromDDL); if( pExpr->op==TK_VARIABLE ){ if( pFix->pParse->db->init.busy ){ pExpr->op = TK_NULL; }else{ sqlite3ErrorMsg(pFix->pParse, "%s cannot use variables", pFix->zType); return WRC_Abort; } } return WRC_Continue; } /* ** Select callback used by sqlite3FixAAAA() routines. */ static int fixSelectCb(Walker *p, Select *pSelect){ DbFixer *pFix = p->u.pFix; int i; SrcItem *pItem; sqlite3 *db = pFix->pParse->db; int iDb = sqlite3FindDbName(db, pFix->zDb); SrcList *pList = pSelect->pSrc; if( NEVER(pList==0) ) return WRC_Continue; for(i=0, pItem=pList->a; inSrc; i++, pItem++){ if( pFix->bTemp==0 ){ if( pItem->zDatabase ){ if( iDb!=sqlite3FindDbName(db, pItem->zDatabase) ){ sqlite3ErrorMsg(pFix->pParse, "%s %T cannot reference objects in database %s", pFix->zType, pFix->pName, pItem->zDatabase); return WRC_Abort; } sqlite3DbFree(db, pItem->zDatabase); pItem->zDatabase = 0; pItem->fg.notCte = 1; } pItem->pSchema = pFix->pSchema; pItem->fg.fromDDL = 1; } #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) if( sqlite3WalkExpr(&pFix->w, pList->a[i].pOn) ) return WRC_Abort; #endif } if( pSelect->pWith ){ for(i=0; ipWith->nCte; i++){ if( sqlite3WalkSelect(p, pSelect->pWith->a[i].pSelect) ){ return WRC_Abort; } } } return WRC_Continue; } /* ** Initialize a DbFixer structure. This routine must be called prior ** to passing the structure to one of the sqliteFixAAAA() routines below. */ SQLITE_PRIVATE void sqlite3FixInit( DbFixer *pFix, /* The fixer to be initialized */ Parse *pParse, /* Error messages will be written here */ int iDb, /* This is the database that must be used */ const char *zType, /* "view", "trigger", or "index" */ const Token *pName /* Name of the view, trigger, or index */ ){ sqlite3 *db = pParse->db; assert( db->nDb>iDb ); pFix->pParse = pParse; pFix->zDb = db->aDb[iDb].zDbSName; pFix->pSchema = db->aDb[iDb].pSchema; pFix->zType = zType; pFix->pName = pName; pFix->bTemp = (iDb==1); pFix->w.pParse = pParse; pFix->w.xExprCallback = fixExprCb; pFix->w.xSelectCallback = fixSelectCb; pFix->w.xSelectCallback2 = sqlite3WalkWinDefnDummyCallback; pFix->w.walkerDepth = 0; pFix->w.eCode = 0; pFix->w.u.pFix = pFix; } /* ** The following set of routines walk through the parse tree and assign ** a specific database to all table references where the database name ** was left unspecified in the original SQL statement. The pFix structure ** must have been initialized by a prior call to sqlite3FixInit(). ** ** These routines are used to make sure that an index, trigger, or ** view in one database does not refer to objects in a different database. ** (Exception: indices, triggers, and views in the TEMP database are ** allowed to refer to anything.) If a reference is explicitly made ** to an object in a different database, an error message is added to ** pParse->zErrMsg and these routines return non-zero. If everything ** checks out, these routines return 0. */ SQLITE_PRIVATE int sqlite3FixSrcList( DbFixer *pFix, /* Context of the fixation */ SrcList *pList /* The Source list to check and modify */ ){ int res = 0; if( pList ){ Select s; memset(&s, 0, sizeof(s)); s.pSrc = pList; res = sqlite3WalkSelect(&pFix->w, &s); } return res; } #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) SQLITE_PRIVATE int sqlite3FixSelect( DbFixer *pFix, /* Context of the fixation */ Select *pSelect /* The SELECT statement to be fixed to one database */ ){ return sqlite3WalkSelect(&pFix->w, pSelect); } SQLITE_PRIVATE int sqlite3FixExpr( DbFixer *pFix, /* Context of the fixation */ Expr *pExpr /* The expression to be fixed to one database */ ){ return sqlite3WalkExpr(&pFix->w, pExpr); } #endif #ifndef SQLITE_OMIT_TRIGGER SQLITE_PRIVATE int sqlite3FixTriggerStep( DbFixer *pFix, /* Context of the fixation */ TriggerStep *pStep /* The trigger step be fixed to one database */ ){ while( pStep ){ if( sqlite3WalkSelect(&pFix->w, pStep->pSelect) || sqlite3WalkExpr(&pFix->w, pStep->pWhere) || sqlite3WalkExprList(&pFix->w, pStep->pExprList) || sqlite3FixSrcList(pFix, pStep->pFrom) ){ return 1; } #ifndef SQLITE_OMIT_UPSERT { Upsert *pUp; for(pUp=pStep->pUpsert; pUp; pUp=pUp->pNextUpsert){ if( sqlite3WalkExprList(&pFix->w, pUp->pUpsertTarget) || sqlite3WalkExpr(&pFix->w, pUp->pUpsertTargetWhere) || sqlite3WalkExprList(&pFix->w, pUp->pUpsertSet) || sqlite3WalkExpr(&pFix->w, pUp->pUpsertWhere) ){ return 1; } } } #endif pStep = pStep->pNext; } return 0; } #endif /************** End of attach.c **********************************************/ /************** Begin file auth.c ********************************************/ /* ** 2003 January 11 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the sqlite3_set_authorizer() ** API. This facility is an optional feature of the library. Embedded ** systems that do not need this facility may omit it by recompiling ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 */ /* #include "sqliteInt.h" */ /* ** All of the code in this file may be omitted by defining a single ** macro. */ #ifndef SQLITE_OMIT_AUTHORIZATION /* ** Set or clear the access authorization function. ** ** The access authorization function is be called during the compilation ** phase to verify that the user has read and/or write access permission on ** various fields of the database. The first argument to the auth function ** is a copy of the 3rd argument to this routine. The second argument ** to the auth function is one of these constants: ** ** SQLITE_CREATE_INDEX ** SQLITE_CREATE_TABLE ** SQLITE_CREATE_TEMP_INDEX ** SQLITE_CREATE_TEMP_TABLE ** SQLITE_CREATE_TEMP_TRIGGER ** SQLITE_CREATE_TEMP_VIEW ** SQLITE_CREATE_TRIGGER ** SQLITE_CREATE_VIEW ** SQLITE_DELETE ** SQLITE_DROP_INDEX ** SQLITE_DROP_TABLE ** SQLITE_DROP_TEMP_INDEX ** SQLITE_DROP_TEMP_TABLE ** SQLITE_DROP_TEMP_TRIGGER ** SQLITE_DROP_TEMP_VIEW ** SQLITE_DROP_TRIGGER ** SQLITE_DROP_VIEW ** SQLITE_INSERT ** SQLITE_PRAGMA ** SQLITE_READ ** SQLITE_SELECT ** SQLITE_TRANSACTION ** SQLITE_UPDATE ** ** The third and fourth arguments to the auth function are the name of ** the table and the column that are being accessed. The auth function ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY ** means that the SQL statement will never-run - the sqlite3_exec() call ** will return with an error. SQLITE_IGNORE means that the SQL statement ** should run but attempts to read the specified column will return NULL ** and attempts to write the column will be ignored. ** ** Setting the auth function to NULL disables this hook. The default ** setting of the auth function is NULL. */ SQLITE_API int sqlite3_set_authorizer( sqlite3 *db, int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), void *pArg ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->xAuth = (sqlite3_xauth)xAuth; db->pAuthArg = pArg; if( db->xAuth ) sqlite3ExpirePreparedStatements(db, 1); sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } /* ** Write an error message into pParse->zErrMsg that explains that the ** user-supplied authorization function returned an illegal value. */ static void sqliteAuthBadReturnCode(Parse *pParse){ sqlite3ErrorMsg(pParse, "authorizer malfunction"); pParse->rc = SQLITE_ERROR; } /* ** Invoke the authorization callback for permission to read column zCol from ** table zTab in database zDb. This function assumes that an authorization ** callback has been registered (i.e. that sqlite3.xAuth is not NULL). ** ** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed ** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE ** is treated as SQLITE_DENY. In this case an error is left in pParse. */ SQLITE_PRIVATE int sqlite3AuthReadCol( Parse *pParse, /* The parser context */ const char *zTab, /* Table name */ const char *zCol, /* Column name */ int iDb /* Index of containing database. */ ){ sqlite3 *db = pParse->db; /* Database handle */ char *zDb = db->aDb[iDb].zDbSName; /* Schema name of attached database */ int rc; /* Auth callback return code */ if( db->init.busy ) return SQLITE_OK; rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext #ifdef SQLITE_USER_AUTHENTICATION ,db->auth.zAuthUser #endif ); if( rc==SQLITE_DENY ){ char *z = sqlite3_mprintf("%s.%s", zTab, zCol); if( db->nDb>2 || iDb!=0 ) z = sqlite3_mprintf("%s.%z", zDb, z); sqlite3ErrorMsg(pParse, "access to %z is prohibited", z); pParse->rc = SQLITE_AUTH; }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){ sqliteAuthBadReturnCode(pParse); } return rc; } /* ** The pExpr should be a TK_COLUMN expression. The table referred to ** is in pTabList or else it is the NEW or OLD table of a trigger. ** Check to see if it is OK to read this particular column. ** ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY, ** then generate an error. */ SQLITE_PRIVATE void sqlite3AuthRead( Parse *pParse, /* The parser context */ Expr *pExpr, /* The expression to check authorization on */ Schema *pSchema, /* The schema of the expression */ SrcList *pTabList /* All table that pExpr might refer to */ ){ Table *pTab = 0; /* The table being read */ const char *zCol; /* Name of the column of the table */ int iSrc; /* Index in pTabList->a[] of table being read */ int iDb; /* The index of the database the expression refers to */ int iCol; /* Index of column in table */ assert( pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER ); assert( !IN_RENAME_OBJECT ); assert( pParse->db->xAuth!=0 ); iDb = sqlite3SchemaToIndex(pParse->db, pSchema); if( iDb<0 ){ /* An attempt to read a column out of a subquery or other ** temporary table. */ return; } if( pExpr->op==TK_TRIGGER ){ pTab = pParse->pTriggerTab; }else{ assert( pTabList ); for(iSrc=0; iSrcnSrc; iSrc++){ if( pExpr->iTable==pTabList->a[iSrc].iCursor ){ pTab = pTabList->a[iSrc].pTab; break; } } } iCol = pExpr->iColumn; if( pTab==0 ) return; if( iCol>=0 ){ assert( iColnCol ); zCol = pTab->aCol[iCol].zCnName; }else if( pTab->iPKey>=0 ){ assert( pTab->iPKeynCol ); zCol = pTab->aCol[pTab->iPKey].zCnName; }else{ zCol = "ROWID"; } assert( iDb>=0 && iDbdb->nDb ); if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){ pExpr->op = TK_NULL; } } /* ** Do an authorization check using the code and arguments given. Return ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY ** is returned, then the error count and error message in pParse are ** modified appropriately. */ SQLITE_PRIVATE int sqlite3AuthCheck( Parse *pParse, int code, const char *zArg1, const char *zArg2, const char *zArg3 ){ sqlite3 *db = pParse->db; int rc; /* Don't do any authorization checks if the database is initialising ** or if the parser is being invoked from within sqlite3_declare_vtab. */ assert( !IN_RENAME_OBJECT || db->xAuth==0 ); if( db->xAuth==0 || db->init.busy || IN_SPECIAL_PARSE ){ return SQLITE_OK; } /* EVIDENCE-OF: R-43249-19882 The third through sixth parameters to the ** callback are either NULL pointers or zero-terminated strings that ** contain additional details about the action to be authorized. ** ** The following testcase() macros show that any of the 3rd through 6th ** parameters can be either NULL or a string. */ testcase( zArg1==0 ); testcase( zArg2==0 ); testcase( zArg3==0 ); testcase( pParse->zAuthContext==0 ); rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext #ifdef SQLITE_USER_AUTHENTICATION ,db->auth.zAuthUser #endif ); if( rc==SQLITE_DENY ){ sqlite3ErrorMsg(pParse, "not authorized"); pParse->rc = SQLITE_AUTH; }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ rc = SQLITE_DENY; sqliteAuthBadReturnCode(pParse); } return rc; } /* ** Push an authorization context. After this routine is called, the ** zArg3 argument to authorization callbacks will be zContext until ** popped. Or if pParse==0, this routine is a no-op. */ SQLITE_PRIVATE void sqlite3AuthContextPush( Parse *pParse, AuthContext *pContext, const char *zContext ){ assert( pParse ); pContext->pParse = pParse; pContext->zAuthContext = pParse->zAuthContext; pParse->zAuthContext = zContext; } /* ** Pop an authorization context that was previously pushed ** by sqlite3AuthContextPush */ SQLITE_PRIVATE void sqlite3AuthContextPop(AuthContext *pContext){ if( pContext->pParse ){ pContext->pParse->zAuthContext = pContext->zAuthContext; pContext->pParse = 0; } } #endif /* SQLITE_OMIT_AUTHORIZATION */ /************** End of auth.c ************************************************/ /************** Begin file build.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the SQLite parser ** when syntax rules are reduced. The routines in this file handle the ** following kinds of SQL syntax: ** ** CREATE TABLE ** DROP TABLE ** CREATE INDEX ** DROP INDEX ** creating ID lists ** BEGIN TRANSACTION ** COMMIT ** ROLLBACK */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** The TableLock structure is only used by the sqlite3TableLock() and ** codeTableLocks() functions. */ struct TableLock { int iDb; /* The database containing the table to be locked */ Pgno iTab; /* The root page of the table to be locked */ u8 isWriteLock; /* True for write lock. False for a read lock */ const char *zLockName; /* Name of the table */ }; /* ** Record the fact that we want to lock a table at run-time. ** ** The table to be locked has root page iTab and is found in database iDb. ** A read or a write lock can be taken depending on isWritelock. ** ** This routine just records the fact that the lock is desired. The ** code to make the lock occur is generated by a later call to ** codeTableLocks() which occurs during sqlite3FinishCoding(). */ static SQLITE_NOINLINE void lockTable( Parse *pParse, /* Parsing context */ int iDb, /* Index of the database containing the table to lock */ Pgno iTab, /* Root page number of the table to be locked */ u8 isWriteLock, /* True for a write lock */ const char *zName /* Name of the table to be locked */ ){ Parse *pToplevel; int i; int nBytes; TableLock *p; assert( iDb>=0 ); pToplevel = sqlite3ParseToplevel(pParse); for(i=0; inTableLock; i++){ p = &pToplevel->aTableLock[i]; if( p->iDb==iDb && p->iTab==iTab ){ p->isWriteLock = (p->isWriteLock || isWriteLock); return; } } nBytes = sizeof(TableLock) * (pToplevel->nTableLock+1); pToplevel->aTableLock = sqlite3DbReallocOrFree(pToplevel->db, pToplevel->aTableLock, nBytes); if( pToplevel->aTableLock ){ p = &pToplevel->aTableLock[pToplevel->nTableLock++]; p->iDb = iDb; p->iTab = iTab; p->isWriteLock = isWriteLock; p->zLockName = zName; }else{ pToplevel->nTableLock = 0; sqlite3OomFault(pToplevel->db); } } SQLITE_PRIVATE void sqlite3TableLock( Parse *pParse, /* Parsing context */ int iDb, /* Index of the database containing the table to lock */ Pgno iTab, /* Root page number of the table to be locked */ u8 isWriteLock, /* True for a write lock */ const char *zName /* Name of the table to be locked */ ){ if( iDb==1 ) return; if( !sqlite3BtreeSharable(pParse->db->aDb[iDb].pBt) ) return; lockTable(pParse, iDb, iTab, isWriteLock, zName); } /* ** Code an OP_TableLock instruction for each table locked by the ** statement (configured by calls to sqlite3TableLock()). */ static void codeTableLocks(Parse *pParse){ int i; Vdbe *pVdbe = pParse->pVdbe; assert( pVdbe!=0 ); for(i=0; inTableLock; i++){ TableLock *p = &pParse->aTableLock[i]; int p1 = p->iDb; sqlite3VdbeAddOp4(pVdbe, OP_TableLock, p1, p->iTab, p->isWriteLock, p->zLockName, P4_STATIC); } } #else #define codeTableLocks(x) #endif /* ** Return TRUE if the given yDbMask object is empty - if it contains no ** 1 bits. This routine is used by the DbMaskAllZero() and DbMaskNotZero() ** macros when SQLITE_MAX_ATTACHED is greater than 30. */ #if SQLITE_MAX_ATTACHED>30 SQLITE_PRIVATE int sqlite3DbMaskAllZero(yDbMask m){ int i; for(i=0; ipToplevel==0 ); db = pParse->db; assert( db->pParse==pParse ); if( pParse->nested ) return; if( pParse->nErr ){ if( db->mallocFailed ) pParse->rc = SQLITE_NOMEM; return; } assert( db->mallocFailed==0 ); /* Begin by generating some termination code at the end of the ** vdbe program */ v = pParse->pVdbe; if( v==0 ){ if( db->init.busy ){ pParse->rc = SQLITE_DONE; return; } v = sqlite3GetVdbe(pParse); if( v==0 ) pParse->rc = SQLITE_ERROR; } assert( !pParse->isMultiWrite || sqlite3VdbeAssertMayAbort(v, pParse->mayAbort)); if( v ){ if( pParse->bReturning ){ Returning *pReturning = pParse->u1.pReturning; int addrRewind; int i; int reg; if( NEVER(pReturning->nRetCol==0) ){ assert( CORRUPT_DB ); }else{ sqlite3VdbeAddOp0(v, OP_FkCheck); addrRewind = sqlite3VdbeAddOp1(v, OP_Rewind, pReturning->iRetCur); VdbeCoverage(v); reg = pReturning->iRetReg; for(i=0; inRetCol; i++){ sqlite3VdbeAddOp3(v, OP_Column, pReturning->iRetCur, i, reg+i); } sqlite3VdbeAddOp2(v, OP_ResultRow, reg, i); sqlite3VdbeAddOp2(v, OP_Next, pReturning->iRetCur, addrRewind+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrRewind); } } sqlite3VdbeAddOp0(v, OP_Halt); #if SQLITE_USER_AUTHENTICATION if( pParse->nTableLock>0 && db->init.busy==0 ){ sqlite3UserAuthInit(db); if( db->auth.authLevelrc = SQLITE_AUTH_USER; return; } } #endif /* The cookie mask contains one bit for each database file open. ** (Bit 0 is for main, bit 1 is for temp, and so forth.) Bits are ** set for each database that is used. Generate code to start a ** transaction on each used database and to verify the schema cookie ** on each used database. */ if( db->mallocFailed==0 && (DbMaskNonZero(pParse->cookieMask) || pParse->pConstExpr) ){ int iDb, i; assert( sqlite3VdbeGetOp(v, 0)->opcode==OP_Init ); sqlite3VdbeJumpHere(v, 0); for(iDb=0; iDbnDb; iDb++){ Schema *pSchema; if( DbMaskTest(pParse->cookieMask, iDb)==0 ) continue; sqlite3VdbeUsesBtree(v, iDb); pSchema = db->aDb[iDb].pSchema; sqlite3VdbeAddOp4Int(v, OP_Transaction, /* Opcode */ iDb, /* P1 */ DbMaskTest(pParse->writeMask,iDb), /* P2 */ pSchema->schema_cookie, /* P3 */ pSchema->iGeneration /* P4 */ ); if( db->init.busy==0 ) sqlite3VdbeChangeP5(v, 1); VdbeComment((v, "usesStmtJournal=%d", pParse->mayAbort && pParse->isMultiWrite)); } #ifndef SQLITE_OMIT_VIRTUALTABLE for(i=0; inVtabLock; i++){ char *vtab = (char *)sqlite3GetVTable(db, pParse->apVtabLock[i]); sqlite3VdbeAddOp4(v, OP_VBegin, 0, 0, 0, vtab, P4_VTAB); } pParse->nVtabLock = 0; #endif /* Once all the cookies have been verified and transactions opened, ** obtain the required table-locks. This is a no-op unless the ** shared-cache feature is enabled. */ codeTableLocks(pParse); /* Initialize any AUTOINCREMENT data structures required. */ sqlite3AutoincrementBegin(pParse); /* Code constant expressions that where factored out of inner loops. ** ** The pConstExpr list might also contain expressions that we simply ** want to keep around until the Parse object is deleted. Such ** expressions have iConstExprReg==0. Do not generate code for ** those expressions, of course. */ if( pParse->pConstExpr ){ ExprList *pEL = pParse->pConstExpr; pParse->okConstFactor = 0; for(i=0; inExpr; i++){ int iReg = pEL->a[i].u.iConstExprReg; if( iReg>0 ){ sqlite3ExprCode(pParse, pEL->a[i].pExpr, iReg); } } } if( pParse->bReturning ){ Returning *pRet = pParse->u1.pReturning; if( NEVER(pRet->nRetCol==0) ){ assert( CORRUPT_DB ); }else{ sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pRet->iRetCur, pRet->nRetCol); } } /* Finally, jump back to the beginning of the executable code. */ sqlite3VdbeGoto(v, 1); } } /* Get the VDBE program ready for execution */ assert( v!=0 || pParse->nErr ); assert( db->mallocFailed==0 || pParse->nErr ); if( pParse->nErr==0 ){ /* A minimum of one cursor is required if autoincrement is used * See ticket [a696379c1f08866] */ assert( pParse->pAinc==0 || pParse->nTab>0 ); sqlite3VdbeMakeReady(v, pParse); pParse->rc = SQLITE_DONE; }else{ pParse->rc = SQLITE_ERROR; } } /* ** Run the parser and code generator recursively in order to generate ** code for the SQL statement given onto the end of the pParse context ** currently under construction. Notes: ** ** * The final OP_Halt is not appended and other initialization ** and finalization steps are omitted because those are handling by the ** outermost parser. ** ** * Built-in SQL functions always take precedence over application-defined ** SQL functions. In other words, it is not possible to override a ** built-in function. */ SQLITE_PRIVATE void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){ va_list ap; char *zSql; sqlite3 *db = pParse->db; u32 savedDbFlags = db->mDbFlags; char saveBuf[PARSE_TAIL_SZ]; if( pParse->nErr ) return; assert( pParse->nested<10 ); /* Nesting should only be of limited depth */ va_start(ap, zFormat); zSql = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); if( zSql==0 ){ /* This can result either from an OOM or because the formatted string ** exceeds SQLITE_LIMIT_LENGTH. In the latter case, we need to set ** an error */ if( !db->mallocFailed ) pParse->rc = SQLITE_TOOBIG; pParse->nErr++; return; } pParse->nested++; memcpy(saveBuf, PARSE_TAIL(pParse), PARSE_TAIL_SZ); memset(PARSE_TAIL(pParse), 0, PARSE_TAIL_SZ); db->mDbFlags |= DBFLAG_PreferBuiltin; sqlite3RunParser(pParse, zSql); sqlite3DbFree(db, pParse->zErrMsg); pParse->zErrMsg = 0; db->mDbFlags = savedDbFlags; sqlite3DbFree(db, zSql); memcpy(PARSE_TAIL(pParse), saveBuf, PARSE_TAIL_SZ); pParse->nested--; } #if SQLITE_USER_AUTHENTICATION /* ** Return TRUE if zTable is the name of the system table that stores the ** list of users and their access credentials. */ SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){ return sqlite3_stricmp(zTable, "sqlite_user")==0; } #endif /* ** Locate the in-memory structure that describes a particular database ** table given the name of that table and (optionally) the name of the ** database containing the table. Return NULL if not found. ** ** If zDatabase is 0, all databases are searched for the table and the ** first matching table is returned. (No checking for duplicate table ** names is done.) The search order is TEMP first, then MAIN, then any ** auxiliary databases added using the ATTACH command. ** ** See also sqlite3LocateTable(). */ SQLITE_PRIVATE Table *sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase){ Table *p = 0; int i; /* All mutexes are required for schema access. Make sure we hold them. */ assert( zDatabase!=0 || sqlite3BtreeHoldsAllMutexes(db) ); #if SQLITE_USER_AUTHENTICATION /* Only the admin user is allowed to know that the sqlite_user table ** exists */ if( db->auth.authLevelnDb; i++){ if( sqlite3StrICmp(zDatabase, db->aDb[i].zDbSName)==0 ) break; } if( i>=db->nDb ){ /* No match against the official names. But always match "main" ** to schema 0 as a legacy fallback. */ if( sqlite3StrICmp(zDatabase,"main")==0 ){ i = 0; }else{ return 0; } } p = sqlite3HashFind(&db->aDb[i].pSchema->tblHash, zName); if( p==0 && sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ if( i==1 ){ if( sqlite3StrICmp(zName+7, &PREFERRED_TEMP_SCHEMA_TABLE[7])==0 || sqlite3StrICmp(zName+7, &PREFERRED_SCHEMA_TABLE[7])==0 || sqlite3StrICmp(zName+7, &LEGACY_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[1].pSchema->tblHash, LEGACY_TEMP_SCHEMA_TABLE); } }else{ if( sqlite3StrICmp(zName+7, &PREFERRED_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[i].pSchema->tblHash, LEGACY_SCHEMA_TABLE); } } } }else{ /* Match against TEMP first */ p = sqlite3HashFind(&db->aDb[1].pSchema->tblHash, zName); if( p ) return p; /* The main database is second */ p = sqlite3HashFind(&db->aDb[0].pSchema->tblHash, zName); if( p ) return p; /* Attached databases are in order of attachment */ for(i=2; inDb; i++){ assert( sqlite3SchemaMutexHeld(db, i, 0) ); p = sqlite3HashFind(&db->aDb[i].pSchema->tblHash, zName); if( p ) break; } if( p==0 && sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ if( sqlite3StrICmp(zName+7, &PREFERRED_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[0].pSchema->tblHash, LEGACY_SCHEMA_TABLE); }else if( sqlite3StrICmp(zName+7, &PREFERRED_TEMP_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[1].pSchema->tblHash, LEGACY_TEMP_SCHEMA_TABLE); } } } return p; } /* ** Locate the in-memory structure that describes a particular database ** table given the name of that table and (optionally) the name of the ** database containing the table. Return NULL if not found. Also leave an ** error message in pParse->zErrMsg. ** ** The difference between this routine and sqlite3FindTable() is that this ** routine leaves an error message in pParse->zErrMsg where ** sqlite3FindTable() does not. */ SQLITE_PRIVATE Table *sqlite3LocateTable( Parse *pParse, /* context in which to report errors */ u32 flags, /* LOCATE_VIEW or LOCATE_NOERR */ const char *zName, /* Name of the table we are looking for */ const char *zDbase /* Name of the database. Might be NULL */ ){ Table *p; sqlite3 *db = pParse->db; /* Read the database schema. If an error occurs, leave an error message ** and code in pParse and return NULL. */ if( (db->mDbFlags & DBFLAG_SchemaKnownOk)==0 && SQLITE_OK!=sqlite3ReadSchema(pParse) ){ return 0; } p = sqlite3FindTable(db, zName, zDbase); if( p==0 ){ #ifndef SQLITE_OMIT_VIRTUALTABLE /* If zName is the not the name of a table in the schema created using ** CREATE, then check to see if it is the name of an virtual table that ** can be an eponymous virtual table. */ if( pParse->disableVtab==0 && db->init.busy==0 ){ Module *pMod = (Module*)sqlite3HashFind(&db->aModule, zName); if( pMod==0 && sqlite3_strnicmp(zName, "pragma_", 7)==0 ){ pMod = sqlite3PragmaVtabRegister(db, zName); } if( pMod && sqlite3VtabEponymousTableInit(pParse, pMod) ){ testcase( pMod->pEpoTab==0 ); return pMod->pEpoTab; } } #endif if( flags & LOCATE_NOERR ) return 0; pParse->checkSchema = 1; }else if( IsVirtual(p) && pParse->disableVtab ){ p = 0; } if( p==0 ){ const char *zMsg = flags & LOCATE_VIEW ? "no such view" : "no such table"; if( zDbase ){ sqlite3ErrorMsg(pParse, "%s: %s.%s", zMsg, zDbase, zName); }else{ sqlite3ErrorMsg(pParse, "%s: %s", zMsg, zName); } }else{ assert( HasRowid(p) || p->iPKey<0 ); } return p; } /* ** Locate the table identified by *p. ** ** This is a wrapper around sqlite3LocateTable(). The difference between ** sqlite3LocateTable() and this function is that this function restricts ** the search to schema (p->pSchema) if it is not NULL. p->pSchema may be ** non-NULL if it is part of a view or trigger program definition. See ** sqlite3FixSrcList() for details. */ SQLITE_PRIVATE Table *sqlite3LocateTableItem( Parse *pParse, u32 flags, SrcItem *p ){ const char *zDb; assert( p->pSchema==0 || p->zDatabase==0 ); if( p->pSchema ){ int iDb = sqlite3SchemaToIndex(pParse->db, p->pSchema); zDb = pParse->db->aDb[iDb].zDbSName; }else{ zDb = p->zDatabase; } return sqlite3LocateTable(pParse, flags, p->zName, zDb); } /* ** Return the preferred table name for system tables. Translate legacy ** names into the new preferred names, as appropriate. */ SQLITE_PRIVATE const char *sqlite3PreferredTableName(const char *zName){ if( sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ if( sqlite3StrICmp(zName+7, &LEGACY_SCHEMA_TABLE[7])==0 ){ return PREFERRED_SCHEMA_TABLE; } if( sqlite3StrICmp(zName+7, &LEGACY_TEMP_SCHEMA_TABLE[7])==0 ){ return PREFERRED_TEMP_SCHEMA_TABLE; } } return zName; } /* ** Locate the in-memory structure that describes ** a particular index given the name of that index ** and the name of the database that contains the index. ** Return NULL if not found. ** ** If zDatabase is 0, all databases are searched for the ** table and the first matching index is returned. (No checking ** for duplicate index names is done.) The search order is ** TEMP first, then MAIN, then any auxiliary databases added ** using the ATTACH command. */ SQLITE_PRIVATE Index *sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb){ Index *p = 0; int i; /* All mutexes are required for schema access. Make sure we hold them. */ assert( zDb!=0 || sqlite3BtreeHoldsAllMutexes(db) ); for(i=OMIT_TEMPDB; inDb; i++){ int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ Schema *pSchema = db->aDb[j].pSchema; assert( pSchema ); if( zDb && sqlite3DbIsNamed(db, j, zDb)==0 ) continue; assert( sqlite3SchemaMutexHeld(db, j, 0) ); p = sqlite3HashFind(&pSchema->idxHash, zName); if( p ) break; } return p; } /* ** Reclaim the memory used by an index */ SQLITE_PRIVATE void sqlite3FreeIndex(sqlite3 *db, Index *p){ #ifndef SQLITE_OMIT_ANALYZE sqlite3DeleteIndexSamples(db, p); #endif sqlite3ExprDelete(db, p->pPartIdxWhere); sqlite3ExprListDelete(db, p->aColExpr); sqlite3DbFree(db, p->zColAff); if( p->isResized ) sqlite3DbFree(db, (void *)p->azColl); #ifdef SQLITE_ENABLE_STAT4 sqlite3_free(p->aiRowEst); #endif sqlite3DbFree(db, p); } /* ** For the index called zIdxName which is found in the database iDb, ** unlike that index from its Table then remove the index from ** the index hash table and free all memory structures associated ** with the index. */ SQLITE_PRIVATE void sqlite3UnlinkAndDeleteIndex(sqlite3 *db, int iDb, const char *zIdxName){ Index *pIndex; Hash *pHash; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pHash = &db->aDb[iDb].pSchema->idxHash; pIndex = sqlite3HashInsert(pHash, zIdxName, 0); if( ALWAYS(pIndex) ){ if( pIndex->pTable->pIndex==pIndex ){ pIndex->pTable->pIndex = pIndex->pNext; }else{ Index *p; /* Justification of ALWAYS(); The index must be on the list of ** indices. */ p = pIndex->pTable->pIndex; while( ALWAYS(p) && p->pNext!=pIndex ){ p = p->pNext; } if( ALWAYS(p && p->pNext==pIndex) ){ p->pNext = pIndex->pNext; } } sqlite3FreeIndex(db, pIndex); } db->mDbFlags |= DBFLAG_SchemaChange; } /* ** Look through the list of open database files in db->aDb[] and if ** any have been closed, remove them from the list. Reallocate the ** db->aDb[] structure to a smaller size, if possible. ** ** Entry 0 (the "main" database) and entry 1 (the "temp" database) ** are never candidates for being collapsed. */ SQLITE_PRIVATE void sqlite3CollapseDatabaseArray(sqlite3 *db){ int i, j; for(i=j=2; inDb; i++){ struct Db *pDb = &db->aDb[i]; if( pDb->pBt==0 ){ sqlite3DbFree(db, pDb->zDbSName); pDb->zDbSName = 0; continue; } if( jaDb[j] = db->aDb[i]; } j++; } db->nDb = j; if( db->nDb<=2 && db->aDb!=db->aDbStatic ){ memcpy(db->aDbStatic, db->aDb, 2*sizeof(db->aDb[0])); sqlite3DbFree(db, db->aDb); db->aDb = db->aDbStatic; } } /* ** Reset the schema for the database at index iDb. Also reset the ** TEMP schema. The reset is deferred if db->nSchemaLock is not zero. ** Deferred resets may be run by calling with iDb<0. */ SQLITE_PRIVATE void sqlite3ResetOneSchema(sqlite3 *db, int iDb){ int i; assert( iDbnDb ); if( iDb>=0 ){ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); DbSetProperty(db, iDb, DB_ResetWanted); DbSetProperty(db, 1, DB_ResetWanted); db->mDbFlags &= ~DBFLAG_SchemaKnownOk; } if( db->nSchemaLock==0 ){ for(i=0; inDb; i++){ if( DbHasProperty(db, i, DB_ResetWanted) ){ sqlite3SchemaClear(db->aDb[i].pSchema); } } } } /* ** Erase all schema information from all attached databases (including ** "main" and "temp") for a single database connection. */ SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3 *db){ int i; sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Db *pDb = &db->aDb[i]; if( pDb->pSchema ){ if( db->nSchemaLock==0 ){ sqlite3SchemaClear(pDb->pSchema); }else{ DbSetProperty(db, i, DB_ResetWanted); } } } db->mDbFlags &= ~(DBFLAG_SchemaChange|DBFLAG_SchemaKnownOk); sqlite3VtabUnlockList(db); sqlite3BtreeLeaveAll(db); if( db->nSchemaLock==0 ){ sqlite3CollapseDatabaseArray(db); } } /* ** This routine is called when a commit occurs. */ SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3 *db){ db->mDbFlags &= ~DBFLAG_SchemaChange; } /* ** Set the expression associated with a column. This is usually ** the DEFAULT value, but might also be the expression that computes ** the value for a generated column. */ SQLITE_PRIVATE void sqlite3ColumnSetExpr( Parse *pParse, /* Parsing context */ Table *pTab, /* The table containing the column */ Column *pCol, /* The column to receive the new DEFAULT expression */ Expr *pExpr /* The new default expression */ ){ ExprList *pList; assert( IsOrdinaryTable(pTab) ); pList = pTab->u.tab.pDfltList; if( pCol->iDflt==0 || NEVER(pList==0) || NEVER(pList->nExpriDflt) ){ pCol->iDflt = pList==0 ? 1 : pList->nExpr+1; pTab->u.tab.pDfltList = sqlite3ExprListAppend(pParse, pList, pExpr); }else{ sqlite3ExprDelete(pParse->db, pList->a[pCol->iDflt-1].pExpr); pList->a[pCol->iDflt-1].pExpr = pExpr; } } /* ** Return the expression associated with a column. The expression might be ** the DEFAULT clause or the AS clause of a generated column. ** Return NULL if the column has no associated expression. */ SQLITE_PRIVATE Expr *sqlite3ColumnExpr(Table *pTab, Column *pCol){ if( pCol->iDflt==0 ) return 0; if( NEVER(!IsOrdinaryTable(pTab)) ) return 0; if( NEVER(pTab->u.tab.pDfltList==0) ) return 0; if( NEVER(pTab->u.tab.pDfltList->nExpriDflt) ) return 0; return pTab->u.tab.pDfltList->a[pCol->iDflt-1].pExpr; } /* ** Set the collating sequence name for a column. */ SQLITE_PRIVATE void sqlite3ColumnSetColl( sqlite3 *db, Column *pCol, const char *zColl ){ i64 nColl; i64 n; char *zNew; assert( zColl!=0 ); n = sqlite3Strlen30(pCol->zCnName) + 1; if( pCol->colFlags & COLFLAG_HASTYPE ){ n += sqlite3Strlen30(pCol->zCnName+n) + 1; } nColl = sqlite3Strlen30(zColl) + 1; zNew = sqlite3DbRealloc(db, pCol->zCnName, nColl+n); if( zNew ){ pCol->zCnName = zNew; memcpy(pCol->zCnName + n, zColl, nColl); pCol->colFlags |= COLFLAG_HASCOLL; } } /* ** Return the collating squence name for a column */ SQLITE_PRIVATE const char *sqlite3ColumnColl(Column *pCol){ const char *z; if( (pCol->colFlags & COLFLAG_HASCOLL)==0 ) return 0; z = pCol->zCnName; while( *z ){ z++; } if( pCol->colFlags & COLFLAG_HASTYPE ){ do{ z++; }while( *z ); } return z+1; } /* ** Delete memory allocated for the column names of a table or view (the ** Table.aCol[] array). */ SQLITE_PRIVATE void sqlite3DeleteColumnNames(sqlite3 *db, Table *pTable){ int i; Column *pCol; assert( pTable!=0 ); if( (pCol = pTable->aCol)!=0 ){ for(i=0; inCol; i++, pCol++){ assert( pCol->zCnName==0 || pCol->hName==sqlite3StrIHash(pCol->zCnName) ); sqlite3DbFree(db, pCol->zCnName); } sqlite3DbFree(db, pTable->aCol); if( IsOrdinaryTable(pTable) ){ sqlite3ExprListDelete(db, pTable->u.tab.pDfltList); } if( db==0 || db->pnBytesFreed==0 ){ pTable->aCol = 0; pTable->nCol = 0; if( IsOrdinaryTable(pTable) ){ pTable->u.tab.pDfltList = 0; } } } } /* ** Remove the memory data structures associated with the given ** Table. No changes are made to disk by this routine. ** ** This routine just deletes the data structure. It does not unlink ** the table data structure from the hash table. But it does destroy ** memory structures of the indices and foreign keys associated with ** the table. ** ** The db parameter is optional. It is needed if the Table object ** contains lookaside memory. (Table objects in the schema do not use ** lookaside memory, but some ephemeral Table objects do.) Or the ** db parameter can be used with db->pnBytesFreed to measure the memory ** used by the Table object. */ static void SQLITE_NOINLINE deleteTable(sqlite3 *db, Table *pTable){ Index *pIndex, *pNext; #ifdef SQLITE_DEBUG /* Record the number of outstanding lookaside allocations in schema Tables ** prior to doing any free() operations. Since schema Tables do not use ** lookaside, this number should not change. ** ** If malloc has already failed, it may be that it failed while allocating ** a Table object that was going to be marked ephemeral. So do not check ** that no lookaside memory is used in this case either. */ int nLookaside = 0; if( db && !db->mallocFailed && (pTable->tabFlags & TF_Ephemeral)==0 ){ nLookaside = sqlite3LookasideUsed(db, 0); } #endif /* Delete all indices associated with this table. */ for(pIndex = pTable->pIndex; pIndex; pIndex=pNext){ pNext = pIndex->pNext; assert( pIndex->pSchema==pTable->pSchema || (IsVirtual(pTable) && pIndex->idxType!=SQLITE_IDXTYPE_APPDEF) ); if( (db==0 || db->pnBytesFreed==0) && !IsVirtual(pTable) ){ char *zName = pIndex->zName; TESTONLY ( Index *pOld = ) sqlite3HashInsert( &pIndex->pSchema->idxHash, zName, 0 ); assert( db==0 || sqlite3SchemaMutexHeld(db, 0, pIndex->pSchema) ); assert( pOld==pIndex || pOld==0 ); } sqlite3FreeIndex(db, pIndex); } if( IsOrdinaryTable(pTable) ){ sqlite3FkDelete(db, pTable); } #ifndef SQLITE_OMIT_VIRTUAL_TABLE else if( IsVirtual(pTable) ){ sqlite3VtabClear(db, pTable); } #endif else{ assert( IsView(pTable) ); sqlite3SelectDelete(db, pTable->u.view.pSelect); } /* Delete the Table structure itself. */ sqlite3DeleteColumnNames(db, pTable); sqlite3DbFree(db, pTable->zName); sqlite3DbFree(db, pTable->zColAff); sqlite3ExprListDelete(db, pTable->pCheck); sqlite3DbFree(db, pTable); /* Verify that no lookaside memory was used by schema tables */ assert( nLookaside==0 || nLookaside==sqlite3LookasideUsed(db,0) ); } SQLITE_PRIVATE void sqlite3DeleteTable(sqlite3 *db, Table *pTable){ /* Do not delete the table until the reference count reaches zero. */ if( !pTable ) return; if( ((!db || db->pnBytesFreed==0) && (--pTable->nTabRef)>0) ) return; deleteTable(db, pTable); } /* ** Unlink the given table from the hash tables and the delete the ** table structure with all its indices and foreign keys. */ SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTable(sqlite3 *db, int iDb, const char *zTabName){ Table *p; Db *pDb; assert( db!=0 ); assert( iDb>=0 && iDbnDb ); assert( zTabName ); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); testcase( zTabName[0]==0 ); /* Zero-length table names are allowed */ pDb = &db->aDb[iDb]; p = sqlite3HashInsert(&pDb->pSchema->tblHash, zTabName, 0); sqlite3DeleteTable(db, p); db->mDbFlags |= DBFLAG_SchemaChange; } /* ** Given a token, return a string that consists of the text of that ** token. Space to hold the returned string ** is obtained from sqliteMalloc() and must be freed by the calling ** function. ** ** Any quotation marks (ex: "name", 'name', [name], or `name`) that ** surround the body of the token are removed. ** ** Tokens are often just pointers into the original SQL text and so ** are not \000 terminated and are not persistent. The returned string ** is \000 terminated and is persistent. */ SQLITE_PRIVATE char *sqlite3NameFromToken(sqlite3 *db, const Token *pName){ char *zName; if( pName ){ zName = sqlite3DbStrNDup(db, (const char*)pName->z, pName->n); sqlite3Dequote(zName); }else{ zName = 0; } return zName; } /* ** Open the sqlite_schema table stored in database number iDb for ** writing. The table is opened using cursor 0. */ SQLITE_PRIVATE void sqlite3OpenSchemaTable(Parse *p, int iDb){ Vdbe *v = sqlite3GetVdbe(p); sqlite3TableLock(p, iDb, SCHEMA_ROOT, 1, LEGACY_SCHEMA_TABLE); sqlite3VdbeAddOp4Int(v, OP_OpenWrite, 0, SCHEMA_ROOT, iDb, 5); if( p->nTab==0 ){ p->nTab = 1; } } /* ** Parameter zName points to a nul-terminated buffer containing the name ** of a database ("main", "temp" or the name of an attached db). This ** function returns the index of the named database in db->aDb[], or ** -1 if the named db cannot be found. */ SQLITE_PRIVATE int sqlite3FindDbName(sqlite3 *db, const char *zName){ int i = -1; /* Database number */ if( zName ){ Db *pDb; for(i=(db->nDb-1), pDb=&db->aDb[i]; i>=0; i--, pDb--){ if( 0==sqlite3_stricmp(pDb->zDbSName, zName) ) break; /* "main" is always an acceptable alias for the primary database ** even if it has been renamed using SQLITE_DBCONFIG_MAINDBNAME. */ if( i==0 && 0==sqlite3_stricmp("main", zName) ) break; } } return i; } /* ** The token *pName contains the name of a database (either "main" or ** "temp" or the name of an attached db). This routine returns the ** index of the named database in db->aDb[], or -1 if the named db ** does not exist. */ SQLITE_PRIVATE int sqlite3FindDb(sqlite3 *db, Token *pName){ int i; /* Database number */ char *zName; /* Name we are searching for */ zName = sqlite3NameFromToken(db, pName); i = sqlite3FindDbName(db, zName); sqlite3DbFree(db, zName); return i; } /* The table or view or trigger name is passed to this routine via tokens ** pName1 and pName2. If the table name was fully qualified, for example: ** ** CREATE TABLE xxx.yyy (...); ** ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if ** the table name is not fully qualified, i.e.: ** ** CREATE TABLE yyy(...); ** ** Then pName1 is set to "yyy" and pName2 is "". ** ** This routine sets the *ppUnqual pointer to point at the token (pName1 or ** pName2) that stores the unqualified table name. The index of the ** database "xxx" is returned. */ SQLITE_PRIVATE int sqlite3TwoPartName( Parse *pParse, /* Parsing and code generating context */ Token *pName1, /* The "xxx" in the name "xxx.yyy" or "xxx" */ Token *pName2, /* The "yyy" in the name "xxx.yyy" */ Token **pUnqual /* Write the unqualified object name here */ ){ int iDb; /* Database holding the object */ sqlite3 *db = pParse->db; assert( pName2!=0 ); if( pName2->n>0 ){ if( db->init.busy ) { sqlite3ErrorMsg(pParse, "corrupt database"); return -1; } *pUnqual = pName2; iDb = sqlite3FindDb(db, pName1); if( iDb<0 ){ sqlite3ErrorMsg(pParse, "unknown database %T", pName1); return -1; } }else{ assert( db->init.iDb==0 || db->init.busy || IN_SPECIAL_PARSE || (db->mDbFlags & DBFLAG_Vacuum)!=0); iDb = db->init.iDb; *pUnqual = pName1; } return iDb; } /* ** True if PRAGMA writable_schema is ON */ SQLITE_PRIVATE int sqlite3WritableSchema(sqlite3 *db){ testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))==0 ); testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))== SQLITE_WriteSchema ); testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))== SQLITE_Defensive ); testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))== (SQLITE_WriteSchema|SQLITE_Defensive) ); return (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))==SQLITE_WriteSchema; } /* ** This routine is used to check if the UTF-8 string zName is a legal ** unqualified name for a new schema object (table, index, view or ** trigger). All names are legal except those that begin with the string ** "sqlite_" (in upper, lower or mixed case). This portion of the namespace ** is reserved for internal use. ** ** When parsing the sqlite_schema table, this routine also checks to ** make sure the "type", "name", and "tbl_name" columns are consistent ** with the SQL. */ SQLITE_PRIVATE int sqlite3CheckObjectName( Parse *pParse, /* Parsing context */ const char *zName, /* Name of the object to check */ const char *zType, /* Type of this object */ const char *zTblName /* Parent table name for triggers and indexes */ ){ sqlite3 *db = pParse->db; if( sqlite3WritableSchema(db) || db->init.imposterTable || !sqlite3Config.bExtraSchemaChecks ){ /* Skip these error checks for writable_schema=ON */ return SQLITE_OK; } if( db->init.busy ){ if( sqlite3_stricmp(zType, db->init.azInit[0]) || sqlite3_stricmp(zName, db->init.azInit[1]) || sqlite3_stricmp(zTblName, db->init.azInit[2]) ){ sqlite3ErrorMsg(pParse, ""); /* corruptSchema() will supply the error */ return SQLITE_ERROR; } }else{ if( (pParse->nested==0 && 0==sqlite3StrNICmp(zName, "sqlite_", 7)) || (sqlite3ReadOnlyShadowTables(db) && sqlite3ShadowTableName(db, zName)) ){ sqlite3ErrorMsg(pParse, "object name reserved for internal use: %s", zName); return SQLITE_ERROR; } } return SQLITE_OK; } /* ** Return the PRIMARY KEY index of a table */ SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table *pTab){ Index *p; for(p=pTab->pIndex; p && !IsPrimaryKeyIndex(p); p=p->pNext){} return p; } /* ** Convert an table column number into a index column number. That is, ** for the column iCol in the table (as defined by the CREATE TABLE statement) ** find the (first) offset of that column in index pIdx. Or return -1 ** if column iCol is not used in index pIdx. */ SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index *pIdx, i16 iCol){ int i; for(i=0; inColumn; i++){ if( iCol==pIdx->aiColumn[i] ) return i; } return -1; } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Convert a storage column number into a table column number. ** ** The storage column number (0,1,2,....) is the index of the value ** as it appears in the record on disk. The true column number ** is the index (0,1,2,...) of the column in the CREATE TABLE statement. ** ** The storage column number is less than the table column number if ** and only there are VIRTUAL columns to the left. ** ** If SQLITE_OMIT_GENERATED_COLUMNS, this routine is a no-op macro. */ SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table *pTab, i16 iCol){ if( pTab->tabFlags & TF_HasVirtual ){ int i; for(i=0; i<=iCol; i++){ if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) iCol++; } } return iCol; } #endif #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Convert a table column number into a storage column number. ** ** The storage column number (0,1,2,....) is the index of the value ** as it appears in the record on disk. Or, if the input column is ** the N-th virtual column (zero-based) then the storage number is ** the number of non-virtual columns in the table plus N. ** ** The true column number is the index (0,1,2,...) of the column in ** the CREATE TABLE statement. ** ** If the input column is a VIRTUAL column, then it should not appear ** in storage. But the value sometimes is cached in registers that ** follow the range of registers used to construct storage. This ** avoids computing the same VIRTUAL column multiple times, and provides ** values for use by OP_Param opcodes in triggers. Hence, if the ** input column is a VIRTUAL table, put it after all the other columns. ** ** In the following, N means "normal column", S means STORED, and ** V means VIRTUAL. Suppose the CREATE TABLE has columns like this: ** ** CREATE TABLE ex(N,S,V,N,S,V,N,S,V); ** -- 0 1 2 3 4 5 6 7 8 ** ** Then the mapping from this function is as follows: ** ** INPUTS: 0 1 2 3 4 5 6 7 8 ** OUTPUTS: 0 1 6 2 3 7 4 5 8 ** ** So, in other words, this routine shifts all the virtual columns to ** the end. ** ** If SQLITE_OMIT_GENERATED_COLUMNS then there are no virtual columns and ** this routine is a no-op macro. If the pTab does not have any virtual ** columns, then this routine is no-op that always return iCol. If iCol ** is negative (indicating the ROWID column) then this routine return iCol. */ SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table *pTab, i16 iCol){ int i; i16 n; assert( iColnCol ); if( (pTab->tabFlags & TF_HasVirtual)==0 || iCol<0 ) return iCol; for(i=0, n=0; iaCol[i].colFlags & COLFLAG_VIRTUAL)==0 ) n++; } if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ){ /* iCol is a virtual column itself */ return pTab->nNVCol + i - n; }else{ /* iCol is a normal or stored column */ return n; } } #endif /* ** Insert a single OP_JournalMode query opcode in order to force the ** prepared statement to return false for sqlite3_stmt_readonly(). This ** is used by CREATE TABLE IF NOT EXISTS and similar if the table already ** exists, so that the prepared statement for CREATE TABLE IF NOT EXISTS ** will return false for sqlite3_stmt_readonly() even if that statement ** is a read-only no-op. */ static void sqlite3ForceNotReadOnly(Parse *pParse){ int iReg = ++pParse->nMem; Vdbe *v = sqlite3GetVdbe(pParse); if( v ){ sqlite3VdbeAddOp3(v, OP_JournalMode, 0, iReg, PAGER_JOURNALMODE_QUERY); sqlite3VdbeUsesBtree(v, 0); } } /* ** Begin constructing a new table representation in memory. This is ** the first of several action routines that get called in response ** to a CREATE TABLE statement. In particular, this routine is called ** after seeing tokens "CREATE" and "TABLE" and the table name. The isTemp ** flag is true if the table should be stored in the auxiliary database ** file instead of in the main database file. This is normally the case ** when the "TEMP" or "TEMPORARY" keyword occurs in between ** CREATE and TABLE. ** ** The new table record is initialized and put in pParse->pNewTable. ** As more of the CREATE TABLE statement is parsed, additional action ** routines will be called to add more information to this record. ** At the end of the CREATE TABLE statement, the sqlite3EndTable() routine ** is called to complete the construction of the new table record. */ SQLITE_PRIVATE void sqlite3StartTable( Parse *pParse, /* Parser context */ Token *pName1, /* First part of the name of the table or view */ Token *pName2, /* Second part of the name of the table or view */ int isTemp, /* True if this is a TEMP table */ int isView, /* True if this is a VIEW */ int isVirtual, /* True if this is a VIRTUAL table */ int noErr /* Do nothing if table already exists */ ){ Table *pTable; char *zName = 0; /* The name of the new table */ sqlite3 *db = pParse->db; Vdbe *v; int iDb; /* Database number to create the table in */ Token *pName; /* Unqualified name of the table to create */ if( db->init.busy && db->init.newTnum==1 ){ /* Special case: Parsing the sqlite_schema or sqlite_temp_schema schema */ iDb = db->init.iDb; zName = sqlite3DbStrDup(db, SCHEMA_TABLE(iDb)); pName = pName1; }else{ /* The common case */ iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); if( iDb<0 ) return; if( !OMIT_TEMPDB && isTemp && pName2->n>0 && iDb!=1 ){ /* If creating a temp table, the name may not be qualified. Unless ** the database name is "temp" anyway. */ sqlite3ErrorMsg(pParse, "temporary table name must be unqualified"); return; } if( !OMIT_TEMPDB && isTemp ) iDb = 1; zName = sqlite3NameFromToken(db, pName); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)zName, pName); } } pParse->sNameToken = *pName; if( zName==0 ) return; if( sqlite3CheckObjectName(pParse, zName, isView?"view":"table", zName) ){ goto begin_table_error; } if( db->init.iDb==1 ) isTemp = 1; #ifndef SQLITE_OMIT_AUTHORIZATION assert( isTemp==0 || isTemp==1 ); assert( isView==0 || isView==1 ); { static const u8 aCode[] = { SQLITE_CREATE_TABLE, SQLITE_CREATE_TEMP_TABLE, SQLITE_CREATE_VIEW, SQLITE_CREATE_TEMP_VIEW }; char *zDb = db->aDb[iDb].zDbSName; if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(isTemp), 0, zDb) ){ goto begin_table_error; } if( !isVirtual && sqlite3AuthCheck(pParse, (int)aCode[isTemp+2*isView], zName, 0, zDb) ){ goto begin_table_error; } } #endif /* Make sure the new table name does not collide with an existing ** index or table name in the same database. Issue an error message if ** it does. The exception is if the statement being parsed was passed ** to an sqlite3_declare_vtab() call. In that case only the column names ** and types will be used, so there is no need to test for namespace ** collisions. */ if( !IN_SPECIAL_PARSE ){ char *zDb = db->aDb[iDb].zDbSName; if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto begin_table_error; } pTable = sqlite3FindTable(db, zName, zDb); if( pTable ){ if( !noErr ){ sqlite3ErrorMsg(pParse, "%s %T already exists", (IsView(pTable)? "view" : "table"), pName); }else{ assert( !db->init.busy || CORRUPT_DB ); sqlite3CodeVerifySchema(pParse, iDb); sqlite3ForceNotReadOnly(pParse); } goto begin_table_error; } if( sqlite3FindIndex(db, zName, zDb)!=0 ){ sqlite3ErrorMsg(pParse, "there is already an index named %s", zName); goto begin_table_error; } } pTable = sqlite3DbMallocZero(db, sizeof(Table)); if( pTable==0 ){ assert( db->mallocFailed ); pParse->rc = SQLITE_NOMEM_BKPT; pParse->nErr++; goto begin_table_error; } pTable->zName = zName; pTable->iPKey = -1; pTable->pSchema = db->aDb[iDb].pSchema; pTable->nTabRef = 1; #ifdef SQLITE_DEFAULT_ROWEST pTable->nRowLogEst = sqlite3LogEst(SQLITE_DEFAULT_ROWEST); #else pTable->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); #endif assert( pParse->pNewTable==0 ); pParse->pNewTable = pTable; /* Begin generating the code that will insert the table record into ** the schema table. Note in particular that we must go ahead ** and allocate the record number for the table entry now. Before any ** PRIMARY KEY or UNIQUE keywords are parsed. Those keywords will cause ** indices to be created and the table record must come before the ** indices. Hence, the record number for the table must be allocated ** now. */ if( !db->init.busy && (v = sqlite3GetVdbe(pParse))!=0 ){ int addr1; int fileFormat; int reg1, reg2, reg3; /* nullRow[] is an OP_Record encoding of a row containing 5 NULLs */ static const char nullRow[] = { 6, 0, 0, 0, 0, 0 }; sqlite3BeginWriteOperation(pParse, 1, iDb); #ifndef SQLITE_OMIT_VIRTUALTABLE if( isVirtual ){ sqlite3VdbeAddOp0(v, OP_VBegin); } #endif /* If the file format and encoding in the database have not been set, ** set them now. */ reg1 = pParse->regRowid = ++pParse->nMem; reg2 = pParse->regRoot = ++pParse->nMem; reg3 = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, reg3, BTREE_FILE_FORMAT); sqlite3VdbeUsesBtree(v, iDb); addr1 = sqlite3VdbeAddOp1(v, OP_If, reg3); VdbeCoverage(v); fileFormat = (db->flags & SQLITE_LegacyFileFmt)!=0 ? 1 : SQLITE_MAX_FILE_FORMAT; sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_FILE_FORMAT, fileFormat); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_TEXT_ENCODING, ENC(db)); sqlite3VdbeJumpHere(v, addr1); /* This just creates a place-holder record in the sqlite_schema table. ** The record created does not contain anything yet. It will be replaced ** by the real entry in code generated at sqlite3EndTable(). ** ** The rowid for the new entry is left in register pParse->regRowid. ** The root page number of the new table is left in reg pParse->regRoot. ** The rowid and root page number values are needed by the code that ** sqlite3EndTable will generate. */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) if( isView || isVirtual ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, reg2); }else #endif { assert( !pParse->bReturning ); pParse->u1.addrCrTab = sqlite3VdbeAddOp3(v, OP_CreateBtree, iDb, reg2, BTREE_INTKEY); } sqlite3OpenSchemaTable(pParse, iDb); sqlite3VdbeAddOp2(v, OP_NewRowid, 0, reg1); sqlite3VdbeAddOp4(v, OP_Blob, 6, reg3, 0, nullRow, P4_STATIC); sqlite3VdbeAddOp3(v, OP_Insert, 0, reg3, reg1); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); sqlite3VdbeAddOp0(v, OP_Close); } /* Normal (non-error) return. */ return; /* If an error occurs, we jump here */ begin_table_error: pParse->checkSchema = 1; sqlite3DbFree(db, zName); return; } /* Set properties of a table column based on the (magical) ** name of the column. */ #if SQLITE_ENABLE_HIDDEN_COLUMNS SQLITE_PRIVATE void sqlite3ColumnPropertiesFromName(Table *pTab, Column *pCol){ if( sqlite3_strnicmp(pCol->zCnName, "__hidden__", 10)==0 ){ pCol->colFlags |= COLFLAG_HIDDEN; if( pTab ) pTab->tabFlags |= TF_HasHidden; }else if( pTab && pCol!=pTab->aCol && (pCol[-1].colFlags & COLFLAG_HIDDEN) ){ pTab->tabFlags |= TF_OOOHidden; } } #endif /* ** Name of the special TEMP trigger used to implement RETURNING. The ** name begins with "sqlite_" so that it is guaranteed not to collide ** with any application-generated triggers. */ #define RETURNING_TRIGGER_NAME "sqlite_returning" /* ** Clean up the data structures associated with the RETURNING clause. */ static void sqlite3DeleteReturning(sqlite3 *db, Returning *pRet){ Hash *pHash; pHash = &(db->aDb[1].pSchema->trigHash); sqlite3HashInsert(pHash, RETURNING_TRIGGER_NAME, 0); sqlite3ExprListDelete(db, pRet->pReturnEL); sqlite3DbFree(db, pRet); } /* ** Add the RETURNING clause to the parse currently underway. ** ** This routine creates a special TEMP trigger that will fire for each row ** of the DML statement. That TEMP trigger contains a single SELECT ** statement with a result set that is the argument of the RETURNING clause. ** The trigger has the Trigger.bReturning flag and an opcode of ** TK_RETURNING instead of TK_SELECT, so that the trigger code generator ** knows to handle it specially. The TEMP trigger is automatically ** removed at the end of the parse. ** ** When this routine is called, we do not yet know if the RETURNING clause ** is attached to a DELETE, INSERT, or UPDATE, so construct it as a ** RETURNING trigger instead. It will then be converted into the appropriate ** type on the first call to sqlite3TriggersExist(). */ SQLITE_PRIVATE void sqlite3AddReturning(Parse *pParse, ExprList *pList){ Returning *pRet; Hash *pHash; sqlite3 *db = pParse->db; if( pParse->pNewTrigger ){ sqlite3ErrorMsg(pParse, "cannot use RETURNING in a trigger"); }else{ assert( pParse->bReturning==0 ); } pParse->bReturning = 1; pRet = sqlite3DbMallocZero(db, sizeof(*pRet)); if( pRet==0 ){ sqlite3ExprListDelete(db, pList); return; } pParse->u1.pReturning = pRet; pRet->pParse = pParse; pRet->pReturnEL = pList; sqlite3ParserAddCleanup(pParse, (void(*)(sqlite3*,void*))sqlite3DeleteReturning, pRet); testcase( pParse->earlyCleanup ); if( db->mallocFailed ) return; pRet->retTrig.zName = RETURNING_TRIGGER_NAME; pRet->retTrig.op = TK_RETURNING; pRet->retTrig.tr_tm = TRIGGER_AFTER; pRet->retTrig.bReturning = 1; pRet->retTrig.pSchema = db->aDb[1].pSchema; pRet->retTrig.pTabSchema = db->aDb[1].pSchema; pRet->retTrig.step_list = &pRet->retTStep; pRet->retTStep.op = TK_RETURNING; pRet->retTStep.pTrig = &pRet->retTrig; pRet->retTStep.pExprList = pList; pHash = &(db->aDb[1].pSchema->trigHash); assert( sqlite3HashFind(pHash, RETURNING_TRIGGER_NAME)==0 || pParse->nErr ); if( sqlite3HashInsert(pHash, RETURNING_TRIGGER_NAME, &pRet->retTrig) ==&pRet->retTrig ){ sqlite3OomFault(db); } } /* ** Add a new column to the table currently being constructed. ** ** The parser calls this routine once for each column declaration ** in a CREATE TABLE statement. sqlite3StartTable() gets called ** first to get things going. Then this routine is called for each ** column. */ SQLITE_PRIVATE void sqlite3AddColumn(Parse *pParse, Token sName, Token sType){ Table *p; int i; char *z; char *zType; Column *pCol; sqlite3 *db = pParse->db; u8 hName; Column *aNew; u8 eType = COLTYPE_CUSTOM; u8 szEst = 1; char affinity = SQLITE_AFF_BLOB; if( (p = pParse->pNewTable)==0 ) return; if( p->nCol+1>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many columns on %s", p->zName); return; } if( !IN_RENAME_OBJECT ) sqlite3DequoteToken(&sName); /* Because keywords GENERATE ALWAYS can be converted into indentifiers ** by the parser, we can sometimes end up with a typename that ends ** with "generated always". Check for this case and omit the surplus ** text. */ if( sType.n>=16 && sqlite3_strnicmp(sType.z+(sType.n-6),"always",6)==0 ){ sType.n -= 6; while( ALWAYS(sType.n>0) && sqlite3Isspace(sType.z[sType.n-1]) ) sType.n--; if( sType.n>=9 && sqlite3_strnicmp(sType.z+(sType.n-9),"generated",9)==0 ){ sType.n -= 9; while( sType.n>0 && sqlite3Isspace(sType.z[sType.n-1]) ) sType.n--; } } /* Check for standard typenames. For standard typenames we will ** set the Column.eType field rather than storing the typename after ** the column name, in order to save space. */ if( sType.n>=3 ){ sqlite3DequoteToken(&sType); for(i=0; i0) ); if( z==0 ) return; if( IN_RENAME_OBJECT ) sqlite3RenameTokenMap(pParse, (void*)z, &sName); memcpy(z, sName.z, sName.n); z[sName.n] = 0; sqlite3Dequote(z); hName = sqlite3StrIHash(z); for(i=0; inCol; i++){ if( p->aCol[i].hName==hName && sqlite3StrICmp(z, p->aCol[i].zCnName)==0 ){ sqlite3ErrorMsg(pParse, "duplicate column name: %s", z); sqlite3DbFree(db, z); return; } } aNew = sqlite3DbRealloc(db,p->aCol,((i64)p->nCol+1)*sizeof(p->aCol[0])); if( aNew==0 ){ sqlite3DbFree(db, z); return; } p->aCol = aNew; pCol = &p->aCol[p->nCol]; memset(pCol, 0, sizeof(p->aCol[0])); pCol->zCnName = z; pCol->hName = hName; sqlite3ColumnPropertiesFromName(p, pCol); if( sType.n==0 ){ /* If there is no type specified, columns have the default affinity ** 'BLOB' with a default size of 4 bytes. */ pCol->affinity = affinity; pCol->eCType = eType; pCol->szEst = szEst; #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( affinity==SQLITE_AFF_BLOB ){ if( 4>=sqlite3GlobalConfig.szSorterRef ){ pCol->colFlags |= COLFLAG_SORTERREF; } } #endif }else{ zType = z + sqlite3Strlen30(z) + 1; memcpy(zType, sType.z, sType.n); zType[sType.n] = 0; sqlite3Dequote(zType); pCol->affinity = sqlite3AffinityType(zType, pCol); pCol->colFlags |= COLFLAG_HASTYPE; } p->nCol++; p->nNVCol++; pParse->constraintName.n = 0; } /* ** This routine is called by the parser while in the middle of ** parsing a CREATE TABLE statement. A "NOT NULL" constraint has ** been seen on a column. This routine sets the notNull flag on ** the column currently under construction. */ SQLITE_PRIVATE void sqlite3AddNotNull(Parse *pParse, int onError){ Table *p; Column *pCol; p = pParse->pNewTable; if( p==0 || NEVER(p->nCol<1) ) return; pCol = &p->aCol[p->nCol-1]; pCol->notNull = (u8)onError; p->tabFlags |= TF_HasNotNull; /* Set the uniqNotNull flag on any UNIQUE or PK indexes already created ** on this column. */ if( pCol->colFlags & COLFLAG_UNIQUE ){ Index *pIdx; for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ assert( pIdx->nKeyCol==1 && pIdx->onError!=OE_None ); if( pIdx->aiColumn[0]==p->nCol-1 ){ pIdx->uniqNotNull = 1; } } } } /* ** Scan the column type name zType (length nType) and return the ** associated affinity type. ** ** This routine does a case-independent search of zType for the ** substrings in the following table. If one of the substrings is ** found, the corresponding affinity is returned. If zType contains ** more than one of the substrings, entries toward the top of ** the table take priority. For example, if zType is 'BLOBINT', ** SQLITE_AFF_INTEGER is returned. ** ** Substring | Affinity ** -------------------------------- ** 'INT' | SQLITE_AFF_INTEGER ** 'CHAR' | SQLITE_AFF_TEXT ** 'CLOB' | SQLITE_AFF_TEXT ** 'TEXT' | SQLITE_AFF_TEXT ** 'BLOB' | SQLITE_AFF_BLOB ** 'REAL' | SQLITE_AFF_REAL ** 'FLOA' | SQLITE_AFF_REAL ** 'DOUB' | SQLITE_AFF_REAL ** ** If none of the substrings in the above table are found, ** SQLITE_AFF_NUMERIC is returned. */ SQLITE_PRIVATE char sqlite3AffinityType(const char *zIn, Column *pCol){ u32 h = 0; char aff = SQLITE_AFF_NUMERIC; const char *zChar = 0; assert( zIn!=0 ); while( zIn[0] ){ h = (h<<8) + sqlite3UpperToLower[(*zIn)&0xff]; zIn++; if( h==(('c'<<24)+('h'<<16)+('a'<<8)+'r') ){ /* CHAR */ aff = SQLITE_AFF_TEXT; zChar = zIn; }else if( h==(('c'<<24)+('l'<<16)+('o'<<8)+'b') ){ /* CLOB */ aff = SQLITE_AFF_TEXT; }else if( h==(('t'<<24)+('e'<<16)+('x'<<8)+'t') ){ /* TEXT */ aff = SQLITE_AFF_TEXT; }else if( h==(('b'<<24)+('l'<<16)+('o'<<8)+'b') /* BLOB */ && (aff==SQLITE_AFF_NUMERIC || aff==SQLITE_AFF_REAL) ){ aff = SQLITE_AFF_BLOB; if( zIn[0]=='(' ) zChar = zIn; #ifndef SQLITE_OMIT_FLOATING_POINT }else if( h==(('r'<<24)+('e'<<16)+('a'<<8)+'l') /* REAL */ && aff==SQLITE_AFF_NUMERIC ){ aff = SQLITE_AFF_REAL; }else if( h==(('f'<<24)+('l'<<16)+('o'<<8)+'a') /* FLOA */ && aff==SQLITE_AFF_NUMERIC ){ aff = SQLITE_AFF_REAL; }else if( h==(('d'<<24)+('o'<<16)+('u'<<8)+'b') /* DOUB */ && aff==SQLITE_AFF_NUMERIC ){ aff = SQLITE_AFF_REAL; #endif }else if( (h&0x00FFFFFF)==(('i'<<16)+('n'<<8)+'t') ){ /* INT */ aff = SQLITE_AFF_INTEGER; break; } } /* If pCol is not NULL, store an estimate of the field size. The ** estimate is scaled so that the size of an integer is 1. */ if( pCol ){ int v = 0; /* default size is approx 4 bytes */ if( aff r=(k/4+1) */ sqlite3GetInt32(zChar, &v); break; } zChar++; } }else{ v = 16; /* BLOB, TEXT, CLOB -> r=5 (approx 20 bytes)*/ } } #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( v>=sqlite3GlobalConfig.szSorterRef ){ pCol->colFlags |= COLFLAG_SORTERREF; } #endif v = v/4 + 1; if( v>255 ) v = 255; pCol->szEst = v; } return aff; } /* ** The expression is the default value for the most recently added column ** of the table currently under construction. ** ** Default value expressions must be constant. Raise an exception if this ** is not the case. ** ** This routine is called by the parser while in the middle of ** parsing a CREATE TABLE statement. */ SQLITE_PRIVATE void sqlite3AddDefaultValue( Parse *pParse, /* Parsing context */ Expr *pExpr, /* The parsed expression of the default value */ const char *zStart, /* Start of the default value text */ const char *zEnd /* First character past end of defaut value text */ ){ Table *p; Column *pCol; sqlite3 *db = pParse->db; p = pParse->pNewTable; if( p!=0 ){ int isInit = db->init.busy && db->init.iDb!=1; pCol = &(p->aCol[p->nCol-1]); if( !sqlite3ExprIsConstantOrFunction(pExpr, isInit) ){ sqlite3ErrorMsg(pParse, "default value of column [%s] is not constant", pCol->zCnName); #ifndef SQLITE_OMIT_GENERATED_COLUMNS }else if( pCol->colFlags & COLFLAG_GENERATED ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); sqlite3ErrorMsg(pParse, "cannot use DEFAULT on a generated column"); #endif }else{ /* A copy of pExpr is used instead of the original, as pExpr contains ** tokens that point to volatile memory. */ Expr x, *pDfltExpr; memset(&x, 0, sizeof(x)); x.op = TK_SPAN; x.u.zToken = sqlite3DbSpanDup(db, zStart, zEnd); x.pLeft = pExpr; x.flags = EP_Skip; pDfltExpr = sqlite3ExprDup(db, &x, EXPRDUP_REDUCE); sqlite3DbFree(db, x.u.zToken); sqlite3ColumnSetExpr(pParse, p, pCol, pDfltExpr); } } if( IN_RENAME_OBJECT ){ sqlite3RenameExprUnmap(pParse, pExpr); } sqlite3ExprDelete(db, pExpr); } /* ** Backwards Compatibility Hack: ** ** Historical versions of SQLite accepted strings as column names in ** indexes and PRIMARY KEY constraints and in UNIQUE constraints. Example: ** ** CREATE TABLE xyz(a,b,c,d,e,PRIMARY KEY('a'),UNIQUE('b','c' COLLATE trim) ** CREATE INDEX abc ON xyz('c','d' DESC,'e' COLLATE nocase DESC); ** ** This is goofy. But to preserve backwards compatibility we continue to ** accept it. This routine does the necessary conversion. It converts ** the expression given in its argument from a TK_STRING into a TK_ID ** if the expression is just a TK_STRING with an optional COLLATE clause. ** If the expression is anything other than TK_STRING, the expression is ** unchanged. */ static void sqlite3StringToId(Expr *p){ if( p->op==TK_STRING ){ p->op = TK_ID; }else if( p->op==TK_COLLATE && p->pLeft->op==TK_STRING ){ p->pLeft->op = TK_ID; } } /* ** Tag the given column as being part of the PRIMARY KEY */ static void makeColumnPartOfPrimaryKey(Parse *pParse, Column *pCol){ pCol->colFlags |= COLFLAG_PRIMKEY; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pCol->colFlags & COLFLAG_GENERATED ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); sqlite3ErrorMsg(pParse, "generated columns cannot be part of the PRIMARY KEY"); } #endif } /* ** Designate the PRIMARY KEY for the table. pList is a list of names ** of columns that form the primary key. If pList is NULL, then the ** most recently added column of the table is the primary key. ** ** A table can have at most one primary key. If the table already has ** a primary key (and this is the second primary key) then create an ** error. ** ** If the PRIMARY KEY is on a single column whose datatype is INTEGER, ** then we will try to use that column as the rowid. Set the Table.iPKey ** field of the table under construction to be the index of the ** INTEGER PRIMARY KEY column. Table.iPKey is set to -1 if there is ** no INTEGER PRIMARY KEY. ** ** If the key is not an INTEGER PRIMARY KEY, then create a unique ** index for the key. No index is created for INTEGER PRIMARY KEYs. */ SQLITE_PRIVATE void sqlite3AddPrimaryKey( Parse *pParse, /* Parsing context */ ExprList *pList, /* List of field names to be indexed */ int onError, /* What to do with a uniqueness conflict */ int autoInc, /* True if the AUTOINCREMENT keyword is present */ int sortOrder /* SQLITE_SO_ASC or SQLITE_SO_DESC */ ){ Table *pTab = pParse->pNewTable; Column *pCol = 0; int iCol = -1, i; int nTerm; if( pTab==0 ) goto primary_key_exit; if( pTab->tabFlags & TF_HasPrimaryKey ){ sqlite3ErrorMsg(pParse, "table \"%s\" has more than one primary key", pTab->zName); goto primary_key_exit; } pTab->tabFlags |= TF_HasPrimaryKey; if( pList==0 ){ iCol = pTab->nCol - 1; pCol = &pTab->aCol[iCol]; makeColumnPartOfPrimaryKey(pParse, pCol); nTerm = 1; }else{ nTerm = pList->nExpr; for(i=0; ia[i].pExpr); assert( pCExpr!=0 ); sqlite3StringToId(pCExpr); if( pCExpr->op==TK_ID ){ const char *zCName; assert( !ExprHasProperty(pCExpr, EP_IntValue) ); zCName = pCExpr->u.zToken; for(iCol=0; iColnCol; iCol++){ if( sqlite3StrICmp(zCName, pTab->aCol[iCol].zCnName)==0 ){ pCol = &pTab->aCol[iCol]; makeColumnPartOfPrimaryKey(pParse, pCol); break; } } } } } if( nTerm==1 && pCol && pCol->eCType==COLTYPE_INTEGER && sortOrder!=SQLITE_SO_DESC ){ if( IN_RENAME_OBJECT && pList ){ Expr *pCExpr = sqlite3ExprSkipCollate(pList->a[0].pExpr); sqlite3RenameTokenRemap(pParse, &pTab->iPKey, pCExpr); } pTab->iPKey = iCol; pTab->keyConf = (u8)onError; assert( autoInc==0 || autoInc==1 ); pTab->tabFlags |= autoInc*TF_Autoincrement; if( pList ) pParse->iPkSortOrder = pList->a[0].sortFlags; (void)sqlite3HasExplicitNulls(pParse, pList); }else if( autoInc ){ #ifndef SQLITE_OMIT_AUTOINCREMENT sqlite3ErrorMsg(pParse, "AUTOINCREMENT is only allowed on an " "INTEGER PRIMARY KEY"); #endif }else{ sqlite3CreateIndex(pParse, 0, 0, 0, pList, onError, 0, 0, sortOrder, 0, SQLITE_IDXTYPE_PRIMARYKEY); pList = 0; } primary_key_exit: sqlite3ExprListDelete(pParse->db, pList); return; } /* ** Add a new CHECK constraint to the table currently under construction. */ SQLITE_PRIVATE void sqlite3AddCheckConstraint( Parse *pParse, /* Parsing context */ Expr *pCheckExpr, /* The check expression */ const char *zStart, /* Opening "(" */ const char *zEnd /* Closing ")" */ ){ #ifndef SQLITE_OMIT_CHECK Table *pTab = pParse->pNewTable; sqlite3 *db = pParse->db; if( pTab && !IN_DECLARE_VTAB && !sqlite3BtreeIsReadonly(db->aDb[db->init.iDb].pBt) ){ pTab->pCheck = sqlite3ExprListAppend(pParse, pTab->pCheck, pCheckExpr); if( pParse->constraintName.n ){ sqlite3ExprListSetName(pParse, pTab->pCheck, &pParse->constraintName, 1); }else{ Token t; for(zStart++; sqlite3Isspace(zStart[0]); zStart++){} while( sqlite3Isspace(zEnd[-1]) ){ zEnd--; } t.z = zStart; t.n = (int)(zEnd - t.z); sqlite3ExprListSetName(pParse, pTab->pCheck, &t, 1); } }else #endif { sqlite3ExprDelete(pParse->db, pCheckExpr); } } /* ** Set the collation function of the most recently parsed table column ** to the CollSeq given. */ SQLITE_PRIVATE void sqlite3AddCollateType(Parse *pParse, Token *pToken){ Table *p; int i; char *zColl; /* Dequoted name of collation sequence */ sqlite3 *db; if( (p = pParse->pNewTable)==0 || IN_RENAME_OBJECT ) return; i = p->nCol-1; db = pParse->db; zColl = sqlite3NameFromToken(db, pToken); if( !zColl ) return; if( sqlite3LocateCollSeq(pParse, zColl) ){ Index *pIdx; sqlite3ColumnSetColl(db, &p->aCol[i], zColl); /* If the column is declared as " PRIMARY KEY COLLATE ", ** then an index may have been created on this column before the ** collation type was added. Correct this if it is the case. */ for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ assert( pIdx->nKeyCol==1 ); if( pIdx->aiColumn[0]==i ){ pIdx->azColl[0] = sqlite3ColumnColl(&p->aCol[i]); } } } sqlite3DbFree(db, zColl); } /* Change the most recently parsed column to be a GENERATED ALWAYS AS ** column. */ SQLITE_PRIVATE void sqlite3AddGenerated(Parse *pParse, Expr *pExpr, Token *pType){ #ifndef SQLITE_OMIT_GENERATED_COLUMNS u8 eType = COLFLAG_VIRTUAL; Table *pTab = pParse->pNewTable; Column *pCol; if( pTab==0 ){ /* generated column in an CREATE TABLE IF NOT EXISTS that already exists */ goto generated_done; } pCol = &(pTab->aCol[pTab->nCol-1]); if( IN_DECLARE_VTAB ){ sqlite3ErrorMsg(pParse, "virtual tables cannot use computed columns"); goto generated_done; } if( pCol->iDflt>0 ) goto generated_error; if( pType ){ if( pType->n==7 && sqlite3StrNICmp("virtual",pType->z,7)==0 ){ /* no-op */ }else if( pType->n==6 && sqlite3StrNICmp("stored",pType->z,6)==0 ){ eType = COLFLAG_STORED; }else{ goto generated_error; } } if( eType==COLFLAG_VIRTUAL ) pTab->nNVCol--; pCol->colFlags |= eType; assert( TF_HasVirtual==COLFLAG_VIRTUAL ); assert( TF_HasStored==COLFLAG_STORED ); pTab->tabFlags |= eType; if( pCol->colFlags & COLFLAG_PRIMKEY ){ makeColumnPartOfPrimaryKey(pParse, pCol); /* For the error message */ } sqlite3ColumnSetExpr(pParse, pTab, pCol, pExpr); pExpr = 0; goto generated_done; generated_error: sqlite3ErrorMsg(pParse, "error in generated column \"%s\"", pCol->zCnName); generated_done: sqlite3ExprDelete(pParse->db, pExpr); #else /* Throw and error for the GENERATED ALWAYS AS clause if the ** SQLITE_OMIT_GENERATED_COLUMNS compile-time option is used. */ sqlite3ErrorMsg(pParse, "generated columns not supported"); sqlite3ExprDelete(pParse->db, pExpr); #endif } /* ** Generate code that will increment the schema cookie. ** ** The schema cookie is used to determine when the schema for the ** database changes. After each schema change, the cookie value ** changes. When a process first reads the schema it records the ** cookie. Thereafter, whenever it goes to access the database, ** it checks the cookie to make sure the schema has not changed ** since it was last read. ** ** This plan is not completely bullet-proof. It is possible for ** the schema to change multiple times and for the cookie to be ** set back to prior value. But schema changes are infrequent ** and the probability of hitting the same cookie value is only ** 1 chance in 2^32. So we're safe enough. ** ** IMPLEMENTATION-OF: R-34230-56049 SQLite automatically increments ** the schema-version whenever the schema changes. */ SQLITE_PRIVATE void sqlite3ChangeCookie(Parse *pParse, int iDb){ sqlite3 *db = pParse->db; Vdbe *v = pParse->pVdbe; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_SCHEMA_VERSION, (int)(1+(unsigned)db->aDb[iDb].pSchema->schema_cookie)); } /* ** Measure the number of characters needed to output the given ** identifier. The number returned includes any quotes used ** but does not include the null terminator. ** ** The estimate is conservative. It might be larger that what is ** really needed. */ static int identLength(const char *z){ int n; for(n=0; *z; n++, z++){ if( *z=='"' ){ n++; } } return n + 2; } /* ** The first parameter is a pointer to an output buffer. The second ** parameter is a pointer to an integer that contains the offset at ** which to write into the output buffer. This function copies the ** nul-terminated string pointed to by the third parameter, zSignedIdent, ** to the specified offset in the buffer and updates *pIdx to refer ** to the first byte after the last byte written before returning. ** ** If the string zSignedIdent consists entirely of alpha-numeric ** characters, does not begin with a digit and is not an SQL keyword, ** then it is copied to the output buffer exactly as it is. Otherwise, ** it is quoted using double-quotes. */ static void identPut(char *z, int *pIdx, char *zSignedIdent){ unsigned char *zIdent = (unsigned char*)zSignedIdent; int i, j, needQuote; i = *pIdx; for(j=0; zIdent[j]; j++){ if( !sqlite3Isalnum(zIdent[j]) && zIdent[j]!='_' ) break; } needQuote = sqlite3Isdigit(zIdent[0]) || sqlite3KeywordCode(zIdent, j)!=TK_ID || zIdent[j]!=0 || j==0; if( needQuote ) z[i++] = '"'; for(j=0; zIdent[j]; j++){ z[i++] = zIdent[j]; if( zIdent[j]=='"' ) z[i++] = '"'; } if( needQuote ) z[i++] = '"'; z[i] = 0; *pIdx = i; } /* ** Generate a CREATE TABLE statement appropriate for the given ** table. Memory to hold the text of the statement is obtained ** from sqliteMalloc() and must be freed by the calling function. */ static char *createTableStmt(sqlite3 *db, Table *p){ int i, k, n; char *zStmt; char *zSep, *zSep2, *zEnd; Column *pCol; n = 0; for(pCol = p->aCol, i=0; inCol; i++, pCol++){ n += identLength(pCol->zCnName) + 5; } n += identLength(p->zName); if( n<50 ){ zSep = ""; zSep2 = ","; zEnd = ")"; }else{ zSep = "\n "; zSep2 = ",\n "; zEnd = "\n)"; } n += 35 + 6*p->nCol; zStmt = sqlite3DbMallocRaw(0, n); if( zStmt==0 ){ sqlite3OomFault(db); return 0; } sqlite3_snprintf(n, zStmt, "CREATE TABLE "); k = sqlite3Strlen30(zStmt); identPut(zStmt, &k, p->zName); zStmt[k++] = '('; for(pCol=p->aCol, i=0; inCol; i++, pCol++){ static const char * const azType[] = { /* SQLITE_AFF_BLOB */ "", /* SQLITE_AFF_TEXT */ " TEXT", /* SQLITE_AFF_NUMERIC */ " NUM", /* SQLITE_AFF_INTEGER */ " INT", /* SQLITE_AFF_REAL */ " REAL" }; int len; const char *zType; sqlite3_snprintf(n-k, &zStmt[k], zSep); k += sqlite3Strlen30(&zStmt[k]); zSep = zSep2; identPut(zStmt, &k, pCol->zCnName); assert( pCol->affinity-SQLITE_AFF_BLOB >= 0 ); assert( pCol->affinity-SQLITE_AFF_BLOB < ArraySize(azType) ); testcase( pCol->affinity==SQLITE_AFF_BLOB ); testcase( pCol->affinity==SQLITE_AFF_TEXT ); testcase( pCol->affinity==SQLITE_AFF_NUMERIC ); testcase( pCol->affinity==SQLITE_AFF_INTEGER ); testcase( pCol->affinity==SQLITE_AFF_REAL ); zType = azType[pCol->affinity - SQLITE_AFF_BLOB]; len = sqlite3Strlen30(zType); assert( pCol->affinity==SQLITE_AFF_BLOB || pCol->affinity==sqlite3AffinityType(zType, 0) ); memcpy(&zStmt[k], zType, len); k += len; assert( k<=n ); } sqlite3_snprintf(n-k, &zStmt[k], "%s", zEnd); return zStmt; } /* ** Resize an Index object to hold N columns total. Return SQLITE_OK ** on success and SQLITE_NOMEM on an OOM error. */ static int resizeIndexObject(sqlite3 *db, Index *pIdx, int N){ char *zExtra; int nByte; if( pIdx->nColumn>=N ) return SQLITE_OK; assert( pIdx->isResized==0 ); nByte = (sizeof(char*) + sizeof(LogEst) + sizeof(i16) + 1)*N; zExtra = sqlite3DbMallocZero(db, nByte); if( zExtra==0 ) return SQLITE_NOMEM_BKPT; memcpy(zExtra, pIdx->azColl, sizeof(char*)*pIdx->nColumn); pIdx->azColl = (const char**)zExtra; zExtra += sizeof(char*)*N; memcpy(zExtra, pIdx->aiRowLogEst, sizeof(LogEst)*(pIdx->nKeyCol+1)); pIdx->aiRowLogEst = (LogEst*)zExtra; zExtra += sizeof(LogEst)*N; memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn); pIdx->aiColumn = (i16*)zExtra; zExtra += sizeof(i16)*N; memcpy(zExtra, pIdx->aSortOrder, pIdx->nColumn); pIdx->aSortOrder = (u8*)zExtra; pIdx->nColumn = N; pIdx->isResized = 1; return SQLITE_OK; } /* ** Estimate the total row width for a table. */ static void estimateTableWidth(Table *pTab){ unsigned wTable = 0; const Column *pTabCol; int i; for(i=pTab->nCol, pTabCol=pTab->aCol; i>0; i--, pTabCol++){ wTable += pTabCol->szEst; } if( pTab->iPKey<0 ) wTable++; pTab->szTabRow = sqlite3LogEst(wTable*4); } /* ** Estimate the average size of a row for an index. */ static void estimateIndexWidth(Index *pIdx){ unsigned wIndex = 0; int i; const Column *aCol = pIdx->pTable->aCol; for(i=0; inColumn; i++){ i16 x = pIdx->aiColumn[i]; assert( xpTable->nCol ); wIndex += x<0 ? 1 : aCol[pIdx->aiColumn[i]].szEst; } pIdx->szIdxRow = sqlite3LogEst(wIndex*4); } /* Return true if column number x is any of the first nCol entries of aiCol[]. ** This is used to determine if the column number x appears in any of the ** first nCol entries of an index. */ static int hasColumn(const i16 *aiCol, int nCol, int x){ while( nCol-- > 0 ){ if( x==*(aiCol++) ){ return 1; } } return 0; } /* ** Return true if any of the first nKey entries of index pIdx exactly ** match the iCol-th entry of pPk. pPk is always a WITHOUT ROWID ** PRIMARY KEY index. pIdx is an index on the same table. pIdx may ** or may not be the same index as pPk. ** ** The first nKey entries of pIdx are guaranteed to be ordinary columns, ** not a rowid or expression. ** ** This routine differs from hasColumn() in that both the column and the ** collating sequence must match for this routine, but for hasColumn() only ** the column name must match. */ static int isDupColumn(Index *pIdx, int nKey, Index *pPk, int iCol){ int i, j; assert( nKey<=pIdx->nColumn ); assert( iColnColumn,pPk->nKeyCol) ); assert( pPk->idxType==SQLITE_IDXTYPE_PRIMARYKEY ); assert( pPk->pTable->tabFlags & TF_WithoutRowid ); assert( pPk->pTable==pIdx->pTable ); testcase( pPk==pIdx ); j = pPk->aiColumn[iCol]; assert( j!=XN_ROWID && j!=XN_EXPR ); for(i=0; iaiColumn[i]>=0 || j>=0 ); if( pIdx->aiColumn[i]==j && sqlite3StrICmp(pIdx->azColl[i], pPk->azColl[iCol])==0 ){ return 1; } } return 0; } /* Recompute the colNotIdxed field of the Index. ** ** colNotIdxed is a bitmask that has a 0 bit representing each indexed ** columns that are within the first 63 columns of the table. The ** high-order bit of colNotIdxed is always 1. All unindexed columns ** of the table have a 1. ** ** 2019-10-24: For the purpose of this computation, virtual columns are ** not considered to be covered by the index, even if they are in the ** index, because we do not trust the logic in whereIndexExprTrans() to be ** able to find all instances of a reference to the indexed table column ** and convert them into references to the index. Hence we always want ** the actual table at hand in order to recompute the virtual column, if ** necessary. ** ** The colNotIdxed mask is AND-ed with the SrcList.a[].colUsed mask ** to determine if the index is covering index. */ static void recomputeColumnsNotIndexed(Index *pIdx){ Bitmask m = 0; int j; Table *pTab = pIdx->pTable; for(j=pIdx->nColumn-1; j>=0; j--){ int x = pIdx->aiColumn[j]; if( x>=0 && (pTab->aCol[x].colFlags & COLFLAG_VIRTUAL)==0 ){ testcase( x==BMS-1 ); testcase( x==BMS-2 ); if( xcolNotIdxed = ~m; assert( (pIdx->colNotIdxed>>63)==1 ); } /* ** This routine runs at the end of parsing a CREATE TABLE statement that ** has a WITHOUT ROWID clause. The job of this routine is to convert both ** internal schema data structures and the generated VDBE code so that they ** are appropriate for a WITHOUT ROWID table instead of a rowid table. ** Changes include: ** ** (1) Set all columns of the PRIMARY KEY schema object to be NOT NULL. ** (2) Convert P3 parameter of the OP_CreateBtree from BTREE_INTKEY ** into BTREE_BLOBKEY. ** (3) Bypass the creation of the sqlite_schema table entry ** for the PRIMARY KEY as the primary key index is now ** identified by the sqlite_schema table entry of the table itself. ** (4) Set the Index.tnum of the PRIMARY KEY Index object in the ** schema to the rootpage from the main table. ** (5) Add all table columns to the PRIMARY KEY Index object ** so that the PRIMARY KEY is a covering index. The surplus ** columns are part of KeyInfo.nAllField and are not used for ** sorting or lookup or uniqueness checks. ** (6) Replace the rowid tail on all automatically generated UNIQUE ** indices with the PRIMARY KEY columns. ** ** For virtual tables, only (1) is performed. */ static void convertToWithoutRowidTable(Parse *pParse, Table *pTab){ Index *pIdx; Index *pPk; int nPk; int nExtra; int i, j; sqlite3 *db = pParse->db; Vdbe *v = pParse->pVdbe; /* Mark every PRIMARY KEY column as NOT NULL (except for imposter tables) */ if( !db->init.imposterTable ){ for(i=0; inCol; i++){ if( (pTab->aCol[i].colFlags & COLFLAG_PRIMKEY)!=0 && (pTab->aCol[i].notNull==OE_None) ){ pTab->aCol[i].notNull = OE_Abort; } } pTab->tabFlags |= TF_HasNotNull; } /* Convert the P3 operand of the OP_CreateBtree opcode from BTREE_INTKEY ** into BTREE_BLOBKEY. */ assert( !pParse->bReturning ); if( pParse->u1.addrCrTab ){ assert( v ); sqlite3VdbeChangeP3(v, pParse->u1.addrCrTab, BTREE_BLOBKEY); } /* Locate the PRIMARY KEY index. Or, if this table was originally ** an INTEGER PRIMARY KEY table, create a new PRIMARY KEY index. */ if( pTab->iPKey>=0 ){ ExprList *pList; Token ipkToken; sqlite3TokenInit(&ipkToken, pTab->aCol[pTab->iPKey].zCnName); pList = sqlite3ExprListAppend(pParse, 0, sqlite3ExprAlloc(db, TK_ID, &ipkToken, 0)); if( pList==0 ){ pTab->tabFlags &= ~TF_WithoutRowid; return; } if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, pList->a[0].pExpr, &pTab->iPKey); } pList->a[0].sortFlags = pParse->iPkSortOrder; assert( pParse->pNewTable==pTab ); pTab->iPKey = -1; sqlite3CreateIndex(pParse, 0, 0, 0, pList, pTab->keyConf, 0, 0, 0, 0, SQLITE_IDXTYPE_PRIMARYKEY); if( pParse->nErr ){ pTab->tabFlags &= ~TF_WithoutRowid; return; } assert( db->mallocFailed==0 ); pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk->nKeyCol==1 ); }else{ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); /* ** Remove all redundant columns from the PRIMARY KEY. For example, change ** "PRIMARY KEY(a,b,a,b,c,b,c,d)" into just "PRIMARY KEY(a,b,c,d)". Later ** code assumes the PRIMARY KEY contains no repeated columns. */ for(i=j=1; inKeyCol; i++){ if( isDupColumn(pPk, j, pPk, i) ){ pPk->nColumn--; }else{ testcase( hasColumn(pPk->aiColumn, j, pPk->aiColumn[i]) ); pPk->azColl[j] = pPk->azColl[i]; pPk->aSortOrder[j] = pPk->aSortOrder[i]; pPk->aiColumn[j++] = pPk->aiColumn[i]; } } pPk->nKeyCol = j; } assert( pPk!=0 ); pPk->isCovering = 1; if( !db->init.imposterTable ) pPk->uniqNotNull = 1; nPk = pPk->nColumn = pPk->nKeyCol; /* Bypass the creation of the PRIMARY KEY btree and the sqlite_schema ** table entry. This is only required if currently generating VDBE ** code for a CREATE TABLE (not when parsing one as part of reading ** a database schema). */ if( v && pPk->tnum>0 ){ assert( db->init.busy==0 ); sqlite3VdbeChangeOpcode(v, (int)pPk->tnum, OP_Goto); } /* The root page of the PRIMARY KEY is the table root page */ pPk->tnum = pTab->tnum; /* Update the in-memory representation of all UNIQUE indices by converting ** the final rowid column into one or more columns of the PRIMARY KEY. */ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int n; if( IsPrimaryKeyIndex(pIdx) ) continue; for(i=n=0; inKeyCol, pPk, i) ){ testcase( hasColumn(pIdx->aiColumn, pIdx->nKeyCol, pPk->aiColumn[i]) ); n++; } } if( n==0 ){ /* This index is a superset of the primary key */ pIdx->nColumn = pIdx->nKeyCol; continue; } if( resizeIndexObject(db, pIdx, pIdx->nKeyCol+n) ) return; for(i=0, j=pIdx->nKeyCol; inKeyCol, pPk, i) ){ testcase( hasColumn(pIdx->aiColumn, pIdx->nKeyCol, pPk->aiColumn[i]) ); pIdx->aiColumn[j] = pPk->aiColumn[i]; pIdx->azColl[j] = pPk->azColl[i]; if( pPk->aSortOrder[i] ){ /* See ticket https://www.sqlite.org/src/info/bba7b69f9849b5bf */ pIdx->bAscKeyBug = 1; } j++; } } assert( pIdx->nColumn>=pIdx->nKeyCol+n ); assert( pIdx->nColumn>=j ); } /* Add all table columns to the PRIMARY KEY index */ nExtra = 0; for(i=0; inCol; i++){ if( !hasColumn(pPk->aiColumn, nPk, i) && (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ) nExtra++; } if( resizeIndexObject(db, pPk, nPk+nExtra) ) return; for(i=0, j=nPk; inCol; i++){ if( !hasColumn(pPk->aiColumn, j, i) && (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){ assert( jnColumn ); pPk->aiColumn[j] = i; pPk->azColl[j] = sqlite3StrBINARY; j++; } } assert( pPk->nColumn==j ); assert( pTab->nNVCol<=j ); recomputeColumnsNotIndexed(pPk); } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Return true if pTab is a virtual table and zName is a shadow table name ** for that virtual table. */ SQLITE_PRIVATE int sqlite3IsShadowTableOf(sqlite3 *db, Table *pTab, const char *zName){ int nName; /* Length of zName */ Module *pMod; /* Module for the virtual table */ if( !IsVirtual(pTab) ) return 0; nName = sqlite3Strlen30(pTab->zName); if( sqlite3_strnicmp(zName, pTab->zName, nName)!=0 ) return 0; if( zName[nName]!='_' ) return 0; pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->u.vtab.azArg[0]); if( pMod==0 ) return 0; if( pMod->pModule->iVersion<3 ) return 0; if( pMod->pModule->xShadowName==0 ) return 0; return pMod->pModule->xShadowName(zName+nName+1); } #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Table pTab is a virtual table. If it the virtual table implementation ** exists and has an xShadowName method, then loop over all other ordinary ** tables within the same schema looking for shadow tables of pTab, and mark ** any shadow tables seen using the TF_Shadow flag. */ SQLITE_PRIVATE void sqlite3MarkAllShadowTablesOf(sqlite3 *db, Table *pTab){ int nName; /* Length of pTab->zName */ Module *pMod; /* Module for the virtual table */ HashElem *k; /* For looping through the symbol table */ assert( IsVirtual(pTab) ); pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->u.vtab.azArg[0]); if( pMod==0 ) return; if( NEVER(pMod->pModule==0) ) return; if( pMod->pModule->iVersion<3 ) return; if( pMod->pModule->xShadowName==0 ) return; assert( pTab->zName!=0 ); nName = sqlite3Strlen30(pTab->zName); for(k=sqliteHashFirst(&pTab->pSchema->tblHash); k; k=sqliteHashNext(k)){ Table *pOther = sqliteHashData(k); assert( pOther->zName!=0 ); if( !IsOrdinaryTable(pOther) ) continue; if( pOther->tabFlags & TF_Shadow ) continue; if( sqlite3StrNICmp(pOther->zName, pTab->zName, nName)==0 && pOther->zName[nName]=='_' && pMod->pModule->xShadowName(pOther->zName+nName+1) ){ pOther->tabFlags |= TF_Shadow; } } } #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Return true if zName is a shadow table name in the current database ** connection. ** ** zName is temporarily modified while this routine is running, but is ** restored to its original value prior to this routine returning. */ SQLITE_PRIVATE int sqlite3ShadowTableName(sqlite3 *db, const char *zName){ char *zTail; /* Pointer to the last "_" in zName */ Table *pTab; /* Table that zName is a shadow of */ zTail = strrchr(zName, '_'); if( zTail==0 ) return 0; *zTail = 0; pTab = sqlite3FindTable(db, zName, 0); *zTail = '_'; if( pTab==0 ) return 0; if( !IsVirtual(pTab) ) return 0; return sqlite3IsShadowTableOf(db, pTab, zName); } #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ #ifdef SQLITE_DEBUG /* ** Mark all nodes of an expression as EP_Immutable, indicating that ** they should not be changed. Expressions attached to a table or ** index definition are tagged this way to help ensure that we do ** not pass them into code generator routines by mistake. */ static int markImmutableExprStep(Walker *pWalker, Expr *pExpr){ ExprSetVVAProperty(pExpr, EP_Immutable); return WRC_Continue; } static void markExprListImmutable(ExprList *pList){ if( pList ){ Walker w; memset(&w, 0, sizeof(w)); w.xExprCallback = markImmutableExprStep; w.xSelectCallback = sqlite3SelectWalkNoop; w.xSelectCallback2 = 0; sqlite3WalkExprList(&w, pList); } } #else #define markExprListImmutable(X) /* no-op */ #endif /* SQLITE_DEBUG */ /* ** This routine is called to report the final ")" that terminates ** a CREATE TABLE statement. ** ** The table structure that other action routines have been building ** is added to the internal hash tables, assuming no errors have ** occurred. ** ** An entry for the table is made in the schema table on disk, unless ** this is a temporary table or db->init.busy==1. When db->init.busy==1 ** it means we are reading the sqlite_schema table because we just ** connected to the database or because the sqlite_schema table has ** recently changed, so the entry for this table already exists in ** the sqlite_schema table. We do not want to create it again. ** ** If the pSelect argument is not NULL, it means that this routine ** was called to create a table generated from a ** "CREATE TABLE ... AS SELECT ..." statement. The column names of ** the new table will match the result set of the SELECT. */ SQLITE_PRIVATE void sqlite3EndTable( Parse *pParse, /* Parse context */ Token *pCons, /* The ',' token after the last column defn. */ Token *pEnd, /* The ')' before options in the CREATE TABLE */ u32 tabOpts, /* Extra table options. Usually 0. */ Select *pSelect /* Select from a "CREATE ... AS SELECT" */ ){ Table *p; /* The new table */ sqlite3 *db = pParse->db; /* The database connection */ int iDb; /* Database in which the table lives */ Index *pIdx; /* An implied index of the table */ if( pEnd==0 && pSelect==0 ){ return; } p = pParse->pNewTable; if( p==0 ) return; if( pSelect==0 && sqlite3ShadowTableName(db, p->zName) ){ p->tabFlags |= TF_Shadow; } /* If the db->init.busy is 1 it means we are reading the SQL off the ** "sqlite_schema" or "sqlite_temp_schema" table on the disk. ** So do not write to the disk again. Extract the root page number ** for the table from the db->init.newTnum field. (The page number ** should have been put there by the sqliteOpenCb routine.) ** ** If the root page number is 1, that means this is the sqlite_schema ** table itself. So mark it read-only. */ if( db->init.busy ){ if( pSelect || (!IsOrdinaryTable(p) && db->init.newTnum) ){ sqlite3ErrorMsg(pParse, ""); return; } p->tnum = db->init.newTnum; if( p->tnum==1 ) p->tabFlags |= TF_Readonly; } /* Special processing for tables that include the STRICT keyword: ** ** * Do not allow custom column datatypes. Every column must have ** a datatype that is one of INT, INTEGER, REAL, TEXT, or BLOB. ** ** * If a PRIMARY KEY is defined, other than the INTEGER PRIMARY KEY, ** then all columns of the PRIMARY KEY must have a NOT NULL ** constraint. */ if( tabOpts & TF_Strict ){ int ii; p->tabFlags |= TF_Strict; for(ii=0; iinCol; ii++){ Column *pCol = &p->aCol[ii]; if( pCol->eCType==COLTYPE_CUSTOM ){ if( pCol->colFlags & COLFLAG_HASTYPE ){ sqlite3ErrorMsg(pParse, "unknown datatype for %s.%s: \"%s\"", p->zName, pCol->zCnName, sqlite3ColumnType(pCol, "") ); }else{ sqlite3ErrorMsg(pParse, "missing datatype for %s.%s", p->zName, pCol->zCnName); } return; }else if( pCol->eCType==COLTYPE_ANY ){ pCol->affinity = SQLITE_AFF_BLOB; } if( (pCol->colFlags & COLFLAG_PRIMKEY)!=0 && p->iPKey!=ii && pCol->notNull == OE_None ){ pCol->notNull = OE_Abort; p->tabFlags |= TF_HasNotNull; } } } assert( (p->tabFlags & TF_HasPrimaryKey)==0 || p->iPKey>=0 || sqlite3PrimaryKeyIndex(p)!=0 ); assert( (p->tabFlags & TF_HasPrimaryKey)!=0 || (p->iPKey<0 && sqlite3PrimaryKeyIndex(p)==0) ); /* Special processing for WITHOUT ROWID Tables */ if( tabOpts & TF_WithoutRowid ){ if( (p->tabFlags & TF_Autoincrement) ){ sqlite3ErrorMsg(pParse, "AUTOINCREMENT not allowed on WITHOUT ROWID tables"); return; } if( (p->tabFlags & TF_HasPrimaryKey)==0 ){ sqlite3ErrorMsg(pParse, "PRIMARY KEY missing on table %s", p->zName); return; } p->tabFlags |= TF_WithoutRowid | TF_NoVisibleRowid; convertToWithoutRowidTable(pParse, p); } iDb = sqlite3SchemaToIndex(db, p->pSchema); #ifndef SQLITE_OMIT_CHECK /* Resolve names in all CHECK constraint expressions. */ if( p->pCheck ){ sqlite3ResolveSelfReference(pParse, p, NC_IsCheck, 0, p->pCheck); if( pParse->nErr ){ /* If errors are seen, delete the CHECK constraints now, else they might ** actually be used if PRAGMA writable_schema=ON is set. */ sqlite3ExprListDelete(db, p->pCheck); p->pCheck = 0; }else{ markExprListImmutable(p->pCheck); } } #endif /* !defined(SQLITE_OMIT_CHECK) */ #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( p->tabFlags & TF_HasGenerated ){ int ii, nNG = 0; testcase( p->tabFlags & TF_HasVirtual ); testcase( p->tabFlags & TF_HasStored ); for(ii=0; iinCol; ii++){ u32 colFlags = p->aCol[ii].colFlags; if( (colFlags & COLFLAG_GENERATED)!=0 ){ Expr *pX = sqlite3ColumnExpr(p, &p->aCol[ii]); testcase( colFlags & COLFLAG_VIRTUAL ); testcase( colFlags & COLFLAG_STORED ); if( sqlite3ResolveSelfReference(pParse, p, NC_GenCol, pX, 0) ){ /* If there are errors in resolving the expression, change the ** expression to a NULL. This prevents code generators that operate ** on the expression from inserting extra parts into the expression ** tree that have been allocated from lookaside memory, which is ** illegal in a schema and will lead to errors or heap corruption ** when the database connection closes. */ sqlite3ColumnSetExpr(pParse, p, &p->aCol[ii], sqlite3ExprAlloc(db, TK_NULL, 0, 0)); } }else{ nNG++; } } if( nNG==0 ){ sqlite3ErrorMsg(pParse, "must have at least one non-generated column"); return; } } #endif /* Estimate the average row size for the table and for all implied indices */ estimateTableWidth(p); for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ estimateIndexWidth(pIdx); } /* If not initializing, then create a record for the new table ** in the schema table of the database. ** ** If this is a TEMPORARY table, write the entry into the auxiliary ** file instead of into the main database file. */ if( !db->init.busy ){ int n; Vdbe *v; char *zType; /* "view" or "table" */ char *zType2; /* "VIEW" or "TABLE" */ char *zStmt; /* Text of the CREATE TABLE or CREATE VIEW statement */ v = sqlite3GetVdbe(pParse); if( NEVER(v==0) ) return; sqlite3VdbeAddOp1(v, OP_Close, 0); /* ** Initialize zType for the new view or table. */ if( IsOrdinaryTable(p) ){ /* A regular table */ zType = "table"; zType2 = "TABLE"; #ifndef SQLITE_OMIT_VIEW }else{ /* A view */ zType = "view"; zType2 = "VIEW"; #endif } /* If this is a CREATE TABLE xx AS SELECT ..., execute the SELECT ** statement to populate the new table. The root-page number for the ** new table is in register pParse->regRoot. ** ** Once the SELECT has been coded by sqlite3Select(), it is in a ** suitable state to query for the column names and types to be used ** by the new table. ** ** A shared-cache write-lock is not required to write to the new table, ** as a schema-lock must have already been obtained to create it. Since ** a schema-lock excludes all other database users, the write-lock would ** be redundant. */ if( pSelect ){ SelectDest dest; /* Where the SELECT should store results */ int regYield; /* Register holding co-routine entry-point */ int addrTop; /* Top of the co-routine */ int regRec; /* A record to be insert into the new table */ int regRowid; /* Rowid of the next row to insert */ int addrInsLoop; /* Top of the loop for inserting rows */ Table *pSelTab; /* A table that describes the SELECT results */ regYield = ++pParse->nMem; regRec = ++pParse->nMem; regRowid = ++pParse->nMem; assert(pParse->nTab==1); sqlite3MayAbort(pParse); sqlite3VdbeAddOp3(v, OP_OpenWrite, 1, pParse->regRoot, iDb); sqlite3VdbeChangeP5(v, OPFLAG_P2ISREG); pParse->nTab = 2; addrTop = sqlite3VdbeCurrentAddr(v) + 1; sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop); if( pParse->nErr ) return; pSelTab = sqlite3ResultSetOfSelect(pParse, pSelect, SQLITE_AFF_BLOB); if( pSelTab==0 ) return; assert( p->aCol==0 ); p->nCol = p->nNVCol = pSelTab->nCol; p->aCol = pSelTab->aCol; pSelTab->nCol = 0; pSelTab->aCol = 0; sqlite3DeleteTable(db, pSelTab); sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield); sqlite3Select(pParse, pSelect, &dest); if( pParse->nErr ) return; sqlite3VdbeEndCoroutine(v, regYield); sqlite3VdbeJumpHere(v, addrTop - 1); addrInsLoop = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, dest.iSdst, dest.nSdst, regRec); sqlite3TableAffinity(v, p, 0); sqlite3VdbeAddOp2(v, OP_NewRowid, 1, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, 1, regRec, regRowid); sqlite3VdbeGoto(v, addrInsLoop); sqlite3VdbeJumpHere(v, addrInsLoop); sqlite3VdbeAddOp1(v, OP_Close, 1); } /* Compute the complete text of the CREATE statement */ if( pSelect ){ zStmt = createTableStmt(db, p); }else{ Token *pEnd2 = tabOpts ? &pParse->sLastToken : pEnd; n = (int)(pEnd2->z - pParse->sNameToken.z); if( pEnd2->z[0]!=';' ) n += pEnd2->n; zStmt = sqlite3MPrintf(db, "CREATE %s %.*s", zType2, n, pParse->sNameToken.z ); } /* A slot for the record has already been allocated in the ** schema table. We just need to update that slot with all ** the information we've collected. */ sqlite3NestedParse(pParse, "UPDATE %Q." LEGACY_SCHEMA_TABLE " SET type='%s', name=%Q, tbl_name=%Q, rootpage=#%d, sql=%Q" " WHERE rowid=#%d", db->aDb[iDb].zDbSName, zType, p->zName, p->zName, pParse->regRoot, zStmt, pParse->regRowid ); sqlite3DbFree(db, zStmt); sqlite3ChangeCookie(pParse, iDb); #ifndef SQLITE_OMIT_AUTOINCREMENT /* Check to see if we need to create an sqlite_sequence table for ** keeping track of autoincrement keys. */ if( (p->tabFlags & TF_Autoincrement)!=0 && !IN_SPECIAL_PARSE ){ Db *pDb = &db->aDb[iDb]; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( pDb->pSchema->pSeqTab==0 ){ sqlite3NestedParse(pParse, "CREATE TABLE %Q.sqlite_sequence(name,seq)", pDb->zDbSName ); } } #endif /* Reparse everything to update our internal data structures */ sqlite3VdbeAddParseSchemaOp(v, iDb, sqlite3MPrintf(db, "tbl_name='%q' AND type!='trigger'", p->zName),0); } /* Add the table to the in-memory representation of the database. */ if( db->init.busy ){ Table *pOld; Schema *pSchema = p->pSchema; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); assert( HasRowid(p) || p->iPKey<0 ); pOld = sqlite3HashInsert(&pSchema->tblHash, p->zName, p); if( pOld ){ assert( p==pOld ); /* Malloc must have failed inside HashInsert() */ sqlite3OomFault(db); return; } pParse->pNewTable = 0; db->mDbFlags |= DBFLAG_SchemaChange; /* If this is the magic sqlite_sequence table used by autoincrement, ** then record a pointer to this table in the main database structure ** so that INSERT can find the table easily. */ assert( !pParse->nested ); #ifndef SQLITE_OMIT_AUTOINCREMENT if( strcmp(p->zName, "sqlite_sequence")==0 ){ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); p->pSchema->pSeqTab = p; } #endif } #ifndef SQLITE_OMIT_ALTERTABLE if( !pSelect && IsOrdinaryTable(p) ){ assert( pCons && pEnd ); if( pCons->z==0 ){ pCons = pEnd; } p->u.tab.addColOffset = 13 + (int)(pCons->z - pParse->sNameToken.z); } #endif } #ifndef SQLITE_OMIT_VIEW /* ** The parser calls this routine in order to create a new VIEW */ SQLITE_PRIVATE void sqlite3CreateView( Parse *pParse, /* The parsing context */ Token *pBegin, /* The CREATE token that begins the statement */ Token *pName1, /* The token that holds the name of the view */ Token *pName2, /* The token that holds the name of the view */ ExprList *pCNames, /* Optional list of view column names */ Select *pSelect, /* A SELECT statement that will become the new view */ int isTemp, /* TRUE for a TEMPORARY view */ int noErr /* Suppress error messages if VIEW already exists */ ){ Table *p; int n; const char *z; Token sEnd; DbFixer sFix; Token *pName = 0; int iDb; sqlite3 *db = pParse->db; if( pParse->nVar>0 ){ sqlite3ErrorMsg(pParse, "parameters are not allowed in views"); goto create_view_fail; } sqlite3StartTable(pParse, pName1, pName2, isTemp, 1, 0, noErr); p = pParse->pNewTable; if( p==0 || pParse->nErr ) goto create_view_fail; /* Legacy versions of SQLite allowed the use of the magic "rowid" column ** on a view, even though views do not have rowids. The following flag ** setting fixes this problem. But the fix can be disabled by compiling ** with -DSQLITE_ALLOW_ROWID_IN_VIEW in case there are legacy apps that ** depend upon the old buggy behavior. */ #ifndef SQLITE_ALLOW_ROWID_IN_VIEW p->tabFlags |= TF_NoVisibleRowid; #endif sqlite3TwoPartName(pParse, pName1, pName2, &pName); iDb = sqlite3SchemaToIndex(db, p->pSchema); sqlite3FixInit(&sFix, pParse, iDb, "view", pName); if( sqlite3FixSelect(&sFix, pSelect) ) goto create_view_fail; /* Make a copy of the entire SELECT statement that defines the view. ** This will force all the Expr.token.z values to be dynamically ** allocated rather than point to the input string - which means that ** they will persist after the current sqlite3_exec() call returns. */ pSelect->selFlags |= SF_View; if( IN_RENAME_OBJECT ){ p->u.view.pSelect = pSelect; pSelect = 0; }else{ p->u.view.pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); } p->pCheck = sqlite3ExprListDup(db, pCNames, EXPRDUP_REDUCE); p->eTabType = TABTYP_VIEW; if( db->mallocFailed ) goto create_view_fail; /* Locate the end of the CREATE VIEW statement. Make sEnd point to ** the end. */ sEnd = pParse->sLastToken; assert( sEnd.z[0]!=0 || sEnd.n==0 ); if( sEnd.z[0]!=';' ){ sEnd.z += sEnd.n; } sEnd.n = 0; n = (int)(sEnd.z - pBegin->z); assert( n>0 ); z = pBegin->z; while( sqlite3Isspace(z[n-1]) ){ n--; } sEnd.z = &z[n-1]; sEnd.n = 1; /* Use sqlite3EndTable() to add the view to the schema table */ sqlite3EndTable(pParse, 0, &sEnd, 0, 0); create_view_fail: sqlite3SelectDelete(db, pSelect); if( IN_RENAME_OBJECT ){ sqlite3RenameExprlistUnmap(pParse, pCNames); } sqlite3ExprListDelete(db, pCNames); return; } #endif /* SQLITE_OMIT_VIEW */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) /* ** The Table structure pTable is really a VIEW. Fill in the names of ** the columns of the view in the pTable structure. Return the number ** of errors. If an error is seen leave an error message in pParse->zErrMsg. */ SQLITE_PRIVATE int sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable){ Table *pSelTab; /* A fake table from which we get the result set */ Select *pSel; /* Copy of the SELECT that implements the view */ int nErr = 0; /* Number of errors encountered */ int n; /* Temporarily holds the number of cursors assigned */ sqlite3 *db = pParse->db; /* Database connection for malloc errors */ #ifndef SQLITE_OMIT_VIRTUALTABLE int rc; #endif #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth; /* Saved xAuth pointer */ #endif assert( pTable ); #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTable) ){ db->nSchemaLock++; rc = sqlite3VtabCallConnect(pParse, pTable); db->nSchemaLock--; return rc; } #endif #ifndef SQLITE_OMIT_VIEW /* A positive nCol means the columns names for this view are ** already known. */ if( pTable->nCol>0 ) return 0; /* A negative nCol is a special marker meaning that we are currently ** trying to compute the column names. If we enter this routine with ** a negative nCol, it means two or more views form a loop, like this: ** ** CREATE VIEW one AS SELECT * FROM two; ** CREATE VIEW two AS SELECT * FROM one; ** ** Actually, the error above is now caught prior to reaching this point. ** But the following test is still important as it does come up ** in the following: ** ** CREATE TABLE main.ex1(a); ** CREATE TEMP VIEW ex1 AS SELECT a FROM ex1; ** SELECT * FROM temp.ex1; */ if( pTable->nCol<0 ){ sqlite3ErrorMsg(pParse, "view %s is circularly defined", pTable->zName); return 1; } assert( pTable->nCol>=0 ); /* If we get this far, it means we need to compute the table names. ** Note that the call to sqlite3ResultSetOfSelect() will expand any ** "*" elements in the results set of the view and will assign cursors ** to the elements of the FROM clause. But we do not want these changes ** to be permanent. So the computation is done on a copy of the SELECT ** statement that defines the view. */ assert( IsView(pTable) ); pSel = sqlite3SelectDup(db, pTable->u.view.pSelect, 0); if( pSel ){ u8 eParseMode = pParse->eParseMode; pParse->eParseMode = PARSE_MODE_NORMAL; n = pParse->nTab; sqlite3SrcListAssignCursors(pParse, pSel->pSrc); pTable->nCol = -1; DisableLookaside; #ifndef SQLITE_OMIT_AUTHORIZATION xAuth = db->xAuth; db->xAuth = 0; pSelTab = sqlite3ResultSetOfSelect(pParse, pSel, SQLITE_AFF_NONE); db->xAuth = xAuth; #else pSelTab = sqlite3ResultSetOfSelect(pParse, pSel, SQLITE_AFF_NONE); #endif pParse->nTab = n; if( pSelTab==0 ){ pTable->nCol = 0; nErr++; }else if( pTable->pCheck ){ /* CREATE VIEW name(arglist) AS ... ** The names of the columns in the table are taken from ** arglist which is stored in pTable->pCheck. The pCheck field ** normally holds CHECK constraints on an ordinary table, but for ** a VIEW it holds the list of column names. */ sqlite3ColumnsFromExprList(pParse, pTable->pCheck, &pTable->nCol, &pTable->aCol); if( pParse->nErr==0 && pTable->nCol==pSel->pEList->nExpr ){ assert( db->mallocFailed==0 ); sqlite3SelectAddColumnTypeAndCollation(pParse, pTable, pSel, SQLITE_AFF_NONE); } }else{ /* CREATE VIEW name AS... without an argument list. Construct ** the column names from the SELECT statement that defines the view. */ assert( pTable->aCol==0 ); pTable->nCol = pSelTab->nCol; pTable->aCol = pSelTab->aCol; pTable->tabFlags |= (pSelTab->tabFlags & COLFLAG_NOINSERT); pSelTab->nCol = 0; pSelTab->aCol = 0; assert( sqlite3SchemaMutexHeld(db, 0, pTable->pSchema) ); } pTable->nNVCol = pTable->nCol; sqlite3DeleteTable(db, pSelTab); sqlite3SelectDelete(db, pSel); EnableLookaside; pParse->eParseMode = eParseMode; } else { nErr++; } pTable->pSchema->schemaFlags |= DB_UnresetViews; if( db->mallocFailed ){ sqlite3DeleteColumnNames(db, pTable); } #endif /* SQLITE_OMIT_VIEW */ return nErr; } #endif /* !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) */ #ifndef SQLITE_OMIT_VIEW /* ** Clear the column names from every VIEW in database idx. */ static void sqliteViewResetAll(sqlite3 *db, int idx){ HashElem *i; assert( sqlite3SchemaMutexHeld(db, idx, 0) ); if( !DbHasProperty(db, idx, DB_UnresetViews) ) return; for(i=sqliteHashFirst(&db->aDb[idx].pSchema->tblHash); i;i=sqliteHashNext(i)){ Table *pTab = sqliteHashData(i); if( IsView(pTab) ){ sqlite3DeleteColumnNames(db, pTab); } } DbClearProperty(db, idx, DB_UnresetViews); } #else # define sqliteViewResetAll(A,B) #endif /* SQLITE_OMIT_VIEW */ /* ** This function is called by the VDBE to adjust the internal schema ** used by SQLite when the btree layer moves a table root page. The ** root-page of a table or index in database iDb has changed from iFrom ** to iTo. ** ** Ticket #1728: The symbol table might still contain information ** on tables and/or indices that are the process of being deleted. ** If you are unlucky, one of those deleted indices or tables might ** have the same rootpage number as the real table or index that is ** being moved. So we cannot stop searching after the first match ** because the first match might be for one of the deleted indices ** or tables and not the table/index that is actually being moved. ** We must continue looping until all tables and indices with ** rootpage==iFrom have been converted to have a rootpage of iTo ** in order to be certain that we got the right one. */ #ifndef SQLITE_OMIT_AUTOVACUUM SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3 *db, int iDb, Pgno iFrom, Pgno iTo){ HashElem *pElem; Hash *pHash; Db *pDb; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pDb = &db->aDb[iDb]; pHash = &pDb->pSchema->tblHash; for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){ Table *pTab = sqliteHashData(pElem); if( pTab->tnum==iFrom ){ pTab->tnum = iTo; } } pHash = &pDb->pSchema->idxHash; for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){ Index *pIdx = sqliteHashData(pElem); if( pIdx->tnum==iFrom ){ pIdx->tnum = iTo; } } } #endif /* ** Write code to erase the table with root-page iTable from database iDb. ** Also write code to modify the sqlite_schema table and internal schema ** if a root-page of another table is moved by the btree-layer whilst ** erasing iTable (this can happen with an auto-vacuum database). */ static void destroyRootPage(Parse *pParse, int iTable, int iDb){ Vdbe *v = sqlite3GetVdbe(pParse); int r1 = sqlite3GetTempReg(pParse); if( iTable<2 ) sqlite3ErrorMsg(pParse, "corrupt schema"); sqlite3VdbeAddOp3(v, OP_Destroy, iTable, r1, iDb); sqlite3MayAbort(pParse); #ifndef SQLITE_OMIT_AUTOVACUUM /* OP_Destroy stores an in integer r1. If this integer ** is non-zero, then it is the root page number of a table moved to ** location iTable. The following code modifies the sqlite_schema table to ** reflect this. ** ** The "#NNN" in the SQL is a special constant that means whatever value ** is in register NNN. See grammar rules associated with the TK_REGISTER ** token for additional information. */ sqlite3NestedParse(pParse, "UPDATE %Q." LEGACY_SCHEMA_TABLE " SET rootpage=%d WHERE #%d AND rootpage=#%d", pParse->db->aDb[iDb].zDbSName, iTable, r1, r1); #endif sqlite3ReleaseTempReg(pParse, r1); } /* ** Write VDBE code to erase table pTab and all associated indices on disk. ** Code to update the sqlite_schema tables and internal schema definitions ** in case a root-page belonging to another table is moved by the btree layer ** is also added (this can happen with an auto-vacuum database). */ static void destroyTable(Parse *pParse, Table *pTab){ /* If the database may be auto-vacuum capable (if SQLITE_OMIT_AUTOVACUUM ** is not defined), then it is important to call OP_Destroy on the ** table and index root-pages in order, starting with the numerically ** largest root-page number. This guarantees that none of the root-pages ** to be destroyed is relocated by an earlier OP_Destroy. i.e. if the ** following were coded: ** ** OP_Destroy 4 0 ** ... ** OP_Destroy 5 0 ** ** and root page 5 happened to be the largest root-page number in the ** database, then root page 5 would be moved to page 4 by the ** "OP_Destroy 4 0" opcode. The subsequent "OP_Destroy 5 0" would hit ** a free-list page. */ Pgno iTab = pTab->tnum; Pgno iDestroyed = 0; while( 1 ){ Index *pIdx; Pgno iLargest = 0; if( iDestroyed==0 || iTabpIndex; pIdx; pIdx=pIdx->pNext){ Pgno iIdx = pIdx->tnum; assert( pIdx->pSchema==pTab->pSchema ); if( (iDestroyed==0 || (iIdxiLargest ){ iLargest = iIdx; } } if( iLargest==0 ){ return; }else{ int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); assert( iDb>=0 && iDbdb->nDb ); destroyRootPage(pParse, iLargest, iDb); iDestroyed = iLargest; } } } /* ** Remove entries from the sqlite_statN tables (for N in (1,2,3)) ** after a DROP INDEX or DROP TABLE command. */ static void sqlite3ClearStatTables( Parse *pParse, /* The parsing context */ int iDb, /* The database number */ const char *zType, /* "idx" or "tbl" */ const char *zName /* Name of index or table */ ){ int i; const char *zDbName = pParse->db->aDb[iDb].zDbSName; for(i=1; i<=4; i++){ char zTab[24]; sqlite3_snprintf(sizeof(zTab),zTab,"sqlite_stat%d",i); if( sqlite3FindTable(pParse->db, zTab, zDbName) ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.%s WHERE %s=%Q", zDbName, zTab, zType, zName ); } } } /* ** Generate code to drop a table. */ SQLITE_PRIVATE void sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView){ Vdbe *v; sqlite3 *db = pParse->db; Trigger *pTrigger; Db *pDb = &db->aDb[iDb]; v = sqlite3GetVdbe(pParse); assert( v!=0 ); sqlite3BeginWriteOperation(pParse, 1, iDb); #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ sqlite3VdbeAddOp0(v, OP_VBegin); } #endif /* Drop all triggers associated with the table being dropped. Code ** is generated to remove entries from sqlite_schema and/or ** sqlite_temp_schema if required. */ pTrigger = sqlite3TriggerList(pParse, pTab); while( pTrigger ){ assert( pTrigger->pSchema==pTab->pSchema || pTrigger->pSchema==db->aDb[1].pSchema ); sqlite3DropTriggerPtr(pParse, pTrigger); pTrigger = pTrigger->pNext; } #ifndef SQLITE_OMIT_AUTOINCREMENT /* Remove any entries of the sqlite_sequence table associated with ** the table being dropped. This is done before the table is dropped ** at the btree level, in case the sqlite_sequence table needs to ** move as a result of the drop (can happen in auto-vacuum mode). */ if( pTab->tabFlags & TF_Autoincrement ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.sqlite_sequence WHERE name=%Q", pDb->zDbSName, pTab->zName ); } #endif /* Drop all entries in the schema table that refer to the ** table. The program name loops through the schema table and deletes ** every row that refers to a table of the same name as the one being ** dropped. Triggers are handled separately because a trigger can be ** created in the temp database that refers to a table in another ** database. */ sqlite3NestedParse(pParse, "DELETE FROM %Q." LEGACY_SCHEMA_TABLE " WHERE tbl_name=%Q and type!='trigger'", pDb->zDbSName, pTab->zName); if( !isView && !IsVirtual(pTab) ){ destroyTable(pParse, pTab); } /* Remove the table entry from SQLite's internal schema and modify ** the schema cookie. */ if( IsVirtual(pTab) ){ sqlite3VdbeAddOp4(v, OP_VDestroy, iDb, 0, 0, pTab->zName, 0); sqlite3MayAbort(pParse); } sqlite3VdbeAddOp4(v, OP_DropTable, iDb, 0, 0, pTab->zName, 0); sqlite3ChangeCookie(pParse, iDb); sqliteViewResetAll(db, iDb); } /* ** Return TRUE if shadow tables should be read-only in the current ** context. */ SQLITE_PRIVATE int sqlite3ReadOnlyShadowTables(sqlite3 *db){ #ifndef SQLITE_OMIT_VIRTUALTABLE if( (db->flags & SQLITE_Defensive)!=0 && db->pVtabCtx==0 && db->nVdbeExec==0 && !sqlite3VtabInSync(db) ){ return 1; } #endif return 0; } /* ** Return true if it is not allowed to drop the given table */ static int tableMayNotBeDropped(sqlite3 *db, Table *pTab){ if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ if( sqlite3StrNICmp(pTab->zName+7, "stat", 4)==0 ) return 0; if( sqlite3StrNICmp(pTab->zName+7, "parameters", 10)==0 ) return 0; return 1; } if( (pTab->tabFlags & TF_Shadow)!=0 && sqlite3ReadOnlyShadowTables(db) ){ return 1; } if( pTab->tabFlags & TF_Eponymous ){ return 1; } return 0; } /* ** This routine is called to do the work of a DROP TABLE statement. ** pName is the name of the table to be dropped. */ SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){ Table *pTab; Vdbe *v; sqlite3 *db = pParse->db; int iDb; if( db->mallocFailed ){ goto exit_drop_table; } assert( pParse->nErr==0 ); assert( pName->nSrc==1 ); if( sqlite3ReadSchema(pParse) ) goto exit_drop_table; if( noErr ) db->suppressErr++; assert( isView==0 || isView==LOCATE_VIEW ); pTab = sqlite3LocateTableItem(pParse, isView, &pName->a[0]); if( noErr ) db->suppressErr--; if( pTab==0 ){ if( noErr ){ sqlite3CodeVerifyNamedSchema(pParse, pName->a[0].zDatabase); sqlite3ForceNotReadOnly(pParse); } goto exit_drop_table; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 && iDbnDb ); /* If pTab is a virtual table, call ViewGetColumnNames() to ensure ** it is initialized. */ if( IsVirtual(pTab) && sqlite3ViewGetColumnNames(pParse, pTab) ){ goto exit_drop_table; } #ifndef SQLITE_OMIT_AUTHORIZATION { int code; const char *zTab = SCHEMA_TABLE(iDb); const char *zDb = db->aDb[iDb].zDbSName; const char *zArg2 = 0; if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb)){ goto exit_drop_table; } if( isView ){ if( !OMIT_TEMPDB && iDb==1 ){ code = SQLITE_DROP_TEMP_VIEW; }else{ code = SQLITE_DROP_VIEW; } #ifndef SQLITE_OMIT_VIRTUALTABLE }else if( IsVirtual(pTab) ){ code = SQLITE_DROP_VTABLE; zArg2 = sqlite3GetVTable(db, pTab)->pMod->zName; #endif }else{ if( !OMIT_TEMPDB && iDb==1 ){ code = SQLITE_DROP_TEMP_TABLE; }else{ code = SQLITE_DROP_TABLE; } } if( sqlite3AuthCheck(pParse, code, pTab->zName, zArg2, zDb) ){ goto exit_drop_table; } if( sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, zDb) ){ goto exit_drop_table; } } #endif if( tableMayNotBeDropped(db, pTab) ){ sqlite3ErrorMsg(pParse, "table %s may not be dropped", pTab->zName); goto exit_drop_table; } #ifndef SQLITE_OMIT_VIEW /* Ensure DROP TABLE is not used on a view, and DROP VIEW is not used ** on a table. */ if( isView && !IsView(pTab) ){ sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName); goto exit_drop_table; } if( !isView && IsView(pTab) ){ sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName); goto exit_drop_table; } #endif /* Generate code to remove the table from the schema table ** on disk. */ v = sqlite3GetVdbe(pParse); if( v ){ sqlite3BeginWriteOperation(pParse, 1, iDb); if( !isView ){ sqlite3ClearStatTables(pParse, iDb, "tbl", pTab->zName); sqlite3FkDropTable(pParse, pName, pTab); } sqlite3CodeDropTable(pParse, pTab, iDb, isView); } exit_drop_table: sqlite3SrcListDelete(db, pName); } /* ** This routine is called to create a new foreign key on the table ** currently under construction. pFromCol determines which columns ** in the current table point to the foreign key. If pFromCol==0 then ** connect the key to the last column inserted. pTo is the name of ** the table referred to (a.k.a the "parent" table). pToCol is a list ** of tables in the parent pTo table. flags contains all ** information about the conflict resolution algorithms specified ** in the ON DELETE, ON UPDATE and ON INSERT clauses. ** ** An FKey structure is created and added to the table currently ** under construction in the pParse->pNewTable field. ** ** The foreign key is set for IMMEDIATE processing. A subsequent call ** to sqlite3DeferForeignKey() might change this to DEFERRED. */ SQLITE_PRIVATE void sqlite3CreateForeignKey( Parse *pParse, /* Parsing context */ ExprList *pFromCol, /* Columns in this table that point to other table */ Token *pTo, /* Name of the other table */ ExprList *pToCol, /* Columns in the other table */ int flags /* Conflict resolution algorithms. */ ){ sqlite3 *db = pParse->db; #ifndef SQLITE_OMIT_FOREIGN_KEY FKey *pFKey = 0; FKey *pNextTo; Table *p = pParse->pNewTable; i64 nByte; int i; int nCol; char *z; assert( pTo!=0 ); if( p==0 || IN_DECLARE_VTAB ) goto fk_end; if( pFromCol==0 ){ int iCol = p->nCol-1; if( NEVER(iCol<0) ) goto fk_end; if( pToCol && pToCol->nExpr!=1 ){ sqlite3ErrorMsg(pParse, "foreign key on %s" " should reference only one column of table %T", p->aCol[iCol].zCnName, pTo); goto fk_end; } nCol = 1; }else if( pToCol && pToCol->nExpr!=pFromCol->nExpr ){ sqlite3ErrorMsg(pParse, "number of columns in foreign key does not match the number of " "columns in the referenced table"); goto fk_end; }else{ nCol = pFromCol->nExpr; } nByte = sizeof(*pFKey) + (nCol-1)*sizeof(pFKey->aCol[0]) + pTo->n + 1; if( pToCol ){ for(i=0; inExpr; i++){ nByte += sqlite3Strlen30(pToCol->a[i].zEName) + 1; } } pFKey = sqlite3DbMallocZero(db, nByte ); if( pFKey==0 ){ goto fk_end; } pFKey->pFrom = p; assert( IsOrdinaryTable(p) ); pFKey->pNextFrom = p->u.tab.pFKey; z = (char*)&pFKey->aCol[nCol]; pFKey->zTo = z; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)z, pTo); } memcpy(z, pTo->z, pTo->n); z[pTo->n] = 0; sqlite3Dequote(z); z += pTo->n+1; pFKey->nCol = nCol; if( pFromCol==0 ){ pFKey->aCol[0].iFrom = p->nCol-1; }else{ for(i=0; inCol; j++){ if( sqlite3StrICmp(p->aCol[j].zCnName, pFromCol->a[i].zEName)==0 ){ pFKey->aCol[i].iFrom = j; break; } } if( j>=p->nCol ){ sqlite3ErrorMsg(pParse, "unknown column \"%s\" in foreign key definition", pFromCol->a[i].zEName); goto fk_end; } if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, &pFKey->aCol[i], pFromCol->a[i].zEName); } } } if( pToCol ){ for(i=0; ia[i].zEName); pFKey->aCol[i].zCol = z; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, z, pToCol->a[i].zEName); } memcpy(z, pToCol->a[i].zEName, n); z[n] = 0; z += n+1; } } pFKey->isDeferred = 0; pFKey->aAction[0] = (u8)(flags & 0xff); /* ON DELETE action */ pFKey->aAction[1] = (u8)((flags >> 8 ) & 0xff); /* ON UPDATE action */ assert( sqlite3SchemaMutexHeld(db, 0, p->pSchema) ); pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash, pFKey->zTo, (void *)pFKey ); if( pNextTo==pFKey ){ sqlite3OomFault(db); goto fk_end; } if( pNextTo ){ assert( pNextTo->pPrevTo==0 ); pFKey->pNextTo = pNextTo; pNextTo->pPrevTo = pFKey; } /* Link the foreign key to the table as the last step. */ assert( IsOrdinaryTable(p) ); p->u.tab.pFKey = pFKey; pFKey = 0; fk_end: sqlite3DbFree(db, pFKey); #endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ sqlite3ExprListDelete(db, pFromCol); sqlite3ExprListDelete(db, pToCol); } /* ** This routine is called when an INITIALLY IMMEDIATE or INITIALLY DEFERRED ** clause is seen as part of a foreign key definition. The isDeferred ** parameter is 1 for INITIALLY DEFERRED and 0 for INITIALLY IMMEDIATE. ** The behavior of the most recently created foreign key is adjusted ** accordingly. */ SQLITE_PRIVATE void sqlite3DeferForeignKey(Parse *pParse, int isDeferred){ #ifndef SQLITE_OMIT_FOREIGN_KEY Table *pTab; FKey *pFKey; if( (pTab = pParse->pNewTable)==0 ) return; if( NEVER(!IsOrdinaryTable(pTab)) ) return; if( (pFKey = pTab->u.tab.pFKey)==0 ) return; assert( isDeferred==0 || isDeferred==1 ); /* EV: R-30323-21917 */ pFKey->isDeferred = (u8)isDeferred; #endif } /* ** Generate code that will erase and refill index *pIdx. This is ** used to initialize a newly created index or to recompute the ** content of an index in response to a REINDEX command. ** ** if memRootPage is not negative, it means that the index is newly ** created. The register specified by memRootPage contains the ** root page number of the index. If memRootPage is negative, then ** the index already exists and must be cleared before being refilled and ** the root page number of the index is taken from pIndex->tnum. */ static void sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage){ Table *pTab = pIndex->pTable; /* The table that is indexed */ int iTab = pParse->nTab++; /* Btree cursor used for pTab */ int iIdx = pParse->nTab++; /* Btree cursor used for pIndex */ int iSorter; /* Cursor opened by OpenSorter (if in use) */ int addr1; /* Address of top of loop */ int addr2; /* Address to jump to for next iteration */ Pgno tnum; /* Root page of index */ int iPartIdxLabel; /* Jump to this label to skip a row */ Vdbe *v; /* Generate code into this virtual machine */ KeyInfo *pKey; /* KeyInfo for index */ int regRecord; /* Register holding assembled index record */ sqlite3 *db = pParse->db; /* The database connection */ int iDb = sqlite3SchemaToIndex(db, pIndex->pSchema); #ifndef SQLITE_OMIT_AUTHORIZATION if( sqlite3AuthCheck(pParse, SQLITE_REINDEX, pIndex->zName, 0, db->aDb[iDb].zDbSName ) ){ return; } #endif /* Require a write-lock on the table to perform this operation */ sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName); v = sqlite3GetVdbe(pParse); if( v==0 ) return; if( memRootPage>=0 ){ tnum = (Pgno)memRootPage; }else{ tnum = pIndex->tnum; } pKey = sqlite3KeyInfoOfIndex(pParse, pIndex); assert( pKey!=0 || pParse->nErr ); /* Open the sorter cursor if we are to use one. */ iSorter = pParse->nTab++; sqlite3VdbeAddOp4(v, OP_SorterOpen, iSorter, 0, pIndex->nKeyCol, (char*) sqlite3KeyInfoRef(pKey), P4_KEYINFO); /* Open the table. Loop through all rows of the table, inserting index ** records into the sorter. */ sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0); VdbeCoverage(v); regRecord = sqlite3GetTempReg(pParse); sqlite3MultiWrite(pParse); sqlite3GenerateIndexKey(pParse,pIndex,iTab,regRecord,0,&iPartIdxLabel,0,0); sqlite3VdbeAddOp2(v, OP_SorterInsert, iSorter, regRecord); sqlite3ResolvePartIdxLabel(pParse, iPartIdxLabel); sqlite3VdbeAddOp2(v, OP_Next, iTab, addr1+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); if( memRootPage<0 ) sqlite3VdbeAddOp2(v, OP_Clear, tnum, iDb); sqlite3VdbeAddOp4(v, OP_OpenWrite, iIdx, (int)tnum, iDb, (char *)pKey, P4_KEYINFO); sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR|((memRootPage>=0)?OPFLAG_P2ISREG:0)); addr1 = sqlite3VdbeAddOp2(v, OP_SorterSort, iSorter, 0); VdbeCoverage(v); if( IsUniqueIndex(pIndex) ){ int j2 = sqlite3VdbeGoto(v, 1); addr2 = sqlite3VdbeCurrentAddr(v); sqlite3VdbeVerifyAbortable(v, OE_Abort); sqlite3VdbeAddOp4Int(v, OP_SorterCompare, iSorter, j2, regRecord, pIndex->nKeyCol); VdbeCoverage(v); sqlite3UniqueConstraint(pParse, OE_Abort, pIndex); sqlite3VdbeJumpHere(v, j2); }else{ /* Most CREATE INDEX and REINDEX statements that are not UNIQUE can not ** abort. The exception is if one of the indexed expressions contains a ** user function that throws an exception when it is evaluated. But the ** overhead of adding a statement journal to a CREATE INDEX statement is ** very small (since most of the pages written do not contain content that ** needs to be restored if the statement aborts), so we call ** sqlite3MayAbort() for all CREATE INDEX statements. */ sqlite3MayAbort(pParse); addr2 = sqlite3VdbeCurrentAddr(v); } sqlite3VdbeAddOp3(v, OP_SorterData, iSorter, regRecord, iIdx); if( !pIndex->bAscKeyBug ){ /* This OP_SeekEnd opcode makes index insert for a REINDEX go much ** faster by avoiding unnecessary seeks. But the optimization does ** not work for UNIQUE constraint indexes on WITHOUT ROWID tables ** with DESC primary keys, since those indexes have there keys in ** a different order from the main table. ** See ticket: https://www.sqlite.org/src/info/bba7b69f9849b5bf */ sqlite3VdbeAddOp1(v, OP_SeekEnd, iIdx); } sqlite3VdbeAddOp2(v, OP_IdxInsert, iIdx, regRecord); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); sqlite3ReleaseTempReg(pParse, regRecord); sqlite3VdbeAddOp2(v, OP_SorterNext, iSorter, addr2); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp1(v, OP_Close, iTab); sqlite3VdbeAddOp1(v, OP_Close, iIdx); sqlite3VdbeAddOp1(v, OP_Close, iSorter); } /* ** Allocate heap space to hold an Index object with nCol columns. ** ** Increase the allocation size to provide an extra nExtra bytes ** of 8-byte aligned space after the Index object and return a ** pointer to this extra space in *ppExtra. */ SQLITE_PRIVATE Index *sqlite3AllocateIndexObject( sqlite3 *db, /* Database connection */ i16 nCol, /* Total number of columns in the index */ int nExtra, /* Number of bytes of extra space to alloc */ char **ppExtra /* Pointer to the "extra" space */ ){ Index *p; /* Allocated index object */ int nByte; /* Bytes of space for Index object + arrays */ nByte = ROUND8(sizeof(Index)) + /* Index structure */ ROUND8(sizeof(char*)*nCol) + /* Index.azColl */ ROUND8(sizeof(LogEst)*(nCol+1) + /* Index.aiRowLogEst */ sizeof(i16)*nCol + /* Index.aiColumn */ sizeof(u8)*nCol); /* Index.aSortOrder */ p = sqlite3DbMallocZero(db, nByte + nExtra); if( p ){ char *pExtra = ((char*)p)+ROUND8(sizeof(Index)); p->azColl = (const char**)pExtra; pExtra += ROUND8(sizeof(char*)*nCol); p->aiRowLogEst = (LogEst*)pExtra; pExtra += sizeof(LogEst)*(nCol+1); p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol; p->aSortOrder = (u8*)pExtra; p->nColumn = nCol; p->nKeyCol = nCol - 1; *ppExtra = ((char*)p) + nByte; } return p; } /* ** If expression list pList contains an expression that was parsed with ** an explicit "NULLS FIRST" or "NULLS LAST" clause, leave an error in ** pParse and return non-zero. Otherwise, return zero. */ SQLITE_PRIVATE int sqlite3HasExplicitNulls(Parse *pParse, ExprList *pList){ if( pList ){ int i; for(i=0; inExpr; i++){ if( pList->a[i].bNulls ){ u8 sf = pList->a[i].sortFlags; sqlite3ErrorMsg(pParse, "unsupported use of NULLS %s", (sf==0 || sf==3) ? "FIRST" : "LAST" ); return 1; } } } return 0; } /* ** Create a new index for an SQL table. pName1.pName2 is the name of the index ** and pTblList is the name of the table that is to be indexed. Both will ** be NULL for a primary key or an index that is created to satisfy a ** UNIQUE constraint. If pTable and pIndex are NULL, use pParse->pNewTable ** as the table to be indexed. pParse->pNewTable is a table that is ** currently being constructed by a CREATE TABLE statement. ** ** pList is a list of columns to be indexed. pList will be NULL if this ** is a primary key or unique-constraint on the most recent column added ** to the table currently under construction. */ SQLITE_PRIVATE void sqlite3CreateIndex( Parse *pParse, /* All information about this parse */ Token *pName1, /* First part of index name. May be NULL */ Token *pName2, /* Second part of index name. May be NULL */ SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */ ExprList *pList, /* A list of columns to be indexed */ int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ Token *pStart, /* The CREATE token that begins this statement */ Expr *pPIWhere, /* WHERE clause for partial indices */ int sortOrder, /* Sort order of primary key when pList==NULL */ int ifNotExist, /* Omit error if index already exists */ u8 idxType /* The index type */ ){ Table *pTab = 0; /* Table to be indexed */ Index *pIndex = 0; /* The index to be created */ char *zName = 0; /* Name of the index */ int nName; /* Number of characters in zName */ int i, j; DbFixer sFix; /* For assigning database names to pTable */ int sortOrderMask; /* 1 to honor DESC in index. 0 to ignore. */ sqlite3 *db = pParse->db; Db *pDb; /* The specific table containing the indexed database */ int iDb; /* Index of the database that is being written */ Token *pName = 0; /* Unqualified name of the index to create */ struct ExprList_item *pListItem; /* For looping over pList */ int nExtra = 0; /* Space allocated for zExtra[] */ int nExtraCol; /* Number of extra columns needed */ char *zExtra = 0; /* Extra space after the Index object */ Index *pPk = 0; /* PRIMARY KEY index for WITHOUT ROWID tables */ assert( db->pParse==pParse ); if( pParse->nErr ){ goto exit_create_index; } assert( db->mallocFailed==0 ); if( IN_DECLARE_VTAB && idxType!=SQLITE_IDXTYPE_PRIMARYKEY ){ goto exit_create_index; } if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto exit_create_index; } if( sqlite3HasExplicitNulls(pParse, pList) ){ goto exit_create_index; } /* ** Find the table that is to be indexed. Return early if not found. */ if( pTblName!=0 ){ /* Use the two-part index name to determine the database ** to search for the table. 'Fix' the table name to this db ** before looking up the table. */ assert( pName1 && pName2 ); iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); if( iDb<0 ) goto exit_create_index; assert( pName && pName->z ); #ifndef SQLITE_OMIT_TEMPDB /* If the index name was unqualified, check if the table ** is a temp table. If so, set the database to 1. Do not do this ** if initialising a database schema. */ if( !db->init.busy ){ pTab = sqlite3SrcListLookup(pParse, pTblName); if( pName2->n==0 && pTab && pTab->pSchema==db->aDb[1].pSchema ){ iDb = 1; } } #endif sqlite3FixInit(&sFix, pParse, iDb, "index", pName); if( sqlite3FixSrcList(&sFix, pTblName) ){ /* Because the parser constructs pTblName from a single identifier, ** sqlite3FixSrcList can never fail. */ assert(0); } pTab = sqlite3LocateTableItem(pParse, 0, &pTblName->a[0]); assert( db->mallocFailed==0 || pTab==0 ); if( pTab==0 ) goto exit_create_index; if( iDb==1 && db->aDb[iDb].pSchema!=pTab->pSchema ){ sqlite3ErrorMsg(pParse, "cannot create a TEMP index on non-TEMP table \"%s\"", pTab->zName); goto exit_create_index; } if( !HasRowid(pTab) ) pPk = sqlite3PrimaryKeyIndex(pTab); }else{ assert( pName==0 ); assert( pStart==0 ); pTab = pParse->pNewTable; if( !pTab ) goto exit_create_index; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); } pDb = &db->aDb[iDb]; assert( pTab!=0 ); if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 && db->init.busy==0 && pTblName!=0 #if SQLITE_USER_AUTHENTICATION && sqlite3UserAuthTable(pTab->zName)==0 #endif ){ sqlite3ErrorMsg(pParse, "table %s may not be indexed", pTab->zName); goto exit_create_index; } #ifndef SQLITE_OMIT_VIEW if( IsView(pTab) ){ sqlite3ErrorMsg(pParse, "views may not be indexed"); goto exit_create_index; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "virtual tables may not be indexed"); goto exit_create_index; } #endif /* ** Find the name of the index. Make sure there is not already another ** index or table with the same name. ** ** Exception: If we are reading the names of permanent indices from the ** sqlite_schema table (because some other process changed the schema) and ** one of the index names collides with the name of a temporary table or ** index, then we will continue to process this index. ** ** If pName==0 it means that we are ** dealing with a primary key or UNIQUE constraint. We have to invent our ** own name. */ if( pName ){ zName = sqlite3NameFromToken(db, pName); if( zName==0 ) goto exit_create_index; assert( pName->z!=0 ); if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName,"index",pTab->zName) ){ goto exit_create_index; } if( !IN_RENAME_OBJECT ){ if( !db->init.busy ){ if( sqlite3FindTable(db, zName, 0)!=0 ){ sqlite3ErrorMsg(pParse, "there is already a table named %s", zName); goto exit_create_index; } } if( sqlite3FindIndex(db, zName, pDb->zDbSName)!=0 ){ if( !ifNotExist ){ sqlite3ErrorMsg(pParse, "index %s already exists", zName); }else{ assert( !db->init.busy ); sqlite3CodeVerifySchema(pParse, iDb); sqlite3ForceNotReadOnly(pParse); } goto exit_create_index; } } }else{ int n; Index *pLoop; for(pLoop=pTab->pIndex, n=1; pLoop; pLoop=pLoop->pNext, n++){} zName = sqlite3MPrintf(db, "sqlite_autoindex_%s_%d", pTab->zName, n); if( zName==0 ){ goto exit_create_index; } /* Automatic index names generated from within sqlite3_declare_vtab() ** must have names that are distinct from normal automatic index names. ** The following statement converts "sqlite3_autoindex..." into ** "sqlite3_butoindex..." in order to make the names distinct. ** The "vtab_err.test" test demonstrates the need of this statement. */ if( IN_SPECIAL_PARSE ) zName[7]++; } /* Check for authorization to create an index. */ #ifndef SQLITE_OMIT_AUTHORIZATION if( !IN_RENAME_OBJECT ){ const char *zDb = pDb->zDbSName; if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iDb), 0, zDb) ){ goto exit_create_index; } i = SQLITE_CREATE_INDEX; if( !OMIT_TEMPDB && iDb==1 ) i = SQLITE_CREATE_TEMP_INDEX; if( sqlite3AuthCheck(pParse, i, zName, pTab->zName, zDb) ){ goto exit_create_index; } } #endif /* If pList==0, it means this routine was called to make a primary ** key out of the last column added to the table under construction. ** So create a fake list to simulate this. */ if( pList==0 ){ Token prevCol; Column *pCol = &pTab->aCol[pTab->nCol-1]; pCol->colFlags |= COLFLAG_UNIQUE; sqlite3TokenInit(&prevCol, pCol->zCnName); pList = sqlite3ExprListAppend(pParse, 0, sqlite3ExprAlloc(db, TK_ID, &prevCol, 0)); if( pList==0 ) goto exit_create_index; assert( pList->nExpr==1 ); sqlite3ExprListSetSortOrder(pList, sortOrder, SQLITE_SO_UNDEFINED); }else{ sqlite3ExprListCheckLength(pParse, pList, "index"); if( pParse->nErr ) goto exit_create_index; } /* Figure out how many bytes of space are required to store explicitly ** specified collation sequence names. */ for(i=0; inExpr; i++){ Expr *pExpr = pList->a[i].pExpr; assert( pExpr!=0 ); if( pExpr->op==TK_COLLATE ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); nExtra += (1 + sqlite3Strlen30(pExpr->u.zToken)); } } /* ** Allocate the index structure. */ nName = sqlite3Strlen30(zName); nExtraCol = pPk ? pPk->nKeyCol : 1; assert( pList->nExpr + nExtraCol <= 32767 /* Fits in i16 */ ); pIndex = sqlite3AllocateIndexObject(db, pList->nExpr + nExtraCol, nName + nExtra + 1, &zExtra); if( db->mallocFailed ){ goto exit_create_index; } assert( EIGHT_BYTE_ALIGNMENT(pIndex->aiRowLogEst) ); assert( EIGHT_BYTE_ALIGNMENT(pIndex->azColl) ); pIndex->zName = zExtra; zExtra += nName + 1; memcpy(pIndex->zName, zName, nName+1); pIndex->pTable = pTab; pIndex->onError = (u8)onError; pIndex->uniqNotNull = onError!=OE_None; pIndex->idxType = idxType; pIndex->pSchema = db->aDb[iDb].pSchema; pIndex->nKeyCol = pList->nExpr; if( pPIWhere ){ sqlite3ResolveSelfReference(pParse, pTab, NC_PartIdx, pPIWhere, 0); pIndex->pPartIdxWhere = pPIWhere; pPIWhere = 0; } assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); /* Check to see if we should honor DESC requests on index columns */ if( pDb->pSchema->file_format>=4 ){ sortOrderMask = -1; /* Honor DESC */ }else{ sortOrderMask = 0; /* Ignore DESC */ } /* Analyze the list of expressions that form the terms of the index and ** report any errors. In the common case where the expression is exactly ** a table column, store that column in aiColumn[]. For general expressions, ** populate pIndex->aColExpr and store XN_EXPR (-2) in aiColumn[]. ** ** TODO: Issue a warning if two or more columns of the index are identical. ** TODO: Issue a warning if the table primary key is used as part of the ** index key. */ pListItem = pList->a; if( IN_RENAME_OBJECT ){ pIndex->aColExpr = pList; pList = 0; } for(i=0; inKeyCol; i++, pListItem++){ Expr *pCExpr; /* The i-th index expression */ int requestedSortOrder; /* ASC or DESC on the i-th expression */ const char *zColl; /* Collation sequence name */ sqlite3StringToId(pListItem->pExpr); sqlite3ResolveSelfReference(pParse, pTab, NC_IdxExpr, pListItem->pExpr, 0); if( pParse->nErr ) goto exit_create_index; pCExpr = sqlite3ExprSkipCollate(pListItem->pExpr); if( pCExpr->op!=TK_COLUMN ){ if( pTab==pParse->pNewTable ){ sqlite3ErrorMsg(pParse, "expressions prohibited in PRIMARY KEY and " "UNIQUE constraints"); goto exit_create_index; } if( pIndex->aColExpr==0 ){ pIndex->aColExpr = pList; pList = 0; } j = XN_EXPR; pIndex->aiColumn[i] = XN_EXPR; pIndex->uniqNotNull = 0; }else{ j = pCExpr->iColumn; assert( j<=0x7fff ); if( j<0 ){ j = pTab->iPKey; }else{ if( pTab->aCol[j].notNull==0 ){ pIndex->uniqNotNull = 0; } if( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ){ pIndex->bHasVCol = 1; } } pIndex->aiColumn[i] = (i16)j; } zColl = 0; if( pListItem->pExpr->op==TK_COLLATE ){ int nColl; assert( !ExprHasProperty(pListItem->pExpr, EP_IntValue) ); zColl = pListItem->pExpr->u.zToken; nColl = sqlite3Strlen30(zColl) + 1; assert( nExtra>=nColl ); memcpy(zExtra, zColl, nColl); zColl = zExtra; zExtra += nColl; nExtra -= nColl; }else if( j>=0 ){ zColl = sqlite3ColumnColl(&pTab->aCol[j]); } if( !zColl ) zColl = sqlite3StrBINARY; if( !db->init.busy && !sqlite3LocateCollSeq(pParse, zColl) ){ goto exit_create_index; } pIndex->azColl[i] = zColl; requestedSortOrder = pListItem->sortFlags & sortOrderMask; pIndex->aSortOrder[i] = (u8)requestedSortOrder; } /* Append the table key to the end of the index. For WITHOUT ROWID ** tables (when pPk!=0) this will be the declared PRIMARY KEY. For ** normal tables (when pPk==0) this will be the rowid. */ if( pPk ){ for(j=0; jnKeyCol; j++){ int x = pPk->aiColumn[j]; assert( x>=0 ); if( isDupColumn(pIndex, pIndex->nKeyCol, pPk, j) ){ pIndex->nColumn--; }else{ testcase( hasColumn(pIndex->aiColumn,pIndex->nKeyCol,x) ); pIndex->aiColumn[i] = x; pIndex->azColl[i] = pPk->azColl[j]; pIndex->aSortOrder[i] = pPk->aSortOrder[j]; i++; } } assert( i==pIndex->nColumn ); }else{ pIndex->aiColumn[i] = XN_ROWID; pIndex->azColl[i] = sqlite3StrBINARY; } sqlite3DefaultRowEst(pIndex); if( pParse->pNewTable==0 ) estimateIndexWidth(pIndex); /* If this index contains every column of its table, then mark ** it as a covering index */ assert( HasRowid(pTab) || pTab->iPKey<0 || sqlite3TableColumnToIndex(pIndex, pTab->iPKey)>=0 ); recomputeColumnsNotIndexed(pIndex); if( pTblName!=0 && pIndex->nColumn>=pTab->nCol ){ pIndex->isCovering = 1; for(j=0; jnCol; j++){ if( j==pTab->iPKey ) continue; if( sqlite3TableColumnToIndex(pIndex,j)>=0 ) continue; pIndex->isCovering = 0; break; } } if( pTab==pParse->pNewTable ){ /* This routine has been called to create an automatic index as a ** result of a PRIMARY KEY or UNIQUE clause on a column definition, or ** a PRIMARY KEY or UNIQUE clause following the column definitions. ** i.e. one of: ** ** CREATE TABLE t(x PRIMARY KEY, y); ** CREATE TABLE t(x, y, UNIQUE(x, y)); ** ** Either way, check to see if the table already has such an index. If ** so, don't bother creating this one. This only applies to ** automatically created indices. Users can do as they wish with ** explicit indices. ** ** Two UNIQUE or PRIMARY KEY constraints are considered equivalent ** (and thus suppressing the second one) even if they have different ** sort orders. ** ** If there are different collating sequences or if the columns of ** the constraint occur in different orders, then the constraints are ** considered distinct and both result in separate indices. */ Index *pIdx; for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int k; assert( IsUniqueIndex(pIdx) ); assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF ); assert( IsUniqueIndex(pIndex) ); if( pIdx->nKeyCol!=pIndex->nKeyCol ) continue; for(k=0; knKeyCol; k++){ const char *z1; const char *z2; assert( pIdx->aiColumn[k]>=0 ); if( pIdx->aiColumn[k]!=pIndex->aiColumn[k] ) break; z1 = pIdx->azColl[k]; z2 = pIndex->azColl[k]; if( sqlite3StrICmp(z1, z2) ) break; } if( k==pIdx->nKeyCol ){ if( pIdx->onError!=pIndex->onError ){ /* This constraint creates the same index as a previous ** constraint specified somewhere in the CREATE TABLE statement. ** However the ON CONFLICT clauses are different. If both this ** constraint and the previous equivalent constraint have explicit ** ON CONFLICT clauses this is an error. Otherwise, use the ** explicitly specified behavior for the index. */ if( !(pIdx->onError==OE_Default || pIndex->onError==OE_Default) ){ sqlite3ErrorMsg(pParse, "conflicting ON CONFLICT clauses specified", 0); } if( pIdx->onError==OE_Default ){ pIdx->onError = pIndex->onError; } } if( idxType==SQLITE_IDXTYPE_PRIMARYKEY ) pIdx->idxType = idxType; if( IN_RENAME_OBJECT ){ pIndex->pNext = pParse->pNewIndex; pParse->pNewIndex = pIndex; pIndex = 0; } goto exit_create_index; } } } if( !IN_RENAME_OBJECT ){ /* Link the new Index structure to its table and to the other ** in-memory database structures. */ assert( pParse->nErr==0 ); if( db->init.busy ){ Index *p; assert( !IN_SPECIAL_PARSE ); assert( sqlite3SchemaMutexHeld(db, 0, pIndex->pSchema) ); if( pTblName!=0 ){ pIndex->tnum = db->init.newTnum; if( sqlite3IndexHasDuplicateRootPage(pIndex) ){ sqlite3ErrorMsg(pParse, "invalid rootpage"); pParse->rc = SQLITE_CORRUPT_BKPT; goto exit_create_index; } } p = sqlite3HashInsert(&pIndex->pSchema->idxHash, pIndex->zName, pIndex); if( p ){ assert( p==pIndex ); /* Malloc must have failed */ sqlite3OomFault(db); goto exit_create_index; } db->mDbFlags |= DBFLAG_SchemaChange; } /* If this is the initial CREATE INDEX statement (or CREATE TABLE if the ** index is an implied index for a UNIQUE or PRIMARY KEY constraint) then ** emit code to allocate the index rootpage on disk and make an entry for ** the index in the sqlite_schema table and populate the index with ** content. But, do not do this if we are simply reading the sqlite_schema ** table to parse the schema, or if this index is the PRIMARY KEY index ** of a WITHOUT ROWID table. ** ** If pTblName==0 it means this index is generated as an implied PRIMARY KEY ** or UNIQUE index in a CREATE TABLE statement. Since the table ** has just been created, it contains no data and the index initialization ** step can be skipped. */ else if( HasRowid(pTab) || pTblName!=0 ){ Vdbe *v; char *zStmt; int iMem = ++pParse->nMem; v = sqlite3GetVdbe(pParse); if( v==0 ) goto exit_create_index; sqlite3BeginWriteOperation(pParse, 1, iDb); /* Create the rootpage for the index using CreateIndex. But before ** doing so, code a Noop instruction and store its address in ** Index.tnum. This is required in case this index is actually a ** PRIMARY KEY and the table is actually a WITHOUT ROWID table. In ** that case the convertToWithoutRowidTable() routine will replace ** the Noop with a Goto to jump over the VDBE code generated below. */ pIndex->tnum = (Pgno)sqlite3VdbeAddOp0(v, OP_Noop); sqlite3VdbeAddOp3(v, OP_CreateBtree, iDb, iMem, BTREE_BLOBKEY); /* Gather the complete text of the CREATE INDEX statement into ** the zStmt variable */ assert( pName!=0 || pStart==0 ); if( pStart ){ int n = (int)(pParse->sLastToken.z - pName->z) + pParse->sLastToken.n; if( pName->z[n-1]==';' ) n--; /* A named index with an explicit CREATE INDEX statement */ zStmt = sqlite3MPrintf(db, "CREATE%s INDEX %.*s", onError==OE_None ? "" : " UNIQUE", n, pName->z); }else{ /* An automatic index created by a PRIMARY KEY or UNIQUE constraint */ /* zStmt = sqlite3MPrintf(""); */ zStmt = 0; } /* Add an entry in sqlite_schema for this index */ sqlite3NestedParse(pParse, "INSERT INTO %Q." LEGACY_SCHEMA_TABLE " VALUES('index',%Q,%Q,#%d,%Q);", db->aDb[iDb].zDbSName, pIndex->zName, pTab->zName, iMem, zStmt ); sqlite3DbFree(db, zStmt); /* Fill the index with data and reparse the schema. Code an OP_Expire ** to invalidate all pre-compiled statements. */ if( pTblName ){ sqlite3RefillIndex(pParse, pIndex, iMem); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddParseSchemaOp(v, iDb, sqlite3MPrintf(db, "name='%q' AND type='index'", pIndex->zName), 0); sqlite3VdbeAddOp2(v, OP_Expire, 0, 1); } sqlite3VdbeJumpHere(v, (int)pIndex->tnum); } } if( db->init.busy || pTblName==0 ){ pIndex->pNext = pTab->pIndex; pTab->pIndex = pIndex; pIndex = 0; } else if( IN_RENAME_OBJECT ){ assert( pParse->pNewIndex==0 ); pParse->pNewIndex = pIndex; pIndex = 0; } /* Clean up before exiting */ exit_create_index: if( pIndex ) sqlite3FreeIndex(db, pIndex); if( pTab ){ /* Ensure all REPLACE indexes on pTab are at the end of the pIndex list. ** The list was already ordered when this routine was entered, so at this ** point at most a single index (the newly added index) will be out of ** order. So we have to reorder at most one index. */ Index **ppFrom; Index *pThis; for(ppFrom=&pTab->pIndex; (pThis = *ppFrom)!=0; ppFrom=&pThis->pNext){ Index *pNext; if( pThis->onError!=OE_Replace ) continue; while( (pNext = pThis->pNext)!=0 && pNext->onError!=OE_Replace ){ *ppFrom = pNext; pThis->pNext = pNext->pNext; pNext->pNext = pThis; ppFrom = &pNext->pNext; } break; } #ifdef SQLITE_DEBUG /* Verify that all REPLACE indexes really are now at the end ** of the index list. In other words, no other index type ever ** comes after a REPLACE index on the list. */ for(pThis = pTab->pIndex; pThis; pThis=pThis->pNext){ assert( pThis->onError!=OE_Replace || pThis->pNext==0 || pThis->pNext->onError==OE_Replace ); } #endif } sqlite3ExprDelete(db, pPIWhere); sqlite3ExprListDelete(db, pList); sqlite3SrcListDelete(db, pTblName); sqlite3DbFree(db, zName); } /* ** Fill the Index.aiRowEst[] array with default information - information ** to be used when we have not run the ANALYZE command. ** ** aiRowEst[0] is supposed to contain the number of elements in the index. ** Since we do not know, guess 1 million. aiRowEst[1] is an estimate of the ** number of rows in the table that match any particular value of the ** first column of the index. aiRowEst[2] is an estimate of the number ** of rows that match any particular combination of the first 2 columns ** of the index. And so forth. It must always be the case that * ** aiRowEst[N]<=aiRowEst[N-1] ** aiRowEst[N]>=1 ** ** Apart from that, we have little to go on besides intuition as to ** how aiRowEst[] should be initialized. The numbers generated here ** are based on typical values found in actual indices. */ SQLITE_PRIVATE void sqlite3DefaultRowEst(Index *pIdx){ /* 10, 9, 8, 7, 6 */ static const LogEst aVal[] = { 33, 32, 30, 28, 26 }; LogEst *a = pIdx->aiRowLogEst; LogEst x; int nCopy = MIN(ArraySize(aVal), pIdx->nKeyCol); int i; /* Indexes with default row estimates should not have stat1 data */ assert( !pIdx->hasStat1 ); /* Set the first entry (number of rows in the index) to the estimated ** number of rows in the table, or half the number of rows in the table ** for a partial index. ** ** 2020-05-27: If some of the stat data is coming from the sqlite_stat1 ** table but other parts we are having to guess at, then do not let the ** estimated number of rows in the table be less than 1000 (LogEst 99). ** Failure to do this can cause the indexes for which we do not have ** stat1 data to be ignored by the query planner. */ x = pIdx->pTable->nRowLogEst; assert( 99==sqlite3LogEst(1000) ); if( x<99 ){ pIdx->pTable->nRowLogEst = x = 99; } if( pIdx->pPartIdxWhere!=0 ){ x -= 10; assert( 10==sqlite3LogEst(2) ); } a[0] = x; /* Estimate that a[1] is 10, a[2] is 9, a[3] is 8, a[4] is 7, a[5] is ** 6 and each subsequent value (if any) is 5. */ memcpy(&a[1], aVal, nCopy*sizeof(LogEst)); for(i=nCopy+1; i<=pIdx->nKeyCol; i++){ a[i] = 23; assert( 23==sqlite3LogEst(5) ); } assert( 0==sqlite3LogEst(1) ); if( IsUniqueIndex(pIdx) ) a[pIdx->nKeyCol] = 0; } /* ** This routine will drop an existing named index. This routine ** implements the DROP INDEX statement. */ SQLITE_PRIVATE void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){ Index *pIndex; Vdbe *v; sqlite3 *db = pParse->db; int iDb; if( db->mallocFailed ){ goto exit_drop_index; } assert( pParse->nErr==0 ); /* Never called with prior non-OOM errors */ assert( pName->nSrc==1 ); if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto exit_drop_index; } pIndex = sqlite3FindIndex(db, pName->a[0].zName, pName->a[0].zDatabase); if( pIndex==0 ){ if( !ifExists ){ sqlite3ErrorMsg(pParse, "no such index: %S", pName->a); }else{ sqlite3CodeVerifyNamedSchema(pParse, pName->a[0].zDatabase); sqlite3ForceNotReadOnly(pParse); } pParse->checkSchema = 1; goto exit_drop_index; } if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){ sqlite3ErrorMsg(pParse, "index associated with UNIQUE " "or PRIMARY KEY constraint cannot be dropped", 0); goto exit_drop_index; } iDb = sqlite3SchemaToIndex(db, pIndex->pSchema); #ifndef SQLITE_OMIT_AUTHORIZATION { int code = SQLITE_DROP_INDEX; Table *pTab = pIndex->pTable; const char *zDb = db->aDb[iDb].zDbSName; const char *zTab = SCHEMA_TABLE(iDb); if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){ goto exit_drop_index; } if( !OMIT_TEMPDB && iDb==1 ) code = SQLITE_DROP_TEMP_INDEX; if( sqlite3AuthCheck(pParse, code, pIndex->zName, pTab->zName, zDb) ){ goto exit_drop_index; } } #endif /* Generate code to remove the index and from the schema table */ v = sqlite3GetVdbe(pParse); if( v ){ sqlite3BeginWriteOperation(pParse, 1, iDb); sqlite3NestedParse(pParse, "DELETE FROM %Q." LEGACY_SCHEMA_TABLE " WHERE name=%Q AND type='index'", db->aDb[iDb].zDbSName, pIndex->zName ); sqlite3ClearStatTables(pParse, iDb, "idx", pIndex->zName); sqlite3ChangeCookie(pParse, iDb); destroyRootPage(pParse, pIndex->tnum, iDb); sqlite3VdbeAddOp4(v, OP_DropIndex, iDb, 0, 0, pIndex->zName, 0); } exit_drop_index: sqlite3SrcListDelete(db, pName); } /* ** pArray is a pointer to an array of objects. Each object in the ** array is szEntry bytes in size. This routine uses sqlite3DbRealloc() ** to extend the array so that there is space for a new object at the end. ** ** When this function is called, *pnEntry contains the current size of ** the array (in entries - so the allocation is ((*pnEntry) * szEntry) bytes ** in total). ** ** If the realloc() is successful (i.e. if no OOM condition occurs), the ** space allocated for the new object is zeroed, *pnEntry updated to ** reflect the new size of the array and a pointer to the new allocation ** returned. *pIdx is set to the index of the new array entry in this case. ** ** Otherwise, if the realloc() fails, *pIdx is set to -1, *pnEntry remains ** unchanged and a copy of pArray returned. */ SQLITE_PRIVATE void *sqlite3ArrayAllocate( sqlite3 *db, /* Connection to notify of malloc failures */ void *pArray, /* Array of objects. Might be reallocated */ int szEntry, /* Size of each object in the array */ int *pnEntry, /* Number of objects currently in use */ int *pIdx /* Write the index of a new slot here */ ){ char *z; sqlite3_int64 n = *pIdx = *pnEntry; if( (n & (n-1))==0 ){ sqlite3_int64 sz = (n==0) ? 1 : 2*n; void *pNew = sqlite3DbRealloc(db, pArray, sz*szEntry); if( pNew==0 ){ *pIdx = -1; return pArray; } pArray = pNew; } z = (char*)pArray; memset(&z[n * szEntry], 0, szEntry); ++*pnEntry; return pArray; } /* ** Append a new element to the given IdList. Create a new IdList if ** need be. ** ** A new IdList is returned, or NULL if malloc() fails. */ SQLITE_PRIVATE IdList *sqlite3IdListAppend(Parse *pParse, IdList *pList, Token *pToken){ sqlite3 *db = pParse->db; int i; if( pList==0 ){ pList = sqlite3DbMallocZero(db, sizeof(IdList) ); if( pList==0 ) return 0; } pList->a = sqlite3ArrayAllocate( db, pList->a, sizeof(pList->a[0]), &pList->nId, &i ); if( i<0 ){ sqlite3IdListDelete(db, pList); return 0; } pList->a[i].zName = sqlite3NameFromToken(db, pToken); if( IN_RENAME_OBJECT && pList->a[i].zName ){ sqlite3RenameTokenMap(pParse, (void*)pList->a[i].zName, pToken); } return pList; } /* ** Delete an IdList. */ SQLITE_PRIVATE void sqlite3IdListDelete(sqlite3 *db, IdList *pList){ int i; if( pList==0 ) return; for(i=0; inId; i++){ sqlite3DbFree(db, pList->a[i].zName); } sqlite3DbFree(db, pList->a); sqlite3DbFreeNN(db, pList); } /* ** Return the index in pList of the identifier named zId. Return -1 ** if not found. */ SQLITE_PRIVATE int sqlite3IdListIndex(IdList *pList, const char *zName){ int i; if( pList==0 ) return -1; for(i=0; inId; i++){ if( sqlite3StrICmp(pList->a[i].zName, zName)==0 ) return i; } return -1; } /* ** Maximum size of a SrcList object. ** The SrcList object is used to represent the FROM clause of a ** SELECT statement, and the query planner cannot deal with more ** than 64 tables in a join. So any value larger than 64 here ** is sufficient for most uses. Smaller values, like say 10, are ** appropriate for small and memory-limited applications. */ #ifndef SQLITE_MAX_SRCLIST # define SQLITE_MAX_SRCLIST 200 #endif /* ** Expand the space allocated for the given SrcList object by ** creating nExtra new slots beginning at iStart. iStart is zero based. ** New slots are zeroed. ** ** For example, suppose a SrcList initially contains two entries: A,B. ** To append 3 new entries onto the end, do this: ** ** sqlite3SrcListEnlarge(db, pSrclist, 3, 2); ** ** After the call above it would contain: A, B, nil, nil, nil. ** If the iStart argument had been 1 instead of 2, then the result ** would have been: A, nil, nil, nil, B. To prepend the new slots, ** the iStart value would be 0. The result then would ** be: nil, nil, nil, A, B. ** ** If a memory allocation fails or the SrcList becomes too large, leave ** the original SrcList unchanged, return NULL, and leave an error message ** in pParse. */ SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge( Parse *pParse, /* Parsing context into which errors are reported */ SrcList *pSrc, /* The SrcList to be enlarged */ int nExtra, /* Number of new slots to add to pSrc->a[] */ int iStart /* Index in pSrc->a[] of first new slot */ ){ int i; /* Sanity checking on calling parameters */ assert( iStart>=0 ); assert( nExtra>=1 ); assert( pSrc!=0 ); assert( iStart<=pSrc->nSrc ); /* Allocate additional space if needed */ if( (u32)pSrc->nSrc+nExtra>pSrc->nAlloc ){ SrcList *pNew; sqlite3_int64 nAlloc = 2*(sqlite3_int64)pSrc->nSrc+nExtra; sqlite3 *db = pParse->db; if( pSrc->nSrc+nExtra>=SQLITE_MAX_SRCLIST ){ sqlite3ErrorMsg(pParse, "too many FROM clause terms, max: %d", SQLITE_MAX_SRCLIST); return 0; } if( nAlloc>SQLITE_MAX_SRCLIST ) nAlloc = SQLITE_MAX_SRCLIST; pNew = sqlite3DbRealloc(db, pSrc, sizeof(*pSrc) + (nAlloc-1)*sizeof(pSrc->a[0]) ); if( pNew==0 ){ assert( db->mallocFailed ); return 0; } pSrc = pNew; pSrc->nAlloc = nAlloc; } /* Move existing slots that come after the newly inserted slots ** out of the way */ for(i=pSrc->nSrc-1; i>=iStart; i--){ pSrc->a[i+nExtra] = pSrc->a[i]; } pSrc->nSrc += nExtra; /* Zero the newly allocated slots */ memset(&pSrc->a[iStart], 0, sizeof(pSrc->a[0])*nExtra); for(i=iStart; ia[i].iCursor = -1; } /* Return a pointer to the enlarged SrcList */ return pSrc; } /* ** Append a new table name to the given SrcList. Create a new SrcList if ** need be. A new entry is created in the SrcList even if pTable is NULL. ** ** A SrcList is returned, or NULL if there is an OOM error or if the ** SrcList grows to large. The returned ** SrcList might be the same as the SrcList that was input or it might be ** a new one. If an OOM error does occurs, then the prior value of pList ** that is input to this routine is automatically freed. ** ** If pDatabase is not null, it means that the table has an optional ** database name prefix. Like this: "database.table". The pDatabase ** points to the table name and the pTable points to the database name. ** The SrcList.a[].zName field is filled with the table name which might ** come from pTable (if pDatabase is NULL) or from pDatabase. ** SrcList.a[].zDatabase is filled with the database name from pTable, ** or with NULL if no database is specified. ** ** In other words, if call like this: ** ** sqlite3SrcListAppend(D,A,B,0); ** ** Then B is a table name and the database name is unspecified. If called ** like this: ** ** sqlite3SrcListAppend(D,A,B,C); ** ** Then C is the table name and B is the database name. If C is defined ** then so is B. In other words, we never have a case where: ** ** sqlite3SrcListAppend(D,A,0,C); ** ** Both pTable and pDatabase are assumed to be quoted. They are dequoted ** before being added to the SrcList. */ SQLITE_PRIVATE SrcList *sqlite3SrcListAppend( Parse *pParse, /* Parsing context, in which errors are reported */ SrcList *pList, /* Append to this SrcList. NULL creates a new SrcList */ Token *pTable, /* Table to append */ Token *pDatabase /* Database of the table */ ){ SrcItem *pItem; sqlite3 *db; assert( pDatabase==0 || pTable!=0 ); /* Cannot have C without B */ assert( pParse!=0 ); assert( pParse->db!=0 ); db = pParse->db; if( pList==0 ){ pList = sqlite3DbMallocRawNN(pParse->db, sizeof(SrcList) ); if( pList==0 ) return 0; pList->nAlloc = 1; pList->nSrc = 1; memset(&pList->a[0], 0, sizeof(pList->a[0])); pList->a[0].iCursor = -1; }else{ SrcList *pNew = sqlite3SrcListEnlarge(pParse, pList, 1, pList->nSrc); if( pNew==0 ){ sqlite3SrcListDelete(db, pList); return 0; }else{ pList = pNew; } } pItem = &pList->a[pList->nSrc-1]; if( pDatabase && pDatabase->z==0 ){ pDatabase = 0; } if( pDatabase ){ pItem->zName = sqlite3NameFromToken(db, pDatabase); pItem->zDatabase = sqlite3NameFromToken(db, pTable); }else{ pItem->zName = sqlite3NameFromToken(db, pTable); pItem->zDatabase = 0; } return pList; } /* ** Assign VdbeCursor index numbers to all tables in a SrcList */ SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){ int i; SrcItem *pItem; assert( pList || pParse->db->mallocFailed ); if( ALWAYS(pList) ){ for(i=0, pItem=pList->a; inSrc; i++, pItem++){ if( pItem->iCursor>=0 ) continue; pItem->iCursor = pParse->nTab++; if( pItem->pSelect ){ sqlite3SrcListAssignCursors(pParse, pItem->pSelect->pSrc); } } } } /* ** Delete an entire SrcList including all its substructure. */ SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){ int i; SrcItem *pItem; if( pList==0 ) return; for(pItem=pList->a, i=0; inSrc; i++, pItem++){ if( pItem->zDatabase ) sqlite3DbFreeNN(db, pItem->zDatabase); sqlite3DbFree(db, pItem->zName); if( pItem->zAlias ) sqlite3DbFreeNN(db, pItem->zAlias); if( pItem->fg.isIndexedBy ) sqlite3DbFree(db, pItem->u1.zIndexedBy); if( pItem->fg.isTabFunc ) sqlite3ExprListDelete(db, pItem->u1.pFuncArg); sqlite3DeleteTable(db, pItem->pTab); if( pItem->pSelect ) sqlite3SelectDelete(db, pItem->pSelect); if( pItem->pOn ) sqlite3ExprDelete(db, pItem->pOn); if( pItem->pUsing ) sqlite3IdListDelete(db, pItem->pUsing); } sqlite3DbFreeNN(db, pList); } /* ** This routine is called by the parser to add a new term to the ** end of a growing FROM clause. The "p" parameter is the part of ** the FROM clause that has already been constructed. "p" is NULL ** if this is the first term of the FROM clause. pTable and pDatabase ** are the name of the table and database named in the FROM clause term. ** pDatabase is NULL if the database name qualifier is missing - the ** usual case. If the term has an alias, then pAlias points to the ** alias token. If the term is a subquery, then pSubquery is the ** SELECT statement that the subquery encodes. The pTable and ** pDatabase parameters are NULL for subqueries. The pOn and pUsing ** parameters are the content of the ON and USING clauses. ** ** Return a new SrcList which encodes is the FROM with the new ** term added. */ SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm( Parse *pParse, /* Parsing context */ SrcList *p, /* The left part of the FROM clause already seen */ Token *pTable, /* Name of the table to add to the FROM clause */ Token *pDatabase, /* Name of the database containing pTable */ Token *pAlias, /* The right-hand side of the AS subexpression */ Select *pSubquery, /* A subquery used in place of a table name */ Expr *pOn, /* The ON clause of a join */ IdList *pUsing /* The USING clause of a join */ ){ SrcItem *pItem; sqlite3 *db = pParse->db; if( !p && (pOn || pUsing) ){ sqlite3ErrorMsg(pParse, "a JOIN clause is required before %s", (pOn ? "ON" : "USING") ); goto append_from_error; } p = sqlite3SrcListAppend(pParse, p, pTable, pDatabase); if( p==0 ){ goto append_from_error; } assert( p->nSrc>0 ); pItem = &p->a[p->nSrc-1]; assert( (pTable==0)==(pDatabase==0) ); assert( pItem->zName==0 || pDatabase!=0 ); if( IN_RENAME_OBJECT && pItem->zName ){ Token *pToken = (ALWAYS(pDatabase) && pDatabase->z) ? pDatabase : pTable; sqlite3RenameTokenMap(pParse, pItem->zName, pToken); } assert( pAlias!=0 ); if( pAlias->n ){ pItem->zAlias = sqlite3NameFromToken(db, pAlias); } pItem->pSelect = pSubquery; pItem->pOn = pOn; pItem->pUsing = pUsing; return p; append_from_error: assert( p==0 ); sqlite3ExprDelete(db, pOn); sqlite3IdListDelete(db, pUsing); sqlite3SelectDelete(db, pSubquery); return 0; } /* ** Add an INDEXED BY or NOT INDEXED clause to the most recently added ** element of the source-list passed as the second argument. */ SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy){ assert( pIndexedBy!=0 ); if( p && pIndexedBy->n>0 ){ SrcItem *pItem; assert( p->nSrc>0 ); pItem = &p->a[p->nSrc-1]; assert( pItem->fg.notIndexed==0 ); assert( pItem->fg.isIndexedBy==0 ); assert( pItem->fg.isTabFunc==0 ); if( pIndexedBy->n==1 && !pIndexedBy->z ){ /* A "NOT INDEXED" clause was supplied. See parse.y ** construct "indexed_opt" for details. */ pItem->fg.notIndexed = 1; }else{ pItem->u1.zIndexedBy = sqlite3NameFromToken(pParse->db, pIndexedBy); pItem->fg.isIndexedBy = 1; assert( pItem->fg.isCte==0 ); /* No collision on union u2 */ } } } /* ** Append the contents of SrcList p2 to SrcList p1 and return the resulting ** SrcList. Or, if an error occurs, return NULL. In all cases, p1 and p2 ** are deleted by this function. */ SQLITE_PRIVATE SrcList *sqlite3SrcListAppendList(Parse *pParse, SrcList *p1, SrcList *p2){ assert( p1 && p1->nSrc==1 ); if( p2 ){ SrcList *pNew = sqlite3SrcListEnlarge(pParse, p1, p2->nSrc, 1); if( pNew==0 ){ sqlite3SrcListDelete(pParse->db, p2); }else{ p1 = pNew; memcpy(&p1->a[1], p2->a, p2->nSrc*sizeof(SrcItem)); sqlite3DbFree(pParse->db, p2); } } return p1; } /* ** Add the list of function arguments to the SrcList entry for a ** table-valued-function. */ SQLITE_PRIVATE void sqlite3SrcListFuncArgs(Parse *pParse, SrcList *p, ExprList *pList){ if( p ){ SrcItem *pItem = &p->a[p->nSrc-1]; assert( pItem->fg.notIndexed==0 ); assert( pItem->fg.isIndexedBy==0 ); assert( pItem->fg.isTabFunc==0 ); pItem->u1.pFuncArg = pList; pItem->fg.isTabFunc = 1; }else{ sqlite3ExprListDelete(pParse->db, pList); } } /* ** When building up a FROM clause in the parser, the join operator ** is initially attached to the left operand. But the code generator ** expects the join operator to be on the right operand. This routine ** Shifts all join operators from left to right for an entire FROM ** clause. ** ** Example: Suppose the join is like this: ** ** A natural cross join B ** ** The operator is "natural cross join". The A and B operands are stored ** in p->a[0] and p->a[1], respectively. The parser initially stores the ** operator with A. This routine shifts that operator over to B. */ SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList *p){ if( p ){ int i; for(i=p->nSrc-1; i>0; i--){ p->a[i].fg.jointype = p->a[i-1].fg.jointype; } p->a[0].fg.jointype = 0; } } /* ** Generate VDBE code for a BEGIN statement. */ SQLITE_PRIVATE void sqlite3BeginTransaction(Parse *pParse, int type){ sqlite3 *db; Vdbe *v; int i; assert( pParse!=0 ); db = pParse->db; assert( db!=0 ); if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "BEGIN", 0, 0) ){ return; } v = sqlite3GetVdbe(pParse); if( !v ) return; if( type!=TK_DEFERRED ){ for(i=0; inDb; i++){ int eTxnType; Btree *pBt = db->aDb[i].pBt; if( pBt && sqlite3BtreeIsReadonly(pBt) ){ eTxnType = 0; /* Read txn */ }else if( type==TK_EXCLUSIVE ){ eTxnType = 2; /* Exclusive txn */ }else{ eTxnType = 1; /* Write txn */ } sqlite3VdbeAddOp2(v, OP_Transaction, i, eTxnType); sqlite3VdbeUsesBtree(v, i); } } sqlite3VdbeAddOp0(v, OP_AutoCommit); } /* ** Generate VDBE code for a COMMIT or ROLLBACK statement. ** Code for ROLLBACK is generated if eType==TK_ROLLBACK. Otherwise ** code is generated for a COMMIT. */ SQLITE_PRIVATE void sqlite3EndTransaction(Parse *pParse, int eType){ Vdbe *v; int isRollback; assert( pParse!=0 ); assert( pParse->db!=0 ); assert( eType==TK_COMMIT || eType==TK_END || eType==TK_ROLLBACK ); isRollback = eType==TK_ROLLBACK; if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, isRollback ? "ROLLBACK" : "COMMIT", 0, 0) ){ return; } v = sqlite3GetVdbe(pParse); if( v ){ sqlite3VdbeAddOp2(v, OP_AutoCommit, 1, isRollback); } } /* ** This function is called by the parser when it parses a command to create, ** release or rollback an SQL savepoint. */ SQLITE_PRIVATE void sqlite3Savepoint(Parse *pParse, int op, Token *pName){ char *zName = sqlite3NameFromToken(pParse->db, pName); if( zName ){ Vdbe *v = sqlite3GetVdbe(pParse); #ifndef SQLITE_OMIT_AUTHORIZATION static const char * const az[] = { "BEGIN", "RELEASE", "ROLLBACK" }; assert( !SAVEPOINT_BEGIN && SAVEPOINT_RELEASE==1 && SAVEPOINT_ROLLBACK==2 ); #endif if( !v || sqlite3AuthCheck(pParse, SQLITE_SAVEPOINT, az[op], zName, 0) ){ sqlite3DbFree(pParse->db, zName); return; } sqlite3VdbeAddOp4(v, OP_Savepoint, op, 0, 0, zName, P4_DYNAMIC); } } /* ** Make sure the TEMP database is open and available for use. Return ** the number of errors. Leave any error messages in the pParse structure. */ SQLITE_PRIVATE int sqlite3OpenTempDatabase(Parse *pParse){ sqlite3 *db = pParse->db; if( db->aDb[1].pBt==0 && !pParse->explain ){ int rc; Btree *pBt; static const int flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_TEMP_DB; rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pBt, 0, flags); if( rc!=SQLITE_OK ){ sqlite3ErrorMsg(pParse, "unable to open a temporary database " "file for storing temporary tables"); pParse->rc = rc; return 1; } db->aDb[1].pBt = pBt; assert( db->aDb[1].pSchema ); if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize, 0, 0) ){ sqlite3OomFault(db); return 1; } } return 0; } /* ** Record the fact that the schema cookie will need to be verified ** for database iDb. The code to actually verify the schema cookie ** will occur at the end of the top-level VDBE and will be generated ** later, by sqlite3FinishCoding(). */ static void sqlite3CodeVerifySchemaAtToplevel(Parse *pToplevel, int iDb){ assert( iDb>=0 && iDbdb->nDb ); assert( pToplevel->db->aDb[iDb].pBt!=0 || iDb==1 ); assert( iDbdb, iDb, 0) ); if( DbMaskTest(pToplevel->cookieMask, iDb)==0 ){ DbMaskSet(pToplevel->cookieMask, iDb); if( !OMIT_TEMPDB && iDb==1 ){ sqlite3OpenTempDatabase(pToplevel); } } } SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse *pParse, int iDb){ sqlite3CodeVerifySchemaAtToplevel(sqlite3ParseToplevel(pParse), iDb); } /* ** If argument zDb is NULL, then call sqlite3CodeVerifySchema() for each ** attached database. Otherwise, invoke it for the database named zDb only. */ SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb){ sqlite3 *db = pParse->db; int i; for(i=0; inDb; i++){ Db *pDb = &db->aDb[i]; if( pDb->pBt && (!zDb || 0==sqlite3StrICmp(zDb, pDb->zDbSName)) ){ sqlite3CodeVerifySchema(pParse, i); } } } /* ** Generate VDBE code that prepares for doing an operation that ** might change the database. ** ** This routine starts a new transaction if we are not already within ** a transaction. If we are already within a transaction, then a checkpoint ** is set if the setStatement parameter is true. A checkpoint should ** be set for operations that might fail (due to a constraint) part of ** the way through and which will need to undo some writes without having to ** rollback the whole transaction. For operations where all constraints ** can be checked before any changes are made to the database, it is never ** necessary to undo a write and the checkpoint should not be set. */ SQLITE_PRIVATE void sqlite3BeginWriteOperation(Parse *pParse, int setStatement, int iDb){ Parse *pToplevel = sqlite3ParseToplevel(pParse); sqlite3CodeVerifySchemaAtToplevel(pToplevel, iDb); DbMaskSet(pToplevel->writeMask, iDb); pToplevel->isMultiWrite |= setStatement; } /* ** Indicate that the statement currently under construction might write ** more than one entry (example: deleting one row then inserting another, ** inserting multiple rows in a table, or inserting a row and index entries.) ** If an abort occurs after some of these writes have completed, then it will ** be necessary to undo the completed writes. */ SQLITE_PRIVATE void sqlite3MultiWrite(Parse *pParse){ Parse *pToplevel = sqlite3ParseToplevel(pParse); pToplevel->isMultiWrite = 1; } /* ** The code generator calls this routine if is discovers that it is ** possible to abort a statement prior to completion. In order to ** perform this abort without corrupting the database, we need to make ** sure that the statement is protected by a statement transaction. ** ** Technically, we only need to set the mayAbort flag if the ** isMultiWrite flag was previously set. There is a time dependency ** such that the abort must occur after the multiwrite. This makes ** some statements involving the REPLACE conflict resolution algorithm ** go a little faster. But taking advantage of this time dependency ** makes it more difficult to prove that the code is correct (in ** particular, it prevents us from writing an effective ** implementation of sqlite3AssertMayAbort()) and so we have chosen ** to take the safe route and skip the optimization. */ SQLITE_PRIVATE void sqlite3MayAbort(Parse *pParse){ Parse *pToplevel = sqlite3ParseToplevel(pParse); pToplevel->mayAbort = 1; } /* ** Code an OP_Halt that causes the vdbe to return an SQLITE_CONSTRAINT ** error. The onError parameter determines which (if any) of the statement ** and/or current transaction is rolled back. */ SQLITE_PRIVATE void sqlite3HaltConstraint( Parse *pParse, /* Parsing context */ int errCode, /* extended error code */ int onError, /* Constraint type */ char *p4, /* Error message */ i8 p4type, /* P4_STATIC or P4_TRANSIENT */ u8 p5Errmsg /* P5_ErrMsg type */ ){ Vdbe *v; assert( pParse->pVdbe!=0 ); v = sqlite3GetVdbe(pParse); assert( (errCode&0xff)==SQLITE_CONSTRAINT || pParse->nested ); if( onError==OE_Abort ){ sqlite3MayAbort(pParse); } sqlite3VdbeAddOp4(v, OP_Halt, errCode, onError, 0, p4, p4type); sqlite3VdbeChangeP5(v, p5Errmsg); } /* ** Code an OP_Halt due to UNIQUE or PRIMARY KEY constraint violation. */ SQLITE_PRIVATE void sqlite3UniqueConstraint( Parse *pParse, /* Parsing context */ int onError, /* Constraint type */ Index *pIdx /* The index that triggers the constraint */ ){ char *zErr; int j; StrAccum errMsg; Table *pTab = pIdx->pTable; sqlite3StrAccumInit(&errMsg, pParse->db, 0, 0, pParse->db->aLimit[SQLITE_LIMIT_LENGTH]); if( pIdx->aColExpr ){ sqlite3_str_appendf(&errMsg, "index '%q'", pIdx->zName); }else{ for(j=0; jnKeyCol; j++){ char *zCol; assert( pIdx->aiColumn[j]>=0 ); zCol = pTab->aCol[pIdx->aiColumn[j]].zCnName; if( j ) sqlite3_str_append(&errMsg, ", ", 2); sqlite3_str_appendall(&errMsg, pTab->zName); sqlite3_str_append(&errMsg, ".", 1); sqlite3_str_appendall(&errMsg, zCol); } } zErr = sqlite3StrAccumFinish(&errMsg); sqlite3HaltConstraint(pParse, IsPrimaryKeyIndex(pIdx) ? SQLITE_CONSTRAINT_PRIMARYKEY : SQLITE_CONSTRAINT_UNIQUE, onError, zErr, P4_DYNAMIC, P5_ConstraintUnique); } /* ** Code an OP_Halt due to non-unique rowid. */ SQLITE_PRIVATE void sqlite3RowidConstraint( Parse *pParse, /* Parsing context */ int onError, /* Conflict resolution algorithm */ Table *pTab /* The table with the non-unique rowid */ ){ char *zMsg; int rc; if( pTab->iPKey>=0 ){ zMsg = sqlite3MPrintf(pParse->db, "%s.%s", pTab->zName, pTab->aCol[pTab->iPKey].zCnName); rc = SQLITE_CONSTRAINT_PRIMARYKEY; }else{ zMsg = sqlite3MPrintf(pParse->db, "%s.rowid", pTab->zName); rc = SQLITE_CONSTRAINT_ROWID; } sqlite3HaltConstraint(pParse, rc, onError, zMsg, P4_DYNAMIC, P5_ConstraintUnique); } /* ** Check to see if pIndex uses the collating sequence pColl. Return ** true if it does and false if it does not. */ #ifndef SQLITE_OMIT_REINDEX static int collationMatch(const char *zColl, Index *pIndex){ int i; assert( zColl!=0 ); for(i=0; inColumn; i++){ const char *z = pIndex->azColl[i]; assert( z!=0 || pIndex->aiColumn[i]<0 ); if( pIndex->aiColumn[i]>=0 && 0==sqlite3StrICmp(z, zColl) ){ return 1; } } return 0; } #endif /* ** Recompute all indices of pTab that use the collating sequence pColl. ** If pColl==0 then recompute all indices of pTab. */ #ifndef SQLITE_OMIT_REINDEX static void reindexTable(Parse *pParse, Table *pTab, char const *zColl){ if( !IsVirtual(pTab) ){ Index *pIndex; /* An index associated with pTab */ for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ if( zColl==0 || collationMatch(zColl, pIndex) ){ int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3RefillIndex(pParse, pIndex, -1); } } } } #endif /* ** Recompute all indices of all tables in all databases where the ** indices use the collating sequence pColl. If pColl==0 then recompute ** all indices everywhere. */ #ifndef SQLITE_OMIT_REINDEX static void reindexDatabases(Parse *pParse, char const *zColl){ Db *pDb; /* A single database */ int iDb; /* The database index number */ sqlite3 *db = pParse->db; /* The database connection */ HashElem *k; /* For looping over tables in pDb */ Table *pTab; /* A table in the database */ assert( sqlite3BtreeHoldsAllMutexes(db) ); /* Needed for schema access */ for(iDb=0, pDb=db->aDb; iDbnDb; iDb++, pDb++){ assert( pDb!=0 ); for(k=sqliteHashFirst(&pDb->pSchema->tblHash); k; k=sqliteHashNext(k)){ pTab = (Table*)sqliteHashData(k); reindexTable(pParse, pTab, zColl); } } } #endif /* ** Generate code for the REINDEX command. ** ** REINDEX -- 1 ** REINDEX -- 2 ** REINDEX ?.? -- 3 ** REINDEX ?.? -- 4 ** ** Form 1 causes all indices in all attached databases to be rebuilt. ** Form 2 rebuilds all indices in all databases that use the named ** collating function. Forms 3 and 4 rebuild the named index or all ** indices associated with the named table. */ #ifndef SQLITE_OMIT_REINDEX SQLITE_PRIVATE void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){ CollSeq *pColl; /* Collating sequence to be reindexed, or NULL */ char *z; /* Name of a table or index */ const char *zDb; /* Name of the database */ Table *pTab; /* A table in the database */ Index *pIndex; /* An index associated with pTab */ int iDb; /* The database index number */ sqlite3 *db = pParse->db; /* The database connection */ Token *pObjName; /* Name of the table or index to be reindexed */ /* Read the database schema. If an error occurs, leave an error message ** and code in pParse and return NULL. */ if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ return; } if( pName1==0 ){ reindexDatabases(pParse, 0); return; }else if( NEVER(pName2==0) || pName2->z==0 ){ char *zColl; assert( pName1->z ); zColl = sqlite3NameFromToken(pParse->db, pName1); if( !zColl ) return; pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); if( pColl ){ reindexDatabases(pParse, zColl); sqlite3DbFree(db, zColl); return; } sqlite3DbFree(db, zColl); } iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pObjName); if( iDb<0 ) return; z = sqlite3NameFromToken(db, pObjName); if( z==0 ) return; zDb = db->aDb[iDb].zDbSName; pTab = sqlite3FindTable(db, z, zDb); if( pTab ){ reindexTable(pParse, pTab, 0); sqlite3DbFree(db, z); return; } pIndex = sqlite3FindIndex(db, z, zDb); sqlite3DbFree(db, z); if( pIndex ){ sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3RefillIndex(pParse, pIndex, -1); return; } sqlite3ErrorMsg(pParse, "unable to identify the object to be reindexed"); } #endif /* ** Return a KeyInfo structure that is appropriate for the given Index. ** ** The caller should invoke sqlite3KeyInfoUnref() on the returned object ** when it has finished using it. */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoOfIndex(Parse *pParse, Index *pIdx){ int i; int nCol = pIdx->nColumn; int nKey = pIdx->nKeyCol; KeyInfo *pKey; if( pParse->nErr ) return 0; if( pIdx->uniqNotNull ){ pKey = sqlite3KeyInfoAlloc(pParse->db, nKey, nCol-nKey); }else{ pKey = sqlite3KeyInfoAlloc(pParse->db, nCol, 0); } if( pKey ){ assert( sqlite3KeyInfoIsWriteable(pKey) ); for(i=0; iazColl[i]; pKey->aColl[i] = zColl==sqlite3StrBINARY ? 0 : sqlite3LocateCollSeq(pParse, zColl); pKey->aSortFlags[i] = pIdx->aSortOrder[i]; assert( 0==(pKey->aSortFlags[i] & KEYINFO_ORDER_BIGNULL) ); } if( pParse->nErr ){ assert( pParse->rc==SQLITE_ERROR_MISSING_COLLSEQ ); if( pIdx->bNoQuery==0 ){ /* Deactivate the index because it contains an unknown collating ** sequence. The only way to reactive the index is to reload the ** schema. Adding the missing collating sequence later does not ** reactive the index. The application had the chance to register ** the missing index using the collation-needed callback. For ** simplicity, SQLite will not give the application a second chance. */ pIdx->bNoQuery = 1; pParse->rc = SQLITE_ERROR_RETRY; } sqlite3KeyInfoUnref(pKey); pKey = 0; } } return pKey; } #ifndef SQLITE_OMIT_CTE /* ** Create a new CTE object */ SQLITE_PRIVATE Cte *sqlite3CteNew( Parse *pParse, /* Parsing context */ Token *pName, /* Name of the common-table */ ExprList *pArglist, /* Optional column name list for the table */ Select *pQuery, /* Query used to initialize the table */ u8 eM10d /* The MATERIALIZED flag */ ){ Cte *pNew; sqlite3 *db = pParse->db; pNew = sqlite3DbMallocZero(db, sizeof(*pNew)); assert( pNew!=0 || db->mallocFailed ); if( db->mallocFailed ){ sqlite3ExprListDelete(db, pArglist); sqlite3SelectDelete(db, pQuery); }else{ pNew->pSelect = pQuery; pNew->pCols = pArglist; pNew->zName = sqlite3NameFromToken(pParse->db, pName); pNew->eM10d = eM10d; } return pNew; } /* ** Clear information from a Cte object, but do not deallocate storage ** for the object itself. */ static void cteClear(sqlite3 *db, Cte *pCte){ assert( pCte!=0 ); sqlite3ExprListDelete(db, pCte->pCols); sqlite3SelectDelete(db, pCte->pSelect); sqlite3DbFree(db, pCte->zName); } /* ** Free the contents of the CTE object passed as the second argument. */ SQLITE_PRIVATE void sqlite3CteDelete(sqlite3 *db, Cte *pCte){ assert( pCte!=0 ); cteClear(db, pCte); sqlite3DbFree(db, pCte); } /* ** This routine is invoked once per CTE by the parser while parsing a ** WITH clause. The CTE described by teh third argument is added to ** the WITH clause of the second argument. If the second argument is ** NULL, then a new WITH argument is created. */ SQLITE_PRIVATE With *sqlite3WithAdd( Parse *pParse, /* Parsing context */ With *pWith, /* Existing WITH clause, or NULL */ Cte *pCte /* CTE to add to the WITH clause */ ){ sqlite3 *db = pParse->db; With *pNew; char *zName; if( pCte==0 ){ return pWith; } /* Check that the CTE name is unique within this WITH clause. If ** not, store an error in the Parse structure. */ zName = pCte->zName; if( zName && pWith ){ int i; for(i=0; inCte; i++){ if( sqlite3StrICmp(zName, pWith->a[i].zName)==0 ){ sqlite3ErrorMsg(pParse, "duplicate WITH table name: %s", zName); } } } if( pWith ){ sqlite3_int64 nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); pNew = sqlite3DbRealloc(db, pWith, nByte); }else{ pNew = sqlite3DbMallocZero(db, sizeof(*pWith)); } assert( (pNew!=0 && zName!=0) || db->mallocFailed ); if( db->mallocFailed ){ sqlite3CteDelete(db, pCte); pNew = pWith; }else{ pNew->a[pNew->nCte++] = *pCte; sqlite3DbFree(db, pCte); } return pNew; } /* ** Free the contents of the With object passed as the second argument. */ SQLITE_PRIVATE void sqlite3WithDelete(sqlite3 *db, With *pWith){ if( pWith ){ int i; for(i=0; inCte; i++){ cteClear(db, &pWith->a[i]); } sqlite3DbFree(db, pWith); } } #endif /* !defined(SQLITE_OMIT_CTE) */ /************** End of build.c ***********************************************/ /************** Begin file callback.c ****************************************/ /* ** 2005 May 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains functions used to access the internal hash tables ** of user defined functions and collation sequences. */ /* #include "sqliteInt.h" */ /* ** Invoke the 'collation needed' callback to request a collation sequence ** in the encoding enc of name zName, length nName. */ static void callCollNeeded(sqlite3 *db, int enc, const char *zName){ assert( !db->xCollNeeded || !db->xCollNeeded16 ); if( db->xCollNeeded ){ char *zExternal = sqlite3DbStrDup(db, zName); if( !zExternal ) return; db->xCollNeeded(db->pCollNeededArg, db, enc, zExternal); sqlite3DbFree(db, zExternal); } #ifndef SQLITE_OMIT_UTF16 if( db->xCollNeeded16 ){ char const *zExternal; sqlite3_value *pTmp = sqlite3ValueNew(db); sqlite3ValueSetStr(pTmp, -1, zName, SQLITE_UTF8, SQLITE_STATIC); zExternal = sqlite3ValueText(pTmp, SQLITE_UTF16NATIVE); if( zExternal ){ db->xCollNeeded16(db->pCollNeededArg, db, (int)ENC(db), zExternal); } sqlite3ValueFree(pTmp); } #endif } /* ** This routine is called if the collation factory fails to deliver a ** collation function in the best encoding but there may be other versions ** of this collation function (for other text encodings) available. Use one ** of these instead if they exist. Avoid a UTF-8 <-> UTF-16 conversion if ** possible. */ static int synthCollSeq(sqlite3 *db, CollSeq *pColl){ CollSeq *pColl2; char *z = pColl->zName; int i; static const u8 aEnc[] = { SQLITE_UTF16BE, SQLITE_UTF16LE, SQLITE_UTF8 }; for(i=0; i<3; i++){ pColl2 = sqlite3FindCollSeq(db, aEnc[i], z, 0); if( pColl2->xCmp!=0 ){ memcpy(pColl, pColl2, sizeof(CollSeq)); pColl->xDel = 0; /* Do not copy the destructor */ return SQLITE_OK; } } return SQLITE_ERROR; } /* ** This routine is called on a collation sequence before it is used to ** check that it is defined. An undefined collation sequence exists when ** a database is loaded that contains references to collation sequences ** that have not been defined by sqlite3_create_collation() etc. ** ** If required, this routine calls the 'collation needed' callback to ** request a definition of the collating sequence. If this doesn't work, ** an equivalent collating sequence that uses a text encoding different ** from the main database is substituted, if one is available. */ SQLITE_PRIVATE int sqlite3CheckCollSeq(Parse *pParse, CollSeq *pColl){ if( pColl && pColl->xCmp==0 ){ const char *zName = pColl->zName; sqlite3 *db = pParse->db; CollSeq *p = sqlite3GetCollSeq(pParse, ENC(db), pColl, zName); if( !p ){ return SQLITE_ERROR; } assert( p==pColl ); } return SQLITE_OK; } /* ** Locate and return an entry from the db.aCollSeq hash table. If the entry ** specified by zName and nName is not found and parameter 'create' is ** true, then create a new entry. Otherwise return NULL. ** ** Each pointer stored in the sqlite3.aCollSeq hash table contains an ** array of three CollSeq structures. The first is the collation sequence ** preferred for UTF-8, the second UTF-16le, and the third UTF-16be. ** ** Stored immediately after the three collation sequences is a copy of ** the collation sequence name. A pointer to this string is stored in ** each collation sequence structure. */ static CollSeq *findCollSeqEntry( sqlite3 *db, /* Database connection */ const char *zName, /* Name of the collating sequence */ int create /* Create a new entry if true */ ){ CollSeq *pColl; pColl = sqlite3HashFind(&db->aCollSeq, zName); if( 0==pColl && create ){ int nName = sqlite3Strlen30(zName) + 1; pColl = sqlite3DbMallocZero(db, 3*sizeof(*pColl) + nName); if( pColl ){ CollSeq *pDel = 0; pColl[0].zName = (char*)&pColl[3]; pColl[0].enc = SQLITE_UTF8; pColl[1].zName = (char*)&pColl[3]; pColl[1].enc = SQLITE_UTF16LE; pColl[2].zName = (char*)&pColl[3]; pColl[2].enc = SQLITE_UTF16BE; memcpy(pColl[0].zName, zName, nName); pDel = sqlite3HashInsert(&db->aCollSeq, pColl[0].zName, pColl); /* If a malloc() failure occurred in sqlite3HashInsert(), it will ** return the pColl pointer to be deleted (because it wasn't added ** to the hash table). */ assert( pDel==0 || pDel==pColl ); if( pDel!=0 ){ sqlite3OomFault(db); sqlite3DbFree(db, pDel); pColl = 0; } } } return pColl; } /* ** Parameter zName points to a UTF-8 encoded string nName bytes long. ** Return the CollSeq* pointer for the collation sequence named zName ** for the encoding 'enc' from the database 'db'. ** ** If the entry specified is not found and 'create' is true, then create a ** new entry. Otherwise return NULL. ** ** A separate function sqlite3LocateCollSeq() is a wrapper around ** this routine. sqlite3LocateCollSeq() invokes the collation factory ** if necessary and generates an error message if the collating sequence ** cannot be found. ** ** See also: sqlite3LocateCollSeq(), sqlite3GetCollSeq() */ SQLITE_PRIVATE CollSeq *sqlite3FindCollSeq( sqlite3 *db, /* Database connection to search */ u8 enc, /* Desired text encoding */ const char *zName, /* Name of the collating sequence. Might be NULL */ int create /* True to create CollSeq if doesn't already exist */ ){ CollSeq *pColl; assert( SQLITE_UTF8==1 && SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); assert( enc>=SQLITE_UTF8 && enc<=SQLITE_UTF16BE ); if( zName ){ pColl = findCollSeqEntry(db, zName, create); if( pColl ) pColl += enc-1; }else{ pColl = db->pDfltColl; } return pColl; } /* ** Change the text encoding for a database connection. This means that ** the pDfltColl must change as well. */ SQLITE_PRIVATE void sqlite3SetTextEncoding(sqlite3 *db, u8 enc){ assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); db->enc = enc; /* EVIDENCE-OF: R-08308-17224 The default collating function for all ** strings is BINARY. */ db->pDfltColl = sqlite3FindCollSeq(db, enc, sqlite3StrBINARY, 0); } /* ** This function is responsible for invoking the collation factory callback ** or substituting a collation sequence of a different encoding when the ** requested collation sequence is not available in the desired encoding. ** ** If it is not NULL, then pColl must point to the database native encoding ** collation sequence with name zName, length nName. ** ** The return value is either the collation sequence to be used in database ** db for collation type name zName, length nName, or NULL, if no collation ** sequence can be found. If no collation is found, leave an error message. ** ** See also: sqlite3LocateCollSeq(), sqlite3FindCollSeq() */ SQLITE_PRIVATE CollSeq *sqlite3GetCollSeq( Parse *pParse, /* Parsing context */ u8 enc, /* The desired encoding for the collating sequence */ CollSeq *pColl, /* Collating sequence with native encoding, or NULL */ const char *zName /* Collating sequence name */ ){ CollSeq *p; sqlite3 *db = pParse->db; p = pColl; if( !p ){ p = sqlite3FindCollSeq(db, enc, zName, 0); } if( !p || !p->xCmp ){ /* No collation sequence of this type for this encoding is registered. ** Call the collation factory to see if it can supply us with one. */ callCollNeeded(db, enc, zName); p = sqlite3FindCollSeq(db, enc, zName, 0); } if( p && !p->xCmp && synthCollSeq(db, p) ){ p = 0; } assert( !p || p->xCmp ); if( p==0 ){ sqlite3ErrorMsg(pParse, "no such collation sequence: %s", zName); pParse->rc = SQLITE_ERROR_MISSING_COLLSEQ; } return p; } /* ** This function returns the collation sequence for database native text ** encoding identified by the string zName. ** ** If the requested collation sequence is not available, or not available ** in the database native encoding, the collation factory is invoked to ** request it. If the collation factory does not supply such a sequence, ** and the sequence is available in another text encoding, then that is ** returned instead. ** ** If no versions of the requested collations sequence are available, or ** another error occurs, NULL is returned and an error message written into ** pParse. ** ** This routine is a wrapper around sqlite3FindCollSeq(). This routine ** invokes the collation factory if the named collation cannot be found ** and generates an error message. ** ** See also: sqlite3FindCollSeq(), sqlite3GetCollSeq() */ SQLITE_PRIVATE CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char *zName){ sqlite3 *db = pParse->db; u8 enc = ENC(db); u8 initbusy = db->init.busy; CollSeq *pColl; pColl = sqlite3FindCollSeq(db, enc, zName, initbusy); if( !initbusy && (!pColl || !pColl->xCmp) ){ pColl = sqlite3GetCollSeq(pParse, enc, pColl, zName); } return pColl; } /* During the search for the best function definition, this procedure ** is called to test how well the function passed as the first argument ** matches the request for a function with nArg arguments in a system ** that uses encoding enc. The value returned indicates how well the ** request is matched. A higher value indicates a better match. ** ** If nArg is -1 that means to only return a match (non-zero) if p->nArg ** is also -1. In other words, we are searching for a function that ** takes a variable number of arguments. ** ** If nArg is -2 that means that we are searching for any function ** regardless of the number of arguments it uses, so return a positive ** match score for any ** ** The returned value is always between 0 and 6, as follows: ** ** 0: Not a match. ** 1: UTF8/16 conversion required and function takes any number of arguments. ** 2: UTF16 byte order change required and function takes any number of args. ** 3: encoding matches and function takes any number of arguments ** 4: UTF8/16 conversion required - argument count matches exactly ** 5: UTF16 byte order conversion required - argument count matches exactly ** 6: Perfect match: encoding and argument count match exactly. ** ** If nArg==(-2) then any function with a non-null xSFunc is ** a perfect match and any function with xSFunc NULL is ** a non-match. */ #define FUNC_PERFECT_MATCH 6 /* The score for a perfect match */ static int matchQuality( FuncDef *p, /* The function we are evaluating for match quality */ int nArg, /* Desired number of arguments. (-1)==any */ u8 enc /* Desired text encoding */ ){ int match; assert( p->nArg>=-1 ); /* Wrong number of arguments means "no match" */ if( p->nArg!=nArg ){ if( nArg==(-2) ) return (p->xSFunc==0) ? 0 : FUNC_PERFECT_MATCH; if( p->nArg>=0 ) return 0; } /* Give a better score to a function with a specific number of arguments ** than to function that accepts any number of arguments. */ if( p->nArg==nArg ){ match = 4; }else{ match = 1; } /* Bonus points if the text encoding matches */ if( enc==(p->funcFlags & SQLITE_FUNC_ENCMASK) ){ match += 2; /* Exact encoding match */ }else if( (enc & p->funcFlags & 2)!=0 ){ match += 1; /* Both are UTF16, but with different byte orders */ } return match; } /* ** Search a FuncDefHash for a function with the given name. Return ** a pointer to the matching FuncDef if found, or 0 if there is no match. */ SQLITE_PRIVATE FuncDef *sqlite3FunctionSearch( int h, /* Hash of the name */ const char *zFunc /* Name of function */ ){ FuncDef *p; for(p=sqlite3BuiltinFunctions.a[h]; p; p=p->u.pHash){ assert( p->funcFlags & SQLITE_FUNC_BUILTIN ); if( sqlite3StrICmp(p->zName, zFunc)==0 ){ return p; } } return 0; } /* ** Insert a new FuncDef into a FuncDefHash hash table. */ SQLITE_PRIVATE void sqlite3InsertBuiltinFuncs( FuncDef *aDef, /* List of global functions to be inserted */ int nDef /* Length of the apDef[] list */ ){ int i; for(i=0; ipNext!=&aDef[i] ); aDef[i].pNext = pOther->pNext; pOther->pNext = &aDef[i]; }else{ aDef[i].pNext = 0; aDef[i].u.pHash = sqlite3BuiltinFunctions.a[h]; sqlite3BuiltinFunctions.a[h] = &aDef[i]; } } } /* ** Locate a user function given a name, a number of arguments and a flag ** indicating whether the function prefers UTF-16 over UTF-8. Return a ** pointer to the FuncDef structure that defines that function, or return ** NULL if the function does not exist. ** ** If the createFlag argument is true, then a new (blank) FuncDef ** structure is created and liked into the "db" structure if a ** no matching function previously existed. ** ** If nArg is -2, then the first valid function found is returned. A ** function is valid if xSFunc is non-zero. The nArg==(-2) ** case is used to see if zName is a valid function name for some number ** of arguments. If nArg is -2, then createFlag must be 0. ** ** If createFlag is false, then a function with the required name and ** number of arguments may be returned even if the eTextRep flag does not ** match that requested. */ SQLITE_PRIVATE FuncDef *sqlite3FindFunction( sqlite3 *db, /* An open database */ const char *zName, /* Name of the function. zero-terminated */ int nArg, /* Number of arguments. -1 means any number */ u8 enc, /* Preferred text encoding */ u8 createFlag /* Create new entry if true and does not otherwise exist */ ){ FuncDef *p; /* Iterator variable */ FuncDef *pBest = 0; /* Best match found so far */ int bestScore = 0; /* Score of best match */ int h; /* Hash value */ int nName; /* Length of the name */ assert( nArg>=(-2) ); assert( nArg>=(-1) || createFlag==0 ); nName = sqlite3Strlen30(zName); /* First search for a match amongst the application-defined functions. */ p = (FuncDef*)sqlite3HashFind(&db->aFunc, zName); while( p ){ int score = matchQuality(p, nArg, enc); if( score>bestScore ){ pBest = p; bestScore = score; } p = p->pNext; } /* If no match is found, search the built-in functions. ** ** If the DBFLAG_PreferBuiltin flag is set, then search the built-in ** functions even if a prior app-defined function was found. And give ** priority to built-in functions. ** ** Except, if createFlag is true, that means that we are trying to ** install a new function. Whatever FuncDef structure is returned it will ** have fields overwritten with new information appropriate for the ** new function. But the FuncDefs for built-in functions are read-only. ** So we must not search for built-ins when creating a new function. */ if( !createFlag && (pBest==0 || (db->mDbFlags & DBFLAG_PreferBuiltin)!=0) ){ bestScore = 0; h = SQLITE_FUNC_HASH(sqlite3UpperToLower[(u8)zName[0]], nName); p = sqlite3FunctionSearch(h, zName); while( p ){ int score = matchQuality(p, nArg, enc); if( score>bestScore ){ pBest = p; bestScore = score; } p = p->pNext; } } /* If the createFlag parameter is true and the search did not reveal an ** exact match for the name, number of arguments and encoding, then add a ** new entry to the hash table and return it. */ if( createFlag && bestScorezName = (const char*)&pBest[1]; pBest->nArg = (u16)nArg; pBest->funcFlags = enc; memcpy((char*)&pBest[1], zName, nName+1); for(z=(u8*)pBest->zName; *z; z++) *z = sqlite3UpperToLower[*z]; pOther = (FuncDef*)sqlite3HashInsert(&db->aFunc, pBest->zName, pBest); if( pOther==pBest ){ sqlite3DbFree(db, pBest); sqlite3OomFault(db); return 0; }else{ pBest->pNext = pOther; } } if( pBest && (pBest->xSFunc || createFlag) ){ return pBest; } return 0; } /* ** Free all resources held by the schema structure. The void* argument points ** at a Schema struct. This function does not call sqlite3DbFree(db, ) on the ** pointer itself, it just cleans up subsidiary resources (i.e. the contents ** of the schema hash tables). ** ** The Schema.cache_size variable is not cleared. */ SQLITE_PRIVATE void sqlite3SchemaClear(void *p){ Hash temp1; Hash temp2; HashElem *pElem; Schema *pSchema = (Schema *)p; temp1 = pSchema->tblHash; temp2 = pSchema->trigHash; sqlite3HashInit(&pSchema->trigHash); sqlite3HashClear(&pSchema->idxHash); for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem)); } sqlite3HashClear(&temp2); sqlite3HashInit(&pSchema->tblHash); for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){ Table *pTab = sqliteHashData(pElem); sqlite3DeleteTable(0, pTab); } sqlite3HashClear(&temp1); sqlite3HashClear(&pSchema->fkeyHash); pSchema->pSeqTab = 0; if( pSchema->schemaFlags & DB_SchemaLoaded ){ pSchema->iGeneration++; } pSchema->schemaFlags &= ~(DB_SchemaLoaded|DB_ResetWanted); } /* ** Find and return the schema associated with a BTree. Create ** a new one if necessary. */ SQLITE_PRIVATE Schema *sqlite3SchemaGet(sqlite3 *db, Btree *pBt){ Schema * p; if( pBt ){ p = (Schema *)sqlite3BtreeSchema(pBt, sizeof(Schema), sqlite3SchemaClear); }else{ p = (Schema *)sqlite3DbMallocZero(0, sizeof(Schema)); } if( !p ){ sqlite3OomFault(db); }else if ( 0==p->file_format ){ sqlite3HashInit(&p->tblHash); sqlite3HashInit(&p->idxHash); sqlite3HashInit(&p->trigHash); sqlite3HashInit(&p->fkeyHash); p->enc = SQLITE_UTF8; } return p; } /************** End of callback.c ********************************************/ /************** Begin file delete.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** in order to generate code for DELETE FROM statements. */ /* #include "sqliteInt.h" */ /* ** While a SrcList can in general represent multiple tables and subqueries ** (as in the FROM clause of a SELECT statement) in this case it contains ** the name of a single table, as one might find in an INSERT, DELETE, ** or UPDATE statement. Look up that table in the symbol table and ** return a pointer. Set an error message and return NULL if the table ** name is not found or if any other error occurs. ** ** The following fields are initialized appropriate in pSrc: ** ** pSrc->a[0].pTab Pointer to the Table object ** pSrc->a[0].pIndex Pointer to the INDEXED BY index, if there is one ** */ SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){ SrcItem *pItem = pSrc->a; Table *pTab; assert( pItem && pSrc->nSrc>=1 ); pTab = sqlite3LocateTableItem(pParse, 0, pItem); sqlite3DeleteTable(pParse->db, pItem->pTab); pItem->pTab = pTab; if( pTab ){ pTab->nTabRef++; if( pItem->fg.isIndexedBy && sqlite3IndexedByLookup(pParse, pItem) ){ pTab = 0; } } return pTab; } /* Generate byte-code that will report the number of rows modified ** by a DELETE, INSERT, or UPDATE statement. */ SQLITE_PRIVATE void sqlite3CodeChangeCount(Vdbe *v, int regCounter, const char *zColName){ sqlite3VdbeAddOp0(v, OP_FkCheck); sqlite3VdbeAddOp2(v, OP_ResultRow, regCounter, 1); sqlite3VdbeSetNumCols(v, 1); sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zColName, SQLITE_STATIC); } /* Return true if table pTab is read-only. ** ** A table is read-only if any of the following are true: ** ** 1) It is a virtual table and no implementation of the xUpdate method ** has been provided ** ** 2) It is a system table (i.e. sqlite_schema), this call is not ** part of a nested parse and writable_schema pragma has not ** been specified ** ** 3) The table is a shadow table, the database connection is in ** defensive mode, and the current sqlite3_prepare() ** is for a top-level SQL statement. */ static int tabIsReadOnly(Parse *pParse, Table *pTab){ sqlite3 *db; if( IsVirtual(pTab) ){ return sqlite3GetVTable(pParse->db, pTab)->pMod->pModule->xUpdate==0; } if( (pTab->tabFlags & (TF_Readonly|TF_Shadow))==0 ) return 0; db = pParse->db; if( (pTab->tabFlags & TF_Readonly)!=0 ){ return sqlite3WritableSchema(db)==0 && pParse->nested==0; } assert( pTab->tabFlags & TF_Shadow ); return sqlite3ReadOnlyShadowTables(db); } /* ** Check to make sure the given table is writable. If it is not ** writable, generate an error message and return 1. If it is ** writable return 0; */ SQLITE_PRIVATE int sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk){ if( tabIsReadOnly(pParse, pTab) ){ sqlite3ErrorMsg(pParse, "table %s may not be modified", pTab->zName); return 1; } #ifndef SQLITE_OMIT_VIEW if( !viewOk && IsView(pTab) ){ sqlite3ErrorMsg(pParse,"cannot modify %s because it is a view",pTab->zName); return 1; } #endif return 0; } #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) /* ** Evaluate a view and store its result in an ephemeral table. The ** pWhere argument is an optional WHERE clause that restricts the ** set of rows in the view that are to be added to the ephemeral table. */ SQLITE_PRIVATE void sqlite3MaterializeView( Parse *pParse, /* Parsing context */ Table *pView, /* View definition */ Expr *pWhere, /* Optional WHERE clause to be added */ ExprList *pOrderBy, /* Optional ORDER BY clause */ Expr *pLimit, /* Optional LIMIT clause */ int iCur /* Cursor number for ephemeral table */ ){ SelectDest dest; Select *pSel; SrcList *pFrom; sqlite3 *db = pParse->db; int iDb = sqlite3SchemaToIndex(db, pView->pSchema); pWhere = sqlite3ExprDup(db, pWhere, 0); pFrom = sqlite3SrcListAppend(pParse, 0, 0, 0); if( pFrom ){ assert( pFrom->nSrc==1 ); pFrom->a[0].zName = sqlite3DbStrDup(db, pView->zName); pFrom->a[0].zDatabase = sqlite3DbStrDup(db, db->aDb[iDb].zDbSName); assert( pFrom->a[0].pOn==0 ); assert( pFrom->a[0].pUsing==0 ); } pSel = sqlite3SelectNew(pParse, 0, pFrom, pWhere, 0, 0, pOrderBy, SF_IncludeHidden, pLimit); sqlite3SelectDestInit(&dest, SRT_EphemTab, iCur); sqlite3Select(pParse, pSel, &dest); sqlite3SelectDelete(db, pSel); } #endif /* !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) */ #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) /* ** Generate an expression tree to implement the WHERE, ORDER BY, ** and LIMIT/OFFSET portion of DELETE and UPDATE statements. ** ** DELETE FROM table_wxyz WHERE a<5 ORDER BY a LIMIT 1; ** \__________________________/ ** pLimitWhere (pInClause) */ SQLITE_PRIVATE Expr *sqlite3LimitWhere( Parse *pParse, /* The parser context */ SrcList *pSrc, /* the FROM clause -- which tables to scan */ Expr *pWhere, /* The WHERE clause. May be null */ ExprList *pOrderBy, /* The ORDER BY clause. May be null */ Expr *pLimit, /* The LIMIT clause. May be null */ char *zStmtType /* Either DELETE or UPDATE. For err msgs. */ ){ sqlite3 *db = pParse->db; Expr *pLhs = NULL; /* LHS of IN(SELECT...) operator */ Expr *pInClause = NULL; /* WHERE rowid IN ( select ) */ ExprList *pEList = NULL; /* Expression list contaning only pSelectRowid */ SrcList *pSelectSrc = NULL; /* SELECT rowid FROM x ... (dup of pSrc) */ Select *pSelect = NULL; /* Complete SELECT tree */ Table *pTab; /* Check that there isn't an ORDER BY without a LIMIT clause. */ if( pOrderBy && pLimit==0 ) { sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on %s", zStmtType); sqlite3ExprDelete(pParse->db, pWhere); sqlite3ExprListDelete(pParse->db, pOrderBy); return 0; } /* We only need to generate a select expression if there ** is a limit/offset term to enforce. */ if( pLimit == 0 ) { return pWhere; } /* Generate a select expression tree to enforce the limit/offset ** term for the DELETE or UPDATE statement. For example: ** DELETE FROM table_a WHERE col1=1 ORDER BY col2 LIMIT 1 OFFSET 1 ** becomes: ** DELETE FROM table_a WHERE rowid IN ( ** SELECT rowid FROM table_a WHERE col1=1 ORDER BY col2 LIMIT 1 OFFSET 1 ** ); */ pTab = pSrc->a[0].pTab; if( HasRowid(pTab) ){ pLhs = sqlite3PExpr(pParse, TK_ROW, 0, 0); pEList = sqlite3ExprListAppend( pParse, 0, sqlite3PExpr(pParse, TK_ROW, 0, 0) ); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); if( pPk->nKeyCol==1 ){ const char *zName = pTab->aCol[pPk->aiColumn[0]].zCnName; pLhs = sqlite3Expr(db, TK_ID, zName); pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_ID, zName)); }else{ int i; for(i=0; inKeyCol; i++){ Expr *p = sqlite3Expr(db, TK_ID, pTab->aCol[pPk->aiColumn[i]].zCnName); pEList = sqlite3ExprListAppend(pParse, pEList, p); } pLhs = sqlite3PExpr(pParse, TK_VECTOR, 0, 0); if( pLhs ){ pLhs->x.pList = sqlite3ExprListDup(db, pEList, 0); } } } /* duplicate the FROM clause as it is needed by both the DELETE/UPDATE tree ** and the SELECT subtree. */ pSrc->a[0].pTab = 0; pSelectSrc = sqlite3SrcListDup(db, pSrc, 0); pSrc->a[0].pTab = pTab; if( pSrc->a[0].fg.isIndexedBy ){ assert( pSrc->a[0].fg.isCte==0 ); pSrc->a[0].u2.pIBIndex = 0; pSrc->a[0].fg.isIndexedBy = 0; sqlite3DbFree(db, pSrc->a[0].u1.zIndexedBy); }else if( pSrc->a[0].fg.isCte ){ pSrc->a[0].u2.pCteUse->nUse++; } /* generate the SELECT expression tree. */ pSelect = sqlite3SelectNew(pParse, pEList, pSelectSrc, pWhere, 0 ,0, pOrderBy,0,pLimit ); /* now generate the new WHERE rowid IN clause for the DELETE/UDPATE */ pInClause = sqlite3PExpr(pParse, TK_IN, pLhs, 0); sqlite3PExprAddSelect(pParse, pInClause, pSelect); return pInClause; } #endif /* defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) */ /* && !defined(SQLITE_OMIT_SUBQUERY) */ /* ** Generate code for a DELETE FROM statement. ** ** DELETE FROM table_wxyz WHERE a<5 AND b NOT NULL; ** \________/ \________________/ ** pTabList pWhere */ SQLITE_PRIVATE void sqlite3DeleteFrom( Parse *pParse, /* The parser context */ SrcList *pTabList, /* The table from which we should delete things */ Expr *pWhere, /* The WHERE clause. May be null */ ExprList *pOrderBy, /* ORDER BY clause. May be null */ Expr *pLimit /* LIMIT clause. May be null */ ){ Vdbe *v; /* The virtual database engine */ Table *pTab; /* The table from which records will be deleted */ int i; /* Loop counter */ WhereInfo *pWInfo; /* Information about the WHERE clause */ Index *pIdx; /* For looping over indices of the table */ int iTabCur; /* Cursor number for the table */ int iDataCur = 0; /* VDBE cursor for the canonical data source */ int iIdxCur = 0; /* Cursor number of the first index */ int nIdx; /* Number of indices */ sqlite3 *db; /* Main database structure */ AuthContext sContext; /* Authorization context */ NameContext sNC; /* Name context to resolve expressions in */ int iDb; /* Database number */ int memCnt = 0; /* Memory cell used for change counting */ int rcauth; /* Value returned by authorization callback */ int eOnePass; /* ONEPASS_OFF or _SINGLE or _MULTI */ int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ u8 *aToOpen = 0; /* Open cursor iTabCur+j if aToOpen[j] is true */ Index *pPk; /* The PRIMARY KEY index on the table */ int iPk = 0; /* First of nPk registers holding PRIMARY KEY value */ i16 nPk = 1; /* Number of columns in the PRIMARY KEY */ int iKey; /* Memory cell holding key of row to be deleted */ i16 nKey; /* Number of memory cells in the row key */ int iEphCur = 0; /* Ephemeral table holding all primary key values */ int iRowSet = 0; /* Register for rowset of rows to delete */ int addrBypass = 0; /* Address of jump over the delete logic */ int addrLoop = 0; /* Top of the delete loop */ int addrEphOpen = 0; /* Instruction to open the Ephemeral table */ int bComplex; /* True if there are triggers or FKs or ** subqueries in the WHERE clause */ #ifndef SQLITE_OMIT_TRIGGER int isView; /* True if attempting to delete from a view */ Trigger *pTrigger; /* List of table triggers, if required */ #endif memset(&sContext, 0, sizeof(sContext)); db = pParse->db; assert( db->pParse==pParse ); if( pParse->nErr ){ goto delete_from_cleanup; } assert( db->mallocFailed==0 ); assert( pTabList->nSrc==1 ); /* Locate the table which we want to delete. This table has to be ** put in an SrcList structure because some of the subroutines we ** will be calling are designed to work with multiple tables and expect ** an SrcList* parameter instead of just a Table* parameter. */ pTab = sqlite3SrcListLookup(pParse, pTabList); if( pTab==0 ) goto delete_from_cleanup; /* Figure out if we have any triggers and if the table being ** deleted from is a view */ #ifndef SQLITE_OMIT_TRIGGER pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); isView = IsView(pTab); #else # define pTrigger 0 # define isView 0 #endif bComplex = pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0); #ifdef SQLITE_OMIT_VIEW # undef isView # define isView 0 #endif #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( !isView ){ pWhere = sqlite3LimitWhere( pParse, pTabList, pWhere, pOrderBy, pLimit, "DELETE" ); pOrderBy = 0; pLimit = 0; } #endif /* If pTab is really a view, make sure it has been initialized. */ if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto delete_from_cleanup; } if( sqlite3IsReadOnly(pParse, pTab, (pTrigger?1:0)) ){ goto delete_from_cleanup; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDbnDb ); rcauth = sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, db->aDb[iDb].zDbSName); assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE ); if( rcauth==SQLITE_DENY ){ goto delete_from_cleanup; } assert(!isView || pTrigger); /* Assign cursor numbers to the table and all its indices. */ assert( pTabList->nSrc==1 ); iTabCur = pTabList->a[0].iCursor = pParse->nTab++; for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ pParse->nTab++; } /* Start the view context */ if( isView ){ sqlite3AuthContextPush(pParse, &sContext, pTab->zName); } /* Begin generating code. */ v = sqlite3GetVdbe(pParse); if( v==0 ){ goto delete_from_cleanup; } if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); sqlite3BeginWriteOperation(pParse, bComplex, iDb); /* If we are trying to delete from a view, realize that view into ** an ephemeral table. */ #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) if( isView ){ sqlite3MaterializeView(pParse, pTab, pWhere, pOrderBy, pLimit, iTabCur ); iDataCur = iIdxCur = iTabCur; pOrderBy = 0; pLimit = 0; } #endif /* Resolve the column names in the WHERE clause. */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; if( sqlite3ResolveExprNames(&sNC, pWhere) ){ goto delete_from_cleanup; } /* Initialize the counter of the number of rows deleted, if ** we are counting rows. */ if( (db->flags & SQLITE_CountRows)!=0 && !pParse->nested && !pParse->pTriggerTab && !pParse->bReturning ){ memCnt = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, memCnt); } #ifndef SQLITE_OMIT_TRUNCATE_OPTIMIZATION /* Special case: A DELETE without a WHERE clause deletes everything. ** It is easier just to erase the whole table. Prior to version 3.6.5, ** this optimization caused the row change count (the value returned by ** API function sqlite3_count_changes) to be set incorrectly. ** ** The "rcauth==SQLITE_OK" terms is the ** IMPLEMENTATION-OF: R-17228-37124 If the action code is SQLITE_DELETE and ** the callback returns SQLITE_IGNORE then the DELETE operation proceeds but ** the truncate optimization is disabled and all rows are deleted ** individually. */ if( rcauth==SQLITE_OK && pWhere==0 && !bComplex && !IsVirtual(pTab) #ifdef SQLITE_ENABLE_PREUPDATE_HOOK && db->xPreUpdateCallback==0 #endif ){ assert( !isView ); sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName); if( HasRowid(pTab) ){ sqlite3VdbeAddOp4(v, OP_Clear, pTab->tnum, iDb, memCnt ? memCnt : -1, pTab->zName, P4_STATIC); } for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ assert( pIdx->pSchema==pTab->pSchema ); sqlite3VdbeAddOp2(v, OP_Clear, pIdx->tnum, iDb); if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ sqlite3VdbeChangeP3(v, -1, memCnt ? memCnt : -1); } } }else #endif /* SQLITE_OMIT_TRUNCATE_OPTIMIZATION */ { u16 wcf = WHERE_ONEPASS_DESIRED|WHERE_DUPLICATES_OK; if( sNC.ncFlags & NC_VarSelect ) bComplex = 1; wcf |= (bComplex ? 0 : WHERE_ONEPASS_MULTIROW); if( HasRowid(pTab) ){ /* For a rowid table, initialize the RowSet to an empty set */ pPk = 0; nPk = 1; iRowSet = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Null, 0, iRowSet); }else{ /* For a WITHOUT ROWID table, create an ephemeral table used to ** hold all primary keys for rows to be deleted. */ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); nPk = pPk->nKeyCol; iPk = pParse->nMem+1; pParse->nMem += nPk; iEphCur = pParse->nTab++; addrEphOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEphCur, nPk); sqlite3VdbeSetP4KeyInfo(pParse, pPk); } /* Construct a query to find the rowid or primary key for every row ** to be deleted, based on the WHERE clause. Set variable eOnePass ** to indicate the strategy used to implement this delete: ** ** ONEPASS_OFF: Two-pass approach - use a FIFO for rowids/PK values. ** ONEPASS_SINGLE: One-pass approach - at most one row deleted. ** ONEPASS_MULTI: One-pass approach - any number of rows may be deleted. */ pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0, 0,0,wcf,iTabCur+1); if( pWInfo==0 ) goto delete_from_cleanup; eOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); assert( IsVirtual(pTab)==0 || eOnePass!=ONEPASS_MULTI ); assert( IsVirtual(pTab) || bComplex || eOnePass!=ONEPASS_OFF ); if( eOnePass!=ONEPASS_SINGLE ) sqlite3MultiWrite(pParse); if( sqlite3WhereUsesDeferredSeek(pWInfo) ){ sqlite3VdbeAddOp1(v, OP_FinishSeek, iTabCur); } /* Keep track of the number of rows to be deleted */ if( memCnt ){ sqlite3VdbeAddOp2(v, OP_AddImm, memCnt, 1); } /* Extract the rowid or primary key for the current row */ if( pPk ){ for(i=0; iaiColumn[i]>=0 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iTabCur, pPk->aiColumn[i], iPk+i); } iKey = iPk; }else{ iKey = ++pParse->nMem; sqlite3ExprCodeGetColumnOfTable(v, pTab, iTabCur, -1, iKey); } if( eOnePass!=ONEPASS_OFF ){ /* For ONEPASS, no need to store the rowid/primary-key. There is only ** one, so just keep it in its register(s) and fall through to the ** delete code. */ nKey = nPk; /* OP_Found will use an unpacked key */ aToOpen = sqlite3DbMallocRawNN(db, nIdx+2); if( aToOpen==0 ){ sqlite3WhereEnd(pWInfo); goto delete_from_cleanup; } memset(aToOpen, 1, nIdx+1); aToOpen[nIdx+1] = 0; if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iTabCur] = 0; if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iTabCur] = 0; if( addrEphOpen ) sqlite3VdbeChangeToNoop(v, addrEphOpen); addrBypass = sqlite3VdbeMakeLabel(pParse); }else{ if( pPk ){ /* Add the PK key for this row to the temporary table */ iKey = ++pParse->nMem; nKey = 0; /* Zero tells OP_Found to use a composite key */ sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, iKey, sqlite3IndexAffinityStr(pParse->db, pPk), nPk); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iEphCur, iKey, iPk, nPk); }else{ /* Add the rowid of the row to be deleted to the RowSet */ nKey = 1; /* OP_DeferredSeek always uses a single rowid */ sqlite3VdbeAddOp2(v, OP_RowSetAdd, iRowSet, iKey); } sqlite3WhereEnd(pWInfo); } /* Unless this is a view, open cursors for the table we are ** deleting from and all its indices. If this is a view, then the ** only effect this statement has is to fire the INSTEAD OF ** triggers. */ if( !isView ){ int iAddrOnce = 0; if( eOnePass==ONEPASS_MULTI ){ iAddrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } testcase( IsVirtual(pTab) ); sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, OPFLAG_FORDELETE, iTabCur, aToOpen, &iDataCur, &iIdxCur); assert( pPk || IsVirtual(pTab) || iDataCur==iTabCur ); assert( pPk || IsVirtual(pTab) || iIdxCur==iDataCur+1 ); if( eOnePass==ONEPASS_MULTI ){ sqlite3VdbeJumpHereOrPopInst(v, iAddrOnce); } } /* Set up a loop over the rowids/primary-keys that were found in the ** where-clause loop above. */ if( eOnePass!=ONEPASS_OFF ){ assert( nKey==nPk ); /* OP_Found will use an unpacked key */ if( !IsVirtual(pTab) && aToOpen[iDataCur-iTabCur] ){ assert( pPk!=0 || IsView(pTab) ); sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, addrBypass, iKey, nKey); VdbeCoverage(v); } }else if( pPk ){ addrLoop = sqlite3VdbeAddOp1(v, OP_Rewind, iEphCur); VdbeCoverage(v); if( IsVirtual(pTab) ){ sqlite3VdbeAddOp3(v, OP_Column, iEphCur, 0, iKey); }else{ sqlite3VdbeAddOp2(v, OP_RowData, iEphCur, iKey); } assert( nKey==0 ); /* OP_Found will use a composite key */ }else{ addrLoop = sqlite3VdbeAddOp3(v, OP_RowSetRead, iRowSet, 0, iKey); VdbeCoverage(v); assert( nKey==1 ); } /* Delete the row */ #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); sqlite3VtabMakeWritable(pParse, pTab); assert( eOnePass==ONEPASS_OFF || eOnePass==ONEPASS_SINGLE ); sqlite3MayAbort(pParse); if( eOnePass==ONEPASS_SINGLE ){ sqlite3VdbeAddOp1(v, OP_Close, iTabCur); if( sqlite3IsToplevel(pParse) ){ pParse->isMultiWrite = 0; } } sqlite3VdbeAddOp4(v, OP_VUpdate, 0, 1, iKey, pVTab, P4_VTAB); sqlite3VdbeChangeP5(v, OE_Abort); }else #endif { int count = (pParse->nested==0); /* True to count changes */ sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, iKey, nKey, count, OE_Default, eOnePass, aiCurOnePass[1]); } /* End of the loop over all rowids/primary-keys. */ if( eOnePass!=ONEPASS_OFF ){ sqlite3VdbeResolveLabel(v, addrBypass); sqlite3WhereEnd(pWInfo); }else if( pPk ){ sqlite3VdbeAddOp2(v, OP_Next, iEphCur, addrLoop+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrLoop); }else{ sqlite3VdbeGoto(v, addrLoop); sqlite3VdbeJumpHere(v, addrLoop); } } /* End non-truncate path */ /* Update the sqlite_sequence table by storing the content of the ** maximum rowid counter values recorded while inserting into ** autoincrement tables. */ if( pParse->nested==0 && pParse->pTriggerTab==0 ){ sqlite3AutoincrementEnd(pParse); } /* Return the number of rows that were deleted. If this routine is ** generating code because of a call to sqlite3NestedParse(), do not ** invoke the callback function. */ if( memCnt ){ sqlite3CodeChangeCount(v, memCnt, "rows deleted"); } delete_from_cleanup: sqlite3AuthContextPop(&sContext); sqlite3SrcListDelete(db, pTabList); sqlite3ExprDelete(db, pWhere); #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) sqlite3ExprListDelete(db, pOrderBy); sqlite3ExprDelete(db, pLimit); #endif sqlite3DbFree(db, aToOpen); return; } /* Make sure "isView" and other macros defined above are undefined. Otherwise ** they may interfere with compilation of other functions in this file ** (or in another file, if this file becomes part of the amalgamation). */ #ifdef isView #undef isView #endif #ifdef pTrigger #undef pTrigger #endif /* ** This routine generates VDBE code that causes a single row of a ** single table to be deleted. Both the original table entry and ** all indices are removed. ** ** Preconditions: ** ** 1. iDataCur is an open cursor on the btree that is the canonical data ** store for the table. (This will be either the table itself, ** in the case of a rowid table, or the PRIMARY KEY index in the case ** of a WITHOUT ROWID table.) ** ** 2. Read/write cursors for all indices of pTab must be open as ** cursor number iIdxCur+i for the i-th index. ** ** 3. The primary key for the row to be deleted must be stored in a ** sequence of nPk memory cells starting at iPk. If nPk==0 that means ** that a search record formed from OP_MakeRecord is contained in the ** single memory location iPk. ** ** eMode: ** Parameter eMode may be passed either ONEPASS_OFF (0), ONEPASS_SINGLE, or ** ONEPASS_MULTI. If eMode is not ONEPASS_OFF, then the cursor ** iDataCur already points to the row to delete. If eMode is ONEPASS_OFF ** then this function must seek iDataCur to the entry identified by iPk ** and nPk before reading from it. ** ** If eMode is ONEPASS_MULTI, then this call is being made as part ** of a ONEPASS delete that affects multiple rows. In this case, if ** iIdxNoSeek is a valid cursor number (>=0) and is not the same as ** iDataCur, then its position should be preserved following the delete ** operation. Or, if iIdxNoSeek is not a valid cursor number, the ** position of iDataCur should be preserved instead. ** ** iIdxNoSeek: ** If iIdxNoSeek is a valid cursor number (>=0) not equal to iDataCur, ** then it identifies an index cursor (from within array of cursors ** starting at iIdxCur) that already points to the index entry to be deleted. ** Except, this optimization is disabled if there are BEFORE triggers since ** the trigger body might have moved the cursor. */ SQLITE_PRIVATE void sqlite3GenerateRowDelete( Parse *pParse, /* Parsing context */ Table *pTab, /* Table containing the row to be deleted */ Trigger *pTrigger, /* List of triggers to (potentially) fire */ int iDataCur, /* Cursor from which column data is extracted */ int iIdxCur, /* First index cursor */ int iPk, /* First memory cell containing the PRIMARY KEY */ i16 nPk, /* Number of PRIMARY KEY memory cells */ u8 count, /* If non-zero, increment the row change counter */ u8 onconf, /* Default ON CONFLICT policy for triggers */ u8 eMode, /* ONEPASS_OFF, _SINGLE, or _MULTI. See above */ int iIdxNoSeek /* Cursor number of cursor that does not need seeking */ ){ Vdbe *v = pParse->pVdbe; /* Vdbe */ int iOld = 0; /* First register in OLD.* array */ int iLabel; /* Label resolved to end of generated code */ u8 opSeek; /* Seek opcode */ /* Vdbe is guaranteed to have been allocated by this stage. */ assert( v ); VdbeModuleComment((v, "BEGIN: GenRowDel(%d,%d,%d,%d)", iDataCur, iIdxCur, iPk, (int)nPk)); /* Seek cursor iCur to the row to delete. If this row no longer exists ** (this can happen if a trigger program has already deleted it), do ** not attempt to delete it or fire any DELETE triggers. */ iLabel = sqlite3VdbeMakeLabel(pParse); opSeek = HasRowid(pTab) ? OP_NotExists : OP_NotFound; if( eMode==ONEPASS_OFF ){ sqlite3VdbeAddOp4Int(v, opSeek, iDataCur, iLabel, iPk, nPk); VdbeCoverageIf(v, opSeek==OP_NotExists); VdbeCoverageIf(v, opSeek==OP_NotFound); } /* If there are any triggers to fire, allocate a range of registers to ** use for the old.* references in the triggers. */ if( sqlite3FkRequired(pParse, pTab, 0, 0) || pTrigger ){ u32 mask; /* Mask of OLD.* columns in use */ int iCol; /* Iterator used while populating OLD.* */ int addrStart; /* Start of BEFORE trigger programs */ /* TODO: Could use temporary registers here. Also could attempt to ** avoid copying the contents of the rowid register. */ mask = sqlite3TriggerColmask( pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf ); mask |= sqlite3FkOldmask(pParse, pTab); iOld = pParse->nMem+1; pParse->nMem += (1 + pTab->nCol); /* Populate the OLD.* pseudo-table register array. These values will be ** used by any BEFORE and AFTER triggers that exist. */ sqlite3VdbeAddOp2(v, OP_Copy, iPk, iOld); for(iCol=0; iColnCol; iCol++){ testcase( mask!=0xffffffff && iCol==31 ); testcase( mask!=0xffffffff && iCol==32 ); if( mask==0xffffffff || (iCol<=31 && (mask & MASKBIT32(iCol))!=0) ){ int kk = sqlite3TableColumnToStorage(pTab, iCol); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, iCol, iOld+kk+1); } } /* Invoke BEFORE DELETE trigger programs. */ addrStart = sqlite3VdbeCurrentAddr(v); sqlite3CodeRowTrigger(pParse, pTrigger, TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel ); /* If any BEFORE triggers were coded, then seek the cursor to the ** row to be deleted again. It may be that the BEFORE triggers moved ** the cursor or already deleted the row that the cursor was ** pointing to. ** ** Also disable the iIdxNoSeek optimization since the BEFORE trigger ** may have moved that cursor. */ if( addrStart=0 ); iIdxNoSeek = -1; } /* Do FK processing. This call checks that any FK constraints that ** refer to this table (i.e. constraints attached to other tables) ** are not violated by deleting this row. */ sqlite3FkCheck(pParse, pTab, iOld, 0, 0, 0); } /* Delete the index and table entries. Skip this step if pTab is really ** a view (in which case the only effect of the DELETE statement is to ** fire the INSTEAD OF triggers). ** ** If variable 'count' is non-zero, then this OP_Delete instruction should ** invoke the update-hook. The pre-update-hook, on the other hand should ** be invoked unless table pTab is a system table. The difference is that ** the update-hook is not invoked for rows removed by REPLACE, but the ** pre-update-hook is. */ if( !IsView(pTab) ){ u8 p5 = 0; sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,iIdxNoSeek); sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, (count?OPFLAG_NCHANGE:0)); if( pParse->nested==0 || 0==sqlite3_stricmp(pTab->zName, "sqlite_stat1") ){ sqlite3VdbeAppendP4(v, (char*)pTab, P4_TABLE); } if( eMode!=ONEPASS_OFF ){ sqlite3VdbeChangeP5(v, OPFLAG_AUXDELETE); } if( iIdxNoSeek>=0 && iIdxNoSeek!=iDataCur ){ sqlite3VdbeAddOp1(v, OP_Delete, iIdxNoSeek); } if( eMode==ONEPASS_MULTI ) p5 |= OPFLAG_SAVEPOSITION; sqlite3VdbeChangeP5(v, p5); } /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to ** handle rows (possibly in other tables) that refer via a foreign key ** to the row just deleted. */ sqlite3FkActions(pParse, pTab, 0, iOld, 0, 0); /* Invoke AFTER DELETE trigger programs. */ sqlite3CodeRowTrigger(pParse, pTrigger, TK_DELETE, 0, TRIGGER_AFTER, pTab, iOld, onconf, iLabel ); /* Jump here if the row had already been deleted before any BEFORE ** trigger programs were invoked. Or if a trigger program throws a ** RAISE(IGNORE) exception. */ sqlite3VdbeResolveLabel(v, iLabel); VdbeModuleComment((v, "END: GenRowDel()")); } /* ** This routine generates VDBE code that causes the deletion of all ** index entries associated with a single row of a single table, pTab ** ** Preconditions: ** ** 1. A read/write cursor "iDataCur" must be open on the canonical storage ** btree for the table pTab. (This will be either the table itself ** for rowid tables or to the primary key index for WITHOUT ROWID ** tables.) ** ** 2. Read/write cursors for all indices of pTab must be open as ** cursor number iIdxCur+i for the i-th index. (The pTab->pIndex ** index is the 0-th index.) ** ** 3. The "iDataCur" cursor must be already be positioned on the row ** that is to be deleted. */ SQLITE_PRIVATE void sqlite3GenerateRowIndexDelete( Parse *pParse, /* Parsing and code generating context */ Table *pTab, /* Table containing the row to be deleted */ int iDataCur, /* Cursor of table holding data. */ int iIdxCur, /* First index cursor */ int *aRegIdx, /* Only delete if aRegIdx!=0 && aRegIdx[i]>0 */ int iIdxNoSeek /* Do not delete from this cursor */ ){ int i; /* Index loop counter */ int r1 = -1; /* Register holding an index key */ int iPartIdxLabel; /* Jump destination for skipping partial index entries */ Index *pIdx; /* Current index */ Index *pPrior = 0; /* Prior index */ Vdbe *v; /* The prepared statement under construction */ Index *pPk; /* PRIMARY KEY index, or NULL for rowid tables */ v = pParse->pVdbe; pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); for(i=0, pIdx=pTab->pIndex; pIdx; i++, pIdx=pIdx->pNext){ assert( iIdxCur+i!=iDataCur || pPk==pIdx ); if( aRegIdx!=0 && aRegIdx[i]==0 ) continue; if( pIdx==pPk ) continue; if( iIdxCur+i==iIdxNoSeek ) continue; VdbeModuleComment((v, "GenRowIdxDel for %s", pIdx->zName)); r1 = sqlite3GenerateIndexKey(pParse, pIdx, iDataCur, 0, 1, &iPartIdxLabel, pPrior, r1); sqlite3VdbeAddOp3(v, OP_IdxDelete, iIdxCur+i, r1, pIdx->uniqNotNull ? pIdx->nKeyCol : pIdx->nColumn); sqlite3VdbeChangeP5(v, 1); /* Cause IdxDelete to error if no entry found */ sqlite3ResolvePartIdxLabel(pParse, iPartIdxLabel); pPrior = pIdx; } } /* ** Generate code that will assemble an index key and stores it in register ** regOut. The key with be for index pIdx which is an index on pTab. ** iCur is the index of a cursor open on the pTab table and pointing to ** the entry that needs indexing. If pTab is a WITHOUT ROWID table, then ** iCur must be the cursor of the PRIMARY KEY index. ** ** Return a register number which is the first in a block of ** registers that holds the elements of the index key. The ** block of registers has already been deallocated by the time ** this routine returns. ** ** If *piPartIdxLabel is not NULL, fill it in with a label and jump ** to that label if pIdx is a partial index that should be skipped. ** The label should be resolved using sqlite3ResolvePartIdxLabel(). ** A partial index should be skipped if its WHERE clause evaluates ** to false or null. If pIdx is not a partial index, *piPartIdxLabel ** will be set to zero which is an empty label that is ignored by ** sqlite3ResolvePartIdxLabel(). ** ** The pPrior and regPrior parameters are used to implement a cache to ** avoid unnecessary register loads. If pPrior is not NULL, then it is ** a pointer to a different index for which an index key has just been ** computed into register regPrior. If the current pIdx index is generating ** its key into the same sequence of registers and if pPrior and pIdx share ** a column in common, then the register corresponding to that column already ** holds the correct value and the loading of that register is skipped. ** This optimization is helpful when doing a DELETE or an INTEGRITY_CHECK ** on a table with multiple indices, and especially with the ROWID or ** PRIMARY KEY columns of the index. */ SQLITE_PRIVATE int sqlite3GenerateIndexKey( Parse *pParse, /* Parsing context */ Index *pIdx, /* The index for which to generate a key */ int iDataCur, /* Cursor number from which to take column data */ int regOut, /* Put the new key into this register if not 0 */ int prefixOnly, /* Compute only a unique prefix of the key */ int *piPartIdxLabel, /* OUT: Jump to this label to skip partial index */ Index *pPrior, /* Previously generated index key */ int regPrior /* Register holding previous generated key */ ){ Vdbe *v = pParse->pVdbe; int j; int regBase; int nCol; if( piPartIdxLabel ){ if( pIdx->pPartIdxWhere ){ *piPartIdxLabel = sqlite3VdbeMakeLabel(pParse); pParse->iSelfTab = iDataCur + 1; sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, *piPartIdxLabel, SQLITE_JUMPIFNULL); pParse->iSelfTab = 0; pPrior = 0; /* Ticket a9efb42811fa41ee 2019-11-02; ** pPartIdxWhere may have corrupted regPrior registers */ }else{ *piPartIdxLabel = 0; } } nCol = (prefixOnly && pIdx->uniqNotNull) ? pIdx->nKeyCol : pIdx->nColumn; regBase = sqlite3GetTempRange(pParse, nCol); if( pPrior && (regBase!=regPrior || pPrior->pPartIdxWhere) ) pPrior = 0; for(j=0; jaiColumn[j]==pIdx->aiColumn[j] && pPrior->aiColumn[j]!=XN_EXPR ){ /* This column was already computed by the previous index */ continue; } sqlite3ExprCodeLoadIndexColumn(pParse, pIdx, iDataCur, j, regBase+j); if( pIdx->aiColumn[j]>=0 ){ /* If the column affinity is REAL but the number is an integer, then it ** might be stored in the table as an integer (using a compact ** representation) then converted to REAL by an OP_RealAffinity opcode. ** But we are getting ready to store this value back into an index, where ** it should be converted by to INTEGER again. So omit the ** OP_RealAffinity opcode if it is present */ sqlite3VdbeDeletePriorOpcode(v, OP_RealAffinity); } } if( regOut ){ sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regOut); } sqlite3ReleaseTempRange(pParse, regBase, nCol); return regBase; } /* ** If a prior call to sqlite3GenerateIndexKey() generated a jump-over label ** because it was a partial index, then this routine should be called to ** resolve that label. */ SQLITE_PRIVATE void sqlite3ResolvePartIdxLabel(Parse *pParse, int iLabel){ if( iLabel ){ sqlite3VdbeResolveLabel(pParse->pVdbe, iLabel); } } /************** End of delete.c **********************************************/ /************** Begin file func.c ********************************************/ /* ** 2002 February 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C-language implementations for many of the SQL ** functions of SQLite. (Some function, and in particular the date and ** time functions, are implemented separately.) */ /* #include "sqliteInt.h" */ /* #include */ /* #include */ #ifndef SQLITE_OMIT_FLOATING_POINT /* #include */ #endif /* #include "vdbeInt.h" */ /* ** Return the collating function associated with a function. */ static CollSeq *sqlite3GetFuncCollSeq(sqlite3_context *context){ VdbeOp *pOp; assert( context->pVdbe!=0 ); pOp = &context->pVdbe->aOp[context->iOp-1]; assert( pOp->opcode==OP_CollSeq ); assert( pOp->p4type==P4_COLLSEQ ); return pOp->p4.pColl; } /* ** Indicate that the accumulator load should be skipped on this ** iteration of the aggregate loop. */ static void sqlite3SkipAccumulatorLoad(sqlite3_context *context){ assert( context->isError<=0 ); context->isError = -1; context->skipFlag = 1; } /* ** Implementation of the non-aggregate min() and max() functions */ static void minmaxFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int i; int mask; /* 0 for min() or 0xffffffff for max() */ int iBest; CollSeq *pColl; assert( argc>1 ); mask = sqlite3_user_data(context)==0 ? 0 : -1; pColl = sqlite3GetFuncCollSeq(context); assert( pColl ); assert( mask==-1 || mask==0 ); iBest = 0; if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; for(i=1; i=0 ){ testcase( mask==0 ); iBest = i; } } sqlite3_result_value(context, argv[iBest]); } /* ** Return the type of the argument. */ static void typeofFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ static const char *azType[] = { "integer", "real", "text", "blob", "null" }; int i = sqlite3_value_type(argv[0]) - 1; UNUSED_PARAMETER(NotUsed); assert( i>=0 && i=0xc0 ){ while( (*z & 0xc0)==0x80 ){ z++; z0++; } } } sqlite3_result_int(context, (int)(z-z0)); break; } default: { sqlite3_result_null(context); break; } } } /* ** Implementation of the abs() function. ** ** IMP: R-23979-26855 The abs(X) function returns the absolute value of ** the numeric argument X. */ static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ assert( argc==1 ); UNUSED_PARAMETER(argc); switch( sqlite3_value_type(argv[0]) ){ case SQLITE_INTEGER: { i64 iVal = sqlite3_value_int64(argv[0]); if( iVal<0 ){ if( iVal==SMALLEST_INT64 ){ /* IMP: R-31676-45509 If X is the integer -9223372036854775808 ** then abs(X) throws an integer overflow error since there is no ** equivalent positive 64-bit two complement value. */ sqlite3_result_error(context, "integer overflow", -1); return; } iVal = -iVal; } sqlite3_result_int64(context, iVal); break; } case SQLITE_NULL: { /* IMP: R-37434-19929 Abs(X) returns NULL if X is NULL. */ sqlite3_result_null(context); break; } default: { /* Because sqlite3_value_double() returns 0.0 if the argument is not ** something that can be converted into a number, we have: ** IMP: R-01992-00519 Abs(X) returns 0.0 if X is a string or blob ** that cannot be converted to a numeric value. */ double rVal = sqlite3_value_double(argv[0]); if( rVal<0 ) rVal = -rVal; sqlite3_result_double(context, rVal); break; } } } /* ** Implementation of the instr() function. ** ** instr(haystack,needle) finds the first occurrence of needle ** in haystack and returns the number of previous characters plus 1, ** or 0 if needle does not occur within haystack. ** ** If both haystack and needle are BLOBs, then the result is one more than ** the number of bytes in haystack prior to the first occurrence of needle, ** or 0 if needle never occurs in haystack. */ static void instrFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zHaystack; const unsigned char *zNeedle; int nHaystack; int nNeedle; int typeHaystack, typeNeedle; int N = 1; int isText; unsigned char firstChar; sqlite3_value *pC1 = 0; sqlite3_value *pC2 = 0; UNUSED_PARAMETER(argc); typeHaystack = sqlite3_value_type(argv[0]); typeNeedle = sqlite3_value_type(argv[1]); if( typeHaystack==SQLITE_NULL || typeNeedle==SQLITE_NULL ) return; nHaystack = sqlite3_value_bytes(argv[0]); nNeedle = sqlite3_value_bytes(argv[1]); if( nNeedle>0 ){ if( typeHaystack==SQLITE_BLOB && typeNeedle==SQLITE_BLOB ){ zHaystack = sqlite3_value_blob(argv[0]); zNeedle = sqlite3_value_blob(argv[1]); isText = 0; }else if( typeHaystack!=SQLITE_BLOB && typeNeedle!=SQLITE_BLOB ){ zHaystack = sqlite3_value_text(argv[0]); zNeedle = sqlite3_value_text(argv[1]); isText = 1; }else{ pC1 = sqlite3_value_dup(argv[0]); zHaystack = sqlite3_value_text(pC1); if( zHaystack==0 ) goto endInstrOOM; nHaystack = sqlite3_value_bytes(pC1); pC2 = sqlite3_value_dup(argv[1]); zNeedle = sqlite3_value_text(pC2); if( zNeedle==0 ) goto endInstrOOM; nNeedle = sqlite3_value_bytes(pC2); isText = 1; } if( zNeedle==0 || (nHaystack && zHaystack==0) ) goto endInstrOOM; firstChar = zNeedle[0]; while( nNeedle<=nHaystack && (zHaystack[0]!=firstChar || memcmp(zHaystack, zNeedle, nNeedle)!=0) ){ N++; do{ nHaystack--; zHaystack++; }while( isText && (zHaystack[0]&0xc0)==0x80 ); } if( nNeedle>nHaystack ) N = 0; } sqlite3_result_int(context, N); endInstr: sqlite3_value_free(pC1); sqlite3_value_free(pC2); return; endInstrOOM: sqlite3_result_error_nomem(context); goto endInstr; } /* ** Implementation of the printf() (a.k.a. format()) SQL function. */ static void printfFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ PrintfArguments x; StrAccum str; const char *zFormat; int n; sqlite3 *db = sqlite3_context_db_handle(context); if( argc>=1 && (zFormat = (const char*)sqlite3_value_text(argv[0]))!=0 ){ x.nArg = argc-1; x.nUsed = 0; x.apArg = argv+1; sqlite3StrAccumInit(&str, db, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]); str.printfFlags = SQLITE_PRINTF_SQLFUNC; sqlite3_str_appendf(&str, zFormat, &x); n = str.nChar; sqlite3_result_text(context, sqlite3StrAccumFinish(&str), n, SQLITE_DYNAMIC); } } /* ** Implementation of the substr() function. ** ** substr(x,p1,p2) returns p2 characters of x[] beginning with p1. ** p1 is 1-indexed. So substr(x,1,1) returns the first character ** of x. If x is text, then we actually count UTF-8 characters. ** If x is a blob, then we count bytes. ** ** If p1 is negative, then we begin abs(p1) from the end of x[]. ** ** If p2 is negative, return the p2 characters preceding p1. */ static void substrFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *z; const unsigned char *z2; int len; int p0type; i64 p1, p2; int negP2 = 0; assert( argc==3 || argc==2 ); if( sqlite3_value_type(argv[1])==SQLITE_NULL || (argc==3 && sqlite3_value_type(argv[2])==SQLITE_NULL) ){ return; } p0type = sqlite3_value_type(argv[0]); p1 = sqlite3_value_int(argv[1]); if( p0type==SQLITE_BLOB ){ len = sqlite3_value_bytes(argv[0]); z = sqlite3_value_blob(argv[0]); if( z==0 ) return; assert( len==sqlite3_value_bytes(argv[0]) ); }else{ z = sqlite3_value_text(argv[0]); if( z==0 ) return; len = 0; if( p1<0 ){ for(z2=z; *z2; len++){ SQLITE_SKIP_UTF8(z2); } } } #ifdef SQLITE_SUBSTR_COMPATIBILITY /* If SUBSTR_COMPATIBILITY is defined then substr(X,0,N) work the same as ** as substr(X,1,N) - it returns the first N characters of X. This ** is essentially a back-out of the bug-fix in check-in [5fc125d362df4b8] ** from 2009-02-02 for compatibility of applications that exploited the ** old buggy behavior. */ if( p1==0 ) p1 = 1; /* */ #endif if( argc==3 ){ p2 = sqlite3_value_int(argv[2]); if( p2<0 ){ p2 = -p2; negP2 = 1; } }else{ p2 = sqlite3_context_db_handle(context)->aLimit[SQLITE_LIMIT_LENGTH]; } if( p1<0 ){ p1 += len; if( p1<0 ){ p2 += p1; if( p2<0 ) p2 = 0; p1 = 0; } }else if( p1>0 ){ p1--; }else if( p2>0 ){ p2--; } if( negP2 ){ p1 -= p2; if( p1<0 ){ p2 += p1; p1 = 0; } } assert( p1>=0 && p2>=0 ); if( p0type!=SQLITE_BLOB ){ while( *z && p1 ){ SQLITE_SKIP_UTF8(z); p1--; } for(z2=z; *z2 && p2; p2--){ SQLITE_SKIP_UTF8(z2); } sqlite3_result_text64(context, (char*)z, z2-z, SQLITE_TRANSIENT, SQLITE_UTF8); }else{ if( p1+p2>len ){ p2 = len-p1; if( p2<0 ) p2 = 0; } sqlite3_result_blob64(context, (char*)&z[p1], (u64)p2, SQLITE_TRANSIENT); } } /* ** Implementation of the round() function */ #ifndef SQLITE_OMIT_FLOATING_POINT static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ int n = 0; double r; char *zBuf; assert( argc==1 || argc==2 ); if( argc==2 ){ if( SQLITE_NULL==sqlite3_value_type(argv[1]) ) return; n = sqlite3_value_int(argv[1]); if( n>30 ) n = 30; if( n<0 ) n = 0; } if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; r = sqlite3_value_double(argv[0]); /* If Y==0 and X will fit in a 64-bit int, ** handle the rounding directly, ** otherwise use printf. */ if( r<-4503599627370496.0 || r>+4503599627370496.0 ){ /* The value has no fractional part so there is nothing to round */ }else if( n==0 ){ r = (double)((sqlite_int64)(r+(r<0?-0.5:+0.5))); }else{ zBuf = sqlite3_mprintf("%.*f",n,r); if( zBuf==0 ){ sqlite3_result_error_nomem(context); return; } sqlite3AtoF(zBuf, &r, sqlite3Strlen30(zBuf), SQLITE_UTF8); sqlite3_free(zBuf); } sqlite3_result_double(context, r); } #endif /* ** Allocate nByte bytes of space using sqlite3Malloc(). If the ** allocation fails, call sqlite3_result_error_nomem() to notify ** the database handle that malloc() has failed and return NULL. ** If nByte is larger than the maximum string or blob length, then ** raise an SQLITE_TOOBIG exception and return NULL. */ static void *contextMalloc(sqlite3_context *context, i64 nByte){ char *z; sqlite3 *db = sqlite3_context_db_handle(context); assert( nByte>0 ); testcase( nByte==db->aLimit[SQLITE_LIMIT_LENGTH] ); testcase( nByte==db->aLimit[SQLITE_LIMIT_LENGTH]+1 ); if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){ sqlite3_result_error_toobig(context); z = 0; }else{ z = sqlite3Malloc(nByte); if( !z ){ sqlite3_result_error_nomem(context); } } return z; } /* ** Implementation of the upper() and lower() SQL functions. */ static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ char *z1; const char *z2; int i, n; UNUSED_PARAMETER(argc); z2 = (char*)sqlite3_value_text(argv[0]); n = sqlite3_value_bytes(argv[0]); /* Verify that the call to _bytes() does not invalidate the _text() pointer */ assert( z2==(char*)sqlite3_value_text(argv[0]) ); if( z2 ){ z1 = contextMalloc(context, ((i64)n)+1); if( z1 ){ for(i=0; imatchOne; /* "?" or "_" */ u32 matchAll = pInfo->matchAll; /* "*" or "%" */ u8 noCase = pInfo->noCase; /* True if uppercase==lowercase */ const u8 *zEscaped = 0; /* One past the last escaped input char */ while( (c = Utf8Read(zPattern))!=0 ){ if( c==matchAll ){ /* Match "*" */ /* Skip over multiple "*" characters in the pattern. If there ** are also "?" characters, skip those as well, but consume a ** single character of the input string for each "?" skipped */ while( (c=Utf8Read(zPattern)) == matchAll || (c == matchOne && matchOne!=0) ){ if( c==matchOne && sqlite3Utf8Read(&zString)==0 ){ return SQLITE_NOWILDCARDMATCH; } } if( c==0 ){ return SQLITE_MATCH; /* "*" at the end of the pattern matches */ }else if( c==matchOther ){ if( pInfo->matchSet==0 ){ c = sqlite3Utf8Read(&zPattern); if( c==0 ) return SQLITE_NOWILDCARDMATCH; }else{ /* "[...]" immediately follows the "*". We have to do a slow ** recursive search in this case, but it is an unusual case. */ assert( matchOther<0x80 ); /* '[' is a single-byte character */ while( *zString ){ int bMatch = patternCompare(&zPattern[-1],zString,pInfo,matchOther); if( bMatch!=SQLITE_NOMATCH ) return bMatch; SQLITE_SKIP_UTF8(zString); } return SQLITE_NOWILDCARDMATCH; } } /* At this point variable c contains the first character of the ** pattern string past the "*". Search in the input string for the ** first matching character and recursively continue the match from ** that point. ** ** For a case-insensitive search, set variable cx to be the same as ** c but in the other case and search the input string for either ** c or cx. */ if( c<=0x80 ){ char zStop[3]; int bMatch; if( noCase ){ zStop[0] = sqlite3Toupper(c); zStop[1] = sqlite3Tolower(c); zStop[2] = 0; }else{ zStop[0] = c; zStop[1] = 0; } while(1){ zString += strcspn((const char*)zString, zStop); if( zString[0]==0 ) break; zString++; bMatch = patternCompare(zPattern,zString,pInfo,matchOther); if( bMatch!=SQLITE_NOMATCH ) return bMatch; } }else{ int bMatch; while( (c2 = Utf8Read(zString))!=0 ){ if( c2!=c ) continue; bMatch = patternCompare(zPattern,zString,pInfo,matchOther); if( bMatch!=SQLITE_NOMATCH ) return bMatch; } } return SQLITE_NOWILDCARDMATCH; } if( c==matchOther ){ if( pInfo->matchSet==0 ){ c = sqlite3Utf8Read(&zPattern); if( c==0 ) return SQLITE_NOMATCH; zEscaped = zPattern; }else{ u32 prior_c = 0; int seen = 0; int invert = 0; c = sqlite3Utf8Read(&zString); if( c==0 ) return SQLITE_NOMATCH; c2 = sqlite3Utf8Read(&zPattern); if( c2=='^' ){ invert = 1; c2 = sqlite3Utf8Read(&zPattern); } if( c2==']' ){ if( c==']' ) seen = 1; c2 = sqlite3Utf8Read(&zPattern); } while( c2 && c2!=']' ){ if( c2=='-' && zPattern[0]!=']' && zPattern[0]!=0 && prior_c>0 ){ c2 = sqlite3Utf8Read(&zPattern); if( c>=prior_c && c<=c2 ) seen = 1; prior_c = 0; }else{ if( c==c2 ){ seen = 1; } prior_c = c2; } c2 = sqlite3Utf8Read(&zPattern); } if( c2==0 || (seen ^ invert)==0 ){ return SQLITE_NOMATCH; } continue; } } c2 = Utf8Read(zString); if( c==c2 ) continue; if( noCase && sqlite3Tolower(c)==sqlite3Tolower(c2) && c<0x80 && c2<0x80 ){ continue; } if( c==matchOne && zPattern!=zEscaped && c2!=0 ) continue; return SQLITE_NOMATCH; } return *zString==0 ? SQLITE_MATCH : SQLITE_NOMATCH; } /* ** The sqlite3_strglob() interface. Return 0 on a match (like strcmp()) and ** non-zero if there is no match. */ SQLITE_API int sqlite3_strglob(const char *zGlobPattern, const char *zString){ return patternCompare((u8*)zGlobPattern, (u8*)zString, &globInfo, '['); } /* ** The sqlite3_strlike() interface. Return 0 on a match and non-zero for ** a miss - like strcmp(). */ SQLITE_API int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){ return patternCompare((u8*)zPattern, (u8*)zStr, &likeInfoNorm, esc); } /* ** Count the number of times that the LIKE operator (or GLOB which is ** just a variation of LIKE) gets called. This is used for testing ** only. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_like_count = 0; #endif /* ** Implementation of the like() SQL function. This function implements ** the build-in LIKE operator. The first argument to the function is the ** pattern and the second argument is the string. So, the SQL statements: ** ** A LIKE B ** ** is implemented as like(B,A). ** ** This same function (with a different compareInfo structure) computes ** the GLOB operator. */ static void likeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zA, *zB; u32 escape; int nPat; sqlite3 *db = sqlite3_context_db_handle(context); struct compareInfo *pInfo = sqlite3_user_data(context); struct compareInfo backupInfo; #ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( sqlite3_value_type(argv[0])==SQLITE_BLOB || sqlite3_value_type(argv[1])==SQLITE_BLOB ){ #ifdef SQLITE_TEST sqlite3_like_count++; #endif sqlite3_result_int(context, 0); return; } #endif /* Limit the length of the LIKE or GLOB pattern to avoid problems ** of deep recursion and N*N behavior in patternCompare(). */ nPat = sqlite3_value_bytes(argv[0]); testcase( nPat==db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH] ); testcase( nPat==db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]+1 ); if( nPat > db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH] ){ sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1); return; } if( argc==3 ){ /* The escape character string must consist of a single UTF-8 character. ** Otherwise, return an error. */ const unsigned char *zEsc = sqlite3_value_text(argv[2]); if( zEsc==0 ) return; if( sqlite3Utf8CharLen((char*)zEsc, -1)!=1 ){ sqlite3_result_error(context, "ESCAPE expression must be a single character", -1); return; } escape = sqlite3Utf8Read(&zEsc); if( escape==pInfo->matchAll || escape==pInfo->matchOne ){ memcpy(&backupInfo, pInfo, sizeof(backupInfo)); pInfo = &backupInfo; if( escape==pInfo->matchAll ) pInfo->matchAll = 0; if( escape==pInfo->matchOne ) pInfo->matchOne = 0; } }else{ escape = pInfo->matchSet; } zB = sqlite3_value_text(argv[0]); zA = sqlite3_value_text(argv[1]); if( zA && zB ){ #ifdef SQLITE_TEST sqlite3_like_count++; #endif sqlite3_result_int(context, patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH); } } /* ** Implementation of the NULLIF(x,y) function. The result is the first ** argument if the arguments are different. The result is NULL if the ** arguments are equal to each other. */ static void nullifFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ CollSeq *pColl = sqlite3GetFuncCollSeq(context); UNUSED_PARAMETER(NotUsed); if( sqlite3MemCompare(argv[0], argv[1], pColl)!=0 ){ sqlite3_result_value(context, argv[0]); } } /* ** Implementation of the sqlite_version() function. The result is the version ** of the SQLite library that is running. */ static void versionFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); /* IMP: R-48699-48617 This function is an SQL wrapper around the ** sqlite3_libversion() C-interface. */ sqlite3_result_text(context, sqlite3_libversion(), -1, SQLITE_STATIC); } /* ** Implementation of the sqlite_source_id() function. The result is a string ** that identifies the particular version of the source code used to build ** SQLite. */ static void sourceidFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); /* IMP: R-24470-31136 This function is an SQL wrapper around the ** sqlite3_sourceid() C interface. */ sqlite3_result_text(context, sqlite3_sourceid(), -1, SQLITE_STATIC); } /* ** Implementation of the sqlite_log() function. This is a wrapper around ** sqlite3_log(). The return value is NULL. The function exists purely for ** its side-effects. */ static void errlogFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ UNUSED_PARAMETER(argc); UNUSED_PARAMETER(context); sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1])); } /* ** Implementation of the sqlite_compileoption_used() function. ** The result is an integer that identifies if the compiler option ** was used to build SQLite. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS static void compileoptionusedFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *zOptName; assert( argc==1 ); UNUSED_PARAMETER(argc); /* IMP: R-39564-36305 The sqlite_compileoption_used() SQL ** function is a wrapper around the sqlite3_compileoption_used() C/C++ ** function. */ if( (zOptName = (const char*)sqlite3_value_text(argv[0]))!=0 ){ sqlite3_result_int(context, sqlite3_compileoption_used(zOptName)); } } #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ /* ** Implementation of the sqlite_compileoption_get() function. ** The result is a string that identifies the compiler options ** used to build SQLite. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS static void compileoptiongetFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int n; assert( argc==1 ); UNUSED_PARAMETER(argc); /* IMP: R-04922-24076 The sqlite_compileoption_get() SQL function ** is a wrapper around the sqlite3_compileoption_get() C/C++ function. */ n = sqlite3_value_int(argv[0]); sqlite3_result_text(context, sqlite3_compileoption_get(n), -1, SQLITE_STATIC); } #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ /* Array for converting from half-bytes (nybbles) into ASCII hex ** digits. */ static const char hexdigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; /* ** Append to pStr text that is the SQL literal representation of the ** value contained in pValue. */ SQLITE_PRIVATE void sqlite3QuoteValue(StrAccum *pStr, sqlite3_value *pValue){ /* As currently implemented, the string must be initially empty. ** we might relax this requirement in the future, but that will ** require enhancements to the implementation. */ assert( pStr!=0 && pStr->nChar==0 ); switch( sqlite3_value_type(pValue) ){ case SQLITE_FLOAT: { double r1, r2; const char *zVal; r1 = sqlite3_value_double(pValue); sqlite3_str_appendf(pStr, "%!.15g", r1); zVal = sqlite3_str_value(pStr); if( zVal ){ sqlite3AtoF(zVal, &r2, pStr->nChar, SQLITE_UTF8); if( r1!=r2 ){ sqlite3_str_reset(pStr); sqlite3_str_appendf(pStr, "%!.20e", r1); } } break; } case SQLITE_INTEGER: { sqlite3_str_appendf(pStr, "%lld", sqlite3_value_int64(pValue)); break; } case SQLITE_BLOB: { char const *zBlob = sqlite3_value_blob(pValue); int nBlob = sqlite3_value_bytes(pValue); assert( zBlob==sqlite3_value_blob(pValue) ); /* No encoding change */ sqlite3StrAccumEnlarge(pStr, nBlob*2 + 4); if( pStr->accError==0 ){ char *zText = pStr->zText; int i; for(i=0; i>4)&0x0F]; zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F]; } zText[(nBlob*2)+2] = '\''; zText[(nBlob*2)+3] = '\0'; zText[0] = 'X'; zText[1] = '\''; pStr->nChar = nBlob*2 + 3; } break; } case SQLITE_TEXT: { const unsigned char *zArg = sqlite3_value_text(pValue); sqlite3_str_appendf(pStr, "%Q", zArg); break; } default: { assert( sqlite3_value_type(pValue)==SQLITE_NULL ); sqlite3_str_append(pStr, "NULL", 4); break; } } } /* ** Implementation of the QUOTE() function. ** ** The quote(X) function returns the text of an SQL literal which is the ** value of its argument suitable for inclusion into an SQL statement. ** Strings are surrounded by single-quotes with escapes on interior quotes ** as needed. BLOBs are encoded as hexadecimal literals. Strings with ** embedded NUL characters cannot be represented as string literals in SQL ** and hence the returned string literal is truncated prior to the first NUL. */ static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ sqlite3_str str; sqlite3 *db = sqlite3_context_db_handle(context); assert( argc==1 ); UNUSED_PARAMETER(argc); sqlite3StrAccumInit(&str, db, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]); sqlite3QuoteValue(&str,argv[0]); sqlite3_result_text(context, sqlite3StrAccumFinish(&str), str.nChar, SQLITE_DYNAMIC); if( str.accError!=SQLITE_OK ){ sqlite3_result_null(context); sqlite3_result_error_code(context, str.accError); } } /* ** The unicode() function. Return the integer unicode code-point value ** for the first character of the input string. */ static void unicodeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *z = sqlite3_value_text(argv[0]); (void)argc; if( z && z[0] ) sqlite3_result_int(context, sqlite3Utf8Read(&z)); } /* ** The char() function takes zero or more arguments, each of which is ** an integer. It constructs a string where each character of the string ** is the unicode character for the corresponding integer argument. */ static void charFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ unsigned char *z, *zOut; int i; zOut = z = sqlite3_malloc64( argc*4+1 ); if( z==0 ){ sqlite3_result_error_nomem(context); return; } for(i=0; i0x10ffff ) x = 0xfffd; c = (unsigned)(x & 0x1fffff); if( c<0x00080 ){ *zOut++ = (u8)(c&0xFF); }else if( c<0x00800 ){ *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); *zOut++ = 0x80 + (u8)(c & 0x3F); }else if( c<0x10000 ){ *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); *zOut++ = 0x80 + (u8)(c & 0x3F); }else{ *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); *zOut++ = 0x80 + (u8)(c & 0x3F); } \ } sqlite3_result_text64(context, (char*)z, zOut-z, sqlite3_free, SQLITE_UTF8); } /* ** The hex() function. Interpret the argument as a blob. Return ** a hexadecimal rendering as text. */ static void hexFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int i, n; const unsigned char *pBlob; char *zHex, *z; assert( argc==1 ); UNUSED_PARAMETER(argc); pBlob = sqlite3_value_blob(argv[0]); n = sqlite3_value_bytes(argv[0]); assert( pBlob==sqlite3_value_blob(argv[0]) ); /* No encoding change */ z = zHex = contextMalloc(context, ((i64)n)*2 + 1); if( zHex ){ for(i=0; i>4)&0xf]; *(z++) = hexdigits[c&0xf]; } *z = 0; sqlite3_result_text(context, zHex, n*2, sqlite3_free); } } /* ** The zeroblob(N) function returns a zero-filled blob of size N bytes. */ static void zeroblobFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ i64 n; int rc; assert( argc==1 ); UNUSED_PARAMETER(argc); n = sqlite3_value_int64(argv[0]); if( n<0 ) n = 0; rc = sqlite3_result_zeroblob64(context, n); /* IMP: R-00293-64994 */ if( rc ){ sqlite3_result_error_code(context, rc); } } /* ** The replace() function. Three arguments are all strings: call ** them A, B, and C. The result is also a string which is derived ** from A by replacing every occurrence of B with C. The match ** must be exact. Collating sequences are not used. */ static void replaceFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zStr; /* The input string A */ const unsigned char *zPattern; /* The pattern string B */ const unsigned char *zRep; /* The replacement string C */ unsigned char *zOut; /* The output */ int nStr; /* Size of zStr */ int nPattern; /* Size of zPattern */ int nRep; /* Size of zRep */ i64 nOut; /* Maximum size of zOut */ int loopLimit; /* Last zStr[] that might match zPattern[] */ int i, j; /* Loop counters */ unsigned cntExpand; /* Number zOut expansions */ sqlite3 *db = sqlite3_context_db_handle(context); assert( argc==3 ); UNUSED_PARAMETER(argc); zStr = sqlite3_value_text(argv[0]); if( zStr==0 ) return; nStr = sqlite3_value_bytes(argv[0]); assert( zStr==sqlite3_value_text(argv[0]) ); /* No encoding change */ zPattern = sqlite3_value_text(argv[1]); if( zPattern==0 ){ assert( sqlite3_value_type(argv[1])==SQLITE_NULL || sqlite3_context_db_handle(context)->mallocFailed ); return; } if( zPattern[0]==0 ){ assert( sqlite3_value_type(argv[1])!=SQLITE_NULL ); sqlite3_result_value(context, argv[0]); return; } nPattern = sqlite3_value_bytes(argv[1]); assert( zPattern==sqlite3_value_text(argv[1]) ); /* No encoding change */ zRep = sqlite3_value_text(argv[2]); if( zRep==0 ) return; nRep = sqlite3_value_bytes(argv[2]); assert( zRep==sqlite3_value_text(argv[2]) ); nOut = nStr + 1; assert( nOutnPattern ){ nOut += nRep - nPattern; testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] ); testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] ); if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){ sqlite3_result_error_toobig(context); sqlite3_free(zOut); return; } cntExpand++; if( (cntExpand&(cntExpand-1))==0 ){ /* Grow the size of the output buffer only on substitutions ** whose index is a power of two: 1, 2, 4, 8, 16, 32, ... */ u8 *zOld; zOld = zOut; zOut = sqlite3Realloc(zOut, (int)nOut + (nOut - nStr - 1)); if( zOut==0 ){ sqlite3_result_error_nomem(context); sqlite3_free(zOld); return; } } } memcpy(&zOut[j], zRep, nRep); j += nRep; i += nPattern-1; } } assert( j+nStr-i+1<=nOut ); memcpy(&zOut[j], &zStr[i], nStr-i); j += nStr - i; assert( j<=nOut ); zOut[j] = 0; sqlite3_result_text(context, (char*)zOut, j, sqlite3_free); } /* ** Implementation of the TRIM(), LTRIM(), and RTRIM() functions. ** The userdata is 0x1 for left trim, 0x2 for right trim, 0x3 for both. */ static void trimFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zIn; /* Input string */ const unsigned char *zCharSet; /* Set of characters to trim */ unsigned int nIn; /* Number of bytes in input */ int flags; /* 1: trimleft 2: trimright 3: trim */ int i; /* Loop counter */ unsigned int *aLen = 0; /* Length of each character in zCharSet */ unsigned char **azChar = 0; /* Individual characters in zCharSet */ int nChar; /* Number of characters in zCharSet */ if( sqlite3_value_type(argv[0])==SQLITE_NULL ){ return; } zIn = sqlite3_value_text(argv[0]); if( zIn==0 ) return; nIn = (unsigned)sqlite3_value_bytes(argv[0]); assert( zIn==sqlite3_value_text(argv[0]) ); if( argc==1 ){ static const unsigned lenOne[] = { 1 }; static unsigned char * const azOne[] = { (u8*)" " }; nChar = 1; aLen = (unsigned*)lenOne; azChar = (unsigned char **)azOne; zCharSet = 0; }else if( (zCharSet = sqlite3_value_text(argv[1]))==0 ){ return; }else{ const unsigned char *z; for(z=zCharSet, nChar=0; *z; nChar++){ SQLITE_SKIP_UTF8(z); } if( nChar>0 ){ azChar = contextMalloc(context, ((i64)nChar)*(sizeof(char*)+sizeof(unsigned))); if( azChar==0 ){ return; } aLen = (unsigned*)&azChar[nChar]; for(z=zCharSet, nChar=0; *z; nChar++){ azChar[nChar] = (unsigned char *)z; SQLITE_SKIP_UTF8(z); aLen[nChar] = (unsigned)(z - azChar[nChar]); } } } if( nChar>0 ){ flags = SQLITE_PTR_TO_INT(sqlite3_user_data(context)); if( flags & 1 ){ while( nIn>0 ){ unsigned int len = 0; for(i=0; i=nChar ) break; zIn += len; nIn -= len; } } if( flags & 2 ){ while( nIn>0 ){ unsigned int len = 0; for(i=0; i=nChar ) break; nIn -= len; } } if( zCharSet ){ sqlite3_free(azChar); } } sqlite3_result_text(context, (char*)zIn, nIn, SQLITE_TRANSIENT); } #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION /* ** The "unknown" function is automatically substituted in place of ** any unrecognized function name when doing an EXPLAIN or EXPLAIN QUERY PLAN ** when the SQLITE_ENABLE_UNKNOWN_FUNCTION compile-time option is used. ** When the "sqlite3" command-line shell is built using this functionality, ** that allows an EXPLAIN or EXPLAIN QUERY PLAN for complex queries ** involving application-defined functions to be examined in a generic ** sqlite3 shell. */ static void unknownFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ /* no-op */ } #endif /*SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION*/ /* IMP: R-25361-16150 This function is omitted from SQLite by default. It ** is only available if the SQLITE_SOUNDEX compile-time option is used ** when SQLite is built. */ #ifdef SQLITE_SOUNDEX /* ** Compute the soundex encoding of a word. ** ** IMP: R-59782-00072 The soundex(X) function returns a string that is the ** soundex encoding of the string X. */ static void soundexFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ char zResult[8]; const u8 *zIn; int i, j; static const unsigned char iCode[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, }; assert( argc==1 ); zIn = (u8*)sqlite3_value_text(argv[0]); if( zIn==0 ) zIn = (u8*)""; for(i=0; zIn[i] && !sqlite3Isalpha(zIn[i]); i++){} if( zIn[i] ){ u8 prevcode = iCode[zIn[i]&0x7f]; zResult[0] = sqlite3Toupper(zIn[i]); for(j=1; j<4 && zIn[i]; i++){ int code = iCode[zIn[i]&0x7f]; if( code>0 ){ if( code!=prevcode ){ prevcode = code; zResult[j++] = code + '0'; } }else{ prevcode = 0; } } while( j<4 ){ zResult[j++] = '0'; } zResult[j] = 0; sqlite3_result_text(context, zResult, 4, SQLITE_TRANSIENT); }else{ /* IMP: R-64894-50321 The string "?000" is returned if the argument ** is NULL or contains no ASCII alphabetic characters. */ sqlite3_result_text(context, "?000", 4, SQLITE_STATIC); } } #endif /* SQLITE_SOUNDEX */ #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** A function that loads a shared-library extension then returns NULL. */ static void loadExt(sqlite3_context *context, int argc, sqlite3_value **argv){ const char *zFile = (const char *)sqlite3_value_text(argv[0]); const char *zProc; sqlite3 *db = sqlite3_context_db_handle(context); char *zErrMsg = 0; /* Disallow the load_extension() SQL function unless the SQLITE_LoadExtFunc ** flag is set. See the sqlite3_enable_load_extension() API. */ if( (db->flags & SQLITE_LoadExtFunc)==0 ){ sqlite3_result_error(context, "not authorized", -1); return; } if( argc==2 ){ zProc = (const char *)sqlite3_value_text(argv[1]); }else{ zProc = 0; } if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){ sqlite3_result_error(context, zErrMsg, -1); sqlite3_free(zErrMsg); } } #endif /* ** An instance of the following structure holds the context of a ** sum() or avg() aggregate computation. */ typedef struct SumCtx SumCtx; struct SumCtx { double rSum; /* Floating point sum */ i64 iSum; /* Integer sum */ i64 cnt; /* Number of elements summed */ u8 overflow; /* True if integer overflow seen */ u8 approx; /* True if non-integer value was input to the sum */ }; /* ** Routines used to compute the sum, average, and total. ** ** The SUM() function follows the (broken) SQL standard which means ** that it returns NULL if it sums over no inputs. TOTAL returns ** 0.0 in that case. In addition, TOTAL always returns a float where ** SUM might return an integer if it never encounters a floating point ** value. TOTAL never fails, but SUM might through an exception if ** it overflows an integer. */ static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){ SumCtx *p; int type; assert( argc==1 ); UNUSED_PARAMETER(argc); p = sqlite3_aggregate_context(context, sizeof(*p)); type = sqlite3_value_numeric_type(argv[0]); if( p && type!=SQLITE_NULL ){ p->cnt++; if( type==SQLITE_INTEGER ){ i64 v = sqlite3_value_int64(argv[0]); p->rSum += v; if( (p->approx|p->overflow)==0 && sqlite3AddInt64(&p->iSum, v) ){ p->approx = p->overflow = 1; } }else{ p->rSum += sqlite3_value_double(argv[0]); p->approx = 1; } } } #ifndef SQLITE_OMIT_WINDOWFUNC static void sumInverse(sqlite3_context *context, int argc, sqlite3_value**argv){ SumCtx *p; int type; assert( argc==1 ); UNUSED_PARAMETER(argc); p = sqlite3_aggregate_context(context, sizeof(*p)); type = sqlite3_value_numeric_type(argv[0]); /* p is always non-NULL because sumStep() will have been called first ** to initialize it */ if( ALWAYS(p) && type!=SQLITE_NULL ){ assert( p->cnt>0 ); p->cnt--; assert( type==SQLITE_INTEGER || p->approx ); if( type==SQLITE_INTEGER && p->approx==0 ){ i64 v = sqlite3_value_int64(argv[0]); p->rSum -= v; p->iSum -= v; }else{ p->rSum -= sqlite3_value_double(argv[0]); } } } #else # define sumInverse 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ static void sumFinalize(sqlite3_context *context){ SumCtx *p; p = sqlite3_aggregate_context(context, 0); if( p && p->cnt>0 ){ if( p->overflow ){ sqlite3_result_error(context,"integer overflow",-1); }else if( p->approx ){ sqlite3_result_double(context, p->rSum); }else{ sqlite3_result_int64(context, p->iSum); } } } static void avgFinalize(sqlite3_context *context){ SumCtx *p; p = sqlite3_aggregate_context(context, 0); if( p && p->cnt>0 ){ sqlite3_result_double(context, p->rSum/(double)p->cnt); } } static void totalFinalize(sqlite3_context *context){ SumCtx *p; p = sqlite3_aggregate_context(context, 0); /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ sqlite3_result_double(context, p ? p->rSum : (double)0); } /* ** The following structure keeps track of state information for the ** count() aggregate function. */ typedef struct CountCtx CountCtx; struct CountCtx { i64 n; #ifdef SQLITE_DEBUG int bInverse; /* True if xInverse() ever called */ #endif }; /* ** Routines to implement the count() aggregate function. */ static void countStep(sqlite3_context *context, int argc, sqlite3_value **argv){ CountCtx *p; p = sqlite3_aggregate_context(context, sizeof(*p)); if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && p ){ p->n++; } #ifndef SQLITE_OMIT_DEPRECATED /* The sqlite3_aggregate_count() function is deprecated. But just to make ** sure it still operates correctly, verify that its count agrees with our ** internal count when using count(*) and when the total count can be ** expressed as a 32-bit integer. */ assert( argc==1 || p==0 || p->n>0x7fffffff || p->bInverse || p->n==sqlite3_aggregate_count(context) ); #endif } static void countFinalize(sqlite3_context *context){ CountCtx *p; p = sqlite3_aggregate_context(context, 0); sqlite3_result_int64(context, p ? p->n : 0); } #ifndef SQLITE_OMIT_WINDOWFUNC static void countInverse(sqlite3_context *ctx, int argc, sqlite3_value **argv){ CountCtx *p; p = sqlite3_aggregate_context(ctx, sizeof(*p)); /* p is always non-NULL since countStep() will have been called first */ if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && ALWAYS(p) ){ p->n--; #ifdef SQLITE_DEBUG p->bInverse = 1; #endif } } #else # define countInverse 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** Routines to implement min() and max() aggregate functions. */ static void minmaxStep( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ Mem *pArg = (Mem *)argv[0]; Mem *pBest; UNUSED_PARAMETER(NotUsed); pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest)); if( !pBest ) return; if( sqlite3_value_type(pArg)==SQLITE_NULL ){ if( pBest->flags ) sqlite3SkipAccumulatorLoad(context); }else if( pBest->flags ){ int max; int cmp; CollSeq *pColl = sqlite3GetFuncCollSeq(context); /* This step function is used for both the min() and max() aggregates, ** the only difference between the two being that the sense of the ** comparison is inverted. For the max() aggregate, the ** sqlite3_user_data() function returns (void *)-1. For min() it ** returns (void *)db, where db is the sqlite3* database pointer. ** Therefore the next statement sets variable 'max' to 1 for the max() ** aggregate, or 0 for min(). */ max = sqlite3_user_data(context)!=0; cmp = sqlite3MemCompare(pBest, pArg, pColl); if( (max && cmp<0) || (!max && cmp>0) ){ sqlite3VdbeMemCopy(pBest, pArg); }else{ sqlite3SkipAccumulatorLoad(context); } }else{ pBest->db = sqlite3_context_db_handle(context); sqlite3VdbeMemCopy(pBest, pArg); } } static void minMaxValueFinalize(sqlite3_context *context, int bValue){ sqlite3_value *pRes; pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0); if( pRes ){ if( pRes->flags ){ sqlite3_result_value(context, pRes); } if( bValue==0 ) sqlite3VdbeMemRelease(pRes); } } #ifndef SQLITE_OMIT_WINDOWFUNC static void minMaxValue(sqlite3_context *context){ minMaxValueFinalize(context, 1); } #else # define minMaxValue 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ static void minMaxFinalize(sqlite3_context *context){ minMaxValueFinalize(context, 0); } /* ** group_concat(EXPR, ?SEPARATOR?) ** ** The SEPARATOR goes before the EXPR string. This is tragic. The ** groupConcatInverse() implementation would have been easier if the ** SEPARATOR were appended after EXPR. And the order is undocumented, ** so we could change it, in theory. But the old behavior has been ** around for so long that we dare not, for fear of breaking something. */ typedef struct { StrAccum str; /* The accumulated concatenation */ #ifndef SQLITE_OMIT_WINDOWFUNC int nAccum; /* Number of strings presently concatenated */ int nFirstSepLength; /* Used to detect separator length change */ /* If pnSepLengths!=0, refs an array of inter-string separator lengths, ** stored as actually incorporated into presently accumulated result. ** (Hence, its slots in use number nAccum-1 between method calls.) ** If pnSepLengths==0, nFirstSepLength is the length used throughout. */ int *pnSepLengths; #endif } GroupConcatCtx; static void groupConcatStep( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *zVal; GroupConcatCtx *pGCC; const char *zSep; int nVal, nSep; assert( argc==1 || argc==2 ); if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; pGCC = (GroupConcatCtx*)sqlite3_aggregate_context(context, sizeof(*pGCC)); if( pGCC ){ sqlite3 *db = sqlite3_context_db_handle(context); int firstTerm = pGCC->str.mxAlloc==0; pGCC->str.mxAlloc = db->aLimit[SQLITE_LIMIT_LENGTH]; if( argc==1 ){ if( !firstTerm ){ sqlite3_str_appendchar(&pGCC->str, 1, ','); } #ifndef SQLITE_OMIT_WINDOWFUNC else{ pGCC->nFirstSepLength = 1; } #endif }else if( !firstTerm ){ zSep = (char*)sqlite3_value_text(argv[1]); nSep = sqlite3_value_bytes(argv[1]); if( zSep ){ sqlite3_str_append(&pGCC->str, zSep, nSep); } #ifndef SQLITE_OMIT_WINDOWFUNC else{ nSep = 0; } if( nSep != pGCC->nFirstSepLength || pGCC->pnSepLengths != 0 ){ int *pnsl = pGCC->pnSepLengths; if( pnsl == 0 ){ /* First separator length variation seen, start tracking them. */ pnsl = (int*)sqlite3_malloc64((pGCC->nAccum+1) * sizeof(int)); if( pnsl!=0 ){ int i = 0, nA = pGCC->nAccum-1; while( inFirstSepLength; } }else{ pnsl = (int*)sqlite3_realloc64(pnsl, pGCC->nAccum * sizeof(int)); } if( pnsl!=0 ){ if( ALWAYS(pGCC->nAccum>0) ){ pnsl[pGCC->nAccum-1] = nSep; } pGCC->pnSepLengths = pnsl; }else{ sqlite3StrAccumSetError(&pGCC->str, SQLITE_NOMEM); } } #endif } #ifndef SQLITE_OMIT_WINDOWFUNC else{ pGCC->nFirstSepLength = sqlite3_value_bytes(argv[1]); } pGCC->nAccum += 1; #endif zVal = (char*)sqlite3_value_text(argv[0]); nVal = sqlite3_value_bytes(argv[0]); if( zVal ) sqlite3_str_append(&pGCC->str, zVal, nVal); } } #ifndef SQLITE_OMIT_WINDOWFUNC static void groupConcatInverse( sqlite3_context *context, int argc, sqlite3_value **argv ){ GroupConcatCtx *pGCC; assert( argc==1 || argc==2 ); (void)argc; /* Suppress unused parameter warning */ if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; pGCC = (GroupConcatCtx*)sqlite3_aggregate_context(context, sizeof(*pGCC)); /* pGCC is always non-NULL since groupConcatStep() will have always ** run frist to initialize it */ if( ALWAYS(pGCC) ){ int nVS; /* Must call sqlite3_value_text() to convert the argument into text prior ** to invoking sqlite3_value_bytes(), in case the text encoding is UTF16 */ (void)sqlite3_value_text(argv[0]); nVS = sqlite3_value_bytes(argv[0]); pGCC->nAccum -= 1; if( pGCC->pnSepLengths!=0 ){ assert(pGCC->nAccum >= 0); if( pGCC->nAccum>0 ){ nVS += *pGCC->pnSepLengths; memmove(pGCC->pnSepLengths, pGCC->pnSepLengths+1, (pGCC->nAccum-1)*sizeof(int)); } }else{ /* If removing single accumulated string, harmlessly over-do. */ nVS += pGCC->nFirstSepLength; } if( nVS>=(int)pGCC->str.nChar ){ pGCC->str.nChar = 0; }else{ pGCC->str.nChar -= nVS; memmove(pGCC->str.zText, &pGCC->str.zText[nVS], pGCC->str.nChar); } if( pGCC->str.nChar==0 ){ pGCC->str.mxAlloc = 0; sqlite3_free(pGCC->pnSepLengths); pGCC->pnSepLengths = 0; } } } #else # define groupConcatInverse 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ static void groupConcatFinalize(sqlite3_context *context){ GroupConcatCtx *pGCC = (GroupConcatCtx*)sqlite3_aggregate_context(context, 0); if( pGCC ){ sqlite3ResultStrAccum(context, &pGCC->str); #ifndef SQLITE_OMIT_WINDOWFUNC sqlite3_free(pGCC->pnSepLengths); #endif } } #ifndef SQLITE_OMIT_WINDOWFUNC static void groupConcatValue(sqlite3_context *context){ GroupConcatCtx *pGCC = (GroupConcatCtx*)sqlite3_aggregate_context(context, 0); if( pGCC ){ StrAccum *pAccum = &pGCC->str; if( pAccum->accError==SQLITE_TOOBIG ){ sqlite3_result_error_toobig(context); }else if( pAccum->accError==SQLITE_NOMEM ){ sqlite3_result_error_nomem(context); }else{ const char *zText = sqlite3_str_value(pAccum); sqlite3_result_text(context, zText, pAccum->nChar, SQLITE_TRANSIENT); } } } #else # define groupConcatValue 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** This routine does per-connection function registration. Most ** of the built-in functions above are part of the global function set. ** This routine only deals with those that are not global. */ SQLITE_PRIVATE void sqlite3RegisterPerConnectionBuiltinFunctions(sqlite3 *db){ int rc = sqlite3_overload_function(db, "MATCH", 2); assert( rc==SQLITE_NOMEM || rc==SQLITE_OK ); if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); } } /* ** Re-register the built-in LIKE functions. The caseSensitive ** parameter determines whether or not the LIKE operator is case ** sensitive. */ SQLITE_PRIVATE void sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive){ struct compareInfo *pInfo; int flags; if( caseSensitive ){ pInfo = (struct compareInfo*)&likeInfoAlt; flags = SQLITE_FUNC_LIKE | SQLITE_FUNC_CASE; }else{ pInfo = (struct compareInfo*)&likeInfoNorm; flags = SQLITE_FUNC_LIKE; } sqlite3CreateFunc(db, "like", 2, SQLITE_UTF8, pInfo, likeFunc, 0, 0, 0, 0, 0); sqlite3CreateFunc(db, "like", 3, SQLITE_UTF8, pInfo, likeFunc, 0, 0, 0, 0, 0); sqlite3FindFunction(db, "like", 2, SQLITE_UTF8, 0)->funcFlags |= flags; sqlite3FindFunction(db, "like", 3, SQLITE_UTF8, 0)->funcFlags |= flags; } /* ** pExpr points to an expression which implements a function. If ** it is appropriate to apply the LIKE optimization to that function ** then set aWc[0] through aWc[2] to the wildcard characters and the ** escape character and then return TRUE. If the function is not a ** LIKE-style function then return FALSE. ** ** The expression "a LIKE b ESCAPE c" is only considered a valid LIKE ** operator if c is a string literal that is exactly one byte in length. ** That one byte is stored in aWc[3]. aWc[3] is set to zero if there is ** no ESCAPE clause. ** ** *pIsNocase is set to true if uppercase and lowercase are equivalent for ** the function (default for LIKE). If the function makes the distinction ** between uppercase and lowercase (as does GLOB) then *pIsNocase is set to ** false. */ SQLITE_PRIVATE int sqlite3IsLikeFunction(sqlite3 *db, Expr *pExpr, int *pIsNocase, char *aWc){ FuncDef *pDef; int nExpr; assert( pExpr!=0 ); assert( pExpr->op==TK_FUNCTION ); assert( ExprUseXList(pExpr) ); if( !pExpr->x.pList ){ return 0; } nExpr = pExpr->x.pList->nExpr; assert( !ExprHasProperty(pExpr, EP_IntValue) ); pDef = sqlite3FindFunction(db, pExpr->u.zToken, nExpr, SQLITE_UTF8, 0); #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION if( pDef==0 ) return 0; #endif if( NEVER(pDef==0) || (pDef->funcFlags & SQLITE_FUNC_LIKE)==0 ){ return 0; } /* The memcpy() statement assumes that the wildcard characters are ** the first three statements in the compareInfo structure. The ** asserts() that follow verify that assumption */ memcpy(aWc, pDef->pUserData, 3); assert( (char*)&likeInfoAlt == (char*)&likeInfoAlt.matchAll ); assert( &((char*)&likeInfoAlt)[1] == (char*)&likeInfoAlt.matchOne ); assert( &((char*)&likeInfoAlt)[2] == (char*)&likeInfoAlt.matchSet ); if( nExpr<3 ){ aWc[3] = 0; }else{ Expr *pEscape = pExpr->x.pList->a[2].pExpr; char *zEscape; if( pEscape->op!=TK_STRING ) return 0; assert( !ExprHasProperty(pEscape, EP_IntValue) ); zEscape = pEscape->u.zToken; if( zEscape[0]==0 || zEscape[1]!=0 ) return 0; if( zEscape[0]==aWc[0] ) return 0; if( zEscape[0]==aWc[1] ) return 0; aWc[3] = zEscape[0]; } *pIsNocase = (pDef->funcFlags & SQLITE_FUNC_CASE)==0; return 1; } /* Mathematical Constants */ #ifndef M_PI # define M_PI 3.141592653589793238462643383279502884 #endif #ifndef M_LN10 # define M_LN10 2.302585092994045684017991454684364208 #endif #ifndef M_LN2 # define M_LN2 0.693147180559945309417232121458176568 #endif /* Extra math functions that require linking with -lm */ #ifdef SQLITE_ENABLE_MATH_FUNCTIONS /* ** Implementation SQL functions: ** ** ceil(X) ** ceiling(X) ** floor(X) ** ** The sqlite3_user_data() pointer is a pointer to the libm implementation ** of the underlying C function. */ static void ceilingFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ assert( argc==1 ); switch( sqlite3_value_numeric_type(argv[0]) ){ case SQLITE_INTEGER: { sqlite3_result_int64(context, sqlite3_value_int64(argv[0])); break; } case SQLITE_FLOAT: { double (*x)(double) = (double(*)(double))sqlite3_user_data(context); sqlite3_result_double(context, x(sqlite3_value_double(argv[0]))); break; } default: { break; } } } /* ** On some systems, ceil() and floor() are intrinsic function. You are ** unable to take a pointer to these functions. Hence, we here wrap them ** in our own actual functions. */ static double xCeil(double x){ return ceil(x); } static double xFloor(double x){ return floor(x); } /* ** Implementation of SQL functions: ** ** ln(X) - natural logarithm ** log(X) - log X base 10 ** log10(X) - log X base 10 ** log(B,X) - log X base B */ static void logFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ double x, b, ans; assert( argc==1 || argc==2 ); switch( sqlite3_value_numeric_type(argv[0]) ){ case SQLITE_INTEGER: case SQLITE_FLOAT: x = sqlite3_value_double(argv[0]); if( x<=0.0 ) return; break; default: return; } if( argc==2 ){ switch( sqlite3_value_numeric_type(argv[0]) ){ case SQLITE_INTEGER: case SQLITE_FLOAT: b = log(x); if( b<=0.0 ) return; x = sqlite3_value_double(argv[1]); if( x<=0.0 ) return; break; default: return; } ans = log(x)/b; }else{ ans = log(x); switch( SQLITE_PTR_TO_INT(sqlite3_user_data(context)) ){ case 1: /* Convert from natural logarithm to log base 10 */ ans *= 1.0/M_LN10; break; case 2: /* Convert from natural logarithm to log base 2 */ ans *= 1.0/M_LN2; break; default: break; } } sqlite3_result_double(context, ans); } /* ** Functions to converts degrees to radians and radians to degrees. */ static double degToRad(double x){ return x*(M_PI/180.0); } static double radToDeg(double x){ return x*(180.0/M_PI); } /* ** Implementation of 1-argument SQL math functions: ** ** exp(X) - Compute e to the X-th power */ static void math1Func( sqlite3_context *context, int argc, sqlite3_value **argv ){ int type0; double v0, ans; double (*x)(double); assert( argc==1 ); type0 = sqlite3_value_numeric_type(argv[0]); if( type0!=SQLITE_INTEGER && type0!=SQLITE_FLOAT ) return; v0 = sqlite3_value_double(argv[0]); x = (double(*)(double))sqlite3_user_data(context); ans = x(v0); sqlite3_result_double(context, ans); } /* ** Implementation of 2-argument SQL math functions: ** ** power(X,Y) - Compute X to the Y-th power */ static void math2Func( sqlite3_context *context, int argc, sqlite3_value **argv ){ int type0, type1; double v0, v1, ans; double (*x)(double,double); assert( argc==2 ); type0 = sqlite3_value_numeric_type(argv[0]); if( type0!=SQLITE_INTEGER && type0!=SQLITE_FLOAT ) return; type1 = sqlite3_value_numeric_type(argv[1]); if( type1!=SQLITE_INTEGER && type1!=SQLITE_FLOAT ) return; v0 = sqlite3_value_double(argv[0]); v1 = sqlite3_value_double(argv[1]); x = (double(*)(double,double))sqlite3_user_data(context); ans = x(v0, v1); sqlite3_result_double(context, ans); } /* ** Implementation of 0-argument pi() function. */ static void piFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ assert( argc==0 ); sqlite3_result_double(context, M_PI); } #endif /* SQLITE_ENABLE_MATH_FUNCTIONS */ /* ** Implementation of sign(X) function. */ static void signFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int type0; double x; UNUSED_PARAMETER(argc); assert( argc==1 ); type0 = sqlite3_value_numeric_type(argv[0]); if( type0!=SQLITE_INTEGER && type0!=SQLITE_FLOAT ) return; x = sqlite3_value_double(argv[0]); sqlite3_result_int(context, x<0.0 ? -1 : x>0.0 ? +1 : 0); } /* ** All of the FuncDef structures in the aBuiltinFunc[] array above ** to the global function hash table. This occurs at start-time (as ** a consequence of calling sqlite3_initialize()). ** ** After this routine runs */ SQLITE_PRIVATE void sqlite3RegisterBuiltinFunctions(void){ /* ** The following array holds FuncDef structures for all of the functions ** defined in this file. ** ** The array cannot be constant since changes are made to the ** FuncDef.pHash elements at start-time. The elements of this array ** are read-only after initialization is complete. ** ** For peak efficiency, put the most frequently used function last. */ static FuncDef aBuiltinFunc[] = { /***** Functions only available with SQLITE_TESTCTRL_INTERNAL_FUNCTIONS *****/ #if !defined(SQLITE_UNTESTABLE) TEST_FUNC(implies_nonnull_row, 2, INLINEFUNC_implies_nonnull_row, 0), TEST_FUNC(expr_compare, 2, INLINEFUNC_expr_compare, 0), TEST_FUNC(expr_implies_expr, 2, INLINEFUNC_expr_implies_expr, 0), TEST_FUNC(affinity, 1, INLINEFUNC_affinity, 0), #endif /* !defined(SQLITE_UNTESTABLE) */ /***** Regular functions *****/ #ifdef SQLITE_SOUNDEX FUNCTION(soundex, 1, 0, 0, soundexFunc ), #endif #ifndef SQLITE_OMIT_LOAD_EXTENSION SFUNCTION(load_extension, 1, 0, 0, loadExt ), SFUNCTION(load_extension, 2, 0, 0, loadExt ), #endif #if SQLITE_USER_AUTHENTICATION FUNCTION(sqlite_crypt, 2, 0, 0, sqlite3CryptFunc ), #endif #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS DFUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ), DFUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ), #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ INLINE_FUNC(unlikely, 1, INLINEFUNC_unlikely, SQLITE_FUNC_UNLIKELY), INLINE_FUNC(likelihood, 2, INLINEFUNC_unlikely, SQLITE_FUNC_UNLIKELY), INLINE_FUNC(likely, 1, INLINEFUNC_unlikely, SQLITE_FUNC_UNLIKELY), #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC FUNCTION2(sqlite_offset, 1, 0, 0, noopFunc, SQLITE_FUNC_OFFSET| SQLITE_FUNC_TYPEOF), #endif FUNCTION(ltrim, 1, 1, 0, trimFunc ), FUNCTION(ltrim, 2, 1, 0, trimFunc ), FUNCTION(rtrim, 1, 2, 0, trimFunc ), FUNCTION(rtrim, 2, 2, 0, trimFunc ), FUNCTION(trim, 1, 3, 0, trimFunc ), FUNCTION(trim, 2, 3, 0, trimFunc ), FUNCTION(min, -1, 0, 1, minmaxFunc ), FUNCTION(min, 0, 0, 1, 0 ), WAGGREGATE(min, 1, 0, 1, minmaxStep, minMaxFinalize, minMaxValue, 0, SQLITE_FUNC_MINMAX|SQLITE_FUNC_ANYORDER ), FUNCTION(max, -1, 1, 1, minmaxFunc ), FUNCTION(max, 0, 1, 1, 0 ), WAGGREGATE(max, 1, 1, 1, minmaxStep, minMaxFinalize, minMaxValue, 0, SQLITE_FUNC_MINMAX|SQLITE_FUNC_ANYORDER ), FUNCTION2(typeof, 1, 0, 0, typeofFunc, SQLITE_FUNC_TYPEOF), FUNCTION2(subtype, 1, 0, 0, subtypeFunc, SQLITE_FUNC_TYPEOF), FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), FUNCTION(instr, 2, 0, 0, instrFunc ), FUNCTION(printf, -1, 0, 0, printfFunc ), FUNCTION(format, -1, 0, 0, printfFunc ), FUNCTION(unicode, 1, 0, 0, unicodeFunc ), FUNCTION(char, -1, 0, 0, charFunc ), FUNCTION(abs, 1, 0, 0, absFunc ), #ifndef SQLITE_OMIT_FLOATING_POINT FUNCTION(round, 1, 0, 0, roundFunc ), FUNCTION(round, 2, 0, 0, roundFunc ), #endif FUNCTION(upper, 1, 0, 0, upperFunc ), FUNCTION(lower, 1, 0, 0, lowerFunc ), FUNCTION(hex, 1, 0, 0, hexFunc ), INLINE_FUNC(ifnull, 2, INLINEFUNC_coalesce, 0 ), VFUNCTION(random, 0, 0, 0, randomFunc ), VFUNCTION(randomblob, 1, 0, 0, randomBlob ), FUNCTION(nullif, 2, 0, 1, nullifFunc ), DFUNCTION(sqlite_version, 0, 0, 0, versionFunc ), DFUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ), FUNCTION(sqlite_log, 2, 0, 0, errlogFunc ), FUNCTION(quote, 1, 0, 0, quoteFunc ), VFUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid), VFUNCTION(changes, 0, 0, 0, changes ), VFUNCTION(total_changes, 0, 0, 0, total_changes ), FUNCTION(replace, 3, 0, 0, replaceFunc ), FUNCTION(zeroblob, 1, 0, 0, zeroblobFunc ), FUNCTION(substr, 2, 0, 0, substrFunc ), FUNCTION(substr, 3, 0, 0, substrFunc ), FUNCTION(substring, 2, 0, 0, substrFunc ), FUNCTION(substring, 3, 0, 0, substrFunc ), WAGGREGATE(sum, 1,0,0, sumStep, sumFinalize, sumFinalize, sumInverse, 0), WAGGREGATE(total, 1,0,0, sumStep,totalFinalize,totalFinalize,sumInverse, 0), WAGGREGATE(avg, 1,0,0, sumStep, avgFinalize, avgFinalize, sumInverse, 0), WAGGREGATE(count, 0,0,0, countStep, countFinalize, countFinalize, countInverse, SQLITE_FUNC_COUNT|SQLITE_FUNC_ANYORDER ), WAGGREGATE(count, 1,0,0, countStep, countFinalize, countFinalize, countInverse, SQLITE_FUNC_ANYORDER ), WAGGREGATE(group_concat, 1, 0, 0, groupConcatStep, groupConcatFinalize, groupConcatValue, groupConcatInverse, 0), WAGGREGATE(group_concat, 2, 0, 0, groupConcatStep, groupConcatFinalize, groupConcatValue, groupConcatInverse, 0), LIKEFUNC(glob, 2, &globInfo, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), #ifdef SQLITE_CASE_SENSITIVE_LIKE LIKEFUNC(like, 2, &likeInfoAlt, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), LIKEFUNC(like, 3, &likeInfoAlt, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), #else LIKEFUNC(like, 2, &likeInfoNorm, SQLITE_FUNC_LIKE), LIKEFUNC(like, 3, &likeInfoNorm, SQLITE_FUNC_LIKE), #endif #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION FUNCTION(unknown, -1, 0, 0, unknownFunc ), #endif FUNCTION(coalesce, 1, 0, 0, 0 ), FUNCTION(coalesce, 0, 0, 0, 0 ), #ifdef SQLITE_ENABLE_MATH_FUNCTIONS MFUNCTION(ceil, 1, xCeil, ceilingFunc ), MFUNCTION(ceiling, 1, xCeil, ceilingFunc ), MFUNCTION(floor, 1, xFloor, ceilingFunc ), #if SQLITE_HAVE_C99_MATH_FUNCS MFUNCTION(trunc, 1, trunc, ceilingFunc ), #endif FUNCTION(ln, 1, 0, 0, logFunc ), FUNCTION(log, 1, 1, 0, logFunc ), FUNCTION(log10, 1, 1, 0, logFunc ), FUNCTION(log2, 1, 2, 0, logFunc ), FUNCTION(log, 2, 0, 0, logFunc ), MFUNCTION(exp, 1, exp, math1Func ), MFUNCTION(pow, 2, pow, math2Func ), MFUNCTION(power, 2, pow, math2Func ), MFUNCTION(mod, 2, fmod, math2Func ), MFUNCTION(acos, 1, acos, math1Func ), MFUNCTION(asin, 1, asin, math1Func ), MFUNCTION(atan, 1, atan, math1Func ), MFUNCTION(atan2, 2, atan2, math2Func ), MFUNCTION(cos, 1, cos, math1Func ), MFUNCTION(sin, 1, sin, math1Func ), MFUNCTION(tan, 1, tan, math1Func ), MFUNCTION(cosh, 1, cosh, math1Func ), MFUNCTION(sinh, 1, sinh, math1Func ), MFUNCTION(tanh, 1, tanh, math1Func ), #if SQLITE_HAVE_C99_MATH_FUNCS MFUNCTION(acosh, 1, acosh, math1Func ), MFUNCTION(asinh, 1, asinh, math1Func ), MFUNCTION(atanh, 1, atanh, math1Func ), #endif MFUNCTION(sqrt, 1, sqrt, math1Func ), MFUNCTION(radians, 1, degToRad, math1Func ), MFUNCTION(degrees, 1, radToDeg, math1Func ), FUNCTION(pi, 0, 0, 0, piFunc ), #endif /* SQLITE_ENABLE_MATH_FUNCTIONS */ FUNCTION(sign, 1, 0, 0, signFunc ), INLINE_FUNC(coalesce, -1, INLINEFUNC_coalesce, 0 ), INLINE_FUNC(iif, 3, INLINEFUNC_iif, 0 ), }; #ifndef SQLITE_OMIT_ALTERTABLE sqlite3AlterFunctions(); #endif sqlite3WindowFunctions(); sqlite3RegisterDateTimeFunctions(); sqlite3RegisterJsonFunctions(); sqlite3InsertBuiltinFuncs(aBuiltinFunc, ArraySize(aBuiltinFunc)); #if 0 /* Enable to print out how the built-in functions are hashed */ { int i; FuncDef *p; for(i=0; iu.pHash){ int n = sqlite3Strlen30(p->zName); int h = p->zName[0] + n; assert( p->funcFlags & SQLITE_FUNC_BUILTIN ); printf(" %s(%d)", p->zName, h); } printf("\n"); } } #endif } /************** End of func.c ************************************************/ /************** Begin file fkey.c ********************************************/ /* ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used by the compiler to add foreign key ** support to compiled SQL statements. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_FOREIGN_KEY #ifndef SQLITE_OMIT_TRIGGER /* ** Deferred and Immediate FKs ** -------------------------- ** ** Foreign keys in SQLite come in two flavours: deferred and immediate. ** If an immediate foreign key constraint is violated, ** SQLITE_CONSTRAINT_FOREIGNKEY is returned and the current ** statement transaction rolled back. If a ** deferred foreign key constraint is violated, no action is taken ** immediately. However if the application attempts to commit the ** transaction before fixing the constraint violation, the attempt fails. ** ** Deferred constraints are implemented using a simple counter associated ** with the database handle. The counter is set to zero each time a ** database transaction is opened. Each time a statement is executed ** that causes a foreign key violation, the counter is incremented. Each ** time a statement is executed that removes an existing violation from ** the database, the counter is decremented. When the transaction is ** committed, the commit fails if the current value of the counter is ** greater than zero. This scheme has two big drawbacks: ** ** * When a commit fails due to a deferred foreign key constraint, ** there is no way to tell which foreign constraint is not satisfied, ** or which row it is not satisfied for. ** ** * If the database contains foreign key violations when the ** transaction is opened, this may cause the mechanism to malfunction. ** ** Despite these problems, this approach is adopted as it seems simpler ** than the alternatives. ** ** INSERT operations: ** ** I.1) For each FK for which the table is the child table, search ** the parent table for a match. If none is found increment the ** constraint counter. ** ** I.2) For each FK for which the table is the parent table, ** search the child table for rows that correspond to the new ** row in the parent table. Decrement the counter for each row ** found (as the constraint is now satisfied). ** ** DELETE operations: ** ** D.1) For each FK for which the table is the child table, ** search the parent table for a row that corresponds to the ** deleted row in the child table. If such a row is not found, ** decrement the counter. ** ** D.2) For each FK for which the table is the parent table, search ** the child table for rows that correspond to the deleted row ** in the parent table. For each found increment the counter. ** ** UPDATE operations: ** ** An UPDATE command requires that all 4 steps above are taken, but only ** for FK constraints for which the affected columns are actually ** modified (values must be compared at runtime). ** ** Note that I.1 and D.1 are very similar operations, as are I.2 and D.2. ** This simplifies the implementation a bit. ** ** For the purposes of immediate FK constraints, the OR REPLACE conflict ** resolution is considered to delete rows before the new row is inserted. ** If a delete caused by OR REPLACE violates an FK constraint, an exception ** is thrown, even if the FK constraint would be satisfied after the new ** row is inserted. ** ** Immediate constraints are usually handled similarly. The only difference ** is that the counter used is stored as part of each individual statement ** object (struct Vdbe). If, after the statement has run, its immediate ** constraint counter is greater than zero, ** it returns SQLITE_CONSTRAINT_FOREIGNKEY ** and the statement transaction is rolled back. An exception is an INSERT ** statement that inserts a single row only (no triggers). In this case, ** instead of using a counter, an exception is thrown immediately if the ** INSERT violates a foreign key constraint. This is necessary as such ** an INSERT does not open a statement transaction. ** ** TODO: How should dropping a table be handled? How should renaming a ** table be handled? ** ** ** Query API Notes ** --------------- ** ** Before coding an UPDATE or DELETE row operation, the code-generator ** for those two operations needs to know whether or not the operation ** requires any FK processing and, if so, which columns of the original ** row are required by the FK processing VDBE code (i.e. if FKs were ** implemented using triggers, which of the old.* columns would be ** accessed). No information is required by the code-generator before ** coding an INSERT operation. The functions used by the UPDATE/DELETE ** generation code to query for this information are: ** ** sqlite3FkRequired() - Test to see if FK processing is required. ** sqlite3FkOldmask() - Query for the set of required old.* columns. ** ** ** Externally accessible module functions ** -------------------------------------- ** ** sqlite3FkCheck() - Check for foreign key violations. ** sqlite3FkActions() - Code triggers for ON UPDATE/ON DELETE actions. ** sqlite3FkDelete() - Delete an FKey structure. */ /* ** VDBE Calling Convention ** ----------------------- ** ** Example: ** ** For the following INSERT statement: ** ** CREATE TABLE t1(a, b INTEGER PRIMARY KEY, c); ** INSERT INTO t1 VALUES(1, 2, 3.1); ** ** Register (x): 2 (type integer) ** Register (x+1): 1 (type integer) ** Register (x+2): NULL (type NULL) ** Register (x+3): 3.1 (type real) */ /* ** A foreign key constraint requires that the key columns in the parent ** table are collectively subject to a UNIQUE or PRIMARY KEY constraint. ** Given that pParent is the parent table for foreign key constraint pFKey, ** search the schema for a unique index on the parent key columns. ** ** If successful, zero is returned. If the parent key is an INTEGER PRIMARY ** KEY column, then output variable *ppIdx is set to NULL. Otherwise, *ppIdx ** is set to point to the unique index. ** ** If the parent key consists of a single column (the foreign key constraint ** is not a composite foreign key), output variable *paiCol is set to NULL. ** Otherwise, it is set to point to an allocated array of size N, where ** N is the number of columns in the parent key. The first element of the ** array is the index of the child table column that is mapped by the FK ** constraint to the parent table column stored in the left-most column ** of index *ppIdx. The second element of the array is the index of the ** child table column that corresponds to the second left-most column of ** *ppIdx, and so on. ** ** If the required index cannot be found, either because: ** ** 1) The named parent key columns do not exist, or ** ** 2) The named parent key columns do exist, but are not subject to a ** UNIQUE or PRIMARY KEY constraint, or ** ** 3) No parent key columns were provided explicitly as part of the ** foreign key definition, and the parent table does not have a ** PRIMARY KEY, or ** ** 4) No parent key columns were provided explicitly as part of the ** foreign key definition, and the PRIMARY KEY of the parent table ** consists of a different number of columns to the child key in ** the child table. ** ** then non-zero is returned, and a "foreign key mismatch" error loaded ** into pParse. If an OOM error occurs, non-zero is returned and the ** pParse->db->mallocFailed flag is set. */ SQLITE_PRIVATE int sqlite3FkLocateIndex( Parse *pParse, /* Parse context to store any error in */ Table *pParent, /* Parent table of FK constraint pFKey */ FKey *pFKey, /* Foreign key to find index for */ Index **ppIdx, /* OUT: Unique index on parent table */ int **paiCol /* OUT: Map of index columns in pFKey */ ){ Index *pIdx = 0; /* Value to return via *ppIdx */ int *aiCol = 0; /* Value to return via *paiCol */ int nCol = pFKey->nCol; /* Number of columns in parent key */ char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */ /* The caller is responsible for zeroing output parameters. */ assert( ppIdx && *ppIdx==0 ); assert( !paiCol || *paiCol==0 ); assert( pParse ); /* If this is a non-composite (single column) foreign key, check if it ** maps to the INTEGER PRIMARY KEY of table pParent. If so, leave *ppIdx ** and *paiCol set to zero and return early. ** ** Otherwise, for a composite foreign key (more than one column), allocate ** space for the aiCol array (returned via output parameter *paiCol). ** Non-composite foreign keys do not require the aiCol array. */ if( nCol==1 ){ /* The FK maps to the IPK if any of the following are true: ** ** 1) There is an INTEGER PRIMARY KEY column and the FK is implicitly ** mapped to the primary key of table pParent, or ** 2) The FK is explicitly mapped to a column declared as INTEGER ** PRIMARY KEY. */ if( pParent->iPKey>=0 ){ if( !zKey ) return 0; if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zCnName, zKey) ){ return 0; } } }else if( paiCol ){ assert( nCol>1 ); aiCol = (int *)sqlite3DbMallocRawNN(pParse->db, nCol*sizeof(int)); if( !aiCol ) return 1; *paiCol = aiCol; } for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){ if( pIdx->nKeyCol==nCol && IsUniqueIndex(pIdx) && pIdx->pPartIdxWhere==0 ){ /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number ** of columns. If each indexed column corresponds to a foreign key ** column of pFKey, then this index is a winner. */ if( zKey==0 ){ /* If zKey is NULL, then this foreign key is implicitly mapped to ** the PRIMARY KEY of table pParent. The PRIMARY KEY index may be ** identified by the test. */ if( IsPrimaryKeyIndex(pIdx) ){ if( aiCol ){ int i; for(i=0; iaCol[i].iFrom; } break; } }else{ /* If zKey is non-NULL, then this foreign key was declared to ** map to an explicit list of columns in table pParent. Check if this ** index matches those columns. Also, check that the index uses ** the default collation sequences for each column. */ int i, j; for(i=0; iaiColumn[i]; /* Index of column in parent tbl */ const char *zDfltColl; /* Def. collation for column */ char *zIdxCol; /* Name of indexed column */ if( iCol<0 ) break; /* No foreign keys against expression indexes */ /* If the index uses a collation sequence that is different from ** the default collation sequence for the column, this index is ** unusable. Bail out early in this case. */ zDfltColl = sqlite3ColumnColl(&pParent->aCol[iCol]); if( !zDfltColl ) zDfltColl = sqlite3StrBINARY; if( sqlite3StrICmp(pIdx->azColl[i], zDfltColl) ) break; zIdxCol = pParent->aCol[iCol].zCnName; for(j=0; jaCol[j].zCol, zIdxCol)==0 ){ if( aiCol ) aiCol[i] = pFKey->aCol[j].iFrom; break; } } if( j==nCol ) break; } if( i==nCol ) break; /* pIdx is usable */ } } } if( !pIdx ){ if( !pParse->disableTriggers ){ sqlite3ErrorMsg(pParse, "foreign key mismatch - \"%w\" referencing \"%w\"", pFKey->pFrom->zName, pFKey->zTo); } sqlite3DbFree(pParse->db, aiCol); return 1; } *ppIdx = pIdx; return 0; } /* ** This function is called when a row is inserted into or deleted from the ** child table of foreign key constraint pFKey. If an SQL UPDATE is executed ** on the child table of pFKey, this function is invoked twice for each row ** affected - once to "delete" the old row, and then again to "insert" the ** new row. ** ** Each time it is called, this function generates VDBE code to locate the ** row in the parent table that corresponds to the row being inserted into ** or deleted from the child table. If the parent row can be found, no ** special action is taken. Otherwise, if the parent row can *not* be ** found in the parent table: ** ** Operation | FK type | Action taken ** -------------------------------------------------------------------------- ** INSERT immediate Increment the "immediate constraint counter". ** ** DELETE immediate Decrement the "immediate constraint counter". ** ** INSERT deferred Increment the "deferred constraint counter". ** ** DELETE deferred Decrement the "deferred constraint counter". ** ** These operations are identified in the comment at the top of this file ** (fkey.c) as "I.1" and "D.1". */ static void fkLookupParent( Parse *pParse, /* Parse context */ int iDb, /* Index of database housing pTab */ Table *pTab, /* Parent table of FK pFKey */ Index *pIdx, /* Unique index on parent key columns in pTab */ FKey *pFKey, /* Foreign key constraint */ int *aiCol, /* Map from parent key columns to child table columns */ int regData, /* Address of array containing child table row */ int nIncr, /* Increment constraint counter by this */ int isIgnore /* If true, pretend pTab contains all NULL values */ ){ int i; /* Iterator variable */ Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */ int iCur = pParse->nTab - 1; /* Cursor number to use */ int iOk = sqlite3VdbeMakeLabel(pParse); /* jump here if parent key found */ sqlite3VdbeVerifyAbortable(v, (!pFKey->isDeferred && !(pParse->db->flags & SQLITE_DeferFKs) && !pParse->pToplevel && !pParse->isMultiWrite) ? OE_Abort : OE_Ignore); /* If nIncr is less than zero, then check at runtime if there are any ** outstanding constraints to resolve. If there are not, there is no need ** to check if deleting this row resolves any outstanding violations. ** ** Check if any of the key columns in the child table row are NULL. If ** any are, then the constraint is considered satisfied. No need to ** search for a matching row in the parent table. */ if( nIncr<0 ){ sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, iOk); VdbeCoverage(v); } for(i=0; inCol; i++){ int iReg = sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[i]) + regData + 1; sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iOk); VdbeCoverage(v); } if( isIgnore==0 ){ if( pIdx==0 ){ /* If pIdx is NULL, then the parent key is the INTEGER PRIMARY KEY ** column of the parent table (table pTab). */ int iMustBeInt; /* Address of MustBeInt instruction */ int regTemp = sqlite3GetTempReg(pParse); /* Invoke MustBeInt to coerce the child key value to an integer (i.e. ** apply the affinity of the parent key). If this fails, then there ** is no matching parent key. Before using MustBeInt, make a copy of ** the value. Otherwise, the value inserted into the child key column ** will have INTEGER affinity applied to it, which may not be correct. */ sqlite3VdbeAddOp2(v, OP_SCopy, sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[0])+1+regData, regTemp); iMustBeInt = sqlite3VdbeAddOp2(v, OP_MustBeInt, regTemp, 0); VdbeCoverage(v); /* If the parent table is the same as the child table, and we are about ** to increment the constraint-counter (i.e. this is an INSERT operation), ** then check if the row being inserted matches itself. If so, do not ** increment the constraint-counter. */ if( pTab==pFKey->pFrom && nIncr==1 ){ sqlite3VdbeAddOp3(v, OP_Eq, regData, iOk, regTemp); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); } sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead); sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regTemp); VdbeCoverage(v); sqlite3VdbeGoto(v, iOk); sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); sqlite3VdbeJumpHere(v, iMustBeInt); sqlite3ReleaseTempReg(pParse, regTemp); }else{ int nCol = pFKey->nCol; int regTemp = sqlite3GetTempRange(pParse, nCol); int regRec = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); for(i=0; ipFrom, aiCol[i])+1+regData, regTemp+i); } /* If the parent table is the same as the child table, and we are about ** to increment the constraint-counter (i.e. this is an INSERT operation), ** then check if the row being inserted matches itself. If so, do not ** increment the constraint-counter. ** ** If any of the parent-key values are NULL, then the row cannot match ** itself. So set JUMPIFNULL to make sure we do the OP_Found if any ** of the parent-key values are NULL (at this point it is known that ** none of the child key values are). */ if( pTab==pFKey->pFrom && nIncr==1 ){ int iJump = sqlite3VdbeCurrentAddr(v) + nCol + 1; for(i=0; ipFrom,aiCol[i]) +1+regData; int iParent = 1+regData; iParent += sqlite3TableColumnToStorage(pIdx->pTable, pIdx->aiColumn[i]); assert( pIdx->aiColumn[i]>=0 ); assert( aiCol[i]!=pTab->iPKey ); if( pIdx->aiColumn[i]==pTab->iPKey ){ /* The parent key is a composite key that includes the IPK column */ iParent = regData; } sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL); } sqlite3VdbeGoto(v, iOk); } sqlite3VdbeAddOp4(v, OP_MakeRecord, regTemp, nCol, regRec, sqlite3IndexAffinityStr(pParse->db,pIdx), nCol); sqlite3VdbeAddOp4Int(v, OP_Found, iCur, iOk, regRec, 0); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regRec); sqlite3ReleaseTempRange(pParse, regTemp, nCol); } } if( !pFKey->isDeferred && !(pParse->db->flags & SQLITE_DeferFKs) && !pParse->pToplevel && !pParse->isMultiWrite ){ /* Special case: If this is an INSERT statement that will insert exactly ** one row into the table, raise a constraint immediately instead of ** incrementing a counter. This is necessary as the VM code is being ** generated for will not open a statement transaction. */ assert( nIncr==1 ); sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY, OE_Abort, 0, P4_STATIC, P5_ConstraintFK); }else{ if( nIncr>0 && pFKey->isDeferred==0 ){ sqlite3MayAbort(pParse); } sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); } sqlite3VdbeResolveLabel(v, iOk); sqlite3VdbeAddOp1(v, OP_Close, iCur); } /* ** Return an Expr object that refers to a memory register corresponding ** to column iCol of table pTab. ** ** regBase is the first of an array of register that contains the data ** for pTab. regBase itself holds the rowid. regBase+1 holds the first ** column. regBase+2 holds the second column, and so forth. */ static Expr *exprTableRegister( Parse *pParse, /* Parsing and code generating context */ Table *pTab, /* The table whose content is at r[regBase]... */ int regBase, /* Contents of table pTab */ i16 iCol /* Which column of pTab is desired */ ){ Expr *pExpr; Column *pCol; const char *zColl; sqlite3 *db = pParse->db; pExpr = sqlite3Expr(db, TK_REGISTER, 0); if( pExpr ){ if( iCol>=0 && iCol!=pTab->iPKey ){ pCol = &pTab->aCol[iCol]; pExpr->iTable = regBase + sqlite3TableColumnToStorage(pTab,iCol) + 1; pExpr->affExpr = pCol->affinity; zColl = sqlite3ColumnColl(pCol); if( zColl==0 ) zColl = db->pDfltColl->zName; pExpr = sqlite3ExprAddCollateString(pParse, pExpr, zColl); }else{ pExpr->iTable = regBase; pExpr->affExpr = SQLITE_AFF_INTEGER; } } return pExpr; } /* ** Return an Expr object that refers to column iCol of table pTab which ** has cursor iCur. */ static Expr *exprTableColumn( sqlite3 *db, /* The database connection */ Table *pTab, /* The table whose column is desired */ int iCursor, /* The open cursor on the table */ i16 iCol /* The column that is wanted */ ){ Expr *pExpr = sqlite3Expr(db, TK_COLUMN, 0); if( pExpr ){ assert( ExprUseYTab(pExpr) ); pExpr->y.pTab = pTab; pExpr->iTable = iCursor; pExpr->iColumn = iCol; } return pExpr; } /* ** This function is called to generate code executed when a row is deleted ** from the parent table of foreign key constraint pFKey and, if pFKey is ** deferred, when a row is inserted into the same table. When generating ** code for an SQL UPDATE operation, this function may be called twice - ** once to "delete" the old row and once to "insert" the new row. ** ** Parameter nIncr is passed -1 when inserting a row (as this may decrease ** the number of FK violations in the db) or +1 when deleting one (as this ** may increase the number of FK constraint problems). ** ** The code generated by this function scans through the rows in the child ** table that correspond to the parent table row being deleted or inserted. ** For each child row found, one of the following actions is taken: ** ** Operation | FK type | Action taken ** -------------------------------------------------------------------------- ** DELETE immediate Increment the "immediate constraint counter". ** Or, if the ON (UPDATE|DELETE) action is RESTRICT, ** throw a "FOREIGN KEY constraint failed" exception. ** ** INSERT immediate Decrement the "immediate constraint counter". ** ** DELETE deferred Increment the "deferred constraint counter". ** Or, if the ON (UPDATE|DELETE) action is RESTRICT, ** throw a "FOREIGN KEY constraint failed" exception. ** ** INSERT deferred Decrement the "deferred constraint counter". ** ** These operations are identified in the comment at the top of this file ** (fkey.c) as "I.2" and "D.2". */ static void fkScanChildren( Parse *pParse, /* Parse context */ SrcList *pSrc, /* The child table to be scanned */ Table *pTab, /* The parent table */ Index *pIdx, /* Index on parent covering the foreign key */ FKey *pFKey, /* The foreign key linking pSrc to pTab */ int *aiCol, /* Map from pIdx cols to child table cols */ int regData, /* Parent row data starts here */ int nIncr /* Amount to increment deferred counter by */ ){ sqlite3 *db = pParse->db; /* Database handle */ int i; /* Iterator variable */ Expr *pWhere = 0; /* WHERE clause to scan with */ NameContext sNameContext; /* Context used to resolve WHERE clause */ WhereInfo *pWInfo; /* Context used by sqlite3WhereXXX() */ int iFkIfZero = 0; /* Address of OP_FkIfZero */ Vdbe *v = sqlite3GetVdbe(pParse); assert( pIdx==0 || pIdx->pTable==pTab ); assert( pIdx==0 || pIdx->nKeyCol==pFKey->nCol ); assert( pIdx!=0 || pFKey->nCol==1 ); assert( pIdx!=0 || HasRowid(pTab) ); if( nIncr<0 ){ iFkIfZero = sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, 0); VdbeCoverage(v); } /* Create an Expr object representing an SQL expression like: ** ** = AND = ... ** ** The collation sequence used for the comparison should be that of ** the parent key columns. The affinity of the parent key column should ** be applied to each child key value before the comparison takes place. */ for(i=0; inCol; i++){ Expr *pLeft; /* Value from parent table row */ Expr *pRight; /* Column ref to child table */ Expr *pEq; /* Expression (pLeft = pRight) */ i16 iCol; /* Index of column in child table */ const char *zCol; /* Name of column in child table */ iCol = pIdx ? pIdx->aiColumn[i] : -1; pLeft = exprTableRegister(pParse, pTab, regData, iCol); iCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; assert( iCol>=0 ); zCol = pFKey->pFrom->aCol[iCol].zCnName; pRight = sqlite3Expr(db, TK_ID, zCol); pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight); pWhere = sqlite3ExprAnd(pParse, pWhere, pEq); } /* If the child table is the same as the parent table, then add terms ** to the WHERE clause that prevent this entry from being scanned. ** The added WHERE clause terms are like this: ** ** $current_rowid!=rowid ** NOT( $current_a==a AND $current_b==b AND ... ) ** ** The first form is used for rowid tables. The second form is used ** for WITHOUT ROWID tables. In the second form, the *parent* key is ** (a,b,...). Either the parent or primary key could be used to ** uniquely identify the current row, but the parent key is more convenient ** as the required values have already been loaded into registers ** by the caller. */ if( pTab==pFKey->pFrom && nIncr>0 ){ Expr *pNe; /* Expression (pLeft != pRight) */ Expr *pLeft; /* Value from parent table row */ Expr *pRight; /* Column ref to child table */ if( HasRowid(pTab) ){ pLeft = exprTableRegister(pParse, pTab, regData, -1); pRight = exprTableColumn(db, pTab, pSrc->a[0].iCursor, -1); pNe = sqlite3PExpr(pParse, TK_NE, pLeft, pRight); }else{ Expr *pEq, *pAll = 0; assert( pIdx!=0 ); for(i=0; inKeyCol; i++){ i16 iCol = pIdx->aiColumn[i]; assert( iCol>=0 ); pLeft = exprTableRegister(pParse, pTab, regData, iCol); pRight = sqlite3Expr(db, TK_ID, pTab->aCol[iCol].zCnName); pEq = sqlite3PExpr(pParse, TK_IS, pLeft, pRight); pAll = sqlite3ExprAnd(pParse, pAll, pEq); } pNe = sqlite3PExpr(pParse, TK_NOT, pAll, 0); } pWhere = sqlite3ExprAnd(pParse, pWhere, pNe); } /* Resolve the references in the WHERE clause. */ memset(&sNameContext, 0, sizeof(NameContext)); sNameContext.pSrcList = pSrc; sNameContext.pParse = pParse; sqlite3ResolveExprNames(&sNameContext, pWhere); /* Create VDBE to loop through the entries in pSrc that match the WHERE ** clause. For each row found, increment either the deferred or immediate ** foreign key constraint counter. */ if( pParse->nErr==0 ){ pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0, 0, 0, 0); sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); if( pWInfo ){ sqlite3WhereEnd(pWInfo); } } /* Clean up the WHERE clause constructed above. */ sqlite3ExprDelete(db, pWhere); if( iFkIfZero ){ sqlite3VdbeJumpHereOrPopInst(v, iFkIfZero); } } /* ** This function returns a linked list of FKey objects (connected by ** FKey.pNextTo) holding all children of table pTab. For example, ** given the following schema: ** ** CREATE TABLE t1(a PRIMARY KEY); ** CREATE TABLE t2(b REFERENCES t1(a); ** ** Calling this function with table "t1" as an argument returns a pointer ** to the FKey structure representing the foreign key constraint on table ** "t2". Calling this function with "t2" as the argument would return a ** NULL pointer (as there are no FK constraints for which t2 is the parent ** table). */ SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){ return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName); } /* ** The second argument is a Trigger structure allocated by the ** fkActionTrigger() routine. This function deletes the Trigger structure ** and all of its sub-components. ** ** The Trigger structure or any of its sub-components may be allocated from ** the lookaside buffer belonging to database handle dbMem. */ static void fkTriggerDelete(sqlite3 *dbMem, Trigger *p){ if( p ){ TriggerStep *pStep = p->step_list; sqlite3ExprDelete(dbMem, pStep->pWhere); sqlite3ExprListDelete(dbMem, pStep->pExprList); sqlite3SelectDelete(dbMem, pStep->pSelect); sqlite3ExprDelete(dbMem, p->pWhen); sqlite3DbFree(dbMem, p); } } /* ** Clear the apTrigger[] cache of CASCADE triggers for all foreign keys ** in a particular database. This needs to happen when the schema ** changes. */ SQLITE_PRIVATE void sqlite3FkClearTriggerCache(sqlite3 *db, int iDb){ HashElem *k; Hash *pHash = &db->aDb[iDb].pSchema->tblHash; for(k=sqliteHashFirst(pHash); k; k=sqliteHashNext(k)){ Table *pTab = sqliteHashData(k); FKey *pFKey; if( !IsOrdinaryTable(pTab) ) continue; for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){ fkTriggerDelete(db, pFKey->apTrigger[0]); pFKey->apTrigger[0] = 0; fkTriggerDelete(db, pFKey->apTrigger[1]); pFKey->apTrigger[1] = 0; } } } /* ** This function is called to generate code that runs when table pTab is ** being dropped from the database. The SrcList passed as the second argument ** to this function contains a single entry guaranteed to resolve to ** table pTab. ** ** Normally, no code is required. However, if either ** ** (a) The table is the parent table of a FK constraint, or ** (b) The table is the child table of a deferred FK constraint and it is ** determined at runtime that there are outstanding deferred FK ** constraint violations in the database, ** ** then the equivalent of "DELETE FROM " is executed before dropping ** the table from the database. Triggers are disabled while running this ** DELETE, but foreign key actions are not. */ SQLITE_PRIVATE void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){ sqlite3 *db = pParse->db; if( (db->flags&SQLITE_ForeignKeys) && IsOrdinaryTable(pTab) ){ int iSkip = 0; Vdbe *v = sqlite3GetVdbe(pParse); assert( v ); /* VDBE has already been allocated */ assert( IsOrdinaryTable(pTab) ); if( sqlite3FkReferences(pTab)==0 ){ /* Search for a deferred foreign key constraint for which this table ** is the child table. If one cannot be found, return without ** generating any VDBE code. If one can be found, then jump over ** the entire DELETE if there are no outstanding deferred constraints ** when this statement is run. */ FKey *p; for(p=pTab->u.tab.pFKey; p; p=p->pNextFrom){ if( p->isDeferred || (db->flags & SQLITE_DeferFKs) ) break; } if( !p ) return; iSkip = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeAddOp2(v, OP_FkIfZero, 1, iSkip); VdbeCoverage(v); } pParse->disableTriggers = 1; sqlite3DeleteFrom(pParse, sqlite3SrcListDup(db, pName, 0), 0, 0, 0); pParse->disableTriggers = 0; /* If the DELETE has generated immediate foreign key constraint ** violations, halt the VDBE and return an error at this point, before ** any modifications to the schema are made. This is because statement ** transactions are not able to rollback schema changes. ** ** If the SQLITE_DeferFKs flag is set, then this is not required, as ** the statement transaction will not be rolled back even if FK ** constraints are violated. */ if( (db->flags & SQLITE_DeferFKs)==0 ){ sqlite3VdbeVerifyAbortable(v, OE_Abort); sqlite3VdbeAddOp2(v, OP_FkIfZero, 0, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY, OE_Abort, 0, P4_STATIC, P5_ConstraintFK); } if( iSkip ){ sqlite3VdbeResolveLabel(v, iSkip); } } } /* ** The second argument points to an FKey object representing a foreign key ** for which pTab is the child table. An UPDATE statement against pTab ** is currently being processed. For each column of the table that is ** actually updated, the corresponding element in the aChange[] array ** is zero or greater (if a column is unmodified the corresponding element ** is set to -1). If the rowid column is modified by the UPDATE statement ** the bChngRowid argument is non-zero. ** ** This function returns true if any of the columns that are part of the ** child key for FK constraint *p are modified. */ static int fkChildIsModified( Table *pTab, /* Table being updated */ FKey *p, /* Foreign key for which pTab is the child */ int *aChange, /* Array indicating modified columns */ int bChngRowid /* True if rowid is modified by this update */ ){ int i; for(i=0; inCol; i++){ int iChildKey = p->aCol[i].iFrom; if( aChange[iChildKey]>=0 ) return 1; if( iChildKey==pTab->iPKey && bChngRowid ) return 1; } return 0; } /* ** The second argument points to an FKey object representing a foreign key ** for which pTab is the parent table. An UPDATE statement against pTab ** is currently being processed. For each column of the table that is ** actually updated, the corresponding element in the aChange[] array ** is zero or greater (if a column is unmodified the corresponding element ** is set to -1). If the rowid column is modified by the UPDATE statement ** the bChngRowid argument is non-zero. ** ** This function returns true if any of the columns that are part of the ** parent key for FK constraint *p are modified. */ static int fkParentIsModified( Table *pTab, FKey *p, int *aChange, int bChngRowid ){ int i; for(i=0; inCol; i++){ char *zKey = p->aCol[i].zCol; int iKey; for(iKey=0; iKeynCol; iKey++){ if( aChange[iKey]>=0 || (iKey==pTab->iPKey && bChngRowid) ){ Column *pCol = &pTab->aCol[iKey]; if( zKey ){ if( 0==sqlite3StrICmp(pCol->zCnName, zKey) ) return 1; }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ return 1; } } } } return 0; } /* ** Return true if the parser passed as the first argument is being ** used to code a trigger that is really a "SET NULL" action belonging ** to trigger pFKey. */ static int isSetNullAction(Parse *pParse, FKey *pFKey){ Parse *pTop = sqlite3ParseToplevel(pParse); if( pTop->pTriggerPrg ){ Trigger *p = pTop->pTriggerPrg->pTrigger; if( (p==pFKey->apTrigger[0] && pFKey->aAction[0]==OE_SetNull) || (p==pFKey->apTrigger[1] && pFKey->aAction[1]==OE_SetNull) ){ return 1; } } return 0; } /* ** This function is called when inserting, deleting or updating a row of ** table pTab to generate VDBE code to perform foreign key constraint ** processing for the operation. ** ** For a DELETE operation, parameter regOld is passed the index of the ** first register in an array of (pTab->nCol+1) registers containing the ** rowid of the row being deleted, followed by each of the column values ** of the row being deleted, from left to right. Parameter regNew is passed ** zero in this case. ** ** For an INSERT operation, regOld is passed zero and regNew is passed the ** first register of an array of (pTab->nCol+1) registers containing the new ** row data. ** ** For an UPDATE operation, this function is called twice. Once before ** the original record is deleted from the table using the calling convention ** described for DELETE. Then again after the original record is deleted ** but before the new record is inserted using the INSERT convention. */ SQLITE_PRIVATE void sqlite3FkCheck( Parse *pParse, /* Parse context */ Table *pTab, /* Row is being deleted from this table */ int regOld, /* Previous row data is stored here */ int regNew, /* New row data is stored here */ int *aChange, /* Array indicating UPDATEd columns (or 0) */ int bChngRowid /* True if rowid is UPDATEd */ ){ sqlite3 *db = pParse->db; /* Database handle */ FKey *pFKey; /* Used to iterate through FKs */ int iDb; /* Index of database containing pTab */ const char *zDb; /* Name of database containing pTab */ int isIgnoreErrors = pParse->disableTriggers; /* Exactly one of regOld and regNew should be non-zero. */ assert( (regOld==0)!=(regNew==0) ); /* If foreign-keys are disabled, this function is a no-op. */ if( (db->flags&SQLITE_ForeignKeys)==0 ) return; if( !IsOrdinaryTable(pTab) ) return; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); zDb = db->aDb[iDb].zDbSName; /* Loop through all the foreign key constraints for which pTab is the ** child table (the table that the foreign key definition is part of). */ for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){ Table *pTo; /* Parent table of foreign key pFKey */ Index *pIdx = 0; /* Index on key columns in pTo */ int *aiFree = 0; int *aiCol; int iCol; int i; int bIgnore = 0; if( aChange && sqlite3_stricmp(pTab->zName, pFKey->zTo)!=0 && fkChildIsModified(pTab, pFKey, aChange, bChngRowid)==0 ){ continue; } /* Find the parent table of this foreign key. Also find a unique index ** on the parent key columns in the parent table. If either of these ** schema items cannot be located, set an error in pParse and return ** early. */ if( pParse->disableTriggers ){ pTo = sqlite3FindTable(db, pFKey->zTo, zDb); }else{ pTo = sqlite3LocateTable(pParse, 0, pFKey->zTo, zDb); } if( !pTo || sqlite3FkLocateIndex(pParse, pTo, pFKey, &pIdx, &aiFree) ){ assert( isIgnoreErrors==0 || (regOld!=0 && regNew==0) ); if( !isIgnoreErrors || db->mallocFailed ) return; if( pTo==0 ){ /* If isIgnoreErrors is true, then a table is being dropped. In this ** case SQLite runs a "DELETE FROM xxx" on the table being dropped ** before actually dropping it in order to check FK constraints. ** If the parent table of an FK constraint on the current table is ** missing, behave as if it is empty. i.e. decrement the relevant ** FK counter for each row of the current table with non-NULL keys. */ Vdbe *v = sqlite3GetVdbe(pParse); int iJump = sqlite3VdbeCurrentAddr(v) + pFKey->nCol + 1; for(i=0; inCol; i++){ int iFromCol, iReg; iFromCol = pFKey->aCol[i].iFrom; iReg = sqlite3TableColumnToStorage(pFKey->pFrom,iFromCol) + regOld+1; sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iJump); VdbeCoverage(v); } sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, -1); } continue; } assert( pFKey->nCol==1 || (aiFree && pIdx) ); if( aiFree ){ aiCol = aiFree; }else{ iCol = pFKey->aCol[0].iFrom; aiCol = &iCol; } for(i=0; inCol; i++){ if( aiCol[i]==pTab->iPKey ){ aiCol[i] = -1; } assert( pIdx==0 || pIdx->aiColumn[i]>=0 ); #ifndef SQLITE_OMIT_AUTHORIZATION /* Request permission to read the parent key columns. If the ** authorization callback returns SQLITE_IGNORE, behave as if any ** values read from the parent table are NULL. */ if( db->xAuth ){ int rcauth; char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zCnName; rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb); bIgnore = (rcauth==SQLITE_IGNORE); } #endif } /* Take a shared-cache advisory read-lock on the parent table. Allocate ** a cursor to use to search the unique index on the parent key columns ** in the parent table. */ sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName); pParse->nTab++; if( regOld!=0 ){ /* A row is being removed from the child table. Search for the parent. ** If the parent does not exist, removing the child row resolves an ** outstanding foreign key constraint violation. */ fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regOld, -1, bIgnore); } if( regNew!=0 && !isSetNullAction(pParse, pFKey) ){ /* A row is being added to the child table. If a parent row cannot ** be found, adding the child row has violated the FK constraint. ** ** If this operation is being performed as part of a trigger program ** that is actually a "SET NULL" action belonging to this very ** foreign key, then omit this scan altogether. As all child key ** values are guaranteed to be NULL, it is not possible for adding ** this row to cause an FK violation. */ fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regNew, +1, bIgnore); } sqlite3DbFree(db, aiFree); } /* Loop through all the foreign key constraints that refer to this table. ** (the "child" constraints) */ for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){ Index *pIdx = 0; /* Foreign key index for pFKey */ SrcList *pSrc; int *aiCol = 0; if( aChange && fkParentIsModified(pTab, pFKey, aChange, bChngRowid)==0 ){ continue; } if( !pFKey->isDeferred && !(db->flags & SQLITE_DeferFKs) && !pParse->pToplevel && !pParse->isMultiWrite ){ assert( regOld==0 && regNew!=0 ); /* Inserting a single row into a parent table cannot cause (or fix) ** an immediate foreign key violation. So do nothing in this case. */ continue; } if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ){ if( !isIgnoreErrors || db->mallocFailed ) return; continue; } assert( aiCol || pFKey->nCol==1 ); /* Create a SrcList structure containing the child table. We need the ** child table as a SrcList for sqlite3WhereBegin() */ pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); if( pSrc ){ SrcItem *pItem = pSrc->a; pItem->pTab = pFKey->pFrom; pItem->zName = pFKey->pFrom->zName; pItem->pTab->nTabRef++; pItem->iCursor = pParse->nTab++; if( regNew!=0 ){ fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regNew, -1); } if( regOld!=0 ){ int eAction = pFKey->aAction[aChange!=0]; fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regOld, 1); /* If this is a deferred FK constraint, or a CASCADE or SET NULL ** action applies, then any foreign key violations caused by ** removing the parent key will be rectified by the action trigger. ** So do not set the "may-abort" flag in this case. ** ** Note 1: If the FK is declared "ON UPDATE CASCADE", then the ** may-abort flag will eventually be set on this statement anyway ** (when this function is called as part of processing the UPDATE ** within the action trigger). ** ** Note 2: At first glance it may seem like SQLite could simply omit ** all OP_FkCounter related scans when either CASCADE or SET NULL ** applies. The trouble starts if the CASCADE or SET NULL action ** trigger causes other triggers or action rules attached to the ** child table to fire. In these cases the fk constraint counters ** might be set incorrectly if any OP_FkCounter related scans are ** omitted. */ if( !pFKey->isDeferred && eAction!=OE_Cascade && eAction!=OE_SetNull ){ sqlite3MayAbort(pParse); } } pItem->zName = 0; sqlite3SrcListDelete(db, pSrc); } sqlite3DbFree(db, aiCol); } } #define COLUMN_MASK(x) (((x)>31) ? 0xffffffff : ((u32)1<<(x))) /* ** This function is called before generating code to update or delete a ** row contained in table pTab. */ SQLITE_PRIVATE u32 sqlite3FkOldmask( Parse *pParse, /* Parse context */ Table *pTab /* Table being modified */ ){ u32 mask = 0; if( pParse->db->flags&SQLITE_ForeignKeys && IsOrdinaryTable(pTab) ){ FKey *p; int i; for(p=pTab->u.tab.pFKey; p; p=p->pNextFrom){ for(i=0; inCol; i++) mask |= COLUMN_MASK(p->aCol[i].iFrom); } for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ Index *pIdx = 0; sqlite3FkLocateIndex(pParse, pTab, p, &pIdx, 0); if( pIdx ){ for(i=0; inKeyCol; i++){ assert( pIdx->aiColumn[i]>=0 ); mask |= COLUMN_MASK(pIdx->aiColumn[i]); } } } } return mask; } /* ** This function is called before generating code to update or delete a ** row contained in table pTab. If the operation is a DELETE, then ** parameter aChange is passed a NULL value. For an UPDATE, aChange points ** to an array of size N, where N is the number of columns in table pTab. ** If the i'th column is not modified by the UPDATE, then the corresponding ** entry in the aChange[] array is set to -1. If the column is modified, ** the value is 0 or greater. Parameter chngRowid is set to true if the ** UPDATE statement modifies the rowid fields of the table. ** ** If any foreign key processing will be required, this function returns ** non-zero. If there is no foreign key related processing, this function ** returns zero. ** ** For an UPDATE, this function returns 2 if: ** ** * There are any FKs for which pTab is the child and the parent table ** and any FK processing at all is required (even of a different FK), or ** ** * the UPDATE modifies one or more parent keys for which the action is ** not "NO ACTION" (i.e. is CASCADE, SET DEFAULT or SET NULL). ** ** Or, assuming some other foreign key processing is required, 1. */ SQLITE_PRIVATE int sqlite3FkRequired( Parse *pParse, /* Parse context */ Table *pTab, /* Table being modified */ int *aChange, /* Non-NULL for UPDATE operations */ int chngRowid /* True for UPDATE that affects rowid */ ){ int eRet = 1; /* Value to return if bHaveFK is true */ int bHaveFK = 0; /* If FK processing is required */ if( pParse->db->flags&SQLITE_ForeignKeys && IsOrdinaryTable(pTab) ){ if( !aChange ){ /* A DELETE operation. Foreign key processing is required if the ** table in question is either the child or parent table for any ** foreign key constraint. */ bHaveFK = (sqlite3FkReferences(pTab) || pTab->u.tab.pFKey); }else{ /* This is an UPDATE. Foreign key processing is only required if the ** operation modifies one or more child or parent key columns. */ FKey *p; /* Check if any child key columns are being modified. */ for(p=pTab->u.tab.pFKey; p; p=p->pNextFrom){ if( fkChildIsModified(pTab, p, aChange, chngRowid) ){ if( 0==sqlite3_stricmp(pTab->zName, p->zTo) ) eRet = 2; bHaveFK = 1; } } /* Check if any parent key columns are being modified. */ for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ if( fkParentIsModified(pTab, p, aChange, chngRowid) ){ if( p->aAction[1]!=OE_None ) return 2; bHaveFK = 1; } } } } return bHaveFK ? eRet : 0; } /* ** This function is called when an UPDATE or DELETE operation is being ** compiled on table pTab, which is the parent table of foreign-key pFKey. ** If the current operation is an UPDATE, then the pChanges parameter is ** passed a pointer to the list of columns being modified. If it is a ** DELETE, pChanges is passed a NULL pointer. ** ** It returns a pointer to a Trigger structure containing a trigger ** equivalent to the ON UPDATE or ON DELETE action specified by pFKey. ** If the action is "NO ACTION" or "RESTRICT", then a NULL pointer is ** returned (these actions require no special handling by the triggers ** sub-system, code for them is created by fkScanChildren()). ** ** For example, if pFKey is the foreign key and pTab is table "p" in ** the following schema: ** ** CREATE TABLE p(pk PRIMARY KEY); ** CREATE TABLE c(ck REFERENCES p ON DELETE CASCADE); ** ** then the returned trigger structure is equivalent to: ** ** CREATE TRIGGER ... DELETE ON p BEGIN ** DELETE FROM c WHERE ck = old.pk; ** END; ** ** The returned pointer is cached as part of the foreign key object. It ** is eventually freed along with the rest of the foreign key object by ** sqlite3FkDelete(). */ static Trigger *fkActionTrigger( Parse *pParse, /* Parse context */ Table *pTab, /* Table being updated or deleted from */ FKey *pFKey, /* Foreign key to get action for */ ExprList *pChanges /* Change-list for UPDATE, NULL for DELETE */ ){ sqlite3 *db = pParse->db; /* Database handle */ int action; /* One of OE_None, OE_Cascade etc. */ Trigger *pTrigger; /* Trigger definition to return */ int iAction = (pChanges!=0); /* 1 for UPDATE, 0 for DELETE */ action = pFKey->aAction[iAction]; if( action==OE_Restrict && (db->flags & SQLITE_DeferFKs) ){ return 0; } pTrigger = pFKey->apTrigger[iAction]; if( action!=OE_None && !pTrigger ){ char const *zFrom; /* Name of child table */ int nFrom; /* Length in bytes of zFrom */ Index *pIdx = 0; /* Parent key index for this FK */ int *aiCol = 0; /* child table cols -> parent key cols */ TriggerStep *pStep = 0; /* First (only) step of trigger program */ Expr *pWhere = 0; /* WHERE clause of trigger step */ ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */ int i; /* Iterator variable */ Expr *pWhen = 0; /* WHEN clause for the trigger */ if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ) return 0; assert( aiCol || pFKey->nCol==1 ); for(i=0; inCol; i++){ Token tOld = { "old", 3 }; /* Literal "old" token */ Token tNew = { "new", 3 }; /* Literal "new" token */ Token tFromCol; /* Name of column in child table */ Token tToCol; /* Name of column in parent table */ int iFromCol; /* Idx of column in child table */ Expr *pEq; /* tFromCol = OLD.tToCol */ iFromCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; assert( iFromCol>=0 ); assert( pIdx!=0 || (pTab->iPKey>=0 && pTab->iPKeynCol) ); assert( pIdx==0 || pIdx->aiColumn[i]>=0 ); sqlite3TokenInit(&tToCol, pTab->aCol[pIdx ? pIdx->aiColumn[i] : pTab->iPKey].zCnName); sqlite3TokenInit(&tFromCol, pFKey->pFrom->aCol[iFromCol].zCnName); /* Create the expression "OLD.zToCol = zFromCol". It is important ** that the "OLD.zToCol" term is on the LHS of the = operator, so ** that the affinity and collation sequence associated with the ** parent table are used for the comparison. */ pEq = sqlite3PExpr(pParse, TK_EQ, sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tOld, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)), sqlite3ExprAlloc(db, TK_ID, &tFromCol, 0) ); pWhere = sqlite3ExprAnd(pParse, pWhere, pEq); /* For ON UPDATE, construct the next term of the WHEN clause. ** The final WHEN clause will be like this: ** ** WHEN NOT(old.col1 IS new.col1 AND ... AND old.colN IS new.colN) */ if( pChanges ){ pEq = sqlite3PExpr(pParse, TK_IS, sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tOld, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)), sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tNew, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)) ); pWhen = sqlite3ExprAnd(pParse, pWhen, pEq); } if( action!=OE_Restrict && (action!=OE_Cascade || pChanges) ){ Expr *pNew; if( action==OE_Cascade ){ pNew = sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tNew, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)); }else if( action==OE_SetDflt ){ Column *pCol = pFKey->pFrom->aCol + iFromCol; Expr *pDflt; if( pCol->colFlags & COLFLAG_GENERATED ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); pDflt = 0; }else{ pDflt = sqlite3ColumnExpr(pFKey->pFrom, pCol); } if( pDflt ){ pNew = sqlite3ExprDup(db, pDflt, 0); }else{ pNew = sqlite3ExprAlloc(db, TK_NULL, 0, 0); } }else{ pNew = sqlite3ExprAlloc(db, TK_NULL, 0, 0); } pList = sqlite3ExprListAppend(pParse, pList, pNew); sqlite3ExprListSetName(pParse, pList, &tFromCol, 0); } } sqlite3DbFree(db, aiCol); zFrom = pFKey->pFrom->zName; nFrom = sqlite3Strlen30(zFrom); if( action==OE_Restrict ){ Token tFrom; Expr *pRaise; tFrom.z = zFrom; tFrom.n = nFrom; pRaise = sqlite3Expr(db, TK_RAISE, "FOREIGN KEY constraint failed"); if( pRaise ){ pRaise->affExpr = OE_Abort; } pSelect = sqlite3SelectNew(pParse, sqlite3ExprListAppend(pParse, 0, pRaise), sqlite3SrcListAppend(pParse, 0, &tFrom, 0), pWhere, 0, 0, 0, 0, 0 ); pWhere = 0; } /* Disable lookaside memory allocation */ DisableLookaside; pTrigger = (Trigger *)sqlite3DbMallocZero(db, sizeof(Trigger) + /* struct Trigger */ sizeof(TriggerStep) + /* Single step in trigger program */ nFrom + 1 /* Space for pStep->zTarget */ ); if( pTrigger ){ pStep = pTrigger->step_list = (TriggerStep *)&pTrigger[1]; pStep->zTarget = (char *)&pStep[1]; memcpy((char *)pStep->zTarget, zFrom, nFrom); pStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); pStep->pExprList = sqlite3ExprListDup(db, pList, EXPRDUP_REDUCE); pStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); if( pWhen ){ pWhen = sqlite3PExpr(pParse, TK_NOT, pWhen, 0); pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); } } /* Re-enable the lookaside buffer, if it was disabled earlier. */ EnableLookaside; sqlite3ExprDelete(db, pWhere); sqlite3ExprDelete(db, pWhen); sqlite3ExprListDelete(db, pList); sqlite3SelectDelete(db, pSelect); if( db->mallocFailed==1 ){ fkTriggerDelete(db, pTrigger); return 0; } assert( pStep!=0 ); assert( pTrigger!=0 ); switch( action ){ case OE_Restrict: pStep->op = TK_SELECT; break; case OE_Cascade: if( !pChanges ){ pStep->op = TK_DELETE; break; } /* no break */ deliberate_fall_through default: pStep->op = TK_UPDATE; } pStep->pTrig = pTrigger; pTrigger->pSchema = pTab->pSchema; pTrigger->pTabSchema = pTab->pSchema; pFKey->apTrigger[iAction] = pTrigger; pTrigger->op = (pChanges ? TK_UPDATE : TK_DELETE); } return pTrigger; } /* ** This function is called when deleting or updating a row to implement ** any required CASCADE, SET NULL or SET DEFAULT actions. */ SQLITE_PRIVATE void sqlite3FkActions( Parse *pParse, /* Parse context */ Table *pTab, /* Table being updated or deleted from */ ExprList *pChanges, /* Change-list for UPDATE, NULL for DELETE */ int regOld, /* Address of array containing old row */ int *aChange, /* Array indicating UPDATEd columns (or 0) */ int bChngRowid /* True if rowid is UPDATEd */ ){ /* If foreign-key support is enabled, iterate through all FKs that ** refer to table pTab. If there is an action associated with the FK ** for this operation (either update or delete), invoke the associated ** trigger sub-program. */ if( pParse->db->flags&SQLITE_ForeignKeys ){ FKey *pFKey; /* Iterator variable */ for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){ if( aChange==0 || fkParentIsModified(pTab, pFKey, aChange, bChngRowid) ){ Trigger *pAct = fkActionTrigger(pParse, pTab, pFKey, pChanges); if( pAct ){ sqlite3CodeRowTriggerDirect(pParse, pAct, pTab, regOld, OE_Abort, 0); } } } } } #endif /* ifndef SQLITE_OMIT_TRIGGER */ /* ** Free all memory associated with foreign key definitions attached to ** table pTab. Remove the deleted foreign keys from the Schema.fkeyHash ** hash table. */ SQLITE_PRIVATE void sqlite3FkDelete(sqlite3 *db, Table *pTab){ FKey *pFKey; /* Iterator variable */ FKey *pNext; /* Copy of pFKey->pNextFrom */ assert( IsOrdinaryTable(pTab) ); for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pNext){ assert( db==0 || sqlite3SchemaMutexHeld(db, 0, pTab->pSchema) ); /* Remove the FK from the fkeyHash hash table. */ if( !db || db->pnBytesFreed==0 ){ if( pFKey->pPrevTo ){ pFKey->pPrevTo->pNextTo = pFKey->pNextTo; }else{ void *p = (void *)pFKey->pNextTo; const char *z = (p ? pFKey->pNextTo->zTo : pFKey->zTo); sqlite3HashInsert(&pTab->pSchema->fkeyHash, z, p); } if( pFKey->pNextTo ){ pFKey->pNextTo->pPrevTo = pFKey->pPrevTo; } } /* EV: R-30323-21917 Each foreign key constraint in SQLite is ** classified as either immediate or deferred. */ assert( pFKey->isDeferred==0 || pFKey->isDeferred==1 ); /* Delete any triggers created to implement actions for this FK. */ #ifndef SQLITE_OMIT_TRIGGER fkTriggerDelete(db, pFKey->apTrigger[0]); fkTriggerDelete(db, pFKey->apTrigger[1]); #endif pNext = pFKey->pNextFrom; sqlite3DbFree(db, pFKey); } } #endif /* ifndef SQLITE_OMIT_FOREIGN_KEY */ /************** End of fkey.c ************************************************/ /************** Begin file insert.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. */ /* #include "sqliteInt.h" */ /* ** Generate code that will ** ** (1) acquire a lock for table pTab then ** (2) open pTab as cursor iCur. ** ** If pTab is a WITHOUT ROWID table, then it is the PRIMARY KEY index ** for that table that is actually opened. */ SQLITE_PRIVATE void sqlite3OpenTable( Parse *pParse, /* Generate code into this VDBE */ int iCur, /* The cursor number of the table */ int iDb, /* The database index in sqlite3.aDb[] */ Table *pTab, /* The table to be opened */ int opcode /* OP_OpenRead or OP_OpenWrite */ ){ Vdbe *v; assert( !IsVirtual(pTab) ); assert( pParse->pVdbe!=0 ); v = pParse->pVdbe; assert( opcode==OP_OpenWrite || opcode==OP_OpenRead ); sqlite3TableLock(pParse, iDb, pTab->tnum, (opcode==OP_OpenWrite)?1:0, pTab->zName); if( HasRowid(pTab) ){ sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nNVCol); VdbeComment((v, "%s", pTab->zName)); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); assert( pPk->tnum==pTab->tnum || CORRUPT_DB ); sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pPk); VdbeComment((v, "%s", pTab->zName)); } } /* ** Return a pointer to the column affinity string associated with index ** pIdx. A column affinity string has one character for each column in ** the table, according to the affinity of the column: ** ** Character Column affinity ** ------------------------------ ** 'A' BLOB ** 'B' TEXT ** 'C' NUMERIC ** 'D' INTEGER ** 'F' REAL ** ** An extra 'D' is appended to the end of the string to cover the ** rowid that appears as the last column in every index. ** ** Memory for the buffer containing the column index affinity string ** is managed along with the rest of the Index structure. It will be ** released when sqlite3DeleteIndex() is called. */ SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){ if( !pIdx->zColAff ){ /* The first time a column affinity string for a particular index is ** required, it is allocated and populated here. It is then stored as ** a member of the Index structure for subsequent use. ** ** The column affinity string will eventually be deleted by ** sqliteDeleteIndex() when the Index structure itself is cleaned ** up. */ int n; Table *pTab = pIdx->pTable; pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1); if( !pIdx->zColAff ){ sqlite3OomFault(db); return 0; } for(n=0; nnColumn; n++){ i16 x = pIdx->aiColumn[n]; char aff; if( x>=0 ){ aff = pTab->aCol[x].affinity; }else if( x==XN_ROWID ){ aff = SQLITE_AFF_INTEGER; }else{ assert( x==XN_EXPR ); assert( pIdx->aColExpr!=0 ); aff = sqlite3ExprAffinity(pIdx->aColExpr->a[n].pExpr); } if( affSQLITE_AFF_NUMERIC) aff = SQLITE_AFF_NUMERIC; pIdx->zColAff[n] = aff; } pIdx->zColAff[n] = 0; } return pIdx->zColAff; } /* ** Make changes to the evolving bytecode to do affinity transformations ** of values that are about to be gathered into a row for table pTab. ** ** For ordinary (legacy, non-strict) tables: ** ----------------------------------------- ** ** Compute the affinity string for table pTab, if it has not already been ** computed. As an optimization, omit trailing SQLITE_AFF_BLOB affinities. ** ** If the affinity string is empty (because it was all SQLITE_AFF_BLOB entries ** which were then optimized out) then this routine becomes a no-op. ** ** Otherwise if iReg>0 then code an OP_Affinity opcode that will set the ** affinities for register iReg and following. Or if iReg==0, ** then just set the P4 operand of the previous opcode (which should be ** an OP_MakeRecord) to the affinity string. ** ** A column affinity string has one character per column: ** ** Character Column affinity ** --------- --------------- ** 'A' BLOB ** 'B' TEXT ** 'C' NUMERIC ** 'D' INTEGER ** 'E' REAL ** ** For STRICT tables: ** ------------------ ** ** Generate an appropropriate OP_TypeCheck opcode that will verify the ** datatypes against the column definitions in pTab. If iReg==0, that ** means an OP_MakeRecord opcode has already been generated and should be ** the last opcode generated. The new OP_TypeCheck needs to be inserted ** before the OP_MakeRecord. The new OP_TypeCheck should use the same ** register set as the OP_MakeRecord. If iReg>0 then register iReg is ** the first of a series of registers that will form the new record. ** Apply the type checking to that array of registers. */ SQLITE_PRIVATE void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){ int i, j; char *zColAff; if( pTab->tabFlags & TF_Strict ){ if( iReg==0 ){ /* Move the previous opcode (which should be OP_MakeRecord) forward ** by one slot and insert a new OP_TypeCheck where the current ** OP_MakeRecord is found */ VdbeOp *pPrev; sqlite3VdbeAppendP4(v, pTab, P4_TABLE); pPrev = sqlite3VdbeGetOp(v, -1); assert( pPrev!=0 ); assert( pPrev->opcode==OP_MakeRecord || sqlite3VdbeDb(v)->mallocFailed ); pPrev->opcode = OP_TypeCheck; sqlite3VdbeAddOp3(v, OP_MakeRecord, pPrev->p1, pPrev->p2, pPrev->p3); }else{ /* Insert an isolated OP_Typecheck */ sqlite3VdbeAddOp2(v, OP_TypeCheck, iReg, pTab->nNVCol); sqlite3VdbeAppendP4(v, pTab, P4_TABLE); } return; } zColAff = pTab->zColAff; if( zColAff==0 ){ sqlite3 *db = sqlite3VdbeDb(v); zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1); if( !zColAff ){ sqlite3OomFault(db); return; } for(i=j=0; inCol; i++){ assert( pTab->aCol[i].affinity!=0 ); if( (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){ zColAff[j++] = pTab->aCol[i].affinity; } } do{ zColAff[j--] = 0; }while( j>=0 && zColAff[j]<=SQLITE_AFF_BLOB ); pTab->zColAff = zColAff; } assert( zColAff!=0 ); i = sqlite3Strlen30NN(zColAff); if( i ){ if( iReg ){ sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i); }else{ assert( sqlite3VdbeGetOp(v, -1)->opcode==OP_MakeRecord || sqlite3VdbeDb(v)->mallocFailed ); sqlite3VdbeChangeP4(v, -1, zColAff, i); } } } /* ** Return non-zero if the table pTab in database iDb or any of its indices ** have been opened at any point in the VDBE program. This is used to see if ** a statement of the form "INSERT INTO SELECT ..." can ** run without using a temporary table for the results of the SELECT. */ static int readsTable(Parse *p, int iDb, Table *pTab){ Vdbe *v = sqlite3GetVdbe(p); int i; int iEnd = sqlite3VdbeCurrentAddr(v); #ifndef SQLITE_OMIT_VIRTUALTABLE VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; #endif for(i=1; iopcode==OP_OpenRead && pOp->p3==iDb ){ Index *pIndex; Pgno tnum = pOp->p2; if( tnum==pTab->tnum ){ return 1; } for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ if( tnum==pIndex->tnum ){ return 1; } } } #ifndef SQLITE_OMIT_VIRTUALTABLE if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){ assert( pOp->p4.pVtab!=0 ); assert( pOp->p4type==P4_VTAB ); return 1; } #endif } return 0; } /* This walker callback will compute the union of colFlags flags for all ** referenced columns in a CHECK constraint or generated column expression. */ static int exprColumnFlagUnion(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN && pExpr->iColumn>=0 ){ assert( pExpr->iColumn < pWalker->u.pTab->nCol ); pWalker->eCode |= pWalker->u.pTab->aCol[pExpr->iColumn].colFlags; } return WRC_Continue; } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* ** All regular columns for table pTab have been puts into registers ** starting with iRegStore. The registers that correspond to STORED ** or VIRTUAL columns have not yet been initialized. This routine goes ** back and computes the values for those columns based on the previously ** computed normal columns. */ SQLITE_PRIVATE void sqlite3ComputeGeneratedColumns( Parse *pParse, /* Parsing context */ int iRegStore, /* Register holding the first column */ Table *pTab /* The table */ ){ int i; Walker w; Column *pRedo; int eProgress; VdbeOp *pOp; assert( pTab->tabFlags & TF_HasGenerated ); testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); /* Before computing generated columns, first go through and make sure ** that appropriate affinity has been applied to the regular columns */ sqlite3TableAffinity(pParse->pVdbe, pTab, iRegStore); if( (pTab->tabFlags & TF_HasStored)!=0 ){ pOp = sqlite3VdbeGetOp(pParse->pVdbe,-1); if( pOp->opcode==OP_Affinity ){ /* Change the OP_Affinity argument to '@' (NONE) for all stored ** columns. '@' is the no-op affinity and those columns have not ** yet been computed. */ int ii, jj; char *zP4 = pOp->p4.z; assert( zP4!=0 ); assert( pOp->p4type==P4_DYNAMIC ); for(ii=jj=0; zP4[jj]; ii++){ if( pTab->aCol[ii].colFlags & COLFLAG_VIRTUAL ){ continue; } if( pTab->aCol[ii].colFlags & COLFLAG_STORED ){ zP4[jj] = SQLITE_AFF_NONE; } jj++; } }else if( pOp->opcode==OP_TypeCheck ){ /* If an OP_TypeCheck was generated because the table is STRICT, ** then set the P3 operand to indicate that generated columns should ** not be checked */ pOp->p3 = 1; } } /* Because there can be multiple generated columns that refer to one another, ** this is a two-pass algorithm. On the first pass, mark all generated ** columns as "not available". */ for(i=0; inCol; i++){ if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ testcase( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ); testcase( pTab->aCol[i].colFlags & COLFLAG_STORED ); pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL; } } w.u.pTab = pTab; w.xExprCallback = exprColumnFlagUnion; w.xSelectCallback = 0; w.xSelectCallback2 = 0; /* On the second pass, compute the value of each NOT-AVAILABLE column. ** Companion code in the TK_COLUMN case of sqlite3ExprCodeTarget() will ** compute dependencies and mark remove the COLSPAN_NOTAVAIL mark, as ** they are needed. */ pParse->iSelfTab = -iRegStore; do{ eProgress = 0; pRedo = 0; for(i=0; inCol; i++){ Column *pCol = pTab->aCol + i; if( (pCol->colFlags & COLFLAG_NOTAVAIL)!=0 ){ int x; pCol->colFlags |= COLFLAG_BUSY; w.eCode = 0; sqlite3WalkExpr(&w, sqlite3ColumnExpr(pTab, pCol)); pCol->colFlags &= ~COLFLAG_BUSY; if( w.eCode & COLFLAG_NOTAVAIL ){ pRedo = pCol; continue; } eProgress = 1; assert( pCol->colFlags & COLFLAG_GENERATED ); x = sqlite3TableColumnToStorage(pTab, i) + iRegStore; sqlite3ExprCodeGeneratedColumn(pParse, pTab, pCol, x); pCol->colFlags &= ~COLFLAG_NOTAVAIL; } } }while( pRedo && eProgress ); if( pRedo ){ sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pRedo->zCnName); } pParse->iSelfTab = 0; } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ #ifndef SQLITE_OMIT_AUTOINCREMENT /* ** Locate or create an AutoincInfo structure associated with table pTab ** which is in database iDb. Return the register number for the register ** that holds the maximum rowid. Return zero if pTab is not an AUTOINCREMENT ** table. (Also return zero when doing a VACUUM since we do not want to ** update the AUTOINCREMENT counters during a VACUUM.) ** ** There is at most one AutoincInfo structure per table even if the ** same table is autoincremented multiple times due to inserts within ** triggers. A new AutoincInfo structure is created if this is the ** first use of table pTab. On 2nd and subsequent uses, the original ** AutoincInfo structure is used. ** ** Four consecutive registers are allocated: ** ** (1) The name of the pTab table. ** (2) The maximum ROWID of pTab. ** (3) The rowid in sqlite_sequence of pTab ** (4) The original value of the max ROWID in pTab, or NULL if none ** ** The 2nd register is the one that is returned. That is all the ** insert routine needs to know about. */ static int autoIncBegin( Parse *pParse, /* Parsing context */ int iDb, /* Index of the database holding pTab */ Table *pTab /* The table we are writing to */ ){ int memId = 0; /* Register holding maximum rowid */ assert( pParse->db->aDb[iDb].pSchema!=0 ); if( (pTab->tabFlags & TF_Autoincrement)!=0 && (pParse->db->mDbFlags & DBFLAG_Vacuum)==0 ){ Parse *pToplevel = sqlite3ParseToplevel(pParse); AutoincInfo *pInfo; Table *pSeqTab = pParse->db->aDb[iDb].pSchema->pSeqTab; /* Verify that the sqlite_sequence table exists and is an ordinary ** rowid table with exactly two columns. ** Ticket d8dc2b3a58cd5dc2918a1d4acb 2018-05-23 */ if( pSeqTab==0 || !HasRowid(pSeqTab) || NEVER(IsVirtual(pSeqTab)) || pSeqTab->nCol!=2 ){ pParse->nErr++; pParse->rc = SQLITE_CORRUPT_SEQUENCE; return 0; } pInfo = pToplevel->pAinc; while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; } if( pInfo==0 ){ pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo)); sqlite3ParserAddCleanup(pToplevel, sqlite3DbFree, pInfo); testcase( pParse->earlyCleanup ); if( pParse->db->mallocFailed ) return 0; pInfo->pNext = pToplevel->pAinc; pToplevel->pAinc = pInfo; pInfo->pTab = pTab; pInfo->iDb = iDb; pToplevel->nMem++; /* Register to hold name of table */ pInfo->regCtr = ++pToplevel->nMem; /* Max rowid register */ pToplevel->nMem +=2; /* Rowid in sqlite_sequence + orig max val */ } memId = pInfo->regCtr; } return memId; } /* ** This routine generates code that will initialize all of the ** register used by the autoincrement tracker. */ SQLITE_PRIVATE void sqlite3AutoincrementBegin(Parse *pParse){ AutoincInfo *p; /* Information about an AUTOINCREMENT */ sqlite3 *db = pParse->db; /* The database connection */ Db *pDb; /* Database only autoinc table */ int memId; /* Register holding max rowid */ Vdbe *v = pParse->pVdbe; /* VDBE under construction */ /* This routine is never called during trigger-generation. It is ** only called from the top-level */ assert( pParse->pTriggerTab==0 ); assert( sqlite3IsToplevel(pParse) ); assert( v ); /* We failed long ago if this is not so */ for(p = pParse->pAinc; p; p = p->pNext){ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList autoInc[] = { /* 0 */ {OP_Null, 0, 0, 0}, /* 1 */ {OP_Rewind, 0, 10, 0}, /* 2 */ {OP_Column, 0, 0, 0}, /* 3 */ {OP_Ne, 0, 9, 0}, /* 4 */ {OP_Rowid, 0, 0, 0}, /* 5 */ {OP_Column, 0, 1, 0}, /* 6 */ {OP_AddImm, 0, 0, 0}, /* 7 */ {OP_Copy, 0, 0, 0}, /* 8 */ {OP_Goto, 0, 11, 0}, /* 9 */ {OP_Next, 0, 2, 0}, /* 10 */ {OP_Integer, 0, 0, 0}, /* 11 */ {OP_Close, 0, 0, 0} }; VdbeOp *aOp; pDb = &db->aDb[p->iDb]; memId = p->regCtr; assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead); sqlite3VdbeLoadString(v, memId-1, p->pTab->zName); aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn); if( aOp==0 ) break; aOp[0].p2 = memId; aOp[0].p3 = memId+2; aOp[2].p3 = memId; aOp[3].p1 = memId-1; aOp[3].p3 = memId; aOp[3].p5 = SQLITE_JUMPIFNULL; aOp[4].p2 = memId+1; aOp[5].p3 = memId; aOp[6].p1 = memId; aOp[7].p2 = memId+2; aOp[7].p1 = memId; aOp[10].p2 = memId; if( pParse->nTab==0 ) pParse->nTab = 1; } } /* ** Update the maximum rowid for an autoincrement calculation. ** ** This routine should be called when the regRowid register holds a ** new rowid that is about to be inserted. If that new rowid is ** larger than the maximum rowid in the memId memory cell, then the ** memory cell is updated. */ static void autoIncStep(Parse *pParse, int memId, int regRowid){ if( memId>0 ){ sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid); } } /* ** This routine generates the code needed to write autoincrement ** maximum rowid values back into the sqlite_sequence register. ** Every statement that might do an INSERT into an autoincrement ** table (either directly or through triggers) needs to call this ** routine just before the "exit" code. */ static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){ AutoincInfo *p; Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; assert( v ); for(p = pParse->pAinc; p; p = p->pNext){ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList autoIncEnd[] = { /* 0 */ {OP_NotNull, 0, 2, 0}, /* 1 */ {OP_NewRowid, 0, 0, 0}, /* 2 */ {OP_MakeRecord, 0, 2, 0}, /* 3 */ {OP_Insert, 0, 0, 0}, /* 4 */ {OP_Close, 0, 0, 0} }; VdbeOp *aOp; Db *pDb = &db->aDb[p->iDb]; int iRec; int memId = p->regCtr; iRec = sqlite3GetTempReg(pParse); assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); sqlite3VdbeAddOp3(v, OP_Le, memId+2, sqlite3VdbeCurrentAddr(v)+7, memId); VdbeCoverage(v); sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite); aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn); if( aOp==0 ) break; aOp[0].p1 = memId+1; aOp[1].p2 = memId+1; aOp[2].p1 = memId-1; aOp[2].p3 = iRec; aOp[3].p2 = iRec; aOp[3].p3 = memId+1; aOp[3].p5 = OPFLAG_APPEND; sqlite3ReleaseTempReg(pParse, iRec); } } SQLITE_PRIVATE void sqlite3AutoincrementEnd(Parse *pParse){ if( pParse->pAinc ) autoIncrementEnd(pParse); } #else /* ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines ** above are all no-ops */ # define autoIncBegin(A,B,C) (0) # define autoIncStep(A,B,C) #endif /* SQLITE_OMIT_AUTOINCREMENT */ /* Forward declaration */ static int xferOptimization( Parse *pParse, /* Parser context */ Table *pDest, /* The table we are inserting into */ Select *pSelect, /* A SELECT statement to use as the data source */ int onError, /* How to handle constraint errors */ int iDbDest /* The database of pDest */ ); /* ** This routine is called to handle SQL of the following forms: ** ** insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),... ** insert into TABLE (IDLIST) select ** insert into TABLE (IDLIST) default values ** ** The IDLIST following the table name is always optional. If omitted, ** then a list of all (non-hidden) columns for the table is substituted. ** The IDLIST appears in the pColumn parameter. pColumn is NULL if IDLIST ** is omitted. ** ** For the pSelect parameter holds the values to be inserted for the ** first two forms shown above. A VALUES clause is really just short-hand ** for a SELECT statement that omits the FROM clause and everything else ** that follows. If the pSelect parameter is NULL, that means that the ** DEFAULT VALUES form of the INSERT statement is intended. ** ** The code generated follows one of four templates. For a simple ** insert with data coming from a single-row VALUES clause, the code executes ** once straight down through. Pseudo-code follows (we call this ** the "1st template"): ** ** open write cursor to
    and its indices ** put VALUES clause expressions into registers ** write the resulting record into
    ** cleanup ** ** The three remaining templates assume the statement is of the form ** ** INSERT INTO
    SELECT ... ** ** If the SELECT clause is of the restricted form "SELECT * FROM " - ** in other words if the SELECT pulls all columns from a single table ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and ** if and are distinct tables but have identical ** schemas, including all the same indices, then a special optimization ** is invoked that copies raw records from over to . ** See the xferOptimization() function for the implementation of this ** template. This is the 2nd template. ** ** open a write cursor to
    ** open read cursor on ** transfer all records in over to
    ** close cursors ** foreach index on
    ** open a write cursor on the
    index ** open a read cursor on the corresponding index ** transfer all records from the read to the write cursors ** close cursors ** end foreach ** ** The 3rd template is for when the second template does not apply ** and the SELECT clause does not read from
    at any time. ** The generated code follows this template: ** ** X <- A ** goto B ** A: setup for the SELECT ** loop over the rows in the SELECT ** load values into registers R..R+n ** yield X ** end loop ** cleanup after the SELECT ** end-coroutine X ** B: open write cursor to
    and its indices ** C: yield X, at EOF goto D ** insert the select result into
    from R..R+n ** goto C ** D: cleanup ** ** The 4th template is used if the insert statement takes its ** values from a SELECT but the data is being inserted into a table ** that is also read as part of the SELECT. In the third form, ** we have to use an intermediate table to store the results of ** the select. The template is like this: ** ** X <- A ** goto B ** A: setup for the SELECT ** loop over the tables in the SELECT ** load value into register R..R+n ** yield X ** end loop ** cleanup after the SELECT ** end co-routine R ** B: open temp table ** L: yield X, at EOF goto M ** insert row from R..R+n into temp table ** goto L ** M: open write cursor to
    and its indices ** rewind temp table ** C: loop over rows of intermediate table ** transfer values form intermediate table into
    ** end loop ** D: cleanup */ SQLITE_PRIVATE void sqlite3Insert( Parse *pParse, /* Parser context */ SrcList *pTabList, /* Name of table into which we are inserting */ Select *pSelect, /* A SELECT statement to use as the data source */ IdList *pColumn, /* Column names corresponding to IDLIST, or NULL. */ int onError, /* How to handle constraint errors */ Upsert *pUpsert /* ON CONFLICT clauses for upsert, or NULL */ ){ sqlite3 *db; /* The main database structure */ Table *pTab; /* The table to insert into. aka TABLE */ int i, j; /* Loop counters */ Vdbe *v; /* Generate code into this virtual machine */ Index *pIdx; /* For looping over indices of the table */ int nColumn; /* Number of columns in the data */ int nHidden = 0; /* Number of hidden columns if TABLE is virtual */ int iDataCur = 0; /* VDBE cursor that is the main data repository */ int iIdxCur = 0; /* First index cursor */ int ipkColumn = -1; /* Column that is the INTEGER PRIMARY KEY */ int endOfLoop; /* Label for the end of the insertion loop */ int srcTab = 0; /* Data comes from this temporary cursor if >=0 */ int addrInsTop = 0; /* Jump to label "D" */ int addrCont = 0; /* Top of insert loop. Label "C" in templates 3 and 4 */ SelectDest dest; /* Destination for SELECT on rhs of INSERT */ int iDb; /* Index of database holding TABLE */ u8 useTempTable = 0; /* Store SELECT results in intermediate table */ u8 appendFlag = 0; /* True if the insert is likely to be an append */ u8 withoutRowid; /* 0 for normal table. 1 for WITHOUT ROWID table */ u8 bIdListInOrder; /* True if IDLIST is in table order */ ExprList *pList = 0; /* List of VALUES() to be inserted */ int iRegStore; /* Register in which to store next column */ /* Register allocations */ int regFromSelect = 0;/* Base register for data coming from SELECT */ int regAutoinc = 0; /* Register holding the AUTOINCREMENT counter */ int regRowCount = 0; /* Memory cell used for the row counter */ int regIns; /* Block of regs holding rowid+data being inserted */ int regRowid; /* registers holding insert rowid */ int regData; /* register holding first column to insert */ int *aRegIdx = 0; /* One register allocated to each index */ #ifndef SQLITE_OMIT_TRIGGER int isView; /* True if attempting to insert into a view */ Trigger *pTrigger; /* List of triggers on pTab, if required */ int tmask; /* Mask of trigger times */ #endif db = pParse->db; assert( db->pParse==pParse ); if( pParse->nErr ){ goto insert_cleanup; } assert( db->mallocFailed==0 ); dest.iSDParm = 0; /* Suppress a harmless compiler warning */ /* If the Select object is really just a simple VALUES() list with a ** single row (the common case) then keep that one row of values ** and discard the other (unused) parts of the pSelect object */ if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){ pList = pSelect->pEList; pSelect->pEList = 0; sqlite3SelectDelete(db, pSelect); pSelect = 0; } /* Locate the table into which we will be inserting new information. */ assert( pTabList->nSrc==1 ); pTab = sqlite3SrcListLookup(pParse, pTabList); if( pTab==0 ){ goto insert_cleanup; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDbnDb ); if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, db->aDb[iDb].zDbSName) ){ goto insert_cleanup; } withoutRowid = !HasRowid(pTab); /* Figure out if we have any triggers and if the table being ** inserted into is a view */ #ifndef SQLITE_OMIT_TRIGGER pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask); isView = IsView(pTab); #else # define pTrigger 0 # define tmask 0 # define isView 0 #endif #ifdef SQLITE_OMIT_VIEW # undef isView # define isView 0 #endif assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) ); /* If pTab is really a view, make sure it has been initialized. ** ViewGetColumnNames() is a no-op if pTab is not a view. */ if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto insert_cleanup; } /* Cannot insert into a read-only table. */ if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ goto insert_cleanup; } /* Allocate a VDBE */ v = sqlite3GetVdbe(pParse); if( v==0 ) goto insert_cleanup; if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb); #ifndef SQLITE_OMIT_XFER_OPT /* If the statement is of the form ** ** INSERT INTO SELECT * FROM ; ** ** Then special optimizations can be applied that make the transfer ** very fast and which reduce fragmentation of indices. ** ** This is the 2nd template. */ if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){ assert( !pTrigger ); assert( pList==0 ); goto insert_end; } #endif /* SQLITE_OMIT_XFER_OPT */ /* If this is an AUTOINCREMENT table, look up the sequence number in the ** sqlite_sequence table and store it in memory cell regAutoinc. */ regAutoinc = autoIncBegin(pParse, iDb, pTab); /* Allocate a block registers to hold the rowid and the values ** for all columns of the new row. */ regRowid = regIns = pParse->nMem+1; pParse->nMem += pTab->nCol + 1; if( IsVirtual(pTab) ){ regRowid++; pParse->nMem++; } regData = regRowid+1; /* If the INSERT statement included an IDLIST term, then make sure ** all elements of the IDLIST really are columns of the table and ** remember the column indices. ** ** If the table has an INTEGER PRIMARY KEY column and that column ** is named in the IDLIST, then record in the ipkColumn variable ** the index into IDLIST of the primary key column. ipkColumn is ** the index of the primary key as it appears in IDLIST, not as ** is appears in the original table. (The index of the INTEGER ** PRIMARY KEY in the original table is pTab->iPKey.) After this ** loop, if ipkColumn==(-1), that means that integer primary key ** is unspecified, and hence the table is either WITHOUT ROWID or ** it will automatically generated an integer primary key. ** ** bIdListInOrder is true if the columns in IDLIST are in storage ** order. This enables an optimization that avoids shuffling the ** columns into storage order. False negatives are harmless, ** but false positives will cause database corruption. */ bIdListInOrder = (pTab->tabFlags & (TF_OOOHidden|TF_HasStored))==0; if( pColumn ){ for(i=0; inId; i++){ pColumn->a[i].idx = -1; } for(i=0; inId; i++){ for(j=0; jnCol; j++){ if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zCnName)==0 ){ pColumn->a[i].idx = j; if( i!=j ) bIdListInOrder = 0; if( j==pTab->iPKey ){ ipkColumn = i; assert( !withoutRowid ); } #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pTab->aCol[j].colFlags & (COLFLAG_STORED|COLFLAG_VIRTUAL) ){ sqlite3ErrorMsg(pParse, "cannot INSERT into generated column \"%s\"", pTab->aCol[j].zCnName); goto insert_cleanup; } #endif break; } } if( j>=pTab->nCol ){ if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){ ipkColumn = i; bIdListInOrder = 0; }else{ sqlite3ErrorMsg(pParse, "table %S has no column named %s", pTabList->a, pColumn->a[i].zName); pParse->checkSchema = 1; goto insert_cleanup; } } } } /* Figure out how many columns of data are supplied. If the data ** is coming from a SELECT statement, then generate a co-routine that ** produces a single row of the SELECT on each invocation. The ** co-routine is the common header to the 3rd and 4th templates. */ if( pSelect ){ /* Data is coming from a SELECT or from a multi-row VALUES clause. ** Generate a co-routine to run the SELECT. */ int regYield; /* Register holding co-routine entry-point */ int addrTop; /* Top of the co-routine */ int rc; /* Result code */ regYield = ++pParse->nMem; addrTop = sqlite3VdbeCurrentAddr(v) + 1; sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop); sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield); dest.iSdst = bIdListInOrder ? regData : 0; dest.nSdst = pTab->nCol; rc = sqlite3Select(pParse, pSelect, &dest); regFromSelect = dest.iSdst; assert( db->pParse==pParse ); if( rc || pParse->nErr ) goto insert_cleanup; assert( db->mallocFailed==0 ); sqlite3VdbeEndCoroutine(v, regYield); sqlite3VdbeJumpHere(v, addrTop - 1); /* label B: */ assert( pSelect->pEList ); nColumn = pSelect->pEList->nExpr; /* Set useTempTable to TRUE if the result of the SELECT statement ** should be written into a temporary table (template 4). Set to ** FALSE if each output row of the SELECT can be written directly into ** the destination table (template 3). ** ** A temp table must be used if the table being updated is also one ** of the tables being read by the SELECT statement. Also use a ** temp table in the case of row triggers. */ if( pTrigger || readsTable(pParse, iDb, pTab) ){ useTempTable = 1; } if( useTempTable ){ /* Invoke the coroutine to extract information from the SELECT ** and add it to a transient table srcTab. The code generated ** here is from the 4th template: ** ** B: open temp table ** L: yield X, goto M at EOF ** insert row from R..R+n into temp table ** goto L ** M: ... */ int regRec; /* Register to hold packed record */ int regTempRowid; /* Register to hold temp table ROWID */ int addrL; /* Label "L" */ srcTab = pParse->nTab++; regRec = sqlite3GetTempReg(pParse); regTempRowid = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn); addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec); sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid); sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid); sqlite3VdbeGoto(v, addrL); sqlite3VdbeJumpHere(v, addrL); sqlite3ReleaseTempReg(pParse, regRec); sqlite3ReleaseTempReg(pParse, regTempRowid); } }else{ /* This is the case if the data for the INSERT is coming from a ** single-row VALUES clause */ NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; srcTab = -1; assert( useTempTable==0 ); if( pList ){ nColumn = pList->nExpr; if( sqlite3ResolveExprListNames(&sNC, pList) ){ goto insert_cleanup; } }else{ nColumn = 0; } } /* If there is no IDLIST term but the table has an integer primary ** key, the set the ipkColumn variable to the integer primary key ** column index in the original table definition. */ if( pColumn==0 && nColumn>0 ){ ipkColumn = pTab->iPKey; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( ipkColumn>=0 && (pTab->tabFlags & TF_HasGenerated)!=0 ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); for(i=ipkColumn-1; i>=0; i--){ if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ testcase( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ); testcase( pTab->aCol[i].colFlags & COLFLAG_STORED ); ipkColumn--; } } } #endif /* Make sure the number of columns in the source data matches the number ** of columns to be inserted into the table. */ assert( TF_HasHidden==COLFLAG_HIDDEN ); assert( TF_HasGenerated==COLFLAG_GENERATED ); assert( COLFLAG_NOINSERT==(COLFLAG_GENERATED|COLFLAG_HIDDEN) ); if( (pTab->tabFlags & (TF_HasGenerated|TF_HasHidden))!=0 ){ for(i=0; inCol; i++){ if( pTab->aCol[i].colFlags & COLFLAG_NOINSERT ) nHidden++; } } if( nColumn!=(pTab->nCol-nHidden) ){ sqlite3ErrorMsg(pParse, "table %S has %d columns but %d values were supplied", pTabList->a, pTab->nCol-nHidden, nColumn); goto insert_cleanup; } } if( pColumn!=0 && nColumn!=pColumn->nId ){ sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); goto insert_cleanup; } /* Initialize the count of rows to be inserted */ if( (db->flags & SQLITE_CountRows)!=0 && !pParse->nested && !pParse->pTriggerTab && !pParse->bReturning ){ regRowCount = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); } /* If this is not a view, open the table and and all indices */ if( !isView ){ int nIdx; nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0, &iDataCur, &iIdxCur); aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+2)); if( aRegIdx==0 ){ goto insert_cleanup; } for(i=0, pIdx=pTab->pIndex; ipNext, i++){ assert( pIdx ); aRegIdx[i] = ++pParse->nMem; pParse->nMem += pIdx->nColumn; } aRegIdx[i] = ++pParse->nMem; /* Register to store the table record */ } #ifndef SQLITE_OMIT_UPSERT if( pUpsert ){ Upsert *pNx; if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "UPSERT not implemented for virtual table \"%s\"", pTab->zName); goto insert_cleanup; } if( IsView(pTab) ){ sqlite3ErrorMsg(pParse, "cannot UPSERT a view"); goto insert_cleanup; } if( sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget) ){ goto insert_cleanup; } pTabList->a[0].iCursor = iDataCur; pNx = pUpsert; do{ pNx->pUpsertSrc = pTabList; pNx->regData = regData; pNx->iDataCur = iDataCur; pNx->iIdxCur = iIdxCur; if( pNx->pUpsertTarget ){ if( sqlite3UpsertAnalyzeTarget(pParse, pTabList, pNx) ){ goto insert_cleanup; } } pNx = pNx->pNextUpsert; }while( pNx!=0 ); } #endif /* This is the top of the main insertion loop */ if( useTempTable ){ /* This block codes the top of loop only. The complete loop is the ** following pseudocode (template 4): ** ** rewind temp table, if empty goto D ** C: loop over rows of intermediate table ** transfer values form intermediate table into
    ** end loop ** D: ... */ addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v); addrCont = sqlite3VdbeCurrentAddr(v); }else if( pSelect ){ /* This block codes the top of loop only. The complete loop is the ** following pseudocode (template 3): ** ** C: yield X, at EOF goto D ** insert the select result into
    from R..R+n ** goto C ** D: ... */ sqlite3VdbeReleaseRegisters(pParse, regData, pTab->nCol, 0, 0); addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); if( ipkColumn>=0 ){ /* tag-20191021-001: If the INTEGER PRIMARY KEY is being generated by the ** SELECT, go ahead and copy the value into the rowid slot now, so that ** the value does not get overwritten by a NULL at tag-20191021-002. */ sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid); } } /* Compute data for ordinary columns of the new entry. Values ** are written in storage order into registers starting with regData. ** Only ordinary columns are computed in this loop. The rowid ** (if there is one) is computed later and generated columns are ** computed after the rowid since they might depend on the value ** of the rowid. */ nHidden = 0; iRegStore = regData; assert( regData==regRowid+1 ); for(i=0; inCol; i++, iRegStore++){ int k; u32 colFlags; assert( i>=nHidden ); if( i==pTab->iPKey ){ /* tag-20191021-002: References to the INTEGER PRIMARY KEY are filled ** using the rowid. So put a NULL in the IPK slot of the record to avoid ** using excess space. The file format definition requires this extra ** NULL - we cannot optimize further by skipping the column completely */ sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore); continue; } if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){ nHidden++; if( (colFlags & COLFLAG_VIRTUAL)!=0 ){ /* Virtual columns do not participate in OP_MakeRecord. So back up ** iRegStore by one slot to compensate for the iRegStore++ in the ** outer for() loop */ iRegStore--; continue; }else if( (colFlags & COLFLAG_STORED)!=0 ){ /* Stored columns are computed later. But if there are BEFORE ** triggers, the slots used for stored columns will be OP_Copy-ed ** to a second block of registers, so the register needs to be ** initialized to NULL to avoid an uninitialized register read */ if( tmask & TRIGGER_BEFORE ){ sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore); } continue; }else if( pColumn==0 ){ /* Hidden columns that are not explicitly named in the INSERT ** get there default value */ sqlite3ExprCodeFactorable(pParse, sqlite3ColumnExpr(pTab, &pTab->aCol[i]), iRegStore); continue; } } if( pColumn ){ for(j=0; jnId && pColumn->a[j].idx!=i; j++){} if( j>=pColumn->nId ){ /* A column not named in the insert column list gets its ** default value */ sqlite3ExprCodeFactorable(pParse, sqlite3ColumnExpr(pTab, &pTab->aCol[i]), iRegStore); continue; } k = j; }else if( nColumn==0 ){ /* This is INSERT INTO ... DEFAULT VALUES. Load the default value. */ sqlite3ExprCodeFactorable(pParse, sqlite3ColumnExpr(pTab, &pTab->aCol[i]), iRegStore); continue; }else{ k = i - nHidden; } if( useTempTable ){ sqlite3VdbeAddOp3(v, OP_Column, srcTab, k, iRegStore); }else if( pSelect ){ if( regFromSelect!=regData ){ sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+k, iRegStore); } }else{ sqlite3ExprCode(pParse, pList->a[k].pExpr, iRegStore); } } /* Run the BEFORE and INSTEAD OF triggers, if there are any */ endOfLoop = sqlite3VdbeMakeLabel(pParse); if( tmask & TRIGGER_BEFORE ){ int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1); /* build the NEW.* reference row. Note that if there is an INTEGER ** PRIMARY KEY into which a NULL is being inserted, that NULL will be ** translated into a unique ID for the row. But on a BEFORE trigger, ** we do not know what the unique ID will be (because the insert has ** not happened yet) so we substitute a rowid of -1 */ if( ipkColumn<0 ){ sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); }else{ int addr1; assert( !withoutRowid ); if( useTempTable ){ sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols); }else{ assert( pSelect==0 ); /* Otherwise useTempTable is true */ sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols); } addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v); } /* Copy the new data already generated. */ assert( pTab->nNVCol>0 ); sqlite3VdbeAddOp3(v, OP_Copy, regRowid+1, regCols+1, pTab->nNVCol-1); #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Compute the new value for generated columns after all other ** columns have already been computed. This must be done after ** computing the ROWID in case one of the generated columns ** refers to the ROWID. */ if( pTab->tabFlags & TF_HasGenerated ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); sqlite3ComputeGeneratedColumns(pParse, regCols+1, pTab); } #endif /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger, ** do not attempt any conversions before assembling the record. ** If this is a real table, attempt conversions as required by the ** table column affinities. */ if( !isView ){ sqlite3TableAffinity(v, pTab, regCols+1); } /* Fire BEFORE or INSTEAD OF triggers */ sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE, pTab, regCols-pTab->nCol-1, onError, endOfLoop); sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1); } if( !isView ){ if( IsVirtual(pTab) ){ /* The row that the VUpdate opcode will delete: none */ sqlite3VdbeAddOp2(v, OP_Null, 0, regIns); } if( ipkColumn>=0 ){ /* Compute the new rowid */ if( useTempTable ){ sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid); }else if( pSelect ){ /* Rowid already initialized at tag-20191021-001 */ }else{ Expr *pIpk = pList->a[ipkColumn].pExpr; if( pIpk->op==TK_NULL && !IsVirtual(pTab) ){ sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); appendFlag = 1; }else{ sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid); } } /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid ** to generate a unique primary key value. */ if( !appendFlag ){ int addr1; if( !IsVirtual(pTab) ){ addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); sqlite3VdbeJumpHere(v, addr1); }else{ addr1 = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v); } sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v); } }else if( IsVirtual(pTab) || withoutRowid ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid); }else{ sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); appendFlag = 1; } autoIncStep(pParse, regAutoinc, regRowid); #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Compute the new value for generated columns after all other ** columns have already been computed. This must be done after ** computing the ROWID in case one of the generated columns ** is derived from the INTEGER PRIMARY KEY. */ if( pTab->tabFlags & TF_HasGenerated ){ sqlite3ComputeGeneratedColumns(pParse, regRowid+1, pTab); } #endif /* Generate code to check constraints and generate index keys and ** do the insertion. */ #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); sqlite3VtabMakeWritable(pParse, pTab); sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB); sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError); sqlite3MayAbort(pParse); }else #endif { int isReplace = 0;/* Set to true if constraints may cause a replace */ int bUseSeek; /* True to use OPFLAG_SEEKRESULT */ sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0, pUpsert ); sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0); /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE ** constraints or (b) there are no triggers and this table is not a ** parent table in a foreign key constraint. It is safe to set the ** flag in the second case as if any REPLACE constraint is hit, an ** OP_Delete or OP_IdxDelete instruction will be executed on each ** cursor that is disturbed. And these instructions both clear the ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT ** functionality. */ bUseSeek = (isReplace==0 || !sqlite3VdbeHasSubProgram(v)); sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur, regIns, aRegIdx, 0, appendFlag, bUseSeek ); } #ifdef SQLITE_ALLOW_ROWID_IN_VIEW }else if( pParse->bReturning ){ /* If there is a RETURNING clause, populate the rowid register with ** constant value -1, in case one or more of the returned expressions ** refer to the "rowid" of the view. */ sqlite3VdbeAddOp2(v, OP_Integer, -1, regRowid); #endif } /* Update the count of rows that are inserted */ if( regRowCount ){ sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); } if( pTrigger ){ /* Code AFTER triggers */ sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER, pTab, regData-2-pTab->nCol, onError, endOfLoop); } /* The bottom of the main insertion loop, if the data source ** is a SELECT statement. */ sqlite3VdbeResolveLabel(v, endOfLoop); if( useTempTable ){ sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrInsTop); sqlite3VdbeAddOp1(v, OP_Close, srcTab); }else if( pSelect ){ sqlite3VdbeGoto(v, addrCont); #ifdef SQLITE_DEBUG /* If we are jumping back to an OP_Yield that is preceded by an ** OP_ReleaseReg, set the p5 flag on the OP_Goto so that the ** OP_ReleaseReg will be included in the loop. */ if( sqlite3VdbeGetOp(v, addrCont-1)->opcode==OP_ReleaseReg ){ assert( sqlite3VdbeGetOp(v, addrCont)->opcode==OP_Yield ); sqlite3VdbeChangeP5(v, 1); } #endif sqlite3VdbeJumpHere(v, addrInsTop); } #ifndef SQLITE_OMIT_XFER_OPT insert_end: #endif /* SQLITE_OMIT_XFER_OPT */ /* Update the sqlite_sequence table by storing the content of the ** maximum rowid counter values recorded while inserting into ** autoincrement tables. */ if( pParse->nested==0 && pParse->pTriggerTab==0 ){ sqlite3AutoincrementEnd(pParse); } /* ** Return the number of rows inserted. If this routine is ** generating code because of a call to sqlite3NestedParse(), do not ** invoke the callback function. */ if( regRowCount ){ sqlite3CodeChangeCount(v, regRowCount, "rows inserted"); } insert_cleanup: sqlite3SrcListDelete(db, pTabList); sqlite3ExprListDelete(db, pList); sqlite3UpsertDelete(db, pUpsert); sqlite3SelectDelete(db, pSelect); sqlite3IdListDelete(db, pColumn); sqlite3DbFree(db, aRegIdx); } /* Make sure "isView" and other macros defined above are undefined. Otherwise ** they may interfere with compilation of other functions in this file ** (or in another file, if this file becomes part of the amalgamation). */ #ifdef isView #undef isView #endif #ifdef pTrigger #undef pTrigger #endif #ifdef tmask #undef tmask #endif /* ** Meanings of bits in of pWalker->eCode for ** sqlite3ExprReferencesUpdatedColumn() */ #define CKCNSTRNT_COLUMN 0x01 /* CHECK constraint uses a changing column */ #define CKCNSTRNT_ROWID 0x02 /* CHECK constraint references the ROWID */ /* This is the Walker callback from sqlite3ExprReferencesUpdatedColumn(). * Set bit 0x01 of pWalker->eCode if pWalker->eCode to 0 and if this ** expression node references any of the ** columns that are being modifed by an UPDATE statement. */ static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN ){ assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 ); if( pExpr->iColumn>=0 ){ if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){ pWalker->eCode |= CKCNSTRNT_COLUMN; } }else{ pWalker->eCode |= CKCNSTRNT_ROWID; } } return WRC_Continue; } /* ** pExpr is a CHECK constraint on a row that is being UPDATE-ed. The ** only columns that are modified by the UPDATE are those for which ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true. ** ** Return true if CHECK constraint pExpr uses any of the ** changing columns (or the rowid if it is changing). In other words, ** return true if this CHECK constraint must be validated for ** the new row in the UPDATE statement. ** ** 2018-09-15: pExpr might also be an expression for an index-on-expressions. ** The operation of this routine is the same - return true if an only if ** the expression uses one or more of columns identified by the second and ** third arguments. */ SQLITE_PRIVATE int sqlite3ExprReferencesUpdatedColumn( Expr *pExpr, /* The expression to be checked */ int *aiChng, /* aiChng[x]>=0 if column x changed by the UPDATE */ int chngRowid /* True if UPDATE changes the rowid */ ){ Walker w; memset(&w, 0, sizeof(w)); w.eCode = 0; w.xExprCallback = checkConstraintExprNode; w.u.aiCol = aiChng; sqlite3WalkExpr(&w, pExpr); if( !chngRowid ){ testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 ); w.eCode &= ~CKCNSTRNT_ROWID; } testcase( w.eCode==0 ); testcase( w.eCode==CKCNSTRNT_COLUMN ); testcase( w.eCode==CKCNSTRNT_ROWID ); testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) ); return w.eCode!=0; } /* ** The sqlite3GenerateConstraintChecks() routine usually wants to visit ** the indexes of a table in the order provided in the Table->pIndex list. ** However, sometimes (rarely - when there is an upsert) it wants to visit ** the indexes in a different order. The following data structures accomplish ** this. ** ** The IndexIterator object is used to walk through all of the indexes ** of a table in either Index.pNext order, or in some other order established ** by an array of IndexListTerm objects. */ typedef struct IndexListTerm IndexListTerm; typedef struct IndexIterator IndexIterator; struct IndexIterator { int eType; /* 0 for Index.pNext list. 1 for an array of IndexListTerm */ int i; /* Index of the current item from the list */ union { struct { /* Use this object for eType==0: A Index.pNext list */ Index *pIdx; /* The current Index */ } lx; struct { /* Use this object for eType==1; Array of IndexListTerm */ int nIdx; /* Size of the array */ IndexListTerm *aIdx; /* Array of IndexListTerms */ } ax; } u; }; /* When IndexIterator.eType==1, then each index is an array of instances ** of the following object */ struct IndexListTerm { Index *p; /* The index */ int ix; /* Which entry in the original Table.pIndex list is this index*/ }; /* Return the first index on the list */ static Index *indexIteratorFirst(IndexIterator *pIter, int *pIx){ assert( pIter->i==0 ); if( pIter->eType ){ *pIx = pIter->u.ax.aIdx[0].ix; return pIter->u.ax.aIdx[0].p; }else{ *pIx = 0; return pIter->u.lx.pIdx; } } /* Return the next index from the list. Return NULL when out of indexes */ static Index *indexIteratorNext(IndexIterator *pIter, int *pIx){ if( pIter->eType ){ int i = ++pIter->i; if( i>=pIter->u.ax.nIdx ){ *pIx = i; return 0; } *pIx = pIter->u.ax.aIdx[i].ix; return pIter->u.ax.aIdx[i].p; }else{ ++(*pIx); pIter->u.lx.pIdx = pIter->u.lx.pIdx->pNext; return pIter->u.lx.pIdx; } } /* ** Generate code to do constraint checks prior to an INSERT or an UPDATE ** on table pTab. ** ** The regNewData parameter is the first register in a range that contains ** the data to be inserted or the data after the update. There will be ** pTab->nCol+1 registers in this range. The first register (the one ** that regNewData points to) will contain the new rowid, or NULL in the ** case of a WITHOUT ROWID table. The second register in the range will ** contain the content of the first table column. The third register will ** contain the content of the second table column. And so forth. ** ** The regOldData parameter is similar to regNewData except that it contains ** the data prior to an UPDATE rather than afterwards. regOldData is zero ** for an INSERT. This routine can distinguish between UPDATE and INSERT by ** checking regOldData for zero. ** ** For an UPDATE, the pkChng boolean is true if the true primary key (the ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table) ** might be modified by the UPDATE. If pkChng is false, then the key of ** the iDataCur content table is guaranteed to be unchanged by the UPDATE. ** ** For an INSERT, the pkChng boolean indicates whether or not the rowid ** was explicitly specified as part of the INSERT statement. If pkChng ** is zero, it means that the either rowid is computed automatically or ** that the table is a WITHOUT ROWID table and has no rowid. On an INSERT, ** pkChng will only be true if the INSERT statement provides an integer ** value for either the rowid column or its INTEGER PRIMARY KEY alias. ** ** The code generated by this routine will store new index entries into ** registers identified by aRegIdx[]. No index entry is created for ** indices where aRegIdx[i]==0. The order of indices in aRegIdx[] is ** the same as the order of indices on the linked list of indices ** at pTab->pIndex. ** ** (2019-05-07) The generated code also creates a new record for the ** main table, if pTab is a rowid table, and stores that record in the ** register identified by aRegIdx[nIdx] - in other words in the first ** entry of aRegIdx[] past the last index. It is important that the ** record be generated during constraint checks to avoid affinity changes ** to the register content that occur after constraint checks but before ** the new record is inserted. ** ** The caller must have already opened writeable cursors on the main ** table and all applicable indices (that is to say, all indices for which ** aRegIdx[] is not zero). iDataCur is the cursor for the main table when ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY ** index when operating on a WITHOUT ROWID table. iIdxCur is the cursor ** for the first index in the pTab->pIndex list. Cursors for other indices ** are at iIdxCur+N for the N-th element of the pTab->pIndex list. ** ** This routine also generates code to check constraints. NOT NULL, ** CHECK, and UNIQUE constraints are all checked. If a constraint fails, ** then the appropriate action is performed. There are five possible ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE. ** ** Constraint type Action What Happens ** --------------- ---------- ---------------------------------------- ** any ROLLBACK The current transaction is rolled back and ** sqlite3_step() returns immediately with a ** return code of SQLITE_CONSTRAINT. ** ** any ABORT Back out changes from the current command ** only (do not do a complete rollback) then ** cause sqlite3_step() to return immediately ** with SQLITE_CONSTRAINT. ** ** any FAIL Sqlite3_step() returns immediately with a ** return code of SQLITE_CONSTRAINT. The ** transaction is not rolled back and any ** changes to prior rows are retained. ** ** any IGNORE The attempt in insert or update the current ** row is skipped, without throwing an error. ** Processing continues with the next row. ** (There is an immediate jump to ignoreDest.) ** ** NOT NULL REPLACE The NULL value is replace by the default ** value for that column. If the default value ** is NULL, the action is the same as ABORT. ** ** UNIQUE REPLACE The other row that conflicts with the row ** being inserted is removed. ** ** CHECK REPLACE Illegal. The results in an exception. ** ** Which action to take is determined by the overrideError parameter. ** Or if overrideError==OE_Default, then the pParse->onError parameter ** is used. Or if pParse->onError==OE_Default then the onError value ** for the constraint is used. */ SQLITE_PRIVATE void sqlite3GenerateConstraintChecks( Parse *pParse, /* The parser context */ Table *pTab, /* The table being inserted or updated */ int *aRegIdx, /* Use register aRegIdx[i] for index i. 0 for unused */ int iDataCur, /* Canonical data cursor (main table or PK index) */ int iIdxCur, /* First index cursor */ int regNewData, /* First register in a range holding values to insert */ int regOldData, /* Previous content. 0 for INSERTs */ u8 pkChng, /* Non-zero if the rowid or PRIMARY KEY changed */ u8 overrideError, /* Override onError to this if not OE_Default */ int ignoreDest, /* Jump to this label on an OE_Ignore resolution */ int *pbMayReplace, /* OUT: Set to true if constraint may cause a replace */ int *aiChng, /* column i is unchanged if aiChng[i]<0 */ Upsert *pUpsert /* ON CONFLICT clauses, if any. NULL otherwise */ ){ Vdbe *v; /* VDBE under constrution */ Index *pIdx; /* Pointer to one of the indices */ Index *pPk = 0; /* The PRIMARY KEY index for WITHOUT ROWID tables */ sqlite3 *db; /* Database connection */ int i; /* loop counter */ int ix; /* Index loop counter */ int nCol; /* Number of columns */ int onError; /* Conflict resolution strategy */ int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */ int nPkField; /* Number of fields in PRIMARY KEY. 1 for ROWID tables */ Upsert *pUpsertClause = 0; /* The specific ON CONFLICT clause for pIdx */ u8 isUpdate; /* True if this is an UPDATE operation */ u8 bAffinityDone = 0; /* True if the OP_Affinity operation has been run */ int upsertIpkReturn = 0; /* Address of Goto at end of IPK uniqueness check */ int upsertIpkDelay = 0; /* Address of Goto to bypass initial IPK check */ int ipkTop = 0; /* Top of the IPK uniqueness check */ int ipkBottom = 0; /* OP_Goto at the end of the IPK uniqueness check */ /* Variables associated with retesting uniqueness constraints after ** replace triggers fire have run */ int regTrigCnt; /* Register used to count replace trigger invocations */ int addrRecheck = 0; /* Jump here to recheck all uniqueness constraints */ int lblRecheckOk = 0; /* Each recheck jumps to this label if it passes */ Trigger *pTrigger; /* List of DELETE triggers on the table pTab */ int nReplaceTrig = 0; /* Number of replace triggers coded */ IndexIterator sIdxIter; /* Index iterator */ isUpdate = regOldData!=0; db = pParse->db; v = pParse->pVdbe; assert( v!=0 ); assert( !IsView(pTab) ); /* This table is not a VIEW */ nCol = pTab->nCol; /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for ** normal rowid tables. nPkField is the number of key fields in the ** pPk index or 1 for a rowid table. In other words, nPkField is the ** number of fields in the true primary key of the table. */ if( HasRowid(pTab) ){ pPk = 0; nPkField = 1; }else{ pPk = sqlite3PrimaryKeyIndex(pTab); nPkField = pPk->nKeyCol; } /* Record that this module has started */ VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)", iDataCur, iIdxCur, regNewData, regOldData, pkChng)); /* Test all NOT NULL constraints. */ if( pTab->tabFlags & TF_HasNotNull ){ int b2ndPass = 0; /* True if currently running 2nd pass */ int nSeenReplace = 0; /* Number of ON CONFLICT REPLACE operations */ int nGenerated = 0; /* Number of generated columns with NOT NULL */ while(1){ /* Make 2 passes over columns. Exit loop via "break" */ for(i=0; iaCol[i]; /* The column to check for NOT NULL */ int isGenerated; /* non-zero if column is generated */ onError = pCol->notNull; if( onError==OE_None ) continue; /* No NOT NULL on this column */ if( i==pTab->iPKey ){ continue; /* ROWID is never NULL */ } isGenerated = pCol->colFlags & COLFLAG_GENERATED; if( isGenerated && !b2ndPass ){ nGenerated++; continue; /* Generated columns processed on 2nd pass */ } if( aiChng && aiChng[i]<0 && !isGenerated ){ /* Do not check NOT NULL on columns that do not change */ continue; } if( overrideError!=OE_Default ){ onError = overrideError; }else if( onError==OE_Default ){ onError = OE_Abort; } if( onError==OE_Replace ){ if( b2ndPass /* REPLACE becomes ABORT on the 2nd pass */ || pCol->iDflt==0 /* REPLACE is ABORT if no DEFAULT value */ ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); testcase( pCol->colFlags & COLFLAG_GENERATED ); onError = OE_Abort; }else{ assert( !isGenerated ); } }else if( b2ndPass && !isGenerated ){ continue; } assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail || onError==OE_Ignore || onError==OE_Replace ); testcase( i!=sqlite3TableColumnToStorage(pTab, i) ); iReg = sqlite3TableColumnToStorage(pTab, i) + regNewData + 1; switch( onError ){ case OE_Replace: { int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, iReg); VdbeCoverage(v); assert( (pCol->colFlags & COLFLAG_GENERATED)==0 ); nSeenReplace++; sqlite3ExprCodeCopy(pParse, sqlite3ColumnExpr(pTab, pCol), iReg); sqlite3VdbeJumpHere(v, addr1); break; } case OE_Abort: sqlite3MayAbort(pParse); /* no break */ deliberate_fall_through case OE_Rollback: case OE_Fail: { char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName, pCol->zCnName); sqlite3VdbeAddOp3(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError, iReg); sqlite3VdbeAppendP4(v, zMsg, P4_DYNAMIC); sqlite3VdbeChangeP5(v, P5_ConstraintNotNull); VdbeCoverage(v); break; } default: { assert( onError==OE_Ignore ); sqlite3VdbeAddOp2(v, OP_IsNull, iReg, ignoreDest); VdbeCoverage(v); break; } } /* end switch(onError) */ } /* end loop i over columns */ if( nGenerated==0 && nSeenReplace==0 ){ /* If there are no generated columns with NOT NULL constraints ** and no NOT NULL ON CONFLICT REPLACE constraints, then a single ** pass is sufficient */ break; } if( b2ndPass ) break; /* Never need more than 2 passes */ b2ndPass = 1; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( nSeenReplace>0 && (pTab->tabFlags & TF_HasGenerated)!=0 ){ /* If any NOT NULL ON CONFLICT REPLACE constraints fired on the ** first pass, recomputed values for all generated columns, as ** those values might depend on columns affected by the REPLACE. */ sqlite3ComputeGeneratedColumns(pParse, regNewData+1, pTab); } #endif } /* end of 2-pass loop */ } /* end if( has-not-null-constraints ) */ /* Test all CHECK constraints */ #ifndef SQLITE_OMIT_CHECK if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){ ExprList *pCheck = pTab->pCheck; pParse->iSelfTab = -(regNewData+1); onError = overrideError!=OE_Default ? overrideError : OE_Abort; for(i=0; inExpr; i++){ int allOk; Expr *pCopy; Expr *pExpr = pCheck->a[i].pExpr; if( aiChng && !sqlite3ExprReferencesUpdatedColumn(pExpr, aiChng, pkChng) ){ /* The check constraints do not reference any of the columns being ** updated so there is no point it verifying the check constraint */ continue; } if( bAffinityDone==0 ){ sqlite3TableAffinity(v, pTab, regNewData+1); bAffinityDone = 1; } allOk = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeVerifyAbortable(v, onError); pCopy = sqlite3ExprDup(db, pExpr, 0); if( !db->mallocFailed ){ sqlite3ExprIfTrue(pParse, pCopy, allOk, SQLITE_JUMPIFNULL); } sqlite3ExprDelete(db, pCopy); if( onError==OE_Ignore ){ sqlite3VdbeGoto(v, ignoreDest); }else{ char *zName = pCheck->a[i].zEName; assert( zName!=0 || pParse->db->mallocFailed ); if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-26383-51744 */ sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK, onError, zName, P4_TRANSIENT, P5_ConstraintCheck); } sqlite3VdbeResolveLabel(v, allOk); } pParse->iSelfTab = 0; } #endif /* !defined(SQLITE_OMIT_CHECK) */ /* UNIQUE and PRIMARY KEY constraints should be handled in the following ** order: ** ** (1) OE_Update ** (2) OE_Abort, OE_Fail, OE_Rollback, OE_Ignore ** (3) OE_Replace ** ** OE_Fail and OE_Ignore must happen before any changes are made. ** OE_Update guarantees that only a single row will change, so it ** must happen before OE_Replace. Technically, OE_Abort and OE_Rollback ** could happen in any order, but they are grouped up front for ** convenience. ** ** 2018-08-14: Ticket https://www.sqlite.org/src/info/908f001483982c43 ** The order of constraints used to have OE_Update as (2) and OE_Abort ** and so forth as (1). But apparently PostgreSQL checks the OE_Update ** constraint before any others, so it had to be moved. ** ** Constraint checking code is generated in this order: ** (A) The rowid constraint ** (B) Unique index constraints that do not have OE_Replace as their ** default conflict resolution strategy ** (C) Unique index that do use OE_Replace by default. ** ** The ordering of (2) and (3) is accomplished by making sure the linked ** list of indexes attached to a table puts all OE_Replace indexes last ** in the list. See sqlite3CreateIndex() for where that happens. */ sIdxIter.eType = 0; sIdxIter.i = 0; sIdxIter.u.ax.aIdx = 0; /* Silence harmless compiler warning */ sIdxIter.u.lx.pIdx = pTab->pIndex; if( pUpsert ){ if( pUpsert->pUpsertTarget==0 ){ /* There is just on ON CONFLICT clause and it has no constraint-target */ assert( pUpsert->pNextUpsert==0 ); if( pUpsert->isDoUpdate==0 ){ /* A single ON CONFLICT DO NOTHING clause, without a constraint-target. ** Make all unique constraint resolution be OE_Ignore */ overrideError = OE_Ignore; pUpsert = 0; }else{ /* A single ON CONFLICT DO UPDATE. Make all resolutions OE_Update */ overrideError = OE_Update; } }else if( pTab->pIndex!=0 ){ /* Otherwise, we'll need to run the IndexListTerm array version of the ** iterator to ensure that all of the ON CONFLICT conditions are ** checked first and in order. */ int nIdx, jj; u64 nByte; Upsert *pTerm; u8 *bUsed; for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ assert( aRegIdx[nIdx]>0 ); } sIdxIter.eType = 1; sIdxIter.u.ax.nIdx = nIdx; nByte = (sizeof(IndexListTerm)+1)*nIdx + nIdx; sIdxIter.u.ax.aIdx = sqlite3DbMallocZero(db, nByte); if( sIdxIter.u.ax.aIdx==0 ) return; /* OOM */ bUsed = (u8*)&sIdxIter.u.ax.aIdx[nIdx]; pUpsert->pToFree = sIdxIter.u.ax.aIdx; for(i=0, pTerm=pUpsert; pTerm; pTerm=pTerm->pNextUpsert){ if( pTerm->pUpsertTarget==0 ) break; if( pTerm->pUpsertIdx==0 ) continue; /* Skip ON CONFLICT for the IPK */ jj = 0; pIdx = pTab->pIndex; while( ALWAYS(pIdx!=0) && pIdx!=pTerm->pUpsertIdx ){ pIdx = pIdx->pNext; jj++; } if( bUsed[jj] ) continue; /* Duplicate ON CONFLICT clause ignored */ bUsed[jj] = 1; sIdxIter.u.ax.aIdx[i].p = pIdx; sIdxIter.u.ax.aIdx[i].ix = jj; i++; } for(jj=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, jj++){ if( bUsed[jj] ) continue; sIdxIter.u.ax.aIdx[i].p = pIdx; sIdxIter.u.ax.aIdx[i].ix = jj; i++; } assert( i==nIdx ); } } /* Determine if it is possible that triggers (either explicitly coded ** triggers or FK resolution actions) might run as a result of deletes ** that happen when OE_Replace conflict resolution occurs. (Call these ** "replace triggers".) If any replace triggers run, we will need to ** recheck all of the uniqueness constraints after they have all run. ** But on the recheck, the resolution is OE_Abort instead of OE_Replace. ** ** If replace triggers are a possibility, then ** ** (1) Allocate register regTrigCnt and initialize it to zero. ** That register will count the number of replace triggers that ** fire. Constraint recheck only occurs if the number is positive. ** (2) Initialize pTrigger to the list of all DELETE triggers on pTab. ** (3) Initialize addrRecheck and lblRecheckOk ** ** The uniqueness rechecking code will create a series of tests to run ** in a second pass. The addrRecheck and lblRecheckOk variables are ** used to link together these tests which are separated from each other ** in the generate bytecode. */ if( (db->flags & (SQLITE_RecTriggers|SQLITE_ForeignKeys))==0 ){ /* There are not DELETE triggers nor FK constraints. No constraint ** rechecks are needed. */ pTrigger = 0; regTrigCnt = 0; }else{ if( db->flags&SQLITE_RecTriggers ){ pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); regTrigCnt = pTrigger!=0 || sqlite3FkRequired(pParse, pTab, 0, 0); }else{ pTrigger = 0; regTrigCnt = sqlite3FkRequired(pParse, pTab, 0, 0); } if( regTrigCnt ){ /* Replace triggers might exist. Allocate the counter and ** initialize it to zero. */ regTrigCnt = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regTrigCnt); VdbeComment((v, "trigger count")); lblRecheckOk = sqlite3VdbeMakeLabel(pParse); addrRecheck = lblRecheckOk; } } /* If rowid is changing, make sure the new rowid does not previously ** exist in the table. */ if( pkChng && pPk==0 ){ int addrRowidOk = sqlite3VdbeMakeLabel(pParse); /* Figure out what action to take in case of a rowid collision */ onError = pTab->keyConf; if( overrideError!=OE_Default ){ onError = overrideError; }else if( onError==OE_Default ){ onError = OE_Abort; } /* figure out whether or not upsert applies in this case */ if( pUpsert ){ pUpsertClause = sqlite3UpsertOfIndex(pUpsert,0); if( pUpsertClause!=0 ){ if( pUpsertClause->isDoUpdate==0 ){ onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ }else{ onError = OE_Update; /* DO UPDATE */ } } if( pUpsertClause!=pUpsert ){ /* The first ON CONFLICT clause has a conflict target other than ** the IPK. We have to jump ahead to that first ON CONFLICT clause ** and then come back here and deal with the IPK afterwards */ upsertIpkDelay = sqlite3VdbeAddOp0(v, OP_Goto); } } /* If the response to a rowid conflict is REPLACE but the response ** to some other UNIQUE constraint is FAIL or IGNORE, then we need ** to defer the running of the rowid conflict checking until after ** the UNIQUE constraints have run. */ if( onError==OE_Replace /* IPK rule is REPLACE */ && onError!=overrideError /* Rules for other constraints are different */ && pTab->pIndex /* There exist other constraints */ && !upsertIpkDelay /* IPK check already deferred by UPSERT */ ){ ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1; VdbeComment((v, "defer IPK REPLACE until last")); } if( isUpdate ){ /* pkChng!=0 does not mean that the rowid has changed, only that ** it might have changed. Skip the conflict logic below if the rowid ** is unchanged. */ sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); } /* Check to see if the new rowid already exists in the table. Skip ** the following conflict logic if it does not. */ VdbeNoopComment((v, "uniqueness check for ROWID")); sqlite3VdbeVerifyAbortable(v, onError); sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData); VdbeCoverage(v); switch( onError ){ default: { onError = OE_Abort; /* no break */ deliberate_fall_through } case OE_Rollback: case OE_Abort: case OE_Fail: { testcase( onError==OE_Rollback ); testcase( onError==OE_Abort ); testcase( onError==OE_Fail ); sqlite3RowidConstraint(pParse, onError, pTab); break; } case OE_Replace: { /* If there are DELETE triggers on this table and the ** recursive-triggers flag is set, call GenerateRowDelete() to ** remove the conflicting row from the table. This will fire ** the triggers and remove both the table and index b-tree entries. ** ** Otherwise, if there are no triggers or the recursive-triggers ** flag is not set, but the table has one or more indexes, call ** GenerateRowIndexDelete(). This removes the index b-tree entries ** only. The table b-tree entry will be replaced by the new entry ** when it is inserted. ** ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called, ** also invoke MultiWrite() to indicate that this VDBE may require ** statement rollback (if the statement is aborted after the delete ** takes place). Earlier versions called sqlite3MultiWrite() regardless, ** but being more selective here allows statements like: ** ** REPLACE INTO t(rowid) VALUES($newrowid) ** ** to run without a statement journal if there are no indexes on the ** table. */ if( regTrigCnt ){ sqlite3MultiWrite(pParse); sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, regNewData, 1, 0, OE_Replace, 1, -1); sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */ nReplaceTrig++; }else{ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK assert( HasRowid(pTab) ); /* This OP_Delete opcode fires the pre-update-hook only. It does ** not modify the b-tree. It is more efficient to let the coming ** OP_Insert replace the existing entry than it is to delete the ** existing entry and then insert a new one. */ sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP); sqlite3VdbeAppendP4(v, pTab, P4_TABLE); #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ if( pTab->pIndex ){ sqlite3MultiWrite(pParse); sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1); } } seenReplace = 1; break; } #ifndef SQLITE_OMIT_UPSERT case OE_Update: { sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, 0, iDataCur); /* no break */ deliberate_fall_through } #endif case OE_Ignore: { testcase( onError==OE_Ignore ); sqlite3VdbeGoto(v, ignoreDest); break; } } sqlite3VdbeResolveLabel(v, addrRowidOk); if( pUpsert && pUpsertClause!=pUpsert ){ upsertIpkReturn = sqlite3VdbeAddOp0(v, OP_Goto); }else if( ipkTop ){ ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto); sqlite3VdbeJumpHere(v, ipkTop-1); } } /* Test all UNIQUE constraints by creating entries for each UNIQUE ** index and making sure that duplicate entries do not already exist. ** Compute the revised record entries for indices as we go. ** ** This loop also handles the case of the PRIMARY KEY index for a ** WITHOUT ROWID table. */ for(pIdx = indexIteratorFirst(&sIdxIter, &ix); pIdx; pIdx = indexIteratorNext(&sIdxIter, &ix) ){ int regIdx; /* Range of registers hold conent for pIdx */ int regR; /* Range of registers holding conflicting PK */ int iThisCur; /* Cursor for this UNIQUE index */ int addrUniqueOk; /* Jump here if the UNIQUE constraint is satisfied */ int addrConflictCk; /* First opcode in the conflict check logic */ if( aRegIdx[ix]==0 ) continue; /* Skip indices that do not change */ if( pUpsert ){ pUpsertClause = sqlite3UpsertOfIndex(pUpsert, pIdx); if( upsertIpkDelay && pUpsertClause==pUpsert ){ sqlite3VdbeJumpHere(v, upsertIpkDelay); } } addrUniqueOk = sqlite3VdbeMakeLabel(pParse); if( bAffinityDone==0 ){ sqlite3TableAffinity(v, pTab, regNewData+1); bAffinityDone = 1; } VdbeNoopComment((v, "prep index %s", pIdx->zName)); iThisCur = iIdxCur+ix; /* Skip partial indices for which the WHERE clause is not true */ if( pIdx->pPartIdxWhere ){ sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]); pParse->iSelfTab = -(regNewData+1); sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk, SQLITE_JUMPIFNULL); pParse->iSelfTab = 0; } /* Create a record for this index entry as it should appear after ** the insert or update. Store that record in the aRegIdx[ix] register */ regIdx = aRegIdx[ix]+1; for(i=0; inColumn; i++){ int iField = pIdx->aiColumn[i]; int x; if( iField==XN_EXPR ){ pParse->iSelfTab = -(regNewData+1); sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i); pParse->iSelfTab = 0; VdbeComment((v, "%s column %d", pIdx->zName, i)); }else if( iField==XN_ROWID || iField==pTab->iPKey ){ x = regNewData; sqlite3VdbeAddOp2(v, OP_IntCopy, x, regIdx+i); VdbeComment((v, "rowid")); }else{ testcase( sqlite3TableColumnToStorage(pTab, iField)!=iField ); x = sqlite3TableColumnToStorage(pTab, iField) + regNewData + 1; sqlite3VdbeAddOp2(v, OP_SCopy, x, regIdx+i); VdbeComment((v, "%s", pTab->aCol[iField].zCnName)); } } sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]); VdbeComment((v, "for %s", pIdx->zName)); #ifdef SQLITE_ENABLE_NULL_TRIM if( pIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){ sqlite3SetMakeRecordP5(v, pIdx->pTable); } #endif sqlite3VdbeReleaseRegisters(pParse, regIdx, pIdx->nColumn, 0, 0); /* In an UPDATE operation, if this index is the PRIMARY KEY index ** of a WITHOUT ROWID table and there has been no change the ** primary key, then no collision is possible. The collision detection ** logic below can all be skipped. */ if( isUpdate && pPk==pIdx && pkChng==0 ){ sqlite3VdbeResolveLabel(v, addrUniqueOk); continue; } /* Find out what action to take in case there is a uniqueness conflict */ onError = pIdx->onError; if( onError==OE_None ){ sqlite3VdbeResolveLabel(v, addrUniqueOk); continue; /* pIdx is not a UNIQUE index */ } if( overrideError!=OE_Default ){ onError = overrideError; }else if( onError==OE_Default ){ onError = OE_Abort; } /* Figure out if the upsert clause applies to this index */ if( pUpsertClause ){ if( pUpsertClause->isDoUpdate==0 ){ onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ }else{ onError = OE_Update; /* DO UPDATE */ } } /* Collision detection may be omitted if all of the following are true: ** (1) The conflict resolution algorithm is REPLACE ** (2) The table is a WITHOUT ROWID table ** (3) There are no secondary indexes on the table ** (4) No delete triggers need to be fired if there is a conflict ** (5) No FK constraint counters need to be updated if a conflict occurs. ** ** This is not possible for ENABLE_PREUPDATE_HOOK builds, as the row ** must be explicitly deleted in order to ensure any pre-update hook ** is invoked. */ assert( IsOrdinaryTable(pTab) ); #ifndef SQLITE_ENABLE_PREUPDATE_HOOK if( (ix==0 && pIdx->pNext==0) /* Condition 3 */ && pPk==pIdx /* Condition 2 */ && onError==OE_Replace /* Condition 1 */ && ( 0==(db->flags&SQLITE_RecTriggers) || /* Condition 4 */ 0==sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0)) && ( 0==(db->flags&SQLITE_ForeignKeys) || /* Condition 5 */ (0==pTab->u.tab.pFKey && 0==sqlite3FkReferences(pTab))) ){ sqlite3VdbeResolveLabel(v, addrUniqueOk); continue; } #endif /* ifndef SQLITE_ENABLE_PREUPDATE_HOOK */ /* Check to see if the new index entry will be unique */ sqlite3VdbeVerifyAbortable(v, onError); addrConflictCk = sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk, regIdx, pIdx->nKeyCol); VdbeCoverage(v); /* Generate code to handle collisions */ regR = pIdx==pPk ? regIdx : sqlite3GetTempRange(pParse, nPkField); if( isUpdate || onError==OE_Replace ){ if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR); /* Conflict only if the rowid of the existing index entry ** is different from old-rowid */ if( isUpdate ){ sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); } }else{ int x; /* Extract the PRIMARY KEY from the end of the index entry and ** store it in registers regR..regR+nPk-1 */ if( pIdx!=pPk ){ for(i=0; inKeyCol; i++){ assert( pPk->aiColumn[i]>=0 ); x = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[i]); sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i); VdbeComment((v, "%s.%s", pTab->zName, pTab->aCol[pPk->aiColumn[i]].zCnName)); } } if( isUpdate ){ /* If currently processing the PRIMARY KEY of a WITHOUT ROWID ** table, only conflict if the new PRIMARY KEY values are actually ** different from the old. ** ** For a UNIQUE index, only conflict if the PRIMARY KEY values ** of the matched index row are different from the original PRIMARY ** KEY values of this row before the update. */ int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol; int op = OP_Ne; int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR); for(i=0; inKeyCol; i++){ char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]); x = pPk->aiColumn[i]; assert( x>=0 ); if( i==(pPk->nKeyCol-1) ){ addrJump = addrUniqueOk; op = OP_Eq; } x = sqlite3TableColumnToStorage(pTab, x); sqlite3VdbeAddOp4(v, op, regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ ); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverageIf(v, op==OP_Eq); VdbeCoverageIf(v, op==OP_Ne); } } } } /* Generate code that executes if the new index entry is not unique */ assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update ); switch( onError ){ case OE_Rollback: case OE_Abort: case OE_Fail: { testcase( onError==OE_Rollback ); testcase( onError==OE_Abort ); testcase( onError==OE_Fail ); sqlite3UniqueConstraint(pParse, onError, pIdx); break; } #ifndef SQLITE_OMIT_UPSERT case OE_Update: { sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, pIdx, iIdxCur+ix); /* no break */ deliberate_fall_through } #endif case OE_Ignore: { testcase( onError==OE_Ignore ); sqlite3VdbeGoto(v, ignoreDest); break; } default: { int nConflictCk; /* Number of opcodes in conflict check logic */ assert( onError==OE_Replace ); nConflictCk = sqlite3VdbeCurrentAddr(v) - addrConflictCk; assert( nConflictCk>0 || db->mallocFailed ); testcase( nConflictCk<=0 ); testcase( nConflictCk>1 ); if( regTrigCnt ){ sqlite3MultiWrite(pParse); nReplaceTrig++; } if( pTrigger && isUpdate ){ sqlite3VdbeAddOp1(v, OP_CursorLock, iDataCur); } sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, regR, nPkField, 0, OE_Replace, (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), iThisCur); if( pTrigger && isUpdate ){ sqlite3VdbeAddOp1(v, OP_CursorUnlock, iDataCur); } if( regTrigCnt ){ int addrBypass; /* Jump destination to bypass recheck logic */ sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */ addrBypass = sqlite3VdbeAddOp0(v, OP_Goto); /* Bypass recheck */ VdbeComment((v, "bypass recheck")); /* Here we insert code that will be invoked after all constraint ** checks have run, if and only if one or more replace triggers ** fired. */ sqlite3VdbeResolveLabel(v, lblRecheckOk); lblRecheckOk = sqlite3VdbeMakeLabel(pParse); if( pIdx->pPartIdxWhere ){ /* Bypass the recheck if this partial index is not defined ** for the current row */ sqlite3VdbeAddOp2(v, OP_IsNull, regIdx-1, lblRecheckOk); VdbeCoverage(v); } /* Copy the constraint check code from above, except change ** the constraint-ok jump destination to be the address of ** the next retest block */ while( nConflictCk>0 ){ VdbeOp x; /* Conflict check opcode to copy */ /* The sqlite3VdbeAddOp4() call might reallocate the opcode array. ** Hence, make a complete copy of the opcode, rather than using ** a pointer to the opcode. */ x = *sqlite3VdbeGetOp(v, addrConflictCk); if( x.opcode!=OP_IdxRowid ){ int p2; /* New P2 value for copied conflict check opcode */ const char *zP4; if( sqlite3OpcodeProperty[x.opcode]&OPFLG_JUMP ){ p2 = lblRecheckOk; }else{ p2 = x.p2; } zP4 = x.p4type==P4_INT32 ? SQLITE_INT_TO_PTR(x.p4.i) : x.p4.z; sqlite3VdbeAddOp4(v, x.opcode, x.p1, p2, x.p3, zP4, x.p4type); sqlite3VdbeChangeP5(v, x.p5); VdbeCoverageIf(v, p2!=x.p2); } nConflictCk--; addrConflictCk++; } /* If the retest fails, issue an abort */ sqlite3UniqueConstraint(pParse, OE_Abort, pIdx); sqlite3VdbeJumpHere(v, addrBypass); /* Terminate the recheck bypass */ } seenReplace = 1; break; } } sqlite3VdbeResolveLabel(v, addrUniqueOk); if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField); if( pUpsertClause && upsertIpkReturn && sqlite3UpsertNextIsIPK(pUpsertClause) ){ sqlite3VdbeGoto(v, upsertIpkDelay+1); sqlite3VdbeJumpHere(v, upsertIpkReturn); upsertIpkReturn = 0; } } /* If the IPK constraint is a REPLACE, run it last */ if( ipkTop ){ sqlite3VdbeGoto(v, ipkTop); VdbeComment((v, "Do IPK REPLACE")); assert( ipkBottom>0 ); sqlite3VdbeJumpHere(v, ipkBottom); } /* Recheck all uniqueness constraints after replace triggers have run */ testcase( regTrigCnt!=0 && nReplaceTrig==0 ); assert( regTrigCnt!=0 || nReplaceTrig==0 ); if( nReplaceTrig ){ sqlite3VdbeAddOp2(v, OP_IfNot, regTrigCnt, lblRecheckOk);VdbeCoverage(v); if( !pPk ){ if( isUpdate ){ sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRecheck, regNewData); VdbeCoverage(v); sqlite3RowidConstraint(pParse, OE_Abort, pTab); }else{ sqlite3VdbeGoto(v, addrRecheck); } sqlite3VdbeResolveLabel(v, lblRecheckOk); } /* Generate the table record */ if( HasRowid(pTab) ){ int regRec = aRegIdx[ix]; sqlite3VdbeAddOp3(v, OP_MakeRecord, regNewData+1, pTab->nNVCol, regRec); sqlite3SetMakeRecordP5(v, pTab); if( !bAffinityDone ){ sqlite3TableAffinity(v, pTab, 0); } } *pbMayReplace = seenReplace; VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace)); } #ifdef SQLITE_ENABLE_NULL_TRIM /* ** Change the P5 operand on the last opcode (which should be an OP_MakeRecord) ** to be the number of columns in table pTab that must not be NULL-trimmed. ** ** Or if no columns of pTab may be NULL-trimmed, leave P5 at zero. */ SQLITE_PRIVATE void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){ u16 i; /* Records with omitted columns are only allowed for schema format ** version 2 and later (SQLite version 3.1.4, 2005-02-20). */ if( pTab->pSchema->file_format<2 ) return; for(i=pTab->nCol-1; i>0; i--){ if( pTab->aCol[i].iDflt!=0 ) break; if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break; } sqlite3VdbeChangeP5(v, i+1); } #endif /* ** Table pTab is a WITHOUT ROWID table that is being written to. The cursor ** number is iCur, and register regData contains the new record for the ** PK index. This function adds code to invoke the pre-update hook, ** if one is registered. */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK static void codeWithoutRowidPreupdate( Parse *pParse, /* Parse context */ Table *pTab, /* Table being updated */ int iCur, /* Cursor number for table */ int regData /* Data containing new record */ ){ Vdbe *v = pParse->pVdbe; int r = sqlite3GetTempReg(pParse); assert( !HasRowid(pTab) ); assert( 0==(pParse->db->mDbFlags & DBFLAG_Vacuum) || CORRUPT_DB ); sqlite3VdbeAddOp2(v, OP_Integer, 0, r); sqlite3VdbeAddOp4(v, OP_Insert, iCur, regData, r, (char*)pTab, P4_TABLE); sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP); sqlite3ReleaseTempReg(pParse, r); } #else # define codeWithoutRowidPreupdate(a,b,c,d) #endif /* ** This routine generates code to finish the INSERT or UPDATE operation ** that was started by a prior call to sqlite3GenerateConstraintChecks. ** A consecutive range of registers starting at regNewData contains the ** rowid and the content to be inserted. ** ** The arguments to this routine should be the same as the first six ** arguments to sqlite3GenerateConstraintChecks. */ SQLITE_PRIVATE void sqlite3CompleteInsertion( Parse *pParse, /* The parser context */ Table *pTab, /* the table into which we are inserting */ int iDataCur, /* Cursor of the canonical data source */ int iIdxCur, /* First index cursor */ int regNewData, /* Range of content */ int *aRegIdx, /* Register used by each index. 0 for unused indices */ int update_flags, /* True for UPDATE, False for INSERT */ int appendBias, /* True if this is likely to be an append */ int useSeekResult /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */ ){ Vdbe *v; /* Prepared statements under construction */ Index *pIdx; /* An index being inserted or updated */ u8 pik_flags; /* flag values passed to the btree insert */ int i; /* Loop counter */ assert( update_flags==0 || update_flags==OPFLAG_ISUPDATE || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION) ); v = pParse->pVdbe; assert( v!=0 ); assert( !IsView(pTab) ); /* This table is not a VIEW */ for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ /* All REPLACE indexes are at the end of the list */ assert( pIdx->onError!=OE_Replace || pIdx->pNext==0 || pIdx->pNext->onError==OE_Replace ); if( aRegIdx[i]==0 ) continue; if( pIdx->pPartIdxWhere ){ sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); } pik_flags = (useSeekResult ? OPFLAG_USESEEKRESULT : 0); if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ pik_flags |= OPFLAG_NCHANGE; pik_flags |= (update_flags & OPFLAG_SAVEPOSITION); if( update_flags==0 ){ codeWithoutRowidPreupdate(pParse, pTab, iIdxCur+i, aRegIdx[i]); } } sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i], aRegIdx[i]+1, pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn); sqlite3VdbeChangeP5(v, pik_flags); } if( !HasRowid(pTab) ) return; if( pParse->nested ){ pik_flags = 0; }else{ pik_flags = OPFLAG_NCHANGE; pik_flags |= (update_flags?update_flags:OPFLAG_LASTROWID); } if( appendBias ){ pik_flags |= OPFLAG_APPEND; } if( useSeekResult ){ pik_flags |= OPFLAG_USESEEKRESULT; } sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, aRegIdx[i], regNewData); if( !pParse->nested ){ sqlite3VdbeAppendP4(v, pTab, P4_TABLE); } sqlite3VdbeChangeP5(v, pik_flags); } /* ** Allocate cursors for the pTab table and all its indices and generate ** code to open and initialized those cursors. ** ** The cursor for the object that contains the complete data (normally ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT ** ROWID table) is returned in *piDataCur. The first index cursor is ** returned in *piIdxCur. The number of indices is returned. ** ** Use iBase as the first cursor (either the *piDataCur for rowid tables ** or the first index for WITHOUT ROWID tables) if it is non-negative. ** If iBase is negative, then allocate the next available cursor. ** ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur. ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the ** pTab->pIndex list. ** ** If pTab is a virtual table, then this routine is a no-op and the ** *piDataCur and *piIdxCur values are left uninitialized. */ SQLITE_PRIVATE int sqlite3OpenTableAndIndices( Parse *pParse, /* Parsing context */ Table *pTab, /* Table to be opened */ int op, /* OP_OpenRead or OP_OpenWrite */ u8 p5, /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */ int iBase, /* Use this for the table cursor, if there is one */ u8 *aToOpen, /* If not NULL: boolean for each table and index */ int *piDataCur, /* Write the database source cursor number here */ int *piIdxCur /* Write the first index cursor number here */ ){ int i; int iDb; int iDataCur; Index *pIdx; Vdbe *v; assert( op==OP_OpenRead || op==OP_OpenWrite ); assert( op==OP_OpenWrite || p5==0 ); if( IsVirtual(pTab) ){ /* This routine is a no-op for virtual tables. Leave the output ** variables *piDataCur and *piIdxCur set to illegal cursor numbers ** for improved error detection. */ *piDataCur = *piIdxCur = -999; return 0; } iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); v = pParse->pVdbe; assert( v!=0 ); if( iBase<0 ) iBase = pParse->nTab; iDataCur = iBase++; if( piDataCur ) *piDataCur = iDataCur; if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){ sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op); }else{ sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName); } if( piIdxCur ) *piIdxCur = iBase; for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ int iIdxCur = iBase++; assert( pIdx->pSchema==pTab->pSchema ); if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ if( piDataCur ) *piDataCur = iIdxCur; p5 = 0; } if( aToOpen==0 || aToOpen[i+1] ){ sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); sqlite3VdbeChangeP5(v, p5); VdbeComment((v, "%s", pIdx->zName)); } } if( iBase>pParse->nTab ) pParse->nTab = iBase; return i; } #ifdef SQLITE_TEST /* ** The following global variable is incremented whenever the ** transfer optimization is used. This is used for testing ** purposes only - to make sure the transfer optimization really ** is happening when it is supposed to. */ SQLITE_API int sqlite3_xferopt_count; #endif /* SQLITE_TEST */ #ifndef SQLITE_OMIT_XFER_OPT /* ** Check to see if index pSrc is compatible as a source of data ** for index pDest in an insert transfer optimization. The rules ** for a compatible index: ** ** * The index is over the same set of columns ** * The same DESC and ASC markings occurs on all columns ** * The same onError processing (OE_Abort, OE_Ignore, etc) ** * The same collating sequence on each column ** * The index has the exact same WHERE clause */ static int xferCompatibleIndex(Index *pDest, Index *pSrc){ int i; assert( pDest && pSrc ); assert( pDest->pTable!=pSrc->pTable ); if( pDest->nKeyCol!=pSrc->nKeyCol || pDest->nColumn!=pSrc->nColumn ){ return 0; /* Different number of columns */ } if( pDest->onError!=pSrc->onError ){ return 0; /* Different conflict resolution strategies */ } for(i=0; inKeyCol; i++){ if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){ return 0; /* Different columns indexed */ } if( pSrc->aiColumn[i]==XN_EXPR ){ assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 ); if( sqlite3ExprCompare(0, pSrc->aColExpr->a[i].pExpr, pDest->aColExpr->a[i].pExpr, -1)!=0 ){ return 0; /* Different expressions in the index */ } } if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){ return 0; /* Different sort orders */ } if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){ return 0; /* Different collating sequences */ } } if( sqlite3ExprCompare(0, pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){ return 0; /* Different WHERE clauses */ } /* If no test above fails then the indices must be compatible */ return 1; } /* ** Attempt the transfer optimization on INSERTs of the form ** ** INSERT INTO tab1 SELECT * FROM tab2; ** ** The xfer optimization transfers raw records from tab2 over to tab1. ** Columns are not decoded and reassembled, which greatly improves ** performance. Raw index records are transferred in the same way. ** ** The xfer optimization is only attempted if tab1 and tab2 are compatible. ** There are lots of rules for determining compatibility - see comments ** embedded in the code for details. ** ** This routine returns TRUE if the optimization is guaranteed to be used. ** Sometimes the xfer optimization will only work if the destination table ** is empty - a factor that can only be determined at run-time. In that ** case, this routine generates code for the xfer optimization but also ** does a test to see if the destination table is empty and jumps over the ** xfer optimization code if the test fails. In that case, this routine ** returns FALSE so that the caller will know to go ahead and generate ** an unoptimized transfer. This routine also returns FALSE if there ** is no chance that the xfer optimization can be applied. ** ** This optimization is particularly useful at making VACUUM run faster. */ static int xferOptimization( Parse *pParse, /* Parser context */ Table *pDest, /* The table we are inserting into */ Select *pSelect, /* A SELECT statement to use as the data source */ int onError, /* How to handle constraint errors */ int iDbDest /* The database of pDest */ ){ sqlite3 *db = pParse->db; ExprList *pEList; /* The result set of the SELECT */ Table *pSrc; /* The table in the FROM clause of SELECT */ Index *pSrcIdx, *pDestIdx; /* Source and destination indices */ SrcItem *pItem; /* An element of pSelect->pSrc */ int i; /* Loop counter */ int iDbSrc; /* The database of pSrc */ int iSrc, iDest; /* Cursors from source and destination */ int addr1, addr2; /* Loop addresses */ int emptyDestTest = 0; /* Address of test for empty pDest */ int emptySrcTest = 0; /* Address of test for empty pSrc */ Vdbe *v; /* The VDBE we are building */ int regAutoinc; /* Memory register used by AUTOINC */ int destHasUniqueIdx = 0; /* True if pDest has a UNIQUE index */ int regData, regRowid; /* Registers holding data and rowid */ if( pSelect==0 ){ return 0; /* Must be of the form INSERT INTO ... SELECT ... */ } if( pParse->pWith || pSelect->pWith ){ /* Do not attempt to process this query if there are an WITH clauses ** attached to it. Proceeding may generate a false "no such table: xxx" ** error if pSelect reads from a CTE named "xxx". */ return 0; } if( sqlite3TriggerList(pParse, pDest) ){ return 0; /* tab1 must not have triggers */ } #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pDest) ){ return 0; /* tab1 must not be a virtual table */ } #endif if( onError==OE_Default ){ if( pDest->iPKey>=0 ) onError = pDest->keyConf; if( onError==OE_Default ) onError = OE_Abort; } assert(pSelect->pSrc); /* allocated even if there is no FROM clause */ if( pSelect->pSrc->nSrc!=1 ){ return 0; /* FROM clause must have exactly one term */ } if( pSelect->pSrc->a[0].pSelect ){ return 0; /* FROM clause cannot contain a subquery */ } if( pSelect->pWhere ){ return 0; /* SELECT may not have a WHERE clause */ } if( pSelect->pOrderBy ){ return 0; /* SELECT may not have an ORDER BY clause */ } /* Do not need to test for a HAVING clause. If HAVING is present but ** there is no ORDER BY, we will get an error. */ if( pSelect->pGroupBy ){ return 0; /* SELECT may not have a GROUP BY clause */ } if( pSelect->pLimit ){ return 0; /* SELECT may not have a LIMIT clause */ } if( pSelect->pPrior ){ return 0; /* SELECT may not be a compound query */ } if( pSelect->selFlags & SF_Distinct ){ return 0; /* SELECT may not be DISTINCT */ } pEList = pSelect->pEList; assert( pEList!=0 ); if( pEList->nExpr!=1 ){ return 0; /* The result set must have exactly one column */ } assert( pEList->a[0].pExpr ); if( pEList->a[0].pExpr->op!=TK_ASTERISK ){ return 0; /* The result set must be the special operator "*" */ } /* At this point we have established that the statement is of the ** correct syntactic form to participate in this optimization. Now ** we have to check the semantics. */ pItem = pSelect->pSrc->a; pSrc = sqlite3LocateTableItem(pParse, 0, pItem); if( pSrc==0 ){ return 0; /* FROM clause does not contain a real table */ } if( pSrc->tnum==pDest->tnum && pSrc->pSchema==pDest->pSchema ){ testcase( pSrc!=pDest ); /* Possible due to bad sqlite_schema.rootpage */ return 0; /* tab1 and tab2 may not be the same table */ } if( HasRowid(pDest)!=HasRowid(pSrc) ){ return 0; /* source and destination must both be WITHOUT ROWID or not */ } if( !IsOrdinaryTable(pSrc) ){ return 0; /* tab2 may not be a view or virtual table */ } if( pDest->nCol!=pSrc->nCol ){ return 0; /* Number of columns must be the same in tab1 and tab2 */ } if( pDest->iPKey!=pSrc->iPKey ){ return 0; /* Both tables must have the same INTEGER PRIMARY KEY */ } if( (pDest->tabFlags & TF_Strict)!=0 && (pSrc->tabFlags & TF_Strict)==0 ){ return 0; /* Cannot feed from a non-strict into a strict table */ } for(i=0; inCol; i++){ Column *pDestCol = &pDest->aCol[i]; Column *pSrcCol = &pSrc->aCol[i]; #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS if( (db->mDbFlags & DBFLAG_Vacuum)==0 && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN ){ return 0; /* Neither table may have __hidden__ columns */ } #endif #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Even if tables t1 and t2 have identical schemas, if they contain ** generated columns, then this statement is semantically incorrect: ** ** INSERT INTO t2 SELECT * FROM t1; ** ** The reason is that generated column values are returned by the ** the SELECT statement on the right but the INSERT statement on the ** left wants them to be omitted. ** ** Nevertheless, this is a useful notational shorthand to tell SQLite ** to do a bulk transfer all of the content from t1 over to t2. ** ** We could, in theory, disable this (except for internal use by the ** VACUUM command where it is actually needed). But why do that? It ** seems harmless enough, and provides a useful service. */ if( (pDestCol->colFlags & COLFLAG_GENERATED) != (pSrcCol->colFlags & COLFLAG_GENERATED) ){ return 0; /* Both columns have the same generated-column type */ } /* But the transfer is only allowed if both the source and destination ** tables have the exact same expressions for generated columns. ** This requirement could be relaxed for VIRTUAL columns, I suppose. */ if( (pDestCol->colFlags & COLFLAG_GENERATED)!=0 ){ if( sqlite3ExprCompare(0, sqlite3ColumnExpr(pSrc, pSrcCol), sqlite3ColumnExpr(pDest, pDestCol), -1)!=0 ){ testcase( pDestCol->colFlags & COLFLAG_VIRTUAL ); testcase( pDestCol->colFlags & COLFLAG_STORED ); return 0; /* Different generator expressions */ } } #endif if( pDestCol->affinity!=pSrcCol->affinity ){ return 0; /* Affinity must be the same on all columns */ } if( sqlite3_stricmp(sqlite3ColumnColl(pDestCol), sqlite3ColumnColl(pSrcCol))!=0 ){ return 0; /* Collating sequence must be the same on all columns */ } if( pDestCol->notNull && !pSrcCol->notNull ){ return 0; /* tab2 must be NOT NULL if tab1 is */ } /* Default values for second and subsequent columns need to match. */ if( (pDestCol->colFlags & COLFLAG_GENERATED)==0 && i>0 ){ Expr *pDestExpr = sqlite3ColumnExpr(pDest, pDestCol); Expr *pSrcExpr = sqlite3ColumnExpr(pSrc, pSrcCol); assert( pDestExpr==0 || pDestExpr->op==TK_SPAN ); assert( pDestExpr==0 || !ExprHasProperty(pDestExpr, EP_IntValue) ); assert( pSrcExpr==0 || pSrcExpr->op==TK_SPAN ); assert( pSrcExpr==0 || !ExprHasProperty(pSrcExpr, EP_IntValue) ); if( (pDestExpr==0)!=(pSrcExpr==0) || (pDestExpr!=0 && strcmp(pDestExpr->u.zToken, pSrcExpr->u.zToken)!=0) ){ return 0; /* Default values must be the same for all columns */ } } } for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ if( IsUniqueIndex(pDestIdx) ){ destHasUniqueIdx = 1; } for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){ if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; } if( pSrcIdx==0 ){ return 0; /* pDestIdx has no corresponding index in pSrc */ } if( pSrcIdx->tnum==pDestIdx->tnum && pSrc->pSchema==pDest->pSchema && sqlite3FaultSim(411)==SQLITE_OK ){ /* The sqlite3FaultSim() call allows this corruption test to be ** bypassed during testing, in order to exercise other corruption tests ** further downstream. */ return 0; /* Corrupt schema - two indexes on the same btree */ } } #ifndef SQLITE_OMIT_CHECK if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){ return 0; /* Tables have different CHECK constraints. Ticket #2252 */ } #endif #ifndef SQLITE_OMIT_FOREIGN_KEY /* Disallow the transfer optimization if the destination table constains ** any foreign key constraints. This is more restrictive than necessary. ** But the main beneficiary of the transfer optimization is the VACUUM ** command, and the VACUUM command disables foreign key constraints. So ** the extra complication to make this rule less restrictive is probably ** not worth the effort. Ticket [6284df89debdfa61db8073e062908af0c9b6118e] */ assert( IsOrdinaryTable(pDest) ); if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->u.tab.pFKey!=0 ){ return 0; } #endif if( (db->flags & SQLITE_CountRows)!=0 ){ return 0; /* xfer opt does not play well with PRAGMA count_changes */ } /* If we get this far, it means that the xfer optimization is at ** least a possibility, though it might only work if the destination ** table (tab1) is initially empty. */ #ifdef SQLITE_TEST sqlite3_xferopt_count++; #endif iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema); v = sqlite3GetVdbe(pParse); sqlite3CodeVerifySchema(pParse, iDbSrc); iSrc = pParse->nTab++; iDest = pParse->nTab++; regAutoinc = autoIncBegin(pParse, iDbDest, pDest); regData = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_Null, 0, regData); regRowid = sqlite3GetTempReg(pParse); sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite); assert( HasRowid(pDest) || destHasUniqueIdx ); if( (db->mDbFlags & DBFLAG_Vacuum)==0 && ( (pDest->iPKey<0 && pDest->pIndex!=0) /* (1) */ || destHasUniqueIdx /* (2) */ || (onError!=OE_Abort && onError!=OE_Rollback) /* (3) */ )){ /* In some circumstances, we are able to run the xfer optimization ** only if the destination table is initially empty. Unless the ** DBFLAG_Vacuum flag is set, this block generates code to make ** that determination. If DBFLAG_Vacuum is set, then the destination ** table is always empty. ** ** Conditions under which the destination must be empty: ** ** (1) There is no INTEGER PRIMARY KEY but there are indices. ** (If the destination is not initially empty, the rowid fields ** of index entries might need to change.) ** ** (2) The destination has a unique index. (The xfer optimization ** is unable to test uniqueness.) ** ** (3) onError is something other than OE_Abort and OE_Rollback. */ addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v); emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto); sqlite3VdbeJumpHere(v, addr1); } if( HasRowid(pSrc) ){ u8 insFlags; sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead); emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); if( pDest->iPKey>=0 ){ addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); if( (db->mDbFlags & DBFLAG_Vacuum)==0 ){ sqlite3VdbeVerifyAbortable(v, onError); addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid); VdbeCoverage(v); sqlite3RowidConstraint(pParse, onError, pDest); sqlite3VdbeJumpHere(v, addr2); } autoIncStep(pParse, regAutoinc, regRowid); }else if( pDest->pIndex==0 && !(db->mDbFlags & DBFLAG_VacuumInto) ){ addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid); }else{ addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); assert( (pDest->tabFlags & TF_Autoincrement)==0 ); } if( db->mDbFlags & DBFLAG_Vacuum ){ sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest); insFlags = OPFLAG_APPEND|OPFLAG_USESEEKRESULT|OPFLAG_PREFORMAT; }else{ insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND|OPFLAG_PREFORMAT; } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK if( (db->mDbFlags & DBFLAG_Vacuum)==0 ){ sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1); insFlags &= ~OPFLAG_PREFORMAT; }else #endif { sqlite3VdbeAddOp3(v, OP_RowCell, iDest, iSrc, regRowid); } sqlite3VdbeAddOp3(v, OP_Insert, iDest, regData, regRowid); if( (db->mDbFlags & DBFLAG_Vacuum)==0 ){ sqlite3VdbeChangeP4(v, -1, (char*)pDest, P4_TABLE); } sqlite3VdbeChangeP5(v, insFlags); sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); }else{ sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName); sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName); } for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ u8 idxInsFlags = 0; for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){ if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; } assert( pSrcIdx ); sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc); sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx); VdbeComment((v, "%s", pSrcIdx->zName)); sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest); sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx); sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR); VdbeComment((v, "%s", pDestIdx->zName)); addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); if( db->mDbFlags & DBFLAG_Vacuum ){ /* This INSERT command is part of a VACUUM operation, which guarantees ** that the destination table is empty. If all indexed columns use ** collation sequence BINARY, then it can also be assumed that the ** index will be populated by inserting keys in strictly sorted ** order. In this case, instead of seeking within the b-tree as part ** of every OP_IdxInsert opcode, an OP_SeekEnd is added before the ** OP_IdxInsert to seek to the point within the b-tree where each key ** should be inserted. This is faster. ** ** If any of the indexed columns use a collation sequence other than ** BINARY, this optimization is disabled. This is because the user ** might change the definition of a collation sequence and then run ** a VACUUM command. In that case keys may not be written in strictly ** sorted order. */ for(i=0; inColumn; i++){ const char *zColl = pSrcIdx->azColl[i]; if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break; } if( i==pSrcIdx->nColumn ){ idxInsFlags = OPFLAG_USESEEKRESULT|OPFLAG_PREFORMAT; sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest); sqlite3VdbeAddOp2(v, OP_RowCell, iDest, iSrc); } }else if( !HasRowid(pSrc) && pDestIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){ idxInsFlags |= OPFLAG_NCHANGE; } if( idxInsFlags!=(OPFLAG_USESEEKRESULT|OPFLAG_PREFORMAT) ){ sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1); if( (db->mDbFlags & DBFLAG_Vacuum)==0 && !HasRowid(pDest) && IsPrimaryKeyIndex(pDestIdx) ){ codeWithoutRowidPreupdate(pParse, pDest, iDest, regData); } } sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData); sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND); sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); } if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest); sqlite3ReleaseTempReg(pParse, regRowid); sqlite3ReleaseTempReg(pParse, regData); if( emptyDestTest ){ sqlite3AutoincrementEnd(pParse); sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0); sqlite3VdbeJumpHere(v, emptyDestTest); sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); return 0; }else{ return 1; } } #endif /* SQLITE_OMIT_XFER_OPT */ /************** End of insert.c **********************************************/ /************** Begin file legacy.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. */ /* #include "sqliteInt.h" */ /* ** Execute SQL code. Return one of the SQLITE_ success/failure ** codes. Also write an error message into memory obtained from ** malloc() and make *pzErrMsg point to that message. ** ** If the SQL is a query, then for each row in the query result ** the xCallback() function is called. pArg becomes the first ** argument to xCallback(). If xCallback=NULL then no callback ** is invoked, even for queries. */ SQLITE_API int sqlite3_exec( sqlite3 *db, /* The database on which the SQL executes */ const char *zSql, /* The SQL to be executed */ sqlite3_callback xCallback, /* Invoke this callback routine */ void *pArg, /* First argument to xCallback() */ char **pzErrMsg /* Write error messages here */ ){ int rc = SQLITE_OK; /* Return code */ const char *zLeftover; /* Tail of unprocessed SQL */ sqlite3_stmt *pStmt = 0; /* The current SQL statement */ char **azCols = 0; /* Names of result columns */ int callbackIsInit; /* True if callback data is initialized */ if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; if( zSql==0 ) zSql = ""; sqlite3_mutex_enter(db->mutex); sqlite3Error(db, SQLITE_OK); while( rc==SQLITE_OK && zSql[0] ){ int nCol = 0; char **azVals = 0; pStmt = 0; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover); assert( rc==SQLITE_OK || pStmt==0 ); if( rc!=SQLITE_OK ){ continue; } if( !pStmt ){ /* this happens for a comment or white-space */ zSql = zLeftover; continue; } callbackIsInit = 0; while( 1 ){ int i; rc = sqlite3_step(pStmt); /* Invoke the callback function if required */ if( xCallback && (SQLITE_ROW==rc || (SQLITE_DONE==rc && !callbackIsInit && db->flags&SQLITE_NullCallback)) ){ if( !callbackIsInit ){ nCol = sqlite3_column_count(pStmt); azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*)); if( azCols==0 ){ goto exec_out; } for(i=0; ierrMask)==rc ); sqlite3_mutex_leave(db->mutex); return rc; } /************** End of legacy.c **********************************************/ /************** Begin file loadext.c *****************************************/ /* ** 2006 June 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to dynamically load extensions into ** the SQLite library. */ #ifndef SQLITE_CORE #define SQLITE_CORE 1 /* Disable the API redefinition in sqlite3ext.h */ #endif /************** Include sqlite3ext.h in the middle of loadext.c **************/ /************** Begin file sqlite3ext.h **************************************/ /* ** 2006 June 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the SQLite interface for use by ** shared libraries that want to be imported as extensions into ** an SQLite instance. Shared libraries that intend to be loaded ** as extensions by SQLite should #include this file instead of ** sqlite3.h. */ #ifndef SQLITE3EXT_H #define SQLITE3EXT_H /* #include "sqlite3.h" */ /* ** The following structure holds pointers to all of the SQLite API ** routines. ** ** WARNING: In order to maintain backwards compatibility, add new ** interfaces to the end of this structure only. If you insert new ** interfaces in the middle of this structure, then older different ** versions of SQLite will not be able to load each other's shared ** libraries! */ struct sqlite3_api_routines { void * (*aggregate_context)(sqlite3_context*,int nBytes); int (*aggregate_count)(sqlite3_context*); int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); int (*bind_double)(sqlite3_stmt*,int,double); int (*bind_int)(sqlite3_stmt*,int,int); int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); int (*bind_null)(sqlite3_stmt*,int); int (*bind_parameter_count)(sqlite3_stmt*); int (*bind_parameter_index)(sqlite3_stmt*,const char*zName); const char * (*bind_parameter_name)(sqlite3_stmt*,int); int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*)); int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*)); int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*); int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); int (*busy_timeout)(sqlite3*,int ms); int (*changes)(sqlite3*); int (*close)(sqlite3*); int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*, int eTextRep,const char*)); int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*, int eTextRep,const void*)); const void * (*column_blob)(sqlite3_stmt*,int iCol); int (*column_bytes)(sqlite3_stmt*,int iCol); int (*column_bytes16)(sqlite3_stmt*,int iCol); int (*column_count)(sqlite3_stmt*pStmt); const char * (*column_database_name)(sqlite3_stmt*,int); const void * (*column_database_name16)(sqlite3_stmt*,int); const char * (*column_decltype)(sqlite3_stmt*,int i); const void * (*column_decltype16)(sqlite3_stmt*,int); double (*column_double)(sqlite3_stmt*,int iCol); int (*column_int)(sqlite3_stmt*,int iCol); sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol); const char * (*column_name)(sqlite3_stmt*,int); const void * (*column_name16)(sqlite3_stmt*,int); const char * (*column_origin_name)(sqlite3_stmt*,int); const void * (*column_origin_name16)(sqlite3_stmt*,int); const char * (*column_table_name)(sqlite3_stmt*,int); const void * (*column_table_name16)(sqlite3_stmt*,int); const unsigned char * (*column_text)(sqlite3_stmt*,int iCol); const void * (*column_text16)(sqlite3_stmt*,int iCol); int (*column_type)(sqlite3_stmt*,int iCol); sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol); void * (*commit_hook)(sqlite3*,int(*)(void*),void*); int (*complete)(const char*sql); int (*complete16)(const void*sql); int (*create_collation)(sqlite3*,const char*,int,void*, int(*)(void*,int,const void*,int,const void*)); int (*create_collation16)(sqlite3*,const void*,int,void*, int(*)(void*,int,const void*,int,const void*)); int (*create_function)(sqlite3*,const char*,int,int,void*, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*)); int (*create_function16)(sqlite3*,const void*,int,int,void*, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*)); int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*); int (*data_count)(sqlite3_stmt*pStmt); sqlite3 * (*db_handle)(sqlite3_stmt*); int (*declare_vtab)(sqlite3*,const char*); int (*enable_shared_cache)(int); int (*errcode)(sqlite3*db); const char * (*errmsg)(sqlite3*); const void * (*errmsg16)(sqlite3*); int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**); int (*expired)(sqlite3_stmt*); int (*finalize)(sqlite3_stmt*pStmt); void (*free)(void*); void (*free_table)(char**result); int (*get_autocommit)(sqlite3*); void * (*get_auxdata)(sqlite3_context*,int); int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**); int (*global_recover)(void); void (*interruptx)(sqlite3*); sqlite_int64 (*last_insert_rowid)(sqlite3*); const char * (*libversion)(void); int (*libversion_number)(void); void *(*malloc)(int); char * (*mprintf)(const char*,...); int (*open)(const char*,sqlite3**); int (*open16)(const void*,sqlite3**); int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); void *(*realloc)(void*,int); int (*reset)(sqlite3_stmt*pStmt); void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_double)(sqlite3_context*,double); void (*result_error)(sqlite3_context*,const char*,int); void (*result_error16)(sqlite3_context*,const void*,int); void (*result_int)(sqlite3_context*,int); void (*result_int64)(sqlite3_context*,sqlite_int64); void (*result_null)(sqlite3_context*); void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*)); void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_value)(sqlite3_context*,sqlite3_value*); void * (*rollback_hook)(sqlite3*,void(*)(void*),void*); int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*, const char*,const char*),void*); void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*)); char * (*xsnprintf)(int,char*,const char*,...); int (*step)(sqlite3_stmt*); int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*, char const**,char const**,int*,int*,int*); void (*thread_cleanup)(void); int (*total_changes)(sqlite3*); void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*); int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*); void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*, sqlite_int64),void*); void * (*user_data)(sqlite3_context*); const void * (*value_blob)(sqlite3_value*); int (*value_bytes)(sqlite3_value*); int (*value_bytes16)(sqlite3_value*); double (*value_double)(sqlite3_value*); int (*value_int)(sqlite3_value*); sqlite_int64 (*value_int64)(sqlite3_value*); int (*value_numeric_type)(sqlite3_value*); const unsigned char * (*value_text)(sqlite3_value*); const void * (*value_text16)(sqlite3_value*); const void * (*value_text16be)(sqlite3_value*); const void * (*value_text16le)(sqlite3_value*); int (*value_type)(sqlite3_value*); char *(*vmprintf)(const char*,va_list); /* Added ??? */ int (*overload_function)(sqlite3*, const char *zFuncName, int nArg); /* Added by 3.3.13 */ int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); int (*clear_bindings)(sqlite3_stmt*); /* Added by 3.4.1 */ int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*, void (*xDestroy)(void *)); /* Added by 3.5.0 */ int (*bind_zeroblob)(sqlite3_stmt*,int,int); int (*blob_bytes)(sqlite3_blob*); int (*blob_close)(sqlite3_blob*); int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64, int,sqlite3_blob**); int (*blob_read)(sqlite3_blob*,void*,int,int); int (*blob_write)(sqlite3_blob*,const void*,int,int); int (*create_collation_v2)(sqlite3*,const char*,int,void*, int(*)(void*,int,const void*,int,const void*), void(*)(void*)); int (*file_control)(sqlite3*,const char*,int,void*); sqlite3_int64 (*memory_highwater)(int); sqlite3_int64 (*memory_used)(void); sqlite3_mutex *(*mutex_alloc)(int); void (*mutex_enter)(sqlite3_mutex*); void (*mutex_free)(sqlite3_mutex*); void (*mutex_leave)(sqlite3_mutex*); int (*mutex_try)(sqlite3_mutex*); int (*open_v2)(const char*,sqlite3**,int,const char*); int (*release_memory)(int); void (*result_error_nomem)(sqlite3_context*); void (*result_error_toobig)(sqlite3_context*); int (*sleep)(int); void (*soft_heap_limit)(int); sqlite3_vfs *(*vfs_find)(const char*); int (*vfs_register)(sqlite3_vfs*,int); int (*vfs_unregister)(sqlite3_vfs*); int (*xthreadsafe)(void); void (*result_zeroblob)(sqlite3_context*,int); void (*result_error_code)(sqlite3_context*,int); int (*test_control)(int, ...); void (*randomness)(int,void*); sqlite3 *(*context_db_handle)(sqlite3_context*); int (*extended_result_codes)(sqlite3*,int); int (*limit)(sqlite3*,int,int); sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*); const char *(*sql)(sqlite3_stmt*); int (*status)(int,int*,int*,int); int (*backup_finish)(sqlite3_backup*); sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); int (*backup_pagecount)(sqlite3_backup*); int (*backup_remaining)(sqlite3_backup*); int (*backup_step)(sqlite3_backup*,int); const char *(*compileoption_get)(int); int (*compileoption_used)(const char*); int (*create_function_v2)(sqlite3*,const char*,int,int,void*, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void(*xDestroy)(void*)); int (*db_config)(sqlite3*,int,...); sqlite3_mutex *(*db_mutex)(sqlite3*); int (*db_status)(sqlite3*,int,int*,int*,int); int (*extended_errcode)(sqlite3*); void (*log)(int,const char*,...); sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64); const char *(*sourceid)(void); int (*stmt_status)(sqlite3_stmt*,int,int); int (*strnicmp)(const char*,const char*,int); int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*); int (*wal_autocheckpoint)(sqlite3*,int); int (*wal_checkpoint)(sqlite3*,const char*); void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*); int (*blob_reopen)(sqlite3_blob*,sqlite3_int64); int (*vtab_config)(sqlite3*,int op,...); int (*vtab_on_conflict)(sqlite3*); /* Version 3.7.16 and later */ int (*close_v2)(sqlite3*); const char *(*db_filename)(sqlite3*,const char*); int (*db_readonly)(sqlite3*,const char*); int (*db_release_memory)(sqlite3*); const char *(*errstr)(int); int (*stmt_busy)(sqlite3_stmt*); int (*stmt_readonly)(sqlite3_stmt*); int (*stricmp)(const char*,const char*); int (*uri_boolean)(const char*,const char*,int); sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64); const char *(*uri_parameter)(const char*,const char*); char *(*xvsnprintf)(int,char*,const char*,va_list); int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*); /* Version 3.8.7 and later */ int (*auto_extension)(void(*)(void)); int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64, void(*)(void*)); int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64, void(*)(void*),unsigned char); int (*cancel_auto_extension)(void(*)(void)); int (*load_extension)(sqlite3*,const char*,const char*,char**); void *(*malloc64)(sqlite3_uint64); sqlite3_uint64 (*msize)(void*); void *(*realloc64)(void*,sqlite3_uint64); void (*reset_auto_extension)(void); void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64, void(*)(void*)); void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64, void(*)(void*), unsigned char); int (*strglob)(const char*,const char*); /* Version 3.8.11 and later */ sqlite3_value *(*value_dup)(const sqlite3_value*); void (*value_free)(sqlite3_value*); int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64); int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64); /* Version 3.9.0 and later */ unsigned int (*value_subtype)(sqlite3_value*); void (*result_subtype)(sqlite3_context*,unsigned int); /* Version 3.10.0 and later */ int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int); int (*strlike)(const char*,const char*,unsigned int); int (*db_cacheflush)(sqlite3*); /* Version 3.12.0 and later */ int (*system_errno)(sqlite3*); /* Version 3.14.0 and later */ int (*trace_v2)(sqlite3*,unsigned,int(*)(unsigned,void*,void*,void*),void*); char *(*expanded_sql)(sqlite3_stmt*); /* Version 3.18.0 and later */ void (*set_last_insert_rowid)(sqlite3*,sqlite3_int64); /* Version 3.20.0 and later */ int (*prepare_v3)(sqlite3*,const char*,int,unsigned int, sqlite3_stmt**,const char**); int (*prepare16_v3)(sqlite3*,const void*,int,unsigned int, sqlite3_stmt**,const void**); int (*bind_pointer)(sqlite3_stmt*,int,void*,const char*,void(*)(void*)); void (*result_pointer)(sqlite3_context*,void*,const char*,void(*)(void*)); void *(*value_pointer)(sqlite3_value*,const char*); int (*vtab_nochange)(sqlite3_context*); int (*value_nochange)(sqlite3_value*); const char *(*vtab_collation)(sqlite3_index_info*,int); /* Version 3.24.0 and later */ int (*keyword_count)(void); int (*keyword_name)(int,const char**,int*); int (*keyword_check)(const char*,int); sqlite3_str *(*str_new)(sqlite3*); char *(*str_finish)(sqlite3_str*); void (*str_appendf)(sqlite3_str*, const char *zFormat, ...); void (*str_vappendf)(sqlite3_str*, const char *zFormat, va_list); void (*str_append)(sqlite3_str*, const char *zIn, int N); void (*str_appendall)(sqlite3_str*, const char *zIn); void (*str_appendchar)(sqlite3_str*, int N, char C); void (*str_reset)(sqlite3_str*); int (*str_errcode)(sqlite3_str*); int (*str_length)(sqlite3_str*); char *(*str_value)(sqlite3_str*); /* Version 3.25.0 and later */ int (*create_window_function)(sqlite3*,const char*,int,int,void*, void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInv)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*)); /* Version 3.26.0 and later */ const char *(*normalized_sql)(sqlite3_stmt*); /* Version 3.28.0 and later */ int (*stmt_isexplain)(sqlite3_stmt*); int (*value_frombind)(sqlite3_value*); /* Version 3.30.0 and later */ int (*drop_modules)(sqlite3*,const char**); /* Version 3.31.0 and later */ sqlite3_int64 (*hard_heap_limit64)(sqlite3_int64); const char *(*uri_key)(const char*,int); const char *(*filename_database)(const char*); const char *(*filename_journal)(const char*); const char *(*filename_wal)(const char*); /* Version 3.32.0 and later */ char *(*create_filename)(const char*,const char*,const char*, int,const char**); void (*free_filename)(char*); sqlite3_file *(*database_file_object)(const char*); /* Version 3.34.0 and later */ int (*txn_state)(sqlite3*,const char*); /* Version 3.36.1 and later */ sqlite3_int64 (*changes64)(sqlite3*); sqlite3_int64 (*total_changes64)(sqlite3*); /* Version 3.37.0 and later */ int (*autovacuum_pages)(sqlite3*, unsigned int(*)(void*,const char*,unsigned int,unsigned int,unsigned int), void*, void(*)(void*)); /* Version 3.38.0 and later */ int (*error_offset)(sqlite3*); int (*vtab_rhs_value)(sqlite3_index_info*,int,sqlite3_value**); int (*vtab_distinct)(sqlite3_index_info*); int (*vtab_in)(sqlite3_index_info*,int,int); int (*vtab_in_first)(sqlite3_value*,sqlite3_value**); int (*vtab_in_next)(sqlite3_value*,sqlite3_value**); }; /* ** This is the function signature used for all extension entry points. It ** is also defined in the file "loadext.c". */ typedef int (*sqlite3_loadext_entry)( sqlite3 *db, /* Handle to the database. */ char **pzErrMsg, /* Used to set error string on failure. */ const sqlite3_api_routines *pThunk /* Extension API function pointers. */ ); /* ** The following macros redefine the API routines so that they are ** redirected through the global sqlite3_api structure. ** ** This header file is also used by the loadext.c source file ** (part of the main SQLite library - not an extension) so that ** it can get access to the sqlite3_api_routines structure ** definition. But the main library does not want to redefine ** the API. So the redefinition macros are only valid if the ** SQLITE_CORE macros is undefined. */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) #define sqlite3_aggregate_context sqlite3_api->aggregate_context #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_aggregate_count sqlite3_api->aggregate_count #endif #define sqlite3_bind_blob sqlite3_api->bind_blob #define sqlite3_bind_double sqlite3_api->bind_double #define sqlite3_bind_int sqlite3_api->bind_int #define sqlite3_bind_int64 sqlite3_api->bind_int64 #define sqlite3_bind_null sqlite3_api->bind_null #define sqlite3_bind_parameter_count sqlite3_api->bind_parameter_count #define sqlite3_bind_parameter_index sqlite3_api->bind_parameter_index #define sqlite3_bind_parameter_name sqlite3_api->bind_parameter_name #define sqlite3_bind_text sqlite3_api->bind_text #define sqlite3_bind_text16 sqlite3_api->bind_text16 #define sqlite3_bind_value sqlite3_api->bind_value #define sqlite3_busy_handler sqlite3_api->busy_handler #define sqlite3_busy_timeout sqlite3_api->busy_timeout #define sqlite3_changes sqlite3_api->changes #define sqlite3_close sqlite3_api->close #define sqlite3_collation_needed sqlite3_api->collation_needed #define sqlite3_collation_needed16 sqlite3_api->collation_needed16 #define sqlite3_column_blob sqlite3_api->column_blob #define sqlite3_column_bytes sqlite3_api->column_bytes #define sqlite3_column_bytes16 sqlite3_api->column_bytes16 #define sqlite3_column_count sqlite3_api->column_count #define sqlite3_column_database_name sqlite3_api->column_database_name #define sqlite3_column_database_name16 sqlite3_api->column_database_name16 #define sqlite3_column_decltype sqlite3_api->column_decltype #define sqlite3_column_decltype16 sqlite3_api->column_decltype16 #define sqlite3_column_double sqlite3_api->column_double #define sqlite3_column_int sqlite3_api->column_int #define sqlite3_column_int64 sqlite3_api->column_int64 #define sqlite3_column_name sqlite3_api->column_name #define sqlite3_column_name16 sqlite3_api->column_name16 #define sqlite3_column_origin_name sqlite3_api->column_origin_name #define sqlite3_column_origin_name16 sqlite3_api->column_origin_name16 #define sqlite3_column_table_name sqlite3_api->column_table_name #define sqlite3_column_table_name16 sqlite3_api->column_table_name16 #define sqlite3_column_text sqlite3_api->column_text #define sqlite3_column_text16 sqlite3_api->column_text16 #define sqlite3_column_type sqlite3_api->column_type #define sqlite3_column_value sqlite3_api->column_value #define sqlite3_commit_hook sqlite3_api->commit_hook #define sqlite3_complete sqlite3_api->complete #define sqlite3_complete16 sqlite3_api->complete16 #define sqlite3_create_collation sqlite3_api->create_collation #define sqlite3_create_collation16 sqlite3_api->create_collation16 #define sqlite3_create_function sqlite3_api->create_function #define sqlite3_create_function16 sqlite3_api->create_function16 #define sqlite3_create_module sqlite3_api->create_module #define sqlite3_create_module_v2 sqlite3_api->create_module_v2 #define sqlite3_data_count sqlite3_api->data_count #define sqlite3_db_handle sqlite3_api->db_handle #define sqlite3_declare_vtab sqlite3_api->declare_vtab #define sqlite3_enable_shared_cache sqlite3_api->enable_shared_cache #define sqlite3_errcode sqlite3_api->errcode #define sqlite3_errmsg sqlite3_api->errmsg #define sqlite3_errmsg16 sqlite3_api->errmsg16 #define sqlite3_exec sqlite3_api->exec #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_expired sqlite3_api->expired #endif #define sqlite3_finalize sqlite3_api->finalize #define sqlite3_free sqlite3_api->free #define sqlite3_free_table sqlite3_api->free_table #define sqlite3_get_autocommit sqlite3_api->get_autocommit #define sqlite3_get_auxdata sqlite3_api->get_auxdata #define sqlite3_get_table sqlite3_api->get_table #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_global_recover sqlite3_api->global_recover #endif #define sqlite3_interrupt sqlite3_api->interruptx #define sqlite3_last_insert_rowid sqlite3_api->last_insert_rowid #define sqlite3_libversion sqlite3_api->libversion #define sqlite3_libversion_number sqlite3_api->libversion_number #define sqlite3_malloc sqlite3_api->malloc #define sqlite3_mprintf sqlite3_api->mprintf #define sqlite3_open sqlite3_api->open #define sqlite3_open16 sqlite3_api->open16 #define sqlite3_prepare sqlite3_api->prepare #define sqlite3_prepare16 sqlite3_api->prepare16 #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 #define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 #define sqlite3_profile sqlite3_api->profile #define sqlite3_progress_handler sqlite3_api->progress_handler #define sqlite3_realloc sqlite3_api->realloc #define sqlite3_reset sqlite3_api->reset #define sqlite3_result_blob sqlite3_api->result_blob #define sqlite3_result_double sqlite3_api->result_double #define sqlite3_result_error sqlite3_api->result_error #define sqlite3_result_error16 sqlite3_api->result_error16 #define sqlite3_result_int sqlite3_api->result_int #define sqlite3_result_int64 sqlite3_api->result_int64 #define sqlite3_result_null sqlite3_api->result_null #define sqlite3_result_text sqlite3_api->result_text #define sqlite3_result_text16 sqlite3_api->result_text16 #define sqlite3_result_text16be sqlite3_api->result_text16be #define sqlite3_result_text16le sqlite3_api->result_text16le #define sqlite3_result_value sqlite3_api->result_value #define sqlite3_rollback_hook sqlite3_api->rollback_hook #define sqlite3_set_authorizer sqlite3_api->set_authorizer #define sqlite3_set_auxdata sqlite3_api->set_auxdata #define sqlite3_snprintf sqlite3_api->xsnprintf #define sqlite3_step sqlite3_api->step #define sqlite3_table_column_metadata sqlite3_api->table_column_metadata #define sqlite3_thread_cleanup sqlite3_api->thread_cleanup #define sqlite3_total_changes sqlite3_api->total_changes #define sqlite3_trace sqlite3_api->trace #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_transfer_bindings sqlite3_api->transfer_bindings #endif #define sqlite3_update_hook sqlite3_api->update_hook #define sqlite3_user_data sqlite3_api->user_data #define sqlite3_value_blob sqlite3_api->value_blob #define sqlite3_value_bytes sqlite3_api->value_bytes #define sqlite3_value_bytes16 sqlite3_api->value_bytes16 #define sqlite3_value_double sqlite3_api->value_double #define sqlite3_value_int sqlite3_api->value_int #define sqlite3_value_int64 sqlite3_api->value_int64 #define sqlite3_value_numeric_type sqlite3_api->value_numeric_type #define sqlite3_value_text sqlite3_api->value_text #define sqlite3_value_text16 sqlite3_api->value_text16 #define sqlite3_value_text16be sqlite3_api->value_text16be #define sqlite3_value_text16le sqlite3_api->value_text16le #define sqlite3_value_type sqlite3_api->value_type #define sqlite3_vmprintf sqlite3_api->vmprintf #define sqlite3_vsnprintf sqlite3_api->xvsnprintf #define sqlite3_overload_function sqlite3_api->overload_function #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 #define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 #define sqlite3_clear_bindings sqlite3_api->clear_bindings #define sqlite3_bind_zeroblob sqlite3_api->bind_zeroblob #define sqlite3_blob_bytes sqlite3_api->blob_bytes #define sqlite3_blob_close sqlite3_api->blob_close #define sqlite3_blob_open sqlite3_api->blob_open #define sqlite3_blob_read sqlite3_api->blob_read #define sqlite3_blob_write sqlite3_api->blob_write #define sqlite3_create_collation_v2 sqlite3_api->create_collation_v2 #define sqlite3_file_control sqlite3_api->file_control #define sqlite3_memory_highwater sqlite3_api->memory_highwater #define sqlite3_memory_used sqlite3_api->memory_used #define sqlite3_mutex_alloc sqlite3_api->mutex_alloc #define sqlite3_mutex_enter sqlite3_api->mutex_enter #define sqlite3_mutex_free sqlite3_api->mutex_free #define sqlite3_mutex_leave sqlite3_api->mutex_leave #define sqlite3_mutex_try sqlite3_api->mutex_try #define sqlite3_open_v2 sqlite3_api->open_v2 #define sqlite3_release_memory sqlite3_api->release_memory #define sqlite3_result_error_nomem sqlite3_api->result_error_nomem #define sqlite3_result_error_toobig sqlite3_api->result_error_toobig #define sqlite3_sleep sqlite3_api->sleep #define sqlite3_soft_heap_limit sqlite3_api->soft_heap_limit #define sqlite3_vfs_find sqlite3_api->vfs_find #define sqlite3_vfs_register sqlite3_api->vfs_register #define sqlite3_vfs_unregister sqlite3_api->vfs_unregister #define sqlite3_threadsafe sqlite3_api->xthreadsafe #define sqlite3_result_zeroblob sqlite3_api->result_zeroblob #define sqlite3_result_error_code sqlite3_api->result_error_code #define sqlite3_test_control sqlite3_api->test_control #define sqlite3_randomness sqlite3_api->randomness #define sqlite3_context_db_handle sqlite3_api->context_db_handle #define sqlite3_extended_result_codes sqlite3_api->extended_result_codes #define sqlite3_limit sqlite3_api->limit #define sqlite3_next_stmt sqlite3_api->next_stmt #define sqlite3_sql sqlite3_api->sql #define sqlite3_status sqlite3_api->status #define sqlite3_backup_finish sqlite3_api->backup_finish #define sqlite3_backup_init sqlite3_api->backup_init #define sqlite3_backup_pagecount sqlite3_api->backup_pagecount #define sqlite3_backup_remaining sqlite3_api->backup_remaining #define sqlite3_backup_step sqlite3_api->backup_step #define sqlite3_compileoption_get sqlite3_api->compileoption_get #define sqlite3_compileoption_used sqlite3_api->compileoption_used #define sqlite3_create_function_v2 sqlite3_api->create_function_v2 #define sqlite3_db_config sqlite3_api->db_config #define sqlite3_db_mutex sqlite3_api->db_mutex #define sqlite3_db_status sqlite3_api->db_status #define sqlite3_extended_errcode sqlite3_api->extended_errcode #define sqlite3_log sqlite3_api->log #define sqlite3_soft_heap_limit64 sqlite3_api->soft_heap_limit64 #define sqlite3_sourceid sqlite3_api->sourceid #define sqlite3_stmt_status sqlite3_api->stmt_status #define sqlite3_strnicmp sqlite3_api->strnicmp #define sqlite3_unlock_notify sqlite3_api->unlock_notify #define sqlite3_wal_autocheckpoint sqlite3_api->wal_autocheckpoint #define sqlite3_wal_checkpoint sqlite3_api->wal_checkpoint #define sqlite3_wal_hook sqlite3_api->wal_hook #define sqlite3_blob_reopen sqlite3_api->blob_reopen #define sqlite3_vtab_config sqlite3_api->vtab_config #define sqlite3_vtab_on_conflict sqlite3_api->vtab_on_conflict /* Version 3.7.16 and later */ #define sqlite3_close_v2 sqlite3_api->close_v2 #define sqlite3_db_filename sqlite3_api->db_filename #define sqlite3_db_readonly sqlite3_api->db_readonly #define sqlite3_db_release_memory sqlite3_api->db_release_memory #define sqlite3_errstr sqlite3_api->errstr #define sqlite3_stmt_busy sqlite3_api->stmt_busy #define sqlite3_stmt_readonly sqlite3_api->stmt_readonly #define sqlite3_stricmp sqlite3_api->stricmp #define sqlite3_uri_boolean sqlite3_api->uri_boolean #define sqlite3_uri_int64 sqlite3_api->uri_int64 #define sqlite3_uri_parameter sqlite3_api->uri_parameter #define sqlite3_uri_vsnprintf sqlite3_api->xvsnprintf #define sqlite3_wal_checkpoint_v2 sqlite3_api->wal_checkpoint_v2 /* Version 3.8.7 and later */ #define sqlite3_auto_extension sqlite3_api->auto_extension #define sqlite3_bind_blob64 sqlite3_api->bind_blob64 #define sqlite3_bind_text64 sqlite3_api->bind_text64 #define sqlite3_cancel_auto_extension sqlite3_api->cancel_auto_extension #define sqlite3_load_extension sqlite3_api->load_extension #define sqlite3_malloc64 sqlite3_api->malloc64 #define sqlite3_msize sqlite3_api->msize #define sqlite3_realloc64 sqlite3_api->realloc64 #define sqlite3_reset_auto_extension sqlite3_api->reset_auto_extension #define sqlite3_result_blob64 sqlite3_api->result_blob64 #define sqlite3_result_text64 sqlite3_api->result_text64 #define sqlite3_strglob sqlite3_api->strglob /* Version 3.8.11 and later */ #define sqlite3_value_dup sqlite3_api->value_dup #define sqlite3_value_free sqlite3_api->value_free #define sqlite3_result_zeroblob64 sqlite3_api->result_zeroblob64 #define sqlite3_bind_zeroblob64 sqlite3_api->bind_zeroblob64 /* Version 3.9.0 and later */ #define sqlite3_value_subtype sqlite3_api->value_subtype #define sqlite3_result_subtype sqlite3_api->result_subtype /* Version 3.10.0 and later */ #define sqlite3_status64 sqlite3_api->status64 #define sqlite3_strlike sqlite3_api->strlike #define sqlite3_db_cacheflush sqlite3_api->db_cacheflush /* Version 3.12.0 and later */ #define sqlite3_system_errno sqlite3_api->system_errno /* Version 3.14.0 and later */ #define sqlite3_trace_v2 sqlite3_api->trace_v2 #define sqlite3_expanded_sql sqlite3_api->expanded_sql /* Version 3.18.0 and later */ #define sqlite3_set_last_insert_rowid sqlite3_api->set_last_insert_rowid /* Version 3.20.0 and later */ #define sqlite3_prepare_v3 sqlite3_api->prepare_v3 #define sqlite3_prepare16_v3 sqlite3_api->prepare16_v3 #define sqlite3_bind_pointer sqlite3_api->bind_pointer #define sqlite3_result_pointer sqlite3_api->result_pointer #define sqlite3_value_pointer sqlite3_api->value_pointer /* Version 3.22.0 and later */ #define sqlite3_vtab_nochange sqlite3_api->vtab_nochange #define sqlite3_value_nochange sqlite3_api->value_nochange #define sqlite3_vtab_collation sqlite3_api->vtab_collation /* Version 3.24.0 and later */ #define sqlite3_keyword_count sqlite3_api->keyword_count #define sqlite3_keyword_name sqlite3_api->keyword_name #define sqlite3_keyword_check sqlite3_api->keyword_check #define sqlite3_str_new sqlite3_api->str_new #define sqlite3_str_finish sqlite3_api->str_finish #define sqlite3_str_appendf sqlite3_api->str_appendf #define sqlite3_str_vappendf sqlite3_api->str_vappendf #define sqlite3_str_append sqlite3_api->str_append #define sqlite3_str_appendall sqlite3_api->str_appendall #define sqlite3_str_appendchar sqlite3_api->str_appendchar #define sqlite3_str_reset sqlite3_api->str_reset #define sqlite3_str_errcode sqlite3_api->str_errcode #define sqlite3_str_length sqlite3_api->str_length #define sqlite3_str_value sqlite3_api->str_value /* Version 3.25.0 and later */ #define sqlite3_create_window_function sqlite3_api->create_window_function /* Version 3.26.0 and later */ #define sqlite3_normalized_sql sqlite3_api->normalized_sql /* Version 3.28.0 and later */ #define sqlite3_stmt_isexplain sqlite3_api->stmt_isexplain #define sqlite3_value_frombind sqlite3_api->value_frombind /* Version 3.30.0 and later */ #define sqlite3_drop_modules sqlite3_api->drop_modules /* Version 3.31.0 and later */ #define sqlite3_hard_heap_limit64 sqlite3_api->hard_heap_limit64 #define sqlite3_uri_key sqlite3_api->uri_key #define sqlite3_filename_database sqlite3_api->filename_database #define sqlite3_filename_journal sqlite3_api->filename_journal #define sqlite3_filename_wal sqlite3_api->filename_wal /* Version 3.32.0 and later */ #define sqlite3_create_filename sqlite3_api->create_filename #define sqlite3_free_filename sqlite3_api->free_filename #define sqlite3_database_file_object sqlite3_api->database_file_object /* Version 3.34.0 and later */ #define sqlite3_txn_state sqlite3_api->txn_state /* Version 3.36.1 and later */ #define sqlite3_changes64 sqlite3_api->changes64 #define sqlite3_total_changes64 sqlite3_api->total_changes64 /* Version 3.37.0 and later */ #define sqlite3_autovacuum_pages sqlite3_api->autovacuum_pages /* Version 3.38.0 and later */ #define sqlite3_error_offset sqlite3_api->error_offset #define sqlite3_vtab_rhs_value sqlite3_api->vtab_rhs_value #define sqlite3_vtab_distinct sqlite3_api->vtab_distinct #define sqlite3_vtab_in sqlite3_api->vtab_in #define sqlite3_vtab_in_first sqlite3_api->vtab_in_first #define sqlite3_vtab_in_next sqlite3_api->vtab_in_next #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) /* This case when the file really is being compiled as a loadable ** extension */ # define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api=0; # define SQLITE_EXTENSION_INIT2(v) sqlite3_api=v; # define SQLITE_EXTENSION_INIT3 \ extern const sqlite3_api_routines *sqlite3_api; #else /* This case when the file is being statically linked into the ** application */ # define SQLITE_EXTENSION_INIT1 /*no-op*/ # define SQLITE_EXTENSION_INIT2(v) (void)v; /* unused parameter */ # define SQLITE_EXTENSION_INIT3 /*no-op*/ #endif #endif /* SQLITE3EXT_H */ /************** End of sqlite3ext.h ******************************************/ /************** Continuing where we left off in loadext.c ********************/ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** Some API routines are omitted when various features are ** excluded from a build of SQLite. Substitute a NULL pointer ** for any missing APIs. */ #ifndef SQLITE_ENABLE_COLUMN_METADATA # define sqlite3_column_database_name 0 # define sqlite3_column_database_name16 0 # define sqlite3_column_table_name 0 # define sqlite3_column_table_name16 0 # define sqlite3_column_origin_name 0 # define sqlite3_column_origin_name16 0 #endif #ifdef SQLITE_OMIT_AUTHORIZATION # define sqlite3_set_authorizer 0 #endif #ifdef SQLITE_OMIT_UTF16 # define sqlite3_bind_text16 0 # define sqlite3_collation_needed16 0 # define sqlite3_column_decltype16 0 # define sqlite3_column_name16 0 # define sqlite3_column_text16 0 # define sqlite3_complete16 0 # define sqlite3_create_collation16 0 # define sqlite3_create_function16 0 # define sqlite3_errmsg16 0 # define sqlite3_open16 0 # define sqlite3_prepare16 0 # define sqlite3_prepare16_v2 0 # define sqlite3_prepare16_v3 0 # define sqlite3_result_error16 0 # define sqlite3_result_text16 0 # define sqlite3_result_text16be 0 # define sqlite3_result_text16le 0 # define sqlite3_value_text16 0 # define sqlite3_value_text16be 0 # define sqlite3_value_text16le 0 # define sqlite3_column_database_name16 0 # define sqlite3_column_table_name16 0 # define sqlite3_column_origin_name16 0 #endif #ifdef SQLITE_OMIT_COMPLETE # define sqlite3_complete 0 # define sqlite3_complete16 0 #endif #ifdef SQLITE_OMIT_DECLTYPE # define sqlite3_column_decltype16 0 # define sqlite3_column_decltype 0 #endif #ifdef SQLITE_OMIT_PROGRESS_CALLBACK # define sqlite3_progress_handler 0 #endif #ifdef SQLITE_OMIT_VIRTUALTABLE # define sqlite3_create_module 0 # define sqlite3_create_module_v2 0 # define sqlite3_declare_vtab 0 # define sqlite3_vtab_config 0 # define sqlite3_vtab_on_conflict 0 # define sqlite3_vtab_collation 0 #endif #ifdef SQLITE_OMIT_SHARED_CACHE # define sqlite3_enable_shared_cache 0 #endif #if defined(SQLITE_OMIT_TRACE) || defined(SQLITE_OMIT_DEPRECATED) # define sqlite3_profile 0 # define sqlite3_trace 0 #endif #ifdef SQLITE_OMIT_GET_TABLE # define sqlite3_free_table 0 # define sqlite3_get_table 0 #endif #ifdef SQLITE_OMIT_INCRBLOB #define sqlite3_bind_zeroblob 0 #define sqlite3_blob_bytes 0 #define sqlite3_blob_close 0 #define sqlite3_blob_open 0 #define sqlite3_blob_read 0 #define sqlite3_blob_write 0 #define sqlite3_blob_reopen 0 #endif #if defined(SQLITE_OMIT_TRACE) # define sqlite3_trace_v2 0 #endif /* ** The following structure contains pointers to all SQLite API routines. ** A pointer to this structure is passed into extensions when they are ** loaded so that the extension can make calls back into the SQLite ** library. ** ** When adding new APIs, add them to the bottom of this structure ** in order to preserve backwards compatibility. ** ** Extensions that use newer APIs should first call the ** sqlite3_libversion_number() to make sure that the API they ** intend to use is supported by the library. Extensions should ** also check to make sure that the pointer to the function is ** not NULL before calling it. */ static const sqlite3_api_routines sqlite3Apis = { sqlite3_aggregate_context, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_aggregate_count, #else 0, #endif sqlite3_bind_blob, sqlite3_bind_double, sqlite3_bind_int, sqlite3_bind_int64, sqlite3_bind_null, sqlite3_bind_parameter_count, sqlite3_bind_parameter_index, sqlite3_bind_parameter_name, sqlite3_bind_text, sqlite3_bind_text16, sqlite3_bind_value, sqlite3_busy_handler, sqlite3_busy_timeout, sqlite3_changes, sqlite3_close, sqlite3_collation_needed, sqlite3_collation_needed16, sqlite3_column_blob, sqlite3_column_bytes, sqlite3_column_bytes16, sqlite3_column_count, sqlite3_column_database_name, sqlite3_column_database_name16, sqlite3_column_decltype, sqlite3_column_decltype16, sqlite3_column_double, sqlite3_column_int, sqlite3_column_int64, sqlite3_column_name, sqlite3_column_name16, sqlite3_column_origin_name, sqlite3_column_origin_name16, sqlite3_column_table_name, sqlite3_column_table_name16, sqlite3_column_text, sqlite3_column_text16, sqlite3_column_type, sqlite3_column_value, sqlite3_commit_hook, sqlite3_complete, sqlite3_complete16, sqlite3_create_collation, sqlite3_create_collation16, sqlite3_create_function, sqlite3_create_function16, sqlite3_create_module, sqlite3_data_count, sqlite3_db_handle, sqlite3_declare_vtab, sqlite3_enable_shared_cache, sqlite3_errcode, sqlite3_errmsg, sqlite3_errmsg16, sqlite3_exec, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_expired, #else 0, #endif sqlite3_finalize, sqlite3_free, sqlite3_free_table, sqlite3_get_autocommit, sqlite3_get_auxdata, sqlite3_get_table, 0, /* Was sqlite3_global_recover(), but that function is deprecated */ sqlite3_interrupt, sqlite3_last_insert_rowid, sqlite3_libversion, sqlite3_libversion_number, sqlite3_malloc, sqlite3_mprintf, sqlite3_open, sqlite3_open16, sqlite3_prepare, sqlite3_prepare16, sqlite3_profile, sqlite3_progress_handler, sqlite3_realloc, sqlite3_reset, sqlite3_result_blob, sqlite3_result_double, sqlite3_result_error, sqlite3_result_error16, sqlite3_result_int, sqlite3_result_int64, sqlite3_result_null, sqlite3_result_text, sqlite3_result_text16, sqlite3_result_text16be, sqlite3_result_text16le, sqlite3_result_value, sqlite3_rollback_hook, sqlite3_set_authorizer, sqlite3_set_auxdata, sqlite3_snprintf, sqlite3_step, sqlite3_table_column_metadata, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_thread_cleanup, #else 0, #endif sqlite3_total_changes, sqlite3_trace, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_transfer_bindings, #else 0, #endif sqlite3_update_hook, sqlite3_user_data, sqlite3_value_blob, sqlite3_value_bytes, sqlite3_value_bytes16, sqlite3_value_double, sqlite3_value_int, sqlite3_value_int64, sqlite3_value_numeric_type, sqlite3_value_text, sqlite3_value_text16, sqlite3_value_text16be, sqlite3_value_text16le, sqlite3_value_type, sqlite3_vmprintf, /* ** The original API set ends here. All extensions can call any ** of the APIs above provided that the pointer is not NULL. But ** before calling APIs that follow, extension should check the ** sqlite3_libversion_number() to make sure they are dealing with ** a library that is new enough to support that API. ************************************************************************* */ sqlite3_overload_function, /* ** Added after 3.3.13 */ sqlite3_prepare_v2, sqlite3_prepare16_v2, sqlite3_clear_bindings, /* ** Added for 3.4.1 */ sqlite3_create_module_v2, /* ** Added for 3.5.0 */ sqlite3_bind_zeroblob, sqlite3_blob_bytes, sqlite3_blob_close, sqlite3_blob_open, sqlite3_blob_read, sqlite3_blob_write, sqlite3_create_collation_v2, sqlite3_file_control, sqlite3_memory_highwater, sqlite3_memory_used, #ifdef SQLITE_MUTEX_OMIT 0, 0, 0, 0, 0, #else sqlite3_mutex_alloc, sqlite3_mutex_enter, sqlite3_mutex_free, sqlite3_mutex_leave, sqlite3_mutex_try, #endif sqlite3_open_v2, sqlite3_release_memory, sqlite3_result_error_nomem, sqlite3_result_error_toobig, sqlite3_sleep, sqlite3_soft_heap_limit, sqlite3_vfs_find, sqlite3_vfs_register, sqlite3_vfs_unregister, /* ** Added for 3.5.8 */ sqlite3_threadsafe, sqlite3_result_zeroblob, sqlite3_result_error_code, sqlite3_test_control, sqlite3_randomness, sqlite3_context_db_handle, /* ** Added for 3.6.0 */ sqlite3_extended_result_codes, sqlite3_limit, sqlite3_next_stmt, sqlite3_sql, sqlite3_status, /* ** Added for 3.7.4 */ sqlite3_backup_finish, sqlite3_backup_init, sqlite3_backup_pagecount, sqlite3_backup_remaining, sqlite3_backup_step, #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS sqlite3_compileoption_get, sqlite3_compileoption_used, #else 0, 0, #endif sqlite3_create_function_v2, sqlite3_db_config, sqlite3_db_mutex, sqlite3_db_status, sqlite3_extended_errcode, sqlite3_log, sqlite3_soft_heap_limit64, sqlite3_sourceid, sqlite3_stmt_status, sqlite3_strnicmp, #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY sqlite3_unlock_notify, #else 0, #endif #ifndef SQLITE_OMIT_WAL sqlite3_wal_autocheckpoint, sqlite3_wal_checkpoint, sqlite3_wal_hook, #else 0, 0, 0, #endif sqlite3_blob_reopen, sqlite3_vtab_config, sqlite3_vtab_on_conflict, sqlite3_close_v2, sqlite3_db_filename, sqlite3_db_readonly, sqlite3_db_release_memory, sqlite3_errstr, sqlite3_stmt_busy, sqlite3_stmt_readonly, sqlite3_stricmp, sqlite3_uri_boolean, sqlite3_uri_int64, sqlite3_uri_parameter, sqlite3_vsnprintf, sqlite3_wal_checkpoint_v2, /* Version 3.8.7 and later */ sqlite3_auto_extension, sqlite3_bind_blob64, sqlite3_bind_text64, sqlite3_cancel_auto_extension, sqlite3_load_extension, sqlite3_malloc64, sqlite3_msize, sqlite3_realloc64, sqlite3_reset_auto_extension, sqlite3_result_blob64, sqlite3_result_text64, sqlite3_strglob, /* Version 3.8.11 and later */ (sqlite3_value*(*)(const sqlite3_value*))sqlite3_value_dup, sqlite3_value_free, sqlite3_result_zeroblob64, sqlite3_bind_zeroblob64, /* Version 3.9.0 and later */ sqlite3_value_subtype, sqlite3_result_subtype, /* Version 3.10.0 and later */ sqlite3_status64, sqlite3_strlike, sqlite3_db_cacheflush, /* Version 3.12.0 and later */ sqlite3_system_errno, /* Version 3.14.0 and later */ sqlite3_trace_v2, sqlite3_expanded_sql, /* Version 3.18.0 and later */ sqlite3_set_last_insert_rowid, /* Version 3.20.0 and later */ sqlite3_prepare_v3, sqlite3_prepare16_v3, sqlite3_bind_pointer, sqlite3_result_pointer, sqlite3_value_pointer, /* Version 3.22.0 and later */ sqlite3_vtab_nochange, sqlite3_value_nochange, sqlite3_vtab_collation, /* Version 3.24.0 and later */ sqlite3_keyword_count, sqlite3_keyword_name, sqlite3_keyword_check, sqlite3_str_new, sqlite3_str_finish, sqlite3_str_appendf, sqlite3_str_vappendf, sqlite3_str_append, sqlite3_str_appendall, sqlite3_str_appendchar, sqlite3_str_reset, sqlite3_str_errcode, sqlite3_str_length, sqlite3_str_value, /* Version 3.25.0 and later */ sqlite3_create_window_function, /* Version 3.26.0 and later */ #ifdef SQLITE_ENABLE_NORMALIZE sqlite3_normalized_sql, #else 0, #endif /* Version 3.28.0 and later */ sqlite3_stmt_isexplain, sqlite3_value_frombind, /* Version 3.30.0 and later */ #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3_drop_modules, #else 0, #endif /* Version 3.31.0 and later */ sqlite3_hard_heap_limit64, sqlite3_uri_key, sqlite3_filename_database, sqlite3_filename_journal, sqlite3_filename_wal, /* Version 3.32.0 and later */ sqlite3_create_filename, sqlite3_free_filename, sqlite3_database_file_object, /* Version 3.34.0 and later */ sqlite3_txn_state, /* Version 3.36.1 and later */ sqlite3_changes64, sqlite3_total_changes64, /* Version 3.37.0 and later */ sqlite3_autovacuum_pages, /* Version 3.38.0 and later */ sqlite3_error_offset, sqlite3_vtab_rhs_value, sqlite3_vtab_distinct, sqlite3_vtab_in, sqlite3_vtab_in_first, sqlite3_vtab_in_next }; /* True if x is the directory separator character */ #if SQLITE_OS_WIN # define DirSep(X) ((X)=='/'||(X)=='\\') #else # define DirSep(X) ((X)=='/') #endif /* ** Attempt to load an SQLite extension library contained in the file ** zFile. The entry point is zProc. zProc may be 0 in which case a ** default entry point name (sqlite3_extension_init) is used. Use ** of the default name is recommended. ** ** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong. ** ** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with ** error message text. The calling function should free this memory ** by calling sqlite3DbFree(db, ). */ static int sqlite3LoadExtension( sqlite3 *db, /* Load the extension into this database connection */ const char *zFile, /* Name of the shared library containing extension */ const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ char **pzErrMsg /* Put error message here if not 0 */ ){ sqlite3_vfs *pVfs = db->pVfs; void *handle; sqlite3_loadext_entry xInit; char *zErrmsg = 0; const char *zEntry; char *zAltEntry = 0; void **aHandle; u64 nMsg = strlen(zFile); int ii; int rc; /* Shared library endings to try if zFile cannot be loaded as written */ static const char *azEndings[] = { #if SQLITE_OS_WIN "dll" #elif defined(__APPLE__) "dylib" #else "so" #endif }; if( pzErrMsg ) *pzErrMsg = 0; /* Ticket #1863. To avoid a creating security problems for older ** applications that relink against newer versions of SQLite, the ** ability to run load_extension is turned off by default. One ** must call either sqlite3_enable_load_extension(db) or ** sqlite3_db_config(db, SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, 1, 0) ** to turn on extension loading. */ if( (db->flags & SQLITE_LoadExtension)==0 ){ if( pzErrMsg ){ *pzErrMsg = sqlite3_mprintf("not authorized"); } return SQLITE_ERROR; } zEntry = zProc ? zProc : "sqlite3_extension_init"; /* tag-20210611-1. Some dlopen() implementations will segfault if given ** an oversize filename. Most filesystems have a pathname limit of 4K, ** so limit the extension filename length to about twice that. ** https://sqlite.org/forum/forumpost/08a0d6d9bf */ if( nMsg>SQLITE_MAX_PATHLEN ) goto extension_not_found; handle = sqlite3OsDlOpen(pVfs, zFile); #if SQLITE_OS_UNIX || SQLITE_OS_WIN for(ii=0; ii sqlite3_example_init ** C:/lib/mathfuncs.dll ==> sqlite3_mathfuncs_init */ if( xInit==0 && zProc==0 ){ int iFile, iEntry, c; int ncFile = sqlite3Strlen30(zFile); zAltEntry = sqlite3_malloc64(ncFile+30); if( zAltEntry==0 ){ sqlite3OsDlClose(pVfs, handle); return SQLITE_NOMEM_BKPT; } memcpy(zAltEntry, "sqlite3_", 8); for(iFile=ncFile-1; iFile>=0 && !DirSep(zFile[iFile]); iFile--){} iFile++; if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3; for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){ if( sqlite3Isalpha(c) ){ zAltEntry[iEntry++] = (char)sqlite3UpperToLower[(unsigned)c]; } } memcpy(zAltEntry+iEntry, "_init", 6); zEntry = zAltEntry; xInit = (sqlite3_loadext_entry)sqlite3OsDlSym(pVfs, handle, zEntry); } if( xInit==0 ){ if( pzErrMsg ){ nMsg += strlen(zEntry) + 300; *pzErrMsg = zErrmsg = sqlite3_malloc64(nMsg); if( zErrmsg ){ assert( nMsg<0x7fffffff ); /* zErrmsg would be NULL if not so */ sqlite3_snprintf((int)nMsg, zErrmsg, "no entry point [%s] in shared library [%s]", zEntry, zFile); sqlite3OsDlError(pVfs, nMsg-1, zErrmsg); } } sqlite3OsDlClose(pVfs, handle); sqlite3_free(zAltEntry); return SQLITE_ERROR; } sqlite3_free(zAltEntry); rc = xInit(db, &zErrmsg, &sqlite3Apis); if( rc ){ if( rc==SQLITE_OK_LOAD_PERMANENTLY ) return SQLITE_OK; if( pzErrMsg ){ *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg); } sqlite3_free(zErrmsg); sqlite3OsDlClose(pVfs, handle); return SQLITE_ERROR; } /* Append the new shared library handle to the db->aExtension array. */ aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1)); if( aHandle==0 ){ return SQLITE_NOMEM_BKPT; } if( db->nExtension>0 ){ memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension); } sqlite3DbFree(db, db->aExtension); db->aExtension = aHandle; db->aExtension[db->nExtension++] = handle; return SQLITE_OK; extension_not_found: if( pzErrMsg ){ nMsg += 300; *pzErrMsg = zErrmsg = sqlite3_malloc64(nMsg); if( zErrmsg ){ assert( nMsg<0x7fffffff ); /* zErrmsg would be NULL if not so */ sqlite3_snprintf((int)nMsg, zErrmsg, "unable to open shared library [%.*s]", SQLITE_MAX_PATHLEN, zFile); sqlite3OsDlError(pVfs, nMsg-1, zErrmsg); } } return SQLITE_ERROR; } SQLITE_API int sqlite3_load_extension( sqlite3 *db, /* Load the extension into this database connection */ const char *zFile, /* Name of the shared library containing extension */ const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ char **pzErrMsg /* Put error message here if not 0 */ ){ int rc; sqlite3_mutex_enter(db->mutex); rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Call this routine when the database connection is closing in order ** to clean up loaded extensions */ SQLITE_PRIVATE void sqlite3CloseExtensions(sqlite3 *db){ int i; assert( sqlite3_mutex_held(db->mutex) ); for(i=0; inExtension; i++){ sqlite3OsDlClose(db->pVfs, db->aExtension[i]); } sqlite3DbFree(db, db->aExtension); } /* ** Enable or disable extension loading. Extension loading is disabled by ** default so as not to open security holes in older applications. */ SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff){ sqlite3_mutex_enter(db->mutex); if( onoff ){ db->flags |= SQLITE_LoadExtension|SQLITE_LoadExtFunc; }else{ db->flags &= ~(u64)(SQLITE_LoadExtension|SQLITE_LoadExtFunc); } sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #endif /* !defined(SQLITE_OMIT_LOAD_EXTENSION) */ /* ** The following object holds the list of automatically loaded ** extensions. ** ** This list is shared across threads. The SQLITE_MUTEX_STATIC_MAIN ** mutex must be held while accessing this list. */ typedef struct sqlite3AutoExtList sqlite3AutoExtList; static SQLITE_WSD struct sqlite3AutoExtList { u32 nExt; /* Number of entries in aExt[] */ void (**aExt)(void); /* Pointers to the extension init functions */ } sqlite3Autoext = { 0, 0 }; /* The "wsdAutoext" macro will resolve to the autoextension ** state vector. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdStat can refer directly ** to the "sqlite3Autoext" state vector declared above. */ #ifdef SQLITE_OMIT_WSD # define wsdAutoextInit \ sqlite3AutoExtList *x = &GLOBAL(sqlite3AutoExtList,sqlite3Autoext) # define wsdAutoext x[0] #else # define wsdAutoextInit # define wsdAutoext sqlite3Autoext #endif /* ** Register a statically linked extension that is automatically ** loaded by every new database connection. */ SQLITE_API int sqlite3_auto_extension( void (*xInit)(void) ){ int rc = SQLITE_OK; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ){ return rc; }else #endif { u32 i; #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif wsdAutoextInit; sqlite3_mutex_enter(mutex); for(i=0; i=0; i--){ if( wsdAutoext.aExt[i]==xInit ){ wsdAutoext.nExt--; wsdAutoext.aExt[i] = wsdAutoext.aExt[wsdAutoext.nExt]; n++; break; } } sqlite3_mutex_leave(mutex); return n; } /* ** Reset the automatic extension loading mechanism. */ SQLITE_API void sqlite3_reset_auto_extension(void){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize()==SQLITE_OK ) #endif { #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif wsdAutoextInit; sqlite3_mutex_enter(mutex); sqlite3_free(wsdAutoext.aExt); wsdAutoext.aExt = 0; wsdAutoext.nExt = 0; sqlite3_mutex_leave(mutex); } } /* ** Load all automatic extensions. ** ** If anything goes wrong, set an error in the database connection. */ SQLITE_PRIVATE void sqlite3AutoLoadExtensions(sqlite3 *db){ u32 i; int go = 1; int rc; sqlite3_loadext_entry xInit; wsdAutoextInit; if( wsdAutoext.nExt==0 ){ /* Common case: early out without every having to acquire a mutex */ return; } for(i=0; go; i++){ char *zErrmsg; #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif #ifdef SQLITE_OMIT_LOAD_EXTENSION const sqlite3_api_routines *pThunk = 0; #else const sqlite3_api_routines *pThunk = &sqlite3Apis; #endif sqlite3_mutex_enter(mutex); if( i>=wsdAutoext.nExt ){ xInit = 0; go = 0; }else{ xInit = (sqlite3_loadext_entry)wsdAutoext.aExt[i]; } sqlite3_mutex_leave(mutex); zErrmsg = 0; if( xInit && (rc = xInit(db, &zErrmsg, pThunk))!=0 ){ sqlite3ErrorWithMsg(db, rc, "automatic extension loading failed: %s", zErrmsg); go = 0; } sqlite3_free(zErrmsg); } } /************** End of loadext.c *********************************************/ /************** Begin file pragma.c ******************************************/ /* ** 2003 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the PRAGMA command. */ /* #include "sqliteInt.h" */ #if !defined(SQLITE_ENABLE_LOCKING_STYLE) # if defined(__APPLE__) # define SQLITE_ENABLE_LOCKING_STYLE 1 # else # define SQLITE_ENABLE_LOCKING_STYLE 0 # endif #endif /*************************************************************************** ** The "pragma.h" include file is an automatically generated file that ** that includes the PragType_XXXX macro definitions and the aPragmaName[] ** object. This ensures that the aPragmaName[] table is arranged in ** lexicographical order to facility a binary search of the pragma name. ** Do not edit pragma.h directly. Edit and rerun the script in at ** ../tool/mkpragmatab.tcl. */ /************** Include pragma.h in the middle of pragma.c *******************/ /************** Begin file pragma.h ******************************************/ /* DO NOT EDIT! ** This file is automatically generated by the script at ** ../tool/mkpragmatab.tcl. To update the set of pragmas, edit ** that script and rerun it. */ /* The various pragma types */ #define PragTyp_ACTIVATE_EXTENSIONS 0 #define PragTyp_ANALYSIS_LIMIT 1 #define PragTyp_HEADER_VALUE 2 #define PragTyp_AUTO_VACUUM 3 #define PragTyp_FLAG 4 #define PragTyp_BUSY_TIMEOUT 5 #define PragTyp_CACHE_SIZE 6 #define PragTyp_CACHE_SPILL 7 #define PragTyp_CASE_SENSITIVE_LIKE 8 #define PragTyp_COLLATION_LIST 9 #define PragTyp_COMPILE_OPTIONS 10 #define PragTyp_DATA_STORE_DIRECTORY 11 #define PragTyp_DATABASE_LIST 12 #define PragTyp_DEFAULT_CACHE_SIZE 13 #define PragTyp_ENCODING 14 #define PragTyp_FOREIGN_KEY_CHECK 15 #define PragTyp_FOREIGN_KEY_LIST 16 #define PragTyp_FUNCTION_LIST 17 #define PragTyp_HARD_HEAP_LIMIT 18 #define PragTyp_INCREMENTAL_VACUUM 19 #define PragTyp_INDEX_INFO 20 #define PragTyp_INDEX_LIST 21 #define PragTyp_INTEGRITY_CHECK 22 #define PragTyp_JOURNAL_MODE 23 #define PragTyp_JOURNAL_SIZE_LIMIT 24 #define PragTyp_LOCK_PROXY_FILE 25 #define PragTyp_LOCKING_MODE 26 #define PragTyp_PAGE_COUNT 27 #define PragTyp_MMAP_SIZE 28 #define PragTyp_MODULE_LIST 29 #define PragTyp_OPTIMIZE 30 #define PragTyp_PAGE_SIZE 31 #define PragTyp_PRAGMA_LIST 32 #define PragTyp_SECURE_DELETE 33 #define PragTyp_SHRINK_MEMORY 34 #define PragTyp_SOFT_HEAP_LIMIT 35 #define PragTyp_SYNCHRONOUS 36 #define PragTyp_TABLE_INFO 37 #define PragTyp_TABLE_LIST 38 #define PragTyp_TEMP_STORE 39 #define PragTyp_TEMP_STORE_DIRECTORY 40 #define PragTyp_THREADS 41 #define PragTyp_WAL_AUTOCHECKPOINT 42 #define PragTyp_WAL_CHECKPOINT 43 #define PragTyp_LOCK_STATUS 44 #define PragTyp_STATS 45 /* Property flags associated with various pragma. */ #define PragFlg_NeedSchema 0x01 /* Force schema load before running */ #define PragFlg_NoColumns 0x02 /* OP_ResultRow called with zero columns */ #define PragFlg_NoColumns1 0x04 /* zero columns if RHS argument is present */ #define PragFlg_ReadOnly 0x08 /* Read-only HEADER_VALUE */ #define PragFlg_Result0 0x10 /* Acts as query when no argument */ #define PragFlg_Result1 0x20 /* Acts as query when has one argument */ #define PragFlg_SchemaOpt 0x40 /* Schema restricts name search if present */ #define PragFlg_SchemaReq 0x80 /* Schema required - "main" is default */ /* Names of columns for pragmas that return multi-column result ** or that return single-column results where the name of the ** result column is different from the name of the pragma */ static const char *const pragCName[] = { /* 0 */ "id", /* Used by: foreign_key_list */ /* 1 */ "seq", /* 2 */ "table", /* 3 */ "from", /* 4 */ "to", /* 5 */ "on_update", /* 6 */ "on_delete", /* 7 */ "match", /* 8 */ "cid", /* Used by: table_xinfo */ /* 9 */ "name", /* 10 */ "type", /* 11 */ "notnull", /* 12 */ "dflt_value", /* 13 */ "pk", /* 14 */ "hidden", /* table_info reuses 8 */ /* 15 */ "schema", /* Used by: table_list */ /* 16 */ "name", /* 17 */ "type", /* 18 */ "ncol", /* 19 */ "wr", /* 20 */ "strict", /* 21 */ "seqno", /* Used by: index_xinfo */ /* 22 */ "cid", /* 23 */ "name", /* 24 */ "desc", /* 25 */ "coll", /* 26 */ "key", /* 27 */ "name", /* Used by: function_list */ /* 28 */ "builtin", /* 29 */ "type", /* 30 */ "enc", /* 31 */ "narg", /* 32 */ "flags", /* 33 */ "tbl", /* Used by: stats */ /* 34 */ "idx", /* 35 */ "wdth", /* 36 */ "hght", /* 37 */ "flgs", /* 38 */ "seq", /* Used by: index_list */ /* 39 */ "name", /* 40 */ "unique", /* 41 */ "origin", /* 42 */ "partial", /* 43 */ "table", /* Used by: foreign_key_check */ /* 44 */ "rowid", /* 45 */ "parent", /* 46 */ "fkid", /* index_info reuses 21 */ /* 47 */ "seq", /* Used by: database_list */ /* 48 */ "name", /* 49 */ "file", /* 50 */ "busy", /* Used by: wal_checkpoint */ /* 51 */ "log", /* 52 */ "checkpointed", /* collation_list reuses 38 */ /* 53 */ "database", /* Used by: lock_status */ /* 54 */ "status", /* 55 */ "cache_size", /* Used by: default_cache_size */ /* module_list pragma_list reuses 9 */ /* 56 */ "timeout", /* Used by: busy_timeout */ }; /* Definitions of all built-in pragmas */ typedef struct PragmaName { const char *const zName; /* Name of pragma */ u8 ePragTyp; /* PragTyp_XXX value */ u8 mPragFlg; /* Zero or more PragFlg_XXX values */ u8 iPragCName; /* Start of column names in pragCName[] */ u8 nPragCName; /* Num of col names. 0 means use pragma name */ u64 iArg; /* Extra argument */ } PragmaName; static const PragmaName aPragmaName[] = { #if defined(SQLITE_ENABLE_CEROD) {/* zName: */ "activate_extensions", /* ePragTyp: */ PragTyp_ACTIVATE_EXTENSIONS, /* ePragFlg: */ 0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif {/* zName: */ "analysis_limit", /* ePragTyp: */ PragTyp_ANALYSIS_LIMIT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "application_id", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_NoColumns1|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_APPLICATION_ID }, #endif #if !defined(SQLITE_OMIT_AUTOVACUUM) {/* zName: */ "auto_vacuum", /* ePragTyp: */ PragTyp_AUTO_VACUUM, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_AUTOMATIC_INDEX) {/* zName: */ "automatic_index", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_AutoIndex }, #endif #endif {/* zName: */ "busy_timeout", /* ePragTyp: */ PragTyp_BUSY_TIMEOUT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 56, 1, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "cache_size", /* ePragTyp: */ PragTyp_CACHE_SIZE, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "cache_spill", /* ePragTyp: */ PragTyp_CACHE_SPILL, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA) {/* zName: */ "case_sensitive_like", /* ePragTyp: */ PragTyp_CASE_SENSITIVE_LIKE, /* ePragFlg: */ PragFlg_NoColumns, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif {/* zName: */ "cell_size_check", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_CellSizeCk }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "checkpoint_fullfsync", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_CkptFullFSync }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "collation_list", /* ePragTyp: */ PragTyp_COLLATION_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 38, 2, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_COMPILEOPTION_DIAGS) {/* zName: */ "compile_options", /* ePragTyp: */ PragTyp_COMPILE_OPTIONS, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "count_changes", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_CountRows }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && SQLITE_OS_WIN {/* zName: */ "data_store_directory", /* ePragTyp: */ PragTyp_DATA_STORE_DIRECTORY, /* ePragFlg: */ PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "data_version", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_ReadOnly|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_DATA_VERSION }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "database_list", /* ePragTyp: */ PragTyp_DATABASE_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0, /* ColNames: */ 47, 3, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && !defined(SQLITE_OMIT_DEPRECATED) {/* zName: */ "default_cache_size", /* ePragTyp: */ PragTyp_DEFAULT_CACHE_SIZE, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 55, 1, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) {/* zName: */ "defer_foreign_keys", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_DeferFKs }, #endif #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "empty_result_callbacks", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_NullCallback }, #endif #if !defined(SQLITE_OMIT_UTF16) {/* zName: */ "encoding", /* ePragTyp: */ PragTyp_ENCODING, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) {/* zName: */ "foreign_key_check", /* ePragTyp: */ PragTyp_FOREIGN_KEY_CHECK, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 43, 4, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FOREIGN_KEY) {/* zName: */ "foreign_key_list", /* ePragTyp: */ PragTyp_FOREIGN_KEY_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 0, 8, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) {/* zName: */ "foreign_keys", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ForeignKeys }, #endif #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "freelist_count", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_ReadOnly|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_FREE_PAGE_COUNT }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "full_column_names", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_FullColNames }, {/* zName: */ "fullfsync", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_FullFSync }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) #if !defined(SQLITE_OMIT_INTROSPECTION_PRAGMAS) {/* zName: */ "function_list", /* ePragTyp: */ PragTyp_FUNCTION_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 27, 6, /* iArg: */ 0 }, #endif #endif {/* zName: */ "hard_heap_limit", /* ePragTyp: */ PragTyp_HARD_HEAP_LIMIT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_CHECK) {/* zName: */ "ignore_check_constraints", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_IgnoreChecks }, #endif #endif #if !defined(SQLITE_OMIT_AUTOVACUUM) {/* zName: */ "incremental_vacuum", /* ePragTyp: */ PragTyp_INCREMENTAL_VACUUM, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_NoColumns, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "index_info", /* ePragTyp: */ PragTyp_INDEX_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 21, 3, /* iArg: */ 0 }, {/* zName: */ "index_list", /* ePragTyp: */ PragTyp_INDEX_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 38, 5, /* iArg: */ 0 }, {/* zName: */ "index_xinfo", /* ePragTyp: */ PragTyp_INDEX_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 21, 6, /* iArg: */ 1 }, #endif #if !defined(SQLITE_OMIT_INTEGRITY_CHECK) {/* zName: */ "integrity_check", /* ePragTyp: */ PragTyp_INTEGRITY_CHECK, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "journal_mode", /* ePragTyp: */ PragTyp_JOURNAL_MODE, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "journal_size_limit", /* ePragTyp: */ PragTyp_JOURNAL_SIZE_LIMIT, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "legacy_alter_table", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_LegacyAlter }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && SQLITE_ENABLE_LOCKING_STYLE {/* zName: */ "lock_proxy_file", /* ePragTyp: */ PragTyp_LOCK_PROXY_FILE, /* ePragFlg: */ PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) {/* zName: */ "lock_status", /* ePragTyp: */ PragTyp_LOCK_STATUS, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 53, 2, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "locking_mode", /* ePragTyp: */ PragTyp_LOCKING_MODE, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "max_page_count", /* ePragTyp: */ PragTyp_PAGE_COUNT, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "mmap_size", /* ePragTyp: */ PragTyp_MMAP_SIZE, /* ePragFlg: */ 0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) #if !defined(SQLITE_OMIT_VIRTUALTABLE) #if !defined(SQLITE_OMIT_INTROSPECTION_PRAGMAS) {/* zName: */ "module_list", /* ePragTyp: */ PragTyp_MODULE_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 9, 1, /* iArg: */ 0 }, #endif #endif #endif {/* zName: */ "optimize", /* ePragTyp: */ PragTyp_OPTIMIZE, /* ePragFlg: */ PragFlg_Result1|PragFlg_NeedSchema, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "page_count", /* ePragTyp: */ PragTyp_PAGE_COUNT, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "page_size", /* ePragTyp: */ PragTyp_PAGE_SIZE, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if defined(SQLITE_DEBUG) {/* zName: */ "parser_trace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ParserTrace }, #endif #endif #if !defined(SQLITE_OMIT_INTROSPECTION_PRAGMAS) {/* zName: */ "pragma_list", /* ePragTyp: */ PragTyp_PRAGMA_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 9, 1, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "query_only", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_QueryOnly }, #endif #if !defined(SQLITE_OMIT_INTEGRITY_CHECK) {/* zName: */ "quick_check", /* ePragTyp: */ PragTyp_INTEGRITY_CHECK, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "read_uncommitted", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ReadUncommit }, {/* zName: */ "recursive_triggers", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_RecTriggers }, {/* zName: */ "reverse_unordered_selects", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ReverseOrder }, #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "schema_version", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_NoColumns1|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_SCHEMA_VERSION }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "secure_delete", /* ePragTyp: */ PragTyp_SECURE_DELETE, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "short_column_names", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ShortColNames }, #endif {/* zName: */ "shrink_memory", /* ePragTyp: */ PragTyp_SHRINK_MEMORY, /* ePragFlg: */ PragFlg_NoColumns, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "soft_heap_limit", /* ePragTyp: */ PragTyp_SOFT_HEAP_LIMIT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if defined(SQLITE_DEBUG) {/* zName: */ "sql_trace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_SqlTrace }, #endif #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) && defined(SQLITE_DEBUG) {/* zName: */ "stats", /* ePragTyp: */ PragTyp_STATS, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 33, 5, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "synchronous", /* ePragTyp: */ PragTyp_SYNCHRONOUS, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "table_info", /* ePragTyp: */ PragTyp_TABLE_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 8, 6, /* iArg: */ 0 }, {/* zName: */ "table_list", /* ePragTyp: */ PragTyp_TABLE_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1, /* ColNames: */ 15, 6, /* iArg: */ 0 }, {/* zName: */ "table_xinfo", /* ePragTyp: */ PragTyp_TABLE_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 8, 7, /* iArg: */ 1 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "temp_store", /* ePragTyp: */ PragTyp_TEMP_STORE, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "temp_store_directory", /* ePragTyp: */ PragTyp_TEMP_STORE_DIRECTORY, /* ePragFlg: */ PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif {/* zName: */ "threads", /* ePragTyp: */ PragTyp_THREADS, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "trusted_schema", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_TrustedSchema }, #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "user_version", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_NoColumns1|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_USER_VERSION }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if defined(SQLITE_DEBUG) {/* zName: */ "vdbe_addoptrace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeAddopTrace }, {/* zName: */ "vdbe_debug", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_SqlTrace|SQLITE_VdbeListing|SQLITE_VdbeTrace }, {/* zName: */ "vdbe_eqp", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeEQP }, {/* zName: */ "vdbe_listing", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeListing }, {/* zName: */ "vdbe_trace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeTrace }, #endif #endif #if !defined(SQLITE_OMIT_WAL) {/* zName: */ "wal_autocheckpoint", /* ePragTyp: */ PragTyp_WAL_AUTOCHECKPOINT, /* ePragFlg: */ 0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "wal_checkpoint", /* ePragTyp: */ PragTyp_WAL_CHECKPOINT, /* ePragFlg: */ PragFlg_NeedSchema, /* ColNames: */ 50, 3, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "writable_schema", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_WriteSchema|SQLITE_NoSchemaError }, #endif }; /* Number of pragmas: 68 on by default, 78 total. */ /************** End of pragma.h **********************************************/ /************** Continuing where we left off in pragma.c *********************/ /* ** Interpret the given string as a safety level. Return 0 for OFF, ** 1 for ON or NORMAL, 2 for FULL, and 3 for EXTRA. Return 1 for an empty or ** unrecognized string argument. The FULL and EXTRA option is disallowed ** if the omitFull parameter it 1. ** ** Note that the values returned are one less that the values that ** should be passed into sqlite3BtreeSetSafetyLevel(). The is done ** to support legacy SQL code. The safety level used to be boolean ** and older scripts may have used numbers 0 for OFF and 1 for ON. */ static u8 getSafetyLevel(const char *z, int omitFull, u8 dflt){ /* 123456789 123456789 123 */ static const char zText[] = "onoffalseyestruextrafull"; static const u8 iOffset[] = {0, 1, 2, 4, 9, 12, 15, 20}; static const u8 iLength[] = {2, 2, 3, 5, 3, 4, 5, 4}; static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 3, 2}; /* on no off false yes true extra full */ int i, n; if( sqlite3Isdigit(*z) ){ return (u8)sqlite3Atoi(z); } n = sqlite3Strlen30(z); for(i=0; i=0&&i<=2)?i:0); } #endif /* ifndef SQLITE_OMIT_AUTOVACUUM */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** Interpret the given string as a temp db location. Return 1 for file ** backed temporary databases, 2 for the Red-Black tree in memory database ** and 0 to use the compile-time default. */ static int getTempStore(const char *z){ if( z[0]>='0' && z[0]<='2' ){ return z[0] - '0'; }else if( sqlite3StrICmp(z, "file")==0 ){ return 1; }else if( sqlite3StrICmp(z, "memory")==0 ){ return 2; }else{ return 0; } } #endif /* SQLITE_PAGER_PRAGMAS */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** Invalidate temp storage, either when the temp storage is changed ** from default, or when 'file' and the temp_store_directory has changed */ static int invalidateTempStorage(Parse *pParse){ sqlite3 *db = pParse->db; if( db->aDb[1].pBt!=0 ){ if( !db->autoCommit || sqlite3BtreeTxnState(db->aDb[1].pBt)!=SQLITE_TXN_NONE ){ sqlite3ErrorMsg(pParse, "temporary storage cannot be changed " "from within a transaction"); return SQLITE_ERROR; } sqlite3BtreeClose(db->aDb[1].pBt); db->aDb[1].pBt = 0; sqlite3ResetAllSchemasOfConnection(db); } return SQLITE_OK; } #endif /* SQLITE_PAGER_PRAGMAS */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** If the TEMP database is open, close it and mark the database schema ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE ** or DEFAULT_TEMP_STORE pragmas. */ static int changeTempStorage(Parse *pParse, const char *zStorageType){ int ts = getTempStore(zStorageType); sqlite3 *db = pParse->db; if( db->temp_store==ts ) return SQLITE_OK; if( invalidateTempStorage( pParse ) != SQLITE_OK ){ return SQLITE_ERROR; } db->temp_store = (u8)ts; return SQLITE_OK; } #endif /* SQLITE_PAGER_PRAGMAS */ /* ** Set result column names for a pragma. */ static void setPragmaResultColumnNames( Vdbe *v, /* The query under construction */ const PragmaName *pPragma /* The pragma */ ){ u8 n = pPragma->nPragCName; sqlite3VdbeSetNumCols(v, n==0 ? 1 : n); if( n==0 ){ sqlite3VdbeSetColName(v, 0, COLNAME_NAME, pPragma->zName, SQLITE_STATIC); }else{ int i, j; for(i=0, j=pPragma->iPragCName; iautoCommit ){ Db *pDb = db->aDb; int n = db->nDb; assert( SQLITE_FullFSync==PAGER_FULLFSYNC ); assert( SQLITE_CkptFullFSync==PAGER_CKPT_FULLFSYNC ); assert( SQLITE_CacheSpill==PAGER_CACHESPILL ); assert( (PAGER_FULLFSYNC | PAGER_CKPT_FULLFSYNC | PAGER_CACHESPILL) == PAGER_FLAGS_MASK ); assert( (pDb->safety_level & PAGER_SYNCHRONOUS_MASK)==pDb->safety_level ); while( (n--) > 0 ){ if( pDb->pBt ){ sqlite3BtreeSetPagerFlags(pDb->pBt, pDb->safety_level | (db->flags & PAGER_FLAGS_MASK) ); } pDb++; } } } #else # define setAllPagerFlags(X) /* no-op */ #endif /* ** Return a human-readable name for a constraint resolution action. */ #ifndef SQLITE_OMIT_FOREIGN_KEY static const char *actionName(u8 action){ const char *zName; switch( action ){ case OE_SetNull: zName = "SET NULL"; break; case OE_SetDflt: zName = "SET DEFAULT"; break; case OE_Cascade: zName = "CASCADE"; break; case OE_Restrict: zName = "RESTRICT"; break; default: zName = "NO ACTION"; assert( action==OE_None ); break; } return zName; } #endif /* ** Parameter eMode must be one of the PAGER_JOURNALMODE_XXX constants ** defined in pager.h. This function returns the associated lowercase ** journal-mode name. */ SQLITE_PRIVATE const char *sqlite3JournalModename(int eMode){ static char * const azModeName[] = { "delete", "persist", "off", "truncate", "memory" #ifndef SQLITE_OMIT_WAL , "wal" #endif }; assert( PAGER_JOURNALMODE_DELETE==0 ); assert( PAGER_JOURNALMODE_PERSIST==1 ); assert( PAGER_JOURNALMODE_OFF==2 ); assert( PAGER_JOURNALMODE_TRUNCATE==3 ); assert( PAGER_JOURNALMODE_MEMORY==4 ); assert( PAGER_JOURNALMODE_WAL==5 ); assert( eMode>=0 && eMode<=ArraySize(azModeName) ); if( eMode==ArraySize(azModeName) ) return 0; return azModeName[eMode]; } /* ** Locate a pragma in the aPragmaName[] array. */ static const PragmaName *pragmaLocate(const char *zName){ int upr, lwr, mid = 0, rc; lwr = 0; upr = ArraySize(aPragmaName)-1; while( lwr<=upr ){ mid = (lwr+upr)/2; rc = sqlite3_stricmp(zName, aPragmaName[mid].zName); if( rc==0 ) break; if( rc<0 ){ upr = mid - 1; }else{ lwr = mid + 1; } } return lwr>upr ? 0 : &aPragmaName[mid]; } /* ** Create zero or more entries in the output for the SQL functions ** defined by FuncDef p. */ static void pragmaFunclistLine( Vdbe *v, /* The prepared statement being created */ FuncDef *p, /* A particular function definition */ int isBuiltin, /* True if this is a built-in function */ int showInternFuncs /* True if showing internal functions */ ){ for(; p; p=p->pNext){ const char *zType; static const u32 mask = SQLITE_DETERMINISTIC | SQLITE_DIRECTONLY | SQLITE_SUBTYPE | SQLITE_INNOCUOUS | SQLITE_FUNC_INTERNAL ; static const char *azEnc[] = { 0, "utf8", "utf16le", "utf16be" }; assert( SQLITE_FUNC_ENCMASK==0x3 ); assert( strcmp(azEnc[SQLITE_UTF8],"utf8")==0 ); assert( strcmp(azEnc[SQLITE_UTF16LE],"utf16le")==0 ); assert( strcmp(azEnc[SQLITE_UTF16BE],"utf16be")==0 ); if( p->xSFunc==0 ) continue; if( (p->funcFlags & SQLITE_FUNC_INTERNAL)!=0 && showInternFuncs==0 ){ continue; } if( p->xValue!=0 ){ zType = "w"; }else if( p->xFinalize!=0 ){ zType = "a"; }else{ zType = "s"; } sqlite3VdbeMultiLoad(v, 1, "sissii", p->zName, isBuiltin, zType, azEnc[p->funcFlags&SQLITE_FUNC_ENCMASK], p->nArg, (p->funcFlags & mask) ^ SQLITE_INNOCUOUS ); } } /* ** Helper subroutine for PRAGMA integrity_check: ** ** Generate code to output a single-column result row with a value of the ** string held in register 3. Decrement the result count in register 1 ** and halt if the maximum number of result rows have been issued. */ static int integrityCheckResultRow(Vdbe *v){ int addr; sqlite3VdbeAddOp2(v, OP_ResultRow, 3, 1); addr = sqlite3VdbeAddOp3(v, OP_IfPos, 1, sqlite3VdbeCurrentAddr(v)+2, 1); VdbeCoverage(v); sqlite3VdbeAddOp0(v, OP_Halt); return addr; } /* ** Process a pragma statement. ** ** Pragmas are of this form: ** ** PRAGMA [schema.]id [= value] ** ** The identifier might also be a string. The value is a string, and ** identifier, or a number. If minusFlag is true, then the value is ** a number that was preceded by a minus sign. ** ** If the left side is "database.id" then pId1 is the database name ** and pId2 is the id. If the left side is just "id" then pId1 is the ** id and pId2 is any empty string. */ SQLITE_PRIVATE void sqlite3Pragma( Parse *pParse, Token *pId1, /* First part of [schema.]id field */ Token *pId2, /* Second part of [schema.]id field, or NULL */ Token *pValue, /* Token for , or NULL */ int minusFlag /* True if a '-' sign preceded */ ){ char *zLeft = 0; /* Nul-terminated UTF-8 string */ char *zRight = 0; /* Nul-terminated UTF-8 string , or NULL */ const char *zDb = 0; /* The database name */ Token *pId; /* Pointer to token */ char *aFcntl[4]; /* Argument to SQLITE_FCNTL_PRAGMA */ int iDb; /* Database index for */ int rc; /* return value form SQLITE_FCNTL_PRAGMA */ sqlite3 *db = pParse->db; /* The database connection */ Db *pDb; /* The specific database being pragmaed */ Vdbe *v = sqlite3GetVdbe(pParse); /* Prepared statement */ const PragmaName *pPragma; /* The pragma */ if( v==0 ) return; sqlite3VdbeRunOnlyOnce(v); pParse->nMem = 2; /* Interpret the [schema.] part of the pragma statement. iDb is the ** index of the database this pragma is being applied to in db.aDb[]. */ iDb = sqlite3TwoPartName(pParse, pId1, pId2, &pId); if( iDb<0 ) return; pDb = &db->aDb[iDb]; /* If the temp database has been explicitly named as part of the ** pragma, make sure it is open. */ if( iDb==1 && sqlite3OpenTempDatabase(pParse) ){ return; } zLeft = sqlite3NameFromToken(db, pId); if( !zLeft ) return; if( minusFlag ){ zRight = sqlite3MPrintf(db, "-%T", pValue); }else{ zRight = sqlite3NameFromToken(db, pValue); } assert( pId2 ); zDb = pId2->n>0 ? pDb->zDbSName : 0; if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){ goto pragma_out; } /* Send an SQLITE_FCNTL_PRAGMA file-control to the underlying VFS ** connection. If it returns SQLITE_OK, then assume that the VFS ** handled the pragma and generate a no-op prepared statement. ** ** IMPLEMENTATION-OF: R-12238-55120 Whenever a PRAGMA statement is parsed, ** an SQLITE_FCNTL_PRAGMA file control is sent to the open sqlite3_file ** object corresponding to the database file to which the pragma ** statement refers. ** ** IMPLEMENTATION-OF: R-29875-31678 The argument to the SQLITE_FCNTL_PRAGMA ** file control is an array of pointers to strings (char**) in which the ** second element of the array is the name of the pragma and the third ** element is the argument to the pragma or NULL if the pragma has no ** argument. */ aFcntl[0] = 0; aFcntl[1] = zLeft; aFcntl[2] = zRight; aFcntl[3] = 0; db->busyHandler.nBusy = 0; rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_PRAGMA, (void*)aFcntl); if( rc==SQLITE_OK ){ sqlite3VdbeSetNumCols(v, 1); sqlite3VdbeSetColName(v, 0, COLNAME_NAME, aFcntl[0], SQLITE_TRANSIENT); returnSingleText(v, aFcntl[0]); sqlite3_free(aFcntl[0]); goto pragma_out; } if( rc!=SQLITE_NOTFOUND ){ if( aFcntl[0] ){ sqlite3ErrorMsg(pParse, "%s", aFcntl[0]); sqlite3_free(aFcntl[0]); } pParse->nErr++; pParse->rc = rc; goto pragma_out; } /* Locate the pragma in the lookup table */ pPragma = pragmaLocate(zLeft); if( pPragma==0 ){ /* IMP: R-43042-22504 No error messages are generated if an ** unknown pragma is issued. */ goto pragma_out; } /* Make sure the database schema is loaded if the pragma requires that */ if( (pPragma->mPragFlg & PragFlg_NeedSchema)!=0 ){ if( sqlite3ReadSchema(pParse) ) goto pragma_out; } /* Register the result column names for pragmas that return results */ if( (pPragma->mPragFlg & PragFlg_NoColumns)==0 && ((pPragma->mPragFlg & PragFlg_NoColumns1)==0 || zRight==0) ){ setPragmaResultColumnNames(v, pPragma); } /* Jump to the appropriate pragma handler */ switch( pPragma->ePragTyp ){ #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && !defined(SQLITE_OMIT_DEPRECATED) /* ** PRAGMA [schema.]default_cache_size ** PRAGMA [schema.]default_cache_size=N ** ** The first form reports the current persistent setting for the ** page cache size. The value returned is the maximum number of ** pages in the page cache. The second form sets both the current ** page cache size value and the persistent page cache size value ** stored in the database file. ** ** Older versions of SQLite would set the default cache size to a ** negative number to indicate synchronous=OFF. These days, synchronous ** is always on by default regardless of the sign of the default cache ** size. But continue to take the absolute value of the default cache ** size of historical compatibility. */ case PragTyp_DEFAULT_CACHE_SIZE: { static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList getCacheSize[] = { { OP_Transaction, 0, 0, 0}, /* 0 */ { OP_ReadCookie, 0, 1, BTREE_DEFAULT_CACHE_SIZE}, /* 1 */ { OP_IfPos, 1, 8, 0}, { OP_Integer, 0, 2, 0}, { OP_Subtract, 1, 2, 1}, { OP_IfPos, 1, 8, 0}, { OP_Integer, 0, 1, 0}, /* 6 */ { OP_Noop, 0, 0, 0}, { OP_ResultRow, 1, 1, 0}, }; VdbeOp *aOp; sqlite3VdbeUsesBtree(v, iDb); if( !zRight ){ pParse->nMem += 2; sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(getCacheSize)); aOp = sqlite3VdbeAddOpList(v, ArraySize(getCacheSize), getCacheSize, iLn); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[6].p1 = SQLITE_DEFAULT_CACHE_SIZE; }else{ int size = sqlite3AbsInt32(sqlite3Atoi(zRight)); sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_DEFAULT_CACHE_SIZE, size); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pDb->pSchema->cache_size = size; sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); } break; } #endif /* !SQLITE_OMIT_PAGER_PRAGMAS && !SQLITE_OMIT_DEPRECATED */ #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) /* ** PRAGMA [schema.]page_size ** PRAGMA [schema.]page_size=N ** ** The first form reports the current setting for the ** database page size in bytes. The second form sets the ** database page size value. The value can only be set if ** the database has not yet been created. */ case PragTyp_PAGE_SIZE: { Btree *pBt = pDb->pBt; assert( pBt!=0 ); if( !zRight ){ int size = ALWAYS(pBt) ? sqlite3BtreeGetPageSize(pBt) : 0; returnSingleInt(v, size); }else{ /* Malloc may fail when setting the page-size, as there is an internal ** buffer that the pager module resizes using sqlite3_realloc(). */ db->nextPagesize = sqlite3Atoi(zRight); if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize,0,0) ){ sqlite3OomFault(db); } } break; } /* ** PRAGMA [schema.]secure_delete ** PRAGMA [schema.]secure_delete=ON/OFF/FAST ** ** The first form reports the current setting for the ** secure_delete flag. The second form changes the secure_delete ** flag setting and reports the new value. */ case PragTyp_SECURE_DELETE: { Btree *pBt = pDb->pBt; int b = -1; assert( pBt!=0 ); if( zRight ){ if( sqlite3_stricmp(zRight, "fast")==0 ){ b = 2; }else{ b = sqlite3GetBoolean(zRight, 0); } } if( pId2->n==0 && b>=0 ){ int ii; for(ii=0; iinDb; ii++){ sqlite3BtreeSecureDelete(db->aDb[ii].pBt, b); } } b = sqlite3BtreeSecureDelete(pBt, b); returnSingleInt(v, b); break; } /* ** PRAGMA [schema.]max_page_count ** PRAGMA [schema.]max_page_count=N ** ** The first form reports the current setting for the ** maximum number of pages in the database file. The ** second form attempts to change this setting. Both ** forms return the current setting. ** ** The absolute value of N is used. This is undocumented and might ** change. The only purpose is to provide an easy way to test ** the sqlite3AbsInt32() function. ** ** PRAGMA [schema.]page_count ** ** Return the number of pages in the specified database. */ case PragTyp_PAGE_COUNT: { int iReg; i64 x = 0; sqlite3CodeVerifySchema(pParse, iDb); iReg = ++pParse->nMem; if( sqlite3Tolower(zLeft[0])=='p' ){ sqlite3VdbeAddOp2(v, OP_Pagecount, iDb, iReg); }else{ if( zRight && sqlite3DecOrHexToI64(zRight,&x)==0 ){ if( x<0 ) x = 0; else if( x>0xfffffffe ) x = 0xfffffffe; }else{ x = 0; } sqlite3VdbeAddOp3(v, OP_MaxPgcnt, iDb, iReg, (int)x); } sqlite3VdbeAddOp2(v, OP_ResultRow, iReg, 1); break; } /* ** PRAGMA [schema.]locking_mode ** PRAGMA [schema.]locking_mode = (normal|exclusive) */ case PragTyp_LOCKING_MODE: { const char *zRet = "normal"; int eMode = getLockingMode(zRight); if( pId2->n==0 && eMode==PAGER_LOCKINGMODE_QUERY ){ /* Simple "PRAGMA locking_mode;" statement. This is a query for ** the current default locking mode (which may be different to ** the locking-mode of the main database). */ eMode = db->dfltLockMode; }else{ Pager *pPager; if( pId2->n==0 ){ /* This indicates that no database name was specified as part ** of the PRAGMA command. In this case the locking-mode must be ** set on all attached databases, as well as the main db file. ** ** Also, the sqlite3.dfltLockMode variable is set so that ** any subsequently attached databases also use the specified ** locking mode. */ int ii; assert(pDb==&db->aDb[0]); for(ii=2; iinDb; ii++){ pPager = sqlite3BtreePager(db->aDb[ii].pBt); sqlite3PagerLockingMode(pPager, eMode); } db->dfltLockMode = (u8)eMode; } pPager = sqlite3BtreePager(pDb->pBt); eMode = sqlite3PagerLockingMode(pPager, eMode); } assert( eMode==PAGER_LOCKINGMODE_NORMAL || eMode==PAGER_LOCKINGMODE_EXCLUSIVE ); if( eMode==PAGER_LOCKINGMODE_EXCLUSIVE ){ zRet = "exclusive"; } returnSingleText(v, zRet); break; } /* ** PRAGMA [schema.]journal_mode ** PRAGMA [schema.]journal_mode = ** (delete|persist|off|truncate|memory|wal|off) */ case PragTyp_JOURNAL_MODE: { int eMode; /* One of the PAGER_JOURNALMODE_XXX symbols */ int ii; /* Loop counter */ if( zRight==0 ){ /* If there is no "=MODE" part of the pragma, do a query for the ** current mode */ eMode = PAGER_JOURNALMODE_QUERY; }else{ const char *zMode; int n = sqlite3Strlen30(zRight); for(eMode=0; (zMode = sqlite3JournalModename(eMode))!=0; eMode++){ if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break; } if( !zMode ){ /* If the "=MODE" part does not match any known journal mode, ** then do a query */ eMode = PAGER_JOURNALMODE_QUERY; } if( eMode==PAGER_JOURNALMODE_OFF && (db->flags & SQLITE_Defensive)!=0 ){ /* Do not allow journal-mode "OFF" in defensive since the database ** can become corrupted using ordinary SQL when the journal is off */ eMode = PAGER_JOURNALMODE_QUERY; } } if( eMode==PAGER_JOURNALMODE_QUERY && pId2->n==0 ){ /* Convert "PRAGMA journal_mode" into "PRAGMA main.journal_mode" */ iDb = 0; pId2->n = 1; } for(ii=db->nDb-1; ii>=0; ii--){ if( db->aDb[ii].pBt && (ii==iDb || pId2->n==0) ){ sqlite3VdbeUsesBtree(v, ii); sqlite3VdbeAddOp3(v, OP_JournalMode, ii, 1, eMode); } } sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); break; } /* ** PRAGMA [schema.]journal_size_limit ** PRAGMA [schema.]journal_size_limit=N ** ** Get or set the size limit on rollback journal files. */ case PragTyp_JOURNAL_SIZE_LIMIT: { Pager *pPager = sqlite3BtreePager(pDb->pBt); i64 iLimit = -2; if( zRight ){ sqlite3DecOrHexToI64(zRight, &iLimit); if( iLimit<-1 ) iLimit = -1; } iLimit = sqlite3PagerJournalSizeLimit(pPager, iLimit); returnSingleInt(v, iLimit); break; } #endif /* SQLITE_OMIT_PAGER_PRAGMAS */ /* ** PRAGMA [schema.]auto_vacuum ** PRAGMA [schema.]auto_vacuum=N ** ** Get or set the value of the database 'auto-vacuum' parameter. ** The value is one of: 0 NONE 1 FULL 2 INCREMENTAL */ #ifndef SQLITE_OMIT_AUTOVACUUM case PragTyp_AUTO_VACUUM: { Btree *pBt = pDb->pBt; assert( pBt!=0 ); if( !zRight ){ returnSingleInt(v, sqlite3BtreeGetAutoVacuum(pBt)); }else{ int eAuto = getAutoVacuum(zRight); assert( eAuto>=0 && eAuto<=2 ); db->nextAutovac = (u8)eAuto; /* Call SetAutoVacuum() to set initialize the internal auto and ** incr-vacuum flags. This is required in case this connection ** creates the database file. It is important that it is created ** as an auto-vacuum capable db. */ rc = sqlite3BtreeSetAutoVacuum(pBt, eAuto); if( rc==SQLITE_OK && (eAuto==1 || eAuto==2) ){ /* When setting the auto_vacuum mode to either "full" or ** "incremental", write the value of meta[6] in the database ** file. Before writing to meta[6], check that meta[3] indicates ** that this really is an auto-vacuum capable database. */ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList setMeta6[] = { { OP_Transaction, 0, 1, 0}, /* 0 */ { OP_ReadCookie, 0, 1, BTREE_LARGEST_ROOT_PAGE}, { OP_If, 1, 0, 0}, /* 2 */ { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */ { OP_SetCookie, 0, BTREE_INCR_VACUUM, 0}, /* 4 */ }; VdbeOp *aOp; int iAddr = sqlite3VdbeCurrentAddr(v); sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(setMeta6)); aOp = sqlite3VdbeAddOpList(v, ArraySize(setMeta6), setMeta6, iLn); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[2].p2 = iAddr+4; aOp[4].p1 = iDb; aOp[4].p3 = eAuto - 1; sqlite3VdbeUsesBtree(v, iDb); } } break; } #endif /* ** PRAGMA [schema.]incremental_vacuum(N) ** ** Do N steps of incremental vacuuming on a database. */ #ifndef SQLITE_OMIT_AUTOVACUUM case PragTyp_INCREMENTAL_VACUUM: { int iLimit, addr; if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){ iLimit = 0x7fffffff; } sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3VdbeAddOp2(v, OP_Integer, iLimit, 1); addr = sqlite3VdbeAddOp1(v, OP_IncrVacuum, iDb); VdbeCoverage(v); sqlite3VdbeAddOp1(v, OP_ResultRow, 1); sqlite3VdbeAddOp2(v, OP_AddImm, 1, -1); sqlite3VdbeAddOp2(v, OP_IfPos, 1, addr); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr); break; } #endif #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** PRAGMA [schema.]cache_size ** PRAGMA [schema.]cache_size=N ** ** The first form reports the current local setting for the ** page cache size. The second form sets the local ** page cache size value. If N is positive then that is the ** number of pages in the cache. If N is negative, then the ** number of pages is adjusted so that the cache uses -N kibibytes ** of memory. */ case PragTyp_CACHE_SIZE: { assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( !zRight ){ returnSingleInt(v, pDb->pSchema->cache_size); }else{ int size = sqlite3Atoi(zRight); pDb->pSchema->cache_size = size; sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); } break; } /* ** PRAGMA [schema.]cache_spill ** PRAGMA cache_spill=BOOLEAN ** PRAGMA [schema.]cache_spill=N ** ** The first form reports the current local setting for the ** page cache spill size. The second form turns cache spill on ** or off. When turnning cache spill on, the size is set to the ** current cache_size. The third form sets a spill size that ** may be different form the cache size. ** If N is positive then that is the ** number of pages in the cache. If N is negative, then the ** number of pages is adjusted so that the cache uses -N kibibytes ** of memory. ** ** If the number of cache_spill pages is less then the number of ** cache_size pages, no spilling occurs until the page count exceeds ** the number of cache_size pages. ** ** The cache_spill=BOOLEAN setting applies to all attached schemas, ** not just the schema specified. */ case PragTyp_CACHE_SPILL: { assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( !zRight ){ returnSingleInt(v, (db->flags & SQLITE_CacheSpill)==0 ? 0 : sqlite3BtreeSetSpillSize(pDb->pBt,0)); }else{ int size = 1; if( sqlite3GetInt32(zRight, &size) ){ sqlite3BtreeSetSpillSize(pDb->pBt, size); } if( sqlite3GetBoolean(zRight, size!=0) ){ db->flags |= SQLITE_CacheSpill; }else{ db->flags &= ~(u64)SQLITE_CacheSpill; } setAllPagerFlags(db); } break; } /* ** PRAGMA [schema.]mmap_size(N) ** ** Used to set mapping size limit. The mapping size limit is ** used to limit the aggregate size of all memory mapped regions of the ** database file. If this parameter is set to zero, then memory mapping ** is not used at all. If N is negative, then the default memory map ** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set. ** The parameter N is measured in bytes. ** ** This value is advisory. The underlying VFS is free to memory map ** as little or as much as it wants. Except, if N is set to 0 then the ** upper layers will never invoke the xFetch interfaces to the VFS. */ case PragTyp_MMAP_SIZE: { sqlite3_int64 sz; #if SQLITE_MAX_MMAP_SIZE>0 assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( zRight ){ int ii; sqlite3DecOrHexToI64(zRight, &sz); if( sz<0 ) sz = sqlite3GlobalConfig.szMmap; if( pId2->n==0 ) db->szMmap = sz; for(ii=db->nDb-1; ii>=0; ii--){ if( db->aDb[ii].pBt && (ii==iDb || pId2->n==0) ){ sqlite3BtreeSetMmapLimit(db->aDb[ii].pBt, sz); } } } sz = -1; rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_MMAP_SIZE, &sz); #else sz = 0; rc = SQLITE_OK; #endif if( rc==SQLITE_OK ){ returnSingleInt(v, sz); }else if( rc!=SQLITE_NOTFOUND ){ pParse->nErr++; pParse->rc = rc; } break; } /* ** PRAGMA temp_store ** PRAGMA temp_store = "default"|"memory"|"file" ** ** Return or set the local value of the temp_store flag. Changing ** the local value does not make changes to the disk file and the default ** value will be restored the next time the database is opened. ** ** Note that it is possible for the library compile-time options to ** override this setting */ case PragTyp_TEMP_STORE: { if( !zRight ){ returnSingleInt(v, db->temp_store); }else{ changeTempStorage(pParse, zRight); } break; } /* ** PRAGMA temp_store_directory ** PRAGMA temp_store_directory = ""|"directory_name" ** ** Return or set the local value of the temp_store_directory flag. Changing ** the value sets a specific directory to be used for temporary files. ** Setting to a null string reverts to the default temporary directory search. ** If temporary directory is changed, then invalidateTempStorage. ** */ case PragTyp_TEMP_STORE_DIRECTORY: { if( !zRight ){ returnSingleText(v, sqlite3_temp_directory); }else{ #ifndef SQLITE_OMIT_WSD if( zRight[0] ){ int res; rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res); if( rc!=SQLITE_OK || res==0 ){ sqlite3ErrorMsg(pParse, "not a writable directory"); goto pragma_out; } } if( SQLITE_TEMP_STORE==0 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) || (SQLITE_TEMP_STORE==2 && db->temp_store==1) ){ invalidateTempStorage(pParse); } sqlite3_free(sqlite3_temp_directory); if( zRight[0] ){ sqlite3_temp_directory = sqlite3_mprintf("%s", zRight); }else{ sqlite3_temp_directory = 0; } #endif /* SQLITE_OMIT_WSD */ } break; } #if SQLITE_OS_WIN /* ** PRAGMA data_store_directory ** PRAGMA data_store_directory = ""|"directory_name" ** ** Return or set the local value of the data_store_directory flag. Changing ** the value sets a specific directory to be used for database files that ** were specified with a relative pathname. Setting to a null string reverts ** to the default database directory, which for database files specified with ** a relative path will probably be based on the current directory for the ** process. Database file specified with an absolute path are not impacted ** by this setting, regardless of its value. ** */ case PragTyp_DATA_STORE_DIRECTORY: { if( !zRight ){ returnSingleText(v, sqlite3_data_directory); }else{ #ifndef SQLITE_OMIT_WSD if( zRight[0] ){ int res; rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res); if( rc!=SQLITE_OK || res==0 ){ sqlite3ErrorMsg(pParse, "not a writable directory"); goto pragma_out; } } sqlite3_free(sqlite3_data_directory); if( zRight[0] ){ sqlite3_data_directory = sqlite3_mprintf("%s", zRight); }else{ sqlite3_data_directory = 0; } #endif /* SQLITE_OMIT_WSD */ } break; } #endif #if SQLITE_ENABLE_LOCKING_STYLE /* ** PRAGMA [schema.]lock_proxy_file ** PRAGMA [schema.]lock_proxy_file = ":auto:"|"lock_file_path" ** ** Return or set the value of the lock_proxy_file flag. Changing ** the value sets a specific file to be used for database access locks. ** */ case PragTyp_LOCK_PROXY_FILE: { if( !zRight ){ Pager *pPager = sqlite3BtreePager(pDb->pBt); char *proxy_file_path = NULL; sqlite3_file *pFile = sqlite3PagerFile(pPager); sqlite3OsFileControlHint(pFile, SQLITE_GET_LOCKPROXYFILE, &proxy_file_path); returnSingleText(v, proxy_file_path); }else{ Pager *pPager = sqlite3BtreePager(pDb->pBt); sqlite3_file *pFile = sqlite3PagerFile(pPager); int res; if( zRight[0] ){ res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE, zRight); } else { res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE, NULL); } if( res!=SQLITE_OK ){ sqlite3ErrorMsg(pParse, "failed to set lock proxy file"); goto pragma_out; } } break; } #endif /* SQLITE_ENABLE_LOCKING_STYLE */ /* ** PRAGMA [schema.]synchronous ** PRAGMA [schema.]synchronous=OFF|ON|NORMAL|FULL|EXTRA ** ** Return or set the local value of the synchronous flag. Changing ** the local value does not make changes to the disk file and the ** default value will be restored the next time the database is ** opened. */ case PragTyp_SYNCHRONOUS: { if( !zRight ){ returnSingleInt(v, pDb->safety_level-1); }else{ if( !db->autoCommit ){ sqlite3ErrorMsg(pParse, "Safety level may not be changed inside a transaction"); }else if( iDb!=1 ){ int iLevel = (getSafetyLevel(zRight,0,1)+1) & PAGER_SYNCHRONOUS_MASK; if( iLevel==0 ) iLevel = 1; pDb->safety_level = iLevel; pDb->bSyncSet = 1; setAllPagerFlags(db); } } break; } #endif /* SQLITE_OMIT_PAGER_PRAGMAS */ #ifndef SQLITE_OMIT_FLAG_PRAGMAS case PragTyp_FLAG: { if( zRight==0 ){ setPragmaResultColumnNames(v, pPragma); returnSingleInt(v, (db->flags & pPragma->iArg)!=0 ); }else{ u64 mask = pPragma->iArg; /* Mask of bits to set or clear. */ if( db->autoCommit==0 ){ /* Foreign key support may not be enabled or disabled while not ** in auto-commit mode. */ mask &= ~(SQLITE_ForeignKeys); } #if SQLITE_USER_AUTHENTICATION if( db->auth.authLevel==UAUTH_User ){ /* Do not allow non-admin users to modify the schema arbitrarily */ mask &= ~(SQLITE_WriteSchema); } #endif if( sqlite3GetBoolean(zRight, 0) ){ db->flags |= mask; }else{ db->flags &= ~mask; if( mask==SQLITE_DeferFKs ) db->nDeferredImmCons = 0; if( (mask & SQLITE_WriteSchema)!=0 && sqlite3_stricmp(zRight, "reset")==0 ){ /* IMP: R-60817-01178 If the argument is "RESET" then schema ** writing is disabled (as with "PRAGMA writable_schema=OFF") and, ** in addition, the schema is reloaded. */ sqlite3ResetAllSchemasOfConnection(db); } } /* Many of the flag-pragmas modify the code generated by the SQL ** compiler (eg. count_changes). So add an opcode to expire all ** compiled SQL statements after modifying a pragma value. */ sqlite3VdbeAddOp0(v, OP_Expire); setAllPagerFlags(db); } break; } #endif /* SQLITE_OMIT_FLAG_PRAGMAS */ #ifndef SQLITE_OMIT_SCHEMA_PRAGMAS /* ** PRAGMA table_info(
    ) ** ** Return a single row for each column of the named table. The columns of ** the returned data set are: ** ** cid: Column id (numbered from left to right, starting at 0) ** name: Column name ** type: Column declaration type. ** notnull: True if 'NOT NULL' is part of column declaration ** dflt_value: The default value for the column, if any. ** pk: Non-zero for PK fields. */ case PragTyp_TABLE_INFO: if( zRight ){ Table *pTab; sqlite3CodeVerifyNamedSchema(pParse, zDb); pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb); if( pTab ){ int i, k; int nHidden = 0; Column *pCol; Index *pPk = sqlite3PrimaryKeyIndex(pTab); pParse->nMem = 7; sqlite3ViewGetColumnNames(pParse, pTab); for(i=0, pCol=pTab->aCol; inCol; i++, pCol++){ int isHidden = 0; const Expr *pColExpr; if( pCol->colFlags & COLFLAG_NOINSERT ){ if( pPragma->iArg==0 ){ nHidden++; continue; } if( pCol->colFlags & COLFLAG_VIRTUAL ){ isHidden = 2; /* GENERATED ALWAYS AS ... VIRTUAL */ }else if( pCol->colFlags & COLFLAG_STORED ){ isHidden = 3; /* GENERATED ALWAYS AS ... STORED */ }else{ assert( pCol->colFlags & COLFLAG_HIDDEN ); isHidden = 1; /* HIDDEN */ } } if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ k = 0; }else if( pPk==0 ){ k = 1; }else{ for(k=1; k<=pTab->nCol && pPk->aiColumn[k-1]!=i; k++){} } pColExpr = sqlite3ColumnExpr(pTab,pCol); assert( pColExpr==0 || pColExpr->op==TK_SPAN || isHidden>=2 ); assert( pColExpr==0 || !ExprHasProperty(pColExpr, EP_IntValue) || isHidden>=2 ); sqlite3VdbeMultiLoad(v, 1, pPragma->iArg ? "issisii" : "issisi", i-nHidden, pCol->zCnName, sqlite3ColumnType(pCol,""), pCol->notNull ? 1 : 0, (isHidden>=2 || pColExpr==0) ? 0 : pColExpr->u.zToken, k, isHidden); } } } break; /* ** PRAGMA table_list ** ** Return a single row for each table, virtual table, or view in the ** entire schema. ** ** schema: Name of attached database hold this table ** name: Name of the table itself ** type: "table", "view", "virtual", "shadow" ** ncol: Number of columns ** wr: True for a WITHOUT ROWID table ** strict: True for a STRICT table */ case PragTyp_TABLE_LIST: { int ii; pParse->nMem = 6; sqlite3CodeVerifyNamedSchema(pParse, zDb); for(ii=0; iinDb; ii++){ HashElem *k; Hash *pHash; int initNCol; if( zDb && sqlite3_stricmp(zDb, db->aDb[ii].zDbSName)!=0 ) continue; /* Ensure that the Table.nCol field is initialized for all views ** and virtual tables. Each time we initialize a Table.nCol value ** for a table, that can potentially disrupt the hash table, so restart ** the initialization scan. */ pHash = &db->aDb[ii].pSchema->tblHash; initNCol = sqliteHashCount(pHash); while( initNCol-- ){ for(k=sqliteHashFirst(pHash); 1; k=sqliteHashNext(k) ){ Table *pTab; if( k==0 ){ initNCol = 0; break; } pTab = sqliteHashData(k); if( pTab->nCol==0 ){ char *zSql = sqlite3MPrintf(db, "SELECT*FROM\"%w\"", pTab->zName); if( zSql ){ sqlite3_stmt *pDummy = 0; (void)sqlite3_prepare(db, zSql, -1, &pDummy, 0); (void)sqlite3_finalize(pDummy); sqlite3DbFree(db, zSql); } if( db->mallocFailed ){ sqlite3ErrorMsg(db->pParse, "out of memory"); db->pParse->rc = SQLITE_NOMEM_BKPT; } pHash = &db->aDb[ii].pSchema->tblHash; break; } } } for(k=sqliteHashFirst(pHash); k; k=sqliteHashNext(k) ){ Table *pTab = sqliteHashData(k); const char *zType; if( zRight && sqlite3_stricmp(zRight, pTab->zName)!=0 ) continue; if( IsView(pTab) ){ zType = "view"; }else if( IsVirtual(pTab) ){ zType = "virtual"; }else if( pTab->tabFlags & TF_Shadow ){ zType = "shadow"; }else{ zType = "table"; } sqlite3VdbeMultiLoad(v, 1, "sssiii", db->aDb[ii].zDbSName, sqlite3PreferredTableName(pTab->zName), zType, pTab->nCol, (pTab->tabFlags & TF_WithoutRowid)!=0, (pTab->tabFlags & TF_Strict)!=0 ); } } } break; #ifdef SQLITE_DEBUG case PragTyp_STATS: { Index *pIdx; HashElem *i; pParse->nMem = 5; sqlite3CodeVerifySchema(pParse, iDb); for(i=sqliteHashFirst(&pDb->pSchema->tblHash); i; i=sqliteHashNext(i)){ Table *pTab = sqliteHashData(i); sqlite3VdbeMultiLoad(v, 1, "ssiii", sqlite3PreferredTableName(pTab->zName), 0, pTab->szTabRow, pTab->nRowLogEst, pTab->tabFlags); for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ sqlite3VdbeMultiLoad(v, 2, "siiiX", pIdx->zName, pIdx->szIdxRow, pIdx->aiRowLogEst[0], pIdx->hasStat1); sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 5); } } } break; #endif case PragTyp_INDEX_INFO: if( zRight ){ Index *pIdx; Table *pTab; pIdx = sqlite3FindIndex(db, zRight, zDb); if( pIdx==0 ){ /* If there is no index named zRight, check to see if there is a ** WITHOUT ROWID table named zRight, and if there is, show the ** structure of the PRIMARY KEY index for that table. */ pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb); if( pTab && !HasRowid(pTab) ){ pIdx = sqlite3PrimaryKeyIndex(pTab); } } if( pIdx ){ int iIdxDb = sqlite3SchemaToIndex(db, pIdx->pSchema); int i; int mx; if( pPragma->iArg ){ /* PRAGMA index_xinfo (newer version with more rows and columns) */ mx = pIdx->nColumn; pParse->nMem = 6; }else{ /* PRAGMA index_info (legacy version) */ mx = pIdx->nKeyCol; pParse->nMem = 3; } pTab = pIdx->pTable; sqlite3CodeVerifySchema(pParse, iIdxDb); assert( pParse->nMem<=pPragma->nPragCName ); for(i=0; iaiColumn[i]; sqlite3VdbeMultiLoad(v, 1, "iisX", i, cnum, cnum<0 ? 0 : pTab->aCol[cnum].zCnName); if( pPragma->iArg ){ sqlite3VdbeMultiLoad(v, 4, "isiX", pIdx->aSortOrder[i], pIdx->azColl[i], inKeyCol); } sqlite3VdbeAddOp2(v, OP_ResultRow, 1, pParse->nMem); } } } break; case PragTyp_INDEX_LIST: if( zRight ){ Index *pIdx; Table *pTab; int i; pTab = sqlite3FindTable(db, zRight, zDb); if( pTab ){ int iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); pParse->nMem = 5; sqlite3CodeVerifySchema(pParse, iTabDb); for(pIdx=pTab->pIndex, i=0; pIdx; pIdx=pIdx->pNext, i++){ const char *azOrigin[] = { "c", "u", "pk" }; sqlite3VdbeMultiLoad(v, 1, "isisi", i, pIdx->zName, IsUniqueIndex(pIdx), azOrigin[pIdx->idxType], pIdx->pPartIdxWhere!=0); } } } break; case PragTyp_DATABASE_LIST: { int i; pParse->nMem = 3; for(i=0; inDb; i++){ if( db->aDb[i].pBt==0 ) continue; assert( db->aDb[i].zDbSName!=0 ); sqlite3VdbeMultiLoad(v, 1, "iss", i, db->aDb[i].zDbSName, sqlite3BtreeGetFilename(db->aDb[i].pBt)); } } break; case PragTyp_COLLATION_LIST: { int i = 0; HashElem *p; pParse->nMem = 2; for(p=sqliteHashFirst(&db->aCollSeq); p; p=sqliteHashNext(p)){ CollSeq *pColl = (CollSeq *)sqliteHashData(p); sqlite3VdbeMultiLoad(v, 1, "is", i++, pColl->zName); } } break; #ifndef SQLITE_OMIT_INTROSPECTION_PRAGMAS case PragTyp_FUNCTION_LIST: { int i; HashElem *j; FuncDef *p; int showInternFunc = (db->mDbFlags & DBFLAG_InternalFunc)!=0; pParse->nMem = 6; for(i=0; iu.pHash ){ assert( p->funcFlags & SQLITE_FUNC_BUILTIN ); pragmaFunclistLine(v, p, 1, showInternFunc); } } for(j=sqliteHashFirst(&db->aFunc); j; j=sqliteHashNext(j)){ p = (FuncDef*)sqliteHashData(j); assert( (p->funcFlags & SQLITE_FUNC_BUILTIN)==0 ); pragmaFunclistLine(v, p, 0, showInternFunc); } } break; #ifndef SQLITE_OMIT_VIRTUALTABLE case PragTyp_MODULE_LIST: { HashElem *j; pParse->nMem = 1; for(j=sqliteHashFirst(&db->aModule); j; j=sqliteHashNext(j)){ Module *pMod = (Module*)sqliteHashData(j); sqlite3VdbeMultiLoad(v, 1, "s", pMod->zName); } } break; #endif /* SQLITE_OMIT_VIRTUALTABLE */ case PragTyp_PRAGMA_LIST: { int i; for(i=0; iu.tab.pFKey; if( pFK ){ int iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); int i = 0; pParse->nMem = 8; sqlite3CodeVerifySchema(pParse, iTabDb); while(pFK){ int j; for(j=0; jnCol; j++){ sqlite3VdbeMultiLoad(v, 1, "iissssss", i, j, pFK->zTo, pTab->aCol[pFK->aCol[j].iFrom].zCnName, pFK->aCol[j].zCol, actionName(pFK->aAction[1]), /* ON UPDATE */ actionName(pFK->aAction[0]), /* ON DELETE */ "NONE"); } ++i; pFK = pFK->pNextFrom; } } } } break; #endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ #ifndef SQLITE_OMIT_FOREIGN_KEY #ifndef SQLITE_OMIT_TRIGGER case PragTyp_FOREIGN_KEY_CHECK: { FKey *pFK; /* A foreign key constraint */ Table *pTab; /* Child table contain "REFERENCES" keyword */ Table *pParent; /* Parent table that child points to */ Index *pIdx; /* Index in the parent table */ int i; /* Loop counter: Foreign key number for pTab */ int j; /* Loop counter: Field of the foreign key */ HashElem *k; /* Loop counter: Next table in schema */ int x; /* result variable */ int regResult; /* 3 registers to hold a result row */ int regKey; /* Register to hold key for checking the FK */ int regRow; /* Registers to hold a row from pTab */ int addrTop; /* Top of a loop checking foreign keys */ int addrOk; /* Jump here if the key is OK */ int *aiCols; /* child to parent column mapping */ regResult = pParse->nMem+1; pParse->nMem += 4; regKey = ++pParse->nMem; regRow = ++pParse->nMem; k = sqliteHashFirst(&db->aDb[iDb].pSchema->tblHash); while( k ){ if( zRight ){ pTab = sqlite3LocateTable(pParse, 0, zRight, zDb); k = 0; }else{ pTab = (Table*)sqliteHashData(k); k = sqliteHashNext(k); } if( pTab==0 || !IsOrdinaryTable(pTab) || pTab->u.tab.pFKey==0 ) continue; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); zDb = db->aDb[iDb].zDbSName; sqlite3CodeVerifySchema(pParse, iDb); sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); if( pTab->nCol+regRow>pParse->nMem ) pParse->nMem = pTab->nCol + regRow; sqlite3OpenTable(pParse, 0, iDb, pTab, OP_OpenRead); sqlite3VdbeLoadString(v, regResult, pTab->zName); assert( IsOrdinaryTable(pTab) ); for(i=1, pFK=pTab->u.tab.pFKey; pFK; i++, pFK=pFK->pNextFrom){ pParent = sqlite3FindTable(db, pFK->zTo, zDb); if( pParent==0 ) continue; pIdx = 0; sqlite3TableLock(pParse, iDb, pParent->tnum, 0, pParent->zName); x = sqlite3FkLocateIndex(pParse, pParent, pFK, &pIdx, 0); if( x==0 ){ if( pIdx==0 ){ sqlite3OpenTable(pParse, i, iDb, pParent, OP_OpenRead); }else{ sqlite3VdbeAddOp3(v, OP_OpenRead, i, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); } }else{ k = 0; break; } } assert( pParse->nErr>0 || pFK==0 ); if( pFK ) break; if( pParse->nTabnTab = i; addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, 0); VdbeCoverage(v); assert( IsOrdinaryTable(pTab) ); for(i=1, pFK=pTab->u.tab.pFKey; pFK; i++, pFK=pFK->pNextFrom){ pParent = sqlite3FindTable(db, pFK->zTo, zDb); pIdx = 0; aiCols = 0; if( pParent ){ x = sqlite3FkLocateIndex(pParse, pParent, pFK, &pIdx, &aiCols); assert( x==0 || db->mallocFailed ); } addrOk = sqlite3VdbeMakeLabel(pParse); /* Generate code to read the child key values into registers ** regRow..regRow+n. If any of the child key values are NULL, this ** row cannot cause an FK violation. Jump directly to addrOk in ** this case. */ if( regRow+pFK->nCol>pParse->nMem ) pParse->nMem = regRow+pFK->nCol; for(j=0; jnCol; j++){ int iCol = aiCols ? aiCols[j] : pFK->aCol[j].iFrom; sqlite3ExprCodeGetColumnOfTable(v, pTab, 0, iCol, regRow+j); sqlite3VdbeAddOp2(v, OP_IsNull, regRow+j, addrOk); VdbeCoverage(v); } /* Generate code to query the parent index for a matching parent ** key. If a match is found, jump to addrOk. */ if( pIdx ){ sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, pFK->nCol, regKey, sqlite3IndexAffinityStr(db,pIdx), pFK->nCol); sqlite3VdbeAddOp4Int(v, OP_Found, i, addrOk, regKey, 0); VdbeCoverage(v); }else if( pParent ){ int jmp = sqlite3VdbeCurrentAddr(v)+2; sqlite3VdbeAddOp3(v, OP_SeekRowid, i, jmp, regRow); VdbeCoverage(v); sqlite3VdbeGoto(v, addrOk); assert( pFK->nCol==1 || db->mallocFailed ); } /* Generate code to report an FK violation to the caller. */ if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_Rowid, 0, regResult+1); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, regResult+1); } sqlite3VdbeMultiLoad(v, regResult+2, "siX", pFK->zTo, i-1); sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, 4); sqlite3VdbeResolveLabel(v, addrOk); sqlite3DbFree(db, aiCols); } sqlite3VdbeAddOp2(v, OP_Next, 0, addrTop+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrTop); } } break; #endif /* !defined(SQLITE_OMIT_TRIGGER) */ #endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ #ifndef SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA /* Reinstall the LIKE and GLOB functions. The variant of LIKE ** used will be case sensitive or not depending on the RHS. */ case PragTyp_CASE_SENSITIVE_LIKE: { if( zRight ){ sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0)); } } break; #endif /* SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA */ #ifndef SQLITE_INTEGRITY_CHECK_ERROR_MAX # define SQLITE_INTEGRITY_CHECK_ERROR_MAX 100 #endif #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* PRAGMA integrity_check ** PRAGMA integrity_check(N) ** PRAGMA quick_check ** PRAGMA quick_check(N) ** ** Verify the integrity of the database. ** ** The "quick_check" is reduced version of ** integrity_check designed to detect most database corruption ** without the overhead of cross-checking indexes. Quick_check ** is linear time wherease integrity_check is O(NlogN). ** ** The maximum nubmer of errors is 100 by default. A different default ** can be specified using a numeric parameter N. ** ** Or, the parameter N can be the name of a table. In that case, only ** the one table named is verified. The freelist is only verified if ** the named table is "sqlite_schema" (or one of its aliases). ** ** All schemas are checked by default. To check just a single ** schema, use the form: ** ** PRAGMA schema.integrity_check; */ case PragTyp_INTEGRITY_CHECK: { int i, j, addr, mxErr; Table *pObjTab = 0; /* Check only this one table, if not NULL */ int isQuick = (sqlite3Tolower(zLeft[0])=='q'); /* If the PRAGMA command was of the form "PRAGMA .integrity_check", ** then iDb is set to the index of the database identified by . ** In this case, the integrity of database iDb only is verified by ** the VDBE created below. ** ** Otherwise, if the command was simply "PRAGMA integrity_check" (or ** "PRAGMA quick_check"), then iDb is set to 0. In this case, set iDb ** to -1 here, to indicate that the VDBE should verify the integrity ** of all attached databases. */ assert( iDb>=0 ); assert( iDb==0 || pId2->z ); if( pId2->z==0 ) iDb = -1; /* Initialize the VDBE program */ pParse->nMem = 6; /* Set the maximum error count */ mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX; if( zRight ){ if( sqlite3GetInt32(zRight, &mxErr) ){ if( mxErr<=0 ){ mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX; } }else{ pObjTab = sqlite3LocateTable(pParse, 0, zRight, iDb>=0 ? db->aDb[iDb].zDbSName : 0); } } sqlite3VdbeAddOp2(v, OP_Integer, mxErr-1, 1); /* reg[1] holds errors left */ /* Do an integrity check on each database file */ for(i=0; inDb; i++){ HashElem *x; /* For looping over tables in the schema */ Hash *pTbls; /* Set of all tables in the schema */ int *aRoot; /* Array of root page numbers of all btrees */ int cnt = 0; /* Number of entries in aRoot[] */ int mxIdx = 0; /* Maximum number of indexes for any table */ if( OMIT_TEMPDB && i==1 ) continue; if( iDb>=0 && i!=iDb ) continue; sqlite3CodeVerifySchema(pParse, i); /* Do an integrity check of the B-Tree ** ** Begin by finding the root pages numbers ** for all tables and indices in the database. */ assert( sqlite3SchemaMutexHeld(db, i, 0) ); pTbls = &db->aDb[i].pSchema->tblHash; for(cnt=0, x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ Table *pTab = sqliteHashData(x); /* Current table */ Index *pIdx; /* An index on pTab */ int nIdx; /* Number of indexes on pTab */ if( pObjTab && pObjTab!=pTab ) continue; if( HasRowid(pTab) ) cnt++; for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ cnt++; } if( nIdx>mxIdx ) mxIdx = nIdx; } if( cnt==0 ) continue; if( pObjTab ) cnt++; aRoot = sqlite3DbMallocRawNN(db, sizeof(int)*(cnt+1)); if( aRoot==0 ) break; cnt = 0; if( pObjTab ) aRoot[++cnt] = 0; for(x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ Table *pTab = sqliteHashData(x); Index *pIdx; if( pObjTab && pObjTab!=pTab ) continue; if( HasRowid(pTab) ) aRoot[++cnt] = pTab->tnum; for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ aRoot[++cnt] = pIdx->tnum; } } aRoot[0] = cnt; /* Make sure sufficient number of registers have been allocated */ pParse->nMem = MAX( pParse->nMem, 8+mxIdx ); sqlite3ClearTempRegCache(pParse); /* Do the b-tree integrity checks */ sqlite3VdbeAddOp4(v, OP_IntegrityCk, 2, cnt, 1, (char*)aRoot,P4_INTARRAY); sqlite3VdbeChangeP5(v, (u8)i); addr = sqlite3VdbeAddOp1(v, OP_IsNull, 2); VdbeCoverage(v); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, sqlite3MPrintf(db, "*** in database %s ***\n", db->aDb[i].zDbSName), P4_DYNAMIC); sqlite3VdbeAddOp3(v, OP_Concat, 2, 3, 3); integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, addr); /* Make sure all the indices are constructed correctly. */ for(x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ Table *pTab = sqliteHashData(x); Index *pIdx, *pPk; Index *pPrior = 0; int loopTop; int iDataCur, iIdxCur; int r1 = -1; int bStrict; if( !IsOrdinaryTable(pTab) ) continue; if( pObjTab && pObjTab!=pTab ) continue; pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenRead, 0, 1, 0, &iDataCur, &iIdxCur); /* reg[7] counts the number of entries in the table. ** reg[8+i] counts the number of entries in the i-th index */ sqlite3VdbeAddOp2(v, OP_Integer, 0, 7); for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ sqlite3VdbeAddOp2(v, OP_Integer, 0, 8+j); /* index entries counter */ } assert( pParse->nMem>=8+j ); assert( sqlite3NoTempsInRange(pParse,1,7+j) ); sqlite3VdbeAddOp2(v, OP_Rewind, iDataCur, 0); VdbeCoverage(v); loopTop = sqlite3VdbeAddOp2(v, OP_AddImm, 7, 1); if( !isQuick ){ /* Sanity check on record header decoding */ sqlite3VdbeAddOp3(v, OP_Column, iDataCur, pTab->nNVCol-1,3); sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); VdbeComment((v, "(right-most column)")); } /* Verify that all NOT NULL columns really are NOT NULL. At the ** same time verify the type of the content of STRICT tables */ bStrict = (pTab->tabFlags & TF_Strict)!=0; for(j=0; jnCol; j++){ char *zErr; Column *pCol = pTab->aCol + j; int doError, jmp2; if( j==pTab->iPKey ) continue; if( pCol->notNull==0 && !bStrict ) continue; doError = bStrict ? sqlite3VdbeMakeLabel(pParse) : 0; sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, j, 3); if( sqlite3VdbeGetOp(v,-1)->opcode==OP_Column ){ sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); } if( pCol->notNull ){ jmp2 = sqlite3VdbeAddOp1(v, OP_NotNull, 3); VdbeCoverage(v); zErr = sqlite3MPrintf(db, "NULL value in %s.%s", pTab->zName, pCol->zCnName); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, zErr, P4_DYNAMIC); if( bStrict && pCol->eCType!=COLTYPE_ANY ){ sqlite3VdbeGoto(v, doError); }else{ integrityCheckResultRow(v); } sqlite3VdbeJumpHere(v, jmp2); } if( (pTab->tabFlags & TF_Strict)!=0 && pCol->eCType!=COLTYPE_ANY ){ jmp2 = sqlite3VdbeAddOp3(v, OP_IsNullOrType, 3, 0, sqlite3StdTypeMap[pCol->eCType-1]); VdbeCoverage(v); zErr = sqlite3MPrintf(db, "non-%s value in %s.%s", sqlite3StdType[pCol->eCType-1], pTab->zName, pTab->aCol[j].zCnName); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, zErr, P4_DYNAMIC); sqlite3VdbeResolveLabel(v, doError); integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, jmp2); } } /* Verify CHECK constraints */ if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){ ExprList *pCheck = sqlite3ExprListDup(db, pTab->pCheck, 0); if( db->mallocFailed==0 ){ int addrCkFault = sqlite3VdbeMakeLabel(pParse); int addrCkOk = sqlite3VdbeMakeLabel(pParse); char *zErr; int k; pParse->iSelfTab = iDataCur + 1; for(k=pCheck->nExpr-1; k>0; k--){ sqlite3ExprIfFalse(pParse, pCheck->a[k].pExpr, addrCkFault, 0); } sqlite3ExprIfTrue(pParse, pCheck->a[0].pExpr, addrCkOk, SQLITE_JUMPIFNULL); sqlite3VdbeResolveLabel(v, addrCkFault); pParse->iSelfTab = 0; zErr = sqlite3MPrintf(db, "CHECK constraint failed in %s", pTab->zName); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, zErr, P4_DYNAMIC); integrityCheckResultRow(v); sqlite3VdbeResolveLabel(v, addrCkOk); } sqlite3ExprListDelete(db, pCheck); } if( !isQuick ){ /* Omit the remaining tests for quick_check */ /* Validate index entries for the current row */ for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ int jmp2, jmp3, jmp4, jmp5; int ckUniq = sqlite3VdbeMakeLabel(pParse); if( pPk==pIdx ) continue; r1 = sqlite3GenerateIndexKey(pParse, pIdx, iDataCur, 0, 0, &jmp3, pPrior, r1); pPrior = pIdx; sqlite3VdbeAddOp2(v, OP_AddImm, 8+j, 1);/* increment entry count */ /* Verify that an index entry exists for the current table row */ jmp2 = sqlite3VdbeAddOp4Int(v, OP_Found, iIdxCur+j, ckUniq, r1, pIdx->nColumn); VdbeCoverage(v); sqlite3VdbeLoadString(v, 3, "row "); sqlite3VdbeAddOp3(v, OP_Concat, 7, 3, 3); sqlite3VdbeLoadString(v, 4, " missing from index "); sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 3); jmp5 = sqlite3VdbeLoadString(v, 4, pIdx->zName); sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 3); jmp4 = integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, jmp2); /* For UNIQUE indexes, verify that only one entry exists with the ** current key. The entry is unique if (1) any column is NULL ** or (2) the next entry has a different key */ if( IsUniqueIndex(pIdx) ){ int uniqOk = sqlite3VdbeMakeLabel(pParse); int jmp6; int kk; for(kk=0; kknKeyCol; kk++){ int iCol = pIdx->aiColumn[kk]; assert( iCol!=XN_ROWID && iColnCol ); if( iCol>=0 && pTab->aCol[iCol].notNull ) continue; sqlite3VdbeAddOp2(v, OP_IsNull, r1+kk, uniqOk); VdbeCoverage(v); } jmp6 = sqlite3VdbeAddOp1(v, OP_Next, iIdxCur+j); VdbeCoverage(v); sqlite3VdbeGoto(v, uniqOk); sqlite3VdbeJumpHere(v, jmp6); sqlite3VdbeAddOp4Int(v, OP_IdxGT, iIdxCur+j, uniqOk, r1, pIdx->nKeyCol); VdbeCoverage(v); sqlite3VdbeLoadString(v, 3, "non-unique entry in index "); sqlite3VdbeGoto(v, jmp5); sqlite3VdbeResolveLabel(v, uniqOk); } sqlite3VdbeJumpHere(v, jmp4); sqlite3ResolvePartIdxLabel(pParse, jmp3); } } sqlite3VdbeAddOp2(v, OP_Next, iDataCur, loopTop); VdbeCoverage(v); sqlite3VdbeJumpHere(v, loopTop-1); if( !isQuick ){ sqlite3VdbeLoadString(v, 2, "wrong # of entries in index "); for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ if( pPk==pIdx ) continue; sqlite3VdbeAddOp2(v, OP_Count, iIdxCur+j, 3); addr = sqlite3VdbeAddOp3(v, OP_Eq, 8+j, 0, 3); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); sqlite3VdbeLoadString(v, 4, pIdx->zName); sqlite3VdbeAddOp3(v, OP_Concat, 4, 2, 3); integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, addr); } } } } { static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList endCode[] = { { OP_AddImm, 1, 0, 0}, /* 0 */ { OP_IfNotZero, 1, 4, 0}, /* 1 */ { OP_String8, 0, 3, 0}, /* 2 */ { OP_ResultRow, 3, 1, 0}, /* 3 */ { OP_Halt, 0, 0, 0}, /* 4 */ { OP_String8, 0, 3, 0}, /* 5 */ { OP_Goto, 0, 3, 0}, /* 6 */ }; VdbeOp *aOp; aOp = sqlite3VdbeAddOpList(v, ArraySize(endCode), endCode, iLn); if( aOp ){ aOp[0].p2 = 1-mxErr; aOp[2].p4type = P4_STATIC; aOp[2].p4.z = "ok"; aOp[5].p4type = P4_STATIC; aOp[5].p4.z = (char*)sqlite3ErrStr(SQLITE_CORRUPT); } sqlite3VdbeChangeP3(v, 0, sqlite3VdbeCurrentAddr(v)-2); } } break; #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ #ifndef SQLITE_OMIT_UTF16 /* ** PRAGMA encoding ** PRAGMA encoding = "utf-8"|"utf-16"|"utf-16le"|"utf-16be" ** ** In its first form, this pragma returns the encoding of the main ** database. If the database is not initialized, it is initialized now. ** ** The second form of this pragma is a no-op if the main database file ** has not already been initialized. In this case it sets the default ** encoding that will be used for the main database file if a new file ** is created. If an existing main database file is opened, then the ** default text encoding for the existing database is used. ** ** In all cases new databases created using the ATTACH command are ** created to use the same default text encoding as the main database. If ** the main database has not been initialized and/or created when ATTACH ** is executed, this is done before the ATTACH operation. ** ** In the second form this pragma sets the text encoding to be used in ** new database files created using this database handle. It is only ** useful if invoked immediately after the main database i */ case PragTyp_ENCODING: { static const struct EncName { char *zName; u8 enc; } encnames[] = { { "UTF8", SQLITE_UTF8 }, { "UTF-8", SQLITE_UTF8 }, /* Must be element [1] */ { "UTF-16le", SQLITE_UTF16LE }, /* Must be element [2] */ { "UTF-16be", SQLITE_UTF16BE }, /* Must be element [3] */ { "UTF16le", SQLITE_UTF16LE }, { "UTF16be", SQLITE_UTF16BE }, { "UTF-16", 0 }, /* SQLITE_UTF16NATIVE */ { "UTF16", 0 }, /* SQLITE_UTF16NATIVE */ { 0, 0 } }; const struct EncName *pEnc; if( !zRight ){ /* "PRAGMA encoding" */ if( sqlite3ReadSchema(pParse) ) goto pragma_out; assert( encnames[SQLITE_UTF8].enc==SQLITE_UTF8 ); assert( encnames[SQLITE_UTF16LE].enc==SQLITE_UTF16LE ); assert( encnames[SQLITE_UTF16BE].enc==SQLITE_UTF16BE ); returnSingleText(v, encnames[ENC(pParse->db)].zName); }else{ /* "PRAGMA encoding = XXX" */ /* Only change the value of sqlite.enc if the database handle is not ** initialized. If the main database exists, the new sqlite.enc value ** will be overwritten when the schema is next loaded. If it does not ** already exists, it will be created to use the new encoding value. */ if( (db->mDbFlags & DBFLAG_EncodingFixed)==0 ){ for(pEnc=&encnames[0]; pEnc->zName; pEnc++){ if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){ u8 enc = pEnc->enc ? pEnc->enc : SQLITE_UTF16NATIVE; SCHEMA_ENC(db) = enc; sqlite3SetTextEncoding(db, enc); break; } } if( !pEnc->zName ){ sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight); } } } } break; #endif /* SQLITE_OMIT_UTF16 */ #ifndef SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS /* ** PRAGMA [schema.]schema_version ** PRAGMA [schema.]schema_version = ** ** PRAGMA [schema.]user_version ** PRAGMA [schema.]user_version = ** ** PRAGMA [schema.]freelist_count ** ** PRAGMA [schema.]data_version ** ** PRAGMA [schema.]application_id ** PRAGMA [schema.]application_id = ** ** The pragma's schema_version and user_version are used to set or get ** the value of the schema-version and user-version, respectively. Both ** the schema-version and the user-version are 32-bit signed integers ** stored in the database header. ** ** The schema-cookie is usually only manipulated internally by SQLite. It ** is incremented by SQLite whenever the database schema is modified (by ** creating or dropping a table or index). The schema version is used by ** SQLite each time a query is executed to ensure that the internal cache ** of the schema used when compiling the SQL query matches the schema of ** the database against which the compiled query is actually executed. ** Subverting this mechanism by using "PRAGMA schema_version" to modify ** the schema-version is potentially dangerous and may lead to program ** crashes or database corruption. Use with caution! ** ** The user-version is not used internally by SQLite. It may be used by ** applications for any purpose. */ case PragTyp_HEADER_VALUE: { int iCookie = pPragma->iArg; /* Which cookie to read or write */ sqlite3VdbeUsesBtree(v, iDb); if( zRight && (pPragma->mPragFlg & PragFlg_ReadOnly)==0 ){ /* Write the specified cookie value */ static const VdbeOpList setCookie[] = { { OP_Transaction, 0, 1, 0}, /* 0 */ { OP_SetCookie, 0, 0, 0}, /* 1 */ }; VdbeOp *aOp; sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(setCookie)); aOp = sqlite3VdbeAddOpList(v, ArraySize(setCookie), setCookie, 0); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[1].p2 = iCookie; aOp[1].p3 = sqlite3Atoi(zRight); aOp[1].p5 = 1; }else{ /* Read the specified cookie value */ static const VdbeOpList readCookie[] = { { OP_Transaction, 0, 0, 0}, /* 0 */ { OP_ReadCookie, 0, 1, 0}, /* 1 */ { OP_ResultRow, 1, 1, 0} }; VdbeOp *aOp; sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(readCookie)); aOp = sqlite3VdbeAddOpList(v, ArraySize(readCookie),readCookie,0); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[1].p3 = iCookie; sqlite3VdbeReusable(v); } } break; #endif /* SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* ** PRAGMA compile_options ** ** Return the names of all compile-time options used in this build, ** one option per row. */ case PragTyp_COMPILE_OPTIONS: { int i = 0; const char *zOpt; pParse->nMem = 1; while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){ sqlite3VdbeLoadString(v, 1, zOpt); sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); } sqlite3VdbeReusable(v); } break; #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ #ifndef SQLITE_OMIT_WAL /* ** PRAGMA [schema.]wal_checkpoint = passive|full|restart|truncate ** ** Checkpoint the database. */ case PragTyp_WAL_CHECKPOINT: { int iBt = (pId2->z?iDb:SQLITE_MAX_DB); int eMode = SQLITE_CHECKPOINT_PASSIVE; if( zRight ){ if( sqlite3StrICmp(zRight, "full")==0 ){ eMode = SQLITE_CHECKPOINT_FULL; }else if( sqlite3StrICmp(zRight, "restart")==0 ){ eMode = SQLITE_CHECKPOINT_RESTART; }else if( sqlite3StrICmp(zRight, "truncate")==0 ){ eMode = SQLITE_CHECKPOINT_TRUNCATE; } } pParse->nMem = 3; sqlite3VdbeAddOp3(v, OP_Checkpoint, iBt, eMode, 1); sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3); } break; /* ** PRAGMA wal_autocheckpoint ** PRAGMA wal_autocheckpoint = N ** ** Configure a database connection to automatically checkpoint a database ** after accumulating N frames in the log. Or query for the current value ** of N. */ case PragTyp_WAL_AUTOCHECKPOINT: { if( zRight ){ sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight)); } returnSingleInt(v, db->xWalCallback==sqlite3WalDefaultHook ? SQLITE_PTR_TO_INT(db->pWalArg) : 0); } break; #endif /* ** PRAGMA shrink_memory ** ** IMPLEMENTATION-OF: R-23445-46109 This pragma causes the database ** connection on which it is invoked to free up as much memory as it ** can, by calling sqlite3_db_release_memory(). */ case PragTyp_SHRINK_MEMORY: { sqlite3_db_release_memory(db); break; } /* ** PRAGMA optimize ** PRAGMA optimize(MASK) ** PRAGMA schema.optimize ** PRAGMA schema.optimize(MASK) ** ** Attempt to optimize the database. All schemas are optimized in the first ** two forms, and only the specified schema is optimized in the latter two. ** ** The details of optimizations performed by this pragma are expected ** to change and improve over time. Applications should anticipate that ** this pragma will perform new optimizations in future releases. ** ** The optional argument is a bitmask of optimizations to perform: ** ** 0x0001 Debugging mode. Do not actually perform any optimizations ** but instead return one line of text for each optimization ** that would have been done. Off by default. ** ** 0x0002 Run ANALYZE on tables that might benefit. On by default. ** See below for additional information. ** ** 0x0004 (Not yet implemented) Record usage and performance ** information from the current session in the ** database file so that it will be available to "optimize" ** pragmas run by future database connections. ** ** 0x0008 (Not yet implemented) Create indexes that might have ** been helpful to recent queries ** ** The default MASK is and always shall be 0xfffe. 0xfffe means perform all ** of the optimizations listed above except Debug Mode, including new ** optimizations that have not yet been invented. If new optimizations are ** ever added that should be off by default, those off-by-default ** optimizations will have bitmasks of 0x10000 or larger. ** ** DETERMINATION OF WHEN TO RUN ANALYZE ** ** In the current implementation, a table is analyzed if only if all of ** the following are true: ** ** (1) MASK bit 0x02 is set. ** ** (2) The query planner used sqlite_stat1-style statistics for one or ** more indexes of the table at some point during the lifetime of ** the current connection. ** ** (3) One or more indexes of the table are currently unanalyzed OR ** the number of rows in the table has increased by 25 times or more ** since the last time ANALYZE was run. ** ** The rules for when tables are analyzed are likely to change in ** future releases. */ case PragTyp_OPTIMIZE: { int iDbLast; /* Loop termination point for the schema loop */ int iTabCur; /* Cursor for a table whose size needs checking */ HashElem *k; /* Loop over tables of a schema */ Schema *pSchema; /* The current schema */ Table *pTab; /* A table in the schema */ Index *pIdx; /* An index of the table */ LogEst szThreshold; /* Size threshold above which reanalysis is needd */ char *zSubSql; /* SQL statement for the OP_SqlExec opcode */ u32 opMask; /* Mask of operations to perform */ if( zRight ){ opMask = (u32)sqlite3Atoi(zRight); if( (opMask & 0x02)==0 ) break; }else{ opMask = 0xfffe; } iTabCur = pParse->nTab++; for(iDbLast = zDb?iDb:db->nDb-1; iDb<=iDbLast; iDb++){ if( iDb==1 ) continue; sqlite3CodeVerifySchema(pParse, iDb); pSchema = db->aDb[iDb].pSchema; for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ pTab = (Table*)sqliteHashData(k); /* If table pTab has not been used in a way that would benefit from ** having analysis statistics during the current session, then skip it. ** This also has the effect of skipping virtual tables and views */ if( (pTab->tabFlags & TF_StatsUsed)==0 ) continue; /* Reanalyze if the table is 25 times larger than the last analysis */ szThreshold = pTab->nRowLogEst + 46; assert( sqlite3LogEst(25)==46 ); for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( !pIdx->hasStat1 ){ szThreshold = 0; /* Always analyze if any index lacks statistics */ break; } } if( szThreshold ){ sqlite3OpenTable(pParse, iTabCur, iDb, pTab, OP_OpenRead); sqlite3VdbeAddOp3(v, OP_IfSmaller, iTabCur, sqlite3VdbeCurrentAddr(v)+2+(opMask&1), szThreshold); VdbeCoverage(v); } zSubSql = sqlite3MPrintf(db, "ANALYZE \"%w\".\"%w\"", db->aDb[iDb].zDbSName, pTab->zName); if( opMask & 0x01 ){ int r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4(v, OP_String8, 0, r1, 0, zSubSql, P4_DYNAMIC); sqlite3VdbeAddOp2(v, OP_ResultRow, r1, 1); }else{ sqlite3VdbeAddOp4(v, OP_SqlExec, 0, 0, 0, zSubSql, P4_DYNAMIC); } } } sqlite3VdbeAddOp0(v, OP_Expire); break; } /* ** PRAGMA busy_timeout ** PRAGMA busy_timeout = N ** ** Call sqlite3_busy_timeout(db, N). Return the current timeout value ** if one is set. If no busy handler or a different busy handler is set ** then 0 is returned. Setting the busy_timeout to 0 or negative ** disables the timeout. */ /*case PragTyp_BUSY_TIMEOUT*/ default: { assert( pPragma->ePragTyp==PragTyp_BUSY_TIMEOUT ); if( zRight ){ sqlite3_busy_timeout(db, sqlite3Atoi(zRight)); } returnSingleInt(v, db->busyTimeout); break; } /* ** PRAGMA soft_heap_limit ** PRAGMA soft_heap_limit = N ** ** IMPLEMENTATION-OF: R-26343-45930 This pragma invokes the ** sqlite3_soft_heap_limit64() interface with the argument N, if N is ** specified and is a non-negative integer. ** IMPLEMENTATION-OF: R-64451-07163 The soft_heap_limit pragma always ** returns the same integer that would be returned by the ** sqlite3_soft_heap_limit64(-1) C-language function. */ case PragTyp_SOFT_HEAP_LIMIT: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){ sqlite3_soft_heap_limit64(N); } returnSingleInt(v, sqlite3_soft_heap_limit64(-1)); break; } /* ** PRAGMA hard_heap_limit ** PRAGMA hard_heap_limit = N ** ** Invoke sqlite3_hard_heap_limit64() to query or set the hard heap ** limit. The hard heap limit can be activated or lowered by this ** pragma, but not raised or deactivated. Only the ** sqlite3_hard_heap_limit64() C-language API can raise or deactivate ** the hard heap limit. This allows an application to set a heap limit ** constraint that cannot be relaxed by an untrusted SQL script. */ case PragTyp_HARD_HEAP_LIMIT: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){ sqlite3_int64 iPrior = sqlite3_hard_heap_limit64(-1); if( N>0 && (iPrior==0 || iPrior>N) ) sqlite3_hard_heap_limit64(N); } returnSingleInt(v, sqlite3_hard_heap_limit64(-1)); break; } /* ** PRAGMA threads ** PRAGMA threads = N ** ** Configure the maximum number of worker threads. Return the new ** maximum, which might be less than requested. */ case PragTyp_THREADS: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK && N>=0 ){ sqlite3_limit(db, SQLITE_LIMIT_WORKER_THREADS, (int)(N&0x7fffffff)); } returnSingleInt(v, sqlite3_limit(db, SQLITE_LIMIT_WORKER_THREADS, -1)); break; } /* ** PRAGMA analysis_limit ** PRAGMA analysis_limit = N ** ** Configure the maximum number of rows that ANALYZE will examine ** in each index that it looks at. Return the new limit. */ case PragTyp_ANALYSIS_LIMIT: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK /* IMP: R-40975-20399 */ && N>=0 ){ db->nAnalysisLimit = (int)(N&0x7fffffff); } returnSingleInt(v, db->nAnalysisLimit); /* IMP: R-57594-65522 */ break; } #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* ** Report the current state of file logs for all databases */ case PragTyp_LOCK_STATUS: { static const char *const azLockName[] = { "unlocked", "shared", "reserved", "pending", "exclusive" }; int i; pParse->nMem = 2; for(i=0; inDb; i++){ Btree *pBt; const char *zState = "unknown"; int j; if( db->aDb[i].zDbSName==0 ) continue; pBt = db->aDb[i].pBt; if( pBt==0 || sqlite3BtreePager(pBt)==0 ){ zState = "closed"; }else if( sqlite3_file_control(db, i ? db->aDb[i].zDbSName : 0, SQLITE_FCNTL_LOCKSTATE, &j)==SQLITE_OK ){ zState = azLockName[j]; } sqlite3VdbeMultiLoad(v, 1, "ss", db->aDb[i].zDbSName, zState); } break; } #endif #if defined(SQLITE_ENABLE_CEROD) case PragTyp_ACTIVATE_EXTENSIONS: if( zRight ){ if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){ sqlite3_activate_cerod(&zRight[6]); } } break; #endif } /* End of the PRAGMA switch */ /* The following block is a no-op unless SQLITE_DEBUG is defined. Its only ** purpose is to execute assert() statements to verify that if the ** PragFlg_NoColumns1 flag is set and the caller specified an argument ** to the PRAGMA, the implementation has not added any OP_ResultRow ** instructions to the VM. */ if( (pPragma->mPragFlg & PragFlg_NoColumns1) && zRight ){ sqlite3VdbeVerifyNoResultRow(v); } pragma_out: sqlite3DbFree(db, zLeft); sqlite3DbFree(db, zRight); } #ifndef SQLITE_OMIT_VIRTUALTABLE /***************************************************************************** ** Implementation of an eponymous virtual table that runs a pragma. ** */ typedef struct PragmaVtab PragmaVtab; typedef struct PragmaVtabCursor PragmaVtabCursor; struct PragmaVtab { sqlite3_vtab base; /* Base class. Must be first */ sqlite3 *db; /* The database connection to which it belongs */ const PragmaName *pName; /* Name of the pragma */ u8 nHidden; /* Number of hidden columns */ u8 iHidden; /* Index of the first hidden column */ }; struct PragmaVtabCursor { sqlite3_vtab_cursor base; /* Base class. Must be first */ sqlite3_stmt *pPragma; /* The pragma statement to run */ sqlite_int64 iRowid; /* Current rowid */ char *azArg[2]; /* Value of the argument and schema */ }; /* ** Pragma virtual table module xConnect method. */ static int pragmaVtabConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ const PragmaName *pPragma = (const PragmaName*)pAux; PragmaVtab *pTab = 0; int rc; int i, j; char cSep = '('; StrAccum acc; char zBuf[200]; UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3_str_appendall(&acc, "CREATE TABLE x"); for(i=0, j=pPragma->iPragCName; inPragCName; i++, j++){ sqlite3_str_appendf(&acc, "%c\"%s\"", cSep, pragCName[j]); cSep = ','; } if( i==0 ){ sqlite3_str_appendf(&acc, "(\"%s\"", pPragma->zName); i++; } j = 0; if( pPragma->mPragFlg & PragFlg_Result1 ){ sqlite3_str_appendall(&acc, ",arg HIDDEN"); j++; } if( pPragma->mPragFlg & (PragFlg_SchemaOpt|PragFlg_SchemaReq) ){ sqlite3_str_appendall(&acc, ",schema HIDDEN"); j++; } sqlite3_str_append(&acc, ")", 1); sqlite3StrAccumFinish(&acc); assert( strlen(zBuf) < sizeof(zBuf)-1 ); rc = sqlite3_declare_vtab(db, zBuf); if( rc==SQLITE_OK ){ pTab = (PragmaVtab*)sqlite3_malloc(sizeof(PragmaVtab)); if( pTab==0 ){ rc = SQLITE_NOMEM; }else{ memset(pTab, 0, sizeof(PragmaVtab)); pTab->pName = pPragma; pTab->db = db; pTab->iHidden = i; pTab->nHidden = j; } }else{ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } *ppVtab = (sqlite3_vtab*)pTab; return rc; } /* ** Pragma virtual table module xDisconnect method. */ static int pragmaVtabDisconnect(sqlite3_vtab *pVtab){ PragmaVtab *pTab = (PragmaVtab*)pVtab; sqlite3_free(pTab); return SQLITE_OK; } /* Figure out the best index to use to search a pragma virtual table. ** ** There are not really any index choices. But we want to encourage the ** query planner to give == constraints on as many hidden parameters as ** possible, and especially on the first hidden parameter. So return a ** high cost if hidden parameters are unconstrained. */ static int pragmaVtabBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ PragmaVtab *pTab = (PragmaVtab*)tab; const struct sqlite3_index_constraint *pConstraint; int i, j; int seen[2]; pIdxInfo->estimatedCost = (double)1; if( pTab->nHidden==0 ){ return SQLITE_OK; } pConstraint = pIdxInfo->aConstraint; seen[0] = 0; seen[1] = 0; for(i=0; inConstraint; i++, pConstraint++){ if( pConstraint->usable==0 ) continue; if( pConstraint->op!=SQLITE_INDEX_CONSTRAINT_EQ ) continue; if( pConstraint->iColumn < pTab->iHidden ) continue; j = pConstraint->iColumn - pTab->iHidden; assert( j < 2 ); seen[j] = i+1; } if( seen[0]==0 ){ pIdxInfo->estimatedCost = (double)2147483647; pIdxInfo->estimatedRows = 2147483647; return SQLITE_OK; } j = seen[0]-1; pIdxInfo->aConstraintUsage[j].argvIndex = 1; pIdxInfo->aConstraintUsage[j].omit = 1; if( seen[1]==0 ) return SQLITE_OK; pIdxInfo->estimatedCost = (double)20; pIdxInfo->estimatedRows = 20; j = seen[1]-1; pIdxInfo->aConstraintUsage[j].argvIndex = 2; pIdxInfo->aConstraintUsage[j].omit = 1; return SQLITE_OK; } /* Create a new cursor for the pragma virtual table */ static int pragmaVtabOpen(sqlite3_vtab *pVtab, sqlite3_vtab_cursor **ppCursor){ PragmaVtabCursor *pCsr; pCsr = (PragmaVtabCursor*)sqlite3_malloc(sizeof(*pCsr)); if( pCsr==0 ) return SQLITE_NOMEM; memset(pCsr, 0, sizeof(PragmaVtabCursor)); pCsr->base.pVtab = pVtab; *ppCursor = &pCsr->base; return SQLITE_OK; } /* Clear all content from pragma virtual table cursor. */ static void pragmaVtabCursorClear(PragmaVtabCursor *pCsr){ int i; sqlite3_finalize(pCsr->pPragma); pCsr->pPragma = 0; for(i=0; iazArg); i++){ sqlite3_free(pCsr->azArg[i]); pCsr->azArg[i] = 0; } } /* Close a pragma virtual table cursor */ static int pragmaVtabClose(sqlite3_vtab_cursor *cur){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)cur; pragmaVtabCursorClear(pCsr); sqlite3_free(pCsr); return SQLITE_OK; } /* Advance the pragma virtual table cursor to the next row */ static int pragmaVtabNext(sqlite3_vtab_cursor *pVtabCursor){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; int rc = SQLITE_OK; /* Increment the xRowid value */ pCsr->iRowid++; assert( pCsr->pPragma ); if( SQLITE_ROW!=sqlite3_step(pCsr->pPragma) ){ rc = sqlite3_finalize(pCsr->pPragma); pCsr->pPragma = 0; pragmaVtabCursorClear(pCsr); } return rc; } /* ** Pragma virtual table module xFilter method. */ static int pragmaVtabFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; PragmaVtab *pTab = (PragmaVtab*)(pVtabCursor->pVtab); int rc; int i, j; StrAccum acc; char *zSql; UNUSED_PARAMETER(idxNum); UNUSED_PARAMETER(idxStr); pragmaVtabCursorClear(pCsr); j = (pTab->pName->mPragFlg & PragFlg_Result1)!=0 ? 0 : 1; for(i=0; iazArg) ); assert( pCsr->azArg[j]==0 ); if( zText ){ pCsr->azArg[j] = sqlite3_mprintf("%s", zText); if( pCsr->azArg[j]==0 ){ return SQLITE_NOMEM; } } } sqlite3StrAccumInit(&acc, 0, 0, 0, pTab->db->aLimit[SQLITE_LIMIT_SQL_LENGTH]); sqlite3_str_appendall(&acc, "PRAGMA "); if( pCsr->azArg[1] ){ sqlite3_str_appendf(&acc, "%Q.", pCsr->azArg[1]); } sqlite3_str_appendall(&acc, pTab->pName->zName); if( pCsr->azArg[0] ){ sqlite3_str_appendf(&acc, "=%Q", pCsr->azArg[0]); } zSql = sqlite3StrAccumFinish(&acc); if( zSql==0 ) return SQLITE_NOMEM; rc = sqlite3_prepare_v2(pTab->db, zSql, -1, &pCsr->pPragma, 0); sqlite3_free(zSql); if( rc!=SQLITE_OK ){ pTab->base.zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(pTab->db)); return rc; } return pragmaVtabNext(pVtabCursor); } /* ** Pragma virtual table module xEof method. */ static int pragmaVtabEof(sqlite3_vtab_cursor *pVtabCursor){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; return (pCsr->pPragma==0); } /* The xColumn method simply returns the corresponding column from ** the PRAGMA. */ static int pragmaVtabColumn( sqlite3_vtab_cursor *pVtabCursor, sqlite3_context *ctx, int i ){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; PragmaVtab *pTab = (PragmaVtab*)(pVtabCursor->pVtab); if( iiHidden ){ sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pPragma, i)); }else{ sqlite3_result_text(ctx, pCsr->azArg[i-pTab->iHidden],-1,SQLITE_TRANSIENT); } return SQLITE_OK; } /* ** Pragma virtual table module xRowid method. */ static int pragmaVtabRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *p){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; *p = pCsr->iRowid; return SQLITE_OK; } /* The pragma virtual table object */ static const sqlite3_module pragmaVtabModule = { 0, /* iVersion */ 0, /* xCreate - create a table */ pragmaVtabConnect, /* xConnect - connect to an existing table */ pragmaVtabBestIndex, /* xBestIndex - Determine search strategy */ pragmaVtabDisconnect, /* xDisconnect - Disconnect from a table */ 0, /* xDestroy - Drop a table */ pragmaVtabOpen, /* xOpen - open a cursor */ pragmaVtabClose, /* xClose - close a cursor */ pragmaVtabFilter, /* xFilter - configure scan constraints */ pragmaVtabNext, /* xNext - advance a cursor */ pragmaVtabEof, /* xEof */ pragmaVtabColumn, /* xColumn - read data */ pragmaVtabRowid, /* xRowid - read data */ 0, /* xUpdate - write data */ 0, /* xBegin - begin transaction */ 0, /* xSync - sync transaction */ 0, /* xCommit - commit transaction */ 0, /* xRollback - rollback transaction */ 0, /* xFindFunction - function overloading */ 0, /* xRename - rename the table */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; /* ** Check to see if zTabName is really the name of a pragma. If it is, ** then register an eponymous virtual table for that pragma and return ** a pointer to the Module object for the new virtual table. */ SQLITE_PRIVATE Module *sqlite3PragmaVtabRegister(sqlite3 *db, const char *zName){ const PragmaName *pName; assert( sqlite3_strnicmp(zName, "pragma_", 7)==0 ); pName = pragmaLocate(zName+7); if( pName==0 ) return 0; if( (pName->mPragFlg & (PragFlg_Result0|PragFlg_Result1))==0 ) return 0; assert( sqlite3HashFind(&db->aModule, zName)==0 ); return sqlite3VtabCreateModule(db, zName, &pragmaVtabModule, (void*)pName, 0); } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #endif /* SQLITE_OMIT_PRAGMA */ /************** End of pragma.c **********************************************/ /************** Begin file prepare.c *****************************************/ /* ** 2005 May 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the implementation of the sqlite3_prepare() ** interface, and routines that contribute to loading the database schema ** from disk. */ /* #include "sqliteInt.h" */ /* ** Fill the InitData structure with an error message that indicates ** that the database is corrupt. */ static void corruptSchema( InitData *pData, /* Initialization context */ char **azObj, /* Type and name of object being parsed */ const char *zExtra /* Error information */ ){ sqlite3 *db = pData->db; if( db->mallocFailed ){ pData->rc = SQLITE_NOMEM_BKPT; }else if( pData->pzErrMsg[0]!=0 ){ /* A error message has already been generated. Do not overwrite it */ }else if( pData->mInitFlags & (INITFLAG_AlterMask) ){ static const char *azAlterType[] = { "rename", "drop column", "add column" }; *pData->pzErrMsg = sqlite3MPrintf(db, "error in %s %s after %s: %s", azObj[0], azObj[1], azAlterType[(pData->mInitFlags&INITFLAG_AlterMask)-1], zExtra ); pData->rc = SQLITE_ERROR; }else if( db->flags & SQLITE_WriteSchema ){ pData->rc = SQLITE_CORRUPT_BKPT; }else{ char *z; const char *zObj = azObj[1] ? azObj[1] : "?"; z = sqlite3MPrintf(db, "malformed database schema (%s)", zObj); if( zExtra && zExtra[0] ) z = sqlite3MPrintf(db, "%z - %s", z, zExtra); *pData->pzErrMsg = z; pData->rc = SQLITE_CORRUPT_BKPT; } } /* ** Check to see if any sibling index (another index on the same table) ** of pIndex has the same root page number, and if it does, return true. ** This would indicate a corrupt schema. */ SQLITE_PRIVATE int sqlite3IndexHasDuplicateRootPage(Index *pIndex){ Index *p; for(p=pIndex->pTable->pIndex; p; p=p->pNext){ if( p->tnum==pIndex->tnum && p!=pIndex ) return 1; } return 0; } /* forward declaration */ static int sqlite3Prepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ Vdbe *pReprepare, /* VM being reprepared */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ); /* ** This is the callback routine for the code that initializes the ** database. See sqlite3Init() below for additional information. ** This routine is also called from the OP_ParseSchema opcode of the VDBE. ** ** Each callback contains the following information: ** ** argv[0] = type of object: "table", "index", "trigger", or "view". ** argv[1] = name of thing being created ** argv[2] = associated table if an index or trigger ** argv[3] = root page number for table or index. 0 for trigger or view. ** argv[4] = SQL text for the CREATE statement. ** */ SQLITE_PRIVATE int sqlite3InitCallback(void *pInit, int argc, char **argv, char **NotUsed){ InitData *pData = (InitData*)pInit; sqlite3 *db = pData->db; int iDb = pData->iDb; assert( argc==5 ); UNUSED_PARAMETER2(NotUsed, argc); assert( sqlite3_mutex_held(db->mutex) ); db->mDbFlags |= DBFLAG_EncodingFixed; if( argv==0 ) return 0; /* Might happen if EMPTY_RESULT_CALLBACKS are on */ pData->nInitRow++; if( db->mallocFailed ){ corruptSchema(pData, argv, 0); return 1; } assert( iDb>=0 && iDbnDb ); if( argv[3]==0 ){ corruptSchema(pData, argv, 0); }else if( argv[4] && 'c'==sqlite3UpperToLower[(unsigned char)argv[4][0]] && 'r'==sqlite3UpperToLower[(unsigned char)argv[4][1]] ){ /* Call the parser to process a CREATE TABLE, INDEX or VIEW. ** But because db->init.busy is set to 1, no VDBE code is generated ** or executed. All the parser does is build the internal data ** structures that describe the table, index, or view. ** ** No other valid SQL statement, other than the variable CREATE statements, ** can begin with the letters "C" and "R". Thus, it is not possible run ** any other kind of statement while parsing the schema, even a corrupt ** schema. */ int rc; u8 saved_iDb = db->init.iDb; sqlite3_stmt *pStmt; TESTONLY(int rcp); /* Return code from sqlite3_prepare() */ assert( db->init.busy ); db->init.iDb = iDb; if( sqlite3GetUInt32(argv[3], &db->init.newTnum)==0 || (db->init.newTnum>pData->mxPage && pData->mxPage>0) ){ if( sqlite3Config.bExtraSchemaChecks ){ corruptSchema(pData, argv, "invalid rootpage"); } } db->init.orphanTrigger = 0; db->init.azInit = (const char**)argv; pStmt = 0; TESTONLY(rcp = ) sqlite3Prepare(db, argv[4], -1, 0, 0, &pStmt, 0); rc = db->errCode; assert( (rc&0xFF)==(rcp&0xFF) ); db->init.iDb = saved_iDb; /* assert( saved_iDb==0 || (db->mDbFlags & DBFLAG_Vacuum)!=0 ); */ if( SQLITE_OK!=rc ){ if( db->init.orphanTrigger ){ assert( iDb==1 ); }else{ if( rc > pData->rc ) pData->rc = rc; if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){ corruptSchema(pData, argv, sqlite3_errmsg(db)); } } } db->init.azInit = sqlite3StdType; /* Any array of string ptrs will do */ sqlite3_finalize(pStmt); }else if( argv[1]==0 || (argv[4]!=0 && argv[4][0]!=0) ){ corruptSchema(pData, argv, 0); }else{ /* If the SQL column is blank it means this is an index that ** was created to be the PRIMARY KEY or to fulfill a UNIQUE ** constraint for a CREATE TABLE. The index should have already ** been created when we processed the CREATE TABLE. All we have ** to do here is record the root page number for that index. */ Index *pIndex; pIndex = sqlite3FindIndex(db, argv[1], db->aDb[iDb].zDbSName); if( pIndex==0 ){ corruptSchema(pData, argv, "orphan index"); }else if( sqlite3GetUInt32(argv[3],&pIndex->tnum)==0 || pIndex->tnum<2 || pIndex->tnum>pData->mxPage || sqlite3IndexHasDuplicateRootPage(pIndex) ){ if( sqlite3Config.bExtraSchemaChecks ){ corruptSchema(pData, argv, "invalid rootpage"); } } } return 0; } /* ** Attempt to read the database schema and initialize internal ** data structures for a single database file. The index of the ** database file is given by iDb. iDb==0 is used for the main ** database. iDb==1 should never be used. iDb>=2 is used for ** auxiliary databases. Return one of the SQLITE_ error codes to ** indicate success or failure. */ SQLITE_PRIVATE int sqlite3InitOne(sqlite3 *db, int iDb, char **pzErrMsg, u32 mFlags){ int rc; int i; #ifndef SQLITE_OMIT_DEPRECATED int size; #endif Db *pDb; char const *azArg[6]; int meta[5]; InitData initData; const char *zSchemaTabName; int openedTransaction = 0; int mask = ((db->mDbFlags & DBFLAG_EncodingFixed) | ~DBFLAG_EncodingFixed); assert( (db->mDbFlags & DBFLAG_SchemaKnownOk)==0 ); assert( iDb>=0 && iDbnDb ); assert( db->aDb[iDb].pSchema ); assert( sqlite3_mutex_held(db->mutex) ); assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) ); db->init.busy = 1; /* Construct the in-memory representation schema tables (sqlite_schema or ** sqlite_temp_schema) by invoking the parser directly. The appropriate ** table name will be inserted automatically by the parser so we can just ** use the abbreviation "x" here. The parser will also automatically tag ** the schema table as read-only. */ azArg[0] = "table"; azArg[1] = zSchemaTabName = SCHEMA_TABLE(iDb); azArg[2] = azArg[1]; azArg[3] = "1"; azArg[4] = "CREATE TABLE x(type text,name text,tbl_name text," "rootpage int,sql text)"; azArg[5] = 0; initData.db = db; initData.iDb = iDb; initData.rc = SQLITE_OK; initData.pzErrMsg = pzErrMsg; initData.mInitFlags = mFlags; initData.nInitRow = 0; initData.mxPage = 0; sqlite3InitCallback(&initData, 5, (char **)azArg, 0); db->mDbFlags &= mask; if( initData.rc ){ rc = initData.rc; goto error_out; } /* Create a cursor to hold the database open */ pDb = &db->aDb[iDb]; if( pDb->pBt==0 ){ assert( iDb==1 ); DbSetProperty(db, 1, DB_SchemaLoaded); rc = SQLITE_OK; goto error_out; } /* If there is not already a read-only (or read-write) transaction opened ** on the b-tree database, open one now. If a transaction is opened, it ** will be closed before this function returns. */ sqlite3BtreeEnter(pDb->pBt); if( sqlite3BtreeTxnState(pDb->pBt)==SQLITE_TXN_NONE ){ rc = sqlite3BtreeBeginTrans(pDb->pBt, 0, 0); if( rc!=SQLITE_OK ){ sqlite3SetString(pzErrMsg, db, sqlite3ErrStr(rc)); goto initone_error_out; } openedTransaction = 1; } /* Get the database meta information. ** ** Meta values are as follows: ** meta[0] Schema cookie. Changes with each schema change. ** meta[1] File format of schema layer. ** meta[2] Size of the page cache. ** meta[3] Largest rootpage (auto/incr_vacuum mode) ** meta[4] Db text encoding. 1:UTF-8 2:UTF-16LE 3:UTF-16BE ** meta[5] User version ** meta[6] Incremental vacuum mode ** meta[7] unused ** meta[8] unused ** meta[9] unused ** ** Note: The #defined SQLITE_UTF* symbols in sqliteInt.h correspond to ** the possible values of meta[4]. */ for(i=0; ipBt, i+1, (u32 *)&meta[i]); } if( (db->flags & SQLITE_ResetDatabase)!=0 ){ memset(meta, 0, sizeof(meta)); } pDb->pSchema->schema_cookie = meta[BTREE_SCHEMA_VERSION-1]; /* If opening a non-empty database, check the text encoding. For the ** main database, set sqlite3.enc to the encoding of the main database. ** For an attached db, it is an error if the encoding is not the same ** as sqlite3.enc. */ if( meta[BTREE_TEXT_ENCODING-1] ){ /* text encoding */ if( iDb==0 && (db->mDbFlags & DBFLAG_EncodingFixed)==0 ){ u8 encoding; #ifndef SQLITE_OMIT_UTF16 /* If opening the main database, set ENC(db). */ encoding = (u8)meta[BTREE_TEXT_ENCODING-1] & 3; if( encoding==0 ) encoding = SQLITE_UTF8; #else encoding = SQLITE_UTF8; #endif sqlite3SetTextEncoding(db, encoding); }else{ /* If opening an attached database, the encoding much match ENC(db) */ if( (meta[BTREE_TEXT_ENCODING-1] & 3)!=ENC(db) ){ sqlite3SetString(pzErrMsg, db, "attached databases must use the same" " text encoding as main database"); rc = SQLITE_ERROR; goto initone_error_out; } } } pDb->pSchema->enc = ENC(db); if( pDb->pSchema->cache_size==0 ){ #ifndef SQLITE_OMIT_DEPRECATED size = sqlite3AbsInt32(meta[BTREE_DEFAULT_CACHE_SIZE-1]); if( size==0 ){ size = SQLITE_DEFAULT_CACHE_SIZE; } pDb->pSchema->cache_size = size; #else pDb->pSchema->cache_size = SQLITE_DEFAULT_CACHE_SIZE; #endif sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); } /* ** file_format==1 Version 3.0.0. ** file_format==2 Version 3.1.3. // ALTER TABLE ADD COLUMN ** file_format==3 Version 3.1.4. // ditto but with non-NULL defaults ** file_format==4 Version 3.3.0. // DESC indices. Boolean constants */ pDb->pSchema->file_format = (u8)meta[BTREE_FILE_FORMAT-1]; if( pDb->pSchema->file_format==0 ){ pDb->pSchema->file_format = 1; } if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){ sqlite3SetString(pzErrMsg, db, "unsupported file format"); rc = SQLITE_ERROR; goto initone_error_out; } /* Ticket #2804: When we open a database in the newer file format, ** clear the legacy_file_format pragma flag so that a VACUUM will ** not downgrade the database and thus invalidate any descending ** indices that the user might have created. */ if( iDb==0 && meta[BTREE_FILE_FORMAT-1]>=4 ){ db->flags &= ~(u64)SQLITE_LegacyFileFmt; } /* Read the schema information out of the schema tables */ assert( db->init.busy ); initData.mxPage = sqlite3BtreeLastPage(pDb->pBt); { char *zSql; zSql = sqlite3MPrintf(db, "SELECT*FROM\"%w\".%s ORDER BY rowid", db->aDb[iDb].zDbSName, zSchemaTabName); #ifndef SQLITE_OMIT_AUTHORIZATION { sqlite3_xauth xAuth; xAuth = db->xAuth; db->xAuth = 0; #endif rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; } #endif if( rc==SQLITE_OK ) rc = initData.rc; sqlite3DbFree(db, zSql); #ifndef SQLITE_OMIT_ANALYZE if( rc==SQLITE_OK ){ sqlite3AnalysisLoad(db, iDb); } #endif } assert( pDb == &(db->aDb[iDb]) ); if( db->mallocFailed ){ rc = SQLITE_NOMEM_BKPT; sqlite3ResetAllSchemasOfConnection(db); pDb = &db->aDb[iDb]; }else if( rc==SQLITE_OK || (db->flags&SQLITE_NoSchemaError)){ /* Hack: If the SQLITE_NoSchemaError flag is set, then consider ** the schema loaded, even if errors (other than OOM) occurred. In ** this situation the current sqlite3_prepare() operation will fail, ** but the following one will attempt to compile the supplied statement ** against whatever subset of the schema was loaded before the error ** occurred. ** ** The primary purpose of this is to allow access to the sqlite_schema ** table even when its contents have been corrupted. */ DbSetProperty(db, iDb, DB_SchemaLoaded); rc = SQLITE_OK; } /* Jump here for an error that occurs after successfully allocating ** curMain and calling sqlite3BtreeEnter(). For an error that occurs ** before that point, jump to error_out. */ initone_error_out: if( openedTransaction ){ sqlite3BtreeCommit(pDb->pBt); } sqlite3BtreeLeave(pDb->pBt); error_out: if( rc ){ if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomFault(db); } sqlite3ResetOneSchema(db, iDb); } db->init.busy = 0; return rc; } /* ** Initialize all database files - the main database file, the file ** used to store temporary tables, and any additional database files ** created using ATTACH statements. Return a success code. If an ** error occurs, write an error message into *pzErrMsg. ** ** After a database is initialized, the DB_SchemaLoaded bit is set ** bit is set in the flags field of the Db structure. */ SQLITE_PRIVATE int sqlite3Init(sqlite3 *db, char **pzErrMsg){ int i, rc; int commit_internal = !(db->mDbFlags&DBFLAG_SchemaChange); assert( sqlite3_mutex_held(db->mutex) ); assert( sqlite3BtreeHoldsMutex(db->aDb[0].pBt) ); assert( db->init.busy==0 ); ENC(db) = SCHEMA_ENC(db); assert( db->nDb>0 ); /* Do the main schema first */ if( !DbHasProperty(db, 0, DB_SchemaLoaded) ){ rc = sqlite3InitOne(db, 0, pzErrMsg, 0); if( rc ) return rc; } /* All other schemas after the main schema. The "temp" schema must be last */ for(i=db->nDb-1; i>0; i--){ assert( i==1 || sqlite3BtreeHoldsMutex(db->aDb[i].pBt) ); if( !DbHasProperty(db, i, DB_SchemaLoaded) ){ rc = sqlite3InitOne(db, i, pzErrMsg, 0); if( rc ) return rc; } } if( commit_internal ){ sqlite3CommitInternalChanges(db); } return SQLITE_OK; } /* ** This routine is a no-op if the database schema is already initialized. ** Otherwise, the schema is loaded. An error code is returned. */ SQLITE_PRIVATE int sqlite3ReadSchema(Parse *pParse){ int rc = SQLITE_OK; sqlite3 *db = pParse->db; assert( sqlite3_mutex_held(db->mutex) ); if( !db->init.busy ){ rc = sqlite3Init(db, &pParse->zErrMsg); if( rc!=SQLITE_OK ){ pParse->rc = rc; pParse->nErr++; }else if( db->noSharedCache ){ db->mDbFlags |= DBFLAG_SchemaKnownOk; } } return rc; } /* ** Check schema cookies in all databases. If any cookie is out ** of date set pParse->rc to SQLITE_SCHEMA. If all schema cookies ** make no changes to pParse->rc. */ static void schemaIsValid(Parse *pParse){ sqlite3 *db = pParse->db; int iDb; int rc; int cookie; assert( pParse->checkSchema ); assert( sqlite3_mutex_held(db->mutex) ); for(iDb=0; iDbnDb; iDb++){ int openedTransaction = 0; /* True if a transaction is opened */ Btree *pBt = db->aDb[iDb].pBt; /* Btree database to read cookie from */ if( pBt==0 ) continue; /* If there is not already a read-only (or read-write) transaction opened ** on the b-tree database, open one now. If a transaction is opened, it ** will be closed immediately after reading the meta-value. */ if( sqlite3BtreeTxnState(pBt)==SQLITE_TXN_NONE ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomFault(db); pParse->rc = SQLITE_NOMEM; } if( rc!=SQLITE_OK ) return; openedTransaction = 1; } /* Read the schema cookie from the database. If it does not match the ** value stored as part of the in-memory schema representation, ** set Parse.rc to SQLITE_SCHEMA. */ sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){ sqlite3ResetOneSchema(db, iDb); pParse->rc = SQLITE_SCHEMA; } /* Close the transaction, if one was opened. */ if( openedTransaction ){ sqlite3BtreeCommit(pBt); } } } /* ** Convert a schema pointer into the iDb index that indicates ** which database file in db->aDb[] the schema refers to. ** ** If the same database is attached more than once, the first ** attached database is returned. */ SQLITE_PRIVATE int sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema){ int i = -32768; /* If pSchema is NULL, then return -32768. This happens when code in ** expr.c is trying to resolve a reference to a transient table (i.e. one ** created by a sub-select). In this case the return value of this ** function should never be used. ** ** We return -32768 instead of the more usual -1 simply because using ** -32768 as the incorrect index into db->aDb[] is much ** more likely to cause a segfault than -1 (of course there are assert() ** statements too, but it never hurts to play the odds) and ** -32768 will still fit into a 16-bit signed integer. */ assert( sqlite3_mutex_held(db->mutex) ); if( pSchema ){ for(i=0; 1; i++){ assert( inDb ); if( db->aDb[i].pSchema==pSchema ){ break; } } assert( i>=0 && inDb ); } return i; } /* ** Free all memory allocations in the pParse object */ SQLITE_PRIVATE void sqlite3ParseObjectReset(Parse *pParse){ sqlite3 *db = pParse->db; assert( db!=0 ); assert( db->pParse==pParse ); assert( pParse->nested==0 ); #ifndef SQLITE_OMIT_SHARED_CACHE sqlite3DbFree(db, pParse->aTableLock); #endif while( pParse->pCleanup ){ ParseCleanup *pCleanup = pParse->pCleanup; pParse->pCleanup = pCleanup->pNext; pCleanup->xCleanup(db, pCleanup->pPtr); sqlite3DbFreeNN(db, pCleanup); } sqlite3DbFree(db, pParse->aLabel); if( pParse->pConstExpr ){ sqlite3ExprListDelete(db, pParse->pConstExpr); } assert( db->lookaside.bDisable >= pParse->disableLookaside ); db->lookaside.bDisable -= pParse->disableLookaside; db->lookaside.sz = db->lookaside.bDisable ? 0 : db->lookaside.szTrue; assert( pParse->db->pParse==pParse ); db->pParse = pParse->pOuterParse; pParse->db = 0; pParse->disableLookaside = 0; } /* ** Add a new cleanup operation to a Parser. The cleanup should happen when ** the parser object is destroyed. But, beware: the cleanup might happen ** immediately. ** ** Use this mechanism for uncommon cleanups. There is a higher setup ** cost for this mechansim (an extra malloc), so it should not be used ** for common cleanups that happen on most calls. But for less ** common cleanups, we save a single NULL-pointer comparison in ** sqlite3ParseObjectReset(), which reduces the total CPU cycle count. ** ** If a memory allocation error occurs, then the cleanup happens immediately. ** When either SQLITE_DEBUG or SQLITE_COVERAGE_TEST are defined, the ** pParse->earlyCleanup flag is set in that case. Calling code show verify ** that test cases exist for which this happens, to guard against possible ** use-after-free errors following an OOM. The preferred way to do this is ** to immediately follow the call to this routine with: ** ** testcase( pParse->earlyCleanup ); ** ** This routine returns a copy of its pPtr input (the third parameter) ** except if an early cleanup occurs, in which case it returns NULL. So ** another way to check for early cleanup is to check the return value. ** Or, stop using the pPtr parameter with this call and use only its ** return value thereafter. Something like this: ** ** pObj = sqlite3ParserAddCleanup(pParse, destructor, pObj); */ SQLITE_PRIVATE void *sqlite3ParserAddCleanup( Parse *pParse, /* Destroy when this Parser finishes */ void (*xCleanup)(sqlite3*,void*), /* The cleanup routine */ void *pPtr /* Pointer to object to be cleaned up */ ){ ParseCleanup *pCleanup = sqlite3DbMallocRaw(pParse->db, sizeof(*pCleanup)); if( pCleanup ){ pCleanup->pNext = pParse->pCleanup; pParse->pCleanup = pCleanup; pCleanup->pPtr = pPtr; pCleanup->xCleanup = xCleanup; }else{ xCleanup(pParse->db, pPtr); pPtr = 0; #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) pParse->earlyCleanup = 1; #endif } return pPtr; } /* ** Turn bulk memory into a valid Parse object and link that Parse object ** into database connection db. ** ** Call sqlite3ParseObjectReset() to undo this operation. ** ** Caution: Do not confuse this routine with sqlite3ParseObjectInit() which ** is generated by Lemon. */ SQLITE_PRIVATE void sqlite3ParseObjectInit(Parse *pParse, sqlite3 *db){ memset(PARSE_HDR(pParse), 0, PARSE_HDR_SZ); memset(PARSE_TAIL(pParse), 0, PARSE_TAIL_SZ); assert( db->pParse!=pParse ); pParse->pOuterParse = db->pParse; db->pParse = pParse; pParse->db = db; if( db->mallocFailed ) sqlite3ErrorMsg(pParse, "out of memory"); } /* ** Compile the UTF-8 encoded SQL statement zSql into a statement handle. */ static int sqlite3Prepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ Vdbe *pReprepare, /* VM being reprepared */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc = SQLITE_OK; /* Result code */ int i; /* Loop counter */ Parse sParse; /* Parsing context */ /* sqlite3ParseObjectInit(&sParse, db); // inlined for performance */ memset(PARSE_HDR(&sParse), 0, PARSE_HDR_SZ); memset(PARSE_TAIL(&sParse), 0, PARSE_TAIL_SZ); sParse.pOuterParse = db->pParse; db->pParse = &sParse; sParse.db = db; sParse.pReprepare = pReprepare; assert( ppStmt && *ppStmt==0 ); if( db->mallocFailed ) sqlite3ErrorMsg(&sParse, "out of memory"); assert( sqlite3_mutex_held(db->mutex) ); /* For a long-term use prepared statement avoid the use of ** lookaside memory. */ if( prepFlags & SQLITE_PREPARE_PERSISTENT ){ sParse.disableLookaside++; DisableLookaside; } sParse.disableVtab = (prepFlags & SQLITE_PREPARE_NO_VTAB)!=0; /* Check to verify that it is possible to get a read lock on all ** database schemas. The inability to get a read lock indicates that ** some other database connection is holding a write-lock, which in ** turn means that the other connection has made uncommitted changes ** to the schema. ** ** Were we to proceed and prepare the statement against the uncommitted ** schema changes and if those schema changes are subsequently rolled ** back and different changes are made in their place, then when this ** prepared statement goes to run the schema cookie would fail to detect ** the schema change. Disaster would follow. ** ** This thread is currently holding mutexes on all Btrees (because ** of the sqlite3BtreeEnterAll() in sqlite3LockAndPrepare()) so it ** is not possible for another thread to start a new schema change ** while this routine is running. Hence, we do not need to hold ** locks on the schema, we just need to make sure nobody else is ** holding them. ** ** Note that setting READ_UNCOMMITTED overrides most lock detection, ** but it does *not* override schema lock detection, so this all still ** works even if READ_UNCOMMITTED is set. */ if( !db->noSharedCache ){ for(i=0; inDb; i++) { Btree *pBt = db->aDb[i].pBt; if( pBt ){ assert( sqlite3BtreeHoldsMutex(pBt) ); rc = sqlite3BtreeSchemaLocked(pBt); if( rc ){ const char *zDb = db->aDb[i].zDbSName; sqlite3ErrorWithMsg(db, rc, "database schema is locked: %s", zDb); testcase( db->flags & SQLITE_ReadUncommit ); goto end_prepare; } } } } sqlite3VtabUnlockList(db); if( nBytes>=0 && (nBytes==0 || zSql[nBytes-1]!=0) ){ char *zSqlCopy; int mxLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH]; testcase( nBytes==mxLen ); testcase( nBytes==mxLen+1 ); if( nBytes>mxLen ){ sqlite3ErrorWithMsg(db, SQLITE_TOOBIG, "statement too long"); rc = sqlite3ApiExit(db, SQLITE_TOOBIG); goto end_prepare; } zSqlCopy = sqlite3DbStrNDup(db, zSql, nBytes); if( zSqlCopy ){ sqlite3RunParser(&sParse, zSqlCopy); sParse.zTail = &zSql[sParse.zTail-zSqlCopy]; sqlite3DbFree(db, zSqlCopy); }else{ sParse.zTail = &zSql[nBytes]; } }else{ sqlite3RunParser(&sParse, zSql); } assert( 0==sParse.nQueryLoop ); if( pzTail ){ *pzTail = sParse.zTail; } if( db->init.busy==0 ){ sqlite3VdbeSetSql(sParse.pVdbe, zSql, (int)(sParse.zTail-zSql), prepFlags); } if( db->mallocFailed ){ sParse.rc = SQLITE_NOMEM_BKPT; sParse.checkSchema = 0; } if( sParse.rc!=SQLITE_OK && sParse.rc!=SQLITE_DONE ){ if( sParse.checkSchema && db->init.busy==0 ){ schemaIsValid(&sParse); } if( sParse.pVdbe ){ sqlite3VdbeFinalize(sParse.pVdbe); } assert( 0==(*ppStmt) ); rc = sParse.rc; if( sParse.zErrMsg ){ sqlite3ErrorWithMsg(db, rc, "%s", sParse.zErrMsg); sqlite3DbFree(db, sParse.zErrMsg); }else{ sqlite3Error(db, rc); } }else{ assert( sParse.zErrMsg==0 ); *ppStmt = (sqlite3_stmt*)sParse.pVdbe; rc = SQLITE_OK; sqlite3ErrorClear(db); } /* Delete any TriggerPrg structures allocated while parsing this statement. */ while( sParse.pTriggerPrg ){ TriggerPrg *pT = sParse.pTriggerPrg; sParse.pTriggerPrg = pT->pNext; sqlite3DbFree(db, pT); } end_prepare: sqlite3ParseObjectReset(&sParse); return rc; } static int sqlite3LockAndPrepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ Vdbe *pOld, /* VM being reprepared */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; int cnt = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( ppStmt==0 ) return SQLITE_MISUSE_BKPT; #endif *ppStmt = 0; if( !sqlite3SafetyCheckOk(db)||zSql==0 ){ return SQLITE_MISUSE_BKPT; } sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); do{ /* Make multiple attempts to compile the SQL, until it either succeeds ** or encounters a permanent error. A schema problem after one schema ** reset is considered a permanent error. */ rc = sqlite3Prepare(db, zSql, nBytes, prepFlags, pOld, ppStmt, pzTail); assert( rc==SQLITE_OK || *ppStmt==0 ); if( rc==SQLITE_OK || db->mallocFailed ) break; }while( rc==SQLITE_ERROR_RETRY || (rc==SQLITE_SCHEMA && (sqlite3ResetOneSchema(db,-1), cnt++)==0) ); sqlite3BtreeLeaveAll(db); rc = sqlite3ApiExit(db, rc); assert( (rc&db->errMask)==rc ); db->busyHandler.nBusy = 0; sqlite3_mutex_leave(db->mutex); return rc; } /* ** Rerun the compilation of a statement after a schema change. ** ** If the statement is successfully recompiled, return SQLITE_OK. Otherwise, ** if the statement cannot be recompiled because another connection has ** locked the sqlite3_schema table, return SQLITE_LOCKED. If any other error ** occurs, return SQLITE_SCHEMA. */ SQLITE_PRIVATE int sqlite3Reprepare(Vdbe *p){ int rc; sqlite3_stmt *pNew; const char *zSql; sqlite3 *db; u8 prepFlags; assert( sqlite3_mutex_held(sqlite3VdbeDb(p)->mutex) ); zSql = sqlite3_sql((sqlite3_stmt *)p); assert( zSql!=0 ); /* Reprepare only called for prepare_v2() statements */ db = sqlite3VdbeDb(p); assert( sqlite3_mutex_held(db->mutex) ); prepFlags = sqlite3VdbePrepareFlags(p); rc = sqlite3LockAndPrepare(db, zSql, -1, prepFlags, p, &pNew, 0); if( rc ){ if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); } assert( pNew==0 ); return rc; }else{ assert( pNew!=0 ); } sqlite3VdbeSwap((Vdbe*)pNew, p); sqlite3TransferBindings(pNew, (sqlite3_stmt*)p); sqlite3VdbeResetStepResult((Vdbe*)pNew); sqlite3VdbeFinalize((Vdbe*)pNew); return SQLITE_OK; } /* ** Two versions of the official API. Legacy and new use. In the legacy ** version, the original SQL text is not saved in the prepared statement ** and so if a schema change occurs, SQLITE_SCHEMA is returned by ** sqlite3_step(). In the new version, the original SQL text is retained ** and the statement is automatically recompiled if an schema change ** occurs. */ SQLITE_API int sqlite3_prepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3LockAndPrepare(db,zSql,nBytes,0,0,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } SQLITE_API int sqlite3_prepare_v2( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; /* EVIDENCE-OF: R-37923-12173 The sqlite3_prepare_v2() interface works ** exactly the same as sqlite3_prepare_v3() with a zero prepFlags ** parameter. ** ** Proof in that the 5th parameter to sqlite3LockAndPrepare is 0 */ rc = sqlite3LockAndPrepare(db,zSql,nBytes,SQLITE_PREPARE_SAVESQL,0, ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); return rc; } SQLITE_API int sqlite3_prepare_v3( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; /* EVIDENCE-OF: R-56861-42673 sqlite3_prepare_v3() differs from ** sqlite3_prepare_v2() only in having the extra prepFlags parameter, ** which is a bit array consisting of zero or more of the ** SQLITE_PREPARE_* flags. ** ** Proof by comparison to the implementation of sqlite3_prepare_v2() ** directly above. */ rc = sqlite3LockAndPrepare(db,zSql,nBytes, SQLITE_PREPARE_SAVESQL|(prepFlags&SQLITE_PREPARE_MASK), 0,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); return rc; } #ifndef SQLITE_OMIT_UTF16 /* ** Compile the UTF-16 encoded SQL statement zSql into a statement handle. */ static int sqlite3Prepare16( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ /* This function currently works by first transforming the UTF-16 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The ** tricky bit is figuring out the pointer to return in *pzTail. */ char *zSql8; const char *zTail8 = 0; int rc = SQLITE_OK; #ifdef SQLITE_ENABLE_API_ARMOR if( ppStmt==0 ) return SQLITE_MISUSE_BKPT; #endif *ppStmt = 0; if( !sqlite3SafetyCheckOk(db)||zSql==0 ){ return SQLITE_MISUSE_BKPT; } if( nBytes>=0 ){ int sz; const char *z = (const char*)zSql; for(sz=0; szmutex); zSql8 = sqlite3Utf16to8(db, zSql, nBytes, SQLITE_UTF16NATIVE); if( zSql8 ){ rc = sqlite3LockAndPrepare(db, zSql8, -1, prepFlags, 0, ppStmt, &zTail8); } if( zTail8 && pzTail ){ /* If sqlite3_prepare returns a tail pointer, we calculate the ** equivalent pointer into the UTF-16 string by counting the unicode ** characters between zSql8 and zTail8, and then returning a pointer ** the same number of characters into the UTF-16 string. */ int chars_parsed = sqlite3Utf8CharLen(zSql8, (int)(zTail8-zSql8)); *pzTail = (u8 *)zSql + sqlite3Utf16ByteLen(zSql, chars_parsed); } sqlite3DbFree(db, zSql8); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Two versions of the official API. Legacy and new use. In the legacy ** version, the original SQL text is not saved in the prepared statement ** and so if a schema change occurs, SQLITE_SCHEMA is returned by ** sqlite3_step(). In the new version, the original SQL text is retained ** and the statement is automatically recompiled if an schema change ** occurs. */ SQLITE_API int sqlite3_prepare16( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3Prepare16(db,zSql,nBytes,0,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } SQLITE_API int sqlite3_prepare16_v2( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3Prepare16(db,zSql,nBytes,SQLITE_PREPARE_SAVESQL,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } SQLITE_API int sqlite3_prepare16_v3( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3Prepare16(db,zSql,nBytes, SQLITE_PREPARE_SAVESQL|(prepFlags&SQLITE_PREPARE_MASK), ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } #endif /* SQLITE_OMIT_UTF16 */ /************** End of prepare.c *********************************************/ /************** Begin file select.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. */ /* #include "sqliteInt.h" */ /* ** An instance of the following object is used to record information about ** how to process the DISTINCT keyword, to simplify passing that information ** into the selectInnerLoop() routine. */ typedef struct DistinctCtx DistinctCtx; struct DistinctCtx { u8 isTnct; /* True if the DISTINCT keyword is present */ u8 eTnctType; /* One of the WHERE_DISTINCT_* operators */ int tabTnct; /* Ephemeral table used for DISTINCT processing */ int addrTnct; /* Address of OP_OpenEphemeral opcode for tabTnct */ }; /* ** An instance of the following object is used to record information about ** the ORDER BY (or GROUP BY) clause of query is being coded. ** ** The aDefer[] array is used by the sorter-references optimization. For ** example, assuming there is no index that can be used for the ORDER BY, ** for the query: ** ** SELECT a, bigblob FROM t1 ORDER BY a LIMIT 10; ** ** it may be more efficient to add just the "a" values to the sorter, and ** retrieve the associated "bigblob" values directly from table t1 as the ** 10 smallest "a" values are extracted from the sorter. ** ** When the sorter-reference optimization is used, there is one entry in the ** aDefer[] array for each database table that may be read as values are ** extracted from the sorter. */ typedef struct SortCtx SortCtx; struct SortCtx { ExprList *pOrderBy; /* The ORDER BY (or GROUP BY clause) */ int nOBSat; /* Number of ORDER BY terms satisfied by indices */ int iECursor; /* Cursor number for the sorter */ int regReturn; /* Register holding block-output return address */ int labelBkOut; /* Start label for the block-output subroutine */ int addrSortIndex; /* Address of the OP_SorterOpen or OP_OpenEphemeral */ int labelDone; /* Jump here when done, ex: LIMIT reached */ int labelOBLopt; /* Jump here when sorter is full */ u8 sortFlags; /* Zero or more SORTFLAG_* bits */ #ifdef SQLITE_ENABLE_SORTER_REFERENCES u8 nDefer; /* Number of valid entries in aDefer[] */ struct DeferredCsr { Table *pTab; /* Table definition */ int iCsr; /* Cursor number for table */ int nKey; /* Number of PK columns for table pTab (>=1) */ } aDefer[4]; #endif struct RowLoadInfo *pDeferredRowLoad; /* Deferred row loading info or NULL */ }; #define SORTFLAG_UseSorter 0x01 /* Use SorterOpen instead of OpenEphemeral */ /* ** Delete all the content of a Select structure. Deallocate the structure ** itself depending on the value of bFree ** ** If bFree==1, call sqlite3DbFree() on the p object. ** If bFree==0, Leave the first Select object unfreed */ static void clearSelect(sqlite3 *db, Select *p, int bFree){ while( p ){ Select *pPrior = p->pPrior; sqlite3ExprListDelete(db, p->pEList); sqlite3SrcListDelete(db, p->pSrc); sqlite3ExprDelete(db, p->pWhere); sqlite3ExprListDelete(db, p->pGroupBy); sqlite3ExprDelete(db, p->pHaving); sqlite3ExprListDelete(db, p->pOrderBy); sqlite3ExprDelete(db, p->pLimit); if( OK_IF_ALWAYS_TRUE(p->pWith) ) sqlite3WithDelete(db, p->pWith); #ifndef SQLITE_OMIT_WINDOWFUNC if( OK_IF_ALWAYS_TRUE(p->pWinDefn) ){ sqlite3WindowListDelete(db, p->pWinDefn); } while( p->pWin ){ assert( p->pWin->ppThis==&p->pWin ); sqlite3WindowUnlinkFromSelect(p->pWin); } #endif if( bFree ) sqlite3DbFreeNN(db, p); p = pPrior; bFree = 1; } } /* ** Initialize a SelectDest structure. */ SQLITE_PRIVATE void sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm){ pDest->eDest = (u8)eDest; pDest->iSDParm = iParm; pDest->iSDParm2 = 0; pDest->zAffSdst = 0; pDest->iSdst = 0; pDest->nSdst = 0; } /* ** Allocate a new Select structure and return a pointer to that ** structure. */ SQLITE_PRIVATE Select *sqlite3SelectNew( Parse *pParse, /* Parsing context */ ExprList *pEList, /* which columns to include in the result */ SrcList *pSrc, /* the FROM clause -- which tables to scan */ Expr *pWhere, /* the WHERE clause */ ExprList *pGroupBy, /* the GROUP BY clause */ Expr *pHaving, /* the HAVING clause */ ExprList *pOrderBy, /* the ORDER BY clause */ u32 selFlags, /* Flag parameters, such as SF_Distinct */ Expr *pLimit /* LIMIT value. NULL means not used */ ){ Select *pNew, *pAllocated; Select standin; pAllocated = pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) ); if( pNew==0 ){ assert( pParse->db->mallocFailed ); pNew = &standin; } if( pEList==0 ){ pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(pParse->db,TK_ASTERISK,0)); } pNew->pEList = pEList; pNew->op = TK_SELECT; pNew->selFlags = selFlags; pNew->iLimit = 0; pNew->iOffset = 0; pNew->selId = ++pParse->nSelect; pNew->addrOpenEphm[0] = -1; pNew->addrOpenEphm[1] = -1; pNew->nSelectRow = 0; if( pSrc==0 ) pSrc = sqlite3DbMallocZero(pParse->db, sizeof(*pSrc)); pNew->pSrc = pSrc; pNew->pWhere = pWhere; pNew->pGroupBy = pGroupBy; pNew->pHaving = pHaving; pNew->pOrderBy = pOrderBy; pNew->pPrior = 0; pNew->pNext = 0; pNew->pLimit = pLimit; pNew->pWith = 0; #ifndef SQLITE_OMIT_WINDOWFUNC pNew->pWin = 0; pNew->pWinDefn = 0; #endif if( pParse->db->mallocFailed ) { clearSelect(pParse->db, pNew, pNew!=&standin); pAllocated = 0; }else{ assert( pNew->pSrc!=0 || pParse->nErr>0 ); } return pAllocated; } /* ** Delete the given Select structure and all of its substructures. */ SQLITE_PRIVATE void sqlite3SelectDelete(sqlite3 *db, Select *p){ if( OK_IF_ALWAYS_TRUE(p) ) clearSelect(db, p, 1); } /* ** Return a pointer to the right-most SELECT statement in a compound. */ static Select *findRightmost(Select *p){ while( p->pNext ) p = p->pNext; return p; } /* ** Given 1 to 3 identifiers preceding the JOIN keyword, determine the ** type of join. Return an integer constant that expresses that type ** in terms of the following bit values: ** ** JT_INNER ** JT_CROSS ** JT_OUTER ** JT_NATURAL ** JT_LEFT ** JT_RIGHT ** ** A full outer join is the combination of JT_LEFT and JT_RIGHT. ** ** If an illegal or unsupported join type is seen, then still return ** a join type, but put an error in the pParse structure. */ SQLITE_PRIVATE int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){ int jointype = 0; Token *apAll[3]; Token *p; /* 0123456789 123456789 123456789 123 */ static const char zKeyText[] = "naturaleftouterightfullinnercross"; static const struct { u8 i; /* Beginning of keyword text in zKeyText[] */ u8 nChar; /* Length of the keyword in characters */ u8 code; /* Join type mask */ } aKeyword[] = { /* natural */ { 0, 7, JT_NATURAL }, /* left */ { 6, 4, JT_LEFT|JT_OUTER }, /* outer */ { 10, 5, JT_OUTER }, /* right */ { 14, 5, JT_RIGHT|JT_OUTER }, /* full */ { 19, 4, JT_LEFT|JT_RIGHT|JT_OUTER }, /* inner */ { 23, 5, JT_INNER }, /* cross */ { 28, 5, JT_INNER|JT_CROSS }, }; int i, j; apAll[0] = pA; apAll[1] = pB; apAll[2] = pC; for(i=0; i<3 && apAll[i]; i++){ p = apAll[i]; for(j=0; jn==aKeyword[j].nChar && sqlite3StrNICmp((char*)p->z, &zKeyText[aKeyword[j].i], p->n)==0 ){ jointype |= aKeyword[j].code; break; } } testcase( j==0 || j==1 || j==2 || j==3 || j==4 || j==5 || j==6 ); if( j>=ArraySize(aKeyword) ){ jointype |= JT_ERROR; break; } } if( (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || (jointype & JT_ERROR)!=0 ){ const char *zSp = " "; assert( pB!=0 ); if( pC==0 ){ zSp++; } sqlite3ErrorMsg(pParse, "unknown or unsupported join type: " "%T %T%s%T", pA, pB, zSp, pC); jointype = JT_INNER; }else if( (jointype & JT_OUTER)!=0 && (jointype & (JT_LEFT|JT_RIGHT))!=JT_LEFT ){ sqlite3ErrorMsg(pParse, "RIGHT and FULL OUTER JOINs are not currently supported"); jointype = JT_INNER; } return jointype; } /* ** Return the index of a column in a table. Return -1 if the column ** is not contained in the table. */ SQLITE_PRIVATE int sqlite3ColumnIndex(Table *pTab, const char *zCol){ int i; u8 h = sqlite3StrIHash(zCol); Column *pCol; for(pCol=pTab->aCol, i=0; inCol; pCol++, i++){ if( pCol->hName==h && sqlite3StrICmp(pCol->zCnName, zCol)==0 ) return i; } return -1; } /* ** Search the first N tables in pSrc, from left to right, looking for a ** table that has a column named zCol. ** ** When found, set *piTab and *piCol to the table index and column index ** of the matching column and return TRUE. ** ** If not found, return FALSE. */ static int tableAndColumnIndex( SrcList *pSrc, /* Array of tables to search */ int N, /* Number of tables in pSrc->a[] to search */ const char *zCol, /* Name of the column we are looking for */ int *piTab, /* Write index of pSrc->a[] here */ int *piCol, /* Write index of pSrc->a[*piTab].pTab->aCol[] here */ int bIgnoreHidden /* True to ignore hidden columns */ ){ int i; /* For looping over tables in pSrc */ int iCol; /* Index of column matching zCol */ assert( (piTab==0)==(piCol==0) ); /* Both or neither are NULL */ for(i=0; ia[i].pTab, zCol); if( iCol>=0 && (bIgnoreHidden==0 || IsHiddenColumn(&pSrc->a[i].pTab->aCol[iCol])==0) ){ if( piTab ){ *piTab = i; *piCol = iCol; } return 1; } } return 0; } /* ** This function is used to add terms implied by JOIN syntax to the ** WHERE clause expression of a SELECT statement. The new term, which ** is ANDed with the existing WHERE clause, is of the form: ** ** (tab1.col1 = tab2.col2) ** ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is ** column iColRight of tab2. */ static void addWhereTerm( Parse *pParse, /* Parsing context */ SrcList *pSrc, /* List of tables in FROM clause */ int iLeft, /* Index of first table to join in pSrc */ int iColLeft, /* Index of column in first table */ int iRight, /* Index of second table in pSrc */ int iColRight, /* Index of column in second table */ int isOuterJoin, /* True if this is an OUTER join */ Expr **ppWhere /* IN/OUT: The WHERE clause to add to */ ){ sqlite3 *db = pParse->db; Expr *pE1; Expr *pE2; Expr *pEq; assert( iLeftnSrc>iRight ); assert( pSrc->a[iLeft].pTab ); assert( pSrc->a[iRight].pTab ); pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft); pE2 = sqlite3CreateColumnExpr(db, pSrc, iRight, iColRight); pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2); assert( pE2!=0 || pEq==0 ); /* Due to db->mallocFailed test ** in sqlite3DbMallocRawNN() called from ** sqlite3PExpr(). */ if( pEq && isOuterJoin ){ ExprSetProperty(pEq, EP_FromJoin); assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) ); ExprSetVVAProperty(pEq, EP_NoReduce); pEq->w.iRightJoinTable = pE2->iTable; } *ppWhere = sqlite3ExprAnd(pParse, *ppWhere, pEq); } /* ** Set the EP_FromJoin property on all terms of the given expression. ** And set the Expr.w.iRightJoinTable to iTable for every term in the ** expression. ** ** The EP_FromJoin property is used on terms of an expression to tell ** the LEFT OUTER JOIN processing logic that this term is part of the ** join restriction specified in the ON or USING clause and not a part ** of the more general WHERE clause. These terms are moved over to the ** WHERE clause during join processing but we need to remember that they ** originated in the ON or USING clause. ** ** The Expr.w.iRightJoinTable tells the WHERE clause processing that the ** expression depends on table w.iRightJoinTable even if that table is not ** explicitly mentioned in the expression. That information is needed ** for cases like this: ** ** SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.b AND t1.x=5 ** ** The where clause needs to defer the handling of the t1.x=5 ** term until after the t2 loop of the join. In that way, a ** NULL t2 row will be inserted whenever t1.x!=5. If we do not ** defer the handling of t1.x=5, it will be processed immediately ** after the t1 loop and rows with t1.x!=5 will never appear in ** the output, which is incorrect. */ SQLITE_PRIVATE void sqlite3SetJoinExpr(Expr *p, int iTable){ while( p ){ ExprSetProperty(p, EP_FromJoin); assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); ExprSetVVAProperty(p, EP_NoReduce); p->w.iRightJoinTable = iTable; if( p->op==TK_FUNCTION ){ assert( ExprUseXList(p) ); if( p->x.pList ){ int i; for(i=0; ix.pList->nExpr; i++){ sqlite3SetJoinExpr(p->x.pList->a[i].pExpr, iTable); } } } sqlite3SetJoinExpr(p->pLeft, iTable); p = p->pRight; } } /* Undo the work of sqlite3SetJoinExpr(). In the expression p, convert every ** term that is marked with EP_FromJoin and w.iRightJoinTable==iTable into ** an ordinary term that omits the EP_FromJoin mark. ** ** This happens when a LEFT JOIN is simplified into an ordinary JOIN. */ static void unsetJoinExpr(Expr *p, int iTable){ while( p ){ if( ExprHasProperty(p, EP_FromJoin) && (iTable<0 || p->w.iRightJoinTable==iTable) ){ ExprClearProperty(p, EP_FromJoin); } if( p->op==TK_COLUMN && p->iTable==iTable ){ ExprClearProperty(p, EP_CanBeNull); } if( p->op==TK_FUNCTION ){ assert( ExprUseXList(p) ); if( p->x.pList ){ int i; for(i=0; ix.pList->nExpr; i++){ unsetJoinExpr(p->x.pList->a[i].pExpr, iTable); } } } unsetJoinExpr(p->pLeft, iTable); p = p->pRight; } } /* ** This routine processes the join information for a SELECT statement. ** ON and USING clauses are converted into extra terms of the WHERE clause. ** NATURAL joins also create extra WHERE clause terms. ** ** The terms of a FROM clause are contained in the Select.pSrc structure. ** The left most table is the first entry in Select.pSrc. The right-most ** table is the last entry. The join operator is held in the entry to ** the left. Thus entry 0 contains the join operator for the join between ** entries 0 and 1. Any ON or USING clauses associated with the join are ** also attached to the left entry. ** ** This routine returns the number of errors encountered. */ static int sqliteProcessJoin(Parse *pParse, Select *p){ SrcList *pSrc; /* All tables in the FROM clause */ int i, j; /* Loop counters */ SrcItem *pLeft; /* Left table being joined */ SrcItem *pRight; /* Right table being joined */ pSrc = p->pSrc; pLeft = &pSrc->a[0]; pRight = &pLeft[1]; for(i=0; inSrc-1; i++, pRight++, pLeft++){ Table *pRightTab = pRight->pTab; int isOuter; if( NEVER(pLeft->pTab==0 || pRightTab==0) ) continue; isOuter = (pRight->fg.jointype & JT_OUTER)!=0; /* When the NATURAL keyword is present, add WHERE clause terms for ** every column that the two tables have in common. */ if( pRight->fg.jointype & JT_NATURAL ){ if( pRight->pOn || pRight->pUsing ){ sqlite3ErrorMsg(pParse, "a NATURAL join may not have " "an ON or USING clause", 0); return 1; } for(j=0; jnCol; j++){ char *zName; /* Name of column in the right table */ int iLeft; /* Matching left table */ int iLeftCol; /* Matching column in the left table */ if( IsHiddenColumn(&pRightTab->aCol[j]) ) continue; zName = pRightTab->aCol[j].zCnName; if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol, 1) ){ addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j, isOuter, &p->pWhere); } } } /* Disallow both ON and USING clauses in the same join */ if( pRight->pOn && pRight->pUsing ){ sqlite3ErrorMsg(pParse, "cannot have both ON and USING " "clauses in the same join"); return 1; } /* Add the ON clause to the end of the WHERE clause, connected by ** an AND operator. */ if( pRight->pOn ){ if( isOuter ) sqlite3SetJoinExpr(pRight->pOn, pRight->iCursor); p->pWhere = sqlite3ExprAnd(pParse, p->pWhere, pRight->pOn); pRight->pOn = 0; } /* Create extra terms on the WHERE clause for each column named ** in the USING clause. Example: If the two tables to be joined are ** A and B and the USING clause names X, Y, and Z, then add this ** to the WHERE clause: A.X=B.X AND A.Y=B.Y AND A.Z=B.Z ** Report an error if any column mentioned in the USING clause is ** not contained in both tables to be joined. */ if( pRight->pUsing ){ IdList *pList = pRight->pUsing; for(j=0; jnId; j++){ char *zName; /* Name of the term in the USING clause */ int iLeft; /* Table on the left with matching column name */ int iLeftCol; /* Column number of matching column on the left */ int iRightCol; /* Column number of matching column on the right */ zName = pList->a[j].zName; iRightCol = sqlite3ColumnIndex(pRightTab, zName); if( iRightCol<0 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol, 0) ){ sqlite3ErrorMsg(pParse, "cannot join using column %s - column " "not present in both tables", zName); return 1; } addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol, isOuter, &p->pWhere); } } } return 0; } /* ** An instance of this object holds information (beyond pParse and pSelect) ** needed to load the next result row that is to be added to the sorter. */ typedef struct RowLoadInfo RowLoadInfo; struct RowLoadInfo { int regResult; /* Store results in array of registers here */ u8 ecelFlags; /* Flag argument to ExprCodeExprList() */ #ifdef SQLITE_ENABLE_SORTER_REFERENCES ExprList *pExtra; /* Extra columns needed by sorter refs */ int regExtraResult; /* Where to load the extra columns */ #endif }; /* ** This routine does the work of loading query data into an array of ** registers so that it can be added to the sorter. */ static void innerLoopLoadRow( Parse *pParse, /* Statement under construction */ Select *pSelect, /* The query being coded */ RowLoadInfo *pInfo /* Info needed to complete the row load */ ){ sqlite3ExprCodeExprList(pParse, pSelect->pEList, pInfo->regResult, 0, pInfo->ecelFlags); #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( pInfo->pExtra ){ sqlite3ExprCodeExprList(pParse, pInfo->pExtra, pInfo->regExtraResult, 0, 0); sqlite3ExprListDelete(pParse->db, pInfo->pExtra); } #endif } /* ** Code the OP_MakeRecord instruction that generates the entry to be ** added into the sorter. ** ** Return the register in which the result is stored. */ static int makeSorterRecord( Parse *pParse, SortCtx *pSort, Select *pSelect, int regBase, int nBase ){ int nOBSat = pSort->nOBSat; Vdbe *v = pParse->pVdbe; int regOut = ++pParse->nMem; if( pSort->pDeferredRowLoad ){ innerLoopLoadRow(pParse, pSelect, pSort->pDeferredRowLoad); } sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase+nOBSat, nBase-nOBSat, regOut); return regOut; } /* ** Generate code that will push the record in registers regData ** through regData+nData-1 onto the sorter. */ static void pushOntoSorter( Parse *pParse, /* Parser context */ SortCtx *pSort, /* Information about the ORDER BY clause */ Select *pSelect, /* The whole SELECT statement */ int regData, /* First register holding data to be sorted */ int regOrigData, /* First register holding data before packing */ int nData, /* Number of elements in the regData data array */ int nPrefixReg /* No. of reg prior to regData available for use */ ){ Vdbe *v = pParse->pVdbe; /* Stmt under construction */ int bSeq = ((pSort->sortFlags & SORTFLAG_UseSorter)==0); int nExpr = pSort->pOrderBy->nExpr; /* No. of ORDER BY terms */ int nBase = nExpr + bSeq + nData; /* Fields in sorter record */ int regBase; /* Regs for sorter record */ int regRecord = 0; /* Assembled sorter record */ int nOBSat = pSort->nOBSat; /* ORDER BY terms to skip */ int op; /* Opcode to add sorter record to sorter */ int iLimit; /* LIMIT counter */ int iSkip = 0; /* End of the sorter insert loop */ assert( bSeq==0 || bSeq==1 ); /* Three cases: ** (1) The data to be sorted has already been packed into a Record ** by a prior OP_MakeRecord. In this case nData==1 and regData ** will be completely unrelated to regOrigData. ** (2) All output columns are included in the sort record. In that ** case regData==regOrigData. ** (3) Some output columns are omitted from the sort record due to ** the SQLITE_ENABLE_SORTER_REFERENCE optimization, or due to the ** SQLITE_ECEL_OMITREF optimization, or due to the ** SortCtx.pDeferredRowLoad optimiation. In any of these cases ** regOrigData is 0 to prevent this routine from trying to copy ** values that might not yet exist. */ assert( nData==1 || regData==regOrigData || regOrigData==0 ); if( nPrefixReg ){ assert( nPrefixReg==nExpr+bSeq ); regBase = regData - nPrefixReg; }else{ regBase = pParse->nMem + 1; pParse->nMem += nBase; } assert( pSelect->iOffset==0 || pSelect->iLimit!=0 ); iLimit = pSelect->iOffset ? pSelect->iOffset+1 : pSelect->iLimit; pSort->labelDone = sqlite3VdbeMakeLabel(pParse); sqlite3ExprCodeExprList(pParse, pSort->pOrderBy, regBase, regOrigData, SQLITE_ECEL_DUP | (regOrigData? SQLITE_ECEL_REF : 0)); if( bSeq ){ sqlite3VdbeAddOp2(v, OP_Sequence, pSort->iECursor, regBase+nExpr); } if( nPrefixReg==0 && nData>0 ){ sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+bSeq, nData); } if( nOBSat>0 ){ int regPrevKey; /* The first nOBSat columns of the previous row */ int addrFirst; /* Address of the OP_IfNot opcode */ int addrJmp; /* Address of the OP_Jump opcode */ VdbeOp *pOp; /* Opcode that opens the sorter */ int nKey; /* Number of sorting key columns, including OP_Sequence */ KeyInfo *pKI; /* Original KeyInfo on the sorter table */ regRecord = makeSorterRecord(pParse, pSort, pSelect, regBase, nBase); regPrevKey = pParse->nMem+1; pParse->nMem += pSort->nOBSat; nKey = nExpr - pSort->nOBSat + bSeq; if( bSeq ){ addrFirst = sqlite3VdbeAddOp1(v, OP_IfNot, regBase+nExpr); }else{ addrFirst = sqlite3VdbeAddOp1(v, OP_SequenceTest, pSort->iECursor); } VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Compare, regPrevKey, regBase, pSort->nOBSat); pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); if( pParse->db->mallocFailed ) return; pOp->p2 = nKey + nData; pKI = pOp->p4.pKeyInfo; memset(pKI->aSortFlags, 0, pKI->nKeyField); /* Makes OP_Jump testable */ sqlite3VdbeChangeP4(v, -1, (char*)pKI, P4_KEYINFO); testcase( pKI->nAllField > pKI->nKeyField+2 ); pOp->p4.pKeyInfo = sqlite3KeyInfoFromExprList(pParse,pSort->pOrderBy,nOBSat, pKI->nAllField-pKI->nKeyField-1); pOp = 0; /* Ensure pOp not used after sqltie3VdbeAddOp3() */ addrJmp = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp3(v, OP_Jump, addrJmp+1, 0, addrJmp+1); VdbeCoverage(v); pSort->labelBkOut = sqlite3VdbeMakeLabel(pParse); pSort->regReturn = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Gosub, pSort->regReturn, pSort->labelBkOut); sqlite3VdbeAddOp1(v, OP_ResetSorter, pSort->iECursor); if( iLimit ){ sqlite3VdbeAddOp2(v, OP_IfNot, iLimit, pSort->labelDone); VdbeCoverage(v); } sqlite3VdbeJumpHere(v, addrFirst); sqlite3ExprCodeMove(pParse, regBase, regPrevKey, pSort->nOBSat); sqlite3VdbeJumpHere(v, addrJmp); } if( iLimit ){ /* At this point the values for the new sorter entry are stored ** in an array of registers. They need to be composed into a record ** and inserted into the sorter if either (a) there are currently ** less than LIMIT+OFFSET items or (b) the new record is smaller than ** the largest record currently in the sorter. If (b) is true and there ** are already LIMIT+OFFSET items in the sorter, delete the largest ** entry before inserting the new one. This way there are never more ** than LIMIT+OFFSET items in the sorter. ** ** If the new record does not need to be inserted into the sorter, ** jump to the next iteration of the loop. If the pSort->labelOBLopt ** value is not zero, then it is a label of where to jump. Otherwise, ** just bypass the row insert logic. See the header comment on the ** sqlite3WhereOrderByLimitOptLabel() function for additional info. */ int iCsr = pSort->iECursor; sqlite3VdbeAddOp2(v, OP_IfNotZero, iLimit, sqlite3VdbeCurrentAddr(v)+4); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Last, iCsr, 0); iSkip = sqlite3VdbeAddOp4Int(v, OP_IdxLE, iCsr, 0, regBase+nOBSat, nExpr-nOBSat); VdbeCoverage(v); sqlite3VdbeAddOp1(v, OP_Delete, iCsr); } if( regRecord==0 ){ regRecord = makeSorterRecord(pParse, pSort, pSelect, regBase, nBase); } if( pSort->sortFlags & SORTFLAG_UseSorter ){ op = OP_SorterInsert; }else{ op = OP_IdxInsert; } sqlite3VdbeAddOp4Int(v, op, pSort->iECursor, regRecord, regBase+nOBSat, nBase-nOBSat); if( iSkip ){ sqlite3VdbeChangeP2(v, iSkip, pSort->labelOBLopt ? pSort->labelOBLopt : sqlite3VdbeCurrentAddr(v)); } } /* ** Add code to implement the OFFSET */ static void codeOffset( Vdbe *v, /* Generate code into this VM */ int iOffset, /* Register holding the offset counter */ int iContinue /* Jump here to skip the current record */ ){ if( iOffset>0 ){ sqlite3VdbeAddOp3(v, OP_IfPos, iOffset, iContinue, 1); VdbeCoverage(v); VdbeComment((v, "OFFSET")); } } /* ** Add code that will check to make sure the array of registers starting at ** iMem form a distinct entry. This is used by both "SELECT DISTINCT ..." and ** distinct aggregates ("SELECT count(DISTINCT ) ..."). Three strategies ** are available. Which is used depends on the value of parameter eTnctType, ** as follows: ** ** WHERE_DISTINCT_UNORDERED/WHERE_DISTINCT_NOOP: ** Build an ephemeral table that contains all entries seen before and ** skip entries which have been seen before. ** ** Parameter iTab is the cursor number of an ephemeral table that must ** be opened before the VM code generated by this routine is executed. ** The ephemeral cursor table is queried for a record identical to the ** record formed by the current array of registers. If one is found, ** jump to VM address addrRepeat. Otherwise, insert a new record into ** the ephemeral cursor and proceed. ** ** The returned value in this case is a copy of parameter iTab. ** ** WHERE_DISTINCT_ORDERED: ** In this case rows are being delivered sorted order. The ephermal ** table is not required. Instead, the current set of values ** is compared against previous row. If they match, the new row ** is not distinct and control jumps to VM address addrRepeat. Otherwise, ** the VM program proceeds with processing the new row. ** ** The returned value in this case is the register number of the first ** in an array of registers used to store the previous result row so that ** it can be compared to the next. The caller must ensure that this ** register is initialized to NULL. (The fixDistinctOpenEph() routine ** will take care of this initialization.) ** ** WHERE_DISTINCT_UNIQUE: ** In this case it has already been determined that the rows are distinct. ** No special action is required. The return value is zero. ** ** Parameter pEList is the list of expressions used to generated the ** contents of each row. It is used by this routine to determine (a) ** how many elements there are in the array of registers and (b) the ** collation sequences that should be used for the comparisons if ** eTnctType is WHERE_DISTINCT_ORDERED. */ static int codeDistinct( Parse *pParse, /* Parsing and code generating context */ int eTnctType, /* WHERE_DISTINCT_* value */ int iTab, /* A sorting index used to test for distinctness */ int addrRepeat, /* Jump to here if not distinct */ ExprList *pEList, /* Expression for each element */ int regElem /* First element */ ){ int iRet = 0; int nResultCol = pEList->nExpr; Vdbe *v = pParse->pVdbe; switch( eTnctType ){ case WHERE_DISTINCT_ORDERED: { int i; int iJump; /* Jump destination */ int regPrev; /* Previous row content */ /* Allocate space for the previous row */ iRet = regPrev = pParse->nMem+1; pParse->nMem += nResultCol; iJump = sqlite3VdbeCurrentAddr(v) + nResultCol; for(i=0; ia[i].pExpr); if( idb->mallocFailed ); sqlite3VdbeAddOp3(v, OP_Copy, regElem, regPrev, nResultCol-1); break; } case WHERE_DISTINCT_UNIQUE: { /* nothing to do */ break; } default: { int r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4Int(v, OP_Found, iTab, addrRepeat, regElem, nResultCol); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, regElem, nResultCol, r1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iTab, r1, regElem, nResultCol); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); sqlite3ReleaseTempReg(pParse, r1); iRet = iTab; break; } } return iRet; } /* ** This routine runs after codeDistinct(). It makes necessary ** adjustments to the OP_OpenEphemeral opcode that the codeDistinct() ** routine made use of. This processing must be done separately since ** sometimes codeDistinct is called before the OP_OpenEphemeral is actually ** laid down. ** ** WHERE_DISTINCT_NOOP: ** WHERE_DISTINCT_UNORDERED: ** ** No adjustments necessary. This function is a no-op. ** ** WHERE_DISTINCT_UNIQUE: ** ** The ephemeral table is not needed. So change the ** OP_OpenEphemeral opcode into an OP_Noop. ** ** WHERE_DISTINCT_ORDERED: ** ** The ephemeral table is not needed. But we do need register ** iVal to be initialized to NULL. So change the OP_OpenEphemeral ** into an OP_Null on the iVal register. */ static void fixDistinctOpenEph( Parse *pParse, /* Parsing and code generating context */ int eTnctType, /* WHERE_DISTINCT_* value */ int iVal, /* Value returned by codeDistinct() */ int iOpenEphAddr /* Address of OP_OpenEphemeral instruction for iTab */ ){ if( pParse->nErr==0 && (eTnctType==WHERE_DISTINCT_UNIQUE || eTnctType==WHERE_DISTINCT_ORDERED) ){ Vdbe *v = pParse->pVdbe; sqlite3VdbeChangeToNoop(v, iOpenEphAddr); if( sqlite3VdbeGetOp(v, iOpenEphAddr+1)->opcode==OP_Explain ){ sqlite3VdbeChangeToNoop(v, iOpenEphAddr+1); } if( eTnctType==WHERE_DISTINCT_ORDERED ){ /* Change the OP_OpenEphemeral to an OP_Null that sets the MEM_Cleared ** bit on the first register of the previous value. This will cause the ** OP_Ne added in codeDistinct() to always fail on the first iteration of ** the loop even if the first row is all NULLs. */ VdbeOp *pOp = sqlite3VdbeGetOp(v, iOpenEphAddr); pOp->opcode = OP_Null; pOp->p1 = 1; pOp->p2 = iVal; } } } #ifdef SQLITE_ENABLE_SORTER_REFERENCES /* ** This function is called as part of inner-loop generation for a SELECT ** statement with an ORDER BY that is not optimized by an index. It ** determines the expressions, if any, that the sorter-reference ** optimization should be used for. The sorter-reference optimization ** is used for SELECT queries like: ** ** SELECT a, bigblob FROM t1 ORDER BY a LIMIT 10 ** ** If the optimization is used for expression "bigblob", then instead of ** storing values read from that column in the sorter records, the PK of ** the row from table t1 is stored instead. Then, as records are extracted from ** the sorter to return to the user, the required value of bigblob is ** retrieved directly from table t1. If the values are very large, this ** can be more efficient than storing them directly in the sorter records. ** ** The ExprList_item.bSorterRef flag is set for each expression in pEList ** for which the sorter-reference optimization should be enabled. ** Additionally, the pSort->aDefer[] array is populated with entries ** for all cursors required to evaluate all selected expressions. Finally. ** output variable (*ppExtra) is set to an expression list containing ** expressions for all extra PK values that should be stored in the ** sorter records. */ static void selectExprDefer( Parse *pParse, /* Leave any error here */ SortCtx *pSort, /* Sorter context */ ExprList *pEList, /* Expressions destined for sorter */ ExprList **ppExtra /* Expressions to append to sorter record */ ){ int i; int nDefer = 0; ExprList *pExtra = 0; for(i=0; inExpr; i++){ struct ExprList_item *pItem = &pEList->a[i]; if( pItem->u.x.iOrderByCol==0 ){ Expr *pExpr = pItem->pExpr; Table *pTab; if( pExpr->op==TK_COLUMN && pExpr->iColumn>=0 && ALWAYS( ExprUseYTab(pExpr) ) && (pTab = pExpr->y.pTab)!=0 && IsOrdinaryTable(pTab) && (pTab->aCol[pExpr->iColumn].colFlags & COLFLAG_SORTERREF)!=0 ){ int j; for(j=0; jaDefer[j].iCsr==pExpr->iTable ) break; } if( j==nDefer ){ if( nDefer==ArraySize(pSort->aDefer) ){ continue; }else{ int nKey = 1; int k; Index *pPk = 0; if( !HasRowid(pTab) ){ pPk = sqlite3PrimaryKeyIndex(pTab); nKey = pPk->nKeyCol; } for(k=0; kiTable = pExpr->iTable; assert( ExprUseYTab(pNew) ); pNew->y.pTab = pExpr->y.pTab; pNew->iColumn = pPk ? pPk->aiColumn[k] : -1; pExtra = sqlite3ExprListAppend(pParse, pExtra, pNew); } } pSort->aDefer[nDefer].pTab = pExpr->y.pTab; pSort->aDefer[nDefer].iCsr = pExpr->iTable; pSort->aDefer[nDefer].nKey = nKey; nDefer++; } } pItem->bSorterRef = 1; } } } pSort->nDefer = (u8)nDefer; *ppExtra = pExtra; } #endif /* ** This routine generates the code for the inside of the inner loop ** of a SELECT. ** ** If srcTab is negative, then the p->pEList expressions ** are evaluated in order to get the data for this row. If srcTab is ** zero or more, then data is pulled from srcTab and p->pEList is used only ** to get the number of columns and the collation sequence for each column. */ static void selectInnerLoop( Parse *pParse, /* The parser context */ Select *p, /* The complete select statement being coded */ int srcTab, /* Pull data from this table if non-negative */ SortCtx *pSort, /* If not NULL, info on how to process ORDER BY */ DistinctCtx *pDistinct, /* If not NULL, info on how to process DISTINCT */ SelectDest *pDest, /* How to dispose of the results */ int iContinue, /* Jump here to continue with next row */ int iBreak /* Jump here to break out of the inner loop */ ){ Vdbe *v = pParse->pVdbe; int i; int hasDistinct; /* True if the DISTINCT keyword is present */ int eDest = pDest->eDest; /* How to dispose of results */ int iParm = pDest->iSDParm; /* First argument to disposal method */ int nResultCol; /* Number of result columns */ int nPrefixReg = 0; /* Number of extra registers before regResult */ RowLoadInfo sRowLoadInfo; /* Info for deferred row loading */ /* Usually, regResult is the first cell in an array of memory cells ** containing the current result row. In this case regOrig is set to the ** same value. However, if the results are being sent to the sorter, the ** values for any expressions that are also part of the sort-key are omitted ** from this array. In this case regOrig is set to zero. */ int regResult; /* Start of memory holding current results */ int regOrig; /* Start of memory holding full result (or 0) */ assert( v ); assert( p->pEList!=0 ); hasDistinct = pDistinct ? pDistinct->eTnctType : WHERE_DISTINCT_NOOP; if( pSort && pSort->pOrderBy==0 ) pSort = 0; if( pSort==0 && !hasDistinct ){ assert( iContinue!=0 ); codeOffset(v, p->iOffset, iContinue); } /* Pull the requested columns. */ nResultCol = p->pEList->nExpr; if( pDest->iSdst==0 ){ if( pSort ){ nPrefixReg = pSort->pOrderBy->nExpr; if( !(pSort->sortFlags & SORTFLAG_UseSorter) ) nPrefixReg++; pParse->nMem += nPrefixReg; } pDest->iSdst = pParse->nMem+1; pParse->nMem += nResultCol; }else if( pDest->iSdst+nResultCol > pParse->nMem ){ /* This is an error condition that can result, for example, when a SELECT ** on the right-hand side of an INSERT contains more result columns than ** there are columns in the table on the left. The error will be caught ** and reported later. But we need to make sure enough memory is allocated ** to avoid other spurious errors in the meantime. */ pParse->nMem += nResultCol; } pDest->nSdst = nResultCol; regOrig = regResult = pDest->iSdst; if( srcTab>=0 ){ for(i=0; ipEList->a[i].zEName)); } }else if( eDest!=SRT_Exists ){ #ifdef SQLITE_ENABLE_SORTER_REFERENCES ExprList *pExtra = 0; #endif /* If the destination is an EXISTS(...) expression, the actual ** values returned by the SELECT are not required. */ u8 ecelFlags; /* "ecel" is an abbreviation of "ExprCodeExprList" */ ExprList *pEList; if( eDest==SRT_Mem || eDest==SRT_Output || eDest==SRT_Coroutine ){ ecelFlags = SQLITE_ECEL_DUP; }else{ ecelFlags = 0; } if( pSort && hasDistinct==0 && eDest!=SRT_EphemTab && eDest!=SRT_Table ){ /* For each expression in p->pEList that is a copy of an expression in ** the ORDER BY clause (pSort->pOrderBy), set the associated ** iOrderByCol value to one more than the index of the ORDER BY ** expression within the sort-key that pushOntoSorter() will generate. ** This allows the p->pEList field to be omitted from the sorted record, ** saving space and CPU cycles. */ ecelFlags |= (SQLITE_ECEL_OMITREF|SQLITE_ECEL_REF); for(i=pSort->nOBSat; ipOrderBy->nExpr; i++){ int j; if( (j = pSort->pOrderBy->a[i].u.x.iOrderByCol)>0 ){ p->pEList->a[j-1].u.x.iOrderByCol = i+1-pSort->nOBSat; } } #ifdef SQLITE_ENABLE_SORTER_REFERENCES selectExprDefer(pParse, pSort, p->pEList, &pExtra); if( pExtra && pParse->db->mallocFailed==0 ){ /* If there are any extra PK columns to add to the sorter records, ** allocate extra memory cells and adjust the OpenEphemeral ** instruction to account for the larger records. This is only ** required if there are one or more WITHOUT ROWID tables with ** composite primary keys in the SortCtx.aDefer[] array. */ VdbeOp *pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); pOp->p2 += (pExtra->nExpr - pSort->nDefer); pOp->p4.pKeyInfo->nAllField += (pExtra->nExpr - pSort->nDefer); pParse->nMem += pExtra->nExpr; } #endif /* Adjust nResultCol to account for columns that are omitted ** from the sorter by the optimizations in this branch */ pEList = p->pEList; for(i=0; inExpr; i++){ if( pEList->a[i].u.x.iOrderByCol>0 #ifdef SQLITE_ENABLE_SORTER_REFERENCES || pEList->a[i].bSorterRef #endif ){ nResultCol--; regOrig = 0; } } testcase( regOrig ); testcase( eDest==SRT_Set ); testcase( eDest==SRT_Mem ); testcase( eDest==SRT_Coroutine ); testcase( eDest==SRT_Output ); assert( eDest==SRT_Set || eDest==SRT_Mem || eDest==SRT_Coroutine || eDest==SRT_Output || eDest==SRT_Upfrom ); } sRowLoadInfo.regResult = regResult; sRowLoadInfo.ecelFlags = ecelFlags; #ifdef SQLITE_ENABLE_SORTER_REFERENCES sRowLoadInfo.pExtra = pExtra; sRowLoadInfo.regExtraResult = regResult + nResultCol; if( pExtra ) nResultCol += pExtra->nExpr; #endif if( p->iLimit && (ecelFlags & SQLITE_ECEL_OMITREF)!=0 && nPrefixReg>0 ){ assert( pSort!=0 ); assert( hasDistinct==0 ); pSort->pDeferredRowLoad = &sRowLoadInfo; regOrig = 0; }else{ innerLoopLoadRow(pParse, p, &sRowLoadInfo); } } /* If the DISTINCT keyword was present on the SELECT statement ** and this row has been seen before, then do not make this row ** part of the result. */ if( hasDistinct ){ int eType = pDistinct->eTnctType; int iTab = pDistinct->tabTnct; assert( nResultCol==p->pEList->nExpr ); iTab = codeDistinct(pParse, eType, iTab, iContinue, p->pEList, regResult); fixDistinctOpenEph(pParse, eType, iTab, pDistinct->addrTnct); if( pSort==0 ){ codeOffset(v, p->iOffset, iContinue); } } switch( eDest ){ /* In this mode, write each query result to the key of the temporary ** table iParm. */ #ifndef SQLITE_OMIT_COMPOUND_SELECT case SRT_Union: { int r1; r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regResult, nResultCol); sqlite3ReleaseTempReg(pParse, r1); break; } /* Construct a record from the query result, but instead of ** saving that record, use it as a key to delete elements from ** the temporary table iParm. */ case SRT_Except: { sqlite3VdbeAddOp3(v, OP_IdxDelete, iParm, regResult, nResultCol); break; } #endif /* SQLITE_OMIT_COMPOUND_SELECT */ /* Store the result as data using a unique key. */ case SRT_Fifo: case SRT_DistFifo: case SRT_Table: case SRT_EphemTab: { int r1 = sqlite3GetTempRange(pParse, nPrefixReg+1); testcase( eDest==SRT_Table ); testcase( eDest==SRT_EphemTab ); testcase( eDest==SRT_Fifo ); testcase( eDest==SRT_DistFifo ); sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1+nPrefixReg); #ifndef SQLITE_OMIT_CTE if( eDest==SRT_DistFifo ){ /* If the destination is DistFifo, then cursor (iParm+1) is open ** on an ephemeral index. If the current row is already present ** in the index, do not write it to the output. If not, add the ** current row to the index and proceed with writing it to the ** output table as well. */ int addr = sqlite3VdbeCurrentAddr(v) + 4; sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, addr, r1, 0); VdbeCoverage(v); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm+1, r1,regResult,nResultCol); assert( pSort==0 ); } #endif if( pSort ){ assert( regResult==regOrig ); pushOntoSorter(pParse, pSort, p, r1+nPrefixReg, regOrig, 1, nPrefixReg); }else{ int r2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, r2); sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, r2); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); sqlite3ReleaseTempReg(pParse, r2); } sqlite3ReleaseTempRange(pParse, r1, nPrefixReg+1); break; } case SRT_Upfrom: { if( pSort ){ pushOntoSorter( pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else{ int i2 = pDest->iSDParm2; int r1 = sqlite3GetTempReg(pParse); /* If the UPDATE FROM join is an aggregate that matches no rows, it ** might still be trying to return one row, because that is what ** aggregates do. Don't record that empty row in the output table. */ sqlite3VdbeAddOp2(v, OP_IsNull, regResult, iBreak); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult+(i2<0), nResultCol-(i2<0), r1); if( i2<0 ){ sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, regResult); }else{ sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regResult, i2); } } break; } #ifndef SQLITE_OMIT_SUBQUERY /* If we are creating a set for an "expr IN (SELECT ...)" construct, ** then there should be a single item on the stack. Write this ** item into the set table with bogus data. */ case SRT_Set: { if( pSort ){ /* At first glance you would think we could optimize out the ** ORDER BY in this case since the order of entries in the set ** does not matter. But there might be a LIMIT clause, in which ** case the order does matter */ pushOntoSorter( pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else{ int r1 = sqlite3GetTempReg(pParse); assert( sqlite3Strlen30(pDest->zAffSdst)==nResultCol ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regResult, nResultCol, r1, pDest->zAffSdst, nResultCol); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regResult, nResultCol); sqlite3ReleaseTempReg(pParse, r1); } break; } /* If any row exist in the result set, record that fact and abort. */ case SRT_Exists: { sqlite3VdbeAddOp2(v, OP_Integer, 1, iParm); /* The LIMIT clause will terminate the loop for us */ break; } /* If this is a scalar select that is part of an expression, then ** store the results in the appropriate memory cell or array of ** memory cells and break out of the scan loop. */ case SRT_Mem: { if( pSort ){ assert( nResultCol<=pDest->nSdst ); pushOntoSorter( pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else{ assert( nResultCol==pDest->nSdst ); assert( regResult==iParm ); /* The LIMIT clause will jump out of the loop for us */ } break; } #endif /* #ifndef SQLITE_OMIT_SUBQUERY */ case SRT_Coroutine: /* Send data to a co-routine */ case SRT_Output: { /* Return the results */ testcase( eDest==SRT_Coroutine ); testcase( eDest==SRT_Output ); if( pSort ){ pushOntoSorter(pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else if( eDest==SRT_Coroutine ){ sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); }else{ sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, nResultCol); } break; } #ifndef SQLITE_OMIT_CTE /* Write the results into a priority queue that is order according to ** pDest->pOrderBy (in pSO). pDest->iSDParm (in iParm) is the cursor for an ** index with pSO->nExpr+2 columns. Build a key using pSO for the first ** pSO->nExpr columns, then make sure all keys are unique by adding a ** final OP_Sequence column. The last column is the record as a blob. */ case SRT_DistQueue: case SRT_Queue: { int nKey; int r1, r2, r3; int addrTest = 0; ExprList *pSO; pSO = pDest->pOrderBy; assert( pSO ); nKey = pSO->nExpr; r1 = sqlite3GetTempReg(pParse); r2 = sqlite3GetTempRange(pParse, nKey+2); r3 = r2+nKey+1; if( eDest==SRT_DistQueue ){ /* If the destination is DistQueue, then cursor (iParm+1) is open ** on a second ephemeral index that holds all values every previously ** added to the queue. */ addrTest = sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, 0, regResult, nResultCol); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r3); if( eDest==SRT_DistQueue ){ sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm+1, r3); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); } for(i=0; ia[i].u.x.iOrderByCol - 1, r2+i); } sqlite3VdbeAddOp2(v, OP_Sequence, iParm, r2+nKey); sqlite3VdbeAddOp3(v, OP_MakeRecord, r2, nKey+2, r1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, r2, nKey+2); if( addrTest ) sqlite3VdbeJumpHere(v, addrTest); sqlite3ReleaseTempReg(pParse, r1); sqlite3ReleaseTempRange(pParse, r2, nKey+2); break; } #endif /* SQLITE_OMIT_CTE */ #if !defined(SQLITE_OMIT_TRIGGER) /* Discard the results. This is used for SELECT statements inside ** the body of a TRIGGER. The purpose of such selects is to call ** user-defined functions that have side effects. We do not care ** about the actual results of the select. */ default: { assert( eDest==SRT_Discard ); break; } #endif } /* Jump to the end of the loop if the LIMIT is reached. Except, if ** there is a sorter, in which case the sorter has already limited ** the output for us. */ if( pSort==0 && p->iLimit ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, p->iLimit, iBreak); VdbeCoverage(v); } } /* ** Allocate a KeyInfo object sufficient for an index of N key columns and ** X extra columns. */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoAlloc(sqlite3 *db, int N, int X){ int nExtra = (N+X)*(sizeof(CollSeq*)+1) - sizeof(CollSeq*); KeyInfo *p = sqlite3DbMallocRawNN(db, sizeof(KeyInfo) + nExtra); if( p ){ p->aSortFlags = (u8*)&p->aColl[N+X]; p->nKeyField = (u16)N; p->nAllField = (u16)(N+X); p->enc = ENC(db); p->db = db; p->nRef = 1; memset(&p[1], 0, nExtra); }else{ return (KeyInfo*)sqlite3OomFault(db); } return p; } /* ** Deallocate a KeyInfo object */ SQLITE_PRIVATE void sqlite3KeyInfoUnref(KeyInfo *p){ if( p ){ assert( p->nRef>0 ); p->nRef--; if( p->nRef==0 ) sqlite3DbFreeNN(p->db, p); } } /* ** Make a new pointer to a KeyInfo object */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoRef(KeyInfo *p){ if( p ){ assert( p->nRef>0 ); p->nRef++; } return p; } #ifdef SQLITE_DEBUG /* ** Return TRUE if a KeyInfo object can be change. The KeyInfo object ** can only be changed if this is just a single reference to the object. ** ** This routine is used only inside of assert() statements. */ SQLITE_PRIVATE int sqlite3KeyInfoIsWriteable(KeyInfo *p){ return p->nRef==1; } #endif /* SQLITE_DEBUG */ /* ** Given an expression list, generate a KeyInfo structure that records ** the collating sequence for each expression in that expression list. ** ** If the ExprList is an ORDER BY or GROUP BY clause then the resulting ** KeyInfo structure is appropriate for initializing a virtual index to ** implement that clause. If the ExprList is the result set of a SELECT ** then the KeyInfo structure is appropriate for initializing a virtual ** index to implement a DISTINCT test. ** ** Space to hold the KeyInfo structure is obtained from malloc. The calling ** function is responsible for seeing that this structure is eventually ** freed. */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoFromExprList( Parse *pParse, /* Parsing context */ ExprList *pList, /* Form the KeyInfo object from this ExprList */ int iStart, /* Begin with this column of pList */ int nExtra /* Add this many extra columns to the end */ ){ int nExpr; KeyInfo *pInfo; struct ExprList_item *pItem; sqlite3 *db = pParse->db; int i; nExpr = pList->nExpr; pInfo = sqlite3KeyInfoAlloc(db, nExpr-iStart, nExtra+1); if( pInfo ){ assert( sqlite3KeyInfoIsWriteable(pInfo) ); for(i=iStart, pItem=pList->a+iStart; iaColl[i-iStart] = sqlite3ExprNNCollSeq(pParse, pItem->pExpr); pInfo->aSortFlags[i-iStart] = pItem->sortFlags; } } return pInfo; } /* ** Name of the connection operator, used for error messages. */ SQLITE_PRIVATE const char *sqlite3SelectOpName(int id){ char *z; switch( id ){ case TK_ALL: z = "UNION ALL"; break; case TK_INTERSECT: z = "INTERSECT"; break; case TK_EXCEPT: z = "EXCEPT"; break; default: z = "UNION"; break; } return z; } #ifndef SQLITE_OMIT_EXPLAIN /* ** Unless an "EXPLAIN QUERY PLAN" command is being processed, this function ** is a no-op. Otherwise, it adds a single row of output to the EQP result, ** where the caption is of the form: ** ** "USE TEMP B-TREE FOR xxx" ** ** where xxx is one of "DISTINCT", "ORDER BY" or "GROUP BY". Exactly which ** is determined by the zUsage argument. */ static void explainTempTable(Parse *pParse, const char *zUsage){ ExplainQueryPlan((pParse, 0, "USE TEMP B-TREE FOR %s", zUsage)); } /* ** Assign expression b to lvalue a. A second, no-op, version of this macro ** is provided when SQLITE_OMIT_EXPLAIN is defined. This allows the code ** in sqlite3Select() to assign values to structure member variables that ** only exist if SQLITE_OMIT_EXPLAIN is not defined without polluting the ** code with #ifndef directives. */ # define explainSetInteger(a, b) a = b #else /* No-op versions of the explainXXX() functions and macros. */ # define explainTempTable(y,z) # define explainSetInteger(y,z) #endif /* ** If the inner loop was generated using a non-null pOrderBy argument, ** then the results were placed in a sorter. After the loop is terminated ** we need to run the sorter and output the results. The following ** routine generates the code needed to do that. */ static void generateSortTail( Parse *pParse, /* Parsing context */ Select *p, /* The SELECT statement */ SortCtx *pSort, /* Information on the ORDER BY clause */ int nColumn, /* Number of columns of data */ SelectDest *pDest /* Write the sorted results here */ ){ Vdbe *v = pParse->pVdbe; /* The prepared statement */ int addrBreak = pSort->labelDone; /* Jump here to exit loop */ int addrContinue = sqlite3VdbeMakeLabel(pParse);/* Jump here for next cycle */ int addr; /* Top of output loop. Jump for Next. */ int addrOnce = 0; int iTab; ExprList *pOrderBy = pSort->pOrderBy; int eDest = pDest->eDest; int iParm = pDest->iSDParm; int regRow; int regRowid; int iCol; int nKey; /* Number of key columns in sorter record */ int iSortTab; /* Sorter cursor to read from */ int i; int bSeq; /* True if sorter record includes seq. no. */ int nRefKey = 0; struct ExprList_item *aOutEx = p->pEList->a; assert( addrBreak<0 ); if( pSort->labelBkOut ){ sqlite3VdbeAddOp2(v, OP_Gosub, pSort->regReturn, pSort->labelBkOut); sqlite3VdbeGoto(v, addrBreak); sqlite3VdbeResolveLabel(v, pSort->labelBkOut); } #ifdef SQLITE_ENABLE_SORTER_REFERENCES /* Open any cursors needed for sorter-reference expressions */ for(i=0; inDefer; i++){ Table *pTab = pSort->aDefer[i].pTab; int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); sqlite3OpenTable(pParse, pSort->aDefer[i].iCsr, iDb, pTab, OP_OpenRead); nRefKey = MAX(nRefKey, pSort->aDefer[i].nKey); } #endif iTab = pSort->iECursor; if( eDest==SRT_Output || eDest==SRT_Coroutine || eDest==SRT_Mem ){ if( eDest==SRT_Mem && p->iOffset ){ sqlite3VdbeAddOp2(v, OP_Null, 0, pDest->iSdst); } regRowid = 0; regRow = pDest->iSdst; }else{ regRowid = sqlite3GetTempReg(pParse); if( eDest==SRT_EphemTab || eDest==SRT_Table ){ regRow = sqlite3GetTempReg(pParse); nColumn = 0; }else{ regRow = sqlite3GetTempRange(pParse, nColumn); } } nKey = pOrderBy->nExpr - pSort->nOBSat; if( pSort->sortFlags & SORTFLAG_UseSorter ){ int regSortOut = ++pParse->nMem; iSortTab = pParse->nTab++; if( pSort->labelBkOut ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, OP_OpenPseudo, iSortTab, regSortOut, nKey+1+nColumn+nRefKey); if( addrOnce ) sqlite3VdbeJumpHere(v, addrOnce); addr = 1 + sqlite3VdbeAddOp2(v, OP_SorterSort, iTab, addrBreak); VdbeCoverage(v); codeOffset(v, p->iOffset, addrContinue); sqlite3VdbeAddOp3(v, OP_SorterData, iTab, regSortOut, iSortTab); bSeq = 0; }else{ addr = 1 + sqlite3VdbeAddOp2(v, OP_Sort, iTab, addrBreak); VdbeCoverage(v); codeOffset(v, p->iOffset, addrContinue); iSortTab = iTab; bSeq = 1; } for(i=0, iCol=nKey+bSeq-1; inDefer ){ int iKey = iCol+1; int regKey = sqlite3GetTempRange(pParse, nRefKey); for(i=0; inDefer; i++){ int iCsr = pSort->aDefer[i].iCsr; Table *pTab = pSort->aDefer[i].pTab; int nKey = pSort->aDefer[i].nKey; sqlite3VdbeAddOp1(v, OP_NullRow, iCsr); if( HasRowid(pTab) ){ sqlite3VdbeAddOp3(v, OP_Column, iSortTab, iKey++, regKey); sqlite3VdbeAddOp3(v, OP_SeekRowid, iCsr, sqlite3VdbeCurrentAddr(v)+1, regKey); }else{ int k; int iJmp; assert( sqlite3PrimaryKeyIndex(pTab)->nKeyCol==nKey ); for(k=0; k=0; i--){ #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( aOutEx[i].bSorterRef ){ sqlite3ExprCode(pParse, aOutEx[i].pExpr, regRow+i); }else #endif { int iRead; if( aOutEx[i].u.x.iOrderByCol ){ iRead = aOutEx[i].u.x.iOrderByCol-1; }else{ iRead = iCol--; } sqlite3VdbeAddOp3(v, OP_Column, iSortTab, iRead, regRow+i); VdbeComment((v, "%s", aOutEx[i].zEName)); } } switch( eDest ){ case SRT_Table: case SRT_EphemTab: { sqlite3VdbeAddOp3(v, OP_Column, iSortTab, nKey+bSeq, regRow); sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, iParm, regRow, regRowid); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); break; } #ifndef SQLITE_OMIT_SUBQUERY case SRT_Set: { assert( nColumn==sqlite3Strlen30(pDest->zAffSdst) ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, nColumn, regRowid, pDest->zAffSdst, nColumn); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, regRowid, regRow, nColumn); break; } case SRT_Mem: { /* The LIMIT clause will terminate the loop for us */ break; } #endif case SRT_Upfrom: { int i2 = pDest->iSDParm2; int r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord,regRow+(i2<0),nColumn-(i2<0),r1); if( i2<0 ){ sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, regRow); }else{ sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regRow, i2); } break; } default: { assert( eDest==SRT_Output || eDest==SRT_Coroutine ); testcase( eDest==SRT_Output ); testcase( eDest==SRT_Coroutine ); if( eDest==SRT_Output ){ sqlite3VdbeAddOp2(v, OP_ResultRow, pDest->iSdst, nColumn); }else{ sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); } break; } } if( regRowid ){ if( eDest==SRT_Set ){ sqlite3ReleaseTempRange(pParse, regRow, nColumn); }else{ sqlite3ReleaseTempReg(pParse, regRow); } sqlite3ReleaseTempReg(pParse, regRowid); } /* The bottom of the loop */ sqlite3VdbeResolveLabel(v, addrContinue); if( pSort->sortFlags & SORTFLAG_UseSorter ){ sqlite3VdbeAddOp2(v, OP_SorterNext, iTab, addr); VdbeCoverage(v); }else{ sqlite3VdbeAddOp2(v, OP_Next, iTab, addr); VdbeCoverage(v); } if( pSort->regReturn ) sqlite3VdbeAddOp1(v, OP_Return, pSort->regReturn); sqlite3VdbeResolveLabel(v, addrBreak); } /* ** Return a pointer to a string containing the 'declaration type' of the ** expression pExpr. The string may be treated as static by the caller. ** ** Also try to estimate the size of the returned value and return that ** result in *pEstWidth. ** ** The declaration type is the exact datatype definition extracted from the ** original CREATE TABLE statement if the expression is a column. The ** declaration type for a ROWID field is INTEGER. Exactly when an expression ** is considered a column can be complex in the presence of subqueries. The ** result-set expression in all of the following SELECT statements is ** considered a column by this function. ** ** SELECT col FROM tbl; ** SELECT (SELECT col FROM tbl; ** SELECT (SELECT col FROM tbl); ** SELECT abc FROM (SELECT col AS abc FROM tbl); ** ** The declaration type for any expression other than a column is NULL. ** ** This routine has either 3 or 6 parameters depending on whether or not ** the SQLITE_ENABLE_COLUMN_METADATA compile-time option is used. */ #ifdef SQLITE_ENABLE_COLUMN_METADATA # define columnType(A,B,C,D,E) columnTypeImpl(A,B,C,D,E) #else /* if !defined(SQLITE_ENABLE_COLUMN_METADATA) */ # define columnType(A,B,C,D,E) columnTypeImpl(A,B) #endif static const char *columnTypeImpl( NameContext *pNC, #ifndef SQLITE_ENABLE_COLUMN_METADATA Expr *pExpr #else Expr *pExpr, const char **pzOrigDb, const char **pzOrigTab, const char **pzOrigCol #endif ){ char const *zType = 0; int j; #ifdef SQLITE_ENABLE_COLUMN_METADATA char const *zOrigDb = 0; char const *zOrigTab = 0; char const *zOrigCol = 0; #endif assert( pExpr!=0 ); assert( pNC->pSrcList!=0 ); switch( pExpr->op ){ case TK_COLUMN: { /* The expression is a column. Locate the table the column is being ** extracted from in NameContext.pSrcList. This table may be real ** database table or a subquery. */ Table *pTab = 0; /* Table structure column is extracted from */ Select *pS = 0; /* Select the column is extracted from */ int iCol = pExpr->iColumn; /* Index of column in pTab */ while( pNC && !pTab ){ SrcList *pTabList = pNC->pSrcList; for(j=0;jnSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++); if( jnSrc ){ pTab = pTabList->a[j].pTab; pS = pTabList->a[j].pSelect; }else{ pNC = pNC->pNext; } } if( pTab==0 ){ /* At one time, code such as "SELECT new.x" within a trigger would ** cause this condition to run. Since then, we have restructured how ** trigger code is generated and so this condition is no longer ** possible. However, it can still be true for statements like ** the following: ** ** CREATE TABLE t1(col INTEGER); ** SELECT (SELECT t1.col) FROM FROM t1; ** ** when columnType() is called on the expression "t1.col" in the ** sub-select. In this case, set the column type to NULL, even ** though it should really be "INTEGER". ** ** This is not a problem, as the column type of "t1.col" is never ** used. When columnType() is called on the expression ** "(SELECT t1.col)", the correct type is returned (see the TK_SELECT ** branch below. */ break; } assert( pTab && ExprUseYTab(pExpr) && pExpr->y.pTab==pTab ); if( pS ){ /* The "table" is actually a sub-select or a view in the FROM clause ** of the SELECT statement. Return the declaration type and origin ** data for the result-set column of the sub-select. */ if( iColpEList->nExpr #ifdef SQLITE_ALLOW_ROWID_IN_VIEW && iCol>=0 #else && ALWAYS(iCol>=0) #endif ){ /* If iCol is less than zero, then the expression requests the ** rowid of the sub-select or view. This expression is legal (see ** test case misc2.2.2) - it always evaluates to NULL. */ NameContext sNC; Expr *p = pS->pEList->a[iCol].pExpr; sNC.pSrcList = pS->pSrc; sNC.pNext = pNC; sNC.pParse = pNC->pParse; zType = columnType(&sNC, p,&zOrigDb,&zOrigTab,&zOrigCol); } }else{ /* A real table or a CTE table */ assert( !pS ); #ifdef SQLITE_ENABLE_COLUMN_METADATA if( iCol<0 ) iCol = pTab->iPKey; assert( iCol==XN_ROWID || (iCol>=0 && iColnCol) ); if( iCol<0 ){ zType = "INTEGER"; zOrigCol = "rowid"; }else{ zOrigCol = pTab->aCol[iCol].zCnName; zType = sqlite3ColumnType(&pTab->aCol[iCol],0); } zOrigTab = pTab->zName; if( pNC->pParse && pTab->pSchema ){ int iDb = sqlite3SchemaToIndex(pNC->pParse->db, pTab->pSchema); zOrigDb = pNC->pParse->db->aDb[iDb].zDbSName; } #else assert( iCol==XN_ROWID || (iCol>=0 && iColnCol) ); if( iCol<0 ){ zType = "INTEGER"; }else{ zType = sqlite3ColumnType(&pTab->aCol[iCol],0); } #endif } break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_SELECT: { /* The expression is a sub-select. Return the declaration type and ** origin info for the single column in the result set of the SELECT ** statement. */ NameContext sNC; Select *pS; Expr *p; assert( ExprUseXSelect(pExpr) ); pS = pExpr->x.pSelect; p = pS->pEList->a[0].pExpr; sNC.pSrcList = pS->pSrc; sNC.pNext = pNC; sNC.pParse = pNC->pParse; zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol); break; } #endif } #ifdef SQLITE_ENABLE_COLUMN_METADATA if( pzOrigDb ){ assert( pzOrigTab && pzOrigCol ); *pzOrigDb = zOrigDb; *pzOrigTab = zOrigTab; *pzOrigCol = zOrigCol; } #endif return zType; } /* ** Generate code that will tell the VDBE the declaration types of columns ** in the result set. */ static void generateColumnTypes( Parse *pParse, /* Parser context */ SrcList *pTabList, /* List of tables */ ExprList *pEList /* Expressions defining the result set */ ){ #ifndef SQLITE_OMIT_DECLTYPE Vdbe *v = pParse->pVdbe; int i; NameContext sNC; sNC.pSrcList = pTabList; sNC.pParse = pParse; sNC.pNext = 0; for(i=0; inExpr; i++){ Expr *p = pEList->a[i].pExpr; const char *zType; #ifdef SQLITE_ENABLE_COLUMN_METADATA const char *zOrigDb = 0; const char *zOrigTab = 0; const char *zOrigCol = 0; zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol); /* The vdbe must make its own copy of the column-type and other ** column specific strings, in case the schema is reset before this ** virtual machine is deleted. */ sqlite3VdbeSetColName(v, i, COLNAME_DATABASE, zOrigDb, SQLITE_TRANSIENT); sqlite3VdbeSetColName(v, i, COLNAME_TABLE, zOrigTab, SQLITE_TRANSIENT); sqlite3VdbeSetColName(v, i, COLNAME_COLUMN, zOrigCol, SQLITE_TRANSIENT); #else zType = columnType(&sNC, p, 0, 0, 0); #endif sqlite3VdbeSetColName(v, i, COLNAME_DECLTYPE, zType, SQLITE_TRANSIENT); } #endif /* !defined(SQLITE_OMIT_DECLTYPE) */ } /* ** Compute the column names for a SELECT statement. ** ** The only guarantee that SQLite makes about column names is that if the ** column has an AS clause assigning it a name, that will be the name used. ** That is the only documented guarantee. However, countless applications ** developed over the years have made baseless assumptions about column names ** and will break if those assumptions changes. Hence, use extreme caution ** when modifying this routine to avoid breaking legacy. ** ** See Also: sqlite3ColumnsFromExprList() ** ** The PRAGMA short_column_names and PRAGMA full_column_names settings are ** deprecated. The default setting is short=ON, full=OFF. 99.9% of all ** applications should operate this way. Nevertheless, we need to support the ** other modes for legacy: ** ** short=OFF, full=OFF: Column name is the text of the expression has it ** originally appears in the SELECT statement. In ** other words, the zSpan of the result expression. ** ** short=ON, full=OFF: (This is the default setting). If the result ** refers directly to a table column, then the ** result column name is just the table column ** name: COLUMN. Otherwise use zSpan. ** ** full=ON, short=ANY: If the result refers directly to a table column, ** then the result column name with the table name ** prefix, ex: TABLE.COLUMN. Otherwise use zSpan. */ SQLITE_PRIVATE void sqlite3GenerateColumnNames( Parse *pParse, /* Parser context */ Select *pSelect /* Generate column names for this SELECT statement */ ){ Vdbe *v = pParse->pVdbe; int i; Table *pTab; SrcList *pTabList; ExprList *pEList; sqlite3 *db = pParse->db; int fullName; /* TABLE.COLUMN if no AS clause and is a direct table ref */ int srcName; /* COLUMN or TABLE.COLUMN if no AS clause and is direct */ #ifndef SQLITE_OMIT_EXPLAIN /* If this is an EXPLAIN, skip this step */ if( pParse->explain ){ return; } #endif if( pParse->colNamesSet ) return; /* Column names are determined by the left-most term of a compound select */ while( pSelect->pPrior ) pSelect = pSelect->pPrior; SELECTTRACE(1,pParse,pSelect,("generating column names\n")); pTabList = pSelect->pSrc; pEList = pSelect->pEList; assert( v!=0 ); assert( pTabList!=0 ); pParse->colNamesSet = 1; fullName = (db->flags & SQLITE_FullColNames)!=0; srcName = (db->flags & SQLITE_ShortColNames)!=0 || fullName; sqlite3VdbeSetNumCols(v, pEList->nExpr); for(i=0; inExpr; i++){ Expr *p = pEList->a[i].pExpr; assert( p!=0 ); assert( p->op!=TK_AGG_COLUMN ); /* Agg processing has not run yet */ assert( p->op!=TK_COLUMN || (ExprUseYTab(p) && p->y.pTab!=0) ); /* Covering idx not yet coded */ if( pEList->a[i].zEName && pEList->a[i].eEName==ENAME_NAME ){ /* An AS clause always takes first priority */ char *zName = pEList->a[i].zEName; sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_TRANSIENT); }else if( srcName && p->op==TK_COLUMN ){ char *zCol; int iCol = p->iColumn; pTab = p->y.pTab; assert( pTab!=0 ); if( iCol<0 ) iCol = pTab->iPKey; assert( iCol==-1 || (iCol>=0 && iColnCol) ); if( iCol<0 ){ zCol = "rowid"; }else{ zCol = pTab->aCol[iCol].zCnName; } if( fullName ){ char *zName = 0; zName = sqlite3MPrintf(db, "%s.%s", pTab->zName, zCol); sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_DYNAMIC); }else{ sqlite3VdbeSetColName(v, i, COLNAME_NAME, zCol, SQLITE_TRANSIENT); } }else{ const char *z = pEList->a[i].zEName; z = z==0 ? sqlite3MPrintf(db, "column%d", i+1) : sqlite3DbStrDup(db, z); sqlite3VdbeSetColName(v, i, COLNAME_NAME, z, SQLITE_DYNAMIC); } } generateColumnTypes(pParse, pTabList, pEList); } /* ** Given an expression list (which is really the list of expressions ** that form the result set of a SELECT statement) compute appropriate ** column names for a table that would hold the expression list. ** ** All column names will be unique. ** ** Only the column names are computed. Column.zType, Column.zColl, ** and other fields of Column are zeroed. ** ** Return SQLITE_OK on success. If a memory allocation error occurs, ** store NULL in *paCol and 0 in *pnCol and return SQLITE_NOMEM. ** ** The only guarantee that SQLite makes about column names is that if the ** column has an AS clause assigning it a name, that will be the name used. ** That is the only documented guarantee. However, countless applications ** developed over the years have made baseless assumptions about column names ** and will break if those assumptions changes. Hence, use extreme caution ** when modifying this routine to avoid breaking legacy. ** ** See Also: sqlite3GenerateColumnNames() */ SQLITE_PRIVATE int sqlite3ColumnsFromExprList( Parse *pParse, /* Parsing context */ ExprList *pEList, /* Expr list from which to derive column names */ i16 *pnCol, /* Write the number of columns here */ Column **paCol /* Write the new column list here */ ){ sqlite3 *db = pParse->db; /* Database connection */ int i, j; /* Loop counters */ u32 cnt; /* Index added to make the name unique */ Column *aCol, *pCol; /* For looping over result columns */ int nCol; /* Number of columns in the result set */ char *zName; /* Column name */ int nName; /* Size of name in zName[] */ Hash ht; /* Hash table of column names */ Table *pTab; sqlite3HashInit(&ht); if( pEList ){ nCol = pEList->nExpr; aCol = sqlite3DbMallocZero(db, sizeof(aCol[0])*nCol); testcase( aCol==0 ); if( NEVER(nCol>32767) ) nCol = 32767; }else{ nCol = 0; aCol = 0; } assert( nCol==(i16)nCol ); *pnCol = nCol; *paCol = aCol; for(i=0, pCol=aCol; imallocFailed; i++, pCol++){ /* Get an appropriate name for the column */ if( (zName = pEList->a[i].zEName)!=0 && pEList->a[i].eEName==ENAME_NAME ){ /* If the column contains an "AS " phrase, use as the name */ }else{ Expr *pColExpr = sqlite3ExprSkipCollateAndLikely(pEList->a[i].pExpr); while( ALWAYS(pColExpr!=0) && pColExpr->op==TK_DOT ){ pColExpr = pColExpr->pRight; assert( pColExpr!=0 ); } if( pColExpr->op==TK_COLUMN && ALWAYS( ExprUseYTab(pColExpr) ) && (pTab = pColExpr->y.pTab)!=0 ){ /* For columns use the column name name */ int iCol = pColExpr->iColumn; if( iCol<0 ) iCol = pTab->iPKey; zName = iCol>=0 ? pTab->aCol[iCol].zCnName : "rowid"; }else if( pColExpr->op==TK_ID ){ assert( !ExprHasProperty(pColExpr, EP_IntValue) ); zName = pColExpr->u.zToken; }else{ /* Use the original text of the column expression as its name */ zName = pEList->a[i].zEName; } } if( zName && !sqlite3IsTrueOrFalse(zName) ){ zName = sqlite3DbStrDup(db, zName); }else{ zName = sqlite3MPrintf(db,"column%d",i+1); } /* Make sure the column name is unique. If the name is not unique, ** append an integer to the name so that it becomes unique. */ cnt = 0; while( zName && sqlite3HashFind(&ht, zName)!=0 ){ nName = sqlite3Strlen30(zName); if( nName>0 ){ for(j=nName-1; j>0 && sqlite3Isdigit(zName[j]); j--){} if( zName[j]==':' ) nName = j; } zName = sqlite3MPrintf(db, "%.*z:%u", nName, zName, ++cnt); if( cnt>3 ) sqlite3_randomness(sizeof(cnt), &cnt); } pCol->zCnName = zName; pCol->hName = sqlite3StrIHash(zName); sqlite3ColumnPropertiesFromName(0, pCol); if( zName && sqlite3HashInsert(&ht, zName, pCol)==pCol ){ sqlite3OomFault(db); } } sqlite3HashClear(&ht); if( db->mallocFailed ){ for(j=0; jdb; NameContext sNC; Column *pCol; CollSeq *pColl; int i; Expr *p; struct ExprList_item *a; assert( pSelect!=0 ); assert( (pSelect->selFlags & SF_Resolved)!=0 ); assert( pTab->nCol==pSelect->pEList->nExpr || db->mallocFailed ); if( db->mallocFailed ) return; memset(&sNC, 0, sizeof(sNC)); sNC.pSrcList = pSelect->pSrc; a = pSelect->pEList->a; for(i=0, pCol=pTab->aCol; inCol; i++, pCol++){ const char *zType; i64 n, m; pTab->tabFlags |= (pCol->colFlags & COLFLAG_NOINSERT); p = a[i].pExpr; zType = columnType(&sNC, p, 0, 0, 0); /* pCol->szEst = ... // Column size est for SELECT tables never used */ pCol->affinity = sqlite3ExprAffinity(p); if( zType ){ m = sqlite3Strlen30(zType); n = sqlite3Strlen30(pCol->zCnName); pCol->zCnName = sqlite3DbReallocOrFree(db, pCol->zCnName, n+m+2); if( pCol->zCnName ){ memcpy(&pCol->zCnName[n+1], zType, m+1); pCol->colFlags |= COLFLAG_HASTYPE; }else{ testcase( pCol->colFlags & COLFLAG_HASTYPE ); pCol->colFlags &= ~(COLFLAG_HASTYPE|COLFLAG_HASCOLL); } } if( pCol->affinity<=SQLITE_AFF_NONE ) pCol->affinity = aff; pColl = sqlite3ExprCollSeq(pParse, p); if( pColl ){ assert( pTab->pIndex==0 ); sqlite3ColumnSetColl(db, pCol, pColl->zName); } } pTab->szTabRow = 1; /* Any non-zero value works */ } /* ** Given a SELECT statement, generate a Table structure that describes ** the result set of that SELECT. */ SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect, char aff){ Table *pTab; sqlite3 *db = pParse->db; u64 savedFlags; savedFlags = db->flags; db->flags &= ~(u64)SQLITE_FullColNames; db->flags |= SQLITE_ShortColNames; sqlite3SelectPrep(pParse, pSelect, 0); db->flags = savedFlags; if( pParse->nErr ) return 0; while( pSelect->pPrior ) pSelect = pSelect->pPrior; pTab = sqlite3DbMallocZero(db, sizeof(Table) ); if( pTab==0 ){ return 0; } pTab->nTabRef = 1; pTab->zName = 0; pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); sqlite3ColumnsFromExprList(pParse, pSelect->pEList, &pTab->nCol, &pTab->aCol); sqlite3SelectAddColumnTypeAndCollation(pParse, pTab, pSelect, aff); pTab->iPKey = -1; if( db->mallocFailed ){ sqlite3DeleteTable(db, pTab); return 0; } return pTab; } /* ** Get a VDBE for the given parser context. Create a new one if necessary. ** If an error occurs, return NULL and leave a message in pParse. */ SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse *pParse){ if( pParse->pVdbe ){ return pParse->pVdbe; } if( pParse->pToplevel==0 && OptimizationEnabled(pParse->db,SQLITE_FactorOutConst) ){ pParse->okConstFactor = 1; } return sqlite3VdbeCreate(pParse); } /* ** Compute the iLimit and iOffset fields of the SELECT based on the ** pLimit expressions. pLimit->pLeft and pLimit->pRight hold the expressions ** that appear in the original SQL statement after the LIMIT and OFFSET ** keywords. Or NULL if those keywords are omitted. iLimit and iOffset ** are the integer memory register numbers for counters used to compute ** the limit and offset. If there is no limit and/or offset, then ** iLimit and iOffset are negative. ** ** This routine changes the values of iLimit and iOffset only if ** a limit or offset is defined by pLimit->pLeft and pLimit->pRight. iLimit ** and iOffset should have been preset to appropriate default values (zero) ** prior to calling this routine. ** ** The iOffset register (if it exists) is initialized to the value ** of the OFFSET. The iLimit register is initialized to LIMIT. Register ** iOffset+1 is initialized to LIMIT+OFFSET. ** ** Only if pLimit->pLeft!=0 do the limit registers get ** redefined. The UNION ALL operator uses this property to force ** the reuse of the same limit and offset registers across multiple ** SELECT statements. */ static void computeLimitRegisters(Parse *pParse, Select *p, int iBreak){ Vdbe *v = 0; int iLimit = 0; int iOffset; int n; Expr *pLimit = p->pLimit; if( p->iLimit ) return; /* ** "LIMIT -1" always shows all rows. There is some ** controversy about what the correct behavior should be. ** The current implementation interprets "LIMIT 0" to mean ** no rows. */ if( pLimit ){ assert( pLimit->op==TK_LIMIT ); assert( pLimit->pLeft!=0 ); p->iLimit = iLimit = ++pParse->nMem; v = sqlite3GetVdbe(pParse); assert( v!=0 ); if( sqlite3ExprIsInteger(pLimit->pLeft, &n) ){ sqlite3VdbeAddOp2(v, OP_Integer, n, iLimit); VdbeComment((v, "LIMIT counter")); if( n==0 ){ sqlite3VdbeGoto(v, iBreak); }else if( n>=0 && p->nSelectRow>sqlite3LogEst((u64)n) ){ p->nSelectRow = sqlite3LogEst((u64)n); p->selFlags |= SF_FixedLimit; } }else{ sqlite3ExprCode(pParse, pLimit->pLeft, iLimit); sqlite3VdbeAddOp1(v, OP_MustBeInt, iLimit); VdbeCoverage(v); VdbeComment((v, "LIMIT counter")); sqlite3VdbeAddOp2(v, OP_IfNot, iLimit, iBreak); VdbeCoverage(v); } if( pLimit->pRight ){ p->iOffset = iOffset = ++pParse->nMem; pParse->nMem++; /* Allocate an extra register for limit+offset */ sqlite3ExprCode(pParse, pLimit->pRight, iOffset); sqlite3VdbeAddOp1(v, OP_MustBeInt, iOffset); VdbeCoverage(v); VdbeComment((v, "OFFSET counter")); sqlite3VdbeAddOp3(v, OP_OffsetLimit, iLimit, iOffset+1, iOffset); VdbeComment((v, "LIMIT+OFFSET")); } } } #ifndef SQLITE_OMIT_COMPOUND_SELECT /* ** Return the appropriate collating sequence for the iCol-th column of ** the result set for the compound-select statement "p". Return NULL if ** the column has no default collating sequence. ** ** The collating sequence for the compound select is taken from the ** left-most term of the select that has a collating sequence. */ static CollSeq *multiSelectCollSeq(Parse *pParse, Select *p, int iCol){ CollSeq *pRet; if( p->pPrior ){ pRet = multiSelectCollSeq(pParse, p->pPrior, iCol); }else{ pRet = 0; } assert( iCol>=0 ); /* iCol must be less than p->pEList->nExpr. Otherwise an error would ** have been thrown during name resolution and we would not have gotten ** this far */ if( pRet==0 && ALWAYS(iColpEList->nExpr) ){ pRet = sqlite3ExprCollSeq(pParse, p->pEList->a[iCol].pExpr); } return pRet; } /* ** The select statement passed as the second parameter is a compound SELECT ** with an ORDER BY clause. This function allocates and returns a KeyInfo ** structure suitable for implementing the ORDER BY. ** ** Space to hold the KeyInfo structure is obtained from malloc. The calling ** function is responsible for ensuring that this structure is eventually ** freed. */ static KeyInfo *multiSelectOrderByKeyInfo(Parse *pParse, Select *p, int nExtra){ ExprList *pOrderBy = p->pOrderBy; int nOrderBy = ALWAYS(pOrderBy!=0) ? pOrderBy->nExpr : 0; sqlite3 *db = pParse->db; KeyInfo *pRet = sqlite3KeyInfoAlloc(db, nOrderBy+nExtra, 1); if( pRet ){ int i; for(i=0; ia[i]; Expr *pTerm = pItem->pExpr; CollSeq *pColl; if( pTerm->flags & EP_Collate ){ pColl = sqlite3ExprCollSeq(pParse, pTerm); }else{ pColl = multiSelectCollSeq(pParse, p, pItem->u.x.iOrderByCol-1); if( pColl==0 ) pColl = db->pDfltColl; pOrderBy->a[i].pExpr = sqlite3ExprAddCollateString(pParse, pTerm, pColl->zName); } assert( sqlite3KeyInfoIsWriteable(pRet) ); pRet->aColl[i] = pColl; pRet->aSortFlags[i] = pOrderBy->a[i].sortFlags; } } return pRet; } #ifndef SQLITE_OMIT_CTE /* ** This routine generates VDBE code to compute the content of a WITH RECURSIVE ** query of the form: ** ** AS ( UNION [ALL] ) ** \___________/ \_______________/ ** p->pPrior p ** ** ** There is exactly one reference to the recursive-table in the FROM clause ** of recursive-query, marked with the SrcList->a[].fg.isRecursive flag. ** ** The setup-query runs once to generate an initial set of rows that go ** into a Queue table. Rows are extracted from the Queue table one by ** one. Each row extracted from Queue is output to pDest. Then the single ** extracted row (now in the iCurrent table) becomes the content of the ** recursive-table for a recursive-query run. The output of the recursive-query ** is added back into the Queue table. Then another row is extracted from Queue ** and the iteration continues until the Queue table is empty. ** ** If the compound query operator is UNION then no duplicate rows are ever ** inserted into the Queue table. The iDistinct table keeps a copy of all rows ** that have ever been inserted into Queue and causes duplicates to be ** discarded. If the operator is UNION ALL, then duplicates are allowed. ** ** If the query has an ORDER BY, then entries in the Queue table are kept in ** ORDER BY order and the first entry is extracted for each cycle. Without ** an ORDER BY, the Queue table is just a FIFO. ** ** If a LIMIT clause is provided, then the iteration stops after LIMIT rows ** have been output to pDest. A LIMIT of zero means to output no rows and a ** negative LIMIT means to output all rows. If there is also an OFFSET clause ** with a positive value, then the first OFFSET outputs are discarded rather ** than being sent to pDest. The LIMIT count does not begin until after OFFSET ** rows have been skipped. */ static void generateWithRecursiveQuery( Parse *pParse, /* Parsing context */ Select *p, /* The recursive SELECT to be coded */ SelectDest *pDest /* What to do with query results */ ){ SrcList *pSrc = p->pSrc; /* The FROM clause of the recursive query */ int nCol = p->pEList->nExpr; /* Number of columns in the recursive table */ Vdbe *v = pParse->pVdbe; /* The prepared statement under construction */ Select *pSetup; /* The setup query */ Select *pFirstRec; /* Left-most recursive term */ int addrTop; /* Top of the loop */ int addrCont, addrBreak; /* CONTINUE and BREAK addresses */ int iCurrent = 0; /* The Current table */ int regCurrent; /* Register holding Current table */ int iQueue; /* The Queue table */ int iDistinct = 0; /* To ensure unique results if UNION */ int eDest = SRT_Fifo; /* How to write to Queue */ SelectDest destQueue; /* SelectDest targetting the Queue table */ int i; /* Loop counter */ int rc; /* Result code */ ExprList *pOrderBy; /* The ORDER BY clause */ Expr *pLimit; /* Saved LIMIT and OFFSET */ int regLimit, regOffset; /* Registers used by LIMIT and OFFSET */ #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ){ sqlite3ErrorMsg(pParse, "cannot use window functions in recursive queries"); return; } #endif /* Obtain authorization to do a recursive query */ if( sqlite3AuthCheck(pParse, SQLITE_RECURSIVE, 0, 0, 0) ) return; /* Process the LIMIT and OFFSET clauses, if they exist */ addrBreak = sqlite3VdbeMakeLabel(pParse); p->nSelectRow = 320; /* 4 billion rows */ computeLimitRegisters(pParse, p, addrBreak); pLimit = p->pLimit; regLimit = p->iLimit; regOffset = p->iOffset; p->pLimit = 0; p->iLimit = p->iOffset = 0; pOrderBy = p->pOrderBy; /* Locate the cursor number of the Current table */ for(i=0; ALWAYS(inSrc); i++){ if( pSrc->a[i].fg.isRecursive ){ iCurrent = pSrc->a[i].iCursor; break; } } /* Allocate cursors numbers for Queue and Distinct. The cursor number for ** the Distinct table must be exactly one greater than Queue in order ** for the SRT_DistFifo and SRT_DistQueue destinations to work. */ iQueue = pParse->nTab++; if( p->op==TK_UNION ){ eDest = pOrderBy ? SRT_DistQueue : SRT_DistFifo; iDistinct = pParse->nTab++; }else{ eDest = pOrderBy ? SRT_Queue : SRT_Fifo; } sqlite3SelectDestInit(&destQueue, eDest, iQueue); /* Allocate cursors for Current, Queue, and Distinct. */ regCurrent = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_OpenPseudo, iCurrent, regCurrent, nCol); if( pOrderBy ){ KeyInfo *pKeyInfo = multiSelectOrderByKeyInfo(pParse, p, 1); sqlite3VdbeAddOp4(v, OP_OpenEphemeral, iQueue, pOrderBy->nExpr+2, 0, (char*)pKeyInfo, P4_KEYINFO); destQueue.pOrderBy = pOrderBy; }else{ sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iQueue, nCol); } VdbeComment((v, "Queue table")); if( iDistinct ){ p->addrOpenEphm[0] = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iDistinct, 0); p->selFlags |= SF_UsesEphemeral; } /* Detach the ORDER BY clause from the compound SELECT */ p->pOrderBy = 0; /* Figure out how many elements of the compound SELECT are part of the ** recursive query. Make sure no recursive elements use aggregate ** functions. Mark the recursive elements as UNION ALL even if they ** are really UNION because the distinctness will be enforced by the ** iDistinct table. pFirstRec is left pointing to the left-most ** recursive term of the CTE. */ for(pFirstRec=p; ALWAYS(pFirstRec!=0); pFirstRec=pFirstRec->pPrior){ if( pFirstRec->selFlags & SF_Aggregate ){ sqlite3ErrorMsg(pParse, "recursive aggregate queries not supported"); goto end_of_recursive_query; } pFirstRec->op = TK_ALL; if( (pFirstRec->pPrior->selFlags & SF_Recursive)==0 ) break; } /* Store the results of the setup-query in Queue. */ pSetup = pFirstRec->pPrior; pSetup->pNext = 0; ExplainQueryPlan((pParse, 1, "SETUP")); rc = sqlite3Select(pParse, pSetup, &destQueue); pSetup->pNext = p; if( rc ) goto end_of_recursive_query; /* Find the next row in the Queue and output that row */ addrTop = sqlite3VdbeAddOp2(v, OP_Rewind, iQueue, addrBreak); VdbeCoverage(v); /* Transfer the next row in Queue over to Current */ sqlite3VdbeAddOp1(v, OP_NullRow, iCurrent); /* To reset column cache */ if( pOrderBy ){ sqlite3VdbeAddOp3(v, OP_Column, iQueue, pOrderBy->nExpr+1, regCurrent); }else{ sqlite3VdbeAddOp2(v, OP_RowData, iQueue, regCurrent); } sqlite3VdbeAddOp1(v, OP_Delete, iQueue); /* Output the single row in Current */ addrCont = sqlite3VdbeMakeLabel(pParse); codeOffset(v, regOffset, addrCont); selectInnerLoop(pParse, p, iCurrent, 0, 0, pDest, addrCont, addrBreak); if( regLimit ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, regLimit, addrBreak); VdbeCoverage(v); } sqlite3VdbeResolveLabel(v, addrCont); /* Execute the recursive SELECT taking the single row in Current as ** the value for the recursive-table. Store the results in the Queue. */ pFirstRec->pPrior = 0; ExplainQueryPlan((pParse, 1, "RECURSIVE STEP")); sqlite3Select(pParse, p, &destQueue); assert( pFirstRec->pPrior==0 ); pFirstRec->pPrior = pSetup; /* Keep running the loop until the Queue is empty */ sqlite3VdbeGoto(v, addrTop); sqlite3VdbeResolveLabel(v, addrBreak); end_of_recursive_query: sqlite3ExprListDelete(pParse->db, p->pOrderBy); p->pOrderBy = pOrderBy; p->pLimit = pLimit; return; } #endif /* SQLITE_OMIT_CTE */ /* Forward references */ static int multiSelectOrderBy( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ); /* ** Handle the special case of a compound-select that originates from a ** VALUES clause. By handling this as a special case, we avoid deep ** recursion, and thus do not need to enforce the SQLITE_LIMIT_COMPOUND_SELECT ** on a VALUES clause. ** ** Because the Select object originates from a VALUES clause: ** (1) There is no LIMIT or OFFSET or else there is a LIMIT of exactly 1 ** (2) All terms are UNION ALL ** (3) There is no ORDER BY clause ** ** The "LIMIT of exactly 1" case of condition (1) comes about when a VALUES ** clause occurs within scalar expression (ex: "SELECT (VALUES(1),(2),(3))"). ** The sqlite3CodeSubselect will have added the LIMIT 1 clause in tht case. ** Since the limit is exactly 1, we only need to evalutes the left-most VALUES. */ static int multiSelectValues( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ){ int nRow = 1; int rc = 0; int bShowAll = p->pLimit==0; assert( p->selFlags & SF_MultiValue ); do{ assert( p->selFlags & SF_Values ); assert( p->op==TK_ALL || (p->op==TK_SELECT && p->pPrior==0) ); assert( p->pNext==0 || p->pEList->nExpr==p->pNext->pEList->nExpr ); #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ) return -1; #endif if( p->pPrior==0 ) break; assert( p->pPrior->pNext==p ); p = p->pPrior; nRow += bShowAll; }while(1); ExplainQueryPlan((pParse, 0, "SCAN %d CONSTANT ROW%s", nRow, nRow==1 ? "" : "S")); while( p ){ selectInnerLoop(pParse, p, -1, 0, 0, pDest, 1, 1); if( !bShowAll ) break; p->nSelectRow = nRow; p = p->pNext; } return rc; } /* ** Return true if the SELECT statement which is known to be the recursive ** part of a recursive CTE still has its anchor terms attached. If the ** anchor terms have already been removed, then return false. */ static int hasAnchor(Select *p){ while( p && (p->selFlags & SF_Recursive)!=0 ){ p = p->pPrior; } return p!=0; } /* ** This routine is called to process a compound query form from ** two or more separate queries using UNION, UNION ALL, EXCEPT, or ** INTERSECT ** ** "p" points to the right-most of the two queries. the query on the ** left is p->pPrior. The left query could also be a compound query ** in which case this routine will be called recursively. ** ** The results of the total query are to be written into a destination ** of type eDest with parameter iParm. ** ** Example 1: Consider a three-way compound SQL statement. ** ** SELECT a FROM t1 UNION SELECT b FROM t2 UNION SELECT c FROM t3 ** ** This statement is parsed up as follows: ** ** SELECT c FROM t3 ** | ** `-----> SELECT b FROM t2 ** | ** `------> SELECT a FROM t1 ** ** The arrows in the diagram above represent the Select.pPrior pointer. ** So if this routine is called with p equal to the t3 query, then ** pPrior will be the t2 query. p->op will be TK_UNION in this case. ** ** Notice that because of the way SQLite parses compound SELECTs, the ** individual selects always group from left to right. */ static int multiSelect( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ){ int rc = SQLITE_OK; /* Success code from a subroutine */ Select *pPrior; /* Another SELECT immediately to our left */ Vdbe *v; /* Generate code to this VDBE */ SelectDest dest; /* Alternative data destination */ Select *pDelete = 0; /* Chain of simple selects to delete */ sqlite3 *db; /* Database connection */ /* Make sure there is no ORDER BY or LIMIT clause on prior SELECTs. Only ** the last (right-most) SELECT in the series may have an ORDER BY or LIMIT. */ assert( p && p->pPrior ); /* Calling function guarantees this much */ assert( (p->selFlags & SF_Recursive)==0 || p->op==TK_ALL || p->op==TK_UNION ); assert( p->selFlags & SF_Compound ); db = pParse->db; pPrior = p->pPrior; dest = *pDest; assert( pPrior->pOrderBy==0 ); assert( pPrior->pLimit==0 ); v = sqlite3GetVdbe(pParse); assert( v!=0 ); /* The VDBE already created by calling function */ /* Create the destination temporary table if necessary */ if( dest.eDest==SRT_EphemTab ){ assert( p->pEList ); sqlite3VdbeAddOp2(v, OP_OpenEphemeral, dest.iSDParm, p->pEList->nExpr); dest.eDest = SRT_Table; } /* Special handling for a compound-select that originates as a VALUES clause. */ if( p->selFlags & SF_MultiValue ){ rc = multiSelectValues(pParse, p, &dest); if( rc>=0 ) goto multi_select_end; rc = SQLITE_OK; } /* Make sure all SELECTs in the statement have the same number of elements ** in their result sets. */ assert( p->pEList && pPrior->pEList ); assert( p->pEList->nExpr==pPrior->pEList->nExpr ); #ifndef SQLITE_OMIT_CTE if( (p->selFlags & SF_Recursive)!=0 && hasAnchor(p) ){ generateWithRecursiveQuery(pParse, p, &dest); }else #endif /* Compound SELECTs that have an ORDER BY clause are handled separately. */ if( p->pOrderBy ){ return multiSelectOrderBy(pParse, p, pDest); }else{ #ifndef SQLITE_OMIT_EXPLAIN if( pPrior->pPrior==0 ){ ExplainQueryPlan((pParse, 1, "COMPOUND QUERY")); ExplainQueryPlan((pParse, 1, "LEFT-MOST SUBQUERY")); } #endif /* Generate code for the left and right SELECT statements. */ switch( p->op ){ case TK_ALL: { int addr = 0; int nLimit = 0; /* Initialize to suppress harmless compiler warning */ assert( !pPrior->pLimit ); pPrior->iLimit = p->iLimit; pPrior->iOffset = p->iOffset; pPrior->pLimit = p->pLimit; SELECTTRACE(1, pParse, p, ("multiSelect UNION ALL left...\n")); rc = sqlite3Select(pParse, pPrior, &dest); pPrior->pLimit = 0; if( rc ){ goto multi_select_end; } p->pPrior = 0; p->iLimit = pPrior->iLimit; p->iOffset = pPrior->iOffset; if( p->iLimit ){ addr = sqlite3VdbeAddOp1(v, OP_IfNot, p->iLimit); VdbeCoverage(v); VdbeComment((v, "Jump ahead if LIMIT reached")); if( p->iOffset ){ sqlite3VdbeAddOp3(v, OP_OffsetLimit, p->iLimit, p->iOffset+1, p->iOffset); } } ExplainQueryPlan((pParse, 1, "UNION ALL")); SELECTTRACE(1, pParse, p, ("multiSelect UNION ALL right...\n")); rc = sqlite3Select(pParse, p, &dest); testcase( rc!=SQLITE_OK ); pDelete = p->pPrior; p->pPrior = pPrior; p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); if( p->pLimit && sqlite3ExprIsInteger(p->pLimit->pLeft, &nLimit) && nLimit>0 && p->nSelectRow > sqlite3LogEst((u64)nLimit) ){ p->nSelectRow = sqlite3LogEst((u64)nLimit); } if( addr ){ sqlite3VdbeJumpHere(v, addr); } break; } case TK_EXCEPT: case TK_UNION: { int unionTab; /* Cursor number of the temp table holding result */ u8 op = 0; /* One of the SRT_ operations to apply to self */ int priorOp; /* The SRT_ operation to apply to prior selects */ Expr *pLimit; /* Saved values of p->nLimit */ int addr; SelectDest uniondest; testcase( p->op==TK_EXCEPT ); testcase( p->op==TK_UNION ); priorOp = SRT_Union; if( dest.eDest==priorOp ){ /* We can reuse a temporary table generated by a SELECT to our ** right. */ assert( p->pLimit==0 ); /* Not allowed on leftward elements */ unionTab = dest.iSDParm; }else{ /* We will need to create our own temporary table to hold the ** intermediate results. */ unionTab = pParse->nTab++; assert( p->pOrderBy==0 ); addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, unionTab, 0); assert( p->addrOpenEphm[0] == -1 ); p->addrOpenEphm[0] = addr; findRightmost(p)->selFlags |= SF_UsesEphemeral; assert( p->pEList ); } /* Code the SELECT statements to our left */ assert( !pPrior->pOrderBy ); sqlite3SelectDestInit(&uniondest, priorOp, unionTab); SELECTTRACE(1, pParse, p, ("multiSelect EXCEPT/UNION left...\n")); rc = sqlite3Select(pParse, pPrior, &uniondest); if( rc ){ goto multi_select_end; } /* Code the current SELECT statement */ if( p->op==TK_EXCEPT ){ op = SRT_Except; }else{ assert( p->op==TK_UNION ); op = SRT_Union; } p->pPrior = 0; pLimit = p->pLimit; p->pLimit = 0; uniondest.eDest = op; ExplainQueryPlan((pParse, 1, "%s USING TEMP B-TREE", sqlite3SelectOpName(p->op))); SELECTTRACE(1, pParse, p, ("multiSelect EXCEPT/UNION right...\n")); rc = sqlite3Select(pParse, p, &uniondest); testcase( rc!=SQLITE_OK ); assert( p->pOrderBy==0 ); pDelete = p->pPrior; p->pPrior = pPrior; p->pOrderBy = 0; if( p->op==TK_UNION ){ p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); } sqlite3ExprDelete(db, p->pLimit); p->pLimit = pLimit; p->iLimit = 0; p->iOffset = 0; /* Convert the data in the temporary table into whatever form ** it is that we currently need. */ assert( unionTab==dest.iSDParm || dest.eDest!=priorOp ); assert( p->pEList || db->mallocFailed ); if( dest.eDest!=priorOp && db->mallocFailed==0 ){ int iCont, iBreak, iStart; iBreak = sqlite3VdbeMakeLabel(pParse); iCont = sqlite3VdbeMakeLabel(pParse); computeLimitRegisters(pParse, p, iBreak); sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak); VdbeCoverage(v); iStart = sqlite3VdbeCurrentAddr(v); selectInnerLoop(pParse, p, unionTab, 0, 0, &dest, iCont, iBreak); sqlite3VdbeResolveLabel(v, iCont); sqlite3VdbeAddOp2(v, OP_Next, unionTab, iStart); VdbeCoverage(v); sqlite3VdbeResolveLabel(v, iBreak); sqlite3VdbeAddOp2(v, OP_Close, unionTab, 0); } break; } default: assert( p->op==TK_INTERSECT ); { int tab1, tab2; int iCont, iBreak, iStart; Expr *pLimit; int addr; SelectDest intersectdest; int r1; /* INTERSECT is different from the others since it requires ** two temporary tables. Hence it has its own case. Begin ** by allocating the tables we will need. */ tab1 = pParse->nTab++; tab2 = pParse->nTab++; assert( p->pOrderBy==0 ); addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0); assert( p->addrOpenEphm[0] == -1 ); p->addrOpenEphm[0] = addr; findRightmost(p)->selFlags |= SF_UsesEphemeral; assert( p->pEList ); /* Code the SELECTs to our left into temporary table "tab1". */ sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1); SELECTTRACE(1, pParse, p, ("multiSelect INTERSECT left...\n")); rc = sqlite3Select(pParse, pPrior, &intersectdest); if( rc ){ goto multi_select_end; } /* Code the current SELECT into temporary table "tab2" */ addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab2, 0); assert( p->addrOpenEphm[1] == -1 ); p->addrOpenEphm[1] = addr; p->pPrior = 0; pLimit = p->pLimit; p->pLimit = 0; intersectdest.iSDParm = tab2; ExplainQueryPlan((pParse, 1, "%s USING TEMP B-TREE", sqlite3SelectOpName(p->op))); SELECTTRACE(1, pParse, p, ("multiSelect INTERSECT right...\n")); rc = sqlite3Select(pParse, p, &intersectdest); testcase( rc!=SQLITE_OK ); pDelete = p->pPrior; p->pPrior = pPrior; if( p->nSelectRow>pPrior->nSelectRow ){ p->nSelectRow = pPrior->nSelectRow; } sqlite3ExprDelete(db, p->pLimit); p->pLimit = pLimit; /* Generate code to take the intersection of the two temporary ** tables. */ if( rc ) break; assert( p->pEList ); iBreak = sqlite3VdbeMakeLabel(pParse); iCont = sqlite3VdbeMakeLabel(pParse); computeLimitRegisters(pParse, p, iBreak); sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); VdbeCoverage(v); r1 = sqlite3GetTempReg(pParse); iStart = sqlite3VdbeAddOp2(v, OP_RowData, tab1, r1); sqlite3VdbeAddOp4Int(v, OP_NotFound, tab2, iCont, r1, 0); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, r1); selectInnerLoop(pParse, p, tab1, 0, 0, &dest, iCont, iBreak); sqlite3VdbeResolveLabel(v, iCont); sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); VdbeCoverage(v); sqlite3VdbeResolveLabel(v, iBreak); sqlite3VdbeAddOp2(v, OP_Close, tab2, 0); sqlite3VdbeAddOp2(v, OP_Close, tab1, 0); break; } } #ifndef SQLITE_OMIT_EXPLAIN if( p->pNext==0 ){ ExplainQueryPlanPop(pParse); } #endif } if( pParse->nErr ) goto multi_select_end; /* Compute collating sequences used by ** temporary tables needed to implement the compound select. ** Attach the KeyInfo structure to all temporary tables. ** ** This section is run by the right-most SELECT statement only. ** SELECT statements to the left always skip this part. The right-most ** SELECT might also skip this part if it has no ORDER BY clause and ** no temp tables are required. */ if( p->selFlags & SF_UsesEphemeral ){ int i; /* Loop counter */ KeyInfo *pKeyInfo; /* Collating sequence for the result set */ Select *pLoop; /* For looping through SELECT statements */ CollSeq **apColl; /* For looping through pKeyInfo->aColl[] */ int nCol; /* Number of columns in result set */ assert( p->pNext==0 ); assert( p->pEList!=0 ); nCol = p->pEList->nExpr; pKeyInfo = sqlite3KeyInfoAlloc(db, nCol, 1); if( !pKeyInfo ){ rc = SQLITE_NOMEM_BKPT; goto multi_select_end; } for(i=0, apColl=pKeyInfo->aColl; ipDfltColl; } } for(pLoop=p; pLoop; pLoop=pLoop->pPrior){ for(i=0; i<2; i++){ int addr = pLoop->addrOpenEphm[i]; if( addr<0 ){ /* If [0] is unused then [1] is also unused. So we can ** always safely abort as soon as the first unused slot is found */ assert( pLoop->addrOpenEphm[1]<0 ); break; } sqlite3VdbeChangeP2(v, addr, nCol); sqlite3VdbeChangeP4(v, addr, (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); pLoop->addrOpenEphm[i] = -1; } } sqlite3KeyInfoUnref(pKeyInfo); } multi_select_end: pDest->iSdst = dest.iSdst; pDest->nSdst = dest.nSdst; if( pDelete ){ sqlite3ParserAddCleanup(pParse, (void(*)(sqlite3*,void*))sqlite3SelectDelete, pDelete); } return rc; } #endif /* SQLITE_OMIT_COMPOUND_SELECT */ /* ** Error message for when two or more terms of a compound select have different ** size result sets. */ SQLITE_PRIVATE void sqlite3SelectWrongNumTermsError(Parse *pParse, Select *p){ if( p->selFlags & SF_Values ){ sqlite3ErrorMsg(pParse, "all VALUES must have the same number of terms"); }else{ sqlite3ErrorMsg(pParse, "SELECTs to the left and right of %s" " do not have the same number of result columns", sqlite3SelectOpName(p->op)); } } /* ** Code an output subroutine for a coroutine implementation of a ** SELECT statment. ** ** The data to be output is contained in pIn->iSdst. There are ** pIn->nSdst columns to be output. pDest is where the output should ** be sent. ** ** regReturn is the number of the register holding the subroutine ** return address. ** ** If regPrev>0 then it is the first register in a vector that ** records the previous output. mem[regPrev] is a flag that is false ** if there has been no previous output. If regPrev>0 then code is ** generated to suppress duplicates. pKeyInfo is used for comparing ** keys. ** ** If the LIMIT found in p->iLimit is reached, jump immediately to ** iBreak. */ static int generateOutputSubroutine( Parse *pParse, /* Parsing context */ Select *p, /* The SELECT statement */ SelectDest *pIn, /* Coroutine supplying data */ SelectDest *pDest, /* Where to send the data */ int regReturn, /* The return address register */ int regPrev, /* Previous result register. No uniqueness if 0 */ KeyInfo *pKeyInfo, /* For comparing with previous entry */ int iBreak /* Jump here if we hit the LIMIT */ ){ Vdbe *v = pParse->pVdbe; int iContinue; int addr; addr = sqlite3VdbeCurrentAddr(v); iContinue = sqlite3VdbeMakeLabel(pParse); /* Suppress duplicates for UNION, EXCEPT, and INTERSECT */ if( regPrev ){ int addr1, addr2; addr1 = sqlite3VdbeAddOp1(v, OP_IfNot, regPrev); VdbeCoverage(v); addr2 = sqlite3VdbeAddOp4(v, OP_Compare, pIn->iSdst, regPrev+1, pIn->nSdst, (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); sqlite3VdbeAddOp3(v, OP_Jump, addr2+2, iContinue, addr2+2); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp3(v, OP_Copy, pIn->iSdst, regPrev+1, pIn->nSdst-1); sqlite3VdbeAddOp2(v, OP_Integer, 1, regPrev); } if( pParse->db->mallocFailed ) return 0; /* Suppress the first OFFSET entries if there is an OFFSET clause */ codeOffset(v, p->iOffset, iContinue); assert( pDest->eDest!=SRT_Exists ); assert( pDest->eDest!=SRT_Table ); switch( pDest->eDest ){ /* Store the result as data using a unique key. */ case SRT_EphemTab: { int r1 = sqlite3GetTempReg(pParse); int r2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, pIn->iSdst, pIn->nSdst, r1); sqlite3VdbeAddOp2(v, OP_NewRowid, pDest->iSDParm, r2); sqlite3VdbeAddOp3(v, OP_Insert, pDest->iSDParm, r1, r2); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); sqlite3ReleaseTempReg(pParse, r2); sqlite3ReleaseTempReg(pParse, r1); break; } #ifndef SQLITE_OMIT_SUBQUERY /* If we are creating a set for an "expr IN (SELECT ...)". */ case SRT_Set: { int r1; testcase( pIn->nSdst>1 ); r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4(v, OP_MakeRecord, pIn->iSdst, pIn->nSdst, r1, pDest->zAffSdst, pIn->nSdst); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, pDest->iSDParm, r1, pIn->iSdst, pIn->nSdst); sqlite3ReleaseTempReg(pParse, r1); break; } /* If this is a scalar select that is part of an expression, then ** store the results in the appropriate memory cell and break out ** of the scan loop. Note that the select might return multiple columns ** if it is the RHS of a row-value IN operator. */ case SRT_Mem: { testcase( pIn->nSdst>1 ); sqlite3ExprCodeMove(pParse, pIn->iSdst, pDest->iSDParm, pIn->nSdst); /* The LIMIT clause will jump out of the loop for us */ break; } #endif /* #ifndef SQLITE_OMIT_SUBQUERY */ /* The results are stored in a sequence of registers ** starting at pDest->iSdst. Then the co-routine yields. */ case SRT_Coroutine: { if( pDest->iSdst==0 ){ pDest->iSdst = sqlite3GetTempRange(pParse, pIn->nSdst); pDest->nSdst = pIn->nSdst; } sqlite3ExprCodeMove(pParse, pIn->iSdst, pDest->iSdst, pIn->nSdst); sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); break; } /* If none of the above, then the result destination must be ** SRT_Output. This routine is never called with any other ** destination other than the ones handled above or SRT_Output. ** ** For SRT_Output, results are stored in a sequence of registers. ** Then the OP_ResultRow opcode is used to cause sqlite3_step() to ** return the next row of result. */ default: { assert( pDest->eDest==SRT_Output ); sqlite3VdbeAddOp2(v, OP_ResultRow, pIn->iSdst, pIn->nSdst); break; } } /* Jump to the end of the loop if the LIMIT is reached. */ if( p->iLimit ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, p->iLimit, iBreak); VdbeCoverage(v); } /* Generate the subroutine return */ sqlite3VdbeResolveLabel(v, iContinue); sqlite3VdbeAddOp1(v, OP_Return, regReturn); return addr; } /* ** Alternative compound select code generator for cases when there ** is an ORDER BY clause. ** ** We assume a query of the following form: ** ** ORDER BY ** ** is one of UNION ALL, UNION, EXCEPT, or INTERSECT. The idea ** is to code both and with the ORDER BY clause as ** co-routines. Then run the co-routines in parallel and merge the results ** into the output. In addition to the two coroutines (called selectA and ** selectB) there are 7 subroutines: ** ** outA: Move the output of the selectA coroutine into the output ** of the compound query. ** ** outB: Move the output of the selectB coroutine into the output ** of the compound query. (Only generated for UNION and ** UNION ALL. EXCEPT and INSERTSECT never output a row that ** appears only in B.) ** ** AltB: Called when there is data from both coroutines and AB. ** ** EofA: Called when data is exhausted from selectA. ** ** EofB: Called when data is exhausted from selectB. ** ** The implementation of the latter five subroutines depend on which ** is used: ** ** ** UNION ALL UNION EXCEPT INTERSECT ** ------------- ----------------- -------------- ----------------- ** AltB: outA, nextA outA, nextA outA, nextA nextA ** ** AeqB: outA, nextA nextA nextA outA, nextA ** ** AgtB: outB, nextB outB, nextB nextB nextB ** ** EofA: outB, nextB outB, nextB halt halt ** ** EofB: outA, nextA outA, nextA outA, nextA halt ** ** In the AltB, AeqB, and AgtB subroutines, an EOF on A following nextA ** causes an immediate jump to EofA and an EOF on B following nextB causes ** an immediate jump to EofB. Within EofA and EofB, and EOF on entry or ** following nextX causes a jump to the end of the select processing. ** ** Duplicate removal in the UNION, EXCEPT, and INTERSECT cases is handled ** within the output subroutine. The regPrev register set holds the previously ** output value. A comparison is made against this value and the output ** is skipped if the next results would be the same as the previous. ** ** The implementation plan is to implement the two coroutines and seven ** subroutines first, then put the control logic at the bottom. Like this: ** ** goto Init ** coA: coroutine for left query (A) ** coB: coroutine for right query (B) ** outA: output one row of A ** outB: output one row of B (UNION and UNION ALL only) ** EofA: ... ** EofB: ... ** AltB: ... ** AeqB: ... ** AgtB: ... ** Init: initialize coroutine registers ** yield coA ** if eof(A) goto EofA ** yield coB ** if eof(B) goto EofB ** Cmpr: Compare A, B ** Jump AltB, AeqB, AgtB ** End: ... ** ** We call AltB, AeqB, AgtB, EofA, and EofB "subroutines" but they are not ** actually called using Gosub and they do not Return. EofA and EofB loop ** until all data is exhausted then jump to the "end" labe. AltB, AeqB, ** and AgtB jump to either L2 or to one of EofA or EofB. */ #ifndef SQLITE_OMIT_COMPOUND_SELECT static int multiSelectOrderBy( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ){ int i, j; /* Loop counters */ Select *pPrior; /* Another SELECT immediately to our left */ Select *pSplit; /* Left-most SELECT in the right-hand group */ int nSelect; /* Number of SELECT statements in the compound */ Vdbe *v; /* Generate code to this VDBE */ SelectDest destA; /* Destination for coroutine A */ SelectDest destB; /* Destination for coroutine B */ int regAddrA; /* Address register for select-A coroutine */ int regAddrB; /* Address register for select-B coroutine */ int addrSelectA; /* Address of the select-A coroutine */ int addrSelectB; /* Address of the select-B coroutine */ int regOutA; /* Address register for the output-A subroutine */ int regOutB; /* Address register for the output-B subroutine */ int addrOutA; /* Address of the output-A subroutine */ int addrOutB = 0; /* Address of the output-B subroutine */ int addrEofA; /* Address of the select-A-exhausted subroutine */ int addrEofA_noB; /* Alternate addrEofA if B is uninitialized */ int addrEofB; /* Address of the select-B-exhausted subroutine */ int addrAltB; /* Address of the AB subroutine */ int regLimitA; /* Limit register for select-A */ int regLimitB; /* Limit register for select-A */ int regPrev; /* A range of registers to hold previous output */ int savedLimit; /* Saved value of p->iLimit */ int savedOffset; /* Saved value of p->iOffset */ int labelCmpr; /* Label for the start of the merge algorithm */ int labelEnd; /* Label for the end of the overall SELECT stmt */ int addr1; /* Jump instructions that get retargetted */ int op; /* One of TK_ALL, TK_UNION, TK_EXCEPT, TK_INTERSECT */ KeyInfo *pKeyDup = 0; /* Comparison information for duplicate removal */ KeyInfo *pKeyMerge; /* Comparison information for merging rows */ sqlite3 *db; /* Database connection */ ExprList *pOrderBy; /* The ORDER BY clause */ int nOrderBy; /* Number of terms in the ORDER BY clause */ u32 *aPermute; /* Mapping from ORDER BY terms to result set columns */ assert( p->pOrderBy!=0 ); assert( pKeyDup==0 ); /* "Managed" code needs this. Ticket #3382. */ db = pParse->db; v = pParse->pVdbe; assert( v!=0 ); /* Already thrown the error if VDBE alloc failed */ labelEnd = sqlite3VdbeMakeLabel(pParse); labelCmpr = sqlite3VdbeMakeLabel(pParse); /* Patch up the ORDER BY clause */ op = p->op; assert( p->pPrior->pOrderBy==0 ); pOrderBy = p->pOrderBy; assert( pOrderBy ); nOrderBy = pOrderBy->nExpr; /* For operators other than UNION ALL we have to make sure that ** the ORDER BY clause covers every term of the result set. Add ** terms to the ORDER BY clause as necessary. */ if( op!=TK_ALL ){ for(i=1; db->mallocFailed==0 && i<=p->pEList->nExpr; i++){ struct ExprList_item *pItem; for(j=0, pItem=pOrderBy->a; ju.x.iOrderByCol>0 ); if( pItem->u.x.iOrderByCol==i ) break; } if( j==nOrderBy ){ Expr *pNew = sqlite3Expr(db, TK_INTEGER, 0); if( pNew==0 ) return SQLITE_NOMEM_BKPT; pNew->flags |= EP_IntValue; pNew->u.iValue = i; p->pOrderBy = pOrderBy = sqlite3ExprListAppend(pParse, pOrderBy, pNew); if( pOrderBy ) pOrderBy->a[nOrderBy++].u.x.iOrderByCol = (u16)i; } } } /* Compute the comparison permutation and keyinfo that is used with ** the permutation used to determine if the next ** row of results comes from selectA or selectB. Also add explicit ** collations to the ORDER BY clause terms so that when the subqueries ** to the right and the left are evaluated, they use the correct ** collation. */ aPermute = sqlite3DbMallocRawNN(db, sizeof(u32)*(nOrderBy + 1)); if( aPermute ){ struct ExprList_item *pItem; aPermute[0] = nOrderBy; for(i=1, pItem=pOrderBy->a; i<=nOrderBy; i++, pItem++){ assert( pItem!=0 ); assert( pItem->u.x.iOrderByCol>0 ); assert( pItem->u.x.iOrderByCol<=p->pEList->nExpr ); aPermute[i] = pItem->u.x.iOrderByCol - 1; } pKeyMerge = multiSelectOrderByKeyInfo(pParse, p, 1); }else{ pKeyMerge = 0; } /* Allocate a range of temporary registers and the KeyInfo needed ** for the logic that removes duplicate result rows when the ** operator is UNION, EXCEPT, or INTERSECT (but not UNION ALL). */ if( op==TK_ALL ){ regPrev = 0; }else{ int nExpr = p->pEList->nExpr; assert( nOrderBy>=nExpr || db->mallocFailed ); regPrev = pParse->nMem+1; pParse->nMem += nExpr+1; sqlite3VdbeAddOp2(v, OP_Integer, 0, regPrev); pKeyDup = sqlite3KeyInfoAlloc(db, nExpr, 1); if( pKeyDup ){ assert( sqlite3KeyInfoIsWriteable(pKeyDup) ); for(i=0; iaColl[i] = multiSelectCollSeq(pParse, p, i); pKeyDup->aSortFlags[i] = 0; } } } /* Separate the left and the right query from one another */ nSelect = 1; if( (op==TK_ALL || op==TK_UNION) && OptimizationEnabled(db, SQLITE_BalancedMerge) ){ for(pSplit=p; pSplit->pPrior!=0 && pSplit->op==op; pSplit=pSplit->pPrior){ nSelect++; assert( pSplit->pPrior->pNext==pSplit ); } } if( nSelect<=3 ){ pSplit = p; }else{ pSplit = p; for(i=2; ipPrior; } } pPrior = pSplit->pPrior; assert( pPrior!=0 ); pSplit->pPrior = 0; pPrior->pNext = 0; assert( p->pOrderBy == pOrderBy ); assert( pOrderBy!=0 || db->mallocFailed ); pPrior->pOrderBy = sqlite3ExprListDup(pParse->db, pOrderBy, 0); sqlite3ResolveOrderGroupBy(pParse, p, p->pOrderBy, "ORDER"); sqlite3ResolveOrderGroupBy(pParse, pPrior, pPrior->pOrderBy, "ORDER"); /* Compute the limit registers */ computeLimitRegisters(pParse, p, labelEnd); if( p->iLimit && op==TK_ALL ){ regLimitA = ++pParse->nMem; regLimitB = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Copy, p->iOffset ? p->iOffset+1 : p->iLimit, regLimitA); sqlite3VdbeAddOp2(v, OP_Copy, regLimitA, regLimitB); }else{ regLimitA = regLimitB = 0; } sqlite3ExprDelete(db, p->pLimit); p->pLimit = 0; regAddrA = ++pParse->nMem; regAddrB = ++pParse->nMem; regOutA = ++pParse->nMem; regOutB = ++pParse->nMem; sqlite3SelectDestInit(&destA, SRT_Coroutine, regAddrA); sqlite3SelectDestInit(&destB, SRT_Coroutine, regAddrB); ExplainQueryPlan((pParse, 1, "MERGE (%s)", sqlite3SelectOpName(p->op))); /* Generate a coroutine to evaluate the SELECT statement to the ** left of the compound operator - the "A" select. */ addrSelectA = sqlite3VdbeCurrentAddr(v) + 1; addr1 = sqlite3VdbeAddOp3(v, OP_InitCoroutine, regAddrA, 0, addrSelectA); VdbeComment((v, "left SELECT")); pPrior->iLimit = regLimitA; ExplainQueryPlan((pParse, 1, "LEFT")); sqlite3Select(pParse, pPrior, &destA); sqlite3VdbeEndCoroutine(v, regAddrA); sqlite3VdbeJumpHere(v, addr1); /* Generate a coroutine to evaluate the SELECT statement on ** the right - the "B" select */ addrSelectB = sqlite3VdbeCurrentAddr(v) + 1; addr1 = sqlite3VdbeAddOp3(v, OP_InitCoroutine, regAddrB, 0, addrSelectB); VdbeComment((v, "right SELECT")); savedLimit = p->iLimit; savedOffset = p->iOffset; p->iLimit = regLimitB; p->iOffset = 0; ExplainQueryPlan((pParse, 1, "RIGHT")); sqlite3Select(pParse, p, &destB); p->iLimit = savedLimit; p->iOffset = savedOffset; sqlite3VdbeEndCoroutine(v, regAddrB); /* Generate a subroutine that outputs the current row of the A ** select as the next output row of the compound select. */ VdbeNoopComment((v, "Output routine for A")); addrOutA = generateOutputSubroutine(pParse, p, &destA, pDest, regOutA, regPrev, pKeyDup, labelEnd); /* Generate a subroutine that outputs the current row of the B ** select as the next output row of the compound select. */ if( op==TK_ALL || op==TK_UNION ){ VdbeNoopComment((v, "Output routine for B")); addrOutB = generateOutputSubroutine(pParse, p, &destB, pDest, regOutB, regPrev, pKeyDup, labelEnd); } sqlite3KeyInfoUnref(pKeyDup); /* Generate a subroutine to run when the results from select A ** are exhausted and only data in select B remains. */ if( op==TK_EXCEPT || op==TK_INTERSECT ){ addrEofA_noB = addrEofA = labelEnd; }else{ VdbeNoopComment((v, "eof-A subroutine")); addrEofA = sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); addrEofA_noB = sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, labelEnd); VdbeCoverage(v); sqlite3VdbeGoto(v, addrEofA); p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); } /* Generate a subroutine to run when the results from select B ** are exhausted and only data in select A remains. */ if( op==TK_INTERSECT ){ addrEofB = addrEofA; if( p->nSelectRow > pPrior->nSelectRow ) p->nSelectRow = pPrior->nSelectRow; }else{ VdbeNoopComment((v, "eof-B subroutine")); addrEofB = sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA); sqlite3VdbeAddOp2(v, OP_Yield, regAddrA, labelEnd); VdbeCoverage(v); sqlite3VdbeGoto(v, addrEofB); } /* Generate code to handle the case of AB */ VdbeNoopComment((v, "A-gt-B subroutine")); addrAgtB = sqlite3VdbeCurrentAddr(v); if( op==TK_ALL || op==TK_UNION ){ sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); } sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, addrEofB); VdbeCoverage(v); sqlite3VdbeGoto(v, labelCmpr); /* This code runs once to initialize everything. */ sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp2(v, OP_Yield, regAddrA, addrEofA_noB); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, addrEofB); VdbeCoverage(v); /* Implement the main merge loop */ sqlite3VdbeResolveLabel(v, labelCmpr); sqlite3VdbeAddOp4(v, OP_Permutation, 0, 0, 0, (char*)aPermute, P4_INTARRAY); sqlite3VdbeAddOp4(v, OP_Compare, destA.iSdst, destB.iSdst, nOrderBy, (char*)pKeyMerge, P4_KEYINFO); sqlite3VdbeChangeP5(v, OPFLAG_PERMUTE); sqlite3VdbeAddOp3(v, OP_Jump, addrAltB, addrAeqB, addrAgtB); VdbeCoverage(v); /* Jump to the this point in order to terminate the query. */ sqlite3VdbeResolveLabel(v, labelEnd); /* Reassembly the compound query so that it will be freed correctly ** by the calling function */ if( pSplit->pPrior ){ sqlite3SelectDelete(db, pSplit->pPrior); } pSplit->pPrior = pPrior; pPrior->pNext = pSplit; sqlite3ExprListDelete(db, pPrior->pOrderBy); pPrior->pOrderBy = 0; /*** TBD: Insert subroutine calls to close cursors on incomplete **** subqueries ****/ ExplainQueryPlanPop(pParse); return pParse->nErr!=0; } #endif #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* An instance of the SubstContext object describes an substitution edit ** to be performed on a parse tree. ** ** All references to columns in table iTable are to be replaced by corresponding ** expressions in pEList. */ typedef struct SubstContext { Parse *pParse; /* The parsing context */ int iTable; /* Replace references to this table */ int iNewTable; /* New table number */ int isLeftJoin; /* Add TK_IF_NULL_ROW opcodes on each replacement */ ExprList *pEList; /* Replacement expressions */ } SubstContext; /* Forward Declarations */ static void substExprList(SubstContext*, ExprList*); static void substSelect(SubstContext*, Select*, int); /* ** Scan through the expression pExpr. Replace every reference to ** a column in table number iTable with a copy of the iColumn-th ** entry in pEList. (But leave references to the ROWID column ** unchanged.) ** ** This routine is part of the flattening procedure. A subquery ** whose result set is defined by pEList appears as entry in the ** FROM clause of a SELECT such that the VDBE cursor assigned to that ** FORM clause entry is iTable. This routine makes the necessary ** changes to pExpr so that it refers directly to the source table ** of the subquery rather the result set of the subquery. */ static Expr *substExpr( SubstContext *pSubst, /* Description of the substitution */ Expr *pExpr /* Expr in which substitution occurs */ ){ if( pExpr==0 ) return 0; if( ExprHasProperty(pExpr, EP_FromJoin) && pExpr->w.iRightJoinTable==pSubst->iTable ){ pExpr->w.iRightJoinTable = pSubst->iNewTable; } if( pExpr->op==TK_COLUMN && pExpr->iTable==pSubst->iTable && !ExprHasProperty(pExpr, EP_FixedCol) ){ #ifdef SQLITE_ALLOW_ROWID_IN_VIEW if( pExpr->iColumn<0 ){ pExpr->op = TK_NULL; }else #endif { Expr *pNew; Expr *pCopy = pSubst->pEList->a[pExpr->iColumn].pExpr; Expr ifNullRow; assert( pSubst->pEList!=0 && pExpr->iColumnpEList->nExpr ); assert( pExpr->pRight==0 ); if( sqlite3ExprIsVector(pCopy) ){ sqlite3VectorErrorMsg(pSubst->pParse, pCopy); }else{ sqlite3 *db = pSubst->pParse->db; if( pSubst->isLeftJoin && pCopy->op!=TK_COLUMN ){ memset(&ifNullRow, 0, sizeof(ifNullRow)); ifNullRow.op = TK_IF_NULL_ROW; ifNullRow.pLeft = pCopy; ifNullRow.iTable = pSubst->iNewTable; ifNullRow.flags = EP_IfNullRow; pCopy = &ifNullRow; } testcase( ExprHasProperty(pCopy, EP_Subquery) ); pNew = sqlite3ExprDup(db, pCopy, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pNew); return pExpr; } if( pSubst->isLeftJoin ){ ExprSetProperty(pNew, EP_CanBeNull); } if( ExprHasProperty(pExpr,EP_FromJoin) ){ sqlite3SetJoinExpr(pNew, pExpr->w.iRightJoinTable); } sqlite3ExprDelete(db, pExpr); pExpr = pNew; /* Ensure that the expression now has an implicit collation sequence, ** just as it did when it was a column of a view or sub-query. */ if( pExpr->op!=TK_COLUMN && pExpr->op!=TK_COLLATE ){ CollSeq *pColl = sqlite3ExprCollSeq(pSubst->pParse, pExpr); pExpr = sqlite3ExprAddCollateString(pSubst->pParse, pExpr, (pColl ? pColl->zName : "BINARY") ); } ExprClearProperty(pExpr, EP_Collate); } } }else{ if( pExpr->op==TK_IF_NULL_ROW && pExpr->iTable==pSubst->iTable ){ pExpr->iTable = pSubst->iNewTable; } pExpr->pLeft = substExpr(pSubst, pExpr->pLeft); pExpr->pRight = substExpr(pSubst, pExpr->pRight); if( ExprUseXSelect(pExpr) ){ substSelect(pSubst, pExpr->x.pSelect, 1); }else{ substExprList(pSubst, pExpr->x.pList); } #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ Window *pWin = pExpr->y.pWin; pWin->pFilter = substExpr(pSubst, pWin->pFilter); substExprList(pSubst, pWin->pPartition); substExprList(pSubst, pWin->pOrderBy); } #endif } return pExpr; } static void substExprList( SubstContext *pSubst, /* Description of the substitution */ ExprList *pList /* List to scan and in which to make substitutes */ ){ int i; if( pList==0 ) return; for(i=0; inExpr; i++){ pList->a[i].pExpr = substExpr(pSubst, pList->a[i].pExpr); } } static void substSelect( SubstContext *pSubst, /* Description of the substitution */ Select *p, /* SELECT statement in which to make substitutions */ int doPrior /* Do substitutes on p->pPrior too */ ){ SrcList *pSrc; SrcItem *pItem; int i; if( !p ) return; do{ substExprList(pSubst, p->pEList); substExprList(pSubst, p->pGroupBy); substExprList(pSubst, p->pOrderBy); p->pHaving = substExpr(pSubst, p->pHaving); p->pWhere = substExpr(pSubst, p->pWhere); pSrc = p->pSrc; assert( pSrc!=0 ); for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ substSelect(pSubst, pItem->pSelect, 1); if( pItem->fg.isTabFunc ){ substExprList(pSubst, pItem->u1.pFuncArg); } } }while( doPrior && (p = p->pPrior)!=0 ); } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** pSelect is a SELECT statement and pSrcItem is one item in the FROM ** clause of that SELECT. ** ** This routine scans the entire SELECT statement and recomputes the ** pSrcItem->colUsed mask. */ static int recomputeColumnsUsedExpr(Walker *pWalker, Expr *pExpr){ SrcItem *pItem; if( pExpr->op!=TK_COLUMN ) return WRC_Continue; pItem = pWalker->u.pSrcItem; if( pItem->iCursor!=pExpr->iTable ) return WRC_Continue; if( pExpr->iColumn<0 ) return WRC_Continue; pItem->colUsed |= sqlite3ExprColUsed(pExpr); return WRC_Continue; } static void recomputeColumnsUsed( Select *pSelect, /* The complete SELECT statement */ SrcItem *pSrcItem /* Which FROM clause item to recompute */ ){ Walker w; if( NEVER(pSrcItem->pTab==0) ) return; memset(&w, 0, sizeof(w)); w.xExprCallback = recomputeColumnsUsedExpr; w.xSelectCallback = sqlite3SelectWalkNoop; w.u.pSrcItem = pSrcItem; pSrcItem->colUsed = 0; sqlite3WalkSelect(&w, pSelect); } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** Assign new cursor numbers to each of the items in pSrc. For each ** new cursor number assigned, set an entry in the aCsrMap[] array ** to map the old cursor number to the new: ** ** aCsrMap[iOld+1] = iNew; ** ** The array is guaranteed by the caller to be large enough for all ** existing cursor numbers in pSrc. aCsrMap[0] is the array size. ** ** If pSrc contains any sub-selects, call this routine recursively ** on the FROM clause of each such sub-select, with iExcept set to -1. */ static void srclistRenumberCursors( Parse *pParse, /* Parse context */ int *aCsrMap, /* Array to store cursor mappings in */ SrcList *pSrc, /* FROM clause to renumber */ int iExcept /* FROM clause item to skip */ ){ int i; SrcItem *pItem; for(i=0, pItem=pSrc->a; inSrc; i++, pItem++){ if( i!=iExcept ){ Select *p; assert( pItem->iCursor < aCsrMap[0] ); if( !pItem->fg.isRecursive || aCsrMap[pItem->iCursor+1]==0 ){ aCsrMap[pItem->iCursor+1] = pParse->nTab++; } pItem->iCursor = aCsrMap[pItem->iCursor+1]; for(p=pItem->pSelect; p; p=p->pPrior){ srclistRenumberCursors(pParse, aCsrMap, p->pSrc, -1); } } } } /* ** *piCursor is a cursor number. Change it if it needs to be mapped. */ static void renumberCursorDoMapping(Walker *pWalker, int *piCursor){ int *aCsrMap = pWalker->u.aiCol; int iCsr = *piCursor; if( iCsr < aCsrMap[0] && aCsrMap[iCsr+1]>0 ){ *piCursor = aCsrMap[iCsr+1]; } } /* ** Expression walker callback used by renumberCursors() to update ** Expr objects to match newly assigned cursor numbers. */ static int renumberCursorsCb(Walker *pWalker, Expr *pExpr){ int op = pExpr->op; if( op==TK_COLUMN || op==TK_IF_NULL_ROW ){ renumberCursorDoMapping(pWalker, &pExpr->iTable); } if( ExprHasProperty(pExpr, EP_FromJoin) ){ renumberCursorDoMapping(pWalker, &pExpr->w.iRightJoinTable); } return WRC_Continue; } /* ** Assign a new cursor number to each cursor in the FROM clause (Select.pSrc) ** of the SELECT statement passed as the second argument, and to each ** cursor in the FROM clause of any FROM clause sub-selects, recursively. ** Except, do not assign a new cursor number to the iExcept'th element in ** the FROM clause of (*p). Update all expressions and other references ** to refer to the new cursor numbers. ** ** Argument aCsrMap is an array that may be used for temporary working ** space. Two guarantees are made by the caller: ** ** * the array is larger than the largest cursor number used within the ** select statement passed as an argument, and ** ** * the array entries for all cursor numbers that do *not* appear in ** FROM clauses of the select statement as described above are ** initialized to zero. */ static void renumberCursors( Parse *pParse, /* Parse context */ Select *p, /* Select to renumber cursors within */ int iExcept, /* FROM clause item to skip */ int *aCsrMap /* Working space */ ){ Walker w; srclistRenumberCursors(pParse, aCsrMap, p->pSrc, iExcept); memset(&w, 0, sizeof(w)); w.u.aiCol = aCsrMap; w.xExprCallback = renumberCursorsCb; w.xSelectCallback = sqlite3SelectWalkNoop; sqlite3WalkSelect(&w, p); } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** This routine attempts to flatten subqueries as a performance optimization. ** This routine returns 1 if it makes changes and 0 if no flattening occurs. ** ** To understand the concept of flattening, consider the following ** query: ** ** SELECT a FROM (SELECT x+y AS a FROM t1 WHERE z<100) WHERE a>5 ** ** The default way of implementing this query is to execute the ** subquery first and store the results in a temporary table, then ** run the outer query on that temporary table. This requires two ** passes over the data. Furthermore, because the temporary table ** has no indices, the WHERE clause on the outer query cannot be ** optimized. ** ** This routine attempts to rewrite queries such as the above into ** a single flat select, like this: ** ** SELECT x+y AS a FROM t1 WHERE z<100 AND a>5 ** ** The code generated for this simplification gives the same result ** but only has to scan the data once. And because indices might ** exist on the table t1, a complete scan of the data might be ** avoided. ** ** Flattening is subject to the following constraints: ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** The subquery and the outer query cannot both be aggregates. ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** (2) If the subquery is an aggregate then ** (2a) the outer query must not be a join and ** (2b) the outer query must not use subqueries ** other than the one FROM-clause subquery that is a candidate ** for flattening. (This is due to ticket [2f7170d73bf9abf80] ** from 2015-02-09.) ** ** (3) If the subquery is the right operand of a LEFT JOIN then ** (3a) the subquery may not be a join and ** (3b) the FROM clause of the subquery may not contain a virtual ** table and ** (3c) the outer query may not be an aggregate. ** (3d) the outer query may not be DISTINCT. ** ** (4) The subquery can not be DISTINCT. ** ** (**) At one point restrictions (4) and (5) defined a subset of DISTINCT ** sub-queries that were excluded from this optimization. Restriction ** (4) has since been expanded to exclude all DISTINCT subqueries. ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** If the subquery is aggregate, the outer query may not be DISTINCT. ** ** (7) The subquery must have a FROM clause. TODO: For subqueries without ** A FROM clause, consider adding a FROM clause with the special ** table sqlite_once that consists of a single row containing a ** single NULL. ** ** (8) If the subquery uses LIMIT then the outer query may not be a join. ** ** (9) If the subquery uses LIMIT then the outer query may not be aggregate. ** ** (**) Restriction (10) was removed from the code on 2005-02-05 but we ** accidently carried the comment forward until 2014-09-15. Original ** constraint: "If the subquery is aggregate then the outer query ** may not use LIMIT." ** ** (11) The subquery and the outer query may not both have ORDER BY clauses. ** ** (**) Not implemented. Subsumed into restriction (3). Was previously ** a separate restriction deriving from ticket #350. ** ** (13) The subquery and outer query may not both use LIMIT. ** ** (14) The subquery may not use OFFSET. ** ** (15) If the outer query is part of a compound select, then the ** subquery may not use LIMIT. ** (See ticket #2339 and ticket [02a8e81d44]). ** ** (16) If the outer query is aggregate, then the subquery may not ** use ORDER BY. (Ticket #2942) This used to not matter ** until we introduced the group_concat() function. ** ** (17) If the subquery is a compound select, then ** (17a) all compound operators must be a UNION ALL, and ** (17b) no terms within the subquery compound may be aggregate ** or DISTINCT, and ** (17c) every term within the subquery compound must have a FROM clause ** (17d) the outer query may not be ** (17d1) aggregate, or ** (17d2) DISTINCT ** (17e) the subquery may not contain window functions, and ** (17f) the subquery must not be the RHS of a LEFT JOIN. ** ** The parent and sub-query may contain WHERE clauses. Subject to ** rules (11), (13) and (14), they may also contain ORDER BY, ** LIMIT and OFFSET clauses. The subquery cannot use any compound ** operator other than UNION ALL because all the other compound ** operators have an implied DISTINCT which is disallowed by ** restriction (4). ** ** Also, each component of the sub-query must return the same number ** of result columns. This is actually a requirement for any compound ** SELECT statement, but all the code here does is make sure that no ** such (illegal) sub-query is flattened. The caller will detect the ** syntax error and return a detailed message. ** ** (18) If the sub-query is a compound select, then all terms of the ** ORDER BY clause of the parent must be copies of a term returned ** by the parent query. ** ** (19) If the subquery uses LIMIT then the outer query may not ** have a WHERE clause. ** ** (20) If the sub-query is a compound select, then it must not use ** an ORDER BY clause. Ticket #3773. We could relax this constraint ** somewhat by saying that the terms of the ORDER BY clause must ** appear as unmodified result columns in the outer query. But we ** have other optimizations in mind to deal with that case. ** ** (21) If the subquery uses LIMIT then the outer query may not be ** DISTINCT. (See ticket [752e1646fc]). ** ** (22) The subquery may not be a recursive CTE. ** ** (23) If the outer query is a recursive CTE, then the sub-query may not be ** a compound query. This restriction is because transforming the ** parent to a compound query confuses the code that handles ** recursive queries in multiSelect(). ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** The subquery may not be an aggregate that uses the built-in min() or ** or max() functions. (Without this restriction, a query like: ** "SELECT x FROM (SELECT max(y), x FROM t1)" would not necessarily ** return the value X for which Y was maximal.) ** ** (25) If either the subquery or the parent query contains a window ** function in the select list or ORDER BY clause, flattening ** is not attempted. ** ** ** In this routine, the "p" parameter is a pointer to the outer query. ** The subquery is p->pSrc->a[iFrom]. isAgg is true if the outer query ** uses aggregates. ** ** If flattening is not attempted, this routine is a no-op and returns 0. ** If flattening is attempted this routine returns 1. ** ** All of the expression analysis must occur on both the outer query and ** the subquery before this routine runs. */ static int flattenSubquery( Parse *pParse, /* Parsing context */ Select *p, /* The parent or outer SELECT statement */ int iFrom, /* Index in p->pSrc->a[] of the inner subquery */ int isAgg /* True if outer SELECT uses aggregate functions */ ){ const char *zSavedAuthContext = pParse->zAuthContext; Select *pParent; /* Current UNION ALL term of the other query */ Select *pSub; /* The inner query or "subquery" */ Select *pSub1; /* Pointer to the rightmost select in sub-query */ SrcList *pSrc; /* The FROM clause of the outer query */ SrcList *pSubSrc; /* The FROM clause of the subquery */ int iParent; /* VDBE cursor number of the pSub result set temp table */ int iNewParent = -1;/* Replacement table for iParent */ int isLeftJoin = 0; /* True if pSub is the right side of a LEFT JOIN */ int i; /* Loop counter */ Expr *pWhere; /* The WHERE clause */ SrcItem *pSubitem; /* The subquery */ sqlite3 *db = pParse->db; Walker w; /* Walker to persist agginfo data */ int *aCsrMap = 0; /* Check to see if flattening is permitted. Return 0 if not. */ assert( p!=0 ); assert( p->pPrior==0 ); if( OptimizationDisabled(db, SQLITE_QueryFlattener) ) return 0; pSrc = p->pSrc; assert( pSrc && iFrom>=0 && iFromnSrc ); pSubitem = &pSrc->a[iFrom]; iParent = pSubitem->iCursor; pSub = pSubitem->pSelect; assert( pSub!=0 ); #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin || pSub->pWin ) return 0; /* Restriction (25) */ #endif pSubSrc = pSub->pSrc; assert( pSubSrc ); /* Prior to version 3.1.2, when LIMIT and OFFSET had to be simple constants, ** not arbitrary expressions, we allowed some combining of LIMIT and OFFSET ** because they could be computed at compile-time. But when LIMIT and OFFSET ** became arbitrary expressions, we were forced to add restrictions (13) ** and (14). */ if( pSub->pLimit && p->pLimit ) return 0; /* Restriction (13) */ if( pSub->pLimit && pSub->pLimit->pRight ) return 0; /* Restriction (14) */ if( (p->selFlags & SF_Compound)!=0 && pSub->pLimit ){ return 0; /* Restriction (15) */ } if( pSubSrc->nSrc==0 ) return 0; /* Restriction (7) */ if( pSub->selFlags & SF_Distinct ) return 0; /* Restriction (4) */ if( pSub->pLimit && (pSrc->nSrc>1 || isAgg) ){ return 0; /* Restrictions (8)(9) */ } if( p->pOrderBy && pSub->pOrderBy ){ return 0; /* Restriction (11) */ } if( isAgg && pSub->pOrderBy ) return 0; /* Restriction (16) */ if( pSub->pLimit && p->pWhere ) return 0; /* Restriction (19) */ if( pSub->pLimit && (p->selFlags & SF_Distinct)!=0 ){ return 0; /* Restriction (21) */ } if( pSub->selFlags & (SF_Recursive) ){ return 0; /* Restrictions (22) */ } /* ** If the subquery is the right operand of a LEFT JOIN, then the ** subquery may not be a join itself (3a). Example of why this is not ** allowed: ** ** t1 LEFT OUTER JOIN (t2 JOIN t3) ** ** If we flatten the above, we would get ** ** (t1 LEFT OUTER JOIN t2) JOIN t3 ** ** which is not at all the same thing. ** ** If the subquery is the right operand of a LEFT JOIN, then the outer ** query cannot be an aggregate. (3c) This is an artifact of the way ** aggregates are processed - there is no mechanism to determine if ** the LEFT JOIN table should be all-NULL. ** ** See also tickets #306, #350, and #3300. */ if( (pSubitem->fg.jointype & JT_OUTER)!=0 ){ isLeftJoin = 1; if( pSubSrc->nSrc>1 /* (3a) */ || isAgg /* (3b) */ || IsVirtual(pSubSrc->a[0].pTab) /* (3c) */ || (p->selFlags & SF_Distinct)!=0 /* (3d) */ ){ return 0; } } #ifdef SQLITE_EXTRA_IFNULLROW else if( iFrom>0 && !isAgg ){ /* Setting isLeftJoin to -1 causes OP_IfNullRow opcodes to be generated for ** every reference to any result column from subquery in a join, even ** though they are not necessary. This will stress-test the OP_IfNullRow ** opcode. */ isLeftJoin = -1; } #endif /* Restriction (17): If the sub-query is a compound SELECT, then it must ** use only the UNION ALL operator. And none of the simple select queries ** that make up the compound SELECT are allowed to be aggregate or distinct ** queries. */ if( pSub->pPrior ){ if( pSub->pOrderBy ){ return 0; /* Restriction (20) */ } if( isAgg || (p->selFlags & SF_Distinct)!=0 || isLeftJoin>0 ){ return 0; /* (17d1), (17d2), or (17f) */ } for(pSub1=pSub; pSub1; pSub1=pSub1->pPrior){ testcase( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); testcase( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); assert( pSub->pSrc!=0 ); assert( (pSub->selFlags & SF_Recursive)==0 ); assert( pSub->pEList->nExpr==pSub1->pEList->nExpr ); if( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))!=0 /* (17b) */ || (pSub1->pPrior && pSub1->op!=TK_ALL) /* (17a) */ || pSub1->pSrc->nSrc<1 /* (17c) */ #ifndef SQLITE_OMIT_WINDOWFUNC || pSub1->pWin /* (17e) */ #endif ){ return 0; } testcase( pSub1->pSrc->nSrc>1 ); } /* Restriction (18). */ if( p->pOrderBy ){ int ii; for(ii=0; iipOrderBy->nExpr; ii++){ if( p->pOrderBy->a[ii].u.x.iOrderByCol==0 ) return 0; } } /* Restriction (23) */ if( (p->selFlags & SF_Recursive) ) return 0; if( pSrc->nSrc>1 ){ if( pParse->nSelect>500 ) return 0; aCsrMap = sqlite3DbMallocZero(db, ((i64)pParse->nTab+1)*sizeof(int)); if( aCsrMap ) aCsrMap[0] = pParse->nTab; } } /***** If we reach this point, flattening is permitted. *****/ SELECTTRACE(1,pParse,p,("flatten %u.%p from term %d\n", pSub->selId, pSub, iFrom)); /* Authorize the subquery */ pParse->zAuthContext = pSubitem->zName; TESTONLY(i =) sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0); testcase( i==SQLITE_DENY ); pParse->zAuthContext = zSavedAuthContext; /* Delete the transient structures associated with thesubquery */ pSub1 = pSubitem->pSelect; sqlite3DbFree(db, pSubitem->zDatabase); sqlite3DbFree(db, pSubitem->zName); sqlite3DbFree(db, pSubitem->zAlias); pSubitem->zDatabase = 0; pSubitem->zName = 0; pSubitem->zAlias = 0; pSubitem->pSelect = 0; assert( pSubitem->pOn==0 ); /* If the sub-query is a compound SELECT statement, then (by restrictions ** 17 and 18 above) it must be a UNION ALL and the parent query must ** be of the form: ** ** SELECT FROM () ** ** followed by any ORDER BY, LIMIT and/or OFFSET clauses. This block ** creates N-1 copies of the parent query without any ORDER BY, LIMIT or ** OFFSET clauses and joins them to the left-hand-side of the original ** using UNION ALL operators. In this case N is the number of simple ** select statements in the compound sub-query. ** ** Example: ** ** SELECT a+1 FROM ( ** SELECT x FROM tab ** UNION ALL ** SELECT y FROM tab ** UNION ALL ** SELECT abs(z*2) FROM tab2 ** ) WHERE a!=5 ORDER BY 1 ** ** Transformed into: ** ** SELECT x+1 FROM tab WHERE x+1!=5 ** UNION ALL ** SELECT y+1 FROM tab WHERE y+1!=5 ** UNION ALL ** SELECT abs(z*2)+1 FROM tab2 WHERE abs(z*2)+1!=5 ** ORDER BY 1 ** ** We call this the "compound-subquery flattening". */ for(pSub=pSub->pPrior; pSub; pSub=pSub->pPrior){ Select *pNew; ExprList *pOrderBy = p->pOrderBy; Expr *pLimit = p->pLimit; Select *pPrior = p->pPrior; Table *pItemTab = pSubitem->pTab; pSubitem->pTab = 0; p->pOrderBy = 0; p->pPrior = 0; p->pLimit = 0; pNew = sqlite3SelectDup(db, p, 0); p->pLimit = pLimit; p->pOrderBy = pOrderBy; p->op = TK_ALL; pSubitem->pTab = pItemTab; if( pNew==0 ){ p->pPrior = pPrior; }else{ pNew->selId = ++pParse->nSelect; if( aCsrMap && ALWAYS(db->mallocFailed==0) ){ renumberCursors(pParse, pNew, iFrom, aCsrMap); } pNew->pPrior = pPrior; if( pPrior ) pPrior->pNext = pNew; pNew->pNext = p; p->pPrior = pNew; SELECTTRACE(2,pParse,p,("compound-subquery flattener" " creates %u as peer\n",pNew->selId)); } assert( pSubitem->pSelect==0 ); } sqlite3DbFree(db, aCsrMap); if( db->mallocFailed ){ pSubitem->pSelect = pSub1; return 1; } /* Defer deleting the Table object associated with the ** subquery until code generation is ** complete, since there may still exist Expr.pTab entries that ** refer to the subquery even after flattening. Ticket #3346. ** ** pSubitem->pTab is always non-NULL by test restrictions and tests above. */ if( ALWAYS(pSubitem->pTab!=0) ){ Table *pTabToDel = pSubitem->pTab; if( pTabToDel->nTabRef==1 ){ Parse *pToplevel = sqlite3ParseToplevel(pParse); sqlite3ParserAddCleanup(pToplevel, (void(*)(sqlite3*,void*))sqlite3DeleteTable, pTabToDel); testcase( pToplevel->earlyCleanup ); }else{ pTabToDel->nTabRef--; } pSubitem->pTab = 0; } /* The following loop runs once for each term in a compound-subquery ** flattening (as described above). If we are doing a different kind ** of flattening - a flattening other than a compound-subquery flattening - ** then this loop only runs once. ** ** This loop moves all of the FROM elements of the subquery into the ** the FROM clause of the outer query. Before doing this, remember ** the cursor number for the original outer query FROM element in ** iParent. The iParent cursor will never be used. Subsequent code ** will scan expressions looking for iParent references and replace ** those references with expressions that resolve to the subquery FROM ** elements we are now copying in. */ pSub = pSub1; for(pParent=p; pParent; pParent=pParent->pPrior, pSub=pSub->pPrior){ int nSubSrc; u8 jointype = 0; assert( pSub!=0 ); pSubSrc = pSub->pSrc; /* FROM clause of subquery */ nSubSrc = pSubSrc->nSrc; /* Number of terms in subquery FROM clause */ pSrc = pParent->pSrc; /* FROM clause of the outer query */ if( pParent==p ){ jointype = pSubitem->fg.jointype; /* First time through the loop */ } /* The subquery uses a single slot of the FROM clause of the outer ** query. If the subquery has more than one element in its FROM clause, ** then expand the outer query to make space for it to hold all elements ** of the subquery. ** ** Example: ** ** SELECT * FROM tabA, (SELECT * FROM sub1, sub2), tabB; ** ** The outer query has 3 slots in its FROM clause. One slot of the ** outer query (the middle slot) is used by the subquery. The next ** block of code will expand the outer query FROM clause to 4 slots. ** The middle slot is expanded to two slots in order to make space ** for the two elements in the FROM clause of the subquery. */ if( nSubSrc>1 ){ pSrc = sqlite3SrcListEnlarge(pParse, pSrc, nSubSrc-1,iFrom+1); if( pSrc==0 ) break; pParent->pSrc = pSrc; } /* Transfer the FROM clause terms from the subquery into the ** outer query. */ for(i=0; ia[i+iFrom].pUsing); assert( pSrc->a[i+iFrom].fg.isTabFunc==0 ); pSrc->a[i+iFrom] = pSubSrc->a[i]; iNewParent = pSubSrc->a[i].iCursor; memset(&pSubSrc->a[i], 0, sizeof(pSubSrc->a[i])); } pSrc->a[iFrom].fg.jointype = jointype; /* Now begin substituting subquery result set expressions for ** references to the iParent in the outer query. ** ** Example: ** ** SELECT a+5, b*10 FROM (SELECT x*3 AS a, y+10 AS b FROM t1) WHERE a>b; ** \ \_____________ subquery __________/ / ** \_____________________ outer query ______________________________/ ** ** We look at every expression in the outer query and every place we see ** "a" we substitute "x*3" and every place we see "b" we substitute "y+10". */ if( pSub->pOrderBy && (pParent->selFlags & SF_NoopOrderBy)==0 ){ /* At this point, any non-zero iOrderByCol values indicate that the ** ORDER BY column expression is identical to the iOrderByCol'th ** expression returned by SELECT statement pSub. Since these values ** do not necessarily correspond to columns in SELECT statement pParent, ** zero them before transfering the ORDER BY clause. ** ** Not doing this may cause an error if a subsequent call to this ** function attempts to flatten a compound sub-query into pParent ** (the only way this can happen is if the compound sub-query is ** currently part of pSub->pSrc). See ticket [d11a6e908f]. */ ExprList *pOrderBy = pSub->pOrderBy; for(i=0; inExpr; i++){ pOrderBy->a[i].u.x.iOrderByCol = 0; } assert( pParent->pOrderBy==0 ); pParent->pOrderBy = pOrderBy; pSub->pOrderBy = 0; } pWhere = pSub->pWhere; pSub->pWhere = 0; if( isLeftJoin>0 ){ sqlite3SetJoinExpr(pWhere, iNewParent); } if( pWhere ){ if( pParent->pWhere ){ pParent->pWhere = sqlite3PExpr(pParse, TK_AND, pWhere, pParent->pWhere); }else{ pParent->pWhere = pWhere; } } if( db->mallocFailed==0 ){ SubstContext x; x.pParse = pParse; x.iTable = iParent; x.iNewTable = iNewParent; x.isLeftJoin = isLeftJoin; x.pEList = pSub->pEList; substSelect(&x, pParent, 0); } /* The flattened query is a compound if either the inner or the ** outer query is a compound. */ pParent->selFlags |= pSub->selFlags & SF_Compound; assert( (pSub->selFlags & SF_Distinct)==0 ); /* restriction (17b) */ /* ** SELECT ... FROM (SELECT ... LIMIT a OFFSET b) LIMIT x OFFSET y; ** ** One is tempted to try to add a and b to combine the limits. But this ** does not work if either limit is negative. */ if( pSub->pLimit ){ pParent->pLimit = pSub->pLimit; pSub->pLimit = 0; } /* Recompute the SrcList_item.colUsed masks for the flattened ** tables. */ for(i=0; ia[i+iFrom]); } } /* Finially, delete what is left of the subquery and return ** success. */ sqlite3AggInfoPersistWalkerInit(&w, pParse); sqlite3WalkSelect(&w,pSub1); sqlite3SelectDelete(db, pSub1); #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x100 ){ SELECTTRACE(0x100,pParse,p,("After flattening:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif return 1; } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ /* ** A structure to keep track of all of the column values that are fixed to ** a known value due to WHERE clause constraints of the form COLUMN=VALUE. */ typedef struct WhereConst WhereConst; struct WhereConst { Parse *pParse; /* Parsing context */ u8 *pOomFault; /* Pointer to pParse->db->mallocFailed */ int nConst; /* Number for COLUMN=CONSTANT terms */ int nChng; /* Number of times a constant is propagated */ int bHasAffBlob; /* At least one column in apExpr[] as affinity BLOB */ Expr **apExpr; /* [i*2] is COLUMN and [i*2+1] is VALUE */ }; /* ** Add a new entry to the pConst object. Except, do not add duplicate ** pColumn entires. Also, do not add if doing so would not be appropriate. ** ** The caller guarantees the pColumn is a column and pValue is a constant. ** This routine has to do some additional checks before completing the ** insert. */ static void constInsert( WhereConst *pConst, /* The WhereConst into which we are inserting */ Expr *pColumn, /* The COLUMN part of the constraint */ Expr *pValue, /* The VALUE part of the constraint */ Expr *pExpr /* Overall expression: COLUMN=VALUE or VALUE=COLUMN */ ){ int i; assert( pColumn->op==TK_COLUMN ); assert( sqlite3ExprIsConstant(pValue) ); if( ExprHasProperty(pColumn, EP_FixedCol) ) return; if( sqlite3ExprAffinity(pValue)!=0 ) return; if( !sqlite3IsBinary(sqlite3ExprCompareCollSeq(pConst->pParse,pExpr)) ){ return; } /* 2018-10-25 ticket [cf5ed20f] ** Make sure the same pColumn is not inserted more than once */ for(i=0; inConst; i++){ const Expr *pE2 = pConst->apExpr[i*2]; assert( pE2->op==TK_COLUMN ); if( pE2->iTable==pColumn->iTable && pE2->iColumn==pColumn->iColumn ){ return; /* Already present. Return without doing anything. */ } } if( sqlite3ExprAffinity(pColumn)==SQLITE_AFF_BLOB ){ pConst->bHasAffBlob = 1; } pConst->nConst++; pConst->apExpr = sqlite3DbReallocOrFree(pConst->pParse->db, pConst->apExpr, pConst->nConst*2*sizeof(Expr*)); if( pConst->apExpr==0 ){ pConst->nConst = 0; }else{ pConst->apExpr[pConst->nConst*2-2] = pColumn; pConst->apExpr[pConst->nConst*2-1] = pValue; } } /* ** Find all terms of COLUMN=VALUE or VALUE=COLUMN in pExpr where VALUE ** is a constant expression and where the term must be true because it ** is part of the AND-connected terms of the expression. For each term ** found, add it to the pConst structure. */ static void findConstInWhere(WhereConst *pConst, Expr *pExpr){ Expr *pRight, *pLeft; if( NEVER(pExpr==0) ) return; if( ExprHasProperty(pExpr, EP_FromJoin) ) return; if( pExpr->op==TK_AND ){ findConstInWhere(pConst, pExpr->pRight); findConstInWhere(pConst, pExpr->pLeft); return; } if( pExpr->op!=TK_EQ ) return; pRight = pExpr->pRight; pLeft = pExpr->pLeft; assert( pRight!=0 ); assert( pLeft!=0 ); if( pRight->op==TK_COLUMN && sqlite3ExprIsConstant(pLeft) ){ constInsert(pConst,pRight,pLeft,pExpr); } if( pLeft->op==TK_COLUMN && sqlite3ExprIsConstant(pRight) ){ constInsert(pConst,pLeft,pRight,pExpr); } } /* ** This is a helper function for Walker callback propagateConstantExprRewrite(). ** ** Argument pExpr is a candidate expression to be replaced by a value. If ** pExpr is equivalent to one of the columns named in pWalker->u.pConst, ** then overwrite it with the corresponding value. Except, do not do so ** if argument bIgnoreAffBlob is non-zero and the affinity of pExpr ** is SQLITE_AFF_BLOB. */ static int propagateConstantExprRewriteOne( WhereConst *pConst, Expr *pExpr, int bIgnoreAffBlob ){ int i; if( pConst->pOomFault[0] ) return WRC_Prune; if( pExpr->op!=TK_COLUMN ) return WRC_Continue; if( ExprHasProperty(pExpr, EP_FixedCol|EP_FromJoin) ){ testcase( ExprHasProperty(pExpr, EP_FixedCol) ); testcase( ExprHasProperty(pExpr, EP_FromJoin) ); return WRC_Continue; } for(i=0; inConst; i++){ Expr *pColumn = pConst->apExpr[i*2]; if( pColumn==pExpr ) continue; if( pColumn->iTable!=pExpr->iTable ) continue; if( pColumn->iColumn!=pExpr->iColumn ) continue; if( bIgnoreAffBlob && sqlite3ExprAffinity(pColumn)==SQLITE_AFF_BLOB ){ break; } /* A match is found. Add the EP_FixedCol property */ pConst->nChng++; ExprClearProperty(pExpr, EP_Leaf); ExprSetProperty(pExpr, EP_FixedCol); assert( pExpr->pLeft==0 ); pExpr->pLeft = sqlite3ExprDup(pConst->pParse->db, pConst->apExpr[i*2+1], 0); if( pConst->pParse->db->mallocFailed ) return WRC_Prune; break; } return WRC_Prune; } /* ** This is a Walker expression callback. pExpr is a node from the WHERE ** clause of a SELECT statement. This function examines pExpr to see if ** any substitutions based on the contents of pWalker->u.pConst should ** be made to pExpr or its immediate children. ** ** A substitution is made if: ** ** + pExpr is a column with an affinity other than BLOB that matches ** one of the columns in pWalker->u.pConst, or ** ** + pExpr is a binary comparison operator (=, <=, >=, <, >) that ** uses an affinity other than TEXT and one of its immediate ** children is a column that matches one of the columns in ** pWalker->u.pConst. */ static int propagateConstantExprRewrite(Walker *pWalker, Expr *pExpr){ WhereConst *pConst = pWalker->u.pConst; assert( TK_GT==TK_EQ+1 ); assert( TK_LE==TK_EQ+2 ); assert( TK_LT==TK_EQ+3 ); assert( TK_GE==TK_EQ+4 ); if( pConst->bHasAffBlob ){ if( (pExpr->op>=TK_EQ && pExpr->op<=TK_GE) || pExpr->op==TK_IS ){ propagateConstantExprRewriteOne(pConst, pExpr->pLeft, 0); if( pConst->pOomFault[0] ) return WRC_Prune; if( sqlite3ExprAffinity(pExpr->pLeft)!=SQLITE_AFF_TEXT ){ propagateConstantExprRewriteOne(pConst, pExpr->pRight, 0); } } } return propagateConstantExprRewriteOne(pConst, pExpr, pConst->bHasAffBlob); } /* ** The WHERE-clause constant propagation optimization. ** ** If the WHERE clause contains terms of the form COLUMN=CONSTANT or ** CONSTANT=COLUMN that are top-level AND-connected terms that are not ** part of a ON clause from a LEFT JOIN, then throughout the query ** replace all other occurrences of COLUMN with CONSTANT. ** ** For example, the query: ** ** SELECT * FROM t1, t2, t3 WHERE t1.a=39 AND t2.b=t1.a AND t3.c=t2.b ** ** Is transformed into ** ** SELECT * FROM t1, t2, t3 WHERE t1.a=39 AND t2.b=39 AND t3.c=39 ** ** Return true if any transformations where made and false if not. ** ** Implementation note: Constant propagation is tricky due to affinity ** and collating sequence interactions. Consider this example: ** ** CREATE TABLE t1(a INT,b TEXT); ** INSERT INTO t1 VALUES(123,'0123'); ** SELECT * FROM t1 WHERE a=123 AND b=a; ** SELECT * FROM t1 WHERE a=123 AND b=123; ** ** The two SELECT statements above should return different answers. b=a ** is alway true because the comparison uses numeric affinity, but b=123 ** is false because it uses text affinity and '0123' is not the same as '123'. ** To work around this, the expression tree is not actually changed from ** "b=a" to "b=123" but rather the "a" in "b=a" is tagged with EP_FixedCol ** and the "123" value is hung off of the pLeft pointer. Code generator ** routines know to generate the constant "123" instead of looking up the ** column value. Also, to avoid collation problems, this optimization is ** only attempted if the "a=123" term uses the default BINARY collation. ** ** 2021-05-25 forum post 6a06202608: Another troublesome case is... ** ** CREATE TABLE t1(x); ** INSERT INTO t1 VALUES(10.0); ** SELECT 1 FROM t1 WHERE x=10 AND x LIKE 10; ** ** The query should return no rows, because the t1.x value is '10.0' not '10' ** and '10.0' is not LIKE '10'. But if we are not careful, the first WHERE ** term "x=10" will cause the second WHERE term to become "10 LIKE 10", ** resulting in a false positive. To avoid this, constant propagation for ** columns with BLOB affinity is only allowed if the constant is used with ** operators ==, <=, <, >=, >, or IS in a way that will cause the correct ** type conversions to occur. See logic associated with the bHasAffBlob flag ** for details. */ static int propagateConstants( Parse *pParse, /* The parsing context */ Select *p /* The query in which to propagate constants */ ){ WhereConst x; Walker w; int nChng = 0; x.pParse = pParse; x.pOomFault = &pParse->db->mallocFailed; do{ x.nConst = 0; x.nChng = 0; x.apExpr = 0; x.bHasAffBlob = 0; findConstInWhere(&x, p->pWhere); if( x.nConst ){ memset(&w, 0, sizeof(w)); w.pParse = pParse; w.xExprCallback = propagateConstantExprRewrite; w.xSelectCallback = sqlite3SelectWalkNoop; w.xSelectCallback2 = 0; w.walkerDepth = 0; w.u.pConst = &x; sqlite3WalkExpr(&w, p->pWhere); sqlite3DbFree(x.pParse->db, x.apExpr); nChng += x.nChng; } }while( x.nChng ); return nChng; } #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) # if !defined(SQLITE_OMIT_WINDOWFUNC) /* ** This function is called to determine whether or not it is safe to ** push WHERE clause expression pExpr down to FROM clause sub-query ** pSubq, which contains at least one window function. Return 1 ** if it is safe and the expression should be pushed down, or 0 ** otherwise. ** ** It is only safe to push the expression down if it consists only ** of constants and copies of expressions that appear in the PARTITION ** BY clause of all window function used by the sub-query. It is safe ** to filter out entire partitions, but not rows within partitions, as ** this may change the results of the window functions. ** ** At the time this function is called it is guaranteed that ** ** * the sub-query uses only one distinct window frame, and ** * that the window frame has a PARTITION BY clase. */ static int pushDownWindowCheck(Parse *pParse, Select *pSubq, Expr *pExpr){ assert( pSubq->pWin->pPartition ); assert( (pSubq->selFlags & SF_MultiPart)==0 ); assert( pSubq->pPrior==0 ); return sqlite3ExprIsConstantOrGroupBy(pParse, pExpr, pSubq->pWin->pPartition); } # endif /* SQLITE_OMIT_WINDOWFUNC */ #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** Make copies of relevant WHERE clause terms of the outer query into ** the WHERE clause of subquery. Example: ** ** SELECT * FROM (SELECT a AS x, c-d AS y FROM t1) WHERE x=5 AND y=10; ** ** Transformed into: ** ** SELECT * FROM (SELECT a AS x, c-d AS y FROM t1 WHERE a=5 AND c-d=10) ** WHERE x=5 AND y=10; ** ** The hope is that the terms added to the inner query will make it more ** efficient. ** ** Do not attempt this optimization if: ** ** (1) (** This restriction was removed on 2017-09-29. We used to ** disallow this optimization for aggregate subqueries, but now ** it is allowed by putting the extra terms on the HAVING clause. ** The added HAVING clause is pointless if the subquery lacks ** a GROUP BY clause. But such a HAVING clause is also harmless ** so there does not appear to be any reason to add extra logic ** to suppress it. **) ** ** (2) The inner query is the recursive part of a common table expression. ** ** (3) The inner query has a LIMIT clause (since the changes to the WHERE ** clause would change the meaning of the LIMIT). ** ** (4) The inner query is the right operand of a LEFT JOIN and the ** expression to be pushed down does not come from the ON clause ** on that LEFT JOIN. ** ** (5) The WHERE clause expression originates in the ON or USING clause ** of a LEFT JOIN where iCursor is not the right-hand table of that ** left join. An example: ** ** SELECT * ** FROM (SELECT 1 AS a1 UNION ALL SELECT 2) AS aa ** JOIN (SELECT 1 AS b2 UNION ALL SELECT 2) AS bb ON (a1=b2) ** LEFT JOIN (SELECT 8 AS c3 UNION ALL SELECT 9) AS cc ON (b2=2); ** ** The correct answer is three rows: (1,1,NULL),(2,2,8),(2,2,9). ** But if the (b2=2) term were to be pushed down into the bb subquery, ** then the (1,1,NULL) row would be suppressed. ** ** (6) Window functions make things tricky as changes to the WHERE clause ** of the inner query could change the window over which window ** functions are calculated. Therefore, do not attempt the optimization ** if: ** ** (6a) The inner query uses multiple incompatible window partitions. ** ** (6b) The inner query is a compound and uses window-functions. ** ** (6c) The WHERE clause does not consist entirely of constants and ** copies of expressions found in the PARTITION BY clause of ** all window-functions used by the sub-query. It is safe to ** filter out entire partitions, as this does not change the ** window over which any window-function is calculated. ** ** (7) The inner query is a Common Table Expression (CTE) that should ** be materialized. (This restriction is implemented in the calling ** routine.) ** ** Return 0 if no changes are made and non-zero if one or more WHERE clause ** terms are duplicated into the subquery. */ static int pushDownWhereTerms( Parse *pParse, /* Parse context (for malloc() and error reporting) */ Select *pSubq, /* The subquery whose WHERE clause is to be augmented */ Expr *pWhere, /* The WHERE clause of the outer query */ int iCursor, /* Cursor number of the subquery */ int isLeftJoin /* True if pSubq is the right term of a LEFT JOIN */ ){ Expr *pNew; int nChng = 0; if( pWhere==0 ) return 0; if( pSubq->selFlags & (SF_Recursive|SF_MultiPart) ) return 0; #ifndef SQLITE_OMIT_WINDOWFUNC if( pSubq->pPrior ){ Select *pSel; for(pSel=pSubq; pSel; pSel=pSel->pPrior){ if( pSel->pWin ) return 0; /* restriction (6b) */ } }else{ if( pSubq->pWin && pSubq->pWin->pPartition==0 ) return 0; } #endif #ifdef SQLITE_DEBUG /* Only the first term of a compound can have a WITH clause. But make ** sure no other terms are marked SF_Recursive in case something changes ** in the future. */ { Select *pX; for(pX=pSubq; pX; pX=pX->pPrior){ assert( (pX->selFlags & (SF_Recursive))==0 ); } } #endif if( pSubq->pLimit!=0 ){ return 0; /* restriction (3) */ } while( pWhere->op==TK_AND ){ nChng += pushDownWhereTerms(pParse, pSubq, pWhere->pRight, iCursor, isLeftJoin); pWhere = pWhere->pLeft; } if( isLeftJoin && (ExprHasProperty(pWhere,EP_FromJoin)==0 || pWhere->w.iRightJoinTable!=iCursor) ){ return 0; /* restriction (4) */ } if( ExprHasProperty(pWhere,EP_FromJoin) && pWhere->w.iRightJoinTable!=iCursor ){ return 0; /* restriction (5) */ } if( sqlite3ExprIsTableConstant(pWhere, iCursor) ){ nChng++; pSubq->selFlags |= SF_PushDown; while( pSubq ){ SubstContext x; pNew = sqlite3ExprDup(pParse->db, pWhere, 0); unsetJoinExpr(pNew, -1); x.pParse = pParse; x.iTable = iCursor; x.iNewTable = iCursor; x.isLeftJoin = 0; x.pEList = pSubq->pEList; pNew = substExpr(&x, pNew); #ifndef SQLITE_OMIT_WINDOWFUNC if( pSubq->pWin && 0==pushDownWindowCheck(pParse, pSubq, pNew) ){ /* Restriction 6c has prevented push-down in this case */ sqlite3ExprDelete(pParse->db, pNew); nChng--; break; } #endif if( pSubq->selFlags & SF_Aggregate ){ pSubq->pHaving = sqlite3ExprAnd(pParse, pSubq->pHaving, pNew); }else{ pSubq->pWhere = sqlite3ExprAnd(pParse, pSubq->pWhere, pNew); } pSubq = pSubq->pPrior; } } return nChng; } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ /* ** The pFunc is the only aggregate function in the query. Check to see ** if the query is a candidate for the min/max optimization. ** ** If the query is a candidate for the min/max optimization, then set ** *ppMinMax to be an ORDER BY clause to be used for the optimization ** and return either WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX depending on ** whether pFunc is a min() or max() function. ** ** If the query is not a candidate for the min/max optimization, return ** WHERE_ORDERBY_NORMAL (which must be zero). ** ** This routine must be called after aggregate functions have been ** located but before their arguments have been subjected to aggregate ** analysis. */ static u8 minMaxQuery(sqlite3 *db, Expr *pFunc, ExprList **ppMinMax){ int eRet = WHERE_ORDERBY_NORMAL; /* Return value */ ExprList *pEList; /* Arguments to agg function */ const char *zFunc; /* Name of aggregate function pFunc */ ExprList *pOrderBy; u8 sortFlags = 0; assert( *ppMinMax==0 ); assert( pFunc->op==TK_AGG_FUNCTION ); assert( !IsWindowFunc(pFunc) ); assert( ExprUseXList(pFunc) ); pEList = pFunc->x.pList; if( pEList==0 || pEList->nExpr!=1 || ExprHasProperty(pFunc, EP_WinFunc) || OptimizationDisabled(db, SQLITE_MinMaxOpt) ){ return eRet; } assert( !ExprHasProperty(pFunc, EP_IntValue) ); zFunc = pFunc->u.zToken; if( sqlite3StrICmp(zFunc, "min")==0 ){ eRet = WHERE_ORDERBY_MIN; if( sqlite3ExprCanBeNull(pEList->a[0].pExpr) ){ sortFlags = KEYINFO_ORDER_BIGNULL; } }else if( sqlite3StrICmp(zFunc, "max")==0 ){ eRet = WHERE_ORDERBY_MAX; sortFlags = KEYINFO_ORDER_DESC; }else{ return eRet; } *ppMinMax = pOrderBy = sqlite3ExprListDup(db, pEList, 0); assert( pOrderBy!=0 || db->mallocFailed ); if( pOrderBy ) pOrderBy->a[0].sortFlags = sortFlags; return eRet; } /* ** The select statement passed as the first argument is an aggregate query. ** The second argument is the associated aggregate-info object. This ** function tests if the SELECT is of the form: ** ** SELECT count(*) FROM ** ** where table is a database table, not a sub-select or view. If the query ** does match this pattern, then a pointer to the Table object representing ** is returned. Otherwise, NULL is returned. ** ** This routine checks to see if it is safe to use the count optimization. ** A correct answer is still obtained (though perhaps more slowly) if ** this routine returns NULL when it could have returned a table pointer. ** But returning the pointer when NULL should have been returned can ** result in incorrect answers and/or crashes. So, when in doubt, return NULL. */ static Table *isSimpleCount(Select *p, AggInfo *pAggInfo){ Table *pTab; Expr *pExpr; assert( !p->pGroupBy ); if( p->pWhere || p->pEList->nExpr!=1 || p->pSrc->nSrc!=1 || p->pSrc->a[0].pSelect || pAggInfo->nFunc!=1 ){ return 0; } pTab = p->pSrc->a[0].pTab; assert( pTab!=0 ); assert( !IsView(pTab) ); if( !IsOrdinaryTable(pTab) ) return 0; pExpr = p->pEList->a[0].pExpr; assert( pExpr!=0 ); if( pExpr->op!=TK_AGG_FUNCTION ) return 0; if( pExpr->pAggInfo!=pAggInfo ) return 0; if( (pAggInfo->aFunc[0].pFunc->funcFlags&SQLITE_FUNC_COUNT)==0 ) return 0; assert( pAggInfo->aFunc[0].pFExpr==pExpr ); testcase( ExprHasProperty(pExpr, EP_Distinct) ); testcase( ExprHasProperty(pExpr, EP_WinFunc) ); if( ExprHasProperty(pExpr, EP_Distinct|EP_WinFunc) ) return 0; return pTab; } /* ** If the source-list item passed as an argument was augmented with an ** INDEXED BY clause, then try to locate the specified index. If there ** was such a clause and the named index cannot be found, return ** SQLITE_ERROR and leave an error in pParse. Otherwise, populate ** pFrom->pIndex and return SQLITE_OK. */ SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse *pParse, SrcItem *pFrom){ Table *pTab = pFrom->pTab; char *zIndexedBy = pFrom->u1.zIndexedBy; Index *pIdx; assert( pTab!=0 ); assert( pFrom->fg.isIndexedBy!=0 ); for(pIdx=pTab->pIndex; pIdx && sqlite3StrICmp(pIdx->zName, zIndexedBy); pIdx=pIdx->pNext ); if( !pIdx ){ sqlite3ErrorMsg(pParse, "no such index: %s", zIndexedBy, 0); pParse->checkSchema = 1; return SQLITE_ERROR; } assert( pFrom->fg.isCte==0 ); pFrom->u2.pIBIndex = pIdx; return SQLITE_OK; } /* ** Detect compound SELECT statements that use an ORDER BY clause with ** an alternative collating sequence. ** ** SELECT ... FROM t1 EXCEPT SELECT ... FROM t2 ORDER BY .. COLLATE ... ** ** These are rewritten as a subquery: ** ** SELECT * FROM (SELECT ... FROM t1 EXCEPT SELECT ... FROM t2) ** ORDER BY ... COLLATE ... ** ** This transformation is necessary because the multiSelectOrderBy() routine ** above that generates the code for a compound SELECT with an ORDER BY clause ** uses a merge algorithm that requires the same collating sequence on the ** result columns as on the ORDER BY clause. See ticket ** http://www.sqlite.org/src/info/6709574d2a ** ** This transformation is only needed for EXCEPT, INTERSECT, and UNION. ** The UNION ALL operator works fine with multiSelectOrderBy() even when ** there are COLLATE terms in the ORDER BY. */ static int convertCompoundSelectToSubquery(Walker *pWalker, Select *p){ int i; Select *pNew; Select *pX; sqlite3 *db; struct ExprList_item *a; SrcList *pNewSrc; Parse *pParse; Token dummy; if( p->pPrior==0 ) return WRC_Continue; if( p->pOrderBy==0 ) return WRC_Continue; for(pX=p; pX && (pX->op==TK_ALL || pX->op==TK_SELECT); pX=pX->pPrior){} if( pX==0 ) return WRC_Continue; a = p->pOrderBy->a; #ifndef SQLITE_OMIT_WINDOWFUNC /* If iOrderByCol is already non-zero, then it has already been matched ** to a result column of the SELECT statement. This occurs when the ** SELECT is rewritten for window-functions processing and then passed ** to sqlite3SelectPrep() and similar a second time. The rewriting done ** by this function is not required in this case. */ if( a[0].u.x.iOrderByCol ) return WRC_Continue; #endif for(i=p->pOrderBy->nExpr-1; i>=0; i--){ if( a[i].pExpr->flags & EP_Collate ) break; } if( i<0 ) return WRC_Continue; /* If we reach this point, that means the transformation is required. */ pParse = pWalker->pParse; db = pParse->db; pNew = sqlite3DbMallocZero(db, sizeof(*pNew) ); if( pNew==0 ) return WRC_Abort; memset(&dummy, 0, sizeof(dummy)); pNewSrc = sqlite3SrcListAppendFromTerm(pParse,0,0,0,&dummy,pNew,0,0); if( pNewSrc==0 ) return WRC_Abort; *pNew = *p; p->pSrc = pNewSrc; p->pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_ASTERISK, 0)); p->op = TK_SELECT; p->pWhere = 0; pNew->pGroupBy = 0; pNew->pHaving = 0; pNew->pOrderBy = 0; p->pPrior = 0; p->pNext = 0; p->pWith = 0; #ifndef SQLITE_OMIT_WINDOWFUNC p->pWinDefn = 0; #endif p->selFlags &= ~SF_Compound; assert( (p->selFlags & SF_Converted)==0 ); p->selFlags |= SF_Converted; assert( pNew->pPrior!=0 ); pNew->pPrior->pNext = pNew; pNew->pLimit = 0; return WRC_Continue; } /* ** Check to see if the FROM clause term pFrom has table-valued function ** arguments. If it does, leave an error message in pParse and return ** non-zero, since pFrom is not allowed to be a table-valued function. */ static int cannotBeFunction(Parse *pParse, SrcItem *pFrom){ if( pFrom->fg.isTabFunc ){ sqlite3ErrorMsg(pParse, "'%s' is not a function", pFrom->zName); return 1; } return 0; } #ifndef SQLITE_OMIT_CTE /* ** Argument pWith (which may be NULL) points to a linked list of nested ** WITH contexts, from inner to outermost. If the table identified by ** FROM clause element pItem is really a common-table-expression (CTE) ** then return a pointer to the CTE definition for that table. Otherwise ** return NULL. ** ** If a non-NULL value is returned, set *ppContext to point to the With ** object that the returned CTE belongs to. */ static struct Cte *searchWith( With *pWith, /* Current innermost WITH clause */ SrcItem *pItem, /* FROM clause element to resolve */ With **ppContext /* OUT: WITH clause return value belongs to */ ){ const char *zName = pItem->zName; With *p; assert( pItem->zDatabase==0 ); assert( zName!=0 ); for(p=pWith; p; p=p->pOuter){ int i; for(i=0; inCte; i++){ if( sqlite3StrICmp(zName, p->a[i].zName)==0 ){ *ppContext = p; return &p->a[i]; } } if( p->bView ) break; } return 0; } /* The code generator maintains a stack of active WITH clauses ** with the inner-most WITH clause being at the top of the stack. ** ** This routine pushes the WITH clause passed as the second argument ** onto the top of the stack. If argument bFree is true, then this ** WITH clause will never be popped from the stack but should instead ** be freed along with the Parse object. In other cases, when ** bFree==0, the With object will be freed along with the SELECT ** statement with which it is associated. ** ** This routine returns a copy of pWith. Or, if bFree is true and ** the pWith object is destroyed immediately due to an OOM condition, ** then this routine return NULL. ** ** If bFree is true, do not continue to use the pWith pointer after ** calling this routine, Instead, use only the return value. */ SQLITE_PRIVATE With *sqlite3WithPush(Parse *pParse, With *pWith, u8 bFree){ if( pWith ){ if( bFree ){ pWith = (With*)sqlite3ParserAddCleanup(pParse, (void(*)(sqlite3*,void*))sqlite3WithDelete, pWith); if( pWith==0 ) return 0; } if( pParse->nErr==0 ){ assert( pParse->pWith!=pWith ); pWith->pOuter = pParse->pWith; pParse->pWith = pWith; } } return pWith; } /* ** This function checks if argument pFrom refers to a CTE declared by ** a WITH clause on the stack currently maintained by the parser (on the ** pParse->pWith linked list). And if currently processing a CTE ** CTE expression, through routine checks to see if the reference is ** a recursive reference to the CTE. ** ** If pFrom matches a CTE according to either of these two above, pFrom->pTab ** and other fields are populated accordingly. ** ** Return 0 if no match is found. ** Return 1 if a match is found. ** Return 2 if an error condition is detected. */ static int resolveFromTermToCte( Parse *pParse, /* The parsing context */ Walker *pWalker, /* Current tree walker */ SrcItem *pFrom /* The FROM clause term to check */ ){ Cte *pCte; /* Matched CTE (or NULL if no match) */ With *pWith; /* The matching WITH */ assert( pFrom->pTab==0 ); if( pParse->pWith==0 ){ /* There are no WITH clauses in the stack. No match is possible */ return 0; } if( pParse->nErr ){ /* Prior errors might have left pParse->pWith in a goofy state, so ** go no further. */ return 0; } if( pFrom->zDatabase!=0 ){ /* The FROM term contains a schema qualifier (ex: main.t1) and so ** it cannot possibly be a CTE reference. */ return 0; } if( pFrom->fg.notCte ){ /* The FROM term is specifically excluded from matching a CTE. ** (1) It is part of a trigger that used to have zDatabase but had ** zDatabase removed by sqlite3FixTriggerStep(). ** (2) This is the first term in the FROM clause of an UPDATE. */ return 0; } pCte = searchWith(pParse->pWith, pFrom, &pWith); if( pCte ){ sqlite3 *db = pParse->db; Table *pTab; ExprList *pEList; Select *pSel; Select *pLeft; /* Left-most SELECT statement */ Select *pRecTerm; /* Left-most recursive term */ int bMayRecursive; /* True if compound joined by UNION [ALL] */ With *pSavedWith; /* Initial value of pParse->pWith */ int iRecTab = -1; /* Cursor for recursive table */ CteUse *pCteUse; /* If pCte->zCteErr is non-NULL at this point, then this is an illegal ** recursive reference to CTE pCte. Leave an error in pParse and return ** early. If pCte->zCteErr is NULL, then this is not a recursive reference. ** In this case, proceed. */ if( pCte->zCteErr ){ sqlite3ErrorMsg(pParse, pCte->zCteErr, pCte->zName); return 2; } if( cannotBeFunction(pParse, pFrom) ) return 2; assert( pFrom->pTab==0 ); pTab = sqlite3DbMallocZero(db, sizeof(Table)); if( pTab==0 ) return 2; pCteUse = pCte->pUse; if( pCteUse==0 ){ pCte->pUse = pCteUse = sqlite3DbMallocZero(db, sizeof(pCteUse[0])); if( pCteUse==0 || sqlite3ParserAddCleanup(pParse,sqlite3DbFree,pCteUse)==0 ){ sqlite3DbFree(db, pTab); return 2; } pCteUse->eM10d = pCte->eM10d; } pFrom->pTab = pTab; pTab->nTabRef = 1; pTab->zName = sqlite3DbStrDup(db, pCte->zName); pTab->iPKey = -1; pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); pTab->tabFlags |= TF_Ephemeral | TF_NoVisibleRowid; pFrom->pSelect = sqlite3SelectDup(db, pCte->pSelect, 0); if( db->mallocFailed ) return 2; pFrom->pSelect->selFlags |= SF_CopyCte; assert( pFrom->pSelect ); if( pFrom->fg.isIndexedBy ){ sqlite3ErrorMsg(pParse, "no such index: \"%s\"", pFrom->u1.zIndexedBy); return 2; } pFrom->fg.isCte = 1; pFrom->u2.pCteUse = pCteUse; pCteUse->nUse++; if( pCteUse->nUse>=2 && pCteUse->eM10d==M10d_Any ){ pCteUse->eM10d = M10d_Yes; } /* Check if this is a recursive CTE. */ pRecTerm = pSel = pFrom->pSelect; bMayRecursive = ( pSel->op==TK_ALL || pSel->op==TK_UNION ); while( bMayRecursive && pRecTerm->op==pSel->op ){ int i; SrcList *pSrc = pRecTerm->pSrc; assert( pRecTerm->pPrior!=0 ); for(i=0; inSrc; i++){ SrcItem *pItem = &pSrc->a[i]; if( pItem->zDatabase==0 && pItem->zName!=0 && 0==sqlite3StrICmp(pItem->zName, pCte->zName) ){ pItem->pTab = pTab; pTab->nTabRef++; pItem->fg.isRecursive = 1; if( pRecTerm->selFlags & SF_Recursive ){ sqlite3ErrorMsg(pParse, "multiple references to recursive table: %s", pCte->zName ); return 2; } pRecTerm->selFlags |= SF_Recursive; if( iRecTab<0 ) iRecTab = pParse->nTab++; pItem->iCursor = iRecTab; } } if( (pRecTerm->selFlags & SF_Recursive)==0 ) break; pRecTerm = pRecTerm->pPrior; } pCte->zCteErr = "circular reference: %s"; pSavedWith = pParse->pWith; pParse->pWith = pWith; if( pSel->selFlags & SF_Recursive ){ int rc; assert( pRecTerm!=0 ); assert( (pRecTerm->selFlags & SF_Recursive)==0 ); assert( pRecTerm->pNext!=0 ); assert( (pRecTerm->pNext->selFlags & SF_Recursive)!=0 ); assert( pRecTerm->pWith==0 ); pRecTerm->pWith = pSel->pWith; rc = sqlite3WalkSelect(pWalker, pRecTerm); pRecTerm->pWith = 0; if( rc ){ pParse->pWith = pSavedWith; return 2; } }else{ if( sqlite3WalkSelect(pWalker, pSel) ){ pParse->pWith = pSavedWith; return 2; } } pParse->pWith = pWith; for(pLeft=pSel; pLeft->pPrior; pLeft=pLeft->pPrior); pEList = pLeft->pEList; if( pCte->pCols ){ if( pEList && pEList->nExpr!=pCte->pCols->nExpr ){ sqlite3ErrorMsg(pParse, "table %s has %d values for %d columns", pCte->zName, pEList->nExpr, pCte->pCols->nExpr ); pParse->pWith = pSavedWith; return 2; } pEList = pCte->pCols; } sqlite3ColumnsFromExprList(pParse, pEList, &pTab->nCol, &pTab->aCol); if( bMayRecursive ){ if( pSel->selFlags & SF_Recursive ){ pCte->zCteErr = "multiple recursive references: %s"; }else{ pCte->zCteErr = "recursive reference in a subquery: %s"; } sqlite3WalkSelect(pWalker, pSel); } pCte->zCteErr = 0; pParse->pWith = pSavedWith; return 1; /* Success */ } return 0; /* No match */ } #endif #ifndef SQLITE_OMIT_CTE /* ** If the SELECT passed as the second argument has an associated WITH ** clause, pop it from the stack stored as part of the Parse object. ** ** This function is used as the xSelectCallback2() callback by ** sqlite3SelectExpand() when walking a SELECT tree to resolve table ** names and other FROM clause elements. */ SQLITE_PRIVATE void sqlite3SelectPopWith(Walker *pWalker, Select *p){ Parse *pParse = pWalker->pParse; if( OK_IF_ALWAYS_TRUE(pParse->pWith) && p->pPrior==0 ){ With *pWith = findRightmost(p)->pWith; if( pWith!=0 ){ assert( pParse->pWith==pWith || pParse->nErr ); pParse->pWith = pWith->pOuter; } } } #endif /* ** The SrcList_item structure passed as the second argument represents a ** sub-query in the FROM clause of a SELECT statement. This function ** allocates and populates the SrcList_item.pTab object. If successful, ** SQLITE_OK is returned. Otherwise, if an OOM error is encountered, ** SQLITE_NOMEM. */ SQLITE_PRIVATE int sqlite3ExpandSubquery(Parse *pParse, SrcItem *pFrom){ Select *pSel = pFrom->pSelect; Table *pTab; assert( pSel ); pFrom->pTab = pTab = sqlite3DbMallocZero(pParse->db, sizeof(Table)); if( pTab==0 ) return SQLITE_NOMEM; pTab->nTabRef = 1; if( pFrom->zAlias ){ pTab->zName = sqlite3DbStrDup(pParse->db, pFrom->zAlias); }else{ pTab->zName = sqlite3MPrintf(pParse->db, "subquery_%u", pSel->selId); } while( pSel->pPrior ){ pSel = pSel->pPrior; } sqlite3ColumnsFromExprList(pParse, pSel->pEList,&pTab->nCol,&pTab->aCol); pTab->iPKey = -1; pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); #ifndef SQLITE_ALLOW_ROWID_IN_VIEW /* The usual case - do not allow ROWID on a subquery */ pTab->tabFlags |= TF_Ephemeral | TF_NoVisibleRowid; #else pTab->tabFlags |= TF_Ephemeral; /* Legacy compatibility mode */ #endif return pParse->nErr ? SQLITE_ERROR : SQLITE_OK; } /* ** This routine is a Walker callback for "expanding" a SELECT statement. ** "Expanding" means to do the following: ** ** (1) Make sure VDBE cursor numbers have been assigned to every ** element of the FROM clause. ** ** (2) Fill in the pTabList->a[].pTab fields in the SrcList that ** defines FROM clause. When views appear in the FROM clause, ** fill pTabList->a[].pSelect with a copy of the SELECT statement ** that implements the view. A copy is made of the view's SELECT ** statement so that we can freely modify or delete that statement ** without worrying about messing up the persistent representation ** of the view. ** ** (3) Add terms to the WHERE clause to accommodate the NATURAL keyword ** on joins and the ON and USING clause of joins. ** ** (4) Scan the list of columns in the result set (pEList) looking ** for instances of the "*" operator or the TABLE.* operator. ** If found, expand each "*" to be every column in every table ** and TABLE.* to be every column in TABLE. ** */ static int selectExpander(Walker *pWalker, Select *p){ Parse *pParse = pWalker->pParse; int i, j, k, rc; SrcList *pTabList; ExprList *pEList; SrcItem *pFrom; sqlite3 *db = pParse->db; Expr *pE, *pRight, *pExpr; u16 selFlags = p->selFlags; u32 elistFlags = 0; p->selFlags |= SF_Expanded; if( db->mallocFailed ){ return WRC_Abort; } assert( p->pSrc!=0 ); if( (selFlags & SF_Expanded)!=0 ){ return WRC_Prune; } if( pWalker->eCode ){ /* Renumber selId because it has been copied from a view */ p->selId = ++pParse->nSelect; } pTabList = p->pSrc; pEList = p->pEList; if( pParse->pWith && (p->selFlags & SF_View) ){ if( p->pWith==0 ){ p->pWith = (With*)sqlite3DbMallocZero(db, sizeof(With)); if( p->pWith==0 ){ return WRC_Abort; } } p->pWith->bView = 1; } sqlite3WithPush(pParse, p->pWith, 0); /* Make sure cursor numbers have been assigned to all entries in ** the FROM clause of the SELECT statement. */ sqlite3SrcListAssignCursors(pParse, pTabList); /* Look up every table named in the FROM clause of the select. If ** an entry of the FROM clause is a subquery instead of a table or view, ** then create a transient table structure to describe the subquery. */ for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ Table *pTab; assert( pFrom->fg.isRecursive==0 || pFrom->pTab!=0 ); if( pFrom->pTab ) continue; assert( pFrom->fg.isRecursive==0 ); if( pFrom->zName==0 ){ #ifndef SQLITE_OMIT_SUBQUERY Select *pSel = pFrom->pSelect; /* A sub-query in the FROM clause of a SELECT */ assert( pSel!=0 ); assert( pFrom->pTab==0 ); if( sqlite3WalkSelect(pWalker, pSel) ) return WRC_Abort; if( sqlite3ExpandSubquery(pParse, pFrom) ) return WRC_Abort; #endif #ifndef SQLITE_OMIT_CTE }else if( (rc = resolveFromTermToCte(pParse, pWalker, pFrom))!=0 ){ if( rc>1 ) return WRC_Abort; pTab = pFrom->pTab; assert( pTab!=0 ); #endif }else{ /* An ordinary table or view name in the FROM clause */ assert( pFrom->pTab==0 ); pFrom->pTab = pTab = sqlite3LocateTableItem(pParse, 0, pFrom); if( pTab==0 ) return WRC_Abort; if( pTab->nTabRef>=0xffff ){ sqlite3ErrorMsg(pParse, "too many references to \"%s\": max 65535", pTab->zName); pFrom->pTab = 0; return WRC_Abort; } pTab->nTabRef++; if( !IsVirtual(pTab) && cannotBeFunction(pParse, pFrom) ){ return WRC_Abort; } #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) if( !IsOrdinaryTable(pTab) ){ i16 nCol; u8 eCodeOrig = pWalker->eCode; if( sqlite3ViewGetColumnNames(pParse, pTab) ) return WRC_Abort; assert( pFrom->pSelect==0 ); if( IsView(pTab) ){ if( (db->flags & SQLITE_EnableView)==0 && pTab->pSchema!=db->aDb[1].pSchema ){ sqlite3ErrorMsg(pParse, "access to view \"%s\" prohibited", pTab->zName); } pFrom->pSelect = sqlite3SelectDup(db, pTab->u.view.pSelect, 0); } #ifndef SQLITE_OMIT_VIRTUALTABLE else if( ALWAYS(IsVirtual(pTab)) && pFrom->fg.fromDDL && ALWAYS(pTab->u.vtab.p!=0) && pTab->u.vtab.p->eVtabRisk > ((db->flags & SQLITE_TrustedSchema)!=0) ){ sqlite3ErrorMsg(pParse, "unsafe use of virtual table \"%s\"", pTab->zName); } assert( SQLITE_VTABRISK_Normal==1 && SQLITE_VTABRISK_High==2 ); #endif nCol = pTab->nCol; pTab->nCol = -1; pWalker->eCode = 1; /* Turn on Select.selId renumbering */ sqlite3WalkSelect(pWalker, pFrom->pSelect); pWalker->eCode = eCodeOrig; pTab->nCol = nCol; } #endif } /* Locate the index named by the INDEXED BY clause, if any. */ if( pFrom->fg.isIndexedBy && sqlite3IndexedByLookup(pParse, pFrom) ){ return WRC_Abort; } } /* Process NATURAL keywords, and ON and USING clauses of joins. */ assert( db->mallocFailed==0 || pParse->nErr!=0 ); if( pParse->nErr || sqliteProcessJoin(pParse, p) ){ return WRC_Abort; } /* For every "*" that occurs in the column list, insert the names of ** all columns in all tables. And for every TABLE.* insert the names ** of all columns in TABLE. The parser inserted a special expression ** with the TK_ASTERISK operator for each "*" that it found in the column ** list. The following code just has to locate the TK_ASTERISK ** expressions and expand each one to the list of all columns in ** all tables. ** ** The first loop just checks to see if there are any "*" operators ** that need expanding. */ for(k=0; knExpr; k++){ pE = pEList->a[k].pExpr; if( pE->op==TK_ASTERISK ) break; assert( pE->op!=TK_DOT || pE->pRight!=0 ); assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) ); if( pE->op==TK_DOT && pE->pRight->op==TK_ASTERISK ) break; elistFlags |= pE->flags; } if( knExpr ){ /* ** If we get here it means the result set contains one or more "*" ** operators that need to be expanded. Loop through each expression ** in the result set and expand them one by one. */ struct ExprList_item *a = pEList->a; ExprList *pNew = 0; int flags = pParse->db->flags; int longNames = (flags & SQLITE_FullColNames)!=0 && (flags & SQLITE_ShortColNames)==0; for(k=0; knExpr; k++){ pE = a[k].pExpr; elistFlags |= pE->flags; pRight = pE->pRight; assert( pE->op!=TK_DOT || pRight!=0 ); if( pE->op!=TK_ASTERISK && (pE->op!=TK_DOT || pRight->op!=TK_ASTERISK) ){ /* This particular expression does not need to be expanded. */ pNew = sqlite3ExprListAppend(pParse, pNew, a[k].pExpr); if( pNew ){ pNew->a[pNew->nExpr-1].zEName = a[k].zEName; pNew->a[pNew->nExpr-1].eEName = a[k].eEName; a[k].zEName = 0; } a[k].pExpr = 0; }else{ /* This expression is a "*" or a "TABLE.*" and needs to be ** expanded. */ int tableSeen = 0; /* Set to 1 when TABLE matches */ char *zTName = 0; /* text of name of TABLE */ if( pE->op==TK_DOT ){ assert( pE->pLeft!=0 ); assert( !ExprHasProperty(pE->pLeft, EP_IntValue) ); zTName = pE->pLeft->u.zToken; } for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ Table *pTab = pFrom->pTab; Select *pSub = pFrom->pSelect; char *zTabName = pFrom->zAlias; const char *zSchemaName = 0; int iDb; if( zTabName==0 ){ zTabName = pTab->zName; } if( db->mallocFailed ) break; if( pSub==0 || (pSub->selFlags & SF_NestedFrom)==0 ){ pSub = 0; if( zTName && sqlite3StrICmp(zTName, zTabName)!=0 ){ continue; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); zSchemaName = iDb>=0 ? db->aDb[iDb].zDbSName : "*"; } for(j=0; jnCol; j++){ char *zName = pTab->aCol[j].zCnName; char *zColname; /* The computed column name */ char *zToFree; /* Malloced string that needs to be freed */ Token sColname; /* Computed column name as a token */ assert( zName ); if( zTName && pSub && sqlite3MatchEName(&pSub->pEList->a[j], 0, zTName, 0)==0 ){ continue; } /* If a column is marked as 'hidden', omit it from the expanded ** result-set list unless the SELECT has the SF_IncludeHidden ** bit set. */ if( (p->selFlags & SF_IncludeHidden)==0 && IsHiddenColumn(&pTab->aCol[j]) ){ continue; } tableSeen = 1; if( i>0 && zTName==0 ){ if( (pFrom->fg.jointype & JT_NATURAL)!=0 && tableAndColumnIndex(pTabList, i, zName, 0, 0, 1) ){ /* In a NATURAL join, omit the join columns from the ** table to the right of the join */ continue; } if( sqlite3IdListIndex(pFrom->pUsing, zName)>=0 ){ /* In a join with a USING clause, omit columns in the ** using clause from the table on the right. */ continue; } } pRight = sqlite3Expr(db, TK_ID, zName); zColname = zName; zToFree = 0; if( longNames || pTabList->nSrc>1 ){ Expr *pLeft; pLeft = sqlite3Expr(db, TK_ID, zTabName); pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight); if( zSchemaName ){ pLeft = sqlite3Expr(db, TK_ID, zSchemaName); pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pExpr); } if( longNames ){ zColname = sqlite3MPrintf(db, "%s.%s", zTabName, zName); zToFree = zColname; } }else{ pExpr = pRight; } pNew = sqlite3ExprListAppend(pParse, pNew, pExpr); sqlite3TokenInit(&sColname, zColname); sqlite3ExprListSetName(pParse, pNew, &sColname, 0); if( pNew && (p->selFlags & SF_NestedFrom)!=0 && !IN_RENAME_OBJECT ){ struct ExprList_item *pX = &pNew->a[pNew->nExpr-1]; sqlite3DbFree(db, pX->zEName); if( pSub ){ pX->zEName = sqlite3DbStrDup(db, pSub->pEList->a[j].zEName); testcase( pX->zEName==0 ); }else{ pX->zEName = sqlite3MPrintf(db, "%s.%s.%s", zSchemaName, zTabName, zColname); testcase( pX->zEName==0 ); } pX->eEName = ENAME_TAB; } sqlite3DbFree(db, zToFree); } } if( !tableSeen ){ if( zTName ){ sqlite3ErrorMsg(pParse, "no such table: %s", zTName); }else{ sqlite3ErrorMsg(pParse, "no tables specified"); } } } } sqlite3ExprListDelete(db, pEList); p->pEList = pNew; } if( p->pEList ){ if( p->pEList->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many columns in result set"); return WRC_Abort; } if( (elistFlags & (EP_HasFunc|EP_Subquery))!=0 ){ p->selFlags |= SF_ComplexResult; } } return WRC_Continue; } #if SQLITE_DEBUG /* ** Always assert. This xSelectCallback2 implementation proves that the ** xSelectCallback2 is never invoked. */ SQLITE_PRIVATE void sqlite3SelectWalkAssert2(Walker *NotUsed, Select *NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); assert( 0 ); } #endif /* ** This routine "expands" a SELECT statement and all of its subqueries. ** For additional information on what it means to "expand" a SELECT ** statement, see the comment on the selectExpand worker callback above. ** ** Expanding a SELECT statement is the first step in processing a ** SELECT statement. The SELECT statement must be expanded before ** name resolution is performed. ** ** If anything goes wrong, an error message is written into pParse. ** The calling function can detect the problem by looking at pParse->nErr ** and/or pParse->db->mallocFailed. */ static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){ Walker w; w.xExprCallback = sqlite3ExprWalkNoop; w.pParse = pParse; if( OK_IF_ALWAYS_TRUE(pParse->hasCompound) ){ w.xSelectCallback = convertCompoundSelectToSubquery; w.xSelectCallback2 = 0; sqlite3WalkSelect(&w, pSelect); } w.xSelectCallback = selectExpander; w.xSelectCallback2 = sqlite3SelectPopWith; w.eCode = 0; sqlite3WalkSelect(&w, pSelect); } #ifndef SQLITE_OMIT_SUBQUERY /* ** This is a Walker.xSelectCallback callback for the sqlite3SelectTypeInfo() ** interface. ** ** For each FROM-clause subquery, add Column.zType and Column.zColl ** information to the Table structure that represents the result set ** of that subquery. ** ** The Table structure that represents the result set was constructed ** by selectExpander() but the type and collation information was omitted ** at that point because identifiers had not yet been resolved. This ** routine is called after identifier resolution. */ static void selectAddSubqueryTypeInfo(Walker *pWalker, Select *p){ Parse *pParse; int i; SrcList *pTabList; SrcItem *pFrom; assert( p->selFlags & SF_Resolved ); if( p->selFlags & SF_HasTypeInfo ) return; p->selFlags |= SF_HasTypeInfo; pParse = pWalker->pParse; pTabList = p->pSrc; for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ Table *pTab = pFrom->pTab; assert( pTab!=0 ); if( (pTab->tabFlags & TF_Ephemeral)!=0 ){ /* A sub-query in the FROM clause of a SELECT */ Select *pSel = pFrom->pSelect; if( pSel ){ while( pSel->pPrior ) pSel = pSel->pPrior; sqlite3SelectAddColumnTypeAndCollation(pParse, pTab, pSel, SQLITE_AFF_NONE); } } } } #endif /* ** This routine adds datatype and collating sequence information to ** the Table structures of all FROM-clause subqueries in a ** SELECT statement. ** ** Use this routine after name resolution. */ static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){ #ifndef SQLITE_OMIT_SUBQUERY Walker w; w.xSelectCallback = sqlite3SelectWalkNoop; w.xSelectCallback2 = selectAddSubqueryTypeInfo; w.xExprCallback = sqlite3ExprWalkNoop; w.pParse = pParse; sqlite3WalkSelect(&w, pSelect); #endif } /* ** This routine sets up a SELECT statement for processing. The ** following is accomplished: ** ** * VDBE Cursor numbers are assigned to all FROM-clause terms. ** * Ephemeral Table objects are created for all FROM-clause subqueries. ** * ON and USING clauses are shifted into WHERE statements ** * Wildcards "*" and "TABLE.*" in result sets are expanded. ** * Identifiers in expression are matched to tables. ** ** This routine acts recursively on all subqueries within the SELECT. */ SQLITE_PRIVATE void sqlite3SelectPrep( Parse *pParse, /* The parser context */ Select *p, /* The SELECT statement being coded. */ NameContext *pOuterNC /* Name context for container */ ){ assert( p!=0 || pParse->db->mallocFailed ); assert( pParse->db->pParse==pParse ); if( pParse->db->mallocFailed ) return; if( p->selFlags & SF_HasTypeInfo ) return; sqlite3SelectExpand(pParse, p); if( pParse->nErr ) return; sqlite3ResolveSelectNames(pParse, p, pOuterNC); if( pParse->nErr ) return; sqlite3SelectAddTypeInfo(pParse, p); } /* ** Reset the aggregate accumulator. ** ** The aggregate accumulator is a set of memory cells that hold ** intermediate results while calculating an aggregate. This ** routine generates code that stores NULLs in all of those memory ** cells. */ static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){ Vdbe *v = pParse->pVdbe; int i; struct AggInfo_func *pFunc; int nReg = pAggInfo->nFunc + pAggInfo->nColumn; assert( pParse->db->pParse==pParse ); assert( pParse->db->mallocFailed==0 || pParse->nErr!=0 ); if( nReg==0 ) return; if( pParse->nErr ) return; #ifdef SQLITE_DEBUG /* Verify that all AggInfo registers are within the range specified by ** AggInfo.mnReg..AggInfo.mxReg */ assert( nReg==pAggInfo->mxReg-pAggInfo->mnReg+1 ); for(i=0; inColumn; i++){ assert( pAggInfo->aCol[i].iMem>=pAggInfo->mnReg && pAggInfo->aCol[i].iMem<=pAggInfo->mxReg ); } for(i=0; inFunc; i++){ assert( pAggInfo->aFunc[i].iMem>=pAggInfo->mnReg && pAggInfo->aFunc[i].iMem<=pAggInfo->mxReg ); } #endif sqlite3VdbeAddOp3(v, OP_Null, 0, pAggInfo->mnReg, pAggInfo->mxReg); for(pFunc=pAggInfo->aFunc, i=0; inFunc; i++, pFunc++){ if( pFunc->iDistinct>=0 ){ Expr *pE = pFunc->pFExpr; assert( ExprUseXList(pE) ); if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){ sqlite3ErrorMsg(pParse, "DISTINCT aggregates must have exactly one " "argument"); pFunc->iDistinct = -1; }else{ KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pE->x.pList,0,0); pFunc->iDistAddr = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, pFunc->iDistinct, 0, 0, (char*)pKeyInfo, P4_KEYINFO); ExplainQueryPlan((pParse, 0, "USE TEMP B-TREE FOR %s(DISTINCT)", pFunc->pFunc->zName)); } } } } /* ** Invoke the OP_AggFinalize opcode for every aggregate function ** in the AggInfo structure. */ static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){ Vdbe *v = pParse->pVdbe; int i; struct AggInfo_func *pF; for(i=0, pF=pAggInfo->aFunc; inFunc; i++, pF++){ ExprList *pList; assert( ExprUseXList(pF->pFExpr) ); pList = pF->pFExpr->x.pList; sqlite3VdbeAddOp2(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0); sqlite3VdbeAppendP4(v, pF->pFunc, P4_FUNCDEF); } } /* ** Update the accumulator memory cells for an aggregate based on ** the current cursor position. ** ** If regAcc is non-zero and there are no min() or max() aggregates ** in pAggInfo, then only populate the pAggInfo->nAccumulator accumulator ** registers if register regAcc contains 0. The caller will take care ** of setting and clearing regAcc. */ static void updateAccumulator( Parse *pParse, int regAcc, AggInfo *pAggInfo, int eDistinctType ){ Vdbe *v = pParse->pVdbe; int i; int regHit = 0; int addrHitTest = 0; struct AggInfo_func *pF; struct AggInfo_col *pC; pAggInfo->directMode = 1; for(i=0, pF=pAggInfo->aFunc; inFunc; i++, pF++){ int nArg; int addrNext = 0; int regAgg; ExprList *pList; assert( ExprUseXList(pF->pFExpr) ); assert( !IsWindowFunc(pF->pFExpr) ); pList = pF->pFExpr->x.pList; if( ExprHasProperty(pF->pFExpr, EP_WinFunc) ){ Expr *pFilter = pF->pFExpr->y.pWin->pFilter; if( pAggInfo->nAccumulator && (pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL) && regAcc ){ /* If regAcc==0, there there exists some min() or max() function ** without a FILTER clause that will ensure the magnet registers ** are populated. */ if( regHit==0 ) regHit = ++pParse->nMem; /* If this is the first row of the group (regAcc contains 0), clear the ** "magnet" register regHit so that the accumulator registers ** are populated if the FILTER clause jumps over the the ** invocation of min() or max() altogether. Or, if this is not ** the first row (regAcc contains 1), set the magnet register so that ** the accumulators are not populated unless the min()/max() is invoked ** and indicates that they should be. */ sqlite3VdbeAddOp2(v, OP_Copy, regAcc, regHit); } addrNext = sqlite3VdbeMakeLabel(pParse); sqlite3ExprIfFalse(pParse, pFilter, addrNext, SQLITE_JUMPIFNULL); } if( pList ){ nArg = pList->nExpr; regAgg = sqlite3GetTempRange(pParse, nArg); sqlite3ExprCodeExprList(pParse, pList, regAgg, 0, SQLITE_ECEL_DUP); }else{ nArg = 0; regAgg = 0; } if( pF->iDistinct>=0 && pList ){ if( addrNext==0 ){ addrNext = sqlite3VdbeMakeLabel(pParse); } pF->iDistinct = codeDistinct(pParse, eDistinctType, pF->iDistinct, addrNext, pList, regAgg); } if( pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ CollSeq *pColl = 0; struct ExprList_item *pItem; int j; assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */ for(j=0, pItem=pList->a; !pColl && jpExpr); } if( !pColl ){ pColl = pParse->db->pDfltColl; } if( regHit==0 && pAggInfo->nAccumulator ) regHit = ++pParse->nMem; sqlite3VdbeAddOp4(v, OP_CollSeq, regHit, 0, 0, (char *)pColl, P4_COLLSEQ); } sqlite3VdbeAddOp3(v, OP_AggStep, 0, regAgg, pF->iMem); sqlite3VdbeAppendP4(v, pF->pFunc, P4_FUNCDEF); sqlite3VdbeChangeP5(v, (u8)nArg); sqlite3ReleaseTempRange(pParse, regAgg, nArg); if( addrNext ){ sqlite3VdbeResolveLabel(v, addrNext); } } if( regHit==0 && pAggInfo->nAccumulator ){ regHit = regAcc; } if( regHit ){ addrHitTest = sqlite3VdbeAddOp1(v, OP_If, regHit); VdbeCoverage(v); } for(i=0, pC=pAggInfo->aCol; inAccumulator; i++, pC++){ sqlite3ExprCode(pParse, pC->pCExpr, pC->iMem); } pAggInfo->directMode = 0; if( addrHitTest ){ sqlite3VdbeJumpHereOrPopInst(v, addrHitTest); } } /* ** Add a single OP_Explain instruction to the VDBE to explain a simple ** count(*) query ("SELECT count(*) FROM pTab"). */ #ifndef SQLITE_OMIT_EXPLAIN static void explainSimpleCount( Parse *pParse, /* Parse context */ Table *pTab, /* Table being queried */ Index *pIdx /* Index used to optimize scan, or NULL */ ){ if( pParse->explain==2 ){ int bCover = (pIdx!=0 && (HasRowid(pTab) || !IsPrimaryKeyIndex(pIdx))); sqlite3VdbeExplain(pParse, 0, "SCAN %s%s%s", pTab->zName, bCover ? " USING COVERING INDEX " : "", bCover ? pIdx->zName : "" ); } } #else # define explainSimpleCount(a,b,c) #endif /* ** sqlite3WalkExpr() callback used by havingToWhere(). ** ** If the node passed to the callback is a TK_AND node, return ** WRC_Continue to tell sqlite3WalkExpr() to iterate through child nodes. ** ** Otherwise, return WRC_Prune. In this case, also check if the ** sub-expression matches the criteria for being moved to the WHERE ** clause. If so, add it to the WHERE clause and replace the sub-expression ** within the HAVING expression with a constant "1". */ static int havingToWhereExprCb(Walker *pWalker, Expr *pExpr){ if( pExpr->op!=TK_AND ){ Select *pS = pWalker->u.pSelect; /* This routine is called before the HAVING clause of the current ** SELECT is analyzed for aggregates. So if pExpr->pAggInfo is set ** here, it indicates that the expression is a correlated reference to a ** column from an outer aggregate query, or an aggregate function that ** belongs to an outer query. Do not move the expression to the WHERE ** clause in this obscure case, as doing so may corrupt the outer Select ** statements AggInfo structure. */ if( sqlite3ExprIsConstantOrGroupBy(pWalker->pParse, pExpr, pS->pGroupBy) && ExprAlwaysFalse(pExpr)==0 && pExpr->pAggInfo==0 ){ sqlite3 *db = pWalker->pParse->db; Expr *pNew = sqlite3Expr(db, TK_INTEGER, "1"); if( pNew ){ Expr *pWhere = pS->pWhere; SWAP(Expr, *pNew, *pExpr); pNew = sqlite3ExprAnd(pWalker->pParse, pWhere, pNew); pS->pWhere = pNew; pWalker->eCode = 1; } } return WRC_Prune; } return WRC_Continue; } /* ** Transfer eligible terms from the HAVING clause of a query, which is ** processed after grouping, to the WHERE clause, which is processed before ** grouping. For example, the query: ** ** SELECT * FROM WHERE a=? GROUP BY b HAVING b=? AND c=? ** ** can be rewritten as: ** ** SELECT * FROM WHERE a=? AND b=? GROUP BY b HAVING c=? ** ** A term of the HAVING expression is eligible for transfer if it consists ** entirely of constants and expressions that are also GROUP BY terms that ** use the "BINARY" collation sequence. */ static void havingToWhere(Parse *pParse, Select *p){ Walker sWalker; memset(&sWalker, 0, sizeof(sWalker)); sWalker.pParse = pParse; sWalker.xExprCallback = havingToWhereExprCb; sWalker.u.pSelect = p; sqlite3WalkExpr(&sWalker, p->pHaving); #if SELECTTRACE_ENABLED if( sWalker.eCode && (sqlite3SelectTrace & 0x100)!=0 ){ SELECTTRACE(0x100,pParse,p,("Move HAVING terms into WHERE:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif } /* ** Check to see if the pThis entry of pTabList is a self-join of a prior view. ** If it is, then return the SrcList_item for the prior view. If it is not, ** then return 0. */ static SrcItem *isSelfJoinView( SrcList *pTabList, /* Search for self-joins in this FROM clause */ SrcItem *pThis /* Search for prior reference to this subquery */ ){ SrcItem *pItem; assert( pThis->pSelect!=0 ); if( pThis->pSelect->selFlags & SF_PushDown ) return 0; for(pItem = pTabList->a; pItempSelect==0 ) continue; if( pItem->fg.viaCoroutine ) continue; if( pItem->zName==0 ) continue; assert( pItem->pTab!=0 ); assert( pThis->pTab!=0 ); if( pItem->pTab->pSchema!=pThis->pTab->pSchema ) continue; if( sqlite3_stricmp(pItem->zName, pThis->zName)!=0 ) continue; pS1 = pItem->pSelect; if( pItem->pTab->pSchema==0 && pThis->pSelect->selId!=pS1->selId ){ /* The query flattener left two different CTE tables with identical ** names in the same FROM clause. */ continue; } if( pItem->pSelect->selFlags & SF_PushDown ){ /* The view was modified by some other optimization such as ** pushDownWhereTerms() */ continue; } return pItem; } return 0; } /* ** Deallocate a single AggInfo object */ static void agginfoFree(sqlite3 *db, AggInfo *p){ sqlite3DbFree(db, p->aCol); sqlite3DbFree(db, p->aFunc); sqlite3DbFreeNN(db, p); } #ifdef SQLITE_COUNTOFVIEW_OPTIMIZATION /* ** Attempt to transform a query of the form ** ** SELECT count(*) FROM (SELECT x FROM t1 UNION ALL SELECT y FROM t2) ** ** Into this: ** ** SELECT (SELECT count(*) FROM t1)+(SELECT count(*) FROM t2) ** ** The transformation only works if all of the following are true: ** ** * The subquery is a UNION ALL of two or more terms ** * The subquery does not have a LIMIT clause ** * There is no WHERE or GROUP BY or HAVING clauses on the subqueries ** * The outer query is a simple count(*) with no WHERE clause or other ** extraneous syntax. ** ** Return TRUE if the optimization is undertaken. */ static int countOfViewOptimization(Parse *pParse, Select *p){ Select *pSub, *pPrior; Expr *pExpr; Expr *pCount; sqlite3 *db; if( (p->selFlags & SF_Aggregate)==0 ) return 0; /* This is an aggregate */ if( p->pEList->nExpr!=1 ) return 0; /* Single result column */ if( p->pWhere ) return 0; if( p->pGroupBy ) return 0; pExpr = p->pEList->a[0].pExpr; if( pExpr->op!=TK_AGG_FUNCTION ) return 0; /* Result is an aggregate */ assert( ExprUseUToken(pExpr) ); if( sqlite3_stricmp(pExpr->u.zToken,"count") ) return 0; /* Is count() */ assert( ExprUseXList(pExpr) ); if( pExpr->x.pList!=0 ) return 0; /* Must be count(*) */ if( p->pSrc->nSrc!=1 ) return 0; /* One table in FROM */ pSub = p->pSrc->a[0].pSelect; if( pSub==0 ) return 0; /* The FROM is a subquery */ if( pSub->pPrior==0 ) return 0; /* Must be a compound ry */ do{ if( pSub->op!=TK_ALL && pSub->pPrior ) return 0; /* Must be UNION ALL */ if( pSub->pWhere ) return 0; /* No WHERE clause */ if( pSub->pLimit ) return 0; /* No LIMIT clause */ if( pSub->selFlags & SF_Aggregate ) return 0; /* Not an aggregate */ pSub = pSub->pPrior; /* Repeat over compound */ }while( pSub ); /* If we reach this point then it is OK to perform the transformation */ db = pParse->db; pCount = pExpr; pExpr = 0; pSub = p->pSrc->a[0].pSelect; p->pSrc->a[0].pSelect = 0; sqlite3SrcListDelete(db, p->pSrc); p->pSrc = sqlite3DbMallocZero(pParse->db, sizeof(*p->pSrc)); while( pSub ){ Expr *pTerm; pPrior = pSub->pPrior; pSub->pPrior = 0; pSub->pNext = 0; pSub->selFlags |= SF_Aggregate; pSub->selFlags &= ~SF_Compound; pSub->nSelectRow = 0; sqlite3ExprListDelete(db, pSub->pEList); pTerm = pPrior ? sqlite3ExprDup(db, pCount, 0) : pCount; pSub->pEList = sqlite3ExprListAppend(pParse, 0, pTerm); pTerm = sqlite3PExpr(pParse, TK_SELECT, 0, 0); sqlite3PExprAddSelect(pParse, pTerm, pSub); if( pExpr==0 ){ pExpr = pTerm; }else{ pExpr = sqlite3PExpr(pParse, TK_PLUS, pTerm, pExpr); } pSub = pPrior; } p->pEList->a[0].pExpr = pExpr; p->selFlags &= ~SF_Aggregate; #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x400 ){ SELECTTRACE(0x400,pParse,p,("After count-of-view optimization:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif return 1; } #endif /* SQLITE_COUNTOFVIEW_OPTIMIZATION */ /* ** Generate code for the SELECT statement given in the p argument. ** ** The results are returned according to the SelectDest structure. ** See comments in sqliteInt.h for further information. ** ** This routine returns the number of errors. If any errors are ** encountered, then an appropriate error message is left in ** pParse->zErrMsg. ** ** This routine does NOT free the Select structure passed in. The ** calling function needs to do that. */ SQLITE_PRIVATE int sqlite3Select( Parse *pParse, /* The parser context */ Select *p, /* The SELECT statement being coded. */ SelectDest *pDest /* What to do with the query results */ ){ int i, j; /* Loop counters */ WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */ Vdbe *v; /* The virtual machine under construction */ int isAgg; /* True for select lists like "count(*)" */ ExprList *pEList = 0; /* List of columns to extract. */ SrcList *pTabList; /* List of tables to select from */ Expr *pWhere; /* The WHERE clause. May be NULL */ ExprList *pGroupBy; /* The GROUP BY clause. May be NULL */ Expr *pHaving; /* The HAVING clause. May be NULL */ AggInfo *pAggInfo = 0; /* Aggregate information */ int rc = 1; /* Value to return from this function */ DistinctCtx sDistinct; /* Info on how to code the DISTINCT keyword */ SortCtx sSort; /* Info on how to code the ORDER BY clause */ int iEnd; /* Address of the end of the query */ sqlite3 *db; /* The database connection */ ExprList *pMinMaxOrderBy = 0; /* Added ORDER BY for min/max queries */ u8 minMaxFlag; /* Flag for min/max queries */ db = pParse->db; assert( pParse==db->pParse ); v = sqlite3GetVdbe(pParse); if( p==0 || pParse->nErr ){ return 1; } assert( db->mallocFailed==0 ); if( sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0) ) return 1; #if SELECTTRACE_ENABLED SELECTTRACE(1,pParse,p, ("begin processing:\n", pParse->addrExplain)); if( sqlite3SelectTrace & 0x100 ){ sqlite3TreeViewSelect(0, p, 0); } #endif assert( p->pOrderBy==0 || pDest->eDest!=SRT_DistFifo ); assert( p->pOrderBy==0 || pDest->eDest!=SRT_Fifo ); assert( p->pOrderBy==0 || pDest->eDest!=SRT_DistQueue ); assert( p->pOrderBy==0 || pDest->eDest!=SRT_Queue ); if( IgnorableDistinct(pDest) ){ assert(pDest->eDest==SRT_Exists || pDest->eDest==SRT_Union || pDest->eDest==SRT_Except || pDest->eDest==SRT_Discard || pDest->eDest==SRT_DistQueue || pDest->eDest==SRT_DistFifo ); /* All of these destinations are also able to ignore the ORDER BY clause */ if( p->pOrderBy ){ #if SELECTTRACE_ENABLED SELECTTRACE(1,pParse,p, ("dropping superfluous ORDER BY:\n")); if( sqlite3SelectTrace & 0x100 ){ sqlite3TreeViewExprList(0, p->pOrderBy, 0, "ORDERBY"); } #endif sqlite3ParserAddCleanup(pParse, (void(*)(sqlite3*,void*))sqlite3ExprListDelete, p->pOrderBy); testcase( pParse->earlyCleanup ); p->pOrderBy = 0; } p->selFlags &= ~SF_Distinct; p->selFlags |= SF_NoopOrderBy; } sqlite3SelectPrep(pParse, p, 0); if( pParse->nErr ){ goto select_end; } assert( db->mallocFailed==0 ); assert( p->pEList!=0 ); #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x104 ){ SELECTTRACE(0x104,pParse,p, ("after name resolution:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif /* If the SF_UFSrcCheck flag is set, then this function is being called ** as part of populating the temp table for an UPDATE...FROM statement. ** In this case, it is an error if the target object (pSrc->a[0]) name ** or alias is duplicated within FROM clause (pSrc->a[1..n]). ** ** Postgres disallows this case too. The reason is that some other ** systems handle this case differently, and not all the same way, ** which is just confusing. To avoid this, we follow PG's lead and ** disallow it altogether. */ if( p->selFlags & SF_UFSrcCheck ){ SrcItem *p0 = &p->pSrc->a[0]; for(i=1; ipSrc->nSrc; i++){ SrcItem *p1 = &p->pSrc->a[i]; if( p0->pTab==p1->pTab && 0==sqlite3_stricmp(p0->zAlias, p1->zAlias) ){ sqlite3ErrorMsg(pParse, "target object/alias may not appear in FROM clause: %s", p0->zAlias ? p0->zAlias : p0->pTab->zName ); goto select_end; } } /* Clear the SF_UFSrcCheck flag. The check has already been performed, ** and leaving this flag set can cause errors if a compound sub-query ** in p->pSrc is flattened into this query and this function called ** again as part of compound SELECT processing. */ p->selFlags &= ~SF_UFSrcCheck; } if( pDest->eDest==SRT_Output ){ sqlite3GenerateColumnNames(pParse, p); } #ifndef SQLITE_OMIT_WINDOWFUNC if( sqlite3WindowRewrite(pParse, p) ){ assert( pParse->nErr ); goto select_end; } #if SELECTTRACE_ENABLED if( p->pWin && (sqlite3SelectTrace & 0x108)!=0 ){ SELECTTRACE(0x104,pParse,p, ("after window rewrite:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif #endif /* SQLITE_OMIT_WINDOWFUNC */ pTabList = p->pSrc; isAgg = (p->selFlags & SF_Aggregate)!=0; memset(&sSort, 0, sizeof(sSort)); sSort.pOrderBy = p->pOrderBy; /* Try to do various optimizations (flattening subqueries, and strength ** reduction of join operators) in the FROM clause up into the main query */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) for(i=0; !p->pPrior && inSrc; i++){ SrcItem *pItem = &pTabList->a[i]; Select *pSub = pItem->pSelect; Table *pTab = pItem->pTab; /* The expander should have already created transient Table objects ** even for FROM clause elements such as subqueries that do not correspond ** to a real table */ assert( pTab!=0 ); /* Convert LEFT JOIN into JOIN if there are terms of the right table ** of the LEFT JOIN used in the WHERE clause. */ if( (pItem->fg.jointype & JT_LEFT)!=0 && sqlite3ExprImpliesNonNullRow(p->pWhere, pItem->iCursor) && OptimizationEnabled(db, SQLITE_SimplifyJoin) ){ SELECTTRACE(0x100,pParse,p, ("LEFT-JOIN simplifies to JOIN on term %d\n",i)); pItem->fg.jointype &= ~(JT_LEFT|JT_OUTER); unsetJoinExpr(p->pWhere, pItem->iCursor); } /* No futher action if this term of the FROM clause is no a subquery */ if( pSub==0 ) continue; /* Catch mismatch in the declared columns of a view and the number of ** columns in the SELECT on the RHS */ if( pTab->nCol!=pSub->pEList->nExpr ){ sqlite3ErrorMsg(pParse, "expected %d columns for '%s' but got %d", pTab->nCol, pTab->zName, pSub->pEList->nExpr); goto select_end; } /* Do not try to flatten an aggregate subquery. ** ** Flattening an aggregate subquery is only possible if the outer query ** is not a join. But if the outer query is not a join, then the subquery ** will be implemented as a co-routine and there is no advantage to ** flattening in that case. */ if( (pSub->selFlags & SF_Aggregate)!=0 ) continue; assert( pSub->pGroupBy==0 ); /* If a FROM-clause subquery has an ORDER BY clause that is not ** really doing anything, then delete it now so that it does not ** interfere with query flattening. See the discussion at ** https://sqlite.org/forum/forumpost/2d76f2bcf65d256a ** ** Beware of these cases where the ORDER BY clause may not be safely ** omitted: ** ** (1) There is also a LIMIT clause ** (2) The subquery was added to help with window-function ** processing ** (3) The subquery is in the FROM clause of an UPDATE ** (4) The outer query uses an aggregate function other than ** the built-in count(), min(), or max(). ** (5) The ORDER BY isn't going to accomplish anything because ** one of: ** (a) The outer query has a different ORDER BY clause ** (b) The subquery is part of a join ** See forum post 062d576715d277c8 */ if( pSub->pOrderBy!=0 && (p->pOrderBy!=0 || pTabList->nSrc>1) /* Condition (5) */ && pSub->pLimit==0 /* Condition (1) */ && (pSub->selFlags & SF_OrderByReqd)==0 /* Condition (2) */ && (p->selFlags & SF_OrderByReqd)==0 /* Condition (3) and (4) */ && OptimizationEnabled(db, SQLITE_OmitOrderBy) ){ SELECTTRACE(0x100,pParse,p, ("omit superfluous ORDER BY on %r FROM-clause subquery\n",i+1)); sqlite3ExprListDelete(db, pSub->pOrderBy); pSub->pOrderBy = 0; } /* If the outer query contains a "complex" result set (that is, ** if the result set of the outer query uses functions or subqueries) ** and if the subquery contains an ORDER BY clause and if ** it will be implemented as a co-routine, then do not flatten. This ** restriction allows SQL constructs like this: ** ** SELECT expensive_function(x) ** FROM (SELECT x FROM tab ORDER BY y LIMIT 10); ** ** The expensive_function() is only computed on the 10 rows that ** are output, rather than every row of the table. ** ** The requirement that the outer query have a complex result set ** means that flattening does occur on simpler SQL constraints without ** the expensive_function() like: ** ** SELECT x FROM (SELECT x FROM tab ORDER BY y LIMIT 10); */ if( pSub->pOrderBy!=0 && i==0 && (p->selFlags & SF_ComplexResult)!=0 && (pTabList->nSrc==1 || (pTabList->a[1].fg.jointype&(JT_LEFT|JT_CROSS))!=0) ){ continue; } if( flattenSubquery(pParse, p, i, isAgg) ){ if( pParse->nErr ) goto select_end; /* This subquery can be absorbed into its parent. */ i = -1; } pTabList = p->pSrc; if( db->mallocFailed ) goto select_end; if( !IgnorableOrderby(pDest) ){ sSort.pOrderBy = p->pOrderBy; } } #endif #ifndef SQLITE_OMIT_COMPOUND_SELECT /* Handle compound SELECT statements using the separate multiSelect() ** procedure. */ if( p->pPrior ){ rc = multiSelect(pParse, p, pDest); #if SELECTTRACE_ENABLED SELECTTRACE(0x1,pParse,p,("end compound-select processing\n")); if( (sqlite3SelectTrace & 0x2000)!=0 && ExplainQueryPlanParent(pParse)==0 ){ sqlite3TreeViewSelect(0, p, 0); } #endif if( p->pNext==0 ) ExplainQueryPlanPop(pParse); return rc; } #endif /* Do the WHERE-clause constant propagation optimization if this is ** a join. No need to speed time on this operation for non-join queries ** as the equivalent optimization will be handled by query planner in ** sqlite3WhereBegin(). */ if( p->pWhere!=0 && p->pWhere->op==TK_AND && OptimizationEnabled(db, SQLITE_PropagateConst) && propagateConstants(pParse, p) ){ #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x100 ){ SELECTTRACE(0x100,pParse,p,("After constant propagation:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif }else{ SELECTTRACE(0x100,pParse,p,("Constant propagation not helpful\n")); } #ifdef SQLITE_COUNTOFVIEW_OPTIMIZATION if( OptimizationEnabled(db, SQLITE_QueryFlattener|SQLITE_CountOfView) && countOfViewOptimization(pParse, p) ){ if( db->mallocFailed ) goto select_end; pEList = p->pEList; pTabList = p->pSrc; } #endif /* For each term in the FROM clause, do two things: ** (1) Authorized unreferenced tables ** (2) Generate code for all sub-queries */ for(i=0; inSrc; i++){ SrcItem *pItem = &pTabList->a[i]; SrcItem *pPrior; SelectDest dest; Select *pSub; #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) const char *zSavedAuthContext; #endif /* Issue SQLITE_READ authorizations with a fake column name for any ** tables that are referenced but from which no values are extracted. ** Examples of where these kinds of null SQLITE_READ authorizations ** would occur: ** ** SELECT count(*) FROM t1; -- SQLITE_READ t1."" ** SELECT t1.* FROM t1, t2; -- SQLITE_READ t2."" ** ** The fake column name is an empty string. It is possible for a table to ** have a column named by the empty string, in which case there is no way to ** distinguish between an unreferenced table and an actual reference to the ** "" column. The original design was for the fake column name to be a NULL, ** which would be unambiguous. But legacy authorization callbacks might ** assume the column name is non-NULL and segfault. The use of an empty ** string for the fake column name seems safer. */ if( pItem->colUsed==0 && pItem->zName!=0 ){ sqlite3AuthCheck(pParse, SQLITE_READ, pItem->zName, "", pItem->zDatabase); } #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* Generate code for all sub-queries in the FROM clause */ pSub = pItem->pSelect; if( pSub==0 ) continue; /* The code for a subquery should only be generated once. */ assert( pItem->addrFillSub==0 ); /* Increment Parse.nHeight by the height of the largest expression ** tree referred to by this, the parent select. The child select ** may contain expression trees of at most ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit ** more conservative than necessary, but much easier than enforcing ** an exact limit. */ pParse->nHeight += sqlite3SelectExprHeight(p); /* Make copies of constant WHERE-clause terms in the outer query down ** inside the subquery. This can help the subquery to run more efficiently. */ if( OptimizationEnabled(db, SQLITE_PushDown) && (pItem->fg.isCte==0 || (pItem->u2.pCteUse->eM10d!=M10d_Yes && pItem->u2.pCteUse->nUse<2)) && pushDownWhereTerms(pParse, pSub, p->pWhere, pItem->iCursor, (pItem->fg.jointype & JT_OUTER)!=0) ){ #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x100 ){ SELECTTRACE(0x100,pParse,p, ("After WHERE-clause push-down into subquery %d:\n", pSub->selId)); sqlite3TreeViewSelect(0, p, 0); } #endif assert( pItem->pSelect && (pItem->pSelect->selFlags & SF_PushDown)!=0 ); }else{ SELECTTRACE(0x100,pParse,p,("Push-down not possible\n")); } zSavedAuthContext = pParse->zAuthContext; pParse->zAuthContext = pItem->zName; /* Generate code to implement the subquery ** ** The subquery is implemented as a co-routine if: ** (1) the subquery is guaranteed to be the outer loop (so that ** it does not need to be computed more than once), and ** (2) the subquery is not a CTE that should be materialized ** ** TODO: Are there other reasons beside (1) and (2) to use a co-routine ** implementation? */ if( i==0 && (pTabList->nSrc==1 || (pTabList->a[1].fg.jointype&(JT_LEFT|JT_CROSS))!=0) /* (1) */ && (pItem->fg.isCte==0 || pItem->u2.pCteUse->eM10d!=M10d_Yes) /* (2) */ ){ /* Implement a co-routine that will return a single row of the result ** set on each invocation. */ int addrTop = sqlite3VdbeCurrentAddr(v)+1; pItem->regReturn = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_InitCoroutine, pItem->regReturn, 0, addrTop); VdbeComment((v, "%!S", pItem)); pItem->addrFillSub = addrTop; sqlite3SelectDestInit(&dest, SRT_Coroutine, pItem->regReturn); ExplainQueryPlan((pParse, 1, "CO-ROUTINE %!S", pItem)); sqlite3Select(pParse, pSub, &dest); pItem->pTab->nRowLogEst = pSub->nSelectRow; pItem->fg.viaCoroutine = 1; pItem->regResult = dest.iSdst; sqlite3VdbeEndCoroutine(v, pItem->regReturn); sqlite3VdbeJumpHere(v, addrTop-1); sqlite3ClearTempRegCache(pParse); }else if( pItem->fg.isCte && pItem->u2.pCteUse->addrM9e>0 ){ /* This is a CTE for which materialization code has already been ** generated. Invoke the subroutine to compute the materialization, ** the make the pItem->iCursor be a copy of the ephemerial table that ** holds the result of the materialization. */ CteUse *pCteUse = pItem->u2.pCteUse; sqlite3VdbeAddOp2(v, OP_Gosub, pCteUse->regRtn, pCteUse->addrM9e); if( pItem->iCursor!=pCteUse->iCur ){ sqlite3VdbeAddOp2(v, OP_OpenDup, pItem->iCursor, pCteUse->iCur); VdbeComment((v, "%!S", pItem)); } pSub->nSelectRow = pCteUse->nRowEst; }else if( (pPrior = isSelfJoinView(pTabList, pItem))!=0 ){ /* This view has already been materialized by a prior entry in ** this same FROM clause. Reuse it. */ if( pPrior->addrFillSub ){ sqlite3VdbeAddOp2(v, OP_Gosub, pPrior->regReturn, pPrior->addrFillSub); } sqlite3VdbeAddOp2(v, OP_OpenDup, pItem->iCursor, pPrior->iCursor); pSub->nSelectRow = pPrior->pSelect->nSelectRow; }else{ /* Materialize the view. If the view is not correlated, generate a ** subroutine to do the materialization so that subsequent uses of ** the same view can reuse the materialization. */ int topAddr; int onceAddr = 0; int retAddr; pItem->regReturn = ++pParse->nMem; topAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pItem->regReturn); pItem->addrFillSub = topAddr+1; if( pItem->fg.isCorrelated==0 ){ /* If the subquery is not correlated and if we are not inside of ** a trigger, then we only need to compute the value of the subquery ** once. */ onceAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); VdbeComment((v, "materialize %!S", pItem)); }else{ VdbeNoopComment((v, "materialize %!S", pItem)); } sqlite3SelectDestInit(&dest, SRT_EphemTab, pItem->iCursor); ExplainQueryPlan((pParse, 1, "MATERIALIZE %!S", pItem)); sqlite3Select(pParse, pSub, &dest); pItem->pTab->nRowLogEst = pSub->nSelectRow; if( onceAddr ) sqlite3VdbeJumpHere(v, onceAddr); retAddr = sqlite3VdbeAddOp1(v, OP_Return, pItem->regReturn); VdbeComment((v, "end %!S", pItem)); sqlite3VdbeChangeP1(v, topAddr, retAddr); sqlite3ClearTempRegCache(pParse); if( pItem->fg.isCte && pItem->fg.isCorrelated==0 ){ CteUse *pCteUse = pItem->u2.pCteUse; pCteUse->addrM9e = pItem->addrFillSub; pCteUse->regRtn = pItem->regReturn; pCteUse->iCur = pItem->iCursor; pCteUse->nRowEst = pSub->nSelectRow; } } if( db->mallocFailed ) goto select_end; pParse->nHeight -= sqlite3SelectExprHeight(p); pParse->zAuthContext = zSavedAuthContext; #endif } /* Various elements of the SELECT copied into local variables for ** convenience */ pEList = p->pEList; pWhere = p->pWhere; pGroupBy = p->pGroupBy; pHaving = p->pHaving; sDistinct.isTnct = (p->selFlags & SF_Distinct)!=0; #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x400 ){ SELECTTRACE(0x400,pParse,p,("After all FROM-clause analysis:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif /* If the query is DISTINCT with an ORDER BY but is not an aggregate, and ** if the select-list is the same as the ORDER BY list, then this query ** can be rewritten as a GROUP BY. In other words, this: ** ** SELECT DISTINCT xyz FROM ... ORDER BY xyz ** ** is transformed to: ** ** SELECT xyz FROM ... GROUP BY xyz ORDER BY xyz ** ** The second form is preferred as a single index (or temp-table) may be ** used for both the ORDER BY and DISTINCT processing. As originally ** written the query must use a temp-table for at least one of the ORDER ** BY and DISTINCT, and an index or separate temp-table for the other. */ if( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct && sqlite3ExprListCompare(sSort.pOrderBy, pEList, -1)==0 #ifndef SQLITE_OMIT_WINDOWFUNC && p->pWin==0 #endif ){ p->selFlags &= ~SF_Distinct; pGroupBy = p->pGroupBy = sqlite3ExprListDup(db, pEList, 0); p->selFlags |= SF_Aggregate; /* Notice that even thought SF_Distinct has been cleared from p->selFlags, ** the sDistinct.isTnct is still set. Hence, isTnct represents the ** original setting of the SF_Distinct flag, not the current setting */ assert( sDistinct.isTnct ); #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x400 ){ SELECTTRACE(0x400,pParse,p,("Transform DISTINCT into GROUP BY:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif } /* If there is an ORDER BY clause, then create an ephemeral index to ** do the sorting. But this sorting ephemeral index might end up ** being unused if the data can be extracted in pre-sorted order. ** If that is the case, then the OP_OpenEphemeral instruction will be ** changed to an OP_Noop once we figure out that the sorting index is ** not needed. The sSort.addrSortIndex variable is used to facilitate ** that change. */ if( sSort.pOrderBy ){ KeyInfo *pKeyInfo; pKeyInfo = sqlite3KeyInfoFromExprList( pParse, sSort.pOrderBy, 0, pEList->nExpr); sSort.iECursor = pParse->nTab++; sSort.addrSortIndex = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, sSort.iECursor, sSort.pOrderBy->nExpr+1+pEList->nExpr, 0, (char*)pKeyInfo, P4_KEYINFO ); }else{ sSort.addrSortIndex = -1; } /* If the output is destined for a temporary table, open that table. */ if( pDest->eDest==SRT_EphemTab ){ sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pDest->iSDParm, pEList->nExpr); } /* Set the limiter. */ iEnd = sqlite3VdbeMakeLabel(pParse); if( (p->selFlags & SF_FixedLimit)==0 ){ p->nSelectRow = 320; /* 4 billion rows */ } computeLimitRegisters(pParse, p, iEnd); if( p->iLimit==0 && sSort.addrSortIndex>=0 ){ sqlite3VdbeChangeOpcode(v, sSort.addrSortIndex, OP_SorterOpen); sSort.sortFlags |= SORTFLAG_UseSorter; } /* Open an ephemeral index to use for the distinct set. */ if( p->selFlags & SF_Distinct ){ sDistinct.tabTnct = pParse->nTab++; sDistinct.addrTnct = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, sDistinct.tabTnct, 0, 0, (char*)sqlite3KeyInfoFromExprList(pParse, p->pEList,0,0), P4_KEYINFO); sqlite3VdbeChangeP5(v, BTREE_UNORDERED); sDistinct.eTnctType = WHERE_DISTINCT_UNORDERED; }else{ sDistinct.eTnctType = WHERE_DISTINCT_NOOP; } if( !isAgg && pGroupBy==0 ){ /* No aggregate functions and no GROUP BY clause */ u16 wctrlFlags = (sDistinct.isTnct ? WHERE_WANT_DISTINCT : 0) | (p->selFlags & SF_FixedLimit); #ifndef SQLITE_OMIT_WINDOWFUNC Window *pWin = p->pWin; /* Main window object (or NULL) */ if( pWin ){ sqlite3WindowCodeInit(pParse, p); } #endif assert( WHERE_USE_LIMIT==SF_FixedLimit ); /* Begin the database scan. */ SELECTTRACE(1,pParse,p,("WhereBegin\n")); pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, sSort.pOrderBy, p->pEList, p, wctrlFlags, p->nSelectRow); if( pWInfo==0 ) goto select_end; if( sqlite3WhereOutputRowCount(pWInfo) < p->nSelectRow ){ p->nSelectRow = sqlite3WhereOutputRowCount(pWInfo); } if( sDistinct.isTnct && sqlite3WhereIsDistinct(pWInfo) ){ sDistinct.eTnctType = sqlite3WhereIsDistinct(pWInfo); } if( sSort.pOrderBy ){ sSort.nOBSat = sqlite3WhereIsOrdered(pWInfo); sSort.labelOBLopt = sqlite3WhereOrderByLimitOptLabel(pWInfo); if( sSort.nOBSat==sSort.pOrderBy->nExpr ){ sSort.pOrderBy = 0; } } SELECTTRACE(1,pParse,p,("WhereBegin returns\n")); /* If sorting index that was created by a prior OP_OpenEphemeral ** instruction ended up not being needed, then change the OP_OpenEphemeral ** into an OP_Noop. */ if( sSort.addrSortIndex>=0 && sSort.pOrderBy==0 ){ sqlite3VdbeChangeToNoop(v, sSort.addrSortIndex); } assert( p->pEList==pEList ); #ifndef SQLITE_OMIT_WINDOWFUNC if( pWin ){ int addrGosub = sqlite3VdbeMakeLabel(pParse); int iCont = sqlite3VdbeMakeLabel(pParse); int iBreak = sqlite3VdbeMakeLabel(pParse); int regGosub = ++pParse->nMem; sqlite3WindowCodeStep(pParse, p, pWInfo, regGosub, addrGosub); sqlite3VdbeAddOp2(v, OP_Goto, 0, iBreak); sqlite3VdbeResolveLabel(v, addrGosub); VdbeNoopComment((v, "inner-loop subroutine")); sSort.labelOBLopt = 0; selectInnerLoop(pParse, p, -1, &sSort, &sDistinct, pDest, iCont, iBreak); sqlite3VdbeResolveLabel(v, iCont); sqlite3VdbeAddOp1(v, OP_Return, regGosub); VdbeComment((v, "end inner-loop subroutine")); sqlite3VdbeResolveLabel(v, iBreak); }else #endif /* SQLITE_OMIT_WINDOWFUNC */ { /* Use the standard inner loop. */ selectInnerLoop(pParse, p, -1, &sSort, &sDistinct, pDest, sqlite3WhereContinueLabel(pWInfo), sqlite3WhereBreakLabel(pWInfo)); /* End the database scan loop. */ SELECTTRACE(1,pParse,p,("WhereEnd\n")); sqlite3WhereEnd(pWInfo); } }else{ /* This case when there exist aggregate functions or a GROUP BY clause ** or both */ NameContext sNC; /* Name context for processing aggregate information */ int iAMem; /* First Mem address for storing current GROUP BY */ int iBMem; /* First Mem address for previous GROUP BY */ int iUseFlag; /* Mem address holding flag indicating that at least ** one row of the input to the aggregator has been ** processed */ int iAbortFlag; /* Mem address which causes query abort if positive */ int groupBySort; /* Rows come from source in GROUP BY order */ int addrEnd; /* End of processing for this SELECT */ int sortPTab = 0; /* Pseudotable used to decode sorting results */ int sortOut = 0; /* Output register from the sorter */ int orderByGrp = 0; /* True if the GROUP BY and ORDER BY are the same */ /* Remove any and all aliases between the result set and the ** GROUP BY clause. */ if( pGroupBy ){ int k; /* Loop counter */ struct ExprList_item *pItem; /* For looping over expression in a list */ for(k=p->pEList->nExpr, pItem=p->pEList->a; k>0; k--, pItem++){ pItem->u.x.iAlias = 0; } for(k=pGroupBy->nExpr, pItem=pGroupBy->a; k>0; k--, pItem++){ pItem->u.x.iAlias = 0; } assert( 66==sqlite3LogEst(100) ); if( p->nSelectRow>66 ) p->nSelectRow = 66; /* If there is both a GROUP BY and an ORDER BY clause and they are ** identical, then it may be possible to disable the ORDER BY clause ** on the grounds that the GROUP BY will cause elements to come out ** in the correct order. It also may not - the GROUP BY might use a ** database index that causes rows to be grouped together as required ** but not actually sorted. Either way, record the fact that the ** ORDER BY and GROUP BY clauses are the same by setting the orderByGrp ** variable. */ if( sSort.pOrderBy && pGroupBy->nExpr==sSort.pOrderBy->nExpr ){ int ii; /* The GROUP BY processing doesn't care whether rows are delivered in ** ASC or DESC order - only that each group is returned contiguously. ** So set the ASC/DESC flags in the GROUP BY to match those in the ** ORDER BY to maximize the chances of rows being delivered in an ** order that makes the ORDER BY redundant. */ for(ii=0; iinExpr; ii++){ u8 sortFlags = sSort.pOrderBy->a[ii].sortFlags & KEYINFO_ORDER_DESC; pGroupBy->a[ii].sortFlags = sortFlags; } if( sqlite3ExprListCompare(pGroupBy, sSort.pOrderBy, -1)==0 ){ orderByGrp = 1; } } }else{ assert( 0==sqlite3LogEst(1) ); p->nSelectRow = 0; } /* Create a label to jump to when we want to abort the query */ addrEnd = sqlite3VdbeMakeLabel(pParse); /* Convert TK_COLUMN nodes into TK_AGG_COLUMN and make entries in ** sAggInfo for all TK_AGG_FUNCTION nodes in expressions of the ** SELECT statement. */ pAggInfo = sqlite3DbMallocZero(db, sizeof(*pAggInfo) ); if( pAggInfo ){ sqlite3ParserAddCleanup(pParse, (void(*)(sqlite3*,void*))agginfoFree, pAggInfo); testcase( pParse->earlyCleanup ); } if( db->mallocFailed ){ goto select_end; } pAggInfo->selId = p->selId; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; sNC.uNC.pAggInfo = pAggInfo; VVA_ONLY( sNC.ncFlags = NC_UAggInfo; ) pAggInfo->mnReg = pParse->nMem+1; pAggInfo->nSortingColumn = pGroupBy ? pGroupBy->nExpr : 0; pAggInfo->pGroupBy = pGroupBy; sqlite3ExprAnalyzeAggList(&sNC, pEList); sqlite3ExprAnalyzeAggList(&sNC, sSort.pOrderBy); if( pHaving ){ if( pGroupBy ){ assert( pWhere==p->pWhere ); assert( pHaving==p->pHaving ); assert( pGroupBy==p->pGroupBy ); havingToWhere(pParse, p); pWhere = p->pWhere; } sqlite3ExprAnalyzeAggregates(&sNC, pHaving); } pAggInfo->nAccumulator = pAggInfo->nColumn; if( p->pGroupBy==0 && p->pHaving==0 && pAggInfo->nFunc==1 ){ minMaxFlag = minMaxQuery(db, pAggInfo->aFunc[0].pFExpr, &pMinMaxOrderBy); }else{ minMaxFlag = WHERE_ORDERBY_NORMAL; } for(i=0; inFunc; i++){ Expr *pExpr = pAggInfo->aFunc[i].pFExpr; assert( ExprUseXList(pExpr) ); sNC.ncFlags |= NC_InAggFunc; sqlite3ExprAnalyzeAggList(&sNC, pExpr->x.pList); #ifndef SQLITE_OMIT_WINDOWFUNC assert( !IsWindowFunc(pExpr) ); if( ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3ExprAnalyzeAggregates(&sNC, pExpr->y.pWin->pFilter); } #endif sNC.ncFlags &= ~NC_InAggFunc; } pAggInfo->mxReg = pParse->nMem; if( db->mallocFailed ) goto select_end; #if SELECTTRACE_ENABLED if( sqlite3SelectTrace & 0x400 ){ int ii; SELECTTRACE(0x400,pParse,p,("After aggregate analysis %p:\n", pAggInfo)); sqlite3TreeViewSelect(0, p, 0); if( minMaxFlag ){ sqlite3DebugPrintf("MIN/MAX Optimization (0x%02x) adds:\n", minMaxFlag); sqlite3TreeViewExprList(0, pMinMaxOrderBy, 0, "ORDERBY"); } for(ii=0; iinColumn; ii++){ sqlite3DebugPrintf("agg-column[%d] iMem=%d\n", ii, pAggInfo->aCol[ii].iMem); sqlite3TreeViewExpr(0, pAggInfo->aCol[ii].pCExpr, 0); } for(ii=0; iinFunc; ii++){ sqlite3DebugPrintf("agg-func[%d]: iMem=%d\n", ii, pAggInfo->aFunc[ii].iMem); sqlite3TreeViewExpr(0, pAggInfo->aFunc[ii].pFExpr, 0); } } #endif /* Processing for aggregates with GROUP BY is very different and ** much more complex than aggregates without a GROUP BY. */ if( pGroupBy ){ KeyInfo *pKeyInfo; /* Keying information for the group by clause */ int addr1; /* A-vs-B comparision jump */ int addrOutputRow; /* Start of subroutine that outputs a result row */ int regOutputRow; /* Return address register for output subroutine */ int addrSetAbort; /* Set the abort flag and return */ int addrTopOfLoop; /* Top of the input loop */ int addrSortingIdx; /* The OP_OpenEphemeral for the sorting index */ int addrReset; /* Subroutine for resetting the accumulator */ int regReset; /* Return address register for reset subroutine */ ExprList *pDistinct = 0; u16 distFlag = 0; int eDist = WHERE_DISTINCT_NOOP; if( pAggInfo->nFunc==1 && pAggInfo->aFunc[0].iDistinct>=0 && ALWAYS(pAggInfo->aFunc[0].pFExpr!=0) && ALWAYS(ExprUseXList(pAggInfo->aFunc[0].pFExpr)) && pAggInfo->aFunc[0].pFExpr->x.pList!=0 ){ Expr *pExpr = pAggInfo->aFunc[0].pFExpr->x.pList->a[0].pExpr; pExpr = sqlite3ExprDup(db, pExpr, 0); pDistinct = sqlite3ExprListDup(db, pGroupBy, 0); pDistinct = sqlite3ExprListAppend(pParse, pDistinct, pExpr); distFlag = pDistinct ? (WHERE_WANT_DISTINCT|WHERE_AGG_DISTINCT) : 0; } /* If there is a GROUP BY clause we might need a sorting index to ** implement it. Allocate that sorting index now. If it turns out ** that we do not need it after all, the OP_SorterOpen instruction ** will be converted into a Noop. */ pAggInfo->sortingIdx = pParse->nTab++; pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pGroupBy, 0, pAggInfo->nColumn); addrSortingIdx = sqlite3VdbeAddOp4(v, OP_SorterOpen, pAggInfo->sortingIdx, pAggInfo->nSortingColumn, 0, (char*)pKeyInfo, P4_KEYINFO); /* Initialize memory locations used by GROUP BY aggregate processing */ iUseFlag = ++pParse->nMem; iAbortFlag = ++pParse->nMem; regOutputRow = ++pParse->nMem; addrOutputRow = sqlite3VdbeMakeLabel(pParse); regReset = ++pParse->nMem; addrReset = sqlite3VdbeMakeLabel(pParse); iAMem = pParse->nMem + 1; pParse->nMem += pGroupBy->nExpr; iBMem = pParse->nMem + 1; pParse->nMem += pGroupBy->nExpr; sqlite3VdbeAddOp2(v, OP_Integer, 0, iAbortFlag); VdbeComment((v, "clear abort flag")); sqlite3VdbeAddOp3(v, OP_Null, 0, iAMem, iAMem+pGroupBy->nExpr-1); /* Begin a loop that will extract all source rows in GROUP BY order. ** This might involve two separate loops with an OP_Sort in between, or ** it might be a single loop that uses an index to extract information ** in the right order to begin with. */ sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); SELECTTRACE(1,pParse,p,("WhereBegin\n")); pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pGroupBy, pDistinct, 0, (WHERE_GROUPBY|(orderByGrp ? WHERE_SORTBYGROUP : 0)|distFlag), 0 ); if( pWInfo==0 ){ sqlite3ExprListDelete(db, pDistinct); goto select_end; } eDist = sqlite3WhereIsDistinct(pWInfo); SELECTTRACE(1,pParse,p,("WhereBegin returns\n")); if( sqlite3WhereIsOrdered(pWInfo)==pGroupBy->nExpr ){ /* The optimizer is able to deliver rows in group by order so ** we do not have to sort. The OP_OpenEphemeral table will be ** cancelled later because we still need to use the pKeyInfo */ groupBySort = 0; }else{ /* Rows are coming out in undetermined order. We have to push ** each row into a sorting index, terminate the first loop, ** then loop over the sorting index in order to get the output ** in sorted order */ int regBase; int regRecord; int nCol; int nGroupBy; explainTempTable(pParse, (sDistinct.isTnct && (p->selFlags&SF_Distinct)==0) ? "DISTINCT" : "GROUP BY"); groupBySort = 1; nGroupBy = pGroupBy->nExpr; nCol = nGroupBy; j = nGroupBy; for(i=0; inColumn; i++){ if( pAggInfo->aCol[i].iSorterColumn>=j ){ nCol++; j++; } } regBase = sqlite3GetTempRange(pParse, nCol); sqlite3ExprCodeExprList(pParse, pGroupBy, regBase, 0, 0); j = nGroupBy; for(i=0; inColumn; i++){ struct AggInfo_col *pCol = &pAggInfo->aCol[i]; if( pCol->iSorterColumn>=j ){ int r1 = j + regBase; sqlite3ExprCodeGetColumnOfTable(v, pCol->pTab, pCol->iTable, pCol->iColumn, r1); j++; } } regRecord = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regRecord); sqlite3VdbeAddOp2(v, OP_SorterInsert, pAggInfo->sortingIdx, regRecord); sqlite3ReleaseTempReg(pParse, regRecord); sqlite3ReleaseTempRange(pParse, regBase, nCol); SELECTTRACE(1,pParse,p,("WhereEnd\n")); sqlite3WhereEnd(pWInfo); pAggInfo->sortingIdxPTab = sortPTab = pParse->nTab++; sortOut = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_OpenPseudo, sortPTab, sortOut, nCol); sqlite3VdbeAddOp2(v, OP_SorterSort, pAggInfo->sortingIdx, addrEnd); VdbeComment((v, "GROUP BY sort")); VdbeCoverage(v); pAggInfo->useSortingIdx = 1; } /* If the index or temporary table used by the GROUP BY sort ** will naturally deliver rows in the order required by the ORDER BY ** clause, cancel the ephemeral table open coded earlier. ** ** This is an optimization - the correct answer should result regardless. ** Use the SQLITE_GroupByOrder flag with SQLITE_TESTCTRL_OPTIMIZER to ** disable this optimization for testing purposes. */ if( orderByGrp && OptimizationEnabled(db, SQLITE_GroupByOrder) && (groupBySort || sqlite3WhereIsSorted(pWInfo)) ){ sSort.pOrderBy = 0; sqlite3VdbeChangeToNoop(v, sSort.addrSortIndex); } /* Evaluate the current GROUP BY terms and store in b0, b1, b2... ** (b0 is memory location iBMem+0, b1 is iBMem+1, and so forth) ** Then compare the current GROUP BY terms against the GROUP BY terms ** from the previous row currently stored in a0, a1, a2... */ addrTopOfLoop = sqlite3VdbeCurrentAddr(v); if( groupBySort ){ sqlite3VdbeAddOp3(v, OP_SorterData, pAggInfo->sortingIdx, sortOut, sortPTab); } for(j=0; jnExpr; j++){ if( groupBySort ){ sqlite3VdbeAddOp3(v, OP_Column, sortPTab, j, iBMem+j); }else{ pAggInfo->directMode = 1; sqlite3ExprCode(pParse, pGroupBy->a[j].pExpr, iBMem+j); } } sqlite3VdbeAddOp4(v, OP_Compare, iAMem, iBMem, pGroupBy->nExpr, (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); addr1 = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp3(v, OP_Jump, addr1+1, 0, addr1+1); VdbeCoverage(v); /* Generate code that runs whenever the GROUP BY changes. ** Changes in the GROUP BY are detected by the previous code ** block. If there were no changes, this block is skipped. ** ** This code copies current group by terms in b0,b1,b2,... ** over to a0,a1,a2. It then calls the output subroutine ** and resets the aggregate accumulator registers in preparation ** for the next GROUP BY batch. */ sqlite3ExprCodeMove(pParse, iBMem, iAMem, pGroupBy->nExpr); sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); VdbeComment((v, "output one row")); sqlite3VdbeAddOp2(v, OP_IfPos, iAbortFlag, addrEnd); VdbeCoverage(v); VdbeComment((v, "check abort flag")); sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); VdbeComment((v, "reset accumulator")); /* Update the aggregate accumulators based on the content of ** the current row */ sqlite3VdbeJumpHere(v, addr1); updateAccumulator(pParse, iUseFlag, pAggInfo, eDist); sqlite3VdbeAddOp2(v, OP_Integer, 1, iUseFlag); VdbeComment((v, "indicate data in accumulator")); /* End of the loop */ if( groupBySort ){ sqlite3VdbeAddOp2(v, OP_SorterNext, pAggInfo->sortingIdx,addrTopOfLoop); VdbeCoverage(v); }else{ SELECTTRACE(1,pParse,p,("WhereEnd\n")); sqlite3WhereEnd(pWInfo); sqlite3VdbeChangeToNoop(v, addrSortingIdx); } sqlite3ExprListDelete(db, pDistinct); /* Output the final row of result */ sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); VdbeComment((v, "output final row")); /* Jump over the subroutines */ sqlite3VdbeGoto(v, addrEnd); /* Generate a subroutine that outputs a single row of the result ** set. This subroutine first looks at the iUseFlag. If iUseFlag ** is less than or equal to zero, the subroutine is a no-op. If ** the processing calls for the query to abort, this subroutine ** increments the iAbortFlag memory location before returning in ** order to signal the caller to abort. */ addrSetAbort = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_Integer, 1, iAbortFlag); VdbeComment((v, "set abort flag")); sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); sqlite3VdbeResolveLabel(v, addrOutputRow); addrOutputRow = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_IfPos, iUseFlag, addrOutputRow+2); VdbeCoverage(v); VdbeComment((v, "Groupby result generator entry point")); sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); finalizeAggFunctions(pParse, pAggInfo); sqlite3ExprIfFalse(pParse, pHaving, addrOutputRow+1, SQLITE_JUMPIFNULL); selectInnerLoop(pParse, p, -1, &sSort, &sDistinct, pDest, addrOutputRow+1, addrSetAbort); sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); VdbeComment((v, "end groupby result generator")); /* Generate a subroutine that will reset the group-by accumulator */ sqlite3VdbeResolveLabel(v, addrReset); resetAccumulator(pParse, pAggInfo); sqlite3VdbeAddOp2(v, OP_Integer, 0, iUseFlag); VdbeComment((v, "indicate accumulator empty")); sqlite3VdbeAddOp1(v, OP_Return, regReset); if( eDist!=WHERE_DISTINCT_NOOP ){ struct AggInfo_func *pF = &pAggInfo->aFunc[0]; fixDistinctOpenEph(pParse, eDist, pF->iDistinct, pF->iDistAddr); } } /* endif pGroupBy. Begin aggregate queries without GROUP BY: */ else { Table *pTab; if( (pTab = isSimpleCount(p, pAggInfo))!=0 ){ /* If isSimpleCount() returns a pointer to a Table structure, then ** the SQL statement is of the form: ** ** SELECT count(*) FROM ** ** where the Table structure returned represents table . ** ** This statement is so common that it is optimized specially. The ** OP_Count instruction is executed either on the intkey table that ** contains the data for table or on one of its indexes. It ** is better to execute the op on an index, as indexes are almost ** always spread across less pages than their corresponding tables. */ const int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); const int iCsr = pParse->nTab++; /* Cursor to scan b-tree */ Index *pIdx; /* Iterator variable */ KeyInfo *pKeyInfo = 0; /* Keyinfo for scanned index */ Index *pBest = 0; /* Best index found so far */ Pgno iRoot = pTab->tnum; /* Root page of scanned b-tree */ sqlite3CodeVerifySchema(pParse, iDb); sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); /* Search for the index that has the lowest scan cost. ** ** (2011-04-15) Do not do a full scan of an unordered index. ** ** (2013-10-03) Do not count the entries in a partial index. ** ** In practice the KeyInfo structure will not be used. It is only ** passed to keep OP_OpenRead happy. */ if( !HasRowid(pTab) ) pBest = sqlite3PrimaryKeyIndex(pTab); if( !p->pSrc->a[0].fg.notIndexed ){ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( pIdx->bUnordered==0 && pIdx->szIdxRowszTabRow && pIdx->pPartIdxWhere==0 && (!pBest || pIdx->szIdxRowszIdxRow) ){ pBest = pIdx; } } } if( pBest ){ iRoot = pBest->tnum; pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pBest); } /* Open a read-only cursor, execute the OP_Count, close the cursor. */ sqlite3VdbeAddOp4Int(v, OP_OpenRead, iCsr, (int)iRoot, iDb, 1); if( pKeyInfo ){ sqlite3VdbeChangeP4(v, -1, (char *)pKeyInfo, P4_KEYINFO); } sqlite3VdbeAddOp2(v, OP_Count, iCsr, pAggInfo->aFunc[0].iMem); sqlite3VdbeAddOp1(v, OP_Close, iCsr); explainSimpleCount(pParse, pTab, pBest); }else{ int regAcc = 0; /* "populate accumulators" flag */ ExprList *pDistinct = 0; u16 distFlag = 0; int eDist; /* If there are accumulator registers but no min() or max() functions ** without FILTER clauses, allocate register regAcc. Register regAcc ** will contain 0 the first time the inner loop runs, and 1 thereafter. ** The code generated by updateAccumulator() uses this to ensure ** that the accumulator registers are (a) updated only once if ** there are no min() or max functions or (b) always updated for the ** first row visited by the aggregate, so that they are updated at ** least once even if the FILTER clause means the min() or max() ** function visits zero rows. */ if( pAggInfo->nAccumulator ){ for(i=0; inFunc; i++){ if( ExprHasProperty(pAggInfo->aFunc[i].pFExpr, EP_WinFunc) ){ continue; } if( pAggInfo->aFunc[i].pFunc->funcFlags&SQLITE_FUNC_NEEDCOLL ){ break; } } if( i==pAggInfo->nFunc ){ regAcc = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regAcc); } }else if( pAggInfo->nFunc==1 && pAggInfo->aFunc[0].iDistinct>=0 ){ assert( ExprUseXList(pAggInfo->aFunc[0].pFExpr) ); pDistinct = pAggInfo->aFunc[0].pFExpr->x.pList; distFlag = pDistinct ? (WHERE_WANT_DISTINCT|WHERE_AGG_DISTINCT) : 0; } /* This case runs if the aggregate has no GROUP BY clause. The ** processing is much simpler since there is only a single row ** of output. */ assert( p->pGroupBy==0 ); resetAccumulator(pParse, pAggInfo); /* If this query is a candidate for the min/max optimization, then ** minMaxFlag will have been previously set to either ** WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX and pMinMaxOrderBy will ** be an appropriate ORDER BY expression for the optimization. */ assert( minMaxFlag==WHERE_ORDERBY_NORMAL || pMinMaxOrderBy!=0 ); assert( pMinMaxOrderBy==0 || pMinMaxOrderBy->nExpr==1 ); SELECTTRACE(1,pParse,p,("WhereBegin\n")); pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pMinMaxOrderBy, pDistinct, 0, minMaxFlag|distFlag, 0); if( pWInfo==0 ){ goto select_end; } SELECTTRACE(1,pParse,p,("WhereBegin returns\n")); eDist = sqlite3WhereIsDistinct(pWInfo); updateAccumulator(pParse, regAcc, pAggInfo, eDist); if( eDist!=WHERE_DISTINCT_NOOP ){ struct AggInfo_func *pF = &pAggInfo->aFunc[0]; fixDistinctOpenEph(pParse, eDist, pF->iDistinct, pF->iDistAddr); } if( regAcc ) sqlite3VdbeAddOp2(v, OP_Integer, 1, regAcc); if( minMaxFlag ){ sqlite3WhereMinMaxOptEarlyOut(v, pWInfo); } SELECTTRACE(1,pParse,p,("WhereEnd\n")); sqlite3WhereEnd(pWInfo); finalizeAggFunctions(pParse, pAggInfo); } sSort.pOrderBy = 0; sqlite3ExprIfFalse(pParse, pHaving, addrEnd, SQLITE_JUMPIFNULL); selectInnerLoop(pParse, p, -1, 0, 0, pDest, addrEnd, addrEnd); } sqlite3VdbeResolveLabel(v, addrEnd); } /* endif aggregate query */ if( sDistinct.eTnctType==WHERE_DISTINCT_UNORDERED ){ explainTempTable(pParse, "DISTINCT"); } /* If there is an ORDER BY clause, then we need to sort the results ** and send them to the callback one by one. */ if( sSort.pOrderBy ){ explainTempTable(pParse, sSort.nOBSat>0 ? "RIGHT PART OF ORDER BY":"ORDER BY"); assert( p->pEList==pEList ); generateSortTail(pParse, p, &sSort, pEList->nExpr, pDest); } /* Jump here to skip this query */ sqlite3VdbeResolveLabel(v, iEnd); /* The SELECT has been coded. If there is an error in the Parse structure, ** set the return code to 1. Otherwise 0. */ rc = (pParse->nErr>0); /* Control jumps to here if an error is encountered above, or upon ** successful coding of the SELECT. */ select_end: assert( db->mallocFailed==0 || db->mallocFailed==1 ); assert( db->mallocFailed==0 || pParse->nErr!=0 ); sqlite3ExprListDelete(db, pMinMaxOrderBy); #ifdef SQLITE_DEBUG if( pAggInfo && !db->mallocFailed ){ for(i=0; inColumn; i++){ Expr *pExpr = pAggInfo->aCol[i].pCExpr; assert( pExpr!=0 ); assert( pExpr->pAggInfo==pAggInfo ); assert( pExpr->iAgg==i ); } for(i=0; inFunc; i++){ Expr *pExpr = pAggInfo->aFunc[i].pFExpr; assert( pExpr!=0 ); assert( pExpr->pAggInfo==pAggInfo ); assert( pExpr->iAgg==i ); } } #endif #if SELECTTRACE_ENABLED SELECTTRACE(0x1,pParse,p,("end processing\n")); if( (sqlite3SelectTrace & 0x2000)!=0 && ExplainQueryPlanParent(pParse)==0 ){ sqlite3TreeViewSelect(0, p, 0); } #endif ExplainQueryPlanPop(pParse); return rc; } /************** End of select.c **********************************************/ /************** Begin file table.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the sqlite3_get_table() and sqlite3_free_table() ** interface routines. These are just wrappers around the main ** interface routine of sqlite3_exec(). ** ** These routines are in a separate files so that they will not be linked ** if they are not used. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_GET_TABLE /* ** This structure is used to pass data from sqlite3_get_table() through ** to the callback function is uses to build the result. */ typedef struct TabResult { char **azResult; /* Accumulated output */ char *zErrMsg; /* Error message text, if an error occurs */ u32 nAlloc; /* Slots allocated for azResult[] */ u32 nRow; /* Number of rows in the result */ u32 nColumn; /* Number of columns in the result */ u32 nData; /* Slots used in azResult[]. (nRow+1)*nColumn */ int rc; /* Return code from sqlite3_exec() */ } TabResult; /* ** This routine is called once for each row in the result table. Its job ** is to fill in the TabResult structure appropriately, allocating new ** memory as necessary. */ static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ TabResult *p = (TabResult*)pArg; /* Result accumulator */ int need; /* Slots needed in p->azResult[] */ int i; /* Loop counter */ char *z; /* A single column of result */ /* Make sure there is enough space in p->azResult to hold everything ** we need to remember from this invocation of the callback. */ if( p->nRow==0 && argv!=0 ){ need = nCol*2; }else{ need = nCol; } if( p->nData + need > p->nAlloc ){ char **azNew; p->nAlloc = p->nAlloc*2 + need; azNew = sqlite3Realloc( p->azResult, sizeof(char*)*p->nAlloc ); if( azNew==0 ) goto malloc_failed; p->azResult = azNew; } /* If this is the first row, then generate an extra row containing ** the names of all columns. */ if( p->nRow==0 ){ p->nColumn = nCol; for(i=0; iazResult[p->nData++] = z; } }else if( (int)p->nColumn!=nCol ){ sqlite3_free(p->zErrMsg); p->zErrMsg = sqlite3_mprintf( "sqlite3_get_table() called with two or more incompatible queries" ); p->rc = SQLITE_ERROR; return 1; } /* Copy over the row data */ if( argv!=0 ){ for(i=0; iazResult[p->nData++] = z; } p->nRow++; } return 0; malloc_failed: p->rc = SQLITE_NOMEM_BKPT; return 1; } /* ** Query the database. But instead of invoking a callback for each row, ** malloc() for space to hold the result and return the entire results ** at the conclusion of the call. ** ** The result that is written to ***pazResult is held in memory obtained ** from malloc(). But the caller cannot free this memory directly. ** Instead, the entire table should be passed to sqlite3_free_table() when ** the calling procedure is finished using it. */ SQLITE_API int sqlite3_get_table( sqlite3 *db, /* The database on which the SQL executes */ const char *zSql, /* The SQL to be executed */ char ***pazResult, /* Write the result table here */ int *pnRow, /* Write the number of rows in the result here */ int *pnColumn, /* Write the number of columns of result here */ char **pzErrMsg /* Write error messages here */ ){ int rc; TabResult res; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || pazResult==0 ) return SQLITE_MISUSE_BKPT; #endif *pazResult = 0; if( pnColumn ) *pnColumn = 0; if( pnRow ) *pnRow = 0; if( pzErrMsg ) *pzErrMsg = 0; res.zErrMsg = 0; res.nRow = 0; res.nColumn = 0; res.nData = 1; res.nAlloc = 20; res.rc = SQLITE_OK; res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc ); if( res.azResult==0 ){ db->errCode = SQLITE_NOMEM; return SQLITE_NOMEM_BKPT; } res.azResult[0] = 0; rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg); assert( sizeof(res.azResult[0])>= sizeof(res.nData) ); res.azResult[0] = SQLITE_INT_TO_PTR(res.nData); if( (rc&0xff)==SQLITE_ABORT ){ sqlite3_free_table(&res.azResult[1]); if( res.zErrMsg ){ if( pzErrMsg ){ sqlite3_free(*pzErrMsg); *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg); } sqlite3_free(res.zErrMsg); } db->errCode = res.rc; /* Assume 32-bit assignment is atomic */ return res.rc; } sqlite3_free(res.zErrMsg); if( rc!=SQLITE_OK ){ sqlite3_free_table(&res.azResult[1]); return rc; } if( res.nAlloc>res.nData ){ char **azNew; azNew = sqlite3Realloc( res.azResult, sizeof(char*)*res.nData ); if( azNew==0 ){ sqlite3_free_table(&res.azResult[1]); db->errCode = SQLITE_NOMEM; return SQLITE_NOMEM_BKPT; } res.azResult = azNew; } *pazResult = &res.azResult[1]; if( pnColumn ) *pnColumn = res.nColumn; if( pnRow ) *pnRow = res.nRow; return rc; } /* ** This routine frees the space the sqlite3_get_table() malloced. */ SQLITE_API void sqlite3_free_table( char **azResult /* Result returned from sqlite3_get_table() */ ){ if( azResult ){ int i, n; azResult--; assert( azResult!=0 ); n = SQLITE_PTR_TO_INT(azResult[0]); for(i=1; ipNext; sqlite3ExprDelete(db, pTmp->pWhere); sqlite3ExprListDelete(db, pTmp->pExprList); sqlite3SelectDelete(db, pTmp->pSelect); sqlite3IdListDelete(db, pTmp->pIdList); sqlite3UpsertDelete(db, pTmp->pUpsert); sqlite3SrcListDelete(db, pTmp->pFrom); sqlite3DbFree(db, pTmp->zSpan); sqlite3DbFree(db, pTmp); } } /* ** Given table pTab, return a list of all the triggers attached to ** the table. The list is connected by Trigger.pNext pointers. ** ** All of the triggers on pTab that are in the same database as pTab ** are already attached to pTab->pTrigger. But there might be additional ** triggers on pTab in the TEMP schema. This routine prepends all ** TEMP triggers on pTab to the beginning of the pTab->pTrigger list ** and returns the combined list. ** ** To state it another way: This routine returns a list of all triggers ** that fire off of pTab. The list will include any TEMP triggers on ** pTab as well as the triggers lised in pTab->pTrigger. */ SQLITE_PRIVATE Trigger *sqlite3TriggerList(Parse *pParse, Table *pTab){ Schema *pTmpSchema; /* Schema of the pTab table */ Trigger *pList; /* List of triggers to return */ HashElem *p; /* Loop variable for TEMP triggers */ if( pParse->disableTriggers ){ return 0; } pTmpSchema = pParse->db->aDb[1].pSchema; p = sqliteHashFirst(&pTmpSchema->trigHash); pList = pTab->pTrigger; while( p ){ Trigger *pTrig = (Trigger *)sqliteHashData(p); if( pTrig->pTabSchema==pTab->pSchema && pTrig->table && 0==sqlite3StrICmp(pTrig->table, pTab->zName) && pTrig->pTabSchema!=pTmpSchema ){ pTrig->pNext = pList; pList = pTrig; }else if( pTrig->op==TK_RETURNING #ifndef SQLITE_OMIT_VIRTUALTABLE && pParse->db->pVtabCtx==0 #endif ){ assert( pParse->bReturning ); assert( &(pParse->u1.pReturning->retTrig) == pTrig ); pTrig->table = pTab->zName; pTrig->pTabSchema = pTab->pSchema; pTrig->pNext = pList; pList = pTrig; } p = sqliteHashNext(p); } #if 0 if( pList ){ Trigger *pX; printf("Triggers for %s:", pTab->zName); for(pX=pList; pX; pX=pX->pNext){ printf(" %s", pX->zName); } printf("\n"); fflush(stdout); } #endif return pList; } /* ** This is called by the parser when it sees a CREATE TRIGGER statement ** up to the point of the BEGIN before the trigger actions. A Trigger ** structure is generated based on the information available and stored ** in pParse->pNewTrigger. After the trigger actions have been parsed, the ** sqlite3FinishTrigger() function is called to complete the trigger ** construction process. */ SQLITE_PRIVATE void sqlite3BeginTrigger( Parse *pParse, /* The parse context of the CREATE TRIGGER statement */ Token *pName1, /* The name of the trigger */ Token *pName2, /* The name of the trigger */ int tr_tm, /* One of TK_BEFORE, TK_AFTER, TK_INSTEAD */ int op, /* One of TK_INSERT, TK_UPDATE, TK_DELETE */ IdList *pColumns, /* column list if this is an UPDATE OF trigger */ SrcList *pTableName,/* The name of the table/view the trigger applies to */ Expr *pWhen, /* WHEN clause */ int isTemp, /* True if the TEMPORARY keyword is present */ int noErr /* Suppress errors if the trigger already exists */ ){ Trigger *pTrigger = 0; /* The new trigger */ Table *pTab; /* Table that the trigger fires off of */ char *zName = 0; /* Name of the trigger */ sqlite3 *db = pParse->db; /* The database connection */ int iDb; /* The database to store the trigger in */ Token *pName; /* The unqualified db name */ DbFixer sFix; /* State vector for the DB fixer */ assert( pName1!=0 ); /* pName1->z might be NULL, but not pName1 itself */ assert( pName2!=0 ); assert( op==TK_INSERT || op==TK_UPDATE || op==TK_DELETE ); assert( op>0 && op<0xff ); if( isTemp ){ /* If TEMP was specified, then the trigger name may not be qualified. */ if( pName2->n>0 ){ sqlite3ErrorMsg(pParse, "temporary trigger may not have qualified name"); goto trigger_cleanup; } iDb = 1; pName = pName1; }else{ /* Figure out the db that the trigger will be created in */ iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); if( iDb<0 ){ goto trigger_cleanup; } } if( !pTableName || db->mallocFailed ){ goto trigger_cleanup; } /* A long-standing parser bug is that this syntax was allowed: ** ** CREATE TRIGGER attached.demo AFTER INSERT ON attached.tab .... ** ^^^^^^^^ ** ** To maintain backwards compatibility, ignore the database ** name on pTableName if we are reparsing out of the schema table */ if( db->init.busy && iDb!=1 ){ sqlite3DbFree(db, pTableName->a[0].zDatabase); pTableName->a[0].zDatabase = 0; } /* If the trigger name was unqualified, and the table is a temp table, ** then set iDb to 1 to create the trigger in the temporary database. ** If sqlite3SrcListLookup() returns 0, indicating the table does not ** exist, the error is caught by the block below. */ pTab = sqlite3SrcListLookup(pParse, pTableName); if( db->init.busy==0 && pName2->n==0 && pTab && pTab->pSchema==db->aDb[1].pSchema ){ iDb = 1; } /* Ensure the table name matches database name and that the table exists */ if( db->mallocFailed ) goto trigger_cleanup; assert( pTableName->nSrc==1 ); sqlite3FixInit(&sFix, pParse, iDb, "trigger", pName); if( sqlite3FixSrcList(&sFix, pTableName) ){ goto trigger_cleanup; } pTab = sqlite3SrcListLookup(pParse, pTableName); if( !pTab ){ /* The table does not exist. */ goto trigger_orphan_error; } if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "cannot create triggers on virtual tables"); goto trigger_orphan_error; } /* Check that the trigger name is not reserved and that no trigger of the ** specified name exists */ zName = sqlite3NameFromToken(db, pName); if( zName==0 ){ assert( db->mallocFailed ); goto trigger_cleanup; } if( sqlite3CheckObjectName(pParse, zName, "trigger", pTab->zName) ){ goto trigger_cleanup; } assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( !IN_RENAME_OBJECT ){ if( sqlite3HashFind(&(db->aDb[iDb].pSchema->trigHash),zName) ){ if( !noErr ){ sqlite3ErrorMsg(pParse, "trigger %T already exists", pName); }else{ assert( !db->init.busy ); sqlite3CodeVerifySchema(pParse, iDb); } goto trigger_cleanup; } } /* Do not create a trigger on a system table */ if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ sqlite3ErrorMsg(pParse, "cannot create trigger on system table"); goto trigger_cleanup; } /* INSTEAD of triggers are only for views and views only support INSTEAD ** of triggers. */ if( IsView(pTab) && tr_tm!=TK_INSTEAD ){ sqlite3ErrorMsg(pParse, "cannot create %s trigger on view: %S", (tr_tm == TK_BEFORE)?"BEFORE":"AFTER", pTableName->a); goto trigger_orphan_error; } if( !IsView(pTab) && tr_tm==TK_INSTEAD ){ sqlite3ErrorMsg(pParse, "cannot create INSTEAD OF" " trigger on table: %S", pTableName->a); goto trigger_orphan_error; } #ifndef SQLITE_OMIT_AUTHORIZATION if( !IN_RENAME_OBJECT ){ int iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); int code = SQLITE_CREATE_TRIGGER; const char *zDb = db->aDb[iTabDb].zDbSName; const char *zDbTrig = isTemp ? db->aDb[1].zDbSName : zDb; if( iTabDb==1 || isTemp ) code = SQLITE_CREATE_TEMP_TRIGGER; if( sqlite3AuthCheck(pParse, code, zName, pTab->zName, zDbTrig) ){ goto trigger_cleanup; } if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iTabDb),0,zDb)){ goto trigger_cleanup; } } #endif /* INSTEAD OF triggers can only appear on views and BEFORE triggers ** cannot appear on views. So we might as well translate every ** INSTEAD OF trigger into a BEFORE trigger. It simplifies code ** elsewhere. */ if (tr_tm == TK_INSTEAD){ tr_tm = TK_BEFORE; } /* Build the Trigger object */ pTrigger = (Trigger*)sqlite3DbMallocZero(db, sizeof(Trigger)); if( pTrigger==0 ) goto trigger_cleanup; pTrigger->zName = zName; zName = 0; pTrigger->table = sqlite3DbStrDup(db, pTableName->a[0].zName); pTrigger->pSchema = db->aDb[iDb].pSchema; pTrigger->pTabSchema = pTab->pSchema; pTrigger->op = (u8)op; pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, pTrigger->table, pTableName->a[0].zName); pTrigger->pWhen = pWhen; pWhen = 0; }else{ pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); } pTrigger->pColumns = pColumns; pColumns = 0; assert( pParse->pNewTrigger==0 ); pParse->pNewTrigger = pTrigger; trigger_cleanup: sqlite3DbFree(db, zName); sqlite3SrcListDelete(db, pTableName); sqlite3IdListDelete(db, pColumns); sqlite3ExprDelete(db, pWhen); if( !pParse->pNewTrigger ){ sqlite3DeleteTrigger(db, pTrigger); }else{ assert( pParse->pNewTrigger==pTrigger ); } return; trigger_orphan_error: if( db->init.iDb==1 ){ /* Ticket #3810. ** Normally, whenever a table is dropped, all associated triggers are ** dropped too. But if a TEMP trigger is created on a non-TEMP table ** and the table is dropped by a different database connection, the ** trigger is not visible to the database connection that does the ** drop so the trigger cannot be dropped. This results in an ** "orphaned trigger" - a trigger whose associated table is missing. ** ** 2020-11-05 see also https://sqlite.org/forum/forumpost/157dc791df */ db->init.orphanTrigger = 1; } goto trigger_cleanup; } /* ** This routine is called after all of the trigger actions have been parsed ** in order to complete the process of building the trigger. */ SQLITE_PRIVATE void sqlite3FinishTrigger( Parse *pParse, /* Parser context */ TriggerStep *pStepList, /* The triggered program */ Token *pAll /* Token that describes the complete CREATE TRIGGER */ ){ Trigger *pTrig = pParse->pNewTrigger; /* Trigger being finished */ char *zName; /* Name of trigger */ sqlite3 *db = pParse->db; /* The database */ DbFixer sFix; /* Fixer object */ int iDb; /* Database containing the trigger */ Token nameToken; /* Trigger name for error reporting */ pParse->pNewTrigger = 0; if( NEVER(pParse->nErr) || !pTrig ) goto triggerfinish_cleanup; zName = pTrig->zName; iDb = sqlite3SchemaToIndex(pParse->db, pTrig->pSchema); pTrig->step_list = pStepList; while( pStepList ){ pStepList->pTrig = pTrig; pStepList = pStepList->pNext; } sqlite3TokenInit(&nameToken, pTrig->zName); sqlite3FixInit(&sFix, pParse, iDb, "trigger", &nameToken); if( sqlite3FixTriggerStep(&sFix, pTrig->step_list) || sqlite3FixExpr(&sFix, pTrig->pWhen) ){ goto triggerfinish_cleanup; } #ifndef SQLITE_OMIT_ALTERTABLE if( IN_RENAME_OBJECT ){ assert( !db->init.busy ); pParse->pNewTrigger = pTrig; pTrig = 0; }else #endif /* if we are not initializing, ** build the sqlite_schema entry */ if( !db->init.busy ){ Vdbe *v; char *z; /* Make an entry in the sqlite_schema table */ v = sqlite3GetVdbe(pParse); if( v==0 ) goto triggerfinish_cleanup; sqlite3BeginWriteOperation(pParse, 0, iDb); z = sqlite3DbStrNDup(db, (char*)pAll->z, pAll->n); testcase( z==0 ); sqlite3NestedParse(pParse, "INSERT INTO %Q." LEGACY_SCHEMA_TABLE " VALUES('trigger',%Q,%Q,0,'CREATE TRIGGER %q')", db->aDb[iDb].zDbSName, zName, pTrig->table, z); sqlite3DbFree(db, z); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddParseSchemaOp(v, iDb, sqlite3MPrintf(db, "type='trigger' AND name='%q'", zName), 0); } if( db->init.busy ){ Trigger *pLink = pTrig; Hash *pHash = &db->aDb[iDb].pSchema->trigHash; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); assert( pLink!=0 ); pTrig = sqlite3HashInsert(pHash, zName, pTrig); if( pTrig ){ sqlite3OomFault(db); }else if( pLink->pSchema==pLink->pTabSchema ){ Table *pTab; pTab = sqlite3HashFind(&pLink->pTabSchema->tblHash, pLink->table); assert( pTab!=0 ); pLink->pNext = pTab->pTrigger; pTab->pTrigger = pLink; } } triggerfinish_cleanup: sqlite3DeleteTrigger(db, pTrig); assert( IN_RENAME_OBJECT || !pParse->pNewTrigger ); sqlite3DeleteTriggerStep(db, pStepList); } /* ** Duplicate a range of text from an SQL statement, then convert all ** whitespace characters into ordinary space characters. */ static char *triggerSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){ char *z = sqlite3DbSpanDup(db, zStart, zEnd); int i; if( z ) for(i=0; z[i]; i++) if( sqlite3Isspace(z[i]) ) z[i] = ' '; return z; } /* ** Turn a SELECT statement (that the pSelect parameter points to) into ** a trigger step. Return a pointer to a TriggerStep structure. ** ** The parser calls this routine when it finds a SELECT statement in ** body of a TRIGGER. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerSelectStep( sqlite3 *db, /* Database connection */ Select *pSelect, /* The SELECT statement */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ TriggerStep *pTriggerStep = sqlite3DbMallocZero(db, sizeof(TriggerStep)); if( pTriggerStep==0 ) { sqlite3SelectDelete(db, pSelect); return 0; } pTriggerStep->op = TK_SELECT; pTriggerStep->pSelect = pSelect; pTriggerStep->orconf = OE_Default; pTriggerStep->zSpan = triggerSpanDup(db, zStart, zEnd); return pTriggerStep; } /* ** Allocate space to hold a new trigger step. The allocated space ** holds both the TriggerStep object and the TriggerStep.target.z string. ** ** If an OOM error occurs, NULL is returned and db->mallocFailed is set. */ static TriggerStep *triggerStepAllocate( Parse *pParse, /* Parser context */ u8 op, /* Trigger opcode */ Token *pName, /* The target name */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; pTriggerStep = sqlite3DbMallocZero(db, sizeof(TriggerStep) + pName->n + 1); if( pTriggerStep ){ char *z = (char*)&pTriggerStep[1]; memcpy(z, pName->z, pName->n); sqlite3Dequote(z); pTriggerStep->zTarget = z; pTriggerStep->op = op; pTriggerStep->zSpan = triggerSpanDup(db, zStart, zEnd); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, pTriggerStep->zTarget, pName); } } return pTriggerStep; } /* ** Build a trigger step out of an INSERT statement. Return a pointer ** to the new trigger step. ** ** The parser calls this routine when it sees an INSERT inside the ** body of a trigger. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerInsertStep( Parse *pParse, /* Parser */ Token *pTableName, /* Name of the table into which we insert */ IdList *pColumn, /* List of columns in pTableName to insert into */ Select *pSelect, /* A SELECT statement that supplies values */ u8 orconf, /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */ Upsert *pUpsert, /* ON CONFLICT clauses for upsert */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; assert(pSelect != 0 || db->mallocFailed); pTriggerStep = triggerStepAllocate(pParse, TK_INSERT, pTableName,zStart,zEnd); if( pTriggerStep ){ if( IN_RENAME_OBJECT ){ pTriggerStep->pSelect = pSelect; pSelect = 0; }else{ pTriggerStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); } pTriggerStep->pIdList = pColumn; pTriggerStep->pUpsert = pUpsert; pTriggerStep->orconf = orconf; if( pUpsert ){ sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget); } }else{ testcase( pColumn ); sqlite3IdListDelete(db, pColumn); testcase( pUpsert ); sqlite3UpsertDelete(db, pUpsert); } sqlite3SelectDelete(db, pSelect); return pTriggerStep; } /* ** Construct a trigger step that implements an UPDATE statement and return ** a pointer to that trigger step. The parser calls this routine when it ** sees an UPDATE statement inside the body of a CREATE TRIGGER. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerUpdateStep( Parse *pParse, /* Parser */ Token *pTableName, /* Name of the table to be updated */ SrcList *pFrom, ExprList *pEList, /* The SET clause: list of column and new values */ Expr *pWhere, /* The WHERE clause */ u8 orconf, /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; pTriggerStep = triggerStepAllocate(pParse, TK_UPDATE, pTableName,zStart,zEnd); if( pTriggerStep ){ if( IN_RENAME_OBJECT ){ pTriggerStep->pExprList = pEList; pTriggerStep->pWhere = pWhere; pTriggerStep->pFrom = pFrom; pEList = 0; pWhere = 0; pFrom = 0; }else{ pTriggerStep->pExprList = sqlite3ExprListDup(db, pEList, EXPRDUP_REDUCE); pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); pTriggerStep->pFrom = sqlite3SrcListDup(db, pFrom, EXPRDUP_REDUCE); } pTriggerStep->orconf = orconf; } sqlite3ExprListDelete(db, pEList); sqlite3ExprDelete(db, pWhere); sqlite3SrcListDelete(db, pFrom); return pTriggerStep; } /* ** Construct a trigger step that implements a DELETE statement and return ** a pointer to that trigger step. The parser calls this routine when it ** sees a DELETE statement inside the body of a CREATE TRIGGER. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerDeleteStep( Parse *pParse, /* Parser */ Token *pTableName, /* The table from which rows are deleted */ Expr *pWhere, /* The WHERE clause */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; pTriggerStep = triggerStepAllocate(pParse, TK_DELETE, pTableName,zStart,zEnd); if( pTriggerStep ){ if( IN_RENAME_OBJECT ){ pTriggerStep->pWhere = pWhere; pWhere = 0; }else{ pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); } pTriggerStep->orconf = OE_Default; } sqlite3ExprDelete(db, pWhere); return pTriggerStep; } /* ** Recursively delete a Trigger structure */ SQLITE_PRIVATE void sqlite3DeleteTrigger(sqlite3 *db, Trigger *pTrigger){ if( pTrigger==0 || pTrigger->bReturning ) return; sqlite3DeleteTriggerStep(db, pTrigger->step_list); sqlite3DbFree(db, pTrigger->zName); sqlite3DbFree(db, pTrigger->table); sqlite3ExprDelete(db, pTrigger->pWhen); sqlite3IdListDelete(db, pTrigger->pColumns); sqlite3DbFree(db, pTrigger); } /* ** This function is called to drop a trigger from the database schema. ** ** This may be called directly from the parser and therefore identifies ** the trigger by name. The sqlite3DropTriggerPtr() routine does the ** same job as this routine except it takes a pointer to the trigger ** instead of the trigger name. **/ SQLITE_PRIVATE void sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr){ Trigger *pTrigger = 0; int i; const char *zDb; const char *zName; sqlite3 *db = pParse->db; if( db->mallocFailed ) goto drop_trigger_cleanup; if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto drop_trigger_cleanup; } assert( pName->nSrc==1 ); zDb = pName->a[0].zDatabase; zName = pName->a[0].zName; assert( zDb!=0 || sqlite3BtreeHoldsAllMutexes(db) ); for(i=OMIT_TEMPDB; inDb; i++){ int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ if( zDb && sqlite3DbIsNamed(db, j, zDb)==0 ) continue; assert( sqlite3SchemaMutexHeld(db, j, 0) ); pTrigger = sqlite3HashFind(&(db->aDb[j].pSchema->trigHash), zName); if( pTrigger ) break; } if( !pTrigger ){ if( !noErr ){ sqlite3ErrorMsg(pParse, "no such trigger: %S", pName->a); }else{ sqlite3CodeVerifyNamedSchema(pParse, zDb); } pParse->checkSchema = 1; goto drop_trigger_cleanup; } sqlite3DropTriggerPtr(pParse, pTrigger); drop_trigger_cleanup: sqlite3SrcListDelete(db, pName); } /* ** Return a pointer to the Table structure for the table that a trigger ** is set on. */ static Table *tableOfTrigger(Trigger *pTrigger){ return sqlite3HashFind(&pTrigger->pTabSchema->tblHash, pTrigger->table); } /* ** Drop a trigger given a pointer to that trigger. */ SQLITE_PRIVATE void sqlite3DropTriggerPtr(Parse *pParse, Trigger *pTrigger){ Table *pTable; Vdbe *v; sqlite3 *db = pParse->db; int iDb; iDb = sqlite3SchemaToIndex(pParse->db, pTrigger->pSchema); assert( iDb>=0 && iDbnDb ); pTable = tableOfTrigger(pTrigger); assert( (pTable && pTable->pSchema==pTrigger->pSchema) || iDb==1 ); #ifndef SQLITE_OMIT_AUTHORIZATION if( pTable ){ int code = SQLITE_DROP_TRIGGER; const char *zDb = db->aDb[iDb].zDbSName; const char *zTab = SCHEMA_TABLE(iDb); if( iDb==1 ) code = SQLITE_DROP_TEMP_TRIGGER; if( sqlite3AuthCheck(pParse, code, pTrigger->zName, pTable->zName, zDb) || sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){ return; } } #endif /* Generate code to destroy the database record of the trigger. */ if( (v = sqlite3GetVdbe(pParse))!=0 ){ sqlite3NestedParse(pParse, "DELETE FROM %Q." LEGACY_SCHEMA_TABLE " WHERE name=%Q AND type='trigger'", db->aDb[iDb].zDbSName, pTrigger->zName ); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddOp4(v, OP_DropTrigger, iDb, 0, 0, pTrigger->zName, 0); } } /* ** Remove a trigger from the hash tables of the sqlite* pointer. */ SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName){ Trigger *pTrigger; Hash *pHash; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pHash = &(db->aDb[iDb].pSchema->trigHash); pTrigger = sqlite3HashInsert(pHash, zName, 0); if( ALWAYS(pTrigger) ){ if( pTrigger->pSchema==pTrigger->pTabSchema ){ Table *pTab = tableOfTrigger(pTrigger); if( pTab ){ Trigger **pp; for(pp=&pTab->pTrigger; *pp; pp=&((*pp)->pNext)){ if( *pp==pTrigger ){ *pp = (*pp)->pNext; break; } } } } sqlite3DeleteTrigger(db, pTrigger); db->mDbFlags |= DBFLAG_SchemaChange; } } /* ** pEList is the SET clause of an UPDATE statement. Each entry ** in pEList is of the format =. If any of the entries ** in pEList have an which matches an identifier in pIdList, ** then return TRUE. If pIdList==NULL, then it is considered a ** wildcard that matches anything. Likewise if pEList==NULL then ** it matches anything so always return true. Return false only ** if there is no match. */ static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){ int e; if( pIdList==0 || NEVER(pEList==0) ) return 1; for(e=0; enExpr; e++){ if( sqlite3IdListIndex(pIdList, pEList->a[e].zEName)>=0 ) return 1; } return 0; } /* ** Return a list of all triggers on table pTab if there exists at least ** one trigger that must be fired when an operation of type 'op' is ** performed on the table, and, if that operation is an UPDATE, if at ** least one of the columns in pChanges is being modified. */ SQLITE_PRIVATE Trigger *sqlite3TriggersExist( Parse *pParse, /* Parse context */ Table *pTab, /* The table the contains the triggers */ int op, /* one of TK_DELETE, TK_INSERT, TK_UPDATE */ ExprList *pChanges, /* Columns that change in an UPDATE statement */ int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ ){ int mask = 0; Trigger *pList = 0; Trigger *p; pList = sqlite3TriggerList(pParse, pTab); assert( pList==0 || IsVirtual(pTab)==0 || (pList->bReturning && pList->pNext==0) ); if( pList!=0 ){ p = pList; if( (pParse->db->flags & SQLITE_EnableTrigger)==0 && pTab->pTrigger!=0 ){ /* The SQLITE_DBCONFIG_ENABLE_TRIGGER setting is off. That means that ** only TEMP triggers are allowed. Truncate the pList so that it ** includes only TEMP triggers */ if( pList==pTab->pTrigger ){ pList = 0; goto exit_triggers_exist; } while( ALWAYS(p->pNext) && p->pNext!=pTab->pTrigger ) p = p->pNext; p->pNext = 0; p = pList; } do{ if( p->op==op && checkColumnOverlap(p->pColumns, pChanges) ){ mask |= p->tr_tm; }else if( p->op==TK_RETURNING ){ /* The first time a RETURNING trigger is seen, the "op" value tells ** us what time of trigger it should be. */ assert( sqlite3IsToplevel(pParse) ); p->op = op; if( IsVirtual(pTab) ){ if( op!=TK_INSERT ){ sqlite3ErrorMsg(pParse, "%s RETURNING is not available on virtual tables", op==TK_DELETE ? "DELETE" : "UPDATE"); } p->tr_tm = TRIGGER_BEFORE; }else{ p->tr_tm = TRIGGER_AFTER; } mask |= p->tr_tm; }else if( p->bReturning && p->op==TK_INSERT && op==TK_UPDATE && sqlite3IsToplevel(pParse) ){ /* Also fire a RETURNING trigger for an UPSERT */ mask |= p->tr_tm; } p = p->pNext; }while( p ); } exit_triggers_exist: if( pMask ){ *pMask = mask; } return (mask ? pList : 0); } /* ** Convert the pStep->zTarget string into a SrcList and return a pointer ** to that SrcList. ** ** This routine adds a specific database name, if needed, to the target when ** forming the SrcList. This prevents a trigger in one database from ** referring to a target in another database. An exception is when the ** trigger is in TEMP in which case it can refer to any other database it ** wants. */ SQLITE_PRIVATE SrcList *sqlite3TriggerStepSrc( Parse *pParse, /* The parsing context */ TriggerStep *pStep /* The trigger containing the target token */ ){ sqlite3 *db = pParse->db; SrcList *pSrc; /* SrcList to be returned */ char *zName = sqlite3DbStrDup(db, pStep->zTarget); pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); assert( pSrc==0 || pSrc->nSrc==1 ); assert( zName || pSrc==0 ); if( pSrc ){ Schema *pSchema = pStep->pTrig->pSchema; pSrc->a[0].zName = zName; if( pSchema!=db->aDb[1].pSchema ){ pSrc->a[0].pSchema = pSchema; } if( pStep->pFrom ){ SrcList *pDup = sqlite3SrcListDup(db, pStep->pFrom, 0); pSrc = sqlite3SrcListAppendList(pParse, pSrc, pDup); } }else{ sqlite3DbFree(db, zName); } return pSrc; } /* ** Return true if the pExpr term from the RETURNING clause argument ** list is of the form "*". Raise an error if the terms if of the ** form "table.*". */ static int isAsteriskTerm( Parse *pParse, /* Parsing context */ Expr *pTerm /* A term in the RETURNING clause */ ){ assert( pTerm!=0 ); if( pTerm->op==TK_ASTERISK ) return 1; if( pTerm->op!=TK_DOT ) return 0; assert( pTerm->pRight!=0 ); assert( pTerm->pLeft!=0 ); if( pTerm->pRight->op!=TK_ASTERISK ) return 0; sqlite3ErrorMsg(pParse, "RETURNING may not use \"TABLE.*\" wildcards"); return 1; } /* The input list pList is the list of result set terms from a RETURNING ** clause. The table that we are returning from is pTab. ** ** This routine makes a copy of the pList, and at the same time expands ** any "*" wildcards to be the complete set of columns from pTab. */ static ExprList *sqlite3ExpandReturning( Parse *pParse, /* Parsing context */ ExprList *pList, /* The arguments to RETURNING */ Table *pTab /* The table being updated */ ){ ExprList *pNew = 0; sqlite3 *db = pParse->db; int i; for(i=0; inExpr; i++){ Expr *pOldExpr = pList->a[i].pExpr; if( NEVER(pOldExpr==0) ) continue; if( isAsteriskTerm(pParse, pOldExpr) ){ int jj; for(jj=0; jjnCol; jj++){ Expr *pNewExpr; if( IsHiddenColumn(pTab->aCol+jj) ) continue; pNewExpr = sqlite3Expr(db, TK_ID, pTab->aCol[jj].zCnName); pNew = sqlite3ExprListAppend(pParse, pNew, pNewExpr); if( !db->mallocFailed ){ struct ExprList_item *pItem = &pNew->a[pNew->nExpr-1]; pItem->zEName = sqlite3DbStrDup(db, pTab->aCol[jj].zCnName); pItem->eEName = ENAME_NAME; } } }else{ Expr *pNewExpr = sqlite3ExprDup(db, pOldExpr, 0); pNew = sqlite3ExprListAppend(pParse, pNew, pNewExpr); if( !db->mallocFailed && ALWAYS(pList->a[i].zEName!=0) ){ struct ExprList_item *pItem = &pNew->a[pNew->nExpr-1]; pItem->zEName = sqlite3DbStrDup(db, pList->a[i].zEName); pItem->eEName = pList->a[i].eEName; } } } return pNew; } /* ** Generate code for the RETURNING trigger. Unlike other triggers ** that invoke a subprogram in the bytecode, the code for RETURNING ** is generated in-line. */ static void codeReturningTrigger( Parse *pParse, /* Parse context */ Trigger *pTrigger, /* The trigger step that defines the RETURNING */ Table *pTab, /* The table to code triggers from */ int regIn /* The first in an array of registers */ ){ Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; ExprList *pNew; Returning *pReturning; Select sSelect; SrcList sFrom; assert( v!=0 ); assert( pParse->bReturning ); assert( db->pParse==pParse ); pReturning = pParse->u1.pReturning; assert( pTrigger == &(pReturning->retTrig) ); memset(&sSelect, 0, sizeof(sSelect)); memset(&sFrom, 0, sizeof(sFrom)); sSelect.pEList = sqlite3ExprListDup(db, pReturning->pReturnEL, 0); sSelect.pSrc = &sFrom; sFrom.nSrc = 1; sFrom.a[0].pTab = pTab; sFrom.a[0].iCursor = -1; sqlite3SelectPrep(pParse, &sSelect, 0); if( pParse->nErr==0 ){ assert( db->mallocFailed==0 ); sqlite3GenerateColumnNames(pParse, &sSelect); } sqlite3ExprListDelete(db, sSelect.pEList); pNew = sqlite3ExpandReturning(pParse, pReturning->pReturnEL, pTab); if( !db->mallocFailed ){ NameContext sNC; memset(&sNC, 0, sizeof(sNC)); if( pReturning->nRetCol==0 ){ pReturning->nRetCol = pNew->nExpr; pReturning->iRetCur = pParse->nTab++; } sNC.pParse = pParse; sNC.uNC.iBaseReg = regIn; sNC.ncFlags = NC_UBaseReg; pParse->eTriggerOp = pTrigger->op; pParse->pTriggerTab = pTab; if( sqlite3ResolveExprListNames(&sNC, pNew)==SQLITE_OK && ALWAYS(!db->mallocFailed) ){ int i; int nCol = pNew->nExpr; int reg = pParse->nMem+1; pParse->nMem += nCol+2; pReturning->iRetReg = reg; for(i=0; ia[i].pExpr; assert( pCol!=0 ); /* Due to !db->mallocFailed ~9 lines above */ sqlite3ExprCodeFactorable(pParse, pCol, reg+i); if( sqlite3ExprAffinity(pCol)==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, reg+i); } } sqlite3VdbeAddOp3(v, OP_MakeRecord, reg, i, reg+i); sqlite3VdbeAddOp2(v, OP_NewRowid, pReturning->iRetCur, reg+i+1); sqlite3VdbeAddOp3(v, OP_Insert, pReturning->iRetCur, reg+i, reg+i+1); } } sqlite3ExprListDelete(db, pNew); pParse->eTriggerOp = 0; pParse->pTriggerTab = 0; } /* ** Generate VDBE code for the statements inside the body of a single ** trigger. */ static int codeTriggerProgram( Parse *pParse, /* The parser context */ TriggerStep *pStepList, /* List of statements inside the trigger body */ int orconf /* Conflict algorithm. (OE_Abort, etc) */ ){ TriggerStep *pStep; Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; assert( pParse->pTriggerTab && pParse->pToplevel ); assert( pStepList ); assert( v!=0 ); for(pStep=pStepList; pStep; pStep=pStep->pNext){ /* Figure out the ON CONFLICT policy that will be used for this step ** of the trigger program. If the statement that caused this trigger ** to fire had an explicit ON CONFLICT, then use it. Otherwise, use ** the ON CONFLICT policy that was specified as part of the trigger ** step statement. Example: ** ** CREATE TRIGGER AFTER INSERT ON t1 BEGIN; ** INSERT OR REPLACE INTO t2 VALUES(new.a, new.b); ** END; ** ** INSERT INTO t1 ... ; -- insert into t2 uses REPLACE policy ** INSERT OR IGNORE INTO t1 ... ; -- insert into t2 uses IGNORE policy */ pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf; assert( pParse->okConstFactor==0 ); #ifndef SQLITE_OMIT_TRACE if( pStep->zSpan ){ sqlite3VdbeAddOp4(v, OP_Trace, 0x7fffffff, 1, 0, sqlite3MPrintf(db, "-- %s", pStep->zSpan), P4_DYNAMIC); } #endif switch( pStep->op ){ case TK_UPDATE: { sqlite3Update(pParse, sqlite3TriggerStepSrc(pParse, pStep), sqlite3ExprListDup(db, pStep->pExprList, 0), sqlite3ExprDup(db, pStep->pWhere, 0), pParse->eOrconf, 0, 0, 0 ); sqlite3VdbeAddOp0(v, OP_ResetCount); break; } case TK_INSERT: { sqlite3Insert(pParse, sqlite3TriggerStepSrc(pParse, pStep), sqlite3SelectDup(db, pStep->pSelect, 0), sqlite3IdListDup(db, pStep->pIdList), pParse->eOrconf, sqlite3UpsertDup(db, pStep->pUpsert) ); sqlite3VdbeAddOp0(v, OP_ResetCount); break; } case TK_DELETE: { sqlite3DeleteFrom(pParse, sqlite3TriggerStepSrc(pParse, pStep), sqlite3ExprDup(db, pStep->pWhere, 0), 0, 0 ); sqlite3VdbeAddOp0(v, OP_ResetCount); break; } default: assert( pStep->op==TK_SELECT ); { SelectDest sDest; Select *pSelect = sqlite3SelectDup(db, pStep->pSelect, 0); sqlite3SelectDestInit(&sDest, SRT_Discard, 0); sqlite3Select(pParse, pSelect, &sDest); sqlite3SelectDelete(db, pSelect); break; } } } return 0; } #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS /* ** This function is used to add VdbeComment() annotations to a VDBE ** program. It is not used in production code, only for debugging. */ static const char *onErrorText(int onError){ switch( onError ){ case OE_Abort: return "abort"; case OE_Rollback: return "rollback"; case OE_Fail: return "fail"; case OE_Replace: return "replace"; case OE_Ignore: return "ignore"; case OE_Default: return "default"; } return "n/a"; } #endif /* ** Parse context structure pFrom has just been used to create a sub-vdbe ** (trigger program). If an error has occurred, transfer error information ** from pFrom to pTo. */ static void transferParseError(Parse *pTo, Parse *pFrom){ assert( pFrom->zErrMsg==0 || pFrom->nErr ); assert( pTo->zErrMsg==0 || pTo->nErr ); if( pTo->nErr==0 ){ pTo->zErrMsg = pFrom->zErrMsg; pTo->nErr = pFrom->nErr; pTo->rc = pFrom->rc; }else{ sqlite3DbFree(pFrom->db, pFrom->zErrMsg); } } /* ** Create and populate a new TriggerPrg object with a sub-program ** implementing trigger pTrigger with ON CONFLICT policy orconf. */ static TriggerPrg *codeRowTrigger( Parse *pParse, /* Current parse context */ Trigger *pTrigger, /* Trigger to code */ Table *pTab, /* The table pTrigger is attached to */ int orconf /* ON CONFLICT policy to code trigger program with */ ){ Parse *pTop = sqlite3ParseToplevel(pParse); sqlite3 *db = pParse->db; /* Database handle */ TriggerPrg *pPrg; /* Value to return */ Expr *pWhen = 0; /* Duplicate of trigger WHEN expression */ Vdbe *v; /* Temporary VM */ NameContext sNC; /* Name context for sub-vdbe */ SubProgram *pProgram = 0; /* Sub-vdbe for trigger program */ int iEndTrigger = 0; /* Label to jump to if WHEN is false */ Parse sSubParse; /* Parse context for sub-vdbe */ assert( pTrigger->zName==0 || pTab==tableOfTrigger(pTrigger) ); assert( pTop->pVdbe ); /* Allocate the TriggerPrg and SubProgram objects. To ensure that they ** are freed if an error occurs, link them into the Parse.pTriggerPrg ** list of the top-level Parse object sooner rather than later. */ pPrg = sqlite3DbMallocZero(db, sizeof(TriggerPrg)); if( !pPrg ) return 0; pPrg->pNext = pTop->pTriggerPrg; pTop->pTriggerPrg = pPrg; pPrg->pProgram = pProgram = sqlite3DbMallocZero(db, sizeof(SubProgram)); if( !pProgram ) return 0; sqlite3VdbeLinkSubProgram(pTop->pVdbe, pProgram); pPrg->pTrigger = pTrigger; pPrg->orconf = orconf; pPrg->aColmask[0] = 0xffffffff; pPrg->aColmask[1] = 0xffffffff; /* Allocate and populate a new Parse context to use for coding the ** trigger sub-program. */ sqlite3ParseObjectInit(&sSubParse, db); memset(&sNC, 0, sizeof(sNC)); sNC.pParse = &sSubParse; sSubParse.pTriggerTab = pTab; sSubParse.pToplevel = pTop; sSubParse.zAuthContext = pTrigger->zName; sSubParse.eTriggerOp = pTrigger->op; sSubParse.nQueryLoop = pParse->nQueryLoop; sSubParse.disableVtab = pParse->disableVtab; v = sqlite3GetVdbe(&sSubParse); if( v ){ VdbeComment((v, "Start: %s.%s (%s %s%s%s ON %s)", pTrigger->zName, onErrorText(orconf), (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"), (pTrigger->op==TK_UPDATE ? "UPDATE" : ""), (pTrigger->op==TK_INSERT ? "INSERT" : ""), (pTrigger->op==TK_DELETE ? "DELETE" : ""), pTab->zName )); #ifndef SQLITE_OMIT_TRACE if( pTrigger->zName ){ sqlite3VdbeChangeP4(v, -1, sqlite3MPrintf(db, "-- TRIGGER %s", pTrigger->zName), P4_DYNAMIC ); } #endif /* If one was specified, code the WHEN clause. If it evaluates to false ** (or NULL) the sub-vdbe is immediately halted by jumping to the ** OP_Halt inserted at the end of the program. */ if( pTrigger->pWhen ){ pWhen = sqlite3ExprDup(db, pTrigger->pWhen, 0); if( db->mallocFailed==0 && SQLITE_OK==sqlite3ResolveExprNames(&sNC, pWhen) ){ iEndTrigger = sqlite3VdbeMakeLabel(&sSubParse); sqlite3ExprIfFalse(&sSubParse, pWhen, iEndTrigger, SQLITE_JUMPIFNULL); } sqlite3ExprDelete(db, pWhen); } /* Code the trigger program into the sub-vdbe. */ codeTriggerProgram(&sSubParse, pTrigger->step_list, orconf); /* Insert an OP_Halt at the end of the sub-program. */ if( iEndTrigger ){ sqlite3VdbeResolveLabel(v, iEndTrigger); } sqlite3VdbeAddOp0(v, OP_Halt); VdbeComment((v, "End: %s.%s", pTrigger->zName, onErrorText(orconf))); transferParseError(pParse, &sSubParse); if( pParse->nErr==0 ){ assert( db->mallocFailed==0 ); pProgram->aOp = sqlite3VdbeTakeOpArray(v, &pProgram->nOp, &pTop->nMaxArg); } pProgram->nMem = sSubParse.nMem; pProgram->nCsr = sSubParse.nTab; pProgram->token = (void *)pTrigger; pPrg->aColmask[0] = sSubParse.oldmask; pPrg->aColmask[1] = sSubParse.newmask; sqlite3VdbeDelete(v); }else{ transferParseError(pParse, &sSubParse); } assert( !sSubParse.pTriggerPrg && !sSubParse.nMaxArg ); sqlite3ParseObjectReset(&sSubParse); return pPrg; } /* ** Return a pointer to a TriggerPrg object containing the sub-program for ** trigger pTrigger with default ON CONFLICT algorithm orconf. If no such ** TriggerPrg object exists, a new object is allocated and populated before ** being returned. */ static TriggerPrg *getRowTrigger( Parse *pParse, /* Current parse context */ Trigger *pTrigger, /* Trigger to code */ Table *pTab, /* The table trigger pTrigger is attached to */ int orconf /* ON CONFLICT algorithm. */ ){ Parse *pRoot = sqlite3ParseToplevel(pParse); TriggerPrg *pPrg; assert( pTrigger->zName==0 || pTab==tableOfTrigger(pTrigger) ); /* It may be that this trigger has already been coded (or is in the ** process of being coded). If this is the case, then an entry with ** a matching TriggerPrg.pTrigger field will be present somewhere ** in the Parse.pTriggerPrg list. Search for such an entry. */ for(pPrg=pRoot->pTriggerPrg; pPrg && (pPrg->pTrigger!=pTrigger || pPrg->orconf!=orconf); pPrg=pPrg->pNext ); /* If an existing TriggerPrg could not be located, create a new one. */ if( !pPrg ){ pPrg = codeRowTrigger(pParse, pTrigger, pTab, orconf); pParse->db->errByteOffset = -1; } return pPrg; } /* ** Generate code for the trigger program associated with trigger p on ** table pTab. The reg, orconf and ignoreJump parameters passed to this ** function are the same as those described in the header function for ** sqlite3CodeRowTrigger() */ SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect( Parse *pParse, /* Parse context */ Trigger *p, /* Trigger to code */ Table *pTab, /* The table to code triggers from */ int reg, /* Reg array containing OLD.* and NEW.* values */ int orconf, /* ON CONFLICT policy */ int ignoreJump /* Instruction to jump to for RAISE(IGNORE) */ ){ Vdbe *v = sqlite3GetVdbe(pParse); /* Main VM */ TriggerPrg *pPrg; pPrg = getRowTrigger(pParse, p, pTab, orconf); assert( pPrg || pParse->nErr ); /* Code the OP_Program opcode in the parent VDBE. P4 of the OP_Program ** is a pointer to the sub-vdbe containing the trigger program. */ if( pPrg ){ int bRecursive = (p->zName && 0==(pParse->db->flags&SQLITE_RecTriggers)); sqlite3VdbeAddOp4(v, OP_Program, reg, ignoreJump, ++pParse->nMem, (const char *)pPrg->pProgram, P4_SUBPROGRAM); VdbeComment( (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf))); /* Set the P5 operand of the OP_Program instruction to non-zero if ** recursive invocation of this trigger program is disallowed. Recursive ** invocation is disallowed if (a) the sub-program is really a trigger, ** not a foreign key action, and (b) the flag to enable recursive triggers ** is clear. */ sqlite3VdbeChangeP5(v, (u8)bRecursive); } } /* ** This is called to code the required FOR EACH ROW triggers for an operation ** on table pTab. The operation to code triggers for (INSERT, UPDATE or DELETE) ** is given by the op parameter. The tr_tm parameter determines whether the ** BEFORE or AFTER triggers are coded. If the operation is an UPDATE, then ** parameter pChanges is passed the list of columns being modified. ** ** If there are no triggers that fire at the specified time for the specified ** operation on pTab, this function is a no-op. ** ** The reg argument is the address of the first in an array of registers ** that contain the values substituted for the new.* and old.* references ** in the trigger program. If N is the number of columns in table pTab ** (a copy of pTab->nCol), then registers are populated as follows: ** ** Register Contains ** ------------------------------------------------------ ** reg+0 OLD.rowid ** reg+1 OLD.* value of left-most column of pTab ** ... ... ** reg+N OLD.* value of right-most column of pTab ** reg+N+1 NEW.rowid ** reg+N+2 NEW.* value of left-most column of pTab ** ... ... ** reg+N+N+1 NEW.* value of right-most column of pTab ** ** For ON DELETE triggers, the registers containing the NEW.* values will ** never be accessed by the trigger program, so they are not allocated or ** populated by the caller (there is no data to populate them with anyway). ** Similarly, for ON INSERT triggers the values stored in the OLD.* registers ** are never accessed, and so are not allocated by the caller. So, for an ** ON INSERT trigger, the value passed to this function as parameter reg ** is not a readable register, although registers (reg+N) through ** (reg+N+N+1) are. ** ** Parameter orconf is the default conflict resolution algorithm for the ** trigger program to use (REPLACE, IGNORE etc.). Parameter ignoreJump ** is the instruction that control should jump to if a trigger program ** raises an IGNORE exception. */ SQLITE_PRIVATE void sqlite3CodeRowTrigger( Parse *pParse, /* Parse context */ Trigger *pTrigger, /* List of triggers on table pTab */ int op, /* One of TK_UPDATE, TK_INSERT, TK_DELETE */ ExprList *pChanges, /* Changes list for any UPDATE OF triggers */ int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */ Table *pTab, /* The table to code triggers from */ int reg, /* The first in an array of registers (see above) */ int orconf, /* ON CONFLICT policy */ int ignoreJump /* Instruction to jump to for RAISE(IGNORE) */ ){ Trigger *p; /* Used to iterate through pTrigger list */ assert( op==TK_UPDATE || op==TK_INSERT || op==TK_DELETE ); assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER ); assert( (op==TK_UPDATE)==(pChanges!=0) ); for(p=pTrigger; p; p=p->pNext){ /* Sanity checking: The schema for the trigger and for the table are ** always defined. The trigger must be in the same schema as the table ** or else it must be a TEMP trigger. */ assert( p->pSchema!=0 ); assert( p->pTabSchema!=0 ); assert( p->pSchema==p->pTabSchema || p->pSchema==pParse->db->aDb[1].pSchema ); /* Determine whether we should code this trigger. One of two choices: ** 1. The trigger is an exact match to the current DML statement ** 2. This is a RETURNING trigger for INSERT but we are currently ** doing the UPDATE part of an UPSERT. */ if( (p->op==op || (p->bReturning && p->op==TK_INSERT && op==TK_UPDATE)) && p->tr_tm==tr_tm && checkColumnOverlap(p->pColumns, pChanges) ){ if( !p->bReturning ){ sqlite3CodeRowTriggerDirect(pParse, p, pTab, reg, orconf, ignoreJump); }else if( sqlite3IsToplevel(pParse) ){ codeReturningTrigger(pParse, p, pTab, reg); } } } } /* ** Triggers may access values stored in the old.* or new.* pseudo-table. ** This function returns a 32-bit bitmask indicating which columns of the ** old.* or new.* tables actually are used by triggers. This information ** may be used by the caller, for example, to avoid having to load the entire ** old.* record into memory when executing an UPDATE or DELETE command. ** ** Bit 0 of the returned mask is set if the left-most column of the ** table may be accessed using an [old|new].reference. Bit 1 is set if ** the second leftmost column value is required, and so on. If there ** are more than 32 columns in the table, and at least one of the columns ** with an index greater than 32 may be accessed, 0xffffffff is returned. ** ** It is not possible to determine if the old.rowid or new.rowid column is ** accessed by triggers. The caller must always assume that it is. ** ** Parameter isNew must be either 1 or 0. If it is 0, then the mask returned ** applies to the old.* table. If 1, the new.* table. ** ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE ** and TRIGGER_AFTER bits set. Values accessed by BEFORE triggers are only ** included in the returned mask if the TRIGGER_BEFORE bit is set in the ** tr_tm parameter. Similarly, values accessed by AFTER triggers are only ** included in the returned mask if the TRIGGER_AFTER bit is set in tr_tm. */ SQLITE_PRIVATE u32 sqlite3TriggerColmask( Parse *pParse, /* Parse context */ Trigger *pTrigger, /* List of triggers on table pTab */ ExprList *pChanges, /* Changes list for any UPDATE OF triggers */ int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */ int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ Table *pTab, /* The table to code triggers from */ int orconf /* Default ON CONFLICT policy for trigger steps */ ){ const int op = pChanges ? TK_UPDATE : TK_DELETE; u32 mask = 0; Trigger *p; assert( isNew==1 || isNew==0 ); for(p=pTrigger; p; p=p->pNext){ if( p->op==op && (tr_tm&p->tr_tm) && checkColumnOverlap(p->pColumns,pChanges) ){ if( p->bReturning ){ mask = 0xffffffff; }else{ TriggerPrg *pPrg; pPrg = getRowTrigger(pParse, p, pTab, orconf); if( pPrg ){ mask |= pPrg->aColmask[isNew]; } } } } return mask; } #endif /* !defined(SQLITE_OMIT_TRIGGER) */ /************** End of trigger.c *********************************************/ /************** Begin file update.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Forward declaration */ static void updateVirtualTable( Parse *pParse, /* The parsing context */ SrcList *pSrc, /* The virtual table to be modified */ Table *pTab, /* The virtual table */ ExprList *pChanges, /* The columns to change in the UPDATE statement */ Expr *pRowidExpr, /* Expression used to recompute the rowid */ int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ Expr *pWhere, /* WHERE clause of the UPDATE statement */ int onError /* ON CONFLICT strategy */ ); #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** The most recently coded instruction was an OP_Column to retrieve the ** i-th column of table pTab. This routine sets the P4 parameter of the ** OP_Column to the default value, if any. ** ** The default value of a column is specified by a DEFAULT clause in the ** column definition. This was either supplied by the user when the table ** was created, or added later to the table definition by an ALTER TABLE ** command. If the latter, then the row-records in the table btree on disk ** may not contain a value for the column and the default value, taken ** from the P4 parameter of the OP_Column instruction, is returned instead. ** If the former, then all row-records are guaranteed to include a value ** for the column and the P4 value is not required. ** ** Column definitions created by an ALTER TABLE command may only have ** literal default values specified: a number, null or a string. (If a more ** complicated default expression value was provided, it is evaluated ** when the ALTER TABLE is executed and one of the literal values written ** into the sqlite_schema table.) ** ** Therefore, the P4 parameter is only required if the default value for ** the column is a literal number, string or null. The sqlite3ValueFromExpr() ** function is capable of transforming these types of expressions into ** sqlite3_value objects. ** ** If column as REAL affinity and the table is an ordinary b-tree table ** (not a virtual table) then the value might have been stored as an ** integer. In that case, add an OP_RealAffinity opcode to make sure ** it has been converted into REAL. */ SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ assert( pTab!=0 ); if( !IsView(pTab) ){ sqlite3_value *pValue = 0; u8 enc = ENC(sqlite3VdbeDb(v)); Column *pCol = &pTab->aCol[i]; VdbeComment((v, "%s.%s", pTab->zName, pCol->zCnName)); assert( inCol ); sqlite3ValueFromExpr(sqlite3VdbeDb(v), sqlite3ColumnExpr(pTab,pCol), enc, pCol->affinity, &pValue); if( pValue ){ sqlite3VdbeAppendP4(v, pValue, P4_MEM); } } #ifndef SQLITE_OMIT_FLOATING_POINT if( pTab->aCol[i].affinity==SQLITE_AFF_REAL && !IsVirtual(pTab) ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg); } #endif } /* ** Check to see if column iCol of index pIdx references any of the ** columns defined by aXRef and chngRowid. Return true if it does ** and false if not. This is an optimization. False-positives are a ** performance degradation, but false-negatives can result in a corrupt ** index and incorrect answers. ** ** aXRef[j] will be non-negative if column j of the original table is ** being updated. chngRowid will be true if the rowid of the table is ** being updated. */ static int indexColumnIsBeingUpdated( Index *pIdx, /* The index to check */ int iCol, /* Which column of the index to check */ int *aXRef, /* aXRef[j]>=0 if column j is being updated */ int chngRowid /* true if the rowid is being updated */ ){ i16 iIdxCol = pIdx->aiColumn[iCol]; assert( iIdxCol!=XN_ROWID ); /* Cannot index rowid */ if( iIdxCol>=0 ){ return aXRef[iIdxCol]>=0; } assert( iIdxCol==XN_EXPR ); assert( pIdx->aColExpr!=0 ); assert( pIdx->aColExpr->a[iCol].pExpr!=0 ); return sqlite3ExprReferencesUpdatedColumn(pIdx->aColExpr->a[iCol].pExpr, aXRef,chngRowid); } /* ** Check to see if index pIdx is a partial index whose conditional ** expression might change values due to an UPDATE. Return true if ** the index is subject to change and false if the index is guaranteed ** to be unchanged. This is an optimization. False-positives are a ** performance degradation, but false-negatives can result in a corrupt ** index and incorrect answers. ** ** aXRef[j] will be non-negative if column j of the original table is ** being updated. chngRowid will be true if the rowid of the table is ** being updated. */ static int indexWhereClauseMightChange( Index *pIdx, /* The index to check */ int *aXRef, /* aXRef[j]>=0 if column j is being updated */ int chngRowid /* true if the rowid is being updated */ ){ if( pIdx->pPartIdxWhere==0 ) return 0; return sqlite3ExprReferencesUpdatedColumn(pIdx->pPartIdxWhere, aXRef, chngRowid); } /* ** Allocate and return a pointer to an expression of type TK_ROW with ** Expr.iColumn set to value (iCol+1). The resolver will modify the ** expression to be a TK_COLUMN reading column iCol of the first ** table in the source-list (pSrc->a[0]). */ static Expr *exprRowColumn(Parse *pParse, int iCol){ Expr *pRet = sqlite3PExpr(pParse, TK_ROW, 0, 0); if( pRet ) pRet->iColumn = iCol+1; return pRet; } /* ** Assuming both the pLimit and pOrderBy parameters are NULL, this function ** generates VM code to run the query: ** ** SELECT , pChanges FROM pTabList WHERE pWhere ** ** and write the results to the ephemeral table already opened as cursor ** iEph. None of pChanges, pTabList or pWhere are modified or consumed by ** this function, they must be deleted by the caller. ** ** Or, if pLimit and pOrderBy are not NULL, and pTab is not a view: ** ** SELECT , pChanges FROM pTabList ** WHERE pWhere ** GROUP BY ** ORDER BY pOrderBy LIMIT pLimit ** ** If pTab is a view, the GROUP BY clause is omitted. ** ** Exactly how results are written to table iEph, and exactly what ** the in the query above are is determined by the type ** of table pTabList->a[0].pTab. ** ** If the table is a WITHOUT ROWID table, then argument pPk must be its ** PRIMARY KEY. In this case are the primary key columns ** of the table, in order. The results of the query are written to ephemeral ** table iEph as index keys, using OP_IdxInsert. ** ** If the table is actually a view, then are all columns of ** the view. The results are written to the ephemeral table iEph as records ** with automatically assigned integer keys. ** ** If the table is a virtual or ordinary intkey table, then ** is its rowid. For a virtual table, the results are written to iEph as ** records with automatically assigned integer keys For intkey tables, the ** rowid value in is used as the integer key, and the ** remaining fields make up the table record. */ static void updateFromSelect( Parse *pParse, /* Parse context */ int iEph, /* Cursor for open eph. table */ Index *pPk, /* PK if table 0 is WITHOUT ROWID */ ExprList *pChanges, /* List of expressions to return */ SrcList *pTabList, /* List of tables to select from */ Expr *pWhere, /* WHERE clause for query */ ExprList *pOrderBy, /* ORDER BY clause */ Expr *pLimit /* LIMIT clause */ ){ int i; SelectDest dest; Select *pSelect = 0; ExprList *pList = 0; ExprList *pGrp = 0; Expr *pLimit2 = 0; ExprList *pOrderBy2 = 0; sqlite3 *db = pParse->db; Table *pTab = pTabList->a[0].pTab; SrcList *pSrc; Expr *pWhere2; int eDest; #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( pOrderBy && pLimit==0 ) { sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on UPDATE"); return; } pOrderBy2 = sqlite3ExprListDup(db, pOrderBy, 0); pLimit2 = sqlite3ExprDup(db, pLimit, 0); #else UNUSED_PARAMETER(pOrderBy); UNUSED_PARAMETER(pLimit); #endif pSrc = sqlite3SrcListDup(db, pTabList, 0); pWhere2 = sqlite3ExprDup(db, pWhere, 0); assert( pTabList->nSrc>1 ); if( pSrc ){ pSrc->a[0].fg.notCte = 1; pSrc->a[0].iCursor = -1; pSrc->a[0].pTab->nTabRef--; pSrc->a[0].pTab = 0; } if( pPk ){ for(i=0; inKeyCol; i++){ Expr *pNew = exprRowColumn(pParse, pPk->aiColumn[i]); #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( pLimit ){ pGrp = sqlite3ExprListAppend(pParse, pGrp, sqlite3ExprDup(db, pNew, 0)); } #endif pList = sqlite3ExprListAppend(pParse, pList, pNew); } eDest = IsVirtual(pTab) ? SRT_Table : SRT_Upfrom; }else if( IsView(pTab) ){ for(i=0; inCol; i++){ pList = sqlite3ExprListAppend(pParse, pList, exprRowColumn(pParse, i)); } eDest = SRT_Table; }else{ eDest = IsVirtual(pTab) ? SRT_Table : SRT_Upfrom; pList = sqlite3ExprListAppend(pParse, 0, sqlite3PExpr(pParse,TK_ROW,0,0)); #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( pLimit ){ pGrp = sqlite3ExprListAppend(pParse, 0, sqlite3PExpr(pParse,TK_ROW,0,0)); } #endif } assert( pChanges!=0 || pParse->db->mallocFailed ); if( pChanges ){ for(i=0; inExpr; i++){ pList = sqlite3ExprListAppend(pParse, pList, sqlite3ExprDup(db, pChanges->a[i].pExpr, 0) ); } } pSelect = sqlite3SelectNew(pParse, pList, pSrc, pWhere2, pGrp, 0, pOrderBy2, SF_UFSrcCheck|SF_IncludeHidden, pLimit2 ); if( pSelect ) pSelect->selFlags |= SF_OrderByReqd; sqlite3SelectDestInit(&dest, eDest, iEph); dest.iSDParm2 = (pPk ? pPk->nKeyCol : -1); sqlite3Select(pParse, pSelect, &dest); sqlite3SelectDelete(db, pSelect); } /* ** Process an UPDATE statement. ** ** UPDATE OR IGNORE tbl SET a=b, c=d FROM tbl2... WHERE e<5 AND f NOT NULL; ** \_______/ \_/ \______/ \_____/ \________________/ ** onError | pChanges | pWhere ** \_______________________/ ** pTabList */ SQLITE_PRIVATE void sqlite3Update( Parse *pParse, /* The parser context */ SrcList *pTabList, /* The table in which we should change things */ ExprList *pChanges, /* Things to be changed */ Expr *pWhere, /* The WHERE clause. May be null */ int onError, /* How to handle constraint errors */ ExprList *pOrderBy, /* ORDER BY clause. May be null */ Expr *pLimit, /* LIMIT clause. May be null */ Upsert *pUpsert /* ON CONFLICT clause, or null */ ){ int i, j, k; /* Loop counters */ Table *pTab; /* The table to be updated */ int addrTop = 0; /* VDBE instruction address of the start of the loop */ WhereInfo *pWInfo = 0; /* Information about the WHERE clause */ Vdbe *v; /* The virtual database engine */ Index *pIdx; /* For looping over indices */ Index *pPk; /* The PRIMARY KEY index for WITHOUT ROWID tables */ int nIdx; /* Number of indices that need updating */ int nAllIdx; /* Total number of indexes */ int iBaseCur; /* Base cursor number */ int iDataCur; /* Cursor for the canonical data btree */ int iIdxCur; /* Cursor for the first index */ sqlite3 *db; /* The database structure */ int *aRegIdx = 0; /* Registers for to each index and the main table */ int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the ** an expression for the i-th column of the table. ** aXRef[i]==-1 if the i-th column is not changed. */ u8 *aToOpen; /* 1 for tables and indices to be opened */ u8 chngPk; /* PRIMARY KEY changed in a WITHOUT ROWID table */ u8 chngRowid; /* Rowid changed in a normal table */ u8 chngKey; /* Either chngPk or chngRowid */ Expr *pRowidExpr = 0; /* Expression defining the new record number */ int iRowidExpr = -1; /* Index of "rowid=" (or IPK) assignment in pChanges */ AuthContext sContext; /* The authorization context */ NameContext sNC; /* The name-context to resolve expressions in */ int iDb; /* Database containing the table being updated */ int eOnePass; /* ONEPASS_XXX value from where.c */ int hasFK; /* True if foreign key processing is required */ int labelBreak; /* Jump here to break out of UPDATE loop */ int labelContinue; /* Jump here to continue next step of UPDATE loop */ int flags; /* Flags for sqlite3WhereBegin() */ #ifndef SQLITE_OMIT_TRIGGER int isView; /* True when updating a view (INSTEAD OF trigger) */ Trigger *pTrigger; /* List of triggers on pTab, if required */ int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ #endif int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */ int iEph = 0; /* Ephemeral table holding all primary key values */ int nKey = 0; /* Number of elements in regKey for WITHOUT ROWID */ int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ int addrOpen = 0; /* Address of OP_OpenEphemeral */ int iPk = 0; /* First of nPk cells holding PRIMARY KEY value */ i16 nPk = 0; /* Number of components of the PRIMARY KEY */ int bReplace = 0; /* True if REPLACE conflict resolution might happen */ int bFinishSeek = 1; /* The OP_FinishSeek opcode is needed */ int nChangeFrom = 0; /* If there is a FROM, pChanges->nExpr, else 0 */ /* Register Allocations */ int regRowCount = 0; /* A count of rows changed */ int regOldRowid = 0; /* The old rowid */ int regNewRowid = 0; /* The new rowid */ int regNew = 0; /* Content of the NEW.* table in triggers */ int regOld = 0; /* Content of OLD.* table in triggers */ int regRowSet = 0; /* Rowset of rows to be updated */ int regKey = 0; /* composite PRIMARY KEY value */ memset(&sContext, 0, sizeof(sContext)); db = pParse->db; assert( db->pParse==pParse ); if( pParse->nErr ){ goto update_cleanup; } assert( db->mallocFailed==0 ); /* Locate the table which we want to update. */ pTab = sqlite3SrcListLookup(pParse, pTabList); if( pTab==0 ) goto update_cleanup; iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); /* Figure out if we have any triggers and if the table being ** updated is a view. */ #ifndef SQLITE_OMIT_TRIGGER pTrigger = sqlite3TriggersExist(pParse, pTab, TK_UPDATE, pChanges, &tmask); isView = IsView(pTab); assert( pTrigger || tmask==0 ); #else # define pTrigger 0 # define isView 0 # define tmask 0 #endif #ifdef SQLITE_OMIT_VIEW # undef isView # define isView 0 #endif /* If there was a FROM clause, set nChangeFrom to the number of expressions ** in the change-list. Otherwise, set it to 0. There cannot be a FROM ** clause if this function is being called to generate code for part of ** an UPSERT statement. */ nChangeFrom = (pTabList->nSrc>1) ? pChanges->nExpr : 0; assert( nChangeFrom==0 || pUpsert==0 ); #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( !isView && nChangeFrom==0 ){ pWhere = sqlite3LimitWhere( pParse, pTabList, pWhere, pOrderBy, pLimit, "UPDATE" ); pOrderBy = 0; pLimit = 0; } #endif if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto update_cleanup; } if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ goto update_cleanup; } /* Allocate a cursors for the main database table and for all indices. ** The index cursors might not be used, but if they are used they ** need to occur right after the database cursor. So go ahead and ** allocate enough space, just in case. */ iBaseCur = iDataCur = pParse->nTab++; iIdxCur = iDataCur+1; pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); testcase( pPk!=0 && pPk!=pTab->pIndex ); for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ if( pPk==pIdx ){ iDataCur = pParse->nTab; } pParse->nTab++; } if( pUpsert ){ /* On an UPSERT, reuse the same cursors already opened by INSERT */ iDataCur = pUpsert->iDataCur; iIdxCur = pUpsert->iIdxCur; pParse->nTab = iBaseCur; } pTabList->a[0].iCursor = iDataCur; /* Allocate space for aXRef[], aRegIdx[], and aToOpen[]. ** Initialize aXRef[] and aToOpen[] to their default values. */ aXRef = sqlite3DbMallocRawNN(db, sizeof(int) * (pTab->nCol+nIdx+1) + nIdx+2 ); if( aXRef==0 ) goto update_cleanup; aRegIdx = aXRef+pTab->nCol; aToOpen = (u8*)(aRegIdx+nIdx+1); memset(aToOpen, 1, nIdx+1); aToOpen[nIdx+1] = 0; for(i=0; inCol; i++) aXRef[i] = -1; /* Initialize the name-context */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; sNC.uNC.pUpsert = pUpsert; sNC.ncFlags = NC_UUpsert; /* Begin generating code. */ v = sqlite3GetVdbe(pParse); if( v==0 ) goto update_cleanup; /* Resolve the column names in all the expressions of the ** of the UPDATE statement. Also find the column index ** for each column to be updated in the pChanges array. For each ** column to be updated, make sure we have authorization to change ** that column. */ chngRowid = chngPk = 0; for(i=0; inExpr; i++){ u8 hCol = sqlite3StrIHash(pChanges->a[i].zEName); /* If this is an UPDATE with a FROM clause, do not resolve expressions ** here. The call to sqlite3Select() below will do that. */ if( nChangeFrom==0 && sqlite3ResolveExprNames(&sNC, pChanges->a[i].pExpr) ){ goto update_cleanup; } for(j=0; jnCol; j++){ if( pTab->aCol[j].hName==hCol && sqlite3StrICmp(pTab->aCol[j].zCnName, pChanges->a[i].zEName)==0 ){ if( j==pTab->iPKey ){ chngRowid = 1; pRowidExpr = pChanges->a[i].pExpr; iRowidExpr = i; }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ chngPk = 1; } #ifndef SQLITE_OMIT_GENERATED_COLUMNS else if( pTab->aCol[j].colFlags & COLFLAG_GENERATED ){ testcase( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ); testcase( pTab->aCol[j].colFlags & COLFLAG_STORED ); sqlite3ErrorMsg(pParse, "cannot UPDATE generated column \"%s\"", pTab->aCol[j].zCnName); goto update_cleanup; } #endif aXRef[j] = i; break; } } if( j>=pTab->nCol ){ if( pPk==0 && sqlite3IsRowid(pChanges->a[i].zEName) ){ j = -1; chngRowid = 1; pRowidExpr = pChanges->a[i].pExpr; iRowidExpr = i; }else{ sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zEName); pParse->checkSchema = 1; goto update_cleanup; } } #ifndef SQLITE_OMIT_AUTHORIZATION { int rc; rc = sqlite3AuthCheck(pParse, SQLITE_UPDATE, pTab->zName, j<0 ? "ROWID" : pTab->aCol[j].zCnName, db->aDb[iDb].zDbSName); if( rc==SQLITE_DENY ){ goto update_cleanup; }else if( rc==SQLITE_IGNORE ){ aXRef[j] = -1; } } #endif } assert( (chngRowid & chngPk)==0 ); assert( chngRowid==0 || chngRowid==1 ); assert( chngPk==0 || chngPk==1 ); chngKey = chngRowid + chngPk; #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Mark generated columns as changing if their generator expressions ** reference any changing column. The actual aXRef[] value for ** generated expressions is not used, other than to check to see that it ** is non-negative, so the value of aXRef[] for generated columns can be ** set to any non-negative number. We use 99999 so that the value is ** obvious when looking at aXRef[] in a symbolic debugger. */ if( pTab->tabFlags & TF_HasGenerated ){ int bProgress; testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); do{ bProgress = 0; for(i=0; inCol; i++){ if( aXRef[i]>=0 ) continue; if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ) continue; if( sqlite3ExprReferencesUpdatedColumn( sqlite3ColumnExpr(pTab, &pTab->aCol[i]), aXRef, chngRowid) ){ aXRef[i] = 99999; bProgress = 1; } } }while( bProgress ); } #endif /* The SET expressions are not actually used inside the WHERE loop. ** So reset the colUsed mask. Unless this is a virtual table. In that ** case, set all bits of the colUsed mask (to ensure that the virtual ** table implementation makes all columns available). */ pTabList->a[0].colUsed = IsVirtual(pTab) ? ALLBITS : 0; hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngKey); /* There is one entry in the aRegIdx[] array for each index on the table ** being updated. Fill in aRegIdx[] with a register number that will hold ** the key for accessing each index. */ if( onError==OE_Replace ) bReplace = 1; for(nAllIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nAllIdx++){ int reg; if( chngKey || hasFK>1 || pIdx==pPk || indexWhereClauseMightChange(pIdx,aXRef,chngRowid) ){ reg = ++pParse->nMem; pParse->nMem += pIdx->nColumn; }else{ reg = 0; for(i=0; inKeyCol; i++){ if( indexColumnIsBeingUpdated(pIdx, i, aXRef, chngRowid) ){ reg = ++pParse->nMem; pParse->nMem += pIdx->nColumn; if( onError==OE_Default && pIdx->onError==OE_Replace ){ bReplace = 1; } break; } } } if( reg==0 ) aToOpen[nAllIdx+1] = 0; aRegIdx[nAllIdx] = reg; } aRegIdx[nAllIdx] = ++pParse->nMem; /* Register storing the table record */ if( bReplace ){ /* If REPLACE conflict resolution might be invoked, open cursors on all ** indexes in case they are needed to delete records. */ memset(aToOpen, 1, nIdx+1); } if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); sqlite3BeginWriteOperation(pParse, pTrigger || hasFK, iDb); /* Allocate required registers. */ if( !IsVirtual(pTab) ){ /* For now, regRowSet and aRegIdx[nAllIdx] share the same register. ** If regRowSet turns out to be needed, then aRegIdx[nAllIdx] will be ** reallocated. aRegIdx[nAllIdx] is the register in which the main ** table record is written. regRowSet holds the RowSet for the ** two-pass update algorithm. */ assert( aRegIdx[nAllIdx]==pParse->nMem ); regRowSet = aRegIdx[nAllIdx]; regOldRowid = regNewRowid = ++pParse->nMem; if( chngPk || pTrigger || hasFK ){ regOld = pParse->nMem + 1; pParse->nMem += pTab->nCol; } if( chngKey || pTrigger || hasFK ){ regNewRowid = ++pParse->nMem; } regNew = pParse->nMem + 1; pParse->nMem += pTab->nCol; } /* Start the view context. */ if( isView ){ sqlite3AuthContextPush(pParse, &sContext, pTab->zName); } /* If we are trying to update a view, realize that view into ** an ephemeral table. */ #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) if( nChangeFrom==0 && isView ){ sqlite3MaterializeView(pParse, pTab, pWhere, pOrderBy, pLimit, iDataCur ); pOrderBy = 0; pLimit = 0; } #endif /* Resolve the column names in all the expressions in the ** WHERE clause. */ if( nChangeFrom==0 && sqlite3ResolveExprNames(&sNC, pWhere) ){ goto update_cleanup; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* Virtual tables must be handled separately */ if( IsVirtual(pTab) ){ updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef, pWhere, onError); goto update_cleanup; } #endif /* Jump to labelBreak to abandon further processing of this UPDATE */ labelContinue = labelBreak = sqlite3VdbeMakeLabel(pParse); /* Not an UPSERT. Normal processing. Begin by ** initialize the count of updated rows */ if( (db->flags&SQLITE_CountRows)!=0 && !pParse->pTriggerTab && !pParse->nested && !pParse->bReturning && pUpsert==0 ){ regRowCount = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); } if( nChangeFrom==0 && HasRowid(pTab) ){ sqlite3VdbeAddOp3(v, OP_Null, 0, regRowSet, regOldRowid); iEph = pParse->nTab++; addrOpen = sqlite3VdbeAddOp3(v, OP_OpenEphemeral, iEph, 0, regRowSet); }else{ assert( pPk!=0 || HasRowid(pTab) ); nPk = pPk ? pPk->nKeyCol : 0; iPk = pParse->nMem+1; pParse->nMem += nPk; pParse->nMem += nChangeFrom; regKey = ++pParse->nMem; if( pUpsert==0 ){ int nEphCol = nPk + nChangeFrom + (isView ? pTab->nCol : 0); iEph = pParse->nTab++; if( pPk ) sqlite3VdbeAddOp3(v, OP_Null, 0, iPk, iPk+nPk-1); addrOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEph, nEphCol); if( pPk ){ KeyInfo *pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pPk); if( pKeyInfo ){ pKeyInfo->nAllField = nEphCol; sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); } } if( nChangeFrom ){ updateFromSelect( pParse, iEph, pPk, pChanges, pTabList, pWhere, pOrderBy, pLimit ); #ifndef SQLITE_OMIT_SUBQUERY if( isView ) iDataCur = iEph; #endif } } } if( nChangeFrom ){ sqlite3MultiWrite(pParse); eOnePass = ONEPASS_OFF; nKey = nPk; regKey = iPk; }else{ if( pUpsert ){ /* If this is an UPSERT, then all cursors have already been opened by ** the outer INSERT and the data cursor should be pointing at the row ** that is to be updated. So bypass the code that searches for the ** row(s) to be updated. */ pWInfo = 0; eOnePass = ONEPASS_SINGLE; sqlite3ExprIfFalse(pParse, pWhere, labelBreak, SQLITE_JUMPIFNULL); bFinishSeek = 0; }else{ /* Begin the database scan. ** ** Do not consider a single-pass strategy for a multi-row update if ** there are any triggers or foreign keys to process, or rows may ** be deleted as a result of REPLACE conflict handling. Any of these ** things might disturb a cursor being used to scan through the table ** or index, causing a single-pass approach to malfunction. */ flags = WHERE_ONEPASS_DESIRED; if( !pParse->nested && !pTrigger && !hasFK && !chngKey && !bReplace ){ flags |= WHERE_ONEPASS_MULTIROW; } pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0,0,0,flags,iIdxCur); if( pWInfo==0 ) goto update_cleanup; /* A one-pass strategy that might update more than one row may not ** be used if any column of the index used for the scan is being ** updated. Otherwise, if there is an index on "b", statements like ** the following could create an infinite loop: ** ** UPDATE t1 SET b=b+1 WHERE b>? ** ** Fall back to ONEPASS_OFF if where.c has selected a ONEPASS_MULTI ** strategy that uses an index for which one or more columns are being ** updated. */ eOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); bFinishSeek = sqlite3WhereUsesDeferredSeek(pWInfo); if( eOnePass!=ONEPASS_SINGLE ){ sqlite3MultiWrite(pParse); if( eOnePass==ONEPASS_MULTI ){ int iCur = aiCurOnePass[1]; if( iCur>=0 && iCur!=iDataCur && aToOpen[iCur-iBaseCur] ){ eOnePass = ONEPASS_OFF; } assert( iCur!=iDataCur || !HasRowid(pTab) ); } } } if( HasRowid(pTab) ){ /* Read the rowid of the current row of the WHERE scan. In ONEPASS_OFF ** mode, write the rowid into the FIFO. In either of the one-pass modes, ** leave it in register regOldRowid. */ sqlite3VdbeAddOp2(v, OP_Rowid, iDataCur, regOldRowid); if( eOnePass==ONEPASS_OFF ){ aRegIdx[nAllIdx] = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_Insert, iEph, regRowSet, regOldRowid); }else{ if( ALWAYS(addrOpen) ) sqlite3VdbeChangeToNoop(v, addrOpen); } }else{ /* Read the PK of the current row into an array of registers. In ** ONEPASS_OFF mode, serialize the array into a record and store it in ** the ephemeral table. Or, in ONEPASS_SINGLE or MULTI mode, change ** the OP_OpenEphemeral instruction to a Noop (the ephemeral table ** is not required) and leave the PK fields in the array of registers. */ for(i=0; iaiColumn[i]>=0 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, pPk->aiColumn[i], iPk+i); } if( eOnePass ){ if( addrOpen ) sqlite3VdbeChangeToNoop(v, addrOpen); nKey = nPk; regKey = iPk; }else{ sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, regKey, sqlite3IndexAffinityStr(db, pPk), nPk); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iEph, regKey, iPk, nPk); } } } if( pUpsert==0 ){ if( nChangeFrom==0 && eOnePass!=ONEPASS_MULTI ){ sqlite3WhereEnd(pWInfo); } if( !isView ){ int addrOnce = 0; /* Open every index that needs updating. */ if( eOnePass!=ONEPASS_OFF ){ if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iBaseCur] = 0; if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iBaseCur] = 0; } if( eOnePass==ONEPASS_MULTI && (nIdx-(aiCurOnePass[1]>=0))>0 ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, iBaseCur, aToOpen, 0, 0); if( addrOnce ){ sqlite3VdbeJumpHereOrPopInst(v, addrOnce); } } /* Top of the update loop */ if( eOnePass!=ONEPASS_OFF ){ if( aiCurOnePass[0]!=iDataCur && aiCurOnePass[1]!=iDataCur #ifdef SQLITE_ALLOW_ROWID_IN_VIEW && !isView #endif ){ assert( pPk ); sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelBreak, regKey,nKey); VdbeCoverage(v); } if( eOnePass!=ONEPASS_SINGLE ){ labelContinue = sqlite3VdbeMakeLabel(pParse); } sqlite3VdbeAddOp2(v, OP_IsNull, pPk ? regKey : regOldRowid, labelBreak); VdbeCoverageIf(v, pPk==0); VdbeCoverageIf(v, pPk!=0); }else if( pPk || nChangeFrom ){ labelContinue = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeAddOp2(v, OP_Rewind, iEph, labelBreak); VdbeCoverage(v); addrTop = sqlite3VdbeCurrentAddr(v); if( nChangeFrom ){ if( !isView ){ if( pPk ){ for(i=0; i=0 ); if( nChangeFrom==0 ){ sqlite3ExprCode(pParse, pRowidExpr, regNewRowid); }else{ sqlite3VdbeAddOp3(v, OP_Column, iEph, iRowidExpr, regNewRowid); } sqlite3VdbeAddOp1(v, OP_MustBeInt, regNewRowid); VdbeCoverage(v); } /* Compute the old pre-UPDATE content of the row being changed, if that ** information is needed */ if( chngPk || hasFK || pTrigger ){ u32 oldmask = (hasFK ? sqlite3FkOldmask(pParse, pTab) : 0); oldmask |= sqlite3TriggerColmask(pParse, pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError ); for(i=0; inCol; i++){ u32 colFlags = pTab->aCol[i].colFlags; k = sqlite3TableColumnToStorage(pTab, i) + regOld; if( oldmask==0xffffffff || (i<32 && (oldmask & MASKBIT32(i))!=0) || (colFlags & COLFLAG_PRIMKEY)!=0 ){ testcase( oldmask!=0xffffffff && i==31 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, k); } } if( chngRowid==0 && pPk==0 ){ sqlite3VdbeAddOp2(v, OP_Copy, regOldRowid, regNewRowid); } } /* Populate the array of registers beginning at regNew with the new ** row data. This array is used to check constants, create the new ** table and index records, and as the values for any new.* references ** made by triggers. ** ** If there are one or more BEFORE triggers, then do not populate the ** registers associated with columns that are (a) not modified by ** this UPDATE statement and (b) not accessed by new.* references. The ** values for registers not modified by the UPDATE must be reloaded from ** the database after the BEFORE triggers are fired anyway (as the trigger ** may have modified them). So not loading those that are not going to ** be used eliminates some redundant opcodes. */ newmask = sqlite3TriggerColmask( pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError ); for(i=0, k=regNew; inCol; i++, k++){ if( i==pTab->iPKey ){ sqlite3VdbeAddOp2(v, OP_Null, 0, k); }else if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)!=0 ){ if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; }else{ j = aXRef[i]; if( j>=0 ){ if( nChangeFrom ){ int nOff = (isView ? pTab->nCol : nPk); assert( eOnePass==ONEPASS_OFF ); sqlite3VdbeAddOp3(v, OP_Column, iEph, nOff+j, k); }else{ sqlite3ExprCode(pParse, pChanges->a[j].pExpr, k); } }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){ /* This branch loads the value of a column that will not be changed ** into a register. This is done if there are no BEFORE triggers, or ** if there are one or more BEFORE triggers that use this value via ** a new.* reference in a trigger program. */ testcase( i==31 ); testcase( i==32 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); bFinishSeek = 0; }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, k); } } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pTab->tabFlags & TF_HasGenerated ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); sqlite3ComputeGeneratedColumns(pParse, regNew, pTab); } #endif /* Fire any BEFORE UPDATE triggers. This happens before constraints are ** verified. One could argue that this is wrong. */ if( tmask&TRIGGER_BEFORE ){ sqlite3TableAffinity(v, pTab, regNew); sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue); if( !isView ){ /* The row-trigger may have deleted the row being updated. In this ** case, jump to the next row. No updates or AFTER triggers are ** required. This behavior - what happens when the row being updated ** is deleted or renamed by a BEFORE trigger - is left undefined in the ** documentation. */ if( pPk ){ sqlite3VdbeAddOp4Int(v, OP_NotFound,iDataCur,labelContinue,regKey,nKey); VdbeCoverage(v); }else{ sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue,regOldRowid); VdbeCoverage(v); } /* After-BEFORE-trigger-reload-loop: ** If it did not delete it, the BEFORE trigger may still have modified ** some of the columns of the row being updated. Load the values for ** all columns not modified by the update statement into their registers ** in case this has happened. Only unmodified columns are reloaded. ** The values computed for modified columns use the values before the ** BEFORE trigger runs. See test case trigger1-18.0 (added 2018-04-26) ** for an example. */ for(i=0, k=regNew; inCol; i++, k++){ if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; }else if( aXRef[i]<0 && i!=pTab->iPKey ){ sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pTab->tabFlags & TF_HasGenerated ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); sqlite3ComputeGeneratedColumns(pParse, regNew, pTab); } #endif } } if( !isView ){ /* Do constraint checks. */ assert( regOldRowid>0 ); sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, regNewRowid, regOldRowid, chngKey, onError, labelContinue, &bReplace, aXRef, 0); /* If REPLACE conflict handling may have been used, or if the PK of the ** row is changing, then the GenerateConstraintChecks() above may have ** moved cursor iDataCur. Reseek it. */ if( bReplace || chngKey ){ if( pPk ){ sqlite3VdbeAddOp4Int(v, OP_NotFound,iDataCur,labelContinue,regKey,nKey); }else{ sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue,regOldRowid); } VdbeCoverageNeverTaken(v); } /* Do FK constraint checks. */ if( hasFK ){ sqlite3FkCheck(pParse, pTab, regOldRowid, 0, aXRef, chngKey); } /* Delete the index entries associated with the current record. */ sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur, aRegIdx, -1); /* We must run the OP_FinishSeek opcode to resolve a prior ** OP_DeferredSeek if there is any possibility that there have been ** no OP_Column opcodes since the OP_DeferredSeek was issued. But ** we want to avoid the OP_FinishSeek if possible, as running it ** costs CPU cycles. */ if( bFinishSeek ){ sqlite3VdbeAddOp1(v, OP_FinishSeek, iDataCur); } /* If changing the rowid value, or if there are foreign key constraints ** to process, delete the old record. Otherwise, add a noop OP_Delete ** to invoke the pre-update hook. ** ** That (regNew==regnewRowid+1) is true is also important for the ** pre-update hook. If the caller invokes preupdate_new(), the returned ** value is copied from memory cell (regNewRowid+1+iCol), where iCol ** is the column index supplied by the user. */ assert( regNew==regNewRowid+1 ); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK sqlite3VdbeAddOp3(v, OP_Delete, iDataCur, OPFLAG_ISUPDATE | ((hasFK>1 || chngKey) ? 0 : OPFLAG_ISNOOP), regNewRowid ); if( eOnePass==ONEPASS_MULTI ){ assert( hasFK==0 && chngKey==0 ); sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); } if( !pParse->nested ){ sqlite3VdbeAppendP4(v, pTab, P4_TABLE); } #else if( hasFK>1 || chngKey ){ sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, 0); } #endif if( hasFK ){ sqlite3FkCheck(pParse, pTab, 0, regNewRowid, aXRef, chngKey); } /* Insert the new index entries and the new record. */ sqlite3CompleteInsertion( pParse, pTab, iDataCur, iIdxCur, regNewRowid, aRegIdx, OPFLAG_ISUPDATE | (eOnePass==ONEPASS_MULTI ? OPFLAG_SAVEPOSITION : 0), 0, 0 ); /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to ** handle rows (possibly in other tables) that refer via a foreign key ** to the row just updated. */ if( hasFK ){ sqlite3FkActions(pParse, pTab, pChanges, regOldRowid, aXRef, chngKey); } } /* Increment the row counter */ if( regRowCount ){ sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); } sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, TRIGGER_AFTER, pTab, regOldRowid, onError, labelContinue); /* Repeat the above with the next record to be updated, until ** all record selected by the WHERE clause have been updated. */ if( eOnePass==ONEPASS_SINGLE ){ /* Nothing to do at end-of-loop for a single-pass */ }else if( eOnePass==ONEPASS_MULTI ){ sqlite3VdbeResolveLabel(v, labelContinue); sqlite3WhereEnd(pWInfo); }else{ sqlite3VdbeResolveLabel(v, labelContinue); sqlite3VdbeAddOp2(v, OP_Next, iEph, addrTop); VdbeCoverage(v); } sqlite3VdbeResolveLabel(v, labelBreak); /* Update the sqlite_sequence table by storing the content of the ** maximum rowid counter values recorded while inserting into ** autoincrement tables. */ if( pParse->nested==0 && pParse->pTriggerTab==0 && pUpsert==0 ){ sqlite3AutoincrementEnd(pParse); } /* ** Return the number of rows that were changed, if we are tracking ** that information. */ if( regRowCount ){ sqlite3CodeChangeCount(v, regRowCount, "rows updated"); } update_cleanup: sqlite3AuthContextPop(&sContext); sqlite3DbFree(db, aXRef); /* Also frees aRegIdx[] and aToOpen[] */ sqlite3SrcListDelete(db, pTabList); sqlite3ExprListDelete(db, pChanges); sqlite3ExprDelete(db, pWhere); #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) sqlite3ExprListDelete(db, pOrderBy); sqlite3ExprDelete(db, pLimit); #endif return; } /* Make sure "isView" and other macros defined above are undefined. Otherwise ** they may interfere with compilation of other functions in this file ** (or in another file, if this file becomes part of the amalgamation). */ #ifdef isView #undef isView #endif #ifdef pTrigger #undef pTrigger #endif #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Generate code for an UPDATE of a virtual table. ** ** There are two possible strategies - the default and the special ** "onepass" strategy. Onepass is only used if the virtual table ** implementation indicates that pWhere may match at most one row. ** ** The default strategy is to create an ephemeral table that contains ** for each row to be changed: ** ** (A) The original rowid of that row. ** (B) The revised rowid for the row. ** (C) The content of every column in the row. ** ** Then loop through the contents of this ephemeral table executing a ** VUpdate for each row. When finished, drop the ephemeral table. ** ** The "onepass" strategy does not use an ephemeral table. Instead, it ** stores the same values (A, B and C above) in a register array and ** makes a single invocation of VUpdate. */ static void updateVirtualTable( Parse *pParse, /* The parsing context */ SrcList *pSrc, /* The virtual table to be modified */ Table *pTab, /* The virtual table */ ExprList *pChanges, /* The columns to change in the UPDATE statement */ Expr *pRowid, /* Expression used to recompute the rowid */ int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ Expr *pWhere, /* WHERE clause of the UPDATE statement */ int onError /* ON CONFLICT strategy */ ){ Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */ int ephemTab; /* Table holding the result of the SELECT */ int i; /* Loop counter */ sqlite3 *db = pParse->db; /* Database connection */ const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); WhereInfo *pWInfo = 0; int nArg = 2 + pTab->nCol; /* Number of arguments to VUpdate */ int regArg; /* First register in VUpdate arg array */ int regRec; /* Register in which to assemble record */ int regRowid; /* Register for ephem table rowid */ int iCsr = pSrc->a[0].iCursor; /* Cursor used for virtual table scan */ int aDummy[2]; /* Unused arg for sqlite3WhereOkOnePass() */ int eOnePass; /* True to use onepass strategy */ int addr; /* Address of OP_OpenEphemeral */ /* Allocate nArg registers in which to gather the arguments for VUpdate. Then ** create and open the ephemeral table in which the records created from ** these arguments will be temporarily stored. */ assert( v ); ephemTab = pParse->nTab++; addr= sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, nArg); regArg = pParse->nMem + 1; pParse->nMem += nArg; if( pSrc->nSrc>1 ){ Index *pPk = 0; Expr *pRow; ExprList *pList; if( HasRowid(pTab) ){ if( pRowid ){ pRow = sqlite3ExprDup(db, pRowid, 0); }else{ pRow = sqlite3PExpr(pParse, TK_ROW, 0, 0); } }else{ i16 iPk; /* PRIMARY KEY column */ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); assert( pPk->nKeyCol==1 ); iPk = pPk->aiColumn[0]; if( aXRef[iPk]>=0 ){ pRow = sqlite3ExprDup(db, pChanges->a[aXRef[iPk]].pExpr, 0); }else{ pRow = exprRowColumn(pParse, iPk); } } pList = sqlite3ExprListAppend(pParse, 0, pRow); for(i=0; inCol; i++){ if( aXRef[i]>=0 ){ pList = sqlite3ExprListAppend(pParse, pList, sqlite3ExprDup(db, pChanges->a[aXRef[i]].pExpr, 0) ); }else{ pList = sqlite3ExprListAppend(pParse, pList, exprRowColumn(pParse, i)); } } updateFromSelect(pParse, ephemTab, pPk, pList, pSrc, pWhere, 0, 0); sqlite3ExprListDelete(db, pList); eOnePass = ONEPASS_OFF; }else{ regRec = ++pParse->nMem; regRowid = ++pParse->nMem; /* Start scanning the virtual table */ pWInfo = sqlite3WhereBegin( pParse, pSrc, pWhere, 0, 0, 0, WHERE_ONEPASS_DESIRED, 0 ); if( pWInfo==0 ) return; /* Populate the argument registers. */ for(i=0; inCol; i++){ assert( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ); if( aXRef[i]>=0 ){ sqlite3ExprCode(pParse, pChanges->a[aXRef[i]].pExpr, regArg+2+i); }else{ sqlite3VdbeAddOp3(v, OP_VColumn, iCsr, i, regArg+2+i); sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG);/* For sqlite3_vtab_nochange() */ } } if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_Rowid, iCsr, regArg); if( pRowid ){ sqlite3ExprCode(pParse, pRowid, regArg+1); }else{ sqlite3VdbeAddOp2(v, OP_Rowid, iCsr, regArg+1); } }else{ Index *pPk; /* PRIMARY KEY index */ i16 iPk; /* PRIMARY KEY column */ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); assert( pPk->nKeyCol==1 ); iPk = pPk->aiColumn[0]; sqlite3VdbeAddOp3(v, OP_VColumn, iCsr, iPk, regArg); sqlite3VdbeAddOp2(v, OP_SCopy, regArg+2+iPk, regArg+1); } eOnePass = sqlite3WhereOkOnePass(pWInfo, aDummy); /* There is no ONEPASS_MULTI on virtual tables */ assert( eOnePass==ONEPASS_OFF || eOnePass==ONEPASS_SINGLE ); if( eOnePass ){ /* If using the onepass strategy, no-op out the OP_OpenEphemeral coded ** above. */ sqlite3VdbeChangeToNoop(v, addr); sqlite3VdbeAddOp1(v, OP_Close, iCsr); }else{ /* Create a record from the argument register contents and insert it into ** the ephemeral table. */ sqlite3MultiWrite(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, regArg, nArg, regRec); #if defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_NULL_TRIM) /* Signal an assert() within OP_MakeRecord that it is allowed to ** accept no-change records with serial_type 10 */ sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG_MAGIC); #endif sqlite3VdbeAddOp2(v, OP_NewRowid, ephemTab, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, ephemTab, regRec, regRowid); } } if( eOnePass==ONEPASS_OFF ){ /* End the virtual table scan */ if( pSrc->nSrc==1 ){ sqlite3WhereEnd(pWInfo); } /* Begin scannning through the ephemeral table. */ addr = sqlite3VdbeAddOp1(v, OP_Rewind, ephemTab); VdbeCoverage(v); /* Extract arguments from the current row of the ephemeral table and ** invoke the VUpdate method. */ for(i=0; ipNextUpsert; sqlite3ExprListDelete(db, p->pUpsertTarget); sqlite3ExprDelete(db, p->pUpsertTargetWhere); sqlite3ExprListDelete(db, p->pUpsertSet); sqlite3ExprDelete(db, p->pUpsertWhere); sqlite3DbFree(db, p->pToFree); sqlite3DbFree(db, p); p = pNext; }while( p ); } SQLITE_PRIVATE void sqlite3UpsertDelete(sqlite3 *db, Upsert *p){ if( p ) upsertDelete(db, p); } /* ** Duplicate an Upsert object. */ SQLITE_PRIVATE Upsert *sqlite3UpsertDup(sqlite3 *db, Upsert *p){ if( p==0 ) return 0; return sqlite3UpsertNew(db, sqlite3ExprListDup(db, p->pUpsertTarget, 0), sqlite3ExprDup(db, p->pUpsertTargetWhere, 0), sqlite3ExprListDup(db, p->pUpsertSet, 0), sqlite3ExprDup(db, p->pUpsertWhere, 0), sqlite3UpsertDup(db, p->pNextUpsert) ); } /* ** Create a new Upsert object. */ SQLITE_PRIVATE Upsert *sqlite3UpsertNew( sqlite3 *db, /* Determines which memory allocator to use */ ExprList *pTarget, /* Target argument to ON CONFLICT, or NULL */ Expr *pTargetWhere, /* Optional WHERE clause on the target */ ExprList *pSet, /* UPDATE columns, or NULL for a DO NOTHING */ Expr *pWhere, /* WHERE clause for the ON CONFLICT UPDATE */ Upsert *pNext /* Next ON CONFLICT clause in the list */ ){ Upsert *pNew; pNew = sqlite3DbMallocZero(db, sizeof(Upsert)); if( pNew==0 ){ sqlite3ExprListDelete(db, pTarget); sqlite3ExprDelete(db, pTargetWhere); sqlite3ExprListDelete(db, pSet); sqlite3ExprDelete(db, pWhere); sqlite3UpsertDelete(db, pNext); return 0; }else{ pNew->pUpsertTarget = pTarget; pNew->pUpsertTargetWhere = pTargetWhere; pNew->pUpsertSet = pSet; pNew->pUpsertWhere = pWhere; pNew->isDoUpdate = pSet!=0; pNew->pNextUpsert = pNext; } return pNew; } /* ** Analyze the ON CONFLICT clause described by pUpsert. Resolve all ** symbols in the conflict-target. ** ** Return SQLITE_OK if everything works, or an error code is something ** is wrong. */ SQLITE_PRIVATE int sqlite3UpsertAnalyzeTarget( Parse *pParse, /* The parsing context */ SrcList *pTabList, /* Table into which we are inserting */ Upsert *pUpsert /* The ON CONFLICT clauses */ ){ Table *pTab; /* That table into which we are inserting */ int rc; /* Result code */ int iCursor; /* Cursor used by pTab */ Index *pIdx; /* One of the indexes of pTab */ ExprList *pTarget; /* The conflict-target clause */ Expr *pTerm; /* One term of the conflict-target clause */ NameContext sNC; /* Context for resolving symbolic names */ Expr sCol[2]; /* Index column converted into an Expr */ int nClause = 0; /* Counter of ON CONFLICT clauses */ assert( pTabList->nSrc==1 ); assert( pTabList->a[0].pTab!=0 ); assert( pUpsert!=0 ); assert( pUpsert->pUpsertTarget!=0 ); /* Resolve all symbolic names in the conflict-target clause, which ** includes both the list of columns and the optional partial-index ** WHERE clause. */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; for(; pUpsert && pUpsert->pUpsertTarget; pUpsert=pUpsert->pNextUpsert, nClause++){ rc = sqlite3ResolveExprListNames(&sNC, pUpsert->pUpsertTarget); if( rc ) return rc; rc = sqlite3ResolveExprNames(&sNC, pUpsert->pUpsertTargetWhere); if( rc ) return rc; /* Check to see if the conflict target matches the rowid. */ pTab = pTabList->a[0].pTab; pTarget = pUpsert->pUpsertTarget; iCursor = pTabList->a[0].iCursor; if( HasRowid(pTab) && pTarget->nExpr==1 && (pTerm = pTarget->a[0].pExpr)->op==TK_COLUMN && pTerm->iColumn==XN_ROWID ){ /* The conflict-target is the rowid of the primary table */ assert( pUpsert->pUpsertIdx==0 ); continue; } /* Initialize sCol[0..1] to be an expression parse tree for a ** single column of an index. The sCol[0] node will be the TK_COLLATE ** operator and sCol[1] will be the TK_COLUMN operator. Code below ** will populate the specific collation and column number values ** prior to comparing against the conflict-target expression. */ memset(sCol, 0, sizeof(sCol)); sCol[0].op = TK_COLLATE; sCol[0].pLeft = &sCol[1]; sCol[1].op = TK_COLUMN; sCol[1].iTable = pTabList->a[0].iCursor; /* Check for matches against other indexes */ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int ii, jj, nn; if( !IsUniqueIndex(pIdx) ) continue; if( pTarget->nExpr!=pIdx->nKeyCol ) continue; if( pIdx->pPartIdxWhere ){ if( pUpsert->pUpsertTargetWhere==0 ) continue; if( sqlite3ExprCompare(pParse, pUpsert->pUpsertTargetWhere, pIdx->pPartIdxWhere, iCursor)!=0 ){ continue; } } nn = pIdx->nKeyCol; for(ii=0; iiazColl[ii]; if( pIdx->aiColumn[ii]==XN_EXPR ){ assert( pIdx->aColExpr!=0 ); assert( pIdx->aColExpr->nExpr>ii ); pExpr = pIdx->aColExpr->a[ii].pExpr; if( pExpr->op!=TK_COLLATE ){ sCol[0].pLeft = pExpr; pExpr = &sCol[0]; } }else{ sCol[0].pLeft = &sCol[1]; sCol[1].iColumn = pIdx->aiColumn[ii]; pExpr = &sCol[0]; } for(jj=0; jja[jj].pExpr,pExpr,iCursor)<2 ){ break; /* Column ii of the index matches column jj of target */ } } if( jj>=nn ){ /* The target contains no match for column jj of the index */ break; } } if( iipUpsertIdx = pIdx; break; } if( pUpsert->pUpsertIdx==0 ){ char zWhich[16]; if( nClause==0 && pUpsert->pNextUpsert==0 ){ zWhich[0] = 0; }else{ sqlite3_snprintf(sizeof(zWhich),zWhich,"%r ", nClause+1); } sqlite3ErrorMsg(pParse, "%sON CONFLICT clause does not match any " "PRIMARY KEY or UNIQUE constraint", zWhich); return SQLITE_ERROR; } } return SQLITE_OK; } /* ** Return true if pUpsert is the last ON CONFLICT clause with a ** conflict target, or if pUpsert is followed by another ON CONFLICT ** clause that targets the INTEGER PRIMARY KEY. */ SQLITE_PRIVATE int sqlite3UpsertNextIsIPK(Upsert *pUpsert){ Upsert *pNext; if( NEVER(pUpsert==0) ) return 0; pNext = pUpsert->pNextUpsert; if( pNext==0 ) return 1; if( pNext->pUpsertTarget==0 ) return 1; if( pNext->pUpsertIdx==0 ) return 1; return 0; } /* ** Given the list of ON CONFLICT clauses described by pUpsert, and ** a particular index pIdx, return a pointer to the particular ON CONFLICT ** clause that applies to the index. Or, if the index is not subject to ** any ON CONFLICT clause, return NULL. */ SQLITE_PRIVATE Upsert *sqlite3UpsertOfIndex(Upsert *pUpsert, Index *pIdx){ while( pUpsert && pUpsert->pUpsertTarget!=0 && pUpsert->pUpsertIdx!=pIdx ){ pUpsert = pUpsert->pNextUpsert; } return pUpsert; } /* ** Generate bytecode that does an UPDATE as part of an upsert. ** ** If pIdx is NULL, then the UNIQUE constraint that failed was the IPK. ** In this case parameter iCur is a cursor open on the table b-tree that ** currently points to the conflicting table row. Otherwise, if pIdx ** is not NULL, then pIdx is the constraint that failed and iCur is a ** cursor points to the conflicting row. */ SQLITE_PRIVATE void sqlite3UpsertDoUpdate( Parse *pParse, /* The parsing and code-generating context */ Upsert *pUpsert, /* The ON CONFLICT clause for the upsert */ Table *pTab, /* The table being updated */ Index *pIdx, /* The UNIQUE constraint that failed */ int iCur /* Cursor for pIdx (or pTab if pIdx==NULL) */ ){ Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; SrcList *pSrc; /* FROM clause for the UPDATE */ int iDataCur; int i; Upsert *pTop = pUpsert; assert( v!=0 ); assert( pUpsert!=0 ); iDataCur = pUpsert->iDataCur; pUpsert = sqlite3UpsertOfIndex(pTop, pIdx); VdbeNoopComment((v, "Begin DO UPDATE of UPSERT")); if( pIdx && iCur!=iDataCur ){ if( HasRowid(pTab) ){ int regRowid = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_IdxRowid, iCur, regRowid); sqlite3VdbeAddOp3(v, OP_SeekRowid, iDataCur, 0, regRowid); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regRowid); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); int nPk = pPk->nKeyCol; int iPk = pParse->nMem+1; pParse->nMem += nPk; for(i=0; iaiColumn[i]>=0 ); k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[i]); sqlite3VdbeAddOp3(v, OP_Column, iCur, k, iPk+i); VdbeComment((v, "%s.%s", pIdx->zName, pTab->aCol[pPk->aiColumn[i]].zCnName)); } sqlite3VdbeVerifyAbortable(v, OE_Abort); i = sqlite3VdbeAddOp4Int(v, OP_Found, iDataCur, 0, iPk, nPk); VdbeCoverage(v); sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CORRUPT, OE_Abort, 0, "corrupt database", P4_STATIC); sqlite3MayAbort(pParse); sqlite3VdbeJumpHere(v, i); } } /* pUpsert does not own pTop->pUpsertSrc - the outer INSERT statement does. ** So we have to make a copy before passing it down into sqlite3Update() */ pSrc = sqlite3SrcListDup(db, pTop->pUpsertSrc, 0); /* excluded.* columns of type REAL need to be converted to a hard real */ for(i=0; inCol; i++){ if( pTab->aCol[i].affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, pTop->regData+i); } } sqlite3Update(pParse, pSrc, sqlite3ExprListDup(db,pUpsert->pUpsertSet,0), sqlite3ExprDup(db,pUpsert->pUpsertWhere,0), OE_Abort, 0, 0, pUpsert); VdbeNoopComment((v, "End DO UPDATE of UPSERT")); } #endif /* SQLITE_OMIT_UPSERT */ /************** End of upsert.c **********************************************/ /************** Begin file vacuum.c ******************************************/ /* ** 2003 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the VACUUM command. ** ** Most of the code in this file may be omitted by defining the ** SQLITE_OMIT_VACUUM macro. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) /* ** Execute zSql on database db. ** ** If zSql returns rows, then each row will have exactly one ** column. (This will only happen if zSql begins with "SELECT".) ** Take each row of result and call execSql() again recursively. ** ** The execSqlF() routine does the same thing, except it accepts ** a format string as its third argument */ static int execSql(sqlite3 *db, char **pzErrMsg, const char *zSql){ sqlite3_stmt *pStmt; int rc; /* printf("SQL: [%s]\n", zSql); fflush(stdout); */ rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; while( SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){ const char *zSubSql = (const char*)sqlite3_column_text(pStmt,0); assert( sqlite3_strnicmp(zSql,"SELECT",6)==0 ); /* The secondary SQL must be one of CREATE TABLE, CREATE INDEX, ** or INSERT. Historically there have been attacks that first ** corrupt the sqlite_schema.sql field with other kinds of statements ** then run VACUUM to get those statements to execute at inappropriate ** times. */ if( zSubSql && (strncmp(zSubSql,"CRE",3)==0 || strncmp(zSubSql,"INS",3)==0) ){ rc = execSql(db, pzErrMsg, zSubSql); if( rc!=SQLITE_OK ) break; } } assert( rc!=SQLITE_ROW ); if( rc==SQLITE_DONE ) rc = SQLITE_OK; if( rc ){ sqlite3SetString(pzErrMsg, db, sqlite3_errmsg(db)); } (void)sqlite3_finalize(pStmt); return rc; } static int execSqlF(sqlite3 *db, char **pzErrMsg, const char *zSql, ...){ char *z; va_list ap; int rc; va_start(ap, zSql); z = sqlite3VMPrintf(db, zSql, ap); va_end(ap); if( z==0 ) return SQLITE_NOMEM; rc = execSql(db, pzErrMsg, z); sqlite3DbFree(db, z); return rc; } /* ** The VACUUM command is used to clean up the database, ** collapse free space, etc. It is modelled after the VACUUM command ** in PostgreSQL. The VACUUM command works as follows: ** ** (1) Create a new transient database file ** (2) Copy all content from the database being vacuumed into ** the new transient database file ** (3) Copy content from the transient database back into the ** original database. ** ** The transient database requires temporary disk space approximately ** equal to the size of the original database. The copy operation of ** step (3) requires additional temporary disk space approximately equal ** to the size of the original database for the rollback journal. ** Hence, temporary disk space that is approximately 2x the size of the ** original database is required. Every page of the database is written ** approximately 3 times: Once for step (2) and twice for step (3). ** Two writes per page are required in step (3) because the original ** database content must be written into the rollback journal prior to ** overwriting the database with the vacuumed content. ** ** Only 1x temporary space and only 1x writes would be required if ** the copy of step (3) were replaced by deleting the original database ** and renaming the transient database as the original. But that will ** not work if other processes are attached to the original database. ** And a power loss in between deleting the original and renaming the ** transient would cause the database file to appear to be deleted ** following reboot. */ SQLITE_PRIVATE void sqlite3Vacuum(Parse *pParse, Token *pNm, Expr *pInto){ Vdbe *v = sqlite3GetVdbe(pParse); int iDb = 0; if( v==0 ) goto build_vacuum_end; if( pParse->nErr ) goto build_vacuum_end; if( pNm ){ #ifndef SQLITE_BUG_COMPATIBLE_20160819 /* Default behavior: Report an error if the argument to VACUUM is ** not recognized */ iDb = sqlite3TwoPartName(pParse, pNm, pNm, &pNm); if( iDb<0 ) goto build_vacuum_end; #else /* When SQLITE_BUG_COMPATIBLE_20160819 is defined, unrecognized arguments ** to VACUUM are silently ignored. This is a back-out of a bug fix that ** occurred on 2016-08-19 (https://www.sqlite.org/src/info/083f9e6270). ** The buggy behavior is required for binary compatibility with some ** legacy applications. */ iDb = sqlite3FindDb(pParse->db, pNm); if( iDb<0 ) iDb = 0; #endif } if( iDb!=1 ){ int iIntoReg = 0; if( pInto && sqlite3ResolveSelfReference(pParse,0,0,pInto,0)==0 ){ iIntoReg = ++pParse->nMem; sqlite3ExprCode(pParse, pInto, iIntoReg); } sqlite3VdbeAddOp2(v, OP_Vacuum, iDb, iIntoReg); sqlite3VdbeUsesBtree(v, iDb); } build_vacuum_end: sqlite3ExprDelete(pParse->db, pInto); return; } /* ** This routine implements the OP_Vacuum opcode of the VDBE. */ SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3RunVacuum( char **pzErrMsg, /* Write error message here */ sqlite3 *db, /* Database connection */ int iDb, /* Which attached DB to vacuum */ sqlite3_value *pOut /* Write results here, if not NULL. VACUUM INTO */ ){ int rc = SQLITE_OK; /* Return code from service routines */ Btree *pMain; /* The database being vacuumed */ Btree *pTemp; /* The temporary database we vacuum into */ u32 saved_mDbFlags; /* Saved value of db->mDbFlags */ u64 saved_flags; /* Saved value of db->flags */ i64 saved_nChange; /* Saved value of db->nChange */ i64 saved_nTotalChange; /* Saved value of db->nTotalChange */ u32 saved_openFlags; /* Saved value of db->openFlags */ u8 saved_mTrace; /* Saved trace settings */ Db *pDb = 0; /* Database to detach at end of vacuum */ int isMemDb; /* True if vacuuming a :memory: database */ int nRes; /* Bytes of reserved space at the end of each page */ int nDb; /* Number of attached databases */ const char *zDbMain; /* Schema name of database to vacuum */ const char *zOut; /* Name of output file */ if( !db->autoCommit ){ sqlite3SetString(pzErrMsg, db, "cannot VACUUM from within a transaction"); return SQLITE_ERROR; /* IMP: R-12218-18073 */ } if( db->nVdbeActive>1 ){ sqlite3SetString(pzErrMsg, db,"cannot VACUUM - SQL statements in progress"); return SQLITE_ERROR; /* IMP: R-15610-35227 */ } saved_openFlags = db->openFlags; if( pOut ){ if( sqlite3_value_type(pOut)!=SQLITE_TEXT ){ sqlite3SetString(pzErrMsg, db, "non-text filename"); return SQLITE_ERROR; } zOut = (const char*)sqlite3_value_text(pOut); db->openFlags &= ~SQLITE_OPEN_READONLY; db->openFlags |= SQLITE_OPEN_CREATE|SQLITE_OPEN_READWRITE; }else{ zOut = ""; } /* Save the current value of the database flags so that it can be ** restored before returning. Then set the writable-schema flag, and ** disable CHECK and foreign key constraints. */ saved_flags = db->flags; saved_mDbFlags = db->mDbFlags; saved_nChange = db->nChange; saved_nTotalChange = db->nTotalChange; saved_mTrace = db->mTrace; db->flags |= SQLITE_WriteSchema | SQLITE_IgnoreChecks; db->mDbFlags |= DBFLAG_PreferBuiltin | DBFLAG_Vacuum; db->flags &= ~(u64)(SQLITE_ForeignKeys | SQLITE_ReverseOrder | SQLITE_Defensive | SQLITE_CountRows); db->mTrace = 0; zDbMain = db->aDb[iDb].zDbSName; pMain = db->aDb[iDb].pBt; isMemDb = sqlite3PagerIsMemdb(sqlite3BtreePager(pMain)); /* Attach the temporary database as 'vacuum_db'. The synchronous pragma ** can be set to 'off' for this file, as it is not recovered if a crash ** occurs anyway. The integrity of the database is maintained by a ** (possibly synchronous) transaction opened on the main database before ** sqlite3BtreeCopyFile() is called. ** ** An optimisation would be to use a non-journaled pager. ** (Later:) I tried setting "PRAGMA vacuum_db.journal_mode=OFF" but ** that actually made the VACUUM run slower. Very little journalling ** actually occurs when doing a vacuum since the vacuum_db is initially ** empty. Only the journal header is written. Apparently it takes more ** time to parse and run the PRAGMA to turn journalling off than it does ** to write the journal header file. */ nDb = db->nDb; rc = execSqlF(db, pzErrMsg, "ATTACH %Q AS vacuum_db", zOut); db->openFlags = saved_openFlags; if( rc!=SQLITE_OK ) goto end_of_vacuum; assert( (db->nDb-1)==nDb ); pDb = &db->aDb[nDb]; assert( strcmp(pDb->zDbSName,"vacuum_db")==0 ); pTemp = pDb->pBt; if( pOut ){ sqlite3_file *id = sqlite3PagerFile(sqlite3BtreePager(pTemp)); i64 sz = 0; if( id->pMethods!=0 && (sqlite3OsFileSize(id, &sz)!=SQLITE_OK || sz>0) ){ rc = SQLITE_ERROR; sqlite3SetString(pzErrMsg, db, "output file already exists"); goto end_of_vacuum; } db->mDbFlags |= DBFLAG_VacuumInto; } nRes = sqlite3BtreeGetRequestedReserve(pMain); sqlite3BtreeSetCacheSize(pTemp, db->aDb[iDb].pSchema->cache_size); sqlite3BtreeSetSpillSize(pTemp, sqlite3BtreeSetSpillSize(pMain,0)); sqlite3BtreeSetPagerFlags(pTemp, PAGER_SYNCHRONOUS_OFF|PAGER_CACHESPILL); /* Begin a transaction and take an exclusive lock on the main database ** file. This is done before the sqlite3BtreeGetPageSize(pMain) call below, ** to ensure that we do not try to change the page-size on a WAL database. */ rc = execSql(db, pzErrMsg, "BEGIN"); if( rc!=SQLITE_OK ) goto end_of_vacuum; rc = sqlite3BtreeBeginTrans(pMain, pOut==0 ? 2 : 0, 0); if( rc!=SQLITE_OK ) goto end_of_vacuum; /* Do not attempt to change the page size for a WAL database */ if( sqlite3PagerGetJournalMode(sqlite3BtreePager(pMain)) ==PAGER_JOURNALMODE_WAL && pOut==0 ){ db->nextPagesize = 0; } if( sqlite3BtreeSetPageSize(pTemp, sqlite3BtreeGetPageSize(pMain), nRes, 0) || (!isMemDb && sqlite3BtreeSetPageSize(pTemp, db->nextPagesize, nRes, 0)) || NEVER(db->mallocFailed) ){ rc = SQLITE_NOMEM_BKPT; goto end_of_vacuum; } #ifndef SQLITE_OMIT_AUTOVACUUM sqlite3BtreeSetAutoVacuum(pTemp, db->nextAutovac>=0 ? db->nextAutovac : sqlite3BtreeGetAutoVacuum(pMain)); #endif /* Query the schema of the main database. Create a mirror schema ** in the temporary database. */ db->init.iDb = nDb; /* force new CREATE statements into vacuum_db */ rc = execSqlF(db, pzErrMsg, "SELECT sql FROM \"%w\".sqlite_schema" " WHERE type='table'AND name<>'sqlite_sequence'" " AND coalesce(rootpage,1)>0", zDbMain ); if( rc!=SQLITE_OK ) goto end_of_vacuum; rc = execSqlF(db, pzErrMsg, "SELECT sql FROM \"%w\".sqlite_schema" " WHERE type='index'", zDbMain ); if( rc!=SQLITE_OK ) goto end_of_vacuum; db->init.iDb = 0; /* Loop through the tables in the main database. For each, do ** an "INSERT INTO vacuum_db.xxx SELECT * FROM main.xxx;" to copy ** the contents to the temporary database. */ rc = execSqlF(db, pzErrMsg, "SELECT'INSERT INTO vacuum_db.'||quote(name)" "||' SELECT*FROM\"%w\".'||quote(name)" "FROM vacuum_db.sqlite_schema " "WHERE type='table'AND coalesce(rootpage,1)>0", zDbMain ); assert( (db->mDbFlags & DBFLAG_Vacuum)!=0 ); db->mDbFlags &= ~DBFLAG_Vacuum; if( rc!=SQLITE_OK ) goto end_of_vacuum; /* Copy the triggers, views, and virtual tables from the main database ** over to the temporary database. None of these objects has any ** associated storage, so all we have to do is copy their entries ** from the schema table. */ rc = execSqlF(db, pzErrMsg, "INSERT INTO vacuum_db.sqlite_schema" " SELECT*FROM \"%w\".sqlite_schema" " WHERE type IN('view','trigger')" " OR(type='table'AND rootpage=0)", zDbMain ); if( rc ) goto end_of_vacuum; /* At this point, there is a write transaction open on both the ** vacuum database and the main database. Assuming no error occurs, ** both transactions are closed by this block - the main database ** transaction by sqlite3BtreeCopyFile() and the other by an explicit ** call to sqlite3BtreeCommit(). */ { u32 meta; int i; /* This array determines which meta meta values are preserved in the ** vacuum. Even entries are the meta value number and odd entries ** are an increment to apply to the meta value after the vacuum. ** The increment is used to increase the schema cookie so that other ** connections to the same database will know to reread the schema. */ static const unsigned char aCopy[] = { BTREE_SCHEMA_VERSION, 1, /* Add one to the old schema cookie */ BTREE_DEFAULT_CACHE_SIZE, 0, /* Preserve the default page cache size */ BTREE_TEXT_ENCODING, 0, /* Preserve the text encoding */ BTREE_USER_VERSION, 0, /* Preserve the user version */ BTREE_APPLICATION_ID, 0, /* Preserve the application id */ }; assert( SQLITE_TXN_WRITE==sqlite3BtreeTxnState(pTemp) ); assert( pOut!=0 || SQLITE_TXN_WRITE==sqlite3BtreeTxnState(pMain) ); /* Copy Btree meta values */ for(i=0; iflags */ db->init.iDb = 0; db->mDbFlags = saved_mDbFlags; db->flags = saved_flags; db->nChange = saved_nChange; db->nTotalChange = saved_nTotalChange; db->mTrace = saved_mTrace; sqlite3BtreeSetPageSize(pMain, -1, 0, 1); /* Currently there is an SQL level transaction open on the vacuum ** database. No locks are held on any other files (since the main file ** was committed at the btree level). So it safe to end the transaction ** by manually setting the autoCommit flag to true and detaching the ** vacuum database. The vacuum_db journal file is deleted when the pager ** is closed by the DETACH. */ db->autoCommit = 1; if( pDb ){ sqlite3BtreeClose(pDb->pBt); pDb->pBt = 0; pDb->pSchema = 0; } /* This both clears the schemas and reduces the size of the db->aDb[] ** array. */ sqlite3ResetAllSchemasOfConnection(db); return rc; } #endif /* SQLITE_OMIT_VACUUM && SQLITE_OMIT_ATTACH */ /************** End of vacuum.c **********************************************/ /************** Begin file vtab.c ********************************************/ /* ** 2006 June 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to help implement virtual tables. */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* #include "sqliteInt.h" */ /* ** Before a virtual table xCreate() or xConnect() method is invoked, the ** sqlite3.pVtabCtx member variable is set to point to an instance of ** this struct allocated on the stack. It is used by the implementation of ** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which ** are invoked only from within xCreate and xConnect methods. */ struct VtabCtx { VTable *pVTable; /* The virtual table being constructed */ Table *pTab; /* The Table object to which the virtual table belongs */ VtabCtx *pPrior; /* Parent context (if any) */ int bDeclared; /* True after sqlite3_declare_vtab() is called */ }; /* ** Construct and install a Module object for a virtual table. When this ** routine is called, it is guaranteed that all appropriate locks are held ** and the module is not already part of the connection. ** ** If there already exists a module with zName, replace it with the new one. ** If pModule==0, then delete the module zName if it exists. */ SQLITE_PRIVATE Module *sqlite3VtabCreateModule( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux, /* Context pointer for xCreate/xConnect */ void (*xDestroy)(void *) /* Module destructor function */ ){ Module *pMod; Module *pDel; char *zCopy; if( pModule==0 ){ zCopy = (char*)zName; pMod = 0; }else{ int nName = sqlite3Strlen30(zName); pMod = (Module *)sqlite3Malloc(sizeof(Module) + nName + 1); if( pMod==0 ){ sqlite3OomFault(db); return 0; } zCopy = (char *)(&pMod[1]); memcpy(zCopy, zName, nName+1); pMod->zName = zCopy; pMod->pModule = pModule; pMod->pAux = pAux; pMod->xDestroy = xDestroy; pMod->pEpoTab = 0; pMod->nRefModule = 1; } pDel = (Module *)sqlite3HashInsert(&db->aModule,zCopy,(void*)pMod); if( pDel ){ if( pDel==pMod ){ sqlite3OomFault(db); sqlite3DbFree(db, pDel); pMod = 0; }else{ sqlite3VtabEponymousTableClear(db, pDel); sqlite3VtabModuleUnref(db, pDel); } } return pMod; } /* ** The actual function that does the work of creating a new module. ** This function implements the sqlite3_create_module() and ** sqlite3_create_module_v2() interfaces. */ static int createModule( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux, /* Context pointer for xCreate/xConnect */ void (*xDestroy)(void *) /* Module destructor function */ ){ int rc = SQLITE_OK; sqlite3_mutex_enter(db->mutex); (void)sqlite3VtabCreateModule(db, zName, pModule, pAux, xDestroy); rc = sqlite3ApiExit(db, rc); if( rc!=SQLITE_OK && xDestroy ) xDestroy(pAux); sqlite3_mutex_leave(db->mutex); return rc; } /* ** External API function used to create a new virtual-table module. */ SQLITE_API int sqlite3_create_module( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux /* Context pointer for xCreate/xConnect */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif return createModule(db, zName, pModule, pAux, 0); } /* ** External API function used to create a new virtual-table module. */ SQLITE_API int sqlite3_create_module_v2( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux, /* Context pointer for xCreate/xConnect */ void (*xDestroy)(void *) /* Module destructor function */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif return createModule(db, zName, pModule, pAux, xDestroy); } /* ** External API to drop all virtual-table modules, except those named ** on the azNames list. */ SQLITE_API int sqlite3_drop_modules(sqlite3 *db, const char** azNames){ HashElem *pThis, *pNext; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif for(pThis=sqliteHashFirst(&db->aModule); pThis; pThis=pNext){ Module *pMod = (Module*)sqliteHashData(pThis); pNext = sqliteHashNext(pThis); if( azNames ){ int ii; for(ii=0; azNames[ii]!=0 && strcmp(azNames[ii],pMod->zName)!=0; ii++){} if( azNames[ii]!=0 ) continue; } createModule(db, pMod->zName, 0, 0, 0); } return SQLITE_OK; } /* ** Decrement the reference count on a Module object. Destroy the ** module when the reference count reaches zero. */ SQLITE_PRIVATE void sqlite3VtabModuleUnref(sqlite3 *db, Module *pMod){ assert( pMod->nRefModule>0 ); pMod->nRefModule--; if( pMod->nRefModule==0 ){ if( pMod->xDestroy ){ pMod->xDestroy(pMod->pAux); } assert( pMod->pEpoTab==0 ); sqlite3DbFree(db, pMod); } } /* ** Lock the virtual table so that it cannot be disconnected. ** Locks nest. Every lock should have a corresponding unlock. ** If an unlock is omitted, resources leaks will occur. ** ** If a disconnect is attempted while a virtual table is locked, ** the disconnect is deferred until all locks have been removed. */ SQLITE_PRIVATE void sqlite3VtabLock(VTable *pVTab){ pVTab->nRef++; } /* ** pTab is a pointer to a Table structure representing a virtual-table. ** Return a pointer to the VTable object used by connection db to access ** this virtual-table, if one has been created, or NULL otherwise. */ SQLITE_PRIVATE VTable *sqlite3GetVTable(sqlite3 *db, Table *pTab){ VTable *pVtab; assert( IsVirtual(pTab) ); for(pVtab=pTab->u.vtab.p; pVtab && pVtab->db!=db; pVtab=pVtab->pNext); return pVtab; } /* ** Decrement the ref-count on a virtual table object. When the ref-count ** reaches zero, call the xDisconnect() method to delete the object. */ SQLITE_PRIVATE void sqlite3VtabUnlock(VTable *pVTab){ sqlite3 *db = pVTab->db; assert( db ); assert( pVTab->nRef>0 ); assert( db->eOpenState==SQLITE_STATE_OPEN || db->eOpenState==SQLITE_STATE_ZOMBIE ); pVTab->nRef--; if( pVTab->nRef==0 ){ sqlite3_vtab *p = pVTab->pVtab; sqlite3VtabModuleUnref(pVTab->db, pVTab->pMod); if( p ){ p->pModule->xDisconnect(p); } sqlite3DbFree(db, pVTab); } } /* ** Table p is a virtual table. This function moves all elements in the ** p->u.vtab.p list to the sqlite3.pDisconnect lists of their associated ** database connections to be disconnected at the next opportunity. ** Except, if argument db is not NULL, then the entry associated with ** connection db is left in the p->u.vtab.p list. */ static VTable *vtabDisconnectAll(sqlite3 *db, Table *p){ VTable *pRet = 0; VTable *pVTable; assert( IsVirtual(p) ); pVTable = p->u.vtab.p; p->u.vtab.p = 0; /* Assert that the mutex (if any) associated with the BtShared database ** that contains table p is held by the caller. See header comments ** above function sqlite3VtabUnlockList() for an explanation of why ** this makes it safe to access the sqlite3.pDisconnect list of any ** database connection that may have an entry in the p->u.vtab.p list. */ assert( db==0 || sqlite3SchemaMutexHeld(db, 0, p->pSchema) ); while( pVTable ){ sqlite3 *db2 = pVTable->db; VTable *pNext = pVTable->pNext; assert( db2 ); if( db2==db ){ pRet = pVTable; p->u.vtab.p = pRet; pRet->pNext = 0; }else{ pVTable->pNext = db2->pDisconnect; db2->pDisconnect = pVTable; } pVTable = pNext; } assert( !db || pRet ); return pRet; } /* ** Table *p is a virtual table. This function removes the VTable object ** for table *p associated with database connection db from the linked ** list in p->pVTab. It also decrements the VTable ref count. This is ** used when closing database connection db to free all of its VTable ** objects without disturbing the rest of the Schema object (which may ** be being used by other shared-cache connections). */ SQLITE_PRIVATE void sqlite3VtabDisconnect(sqlite3 *db, Table *p){ VTable **ppVTab; assert( IsVirtual(p) ); assert( sqlite3BtreeHoldsAllMutexes(db) ); assert( sqlite3_mutex_held(db->mutex) ); for(ppVTab=&p->u.vtab.p; *ppVTab; ppVTab=&(*ppVTab)->pNext){ if( (*ppVTab)->db==db ){ VTable *pVTab = *ppVTab; *ppVTab = pVTab->pNext; sqlite3VtabUnlock(pVTab); break; } } } /* ** Disconnect all the virtual table objects in the sqlite3.pDisconnect list. ** ** This function may only be called when the mutexes associated with all ** shared b-tree databases opened using connection db are held by the ** caller. This is done to protect the sqlite3.pDisconnect list. The ** sqlite3.pDisconnect list is accessed only as follows: ** ** 1) By this function. In this case, all BtShared mutexes and the mutex ** associated with the database handle itself must be held. ** ** 2) By function vtabDisconnectAll(), when it adds a VTable entry to ** the sqlite3.pDisconnect list. In this case either the BtShared mutex ** associated with the database the virtual table is stored in is held ** or, if the virtual table is stored in a non-sharable database, then ** the database handle mutex is held. ** ** As a result, a sqlite3.pDisconnect cannot be accessed simultaneously ** by multiple threads. It is thread-safe. */ SQLITE_PRIVATE void sqlite3VtabUnlockList(sqlite3 *db){ VTable *p = db->pDisconnect; assert( sqlite3BtreeHoldsAllMutexes(db) ); assert( sqlite3_mutex_held(db->mutex) ); if( p ){ db->pDisconnect = 0; sqlite3ExpirePreparedStatements(db, 0); do { VTable *pNext = p->pNext; sqlite3VtabUnlock(p); p = pNext; }while( p ); } } /* ** Clear any and all virtual-table information from the Table record. ** This routine is called, for example, just before deleting the Table ** record. ** ** Since it is a virtual-table, the Table structure contains a pointer ** to the head of a linked list of VTable structures. Each VTable ** structure is associated with a single sqlite3* user of the schema. ** The reference count of the VTable structure associated with database ** connection db is decremented immediately (which may lead to the ** structure being xDisconnected and free). Any other VTable structures ** in the list are moved to the sqlite3.pDisconnect list of the associated ** database connection. */ SQLITE_PRIVATE void sqlite3VtabClear(sqlite3 *db, Table *p){ assert( IsVirtual(p) ); if( !db || db->pnBytesFreed==0 ) vtabDisconnectAll(0, p); if( p->u.vtab.azArg ){ int i; for(i=0; iu.vtab.nArg; i++){ if( i!=1 ) sqlite3DbFree(db, p->u.vtab.azArg[i]); } sqlite3DbFree(db, p->u.vtab.azArg); } } /* ** Add a new module argument to pTable->u.vtab.azArg[]. ** The string is not copied - the pointer is stored. The ** string will be freed automatically when the table is ** deleted. */ static void addModuleArgument(Parse *pParse, Table *pTable, char *zArg){ sqlite3_int64 nBytes; char **azModuleArg; sqlite3 *db = pParse->db; assert( IsVirtual(pTable) ); nBytes = sizeof(char *)*(2+pTable->u.vtab.nArg); if( pTable->u.vtab.nArg+3>=db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many columns on %s", pTable->zName); } azModuleArg = sqlite3DbRealloc(db, pTable->u.vtab.azArg, nBytes); if( azModuleArg==0 ){ sqlite3DbFree(db, zArg); }else{ int i = pTable->u.vtab.nArg++; azModuleArg[i] = zArg; azModuleArg[i+1] = 0; pTable->u.vtab.azArg = azModuleArg; } } /* ** The parser calls this routine when it first sees a CREATE VIRTUAL TABLE ** statement. The module name has been parsed, but the optional list ** of parameters that follow the module name are still pending. */ SQLITE_PRIVATE void sqlite3VtabBeginParse( Parse *pParse, /* Parsing context */ Token *pName1, /* Name of new table, or database name */ Token *pName2, /* Name of new table or NULL */ Token *pModuleName, /* Name of the module for the virtual table */ int ifNotExists /* No error if the table already exists */ ){ Table *pTable; /* The new virtual table */ sqlite3 *db; /* Database connection */ sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, ifNotExists); pTable = pParse->pNewTable; if( pTable==0 ) return; assert( 0==pTable->pIndex ); pTable->eTabType = TABTYP_VTAB; db = pParse->db; assert( pTable->u.vtab.nArg==0 ); addModuleArgument(pParse, pTable, sqlite3NameFromToken(db, pModuleName)); addModuleArgument(pParse, pTable, 0); addModuleArgument(pParse, pTable, sqlite3DbStrDup(db, pTable->zName)); assert( (pParse->sNameToken.z==pName2->z && pName2->z!=0) || (pParse->sNameToken.z==pName1->z && pName2->z==0) ); pParse->sNameToken.n = (int)( &pModuleName->z[pModuleName->n] - pParse->sNameToken.z ); #ifndef SQLITE_OMIT_AUTHORIZATION /* Creating a virtual table invokes the authorization callback twice. ** The first invocation, to obtain permission to INSERT a row into the ** sqlite_schema table, has already been made by sqlite3StartTable(). ** The second call, to obtain permission to create the table, is made now. */ if( pTable->u.vtab.azArg ){ int iDb = sqlite3SchemaToIndex(db, pTable->pSchema); assert( iDb>=0 ); /* The database the table is being created in */ sqlite3AuthCheck(pParse, SQLITE_CREATE_VTABLE, pTable->zName, pTable->u.vtab.azArg[0], pParse->db->aDb[iDb].zDbSName); } #endif } /* ** This routine takes the module argument that has been accumulating ** in pParse->zArg[] and appends it to the list of arguments on the ** virtual table currently under construction in pParse->pTable. */ static void addArgumentToVtab(Parse *pParse){ if( pParse->sArg.z && pParse->pNewTable ){ const char *z = (const char*)pParse->sArg.z; int n = pParse->sArg.n; sqlite3 *db = pParse->db; addModuleArgument(pParse, pParse->pNewTable, sqlite3DbStrNDup(db, z, n)); } } /* ** The parser calls this routine after the CREATE VIRTUAL TABLE statement ** has been completely parsed. */ SQLITE_PRIVATE void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){ Table *pTab = pParse->pNewTable; /* The table being constructed */ sqlite3 *db = pParse->db; /* The database connection */ if( pTab==0 ) return; assert( IsVirtual(pTab) ); addArgumentToVtab(pParse); pParse->sArg.z = 0; if( pTab->u.vtab.nArg<1 ) return; /* If the CREATE VIRTUAL TABLE statement is being entered for the ** first time (in other words if the virtual table is actually being ** created now instead of just being read out of sqlite_schema) then ** do additional initialization work and store the statement text ** in the sqlite_schema table. */ if( !db->init.busy ){ char *zStmt; char *zWhere; int iDb; int iReg; Vdbe *v; sqlite3MayAbort(pParse); /* Compute the complete text of the CREATE VIRTUAL TABLE statement */ if( pEnd ){ pParse->sNameToken.n = (int)(pEnd->z - pParse->sNameToken.z) + pEnd->n; } zStmt = sqlite3MPrintf(db, "CREATE VIRTUAL TABLE %T", &pParse->sNameToken); /* A slot for the record has already been allocated in the ** schema table. We just need to update that slot with all ** the information we've collected. ** ** The VM register number pParse->regRowid holds the rowid of an ** entry in the sqlite_schema table tht was created for this vtab ** by sqlite3StartTable(). */ iDb = sqlite3SchemaToIndex(db, pTab->pSchema); sqlite3NestedParse(pParse, "UPDATE %Q." LEGACY_SCHEMA_TABLE " " "SET type='table', name=%Q, tbl_name=%Q, rootpage=0, sql=%Q " "WHERE rowid=#%d", db->aDb[iDb].zDbSName, pTab->zName, pTab->zName, zStmt, pParse->regRowid ); v = sqlite3GetVdbe(pParse); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddOp0(v, OP_Expire); zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt); sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere, 0); sqlite3DbFree(db, zStmt); iReg = ++pParse->nMem; sqlite3VdbeLoadString(v, iReg, pTab->zName); sqlite3VdbeAddOp2(v, OP_VCreate, iDb, iReg); }else{ /* If we are rereading the sqlite_schema table create the in-memory ** record of the table. */ Table *pOld; Schema *pSchema = pTab->pSchema; const char *zName = pTab->zName; assert( zName!=0 ); sqlite3MarkAllShadowTablesOf(db, pTab); pOld = sqlite3HashInsert(&pSchema->tblHash, zName, pTab); if( pOld ){ sqlite3OomFault(db); assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */ return; } pParse->pNewTable = 0; } } /* ** The parser calls this routine when it sees the first token ** of an argument to the module name in a CREATE VIRTUAL TABLE statement. */ SQLITE_PRIVATE void sqlite3VtabArgInit(Parse *pParse){ addArgumentToVtab(pParse); pParse->sArg.z = 0; pParse->sArg.n = 0; } /* ** The parser calls this routine for each token after the first token ** in an argument to the module name in a CREATE VIRTUAL TABLE statement. */ SQLITE_PRIVATE void sqlite3VtabArgExtend(Parse *pParse, Token *p){ Token *pArg = &pParse->sArg; if( pArg->z==0 ){ pArg->z = p->z; pArg->n = p->n; }else{ assert(pArg->z <= p->z); pArg->n = (int)(&p->z[p->n] - pArg->z); } } /* ** Invoke a virtual table constructor (either xCreate or xConnect). The ** pointer to the function to invoke is passed as the fourth parameter ** to this procedure. */ static int vtabCallConstructor( sqlite3 *db, Table *pTab, Module *pMod, int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), char **pzErr ){ VtabCtx sCtx; VTable *pVTable; int rc; const char *const*azArg; int nArg = pTab->u.vtab.nArg; char *zErr = 0; char *zModuleName; int iDb; VtabCtx *pCtx; assert( IsVirtual(pTab) ); azArg = (const char *const*)pTab->u.vtab.azArg; /* Check that the virtual-table is not already being initialized */ for(pCtx=db->pVtabCtx; pCtx; pCtx=pCtx->pPrior){ if( pCtx->pTab==pTab ){ *pzErr = sqlite3MPrintf(db, "vtable constructor called recursively: %s", pTab->zName ); return SQLITE_LOCKED; } } zModuleName = sqlite3DbStrDup(db, pTab->zName); if( !zModuleName ){ return SQLITE_NOMEM_BKPT; } pVTable = sqlite3MallocZero(sizeof(VTable)); if( !pVTable ){ sqlite3OomFault(db); sqlite3DbFree(db, zModuleName); return SQLITE_NOMEM_BKPT; } pVTable->db = db; pVTable->pMod = pMod; pVTable->eVtabRisk = SQLITE_VTABRISK_Normal; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); pTab->u.vtab.azArg[1] = db->aDb[iDb].zDbSName; /* Invoke the virtual table constructor */ assert( &db->pVtabCtx ); assert( xConstruct ); sCtx.pTab = pTab; sCtx.pVTable = pVTable; sCtx.pPrior = db->pVtabCtx; sCtx.bDeclared = 0; db->pVtabCtx = &sCtx; rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr); db->pVtabCtx = sCtx.pPrior; if( rc==SQLITE_NOMEM ) sqlite3OomFault(db); assert( sCtx.pTab==pTab ); if( SQLITE_OK!=rc ){ if( zErr==0 ){ *pzErr = sqlite3MPrintf(db, "vtable constructor failed: %s", zModuleName); }else { *pzErr = sqlite3MPrintf(db, "%s", zErr); sqlite3_free(zErr); } sqlite3DbFree(db, pVTable); }else if( ALWAYS(pVTable->pVtab) ){ /* Justification of ALWAYS(): A correct vtab constructor must allocate ** the sqlite3_vtab object if successful. */ memset(pVTable->pVtab, 0, sizeof(pVTable->pVtab[0])); pVTable->pVtab->pModule = pMod->pModule; pMod->nRefModule++; pVTable->nRef = 1; if( sCtx.bDeclared==0 ){ const char *zFormat = "vtable constructor did not declare schema: %s"; *pzErr = sqlite3MPrintf(db, zFormat, pTab->zName); sqlite3VtabUnlock(pVTable); rc = SQLITE_ERROR; }else{ int iCol; u16 oooHidden = 0; /* If everything went according to plan, link the new VTable structure ** into the linked list headed by pTab->u.vtab.p. Then loop through the ** columns of the table to see if any of them contain the token "hidden". ** If so, set the Column COLFLAG_HIDDEN flag and remove the token from ** the type string. */ pVTable->pNext = pTab->u.vtab.p; pTab->u.vtab.p = pVTable; for(iCol=0; iColnCol; iCol++){ char *zType = sqlite3ColumnType(&pTab->aCol[iCol], ""); int nType; int i = 0; nType = sqlite3Strlen30(zType); for(i=0; i0 ){ assert(zType[i-1]==' '); zType[i-1] = '\0'; } pTab->aCol[iCol].colFlags |= COLFLAG_HIDDEN; pTab->tabFlags |= TF_HasHidden; oooHidden = TF_OOOHidden; }else{ pTab->tabFlags |= oooHidden; } } } } sqlite3DbFree(db, zModuleName); return rc; } /* ** This function is invoked by the parser to call the xConnect() method ** of the virtual table pTab. If an error occurs, an error code is returned ** and an error left in pParse. ** ** This call is a no-op if table pTab is not a virtual table. */ SQLITE_PRIVATE int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){ sqlite3 *db = pParse->db; const char *zMod; Module *pMod; int rc; assert( pTab ); assert( IsVirtual(pTab) ); if( sqlite3GetVTable(db, pTab) ){ return SQLITE_OK; } /* Locate the required virtual table module */ zMod = pTab->u.vtab.azArg[0]; pMod = (Module*)sqlite3HashFind(&db->aModule, zMod); if( !pMod ){ const char *zModule = pTab->u.vtab.azArg[0]; sqlite3ErrorMsg(pParse, "no such module: %s", zModule); rc = SQLITE_ERROR; }else{ char *zErr = 0; rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr); if( rc!=SQLITE_OK ){ sqlite3ErrorMsg(pParse, "%s", zErr); pParse->rc = rc; } sqlite3DbFree(db, zErr); } return rc; } /* ** Grow the db->aVTrans[] array so that there is room for at least one ** more v-table. Return SQLITE_NOMEM if a malloc fails, or SQLITE_OK otherwise. */ static int growVTrans(sqlite3 *db){ const int ARRAY_INCR = 5; /* Grow the sqlite3.aVTrans array if required */ if( (db->nVTrans%ARRAY_INCR)==0 ){ VTable **aVTrans; sqlite3_int64 nBytes = sizeof(sqlite3_vtab*)* ((sqlite3_int64)db->nVTrans + ARRAY_INCR); aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes); if( !aVTrans ){ return SQLITE_NOMEM_BKPT; } memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR); db->aVTrans = aVTrans; } return SQLITE_OK; } /* ** Add the virtual table pVTab to the array sqlite3.aVTrans[]. Space should ** have already been reserved using growVTrans(). */ static void addToVTrans(sqlite3 *db, VTable *pVTab){ /* Add pVtab to the end of sqlite3.aVTrans */ db->aVTrans[db->nVTrans++] = pVTab; sqlite3VtabLock(pVTab); } /* ** This function is invoked by the vdbe to call the xCreate method ** of the virtual table named zTab in database iDb. ** ** If an error occurs, *pzErr is set to point to an English language ** description of the error and an SQLITE_XXX error code is returned. ** In this case the caller must call sqlite3DbFree(db, ) on *pzErr. */ SQLITE_PRIVATE int sqlite3VtabCallCreate(sqlite3 *db, int iDb, const char *zTab, char **pzErr){ int rc = SQLITE_OK; Table *pTab; Module *pMod; const char *zMod; pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zDbSName); assert( pTab && IsVirtual(pTab) && !pTab->u.vtab.p ); /* Locate the required virtual table module */ zMod = pTab->u.vtab.azArg[0]; pMod = (Module*)sqlite3HashFind(&db->aModule, zMod); /* If the module has been registered and includes a Create method, ** invoke it now. If the module has not been registered, return an ** error. Otherwise, do nothing. */ if( pMod==0 || pMod->pModule->xCreate==0 || pMod->pModule->xDestroy==0 ){ *pzErr = sqlite3MPrintf(db, "no such module: %s", zMod); rc = SQLITE_ERROR; }else{ rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr); } /* Justification of ALWAYS(): The xConstructor method is required to ** create a valid sqlite3_vtab if it returns SQLITE_OK. */ if( rc==SQLITE_OK && ALWAYS(sqlite3GetVTable(db, pTab)) ){ rc = growVTrans(db); if( rc==SQLITE_OK ){ addToVTrans(db, sqlite3GetVTable(db, pTab)); } } return rc; } /* ** This function is used to set the schema of a virtual table. It is only ** valid to call this function from within the xCreate() or xConnect() of a ** virtual table module. */ SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){ VtabCtx *pCtx; int rc = SQLITE_OK; Table *pTab; Parse sParse; int initBusy; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zCreateTable==0 ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); pCtx = db->pVtabCtx; if( !pCtx || pCtx->bDeclared ){ sqlite3Error(db, SQLITE_MISUSE); sqlite3_mutex_leave(db->mutex); return SQLITE_MISUSE_BKPT; } pTab = pCtx->pTab; assert( IsVirtual(pTab) ); sqlite3ParseObjectInit(&sParse, db); sParse.eParseMode = PARSE_MODE_DECLARE_VTAB; /* We should never be able to reach this point while loading the ** schema. Nevertheless, defend against that (turn off db->init.busy) ** in case a bug arises. */ assert( db->init.busy==0 ); initBusy = db->init.busy; db->init.busy = 0; sParse.nQueryLoop = 1; if( SQLITE_OK==sqlite3RunParser(&sParse, zCreateTable) && ALWAYS(sParse.pNewTable!=0) && ALWAYS(!db->mallocFailed) && IsOrdinaryTable(sParse.pNewTable) ){ assert( sParse.zErrMsg==0 ); if( !pTab->aCol ){ Table *pNew = sParse.pNewTable; Index *pIdx; pTab->aCol = pNew->aCol; sqlite3ExprListDelete(db, pNew->u.tab.pDfltList); pTab->nNVCol = pTab->nCol = pNew->nCol; pTab->tabFlags |= pNew->tabFlags & (TF_WithoutRowid|TF_NoVisibleRowid); pNew->nCol = 0; pNew->aCol = 0; assert( pTab->pIndex==0 ); assert( HasRowid(pNew) || sqlite3PrimaryKeyIndex(pNew)!=0 ); if( !HasRowid(pNew) && pCtx->pVTable->pMod->pModule->xUpdate!=0 && sqlite3PrimaryKeyIndex(pNew)->nKeyCol!=1 ){ /* WITHOUT ROWID virtual tables must either be read-only (xUpdate==0) ** or else must have a single-column PRIMARY KEY */ rc = SQLITE_ERROR; } pIdx = pNew->pIndex; if( pIdx ){ assert( pIdx->pNext==0 ); pTab->pIndex = pIdx; pNew->pIndex = 0; pIdx->pTable = pTab; } } pCtx->bDeclared = 1; }else{ sqlite3ErrorWithMsg(db, SQLITE_ERROR, (sParse.zErrMsg ? "%s" : 0), sParse.zErrMsg); sqlite3DbFree(db, sParse.zErrMsg); rc = SQLITE_ERROR; } sParse.eParseMode = PARSE_MODE_NORMAL; if( sParse.pVdbe ){ sqlite3VdbeFinalize(sParse.pVdbe); } sqlite3DeleteTable(db, sParse.pNewTable); sqlite3ParseObjectReset(&sParse); db->init.busy = initBusy; assert( (rc&0xff)==rc ); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** This function is invoked by the vdbe to call the xDestroy method ** of the virtual table named zTab in database iDb. This occurs ** when a DROP TABLE is mentioned. ** ** This call is a no-op if zTab is not a virtual table. */ SQLITE_PRIVATE int sqlite3VtabCallDestroy(sqlite3 *db, int iDb, const char *zTab){ int rc = SQLITE_OK; Table *pTab; pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zDbSName); if( ALWAYS(pTab!=0) && ALWAYS(IsVirtual(pTab)) && ALWAYS(pTab->u.vtab.p!=0) ){ VTable *p; int (*xDestroy)(sqlite3_vtab *); for(p=pTab->u.vtab.p; p; p=p->pNext){ assert( p->pVtab ); if( p->pVtab->nRef>0 ){ return SQLITE_LOCKED; } } p = vtabDisconnectAll(db, pTab); xDestroy = p->pMod->pModule->xDestroy; if( xDestroy==0 ) xDestroy = p->pMod->pModule->xDisconnect; assert( xDestroy!=0 ); pTab->nTabRef++; rc = xDestroy(p->pVtab); /* Remove the sqlite3_vtab* from the aVTrans[] array, if applicable */ if( rc==SQLITE_OK ){ assert( pTab->u.vtab.p==p && p->pNext==0 ); p->pVtab = 0; pTab->u.vtab.p = 0; sqlite3VtabUnlock(p); } sqlite3DeleteTable(db, pTab); } return rc; } /* ** This function invokes either the xRollback or xCommit method ** of each of the virtual tables in the sqlite3.aVTrans array. The method ** called is identified by the second argument, "offset", which is ** the offset of the method to call in the sqlite3_module structure. ** ** The array is cleared after invoking the callbacks. */ static void callFinaliser(sqlite3 *db, int offset){ int i; if( db->aVTrans ){ VTable **aVTrans = db->aVTrans; db->aVTrans = 0; for(i=0; inVTrans; i++){ VTable *pVTab = aVTrans[i]; sqlite3_vtab *p = pVTab->pVtab; if( p ){ int (*x)(sqlite3_vtab *); x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset); if( x ) x(p); } pVTab->iSavepoint = 0; sqlite3VtabUnlock(pVTab); } sqlite3DbFree(db, aVTrans); db->nVTrans = 0; } } /* ** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans ** array. Return the error code for the first error that occurs, or ** SQLITE_OK if all xSync operations are successful. ** ** If an error message is available, leave it in p->zErrMsg. */ SQLITE_PRIVATE int sqlite3VtabSync(sqlite3 *db, Vdbe *p){ int i; int rc = SQLITE_OK; VTable **aVTrans = db->aVTrans; db->aVTrans = 0; for(i=0; rc==SQLITE_OK && inVTrans; i++){ int (*x)(sqlite3_vtab *); sqlite3_vtab *pVtab = aVTrans[i]->pVtab; if( pVtab && (x = pVtab->pModule->xSync)!=0 ){ rc = x(pVtab); sqlite3VtabImportErrmsg(p, pVtab); } } db->aVTrans = aVTrans; return rc; } /* ** Invoke the xRollback method of all virtual tables in the ** sqlite3.aVTrans array. Then clear the array itself. */ SQLITE_PRIVATE int sqlite3VtabRollback(sqlite3 *db){ callFinaliser(db, offsetof(sqlite3_module,xRollback)); return SQLITE_OK; } /* ** Invoke the xCommit method of all virtual tables in the ** sqlite3.aVTrans array. Then clear the array itself. */ SQLITE_PRIVATE int sqlite3VtabCommit(sqlite3 *db){ callFinaliser(db, offsetof(sqlite3_module,xCommit)); return SQLITE_OK; } /* ** If the virtual table pVtab supports the transaction interface ** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is ** not currently open, invoke the xBegin method now. ** ** If the xBegin call is successful, place the sqlite3_vtab pointer ** in the sqlite3.aVTrans array. */ SQLITE_PRIVATE int sqlite3VtabBegin(sqlite3 *db, VTable *pVTab){ int rc = SQLITE_OK; const sqlite3_module *pModule; /* Special case: If db->aVTrans is NULL and db->nVTrans is greater ** than zero, then this function is being called from within a ** virtual module xSync() callback. It is illegal to write to ** virtual module tables in this case, so return SQLITE_LOCKED. */ if( sqlite3VtabInSync(db) ){ return SQLITE_LOCKED; } if( !pVTab ){ return SQLITE_OK; } pModule = pVTab->pVtab->pModule; if( pModule->xBegin ){ int i; /* If pVtab is already in the aVTrans array, return early */ for(i=0; inVTrans; i++){ if( db->aVTrans[i]==pVTab ){ return SQLITE_OK; } } /* Invoke the xBegin method. If successful, add the vtab to the ** sqlite3.aVTrans[] array. */ rc = growVTrans(db); if( rc==SQLITE_OK ){ rc = pModule->xBegin(pVTab->pVtab); if( rc==SQLITE_OK ){ int iSvpt = db->nStatement + db->nSavepoint; addToVTrans(db, pVTab); if( iSvpt && pModule->xSavepoint ){ pVTab->iSavepoint = iSvpt; rc = pModule->xSavepoint(pVTab->pVtab, iSvpt-1); } } } } return rc; } /* ** Invoke either the xSavepoint, xRollbackTo or xRelease method of all ** virtual tables that currently have an open transaction. Pass iSavepoint ** as the second argument to the virtual table method invoked. ** ** If op is SAVEPOINT_BEGIN, the xSavepoint method is invoked. If it is ** SAVEPOINT_ROLLBACK, the xRollbackTo method. Otherwise, if op is ** SAVEPOINT_RELEASE, then the xRelease method of each virtual table with ** an open transaction is invoked. ** ** If any virtual table method returns an error code other than SQLITE_OK, ** processing is abandoned and the error returned to the caller of this ** function immediately. If all calls to virtual table methods are successful, ** SQLITE_OK is returned. */ SQLITE_PRIVATE int sqlite3VtabSavepoint(sqlite3 *db, int op, int iSavepoint){ int rc = SQLITE_OK; assert( op==SAVEPOINT_RELEASE||op==SAVEPOINT_ROLLBACK||op==SAVEPOINT_BEGIN ); assert( iSavepoint>=-1 ); if( db->aVTrans ){ int i; for(i=0; rc==SQLITE_OK && inVTrans; i++){ VTable *pVTab = db->aVTrans[i]; const sqlite3_module *pMod = pVTab->pMod->pModule; if( pVTab->pVtab && pMod->iVersion>=2 ){ int (*xMethod)(sqlite3_vtab *, int); sqlite3VtabLock(pVTab); switch( op ){ case SAVEPOINT_BEGIN: xMethod = pMod->xSavepoint; pVTab->iSavepoint = iSavepoint+1; break; case SAVEPOINT_ROLLBACK: xMethod = pMod->xRollbackTo; break; default: xMethod = pMod->xRelease; break; } if( xMethod && pVTab->iSavepoint>iSavepoint ){ rc = xMethod(pVTab->pVtab, iSavepoint); } sqlite3VtabUnlock(pVTab); } } } return rc; } /* ** The first parameter (pDef) is a function implementation. The ** second parameter (pExpr) is the first argument to this function. ** If pExpr is a column in a virtual table, then let the virtual ** table implementation have an opportunity to overload the function. ** ** This routine is used to allow virtual table implementations to ** overload MATCH, LIKE, GLOB, and REGEXP operators. ** ** Return either the pDef argument (indicating no change) or a ** new FuncDef structure that is marked as ephemeral using the ** SQLITE_FUNC_EPHEM flag. */ SQLITE_PRIVATE FuncDef *sqlite3VtabOverloadFunction( sqlite3 *db, /* Database connection for reporting malloc problems */ FuncDef *pDef, /* Function to possibly overload */ int nArg, /* Number of arguments to the function */ Expr *pExpr /* First argument to the function */ ){ Table *pTab; sqlite3_vtab *pVtab; sqlite3_module *pMod; void (*xSFunc)(sqlite3_context*,int,sqlite3_value**) = 0; void *pArg = 0; FuncDef *pNew; int rc = 0; /* Check to see the left operand is a column in a virtual table */ if( NEVER(pExpr==0) ) return pDef; if( pExpr->op!=TK_COLUMN ) return pDef; assert( ExprUseYTab(pExpr) ); pTab = pExpr->y.pTab; if( pTab==0 ) return pDef; if( !IsVirtual(pTab) ) return pDef; pVtab = sqlite3GetVTable(db, pTab)->pVtab; assert( pVtab!=0 ); assert( pVtab->pModule!=0 ); pMod = (sqlite3_module *)pVtab->pModule; if( pMod->xFindFunction==0 ) return pDef; /* Call the xFindFunction method on the virtual table implementation ** to see if the implementation wants to overload this function. ** ** Though undocumented, we have historically always invoked xFindFunction ** with an all lower-case function name. Continue in this tradition to ** avoid any chance of an incompatibility. */ #ifdef SQLITE_DEBUG { int i; for(i=0; pDef->zName[i]; i++){ unsigned char x = (unsigned char)pDef->zName[i]; assert( x==sqlite3UpperToLower[x] ); } } #endif rc = pMod->xFindFunction(pVtab, nArg, pDef->zName, &xSFunc, &pArg); if( rc==0 ){ return pDef; } /* Create a new ephemeral function definition for the overloaded ** function */ pNew = sqlite3DbMallocZero(db, sizeof(*pNew) + sqlite3Strlen30(pDef->zName) + 1); if( pNew==0 ){ return pDef; } *pNew = *pDef; pNew->zName = (const char*)&pNew[1]; memcpy((char*)&pNew[1], pDef->zName, sqlite3Strlen30(pDef->zName)+1); pNew->xSFunc = xSFunc; pNew->pUserData = pArg; pNew->funcFlags |= SQLITE_FUNC_EPHEM; return pNew; } /* ** Make sure virtual table pTab is contained in the pParse->apVirtualLock[] ** array so that an OP_VBegin will get generated for it. Add pTab to the ** array if it is missing. If pTab is already in the array, this routine ** is a no-op. */ SQLITE_PRIVATE void sqlite3VtabMakeWritable(Parse *pParse, Table *pTab){ Parse *pToplevel = sqlite3ParseToplevel(pParse); int i, n; Table **apVtabLock; assert( IsVirtual(pTab) ); for(i=0; inVtabLock; i++){ if( pTab==pToplevel->apVtabLock[i] ) return; } n = (pToplevel->nVtabLock+1)*sizeof(pToplevel->apVtabLock[0]); apVtabLock = sqlite3Realloc(pToplevel->apVtabLock, n); if( apVtabLock ){ pToplevel->apVtabLock = apVtabLock; pToplevel->apVtabLock[pToplevel->nVtabLock++] = pTab; }else{ sqlite3OomFault(pToplevel->db); } } /* ** Check to see if virtual table module pMod can be have an eponymous ** virtual table instance. If it can, create one if one does not already ** exist. Return non-zero if either the eponymous virtual table instance ** exists when this routine returns or if an attempt to create it failed ** and an error message was left in pParse. ** ** An eponymous virtual table instance is one that is named after its ** module, and more importantly, does not require a CREATE VIRTUAL TABLE ** statement in order to come into existance. Eponymous virtual table ** instances always exist. They cannot be DROP-ed. ** ** Any virtual table module for which xConnect and xCreate are the same ** method can have an eponymous virtual table instance. */ SQLITE_PRIVATE int sqlite3VtabEponymousTableInit(Parse *pParse, Module *pMod){ const sqlite3_module *pModule = pMod->pModule; Table *pTab; char *zErr = 0; int rc; sqlite3 *db = pParse->db; if( pMod->pEpoTab ) return 1; if( pModule->xCreate!=0 && pModule->xCreate!=pModule->xConnect ) return 0; pTab = sqlite3DbMallocZero(db, sizeof(Table)); if( pTab==0 ) return 0; pTab->zName = sqlite3DbStrDup(db, pMod->zName); if( pTab->zName==0 ){ sqlite3DbFree(db, pTab); return 0; } pMod->pEpoTab = pTab; pTab->nTabRef = 1; pTab->eTabType = TABTYP_VTAB; pTab->pSchema = db->aDb[0].pSchema; assert( pTab->u.vtab.nArg==0 ); pTab->iPKey = -1; pTab->tabFlags |= TF_Eponymous; addModuleArgument(pParse, pTab, sqlite3DbStrDup(db, pTab->zName)); addModuleArgument(pParse, pTab, 0); addModuleArgument(pParse, pTab, sqlite3DbStrDup(db, pTab->zName)); rc = vtabCallConstructor(db, pTab, pMod, pModule->xConnect, &zErr); if( rc ){ sqlite3ErrorMsg(pParse, "%s", zErr); sqlite3DbFree(db, zErr); sqlite3VtabEponymousTableClear(db, pMod); } return 1; } /* ** Erase the eponymous virtual table instance associated with ** virtual table module pMod, if it exists. */ SQLITE_PRIVATE void sqlite3VtabEponymousTableClear(sqlite3 *db, Module *pMod){ Table *pTab = pMod->pEpoTab; if( pTab!=0 ){ /* Mark the table as Ephemeral prior to deleting it, so that the ** sqlite3DeleteTable() routine will know that it is not stored in ** the schema. */ pTab->tabFlags |= TF_Ephemeral; sqlite3DeleteTable(db, pTab); pMod->pEpoTab = 0; } } /* ** Return the ON CONFLICT resolution mode in effect for the virtual ** table update operation currently in progress. ** ** The results of this routine are undefined unless it is called from ** within an xUpdate method. */ SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *db){ static const unsigned char aMap[] = { SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE }; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 ); assert( OE_Ignore==4 && OE_Replace==5 ); assert( db->vtabOnConflict>=1 && db->vtabOnConflict<=5 ); return (int)aMap[db->vtabOnConflict-1]; } /* ** Call from within the xCreate() or xConnect() methods to provide ** the SQLite core with additional information about the behavior ** of the virtual table being implemented. */ SQLITE_API int sqlite3_vtab_config(sqlite3 *db, int op, ...){ va_list ap; int rc = SQLITE_OK; VtabCtx *p; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); p = db->pVtabCtx; if( !p ){ rc = SQLITE_MISUSE_BKPT; }else{ assert( p->pTab==0 || IsVirtual(p->pTab) ); va_start(ap, op); switch( op ){ case SQLITE_VTAB_CONSTRAINT_SUPPORT: { p->pVTable->bConstraint = (u8)va_arg(ap, int); break; } case SQLITE_VTAB_INNOCUOUS: { p->pVTable->eVtabRisk = SQLITE_VTABRISK_Low; break; } case SQLITE_VTAB_DIRECTONLY: { p->pVTable->eVtabRisk = SQLITE_VTABRISK_High; break; } default: { rc = SQLITE_MISUSE_BKPT; break; } } va_end(ap); } if( rc!=SQLITE_OK ) sqlite3Error(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /************** End of vtab.c ************************************************/ /************** Begin file wherecode.c ***************************************/ /* ** 2015-06-06 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** ** This file was split off from where.c on 2015-06-06 in order to reduce the ** size of where.c and make it easier to edit. This file contains the routines ** that actually generate the bulk of the WHERE loop code. The original where.c ** file retains the code that does query planning and analysis. */ /* #include "sqliteInt.h" */ /************** Include whereInt.h in the middle of wherecode.c **************/ /************** Begin file whereInt.h ****************************************/ /* ** 2013-11-12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains structure and macro definitions for the query ** planner logic in "where.c". These definitions are broken out into ** a separate source file for easier editing. */ #ifndef SQLITE_WHEREINT_H #define SQLITE_WHEREINT_H /* Forward references */ typedef struct WhereClause WhereClause; typedef struct WhereMaskSet WhereMaskSet; typedef struct WhereOrInfo WhereOrInfo; typedef struct WhereAndInfo WhereAndInfo; typedef struct WhereLevel WhereLevel; typedef struct WhereLoop WhereLoop; typedef struct WherePath WherePath; typedef struct WhereTerm WhereTerm; typedef struct WhereLoopBuilder WhereLoopBuilder; typedef struct WhereScan WhereScan; typedef struct WhereOrCost WhereOrCost; typedef struct WhereOrSet WhereOrSet; /* ** This object contains information needed to implement a single nested ** loop in WHERE clause. ** ** Contrast this object with WhereLoop. This object describes the ** implementation of the loop. WhereLoop describes the algorithm. ** This object contains a pointer to the WhereLoop algorithm as one of ** its elements. ** ** The WhereInfo object contains a single instance of this object for ** each term in the FROM clause (which is to say, for each of the ** nested loops as implemented). The order of WhereLevel objects determines ** the loop nested order, with WhereInfo.a[0] being the outer loop and ** WhereInfo.a[WhereInfo.nLevel-1] being the inner loop. */ struct WhereLevel { int iLeftJoin; /* Memory cell used to implement LEFT OUTER JOIN */ int iTabCur; /* The VDBE cursor used to access the table */ int iIdxCur; /* The VDBE cursor used to access pIdx */ int addrBrk; /* Jump here to break out of the loop */ int addrNxt; /* Jump here to start the next IN combination */ int addrSkip; /* Jump here for next iteration of skip-scan */ int addrCont; /* Jump here to continue with the next loop cycle */ int addrFirst; /* First instruction of interior of the loop */ int addrBody; /* Beginning of the body of this loop */ int regBignull; /* big-null flag reg. True if a NULL-scan is needed */ int addrBignull; /* Jump here for next part of big-null scan */ #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS u32 iLikeRepCntr; /* LIKE range processing counter register (times 2) */ int addrLikeRep; /* LIKE range processing address */ #endif int regFilter; /* Bloom filter */ u8 iFrom; /* Which entry in the FROM clause */ u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */ int p1, p2; /* Operands of the opcode used to end the loop */ union { /* Information that depends on pWLoop->wsFlags */ struct { int nIn; /* Number of entries in aInLoop[] */ struct InLoop { int iCur; /* The VDBE cursor used by this IN operator */ int addrInTop; /* Top of the IN loop */ int iBase; /* Base register of multi-key index record */ int nPrefix; /* Number of prior entires in the key */ u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */ } *aInLoop; /* Information about each nested IN operator */ } in; /* Used when pWLoop->wsFlags&WHERE_IN_ABLE */ Index *pCoveringIdx; /* Possible covering index for WHERE_MULTI_OR */ } u; struct WhereLoop *pWLoop; /* The selected WhereLoop object */ Bitmask notReady; /* FROM entries not usable at this level */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS int addrVisit; /* Address at which row is visited */ #endif }; /* ** Each instance of this object represents an algorithm for evaluating one ** term of a join. Every term of the FROM clause will have at least ** one corresponding WhereLoop object (unless INDEXED BY constraints ** prevent a query solution - which is an error) and many terms of the ** FROM clause will have multiple WhereLoop objects, each describing a ** potential way of implementing that FROM-clause term, together with ** dependencies and cost estimates for using the chosen algorithm. ** ** Query planning consists of building up a collection of these WhereLoop ** objects, then computing a particular sequence of WhereLoop objects, with ** one WhereLoop object per FROM clause term, that satisfy all dependencies ** and that minimize the overall cost. */ struct WhereLoop { Bitmask prereq; /* Bitmask of other loops that must run first */ Bitmask maskSelf; /* Bitmask identifying table iTab */ #ifdef SQLITE_DEBUG char cId; /* Symbolic ID of this loop for debugging use */ #endif u8 iTab; /* Position in FROM clause of table for this loop */ u8 iSortIdx; /* Sorting index number. 0==None */ LogEst rSetup; /* One-time setup cost (ex: create transient index) */ LogEst rRun; /* Cost of running each loop */ LogEst nOut; /* Estimated number of output rows */ union { struct { /* Information for internal btree tables */ u16 nEq; /* Number of equality constraints */ u16 nBtm; /* Size of BTM vector */ u16 nTop; /* Size of TOP vector */ u16 nDistinctCol; /* Index columns used to sort for DISTINCT */ Index *pIndex; /* Index used, or NULL */ } btree; struct { /* Information for virtual tables */ int idxNum; /* Index number */ u32 needFree : 1; /* True if sqlite3_free(idxStr) is needed */ u32 bOmitOffset : 1; /* True to let virtual table handle offset */ i8 isOrdered; /* True if satisfies ORDER BY */ u16 omitMask; /* Terms that may be omitted */ char *idxStr; /* Index identifier string */ u32 mHandleIn; /* Terms to handle as IN(...) instead of == */ } vtab; } u; u32 wsFlags; /* WHERE_* flags describing the plan */ u16 nLTerm; /* Number of entries in aLTerm[] */ u16 nSkip; /* Number of NULL aLTerm[] entries */ /**** whereLoopXfer() copies fields above ***********************/ # define WHERE_LOOP_XFER_SZ offsetof(WhereLoop,nLSlot) u16 nLSlot; /* Number of slots allocated for aLTerm[] */ WhereTerm **aLTerm; /* WhereTerms used */ WhereLoop *pNextLoop; /* Next WhereLoop object in the WhereClause */ WhereTerm *aLTermSpace[3]; /* Initial aLTerm[] space */ }; /* This object holds the prerequisites and the cost of running a ** subquery on one operand of an OR operator in the WHERE clause. ** See WhereOrSet for additional information */ struct WhereOrCost { Bitmask prereq; /* Prerequisites */ LogEst rRun; /* Cost of running this subquery */ LogEst nOut; /* Number of outputs for this subquery */ }; /* The WhereOrSet object holds a set of possible WhereOrCosts that ** correspond to the subquery(s) of OR-clause processing. Only the ** best N_OR_COST elements are retained. */ #define N_OR_COST 3 struct WhereOrSet { u16 n; /* Number of valid a[] entries */ WhereOrCost a[N_OR_COST]; /* Set of best costs */ }; /* ** Each instance of this object holds a sequence of WhereLoop objects ** that implement some or all of a query plan. ** ** Think of each WhereLoop object as a node in a graph with arcs ** showing dependencies and costs for travelling between nodes. (That is ** not a completely accurate description because WhereLoop costs are a ** vector, not a scalar, and because dependencies are many-to-one, not ** one-to-one as are graph nodes. But it is a useful visualization aid.) ** Then a WherePath object is a path through the graph that visits some ** or all of the WhereLoop objects once. ** ** The "solver" works by creating the N best WherePath objects of length ** 1. Then using those as a basis to compute the N best WherePath objects ** of length 2. And so forth until the length of WherePaths equals the ** number of nodes in the FROM clause. The best (lowest cost) WherePath ** at the end is the chosen query plan. */ struct WherePath { Bitmask maskLoop; /* Bitmask of all WhereLoop objects in this path */ Bitmask revLoop; /* aLoop[]s that should be reversed for ORDER BY */ LogEst nRow; /* Estimated number of rows generated by this path */ LogEst rCost; /* Total cost of this path */ LogEst rUnsorted; /* Total cost of this path ignoring sorting costs */ i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */ WhereLoop **aLoop; /* Array of WhereLoop objects implementing this path */ }; /* ** The query generator uses an array of instances of this structure to ** help it analyze the subexpressions of the WHERE clause. Each WHERE ** clause subexpression is separated from the others by AND operators, ** usually, or sometimes subexpressions separated by OR. ** ** All WhereTerms are collected into a single WhereClause structure. ** The following identity holds: ** ** WhereTerm.pWC->a[WhereTerm.idx] == WhereTerm ** ** When a term is of the form: ** ** X ** ** where X is a column name and is one of certain operators, ** then WhereTerm.leftCursor and WhereTerm.u.leftColumn record the ** cursor number and column number for X. WhereTerm.eOperator records ** the using a bitmask encoding defined by WO_xxx below. The ** use of a bitmask encoding for the operator allows us to search ** quickly for terms that match any of several different operators. ** ** A WhereTerm might also be two or more subterms connected by OR: ** ** (t1.X ) OR (t1.Y ) OR .... ** ** In this second case, wtFlag has the TERM_ORINFO bit set and eOperator==WO_OR ** and the WhereTerm.u.pOrInfo field points to auxiliary information that ** is collected about the OR clause. ** ** If a term in the WHERE clause does not match either of the two previous ** categories, then eOperator==0. The WhereTerm.pExpr field is still set ** to the original subexpression content and wtFlags is set up appropriately ** but no other fields in the WhereTerm object are meaningful. ** ** When eOperator!=0, prereqRight and prereqAll record sets of cursor numbers, ** but they do so indirectly. A single WhereMaskSet structure translates ** cursor number into bits and the translated bit is stored in the prereq ** fields. The translation is used in order to maximize the number of ** bits that will fit in a Bitmask. The VDBE cursor numbers might be ** spread out over the non-negative integers. For example, the cursor ** numbers might be 3, 8, 9, 10, 20, 23, 41, and 45. The WhereMaskSet ** translates these sparse cursor numbers into consecutive integers ** beginning with 0 in order to make the best possible use of the available ** bits in the Bitmask. So, in the example above, the cursor numbers ** would be mapped into integers 0 through 7. ** ** The number of terms in a join is limited by the number of bits ** in prereqRight and prereqAll. The default is 64 bits, hence SQLite ** is only able to process joins with 64 or fewer tables. */ struct WhereTerm { Expr *pExpr; /* Pointer to the subexpression that is this term */ WhereClause *pWC; /* The clause this term is part of */ LogEst truthProb; /* Probability of truth for this expression */ u16 wtFlags; /* TERM_xxx bit flags. See below */ u16 eOperator; /* A WO_xx value describing */ u8 nChild; /* Number of children that must disable us */ u8 eMatchOp; /* Op for vtab MATCH/LIKE/GLOB/REGEXP terms */ int iParent; /* Disable pWC->a[iParent] when this term disabled */ int leftCursor; /* Cursor number of X in "X " */ union { struct { int leftColumn; /* Column number of X in "X " */ int iField; /* Field in (?,?,?) IN (SELECT...) vector */ } x; /* Opcode other than OP_OR or OP_AND */ WhereOrInfo *pOrInfo; /* Extra information if (eOperator & WO_OR)!=0 */ WhereAndInfo *pAndInfo; /* Extra information if (eOperator& WO_AND)!=0 */ } u; Bitmask prereqRight; /* Bitmask of tables used by pExpr->pRight */ Bitmask prereqAll; /* Bitmask of tables referenced by pExpr */ }; /* ** Allowed values of WhereTerm.wtFlags */ #define TERM_DYNAMIC 0x0001 /* Need to call sqlite3ExprDelete(db, pExpr) */ #define TERM_VIRTUAL 0x0002 /* Added by the optimizer. Do not code */ #define TERM_CODED 0x0004 /* This term is already coded */ #define TERM_COPIED 0x0008 /* Has a child */ #define TERM_ORINFO 0x0010 /* Need to free the WhereTerm.u.pOrInfo object */ #define TERM_ANDINFO 0x0020 /* Need to free the WhereTerm.u.pAndInfo obj */ #define TERM_OK 0x0040 /* Used during OR-clause processing */ #define TERM_VNULL 0x0080 /* Manufactured x>NULL or x<=NULL term */ #define TERM_LIKEOPT 0x0100 /* Virtual terms from the LIKE optimization */ #define TERM_LIKECOND 0x0200 /* Conditionally this LIKE operator term */ #define TERM_LIKE 0x0400 /* The original LIKE operator */ #define TERM_IS 0x0800 /* Term.pExpr is an IS operator */ #define TERM_VARSELECT 0x1000 /* Term.pExpr contains a correlated sub-query */ #define TERM_HEURTRUTH 0x2000 /* Heuristic truthProb used */ #ifdef SQLITE_ENABLE_STAT4 # define TERM_HIGHTRUTH 0x4000 /* Term excludes few rows */ #else # define TERM_HIGHTRUTH 0 /* Only used with STAT4 */ #endif #define TERM_SLICE 0x8000 /* One slice of a row-value/vector comparison */ /* ** An instance of the WhereScan object is used as an iterator for locating ** terms in the WHERE clause that are useful to the query planner. */ struct WhereScan { WhereClause *pOrigWC; /* Original, innermost WhereClause */ WhereClause *pWC; /* WhereClause currently being scanned */ const char *zCollName; /* Required collating sequence, if not NULL */ Expr *pIdxExpr; /* Search for this index expression */ int k; /* Resume scanning at this->pWC->a[this->k] */ u32 opMask; /* Acceptable operators */ char idxaff; /* Must match this affinity, if zCollName!=NULL */ unsigned char iEquiv; /* Current slot in aiCur[] and aiColumn[] */ unsigned char nEquiv; /* Number of entries in aiCur[] and aiColumn[] */ int aiCur[11]; /* Cursors in the equivalence class */ i16 aiColumn[11]; /* Corresponding column number in the eq-class */ }; /* ** An instance of the following structure holds all information about a ** WHERE clause. Mostly this is a container for one or more WhereTerms. ** ** Explanation of pOuter: For a WHERE clause of the form ** ** a AND ((b AND c) OR (d AND e)) AND f ** ** There are separate WhereClause objects for the whole clause and for ** the subclauses "(b AND c)" and "(d AND e)". The pOuter field of the ** subclauses points to the WhereClause object for the whole clause. */ struct WhereClause { WhereInfo *pWInfo; /* WHERE clause processing context */ WhereClause *pOuter; /* Outer conjunction */ u8 op; /* Split operator. TK_AND or TK_OR */ u8 hasOr; /* True if any a[].eOperator is WO_OR */ int nTerm; /* Number of terms */ int nSlot; /* Number of entries in a[] */ int nBase; /* Number of terms through the last non-Virtual */ WhereTerm *a; /* Each a[] describes a term of the WHERE cluase */ #if defined(SQLITE_SMALL_STACK) WhereTerm aStatic[1]; /* Initial static space for a[] */ #else WhereTerm aStatic[8]; /* Initial static space for a[] */ #endif }; /* ** A WhereTerm with eOperator==WO_OR has its u.pOrInfo pointer set to ** a dynamically allocated instance of the following structure. */ struct WhereOrInfo { WhereClause wc; /* Decomposition into subterms */ Bitmask indexable; /* Bitmask of all indexable tables in the clause */ }; /* ** A WhereTerm with eOperator==WO_AND has its u.pAndInfo pointer set to ** a dynamically allocated instance of the following structure. */ struct WhereAndInfo { WhereClause wc; /* The subexpression broken out */ }; /* ** An instance of the following structure keeps track of a mapping ** between VDBE cursor numbers and bits of the bitmasks in WhereTerm. ** ** The VDBE cursor numbers are small integers contained in ** SrcList_item.iCursor and Expr.iTable fields. For any given WHERE ** clause, the cursor numbers might not begin with 0 and they might ** contain gaps in the numbering sequence. But we want to make maximum ** use of the bits in our bitmasks. This structure provides a mapping ** from the sparse cursor numbers into consecutive integers beginning ** with 0. ** ** If WhereMaskSet.ix[A]==B it means that The A-th bit of a Bitmask ** corresponds VDBE cursor number B. The A-th bit of a bitmask is 1<3, 5->1, 8->2, 29->0, ** 57->5, 73->4. Or one of 719 other combinations might be used. It ** does not really matter. What is important is that sparse cursor ** numbers all get mapped into bit numbers that begin with 0 and contain ** no gaps. */ struct WhereMaskSet { int bVarSelect; /* Used by sqlite3WhereExprUsage() */ int n; /* Number of assigned cursor values */ int ix[BMS]; /* Cursor assigned to each bit */ }; /* ** This object is a convenience wrapper holding all information needed ** to construct WhereLoop objects for a particular query. */ struct WhereLoopBuilder { WhereInfo *pWInfo; /* Information about this WHERE */ WhereClause *pWC; /* WHERE clause terms */ WhereLoop *pNew; /* Template WhereLoop */ WhereOrSet *pOrSet; /* Record best loops here, if not NULL */ #ifdef SQLITE_ENABLE_STAT4 UnpackedRecord *pRec; /* Probe for stat4 (if required) */ int nRecValid; /* Number of valid fields currently in pRec */ #endif unsigned char bldFlags1; /* First set of SQLITE_BLDF_* flags */ unsigned char bldFlags2; /* Second set of SQLITE_BLDF_* flags */ unsigned int iPlanLimit; /* Search limiter */ }; /* Allowed values for WhereLoopBuider.bldFlags */ #define SQLITE_BLDF1_INDEXED 0x0001 /* An index is used */ #define SQLITE_BLDF1_UNIQUE 0x0002 /* All keys of a UNIQUE index used */ #define SQLITE_BLDF2_2NDPASS 0x0004 /* Second builder pass needed */ /* The WhereLoopBuilder.iPlanLimit is used to limit the number of ** index+constraint combinations the query planner will consider for a ** particular query. If this parameter is unlimited, then certain ** pathological queries can spend excess time in the sqlite3WhereBegin() ** routine. The limit is high enough that is should not impact real-world ** queries. ** ** SQLITE_QUERY_PLANNER_LIMIT is the baseline limit. The limit is ** increased by SQLITE_QUERY_PLANNER_LIMIT_INCR before each term of the FROM ** clause is processed, so that every table in a join is guaranteed to be ** able to propose a some index+constraint combinations even if the initial ** baseline limit was exhausted by prior tables of the join. */ #ifndef SQLITE_QUERY_PLANNER_LIMIT # define SQLITE_QUERY_PLANNER_LIMIT 20000 #endif #ifndef SQLITE_QUERY_PLANNER_LIMIT_INCR # define SQLITE_QUERY_PLANNER_LIMIT_INCR 1000 #endif /* ** Each instance of this object records a change to a single node ** in an expression tree to cause that node to point to a column ** of an index rather than an expression or a virtual column. All ** such transformations need to be undone at the end of WHERE clause ** processing. */ typedef struct WhereExprMod WhereExprMod; struct WhereExprMod { WhereExprMod *pNext; /* Next translation on a list of them all */ Expr *pExpr; /* The Expr node that was transformed */ Expr orig; /* Original value of the Expr node */ }; /* ** The WHERE clause processing routine has two halves. The ** first part does the start of the WHERE loop and the second ** half does the tail of the WHERE loop. An instance of ** this structure is returned by the first half and passed ** into the second half to give some continuity. ** ** An instance of this object holds the complete state of the query ** planner. */ struct WhereInfo { Parse *pParse; /* Parsing and code generating context */ SrcList *pTabList; /* List of tables in the join */ ExprList *pOrderBy; /* The ORDER BY clause or NULL */ ExprList *pResultSet; /* Result set of the query */ Expr *pWhere; /* The complete WHERE clause */ #ifndef SQLITE_OMIT_VIRTUALTABLE Select *pLimit; /* Used to access LIMIT expr/registers for vtabs */ #endif int aiCurOnePass[2]; /* OP_OpenWrite cursors for the ONEPASS opt */ int iContinue; /* Jump here to continue with next record */ int iBreak; /* Jump here to break out of the loop */ int savedNQueryLoop; /* pParse->nQueryLoop outside the WHERE loop */ u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */ LogEst iLimit; /* LIMIT if wctrlFlags has WHERE_USE_LIMIT */ u8 nLevel; /* Number of nested loop */ i8 nOBSat; /* Number of ORDER BY terms satisfied by indices */ u8 eOnePass; /* ONEPASS_OFF, or _SINGLE, or _MULTI */ u8 eDistinct; /* One of the WHERE_DISTINCT_* values */ unsigned bDeferredSeek :1; /* Uses OP_DeferredSeek */ unsigned untestedTerms :1; /* Not all WHERE terms resolved by outer loop */ unsigned bOrderedInnerLoop:1;/* True if only the inner-most loop is ordered */ unsigned sorted :1; /* True if really sorted (not just grouped) */ LogEst nRowOut; /* Estimated number of output rows */ int iTop; /* The very beginning of the WHERE loop */ int iEndWhere; /* End of the WHERE clause itself */ WhereLoop *pLoops; /* List of all WhereLoop objects */ WhereExprMod *pExprMods; /* Expression modifications */ Bitmask revMask; /* Mask of ORDER BY terms that need reversing */ WhereClause sWC; /* Decomposition of the WHERE clause */ WhereMaskSet sMaskSet; /* Map cursor numbers to bitmasks */ WhereLevel a[1]; /* Information about each nest loop in WHERE */ }; /* ** Private interfaces - callable only by other where.c routines. ** ** where.c: */ SQLITE_PRIVATE Bitmask sqlite3WhereGetMask(WhereMaskSet*,int); #ifdef WHERETRACE_ENABLED SQLITE_PRIVATE void sqlite3WhereClausePrint(WhereClause *pWC); SQLITE_PRIVATE void sqlite3WhereTermPrint(WhereTerm *pTerm, int iTerm); SQLITE_PRIVATE void sqlite3WhereLoopPrint(WhereLoop *p, WhereClause *pWC); #endif SQLITE_PRIVATE WhereTerm *sqlite3WhereFindTerm( WhereClause *pWC, /* The WHERE clause to be searched */ int iCur, /* Cursor number of LHS */ int iColumn, /* Column number of LHS */ Bitmask notReady, /* RHS must not overlap with this mask */ u32 op, /* Mask of WO_xx values describing operator */ Index *pIdx /* Must be compatible with this index, if not NULL */ ); /* wherecode.c: */ #ifndef SQLITE_OMIT_EXPLAIN SQLITE_PRIVATE int sqlite3WhereExplainOneScan( Parse *pParse, /* Parse context */ SrcList *pTabList, /* Table list this loop refers to */ WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */ u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */ ); SQLITE_PRIVATE int sqlite3WhereExplainBloomFilter( const Parse *pParse, /* Parse context */ const WhereInfo *pWInfo, /* WHERE clause */ const WhereLevel *pLevel /* Bloom filter on this level */ ); #else # define sqlite3WhereExplainOneScan(u,v,w,x) 0 # define sqlite3WhereExplainBloomFilter(u,v,w) 0 #endif /* SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS SQLITE_PRIVATE void sqlite3WhereAddScanStatus( Vdbe *v, /* Vdbe to add scanstatus entry to */ SrcList *pSrclist, /* FROM clause pLvl reads data from */ WhereLevel *pLvl, /* Level to add scanstatus() entry for */ int addrExplain /* Address of OP_Explain (or 0) */ ); #else # define sqlite3WhereAddScanStatus(a, b, c, d) ((void)d) #endif SQLITE_PRIVATE Bitmask sqlite3WhereCodeOneLoopStart( Parse *pParse, /* Parsing context */ Vdbe *v, /* Prepared statement under construction */ WhereInfo *pWInfo, /* Complete information about the WHERE clause */ int iLevel, /* Which level of pWInfo->a[] should be coded */ WhereLevel *pLevel, /* The current level pointer */ Bitmask notReady /* Which tables are currently available */ ); /* whereexpr.c: */ SQLITE_PRIVATE void sqlite3WhereClauseInit(WhereClause*,WhereInfo*); SQLITE_PRIVATE void sqlite3WhereClauseClear(WhereClause*); SQLITE_PRIVATE void sqlite3WhereSplit(WhereClause*,Expr*,u8); SQLITE_PRIVATE void sqlite3WhereAddLimit(WhereClause*, Select*); SQLITE_PRIVATE Bitmask sqlite3WhereExprUsage(WhereMaskSet*, Expr*); SQLITE_PRIVATE Bitmask sqlite3WhereExprUsageNN(WhereMaskSet*, Expr*); SQLITE_PRIVATE Bitmask sqlite3WhereExprListUsage(WhereMaskSet*, ExprList*); SQLITE_PRIVATE void sqlite3WhereExprAnalyze(SrcList*, WhereClause*); SQLITE_PRIVATE void sqlite3WhereTabFuncArgs(Parse*, SrcItem*, WhereClause*); /* ** Bitmasks for the operators on WhereTerm objects. These are all ** operators that are of interest to the query planner. An ** OR-ed combination of these values can be used when searching for ** particular WhereTerms within a WhereClause. ** ** Value constraints: ** WO_EQ == SQLITE_INDEX_CONSTRAINT_EQ ** WO_LT == SQLITE_INDEX_CONSTRAINT_LT ** WO_LE == SQLITE_INDEX_CONSTRAINT_LE ** WO_GT == SQLITE_INDEX_CONSTRAINT_GT ** WO_GE == SQLITE_INDEX_CONSTRAINT_GE */ #define WO_IN 0x0001 #define WO_EQ 0x0002 #define WO_LT (WO_EQ<<(TK_LT-TK_EQ)) #define WO_LE (WO_EQ<<(TK_LE-TK_EQ)) #define WO_GT (WO_EQ<<(TK_GT-TK_EQ)) #define WO_GE (WO_EQ<<(TK_GE-TK_EQ)) #define WO_AUX 0x0040 /* Op useful to virtual tables only */ #define WO_IS 0x0080 #define WO_ISNULL 0x0100 #define WO_OR 0x0200 /* Two or more OR-connected terms */ #define WO_AND 0x0400 /* Two or more AND-connected terms */ #define WO_EQUIV 0x0800 /* Of the form A==B, both columns */ #define WO_NOOP 0x1000 /* This term does not restrict search space */ #define WO_ALL 0x1fff /* Mask of all possible WO_* values */ #define WO_SINGLE 0x01ff /* Mask of all non-compound WO_* values */ /* ** These are definitions of bits in the WhereLoop.wsFlags field. ** The particular combination of bits in each WhereLoop help to ** determine the algorithm that WhereLoop represents. */ #define WHERE_COLUMN_EQ 0x00000001 /* x=EXPR */ #define WHERE_COLUMN_RANGE 0x00000002 /* xEXPR */ #define WHERE_COLUMN_IN 0x00000004 /* x IN (...) */ #define WHERE_COLUMN_NULL 0x00000008 /* x IS NULL */ #define WHERE_CONSTRAINT 0x0000000f /* Any of the WHERE_COLUMN_xxx values */ #define WHERE_TOP_LIMIT 0x00000010 /* xEXPR or x>=EXPR constraint */ #define WHERE_BOTH_LIMIT 0x00000030 /* Both x>EXPR and xaiColumn[i]; if( i==XN_EXPR ) return ""; if( i==XN_ROWID ) return "rowid"; return pIdx->pTable->aCol[i].zCnName; } /* ** This routine is a helper for explainIndexRange() below ** ** pStr holds the text of an expression that we are building up one term ** at a time. This routine adds a new term to the end of the expression. ** Terms are separated by AND so add the "AND" text for second and subsequent ** terms only. */ static void explainAppendTerm( StrAccum *pStr, /* The text expression being built */ Index *pIdx, /* Index to read column names from */ int nTerm, /* Number of terms */ int iTerm, /* Zero-based index of first term. */ int bAnd, /* Non-zero to append " AND " */ const char *zOp /* Name of the operator */ ){ int i; assert( nTerm>=1 ); if( bAnd ) sqlite3_str_append(pStr, " AND ", 5); if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); for(i=0; i1 ) sqlite3_str_append(pStr, ")", 1); sqlite3_str_append(pStr, zOp, 1); if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); for(i=0; i1 ) sqlite3_str_append(pStr, ")", 1); } /* ** Argument pLevel describes a strategy for scanning table pTab. This ** function appends text to pStr that describes the subset of table ** rows scanned by the strategy in the form of an SQL expression. ** ** For example, if the query: ** ** SELECT * FROM t1 WHERE a=1 AND b>2; ** ** is run and there is an index on (a, b), then this function returns a ** string similar to: ** ** "a=? AND b>?" */ static void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop){ Index *pIndex = pLoop->u.btree.pIndex; u16 nEq = pLoop->u.btree.nEq; u16 nSkip = pLoop->nSkip; int i, j; if( nEq==0 && (pLoop->wsFlags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))==0 ) return; sqlite3_str_append(pStr, " (", 2); for(i=0; i=nSkip ? "%s=?" : "ANY(%s)", z); } j = i; if( pLoop->wsFlags&WHERE_BTM_LIMIT ){ explainAppendTerm(pStr, pIndex, pLoop->u.btree.nBtm, j, i, ">"); i = 1; } if( pLoop->wsFlags&WHERE_TOP_LIMIT ){ explainAppendTerm(pStr, pIndex, pLoop->u.btree.nTop, j, i, "<"); } sqlite3_str_append(pStr, ")", 1); } /* ** This function is a no-op unless currently processing an EXPLAIN QUERY PLAN ** command, or if either SQLITE_DEBUG or SQLITE_ENABLE_STMT_SCANSTATUS was ** defined at compile-time. If it is not a no-op, a single OP_Explain opcode ** is added to the output to describe the table scan strategy in pLevel. ** ** If an OP_Explain opcode is added to the VM, its address is returned. ** Otherwise, if no OP_Explain is coded, zero is returned. */ SQLITE_PRIVATE int sqlite3WhereExplainOneScan( Parse *pParse, /* Parse context */ SrcList *pTabList, /* Table list this loop refers to */ WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */ u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */ ){ int ret = 0; #if !defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_STMT_SCANSTATUS) if( sqlite3ParseToplevel(pParse)->explain==2 ) #endif { SrcItem *pItem = &pTabList->a[pLevel->iFrom]; Vdbe *v = pParse->pVdbe; /* VM being constructed */ sqlite3 *db = pParse->db; /* Database handle */ int isSearch; /* True for a SEARCH. False for SCAN. */ WhereLoop *pLoop; /* The controlling WhereLoop object */ u32 flags; /* Flags that describe this loop */ char *zMsg; /* Text to add to EQP output */ StrAccum str; /* EQP output string */ char zBuf[100]; /* Initial space for EQP output string */ pLoop = pLevel->pWLoop; flags = pLoop->wsFlags; if( (flags&WHERE_MULTI_OR) || (wctrlFlags&WHERE_OR_SUBCLAUSE) ) return 0; isSearch = (flags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))!=0 || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0)) || (wctrlFlags&(WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX)); sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH); str.printfFlags = SQLITE_PRINTF_INTERNAL; sqlite3_str_appendf(&str, "%s %S", isSearch ? "SEARCH" : "SCAN", pItem); if( (flags & (WHERE_IPK|WHERE_VIRTUALTABLE))==0 ){ const char *zFmt = 0; Index *pIdx; assert( pLoop->u.btree.pIndex!=0 ); pIdx = pLoop->u.btree.pIndex; assert( !(flags&WHERE_AUTO_INDEX) || (flags&WHERE_IDX_ONLY) ); if( !HasRowid(pItem->pTab) && IsPrimaryKeyIndex(pIdx) ){ if( isSearch ){ zFmt = "PRIMARY KEY"; } }else if( flags & WHERE_PARTIALIDX ){ zFmt = "AUTOMATIC PARTIAL COVERING INDEX"; }else if( flags & WHERE_AUTO_INDEX ){ zFmt = "AUTOMATIC COVERING INDEX"; }else if( flags & WHERE_IDX_ONLY ){ zFmt = "COVERING INDEX %s"; }else{ zFmt = "INDEX %s"; } if( zFmt ){ sqlite3_str_append(&str, " USING ", 7); sqlite3_str_appendf(&str, zFmt, pIdx->zName); explainIndexRange(&str, pLoop); } }else if( (flags & WHERE_IPK)!=0 && (flags & WHERE_CONSTRAINT)!=0 ){ char cRangeOp; #if 0 /* Better output, but breaks many tests */ const Table *pTab = pItem->pTab; const char *zRowid = pTab->iPKey>=0 ? pTab->aCol[pTab->iPKey].zCnName: "rowid"; #else const char *zRowid = "rowid"; #endif sqlite3_str_appendf(&str, " USING INTEGER PRIMARY KEY (%s", zRowid); if( flags&(WHERE_COLUMN_EQ|WHERE_COLUMN_IN) ){ cRangeOp = '='; }else if( (flags&WHERE_BOTH_LIMIT)==WHERE_BOTH_LIMIT ){ sqlite3_str_appendf(&str, ">? AND %s", zRowid); cRangeOp = '<'; }else if( flags&WHERE_BTM_LIMIT ){ cRangeOp = '>'; }else{ assert( flags&WHERE_TOP_LIMIT); cRangeOp = '<'; } sqlite3_str_appendf(&str, "%c?)", cRangeOp); } #ifndef SQLITE_OMIT_VIRTUALTABLE else if( (flags & WHERE_VIRTUALTABLE)!=0 ){ sqlite3_str_appendf(&str, " VIRTUAL TABLE INDEX %d:%s", pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr); } #endif #ifdef SQLITE_EXPLAIN_ESTIMATED_ROWS if( pLoop->nOut>=10 ){ sqlite3_str_appendf(&str, " (~%llu rows)", sqlite3LogEstToInt(pLoop->nOut)); }else{ sqlite3_str_append(&str, " (~1 row)", 9); } #endif zMsg = sqlite3StrAccumFinish(&str); sqlite3ExplainBreakpoint("",zMsg); ret = sqlite3VdbeAddOp4(v, OP_Explain, sqlite3VdbeCurrentAddr(v), pParse->addrExplain, 0, zMsg,P4_DYNAMIC); } return ret; } /* ** Add a single OP_Explain opcode that describes a Bloom filter. ** ** Or if not processing EXPLAIN QUERY PLAN and not in a SQLITE_DEBUG and/or ** SQLITE_ENABLE_STMT_SCANSTATUS build, then OP_Explain opcodes are not ** required and this routine is a no-op. ** ** If an OP_Explain opcode is added to the VM, its address is returned. ** Otherwise, if no OP_Explain is coded, zero is returned. */ SQLITE_PRIVATE int sqlite3WhereExplainBloomFilter( const Parse *pParse, /* Parse context */ const WhereInfo *pWInfo, /* WHERE clause */ const WhereLevel *pLevel /* Bloom filter on this level */ ){ int ret = 0; SrcItem *pItem = &pWInfo->pTabList->a[pLevel->iFrom]; Vdbe *v = pParse->pVdbe; /* VM being constructed */ sqlite3 *db = pParse->db; /* Database handle */ char *zMsg; /* Text to add to EQP output */ int i; /* Loop counter */ WhereLoop *pLoop; /* The where loop */ StrAccum str; /* EQP output string */ char zBuf[100]; /* Initial space for EQP output string */ sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH); str.printfFlags = SQLITE_PRINTF_INTERNAL; sqlite3_str_appendf(&str, "BLOOM FILTER ON %S (", pItem); pLoop = pLevel->pWLoop; if( pLoop->wsFlags & WHERE_IPK ){ const Table *pTab = pItem->pTab; if( pTab->iPKey>=0 ){ sqlite3_str_appendf(&str, "%s=?", pTab->aCol[pTab->iPKey].zCnName); }else{ sqlite3_str_appendf(&str, "rowid=?"); } }else{ for(i=pLoop->nSkip; iu.btree.nEq; i++){ const char *z = explainIndexColumnName(pLoop->u.btree.pIndex, i); if( i>pLoop->nSkip ) sqlite3_str_append(&str, " AND ", 5); sqlite3_str_appendf(&str, "%s=?", z); } } sqlite3_str_append(&str, ")", 1); zMsg = sqlite3StrAccumFinish(&str); ret = sqlite3VdbeAddOp4(v, OP_Explain, sqlite3VdbeCurrentAddr(v), pParse->addrExplain, 0, zMsg,P4_DYNAMIC); return ret; } #endif /* SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS /* ** Configure the VM passed as the first argument with an ** sqlite3_stmt_scanstatus() entry corresponding to the scan used to ** implement level pLvl. Argument pSrclist is a pointer to the FROM ** clause that the scan reads data from. ** ** If argument addrExplain is not 0, it must be the address of an ** OP_Explain instruction that describes the same loop. */ SQLITE_PRIVATE void sqlite3WhereAddScanStatus( Vdbe *v, /* Vdbe to add scanstatus entry to */ SrcList *pSrclist, /* FROM clause pLvl reads data from */ WhereLevel *pLvl, /* Level to add scanstatus() entry for */ int addrExplain /* Address of OP_Explain (or 0) */ ){ const char *zObj = 0; WhereLoop *pLoop = pLvl->pWLoop; if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 ){ zObj = pLoop->u.btree.pIndex->zName; }else{ zObj = pSrclist->a[pLvl->iFrom].zName; } sqlite3VdbeScanStatus( v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj ); } #endif /* ** Disable a term in the WHERE clause. Except, do not disable the term ** if it controls a LEFT OUTER JOIN and it did not originate in the ON ** or USING clause of that join. ** ** Consider the term t2.z='ok' in the following queries: ** ** (1) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok' ** (2) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok' ** (3) SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok' ** ** The t2.z='ok' is disabled in the in (2) because it originates ** in the ON clause. The term is disabled in (3) because it is not part ** of a LEFT OUTER JOIN. In (1), the term is not disabled. ** ** Disabling a term causes that term to not be tested in the inner loop ** of the join. Disabling is an optimization. When terms are satisfied ** by indices, we disable them to prevent redundant tests in the inner ** loop. We would get the correct results if nothing were ever disabled, ** but joins might run a little slower. The trick is to disable as much ** as we can without disabling too much. If we disabled in (1), we'd get ** the wrong answer. See ticket #813. ** ** If all the children of a term are disabled, then that term is also ** automatically disabled. In this way, terms get disabled if derived ** virtual terms are tested first. For example: ** ** x GLOB 'abc*' AND x>='abc' AND x<'acd' ** \___________/ \______/ \_____/ ** parent child1 child2 ** ** Only the parent term was in the original WHERE clause. The child1 ** and child2 terms were added by the LIKE optimization. If both of ** the virtual child terms are valid, then testing of the parent can be ** skipped. ** ** Usually the parent term is marked as TERM_CODED. But if the parent ** term was originally TERM_LIKE, then the parent gets TERM_LIKECOND instead. ** The TERM_LIKECOND marking indicates that the term should be coded inside ** a conditional such that is only evaluated on the second pass of a ** LIKE-optimization loop, when scanning BLOBs instead of strings. */ static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){ int nLoop = 0; assert( pTerm!=0 ); while( (pTerm->wtFlags & TERM_CODED)==0 && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin)) && (pLevel->notReady & pTerm->prereqAll)==0 ){ if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){ pTerm->wtFlags |= TERM_LIKECOND; }else{ pTerm->wtFlags |= TERM_CODED; } #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace & 0x20000 ){ sqlite3DebugPrintf("DISABLE-"); sqlite3WhereTermPrint(pTerm, (int)(pTerm - (pTerm->pWC->a))); } #endif if( pTerm->iParent<0 ) break; pTerm = &pTerm->pWC->a[pTerm->iParent]; assert( pTerm!=0 ); pTerm->nChild--; if( pTerm->nChild!=0 ) break; nLoop++; } } /* ** Code an OP_Affinity opcode to apply the column affinity string zAff ** to the n registers starting at base. ** ** As an optimization, SQLITE_AFF_BLOB and SQLITE_AFF_NONE entries (which ** are no-ops) at the beginning and end of zAff are ignored. If all entries ** in zAff are SQLITE_AFF_BLOB or SQLITE_AFF_NONE, then no code gets generated. ** ** This routine makes its own copy of zAff so that the caller is free ** to modify zAff after this routine returns. */ static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){ Vdbe *v = pParse->pVdbe; if( zAff==0 ){ assert( pParse->db->mallocFailed ); return; } assert( v!=0 ); /* Adjust base and n to skip over SQLITE_AFF_BLOB and SQLITE_AFF_NONE ** entries at the beginning and end of the affinity string. */ assert( SQLITE_AFF_NONE0 && zAff[0]<=SQLITE_AFF_BLOB ){ n--; base++; zAff++; } while( n>1 && zAff[n-1]<=SQLITE_AFF_BLOB ){ n--; } /* Code the OP_Affinity opcode if there is anything left to do. */ if( n>0 ){ sqlite3VdbeAddOp4(v, OP_Affinity, base, n, 0, zAff, n); } } /* ** Expression pRight, which is the RHS of a comparison operation, is ** either a vector of n elements or, if n==1, a scalar expression. ** Before the comparison operation, affinity zAff is to be applied ** to the pRight values. This function modifies characters within the ** affinity string to SQLITE_AFF_BLOB if either: ** ** * the comparison will be performed with no affinity, or ** * the affinity change in zAff is guaranteed not to change the value. */ static void updateRangeAffinityStr( Expr *pRight, /* RHS of comparison */ int n, /* Number of vector elements in comparison */ char *zAff /* Affinity string to modify */ ){ int i; for(i=0; idb; Expr *pNew; pNew = sqlite3ExprDup(db, pX, 0); if( db->mallocFailed==0 ){ ExprList *pOrigRhs; /* Original unmodified RHS */ ExprList *pOrigLhs; /* Original unmodified LHS */ ExprList *pRhs = 0; /* New RHS after modifications */ ExprList *pLhs = 0; /* New LHS after mods */ int i; /* Loop counter */ Select *pSelect; /* Pointer to the SELECT on the RHS */ assert( ExprUseXSelect(pNew) ); pOrigRhs = pNew->x.pSelect->pEList; assert( pNew->pLeft!=0 ); assert( ExprUseXList(pNew->pLeft) ); pOrigLhs = pNew->pLeft->x.pList; for(i=iEq; inLTerm; i++){ if( pLoop->aLTerm[i]->pExpr==pX ){ int iField; assert( (pLoop->aLTerm[i]->eOperator & (WO_OR|WO_AND))==0 ); iField = pLoop->aLTerm[i]->u.x.iField - 1; if( pOrigRhs->a[iField].pExpr==0 ) continue; /* Duplicate PK column */ pRhs = sqlite3ExprListAppend(pParse, pRhs, pOrigRhs->a[iField].pExpr); pOrigRhs->a[iField].pExpr = 0; assert( pOrigLhs->a[iField].pExpr!=0 ); pLhs = sqlite3ExprListAppend(pParse, pLhs, pOrigLhs->a[iField].pExpr); pOrigLhs->a[iField].pExpr = 0; } } sqlite3ExprListDelete(db, pOrigRhs); sqlite3ExprListDelete(db, pOrigLhs); pNew->pLeft->x.pList = pLhs; pNew->x.pSelect->pEList = pRhs; if( pLhs && pLhs->nExpr==1 ){ /* Take care here not to generate a TK_VECTOR containing only a ** single value. Since the parser never creates such a vector, some ** of the subroutines do not handle this case. */ Expr *p = pLhs->a[0].pExpr; pLhs->a[0].pExpr = 0; sqlite3ExprDelete(db, pNew->pLeft); pNew->pLeft = p; } pSelect = pNew->x.pSelect; if( pSelect->pOrderBy ){ /* If the SELECT statement has an ORDER BY clause, zero the ** iOrderByCol variables. These are set to non-zero when an ** ORDER BY term exactly matches one of the terms of the ** result-set. Since the result-set of the SELECT statement may ** have been modified or reordered, these variables are no longer ** set correctly. Since setting them is just an optimization, ** it's easiest just to zero them here. */ ExprList *pOrderBy = pSelect->pOrderBy; for(i=0; inExpr; i++){ pOrderBy->a[i].u.x.iOrderByCol = 0; } } #if 0 printf("For indexing, change the IN expr:\n"); sqlite3TreeViewExpr(0, pX, 0); printf("Into:\n"); sqlite3TreeViewExpr(0, pNew, 0); #endif } return pNew; } /* ** Generate code for a single equality term of the WHERE clause. An equality ** term can be either X=expr or X IN (...). pTerm is the term to be ** coded. ** ** The current value for the constraint is left in a register, the index ** of which is returned. An attempt is made store the result in iTarget but ** this is only guaranteed for TK_ISNULL and TK_IN constraints. If the ** constraint is a TK_EQ or TK_IS, then the current value might be left in ** some other register and it is the caller's responsibility to compensate. ** ** For a constraint of the form X=expr, the expression is evaluated in ** straight-line code. For constraints of the form X IN (...) ** this routine sets up a loop that will iterate over all values of X. */ static int codeEqualityTerm( Parse *pParse, /* The parsing context */ WhereTerm *pTerm, /* The term of the WHERE clause to be coded */ WhereLevel *pLevel, /* The level of the FROM clause we are working on */ int iEq, /* Index of the equality term within this level */ int bRev, /* True for reverse-order IN operations */ int iTarget /* Attempt to leave results in this register */ ){ Expr *pX = pTerm->pExpr; Vdbe *v = pParse->pVdbe; int iReg; /* Register holding results */ assert( pLevel->pWLoop->aLTerm[iEq]==pTerm ); assert( iTarget>0 ); if( pX->op==TK_EQ || pX->op==TK_IS ){ iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget); }else if( pX->op==TK_ISNULL ){ iReg = iTarget; sqlite3VdbeAddOp2(v, OP_Null, 0, iReg); #ifndef SQLITE_OMIT_SUBQUERY }else{ int eType = IN_INDEX_NOOP; int iTab; struct InLoop *pIn; WhereLoop *pLoop = pLevel->pWLoop; int i; int nEq = 0; int *aiMap = 0; if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 && pLoop->u.btree.pIndex->aSortOrder[iEq] ){ testcase( iEq==0 ); testcase( bRev ); bRev = !bRev; } assert( pX->op==TK_IN ); iReg = iTarget; for(i=0; iaLTerm[i] && pLoop->aLTerm[i]->pExpr==pX ){ disableTerm(pLevel, pTerm); return iTarget; } } for(i=iEq;inLTerm; i++){ assert( pLoop->aLTerm[i]!=0 ); if( pLoop->aLTerm[i]->pExpr==pX ) nEq++; } iTab = 0; if( !ExprUseXSelect(pX) || pX->x.pSelect->pEList->nExpr==1 ){ eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, 0, &iTab); }else{ sqlite3 *db = pParse->db; pX = removeUnindexableInClauseTerms(pParse, iEq, pLoop, pX); if( !db->mallocFailed ){ aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*nEq); eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, aiMap, &iTab); pTerm->pExpr->iTable = iTab; } sqlite3ExprDelete(db, pX); pX = pTerm->pExpr; } if( eType==IN_INDEX_INDEX_DESC ){ testcase( bRev ); bRev = !bRev; } sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iTab, 0); VdbeCoverageIf(v, bRev); VdbeCoverageIf(v, !bRev); assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 ); pLoop->wsFlags |= WHERE_IN_ABLE; if( pLevel->u.in.nIn==0 ){ pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse); } if( iEq>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0 ){ pLoop->wsFlags |= WHERE_IN_EARLYOUT; } i = pLevel->u.in.nIn; pLevel->u.in.nIn += nEq; pLevel->u.in.aInLoop = sqlite3DbReallocOrFree(pParse->db, pLevel->u.in.aInLoop, sizeof(pLevel->u.in.aInLoop[0])*pLevel->u.in.nIn); pIn = pLevel->u.in.aInLoop; if( pIn ){ int iMap = 0; /* Index in aiMap[] */ pIn += i; for(i=iEq;inLTerm; i++){ if( pLoop->aLTerm[i]->pExpr==pX ){ int iOut = iReg + i - iEq; if( eType==IN_INDEX_ROWID ){ pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iOut); }else{ int iCol = aiMap ? aiMap[iMap++] : 0; pIn->addrInTop = sqlite3VdbeAddOp3(v,OP_Column,iTab, iCol, iOut); } sqlite3VdbeAddOp1(v, OP_IsNull, iOut); VdbeCoverage(v); if( i==iEq ){ pIn->iCur = iTab; pIn->eEndLoopOp = bRev ? OP_Prev : OP_Next; if( iEq>0 ){ pIn->iBase = iReg - i; pIn->nPrefix = i; }else{ pIn->nPrefix = 0; } }else{ pIn->eEndLoopOp = OP_Noop; } pIn++; } } testcase( iEq>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0 && (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ); if( iEq>0 && (pLoop->wsFlags & (WHERE_IN_SEEKSCAN|WHERE_VIRTUALTABLE))==0 ){ sqlite3VdbeAddOp3(v, OP_SeekHit, pLevel->iIdxCur, 0, iEq); } }else{ pLevel->u.in.nIn = 0; } sqlite3DbFree(pParse->db, aiMap); #endif } /* As an optimization, try to disable the WHERE clause term that is ** driving the index as it will always be true. The correct answer is ** obtained regardless, but we might get the answer with fewer CPU cycles ** by omitting the term. ** ** But do not disable the term unless we are certain that the term is ** not a transitive constraint. For an example of where that does not ** work, see https://sqlite.org/forum/forumpost/eb8613976a (2021-05-04) */ if( (pLevel->pWLoop->wsFlags & WHERE_TRANSCONS)==0 || (pTerm->eOperator & WO_EQUIV)==0 ){ disableTerm(pLevel, pTerm); } return iReg; } /* ** Generate code that will evaluate all == and IN constraints for an ** index scan. ** ** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c). ** Suppose the WHERE clause is this: a==5 AND b IN (1,2,3) AND c>5 AND c<10 ** The index has as many as three equality constraints, but in this ** example, the third "c" value is an inequality. So only two ** constraints are coded. This routine will generate code to evaluate ** a==5 and b IN (1,2,3). The current values for a and b will be stored ** in consecutive registers and the index of the first register is returned. ** ** In the example above nEq==2. But this subroutine works for any value ** of nEq including 0. If nEq==0, this routine is nearly a no-op. ** The only thing it does is allocate the pLevel->iMem memory cell and ** compute the affinity string. ** ** The nExtraReg parameter is 0 or 1. It is 0 if all WHERE clause constraints ** are == or IN and are covered by the nEq. nExtraReg is 1 if there is ** an inequality constraint (such as the "c>=5 AND c<10" in the example) that ** occurs after the nEq quality constraints. ** ** This routine allocates a range of nEq+nExtraReg memory cells and returns ** the index of the first memory cell in that range. The code that ** calls this routine will use that memory range to store keys for ** start and termination conditions of the loop. ** key value of the loop. If one or more IN operators appear, then ** this routine allocates an additional nEq memory cells for internal ** use. ** ** Before returning, *pzAff is set to point to a buffer containing a ** copy of the column affinity string of the index allocated using ** sqlite3DbMalloc(). Except, entries in the copy of the string associated ** with equality constraints that use BLOB or NONE affinity are set to ** SQLITE_AFF_BLOB. This is to deal with SQL such as the following: ** ** CREATE TABLE t1(a TEXT PRIMARY KEY, b); ** SELECT ... FROM t1 AS t2, t1 WHERE t1.a = t2.b; ** ** In the example above, the index on t1(a) has TEXT affinity. But since ** the right hand side of the equality constraint (t2.b) has BLOB/NONE affinity, ** no conversion should be attempted before using a t2.b value as part of ** a key to search the index. Hence the first byte in the returned affinity ** string in this example would be set to SQLITE_AFF_BLOB. */ static int codeAllEqualityTerms( Parse *pParse, /* Parsing context */ WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */ int bRev, /* Reverse the order of IN operators */ int nExtraReg, /* Number of extra registers to allocate */ char **pzAff /* OUT: Set to point to affinity string */ ){ u16 nEq; /* The number of == or IN constraints to code */ u16 nSkip; /* Number of left-most columns to skip */ Vdbe *v = pParse->pVdbe; /* The vm under construction */ Index *pIdx; /* The index being used for this loop */ WhereTerm *pTerm; /* A single constraint term */ WhereLoop *pLoop; /* The WhereLoop object */ int j; /* Loop counter */ int regBase; /* Base register */ int nReg; /* Number of registers to allocate */ char *zAff; /* Affinity string to return */ /* This module is only called on query plans that use an index. */ pLoop = pLevel->pWLoop; assert( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 ); nEq = pLoop->u.btree.nEq; nSkip = pLoop->nSkip; pIdx = pLoop->u.btree.pIndex; assert( pIdx!=0 ); /* Figure out how many memory cells we will need then allocate them. */ regBase = pParse->nMem + 1; nReg = pLoop->u.btree.nEq + nExtraReg; pParse->nMem += nReg; zAff = sqlite3DbStrDup(pParse->db,sqlite3IndexAffinityStr(pParse->db,pIdx)); assert( zAff!=0 || pParse->db->mallocFailed ); if( nSkip ){ int iIdxCur = pLevel->iIdxCur; sqlite3VdbeAddOp3(v, OP_Null, 0, regBase, regBase+nSkip-1); sqlite3VdbeAddOp1(v, (bRev?OP_Last:OP_Rewind), iIdxCur); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); VdbeComment((v, "begin skip-scan on %s", pIdx->zName)); j = sqlite3VdbeAddOp0(v, OP_Goto); pLevel->addrSkip = sqlite3VdbeAddOp4Int(v, (bRev?OP_SeekLT:OP_SeekGT), iIdxCur, 0, regBase, nSkip); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); sqlite3VdbeJumpHere(v, j); for(j=0; jaiColumn[j]==XN_EXPR ); VdbeComment((v, "%s", explainIndexColumnName(pIdx, j))); } } /* Evaluate the equality constraints */ assert( zAff==0 || (int)strlen(zAff)>=nEq ); for(j=nSkip; jaLTerm[j]; assert( pTerm!=0 ); /* The following testcase is true for indices with redundant columns. ** Ex: CREATE INDEX i1 ON t1(a,b,a); SELECT * FROM t1 WHERE a=0 AND b=0; */ testcase( (pTerm->wtFlags & TERM_CODED)!=0 ); testcase( pTerm->wtFlags & TERM_VIRTUAL ); r1 = codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, regBase+j); if( r1!=regBase+j ){ if( nReg==1 ){ sqlite3ReleaseTempReg(pParse, regBase); regBase = r1; }else{ sqlite3VdbeAddOp2(v, OP_Copy, r1, regBase+j); } } } for(j=nSkip; jaLTerm[j]; if( pTerm->eOperator & WO_IN ){ if( pTerm->pExpr->flags & EP_xIsSelect ){ /* No affinity ever needs to be (or should be) applied to a value ** from the RHS of an "? IN (SELECT ...)" expression. The ** sqlite3FindInIndex() routine has already ensured that the ** affinity of the comparison has been applied to the value. */ if( zAff ) zAff[j] = SQLITE_AFF_BLOB; } }else if( (pTerm->eOperator & WO_ISNULL)==0 ){ Expr *pRight = pTerm->pExpr->pRight; if( (pTerm->wtFlags & TERM_IS)==0 && sqlite3ExprCanBeNull(pRight) ){ sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->addrBrk); VdbeCoverage(v); } if( pParse->nErr==0 ){ assert( pParse->db->mallocFailed==0 ); if( sqlite3CompareAffinity(pRight, zAff[j])==SQLITE_AFF_BLOB ){ zAff[j] = SQLITE_AFF_BLOB; } if( sqlite3ExprNeedsNoAffinityChange(pRight, zAff[j]) ){ zAff[j] = SQLITE_AFF_BLOB; } } } } *pzAff = zAff; return regBase; } #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS /* ** If the most recently coded instruction is a constant range constraint ** (a string literal) that originated from the LIKE optimization, then ** set P3 and P5 on the OP_String opcode so that the string will be cast ** to a BLOB at appropriate times. ** ** The LIKE optimization trys to evaluate "x LIKE 'abc%'" as a range ** expression: "x>='ABC' AND x<'abd'". But this requires that the range ** scan loop run twice, once for strings and a second time for BLOBs. ** The OP_String opcodes on the second pass convert the upper and lower ** bound string constants to blobs. This routine makes the necessary changes ** to the OP_String opcodes for that to happen. ** ** Except, of course, if SQLITE_LIKE_DOESNT_MATCH_BLOBS is defined, then ** only the one pass through the string space is required, so this routine ** becomes a no-op. */ static void whereLikeOptimizationStringFixup( Vdbe *v, /* prepared statement under construction */ WhereLevel *pLevel, /* The loop that contains the LIKE operator */ WhereTerm *pTerm /* The upper or lower bound just coded */ ){ if( pTerm->wtFlags & TERM_LIKEOPT ){ VdbeOp *pOp; assert( pLevel->iLikeRepCntr>0 ); pOp = sqlite3VdbeGetOp(v, -1); assert( pOp!=0 ); assert( pOp->opcode==OP_String8 || pTerm->pWC->pWInfo->pParse->db->mallocFailed ); pOp->p3 = (int)(pLevel->iLikeRepCntr>>1); /* Register holding counter */ pOp->p5 = (u8)(pLevel->iLikeRepCntr&1); /* ASC or DESC */ } } #else # define whereLikeOptimizationStringFixup(A,B,C) #endif #ifdef SQLITE_ENABLE_CURSOR_HINTS /* ** Information is passed from codeCursorHint() down to individual nodes of ** the expression tree (by sqlite3WalkExpr()) using an instance of this ** structure. */ struct CCurHint { int iTabCur; /* Cursor for the main table */ int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */ Index *pIdx; /* The index used to access the table */ }; /* ** This function is called for every node of an expression that is a candidate ** for a cursor hint on an index cursor. For TK_COLUMN nodes that reference ** the table CCurHint.iTabCur, verify that the same column can be ** accessed through the index. If it cannot, then set pWalker->eCode to 1. */ static int codeCursorHintCheckExpr(Walker *pWalker, Expr *pExpr){ struct CCurHint *pHint = pWalker->u.pCCurHint; assert( pHint->pIdx!=0 ); if( pExpr->op==TK_COLUMN && pExpr->iTable==pHint->iTabCur && sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn)<0 ){ pWalker->eCode = 1; } return WRC_Continue; } /* ** Test whether or not expression pExpr, which was part of a WHERE clause, ** should be included in the cursor-hint for a table that is on the rhs ** of a LEFT JOIN. Set Walker.eCode to non-zero before returning if the ** expression is not suitable. ** ** An expression is unsuitable if it might evaluate to non NULL even if ** a TK_COLUMN node that does affect the value of the expression is set ** to NULL. For example: ** ** col IS NULL ** col IS NOT NULL ** coalesce(col, 1) ** CASE WHEN col THEN 0 ELSE 1 END */ static int codeCursorHintIsOrFunction(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_IS || pExpr->op==TK_ISNULL || pExpr->op==TK_ISNOT || pExpr->op==TK_NOTNULL || pExpr->op==TK_CASE ){ pWalker->eCode = 1; }else if( pExpr->op==TK_FUNCTION ){ int d1; char d2[4]; if( 0==sqlite3IsLikeFunction(pWalker->pParse->db, pExpr, &d1, d2) ){ pWalker->eCode = 1; } } return WRC_Continue; } /* ** This function is called on every node of an expression tree used as an ** argument to the OP_CursorHint instruction. If the node is a TK_COLUMN ** that accesses any table other than the one identified by ** CCurHint.iTabCur, then do the following: ** ** 1) allocate a register and code an OP_Column instruction to read ** the specified column into the new register, and ** ** 2) transform the expression node to a TK_REGISTER node that reads ** from the newly populated register. ** ** Also, if the node is a TK_COLUMN that does access the table idenified ** by pCCurHint.iTabCur, and an index is being used (which we will ** know because CCurHint.pIdx!=0) then transform the TK_COLUMN into ** an access of the index rather than the original table. */ static int codeCursorHintFixExpr(Walker *pWalker, Expr *pExpr){ int rc = WRC_Continue; struct CCurHint *pHint = pWalker->u.pCCurHint; if( pExpr->op==TK_COLUMN ){ if( pExpr->iTable!=pHint->iTabCur ){ int reg = ++pWalker->pParse->nMem; /* Register for column value */ sqlite3ExprCode(pWalker->pParse, pExpr, reg); pExpr->op = TK_REGISTER; pExpr->iTable = reg; }else if( pHint->pIdx!=0 ){ pExpr->iTable = pHint->iIdxCur; pExpr->iColumn = sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn); assert( pExpr->iColumn>=0 ); } }else if( pExpr->op==TK_AGG_FUNCTION ){ /* An aggregate function in the WHERE clause of a query means this must ** be a correlated sub-query, and expression pExpr is an aggregate from ** the parent context. Do not walk the function arguments in this case. ** ** todo: It should be possible to replace this node with a TK_REGISTER ** expression, as the result of the expression must be stored in a ** register at this point. The same holds for TK_AGG_COLUMN nodes. */ rc = WRC_Prune; } return rc; } /* ** Insert an OP_CursorHint instruction if it is appropriate to do so. */ static void codeCursorHint( SrcItem *pTabItem, /* FROM clause item */ WhereInfo *pWInfo, /* The where clause */ WhereLevel *pLevel, /* Which loop to provide hints for */ WhereTerm *pEndRange /* Hint this end-of-scan boundary term if not NULL */ ){ Parse *pParse = pWInfo->pParse; sqlite3 *db = pParse->db; Vdbe *v = pParse->pVdbe; Expr *pExpr = 0; WhereLoop *pLoop = pLevel->pWLoop; int iCur; WhereClause *pWC; WhereTerm *pTerm; int i, j; struct CCurHint sHint; Walker sWalker; if( OptimizationDisabled(db, SQLITE_CursorHints) ) return; iCur = pLevel->iTabCur; assert( iCur==pWInfo->pTabList->a[pLevel->iFrom].iCursor ); sHint.iTabCur = iCur; sHint.iIdxCur = pLevel->iIdxCur; sHint.pIdx = pLoop->u.btree.pIndex; memset(&sWalker, 0, sizeof(sWalker)); sWalker.pParse = pParse; sWalker.u.pCCurHint = &sHint; pWC = &pWInfo->sWC; for(i=0; inBase; i++){ pTerm = &pWC->a[i]; if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( pTerm->prereqAll & pLevel->notReady ) continue; /* Any terms specified as part of the ON(...) clause for any LEFT ** JOIN for which the current table is not the rhs are omitted ** from the cursor-hint. ** ** If this table is the rhs of a LEFT JOIN, "IS" or "IS NULL" terms ** that were specified as part of the WHERE clause must be excluded. ** This is to address the following: ** ** SELECT ... t1 LEFT JOIN t2 ON (t1.a=t2.b) WHERE t2.c IS NULL; ** ** Say there is a single row in t2 that matches (t1.a=t2.b), but its ** t2.c values is not NULL. If the (t2.c IS NULL) constraint is ** pushed down to the cursor, this row is filtered out, causing ** SQLite to synthesize a row of NULL values. Which does match the ** WHERE clause, and so the query returns a row. Which is incorrect. ** ** For the same reason, WHERE terms such as: ** ** WHERE 1 = (t2.c IS NULL) ** ** are also excluded. See codeCursorHintIsOrFunction() for details. */ if( pTabItem->fg.jointype & JT_LEFT ){ Expr *pExpr = pTerm->pExpr; if( !ExprHasProperty(pExpr, EP_FromJoin) || pExpr->w.iRightJoinTable!=pTabItem->iCursor ){ sWalker.eCode = 0; sWalker.xExprCallback = codeCursorHintIsOrFunction; sqlite3WalkExpr(&sWalker, pTerm->pExpr); if( sWalker.eCode ) continue; } }else{ if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) continue; } /* All terms in pWLoop->aLTerm[] except pEndRange are used to initialize ** the cursor. These terms are not needed as hints for a pure range ** scan (that has no == terms) so omit them. */ if( pLoop->u.btree.nEq==0 && pTerm!=pEndRange ){ for(j=0; jnLTerm && pLoop->aLTerm[j]!=pTerm; j++){} if( jnLTerm ) continue; } /* No subqueries or non-deterministic functions allowed */ if( sqlite3ExprContainsSubquery(pTerm->pExpr) ) continue; /* For an index scan, make sure referenced columns are actually in ** the index. */ if( sHint.pIdx!=0 ){ sWalker.eCode = 0; sWalker.xExprCallback = codeCursorHintCheckExpr; sqlite3WalkExpr(&sWalker, pTerm->pExpr); if( sWalker.eCode ) continue; } /* If we survive all prior tests, that means this term is worth hinting */ pExpr = sqlite3ExprAnd(pParse, pExpr, sqlite3ExprDup(db, pTerm->pExpr, 0)); } if( pExpr!=0 ){ sWalker.xExprCallback = codeCursorHintFixExpr; sqlite3WalkExpr(&sWalker, pExpr); sqlite3VdbeAddOp4(v, OP_CursorHint, (sHint.pIdx ? sHint.iIdxCur : sHint.iTabCur), 0, 0, (const char*)pExpr, P4_EXPR); } } #else # define codeCursorHint(A,B,C,D) /* No-op */ #endif /* SQLITE_ENABLE_CURSOR_HINTS */ /* ** Cursor iCur is open on an intkey b-tree (a table). Register iRowid contains ** a rowid value just read from cursor iIdxCur, open on index pIdx. This ** function generates code to do a deferred seek of cursor iCur to the ** rowid stored in register iRowid. ** ** Normally, this is just: ** ** OP_DeferredSeek $iCur $iRowid ** ** However, if the scan currently being coded is a branch of an OR-loop and ** the statement currently being coded is a SELECT, then P3 of OP_DeferredSeek ** is set to iIdxCur and P4 is set to point to an array of integers ** containing one entry for each column of the table cursor iCur is open ** on. For each table column, if the column is the i'th column of the ** index, then the corresponding array entry is set to (i+1). If the column ** does not appear in the index at all, the array entry is set to 0. */ static void codeDeferredSeek( WhereInfo *pWInfo, /* Where clause context */ Index *pIdx, /* Index scan is using */ int iCur, /* Cursor for IPK b-tree */ int iIdxCur /* Index cursor */ ){ Parse *pParse = pWInfo->pParse; /* Parse context */ Vdbe *v = pParse->pVdbe; /* Vdbe to generate code within */ assert( iIdxCur>0 ); assert( pIdx->aiColumn[pIdx->nColumn-1]==-1 ); pWInfo->bDeferredSeek = 1; sqlite3VdbeAddOp3(v, OP_DeferredSeek, iIdxCur, 0, iCur); if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE) && DbMaskAllZero(sqlite3ParseToplevel(pParse)->writeMask) ){ int i; Table *pTab = pIdx->pTable; u32 *ai = (u32*)sqlite3DbMallocZero(pParse->db, sizeof(u32)*(pTab->nCol+1)); if( ai ){ ai[0] = pTab->nCol; for(i=0; inColumn-1; i++){ int x1, x2; assert( pIdx->aiColumn[i]nCol ); x1 = pIdx->aiColumn[i]; x2 = sqlite3TableColumnToStorage(pTab, x1); testcase( x1!=x2 ); if( x1>=0 ) ai[x2+1] = i+1; } sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY); } } } /* ** If the expression passed as the second argument is a vector, generate ** code to write the first nReg elements of the vector into an array ** of registers starting with iReg. ** ** If the expression is not a vector, then nReg must be passed 1. In ** this case, generate code to evaluate the expression and leave the ** result in register iReg. */ static void codeExprOrVector(Parse *pParse, Expr *p, int iReg, int nReg){ assert( nReg>0 ); if( p && sqlite3ExprIsVector(p) ){ #ifndef SQLITE_OMIT_SUBQUERY if( ExprUseXSelect(p) ){ Vdbe *v = pParse->pVdbe; int iSelect; assert( p->op==TK_SELECT ); iSelect = sqlite3CodeSubselect(pParse, p); sqlite3VdbeAddOp3(v, OP_Copy, iSelect, iReg, nReg-1); }else #endif { int i; const ExprList *pList; assert( ExprUseXList(p) ); pList = p->x.pList; assert( nReg<=pList->nExpr ); for(i=0; ia[i].pExpr, iReg+i); } } }else{ assert( nReg==1 || pParse->nErr ); sqlite3ExprCode(pParse, p, iReg); } } /* An instance of the IdxExprTrans object carries information about a ** mapping from an expression on table columns into a column in an index ** down through the Walker. */ typedef struct IdxExprTrans { Expr *pIdxExpr; /* The index expression */ int iTabCur; /* The cursor of the corresponding table */ int iIdxCur; /* The cursor for the index */ int iIdxCol; /* The column for the index */ int iTabCol; /* The column for the table */ WhereInfo *pWInfo; /* Complete WHERE clause information */ sqlite3 *db; /* Database connection (for malloc()) */ } IdxExprTrans; /* ** Preserve pExpr on the WhereETrans list of the WhereInfo. */ static void preserveExpr(IdxExprTrans *pTrans, Expr *pExpr){ WhereExprMod *pNew; pNew = sqlite3DbMallocRaw(pTrans->db, sizeof(*pNew)); if( pNew==0 ) return; pNew->pNext = pTrans->pWInfo->pExprMods; pTrans->pWInfo->pExprMods = pNew; pNew->pExpr = pExpr; memcpy(&pNew->orig, pExpr, sizeof(*pExpr)); } /* The walker node callback used to transform matching expressions into ** a reference to an index column for an index on an expression. ** ** If pExpr matches, then transform it into a reference to the index column ** that contains the value of pExpr. */ static int whereIndexExprTransNode(Walker *p, Expr *pExpr){ IdxExprTrans *pX = p->u.pIdxTrans; if( sqlite3ExprCompare(0, pExpr, pX->pIdxExpr, pX->iTabCur)==0 ){ preserveExpr(pX, pExpr); pExpr->affExpr = sqlite3ExprAffinity(pExpr); pExpr->op = TK_COLUMN; pExpr->iTable = pX->iIdxCur; pExpr->iColumn = pX->iIdxCol; testcase( ExprHasProperty(pExpr, EP_Skip) ); testcase( ExprHasProperty(pExpr, EP_Unlikely) ); ExprClearProperty(pExpr, EP_Skip|EP_Unlikely|EP_WinFunc|EP_Subrtn); pExpr->y.pTab = 0; return WRC_Prune; }else{ return WRC_Continue; } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* A walker node callback that translates a column reference to a table ** into a corresponding column reference of an index. */ static int whereIndexExprTransColumn(Walker *p, Expr *pExpr){ if( pExpr->op==TK_COLUMN ){ IdxExprTrans *pX = p->u.pIdxTrans; if( pExpr->iTable==pX->iTabCur && pExpr->iColumn==pX->iTabCol ){ assert( ExprUseYTab(pExpr) && pExpr->y.pTab!=0 ); preserveExpr(pX, pExpr); pExpr->affExpr = sqlite3TableColumnAffinity(pExpr->y.pTab,pExpr->iColumn); pExpr->iTable = pX->iIdxCur; pExpr->iColumn = pX->iIdxCol; pExpr->y.pTab = 0; } } return WRC_Continue; } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ /* ** For an indexes on expression X, locate every instance of expression X ** in pExpr and change that subexpression into a reference to the appropriate ** column of the index. ** ** 2019-10-24: Updated to also translate references to a VIRTUAL column in ** the table into references to the corresponding (stored) column of the ** index. */ static void whereIndexExprTrans( Index *pIdx, /* The Index */ int iTabCur, /* Cursor of the table that is being indexed */ int iIdxCur, /* Cursor of the index itself */ WhereInfo *pWInfo /* Transform expressions in this WHERE clause */ ){ int iIdxCol; /* Column number of the index */ ExprList *aColExpr; /* Expressions that are indexed */ Table *pTab; Walker w; IdxExprTrans x; aColExpr = pIdx->aColExpr; if( aColExpr==0 && !pIdx->bHasVCol ){ /* The index does not reference any expressions or virtual columns ** so no translations are needed. */ return; } pTab = pIdx->pTable; memset(&w, 0, sizeof(w)); w.u.pIdxTrans = &x; x.iTabCur = iTabCur; x.iIdxCur = iIdxCur; x.pWInfo = pWInfo; x.db = pWInfo->pParse->db; for(iIdxCol=0; iIdxColnColumn; iIdxCol++){ i16 iRef = pIdx->aiColumn[iIdxCol]; if( iRef==XN_EXPR ){ assert( aColExpr!=0 && aColExpr->a[iIdxCol].pExpr!=0 ); x.pIdxExpr = aColExpr->a[iIdxCol].pExpr; if( sqlite3ExprIsConstant(x.pIdxExpr) ) continue; w.xExprCallback = whereIndexExprTransNode; #ifndef SQLITE_OMIT_GENERATED_COLUMNS }else if( iRef>=0 && (pTab->aCol[iRef].colFlags & COLFLAG_VIRTUAL)!=0 && ((pTab->aCol[iRef].colFlags & COLFLAG_HASCOLL)==0 || sqlite3StrICmp(sqlite3ColumnColl(&pTab->aCol[iRef]), sqlite3StrBINARY)==0) ){ /* Check to see if there are direct references to generated columns ** that are contained in the index. Pulling the generated column ** out of the index is an optimization only - the main table is always ** available if the index cannot be used. To avoid unnecessary ** complication, omit this optimization if the collating sequence for ** the column is non-standard */ x.iTabCol = iRef; w.xExprCallback = whereIndexExprTransColumn; #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ }else{ continue; } x.iIdxCol = iIdxCol; sqlite3WalkExpr(&w, pWInfo->pWhere); sqlite3WalkExprList(&w, pWInfo->pOrderBy); sqlite3WalkExprList(&w, pWInfo->pResultSet); } } /* ** The pTruth expression is always true because it is the WHERE clause ** a partial index that is driving a query loop. Look through all of the ** WHERE clause terms on the query, and if any of those terms must be ** true because pTruth is true, then mark those WHERE clause terms as ** coded. */ static void whereApplyPartialIndexConstraints( Expr *pTruth, int iTabCur, WhereClause *pWC ){ int i; WhereTerm *pTerm; while( pTruth->op==TK_AND ){ whereApplyPartialIndexConstraints(pTruth->pLeft, iTabCur, pWC); pTruth = pTruth->pRight; } for(i=0, pTerm=pWC->a; inTerm; i++, pTerm++){ Expr *pExpr; if( pTerm->wtFlags & TERM_CODED ) continue; pExpr = pTerm->pExpr; if( sqlite3ExprCompare(0, pExpr, pTruth, iTabCur)==0 ){ pTerm->wtFlags |= TERM_CODED; } } } /* ** This routine is called right after An OP_Filter has been generated and ** before the corresponding index search has been performed. This routine ** checks to see if there are additional Bloom filters in inner loops that ** can be checked prior to doing the index lookup. If there are available ** inner-loop Bloom filters, then evaluate those filters now, before the ** index lookup. The idea is that a Bloom filter check is way faster than ** an index lookup, and the Bloom filter might return false, meaning that ** the index lookup can be skipped. ** ** We know that an inner loop uses a Bloom filter because it has the ** WhereLevel.regFilter set. If an inner-loop Bloom filter is checked, ** then clear the WhereLevel.regFilter value to prevent the Bloom filter ** from being checked a second time when the inner loop is evaluated. */ static SQLITE_NOINLINE void filterPullDown( Parse *pParse, /* Parsing context */ WhereInfo *pWInfo, /* Complete information about the WHERE clause */ int iLevel, /* Which level of pWInfo->a[] should be coded */ int addrNxt, /* Jump here to bypass inner loops */ Bitmask notReady /* Loops that are not ready */ ){ while( ++iLevel < pWInfo->nLevel ){ WhereLevel *pLevel = &pWInfo->a[iLevel]; WhereLoop *pLoop = pLevel->pWLoop; if( pLevel->regFilter==0 ) continue; /* ,--- Because sqlite3ConstructBloomFilter() has will not have set ** vvvvv--' pLevel->regFilter if this were true. */ if( NEVER(pLoop->prereq & notReady) ) continue; if( pLoop->wsFlags & WHERE_IPK ){ WhereTerm *pTerm = pLoop->aLTerm[0]; int regRowid; assert( pTerm!=0 ); assert( pTerm->pExpr!=0 ); testcase( pTerm->wtFlags & TERM_VIRTUAL ); regRowid = sqlite3GetTempReg(pParse); regRowid = codeEqualityTerm(pParse, pTerm, pLevel, 0, 0, regRowid); sqlite3VdbeAddOp4Int(pParse->pVdbe, OP_Filter, pLevel->regFilter, addrNxt, regRowid, 1); VdbeCoverage(pParse->pVdbe); }else{ u16 nEq = pLoop->u.btree.nEq; int r1; char *zStartAff; assert( pLoop->wsFlags & WHERE_INDEXED ); assert( (pLoop->wsFlags & WHERE_COLUMN_IN)==0 ); r1 = codeAllEqualityTerms(pParse,pLevel,0,0,&zStartAff); codeApplyAffinity(pParse, r1, nEq, zStartAff); sqlite3DbFree(pParse->db, zStartAff); sqlite3VdbeAddOp4Int(pParse->pVdbe, OP_Filter, pLevel->regFilter, addrNxt, r1, nEq); VdbeCoverage(pParse->pVdbe); } pLevel->regFilter = 0; } } /* ** Generate code for the start of the iLevel-th loop in the WHERE clause ** implementation described by pWInfo. */ SQLITE_PRIVATE Bitmask sqlite3WhereCodeOneLoopStart( Parse *pParse, /* Parsing context */ Vdbe *v, /* Prepared statement under construction */ WhereInfo *pWInfo, /* Complete information about the WHERE clause */ int iLevel, /* Which level of pWInfo->a[] should be coded */ WhereLevel *pLevel, /* The current level pointer */ Bitmask notReady /* Which tables are currently available */ ){ int j, k; /* Loop counters */ int iCur; /* The VDBE cursor for the table */ int addrNxt; /* Where to jump to continue with the next IN case */ int bRev; /* True if we need to scan in reverse order */ WhereLoop *pLoop; /* The WhereLoop object being coded */ WhereClause *pWC; /* Decomposition of the entire WHERE clause */ WhereTerm *pTerm; /* A WHERE clause term */ sqlite3 *db; /* Database connection */ SrcItem *pTabItem; /* FROM clause term being coded */ int addrBrk; /* Jump here to break out of the loop */ int addrHalt; /* addrBrk for the outermost loop */ int addrCont; /* Jump here to continue with next cycle */ int iRowidReg = 0; /* Rowid is stored in this register, if not zero */ int iReleaseReg = 0; /* Temp register to free before returning */ Index *pIdx = 0; /* Index used by loop (if any) */ int iLoop; /* Iteration of constraint generator loop */ pWC = &pWInfo->sWC; db = pParse->db; pLoop = pLevel->pWLoop; pTabItem = &pWInfo->pTabList->a[pLevel->iFrom]; iCur = pTabItem->iCursor; pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur); bRev = (pWInfo->revMask>>iLevel)&1; VdbeModuleComment((v, "Begin WHERE-loop%d: %s",iLevel,pTabItem->pTab->zName)); #if WHERETRACE_ENABLED /* 0x20800 */ if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("Coding level %d of %d: notReady=%llx iFrom=%d\n", iLevel, pWInfo->nLevel, (u64)notReady, pLevel->iFrom); sqlite3WhereLoopPrint(pLoop, pWC); } if( sqlite3WhereTrace & 0x20000 ){ if( iLevel==0 ){ sqlite3DebugPrintf("WHERE clause being coded:\n"); sqlite3TreeViewExpr(0, pWInfo->pWhere, 0); } sqlite3DebugPrintf("All WHERE-clause terms before coding:\n"); sqlite3WhereClausePrint(pWC); } #endif /* Create labels for the "break" and "continue" instructions ** for the current loop. Jump to addrBrk to break out of a loop. ** Jump to cont to go immediately to the next iteration of the ** loop. ** ** When there is an IN operator, we also have a "addrNxt" label that ** means to continue with the next IN value combination. When ** there are no IN operators in the constraints, the "addrNxt" label ** is the same as "addrBrk". */ addrBrk = pLevel->addrBrk = pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse); addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(pParse); /* If this is the right table of a LEFT OUTER JOIN, allocate and ** initialize a memory cell that records if this table matches any ** row of the left table of the join. */ assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE) || pLevel->iFrom>0 || (pTabItem[0].fg.jointype & JT_LEFT)==0 ); if( pLevel->iFrom>0 && (pTabItem[0].fg.jointype & JT_LEFT)!=0 ){ pLevel->iLeftJoin = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin); VdbeComment((v, "init LEFT JOIN no-match flag")); } /* Compute a safe address to jump to if we discover that the table for ** this loop is empty and can never contribute content. */ for(j=iLevel; j>0 && pWInfo->a[j].iLeftJoin==0; j--){} addrHalt = pWInfo->a[j].addrBrk; /* Special case of a FROM clause subquery implemented as a co-routine */ if( pTabItem->fg.viaCoroutine ){ int regYield = pTabItem->regReturn; sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub); pLevel->p2 = sqlite3VdbeAddOp2(v, OP_Yield, regYield, addrBrk); VdbeCoverage(v); VdbeComment((v, "next row of %s", pTabItem->pTab->zName)); pLevel->op = OP_Goto; }else #ifndef SQLITE_OMIT_VIRTUALTABLE if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ /* Case 1: The table is a virtual-table. Use the VFilter and VNext ** to access the data. */ int iReg; /* P3 Value for OP_VFilter */ int addrNotFound; int nConstraint = pLoop->nLTerm; int iIn; /* Counter for IN constraints */ iReg = sqlite3GetTempRange(pParse, nConstraint+2); addrNotFound = pLevel->addrBrk; for(j=0; jaLTerm[j]; if( NEVER(pTerm==0) ) continue; if( pTerm->eOperator & WO_IN ){ if( SMASKBIT32(j) & pLoop->u.vtab.mHandleIn ){ int iTab = pParse->nTab++; int iCache = ++pParse->nMem; sqlite3CodeRhsOfIN(pParse, pTerm->pExpr, iTab); sqlite3VdbeAddOp3(v, OP_VInitIn, iTab, iTarget, iCache); }else{ codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, iTarget); addrNotFound = pLevel->addrNxt; } }else{ Expr *pRight = pTerm->pExpr->pRight; codeExprOrVector(pParse, pRight, iTarget, 1); if( pTerm->eMatchOp==SQLITE_INDEX_CONSTRAINT_OFFSET && pLoop->u.vtab.bOmitOffset ){ assert( pTerm->eOperator==WO_AUX ); assert( pWInfo->pLimit!=0 ); assert( pWInfo->pLimit->iOffset>0 ); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWInfo->pLimit->iOffset); VdbeComment((v,"Zero OFFSET counter")); } } } sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg); sqlite3VdbeAddOp2(v, OP_Integer, nConstraint, iReg+1); sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrNotFound, iReg, pLoop->u.vtab.idxStr, pLoop->u.vtab.needFree ? P4_DYNAMIC : P4_STATIC); VdbeCoverage(v); pLoop->u.vtab.needFree = 0; /* An OOM inside of AddOp4(OP_VFilter) instruction above might have freed ** the u.vtab.idxStr. NULL it out to prevent a use-after-free */ if( db->mallocFailed ) pLoop->u.vtab.idxStr = 0; pLevel->p1 = iCur; pLevel->op = pWInfo->eOnePass ? OP_Noop : OP_VNext; pLevel->p2 = sqlite3VdbeCurrentAddr(v); assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 ); if( pLoop->wsFlags & WHERE_IN_ABLE ){ iIn = pLevel->u.in.nIn; }else{ iIn = 0; } for(j=nConstraint-1; j>=0; j--){ int bIn; /* True to generate byte code to loop over RHS IN values */ pTerm = pLoop->aLTerm[j]; if( (pTerm->eOperator & WO_IN)!=0 && (SMASKBIT32(j) & pLoop->u.vtab.mHandleIn)==0 ){ bIn = 1; }else{ bIn = 0; } if( bIn ) iIn--; if( j<16 && (pLoop->u.vtab.omitMask>>j)&1 ){ disableTerm(pLevel, pTerm); }else if( bIn && sqlite3ExprVectorSize(pTerm->pExpr->pLeft)==1 ){ Expr *pCompare; /* The comparison operator */ Expr *pRight; /* RHS of the comparison */ VdbeOp *pOp; /* Opcode to access the value of the IN constraint */ /* Reload the constraint value into reg[iReg+j+2]. The same value ** was loaded into the same register prior to the OP_VFilter, but ** the xFilter implementation might have changed the datatype or ** encoding of the value in the register, so it *must* be reloaded. */ assert( pLevel->u.in.aInLoop!=0 || db->mallocFailed ); if( !db->mallocFailed ){ assert( iIn>=0 && iInu.in.nIn ); pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[iIn].addrInTop); assert( pOp->opcode==OP_Column || pOp->opcode==OP_Rowid ); assert( pOp->opcode!=OP_Column || pOp->p3==iReg+j+2 ); assert( pOp->opcode!=OP_Rowid || pOp->p2==iReg+j+2 ); testcase( pOp->opcode==OP_Rowid ); sqlite3VdbeAddOp3(v, pOp->opcode, pOp->p1, pOp->p2, pOp->p3); } /* Generate code that will continue to the next row if ** the IN constraint is not satisfied */ pCompare = sqlite3PExpr(pParse, TK_EQ, 0, 0); assert( pCompare!=0 || db->mallocFailed ); if( pCompare ){ pCompare->pLeft = pTerm->pExpr->pLeft; pCompare->pRight = pRight = sqlite3Expr(db, TK_REGISTER, 0); if( pRight ){ pRight->iTable = iReg+j+2; sqlite3ExprIfFalse( pParse, pCompare, pLevel->addrCont, SQLITE_JUMPIFNULL ); } pCompare->pLeft = 0; sqlite3ExprDelete(db, pCompare); } } } assert( iIn==0 || db->mallocFailed ); /* These registers need to be preserved in case there is an IN operator ** loop. So we could deallocate the registers here (and potentially ** reuse them later) if (pLoop->wsFlags & WHERE_IN_ABLE)==0. But it seems ** simpler and safer to simply not reuse the registers. ** ** sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2); */ }else #endif /* SQLITE_OMIT_VIRTUALTABLE */ if( (pLoop->wsFlags & WHERE_IPK)!=0 && (pLoop->wsFlags & (WHERE_COLUMN_IN|WHERE_COLUMN_EQ))!=0 ){ /* Case 2: We can directly reference a single row using an ** equality comparison against the ROWID field. Or ** we reference multiple rows using a "rowid IN (...)" ** construct. */ assert( pLoop->u.btree.nEq==1 ); pTerm = pLoop->aLTerm[0]; assert( pTerm!=0 ); assert( pTerm->pExpr!=0 ); testcase( pTerm->wtFlags & TERM_VIRTUAL ); iReleaseReg = ++pParse->nMem; iRowidReg = codeEqualityTerm(pParse, pTerm, pLevel, 0, bRev, iReleaseReg); if( iRowidReg!=iReleaseReg ) sqlite3ReleaseTempReg(pParse, iReleaseReg); addrNxt = pLevel->addrNxt; if( pLevel->regFilter ){ sqlite3VdbeAddOp4Int(v, OP_Filter, pLevel->regFilter, addrNxt, iRowidReg, 1); VdbeCoverage(v); filterPullDown(pParse, pWInfo, iLevel, addrNxt, notReady); } sqlite3VdbeAddOp3(v, OP_SeekRowid, iCur, addrNxt, iRowidReg); VdbeCoverage(v); pLevel->op = OP_Noop; }else if( (pLoop->wsFlags & WHERE_IPK)!=0 && (pLoop->wsFlags & WHERE_COLUMN_RANGE)!=0 ){ /* Case 3: We have an inequality comparison against the ROWID field. */ int testOp = OP_Noop; int start; int memEndValue = 0; WhereTerm *pStart, *pEnd; j = 0; pStart = pEnd = 0; if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++]; if( pLoop->wsFlags & WHERE_TOP_LIMIT ) pEnd = pLoop->aLTerm[j++]; assert( pStart!=0 || pEnd!=0 ); if( bRev ){ pTerm = pStart; pStart = pEnd; pEnd = pTerm; } codeCursorHint(pTabItem, pWInfo, pLevel, pEnd); if( pStart ){ Expr *pX; /* The expression that defines the start bound */ int r1, rTemp; /* Registers for holding the start boundary */ int op; /* Cursor seek operation */ /* The following constant maps TK_xx codes into corresponding ** seek opcodes. It depends on a particular ordering of TK_xx */ const u8 aMoveOp[] = { /* TK_GT */ OP_SeekGT, /* TK_LE */ OP_SeekLE, /* TK_LT */ OP_SeekLT, /* TK_GE */ OP_SeekGE }; assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */ assert( TK_LT==TK_GT+2 ); /* ... of the TK_xx values... */ assert( TK_GE==TK_GT+3 ); /* ... is correcct. */ assert( (pStart->wtFlags & TERM_VNULL)==0 ); testcase( pStart->wtFlags & TERM_VIRTUAL ); pX = pStart->pExpr; assert( pX!=0 ); testcase( pStart->leftCursor!=iCur ); /* transitive constraints */ if( sqlite3ExprIsVector(pX->pRight) ){ r1 = rTemp = sqlite3GetTempReg(pParse); codeExprOrVector(pParse, pX->pRight, r1, 1); testcase( pX->op==TK_GT ); testcase( pX->op==TK_GE ); testcase( pX->op==TK_LT ); testcase( pX->op==TK_LE ); op = aMoveOp[((pX->op - TK_GT - 1) & 0x3) | 0x1]; assert( pX->op!=TK_GT || op==OP_SeekGE ); assert( pX->op!=TK_GE || op==OP_SeekGE ); assert( pX->op!=TK_LT || op==OP_SeekLE ); assert( pX->op!=TK_LE || op==OP_SeekLE ); }else{ r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &rTemp); disableTerm(pLevel, pStart); op = aMoveOp[(pX->op - TK_GT)]; } sqlite3VdbeAddOp3(v, op, iCur, addrBrk, r1); VdbeComment((v, "pk")); VdbeCoverageIf(v, pX->op==TK_GT); VdbeCoverageIf(v, pX->op==TK_LE); VdbeCoverageIf(v, pX->op==TK_LT); VdbeCoverageIf(v, pX->op==TK_GE); sqlite3ReleaseTempReg(pParse, rTemp); }else{ sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrHalt); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); } if( pEnd ){ Expr *pX; pX = pEnd->pExpr; assert( pX!=0 ); assert( (pEnd->wtFlags & TERM_VNULL)==0 ); testcase( pEnd->leftCursor!=iCur ); /* Transitive constraints */ testcase( pEnd->wtFlags & TERM_VIRTUAL ); memEndValue = ++pParse->nMem; codeExprOrVector(pParse, pX->pRight, memEndValue, 1); if( 0==sqlite3ExprIsVector(pX->pRight) && (pX->op==TK_LT || pX->op==TK_GT) ){ testOp = bRev ? OP_Le : OP_Ge; }else{ testOp = bRev ? OP_Lt : OP_Gt; } if( 0==sqlite3ExprIsVector(pX->pRight) ){ disableTerm(pLevel, pEnd); } } start = sqlite3VdbeCurrentAddr(v); pLevel->op = bRev ? OP_Prev : OP_Next; pLevel->p1 = iCur; pLevel->p2 = start; assert( pLevel->p5==0 ); if( testOp!=OP_Noop ){ iRowidReg = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Rowid, iCur, iRowidReg); sqlite3VdbeAddOp3(v, testOp, memEndValue, addrBrk, iRowidReg); VdbeCoverageIf(v, testOp==OP_Le); VdbeCoverageIf(v, testOp==OP_Lt); VdbeCoverageIf(v, testOp==OP_Ge); VdbeCoverageIf(v, testOp==OP_Gt); sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL); } }else if( pLoop->wsFlags & WHERE_INDEXED ){ /* Case 4: A scan using an index. ** ** The WHERE clause may contain zero or more equality ** terms ("==" or "IN" operators) that refer to the N ** left-most columns of the index. It may also contain ** inequality constraints (>, <, >= or <=) on the indexed ** column that immediately follows the N equalities. Only ** the right-most column can be an inequality - the rest must ** use the "==" and "IN" operators. For example, if the ** index is on (x,y,z), then the following clauses are all ** optimized: ** ** x=5 ** x=5 AND y=10 ** x=5 AND y<10 ** x=5 AND y>5 AND y<10 ** x=5 AND y=5 AND z<=10 ** ** The z<10 term of the following cannot be used, only ** the x=5 term: ** ** x=5 AND z<10 ** ** N may be zero if there are inequality constraints. ** If there are no inequality constraints, then N is at ** least one. ** ** This case is also used when there are no WHERE clause ** constraints but an index is selected anyway, in order ** to force the output order to conform to an ORDER BY. */ static const u8 aStartOp[] = { 0, 0, OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */ OP_Last, /* 3: (!start_constraints && startEq && bRev) */ OP_SeekGT, /* 4: (start_constraints && !startEq && !bRev) */ OP_SeekLT, /* 5: (start_constraints && !startEq && bRev) */ OP_SeekGE, /* 6: (start_constraints && startEq && !bRev) */ OP_SeekLE /* 7: (start_constraints && startEq && bRev) */ }; static const u8 aEndOp[] = { OP_IdxGE, /* 0: (end_constraints && !bRev && !endEq) */ OP_IdxGT, /* 1: (end_constraints && !bRev && endEq) */ OP_IdxLE, /* 2: (end_constraints && bRev && !endEq) */ OP_IdxLT, /* 3: (end_constraints && bRev && endEq) */ }; u16 nEq = pLoop->u.btree.nEq; /* Number of == or IN terms */ u16 nBtm = pLoop->u.btree.nBtm; /* Length of BTM vector */ u16 nTop = pLoop->u.btree.nTop; /* Length of TOP vector */ int regBase; /* Base register holding constraint values */ WhereTerm *pRangeStart = 0; /* Inequality constraint at range start */ WhereTerm *pRangeEnd = 0; /* Inequality constraint at range end */ int startEq; /* True if range start uses ==, >= or <= */ int endEq; /* True if range end uses ==, >= or <= */ int start_constraints; /* Start of range is constrained */ int nConstraint; /* Number of constraint terms */ int iIdxCur; /* The VDBE cursor for the index */ int nExtraReg = 0; /* Number of extra registers needed */ int op; /* Instruction opcode */ char *zStartAff; /* Affinity for start of range constraint */ char *zEndAff = 0; /* Affinity for end of range constraint */ u8 bSeekPastNull = 0; /* True to seek past initial nulls */ u8 bStopAtNull = 0; /* Add condition to terminate at NULLs */ int omitTable; /* True if we use the index only */ int regBignull = 0; /* big-null flag register */ int addrSeekScan = 0; /* Opcode of the OP_SeekScan, if any */ pIdx = pLoop->u.btree.pIndex; iIdxCur = pLevel->iIdxCur; assert( nEq>=pLoop->nSkip ); /* Find any inequality constraint terms for the start and end ** of the range. */ j = nEq; if( pLoop->wsFlags & WHERE_BTM_LIMIT ){ pRangeStart = pLoop->aLTerm[j++]; nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm); /* Like optimization range constraints always occur in pairs */ assert( (pRangeStart->wtFlags & TERM_LIKEOPT)==0 || (pLoop->wsFlags & WHERE_TOP_LIMIT)!=0 ); } if( pLoop->wsFlags & WHERE_TOP_LIMIT ){ pRangeEnd = pLoop->aLTerm[j++]; nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop); #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( (pRangeEnd->wtFlags & TERM_LIKEOPT)!=0 ){ assert( pRangeStart!=0 ); /* LIKE opt constraints */ assert( pRangeStart->wtFlags & TERM_LIKEOPT ); /* occur in pairs */ pLevel->iLikeRepCntr = (u32)++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 1, (int)pLevel->iLikeRepCntr); VdbeComment((v, "LIKE loop counter")); pLevel->addrLikeRep = sqlite3VdbeCurrentAddr(v); /* iLikeRepCntr actually stores 2x the counter register number. The ** bottom bit indicates whether the search order is ASC or DESC. */ testcase( bRev ); testcase( pIdx->aSortOrder[nEq]==SQLITE_SO_DESC ); assert( (bRev & ~1)==0 ); pLevel->iLikeRepCntr <<=1; pLevel->iLikeRepCntr |= bRev ^ (pIdx->aSortOrder[nEq]==SQLITE_SO_DESC); } #endif if( pRangeStart==0 ){ j = pIdx->aiColumn[nEq]; if( (j>=0 && pIdx->pTable->aCol[j].notNull==0) || j==XN_EXPR ){ bSeekPastNull = 1; } } } assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 ); /* If the WHERE_BIGNULL_SORT flag is set, then index column nEq uses ** a non-default "big-null" sort (either ASC NULLS LAST or DESC NULLS ** FIRST). In both cases separate ordered scans are made of those ** index entries for which the column is null and for those for which ** it is not. For an ASC sort, the non-NULL entries are scanned first. ** For DESC, NULL entries are scanned first. */ if( (pLoop->wsFlags & (WHERE_TOP_LIMIT|WHERE_BTM_LIMIT))==0 && (pLoop->wsFlags & WHERE_BIGNULL_SORT)!=0 ){ assert( bSeekPastNull==0 && nExtraReg==0 && nBtm==0 && nTop==0 ); assert( pRangeEnd==0 && pRangeStart==0 ); testcase( pLoop->nSkip>0 ); nExtraReg = 1; bSeekPastNull = 1; pLevel->regBignull = regBignull = ++pParse->nMem; if( pLevel->iLeftJoin ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, regBignull); } pLevel->addrBignull = sqlite3VdbeMakeLabel(pParse); } /* If we are doing a reverse order scan on an ascending index, or ** a forward order scan on a descending index, interchange the ** start and end terms (pRangeStart and pRangeEnd). */ if( (nEqnColumn && bRev==(pIdx->aSortOrder[nEq]==SQLITE_SO_ASC)) ){ SWAP(WhereTerm *, pRangeEnd, pRangeStart); SWAP(u8, bSeekPastNull, bStopAtNull); SWAP(u8, nBtm, nTop); } if( iLevel>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)!=0 ){ /* In case OP_SeekScan is used, ensure that the index cursor does not ** point to a valid row for the first iteration of this loop. */ sqlite3VdbeAddOp1(v, OP_NullRow, iIdxCur); } /* Generate code to evaluate all constraint terms using == or IN ** and store the values of those terms in an array of registers ** starting at regBase. */ codeCursorHint(pTabItem, pWInfo, pLevel, pRangeEnd); regBase = codeAllEqualityTerms(pParse,pLevel,bRev,nExtraReg,&zStartAff); assert( zStartAff==0 || sqlite3Strlen30(zStartAff)>=nEq ); if( zStartAff && nTop ){ zEndAff = sqlite3DbStrDup(db, &zStartAff[nEq]); } addrNxt = (regBignull ? pLevel->addrBignull : pLevel->addrNxt); testcase( pRangeStart && (pRangeStart->eOperator & WO_LE)!=0 ); testcase( pRangeStart && (pRangeStart->eOperator & WO_GE)!=0 ); testcase( pRangeEnd && (pRangeEnd->eOperator & WO_LE)!=0 ); testcase( pRangeEnd && (pRangeEnd->eOperator & WO_GE)!=0 ); startEq = !pRangeStart || pRangeStart->eOperator & (WO_LE|WO_GE); endEq = !pRangeEnd || pRangeEnd->eOperator & (WO_LE|WO_GE); start_constraints = pRangeStart || nEq>0; /* Seek the index cursor to the start of the range. */ nConstraint = nEq; if( pRangeStart ){ Expr *pRight = pRangeStart->pExpr->pRight; codeExprOrVector(pParse, pRight, regBase+nEq, nBtm); whereLikeOptimizationStringFixup(v, pLevel, pRangeStart); if( (pRangeStart->wtFlags & TERM_VNULL)==0 && sqlite3ExprCanBeNull(pRight) ){ sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); VdbeCoverage(v); } if( zStartAff ){ updateRangeAffinityStr(pRight, nBtm, &zStartAff[nEq]); } nConstraint += nBtm; testcase( pRangeStart->wtFlags & TERM_VIRTUAL ); if( sqlite3ExprIsVector(pRight)==0 ){ disableTerm(pLevel, pRangeStart); }else{ startEq = 1; } bSeekPastNull = 0; }else if( bSeekPastNull ){ startEq = 0; sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); start_constraints = 1; nConstraint++; }else if( regBignull ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); start_constraints = 1; nConstraint++; } codeApplyAffinity(pParse, regBase, nConstraint - bSeekPastNull, zStartAff); if( pLoop->nSkip>0 && nConstraint==pLoop->nSkip ){ /* The skip-scan logic inside the call to codeAllEqualityConstraints() ** above has already left the cursor sitting on the correct row, ** so no further seeking is needed */ }else{ if( regBignull ){ sqlite3VdbeAddOp2(v, OP_Integer, 1, regBignull); VdbeComment((v, "NULL-scan pass ctr")); } if( pLevel->regFilter ){ sqlite3VdbeAddOp4Int(v, OP_Filter, pLevel->regFilter, addrNxt, regBase, nEq); VdbeCoverage(v); filterPullDown(pParse, pWInfo, iLevel, addrNxt, notReady); } op = aStartOp[(start_constraints<<2) + (startEq<<1) + bRev]; assert( op!=0 ); if( (pLoop->wsFlags & WHERE_IN_SEEKSCAN)!=0 && op==OP_SeekGE ){ assert( regBignull==0 ); /* TUNING: The OP_SeekScan opcode seeks to reduce the number ** of expensive seek operations by replacing a single seek with ** 1 or more step operations. The question is, how many steps ** should we try before giving up and going with a seek. The cost ** of a seek is proportional to the logarithm of the of the number ** of entries in the tree, so basing the number of steps to try ** on the estimated number of rows in the btree seems like a good ** guess. */ addrSeekScan = sqlite3VdbeAddOp1(v, OP_SeekScan, (pIdx->aiRowLogEst[0]+9)/10); VdbeCoverage(v); } sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); VdbeCoverage(v); VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); VdbeCoverageIf(v, op==OP_SeekGT); testcase( op==OP_SeekGT ); VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); VdbeCoverageIf(v, op==OP_SeekLT); testcase( op==OP_SeekLT ); assert( bSeekPastNull==0 || bStopAtNull==0 ); if( regBignull ){ assert( bSeekPastNull==1 || bStopAtNull==1 ); assert( bSeekPastNull==!bStopAtNull ); assert( bStopAtNull==startEq ); sqlite3VdbeAddOp2(v, OP_Goto, 0, sqlite3VdbeCurrentAddr(v)+2); op = aStartOp[(nConstraint>1)*4 + 2 + bRev]; sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint-startEq); VdbeCoverage(v); VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); assert( op==OP_Rewind || op==OP_Last || op==OP_SeekGE || op==OP_SeekLE); } } /* Load the value for the inequality constraint at the end of the ** range (if any). */ nConstraint = nEq; assert( pLevel->p2==0 ); if( pRangeEnd ){ Expr *pRight = pRangeEnd->pExpr->pRight; if( addrSeekScan ){ /* For a seek-scan that has a range on the lowest term of the index, ** we have to make the top of the loop be code that sets the end ** condition of the range. Otherwise, the OP_SeekScan might jump ** over that initialization, leaving the range-end value set to the ** range-start value, resulting in a wrong answer. ** See ticket 5981a8c041a3c2f3 (2021-11-02). */ pLevel->p2 = sqlite3VdbeCurrentAddr(v); } codeExprOrVector(pParse, pRight, regBase+nEq, nTop); whereLikeOptimizationStringFixup(v, pLevel, pRangeEnd); if( (pRangeEnd->wtFlags & TERM_VNULL)==0 && sqlite3ExprCanBeNull(pRight) ){ sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); VdbeCoverage(v); } if( zEndAff ){ updateRangeAffinityStr(pRight, nTop, zEndAff); codeApplyAffinity(pParse, regBase+nEq, nTop, zEndAff); }else{ assert( pParse->db->mallocFailed ); } nConstraint += nTop; testcase( pRangeEnd->wtFlags & TERM_VIRTUAL ); if( sqlite3ExprIsVector(pRight)==0 ){ disableTerm(pLevel, pRangeEnd); }else{ endEq = 1; } }else if( bStopAtNull ){ if( regBignull==0 ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); endEq = 0; } nConstraint++; } sqlite3DbFree(db, zStartAff); sqlite3DbFree(db, zEndAff); /* Top of the loop body */ if( pLevel->p2==0 ) pLevel->p2 = sqlite3VdbeCurrentAddr(v); /* Check if the index cursor is past the end of the range. */ if( nConstraint ){ if( regBignull ){ /* Except, skip the end-of-range check while doing the NULL-scan */ sqlite3VdbeAddOp2(v, OP_IfNot, regBignull, sqlite3VdbeCurrentAddr(v)+3); VdbeComment((v, "If NULL-scan 2nd pass")); VdbeCoverage(v); } op = aEndOp[bRev*2 + endEq]; sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); if( addrSeekScan ) sqlite3VdbeJumpHere(v, addrSeekScan); } if( regBignull ){ /* During a NULL-scan, check to see if we have reached the end of ** the NULLs */ assert( bSeekPastNull==!bStopAtNull ); assert( bSeekPastNull+bStopAtNull==1 ); assert( nConstraint+bSeekPastNull>0 ); sqlite3VdbeAddOp2(v, OP_If, regBignull, sqlite3VdbeCurrentAddr(v)+2); VdbeComment((v, "If NULL-scan 1st pass")); VdbeCoverage(v); op = aEndOp[bRev*2 + bSeekPastNull]; sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint+bSeekPastNull); testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); } if( (pLoop->wsFlags & WHERE_IN_EARLYOUT)!=0 ){ sqlite3VdbeAddOp3(v, OP_SeekHit, iIdxCur, nEq, nEq); } /* Seek the table cursor, if required */ omitTable = (pLoop->wsFlags & WHERE_IDX_ONLY)!=0 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0; if( omitTable ){ /* pIdx is a covering index. No need to access the main table. */ }else if( HasRowid(pIdx->pTable) ){ codeDeferredSeek(pWInfo, pIdx, iCur, iIdxCur); }else if( iCur!=iIdxCur ){ Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable); iRowidReg = sqlite3GetTempRange(pParse, pPk->nKeyCol); for(j=0; jnKeyCol; j++){ k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[j]); sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, iRowidReg+j); } sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont, iRowidReg, pPk->nKeyCol); VdbeCoverage(v); } if( pLevel->iLeftJoin==0 ){ /* If pIdx is an index on one or more expressions, then look through ** all the expressions in pWInfo and try to transform matching expressions ** into reference to index columns. Also attempt to translate references ** to virtual columns in the table into references to (stored) columns ** of the index. ** ** Do not do this for the RHS of a LEFT JOIN. This is because the ** expression may be evaluated after OP_NullRow has been executed on ** the cursor. In this case it is important to do the full evaluation, ** as the result of the expression may not be NULL, even if all table ** column values are. https://www.sqlite.org/src/info/7fa8049685b50b5a ** ** Also, do not do this when processing one index an a multi-index ** OR clause, since the transformation will become invalid once we ** move forward to the next index. ** https://sqlite.org/src/info/4e8e4857d32d401f */ if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ whereIndexExprTrans(pIdx, iCur, iIdxCur, pWInfo); } /* If a partial index is driving the loop, try to eliminate WHERE clause ** terms from the query that must be true due to the WHERE clause of ** the partial index. ** ** 2019-11-02 ticket 623eff57e76d45f6: This optimization does not work ** for a LEFT JOIN. */ if( pIdx->pPartIdxWhere ){ whereApplyPartialIndexConstraints(pIdx->pPartIdxWhere, iCur, pWC); } }else{ testcase( pIdx->pPartIdxWhere ); /* The following assert() is not a requirement, merely an observation: ** The OR-optimization doesn't work for the right hand table of ** a LEFT JOIN: */ assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ); } /* Record the instruction used to terminate the loop. */ if( pLoop->wsFlags & WHERE_ONEROW ){ pLevel->op = OP_Noop; }else if( bRev ){ pLevel->op = OP_Prev; }else{ pLevel->op = OP_Next; } pLevel->p1 = iIdxCur; pLevel->p3 = (pLoop->wsFlags&WHERE_UNQ_WANTED)!=0 ? 1:0; if( (pLoop->wsFlags & WHERE_CONSTRAINT)==0 ){ pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; }else{ assert( pLevel->p5==0 ); } if( omitTable ) pIdx = 0; }else #ifndef SQLITE_OMIT_OR_OPTIMIZATION if( pLoop->wsFlags & WHERE_MULTI_OR ){ /* Case 5: Two or more separately indexed terms connected by OR ** ** Example: ** ** CREATE TABLE t1(a,b,c,d); ** CREATE INDEX i1 ON t1(a); ** CREATE INDEX i2 ON t1(b); ** CREATE INDEX i3 ON t1(c); ** ** SELECT * FROM t1 WHERE a=5 OR b=7 OR (c=11 AND d=13) ** ** In the example, there are three indexed terms connected by OR. ** The top of the loop looks like this: ** ** Null 1 # Zero the rowset in reg 1 ** ** Then, for each indexed term, the following. The arguments to ** RowSetTest are such that the rowid of the current row is inserted ** into the RowSet. If it is already present, control skips the ** Gosub opcode and jumps straight to the code generated by WhereEnd(). ** ** sqlite3WhereBegin() ** RowSetTest # Insert rowid into rowset ** Gosub 2 A ** sqlite3WhereEnd() ** ** Following the above, code to terminate the loop. Label A, the target ** of the Gosub above, jumps to the instruction right after the Goto. ** ** Null 1 # Zero the rowset in reg 1 ** Goto B # The loop is finished. ** ** A: # Return data, whatever. ** ** Return 2 # Jump back to the Gosub ** ** B: ** ** Added 2014-05-26: If the table is a WITHOUT ROWID table, then ** use an ephemeral index instead of a RowSet to record the primary ** keys of the rows we have already seen. ** */ WhereClause *pOrWc; /* The OR-clause broken out into subterms */ SrcList *pOrTab; /* Shortened table list or OR-clause generation */ Index *pCov = 0; /* Potential covering index (or NULL) */ int iCovCur = pParse->nTab++; /* Cursor used for index scans (if any) */ int regReturn = ++pParse->nMem; /* Register used with OP_Gosub */ int regRowset = 0; /* Register for RowSet object */ int regRowid = 0; /* Register holding rowid */ int iLoopBody = sqlite3VdbeMakeLabel(pParse);/* Start of loop body */ int iRetInit; /* Address of regReturn init */ int untestedTerms = 0; /* Some terms not completely tested */ int ii; /* Loop counter */ Expr *pAndExpr = 0; /* An ".. AND (...)" expression */ Table *pTab = pTabItem->pTab; pTerm = pLoop->aLTerm[0]; assert( pTerm!=0 ); assert( pTerm->eOperator & WO_OR ); assert( (pTerm->wtFlags & TERM_ORINFO)!=0 ); pOrWc = &pTerm->u.pOrInfo->wc; pLevel->op = OP_Return; pLevel->p1 = regReturn; /* Set up a new SrcList in pOrTab containing the table being scanned ** by this loop in the a[0] slot and all notReady tables in a[1..] slots. ** This becomes the SrcList in the recursive call to sqlite3WhereBegin(). */ if( pWInfo->nLevel>1 ){ int nNotReady; /* The number of notReady tables */ SrcItem *origSrc; /* Original list of tables */ nNotReady = pWInfo->nLevel - iLevel - 1; pOrTab = sqlite3StackAllocRaw(db, sizeof(*pOrTab)+ nNotReady*sizeof(pOrTab->a[0])); if( pOrTab==0 ) return notReady; pOrTab->nAlloc = (u8)(nNotReady + 1); pOrTab->nSrc = pOrTab->nAlloc; memcpy(pOrTab->a, pTabItem, sizeof(*pTabItem)); origSrc = pWInfo->pTabList->a; for(k=1; k<=nNotReady; k++){ memcpy(&pOrTab->a[k], &origSrc[pLevel[k].iFrom], sizeof(pOrTab->a[k])); } }else{ pOrTab = pWInfo->pTabList; } /* Initialize the rowset register to contain NULL. An SQL NULL is ** equivalent to an empty rowset. Or, create an ephemeral index ** capable of holding primary keys in the case of a WITHOUT ROWID. ** ** Also initialize regReturn to contain the address of the instruction ** immediately following the OP_Return at the bottom of the loop. This ** is required in a few obscure LEFT JOIN cases where control jumps ** over the top of the loop into the body of it. In this case the ** correct response for the end-of-loop code (the OP_Return) is to ** fall through to the next instruction, just as an OP_Next does if ** called on an uninitialized cursor. */ if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ if( HasRowid(pTab) ){ regRowset = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Null, 0, regRowset); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); regRowset = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_OpenEphemeral, regRowset, pPk->nKeyCol); sqlite3VdbeSetP4KeyInfo(pParse, pPk); } regRowid = ++pParse->nMem; } iRetInit = sqlite3VdbeAddOp2(v, OP_Integer, 0, regReturn); /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y ** Then for every term xN, evaluate as the subexpression: xN AND y ** That way, terms in y that are factored into the disjunction will ** be picked up by the recursive calls to sqlite3WhereBegin() below. ** ** Actually, each subexpression is converted to "xN AND w" where w is ** the "interesting" terms of z - terms that did not originate in the ** ON or USING clause of a LEFT JOIN, and terms that are usable as ** indices. ** ** This optimization also only applies if the (x1 OR x2 OR ...) term ** is not contained in the ON clause of a LEFT JOIN. ** See ticket http://www.sqlite.org/src/info/f2369304e4 ** ** 2022-02-04: Do not push down slices of a row-value comparison. ** In other words, "w" or "y" may not be a slice of a vector. Otherwise, ** the initialization of the right-hand operand of the vector comparison ** might not occur, or might occur only in an OR branch that is not ** taken. dbsqlfuzz 80a9fade844b4fb43564efc972bcb2c68270f5d1. */ if( pWC->nTerm>1 ){ int iTerm; for(iTerm=0; iTermnTerm; iTerm++){ Expr *pExpr = pWC->a[iTerm].pExpr; if( &pWC->a[iTerm] == pTerm ) continue; testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL ); testcase( pWC->a[iTerm].wtFlags & TERM_CODED ); testcase( pWC->a[iTerm].wtFlags & TERM_SLICE ); if( (pWC->a[iTerm].wtFlags & (TERM_VIRTUAL|TERM_CODED|TERM_SLICE))!=0 ){ continue; } if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue; testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO ); pExpr = sqlite3ExprDup(db, pExpr, 0); pAndExpr = sqlite3ExprAnd(pParse, pAndExpr, pExpr); } if( pAndExpr ){ /* The extra 0x10000 bit on the opcode is masked off and does not ** become part of the new Expr.op. However, it does make the ** op==TK_AND comparison inside of sqlite3PExpr() false, and this ** prevents sqlite3PExpr() from applying the AND short-circuit ** optimization, which we do not want here. */ pAndExpr = sqlite3PExpr(pParse, TK_AND|0x10000, 0, pAndExpr); } } /* Run a separate WHERE clause for each term of the OR clause. After ** eliminating duplicates from other WHERE clauses, the action for each ** sub-WHERE clause is to to invoke the main loop body as a subroutine. */ ExplainQueryPlan((pParse, 1, "MULTI-INDEX OR")); for(ii=0; iinTerm; ii++){ WhereTerm *pOrTerm = &pOrWc->a[ii]; if( pOrTerm->leftCursor==iCur || (pOrTerm->eOperator & WO_AND)!=0 ){ WhereInfo *pSubWInfo; /* Info for single OR-term scan */ Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */ Expr *pDelete; /* Local copy of OR clause term */ int jmp1 = 0; /* Address of jump operation */ testcase( (pTabItem[0].fg.jointype & JT_LEFT)!=0 && !ExprHasProperty(pOrExpr, EP_FromJoin) ); /* See TH3 vtab25.400 and ticket 614b25314c766238 */ pDelete = pOrExpr = sqlite3ExprDup(db, pOrExpr, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDelete); continue; } if( pAndExpr ){ pAndExpr->pLeft = pOrExpr; pOrExpr = pAndExpr; } /* Loop through table entries that match term pOrTerm. */ ExplainQueryPlan((pParse, 1, "INDEX %d", ii+1)); WHERETRACE(0xffff, ("Subplan for OR-clause:\n")); pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrExpr, 0, 0, 0, WHERE_OR_SUBCLAUSE, iCovCur); assert( pSubWInfo || pParse->nErr ); if( pSubWInfo ){ WhereLoop *pSubLoop; int addrExplain = sqlite3WhereExplainOneScan( pParse, pOrTab, &pSubWInfo->a[0], 0 ); sqlite3WhereAddScanStatus(v, pOrTab, &pSubWInfo->a[0], addrExplain); /* This is the sub-WHERE clause body. First skip over ** duplicate rows from prior sub-WHERE clauses, and record the ** rowid (or PRIMARY KEY) for the current row so that the same ** row will be skipped in subsequent sub-WHERE clauses. */ if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ int iSet = ((ii==pOrWc->nTerm-1)?-1:ii); if( HasRowid(pTab) ){ sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, -1, regRowid); jmp1 = sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset, 0, regRowid, iSet); VdbeCoverage(v); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); int nPk = pPk->nKeyCol; int iPk; int r; /* Read the PK into an array of temp registers. */ r = sqlite3GetTempRange(pParse, nPk); for(iPk=0; iPkaiColumn[iPk]; sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, iCol,r+iPk); } /* Check if the temp table already contains this key. If so, ** the row has already been included in the result set and ** can be ignored (by jumping past the Gosub below). Otherwise, ** insert the key into the temp table and proceed with processing ** the row. ** ** Use some of the same optimizations as OP_RowSetTest: If iSet ** is zero, assume that the key cannot already be present in ** the temp table. And if iSet is -1, assume that there is no ** need to insert the key into the temp table, as it will never ** be tested for. */ if( iSet ){ jmp1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk); VdbeCoverage(v); } if( iSet>=0 ){ sqlite3VdbeAddOp3(v, OP_MakeRecord, r, nPk, regRowid); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, regRowset, regRowid, r, nPk); if( iSet ) sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); } /* Release the array of temp registers */ sqlite3ReleaseTempRange(pParse, r, nPk); } } /* Invoke the main loop body as a subroutine */ sqlite3VdbeAddOp2(v, OP_Gosub, regReturn, iLoopBody); /* Jump here (skipping the main loop body subroutine) if the ** current sub-WHERE row is a duplicate from prior sub-WHEREs. */ if( jmp1 ) sqlite3VdbeJumpHere(v, jmp1); /* The pSubWInfo->untestedTerms flag means that this OR term ** contained one or more AND term from a notReady table. The ** terms from the notReady table could not be tested and will ** need to be tested later. */ if( pSubWInfo->untestedTerms ) untestedTerms = 1; /* If all of the OR-connected terms are optimized using the same ** index, and the index is opened using the same cursor number ** by each call to sqlite3WhereBegin() made by this loop, it may ** be possible to use that index as a covering index. ** ** If the call to sqlite3WhereBegin() above resulted in a scan that ** uses an index, and this is either the first OR-connected term ** processed or the index is the same as that used by all previous ** terms, set pCov to the candidate covering index. Otherwise, set ** pCov to NULL to indicate that no candidate covering index will ** be available. */ pSubLoop = pSubWInfo->a[0].pWLoop; assert( (pSubLoop->wsFlags & WHERE_AUTO_INDEX)==0 ); if( (pSubLoop->wsFlags & WHERE_INDEXED)!=0 && (ii==0 || pSubLoop->u.btree.pIndex==pCov) && (HasRowid(pTab) || !IsPrimaryKeyIndex(pSubLoop->u.btree.pIndex)) ){ assert( pSubWInfo->a[0].iIdxCur==iCovCur ); pCov = pSubLoop->u.btree.pIndex; }else{ pCov = 0; } if( sqlite3WhereUsesDeferredSeek(pSubWInfo) ){ pWInfo->bDeferredSeek = 1; } /* Finish the loop through table entries that match term pOrTerm. */ sqlite3WhereEnd(pSubWInfo); ExplainQueryPlanPop(pParse); } sqlite3ExprDelete(db, pDelete); } } ExplainQueryPlanPop(pParse); assert( pLevel->pWLoop==pLoop ); assert( (pLoop->wsFlags & WHERE_MULTI_OR)!=0 ); assert( (pLoop->wsFlags & WHERE_IN_ABLE)==0 ); pLevel->u.pCoveringIdx = pCov; if( pCov ) pLevel->iIdxCur = iCovCur; if( pAndExpr ){ pAndExpr->pLeft = 0; sqlite3ExprDelete(db, pAndExpr); } sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v)); sqlite3VdbeGoto(v, pLevel->addrBrk); sqlite3VdbeResolveLabel(v, iLoopBody); if( pWInfo->nLevel>1 ){ sqlite3StackFree(db, pOrTab); } if( !untestedTerms ) disableTerm(pLevel, pTerm); }else #endif /* SQLITE_OMIT_OR_OPTIMIZATION */ { /* Case 6: There is no usable index. We must do a complete ** scan of the entire table. */ static const u8 aStep[] = { OP_Next, OP_Prev }; static const u8 aStart[] = { OP_Rewind, OP_Last }; assert( bRev==0 || bRev==1 ); if( pTabItem->fg.isRecursive ){ /* Tables marked isRecursive have only a single row that is stored in ** a pseudo-cursor. No need to Rewind or Next such cursors. */ pLevel->op = OP_Noop; }else{ codeCursorHint(pTabItem, pWInfo, pLevel, 0); pLevel->op = aStep[bRev]; pLevel->p1 = iCur; pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, aStart[bRev], iCur, addrHalt); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; } } #ifdef SQLITE_ENABLE_STMT_SCANSTATUS pLevel->addrVisit = sqlite3VdbeCurrentAddr(v); #endif /* Insert code to test every subexpression that can be completely ** computed using the current set of tables. ** ** This loop may run between one and three times, depending on the ** constraints to be generated. The value of stack variable iLoop ** determines the constraints coded by each iteration, as follows: ** ** iLoop==1: Code only expressions that are entirely covered by pIdx. ** iLoop==2: Code remaining expressions that do not contain correlated ** sub-queries. ** iLoop==3: Code all remaining expressions. ** ** An effort is made to skip unnecessary iterations of the loop. */ iLoop = (pIdx ? 1 : 2); do{ int iNext = 0; /* Next value for iLoop */ for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ Expr *pE; int skipLikeAddr = 0; testcase( pTerm->wtFlags & TERM_VIRTUAL ); testcase( pTerm->wtFlags & TERM_CODED ); if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ testcase( pWInfo->untestedTerms==0 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ); pWInfo->untestedTerms = 1; continue; } pE = pTerm->pExpr; assert( pE!=0 ); if( (pTabItem->fg.jointype&JT_LEFT) && !ExprHasProperty(pE,EP_FromJoin) ){ continue; } if( iLoop==1 && !sqlite3ExprCoveredByIndex(pE, pLevel->iTabCur, pIdx) ){ iNext = 2; continue; } if( iLoop<3 && (pTerm->wtFlags & TERM_VARSELECT) ){ if( iNext==0 ) iNext = 3; continue; } if( (pTerm->wtFlags & TERM_LIKECOND)!=0 ){ /* If the TERM_LIKECOND flag is set, that means that the range search ** is sufficient to guarantee that the LIKE operator is true, so we ** can skip the call to the like(A,B) function. But this only works ** for strings. So do not skip the call to the function on the pass ** that compares BLOBs. */ #ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS continue; #else u32 x = pLevel->iLikeRepCntr; if( x>0 ){ skipLikeAddr = sqlite3VdbeAddOp1(v, (x&1)?OP_IfNot:OP_If,(int)(x>>1)); VdbeCoverageIf(v, (x&1)==1); VdbeCoverageIf(v, (x&1)==0); } #endif } #ifdef WHERETRACE_ENABLED /* 0xffff */ if( sqlite3WhereTrace ){ VdbeNoopComment((v, "WhereTerm[%d] (%p) priority=%d", pWC->nTerm-j, pTerm, iLoop)); } if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("Coding auxiliary constraint:\n"); sqlite3WhereTermPrint(pTerm, pWC->nTerm-j); } #endif sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL); if( skipLikeAddr ) sqlite3VdbeJumpHere(v, skipLikeAddr); pTerm->wtFlags |= TERM_CODED; } iLoop = iNext; }while( iLoop>0 ); /* Insert code to test for implied constraints based on transitivity ** of the "==" operator. ** ** Example: If the WHERE clause contains "t1.a=t2.b" and "t2.b=123" ** and we are coding the t1 loop and the t2 loop has not yet coded, ** then we cannot use the "t1.a=t2.b" constraint, but we can code ** the implied "t1.a=123" constraint. */ for(pTerm=pWC->a, j=pWC->nBase; j>0; j--, pTerm++){ Expr *pE, sEAlt; WhereTerm *pAlt; if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) continue; if( (pTerm->eOperator & WO_EQUIV)==0 ) continue; if( pTerm->leftCursor!=iCur ) continue; if( pTabItem->fg.jointype & JT_LEFT ) continue; pE = pTerm->pExpr; #ifdef WHERETRACE_ENABLED /* 0x800 */ if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("Coding transitive constraint:\n"); sqlite3WhereTermPrint(pTerm, pWC->nTerm-j); } #endif assert( !ExprHasProperty(pE, EP_FromJoin) ); assert( (pTerm->prereqRight & pLevel->notReady)!=0 ); assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.x.leftColumn, notReady, WO_EQ|WO_IN|WO_IS, 0); if( pAlt==0 ) continue; if( pAlt->wtFlags & (TERM_CODED) ) continue; if( (pAlt->eOperator & WO_IN) && ExprUseXSelect(pAlt->pExpr) && (pAlt->pExpr->x.pSelect->pEList->nExpr>1) ){ continue; } testcase( pAlt->eOperator & WO_EQ ); testcase( pAlt->eOperator & WO_IS ); testcase( pAlt->eOperator & WO_IN ); VdbeModuleComment((v, "begin transitive constraint")); sEAlt = *pAlt->pExpr; sEAlt.pLeft = pE->pLeft; sqlite3ExprIfFalse(pParse, &sEAlt, addrCont, SQLITE_JUMPIFNULL); pAlt->wtFlags |= TERM_CODED; } /* For a LEFT OUTER JOIN, generate code that will record the fact that ** at least one row of the right table has matched the left table. */ if( pLevel->iLeftJoin ){ pLevel->addrFirst = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin); VdbeComment((v, "record LEFT JOIN hit")); for(pTerm=pWC->a, j=0; jnBase; j++, pTerm++){ testcase( pTerm->wtFlags & TERM_VIRTUAL ); testcase( pTerm->wtFlags & TERM_CODED ); if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ assert( pWInfo->untestedTerms ); continue; } assert( pTerm->pExpr ); sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); pTerm->wtFlags |= TERM_CODED; } } #if WHERETRACE_ENABLED /* 0x20800 */ if( sqlite3WhereTrace & 0x20000 ){ sqlite3DebugPrintf("All WHERE-clause terms after coding level %d:\n", iLevel); sqlite3WhereClausePrint(pWC); } if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("End Coding level %d: notReady=%llx\n", iLevel, (u64)pLevel->notReady); } #endif return pLevel->notReady; } /************** End of wherecode.c *******************************************/ /************** Begin file whereexpr.c ***************************************/ /* ** 2015-06-08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** ** This file was originally part of where.c but was split out to improve ** readability and editabiliity. This file contains utility routines for ** analyzing Expr objects in the WHERE clause. */ /* #include "sqliteInt.h" */ /* #include "whereInt.h" */ /* Forward declarations */ static void exprAnalyze(SrcList*, WhereClause*, int); /* ** Deallocate all memory associated with a WhereOrInfo object. */ static void whereOrInfoDelete(sqlite3 *db, WhereOrInfo *p){ sqlite3WhereClauseClear(&p->wc); sqlite3DbFree(db, p); } /* ** Deallocate all memory associated with a WhereAndInfo object. */ static void whereAndInfoDelete(sqlite3 *db, WhereAndInfo *p){ sqlite3WhereClauseClear(&p->wc); sqlite3DbFree(db, p); } /* ** Add a single new WhereTerm entry to the WhereClause object pWC. ** The new WhereTerm object is constructed from Expr p and with wtFlags. ** The index in pWC->a[] of the new WhereTerm is returned on success. ** 0 is returned if the new WhereTerm could not be added due to a memory ** allocation error. The memory allocation failure will be recorded in ** the db->mallocFailed flag so that higher-level functions can detect it. ** ** This routine will increase the size of the pWC->a[] array as necessary. ** ** If the wtFlags argument includes TERM_DYNAMIC, then responsibility ** for freeing the expression p is assumed by the WhereClause object pWC. ** This is true even if this routine fails to allocate a new WhereTerm. ** ** WARNING: This routine might reallocate the space used to store ** WhereTerms. All pointers to WhereTerms should be invalidated after ** calling this routine. Such pointers may be reinitialized by referencing ** the pWC->a[] array. */ static int whereClauseInsert(WhereClause *pWC, Expr *p, u16 wtFlags){ WhereTerm *pTerm; int idx; testcase( wtFlags & TERM_VIRTUAL ); if( pWC->nTerm>=pWC->nSlot ){ WhereTerm *pOld = pWC->a; sqlite3 *db = pWC->pWInfo->pParse->db; pWC->a = sqlite3DbMallocRawNN(db, sizeof(pWC->a[0])*pWC->nSlot*2 ); if( pWC->a==0 ){ if( wtFlags & TERM_DYNAMIC ){ sqlite3ExprDelete(db, p); } pWC->a = pOld; return 0; } memcpy(pWC->a, pOld, sizeof(pWC->a[0])*pWC->nTerm); if( pOld!=pWC->aStatic ){ sqlite3DbFree(db, pOld); } pWC->nSlot = sqlite3DbMallocSize(db, pWC->a)/sizeof(pWC->a[0]); } pTerm = &pWC->a[idx = pWC->nTerm++]; if( (wtFlags & TERM_VIRTUAL)==0 ) pWC->nBase = pWC->nTerm; if( p && ExprHasProperty(p, EP_Unlikely) ){ pTerm->truthProb = sqlite3LogEst(p->iTable) - 270; }else{ pTerm->truthProb = 1; } pTerm->pExpr = sqlite3ExprSkipCollateAndLikely(p); pTerm->wtFlags = wtFlags; pTerm->pWC = pWC; pTerm->iParent = -1; memset(&pTerm->eOperator, 0, sizeof(WhereTerm) - offsetof(WhereTerm,eOperator)); return idx; } /* ** Return TRUE if the given operator is one of the operators that is ** allowed for an indexable WHERE clause term. The allowed operators are ** "=", "<", ">", "<=", ">=", "IN", "IS", and "IS NULL" */ static int allowedOp(int op){ assert( TK_GT>TK_EQ && TK_GTTK_EQ && TK_LTTK_EQ && TK_LE=TK_EQ && op<=TK_GE) || op==TK_ISNULL || op==TK_IS; } /* ** Commute a comparison operator. Expressions of the form "X op Y" ** are converted into "Y op X". */ static u16 exprCommute(Parse *pParse, Expr *pExpr){ if( pExpr->pLeft->op==TK_VECTOR || pExpr->pRight->op==TK_VECTOR || sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, pExpr->pRight) != sqlite3BinaryCompareCollSeq(pParse, pExpr->pRight, pExpr->pLeft) ){ pExpr->flags ^= EP_Commuted; } SWAP(Expr*,pExpr->pRight,pExpr->pLeft); if( pExpr->op>=TK_GT ){ assert( TK_LT==TK_GT+2 ); assert( TK_GE==TK_LE+2 ); assert( TK_GT>TK_EQ ); assert( TK_GTop>=TK_GT && pExpr->op<=TK_GE ); pExpr->op = ((pExpr->op-TK_GT)^2)+TK_GT; } return 0; } /* ** Translate from TK_xx operator to WO_xx bitmask. */ static u16 operatorMask(int op){ u16 c; assert( allowedOp(op) ); if( op==TK_IN ){ c = WO_IN; }else if( op==TK_ISNULL ){ c = WO_ISNULL; }else if( op==TK_IS ){ c = WO_IS; }else{ assert( (WO_EQ<<(op-TK_EQ)) < 0x7fff ); c = (u16)(WO_EQ<<(op-TK_EQ)); } assert( op!=TK_ISNULL || c==WO_ISNULL ); assert( op!=TK_IN || c==WO_IN ); assert( op!=TK_EQ || c==WO_EQ ); assert( op!=TK_LT || c==WO_LT ); assert( op!=TK_LE || c==WO_LE ); assert( op!=TK_GT || c==WO_GT ); assert( op!=TK_GE || c==WO_GE ); assert( op!=TK_IS || c==WO_IS ); return c; } #ifndef SQLITE_OMIT_LIKE_OPTIMIZATION /* ** Check to see if the given expression is a LIKE or GLOB operator that ** can be optimized using inequality constraints. Return TRUE if it is ** so and false if not. ** ** In order for the operator to be optimizible, the RHS must be a string ** literal that does not begin with a wildcard. The LHS must be a column ** that may only be NULL, a string, or a BLOB, never a number. (This means ** that virtual tables cannot participate in the LIKE optimization.) The ** collating sequence for the column on the LHS must be appropriate for ** the operator. */ static int isLikeOrGlob( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* Test this expression */ Expr **ppPrefix, /* Pointer to TK_STRING expression with pattern prefix */ int *pisComplete, /* True if the only wildcard is % in the last character */ int *pnoCase /* True if uppercase is equivalent to lowercase */ ){ const u8 *z = 0; /* String on RHS of LIKE operator */ Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ ExprList *pList; /* List of operands to the LIKE operator */ u8 c; /* One character in z[] */ int cnt; /* Number of non-wildcard prefix characters */ u8 wc[4]; /* Wildcard characters */ sqlite3 *db = pParse->db; /* Database connection */ sqlite3_value *pVal = 0; int op; /* Opcode of pRight */ int rc; /* Result code to return */ if( !sqlite3IsLikeFunction(db, pExpr, pnoCase, (char*)wc) ){ return 0; } #ifdef SQLITE_EBCDIC if( *pnoCase ) return 0; #endif assert( ExprUseXList(pExpr) ); pList = pExpr->x.pList; pLeft = pList->a[1].pExpr; pRight = sqlite3ExprSkipCollate(pList->a[0].pExpr); op = pRight->op; if( op==TK_VARIABLE && (db->flags & SQLITE_EnableQPSG)==0 ){ Vdbe *pReprepare = pParse->pReprepare; int iCol = pRight->iColumn; pVal = sqlite3VdbeGetBoundValue(pReprepare, iCol, SQLITE_AFF_BLOB); if( pVal && sqlite3_value_type(pVal)==SQLITE_TEXT ){ z = sqlite3_value_text(pVal); } sqlite3VdbeSetVarmask(pParse->pVdbe, iCol); assert( pRight->op==TK_VARIABLE || pRight->op==TK_REGISTER ); }else if( op==TK_STRING ){ assert( !ExprHasProperty(pRight, EP_IntValue) ); z = (u8*)pRight->u.zToken; } if( z ){ /* Count the number of prefix characters prior to the first wildcard */ cnt = 0; while( (c=z[cnt])!=0 && c!=wc[0] && c!=wc[1] && c!=wc[2] ){ cnt++; if( c==wc[3] && z[cnt]!=0 ) cnt++; } /* The optimization is possible only if (1) the pattern does not begin ** with a wildcard and if (2) the non-wildcard prefix does not end with ** an (illegal 0xff) character, or (3) the pattern does not consist of ** a single escape character. The second condition is necessary so ** that we can increment the prefix key to find an upper bound for the ** range search. The third is because the caller assumes that the pattern ** consists of at least one character after all escapes have been ** removed. */ if( cnt!=0 && 255!=(u8)z[cnt-1] && (cnt>1 || z[0]!=wc[3]) ){ Expr *pPrefix; /* A "complete" match if the pattern ends with "*" or "%" */ *pisComplete = c==wc[0] && z[cnt+1]==0; /* Get the pattern prefix. Remove all escapes from the prefix. */ pPrefix = sqlite3Expr(db, TK_STRING, (char*)z); if( pPrefix ){ int iFrom, iTo; char *zNew; assert( !ExprHasProperty(pPrefix, EP_IntValue) ); zNew = pPrefix->u.zToken; zNew[cnt] = 0; for(iFrom=iTo=0; iFrom0 ); /* If the LHS is not an ordinary column with TEXT affinity, then the ** pattern prefix boundaries (both the start and end boundaries) must ** not look like a number. Otherwise the pattern might be treated as ** a number, which will invalidate the LIKE optimization. ** ** Getting this right has been a persistent source of bugs in the ** LIKE optimization. See, for example: ** 2018-09-10 https://sqlite.org/src/info/c94369cae9b561b1 ** 2019-05-02 https://sqlite.org/src/info/b043a54c3de54b28 ** 2019-06-10 https://sqlite.org/src/info/fd76310a5e843e07 ** 2019-06-14 https://sqlite.org/src/info/ce8717f0885af975 ** 2019-09-03 https://sqlite.org/src/info/0f0428096f17252a */ if( pLeft->op!=TK_COLUMN || sqlite3ExprAffinity(pLeft)!=SQLITE_AFF_TEXT || (ALWAYS( ExprUseYTab(pLeft) ) && pLeft->y.pTab && IsVirtual(pLeft->y.pTab)) /* Might be numeric */ ){ int isNum; double rDummy; isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); if( isNum<=0 ){ if( iTo==1 && zNew[0]=='-' ){ isNum = +1; }else{ zNew[iTo-1]++; isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); zNew[iTo-1]--; } } if( isNum>0 ){ sqlite3ExprDelete(db, pPrefix); sqlite3ValueFree(pVal); return 0; } } } *ppPrefix = pPrefix; /* If the RHS pattern is a bound parameter, make arrangements to ** reprepare the statement when that parameter is rebound */ if( op==TK_VARIABLE ){ Vdbe *v = pParse->pVdbe; sqlite3VdbeSetVarmask(v, pRight->iColumn); assert( !ExprHasProperty(pRight, EP_IntValue) ); if( *pisComplete && pRight->u.zToken[1] ){ /* If the rhs of the LIKE expression is a variable, and the current ** value of the variable means there is no need to invoke the LIKE ** function, then no OP_Variable will be added to the program. ** This causes problems for the sqlite3_bind_parameter_name() ** API. To work around them, add a dummy OP_Variable here. */ int r1 = sqlite3GetTempReg(pParse); sqlite3ExprCodeTarget(pParse, pRight, r1); sqlite3VdbeChangeP3(v, sqlite3VdbeCurrentAddr(v)-1, 0); sqlite3ReleaseTempReg(pParse, r1); } } }else{ z = 0; } } rc = (z!=0); sqlite3ValueFree(pVal); return rc; } #endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Check to see if the pExpr expression is a form that needs to be passed ** to the xBestIndex method of virtual tables. Forms of interest include: ** ** Expression Virtual Table Operator ** ----------------------- --------------------------------- ** 1. column MATCH expr SQLITE_INDEX_CONSTRAINT_MATCH ** 2. column GLOB expr SQLITE_INDEX_CONSTRAINT_GLOB ** 3. column LIKE expr SQLITE_INDEX_CONSTRAINT_LIKE ** 4. column REGEXP expr SQLITE_INDEX_CONSTRAINT_REGEXP ** 5. column != expr SQLITE_INDEX_CONSTRAINT_NE ** 6. expr != column SQLITE_INDEX_CONSTRAINT_NE ** 7. column IS NOT expr SQLITE_INDEX_CONSTRAINT_ISNOT ** 8. expr IS NOT column SQLITE_INDEX_CONSTRAINT_ISNOT ** 9. column IS NOT NULL SQLITE_INDEX_CONSTRAINT_ISNOTNULL ** ** In every case, "column" must be a column of a virtual table. If there ** is a match, set *ppLeft to the "column" expression, set *ppRight to the ** "expr" expression (even though in forms (6) and (8) the column is on the ** right and the expression is on the left). Also set *peOp2 to the ** appropriate virtual table operator. The return value is 1 or 2 if there ** is a match. The usual return is 1, but if the RHS is also a column ** of virtual table in forms (5) or (7) then return 2. ** ** If the expression matches none of the patterns above, return 0. */ static int isAuxiliaryVtabOperator( sqlite3 *db, /* Parsing context */ Expr *pExpr, /* Test this expression */ unsigned char *peOp2, /* OUT: 0 for MATCH, or else an op2 value */ Expr **ppLeft, /* Column expression to left of MATCH/op2 */ Expr **ppRight /* Expression to left of MATCH/op2 */ ){ if( pExpr->op==TK_FUNCTION ){ static const struct Op2 { const char *zOp; unsigned char eOp2; } aOp[] = { { "match", SQLITE_INDEX_CONSTRAINT_MATCH }, { "glob", SQLITE_INDEX_CONSTRAINT_GLOB }, { "like", SQLITE_INDEX_CONSTRAINT_LIKE }, { "regexp", SQLITE_INDEX_CONSTRAINT_REGEXP } }; ExprList *pList; Expr *pCol; /* Column reference */ int i; assert( ExprUseXList(pExpr) ); pList = pExpr->x.pList; if( pList==0 || pList->nExpr!=2 ){ return 0; } /* Built-in operators MATCH, GLOB, LIKE, and REGEXP attach to a ** virtual table on their second argument, which is the same as ** the left-hand side operand in their in-fix form. ** ** vtab_column MATCH expression ** MATCH(expression,vtab_column) */ pCol = pList->a[1].pExpr; assert( pCol->op!=TK_COLUMN || ExprUseYTab(pCol) ); testcase( pCol->op==TK_COLUMN && pCol->y.pTab==0 ); if( ExprIsVtab(pCol) ){ for(i=0; iu.zToken, aOp[i].zOp)==0 ){ *peOp2 = aOp[i].eOp2; *ppRight = pList->a[0].pExpr; *ppLeft = pCol; return 1; } } } /* We can also match against the first column of overloaded ** functions where xFindFunction returns a value of at least ** SQLITE_INDEX_CONSTRAINT_FUNCTION. ** ** OVERLOADED(vtab_column,expression) ** ** Historically, xFindFunction expected to see lower-case function ** names. But for this use case, xFindFunction is expected to deal ** with function names in an arbitrary case. */ pCol = pList->a[0].pExpr; assert( pCol->op!=TK_COLUMN || ExprUseYTab(pCol) ); testcase( pCol->op==TK_COLUMN && pCol->y.pTab==0 ); if( ExprIsVtab(pCol) ){ sqlite3_vtab *pVtab; sqlite3_module *pMod; void (*xNotUsed)(sqlite3_context*,int,sqlite3_value**); void *pNotUsed; pVtab = sqlite3GetVTable(db, pCol->y.pTab)->pVtab; assert( pVtab!=0 ); assert( pVtab->pModule!=0 ); assert( !ExprHasProperty(pExpr, EP_IntValue) ); pMod = (sqlite3_module *)pVtab->pModule; if( pMod->xFindFunction!=0 ){ i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed); if( i>=SQLITE_INDEX_CONSTRAINT_FUNCTION ){ *peOp2 = i; *ppRight = pList->a[1].pExpr; *ppLeft = pCol; return 1; } } } }else if( pExpr->op==TK_NE || pExpr->op==TK_ISNOT || pExpr->op==TK_NOTNULL ){ int res = 0; Expr *pLeft = pExpr->pLeft; Expr *pRight = pExpr->pRight; assert( pLeft->op!=TK_COLUMN || ExprUseYTab(pLeft) ); testcase( pLeft->op==TK_COLUMN && pLeft->y.pTab==0 ); if( ExprIsVtab(pLeft) ){ res++; } assert( pRight==0 || pRight->op!=TK_COLUMN || ExprUseYTab(pRight) ); testcase( pRight && pRight->op==TK_COLUMN && pRight->y.pTab==0 ); if( pRight && ExprIsVtab(pRight) ){ res++; SWAP(Expr*, pLeft, pRight); } *ppLeft = pLeft; *ppRight = pRight; if( pExpr->op==TK_NE ) *peOp2 = SQLITE_INDEX_CONSTRAINT_NE; if( pExpr->op==TK_ISNOT ) *peOp2 = SQLITE_INDEX_CONSTRAINT_ISNOT; if( pExpr->op==TK_NOTNULL ) *peOp2 = SQLITE_INDEX_CONSTRAINT_ISNOTNULL; return res; } return 0; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** If the pBase expression originated in the ON or USING clause of ** a join, then transfer the appropriate markings over to derived. */ static void transferJoinMarkings(Expr *pDerived, Expr *pBase){ if( pDerived ){ pDerived->flags |= pBase->flags & EP_FromJoin; pDerived->w.iRightJoinTable = pBase->w.iRightJoinTable; } } /* ** Mark term iChild as being a child of term iParent */ static void markTermAsChild(WhereClause *pWC, int iChild, int iParent){ pWC->a[iChild].iParent = iParent; pWC->a[iChild].truthProb = pWC->a[iParent].truthProb; pWC->a[iParent].nChild++; } /* ** Return the N-th AND-connected subterm of pTerm. Or if pTerm is not ** a conjunction, then return just pTerm when N==0. If N is exceeds ** the number of available subterms, return NULL. */ static WhereTerm *whereNthSubterm(WhereTerm *pTerm, int N){ if( pTerm->eOperator!=WO_AND ){ return N==0 ? pTerm : 0; } if( Nu.pAndInfo->wc.nTerm ){ return &pTerm->u.pAndInfo->wc.a[N]; } return 0; } /* ** Subterms pOne and pTwo are contained within WHERE clause pWC. The ** two subterms are in disjunction - they are OR-ed together. ** ** If these two terms are both of the form: "A op B" with the same ** A and B values but different operators and if the operators are ** compatible (if one is = and the other is <, for example) then ** add a new virtual AND term to pWC that is the combination of the ** two. ** ** Some examples: ** ** x x<=y ** x=y OR x=y --> x=y ** x<=y OR x x<=y ** ** The following is NOT generated: ** ** xy --> x!=y */ static void whereCombineDisjuncts( SrcList *pSrc, /* the FROM clause */ WhereClause *pWC, /* The complete WHERE clause */ WhereTerm *pOne, /* First disjunct */ WhereTerm *pTwo /* Second disjunct */ ){ u16 eOp = pOne->eOperator | pTwo->eOperator; sqlite3 *db; /* Database connection (for malloc) */ Expr *pNew; /* New virtual expression */ int op; /* Operator for the combined expression */ int idxNew; /* Index in pWC of the next virtual term */ if( (pOne->wtFlags | pTwo->wtFlags) & TERM_VNULL ) return; if( (pOne->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return; if( (pTwo->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return; if( (eOp & (WO_EQ|WO_LT|WO_LE))!=eOp && (eOp & (WO_EQ|WO_GT|WO_GE))!=eOp ) return; assert( pOne->pExpr->pLeft!=0 && pOne->pExpr->pRight!=0 ); assert( pTwo->pExpr->pLeft!=0 && pTwo->pExpr->pRight!=0 ); if( sqlite3ExprCompare(0,pOne->pExpr->pLeft, pTwo->pExpr->pLeft, -1) ) return; if( sqlite3ExprCompare(0,pOne->pExpr->pRight, pTwo->pExpr->pRight,-1) )return; /* If we reach this point, it means the two subterms can be combined */ if( (eOp & (eOp-1))!=0 ){ if( eOp & (WO_LT|WO_LE) ){ eOp = WO_LE; }else{ assert( eOp & (WO_GT|WO_GE) ); eOp = WO_GE; } } db = pWC->pWInfo->pParse->db; pNew = sqlite3ExprDup(db, pOne->pExpr, 0); if( pNew==0 ) return; for(op=TK_EQ; eOp!=(WO_EQ<<(op-TK_EQ)); op++){ assert( opop = op; idxNew = whereClauseInsert(pWC, pNew, TERM_VIRTUAL|TERM_DYNAMIC); exprAnalyze(pSrc, pWC, idxNew); } #if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY) /* ** Analyze a term that consists of two or more OR-connected ** subterms. So in: ** ** ... WHERE (a=5) AND (b=7 OR c=9 OR d=13) AND (d=13) ** ^^^^^^^^^^^^^^^^^^^^ ** ** This routine analyzes terms such as the middle term in the above example. ** A WhereOrTerm object is computed and attached to the term under ** analysis, regardless of the outcome of the analysis. Hence: ** ** WhereTerm.wtFlags |= TERM_ORINFO ** WhereTerm.u.pOrInfo = a dynamically allocated WhereOrTerm object ** ** The term being analyzed must have two or more of OR-connected subterms. ** A single subterm might be a set of AND-connected sub-subterms. ** Examples of terms under analysis: ** ** (A) t1.x=t2.y OR t1.x=t2.z OR t1.y=15 OR t1.z=t3.a+5 ** (B) x=expr1 OR expr2=x OR x=expr3 ** (C) t1.x=t2.y OR (t1.x=t2.z AND t1.y=15) ** (D) x=expr1 OR (y>11 AND y<22 AND z LIKE '*hello*') ** (E) (p.a=1 AND q.b=2 AND r.c=3) OR (p.x=4 AND q.y=5 AND r.z=6) ** (F) x>A OR (x=A AND y>=B) ** ** CASE 1: ** ** If all subterms are of the form T.C=expr for some single column of C and ** a single table T (as shown in example B above) then create a new virtual ** term that is an equivalent IN expression. In other words, if the term ** being analyzed is: ** ** x = expr1 OR expr2 = x OR x = expr3 ** ** then create a new virtual term like this: ** ** x IN (expr1,expr2,expr3) ** ** CASE 2: ** ** If there are exactly two disjuncts and one side has x>A and the other side ** has x=A (for the same x and A) then add a new virtual conjunct term to the ** WHERE clause of the form "x>=A". Example: ** ** x>A OR (x=A AND y>B) adds: x>=A ** ** The added conjunct can sometimes be helpful in query planning. ** ** CASE 3: ** ** If all subterms are indexable by a single table T, then set ** ** WhereTerm.eOperator = WO_OR ** WhereTerm.u.pOrInfo->indexable |= the cursor number for table T ** ** A subterm is "indexable" if it is of the form ** "T.C " where C is any column of table T and ** is one of "=", "<", "<=", ">", ">=", "IS NULL", or "IN". ** A subterm is also indexable if it is an AND of two or more ** subsubterms at least one of which is indexable. Indexable AND ** subterms have their eOperator set to WO_AND and they have ** u.pAndInfo set to a dynamically allocated WhereAndTerm object. ** ** From another point of view, "indexable" means that the subterm could ** potentially be used with an index if an appropriate index exists. ** This analysis does not consider whether or not the index exists; that ** is decided elsewhere. This analysis only looks at whether subterms ** appropriate for indexing exist. ** ** All examples A through E above satisfy case 3. But if a term ** also satisfies case 1 (such as B) we know that the optimizer will ** always prefer case 1, so in that case we pretend that case 3 is not ** satisfied. ** ** It might be the case that multiple tables are indexable. For example, ** (E) above is indexable on tables P, Q, and R. ** ** Terms that satisfy case 3 are candidates for lookup by using ** separate indices to find rowids for each subterm and composing ** the union of all rowids using a RowSet object. This is similar ** to "bitmap indices" in other database engines. ** ** OTHERWISE: ** ** If none of cases 1, 2, or 3 apply, then leave the eOperator set to ** zero. This term is not useful for search. */ static void exprAnalyzeOrTerm( SrcList *pSrc, /* the FROM clause */ WhereClause *pWC, /* the complete WHERE clause */ int idxTerm /* Index of the OR-term to be analyzed */ ){ WhereInfo *pWInfo = pWC->pWInfo; /* WHERE clause processing context */ Parse *pParse = pWInfo->pParse; /* Parser context */ sqlite3 *db = pParse->db; /* Database connection */ WhereTerm *pTerm = &pWC->a[idxTerm]; /* The term to be analyzed */ Expr *pExpr = pTerm->pExpr; /* The expression of the term */ int i; /* Loop counters */ WhereClause *pOrWc; /* Breakup of pTerm into subterms */ WhereTerm *pOrTerm; /* A Sub-term within the pOrWc */ WhereOrInfo *pOrInfo; /* Additional information associated with pTerm */ Bitmask chngToIN; /* Tables that might satisfy case 1 */ Bitmask indexable; /* Tables that are indexable, satisfying case 2 */ /* ** Break the OR clause into its separate subterms. The subterms are ** stored in a WhereClause structure containing within the WhereOrInfo ** object that is attached to the original OR clause term. */ assert( (pTerm->wtFlags & (TERM_DYNAMIC|TERM_ORINFO|TERM_ANDINFO))==0 ); assert( pExpr->op==TK_OR ); pTerm->u.pOrInfo = pOrInfo = sqlite3DbMallocZero(db, sizeof(*pOrInfo)); if( pOrInfo==0 ) return; pTerm->wtFlags |= TERM_ORINFO; pOrWc = &pOrInfo->wc; memset(pOrWc->aStatic, 0, sizeof(pOrWc->aStatic)); sqlite3WhereClauseInit(pOrWc, pWInfo); sqlite3WhereSplit(pOrWc, pExpr, TK_OR); sqlite3WhereExprAnalyze(pSrc, pOrWc); if( db->mallocFailed ) return; assert( pOrWc->nTerm>=2 ); /* ** Compute the set of tables that might satisfy cases 1 or 3. */ indexable = ~(Bitmask)0; chngToIN = ~(Bitmask)0; for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0 && indexable; i--, pOrTerm++){ if( (pOrTerm->eOperator & WO_SINGLE)==0 ){ WhereAndInfo *pAndInfo; assert( (pOrTerm->wtFlags & (TERM_ANDINFO|TERM_ORINFO))==0 ); chngToIN = 0; pAndInfo = sqlite3DbMallocRawNN(db, sizeof(*pAndInfo)); if( pAndInfo ){ WhereClause *pAndWC; WhereTerm *pAndTerm; int j; Bitmask b = 0; pOrTerm->u.pAndInfo = pAndInfo; pOrTerm->wtFlags |= TERM_ANDINFO; pOrTerm->eOperator = WO_AND; pOrTerm->leftCursor = -1; pAndWC = &pAndInfo->wc; memset(pAndWC->aStatic, 0, sizeof(pAndWC->aStatic)); sqlite3WhereClauseInit(pAndWC, pWC->pWInfo); sqlite3WhereSplit(pAndWC, pOrTerm->pExpr, TK_AND); sqlite3WhereExprAnalyze(pSrc, pAndWC); pAndWC->pOuter = pWC; if( !db->mallocFailed ){ for(j=0, pAndTerm=pAndWC->a; jnTerm; j++, pAndTerm++){ assert( pAndTerm->pExpr ); if( allowedOp(pAndTerm->pExpr->op) || pAndTerm->eOperator==WO_AUX ){ b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pAndTerm->leftCursor); } } } indexable &= b; } }else if( pOrTerm->wtFlags & TERM_COPIED ){ /* Skip this term for now. We revisit it when we process the ** corresponding TERM_VIRTUAL term */ }else{ Bitmask b; b = sqlite3WhereGetMask(&pWInfo->sMaskSet, pOrTerm->leftCursor); if( pOrTerm->wtFlags & TERM_VIRTUAL ){ WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent]; b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pOther->leftCursor); } indexable &= b; if( (pOrTerm->eOperator & WO_EQ)==0 ){ chngToIN = 0; }else{ chngToIN &= b; } } } /* ** Record the set of tables that satisfy case 3. The set might be ** empty. */ pOrInfo->indexable = indexable; pTerm->eOperator = WO_OR; pTerm->leftCursor = -1; if( indexable ){ pWC->hasOr = 1; } /* For a two-way OR, attempt to implementation case 2. */ if( indexable && pOrWc->nTerm==2 ){ int iOne = 0; WhereTerm *pOne; while( (pOne = whereNthSubterm(&pOrWc->a[0],iOne++))!=0 ){ int iTwo = 0; WhereTerm *pTwo; while( (pTwo = whereNthSubterm(&pOrWc->a[1],iTwo++))!=0 ){ whereCombineDisjuncts(pSrc, pWC, pOne, pTwo); } } } /* ** chngToIN holds a set of tables that *might* satisfy case 1. But ** we have to do some additional checking to see if case 1 really ** is satisfied. ** ** chngToIN will hold either 0, 1, or 2 bits. The 0-bit case means ** that there is no possibility of transforming the OR clause into an ** IN operator because one or more terms in the OR clause contain ** something other than == on a column in the single table. The 1-bit ** case means that every term of the OR clause is of the form ** "table.column=expr" for some single table. The one bit that is set ** will correspond to the common table. We still need to check to make ** sure the same column is used on all terms. The 2-bit case is when ** the all terms are of the form "table1.column=table2.column". It ** might be possible to form an IN operator with either table1.column ** or table2.column as the LHS if either is common to every term of ** the OR clause. ** ** Note that terms of the form "table.column1=table.column2" (the ** same table on both sizes of the ==) cannot be optimized. */ if( chngToIN ){ int okToChngToIN = 0; /* True if the conversion to IN is valid */ int iColumn = -1; /* Column index on lhs of IN operator */ int iCursor = -1; /* Table cursor common to all terms */ int j = 0; /* Loop counter */ /* Search for a table and column that appears on one side or the ** other of the == operator in every subterm. That table and column ** will be recorded in iCursor and iColumn. There might not be any ** such table and column. Set okToChngToIN if an appropriate table ** and column is found but leave okToChngToIN false if not found. */ for(j=0; j<2 && !okToChngToIN; j++){ Expr *pLeft = 0; pOrTerm = pOrWc->a; for(i=pOrWc->nTerm-1; i>=0; i--, pOrTerm++){ assert( pOrTerm->eOperator & WO_EQ ); pOrTerm->wtFlags &= ~TERM_OK; if( pOrTerm->leftCursor==iCursor ){ /* This is the 2-bit case and we are on the second iteration and ** current term is from the first iteration. So skip this term. */ assert( j==1 ); continue; } if( (chngToIN & sqlite3WhereGetMask(&pWInfo->sMaskSet, pOrTerm->leftCursor))==0 ){ /* This term must be of the form t1.a==t2.b where t2 is in the ** chngToIN set but t1 is not. This term will be either preceded ** or follwed by an inverted copy (t2.b==t1.a). Skip this term ** and use its inversion. */ testcase( pOrTerm->wtFlags & TERM_COPIED ); testcase( pOrTerm->wtFlags & TERM_VIRTUAL ); assert( pOrTerm->wtFlags & (TERM_COPIED|TERM_VIRTUAL) ); continue; } assert( (pOrTerm->eOperator & (WO_OR|WO_AND))==0 ); iColumn = pOrTerm->u.x.leftColumn; iCursor = pOrTerm->leftCursor; pLeft = pOrTerm->pExpr->pLeft; break; } if( i<0 ){ /* No candidate table+column was found. This can only occur ** on the second iteration */ assert( j==1 ); assert( IsPowerOfTwo(chngToIN) ); assert( chngToIN==sqlite3WhereGetMask(&pWInfo->sMaskSet, iCursor) ); break; } testcase( j==1 ); /* We have found a candidate table and column. Check to see if that ** table and column is common to every term in the OR clause */ okToChngToIN = 1; for(; i>=0 && okToChngToIN; i--, pOrTerm++){ assert( pOrTerm->eOperator & WO_EQ ); assert( (pOrTerm->eOperator & (WO_OR|WO_AND))==0 ); if( pOrTerm->leftCursor!=iCursor ){ pOrTerm->wtFlags &= ~TERM_OK; }else if( pOrTerm->u.x.leftColumn!=iColumn || (iColumn==XN_EXPR && sqlite3ExprCompare(pParse, pOrTerm->pExpr->pLeft, pLeft, -1) )){ okToChngToIN = 0; }else{ int affLeft, affRight; /* If the right-hand side is also a column, then the affinities ** of both right and left sides must be such that no type ** conversions are required on the right. (Ticket #2249) */ affRight = sqlite3ExprAffinity(pOrTerm->pExpr->pRight); affLeft = sqlite3ExprAffinity(pOrTerm->pExpr->pLeft); if( affRight!=0 && affRight!=affLeft ){ okToChngToIN = 0; }else{ pOrTerm->wtFlags |= TERM_OK; } } } } /* At this point, okToChngToIN is true if original pTerm satisfies ** case 1. In that case, construct a new virtual term that is ** pTerm converted into an IN operator. */ if( okToChngToIN ){ Expr *pDup; /* A transient duplicate expression */ ExprList *pList = 0; /* The RHS of the IN operator */ Expr *pLeft = 0; /* The LHS of the IN operator */ Expr *pNew; /* The complete IN operator */ for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0; i--, pOrTerm++){ if( (pOrTerm->wtFlags & TERM_OK)==0 ) continue; assert( pOrTerm->eOperator & WO_EQ ); assert( (pOrTerm->eOperator & (WO_OR|WO_AND))==0 ); assert( pOrTerm->leftCursor==iCursor ); assert( pOrTerm->u.x.leftColumn==iColumn ); pDup = sqlite3ExprDup(db, pOrTerm->pExpr->pRight, 0); pList = sqlite3ExprListAppend(pWInfo->pParse, pList, pDup); pLeft = pOrTerm->pExpr->pLeft; } assert( pLeft!=0 ); pDup = sqlite3ExprDup(db, pLeft, 0); pNew = sqlite3PExpr(pParse, TK_IN, pDup, 0); if( pNew ){ int idxNew; transferJoinMarkings(pNew, pExpr); assert( ExprUseXList(pNew) ); pNew->x.pList = pList; idxNew = whereClauseInsert(pWC, pNew, TERM_VIRTUAL|TERM_DYNAMIC); testcase( idxNew==0 ); exprAnalyze(pSrc, pWC, idxNew); /* pTerm = &pWC->a[idxTerm]; // would be needed if pTerm where reused */ markTermAsChild(pWC, idxNew, idxTerm); }else{ sqlite3ExprListDelete(db, pList); } } } } #endif /* !SQLITE_OMIT_OR_OPTIMIZATION && !SQLITE_OMIT_SUBQUERY */ /* ** We already know that pExpr is a binary operator where both operands are ** column references. This routine checks to see if pExpr is an equivalence ** relation: ** 1. The SQLITE_Transitive optimization must be enabled ** 2. Must be either an == or an IS operator ** 3. Not originating in the ON clause of an OUTER JOIN ** 4. The affinities of A and B must be compatible ** 5a. Both operands use the same collating sequence OR ** 5b. The overall collating sequence is BINARY ** If this routine returns TRUE, that means that the RHS can be substituted ** for the LHS anyplace else in the WHERE clause where the LHS column occurs. ** This is an optimization. No harm comes from returning 0. But if 1 is ** returned when it should not be, then incorrect answers might result. */ static int termIsEquivalence(Parse *pParse, Expr *pExpr){ char aff1, aff2; CollSeq *pColl; if( !OptimizationEnabled(pParse->db, SQLITE_Transitive) ) return 0; if( pExpr->op!=TK_EQ && pExpr->op!=TK_IS ) return 0; if( ExprHasProperty(pExpr, EP_FromJoin) ) return 0; aff1 = sqlite3ExprAffinity(pExpr->pLeft); aff2 = sqlite3ExprAffinity(pExpr->pRight); if( aff1!=aff2 && (!sqlite3IsNumericAffinity(aff1) || !sqlite3IsNumericAffinity(aff2)) ){ return 0; } pColl = sqlite3ExprCompareCollSeq(pParse, pExpr); if( sqlite3IsBinary(pColl) ) return 1; return sqlite3ExprCollSeqMatch(pParse, pExpr->pLeft, pExpr->pRight); } /* ** Recursively walk the expressions of a SELECT statement and generate ** a bitmask indicating which tables are used in that expression ** tree. */ static Bitmask exprSelectUsage(WhereMaskSet *pMaskSet, Select *pS){ Bitmask mask = 0; while( pS ){ SrcList *pSrc = pS->pSrc; mask |= sqlite3WhereExprListUsage(pMaskSet, pS->pEList); mask |= sqlite3WhereExprListUsage(pMaskSet, pS->pGroupBy); mask |= sqlite3WhereExprListUsage(pMaskSet, pS->pOrderBy); mask |= sqlite3WhereExprUsage(pMaskSet, pS->pWhere); mask |= sqlite3WhereExprUsage(pMaskSet, pS->pHaving); if( ALWAYS(pSrc!=0) ){ int i; for(i=0; inSrc; i++){ mask |= exprSelectUsage(pMaskSet, pSrc->a[i].pSelect); mask |= sqlite3WhereExprUsage(pMaskSet, pSrc->a[i].pOn); if( pSrc->a[i].fg.isTabFunc ){ mask |= sqlite3WhereExprListUsage(pMaskSet, pSrc->a[i].u1.pFuncArg); } } } pS = pS->pPrior; } return mask; } /* ** Expression pExpr is one operand of a comparison operator that might ** be useful for indexing. This routine checks to see if pExpr appears ** in any index. Return TRUE (1) if pExpr is an indexed term and return ** FALSE (0) if not. If TRUE is returned, also set aiCurCol[0] to the cursor ** number of the table that is indexed and aiCurCol[1] to the column number ** of the column that is indexed, or XN_EXPR (-2) if an expression is being ** indexed. ** ** If pExpr is a TK_COLUMN column reference, then this routine always returns ** true even if that particular column is not indexed, because the column ** might be added to an automatic index later. */ static SQLITE_NOINLINE int exprMightBeIndexed2( SrcList *pFrom, /* The FROM clause */ Bitmask mPrereq, /* Bitmask of FROM clause terms referenced by pExpr */ int *aiCurCol, /* Write the referenced table cursor and column here */ Expr *pExpr /* An operand of a comparison operator */ ){ Index *pIdx; int i; int iCur; for(i=0; mPrereq>1; i++, mPrereq>>=1){} iCur = pFrom->a[i].iCursor; for(pIdx=pFrom->a[i].pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( pIdx->aColExpr==0 ) continue; for(i=0; inKeyCol; i++){ if( pIdx->aiColumn[i]!=XN_EXPR ) continue; if( sqlite3ExprCompareSkip(pExpr, pIdx->aColExpr->a[i].pExpr, iCur)==0 ){ aiCurCol[0] = iCur; aiCurCol[1] = XN_EXPR; return 1; } } } return 0; } static int exprMightBeIndexed( SrcList *pFrom, /* The FROM clause */ Bitmask mPrereq, /* Bitmask of FROM clause terms referenced by pExpr */ int *aiCurCol, /* Write the referenced table cursor & column here */ Expr *pExpr, /* An operand of a comparison operator */ int op /* The specific comparison operator */ ){ /* If this expression is a vector to the left or right of a ** inequality constraint (>, <, >= or <=), perform the processing ** on the first element of the vector. */ assert( TK_GT+1==TK_LE && TK_GT+2==TK_LT && TK_GT+3==TK_GE ); assert( TK_ISop==TK_VECTOR && (op>=TK_GT && ALWAYS(op<=TK_GE)) ){ assert( ExprUseXList(pExpr) ); pExpr = pExpr->x.pList->a[0].pExpr; } if( pExpr->op==TK_COLUMN ){ aiCurCol[0] = pExpr->iTable; aiCurCol[1] = pExpr->iColumn; return 1; } if( mPrereq==0 ) return 0; /* No table references */ if( (mPrereq&(mPrereq-1))!=0 ) return 0; /* Refs more than one table */ return exprMightBeIndexed2(pFrom,mPrereq,aiCurCol,pExpr); } /* ** The input to this routine is an WhereTerm structure with only the ** "pExpr" field filled in. The job of this routine is to analyze the ** subexpression and populate all the other fields of the WhereTerm ** structure. ** ** If the expression is of the form " X" it gets commuted ** to the standard form of "X ". ** ** If the expression is of the form "X Y" where both X and Y are ** columns, then the original expression is unchanged and a new virtual ** term of the form "Y X" is added to the WHERE clause and ** analyzed separately. The original term is marked with TERM_COPIED ** and the new term is marked with TERM_DYNAMIC (because it's pExpr ** needs to be freed with the WhereClause) and TERM_VIRTUAL (because it ** is a commuted copy of a prior term.) The original term has nChild=1 ** and the copy has idxParent set to the index of the original term. */ static void exprAnalyze( SrcList *pSrc, /* the FROM clause */ WhereClause *pWC, /* the WHERE clause */ int idxTerm /* Index of the term to be analyzed */ ){ WhereInfo *pWInfo = pWC->pWInfo; /* WHERE clause processing context */ WhereTerm *pTerm; /* The term to be analyzed */ WhereMaskSet *pMaskSet; /* Set of table index masks */ Expr *pExpr; /* The expression to be analyzed */ Bitmask prereqLeft; /* Prerequesites of the pExpr->pLeft */ Bitmask prereqAll; /* Prerequesites of pExpr */ Bitmask extraRight = 0; /* Extra dependencies on LEFT JOIN */ Expr *pStr1 = 0; /* RHS of LIKE/GLOB operator */ int isComplete = 0; /* RHS of LIKE/GLOB ends with wildcard */ int noCase = 0; /* uppercase equivalent to lowercase */ int op; /* Top-level operator. pExpr->op */ Parse *pParse = pWInfo->pParse; /* Parsing context */ sqlite3 *db = pParse->db; /* Database connection */ unsigned char eOp2 = 0; /* op2 value for LIKE/REGEXP/GLOB */ int nLeft; /* Number of elements on left side vector */ if( db->mallocFailed ){ return; } assert( pWC->nTerm > idxTerm ); pTerm = &pWC->a[idxTerm]; pMaskSet = &pWInfo->sMaskSet; pExpr = pTerm->pExpr; assert( pExpr!=0 ); /* Because malloc() has not failed */ assert( pExpr->op!=TK_AS && pExpr->op!=TK_COLLATE ); pMaskSet->bVarSelect = 0; prereqLeft = sqlite3WhereExprUsage(pMaskSet, pExpr->pLeft); op = pExpr->op; if( op==TK_IN ){ assert( pExpr->pRight==0 ); if( sqlite3ExprCheckIN(pParse, pExpr) ) return; if( ExprUseXSelect(pExpr) ){ pTerm->prereqRight = exprSelectUsage(pMaskSet, pExpr->x.pSelect); }else{ pTerm->prereqRight = sqlite3WhereExprListUsage(pMaskSet, pExpr->x.pList); } prereqAll = prereqLeft | pTerm->prereqRight; }else{ pTerm->prereqRight = sqlite3WhereExprUsage(pMaskSet, pExpr->pRight); if( pExpr->pLeft==0 || ExprHasProperty(pExpr, EP_xIsSelect|EP_IfNullRow) || pExpr->x.pList!=0 ){ prereqAll = sqlite3WhereExprUsageNN(pMaskSet, pExpr); }else{ prereqAll = prereqLeft | pTerm->prereqRight; } } if( pMaskSet->bVarSelect ) pTerm->wtFlags |= TERM_VARSELECT; #ifdef SQLITE_DEBUG if( prereqAll!=sqlite3WhereExprUsageNN(pMaskSet, pExpr) ){ printf("\n*** Incorrect prereqAll computed for:\n"); sqlite3TreeViewExpr(0,pExpr,0); abort(); } #endif if( ExprHasProperty(pExpr, EP_FromJoin) ){ Bitmask x = sqlite3WhereGetMask(pMaskSet, pExpr->w.iRightJoinTable); prereqAll |= x; extraRight = x-1; /* ON clause terms may not be used with an index ** on left table of a LEFT JOIN. Ticket #3015 */ if( (prereqAll>>1)>=x ){ sqlite3ErrorMsg(pParse, "ON clause references tables to its right"); return; } } pTerm->prereqAll = prereqAll; pTerm->leftCursor = -1; pTerm->iParent = -1; pTerm->eOperator = 0; if( allowedOp(op) ){ int aiCurCol[2]; Expr *pLeft = sqlite3ExprSkipCollate(pExpr->pLeft); Expr *pRight = sqlite3ExprSkipCollate(pExpr->pRight); u16 opMask = (pTerm->prereqRight & prereqLeft)==0 ? WO_ALL : WO_EQUIV; if( pTerm->u.x.iField>0 ){ assert( op==TK_IN ); assert( pLeft->op==TK_VECTOR ); assert( ExprUseXList(pLeft) ); pLeft = pLeft->x.pList->a[pTerm->u.x.iField-1].pExpr; } if( exprMightBeIndexed(pSrc, prereqLeft, aiCurCol, pLeft, op) ){ pTerm->leftCursor = aiCurCol[0]; assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); pTerm->u.x.leftColumn = aiCurCol[1]; pTerm->eOperator = operatorMask(op) & opMask; } if( op==TK_IS ) pTerm->wtFlags |= TERM_IS; if( pRight && exprMightBeIndexed(pSrc, pTerm->prereqRight, aiCurCol, pRight, op) && !ExprHasProperty(pRight, EP_FixedCol) ){ WhereTerm *pNew; Expr *pDup; u16 eExtraOp = 0; /* Extra bits for pNew->eOperator */ assert( pTerm->u.x.iField==0 ); if( pTerm->leftCursor>=0 ){ int idxNew; pDup = sqlite3ExprDup(db, pExpr, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDup); return; } idxNew = whereClauseInsert(pWC, pDup, TERM_VIRTUAL|TERM_DYNAMIC); if( idxNew==0 ) return; pNew = &pWC->a[idxNew]; markTermAsChild(pWC, idxNew, idxTerm); if( op==TK_IS ) pNew->wtFlags |= TERM_IS; pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_COPIED; if( termIsEquivalence(pParse, pDup) ){ pTerm->eOperator |= WO_EQUIV; eExtraOp = WO_EQUIV; } }else{ pDup = pExpr; pNew = pTerm; } pNew->wtFlags |= exprCommute(pParse, pDup); pNew->leftCursor = aiCurCol[0]; assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); pNew->u.x.leftColumn = aiCurCol[1]; testcase( (prereqLeft | extraRight) != prereqLeft ); pNew->prereqRight = prereqLeft | extraRight; pNew->prereqAll = prereqAll; pNew->eOperator = (operatorMask(pDup->op) + eExtraOp) & opMask; }else if( op==TK_ISNULL && !ExprHasProperty(pExpr,EP_FromJoin) && 0==sqlite3ExprCanBeNull(pLeft) ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); pExpr->op = TK_TRUEFALSE; pExpr->u.zToken = "false"; ExprSetProperty(pExpr, EP_IsFalse); pTerm->prereqAll = 0; pTerm->eOperator = 0; } } #ifndef SQLITE_OMIT_BETWEEN_OPTIMIZATION /* If a term is the BETWEEN operator, create two new virtual terms ** that define the range that the BETWEEN implements. For example: ** ** a BETWEEN b AND c ** ** is converted into: ** ** (a BETWEEN b AND c) AND (a>=b) AND (a<=c) ** ** The two new terms are added onto the end of the WhereClause object. ** The new terms are "dynamic" and are children of the original BETWEEN ** term. That means that if the BETWEEN term is coded, the children are ** skipped. Or, if the children are satisfied by an index, the original ** BETWEEN term is skipped. */ else if( pExpr->op==TK_BETWEEN && pWC->op==TK_AND ){ ExprList *pList; int i; static const u8 ops[] = {TK_GE, TK_LE}; assert( ExprUseXList(pExpr) ); pList = pExpr->x.pList; assert( pList!=0 ); assert( pList->nExpr==2 ); for(i=0; i<2; i++){ Expr *pNewExpr; int idxNew; pNewExpr = sqlite3PExpr(pParse, ops[i], sqlite3ExprDup(db, pExpr->pLeft, 0), sqlite3ExprDup(db, pList->a[i].pExpr, 0)); transferJoinMarkings(pNewExpr, pExpr); idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); testcase( idxNew==0 ); exprAnalyze(pSrc, pWC, idxNew); pTerm = &pWC->a[idxTerm]; markTermAsChild(pWC, idxNew, idxTerm); } } #endif /* SQLITE_OMIT_BETWEEN_OPTIMIZATION */ #if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY) /* Analyze a term that is composed of two or more subterms connected by ** an OR operator. */ else if( pExpr->op==TK_OR ){ assert( pWC->op==TK_AND ); exprAnalyzeOrTerm(pSrc, pWC, idxTerm); pTerm = &pWC->a[idxTerm]; } #endif /* SQLITE_OMIT_OR_OPTIMIZATION */ /* The form "x IS NOT NULL" can sometimes be evaluated more efficiently ** as "x>NULL" if x is not an INTEGER PRIMARY KEY. So construct a ** virtual term of that form. ** ** The virtual term must be tagged with TERM_VNULL. */ else if( pExpr->op==TK_NOTNULL ){ if( pExpr->pLeft->op==TK_COLUMN && pExpr->pLeft->iColumn>=0 && !ExprHasProperty(pExpr, EP_FromJoin) ){ Expr *pNewExpr; Expr *pLeft = pExpr->pLeft; int idxNew; WhereTerm *pNewTerm; pNewExpr = sqlite3PExpr(pParse, TK_GT, sqlite3ExprDup(db, pLeft, 0), sqlite3ExprAlloc(db, TK_NULL, 0, 0)); idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC|TERM_VNULL); if( idxNew ){ pNewTerm = &pWC->a[idxNew]; pNewTerm->prereqRight = 0; pNewTerm->leftCursor = pLeft->iTable; pNewTerm->u.x.leftColumn = pLeft->iColumn; pNewTerm->eOperator = WO_GT; markTermAsChild(pWC, idxNew, idxTerm); pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_COPIED; pNewTerm->prereqAll = pTerm->prereqAll; } } } #ifndef SQLITE_OMIT_LIKE_OPTIMIZATION /* Add constraints to reduce the search space on a LIKE or GLOB ** operator. ** ** A like pattern of the form "x LIKE 'aBc%'" is changed into constraints ** ** x>='ABC' AND x<'abd' AND x LIKE 'aBc%' ** ** The last character of the prefix "abc" is incremented to form the ** termination condition "abd". If case is not significant (the default ** for LIKE) then the lower-bound is made all uppercase and the upper- ** bound is made all lowercase so that the bounds also work when comparing ** BLOBs. */ else if( pExpr->op==TK_FUNCTION && pWC->op==TK_AND && isLikeOrGlob(pParse, pExpr, &pStr1, &isComplete, &noCase) ){ Expr *pLeft; /* LHS of LIKE/GLOB operator */ Expr *pStr2; /* Copy of pStr1 - RHS of LIKE/GLOB operator */ Expr *pNewExpr1; Expr *pNewExpr2; int idxNew1; int idxNew2; const char *zCollSeqName; /* Name of collating sequence */ const u16 wtFlags = TERM_LIKEOPT | TERM_VIRTUAL | TERM_DYNAMIC; assert( ExprUseXList(pExpr) ); pLeft = pExpr->x.pList->a[1].pExpr; pStr2 = sqlite3ExprDup(db, pStr1, 0); assert( pStr1==0 || !ExprHasProperty(pStr1, EP_IntValue) ); assert( pStr2==0 || !ExprHasProperty(pStr2, EP_IntValue) ); /* Convert the lower bound to upper-case and the upper bound to ** lower-case (upper-case is less than lower-case in ASCII) so that ** the range constraints also work for BLOBs */ if( noCase && !pParse->db->mallocFailed ){ int i; char c; pTerm->wtFlags |= TERM_LIKE; for(i=0; (c = pStr1->u.zToken[i])!=0; i++){ pStr1->u.zToken[i] = sqlite3Toupper(c); pStr2->u.zToken[i] = sqlite3Tolower(c); } } if( !db->mallocFailed ){ u8 c, *pC; /* Last character before the first wildcard */ pC = (u8*)&pStr2->u.zToken[sqlite3Strlen30(pStr2->u.zToken)-1]; c = *pC; if( noCase ){ /* The point is to increment the last character before the first ** wildcard. But if we increment '@', that will push it into the ** alphabetic range where case conversions will mess up the ** inequality. To avoid this, make sure to also run the full ** LIKE on all candidate expressions by clearing the isComplete flag */ if( c=='A'-1 ) isComplete = 0; c = sqlite3UpperToLower[c]; } *pC = c + 1; } zCollSeqName = noCase ? "NOCASE" : sqlite3StrBINARY; pNewExpr1 = sqlite3ExprDup(db, pLeft, 0); pNewExpr1 = sqlite3PExpr(pParse, TK_GE, sqlite3ExprAddCollateString(pParse,pNewExpr1,zCollSeqName), pStr1); transferJoinMarkings(pNewExpr1, pExpr); idxNew1 = whereClauseInsert(pWC, pNewExpr1, wtFlags); testcase( idxNew1==0 ); exprAnalyze(pSrc, pWC, idxNew1); pNewExpr2 = sqlite3ExprDup(db, pLeft, 0); pNewExpr2 = sqlite3PExpr(pParse, TK_LT, sqlite3ExprAddCollateString(pParse,pNewExpr2,zCollSeqName), pStr2); transferJoinMarkings(pNewExpr2, pExpr); idxNew2 = whereClauseInsert(pWC, pNewExpr2, wtFlags); testcase( idxNew2==0 ); exprAnalyze(pSrc, pWC, idxNew2); pTerm = &pWC->a[idxTerm]; if( isComplete ){ markTermAsChild(pWC, idxNew1, idxTerm); markTermAsChild(pWC, idxNew2, idxTerm); } } #endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */ /* If there is a vector == or IS term - e.g. "(a, b) == (?, ?)" - create ** new terms for each component comparison - "a = ?" and "b = ?". The ** new terms completely replace the original vector comparison, which is ** no longer used. ** ** This is only required if at least one side of the comparison operation ** is not a sub-select. ** ** tag-20220128a */ if( (pExpr->op==TK_EQ || pExpr->op==TK_IS) && (nLeft = sqlite3ExprVectorSize(pExpr->pLeft))>1 && sqlite3ExprVectorSize(pExpr->pRight)==nLeft && ( (pExpr->pLeft->flags & EP_xIsSelect)==0 || (pExpr->pRight->flags & EP_xIsSelect)==0) && pWC->op==TK_AND ){ int i; for(i=0; ipLeft, i, nLeft); Expr *pRight = sqlite3ExprForVectorField(pParse, pExpr->pRight, i, nLeft); pNew = sqlite3PExpr(pParse, pExpr->op, pLeft, pRight); transferJoinMarkings(pNew, pExpr); idxNew = whereClauseInsert(pWC, pNew, TERM_DYNAMIC|TERM_SLICE); exprAnalyze(pSrc, pWC, idxNew); } pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_CODED|TERM_VIRTUAL; /* Disable the original */ pTerm->eOperator = 0; } /* If there is a vector IN term - e.g. "(a, b) IN (SELECT ...)" - create ** a virtual term for each vector component. The expression object ** used by each such virtual term is pExpr (the full vector IN(...) ** expression). The WhereTerm.u.x.iField variable identifies the index within ** the vector on the LHS that the virtual term represents. ** ** This only works if the RHS is a simple SELECT (not a compound) that does ** not use window functions. */ else if( pExpr->op==TK_IN && pTerm->u.x.iField==0 && pExpr->pLeft->op==TK_VECTOR && ALWAYS( ExprUseXSelect(pExpr) ) && pExpr->x.pSelect->pPrior==0 #ifndef SQLITE_OMIT_WINDOWFUNC && pExpr->x.pSelect->pWin==0 #endif && pWC->op==TK_AND ){ int i; for(i=0; ipLeft); i++){ int idxNew; idxNew = whereClauseInsert(pWC, pExpr, TERM_VIRTUAL|TERM_SLICE); pWC->a[idxNew].u.x.iField = i+1; exprAnalyze(pSrc, pWC, idxNew); markTermAsChild(pWC, idxNew, idxTerm); } } #ifndef SQLITE_OMIT_VIRTUALTABLE /* Add a WO_AUX auxiliary term to the constraint set if the ** current expression is of the form "column OP expr" where OP ** is an operator that gets passed into virtual tables but which is ** not normally optimized for ordinary tables. In other words, OP ** is one of MATCH, LIKE, GLOB, REGEXP, !=, IS, IS NOT, or NOT NULL. ** This information is used by the xBestIndex methods of ** virtual tables. The native query optimizer does not attempt ** to do anything with MATCH functions. */ else if( pWC->op==TK_AND ){ Expr *pRight = 0, *pLeft = 0; int res = isAuxiliaryVtabOperator(db, pExpr, &eOp2, &pLeft, &pRight); while( res-- > 0 ){ int idxNew; WhereTerm *pNewTerm; Bitmask prereqColumn, prereqExpr; prereqExpr = sqlite3WhereExprUsage(pMaskSet, pRight); prereqColumn = sqlite3WhereExprUsage(pMaskSet, pLeft); if( (prereqExpr & prereqColumn)==0 ){ Expr *pNewExpr; pNewExpr = sqlite3PExpr(pParse, TK_MATCH, 0, sqlite3ExprDup(db, pRight, 0)); if( ExprHasProperty(pExpr, EP_FromJoin) && pNewExpr ){ ExprSetProperty(pNewExpr, EP_FromJoin); pNewExpr->w.iRightJoinTable = pExpr->w.iRightJoinTable; } idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); testcase( idxNew==0 ); pNewTerm = &pWC->a[idxNew]; pNewTerm->prereqRight = prereqExpr; pNewTerm->leftCursor = pLeft->iTable; pNewTerm->u.x.leftColumn = pLeft->iColumn; pNewTerm->eOperator = WO_AUX; pNewTerm->eMatchOp = eOp2; markTermAsChild(pWC, idxNew, idxTerm); pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_COPIED; pNewTerm->prereqAll = pTerm->prereqAll; } SWAP(Expr*, pLeft, pRight); } } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* Prevent ON clause terms of a LEFT JOIN from being used to drive ** an index for tables to the left of the join. */ testcase( pTerm!=&pWC->a[idxTerm] ); pTerm = &pWC->a[idxTerm]; pTerm->prereqRight |= extraRight; } /*************************************************************************** ** Routines with file scope above. Interface to the rest of the where.c ** subsystem follows. ***************************************************************************/ /* ** This routine identifies subexpressions in the WHERE clause where ** each subexpression is separated by the AND operator or some other ** operator specified in the op parameter. The WhereClause structure ** is filled with pointers to subexpressions. For example: ** ** WHERE a=='hello' AND coalesce(b,11)<10 AND (c+12!=d OR c==22) ** \________/ \_______________/ \________________/ ** slot[0] slot[1] slot[2] ** ** The original WHERE clause in pExpr is unaltered. All this routine ** does is make slot[] entries point to substructure within pExpr. ** ** In the previous sentence and in the diagram, "slot[]" refers to ** the WhereClause.a[] array. The slot[] array grows as needed to contain ** all terms of the WHERE clause. */ SQLITE_PRIVATE void sqlite3WhereSplit(WhereClause *pWC, Expr *pExpr, u8 op){ Expr *pE2 = sqlite3ExprSkipCollateAndLikely(pExpr); pWC->op = op; assert( pE2!=0 || pExpr==0 ); if( pE2==0 ) return; if( pE2->op!=op ){ whereClauseInsert(pWC, pExpr, 0); }else{ sqlite3WhereSplit(pWC, pE2->pLeft, op); sqlite3WhereSplit(pWC, pE2->pRight, op); } } /* ** Add either a LIMIT (if eMatchOp==SQLITE_INDEX_CONSTRAINT_LIMIT) or ** OFFSET (if eMatchOp==SQLITE_INDEX_CONSTRAINT_OFFSET) term to the ** where-clause passed as the first argument. The value for the term ** is found in register iReg. ** ** In the common case where the value is a simple integer ** (example: "LIMIT 5 OFFSET 10") then the expression codes as a ** TK_INTEGER so that it will be available to sqlite3_vtab_rhs_value(). ** If not, then it codes as a TK_REGISTER expression. */ static void whereAddLimitExpr( WhereClause *pWC, /* Add the constraint to this WHERE clause */ int iReg, /* Register that will hold value of the limit/offset */ Expr *pExpr, /* Expression that defines the limit/offset */ int iCsr, /* Cursor to which the constraint applies */ int eMatchOp /* SQLITE_INDEX_CONSTRAINT_LIMIT or _OFFSET */ ){ Parse *pParse = pWC->pWInfo->pParse; sqlite3 *db = pParse->db; Expr *pNew; int iVal = 0; if( sqlite3ExprIsInteger(pExpr, &iVal) && iVal>=0 ){ Expr *pVal = sqlite3Expr(db, TK_INTEGER, 0); if( pVal==0 ) return; ExprSetProperty(pVal, EP_IntValue); pVal->u.iValue = iVal; pNew = sqlite3PExpr(pParse, TK_MATCH, 0, pVal); }else{ Expr *pVal = sqlite3Expr(db, TK_REGISTER, 0); if( pVal==0 ) return; pVal->iTable = iReg; pNew = sqlite3PExpr(pParse, TK_MATCH, 0, pVal); } if( pNew ){ WhereTerm *pTerm; int idx; idx = whereClauseInsert(pWC, pNew, TERM_DYNAMIC|TERM_VIRTUAL); pTerm = &pWC->a[idx]; pTerm->leftCursor = iCsr; pTerm->eOperator = WO_AUX; pTerm->eMatchOp = eMatchOp; } } /* ** Possibly add terms corresponding to the LIMIT and OFFSET clauses of the ** SELECT statement passed as the second argument. These terms are only ** added if: ** ** 1. The SELECT statement has a LIMIT clause, and ** 2. The SELECT statement is not an aggregate or DISTINCT query, and ** 3. The SELECT statement has exactly one object in its from clause, and ** that object is a virtual table, and ** 4. There are no terms in the WHERE clause that will not be passed ** to the virtual table xBestIndex method. ** 5. The ORDER BY clause, if any, will be made available to the xBestIndex ** method. ** ** LIMIT and OFFSET terms are ignored by most of the planner code. They ** exist only so that they may be passed to the xBestIndex method of the ** single virtual table in the FROM clause of the SELECT. */ SQLITE_PRIVATE void sqlite3WhereAddLimit(WhereClause *pWC, Select *p){ assert( p==0 || (p->pGroupBy==0 && (p->selFlags & SF_Aggregate)==0) ); if( (p && p->pLimit) /* 1 */ && (p->selFlags & (SF_Distinct|SF_Aggregate))==0 /* 2 */ && (p->pSrc->nSrc==1 && IsVirtual(p->pSrc->a[0].pTab)) /* 3 */ ){ ExprList *pOrderBy = p->pOrderBy; int iCsr = p->pSrc->a[0].iCursor; int ii; /* Check condition (4). Return early if it is not met. */ for(ii=0; iinTerm; ii++){ if( pWC->a[ii].wtFlags & TERM_CODED ){ /* This term is a vector operation that has been decomposed into ** other, subsequent terms. It can be ignored. See tag-20220128a */ assert( pWC->a[ii].wtFlags & TERM_VIRTUAL ); assert( pWC->a[ii].eOperator==0 ); continue; } if( pWC->a[ii].leftCursor!=iCsr ) return; } /* Check condition (5). Return early if it is not met. */ if( pOrderBy ){ for(ii=0; iinExpr; ii++){ Expr *pExpr = pOrderBy->a[ii].pExpr; if( pExpr->op!=TK_COLUMN ) return; if( pExpr->iTable!=iCsr ) return; if( pOrderBy->a[ii].sortFlags & KEYINFO_ORDER_BIGNULL ) return; } } /* All conditions are met. Add the terms to the where-clause object. */ assert( p->pLimit->op==TK_LIMIT ); whereAddLimitExpr(pWC, p->iLimit, p->pLimit->pLeft, iCsr, SQLITE_INDEX_CONSTRAINT_LIMIT); if( p->iOffset>0 ){ whereAddLimitExpr(pWC, p->iOffset, p->pLimit->pRight, iCsr, SQLITE_INDEX_CONSTRAINT_OFFSET); } } } /* ** Initialize a preallocated WhereClause structure. */ SQLITE_PRIVATE void sqlite3WhereClauseInit( WhereClause *pWC, /* The WhereClause to be initialized */ WhereInfo *pWInfo /* The WHERE processing context */ ){ pWC->pWInfo = pWInfo; pWC->hasOr = 0; pWC->pOuter = 0; pWC->nTerm = 0; pWC->nBase = 0; pWC->nSlot = ArraySize(pWC->aStatic); pWC->a = pWC->aStatic; } /* ** Deallocate a WhereClause structure. The WhereClause structure ** itself is not freed. This routine is the inverse of ** sqlite3WhereClauseInit(). */ SQLITE_PRIVATE void sqlite3WhereClauseClear(WhereClause *pWC){ sqlite3 *db = pWC->pWInfo->pParse->db; assert( pWC->nTerm>=pWC->nBase ); if( pWC->nTerm>0 ){ WhereTerm *a = pWC->a; WhereTerm *aLast = &pWC->a[pWC->nTerm-1]; #ifdef SQLITE_DEBUG int i; /* Verify that every term past pWC->nBase is virtual */ for(i=pWC->nBase; inTerm; i++){ assert( (pWC->a[i].wtFlags & TERM_VIRTUAL)!=0 ); } #endif while(1){ assert( a->eMatchOp==0 || a->eOperator==WO_AUX ); if( a->wtFlags & TERM_DYNAMIC ){ sqlite3ExprDelete(db, a->pExpr); } if( a->wtFlags & (TERM_ORINFO|TERM_ANDINFO) ){ if( a->wtFlags & TERM_ORINFO ){ assert( (a->wtFlags & TERM_ANDINFO)==0 ); whereOrInfoDelete(db, a->u.pOrInfo); }else{ assert( (a->wtFlags & TERM_ANDINFO)!=0 ); whereAndInfoDelete(db, a->u.pAndInfo); } } if( a==aLast ) break; a++; } } if( pWC->a!=pWC->aStatic ){ sqlite3DbFree(db, pWC->a); } } /* ** These routines walk (recursively) an expression tree and generate ** a bitmask indicating which tables are used in that expression ** tree. ** ** sqlite3WhereExprUsage(MaskSet, Expr) -> ** ** Return a Bitmask of all tables referenced by Expr. Expr can be ** be NULL, in which case 0 is returned. ** ** sqlite3WhereExprUsageNN(MaskSet, Expr) -> ** ** Same as sqlite3WhereExprUsage() except that Expr must not be ** NULL. The "NN" suffix on the name stands for "Not Null". ** ** sqlite3WhereExprListUsage(MaskSet, ExprList) -> ** ** Return a Bitmask of all tables referenced by every expression ** in the expression list ExprList. ExprList can be NULL, in which ** case 0 is returned. ** ** sqlite3WhereExprUsageFull(MaskSet, ExprList) -> ** ** Internal use only. Called only by sqlite3WhereExprUsageNN() for ** complex expressions that require pushing register values onto ** the stack. Many calls to sqlite3WhereExprUsageNN() do not need ** the more complex analysis done by this routine. Hence, the ** computations done by this routine are broken out into a separate ** "no-inline" function to avoid the stack push overhead in the ** common case where it is not needed. */ static SQLITE_NOINLINE Bitmask sqlite3WhereExprUsageFull( WhereMaskSet *pMaskSet, Expr *p ){ Bitmask mask; mask = (p->op==TK_IF_NULL_ROW) ? sqlite3WhereGetMask(pMaskSet, p->iTable) : 0; if( p->pLeft ) mask |= sqlite3WhereExprUsageNN(pMaskSet, p->pLeft); if( p->pRight ){ mask |= sqlite3WhereExprUsageNN(pMaskSet, p->pRight); assert( p->x.pList==0 ); }else if( ExprUseXSelect(p) ){ if( ExprHasProperty(p, EP_VarSelect) ) pMaskSet->bVarSelect = 1; mask |= exprSelectUsage(pMaskSet, p->x.pSelect); }else if( p->x.pList ){ mask |= sqlite3WhereExprListUsage(pMaskSet, p->x.pList); } #ifndef SQLITE_OMIT_WINDOWFUNC if( (p->op==TK_FUNCTION || p->op==TK_AGG_FUNCTION) && ExprUseYWin(p) ){ assert( p->y.pWin!=0 ); mask |= sqlite3WhereExprListUsage(pMaskSet, p->y.pWin->pPartition); mask |= sqlite3WhereExprListUsage(pMaskSet, p->y.pWin->pOrderBy); mask |= sqlite3WhereExprUsage(pMaskSet, p->y.pWin->pFilter); } #endif return mask; } SQLITE_PRIVATE Bitmask sqlite3WhereExprUsageNN(WhereMaskSet *pMaskSet, Expr *p){ if( p->op==TK_COLUMN && !ExprHasProperty(p, EP_FixedCol) ){ return sqlite3WhereGetMask(pMaskSet, p->iTable); }else if( ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ assert( p->op!=TK_IF_NULL_ROW ); return 0; } return sqlite3WhereExprUsageFull(pMaskSet, p); } SQLITE_PRIVATE Bitmask sqlite3WhereExprUsage(WhereMaskSet *pMaskSet, Expr *p){ return p ? sqlite3WhereExprUsageNN(pMaskSet,p) : 0; } SQLITE_PRIVATE Bitmask sqlite3WhereExprListUsage(WhereMaskSet *pMaskSet, ExprList *pList){ int i; Bitmask mask = 0; if( pList ){ for(i=0; inExpr; i++){ mask |= sqlite3WhereExprUsage(pMaskSet, pList->a[i].pExpr); } } return mask; } /* ** Call exprAnalyze on all terms in a WHERE clause. ** ** Note that exprAnalyze() might add new virtual terms onto the ** end of the WHERE clause. We do not want to analyze these new ** virtual terms, so start analyzing at the end and work forward ** so that the added virtual terms are never processed. */ SQLITE_PRIVATE void sqlite3WhereExprAnalyze( SrcList *pTabList, /* the FROM clause */ WhereClause *pWC /* the WHERE clause to be analyzed */ ){ int i; for(i=pWC->nTerm-1; i>=0; i--){ exprAnalyze(pTabList, pWC, i); } } /* ** For table-valued-functions, transform the function arguments into ** new WHERE clause terms. ** ** Each function argument translates into an equality constraint against ** a HIDDEN column in the table. */ SQLITE_PRIVATE void sqlite3WhereTabFuncArgs( Parse *pParse, /* Parsing context */ SrcItem *pItem, /* The FROM clause term to process */ WhereClause *pWC /* Xfer function arguments to here */ ){ Table *pTab; int j, k; ExprList *pArgs; Expr *pColRef; Expr *pTerm; if( pItem->fg.isTabFunc==0 ) return; pTab = pItem->pTab; assert( pTab!=0 ); pArgs = pItem->u1.pFuncArg; if( pArgs==0 ) return; for(j=k=0; jnExpr; j++){ Expr *pRhs; while( knCol && (pTab->aCol[k].colFlags & COLFLAG_HIDDEN)==0 ){k++;} if( k>=pTab->nCol ){ sqlite3ErrorMsg(pParse, "too many arguments on %s() - max %d", pTab->zName, j); return; } pColRef = sqlite3ExprAlloc(pParse->db, TK_COLUMN, 0, 0); if( pColRef==0 ) return; pColRef->iTable = pItem->iCursor; pColRef->iColumn = k++; assert( ExprUseYTab(pColRef) ); pColRef->y.pTab = pTab; pItem->colUsed |= sqlite3ExprColUsed(pColRef); pRhs = sqlite3PExpr(pParse, TK_UPLUS, sqlite3ExprDup(pParse->db, pArgs->a[j].pExpr, 0), 0); pTerm = sqlite3PExpr(pParse, TK_EQ, pColRef, pRhs); if( pItem->fg.jointype & JT_LEFT ){ sqlite3SetJoinExpr(pTerm, pItem->iCursor); } whereClauseInsert(pWC, pTerm, TERM_DYNAMIC); } } /************** End of whereexpr.c *******************************************/ /************** Begin file where.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. This module is responsible for ** generating the code that loops through a table looking for applicable ** rows. Indices are selected and used to speed the search when doing ** so is applicable. Because this module is responsible for selecting ** indices, you might also think of this module as the "query optimizer". */ /* #include "sqliteInt.h" */ /* #include "whereInt.h" */ /* ** Extra information appended to the end of sqlite3_index_info but not ** visible to the xBestIndex function, at least not directly. The ** sqlite3_vtab_collation() interface knows how to reach it, however. ** ** This object is not an API and can be changed from one release to the ** next. As long as allocateIndexInfo() and sqlite3_vtab_collation() ** agree on the structure, all will be well. */ typedef struct HiddenIndexInfo HiddenIndexInfo; struct HiddenIndexInfo { WhereClause *pWC; /* The Where clause being analyzed */ Parse *pParse; /* The parsing context */ int eDistinct; /* Value to return from sqlite3_vtab_distinct() */ u32 mIn; /* Mask of terms that are IN (...) */ u32 mHandleIn; /* Terms that vtab will handle as IN (...) */ sqlite3_value *aRhs[1]; /* RHS values for constraints. MUST BE LAST ** because extra space is allocated to hold up ** to nTerm such values */ }; /* Forward declaration of methods */ static int whereLoopResize(sqlite3*, WhereLoop*, int); /* ** Return the estimated number of output rows from a WHERE clause */ SQLITE_PRIVATE LogEst sqlite3WhereOutputRowCount(WhereInfo *pWInfo){ return pWInfo->nRowOut; } /* ** Return one of the WHERE_DISTINCT_xxxxx values to indicate how this ** WHERE clause returns outputs for DISTINCT processing. */ SQLITE_PRIVATE int sqlite3WhereIsDistinct(WhereInfo *pWInfo){ return pWInfo->eDistinct; } /* ** Return the number of ORDER BY terms that are satisfied by the ** WHERE clause. A return of 0 means that the output must be ** completely sorted. A return equal to the number of ORDER BY ** terms means that no sorting is needed at all. A return that ** is positive but less than the number of ORDER BY terms means that ** block sorting is required. */ SQLITE_PRIVATE int sqlite3WhereIsOrdered(WhereInfo *pWInfo){ return pWInfo->nOBSat; } /* ** In the ORDER BY LIMIT optimization, if the inner-most loop is known ** to emit rows in increasing order, and if the last row emitted by the ** inner-most loop did not fit within the sorter, then we can skip all ** subsequent rows for the current iteration of the inner loop (because they ** will not fit in the sorter either) and continue with the second inner ** loop - the loop immediately outside the inner-most. ** ** When a row does not fit in the sorter (because the sorter already ** holds LIMIT+OFFSET rows that are smaller), then a jump is made to the ** label returned by this function. ** ** If the ORDER BY LIMIT optimization applies, the jump destination should ** be the continuation for the second-inner-most loop. If the ORDER BY ** LIMIT optimization does not apply, then the jump destination should ** be the continuation for the inner-most loop. ** ** It is always safe for this routine to return the continuation of the ** inner-most loop, in the sense that a correct answer will result. ** Returning the continuation the second inner loop is an optimization ** that might make the code run a little faster, but should not change ** the final answer. */ SQLITE_PRIVATE int sqlite3WhereOrderByLimitOptLabel(WhereInfo *pWInfo){ WhereLevel *pInner; if( !pWInfo->bOrderedInnerLoop ){ /* The ORDER BY LIMIT optimization does not apply. Jump to the ** continuation of the inner-most loop. */ return pWInfo->iContinue; } pInner = &pWInfo->a[pWInfo->nLevel-1]; assert( pInner->addrNxt!=0 ); return pInner->addrNxt; } /* ** While generating code for the min/max optimization, after handling ** the aggregate-step call to min() or max(), check to see if any ** additional looping is required. If the output order is such that ** we are certain that the correct answer has already been found, then ** code an OP_Goto to by pass subsequent processing. ** ** Any extra OP_Goto that is coded here is an optimization. The ** correct answer should be obtained regardless. This OP_Goto just ** makes the answer appear faster. */ SQLITE_PRIVATE void sqlite3WhereMinMaxOptEarlyOut(Vdbe *v, WhereInfo *pWInfo){ WhereLevel *pInner; int i; if( !pWInfo->bOrderedInnerLoop ) return; if( pWInfo->nOBSat==0 ) return; for(i=pWInfo->nLevel-1; i>=0; i--){ pInner = &pWInfo->a[i]; if( (pInner->pWLoop->wsFlags & WHERE_COLUMN_IN)!=0 ){ sqlite3VdbeGoto(v, pInner->addrNxt); return; } } sqlite3VdbeGoto(v, pWInfo->iBreak); } /* ** Return the VDBE address or label to jump to in order to continue ** immediately with the next row of a WHERE clause. */ SQLITE_PRIVATE int sqlite3WhereContinueLabel(WhereInfo *pWInfo){ assert( pWInfo->iContinue!=0 ); return pWInfo->iContinue; } /* ** Return the VDBE address or label to jump to in order to break ** out of a WHERE loop. */ SQLITE_PRIVATE int sqlite3WhereBreakLabel(WhereInfo *pWInfo){ return pWInfo->iBreak; } /* ** Return ONEPASS_OFF (0) if an UPDATE or DELETE statement is unable to ** operate directly on the rowids returned by a WHERE clause. Return ** ONEPASS_SINGLE (1) if the statement can operation directly because only ** a single row is to be changed. Return ONEPASS_MULTI (2) if the one-pass ** optimization can be used on multiple ** ** If the ONEPASS optimization is used (if this routine returns true) ** then also write the indices of open cursors used by ONEPASS ** into aiCur[0] and aiCur[1]. iaCur[0] gets the cursor of the data ** table and iaCur[1] gets the cursor used by an auxiliary index. ** Either value may be -1, indicating that cursor is not used. ** Any cursors returned will have been opened for writing. ** ** aiCur[0] and aiCur[1] both get -1 if the where-clause logic is ** unable to use the ONEPASS optimization. */ SQLITE_PRIVATE int sqlite3WhereOkOnePass(WhereInfo *pWInfo, int *aiCur){ memcpy(aiCur, pWInfo->aiCurOnePass, sizeof(int)*2); #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace && pWInfo->eOnePass!=ONEPASS_OFF ){ sqlite3DebugPrintf("%s cursors: %d %d\n", pWInfo->eOnePass==ONEPASS_SINGLE ? "ONEPASS_SINGLE" : "ONEPASS_MULTI", aiCur[0], aiCur[1]); } #endif return pWInfo->eOnePass; } /* ** Return TRUE if the WHERE loop uses the OP_DeferredSeek opcode to move ** the data cursor to the row selected by the index cursor. */ SQLITE_PRIVATE int sqlite3WhereUsesDeferredSeek(WhereInfo *pWInfo){ return pWInfo->bDeferredSeek; } /* ** Move the content of pSrc into pDest */ static void whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc){ pDest->n = pSrc->n; memcpy(pDest->a, pSrc->a, pDest->n*sizeof(pDest->a[0])); } /* ** Try to insert a new prerequisite/cost entry into the WhereOrSet pSet. ** ** The new entry might overwrite an existing entry, or it might be ** appended, or it might be discarded. Do whatever is the right thing ** so that pSet keeps the N_OR_COST best entries seen so far. */ static int whereOrInsert( WhereOrSet *pSet, /* The WhereOrSet to be updated */ Bitmask prereq, /* Prerequisites of the new entry */ LogEst rRun, /* Run-cost of the new entry */ LogEst nOut /* Number of outputs for the new entry */ ){ u16 i; WhereOrCost *p; for(i=pSet->n, p=pSet->a; i>0; i--, p++){ if( rRun<=p->rRun && (prereq & p->prereq)==prereq ){ goto whereOrInsert_done; } if( p->rRun<=rRun && (p->prereq & prereq)==p->prereq ){ return 0; } } if( pSet->na[pSet->n++]; p->nOut = nOut; }else{ p = pSet->a; for(i=1; in; i++){ if( p->rRun>pSet->a[i].rRun ) p = pSet->a + i; } if( p->rRun<=rRun ) return 0; } whereOrInsert_done: p->prereq = prereq; p->rRun = rRun; if( p->nOut>nOut ) p->nOut = nOut; return 1; } /* ** Return the bitmask for the given cursor number. Return 0 if ** iCursor is not in the set. */ SQLITE_PRIVATE Bitmask sqlite3WhereGetMask(WhereMaskSet *pMaskSet, int iCursor){ int i; assert( pMaskSet->n<=(int)sizeof(Bitmask)*8 ); assert( pMaskSet->n>0 || pMaskSet->ix[0]<0 ); assert( iCursor>=-1 ); if( pMaskSet->ix[0]==iCursor ){ return 1; } for(i=1; in; i++){ if( pMaskSet->ix[i]==iCursor ){ return MASKBIT(i); } } return 0; } /* ** Create a new mask for cursor iCursor. ** ** There is one cursor per table in the FROM clause. The number of ** tables in the FROM clause is limited by a test early in the ** sqlite3WhereBegin() routine. So we know that the pMaskSet->ix[] ** array will never overflow. */ static void createMask(WhereMaskSet *pMaskSet, int iCursor){ assert( pMaskSet->n < ArraySize(pMaskSet->ix) ); pMaskSet->ix[pMaskSet->n++] = iCursor; } /* ** If the right-hand branch of the expression is a TK_COLUMN, then return ** a pointer to the right-hand branch. Otherwise, return NULL. */ static Expr *whereRightSubexprIsColumn(Expr *p){ p = sqlite3ExprSkipCollateAndLikely(p->pRight); if( ALWAYS(p!=0) && p->op==TK_COLUMN && !ExprHasProperty(p, EP_FixedCol) ){ return p; } return 0; } /* ** Advance to the next WhereTerm that matches according to the criteria ** established when the pScan object was initialized by whereScanInit(). ** Return NULL if there are no more matching WhereTerms. */ static WhereTerm *whereScanNext(WhereScan *pScan){ int iCur; /* The cursor on the LHS of the term */ i16 iColumn; /* The column on the LHS of the term. -1 for IPK */ Expr *pX; /* An expression being tested */ WhereClause *pWC; /* Shorthand for pScan->pWC */ WhereTerm *pTerm; /* The term being tested */ int k = pScan->k; /* Where to start scanning */ assert( pScan->iEquiv<=pScan->nEquiv ); pWC = pScan->pWC; while(1){ iColumn = pScan->aiColumn[pScan->iEquiv-1]; iCur = pScan->aiCur[pScan->iEquiv-1]; assert( pWC!=0 ); assert( iCur>=0 ); do{ for(pTerm=pWC->a+k; knTerm; k++, pTerm++){ assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 || pTerm->leftCursor<0 ); if( pTerm->leftCursor==iCur && pTerm->u.x.leftColumn==iColumn && (iColumn!=XN_EXPR || sqlite3ExprCompareSkip(pTerm->pExpr->pLeft, pScan->pIdxExpr,iCur)==0) && (pScan->iEquiv<=1 || !ExprHasProperty(pTerm->pExpr, EP_FromJoin)) ){ if( (pTerm->eOperator & WO_EQUIV)!=0 && pScan->nEquivaiCur) && (pX = whereRightSubexprIsColumn(pTerm->pExpr))!=0 ){ int j; for(j=0; jnEquiv; j++){ if( pScan->aiCur[j]==pX->iTable && pScan->aiColumn[j]==pX->iColumn ){ break; } } if( j==pScan->nEquiv ){ pScan->aiCur[j] = pX->iTable; pScan->aiColumn[j] = pX->iColumn; pScan->nEquiv++; } } if( (pTerm->eOperator & pScan->opMask)!=0 ){ /* Verify the affinity and collating sequence match */ if( pScan->zCollName && (pTerm->eOperator & WO_ISNULL)==0 ){ CollSeq *pColl; Parse *pParse = pWC->pWInfo->pParse; pX = pTerm->pExpr; if( !sqlite3IndexAffinityOk(pX, pScan->idxaff) ){ continue; } assert(pX->pLeft); pColl = sqlite3ExprCompareCollSeq(pParse, pX); if( pColl==0 ) pColl = pParse->db->pDfltColl; if( sqlite3StrICmp(pColl->zName, pScan->zCollName) ){ continue; } } if( (pTerm->eOperator & (WO_EQ|WO_IS))!=0 && (pX = pTerm->pExpr->pRight, ALWAYS(pX!=0)) && pX->op==TK_COLUMN && pX->iTable==pScan->aiCur[0] && pX->iColumn==pScan->aiColumn[0] ){ testcase( pTerm->eOperator & WO_IS ); continue; } pScan->pWC = pWC; pScan->k = k+1; #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace & 0x20000 ){ int ii; sqlite3DebugPrintf("SCAN-TERM %p: nEquiv=%d", pTerm, pScan->nEquiv); for(ii=0; iinEquiv; ii++){ sqlite3DebugPrintf(" {%d:%d}", pScan->aiCur[ii], pScan->aiColumn[ii]); } sqlite3DebugPrintf("\n"); } #endif return pTerm; } } } pWC = pWC->pOuter; k = 0; }while( pWC!=0 ); if( pScan->iEquiv>=pScan->nEquiv ) break; pWC = pScan->pOrigWC; k = 0; pScan->iEquiv++; } return 0; } /* ** This is whereScanInit() for the case of an index on an expression. ** It is factored out into a separate tail-recursion subroutine so that ** the normal whereScanInit() routine, which is a high-runner, does not ** need to push registers onto the stack as part of its prologue. */ static SQLITE_NOINLINE WhereTerm *whereScanInitIndexExpr(WhereScan *pScan){ pScan->idxaff = sqlite3ExprAffinity(pScan->pIdxExpr); return whereScanNext(pScan); } /* ** Initialize a WHERE clause scanner object. Return a pointer to the ** first match. Return NULL if there are no matches. ** ** The scanner will be searching the WHERE clause pWC. It will look ** for terms of the form "X " where X is column iColumn of table ** iCur. Or if pIdx!=0 then X is column iColumn of index pIdx. pIdx ** must be one of the indexes of table iCur. ** ** The must be one of the operators described by opMask. ** ** If the search is for X and the WHERE clause contains terms of the ** form X=Y then this routine might also return terms of the form ** "Y ". The number of levels of transitivity is limited, ** but is enough to handle most commonly occurring SQL statements. ** ** If X is not the INTEGER PRIMARY KEY then X must be compatible with ** index pIdx. */ static WhereTerm *whereScanInit( WhereScan *pScan, /* The WhereScan object being initialized */ WhereClause *pWC, /* The WHERE clause to be scanned */ int iCur, /* Cursor to scan for */ int iColumn, /* Column to scan for */ u32 opMask, /* Operator(s) to scan for */ Index *pIdx /* Must be compatible with this index */ ){ pScan->pOrigWC = pWC; pScan->pWC = pWC; pScan->pIdxExpr = 0; pScan->idxaff = 0; pScan->zCollName = 0; pScan->opMask = opMask; pScan->k = 0; pScan->aiCur[0] = iCur; pScan->nEquiv = 1; pScan->iEquiv = 1; if( pIdx ){ int j = iColumn; iColumn = pIdx->aiColumn[j]; if( iColumn==pIdx->pTable->iPKey ){ iColumn = XN_ROWID; }else if( iColumn>=0 ){ pScan->idxaff = pIdx->pTable->aCol[iColumn].affinity; pScan->zCollName = pIdx->azColl[j]; }else if( iColumn==XN_EXPR ){ pScan->pIdxExpr = pIdx->aColExpr->a[j].pExpr; pScan->zCollName = pIdx->azColl[j]; pScan->aiColumn[0] = XN_EXPR; return whereScanInitIndexExpr(pScan); } }else if( iColumn==XN_EXPR ){ return 0; } pScan->aiColumn[0] = iColumn; return whereScanNext(pScan); } /* ** Search for a term in the WHERE clause that is of the form "X " ** where X is a reference to the iColumn of table iCur or of index pIdx ** if pIdx!=0 and is one of the WO_xx operator codes specified by ** the op parameter. Return a pointer to the term. Return 0 if not found. ** ** If pIdx!=0 then it must be one of the indexes of table iCur. ** Search for terms matching the iColumn-th column of pIdx ** rather than the iColumn-th column of table iCur. ** ** The term returned might by Y= if there is another constraint in ** the WHERE clause that specifies that X=Y. Any such constraints will be ** identified by the WO_EQUIV bit in the pTerm->eOperator field. The ** aiCur[]/iaColumn[] arrays hold X and all its equivalents. There are 11 ** slots in aiCur[]/aiColumn[] so that means we can look for X plus up to 10 ** other equivalent values. Hence a search for X will return if X=A1 ** and A1=A2 and A2=A3 and ... and A9=A10 and A10=. ** ** If there are multiple terms in the WHERE clause of the form "X " ** then try for the one with no dependencies on - in other words where ** is a constant expression of some kind. Only return entries of ** the form "X Y" where Y is a column in another table if no terms of ** the form "X " exist. If no terms with a constant RHS ** exist, try to return a term that does not use WO_EQUIV. */ SQLITE_PRIVATE WhereTerm *sqlite3WhereFindTerm( WhereClause *pWC, /* The WHERE clause to be searched */ int iCur, /* Cursor number of LHS */ int iColumn, /* Column number of LHS */ Bitmask notReady, /* RHS must not overlap with this mask */ u32 op, /* Mask of WO_xx values describing operator */ Index *pIdx /* Must be compatible with this index, if not NULL */ ){ WhereTerm *pResult = 0; WhereTerm *p; WhereScan scan; p = whereScanInit(&scan, pWC, iCur, iColumn, op, pIdx); op &= WO_EQ|WO_IS; while( p ){ if( (p->prereqRight & notReady)==0 ){ if( p->prereqRight==0 && (p->eOperator&op)!=0 ){ testcase( p->eOperator & WO_IS ); return p; } if( pResult==0 ) pResult = p; } p = whereScanNext(&scan); } return pResult; } /* ** This function searches pList for an entry that matches the iCol-th column ** of index pIdx. ** ** If such an expression is found, its index in pList->a[] is returned. If ** no expression is found, -1 is returned. */ static int findIndexCol( Parse *pParse, /* Parse context */ ExprList *pList, /* Expression list to search */ int iBase, /* Cursor for table associated with pIdx */ Index *pIdx, /* Index to match column of */ int iCol /* Column of index to match */ ){ int i; const char *zColl = pIdx->azColl[iCol]; for(i=0; inExpr; i++){ Expr *p = sqlite3ExprSkipCollateAndLikely(pList->a[i].pExpr); if( ALWAYS(p!=0) && (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN) && p->iColumn==pIdx->aiColumn[iCol] && p->iTable==iBase ){ CollSeq *pColl = sqlite3ExprNNCollSeq(pParse, pList->a[i].pExpr); if( 0==sqlite3StrICmp(pColl->zName, zColl) ){ return i; } } } return -1; } /* ** Return TRUE if the iCol-th column of index pIdx is NOT NULL */ static int indexColumnNotNull(Index *pIdx, int iCol){ int j; assert( pIdx!=0 ); assert( iCol>=0 && iColnColumn ); j = pIdx->aiColumn[iCol]; if( j>=0 ){ return pIdx->pTable->aCol[j].notNull; }else if( j==(-1) ){ return 1; }else{ assert( j==(-2) ); return 0; /* Assume an indexed expression can always yield a NULL */ } } /* ** Return true if the DISTINCT expression-list passed as the third argument ** is redundant. ** ** A DISTINCT list is redundant if any subset of the columns in the ** DISTINCT list are collectively unique and individually non-null. */ static int isDistinctRedundant( Parse *pParse, /* Parsing context */ SrcList *pTabList, /* The FROM clause */ WhereClause *pWC, /* The WHERE clause */ ExprList *pDistinct /* The result set that needs to be DISTINCT */ ){ Table *pTab; Index *pIdx; int i; int iBase; /* If there is more than one table or sub-select in the FROM clause of ** this query, then it will not be possible to show that the DISTINCT ** clause is redundant. */ if( pTabList->nSrc!=1 ) return 0; iBase = pTabList->a[0].iCursor; pTab = pTabList->a[0].pTab; /* If any of the expressions is an IPK column on table iBase, then return ** true. Note: The (p->iTable==iBase) part of this test may be false if the ** current SELECT is a correlated sub-query. */ for(i=0; inExpr; i++){ Expr *p = sqlite3ExprSkipCollateAndLikely(pDistinct->a[i].pExpr); if( NEVER(p==0) ) continue; if( p->op!=TK_COLUMN && p->op!=TK_AGG_COLUMN ) continue; if( p->iTable==iBase && p->iColumn<0 ) return 1; } /* Loop through all indices on the table, checking each to see if it makes ** the DISTINCT qualifier redundant. It does so if: ** ** 1. The index is itself UNIQUE, and ** ** 2. All of the columns in the index are either part of the pDistinct ** list, or else the WHERE clause contains a term of the form "col=X", ** where X is a constant value. The collation sequences of the ** comparison and select-list expressions must match those of the index. ** ** 3. All of those index columns for which the WHERE clause does not ** contain a "col=X" term are subject to a NOT NULL constraint. */ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( !IsUniqueIndex(pIdx) ) continue; if( pIdx->pPartIdxWhere ) continue; for(i=0; inKeyCol; i++){ if( 0==sqlite3WhereFindTerm(pWC, iBase, i, ~(Bitmask)0, WO_EQ, pIdx) ){ if( findIndexCol(pParse, pDistinct, iBase, pIdx, i)<0 ) break; if( indexColumnNotNull(pIdx, i)==0 ) break; } } if( i==pIdx->nKeyCol ){ /* This index implies that the DISTINCT qualifier is redundant. */ return 1; } } return 0; } /* ** Estimate the logarithm of the input value to base 2. */ static LogEst estLog(LogEst N){ return N<=10 ? 0 : sqlite3LogEst(N) - 33; } /* ** Convert OP_Column opcodes to OP_Copy in previously generated code. ** ** This routine runs over generated VDBE code and translates OP_Column ** opcodes into OP_Copy when the table is being accessed via co-routine ** instead of via table lookup. ** ** If the iAutoidxCur is not zero, then any OP_Rowid instructions on ** cursor iTabCur are transformed into OP_Sequence opcode for the ** iAutoidxCur cursor, in order to generate unique rowids for the ** automatic index being generated. */ static void translateColumnToCopy( Parse *pParse, /* Parsing context */ int iStart, /* Translate from this opcode to the end */ int iTabCur, /* OP_Column/OP_Rowid references to this table */ int iRegister, /* The first column is in this register */ int iAutoidxCur /* If non-zero, cursor of autoindex being generated */ ){ Vdbe *v = pParse->pVdbe; VdbeOp *pOp = sqlite3VdbeGetOp(v, iStart); int iEnd = sqlite3VdbeCurrentAddr(v); if( pParse->db->mallocFailed ) return; for(; iStartp1!=iTabCur ) continue; if( pOp->opcode==OP_Column ){ pOp->opcode = OP_Copy; pOp->p1 = pOp->p2 + iRegister; pOp->p2 = pOp->p3; pOp->p3 = 0; }else if( pOp->opcode==OP_Rowid ){ pOp->opcode = OP_Sequence; pOp->p1 = iAutoidxCur; #ifdef SQLITE_ALLOW_ROWID_IN_VIEW if( iAutoidxCur==0 ){ pOp->opcode = OP_Null; pOp->p3 = 0; } #endif } } } /* ** Two routines for printing the content of an sqlite3_index_info ** structure. Used for testing and debugging only. If neither ** SQLITE_TEST or SQLITE_DEBUG are defined, then these routines ** are no-ops. */ #if !defined(SQLITE_OMIT_VIRTUALTABLE) && defined(WHERETRACE_ENABLED) static void whereTraceIndexInfoInputs(sqlite3_index_info *p){ int i; if( !sqlite3WhereTrace ) return; for(i=0; inConstraint; i++){ sqlite3DebugPrintf( " constraint[%d]: col=%d termid=%d op=%d usabled=%d collseq=%s\n", i, p->aConstraint[i].iColumn, p->aConstraint[i].iTermOffset, p->aConstraint[i].op, p->aConstraint[i].usable, sqlite3_vtab_collation(p,i)); } for(i=0; inOrderBy; i++){ sqlite3DebugPrintf(" orderby[%d]: col=%d desc=%d\n", i, p->aOrderBy[i].iColumn, p->aOrderBy[i].desc); } } static void whereTraceIndexInfoOutputs(sqlite3_index_info *p){ int i; if( !sqlite3WhereTrace ) return; for(i=0; inConstraint; i++){ sqlite3DebugPrintf(" usage[%d]: argvIdx=%d omit=%d\n", i, p->aConstraintUsage[i].argvIndex, p->aConstraintUsage[i].omit); } sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum); sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr); sqlite3DebugPrintf(" orderByConsumed=%d\n", p->orderByConsumed); sqlite3DebugPrintf(" estimatedCost=%g\n", p->estimatedCost); sqlite3DebugPrintf(" estimatedRows=%lld\n", p->estimatedRows); } #else #define whereTraceIndexInfoInputs(A) #define whereTraceIndexInfoOutputs(A) #endif #ifndef SQLITE_OMIT_AUTOMATIC_INDEX /* ** Return TRUE if the WHERE clause term pTerm is of a form where it ** could be used with an index to access pSrc, assuming an appropriate ** index existed. */ static int termCanDriveIndex( const WhereTerm *pTerm, /* WHERE clause term to check */ const SrcItem *pSrc, /* Table we are trying to access */ const Bitmask notReady /* Tables in outer loops of the join */ ){ char aff; if( pTerm->leftCursor!=pSrc->iCursor ) return 0; if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) return 0; if( (pSrc->fg.jointype & JT_LEFT) && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) && (pTerm->eOperator & WO_IS) ){ /* Cannot use an IS term from the WHERE clause as an index driver for ** the RHS of a LEFT JOIN. Such a term can only be used if it is from ** the ON clause. */ return 0; } if( (pTerm->prereqRight & notReady)!=0 ) return 0; assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); if( pTerm->u.x.leftColumn<0 ) return 0; aff = pSrc->pTab->aCol[pTerm->u.x.leftColumn].affinity; if( !sqlite3IndexAffinityOk(pTerm->pExpr, aff) ) return 0; testcase( pTerm->pExpr->op==TK_IS ); return 1; } #endif #ifndef SQLITE_OMIT_AUTOMATIC_INDEX /* ** Generate code to construct the Index object for an automatic index ** and to set up the WhereLevel object pLevel so that the code generator ** makes use of the automatic index. */ static SQLITE_NOINLINE void constructAutomaticIndex( Parse *pParse, /* The parsing context */ const WhereClause *pWC, /* The WHERE clause */ const SrcItem *pSrc, /* The FROM clause term to get the next index */ const Bitmask notReady, /* Mask of cursors that are not available */ WhereLevel *pLevel /* Write new index here */ ){ int nKeyCol; /* Number of columns in the constructed index */ WhereTerm *pTerm; /* A single term of the WHERE clause */ WhereTerm *pWCEnd; /* End of pWC->a[] */ Index *pIdx; /* Object describing the transient index */ Vdbe *v; /* Prepared statement under construction */ int addrInit; /* Address of the initialization bypass jump */ Table *pTable; /* The table being indexed */ int addrTop; /* Top of the index fill loop */ int regRecord; /* Register holding an index record */ int n; /* Column counter */ int i; /* Loop counter */ int mxBitCol; /* Maximum column in pSrc->colUsed */ CollSeq *pColl; /* Collating sequence to on a column */ WhereLoop *pLoop; /* The Loop object */ char *zNotUsed; /* Extra space on the end of pIdx */ Bitmask idxCols; /* Bitmap of columns used for indexing */ Bitmask extraCols; /* Bitmap of additional columns */ u8 sentWarning = 0; /* True if a warnning has been issued */ Expr *pPartial = 0; /* Partial Index Expression */ int iContinue = 0; /* Jump here to skip excluded rows */ SrcItem *pTabItem; /* FROM clause term being indexed */ int addrCounter = 0; /* Address where integer counter is initialized */ int regBase; /* Array of registers where record is assembled */ /* Generate code to skip over the creation and initialization of the ** transient index on 2nd and subsequent iterations of the loop. */ v = pParse->pVdbe; assert( v!=0 ); addrInit = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); /* Count the number of columns that will be added to the index ** and used to match WHERE clause constraints */ nKeyCol = 0; pTable = pSrc->pTab; pWCEnd = &pWC->a[pWC->nTerm]; pLoop = pLevel->pWLoop; idxCols = 0; for(pTerm=pWC->a; pTermpExpr; /* Make the automatic index a partial index if there are terms in the ** WHERE clause (or the ON clause of a LEFT join) that constrain which ** rows of the target table (pSrc) that can be used. */ if( (pTerm->wtFlags & TERM_VIRTUAL)==0 && ((pSrc->fg.jointype&JT_LEFT)==0 || ExprHasProperty(pExpr,EP_FromJoin)) && sqlite3ExprIsTableConstant(pExpr, pSrc->iCursor) ){ pPartial = sqlite3ExprAnd(pParse, pPartial, sqlite3ExprDup(pParse->db, pExpr, 0)); } if( termCanDriveIndex(pTerm, pSrc, notReady) ){ int iCol; Bitmask cMask; assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); iCol = pTerm->u.x.leftColumn; cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); testcase( iCol==BMS ); testcase( iCol==BMS-1 ); if( !sentWarning ){ sqlite3_log(SQLITE_WARNING_AUTOINDEX, "automatic index on %s(%s)", pTable->zName, pTable->aCol[iCol].zCnName); sentWarning = 1; } if( (idxCols & cMask)==0 ){ if( whereLoopResize(pParse->db, pLoop, nKeyCol+1) ){ goto end_auto_index_create; } pLoop->aLTerm[nKeyCol++] = pTerm; idxCols |= cMask; } } } assert( nKeyCol>0 || pParse->db->mallocFailed ); pLoop->u.btree.nEq = pLoop->nLTerm = nKeyCol; pLoop->wsFlags = WHERE_COLUMN_EQ | WHERE_IDX_ONLY | WHERE_INDEXED | WHERE_AUTO_INDEX; /* Count the number of additional columns needed to create a ** covering index. A "covering index" is an index that contains all ** columns that are needed by the query. With a covering index, the ** original table never needs to be accessed. Automatic indices must ** be a covering index because the index will not be updated if the ** original table changes and the index and table cannot both be used ** if they go out of sync. */ extraCols = pSrc->colUsed & (~idxCols | MASKBIT(BMS-1)); mxBitCol = MIN(BMS-1,pTable->nCol); testcase( pTable->nCol==BMS-1 ); testcase( pTable->nCol==BMS-2 ); for(i=0; icolUsed & MASKBIT(BMS-1) ){ nKeyCol += pTable->nCol - BMS + 1; } /* Construct the Index object to describe this index */ pIdx = sqlite3AllocateIndexObject(pParse->db, nKeyCol+1, 0, &zNotUsed); if( pIdx==0 ) goto end_auto_index_create; pLoop->u.btree.pIndex = pIdx; pIdx->zName = "auto-index"; pIdx->pTable = pTable; n = 0; idxCols = 0; for(pTerm=pWC->a; pTermeOperator & (WO_OR|WO_AND))==0 ); iCol = pTerm->u.x.leftColumn; cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); testcase( iCol==BMS-1 ); testcase( iCol==BMS ); if( (idxCols & cMask)==0 ){ Expr *pX = pTerm->pExpr; idxCols |= cMask; pIdx->aiColumn[n] = pTerm->u.x.leftColumn; pColl = sqlite3ExprCompareCollSeq(pParse, pX); assert( pColl!=0 || pParse->nErr>0 ); /* TH3 collate01.800 */ pIdx->azColl[n] = pColl ? pColl->zName : sqlite3StrBINARY; n++; } } } assert( (u32)n==pLoop->u.btree.nEq ); /* Add additional columns needed to make the automatic index into ** a covering index */ for(i=0; iaiColumn[n] = i; pIdx->azColl[n] = sqlite3StrBINARY; n++; } } if( pSrc->colUsed & MASKBIT(BMS-1) ){ for(i=BMS-1; inCol; i++){ pIdx->aiColumn[n] = i; pIdx->azColl[n] = sqlite3StrBINARY; n++; } } assert( n==nKeyCol ); pIdx->aiColumn[n] = XN_ROWID; pIdx->azColl[n] = sqlite3StrBINARY; /* Create the automatic index */ assert( pLevel->iIdxCur>=0 ); pLevel->iIdxCur = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_OpenAutoindex, pLevel->iIdxCur, nKeyCol+1); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); VdbeComment((v, "for %s", pTable->zName)); if( OptimizationEnabled(pParse->db, SQLITE_BloomFilter) ){ pLevel->regFilter = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Blob, 10000, pLevel->regFilter); } /* Fill the automatic index with content */ pTabItem = &pWC->pWInfo->pTabList->a[pLevel->iFrom]; if( pTabItem->fg.viaCoroutine ){ int regYield = pTabItem->regReturn; addrCounter = sqlite3VdbeAddOp2(v, OP_Integer, 0, 0); sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub); addrTop = sqlite3VdbeAddOp1(v, OP_Yield, regYield); VdbeCoverage(v); VdbeComment((v, "next row of %s", pTabItem->pTab->zName)); }else{ addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, pLevel->iTabCur); VdbeCoverage(v); } if( pPartial ){ iContinue = sqlite3VdbeMakeLabel(pParse); sqlite3ExprIfFalse(pParse, pPartial, iContinue, SQLITE_JUMPIFNULL); pLoop->wsFlags |= WHERE_PARTIALIDX; } regRecord = sqlite3GetTempReg(pParse); regBase = sqlite3GenerateIndexKey( pParse, pIdx, pLevel->iTabCur, regRecord, 0, 0, 0, 0 ); if( pLevel->regFilter ){ sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pLevel->regFilter, 0, regBase, pLoop->u.btree.nEq); } sqlite3VdbeAddOp2(v, OP_IdxInsert, pLevel->iIdxCur, regRecord); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); if( pPartial ) sqlite3VdbeResolveLabel(v, iContinue); if( pTabItem->fg.viaCoroutine ){ sqlite3VdbeChangeP2(v, addrCounter, regBase+n); testcase( pParse->db->mallocFailed ); assert( pLevel->iIdxCur>0 ); translateColumnToCopy(pParse, addrTop, pLevel->iTabCur, pTabItem->regResult, pLevel->iIdxCur); sqlite3VdbeGoto(v, addrTop); pTabItem->fg.viaCoroutine = 0; }else{ sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_STMTSTATUS_AUTOINDEX); } sqlite3VdbeJumpHere(v, addrTop); sqlite3ReleaseTempReg(pParse, regRecord); /* Jump here when skipping the initialization */ sqlite3VdbeJumpHere(v, addrInit); end_auto_index_create: sqlite3ExprDelete(pParse->db, pPartial); } #endif /* SQLITE_OMIT_AUTOMATIC_INDEX */ /* ** Generate bytecode that will initialize a Bloom filter that is appropriate ** for pLevel. ** ** If there are inner loops within pLevel that have the WHERE_BLOOMFILTER ** flag set, initialize a Bloomfilter for them as well. Except don't do ** this recursive initialization if the SQLITE_BloomPulldown optimization has ** been turned off. ** ** When the Bloom filter is initialized, the WHERE_BLOOMFILTER flag is cleared ** from the loop, but the regFilter value is set to a register that implements ** the Bloom filter. When regFilter is positive, the ** sqlite3WhereCodeOneLoopStart() will generate code to test the Bloom filter ** and skip the subsequence B-Tree seek if the Bloom filter indicates that ** no matching rows exist. ** ** This routine may only be called if it has previously been determined that ** the loop would benefit from a Bloom filter, and the WHERE_BLOOMFILTER bit ** is set. */ static SQLITE_NOINLINE void sqlite3ConstructBloomFilter( WhereInfo *pWInfo, /* The WHERE clause */ int iLevel, /* Index in pWInfo->a[] that is pLevel */ WhereLevel *pLevel, /* Make a Bloom filter for this FROM term */ Bitmask notReady /* Loops that are not ready */ ){ int addrOnce; /* Address of opening OP_Once */ int addrTop; /* Address of OP_Rewind */ int addrCont; /* Jump here to skip a row */ const WhereTerm *pTerm; /* For looping over WHERE clause terms */ const WhereTerm *pWCEnd; /* Last WHERE clause term */ Parse *pParse = pWInfo->pParse; /* Parsing context */ Vdbe *v = pParse->pVdbe; /* VDBE under construction */ WhereLoop *pLoop = pLevel->pWLoop; /* The loop being coded */ int iCur; /* Cursor for table getting the filter */ assert( pLoop!=0 ); assert( v!=0 ); assert( pLoop->wsFlags & WHERE_BLOOMFILTER ); addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); do{ const SrcItem *pItem; const Table *pTab; u64 sz; sqlite3WhereExplainBloomFilter(pParse, pWInfo, pLevel); addrCont = sqlite3VdbeMakeLabel(pParse); iCur = pLevel->iTabCur; pLevel->regFilter = ++pParse->nMem; /* The Bloom filter is a Blob held in a register. Initialize it ** to zero-filled blob of at least 80K bits, but maybe more if the ** estimated size of the table is larger. We could actually ** measure the size of the table at run-time using OP_Count with ** P3==1 and use that value to initialize the blob. But that makes ** testing complicated. By basing the blob size on the value in the ** sqlite_stat1 table, testing is much easier. */ pItem = &pWInfo->pTabList->a[pLevel->iFrom]; assert( pItem!=0 ); pTab = pItem->pTab; assert( pTab!=0 ); sz = sqlite3LogEstToInt(pTab->nRowLogEst); if( sz<10000 ){ sz = 10000; }else if( sz>10000000 ){ sz = 10000000; } sqlite3VdbeAddOp2(v, OP_Blob, (int)sz, pLevel->regFilter); addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v); pWCEnd = &pWInfo->sWC.a[pWInfo->sWC.nTerm]; for(pTerm=pWInfo->sWC.a; pTermpExpr; if( (pTerm->wtFlags & TERM_VIRTUAL)==0 && sqlite3ExprIsTableConstant(pExpr, iCur) ){ sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); } } if( pLoop->wsFlags & WHERE_IPK ){ int r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_Rowid, iCur, r1); sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pLevel->regFilter, 0, r1, 1); sqlite3ReleaseTempReg(pParse, r1); }else{ Index *pIdx = pLoop->u.btree.pIndex; int n = pLoop->u.btree.nEq; int r1 = sqlite3GetTempRange(pParse, n); int jj; for(jj=0; jjaiColumn[jj]; assert( pIdx->pTable==pItem->pTab ); sqlite3ExprCodeGetColumnOfTable(v, pIdx->pTable, iCur, iCol,r1+jj); } sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pLevel->regFilter, 0, r1, n); sqlite3ReleaseTempRange(pParse, r1, n); } sqlite3VdbeResolveLabel(v, addrCont); sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrTop); pLoop->wsFlags &= ~WHERE_BLOOMFILTER; if( OptimizationDisabled(pParse->db, SQLITE_BloomPulldown) ) break; while( ++iLevel < pWInfo->nLevel ){ pLevel = &pWInfo->a[iLevel]; pLoop = pLevel->pWLoop; if( NEVER(pLoop==0) ) continue; if( pLoop->prereq & notReady ) continue; if( (pLoop->wsFlags & (WHERE_BLOOMFILTER|WHERE_COLUMN_IN)) ==WHERE_BLOOMFILTER ){ /* This is a candidate for bloom-filter pull-down (early evaluation). ** The test that WHERE_COLUMN_IN is omitted is important, as we are ** not able to do early evaluation of bloom filters that make use of ** the IN operator */ break; } } }while( iLevel < pWInfo->nLevel ); sqlite3VdbeJumpHere(v, addrOnce); } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Allocate and populate an sqlite3_index_info structure. It is the ** responsibility of the caller to eventually release the structure ** by passing the pointer returned by this function to freeIndexInfo(). */ static sqlite3_index_info *allocateIndexInfo( WhereInfo *pWInfo, /* The WHERE clause */ WhereClause *pWC, /* The WHERE clause being analyzed */ Bitmask mUnusable, /* Ignore terms with these prereqs */ SrcItem *pSrc, /* The FROM clause term that is the vtab */ u16 *pmNoOmit /* Mask of terms not to omit */ ){ int i, j; int nTerm; Parse *pParse = pWInfo->pParse; struct sqlite3_index_constraint *pIdxCons; struct sqlite3_index_orderby *pIdxOrderBy; struct sqlite3_index_constraint_usage *pUsage; struct HiddenIndexInfo *pHidden; WhereTerm *pTerm; int nOrderBy; sqlite3_index_info *pIdxInfo; u16 mNoOmit = 0; const Table *pTab; int eDistinct = 0; ExprList *pOrderBy = pWInfo->pOrderBy; assert( pSrc!=0 ); pTab = pSrc->pTab; assert( pTab!=0 ); assert( IsVirtual(pTab) ); /* Find all WHERE clause constraints referring to this virtual table. ** Mark each term with the TERM_OK flag. Set nTerm to the number of ** terms found. */ for(i=nTerm=0, pTerm=pWC->a; inTerm; i++, pTerm++){ pTerm->wtFlags &= ~TERM_OK; if( pTerm->leftCursor != pSrc->iCursor ) continue; if( pTerm->prereqRight & mUnusable ) continue; assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) ); testcase( pTerm->eOperator & WO_IN ); testcase( pTerm->eOperator & WO_ISNULL ); testcase( pTerm->eOperator & WO_IS ); testcase( pTerm->eOperator & WO_ALL ); if( (pTerm->eOperator & ~(WO_EQUIV))==0 ) continue; if( pTerm->wtFlags & TERM_VNULL ) continue; assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); assert( pTerm->u.x.leftColumn>=XN_ROWID ); assert( pTerm->u.x.leftColumnnCol ); /* tag-20191211-002: WHERE-clause constraints are not useful to the ** right-hand table of a LEFT JOIN. See tag-20191211-001 for the ** equivalent restriction for ordinary tables. */ if( (pSrc->fg.jointype & JT_LEFT)!=0 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) ){ continue; } nTerm++; pTerm->wtFlags |= TERM_OK; } /* If the ORDER BY clause contains only columns in the current ** virtual table then allocate space for the aOrderBy part of ** the sqlite3_index_info structure. */ nOrderBy = 0; if( pOrderBy ){ int n = pOrderBy->nExpr; for(i=0; ia[i].pExpr; Expr *pE2; /* Skip over constant terms in the ORDER BY clause */ if( sqlite3ExprIsConstant(pExpr) ){ continue; } /* Virtual tables are unable to deal with NULLS FIRST */ if( pOrderBy->a[i].sortFlags & KEYINFO_ORDER_BIGNULL ) break; /* First case - a direct column references without a COLLATE operator */ if( pExpr->op==TK_COLUMN && pExpr->iTable==pSrc->iCursor ){ assert( pExpr->iColumn>=XN_ROWID && pExpr->iColumnnCol ); continue; } /* 2nd case - a column reference with a COLLATE operator. Only match ** of the COLLATE operator matches the collation of the column. */ if( pExpr->op==TK_COLLATE && (pE2 = pExpr->pLeft)->op==TK_COLUMN && pE2->iTable==pSrc->iCursor ){ const char *zColl; /* The collating sequence name */ assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( pExpr->u.zToken!=0 ); assert( pE2->iColumn>=XN_ROWID && pE2->iColumnnCol ); pExpr->iColumn = pE2->iColumn; if( pE2->iColumn<0 ) continue; /* Collseq does not matter for rowid */ zColl = sqlite3ColumnColl(&pTab->aCol[pE2->iColumn]); if( zColl==0 ) zColl = sqlite3StrBINARY; if( sqlite3_stricmp(pExpr->u.zToken, zColl)==0 ) continue; } /* No matches cause a break out of the loop */ break; } if( i==n ){ nOrderBy = n; if( (pWInfo->wctrlFlags & (WHERE_GROUPBY|WHERE_DISTINCTBY)) ){ eDistinct = 1 + ((pWInfo->wctrlFlags & WHERE_DISTINCTBY)!=0); } } } /* Allocate the sqlite3_index_info structure */ pIdxInfo = sqlite3DbMallocZero(pParse->db, sizeof(*pIdxInfo) + (sizeof(*pIdxCons) + sizeof(*pUsage))*nTerm + sizeof(*pIdxOrderBy)*nOrderBy + sizeof(*pHidden) + sizeof(sqlite3_value*)*nTerm ); if( pIdxInfo==0 ){ sqlite3ErrorMsg(pParse, "out of memory"); return 0; } pHidden = (struct HiddenIndexInfo*)&pIdxInfo[1]; pIdxCons = (struct sqlite3_index_constraint*)&pHidden->aRhs[nTerm]; pIdxOrderBy = (struct sqlite3_index_orderby*)&pIdxCons[nTerm]; pUsage = (struct sqlite3_index_constraint_usage*)&pIdxOrderBy[nOrderBy]; pIdxInfo->aConstraint = pIdxCons; pIdxInfo->aOrderBy = pIdxOrderBy; pIdxInfo->aConstraintUsage = pUsage; pHidden->pWC = pWC; pHidden->pParse = pParse; pHidden->eDistinct = eDistinct; pHidden->mIn = 0; for(i=j=0, pTerm=pWC->a; inTerm; i++, pTerm++){ u16 op; if( (pTerm->wtFlags & TERM_OK)==0 ) continue; pIdxCons[j].iColumn = pTerm->u.x.leftColumn; pIdxCons[j].iTermOffset = i; op = pTerm->eOperator & WO_ALL; if( op==WO_IN ){ if( (pTerm->wtFlags & TERM_SLICE)==0 ){ pHidden->mIn |= SMASKBIT32(j); } op = WO_EQ; } if( op==WO_AUX ){ pIdxCons[j].op = pTerm->eMatchOp; }else if( op & (WO_ISNULL|WO_IS) ){ if( op==WO_ISNULL ){ pIdxCons[j].op = SQLITE_INDEX_CONSTRAINT_ISNULL; }else{ pIdxCons[j].op = SQLITE_INDEX_CONSTRAINT_IS; } }else{ pIdxCons[j].op = (u8)op; /* The direct assignment in the previous line is possible only because ** the WO_ and SQLITE_INDEX_CONSTRAINT_ codes are identical. The ** following asserts verify this fact. */ assert( WO_EQ==SQLITE_INDEX_CONSTRAINT_EQ ); assert( WO_LT==SQLITE_INDEX_CONSTRAINT_LT ); assert( WO_LE==SQLITE_INDEX_CONSTRAINT_LE ); assert( WO_GT==SQLITE_INDEX_CONSTRAINT_GT ); assert( WO_GE==SQLITE_INDEX_CONSTRAINT_GE ); assert( pTerm->eOperator&(WO_IN|WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE|WO_AUX) ); if( op & (WO_LT|WO_LE|WO_GT|WO_GE) && sqlite3ExprIsVector(pTerm->pExpr->pRight) ){ testcase( j!=i ); if( j<16 ) mNoOmit |= (1 << j); if( op==WO_LT ) pIdxCons[j].op = WO_LE; if( op==WO_GT ) pIdxCons[j].op = WO_GE; } } j++; } assert( j==nTerm ); pIdxInfo->nConstraint = j; for(i=j=0; ia[i].pExpr; if( sqlite3ExprIsConstant(pExpr) ) continue; assert( pExpr->op==TK_COLUMN || (pExpr->op==TK_COLLATE && pExpr->pLeft->op==TK_COLUMN && pExpr->iColumn==pExpr->pLeft->iColumn) ); pIdxOrderBy[j].iColumn = pExpr->iColumn; pIdxOrderBy[j].desc = pOrderBy->a[i].sortFlags & KEYINFO_ORDER_DESC; j++; } pIdxInfo->nOrderBy = j; *pmNoOmit = mNoOmit; return pIdxInfo; } /* ** Free an sqlite3_index_info structure allocated by allocateIndexInfo() ** and possibly modified by xBestIndex methods. */ static void freeIndexInfo(sqlite3 *db, sqlite3_index_info *pIdxInfo){ HiddenIndexInfo *pHidden; int i; assert( pIdxInfo!=0 ); pHidden = (HiddenIndexInfo*)&pIdxInfo[1]; assert( pHidden->pParse!=0 ); assert( pHidden->pParse->db==db ); for(i=0; inConstraint; i++){ sqlite3ValueFree(pHidden->aRhs[i]); /* IMP: R-14553-25174 */ pHidden->aRhs[i] = 0; } sqlite3DbFree(db, pIdxInfo); } /* ** The table object reference passed as the second argument to this function ** must represent a virtual table. This function invokes the xBestIndex() ** method of the virtual table with the sqlite3_index_info object that ** comes in as the 3rd argument to this function. ** ** If an error occurs, pParse is populated with an error message and an ** appropriate error code is returned. A return of SQLITE_CONSTRAINT from ** xBestIndex is not considered an error. SQLITE_CONSTRAINT indicates that ** the current configuration of "unusable" flags in sqlite3_index_info can ** not result in a valid plan. ** ** Whether or not an error is returned, it is the responsibility of the ** caller to eventually free p->idxStr if p->needToFreeIdxStr indicates ** that this is required. */ static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){ sqlite3_vtab *pVtab = sqlite3GetVTable(pParse->db, pTab)->pVtab; int rc; whereTraceIndexInfoInputs(p); pParse->db->nSchemaLock++; rc = pVtab->pModule->xBestIndex(pVtab, p); pParse->db->nSchemaLock--; whereTraceIndexInfoOutputs(p); if( rc!=SQLITE_OK && rc!=SQLITE_CONSTRAINT ){ if( rc==SQLITE_NOMEM ){ sqlite3OomFault(pParse->db); }else if( !pVtab->zErrMsg ){ sqlite3ErrorMsg(pParse, "%s", sqlite3ErrStr(rc)); }else{ sqlite3ErrorMsg(pParse, "%s", pVtab->zErrMsg); } } sqlite3_free(pVtab->zErrMsg); pVtab->zErrMsg = 0; return rc; } #endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */ #ifdef SQLITE_ENABLE_STAT4 /* ** Estimate the location of a particular key among all keys in an ** index. Store the results in aStat as follows: ** ** aStat[0] Est. number of rows less than pRec ** aStat[1] Est. number of rows equal to pRec ** ** Return the index of the sample that is the smallest sample that ** is greater than or equal to pRec. Note that this index is not an index ** into the aSample[] array - it is an index into a virtual set of samples ** based on the contents of aSample[] and the number of fields in record ** pRec. */ static int whereKeyStats( Parse *pParse, /* Database connection */ Index *pIdx, /* Index to consider domain of */ UnpackedRecord *pRec, /* Vector of values to consider */ int roundUp, /* Round up if true. Round down if false */ tRowcnt *aStat /* OUT: stats written here */ ){ IndexSample *aSample = pIdx->aSample; int iCol; /* Index of required stats in anEq[] etc. */ int i; /* Index of first sample >= pRec */ int iSample; /* Smallest sample larger than or equal to pRec */ int iMin = 0; /* Smallest sample not yet tested */ int iTest; /* Next sample to test */ int res; /* Result of comparison operation */ int nField; /* Number of fields in pRec */ tRowcnt iLower = 0; /* anLt[] + anEq[] of largest sample pRec is > */ #ifndef SQLITE_DEBUG UNUSED_PARAMETER( pParse ); #endif assert( pRec!=0 ); assert( pIdx->nSample>0 ); assert( pRec->nField>0 && pRec->nField<=pIdx->nSampleCol ); /* Do a binary search to find the first sample greater than or equal ** to pRec. If pRec contains a single field, the set of samples to search ** is simply the aSample[] array. If the samples in aSample[] contain more ** than one fields, all fields following the first are ignored. ** ** If pRec contains N fields, where N is more than one, then as well as the ** samples in aSample[] (truncated to N fields), the search also has to ** consider prefixes of those samples. For example, if the set of samples ** in aSample is: ** ** aSample[0] = (a, 5) ** aSample[1] = (a, 10) ** aSample[2] = (b, 5) ** aSample[3] = (c, 100) ** aSample[4] = (c, 105) ** ** Then the search space should ideally be the samples above and the ** unique prefixes [a], [b] and [c]. But since that is hard to organize, ** the code actually searches this set: ** ** 0: (a) ** 1: (a, 5) ** 2: (a, 10) ** 3: (a, 10) ** 4: (b) ** 5: (b, 5) ** 6: (c) ** 7: (c, 100) ** 8: (c, 105) ** 9: (c, 105) ** ** For each sample in the aSample[] array, N samples are present in the ** effective sample array. In the above, samples 0 and 1 are based on ** sample aSample[0]. Samples 2 and 3 on aSample[1] etc. ** ** Often, sample i of each block of N effective samples has (i+1) fields. ** Except, each sample may be extended to ensure that it is greater than or ** equal to the previous sample in the array. For example, in the above, ** sample 2 is the first sample of a block of N samples, so at first it ** appears that it should be 1 field in size. However, that would make it ** smaller than sample 1, so the binary search would not work. As a result, ** it is extended to two fields. The duplicates that this creates do not ** cause any problems. */ nField = pRec->nField; iCol = 0; iSample = pIdx->nSample * nField; do{ int iSamp; /* Index in aSample[] of test sample */ int n; /* Number of fields in test sample */ iTest = (iMin+iSample)/2; iSamp = iTest / nField; if( iSamp>0 ){ /* The proposed effective sample is a prefix of sample aSample[iSamp]. ** Specifically, the shortest prefix of at least (1 + iTest%nField) ** fields that is greater than the previous effective sample. */ for(n=(iTest % nField) + 1; nnField = n; res = sqlite3VdbeRecordCompare(aSample[iSamp].n, aSample[iSamp].p, pRec); if( res<0 ){ iLower = aSample[iSamp].anLt[n-1] + aSample[iSamp].anEq[n-1]; iMin = iTest+1; }else if( res==0 && ndb->mallocFailed==0 ){ if( res==0 ){ /* If (res==0) is true, then pRec must be equal to sample i. */ assert( inSample ); assert( iCol==nField-1 ); pRec->nField = nField; assert( 0==sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec) || pParse->db->mallocFailed ); }else{ /* Unless i==pIdx->nSample, indicating that pRec is larger than ** all samples in the aSample[] array, pRec must be smaller than the ** (iCol+1) field prefix of sample i. */ assert( i<=pIdx->nSample && i>=0 ); pRec->nField = iCol+1; assert( i==pIdx->nSample || sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)>0 || pParse->db->mallocFailed ); /* if i==0 and iCol==0, then record pRec is smaller than all samples ** in the aSample[] array. Otherwise, if (iCol>0) then pRec must ** be greater than or equal to the (iCol) field prefix of sample i. ** If (i>0), then pRec must also be greater than sample (i-1). */ if( iCol>0 ){ pRec->nField = iCol; assert( sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)<=0 || pParse->db->mallocFailed ); } if( i>0 ){ pRec->nField = nField; assert( sqlite3VdbeRecordCompare(aSample[i-1].n, aSample[i-1].p, pRec)<0 || pParse->db->mallocFailed ); } } } #endif /* ifdef SQLITE_DEBUG */ if( res==0 ){ /* Record pRec is equal to sample i */ assert( iCol==nField-1 ); aStat[0] = aSample[i].anLt[iCol]; aStat[1] = aSample[i].anEq[iCol]; }else{ /* At this point, the (iCol+1) field prefix of aSample[i] is the first ** sample that is greater than pRec. Or, if i==pIdx->nSample then pRec ** is larger than all samples in the array. */ tRowcnt iUpper, iGap; if( i>=pIdx->nSample ){ iUpper = sqlite3LogEstToInt(pIdx->aiRowLogEst[0]); }else{ iUpper = aSample[i].anLt[iCol]; } if( iLower>=iUpper ){ iGap = 0; }else{ iGap = iUpper - iLower; } if( roundUp ){ iGap = (iGap*2)/3; }else{ iGap = iGap/3; } aStat[0] = iLower + iGap; aStat[1] = pIdx->aAvgEq[nField-1]; } /* Restore the pRec->nField value before returning. */ pRec->nField = nField; return i; } #endif /* SQLITE_ENABLE_STAT4 */ /* ** If it is not NULL, pTerm is a term that provides an upper or lower ** bound on a range scan. Without considering pTerm, it is estimated ** that the scan will visit nNew rows. This function returns the number ** estimated to be visited after taking pTerm into account. ** ** If the user explicitly specified a likelihood() value for this term, ** then the return value is the likelihood multiplied by the number of ** input rows. Otherwise, this function assumes that an "IS NOT NULL" term ** has a likelihood of 0.50, and any other term a likelihood of 0.25. */ static LogEst whereRangeAdjust(WhereTerm *pTerm, LogEst nNew){ LogEst nRet = nNew; if( pTerm ){ if( pTerm->truthProb<=0 ){ nRet += pTerm->truthProb; }else if( (pTerm->wtFlags & TERM_VNULL)==0 ){ nRet -= 20; assert( 20==sqlite3LogEst(4) ); } } return nRet; } #ifdef SQLITE_ENABLE_STAT4 /* ** Return the affinity for a single column of an index. */ SQLITE_PRIVATE char sqlite3IndexColumnAffinity(sqlite3 *db, Index *pIdx, int iCol){ assert( iCol>=0 && iColnColumn ); if( !pIdx->zColAff ){ if( sqlite3IndexAffinityStr(db, pIdx)==0 ) return SQLITE_AFF_BLOB; } assert( pIdx->zColAff[iCol]!=0 ); return pIdx->zColAff[iCol]; } #endif #ifdef SQLITE_ENABLE_STAT4 /* ** This function is called to estimate the number of rows visited by a ** range-scan on a skip-scan index. For example: ** ** CREATE INDEX i1 ON t1(a, b, c); ** SELECT * FROM t1 WHERE a=? AND c BETWEEN ? AND ?; ** ** Value pLoop->nOut is currently set to the estimated number of rows ** visited for scanning (a=? AND b=?). This function reduces that estimate ** by some factor to account for the (c BETWEEN ? AND ?) expression based ** on the stat4 data for the index. this scan will be peformed multiple ** times (once for each (a,b) combination that matches a=?) is dealt with ** by the caller. ** ** It does this by scanning through all stat4 samples, comparing values ** extracted from pLower and pUpper with the corresponding column in each ** sample. If L and U are the number of samples found to be less than or ** equal to the values extracted from pLower and pUpper respectively, and ** N is the total number of samples, the pLoop->nOut value is adjusted ** as follows: ** ** nOut = nOut * ( min(U - L, 1) / N ) ** ** If pLower is NULL, or a value cannot be extracted from the term, L is ** set to zero. If pUpper is NULL, or a value cannot be extracted from it, ** U is set to N. ** ** Normally, this function sets *pbDone to 1 before returning. However, ** if no value can be extracted from either pLower or pUpper (and so the ** estimate of the number of rows delivered remains unchanged), *pbDone ** is left as is. ** ** If an error occurs, an SQLite error code is returned. Otherwise, ** SQLITE_OK. */ static int whereRangeSkipScanEst( Parse *pParse, /* Parsing & code generating context */ WhereTerm *pLower, /* Lower bound on the range. ex: "x>123" Might be NULL */ WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */ WhereLoop *pLoop, /* Update the .nOut value of this loop */ int *pbDone /* Set to true if at least one expr. value extracted */ ){ Index *p = pLoop->u.btree.pIndex; int nEq = pLoop->u.btree.nEq; sqlite3 *db = pParse->db; int nLower = -1; int nUpper = p->nSample+1; int rc = SQLITE_OK; u8 aff = sqlite3IndexColumnAffinity(db, p, nEq); CollSeq *pColl; sqlite3_value *p1 = 0; /* Value extracted from pLower */ sqlite3_value *p2 = 0; /* Value extracted from pUpper */ sqlite3_value *pVal = 0; /* Value extracted from record */ pColl = sqlite3LocateCollSeq(pParse, p->azColl[nEq]); if( pLower ){ rc = sqlite3Stat4ValueFromExpr(pParse, pLower->pExpr->pRight, aff, &p1); nLower = 0; } if( pUpper && rc==SQLITE_OK ){ rc = sqlite3Stat4ValueFromExpr(pParse, pUpper->pExpr->pRight, aff, &p2); nUpper = p2 ? 0 : p->nSample; } if( p1 || p2 ){ int i; int nDiff; for(i=0; rc==SQLITE_OK && inSample; i++){ rc = sqlite3Stat4Column(db, p->aSample[i].p, p->aSample[i].n, nEq, &pVal); if( rc==SQLITE_OK && p1 ){ int res = sqlite3MemCompare(p1, pVal, pColl); if( res>=0 ) nLower++; } if( rc==SQLITE_OK && p2 ){ int res = sqlite3MemCompare(p2, pVal, pColl); if( res>=0 ) nUpper++; } } nDiff = (nUpper - nLower); if( nDiff<=0 ) nDiff = 1; /* If there is both an upper and lower bound specified, and the ** comparisons indicate that they are close together, use the fallback ** method (assume that the scan visits 1/64 of the rows) for estimating ** the number of rows visited. Otherwise, estimate the number of rows ** using the method described in the header comment for this function. */ if( nDiff!=1 || pUpper==0 || pLower==0 ){ int nAdjust = (sqlite3LogEst(p->nSample) - sqlite3LogEst(nDiff)); pLoop->nOut -= nAdjust; *pbDone = 1; WHERETRACE(0x10, ("range skip-scan regions: %u..%u adjust=%d est=%d\n", nLower, nUpper, nAdjust*-1, pLoop->nOut)); } }else{ assert( *pbDone==0 ); } sqlite3ValueFree(p1); sqlite3ValueFree(p2); sqlite3ValueFree(pVal); return rc; } #endif /* SQLITE_ENABLE_STAT4 */ /* ** This function is used to estimate the number of rows that will be visited ** by scanning an index for a range of values. The range may have an upper ** bound, a lower bound, or both. The WHERE clause terms that set the upper ** and lower bounds are represented by pLower and pUpper respectively. For ** example, assuming that index p is on t1(a): ** ** ... FROM t1 WHERE a > ? AND a < ? ... ** |_____| |_____| ** | | ** pLower pUpper ** ** If either of the upper or lower bound is not present, then NULL is passed in ** place of the corresponding WhereTerm. ** ** The value in (pBuilder->pNew->u.btree.nEq) is the number of the index ** column subject to the range constraint. Or, equivalently, the number of ** equality constraints optimized by the proposed index scan. For example, ** assuming index p is on t1(a, b), and the SQL query is: ** ** ... FROM t1 WHERE a = ? AND b > ? AND b < ? ... ** ** then nEq is set to 1 (as the range restricted column, b, is the second ** left-most column of the index). Or, if the query is: ** ** ... FROM t1 WHERE a > ? AND a < ? ... ** ** then nEq is set to 0. ** ** When this function is called, *pnOut is set to the sqlite3LogEst() of the ** number of rows that the index scan is expected to visit without ** considering the range constraints. If nEq is 0, then *pnOut is the number of ** rows in the index. Assuming no error occurs, *pnOut is adjusted (reduced) ** to account for the range constraints pLower and pUpper. ** ** In the absence of sqlite_stat4 ANALYZE data, or if such data cannot be ** used, a single range inequality reduces the search space by a factor of 4. ** and a pair of constraints (x>? AND x123" Might be NULL */ WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */ WhereLoop *pLoop /* Modify the .nOut and maybe .rRun fields */ ){ int rc = SQLITE_OK; int nOut = pLoop->nOut; LogEst nNew; #ifdef SQLITE_ENABLE_STAT4 Index *p = pLoop->u.btree.pIndex; int nEq = pLoop->u.btree.nEq; if( p->nSample>0 && ALWAYS(nEqnSampleCol) && OptimizationEnabled(pParse->db, SQLITE_Stat4) ){ if( nEq==pBuilder->nRecValid ){ UnpackedRecord *pRec = pBuilder->pRec; tRowcnt a[2]; int nBtm = pLoop->u.btree.nBtm; int nTop = pLoop->u.btree.nTop; /* Variable iLower will be set to the estimate of the number of rows in ** the index that are less than the lower bound of the range query. The ** lower bound being the concatenation of $P and $L, where $P is the ** key-prefix formed by the nEq values matched against the nEq left-most ** columns of the index, and $L is the value in pLower. ** ** Or, if pLower is NULL or $L cannot be extracted from it (because it ** is not a simple variable or literal value), the lower bound of the ** range is $P. Due to a quirk in the way whereKeyStats() works, even ** if $L is available, whereKeyStats() is called for both ($P) and ** ($P:$L) and the larger of the two returned values is used. ** ** Similarly, iUpper is to be set to the estimate of the number of rows ** less than the upper bound of the range query. Where the upper bound ** is either ($P) or ($P:$U). Again, even if $U is available, both values ** of iUpper are requested of whereKeyStats() and the smaller used. ** ** The number of rows between the two bounds is then just iUpper-iLower. */ tRowcnt iLower; /* Rows less than the lower bound */ tRowcnt iUpper; /* Rows less than the upper bound */ int iLwrIdx = -2; /* aSample[] for the lower bound */ int iUprIdx = -1; /* aSample[] for the upper bound */ if( pRec ){ testcase( pRec->nField!=pBuilder->nRecValid ); pRec->nField = pBuilder->nRecValid; } /* Determine iLower and iUpper using ($P) only. */ if( nEq==0 ){ iLower = 0; iUpper = p->nRowEst0; }else{ /* Note: this call could be optimized away - since the same values must ** have been requested when testing key $P in whereEqualScanEst(). */ whereKeyStats(pParse, p, pRec, 0, a); iLower = a[0]; iUpper = a[0] + a[1]; } assert( pLower==0 || (pLower->eOperator & (WO_GT|WO_GE))!=0 ); assert( pUpper==0 || (pUpper->eOperator & (WO_LT|WO_LE))!=0 ); assert( p->aSortOrder!=0 ); if( p->aSortOrder[nEq] ){ /* The roles of pLower and pUpper are swapped for a DESC index */ SWAP(WhereTerm*, pLower, pUpper); SWAP(int, nBtm, nTop); } /* If possible, improve on the iLower estimate using ($P:$L). */ if( pLower ){ int n; /* Values extracted from pExpr */ Expr *pExpr = pLower->pExpr->pRight; rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, nBtm, nEq, &n); if( rc==SQLITE_OK && n ){ tRowcnt iNew; u16 mask = WO_GT|WO_LE; if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT); iLwrIdx = whereKeyStats(pParse, p, pRec, 0, a); iNew = a[0] + ((pLower->eOperator & mask) ? a[1] : 0); if( iNew>iLower ) iLower = iNew; nOut--; pLower = 0; } } /* If possible, improve on the iUpper estimate using ($P:$U). */ if( pUpper ){ int n; /* Values extracted from pExpr */ Expr *pExpr = pUpper->pExpr->pRight; rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, nTop, nEq, &n); if( rc==SQLITE_OK && n ){ tRowcnt iNew; u16 mask = WO_GT|WO_LE; if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT); iUprIdx = whereKeyStats(pParse, p, pRec, 1, a); iNew = a[0] + ((pUpper->eOperator & mask) ? a[1] : 0); if( iNewpRec = pRec; if( rc==SQLITE_OK ){ if( iUpper>iLower ){ nNew = sqlite3LogEst(iUpper - iLower); /* TUNING: If both iUpper and iLower are derived from the same ** sample, then assume they are 4x more selective. This brings ** the estimated selectivity more in line with what it would be ** if estimated without the use of STAT4 tables. */ if( iLwrIdx==iUprIdx ) nNew -= 20; assert( 20==sqlite3LogEst(4) ); }else{ nNew = 10; assert( 10==sqlite3LogEst(2) ); } if( nNewwtFlags & TERM_VNULL)==0 ); nNew = whereRangeAdjust(pLower, nOut); nNew = whereRangeAdjust(pUpper, nNew); /* TUNING: If there is both an upper and lower limit and neither limit ** has an application-defined likelihood(), assume the range is ** reduced by an additional 75%. This means that, by default, an open-ended ** range query (e.g. col > ?) is assumed to match 1/4 of the rows in the ** index. While a closed range (e.g. col BETWEEN ? AND ?) is estimated to ** match 1/64 of the index. */ if( pLower && pLower->truthProb>0 && pUpper && pUpper->truthProb>0 ){ nNew -= 20; } nOut -= (pLower!=0) + (pUpper!=0); if( nNew<10 ) nNew = 10; if( nNewnOut>nOut ){ WHERETRACE(0x10,("Range scan lowers nOut from %d to %d\n", pLoop->nOut, nOut)); } #endif pLoop->nOut = (LogEst)nOut; return rc; } #ifdef SQLITE_ENABLE_STAT4 /* ** Estimate the number of rows that will be returned based on ** an equality constraint x=VALUE and where that VALUE occurs in ** the histogram data. This only works when x is the left-most ** column of an index and sqlite_stat4 histogram data is available ** for that index. When pExpr==NULL that means the constraint is ** "x IS NULL" instead of "x=VALUE". ** ** Write the estimated row count into *pnRow and return SQLITE_OK. ** If unable to make an estimate, leave *pnRow unchanged and return ** non-zero. ** ** This routine can fail if it is unable to load a collating sequence ** required for string comparison, or if unable to allocate memory ** for a UTF conversion required for comparison. The error is stored ** in the pParse structure. */ static int whereEqualScanEst( Parse *pParse, /* Parsing & code generating context */ WhereLoopBuilder *pBuilder, Expr *pExpr, /* Expression for VALUE in the x=VALUE constraint */ tRowcnt *pnRow /* Write the revised row estimate here */ ){ Index *p = pBuilder->pNew->u.btree.pIndex; int nEq = pBuilder->pNew->u.btree.nEq; UnpackedRecord *pRec = pBuilder->pRec; int rc; /* Subfunction return code */ tRowcnt a[2]; /* Statistics */ int bOk; assert( nEq>=1 ); assert( nEq<=p->nColumn ); assert( p->aSample!=0 ); assert( p->nSample>0 ); assert( pBuilder->nRecValidnRecValid<(nEq-1) ){ return SQLITE_NOTFOUND; } /* This is an optimization only. The call to sqlite3Stat4ProbeSetValue() ** below would return the same value. */ if( nEq>=p->nColumn ){ *pnRow = 1; return SQLITE_OK; } rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, 1, nEq-1, &bOk); pBuilder->pRec = pRec; if( rc!=SQLITE_OK ) return rc; if( bOk==0 ) return SQLITE_NOTFOUND; pBuilder->nRecValid = nEq; whereKeyStats(pParse, p, pRec, 0, a); WHERETRACE(0x10,("equality scan regions %s(%d): %d\n", p->zName, nEq-1, (int)a[1])); *pnRow = a[1]; return rc; } #endif /* SQLITE_ENABLE_STAT4 */ #ifdef SQLITE_ENABLE_STAT4 /* ** Estimate the number of rows that will be returned based on ** an IN constraint where the right-hand side of the IN operator ** is a list of values. Example: ** ** WHERE x IN (1,2,3,4) ** ** Write the estimated row count into *pnRow and return SQLITE_OK. ** If unable to make an estimate, leave *pnRow unchanged and return ** non-zero. ** ** This routine can fail if it is unable to load a collating sequence ** required for string comparison, or if unable to allocate memory ** for a UTF conversion required for comparison. The error is stored ** in the pParse structure. */ static int whereInScanEst( Parse *pParse, /* Parsing & code generating context */ WhereLoopBuilder *pBuilder, ExprList *pList, /* The value list on the RHS of "x IN (v1,v2,v3,...)" */ tRowcnt *pnRow /* Write the revised row estimate here */ ){ Index *p = pBuilder->pNew->u.btree.pIndex; i64 nRow0 = sqlite3LogEstToInt(p->aiRowLogEst[0]); int nRecValid = pBuilder->nRecValid; int rc = SQLITE_OK; /* Subfunction return code */ tRowcnt nEst; /* Number of rows for a single term */ tRowcnt nRowEst = 0; /* New estimate of the number of rows */ int i; /* Loop counter */ assert( p->aSample!=0 ); for(i=0; rc==SQLITE_OK && inExpr; i++){ nEst = nRow0; rc = whereEqualScanEst(pParse, pBuilder, pList->a[i].pExpr, &nEst); nRowEst += nEst; pBuilder->nRecValid = nRecValid; } if( rc==SQLITE_OK ){ if( nRowEst > nRow0 ) nRowEst = nRow0; *pnRow = nRowEst; WHERETRACE(0x10,("IN row estimate: est=%d\n", nRowEst)); } assert( pBuilder->nRecValid==nRecValid ); return rc; } #endif /* SQLITE_ENABLE_STAT4 */ #ifdef WHERETRACE_ENABLED /* ** Print the content of a WhereTerm object */ SQLITE_PRIVATE void sqlite3WhereTermPrint(WhereTerm *pTerm, int iTerm){ if( pTerm==0 ){ sqlite3DebugPrintf("TERM-%-3d NULL\n", iTerm); }else{ char zType[8]; char zLeft[50]; memcpy(zType, "....", 5); if( pTerm->wtFlags & TERM_VIRTUAL ) zType[0] = 'V'; if( pTerm->eOperator & WO_EQUIV ) zType[1] = 'E'; if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) zType[2] = 'L'; if( pTerm->wtFlags & TERM_CODED ) zType[3] = 'C'; if( pTerm->eOperator & WO_SINGLE ){ assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 ); sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}", pTerm->leftCursor, pTerm->u.x.leftColumn); }else if( (pTerm->eOperator & WO_OR)!=0 && pTerm->u.pOrInfo!=0 ){ sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx", pTerm->u.pOrInfo->indexable); }else{ sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor); } sqlite3DebugPrintf( "TERM-%-3d %p %s %-12s op=%03x wtFlags=%04x", iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags); /* The 0x10000 .wheretrace flag causes extra information to be ** shown about each Term */ if( sqlite3WhereTrace & 0x10000 ){ sqlite3DebugPrintf(" prob=%-3d prereq=%llx,%llx", pTerm->truthProb, (u64)pTerm->prereqAll, (u64)pTerm->prereqRight); } if( (pTerm->eOperator & (WO_OR|WO_AND))==0 && pTerm->u.x.iField ){ sqlite3DebugPrintf(" iField=%d", pTerm->u.x.iField); } if( pTerm->iParent>=0 ){ sqlite3DebugPrintf(" iParent=%d", pTerm->iParent); } sqlite3DebugPrintf("\n"); sqlite3TreeViewExpr(0, pTerm->pExpr, 0); } } #endif #ifdef WHERETRACE_ENABLED /* ** Show the complete content of a WhereClause */ SQLITE_PRIVATE void sqlite3WhereClausePrint(WhereClause *pWC){ int i; for(i=0; inTerm; i++){ sqlite3WhereTermPrint(&pWC->a[i], i); } } #endif #ifdef WHERETRACE_ENABLED /* ** Print a WhereLoop object for debugging purposes */ SQLITE_PRIVATE void sqlite3WhereLoopPrint(WhereLoop *p, WhereClause *pWC){ WhereInfo *pWInfo = pWC->pWInfo; int nb = 1+(pWInfo->pTabList->nSrc+3)/4; SrcItem *pItem = pWInfo->pTabList->a + p->iTab; Table *pTab = pItem->pTab; Bitmask mAll = (((Bitmask)1)<<(nb*4)) - 1; sqlite3DebugPrintf("%c%2d.%0*llx.%0*llx", p->cId, p->iTab, nb, p->maskSelf, nb, p->prereq & mAll); sqlite3DebugPrintf(" %12s", pItem->zAlias ? pItem->zAlias : pTab->zName); if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){ const char *zName; if( p->u.btree.pIndex && (zName = p->u.btree.pIndex->zName)!=0 ){ if( strncmp(zName, "sqlite_autoindex_", 17)==0 ){ int i = sqlite3Strlen30(zName) - 1; while( zName[i]!='_' ) i--; zName += i; } sqlite3DebugPrintf(".%-16s %2d", zName, p->u.btree.nEq); }else{ sqlite3DebugPrintf("%20s",""); } }else{ char *z; if( p->u.vtab.idxStr ){ z = sqlite3_mprintf("(%d,\"%s\",%#x)", p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask); }else{ z = sqlite3_mprintf("(%d,%x)", p->u.vtab.idxNum, p->u.vtab.omitMask); } sqlite3DebugPrintf(" %-19s", z); sqlite3_free(z); } if( p->wsFlags & WHERE_SKIPSCAN ){ sqlite3DebugPrintf(" f %06x %d-%d", p->wsFlags, p->nLTerm,p->nSkip); }else{ sqlite3DebugPrintf(" f %06x N %d", p->wsFlags, p->nLTerm); } sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut); if( p->nLTerm && (sqlite3WhereTrace & 0x100)!=0 ){ int i; for(i=0; inLTerm; i++){ sqlite3WhereTermPrint(p->aLTerm[i], i); } } } #endif /* ** Convert bulk memory into a valid WhereLoop that can be passed ** to whereLoopClear harmlessly. */ static void whereLoopInit(WhereLoop *p){ p->aLTerm = p->aLTermSpace; p->nLTerm = 0; p->nLSlot = ArraySize(p->aLTermSpace); p->wsFlags = 0; } /* ** Clear the WhereLoop.u union. Leave WhereLoop.pLTerm intact. */ static void whereLoopClearUnion(sqlite3 *db, WhereLoop *p){ if( p->wsFlags & (WHERE_VIRTUALTABLE|WHERE_AUTO_INDEX) ){ if( (p->wsFlags & WHERE_VIRTUALTABLE)!=0 && p->u.vtab.needFree ){ sqlite3_free(p->u.vtab.idxStr); p->u.vtab.needFree = 0; p->u.vtab.idxStr = 0; }else if( (p->wsFlags & WHERE_AUTO_INDEX)!=0 && p->u.btree.pIndex!=0 ){ sqlite3DbFree(db, p->u.btree.pIndex->zColAff); sqlite3DbFreeNN(db, p->u.btree.pIndex); p->u.btree.pIndex = 0; } } } /* ** Deallocate internal memory used by a WhereLoop object */ static void whereLoopClear(sqlite3 *db, WhereLoop *p){ if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFreeNN(db, p->aLTerm); whereLoopClearUnion(db, p); whereLoopInit(p); } /* ** Increase the memory allocation for pLoop->aLTerm[] to be at least n. */ static int whereLoopResize(sqlite3 *db, WhereLoop *p, int n){ WhereTerm **paNew; if( p->nLSlot>=n ) return SQLITE_OK; n = (n+7)&~7; paNew = sqlite3DbMallocRawNN(db, sizeof(p->aLTerm[0])*n); if( paNew==0 ) return SQLITE_NOMEM_BKPT; memcpy(paNew, p->aLTerm, sizeof(p->aLTerm[0])*p->nLSlot); if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFreeNN(db, p->aLTerm); p->aLTerm = paNew; p->nLSlot = n; return SQLITE_OK; } /* ** Transfer content from the second pLoop into the first. */ static int whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom){ whereLoopClearUnion(db, pTo); if( whereLoopResize(db, pTo, pFrom->nLTerm) ){ memset(pTo, 0, WHERE_LOOP_XFER_SZ); return SQLITE_NOMEM_BKPT; } memcpy(pTo, pFrom, WHERE_LOOP_XFER_SZ); memcpy(pTo->aLTerm, pFrom->aLTerm, pTo->nLTerm*sizeof(pTo->aLTerm[0])); if( pFrom->wsFlags & WHERE_VIRTUALTABLE ){ pFrom->u.vtab.needFree = 0; }else if( (pFrom->wsFlags & WHERE_AUTO_INDEX)!=0 ){ pFrom->u.btree.pIndex = 0; } return SQLITE_OK; } /* ** Delete a WhereLoop object */ static void whereLoopDelete(sqlite3 *db, WhereLoop *p){ whereLoopClear(db, p); sqlite3DbFreeNN(db, p); } /* ** Free a WhereInfo structure */ static void whereInfoFree(sqlite3 *db, WhereInfo *pWInfo){ int i; assert( pWInfo!=0 ); for(i=0; inLevel; i++){ WhereLevel *pLevel = &pWInfo->a[i]; if( pLevel->pWLoop && (pLevel->pWLoop->wsFlags & WHERE_IN_ABLE)!=0 ){ assert( (pLevel->pWLoop->wsFlags & WHERE_MULTI_OR)==0 ); sqlite3DbFree(db, pLevel->u.in.aInLoop); } } sqlite3WhereClauseClear(&pWInfo->sWC); while( pWInfo->pLoops ){ WhereLoop *p = pWInfo->pLoops; pWInfo->pLoops = p->pNextLoop; whereLoopDelete(db, p); } assert( pWInfo->pExprMods==0 ); sqlite3DbFreeNN(db, pWInfo); } /* Undo all Expr node modifications */ static void whereUndoExprMods(WhereInfo *pWInfo){ while( pWInfo->pExprMods ){ WhereExprMod *p = pWInfo->pExprMods; pWInfo->pExprMods = p->pNext; memcpy(p->pExpr, &p->orig, sizeof(p->orig)); sqlite3DbFree(pWInfo->pParse->db, p); } } /* ** Return TRUE if all of the following are true: ** ** (1) X has the same or lower cost, or returns the same or fewer rows, ** than Y. ** (2) X uses fewer WHERE clause terms than Y ** (3) Every WHERE clause term used by X is also used by Y ** (4) X skips at least as many columns as Y ** (5) If X is a covering index, than Y is too ** ** Conditions (2) and (3) mean that X is a "proper subset" of Y. ** If X is a proper subset of Y then Y is a better choice and ought ** to have a lower cost. This routine returns TRUE when that cost ** relationship is inverted and needs to be adjusted. Constraint (4) ** was added because if X uses skip-scan less than Y it still might ** deserve a lower cost even if it is a proper subset of Y. Constraint (5) ** was added because a covering index probably deserves to have a lower cost ** than a non-covering index even if it is a proper subset. */ static int whereLoopCheaperProperSubset( const WhereLoop *pX, /* First WhereLoop to compare */ const WhereLoop *pY /* Compare against this WhereLoop */ ){ int i, j; if( pX->nLTerm-pX->nSkip >= pY->nLTerm-pY->nSkip ){ return 0; /* X is not a subset of Y */ } if( pX->rRun>pY->rRun && pX->nOut>pY->nOut ) return 0; if( pY->nSkip > pX->nSkip ) return 0; for(i=pX->nLTerm-1; i>=0; i--){ if( pX->aLTerm[i]==0 ) continue; for(j=pY->nLTerm-1; j>=0; j--){ if( pY->aLTerm[j]==pX->aLTerm[i] ) break; } if( j<0 ) return 0; /* X not a subset of Y since term X[i] not used by Y */ } if( (pX->wsFlags&WHERE_IDX_ONLY)!=0 && (pY->wsFlags&WHERE_IDX_ONLY)==0 ){ return 0; /* Constraint (5) */ } return 1; /* All conditions meet */ } /* ** Try to adjust the cost and number of output rows of WhereLoop pTemplate ** upwards or downwards so that: ** ** (1) pTemplate costs less than any other WhereLoops that are a proper ** subset of pTemplate ** ** (2) pTemplate costs more than any other WhereLoops for which pTemplate ** is a proper subset. ** ** To say "WhereLoop X is a proper subset of Y" means that X uses fewer ** WHERE clause terms than Y and that every WHERE clause term used by X is ** also used by Y. */ static void whereLoopAdjustCost(const WhereLoop *p, WhereLoop *pTemplate){ if( (pTemplate->wsFlags & WHERE_INDEXED)==0 ) return; for(; p; p=p->pNextLoop){ if( p->iTab!=pTemplate->iTab ) continue; if( (p->wsFlags & WHERE_INDEXED)==0 ) continue; if( whereLoopCheaperProperSubset(p, pTemplate) ){ /* Adjust pTemplate cost downward so that it is cheaper than its ** subset p. */ WHERETRACE(0x80,("subset cost adjustment %d,%d to %d,%d\n", pTemplate->rRun, pTemplate->nOut, MIN(p->rRun, pTemplate->rRun), MIN(p->nOut - 1, pTemplate->nOut))); pTemplate->rRun = MIN(p->rRun, pTemplate->rRun); pTemplate->nOut = MIN(p->nOut - 1, pTemplate->nOut); }else if( whereLoopCheaperProperSubset(pTemplate, p) ){ /* Adjust pTemplate cost upward so that it is costlier than p since ** pTemplate is a proper subset of p */ WHERETRACE(0x80,("subset cost adjustment %d,%d to %d,%d\n", pTemplate->rRun, pTemplate->nOut, MAX(p->rRun, pTemplate->rRun), MAX(p->nOut + 1, pTemplate->nOut))); pTemplate->rRun = MAX(p->rRun, pTemplate->rRun); pTemplate->nOut = MAX(p->nOut + 1, pTemplate->nOut); } } } /* ** Search the list of WhereLoops in *ppPrev looking for one that can be ** replaced by pTemplate. ** ** Return NULL if pTemplate does not belong on the WhereLoop list. ** In other words if pTemplate ought to be dropped from further consideration. ** ** If pX is a WhereLoop that pTemplate can replace, then return the ** link that points to pX. ** ** If pTemplate cannot replace any existing element of the list but needs ** to be added to the list as a new entry, then return a pointer to the ** tail of the list. */ static WhereLoop **whereLoopFindLesser( WhereLoop **ppPrev, const WhereLoop *pTemplate ){ WhereLoop *p; for(p=(*ppPrev); p; ppPrev=&p->pNextLoop, p=*ppPrev){ if( p->iTab!=pTemplate->iTab || p->iSortIdx!=pTemplate->iSortIdx ){ /* If either the iTab or iSortIdx values for two WhereLoop are different ** then those WhereLoops need to be considered separately. Neither is ** a candidate to replace the other. */ continue; } /* In the current implementation, the rSetup value is either zero ** or the cost of building an automatic index (NlogN) and the NlogN ** is the same for compatible WhereLoops. */ assert( p->rSetup==0 || pTemplate->rSetup==0 || p->rSetup==pTemplate->rSetup ); /* whereLoopAddBtree() always generates and inserts the automatic index ** case first. Hence compatible candidate WhereLoops never have a larger ** rSetup. Call this SETUP-INVARIANT */ assert( p->rSetup>=pTemplate->rSetup ); /* Any loop using an appliation-defined index (or PRIMARY KEY or ** UNIQUE constraint) with one or more == constraints is better ** than an automatic index. Unless it is a skip-scan. */ if( (p->wsFlags & WHERE_AUTO_INDEX)!=0 && (pTemplate->nSkip)==0 && (pTemplate->wsFlags & WHERE_INDEXED)!=0 && (pTemplate->wsFlags & WHERE_COLUMN_EQ)!=0 && (p->prereq & pTemplate->prereq)==pTemplate->prereq ){ break; } /* If existing WhereLoop p is better than pTemplate, pTemplate can be ** discarded. WhereLoop p is better if: ** (1) p has no more dependencies than pTemplate, and ** (2) p has an equal or lower cost than pTemplate */ if( (p->prereq & pTemplate->prereq)==p->prereq /* (1) */ && p->rSetup<=pTemplate->rSetup /* (2a) */ && p->rRun<=pTemplate->rRun /* (2b) */ && p->nOut<=pTemplate->nOut /* (2c) */ ){ return 0; /* Discard pTemplate */ } /* If pTemplate is always better than p, then cause p to be overwritten ** with pTemplate. pTemplate is better than p if: ** (1) pTemplate has no more dependences than p, and ** (2) pTemplate has an equal or lower cost than p. */ if( (p->prereq & pTemplate->prereq)==pTemplate->prereq /* (1) */ && p->rRun>=pTemplate->rRun /* (2a) */ && p->nOut>=pTemplate->nOut /* (2b) */ ){ assert( p->rSetup>=pTemplate->rSetup ); /* SETUP-INVARIANT above */ break; /* Cause p to be overwritten by pTemplate */ } } return ppPrev; } /* ** Insert or replace a WhereLoop entry using the template supplied. ** ** An existing WhereLoop entry might be overwritten if the new template ** is better and has fewer dependencies. Or the template will be ignored ** and no insert will occur if an existing WhereLoop is faster and has ** fewer dependencies than the template. Otherwise a new WhereLoop is ** added based on the template. ** ** If pBuilder->pOrSet is not NULL then we care about only the ** prerequisites and rRun and nOut costs of the N best loops. That ** information is gathered in the pBuilder->pOrSet object. This special ** processing mode is used only for OR clause processing. ** ** When accumulating multiple loops (when pBuilder->pOrSet is NULL) we ** still might overwrite similar loops with the new template if the ** new template is better. Loops may be overwritten if the following ** conditions are met: ** ** (1) They have the same iTab. ** (2) They have the same iSortIdx. ** (3) The template has same or fewer dependencies than the current loop ** (4) The template has the same or lower cost than the current loop */ static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){ WhereLoop **ppPrev, *p; WhereInfo *pWInfo = pBuilder->pWInfo; sqlite3 *db = pWInfo->pParse->db; int rc; /* Stop the search once we hit the query planner search limit */ if( pBuilder->iPlanLimit==0 ){ WHERETRACE(0xffffffff,("=== query planner search limit reached ===\n")); if( pBuilder->pOrSet ) pBuilder->pOrSet->n = 0; return SQLITE_DONE; } pBuilder->iPlanLimit--; whereLoopAdjustCost(pWInfo->pLoops, pTemplate); /* If pBuilder->pOrSet is defined, then only keep track of the costs ** and prereqs. */ if( pBuilder->pOrSet!=0 ){ if( pTemplate->nLTerm ){ #if WHERETRACE_ENABLED u16 n = pBuilder->pOrSet->n; int x = #endif whereOrInsert(pBuilder->pOrSet, pTemplate->prereq, pTemplate->rRun, pTemplate->nOut); #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ sqlite3DebugPrintf(x?" or-%d: ":" or-X: ", n); sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC); } #endif } return SQLITE_OK; } /* Look for an existing WhereLoop to replace with pTemplate */ ppPrev = whereLoopFindLesser(&pWInfo->pLoops, pTemplate); if( ppPrev==0 ){ /* There already exists a WhereLoop on the list that is better ** than pTemplate, so just ignore pTemplate */ #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ sqlite3DebugPrintf(" skip: "); sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC); } #endif return SQLITE_OK; }else{ p = *ppPrev; } /* If we reach this point it means that either p[] should be overwritten ** with pTemplate[] if p[] exists, or if p==NULL then allocate a new ** WhereLoop and insert it. */ #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ if( p!=0 ){ sqlite3DebugPrintf("replace: "); sqlite3WhereLoopPrint(p, pBuilder->pWC); sqlite3DebugPrintf(" with: "); }else{ sqlite3DebugPrintf(" add: "); } sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC); } #endif if( p==0 ){ /* Allocate a new WhereLoop to add to the end of the list */ *ppPrev = p = sqlite3DbMallocRawNN(db, sizeof(WhereLoop)); if( p==0 ) return SQLITE_NOMEM_BKPT; whereLoopInit(p); p->pNextLoop = 0; }else{ /* We will be overwriting WhereLoop p[]. But before we do, first ** go through the rest of the list and delete any other entries besides ** p[] that are also supplated by pTemplate */ WhereLoop **ppTail = &p->pNextLoop; WhereLoop *pToDel; while( *ppTail ){ ppTail = whereLoopFindLesser(ppTail, pTemplate); if( ppTail==0 ) break; pToDel = *ppTail; if( pToDel==0 ) break; *ppTail = pToDel->pNextLoop; #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ sqlite3DebugPrintf(" delete: "); sqlite3WhereLoopPrint(pToDel, pBuilder->pWC); } #endif whereLoopDelete(db, pToDel); } } rc = whereLoopXfer(db, p, pTemplate); if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){ Index *pIndex = p->u.btree.pIndex; if( pIndex && pIndex->idxType==SQLITE_IDXTYPE_IPK ){ p->u.btree.pIndex = 0; } } return rc; } /* ** Adjust the WhereLoop.nOut value downward to account for terms of the ** WHERE clause that reference the loop but which are not used by an ** index. * ** For every WHERE clause term that is not used by the index ** and which has a truth probability assigned by one of the likelihood(), ** likely(), or unlikely() SQL functions, reduce the estimated number ** of output rows by the probability specified. ** ** TUNING: For every WHERE clause term that is not used by the index ** and which does not have an assigned truth probability, heuristics ** described below are used to try to estimate the truth probability. ** TODO --> Perhaps this is something that could be improved by better ** table statistics. ** ** Heuristic 1: Estimate the truth probability as 93.75%. The 93.75% ** value corresponds to -1 in LogEst notation, so this means decrement ** the WhereLoop.nOut field for every such WHERE clause term. ** ** Heuristic 2: If there exists one or more WHERE clause terms of the ** form "x==EXPR" and EXPR is not a constant 0 or 1, then make sure the ** final output row estimate is no greater than 1/4 of the total number ** of rows in the table. In other words, assume that x==EXPR will filter ** out at least 3 out of 4 rows. If EXPR is -1 or 0 or 1, then maybe the ** "x" column is boolean or else -1 or 0 or 1 is a common default value ** on the "x" column and so in that case only cap the output row estimate ** at 1/2 instead of 1/4. */ static void whereLoopOutputAdjust( WhereClause *pWC, /* The WHERE clause */ WhereLoop *pLoop, /* The loop to adjust downward */ LogEst nRow /* Number of rows in the entire table */ ){ WhereTerm *pTerm, *pX; Bitmask notAllowed = ~(pLoop->prereq|pLoop->maskSelf); int i, j; LogEst iReduce = 0; /* pLoop->nOut should not exceed nRow-iReduce */ assert( (pLoop->wsFlags & WHERE_AUTO_INDEX)==0 ); for(i=pWC->nBase, pTerm=pWC->a; i>0; i--, pTerm++){ assert( pTerm!=0 ); if( (pTerm->prereqAll & notAllowed)!=0 ) continue; if( (pTerm->prereqAll & pLoop->maskSelf)==0 ) continue; if( (pTerm->wtFlags & TERM_VIRTUAL)!=0 ) continue; for(j=pLoop->nLTerm-1; j>=0; j--){ pX = pLoop->aLTerm[j]; if( pX==0 ) continue; if( pX==pTerm ) break; if( pX->iParent>=0 && (&pWC->a[pX->iParent])==pTerm ) break; } if( j<0 ){ if( pLoop->maskSelf==pTerm->prereqAll ){ /* If there are extra terms in the WHERE clause not used by an index ** that depend only on the table being scanned, and that will tend to ** cause many rows to be omitted, then mark that table as ** "self-culling". */ pLoop->wsFlags |= WHERE_SELFCULL; } if( pTerm->truthProb<=0 ){ /* If a truth probability is specified using the likelihood() hints, ** then use the probability provided by the application. */ pLoop->nOut += pTerm->truthProb; }else{ /* In the absence of explicit truth probabilities, use heuristics to ** guess a reasonable truth probability. */ pLoop->nOut--; if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 && (pTerm->wtFlags & TERM_HIGHTRUTH)==0 /* tag-20200224-1 */ ){ Expr *pRight = pTerm->pExpr->pRight; int k = 0; testcase( pTerm->pExpr->op==TK_IS ); if( sqlite3ExprIsInteger(pRight, &k) && k>=(-1) && k<=1 ){ k = 10; }else{ k = 20; } if( iReducewtFlags |= TERM_HEURTRUTH; iReduce = k; } } } } } if( pLoop->nOut > nRow-iReduce ){ pLoop->nOut = nRow - iReduce; } } /* ** Term pTerm is a vector range comparison operation. The first comparison ** in the vector can be optimized using column nEq of the index. This ** function returns the total number of vector elements that can be used ** as part of the range comparison. ** ** For example, if the query is: ** ** WHERE a = ? AND (b, c, d) > (?, ?, ?) ** ** and the index: ** ** CREATE INDEX ... ON (a, b, c, d, e) ** ** then this function would be invoked with nEq=1. The value returned in ** this case is 3. */ static int whereRangeVectorLen( Parse *pParse, /* Parsing context */ int iCur, /* Cursor open on pIdx */ Index *pIdx, /* The index to be used for a inequality constraint */ int nEq, /* Number of prior equality constraints on same index */ WhereTerm *pTerm /* The vector inequality constraint */ ){ int nCmp = sqlite3ExprVectorSize(pTerm->pExpr->pLeft); int i; nCmp = MIN(nCmp, (pIdx->nColumn - nEq)); for(i=1; ipExpr->pLeft) ); pLhs = pTerm->pExpr->pLeft->x.pList->a[i].pExpr; pRhs = pTerm->pExpr->pRight; if( ExprUseXSelect(pRhs) ){ pRhs = pRhs->x.pSelect->pEList->a[i].pExpr; }else{ pRhs = pRhs->x.pList->a[i].pExpr; } /* Check that the LHS of the comparison is a column reference to ** the right column of the right source table. And that the sort ** order of the index column is the same as the sort order of the ** leftmost index column. */ if( pLhs->op!=TK_COLUMN || pLhs->iTable!=iCur || pLhs->iColumn!=pIdx->aiColumn[i+nEq] || pIdx->aSortOrder[i+nEq]!=pIdx->aSortOrder[nEq] ){ break; } testcase( pLhs->iColumn==XN_ROWID ); aff = sqlite3CompareAffinity(pRhs, sqlite3ExprAffinity(pLhs)); idxaff = sqlite3TableColumnAffinity(pIdx->pTable, pLhs->iColumn); if( aff!=idxaff ) break; pColl = sqlite3BinaryCompareCollSeq(pParse, pLhs, pRhs); if( pColl==0 ) break; if( sqlite3StrICmp(pColl->zName, pIdx->azColl[i+nEq]) ) break; } return i; } /* ** Adjust the cost C by the costMult facter T. This only occurs if ** compiled with -DSQLITE_ENABLE_COSTMULT */ #ifdef SQLITE_ENABLE_COSTMULT # define ApplyCostMultiplier(C,T) C += T #else # define ApplyCostMultiplier(C,T) #endif /* ** We have so far matched pBuilder->pNew->u.btree.nEq terms of the ** index pIndex. Try to match one more. ** ** When this function is called, pBuilder->pNew->nOut contains the ** number of rows expected to be visited by filtering using the nEq ** terms only. If it is modified, this value is restored before this ** function returns. ** ** If pProbe->idxType==SQLITE_IDXTYPE_IPK, that means pIndex is ** a fake index used for the INTEGER PRIMARY KEY. */ static int whereLoopAddBtreeIndex( WhereLoopBuilder *pBuilder, /* The WhereLoop factory */ SrcItem *pSrc, /* FROM clause term being analyzed */ Index *pProbe, /* An index on pSrc */ LogEst nInMul /* log(Number of iterations due to IN) */ ){ WhereInfo *pWInfo = pBuilder->pWInfo; /* WHERE analyse context */ Parse *pParse = pWInfo->pParse; /* Parsing context */ sqlite3 *db = pParse->db; /* Database connection malloc context */ WhereLoop *pNew; /* Template WhereLoop under construction */ WhereTerm *pTerm; /* A WhereTerm under consideration */ int opMask; /* Valid operators for constraints */ WhereScan scan; /* Iterator for WHERE terms */ Bitmask saved_prereq; /* Original value of pNew->prereq */ u16 saved_nLTerm; /* Original value of pNew->nLTerm */ u16 saved_nEq; /* Original value of pNew->u.btree.nEq */ u16 saved_nBtm; /* Original value of pNew->u.btree.nBtm */ u16 saved_nTop; /* Original value of pNew->u.btree.nTop */ u16 saved_nSkip; /* Original value of pNew->nSkip */ u32 saved_wsFlags; /* Original value of pNew->wsFlags */ LogEst saved_nOut; /* Original value of pNew->nOut */ int rc = SQLITE_OK; /* Return code */ LogEst rSize; /* Number of rows in the table */ LogEst rLogSize; /* Logarithm of table size */ WhereTerm *pTop = 0, *pBtm = 0; /* Top and bottom range constraints */ pNew = pBuilder->pNew; if( db->mallocFailed ) return SQLITE_NOMEM_BKPT; WHERETRACE(0x800, ("BEGIN %s.addBtreeIdx(%s), nEq=%d, nSkip=%d, rRun=%d\n", pProbe->pTable->zName,pProbe->zName, pNew->u.btree.nEq, pNew->nSkip, pNew->rRun)); assert( (pNew->wsFlags & WHERE_VIRTUALTABLE)==0 ); assert( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 ); if( pNew->wsFlags & WHERE_BTM_LIMIT ){ opMask = WO_LT|WO_LE; }else{ assert( pNew->u.btree.nBtm==0 ); opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE|WO_ISNULL|WO_IS; } if( pProbe->bUnordered ) opMask &= ~(WO_GT|WO_GE|WO_LT|WO_LE); assert( pNew->u.btree.nEqnColumn ); assert( pNew->u.btree.nEqnKeyCol || pProbe->idxType!=SQLITE_IDXTYPE_PRIMARYKEY ); saved_nEq = pNew->u.btree.nEq; saved_nBtm = pNew->u.btree.nBtm; saved_nTop = pNew->u.btree.nTop; saved_nSkip = pNew->nSkip; saved_nLTerm = pNew->nLTerm; saved_wsFlags = pNew->wsFlags; saved_prereq = pNew->prereq; saved_nOut = pNew->nOut; pTerm = whereScanInit(&scan, pBuilder->pWC, pSrc->iCursor, saved_nEq, opMask, pProbe); pNew->rSetup = 0; rSize = pProbe->aiRowLogEst[0]; rLogSize = estLog(rSize); for(; rc==SQLITE_OK && pTerm!=0; pTerm = whereScanNext(&scan)){ u16 eOp = pTerm->eOperator; /* Shorthand for pTerm->eOperator */ LogEst rCostIdx; LogEst nOutUnadjusted; /* nOut before IN() and WHERE adjustments */ int nIn = 0; #ifdef SQLITE_ENABLE_STAT4 int nRecValid = pBuilder->nRecValid; #endif if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0) && indexColumnNotNull(pProbe, saved_nEq) ){ continue; /* ignore IS [NOT] NULL constraints on NOT NULL columns */ } if( pTerm->prereqRight & pNew->maskSelf ) continue; /* Do not allow the upper bound of a LIKE optimization range constraint ** to mix with a lower range bound from some other source */ if( pTerm->wtFlags & TERM_LIKEOPT && pTerm->eOperator==WO_LT ) continue; /* tag-20191211-001: Do not allow constraints from the WHERE clause to ** be used by the right table of a LEFT JOIN. Only constraints in the ** ON clause are allowed. See tag-20191211-002 for the vtab equivalent. */ if( (pSrc->fg.jointype & JT_LEFT)!=0 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) ){ continue; } if( IsUniqueIndex(pProbe) && saved_nEq==pProbe->nKeyCol-1 ){ pBuilder->bldFlags1 |= SQLITE_BLDF1_UNIQUE; }else{ pBuilder->bldFlags1 |= SQLITE_BLDF1_INDEXED; } pNew->wsFlags = saved_wsFlags; pNew->u.btree.nEq = saved_nEq; pNew->u.btree.nBtm = saved_nBtm; pNew->u.btree.nTop = saved_nTop; pNew->nLTerm = saved_nLTerm; if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */ pNew->aLTerm[pNew->nLTerm++] = pTerm; pNew->prereq = (saved_prereq | pTerm->prereqRight) & ~pNew->maskSelf; assert( nInMul==0 || (pNew->wsFlags & WHERE_COLUMN_NULL)!=0 || (pNew->wsFlags & WHERE_COLUMN_IN)!=0 || (pNew->wsFlags & WHERE_SKIPSCAN)!=0 ); if( eOp & WO_IN ){ Expr *pExpr = pTerm->pExpr; if( ExprUseXSelect(pExpr) ){ /* "x IN (SELECT ...)": TUNING: the SELECT returns 25 rows */ int i; nIn = 46; assert( 46==sqlite3LogEst(25) ); /* The expression may actually be of the form (x, y) IN (SELECT...). ** In this case there is a separate term for each of (x) and (y). ** However, the nIn multiplier should only be applied once, not once ** for each such term. The following loop checks that pTerm is the ** first such term in use, and sets nIn back to 0 if it is not. */ for(i=0; inLTerm-1; i++){ if( pNew->aLTerm[i] && pNew->aLTerm[i]->pExpr==pExpr ) nIn = 0; } }else if( ALWAYS(pExpr->x.pList && pExpr->x.pList->nExpr) ){ /* "x IN (value, value, ...)" */ nIn = sqlite3LogEst(pExpr->x.pList->nExpr); } if( pProbe->hasStat1 && rLogSize>=10 ){ LogEst M, logK, x; /* Let: ** N = the total number of rows in the table ** K = the number of entries on the RHS of the IN operator ** M = the number of rows in the table that match terms to the ** to the left in the same index. If the IN operator is on ** the left-most index column, M==N. ** ** Given the definitions above, it is better to omit the IN operator ** from the index lookup and instead do a scan of the M elements, ** testing each scanned row against the IN operator separately, if: ** ** M*log(K) < K*log(N) ** ** Our estimates for M, K, and N might be inaccurate, so we build in ** a safety margin of 2 (LogEst: 10) that favors using the IN operator ** with the index, as using an index has better worst-case behavior. ** If we do not have real sqlite_stat1 data, always prefer to use ** the index. Do not bother with this optimization on very small ** tables (less than 2 rows) as it is pointless in that case. */ M = pProbe->aiRowLogEst[saved_nEq]; logK = estLog(nIn); /* TUNING v----- 10 to bias toward indexed IN */ x = M + logK + 10 - (nIn + rLogSize); if( x>=0 ){ WHERETRACE(0x40, ("IN operator (N=%d M=%d logK=%d nIn=%d rLogSize=%d x=%d) " "prefers indexed lookup\n", saved_nEq, M, logK, nIn, rLogSize, x)); }else if( nInMul<2 && OptimizationEnabled(db, SQLITE_SeekScan) ){ WHERETRACE(0x40, ("IN operator (N=%d M=%d logK=%d nIn=%d rLogSize=%d x=%d" " nInMul=%d) prefers skip-scan\n", saved_nEq, M, logK, nIn, rLogSize, x, nInMul)); pNew->wsFlags |= WHERE_IN_SEEKSCAN; }else{ WHERETRACE(0x40, ("IN operator (N=%d M=%d logK=%d nIn=%d rLogSize=%d x=%d" " nInMul=%d) prefers normal scan\n", saved_nEq, M, logK, nIn, rLogSize, x, nInMul)); continue; } } pNew->wsFlags |= WHERE_COLUMN_IN; }else if( eOp & (WO_EQ|WO_IS) ){ int iCol = pProbe->aiColumn[saved_nEq]; pNew->wsFlags |= WHERE_COLUMN_EQ; assert( saved_nEq==pNew->u.btree.nEq ); if( iCol==XN_ROWID || (iCol>=0 && nInMul==0 && saved_nEq==pProbe->nKeyCol-1) ){ if( iCol==XN_ROWID || pProbe->uniqNotNull || (pProbe->nKeyCol==1 && pProbe->onError && eOp==WO_EQ) ){ pNew->wsFlags |= WHERE_ONEROW; }else{ pNew->wsFlags |= WHERE_UNQ_WANTED; } } if( scan.iEquiv>1 ) pNew->wsFlags |= WHERE_TRANSCONS; }else if( eOp & WO_ISNULL ){ pNew->wsFlags |= WHERE_COLUMN_NULL; }else if( eOp & (WO_GT|WO_GE) ){ testcase( eOp & WO_GT ); testcase( eOp & WO_GE ); pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_BTM_LIMIT; pNew->u.btree.nBtm = whereRangeVectorLen( pParse, pSrc->iCursor, pProbe, saved_nEq, pTerm ); pBtm = pTerm; pTop = 0; if( pTerm->wtFlags & TERM_LIKEOPT ){ /* Range constraints that come from the LIKE optimization are ** always used in pairs. */ pTop = &pTerm[1]; assert( (pTop-(pTerm->pWC->a))pWC->nTerm ); assert( pTop->wtFlags & TERM_LIKEOPT ); assert( pTop->eOperator==WO_LT ); if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */ pNew->aLTerm[pNew->nLTerm++] = pTop; pNew->wsFlags |= WHERE_TOP_LIMIT; pNew->u.btree.nTop = 1; } }else{ assert( eOp & (WO_LT|WO_LE) ); testcase( eOp & WO_LT ); testcase( eOp & WO_LE ); pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_TOP_LIMIT; pNew->u.btree.nTop = whereRangeVectorLen( pParse, pSrc->iCursor, pProbe, saved_nEq, pTerm ); pTop = pTerm; pBtm = (pNew->wsFlags & WHERE_BTM_LIMIT)!=0 ? pNew->aLTerm[pNew->nLTerm-2] : 0; } /* At this point pNew->nOut is set to the number of rows expected to ** be visited by the index scan before considering term pTerm, or the ** values of nIn and nInMul. In other words, assuming that all ** "x IN(...)" terms are replaced with "x = ?". This block updates ** the value of pNew->nOut to account for pTerm (but not nIn/nInMul). */ assert( pNew->nOut==saved_nOut ); if( pNew->wsFlags & WHERE_COLUMN_RANGE ){ /* Adjust nOut using stat4 data. Or, if there is no stat4 ** data, using some other estimate. */ whereRangeScanEst(pParse, pBuilder, pBtm, pTop, pNew); }else{ int nEq = ++pNew->u.btree.nEq; assert( eOp & (WO_ISNULL|WO_EQ|WO_IN|WO_IS) ); assert( pNew->nOut==saved_nOut ); if( pTerm->truthProb<=0 && pProbe->aiColumn[saved_nEq]>=0 ){ assert( (eOp & WO_IN) || nIn==0 ); testcase( eOp & WO_IN ); pNew->nOut += pTerm->truthProb; pNew->nOut -= nIn; }else{ #ifdef SQLITE_ENABLE_STAT4 tRowcnt nOut = 0; if( nInMul==0 && pProbe->nSample && ALWAYS(pNew->u.btree.nEq<=pProbe->nSampleCol) && ((eOp & WO_IN)==0 || ExprUseXList(pTerm->pExpr)) && OptimizationEnabled(db, SQLITE_Stat4) ){ Expr *pExpr = pTerm->pExpr; if( (eOp & (WO_EQ|WO_ISNULL|WO_IS))!=0 ){ testcase( eOp & WO_EQ ); testcase( eOp & WO_IS ); testcase( eOp & WO_ISNULL ); rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut); }else{ rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut); } if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; if( rc!=SQLITE_OK ) break; /* Jump out of the pTerm loop */ if( nOut ){ pNew->nOut = sqlite3LogEst(nOut); if( nEq==1 /* TUNING: Mark terms as "low selectivity" if they seem likely ** to be true for half or more of the rows in the table. ** See tag-202002240-1 */ && pNew->nOut+10 > pProbe->aiRowLogEst[0] ){ #if WHERETRACE_ENABLED /* 0x01 */ if( sqlite3WhereTrace & 0x01 ){ sqlite3DebugPrintf( "STAT4 determines term has low selectivity:\n"); sqlite3WhereTermPrint(pTerm, 999); } #endif pTerm->wtFlags |= TERM_HIGHTRUTH; if( pTerm->wtFlags & TERM_HEURTRUTH ){ /* If the term has previously been used with an assumption of ** higher selectivity, then set the flag to rerun the ** loop computations. */ pBuilder->bldFlags2 |= SQLITE_BLDF2_2NDPASS; } } if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut; pNew->nOut -= nIn; } } if( nOut==0 ) #endif { pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]); if( eOp & WO_ISNULL ){ /* TUNING: If there is no likelihood() value, assume that a ** "col IS NULL" expression matches twice as many rows ** as (col=?). */ pNew->nOut += 10; } } } } /* Set rCostIdx to the cost of visiting selected rows in index. Add ** it to pNew->rRun, which is currently set to the cost of the index ** seek only. Then, if this is a non-covering index, add the cost of ** visiting the rows in the main table. */ assert( pSrc->pTab->szTabRow>0 ); rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow; pNew->rRun = sqlite3LogEstAdd(rLogSize, rCostIdx); if( (pNew->wsFlags & (WHERE_IDX_ONLY|WHERE_IPK))==0 ){ pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16); } ApplyCostMultiplier(pNew->rRun, pProbe->pTable->costMult); nOutUnadjusted = pNew->nOut; pNew->rRun += nInMul + nIn; pNew->nOut += nInMul + nIn; whereLoopOutputAdjust(pBuilder->pWC, pNew, rSize); rc = whereLoopInsert(pBuilder, pNew); if( pNew->wsFlags & WHERE_COLUMN_RANGE ){ pNew->nOut = saved_nOut; }else{ pNew->nOut = nOutUnadjusted; } if( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 && pNew->u.btree.nEqnColumn && (pNew->u.btree.nEqnKeyCol || pProbe->idxType!=SQLITE_IDXTYPE_PRIMARYKEY) ){ whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nInMul+nIn); } pNew->nOut = saved_nOut; #ifdef SQLITE_ENABLE_STAT4 pBuilder->nRecValid = nRecValid; #endif } pNew->prereq = saved_prereq; pNew->u.btree.nEq = saved_nEq; pNew->u.btree.nBtm = saved_nBtm; pNew->u.btree.nTop = saved_nTop; pNew->nSkip = saved_nSkip; pNew->wsFlags = saved_wsFlags; pNew->nOut = saved_nOut; pNew->nLTerm = saved_nLTerm; /* Consider using a skip-scan if there are no WHERE clause constraints ** available for the left-most terms of the index, and if the average ** number of repeats in the left-most terms is at least 18. ** ** The magic number 18 is selected on the basis that scanning 17 rows ** is almost always quicker than an index seek (even though if the index ** contains fewer than 2^17 rows we assume otherwise in other parts of ** the code). And, even if it is not, it should not be too much slower. ** On the other hand, the extra seeks could end up being significantly ** more expensive. */ assert( 42==sqlite3LogEst(18) ); if( saved_nEq==saved_nSkip && saved_nEq+1nKeyCol && saved_nEq==pNew->nLTerm && pProbe->noSkipScan==0 && pProbe->hasStat1!=0 && OptimizationEnabled(db, SQLITE_SkipScan) && pProbe->aiRowLogEst[saved_nEq+1]>=42 /* TUNING: Minimum for skip-scan */ && (rc = whereLoopResize(db, pNew, pNew->nLTerm+1))==SQLITE_OK ){ LogEst nIter; pNew->u.btree.nEq++; pNew->nSkip++; pNew->aLTerm[pNew->nLTerm++] = 0; pNew->wsFlags |= WHERE_SKIPSCAN; nIter = pProbe->aiRowLogEst[saved_nEq] - pProbe->aiRowLogEst[saved_nEq+1]; pNew->nOut -= nIter; /* TUNING: Because uncertainties in the estimates for skip-scan queries, ** add a 1.375 fudge factor to make skip-scan slightly less likely. */ nIter += 5; whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nIter + nInMul); pNew->nOut = saved_nOut; pNew->u.btree.nEq = saved_nEq; pNew->nSkip = saved_nSkip; pNew->wsFlags = saved_wsFlags; } WHERETRACE(0x800, ("END %s.addBtreeIdx(%s), nEq=%d, rc=%d\n", pProbe->pTable->zName, pProbe->zName, saved_nEq, rc)); return rc; } /* ** Return True if it is possible that pIndex might be useful in ** implementing the ORDER BY clause in pBuilder. ** ** Return False if pBuilder does not contain an ORDER BY clause or ** if there is no way for pIndex to be useful in implementing that ** ORDER BY clause. */ static int indexMightHelpWithOrderBy( WhereLoopBuilder *pBuilder, Index *pIndex, int iCursor ){ ExprList *pOB; ExprList *aColExpr; int ii, jj; if( pIndex->bUnordered ) return 0; if( (pOB = pBuilder->pWInfo->pOrderBy)==0 ) return 0; for(ii=0; iinExpr; ii++){ Expr *pExpr = sqlite3ExprSkipCollateAndLikely(pOB->a[ii].pExpr); if( NEVER(pExpr==0) ) continue; if( pExpr->op==TK_COLUMN && pExpr->iTable==iCursor ){ if( pExpr->iColumn<0 ) return 1; for(jj=0; jjnKeyCol; jj++){ if( pExpr->iColumn==pIndex->aiColumn[jj] ) return 1; } }else if( (aColExpr = pIndex->aColExpr)!=0 ){ for(jj=0; jjnKeyCol; jj++){ if( pIndex->aiColumn[jj]!=XN_EXPR ) continue; if( sqlite3ExprCompareSkip(pExpr,aColExpr->a[jj].pExpr,iCursor)==0 ){ return 1; } } } } return 0; } /* Check to see if a partial index with pPartIndexWhere can be used ** in the current query. Return true if it can be and false if not. */ static int whereUsablePartialIndex( int iTab, /* The table for which we want an index */ int isLeft, /* True if iTab is the right table of a LEFT JOIN */ WhereClause *pWC, /* The WHERE clause of the query */ Expr *pWhere /* The WHERE clause from the partial index */ ){ int i; WhereTerm *pTerm; Parse *pParse = pWC->pWInfo->pParse; while( pWhere->op==TK_AND ){ if( !whereUsablePartialIndex(iTab,isLeft,pWC,pWhere->pLeft) ) return 0; pWhere = pWhere->pRight; } if( pParse->db->flags & SQLITE_EnableQPSG ) pParse = 0; for(i=0, pTerm=pWC->a; inTerm; i++, pTerm++){ Expr *pExpr; pExpr = pTerm->pExpr; if( (!ExprHasProperty(pExpr, EP_FromJoin) || pExpr->w.iRightJoinTable==iTab) && (isLeft==0 || ExprHasProperty(pExpr, EP_FromJoin)) && sqlite3ExprImpliesExpr(pParse, pExpr, pWhere, iTab) && (pTerm->wtFlags & TERM_VNULL)==0 ){ return 1; } } return 0; } /* ** Add all WhereLoop objects for a single table of the join where the table ** is identified by pBuilder->pNew->iTab. That table is guaranteed to be ** a b-tree table, not a virtual table. ** ** The costs (WhereLoop.rRun) of the b-tree loops added by this function ** are calculated as follows: ** ** For a full scan, assuming the table (or index) contains nRow rows: ** ** cost = nRow * 3.0 // full-table scan ** cost = nRow * K // scan of covering index ** cost = nRow * (K+3.0) // scan of non-covering index ** ** where K is a value between 1.1 and 3.0 set based on the relative ** estimated average size of the index and table records. ** ** For an index scan, where nVisit is the number of index rows visited ** by the scan, and nSeek is the number of seek operations required on ** the index b-tree: ** ** cost = nSeek * (log(nRow) + K * nVisit) // covering index ** cost = nSeek * (log(nRow) + (K+3.0) * nVisit) // non-covering index ** ** Normally, nSeek is 1. nSeek values greater than 1 come about if the ** WHERE clause includes "x IN (....)" terms used in place of "x=?". Or when ** implicit "x IN (SELECT x FROM tbl)" terms are added for skip-scans. ** ** The estimated values (nRow, nVisit, nSeek) often contain a large amount ** of uncertainty. For this reason, scoring is designed to pick plans that ** "do the least harm" if the estimates are inaccurate. For example, a ** log(nRow) factor is omitted from a non-covering index scan in order to ** bias the scoring in favor of using an index, since the worst-case ** performance of using an index is far better than the worst-case performance ** of a full table scan. */ static int whereLoopAddBtree( WhereLoopBuilder *pBuilder, /* WHERE clause information */ Bitmask mPrereq /* Extra prerequesites for using this table */ ){ WhereInfo *pWInfo; /* WHERE analysis context */ Index *pProbe; /* An index we are evaluating */ Index sPk; /* A fake index object for the primary key */ LogEst aiRowEstPk[2]; /* The aiRowLogEst[] value for the sPk index */ i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */ SrcList *pTabList; /* The FROM clause */ SrcItem *pSrc; /* The FROM clause btree term to add */ WhereLoop *pNew; /* Template WhereLoop object */ int rc = SQLITE_OK; /* Return code */ int iSortIdx = 1; /* Index number */ int b; /* A boolean value */ LogEst rSize; /* number of rows in the table */ WhereClause *pWC; /* The parsed WHERE clause */ Table *pTab; /* Table being queried */ pNew = pBuilder->pNew; pWInfo = pBuilder->pWInfo; pTabList = pWInfo->pTabList; pSrc = pTabList->a + pNew->iTab; pTab = pSrc->pTab; pWC = pBuilder->pWC; assert( !IsVirtual(pSrc->pTab) ); if( pSrc->fg.isIndexedBy ){ assert( pSrc->fg.isCte==0 ); /* An INDEXED BY clause specifies a particular index to use */ pProbe = pSrc->u2.pIBIndex; }else if( !HasRowid(pTab) ){ pProbe = pTab->pIndex; }else{ /* There is no INDEXED BY clause. Create a fake Index object in local ** variable sPk to represent the rowid primary key index. Make this ** fake index the first in a chain of Index objects with all of the real ** indices to follow */ Index *pFirst; /* First of real indices on the table */ memset(&sPk, 0, sizeof(Index)); sPk.nKeyCol = 1; sPk.nColumn = 1; sPk.aiColumn = &aiColumnPk; sPk.aiRowLogEst = aiRowEstPk; sPk.onError = OE_Replace; sPk.pTable = pTab; sPk.szIdxRow = pTab->szTabRow; sPk.idxType = SQLITE_IDXTYPE_IPK; aiRowEstPk[0] = pTab->nRowLogEst; aiRowEstPk[1] = 0; pFirst = pSrc->pTab->pIndex; if( pSrc->fg.notIndexed==0 ){ /* The real indices of the table are only considered if the ** NOT INDEXED qualifier is omitted from the FROM clause */ sPk.pNext = pFirst; } pProbe = &sPk; } rSize = pTab->nRowLogEst; #ifndef SQLITE_OMIT_AUTOMATIC_INDEX /* Automatic indexes */ if( !pBuilder->pOrSet /* Not part of an OR optimization */ && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 && (pWInfo->pParse->db->flags & SQLITE_AutoIndex)!=0 && !pSrc->fg.isIndexedBy /* Has no INDEXED BY clause */ && !pSrc->fg.notIndexed /* Has no NOT INDEXED clause */ && HasRowid(pTab) /* Not WITHOUT ROWID table. (FIXME: Why not?) */ && !pSrc->fg.isCorrelated /* Not a correlated subquery */ && !pSrc->fg.isRecursive /* Not a recursive common table expression. */ ){ /* Generate auto-index WhereLoops */ LogEst rLogSize; /* Logarithm of the number of rows in the table */ WhereTerm *pTerm; WhereTerm *pWCEnd = pWC->a + pWC->nTerm; rLogSize = estLog(rSize); for(pTerm=pWC->a; rc==SQLITE_OK && pTermprereqRight & pNew->maskSelf ) continue; if( termCanDriveIndex(pTerm, pSrc, 0) ){ pNew->u.btree.nEq = 1; pNew->nSkip = 0; pNew->u.btree.pIndex = 0; pNew->nLTerm = 1; pNew->aLTerm[0] = pTerm; /* TUNING: One-time cost for computing the automatic index is ** estimated to be X*N*log2(N) where N is the number of rows in ** the table being indexed and where X is 7 (LogEst=28) for normal ** tables or 0.5 (LogEst=-10) for views and subqueries. The value ** of X is smaller for views and subqueries so that the query planner ** will be more aggressive about generating automatic indexes for ** those objects, since there is no opportunity to add schema ** indexes on subqueries and views. */ pNew->rSetup = rLogSize + rSize; if( !IsView(pTab) && (pTab->tabFlags & TF_Ephemeral)==0 ){ pNew->rSetup += 28; }else{ pNew->rSetup -= 10; } ApplyCostMultiplier(pNew->rSetup, pTab->costMult); if( pNew->rSetup<0 ) pNew->rSetup = 0; /* TUNING: Each index lookup yields 20 rows in the table. This ** is more than the usual guess of 10 rows, since we have no way ** of knowing how selective the index will ultimately be. It would ** not be unreasonable to make this value much larger. */ pNew->nOut = 43; assert( 43==sqlite3LogEst(20) ); pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut); pNew->wsFlags = WHERE_AUTO_INDEX; pNew->prereq = mPrereq | pTerm->prereqRight; rc = whereLoopInsert(pBuilder, pNew); } } } #endif /* SQLITE_OMIT_AUTOMATIC_INDEX */ /* Loop over all indices. If there was an INDEXED BY clause, then only ** consider index pProbe. */ for(; rc==SQLITE_OK && pProbe; pProbe=(pSrc->fg.isIndexedBy ? 0 : pProbe->pNext), iSortIdx++ ){ int isLeft = (pSrc->fg.jointype & JT_OUTER)!=0; if( pProbe->pPartIdxWhere!=0 && !whereUsablePartialIndex(pSrc->iCursor, isLeft, pWC, pProbe->pPartIdxWhere) ){ testcase( pNew->iTab!=pSrc->iCursor ); /* See ticket [98d973b8f5] */ continue; /* Partial index inappropriate for this query */ } if( pProbe->bNoQuery ) continue; rSize = pProbe->aiRowLogEst[0]; pNew->u.btree.nEq = 0; pNew->u.btree.nBtm = 0; pNew->u.btree.nTop = 0; pNew->nSkip = 0; pNew->nLTerm = 0; pNew->iSortIdx = 0; pNew->rSetup = 0; pNew->prereq = mPrereq; pNew->nOut = rSize; pNew->u.btree.pIndex = pProbe; b = indexMightHelpWithOrderBy(pBuilder, pProbe, pSrc->iCursor); /* The ONEPASS_DESIRED flags never occurs together with ORDER BY */ assert( (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || b==0 ); if( pProbe->idxType==SQLITE_IDXTYPE_IPK ){ /* Integer primary key index */ pNew->wsFlags = WHERE_IPK; /* Full table scan */ pNew->iSortIdx = b ? iSortIdx : 0; /* TUNING: Cost of full table scan is 3.0*N. The 3.0 factor is an ** extra cost designed to discourage the use of full table scans, ** since index lookups have better worst-case performance if our ** stat guesses are wrong. Reduce the 3.0 penalty slightly ** (to 2.75) if we have valid STAT4 information for the table. ** At 2.75, a full table scan is preferred over using an index on ** a column with just two distinct values where each value has about ** an equal number of appearances. Without STAT4 data, we still want ** to use an index in that case, since the constraint might be for ** the scarcer of the two values, and in that case an index lookup is ** better. */ #ifdef SQLITE_ENABLE_STAT4 pNew->rRun = rSize + 16 - 2*((pTab->tabFlags & TF_HasStat4)!=0); #else pNew->rRun = rSize + 16; #endif ApplyCostMultiplier(pNew->rRun, pTab->costMult); whereLoopOutputAdjust(pWC, pNew, rSize); rc = whereLoopInsert(pBuilder, pNew); pNew->nOut = rSize; if( rc ) break; }else{ Bitmask m; if( pProbe->isCovering ){ pNew->wsFlags = WHERE_IDX_ONLY | WHERE_INDEXED; m = 0; }else{ m = pSrc->colUsed & pProbe->colNotIdxed; pNew->wsFlags = (m==0) ? (WHERE_IDX_ONLY|WHERE_INDEXED) : WHERE_INDEXED; } /* Full scan via index */ if( b || !HasRowid(pTab) || pProbe->pPartIdxWhere!=0 || pSrc->fg.isIndexedBy || ( m==0 && pProbe->bUnordered==0 && (pProbe->szIdxRowszTabRow) && (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 && sqlite3GlobalConfig.bUseCis && OptimizationEnabled(pWInfo->pParse->db, SQLITE_CoverIdxScan) ) ){ pNew->iSortIdx = b ? iSortIdx : 0; /* The cost of visiting the index rows is N*K, where K is ** between 1.1 and 3.0, depending on the relative sizes of the ** index and table rows. */ pNew->rRun = rSize + 1 + (15*pProbe->szIdxRow)/pTab->szTabRow; if( m!=0 ){ /* If this is a non-covering index scan, add in the cost of ** doing table lookups. The cost will be 3x the number of ** lookups. Take into account WHERE clause terms that can be ** satisfied using just the index, and that do not require a ** table lookup. */ LogEst nLookup = rSize + 16; /* Base cost: N*3 */ int ii; int iCur = pSrc->iCursor; WhereClause *pWC2 = &pWInfo->sWC; for(ii=0; iinTerm; ii++){ WhereTerm *pTerm = &pWC2->a[ii]; if( !sqlite3ExprCoveredByIndex(pTerm->pExpr, iCur, pProbe) ){ break; } /* pTerm can be evaluated using just the index. So reduce ** the expected number of table lookups accordingly */ if( pTerm->truthProb<=0 ){ nLookup += pTerm->truthProb; }else{ nLookup--; if( pTerm->eOperator & (WO_EQ|WO_IS) ) nLookup -= 19; } } pNew->rRun = sqlite3LogEstAdd(pNew->rRun, nLookup); } ApplyCostMultiplier(pNew->rRun, pTab->costMult); whereLoopOutputAdjust(pWC, pNew, rSize); rc = whereLoopInsert(pBuilder, pNew); pNew->nOut = rSize; if( rc ) break; } } pBuilder->bldFlags1 = 0; rc = whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, 0); if( pBuilder->bldFlags1==SQLITE_BLDF1_INDEXED ){ /* If a non-unique index is used, or if a prefix of the key for ** unique index is used (making the index functionally non-unique) ** then the sqlite_stat1 data becomes important for scoring the ** plan */ pTab->tabFlags |= TF_StatsUsed; } #ifdef SQLITE_ENABLE_STAT4 sqlite3Stat4ProbeFree(pBuilder->pRec); pBuilder->nRecValid = 0; pBuilder->pRec = 0; #endif } return rc; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Return true if pTerm is a virtual table LIMIT or OFFSET term. */ static int isLimitTerm(WhereTerm *pTerm){ assert( pTerm->eOperator==WO_AUX || pTerm->eMatchOp==0 ); return pTerm->eMatchOp>=SQLITE_INDEX_CONSTRAINT_LIMIT && pTerm->eMatchOp<=SQLITE_INDEX_CONSTRAINT_OFFSET; } /* ** Argument pIdxInfo is already populated with all constraints that may ** be used by the virtual table identified by pBuilder->pNew->iTab. This ** function marks a subset of those constraints usable, invokes the ** xBestIndex method and adds the returned plan to pBuilder. ** ** A constraint is marked usable if: ** ** * Argument mUsable indicates that its prerequisites are available, and ** ** * It is not one of the operators specified in the mExclude mask passed ** as the fourth argument (which in practice is either WO_IN or 0). ** ** Argument mPrereq is a mask of tables that must be scanned before the ** virtual table in question. These are added to the plans prerequisites ** before it is added to pBuilder. ** ** Output parameter *pbIn is set to true if the plan added to pBuilder ** uses one or more WO_IN terms, or false otherwise. */ static int whereLoopAddVirtualOne( WhereLoopBuilder *pBuilder, Bitmask mPrereq, /* Mask of tables that must be used. */ Bitmask mUsable, /* Mask of usable tables */ u16 mExclude, /* Exclude terms using these operators */ sqlite3_index_info *pIdxInfo, /* Populated object for xBestIndex */ u16 mNoOmit, /* Do not omit these constraints */ int *pbIn, /* OUT: True if plan uses an IN(...) op */ int *pbRetryLimit /* OUT: Retry without LIMIT/OFFSET */ ){ WhereClause *pWC = pBuilder->pWC; HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1]; struct sqlite3_index_constraint *pIdxCons; struct sqlite3_index_constraint_usage *pUsage = pIdxInfo->aConstraintUsage; int i; int mxTerm; int rc = SQLITE_OK; WhereLoop *pNew = pBuilder->pNew; Parse *pParse = pBuilder->pWInfo->pParse; SrcItem *pSrc = &pBuilder->pWInfo->pTabList->a[pNew->iTab]; int nConstraint = pIdxInfo->nConstraint; assert( (mUsable & mPrereq)==mPrereq ); *pbIn = 0; pNew->prereq = mPrereq; /* Set the usable flag on the subset of constraints identified by ** arguments mUsable and mExclude. */ pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint; for(i=0; ia[pIdxCons->iTermOffset]; pIdxCons->usable = 0; if( (pTerm->prereqRight & mUsable)==pTerm->prereqRight && (pTerm->eOperator & mExclude)==0 && (pbRetryLimit || !isLimitTerm(pTerm)) ){ pIdxCons->usable = 1; } } /* Initialize the output fields of the sqlite3_index_info structure */ memset(pUsage, 0, sizeof(pUsage[0])*nConstraint); assert( pIdxInfo->needToFreeIdxStr==0 ); pIdxInfo->idxStr = 0; pIdxInfo->idxNum = 0; pIdxInfo->orderByConsumed = 0; pIdxInfo->estimatedCost = SQLITE_BIG_DBL / (double)2; pIdxInfo->estimatedRows = 25; pIdxInfo->idxFlags = 0; pIdxInfo->colUsed = (sqlite3_int64)pSrc->colUsed; pHidden->mHandleIn = 0; /* Invoke the virtual table xBestIndex() method */ rc = vtabBestIndex(pParse, pSrc->pTab, pIdxInfo); if( rc ){ if( rc==SQLITE_CONSTRAINT ){ /* If the xBestIndex method returns SQLITE_CONSTRAINT, that means ** that the particular combination of parameters provided is unusable. ** Make no entries in the loop table. */ WHERETRACE(0xffff, (" ^^^^--- non-viable plan rejected!\n")); return SQLITE_OK; } return rc; } mxTerm = -1; assert( pNew->nLSlot>=nConstraint ); memset(pNew->aLTerm, 0, sizeof(pNew->aLTerm[0])*nConstraint ); memset(&pNew->u.vtab, 0, sizeof(pNew->u.vtab)); pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint; for(i=0; i=0 ){ WhereTerm *pTerm; int j = pIdxCons->iTermOffset; if( iTerm>=nConstraint || j<0 || j>=pWC->nTerm || pNew->aLTerm[iTerm]!=0 || pIdxCons->usable==0 ){ sqlite3ErrorMsg(pParse,"%s.xBestIndex malfunction",pSrc->pTab->zName); testcase( pIdxInfo->needToFreeIdxStr ); return SQLITE_ERROR; } testcase( iTerm==nConstraint-1 ); testcase( j==0 ); testcase( j==pWC->nTerm-1 ); pTerm = &pWC->a[j]; pNew->prereq |= pTerm->prereqRight; assert( iTermnLSlot ); pNew->aLTerm[iTerm] = pTerm; if( iTerm>mxTerm ) mxTerm = iTerm; testcase( iTerm==15 ); testcase( iTerm==16 ); if( pUsage[i].omit ){ if( i<16 && ((1<u.vtab.omitMask |= 1<eMatchOp==SQLITE_INDEX_CONSTRAINT_OFFSET ){ pNew->u.vtab.bOmitOffset = 1; } } if( SMASKBIT32(i) & pHidden->mHandleIn ){ pNew->u.vtab.mHandleIn |= MASKBIT32(iTerm); }else if( (pTerm->eOperator & WO_IN)!=0 ){ /* A virtual table that is constrained by an IN clause may not ** consume the ORDER BY clause because (1) the order of IN terms ** is not necessarily related to the order of output terms and ** (2) Multiple outputs from a single IN value will not merge ** together. */ pIdxInfo->orderByConsumed = 0; pIdxInfo->idxFlags &= ~SQLITE_INDEX_SCAN_UNIQUE; *pbIn = 1; assert( (mExclude & WO_IN)==0 ); } if( isLimitTerm(pTerm) && *pbIn ){ /* If there is an IN(...) term handled as an == (separate call to ** xFilter for each value on the RHS of the IN) and a LIMIT or ** OFFSET term handled as well, the plan is unusable. Set output ** variable *pbRetryLimit to true to tell the caller to retry with ** LIMIT and OFFSET disabled. */ if( pIdxInfo->needToFreeIdxStr ){ sqlite3_free(pIdxInfo->idxStr); pIdxInfo->idxStr = 0; pIdxInfo->needToFreeIdxStr = 0; } *pbRetryLimit = 1; return SQLITE_OK; } } } pNew->nLTerm = mxTerm+1; for(i=0; i<=mxTerm; i++){ if( pNew->aLTerm[i]==0 ){ /* The non-zero argvIdx values must be contiguous. Raise an ** error if they are not */ sqlite3ErrorMsg(pParse,"%s.xBestIndex malfunction",pSrc->pTab->zName); testcase( pIdxInfo->needToFreeIdxStr ); return SQLITE_ERROR; } } assert( pNew->nLTerm<=pNew->nLSlot ); pNew->u.vtab.idxNum = pIdxInfo->idxNum; pNew->u.vtab.needFree = pIdxInfo->needToFreeIdxStr; pIdxInfo->needToFreeIdxStr = 0; pNew->u.vtab.idxStr = pIdxInfo->idxStr; pNew->u.vtab.isOrdered = (i8)(pIdxInfo->orderByConsumed ? pIdxInfo->nOrderBy : 0); pNew->rSetup = 0; pNew->rRun = sqlite3LogEstFromDouble(pIdxInfo->estimatedCost); pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows); /* Set the WHERE_ONEROW flag if the xBestIndex() method indicated ** that the scan will visit at most one row. Clear it otherwise. */ if( pIdxInfo->idxFlags & SQLITE_INDEX_SCAN_UNIQUE ){ pNew->wsFlags |= WHERE_ONEROW; }else{ pNew->wsFlags &= ~WHERE_ONEROW; } rc = whereLoopInsert(pBuilder, pNew); if( pNew->u.vtab.needFree ){ sqlite3_free(pNew->u.vtab.idxStr); pNew->u.vtab.needFree = 0; } WHERETRACE(0xffff, (" bIn=%d prereqIn=%04llx prereqOut=%04llx\n", *pbIn, (sqlite3_uint64)mPrereq, (sqlite3_uint64)(pNew->prereq & ~mPrereq))); return rc; } /* ** Return the collating sequence for a constraint passed into xBestIndex. ** ** pIdxInfo must be an sqlite3_index_info structure passed into xBestIndex. ** This routine depends on there being a HiddenIndexInfo structure immediately ** following the sqlite3_index_info structure. ** ** Return a pointer to the collation name: ** ** 1. If there is an explicit COLLATE operator on the constaint, return it. ** ** 2. Else, if the column has an alternative collation, return that. ** ** 3. Otherwise, return "BINARY". */ SQLITE_API const char *sqlite3_vtab_collation(sqlite3_index_info *pIdxInfo, int iCons){ HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1]; const char *zRet = 0; if( iCons>=0 && iConsnConstraint ){ CollSeq *pC = 0; int iTerm = pIdxInfo->aConstraint[iCons].iTermOffset; Expr *pX = pHidden->pWC->a[iTerm].pExpr; if( pX->pLeft ){ pC = sqlite3ExprCompareCollSeq(pHidden->pParse, pX); } zRet = (pC ? pC->zName : sqlite3StrBINARY); } return zRet; } /* ** Return true if constraint iCons is really an IN(...) constraint, or ** false otherwise. If iCons is an IN(...) constraint, set (if bHandle!=0) ** or clear (if bHandle==0) the flag to handle it using an iterator. */ SQLITE_API int sqlite3_vtab_in(sqlite3_index_info *pIdxInfo, int iCons, int bHandle){ HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1]; u32 m = SMASKBIT32(iCons); if( m & pHidden->mIn ){ if( bHandle==0 ){ pHidden->mHandleIn &= ~m; }else if( bHandle>0 ){ pHidden->mHandleIn |= m; } return 1; } return 0; } /* ** This interface is callable from within the xBestIndex callback only. ** ** If possible, set (*ppVal) to point to an object containing the value ** on the right-hand-side of constraint iCons. */ SQLITE_API int sqlite3_vtab_rhs_value( sqlite3_index_info *pIdxInfo, /* Copy of first argument to xBestIndex */ int iCons, /* Constraint for which RHS is wanted */ sqlite3_value **ppVal /* Write value extracted here */ ){ HiddenIndexInfo *pH = (HiddenIndexInfo*)&pIdxInfo[1]; sqlite3_value *pVal = 0; int rc = SQLITE_OK; if( iCons<0 || iCons>=pIdxInfo->nConstraint ){ rc = SQLITE_MISUSE; /* EV: R-30545-25046 */ }else{ if( pH->aRhs[iCons]==0 ){ WhereTerm *pTerm = &pH->pWC->a[pIdxInfo->aConstraint[iCons].iTermOffset]; rc = sqlite3ValueFromExpr( pH->pParse->db, pTerm->pExpr->pRight, ENC(pH->pParse->db), SQLITE_AFF_BLOB, &pH->aRhs[iCons] ); testcase( rc!=SQLITE_OK ); } pVal = pH->aRhs[iCons]; } *ppVal = pVal; if( rc==SQLITE_OK && pVal==0 ){ /* IMP: R-19933-32160 */ rc = SQLITE_NOTFOUND; /* IMP: R-36424-56542 */ } return rc; } /* ** Return true if ORDER BY clause may be handled as DISTINCT. */ SQLITE_API int sqlite3_vtab_distinct(sqlite3_index_info *pIdxInfo){ HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1]; assert( pHidden->eDistinct==0 || pHidden->eDistinct==1 || pHidden->eDistinct==2 ); return pHidden->eDistinct; } /* ** Add all WhereLoop objects for a table of the join identified by ** pBuilder->pNew->iTab. That table is guaranteed to be a virtual table. ** ** If there are no LEFT or CROSS JOIN joins in the query, both mPrereq and ** mUnusable are set to 0. Otherwise, mPrereq is a mask of all FROM clause ** entries that occur before the virtual table in the FROM clause and are ** separated from it by at least one LEFT or CROSS JOIN. Similarly, the ** mUnusable mask contains all FROM clause entries that occur after the ** virtual table and are separated from it by at least one LEFT or ** CROSS JOIN. ** ** For example, if the query were: ** ** ... FROM t1, t2 LEFT JOIN t3, t4, vt CROSS JOIN t5, t6; ** ** then mPrereq corresponds to (t1, t2) and mUnusable to (t5, t6). ** ** All the tables in mPrereq must be scanned before the current virtual ** table. So any terms for which all prerequisites are satisfied by ** mPrereq may be specified as "usable" in all calls to xBestIndex. ** Conversely, all tables in mUnusable must be scanned after the current ** virtual table, so any terms for which the prerequisites overlap with ** mUnusable should always be configured as "not-usable" for xBestIndex. */ static int whereLoopAddVirtual( WhereLoopBuilder *pBuilder, /* WHERE clause information */ Bitmask mPrereq, /* Tables that must be scanned before this one */ Bitmask mUnusable /* Tables that must be scanned after this one */ ){ int rc = SQLITE_OK; /* Return code */ WhereInfo *pWInfo; /* WHERE analysis context */ Parse *pParse; /* The parsing context */ WhereClause *pWC; /* The WHERE clause */ SrcItem *pSrc; /* The FROM clause term to search */ sqlite3_index_info *p; /* Object to pass to xBestIndex() */ int nConstraint; /* Number of constraints in p */ int bIn; /* True if plan uses IN(...) operator */ WhereLoop *pNew; Bitmask mBest; /* Tables used by best possible plan */ u16 mNoOmit; int bRetry = 0; /* True to retry with LIMIT/OFFSET disabled */ assert( (mPrereq & mUnusable)==0 ); pWInfo = pBuilder->pWInfo; pParse = pWInfo->pParse; pWC = pBuilder->pWC; pNew = pBuilder->pNew; pSrc = &pWInfo->pTabList->a[pNew->iTab]; assert( IsVirtual(pSrc->pTab) ); p = allocateIndexInfo(pWInfo, pWC, mUnusable, pSrc, &mNoOmit); if( p==0 ) return SQLITE_NOMEM_BKPT; pNew->rSetup = 0; pNew->wsFlags = WHERE_VIRTUALTABLE; pNew->nLTerm = 0; pNew->u.vtab.needFree = 0; nConstraint = p->nConstraint; if( whereLoopResize(pParse->db, pNew, nConstraint) ){ freeIndexInfo(pParse->db, p); return SQLITE_NOMEM_BKPT; } /* First call xBestIndex() with all constraints usable. */ WHERETRACE(0x800, ("BEGIN %s.addVirtual()\n", pSrc->pTab->zName)); WHERETRACE(0x40, (" VirtualOne: all usable\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn, &bRetry ); if( bRetry ){ assert( rc==SQLITE_OK ); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn, 0 ); } /* If the call to xBestIndex() with all terms enabled produced a plan ** that does not require any source tables (IOW: a plan with mBest==0) ** and does not use an IN(...) operator, then there is no point in making ** any further calls to xBestIndex() since they will all return the same ** result (if the xBestIndex() implementation is sane). */ if( rc==SQLITE_OK && ((mBest = (pNew->prereq & ~mPrereq))!=0 || bIn) ){ int seenZero = 0; /* True if a plan with no prereqs seen */ int seenZeroNoIN = 0; /* Plan with no prereqs and no IN(...) seen */ Bitmask mPrev = 0; Bitmask mBestNoIn = 0; /* If the plan produced by the earlier call uses an IN(...) term, call ** xBestIndex again, this time with IN(...) terms disabled. */ if( bIn ){ WHERETRACE(0x40, (" VirtualOne: all usable w/o IN\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, ALLBITS, WO_IN, p, mNoOmit, &bIn, 0); assert( bIn==0 ); mBestNoIn = pNew->prereq & ~mPrereq; if( mBestNoIn==0 ){ seenZero = 1; seenZeroNoIN = 1; } } /* Call xBestIndex once for each distinct value of (prereqRight & ~mPrereq) ** in the set of terms that apply to the current virtual table. */ while( rc==SQLITE_OK ){ int i; Bitmask mNext = ALLBITS; assert( mNext>0 ); for(i=0; ia[p->aConstraint[i].iTermOffset].prereqRight & ~mPrereq ); if( mThis>mPrev && mThisprereq==mPrereq ){ seenZero = 1; if( bIn==0 ) seenZeroNoIN = 1; } } /* If the calls to xBestIndex() in the above loop did not find a plan ** that requires no source tables at all (i.e. one guaranteed to be ** usable), make a call here with all source tables disabled */ if( rc==SQLITE_OK && seenZero==0 ){ WHERETRACE(0x40, (" VirtualOne: all disabled\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, mPrereq, 0, p, mNoOmit, &bIn, 0); if( bIn==0 ) seenZeroNoIN = 1; } /* If the calls to xBestIndex() have so far failed to find a plan ** that requires no source tables at all and does not use an IN(...) ** operator, make a final call to obtain one here. */ if( rc==SQLITE_OK && seenZeroNoIN==0 ){ WHERETRACE(0x40, (" VirtualOne: all disabled and w/o IN\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, mPrereq, WO_IN, p, mNoOmit, &bIn, 0); } } if( p->needToFreeIdxStr ) sqlite3_free(p->idxStr); freeIndexInfo(pParse->db, p); WHERETRACE(0x800, ("END %s.addVirtual(), rc=%d\n", pSrc->pTab->zName, rc)); return rc; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** Add WhereLoop entries to handle OR terms. This works for either ** btrees or virtual tables. */ static int whereLoopAddOr( WhereLoopBuilder *pBuilder, Bitmask mPrereq, Bitmask mUnusable ){ WhereInfo *pWInfo = pBuilder->pWInfo; WhereClause *pWC; WhereLoop *pNew; WhereTerm *pTerm, *pWCEnd; int rc = SQLITE_OK; int iCur; WhereClause tempWC; WhereLoopBuilder sSubBuild; WhereOrSet sSum, sCur; SrcItem *pItem; pWC = pBuilder->pWC; pWCEnd = pWC->a + pWC->nTerm; pNew = pBuilder->pNew; memset(&sSum, 0, sizeof(sSum)); pItem = pWInfo->pTabList->a + pNew->iTab; iCur = pItem->iCursor; for(pTerm=pWC->a; pTermeOperator & WO_OR)!=0 && (pTerm->u.pOrInfo->indexable & pNew->maskSelf)!=0 ){ WhereClause * const pOrWC = &pTerm->u.pOrInfo->wc; WhereTerm * const pOrWCEnd = &pOrWC->a[pOrWC->nTerm]; WhereTerm *pOrTerm; int once = 1; int i, j; sSubBuild = *pBuilder; sSubBuild.pOrSet = &sCur; WHERETRACE(0x200, ("Begin processing OR-clause %p\n", pTerm)); for(pOrTerm=pOrWC->a; pOrTermeOperator & WO_AND)!=0 ){ sSubBuild.pWC = &pOrTerm->u.pAndInfo->wc; }else if( pOrTerm->leftCursor==iCur ){ tempWC.pWInfo = pWC->pWInfo; tempWC.pOuter = pWC; tempWC.op = TK_AND; tempWC.nTerm = 1; tempWC.nBase = 1; tempWC.a = pOrTerm; sSubBuild.pWC = &tempWC; }else{ continue; } sCur.n = 0; #ifdef WHERETRACE_ENABLED WHERETRACE(0x200, ("OR-term %d of %p has %d subterms:\n", (int)(pOrTerm-pOrWC->a), pTerm, sSubBuild.pWC->nTerm)); if( sqlite3WhereTrace & 0x400 ){ sqlite3WhereClausePrint(sSubBuild.pWC); } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pItem->pTab) ){ rc = whereLoopAddVirtual(&sSubBuild, mPrereq, mUnusable); }else #endif { rc = whereLoopAddBtree(&sSubBuild, mPrereq); } if( rc==SQLITE_OK ){ rc = whereLoopAddOr(&sSubBuild, mPrereq, mUnusable); } assert( rc==SQLITE_OK || rc==SQLITE_DONE || sCur.n==0 || rc==SQLITE_NOMEM ); testcase( rc==SQLITE_NOMEM && sCur.n>0 ); testcase( rc==SQLITE_DONE ); if( sCur.n==0 ){ sSum.n = 0; break; }else if( once ){ whereOrMove(&sSum, &sCur); once = 0; }else{ WhereOrSet sPrev; whereOrMove(&sPrev, &sSum); sSum.n = 0; for(i=0; inLTerm = 1; pNew->aLTerm[0] = pTerm; pNew->wsFlags = WHERE_MULTI_OR; pNew->rSetup = 0; pNew->iSortIdx = 0; memset(&pNew->u, 0, sizeof(pNew->u)); for(i=0; rc==SQLITE_OK && irRun = sSum.a[i].rRun + 1; pNew->nOut = sSum.a[i].nOut; pNew->prereq = sSum.a[i].prereq; rc = whereLoopInsert(pBuilder, pNew); } WHERETRACE(0x200, ("End processing OR-clause %p\n", pTerm)); } } return rc; } /* ** Add all WhereLoop objects for all tables */ static int whereLoopAddAll(WhereLoopBuilder *pBuilder){ WhereInfo *pWInfo = pBuilder->pWInfo; Bitmask mPrereq = 0; Bitmask mPrior = 0; int iTab; SrcList *pTabList = pWInfo->pTabList; SrcItem *pItem; SrcItem *pEnd = &pTabList->a[pWInfo->nLevel]; sqlite3 *db = pWInfo->pParse->db; int rc = SQLITE_OK; WhereLoop *pNew; /* Loop over the tables in the join, from left to right */ pNew = pBuilder->pNew; whereLoopInit(pNew); pBuilder->iPlanLimit = SQLITE_QUERY_PLANNER_LIMIT; for(iTab=0, pItem=pTabList->a; pItemiTab = iTab; pBuilder->iPlanLimit += SQLITE_QUERY_PLANNER_LIMIT_INCR; pNew->maskSelf = sqlite3WhereGetMask(&pWInfo->sMaskSet, pItem->iCursor); if( (pItem->fg.jointype & (JT_LEFT|JT_CROSS))!=0 ){ /* This condition is true when pItem is the FROM clause term on the ** right-hand-side of a LEFT or CROSS JOIN. */ mPrereq = mPrior; }else{ mPrereq = 0; } #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pItem->pTab) ){ SrcItem *p; for(p=&pItem[1]; pfg.jointype & (JT_LEFT|JT_CROSS)) ){ mUnusable |= sqlite3WhereGetMask(&pWInfo->sMaskSet, p->iCursor); } } rc = whereLoopAddVirtual(pBuilder, mPrereq, mUnusable); }else #endif /* SQLITE_OMIT_VIRTUALTABLE */ { rc = whereLoopAddBtree(pBuilder, mPrereq); } if( rc==SQLITE_OK && pBuilder->pWC->hasOr ){ rc = whereLoopAddOr(pBuilder, mPrereq, mUnusable); } mPrior |= pNew->maskSelf; if( rc || db->mallocFailed ){ if( rc==SQLITE_DONE ){ /* We hit the query planner search limit set by iPlanLimit */ sqlite3_log(SQLITE_WARNING, "abbreviated query algorithm search"); rc = SQLITE_OK; }else{ break; } } } whereLoopClear(db, pNew); return rc; } /* ** Examine a WherePath (with the addition of the extra WhereLoop of the 6th ** parameters) to see if it outputs rows in the requested ORDER BY ** (or GROUP BY) without requiring a separate sort operation. Return N: ** ** N>0: N terms of the ORDER BY clause are satisfied ** N==0: No terms of the ORDER BY clause are satisfied ** N<0: Unknown yet how many terms of ORDER BY might be satisfied. ** ** Note that processing for WHERE_GROUPBY and WHERE_DISTINCTBY is not as ** strict. With GROUP BY and DISTINCT the only requirement is that ** equivalent rows appear immediately adjacent to one another. GROUP BY ** and DISTINCT do not require rows to appear in any particular order as long ** as equivalent rows are grouped together. Thus for GROUP BY and DISTINCT ** the pOrderBy terms can be matched in any order. With ORDER BY, the ** pOrderBy terms must be matched in strict left-to-right order. */ static i8 wherePathSatisfiesOrderBy( WhereInfo *pWInfo, /* The WHERE clause */ ExprList *pOrderBy, /* ORDER BY or GROUP BY or DISTINCT clause to check */ WherePath *pPath, /* The WherePath to check */ u16 wctrlFlags, /* WHERE_GROUPBY or _DISTINCTBY or _ORDERBY_LIMIT */ u16 nLoop, /* Number of entries in pPath->aLoop[] */ WhereLoop *pLast, /* Add this WhereLoop to the end of pPath->aLoop[] */ Bitmask *pRevMask /* OUT: Mask of WhereLoops to run in reverse order */ ){ u8 revSet; /* True if rev is known */ u8 rev; /* Composite sort order */ u8 revIdx; /* Index sort order */ u8 isOrderDistinct; /* All prior WhereLoops are order-distinct */ u8 distinctColumns; /* True if the loop has UNIQUE NOT NULL columns */ u8 isMatch; /* iColumn matches a term of the ORDER BY clause */ u16 eqOpMask; /* Allowed equality operators */ u16 nKeyCol; /* Number of key columns in pIndex */ u16 nColumn; /* Total number of ordered columns in the index */ u16 nOrderBy; /* Number terms in the ORDER BY clause */ int iLoop; /* Index of WhereLoop in pPath being processed */ int i, j; /* Loop counters */ int iCur; /* Cursor number for current WhereLoop */ int iColumn; /* A column number within table iCur */ WhereLoop *pLoop = 0; /* Current WhereLoop being processed. */ WhereTerm *pTerm; /* A single term of the WHERE clause */ Expr *pOBExpr; /* An expression from the ORDER BY clause */ CollSeq *pColl; /* COLLATE function from an ORDER BY clause term */ Index *pIndex; /* The index associated with pLoop */ sqlite3 *db = pWInfo->pParse->db; /* Database connection */ Bitmask obSat = 0; /* Mask of ORDER BY terms satisfied so far */ Bitmask obDone; /* Mask of all ORDER BY terms */ Bitmask orderDistinctMask; /* Mask of all well-ordered loops */ Bitmask ready; /* Mask of inner loops */ /* ** We say the WhereLoop is "one-row" if it generates no more than one ** row of output. A WhereLoop is one-row if all of the following are true: ** (a) All index columns match with WHERE_COLUMN_EQ. ** (b) The index is unique ** Any WhereLoop with an WHERE_COLUMN_EQ constraint on the rowid is one-row. ** Every one-row WhereLoop will have the WHERE_ONEROW bit set in wsFlags. ** ** We say the WhereLoop is "order-distinct" if the set of columns from ** that WhereLoop that are in the ORDER BY clause are different for every ** row of the WhereLoop. Every one-row WhereLoop is automatically ** order-distinct. A WhereLoop that has no columns in the ORDER BY clause ** is not order-distinct. To be order-distinct is not quite the same as being ** UNIQUE since a UNIQUE column or index can have multiple rows that ** are NULL and NULL values are equivalent for the purpose of order-distinct. ** To be order-distinct, the columns must be UNIQUE and NOT NULL. ** ** The rowid for a table is always UNIQUE and NOT NULL so whenever the ** rowid appears in the ORDER BY clause, the corresponding WhereLoop is ** automatically order-distinct. */ assert( pOrderBy!=0 ); if( nLoop && OptimizationDisabled(db, SQLITE_OrderByIdxJoin) ) return 0; nOrderBy = pOrderBy->nExpr; testcase( nOrderBy==BMS-1 ); if( nOrderBy>BMS-1 ) return 0; /* Cannot optimize overly large ORDER BYs */ isOrderDistinct = 1; obDone = MASKBIT(nOrderBy)-1; orderDistinctMask = 0; ready = 0; eqOpMask = WO_EQ | WO_IS | WO_ISNULL; if( wctrlFlags & (WHERE_ORDERBY_LIMIT|WHERE_ORDERBY_MAX|WHERE_ORDERBY_MIN) ){ eqOpMask |= WO_IN; } for(iLoop=0; isOrderDistinct && obSat0 ) ready |= pLoop->maskSelf; if( iLoopaLoop[iLoop]; if( wctrlFlags & WHERE_ORDERBY_LIMIT ) continue; }else{ pLoop = pLast; } if( pLoop->wsFlags & WHERE_VIRTUALTABLE ){ if( pLoop->u.vtab.isOrdered && (wctrlFlags & WHERE_DISTINCTBY)==0 ){ obSat = obDone; } break; }else if( wctrlFlags & WHERE_DISTINCTBY ){ pLoop->u.btree.nDistinctCol = 0; } iCur = pWInfo->pTabList->a[pLoop->iTab].iCursor; /* Mark off any ORDER BY term X that is a column in the table of ** the current loop for which there is term in the WHERE ** clause of the form X IS NULL or X=? that reference only outer ** loops. */ for(i=0; ia[i].pExpr); if( NEVER(pOBExpr==0) ) continue; if( pOBExpr->op!=TK_COLUMN && pOBExpr->op!=TK_AGG_COLUMN ) continue; if( pOBExpr->iTable!=iCur ) continue; pTerm = sqlite3WhereFindTerm(&pWInfo->sWC, iCur, pOBExpr->iColumn, ~ready, eqOpMask, 0); if( pTerm==0 ) continue; if( pTerm->eOperator==WO_IN ){ /* IN terms are only valid for sorting in the ORDER BY LIMIT ** optimization, and then only if they are actually used ** by the query plan */ assert( wctrlFlags & (WHERE_ORDERBY_LIMIT|WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX) ); for(j=0; jnLTerm && pTerm!=pLoop->aLTerm[j]; j++){} if( j>=pLoop->nLTerm ) continue; } if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 && pOBExpr->iColumn>=0 ){ Parse *pParse = pWInfo->pParse; CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pOrderBy->a[i].pExpr); CollSeq *pColl2 = sqlite3ExprCompareCollSeq(pParse, pTerm->pExpr); assert( pColl1 ); if( pColl2==0 || sqlite3StrICmp(pColl1->zName, pColl2->zName) ){ continue; } testcase( pTerm->pExpr->op==TK_IS ); } obSat |= MASKBIT(i); } if( (pLoop->wsFlags & WHERE_ONEROW)==0 ){ if( pLoop->wsFlags & WHERE_IPK ){ pIndex = 0; nKeyCol = 0; nColumn = 1; }else if( (pIndex = pLoop->u.btree.pIndex)==0 || pIndex->bUnordered ){ return 0; }else{ nKeyCol = pIndex->nKeyCol; nColumn = pIndex->nColumn; assert( nColumn==nKeyCol+1 || !HasRowid(pIndex->pTable) ); assert( pIndex->aiColumn[nColumn-1]==XN_ROWID || !HasRowid(pIndex->pTable)); /* All relevant terms of the index must also be non-NULL in order ** for isOrderDistinct to be true. So the isOrderDistint value ** computed here might be a false positive. Corrections will be ** made at tag-20210426-1 below */ isOrderDistinct = IsUniqueIndex(pIndex) && (pLoop->wsFlags & WHERE_SKIPSCAN)==0; } /* Loop through all columns of the index and deal with the ones ** that are not constrained by == or IN. */ rev = revSet = 0; distinctColumns = 0; for(j=0; j=pLoop->u.btree.nEq || (pLoop->aLTerm[j]==0)==(jnSkip) ); if( ju.btree.nEq && j>=pLoop->nSkip ){ u16 eOp = pLoop->aLTerm[j]->eOperator; /* Skip over == and IS and ISNULL terms. (Also skip IN terms when ** doing WHERE_ORDERBY_LIMIT processing). Except, IS and ISNULL ** terms imply that the index is not UNIQUE NOT NULL in which case ** the loop need to be marked as not order-distinct because it can ** have repeated NULL rows. ** ** If the current term is a column of an ((?,?) IN (SELECT...)) ** expression for which the SELECT returns more than one column, ** check that it is the only column used by this loop. Otherwise, ** if it is one of two or more, none of the columns can be ** considered to match an ORDER BY term. */ if( (eOp & eqOpMask)!=0 ){ if( eOp & (WO_ISNULL|WO_IS) ){ testcase( eOp & WO_ISNULL ); testcase( eOp & WO_IS ); testcase( isOrderDistinct ); isOrderDistinct = 0; } continue; }else if( ALWAYS(eOp & WO_IN) ){ /* ALWAYS() justification: eOp is an equality operator due to the ** ju.btree.nEq constraint above. Any equality other ** than WO_IN is captured by the previous "if". So this one ** always has to be WO_IN. */ Expr *pX = pLoop->aLTerm[j]->pExpr; for(i=j+1; iu.btree.nEq; i++){ if( pLoop->aLTerm[i]->pExpr==pX ){ assert( (pLoop->aLTerm[i]->eOperator & WO_IN) ); bOnce = 0; break; } } } } /* Get the column number in the table (iColumn) and sort order ** (revIdx) for the j-th column of the index. */ if( pIndex ){ iColumn = pIndex->aiColumn[j]; revIdx = pIndex->aSortOrder[j] & KEYINFO_ORDER_DESC; if( iColumn==pIndex->pTable->iPKey ) iColumn = XN_ROWID; }else{ iColumn = XN_ROWID; revIdx = 0; } /* An unconstrained column that might be NULL means that this ** WhereLoop is not well-ordered. tag-20210426-1 */ if( isOrderDistinct ){ if( iColumn>=0 && j>=pLoop->u.btree.nEq && pIndex->pTable->aCol[iColumn].notNull==0 ){ isOrderDistinct = 0; } if( iColumn==XN_EXPR ){ isOrderDistinct = 0; } } /* Find the ORDER BY term that corresponds to the j-th column ** of the index and mark that ORDER BY term off */ isMatch = 0; for(i=0; bOnce && ia[i].pExpr); testcase( wctrlFlags & WHERE_GROUPBY ); testcase( wctrlFlags & WHERE_DISTINCTBY ); if( NEVER(pOBExpr==0) ) continue; if( (wctrlFlags & (WHERE_GROUPBY|WHERE_DISTINCTBY))==0 ) bOnce = 0; if( iColumn>=XN_ROWID ){ if( pOBExpr->op!=TK_COLUMN && pOBExpr->op!=TK_AGG_COLUMN ) continue; if( pOBExpr->iTable!=iCur ) continue; if( pOBExpr->iColumn!=iColumn ) continue; }else{ Expr *pIdxExpr = pIndex->aColExpr->a[j].pExpr; if( sqlite3ExprCompareSkip(pOBExpr, pIdxExpr, iCur) ){ continue; } } if( iColumn!=XN_ROWID ){ pColl = sqlite3ExprNNCollSeq(pWInfo->pParse, pOrderBy->a[i].pExpr); if( sqlite3StrICmp(pColl->zName, pIndex->azColl[j])!=0 ) continue; } if( wctrlFlags & WHERE_DISTINCTBY ){ pLoop->u.btree.nDistinctCol = j+1; } isMatch = 1; break; } if( isMatch && (wctrlFlags & WHERE_GROUPBY)==0 ){ /* Make sure the sort order is compatible in an ORDER BY clause. ** Sort order is irrelevant for a GROUP BY clause. */ if( revSet ){ if( (rev ^ revIdx)!=(pOrderBy->a[i].sortFlags&KEYINFO_ORDER_DESC) ){ isMatch = 0; } }else{ rev = revIdx ^ (pOrderBy->a[i].sortFlags & KEYINFO_ORDER_DESC); if( rev ) *pRevMask |= MASKBIT(iLoop); revSet = 1; } } if( isMatch && (pOrderBy->a[i].sortFlags & KEYINFO_ORDER_BIGNULL) ){ if( j==pLoop->u.btree.nEq ){ pLoop->wsFlags |= WHERE_BIGNULL_SORT; }else{ isMatch = 0; } } if( isMatch ){ if( iColumn==XN_ROWID ){ testcase( distinctColumns==0 ); distinctColumns = 1; } obSat |= MASKBIT(i); }else{ /* No match found */ if( j==0 || jmaskSelf; for(i=0; ia[i].pExpr; mTerm = sqlite3WhereExprUsage(&pWInfo->sMaskSet,p); if( mTerm==0 && !sqlite3ExprIsConstant(p) ) continue; if( (mTerm&~orderDistinctMask)==0 ){ obSat |= MASKBIT(i); } } } } /* End the loop over all WhereLoops from outer-most down to inner-most */ if( obSat==obDone ) return (i8)nOrderBy; if( !isOrderDistinct ){ for(i=nOrderBy-1; i>0; i--){ Bitmask m = ALWAYS(iwctrlFlags & WHERE_GROUPBY ); assert( pWInfo->wctrlFlags & WHERE_SORTBYGROUP ); return pWInfo->sorted; } #ifdef WHERETRACE_ENABLED /* For debugging use only: */ static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){ static char zName[65]; int i; for(i=0; iaLoop[i]->cId; } if( pLast ) zName[i++] = pLast->cId; zName[i] = 0; return zName; } #endif /* ** Return the cost of sorting nRow rows, assuming that the keys have ** nOrderby columns and that the first nSorted columns are already in ** order. */ static LogEst whereSortingCost( WhereInfo *pWInfo, LogEst nRow, int nOrderBy, int nSorted ){ /* TUNING: Estimated cost of a full external sort, where N is ** the number of rows to sort is: ** ** cost = (3.0 * N * log(N)). ** ** Or, if the order-by clause has X terms but only the last Y ** terms are out of order, then block-sorting will reduce the ** sorting cost to: ** ** cost = (3.0 * N * log(N)) * (Y/X) ** ** The (Y/X) term is implemented using stack variable rScale ** below. */ LogEst rScale, rSortCost; assert( nOrderBy>0 && 66==sqlite3LogEst(100) ); rScale = sqlite3LogEst((nOrderBy-nSorted)*100/nOrderBy) - 66; rSortCost = nRow + rScale + 16; /* Multiple by log(M) where M is the number of output rows. ** Use the LIMIT for M if it is smaller. Or if this sort is for ** a DISTINCT operator, M will be the number of distinct output ** rows, so fudge it downwards a bit. */ if( (pWInfo->wctrlFlags & WHERE_USE_LIMIT)!=0 && pWInfo->iLimitiLimit; }else if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT) ){ /* TUNING: In the sort for a DISTINCT operator, assume that the DISTINCT ** reduces the number of output rows by a factor of 2 */ if( nRow>10 ){ nRow -= 10; assert( 10==sqlite3LogEst(2) ); } } rSortCost += estLog(nRow); return rSortCost; } /* ** Given the list of WhereLoop objects at pWInfo->pLoops, this routine ** attempts to find the lowest cost path that visits each WhereLoop ** once. This path is then loaded into the pWInfo->a[].pWLoop fields. ** ** Assume that the total number of output rows that will need to be sorted ** will be nRowEst (in the 10*log2 representation). Or, ignore sorting ** costs if nRowEst==0. ** ** Return SQLITE_OK on success or SQLITE_NOMEM of a memory allocation ** error occurs. */ static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){ int mxChoice; /* Maximum number of simultaneous paths tracked */ int nLoop; /* Number of terms in the join */ Parse *pParse; /* Parsing context */ sqlite3 *db; /* The database connection */ int iLoop; /* Loop counter over the terms of the join */ int ii, jj; /* Loop counters */ int mxI = 0; /* Index of next entry to replace */ int nOrderBy; /* Number of ORDER BY clause terms */ LogEst mxCost = 0; /* Maximum cost of a set of paths */ LogEst mxUnsorted = 0; /* Maximum unsorted cost of a set of path */ int nTo, nFrom; /* Number of valid entries in aTo[] and aFrom[] */ WherePath *aFrom; /* All nFrom paths at the previous level */ WherePath *aTo; /* The nTo best paths at the current level */ WherePath *pFrom; /* An element of aFrom[] that we are working on */ WherePath *pTo; /* An element of aTo[] that we are working on */ WhereLoop *pWLoop; /* One of the WhereLoop objects */ WhereLoop **pX; /* Used to divy up the pSpace memory */ LogEst *aSortCost = 0; /* Sorting and partial sorting costs */ char *pSpace; /* Temporary memory used by this routine */ int nSpace; /* Bytes of space allocated at pSpace */ pParse = pWInfo->pParse; db = pParse->db; nLoop = pWInfo->nLevel; /* TUNING: For simple queries, only the best path is tracked. ** For 2-way joins, the 5 best paths are followed. ** For joins of 3 or more tables, track the 10 best paths */ mxChoice = (nLoop<=1) ? 1 : (nLoop==2 ? 5 : 10); assert( nLoop<=pWInfo->pTabList->nSrc ); WHERETRACE(0x002, ("---- begin solver. (nRowEst=%d)\n", nRowEst)); /* If nRowEst is zero and there is an ORDER BY clause, ignore it. In this ** case the purpose of this call is to estimate the number of rows returned ** by the overall query. Once this estimate has been obtained, the caller ** will invoke this function a second time, passing the estimate as the ** nRowEst parameter. */ if( pWInfo->pOrderBy==0 || nRowEst==0 ){ nOrderBy = 0; }else{ nOrderBy = pWInfo->pOrderBy->nExpr; } /* Allocate and initialize space for aTo, aFrom and aSortCost[] */ nSpace = (sizeof(WherePath)+sizeof(WhereLoop*)*nLoop)*mxChoice*2; nSpace += sizeof(LogEst) * nOrderBy; pSpace = sqlite3DbMallocRawNN(db, nSpace); if( pSpace==0 ) return SQLITE_NOMEM_BKPT; aTo = (WherePath*)pSpace; aFrom = aTo+mxChoice; memset(aFrom, 0, sizeof(aFrom[0])); pX = (WhereLoop**)(aFrom+mxChoice); for(ii=mxChoice*2, pFrom=aTo; ii>0; ii--, pFrom++, pX += nLoop){ pFrom->aLoop = pX; } if( nOrderBy ){ /* If there is an ORDER BY clause and it is not being ignored, set up ** space for the aSortCost[] array. Each element of the aSortCost array ** is either zero - meaning it has not yet been initialized - or the ** cost of sorting nRowEst rows of data where the first X terms of ** the ORDER BY clause are already in order, where X is the array ** index. */ aSortCost = (LogEst*)pX; memset(aSortCost, 0, sizeof(LogEst) * nOrderBy); } assert( aSortCost==0 || &pSpace[nSpace]==(char*)&aSortCost[nOrderBy] ); assert( aSortCost!=0 || &pSpace[nSpace]==(char*)pX ); /* Seed the search with a single WherePath containing zero WhereLoops. ** ** TUNING: Do not let the number of iterations go above 28. If the cost ** of computing an automatic index is not paid back within the first 28 ** rows, then do not use the automatic index. */ aFrom[0].nRow = MIN(pParse->nQueryLoop, 48); assert( 48==sqlite3LogEst(28) ); nFrom = 1; assert( aFrom[0].isOrdered==0 ); if( nOrderBy ){ /* If nLoop is zero, then there are no FROM terms in the query. Since ** in this case the query may return a maximum of one row, the results ** are already in the requested order. Set isOrdered to nOrderBy to ** indicate this. Or, if nLoop is greater than zero, set isOrdered to ** -1, indicating that the result set may or may not be ordered, ** depending on the loops added to the current plan. */ aFrom[0].isOrdered = nLoop>0 ? -1 : nOrderBy; } /* Compute successively longer WherePaths using the previous generation ** of WherePaths as the basis for the next. Keep track of the mxChoice ** best paths at each generation */ for(iLoop=0; iLooppLoops; pWLoop; pWLoop=pWLoop->pNextLoop){ LogEst nOut; /* Rows visited by (pFrom+pWLoop) */ LogEst rCost; /* Cost of path (pFrom+pWLoop) */ LogEst rUnsorted; /* Unsorted cost of (pFrom+pWLoop) */ i8 isOrdered = pFrom->isOrdered; /* isOrdered for (pFrom+pWLoop) */ Bitmask maskNew; /* Mask of src visited by (..) */ Bitmask revMask = 0; /* Mask of rev-order loops for (..) */ if( (pWLoop->prereq & ~pFrom->maskLoop)!=0 ) continue; if( (pWLoop->maskSelf & pFrom->maskLoop)!=0 ) continue; if( (pWLoop->wsFlags & WHERE_AUTO_INDEX)!=0 && pFrom->nRow<3 ){ /* Do not use an automatic index if the this loop is expected ** to run less than 1.25 times. It is tempting to also exclude ** automatic index usage on an outer loop, but sometimes an automatic ** index is useful in the outer loop of a correlated subquery. */ assert( 10==sqlite3LogEst(2) ); continue; } /* At this point, pWLoop is a candidate to be the next loop. ** Compute its cost */ rUnsorted = sqlite3LogEstAdd(pWLoop->rSetup,pWLoop->rRun + pFrom->nRow); rUnsorted = sqlite3LogEstAdd(rUnsorted, pFrom->rUnsorted); nOut = pFrom->nRow + pWLoop->nOut; maskNew = pFrom->maskLoop | pWLoop->maskSelf; if( isOrdered<0 ){ isOrdered = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom, pWInfo->wctrlFlags, iLoop, pWLoop, &revMask); }else{ revMask = pFrom->revLoop; } if( isOrdered>=0 && isOrderedisOrdered^isOrdered)&0x80)==0" is equivalent ** to (pTo->isOrdered==(-1))==(isOrdered==(-1))" for the range ** of legal values for isOrdered, -1..64. */ for(jj=0, pTo=aTo; jjmaskLoop==maskNew && ((pTo->isOrdered^isOrdered)&0x80)==0 ){ testcase( jj==nTo-1 ); break; } } if( jj>=nTo ){ /* None of the existing best-so-far paths match the candidate. */ if( nTo>=mxChoice && (rCost>mxCost || (rCost==mxCost && rUnsorted>=mxUnsorted)) ){ /* The current candidate is no better than any of the mxChoice ** paths currently in the best-so-far buffer. So discard ** this candidate as not viable. */ #ifdef WHERETRACE_ENABLED /* 0x4 */ if( sqlite3WhereTrace&0x4 ){ sqlite3DebugPrintf("Skip %s cost=%-3d,%3d,%3d order=%c\n", wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted, isOrdered>=0 ? isOrdered+'0' : '?'); } #endif continue; } /* If we reach this points it means that the new candidate path ** needs to be added to the set of best-so-far paths. */ if( nTo=0 ? isOrdered+'0' : '?'); } #endif }else{ /* Control reaches here if best-so-far path pTo=aTo[jj] covers the ** same set of loops and has the same isOrdered setting as the ** candidate path. Check to see if the candidate should replace ** pTo or if the candidate should be skipped. ** ** The conditional is an expanded vector comparison equivalent to: ** (pTo->rCost,pTo->nRow,pTo->rUnsorted) <= (rCost,nOut,rUnsorted) */ if( pTo->rCostrCost==rCost && (pTo->nRownRow==nOut && pTo->rUnsorted<=rUnsorted) ) ) ){ #ifdef WHERETRACE_ENABLED /* 0x4 */ if( sqlite3WhereTrace&0x4 ){ sqlite3DebugPrintf( "Skip %s cost=%-3d,%3d,%3d order=%c", wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted, isOrdered>=0 ? isOrdered+'0' : '?'); sqlite3DebugPrintf(" vs %s cost=%-3d,%3d,%3d order=%c\n", wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow, pTo->rUnsorted, pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?'); } #endif /* Discard the candidate path from further consideration */ testcase( pTo->rCost==rCost ); continue; } testcase( pTo->rCost==rCost+1 ); /* Control reaches here if the candidate path is better than the ** pTo path. Replace pTo with the candidate. */ #ifdef WHERETRACE_ENABLED /* 0x4 */ if( sqlite3WhereTrace&0x4 ){ sqlite3DebugPrintf( "Update %s cost=%-3d,%3d,%3d order=%c", wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted, isOrdered>=0 ? isOrdered+'0' : '?'); sqlite3DebugPrintf(" was %s cost=%-3d,%3d,%3d order=%c\n", wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow, pTo->rUnsorted, pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?'); } #endif } /* pWLoop is a winner. Add it to the set of best so far */ pTo->maskLoop = pFrom->maskLoop | pWLoop->maskSelf; pTo->revLoop = revMask; pTo->nRow = nOut; pTo->rCost = rCost; pTo->rUnsorted = rUnsorted; pTo->isOrdered = isOrdered; memcpy(pTo->aLoop, pFrom->aLoop, sizeof(WhereLoop*)*iLoop); pTo->aLoop[iLoop] = pWLoop; if( nTo>=mxChoice ){ mxI = 0; mxCost = aTo[0].rCost; mxUnsorted = aTo[0].nRow; for(jj=1, pTo=&aTo[1]; jjrCost>mxCost || (pTo->rCost==mxCost && pTo->rUnsorted>mxUnsorted) ){ mxCost = pTo->rCost; mxUnsorted = pTo->rUnsorted; mxI = jj; } } } } } #ifdef WHERETRACE_ENABLED /* >=2 */ if( sqlite3WhereTrace & 0x02 ){ sqlite3DebugPrintf("---- after round %d ----\n", iLoop); for(ii=0, pTo=aTo; iirCost, pTo->nRow, pTo->isOrdered>=0 ? (pTo->isOrdered+'0') : '?'); if( pTo->isOrdered>0 ){ sqlite3DebugPrintf(" rev=0x%llx\n", pTo->revLoop); }else{ sqlite3DebugPrintf("\n"); } } } #endif /* Swap the roles of aFrom and aTo for the next generation */ pFrom = aTo; aTo = aFrom; aFrom = pFrom; nFrom = nTo; } if( nFrom==0 ){ sqlite3ErrorMsg(pParse, "no query solution"); sqlite3DbFreeNN(db, pSpace); return SQLITE_ERROR; } /* Find the lowest cost path. pFrom will be left pointing to that path */ pFrom = aFrom; for(ii=1; iirCost>aFrom[ii].rCost ) pFrom = &aFrom[ii]; } assert( pWInfo->nLevel==nLoop ); /* Load the lowest cost path into pWInfo */ for(iLoop=0; iLoopa + iLoop; pLevel->pWLoop = pWLoop = pFrom->aLoop[iLoop]; pLevel->iFrom = pWLoop->iTab; pLevel->iTabCur = pWInfo->pTabList->a[pLevel->iFrom].iCursor; } if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)!=0 && (pWInfo->wctrlFlags & WHERE_DISTINCTBY)==0 && pWInfo->eDistinct==WHERE_DISTINCT_NOOP && nRowEst ){ Bitmask notUsed; int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pResultSet, pFrom, WHERE_DISTINCTBY, nLoop-1, pFrom->aLoop[nLoop-1], ¬Used); if( rc==pWInfo->pResultSet->nExpr ){ pWInfo->eDistinct = WHERE_DISTINCT_ORDERED; } } pWInfo->bOrderedInnerLoop = 0; if( pWInfo->pOrderBy ){ if( pWInfo->wctrlFlags & WHERE_DISTINCTBY ){ if( pFrom->isOrdered==pWInfo->pOrderBy->nExpr ){ pWInfo->eDistinct = WHERE_DISTINCT_ORDERED; } }else{ pWInfo->nOBSat = pFrom->isOrdered; pWInfo->revMask = pFrom->revLoop; if( pWInfo->nOBSat<=0 ){ pWInfo->nOBSat = 0; if( nLoop>0 ){ u32 wsFlags = pFrom->aLoop[nLoop-1]->wsFlags; if( (wsFlags & WHERE_ONEROW)==0 && (wsFlags&(WHERE_IPK|WHERE_COLUMN_IN))!=(WHERE_IPK|WHERE_COLUMN_IN) ){ Bitmask m = 0; int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom, WHERE_ORDERBY_LIMIT, nLoop-1, pFrom->aLoop[nLoop-1], &m); testcase( wsFlags & WHERE_IPK ); testcase( wsFlags & WHERE_COLUMN_IN ); if( rc==pWInfo->pOrderBy->nExpr ){ pWInfo->bOrderedInnerLoop = 1; pWInfo->revMask = m; } } } }else if( nLoop && pWInfo->nOBSat==1 && (pWInfo->wctrlFlags & (WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX))!=0 ){ pWInfo->bOrderedInnerLoop = 1; } } if( (pWInfo->wctrlFlags & WHERE_SORTBYGROUP) && pWInfo->nOBSat==pWInfo->pOrderBy->nExpr && nLoop>0 ){ Bitmask revMask = 0; int nOrder = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom, 0, nLoop-1, pFrom->aLoop[nLoop-1], &revMask ); assert( pWInfo->sorted==0 ); if( nOrder==pWInfo->pOrderBy->nExpr ){ pWInfo->sorted = 1; pWInfo->revMask = revMask; } } } pWInfo->nRowOut = pFrom->nRow; /* Free temporary memory and return success */ sqlite3DbFreeNN(db, pSpace); return SQLITE_OK; } /* ** Most queries use only a single table (they are not joins) and have ** simple == constraints against indexed fields. This routine attempts ** to plan those simple cases using much less ceremony than the ** general-purpose query planner, and thereby yield faster sqlite3_prepare() ** times for the common case. ** ** Return non-zero on success, if this query can be handled by this ** no-frills query planner. Return zero if this query needs the ** general-purpose query planner. */ static int whereShortCut(WhereLoopBuilder *pBuilder){ WhereInfo *pWInfo; SrcItem *pItem; WhereClause *pWC; WhereTerm *pTerm; WhereLoop *pLoop; int iCur; int j; Table *pTab; Index *pIdx; WhereScan scan; pWInfo = pBuilder->pWInfo; if( pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE ) return 0; assert( pWInfo->pTabList->nSrc>=1 ); pItem = pWInfo->pTabList->a; pTab = pItem->pTab; if( IsVirtual(pTab) ) return 0; if( pItem->fg.isIndexedBy ) return 0; iCur = pItem->iCursor; pWC = &pWInfo->sWC; pLoop = pBuilder->pNew; pLoop->wsFlags = 0; pLoop->nSkip = 0; pTerm = whereScanInit(&scan, pWC, iCur, -1, WO_EQ|WO_IS, 0); while( pTerm && pTerm->prereqRight ) pTerm = whereScanNext(&scan); if( pTerm ){ testcase( pTerm->eOperator & WO_IS ); pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_IPK|WHERE_ONEROW; pLoop->aLTerm[0] = pTerm; pLoop->nLTerm = 1; pLoop->u.btree.nEq = 1; /* TUNING: Cost of a rowid lookup is 10 */ pLoop->rRun = 33; /* 33==sqlite3LogEst(10) */ }else{ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int opMask; assert( pLoop->aLTermSpace==pLoop->aLTerm ); if( !IsUniqueIndex(pIdx) || pIdx->pPartIdxWhere!=0 || pIdx->nKeyCol>ArraySize(pLoop->aLTermSpace) ) continue; opMask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ; for(j=0; jnKeyCol; j++){ pTerm = whereScanInit(&scan, pWC, iCur, j, opMask, pIdx); while( pTerm && pTerm->prereqRight ) pTerm = whereScanNext(&scan); if( pTerm==0 ) break; testcase( pTerm->eOperator & WO_IS ); pLoop->aLTerm[j] = pTerm; } if( j!=pIdx->nKeyCol ) continue; pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_ONEROW|WHERE_INDEXED; if( pIdx->isCovering || (pItem->colUsed & pIdx->colNotIdxed)==0 ){ pLoop->wsFlags |= WHERE_IDX_ONLY; } pLoop->nLTerm = j; pLoop->u.btree.nEq = j; pLoop->u.btree.pIndex = pIdx; /* TUNING: Cost of a unique index lookup is 15 */ pLoop->rRun = 39; /* 39==sqlite3LogEst(15) */ break; } } if( pLoop->wsFlags ){ pLoop->nOut = (LogEst)1; pWInfo->a[0].pWLoop = pLoop; assert( pWInfo->sMaskSet.n==1 && iCur==pWInfo->sMaskSet.ix[0] ); pLoop->maskSelf = 1; /* sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur); */ pWInfo->a[0].iTabCur = iCur; pWInfo->nRowOut = 1; if( pWInfo->pOrderBy ) pWInfo->nOBSat = pWInfo->pOrderBy->nExpr; if( pWInfo->wctrlFlags & WHERE_WANT_DISTINCT ){ pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; } if( scan.iEquiv>1 ) pLoop->wsFlags |= WHERE_TRANSCONS; #ifdef SQLITE_DEBUG pLoop->cId = '0'; #endif #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace ){ sqlite3DebugPrintf("whereShortCut() used to compute solution\n"); } #endif return 1; } return 0; } /* ** Helper function for exprIsDeterministic(). */ static int exprNodeIsDeterministic(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_FUNCTION && ExprHasProperty(pExpr, EP_ConstFunc)==0 ){ pWalker->eCode = 0; return WRC_Abort; } return WRC_Continue; } /* ** Return true if the expression contains no non-deterministic SQL ** functions. Do not consider non-deterministic SQL functions that are ** part of sub-select statements. */ static int exprIsDeterministic(Expr *p){ Walker w; memset(&w, 0, sizeof(w)); w.eCode = 1; w.xExprCallback = exprNodeIsDeterministic; w.xSelectCallback = sqlite3SelectWalkFail; sqlite3WalkExpr(&w, p); return w.eCode; } #ifdef WHERETRACE_ENABLED /* ** Display all WhereLoops in pWInfo */ static void showAllWhereLoops(WhereInfo *pWInfo, WhereClause *pWC){ if( sqlite3WhereTrace ){ /* Display all of the WhereLoop objects */ WhereLoop *p; int i; static const char zLabel[] = "0123456789abcdefghijklmnopqrstuvwyxz" "ABCDEFGHIJKLMNOPQRSTUVWYXZ"; for(p=pWInfo->pLoops, i=0; p; p=p->pNextLoop, i++){ p->cId = zLabel[i%(sizeof(zLabel)-1)]; sqlite3WhereLoopPrint(p, pWC); } } } # define WHERETRACE_ALL_LOOPS(W,C) showAllWhereLoops(W,C) #else # define WHERETRACE_ALL_LOOPS(W,C) #endif /* Attempt to omit tables from a join that do not affect the result. ** For a table to not affect the result, the following must be true: ** ** 1) The query must not be an aggregate. ** 2) The table must be the RHS of a LEFT JOIN. ** 3) Either the query must be DISTINCT, or else the ON or USING clause ** must contain a constraint that limits the scan of the table to ** at most a single row. ** 4) The table must not be referenced by any part of the query apart ** from its own USING or ON clause. ** ** For example, given: ** ** CREATE TABLE t1(ipk INTEGER PRIMARY KEY, v1); ** CREATE TABLE t2(ipk INTEGER PRIMARY KEY, v2); ** CREATE TABLE t3(ipk INTEGER PRIMARY KEY, v3); ** ** then table t2 can be omitted from the following: ** ** SELECT v1, v3 FROM t1 ** LEFT JOIN t2 ON (t1.ipk=t2.ipk) ** LEFT JOIN t3 ON (t1.ipk=t3.ipk) ** ** or from: ** ** SELECT DISTINCT v1, v3 FROM t1 ** LEFT JOIN t2 ** LEFT JOIN t3 ON (t1.ipk=t3.ipk) */ static SQLITE_NOINLINE Bitmask whereOmitNoopJoin( WhereInfo *pWInfo, Bitmask notReady ){ int i; Bitmask tabUsed; /* Preconditions checked by the caller */ assert( pWInfo->nLevel>=2 ); assert( OptimizationEnabled(pWInfo->pParse->db, SQLITE_OmitNoopJoin) ); /* These two preconditions checked by the caller combine to guarantee ** condition (1) of the header comment */ assert( pWInfo->pResultSet!=0 ); assert( 0==(pWInfo->wctrlFlags & WHERE_AGG_DISTINCT) ); tabUsed = sqlite3WhereExprListUsage(&pWInfo->sMaskSet, pWInfo->pResultSet); if( pWInfo->pOrderBy ){ tabUsed |= sqlite3WhereExprListUsage(&pWInfo->sMaskSet, pWInfo->pOrderBy); } for(i=pWInfo->nLevel-1; i>=1; i--){ WhereTerm *pTerm, *pEnd; SrcItem *pItem; WhereLoop *pLoop; pLoop = pWInfo->a[i].pWLoop; pItem = &pWInfo->pTabList->a[pLoop->iTab]; if( (pItem->fg.jointype & JT_LEFT)==0 ) continue; if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)==0 && (pLoop->wsFlags & WHERE_ONEROW)==0 ){ continue; } if( (tabUsed & pLoop->maskSelf)!=0 ) continue; pEnd = pWInfo->sWC.a + pWInfo->sWC.nTerm; for(pTerm=pWInfo->sWC.a; pTermprereqAll & pLoop->maskSelf)!=0 ){ if( !ExprHasProperty(pTerm->pExpr, EP_FromJoin) || pTerm->pExpr->w.iRightJoinTable!=pItem->iCursor ){ break; } } } if( pTerm drop loop %c not used\n", pLoop->cId)); notReady &= ~pLoop->maskSelf; for(pTerm=pWInfo->sWC.a; pTermprereqAll & pLoop->maskSelf)!=0 ){ pTerm->wtFlags |= TERM_CODED; } } if( i!=pWInfo->nLevel-1 ){ int nByte = (pWInfo->nLevel-1-i) * sizeof(WhereLevel); memmove(&pWInfo->a[i], &pWInfo->a[i+1], nByte); } pWInfo->nLevel--; assert( pWInfo->nLevel>0 ); } return notReady; } /* ** Check to see if there are any SEARCH loops that might benefit from ** using a Bloom filter. Consider a Bloom filter if: ** ** (1) The SEARCH happens more than N times where N is the number ** of rows in the table that is being considered for the Bloom ** filter. ** (2) Some searches are expected to find zero rows. (This is determined ** by the WHERE_SELFCULL flag on the term.) ** (3) Bloom-filter processing is not disabled. (Checked by the ** caller.) ** (4) The size of the table being searched is known by ANALYZE. ** ** This block of code merely checks to see if a Bloom filter would be ** appropriate, and if so sets the WHERE_BLOOMFILTER flag on the ** WhereLoop. The implementation of the Bloom filter comes further ** down where the code for each WhereLoop is generated. */ static SQLITE_NOINLINE void whereCheckIfBloomFilterIsUseful( const WhereInfo *pWInfo ){ int i; LogEst nSearch; assert( pWInfo->nLevel>=2 ); assert( OptimizationEnabled(pWInfo->pParse->db, SQLITE_BloomFilter) ); nSearch = pWInfo->a[0].pWLoop->nOut; for(i=1; inLevel; i++){ WhereLoop *pLoop = pWInfo->a[i].pWLoop; const unsigned int reqFlags = (WHERE_SELFCULL|WHERE_COLUMN_EQ); if( (pLoop->wsFlags & reqFlags)==reqFlags /* vvvvvv--- Always the case if WHERE_COLUMN_EQ is defined */ && ALWAYS((pLoop->wsFlags & (WHERE_IPK|WHERE_INDEXED))!=0) ){ SrcItem *pItem = &pWInfo->pTabList->a[pLoop->iTab]; Table *pTab = pItem->pTab; pTab->tabFlags |= TF_StatsUsed; if( nSearch > pTab->nRowLogEst && (pTab->tabFlags & TF_HasStat1)!=0 ){ testcase( pItem->fg.jointype & JT_LEFT ); pLoop->wsFlags |= WHERE_BLOOMFILTER; pLoop->wsFlags &= ~WHERE_IDX_ONLY; WHERETRACE(0xffff, ( "-> use Bloom-filter on loop %c because there are ~%.1e " "lookups into %s which has only ~%.1e rows\n", pLoop->cId, (double)sqlite3LogEstToInt(nSearch), pTab->zName, (double)sqlite3LogEstToInt(pTab->nRowLogEst))); } } nSearch += pLoop->nOut; } } /* ** Generate the beginning of the loop used for WHERE clause processing. ** The return value is a pointer to an opaque structure that contains ** information needed to terminate the loop. Later, the calling routine ** should invoke sqlite3WhereEnd() with the return value of this function ** in order to complete the WHERE clause processing. ** ** If an error occurs, this routine returns NULL. ** ** The basic idea is to do a nested loop, one loop for each table in ** the FROM clause of a select. (INSERT and UPDATE statements are the ** same as a SELECT with only a single table in the FROM clause.) For ** example, if the SQL is this: ** ** SELECT * FROM t1, t2, t3 WHERE ...; ** ** Then the code generated is conceptually like the following: ** ** foreach row1 in t1 do \ Code generated ** foreach row2 in t2 do |-- by sqlite3WhereBegin() ** foreach row3 in t3 do / ** ... ** end \ Code generated ** end |-- by sqlite3WhereEnd() ** end / ** ** Note that the loops might not be nested in the order in which they ** appear in the FROM clause if a different order is better able to make ** use of indices. Note also that when the IN operator appears in ** the WHERE clause, it might result in additional nested loops for ** scanning through all values on the right-hand side of the IN. ** ** There are Btree cursors associated with each table. t1 uses cursor ** number pTabList->a[0].iCursor. t2 uses the cursor pTabList->a[1].iCursor. ** And so forth. This routine generates code to open those VDBE cursors ** and sqlite3WhereEnd() generates the code to close them. ** ** The code that sqlite3WhereBegin() generates leaves the cursors named ** in pTabList pointing at their appropriate entries. The [...] code ** can use OP_Column and OP_Rowid opcodes on these cursors to extract ** data from the various tables of the loop. ** ** If the WHERE clause is empty, the foreach loops must each scan their ** entire tables. Thus a three-way join is an O(N^3) operation. But if ** the tables have indices and there are terms in the WHERE clause that ** refer to those indices, a complete table scan can be avoided and the ** code will run much faster. Most of the work of this routine is checking ** to see if there are indices that can be used to speed up the loop. ** ** Terms of the WHERE clause are also used to limit which rows actually ** make it to the "..." in the middle of the loop. After each "foreach", ** terms of the WHERE clause that use only terms in that loop and outer ** loops are evaluated and if false a jump is made around all subsequent ** inner loops (or around the "..." if the test occurs within the inner- ** most loop) ** ** OUTER JOINS ** ** An outer join of tables t1 and t2 is conceptally coded as follows: ** ** foreach row1 in t1 do ** flag = 0 ** foreach row2 in t2 do ** start: ** ... ** flag = 1 ** end ** if flag==0 then ** move the row2 cursor to a null row ** goto start ** fi ** end ** ** ORDER BY CLAUSE PROCESSING ** ** pOrderBy is a pointer to the ORDER BY clause (or the GROUP BY clause ** if the WHERE_GROUPBY flag is set in wctrlFlags) of a SELECT statement ** if there is one. If there is no ORDER BY clause or if this routine ** is called from an UPDATE or DELETE statement, then pOrderBy is NULL. ** ** The iIdxCur parameter is the cursor number of an index. If ** WHERE_OR_SUBCLAUSE is set, iIdxCur is the cursor number of an index ** to use for OR clause processing. The WHERE clause should use this ** specific cursor. If WHERE_ONEPASS_DESIRED is set, then iIdxCur is ** the first cursor in an array of cursors for all indices. iIdxCur should ** be used to compute the appropriate cursor depending on which index is ** used. */ SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin( Parse *pParse, /* The parser context */ SrcList *pTabList, /* FROM clause: A list of all tables to be scanned */ Expr *pWhere, /* The WHERE clause */ ExprList *pOrderBy, /* An ORDER BY (or GROUP BY) clause, or NULL */ ExprList *pResultSet, /* Query result set. Req'd for DISTINCT */ Select *pLimit, /* Use this LIMIT/OFFSET clause, if any */ u16 wctrlFlags, /* The WHERE_* flags defined in sqliteInt.h */ int iAuxArg /* If WHERE_OR_SUBCLAUSE is set, index cursor number ** If WHERE_USE_LIMIT, then the limit amount */ ){ int nByteWInfo; /* Num. bytes allocated for WhereInfo struct */ int nTabList; /* Number of elements in pTabList */ WhereInfo *pWInfo; /* Will become the return value of this function */ Vdbe *v = pParse->pVdbe; /* The virtual database engine */ Bitmask notReady; /* Cursors that are not yet positioned */ WhereLoopBuilder sWLB; /* The WhereLoop builder */ WhereMaskSet *pMaskSet; /* The expression mask set */ WhereLevel *pLevel; /* A single level in pWInfo->a[] */ WhereLoop *pLoop; /* Pointer to a single WhereLoop object */ int ii; /* Loop counter */ sqlite3 *db; /* Database connection */ int rc; /* Return code */ u8 bFordelete = 0; /* OPFLAG_FORDELETE or zero, as appropriate */ assert( (wctrlFlags & WHERE_ONEPASS_MULTIROW)==0 || ( (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0 && (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 )); /* Only one of WHERE_OR_SUBCLAUSE or WHERE_USE_LIMIT */ assert( (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 || (wctrlFlags & WHERE_USE_LIMIT)==0 ); /* Variable initialization */ db = pParse->db; memset(&sWLB, 0, sizeof(sWLB)); /* An ORDER/GROUP BY clause of more than 63 terms cannot be optimized */ testcase( pOrderBy && pOrderBy->nExpr==BMS-1 ); if( pOrderBy && pOrderBy->nExpr>=BMS ) pOrderBy = 0; /* The number of tables in the FROM clause is limited by the number of ** bits in a Bitmask */ testcase( pTabList->nSrc==BMS ); if( pTabList->nSrc>BMS ){ sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS); return 0; } /* This function normally generates a nested loop for all tables in ** pTabList. But if the WHERE_OR_SUBCLAUSE flag is set, then we should ** only generate code for the first table in pTabList and assume that ** any cursors associated with subsequent tables are uninitialized. */ nTabList = (wctrlFlags & WHERE_OR_SUBCLAUSE) ? 1 : pTabList->nSrc; /* Allocate and initialize the WhereInfo structure that will become the ** return value. A single allocation is used to store the WhereInfo ** struct, the contents of WhereInfo.a[], the WhereClause structure ** and the WhereMaskSet structure. Since WhereClause contains an 8-byte ** field (type Bitmask) it must be aligned on an 8-byte boundary on ** some architectures. Hence the ROUND8() below. */ nByteWInfo = ROUND8(sizeof(WhereInfo)+(nTabList-1)*sizeof(WhereLevel)); pWInfo = sqlite3DbMallocRawNN(db, nByteWInfo + sizeof(WhereLoop)); if( db->mallocFailed ){ sqlite3DbFree(db, pWInfo); pWInfo = 0; goto whereBeginError; } pWInfo->pParse = pParse; pWInfo->pTabList = pTabList; pWInfo->pOrderBy = pOrderBy; pWInfo->pWhere = pWhere; pWInfo->pResultSet = pResultSet; pWInfo->aiCurOnePass[0] = pWInfo->aiCurOnePass[1] = -1; pWInfo->nLevel = nTabList; pWInfo->iBreak = pWInfo->iContinue = sqlite3VdbeMakeLabel(pParse); pWInfo->wctrlFlags = wctrlFlags; pWInfo->iLimit = iAuxArg; pWInfo->savedNQueryLoop = pParse->nQueryLoop; #ifndef SQLITE_OMIT_VIRTUALTABLE pWInfo->pLimit = pLimit; #endif memset(&pWInfo->nOBSat, 0, offsetof(WhereInfo,sWC) - offsetof(WhereInfo,nOBSat)); memset(&pWInfo->a[0], 0, sizeof(WhereLoop)+nTabList*sizeof(WhereLevel)); assert( pWInfo->eOnePass==ONEPASS_OFF ); /* ONEPASS defaults to OFF */ pMaskSet = &pWInfo->sMaskSet; pMaskSet->n = 0; pMaskSet->ix[0] = -99; /* Initialize ix[0] to a value that can never be ** a valid cursor number, to avoid an initial ** test for pMaskSet->n==0 in sqlite3WhereGetMask() */ sWLB.pWInfo = pWInfo; sWLB.pWC = &pWInfo->sWC; sWLB.pNew = (WhereLoop*)(((char*)pWInfo)+nByteWInfo); assert( EIGHT_BYTE_ALIGNMENT(sWLB.pNew) ); whereLoopInit(sWLB.pNew); #ifdef SQLITE_DEBUG sWLB.pNew->cId = '*'; #endif /* Split the WHERE clause into separate subexpressions where each ** subexpression is separated by an AND operator. */ sqlite3WhereClauseInit(&pWInfo->sWC, pWInfo); sqlite3WhereSplit(&pWInfo->sWC, pWhere, TK_AND); /* Special case: No FROM clause */ if( nTabList==0 ){ if( pOrderBy ) pWInfo->nOBSat = pOrderBy->nExpr; if( (wctrlFlags & WHERE_WANT_DISTINCT)!=0 && OptimizationEnabled(db, SQLITE_DistinctOpt) ){ pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; } ExplainQueryPlan((pParse, 0, "SCAN CONSTANT ROW")); }else{ /* Assign a bit from the bitmask to every term in the FROM clause. ** ** The N-th term of the FROM clause is assigned a bitmask of 1<nSrc tables in ** pTabList, not just the first nTabList tables. nTabList is normally ** equal to pTabList->nSrc but might be shortened to 1 if the ** WHERE_OR_SUBCLAUSE flag is set. */ ii = 0; do{ createMask(pMaskSet, pTabList->a[ii].iCursor); sqlite3WhereTabFuncArgs(pParse, &pTabList->a[ii], &pWInfo->sWC); }while( (++ii)nSrc ); #ifdef SQLITE_DEBUG { Bitmask mx = 0; for(ii=0; iinSrc; ii++){ Bitmask m = sqlite3WhereGetMask(pMaskSet, pTabList->a[ii].iCursor); assert( m>=mx ); mx = m; } } #endif } /* Analyze all of the subexpressions. */ sqlite3WhereExprAnalyze(pTabList, &pWInfo->sWC); sqlite3WhereAddLimit(&pWInfo->sWC, pLimit); if( db->mallocFailed ) goto whereBeginError; /* Special case: WHERE terms that do not refer to any tables in the join ** (constant expressions). Evaluate each such term, and jump over all the ** generated code if the result is not true. ** ** Do not do this if the expression contains non-deterministic functions ** that are not within a sub-select. This is not strictly required, but ** preserves SQLite's legacy behaviour in the following two cases: ** ** FROM ... WHERE random()>0; -- eval random() once per row ** FROM ... WHERE (SELECT random())>0; -- eval random() once overall */ for(ii=0; iinBase; ii++){ WhereTerm *pT = &sWLB.pWC->a[ii]; if( pT->wtFlags & TERM_VIRTUAL ) continue; if( pT->prereqAll==0 && (nTabList==0 || exprIsDeterministic(pT->pExpr)) ){ sqlite3ExprIfFalse(pParse, pT->pExpr, pWInfo->iBreak, SQLITE_JUMPIFNULL); pT->wtFlags |= TERM_CODED; } } if( wctrlFlags & WHERE_WANT_DISTINCT ){ if( OptimizationDisabled(db, SQLITE_DistinctOpt) ){ /* Disable the DISTINCT optimization if SQLITE_DistinctOpt is set via ** sqlite3_test_ctrl(SQLITE_TESTCTRL_OPTIMIZATIONS,...) */ wctrlFlags &= ~WHERE_WANT_DISTINCT; pWInfo->wctrlFlags &= ~WHERE_WANT_DISTINCT; }else if( isDistinctRedundant(pParse, pTabList, &pWInfo->sWC, pResultSet) ){ /* The DISTINCT marking is pointless. Ignore it. */ pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; }else if( pOrderBy==0 ){ /* Try to ORDER BY the result set to make distinct processing easier */ pWInfo->wctrlFlags |= WHERE_DISTINCTBY; pWInfo->pOrderBy = pResultSet; } } /* Construct the WhereLoop objects */ #if defined(WHERETRACE_ENABLED) if( sqlite3WhereTrace & 0xffff ){ sqlite3DebugPrintf("*** Optimizer Start *** (wctrlFlags: 0x%x",wctrlFlags); if( wctrlFlags & WHERE_USE_LIMIT ){ sqlite3DebugPrintf(", limit: %d", iAuxArg); } sqlite3DebugPrintf(")\n"); if( sqlite3WhereTrace & 0x100 ){ Select sSelect; memset(&sSelect, 0, sizeof(sSelect)); sSelect.selFlags = SF_WhereBegin; sSelect.pSrc = pTabList; sSelect.pWhere = pWhere; sSelect.pOrderBy = pOrderBy; sSelect.pEList = pResultSet; sqlite3TreeViewSelect(0, &sSelect, 0); } } if( sqlite3WhereTrace & 0x100 ){ /* Display all terms of the WHERE clause */ sqlite3DebugPrintf("---- WHERE clause at start of analysis:\n"); sqlite3WhereClausePrint(sWLB.pWC); } #endif if( nTabList!=1 || whereShortCut(&sWLB)==0 ){ rc = whereLoopAddAll(&sWLB); if( rc ) goto whereBeginError; #ifdef SQLITE_ENABLE_STAT4 /* If one or more WhereTerm.truthProb values were used in estimating ** loop parameters, but then those truthProb values were subsequently ** changed based on STAT4 information while computing subsequent loops, ** then we need to rerun the whole loop building process so that all ** loops will be built using the revised truthProb values. */ if( sWLB.bldFlags2 & SQLITE_BLDF2_2NDPASS ){ WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC); WHERETRACE(0xffff, ("**** Redo all loop computations due to" " TERM_HIGHTRUTH changes ****\n")); while( pWInfo->pLoops ){ WhereLoop *p = pWInfo->pLoops; pWInfo->pLoops = p->pNextLoop; whereLoopDelete(db, p); } rc = whereLoopAddAll(&sWLB); if( rc ) goto whereBeginError; } #endif WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC); wherePathSolver(pWInfo, 0); if( db->mallocFailed ) goto whereBeginError; if( pWInfo->pOrderBy ){ wherePathSolver(pWInfo, pWInfo->nRowOut+1); if( db->mallocFailed ) goto whereBeginError; } } if( pWInfo->pOrderBy==0 && (db->flags & SQLITE_ReverseOrder)!=0 ){ pWInfo->revMask = ALLBITS; } if( pParse->nErr ){ goto whereBeginError; } assert( db->mallocFailed==0 ); #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace ){ sqlite3DebugPrintf("---- Solution nRow=%d", pWInfo->nRowOut); if( pWInfo->nOBSat>0 ){ sqlite3DebugPrintf(" ORDERBY=%d,0x%llx", pWInfo->nOBSat, pWInfo->revMask); } switch( pWInfo->eDistinct ){ case WHERE_DISTINCT_UNIQUE: { sqlite3DebugPrintf(" DISTINCT=unique"); break; } case WHERE_DISTINCT_ORDERED: { sqlite3DebugPrintf(" DISTINCT=ordered"); break; } case WHERE_DISTINCT_UNORDERED: { sqlite3DebugPrintf(" DISTINCT=unordered"); break; } } sqlite3DebugPrintf("\n"); for(ii=0; iinLevel; ii++){ sqlite3WhereLoopPrint(pWInfo->a[ii].pWLoop, sWLB.pWC); } } #endif /* Attempt to omit tables from a join that do not affect the result. ** See the comment on whereOmitNoopJoin() for further information. ** ** This query optimization is factored out into a separate "no-inline" ** procedure to keep the sqlite3WhereBegin() procedure from becoming ** too large. If sqlite3WhereBegin() becomes too large, that prevents ** some C-compiler optimizers from in-lining the ** sqlite3WhereCodeOneLoopStart() procedure, and it is important to ** in-line sqlite3WhereCodeOneLoopStart() for performance reasons. */ notReady = ~(Bitmask)0; if( pWInfo->nLevel>=2 && pResultSet!=0 /* these two combine to guarantee */ && 0==(wctrlFlags & WHERE_AGG_DISTINCT) /* condition (1) above */ && OptimizationEnabled(db, SQLITE_OmitNoopJoin) ){ notReady = whereOmitNoopJoin(pWInfo, notReady); nTabList = pWInfo->nLevel; assert( nTabList>0 ); } /* Check to see if there are any SEARCH loops that might benefit from ** using a Bloom filter. */ if( pWInfo->nLevel>=2 && OptimizationEnabled(db, SQLITE_BloomFilter) ){ whereCheckIfBloomFilterIsUseful(pWInfo); } #if defined(WHERETRACE_ENABLED) if( sqlite3WhereTrace & 0x100 ){ /* Display all terms of the WHERE clause */ sqlite3DebugPrintf("---- WHERE clause at end of analysis:\n"); sqlite3WhereClausePrint(sWLB.pWC); } WHERETRACE(0xffff,("*** Optimizer Finished ***\n")); #endif pWInfo->pParse->nQueryLoop += pWInfo->nRowOut; /* If the caller is an UPDATE or DELETE statement that is requesting ** to use a one-pass algorithm, determine if this is appropriate. ** ** A one-pass approach can be used if the caller has requested one ** and either (a) the scan visits at most one row or (b) each ** of the following are true: ** ** * the caller has indicated that a one-pass approach can be used ** with multiple rows (by setting WHERE_ONEPASS_MULTIROW), and ** * the table is not a virtual table, and ** * either the scan does not use the OR optimization or the caller ** is a DELETE operation (WHERE_DUPLICATES_OK is only specified ** for DELETE). ** ** The last qualification is because an UPDATE statement uses ** WhereInfo.aiCurOnePass[1] to determine whether or not it really can ** use a one-pass approach, and this is not set accurately for scans ** that use the OR optimization. */ assert( (wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || pWInfo->nLevel==1 ); if( (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0 ){ int wsFlags = pWInfo->a[0].pWLoop->wsFlags; int bOnerow = (wsFlags & WHERE_ONEROW)!=0; assert( !(wsFlags & WHERE_VIRTUALTABLE) || IsVirtual(pTabList->a[0].pTab) ); if( bOnerow || ( 0!=(wctrlFlags & WHERE_ONEPASS_MULTIROW) && !IsVirtual(pTabList->a[0].pTab) && (0==(wsFlags & WHERE_MULTI_OR) || (wctrlFlags & WHERE_DUPLICATES_OK)) )){ pWInfo->eOnePass = bOnerow ? ONEPASS_SINGLE : ONEPASS_MULTI; if( HasRowid(pTabList->a[0].pTab) && (wsFlags & WHERE_IDX_ONLY) ){ if( wctrlFlags & WHERE_ONEPASS_MULTIROW ){ bFordelete = OPFLAG_FORDELETE; } pWInfo->a[0].pWLoop->wsFlags = (wsFlags & ~WHERE_IDX_ONLY); } } } /* Open all tables in the pTabList and any indices selected for ** searching those tables. */ for(ii=0, pLevel=pWInfo->a; iia[pLevel->iFrom]; pTab = pTabItem->pTab; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); pLoop = pLevel->pWLoop; if( (pTab->tabFlags & TF_Ephemeral)!=0 || IsView(pTab) ){ /* Do nothing */ }else #ifndef SQLITE_OMIT_VIRTUALTABLE if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); int iCur = pTabItem->iCursor; sqlite3VdbeAddOp4(v, OP_VOpen, iCur, 0, 0, pVTab, P4_VTAB); }else if( IsVirtual(pTab) ){ /* noop */ }else #endif if( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 && (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ int op = OP_OpenRead; if( pWInfo->eOnePass!=ONEPASS_OFF ){ op = OP_OpenWrite; pWInfo->aiCurOnePass[0] = pTabItem->iCursor; }; sqlite3OpenTable(pParse, pTabItem->iCursor, iDb, pTab, op); assert( pTabItem->iCursor==pLevel->iTabCur ); testcase( pWInfo->eOnePass==ONEPASS_OFF && pTab->nCol==BMS-1 ); testcase( pWInfo->eOnePass==ONEPASS_OFF && pTab->nCol==BMS ); if( pWInfo->eOnePass==ONEPASS_OFF && pTab->nColtabFlags & (TF_HasGenerated|TF_WithoutRowid))==0 && (pLoop->wsFlags & (WHERE_AUTO_INDEX|WHERE_BLOOMFILTER))==0 ){ /* If we know that only a prefix of the record will be used, ** it is advantageous to reduce the "column count" field in ** the P4 operand of the OP_OpenRead/Write opcode. */ Bitmask b = pTabItem->colUsed; int n = 0; for(; b; b=b>>1, n++){} sqlite3VdbeChangeP4(v, -1, SQLITE_INT_TO_PTR(n), P4_INT32); assert( n<=pTab->nCol ); } #ifdef SQLITE_ENABLE_CURSOR_HINTS if( pLoop->u.btree.pIndex!=0 ){ sqlite3VdbeChangeP5(v, OPFLAG_SEEKEQ|bFordelete); }else #endif { sqlite3VdbeChangeP5(v, bFordelete); } #ifdef SQLITE_ENABLE_COLUMN_USED_MASK sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed, pTabItem->iCursor, 0, 0, (const u8*)&pTabItem->colUsed, P4_INT64); #endif }else{ sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); } if( pLoop->wsFlags & WHERE_INDEXED ){ Index *pIx = pLoop->u.btree.pIndex; int iIndexCur; int op = OP_OpenRead; /* iAuxArg is always set to a positive value if ONEPASS is possible */ assert( iAuxArg!=0 || (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 ); if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIx) && (wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ){ /* This is one term of an OR-optimization using the PRIMARY KEY of a ** WITHOUT ROWID table. No need for a separate index */ iIndexCur = pLevel->iTabCur; op = 0; }else if( pWInfo->eOnePass!=ONEPASS_OFF ){ Index *pJ = pTabItem->pTab->pIndex; iIndexCur = iAuxArg; assert( wctrlFlags & WHERE_ONEPASS_DESIRED ); while( ALWAYS(pJ) && pJ!=pIx ){ iIndexCur++; pJ = pJ->pNext; } op = OP_OpenWrite; pWInfo->aiCurOnePass[1] = iIndexCur; }else if( iAuxArg && (wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ){ iIndexCur = iAuxArg; op = OP_ReopenIdx; }else{ iIndexCur = pParse->nTab++; } pLevel->iIdxCur = iIndexCur; assert( pIx->pSchema==pTab->pSchema ); assert( iIndexCur>=0 ); if( op ){ sqlite3VdbeAddOp3(v, op, iIndexCur, pIx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIx); if( (pLoop->wsFlags & WHERE_CONSTRAINT)!=0 && (pLoop->wsFlags & (WHERE_COLUMN_RANGE|WHERE_SKIPSCAN))==0 && (pLoop->wsFlags & WHERE_BIGNULL_SORT)==0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0 && (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)==0 && pWInfo->eDistinct!=WHERE_DISTINCT_ORDERED ){ sqlite3VdbeChangeP5(v, OPFLAG_SEEKEQ); } VdbeComment((v, "%s", pIx->zName)); #ifdef SQLITE_ENABLE_COLUMN_USED_MASK { u64 colUsed = 0; int ii, jj; for(ii=0; iinColumn; ii++){ jj = pIx->aiColumn[ii]; if( jj<0 ) continue; if( jj>63 ) jj = 63; if( (pTabItem->colUsed & MASKBIT(jj))==0 ) continue; colUsed |= ((u64)1)<<(ii<63 ? ii : 63); } sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed, iIndexCur, 0, 0, (u8*)&colUsed, P4_INT64); } #endif /* SQLITE_ENABLE_COLUMN_USED_MASK */ } } if( iDb>=0 ) sqlite3CodeVerifySchema(pParse, iDb); } pWInfo->iTop = sqlite3VdbeCurrentAddr(v); if( db->mallocFailed ) goto whereBeginError; /* Generate the code to do the search. Each iteration of the for ** loop below generates code for a single nested loop of the VM ** program. */ for(ii=0; iinErr ) goto whereBeginError; pLevel = &pWInfo->a[ii]; wsFlags = pLevel->pWLoop->wsFlags; if( (wsFlags & (WHERE_AUTO_INDEX|WHERE_BLOOMFILTER))!=0 ){ if( (wsFlags & WHERE_AUTO_INDEX)!=0 ){ #ifndef SQLITE_OMIT_AUTOMATIC_INDEX constructAutomaticIndex(pParse, &pWInfo->sWC, &pTabList->a[pLevel->iFrom], notReady, pLevel); #endif }else{ sqlite3ConstructBloomFilter(pWInfo, ii, pLevel, notReady); } if( db->mallocFailed ) goto whereBeginError; } addrExplain = sqlite3WhereExplainOneScan( pParse, pTabList, pLevel, wctrlFlags ); pLevel->addrBody = sqlite3VdbeCurrentAddr(v); notReady = sqlite3WhereCodeOneLoopStart(pParse,v,pWInfo,ii,pLevel,notReady); pWInfo->iContinue = pLevel->addrCont; if( (wsFlags&WHERE_MULTI_OR)==0 && (wctrlFlags&WHERE_OR_SUBCLAUSE)==0 ){ sqlite3WhereAddScanStatus(v, pTabList, pLevel, addrExplain); } } /* Done. */ VdbeModuleComment((v, "Begin WHERE-core")); pWInfo->iEndWhere = sqlite3VdbeCurrentAddr(v); return pWInfo; /* Jump here if malloc fails */ whereBeginError: if( pWInfo ){ testcase( pWInfo->pExprMods!=0 ); whereUndoExprMods(pWInfo); pParse->nQueryLoop = pWInfo->savedNQueryLoop; whereInfoFree(db, pWInfo); } return 0; } /* ** Part of sqlite3WhereEnd() will rewrite opcodes to reference the ** index rather than the main table. In SQLITE_DEBUG mode, we want ** to trace those changes if PRAGMA vdbe_addoptrace=on. This routine ** does that. */ #ifndef SQLITE_DEBUG # define OpcodeRewriteTrace(D,K,P) /* no-op */ #else # define OpcodeRewriteTrace(D,K,P) sqlite3WhereOpcodeRewriteTrace(D,K,P) static void sqlite3WhereOpcodeRewriteTrace( sqlite3 *db, int pc, VdbeOp *pOp ){ if( (db->flags & SQLITE_VdbeAddopTrace)==0 ) return; sqlite3VdbePrintOp(0, pc, pOp); } #endif /* ** Generate the end of the WHERE loop. See comments on ** sqlite3WhereBegin() for additional information. */ SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo *pWInfo){ Parse *pParse = pWInfo->pParse; Vdbe *v = pParse->pVdbe; int i; WhereLevel *pLevel; WhereLoop *pLoop; SrcList *pTabList = pWInfo->pTabList; sqlite3 *db = pParse->db; int iEnd = sqlite3VdbeCurrentAddr(v); /* Generate loop termination code. */ VdbeModuleComment((v, "End WHERE-core")); for(i=pWInfo->nLevel-1; i>=0; i--){ int addr; pLevel = &pWInfo->a[i]; pLoop = pLevel->pWLoop; if( pLevel->op!=OP_Noop ){ #ifndef SQLITE_DISABLE_SKIPAHEAD_DISTINCT int addrSeek = 0; Index *pIdx; int n; if( pWInfo->eDistinct==WHERE_DISTINCT_ORDERED && i==pWInfo->nLevel-1 /* Ticket [ef9318757b152e3] 2017-10-21 */ && (pLoop->wsFlags & WHERE_INDEXED)!=0 && (pIdx = pLoop->u.btree.pIndex)->hasStat1 && (n = pLoop->u.btree.nDistinctCol)>0 && pIdx->aiRowLogEst[n]>=36 ){ int r1 = pParse->nMem+1; int j, op; for(j=0; jiIdxCur, j, r1+j); } pParse->nMem += n+1; op = pLevel->op==OP_Prev ? OP_SeekLT : OP_SeekGT; addrSeek = sqlite3VdbeAddOp4Int(v, op, pLevel->iIdxCur, 0, r1, n); VdbeCoverageIf(v, op==OP_SeekLT); VdbeCoverageIf(v, op==OP_SeekGT); sqlite3VdbeAddOp2(v, OP_Goto, 1, pLevel->p2); } #endif /* SQLITE_DISABLE_SKIPAHEAD_DISTINCT */ /* The common case: Advance to the next row */ sqlite3VdbeResolveLabel(v, pLevel->addrCont); sqlite3VdbeAddOp3(v, pLevel->op, pLevel->p1, pLevel->p2, pLevel->p3); sqlite3VdbeChangeP5(v, pLevel->p5); VdbeCoverage(v); VdbeCoverageIf(v, pLevel->op==OP_Next); VdbeCoverageIf(v, pLevel->op==OP_Prev); VdbeCoverageIf(v, pLevel->op==OP_VNext); if( pLevel->regBignull ){ sqlite3VdbeResolveLabel(v, pLevel->addrBignull); sqlite3VdbeAddOp2(v, OP_DecrJumpZero, pLevel->regBignull, pLevel->p2-1); VdbeCoverage(v); } #ifndef SQLITE_DISABLE_SKIPAHEAD_DISTINCT if( addrSeek ) sqlite3VdbeJumpHere(v, addrSeek); #endif }else{ sqlite3VdbeResolveLabel(v, pLevel->addrCont); } if( (pLoop->wsFlags & WHERE_IN_ABLE)!=0 && pLevel->u.in.nIn>0 ){ struct InLoop *pIn; int j; sqlite3VdbeResolveLabel(v, pLevel->addrNxt); for(j=pLevel->u.in.nIn, pIn=&pLevel->u.in.aInLoop[j-1]; j>0; j--, pIn--){ assert( sqlite3VdbeGetOp(v, pIn->addrInTop+1)->opcode==OP_IsNull || pParse->db->mallocFailed ); sqlite3VdbeJumpHere(v, pIn->addrInTop+1); if( pIn->eEndLoopOp!=OP_Noop ){ if( pIn->nPrefix ){ int bEarlyOut = (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && (pLoop->wsFlags & WHERE_IN_EARLYOUT)!=0; if( pLevel->iLeftJoin ){ /* For LEFT JOIN queries, cursor pIn->iCur may not have been ** opened yet. This occurs for WHERE clauses such as ** "a = ? AND b IN (...)", where the index is on (a, b). If ** the RHS of the (a=?) is NULL, then the "b IN (...)" may ** never have been coded, but the body of the loop run to ** return the null-row. So, if the cursor is not open yet, ** jump over the OP_Next or OP_Prev instruction about to ** be coded. */ sqlite3VdbeAddOp2(v, OP_IfNotOpen, pIn->iCur, sqlite3VdbeCurrentAddr(v) + 2 + bEarlyOut); VdbeCoverage(v); } if( bEarlyOut ){ sqlite3VdbeAddOp4Int(v, OP_IfNoHope, pLevel->iIdxCur, sqlite3VdbeCurrentAddr(v)+2, pIn->iBase, pIn->nPrefix); VdbeCoverage(v); /* Retarget the OP_IsNull against the left operand of IN so ** it jumps past the OP_IfNoHope. This is because the ** OP_IsNull also bypasses the OP_Affinity opcode that is ** required by OP_IfNoHope. */ sqlite3VdbeJumpHere(v, pIn->addrInTop+1); } } sqlite3VdbeAddOp2(v, pIn->eEndLoopOp, pIn->iCur, pIn->addrInTop); VdbeCoverage(v); VdbeCoverageIf(v, pIn->eEndLoopOp==OP_Prev); VdbeCoverageIf(v, pIn->eEndLoopOp==OP_Next); } sqlite3VdbeJumpHere(v, pIn->addrInTop-1); } } sqlite3VdbeResolveLabel(v, pLevel->addrBrk); if( pLevel->addrSkip ){ sqlite3VdbeGoto(v, pLevel->addrSkip); VdbeComment((v, "next skip-scan on %s", pLoop->u.btree.pIndex->zName)); sqlite3VdbeJumpHere(v, pLevel->addrSkip); sqlite3VdbeJumpHere(v, pLevel->addrSkip-2); } #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( pLevel->addrLikeRep ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, (int)(pLevel->iLikeRepCntr>>1), pLevel->addrLikeRep); VdbeCoverage(v); } #endif if( pLevel->iLeftJoin ){ int ws = pLoop->wsFlags; addr = sqlite3VdbeAddOp1(v, OP_IfPos, pLevel->iLeftJoin); VdbeCoverage(v); assert( (ws & WHERE_IDX_ONLY)==0 || (ws & WHERE_INDEXED)!=0 ); if( (ws & WHERE_IDX_ONLY)==0 ){ assert( pLevel->iTabCur==pTabList->a[pLevel->iFrom].iCursor ); sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iTabCur); } if( (ws & WHERE_INDEXED) || ((ws & WHERE_MULTI_OR) && pLevel->u.pCoveringIdx) ){ if( ws & WHERE_MULTI_OR ){ Index *pIx = pLevel->u.pCoveringIdx; int iDb = sqlite3SchemaToIndex(db, pIx->pSchema); sqlite3VdbeAddOp3(v, OP_ReopenIdx, pLevel->iIdxCur, pIx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIx); } sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iIdxCur); } if( pLevel->op==OP_Return ){ sqlite3VdbeAddOp2(v, OP_Gosub, pLevel->p1, pLevel->addrFirst); }else{ sqlite3VdbeGoto(v, pLevel->addrFirst); } sqlite3VdbeJumpHere(v, addr); } VdbeModuleComment((v, "End WHERE-loop%d: %s", i, pWInfo->pTabList->a[pLevel->iFrom].pTab->zName)); } /* The "break" point is here, just past the end of the outer loop. ** Set it. */ sqlite3VdbeResolveLabel(v, pWInfo->iBreak); assert( pWInfo->nLevel<=pTabList->nSrc ); for(i=0, pLevel=pWInfo->a; inLevel; i++, pLevel++){ int k, last; VdbeOp *pOp, *pLastOp; Index *pIdx = 0; SrcItem *pTabItem = &pTabList->a[pLevel->iFrom]; Table *pTab = pTabItem->pTab; assert( pTab!=0 ); pLoop = pLevel->pWLoop; /* For a co-routine, change all OP_Column references to the table of ** the co-routine into OP_Copy of result contained in a register. ** OP_Rowid becomes OP_Null. */ if( pTabItem->fg.viaCoroutine ){ testcase( pParse->db->mallocFailed ); translateColumnToCopy(pParse, pLevel->addrBody, pLevel->iTabCur, pTabItem->regResult, 0); continue; } #ifdef SQLITE_ENABLE_EARLY_CURSOR_CLOSE /* Close all of the cursors that were opened by sqlite3WhereBegin. ** Except, do not close cursors that will be reused by the OR optimization ** (WHERE_OR_SUBCLAUSE). And do not close the OP_OpenWrite cursors ** created for the ONEPASS optimization. */ if( (pTab->tabFlags & TF_Ephemeral)==0 && !IsView(pTab) && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ int ws = pLoop->wsFlags; if( pWInfo->eOnePass==ONEPASS_OFF && (ws & WHERE_IDX_ONLY)==0 ){ sqlite3VdbeAddOp1(v, OP_Close, pTabItem->iCursor); } if( (ws & WHERE_INDEXED)!=0 && (ws & (WHERE_IPK|WHERE_AUTO_INDEX))==0 && pLevel->iIdxCur!=pWInfo->aiCurOnePass[1] ){ sqlite3VdbeAddOp1(v, OP_Close, pLevel->iIdxCur); } } #endif /* If this scan uses an index, make VDBE code substitutions to read data ** from the index instead of from the table where possible. In some cases ** this optimization prevents the table from ever being read, which can ** yield a significant performance boost. ** ** Calls to the code generator in between sqlite3WhereBegin and ** sqlite3WhereEnd will have created code that references the table ** directly. This loop scans all that code looking for opcodes ** that reference the table and converts them into opcodes that ** reference the index. */ if( pLoop->wsFlags & (WHERE_INDEXED|WHERE_IDX_ONLY) ){ pIdx = pLoop->u.btree.pIndex; }else if( pLoop->wsFlags & WHERE_MULTI_OR ){ pIdx = pLevel->u.pCoveringIdx; } if( pIdx && !db->mallocFailed ){ if( pWInfo->eOnePass==ONEPASS_OFF || !HasRowid(pIdx->pTable) ){ last = iEnd; }else{ last = pWInfo->iEndWhere; } k = pLevel->addrBody + 1; #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeAddopTrace ){ printf("TRANSLATE opcodes in range %d..%d\n", k, last-1); } /* Proof that the "+1" on the k value above is safe */ pOp = sqlite3VdbeGetOp(v, k - 1); assert( pOp->opcode!=OP_Column || pOp->p1!=pLevel->iTabCur ); assert( pOp->opcode!=OP_Rowid || pOp->p1!=pLevel->iTabCur ); assert( pOp->opcode!=OP_IfNullRow || pOp->p1!=pLevel->iTabCur ); #endif pOp = sqlite3VdbeGetOp(v, k); pLastOp = pOp + (last - k); assert( pOp<=pLastOp ); do{ if( pOp->p1!=pLevel->iTabCur ){ /* no-op */ }else if( pOp->opcode==OP_Column #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC || pOp->opcode==OP_Offset #endif ){ int x = pOp->p2; assert( pIdx->pTable==pTab ); if( !HasRowid(pTab) ){ Index *pPk = sqlite3PrimaryKeyIndex(pTab); x = pPk->aiColumn[x]; assert( x>=0 ); }else{ testcase( x!=sqlite3StorageColumnToTable(pTab,x) ); x = sqlite3StorageColumnToTable(pTab,x); } x = sqlite3TableColumnToIndex(pIdx, x); if( x>=0 ){ pOp->p2 = x; pOp->p1 = pLevel->iIdxCur; OpcodeRewriteTrace(db, k, pOp); } assert( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 || x>=0 || pWInfo->eOnePass ); }else if( pOp->opcode==OP_Rowid ){ pOp->p1 = pLevel->iIdxCur; pOp->opcode = OP_IdxRowid; OpcodeRewriteTrace(db, k, pOp); }else if( pOp->opcode==OP_IfNullRow ){ pOp->p1 = pLevel->iIdxCur; OpcodeRewriteTrace(db, k, pOp); } #ifdef SQLITE_DEBUG k++; #endif }while( (++pOp)flags & SQLITE_VdbeAddopTrace ) printf("TRANSLATE complete\n"); #endif } } /* Final cleanup */ if( pWInfo->pExprMods ) whereUndoExprMods(pWInfo); pParse->nQueryLoop = pWInfo->savedNQueryLoop; whereInfoFree(db, pWInfo); return; } /************** End of where.c ***********************************************/ /************** Begin file window.c ******************************************/ /* ** 2018 May 08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_WINDOWFUNC /* ** SELECT REWRITING ** ** Any SELECT statement that contains one or more window functions in ** either the select list or ORDER BY clause (the only two places window ** functions may be used) is transformed by function sqlite3WindowRewrite() ** in order to support window function processing. For example, with the ** schema: ** ** CREATE TABLE t1(a, b, c, d, e, f, g); ** ** the statement: ** ** SELECT a+1, max(b) OVER (PARTITION BY c ORDER BY d) FROM t1 ORDER BY e; ** ** is transformed to: ** ** SELECT a+1, max(b) OVER (PARTITION BY c ORDER BY d) FROM ( ** SELECT a, e, c, d, b FROM t1 ORDER BY c, d ** ) ORDER BY e; ** ** The flattening optimization is disabled when processing this transformed ** SELECT statement. This allows the implementation of the window function ** (in this case max()) to process rows sorted in order of (c, d), which ** makes things easier for obvious reasons. More generally: ** ** * FROM, WHERE, GROUP BY and HAVING clauses are all moved to ** the sub-query. ** ** * ORDER BY, LIMIT and OFFSET remain part of the parent query. ** ** * Terminals from each of the expression trees that make up the ** select-list and ORDER BY expressions in the parent query are ** selected by the sub-query. For the purposes of the transformation, ** terminals are column references and aggregate functions. ** ** If there is more than one window function in the SELECT that uses ** the same window declaration (the OVER bit), then a single scan may ** be used to process more than one window function. For example: ** ** SELECT max(b) OVER (PARTITION BY c ORDER BY d), ** min(e) OVER (PARTITION BY c ORDER BY d) ** FROM t1; ** ** is transformed in the same way as the example above. However: ** ** SELECT max(b) OVER (PARTITION BY c ORDER BY d), ** min(e) OVER (PARTITION BY a ORDER BY b) ** FROM t1; ** ** Must be transformed to: ** ** SELECT max(b) OVER (PARTITION BY c ORDER BY d) FROM ( ** SELECT e, min(e) OVER (PARTITION BY a ORDER BY b), c, d, b FROM ** SELECT a, e, c, d, b FROM t1 ORDER BY a, b ** ) ORDER BY c, d ** ) ORDER BY e; ** ** so that both min() and max() may process rows in the order defined by ** their respective window declarations. ** ** INTERFACE WITH SELECT.C ** ** When processing the rewritten SELECT statement, code in select.c calls ** sqlite3WhereBegin() to begin iterating through the results of the ** sub-query, which is always implemented as a co-routine. It then calls ** sqlite3WindowCodeStep() to process rows and finish the scan by calling ** sqlite3WhereEnd(). ** ** sqlite3WindowCodeStep() generates VM code so that, for each row returned ** by the sub-query a sub-routine (OP_Gosub) coded by select.c is invoked. ** When the sub-routine is invoked: ** ** * The results of all window-functions for the row are stored ** in the associated Window.regResult registers. ** ** * The required terminal values are stored in the current row of ** temp table Window.iEphCsr. ** ** In some cases, depending on the window frame and the specific window ** functions invoked, sqlite3WindowCodeStep() caches each entire partition ** in a temp table before returning any rows. In other cases it does not. ** This detail is encapsulated within this file, the code generated by ** select.c is the same in either case. ** ** BUILT-IN WINDOW FUNCTIONS ** ** This implementation features the following built-in window functions: ** ** row_number() ** rank() ** dense_rank() ** percent_rank() ** cume_dist() ** ntile(N) ** lead(expr [, offset [, default]]) ** lag(expr [, offset [, default]]) ** first_value(expr) ** last_value(expr) ** nth_value(expr, N) ** ** These are the same built-in window functions supported by Postgres. ** Although the behaviour of aggregate window functions (functions that ** can be used as either aggregates or window funtions) allows them to ** be implemented using an API, built-in window functions are much more ** esoteric. Additionally, some window functions (e.g. nth_value()) ** may only be implemented by caching the entire partition in memory. ** As such, some built-in window functions use the same API as aggregate ** window functions and some are implemented directly using VDBE ** instructions. Additionally, for those functions that use the API, the ** window frame is sometimes modified before the SELECT statement is ** rewritten. For example, regardless of the specified window frame, the ** row_number() function always uses: ** ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW ** ** See sqlite3WindowUpdate() for details. ** ** As well as some of the built-in window functions, aggregate window ** functions min() and max() are implemented using VDBE instructions if ** the start of the window frame is declared as anything other than ** UNBOUNDED PRECEDING. */ /* ** Implementation of built-in window function row_number(). Assumes that the ** window frame has been coerced to: ** ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW */ static void row_numberStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ) (*p)++; UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void row_numberValueFunc(sqlite3_context *pCtx){ i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); sqlite3_result_int64(pCtx, (p ? *p : 0)); } /* ** Context object type used by rank(), dense_rank(), percent_rank() and ** cume_dist(). */ struct CallCount { i64 nValue; i64 nStep; i64 nTotal; }; /* ** Implementation of built-in window function dense_rank(). Assumes that ** the window frame has been set to: ** ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW */ static void dense_rankStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ) p->nStep = 1; UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void dense_rankValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ if( p->nStep ){ p->nValue++; p->nStep = 0; } sqlite3_result_int64(pCtx, p->nValue); } } /* ** Implementation of built-in window function nth_value(). This ** implementation is used in "slow mode" only - when the EXCLUDE clause ** is not set to the default value "NO OTHERS". */ struct NthValueCtx { i64 nStep; sqlite3_value *pValue; }; static void nth_valueStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ i64 iVal; switch( sqlite3_value_numeric_type(apArg[1]) ){ case SQLITE_INTEGER: iVal = sqlite3_value_int64(apArg[1]); break; case SQLITE_FLOAT: { double fVal = sqlite3_value_double(apArg[1]); if( ((i64)fVal)!=fVal ) goto error_out; iVal = (i64)fVal; break; } default: goto error_out; } if( iVal<=0 ) goto error_out; p->nStep++; if( iVal==p->nStep ){ p->pValue = sqlite3_value_dup(apArg[0]); if( !p->pValue ){ sqlite3_result_error_nomem(pCtx); } } } UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); return; error_out: sqlite3_result_error( pCtx, "second argument to nth_value must be a positive integer", -1 ); } static void nth_valueFinalizeFunc(sqlite3_context *pCtx){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, 0); if( p && p->pValue ){ sqlite3_result_value(pCtx, p->pValue); sqlite3_value_free(p->pValue); p->pValue = 0; } } #define nth_valueInvFunc noopStepFunc #define nth_valueValueFunc noopValueFunc static void first_valueStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->pValue==0 ){ p->pValue = sqlite3_value_dup(apArg[0]); if( !p->pValue ){ sqlite3_result_error_nomem(pCtx); } } UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void first_valueFinalizeFunc(sqlite3_context *pCtx){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->pValue ){ sqlite3_result_value(pCtx, p->pValue); sqlite3_value_free(p->pValue); p->pValue = 0; } } #define first_valueInvFunc noopStepFunc #define first_valueValueFunc noopValueFunc /* ** Implementation of built-in window function rank(). Assumes that ** the window frame has been set to: ** ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW */ static void rankStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nStep++; if( p->nValue==0 ){ p->nValue = p->nStep; } } UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void rankValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ sqlite3_result_int64(pCtx, p->nValue); p->nValue = 0; } } /* ** Implementation of built-in window function percent_rank(). Assumes that ** the window frame has been set to: ** ** GROUPS BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING */ static void percent_rankStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nTotal++; } } static void percent_rankInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); p->nStep++; } static void percent_rankValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nValue = p->nStep; if( p->nTotal>1 ){ double r = (double)p->nValue / (double)(p->nTotal-1); sqlite3_result_double(pCtx, r); }else{ sqlite3_result_double(pCtx, 0.0); } } } #define percent_rankFinalizeFunc percent_rankValueFunc /* ** Implementation of built-in window function cume_dist(). Assumes that ** the window frame has been set to: ** ** GROUPS BETWEEN 1 FOLLOWING AND UNBOUNDED FOLLOWING */ static void cume_distStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nTotal++; } } static void cume_distInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); p->nStep++; } static void cume_distValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, 0); if( p ){ double r = (double)(p->nStep) / (double)(p->nTotal); sqlite3_result_double(pCtx, r); } } #define cume_distFinalizeFunc cume_distValueFunc /* ** Context object for ntile() window function. */ struct NtileCtx { i64 nTotal; /* Total rows in partition */ i64 nParam; /* Parameter passed to ntile(N) */ i64 iRow; /* Current row */ }; /* ** Implementation of ntile(). This assumes that the window frame has ** been coerced to: ** ** ROWS CURRENT ROW AND UNBOUNDED FOLLOWING */ static void ntileStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NtileCtx *p; assert( nArg==1 ); UNUSED_PARAMETER(nArg); p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ if( p->nTotal==0 ){ p->nParam = sqlite3_value_int64(apArg[0]); if( p->nParam<=0 ){ sqlite3_result_error( pCtx, "argument of ntile must be a positive integer", -1 ); } } p->nTotal++; } } static void ntileInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NtileCtx *p; assert( nArg==1 ); UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); p->iRow++; } static void ntileValueFunc(sqlite3_context *pCtx){ struct NtileCtx *p; p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->nParam>0 ){ int nSize = (p->nTotal / p->nParam); if( nSize==0 ){ sqlite3_result_int64(pCtx, p->iRow+1); }else{ i64 nLarge = p->nTotal - p->nParam*nSize; i64 iSmall = nLarge*(nSize+1); i64 iRow = p->iRow; assert( (nLarge*(nSize+1) + (p->nParam-nLarge)*nSize)==p->nTotal ); if( iRowpVal); p->pVal = sqlite3_value_dup(apArg[0]); if( p->pVal==0 ){ sqlite3_result_error_nomem(pCtx); }else{ p->nVal++; } } } static void last_valueInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct LastValueCtx *p; UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( ALWAYS(p) ){ p->nVal--; if( p->nVal==0 ){ sqlite3_value_free(p->pVal); p->pVal = 0; } } } static void last_valueValueFunc(sqlite3_context *pCtx){ struct LastValueCtx *p; p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, 0); if( p && p->pVal ){ sqlite3_result_value(pCtx, p->pVal); } } static void last_valueFinalizeFunc(sqlite3_context *pCtx){ struct LastValueCtx *p; p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->pVal ){ sqlite3_result_value(pCtx, p->pVal); sqlite3_value_free(p->pVal); p->pVal = 0; } } /* ** Static names for the built-in window function names. These static ** names are used, rather than string literals, so that FuncDef objects ** can be associated with a particular window function by direct ** comparison of the zName pointer. Example: ** ** if( pFuncDef->zName==row_valueName ){ ... } */ static const char row_numberName[] = "row_number"; static const char dense_rankName[] = "dense_rank"; static const char rankName[] = "rank"; static const char percent_rankName[] = "percent_rank"; static const char cume_distName[] = "cume_dist"; static const char ntileName[] = "ntile"; static const char last_valueName[] = "last_value"; static const char nth_valueName[] = "nth_value"; static const char first_valueName[] = "first_value"; static const char leadName[] = "lead"; static const char lagName[] = "lag"; /* ** No-op implementations of xStep() and xFinalize(). Used as place-holders ** for built-in window functions that never call those interfaces. ** ** The noopValueFunc() is called but is expected to do nothing. The ** noopStepFunc() is never called, and so it is marked with NO_TEST to ** let the test coverage routine know not to expect this function to be ** invoked. */ static void noopStepFunc( /*NO_TEST*/ sqlite3_context *p, /*NO_TEST*/ int n, /*NO_TEST*/ sqlite3_value **a /*NO_TEST*/ ){ /*NO_TEST*/ UNUSED_PARAMETER(p); /*NO_TEST*/ UNUSED_PARAMETER(n); /*NO_TEST*/ UNUSED_PARAMETER(a); /*NO_TEST*/ assert(0); /*NO_TEST*/ } /*NO_TEST*/ static void noopValueFunc(sqlite3_context *p){ UNUSED_PARAMETER(p); /*no-op*/ } /* Window functions that use all window interfaces: xStep, xFinal, ** xValue, and xInverse */ #define WINDOWFUNCALL(name,nArg,extra) { \ nArg, (SQLITE_FUNC_BUILTIN|SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ name ## StepFunc, name ## FinalizeFunc, name ## ValueFunc, \ name ## InvFunc, name ## Name, {0} \ } /* Window functions that are implemented using bytecode and thus have ** no-op routines for their methods */ #define WINDOWFUNCNOOP(name,nArg,extra) { \ nArg, (SQLITE_FUNC_BUILTIN|SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ noopStepFunc, noopValueFunc, noopValueFunc, \ noopStepFunc, name ## Name, {0} \ } /* Window functions that use all window interfaces: xStep, the ** same routine for xFinalize and xValue and which never call ** xInverse. */ #define WINDOWFUNCX(name,nArg,extra) { \ nArg, (SQLITE_FUNC_BUILTIN|SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ name ## StepFunc, name ## ValueFunc, name ## ValueFunc, \ noopStepFunc, name ## Name, {0} \ } /* ** Register those built-in window functions that are not also aggregates. */ SQLITE_PRIVATE void sqlite3WindowFunctions(void){ static FuncDef aWindowFuncs[] = { WINDOWFUNCX(row_number, 0, 0), WINDOWFUNCX(dense_rank, 0, 0), WINDOWFUNCX(rank, 0, 0), WINDOWFUNCALL(percent_rank, 0, 0), WINDOWFUNCALL(cume_dist, 0, 0), WINDOWFUNCALL(ntile, 1, 0), WINDOWFUNCALL(last_value, 1, 0), WINDOWFUNCALL(nth_value, 2, 0), WINDOWFUNCALL(first_value, 1, 0), WINDOWFUNCNOOP(lead, 1, 0), WINDOWFUNCNOOP(lead, 2, 0), WINDOWFUNCNOOP(lead, 3, 0), WINDOWFUNCNOOP(lag, 1, 0), WINDOWFUNCNOOP(lag, 2, 0), WINDOWFUNCNOOP(lag, 3, 0), }; sqlite3InsertBuiltinFuncs(aWindowFuncs, ArraySize(aWindowFuncs)); } static Window *windowFind(Parse *pParse, Window *pList, const char *zName){ Window *p; for(p=pList; p; p=p->pNextWin){ if( sqlite3StrICmp(p->zName, zName)==0 ) break; } if( p==0 ){ sqlite3ErrorMsg(pParse, "no such window: %s", zName); } return p; } /* ** This function is called immediately after resolving the function name ** for a window function within a SELECT statement. Argument pList is a ** linked list of WINDOW definitions for the current SELECT statement. ** Argument pFunc is the function definition just resolved and pWin ** is the Window object representing the associated OVER clause. This ** function updates the contents of pWin as follows: ** ** * If the OVER clause refered to a named window (as in "max(x) OVER win"), ** search list pList for a matching WINDOW definition, and update pWin ** accordingly. If no such WINDOW clause can be found, leave an error ** in pParse. ** ** * If the function is a built-in window function that requires the ** window to be coerced (see "BUILT-IN WINDOW FUNCTIONS" at the top ** of this file), pWin is updated here. */ SQLITE_PRIVATE void sqlite3WindowUpdate( Parse *pParse, Window *pList, /* List of named windows for this SELECT */ Window *pWin, /* Window frame to update */ FuncDef *pFunc /* Window function definition */ ){ if( pWin->zName && pWin->eFrmType==0 ){ Window *p = windowFind(pParse, pList, pWin->zName); if( p==0 ) return; pWin->pPartition = sqlite3ExprListDup(pParse->db, p->pPartition, 0); pWin->pOrderBy = sqlite3ExprListDup(pParse->db, p->pOrderBy, 0); pWin->pStart = sqlite3ExprDup(pParse->db, p->pStart, 0); pWin->pEnd = sqlite3ExprDup(pParse->db, p->pEnd, 0); pWin->eStart = p->eStart; pWin->eEnd = p->eEnd; pWin->eFrmType = p->eFrmType; pWin->eExclude = p->eExclude; }else{ sqlite3WindowChain(pParse, pWin, pList); } if( (pWin->eFrmType==TK_RANGE) && (pWin->pStart || pWin->pEnd) && (pWin->pOrderBy==0 || pWin->pOrderBy->nExpr!=1) ){ sqlite3ErrorMsg(pParse, "RANGE with offset PRECEDING/FOLLOWING requires one ORDER BY expression" ); }else if( pFunc->funcFlags & SQLITE_FUNC_WINDOW ){ sqlite3 *db = pParse->db; if( pWin->pFilter ){ sqlite3ErrorMsg(pParse, "FILTER clause may only be used with aggregate window functions" ); }else{ struct WindowUpdate { const char *zFunc; int eFrmType; int eStart; int eEnd; } aUp[] = { { row_numberName, TK_ROWS, TK_UNBOUNDED, TK_CURRENT }, { dense_rankName, TK_RANGE, TK_UNBOUNDED, TK_CURRENT }, { rankName, TK_RANGE, TK_UNBOUNDED, TK_CURRENT }, { percent_rankName, TK_GROUPS, TK_CURRENT, TK_UNBOUNDED }, { cume_distName, TK_GROUPS, TK_FOLLOWING, TK_UNBOUNDED }, { ntileName, TK_ROWS, TK_CURRENT, TK_UNBOUNDED }, { leadName, TK_ROWS, TK_UNBOUNDED, TK_UNBOUNDED }, { lagName, TK_ROWS, TK_UNBOUNDED, TK_CURRENT }, }; int i; for(i=0; izName==aUp[i].zFunc ){ sqlite3ExprDelete(db, pWin->pStart); sqlite3ExprDelete(db, pWin->pEnd); pWin->pEnd = pWin->pStart = 0; pWin->eFrmType = aUp[i].eFrmType; pWin->eStart = aUp[i].eStart; pWin->eEnd = aUp[i].eEnd; pWin->eExclude = 0; if( pWin->eStart==TK_FOLLOWING ){ pWin->pStart = sqlite3Expr(db, TK_INTEGER, "1"); } break; } } } } pWin->pFunc = pFunc; } /* ** Context object passed through sqlite3WalkExprList() to ** selectWindowRewriteExprCb() by selectWindowRewriteEList(). */ typedef struct WindowRewrite WindowRewrite; struct WindowRewrite { Window *pWin; SrcList *pSrc; ExprList *pSub; Table *pTab; Select *pSubSelect; /* Current sub-select, if any */ }; /* ** Callback function used by selectWindowRewriteEList(). If necessary, ** this function appends to the output expression-list and updates ** expression (*ppExpr) in place. */ static int selectWindowRewriteExprCb(Walker *pWalker, Expr *pExpr){ struct WindowRewrite *p = pWalker->u.pRewrite; Parse *pParse = pWalker->pParse; assert( p!=0 ); assert( p->pWin!=0 ); /* If this function is being called from within a scalar sub-select ** that used by the SELECT statement being processed, only process ** TK_COLUMN expressions that refer to it (the outer SELECT). Do ** not process aggregates or window functions at all, as they belong ** to the scalar sub-select. */ if( p->pSubSelect ){ if( pExpr->op!=TK_COLUMN ){ return WRC_Continue; }else{ int nSrc = p->pSrc->nSrc; int i; for(i=0; iiTable==p->pSrc->a[i].iCursor ) break; } if( i==nSrc ) return WRC_Continue; } } switch( pExpr->op ){ case TK_FUNCTION: if( !ExprHasProperty(pExpr, EP_WinFunc) ){ break; }else{ Window *pWin; for(pWin=p->pWin; pWin; pWin=pWin->pNextWin){ if( pExpr->y.pWin==pWin ){ assert( pWin->pOwner==pExpr ); return WRC_Prune; } } } /* no break */ deliberate_fall_through case TK_AGG_FUNCTION: case TK_COLUMN: { int iCol = -1; if( pParse->db->mallocFailed ) return WRC_Abort; if( p->pSub ){ int i; for(i=0; ipSub->nExpr; i++){ if( 0==sqlite3ExprCompare(0, p->pSub->a[i].pExpr, pExpr, -1) ){ iCol = i; break; } } } if( iCol<0 ){ Expr *pDup = sqlite3ExprDup(pParse->db, pExpr, 0); if( pDup && pDup->op==TK_AGG_FUNCTION ) pDup->op = TK_FUNCTION; p->pSub = sqlite3ExprListAppend(pParse, p->pSub, pDup); } if( p->pSub ){ int f = pExpr->flags & EP_Collate; assert( ExprHasProperty(pExpr, EP_Static)==0 ); ExprSetProperty(pExpr, EP_Static); sqlite3ExprDelete(pParse->db, pExpr); ExprClearProperty(pExpr, EP_Static); memset(pExpr, 0, sizeof(Expr)); pExpr->op = TK_COLUMN; pExpr->iColumn = (iCol<0 ? p->pSub->nExpr-1: iCol); pExpr->iTable = p->pWin->iEphCsr; pExpr->y.pTab = p->pTab; pExpr->flags = f; } if( pParse->db->mallocFailed ) return WRC_Abort; break; } default: /* no-op */ break; } return WRC_Continue; } static int selectWindowRewriteSelectCb(Walker *pWalker, Select *pSelect){ struct WindowRewrite *p = pWalker->u.pRewrite; Select *pSave = p->pSubSelect; if( pSave==pSelect ){ return WRC_Continue; }else{ p->pSubSelect = pSelect; sqlite3WalkSelect(pWalker, pSelect); p->pSubSelect = pSave; } return WRC_Prune; } /* ** Iterate through each expression in expression-list pEList. For each: ** ** * TK_COLUMN, ** * aggregate function, or ** * window function with a Window object that is not a member of the ** Window list passed as the second argument (pWin). ** ** Append the node to output expression-list (*ppSub). And replace it ** with a TK_COLUMN that reads the (N-1)th element of table ** pWin->iEphCsr, where N is the number of elements in (*ppSub) after ** appending the new one. */ static void selectWindowRewriteEList( Parse *pParse, Window *pWin, SrcList *pSrc, ExprList *pEList, /* Rewrite expressions in this list */ Table *pTab, ExprList **ppSub /* IN/OUT: Sub-select expression-list */ ){ Walker sWalker; WindowRewrite sRewrite; assert( pWin!=0 ); memset(&sWalker, 0, sizeof(Walker)); memset(&sRewrite, 0, sizeof(WindowRewrite)); sRewrite.pSub = *ppSub; sRewrite.pWin = pWin; sRewrite.pSrc = pSrc; sRewrite.pTab = pTab; sWalker.pParse = pParse; sWalker.xExprCallback = selectWindowRewriteExprCb; sWalker.xSelectCallback = selectWindowRewriteSelectCb; sWalker.u.pRewrite = &sRewrite; (void)sqlite3WalkExprList(&sWalker, pEList); *ppSub = sRewrite.pSub; } /* ** Append a copy of each expression in expression-list pAppend to ** expression list pList. Return a pointer to the result list. */ static ExprList *exprListAppendList( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to append. Might be NULL */ ExprList *pAppend, /* List of values to append. Might be NULL */ int bIntToNull ){ if( pAppend ){ int i; int nInit = pList ? pList->nExpr : 0; for(i=0; inExpr; i++){ sqlite3 *db = pParse->db; Expr *pDup = sqlite3ExprDup(db, pAppend->a[i].pExpr, 0); assert( pDup==0 || !ExprHasProperty(pDup, EP_MemToken) ); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDup); break; } if( bIntToNull ){ int iDummy; Expr *pSub; pSub = sqlite3ExprSkipCollateAndLikely(pDup); if( sqlite3ExprIsInteger(pSub, &iDummy) ){ pSub->op = TK_NULL; pSub->flags &= ~(EP_IntValue|EP_IsTrue|EP_IsFalse); pSub->u.zToken = 0; } } pList = sqlite3ExprListAppend(pParse, pList, pDup); if( pList ) pList->a[nInit+i].sortFlags = pAppend->a[i].sortFlags; } } return pList; } /* ** When rewriting a query, if the new subquery in the FROM clause ** contains TK_AGG_FUNCTION nodes that refer to an outer query, ** then we have to increase the Expr->op2 values of those nodes ** due to the extra subquery layer that was added. ** ** See also the incrAggDepth() routine in resolve.c */ static int sqlite3WindowExtraAggFuncDepth(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_AGG_FUNCTION && pExpr->op2>=pWalker->walkerDepth ){ pExpr->op2++; } return WRC_Continue; } static int disallowAggregatesInOrderByCb(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_AGG_FUNCTION && pExpr->pAggInfo==0 ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3ErrorMsg(pWalker->pParse, "misuse of aggregate: %s()", pExpr->u.zToken); } return WRC_Continue; } /* ** If the SELECT statement passed as the second argument does not invoke ** any SQL window functions, this function is a no-op. Otherwise, it ** rewrites the SELECT statement so that window function xStep functions ** are invoked in the correct order as described under "SELECT REWRITING" ** at the top of this file. */ SQLITE_PRIVATE int sqlite3WindowRewrite(Parse *pParse, Select *p){ int rc = SQLITE_OK; if( p->pWin && p->pPrior==0 && ALWAYS((p->selFlags & SF_WinRewrite)==0) ){ Vdbe *v = sqlite3GetVdbe(pParse); sqlite3 *db = pParse->db; Select *pSub = 0; /* The subquery */ SrcList *pSrc = p->pSrc; Expr *pWhere = p->pWhere; ExprList *pGroupBy = p->pGroupBy; Expr *pHaving = p->pHaving; ExprList *pSort = 0; ExprList *pSublist = 0; /* Expression list for sub-query */ Window *pMWin = p->pWin; /* Main window object */ Window *pWin; /* Window object iterator */ Table *pTab; Walker w; u32 selFlags = p->selFlags; pTab = sqlite3DbMallocZero(db, sizeof(Table)); if( pTab==0 ){ return sqlite3ErrorToParser(db, SQLITE_NOMEM); } sqlite3AggInfoPersistWalkerInit(&w, pParse); sqlite3WalkSelect(&w, p); if( (p->selFlags & SF_Aggregate)==0 ){ w.xExprCallback = disallowAggregatesInOrderByCb; w.xSelectCallback = 0; sqlite3WalkExprList(&w, p->pOrderBy); } p->pSrc = 0; p->pWhere = 0; p->pGroupBy = 0; p->pHaving = 0; p->selFlags &= ~SF_Aggregate; p->selFlags |= SF_WinRewrite; /* Create the ORDER BY clause for the sub-select. This is the concatenation ** of the window PARTITION and ORDER BY clauses. Then, if this makes it ** redundant, remove the ORDER BY from the parent SELECT. */ pSort = exprListAppendList(pParse, 0, pMWin->pPartition, 1); pSort = exprListAppendList(pParse, pSort, pMWin->pOrderBy, 1); if( pSort && p->pOrderBy && p->pOrderBy->nExpr<=pSort->nExpr ){ int nSave = pSort->nExpr; pSort->nExpr = p->pOrderBy->nExpr; if( sqlite3ExprListCompare(pSort, p->pOrderBy, -1)==0 ){ sqlite3ExprListDelete(db, p->pOrderBy); p->pOrderBy = 0; } pSort->nExpr = nSave; } /* Assign a cursor number for the ephemeral table used to buffer rows. ** The OpenEphemeral instruction is coded later, after it is known how ** many columns the table will have. */ pMWin->iEphCsr = pParse->nTab++; pParse->nTab += 3; selectWindowRewriteEList(pParse, pMWin, pSrc, p->pEList, pTab, &pSublist); selectWindowRewriteEList(pParse, pMWin, pSrc, p->pOrderBy, pTab, &pSublist); pMWin->nBufferCol = (pSublist ? pSublist->nExpr : 0); /* Append the PARTITION BY and ORDER BY expressions to the to the ** sub-select expression list. They are required to figure out where ** boundaries for partitions and sets of peer rows lie. */ pSublist = exprListAppendList(pParse, pSublist, pMWin->pPartition, 0); pSublist = exprListAppendList(pParse, pSublist, pMWin->pOrderBy, 0); /* Append the arguments passed to each window function to the ** sub-select expression list. Also allocate two registers for each ** window function - one for the accumulator, another for interim ** results. */ for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ ExprList *pArgs; assert( ExprUseXList(pWin->pOwner) ); pArgs = pWin->pOwner->x.pList; if( pWin->pFunc->funcFlags & SQLITE_FUNC_SUBTYPE ){ selectWindowRewriteEList(pParse, pMWin, pSrc, pArgs, pTab, &pSublist); pWin->iArgCol = (pSublist ? pSublist->nExpr : 0); pWin->bExprArgs = 1; }else{ pWin->iArgCol = (pSublist ? pSublist->nExpr : 0); pSublist = exprListAppendList(pParse, pSublist, pArgs, 0); } if( pWin->pFilter ){ Expr *pFilter = sqlite3ExprDup(db, pWin->pFilter, 0); pSublist = sqlite3ExprListAppend(pParse, pSublist, pFilter); } pWin->regAccum = ++pParse->nMem; pWin->regResult = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); } /* If there is no ORDER BY or PARTITION BY clause, and the window ** function accepts zero arguments, and there are no other columns ** selected (e.g. "SELECT row_number() OVER () FROM t1"), it is possible ** that pSublist is still NULL here. Add a constant expression here to ** keep everything legal in this case. */ if( pSublist==0 ){ pSublist = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_INTEGER, "0") ); } pSub = sqlite3SelectNew( pParse, pSublist, pSrc, pWhere, pGroupBy, pHaving, pSort, 0, 0 ); SELECTTRACE(1,pParse,pSub, ("New window-function subquery in FROM clause of (%u/%p)\n", p->selId, p)); p->pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); assert( pSub!=0 || p->pSrc==0 ); /* Due to db->mallocFailed test inside ** of sqlite3DbMallocRawNN() called from ** sqlite3SrcListAppend() */ if( p->pSrc ){ Table *pTab2; p->pSrc->a[0].pSelect = pSub; sqlite3SrcListAssignCursors(pParse, p->pSrc); pSub->selFlags |= SF_Expanded|SF_OrderByReqd; pTab2 = sqlite3ResultSetOfSelect(pParse, pSub, SQLITE_AFF_NONE); pSub->selFlags |= (selFlags & SF_Aggregate); if( pTab2==0 ){ /* Might actually be some other kind of error, but in that case ** pParse->nErr will be set, so if SQLITE_NOMEM is set, we will get ** the correct error message regardless. */ rc = SQLITE_NOMEM; }else{ memcpy(pTab, pTab2, sizeof(Table)); pTab->tabFlags |= TF_Ephemeral; p->pSrc->a[0].pTab = pTab; pTab = pTab2; memset(&w, 0, sizeof(w)); w.xExprCallback = sqlite3WindowExtraAggFuncDepth; w.xSelectCallback = sqlite3WalkerDepthIncrease; w.xSelectCallback2 = sqlite3WalkerDepthDecrease; sqlite3WalkSelect(&w, pSub); } }else{ sqlite3SelectDelete(db, pSub); } if( db->mallocFailed ) rc = SQLITE_NOMEM; /* Defer deleting the temporary table pTab because if an error occurred, ** there could still be references to that table embedded in the ** result-set or ORDER BY clause of the SELECT statement p. */ sqlite3ParserAddCleanup(pParse, sqlite3DbFree, pTab); } assert( rc==SQLITE_OK || pParse->nErr!=0 ); return rc; } /* ** Unlink the Window object from the Select to which it is attached, ** if it is attached. */ SQLITE_PRIVATE void sqlite3WindowUnlinkFromSelect(Window *p){ if( p->ppThis ){ *p->ppThis = p->pNextWin; if( p->pNextWin ) p->pNextWin->ppThis = p->ppThis; p->ppThis = 0; } } /* ** Free the Window object passed as the second argument. */ SQLITE_PRIVATE void sqlite3WindowDelete(sqlite3 *db, Window *p){ if( p ){ sqlite3WindowUnlinkFromSelect(p); sqlite3ExprDelete(db, p->pFilter); sqlite3ExprListDelete(db, p->pPartition); sqlite3ExprListDelete(db, p->pOrderBy); sqlite3ExprDelete(db, p->pEnd); sqlite3ExprDelete(db, p->pStart); sqlite3DbFree(db, p->zName); sqlite3DbFree(db, p->zBase); sqlite3DbFree(db, p); } } /* ** Free the linked list of Window objects starting at the second argument. */ SQLITE_PRIVATE void sqlite3WindowListDelete(sqlite3 *db, Window *p){ while( p ){ Window *pNext = p->pNextWin; sqlite3WindowDelete(db, p); p = pNext; } } /* ** The argument expression is an PRECEDING or FOLLOWING offset. The ** value should be a non-negative integer. If the value is not a ** constant, change it to NULL. The fact that it is then a non-negative ** integer will be caught later. But it is important not to leave ** variable values in the expression tree. */ static Expr *sqlite3WindowOffsetExpr(Parse *pParse, Expr *pExpr){ if( 0==sqlite3ExprIsConstant(pExpr) ){ if( IN_RENAME_OBJECT ) sqlite3RenameExprUnmap(pParse, pExpr); sqlite3ExprDelete(pParse->db, pExpr); pExpr = sqlite3ExprAlloc(pParse->db, TK_NULL, 0, 0); } return pExpr; } /* ** Allocate and return a new Window object describing a Window Definition. */ SQLITE_PRIVATE Window *sqlite3WindowAlloc( Parse *pParse, /* Parsing context */ int eType, /* Frame type. TK_RANGE, TK_ROWS, TK_GROUPS, or 0 */ int eStart, /* Start type: CURRENT, PRECEDING, FOLLOWING, UNBOUNDED */ Expr *pStart, /* Start window size if TK_PRECEDING or FOLLOWING */ int eEnd, /* End type: CURRENT, FOLLOWING, TK_UNBOUNDED, PRECEDING */ Expr *pEnd, /* End window size if TK_FOLLOWING or PRECEDING */ u8 eExclude /* EXCLUDE clause */ ){ Window *pWin = 0; int bImplicitFrame = 0; /* Parser assures the following: */ assert( eType==0 || eType==TK_RANGE || eType==TK_ROWS || eType==TK_GROUPS ); assert( eStart==TK_CURRENT || eStart==TK_PRECEDING || eStart==TK_UNBOUNDED || eStart==TK_FOLLOWING ); assert( eEnd==TK_CURRENT || eEnd==TK_FOLLOWING || eEnd==TK_UNBOUNDED || eEnd==TK_PRECEDING ); assert( (eStart==TK_PRECEDING || eStart==TK_FOLLOWING)==(pStart!=0) ); assert( (eEnd==TK_FOLLOWING || eEnd==TK_PRECEDING)==(pEnd!=0) ); if( eType==0 ){ bImplicitFrame = 1; eType = TK_RANGE; } /* Additionally, the ** starting boundary type may not occur earlier in the following list than ** the ending boundary type: ** ** UNBOUNDED PRECEDING ** PRECEDING ** CURRENT ROW ** FOLLOWING ** UNBOUNDED FOLLOWING ** ** The parser ensures that "UNBOUNDED PRECEDING" cannot be used as an ending ** boundary, and than "UNBOUNDED FOLLOWING" cannot be used as a starting ** frame boundary. */ if( (eStart==TK_CURRENT && eEnd==TK_PRECEDING) || (eStart==TK_FOLLOWING && (eEnd==TK_PRECEDING || eEnd==TK_CURRENT)) ){ sqlite3ErrorMsg(pParse, "unsupported frame specification"); goto windowAllocErr; } pWin = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); if( pWin==0 ) goto windowAllocErr; pWin->eFrmType = eType; pWin->eStart = eStart; pWin->eEnd = eEnd; if( eExclude==0 && OptimizationDisabled(pParse->db, SQLITE_WindowFunc) ){ eExclude = TK_NO; } pWin->eExclude = eExclude; pWin->bImplicitFrame = bImplicitFrame; pWin->pEnd = sqlite3WindowOffsetExpr(pParse, pEnd); pWin->pStart = sqlite3WindowOffsetExpr(pParse, pStart); return pWin; windowAllocErr: sqlite3ExprDelete(pParse->db, pEnd); sqlite3ExprDelete(pParse->db, pStart); return 0; } /* ** Attach PARTITION and ORDER BY clauses pPartition and pOrderBy to window ** pWin. Also, if parameter pBase is not NULL, set pWin->zBase to the ** equivalent nul-terminated string. */ SQLITE_PRIVATE Window *sqlite3WindowAssemble( Parse *pParse, Window *pWin, ExprList *pPartition, ExprList *pOrderBy, Token *pBase ){ if( pWin ){ pWin->pPartition = pPartition; pWin->pOrderBy = pOrderBy; if( pBase ){ pWin->zBase = sqlite3DbStrNDup(pParse->db, pBase->z, pBase->n); } }else{ sqlite3ExprListDelete(pParse->db, pPartition); sqlite3ExprListDelete(pParse->db, pOrderBy); } return pWin; } /* ** Window *pWin has just been created from a WINDOW clause. Tokne pBase ** is the base window. Earlier windows from the same WINDOW clause are ** stored in the linked list starting at pWin->pNextWin. This function ** either updates *pWin according to the base specification, or else ** leaves an error in pParse. */ SQLITE_PRIVATE void sqlite3WindowChain(Parse *pParse, Window *pWin, Window *pList){ if( pWin->zBase ){ sqlite3 *db = pParse->db; Window *pExist = windowFind(pParse, pList, pWin->zBase); if( pExist ){ const char *zErr = 0; /* Check for errors */ if( pWin->pPartition ){ zErr = "PARTITION clause"; }else if( pExist->pOrderBy && pWin->pOrderBy ){ zErr = "ORDER BY clause"; }else if( pExist->bImplicitFrame==0 ){ zErr = "frame specification"; } if( zErr ){ sqlite3ErrorMsg(pParse, "cannot override %s of window: %s", zErr, pWin->zBase ); }else{ pWin->pPartition = sqlite3ExprListDup(db, pExist->pPartition, 0); if( pExist->pOrderBy ){ assert( pWin->pOrderBy==0 ); pWin->pOrderBy = sqlite3ExprListDup(db, pExist->pOrderBy, 0); } sqlite3DbFree(db, pWin->zBase); pWin->zBase = 0; } } } } /* ** Attach window object pWin to expression p. */ SQLITE_PRIVATE void sqlite3WindowAttach(Parse *pParse, Expr *p, Window *pWin){ if( p ){ assert( p->op==TK_FUNCTION ); assert( pWin ); p->y.pWin = pWin; ExprSetProperty(p, EP_WinFunc); pWin->pOwner = p; if( (p->flags & EP_Distinct) && pWin->eFrmType!=TK_FILTER ){ sqlite3ErrorMsg(pParse, "DISTINCT is not supported for window functions" ); } }else{ sqlite3WindowDelete(pParse->db, pWin); } } /* ** Possibly link window pWin into the list at pSel->pWin (window functions ** to be processed as part of SELECT statement pSel). The window is linked ** in if either (a) there are no other windows already linked to this ** SELECT, or (b) the windows already linked use a compatible window frame. */ SQLITE_PRIVATE void sqlite3WindowLink(Select *pSel, Window *pWin){ if( pSel ){ if( 0==pSel->pWin || 0==sqlite3WindowCompare(0, pSel->pWin, pWin, 0) ){ pWin->pNextWin = pSel->pWin; if( pSel->pWin ){ pSel->pWin->ppThis = &pWin->pNextWin; } pSel->pWin = pWin; pWin->ppThis = &pSel->pWin; }else{ if( sqlite3ExprListCompare(pWin->pPartition, pSel->pWin->pPartition,-1) ){ pSel->selFlags |= SF_MultiPart; } } } } /* ** Return 0 if the two window objects are identical, 1 if they are ** different, or 2 if it cannot be determined if the objects are identical ** or not. Identical window objects can be processed in a single scan. */ SQLITE_PRIVATE int sqlite3WindowCompare( const Parse *pParse, const Window *p1, const Window *p2, int bFilter ){ int res; if( NEVER(p1==0) || NEVER(p2==0) ) return 1; if( p1->eFrmType!=p2->eFrmType ) return 1; if( p1->eStart!=p2->eStart ) return 1; if( p1->eEnd!=p2->eEnd ) return 1; if( p1->eExclude!=p2->eExclude ) return 1; if( sqlite3ExprCompare(pParse, p1->pStart, p2->pStart, -1) ) return 1; if( sqlite3ExprCompare(pParse, p1->pEnd, p2->pEnd, -1) ) return 1; if( (res = sqlite3ExprListCompare(p1->pPartition, p2->pPartition, -1)) ){ return res; } if( (res = sqlite3ExprListCompare(p1->pOrderBy, p2->pOrderBy, -1)) ){ return res; } if( bFilter ){ if( (res = sqlite3ExprCompare(pParse, p1->pFilter, p2->pFilter, -1)) ){ return res; } } return 0; } /* ** This is called by code in select.c before it calls sqlite3WhereBegin() ** to begin iterating through the sub-query results. It is used to allocate ** and initialize registers and cursors used by sqlite3WindowCodeStep(). */ SQLITE_PRIVATE void sqlite3WindowCodeInit(Parse *pParse, Select *pSelect){ int nEphExpr = pSelect->pSrc->a[0].pSelect->pEList->nExpr; Window *pMWin = pSelect->pWin; Window *pWin; Vdbe *v = sqlite3GetVdbe(pParse); sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pMWin->iEphCsr, nEphExpr); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->iEphCsr+1, pMWin->iEphCsr); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->iEphCsr+2, pMWin->iEphCsr); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->iEphCsr+3, pMWin->iEphCsr); /* Allocate registers to use for PARTITION BY values, if any. Initialize ** said registers to NULL. */ if( pMWin->pPartition ){ int nExpr = pMWin->pPartition->nExpr; pMWin->regPart = pParse->nMem+1; pParse->nMem += nExpr; sqlite3VdbeAddOp3(v, OP_Null, 0, pMWin->regPart, pMWin->regPart+nExpr-1); } pMWin->regOne = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 1, pMWin->regOne); if( pMWin->eExclude ){ pMWin->regStartRowid = ++pParse->nMem; pMWin->regEndRowid = ++pParse->nMem; pMWin->csrApp = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_Integer, 1, pMWin->regStartRowid); sqlite3VdbeAddOp2(v, OP_Integer, 0, pMWin->regEndRowid); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->csrApp, pMWin->iEphCsr); return; } for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *p = pWin->pFunc; if( (p->funcFlags & SQLITE_FUNC_MINMAX) && pWin->eStart!=TK_UNBOUNDED ){ /* The inline versions of min() and max() require a single ephemeral ** table and 3 registers. The registers are used as follows: ** ** regApp+0: slot to copy min()/max() argument to for MakeRecord ** regApp+1: integer value used to ensure keys are unique ** regApp+2: output of MakeRecord */ ExprList *pList; KeyInfo *pKeyInfo; assert( ExprUseXList(pWin->pOwner) ); pList = pWin->pOwner->x.pList; pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pList, 0, 0); pWin->csrApp = pParse->nTab++; pWin->regApp = pParse->nMem+1; pParse->nMem += 3; if( pKeyInfo && pWin->pFunc->zName[1]=='i' ){ assert( pKeyInfo->aSortFlags[0]==0 ); pKeyInfo->aSortFlags[0] = KEYINFO_ORDER_DESC; } sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pWin->csrApp, 2); sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); } else if( p->zName==nth_valueName || p->zName==first_valueName ){ /* Allocate two registers at pWin->regApp. These will be used to ** store the start and end index of the current frame. */ pWin->regApp = pParse->nMem+1; pWin->csrApp = pParse->nTab++; pParse->nMem += 2; sqlite3VdbeAddOp2(v, OP_OpenDup, pWin->csrApp, pMWin->iEphCsr); } else if( p->zName==leadName || p->zName==lagName ){ pWin->csrApp = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_OpenDup, pWin->csrApp, pMWin->iEphCsr); } } } #define WINDOW_STARTING_INT 0 #define WINDOW_ENDING_INT 1 #define WINDOW_NTH_VALUE_INT 2 #define WINDOW_STARTING_NUM 3 #define WINDOW_ENDING_NUM 4 /* ** A "PRECEDING " (eCond==0) or "FOLLOWING " (eCond==1) or the ** value of the second argument to nth_value() (eCond==2) has just been ** evaluated and the result left in register reg. This function generates VM ** code to check that the value is a non-negative integer and throws an ** exception if it is not. */ static void windowCheckValue(Parse *pParse, int reg, int eCond){ static const char *azErr[] = { "frame starting offset must be a non-negative integer", "frame ending offset must be a non-negative integer", "second argument to nth_value must be a positive integer", "frame starting offset must be a non-negative number", "frame ending offset must be a non-negative number", }; static int aOp[] = { OP_Ge, OP_Ge, OP_Gt, OP_Ge, OP_Ge }; Vdbe *v = sqlite3GetVdbe(pParse); int regZero = sqlite3GetTempReg(pParse); assert( eCond>=0 && eCond=WINDOW_STARTING_NUM ){ int regString = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4(v, OP_String8, 0, regString, 0, "", P4_STATIC); sqlite3VdbeAddOp3(v, OP_Ge, regString, sqlite3VdbeCurrentAddr(v)+2, reg); sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC|SQLITE_JUMPIFNULL); VdbeCoverage(v); assert( eCond==3 || eCond==4 ); VdbeCoverageIf(v, eCond==3); VdbeCoverageIf(v, eCond==4); }else{ sqlite3VdbeAddOp2(v, OP_MustBeInt, reg, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); assert( eCond==0 || eCond==1 || eCond==2 ); VdbeCoverageIf(v, eCond==0); VdbeCoverageIf(v, eCond==1); VdbeCoverageIf(v, eCond==2); } sqlite3VdbeAddOp3(v, aOp[eCond], regZero, sqlite3VdbeCurrentAddr(v)+2, reg); sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC); VdbeCoverageNeverNullIf(v, eCond==0); /* NULL case captured by */ VdbeCoverageNeverNullIf(v, eCond==1); /* the OP_MustBeInt */ VdbeCoverageNeverNullIf(v, eCond==2); VdbeCoverageNeverNullIf(v, eCond==3); /* NULL case caught by */ VdbeCoverageNeverNullIf(v, eCond==4); /* the OP_Ge */ sqlite3MayAbort(pParse); sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_ERROR, OE_Abort); sqlite3VdbeAppendP4(v, (void*)azErr[eCond], P4_STATIC); sqlite3ReleaseTempReg(pParse, regZero); } /* ** Return the number of arguments passed to the window-function associated ** with the object passed as the only argument to this function. */ static int windowArgCount(Window *pWin){ const ExprList *pList; assert( ExprUseXList(pWin->pOwner) ); pList = pWin->pOwner->x.pList; return (pList ? pList->nExpr : 0); } typedef struct WindowCodeArg WindowCodeArg; typedef struct WindowCsrAndReg WindowCsrAndReg; /* ** See comments above struct WindowCodeArg. */ struct WindowCsrAndReg { int csr; /* Cursor number */ int reg; /* First in array of peer values */ }; /* ** A single instance of this structure is allocated on the stack by ** sqlite3WindowCodeStep() and a pointer to it passed to the various helper ** routines. This is to reduce the number of arguments required by each ** helper function. ** ** regArg: ** Each window function requires an accumulator register (just as an ** ordinary aggregate function does). This variable is set to the first ** in an array of accumulator registers - one for each window function ** in the WindowCodeArg.pMWin list. ** ** eDelete: ** The window functions implementation sometimes caches the input rows ** that it processes in a temporary table. If it is not zero, this ** variable indicates when rows may be removed from the temp table (in ** order to reduce memory requirements - it would always be safe just ** to leave them there). Possible values for eDelete are: ** ** WINDOW_RETURN_ROW: ** An input row can be discarded after it is returned to the caller. ** ** WINDOW_AGGINVERSE: ** An input row can be discarded after the window functions xInverse() ** callbacks have been invoked in it. ** ** WINDOW_AGGSTEP: ** An input row can be discarded after the window functions xStep() ** callbacks have been invoked in it. ** ** start,current,end ** Consider a window-frame similar to the following: ** ** (ORDER BY a, b GROUPS BETWEEN 2 PRECEDING AND 2 FOLLOWING) ** ** The windows functions implmentation caches the input rows in a temp ** table, sorted by "a, b" (it actually populates the cache lazily, and ** aggressively removes rows once they are no longer required, but that's ** a mere detail). It keeps three cursors open on the temp table. One ** (current) that points to the next row to return to the query engine ** once its window function values have been calculated. Another (end) ** points to the next row to call the xStep() method of each window function ** on (so that it is 2 groups ahead of current). And a third (start) that ** points to the next row to call the xInverse() method of each window ** function on. ** ** Each cursor (start, current and end) consists of a VDBE cursor ** (WindowCsrAndReg.csr) and an array of registers (starting at ** WindowCodeArg.reg) that always contains a copy of the peer values ** read from the corresponding cursor. ** ** Depending on the window-frame in question, all three cursors may not ** be required. In this case both WindowCodeArg.csr and reg are set to ** 0. */ struct WindowCodeArg { Parse *pParse; /* Parse context */ Window *pMWin; /* First in list of functions being processed */ Vdbe *pVdbe; /* VDBE object */ int addrGosub; /* OP_Gosub to this address to return one row */ int regGosub; /* Register used with OP_Gosub(addrGosub) */ int regArg; /* First in array of accumulator registers */ int eDelete; /* See above */ int regRowid; WindowCsrAndReg start; WindowCsrAndReg current; WindowCsrAndReg end; }; /* ** Generate VM code to read the window frames peer values from cursor csr into ** an array of registers starting at reg. */ static void windowReadPeerValues( WindowCodeArg *p, int csr, int reg ){ Window *pMWin = p->pMWin; ExprList *pOrderBy = pMWin->pOrderBy; if( pOrderBy ){ Vdbe *v = sqlite3GetVdbe(p->pParse); ExprList *pPart = pMWin->pPartition; int iColOff = pMWin->nBufferCol + (pPart ? pPart->nExpr : 0); int i; for(i=0; inExpr; i++){ sqlite3VdbeAddOp3(v, OP_Column, csr, iColOff+i, reg+i); } } } /* ** Generate VM code to invoke either xStep() (if bInverse is 0) or ** xInverse (if bInverse is non-zero) for each window function in the ** linked list starting at pMWin. Or, for built-in window functions ** that do not use the standard function API, generate the required ** inline VM code. ** ** If argument csr is greater than or equal to 0, then argument reg is ** the first register in an array of registers guaranteed to be large ** enough to hold the array of arguments for each function. In this case ** the arguments are extracted from the current row of csr into the ** array of registers before invoking OP_AggStep or OP_AggInverse ** ** Or, if csr is less than zero, then the array of registers at reg is ** already populated with all columns from the current row of the sub-query. ** ** If argument regPartSize is non-zero, then it is a register containing the ** number of rows in the current partition. */ static void windowAggStep( WindowCodeArg *p, Window *pMWin, /* Linked list of window functions */ int csr, /* Read arguments from this cursor */ int bInverse, /* True to invoke xInverse instead of xStep */ int reg /* Array of registers */ ){ Parse *pParse = p->pParse; Vdbe *v = sqlite3GetVdbe(pParse); Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; int regArg; int nArg = pWin->bExprArgs ? 0 : windowArgCount(pWin); int i; assert( bInverse==0 || pWin->eStart!=TK_UNBOUNDED ); /* All OVER clauses in the same window function aggregate step must ** be the same. */ assert( pWin==pMWin || sqlite3WindowCompare(pParse,pWin,pMWin,0)!=1 ); for(i=0; izName!=nth_valueName ){ sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol+i, reg+i); }else{ sqlite3VdbeAddOp3(v, OP_Column, pMWin->iEphCsr, pWin->iArgCol+i, reg+i); } } regArg = reg; if( pMWin->regStartRowid==0 && (pFunc->funcFlags & SQLITE_FUNC_MINMAX) && (pWin->eStart!=TK_UNBOUNDED) ){ int addrIsNull = sqlite3VdbeAddOp1(v, OP_IsNull, regArg); VdbeCoverage(v); if( bInverse==0 ){ sqlite3VdbeAddOp2(v, OP_AddImm, pWin->regApp+1, 1); sqlite3VdbeAddOp2(v, OP_SCopy, regArg, pWin->regApp); sqlite3VdbeAddOp3(v, OP_MakeRecord, pWin->regApp, 2, pWin->regApp+2); sqlite3VdbeAddOp2(v, OP_IdxInsert, pWin->csrApp, pWin->regApp+2); }else{ sqlite3VdbeAddOp4Int(v, OP_SeekGE, pWin->csrApp, 0, regArg, 1); VdbeCoverageNeverTaken(v); sqlite3VdbeAddOp1(v, OP_Delete, pWin->csrApp); sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); } sqlite3VdbeJumpHere(v, addrIsNull); }else if( pWin->regApp ){ assert( pFunc->zName==nth_valueName || pFunc->zName==first_valueName ); assert( bInverse==0 || bInverse==1 ); sqlite3VdbeAddOp2(v, OP_AddImm, pWin->regApp+1-bInverse, 1); }else if( pFunc->xSFunc!=noopStepFunc ){ int addrIf = 0; if( pWin->pFilter ){ int regTmp; assert( ExprUseXList(pWin->pOwner) ); assert( pWin->bExprArgs || !nArg ||nArg==pWin->pOwner->x.pList->nExpr ); assert( pWin->bExprArgs || nArg ||pWin->pOwner->x.pList==0 ); regTmp = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol+nArg,regTmp); addrIf = sqlite3VdbeAddOp3(v, OP_IfNot, regTmp, 0, 1); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regTmp); } if( pWin->bExprArgs ){ int iOp = sqlite3VdbeCurrentAddr(v); int iEnd; assert( ExprUseXList(pWin->pOwner) ); nArg = pWin->pOwner->x.pList->nExpr; regArg = sqlite3GetTempRange(pParse, nArg); sqlite3ExprCodeExprList(pParse, pWin->pOwner->x.pList, regArg, 0, 0); for(iEnd=sqlite3VdbeCurrentAddr(v); iOpopcode==OP_Column && pOp->p1==pWin->iEphCsr ){ pOp->p1 = csr; } } } if( pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ CollSeq *pColl; assert( nArg>0 ); assert( ExprUseXList(pWin->pOwner) ); pColl = sqlite3ExprNNCollSeq(pParse, pWin->pOwner->x.pList->a[0].pExpr); sqlite3VdbeAddOp4(v, OP_CollSeq, 0,0,0, (const char*)pColl, P4_COLLSEQ); } sqlite3VdbeAddOp3(v, bInverse? OP_AggInverse : OP_AggStep, bInverse, regArg, pWin->regAccum); sqlite3VdbeAppendP4(v, pFunc, P4_FUNCDEF); sqlite3VdbeChangeP5(v, (u8)nArg); if( pWin->bExprArgs ){ sqlite3ReleaseTempRange(pParse, regArg, nArg); } if( addrIf ) sqlite3VdbeJumpHere(v, addrIf); } } } /* ** Values that may be passed as the second argument to windowCodeOp(). */ #define WINDOW_RETURN_ROW 1 #define WINDOW_AGGINVERSE 2 #define WINDOW_AGGSTEP 3 /* ** Generate VM code to invoke either xValue() (bFin==0) or xFinalize() ** (bFin==1) for each window function in the linked list starting at ** pMWin. Or, for built-in window-functions that do not use the standard ** API, generate the equivalent VM code. */ static void windowAggFinal(WindowCodeArg *p, int bFin){ Parse *pParse = p->pParse; Window *pMWin = p->pMWin; Vdbe *v = sqlite3GetVdbe(pParse); Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ if( pMWin->regStartRowid==0 && (pWin->pFunc->funcFlags & SQLITE_FUNC_MINMAX) && (pWin->eStart!=TK_UNBOUNDED) ){ sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); sqlite3VdbeAddOp1(v, OP_Last, pWin->csrApp); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Column, pWin->csrApp, 0, pWin->regResult); sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); }else if( pWin->regApp ){ assert( pMWin->regStartRowid==0 ); }else{ int nArg = windowArgCount(pWin); if( bFin ){ sqlite3VdbeAddOp2(v, OP_AggFinal, pWin->regAccum, nArg); sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); sqlite3VdbeAddOp2(v, OP_Copy, pWin->regAccum, pWin->regResult); sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); }else{ sqlite3VdbeAddOp3(v, OP_AggValue,pWin->regAccum,nArg,pWin->regResult); sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); } } } } /* ** Generate code to calculate the current values of all window functions in the ** p->pMWin list by doing a full scan of the current window frame. Store the ** results in the Window.regResult registers, ready to return the upper ** layer. */ static void windowFullScan(WindowCodeArg *p){ Window *pWin; Parse *pParse = p->pParse; Window *pMWin = p->pMWin; Vdbe *v = p->pVdbe; int regCRowid = 0; /* Current rowid value */ int regCPeer = 0; /* Current peer values */ int regRowid = 0; /* AggStep rowid value */ int regPeer = 0; /* AggStep peer values */ int nPeer; int lblNext; int lblBrk; int addrNext; int csr; VdbeModuleComment((v, "windowFullScan begin")); assert( pMWin!=0 ); csr = pMWin->csrApp; nPeer = (pMWin->pOrderBy ? pMWin->pOrderBy->nExpr : 0); lblNext = sqlite3VdbeMakeLabel(pParse); lblBrk = sqlite3VdbeMakeLabel(pParse); regCRowid = sqlite3GetTempReg(pParse); regRowid = sqlite3GetTempReg(pParse); if( nPeer ){ regCPeer = sqlite3GetTempRange(pParse, nPeer); regPeer = sqlite3GetTempRange(pParse, nPeer); } sqlite3VdbeAddOp2(v, OP_Rowid, pMWin->iEphCsr, regCRowid); windowReadPeerValues(p, pMWin->iEphCsr, regCPeer); for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); } sqlite3VdbeAddOp3(v, OP_SeekGE, csr, lblBrk, pMWin->regStartRowid); VdbeCoverage(v); addrNext = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_Rowid, csr, regRowid); sqlite3VdbeAddOp3(v, OP_Gt, pMWin->regEndRowid, lblBrk, regRowid); VdbeCoverageNeverNull(v); if( pMWin->eExclude==TK_CURRENT ){ sqlite3VdbeAddOp3(v, OP_Eq, regCRowid, lblNext, regRowid); VdbeCoverageNeverNull(v); }else if( pMWin->eExclude!=TK_NO ){ int addr; int addrEq = 0; KeyInfo *pKeyInfo = 0; if( pMWin->pOrderBy ){ pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pMWin->pOrderBy, 0, 0); } if( pMWin->eExclude==TK_TIES ){ addrEq = sqlite3VdbeAddOp3(v, OP_Eq, regCRowid, 0, regRowid); VdbeCoverageNeverNull(v); } if( pKeyInfo ){ windowReadPeerValues(p, csr, regPeer); sqlite3VdbeAddOp3(v, OP_Compare, regPeer, regCPeer, nPeer); sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); addr = sqlite3VdbeCurrentAddr(v)+1; sqlite3VdbeAddOp3(v, OP_Jump, addr, lblNext, addr); VdbeCoverageEqNe(v); }else{ sqlite3VdbeAddOp2(v, OP_Goto, 0, lblNext); } if( addrEq ) sqlite3VdbeJumpHere(v, addrEq); } windowAggStep(p, pMWin, csr, 0, p->regArg); sqlite3VdbeResolveLabel(v, lblNext); sqlite3VdbeAddOp2(v, OP_Next, csr, addrNext); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrNext-1); sqlite3VdbeJumpHere(v, addrNext+1); sqlite3ReleaseTempReg(pParse, regRowid); sqlite3ReleaseTempReg(pParse, regCRowid); if( nPeer ){ sqlite3ReleaseTempRange(pParse, regPeer, nPeer); sqlite3ReleaseTempRange(pParse, regCPeer, nPeer); } windowAggFinal(p, 1); VdbeModuleComment((v, "windowFullScan end")); } /* ** Invoke the sub-routine at regGosub (generated by code in select.c) to ** return the current row of Window.iEphCsr. If all window functions are ** aggregate window functions that use the standard API, a single ** OP_Gosub instruction is all that this routine generates. Extra VM code ** for per-row processing is only generated for the following built-in window ** functions: ** ** nth_value() ** first_value() ** lag() ** lead() */ static void windowReturnOneRow(WindowCodeArg *p){ Window *pMWin = p->pMWin; Vdbe *v = p->pVdbe; if( pMWin->regStartRowid ){ windowFullScan(p); }else{ Parse *pParse = p->pParse; Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; assert( ExprUseXList(pWin->pOwner) ); if( pFunc->zName==nth_valueName || pFunc->zName==first_valueName ){ int csr = pWin->csrApp; int lbl = sqlite3VdbeMakeLabel(pParse); int tmpReg = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); if( pFunc->zName==nth_valueName ){ sqlite3VdbeAddOp3(v, OP_Column,pMWin->iEphCsr,pWin->iArgCol+1,tmpReg); windowCheckValue(pParse, tmpReg, 2); }else{ sqlite3VdbeAddOp2(v, OP_Integer, 1, tmpReg); } sqlite3VdbeAddOp3(v, OP_Add, tmpReg, pWin->regApp, tmpReg); sqlite3VdbeAddOp3(v, OP_Gt, pWin->regApp+1, lbl, tmpReg); VdbeCoverageNeverNull(v); sqlite3VdbeAddOp3(v, OP_SeekRowid, csr, 0, tmpReg); VdbeCoverageNeverTaken(v); sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol, pWin->regResult); sqlite3VdbeResolveLabel(v, lbl); sqlite3ReleaseTempReg(pParse, tmpReg); } else if( pFunc->zName==leadName || pFunc->zName==lagName ){ int nArg = pWin->pOwner->x.pList->nExpr; int csr = pWin->csrApp; int lbl = sqlite3VdbeMakeLabel(pParse); int tmpReg = sqlite3GetTempReg(pParse); int iEph = pMWin->iEphCsr; if( nArg<3 ){ sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); }else{ sqlite3VdbeAddOp3(v, OP_Column, iEph,pWin->iArgCol+2,pWin->regResult); } sqlite3VdbeAddOp2(v, OP_Rowid, iEph, tmpReg); if( nArg<2 ){ int val = (pFunc->zName==leadName ? 1 : -1); sqlite3VdbeAddOp2(v, OP_AddImm, tmpReg, val); }else{ int op = (pFunc->zName==leadName ? OP_Add : OP_Subtract); int tmpReg2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_Column, iEph, pWin->iArgCol+1, tmpReg2); sqlite3VdbeAddOp3(v, op, tmpReg2, tmpReg, tmpReg); sqlite3ReleaseTempReg(pParse, tmpReg2); } sqlite3VdbeAddOp3(v, OP_SeekRowid, csr, lbl, tmpReg); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol, pWin->regResult); sqlite3VdbeResolveLabel(v, lbl); sqlite3ReleaseTempReg(pParse, tmpReg); } } } sqlite3VdbeAddOp2(v, OP_Gosub, p->regGosub, p->addrGosub); } /* ** Generate code to set the accumulator register for each window function ** in the linked list passed as the second argument to NULL. And perform ** any equivalent initialization required by any built-in window functions ** in the list. */ static int windowInitAccum(Parse *pParse, Window *pMWin){ Vdbe *v = sqlite3GetVdbe(pParse); int regArg; int nArg = 0; Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; assert( pWin->regAccum ); sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); nArg = MAX(nArg, windowArgCount(pWin)); if( pMWin->regStartRowid==0 ){ if( pFunc->zName==nth_valueName || pFunc->zName==first_valueName ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); } if( (pFunc->funcFlags & SQLITE_FUNC_MINMAX) && pWin->csrApp ){ assert( pWin->eStart!=TK_UNBOUNDED ); sqlite3VdbeAddOp1(v, OP_ResetSorter, pWin->csrApp); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); } } } regArg = pParse->nMem+1; pParse->nMem += nArg; return regArg; } /* ** Return true if the current frame should be cached in the ephemeral table, ** even if there are no xInverse() calls required. */ static int windowCacheFrame(Window *pMWin){ Window *pWin; if( pMWin->regStartRowid ) return 1; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; if( (pFunc->zName==nth_valueName) || (pFunc->zName==first_valueName) || (pFunc->zName==leadName) || (pFunc->zName==lagName) ){ return 1; } } return 0; } /* ** regOld and regNew are each the first register in an array of size ** pOrderBy->nExpr. This function generates code to compare the two ** arrays of registers using the collation sequences and other comparison ** parameters specified by pOrderBy. ** ** If the two arrays are not equal, the contents of regNew is copied to ** regOld and control falls through. Otherwise, if the contents of the arrays ** are equal, an OP_Goto is executed. The address of the OP_Goto is returned. */ static void windowIfNewPeer( Parse *pParse, ExprList *pOrderBy, int regNew, /* First in array of new values */ int regOld, /* First in array of old values */ int addr /* Jump here */ ){ Vdbe *v = sqlite3GetVdbe(pParse); if( pOrderBy ){ int nVal = pOrderBy->nExpr; KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pOrderBy, 0, 0); sqlite3VdbeAddOp3(v, OP_Compare, regOld, regNew, nVal); sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); sqlite3VdbeAddOp3(v, OP_Jump, sqlite3VdbeCurrentAddr(v)+1, addr, sqlite3VdbeCurrentAddr(v)+1 ); VdbeCoverageEqNe(v); sqlite3VdbeAddOp3(v, OP_Copy, regNew, regOld, nVal-1); }else{ sqlite3VdbeAddOp2(v, OP_Goto, 0, addr); } } /* ** This function is called as part of generating VM programs for RANGE ** offset PRECEDING/FOLLOWING frame boundaries. Assuming "ASC" order for ** the ORDER BY term in the window, and that argument op is OP_Ge, it generates ** code equivalent to: ** ** if( csr1.peerVal + regVal >= csr2.peerVal ) goto lbl; ** ** The value of parameter op may also be OP_Gt or OP_Le. In these cases the ** operator in the above pseudo-code is replaced with ">" or "<=", respectively. ** ** If the sort-order for the ORDER BY term in the window is DESC, then the ** comparison is reversed. Instead of adding regVal to csr1.peerVal, it is ** subtracted. And the comparison operator is inverted to - ">=" becomes "<=", ** ">" becomes "<", and so on. So, with DESC sort order, if the argument op ** is OP_Ge, the generated code is equivalent to: ** ** if( csr1.peerVal - regVal <= csr2.peerVal ) goto lbl; ** ** A special type of arithmetic is used such that if csr1.peerVal is not ** a numeric type (real or integer), then the result of the addition ** or subtraction is a a copy of csr1.peerVal. */ static void windowCodeRangeTest( WindowCodeArg *p, int op, /* OP_Ge, OP_Gt, or OP_Le */ int csr1, /* Cursor number for cursor 1 */ int regVal, /* Register containing non-negative number */ int csr2, /* Cursor number for cursor 2 */ int lbl /* Jump destination if condition is true */ ){ Parse *pParse = p->pParse; Vdbe *v = sqlite3GetVdbe(pParse); ExprList *pOrderBy = p->pMWin->pOrderBy; /* ORDER BY clause for window */ int reg1 = sqlite3GetTempReg(pParse); /* Reg. for csr1.peerVal+regVal */ int reg2 = sqlite3GetTempReg(pParse); /* Reg. for csr2.peerVal */ int regString = ++pParse->nMem; /* Reg. for constant value '' */ int arith = OP_Add; /* OP_Add or OP_Subtract */ int addrGe; /* Jump destination */ int addrDone = sqlite3VdbeMakeLabel(pParse); /* Address past OP_Ge */ CollSeq *pColl; /* Read the peer-value from each cursor into a register */ windowReadPeerValues(p, csr1, reg1); windowReadPeerValues(p, csr2, reg2); assert( op==OP_Ge || op==OP_Gt || op==OP_Le ); assert( pOrderBy && pOrderBy->nExpr==1 ); if( pOrderBy->a[0].sortFlags & KEYINFO_ORDER_DESC ){ switch( op ){ case OP_Ge: op = OP_Le; break; case OP_Gt: op = OP_Lt; break; default: assert( op==OP_Le ); op = OP_Ge; break; } arith = OP_Subtract; } VdbeModuleComment((v, "CodeRangeTest: if( R%d %s R%d %s R%d ) goto lbl", reg1, (arith==OP_Add ? "+" : "-"), regVal, ((op==OP_Ge) ? ">=" : (op==OP_Le) ? "<=" : (op==OP_Gt) ? ">" : "<"), reg2 )); /* If the BIGNULL flag is set for the ORDER BY, then it is required to ** consider NULL values to be larger than all other values, instead of ** the usual smaller. The VDBE opcodes OP_Ge and so on do not handle this ** (and adding that capability causes a performance regression), so ** instead if the BIGNULL flag is set then cases where either reg1 or ** reg2 are NULL are handled separately in the following block. The code ** generated is equivalent to: ** ** if( reg1 IS NULL ){ ** if( op==OP_Ge ) goto lbl; ** if( op==OP_Gt && reg2 IS NOT NULL ) goto lbl; ** if( op==OP_Le && reg2 IS NULL ) goto lbl; ** }else if( reg2 IS NULL ){ ** if( op==OP_Le ) goto lbl; ** } ** ** Additionally, if either reg1 or reg2 are NULL but the jump to lbl is ** not taken, control jumps over the comparison operator coded below this ** block. */ if( pOrderBy->a[0].sortFlags & KEYINFO_ORDER_BIGNULL ){ /* This block runs if reg1 contains a NULL. */ int addr = sqlite3VdbeAddOp1(v, OP_NotNull, reg1); VdbeCoverage(v); switch( op ){ case OP_Ge: sqlite3VdbeAddOp2(v, OP_Goto, 0, lbl); break; case OP_Gt: sqlite3VdbeAddOp2(v, OP_NotNull, reg2, lbl); VdbeCoverage(v); break; case OP_Le: sqlite3VdbeAddOp2(v, OP_IsNull, reg2, lbl); VdbeCoverage(v); break; default: assert( op==OP_Lt ); /* no-op */ break; } sqlite3VdbeAddOp2(v, OP_Goto, 0, addrDone); /* This block runs if reg1 is not NULL, but reg2 is. */ sqlite3VdbeJumpHere(v, addr); sqlite3VdbeAddOp2(v, OP_IsNull, reg2, lbl); VdbeCoverage(v); if( op==OP_Gt || op==OP_Ge ){ sqlite3VdbeChangeP2(v, -1, addrDone); } } /* Register reg1 currently contains csr1.peerVal (the peer-value from csr1). ** This block adds (or subtracts for DESC) the numeric value in regVal ** from it. Or, if reg1 is not numeric (it is a NULL, a text value or a blob), ** then leave reg1 as it is. In pseudo-code, this is implemented as: ** ** if( reg1>='' ) goto addrGe; ** reg1 = reg1 +/- regVal ** addrGe: ** ** Since all strings and blobs are greater-than-or-equal-to an empty string, ** the add/subtract is skipped for these, as required. If reg1 is a NULL, ** then the arithmetic is performed, but since adding or subtracting from ** NULL is always NULL anyway, this case is handled as required too. */ sqlite3VdbeAddOp4(v, OP_String8, 0, regString, 0, "", P4_STATIC); addrGe = sqlite3VdbeAddOp3(v, OP_Ge, regString, 0, reg1); VdbeCoverage(v); if( (op==OP_Ge && arith==OP_Add) || (op==OP_Le && arith==OP_Subtract) ){ sqlite3VdbeAddOp3(v, op, reg2, lbl, reg1); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, arith, regVal, reg1, reg1); sqlite3VdbeJumpHere(v, addrGe); /* Compare registers reg2 and reg1, taking the jump if required. Note that ** control skips over this test if the BIGNULL flag is set and either ** reg1 or reg2 contain a NULL value. */ sqlite3VdbeAddOp3(v, op, reg2, lbl, reg1); VdbeCoverage(v); pColl = sqlite3ExprNNCollSeq(pParse, pOrderBy->a[0].pExpr); sqlite3VdbeAppendP4(v, (void*)pColl, P4_COLLSEQ); sqlite3VdbeChangeP5(v, SQLITE_NULLEQ); sqlite3VdbeResolveLabel(v, addrDone); assert( op==OP_Ge || op==OP_Gt || op==OP_Lt || op==OP_Le ); testcase(op==OP_Ge); VdbeCoverageIf(v, op==OP_Ge); testcase(op==OP_Lt); VdbeCoverageIf(v, op==OP_Lt); testcase(op==OP_Le); VdbeCoverageIf(v, op==OP_Le); testcase(op==OP_Gt); VdbeCoverageIf(v, op==OP_Gt); sqlite3ReleaseTempReg(pParse, reg1); sqlite3ReleaseTempReg(pParse, reg2); VdbeModuleComment((v, "CodeRangeTest: end")); } /* ** Helper function for sqlite3WindowCodeStep(). Each call to this function ** generates VM code for a single RETURN_ROW, AGGSTEP or AGGINVERSE ** operation. Refer to the header comment for sqlite3WindowCodeStep() for ** details. */ static int windowCodeOp( WindowCodeArg *p, /* Context object */ int op, /* WINDOW_RETURN_ROW, AGGSTEP or AGGINVERSE */ int regCountdown, /* Register for OP_IfPos countdown */ int jumpOnEof /* Jump here if stepped cursor reaches EOF */ ){ int csr, reg; Parse *pParse = p->pParse; Window *pMWin = p->pMWin; int ret = 0; Vdbe *v = p->pVdbe; int addrContinue = 0; int bPeer = (pMWin->eFrmType!=TK_ROWS); int lblDone = sqlite3VdbeMakeLabel(pParse); int addrNextRange = 0; /* Special case - WINDOW_AGGINVERSE is always a no-op if the frame ** starts with UNBOUNDED PRECEDING. */ if( op==WINDOW_AGGINVERSE && pMWin->eStart==TK_UNBOUNDED ){ assert( regCountdown==0 && jumpOnEof==0 ); return 0; } if( regCountdown>0 ){ if( pMWin->eFrmType==TK_RANGE ){ addrNextRange = sqlite3VdbeCurrentAddr(v); assert( op==WINDOW_AGGINVERSE || op==WINDOW_AGGSTEP ); if( op==WINDOW_AGGINVERSE ){ if( pMWin->eStart==TK_FOLLOWING ){ windowCodeRangeTest( p, OP_Le, p->current.csr, regCountdown, p->start.csr, lblDone ); }else{ windowCodeRangeTest( p, OP_Ge, p->start.csr, regCountdown, p->current.csr, lblDone ); } }else{ windowCodeRangeTest( p, OP_Gt, p->end.csr, regCountdown, p->current.csr, lblDone ); } }else{ sqlite3VdbeAddOp3(v, OP_IfPos, regCountdown, lblDone, 1); VdbeCoverage(v); } } if( op==WINDOW_RETURN_ROW && pMWin->regStartRowid==0 ){ windowAggFinal(p, 0); } addrContinue = sqlite3VdbeCurrentAddr(v); /* If this is a (RANGE BETWEEN a FOLLOWING AND b FOLLOWING) or ** (RANGE BETWEEN b PRECEDING AND a PRECEDING) frame, ensure the ** start cursor does not advance past the end cursor within the ** temporary table. It otherwise might, if (a>b). Also ensure that, ** if the input cursor is still finding new rows, that the end ** cursor does not go past it to EOF. */ if( pMWin->eStart==pMWin->eEnd && regCountdown && pMWin->eFrmType==TK_RANGE ){ int regRowid1 = sqlite3GetTempReg(pParse); int regRowid2 = sqlite3GetTempReg(pParse); if( op==WINDOW_AGGINVERSE ){ sqlite3VdbeAddOp2(v, OP_Rowid, p->start.csr, regRowid1); sqlite3VdbeAddOp2(v, OP_Rowid, p->end.csr, regRowid2); sqlite3VdbeAddOp3(v, OP_Ge, regRowid2, lblDone, regRowid1); VdbeCoverage(v); }else if( p->regRowid ){ sqlite3VdbeAddOp2(v, OP_Rowid, p->end.csr, regRowid1); sqlite3VdbeAddOp3(v, OP_Ge, p->regRowid, lblDone, regRowid1); VdbeCoverageNeverNull(v); } sqlite3ReleaseTempReg(pParse, regRowid1); sqlite3ReleaseTempReg(pParse, regRowid2); assert( pMWin->eStart==TK_PRECEDING || pMWin->eStart==TK_FOLLOWING ); } switch( op ){ case WINDOW_RETURN_ROW: csr = p->current.csr; reg = p->current.reg; windowReturnOneRow(p); break; case WINDOW_AGGINVERSE: csr = p->start.csr; reg = p->start.reg; if( pMWin->regStartRowid ){ assert( pMWin->regEndRowid ); sqlite3VdbeAddOp2(v, OP_AddImm, pMWin->regStartRowid, 1); }else{ windowAggStep(p, pMWin, csr, 1, p->regArg); } break; default: assert( op==WINDOW_AGGSTEP ); csr = p->end.csr; reg = p->end.reg; if( pMWin->regStartRowid ){ assert( pMWin->regEndRowid ); sqlite3VdbeAddOp2(v, OP_AddImm, pMWin->regEndRowid, 1); }else{ windowAggStep(p, pMWin, csr, 0, p->regArg); } break; } if( op==p->eDelete ){ sqlite3VdbeAddOp1(v, OP_Delete, csr); sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); } if( jumpOnEof ){ sqlite3VdbeAddOp2(v, OP_Next, csr, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); ret = sqlite3VdbeAddOp0(v, OP_Goto); }else{ sqlite3VdbeAddOp2(v, OP_Next, csr, sqlite3VdbeCurrentAddr(v)+1+bPeer); VdbeCoverage(v); if( bPeer ){ sqlite3VdbeAddOp2(v, OP_Goto, 0, lblDone); } } if( bPeer ){ int nReg = (pMWin->pOrderBy ? pMWin->pOrderBy->nExpr : 0); int regTmp = (nReg ? sqlite3GetTempRange(pParse, nReg) : 0); windowReadPeerValues(p, csr, regTmp); windowIfNewPeer(pParse, pMWin->pOrderBy, regTmp, reg, addrContinue); sqlite3ReleaseTempRange(pParse, regTmp, nReg); } if( addrNextRange ){ sqlite3VdbeAddOp2(v, OP_Goto, 0, addrNextRange); } sqlite3VdbeResolveLabel(v, lblDone); return ret; } /* ** Allocate and return a duplicate of the Window object indicated by the ** third argument. Set the Window.pOwner field of the new object to ** pOwner. */ SQLITE_PRIVATE Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p){ Window *pNew = 0; if( ALWAYS(p) ){ pNew = sqlite3DbMallocZero(db, sizeof(Window)); if( pNew ){ pNew->zName = sqlite3DbStrDup(db, p->zName); pNew->zBase = sqlite3DbStrDup(db, p->zBase); pNew->pFilter = sqlite3ExprDup(db, p->pFilter, 0); pNew->pFunc = p->pFunc; pNew->pPartition = sqlite3ExprListDup(db, p->pPartition, 0); pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, 0); pNew->eFrmType = p->eFrmType; pNew->eEnd = p->eEnd; pNew->eStart = p->eStart; pNew->eExclude = p->eExclude; pNew->regResult = p->regResult; pNew->regAccum = p->regAccum; pNew->iArgCol = p->iArgCol; pNew->iEphCsr = p->iEphCsr; pNew->bExprArgs = p->bExprArgs; pNew->pStart = sqlite3ExprDup(db, p->pStart, 0); pNew->pEnd = sqlite3ExprDup(db, p->pEnd, 0); pNew->pOwner = pOwner; pNew->bImplicitFrame = p->bImplicitFrame; } } return pNew; } /* ** Return a copy of the linked list of Window objects passed as the ** second argument. */ SQLITE_PRIVATE Window *sqlite3WindowListDup(sqlite3 *db, Window *p){ Window *pWin; Window *pRet = 0; Window **pp = &pRet; for(pWin=p; pWin; pWin=pWin->pNextWin){ *pp = sqlite3WindowDup(db, 0, pWin); if( *pp==0 ) break; pp = &((*pp)->pNextWin); } return pRet; } /* ** Return true if it can be determined at compile time that expression ** pExpr evaluates to a value that, when cast to an integer, is greater ** than zero. False otherwise. ** ** If an OOM error occurs, this function sets the Parse.db.mallocFailed ** flag and returns zero. */ static int windowExprGtZero(Parse *pParse, Expr *pExpr){ int ret = 0; sqlite3 *db = pParse->db; sqlite3_value *pVal = 0; sqlite3ValueFromExpr(db, pExpr, db->enc, SQLITE_AFF_NUMERIC, &pVal); if( pVal && sqlite3_value_int(pVal)>0 ){ ret = 1; } sqlite3ValueFree(pVal); return ret; } /* ** sqlite3WhereBegin() has already been called for the SELECT statement ** passed as the second argument when this function is invoked. It generates ** code to populate the Window.regResult register for each window function ** and invoke the sub-routine at instruction addrGosub once for each row. ** sqlite3WhereEnd() is always called before returning. ** ** This function handles several different types of window frames, which ** require slightly different processing. The following pseudo code is ** used to implement window frames of the form: ** ** ROWS BETWEEN PRECEDING AND FOLLOWING ** ** Other window frame types use variants of the following: ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** ** if( first row of partition ){ ** // Rewind three cursors, all open on the eph table. ** Rewind(csrEnd); ** Rewind(csrStart); ** Rewind(csrCurrent); ** ** regEnd = // FOLLOWING expression ** regStart = // PRECEDING expression ** }else{ ** // First time this branch is taken, the eph table contains two ** // rows. The first row in the partition, which all three cursors ** // currently point to, and the following row. ** AGGSTEP ** if( (regEnd--)<=0 ){ ** RETURN_ROW ** if( (regStart--)<=0 ){ ** AGGINVERSE ** } ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** RETURN ROW ** if( csrCurrent is EOF ) break; ** if( (regStart--)<=0 ){ ** AggInverse(csrStart) ** Next(csrStart) ** } ** } ** ** The pseudo-code above uses the following shorthand: ** ** AGGSTEP: invoke the aggregate xStep() function for each window function ** with arguments read from the current row of cursor csrEnd, then ** step cursor csrEnd forward one row (i.e. sqlite3BtreeNext()). ** ** RETURN_ROW: return a row to the caller based on the contents of the ** current row of csrCurrent and the current state of all ** aggregates. Then step cursor csrCurrent forward one row. ** ** AGGINVERSE: invoke the aggregate xInverse() function for each window ** functions with arguments read from the current row of cursor ** csrStart. Then step csrStart forward one row. ** ** There are two other ROWS window frames that are handled significantly ** differently from the above - "BETWEEN PRECEDING AND PRECEDING" ** and "BETWEEN FOLLOWING AND FOLLOWING". These are special ** cases because they change the order in which the three cursors (csrStart, ** csrCurrent and csrEnd) iterate through the ephemeral table. Cases that ** use UNBOUNDED or CURRENT ROW are much simpler variations on one of these ** three. ** ** ROWS BETWEEN PRECEDING AND PRECEDING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** if( (regEnd--)<=0 ){ ** AGGSTEP ** } ** RETURN_ROW ** if( (regStart--)<=0 ){ ** AGGINVERSE ** } ** } ** } ** flush: ** if( (regEnd--)<=0 ){ ** AGGSTEP ** } ** RETURN_ROW ** ** ** ROWS BETWEEN FOLLOWING AND FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = regEnd - ** }else{ ** AGGSTEP ** if( (regEnd--)<=0 ){ ** RETURN_ROW ** } ** if( (regStart--)<=0 ){ ** AGGINVERSE ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** if( (regEnd--)<=0 ){ ** RETURN_ROW ** if( eof ) break; ** } ** if( (regStart--)<=0 ){ ** AGGINVERSE ** if( eof ) break ** } ** } ** while( !eof csrCurrent ){ ** RETURN_ROW ** } ** ** For the most part, the patterns above are adapted to support UNBOUNDED by ** assuming that it is equivalent to "infinity PRECEDING/FOLLOWING" and ** CURRENT ROW by assuming that it is equivilent to "0 PRECEDING/FOLLOWING". ** This is optimized of course - branches that will never be taken and ** conditions that are always true are omitted from the VM code. The only ** exceptional case is: ** ** ROWS BETWEEN FOLLOWING AND UNBOUNDED FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regStart = ** }else{ ** AGGSTEP ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** if( (regStart--)<=0 ){ ** AGGINVERSE ** if( eof ) break ** } ** RETURN_ROW ** } ** while( !eof csrCurrent ){ ** RETURN_ROW ** } ** ** Also requiring special handling are the cases: ** ** ROWS BETWEEN PRECEDING AND PRECEDING ** ROWS BETWEEN FOLLOWING AND FOLLOWING ** ** when (expr1 < expr2). This is detected at runtime, not by this function. ** To handle this case, the pseudo-code programs depicted above are modified ** slightly to be: ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** if( regEnd < regStart ){ ** RETURN_ROW ** delete eph table contents ** continue ** } ** ... ** ** The new "continue" statement in the above jumps to the next iteration ** of the outer loop - the one started by sqlite3WhereBegin(). ** ** The various GROUPS cases are implemented using the same patterns as ** ROWS. The VM code is modified slightly so that: ** ** 1. The else branch in the main loop is only taken if the row just ** added to the ephemeral table is the start of a new group. In ** other words, it becomes: ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else if( new group ){ ** ... ** } ** } ** ** 2. Instead of processing a single row, each RETURN_ROW, AGGSTEP or ** AGGINVERSE step processes the current row of the relevant cursor and ** all subsequent rows belonging to the same group. ** ** RANGE window frames are a little different again. As for GROUPS, the ** main loop runs once per group only. And RETURN_ROW, AGGSTEP and AGGINVERSE ** deal in groups instead of rows. As for ROWS and GROUPS, there are three ** basic cases: ** ** RANGE BETWEEN PRECEDING AND FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** AGGSTEP ** while( (csrCurrent.key + regEnd) < csrEnd.key ){ ** RETURN_ROW ** while( csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** RETURN ROW ** if( csrCurrent is EOF ) break; ** while( csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** } ** } ** ** In the above notation, "csr.key" means the current value of the ORDER BY ** expression (there is only ever 1 for a RANGE that uses an FOLLOWING ** or PRECEDING AND PRECEDING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** while( (csrEnd.key + regEnd) <= csrCurrent.key ){ ** AGGSTEP ** } ** while( (csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** RETURN_ROW ** } ** } ** flush: ** while( (csrEnd.key + regEnd) <= csrCurrent.key ){ ** AGGSTEP ** } ** while( (csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** RETURN_ROW ** ** RANGE BETWEEN FOLLOWING AND FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** AGGSTEP ** while( (csrCurrent.key + regEnd) < csrEnd.key ){ ** while( (csrCurrent.key + regStart) > csrStart.key ){ ** AGGINVERSE ** } ** RETURN_ROW ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** while( (csrCurrent.key + regStart) > csrStart.key ){ ** AGGINVERSE ** if( eof ) break "while( 1 )" loop. ** } ** RETURN_ROW ** } ** while( !eof csrCurrent ){ ** RETURN_ROW ** } ** ** The text above leaves out many details. Refer to the code and comments ** below for a more complete picture. */ SQLITE_PRIVATE void sqlite3WindowCodeStep( Parse *pParse, /* Parse context */ Select *p, /* Rewritten SELECT statement */ WhereInfo *pWInfo, /* Context returned by sqlite3WhereBegin() */ int regGosub, /* Register for OP_Gosub */ int addrGosub /* OP_Gosub here to return each row */ ){ Window *pMWin = p->pWin; ExprList *pOrderBy = pMWin->pOrderBy; Vdbe *v = sqlite3GetVdbe(pParse); int csrWrite; /* Cursor used to write to eph. table */ int csrInput = p->pSrc->a[0].iCursor; /* Cursor of sub-select */ int nInput = p->pSrc->a[0].pTab->nCol; /* Number of cols returned by sub */ int iInput; /* To iterate through sub cols */ int addrNe; /* Address of OP_Ne */ int addrGosubFlush = 0; /* Address of OP_Gosub to flush: */ int addrInteger = 0; /* Address of OP_Integer */ int addrEmpty; /* Address of OP_Rewind in flush: */ int regNew; /* Array of registers holding new input row */ int regRecord; /* regNew array in record form */ int regNewPeer = 0; /* Peer values for new row (part of regNew) */ int regPeer = 0; /* Peer values for current row */ int regFlushPart = 0; /* Register for "Gosub flush_partition" */ WindowCodeArg s; /* Context object for sub-routines */ int lblWhereEnd; /* Label just before sqlite3WhereEnd() code */ int regStart = 0; /* Value of PRECEDING */ int regEnd = 0; /* Value of FOLLOWING */ assert( pMWin->eStart==TK_PRECEDING || pMWin->eStart==TK_CURRENT || pMWin->eStart==TK_FOLLOWING || pMWin->eStart==TK_UNBOUNDED ); assert( pMWin->eEnd==TK_FOLLOWING || pMWin->eEnd==TK_CURRENT || pMWin->eEnd==TK_UNBOUNDED || pMWin->eEnd==TK_PRECEDING ); assert( pMWin->eExclude==0 || pMWin->eExclude==TK_CURRENT || pMWin->eExclude==TK_GROUP || pMWin->eExclude==TK_TIES || pMWin->eExclude==TK_NO ); lblWhereEnd = sqlite3VdbeMakeLabel(pParse); /* Fill in the context object */ memset(&s, 0, sizeof(WindowCodeArg)); s.pParse = pParse; s.pMWin = pMWin; s.pVdbe = v; s.regGosub = regGosub; s.addrGosub = addrGosub; s.current.csr = pMWin->iEphCsr; csrWrite = s.current.csr+1; s.start.csr = s.current.csr+2; s.end.csr = s.current.csr+3; /* Figure out when rows may be deleted from the ephemeral table. There ** are four options - they may never be deleted (eDelete==0), they may ** be deleted as soon as they are no longer part of the window frame ** (eDelete==WINDOW_AGGINVERSE), they may be deleted as after the row ** has been returned to the caller (WINDOW_RETURN_ROW), or they may ** be deleted after they enter the frame (WINDOW_AGGSTEP). */ switch( pMWin->eStart ){ case TK_FOLLOWING: if( pMWin->eFrmType!=TK_RANGE && windowExprGtZero(pParse, pMWin->pStart) ){ s.eDelete = WINDOW_RETURN_ROW; } break; case TK_UNBOUNDED: if( windowCacheFrame(pMWin)==0 ){ if( pMWin->eEnd==TK_PRECEDING ){ if( pMWin->eFrmType!=TK_RANGE && windowExprGtZero(pParse, pMWin->pEnd) ){ s.eDelete = WINDOW_AGGSTEP; } }else{ s.eDelete = WINDOW_RETURN_ROW; } } break; default: s.eDelete = WINDOW_AGGINVERSE; break; } /* Allocate registers for the array of values from the sub-query, the ** samve values in record form, and the rowid used to insert said record ** into the ephemeral table. */ regNew = pParse->nMem+1; pParse->nMem += nInput; regRecord = ++pParse->nMem; s.regRowid = ++pParse->nMem; /* If the window frame contains an " PRECEDING" or " FOLLOWING" ** clause, allocate registers to store the results of evaluating each ** . */ if( pMWin->eStart==TK_PRECEDING || pMWin->eStart==TK_FOLLOWING ){ regStart = ++pParse->nMem; } if( pMWin->eEnd==TK_PRECEDING || pMWin->eEnd==TK_FOLLOWING ){ regEnd = ++pParse->nMem; } /* If this is not a "ROWS BETWEEN ..." frame, then allocate arrays of ** registers to store copies of the ORDER BY expressions (peer values) ** for the main loop, and for each cursor (start, current and end). */ if( pMWin->eFrmType!=TK_ROWS ){ int nPeer = (pOrderBy ? pOrderBy->nExpr : 0); regNewPeer = regNew + pMWin->nBufferCol; if( pMWin->pPartition ) regNewPeer += pMWin->pPartition->nExpr; regPeer = pParse->nMem+1; pParse->nMem += nPeer; s.start.reg = pParse->nMem+1; pParse->nMem += nPeer; s.current.reg = pParse->nMem+1; pParse->nMem += nPeer; s.end.reg = pParse->nMem+1; pParse->nMem += nPeer; } /* Load the column values for the row returned by the sub-select ** into an array of registers starting at regNew. Assemble them into ** a record in register regRecord. */ for(iInput=0; iInputpPartition ){ int addr; ExprList *pPart = pMWin->pPartition; int nPart = pPart->nExpr; int regNewPart = regNew + pMWin->nBufferCol; KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pPart, 0, 0); regFlushPart = ++pParse->nMem; addr = sqlite3VdbeAddOp3(v, OP_Compare, regNewPart, pMWin->regPart, nPart); sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); sqlite3VdbeAddOp3(v, OP_Jump, addr+2, addr+4, addr+2); VdbeCoverageEqNe(v); addrGosubFlush = sqlite3VdbeAddOp1(v, OP_Gosub, regFlushPart); VdbeComment((v, "call flush_partition")); sqlite3VdbeAddOp3(v, OP_Copy, regNewPart, pMWin->regPart, nPart-1); } /* Insert the new row into the ephemeral table */ sqlite3VdbeAddOp2(v, OP_NewRowid, csrWrite, s.regRowid); sqlite3VdbeAddOp3(v, OP_Insert, csrWrite, regRecord, s.regRowid); addrNe = sqlite3VdbeAddOp3(v, OP_Ne, pMWin->regOne, 0, s.regRowid); VdbeCoverageNeverNull(v); /* This block is run for the first row of each partition */ s.regArg = windowInitAccum(pParse, pMWin); if( regStart ){ sqlite3ExprCode(pParse, pMWin->pStart, regStart); windowCheckValue(pParse, regStart, 0 + (pMWin->eFrmType==TK_RANGE?3:0)); } if( regEnd ){ sqlite3ExprCode(pParse, pMWin->pEnd, regEnd); windowCheckValue(pParse, regEnd, 1 + (pMWin->eFrmType==TK_RANGE?3:0)); } if( pMWin->eFrmType!=TK_RANGE && pMWin->eStart==pMWin->eEnd && regStart ){ int op = ((pMWin->eStart==TK_FOLLOWING) ? OP_Ge : OP_Le); int addrGe = sqlite3VdbeAddOp3(v, op, regStart, 0, regEnd); VdbeCoverageNeverNullIf(v, op==OP_Ge); /* NeverNull because bound */ VdbeCoverageNeverNullIf(v, op==OP_Le); /* values previously checked */ windowAggFinal(&s, 0); sqlite3VdbeAddOp2(v, OP_Rewind, s.current.csr, 1); VdbeCoverageNeverTaken(v); windowReturnOneRow(&s); sqlite3VdbeAddOp1(v, OP_ResetSorter, s.current.csr); sqlite3VdbeAddOp2(v, OP_Goto, 0, lblWhereEnd); sqlite3VdbeJumpHere(v, addrGe); } if( pMWin->eStart==TK_FOLLOWING && pMWin->eFrmType!=TK_RANGE && regEnd ){ assert( pMWin->eEnd==TK_FOLLOWING ); sqlite3VdbeAddOp3(v, OP_Subtract, regStart, regEnd, regStart); } if( pMWin->eStart!=TK_UNBOUNDED ){ sqlite3VdbeAddOp2(v, OP_Rewind, s.start.csr, 1); VdbeCoverageNeverTaken(v); } sqlite3VdbeAddOp2(v, OP_Rewind, s.current.csr, 1); VdbeCoverageNeverTaken(v); sqlite3VdbeAddOp2(v, OP_Rewind, s.end.csr, 1); VdbeCoverageNeverTaken(v); if( regPeer && pOrderBy ){ sqlite3VdbeAddOp3(v, OP_Copy, regNewPeer, regPeer, pOrderBy->nExpr-1); sqlite3VdbeAddOp3(v, OP_Copy, regPeer, s.start.reg, pOrderBy->nExpr-1); sqlite3VdbeAddOp3(v, OP_Copy, regPeer, s.current.reg, pOrderBy->nExpr-1); sqlite3VdbeAddOp3(v, OP_Copy, regPeer, s.end.reg, pOrderBy->nExpr-1); } sqlite3VdbeAddOp2(v, OP_Goto, 0, lblWhereEnd); sqlite3VdbeJumpHere(v, addrNe); /* Beginning of the block executed for the second and subsequent rows. */ if( regPeer ){ windowIfNewPeer(pParse, pOrderBy, regNewPeer, regPeer, lblWhereEnd); } if( pMWin->eStart==TK_FOLLOWING ){ windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); if( pMWin->eEnd!=TK_UNBOUNDED ){ if( pMWin->eFrmType==TK_RANGE ){ int lbl = sqlite3VdbeMakeLabel(pParse); int addrNext = sqlite3VdbeCurrentAddr(v); windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); sqlite3VdbeAddOp2(v, OP_Goto, 0, addrNext); sqlite3VdbeResolveLabel(v, lbl); }else{ windowCodeOp(&s, WINDOW_RETURN_ROW, regEnd, 0); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); } } }else if( pMWin->eEnd==TK_PRECEDING ){ int bRPS = (pMWin->eStart==TK_PRECEDING && pMWin->eFrmType==TK_RANGE); windowCodeOp(&s, WINDOW_AGGSTEP, regEnd, 0); if( bRPS ) windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); if( !bRPS ) windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); }else{ int addr = 0; windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); if( pMWin->eEnd!=TK_UNBOUNDED ){ if( pMWin->eFrmType==TK_RANGE ){ int lbl = 0; addr = sqlite3VdbeCurrentAddr(v); if( regEnd ){ lbl = sqlite3VdbeMakeLabel(pParse); windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl); } windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); if( regEnd ){ sqlite3VdbeAddOp2(v, OP_Goto, 0, addr); sqlite3VdbeResolveLabel(v, lbl); } }else{ if( regEnd ){ addr = sqlite3VdbeAddOp3(v, OP_IfPos, regEnd, 0, 1); VdbeCoverage(v); } windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); if( regEnd ) sqlite3VdbeJumpHere(v, addr); } } } /* End of the main input loop */ sqlite3VdbeResolveLabel(v, lblWhereEnd); sqlite3WhereEnd(pWInfo); /* Fall through */ if( pMWin->pPartition ){ addrInteger = sqlite3VdbeAddOp2(v, OP_Integer, 0, regFlushPart); sqlite3VdbeJumpHere(v, addrGosubFlush); } s.regRowid = 0; addrEmpty = sqlite3VdbeAddOp1(v, OP_Rewind, csrWrite); VdbeCoverage(v); if( pMWin->eEnd==TK_PRECEDING ){ int bRPS = (pMWin->eStart==TK_PRECEDING && pMWin->eFrmType==TK_RANGE); windowCodeOp(&s, WINDOW_AGGSTEP, regEnd, 0); if( bRPS ) windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); }else if( pMWin->eStart==TK_FOLLOWING ){ int addrStart; int addrBreak1; int addrBreak2; int addrBreak3; windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); if( pMWin->eFrmType==TK_RANGE ){ addrStart = sqlite3VdbeCurrentAddr(v); addrBreak2 = windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 1); addrBreak1 = windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 1); }else if( pMWin->eEnd==TK_UNBOUNDED ){ addrStart = sqlite3VdbeCurrentAddr(v); addrBreak1 = windowCodeOp(&s, WINDOW_RETURN_ROW, regStart, 1); addrBreak2 = windowCodeOp(&s, WINDOW_AGGINVERSE, 0, 1); }else{ assert( pMWin->eEnd==TK_FOLLOWING ); addrStart = sqlite3VdbeCurrentAddr(v); addrBreak1 = windowCodeOp(&s, WINDOW_RETURN_ROW, regEnd, 1); addrBreak2 = windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 1); } sqlite3VdbeAddOp2(v, OP_Goto, 0, addrStart); sqlite3VdbeJumpHere(v, addrBreak2); addrStart = sqlite3VdbeCurrentAddr(v); addrBreak3 = windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 1); sqlite3VdbeAddOp2(v, OP_Goto, 0, addrStart); sqlite3VdbeJumpHere(v, addrBreak1); sqlite3VdbeJumpHere(v, addrBreak3); }else{ int addrBreak; int addrStart; windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); addrStart = sqlite3VdbeCurrentAddr(v); addrBreak = windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 1); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); sqlite3VdbeAddOp2(v, OP_Goto, 0, addrStart); sqlite3VdbeJumpHere(v, addrBreak); } sqlite3VdbeJumpHere(v, addrEmpty); sqlite3VdbeAddOp1(v, OP_ResetSorter, s.current.csr); if( pMWin->pPartition ){ if( pMWin->regStartRowid ){ sqlite3VdbeAddOp2(v, OP_Integer, 1, pMWin->regStartRowid); sqlite3VdbeAddOp2(v, OP_Integer, 0, pMWin->regEndRowid); } sqlite3VdbeChangeP1(v, addrInteger, sqlite3VdbeCurrentAddr(v)); sqlite3VdbeAddOp1(v, OP_Return, regFlushPart); } } #endif /* SQLITE_OMIT_WINDOWFUNC */ /************** End of window.c **********************************************/ /************** Begin file parse.c *******************************************/ /* This file is automatically generated by Lemon from input grammar ** source file "parse.y". */ /* ** 2001-09-15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains SQLite's SQL parser. ** ** The canonical source code to this file ("parse.y") is a Lemon grammar ** file that specifies the input grammar and actions to take while parsing. ** That input file is processed by Lemon to generate a C-language ** implementation of a parser for the given grammer. You might be reading ** this comment as part of the translated C-code. Edits should be made ** to the original parse.y sources. */ /* #include "sqliteInt.h" */ /* ** Disable all error recovery processing in the parser push-down ** automaton. */ #define YYNOERRORRECOVERY 1 /* ** Make yytestcase() the same as testcase() */ #define yytestcase(X) testcase(X) /* ** Indicate that sqlite3ParserFree() will never be called with a null ** pointer. */ #define YYPARSEFREENEVERNULL 1 /* ** In the amalgamation, the parse.c file generated by lemon and the ** tokenize.c file are concatenated. In that case, sqlite3RunParser() ** has access to the the size of the yyParser object and so the parser ** engine can be allocated from stack. In that case, only the ** sqlite3ParserInit() and sqlite3ParserFinalize() routines are invoked ** and the sqlite3ParserAlloc() and sqlite3ParserFree() routines can be ** omitted. */ #ifdef SQLITE_AMALGAMATION # define sqlite3Parser_ENGINEALWAYSONSTACK 1 #endif /* ** Alternative datatype for the argument to the malloc() routine passed ** into sqlite3ParserAlloc(). The default is size_t. */ #define YYMALLOCARGTYPE u64 /* ** An instance of the following structure describes the event of a ** TRIGGER. "a" is the event type, one of TK_UPDATE, TK_INSERT, ** TK_DELETE, or TK_INSTEAD. If the event is of the form ** ** UPDATE ON (a,b,c) ** ** Then the "b" IdList records the list "a,b,c". */ struct TrigEvent { int a; IdList * b; }; struct FrameBound { int eType; Expr *pExpr; }; /* ** Disable lookaside memory allocation for objects that might be ** shared across database connections. */ static void disableLookaside(Parse *pParse){ sqlite3 *db = pParse->db; pParse->disableLookaside++; DisableLookaside; } #if !defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) \ && defined(SQLITE_UDL_CAPABLE_PARSER) /* ** Issue an error message if an ORDER BY or LIMIT clause occurs on an ** UPDATE or DELETE statement. */ static void updateDeleteLimitError( Parse *pParse, ExprList *pOrderBy, Expr *pLimit ){ if( pOrderBy ){ sqlite3ErrorMsg(pParse, "syntax error near \"ORDER BY\""); }else{ sqlite3ErrorMsg(pParse, "syntax error near \"LIMIT\""); } sqlite3ExprListDelete(pParse->db, pOrderBy); sqlite3ExprDelete(pParse->db, pLimit); } #endif /* SQLITE_ENABLE_UPDATE_DELETE_LIMIT */ /* ** For a compound SELECT statement, make sure p->pPrior->pNext==p for ** all elements in the list. And make sure list length does not exceed ** SQLITE_LIMIT_COMPOUND_SELECT. */ static void parserDoubleLinkSelect(Parse *pParse, Select *p){ assert( p!=0 ); if( p->pPrior ){ Select *pNext = 0, *pLoop = p; int mxSelect, cnt = 1; while(1){ pLoop->pNext = pNext; pLoop->selFlags |= SF_Compound; pNext = pLoop; pLoop = pLoop->pPrior; if( pLoop==0 ) break; cnt++; if( pLoop->pOrderBy || pLoop->pLimit ){ sqlite3ErrorMsg(pParse,"%s clause should come after %s not before", pLoop->pOrderBy!=0 ? "ORDER BY" : "LIMIT", sqlite3SelectOpName(pNext->op)); break; } } if( (p->selFlags & SF_MultiValue)==0 && (mxSelect = pParse->db->aLimit[SQLITE_LIMIT_COMPOUND_SELECT])>0 && cnt>mxSelect ){ sqlite3ErrorMsg(pParse, "too many terms in compound SELECT"); } } } /* Attach a With object describing the WITH clause to a Select ** object describing the query for which the WITH clause is a prefix. */ static Select *attachWithToSelect(Parse *pParse, Select *pSelect, With *pWith){ if( pSelect ){ pSelect->pWith = pWith; parserDoubleLinkSelect(pParse, pSelect); }else{ sqlite3WithDelete(pParse->db, pWith); } return pSelect; } /* Construct a new Expr object from a single token */ static Expr *tokenExpr(Parse *pParse, int op, Token t){ Expr *p = sqlite3DbMallocRawNN(pParse->db, sizeof(Expr)+t.n+1); if( p ){ /* memset(p, 0, sizeof(Expr)); */ p->op = (u8)op; p->affExpr = 0; p->flags = EP_Leaf; ExprClearVVAProperties(p); p->iAgg = -1; p->pLeft = p->pRight = 0; p->pAggInfo = 0; memset(&p->x, 0, sizeof(p->x)); memset(&p->y, 0, sizeof(p->y)); p->op2 = 0; p->iTable = 0; p->iColumn = 0; p->u.zToken = (char*)&p[1]; memcpy(p->u.zToken, t.z, t.n); p->u.zToken[t.n] = 0; p->w.iOfst = (int)(t.z - pParse->zTail); if( sqlite3Isquote(p->u.zToken[0]) ){ sqlite3DequoteExpr(p); } #if SQLITE_MAX_EXPR_DEPTH>0 p->nHeight = 1; #endif if( IN_RENAME_OBJECT ){ return (Expr*)sqlite3RenameTokenMap(pParse, (void*)p, &t); } } return p; } /* A routine to convert a binary TK_IS or TK_ISNOT expression into a ** unary TK_ISNULL or TK_NOTNULL expression. */ static void binaryToUnaryIfNull(Parse *pParse, Expr *pY, Expr *pA, int op){ sqlite3 *db = pParse->db; if( pA && pY && pY->op==TK_NULL && !IN_RENAME_OBJECT ){ pA->op = (u8)op; sqlite3ExprDelete(db, pA->pRight); pA->pRight = 0; } } /* Add a single new term to an ExprList that is used to store a ** list of identifiers. Report an error if the ID list contains ** a COLLATE clause or an ASC or DESC keyword, except ignore the ** error while parsing a legacy schema. */ static ExprList *parserAddExprIdListTerm( Parse *pParse, ExprList *pPrior, Token *pIdToken, int hasCollate, int sortOrder ){ ExprList *p = sqlite3ExprListAppend(pParse, pPrior, 0); if( (hasCollate || sortOrder!=SQLITE_SO_UNDEFINED) && pParse->db->init.busy==0 ){ sqlite3ErrorMsg(pParse, "syntax error after column name \"%.*s\"", pIdToken->n, pIdToken->z); } sqlite3ExprListSetName(pParse, p, pIdToken, 1); return p; } #if TK_SPAN>255 # error too many tokens in the grammar #endif /**************** End of %include directives **********************************/ /* These constants specify the various numeric values for terminal symbols. ***************** Begin token definitions *************************************/ #ifndef TK_SEMI #define TK_SEMI 1 #define TK_EXPLAIN 2 #define TK_QUERY 3 #define TK_PLAN 4 #define TK_BEGIN 5 #define TK_TRANSACTION 6 #define TK_DEFERRED 7 #define TK_IMMEDIATE 8 #define TK_EXCLUSIVE 9 #define TK_COMMIT 10 #define TK_END 11 #define TK_ROLLBACK 12 #define TK_SAVEPOINT 13 #define TK_RELEASE 14 #define TK_TO 15 #define TK_TABLE 16 #define TK_CREATE 17 #define TK_IF 18 #define TK_NOT 19 #define TK_EXISTS 20 #define TK_TEMP 21 #define TK_LP 22 #define TK_RP 23 #define TK_AS 24 #define TK_COMMA 25 #define TK_WITHOUT 26 #define TK_ABORT 27 #define TK_ACTION 28 #define TK_AFTER 29 #define TK_ANALYZE 30 #define TK_ASC 31 #define TK_ATTACH 32 #define TK_BEFORE 33 #define TK_BY 34 #define TK_CASCADE 35 #define TK_CAST 36 #define TK_CONFLICT 37 #define TK_DATABASE 38 #define TK_DESC 39 #define TK_DETACH 40 #define TK_EACH 41 #define TK_FAIL 42 #define TK_OR 43 #define TK_AND 44 #define TK_IS 45 #define TK_MATCH 46 #define TK_LIKE_KW 47 #define TK_BETWEEN 48 #define TK_IN 49 #define TK_ISNULL 50 #define TK_NOTNULL 51 #define TK_NE 52 #define TK_EQ 53 #define TK_GT 54 #define TK_LE 55 #define TK_LT 56 #define TK_GE 57 #define TK_ESCAPE 58 #define TK_ID 59 #define TK_COLUMNKW 60 #define TK_DO 61 #define TK_FOR 62 #define TK_IGNORE 63 #define TK_INITIALLY 64 #define TK_INSTEAD 65 #define TK_NO 66 #define TK_KEY 67 #define TK_OF 68 #define TK_OFFSET 69 #define TK_PRAGMA 70 #define TK_RAISE 71 #define TK_RECURSIVE 72 #define TK_REPLACE 73 #define TK_RESTRICT 74 #define TK_ROW 75 #define TK_ROWS 76 #define TK_TRIGGER 77 #define TK_VACUUM 78 #define TK_VIEW 79 #define TK_VIRTUAL 80 #define TK_WITH 81 #define TK_NULLS 82 #define TK_FIRST 83 #define TK_LAST 84 #define TK_CURRENT 85 #define TK_FOLLOWING 86 #define TK_PARTITION 87 #define TK_PRECEDING 88 #define TK_RANGE 89 #define TK_UNBOUNDED 90 #define TK_EXCLUDE 91 #define TK_GROUPS 92 #define TK_OTHERS 93 #define TK_TIES 94 #define TK_GENERATED 95 #define TK_ALWAYS 96 #define TK_MATERIALIZED 97 #define TK_REINDEX 98 #define TK_RENAME 99 #define TK_CTIME_KW 100 #define TK_ANY 101 #define TK_BITAND 102 #define TK_BITOR 103 #define TK_LSHIFT 104 #define TK_RSHIFT 105 #define TK_PLUS 106 #define TK_MINUS 107 #define TK_STAR 108 #define TK_SLASH 109 #define TK_REM 110 #define TK_CONCAT 111 #define TK_PTR 112 #define TK_COLLATE 113 #define TK_BITNOT 114 #define TK_ON 115 #define TK_INDEXED 116 #define TK_STRING 117 #define TK_JOIN_KW 118 #define TK_CONSTRAINT 119 #define TK_DEFAULT 120 #define TK_NULL 121 #define TK_PRIMARY 122 #define TK_UNIQUE 123 #define TK_CHECK 124 #define TK_REFERENCES 125 #define TK_AUTOINCR 126 #define TK_INSERT 127 #define TK_DELETE 128 #define TK_UPDATE 129 #define TK_SET 130 #define TK_DEFERRABLE 131 #define TK_FOREIGN 132 #define TK_DROP 133 #define TK_UNION 134 #define TK_ALL 135 #define TK_EXCEPT 136 #define TK_INTERSECT 137 #define TK_SELECT 138 #define TK_VALUES 139 #define TK_DISTINCT 140 #define TK_DOT 141 #define TK_FROM 142 #define TK_JOIN 143 #define TK_USING 144 #define TK_ORDER 145 #define TK_GROUP 146 #define TK_HAVING 147 #define TK_LIMIT 148 #define TK_WHERE 149 #define TK_RETURNING 150 #define TK_INTO 151 #define TK_NOTHING 152 #define TK_FLOAT 153 #define TK_BLOB 154 #define TK_INTEGER 155 #define TK_VARIABLE 156 #define TK_CASE 157 #define TK_WHEN 158 #define TK_THEN 159 #define TK_ELSE 160 #define TK_INDEX 161 #define TK_ALTER 162 #define TK_ADD 163 #define TK_WINDOW 164 #define TK_OVER 165 #define TK_FILTER 166 #define TK_COLUMN 167 #define TK_AGG_FUNCTION 168 #define TK_AGG_COLUMN 169 #define TK_TRUEFALSE 170 #define TK_ISNOT 171 #define TK_FUNCTION 172 #define TK_UMINUS 173 #define TK_UPLUS 174 #define TK_TRUTH 175 #define TK_REGISTER 176 #define TK_VECTOR 177 #define TK_SELECT_COLUMN 178 #define TK_IF_NULL_ROW 179 #define TK_ASTERISK 180 #define TK_SPAN 181 #define TK_ERROR 182 #define TK_SPACE 183 #define TK_ILLEGAL 184 #endif /**************** End token definitions ***************************************/ /* The next sections is a series of control #defines. ** various aspects of the generated parser. ** YYCODETYPE is the data type used to store the integer codes ** that represent terminal and non-terminal symbols. ** "unsigned char" is used if there are fewer than ** 256 symbols. Larger types otherwise. ** YYNOCODE is a number of type YYCODETYPE that is not used for ** any terminal or nonterminal symbol. ** YYFALLBACK If defined, this indicates that one or more tokens ** (also known as: "terminal symbols") have fall-back ** values which should be used if the original symbol ** would not parse. This permits keywords to sometimes ** be used as identifiers, for example. ** YYACTIONTYPE is the data type used for "action codes" - numbers ** that indicate what to do in response to the next ** token. ** sqlite3ParserTOKENTYPE is the data type used for minor type for terminal ** symbols. Background: A "minor type" is a semantic ** value associated with a terminal or non-terminal ** symbols. For example, for an "ID" terminal symbol, ** the minor type might be the name of the identifier. ** Each non-terminal can have a different minor type. ** Terminal symbols all have the same minor type, though. ** This macros defines the minor type for terminal ** symbols. ** YYMINORTYPE is the data type used for all minor types. ** This is typically a union of many types, one of ** which is sqlite3ParserTOKENTYPE. The entry in the union ** for terminal symbols is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** zero the stack is dynamically sized using realloc() ** sqlite3ParserARG_SDECL A static variable declaration for the %extra_argument ** sqlite3ParserARG_PDECL A parameter declaration for the %extra_argument ** sqlite3ParserARG_PARAM Code to pass %extra_argument as a subroutine parameter ** sqlite3ParserARG_STORE Code to store %extra_argument into yypParser ** sqlite3ParserARG_FETCH Code to extract %extra_argument from yypParser ** sqlite3ParserCTX_* As sqlite3ParserARG_ except for %extra_context ** YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. ** YYNSTATE the combined number of states. ** YYNRULE the number of rules in the grammar ** YYNTOKEN Number of terminal symbols ** YY_MAX_SHIFT Maximum value for shift actions ** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions ** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions ** YY_ERROR_ACTION The yy_action[] code for syntax error ** YY_ACCEPT_ACTION The yy_action[] code for accept ** YY_NO_ACTION The yy_action[] code for no-op ** YY_MIN_REDUCE Minimum value for reduce actions ** YY_MAX_REDUCE Maximum value for reduce actions */ #ifndef INTERFACE # define INTERFACE 1 #endif /************* Begin control #defines *****************************************/ #define YYCODETYPE unsigned short int #define YYNOCODE 319 #define YYACTIONTYPE unsigned short int #define YYWILDCARD 101 #define sqlite3ParserTOKENTYPE Token typedef union { int yyinit; sqlite3ParserTOKENTYPE yy0; TriggerStep* yy33; Window* yy41; Select* yy47; SrcList* yy131; struct TrigEvent yy180; struct {int value; int mask;} yy231; IdList* yy254; u32 yy285; ExprList* yy322; Cte* yy385; int yy394; Upsert* yy444; u8 yy516; With* yy521; const char* yy522; Expr* yy528; struct FrameBound yy595; } YYMINORTYPE; #ifndef YYSTACKDEPTH #define YYSTACKDEPTH 100 #endif #define sqlite3ParserARG_SDECL #define sqlite3ParserARG_PDECL #define sqlite3ParserARG_PARAM #define sqlite3ParserARG_FETCH #define sqlite3ParserARG_STORE #define sqlite3ParserCTX_SDECL Parse *pParse; #define sqlite3ParserCTX_PDECL ,Parse *pParse #define sqlite3ParserCTX_PARAM ,pParse #define sqlite3ParserCTX_FETCH Parse *pParse=yypParser->pParse; #define sqlite3ParserCTX_STORE yypParser->pParse=pParse; #define YYFALLBACK 1 #define YYNSTATE 574 #define YYNRULE 402 #define YYNRULE_WITH_ACTION 340 #define YYNTOKEN 185 #define YY_MAX_SHIFT 573 #define YY_MIN_SHIFTREDUCE 831 #define YY_MAX_SHIFTREDUCE 1232 #define YY_ERROR_ACTION 1233 #define YY_ACCEPT_ACTION 1234 #define YY_NO_ACTION 1235 #define YY_MIN_REDUCE 1236 #define YY_MAX_REDUCE 1637 /************* End control #defines *******************************************/ #define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0]))) /* Define the yytestcase() macro to be a no-op if is not already defined ** otherwise. ** ** Applications can choose to define yytestcase() in the %include section ** to a macro that can assist in verifying code coverage. For production ** code the yytestcase() macro should be turned off. But it is useful ** for testing. */ #ifndef yytestcase # define yytestcase(X) #endif /* Next are the tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement ** functions that take a state number and lookahead value and return an ** action integer. ** ** Suppose the action integer is N. Then the action is determined as ** follows ** ** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead ** token onto the stack and goto state N. ** ** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then ** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE. ** ** N == YY_ERROR_ACTION A syntax error has occurred. ** ** N == YY_ACCEPT_ACTION The parser accepts its input. ** ** N == YY_NO_ACTION No such action. Denotes unused ** slots in the yy_action[] table. ** ** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE ** and YY_MAX_REDUCE ** ** The action table is constructed as a single large table named yy_action[]. ** Given state S and lookahead X, the action is computed as either: ** ** (A) N = yy_action[ yy_shift_ofst[S] + X ] ** (B) N = yy_default[S] ** ** The (A) formula is preferred. The B formula is used instead if ** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X. ** ** The formulas above are for computing the action when the lookahead is ** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a reduce action) then the yy_reduce_ofst[] array is used in place of ** the yy_shift_ofst[] array. ** ** The following are the tables generated in this section: ** ** yy_action[] A single table containing all actions. ** yy_lookahead[] A table containing the lookahead for each entry in ** yy_action. Used to detect hash collisions. ** yy_shift_ofst[] For each state, the offset into yy_action for ** shifting terminals. ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. ** *********** Begin parsing tables **********************************************/ #define YY_ACTTAB_COUNT (2070) static const YYACTIONTYPE yy_action[] = { /* 0 */ 566, 1307, 566, 1286, 201, 201, 566, 116, 112, 222, /* 10 */ 566, 1307, 377, 566, 116, 112, 222, 397, 408, 409, /* 20 */ 1260, 378, 1269, 41, 41, 41, 41, 1412, 1517, 71, /* 30 */ 71, 967, 1258, 41, 41, 491, 71, 71, 272, 968, /* 40 */ 298, 476, 298, 123, 124, 114, 1210, 1210, 1044, 1047, /* 50 */ 1036, 1036, 121, 121, 122, 122, 122, 122, 543, 409, /* 60 */ 1234, 1, 1, 573, 2, 1238, 548, 116, 112, 222, /* 70 */ 309, 480, 142, 548, 1272, 524, 116, 112, 222, 1320, /* 80 */ 417, 523, 547, 123, 124, 114, 1210, 1210, 1044, 1047, /* 90 */ 1036, 1036, 121, 121, 122, 122, 122, 122, 424, 116, /* 100 */ 112, 222, 120, 120, 120, 120, 119, 119, 118, 118, /* 110 */ 118, 117, 113, 444, 277, 277, 277, 277, 560, 560, /* 120 */ 560, 1558, 376, 1560, 1186, 375, 1157, 563, 1157, 563, /* 130 */ 409, 1558, 537, 252, 219, 1553, 99, 141, 449, 6, /* 140 */ 365, 233, 120, 120, 120, 120, 119, 119, 118, 118, /* 150 */ 118, 117, 113, 444, 123, 124, 114, 1210, 1210, 1044, /* 160 */ 1047, 1036, 1036, 121, 121, 122, 122, 122, 122, 138, /* 170 */ 289, 1186, 1546, 448, 118, 118, 118, 117, 113, 444, /* 180 */ 125, 1186, 1187, 1188, 144, 465, 334, 566, 150, 127, /* 190 */ 444, 122, 122, 122, 122, 115, 120, 120, 120, 120, /* 200 */ 119, 119, 118, 118, 118, 117, 113, 444, 454, 419, /* 210 */ 13, 13, 215, 120, 120, 120, 120, 119, 119, 118, /* 220 */ 118, 118, 117, 113, 444, 422, 308, 557, 1186, 1187, /* 230 */ 1188, 441, 440, 409, 1271, 122, 122, 122, 122, 120, /* 240 */ 120, 120, 120, 119, 119, 118, 118, 118, 117, 113, /* 250 */ 444, 1543, 98, 1033, 1033, 1045, 1048, 123, 124, 114, /* 260 */ 1210, 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, /* 270 */ 122, 122, 566, 406, 405, 1186, 566, 409, 1217, 319, /* 280 */ 1217, 80, 81, 120, 120, 120, 120, 119, 119, 118, /* 290 */ 118, 118, 117, 113, 444, 70, 70, 1186, 1604, 71, /* 300 */ 71, 123, 124, 114, 1210, 1210, 1044, 1047, 1036, 1036, /* 310 */ 121, 121, 122, 122, 122, 122, 120, 120, 120, 120, /* 320 */ 119, 119, 118, 118, 118, 117, 113, 444, 1037, 210, /* 330 */ 1186, 365, 1186, 1187, 1188, 245, 548, 399, 504, 501, /* 340 */ 500, 108, 558, 138, 4, 516, 933, 433, 499, 217, /* 350 */ 514, 522, 352, 879, 1186, 1187, 1188, 383, 561, 566, /* 360 */ 120, 120, 120, 120, 119, 119, 118, 118, 118, 117, /* 370 */ 113, 444, 277, 277, 16, 16, 1598, 441, 440, 153, /* 380 */ 409, 445, 13, 13, 1279, 563, 1214, 1186, 1187, 1188, /* 390 */ 1003, 1216, 264, 555, 1574, 186, 566, 427, 138, 1215, /* 400 */ 308, 557, 472, 138, 123, 124, 114, 1210, 1210, 1044, /* 410 */ 1047, 1036, 1036, 121, 121, 122, 122, 122, 122, 55, /* 420 */ 55, 413, 1023, 507, 1217, 1186, 1217, 474, 106, 106, /* 430 */ 1312, 1312, 1186, 171, 566, 384, 107, 380, 445, 568, /* 440 */ 567, 430, 1543, 1013, 332, 549, 565, 263, 280, 360, /* 450 */ 510, 355, 509, 250, 491, 308, 557, 71, 71, 351, /* 460 */ 308, 557, 374, 120, 120, 120, 120, 119, 119, 118, /* 470 */ 118, 118, 117, 113, 444, 1013, 1013, 1015, 1016, 27, /* 480 */ 277, 277, 1186, 1187, 1188, 1152, 566, 528, 409, 1186, /* 490 */ 1187, 1188, 348, 563, 548, 1260, 533, 517, 1152, 1516, /* 500 */ 317, 1152, 285, 550, 485, 569, 566, 569, 482, 51, /* 510 */ 51, 207, 123, 124, 114, 1210, 1210, 1044, 1047, 1036, /* 520 */ 1036, 121, 121, 122, 122, 122, 122, 171, 1412, 13, /* 530 */ 13, 409, 277, 277, 1186, 505, 119, 119, 118, 118, /* 540 */ 118, 117, 113, 444, 429, 563, 518, 220, 515, 1552, /* 550 */ 365, 546, 1186, 6, 532, 123, 124, 114, 1210, 1210, /* 560 */ 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, 122, /* 570 */ 145, 120, 120, 120, 120, 119, 119, 118, 118, 118, /* 580 */ 117, 113, 444, 245, 566, 474, 504, 501, 500, 566, /* 590 */ 1481, 1186, 1187, 1188, 1310, 1310, 499, 1186, 149, 425, /* 600 */ 1186, 480, 409, 274, 365, 952, 872, 56, 56, 1186, /* 610 */ 1187, 1188, 71, 71, 120, 120, 120, 120, 119, 119, /* 620 */ 118, 118, 118, 117, 113, 444, 123, 124, 114, 1210, /* 630 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 640 */ 122, 409, 541, 1552, 83, 865, 98, 6, 928, 529, /* 650 */ 848, 543, 151, 927, 1186, 1187, 1188, 1186, 1187, 1188, /* 660 */ 290, 1543, 187, 1633, 395, 123, 124, 114, 1210, 1210, /* 670 */ 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, 122, /* 680 */ 566, 954, 566, 453, 953, 120, 120, 120, 120, 119, /* 690 */ 119, 118, 118, 118, 117, 113, 444, 1152, 221, 1186, /* 700 */ 331, 453, 452, 13, 13, 13, 13, 1003, 365, 463, /* 710 */ 1152, 193, 409, 1152, 382, 1543, 1170, 32, 297, 474, /* 720 */ 195, 1527, 5, 952, 120, 120, 120, 120, 119, 119, /* 730 */ 118, 118, 118, 117, 113, 444, 123, 124, 114, 1210, /* 740 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 750 */ 122, 409, 1067, 419, 1186, 1024, 1186, 1187, 1188, 1186, /* 760 */ 419, 332, 460, 320, 544, 1545, 442, 442, 442, 566, /* 770 */ 3, 117, 113, 444, 453, 123, 124, 114, 1210, 1210, /* 780 */ 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, 122, /* 790 */ 1473, 566, 15, 15, 293, 120, 120, 120, 120, 119, /* 800 */ 119, 118, 118, 118, 117, 113, 444, 1186, 566, 1486, /* 810 */ 1412, 1186, 1187, 1188, 13, 13, 1186, 1187, 1188, 1544, /* 820 */ 271, 271, 409, 286, 308, 557, 1008, 1486, 1488, 196, /* 830 */ 288, 71, 71, 563, 120, 120, 120, 120, 119, 119, /* 840 */ 118, 118, 118, 117, 113, 444, 123, 124, 114, 1210, /* 850 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 860 */ 122, 409, 201, 1087, 1186, 1187, 1188, 1324, 304, 1529, /* 870 */ 388, 278, 278, 450, 564, 402, 922, 922, 566, 563, /* 880 */ 566, 426, 491, 480, 563, 123, 124, 114, 1210, 1210, /* 890 */ 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, 122, /* 900 */ 1486, 71, 71, 13, 13, 120, 120, 120, 120, 119, /* 910 */ 119, 118, 118, 118, 117, 113, 444, 566, 545, 566, /* 920 */ 1577, 573, 2, 1238, 1092, 1092, 488, 1480, 309, 1525, /* 930 */ 142, 324, 409, 836, 837, 838, 312, 1320, 305, 363, /* 940 */ 43, 43, 57, 57, 120, 120, 120, 120, 119, 119, /* 950 */ 118, 118, 118, 117, 113, 444, 123, 124, 114, 1210, /* 960 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 970 */ 122, 12, 277, 277, 566, 1152, 409, 572, 428, 1238, /* 980 */ 465, 334, 296, 474, 309, 563, 142, 249, 1152, 308, /* 990 */ 557, 1152, 321, 1320, 323, 491, 455, 71, 71, 233, /* 1000 */ 283, 101, 114, 1210, 1210, 1044, 1047, 1036, 1036, 121, /* 1010 */ 121, 122, 122, 122, 122, 120, 120, 120, 120, 119, /* 1020 */ 119, 118, 118, 118, 117, 113, 444, 1108, 277, 277, /* 1030 */ 1412, 448, 394, 1230, 439, 277, 277, 248, 247, 246, /* 1040 */ 1319, 563, 1109, 313, 198, 294, 491, 1318, 563, 464, /* 1050 */ 566, 1427, 394, 1130, 1023, 233, 414, 1110, 295, 120, /* 1060 */ 120, 120, 120, 119, 119, 118, 118, 118, 117, 113, /* 1070 */ 444, 1014, 104, 71, 71, 1013, 322, 496, 908, 566, /* 1080 */ 277, 277, 277, 277, 1108, 1261, 415, 448, 909, 361, /* 1090 */ 1571, 1315, 409, 563, 952, 563, 9, 202, 255, 1109, /* 1100 */ 316, 487, 44, 44, 249, 559, 415, 1013, 1013, 1015, /* 1110 */ 443, 1231, 409, 1603, 1110, 897, 123, 124, 114, 1210, /* 1120 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 1130 */ 122, 1231, 409, 1207, 215, 554, 123, 124, 114, 1210, /* 1140 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 1150 */ 122, 1131, 1631, 470, 1631, 255, 123, 111, 114, 1210, /* 1160 */ 1210, 1044, 1047, 1036, 1036, 121, 121, 122, 122, 122, /* 1170 */ 122, 1131, 1632, 414, 1632, 120, 120, 120, 120, 119, /* 1180 */ 119, 118, 118, 118, 117, 113, 444, 221, 209, 351, /* 1190 */ 1207, 1207, 147, 1426, 491, 120, 120, 120, 120, 119, /* 1200 */ 119, 118, 118, 118, 117, 113, 444, 1256, 539, 519, /* 1210 */ 888, 551, 952, 12, 566, 120, 120, 120, 120, 119, /* 1220 */ 119, 118, 118, 118, 117, 113, 444, 538, 566, 860, /* 1230 */ 1129, 361, 1571, 346, 1356, 409, 1163, 58, 58, 339, /* 1240 */ 1355, 508, 277, 277, 277, 277, 277, 277, 1207, 889, /* 1250 */ 1129, 59, 59, 459, 363, 563, 566, 563, 96, 563, /* 1260 */ 124, 114, 1210, 1210, 1044, 1047, 1036, 1036, 121, 121, /* 1270 */ 122, 122, 122, 122, 566, 1412, 566, 281, 1186, 60, /* 1280 */ 60, 110, 392, 392, 391, 266, 389, 860, 1163, 845, /* 1290 */ 566, 481, 566, 436, 341, 1152, 344, 61, 61, 62, /* 1300 */ 62, 967, 227, 1550, 315, 431, 540, 6, 1152, 968, /* 1310 */ 566, 1152, 314, 45, 45, 46, 46, 512, 120, 120, /* 1320 */ 120, 120, 119, 119, 118, 118, 118, 117, 113, 444, /* 1330 */ 416, 173, 1532, 47, 47, 1186, 1187, 1188, 108, 558, /* 1340 */ 325, 4, 229, 1551, 928, 566, 437, 6, 566, 927, /* 1350 */ 164, 566, 1290, 137, 1190, 561, 566, 1549, 566, 1089, /* 1360 */ 566, 6, 566, 1089, 531, 566, 868, 8, 49, 49, /* 1370 */ 228, 50, 50, 566, 63, 63, 566, 457, 445, 64, /* 1380 */ 64, 65, 65, 14, 14, 66, 66, 407, 129, 129, /* 1390 */ 555, 566, 458, 566, 1505, 486, 67, 67, 566, 52, /* 1400 */ 52, 546, 407, 467, 535, 410, 226, 1023, 566, 534, /* 1410 */ 308, 557, 1190, 407, 68, 68, 69, 69, 566, 1023, /* 1420 */ 566, 53, 53, 868, 1014, 106, 106, 525, 1013, 566, /* 1430 */ 1504, 159, 159, 107, 451, 445, 568, 567, 471, 307, /* 1440 */ 1013, 160, 160, 76, 76, 566, 1548, 466, 407, 407, /* 1450 */ 6, 1225, 54, 54, 478, 276, 219, 566, 887, 886, /* 1460 */ 1013, 1013, 1015, 84, 206, 1206, 230, 282, 72, 72, /* 1470 */ 329, 483, 1013, 1013, 1015, 1016, 27, 1576, 1174, 447, /* 1480 */ 130, 130, 281, 148, 105, 38, 103, 392, 392, 391, /* 1490 */ 266, 389, 566, 1126, 845, 396, 566, 108, 558, 566, /* 1500 */ 4, 311, 566, 30, 17, 566, 279, 227, 566, 315, /* 1510 */ 108, 558, 468, 4, 561, 73, 73, 314, 566, 157, /* 1520 */ 157, 566, 131, 131, 526, 132, 132, 561, 128, 128, /* 1530 */ 566, 158, 158, 566, 31, 291, 566, 445, 330, 521, /* 1540 */ 98, 152, 152, 420, 136, 136, 1005, 229, 254, 555, /* 1550 */ 445, 479, 336, 135, 135, 164, 133, 133, 137, 134, /* 1560 */ 134, 875, 555, 535, 566, 473, 566, 254, 536, 475, /* 1570 */ 335, 254, 98, 894, 895, 228, 535, 566, 1023, 566, /* 1580 */ 1074, 534, 210, 232, 106, 106, 1352, 75, 75, 77, /* 1590 */ 77, 1023, 107, 340, 445, 568, 567, 106, 106, 1013, /* 1600 */ 74, 74, 42, 42, 566, 107, 343, 445, 568, 567, /* 1610 */ 410, 497, 1013, 251, 359, 308, 557, 1135, 349, 875, /* 1620 */ 98, 1070, 345, 251, 358, 1591, 347, 48, 48, 1017, /* 1630 */ 1303, 1013, 1013, 1015, 1016, 27, 1289, 1287, 1074, 451, /* 1640 */ 961, 925, 254, 110, 1013, 1013, 1015, 1016, 27, 1174, /* 1650 */ 447, 970, 971, 281, 108, 558, 1288, 4, 392, 392, /* 1660 */ 391, 266, 389, 1343, 1086, 845, 1086, 1085, 858, 1085, /* 1670 */ 146, 561, 926, 354, 110, 303, 364, 553, 227, 1364, /* 1680 */ 315, 108, 558, 1411, 4, 1339, 492, 1017, 314, 1350, /* 1690 */ 1565, 552, 1417, 1268, 445, 204, 1259, 1247, 561, 1246, /* 1700 */ 1248, 1584, 269, 1336, 367, 369, 555, 371, 11, 212, /* 1710 */ 393, 225, 1393, 284, 1398, 456, 287, 327, 229, 328, /* 1720 */ 292, 445, 1386, 216, 333, 1403, 164, 477, 373, 137, /* 1730 */ 1402, 400, 502, 555, 1286, 1023, 357, 1477, 199, 1587, /* 1740 */ 211, 106, 106, 932, 1476, 1225, 228, 556, 175, 107, /* 1750 */ 200, 445, 568, 567, 258, 387, 1013, 1524, 1522, 223, /* 1760 */ 1222, 418, 1023, 83, 208, 79, 82, 184, 106, 106, /* 1770 */ 1482, 169, 177, 461, 179, 462, 107, 1399, 445, 568, /* 1780 */ 567, 410, 180, 1013, 495, 181, 308, 557, 1013, 1013, /* 1790 */ 1015, 1016, 27, 182, 35, 235, 100, 558, 398, 4, /* 1800 */ 96, 1405, 1404, 36, 484, 469, 1407, 188, 401, 1471, /* 1810 */ 451, 89, 1493, 561, 239, 1013, 1013, 1015, 1016, 27, /* 1820 */ 490, 338, 270, 241, 192, 342, 493, 242, 403, 1249, /* 1830 */ 243, 511, 432, 1297, 1306, 91, 445, 1305, 1304, 879, /* 1840 */ 217, 434, 435, 1570, 1276, 1602, 520, 1601, 555, 301, /* 1850 */ 527, 404, 1275, 302, 356, 1274, 1600, 95, 1347, 366, /* 1860 */ 1296, 362, 1348, 368, 256, 257, 1556, 1555, 438, 1346, /* 1870 */ 370, 126, 1345, 10, 1371, 546, 381, 1023, 102, 1457, /* 1880 */ 97, 530, 34, 106, 106, 570, 1180, 372, 265, 1329, /* 1890 */ 379, 107, 203, 445, 568, 567, 1328, 385, 1013, 1370, /* 1900 */ 386, 267, 268, 571, 1244, 161, 1239, 162, 1509, 1510, /* 1910 */ 1508, 143, 1507, 299, 832, 213, 214, 78, 446, 205, /* 1920 */ 310, 306, 163, 224, 1084, 140, 1082, 318, 165, 176, /* 1930 */ 1013, 1013, 1015, 1016, 27, 178, 1206, 231, 911, 234, /* 1940 */ 326, 1098, 183, 421, 166, 167, 411, 185, 85, 423, /* 1950 */ 412, 86, 174, 87, 168, 88, 1101, 236, 1097, 237, /* 1960 */ 154, 18, 238, 254, 337, 1219, 489, 1090, 240, 190, /* 1970 */ 37, 847, 189, 494, 358, 244, 350, 506, 191, 877, /* 1980 */ 90, 498, 19, 20, 503, 92, 353, 890, 300, 170, /* 1990 */ 155, 93, 513, 94, 1168, 156, 1050, 1137, 39, 218, /* 2000 */ 273, 275, 1136, 960, 194, 955, 110, 1154, 1158, 253, /* 2010 */ 7, 1162, 1156, 21, 22, 1161, 1142, 23, 24, 25, /* 2020 */ 33, 542, 26, 260, 197, 98, 1065, 1051, 1049, 1053, /* 2030 */ 1107, 1054, 1106, 259, 28, 40, 562, 1018, 859, 109, /* 2040 */ 29, 921, 390, 1176, 172, 139, 1175, 1235, 261, 1235, /* 2050 */ 1235, 1235, 1235, 1235, 1235, 1235, 1235, 262, 1235, 1235, /* 2060 */ 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1593, 1592, }; static const YYCODETYPE yy_lookahead[] = { /* 0 */ 193, 223, 193, 225, 193, 193, 193, 274, 275, 276, /* 10 */ 193, 233, 219, 193, 274, 275, 276, 206, 206, 19, /* 20 */ 193, 219, 216, 216, 217, 216, 217, 193, 295, 216, /* 30 */ 217, 31, 205, 216, 217, 193, 216, 217, 213, 39, /* 40 */ 228, 193, 230, 43, 44, 45, 46, 47, 48, 49, /* 50 */ 50, 51, 52, 53, 54, 55, 56, 57, 193, 19, /* 60 */ 185, 186, 187, 188, 189, 190, 253, 274, 275, 276, /* 70 */ 195, 193, 197, 253, 216, 262, 274, 275, 276, 204, /* 80 */ 238, 204, 262, 43, 44, 45, 46, 47, 48, 49, /* 90 */ 50, 51, 52, 53, 54, 55, 56, 57, 264, 274, /* 100 */ 275, 276, 102, 103, 104, 105, 106, 107, 108, 109, /* 110 */ 110, 111, 112, 113, 239, 240, 239, 240, 210, 211, /* 120 */ 212, 314, 315, 314, 59, 316, 86, 252, 88, 252, /* 130 */ 19, 314, 315, 256, 257, 309, 25, 72, 296, 313, /* 140 */ 193, 266, 102, 103, 104, 105, 106, 107, 108, 109, /* 150 */ 110, 111, 112, 113, 43, 44, 45, 46, 47, 48, /* 160 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 81, /* 170 */ 292, 59, 307, 298, 108, 109, 110, 111, 112, 113, /* 180 */ 69, 116, 117, 118, 72, 128, 129, 193, 241, 22, /* 190 */ 113, 54, 55, 56, 57, 58, 102, 103, 104, 105, /* 200 */ 106, 107, 108, 109, 110, 111, 112, 113, 120, 193, /* 210 */ 216, 217, 25, 102, 103, 104, 105, 106, 107, 108, /* 220 */ 109, 110, 111, 112, 113, 231, 138, 139, 116, 117, /* 230 */ 118, 106, 107, 19, 216, 54, 55, 56, 57, 102, /* 240 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, /* 250 */ 113, 304, 25, 46, 47, 48, 49, 43, 44, 45, /* 260 */ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, /* 270 */ 56, 57, 193, 106, 107, 59, 193, 19, 153, 263, /* 280 */ 155, 67, 24, 102, 103, 104, 105, 106, 107, 108, /* 290 */ 109, 110, 111, 112, 113, 216, 217, 59, 230, 216, /* 300 */ 217, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 310 */ 52, 53, 54, 55, 56, 57, 102, 103, 104, 105, /* 320 */ 106, 107, 108, 109, 110, 111, 112, 113, 121, 142, /* 330 */ 59, 193, 116, 117, 118, 119, 253, 204, 122, 123, /* 340 */ 124, 19, 20, 81, 22, 262, 108, 19, 132, 165, /* 350 */ 166, 193, 24, 126, 116, 117, 118, 278, 36, 193, /* 360 */ 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, /* 370 */ 112, 113, 239, 240, 216, 217, 215, 106, 107, 241, /* 380 */ 19, 59, 216, 217, 223, 252, 115, 116, 117, 118, /* 390 */ 73, 120, 26, 71, 193, 22, 193, 231, 81, 128, /* 400 */ 138, 139, 269, 81, 43, 44, 45, 46, 47, 48, /* 410 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 216, /* 420 */ 217, 198, 100, 95, 153, 59, 155, 193, 106, 107, /* 430 */ 235, 236, 59, 193, 193, 249, 114, 251, 116, 117, /* 440 */ 118, 113, 304, 121, 127, 204, 193, 119, 120, 121, /* 450 */ 122, 123, 124, 125, 193, 138, 139, 216, 217, 131, /* 460 */ 138, 139, 193, 102, 103, 104, 105, 106, 107, 108, /* 470 */ 109, 110, 111, 112, 113, 153, 154, 155, 156, 157, /* 480 */ 239, 240, 116, 117, 118, 76, 193, 193, 19, 116, /* 490 */ 117, 118, 23, 252, 253, 193, 87, 204, 89, 238, /* 500 */ 193, 92, 268, 262, 281, 203, 193, 205, 285, 216, /* 510 */ 217, 150, 43, 44, 45, 46, 47, 48, 49, 50, /* 520 */ 51, 52, 53, 54, 55, 56, 57, 193, 193, 216, /* 530 */ 217, 19, 239, 240, 59, 23, 106, 107, 108, 109, /* 540 */ 110, 111, 112, 113, 231, 252, 253, 193, 308, 309, /* 550 */ 193, 145, 59, 313, 145, 43, 44, 45, 46, 47, /* 560 */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, /* 570 */ 164, 102, 103, 104, 105, 106, 107, 108, 109, 110, /* 580 */ 111, 112, 113, 119, 193, 193, 122, 123, 124, 193, /* 590 */ 283, 116, 117, 118, 235, 236, 132, 59, 241, 264, /* 600 */ 59, 193, 19, 23, 193, 25, 23, 216, 217, 116, /* 610 */ 117, 118, 216, 217, 102, 103, 104, 105, 106, 107, /* 620 */ 108, 109, 110, 111, 112, 113, 43, 44, 45, 46, /* 630 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 640 */ 57, 19, 308, 309, 151, 23, 25, 313, 135, 253, /* 650 */ 21, 193, 241, 140, 116, 117, 118, 116, 117, 118, /* 660 */ 268, 304, 22, 301, 302, 43, 44, 45, 46, 47, /* 670 */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, /* 680 */ 193, 143, 193, 193, 143, 102, 103, 104, 105, 106, /* 690 */ 107, 108, 109, 110, 111, 112, 113, 76, 118, 59, /* 700 */ 292, 211, 212, 216, 217, 216, 217, 73, 193, 80, /* 710 */ 89, 25, 19, 92, 193, 304, 23, 22, 231, 193, /* 720 */ 231, 193, 22, 143, 102, 103, 104, 105, 106, 107, /* 730 */ 108, 109, 110, 111, 112, 113, 43, 44, 45, 46, /* 740 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 750 */ 57, 19, 123, 193, 59, 23, 116, 117, 118, 59, /* 760 */ 193, 127, 128, 129, 306, 307, 210, 211, 212, 193, /* 770 */ 22, 111, 112, 113, 284, 43, 44, 45, 46, 47, /* 780 */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, /* 790 */ 161, 193, 216, 217, 268, 102, 103, 104, 105, 106, /* 800 */ 107, 108, 109, 110, 111, 112, 113, 59, 193, 193, /* 810 */ 193, 116, 117, 118, 216, 217, 116, 117, 118, 304, /* 820 */ 239, 240, 19, 263, 138, 139, 23, 211, 212, 231, /* 830 */ 263, 216, 217, 252, 102, 103, 104, 105, 106, 107, /* 840 */ 108, 109, 110, 111, 112, 113, 43, 44, 45, 46, /* 850 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 860 */ 57, 19, 193, 11, 116, 117, 118, 240, 253, 193, /* 870 */ 201, 239, 240, 193, 134, 206, 136, 137, 193, 252, /* 880 */ 193, 264, 193, 193, 252, 43, 44, 45, 46, 47, /* 890 */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, /* 900 */ 284, 216, 217, 216, 217, 102, 103, 104, 105, 106, /* 910 */ 107, 108, 109, 110, 111, 112, 113, 193, 231, 193, /* 920 */ 187, 188, 189, 190, 127, 128, 129, 238, 195, 193, /* 930 */ 197, 16, 19, 7, 8, 9, 193, 204, 253, 193, /* 940 */ 216, 217, 216, 217, 102, 103, 104, 105, 106, 107, /* 950 */ 108, 109, 110, 111, 112, 113, 43, 44, 45, 46, /* 960 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 970 */ 57, 213, 239, 240, 193, 76, 19, 188, 232, 190, /* 980 */ 128, 129, 292, 193, 195, 252, 197, 46, 89, 138, /* 990 */ 139, 92, 77, 204, 79, 193, 269, 216, 217, 266, /* 1000 */ 204, 159, 45, 46, 47, 48, 49, 50, 51, 52, /* 1010 */ 53, 54, 55, 56, 57, 102, 103, 104, 105, 106, /* 1020 */ 107, 108, 109, 110, 111, 112, 113, 12, 239, 240, /* 1030 */ 193, 298, 22, 23, 253, 239, 240, 127, 128, 129, /* 1040 */ 238, 252, 27, 193, 286, 204, 193, 204, 252, 291, /* 1050 */ 193, 273, 22, 23, 100, 266, 115, 42, 268, 102, /* 1060 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, /* 1070 */ 113, 117, 159, 216, 217, 121, 161, 19, 63, 193, /* 1080 */ 239, 240, 239, 240, 12, 208, 209, 298, 73, 311, /* 1090 */ 312, 238, 19, 252, 25, 252, 22, 24, 24, 27, /* 1100 */ 193, 264, 216, 217, 46, 208, 209, 153, 154, 155, /* 1110 */ 253, 101, 19, 23, 42, 25, 43, 44, 45, 46, /* 1120 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 1130 */ 57, 101, 19, 59, 25, 63, 43, 44, 45, 46, /* 1140 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 1150 */ 57, 22, 23, 115, 25, 24, 43, 44, 45, 46, /* 1160 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 1170 */ 57, 22, 23, 115, 25, 102, 103, 104, 105, 106, /* 1180 */ 107, 108, 109, 110, 111, 112, 113, 118, 150, 131, /* 1190 */ 59, 117, 22, 273, 193, 102, 103, 104, 105, 106, /* 1200 */ 107, 108, 109, 110, 111, 112, 113, 204, 66, 204, /* 1210 */ 35, 204, 143, 213, 193, 102, 103, 104, 105, 106, /* 1220 */ 107, 108, 109, 110, 111, 112, 113, 85, 193, 59, /* 1230 */ 101, 311, 312, 16, 193, 19, 94, 216, 217, 238, /* 1240 */ 193, 66, 239, 240, 239, 240, 239, 240, 117, 74, /* 1250 */ 101, 216, 217, 193, 193, 252, 193, 252, 149, 252, /* 1260 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, /* 1270 */ 54, 55, 56, 57, 193, 193, 193, 5, 59, 216, /* 1280 */ 217, 25, 10, 11, 12, 13, 14, 117, 146, 17, /* 1290 */ 193, 291, 193, 232, 77, 76, 79, 216, 217, 216, /* 1300 */ 217, 31, 30, 309, 32, 130, 87, 313, 89, 39, /* 1310 */ 193, 92, 40, 216, 217, 216, 217, 108, 102, 103, /* 1320 */ 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, /* 1330 */ 299, 300, 193, 216, 217, 116, 117, 118, 19, 20, /* 1340 */ 193, 22, 70, 309, 135, 193, 264, 313, 193, 140, /* 1350 */ 78, 193, 226, 81, 59, 36, 193, 309, 193, 29, /* 1360 */ 193, 313, 193, 33, 145, 193, 59, 48, 216, 217, /* 1370 */ 98, 216, 217, 193, 216, 217, 193, 244, 59, 216, /* 1380 */ 217, 216, 217, 216, 217, 216, 217, 254, 216, 217, /* 1390 */ 71, 193, 244, 193, 193, 65, 216, 217, 193, 216, /* 1400 */ 217, 145, 254, 244, 85, 133, 15, 100, 193, 90, /* 1410 */ 138, 139, 117, 254, 216, 217, 216, 217, 193, 100, /* 1420 */ 193, 216, 217, 116, 117, 106, 107, 19, 121, 193, /* 1430 */ 193, 216, 217, 114, 162, 116, 117, 118, 244, 244, /* 1440 */ 121, 216, 217, 216, 217, 193, 309, 129, 254, 254, /* 1450 */ 313, 60, 216, 217, 19, 256, 257, 193, 120, 121, /* 1460 */ 153, 154, 155, 149, 150, 25, 24, 99, 216, 217, /* 1470 */ 152, 193, 153, 154, 155, 156, 157, 0, 1, 2, /* 1480 */ 216, 217, 5, 22, 158, 24, 160, 10, 11, 12, /* 1490 */ 13, 14, 193, 23, 17, 25, 193, 19, 20, 193, /* 1500 */ 22, 133, 193, 22, 22, 193, 22, 30, 193, 32, /* 1510 */ 19, 20, 129, 22, 36, 216, 217, 40, 193, 216, /* 1520 */ 217, 193, 216, 217, 116, 216, 217, 36, 216, 217, /* 1530 */ 193, 216, 217, 193, 53, 152, 193, 59, 23, 19, /* 1540 */ 25, 216, 217, 61, 216, 217, 23, 70, 25, 71, /* 1550 */ 59, 116, 193, 216, 217, 78, 216, 217, 81, 216, /* 1560 */ 217, 59, 71, 85, 193, 23, 193, 25, 90, 23, /* 1570 */ 23, 25, 25, 7, 8, 98, 85, 193, 100, 193, /* 1580 */ 59, 90, 142, 141, 106, 107, 193, 216, 217, 216, /* 1590 */ 217, 100, 114, 193, 116, 117, 118, 106, 107, 121, /* 1600 */ 216, 217, 216, 217, 193, 114, 193, 116, 117, 118, /* 1610 */ 133, 23, 121, 25, 121, 138, 139, 97, 23, 117, /* 1620 */ 25, 23, 193, 25, 131, 141, 193, 216, 217, 59, /* 1630 */ 193, 153, 154, 155, 156, 157, 226, 193, 117, 162, /* 1640 */ 23, 23, 25, 25, 153, 154, 155, 156, 157, 1, /* 1650 */ 2, 83, 84, 5, 19, 20, 226, 22, 10, 11, /* 1660 */ 12, 13, 14, 258, 153, 17, 155, 153, 23, 155, /* 1670 */ 25, 36, 23, 193, 25, 255, 193, 236, 30, 193, /* 1680 */ 32, 19, 20, 193, 22, 193, 288, 117, 40, 193, /* 1690 */ 318, 193, 193, 193, 59, 242, 193, 193, 36, 193, /* 1700 */ 193, 193, 287, 255, 255, 255, 71, 255, 243, 214, /* 1710 */ 191, 297, 267, 245, 271, 259, 259, 293, 70, 246, /* 1720 */ 246, 59, 267, 229, 245, 271, 78, 293, 259, 81, /* 1730 */ 271, 271, 220, 71, 225, 100, 219, 219, 249, 196, /* 1740 */ 243, 106, 107, 108, 219, 60, 98, 280, 297, 114, /* 1750 */ 249, 116, 117, 118, 141, 245, 121, 200, 200, 297, /* 1760 */ 38, 200, 100, 151, 150, 294, 294, 22, 106, 107, /* 1770 */ 283, 43, 234, 18, 237, 200, 114, 272, 116, 117, /* 1780 */ 118, 133, 237, 121, 18, 237, 138, 139, 153, 154, /* 1790 */ 155, 156, 157, 237, 270, 199, 19, 20, 246, 22, /* 1800 */ 149, 272, 272, 270, 200, 246, 234, 234, 246, 246, /* 1810 */ 162, 158, 290, 36, 199, 153, 154, 155, 156, 157, /* 1820 */ 62, 289, 200, 199, 22, 200, 221, 199, 221, 200, /* 1830 */ 199, 115, 64, 227, 218, 22, 59, 218, 218, 126, /* 1840 */ 165, 24, 113, 312, 218, 224, 305, 224, 71, 282, /* 1850 */ 144, 221, 220, 282, 218, 218, 218, 115, 261, 260, /* 1860 */ 227, 221, 261, 260, 200, 91, 317, 317, 82, 261, /* 1870 */ 260, 148, 261, 22, 265, 145, 200, 100, 158, 277, /* 1880 */ 147, 146, 25, 106, 107, 202, 13, 260, 194, 250, /* 1890 */ 249, 114, 248, 116, 117, 118, 250, 247, 121, 265, /* 1900 */ 246, 194, 6, 192, 192, 207, 192, 207, 213, 213, /* 1910 */ 213, 222, 213, 222, 4, 214, 214, 213, 3, 22, /* 1920 */ 163, 279, 207, 15, 23, 16, 23, 139, 130, 151, /* 1930 */ 153, 154, 155, 156, 157, 142, 25, 24, 20, 144, /* 1940 */ 16, 1, 142, 61, 130, 130, 303, 151, 53, 37, /* 1950 */ 303, 53, 300, 53, 130, 53, 116, 34, 1, 141, /* 1960 */ 5, 22, 115, 25, 161, 75, 41, 68, 141, 115, /* 1970 */ 24, 20, 68, 19, 131, 125, 23, 96, 22, 59, /* 1980 */ 22, 67, 22, 22, 67, 22, 24, 28, 67, 37, /* 1990 */ 23, 149, 22, 25, 23, 23, 23, 23, 22, 141, /* 2000 */ 23, 23, 97, 116, 22, 143, 25, 88, 75, 34, /* 2010 */ 44, 75, 86, 34, 34, 93, 23, 34, 34, 34, /* 2020 */ 22, 24, 34, 22, 25, 25, 23, 23, 23, 23, /* 2030 */ 23, 11, 23, 25, 22, 22, 25, 23, 23, 22, /* 2040 */ 22, 135, 15, 1, 25, 23, 1, 319, 141, 319, /* 2050 */ 319, 319, 319, 319, 319, 319, 319, 141, 319, 319, /* 2060 */ 319, 319, 319, 319, 319, 319, 319, 319, 141, 141, /* 2070 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2080 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2090 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2100 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2110 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2120 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2130 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2140 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2150 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2160 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2170 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2180 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2190 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2200 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2210 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2220 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2230 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2240 */ 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, /* 2250 */ 319, 319, 319, 319, 319, }; #define YY_SHIFT_COUNT (573) #define YY_SHIFT_MIN (0) #define YY_SHIFT_MAX (2045) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 1648, 1477, 1272, 322, 322, 262, 1319, 1478, 1491, 1662, /* 10 */ 1662, 1662, 317, 0, 0, 214, 1093, 1662, 1662, 1662, /* 20 */ 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, /* 30 */ 271, 271, 1219, 1219, 216, 88, 262, 262, 262, 262, /* 40 */ 262, 40, 111, 258, 361, 469, 512, 583, 622, 693, /* 50 */ 732, 803, 842, 913, 1073, 1093, 1093, 1093, 1093, 1093, /* 60 */ 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, /* 70 */ 1093, 1093, 1093, 1113, 1093, 1216, 957, 957, 1635, 1662, /* 80 */ 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, /* 90 */ 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, /* 100 */ 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, /* 110 */ 1662, 1662, 1662, 1662, 1777, 1662, 1662, 1662, 1662, 1662, /* 120 */ 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 137, 181, /* 130 */ 181, 181, 181, 181, 94, 430, 66, 65, 112, 366, /* 140 */ 475, 475, 629, 1058, 475, 475, 125, 125, 475, 686, /* 150 */ 686, 686, 660, 686, 57, 184, 184, 77, 77, 2070, /* 160 */ 2070, 328, 328, 328, 493, 373, 373, 373, 373, 1015, /* 170 */ 1015, 409, 366, 1129, 1149, 475, 475, 475, 475, 475, /* 180 */ 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, /* 190 */ 475, 475, 475, 475, 475, 621, 621, 475, 852, 899, /* 200 */ 899, 1295, 1295, 406, 851, 2070, 2070, 2070, 2070, 2070, /* 210 */ 2070, 2070, 1307, 954, 954, 640, 464, 695, 238, 700, /* 220 */ 538, 541, 748, 475, 475, 475, 475, 475, 475, 475, /* 230 */ 475, 475, 475, 634, 475, 475, 475, 475, 475, 475, /* 240 */ 475, 475, 475, 475, 475, 475, 1175, 1175, 1175, 475, /* 250 */ 475, 475, 580, 475, 475, 475, 1074, 1142, 475, 475, /* 260 */ 1072, 475, 475, 475, 475, 475, 475, 475, 475, 797, /* 270 */ 1330, 740, 1131, 1131, 1131, 1131, 1069, 740, 740, 1209, /* 280 */ 167, 926, 1391, 1038, 1314, 187, 1408, 1314, 1408, 1435, /* 290 */ 1109, 1038, 1038, 1109, 1038, 187, 1435, 227, 1090, 941, /* 300 */ 1270, 1270, 1270, 1408, 1256, 1256, 1326, 1440, 513, 1461, /* 310 */ 1685, 1685, 1613, 1613, 1722, 1722, 1613, 1612, 1614, 1745, /* 320 */ 1728, 1755, 1755, 1755, 1755, 1613, 1766, 1651, 1614, 1614, /* 330 */ 1651, 1745, 1728, 1651, 1728, 1651, 1613, 1766, 1653, 1758, /* 340 */ 1613, 1766, 1802, 1613, 1766, 1613, 1766, 1802, 1716, 1716, /* 350 */ 1716, 1768, 1813, 1813, 1802, 1716, 1713, 1716, 1768, 1716, /* 360 */ 1716, 1675, 1817, 1729, 1729, 1802, 1706, 1742, 1706, 1742, /* 370 */ 1706, 1742, 1706, 1742, 1613, 1774, 1774, 1786, 1786, 1723, /* 380 */ 1730, 1851, 1613, 1720, 1723, 1733, 1735, 1651, 1857, 1873, /* 390 */ 1873, 1896, 1896, 1896, 2070, 2070, 2070, 2070, 2070, 2070, /* 400 */ 2070, 2070, 2070, 2070, 2070, 2070, 2070, 2070, 2070, 207, /* 410 */ 915, 1010, 1030, 1217, 910, 1170, 1470, 1368, 1481, 1442, /* 420 */ 1318, 1383, 1515, 1482, 1523, 1542, 1546, 1547, 1588, 1595, /* 430 */ 1502, 1338, 1566, 1493, 1520, 1521, 1598, 1617, 1568, 1618, /* 440 */ 1511, 1514, 1645, 1649, 1570, 1484, 1910, 1915, 1897, 1757, /* 450 */ 1908, 1909, 1901, 1903, 1788, 1778, 1798, 1911, 1911, 1913, /* 460 */ 1793, 1918, 1795, 1924, 1940, 1800, 1814, 1911, 1815, 1882, /* 470 */ 1912, 1911, 1796, 1895, 1898, 1900, 1902, 1824, 1840, 1923, /* 480 */ 1818, 1957, 1955, 1939, 1847, 1803, 1899, 1938, 1904, 1890, /* 490 */ 1925, 1827, 1854, 1946, 1951, 1954, 1843, 1850, 1956, 1914, /* 500 */ 1958, 1960, 1953, 1961, 1917, 1920, 1962, 1881, 1959, 1963, /* 510 */ 1921, 1952, 1967, 1842, 1970, 1971, 1972, 1973, 1968, 1974, /* 520 */ 1976, 1905, 1858, 1977, 1978, 1887, 1975, 1982, 1862, 1981, /* 530 */ 1979, 1980, 1983, 1984, 1919, 1933, 1926, 1966, 1936, 1922, /* 540 */ 1985, 1993, 1998, 1997, 1999, 2000, 1988, 2003, 1981, 2004, /* 550 */ 2005, 2006, 2007, 2008, 2009, 2001, 2020, 2012, 2013, 2014, /* 560 */ 2015, 2017, 2018, 2011, 1906, 1907, 1916, 1927, 1928, 2019, /* 570 */ 2022, 2027, 2042, 2045, }; #define YY_REDUCE_COUNT (408) #define YY_REDUCE_MIN (-267) #define YY_REDUCE_MAX (1715) static const short yy_reduce_ofst[] = { /* 0 */ -125, 733, 789, 241, 293, -123, -193, -191, -183, -187, /* 10 */ -180, 83, 133, -207, -198, -267, -175, -6, 166, 313, /* 20 */ 487, 396, 489, 598, 615, 685, 687, 79, 781, 857, /* 30 */ 490, 616, 240, 334, -188, 796, 841, 843, 1003, 1005, /* 40 */ 1007, -260, -260, -260, -260, -260, -260, -260, -260, -260, /* 50 */ -260, -260, -260, -260, -260, -260, -260, -260, -260, -260, /* 60 */ -260, -260, -260, -260, -260, -260, -260, -260, -260, -260, /* 70 */ -260, -260, -260, -260, -260, -260, -260, -260, 158, 203, /* 80 */ 391, 576, 724, 726, 886, 1021, 1035, 1063, 1081, 1083, /* 90 */ 1097, 1099, 1117, 1152, 1155, 1158, 1163, 1165, 1167, 1169, /* 100 */ 1172, 1180, 1183, 1198, 1200, 1205, 1215, 1225, 1227, 1236, /* 110 */ 1252, 1264, 1299, 1303, 1306, 1309, 1312, 1315, 1325, 1328, /* 120 */ 1337, 1340, 1343, 1371, 1373, 1384, 1386, 1411, -260, -260, /* 130 */ -260, -260, -260, -260, -260, -260, -260, -53, 138, 302, /* 140 */ -158, 357, 223, -222, 411, 458, -92, 556, 669, 581, /* 150 */ 632, 581, -260, 632, 758, 778, 920, -260, -260, -260, /* 160 */ -260, 161, 161, 161, 307, 234, 392, 526, 790, 195, /* 170 */ 359, -174, -173, 362, 362, -189, 16, 560, 567, 261, /* 180 */ 689, 802, 853, -122, -166, 408, 335, 617, 690, 837, /* 190 */ 1001, 746, 1061, 515, 1082, 994, 1034, -135, 1000, 1048, /* 200 */ 1137, 877, 897, 186, 627, 1031, 1133, 1148, 1159, 1194, /* 210 */ 1199, 1195, -194, -142, 18, -152, 68, 201, 253, 269, /* 220 */ 294, 354, 521, 528, 676, 680, 736, 743, 850, 907, /* 230 */ 1041, 1047, 1060, 727, 1139, 1147, 1201, 1237, 1278, 1359, /* 240 */ 1393, 1400, 1413, 1429, 1433, 1437, 1126, 1410, 1430, 1444, /* 250 */ 1480, 1483, 1405, 1486, 1490, 1492, 1420, 1372, 1496, 1498, /* 260 */ 1441, 1499, 253, 1500, 1503, 1504, 1506, 1507, 1508, 1398, /* 270 */ 1415, 1453, 1448, 1449, 1450, 1452, 1405, 1453, 1453, 1465, /* 280 */ 1495, 1519, 1414, 1443, 1445, 1468, 1456, 1455, 1457, 1424, /* 290 */ 1473, 1454, 1459, 1474, 1460, 1479, 1434, 1512, 1494, 1509, /* 300 */ 1517, 1518, 1525, 1469, 1489, 1501, 1467, 1510, 1497, 1543, /* 310 */ 1451, 1462, 1557, 1558, 1471, 1472, 1561, 1487, 1505, 1524, /* 320 */ 1538, 1537, 1545, 1548, 1556, 1575, 1596, 1552, 1529, 1530, /* 330 */ 1559, 1533, 1572, 1562, 1573, 1563, 1604, 1615, 1522, 1532, /* 340 */ 1622, 1624, 1605, 1625, 1628, 1629, 1631, 1607, 1616, 1619, /* 350 */ 1620, 1606, 1621, 1623, 1630, 1626, 1632, 1636, 1633, 1637, /* 360 */ 1638, 1531, 1541, 1567, 1571, 1640, 1597, 1599, 1601, 1603, /* 370 */ 1608, 1610, 1611, 1627, 1664, 1549, 1550, 1609, 1634, 1639, /* 380 */ 1641, 1602, 1676, 1642, 1646, 1644, 1650, 1654, 1683, 1694, /* 390 */ 1707, 1711, 1712, 1714, 1643, 1647, 1652, 1698, 1695, 1696, /* 400 */ 1697, 1699, 1700, 1689, 1691, 1701, 1702, 1704, 1715, }; static const YYACTIONTYPE yy_default[] = { /* 0 */ 1637, 1637, 1637, 1466, 1233, 1344, 1233, 1233, 1233, 1466, /* 10 */ 1466, 1466, 1233, 1374, 1374, 1519, 1266, 1233, 1233, 1233, /* 20 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1465, 1233, 1233, /* 30 */ 1233, 1233, 1554, 1554, 1233, 1233, 1233, 1233, 1233, 1233, /* 40 */ 1233, 1233, 1383, 1233, 1390, 1233, 1233, 1233, 1233, 1233, /* 50 */ 1467, 1468, 1233, 1233, 1233, 1518, 1520, 1483, 1397, 1396, /* 60 */ 1395, 1394, 1501, 1361, 1388, 1381, 1385, 1461, 1462, 1460, /* 70 */ 1464, 1468, 1467, 1233, 1384, 1431, 1445, 1430, 1233, 1233, /* 80 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 90 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 100 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 110 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 120 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1439, 1444, /* 130 */ 1451, 1443, 1440, 1433, 1432, 1434, 1435, 1233, 1233, 1257, /* 140 */ 1233, 1233, 1254, 1308, 1233, 1233, 1233, 1233, 1233, 1538, /* 150 */ 1537, 1233, 1436, 1233, 1266, 1425, 1424, 1448, 1437, 1447, /* 160 */ 1446, 1526, 1590, 1589, 1484, 1233, 1233, 1233, 1233, 1233, /* 170 */ 1233, 1554, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 180 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 190 */ 1233, 1233, 1233, 1233, 1233, 1554, 1554, 1233, 1266, 1554, /* 200 */ 1554, 1262, 1262, 1368, 1233, 1533, 1335, 1335, 1335, 1335, /* 210 */ 1344, 1335, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 220 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1523, 1521, 1233, /* 230 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 240 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 250 */ 1233, 1233, 1233, 1233, 1233, 1233, 1340, 1233, 1233, 1233, /* 260 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1583, 1233, /* 270 */ 1496, 1322, 1340, 1340, 1340, 1340, 1342, 1323, 1321, 1334, /* 280 */ 1267, 1240, 1629, 1400, 1389, 1341, 1363, 1389, 1363, 1626, /* 290 */ 1387, 1400, 1400, 1387, 1400, 1341, 1626, 1283, 1606, 1278, /* 300 */ 1374, 1374, 1374, 1363, 1368, 1368, 1463, 1341, 1334, 1233, /* 310 */ 1629, 1629, 1349, 1349, 1628, 1628, 1349, 1484, 1613, 1409, /* 320 */ 1311, 1317, 1317, 1317, 1317, 1349, 1251, 1387, 1613, 1613, /* 330 */ 1387, 1409, 1311, 1387, 1311, 1387, 1349, 1251, 1500, 1623, /* 340 */ 1349, 1251, 1474, 1349, 1251, 1349, 1251, 1474, 1309, 1309, /* 350 */ 1309, 1298, 1233, 1233, 1474, 1309, 1283, 1309, 1298, 1309, /* 360 */ 1309, 1572, 1233, 1478, 1478, 1474, 1367, 1362, 1367, 1362, /* 370 */ 1367, 1362, 1367, 1362, 1349, 1564, 1564, 1377, 1377, 1382, /* 380 */ 1368, 1469, 1349, 1233, 1382, 1380, 1378, 1387, 1301, 1586, /* 390 */ 1586, 1582, 1582, 1582, 1634, 1634, 1533, 1599, 1266, 1266, /* 400 */ 1266, 1266, 1599, 1285, 1285, 1267, 1267, 1266, 1599, 1233, /* 410 */ 1233, 1233, 1233, 1233, 1233, 1594, 1233, 1528, 1485, 1353, /* 420 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 430 */ 1233, 1233, 1233, 1233, 1539, 1233, 1233, 1233, 1233, 1233, /* 440 */ 1233, 1233, 1233, 1233, 1233, 1414, 1233, 1236, 1530, 1233, /* 450 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1391, 1392, 1354, /* 460 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1406, 1233, 1233, /* 470 */ 1233, 1401, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 480 */ 1625, 1233, 1233, 1233, 1233, 1233, 1233, 1499, 1498, 1233, /* 490 */ 1233, 1351, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 500 */ 1233, 1233, 1233, 1233, 1233, 1281, 1233, 1233, 1233, 1233, /* 510 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 520 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1379, /* 530 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 540 */ 1233, 1233, 1233, 1233, 1569, 1369, 1233, 1233, 1616, 1233, /* 550 */ 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, /* 560 */ 1233, 1233, 1233, 1610, 1325, 1416, 1233, 1415, 1419, 1255, /* 570 */ 1233, 1245, 1233, 1233, }; /********** End of lemon-generated parsing tables *****************************/ /* The next table maps tokens (terminal symbols) into fallback tokens. ** If a construct like the following: ** ** %fallback ID X Y Z. ** ** appears in the grammar, then ID becomes a fallback token for X, Y, ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. ** ** This feature can be used, for example, to cause some keywords in a language ** to revert to identifiers if they keyword does not apply in the context where ** it appears. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { 0, /* $ => nothing */ 0, /* SEMI => nothing */ 59, /* EXPLAIN => ID */ 59, /* QUERY => ID */ 59, /* PLAN => ID */ 59, /* BEGIN => ID */ 0, /* TRANSACTION => nothing */ 59, /* DEFERRED => ID */ 59, /* IMMEDIATE => ID */ 59, /* EXCLUSIVE => ID */ 0, /* COMMIT => nothing */ 59, /* END => ID */ 59, /* ROLLBACK => ID */ 59, /* SAVEPOINT => ID */ 59, /* RELEASE => ID */ 0, /* TO => nothing */ 0, /* TABLE => nothing */ 0, /* CREATE => nothing */ 59, /* IF => ID */ 0, /* NOT => nothing */ 0, /* EXISTS => nothing */ 59, /* TEMP => ID */ 0, /* LP => nothing */ 0, /* RP => nothing */ 0, /* AS => nothing */ 0, /* COMMA => nothing */ 59, /* WITHOUT => ID */ 59, /* ABORT => ID */ 59, /* ACTION => ID */ 59, /* AFTER => ID */ 59, /* ANALYZE => ID */ 59, /* ASC => ID */ 59, /* ATTACH => ID */ 59, /* BEFORE => ID */ 59, /* BY => ID */ 59, /* CASCADE => ID */ 59, /* CAST => ID */ 59, /* CONFLICT => ID */ 59, /* DATABASE => ID */ 59, /* DESC => ID */ 59, /* DETACH => ID */ 59, /* EACH => ID */ 59, /* FAIL => ID */ 0, /* OR => nothing */ 0, /* AND => nothing */ 0, /* IS => nothing */ 59, /* MATCH => ID */ 59, /* LIKE_KW => ID */ 0, /* BETWEEN => nothing */ 0, /* IN => nothing */ 0, /* ISNULL => nothing */ 0, /* NOTNULL => nothing */ 0, /* NE => nothing */ 0, /* EQ => nothing */ 0, /* GT => nothing */ 0, /* LE => nothing */ 0, /* LT => nothing */ 0, /* GE => nothing */ 0, /* ESCAPE => nothing */ 0, /* ID => nothing */ 59, /* COLUMNKW => ID */ 59, /* DO => ID */ 59, /* FOR => ID */ 59, /* IGNORE => ID */ 59, /* INITIALLY => ID */ 59, /* INSTEAD => ID */ 59, /* NO => ID */ 59, /* KEY => ID */ 59, /* OF => ID */ 59, /* OFFSET => ID */ 59, /* PRAGMA => ID */ 59, /* RAISE => ID */ 59, /* RECURSIVE => ID */ 59, /* REPLACE => ID */ 59, /* RESTRICT => ID */ 59, /* ROW => ID */ 59, /* ROWS => ID */ 59, /* TRIGGER => ID */ 59, /* VACUUM => ID */ 59, /* VIEW => ID */ 59, /* VIRTUAL => ID */ 59, /* WITH => ID */ 59, /* NULLS => ID */ 59, /* FIRST => ID */ 59, /* LAST => ID */ 59, /* CURRENT => ID */ 59, /* FOLLOWING => ID */ 59, /* PARTITION => ID */ 59, /* PRECEDING => ID */ 59, /* RANGE => ID */ 59, /* UNBOUNDED => ID */ 59, /* EXCLUDE => ID */ 59, /* GROUPS => ID */ 59, /* OTHERS => ID */ 59, /* TIES => ID */ 59, /* GENERATED => ID */ 59, /* ALWAYS => ID */ 59, /* MATERIALIZED => ID */ 59, /* REINDEX => ID */ 59, /* RENAME => ID */ 59, /* CTIME_KW => ID */ 0, /* ANY => nothing */ 0, /* BITAND => nothing */ 0, /* BITOR => nothing */ 0, /* LSHIFT => nothing */ 0, /* RSHIFT => nothing */ 0, /* PLUS => nothing */ 0, /* MINUS => nothing */ 0, /* STAR => nothing */ 0, /* SLASH => nothing */ 0, /* REM => nothing */ 0, /* CONCAT => nothing */ 0, /* PTR => nothing */ 0, /* COLLATE => nothing */ 0, /* BITNOT => nothing */ 0, /* ON => nothing */ 0, /* INDEXED => nothing */ 0, /* STRING => nothing */ 0, /* JOIN_KW => nothing */ 0, /* CONSTRAINT => nothing */ 0, /* DEFAULT => nothing */ 0, /* NULL => nothing */ 0, /* PRIMARY => nothing */ 0, /* UNIQUE => nothing */ 0, /* CHECK => nothing */ 0, /* REFERENCES => nothing */ 0, /* AUTOINCR => nothing */ 0, /* INSERT => nothing */ 0, /* DELETE => nothing */ 0, /* UPDATE => nothing */ 0, /* SET => nothing */ 0, /* DEFERRABLE => nothing */ 0, /* FOREIGN => nothing */ 0, /* DROP => nothing */ 0, /* UNION => nothing */ 0, /* ALL => nothing */ 0, /* EXCEPT => nothing */ 0, /* INTERSECT => nothing */ 0, /* SELECT => nothing */ 0, /* VALUES => nothing */ 0, /* DISTINCT => nothing */ 0, /* DOT => nothing */ 0, /* FROM => nothing */ 0, /* JOIN => nothing */ 0, /* USING => nothing */ 0, /* ORDER => nothing */ 0, /* GROUP => nothing */ 0, /* HAVING => nothing */ 0, /* LIMIT => nothing */ 0, /* WHERE => nothing */ 0, /* RETURNING => nothing */ 0, /* INTO => nothing */ 0, /* NOTHING => nothing */ 0, /* FLOAT => nothing */ 0, /* BLOB => nothing */ 0, /* INTEGER => nothing */ 0, /* VARIABLE => nothing */ 0, /* CASE => nothing */ 0, /* WHEN => nothing */ 0, /* THEN => nothing */ 0, /* ELSE => nothing */ 0, /* INDEX => nothing */ 0, /* ALTER => nothing */ 0, /* ADD => nothing */ 0, /* WINDOW => nothing */ 0, /* OVER => nothing */ 0, /* FILTER => nothing */ 0, /* COLUMN => nothing */ 0, /* AGG_FUNCTION => nothing */ 0, /* AGG_COLUMN => nothing */ 0, /* TRUEFALSE => nothing */ 0, /* ISNOT => nothing */ 0, /* FUNCTION => nothing */ 0, /* UMINUS => nothing */ 0, /* UPLUS => nothing */ 0, /* TRUTH => nothing */ 0, /* REGISTER => nothing */ 0, /* VECTOR => nothing */ 0, /* SELECT_COLUMN => nothing */ 0, /* IF_NULL_ROW => nothing */ 0, /* ASTERISK => nothing */ 0, /* SPAN => nothing */ 0, /* ERROR => nothing */ 0, /* SPACE => nothing */ 0, /* ILLEGAL => nothing */ }; #endif /* YYFALLBACK */ /* The following structure represents a single element of the ** parser's stack. Information stored includes: ** ** + The state number for the parser at this level of the stack. ** ** + The value of the token stored at this level of the stack. ** (In other words, the "major" token.) ** ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. ** ** After the "shift" half of a SHIFTREDUCE action, the stateno field ** actually contains the reduce action for the second half of the ** SHIFTREDUCE. */ struct yyStackEntry { YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ YYCODETYPE major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This ** is the value of the token */ }; typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { yyStackEntry *yytos; /* Pointer to top element of the stack */ #ifdef YYTRACKMAXSTACKDEPTH int yyhwm; /* High-water mark of the stack */ #endif #ifndef YYNOERRORRECOVERY int yyerrcnt; /* Shifts left before out of the error */ #endif sqlite3ParserARG_SDECL /* A place to hold %extra_argument */ sqlite3ParserCTX_SDECL /* A place to hold %extra_context */ #if YYSTACKDEPTH<=0 int yystksz; /* Current side of the stack */ yyStackEntry *yystack; /* The parser's stack */ yyStackEntry yystk0; /* First stack entry */ #else yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ yyStackEntry *yystackEnd; /* Last entry in the stack */ #endif }; typedef struct yyParser yyParser; /* #include */ #ifndef NDEBUG /* #include */ static FILE *yyTraceFILE = 0; static char *yyTracePrompt = 0; #endif /* NDEBUG */ #ifndef NDEBUG /* ** Turn parser tracing on by giving a stream to which to write the trace ** and a prompt to preface each trace message. Tracing is turned off ** by making either argument NULL ** ** Inputs: **
      **
    • A FILE* to which trace output should be written. ** If NULL, then tracing is turned off. **
    • A prefix string written at the beginning of every ** line of trace output. If NULL, then tracing is ** turned off. **
    ** ** Outputs: ** None. */ SQLITE_PRIVATE void sqlite3ParserTrace(FILE *TraceFILE, char *zTracePrompt){ yyTraceFILE = TraceFILE; yyTracePrompt = zTracePrompt; if( yyTraceFILE==0 ) yyTracePrompt = 0; else if( yyTracePrompt==0 ) yyTraceFILE = 0; } #endif /* NDEBUG */ #if defined(YYCOVERAGE) || !defined(NDEBUG) /* For tracing shifts, the names of all terminals and nonterminals ** are required. The following table supplies these names */ static const char *const yyTokenName[] = { /* 0 */ "$", /* 1 */ "SEMI", /* 2 */ "EXPLAIN", /* 3 */ "QUERY", /* 4 */ "PLAN", /* 5 */ "BEGIN", /* 6 */ "TRANSACTION", /* 7 */ "DEFERRED", /* 8 */ "IMMEDIATE", /* 9 */ "EXCLUSIVE", /* 10 */ "COMMIT", /* 11 */ "END", /* 12 */ "ROLLBACK", /* 13 */ "SAVEPOINT", /* 14 */ "RELEASE", /* 15 */ "TO", /* 16 */ "TABLE", /* 17 */ "CREATE", /* 18 */ "IF", /* 19 */ "NOT", /* 20 */ "EXISTS", /* 21 */ "TEMP", /* 22 */ "LP", /* 23 */ "RP", /* 24 */ "AS", /* 25 */ "COMMA", /* 26 */ "WITHOUT", /* 27 */ "ABORT", /* 28 */ "ACTION", /* 29 */ "AFTER", /* 30 */ "ANALYZE", /* 31 */ "ASC", /* 32 */ "ATTACH", /* 33 */ "BEFORE", /* 34 */ "BY", /* 35 */ "CASCADE", /* 36 */ "CAST", /* 37 */ "CONFLICT", /* 38 */ "DATABASE", /* 39 */ "DESC", /* 40 */ "DETACH", /* 41 */ "EACH", /* 42 */ "FAIL", /* 43 */ "OR", /* 44 */ "AND", /* 45 */ "IS", /* 46 */ "MATCH", /* 47 */ "LIKE_KW", /* 48 */ "BETWEEN", /* 49 */ "IN", /* 50 */ "ISNULL", /* 51 */ "NOTNULL", /* 52 */ "NE", /* 53 */ "EQ", /* 54 */ "GT", /* 55 */ "LE", /* 56 */ "LT", /* 57 */ "GE", /* 58 */ "ESCAPE", /* 59 */ "ID", /* 60 */ "COLUMNKW", /* 61 */ "DO", /* 62 */ "FOR", /* 63 */ "IGNORE", /* 64 */ "INITIALLY", /* 65 */ "INSTEAD", /* 66 */ "NO", /* 67 */ "KEY", /* 68 */ "OF", /* 69 */ "OFFSET", /* 70 */ "PRAGMA", /* 71 */ "RAISE", /* 72 */ "RECURSIVE", /* 73 */ "REPLACE", /* 74 */ "RESTRICT", /* 75 */ "ROW", /* 76 */ "ROWS", /* 77 */ "TRIGGER", /* 78 */ "VACUUM", /* 79 */ "VIEW", /* 80 */ "VIRTUAL", /* 81 */ "WITH", /* 82 */ "NULLS", /* 83 */ "FIRST", /* 84 */ "LAST", /* 85 */ "CURRENT", /* 86 */ "FOLLOWING", /* 87 */ "PARTITION", /* 88 */ "PRECEDING", /* 89 */ "RANGE", /* 90 */ "UNBOUNDED", /* 91 */ "EXCLUDE", /* 92 */ "GROUPS", /* 93 */ "OTHERS", /* 94 */ "TIES", /* 95 */ "GENERATED", /* 96 */ "ALWAYS", /* 97 */ "MATERIALIZED", /* 98 */ "REINDEX", /* 99 */ "RENAME", /* 100 */ "CTIME_KW", /* 101 */ "ANY", /* 102 */ "BITAND", /* 103 */ "BITOR", /* 104 */ "LSHIFT", /* 105 */ "RSHIFT", /* 106 */ "PLUS", /* 107 */ "MINUS", /* 108 */ "STAR", /* 109 */ "SLASH", /* 110 */ "REM", /* 111 */ "CONCAT", /* 112 */ "PTR", /* 113 */ "COLLATE", /* 114 */ "BITNOT", /* 115 */ "ON", /* 116 */ "INDEXED", /* 117 */ "STRING", /* 118 */ "JOIN_KW", /* 119 */ "CONSTRAINT", /* 120 */ "DEFAULT", /* 121 */ "NULL", /* 122 */ "PRIMARY", /* 123 */ "UNIQUE", /* 124 */ "CHECK", /* 125 */ "REFERENCES", /* 126 */ "AUTOINCR", /* 127 */ "INSERT", /* 128 */ "DELETE", /* 129 */ "UPDATE", /* 130 */ "SET", /* 131 */ "DEFERRABLE", /* 132 */ "FOREIGN", /* 133 */ "DROP", /* 134 */ "UNION", /* 135 */ "ALL", /* 136 */ "EXCEPT", /* 137 */ "INTERSECT", /* 138 */ "SELECT", /* 139 */ "VALUES", /* 140 */ "DISTINCT", /* 141 */ "DOT", /* 142 */ "FROM", /* 143 */ "JOIN", /* 144 */ "USING", /* 145 */ "ORDER", /* 146 */ "GROUP", /* 147 */ "HAVING", /* 148 */ "LIMIT", /* 149 */ "WHERE", /* 150 */ "RETURNING", /* 151 */ "INTO", /* 152 */ "NOTHING", /* 153 */ "FLOAT", /* 154 */ "BLOB", /* 155 */ "INTEGER", /* 156 */ "VARIABLE", /* 157 */ "CASE", /* 158 */ "WHEN", /* 159 */ "THEN", /* 160 */ "ELSE", /* 161 */ "INDEX", /* 162 */ "ALTER", /* 163 */ "ADD", /* 164 */ "WINDOW", /* 165 */ "OVER", /* 166 */ "FILTER", /* 167 */ "COLUMN", /* 168 */ "AGG_FUNCTION", /* 169 */ "AGG_COLUMN", /* 170 */ "TRUEFALSE", /* 171 */ "ISNOT", /* 172 */ "FUNCTION", /* 173 */ "UMINUS", /* 174 */ "UPLUS", /* 175 */ "TRUTH", /* 176 */ "REGISTER", /* 177 */ "VECTOR", /* 178 */ "SELECT_COLUMN", /* 179 */ "IF_NULL_ROW", /* 180 */ "ASTERISK", /* 181 */ "SPAN", /* 182 */ "ERROR", /* 183 */ "SPACE", /* 184 */ "ILLEGAL", /* 185 */ "input", /* 186 */ "cmdlist", /* 187 */ "ecmd", /* 188 */ "cmdx", /* 189 */ "explain", /* 190 */ "cmd", /* 191 */ "transtype", /* 192 */ "trans_opt", /* 193 */ "nm", /* 194 */ "savepoint_opt", /* 195 */ "create_table", /* 196 */ "create_table_args", /* 197 */ "createkw", /* 198 */ "temp", /* 199 */ "ifnotexists", /* 200 */ "dbnm", /* 201 */ "columnlist", /* 202 */ "conslist_opt", /* 203 */ "table_option_set", /* 204 */ "select", /* 205 */ "table_option", /* 206 */ "columnname", /* 207 */ "carglist", /* 208 */ "typetoken", /* 209 */ "typename", /* 210 */ "signed", /* 211 */ "plus_num", /* 212 */ "minus_num", /* 213 */ "scanpt", /* 214 */ "scantok", /* 215 */ "ccons", /* 216 */ "term", /* 217 */ "expr", /* 218 */ "onconf", /* 219 */ "sortorder", /* 220 */ "autoinc", /* 221 */ "eidlist_opt", /* 222 */ "refargs", /* 223 */ "defer_subclause", /* 224 */ "generated", /* 225 */ "refarg", /* 226 */ "refact", /* 227 */ "init_deferred_pred_opt", /* 228 */ "conslist", /* 229 */ "tconscomma", /* 230 */ "tcons", /* 231 */ "sortlist", /* 232 */ "eidlist", /* 233 */ "defer_subclause_opt", /* 234 */ "orconf", /* 235 */ "resolvetype", /* 236 */ "raisetype", /* 237 */ "ifexists", /* 238 */ "fullname", /* 239 */ "selectnowith", /* 240 */ "oneselect", /* 241 */ "wqlist", /* 242 */ "multiselect_op", /* 243 */ "distinct", /* 244 */ "selcollist", /* 245 */ "from", /* 246 */ "where_opt", /* 247 */ "groupby_opt", /* 248 */ "having_opt", /* 249 */ "orderby_opt", /* 250 */ "limit_opt", /* 251 */ "window_clause", /* 252 */ "values", /* 253 */ "nexprlist", /* 254 */ "sclp", /* 255 */ "as", /* 256 */ "seltablist", /* 257 */ "stl_prefix", /* 258 */ "joinop", /* 259 */ "indexed_opt", /* 260 */ "on_opt", /* 261 */ "using_opt", /* 262 */ "exprlist", /* 263 */ "xfullname", /* 264 */ "idlist", /* 265 */ "nulls", /* 266 */ "with", /* 267 */ "where_opt_ret", /* 268 */ "setlist", /* 269 */ "insert_cmd", /* 270 */ "idlist_opt", /* 271 */ "upsert", /* 272 */ "returning", /* 273 */ "filter_over", /* 274 */ "likeop", /* 275 */ "between_op", /* 276 */ "in_op", /* 277 */ "paren_exprlist", /* 278 */ "case_operand", /* 279 */ "case_exprlist", /* 280 */ "case_else", /* 281 */ "uniqueflag", /* 282 */ "collate", /* 283 */ "vinto", /* 284 */ "nmnum", /* 285 */ "trigger_decl", /* 286 */ "trigger_cmd_list", /* 287 */ "trigger_time", /* 288 */ "trigger_event", /* 289 */ "foreach_clause", /* 290 */ "when_clause", /* 291 */ "trigger_cmd", /* 292 */ "trnm", /* 293 */ "tridxby", /* 294 */ "database_kw_opt", /* 295 */ "key_opt", /* 296 */ "add_column_fullname", /* 297 */ "kwcolumn_opt", /* 298 */ "create_vtab", /* 299 */ "vtabarglist", /* 300 */ "vtabarg", /* 301 */ "vtabargtoken", /* 302 */ "lp", /* 303 */ "anylist", /* 304 */ "wqitem", /* 305 */ "wqas", /* 306 */ "windowdefn_list", /* 307 */ "windowdefn", /* 308 */ "window", /* 309 */ "frame_opt", /* 310 */ "part_opt", /* 311 */ "filter_clause", /* 312 */ "over_clause", /* 313 */ "range_or_rows", /* 314 */ "frame_bound", /* 315 */ "frame_bound_s", /* 316 */ "frame_bound_e", /* 317 */ "frame_exclude_opt", /* 318 */ "frame_exclude", }; #endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. */ static const char *const yyRuleName[] = { /* 0 */ "explain ::= EXPLAIN", /* 1 */ "explain ::= EXPLAIN QUERY PLAN", /* 2 */ "cmdx ::= cmd", /* 3 */ "cmd ::= BEGIN transtype trans_opt", /* 4 */ "transtype ::=", /* 5 */ "transtype ::= DEFERRED", /* 6 */ "transtype ::= IMMEDIATE", /* 7 */ "transtype ::= EXCLUSIVE", /* 8 */ "cmd ::= COMMIT|END trans_opt", /* 9 */ "cmd ::= ROLLBACK trans_opt", /* 10 */ "cmd ::= SAVEPOINT nm", /* 11 */ "cmd ::= RELEASE savepoint_opt nm", /* 12 */ "cmd ::= ROLLBACK trans_opt TO savepoint_opt nm", /* 13 */ "create_table ::= createkw temp TABLE ifnotexists nm dbnm", /* 14 */ "createkw ::= CREATE", /* 15 */ "ifnotexists ::=", /* 16 */ "ifnotexists ::= IF NOT EXISTS", /* 17 */ "temp ::= TEMP", /* 18 */ "temp ::=", /* 19 */ "create_table_args ::= LP columnlist conslist_opt RP table_option_set", /* 20 */ "create_table_args ::= AS select", /* 21 */ "table_option_set ::=", /* 22 */ "table_option_set ::= table_option_set COMMA table_option", /* 23 */ "table_option ::= WITHOUT nm", /* 24 */ "table_option ::= nm", /* 25 */ "columnname ::= nm typetoken", /* 26 */ "typetoken ::=", /* 27 */ "typetoken ::= typename LP signed RP", /* 28 */ "typetoken ::= typename LP signed COMMA signed RP", /* 29 */ "typename ::= typename ID|STRING", /* 30 */ "scanpt ::=", /* 31 */ "scantok ::=", /* 32 */ "ccons ::= CONSTRAINT nm", /* 33 */ "ccons ::= DEFAULT scantok term", /* 34 */ "ccons ::= DEFAULT LP expr RP", /* 35 */ "ccons ::= DEFAULT PLUS scantok term", /* 36 */ "ccons ::= DEFAULT MINUS scantok term", /* 37 */ "ccons ::= DEFAULT scantok ID|INDEXED", /* 38 */ "ccons ::= NOT NULL onconf", /* 39 */ "ccons ::= PRIMARY KEY sortorder onconf autoinc", /* 40 */ "ccons ::= UNIQUE onconf", /* 41 */ "ccons ::= CHECK LP expr RP", /* 42 */ "ccons ::= REFERENCES nm eidlist_opt refargs", /* 43 */ "ccons ::= defer_subclause", /* 44 */ "ccons ::= COLLATE ID|STRING", /* 45 */ "generated ::= LP expr RP", /* 46 */ "generated ::= LP expr RP ID", /* 47 */ "autoinc ::=", /* 48 */ "autoinc ::= AUTOINCR", /* 49 */ "refargs ::=", /* 50 */ "refargs ::= refargs refarg", /* 51 */ "refarg ::= MATCH nm", /* 52 */ "refarg ::= ON INSERT refact", /* 53 */ "refarg ::= ON DELETE refact", /* 54 */ "refarg ::= ON UPDATE refact", /* 55 */ "refact ::= SET NULL", /* 56 */ "refact ::= SET DEFAULT", /* 57 */ "refact ::= CASCADE", /* 58 */ "refact ::= RESTRICT", /* 59 */ "refact ::= NO ACTION", /* 60 */ "defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt", /* 61 */ "defer_subclause ::= DEFERRABLE init_deferred_pred_opt", /* 62 */ "init_deferred_pred_opt ::=", /* 63 */ "init_deferred_pred_opt ::= INITIALLY DEFERRED", /* 64 */ "init_deferred_pred_opt ::= INITIALLY IMMEDIATE", /* 65 */ "conslist_opt ::=", /* 66 */ "tconscomma ::= COMMA", /* 67 */ "tcons ::= CONSTRAINT nm", /* 68 */ "tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf", /* 69 */ "tcons ::= UNIQUE LP sortlist RP onconf", /* 70 */ "tcons ::= CHECK LP expr RP onconf", /* 71 */ "tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt", /* 72 */ "defer_subclause_opt ::=", /* 73 */ "onconf ::=", /* 74 */ "onconf ::= ON CONFLICT resolvetype", /* 75 */ "orconf ::=", /* 76 */ "orconf ::= OR resolvetype", /* 77 */ "resolvetype ::= IGNORE", /* 78 */ "resolvetype ::= REPLACE", /* 79 */ "cmd ::= DROP TABLE ifexists fullname", /* 80 */ "ifexists ::= IF EXISTS", /* 81 */ "ifexists ::=", /* 82 */ "cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select", /* 83 */ "cmd ::= DROP VIEW ifexists fullname", /* 84 */ "cmd ::= select", /* 85 */ "select ::= WITH wqlist selectnowith", /* 86 */ "select ::= WITH RECURSIVE wqlist selectnowith", /* 87 */ "select ::= selectnowith", /* 88 */ "selectnowith ::= selectnowith multiselect_op oneselect", /* 89 */ "multiselect_op ::= UNION", /* 90 */ "multiselect_op ::= UNION ALL", /* 91 */ "multiselect_op ::= EXCEPT|INTERSECT", /* 92 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt", /* 93 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt", /* 94 */ "values ::= VALUES LP nexprlist RP", /* 95 */ "values ::= values COMMA LP nexprlist RP", /* 96 */ "distinct ::= DISTINCT", /* 97 */ "distinct ::= ALL", /* 98 */ "distinct ::=", /* 99 */ "sclp ::=", /* 100 */ "selcollist ::= sclp scanpt expr scanpt as", /* 101 */ "selcollist ::= sclp scanpt STAR", /* 102 */ "selcollist ::= sclp scanpt nm DOT STAR", /* 103 */ "as ::= AS nm", /* 104 */ "as ::=", /* 105 */ "from ::=", /* 106 */ "from ::= FROM seltablist", /* 107 */ "stl_prefix ::= seltablist joinop", /* 108 */ "stl_prefix ::=", /* 109 */ "seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt", /* 110 */ "seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt", /* 111 */ "seltablist ::= stl_prefix LP select RP as on_opt using_opt", /* 112 */ "seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt", /* 113 */ "dbnm ::=", /* 114 */ "dbnm ::= DOT nm", /* 115 */ "fullname ::= nm", /* 116 */ "fullname ::= nm DOT nm", /* 117 */ "xfullname ::= nm", /* 118 */ "xfullname ::= nm DOT nm", /* 119 */ "xfullname ::= nm DOT nm AS nm", /* 120 */ "xfullname ::= nm AS nm", /* 121 */ "joinop ::= COMMA|JOIN", /* 122 */ "joinop ::= JOIN_KW JOIN", /* 123 */ "joinop ::= JOIN_KW nm JOIN", /* 124 */ "joinop ::= JOIN_KW nm nm JOIN", /* 125 */ "on_opt ::= ON expr", /* 126 */ "on_opt ::=", /* 127 */ "indexed_opt ::=", /* 128 */ "indexed_opt ::= INDEXED BY nm", /* 129 */ "indexed_opt ::= NOT INDEXED", /* 130 */ "using_opt ::= USING LP idlist RP", /* 131 */ "using_opt ::=", /* 132 */ "orderby_opt ::=", /* 133 */ "orderby_opt ::= ORDER BY sortlist", /* 134 */ "sortlist ::= sortlist COMMA expr sortorder nulls", /* 135 */ "sortlist ::= expr sortorder nulls", /* 136 */ "sortorder ::= ASC", /* 137 */ "sortorder ::= DESC", /* 138 */ "sortorder ::=", /* 139 */ "nulls ::= NULLS FIRST", /* 140 */ "nulls ::= NULLS LAST", /* 141 */ "nulls ::=", /* 142 */ "groupby_opt ::=", /* 143 */ "groupby_opt ::= GROUP BY nexprlist", /* 144 */ "having_opt ::=", /* 145 */ "having_opt ::= HAVING expr", /* 146 */ "limit_opt ::=", /* 147 */ "limit_opt ::= LIMIT expr", /* 148 */ "limit_opt ::= LIMIT expr OFFSET expr", /* 149 */ "limit_opt ::= LIMIT expr COMMA expr", /* 150 */ "cmd ::= with DELETE FROM xfullname indexed_opt where_opt_ret", /* 151 */ "where_opt ::=", /* 152 */ "where_opt ::= WHERE expr", /* 153 */ "where_opt_ret ::=", /* 154 */ "where_opt_ret ::= WHERE expr", /* 155 */ "where_opt_ret ::= RETURNING selcollist", /* 156 */ "where_opt_ret ::= WHERE expr RETURNING selcollist", /* 157 */ "cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt_ret", /* 158 */ "setlist ::= setlist COMMA nm EQ expr", /* 159 */ "setlist ::= setlist COMMA LP idlist RP EQ expr", /* 160 */ "setlist ::= nm EQ expr", /* 161 */ "setlist ::= LP idlist RP EQ expr", /* 162 */ "cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert", /* 163 */ "cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES returning", /* 164 */ "upsert ::=", /* 165 */ "upsert ::= RETURNING selcollist", /* 166 */ "upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt upsert", /* 167 */ "upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING upsert", /* 168 */ "upsert ::= ON CONFLICT DO NOTHING returning", /* 169 */ "upsert ::= ON CONFLICT DO UPDATE SET setlist where_opt returning", /* 170 */ "returning ::= RETURNING selcollist", /* 171 */ "insert_cmd ::= INSERT orconf", /* 172 */ "insert_cmd ::= REPLACE", /* 173 */ "idlist_opt ::=", /* 174 */ "idlist_opt ::= LP idlist RP", /* 175 */ "idlist ::= idlist COMMA nm", /* 176 */ "idlist ::= nm", /* 177 */ "expr ::= LP expr RP", /* 178 */ "expr ::= ID|INDEXED", /* 179 */ "expr ::= JOIN_KW", /* 180 */ "expr ::= nm DOT nm", /* 181 */ "expr ::= nm DOT nm DOT nm", /* 182 */ "term ::= NULL|FLOAT|BLOB", /* 183 */ "term ::= STRING", /* 184 */ "term ::= INTEGER", /* 185 */ "expr ::= VARIABLE", /* 186 */ "expr ::= expr COLLATE ID|STRING", /* 187 */ "expr ::= CAST LP expr AS typetoken RP", /* 188 */ "expr ::= ID|INDEXED LP distinct exprlist RP", /* 189 */ "expr ::= ID|INDEXED LP STAR RP", /* 190 */ "expr ::= ID|INDEXED LP distinct exprlist RP filter_over", /* 191 */ "expr ::= ID|INDEXED LP STAR RP filter_over", /* 192 */ "term ::= CTIME_KW", /* 193 */ "expr ::= LP nexprlist COMMA expr RP", /* 194 */ "expr ::= expr AND expr", /* 195 */ "expr ::= expr OR expr", /* 196 */ "expr ::= expr LT|GT|GE|LE expr", /* 197 */ "expr ::= expr EQ|NE expr", /* 198 */ "expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr", /* 199 */ "expr ::= expr PLUS|MINUS expr", /* 200 */ "expr ::= expr STAR|SLASH|REM expr", /* 201 */ "expr ::= expr CONCAT expr", /* 202 */ "likeop ::= NOT LIKE_KW|MATCH", /* 203 */ "expr ::= expr likeop expr", /* 204 */ "expr ::= expr likeop expr ESCAPE expr", /* 205 */ "expr ::= expr ISNULL|NOTNULL", /* 206 */ "expr ::= expr NOT NULL", /* 207 */ "expr ::= expr IS expr", /* 208 */ "expr ::= expr IS NOT expr", /* 209 */ "expr ::= NOT expr", /* 210 */ "expr ::= BITNOT expr", /* 211 */ "expr ::= PLUS|MINUS expr", /* 212 */ "expr ::= expr PTR expr", /* 213 */ "between_op ::= BETWEEN", /* 214 */ "between_op ::= NOT BETWEEN", /* 215 */ "expr ::= expr between_op expr AND expr", /* 216 */ "in_op ::= IN", /* 217 */ "in_op ::= NOT IN", /* 218 */ "expr ::= expr in_op LP exprlist RP", /* 219 */ "expr ::= LP select RP", /* 220 */ "expr ::= expr in_op LP select RP", /* 221 */ "expr ::= expr in_op nm dbnm paren_exprlist", /* 222 */ "expr ::= EXISTS LP select RP", /* 223 */ "expr ::= CASE case_operand case_exprlist case_else END", /* 224 */ "case_exprlist ::= case_exprlist WHEN expr THEN expr", /* 225 */ "case_exprlist ::= WHEN expr THEN expr", /* 226 */ "case_else ::= ELSE expr", /* 227 */ "case_else ::=", /* 228 */ "case_operand ::= expr", /* 229 */ "case_operand ::=", /* 230 */ "exprlist ::=", /* 231 */ "nexprlist ::= nexprlist COMMA expr", /* 232 */ "nexprlist ::= expr", /* 233 */ "paren_exprlist ::=", /* 234 */ "paren_exprlist ::= LP exprlist RP", /* 235 */ "cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt", /* 236 */ "uniqueflag ::= UNIQUE", /* 237 */ "uniqueflag ::=", /* 238 */ "eidlist_opt ::=", /* 239 */ "eidlist_opt ::= LP eidlist RP", /* 240 */ "eidlist ::= eidlist COMMA nm collate sortorder", /* 241 */ "eidlist ::= nm collate sortorder", /* 242 */ "collate ::=", /* 243 */ "collate ::= COLLATE ID|STRING", /* 244 */ "cmd ::= DROP INDEX ifexists fullname", /* 245 */ "cmd ::= VACUUM vinto", /* 246 */ "cmd ::= VACUUM nm vinto", /* 247 */ "vinto ::= INTO expr", /* 248 */ "vinto ::=", /* 249 */ "cmd ::= PRAGMA nm dbnm", /* 250 */ "cmd ::= PRAGMA nm dbnm EQ nmnum", /* 251 */ "cmd ::= PRAGMA nm dbnm LP nmnum RP", /* 252 */ "cmd ::= PRAGMA nm dbnm EQ minus_num", /* 253 */ "cmd ::= PRAGMA nm dbnm LP minus_num RP", /* 254 */ "plus_num ::= PLUS INTEGER|FLOAT", /* 255 */ "minus_num ::= MINUS INTEGER|FLOAT", /* 256 */ "cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END", /* 257 */ "trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause", /* 258 */ "trigger_time ::= BEFORE|AFTER", /* 259 */ "trigger_time ::= INSTEAD OF", /* 260 */ "trigger_time ::=", /* 261 */ "trigger_event ::= DELETE|INSERT", /* 262 */ "trigger_event ::= UPDATE", /* 263 */ "trigger_event ::= UPDATE OF idlist", /* 264 */ "when_clause ::=", /* 265 */ "when_clause ::= WHEN expr", /* 266 */ "trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI", /* 267 */ "trigger_cmd_list ::= trigger_cmd SEMI", /* 268 */ "trnm ::= nm DOT nm", /* 269 */ "tridxby ::= INDEXED BY nm", /* 270 */ "tridxby ::= NOT INDEXED", /* 271 */ "trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt", /* 272 */ "trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt", /* 273 */ "trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt", /* 274 */ "trigger_cmd ::= scanpt select scanpt", /* 275 */ "expr ::= RAISE LP IGNORE RP", /* 276 */ "expr ::= RAISE LP raisetype COMMA nm RP", /* 277 */ "raisetype ::= ROLLBACK", /* 278 */ "raisetype ::= ABORT", /* 279 */ "raisetype ::= FAIL", /* 280 */ "cmd ::= DROP TRIGGER ifexists fullname", /* 281 */ "cmd ::= ATTACH database_kw_opt expr AS expr key_opt", /* 282 */ "cmd ::= DETACH database_kw_opt expr", /* 283 */ "key_opt ::=", /* 284 */ "key_opt ::= KEY expr", /* 285 */ "cmd ::= REINDEX", /* 286 */ "cmd ::= REINDEX nm dbnm", /* 287 */ "cmd ::= ANALYZE", /* 288 */ "cmd ::= ANALYZE nm dbnm", /* 289 */ "cmd ::= ALTER TABLE fullname RENAME TO nm", /* 290 */ "cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist", /* 291 */ "cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm", /* 292 */ "add_column_fullname ::= fullname", /* 293 */ "cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm", /* 294 */ "cmd ::= create_vtab", /* 295 */ "cmd ::= create_vtab LP vtabarglist RP", /* 296 */ "create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm", /* 297 */ "vtabarg ::=", /* 298 */ "vtabargtoken ::= ANY", /* 299 */ "vtabargtoken ::= lp anylist RP", /* 300 */ "lp ::= LP", /* 301 */ "with ::= WITH wqlist", /* 302 */ "with ::= WITH RECURSIVE wqlist", /* 303 */ "wqas ::= AS", /* 304 */ "wqas ::= AS MATERIALIZED", /* 305 */ "wqas ::= AS NOT MATERIALIZED", /* 306 */ "wqitem ::= nm eidlist_opt wqas LP select RP", /* 307 */ "wqlist ::= wqitem", /* 308 */ "wqlist ::= wqlist COMMA wqitem", /* 309 */ "windowdefn_list ::= windowdefn", /* 310 */ "windowdefn_list ::= windowdefn_list COMMA windowdefn", /* 311 */ "windowdefn ::= nm AS LP window RP", /* 312 */ "window ::= PARTITION BY nexprlist orderby_opt frame_opt", /* 313 */ "window ::= nm PARTITION BY nexprlist orderby_opt frame_opt", /* 314 */ "window ::= ORDER BY sortlist frame_opt", /* 315 */ "window ::= nm ORDER BY sortlist frame_opt", /* 316 */ "window ::= frame_opt", /* 317 */ "window ::= nm frame_opt", /* 318 */ "frame_opt ::=", /* 319 */ "frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt", /* 320 */ "frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt", /* 321 */ "range_or_rows ::= RANGE|ROWS|GROUPS", /* 322 */ "frame_bound_s ::= frame_bound", /* 323 */ "frame_bound_s ::= UNBOUNDED PRECEDING", /* 324 */ "frame_bound_e ::= frame_bound", /* 325 */ "frame_bound_e ::= UNBOUNDED FOLLOWING", /* 326 */ "frame_bound ::= expr PRECEDING|FOLLOWING", /* 327 */ "frame_bound ::= CURRENT ROW", /* 328 */ "frame_exclude_opt ::=", /* 329 */ "frame_exclude_opt ::= EXCLUDE frame_exclude", /* 330 */ "frame_exclude ::= NO OTHERS", /* 331 */ "frame_exclude ::= CURRENT ROW", /* 332 */ "frame_exclude ::= GROUP|TIES", /* 333 */ "window_clause ::= WINDOW windowdefn_list", /* 334 */ "filter_over ::= filter_clause over_clause", /* 335 */ "filter_over ::= over_clause", /* 336 */ "filter_over ::= filter_clause", /* 337 */ "over_clause ::= OVER LP window RP", /* 338 */ "over_clause ::= OVER nm", /* 339 */ "filter_clause ::= FILTER LP WHERE expr RP", /* 340 */ "input ::= cmdlist", /* 341 */ "cmdlist ::= cmdlist ecmd", /* 342 */ "cmdlist ::= ecmd", /* 343 */ "ecmd ::= SEMI", /* 344 */ "ecmd ::= cmdx SEMI", /* 345 */ "ecmd ::= explain cmdx SEMI", /* 346 */ "trans_opt ::=", /* 347 */ "trans_opt ::= TRANSACTION", /* 348 */ "trans_opt ::= TRANSACTION nm", /* 349 */ "savepoint_opt ::= SAVEPOINT", /* 350 */ "savepoint_opt ::=", /* 351 */ "cmd ::= create_table create_table_args", /* 352 */ "table_option_set ::= table_option", /* 353 */ "columnlist ::= columnlist COMMA columnname carglist", /* 354 */ "columnlist ::= columnname carglist", /* 355 */ "nm ::= ID|INDEXED", /* 356 */ "nm ::= STRING", /* 357 */ "nm ::= JOIN_KW", /* 358 */ "typetoken ::= typename", /* 359 */ "typename ::= ID|STRING", /* 360 */ "signed ::= plus_num", /* 361 */ "signed ::= minus_num", /* 362 */ "carglist ::= carglist ccons", /* 363 */ "carglist ::=", /* 364 */ "ccons ::= NULL onconf", /* 365 */ "ccons ::= GENERATED ALWAYS AS generated", /* 366 */ "ccons ::= AS generated", /* 367 */ "conslist_opt ::= COMMA conslist", /* 368 */ "conslist ::= conslist tconscomma tcons", /* 369 */ "conslist ::= tcons", /* 370 */ "tconscomma ::=", /* 371 */ "defer_subclause_opt ::= defer_subclause", /* 372 */ "resolvetype ::= raisetype", /* 373 */ "selectnowith ::= oneselect", /* 374 */ "oneselect ::= values", /* 375 */ "sclp ::= selcollist COMMA", /* 376 */ "as ::= ID|STRING", /* 377 */ "returning ::=", /* 378 */ "expr ::= term", /* 379 */ "likeop ::= LIKE_KW|MATCH", /* 380 */ "exprlist ::= nexprlist", /* 381 */ "nmnum ::= plus_num", /* 382 */ "nmnum ::= nm", /* 383 */ "nmnum ::= ON", /* 384 */ "nmnum ::= DELETE", /* 385 */ "nmnum ::= DEFAULT", /* 386 */ "plus_num ::= INTEGER|FLOAT", /* 387 */ "foreach_clause ::=", /* 388 */ "foreach_clause ::= FOR EACH ROW", /* 389 */ "trnm ::= nm", /* 390 */ "tridxby ::=", /* 391 */ "database_kw_opt ::= DATABASE", /* 392 */ "database_kw_opt ::=", /* 393 */ "kwcolumn_opt ::=", /* 394 */ "kwcolumn_opt ::= COLUMNKW", /* 395 */ "vtabarglist ::= vtabarg", /* 396 */ "vtabarglist ::= vtabarglist COMMA vtabarg", /* 397 */ "vtabarg ::= vtabarg vtabargtoken", /* 398 */ "anylist ::=", /* 399 */ "anylist ::= anylist LP anylist RP", /* 400 */ "anylist ::= anylist ANY", /* 401 */ "with ::=", }; #endif /* NDEBUG */ #if YYSTACKDEPTH<=0 /* ** Try to increase the size of the parser stack. Return the number ** of errors. Return 0 on success. */ static int yyGrowStack(yyParser *p){ int newSize; int idx; yyStackEntry *pNew; newSize = p->yystksz*2 + 100; idx = p->yytos ? (int)(p->yytos - p->yystack) : 0; if( p->yystack==&p->yystk0 ){ pNew = malloc(newSize*sizeof(pNew[0])); if( pNew ) pNew[0] = p->yystk0; }else{ pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); } if( pNew ){ p->yystack = pNew; p->yytos = &p->yystack[idx]; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", yyTracePrompt, p->yystksz, newSize); } #endif p->yystksz = newSize; } return pNew==0; } #endif /* Datatype of the argument to the memory allocated passed as the ** second argument to sqlite3ParserAlloc() below. This can be changed by ** putting an appropriate #define in the %include section of the input ** grammar. */ #ifndef YYMALLOCARGTYPE # define YYMALLOCARGTYPE size_t #endif /* Initialize a new parser that has already been allocated. */ SQLITE_PRIVATE void sqlite3ParserInit(void *yypRawParser sqlite3ParserCTX_PDECL){ yyParser *yypParser = (yyParser*)yypRawParser; sqlite3ParserCTX_STORE #ifdef YYTRACKMAXSTACKDEPTH yypParser->yyhwm = 0; #endif #if YYSTACKDEPTH<=0 yypParser->yytos = NULL; yypParser->yystack = NULL; yypParser->yystksz = 0; if( yyGrowStack(yypParser) ){ yypParser->yystack = &yypParser->yystk0; yypParser->yystksz = 1; } #endif #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif yypParser->yytos = yypParser->yystack; yypParser->yystack[0].stateno = 0; yypParser->yystack[0].major = 0; #if YYSTACKDEPTH>0 yypParser->yystackEnd = &yypParser->yystack[YYSTACKDEPTH-1]; #endif } #ifndef sqlite3Parser_ENGINEALWAYSONSTACK /* ** This function allocates a new parser. ** The only argument is a pointer to a function which works like ** malloc. ** ** Inputs: ** A pointer to the function used to allocate memory. ** ** Outputs: ** A pointer to a parser. This pointer is used in subsequent calls ** to sqlite3Parser and sqlite3ParserFree. */ SQLITE_PRIVATE void *sqlite3ParserAlloc(void *(*mallocProc)(YYMALLOCARGTYPE) sqlite3ParserCTX_PDECL){ yyParser *yypParser; yypParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); if( yypParser ){ sqlite3ParserCTX_STORE sqlite3ParserInit(yypParser sqlite3ParserCTX_PARAM); } return (void*)yypParser; } #endif /* sqlite3Parser_ENGINEALWAYSONSTACK */ /* The following function deletes the "minor type" or semantic value ** associated with a symbol. The symbol can be either a terminal ** or nonterminal. "yymajor" is the symbol code, and "yypminor" is ** a pointer to the value to be deleted. The code used to do the ** deletions is derived from the %destructor and/or %token_destructor ** directives of the input grammar. */ static void yy_destructor( yyParser *yypParser, /* The parser */ YYCODETYPE yymajor, /* Type code for object to destroy */ YYMINORTYPE *yypminor /* The object to be destroyed */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH switch( yymajor ){ /* Here is inserted the actions which take place when a ** terminal or non-terminal is destroyed. This can happen ** when the symbol is popped from the stack during a ** reduce or during error processing or when a parser is ** being destroyed before it is finished parsing. ** ** Note: during a reduce, the only symbols destroyed are those ** which appear on the RHS of the rule, but which are *not* used ** inside the C code. */ /********* Begin destructor definitions ***************************************/ case 204: /* select */ case 239: /* selectnowith */ case 240: /* oneselect */ case 252: /* values */ { sqlite3SelectDelete(pParse->db, (yypminor->yy47)); } break; case 216: /* term */ case 217: /* expr */ case 246: /* where_opt */ case 248: /* having_opt */ case 260: /* on_opt */ case 267: /* where_opt_ret */ case 278: /* case_operand */ case 280: /* case_else */ case 283: /* vinto */ case 290: /* when_clause */ case 295: /* key_opt */ case 311: /* filter_clause */ { sqlite3ExprDelete(pParse->db, (yypminor->yy528)); } break; case 221: /* eidlist_opt */ case 231: /* sortlist */ case 232: /* eidlist */ case 244: /* selcollist */ case 247: /* groupby_opt */ case 249: /* orderby_opt */ case 253: /* nexprlist */ case 254: /* sclp */ case 262: /* exprlist */ case 268: /* setlist */ case 277: /* paren_exprlist */ case 279: /* case_exprlist */ case 310: /* part_opt */ { sqlite3ExprListDelete(pParse->db, (yypminor->yy322)); } break; case 238: /* fullname */ case 245: /* from */ case 256: /* seltablist */ case 257: /* stl_prefix */ case 263: /* xfullname */ { sqlite3SrcListDelete(pParse->db, (yypminor->yy131)); } break; case 241: /* wqlist */ { sqlite3WithDelete(pParse->db, (yypminor->yy521)); } break; case 251: /* window_clause */ case 306: /* windowdefn_list */ { sqlite3WindowListDelete(pParse->db, (yypminor->yy41)); } break; case 261: /* using_opt */ case 264: /* idlist */ case 270: /* idlist_opt */ { sqlite3IdListDelete(pParse->db, (yypminor->yy254)); } break; case 273: /* filter_over */ case 307: /* windowdefn */ case 308: /* window */ case 309: /* frame_opt */ case 312: /* over_clause */ { sqlite3WindowDelete(pParse->db, (yypminor->yy41)); } break; case 286: /* trigger_cmd_list */ case 291: /* trigger_cmd */ { sqlite3DeleteTriggerStep(pParse->db, (yypminor->yy33)); } break; case 288: /* trigger_event */ { sqlite3IdListDelete(pParse->db, (yypminor->yy180).b); } break; case 314: /* frame_bound */ case 315: /* frame_bound_s */ case 316: /* frame_bound_e */ { sqlite3ExprDelete(pParse->db, (yypminor->yy595).pExpr); } break; /********* End destructor definitions *****************************************/ default: break; /* If no destructor action specified: do nothing */ } } /* ** Pop the parser's stack once. ** ** If there is a destructor routine associated with the token which ** is popped from the stack, then call it. */ static void yy_pop_parser_stack(yyParser *pParser){ yyStackEntry *yytos; assert( pParser->yytos!=0 ); assert( pParser->yytos > pParser->yystack ); yytos = pParser->yytos--; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sPopping %s\n", yyTracePrompt, yyTokenName[yytos->major]); } #endif yy_destructor(pParser, yytos->major, &yytos->minor); } /* ** Clear all secondary memory allocations from the parser */ SQLITE_PRIVATE void sqlite3ParserFinalize(void *p){ yyParser *pParser = (yyParser*)p; while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); #if YYSTACKDEPTH<=0 if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); #endif } #ifndef sqlite3Parser_ENGINEALWAYSONSTACK /* ** Deallocate and destroy a parser. Destructors are called for ** all stack elements before shutting the parser down. ** ** If the YYPARSEFREENEVERNULL macro exists (for example because it ** is defined in a %include section of the input grammar) then it is ** assumed that the input pointer is never NULL. */ SQLITE_PRIVATE void sqlite3ParserFree( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ #ifndef YYPARSEFREENEVERNULL if( p==0 ) return; #endif sqlite3ParserFinalize(p); (*freeProc)(p); } #endif /* sqlite3Parser_ENGINEALWAYSONSTACK */ /* ** Return the peak depth of the stack for a parser. */ #ifdef YYTRACKMAXSTACKDEPTH SQLITE_PRIVATE int sqlite3ParserStackPeak(void *p){ yyParser *pParser = (yyParser*)p; return pParser->yyhwm; } #endif /* This array of booleans keeps track of the parser statement ** coverage. The element yycoverage[X][Y] is set when the parser ** is in state X and has a lookahead token Y. In a well-tested ** systems, every element of this matrix should end up being set. */ #if defined(YYCOVERAGE) static unsigned char yycoverage[YYNSTATE][YYNTOKEN]; #endif /* ** Write into out a description of every state/lookahead combination that ** ** (1) has not been used by the parser, and ** (2) is not a syntax error. ** ** Return the number of missed state/lookahead combinations. */ #if defined(YYCOVERAGE) SQLITE_PRIVATE int sqlite3ParserCoverage(FILE *out){ int stateno, iLookAhead, i; int nMissed = 0; for(stateno=0; statenoYY_MAX_SHIFT ) return stateno; assert( stateno <= YY_SHIFT_COUNT ); #if defined(YYCOVERAGE) yycoverage[stateno][iLookAhead] = 1; #endif do{ i = yy_shift_ofst[stateno]; assert( i>=0 ); assert( i<=YY_ACTTAB_COUNT ); assert( i+YYNTOKEN<=(int)YY_NLOOKAHEAD ); assert( iLookAhead!=YYNOCODE ); assert( iLookAhead < YYNTOKEN ); i += iLookAhead; assert( i<(int)YY_NLOOKAHEAD ); if( yy_lookahead[i]!=iLookAhead ){ #ifdef YYFALLBACK YYCODETYPE iFallback; /* Fallback token */ assert( iLookAhead %s\n", yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); } #endif assert( yyFallback[iFallback]==0 ); /* Fallback loop must terminate */ iLookAhead = iFallback; continue; } #endif #ifdef YYWILDCARD { int j = i - iLookAhead + YYWILDCARD; assert( j<(int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0])) ); if( yy_lookahead[j]==YYWILDCARD && iLookAhead>0 ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]); } #endif /* NDEBUG */ return yy_action[j]; } } #endif /* YYWILDCARD */ return yy_default[stateno]; }else{ assert( i>=0 && i<(int)(sizeof(yy_action)/sizeof(yy_action[0])) ); return yy_action[i]; } }while(1); } /* ** Find the appropriate action for a parser given the non-terminal ** look-ahead token iLookAhead. */ static YYACTIONTYPE yy_find_reduce_action( YYACTIONTYPE stateno, /* Current state number */ YYCODETYPE iLookAhead /* The look-ahead token */ ){ int i; #ifdef YYERRORSYMBOL if( stateno>YY_REDUCE_COUNT ){ return yy_default[stateno]; } #else assert( stateno<=YY_REDUCE_COUNT ); #endif i = yy_reduce_ofst[stateno]; assert( iLookAhead!=YYNOCODE ); i += iLookAhead; #ifdef YYERRORSYMBOL if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ return yy_default[stateno]; } #else assert( i>=0 && iyytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will execute if the parser ** stack every overflows */ /******** Begin %stack_overflow code ******************************************/ sqlite3ErrorMsg(pParse, "parser stack overflow"); /******** End %stack_overflow code ********************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument var */ sqlite3ParserCTX_STORE } /* ** Print tracing information for a SHIFT action */ #ifndef NDEBUG static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){ if( yyTraceFILE ){ if( yyNewStateyytos->major], yyNewState); }else{ fprintf(yyTraceFILE,"%s%s '%s', pending reduce %d\n", yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major], yyNewState - YY_MIN_REDUCE); } } } #else # define yyTraceShift(X,Y,Z) #endif /* ** Perform a shift action. */ static void yy_shift( yyParser *yypParser, /* The parser to be shifted */ YYACTIONTYPE yyNewState, /* The new state to shift in */ YYCODETYPE yyMajor, /* The major token to shift in */ sqlite3ParserTOKENTYPE yyMinor /* The minor token to shift in */ ){ yyStackEntry *yytos; yypParser->yytos++; #ifdef YYTRACKMAXSTACKDEPTH if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ yypParser->yyhwm++; assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) ); } #endif #if YYSTACKDEPTH>0 if( yypParser->yytos>yypParser->yystackEnd ){ yypParser->yytos--; yyStackOverflow(yypParser); return; } #else if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ if( yyGrowStack(yypParser) ){ yypParser->yytos--; yyStackOverflow(yypParser); return; } } #endif if( yyNewState > YY_MAX_SHIFT ){ yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; } yytos = yypParser->yytos; yytos->stateno = yyNewState; yytos->major = yyMajor; yytos->minor.yy0 = yyMinor; yyTraceShift(yypParser, yyNewState, "Shift"); } /* For rule J, yyRuleInfoLhs[J] contains the symbol on the left-hand side ** of that rule */ static const YYCODETYPE yyRuleInfoLhs[] = { 189, /* (0) explain ::= EXPLAIN */ 189, /* (1) explain ::= EXPLAIN QUERY PLAN */ 188, /* (2) cmdx ::= cmd */ 190, /* (3) cmd ::= BEGIN transtype trans_opt */ 191, /* (4) transtype ::= */ 191, /* (5) transtype ::= DEFERRED */ 191, /* (6) transtype ::= IMMEDIATE */ 191, /* (7) transtype ::= EXCLUSIVE */ 190, /* (8) cmd ::= COMMIT|END trans_opt */ 190, /* (9) cmd ::= ROLLBACK trans_opt */ 190, /* (10) cmd ::= SAVEPOINT nm */ 190, /* (11) cmd ::= RELEASE savepoint_opt nm */ 190, /* (12) cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ 195, /* (13) create_table ::= createkw temp TABLE ifnotexists nm dbnm */ 197, /* (14) createkw ::= CREATE */ 199, /* (15) ifnotexists ::= */ 199, /* (16) ifnotexists ::= IF NOT EXISTS */ 198, /* (17) temp ::= TEMP */ 198, /* (18) temp ::= */ 196, /* (19) create_table_args ::= LP columnlist conslist_opt RP table_option_set */ 196, /* (20) create_table_args ::= AS select */ 203, /* (21) table_option_set ::= */ 203, /* (22) table_option_set ::= table_option_set COMMA table_option */ 205, /* (23) table_option ::= WITHOUT nm */ 205, /* (24) table_option ::= nm */ 206, /* (25) columnname ::= nm typetoken */ 208, /* (26) typetoken ::= */ 208, /* (27) typetoken ::= typename LP signed RP */ 208, /* (28) typetoken ::= typename LP signed COMMA signed RP */ 209, /* (29) typename ::= typename ID|STRING */ 213, /* (30) scanpt ::= */ 214, /* (31) scantok ::= */ 215, /* (32) ccons ::= CONSTRAINT nm */ 215, /* (33) ccons ::= DEFAULT scantok term */ 215, /* (34) ccons ::= DEFAULT LP expr RP */ 215, /* (35) ccons ::= DEFAULT PLUS scantok term */ 215, /* (36) ccons ::= DEFAULT MINUS scantok term */ 215, /* (37) ccons ::= DEFAULT scantok ID|INDEXED */ 215, /* (38) ccons ::= NOT NULL onconf */ 215, /* (39) ccons ::= PRIMARY KEY sortorder onconf autoinc */ 215, /* (40) ccons ::= UNIQUE onconf */ 215, /* (41) ccons ::= CHECK LP expr RP */ 215, /* (42) ccons ::= REFERENCES nm eidlist_opt refargs */ 215, /* (43) ccons ::= defer_subclause */ 215, /* (44) ccons ::= COLLATE ID|STRING */ 224, /* (45) generated ::= LP expr RP */ 224, /* (46) generated ::= LP expr RP ID */ 220, /* (47) autoinc ::= */ 220, /* (48) autoinc ::= AUTOINCR */ 222, /* (49) refargs ::= */ 222, /* (50) refargs ::= refargs refarg */ 225, /* (51) refarg ::= MATCH nm */ 225, /* (52) refarg ::= ON INSERT refact */ 225, /* (53) refarg ::= ON DELETE refact */ 225, /* (54) refarg ::= ON UPDATE refact */ 226, /* (55) refact ::= SET NULL */ 226, /* (56) refact ::= SET DEFAULT */ 226, /* (57) refact ::= CASCADE */ 226, /* (58) refact ::= RESTRICT */ 226, /* (59) refact ::= NO ACTION */ 223, /* (60) defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ 223, /* (61) defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ 227, /* (62) init_deferred_pred_opt ::= */ 227, /* (63) init_deferred_pred_opt ::= INITIALLY DEFERRED */ 227, /* (64) init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ 202, /* (65) conslist_opt ::= */ 229, /* (66) tconscomma ::= COMMA */ 230, /* (67) tcons ::= CONSTRAINT nm */ 230, /* (68) tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */ 230, /* (69) tcons ::= UNIQUE LP sortlist RP onconf */ 230, /* (70) tcons ::= CHECK LP expr RP onconf */ 230, /* (71) tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */ 233, /* (72) defer_subclause_opt ::= */ 218, /* (73) onconf ::= */ 218, /* (74) onconf ::= ON CONFLICT resolvetype */ 234, /* (75) orconf ::= */ 234, /* (76) orconf ::= OR resolvetype */ 235, /* (77) resolvetype ::= IGNORE */ 235, /* (78) resolvetype ::= REPLACE */ 190, /* (79) cmd ::= DROP TABLE ifexists fullname */ 237, /* (80) ifexists ::= IF EXISTS */ 237, /* (81) ifexists ::= */ 190, /* (82) cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */ 190, /* (83) cmd ::= DROP VIEW ifexists fullname */ 190, /* (84) cmd ::= select */ 204, /* (85) select ::= WITH wqlist selectnowith */ 204, /* (86) select ::= WITH RECURSIVE wqlist selectnowith */ 204, /* (87) select ::= selectnowith */ 239, /* (88) selectnowith ::= selectnowith multiselect_op oneselect */ 242, /* (89) multiselect_op ::= UNION */ 242, /* (90) multiselect_op ::= UNION ALL */ 242, /* (91) multiselect_op ::= EXCEPT|INTERSECT */ 240, /* (92) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ 240, /* (93) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */ 252, /* (94) values ::= VALUES LP nexprlist RP */ 252, /* (95) values ::= values COMMA LP nexprlist RP */ 243, /* (96) distinct ::= DISTINCT */ 243, /* (97) distinct ::= ALL */ 243, /* (98) distinct ::= */ 254, /* (99) sclp ::= */ 244, /* (100) selcollist ::= sclp scanpt expr scanpt as */ 244, /* (101) selcollist ::= sclp scanpt STAR */ 244, /* (102) selcollist ::= sclp scanpt nm DOT STAR */ 255, /* (103) as ::= AS nm */ 255, /* (104) as ::= */ 245, /* (105) from ::= */ 245, /* (106) from ::= FROM seltablist */ 257, /* (107) stl_prefix ::= seltablist joinop */ 257, /* (108) stl_prefix ::= */ 256, /* (109) seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ 256, /* (110) seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt */ 256, /* (111) seltablist ::= stl_prefix LP select RP as on_opt using_opt */ 256, /* (112) seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ 200, /* (113) dbnm ::= */ 200, /* (114) dbnm ::= DOT nm */ 238, /* (115) fullname ::= nm */ 238, /* (116) fullname ::= nm DOT nm */ 263, /* (117) xfullname ::= nm */ 263, /* (118) xfullname ::= nm DOT nm */ 263, /* (119) xfullname ::= nm DOT nm AS nm */ 263, /* (120) xfullname ::= nm AS nm */ 258, /* (121) joinop ::= COMMA|JOIN */ 258, /* (122) joinop ::= JOIN_KW JOIN */ 258, /* (123) joinop ::= JOIN_KW nm JOIN */ 258, /* (124) joinop ::= JOIN_KW nm nm JOIN */ 260, /* (125) on_opt ::= ON expr */ 260, /* (126) on_opt ::= */ 259, /* (127) indexed_opt ::= */ 259, /* (128) indexed_opt ::= INDEXED BY nm */ 259, /* (129) indexed_opt ::= NOT INDEXED */ 261, /* (130) using_opt ::= USING LP idlist RP */ 261, /* (131) using_opt ::= */ 249, /* (132) orderby_opt ::= */ 249, /* (133) orderby_opt ::= ORDER BY sortlist */ 231, /* (134) sortlist ::= sortlist COMMA expr sortorder nulls */ 231, /* (135) sortlist ::= expr sortorder nulls */ 219, /* (136) sortorder ::= ASC */ 219, /* (137) sortorder ::= DESC */ 219, /* (138) sortorder ::= */ 265, /* (139) nulls ::= NULLS FIRST */ 265, /* (140) nulls ::= NULLS LAST */ 265, /* (141) nulls ::= */ 247, /* (142) groupby_opt ::= */ 247, /* (143) groupby_opt ::= GROUP BY nexprlist */ 248, /* (144) having_opt ::= */ 248, /* (145) having_opt ::= HAVING expr */ 250, /* (146) limit_opt ::= */ 250, /* (147) limit_opt ::= LIMIT expr */ 250, /* (148) limit_opt ::= LIMIT expr OFFSET expr */ 250, /* (149) limit_opt ::= LIMIT expr COMMA expr */ 190, /* (150) cmd ::= with DELETE FROM xfullname indexed_opt where_opt_ret */ 246, /* (151) where_opt ::= */ 246, /* (152) where_opt ::= WHERE expr */ 267, /* (153) where_opt_ret ::= */ 267, /* (154) where_opt_ret ::= WHERE expr */ 267, /* (155) where_opt_ret ::= RETURNING selcollist */ 267, /* (156) where_opt_ret ::= WHERE expr RETURNING selcollist */ 190, /* (157) cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt_ret */ 268, /* (158) setlist ::= setlist COMMA nm EQ expr */ 268, /* (159) setlist ::= setlist COMMA LP idlist RP EQ expr */ 268, /* (160) setlist ::= nm EQ expr */ 268, /* (161) setlist ::= LP idlist RP EQ expr */ 190, /* (162) cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ 190, /* (163) cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES returning */ 271, /* (164) upsert ::= */ 271, /* (165) upsert ::= RETURNING selcollist */ 271, /* (166) upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt upsert */ 271, /* (167) upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING upsert */ 271, /* (168) upsert ::= ON CONFLICT DO NOTHING returning */ 271, /* (169) upsert ::= ON CONFLICT DO UPDATE SET setlist where_opt returning */ 272, /* (170) returning ::= RETURNING selcollist */ 269, /* (171) insert_cmd ::= INSERT orconf */ 269, /* (172) insert_cmd ::= REPLACE */ 270, /* (173) idlist_opt ::= */ 270, /* (174) idlist_opt ::= LP idlist RP */ 264, /* (175) idlist ::= idlist COMMA nm */ 264, /* (176) idlist ::= nm */ 217, /* (177) expr ::= LP expr RP */ 217, /* (178) expr ::= ID|INDEXED */ 217, /* (179) expr ::= JOIN_KW */ 217, /* (180) expr ::= nm DOT nm */ 217, /* (181) expr ::= nm DOT nm DOT nm */ 216, /* (182) term ::= NULL|FLOAT|BLOB */ 216, /* (183) term ::= STRING */ 216, /* (184) term ::= INTEGER */ 217, /* (185) expr ::= VARIABLE */ 217, /* (186) expr ::= expr COLLATE ID|STRING */ 217, /* (187) expr ::= CAST LP expr AS typetoken RP */ 217, /* (188) expr ::= ID|INDEXED LP distinct exprlist RP */ 217, /* (189) expr ::= ID|INDEXED LP STAR RP */ 217, /* (190) expr ::= ID|INDEXED LP distinct exprlist RP filter_over */ 217, /* (191) expr ::= ID|INDEXED LP STAR RP filter_over */ 216, /* (192) term ::= CTIME_KW */ 217, /* (193) expr ::= LP nexprlist COMMA expr RP */ 217, /* (194) expr ::= expr AND expr */ 217, /* (195) expr ::= expr OR expr */ 217, /* (196) expr ::= expr LT|GT|GE|LE expr */ 217, /* (197) expr ::= expr EQ|NE expr */ 217, /* (198) expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ 217, /* (199) expr ::= expr PLUS|MINUS expr */ 217, /* (200) expr ::= expr STAR|SLASH|REM expr */ 217, /* (201) expr ::= expr CONCAT expr */ 274, /* (202) likeop ::= NOT LIKE_KW|MATCH */ 217, /* (203) expr ::= expr likeop expr */ 217, /* (204) expr ::= expr likeop expr ESCAPE expr */ 217, /* (205) expr ::= expr ISNULL|NOTNULL */ 217, /* (206) expr ::= expr NOT NULL */ 217, /* (207) expr ::= expr IS expr */ 217, /* (208) expr ::= expr IS NOT expr */ 217, /* (209) expr ::= NOT expr */ 217, /* (210) expr ::= BITNOT expr */ 217, /* (211) expr ::= PLUS|MINUS expr */ 217, /* (212) expr ::= expr PTR expr */ 275, /* (213) between_op ::= BETWEEN */ 275, /* (214) between_op ::= NOT BETWEEN */ 217, /* (215) expr ::= expr between_op expr AND expr */ 276, /* (216) in_op ::= IN */ 276, /* (217) in_op ::= NOT IN */ 217, /* (218) expr ::= expr in_op LP exprlist RP */ 217, /* (219) expr ::= LP select RP */ 217, /* (220) expr ::= expr in_op LP select RP */ 217, /* (221) expr ::= expr in_op nm dbnm paren_exprlist */ 217, /* (222) expr ::= EXISTS LP select RP */ 217, /* (223) expr ::= CASE case_operand case_exprlist case_else END */ 279, /* (224) case_exprlist ::= case_exprlist WHEN expr THEN expr */ 279, /* (225) case_exprlist ::= WHEN expr THEN expr */ 280, /* (226) case_else ::= ELSE expr */ 280, /* (227) case_else ::= */ 278, /* (228) case_operand ::= expr */ 278, /* (229) case_operand ::= */ 262, /* (230) exprlist ::= */ 253, /* (231) nexprlist ::= nexprlist COMMA expr */ 253, /* (232) nexprlist ::= expr */ 277, /* (233) paren_exprlist ::= */ 277, /* (234) paren_exprlist ::= LP exprlist RP */ 190, /* (235) cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */ 281, /* (236) uniqueflag ::= UNIQUE */ 281, /* (237) uniqueflag ::= */ 221, /* (238) eidlist_opt ::= */ 221, /* (239) eidlist_opt ::= LP eidlist RP */ 232, /* (240) eidlist ::= eidlist COMMA nm collate sortorder */ 232, /* (241) eidlist ::= nm collate sortorder */ 282, /* (242) collate ::= */ 282, /* (243) collate ::= COLLATE ID|STRING */ 190, /* (244) cmd ::= DROP INDEX ifexists fullname */ 190, /* (245) cmd ::= VACUUM vinto */ 190, /* (246) cmd ::= VACUUM nm vinto */ 283, /* (247) vinto ::= INTO expr */ 283, /* (248) vinto ::= */ 190, /* (249) cmd ::= PRAGMA nm dbnm */ 190, /* (250) cmd ::= PRAGMA nm dbnm EQ nmnum */ 190, /* (251) cmd ::= PRAGMA nm dbnm LP nmnum RP */ 190, /* (252) cmd ::= PRAGMA nm dbnm EQ minus_num */ 190, /* (253) cmd ::= PRAGMA nm dbnm LP minus_num RP */ 211, /* (254) plus_num ::= PLUS INTEGER|FLOAT */ 212, /* (255) minus_num ::= MINUS INTEGER|FLOAT */ 190, /* (256) cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ 285, /* (257) trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ 287, /* (258) trigger_time ::= BEFORE|AFTER */ 287, /* (259) trigger_time ::= INSTEAD OF */ 287, /* (260) trigger_time ::= */ 288, /* (261) trigger_event ::= DELETE|INSERT */ 288, /* (262) trigger_event ::= UPDATE */ 288, /* (263) trigger_event ::= UPDATE OF idlist */ 290, /* (264) when_clause ::= */ 290, /* (265) when_clause ::= WHEN expr */ 286, /* (266) trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ 286, /* (267) trigger_cmd_list ::= trigger_cmd SEMI */ 292, /* (268) trnm ::= nm DOT nm */ 293, /* (269) tridxby ::= INDEXED BY nm */ 293, /* (270) tridxby ::= NOT INDEXED */ 291, /* (271) trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt */ 291, /* (272) trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt */ 291, /* (273) trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt */ 291, /* (274) trigger_cmd ::= scanpt select scanpt */ 217, /* (275) expr ::= RAISE LP IGNORE RP */ 217, /* (276) expr ::= RAISE LP raisetype COMMA nm RP */ 236, /* (277) raisetype ::= ROLLBACK */ 236, /* (278) raisetype ::= ABORT */ 236, /* (279) raisetype ::= FAIL */ 190, /* (280) cmd ::= DROP TRIGGER ifexists fullname */ 190, /* (281) cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ 190, /* (282) cmd ::= DETACH database_kw_opt expr */ 295, /* (283) key_opt ::= */ 295, /* (284) key_opt ::= KEY expr */ 190, /* (285) cmd ::= REINDEX */ 190, /* (286) cmd ::= REINDEX nm dbnm */ 190, /* (287) cmd ::= ANALYZE */ 190, /* (288) cmd ::= ANALYZE nm dbnm */ 190, /* (289) cmd ::= ALTER TABLE fullname RENAME TO nm */ 190, /* (290) cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist */ 190, /* (291) cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */ 296, /* (292) add_column_fullname ::= fullname */ 190, /* (293) cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */ 190, /* (294) cmd ::= create_vtab */ 190, /* (295) cmd ::= create_vtab LP vtabarglist RP */ 298, /* (296) create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ 300, /* (297) vtabarg ::= */ 301, /* (298) vtabargtoken ::= ANY */ 301, /* (299) vtabargtoken ::= lp anylist RP */ 302, /* (300) lp ::= LP */ 266, /* (301) with ::= WITH wqlist */ 266, /* (302) with ::= WITH RECURSIVE wqlist */ 305, /* (303) wqas ::= AS */ 305, /* (304) wqas ::= AS MATERIALIZED */ 305, /* (305) wqas ::= AS NOT MATERIALIZED */ 304, /* (306) wqitem ::= nm eidlist_opt wqas LP select RP */ 241, /* (307) wqlist ::= wqitem */ 241, /* (308) wqlist ::= wqlist COMMA wqitem */ 306, /* (309) windowdefn_list ::= windowdefn */ 306, /* (310) windowdefn_list ::= windowdefn_list COMMA windowdefn */ 307, /* (311) windowdefn ::= nm AS LP window RP */ 308, /* (312) window ::= PARTITION BY nexprlist orderby_opt frame_opt */ 308, /* (313) window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */ 308, /* (314) window ::= ORDER BY sortlist frame_opt */ 308, /* (315) window ::= nm ORDER BY sortlist frame_opt */ 308, /* (316) window ::= frame_opt */ 308, /* (317) window ::= nm frame_opt */ 309, /* (318) frame_opt ::= */ 309, /* (319) frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */ 309, /* (320) frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */ 313, /* (321) range_or_rows ::= RANGE|ROWS|GROUPS */ 315, /* (322) frame_bound_s ::= frame_bound */ 315, /* (323) frame_bound_s ::= UNBOUNDED PRECEDING */ 316, /* (324) frame_bound_e ::= frame_bound */ 316, /* (325) frame_bound_e ::= UNBOUNDED FOLLOWING */ 314, /* (326) frame_bound ::= expr PRECEDING|FOLLOWING */ 314, /* (327) frame_bound ::= CURRENT ROW */ 317, /* (328) frame_exclude_opt ::= */ 317, /* (329) frame_exclude_opt ::= EXCLUDE frame_exclude */ 318, /* (330) frame_exclude ::= NO OTHERS */ 318, /* (331) frame_exclude ::= CURRENT ROW */ 318, /* (332) frame_exclude ::= GROUP|TIES */ 251, /* (333) window_clause ::= WINDOW windowdefn_list */ 273, /* (334) filter_over ::= filter_clause over_clause */ 273, /* (335) filter_over ::= over_clause */ 273, /* (336) filter_over ::= filter_clause */ 312, /* (337) over_clause ::= OVER LP window RP */ 312, /* (338) over_clause ::= OVER nm */ 311, /* (339) filter_clause ::= FILTER LP WHERE expr RP */ 185, /* (340) input ::= cmdlist */ 186, /* (341) cmdlist ::= cmdlist ecmd */ 186, /* (342) cmdlist ::= ecmd */ 187, /* (343) ecmd ::= SEMI */ 187, /* (344) ecmd ::= cmdx SEMI */ 187, /* (345) ecmd ::= explain cmdx SEMI */ 192, /* (346) trans_opt ::= */ 192, /* (347) trans_opt ::= TRANSACTION */ 192, /* (348) trans_opt ::= TRANSACTION nm */ 194, /* (349) savepoint_opt ::= SAVEPOINT */ 194, /* (350) savepoint_opt ::= */ 190, /* (351) cmd ::= create_table create_table_args */ 203, /* (352) table_option_set ::= table_option */ 201, /* (353) columnlist ::= columnlist COMMA columnname carglist */ 201, /* (354) columnlist ::= columnname carglist */ 193, /* (355) nm ::= ID|INDEXED */ 193, /* (356) nm ::= STRING */ 193, /* (357) nm ::= JOIN_KW */ 208, /* (358) typetoken ::= typename */ 209, /* (359) typename ::= ID|STRING */ 210, /* (360) signed ::= plus_num */ 210, /* (361) signed ::= minus_num */ 207, /* (362) carglist ::= carglist ccons */ 207, /* (363) carglist ::= */ 215, /* (364) ccons ::= NULL onconf */ 215, /* (365) ccons ::= GENERATED ALWAYS AS generated */ 215, /* (366) ccons ::= AS generated */ 202, /* (367) conslist_opt ::= COMMA conslist */ 228, /* (368) conslist ::= conslist tconscomma tcons */ 228, /* (369) conslist ::= tcons */ 229, /* (370) tconscomma ::= */ 233, /* (371) defer_subclause_opt ::= defer_subclause */ 235, /* (372) resolvetype ::= raisetype */ 239, /* (373) selectnowith ::= oneselect */ 240, /* (374) oneselect ::= values */ 254, /* (375) sclp ::= selcollist COMMA */ 255, /* (376) as ::= ID|STRING */ 272, /* (377) returning ::= */ 217, /* (378) expr ::= term */ 274, /* (379) likeop ::= LIKE_KW|MATCH */ 262, /* (380) exprlist ::= nexprlist */ 284, /* (381) nmnum ::= plus_num */ 284, /* (382) nmnum ::= nm */ 284, /* (383) nmnum ::= ON */ 284, /* (384) nmnum ::= DELETE */ 284, /* (385) nmnum ::= DEFAULT */ 211, /* (386) plus_num ::= INTEGER|FLOAT */ 289, /* (387) foreach_clause ::= */ 289, /* (388) foreach_clause ::= FOR EACH ROW */ 292, /* (389) trnm ::= nm */ 293, /* (390) tridxby ::= */ 294, /* (391) database_kw_opt ::= DATABASE */ 294, /* (392) database_kw_opt ::= */ 297, /* (393) kwcolumn_opt ::= */ 297, /* (394) kwcolumn_opt ::= COLUMNKW */ 299, /* (395) vtabarglist ::= vtabarg */ 299, /* (396) vtabarglist ::= vtabarglist COMMA vtabarg */ 300, /* (397) vtabarg ::= vtabarg vtabargtoken */ 303, /* (398) anylist ::= */ 303, /* (399) anylist ::= anylist LP anylist RP */ 303, /* (400) anylist ::= anylist ANY */ 266, /* (401) with ::= */ }; /* For rule J, yyRuleInfoNRhs[J] contains the negative of the number ** of symbols on the right-hand side of that rule. */ static const signed char yyRuleInfoNRhs[] = { -1, /* (0) explain ::= EXPLAIN */ -3, /* (1) explain ::= EXPLAIN QUERY PLAN */ -1, /* (2) cmdx ::= cmd */ -3, /* (3) cmd ::= BEGIN transtype trans_opt */ 0, /* (4) transtype ::= */ -1, /* (5) transtype ::= DEFERRED */ -1, /* (6) transtype ::= IMMEDIATE */ -1, /* (7) transtype ::= EXCLUSIVE */ -2, /* (8) cmd ::= COMMIT|END trans_opt */ -2, /* (9) cmd ::= ROLLBACK trans_opt */ -2, /* (10) cmd ::= SAVEPOINT nm */ -3, /* (11) cmd ::= RELEASE savepoint_opt nm */ -5, /* (12) cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ -6, /* (13) create_table ::= createkw temp TABLE ifnotexists nm dbnm */ -1, /* (14) createkw ::= CREATE */ 0, /* (15) ifnotexists ::= */ -3, /* (16) ifnotexists ::= IF NOT EXISTS */ -1, /* (17) temp ::= TEMP */ 0, /* (18) temp ::= */ -5, /* (19) create_table_args ::= LP columnlist conslist_opt RP table_option_set */ -2, /* (20) create_table_args ::= AS select */ 0, /* (21) table_option_set ::= */ -3, /* (22) table_option_set ::= table_option_set COMMA table_option */ -2, /* (23) table_option ::= WITHOUT nm */ -1, /* (24) table_option ::= nm */ -2, /* (25) columnname ::= nm typetoken */ 0, /* (26) typetoken ::= */ -4, /* (27) typetoken ::= typename LP signed RP */ -6, /* (28) typetoken ::= typename LP signed COMMA signed RP */ -2, /* (29) typename ::= typename ID|STRING */ 0, /* (30) scanpt ::= */ 0, /* (31) scantok ::= */ -2, /* (32) ccons ::= CONSTRAINT nm */ -3, /* (33) ccons ::= DEFAULT scantok term */ -4, /* (34) ccons ::= DEFAULT LP expr RP */ -4, /* (35) ccons ::= DEFAULT PLUS scantok term */ -4, /* (36) ccons ::= DEFAULT MINUS scantok term */ -3, /* (37) ccons ::= DEFAULT scantok ID|INDEXED */ -3, /* (38) ccons ::= NOT NULL onconf */ -5, /* (39) ccons ::= PRIMARY KEY sortorder onconf autoinc */ -2, /* (40) ccons ::= UNIQUE onconf */ -4, /* (41) ccons ::= CHECK LP expr RP */ -4, /* (42) ccons ::= REFERENCES nm eidlist_opt refargs */ -1, /* (43) ccons ::= defer_subclause */ -2, /* (44) ccons ::= COLLATE ID|STRING */ -3, /* (45) generated ::= LP expr RP */ -4, /* (46) generated ::= LP expr RP ID */ 0, /* (47) autoinc ::= */ -1, /* (48) autoinc ::= AUTOINCR */ 0, /* (49) refargs ::= */ -2, /* (50) refargs ::= refargs refarg */ -2, /* (51) refarg ::= MATCH nm */ -3, /* (52) refarg ::= ON INSERT refact */ -3, /* (53) refarg ::= ON DELETE refact */ -3, /* (54) refarg ::= ON UPDATE refact */ -2, /* (55) refact ::= SET NULL */ -2, /* (56) refact ::= SET DEFAULT */ -1, /* (57) refact ::= CASCADE */ -1, /* (58) refact ::= RESTRICT */ -2, /* (59) refact ::= NO ACTION */ -3, /* (60) defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ -2, /* (61) defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ 0, /* (62) init_deferred_pred_opt ::= */ -2, /* (63) init_deferred_pred_opt ::= INITIALLY DEFERRED */ -2, /* (64) init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ 0, /* (65) conslist_opt ::= */ -1, /* (66) tconscomma ::= COMMA */ -2, /* (67) tcons ::= CONSTRAINT nm */ -7, /* (68) tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */ -5, /* (69) tcons ::= UNIQUE LP sortlist RP onconf */ -5, /* (70) tcons ::= CHECK LP expr RP onconf */ -10, /* (71) tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */ 0, /* (72) defer_subclause_opt ::= */ 0, /* (73) onconf ::= */ -3, /* (74) onconf ::= ON CONFLICT resolvetype */ 0, /* (75) orconf ::= */ -2, /* (76) orconf ::= OR resolvetype */ -1, /* (77) resolvetype ::= IGNORE */ -1, /* (78) resolvetype ::= REPLACE */ -4, /* (79) cmd ::= DROP TABLE ifexists fullname */ -2, /* (80) ifexists ::= IF EXISTS */ 0, /* (81) ifexists ::= */ -9, /* (82) cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */ -4, /* (83) cmd ::= DROP VIEW ifexists fullname */ -1, /* (84) cmd ::= select */ -3, /* (85) select ::= WITH wqlist selectnowith */ -4, /* (86) select ::= WITH RECURSIVE wqlist selectnowith */ -1, /* (87) select ::= selectnowith */ -3, /* (88) selectnowith ::= selectnowith multiselect_op oneselect */ -1, /* (89) multiselect_op ::= UNION */ -2, /* (90) multiselect_op ::= UNION ALL */ -1, /* (91) multiselect_op ::= EXCEPT|INTERSECT */ -9, /* (92) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ -10, /* (93) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */ -4, /* (94) values ::= VALUES LP nexprlist RP */ -5, /* (95) values ::= values COMMA LP nexprlist RP */ -1, /* (96) distinct ::= DISTINCT */ -1, /* (97) distinct ::= ALL */ 0, /* (98) distinct ::= */ 0, /* (99) sclp ::= */ -5, /* (100) selcollist ::= sclp scanpt expr scanpt as */ -3, /* (101) selcollist ::= sclp scanpt STAR */ -5, /* (102) selcollist ::= sclp scanpt nm DOT STAR */ -2, /* (103) as ::= AS nm */ 0, /* (104) as ::= */ 0, /* (105) from ::= */ -2, /* (106) from ::= FROM seltablist */ -2, /* (107) stl_prefix ::= seltablist joinop */ 0, /* (108) stl_prefix ::= */ -7, /* (109) seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ -9, /* (110) seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt */ -7, /* (111) seltablist ::= stl_prefix LP select RP as on_opt using_opt */ -7, /* (112) seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ 0, /* (113) dbnm ::= */ -2, /* (114) dbnm ::= DOT nm */ -1, /* (115) fullname ::= nm */ -3, /* (116) fullname ::= nm DOT nm */ -1, /* (117) xfullname ::= nm */ -3, /* (118) xfullname ::= nm DOT nm */ -5, /* (119) xfullname ::= nm DOT nm AS nm */ -3, /* (120) xfullname ::= nm AS nm */ -1, /* (121) joinop ::= COMMA|JOIN */ -2, /* (122) joinop ::= JOIN_KW JOIN */ -3, /* (123) joinop ::= JOIN_KW nm JOIN */ -4, /* (124) joinop ::= JOIN_KW nm nm JOIN */ -2, /* (125) on_opt ::= ON expr */ 0, /* (126) on_opt ::= */ 0, /* (127) indexed_opt ::= */ -3, /* (128) indexed_opt ::= INDEXED BY nm */ -2, /* (129) indexed_opt ::= NOT INDEXED */ -4, /* (130) using_opt ::= USING LP idlist RP */ 0, /* (131) using_opt ::= */ 0, /* (132) orderby_opt ::= */ -3, /* (133) orderby_opt ::= ORDER BY sortlist */ -5, /* (134) sortlist ::= sortlist COMMA expr sortorder nulls */ -3, /* (135) sortlist ::= expr sortorder nulls */ -1, /* (136) sortorder ::= ASC */ -1, /* (137) sortorder ::= DESC */ 0, /* (138) sortorder ::= */ -2, /* (139) nulls ::= NULLS FIRST */ -2, /* (140) nulls ::= NULLS LAST */ 0, /* (141) nulls ::= */ 0, /* (142) groupby_opt ::= */ -3, /* (143) groupby_opt ::= GROUP BY nexprlist */ 0, /* (144) having_opt ::= */ -2, /* (145) having_opt ::= HAVING expr */ 0, /* (146) limit_opt ::= */ -2, /* (147) limit_opt ::= LIMIT expr */ -4, /* (148) limit_opt ::= LIMIT expr OFFSET expr */ -4, /* (149) limit_opt ::= LIMIT expr COMMA expr */ -6, /* (150) cmd ::= with DELETE FROM xfullname indexed_opt where_opt_ret */ 0, /* (151) where_opt ::= */ -2, /* (152) where_opt ::= WHERE expr */ 0, /* (153) where_opt_ret ::= */ -2, /* (154) where_opt_ret ::= WHERE expr */ -2, /* (155) where_opt_ret ::= RETURNING selcollist */ -4, /* (156) where_opt_ret ::= WHERE expr RETURNING selcollist */ -9, /* (157) cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt_ret */ -5, /* (158) setlist ::= setlist COMMA nm EQ expr */ -7, /* (159) setlist ::= setlist COMMA LP idlist RP EQ expr */ -3, /* (160) setlist ::= nm EQ expr */ -5, /* (161) setlist ::= LP idlist RP EQ expr */ -7, /* (162) cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ -8, /* (163) cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES returning */ 0, /* (164) upsert ::= */ -2, /* (165) upsert ::= RETURNING selcollist */ -12, /* (166) upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt upsert */ -9, /* (167) upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING upsert */ -5, /* (168) upsert ::= ON CONFLICT DO NOTHING returning */ -8, /* (169) upsert ::= ON CONFLICT DO UPDATE SET setlist where_opt returning */ -2, /* (170) returning ::= RETURNING selcollist */ -2, /* (171) insert_cmd ::= INSERT orconf */ -1, /* (172) insert_cmd ::= REPLACE */ 0, /* (173) idlist_opt ::= */ -3, /* (174) idlist_opt ::= LP idlist RP */ -3, /* (175) idlist ::= idlist COMMA nm */ -1, /* (176) idlist ::= nm */ -3, /* (177) expr ::= LP expr RP */ -1, /* (178) expr ::= ID|INDEXED */ -1, /* (179) expr ::= JOIN_KW */ -3, /* (180) expr ::= nm DOT nm */ -5, /* (181) expr ::= nm DOT nm DOT nm */ -1, /* (182) term ::= NULL|FLOAT|BLOB */ -1, /* (183) term ::= STRING */ -1, /* (184) term ::= INTEGER */ -1, /* (185) expr ::= VARIABLE */ -3, /* (186) expr ::= expr COLLATE ID|STRING */ -6, /* (187) expr ::= CAST LP expr AS typetoken RP */ -5, /* (188) expr ::= ID|INDEXED LP distinct exprlist RP */ -4, /* (189) expr ::= ID|INDEXED LP STAR RP */ -6, /* (190) expr ::= ID|INDEXED LP distinct exprlist RP filter_over */ -5, /* (191) expr ::= ID|INDEXED LP STAR RP filter_over */ -1, /* (192) term ::= CTIME_KW */ -5, /* (193) expr ::= LP nexprlist COMMA expr RP */ -3, /* (194) expr ::= expr AND expr */ -3, /* (195) expr ::= expr OR expr */ -3, /* (196) expr ::= expr LT|GT|GE|LE expr */ -3, /* (197) expr ::= expr EQ|NE expr */ -3, /* (198) expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ -3, /* (199) expr ::= expr PLUS|MINUS expr */ -3, /* (200) expr ::= expr STAR|SLASH|REM expr */ -3, /* (201) expr ::= expr CONCAT expr */ -2, /* (202) likeop ::= NOT LIKE_KW|MATCH */ -3, /* (203) expr ::= expr likeop expr */ -5, /* (204) expr ::= expr likeop expr ESCAPE expr */ -2, /* (205) expr ::= expr ISNULL|NOTNULL */ -3, /* (206) expr ::= expr NOT NULL */ -3, /* (207) expr ::= expr IS expr */ -4, /* (208) expr ::= expr IS NOT expr */ -2, /* (209) expr ::= NOT expr */ -2, /* (210) expr ::= BITNOT expr */ -2, /* (211) expr ::= PLUS|MINUS expr */ -3, /* (212) expr ::= expr PTR expr */ -1, /* (213) between_op ::= BETWEEN */ -2, /* (214) between_op ::= NOT BETWEEN */ -5, /* (215) expr ::= expr between_op expr AND expr */ -1, /* (216) in_op ::= IN */ -2, /* (217) in_op ::= NOT IN */ -5, /* (218) expr ::= expr in_op LP exprlist RP */ -3, /* (219) expr ::= LP select RP */ -5, /* (220) expr ::= expr in_op LP select RP */ -5, /* (221) expr ::= expr in_op nm dbnm paren_exprlist */ -4, /* (222) expr ::= EXISTS LP select RP */ -5, /* (223) expr ::= CASE case_operand case_exprlist case_else END */ -5, /* (224) case_exprlist ::= case_exprlist WHEN expr THEN expr */ -4, /* (225) case_exprlist ::= WHEN expr THEN expr */ -2, /* (226) case_else ::= ELSE expr */ 0, /* (227) case_else ::= */ -1, /* (228) case_operand ::= expr */ 0, /* (229) case_operand ::= */ 0, /* (230) exprlist ::= */ -3, /* (231) nexprlist ::= nexprlist COMMA expr */ -1, /* (232) nexprlist ::= expr */ 0, /* (233) paren_exprlist ::= */ -3, /* (234) paren_exprlist ::= LP exprlist RP */ -12, /* (235) cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */ -1, /* (236) uniqueflag ::= UNIQUE */ 0, /* (237) uniqueflag ::= */ 0, /* (238) eidlist_opt ::= */ -3, /* (239) eidlist_opt ::= LP eidlist RP */ -5, /* (240) eidlist ::= eidlist COMMA nm collate sortorder */ -3, /* (241) eidlist ::= nm collate sortorder */ 0, /* (242) collate ::= */ -2, /* (243) collate ::= COLLATE ID|STRING */ -4, /* (244) cmd ::= DROP INDEX ifexists fullname */ -2, /* (245) cmd ::= VACUUM vinto */ -3, /* (246) cmd ::= VACUUM nm vinto */ -2, /* (247) vinto ::= INTO expr */ 0, /* (248) vinto ::= */ -3, /* (249) cmd ::= PRAGMA nm dbnm */ -5, /* (250) cmd ::= PRAGMA nm dbnm EQ nmnum */ -6, /* (251) cmd ::= PRAGMA nm dbnm LP nmnum RP */ -5, /* (252) cmd ::= PRAGMA nm dbnm EQ minus_num */ -6, /* (253) cmd ::= PRAGMA nm dbnm LP minus_num RP */ -2, /* (254) plus_num ::= PLUS INTEGER|FLOAT */ -2, /* (255) minus_num ::= MINUS INTEGER|FLOAT */ -5, /* (256) cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ -11, /* (257) trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ -1, /* (258) trigger_time ::= BEFORE|AFTER */ -2, /* (259) trigger_time ::= INSTEAD OF */ 0, /* (260) trigger_time ::= */ -1, /* (261) trigger_event ::= DELETE|INSERT */ -1, /* (262) trigger_event ::= UPDATE */ -3, /* (263) trigger_event ::= UPDATE OF idlist */ 0, /* (264) when_clause ::= */ -2, /* (265) when_clause ::= WHEN expr */ -3, /* (266) trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ -2, /* (267) trigger_cmd_list ::= trigger_cmd SEMI */ -3, /* (268) trnm ::= nm DOT nm */ -3, /* (269) tridxby ::= INDEXED BY nm */ -2, /* (270) tridxby ::= NOT INDEXED */ -9, /* (271) trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt */ -8, /* (272) trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt */ -6, /* (273) trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt */ -3, /* (274) trigger_cmd ::= scanpt select scanpt */ -4, /* (275) expr ::= RAISE LP IGNORE RP */ -6, /* (276) expr ::= RAISE LP raisetype COMMA nm RP */ -1, /* (277) raisetype ::= ROLLBACK */ -1, /* (278) raisetype ::= ABORT */ -1, /* (279) raisetype ::= FAIL */ -4, /* (280) cmd ::= DROP TRIGGER ifexists fullname */ -6, /* (281) cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ -3, /* (282) cmd ::= DETACH database_kw_opt expr */ 0, /* (283) key_opt ::= */ -2, /* (284) key_opt ::= KEY expr */ -1, /* (285) cmd ::= REINDEX */ -3, /* (286) cmd ::= REINDEX nm dbnm */ -1, /* (287) cmd ::= ANALYZE */ -3, /* (288) cmd ::= ANALYZE nm dbnm */ -6, /* (289) cmd ::= ALTER TABLE fullname RENAME TO nm */ -7, /* (290) cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist */ -6, /* (291) cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */ -1, /* (292) add_column_fullname ::= fullname */ -8, /* (293) cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */ -1, /* (294) cmd ::= create_vtab */ -4, /* (295) cmd ::= create_vtab LP vtabarglist RP */ -8, /* (296) create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ 0, /* (297) vtabarg ::= */ -1, /* (298) vtabargtoken ::= ANY */ -3, /* (299) vtabargtoken ::= lp anylist RP */ -1, /* (300) lp ::= LP */ -2, /* (301) with ::= WITH wqlist */ -3, /* (302) with ::= WITH RECURSIVE wqlist */ -1, /* (303) wqas ::= AS */ -2, /* (304) wqas ::= AS MATERIALIZED */ -3, /* (305) wqas ::= AS NOT MATERIALIZED */ -6, /* (306) wqitem ::= nm eidlist_opt wqas LP select RP */ -1, /* (307) wqlist ::= wqitem */ -3, /* (308) wqlist ::= wqlist COMMA wqitem */ -1, /* (309) windowdefn_list ::= windowdefn */ -3, /* (310) windowdefn_list ::= windowdefn_list COMMA windowdefn */ -5, /* (311) windowdefn ::= nm AS LP window RP */ -5, /* (312) window ::= PARTITION BY nexprlist orderby_opt frame_opt */ -6, /* (313) window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */ -4, /* (314) window ::= ORDER BY sortlist frame_opt */ -5, /* (315) window ::= nm ORDER BY sortlist frame_opt */ -1, /* (316) window ::= frame_opt */ -2, /* (317) window ::= nm frame_opt */ 0, /* (318) frame_opt ::= */ -3, /* (319) frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */ -6, /* (320) frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */ -1, /* (321) range_or_rows ::= RANGE|ROWS|GROUPS */ -1, /* (322) frame_bound_s ::= frame_bound */ -2, /* (323) frame_bound_s ::= UNBOUNDED PRECEDING */ -1, /* (324) frame_bound_e ::= frame_bound */ -2, /* (325) frame_bound_e ::= UNBOUNDED FOLLOWING */ -2, /* (326) frame_bound ::= expr PRECEDING|FOLLOWING */ -2, /* (327) frame_bound ::= CURRENT ROW */ 0, /* (328) frame_exclude_opt ::= */ -2, /* (329) frame_exclude_opt ::= EXCLUDE frame_exclude */ -2, /* (330) frame_exclude ::= NO OTHERS */ -2, /* (331) frame_exclude ::= CURRENT ROW */ -1, /* (332) frame_exclude ::= GROUP|TIES */ -2, /* (333) window_clause ::= WINDOW windowdefn_list */ -2, /* (334) filter_over ::= filter_clause over_clause */ -1, /* (335) filter_over ::= over_clause */ -1, /* (336) filter_over ::= filter_clause */ -4, /* (337) over_clause ::= OVER LP window RP */ -2, /* (338) over_clause ::= OVER nm */ -5, /* (339) filter_clause ::= FILTER LP WHERE expr RP */ -1, /* (340) input ::= cmdlist */ -2, /* (341) cmdlist ::= cmdlist ecmd */ -1, /* (342) cmdlist ::= ecmd */ -1, /* (343) ecmd ::= SEMI */ -2, /* (344) ecmd ::= cmdx SEMI */ -3, /* (345) ecmd ::= explain cmdx SEMI */ 0, /* (346) trans_opt ::= */ -1, /* (347) trans_opt ::= TRANSACTION */ -2, /* (348) trans_opt ::= TRANSACTION nm */ -1, /* (349) savepoint_opt ::= SAVEPOINT */ 0, /* (350) savepoint_opt ::= */ -2, /* (351) cmd ::= create_table create_table_args */ -1, /* (352) table_option_set ::= table_option */ -4, /* (353) columnlist ::= columnlist COMMA columnname carglist */ -2, /* (354) columnlist ::= columnname carglist */ -1, /* (355) nm ::= ID|INDEXED */ -1, /* (356) nm ::= STRING */ -1, /* (357) nm ::= JOIN_KW */ -1, /* (358) typetoken ::= typename */ -1, /* (359) typename ::= ID|STRING */ -1, /* (360) signed ::= plus_num */ -1, /* (361) signed ::= minus_num */ -2, /* (362) carglist ::= carglist ccons */ 0, /* (363) carglist ::= */ -2, /* (364) ccons ::= NULL onconf */ -4, /* (365) ccons ::= GENERATED ALWAYS AS generated */ -2, /* (366) ccons ::= AS generated */ -2, /* (367) conslist_opt ::= COMMA conslist */ -3, /* (368) conslist ::= conslist tconscomma tcons */ -1, /* (369) conslist ::= tcons */ 0, /* (370) tconscomma ::= */ -1, /* (371) defer_subclause_opt ::= defer_subclause */ -1, /* (372) resolvetype ::= raisetype */ -1, /* (373) selectnowith ::= oneselect */ -1, /* (374) oneselect ::= values */ -2, /* (375) sclp ::= selcollist COMMA */ -1, /* (376) as ::= ID|STRING */ 0, /* (377) returning ::= */ -1, /* (378) expr ::= term */ -1, /* (379) likeop ::= LIKE_KW|MATCH */ -1, /* (380) exprlist ::= nexprlist */ -1, /* (381) nmnum ::= plus_num */ -1, /* (382) nmnum ::= nm */ -1, /* (383) nmnum ::= ON */ -1, /* (384) nmnum ::= DELETE */ -1, /* (385) nmnum ::= DEFAULT */ -1, /* (386) plus_num ::= INTEGER|FLOAT */ 0, /* (387) foreach_clause ::= */ -3, /* (388) foreach_clause ::= FOR EACH ROW */ -1, /* (389) trnm ::= nm */ 0, /* (390) tridxby ::= */ -1, /* (391) database_kw_opt ::= DATABASE */ 0, /* (392) database_kw_opt ::= */ 0, /* (393) kwcolumn_opt ::= */ -1, /* (394) kwcolumn_opt ::= COLUMNKW */ -1, /* (395) vtabarglist ::= vtabarg */ -3, /* (396) vtabarglist ::= vtabarglist COMMA vtabarg */ -2, /* (397) vtabarg ::= vtabarg vtabargtoken */ 0, /* (398) anylist ::= */ -4, /* (399) anylist ::= anylist LP anylist RP */ -2, /* (400) anylist ::= anylist ANY */ 0, /* (401) with ::= */ }; static void yy_accept(yyParser*); /* Forward Declaration */ /* ** Perform a reduce action and the shift that must immediately ** follow the reduce. ** ** The yyLookahead and yyLookaheadToken parameters provide reduce actions ** access to the lookahead token (if any). The yyLookahead will be YYNOCODE ** if the lookahead token has already been consumed. As this procedure is ** only called from one place, optimizing compilers will in-line it, which ** means that the extra parameters have no performance impact. */ static YYACTIONTYPE yy_reduce( yyParser *yypParser, /* The parser */ unsigned int yyruleno, /* Number of the rule by which to reduce */ int yyLookahead, /* Lookahead token, or YYNOCODE if none */ sqlite3ParserTOKENTYPE yyLookaheadToken /* Value of the lookahead token */ sqlite3ParserCTX_PDECL /* %extra_context */ ){ int yygoto; /* The next state */ YYACTIONTYPE yyact; /* The next action */ yyStackEntry *yymsp; /* The top of the parser's stack */ int yysize; /* Amount to pop the stack */ sqlite3ParserARG_FETCH (void)yyLookahead; (void)yyLookaheadToken; yymsp = yypParser->yytos; switch( yyruleno ){ /* Beginning here are the reduction cases. A typical example ** follows: ** case 0: ** #line ** { ... } // User supplied code ** #line ** break; */ /********** Begin reduce actions **********************************************/ YYMINORTYPE yylhsminor; case 0: /* explain ::= EXPLAIN */ { pParse->explain = 1; } break; case 1: /* explain ::= EXPLAIN QUERY PLAN */ { pParse->explain = 2; } break; case 2: /* cmdx ::= cmd */ { sqlite3FinishCoding(pParse); } break; case 3: /* cmd ::= BEGIN transtype trans_opt */ {sqlite3BeginTransaction(pParse, yymsp[-1].minor.yy394);} break; case 4: /* transtype ::= */ {yymsp[1].minor.yy394 = TK_DEFERRED;} break; case 5: /* transtype ::= DEFERRED */ case 6: /* transtype ::= IMMEDIATE */ yytestcase(yyruleno==6); case 7: /* transtype ::= EXCLUSIVE */ yytestcase(yyruleno==7); case 321: /* range_or_rows ::= RANGE|ROWS|GROUPS */ yytestcase(yyruleno==321); {yymsp[0].minor.yy394 = yymsp[0].major; /*A-overwrites-X*/} break; case 8: /* cmd ::= COMMIT|END trans_opt */ case 9: /* cmd ::= ROLLBACK trans_opt */ yytestcase(yyruleno==9); {sqlite3EndTransaction(pParse,yymsp[-1].major);} break; case 10: /* cmd ::= SAVEPOINT nm */ { sqlite3Savepoint(pParse, SAVEPOINT_BEGIN, &yymsp[0].minor.yy0); } break; case 11: /* cmd ::= RELEASE savepoint_opt nm */ { sqlite3Savepoint(pParse, SAVEPOINT_RELEASE, &yymsp[0].minor.yy0); } break; case 12: /* cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ { sqlite3Savepoint(pParse, SAVEPOINT_ROLLBACK, &yymsp[0].minor.yy0); } break; case 13: /* create_table ::= createkw temp TABLE ifnotexists nm dbnm */ { sqlite3StartTable(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0,yymsp[-4].minor.yy394,0,0,yymsp[-2].minor.yy394); } break; case 14: /* createkw ::= CREATE */ {disableLookaside(pParse);} break; case 15: /* ifnotexists ::= */ case 18: /* temp ::= */ yytestcase(yyruleno==18); case 47: /* autoinc ::= */ yytestcase(yyruleno==47); case 62: /* init_deferred_pred_opt ::= */ yytestcase(yyruleno==62); case 72: /* defer_subclause_opt ::= */ yytestcase(yyruleno==72); case 81: /* ifexists ::= */ yytestcase(yyruleno==81); case 98: /* distinct ::= */ yytestcase(yyruleno==98); case 242: /* collate ::= */ yytestcase(yyruleno==242); {yymsp[1].minor.yy394 = 0;} break; case 16: /* ifnotexists ::= IF NOT EXISTS */ {yymsp[-2].minor.yy394 = 1;} break; case 17: /* temp ::= TEMP */ {yymsp[0].minor.yy394 = pParse->db->init.busy==0;} break; case 19: /* create_table_args ::= LP columnlist conslist_opt RP table_option_set */ { sqlite3EndTable(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0,yymsp[0].minor.yy285,0); } break; case 20: /* create_table_args ::= AS select */ { sqlite3EndTable(pParse,0,0,0,yymsp[0].minor.yy47); sqlite3SelectDelete(pParse->db, yymsp[0].minor.yy47); } break; case 21: /* table_option_set ::= */ {yymsp[1].minor.yy285 = 0;} break; case 22: /* table_option_set ::= table_option_set COMMA table_option */ {yylhsminor.yy285 = yymsp[-2].minor.yy285|yymsp[0].minor.yy285;} yymsp[-2].minor.yy285 = yylhsminor.yy285; break; case 23: /* table_option ::= WITHOUT nm */ { if( yymsp[0].minor.yy0.n==5 && sqlite3_strnicmp(yymsp[0].minor.yy0.z,"rowid",5)==0 ){ yymsp[-1].minor.yy285 = TF_WithoutRowid | TF_NoVisibleRowid; }else{ yymsp[-1].minor.yy285 = 0; sqlite3ErrorMsg(pParse, "unknown table option: %.*s", yymsp[0].minor.yy0.n, yymsp[0].minor.yy0.z); } } break; case 24: /* table_option ::= nm */ { if( yymsp[0].minor.yy0.n==6 && sqlite3_strnicmp(yymsp[0].minor.yy0.z,"strict",6)==0 ){ yylhsminor.yy285 = TF_Strict; }else{ yylhsminor.yy285 = 0; sqlite3ErrorMsg(pParse, "unknown table option: %.*s", yymsp[0].minor.yy0.n, yymsp[0].minor.yy0.z); } } yymsp[0].minor.yy285 = yylhsminor.yy285; break; case 25: /* columnname ::= nm typetoken */ {sqlite3AddColumn(pParse,yymsp[-1].minor.yy0,yymsp[0].minor.yy0);} break; case 26: /* typetoken ::= */ case 65: /* conslist_opt ::= */ yytestcase(yyruleno==65); case 104: /* as ::= */ yytestcase(yyruleno==104); {yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.z = 0;} break; case 27: /* typetoken ::= typename LP signed RP */ { yymsp[-3].minor.yy0.n = (int)(&yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-3].minor.yy0.z); } break; case 28: /* typetoken ::= typename LP signed COMMA signed RP */ { yymsp[-5].minor.yy0.n = (int)(&yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-5].minor.yy0.z); } break; case 29: /* typename ::= typename ID|STRING */ {yymsp[-1].minor.yy0.n=yymsp[0].minor.yy0.n+(int)(yymsp[0].minor.yy0.z-yymsp[-1].minor.yy0.z);} break; case 30: /* scanpt ::= */ { assert( yyLookahead!=YYNOCODE ); yymsp[1].minor.yy522 = yyLookaheadToken.z; } break; case 31: /* scantok ::= */ { assert( yyLookahead!=YYNOCODE ); yymsp[1].minor.yy0 = yyLookaheadToken; } break; case 32: /* ccons ::= CONSTRAINT nm */ case 67: /* tcons ::= CONSTRAINT nm */ yytestcase(yyruleno==67); {pParse->constraintName = yymsp[0].minor.yy0;} break; case 33: /* ccons ::= DEFAULT scantok term */ {sqlite3AddDefaultValue(pParse,yymsp[0].minor.yy528,yymsp[-1].minor.yy0.z,&yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]);} break; case 34: /* ccons ::= DEFAULT LP expr RP */ {sqlite3AddDefaultValue(pParse,yymsp[-1].minor.yy528,yymsp[-2].minor.yy0.z+1,yymsp[0].minor.yy0.z);} break; case 35: /* ccons ::= DEFAULT PLUS scantok term */ {sqlite3AddDefaultValue(pParse,yymsp[0].minor.yy528,yymsp[-2].minor.yy0.z,&yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]);} break; case 36: /* ccons ::= DEFAULT MINUS scantok term */ { Expr *p = sqlite3PExpr(pParse, TK_UMINUS, yymsp[0].minor.yy528, 0); sqlite3AddDefaultValue(pParse,p,yymsp[-2].minor.yy0.z,&yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]); } break; case 37: /* ccons ::= DEFAULT scantok ID|INDEXED */ { Expr *p = tokenExpr(pParse, TK_STRING, yymsp[0].minor.yy0); if( p ){ sqlite3ExprIdToTrueFalse(p); testcase( p->op==TK_TRUEFALSE && sqlite3ExprTruthValue(p) ); } sqlite3AddDefaultValue(pParse,p,yymsp[0].minor.yy0.z,yymsp[0].minor.yy0.z+yymsp[0].minor.yy0.n); } break; case 38: /* ccons ::= NOT NULL onconf */ {sqlite3AddNotNull(pParse, yymsp[0].minor.yy394);} break; case 39: /* ccons ::= PRIMARY KEY sortorder onconf autoinc */ {sqlite3AddPrimaryKey(pParse,0,yymsp[-1].minor.yy394,yymsp[0].minor.yy394,yymsp[-2].minor.yy394);} break; case 40: /* ccons ::= UNIQUE onconf */ {sqlite3CreateIndex(pParse,0,0,0,0,yymsp[0].minor.yy394,0,0,0,0, SQLITE_IDXTYPE_UNIQUE);} break; case 41: /* ccons ::= CHECK LP expr RP */ {sqlite3AddCheckConstraint(pParse,yymsp[-1].minor.yy528,yymsp[-2].minor.yy0.z,yymsp[0].minor.yy0.z);} break; case 42: /* ccons ::= REFERENCES nm eidlist_opt refargs */ {sqlite3CreateForeignKey(pParse,0,&yymsp[-2].minor.yy0,yymsp[-1].minor.yy322,yymsp[0].minor.yy394);} break; case 43: /* ccons ::= defer_subclause */ {sqlite3DeferForeignKey(pParse,yymsp[0].minor.yy394);} break; case 44: /* ccons ::= COLLATE ID|STRING */ {sqlite3AddCollateType(pParse, &yymsp[0].minor.yy0);} break; case 45: /* generated ::= LP expr RP */ {sqlite3AddGenerated(pParse,yymsp[-1].minor.yy528,0);} break; case 46: /* generated ::= LP expr RP ID */ {sqlite3AddGenerated(pParse,yymsp[-2].minor.yy528,&yymsp[0].minor.yy0);} break; case 48: /* autoinc ::= AUTOINCR */ {yymsp[0].minor.yy394 = 1;} break; case 49: /* refargs ::= */ { yymsp[1].minor.yy394 = OE_None*0x0101; /* EV: R-19803-45884 */} break; case 50: /* refargs ::= refargs refarg */ { yymsp[-1].minor.yy394 = (yymsp[-1].minor.yy394 & ~yymsp[0].minor.yy231.mask) | yymsp[0].minor.yy231.value; } break; case 51: /* refarg ::= MATCH nm */ { yymsp[-1].minor.yy231.value = 0; yymsp[-1].minor.yy231.mask = 0x000000; } break; case 52: /* refarg ::= ON INSERT refact */ { yymsp[-2].minor.yy231.value = 0; yymsp[-2].minor.yy231.mask = 0x000000; } break; case 53: /* refarg ::= ON DELETE refact */ { yymsp[-2].minor.yy231.value = yymsp[0].minor.yy394; yymsp[-2].minor.yy231.mask = 0x0000ff; } break; case 54: /* refarg ::= ON UPDATE refact */ { yymsp[-2].minor.yy231.value = yymsp[0].minor.yy394<<8; yymsp[-2].minor.yy231.mask = 0x00ff00; } break; case 55: /* refact ::= SET NULL */ { yymsp[-1].minor.yy394 = OE_SetNull; /* EV: R-33326-45252 */} break; case 56: /* refact ::= SET DEFAULT */ { yymsp[-1].minor.yy394 = OE_SetDflt; /* EV: R-33326-45252 */} break; case 57: /* refact ::= CASCADE */ { yymsp[0].minor.yy394 = OE_Cascade; /* EV: R-33326-45252 */} break; case 58: /* refact ::= RESTRICT */ { yymsp[0].minor.yy394 = OE_Restrict; /* EV: R-33326-45252 */} break; case 59: /* refact ::= NO ACTION */ { yymsp[-1].minor.yy394 = OE_None; /* EV: R-33326-45252 */} break; case 60: /* defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ {yymsp[-2].minor.yy394 = 0;} break; case 61: /* defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ case 76: /* orconf ::= OR resolvetype */ yytestcase(yyruleno==76); case 171: /* insert_cmd ::= INSERT orconf */ yytestcase(yyruleno==171); {yymsp[-1].minor.yy394 = yymsp[0].minor.yy394;} break; case 63: /* init_deferred_pred_opt ::= INITIALLY DEFERRED */ case 80: /* ifexists ::= IF EXISTS */ yytestcase(yyruleno==80); case 214: /* between_op ::= NOT BETWEEN */ yytestcase(yyruleno==214); case 217: /* in_op ::= NOT IN */ yytestcase(yyruleno==217); case 243: /* collate ::= COLLATE ID|STRING */ yytestcase(yyruleno==243); {yymsp[-1].minor.yy394 = 1;} break; case 64: /* init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ {yymsp[-1].minor.yy394 = 0;} break; case 66: /* tconscomma ::= COMMA */ {pParse->constraintName.n = 0;} break; case 68: /* tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */ {sqlite3AddPrimaryKey(pParse,yymsp[-3].minor.yy322,yymsp[0].minor.yy394,yymsp[-2].minor.yy394,0);} break; case 69: /* tcons ::= UNIQUE LP sortlist RP onconf */ {sqlite3CreateIndex(pParse,0,0,0,yymsp[-2].minor.yy322,yymsp[0].minor.yy394,0,0,0,0, SQLITE_IDXTYPE_UNIQUE);} break; case 70: /* tcons ::= CHECK LP expr RP onconf */ {sqlite3AddCheckConstraint(pParse,yymsp[-2].minor.yy528,yymsp[-3].minor.yy0.z,yymsp[-1].minor.yy0.z);} break; case 71: /* tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */ { sqlite3CreateForeignKey(pParse, yymsp[-6].minor.yy322, &yymsp[-3].minor.yy0, yymsp[-2].minor.yy322, yymsp[-1].minor.yy394); sqlite3DeferForeignKey(pParse, yymsp[0].minor.yy394); } break; case 73: /* onconf ::= */ case 75: /* orconf ::= */ yytestcase(yyruleno==75); {yymsp[1].minor.yy394 = OE_Default;} break; case 74: /* onconf ::= ON CONFLICT resolvetype */ {yymsp[-2].minor.yy394 = yymsp[0].minor.yy394;} break; case 77: /* resolvetype ::= IGNORE */ {yymsp[0].minor.yy394 = OE_Ignore;} break; case 78: /* resolvetype ::= REPLACE */ case 172: /* insert_cmd ::= REPLACE */ yytestcase(yyruleno==172); {yymsp[0].minor.yy394 = OE_Replace;} break; case 79: /* cmd ::= DROP TABLE ifexists fullname */ { sqlite3DropTable(pParse, yymsp[0].minor.yy131, 0, yymsp[-1].minor.yy394); } break; case 82: /* cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */ { sqlite3CreateView(pParse, &yymsp[-8].minor.yy0, &yymsp[-4].minor.yy0, &yymsp[-3].minor.yy0, yymsp[-2].minor.yy322, yymsp[0].minor.yy47, yymsp[-7].minor.yy394, yymsp[-5].minor.yy394); } break; case 83: /* cmd ::= DROP VIEW ifexists fullname */ { sqlite3DropTable(pParse, yymsp[0].minor.yy131, 1, yymsp[-1].minor.yy394); } break; case 84: /* cmd ::= select */ { SelectDest dest = {SRT_Output, 0, 0, 0, 0, 0, 0}; sqlite3Select(pParse, yymsp[0].minor.yy47, &dest); sqlite3SelectDelete(pParse->db, yymsp[0].minor.yy47); } break; case 85: /* select ::= WITH wqlist selectnowith */ {yymsp[-2].minor.yy47 = attachWithToSelect(pParse,yymsp[0].minor.yy47,yymsp[-1].minor.yy521);} break; case 86: /* select ::= WITH RECURSIVE wqlist selectnowith */ {yymsp[-3].minor.yy47 = attachWithToSelect(pParse,yymsp[0].minor.yy47,yymsp[-1].minor.yy521);} break; case 87: /* select ::= selectnowith */ { Select *p = yymsp[0].minor.yy47; if( p ){ parserDoubleLinkSelect(pParse, p); } yymsp[0].minor.yy47 = p; /*A-overwrites-X*/ } break; case 88: /* selectnowith ::= selectnowith multiselect_op oneselect */ { Select *pRhs = yymsp[0].minor.yy47; Select *pLhs = yymsp[-2].minor.yy47; if( pRhs && pRhs->pPrior ){ SrcList *pFrom; Token x; x.n = 0; parserDoubleLinkSelect(pParse, pRhs); pFrom = sqlite3SrcListAppendFromTerm(pParse,0,0,0,&x,pRhs,0,0); pRhs = sqlite3SelectNew(pParse,0,pFrom,0,0,0,0,0,0); } if( pRhs ){ pRhs->op = (u8)yymsp[-1].minor.yy394; pRhs->pPrior = pLhs; if( ALWAYS(pLhs) ) pLhs->selFlags &= ~SF_MultiValue; pRhs->selFlags &= ~SF_MultiValue; if( yymsp[-1].minor.yy394!=TK_ALL ) pParse->hasCompound = 1; }else{ sqlite3SelectDelete(pParse->db, pLhs); } yymsp[-2].minor.yy47 = pRhs; } break; case 89: /* multiselect_op ::= UNION */ case 91: /* multiselect_op ::= EXCEPT|INTERSECT */ yytestcase(yyruleno==91); {yymsp[0].minor.yy394 = yymsp[0].major; /*A-overwrites-OP*/} break; case 90: /* multiselect_op ::= UNION ALL */ {yymsp[-1].minor.yy394 = TK_ALL;} break; case 92: /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ { yymsp[-8].minor.yy47 = sqlite3SelectNew(pParse,yymsp[-6].minor.yy322,yymsp[-5].minor.yy131,yymsp[-4].minor.yy528,yymsp[-3].minor.yy322,yymsp[-2].minor.yy528,yymsp[-1].minor.yy322,yymsp[-7].minor.yy394,yymsp[0].minor.yy528); } break; case 93: /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */ { yymsp[-9].minor.yy47 = sqlite3SelectNew(pParse,yymsp[-7].minor.yy322,yymsp[-6].minor.yy131,yymsp[-5].minor.yy528,yymsp[-4].minor.yy322,yymsp[-3].minor.yy528,yymsp[-1].minor.yy322,yymsp[-8].minor.yy394,yymsp[0].minor.yy528); if( yymsp[-9].minor.yy47 ){ yymsp[-9].minor.yy47->pWinDefn = yymsp[-2].minor.yy41; }else{ sqlite3WindowListDelete(pParse->db, yymsp[-2].minor.yy41); } } break; case 94: /* values ::= VALUES LP nexprlist RP */ { yymsp[-3].minor.yy47 = sqlite3SelectNew(pParse,yymsp[-1].minor.yy322,0,0,0,0,0,SF_Values,0); } break; case 95: /* values ::= values COMMA LP nexprlist RP */ { Select *pRight, *pLeft = yymsp[-4].minor.yy47; pRight = sqlite3SelectNew(pParse,yymsp[-1].minor.yy322,0,0,0,0,0,SF_Values|SF_MultiValue,0); if( ALWAYS(pLeft) ) pLeft->selFlags &= ~SF_MultiValue; if( pRight ){ pRight->op = TK_ALL; pRight->pPrior = pLeft; yymsp[-4].minor.yy47 = pRight; }else{ yymsp[-4].minor.yy47 = pLeft; } } break; case 96: /* distinct ::= DISTINCT */ {yymsp[0].minor.yy394 = SF_Distinct;} break; case 97: /* distinct ::= ALL */ {yymsp[0].minor.yy394 = SF_All;} break; case 99: /* sclp ::= */ case 132: /* orderby_opt ::= */ yytestcase(yyruleno==132); case 142: /* groupby_opt ::= */ yytestcase(yyruleno==142); case 230: /* exprlist ::= */ yytestcase(yyruleno==230); case 233: /* paren_exprlist ::= */ yytestcase(yyruleno==233); case 238: /* eidlist_opt ::= */ yytestcase(yyruleno==238); {yymsp[1].minor.yy322 = 0;} break; case 100: /* selcollist ::= sclp scanpt expr scanpt as */ { yymsp[-4].minor.yy322 = sqlite3ExprListAppend(pParse, yymsp[-4].minor.yy322, yymsp[-2].minor.yy528); if( yymsp[0].minor.yy0.n>0 ) sqlite3ExprListSetName(pParse, yymsp[-4].minor.yy322, &yymsp[0].minor.yy0, 1); sqlite3ExprListSetSpan(pParse,yymsp[-4].minor.yy322,yymsp[-3].minor.yy522,yymsp[-1].minor.yy522); } break; case 101: /* selcollist ::= sclp scanpt STAR */ { Expr *p = sqlite3Expr(pParse->db, TK_ASTERISK, 0); yymsp[-2].minor.yy322 = sqlite3ExprListAppend(pParse, yymsp[-2].minor.yy322, p); } break; case 102: /* selcollist ::= sclp scanpt nm DOT STAR */ { Expr *pRight = sqlite3PExpr(pParse, TK_ASTERISK, 0, 0); Expr *pLeft = tokenExpr(pParse, TK_ID, yymsp[-2].minor.yy0); Expr *pDot = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight); yymsp[-4].minor.yy322 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy322, pDot); } break; case 103: /* as ::= AS nm */ case 114: /* dbnm ::= DOT nm */ yytestcase(yyruleno==114); case 254: /* plus_num ::= PLUS INTEGER|FLOAT */ yytestcase(yyruleno==254); case 255: /* minus_num ::= MINUS INTEGER|FLOAT */ yytestcase(yyruleno==255); {yymsp[-1].minor.yy0 = yymsp[0].minor.yy0;} break; case 105: /* from ::= */ case 108: /* stl_prefix ::= */ yytestcase(yyruleno==108); {yymsp[1].minor.yy131 = 0;} break; case 106: /* from ::= FROM seltablist */ { yymsp[-1].minor.yy131 = yymsp[0].minor.yy131; sqlite3SrcListShiftJoinType(yymsp[-1].minor.yy131); } break; case 107: /* stl_prefix ::= seltablist joinop */ { if( ALWAYS(yymsp[-1].minor.yy131 && yymsp[-1].minor.yy131->nSrc>0) ) yymsp[-1].minor.yy131->a[yymsp[-1].minor.yy131->nSrc-1].fg.jointype = (u8)yymsp[0].minor.yy394; } break; case 109: /* seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ { yymsp[-6].minor.yy131 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy131,&yymsp[-5].minor.yy0,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,0,yymsp[-1].minor.yy528,yymsp[0].minor.yy254); sqlite3SrcListIndexedBy(pParse, yymsp[-6].minor.yy131, &yymsp[-2].minor.yy0); } break; case 110: /* seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt */ { yymsp[-8].minor.yy131 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-8].minor.yy131,&yymsp[-7].minor.yy0,&yymsp[-6].minor.yy0,&yymsp[-2].minor.yy0,0,yymsp[-1].minor.yy528,yymsp[0].minor.yy254); sqlite3SrcListFuncArgs(pParse, yymsp[-8].minor.yy131, yymsp[-4].minor.yy322); } break; case 111: /* seltablist ::= stl_prefix LP select RP as on_opt using_opt */ { yymsp[-6].minor.yy131 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy131,0,0,&yymsp[-2].minor.yy0,yymsp[-4].minor.yy47,yymsp[-1].minor.yy528,yymsp[0].minor.yy254); } break; case 112: /* seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ { if( yymsp[-6].minor.yy131==0 && yymsp[-2].minor.yy0.n==0 && yymsp[-1].minor.yy528==0 && yymsp[0].minor.yy254==0 ){ yymsp[-6].minor.yy131 = yymsp[-4].minor.yy131; }else if( yymsp[-4].minor.yy131->nSrc==1 ){ yymsp[-6].minor.yy131 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy131,0,0,&yymsp[-2].minor.yy0,0,yymsp[-1].minor.yy528,yymsp[0].minor.yy254); if( yymsp[-6].minor.yy131 ){ SrcItem *pNew = &yymsp[-6].minor.yy131->a[yymsp[-6].minor.yy131->nSrc-1]; SrcItem *pOld = yymsp[-4].minor.yy131->a; pNew->zName = pOld->zName; pNew->zDatabase = pOld->zDatabase; pNew->pSelect = pOld->pSelect; if( pOld->fg.isTabFunc ){ pNew->u1.pFuncArg = pOld->u1.pFuncArg; pOld->u1.pFuncArg = 0; pOld->fg.isTabFunc = 0; pNew->fg.isTabFunc = 1; } pOld->zName = pOld->zDatabase = 0; pOld->pSelect = 0; } sqlite3SrcListDelete(pParse->db, yymsp[-4].minor.yy131); }else{ Select *pSubquery; sqlite3SrcListShiftJoinType(yymsp[-4].minor.yy131); pSubquery = sqlite3SelectNew(pParse,0,yymsp[-4].minor.yy131,0,0,0,0,SF_NestedFrom,0); yymsp[-6].minor.yy131 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy131,0,0,&yymsp[-2].minor.yy0,pSubquery,yymsp[-1].minor.yy528,yymsp[0].minor.yy254); } } break; case 113: /* dbnm ::= */ case 127: /* indexed_opt ::= */ yytestcase(yyruleno==127); {yymsp[1].minor.yy0.z=0; yymsp[1].minor.yy0.n=0;} break; case 115: /* fullname ::= nm */ { yylhsminor.yy131 = sqlite3SrcListAppend(pParse,0,&yymsp[0].minor.yy0,0); if( IN_RENAME_OBJECT && yylhsminor.yy131 ) sqlite3RenameTokenMap(pParse, yylhsminor.yy131->a[0].zName, &yymsp[0].minor.yy0); } yymsp[0].minor.yy131 = yylhsminor.yy131; break; case 116: /* fullname ::= nm DOT nm */ { yylhsminor.yy131 = sqlite3SrcListAppend(pParse,0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0); if( IN_RENAME_OBJECT && yylhsminor.yy131 ) sqlite3RenameTokenMap(pParse, yylhsminor.yy131->a[0].zName, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy131 = yylhsminor.yy131; break; case 117: /* xfullname ::= nm */ {yymsp[0].minor.yy131 = sqlite3SrcListAppend(pParse,0,&yymsp[0].minor.yy0,0); /*A-overwrites-X*/} break; case 118: /* xfullname ::= nm DOT nm */ {yymsp[-2].minor.yy131 = sqlite3SrcListAppend(pParse,0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0); /*A-overwrites-X*/} break; case 119: /* xfullname ::= nm DOT nm AS nm */ { yymsp[-4].minor.yy131 = sqlite3SrcListAppend(pParse,0,&yymsp[-4].minor.yy0,&yymsp[-2].minor.yy0); /*A-overwrites-X*/ if( yymsp[-4].minor.yy131 ) yymsp[-4].minor.yy131->a[0].zAlias = sqlite3NameFromToken(pParse->db, &yymsp[0].minor.yy0); } break; case 120: /* xfullname ::= nm AS nm */ { yymsp[-2].minor.yy131 = sqlite3SrcListAppend(pParse,0,&yymsp[-2].minor.yy0,0); /*A-overwrites-X*/ if( yymsp[-2].minor.yy131 ) yymsp[-2].minor.yy131->a[0].zAlias = sqlite3NameFromToken(pParse->db, &yymsp[0].minor.yy0); } break; case 121: /* joinop ::= COMMA|JOIN */ { yymsp[0].minor.yy394 = JT_INNER; } break; case 122: /* joinop ::= JOIN_KW JOIN */ {yymsp[-1].minor.yy394 = sqlite3JoinType(pParse,&yymsp[-1].minor.yy0,0,0); /*X-overwrites-A*/} break; case 123: /* joinop ::= JOIN_KW nm JOIN */ {yymsp[-2].minor.yy394 = sqlite3JoinType(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0,0); /*X-overwrites-A*/} break; case 124: /* joinop ::= JOIN_KW nm nm JOIN */ {yymsp[-3].minor.yy394 = sqlite3JoinType(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0);/*X-overwrites-A*/} break; case 125: /* on_opt ::= ON expr */ case 145: /* having_opt ::= HAVING expr */ yytestcase(yyruleno==145); case 152: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==152); case 154: /* where_opt_ret ::= WHERE expr */ yytestcase(yyruleno==154); case 226: /* case_else ::= ELSE expr */ yytestcase(yyruleno==226); case 247: /* vinto ::= INTO expr */ yytestcase(yyruleno==247); {yymsp[-1].minor.yy528 = yymsp[0].minor.yy528;} break; case 126: /* on_opt ::= */ case 144: /* having_opt ::= */ yytestcase(yyruleno==144); case 146: /* limit_opt ::= */ yytestcase(yyruleno==146); case 151: /* where_opt ::= */ yytestcase(yyruleno==151); case 153: /* where_opt_ret ::= */ yytestcase(yyruleno==153); case 227: /* case_else ::= */ yytestcase(yyruleno==227); case 229: /* case_operand ::= */ yytestcase(yyruleno==229); case 248: /* vinto ::= */ yytestcase(yyruleno==248); {yymsp[1].minor.yy528 = 0;} break; case 128: /* indexed_opt ::= INDEXED BY nm */ {yymsp[-2].minor.yy0 = yymsp[0].minor.yy0;} break; case 129: /* indexed_opt ::= NOT INDEXED */ {yymsp[-1].minor.yy0.z=0; yymsp[-1].minor.yy0.n=1;} break; case 130: /* using_opt ::= USING LP idlist RP */ {yymsp[-3].minor.yy254 = yymsp[-1].minor.yy254;} break; case 131: /* using_opt ::= */ case 173: /* idlist_opt ::= */ yytestcase(yyruleno==173); {yymsp[1].minor.yy254 = 0;} break; case 133: /* orderby_opt ::= ORDER BY sortlist */ case 143: /* groupby_opt ::= GROUP BY nexprlist */ yytestcase(yyruleno==143); {yymsp[-2].minor.yy322 = yymsp[0].minor.yy322;} break; case 134: /* sortlist ::= sortlist COMMA expr sortorder nulls */ { yymsp[-4].minor.yy322 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy322,yymsp[-2].minor.yy528); sqlite3ExprListSetSortOrder(yymsp[-4].minor.yy322,yymsp[-1].minor.yy394,yymsp[0].minor.yy394); } break; case 135: /* sortlist ::= expr sortorder nulls */ { yymsp[-2].minor.yy322 = sqlite3ExprListAppend(pParse,0,yymsp[-2].minor.yy528); /*A-overwrites-Y*/ sqlite3ExprListSetSortOrder(yymsp[-2].minor.yy322,yymsp[-1].minor.yy394,yymsp[0].minor.yy394); } break; case 136: /* sortorder ::= ASC */ {yymsp[0].minor.yy394 = SQLITE_SO_ASC;} break; case 137: /* sortorder ::= DESC */ {yymsp[0].minor.yy394 = SQLITE_SO_DESC;} break; case 138: /* sortorder ::= */ case 141: /* nulls ::= */ yytestcase(yyruleno==141); {yymsp[1].minor.yy394 = SQLITE_SO_UNDEFINED;} break; case 139: /* nulls ::= NULLS FIRST */ {yymsp[-1].minor.yy394 = SQLITE_SO_ASC;} break; case 140: /* nulls ::= NULLS LAST */ {yymsp[-1].minor.yy394 = SQLITE_SO_DESC;} break; case 147: /* limit_opt ::= LIMIT expr */ {yymsp[-1].minor.yy528 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[0].minor.yy528,0);} break; case 148: /* limit_opt ::= LIMIT expr OFFSET expr */ {yymsp[-3].minor.yy528 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[-2].minor.yy528,yymsp[0].minor.yy528);} break; case 149: /* limit_opt ::= LIMIT expr COMMA expr */ {yymsp[-3].minor.yy528 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[0].minor.yy528,yymsp[-2].minor.yy528);} break; case 150: /* cmd ::= with DELETE FROM xfullname indexed_opt where_opt_ret */ { sqlite3SrcListIndexedBy(pParse, yymsp[-2].minor.yy131, &yymsp[-1].minor.yy0); sqlite3DeleteFrom(pParse,yymsp[-2].minor.yy131,yymsp[0].minor.yy528,0,0); } break; case 155: /* where_opt_ret ::= RETURNING selcollist */ {sqlite3AddReturning(pParse,yymsp[0].minor.yy322); yymsp[-1].minor.yy528 = 0;} break; case 156: /* where_opt_ret ::= WHERE expr RETURNING selcollist */ {sqlite3AddReturning(pParse,yymsp[0].minor.yy322); yymsp[-3].minor.yy528 = yymsp[-2].minor.yy528;} break; case 157: /* cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt_ret */ { sqlite3SrcListIndexedBy(pParse, yymsp[-5].minor.yy131, &yymsp[-4].minor.yy0); sqlite3ExprListCheckLength(pParse,yymsp[-2].minor.yy322,"set list"); yymsp[-5].minor.yy131 = sqlite3SrcListAppendList(pParse, yymsp[-5].minor.yy131, yymsp[-1].minor.yy131); sqlite3Update(pParse,yymsp[-5].minor.yy131,yymsp[-2].minor.yy322,yymsp[0].minor.yy528,yymsp[-6].minor.yy394,0,0,0); } break; case 158: /* setlist ::= setlist COMMA nm EQ expr */ { yymsp[-4].minor.yy322 = sqlite3ExprListAppend(pParse, yymsp[-4].minor.yy322, yymsp[0].minor.yy528); sqlite3ExprListSetName(pParse, yymsp[-4].minor.yy322, &yymsp[-2].minor.yy0, 1); } break; case 159: /* setlist ::= setlist COMMA LP idlist RP EQ expr */ { yymsp[-6].minor.yy322 = sqlite3ExprListAppendVector(pParse, yymsp[-6].minor.yy322, yymsp[-3].minor.yy254, yymsp[0].minor.yy528); } break; case 160: /* setlist ::= nm EQ expr */ { yylhsminor.yy322 = sqlite3ExprListAppend(pParse, 0, yymsp[0].minor.yy528); sqlite3ExprListSetName(pParse, yylhsminor.yy322, &yymsp[-2].minor.yy0, 1); } yymsp[-2].minor.yy322 = yylhsminor.yy322; break; case 161: /* setlist ::= LP idlist RP EQ expr */ { yymsp[-4].minor.yy322 = sqlite3ExprListAppendVector(pParse, 0, yymsp[-3].minor.yy254, yymsp[0].minor.yy528); } break; case 162: /* cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ { sqlite3Insert(pParse, yymsp[-3].minor.yy131, yymsp[-1].minor.yy47, yymsp[-2].minor.yy254, yymsp[-5].minor.yy394, yymsp[0].minor.yy444); } break; case 163: /* cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES returning */ { sqlite3Insert(pParse, yymsp[-4].minor.yy131, 0, yymsp[-3].minor.yy254, yymsp[-6].minor.yy394, 0); } break; case 164: /* upsert ::= */ { yymsp[1].minor.yy444 = 0; } break; case 165: /* upsert ::= RETURNING selcollist */ { yymsp[-1].minor.yy444 = 0; sqlite3AddReturning(pParse,yymsp[0].minor.yy322); } break; case 166: /* upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt upsert */ { yymsp[-11].minor.yy444 = sqlite3UpsertNew(pParse->db,yymsp[-8].minor.yy322,yymsp[-6].minor.yy528,yymsp[-2].minor.yy322,yymsp[-1].minor.yy528,yymsp[0].minor.yy444);} break; case 167: /* upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING upsert */ { yymsp[-8].minor.yy444 = sqlite3UpsertNew(pParse->db,yymsp[-5].minor.yy322,yymsp[-3].minor.yy528,0,0,yymsp[0].minor.yy444); } break; case 168: /* upsert ::= ON CONFLICT DO NOTHING returning */ { yymsp[-4].minor.yy444 = sqlite3UpsertNew(pParse->db,0,0,0,0,0); } break; case 169: /* upsert ::= ON CONFLICT DO UPDATE SET setlist where_opt returning */ { yymsp[-7].minor.yy444 = sqlite3UpsertNew(pParse->db,0,0,yymsp[-2].minor.yy322,yymsp[-1].minor.yy528,0);} break; case 170: /* returning ::= RETURNING selcollist */ {sqlite3AddReturning(pParse,yymsp[0].minor.yy322);} break; case 174: /* idlist_opt ::= LP idlist RP */ {yymsp[-2].minor.yy254 = yymsp[-1].minor.yy254;} break; case 175: /* idlist ::= idlist COMMA nm */ {yymsp[-2].minor.yy254 = sqlite3IdListAppend(pParse,yymsp[-2].minor.yy254,&yymsp[0].minor.yy0);} break; case 176: /* idlist ::= nm */ {yymsp[0].minor.yy254 = sqlite3IdListAppend(pParse,0,&yymsp[0].minor.yy0); /*A-overwrites-Y*/} break; case 177: /* expr ::= LP expr RP */ {yymsp[-2].minor.yy528 = yymsp[-1].minor.yy528;} break; case 178: /* expr ::= ID|INDEXED */ case 179: /* expr ::= JOIN_KW */ yytestcase(yyruleno==179); {yymsp[0].minor.yy528=tokenExpr(pParse,TK_ID,yymsp[0].minor.yy0); /*A-overwrites-X*/} break; case 180: /* expr ::= nm DOT nm */ { Expr *temp1 = tokenExpr(pParse,TK_ID,yymsp[-2].minor.yy0); Expr *temp2 = tokenExpr(pParse,TK_ID,yymsp[0].minor.yy0); yylhsminor.yy528 = sqlite3PExpr(pParse, TK_DOT, temp1, temp2); } yymsp[-2].minor.yy528 = yylhsminor.yy528; break; case 181: /* expr ::= nm DOT nm DOT nm */ { Expr *temp1 = tokenExpr(pParse,TK_ID,yymsp[-4].minor.yy0); Expr *temp2 = tokenExpr(pParse,TK_ID,yymsp[-2].minor.yy0); Expr *temp3 = tokenExpr(pParse,TK_ID,yymsp[0].minor.yy0); Expr *temp4 = sqlite3PExpr(pParse, TK_DOT, temp2, temp3); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, 0, temp1); } yylhsminor.yy528 = sqlite3PExpr(pParse, TK_DOT, temp1, temp4); } yymsp[-4].minor.yy528 = yylhsminor.yy528; break; case 182: /* term ::= NULL|FLOAT|BLOB */ case 183: /* term ::= STRING */ yytestcase(yyruleno==183); {yymsp[0].minor.yy528=tokenExpr(pParse,yymsp[0].major,yymsp[0].minor.yy0); /*A-overwrites-X*/} break; case 184: /* term ::= INTEGER */ { yylhsminor.yy528 = sqlite3ExprAlloc(pParse->db, TK_INTEGER, &yymsp[0].minor.yy0, 1); if( yylhsminor.yy528 ) yylhsminor.yy528->w.iOfst = (int)(yymsp[0].minor.yy0.z - pParse->zTail); } yymsp[0].minor.yy528 = yylhsminor.yy528; break; case 185: /* expr ::= VARIABLE */ { if( !(yymsp[0].minor.yy0.z[0]=='#' && sqlite3Isdigit(yymsp[0].minor.yy0.z[1])) ){ u32 n = yymsp[0].minor.yy0.n; yymsp[0].minor.yy528 = tokenExpr(pParse, TK_VARIABLE, yymsp[0].minor.yy0); sqlite3ExprAssignVarNumber(pParse, yymsp[0].minor.yy528, n); }else{ /* When doing a nested parse, one can include terms in an expression ** that look like this: #1 #2 ... These terms refer to registers ** in the virtual machine. #N is the N-th register. */ Token t = yymsp[0].minor.yy0; /*A-overwrites-X*/ assert( t.n>=2 ); if( pParse->nested==0 ){ sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &t); yymsp[0].minor.yy528 = 0; }else{ yymsp[0].minor.yy528 = sqlite3PExpr(pParse, TK_REGISTER, 0, 0); if( yymsp[0].minor.yy528 ) sqlite3GetInt32(&t.z[1], &yymsp[0].minor.yy528->iTable); } } } break; case 186: /* expr ::= expr COLLATE ID|STRING */ { yymsp[-2].minor.yy528 = sqlite3ExprAddCollateToken(pParse, yymsp[-2].minor.yy528, &yymsp[0].minor.yy0, 1); } break; case 187: /* expr ::= CAST LP expr AS typetoken RP */ { yymsp[-5].minor.yy528 = sqlite3ExprAlloc(pParse->db, TK_CAST, &yymsp[-1].minor.yy0, 1); sqlite3ExprAttachSubtrees(pParse->db, yymsp[-5].minor.yy528, yymsp[-3].minor.yy528, 0); } break; case 188: /* expr ::= ID|INDEXED LP distinct exprlist RP */ { yylhsminor.yy528 = sqlite3ExprFunction(pParse, yymsp[-1].minor.yy322, &yymsp[-4].minor.yy0, yymsp[-2].minor.yy394); } yymsp[-4].minor.yy528 = yylhsminor.yy528; break; case 189: /* expr ::= ID|INDEXED LP STAR RP */ { yylhsminor.yy528 = sqlite3ExprFunction(pParse, 0, &yymsp[-3].minor.yy0, 0); } yymsp[-3].minor.yy528 = yylhsminor.yy528; break; case 190: /* expr ::= ID|INDEXED LP distinct exprlist RP filter_over */ { yylhsminor.yy528 = sqlite3ExprFunction(pParse, yymsp[-2].minor.yy322, &yymsp[-5].minor.yy0, yymsp[-3].minor.yy394); sqlite3WindowAttach(pParse, yylhsminor.yy528, yymsp[0].minor.yy41); } yymsp[-5].minor.yy528 = yylhsminor.yy528; break; case 191: /* expr ::= ID|INDEXED LP STAR RP filter_over */ { yylhsminor.yy528 = sqlite3ExprFunction(pParse, 0, &yymsp[-4].minor.yy0, 0); sqlite3WindowAttach(pParse, yylhsminor.yy528, yymsp[0].minor.yy41); } yymsp[-4].minor.yy528 = yylhsminor.yy528; break; case 192: /* term ::= CTIME_KW */ { yylhsminor.yy528 = sqlite3ExprFunction(pParse, 0, &yymsp[0].minor.yy0, 0); } yymsp[0].minor.yy528 = yylhsminor.yy528; break; case 193: /* expr ::= LP nexprlist COMMA expr RP */ { ExprList *pList = sqlite3ExprListAppend(pParse, yymsp[-3].minor.yy322, yymsp[-1].minor.yy528); yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_VECTOR, 0, 0); if( yymsp[-4].minor.yy528 ){ yymsp[-4].minor.yy528->x.pList = pList; if( ALWAYS(pList->nExpr) ){ yymsp[-4].minor.yy528->flags |= pList->a[0].pExpr->flags & EP_Propagate; } }else{ sqlite3ExprListDelete(pParse->db, pList); } } break; case 194: /* expr ::= expr AND expr */ {yymsp[-2].minor.yy528=sqlite3ExprAnd(pParse,yymsp[-2].minor.yy528,yymsp[0].minor.yy528);} break; case 195: /* expr ::= expr OR expr */ case 196: /* expr ::= expr LT|GT|GE|LE expr */ yytestcase(yyruleno==196); case 197: /* expr ::= expr EQ|NE expr */ yytestcase(yyruleno==197); case 198: /* expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ yytestcase(yyruleno==198); case 199: /* expr ::= expr PLUS|MINUS expr */ yytestcase(yyruleno==199); case 200: /* expr ::= expr STAR|SLASH|REM expr */ yytestcase(yyruleno==200); case 201: /* expr ::= expr CONCAT expr */ yytestcase(yyruleno==201); {yymsp[-2].minor.yy528=sqlite3PExpr(pParse,yymsp[-1].major,yymsp[-2].minor.yy528,yymsp[0].minor.yy528);} break; case 202: /* likeop ::= NOT LIKE_KW|MATCH */ {yymsp[-1].minor.yy0=yymsp[0].minor.yy0; yymsp[-1].minor.yy0.n|=0x80000000; /*yymsp[-1].minor.yy0-overwrite-yymsp[0].minor.yy0*/} break; case 203: /* expr ::= expr likeop expr */ { ExprList *pList; int bNot = yymsp[-1].minor.yy0.n & 0x80000000; yymsp[-1].minor.yy0.n &= 0x7fffffff; pList = sqlite3ExprListAppend(pParse,0, yymsp[0].minor.yy528); pList = sqlite3ExprListAppend(pParse,pList, yymsp[-2].minor.yy528); yymsp[-2].minor.yy528 = sqlite3ExprFunction(pParse, pList, &yymsp[-1].minor.yy0, 0); if( bNot ) yymsp[-2].minor.yy528 = sqlite3PExpr(pParse, TK_NOT, yymsp[-2].minor.yy528, 0); if( yymsp[-2].minor.yy528 ) yymsp[-2].minor.yy528->flags |= EP_InfixFunc; } break; case 204: /* expr ::= expr likeop expr ESCAPE expr */ { ExprList *pList; int bNot = yymsp[-3].minor.yy0.n & 0x80000000; yymsp[-3].minor.yy0.n &= 0x7fffffff; pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy528); pList = sqlite3ExprListAppend(pParse,pList, yymsp[-4].minor.yy528); pList = sqlite3ExprListAppend(pParse,pList, yymsp[0].minor.yy528); yymsp[-4].minor.yy528 = sqlite3ExprFunction(pParse, pList, &yymsp[-3].minor.yy0, 0); if( bNot ) yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy528, 0); if( yymsp[-4].minor.yy528 ) yymsp[-4].minor.yy528->flags |= EP_InfixFunc; } break; case 205: /* expr ::= expr ISNULL|NOTNULL */ {yymsp[-1].minor.yy528 = sqlite3PExpr(pParse,yymsp[0].major,yymsp[-1].minor.yy528,0);} break; case 206: /* expr ::= expr NOT NULL */ {yymsp[-2].minor.yy528 = sqlite3PExpr(pParse,TK_NOTNULL,yymsp[-2].minor.yy528,0);} break; case 207: /* expr ::= expr IS expr */ { yymsp[-2].minor.yy528 = sqlite3PExpr(pParse,TK_IS,yymsp[-2].minor.yy528,yymsp[0].minor.yy528); binaryToUnaryIfNull(pParse, yymsp[0].minor.yy528, yymsp[-2].minor.yy528, TK_ISNULL); } break; case 208: /* expr ::= expr IS NOT expr */ { yymsp[-3].minor.yy528 = sqlite3PExpr(pParse,TK_ISNOT,yymsp[-3].minor.yy528,yymsp[0].minor.yy528); binaryToUnaryIfNull(pParse, yymsp[0].minor.yy528, yymsp[-3].minor.yy528, TK_NOTNULL); } break; case 209: /* expr ::= NOT expr */ case 210: /* expr ::= BITNOT expr */ yytestcase(yyruleno==210); {yymsp[-1].minor.yy528 = sqlite3PExpr(pParse, yymsp[-1].major, yymsp[0].minor.yy528, 0);/*A-overwrites-B*/} break; case 211: /* expr ::= PLUS|MINUS expr */ { yymsp[-1].minor.yy528 = sqlite3PExpr(pParse, yymsp[-1].major==TK_PLUS ? TK_UPLUS : TK_UMINUS, yymsp[0].minor.yy528, 0); /*A-overwrites-B*/ } break; case 212: /* expr ::= expr PTR expr */ { ExprList *pList = sqlite3ExprListAppend(pParse, 0, yymsp[-2].minor.yy528); pList = sqlite3ExprListAppend(pParse, pList, yymsp[0].minor.yy528); yylhsminor.yy528 = sqlite3ExprFunction(pParse, pList, &yymsp[-1].minor.yy0, 0); } yymsp[-2].minor.yy528 = yylhsminor.yy528; break; case 213: /* between_op ::= BETWEEN */ case 216: /* in_op ::= IN */ yytestcase(yyruleno==216); {yymsp[0].minor.yy394 = 0;} break; case 215: /* expr ::= expr between_op expr AND expr */ { ExprList *pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy528); pList = sqlite3ExprListAppend(pParse,pList, yymsp[0].minor.yy528); yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_BETWEEN, yymsp[-4].minor.yy528, 0); if( yymsp[-4].minor.yy528 ){ yymsp[-4].minor.yy528->x.pList = pList; }else{ sqlite3ExprListDelete(pParse->db, pList); } if( yymsp[-3].minor.yy394 ) yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy528, 0); } break; case 218: /* expr ::= expr in_op LP exprlist RP */ { if( yymsp[-1].minor.yy322==0 ){ /* Expressions of the form ** ** expr1 IN () ** expr1 NOT IN () ** ** simplify to constants 0 (false) and 1 (true), respectively, ** regardless of the value of expr1. */ sqlite3ExprUnmapAndDelete(pParse, yymsp[-4].minor.yy528); yymsp[-4].minor.yy528 = sqlite3Expr(pParse->db, TK_INTEGER, yymsp[-3].minor.yy394 ? "1" : "0"); }else{ Expr *pRHS = yymsp[-1].minor.yy322->a[0].pExpr; if( yymsp[-1].minor.yy322->nExpr==1 && sqlite3ExprIsConstant(pRHS) && yymsp[-4].minor.yy528->op!=TK_VECTOR ){ yymsp[-1].minor.yy322->a[0].pExpr = 0; sqlite3ExprListDelete(pParse->db, yymsp[-1].minor.yy322); pRHS = sqlite3PExpr(pParse, TK_UPLUS, pRHS, 0); yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_EQ, yymsp[-4].minor.yy528, pRHS); }else{ yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy528, 0); if( yymsp[-4].minor.yy528==0 ){ sqlite3ExprListDelete(pParse->db, yymsp[-1].minor.yy322); }else if( yymsp[-4].minor.yy528->pLeft->op==TK_VECTOR ){ int nExpr = yymsp[-4].minor.yy528->pLeft->x.pList->nExpr; Select *pSelectRHS = sqlite3ExprListToValues(pParse, nExpr, yymsp[-1].minor.yy322); if( pSelectRHS ){ parserDoubleLinkSelect(pParse, pSelectRHS); sqlite3PExprAddSelect(pParse, yymsp[-4].minor.yy528, pSelectRHS); } }else{ yymsp[-4].minor.yy528->x.pList = yymsp[-1].minor.yy322; sqlite3ExprSetHeightAndFlags(pParse, yymsp[-4].minor.yy528); } } if( yymsp[-3].minor.yy394 ) yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy528, 0); } } break; case 219: /* expr ::= LP select RP */ { yymsp[-2].minor.yy528 = sqlite3PExpr(pParse, TK_SELECT, 0, 0); sqlite3PExprAddSelect(pParse, yymsp[-2].minor.yy528, yymsp[-1].minor.yy47); } break; case 220: /* expr ::= expr in_op LP select RP */ { yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy528, 0); sqlite3PExprAddSelect(pParse, yymsp[-4].minor.yy528, yymsp[-1].minor.yy47); if( yymsp[-3].minor.yy394 ) yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy528, 0); } break; case 221: /* expr ::= expr in_op nm dbnm paren_exprlist */ { SrcList *pSrc = sqlite3SrcListAppend(pParse, 0,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0); Select *pSelect = sqlite3SelectNew(pParse, 0,pSrc,0,0,0,0,0,0); if( yymsp[0].minor.yy322 ) sqlite3SrcListFuncArgs(pParse, pSelect ? pSrc : 0, yymsp[0].minor.yy322); yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy528, 0); sqlite3PExprAddSelect(pParse, yymsp[-4].minor.yy528, pSelect); if( yymsp[-3].minor.yy394 ) yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy528, 0); } break; case 222: /* expr ::= EXISTS LP select RP */ { Expr *p; p = yymsp[-3].minor.yy528 = sqlite3PExpr(pParse, TK_EXISTS, 0, 0); sqlite3PExprAddSelect(pParse, p, yymsp[-1].minor.yy47); } break; case 223: /* expr ::= CASE case_operand case_exprlist case_else END */ { yymsp[-4].minor.yy528 = sqlite3PExpr(pParse, TK_CASE, yymsp[-3].minor.yy528, 0); if( yymsp[-4].minor.yy528 ){ yymsp[-4].minor.yy528->x.pList = yymsp[-1].minor.yy528 ? sqlite3ExprListAppend(pParse,yymsp[-2].minor.yy322,yymsp[-1].minor.yy528) : yymsp[-2].minor.yy322; sqlite3ExprSetHeightAndFlags(pParse, yymsp[-4].minor.yy528); }else{ sqlite3ExprListDelete(pParse->db, yymsp[-2].minor.yy322); sqlite3ExprDelete(pParse->db, yymsp[-1].minor.yy528); } } break; case 224: /* case_exprlist ::= case_exprlist WHEN expr THEN expr */ { yymsp[-4].minor.yy322 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy322, yymsp[-2].minor.yy528); yymsp[-4].minor.yy322 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy322, yymsp[0].minor.yy528); } break; case 225: /* case_exprlist ::= WHEN expr THEN expr */ { yymsp[-3].minor.yy322 = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy528); yymsp[-3].minor.yy322 = sqlite3ExprListAppend(pParse,yymsp[-3].minor.yy322, yymsp[0].minor.yy528); } break; case 228: /* case_operand ::= expr */ {yymsp[0].minor.yy528 = yymsp[0].minor.yy528; /*A-overwrites-X*/} break; case 231: /* nexprlist ::= nexprlist COMMA expr */ {yymsp[-2].minor.yy322 = sqlite3ExprListAppend(pParse,yymsp[-2].minor.yy322,yymsp[0].minor.yy528);} break; case 232: /* nexprlist ::= expr */ {yymsp[0].minor.yy322 = sqlite3ExprListAppend(pParse,0,yymsp[0].minor.yy528); /*A-overwrites-Y*/} break; case 234: /* paren_exprlist ::= LP exprlist RP */ case 239: /* eidlist_opt ::= LP eidlist RP */ yytestcase(yyruleno==239); {yymsp[-2].minor.yy322 = yymsp[-1].minor.yy322;} break; case 235: /* cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */ { sqlite3CreateIndex(pParse, &yymsp[-7].minor.yy0, &yymsp[-6].minor.yy0, sqlite3SrcListAppend(pParse,0,&yymsp[-4].minor.yy0,0), yymsp[-2].minor.yy322, yymsp[-10].minor.yy394, &yymsp[-11].minor.yy0, yymsp[0].minor.yy528, SQLITE_SO_ASC, yymsp[-8].minor.yy394, SQLITE_IDXTYPE_APPDEF); if( IN_RENAME_OBJECT && pParse->pNewIndex ){ sqlite3RenameTokenMap(pParse, pParse->pNewIndex->zName, &yymsp[-4].minor.yy0); } } break; case 236: /* uniqueflag ::= UNIQUE */ case 278: /* raisetype ::= ABORT */ yytestcase(yyruleno==278); {yymsp[0].minor.yy394 = OE_Abort;} break; case 237: /* uniqueflag ::= */ {yymsp[1].minor.yy394 = OE_None;} break; case 240: /* eidlist ::= eidlist COMMA nm collate sortorder */ { yymsp[-4].minor.yy322 = parserAddExprIdListTerm(pParse, yymsp[-4].minor.yy322, &yymsp[-2].minor.yy0, yymsp[-1].minor.yy394, yymsp[0].minor.yy394); } break; case 241: /* eidlist ::= nm collate sortorder */ { yymsp[-2].minor.yy322 = parserAddExprIdListTerm(pParse, 0, &yymsp[-2].minor.yy0, yymsp[-1].minor.yy394, yymsp[0].minor.yy394); /*A-overwrites-Y*/ } break; case 244: /* cmd ::= DROP INDEX ifexists fullname */ {sqlite3DropIndex(pParse, yymsp[0].minor.yy131, yymsp[-1].minor.yy394);} break; case 245: /* cmd ::= VACUUM vinto */ {sqlite3Vacuum(pParse,0,yymsp[0].minor.yy528);} break; case 246: /* cmd ::= VACUUM nm vinto */ {sqlite3Vacuum(pParse,&yymsp[-1].minor.yy0,yymsp[0].minor.yy528);} break; case 249: /* cmd ::= PRAGMA nm dbnm */ {sqlite3Pragma(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0,0,0);} break; case 250: /* cmd ::= PRAGMA nm dbnm EQ nmnum */ {sqlite3Pragma(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0,0);} break; case 251: /* cmd ::= PRAGMA nm dbnm LP nmnum RP */ {sqlite3Pragma(pParse,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,&yymsp[-1].minor.yy0,0);} break; case 252: /* cmd ::= PRAGMA nm dbnm EQ minus_num */ {sqlite3Pragma(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0,1);} break; case 253: /* cmd ::= PRAGMA nm dbnm LP minus_num RP */ {sqlite3Pragma(pParse,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,&yymsp[-1].minor.yy0,1);} break; case 256: /* cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ { Token all; all.z = yymsp[-3].minor.yy0.z; all.n = (int)(yymsp[0].minor.yy0.z - yymsp[-3].minor.yy0.z) + yymsp[0].minor.yy0.n; sqlite3FinishTrigger(pParse, yymsp[-1].minor.yy33, &all); } break; case 257: /* trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ { sqlite3BeginTrigger(pParse, &yymsp[-7].minor.yy0, &yymsp[-6].minor.yy0, yymsp[-5].minor.yy394, yymsp[-4].minor.yy180.a, yymsp[-4].minor.yy180.b, yymsp[-2].minor.yy131, yymsp[0].minor.yy528, yymsp[-10].minor.yy394, yymsp[-8].minor.yy394); yymsp[-10].minor.yy0 = (yymsp[-6].minor.yy0.n==0?yymsp[-7].minor.yy0:yymsp[-6].minor.yy0); /*A-overwrites-T*/ } break; case 258: /* trigger_time ::= BEFORE|AFTER */ { yymsp[0].minor.yy394 = yymsp[0].major; /*A-overwrites-X*/ } break; case 259: /* trigger_time ::= INSTEAD OF */ { yymsp[-1].minor.yy394 = TK_INSTEAD;} break; case 260: /* trigger_time ::= */ { yymsp[1].minor.yy394 = TK_BEFORE; } break; case 261: /* trigger_event ::= DELETE|INSERT */ case 262: /* trigger_event ::= UPDATE */ yytestcase(yyruleno==262); {yymsp[0].minor.yy180.a = yymsp[0].major; /*A-overwrites-X*/ yymsp[0].minor.yy180.b = 0;} break; case 263: /* trigger_event ::= UPDATE OF idlist */ {yymsp[-2].minor.yy180.a = TK_UPDATE; yymsp[-2].minor.yy180.b = yymsp[0].minor.yy254;} break; case 264: /* when_clause ::= */ case 283: /* key_opt ::= */ yytestcase(yyruleno==283); { yymsp[1].minor.yy528 = 0; } break; case 265: /* when_clause ::= WHEN expr */ case 284: /* key_opt ::= KEY expr */ yytestcase(yyruleno==284); { yymsp[-1].minor.yy528 = yymsp[0].minor.yy528; } break; case 266: /* trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ { assert( yymsp[-2].minor.yy33!=0 ); yymsp[-2].minor.yy33->pLast->pNext = yymsp[-1].minor.yy33; yymsp[-2].minor.yy33->pLast = yymsp[-1].minor.yy33; } break; case 267: /* trigger_cmd_list ::= trigger_cmd SEMI */ { assert( yymsp[-1].minor.yy33!=0 ); yymsp[-1].minor.yy33->pLast = yymsp[-1].minor.yy33; } break; case 268: /* trnm ::= nm DOT nm */ { yymsp[-2].minor.yy0 = yymsp[0].minor.yy0; sqlite3ErrorMsg(pParse, "qualified table names are not allowed on INSERT, UPDATE, and DELETE " "statements within triggers"); } break; case 269: /* tridxby ::= INDEXED BY nm */ { sqlite3ErrorMsg(pParse, "the INDEXED BY clause is not allowed on UPDATE or DELETE statements " "within triggers"); } break; case 270: /* tridxby ::= NOT INDEXED */ { sqlite3ErrorMsg(pParse, "the NOT INDEXED clause is not allowed on UPDATE or DELETE statements " "within triggers"); } break; case 271: /* trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt */ {yylhsminor.yy33 = sqlite3TriggerUpdateStep(pParse, &yymsp[-6].minor.yy0, yymsp[-2].minor.yy131, yymsp[-3].minor.yy322, yymsp[-1].minor.yy528, yymsp[-7].minor.yy394, yymsp[-8].minor.yy0.z, yymsp[0].minor.yy522);} yymsp[-8].minor.yy33 = yylhsminor.yy33; break; case 272: /* trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt */ { yylhsminor.yy33 = sqlite3TriggerInsertStep(pParse,&yymsp[-4].minor.yy0,yymsp[-3].minor.yy254,yymsp[-2].minor.yy47,yymsp[-6].minor.yy394,yymsp[-1].minor.yy444,yymsp[-7].minor.yy522,yymsp[0].minor.yy522);/*yylhsminor.yy33-overwrites-yymsp[-6].minor.yy394*/ } yymsp[-7].minor.yy33 = yylhsminor.yy33; break; case 273: /* trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt */ {yylhsminor.yy33 = sqlite3TriggerDeleteStep(pParse, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy528, yymsp[-5].minor.yy0.z, yymsp[0].minor.yy522);} yymsp[-5].minor.yy33 = yylhsminor.yy33; break; case 274: /* trigger_cmd ::= scanpt select scanpt */ {yylhsminor.yy33 = sqlite3TriggerSelectStep(pParse->db, yymsp[-1].minor.yy47, yymsp[-2].minor.yy522, yymsp[0].minor.yy522); /*yylhsminor.yy33-overwrites-yymsp[-1].minor.yy47*/} yymsp[-2].minor.yy33 = yylhsminor.yy33; break; case 275: /* expr ::= RAISE LP IGNORE RP */ { yymsp[-3].minor.yy528 = sqlite3PExpr(pParse, TK_RAISE, 0, 0); if( yymsp[-3].minor.yy528 ){ yymsp[-3].minor.yy528->affExpr = OE_Ignore; } } break; case 276: /* expr ::= RAISE LP raisetype COMMA nm RP */ { yymsp[-5].minor.yy528 = sqlite3ExprAlloc(pParse->db, TK_RAISE, &yymsp[-1].minor.yy0, 1); if( yymsp[-5].minor.yy528 ) { yymsp[-5].minor.yy528->affExpr = (char)yymsp[-3].minor.yy394; } } break; case 277: /* raisetype ::= ROLLBACK */ {yymsp[0].minor.yy394 = OE_Rollback;} break; case 279: /* raisetype ::= FAIL */ {yymsp[0].minor.yy394 = OE_Fail;} break; case 280: /* cmd ::= DROP TRIGGER ifexists fullname */ { sqlite3DropTrigger(pParse,yymsp[0].minor.yy131,yymsp[-1].minor.yy394); } break; case 281: /* cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ { sqlite3Attach(pParse, yymsp[-3].minor.yy528, yymsp[-1].minor.yy528, yymsp[0].minor.yy528); } break; case 282: /* cmd ::= DETACH database_kw_opt expr */ { sqlite3Detach(pParse, yymsp[0].minor.yy528); } break; case 285: /* cmd ::= REINDEX */ {sqlite3Reindex(pParse, 0, 0);} break; case 286: /* cmd ::= REINDEX nm dbnm */ {sqlite3Reindex(pParse, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0);} break; case 287: /* cmd ::= ANALYZE */ {sqlite3Analyze(pParse, 0, 0);} break; case 288: /* cmd ::= ANALYZE nm dbnm */ {sqlite3Analyze(pParse, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0);} break; case 289: /* cmd ::= ALTER TABLE fullname RENAME TO nm */ { sqlite3AlterRenameTable(pParse,yymsp[-3].minor.yy131,&yymsp[0].minor.yy0); } break; case 290: /* cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist */ { yymsp[-1].minor.yy0.n = (int)(pParse->sLastToken.z-yymsp[-1].minor.yy0.z) + pParse->sLastToken.n; sqlite3AlterFinishAddColumn(pParse, &yymsp[-1].minor.yy0); } break; case 291: /* cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */ { sqlite3AlterDropColumn(pParse, yymsp[-3].minor.yy131, &yymsp[0].minor.yy0); } break; case 292: /* add_column_fullname ::= fullname */ { disableLookaside(pParse); sqlite3AlterBeginAddColumn(pParse, yymsp[0].minor.yy131); } break; case 293: /* cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */ { sqlite3AlterRenameColumn(pParse, yymsp[-5].minor.yy131, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; case 294: /* cmd ::= create_vtab */ {sqlite3VtabFinishParse(pParse,0);} break; case 295: /* cmd ::= create_vtab LP vtabarglist RP */ {sqlite3VtabFinishParse(pParse,&yymsp[0].minor.yy0);} break; case 296: /* create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ { sqlite3VtabBeginParse(pParse, &yymsp[-3].minor.yy0, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-4].minor.yy394); } break; case 297: /* vtabarg ::= */ {sqlite3VtabArgInit(pParse);} break; case 298: /* vtabargtoken ::= ANY */ case 299: /* vtabargtoken ::= lp anylist RP */ yytestcase(yyruleno==299); case 300: /* lp ::= LP */ yytestcase(yyruleno==300); {sqlite3VtabArgExtend(pParse,&yymsp[0].minor.yy0);} break; case 301: /* with ::= WITH wqlist */ case 302: /* with ::= WITH RECURSIVE wqlist */ yytestcase(yyruleno==302); { sqlite3WithPush(pParse, yymsp[0].minor.yy521, 1); } break; case 303: /* wqas ::= AS */ {yymsp[0].minor.yy516 = M10d_Any;} break; case 304: /* wqas ::= AS MATERIALIZED */ {yymsp[-1].minor.yy516 = M10d_Yes;} break; case 305: /* wqas ::= AS NOT MATERIALIZED */ {yymsp[-2].minor.yy516 = M10d_No;} break; case 306: /* wqitem ::= nm eidlist_opt wqas LP select RP */ { yymsp[-5].minor.yy385 = sqlite3CteNew(pParse, &yymsp[-5].minor.yy0, yymsp[-4].minor.yy322, yymsp[-1].minor.yy47, yymsp[-3].minor.yy516); /*A-overwrites-X*/ } break; case 307: /* wqlist ::= wqitem */ { yymsp[0].minor.yy521 = sqlite3WithAdd(pParse, 0, yymsp[0].minor.yy385); /*A-overwrites-X*/ } break; case 308: /* wqlist ::= wqlist COMMA wqitem */ { yymsp[-2].minor.yy521 = sqlite3WithAdd(pParse, yymsp[-2].minor.yy521, yymsp[0].minor.yy385); } break; case 309: /* windowdefn_list ::= windowdefn */ { yylhsminor.yy41 = yymsp[0].minor.yy41; } yymsp[0].minor.yy41 = yylhsminor.yy41; break; case 310: /* windowdefn_list ::= windowdefn_list COMMA windowdefn */ { assert( yymsp[0].minor.yy41!=0 ); sqlite3WindowChain(pParse, yymsp[0].minor.yy41, yymsp[-2].minor.yy41); yymsp[0].minor.yy41->pNextWin = yymsp[-2].minor.yy41; yylhsminor.yy41 = yymsp[0].minor.yy41; } yymsp[-2].minor.yy41 = yylhsminor.yy41; break; case 311: /* windowdefn ::= nm AS LP window RP */ { if( ALWAYS(yymsp[-1].minor.yy41) ){ yymsp[-1].minor.yy41->zName = sqlite3DbStrNDup(pParse->db, yymsp[-4].minor.yy0.z, yymsp[-4].minor.yy0.n); } yylhsminor.yy41 = yymsp[-1].minor.yy41; } yymsp[-4].minor.yy41 = yylhsminor.yy41; break; case 312: /* window ::= PARTITION BY nexprlist orderby_opt frame_opt */ { yymsp[-4].minor.yy41 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy41, yymsp[-2].minor.yy322, yymsp[-1].minor.yy322, 0); } break; case 313: /* window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */ { yylhsminor.yy41 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy41, yymsp[-2].minor.yy322, yymsp[-1].minor.yy322, &yymsp[-5].minor.yy0); } yymsp[-5].minor.yy41 = yylhsminor.yy41; break; case 314: /* window ::= ORDER BY sortlist frame_opt */ { yymsp[-3].minor.yy41 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy41, 0, yymsp[-1].minor.yy322, 0); } break; case 315: /* window ::= nm ORDER BY sortlist frame_opt */ { yylhsminor.yy41 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy41, 0, yymsp[-1].minor.yy322, &yymsp[-4].minor.yy0); } yymsp[-4].minor.yy41 = yylhsminor.yy41; break; case 316: /* window ::= frame_opt */ case 335: /* filter_over ::= over_clause */ yytestcase(yyruleno==335); { yylhsminor.yy41 = yymsp[0].minor.yy41; } yymsp[0].minor.yy41 = yylhsminor.yy41; break; case 317: /* window ::= nm frame_opt */ { yylhsminor.yy41 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy41, 0, 0, &yymsp[-1].minor.yy0); } yymsp[-1].minor.yy41 = yylhsminor.yy41; break; case 318: /* frame_opt ::= */ { yymsp[1].minor.yy41 = sqlite3WindowAlloc(pParse, 0, TK_UNBOUNDED, 0, TK_CURRENT, 0, 0); } break; case 319: /* frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */ { yylhsminor.yy41 = sqlite3WindowAlloc(pParse, yymsp[-2].minor.yy394, yymsp[-1].minor.yy595.eType, yymsp[-1].minor.yy595.pExpr, TK_CURRENT, 0, yymsp[0].minor.yy516); } yymsp[-2].minor.yy41 = yylhsminor.yy41; break; case 320: /* frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */ { yylhsminor.yy41 = sqlite3WindowAlloc(pParse, yymsp[-5].minor.yy394, yymsp[-3].minor.yy595.eType, yymsp[-3].minor.yy595.pExpr, yymsp[-1].minor.yy595.eType, yymsp[-1].minor.yy595.pExpr, yymsp[0].minor.yy516); } yymsp[-5].minor.yy41 = yylhsminor.yy41; break; case 322: /* frame_bound_s ::= frame_bound */ case 324: /* frame_bound_e ::= frame_bound */ yytestcase(yyruleno==324); {yylhsminor.yy595 = yymsp[0].minor.yy595;} yymsp[0].minor.yy595 = yylhsminor.yy595; break; case 323: /* frame_bound_s ::= UNBOUNDED PRECEDING */ case 325: /* frame_bound_e ::= UNBOUNDED FOLLOWING */ yytestcase(yyruleno==325); case 327: /* frame_bound ::= CURRENT ROW */ yytestcase(yyruleno==327); {yylhsminor.yy595.eType = yymsp[-1].major; yylhsminor.yy595.pExpr = 0;} yymsp[-1].minor.yy595 = yylhsminor.yy595; break; case 326: /* frame_bound ::= expr PRECEDING|FOLLOWING */ {yylhsminor.yy595.eType = yymsp[0].major; yylhsminor.yy595.pExpr = yymsp[-1].minor.yy528;} yymsp[-1].minor.yy595 = yylhsminor.yy595; break; case 328: /* frame_exclude_opt ::= */ {yymsp[1].minor.yy516 = 0;} break; case 329: /* frame_exclude_opt ::= EXCLUDE frame_exclude */ {yymsp[-1].minor.yy516 = yymsp[0].minor.yy516;} break; case 330: /* frame_exclude ::= NO OTHERS */ case 331: /* frame_exclude ::= CURRENT ROW */ yytestcase(yyruleno==331); {yymsp[-1].minor.yy516 = yymsp[-1].major; /*A-overwrites-X*/} break; case 332: /* frame_exclude ::= GROUP|TIES */ {yymsp[0].minor.yy516 = yymsp[0].major; /*A-overwrites-X*/} break; case 333: /* window_clause ::= WINDOW windowdefn_list */ { yymsp[-1].minor.yy41 = yymsp[0].minor.yy41; } break; case 334: /* filter_over ::= filter_clause over_clause */ { if( yymsp[0].minor.yy41 ){ yymsp[0].minor.yy41->pFilter = yymsp[-1].minor.yy528; }else{ sqlite3ExprDelete(pParse->db, yymsp[-1].minor.yy528); } yylhsminor.yy41 = yymsp[0].minor.yy41; } yymsp[-1].minor.yy41 = yylhsminor.yy41; break; case 336: /* filter_over ::= filter_clause */ { yylhsminor.yy41 = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); if( yylhsminor.yy41 ){ yylhsminor.yy41->eFrmType = TK_FILTER; yylhsminor.yy41->pFilter = yymsp[0].minor.yy528; }else{ sqlite3ExprDelete(pParse->db, yymsp[0].minor.yy528); } } yymsp[0].minor.yy41 = yylhsminor.yy41; break; case 337: /* over_clause ::= OVER LP window RP */ { yymsp[-3].minor.yy41 = yymsp[-1].minor.yy41; assert( yymsp[-3].minor.yy41!=0 ); } break; case 338: /* over_clause ::= OVER nm */ { yymsp[-1].minor.yy41 = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); if( yymsp[-1].minor.yy41 ){ yymsp[-1].minor.yy41->zName = sqlite3DbStrNDup(pParse->db, yymsp[0].minor.yy0.z, yymsp[0].minor.yy0.n); } } break; case 339: /* filter_clause ::= FILTER LP WHERE expr RP */ { yymsp[-4].minor.yy528 = yymsp[-1].minor.yy528; } break; default: /* (340) input ::= cmdlist */ yytestcase(yyruleno==340); /* (341) cmdlist ::= cmdlist ecmd */ yytestcase(yyruleno==341); /* (342) cmdlist ::= ecmd (OPTIMIZED OUT) */ assert(yyruleno!=342); /* (343) ecmd ::= SEMI */ yytestcase(yyruleno==343); /* (344) ecmd ::= cmdx SEMI */ yytestcase(yyruleno==344); /* (345) ecmd ::= explain cmdx SEMI (NEVER REDUCES) */ assert(yyruleno!=345); /* (346) trans_opt ::= */ yytestcase(yyruleno==346); /* (347) trans_opt ::= TRANSACTION */ yytestcase(yyruleno==347); /* (348) trans_opt ::= TRANSACTION nm */ yytestcase(yyruleno==348); /* (349) savepoint_opt ::= SAVEPOINT */ yytestcase(yyruleno==349); /* (350) savepoint_opt ::= */ yytestcase(yyruleno==350); /* (351) cmd ::= create_table create_table_args */ yytestcase(yyruleno==351); /* (352) table_option_set ::= table_option (OPTIMIZED OUT) */ assert(yyruleno!=352); /* (353) columnlist ::= columnlist COMMA columnname carglist */ yytestcase(yyruleno==353); /* (354) columnlist ::= columnname carglist */ yytestcase(yyruleno==354); /* (355) nm ::= ID|INDEXED */ yytestcase(yyruleno==355); /* (356) nm ::= STRING */ yytestcase(yyruleno==356); /* (357) nm ::= JOIN_KW */ yytestcase(yyruleno==357); /* (358) typetoken ::= typename */ yytestcase(yyruleno==358); /* (359) typename ::= ID|STRING */ yytestcase(yyruleno==359); /* (360) signed ::= plus_num (OPTIMIZED OUT) */ assert(yyruleno!=360); /* (361) signed ::= minus_num (OPTIMIZED OUT) */ assert(yyruleno!=361); /* (362) carglist ::= carglist ccons */ yytestcase(yyruleno==362); /* (363) carglist ::= */ yytestcase(yyruleno==363); /* (364) ccons ::= NULL onconf */ yytestcase(yyruleno==364); /* (365) ccons ::= GENERATED ALWAYS AS generated */ yytestcase(yyruleno==365); /* (366) ccons ::= AS generated */ yytestcase(yyruleno==366); /* (367) conslist_opt ::= COMMA conslist */ yytestcase(yyruleno==367); /* (368) conslist ::= conslist tconscomma tcons */ yytestcase(yyruleno==368); /* (369) conslist ::= tcons (OPTIMIZED OUT) */ assert(yyruleno!=369); /* (370) tconscomma ::= */ yytestcase(yyruleno==370); /* (371) defer_subclause_opt ::= defer_subclause (OPTIMIZED OUT) */ assert(yyruleno!=371); /* (372) resolvetype ::= raisetype (OPTIMIZED OUT) */ assert(yyruleno!=372); /* (373) selectnowith ::= oneselect (OPTIMIZED OUT) */ assert(yyruleno!=373); /* (374) oneselect ::= values */ yytestcase(yyruleno==374); /* (375) sclp ::= selcollist COMMA */ yytestcase(yyruleno==375); /* (376) as ::= ID|STRING */ yytestcase(yyruleno==376); /* (377) returning ::= */ yytestcase(yyruleno==377); /* (378) expr ::= term (OPTIMIZED OUT) */ assert(yyruleno!=378); /* (379) likeop ::= LIKE_KW|MATCH */ yytestcase(yyruleno==379); /* (380) exprlist ::= nexprlist */ yytestcase(yyruleno==380); /* (381) nmnum ::= plus_num (OPTIMIZED OUT) */ assert(yyruleno!=381); /* (382) nmnum ::= nm (OPTIMIZED OUT) */ assert(yyruleno!=382); /* (383) nmnum ::= ON */ yytestcase(yyruleno==383); /* (384) nmnum ::= DELETE */ yytestcase(yyruleno==384); /* (385) nmnum ::= DEFAULT */ yytestcase(yyruleno==385); /* (386) plus_num ::= INTEGER|FLOAT */ yytestcase(yyruleno==386); /* (387) foreach_clause ::= */ yytestcase(yyruleno==387); /* (388) foreach_clause ::= FOR EACH ROW */ yytestcase(yyruleno==388); /* (389) trnm ::= nm */ yytestcase(yyruleno==389); /* (390) tridxby ::= */ yytestcase(yyruleno==390); /* (391) database_kw_opt ::= DATABASE */ yytestcase(yyruleno==391); /* (392) database_kw_opt ::= */ yytestcase(yyruleno==392); /* (393) kwcolumn_opt ::= */ yytestcase(yyruleno==393); /* (394) kwcolumn_opt ::= COLUMNKW */ yytestcase(yyruleno==394); /* (395) vtabarglist ::= vtabarg */ yytestcase(yyruleno==395); /* (396) vtabarglist ::= vtabarglist COMMA vtabarg */ yytestcase(yyruleno==396); /* (397) vtabarg ::= vtabarg vtabargtoken */ yytestcase(yyruleno==397); /* (398) anylist ::= */ yytestcase(yyruleno==398); /* (399) anylist ::= anylist LP anylist RP */ yytestcase(yyruleno==399); /* (400) anylist ::= anylist ANY */ yytestcase(yyruleno==400); /* (401) with ::= */ yytestcase(yyruleno==401); break; /********** End reduce actions ************************************************/ }; assert( yyrulenoYY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) ); /* It is not possible for a REDUCE to be followed by an error */ assert( yyact!=YY_ERROR_ACTION ); yymsp += yysize+1; yypParser->yytos = yymsp; yymsp->stateno = (YYACTIONTYPE)yyact; yymsp->major = (YYCODETYPE)yygoto; yyTraceShift(yypParser, yyact, "... then shift"); return yyact; } /* ** The following code executes when the parse fails */ #ifndef YYNOERRORRECOVERY static void yy_parse_failed( yyParser *yypParser /* The parser */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); } #endif while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser fails */ /************ Begin %parse_failure code ***************************************/ /************ End %parse_failure code *****************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument variable */ sqlite3ParserCTX_STORE } #endif /* YYNOERRORRECOVERY */ /* ** The following code executes when a syntax error first occurs. */ static void yy_syntax_error( yyParser *yypParser, /* The parser */ int yymajor, /* The major type of the error token */ sqlite3ParserTOKENTYPE yyminor /* The minor type of the error token */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH #define TOKEN yyminor /************ Begin %syntax_error code ****************************************/ UNUSED_PARAMETER(yymajor); /* Silence some compiler warnings */ if( TOKEN.z[0] ){ sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN); }else{ sqlite3ErrorMsg(pParse, "incomplete input"); } /************ End %syntax_error code ******************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument variable */ sqlite3ParserCTX_STORE } /* ** The following is executed when the parser accepts */ static void yy_accept( yyParser *yypParser /* The parser */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); } #endif #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif assert( yypParser->yytos==yypParser->yystack ); /* Here code is inserted which will be executed whenever the ** parser accepts */ /*********** Begin %parse_accept code *****************************************/ /*********** End %parse_accept code *******************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument variable */ sqlite3ParserCTX_STORE } /* The main parser program. ** The first argument is a pointer to a structure obtained from ** "sqlite3ParserAlloc" which describes the current state of the parser. ** The second argument is the major token number. The third is ** the minor token. The fourth optional argument is whatever the ** user wants (and specified in the grammar) and is available for ** use by the action routines. ** ** Inputs: **
      **
    • A pointer to the parser (an opaque structure.) **
    • The major token number. **
    • The minor token number. **
    • An option argument of a grammar-specified type. **
    ** ** Outputs: ** None. */ SQLITE_PRIVATE void sqlite3Parser( void *yyp, /* The parser */ int yymajor, /* The major token code number */ sqlite3ParserTOKENTYPE yyminor /* The value for the token */ sqlite3ParserARG_PDECL /* Optional %extra_argument parameter */ ){ YYMINORTYPE yyminorunion; YYACTIONTYPE yyact; /* The parser action. */ #if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) int yyendofinput; /* True if we are at the end of input */ #endif #ifdef YYERRORSYMBOL int yyerrorhit = 0; /* True if yymajor has invoked an error */ #endif yyParser *yypParser = (yyParser*)yyp; /* The parser */ sqlite3ParserCTX_FETCH sqlite3ParserARG_STORE assert( yypParser->yytos!=0 ); #if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) yyendofinput = (yymajor==0); #endif yyact = yypParser->yytos->stateno; #ifndef NDEBUG if( yyTraceFILE ){ if( yyact < YY_MIN_REDUCE ){ fprintf(yyTraceFILE,"%sInput '%s' in state %d\n", yyTracePrompt,yyTokenName[yymajor],yyact); }else{ fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n", yyTracePrompt,yyTokenName[yymajor],yyact-YY_MIN_REDUCE); } } #endif while(1){ /* Exit by "break" */ assert( yypParser->yytos>=yypParser->yystack ); assert( yyact==yypParser->yytos->stateno ); yyact = yy_find_shift_action((YYCODETYPE)yymajor,yyact); if( yyact >= YY_MIN_REDUCE ){ unsigned int yyruleno = yyact - YY_MIN_REDUCE; /* Reduce by this rule */ #ifndef NDEBUG assert( yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ); if( yyTraceFILE ){ int yysize = yyRuleInfoNRhs[yyruleno]; if( yysize ){ fprintf(yyTraceFILE, "%sReduce %d [%s]%s, pop back to state %d.\n", yyTracePrompt, yyruleno, yyRuleName[yyruleno], yyrulenoyytos[yysize].stateno); }else{ fprintf(yyTraceFILE, "%sReduce %d [%s]%s.\n", yyTracePrompt, yyruleno, yyRuleName[yyruleno], yyrulenoyytos - yypParser->yystack)>yypParser->yyhwm ){ yypParser->yyhwm++; assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); } #endif #if YYSTACKDEPTH>0 if( yypParser->yytos>=yypParser->yystackEnd ){ yyStackOverflow(yypParser); break; } #else if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){ if( yyGrowStack(yypParser) ){ yyStackOverflow(yypParser); break; } } #endif } yyact = yy_reduce(yypParser,yyruleno,yymajor,yyminor sqlite3ParserCTX_PARAM); }else if( yyact <= YY_MAX_SHIFTREDUCE ){ yy_shift(yypParser,yyact,(YYCODETYPE)yymajor,yyminor); #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt--; #endif break; }else if( yyact==YY_ACCEPT_ACTION ){ yypParser->yytos--; yy_accept(yypParser); return; }else{ assert( yyact == YY_ERROR_ACTION ); yyminorunion.yy0 = yyminor; #ifdef YYERRORSYMBOL int yymx; #endif #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); } #endif #ifdef YYERRORSYMBOL /* A syntax error has occurred. ** The response to an error depends upon whether or not the ** grammar defines an error token "ERROR". ** ** This is what we do if the grammar does define ERROR: ** ** * Call the %syntax_error function. ** ** * Begin popping the stack until we enter a state where ** it is legal to shift the error symbol, then shift ** the error symbol. ** ** * Set the error count to three. ** ** * Begin accepting and shifting new tokens. No new error ** processing will occur until three tokens have been ** shifted successfully. ** */ if( yypParser->yyerrcnt<0 ){ yy_syntax_error(yypParser,yymajor,yyminor); } yymx = yypParser->yytos->major; if( yymx==YYERRORSYMBOL || yyerrorhit ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sDiscard input token %s\n", yyTracePrompt,yyTokenName[yymajor]); } #endif yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); yymajor = YYNOCODE; }else{ while( yypParser->yytos > yypParser->yystack ){ yyact = yy_find_reduce_action(yypParser->yytos->stateno, YYERRORSYMBOL); if( yyact<=YY_MAX_SHIFTREDUCE ) break; yy_pop_parser_stack(yypParser); } if( yypParser->yytos <= yypParser->yystack || yymajor==0 ){ yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_parse_failed(yypParser); #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif yymajor = YYNOCODE; }else if( yymx!=YYERRORSYMBOL ){ yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); } } yypParser->yyerrcnt = 3; yyerrorhit = 1; if( yymajor==YYNOCODE ) break; yyact = yypParser->yytos->stateno; #elif defined(YYNOERRORRECOVERY) /* If the YYNOERRORRECOVERY macro is defined, then do not attempt to ** do any kind of error recovery. Instead, simply invoke the syntax ** error routine and continue going as if nothing had happened. ** ** Applications can set this macro (for example inside %include) if ** they intend to abandon the parse upon the first syntax error seen. */ yy_syntax_error(yypParser,yymajor, yyminor); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); break; #else /* YYERRORSYMBOL is not defined */ /* This is what we do if the grammar does not define ERROR: ** ** * Report an error message, and throw away the input token. ** ** * If the input token is $, then fail the parse. ** ** As before, subsequent error messages are suppressed until ** three input tokens have been successfully shifted. */ if( yypParser->yyerrcnt<=0 ){ yy_syntax_error(yypParser,yymajor, yyminor); } yypParser->yyerrcnt = 3; yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); if( yyendofinput ){ yy_parse_failed(yypParser); #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif } break; #endif } } #ifndef NDEBUG if( yyTraceFILE ){ yyStackEntry *i; char cDiv = '['; fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt); for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){ fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]); cDiv = ' '; } fprintf(yyTraceFILE,"]\n"); } #endif return; } /* ** Return the fallback token corresponding to canonical token iToken, or ** 0 if iToken has no fallback. */ SQLITE_PRIVATE int sqlite3ParserFallback(int iToken){ #ifdef YYFALLBACK assert( iToken<(int)(sizeof(yyFallback)/sizeof(yyFallback[0])) ); return yyFallback[iToken]; #else (void)iToken; return 0; #endif } /************** End of parse.c ***********************************************/ /************** Begin file tokenize.c ****************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** An tokenizer for SQL ** ** This file contains C code that splits an SQL input string up into ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. */ /* #include "sqliteInt.h" */ /* #include */ /* Character classes for tokenizing ** ** In the sqlite3GetToken() function, a switch() on aiClass[c] is implemented ** using a lookup table, whereas a switch() directly on c uses a binary search. ** The lookup table is much faster. To maximize speed, and to ensure that ** a lookup table is used, all of the classes need to be small integers and ** all of them need to be used within the switch. */ #define CC_X 0 /* The letter 'x', or start of BLOB literal */ #define CC_KYWD0 1 /* First letter of a keyword */ #define CC_KYWD 2 /* Alphabetics or '_'. Usable in a keyword */ #define CC_DIGIT 3 /* Digits */ #define CC_DOLLAR 4 /* '$' */ #define CC_VARALPHA 5 /* '@', '#', ':'. Alphabetic SQL variables */ #define CC_VARNUM 6 /* '?'. Numeric SQL variables */ #define CC_SPACE 7 /* Space characters */ #define CC_QUOTE 8 /* '"', '\'', or '`'. String literals, quoted ids */ #define CC_QUOTE2 9 /* '['. [...] style quoted ids */ #define CC_PIPE 10 /* '|'. Bitwise OR or concatenate */ #define CC_MINUS 11 /* '-'. Minus or SQL-style comment */ #define CC_LT 12 /* '<'. Part of < or <= or <> */ #define CC_GT 13 /* '>'. Part of > or >= */ #define CC_EQ 14 /* '='. Part of = or == */ #define CC_BANG 15 /* '!'. Part of != */ #define CC_SLASH 16 /* '/'. / or c-style comment */ #define CC_LP 17 /* '(' */ #define CC_RP 18 /* ')' */ #define CC_SEMI 19 /* ';' */ #define CC_PLUS 20 /* '+' */ #define CC_STAR 21 /* '*' */ #define CC_PERCENT 22 /* '%' */ #define CC_COMMA 23 /* ',' */ #define CC_AND 24 /* '&' */ #define CC_TILDA 25 /* '~' */ #define CC_DOT 26 /* '.' */ #define CC_ID 27 /* unicode characters usable in IDs */ #define CC_ILLEGAL 28 /* Illegal character */ #define CC_NUL 29 /* 0x00 */ #define CC_BOM 30 /* First byte of UTF8 BOM: 0xEF 0xBB 0xBF */ static const unsigned char aiClass[] = { #ifdef SQLITE_ASCII /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */ /* 0x */ 29, 28, 28, 28, 28, 28, 28, 28, 28, 7, 7, 28, 7, 7, 28, 28, /* 1x */ 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, /* 2x */ 7, 15, 8, 5, 4, 22, 24, 8, 17, 18, 21, 20, 23, 11, 26, 16, /* 3x */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 19, 12, 14, 13, 6, /* 4x */ 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 5x */ 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 2, 9, 28, 28, 28, 2, /* 6x */ 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 7x */ 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 2, 28, 10, 28, 25, 28, /* 8x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* 9x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* Ax */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* Bx */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* Cx */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* Dx */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* Ex */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 30, /* Fx */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27 #endif #ifdef SQLITE_EBCDIC /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */ /* 0x */ 29, 28, 28, 28, 28, 7, 28, 28, 28, 28, 28, 28, 7, 7, 28, 28, /* 1x */ 28, 28, 28, 28, 28, 7, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, /* 2x */ 28, 28, 28, 28, 28, 7, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, /* 3x */ 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, /* 4x */ 7, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 26, 12, 17, 20, 10, /* 5x */ 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 15, 4, 21, 18, 19, 28, /* 6x */ 11, 16, 28, 28, 28, 28, 28, 28, 28, 28, 28, 23, 22, 2, 13, 6, /* 7x */ 28, 28, 28, 28, 28, 28, 28, 28, 28, 8, 5, 5, 5, 8, 14, 8, /* 8x */ 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 28, 28, 28, 28, 28, /* 9x */ 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 28, 28, 28, 28, 28, /* Ax */ 28, 25, 1, 1, 1, 1, 1, 0, 2, 2, 28, 28, 28, 28, 28, 28, /* Bx */ 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 9, 28, 28, 28, 28, 28, /* Cx */ 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 28, 28, 28, 28, 28, /* Dx */ 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 28, 28, 28, 28, 28, /* Ex */ 28, 28, 1, 1, 1, 1, 1, 0, 2, 2, 28, 28, 28, 28, 28, 28, /* Fx */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 28, 28, 28, 28, 28, 28, #endif }; /* ** The charMap() macro maps alphabetic characters (only) into their ** lower-case ASCII equivalent. On ASCII machines, this is just ** an upper-to-lower case map. On EBCDIC machines we also need ** to adjust the encoding. The mapping is only valid for alphabetics ** which are the only characters for which this feature is used. ** ** Used by keywordhash.h */ #ifdef SQLITE_ASCII # define charMap(X) sqlite3UpperToLower[(unsigned char)X] #endif #ifdef SQLITE_EBCDIC # define charMap(X) ebcdicToAscii[(unsigned char)X] const unsigned char ebcdicToAscii[] = { /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 3x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 4x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 5x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, /* 6x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 7x */ 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* 8x */ 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* 9x */ 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ax */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */ 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* Cx */ 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* Dx */ 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ex */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Fx */ }; #endif /* ** The sqlite3KeywordCode function looks up an identifier to determine if ** it is a keyword. If it is a keyword, the token code of that keyword is ** returned. If the input is not a keyword, TK_ID is returned. ** ** The implementation of this routine was generated by a program, ** mkkeywordhash.c, located in the tool subdirectory of the distribution. ** The output of the mkkeywordhash.c program is written into a file ** named keywordhash.h and then included into this source file by ** the #include below. */ /************** Include keywordhash.h in the middle of tokenize.c ************/ /************** Begin file keywordhash.h *************************************/ /***** This file contains automatically generated code ****** ** ** The code in this file has been automatically generated by ** ** sqlite/tool/mkkeywordhash.c ** ** The code in this file implements a function that determines whether ** or not a given identifier is really an SQL keyword. The same thing ** might be implemented more directly using a hand-written hash table. ** But by using this automatically generated code, the size of the code ** is substantially reduced. This is important for embedded applications ** on platforms with limited memory. */ /* Hash score: 231 */ /* zKWText[] encodes 1007 bytes of keyword text in 667 bytes */ /* REINDEXEDESCAPEACHECKEYBEFOREIGNOREGEXPLAINSTEADDATABASELECT */ /* ABLEFTHENDEFERRABLELSEXCLUDELETEMPORARYISNULLSAVEPOINTERSECT */ /* IESNOTNULLIKEXCEPTRANSACTIONATURALTERAISEXCLUSIVEXISTS */ /* CONSTRAINTOFFSETRIGGERANGENERATEDETACHAVINGLOBEGINNEREFERENCES */ /* UNIQUERYWITHOUTERELEASEATTACHBETWEENOTHINGROUPSCASCADEFAULT */ /* CASECOLLATECREATECURRENT_DATEIMMEDIATEJOINSERTMATCHPLANALYZE */ /* PRAGMATERIALIZEDEFERREDISTINCTUPDATEVALUESVIRTUALWAYSWHENWHERE */ /* CURSIVEABORTAFTERENAMEANDROPARTITIONAUTOINCREMENTCASTCOLUMN */ /* COMMITCONFLICTCROSSCURRENT_TIMESTAMPRECEDINGFAILASTFILTER */ /* EPLACEFIRSTFOLLOWINGFROMFULLIMITIFORDERESTRICTOTHERSOVER */ /* ETURNINGRIGHTROLLBACKROWSUNBOUNDEDUNIONUSINGVACUUMVIEWINDOWBY */ /* INITIALLYPRIMARY */ static const char zKWText[666] = { 'R','E','I','N','D','E','X','E','D','E','S','C','A','P','E','A','C','H', 'E','C','K','E','Y','B','E','F','O','R','E','I','G','N','O','R','E','G', 'E','X','P','L','A','I','N','S','T','E','A','D','D','A','T','A','B','A', 'S','E','L','E','C','T','A','B','L','E','F','T','H','E','N','D','E','F', 'E','R','R','A','B','L','E','L','S','E','X','C','L','U','D','E','L','E', 'T','E','M','P','O','R','A','R','Y','I','S','N','U','L','L','S','A','V', 'E','P','O','I','N','T','E','R','S','E','C','T','I','E','S','N','O','T', 'N','U','L','L','I','K','E','X','C','E','P','T','R','A','N','S','A','C', 'T','I','O','N','A','T','U','R','A','L','T','E','R','A','I','S','E','X', 'C','L','U','S','I','V','E','X','I','S','T','S','C','O','N','S','T','R', 'A','I','N','T','O','F','F','S','E','T','R','I','G','G','E','R','A','N', 'G','E','N','E','R','A','T','E','D','E','T','A','C','H','A','V','I','N', 'G','L','O','B','E','G','I','N','N','E','R','E','F','E','R','E','N','C', 'E','S','U','N','I','Q','U','E','R','Y','W','I','T','H','O','U','T','E', 'R','E','L','E','A','S','E','A','T','T','A','C','H','B','E','T','W','E', 'E','N','O','T','H','I','N','G','R','O','U','P','S','C','A','S','C','A', 'D','E','F','A','U','L','T','C','A','S','E','C','O','L','L','A','T','E', 'C','R','E','A','T','E','C','U','R','R','E','N','T','_','D','A','T','E', 'I','M','M','E','D','I','A','T','E','J','O','I','N','S','E','R','T','M', 'A','T','C','H','P','L','A','N','A','L','Y','Z','E','P','R','A','G','M', 'A','T','E','R','I','A','L','I','Z','E','D','E','F','E','R','R','E','D', 'I','S','T','I','N','C','T','U','P','D','A','T','E','V','A','L','U','E', 'S','V','I','R','T','U','A','L','W','A','Y','S','W','H','E','N','W','H', 'E','R','E','C','U','R','S','I','V','E','A','B','O','R','T','A','F','T', 'E','R','E','N','A','M','E','A','N','D','R','O','P','A','R','T','I','T', 'I','O','N','A','U','T','O','I','N','C','R','E','M','E','N','T','C','A', 'S','T','C','O','L','U','M','N','C','O','M','M','I','T','C','O','N','F', 'L','I','C','T','C','R','O','S','S','C','U','R','R','E','N','T','_','T', 'I','M','E','S','T','A','M','P','R','E','C','E','D','I','N','G','F','A', 'I','L','A','S','T','F','I','L','T','E','R','E','P','L','A','C','E','F', 'I','R','S','T','F','O','L','L','O','W','I','N','G','F','R','O','M','F', 'U','L','L','I','M','I','T','I','F','O','R','D','E','R','E','S','T','R', 'I','C','T','O','T','H','E','R','S','O','V','E','R','E','T','U','R','N', 'I','N','G','R','I','G','H','T','R','O','L','L','B','A','C','K','R','O', 'W','S','U','N','B','O','U','N','D','E','D','U','N','I','O','N','U','S', 'I','N','G','V','A','C','U','U','M','V','I','E','W','I','N','D','O','W', 'B','Y','I','N','I','T','I','A','L','L','Y','P','R','I','M','A','R','Y', }; /* aKWHash[i] is the hash value for the i-th keyword */ static const unsigned char aKWHash[127] = { 84, 92, 134, 82, 105, 29, 0, 0, 94, 0, 85, 72, 0, 53, 35, 86, 15, 0, 42, 97, 54, 89, 135, 19, 0, 0, 140, 0, 40, 129, 0, 22, 107, 0, 9, 0, 0, 123, 80, 0, 78, 6, 0, 65, 103, 147, 0, 136, 115, 0, 0, 48, 0, 90, 24, 0, 17, 0, 27, 70, 23, 26, 5, 60, 142, 110, 122, 0, 73, 91, 71, 145, 61, 120, 74, 0, 49, 0, 11, 41, 0, 113, 0, 0, 0, 109, 10, 111, 116, 125, 14, 50, 124, 0, 100, 0, 18, 121, 144, 56, 130, 139, 88, 83, 37, 30, 126, 0, 0, 108, 51, 131, 128, 0, 34, 0, 0, 132, 0, 98, 38, 39, 0, 20, 45, 117, 93, }; /* aKWNext[] forms the hash collision chain. If aKWHash[i]==0 ** then the i-th keyword has no more hash collisions. Otherwise, ** the next keyword with the same hash is aKWHash[i]-1. */ static const unsigned char aKWNext[147] = { 0, 0, 0, 0, 4, 0, 43, 0, 0, 106, 114, 0, 0, 0, 2, 0, 0, 143, 0, 0, 0, 13, 0, 0, 0, 0, 141, 0, 0, 119, 52, 0, 0, 137, 12, 0, 0, 62, 0, 138, 0, 133, 0, 0, 36, 0, 0, 28, 77, 0, 0, 0, 0, 59, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 146, 3, 0, 58, 0, 1, 75, 0, 0, 0, 31, 0, 0, 0, 0, 0, 127, 0, 104, 0, 64, 66, 63, 0, 0, 0, 0, 0, 46, 0, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 101, 0, 112, 21, 7, 67, 0, 79, 96, 118, 0, 0, 68, 0, 0, 99, 44, 0, 55, 0, 76, 0, 95, 32, 33, 57, 25, 0, 102, 0, 0, 87, }; /* aKWLen[i] is the length (in bytes) of the i-th keyword */ static const unsigned char aKWLen[147] = { 7, 7, 5, 4, 6, 4, 5, 3, 6, 7, 3, 6, 6, 7, 7, 3, 8, 2, 6, 5, 4, 4, 3, 10, 4, 7, 6, 9, 4, 2, 6, 5, 9, 9, 4, 7, 3, 2, 4, 4, 6, 11, 6, 2, 7, 5, 5, 9, 6, 10, 4, 6, 2, 3, 7, 5, 9, 6, 6, 4, 5, 5, 10, 6, 5, 7, 4, 5, 7, 6, 7, 7, 6, 5, 7, 3, 7, 4, 7, 6, 12, 9, 4, 6, 5, 4, 7, 6, 12, 8, 8, 2, 6, 6, 7, 6, 4, 5, 9, 5, 5, 6, 3, 4, 9, 13, 2, 2, 4, 6, 6, 8, 5, 17, 12, 7, 9, 4, 4, 6, 7, 5, 9, 4, 4, 5, 2, 5, 8, 6, 4, 9, 5, 8, 4, 3, 9, 5, 5, 6, 4, 6, 2, 2, 9, 3, 7, }; /* aKWOffset[i] is the index into zKWText[] of the start of ** the text for the i-th keyword. */ static const unsigned short int aKWOffset[147] = { 0, 2, 2, 8, 9, 14, 16, 20, 23, 25, 25, 29, 33, 36, 41, 46, 48, 53, 54, 59, 62, 65, 67, 69, 78, 81, 86, 90, 90, 94, 99, 101, 105, 111, 119, 123, 123, 123, 126, 129, 132, 137, 142, 146, 147, 152, 156, 160, 168, 174, 181, 184, 184, 187, 189, 195, 198, 206, 211, 216, 219, 222, 226, 236, 239, 244, 244, 248, 252, 259, 265, 271, 277, 277, 283, 284, 288, 295, 299, 306, 312, 324, 333, 335, 341, 346, 348, 355, 359, 370, 377, 378, 385, 391, 397, 402, 408, 412, 415, 424, 429, 433, 439, 441, 444, 453, 455, 457, 466, 470, 476, 482, 490, 495, 495, 495, 511, 520, 523, 527, 532, 539, 544, 553, 557, 560, 565, 567, 571, 579, 585, 588, 597, 602, 610, 610, 614, 623, 628, 633, 639, 642, 645, 648, 650, 655, 659, }; /* aKWCode[i] is the parser symbol code for the i-th keyword */ static const unsigned char aKWCode[147] = { TK_REINDEX, TK_INDEXED, TK_INDEX, TK_DESC, TK_ESCAPE, TK_EACH, TK_CHECK, TK_KEY, TK_BEFORE, TK_FOREIGN, TK_FOR, TK_IGNORE, TK_LIKE_KW, TK_EXPLAIN, TK_INSTEAD, TK_ADD, TK_DATABASE, TK_AS, TK_SELECT, TK_TABLE, TK_JOIN_KW, TK_THEN, TK_END, TK_DEFERRABLE, TK_ELSE, TK_EXCLUDE, TK_DELETE, TK_TEMP, TK_TEMP, TK_OR, TK_ISNULL, TK_NULLS, TK_SAVEPOINT, TK_INTERSECT, TK_TIES, TK_NOTNULL, TK_NOT, TK_NO, TK_NULL, TK_LIKE_KW, TK_EXCEPT, TK_TRANSACTION,TK_ACTION, TK_ON, TK_JOIN_KW, TK_ALTER, TK_RAISE, TK_EXCLUSIVE, TK_EXISTS, TK_CONSTRAINT, TK_INTO, TK_OFFSET, TK_OF, TK_SET, TK_TRIGGER, TK_RANGE, TK_GENERATED, TK_DETACH, TK_HAVING, TK_LIKE_KW, TK_BEGIN, TK_JOIN_KW, TK_REFERENCES, TK_UNIQUE, TK_QUERY, TK_WITHOUT, TK_WITH, TK_JOIN_KW, TK_RELEASE, TK_ATTACH, TK_BETWEEN, TK_NOTHING, TK_GROUPS, TK_GROUP, TK_CASCADE, TK_ASC, TK_DEFAULT, TK_CASE, TK_COLLATE, TK_CREATE, TK_CTIME_KW, TK_IMMEDIATE, TK_JOIN, TK_INSERT, TK_MATCH, TK_PLAN, TK_ANALYZE, TK_PRAGMA, TK_MATERIALIZED, TK_DEFERRED, TK_DISTINCT, TK_IS, TK_UPDATE, TK_VALUES, TK_VIRTUAL, TK_ALWAYS, TK_WHEN, TK_WHERE, TK_RECURSIVE, TK_ABORT, TK_AFTER, TK_RENAME, TK_AND, TK_DROP, TK_PARTITION, TK_AUTOINCR, TK_TO, TK_IN, TK_CAST, TK_COLUMNKW, TK_COMMIT, TK_CONFLICT, TK_JOIN_KW, TK_CTIME_KW, TK_CTIME_KW, TK_CURRENT, TK_PRECEDING, TK_FAIL, TK_LAST, TK_FILTER, TK_REPLACE, TK_FIRST, TK_FOLLOWING, TK_FROM, TK_JOIN_KW, TK_LIMIT, TK_IF, TK_ORDER, TK_RESTRICT, TK_OTHERS, TK_OVER, TK_RETURNING, TK_JOIN_KW, TK_ROLLBACK, TK_ROWS, TK_ROW, TK_UNBOUNDED, TK_UNION, TK_USING, TK_VACUUM, TK_VIEW, TK_WINDOW, TK_DO, TK_BY, TK_INITIALLY, TK_ALL, TK_PRIMARY, }; /* Hash table decoded: ** 0: INSERT ** 1: IS ** 2: ROLLBACK TRIGGER ** 3: IMMEDIATE ** 4: PARTITION ** 5: TEMP ** 6: ** 7: ** 8: VALUES WITHOUT ** 9: ** 10: MATCH ** 11: NOTHING ** 12: ** 13: OF ** 14: TIES IGNORE ** 15: PLAN ** 16: INSTEAD INDEXED ** 17: ** 18: TRANSACTION RIGHT ** 19: WHEN ** 20: SET HAVING ** 21: MATERIALIZED IF ** 22: ROWS ** 23: SELECT ** 24: ** 25: ** 26: VACUUM SAVEPOINT ** 27: ** 28: LIKE UNION VIRTUAL REFERENCES ** 29: RESTRICT ** 30: ** 31: THEN REGEXP ** 32: TO ** 33: ** 34: BEFORE ** 35: ** 36: ** 37: FOLLOWING COLLATE CASCADE ** 38: CREATE ** 39: ** 40: CASE REINDEX ** 41: EACH ** 42: ** 43: QUERY ** 44: AND ADD ** 45: PRIMARY ANALYZE ** 46: ** 47: ROW ASC DETACH ** 48: CURRENT_TIME CURRENT_DATE ** 49: ** 50: ** 51: EXCLUSIVE TEMPORARY ** 52: ** 53: DEFERRED ** 54: DEFERRABLE ** 55: ** 56: DATABASE ** 57: ** 58: DELETE VIEW GENERATED ** 59: ATTACH ** 60: END ** 61: EXCLUDE ** 62: ESCAPE DESC ** 63: GLOB ** 64: WINDOW ELSE ** 65: COLUMN ** 66: FIRST ** 67: ** 68: GROUPS ALL ** 69: DISTINCT DROP KEY ** 70: BETWEEN ** 71: INITIALLY ** 72: BEGIN ** 73: FILTER CHECK ACTION ** 74: GROUP INDEX ** 75: ** 76: EXISTS DEFAULT ** 77: ** 78: FOR CURRENT_TIMESTAMP ** 79: EXCEPT ** 80: ** 81: CROSS ** 82: ** 83: ** 84: ** 85: CAST ** 86: FOREIGN AUTOINCREMENT ** 87: COMMIT ** 88: CURRENT AFTER ALTER ** 89: FULL FAIL CONFLICT ** 90: EXPLAIN ** 91: CONSTRAINT ** 92: FROM ALWAYS ** 93: ** 94: ABORT ** 95: ** 96: AS DO ** 97: REPLACE WITH RELEASE ** 98: BY RENAME ** 99: RANGE RAISE ** 100: OTHERS ** 101: USING NULLS ** 102: PRAGMA ** 103: JOIN ISNULL OFFSET ** 104: NOT ** 105: OR LAST LEFT ** 106: LIMIT ** 107: ** 108: ** 109: IN ** 110: INTO ** 111: OVER RECURSIVE ** 112: ORDER OUTER ** 113: ** 114: INTERSECT UNBOUNDED ** 115: ** 116: ** 117: RETURNING ON ** 118: ** 119: WHERE ** 120: NO INNER ** 121: NULL ** 122: ** 123: TABLE ** 124: NATURAL NOTNULL ** 125: PRECEDING ** 126: UPDATE UNIQUE */ /* Check to see if z[0..n-1] is a keyword. If it is, write the ** parser symbol code for that keyword into *pType. Always ** return the integer n (the length of the token). */ static int keywordCode(const char *z, int n, int *pType){ int i, j; const char *zKW; if( n>=2 ){ i = ((charMap(z[0])*4) ^ (charMap(z[n-1])*3) ^ n*1) % 127; for(i=((int)aKWHash[i])-1; i>=0; i=((int)aKWNext[i])-1){ if( aKWLen[i]!=n ) continue; zKW = &zKWText[aKWOffset[i]]; #ifdef SQLITE_ASCII if( (z[0]&~0x20)!=zKW[0] ) continue; if( (z[1]&~0x20)!=zKW[1] ) continue; j = 2; while( j=SQLITE_N_KEYWORD ) return SQLITE_ERROR; *pzName = zKWText + aKWOffset[i]; *pnName = aKWLen[i]; return SQLITE_OK; } SQLITE_API int sqlite3_keyword_count(void){ return SQLITE_N_KEYWORD; } SQLITE_API int sqlite3_keyword_check(const char *zName, int nName){ return TK_ID!=sqlite3KeywordCode((const u8*)zName, nName); } /************** End of keywordhash.h *****************************************/ /************** Continuing where we left off in tokenize.c *******************/ /* ** If X is a character that can be used in an identifier then ** IdChar(X) will be true. Otherwise it is false. ** ** For ASCII, any character with the high-order bit set is ** allowed in an identifier. For 7-bit characters, ** sqlite3IsIdChar[X] must be 1. ** ** For EBCDIC, the rules are more complex but have the same ** end result. ** ** Ticket #1066. the SQL standard does not allow '$' in the ** middle of identifiers. But many SQL implementations do. ** SQLite will allow '$' in identifiers for compatibility. ** But the feature is undocumented. */ #ifdef SQLITE_ASCII #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0) #endif #ifdef SQLITE_EBCDIC SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[] = { /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */ 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 4x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, /* 5x */ 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, /* 6x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, /* 7x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, /* 8x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, /* 9x */ 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, /* Ax */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Cx */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Dx */ 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Ex */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, /* Fx */ }; #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) #endif /* Make the IdChar function accessible from ctime.c and alter.c */ SQLITE_PRIVATE int sqlite3IsIdChar(u8 c){ return IdChar(c); } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Return the id of the next token in string (*pz). Before returning, set ** (*pz) to point to the byte following the parsed token. */ static int getToken(const unsigned char **pz){ const unsigned char *z = *pz; int t; /* Token type to return */ do { z += sqlite3GetToken(z, &t); }while( t==TK_SPACE ); if( t==TK_ID || t==TK_STRING || t==TK_JOIN_KW || t==TK_WINDOW || t==TK_OVER || sqlite3ParserFallback(t)==TK_ID ){ t = TK_ID; } *pz = z; return t; } /* ** The following three functions are called immediately after the tokenizer ** reads the keywords WINDOW, OVER and FILTER, respectively, to determine ** whether the token should be treated as a keyword or an SQL identifier. ** This cannot be handled by the usual lemon %fallback method, due to ** the ambiguity in some constructions. e.g. ** ** SELECT sum(x) OVER ... ** ** In the above, "OVER" might be a keyword, or it might be an alias for the ** sum(x) expression. If a "%fallback ID OVER" directive were added to ** grammar, then SQLite would always treat "OVER" as an alias, making it ** impossible to call a window-function without a FILTER clause. ** ** WINDOW is treated as a keyword if: ** ** * the following token is an identifier, or a keyword that can fallback ** to being an identifier, and ** * the token after than one is TK_AS. ** ** OVER is a keyword if: ** ** * the previous token was TK_RP, and ** * the next token is either TK_LP or an identifier. ** ** FILTER is a keyword if: ** ** * the previous token was TK_RP, and ** * the next token is TK_LP. */ static int analyzeWindowKeyword(const unsigned char *z){ int t; t = getToken(&z); if( t!=TK_ID ) return TK_ID; t = getToken(&z); if( t!=TK_AS ) return TK_ID; return TK_WINDOW; } static int analyzeOverKeyword(const unsigned char *z, int lastToken){ if( lastToken==TK_RP ){ int t = getToken(&z); if( t==TK_LP || t==TK_ID ) return TK_OVER; } return TK_ID; } static int analyzeFilterKeyword(const unsigned char *z, int lastToken){ if( lastToken==TK_RP && getToken(&z)==TK_LP ){ return TK_FILTER; } return TK_ID; } #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** Return the length (in bytes) of the token that begins at z[0]. ** Store the token type in *tokenType before returning. */ SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *z, int *tokenType){ int i, c; switch( aiClass[*z] ){ /* Switch on the character-class of the first byte ** of the token. See the comment on the CC_ defines ** above. */ case CC_SPACE: { testcase( z[0]==' ' ); testcase( z[0]=='\t' ); testcase( z[0]=='\n' ); testcase( z[0]=='\f' ); testcase( z[0]=='\r' ); for(i=1; sqlite3Isspace(z[i]); i++){} *tokenType = TK_SPACE; return i; } case CC_MINUS: { if( z[1]=='-' ){ for(i=2; (c=z[i])!=0 && c!='\n'; i++){} *tokenType = TK_SPACE; /* IMP: R-22934-25134 */ return i; }else if( z[1]=='>' ){ *tokenType = TK_PTR; return 2 + (z[2]=='>'); } *tokenType = TK_MINUS; return 1; } case CC_LP: { *tokenType = TK_LP; return 1; } case CC_RP: { *tokenType = TK_RP; return 1; } case CC_SEMI: { *tokenType = TK_SEMI; return 1; } case CC_PLUS: { *tokenType = TK_PLUS; return 1; } case CC_STAR: { *tokenType = TK_STAR; return 1; } case CC_SLASH: { if( z[1]!='*' || z[2]==0 ){ *tokenType = TK_SLASH; return 1; } for(i=3, c=z[2]; (c!='*' || z[i]!='/') && (c=z[i])!=0; i++){} if( c ) i++; *tokenType = TK_SPACE; /* IMP: R-22934-25134 */ return i; } case CC_PERCENT: { *tokenType = TK_REM; return 1; } case CC_EQ: { *tokenType = TK_EQ; return 1 + (z[1]=='='); } case CC_LT: { if( (c=z[1])=='=' ){ *tokenType = TK_LE; return 2; }else if( c=='>' ){ *tokenType = TK_NE; return 2; }else if( c=='<' ){ *tokenType = TK_LSHIFT; return 2; }else{ *tokenType = TK_LT; return 1; } } case CC_GT: { if( (c=z[1])=='=' ){ *tokenType = TK_GE; return 2; }else if( c=='>' ){ *tokenType = TK_RSHIFT; return 2; }else{ *tokenType = TK_GT; return 1; } } case CC_BANG: { if( z[1]!='=' ){ *tokenType = TK_ILLEGAL; return 1; }else{ *tokenType = TK_NE; return 2; } } case CC_PIPE: { if( z[1]!='|' ){ *tokenType = TK_BITOR; return 1; }else{ *tokenType = TK_CONCAT; return 2; } } case CC_COMMA: { *tokenType = TK_COMMA; return 1; } case CC_AND: { *tokenType = TK_BITAND; return 1; } case CC_TILDA: { *tokenType = TK_BITNOT; return 1; } case CC_QUOTE: { int delim = z[0]; testcase( delim=='`' ); testcase( delim=='\'' ); testcase( delim=='"' ); for(i=1; (c=z[i])!=0; i++){ if( c==delim ){ if( z[i+1]==delim ){ i++; }else{ break; } } } if( c=='\'' ){ *tokenType = TK_STRING; return i+1; }else if( c!=0 ){ *tokenType = TK_ID; return i+1; }else{ *tokenType = TK_ILLEGAL; return i; } } case CC_DOT: { #ifndef SQLITE_OMIT_FLOATING_POINT if( !sqlite3Isdigit(z[1]) ) #endif { *tokenType = TK_DOT; return 1; } /* If the next character is a digit, this is a floating point ** number that begins with ".". Fall thru into the next case */ /* no break */ deliberate_fall_through } case CC_DIGIT: { testcase( z[0]=='0' ); testcase( z[0]=='1' ); testcase( z[0]=='2' ); testcase( z[0]=='3' ); testcase( z[0]=='4' ); testcase( z[0]=='5' ); testcase( z[0]=='6' ); testcase( z[0]=='7' ); testcase( z[0]=='8' ); testcase( z[0]=='9' ); *tokenType = TK_INTEGER; #ifndef SQLITE_OMIT_HEX_INTEGER if( z[0]=='0' && (z[1]=='x' || z[1]=='X') && sqlite3Isxdigit(z[2]) ){ for(i=3; sqlite3Isxdigit(z[i]); i++){} return i; } #endif for(i=0; sqlite3Isdigit(z[i]); i++){} #ifndef SQLITE_OMIT_FLOATING_POINT if( z[i]=='.' ){ i++; while( sqlite3Isdigit(z[i]) ){ i++; } *tokenType = TK_FLOAT; } if( (z[i]=='e' || z[i]=='E') && ( sqlite3Isdigit(z[i+1]) || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2])) ) ){ i += 2; while( sqlite3Isdigit(z[i]) ){ i++; } *tokenType = TK_FLOAT; } #endif while( IdChar(z[i]) ){ *tokenType = TK_ILLEGAL; i++; } return i; } case CC_QUOTE2: { for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} *tokenType = c==']' ? TK_ID : TK_ILLEGAL; return i; } case CC_VARNUM: { *tokenType = TK_VARIABLE; for(i=1; sqlite3Isdigit(z[i]); i++){} return i; } case CC_DOLLAR: case CC_VARALPHA: { int n = 0; testcase( z[0]=='$' ); testcase( z[0]=='@' ); testcase( z[0]==':' ); testcase( z[0]=='#' ); *tokenType = TK_VARIABLE; for(i=1; (c=z[i])!=0; i++){ if( IdChar(c) ){ n++; #ifndef SQLITE_OMIT_TCL_VARIABLE }else if( c=='(' && n>0 ){ do{ i++; }while( (c=z[i])!=0 && !sqlite3Isspace(c) && c!=')' ); if( c==')' ){ i++; }else{ *tokenType = TK_ILLEGAL; } break; }else if( c==':' && z[i+1]==':' ){ i++; #endif }else{ break; } } if( n==0 ) *tokenType = TK_ILLEGAL; return i; } case CC_KYWD0: { for(i=1; aiClass[z[i]]<=CC_KYWD; i++){} if( IdChar(z[i]) ){ /* This token started out using characters that can appear in keywords, ** but z[i] is a character not allowed within keywords, so this must ** be an identifier instead */ i++; break; } *tokenType = TK_ID; return keywordCode((char*)z, i, tokenType); } case CC_X: { #ifndef SQLITE_OMIT_BLOB_LITERAL testcase( z[0]=='x' ); testcase( z[0]=='X' ); if( z[1]=='\'' ){ *tokenType = TK_BLOB; for(i=2; sqlite3Isxdigit(z[i]); i++){} if( z[i]!='\'' || i%2 ){ *tokenType = TK_ILLEGAL; while( z[i] && z[i]!='\'' ){ i++; } } if( z[i] ) i++; return i; } #endif /* If it is not a BLOB literal, then it must be an ID, since no ** SQL keywords start with the letter 'x'. Fall through */ /* no break */ deliberate_fall_through } case CC_KYWD: case CC_ID: { i = 1; break; } case CC_BOM: { if( z[1]==0xbb && z[2]==0xbf ){ *tokenType = TK_SPACE; return 3; } i = 1; break; } case CC_NUL: { *tokenType = TK_ILLEGAL; return 0; } default: { *tokenType = TK_ILLEGAL; return 1; } } while( IdChar(z[i]) ){ i++; } *tokenType = TK_ID; return i; } /* ** Run the parser on the given SQL string. */ SQLITE_PRIVATE int sqlite3RunParser(Parse *pParse, const char *zSql){ int nErr = 0; /* Number of errors encountered */ void *pEngine; /* The LEMON-generated LALR(1) parser */ int n = 0; /* Length of the next token token */ int tokenType; /* type of the next token */ int lastTokenParsed = -1; /* type of the previous token */ sqlite3 *db = pParse->db; /* The database connection */ int mxSqlLen; /* Max length of an SQL string */ Parse *pParentParse = 0; /* Outer parse context, if any */ #ifdef sqlite3Parser_ENGINEALWAYSONSTACK yyParser sEngine; /* Space to hold the Lemon-generated Parser object */ #endif VVA_ONLY( u8 startedWithOom = db->mallocFailed ); assert( zSql!=0 ); mxSqlLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH]; if( db->nVdbeActive==0 ){ AtomicStore(&db->u1.isInterrupted, 0); } pParse->rc = SQLITE_OK; pParse->zTail = zSql; #ifdef SQLITE_DEBUG if( db->flags & SQLITE_ParserTrace ){ printf("parser: [[[%s]]]\n", zSql); sqlite3ParserTrace(stdout, "parser: "); }else{ sqlite3ParserTrace(0, 0); } #endif #ifdef sqlite3Parser_ENGINEALWAYSONSTACK pEngine = &sEngine; sqlite3ParserInit(pEngine, pParse); #else pEngine = sqlite3ParserAlloc(sqlite3Malloc, pParse); if( pEngine==0 ){ sqlite3OomFault(db); return SQLITE_NOMEM_BKPT; } #endif assert( pParse->pNewTable==0 ); assert( pParse->pNewTrigger==0 ); assert( pParse->nVar==0 ); assert( pParse->pVList==0 ); pParentParse = db->pParse; db->pParse = pParse; while( 1 ){ n = sqlite3GetToken((u8*)zSql, &tokenType); mxSqlLen -= n; if( mxSqlLen<0 ){ pParse->rc = SQLITE_TOOBIG; break; } #ifndef SQLITE_OMIT_WINDOWFUNC if( tokenType>=TK_WINDOW ){ assert( tokenType==TK_SPACE || tokenType==TK_OVER || tokenType==TK_FILTER || tokenType==TK_ILLEGAL || tokenType==TK_WINDOW ); #else if( tokenType>=TK_SPACE ){ assert( tokenType==TK_SPACE || tokenType==TK_ILLEGAL ); #endif /* SQLITE_OMIT_WINDOWFUNC */ if( AtomicLoad(&db->u1.isInterrupted) ){ pParse->rc = SQLITE_INTERRUPT; pParse->nErr++; break; } if( tokenType==TK_SPACE ){ zSql += n; continue; } if( zSql[0]==0 ){ /* Upon reaching the end of input, call the parser two more times ** with tokens TK_SEMI and 0, in that order. */ if( lastTokenParsed==TK_SEMI ){ tokenType = 0; }else if( lastTokenParsed==0 ){ break; }else{ tokenType = TK_SEMI; } n = 0; #ifndef SQLITE_OMIT_WINDOWFUNC }else if( tokenType==TK_WINDOW ){ assert( n==6 ); tokenType = analyzeWindowKeyword((const u8*)&zSql[6]); }else if( tokenType==TK_OVER ){ assert( n==4 ); tokenType = analyzeOverKeyword((const u8*)&zSql[4], lastTokenParsed); }else if( tokenType==TK_FILTER ){ assert( n==6 ); tokenType = analyzeFilterKeyword((const u8*)&zSql[6], lastTokenParsed); #endif /* SQLITE_OMIT_WINDOWFUNC */ }else{ Token x; x.z = zSql; x.n = n; sqlite3ErrorMsg(pParse, "unrecognized token: \"%T\"", &x); break; } } pParse->sLastToken.z = zSql; pParse->sLastToken.n = n; sqlite3Parser(pEngine, tokenType, pParse->sLastToken); lastTokenParsed = tokenType; zSql += n; assert( db->mallocFailed==0 || pParse->rc!=SQLITE_OK || startedWithOom ); if( pParse->rc!=SQLITE_OK ) break; } assert( nErr==0 ); #ifdef YYTRACKMAXSTACKDEPTH sqlite3_mutex_enter(sqlite3MallocMutex()); sqlite3StatusHighwater(SQLITE_STATUS_PARSER_STACK, sqlite3ParserStackPeak(pEngine) ); sqlite3_mutex_leave(sqlite3MallocMutex()); #endif /* YYDEBUG */ #ifdef sqlite3Parser_ENGINEALWAYSONSTACK sqlite3ParserFinalize(pEngine); #else sqlite3ParserFree(pEngine, sqlite3_free); #endif if( db->mallocFailed ){ pParse->rc = SQLITE_NOMEM_BKPT; } if( pParse->zErrMsg || (pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE) ){ if( pParse->zErrMsg==0 ){ pParse->zErrMsg = sqlite3MPrintf(db, "%s", sqlite3ErrStr(pParse->rc)); } sqlite3_log(pParse->rc, "%s in \"%s\"", pParse->zErrMsg, pParse->zTail); nErr++; } pParse->zTail = zSql; #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3_free(pParse->apVtabLock); #endif if( pParse->pNewTable && !IN_SPECIAL_PARSE ){ /* If the pParse->declareVtab flag is set, do not delete any table ** structure built up in pParse->pNewTable. The calling code (see vtab.c) ** will take responsibility for freeing the Table structure. */ sqlite3DeleteTable(db, pParse->pNewTable); } if( pParse->pNewTrigger && !IN_RENAME_OBJECT ){ sqlite3DeleteTrigger(db, pParse->pNewTrigger); } sqlite3DbFree(db, pParse->pVList); db->pParse = pParentParse; assert( nErr==0 || pParse->rc!=SQLITE_OK ); return nErr; } #ifdef SQLITE_ENABLE_NORMALIZE /* ** Insert a single space character into pStr if the current string ** ends with an identifier */ static void addSpaceSeparator(sqlite3_str *pStr){ if( pStr->nChar && sqlite3IsIdChar(pStr->zText[pStr->nChar-1]) ){ sqlite3_str_append(pStr, " ", 1); } } /* ** Compute a normalization of the SQL given by zSql[0..nSql-1]. Return ** the normalization in space obtained from sqlite3DbMalloc(). Or return ** NULL if anything goes wrong or if zSql is NULL. */ SQLITE_PRIVATE char *sqlite3Normalize( Vdbe *pVdbe, /* VM being reprepared */ const char *zSql /* The original SQL string */ ){ sqlite3 *db; /* The database connection */ int i; /* Next unread byte of zSql[] */ int n; /* length of current token */ int tokenType; /* type of current token */ int prevType = 0; /* Previous non-whitespace token */ int nParen; /* Number of nested levels of parentheses */ int iStartIN; /* Start of RHS of IN operator in z[] */ int nParenAtIN; /* Value of nParent at start of RHS of IN operator */ u32 j; /* Bytes of normalized SQL generated so far */ sqlite3_str *pStr; /* The normalized SQL string under construction */ db = sqlite3VdbeDb(pVdbe); tokenType = -1; nParen = iStartIN = nParenAtIN = 0; pStr = sqlite3_str_new(db); assert( pStr!=0 ); /* sqlite3_str_new() never returns NULL */ for(i=0; zSql[i] && pStr->accError==0; i+=n){ if( tokenType!=TK_SPACE ){ prevType = tokenType; } n = sqlite3GetToken((unsigned char*)zSql+i, &tokenType); if( NEVER(n<=0) ) break; switch( tokenType ){ case TK_SPACE: { break; } case TK_NULL: { if( prevType==TK_IS || prevType==TK_NOT ){ sqlite3_str_append(pStr, " NULL", 5); break; } /* Fall through */ } case TK_STRING: case TK_INTEGER: case TK_FLOAT: case TK_VARIABLE: case TK_BLOB: { sqlite3_str_append(pStr, "?", 1); break; } case TK_LP: { nParen++; if( prevType==TK_IN ){ iStartIN = pStr->nChar; nParenAtIN = nParen; } sqlite3_str_append(pStr, "(", 1); break; } case TK_RP: { if( iStartIN>0 && nParen==nParenAtIN ){ assert( pStr->nChar>=(u32)iStartIN ); pStr->nChar = iStartIN+1; sqlite3_str_append(pStr, "?,?,?", 5); iStartIN = 0; } nParen--; sqlite3_str_append(pStr, ")", 1); break; } case TK_ID: { iStartIN = 0; j = pStr->nChar; if( sqlite3Isquote(zSql[i]) ){ char *zId = sqlite3DbStrNDup(db, zSql+i, n); int nId; int eType = 0; if( zId==0 ) break; sqlite3Dequote(zId); if( zSql[i]=='"' && sqlite3VdbeUsesDoubleQuotedString(pVdbe, zId) ){ sqlite3_str_append(pStr, "?", 1); sqlite3DbFree(db, zId); break; } nId = sqlite3Strlen30(zId); if( sqlite3GetToken((u8*)zId, &eType)==nId && eType==TK_ID ){ addSpaceSeparator(pStr); sqlite3_str_append(pStr, zId, nId); }else{ sqlite3_str_appendf(pStr, "\"%w\"", zId); } sqlite3DbFree(db, zId); }else{ addSpaceSeparator(pStr); sqlite3_str_append(pStr, zSql+i, n); } while( jnChar ){ pStr->zText[j] = sqlite3Tolower(pStr->zText[j]); j++; } break; } case TK_SELECT: { iStartIN = 0; /* fall through */ } default: { if( sqlite3IsIdChar(zSql[i]) ) addSpaceSeparator(pStr); j = pStr->nChar; sqlite3_str_append(pStr, zSql+i, n); while( jnChar ){ pStr->zText[j] = sqlite3Toupper(pStr->zText[j]); j++; } break; } } } if( tokenType!=TK_SEMI ) sqlite3_str_append(pStr, ";", 1); return sqlite3_str_finish(pStr); } #endif /* SQLITE_ENABLE_NORMALIZE */ /************** End of tokenize.c ********************************************/ /************** Begin file complete.c ****************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** An tokenizer for SQL ** ** This file contains C code that implements the sqlite3_complete() API. ** This code used to be part of the tokenizer.c source file. But by ** separating it out, the code will be automatically omitted from ** static links that do not use it. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_COMPLETE /* ** This is defined in tokenize.c. We just have to import the definition. */ #ifndef SQLITE_AMALGAMATION #ifdef SQLITE_ASCII #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0) #endif #ifdef SQLITE_EBCDIC SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[]; #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) #endif #endif /* SQLITE_AMALGAMATION */ /* ** Token types used by the sqlite3_complete() routine. See the header ** comments on that procedure for additional information. */ #define tkSEMI 0 #define tkWS 1 #define tkOTHER 2 #ifndef SQLITE_OMIT_TRIGGER #define tkEXPLAIN 3 #define tkCREATE 4 #define tkTEMP 5 #define tkTRIGGER 6 #define tkEND 7 #endif /* ** Return TRUE if the given SQL string ends in a semicolon. ** ** Special handling is require for CREATE TRIGGER statements. ** Whenever the CREATE TRIGGER keywords are seen, the statement ** must end with ";END;". ** ** This implementation uses a state machine with 8 states: ** ** (0) INVALID We have not yet seen a non-whitespace character. ** ** (1) START At the beginning or end of an SQL statement. This routine ** returns 1 if it ends in the START state and 0 if it ends ** in any other state. ** ** (2) NORMAL We are in the middle of statement which ends with a single ** semicolon. ** ** (3) EXPLAIN The keyword EXPLAIN has been seen at the beginning of ** a statement. ** ** (4) CREATE The keyword CREATE has been seen at the beginning of a ** statement, possibly preceded by EXPLAIN and/or followed by ** TEMP or TEMPORARY ** ** (5) TRIGGER We are in the middle of a trigger definition that must be ** ended by a semicolon, the keyword END, and another semicolon. ** ** (6) SEMI We've seen the first semicolon in the ";END;" that occurs at ** the end of a trigger definition. ** ** (7) END We've seen the ";END" of the ";END;" that occurs at the end ** of a trigger definition. ** ** Transitions between states above are determined by tokens extracted ** from the input. The following tokens are significant: ** ** (0) tkSEMI A semicolon. ** (1) tkWS Whitespace. ** (2) tkOTHER Any other SQL token. ** (3) tkEXPLAIN The "explain" keyword. ** (4) tkCREATE The "create" keyword. ** (5) tkTEMP The "temp" or "temporary" keyword. ** (6) tkTRIGGER The "trigger" keyword. ** (7) tkEND The "end" keyword. ** ** Whitespace never causes a state transition and is always ignored. ** This means that a SQL string of all whitespace is invalid. ** ** If we compile with SQLITE_OMIT_TRIGGER, all of the computation needed ** to recognize the end of a trigger can be omitted. All we have to do ** is look for a semicolon that is not part of an string or comment. */ SQLITE_API int sqlite3_complete(const char *zSql){ u8 state = 0; /* Current state, using numbers defined in header comment */ u8 token; /* Value of the next token */ #ifndef SQLITE_OMIT_TRIGGER /* A complex statement machine used to detect the end of a CREATE TRIGGER ** statement. This is the normal case. */ static const u8 trans[8][8] = { /* Token: */ /* State: ** SEMI WS OTHER EXPLAIN CREATE TEMP TRIGGER END */ /* 0 INVALID: */ { 1, 0, 2, 3, 4, 2, 2, 2, }, /* 1 START: */ { 1, 1, 2, 3, 4, 2, 2, 2, }, /* 2 NORMAL: */ { 1, 2, 2, 2, 2, 2, 2, 2, }, /* 3 EXPLAIN: */ { 1, 3, 3, 2, 4, 2, 2, 2, }, /* 4 CREATE: */ { 1, 4, 2, 2, 2, 4, 5, 2, }, /* 5 TRIGGER: */ { 6, 5, 5, 5, 5, 5, 5, 5, }, /* 6 SEMI: */ { 6, 6, 5, 5, 5, 5, 5, 7, }, /* 7 END: */ { 1, 7, 5, 5, 5, 5, 5, 5, }, }; #else /* If triggers are not supported by this compile then the statement machine ** used to detect the end of a statement is much simpler */ static const u8 trans[3][3] = { /* Token: */ /* State: ** SEMI WS OTHER */ /* 0 INVALID: */ { 1, 0, 2, }, /* 1 START: */ { 1, 1, 2, }, /* 2 NORMAL: */ { 1, 2, 2, }, }; #endif /* SQLITE_OMIT_TRIGGER */ #ifdef SQLITE_ENABLE_API_ARMOR if( zSql==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif while( *zSql ){ switch( *zSql ){ case ';': { /* A semicolon */ token = tkSEMI; break; } case ' ': case '\r': case '\t': case '\n': case '\f': { /* White space is ignored */ token = tkWS; break; } case '/': { /* C-style comments */ if( zSql[1]!='*' ){ token = tkOTHER; break; } zSql += 2; while( zSql[0] && (zSql[0]!='*' || zSql[1]!='/') ){ zSql++; } if( zSql[0]==0 ) return 0; zSql++; token = tkWS; break; } case '-': { /* SQL-style comments from "--" to end of line */ if( zSql[1]!='-' ){ token = tkOTHER; break; } while( *zSql && *zSql!='\n' ){ zSql++; } if( *zSql==0 ) return state==1; token = tkWS; break; } case '[': { /* Microsoft-style identifiers in [...] */ zSql++; while( *zSql && *zSql!=']' ){ zSql++; } if( *zSql==0 ) return 0; token = tkOTHER; break; } case '`': /* Grave-accent quoted symbols used by MySQL */ case '"': /* single- and double-quoted strings */ case '\'': { int c = *zSql; zSql++; while( *zSql && *zSql!=c ){ zSql++; } if( *zSql==0 ) return 0; token = tkOTHER; break; } default: { #ifdef SQLITE_EBCDIC unsigned char c; #endif if( IdChar((u8)*zSql) ){ /* Keywords and unquoted identifiers */ int nId; for(nId=1; IdChar(zSql[nId]); nId++){} #ifdef SQLITE_OMIT_TRIGGER token = tkOTHER; #else switch( *zSql ){ case 'c': case 'C': { if( nId==6 && sqlite3StrNICmp(zSql, "create", 6)==0 ){ token = tkCREATE; }else{ token = tkOTHER; } break; } case 't': case 'T': { if( nId==7 && sqlite3StrNICmp(zSql, "trigger", 7)==0 ){ token = tkTRIGGER; }else if( nId==4 && sqlite3StrNICmp(zSql, "temp", 4)==0 ){ token = tkTEMP; }else if( nId==9 && sqlite3StrNICmp(zSql, "temporary", 9)==0 ){ token = tkTEMP; }else{ token = tkOTHER; } break; } case 'e': case 'E': { if( nId==3 && sqlite3StrNICmp(zSql, "end", 3)==0 ){ token = tkEND; }else #ifndef SQLITE_OMIT_EXPLAIN if( nId==7 && sqlite3StrNICmp(zSql, "explain", 7)==0 ){ token = tkEXPLAIN; }else #endif { token = tkOTHER; } break; } default: { token = tkOTHER; break; } } #endif /* SQLITE_OMIT_TRIGGER */ zSql += nId-1; }else{ /* Operators and special symbols */ token = tkOTHER; } break; } } state = trans[state][token]; zSql++; } return state==1; } #ifndef SQLITE_OMIT_UTF16 /* ** This routine is the same as the sqlite3_complete() routine described ** above, except that the parameter is required to be UTF-16 encoded, not ** UTF-8. */ SQLITE_API int sqlite3_complete16(const void *zSql){ sqlite3_value *pVal; char const *zSql8; int rc; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ) return rc; #endif pVal = sqlite3ValueNew(0); sqlite3ValueSetStr(pVal, -1, zSql, SQLITE_UTF16NATIVE, SQLITE_STATIC); zSql8 = sqlite3ValueText(pVal, SQLITE_UTF8); if( zSql8 ){ rc = sqlite3_complete(zSql8); }else{ rc = SQLITE_NOMEM_BKPT; } sqlite3ValueFree(pVal); return rc & 0xff; } #endif /* SQLITE_OMIT_UTF16 */ #endif /* SQLITE_OMIT_COMPLETE */ /************** End of complete.c ********************************************/ /************** Begin file main.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. */ /* #include "sqliteInt.h" */ #ifdef SQLITE_ENABLE_FTS3 /************** Include fts3.h in the middle of main.c ***********************/ /************** Begin file fts3.h ********************************************/ /* ** 2006 Oct 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file is used by programs that want to link against the ** FTS3 library. All it does is declare the sqlite3Fts3Init() interface. */ /* #include "sqlite3.h" */ #if 0 extern "C" { #endif /* __cplusplus */ SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db); #if 0 } /* extern "C" */ #endif /* __cplusplus */ /************** End of fts3.h ************************************************/ /************** Continuing where we left off in main.c ***********************/ #endif #ifdef SQLITE_ENABLE_RTREE /************** Include rtree.h in the middle of main.c **********************/ /************** Begin file rtree.h *******************************************/ /* ** 2008 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file is used by programs that want to link against the ** RTREE library. All it does is declare the sqlite3RtreeInit() interface. */ /* #include "sqlite3.h" */ #ifdef SQLITE_OMIT_VIRTUALTABLE # undef SQLITE_ENABLE_RTREE #endif #if 0 extern "C" { #endif /* __cplusplus */ SQLITE_PRIVATE int sqlite3RtreeInit(sqlite3 *db); #if 0 } /* extern "C" */ #endif /* __cplusplus */ /************** End of rtree.h ***********************************************/ /************** Continuing where we left off in main.c ***********************/ #endif #if defined(SQLITE_ENABLE_ICU) || defined(SQLITE_ENABLE_ICU_COLLATIONS) /************** Include sqliteicu.h in the middle of main.c ******************/ /************** Begin file sqliteicu.h ***************************************/ /* ** 2008 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file is used by programs that want to link against the ** ICU extension. All it does is declare the sqlite3IcuInit() interface. */ /* #include "sqlite3.h" */ #if 0 extern "C" { #endif /* __cplusplus */ SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db); #if 0 } /* extern "C" */ #endif /* __cplusplus */ /************** End of sqliteicu.h *******************************************/ /************** Continuing where we left off in main.c ***********************/ #endif /* ** This is an extension initializer that is a no-op and always ** succeeds, except that it fails if the fault-simulation is set ** to 500. */ static int sqlite3TestExtInit(sqlite3 *db){ (void)db; return sqlite3FaultSim(500); } /* ** Forward declarations of external module initializer functions ** for modules that need them. */ #ifdef SQLITE_ENABLE_FTS1 SQLITE_PRIVATE int sqlite3Fts1Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_FTS2 SQLITE_PRIVATE int sqlite3Fts2Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_FTS5 SQLITE_PRIVATE int sqlite3Fts5Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_STMTVTAB SQLITE_PRIVATE int sqlite3StmtVtabInit(sqlite3*); #endif /* ** An array of pointers to extension initializer functions for ** built-in extensions. */ static int (*const sqlite3BuiltinExtensions[])(sqlite3*) = { #ifdef SQLITE_ENABLE_FTS1 sqlite3Fts1Init, #endif #ifdef SQLITE_ENABLE_FTS2 sqlite3Fts2Init, #endif #ifdef SQLITE_ENABLE_FTS3 sqlite3Fts3Init, #endif #ifdef SQLITE_ENABLE_FTS5 sqlite3Fts5Init, #endif #if defined(SQLITE_ENABLE_ICU) || defined(SQLITE_ENABLE_ICU_COLLATIONS) sqlite3IcuInit, #endif #ifdef SQLITE_ENABLE_RTREE sqlite3RtreeInit, #endif #ifdef SQLITE_ENABLE_DBPAGE_VTAB sqlite3DbpageRegister, #endif #ifdef SQLITE_ENABLE_DBSTAT_VTAB sqlite3DbstatRegister, #endif sqlite3TestExtInit, #if !defined(SQLITE_OMIT_VIRTUALTABLE) && !defined(SQLITE_OMIT_JSON) sqlite3JsonTableFunctions, #endif #ifdef SQLITE_ENABLE_STMTVTAB sqlite3StmtVtabInit, #endif #ifdef SQLITE_ENABLE_BYTECODE_VTAB sqlite3VdbeBytecodeVtabInit, #endif }; #ifndef SQLITE_AMALGAMATION /* IMPLEMENTATION-OF: R-46656-45156 The sqlite3_version[] string constant ** contains the text of SQLITE_VERSION macro. */ SQLITE_API const char sqlite3_version[] = SQLITE_VERSION; #endif /* IMPLEMENTATION-OF: R-53536-42575 The sqlite3_libversion() function returns ** a pointer to the to the sqlite3_version[] string constant. */ SQLITE_API const char *sqlite3_libversion(void){ return sqlite3_version; } /* IMPLEMENTATION-OF: R-25063-23286 The sqlite3_sourceid() function returns a ** pointer to a string constant whose value is the same as the ** SQLITE_SOURCE_ID C preprocessor macro. Except if SQLite is built using ** an edited copy of the amalgamation, then the last four characters of ** the hash might be different from SQLITE_SOURCE_ID. */ /* SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; } */ /* IMPLEMENTATION-OF: R-35210-63508 The sqlite3_libversion_number() function ** returns an integer equal to SQLITE_VERSION_NUMBER. */ SQLITE_API int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; } /* IMPLEMENTATION-OF: R-20790-14025 The sqlite3_threadsafe() function returns ** zero if and only if SQLite was compiled with mutexing code omitted due to ** the SQLITE_THREADSAFE compile-time option being set to 0. */ SQLITE_API int sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; } /* ** When compiling the test fixture or with debugging enabled (on Win32), ** this variable being set to non-zero will cause OSTRACE macros to emit ** extra diagnostic information. */ #ifdef SQLITE_HAVE_OS_TRACE # ifndef SQLITE_DEBUG_OS_TRACE # define SQLITE_DEBUG_OS_TRACE 0 # endif int sqlite3OSTrace = SQLITE_DEBUG_OS_TRACE; #endif #if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) /* ** If the following function pointer is not NULL and if ** SQLITE_ENABLE_IOTRACE is enabled, then messages describing ** I/O active are written using this function. These messages ** are intended for debugging activity only. */ SQLITE_API void (SQLITE_CDECL *sqlite3IoTrace)(const char*, ...) = 0; #endif /* ** If the following global variable points to a string which is the ** name of a directory, then that directory will be used to store ** temporary files. ** ** See also the "PRAGMA temp_store_directory" SQL command. */ SQLITE_API char *sqlite3_temp_directory = 0; /* ** If the following global variable points to a string which is the ** name of a directory, then that directory will be used to store ** all database files specified with a relative pathname. ** ** See also the "PRAGMA data_store_directory" SQL command. */ SQLITE_API char *sqlite3_data_directory = 0; /* ** Initialize SQLite. ** ** This routine must be called to initialize the memory allocation, ** VFS, and mutex subsystems prior to doing any serious work with ** SQLite. But as long as you do not compile with SQLITE_OMIT_AUTOINIT ** this routine will be called automatically by key routines such as ** sqlite3_open(). ** ** This routine is a no-op except on its very first call for the process, ** or for the first call after a call to sqlite3_shutdown. ** ** The first thread to call this routine runs the initialization to ** completion. If subsequent threads call this routine before the first ** thread has finished the initialization process, then the subsequent ** threads must block until the first thread finishes with the initialization. ** ** The first thread might call this routine recursively. Recursive ** calls to this routine should not block, of course. Otherwise the ** initialization process would never complete. ** ** Let X be the first thread to enter this routine. Let Y be some other ** thread. Then while the initial invocation of this routine by X is ** incomplete, it is required that: ** ** * Calls to this routine from Y must block until the outer-most ** call by X completes. ** ** * Recursive calls to this routine from thread X return immediately ** without blocking. */ SQLITE_API int sqlite3_initialize(void){ MUTEX_LOGIC( sqlite3_mutex *pMainMtx; ) /* The main static mutex */ int rc; /* Result code */ #ifdef SQLITE_EXTRA_INIT int bRunExtraInit = 0; /* Extra initialization needed */ #endif #ifdef SQLITE_OMIT_WSD rc = sqlite3_wsd_init(4096, 24); if( rc!=SQLITE_OK ){ return rc; } #endif /* If the following assert() fails on some obscure processor/compiler ** combination, the work-around is to set the correct pointer ** size at compile-time using -DSQLITE_PTRSIZE=n compile-time option */ assert( SQLITE_PTRSIZE==sizeof(char*) ); /* If SQLite is already completely initialized, then this call ** to sqlite3_initialize() should be a no-op. But the initialization ** must be complete. So isInit must not be set until the very end ** of this routine. */ if( sqlite3GlobalConfig.isInit ){ sqlite3MemoryBarrier(); return SQLITE_OK; } /* Make sure the mutex subsystem is initialized. If unable to ** initialize the mutex subsystem, return early with the error. ** If the system is so sick that we are unable to allocate a mutex, ** there is not much SQLite is going to be able to do. ** ** The mutex subsystem must take care of serializing its own ** initialization. */ rc = sqlite3MutexInit(); if( rc ) return rc; /* Initialize the malloc() system and the recursive pInitMutex mutex. ** This operation is protected by the STATIC_MAIN mutex. Note that ** MutexAlloc() is called for a static mutex prior to initializing the ** malloc subsystem - this implies that the allocation of a static ** mutex must not require support from the malloc subsystem. */ MUTEX_LOGIC( pMainMtx = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(pMainMtx); sqlite3GlobalConfig.isMutexInit = 1; if( !sqlite3GlobalConfig.isMallocInit ){ rc = sqlite3MallocInit(); } if( rc==SQLITE_OK ){ sqlite3GlobalConfig.isMallocInit = 1; if( !sqlite3GlobalConfig.pInitMutex ){ sqlite3GlobalConfig.pInitMutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE); if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ rc = SQLITE_NOMEM_BKPT; } } } if( rc==SQLITE_OK ){ sqlite3GlobalConfig.nRefInitMutex++; } sqlite3_mutex_leave(pMainMtx); /* If rc is not SQLITE_OK at this point, then either the malloc ** subsystem could not be initialized or the system failed to allocate ** the pInitMutex mutex. Return an error in either case. */ if( rc!=SQLITE_OK ){ return rc; } /* Do the rest of the initialization under the recursive mutex so ** that we will be able to handle recursive calls into ** sqlite3_initialize(). The recursive calls normally come through ** sqlite3_os_init() when it invokes sqlite3_vfs_register(), but other ** recursive calls might also be possible. ** ** IMPLEMENTATION-OF: R-00140-37445 SQLite automatically serializes calls ** to the xInit method, so the xInit method need not be threadsafe. ** ** The following mutex is what serializes access to the appdef pcache xInit ** methods. The sqlite3_pcache_methods.xInit() all is embedded in the ** call to sqlite3PcacheInitialize(). */ sqlite3_mutex_enter(sqlite3GlobalConfig.pInitMutex); if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ sqlite3GlobalConfig.inProgress = 1; #ifdef SQLITE_ENABLE_SQLLOG { extern void sqlite3_init_sqllog(void); sqlite3_init_sqllog(); } #endif memset(&sqlite3BuiltinFunctions, 0, sizeof(sqlite3BuiltinFunctions)); sqlite3RegisterBuiltinFunctions(); if( sqlite3GlobalConfig.isPCacheInit==0 ){ rc = sqlite3PcacheInitialize(); } if( rc==SQLITE_OK ){ sqlite3GlobalConfig.isPCacheInit = 1; rc = sqlite3OsInit(); } #ifndef SQLITE_OMIT_DESERIALIZE if( rc==SQLITE_OK ){ rc = sqlite3MemdbInit(); } #endif if( rc==SQLITE_OK ){ sqlite3PCacheBufferSetup( sqlite3GlobalConfig.pPage, sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); sqlite3MemoryBarrier(); sqlite3GlobalConfig.isInit = 1; #ifdef SQLITE_EXTRA_INIT bRunExtraInit = 1; #endif } sqlite3GlobalConfig.inProgress = 0; } sqlite3_mutex_leave(sqlite3GlobalConfig.pInitMutex); /* Go back under the static mutex and clean up the recursive ** mutex to prevent a resource leak. */ sqlite3_mutex_enter(pMainMtx); sqlite3GlobalConfig.nRefInitMutex--; if( sqlite3GlobalConfig.nRefInitMutex<=0 ){ assert( sqlite3GlobalConfig.nRefInitMutex==0 ); sqlite3_mutex_free(sqlite3GlobalConfig.pInitMutex); sqlite3GlobalConfig.pInitMutex = 0; } sqlite3_mutex_leave(pMainMtx); /* The following is just a sanity check to make sure SQLite has ** been compiled correctly. It is important to run this code, but ** we don't want to run it too often and soak up CPU cycles for no ** reason. So we run it once during initialization. */ #ifndef NDEBUG #ifndef SQLITE_OMIT_FLOATING_POINT /* This section of code's only "output" is via assert() statements. */ if( rc==SQLITE_OK ){ u64 x = (((u64)1)<<63)-1; double y; assert(sizeof(x)==8); assert(sizeof(x)==sizeof(y)); memcpy(&y, &x, 8); assert( sqlite3IsNaN(y) ); } #endif #endif /* Do extra initialization steps requested by the SQLITE_EXTRA_INIT ** compile-time option. */ #ifdef SQLITE_EXTRA_INIT if( bRunExtraInit ){ int SQLITE_EXTRA_INIT(const char*); rc = SQLITE_EXTRA_INIT(0); } #endif return rc; } /* ** Undo the effects of sqlite3_initialize(). Must not be called while ** there are outstanding database connections or memory allocations or ** while any part of SQLite is otherwise in use in any thread. This ** routine is not threadsafe. But it is safe to invoke this routine ** on when SQLite is already shut down. If SQLite is already shut down ** when this routine is invoked, then this routine is a harmless no-op. */ SQLITE_API int sqlite3_shutdown(void){ #ifdef SQLITE_OMIT_WSD int rc = sqlite3_wsd_init(4096, 24); if( rc!=SQLITE_OK ){ return rc; } #endif if( sqlite3GlobalConfig.isInit ){ #ifdef SQLITE_EXTRA_SHUTDOWN void SQLITE_EXTRA_SHUTDOWN(void); SQLITE_EXTRA_SHUTDOWN(); #endif sqlite3_os_end(); sqlite3_reset_auto_extension(); sqlite3GlobalConfig.isInit = 0; } if( sqlite3GlobalConfig.isPCacheInit ){ sqlite3PcacheShutdown(); sqlite3GlobalConfig.isPCacheInit = 0; } if( sqlite3GlobalConfig.isMallocInit ){ sqlite3MallocEnd(); sqlite3GlobalConfig.isMallocInit = 0; #ifndef SQLITE_OMIT_SHUTDOWN_DIRECTORIES /* The heap subsystem has now been shutdown and these values are supposed ** to be NULL or point to memory that was obtained from sqlite3_malloc(), ** which would rely on that heap subsystem; therefore, make sure these ** values cannot refer to heap memory that was just invalidated when the ** heap subsystem was shutdown. This is only done if the current call to ** this function resulted in the heap subsystem actually being shutdown. */ sqlite3_data_directory = 0; sqlite3_temp_directory = 0; #endif } if( sqlite3GlobalConfig.isMutexInit ){ sqlite3MutexEnd(); sqlite3GlobalConfig.isMutexInit = 0; } return SQLITE_OK; } /* ** This API allows applications to modify the global configuration of ** the SQLite library at run-time. ** ** This routine should only be called when there are no outstanding ** database connections or memory allocations. This routine is not ** threadsafe. Failure to heed these warnings can lead to unpredictable ** behavior. */ SQLITE_API int sqlite3_config(int op, ...){ va_list ap; int rc = SQLITE_OK; /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while ** the SQLite library is in use. */ if( sqlite3GlobalConfig.isInit ) return SQLITE_MISUSE_BKPT; va_start(ap, op); switch( op ){ /* Mutex configuration options are only available in a threadsafe ** compile. */ #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-54466-46756 */ case SQLITE_CONFIG_SINGLETHREAD: { /* EVIDENCE-OF: R-02748-19096 This option sets the threading mode to ** Single-thread. */ sqlite3GlobalConfig.bCoreMutex = 0; /* Disable mutex on core */ sqlite3GlobalConfig.bFullMutex = 0; /* Disable mutex on connections */ break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-20520-54086 */ case SQLITE_CONFIG_MULTITHREAD: { /* EVIDENCE-OF: R-14374-42468 This option sets the threading mode to ** Multi-thread. */ sqlite3GlobalConfig.bCoreMutex = 1; /* Enable mutex on core */ sqlite3GlobalConfig.bFullMutex = 0; /* Disable mutex on connections */ break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-59593-21810 */ case SQLITE_CONFIG_SERIALIZED: { /* EVIDENCE-OF: R-41220-51800 This option sets the threading mode to ** Serialized. */ sqlite3GlobalConfig.bCoreMutex = 1; /* Enable mutex on core */ sqlite3GlobalConfig.bFullMutex = 1; /* Enable mutex on connections */ break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-63666-48755 */ case SQLITE_CONFIG_MUTEX: { /* Specify an alternative mutex implementation */ sqlite3GlobalConfig.mutex = *va_arg(ap, sqlite3_mutex_methods*); break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-14450-37597 */ case SQLITE_CONFIG_GETMUTEX: { /* Retrieve the current mutex implementation */ *va_arg(ap, sqlite3_mutex_methods*) = sqlite3GlobalConfig.mutex; break; } #endif case SQLITE_CONFIG_MALLOC: { /* EVIDENCE-OF: R-55594-21030 The SQLITE_CONFIG_MALLOC option takes a ** single argument which is a pointer to an instance of the ** sqlite3_mem_methods structure. The argument specifies alternative ** low-level memory allocation routines to be used in place of the memory ** allocation routines built into SQLite. */ sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*); break; } case SQLITE_CONFIG_GETMALLOC: { /* EVIDENCE-OF: R-51213-46414 The SQLITE_CONFIG_GETMALLOC option takes a ** single argument which is a pointer to an instance of the ** sqlite3_mem_methods structure. The sqlite3_mem_methods structure is ** filled with the currently defined memory allocation routines. */ if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault(); *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m; break; } case SQLITE_CONFIG_MEMSTATUS: { /* EVIDENCE-OF: R-61275-35157 The SQLITE_CONFIG_MEMSTATUS option takes ** single argument of type int, interpreted as a boolean, which enables ** or disables the collection of memory allocation statistics. */ sqlite3GlobalConfig.bMemstat = va_arg(ap, int); break; } case SQLITE_CONFIG_SMALL_MALLOC: { sqlite3GlobalConfig.bSmallMalloc = va_arg(ap, int); break; } case SQLITE_CONFIG_PAGECACHE: { /* EVIDENCE-OF: R-18761-36601 There are three arguments to ** SQLITE_CONFIG_PAGECACHE: A pointer to 8-byte aligned memory (pMem), ** the size of each page cache line (sz), and the number of cache lines ** (N). */ sqlite3GlobalConfig.pPage = va_arg(ap, void*); sqlite3GlobalConfig.szPage = va_arg(ap, int); sqlite3GlobalConfig.nPage = va_arg(ap, int); break; } case SQLITE_CONFIG_PCACHE_HDRSZ: { /* EVIDENCE-OF: R-39100-27317 The SQLITE_CONFIG_PCACHE_HDRSZ option takes ** a single parameter which is a pointer to an integer and writes into ** that integer the number of extra bytes per page required for each page ** in SQLITE_CONFIG_PAGECACHE. */ *va_arg(ap, int*) = sqlite3HeaderSizeBtree() + sqlite3HeaderSizePcache() + sqlite3HeaderSizePcache1(); break; } case SQLITE_CONFIG_PCACHE: { /* no-op */ break; } case SQLITE_CONFIG_GETPCACHE: { /* now an error */ rc = SQLITE_ERROR; break; } case SQLITE_CONFIG_PCACHE2: { /* EVIDENCE-OF: R-63325-48378 The SQLITE_CONFIG_PCACHE2 option takes a ** single argument which is a pointer to an sqlite3_pcache_methods2 ** object. This object specifies the interface to a custom page cache ** implementation. */ sqlite3GlobalConfig.pcache2 = *va_arg(ap, sqlite3_pcache_methods2*); break; } case SQLITE_CONFIG_GETPCACHE2: { /* EVIDENCE-OF: R-22035-46182 The SQLITE_CONFIG_GETPCACHE2 option takes a ** single argument which is a pointer to an sqlite3_pcache_methods2 ** object. SQLite copies of the current page cache implementation into ** that object. */ if( sqlite3GlobalConfig.pcache2.xInit==0 ){ sqlite3PCacheSetDefault(); } *va_arg(ap, sqlite3_pcache_methods2*) = sqlite3GlobalConfig.pcache2; break; } /* EVIDENCE-OF: R-06626-12911 The SQLITE_CONFIG_HEAP option is only ** available if SQLite is compiled with either SQLITE_ENABLE_MEMSYS3 or ** SQLITE_ENABLE_MEMSYS5 and returns SQLITE_ERROR if invoked otherwise. */ #if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5) case SQLITE_CONFIG_HEAP: { /* EVIDENCE-OF: R-19854-42126 There are three arguments to ** SQLITE_CONFIG_HEAP: An 8-byte aligned pointer to the memory, the ** number of bytes in the memory buffer, and the minimum allocation size. */ sqlite3GlobalConfig.pHeap = va_arg(ap, void*); sqlite3GlobalConfig.nHeap = va_arg(ap, int); sqlite3GlobalConfig.mnReq = va_arg(ap, int); if( sqlite3GlobalConfig.mnReq<1 ){ sqlite3GlobalConfig.mnReq = 1; }else if( sqlite3GlobalConfig.mnReq>(1<<12) ){ /* cap min request size at 2^12 */ sqlite3GlobalConfig.mnReq = (1<<12); } if( sqlite3GlobalConfig.pHeap==0 ){ /* EVIDENCE-OF: R-49920-60189 If the first pointer (the memory pointer) ** is NULL, then SQLite reverts to using its default memory allocator ** (the system malloc() implementation), undoing any prior invocation of ** SQLITE_CONFIG_MALLOC. ** ** Setting sqlite3GlobalConfig.m to all zeros will cause malloc to ** revert to its default implementation when sqlite3_initialize() is run */ memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); }else{ /* EVIDENCE-OF: R-61006-08918 If the memory pointer is not NULL then the ** alternative memory allocator is engaged to handle all of SQLites ** memory allocation needs. */ #ifdef SQLITE_ENABLE_MEMSYS3 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys3(); #endif #ifdef SQLITE_ENABLE_MEMSYS5 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys5(); #endif } break; } #endif case SQLITE_CONFIG_LOOKASIDE: { sqlite3GlobalConfig.szLookaside = va_arg(ap, int); sqlite3GlobalConfig.nLookaside = va_arg(ap, int); break; } /* Record a pointer to the logger function and its first argument. ** The default is NULL. Logging is disabled if the function pointer is ** NULL. */ case SQLITE_CONFIG_LOG: { /* MSVC is picky about pulling func ptrs from va lists. ** http://support.microsoft.com/kb/47961 ** sqlite3GlobalConfig.xLog = va_arg(ap, void(*)(void*,int,const char*)); */ typedef void(*LOGFUNC_t)(void*,int,const char*); sqlite3GlobalConfig.xLog = va_arg(ap, LOGFUNC_t); sqlite3GlobalConfig.pLogArg = va_arg(ap, void*); break; } /* EVIDENCE-OF: R-55548-33817 The compile-time setting for URI filenames ** can be changed at start-time using the ** sqlite3_config(SQLITE_CONFIG_URI,1) or ** sqlite3_config(SQLITE_CONFIG_URI,0) configuration calls. */ case SQLITE_CONFIG_URI: { /* EVIDENCE-OF: R-25451-61125 The SQLITE_CONFIG_URI option takes a single ** argument of type int. If non-zero, then URI handling is globally ** enabled. If the parameter is zero, then URI handling is globally ** disabled. */ sqlite3GlobalConfig.bOpenUri = va_arg(ap, int); break; } case SQLITE_CONFIG_COVERING_INDEX_SCAN: { /* EVIDENCE-OF: R-36592-02772 The SQLITE_CONFIG_COVERING_INDEX_SCAN ** option takes a single integer argument which is interpreted as a ** boolean in order to enable or disable the use of covering indices for ** full table scans in the query optimizer. */ sqlite3GlobalConfig.bUseCis = va_arg(ap, int); break; } #ifdef SQLITE_ENABLE_SQLLOG case SQLITE_CONFIG_SQLLOG: { typedef void(*SQLLOGFUNC_t)(void*, sqlite3*, const char*, int); sqlite3GlobalConfig.xSqllog = va_arg(ap, SQLLOGFUNC_t); sqlite3GlobalConfig.pSqllogArg = va_arg(ap, void *); break; } #endif case SQLITE_CONFIG_MMAP_SIZE: { /* EVIDENCE-OF: R-58063-38258 SQLITE_CONFIG_MMAP_SIZE takes two 64-bit ** integer (sqlite3_int64) values that are the default mmap size limit ** (the default setting for PRAGMA mmap_size) and the maximum allowed ** mmap size limit. */ sqlite3_int64 szMmap = va_arg(ap, sqlite3_int64); sqlite3_int64 mxMmap = va_arg(ap, sqlite3_int64); /* EVIDENCE-OF: R-53367-43190 If either argument to this option is ** negative, then that argument is changed to its compile-time default. ** ** EVIDENCE-OF: R-34993-45031 The maximum allowed mmap size will be ** silently truncated if necessary so that it does not exceed the ** compile-time maximum mmap size set by the SQLITE_MAX_MMAP_SIZE ** compile-time option. */ if( mxMmap<0 || mxMmap>SQLITE_MAX_MMAP_SIZE ){ mxMmap = SQLITE_MAX_MMAP_SIZE; } if( szMmap<0 ) szMmap = SQLITE_DEFAULT_MMAP_SIZE; if( szMmap>mxMmap) szMmap = mxMmap; sqlite3GlobalConfig.mxMmap = mxMmap; sqlite3GlobalConfig.szMmap = szMmap; break; } #if SQLITE_OS_WIN && defined(SQLITE_WIN32_MALLOC) /* IMP: R-04780-55815 */ case SQLITE_CONFIG_WIN32_HEAPSIZE: { /* EVIDENCE-OF: R-34926-03360 SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit ** unsigned integer value that specifies the maximum size of the created ** heap. */ sqlite3GlobalConfig.nHeap = va_arg(ap, int); break; } #endif case SQLITE_CONFIG_PMASZ: { sqlite3GlobalConfig.szPma = va_arg(ap, unsigned int); break; } case SQLITE_CONFIG_STMTJRNL_SPILL: { sqlite3GlobalConfig.nStmtSpill = va_arg(ap, int); break; } #ifdef SQLITE_ENABLE_SORTER_REFERENCES case SQLITE_CONFIG_SORTERREF_SIZE: { int iVal = va_arg(ap, int); if( iVal<0 ){ iVal = SQLITE_DEFAULT_SORTERREF_SIZE; } sqlite3GlobalConfig.szSorterRef = (u32)iVal; break; } #endif /* SQLITE_ENABLE_SORTER_REFERENCES */ #ifndef SQLITE_OMIT_DESERIALIZE case SQLITE_CONFIG_MEMDB_MAXSIZE: { sqlite3GlobalConfig.mxMemdbSize = va_arg(ap, sqlite3_int64); break; } #endif /* SQLITE_OMIT_DESERIALIZE */ default: { rc = SQLITE_ERROR; break; } } va_end(ap); return rc; } /* ** Set up the lookaside buffers for a database connection. ** Return SQLITE_OK on success. ** If lookaside is already active, return SQLITE_BUSY. ** ** The sz parameter is the number of bytes in each lookaside slot. ** The cnt parameter is the number of slots. If pStart is NULL the ** space for the lookaside memory is obtained from sqlite3_malloc(). ** If pStart is not NULL then it is sz*cnt bytes of memory to use for ** the lookaside memory. */ static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){ #ifndef SQLITE_OMIT_LOOKASIDE void *pStart; sqlite3_int64 szAlloc = sz*(sqlite3_int64)cnt; int nBig; /* Number of full-size slots */ int nSm; /* Number smaller LOOKASIDE_SMALL-byte slots */ if( sqlite3LookasideUsed(db,0)>0 ){ return SQLITE_BUSY; } /* Free any existing lookaside buffer for this handle before ** allocating a new one so we don't have to have space for ** both at the same time. */ if( db->lookaside.bMalloced ){ sqlite3_free(db->lookaside.pStart); } /* The size of a lookaside slot after ROUNDDOWN8 needs to be larger ** than a pointer to be useful. */ sz = ROUNDDOWN8(sz); /* IMP: R-33038-09382 */ if( sz<=(int)sizeof(LookasideSlot*) ) sz = 0; if( cnt<0 ) cnt = 0; if( sz==0 || cnt==0 ){ sz = 0; pStart = 0; }else if( pBuf==0 ){ sqlite3BeginBenignMalloc(); pStart = sqlite3Malloc( szAlloc ); /* IMP: R-61949-35727 */ sqlite3EndBenignMalloc(); if( pStart ) szAlloc = sqlite3MallocSize(pStart); }else{ pStart = pBuf; } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( sz>=LOOKASIDE_SMALL*3 ){ nBig = szAlloc/(3*LOOKASIDE_SMALL+sz); nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL; }else if( sz>=LOOKASIDE_SMALL*2 ){ nBig = szAlloc/(LOOKASIDE_SMALL+sz); nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL; }else #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ if( sz>0 ){ nBig = szAlloc/sz; nSm = 0; }else{ nBig = nSm = 0; } db->lookaside.pStart = pStart; db->lookaside.pInit = 0; db->lookaside.pFree = 0; db->lookaside.sz = (u16)sz; db->lookaside.szTrue = (u16)sz; if( pStart ){ int i; LookasideSlot *p; assert( sz > (int)sizeof(LookasideSlot*) ); p = (LookasideSlot*)pStart; for(i=0; ipNext = db->lookaside.pInit; db->lookaside.pInit = p; p = (LookasideSlot*)&((u8*)p)[sz]; } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE db->lookaside.pSmallInit = 0; db->lookaside.pSmallFree = 0; db->lookaside.pMiddle = p; for(i=0; ipNext = db->lookaside.pSmallInit; db->lookaside.pSmallInit = p; p = (LookasideSlot*)&((u8*)p)[LOOKASIDE_SMALL]; } #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ assert( ((uptr)p)<=szAlloc + (uptr)pStart ); db->lookaside.pEnd = p; db->lookaside.bDisable = 0; db->lookaside.bMalloced = pBuf==0 ?1:0; db->lookaside.nSlot = nBig+nSm; }else{ db->lookaside.pStart = db; #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE db->lookaside.pSmallInit = 0; db->lookaside.pSmallFree = 0; db->lookaside.pMiddle = db; #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ db->lookaside.pEnd = db; db->lookaside.bDisable = 1; db->lookaside.sz = 0; db->lookaside.bMalloced = 0; db->lookaside.nSlot = 0; } assert( sqlite3LookasideUsed(db,0)==0 ); #endif /* SQLITE_OMIT_LOOKASIDE */ return SQLITE_OK; } /* ** Return the mutex associated with a database connection. */ SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->mutex; } /* ** Free up as much memory as we can from the given database ** connection. */ SQLITE_API int sqlite3_db_release_memory(sqlite3 *db){ int i; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ Pager *pPager = sqlite3BtreePager(pBt); sqlite3PagerShrink(pPager); } } sqlite3BtreeLeaveAll(db); sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } /* ** Flush any dirty pages in the pager-cache for any attached database ** to disk. */ SQLITE_API int sqlite3_db_cacheflush(sqlite3 *db){ int i; int rc = SQLITE_OK; int bSeenBusy = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt && sqlite3BtreeTxnState(pBt)==SQLITE_TXN_WRITE ){ Pager *pPager = sqlite3BtreePager(pBt); rc = sqlite3PagerFlush(pPager); if( rc==SQLITE_BUSY ){ bSeenBusy = 1; rc = SQLITE_OK; } } } sqlite3BtreeLeaveAll(db); sqlite3_mutex_leave(db->mutex); return ((rc==SQLITE_OK && bSeenBusy) ? SQLITE_BUSY : rc); } /* ** Configuration settings for an individual database connection */ SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){ va_list ap; int rc; va_start(ap, op); switch( op ){ case SQLITE_DBCONFIG_MAINDBNAME: { /* IMP: R-06824-28531 */ /* IMP: R-36257-52125 */ db->aDb[0].zDbSName = va_arg(ap,char*); rc = SQLITE_OK; break; } case SQLITE_DBCONFIG_LOOKASIDE: { void *pBuf = va_arg(ap, void*); /* IMP: R-26835-10964 */ int sz = va_arg(ap, int); /* IMP: R-47871-25994 */ int cnt = va_arg(ap, int); /* IMP: R-04460-53386 */ rc = setupLookaside(db, pBuf, sz, cnt); break; } default: { static const struct { int op; /* The opcode */ u32 mask; /* Mask of the bit in sqlite3.flags to set/clear */ } aFlagOp[] = { { SQLITE_DBCONFIG_ENABLE_FKEY, SQLITE_ForeignKeys }, { SQLITE_DBCONFIG_ENABLE_TRIGGER, SQLITE_EnableTrigger }, { SQLITE_DBCONFIG_ENABLE_VIEW, SQLITE_EnableView }, { SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, SQLITE_Fts3Tokenizer }, { SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, SQLITE_LoadExtension }, { SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE, SQLITE_NoCkptOnClose }, { SQLITE_DBCONFIG_ENABLE_QPSG, SQLITE_EnableQPSG }, { SQLITE_DBCONFIG_TRIGGER_EQP, SQLITE_TriggerEQP }, { SQLITE_DBCONFIG_RESET_DATABASE, SQLITE_ResetDatabase }, { SQLITE_DBCONFIG_DEFENSIVE, SQLITE_Defensive }, { SQLITE_DBCONFIG_WRITABLE_SCHEMA, SQLITE_WriteSchema| SQLITE_NoSchemaError }, { SQLITE_DBCONFIG_LEGACY_ALTER_TABLE, SQLITE_LegacyAlter }, { SQLITE_DBCONFIG_DQS_DDL, SQLITE_DqsDDL }, { SQLITE_DBCONFIG_DQS_DML, SQLITE_DqsDML }, { SQLITE_DBCONFIG_LEGACY_FILE_FORMAT, SQLITE_LegacyFileFmt }, { SQLITE_DBCONFIG_TRUSTED_SCHEMA, SQLITE_TrustedSchema }, }; unsigned int i; rc = SQLITE_ERROR; /* IMP: R-42790-23372 */ for(i=0; iflags; if( onoff>0 ){ db->flags |= aFlagOp[i].mask; }else if( onoff==0 ){ db->flags &= ~(u64)aFlagOp[i].mask; } if( oldFlags!=db->flags ){ sqlite3ExpirePreparedStatements(db, 0); } if( pRes ){ *pRes = (db->flags & aFlagOp[i].mask)!=0; } rc = SQLITE_OK; break; } } break; } } va_end(ap); return rc; } /* ** This is the default collating function named "BINARY" which is always ** available. */ static int binCollFunc( void *NotUsed, int nKey1, const void *pKey1, int nKey2, const void *pKey2 ){ int rc, n; UNUSED_PARAMETER(NotUsed); n = nKey1xCmp!=binCollFunc || strcmp(p->zName,"BINARY")==0 ); return p==0 || p->xCmp==binCollFunc; } /* ** Another built-in collating sequence: NOCASE. ** ** This collating sequence is intended to be used for "case independent ** comparison". SQLite's knowledge of upper and lower case equivalents ** extends only to the 26 characters used in the English language. ** ** At the moment there is only a UTF-8 implementation. */ static int nocaseCollatingFunc( void *NotUsed, int nKey1, const void *pKey1, int nKey2, const void *pKey2 ){ int r = sqlite3StrNICmp( (const char *)pKey1, (const char *)pKey2, (nKey1lastRowid; } /* ** Set the value returned by the sqlite3_last_insert_rowid() API function. */ SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3 *db, sqlite3_int64 iRowid){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return; } #endif sqlite3_mutex_enter(db->mutex); db->lastRowid = iRowid; sqlite3_mutex_leave(db->mutex); } /* ** Return the number of changes in the most recent call to sqlite3_exec(). */ SQLITE_API sqlite3_int64 sqlite3_changes64(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->nChange; } SQLITE_API int sqlite3_changes(sqlite3 *db){ return (int)sqlite3_changes64(db); } /* ** Return the number of changes since the database handle was opened. */ SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->nTotalChange; } SQLITE_API int sqlite3_total_changes(sqlite3 *db){ return (int)sqlite3_total_changes64(db); } /* ** Close all open savepoints. This function only manipulates fields of the ** database handle object, it does not close any savepoints that may be open ** at the b-tree/pager level. */ SQLITE_PRIVATE void sqlite3CloseSavepoints(sqlite3 *db){ while( db->pSavepoint ){ Savepoint *pTmp = db->pSavepoint; db->pSavepoint = pTmp->pNext; sqlite3DbFree(db, pTmp); } db->nSavepoint = 0; db->nStatement = 0; db->isTransactionSavepoint = 0; } /* ** Invoke the destructor function associated with FuncDef p, if any. Except, ** if this is not the last copy of the function, do not invoke it. Multiple ** copies of a single function are created when create_function() is called ** with SQLITE_ANY as the encoding. */ static void functionDestroy(sqlite3 *db, FuncDef *p){ FuncDestructor *pDestructor; assert( (p->funcFlags & SQLITE_FUNC_BUILTIN)==0 ); pDestructor = p->u.pDestructor; if( pDestructor ){ pDestructor->nRef--; if( pDestructor->nRef==0 ){ pDestructor->xDestroy(pDestructor->pUserData); sqlite3DbFree(db, pDestructor); } } } /* ** Disconnect all sqlite3_vtab objects that belong to database connection ** db. This is called when db is being closed. */ static void disconnectAllVtab(sqlite3 *db){ #ifndef SQLITE_OMIT_VIRTUALTABLE int i; HashElem *p; sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Schema *pSchema = db->aDb[i].pSchema; if( pSchema ){ for(p=sqliteHashFirst(&pSchema->tblHash); p; p=sqliteHashNext(p)){ Table *pTab = (Table *)sqliteHashData(p); if( IsVirtual(pTab) ) sqlite3VtabDisconnect(db, pTab); } } } for(p=sqliteHashFirst(&db->aModule); p; p=sqliteHashNext(p)){ Module *pMod = (Module *)sqliteHashData(p); if( pMod->pEpoTab ){ sqlite3VtabDisconnect(db, pMod->pEpoTab); } } sqlite3VtabUnlockList(db); sqlite3BtreeLeaveAll(db); #else UNUSED_PARAMETER(db); #endif } /* ** Return TRUE if database connection db has unfinalized prepared ** statements or unfinished sqlite3_backup objects. */ static int connectionIsBusy(sqlite3 *db){ int j; assert( sqlite3_mutex_held(db->mutex) ); if( db->pVdbe ) return 1; for(j=0; jnDb; j++){ Btree *pBt = db->aDb[j].pBt; if( pBt && sqlite3BtreeIsInBackup(pBt) ) return 1; } return 0; } /* ** Close an existing SQLite database */ static int sqlite3Close(sqlite3 *db, int forceZombie){ if( !db ){ /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or ** sqlite3_close_v2() with a NULL pointer argument is a harmless no-op. */ return SQLITE_OK; } if( !sqlite3SafetyCheckSickOrOk(db) ){ return SQLITE_MISUSE_BKPT; } sqlite3_mutex_enter(db->mutex); if( db->mTrace & SQLITE_TRACE_CLOSE ){ db->trace.xV2(SQLITE_TRACE_CLOSE, db->pTraceArg, db, 0); } /* Force xDisconnect calls on all virtual tables */ disconnectAllVtab(db); /* If a transaction is open, the disconnectAllVtab() call above ** will not have called the xDisconnect() method on any virtual ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback() ** call will do so. We need to do this before the check for active ** SQL statements below, as the v-table implementation may be storing ** some prepared statements internally. */ sqlite3VtabRollback(db); /* Legacy behavior (sqlite3_close() behavior) is to return ** SQLITE_BUSY if the connection can not be closed immediately. */ if( !forceZombie && connectionIsBusy(db) ){ sqlite3ErrorWithMsg(db, SQLITE_BUSY, "unable to close due to unfinalized " "statements or unfinished backups"); sqlite3_mutex_leave(db->mutex); return SQLITE_BUSY; } #ifdef SQLITE_ENABLE_SQLLOG if( sqlite3GlobalConfig.xSqllog ){ /* Closing the handle. Fourth parameter is passed the value 2. */ sqlite3GlobalConfig.xSqllog(sqlite3GlobalConfig.pSqllogArg, db, 0, 2); } #endif /* Convert the connection into a zombie and then close it. */ db->eOpenState = SQLITE_STATE_ZOMBIE; sqlite3LeaveMutexAndCloseZombie(db); return SQLITE_OK; } /* ** Return the transaction state for a single databse, or the maximum ** transaction state over all attached databases if zSchema is null. */ SQLITE_API int sqlite3_txn_state(sqlite3 *db, const char *zSchema){ int iDb, nDb; int iTxn = -1; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return -1; } #endif sqlite3_mutex_enter(db->mutex); if( zSchema ){ nDb = iDb = sqlite3FindDbName(db, zSchema); if( iDb<0 ) nDb--; }else{ iDb = 0; nDb = db->nDb-1; } for(; iDb<=nDb; iDb++){ Btree *pBt = db->aDb[iDb].pBt; int x = pBt!=0 ? sqlite3BtreeTxnState(pBt) : SQLITE_TXN_NONE; if( x>iTxn ) iTxn = x; } sqlite3_mutex_leave(db->mutex); return iTxn; } /* ** Two variations on the public interface for closing a database ** connection. The sqlite3_close() version returns SQLITE_BUSY and ** leaves the connection open if there are unfinalized prepared ** statements or unfinished sqlite3_backups. The sqlite3_close_v2() ** version forces the connection to become a zombie if there are ** unclosed resources, and arranges for deallocation when the last ** prepare statement or sqlite3_backup closes. */ SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); } SQLITE_API int sqlite3_close_v2(sqlite3 *db){ return sqlite3Close(db,1); } /* ** Close the mutex on database connection db. ** ** Furthermore, if database connection db is a zombie (meaning that there ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and ** every sqlite3_stmt has now been finalized and every sqlite3_backup has ** finished, then free all resources. */ SQLITE_PRIVATE void sqlite3LeaveMutexAndCloseZombie(sqlite3 *db){ HashElem *i; /* Hash table iterator */ int j; /* If there are outstanding sqlite3_stmt or sqlite3_backup objects ** or if the connection has not yet been closed by sqlite3_close_v2(), ** then just leave the mutex and return. */ if( db->eOpenState!=SQLITE_STATE_ZOMBIE || connectionIsBusy(db) ){ sqlite3_mutex_leave(db->mutex); return; } /* If we reach this point, it means that the database connection has ** closed all sqlite3_stmt and sqlite3_backup objects and has been ** passed to sqlite3_close (meaning that it is a zombie). Therefore, ** go ahead and free all resources. */ /* If a transaction is open, roll it back. This also ensures that if ** any database schemas have been modified by an uncommitted transaction ** they are reset. And that the required b-tree mutex is held to make ** the pager rollback and schema reset an atomic operation. */ sqlite3RollbackAll(db, SQLITE_OK); /* Free any outstanding Savepoint structures. */ sqlite3CloseSavepoints(db); /* Close all database connections */ for(j=0; jnDb; j++){ struct Db *pDb = &db->aDb[j]; if( pDb->pBt ){ sqlite3BtreeClose(pDb->pBt); pDb->pBt = 0; if( j!=1 ){ pDb->pSchema = 0; } } } /* Clear the TEMP schema separately and last */ if( db->aDb[1].pSchema ){ sqlite3SchemaClear(db->aDb[1].pSchema); } sqlite3VtabUnlockList(db); /* Free up the array of auxiliary databases */ sqlite3CollapseDatabaseArray(db); assert( db->nDb<=2 ); assert( db->aDb==db->aDbStatic ); /* Tell the code in notify.c that the connection no longer holds any ** locks and does not require any further unlock-notify callbacks. */ sqlite3ConnectionClosed(db); for(i=sqliteHashFirst(&db->aFunc); i; i=sqliteHashNext(i)){ FuncDef *pNext, *p; p = sqliteHashData(i); do{ functionDestroy(db, p); pNext = p->pNext; sqlite3DbFree(db, p); p = pNext; }while( p ); } sqlite3HashClear(&db->aFunc); for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){ CollSeq *pColl = (CollSeq *)sqliteHashData(i); /* Invoke any destructors registered for collation sequence user data. */ for(j=0; j<3; j++){ if( pColl[j].xDel ){ pColl[j].xDel(pColl[j].pUser); } } sqlite3DbFree(db, pColl); } sqlite3HashClear(&db->aCollSeq); #ifndef SQLITE_OMIT_VIRTUALTABLE for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){ Module *pMod = (Module *)sqliteHashData(i); sqlite3VtabEponymousTableClear(db, pMod); sqlite3VtabModuleUnref(db, pMod); } sqlite3HashClear(&db->aModule); #endif sqlite3Error(db, SQLITE_OK); /* Deallocates any cached error strings. */ sqlite3ValueFree(db->pErr); sqlite3CloseExtensions(db); #if SQLITE_USER_AUTHENTICATION sqlite3_free(db->auth.zAuthUser); sqlite3_free(db->auth.zAuthPW); #endif db->eOpenState = SQLITE_STATE_ERROR; /* The temp-database schema is allocated differently from the other schema ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()). ** So it needs to be freed here. Todo: Why not roll the temp schema into ** the same sqliteMalloc() as the one that allocates the database ** structure? */ sqlite3DbFree(db, db->aDb[1].pSchema); if( db->xAutovacDestr ){ db->xAutovacDestr(db->pAutovacPagesArg); } sqlite3_mutex_leave(db->mutex); db->eOpenState = SQLITE_STATE_CLOSED; sqlite3_mutex_free(db->mutex); assert( sqlite3LookasideUsed(db,0)==0 ); if( db->lookaside.bMalloced ){ sqlite3_free(db->lookaside.pStart); } sqlite3_free(db); } /* ** Rollback all database files. If tripCode is not SQLITE_OK, then ** any write cursors are invalidated ("tripped" - as in "tripping a circuit ** breaker") and made to return tripCode if there are any further ** attempts to use that cursor. Read cursors remain open and valid ** but are "saved" in case the table pages are moved around. */ SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3 *db, int tripCode){ int i; int inTrans = 0; int schemaChange; assert( sqlite3_mutex_held(db->mutex) ); sqlite3BeginBenignMalloc(); /* Obtain all b-tree mutexes before making any calls to BtreeRollback(). ** This is important in case the transaction being rolled back has ** modified the database schema. If the b-tree mutexes are not taken ** here, then another shared-cache connection might sneak in between ** the database rollback and schema reset, which can cause false ** corruption reports in some cases. */ sqlite3BtreeEnterAll(db); schemaChange = (db->mDbFlags & DBFLAG_SchemaChange)!=0 && db->init.busy==0; for(i=0; inDb; i++){ Btree *p = db->aDb[i].pBt; if( p ){ if( sqlite3BtreeTxnState(p)==SQLITE_TXN_WRITE ){ inTrans = 1; } sqlite3BtreeRollback(p, tripCode, !schemaChange); } } sqlite3VtabRollback(db); sqlite3EndBenignMalloc(); if( schemaChange ){ sqlite3ExpirePreparedStatements(db, 0); sqlite3ResetAllSchemasOfConnection(db); } sqlite3BtreeLeaveAll(db); /* Any deferred constraint violations have now been resolved. */ db->nDeferredCons = 0; db->nDeferredImmCons = 0; db->flags &= ~(u64)(SQLITE_DeferFKs|SQLITE_CorruptRdOnly); /* If one has been configured, invoke the rollback-hook callback */ if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){ db->xRollbackCallback(db->pRollbackArg); } } /* ** Return a static string containing the name corresponding to the error code ** specified in the argument. */ #if defined(SQLITE_NEED_ERR_NAME) SQLITE_PRIVATE const char *sqlite3ErrName(int rc){ const char *zName = 0; int i, origRc = rc; for(i=0; i<2 && zName==0; i++, rc &= 0xff){ switch( rc ){ case SQLITE_OK: zName = "SQLITE_OK"; break; case SQLITE_ERROR: zName = "SQLITE_ERROR"; break; case SQLITE_ERROR_SNAPSHOT: zName = "SQLITE_ERROR_SNAPSHOT"; break; case SQLITE_INTERNAL: zName = "SQLITE_INTERNAL"; break; case SQLITE_PERM: zName = "SQLITE_PERM"; break; case SQLITE_ABORT: zName = "SQLITE_ABORT"; break; case SQLITE_ABORT_ROLLBACK: zName = "SQLITE_ABORT_ROLLBACK"; break; case SQLITE_BUSY: zName = "SQLITE_BUSY"; break; case SQLITE_BUSY_RECOVERY: zName = "SQLITE_BUSY_RECOVERY"; break; case SQLITE_BUSY_SNAPSHOT: zName = "SQLITE_BUSY_SNAPSHOT"; break; case SQLITE_LOCKED: zName = "SQLITE_LOCKED"; break; case SQLITE_LOCKED_SHAREDCACHE: zName = "SQLITE_LOCKED_SHAREDCACHE";break; case SQLITE_NOMEM: zName = "SQLITE_NOMEM"; break; case SQLITE_READONLY: zName = "SQLITE_READONLY"; break; case SQLITE_READONLY_RECOVERY: zName = "SQLITE_READONLY_RECOVERY"; break; case SQLITE_READONLY_CANTINIT: zName = "SQLITE_READONLY_CANTINIT"; break; case SQLITE_READONLY_ROLLBACK: zName = "SQLITE_READONLY_ROLLBACK"; break; case SQLITE_READONLY_DBMOVED: zName = "SQLITE_READONLY_DBMOVED"; break; case SQLITE_READONLY_DIRECTORY: zName = "SQLITE_READONLY_DIRECTORY";break; case SQLITE_INTERRUPT: zName = "SQLITE_INTERRUPT"; break; case SQLITE_IOERR: zName = "SQLITE_IOERR"; break; case SQLITE_IOERR_READ: zName = "SQLITE_IOERR_READ"; break; case SQLITE_IOERR_SHORT_READ: zName = "SQLITE_IOERR_SHORT_READ"; break; case SQLITE_IOERR_WRITE: zName = "SQLITE_IOERR_WRITE"; break; case SQLITE_IOERR_FSYNC: zName = "SQLITE_IOERR_FSYNC"; break; case SQLITE_IOERR_DIR_FSYNC: zName = "SQLITE_IOERR_DIR_FSYNC"; break; case SQLITE_IOERR_TRUNCATE: zName = "SQLITE_IOERR_TRUNCATE"; break; case SQLITE_IOERR_FSTAT: zName = "SQLITE_IOERR_FSTAT"; break; case SQLITE_IOERR_UNLOCK: zName = "SQLITE_IOERR_UNLOCK"; break; case SQLITE_IOERR_RDLOCK: zName = "SQLITE_IOERR_RDLOCK"; break; case SQLITE_IOERR_DELETE: zName = "SQLITE_IOERR_DELETE"; break; case SQLITE_IOERR_NOMEM: zName = "SQLITE_IOERR_NOMEM"; break; case SQLITE_IOERR_ACCESS: zName = "SQLITE_IOERR_ACCESS"; break; case SQLITE_IOERR_CHECKRESERVEDLOCK: zName = "SQLITE_IOERR_CHECKRESERVEDLOCK"; break; case SQLITE_IOERR_LOCK: zName = "SQLITE_IOERR_LOCK"; break; case SQLITE_IOERR_CLOSE: zName = "SQLITE_IOERR_CLOSE"; break; case SQLITE_IOERR_DIR_CLOSE: zName = "SQLITE_IOERR_DIR_CLOSE"; break; case SQLITE_IOERR_SHMOPEN: zName = "SQLITE_IOERR_SHMOPEN"; break; case SQLITE_IOERR_SHMSIZE: zName = "SQLITE_IOERR_SHMSIZE"; break; case SQLITE_IOERR_SHMLOCK: zName = "SQLITE_IOERR_SHMLOCK"; break; case SQLITE_IOERR_SHMMAP: zName = "SQLITE_IOERR_SHMMAP"; break; case SQLITE_IOERR_SEEK: zName = "SQLITE_IOERR_SEEK"; break; case SQLITE_IOERR_DELETE_NOENT: zName = "SQLITE_IOERR_DELETE_NOENT";break; case SQLITE_IOERR_MMAP: zName = "SQLITE_IOERR_MMAP"; break; case SQLITE_IOERR_GETTEMPPATH: zName = "SQLITE_IOERR_GETTEMPPATH"; break; case SQLITE_IOERR_CONVPATH: zName = "SQLITE_IOERR_CONVPATH"; break; case SQLITE_CORRUPT: zName = "SQLITE_CORRUPT"; break; case SQLITE_CORRUPT_VTAB: zName = "SQLITE_CORRUPT_VTAB"; break; case SQLITE_NOTFOUND: zName = "SQLITE_NOTFOUND"; break; case SQLITE_FULL: zName = "SQLITE_FULL"; break; case SQLITE_CANTOPEN: zName = "SQLITE_CANTOPEN"; break; case SQLITE_CANTOPEN_NOTEMPDIR: zName = "SQLITE_CANTOPEN_NOTEMPDIR";break; case SQLITE_CANTOPEN_ISDIR: zName = "SQLITE_CANTOPEN_ISDIR"; break; case SQLITE_CANTOPEN_FULLPATH: zName = "SQLITE_CANTOPEN_FULLPATH"; break; case SQLITE_CANTOPEN_CONVPATH: zName = "SQLITE_CANTOPEN_CONVPATH"; break; case SQLITE_CANTOPEN_SYMLINK: zName = "SQLITE_CANTOPEN_SYMLINK"; break; case SQLITE_PROTOCOL: zName = "SQLITE_PROTOCOL"; break; case SQLITE_EMPTY: zName = "SQLITE_EMPTY"; break; case SQLITE_SCHEMA: zName = "SQLITE_SCHEMA"; break; case SQLITE_TOOBIG: zName = "SQLITE_TOOBIG"; break; case SQLITE_CONSTRAINT: zName = "SQLITE_CONSTRAINT"; break; case SQLITE_CONSTRAINT_UNIQUE: zName = "SQLITE_CONSTRAINT_UNIQUE"; break; case SQLITE_CONSTRAINT_TRIGGER: zName = "SQLITE_CONSTRAINT_TRIGGER";break; case SQLITE_CONSTRAINT_FOREIGNKEY: zName = "SQLITE_CONSTRAINT_FOREIGNKEY"; break; case SQLITE_CONSTRAINT_CHECK: zName = "SQLITE_CONSTRAINT_CHECK"; break; case SQLITE_CONSTRAINT_PRIMARYKEY: zName = "SQLITE_CONSTRAINT_PRIMARYKEY"; break; case SQLITE_CONSTRAINT_NOTNULL: zName = "SQLITE_CONSTRAINT_NOTNULL";break; case SQLITE_CONSTRAINT_COMMITHOOK: zName = "SQLITE_CONSTRAINT_COMMITHOOK"; break; case SQLITE_CONSTRAINT_VTAB: zName = "SQLITE_CONSTRAINT_VTAB"; break; case SQLITE_CONSTRAINT_FUNCTION: zName = "SQLITE_CONSTRAINT_FUNCTION"; break; case SQLITE_CONSTRAINT_ROWID: zName = "SQLITE_CONSTRAINT_ROWID"; break; case SQLITE_MISMATCH: zName = "SQLITE_MISMATCH"; break; case SQLITE_MISUSE: zName = "SQLITE_MISUSE"; break; case SQLITE_NOLFS: zName = "SQLITE_NOLFS"; break; case SQLITE_AUTH: zName = "SQLITE_AUTH"; break; case SQLITE_FORMAT: zName = "SQLITE_FORMAT"; break; case SQLITE_RANGE: zName = "SQLITE_RANGE"; break; case SQLITE_NOTADB: zName = "SQLITE_NOTADB"; break; case SQLITE_ROW: zName = "SQLITE_ROW"; break; case SQLITE_NOTICE: zName = "SQLITE_NOTICE"; break; case SQLITE_NOTICE_RECOVER_WAL: zName = "SQLITE_NOTICE_RECOVER_WAL";break; case SQLITE_NOTICE_RECOVER_ROLLBACK: zName = "SQLITE_NOTICE_RECOVER_ROLLBACK"; break; case SQLITE_WARNING: zName = "SQLITE_WARNING"; break; case SQLITE_WARNING_AUTOINDEX: zName = "SQLITE_WARNING_AUTOINDEX"; break; case SQLITE_DONE: zName = "SQLITE_DONE"; break; } } if( zName==0 ){ static char zBuf[50]; sqlite3_snprintf(sizeof(zBuf), zBuf, "SQLITE_UNKNOWN(%d)", origRc); zName = zBuf; } return zName; } #endif /* ** Return a static string that describes the kind of error specified in the ** argument. */ SQLITE_PRIVATE const char *sqlite3ErrStr(int rc){ static const char* const aMsg[] = { /* SQLITE_OK */ "not an error", /* SQLITE_ERROR */ "SQL logic error", /* SQLITE_INTERNAL */ 0, /* SQLITE_PERM */ "access permission denied", /* SQLITE_ABORT */ "query aborted", /* SQLITE_BUSY */ "database is locked", /* SQLITE_LOCKED */ "database table is locked", /* SQLITE_NOMEM */ "out of memory", /* SQLITE_READONLY */ "attempt to write a readonly database", /* SQLITE_INTERRUPT */ "interrupted", /* SQLITE_IOERR */ "disk I/O error", /* SQLITE_CORRUPT */ "database disk image is malformed", /* SQLITE_NOTFOUND */ "unknown operation", /* SQLITE_FULL */ "database or disk is full", /* SQLITE_CANTOPEN */ "unable to open database file", /* SQLITE_PROTOCOL */ "locking protocol", /* SQLITE_EMPTY */ 0, /* SQLITE_SCHEMA */ "database schema has changed", /* SQLITE_TOOBIG */ "string or blob too big", /* SQLITE_CONSTRAINT */ "constraint failed", /* SQLITE_MISMATCH */ "datatype mismatch", /* SQLITE_MISUSE */ "bad parameter or other API misuse", #ifdef SQLITE_DISABLE_LFS /* SQLITE_NOLFS */ "large file support is disabled", #else /* SQLITE_NOLFS */ 0, #endif /* SQLITE_AUTH */ "authorization denied", /* SQLITE_FORMAT */ 0, /* SQLITE_RANGE */ "column index out of range", /* SQLITE_NOTADB */ "file is not a database", /* SQLITE_NOTICE */ "notification message", /* SQLITE_WARNING */ "warning message", }; const char *zErr = "unknown error"; switch( rc ){ case SQLITE_ABORT_ROLLBACK: { zErr = "abort due to ROLLBACK"; break; } case SQLITE_ROW: { zErr = "another row available"; break; } case SQLITE_DONE: { zErr = "no more rows available"; break; } default: { rc &= 0xff; if( ALWAYS(rc>=0) && rcbusyTimeout; int delay, prior; assert( count>=0 ); if( count < NDELAY ){ delay = delays[count]; prior = totals[count]; }else{ delay = delays[NDELAY-1]; prior = totals[NDELAY-1] + delay*(count-(NDELAY-1)); } if( prior + delay > tmout ){ delay = tmout - prior; if( delay<=0 ) return 0; } sqlite3OsSleep(db->pVfs, delay*1000); return 1; #else /* This case for unix systems that lack usleep() support. Sleeping ** must be done in increments of whole seconds */ sqlite3 *db = (sqlite3 *)ptr; int tmout = ((sqlite3 *)ptr)->busyTimeout; if( (count+1)*1000 > tmout ){ return 0; } sqlite3OsSleep(db->pVfs, 1000000); return 1; #endif } /* ** Invoke the given busy handler. ** ** This routine is called when an operation failed to acquire a ** lock on VFS file pFile. ** ** If this routine returns non-zero, the lock is retried. If it ** returns 0, the operation aborts with an SQLITE_BUSY error. */ SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){ int rc; if( p->xBusyHandler==0 || p->nBusy<0 ) return 0; rc = p->xBusyHandler(p->pBusyArg, p->nBusy); if( rc==0 ){ p->nBusy = -1; }else{ p->nBusy++; } return rc; } /* ** This routine sets the busy callback for an Sqlite database to the ** given callback function with the given argument. */ SQLITE_API int sqlite3_busy_handler( sqlite3 *db, int (*xBusy)(void*,int), void *pArg ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->busyHandler.xBusyHandler = xBusy; db->busyHandler.pBusyArg = pArg; db->busyHandler.nBusy = 0; db->busyTimeout = 0; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_PROGRESS_CALLBACK /* ** This routine sets the progress callback for an Sqlite database to the ** given callback function with the given argument. The progress callback will ** be invoked every nOps opcodes. */ SQLITE_API void sqlite3_progress_handler( sqlite3 *db, int nOps, int (*xProgress)(void*), void *pArg ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return; } #endif sqlite3_mutex_enter(db->mutex); if( nOps>0 ){ db->xProgress = xProgress; db->nProgressOps = (unsigned)nOps; db->pProgressArg = pArg; }else{ db->xProgress = 0; db->nProgressOps = 0; db->pProgressArg = 0; } sqlite3_mutex_leave(db->mutex); } #endif /* ** This routine installs a default busy handler that waits for the ** specified number of milliseconds before returning 0. */ SQLITE_API int sqlite3_busy_timeout(sqlite3 *db, int ms){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif if( ms>0 ){ sqlite3_busy_handler(db, (int(*)(void*,int))sqliteDefaultBusyCallback, (void*)db); db->busyTimeout = ms; }else{ sqlite3_busy_handler(db, 0, 0); } return SQLITE_OK; } /* ** Cause any pending operation to stop at its earliest opportunity. */ SQLITE_API void sqlite3_interrupt(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) && (db==0 || db->eOpenState!=SQLITE_STATE_ZOMBIE) ){ (void)SQLITE_MISUSE_BKPT; return; } #endif AtomicStore(&db->u1.isInterrupted, 1); } /* ** This function is exactly the same as sqlite3_create_function(), except ** that it is designed to be called by internal code. The difference is ** that if a malloc() fails in sqlite3_create_function(), an error code ** is returned and the mallocFailed flag cleared. */ SQLITE_PRIVATE int sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value **), FuncDestructor *pDestructor ){ FuncDef *p; int extraFlags; assert( sqlite3_mutex_held(db->mutex) ); assert( xValue==0 || xSFunc==0 ); if( zFunctionName==0 /* Must have a valid name */ || (xSFunc!=0 && xFinal!=0) /* Not both xSFunc and xFinal */ || ((xFinal==0)!=(xStep==0)) /* Both or neither of xFinal and xStep */ || ((xValue==0)!=(xInverse==0)) /* Both or neither of xValue, xInverse */ || (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) || (255funcFlags & SQLITE_FUNC_ENCMASK)==(u32)enc && p->nArg==nArg ){ if( db->nVdbeActive ){ sqlite3ErrorWithMsg(db, SQLITE_BUSY, "unable to delete/modify user-function due to active statements"); assert( !db->mallocFailed ); return SQLITE_BUSY; }else{ sqlite3ExpirePreparedStatements(db, 0); } }else if( xSFunc==0 && xFinal==0 ){ /* Trying to delete a function that does not exist. This is a no-op. ** https://sqlite.org/forum/forumpost/726219164b */ return SQLITE_OK; } p = sqlite3FindFunction(db, zFunctionName, nArg, (u8)enc, 1); assert(p || db->mallocFailed); if( !p ){ return SQLITE_NOMEM_BKPT; } /* If an older version of the function with a configured destructor is ** being replaced invoke the destructor function here. */ functionDestroy(db, p); if( pDestructor ){ pDestructor->nRef++; } p->u.pDestructor = pDestructor; p->funcFlags = (p->funcFlags & SQLITE_FUNC_ENCMASK) | extraFlags; testcase( p->funcFlags & SQLITE_DETERMINISTIC ); testcase( p->funcFlags & SQLITE_DIRECTONLY ); p->xSFunc = xSFunc ? xSFunc : xStep; p->xFinalize = xFinal; p->xValue = xValue; p->xInverse = xInverse; p->pUserData = pUserData; p->nArg = (u16)nArg; return SQLITE_OK; } /* ** Worker function used by utf-8 APIs that create new functions: ** ** sqlite3_create_function() ** sqlite3_create_function_v2() ** sqlite3_create_window_function() */ static int createFunctionApi( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*) ){ int rc = SQLITE_ERROR; FuncDestructor *pArg = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( xDestroy ){ pArg = (FuncDestructor *)sqlite3Malloc(sizeof(FuncDestructor)); if( !pArg ){ sqlite3OomFault(db); xDestroy(p); goto out; } pArg->nRef = 0; pArg->xDestroy = xDestroy; pArg->pUserData = p; } rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, xValue, xInverse, pArg ); if( pArg && pArg->nRef==0 ){ assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) ); xDestroy(p); sqlite3_free(pArg); } out: rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Create new user functions. */ SQLITE_API int sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ){ return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, 0, 0, 0); } SQLITE_API int sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ){ return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, 0, 0, xDestroy); } SQLITE_API int sqlite3_create_window_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value **), void (*xDestroy)(void *) ){ return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep, xFinal, xValue, xInverse, xDestroy); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API int sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ){ int rc; char *zFunc8; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zFunctionName==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); assert( !db->mallocFailed ); zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1, SQLITE_UTF16NATIVE); rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xSFunc,xStep,xFinal,0,0,0); sqlite3DbFree(db, zFunc8); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* ** The following is the implementation of an SQL function that always ** fails with an error message stating that the function is used in the ** wrong context. The sqlite3_overload_function() API might construct ** SQL function that use this routine so that the functions will exist ** for name resolution but are actually overloaded by the xFindFunction ** method of virtual tables. */ static void sqlite3InvalidFunction( sqlite3_context *context, /* The function calling context */ int NotUsed, /* Number of arguments to the function */ sqlite3_value **NotUsed2 /* Value of each argument */ ){ const char *zName = (const char*)sqlite3_user_data(context); char *zErr; UNUSED_PARAMETER2(NotUsed, NotUsed2); zErr = sqlite3_mprintf( "unable to use function %s in the requested context", zName); sqlite3_result_error(context, zErr, -1); sqlite3_free(zErr); } /* ** Declare that a function has been overloaded by a virtual table. ** ** If the function already exists as a regular global function, then ** this routine is a no-op. If the function does not exist, then create ** a new one that always throws a run-time error. ** ** When virtual tables intend to provide an overloaded function, they ** should call this routine to make sure the global function exists. ** A global function must exist in order for name resolution to work ** properly. */ SQLITE_API int sqlite3_overload_function( sqlite3 *db, const char *zName, int nArg ){ int rc; char *zCopy; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 || nArg<-2 ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); rc = sqlite3FindFunction(db, zName, nArg, SQLITE_UTF8, 0)!=0; sqlite3_mutex_leave(db->mutex); if( rc ) return SQLITE_OK; zCopy = sqlite3_mprintf(zName); if( zCopy==0 ) return SQLITE_NOMEM; return sqlite3_create_function_v2(db, zName, nArg, SQLITE_UTF8, zCopy, sqlite3InvalidFunction, 0, 0, sqlite3_free); } #ifndef SQLITE_OMIT_TRACE /* ** Register a trace function. The pArg from the previously registered trace ** is returned. ** ** A NULL trace function means that no tracing is executes. A non-NULL ** trace is a pointer to a function that is invoked at the start of each ** SQL statement. */ #ifndef SQLITE_OMIT_DEPRECATED SQLITE_API void *sqlite3_trace(sqlite3 *db, void(*xTrace)(void*,const char*), void *pArg){ void *pOld; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pOld = db->pTraceArg; db->mTrace = xTrace ? SQLITE_TRACE_LEGACY : 0; db->trace.xLegacy = xTrace; db->pTraceArg = pArg; sqlite3_mutex_leave(db->mutex); return pOld; } #endif /* SQLITE_OMIT_DEPRECATED */ /* Register a trace callback using the version-2 interface. */ SQLITE_API int sqlite3_trace_v2( sqlite3 *db, /* Trace this connection */ unsigned mTrace, /* Mask of events to be traced */ int(*xTrace)(unsigned,void*,void*,void*), /* Callback to invoke */ void *pArg /* Context */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( mTrace==0 ) xTrace = 0; if( xTrace==0 ) mTrace = 0; db->mTrace = mTrace; db->trace.xV2 = xTrace; db->pTraceArg = pArg; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Register a profile function. The pArg from the previously registered ** profile function is returned. ** ** A NULL profile function means that no profiling is executes. A non-NULL ** profile is a pointer to a function that is invoked at the conclusion of ** each SQL statement that is run. */ SQLITE_API void *sqlite3_profile( sqlite3 *db, void (*xProfile)(void*,const char*,sqlite_uint64), void *pArg ){ void *pOld; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pOld = db->pProfileArg; db->xProfile = xProfile; db->pProfileArg = pArg; db->mTrace &= SQLITE_TRACE_NONLEGACY_MASK; if( db->xProfile ) db->mTrace |= SQLITE_TRACE_XPROFILE; sqlite3_mutex_leave(db->mutex); return pOld; } #endif /* SQLITE_OMIT_DEPRECATED */ #endif /* SQLITE_OMIT_TRACE */ /* ** Register a function to be invoked when a transaction commits. ** If the invoked function returns non-zero, then the commit becomes a ** rollback. */ SQLITE_API void *sqlite3_commit_hook( sqlite3 *db, /* Attach the hook to this database */ int (*xCallback)(void*), /* Function to invoke on each commit */ void *pArg /* Argument to the function */ ){ void *pOld; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pOld = db->pCommitArg; db->xCommitCallback = xCallback; db->pCommitArg = pArg; sqlite3_mutex_leave(db->mutex); return pOld; } /* ** Register a callback to be invoked each time a row is updated, ** inserted or deleted using this database connection. */ SQLITE_API void *sqlite3_update_hook( sqlite3 *db, /* Attach the hook to this database */ void (*xCallback)(void*,int,char const *,char const *,sqlite_int64), void *pArg /* Argument to the function */ ){ void *pRet; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pRet = db->pUpdateArg; db->xUpdateCallback = xCallback; db->pUpdateArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; } /* ** Register a callback to be invoked each time a transaction is rolled ** back by this database connection. */ SQLITE_API void *sqlite3_rollback_hook( sqlite3 *db, /* Attach the hook to this database */ void (*xCallback)(void*), /* Callback function */ void *pArg /* Argument to the function */ ){ void *pRet; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pRet = db->pRollbackArg; db->xRollbackCallback = xCallback; db->pRollbackArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** Register a callback to be invoked each time a row is updated, ** inserted or deleted using this database connection. */ SQLITE_API void *sqlite3_preupdate_hook( sqlite3 *db, /* Attach the hook to this database */ void(*xCallback)( /* Callback function */ void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64), void *pArg /* First callback argument */ ){ void *pRet; sqlite3_mutex_enter(db->mutex); pRet = db->pPreUpdateArg; db->xPreUpdateCallback = xCallback; db->pPreUpdateArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ /* ** Register a function to be invoked prior to each autovacuum that ** determines the number of pages to vacuum. */ SQLITE_API int sqlite3_autovacuum_pages( sqlite3 *db, /* Attach the hook to this database */ unsigned int (*xCallback)(void*,const char*,u32,u32,u32), void *pArg, /* Argument to the function */ void (*xDestructor)(void*) /* Destructor for pArg */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ if( xDestructor ) xDestructor(pArg); return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( db->xAutovacDestr ){ db->xAutovacDestr(db->pAutovacPagesArg); } db->xAutovacPages = xCallback; db->pAutovacPagesArg = pArg; db->xAutovacDestr = xDestructor; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_WAL /* ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint(). ** Invoke sqlite3_wal_checkpoint if the number of frames in the log file ** is greater than sqlite3.pWalArg cast to an integer (the value configured by ** wal_autocheckpoint()). */ SQLITE_PRIVATE int sqlite3WalDefaultHook( void *pClientData, /* Argument */ sqlite3 *db, /* Connection */ const char *zDb, /* Database */ int nFrame /* Size of WAL */ ){ if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){ sqlite3BeginBenignMalloc(); sqlite3_wal_checkpoint(db, zDb); sqlite3EndBenignMalloc(); } return SQLITE_OK; } #endif /* SQLITE_OMIT_WAL */ /* ** Configure an sqlite3_wal_hook() callback to automatically checkpoint ** a database after committing a transaction if there are nFrame or ** more frames in the log file. Passing zero or a negative value as the ** nFrame parameter disables automatic checkpoints entirely. ** ** The callback registered by this function replaces any existing callback ** registered using sqlite3_wal_hook(). Likewise, registering a callback ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism ** configured by this function. */ SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){ #ifdef SQLITE_OMIT_WAL UNUSED_PARAMETER(db); UNUSED_PARAMETER(nFrame); #else #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif if( nFrame>0 ){ sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame)); }else{ sqlite3_wal_hook(db, 0, 0); } #endif return SQLITE_OK; } /* ** Register a callback to be invoked each time a transaction is written ** into the write-ahead-log by this database connection. */ SQLITE_API void *sqlite3_wal_hook( sqlite3 *db, /* Attach the hook to this db handle */ int(*xCallback)(void *, sqlite3*, const char*, int), void *pArg /* First argument passed to xCallback() */ ){ #ifndef SQLITE_OMIT_WAL void *pRet; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pRet = db->pWalArg; db->xWalCallback = xCallback; db->pWalArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; #else return 0; #endif } /* ** Checkpoint database zDb. */ SQLITE_API int sqlite3_wal_checkpoint_v2( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of attached database (or NULL) */ int eMode, /* SQLITE_CHECKPOINT_* value */ int *pnLog, /* OUT: Size of WAL log in frames */ int *pnCkpt /* OUT: Total number of frames checkpointed */ ){ #ifdef SQLITE_OMIT_WAL return SQLITE_OK; #else int rc; /* Return code */ int iDb; /* Schema to checkpoint */ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif /* Initialize the output variables to -1 in case an error occurs. */ if( pnLog ) *pnLog = -1; if( pnCkpt ) *pnCkpt = -1; assert( SQLITE_CHECKPOINT_PASSIVE==0 ); assert( SQLITE_CHECKPOINT_FULL==1 ); assert( SQLITE_CHECKPOINT_RESTART==2 ); assert( SQLITE_CHECKPOINT_TRUNCATE==3 ); if( eModeSQLITE_CHECKPOINT_TRUNCATE ){ /* EVIDENCE-OF: R-03996-12088 The M parameter must be a valid checkpoint ** mode: */ return SQLITE_MISUSE; } sqlite3_mutex_enter(db->mutex); if( zDb && zDb[0] ){ iDb = sqlite3FindDbName(db, zDb); }else{ iDb = SQLITE_MAX_DB; /* This means process all schemas */ } if( iDb<0 ){ rc = SQLITE_ERROR; sqlite3ErrorWithMsg(db, SQLITE_ERROR, "unknown database: %s", zDb); }else{ db->busyHandler.nBusy = 0; rc = sqlite3Checkpoint(db, iDb, eMode, pnLog, pnCkpt); sqlite3Error(db, rc); } rc = sqlite3ApiExit(db, rc); /* If there are no active statements, clear the interrupt flag at this ** point. */ if( db->nVdbeActive==0 ){ AtomicStore(&db->u1.isInterrupted, 0); } sqlite3_mutex_leave(db->mutex); return rc; #endif } /* ** Checkpoint database zDb. If zDb is NULL, or if the buffer zDb points ** to contains a zero-length string, all attached databases are ** checkpointed. */ SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb){ /* EVIDENCE-OF: R-41613-20553 The sqlite3_wal_checkpoint(D,X) is equivalent to ** sqlite3_wal_checkpoint_v2(D,X,SQLITE_CHECKPOINT_PASSIVE,0,0). */ return sqlite3_wal_checkpoint_v2(db,zDb,SQLITE_CHECKPOINT_PASSIVE,0,0); } #ifndef SQLITE_OMIT_WAL /* ** Run a checkpoint on database iDb. This is a no-op if database iDb is ** not currently open in WAL mode. ** ** If a transaction is open on the database being checkpointed, this ** function returns SQLITE_LOCKED and a checkpoint is not attempted. If ** an error occurs while running the checkpoint, an SQLite error code is ** returned (i.e. SQLITE_IOERR). Otherwise, SQLITE_OK. ** ** The mutex on database handle db should be held by the caller. The mutex ** associated with the specific b-tree being checkpointed is taken by ** this function while the checkpoint is running. ** ** If iDb is passed SQLITE_MAX_DB then all attached databases are ** checkpointed. If an error is encountered it is returned immediately - ** no attempt is made to checkpoint any remaining databases. ** ** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL, RESTART ** or TRUNCATE. */ SQLITE_PRIVATE int sqlite3Checkpoint(sqlite3 *db, int iDb, int eMode, int *pnLog, int *pnCkpt){ int rc = SQLITE_OK; /* Return code */ int i; /* Used to iterate through attached dbs */ int bBusy = 0; /* True if SQLITE_BUSY has been encountered */ assert( sqlite3_mutex_held(db->mutex) ); assert( !pnLog || *pnLog==-1 ); assert( !pnCkpt || *pnCkpt==-1 ); testcase( iDb==SQLITE_MAX_ATTACHED ); /* See forum post a006d86f72 */ testcase( iDb==SQLITE_MAX_DB ); for(i=0; inDb && rc==SQLITE_OK; i++){ if( i==iDb || iDb==SQLITE_MAX_DB ){ rc = sqlite3BtreeCheckpoint(db->aDb[i].pBt, eMode, pnLog, pnCkpt); pnLog = 0; pnCkpt = 0; if( rc==SQLITE_BUSY ){ bBusy = 1; rc = SQLITE_OK; } } } return (rc==SQLITE_OK && bBusy) ? SQLITE_BUSY : rc; } #endif /* SQLITE_OMIT_WAL */ /* ** This function returns true if main-memory should be used instead of ** a temporary file for transient pager files and statement journals. ** The value returned depends on the value of db->temp_store (runtime ** parameter) and the compile time value of SQLITE_TEMP_STORE. The ** following table describes the relationship between these two values ** and this functions return value. ** ** SQLITE_TEMP_STORE db->temp_store Location of temporary database ** ----------------- -------------- ------------------------------ ** 0 any file (return 0) ** 1 1 file (return 0) ** 1 2 memory (return 1) ** 1 0 file (return 0) ** 2 1 file (return 0) ** 2 2 memory (return 1) ** 2 0 memory (return 1) ** 3 any memory (return 1) */ SQLITE_PRIVATE int sqlite3TempInMemory(const sqlite3 *db){ #if SQLITE_TEMP_STORE==1 return ( db->temp_store==2 ); #endif #if SQLITE_TEMP_STORE==2 return ( db->temp_store!=1 ); #endif #if SQLITE_TEMP_STORE==3 UNUSED_PARAMETER(db); return 1; #endif #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3 UNUSED_PARAMETER(db); return 0; #endif } /* ** Return UTF-8 encoded English language explanation of the most recent ** error. */ SQLITE_API const char *sqlite3_errmsg(sqlite3 *db){ const char *z; if( !db ){ return sqlite3ErrStr(SQLITE_NOMEM_BKPT); } if( !sqlite3SafetyCheckSickOrOk(db) ){ return sqlite3ErrStr(SQLITE_MISUSE_BKPT); } sqlite3_mutex_enter(db->mutex); if( db->mallocFailed ){ z = sqlite3ErrStr(SQLITE_NOMEM_BKPT); }else{ testcase( db->pErr==0 ); z = db->errCode ? (char*)sqlite3_value_text(db->pErr) : 0; assert( !db->mallocFailed ); if( z==0 ){ z = sqlite3ErrStr(db->errCode); } } sqlite3_mutex_leave(db->mutex); return z; } /* ** Return the byte offset of the most recent error */ SQLITE_API int sqlite3_error_offset(sqlite3 *db){ int iOffset = -1; if( db && sqlite3SafetyCheckSickOrOk(db) && db->errCode ){ sqlite3_mutex_enter(db->mutex); iOffset = db->errByteOffset; sqlite3_mutex_leave(db->mutex); } return iOffset; } #ifndef SQLITE_OMIT_UTF16 /* ** Return UTF-16 encoded English language explanation of the most recent ** error. */ SQLITE_API const void *sqlite3_errmsg16(sqlite3 *db){ static const u16 outOfMem[] = { 'o', 'u', 't', ' ', 'o', 'f', ' ', 'm', 'e', 'm', 'o', 'r', 'y', 0 }; static const u16 misuse[] = { 'b', 'a', 'd', ' ', 'p', 'a', 'r', 'a', 'm', 'e', 't', 'e', 'r', ' ', 'o', 'r', ' ', 'o', 't', 'h', 'e', 'r', ' ', 'A', 'P', 'I', ' ', 'm', 'i', 's', 'u', 's', 'e', 0 }; const void *z; if( !db ){ return (void *)outOfMem; } if( !sqlite3SafetyCheckSickOrOk(db) ){ return (void *)misuse; } sqlite3_mutex_enter(db->mutex); if( db->mallocFailed ){ z = (void *)outOfMem; }else{ z = sqlite3_value_text16(db->pErr); if( z==0 ){ sqlite3ErrorWithMsg(db, db->errCode, sqlite3ErrStr(db->errCode)); z = sqlite3_value_text16(db->pErr); } /* A malloc() may have failed within the call to sqlite3_value_text16() ** above. If this is the case, then the db->mallocFailed flag needs to ** be cleared before returning. Do this directly, instead of via ** sqlite3ApiExit(), to avoid setting the database handle error message. */ sqlite3OomClear(db); } sqlite3_mutex_leave(db->mutex); return z; } #endif /* SQLITE_OMIT_UTF16 */ /* ** Return the most recent error code generated by an SQLite routine. If NULL is ** passed to this function, we assume a malloc() failed during sqlite3_open(). */ SQLITE_API int sqlite3_errcode(sqlite3 *db){ if( db && !sqlite3SafetyCheckSickOrOk(db) ){ return SQLITE_MISUSE_BKPT; } if( !db || db->mallocFailed ){ return SQLITE_NOMEM_BKPT; } return db->errCode & db->errMask; } SQLITE_API int sqlite3_extended_errcode(sqlite3 *db){ if( db && !sqlite3SafetyCheckSickOrOk(db) ){ return SQLITE_MISUSE_BKPT; } if( !db || db->mallocFailed ){ return SQLITE_NOMEM_BKPT; } return db->errCode; } SQLITE_API int sqlite3_system_errno(sqlite3 *db){ return db ? db->iSysErrno : 0; } /* ** Return a string that describes the kind of error specified in the ** argument. For now, this simply calls the internal sqlite3ErrStr() ** function. */ SQLITE_API const char *sqlite3_errstr(int rc){ return sqlite3ErrStr(rc); } /* ** Create a new collating function for database "db". The name is zName ** and the encoding is enc. */ static int createCollation( sqlite3* db, const char *zName, u8 enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ){ CollSeq *pColl; int enc2; assert( sqlite3_mutex_held(db->mutex) ); /* If SQLITE_UTF16 is specified as the encoding type, transform this ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally. */ enc2 = enc; testcase( enc2==SQLITE_UTF16 ); testcase( enc2==SQLITE_UTF16_ALIGNED ); if( enc2==SQLITE_UTF16 || enc2==SQLITE_UTF16_ALIGNED ){ enc2 = SQLITE_UTF16NATIVE; } if( enc2SQLITE_UTF16BE ){ return SQLITE_MISUSE_BKPT; } /* Check if this call is removing or replacing an existing collation ** sequence. If so, and there are active VMs, return busy. If there ** are no active VMs, invalidate any pre-compiled statements. */ pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, 0); if( pColl && pColl->xCmp ){ if( db->nVdbeActive ){ sqlite3ErrorWithMsg(db, SQLITE_BUSY, "unable to delete/modify collation sequence due to active statements"); return SQLITE_BUSY; } sqlite3ExpirePreparedStatements(db, 0); /* If collation sequence pColl was created directly by a call to ** sqlite3_create_collation, and not generated by synthCollSeq(), ** then any copies made by synthCollSeq() need to be invalidated. ** Also, collation destructor - CollSeq.xDel() - function may need ** to be called. */ if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){ CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName); int j; for(j=0; j<3; j++){ CollSeq *p = &aColl[j]; if( p->enc==pColl->enc ){ if( p->xDel ){ p->xDel(p->pUser); } p->xCmp = 0; } } } } pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, 1); if( pColl==0 ) return SQLITE_NOMEM_BKPT; pColl->xCmp = xCompare; pColl->pUser = pCtx; pColl->xDel = xDel; pColl->enc = (u8)(enc2 | (enc & SQLITE_UTF16_ALIGNED)); sqlite3Error(db, SQLITE_OK); return SQLITE_OK; } /* ** This array defines hard upper bounds on limit values. The ** initializer must be kept in sync with the SQLITE_LIMIT_* ** #defines in sqlite3.h. */ static const int aHardLimit[] = { SQLITE_MAX_LENGTH, SQLITE_MAX_SQL_LENGTH, SQLITE_MAX_COLUMN, SQLITE_MAX_EXPR_DEPTH, SQLITE_MAX_COMPOUND_SELECT, SQLITE_MAX_VDBE_OP, SQLITE_MAX_FUNCTION_ARG, SQLITE_MAX_ATTACHED, SQLITE_MAX_LIKE_PATTERN_LENGTH, SQLITE_MAX_VARIABLE_NUMBER, /* IMP: R-38091-32352 */ SQLITE_MAX_TRIGGER_DEPTH, SQLITE_MAX_WORKER_THREADS, }; /* ** Make sure the hard limits are set to reasonable values */ #if SQLITE_MAX_LENGTH<100 # error SQLITE_MAX_LENGTH must be at least 100 #endif #if SQLITE_MAX_SQL_LENGTH<100 # error SQLITE_MAX_SQL_LENGTH must be at least 100 #endif #if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH # error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH #endif #if SQLITE_MAX_COMPOUND_SELECT<2 # error SQLITE_MAX_COMPOUND_SELECT must be at least 2 #endif #if SQLITE_MAX_VDBE_OP<40 # error SQLITE_MAX_VDBE_OP must be at least 40 #endif #if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>127 # error SQLITE_MAX_FUNCTION_ARG must be between 0 and 127 #endif #if SQLITE_MAX_ATTACHED<0 || SQLITE_MAX_ATTACHED>125 # error SQLITE_MAX_ATTACHED must be between 0 and 125 #endif #if SQLITE_MAX_LIKE_PATTERN_LENGTH<1 # error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1 #endif #if SQLITE_MAX_COLUMN>32767 # error SQLITE_MAX_COLUMN must not exceed 32767 #endif #if SQLITE_MAX_TRIGGER_DEPTH<1 # error SQLITE_MAX_TRIGGER_DEPTH must be at least 1 #endif #if SQLITE_MAX_WORKER_THREADS<0 || SQLITE_MAX_WORKER_THREADS>50 # error SQLITE_MAX_WORKER_THREADS must be between 0 and 50 #endif /* ** Change the value of a limit. Report the old value. ** If an invalid limit index is supplied, report -1. ** Make no changes but still report the old value if the ** new limit is negative. ** ** A new lower limit does not shrink existing constructs. ** It merely prevents new constructs that exceed the limit ** from forming. */ SQLITE_API int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){ int oldLimit; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return -1; } #endif /* EVIDENCE-OF: R-30189-54097 For each limit category SQLITE_LIMIT_NAME ** there is a hard upper bound set at compile-time by a C preprocessor ** macro called SQLITE_MAX_NAME. (The "_LIMIT_" in the name is changed to ** "_MAX_".) */ assert( aHardLimit[SQLITE_LIMIT_LENGTH]==SQLITE_MAX_LENGTH ); assert( aHardLimit[SQLITE_LIMIT_SQL_LENGTH]==SQLITE_MAX_SQL_LENGTH ); assert( aHardLimit[SQLITE_LIMIT_COLUMN]==SQLITE_MAX_COLUMN ); assert( aHardLimit[SQLITE_LIMIT_EXPR_DEPTH]==SQLITE_MAX_EXPR_DEPTH ); assert( aHardLimit[SQLITE_LIMIT_COMPOUND_SELECT]==SQLITE_MAX_COMPOUND_SELECT); assert( aHardLimit[SQLITE_LIMIT_VDBE_OP]==SQLITE_MAX_VDBE_OP ); assert( aHardLimit[SQLITE_LIMIT_FUNCTION_ARG]==SQLITE_MAX_FUNCTION_ARG ); assert( aHardLimit[SQLITE_LIMIT_ATTACHED]==SQLITE_MAX_ATTACHED ); assert( aHardLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]== SQLITE_MAX_LIKE_PATTERN_LENGTH ); assert( aHardLimit[SQLITE_LIMIT_VARIABLE_NUMBER]==SQLITE_MAX_VARIABLE_NUMBER); assert( aHardLimit[SQLITE_LIMIT_TRIGGER_DEPTH]==SQLITE_MAX_TRIGGER_DEPTH ); assert( aHardLimit[SQLITE_LIMIT_WORKER_THREADS]==SQLITE_MAX_WORKER_THREADS ); assert( SQLITE_LIMIT_WORKER_THREADS==(SQLITE_N_LIMIT-1) ); if( limitId<0 || limitId>=SQLITE_N_LIMIT ){ return -1; } oldLimit = db->aLimit[limitId]; if( newLimit>=0 ){ /* IMP: R-52476-28732 */ if( newLimit>aHardLimit[limitId] ){ newLimit = aHardLimit[limitId]; /* IMP: R-51463-25634 */ }else if( newLimit<1 && limitId==SQLITE_LIMIT_LENGTH ){ newLimit = 1; } db->aLimit[limitId] = newLimit; } return oldLimit; /* IMP: R-53341-35419 */ } /* ** This function is used to parse both URIs and non-URI filenames passed by the ** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database ** URIs specified as part of ATTACH statements. ** ** The first argument to this function is the name of the VFS to use (or ** a NULL to signify the default VFS) if the URI does not contain a "vfs=xxx" ** query parameter. The second argument contains the URI (or non-URI filename) ** itself. When this function is called the *pFlags variable should contain ** the default flags to open the database handle with. The value stored in ** *pFlags may be updated before returning if the URI filename contains ** "cache=xxx" or "mode=xxx" query parameters. ** ** If successful, SQLITE_OK is returned. In this case *ppVfs is set to point to ** the VFS that should be used to open the database file. *pzFile is set to ** point to a buffer containing the name of the file to open. The value ** stored in *pzFile is a database name acceptable to sqlite3_uri_parameter() ** and is in the same format as names created using sqlite3_create_filename(). ** The caller must invoke sqlite3_free_filename() (not sqlite3_free()!) on ** the value returned in *pzFile to avoid a memory leak. ** ** If an error occurs, then an SQLite error code is returned and *pzErrMsg ** may be set to point to a buffer containing an English language error ** message. It is the responsibility of the caller to eventually release ** this buffer by calling sqlite3_free(). */ SQLITE_PRIVATE int sqlite3ParseUri( const char *zDefaultVfs, /* VFS to use if no "vfs=xxx" query option */ const char *zUri, /* Nul-terminated URI to parse */ unsigned int *pFlags, /* IN/OUT: SQLITE_OPEN_XXX flags */ sqlite3_vfs **ppVfs, /* OUT: VFS to use */ char **pzFile, /* OUT: Filename component of URI */ char **pzErrMsg /* OUT: Error message (if rc!=SQLITE_OK) */ ){ int rc = SQLITE_OK; unsigned int flags = *pFlags; const char *zVfs = zDefaultVfs; char *zFile; char c; int nUri = sqlite3Strlen30(zUri); assert( *pzErrMsg==0 ); if( ((flags & SQLITE_OPEN_URI) /* IMP: R-48725-32206 */ || sqlite3GlobalConfig.bOpenUri) /* IMP: R-51689-46548 */ && nUri>=5 && memcmp(zUri, "file:", 5)==0 /* IMP: R-57884-37496 */ ){ char *zOpt; int eState; /* Parser state when parsing URI */ int iIn; /* Input character index */ int iOut = 0; /* Output character index */ u64 nByte = nUri+8; /* Bytes of space to allocate */ /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen ** method that there may be extra parameters following the file-name. */ flags |= SQLITE_OPEN_URI; for(iIn=0; iIn=0 && octet<256 ); if( octet==0 ){ #ifndef SQLITE_ENABLE_URI_00_ERROR /* This branch is taken when "%00" appears within the URI. In this ** case we ignore all text in the remainder of the path, name or ** value currently being parsed. So ignore the current character ** and skip to the next "?", "=" or "&", as appropriate. */ while( (c = zUri[iIn])!=0 && c!='#' && (eState!=0 || c!='?') && (eState!=1 || (c!='=' && c!='&')) && (eState!=2 || c!='&') ){ iIn++; } continue; #else /* If ENABLE_URI_00_ERROR is defined, "%00" in a URI is an error. */ *pzErrMsg = sqlite3_mprintf("unexpected %%00 in uri"); rc = SQLITE_ERROR; goto parse_uri_out; #endif } c = octet; }else if( eState==1 && (c=='&' || c=='=') ){ if( zFile[iOut-1]==0 ){ /* An empty option name. Ignore this option altogether. */ while( zUri[iIn] && zUri[iIn]!='#' && zUri[iIn-1]!='&' ) iIn++; continue; } if( c=='&' ){ zFile[iOut++] = '\0'; }else{ eState = 2; } c = 0; }else if( (eState==0 && c=='?') || (eState==2 && c=='&') ){ c = 0; eState = 1; } zFile[iOut++] = c; } if( eState==1 ) zFile[iOut++] = '\0'; memset(zFile+iOut, 0, 4); /* end-of-options + empty journal filenames */ /* Check if there were any options specified that should be interpreted ** here. Options that are interpreted here include "vfs" and those that ** correspond to flags that may be passed to the sqlite3_open_v2() ** method. */ zOpt = &zFile[sqlite3Strlen30(zFile)+1]; while( zOpt[0] ){ int nOpt = sqlite3Strlen30(zOpt); char *zVal = &zOpt[nOpt+1]; int nVal = sqlite3Strlen30(zVal); if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){ zVfs = zVal; }else{ struct OpenMode { const char *z; int mode; } *aMode = 0; char *zModeType = 0; int mask = 0; int limit = 0; if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){ static struct OpenMode aCacheMode[] = { { "shared", SQLITE_OPEN_SHAREDCACHE }, { "private", SQLITE_OPEN_PRIVATECACHE }, { 0, 0 } }; mask = SQLITE_OPEN_SHAREDCACHE|SQLITE_OPEN_PRIVATECACHE; aMode = aCacheMode; limit = mask; zModeType = "cache"; } if( nOpt==4 && memcmp("mode", zOpt, 4)==0 ){ static struct OpenMode aOpenMode[] = { { "ro", SQLITE_OPEN_READONLY }, { "rw", SQLITE_OPEN_READWRITE }, { "rwc", SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE }, { "memory", SQLITE_OPEN_MEMORY }, { 0, 0 } }; mask = SQLITE_OPEN_READONLY | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_MEMORY; aMode = aOpenMode; limit = mask & flags; zModeType = "access"; } if( aMode ){ int i; int mode = 0; for(i=0; aMode[i].z; i++){ const char *z = aMode[i].z; if( nVal==sqlite3Strlen30(z) && 0==memcmp(zVal, z, nVal) ){ mode = aMode[i].mode; break; } } if( mode==0 ){ *pzErrMsg = sqlite3_mprintf("no such %s mode: %s", zModeType, zVal); rc = SQLITE_ERROR; goto parse_uri_out; } if( (mode & ~SQLITE_OPEN_MEMORY)>limit ){ *pzErrMsg = sqlite3_mprintf("%s mode not allowed: %s", zModeType, zVal); rc = SQLITE_PERM; goto parse_uri_out; } flags = (flags & ~mask) | mode; } } zOpt = &zVal[nVal+1]; } }else{ zFile = sqlite3_malloc64(nUri+8); if( !zFile ) return SQLITE_NOMEM_BKPT; memset(zFile, 0, 4); zFile += 4; if( nUri ){ memcpy(zFile, zUri, nUri); } memset(zFile+nUri, 0, 4); flags &= ~SQLITE_OPEN_URI; } *ppVfs = sqlite3_vfs_find(zVfs); if( *ppVfs==0 ){ *pzErrMsg = sqlite3_mprintf("no such vfs: %s", zVfs); rc = SQLITE_ERROR; } parse_uri_out: if( rc!=SQLITE_OK ){ sqlite3_free_filename(zFile); zFile = 0; } *pFlags = flags; *pzFile = zFile; return rc; } /* ** This routine does the core work of extracting URI parameters from a ** database filename for the sqlite3_uri_parameter() interface. */ static const char *uriParameter(const char *zFilename, const char *zParam){ zFilename += sqlite3Strlen30(zFilename) + 1; while( ALWAYS(zFilename!=0) && zFilename[0] ){ int x = strcmp(zFilename, zParam); zFilename += sqlite3Strlen30(zFilename) + 1; if( x==0 ) return zFilename; zFilename += sqlite3Strlen30(zFilename) + 1; } return 0; } /* ** This routine does the work of opening a database on behalf of ** sqlite3_open() and sqlite3_open16(). The database filename "zFilename" ** is UTF-8 encoded. */ static int openDatabase( const char *zFilename, /* Database filename UTF-8 encoded */ sqlite3 **ppDb, /* OUT: Returned database handle */ unsigned int flags, /* Operational flags */ const char *zVfs /* Name of the VFS to use */ ){ sqlite3 *db; /* Store allocated handle here */ int rc; /* Return code */ int isThreadsafe; /* True for threadsafe connections */ char *zOpen = 0; /* Filename argument to pass to BtreeOpen() */ char *zErrMsg = 0; /* Error message from sqlite3ParseUri() */ int i; /* Loop counter */ #ifdef SQLITE_ENABLE_API_ARMOR if( ppDb==0 ) return SQLITE_MISUSE_BKPT; #endif *ppDb = 0; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ) return rc; #endif if( sqlite3GlobalConfig.bCoreMutex==0 ){ isThreadsafe = 0; }else if( flags & SQLITE_OPEN_NOMUTEX ){ isThreadsafe = 0; }else if( flags & SQLITE_OPEN_FULLMUTEX ){ isThreadsafe = 1; }else{ isThreadsafe = sqlite3GlobalConfig.bFullMutex; } if( flags & SQLITE_OPEN_PRIVATECACHE ){ flags &= ~SQLITE_OPEN_SHAREDCACHE; }else if( sqlite3GlobalConfig.sharedCacheEnabled ){ flags |= SQLITE_OPEN_SHAREDCACHE; } /* Remove harmful bits from the flags parameter ** ** The SQLITE_OPEN_NOMUTEX and SQLITE_OPEN_FULLMUTEX flags were ** dealt with in the previous code block. Besides these, the only ** valid input flags for sqlite3_open_v2() are SQLITE_OPEN_READONLY, ** SQLITE_OPEN_READWRITE, SQLITE_OPEN_CREATE, SQLITE_OPEN_SHAREDCACHE, ** SQLITE_OPEN_PRIVATECACHE, SQLITE_OPEN_EXRESCODE, and some reserved ** bits. Silently mask off all other flags. */ flags &= ~( SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_MAIN_DB | SQLITE_OPEN_TEMP_DB | SQLITE_OPEN_TRANSIENT_DB | SQLITE_OPEN_MAIN_JOURNAL | SQLITE_OPEN_TEMP_JOURNAL | SQLITE_OPEN_SUBJOURNAL | SQLITE_OPEN_SUPER_JOURNAL | SQLITE_OPEN_NOMUTEX | SQLITE_OPEN_FULLMUTEX | SQLITE_OPEN_WAL ); /* Allocate the sqlite data structure */ db = sqlite3MallocZero( sizeof(sqlite3) ); if( db==0 ) goto opendb_out; if( isThreadsafe #ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS || sqlite3GlobalConfig.bCoreMutex #endif ){ db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE); if( db->mutex==0 ){ sqlite3_free(db); db = 0; goto opendb_out; } if( isThreadsafe==0 ){ sqlite3MutexWarnOnContention(db->mutex); } } sqlite3_mutex_enter(db->mutex); db->errMask = (flags & SQLITE_OPEN_EXRESCODE)!=0 ? 0xffffffff : 0xff; db->nDb = 2; db->eOpenState = SQLITE_STATE_BUSY; db->aDb = db->aDbStatic; db->lookaside.bDisable = 1; db->lookaside.sz = 0; assert( sizeof(db->aLimit)==sizeof(aHardLimit) ); memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit)); db->aLimit[SQLITE_LIMIT_WORKER_THREADS] = SQLITE_DEFAULT_WORKER_THREADS; db->autoCommit = 1; db->nextAutovac = -1; db->szMmap = sqlite3GlobalConfig.szMmap; db->nextPagesize = 0; db->init.azInit = sqlite3StdType; /* Any array of string ptrs will do */ #ifdef SQLITE_ENABLE_SORTER_MMAP /* Beginning with version 3.37.0, using the VFS xFetch() API to memory-map ** the temporary files used to do external sorts (see code in vdbesort.c) ** is disabled. It can still be used either by defining ** SQLITE_ENABLE_SORTER_MMAP at compile time or by using the ** SQLITE_TESTCTRL_SORTER_MMAP test-control at runtime. */ db->nMaxSorterMmap = 0x7FFFFFFF; #endif db->flags |= SQLITE_ShortColNames | SQLITE_EnableTrigger | SQLITE_EnableView | SQLITE_CacheSpill #if !defined(SQLITE_TRUSTED_SCHEMA) || SQLITE_TRUSTED_SCHEMA+0!=0 | SQLITE_TrustedSchema #endif /* The SQLITE_DQS compile-time option determines the default settings ** for SQLITE_DBCONFIG_DQS_DDL and SQLITE_DBCONFIG_DQS_DML. ** ** SQLITE_DQS SQLITE_DBCONFIG_DQS_DDL SQLITE_DBCONFIG_DQS_DML ** ---------- ----------------------- ----------------------- ** undefined on on ** 3 on on ** 2 on off ** 1 off on ** 0 off off ** ** Legacy behavior is 3 (double-quoted string literals are allowed anywhere) ** and so that is the default. But developers are encouranged to use ** -DSQLITE_DQS=0 (best) or -DSQLITE_DQS=1 (second choice) if possible. */ #if !defined(SQLITE_DQS) # define SQLITE_DQS 3 #endif #if (SQLITE_DQS&1)==1 | SQLITE_DqsDML #endif #if (SQLITE_DQS&2)==2 | SQLITE_DqsDDL #endif #if !defined(SQLITE_DEFAULT_AUTOMATIC_INDEX) || SQLITE_DEFAULT_AUTOMATIC_INDEX | SQLITE_AutoIndex #endif #if SQLITE_DEFAULT_CKPTFULLFSYNC | SQLITE_CkptFullFSync #endif #if SQLITE_DEFAULT_FILE_FORMAT<4 | SQLITE_LegacyFileFmt #endif #ifdef SQLITE_ENABLE_LOAD_EXTENSION | SQLITE_LoadExtension #endif #if SQLITE_DEFAULT_RECURSIVE_TRIGGERS | SQLITE_RecTriggers #endif #if defined(SQLITE_DEFAULT_FOREIGN_KEYS) && SQLITE_DEFAULT_FOREIGN_KEYS | SQLITE_ForeignKeys #endif #if defined(SQLITE_REVERSE_UNORDERED_SELECTS) | SQLITE_ReverseOrder #endif #if defined(SQLITE_ENABLE_OVERSIZE_CELL_CHECK) | SQLITE_CellSizeCk #endif #if defined(SQLITE_ENABLE_FTS3_TOKENIZER) | SQLITE_Fts3Tokenizer #endif #if defined(SQLITE_ENABLE_QPSG) | SQLITE_EnableQPSG #endif #if defined(SQLITE_DEFAULT_DEFENSIVE) | SQLITE_Defensive #endif #if defined(SQLITE_DEFAULT_LEGACY_ALTER_TABLE) | SQLITE_LegacyAlter #endif ; sqlite3HashInit(&db->aCollSeq); #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3HashInit(&db->aModule); #endif /* Add the default collation sequence BINARY. BINARY works for both UTF-8 ** and UTF-16, so add a version for each to avoid any unnecessary ** conversions. The only error that can occur here is a malloc() failure. ** ** EVIDENCE-OF: R-52786-44878 SQLite defines three built-in collating ** functions: */ createCollation(db, sqlite3StrBINARY, SQLITE_UTF8, 0, binCollFunc, 0); createCollation(db, sqlite3StrBINARY, SQLITE_UTF16BE, 0, binCollFunc, 0); createCollation(db, sqlite3StrBINARY, SQLITE_UTF16LE, 0, binCollFunc, 0); createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0); createCollation(db, "RTRIM", SQLITE_UTF8, 0, rtrimCollFunc, 0); if( db->mallocFailed ){ goto opendb_out; } /* Parse the filename/URI argument ** ** Only allow sensible combinations of bits in the flags argument. ** Throw an error if any non-sense combination is used. If we ** do not block illegal combinations here, it could trigger ** assert() statements in deeper layers. Sensible combinations ** are: ** ** 1: SQLITE_OPEN_READONLY ** 2: SQLITE_OPEN_READWRITE ** 6: SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE */ db->openFlags = flags; assert( SQLITE_OPEN_READONLY == 0x01 ); assert( SQLITE_OPEN_READWRITE == 0x02 ); assert( SQLITE_OPEN_CREATE == 0x04 ); testcase( (1<<(flags&7))==0x02 ); /* READONLY */ testcase( (1<<(flags&7))==0x04 ); /* READWRITE */ testcase( (1<<(flags&7))==0x40 ); /* READWRITE | CREATE */ if( ((1<<(flags&7)) & 0x46)==0 ){ rc = SQLITE_MISUSE_BKPT; /* IMP: R-18321-05872 */ }else{ rc = sqlite3ParseUri(zVfs, zFilename, &flags, &db->pVfs, &zOpen, &zErrMsg); } if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM ) sqlite3OomFault(db); sqlite3ErrorWithMsg(db, rc, zErrMsg ? "%s" : 0, zErrMsg); sqlite3_free(zErrMsg); goto opendb_out; } /* Open the backend database driver */ rc = sqlite3BtreeOpen(db->pVfs, zOpen, db, &db->aDb[0].pBt, 0, flags | SQLITE_OPEN_MAIN_DB); if( rc!=SQLITE_OK ){ if( rc==SQLITE_IOERR_NOMEM ){ rc = SQLITE_NOMEM_BKPT; } sqlite3Error(db, rc); goto opendb_out; } sqlite3BtreeEnter(db->aDb[0].pBt); db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt); if( !db->mallocFailed ){ sqlite3SetTextEncoding(db, SCHEMA_ENC(db)); } sqlite3BtreeLeave(db->aDb[0].pBt); db->aDb[1].pSchema = sqlite3SchemaGet(db, 0); /* The default safety_level for the main database is FULL; for the temp ** database it is OFF. This matches the pager layer defaults. */ db->aDb[0].zDbSName = "main"; db->aDb[0].safety_level = SQLITE_DEFAULT_SYNCHRONOUS+1; db->aDb[1].zDbSName = "temp"; db->aDb[1].safety_level = PAGER_SYNCHRONOUS_OFF; db->eOpenState = SQLITE_STATE_OPEN; if( db->mallocFailed ){ goto opendb_out; } /* Register all built-in functions, but do not attempt to read the ** database schema yet. This is delayed until the first time the database ** is accessed. */ sqlite3Error(db, SQLITE_OK); sqlite3RegisterPerConnectionBuiltinFunctions(db); rc = sqlite3_errcode(db); /* Load compiled-in extensions */ for(i=0; rc==SQLITE_OK && imDbFlags |= DBFLAG_InternalFunc; #endif /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking ** mode. -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking ** mode. Doing nothing at all also makes NORMAL the default. */ #ifdef SQLITE_DEFAULT_LOCKING_MODE db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE; sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt), SQLITE_DEFAULT_LOCKING_MODE); #endif if( rc ) sqlite3Error(db, rc); /* Enable the lookaside-malloc subsystem */ setupLookaside(db, 0, sqlite3GlobalConfig.szLookaside, sqlite3GlobalConfig.nLookaside); sqlite3_wal_autocheckpoint(db, SQLITE_DEFAULT_WAL_AUTOCHECKPOINT); opendb_out: if( db ){ assert( db->mutex!=0 || isThreadsafe==0 || sqlite3GlobalConfig.bFullMutex==0 ); sqlite3_mutex_leave(db->mutex); } rc = sqlite3_errcode(db); assert( db!=0 || (rc&0xff)==SQLITE_NOMEM ); if( (rc&0xff)==SQLITE_NOMEM ){ sqlite3_close(db); db = 0; }else if( rc!=SQLITE_OK ){ db->eOpenState = SQLITE_STATE_SICK; } *ppDb = db; #ifdef SQLITE_ENABLE_SQLLOG if( sqlite3GlobalConfig.xSqllog ){ /* Opening a db handle. Fourth parameter is passed 0. */ void *pArg = sqlite3GlobalConfig.pSqllogArg; sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0); } #endif sqlite3_free_filename(zOpen); return rc; } /* ** Open a new database handle. */ SQLITE_API int sqlite3_open( const char *zFilename, sqlite3 **ppDb ){ return openDatabase(zFilename, ppDb, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); } SQLITE_API int sqlite3_open_v2( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb, /* OUT: SQLite db handle */ int flags, /* Flags */ const char *zVfs /* Name of VFS module to use */ ){ return openDatabase(filename, ppDb, (unsigned int)flags, zVfs); } #ifndef SQLITE_OMIT_UTF16 /* ** Open a new database handle. */ SQLITE_API int sqlite3_open16( const void *zFilename, sqlite3 **ppDb ){ char const *zFilename8; /* zFilename encoded in UTF-8 instead of UTF-16 */ sqlite3_value *pVal; int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( ppDb==0 ) return SQLITE_MISUSE_BKPT; #endif *ppDb = 0; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ) return rc; #endif if( zFilename==0 ) zFilename = "\000\000"; pVal = sqlite3ValueNew(0); sqlite3ValueSetStr(pVal, -1, zFilename, SQLITE_UTF16NATIVE, SQLITE_STATIC); zFilename8 = sqlite3ValueText(pVal, SQLITE_UTF8); if( zFilename8 ){ rc = openDatabase(zFilename8, ppDb, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); assert( *ppDb || rc==SQLITE_NOMEM ); if( rc==SQLITE_OK && !DbHasProperty(*ppDb, 0, DB_SchemaLoaded) ){ SCHEMA_ENC(*ppDb) = ENC(*ppDb) = SQLITE_UTF16NATIVE; } }else{ rc = SQLITE_NOMEM_BKPT; } sqlite3ValueFree(pVal); return rc & 0xff; } #endif /* SQLITE_OMIT_UTF16 */ /* ** Register a new collation sequence with the database handle db. */ SQLITE_API int sqlite3_create_collation( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ){ return sqlite3_create_collation_v2(db, zName, enc, pCtx, xCompare, 0); } /* ** Register a new collation sequence with the database handle db. */ SQLITE_API int sqlite3_create_collation_v2( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ){ int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); assert( !db->mallocFailed ); rc = createCollation(db, zName, (u8)enc, pCtx, xCompare, xDel); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #ifndef SQLITE_OMIT_UTF16 /* ** Register a new collation sequence with the database handle db. */ SQLITE_API int sqlite3_create_collation16( sqlite3* db, const void *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ){ int rc = SQLITE_OK; char *zName8; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); assert( !db->mallocFailed ); zName8 = sqlite3Utf16to8(db, zName, -1, SQLITE_UTF16NATIVE); if( zName8 ){ rc = createCollation(db, zName8, (u8)enc, pCtx, xCompare, 0); sqlite3DbFree(db, zName8); } rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* SQLITE_OMIT_UTF16 */ /* ** Register a collation sequence factory callback with the database handle ** db. Replace any previously installed collation sequence factory. */ SQLITE_API int sqlite3_collation_needed( sqlite3 *db, void *pCollNeededArg, void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*) ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->xCollNeeded = xCollNeeded; db->xCollNeeded16 = 0; db->pCollNeededArg = pCollNeededArg; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_UTF16 /* ** Register a collation sequence factory callback with the database handle ** db. Replace any previously installed collation sequence factory. */ SQLITE_API int sqlite3_collation_needed16( sqlite3 *db, void *pCollNeededArg, void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*) ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->xCollNeeded = 0; db->xCollNeeded16 = xCollNeeded16; db->pCollNeededArg = pCollNeededArg; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #endif /* SQLITE_OMIT_UTF16 */ #ifndef SQLITE_OMIT_DEPRECATED /* ** This function is now an anachronism. It used to be used to recover from a ** malloc() failure, but SQLite now does this automatically. */ SQLITE_API int sqlite3_global_recover(void){ return SQLITE_OK; } #endif /* ** Test to see whether or not the database connection is in autocommit ** mode. Return TRUE if it is and FALSE if not. Autocommit mode is on ** by default. Autocommit is disabled by a BEGIN statement and reenabled ** by the next COMMIT or ROLLBACK. */ SQLITE_API int sqlite3_get_autocommit(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->autoCommit; } /* ** The following routines are substitutes for constants SQLITE_CORRUPT, ** SQLITE_MISUSE, SQLITE_CANTOPEN, SQLITE_NOMEM and possibly other error ** constants. They serve two purposes: ** ** 1. Serve as a convenient place to set a breakpoint in a debugger ** to detect when version error conditions occurs. ** ** 2. Invoke sqlite3_log() to provide the source code location where ** a low-level error is first detected. */ SQLITE_PRIVATE int sqlite3ReportError(int iErr, int lineno, const char *zType){ sqlite3_log(iErr, "%s at line %d of [%.10s]", zType, lineno, 20+sqlite3_sourceid()); return iErr; } SQLITE_PRIVATE int sqlite3CorruptError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_CORRUPT, lineno, "database corruption"); } SQLITE_PRIVATE int sqlite3MisuseError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_MISUSE, lineno, "misuse"); } SQLITE_PRIVATE int sqlite3CantopenError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_CANTOPEN, lineno, "cannot open file"); } #if defined(SQLITE_DEBUG) || defined(SQLITE_ENABLE_CORRUPT_PGNO) SQLITE_PRIVATE int sqlite3CorruptPgnoError(int lineno, Pgno pgno){ char zMsg[100]; sqlite3_snprintf(sizeof(zMsg), zMsg, "database corruption page %d", pgno); testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); } #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NomemError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_NOMEM, lineno, "OOM"); } SQLITE_PRIVATE int sqlite3IoerrnomemError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_IOERR_NOMEM, lineno, "I/O OOM error"); } #endif #ifndef SQLITE_OMIT_DEPRECATED /* ** This is a convenience routine that makes sure that all thread-specific ** data for this thread has been deallocated. ** ** SQLite no longer uses thread-specific data so this routine is now a ** no-op. It is retained for historical compatibility. */ SQLITE_API void sqlite3_thread_cleanup(void){ } #endif /* ** Return meta information about a specific column of a database table. ** See comment in sqlite3.h (sqlite.h.in) for details. */ SQLITE_API int sqlite3_table_column_metadata( sqlite3 *db, /* Connection handle */ const char *zDbName, /* Database name or NULL */ const char *zTableName, /* Table name */ const char *zColumnName, /* Column name */ char const **pzDataType, /* OUTPUT: Declared data type */ char const **pzCollSeq, /* OUTPUT: Collation sequence name */ int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ int *pPrimaryKey, /* OUTPUT: True if column part of PK */ int *pAutoinc /* OUTPUT: True if column is auto-increment */ ){ int rc; char *zErrMsg = 0; Table *pTab = 0; Column *pCol = 0; int iCol = 0; char const *zDataType = 0; char const *zCollSeq = 0; int notnull = 0; int primarykey = 0; int autoinc = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zTableName==0 ){ return SQLITE_MISUSE_BKPT; } #endif /* Ensure the database schema has been loaded */ sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); rc = sqlite3Init(db, &zErrMsg); if( SQLITE_OK!=rc ){ goto error_out; } /* Locate the table in question */ pTab = sqlite3FindTable(db, zTableName, zDbName); if( !pTab || IsView(pTab) ){ pTab = 0; goto error_out; } /* Find the column for which info is requested */ if( zColumnName==0 ){ /* Query for existance of table only */ }else{ for(iCol=0; iColnCol; iCol++){ pCol = &pTab->aCol[iCol]; if( 0==sqlite3StrICmp(pCol->zCnName, zColumnName) ){ break; } } if( iCol==pTab->nCol ){ if( HasRowid(pTab) && sqlite3IsRowid(zColumnName) ){ iCol = pTab->iPKey; pCol = iCol>=0 ? &pTab->aCol[iCol] : 0; }else{ pTab = 0; goto error_out; } } } /* The following block stores the meta information that will be returned ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey ** and autoinc. At this point there are two possibilities: ** ** 1. The specified column name was rowid", "oid" or "_rowid_" ** and there is no explicitly declared IPK column. ** ** 2. The table is not a view and the column name identified an ** explicitly declared column. Copy meta information from *pCol. */ if( pCol ){ zDataType = sqlite3ColumnType(pCol,0); zCollSeq = sqlite3ColumnColl(pCol); notnull = pCol->notNull!=0; primarykey = (pCol->colFlags & COLFLAG_PRIMKEY)!=0; autoinc = pTab->iPKey==iCol && (pTab->tabFlags & TF_Autoincrement)!=0; }else{ zDataType = "INTEGER"; primarykey = 1; } if( !zCollSeq ){ zCollSeq = sqlite3StrBINARY; } error_out: sqlite3BtreeLeaveAll(db); /* Whether the function call succeeded or failed, set the output parameters ** to whatever their local counterparts contain. If an error did occur, ** this has the effect of zeroing all output parameters. */ if( pzDataType ) *pzDataType = zDataType; if( pzCollSeq ) *pzCollSeq = zCollSeq; if( pNotNull ) *pNotNull = notnull; if( pPrimaryKey ) *pPrimaryKey = primarykey; if( pAutoinc ) *pAutoinc = autoinc; if( SQLITE_OK==rc && !pTab ){ sqlite3DbFree(db, zErrMsg); zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName, zColumnName); rc = SQLITE_ERROR; } sqlite3ErrorWithMsg(db, rc, (zErrMsg?"%s":0), zErrMsg); sqlite3DbFree(db, zErrMsg); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Sleep for a little while. Return the amount of time slept. */ SQLITE_API int sqlite3_sleep(int ms){ sqlite3_vfs *pVfs; int rc; pVfs = sqlite3_vfs_find(0); if( pVfs==0 ) return 0; /* This function works in milliseconds, but the underlying OsSleep() ** API uses microseconds. Hence the 1000's. */ rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000); return rc; } /* ** Enable or disable the extended result codes. */ SQLITE_API int sqlite3_extended_result_codes(sqlite3 *db, int onoff){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->errMask = onoff ? 0xffffffff : 0xff; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } /* ** Invoke the xFileControl method on a particular database. */ SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){ int rc = SQLITE_ERROR; Btree *pBtree; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); pBtree = sqlite3DbNameToBtree(db, zDbName); if( pBtree ){ Pager *pPager; sqlite3_file *fd; sqlite3BtreeEnter(pBtree); pPager = sqlite3BtreePager(pBtree); assert( pPager!=0 ); fd = sqlite3PagerFile(pPager); assert( fd!=0 ); if( op==SQLITE_FCNTL_FILE_POINTER ){ *(sqlite3_file**)pArg = fd; rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_VFS_POINTER ){ *(sqlite3_vfs**)pArg = sqlite3PagerVfs(pPager); rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_JOURNAL_POINTER ){ *(sqlite3_file**)pArg = sqlite3PagerJrnlFile(pPager); rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_DATA_VERSION ){ *(unsigned int*)pArg = sqlite3PagerDataVersion(pPager); rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_RESERVE_BYTES ){ int iNew = *(int*)pArg; *(int*)pArg = sqlite3BtreeGetRequestedReserve(pBtree); if( iNew>=0 && iNew<=255 ){ sqlite3BtreeSetPageSize(pBtree, 0, iNew, 0); } rc = SQLITE_OK; }else{ int nSave = db->busyHandler.nBusy; rc = sqlite3OsFileControl(fd, op, pArg); db->busyHandler.nBusy = nSave; } sqlite3BtreeLeave(pBtree); } sqlite3_mutex_leave(db->mutex); return rc; } /* ** Interface to the testing logic. */ SQLITE_API int sqlite3_test_control(int op, ...){ int rc = 0; #ifdef SQLITE_UNTESTABLE UNUSED_PARAMETER(op); #else va_list ap; va_start(ap, op); switch( op ){ /* ** Save the current state of the PRNG. */ case SQLITE_TESTCTRL_PRNG_SAVE: { sqlite3PrngSaveState(); break; } /* ** Restore the state of the PRNG to the last state saved using ** PRNG_SAVE. If PRNG_SAVE has never before been called, then ** this verb acts like PRNG_RESET. */ case SQLITE_TESTCTRL_PRNG_RESTORE: { sqlite3PrngRestoreState(); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_PRNG_SEED, int x, sqlite3 *db); ** ** Control the seed for the pseudo-random number generator (PRNG) that ** is built into SQLite. Cases: ** ** x!=0 && db!=0 Seed the PRNG to the current value of the ** schema cookie in the main database for db, or ** x if the schema cookie is zero. This case ** is convenient to use with database fuzzers ** as it allows the fuzzer some control over the ** the PRNG seed. ** ** x!=0 && db==0 Seed the PRNG to the value of x. ** ** x==0 && db==0 Revert to default behavior of using the ** xRandomness method on the primary VFS. ** ** This test-control also resets the PRNG so that the new seed will ** be used for the next call to sqlite3_randomness(). */ #ifndef SQLITE_OMIT_WSD case SQLITE_TESTCTRL_PRNG_SEED: { int x = va_arg(ap, int); int y; sqlite3 *db = va_arg(ap, sqlite3*); assert( db==0 || db->aDb[0].pSchema!=0 ); if( db && (y = db->aDb[0].pSchema->schema_cookie)!=0 ){ x = y; } sqlite3Config.iPrngSeed = x; sqlite3_randomness(0,0); break; } #endif /* ** sqlite3_test_control(BITVEC_TEST, size, program) ** ** Run a test against a Bitvec object of size. The program argument ** is an array of integers that defines the test. Return -1 on a ** memory allocation error, 0 on success, or non-zero for an error. ** See the sqlite3BitvecBuiltinTest() for additional information. */ case SQLITE_TESTCTRL_BITVEC_TEST: { int sz = va_arg(ap, int); int *aProg = va_arg(ap, int*); rc = sqlite3BitvecBuiltinTest(sz, aProg); break; } /* ** sqlite3_test_control(FAULT_INSTALL, xCallback) ** ** Arrange to invoke xCallback() whenever sqlite3FaultSim() is called, ** if xCallback is not NULL. ** ** As a test of the fault simulator mechanism itself, sqlite3FaultSim(0) ** is called immediately after installing the new callback and the return ** value from sqlite3FaultSim(0) becomes the return from ** sqlite3_test_control(). */ case SQLITE_TESTCTRL_FAULT_INSTALL: { /* A bug in MSVC prevents it from understanding pointers to functions ** types in the second argument to va_arg(). Work around the problem ** using a typedef. ** http://support.microsoft.com/kb/47961 <-- dead hyperlink ** Search at http://web.archive.org/ to find the 2015-03-16 archive ** of the link above to see the original text. ** sqlite3GlobalConfig.xTestCallback = va_arg(ap, int(*)(int)); */ typedef int(*sqlite3FaultFuncType)(int); sqlite3GlobalConfig.xTestCallback = va_arg(ap, sqlite3FaultFuncType); rc = sqlite3FaultSim(0); break; } /* ** sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd) ** ** Register hooks to call to indicate which malloc() failures ** are benign. */ case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: { typedef void (*void_function)(void); void_function xBenignBegin; void_function xBenignEnd; xBenignBegin = va_arg(ap, void_function); xBenignEnd = va_arg(ap, void_function); sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd); break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_PENDING_BYTE, unsigned int X) ** ** Set the PENDING byte to the value in the argument, if X>0. ** Make no changes if X==0. Return the value of the pending byte ** as it existing before this routine was called. ** ** IMPORTANT: Changing the PENDING byte from 0x40000000 results in ** an incompatible database file format. Changing the PENDING byte ** while any database connection is open results in undefined and ** deleterious behavior. */ case SQLITE_TESTCTRL_PENDING_BYTE: { rc = PENDING_BYTE; #ifndef SQLITE_OMIT_WSD { unsigned int newVal = va_arg(ap, unsigned int); if( newVal ) sqlite3PendingByte = newVal; } #endif break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_ASSERT, int X) ** ** This action provides a run-time test to see whether or not ** assert() was enabled at compile-time. If X is true and assert() ** is enabled, then the return value is true. If X is true and ** assert() is disabled, then the return value is zero. If X is ** false and assert() is enabled, then the assertion fires and the ** process aborts. If X is false and assert() is disabled, then the ** return value is zero. */ case SQLITE_TESTCTRL_ASSERT: { volatile int x = 0; assert( /*side-effects-ok*/ (x = va_arg(ap,int))!=0 ); rc = x; break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_ALWAYS, int X) ** ** This action provides a run-time test to see how the ALWAYS and ** NEVER macros were defined at compile-time. ** ** The return value is ALWAYS(X) if X is true, or 0 if X is false. ** ** The recommended test is X==2. If the return value is 2, that means ** ALWAYS() and NEVER() are both no-op pass-through macros, which is the ** default setting. If the return value is 1, then ALWAYS() is either ** hard-coded to true or else it asserts if its argument is false. ** The first behavior (hard-coded to true) is the case if ** SQLITE_TESTCTRL_ASSERT shows that assert() is disabled and the second ** behavior (assert if the argument to ALWAYS() is false) is the case if ** SQLITE_TESTCTRL_ASSERT shows that assert() is enabled. ** ** The run-time test procedure might look something like this: ** ** if( sqlite3_test_control(SQLITE_TESTCTRL_ALWAYS, 2)==2 ){ ** // ALWAYS() and NEVER() are no-op pass-through macros ** }else if( sqlite3_test_control(SQLITE_TESTCTRL_ASSERT, 1) ){ ** // ALWAYS(x) asserts that x is true. NEVER(x) asserts x is false. ** }else{ ** // ALWAYS(x) is a constant 1. NEVER(x) is a constant 0. ** } */ case SQLITE_TESTCTRL_ALWAYS: { int x = va_arg(ap,int); rc = x ? ALWAYS(x) : 0; break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_BYTEORDER); ** ** The integer returned reveals the byte-order of the computer on which ** SQLite is running: ** ** 1 big-endian, determined at run-time ** 10 little-endian, determined at run-time ** 432101 big-endian, determined at compile-time ** 123410 little-endian, determined at compile-time */ case SQLITE_TESTCTRL_BYTEORDER: { rc = SQLITE_BYTEORDER*100 + SQLITE_LITTLEENDIAN*10 + SQLITE_BIGENDIAN; break; } /* sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS, sqlite3 *db, int N) ** ** Enable or disable various optimizations for testing purposes. The ** argument N is a bitmask of optimizations to be disabled. For normal ** operation N should be 0. The idea is that a test program (like the ** SQL Logic Test or SLT test module) can run the same SQL multiple times ** with various optimizations disabled to verify that the same answer ** is obtained in every case. */ case SQLITE_TESTCTRL_OPTIMIZATIONS: { sqlite3 *db = va_arg(ap, sqlite3*); db->dbOptFlags = va_arg(ap, u32); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, onoff, xAlt); ** ** If parameter onoff is 1, subsequent calls to localtime() fail. ** If 2, then invoke xAlt() instead of localtime(). If 0, normal ** processing. ** ** xAlt arguments are void pointers, but they really want to be: ** ** int xAlt(const time_t*, struct tm*); ** ** xAlt should write results in to struct tm object of its 2nd argument ** and return zero on success, or return non-zero on failure. */ case SQLITE_TESTCTRL_LOCALTIME_FAULT: { sqlite3GlobalConfig.bLocaltimeFault = va_arg(ap, int); if( sqlite3GlobalConfig.bLocaltimeFault==2 ){ typedef int(*sqlite3LocaltimeType)(const void*,void*); sqlite3GlobalConfig.xAltLocaltime = va_arg(ap, sqlite3LocaltimeType); }else{ sqlite3GlobalConfig.xAltLocaltime = 0; } break; } /* sqlite3_test_control(SQLITE_TESTCTRL_INTERNAL_FUNCTIONS, sqlite3*); ** ** Toggle the ability to use internal functions on or off for ** the database connection given in the argument. */ case SQLITE_TESTCTRL_INTERNAL_FUNCTIONS: { sqlite3 *db = va_arg(ap, sqlite3*); db->mDbFlags ^= DBFLAG_InternalFunc; break; } /* sqlite3_test_control(SQLITE_TESTCTRL_NEVER_CORRUPT, int); ** ** Set or clear a flag that indicates that the database file is always well- ** formed and never corrupt. This flag is clear by default, indicating that ** database files might have arbitrary corruption. Setting the flag during ** testing causes certain assert() statements in the code to be activated ** that demonstrat invariants on well-formed database files. */ case SQLITE_TESTCTRL_NEVER_CORRUPT: { sqlite3GlobalConfig.neverCorrupt = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS, int); ** ** Set or clear a flag that causes SQLite to verify that type, name, ** and tbl_name fields of the sqlite_schema table. This is normally ** on, but it is sometimes useful to turn it off for testing. ** ** 2020-07-22: Disabling EXTRA_SCHEMA_CHECKS also disables the ** verification of rootpage numbers when parsing the schema. This ** is useful to make it easier to reach strange internal error states ** during testing. The EXTRA_SCHEMA_CHECKS setting is always enabled ** in production. */ case SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS: { sqlite3GlobalConfig.bExtraSchemaChecks = va_arg(ap, int); break; } /* Set the threshold at which OP_Once counters reset back to zero. ** By default this is 0x7ffffffe (over 2 billion), but that value is ** too big to test in a reasonable amount of time, so this control is ** provided to set a small and easily reachable reset value. */ case SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD: { sqlite3GlobalConfig.iOnceResetThreshold = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_VDBE_COVERAGE, xCallback, ptr); ** ** Set the VDBE coverage callback function to xCallback with context ** pointer ptr. */ case SQLITE_TESTCTRL_VDBE_COVERAGE: { #ifdef SQLITE_VDBE_COVERAGE typedef void (*branch_callback)(void*,unsigned int, unsigned char,unsigned char); sqlite3GlobalConfig.xVdbeBranch = va_arg(ap,branch_callback); sqlite3GlobalConfig.pVdbeBranchArg = va_arg(ap,void*); #endif break; } /* sqlite3_test_control(SQLITE_TESTCTRL_SORTER_MMAP, db, nMax); */ case SQLITE_TESTCTRL_SORTER_MMAP: { sqlite3 *db = va_arg(ap, sqlite3*); db->nMaxSorterMmap = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_ISINIT); ** ** Return SQLITE_OK if SQLite has been initialized and SQLITE_ERROR if ** not. */ case SQLITE_TESTCTRL_ISINIT: { if( sqlite3GlobalConfig.isInit==0 ) rc = SQLITE_ERROR; break; } /* sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, db, dbName, onOff, tnum); ** ** This test control is used to create imposter tables. "db" is a pointer ** to the database connection. dbName is the database name (ex: "main" or ** "temp") which will receive the imposter. "onOff" turns imposter mode on ** or off. "tnum" is the root page of the b-tree to which the imposter ** table should connect. ** ** Enable imposter mode only when the schema has already been parsed. Then ** run a single CREATE TABLE statement to construct the imposter table in ** the parsed schema. Then turn imposter mode back off again. ** ** If onOff==0 and tnum>0 then reset the schema for all databases, causing ** the schema to be reparsed the next time it is needed. This has the ** effect of erasing all imposter tables. */ case SQLITE_TESTCTRL_IMPOSTER: { sqlite3 *db = va_arg(ap, sqlite3*); int iDb; sqlite3_mutex_enter(db->mutex); iDb = sqlite3FindDbName(db, va_arg(ap,const char*)); if( iDb>=0 ){ db->init.iDb = iDb; db->init.busy = db->init.imposterTable = va_arg(ap,int); db->init.newTnum = va_arg(ap,int); if( db->init.busy==0 && db->init.newTnum>0 ){ sqlite3ResetAllSchemasOfConnection(db); } } sqlite3_mutex_leave(db->mutex); break; } #if defined(YYCOVERAGE) /* sqlite3_test_control(SQLITE_TESTCTRL_PARSER_COVERAGE, FILE *out) ** ** This test control (only available when SQLite is compiled with ** -DYYCOVERAGE) writes a report onto "out" that shows all ** state/lookahead combinations in the parser state machine ** which are never exercised. If any state is missed, make the ** return code SQLITE_ERROR. */ case SQLITE_TESTCTRL_PARSER_COVERAGE: { FILE *out = va_arg(ap, FILE*); if( sqlite3ParserCoverage(out) ) rc = SQLITE_ERROR; break; } #endif /* defined(YYCOVERAGE) */ /* sqlite3_test_control(SQLITE_TESTCTRL_RESULT_INTREAL, sqlite3_context*); ** ** This test-control causes the most recent sqlite3_result_int64() value ** to be interpreted as a MEM_IntReal instead of as an MEM_Int. Normally, ** MEM_IntReal values only arise during an INSERT operation of integer ** values into a REAL column, so they can be challenging to test. This ** test-control enables us to write an intreal() SQL function that can ** inject an intreal() value at arbitrary places in an SQL statement, ** for testing purposes. */ case SQLITE_TESTCTRL_RESULT_INTREAL: { sqlite3_context *pCtx = va_arg(ap, sqlite3_context*); sqlite3ResultIntReal(pCtx); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_SEEK_COUNT, ** sqlite3 *db, // Database connection ** u64 *pnSeek // Write seek count here ** ); ** ** This test-control queries the seek-counter on the "main" database ** file. The seek-counter is written into *pnSeek and is then reset. ** The seek-count is only available if compiled with SQLITE_DEBUG. */ case SQLITE_TESTCTRL_SEEK_COUNT: { sqlite3 *db = va_arg(ap, sqlite3*); u64 *pn = va_arg(ap, sqlite3_uint64*); *pn = sqlite3BtreeSeekCount(db->aDb->pBt); (void)db; /* Silence harmless unused variable warning */ break; } /* sqlite3_test_control(SQLITE_TESTCTRL_TRACEFLAGS, op, ptr) ** ** "ptr" is a pointer to a u32. ** ** op==0 Store the current sqlite3SelectTrace in *ptr ** op==1 Set sqlite3SelectTrace to the value *ptr ** op==3 Store the current sqlite3WhereTrace in *ptr ** op==3 Set sqlite3WhereTrace to the value *ptr */ case SQLITE_TESTCTRL_TRACEFLAGS: { int opTrace = va_arg(ap, int); u32 *ptr = va_arg(ap, u32*); switch( opTrace ){ case 0: *ptr = sqlite3SelectTrace; break; case 1: sqlite3SelectTrace = *ptr; break; case 2: *ptr = sqlite3WhereTrace; break; case 3: sqlite3WhereTrace = *ptr; break; } break; } /* sqlite3_test_control(SQLITE_TESTCTRL_LOGEST, ** double fIn, // Input value ** int *pLogEst, // sqlite3LogEstFromDouble(fIn) ** u64 *pInt, // sqlite3LogEstToInt(*pLogEst) ** int *pLogEst2 // sqlite3LogEst(*pInt) ** ); ** ** Test access for the LogEst conversion routines. */ case SQLITE_TESTCTRL_LOGEST: { double rIn = va_arg(ap, double); LogEst rLogEst = sqlite3LogEstFromDouble(rIn); u64 iInt = sqlite3LogEstToInt(rLogEst); va_arg(ap, int*)[0] = rLogEst; va_arg(ap, u64*)[0] = iInt; va_arg(ap, int*)[0] = sqlite3LogEst(iInt); break; } #if defined(SQLITE_DEBUG) && !defined(SQLITE_OMIT_WSD) /* sqlite3_test_control(SQLITE_TESTCTRL_TUNE, id, *piValue) ** ** If "id" is an integer between 1 and SQLITE_NTUNE then set the value ** of the id-th tuning parameter to *piValue. If "id" is between -1 ** and -SQLITE_NTUNE, then write the current value of the (-id)-th ** tuning parameter into *piValue. ** ** Tuning parameters are for use during transient development builds, ** to help find the best values for constants in the query planner. ** Access tuning parameters using the Tuning(ID) macro. Set the ** parameters in the CLI using ".testctrl tune ID VALUE". ** ** Transient use only. Tuning parameters should not be used in ** checked-in code. */ case SQLITE_TESTCTRL_TUNE: { int id = va_arg(ap, int); int *piValue = va_arg(ap, int*); if( id>0 && id<=SQLITE_NTUNE ){ Tuning(id) = *piValue; }else if( id<0 && id>=-SQLITE_NTUNE ){ *piValue = Tuning(-id); }else{ rc = SQLITE_NOTFOUND; } break; } #endif } va_end(ap); #endif /* SQLITE_UNTESTABLE */ return rc; } /* ** The Pager stores the Database filename, Journal filename, and WAL filename ** consecutively in memory, in that order. The database filename is prefixed ** by four zero bytes. Locate the start of the database filename by searching ** backwards for the first byte following four consecutive zero bytes. ** ** This only works if the filename passed in was obtained from the Pager. */ static const char *databaseName(const char *zName){ while( zName[-1]!=0 || zName[-2]!=0 || zName[-3]!=0 || zName[-4]!=0 ){ zName--; } return zName; } /* ** Append text z[] to the end of p[]. Return a pointer to the first ** character after then zero terminator on the new text in p[]. */ static char *appendText(char *p, const char *z){ size_t n = strlen(z); memcpy(p, z, n+1); return p+n+1; } /* ** Allocate memory to hold names for a database, journal file, WAL file, ** and query parameters. The pointer returned is valid for use by ** sqlite3_filename_database() and sqlite3_uri_parameter() and related ** functions. ** ** Memory layout must be compatible with that generated by the pager ** and expected by sqlite3_uri_parameter() and databaseName(). */ SQLITE_API char *sqlite3_create_filename( const char *zDatabase, const char *zJournal, const char *zWal, int nParam, const char **azParam ){ sqlite3_int64 nByte; int i; char *pResult, *p; nByte = strlen(zDatabase) + strlen(zJournal) + strlen(zWal) + 10; for(i=0; i0 ){ zFilename += sqlite3Strlen30(zFilename) + 1; zFilename += sqlite3Strlen30(zFilename) + 1; } return zFilename[0] ? zFilename : 0; } /* ** Return a boolean value for a query parameter. */ SQLITE_API int sqlite3_uri_boolean(const char *zFilename, const char *zParam, int bDflt){ const char *z = sqlite3_uri_parameter(zFilename, zParam); bDflt = bDflt!=0; return z ? sqlite3GetBoolean(z, bDflt) : bDflt; } /* ** Return a 64-bit integer value for a query parameter. */ SQLITE_API sqlite3_int64 sqlite3_uri_int64( const char *zFilename, /* Filename as passed to xOpen */ const char *zParam, /* URI parameter sought */ sqlite3_int64 bDflt /* return if parameter is missing */ ){ const char *z = sqlite3_uri_parameter(zFilename, zParam); sqlite3_int64 v; if( z && sqlite3DecOrHexToI64(z, &v)==0 ){ bDflt = v; } return bDflt; } /* ** Translate a filename that was handed to a VFS routine into the corresponding ** database, journal, or WAL file. ** ** It is an error to pass this routine a filename string that was not ** passed into the VFS from the SQLite core. Doing so is similar to ** passing free() a pointer that was not obtained from malloc() - it is ** an error that we cannot easily detect but that will likely cause memory ** corruption. */ SQLITE_API const char *sqlite3_filename_database(const char *zFilename){ if( zFilename==0 ) return 0; return databaseName(zFilename); } SQLITE_API const char *sqlite3_filename_journal(const char *zFilename){ if( zFilename==0 ) return 0; zFilename = databaseName(zFilename); zFilename += sqlite3Strlen30(zFilename) + 1; while( ALWAYS(zFilename) && zFilename[0] ){ zFilename += sqlite3Strlen30(zFilename) + 1; zFilename += sqlite3Strlen30(zFilename) + 1; } return zFilename + 1; } SQLITE_API const char *sqlite3_filename_wal(const char *zFilename){ #ifdef SQLITE_OMIT_WAL return 0; #else zFilename = sqlite3_filename_journal(zFilename); if( zFilename ) zFilename += sqlite3Strlen30(zFilename) + 1; return zFilename; #endif } /* ** Return the Btree pointer identified by zDbName. Return NULL if not found. */ SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3 *db, const char *zDbName){ int iDb = zDbName ? sqlite3FindDbName(db, zDbName) : 0; return iDb<0 ? 0 : db->aDb[iDb].pBt; } /* ** Return the filename of the database associated with a database ** connection. */ SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName){ Btree *pBt; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif pBt = sqlite3DbNameToBtree(db, zDbName); return pBt ? sqlite3BtreeGetFilename(pBt) : 0; } /* ** Return 1 if database is read-only or 0 if read/write. Return -1 if ** no such database exists. */ SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName){ Btree *pBt; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return -1; } #endif pBt = sqlite3DbNameToBtree(db, zDbName); return pBt ? sqlite3BtreeIsReadonly(pBt) : -1; } #ifdef SQLITE_ENABLE_SNAPSHOT /* ** Obtain a snapshot handle for the snapshot of database zDb currently ** being read by handle db. */ SQLITE_API int sqlite3_snapshot_get( sqlite3 *db, const char *zDb, sqlite3_snapshot **ppSnapshot ){ int rc = SQLITE_ERROR; #ifndef SQLITE_OMIT_WAL #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( db->autoCommit==0 ){ int iDb = sqlite3FindDbName(db, zDb); if( iDb==0 || iDb>1 ){ Btree *pBt = db->aDb[iDb].pBt; if( SQLITE_TXN_WRITE!=sqlite3BtreeTxnState(pBt) ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerSnapshotGet(sqlite3BtreePager(pBt), ppSnapshot); } } } } sqlite3_mutex_leave(db->mutex); #endif /* SQLITE_OMIT_WAL */ return rc; } /* ** Open a read-transaction on the snapshot idendified by pSnapshot. */ SQLITE_API int sqlite3_snapshot_open( sqlite3 *db, const char *zDb, sqlite3_snapshot *pSnapshot ){ int rc = SQLITE_ERROR; #ifndef SQLITE_OMIT_WAL #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( db->autoCommit==0 ){ int iDb; iDb = sqlite3FindDbName(db, zDb); if( iDb==0 || iDb>1 ){ Btree *pBt = db->aDb[iDb].pBt; if( sqlite3BtreeTxnState(pBt)!=SQLITE_TXN_WRITE ){ Pager *pPager = sqlite3BtreePager(pBt); int bUnlock = 0; if( sqlite3BtreeTxnState(pBt)!=SQLITE_TXN_NONE ){ if( db->nVdbeActive==0 ){ rc = sqlite3PagerSnapshotCheck(pPager, pSnapshot); if( rc==SQLITE_OK ){ bUnlock = 1; rc = sqlite3BtreeCommit(pBt); } } }else{ rc = SQLITE_OK; } if( rc==SQLITE_OK ){ rc = sqlite3PagerSnapshotOpen(pPager, pSnapshot); } if( rc==SQLITE_OK ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); sqlite3PagerSnapshotOpen(pPager, 0); } if( bUnlock ){ sqlite3PagerSnapshotUnlock(pPager); } } } } sqlite3_mutex_leave(db->mutex); #endif /* SQLITE_OMIT_WAL */ return rc; } /* ** Recover as many snapshots as possible from the wal file associated with ** schema zDb of database db. */ SQLITE_API int sqlite3_snapshot_recover(sqlite3 *db, const char *zDb){ int rc = SQLITE_ERROR; int iDb; #ifndef SQLITE_OMIT_WAL #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); iDb = sqlite3FindDbName(db, zDb); if( iDb==0 || iDb>1 ){ Btree *pBt = db->aDb[iDb].pBt; if( SQLITE_TXN_NONE==sqlite3BtreeTxnState(pBt) ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerSnapshotRecover(sqlite3BtreePager(pBt)); sqlite3BtreeCommit(pBt); } } } sqlite3_mutex_leave(db->mutex); #endif /* SQLITE_OMIT_WAL */ return rc; } /* ** Free a snapshot handle obtained from sqlite3_snapshot_get(). */ SQLITE_API void sqlite3_snapshot_free(sqlite3_snapshot *pSnapshot){ sqlite3_free(pSnapshot); } #endif /* SQLITE_ENABLE_SNAPSHOT */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* ** Given the name of a compile-time option, return true if that option ** was used and false if not. ** ** The name can optionally begin with "SQLITE_" but the "SQLITE_" prefix ** is not required for a match. */ SQLITE_API int sqlite3_compileoption_used(const char *zOptName){ int i, n; int nOpt; const char **azCompileOpt; #if SQLITE_ENABLE_API_ARMOR if( zOptName==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif azCompileOpt = sqlite3CompileOptions(&nOpt); if( sqlite3StrNICmp(zOptName, "SQLITE_", 7)==0 ) zOptName += 7; n = sqlite3Strlen30(zOptName); /* Since nOpt is normally in single digits, a linear search is ** adequate. No need for a binary search. */ for(i=0; i=0 && NpNextBlocked){ int seen = 0; sqlite3 *p2; /* Verify property (1) */ assert( p->pUnlockConnection || p->pBlockingConnection ); /* Verify property (2) */ for(p2=sqlite3BlockedList; p2!=p; p2=p2->pNextBlocked){ if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1; assert( p2->xUnlockNotify==p->xUnlockNotify || !seen ); assert( db==0 || p->pUnlockConnection!=db ); assert( db==0 || p->pBlockingConnection!=db ); } } } #else # define checkListProperties(x) #endif /* ** Remove connection db from the blocked connections list. If connection ** db is not currently a part of the list, this function is a no-op. */ static void removeFromBlockedList(sqlite3 *db){ sqlite3 **pp; assertMutexHeld(); for(pp=&sqlite3BlockedList; *pp; pp = &(*pp)->pNextBlocked){ if( *pp==db ){ *pp = (*pp)->pNextBlocked; break; } } } /* ** Add connection db to the blocked connections list. It is assumed ** that it is not already a part of the list. */ static void addToBlockedList(sqlite3 *db){ sqlite3 **pp; assertMutexHeld(); for( pp=&sqlite3BlockedList; *pp && (*pp)->xUnlockNotify!=db->xUnlockNotify; pp=&(*pp)->pNextBlocked ); db->pNextBlocked = *pp; *pp = db; } /* ** Obtain the STATIC_MAIN mutex. */ static void enterMutex(void){ sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)); checkListProperties(0); } /* ** Release the STATIC_MAIN mutex. */ static void leaveMutex(void){ assertMutexHeld(); checkListProperties(0); sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)); } /* ** Register an unlock-notify callback. ** ** This is called after connection "db" has attempted some operation ** but has received an SQLITE_LOCKED error because another connection ** (call it pOther) in the same process was busy using the same shared ** cache. pOther is found by looking at db->pBlockingConnection. ** ** If there is no blocking connection, the callback is invoked immediately, ** before this routine returns. ** ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate ** a deadlock. ** ** Otherwise, make arrangements to invoke xNotify when pOther drops ** its locks. ** ** Each call to this routine overrides any prior callbacks registered ** on the same "db". If xNotify==0 then any prior callbacks are immediately ** cancelled. */ SQLITE_API int sqlite3_unlock_notify( sqlite3 *db, void (*xNotify)(void **, int), void *pArg ){ int rc = SQLITE_OK; sqlite3_mutex_enter(db->mutex); enterMutex(); if( xNotify==0 ){ removeFromBlockedList(db); db->pBlockingConnection = 0; db->pUnlockConnection = 0; db->xUnlockNotify = 0; db->pUnlockArg = 0; }else if( 0==db->pBlockingConnection ){ /* The blocking transaction has been concluded. Or there never was a ** blocking transaction. In either case, invoke the notify callback ** immediately. */ xNotify(&pArg, 1); }else{ sqlite3 *p; for(p=db->pBlockingConnection; p && p!=db; p=p->pUnlockConnection){} if( p ){ rc = SQLITE_LOCKED; /* Deadlock detected. */ }else{ db->pUnlockConnection = db->pBlockingConnection; db->xUnlockNotify = xNotify; db->pUnlockArg = pArg; removeFromBlockedList(db); addToBlockedList(db); } } leaveMutex(); assert( !db->mallocFailed ); sqlite3ErrorWithMsg(db, rc, (rc?"database is deadlocked":0)); sqlite3_mutex_leave(db->mutex); return rc; } /* ** This function is called while stepping or preparing a statement ** associated with connection db. The operation will return SQLITE_LOCKED ** to the user because it requires a lock that will not be available ** until connection pBlocker concludes its current transaction. */ SQLITE_PRIVATE void sqlite3ConnectionBlocked(sqlite3 *db, sqlite3 *pBlocker){ enterMutex(); if( db->pBlockingConnection==0 && db->pUnlockConnection==0 ){ addToBlockedList(db); } db->pBlockingConnection = pBlocker; leaveMutex(); } /* ** This function is called when ** the transaction opened by database db has just finished. Locks held ** by database connection db have been released. ** ** This function loops through each entry in the blocked connections ** list and does the following: ** ** 1) If the sqlite3.pBlockingConnection member of a list entry is ** set to db, then set pBlockingConnection=0. ** ** 2) If the sqlite3.pUnlockConnection member of a list entry is ** set to db, then invoke the configured unlock-notify callback and ** set pUnlockConnection=0. ** ** 3) If the two steps above mean that pBlockingConnection==0 and ** pUnlockConnection==0, remove the entry from the blocked connections ** list. */ SQLITE_PRIVATE void sqlite3ConnectionUnlocked(sqlite3 *db){ void (*xUnlockNotify)(void **, int) = 0; /* Unlock-notify cb to invoke */ int nArg = 0; /* Number of entries in aArg[] */ sqlite3 **pp; /* Iterator variable */ void **aArg; /* Arguments to the unlock callback */ void **aDyn = 0; /* Dynamically allocated space for aArg[] */ void *aStatic[16]; /* Starter space for aArg[]. No malloc required */ aArg = aStatic; enterMutex(); /* Enter STATIC_MAIN mutex */ /* This loop runs once for each entry in the blocked-connections list. */ for(pp=&sqlite3BlockedList; *pp; /* no-op */ ){ sqlite3 *p = *pp; /* Step 1. */ if( p->pBlockingConnection==db ){ p->pBlockingConnection = 0; } /* Step 2. */ if( p->pUnlockConnection==db ){ assert( p->xUnlockNotify ); if( p->xUnlockNotify!=xUnlockNotify && nArg!=0 ){ xUnlockNotify(aArg, nArg); nArg = 0; } sqlite3BeginBenignMalloc(); assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) ); assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn ); if( (!aDyn && nArg==(int)ArraySize(aStatic)) || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*))) ){ /* The aArg[] array needs to grow. */ void **pNew = (void **)sqlite3Malloc(nArg*sizeof(void *)*2); if( pNew ){ memcpy(pNew, aArg, nArg*sizeof(void *)); sqlite3_free(aDyn); aDyn = aArg = pNew; }else{ /* This occurs when the array of context pointers that need to ** be passed to the unlock-notify callback is larger than the ** aStatic[] array allocated on the stack and the attempt to ** allocate a larger array from the heap has failed. ** ** This is a difficult situation to handle. Returning an error ** code to the caller is insufficient, as even if an error code ** is returned the transaction on connection db will still be ** closed and the unlock-notify callbacks on blocked connections ** will go unissued. This might cause the application to wait ** indefinitely for an unlock-notify callback that will never ** arrive. ** ** Instead, invoke the unlock-notify callback with the context ** array already accumulated. We can then clear the array and ** begin accumulating any further context pointers without ** requiring any dynamic allocation. This is sub-optimal because ** it means that instead of one callback with a large array of ** context pointers the application will receive two or more ** callbacks with smaller arrays of context pointers, which will ** reduce the applications ability to prioritize multiple ** connections. But it is the best that can be done under the ** circumstances. */ xUnlockNotify(aArg, nArg); nArg = 0; } } sqlite3EndBenignMalloc(); aArg[nArg++] = p->pUnlockArg; xUnlockNotify = p->xUnlockNotify; p->pUnlockConnection = 0; p->xUnlockNotify = 0; p->pUnlockArg = 0; } /* Step 3. */ if( p->pBlockingConnection==0 && p->pUnlockConnection==0 ){ /* Remove connection p from the blocked connections list. */ *pp = p->pNextBlocked; p->pNextBlocked = 0; }else{ pp = &p->pNextBlocked; } } if( nArg!=0 ){ xUnlockNotify(aArg, nArg); } sqlite3_free(aDyn); leaveMutex(); /* Leave STATIC_MAIN mutex */ } /* ** This is called when the database connection passed as an argument is ** being closed. The connection is removed from the blocked list. */ SQLITE_PRIVATE void sqlite3ConnectionClosed(sqlite3 *db){ sqlite3ConnectionUnlocked(db); enterMutex(); removeFromBlockedList(db); checkListProperties(db); leaveMutex(); } #endif /************** End of notify.c **********************************************/ /************** Begin file fts3.c ********************************************/ /* ** 2006 Oct 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This is an SQLite module implementing full-text search. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* The full-text index is stored in a series of b+tree (-like) ** structures called segments which map terms to doclists. The ** structures are like b+trees in layout, but are constructed from the ** bottom up in optimal fashion and are not updatable. Since trees ** are built from the bottom up, things will be described from the ** bottom up. ** ** **** Varints **** ** The basic unit of encoding is a variable-length integer called a ** varint. We encode variable-length integers in little-endian order ** using seven bits * per byte as follows: ** ** KEY: ** A = 0xxxxxxx 7 bits of data and one flag bit ** B = 1xxxxxxx 7 bits of data and one flag bit ** ** 7 bits - A ** 14 bits - BA ** 21 bits - BBA ** and so on. ** ** This is similar in concept to how sqlite encodes "varints" but ** the encoding is not the same. SQLite varints are big-endian ** are are limited to 9 bytes in length whereas FTS3 varints are ** little-endian and can be up to 10 bytes in length (in theory). ** ** Example encodings: ** ** 1: 0x01 ** 127: 0x7f ** 128: 0x81 0x00 ** ** **** Document lists **** ** A doclist (document list) holds a docid-sorted list of hits for a ** given term. Doclists hold docids and associated token positions. ** A docid is the unique integer identifier for a single document. ** A position is the index of a word within the document. The first ** word of the document has a position of 0. ** ** FTS3 used to optionally store character offsets using a compile-time ** option. But that functionality is no longer supported. ** ** A doclist is stored like this: ** ** array { ** varint docid; (delta from previous doclist) ** array { (position list for column 0) ** varint position; (2 more than the delta from previous position) ** } ** array { ** varint POS_COLUMN; (marks start of position list for new column) ** varint column; (index of new column) ** array { ** varint position; (2 more than the delta from previous position) ** } ** } ** varint POS_END; (marks end of positions for this document. ** } ** ** Here, array { X } means zero or more occurrences of X, adjacent in ** memory. A "position" is an index of a token in the token stream ** generated by the tokenizer. Note that POS_END and POS_COLUMN occur ** in the same logical place as the position element, and act as sentinals ** ending a position list array. POS_END is 0. POS_COLUMN is 1. ** The positions numbers are not stored literally but rather as two more ** than the difference from the prior position, or the just the position plus ** 2 for the first position. Example: ** ** label: A B C D E F G H I J K ** value: 123 5 9 1 1 14 35 0 234 72 0 ** ** The 123 value is the first docid. For column zero in this document ** there are two matches at positions 3 and 10 (5-2 and 9-2+3). The 1 ** at D signals the start of a new column; the 1 at E indicates that the ** new column is column number 1. There are two positions at 12 and 45 ** (14-2 and 35-2+12). The 0 at H indicate the end-of-document. The ** 234 at I is the delta to next docid (357). It has one position 70 ** (72-2) and then terminates with the 0 at K. ** ** A "position-list" is the list of positions for multiple columns for ** a single docid. A "column-list" is the set of positions for a single ** column. Hence, a position-list consists of one or more column-lists, ** a document record consists of a docid followed by a position-list and ** a doclist consists of one or more document records. ** ** A bare doclist omits the position information, becoming an ** array of varint-encoded docids. ** **** Segment leaf nodes **** ** Segment leaf nodes store terms and doclists, ordered by term. Leaf ** nodes are written using LeafWriter, and read using LeafReader (to ** iterate through a single leaf node's data) and LeavesReader (to ** iterate through a segment's entire leaf layer). Leaf nodes have ** the format: ** ** varint iHeight; (height from leaf level, always 0) ** varint nTerm; (length of first term) ** char pTerm[nTerm]; (content of first term) ** varint nDoclist; (length of term's associated doclist) ** char pDoclist[nDoclist]; (content of doclist) ** array { ** (further terms are delta-encoded) ** varint nPrefix; (length of prefix shared with previous term) ** varint nSuffix; (length of unshared suffix) ** char pTermSuffix[nSuffix];(unshared suffix of next term) ** varint nDoclist; (length of term's associated doclist) ** char pDoclist[nDoclist]; (content of doclist) ** } ** ** Here, array { X } means zero or more occurrences of X, adjacent in ** memory. ** ** Leaf nodes are broken into blocks which are stored contiguously in ** the %_segments table in sorted order. This means that when the end ** of a node is reached, the next term is in the node with the next ** greater node id. ** ** New data is spilled to a new leaf node when the current node ** exceeds LEAF_MAX bytes (default 2048). New data which itself is ** larger than STANDALONE_MIN (default 1024) is placed in a standalone ** node (a leaf node with a single term and doclist). The goal of ** these settings is to pack together groups of small doclists while ** making it efficient to directly access large doclists. The ** assumption is that large doclists represent terms which are more ** likely to be query targets. ** ** TODO(shess) It may be useful for blocking decisions to be more ** dynamic. For instance, it may make more sense to have a 2.5k leaf ** node rather than splitting into 2k and .5k nodes. My intuition is ** that this might extend through 2x or 4x the pagesize. ** ** **** Segment interior nodes **** ** Segment interior nodes store blockids for subtree nodes and terms ** to describe what data is stored by the each subtree. Interior ** nodes are written using InteriorWriter, and read using ** InteriorReader. InteriorWriters are created as needed when ** SegmentWriter creates new leaf nodes, or when an interior node ** itself grows too big and must be split. The format of interior ** nodes: ** ** varint iHeight; (height from leaf level, always >0) ** varint iBlockid; (block id of node's leftmost subtree) ** optional { ** varint nTerm; (length of first term) ** char pTerm[nTerm]; (content of first term) ** array { ** (further terms are delta-encoded) ** varint nPrefix; (length of shared prefix with previous term) ** varint nSuffix; (length of unshared suffix) ** char pTermSuffix[nSuffix]; (unshared suffix of next term) ** } ** } ** ** Here, optional { X } means an optional element, while array { X } ** means zero or more occurrences of X, adjacent in memory. ** ** An interior node encodes n terms separating n+1 subtrees. The ** subtree blocks are contiguous, so only the first subtree's blockid ** is encoded. The subtree at iBlockid will contain all terms less ** than the first term encoded (or all terms if no term is encoded). ** Otherwise, for terms greater than or equal to pTerm[i] but less ** than pTerm[i+1], the subtree for that term will be rooted at ** iBlockid+i. Interior nodes only store enough term data to ** distinguish adjacent children (if the rightmost term of the left ** child is "something", and the leftmost term of the right child is ** "wicked", only "w" is stored). ** ** New data is spilled to a new interior node at the same height when ** the current node exceeds INTERIOR_MAX bytes (default 2048). ** INTERIOR_MIN_TERMS (default 7) keeps large terms from monopolizing ** interior nodes and making the tree too skinny. The interior nodes ** at a given height are naturally tracked by interior nodes at ** height+1, and so on. ** ** **** Segment directory **** ** The segment directory in table %_segdir stores meta-information for ** merging and deleting segments, and also the root node of the ** segment's tree. ** ** The root node is the top node of the segment's tree after encoding ** the entire segment, restricted to ROOT_MAX bytes (default 1024). ** This could be either a leaf node or an interior node. If the top ** node requires more than ROOT_MAX bytes, it is flushed to %_segments ** and a new root interior node is generated (which should always fit ** within ROOT_MAX because it only needs space for 2 varints, the ** height and the blockid of the previous root). ** ** The meta-information in the segment directory is: ** level - segment level (see below) ** idx - index within level ** - (level,idx uniquely identify a segment) ** start_block - first leaf node ** leaves_end_block - last leaf node ** end_block - last block (including interior nodes) ** root - contents of root node ** ** If the root node is a leaf node, then start_block, ** leaves_end_block, and end_block are all 0. ** ** **** Segment merging **** ** To amortize update costs, segments are grouped into levels and ** merged in batches. Each increase in level represents exponentially ** more documents. ** ** New documents (actually, document updates) are tokenized and ** written individually (using LeafWriter) to a level 0 segment, with ** incrementing idx. When idx reaches MERGE_COUNT (default 16), all ** level 0 segments are merged into a single level 1 segment. Level 1 ** is populated like level 0, and eventually MERGE_COUNT level 1 ** segments are merged to a single level 2 segment (representing ** MERGE_COUNT^2 updates), and so on. ** ** A segment merge traverses all segments at a given level in ** parallel, performing a straightforward sorted merge. Since segment ** leaf nodes are written in to the %_segments table in order, this ** merge traverses the underlying sqlite disk structures efficiently. ** After the merge, all segment blocks from the merged level are ** deleted. ** ** MERGE_COUNT controls how often we merge segments. 16 seems to be ** somewhat of a sweet spot for insertion performance. 32 and 64 show ** very similar performance numbers to 16 on insertion, though they're ** a tiny bit slower (perhaps due to more overhead in merge-time ** sorting). 8 is about 20% slower than 16, 4 about 50% slower than ** 16, 2 about 66% slower than 16. ** ** At query time, high MERGE_COUNT increases the number of segments ** which need to be scanned and merged. For instance, with 100k docs ** inserted: ** ** MERGE_COUNT segments ** 16 25 ** 8 12 ** 4 10 ** 2 6 ** ** This appears to have only a moderate impact on queries for very ** frequent terms (which are somewhat dominated by segment merge ** costs), and infrequent and non-existent terms still seem to be fast ** even with many segments. ** ** TODO(shess) That said, it would be nice to have a better query-side ** argument for MERGE_COUNT of 16. Also, it is possible/likely that ** optimizations to things like doclist merging will swing the sweet ** spot around. ** ** ** **** Handling of deletions and updates **** ** Since we're using a segmented structure, with no docid-oriented ** index into the term index, we clearly cannot simply update the term ** index when a document is deleted or updated. For deletions, we ** write an empty doclist (varint(docid) varint(POS_END)), for updates ** we simply write the new doclist. Segment merges overwrite older ** data for a particular docid with newer data, so deletes or updates ** will eventually overtake the earlier data and knock it out. The ** query logic likewise merges doclists so that newer data knocks out ** older data. */ /************** Include fts3Int.h in the middle of fts3.c ********************/ /************** Begin file fts3Int.h *****************************************/ /* ** 2009 Nov 12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** */ #ifndef _FTSINT_H #define _FTSINT_H #if !defined(NDEBUG) && !defined(SQLITE_DEBUG) # define NDEBUG 1 #endif /* FTS3/FTS4 require virtual tables */ #ifdef SQLITE_OMIT_VIRTUALTABLE # undef SQLITE_ENABLE_FTS3 # undef SQLITE_ENABLE_FTS4 #endif /* ** FTS4 is really an extension for FTS3. It is enabled using the ** SQLITE_ENABLE_FTS3 macro. But to avoid confusion we also all ** the SQLITE_ENABLE_FTS4 macro to serve as an alisse for SQLITE_ENABLE_FTS3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) # define SQLITE_ENABLE_FTS3 #endif #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* If not building as part of the core, include sqlite3ext.h. */ #ifndef SQLITE_CORE /* # include "sqlite3ext.h" */ SQLITE_EXTENSION_INIT3 #endif /* #include "sqlite3.h" */ /************** Include fts3_tokenizer.h in the middle of fts3Int.h **********/ /************** Begin file fts3_tokenizer.h **********************************/ /* ** 2006 July 10 ** ** The author disclaims copyright to this source code. ** ************************************************************************* ** Defines the interface to tokenizers used by fulltext-search. There ** are three basic components: ** ** sqlite3_tokenizer_module is a singleton defining the tokenizer ** interface functions. This is essentially the class structure for ** tokenizers. ** ** sqlite3_tokenizer is used to define a particular tokenizer, perhaps ** including customization information defined at creation time. ** ** sqlite3_tokenizer_cursor is generated by a tokenizer to generate ** tokens from a particular input. */ #ifndef _FTS3_TOKENIZER_H_ #define _FTS3_TOKENIZER_H_ /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time. ** If tokenizers are to be allowed to call sqlite3_*() functions, then ** we will need a way to register the API consistently. */ /* #include "sqlite3.h" */ /* ** Structures used by the tokenizer interface. When a new tokenizer ** implementation is registered, the caller provides a pointer to ** an sqlite3_tokenizer_module containing pointers to the callback ** functions that make up an implementation. ** ** When an fts3 table is created, it passes any arguments passed to ** the tokenizer clause of the CREATE VIRTUAL TABLE statement to the ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer ** implementation. The xCreate() function in turn returns an ** sqlite3_tokenizer structure representing the specific tokenizer to ** be used for the fts3 table (customized by the tokenizer clause arguments). ** ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen() ** method is called. It returns an sqlite3_tokenizer_cursor object ** that may be used to tokenize a specific input buffer based on ** the tokenization rules supplied by a specific sqlite3_tokenizer ** object. */ typedef struct sqlite3_tokenizer_module sqlite3_tokenizer_module; typedef struct sqlite3_tokenizer sqlite3_tokenizer; typedef struct sqlite3_tokenizer_cursor sqlite3_tokenizer_cursor; struct sqlite3_tokenizer_module { /* ** Structure version. Should always be set to 0 or 1. */ int iVersion; /* ** Create a new tokenizer. The values in the argv[] array are the ** arguments passed to the "tokenizer" clause of the CREATE VIRTUAL ** TABLE statement that created the fts3 table. For example, if ** the following SQL is executed: ** ** CREATE .. USING fts3( ... , tokenizer arg1 arg2) ** ** then argc is set to 2, and the argv[] array contains pointers ** to the strings "arg1" and "arg2". ** ** This method should return either SQLITE_OK (0), or an SQLite error ** code. If SQLITE_OK is returned, then *ppTokenizer should be set ** to point at the newly created tokenizer structure. The generic ** sqlite3_tokenizer.pModule variable should not be initialized by ** this callback. The caller will do so. */ int (*xCreate)( int argc, /* Size of argv array */ const char *const*argv, /* Tokenizer argument strings */ sqlite3_tokenizer **ppTokenizer /* OUT: Created tokenizer */ ); /* ** Destroy an existing tokenizer. The fts3 module calls this method ** exactly once for each successful call to xCreate(). */ int (*xDestroy)(sqlite3_tokenizer *pTokenizer); /* ** Create a tokenizer cursor to tokenize an input buffer. The caller ** is responsible for ensuring that the input buffer remains valid ** until the cursor is closed (using the xClose() method). */ int (*xOpen)( sqlite3_tokenizer *pTokenizer, /* Tokenizer object */ const char *pInput, int nBytes, /* Input buffer */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Created tokenizer cursor */ ); /* ** Destroy an existing tokenizer cursor. The fts3 module calls this ** method exactly once for each successful call to xOpen(). */ int (*xClose)(sqlite3_tokenizer_cursor *pCursor); /* ** Retrieve the next token from the tokenizer cursor pCursor. This ** method should either return SQLITE_OK and set the values of the ** "OUT" variables identified below, or SQLITE_DONE to indicate that ** the end of the buffer has been reached, or an SQLite error code. ** ** *ppToken should be set to point at a buffer containing the ** normalized version of the token (i.e. after any case-folding and/or ** stemming has been performed). *pnBytes should be set to the length ** of this buffer in bytes. The input text that generated the token is ** identified by the byte offsets returned in *piStartOffset and ** *piEndOffset. *piStartOffset should be set to the index of the first ** byte of the token in the input buffer. *piEndOffset should be set ** to the index of the first byte just past the end of the token in ** the input buffer. ** ** The buffer *ppToken is set to point at is managed by the tokenizer ** implementation. It is only required to be valid until the next call ** to xNext() or xClose(). */ /* TODO(shess) current implementation requires pInput to be ** nul-terminated. This should either be fixed, or pInput/nBytes ** should be converted to zInput. */ int (*xNext)( sqlite3_tokenizer_cursor *pCursor, /* Tokenizer cursor */ const char **ppToken, int *pnBytes, /* OUT: Normalized text for token */ int *piStartOffset, /* OUT: Byte offset of token in input buffer */ int *piEndOffset, /* OUT: Byte offset of end of token in input buffer */ int *piPosition /* OUT: Number of tokens returned before this one */ ); /*********************************************************************** ** Methods below this point are only available if iVersion>=1. */ /* ** Configure the language id of a tokenizer cursor. */ int (*xLanguageid)(sqlite3_tokenizer_cursor *pCsr, int iLangid); }; struct sqlite3_tokenizer { const sqlite3_tokenizer_module *pModule; /* The module for this tokenizer */ /* Tokenizer implementations will typically add additional fields */ }; struct sqlite3_tokenizer_cursor { sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */ /* Tokenizer implementations will typically add additional fields */ }; int fts3_global_term_cnt(int iTerm, int iCol); int fts3_term_cnt(int iTerm, int iCol); #endif /* _FTS3_TOKENIZER_H_ */ /************** End of fts3_tokenizer.h **************************************/ /************** Continuing where we left off in fts3Int.h ********************/ /************** Include fts3_hash.h in the middle of fts3Int.h ***************/ /************** Begin file fts3_hash.h ***************************************/ /* ** 2001 September 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the header file for the generic hash-table implementation ** used in SQLite. We've modified it slightly to serve as a standalone ** hash table implementation for the full-text indexing module. ** */ #ifndef _FTS3_HASH_H_ #define _FTS3_HASH_H_ /* Forward declarations of structures. */ typedef struct Fts3Hash Fts3Hash; typedef struct Fts3HashElem Fts3HashElem; /* A complete hash table is an instance of the following structure. ** The internals of this structure are intended to be opaque -- client ** code should not attempt to access or modify the fields of this structure ** directly. Change this structure only by using the routines below. ** However, many of the "procedures" and "functions" for modifying and ** accessing this structure are really macros, so we can't really make ** this structure opaque. */ struct Fts3Hash { char keyClass; /* HASH_INT, _POINTER, _STRING, _BINARY */ char copyKey; /* True if copy of key made on insert */ int count; /* Number of entries in this table */ Fts3HashElem *first; /* The first element of the array */ int htsize; /* Number of buckets in the hash table */ struct _fts3ht { /* the hash table */ int count; /* Number of entries with this hash */ Fts3HashElem *chain; /* Pointer to first entry with this hash */ } *ht; }; /* Each element in the hash table is an instance of the following ** structure. All elements are stored on a single doubly-linked list. ** ** Again, this structure is intended to be opaque, but it can't really ** be opaque because it is used by macros. */ struct Fts3HashElem { Fts3HashElem *next, *prev; /* Next and previous elements in the table */ void *data; /* Data associated with this element */ void *pKey; int nKey; /* Key associated with this element */ }; /* ** There are 2 different modes of operation for a hash table: ** ** FTS3_HASH_STRING pKey points to a string that is nKey bytes long ** (including the null-terminator, if any). Case ** is respected in comparisons. ** ** FTS3_HASH_BINARY pKey points to binary data nKey bytes long. ** memcmp() is used to compare keys. ** ** A copy of the key is made if the copyKey parameter to fts3HashInit is 1. */ #define FTS3_HASH_STRING 1 #define FTS3_HASH_BINARY 2 /* ** Access routines. To delete, insert a NULL pointer. */ SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey); SQLITE_PRIVATE void *sqlite3Fts3HashInsert(Fts3Hash*, const void *pKey, int nKey, void *pData); SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash*, const void *pKey, int nKey); SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash*); SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int); /* ** Shorthand for the functions above */ #define fts3HashInit sqlite3Fts3HashInit #define fts3HashInsert sqlite3Fts3HashInsert #define fts3HashFind sqlite3Fts3HashFind #define fts3HashClear sqlite3Fts3HashClear #define fts3HashFindElem sqlite3Fts3HashFindElem /* ** Macros for looping over all elements of a hash table. The idiom is ** like this: ** ** Fts3Hash h; ** Fts3HashElem *p; ** ... ** for(p=fts3HashFirst(&h); p; p=fts3HashNext(p)){ ** SomeStructure *pData = fts3HashData(p); ** // do something with pData ** } */ #define fts3HashFirst(H) ((H)->first) #define fts3HashNext(E) ((E)->next) #define fts3HashData(E) ((E)->data) #define fts3HashKey(E) ((E)->pKey) #define fts3HashKeysize(E) ((E)->nKey) /* ** Number of entries in a hash table */ #define fts3HashCount(H) ((H)->count) #endif /* _FTS3_HASH_H_ */ /************** End of fts3_hash.h *******************************************/ /************** Continuing where we left off in fts3Int.h ********************/ /* ** This constant determines the maximum depth of an FTS expression tree ** that the library will create and use. FTS uses recursion to perform ** various operations on the query tree, so the disadvantage of a large ** limit is that it may allow very large queries to use large amounts ** of stack space (perhaps causing a stack overflow). */ #ifndef SQLITE_FTS3_MAX_EXPR_DEPTH # define SQLITE_FTS3_MAX_EXPR_DEPTH 12 #endif /* ** This constant controls how often segments are merged. Once there are ** FTS3_MERGE_COUNT segments of level N, they are merged into a single ** segment of level N+1. */ #define FTS3_MERGE_COUNT 16 /* ** This is the maximum amount of data (in bytes) to store in the ** Fts3Table.pendingTerms hash table. Normally, the hash table is ** populated as documents are inserted/updated/deleted in a transaction ** and used to create a new segment when the transaction is committed. ** However if this limit is reached midway through a transaction, a new ** segment is created and the hash table cleared immediately. */ #define FTS3_MAX_PENDING_DATA (1*1024*1024) /* ** Macro to return the number of elements in an array. SQLite has a ** similar macro called ArraySize(). Use a different name to avoid ** a collision when building an amalgamation with built-in FTS3. */ #define SizeofArray(X) ((int)(sizeof(X)/sizeof(X[0]))) #ifndef MIN # define MIN(x,y) ((x)<(y)?(x):(y)) #endif #ifndef MAX # define MAX(x,y) ((x)>(y)?(x):(y)) #endif /* ** Maximum length of a varint encoded integer. The varint format is different ** from that used by SQLite, so the maximum length is 10, not 9. */ #define FTS3_VARINT_MAX 10 #define FTS3_BUFFER_PADDING 8 /* ** FTS4 virtual tables may maintain multiple indexes - one index of all terms ** in the document set and zero or more prefix indexes. All indexes are stored ** as one or more b+-trees in the %_segments and %_segdir tables. ** ** It is possible to determine which index a b+-tree belongs to based on the ** value stored in the "%_segdir.level" column. Given this value L, the index ** that the b+-tree belongs to is (L<<10). In other words, all b+-trees with ** level values between 0 and 1023 (inclusive) belong to index 0, all levels ** between 1024 and 2047 to index 1, and so on. ** ** It is considered impossible for an index to use more than 1024 levels. In ** theory though this may happen, but only after at least ** (FTS3_MERGE_COUNT^1024) separate flushes of the pending-terms tables. */ #define FTS3_SEGDIR_MAXLEVEL 1024 #define FTS3_SEGDIR_MAXLEVEL_STR "1024" /* ** The testcase() macro is only used by the amalgamation. If undefined, ** make it a no-op. */ #ifndef testcase # define testcase(X) #endif /* ** Terminator values for position-lists and column-lists. */ #define POS_COLUMN (1) /* Column-list terminator */ #define POS_END (0) /* Position-list terminator */ /* ** The assert_fts3_nc() macro is similar to the assert() macro, except that it ** is used for assert() conditions that are true only if it can be ** guranteed that the database is not corrupt. */ #ifdef SQLITE_DEBUG SQLITE_API extern int sqlite3_fts3_may_be_corrupt; # define assert_fts3_nc(x) assert(sqlite3_fts3_may_be_corrupt || (x)) #else # define assert_fts3_nc(x) assert(x) #endif /* ** This section provides definitions to allow the ** FTS3 extension to be compiled outside of the ** amalgamation. */ #ifndef SQLITE_AMALGAMATION /* ** Macros indicating that conditional expressions are always true or ** false. */ #if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_MUTATION_TEST) # define SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS 1 #endif #if defined(SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS) # define ALWAYS(X) (1) # define NEVER(X) (0) #elif !defined(NDEBUG) # define ALWAYS(X) ((X)?1:(assert(0),0)) # define NEVER(X) ((X)?(assert(0),1):0) #else # define ALWAYS(X) (X) # define NEVER(X) (X) #endif /* ** Internal types used by SQLite. */ typedef unsigned char u8; /* 1-byte (or larger) unsigned integer */ typedef short int i16; /* 2-byte (or larger) signed integer */ typedef unsigned int u32; /* 4-byte unsigned integer */ typedef sqlite3_uint64 u64; /* 8-byte unsigned integer */ typedef sqlite3_int64 i64; /* 8-byte signed integer */ /* ** Macro used to suppress compiler warnings for unused parameters. */ #define UNUSED_PARAMETER(x) (void)(x) /* ** Activate assert() only if SQLITE_TEST is enabled. */ #if !defined(NDEBUG) && !defined(SQLITE_DEBUG) # define NDEBUG 1 #endif /* ** The TESTONLY macro is used to enclose variable declarations or ** other bits of code that are needed to support the arguments ** within testcase() and assert() macros. */ #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) # define TESTONLY(X) X #else # define TESTONLY(X) #endif #define LARGEST_INT64 (0xffffffff|(((i64)0x7fffffff)<<32)) #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) #define deliberate_fall_through #endif /* SQLITE_AMALGAMATION */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3Fts3Corrupt(void); # define FTS_CORRUPT_VTAB sqlite3Fts3Corrupt() #else # define FTS_CORRUPT_VTAB SQLITE_CORRUPT_VTAB #endif typedef struct Fts3Table Fts3Table; typedef struct Fts3Cursor Fts3Cursor; typedef struct Fts3Expr Fts3Expr; typedef struct Fts3Phrase Fts3Phrase; typedef struct Fts3PhraseToken Fts3PhraseToken; typedef struct Fts3Doclist Fts3Doclist; typedef struct Fts3SegFilter Fts3SegFilter; typedef struct Fts3DeferredToken Fts3DeferredToken; typedef struct Fts3SegReader Fts3SegReader; typedef struct Fts3MultiSegReader Fts3MultiSegReader; typedef struct MatchinfoBuffer MatchinfoBuffer; /* ** A connection to a fulltext index is an instance of the following ** structure. The xCreate and xConnect methods create an instance ** of this structure and xDestroy and xDisconnect free that instance. ** All other methods receive a pointer to the structure as one of their ** arguments. */ struct Fts3Table { sqlite3_vtab base; /* Base class used by SQLite core */ sqlite3 *db; /* The database connection */ const char *zDb; /* logical database name */ const char *zName; /* virtual table name */ int nColumn; /* number of named columns in virtual table */ char **azColumn; /* column names. malloced */ u8 *abNotindexed; /* True for 'notindexed' columns */ sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */ char *zContentTbl; /* content=xxx option, or NULL */ char *zLanguageid; /* languageid=xxx option, or NULL */ int nAutoincrmerge; /* Value configured by 'automerge' */ u32 nLeafAdd; /* Number of leaf blocks added this trans */ int bLock; /* Used to prevent recursive content= tbls */ /* Precompiled statements used by the implementation. Each of these ** statements is run and reset within a single virtual table API call. */ sqlite3_stmt *aStmt[40]; sqlite3_stmt *pSeekStmt; /* Cache for fts3CursorSeekStmt() */ char *zReadExprlist; char *zWriteExprlist; int nNodeSize; /* Soft limit for node size */ u8 bFts4; /* True for FTS4, false for FTS3 */ u8 bHasStat; /* True if %_stat table exists (2==unknown) */ u8 bHasDocsize; /* True if %_docsize table exists */ u8 bDescIdx; /* True if doclists are in reverse order */ u8 bIgnoreSavepoint; /* True to ignore xSavepoint invocations */ int nPgsz; /* Page size for host database */ char *zSegmentsTbl; /* Name of %_segments table */ sqlite3_blob *pSegments; /* Blob handle open on %_segments table */ /* ** The following array of hash tables is used to buffer pending index ** updates during transactions. All pending updates buffered at any one ** time must share a common language-id (see the FTS4 langid= feature). ** The current language id is stored in variable iPrevLangid. ** ** A single FTS4 table may have multiple full-text indexes. For each index ** there is an entry in the aIndex[] array. Index 0 is an index of all the ** terms that appear in the document set. Each subsequent index in aIndex[] ** is an index of prefixes of a specific length. ** ** Variable nPendingData contains an estimate the memory consumed by the ** pending data structures, including hash table overhead, but not including ** malloc overhead. When nPendingData exceeds nMaxPendingData, all hash ** tables are flushed to disk. Variable iPrevDocid is the docid of the most ** recently inserted record. */ int nIndex; /* Size of aIndex[] */ struct Fts3Index { int nPrefix; /* Prefix length (0 for main terms index) */ Fts3Hash hPending; /* Pending terms table for this index */ } *aIndex; int nMaxPendingData; /* Max pending data before flush to disk */ int nPendingData; /* Current bytes of pending data */ sqlite_int64 iPrevDocid; /* Docid of most recently inserted document */ int iPrevLangid; /* Langid of recently inserted document */ int bPrevDelete; /* True if last operation was a delete */ #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) /* State variables used for validating that the transaction control ** methods of the virtual table are called at appropriate times. These ** values do not contribute to FTS functionality; they are used for ** verifying the operation of the SQLite core. */ int inTransaction; /* True after xBegin but before xCommit/xRollback */ int mxSavepoint; /* Largest valid xSavepoint integer */ #endif #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* True to disable the incremental doclist optimization. This is controled ** by special insert command 'test-no-incr-doclist'. */ int bNoIncrDoclist; /* Number of segments in a level */ int nMergeCount; #endif }; /* Macro to find the number of segments to merge */ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) # define MergeCount(P) ((P)->nMergeCount) #else # define MergeCount(P) FTS3_MERGE_COUNT #endif /* ** When the core wants to read from the virtual table, it creates a ** virtual table cursor (an instance of the following structure) using ** the xOpen method. Cursors are destroyed using the xClose method. */ struct Fts3Cursor { sqlite3_vtab_cursor base; /* Base class used by SQLite core */ i16 eSearch; /* Search strategy (see below) */ u8 isEof; /* True if at End Of Results */ u8 isRequireSeek; /* True if must seek pStmt to %_content row */ u8 bSeekStmt; /* True if pStmt is a seek */ sqlite3_stmt *pStmt; /* Prepared statement in use by the cursor */ Fts3Expr *pExpr; /* Parsed MATCH query string */ int iLangid; /* Language being queried for */ int nPhrase; /* Number of matchable phrases in query */ Fts3DeferredToken *pDeferred; /* Deferred search tokens, if any */ sqlite3_int64 iPrevId; /* Previous id read from aDoclist */ char *pNextId; /* Pointer into the body of aDoclist */ char *aDoclist; /* List of docids for full-text queries */ int nDoclist; /* Size of buffer at aDoclist */ u8 bDesc; /* True to sort in descending order */ int eEvalmode; /* An FTS3_EVAL_XX constant */ int nRowAvg; /* Average size of database rows, in pages */ sqlite3_int64 nDoc; /* Documents in table */ i64 iMinDocid; /* Minimum docid to return */ i64 iMaxDocid; /* Maximum docid to return */ int isMatchinfoNeeded; /* True when aMatchinfo[] needs filling in */ MatchinfoBuffer *pMIBuffer; /* Buffer for matchinfo data */ }; #define FTS3_EVAL_FILTER 0 #define FTS3_EVAL_NEXT 1 #define FTS3_EVAL_MATCHINFO 2 /* ** The Fts3Cursor.eSearch member is always set to one of the following. ** Actualy, Fts3Cursor.eSearch can be greater than or equal to ** FTS3_FULLTEXT_SEARCH. If so, then Fts3Cursor.eSearch - 2 is the index ** of the column to be searched. For example, in ** ** CREATE VIRTUAL TABLE ex1 USING fts3(a,b,c,d); ** SELECT docid FROM ex1 WHERE b MATCH 'one two three'; ** ** Because the LHS of the MATCH operator is 2nd column "b", ** Fts3Cursor.eSearch will be set to FTS3_FULLTEXT_SEARCH+1. (+0 for a, ** +1 for b, +2 for c, +3 for d.) If the LHS of MATCH were "ex1" ** indicating that all columns should be searched, ** then eSearch would be set to FTS3_FULLTEXT_SEARCH+4. */ #define FTS3_FULLSCAN_SEARCH 0 /* Linear scan of %_content table */ #define FTS3_DOCID_SEARCH 1 /* Lookup by rowid on %_content table */ #define FTS3_FULLTEXT_SEARCH 2 /* Full-text index search */ /* ** The lower 16-bits of the sqlite3_index_info.idxNum value set by ** the xBestIndex() method contains the Fts3Cursor.eSearch value described ** above. The upper 16-bits contain a combination of the following ** bits, used to describe extra constraints on full-text searches. */ #define FTS3_HAVE_LANGID 0x00010000 /* languageid=? */ #define FTS3_HAVE_DOCID_GE 0x00020000 /* docid>=? */ #define FTS3_HAVE_DOCID_LE 0x00040000 /* docid<=? */ struct Fts3Doclist { char *aAll; /* Array containing doclist (or NULL) */ int nAll; /* Size of a[] in bytes */ char *pNextDocid; /* Pointer to next docid */ sqlite3_int64 iDocid; /* Current docid (if pList!=0) */ int bFreeList; /* True if pList should be sqlite3_free()d */ char *pList; /* Pointer to position list following iDocid */ int nList; /* Length of position list */ }; /* ** A "phrase" is a sequence of one or more tokens that must match in ** sequence. A single token is the base case and the most common case. ** For a sequence of tokens contained in double-quotes (i.e. "one two three") ** nToken will be the number of tokens in the string. */ struct Fts3PhraseToken { char *z; /* Text of the token */ int n; /* Number of bytes in buffer z */ int isPrefix; /* True if token ends with a "*" character */ int bFirst; /* True if token must appear at position 0 */ /* Variables above this point are populated when the expression is ** parsed (by code in fts3_expr.c). Below this point the variables are ** used when evaluating the expression. */ Fts3DeferredToken *pDeferred; /* Deferred token object for this token */ Fts3MultiSegReader *pSegcsr; /* Segment-reader for this token */ }; struct Fts3Phrase { /* Cache of doclist for this phrase. */ Fts3Doclist doclist; int bIncr; /* True if doclist is loaded incrementally */ int iDoclistToken; /* Used by sqlite3Fts3EvalPhrasePoslist() if this is a descendent of an ** OR condition. */ char *pOrPoslist; i64 iOrDocid; /* Variables below this point are populated by fts3_expr.c when parsing ** a MATCH expression. Everything above is part of the evaluation phase. */ int nToken; /* Number of tokens in the phrase */ int iColumn; /* Index of column this phrase must match */ Fts3PhraseToken aToken[1]; /* One entry for each token in the phrase */ }; /* ** A tree of these objects forms the RHS of a MATCH operator. ** ** If Fts3Expr.eType is FTSQUERY_PHRASE and isLoaded is true, then aDoclist ** points to a malloced buffer, size nDoclist bytes, containing the results ** of this phrase query in FTS3 doclist format. As usual, the initial ** "Length" field found in doclists stored on disk is omitted from this ** buffer. ** ** Variable aMI is used only for FTSQUERY_NEAR nodes to store the global ** matchinfo data. If it is not NULL, it points to an array of size nCol*3, ** where nCol is the number of columns in the queried FTS table. The array ** is populated as follows: ** ** aMI[iCol*3 + 0] = Undefined ** aMI[iCol*3 + 1] = Number of occurrences ** aMI[iCol*3 + 2] = Number of rows containing at least one instance ** ** The aMI array is allocated using sqlite3_malloc(). It should be freed ** when the expression node is. */ struct Fts3Expr { int eType; /* One of the FTSQUERY_XXX values defined below */ int nNear; /* Valid if eType==FTSQUERY_NEAR */ Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ Fts3Expr *pLeft; /* Left operand */ Fts3Expr *pRight; /* Right operand */ Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */ /* The following are used by the fts3_eval.c module. */ sqlite3_int64 iDocid; /* Current docid */ u8 bEof; /* True this expression is at EOF already */ u8 bStart; /* True if iDocid is valid */ u8 bDeferred; /* True if this expression is entirely deferred */ /* The following are used by the fts3_snippet.c module. */ int iPhrase; /* Index of this phrase in matchinfo() results */ u32 *aMI; /* See above */ }; /* ** Candidate values for Fts3Query.eType. Note that the order of the first ** four values is in order of precedence when parsing expressions. For ** example, the following: ** ** "a OR b AND c NOT d NEAR e" ** ** is equivalent to: ** ** "a OR (b AND (c NOT (d NEAR e)))" */ #define FTSQUERY_NEAR 1 #define FTSQUERY_NOT 2 #define FTSQUERY_AND 3 #define FTSQUERY_OR 4 #define FTSQUERY_PHRASE 5 /* fts3_write.c */ SQLITE_PRIVATE int sqlite3Fts3UpdateMethod(sqlite3_vtab*,int,sqlite3_value**,sqlite3_int64*); SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *); SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *); SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *); SQLITE_PRIVATE int sqlite3Fts3SegReaderNew(int, int, sqlite3_int64, sqlite3_int64, sqlite3_int64, const char *, int, Fts3SegReader**); SQLITE_PRIVATE int sqlite3Fts3SegReaderPending( Fts3Table*,int,const char*,int,int,Fts3SegReader**); SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *); SQLITE_PRIVATE int sqlite3Fts3AllSegdirs(Fts3Table*, int, int, int, sqlite3_stmt **); SQLITE_PRIVATE int sqlite3Fts3ReadBlock(Fts3Table*, sqlite3_int64, char **, int*, int*); SQLITE_PRIVATE int sqlite3Fts3SelectDoctotal(Fts3Table *, sqlite3_stmt **); SQLITE_PRIVATE int sqlite3Fts3SelectDocsize(Fts3Table *, sqlite3_int64, sqlite3_stmt **); #ifndef SQLITE_DISABLE_FTS4_DEFERRED SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *); SQLITE_PRIVATE int sqlite3Fts3DeferToken(Fts3Cursor *, Fts3PhraseToken *, int); SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *); SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *); SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList(Fts3DeferredToken *, char **, int *); #else # define sqlite3Fts3FreeDeferredTokens(x) # define sqlite3Fts3DeferToken(x,y,z) SQLITE_OK # define sqlite3Fts3CacheDeferredDoclists(x) SQLITE_OK # define sqlite3Fts3FreeDeferredDoclists(x) # define sqlite3Fts3DeferredTokenList(x,y,z) SQLITE_OK #endif SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *); SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *, int *); /* Special values interpreted by sqlite3SegReaderCursor() */ #define FTS3_SEGCURSOR_PENDING -1 #define FTS3_SEGCURSOR_ALL -2 SQLITE_PRIVATE int sqlite3Fts3SegReaderStart(Fts3Table*, Fts3MultiSegReader*, Fts3SegFilter*); SQLITE_PRIVATE int sqlite3Fts3SegReaderStep(Fts3Table *, Fts3MultiSegReader *); SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish(Fts3MultiSegReader *); SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor(Fts3Table *, int, int, int, const char *, int, int, int, Fts3MultiSegReader *); /* Flags allowed as part of the 4th argument to SegmentReaderIterate() */ #define FTS3_SEGMENT_REQUIRE_POS 0x00000001 #define FTS3_SEGMENT_IGNORE_EMPTY 0x00000002 #define FTS3_SEGMENT_COLUMN_FILTER 0x00000004 #define FTS3_SEGMENT_PREFIX 0x00000008 #define FTS3_SEGMENT_SCAN 0x00000010 #define FTS3_SEGMENT_FIRST 0x00000020 /* Type passed as 4th argument to SegmentReaderIterate() */ struct Fts3SegFilter { const char *zTerm; int nTerm; int iCol; int flags; }; struct Fts3MultiSegReader { /* Used internally by sqlite3Fts3SegReaderXXX() calls */ Fts3SegReader **apSegment; /* Array of Fts3SegReader objects */ int nSegment; /* Size of apSegment array */ int nAdvance; /* How many seg-readers to advance */ Fts3SegFilter *pFilter; /* Pointer to filter object */ char *aBuffer; /* Buffer to merge doclists in */ int nBuffer; /* Allocated size of aBuffer[] in bytes */ int iColFilter; /* If >=0, filter for this column */ int bRestart; /* Used by fts3.c only. */ int nCost; /* Cost of running iterator */ int bLookup; /* True if a lookup of a single entry. */ /* Output values. Valid only after Fts3SegReaderStep() returns SQLITE_ROW. */ char *zTerm; /* Pointer to term buffer */ int nTerm; /* Size of zTerm in bytes */ char *aDoclist; /* Pointer to doclist buffer */ int nDoclist; /* Size of aDoclist[] in bytes */ }; SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table*,int,int); #define fts3GetVarint32(p, piVal) ( \ (*(u8*)(p)&0x80) ? sqlite3Fts3GetVarint32(p, piVal) : (*piVal=*(u8*)(p), 1) \ ) /* fts3.c */ SQLITE_PRIVATE void sqlite3Fts3ErrMsg(char**,const char*,...); SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *, sqlite3_int64); SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *, sqlite_int64 *); SQLITE_PRIVATE int sqlite3Fts3GetVarintU(const char *, sqlite_uint64 *); SQLITE_PRIVATE int sqlite3Fts3GetVarintBounded(const char*,const char*,sqlite3_int64*); SQLITE_PRIVATE int sqlite3Fts3GetVarint32(const char *, int *); SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64); SQLITE_PRIVATE void sqlite3Fts3Dequote(char *); SQLITE_PRIVATE void sqlite3Fts3DoclistPrev(int,char*,int,char**,sqlite3_int64*,int*,u8*); SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats(Fts3Cursor *, Fts3Expr *, u32 *); SQLITE_PRIVATE int sqlite3Fts3FirstFilter(sqlite3_int64, char *, int, char *); SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int*, Fts3Table*); SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc); SQLITE_PRIVATE int sqlite3Fts3ReadInt(const char *z, int *pnOut); /* fts3_tokenizer.c */ SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *, int *); SQLITE_PRIVATE int sqlite3Fts3InitHashTable(sqlite3 *, Fts3Hash *, const char *); SQLITE_PRIVATE int sqlite3Fts3InitTokenizer(Fts3Hash *pHash, const char *, sqlite3_tokenizer **, char ** ); SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char); /* fts3_snippet.c */ SQLITE_PRIVATE void sqlite3Fts3Offsets(sqlite3_context*, Fts3Cursor*); SQLITE_PRIVATE void sqlite3Fts3Snippet(sqlite3_context *, Fts3Cursor *, const char *, const char *, const char *, int, int ); SQLITE_PRIVATE void sqlite3Fts3Matchinfo(sqlite3_context *, Fts3Cursor *, const char *); SQLITE_PRIVATE void sqlite3Fts3MIBufferFree(MatchinfoBuffer *p); /* fts3_expr.c */ SQLITE_PRIVATE int sqlite3Fts3ExprParse(sqlite3_tokenizer *, int, char **, int, int, int, const char *, int, Fts3Expr **, char ** ); SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *); #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3 *db, Fts3Hash*); SQLITE_PRIVATE int sqlite3Fts3InitTerm(sqlite3 *db); #endif SQLITE_PRIVATE void *sqlite3Fts3MallocZero(i64 nByte); SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer(sqlite3_tokenizer *, int, const char *, int, sqlite3_tokenizer_cursor ** ); /* fts3_aux.c */ SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db); SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *); SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart( Fts3Table*, Fts3MultiSegReader*, int, const char*, int); SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext( Fts3Table *, Fts3MultiSegReader *, sqlite3_int64 *, char **, int *); SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist(Fts3Cursor *, Fts3Expr *, int iCol, char **); SQLITE_PRIVATE int sqlite3Fts3MsrOvfl(Fts3Cursor *, Fts3MultiSegReader *, int *); SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr); /* fts3_tokenize_vtab.c */ SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3*, Fts3Hash *, void(*xDestroy)(void*)); /* fts3_unicode2.c (functions generated by parsing unicode text files) */ #ifndef SQLITE_DISABLE_FTS3_UNICODE SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int, int); SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int); SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int); #endif #endif /* !SQLITE_CORE || SQLITE_ENABLE_FTS3 */ #endif /* _FTSINT_H */ /************** End of fts3Int.h *********************************************/ /************** Continuing where we left off in fts3.c ***********************/ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) #if defined(SQLITE_ENABLE_FTS3) && !defined(SQLITE_CORE) # define SQLITE_CORE 1 #endif /* #include */ /* #include */ /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3.h" */ #ifndef SQLITE_CORE /* # include "sqlite3ext.h" */ SQLITE_EXTENSION_INIT1 #endif typedef struct Fts3HashWrapper Fts3HashWrapper; struct Fts3HashWrapper { Fts3Hash hash; /* Hash table */ int nRef; /* Number of pointers to this object */ }; static int fts3EvalNext(Fts3Cursor *pCsr); static int fts3EvalStart(Fts3Cursor *pCsr); static int fts3TermSegReaderCursor( Fts3Cursor *, const char *, int, int, Fts3MultiSegReader **); /* ** This variable is set to false when running tests for which the on disk ** structures should not be corrupt. Otherwise, true. If it is false, extra ** assert() conditions in the fts3 code are activated - conditions that are ** only true if it is guaranteed that the fts3 database is not corrupt. */ #ifdef SQLITE_DEBUG SQLITE_API int sqlite3_fts3_may_be_corrupt = 1; #endif /* ** Write a 64-bit variable-length integer to memory starting at p[0]. ** The length of data written will be between 1 and FTS3_VARINT_MAX bytes. ** The number of bytes written is returned. */ SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *p, sqlite_int64 v){ unsigned char *q = (unsigned char *) p; sqlite_uint64 vu = v; do{ *q++ = (unsigned char) ((vu & 0x7f) | 0x80); vu >>= 7; }while( vu!=0 ); q[-1] &= 0x7f; /* turn off high bit in final byte */ assert( q - (unsigned char *)p <= FTS3_VARINT_MAX ); return (int) (q - (unsigned char *)p); } #define GETVARINT_STEP(v, ptr, shift, mask1, mask2, var, ret) \ v = (v & mask1) | ( (*(const unsigned char*)(ptr++)) << shift ); \ if( (v & mask2)==0 ){ var = v; return ret; } #define GETVARINT_INIT(v, ptr, shift, mask1, mask2, var, ret) \ v = (*ptr++); \ if( (v & mask2)==0 ){ var = v; return ret; } SQLITE_PRIVATE int sqlite3Fts3GetVarintU(const char *pBuf, sqlite_uint64 *v){ const unsigned char *p = (const unsigned char*)pBuf; const unsigned char *pStart = p; u32 a; u64 b; int shift; GETVARINT_INIT(a, p, 0, 0x00, 0x80, *v, 1); GETVARINT_STEP(a, p, 7, 0x7F, 0x4000, *v, 2); GETVARINT_STEP(a, p, 14, 0x3FFF, 0x200000, *v, 3); GETVARINT_STEP(a, p, 21, 0x1FFFFF, 0x10000000, *v, 4); b = (a & 0x0FFFFFFF ); for(shift=28; shift<=63; shift+=7){ u64 c = *p++; b += (c&0x7F) << shift; if( (c & 0x80)==0 ) break; } *v = b; return (int)(p - pStart); } /* ** Read a 64-bit variable-length integer from memory starting at p[0]. ** Return the number of bytes read, or 0 on error. ** The value is stored in *v. */ SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *pBuf, sqlite_int64 *v){ return sqlite3Fts3GetVarintU(pBuf, (sqlite3_uint64*)v); } /* ** Read a 64-bit variable-length integer from memory starting at p[0] and ** not extending past pEnd[-1]. ** Return the number of bytes read, or 0 on error. ** The value is stored in *v. */ SQLITE_PRIVATE int sqlite3Fts3GetVarintBounded( const char *pBuf, const char *pEnd, sqlite_int64 *v ){ const unsigned char *p = (const unsigned char*)pBuf; const unsigned char *pStart = p; const unsigned char *pX = (const unsigned char*)pEnd; u64 b = 0; int shift; for(shift=0; shift<=63; shift+=7){ u64 c = p=0 ); return 5; } /* ** Return the number of bytes required to encode v as a varint */ SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64 v){ int i = 0; do{ i++; v >>= 7; }while( v!=0 ); return i; } /* ** Convert an SQL-style quoted string into a normal string by removing ** the quote characters. The conversion is done in-place. If the ** input does not begin with a quote character, then this routine ** is a no-op. ** ** Examples: ** ** "abc" becomes abc ** 'xyz' becomes xyz ** [pqr] becomes pqr ** `mno` becomes mno ** */ SQLITE_PRIVATE void sqlite3Fts3Dequote(char *z){ char quote; /* Quote character (if any ) */ quote = z[0]; if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){ int iIn = 1; /* Index of next byte to read from input */ int iOut = 0; /* Index of next byte to write to output */ /* If the first byte was a '[', then the close-quote character is a ']' */ if( quote=='[' ) quote = ']'; while( z[iIn] ){ if( z[iIn]==quote ){ if( z[iIn+1]!=quote ) break; z[iOut++] = quote; iIn += 2; }else{ z[iOut++] = z[iIn++]; } } z[iOut] = '\0'; } } /* ** Read a single varint from the doclist at *pp and advance *pp to point ** to the first byte past the end of the varint. Add the value of the varint ** to *pVal. */ static void fts3GetDeltaVarint(char **pp, sqlite3_int64 *pVal){ sqlite3_int64 iVal; *pp += sqlite3Fts3GetVarint(*pp, &iVal); *pVal += iVal; } /* ** When this function is called, *pp points to the first byte following a ** varint that is part of a doclist (or position-list, or any other list ** of varints). This function moves *pp to point to the start of that varint, ** and sets *pVal by the varint value. ** ** Argument pStart points to the first byte of the doclist that the ** varint is part of. */ static void fts3GetReverseVarint( char **pp, char *pStart, sqlite3_int64 *pVal ){ sqlite3_int64 iVal; char *p; /* Pointer p now points at the first byte past the varint we are ** interested in. So, unless the doclist is corrupt, the 0x80 bit is ** clear on character p[-1]. */ for(p = (*pp)-2; p>=pStart && *p&0x80; p--); p++; *pp = p; sqlite3Fts3GetVarint(p, &iVal); *pVal = iVal; } /* ** The xDisconnect() virtual table method. */ static int fts3DisconnectMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table *)pVtab; int i; assert( p->nPendingData==0 ); assert( p->pSegments==0 ); /* Free any prepared statements held */ sqlite3_finalize(p->pSeekStmt); for(i=0; iaStmt); i++){ sqlite3_finalize(p->aStmt[i]); } sqlite3_free(p->zSegmentsTbl); sqlite3_free(p->zReadExprlist); sqlite3_free(p->zWriteExprlist); sqlite3_free(p->zContentTbl); sqlite3_free(p->zLanguageid); /* Invoke the tokenizer destructor to free the tokenizer. */ p->pTokenizer->pModule->xDestroy(p->pTokenizer); sqlite3_free(p); return SQLITE_OK; } /* ** Write an error message into *pzErr */ SQLITE_PRIVATE void sqlite3Fts3ErrMsg(char **pzErr, const char *zFormat, ...){ va_list ap; sqlite3_free(*pzErr); va_start(ap, zFormat); *pzErr = sqlite3_vmprintf(zFormat, ap); va_end(ap); } /* ** Construct one or more SQL statements from the format string given ** and then evaluate those statements. The success code is written ** into *pRc. ** ** If *pRc is initially non-zero then this routine is a no-op. */ static void fts3DbExec( int *pRc, /* Success code */ sqlite3 *db, /* Database in which to run SQL */ const char *zFormat, /* Format string for SQL */ ... /* Arguments to the format string */ ){ va_list ap; char *zSql; if( *pRc ) return; va_start(ap, zFormat); zSql = sqlite3_vmprintf(zFormat, ap); va_end(ap); if( zSql==0 ){ *pRc = SQLITE_NOMEM; }else{ *pRc = sqlite3_exec(db, zSql, 0, 0, 0); sqlite3_free(zSql); } } /* ** The xDestroy() virtual table method. */ static int fts3DestroyMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table *)pVtab; int rc = SQLITE_OK; /* Return code */ const char *zDb = p->zDb; /* Name of database (e.g. "main", "temp") */ sqlite3 *db = p->db; /* Database handle */ /* Drop the shadow tables */ fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segments';" "DROP TABLE IF EXISTS %Q.'%q_segdir';" "DROP TABLE IF EXISTS %Q.'%q_docsize';" "DROP TABLE IF EXISTS %Q.'%q_stat';" "%s DROP TABLE IF EXISTS %Q.'%q_content';", zDb, p->zName, zDb, p->zName, zDb, p->zName, zDb, p->zName, (p->zContentTbl ? "--" : ""), zDb,p->zName ); /* If everything has worked, invoke fts3DisconnectMethod() to free the ** memory associated with the Fts3Table structure and return SQLITE_OK. ** Otherwise, return an SQLite error code. */ return (rc==SQLITE_OK ? fts3DisconnectMethod(pVtab) : rc); } /* ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table ** passed as the first argument. This is done as part of the xConnect() ** and xCreate() methods. ** ** If *pRc is non-zero when this function is called, it is a no-op. ** Otherwise, if an error occurs, an SQLite error code is stored in *pRc ** before returning. */ static void fts3DeclareVtab(int *pRc, Fts3Table *p){ if( *pRc==SQLITE_OK ){ int i; /* Iterator variable */ int rc; /* Return code */ char *zSql; /* SQL statement passed to declare_vtab() */ char *zCols; /* List of user defined columns */ const char *zLanguageid; zLanguageid = (p->zLanguageid ? p->zLanguageid : "__langid"); sqlite3_vtab_config(p->db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); /* Create a list of user columns for the virtual table */ zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]); for(i=1; zCols && inColumn; i++){ zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]); } /* Create the whole "CREATE TABLE" statement to pass to SQLite */ zSql = sqlite3_mprintf( "CREATE TABLE x(%s %Q HIDDEN, docid HIDDEN, %Q HIDDEN)", zCols, p->zName, zLanguageid ); if( !zCols || !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_declare_vtab(p->db, zSql); } sqlite3_free(zSql); sqlite3_free(zCols); *pRc = rc; } } /* ** Create the %_stat table if it does not already exist. */ SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int *pRc, Fts3Table *p){ fts3DbExec(pRc, p->db, "CREATE TABLE IF NOT EXISTS %Q.'%q_stat'" "(id INTEGER PRIMARY KEY, value BLOB);", p->zDb, p->zName ); if( (*pRc)==SQLITE_OK ) p->bHasStat = 1; } /* ** Create the backing store tables (%_content, %_segments and %_segdir) ** required by the FTS3 table passed as the only argument. This is done ** as part of the vtab xCreate() method. ** ** If the p->bHasDocsize boolean is true (indicating that this is an ** FTS4 table, not an FTS3 table) then also create the %_docsize and ** %_stat tables required by FTS4. */ static int fts3CreateTables(Fts3Table *p){ int rc = SQLITE_OK; /* Return code */ int i; /* Iterator variable */ sqlite3 *db = p->db; /* The database connection */ if( p->zContentTbl==0 ){ const char *zLanguageid = p->zLanguageid; char *zContentCols; /* Columns of %_content table */ /* Create a list of user columns for the content table */ zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY"); for(i=0; zContentCols && inColumn; i++){ char *z = p->azColumn[i]; zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z); } if( zLanguageid && zContentCols ){ zContentCols = sqlite3_mprintf("%z, langid", zContentCols, zLanguageid); } if( zContentCols==0 ) rc = SQLITE_NOMEM; /* Create the content table */ fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_content'(%s)", p->zDb, p->zName, zContentCols ); sqlite3_free(zContentCols); } /* Create other tables */ fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_segments'(blockid INTEGER PRIMARY KEY, block BLOB);", p->zDb, p->zName ); fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_segdir'(" "level INTEGER," "idx INTEGER," "start_block INTEGER," "leaves_end_block INTEGER," "end_block INTEGER," "root BLOB," "PRIMARY KEY(level, idx)" ");", p->zDb, p->zName ); if( p->bHasDocsize ){ fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_docsize'(docid INTEGER PRIMARY KEY, size BLOB);", p->zDb, p->zName ); } assert( p->bHasStat==p->bFts4 ); if( p->bHasStat ){ sqlite3Fts3CreateStatTable(&rc, p); } return rc; } /* ** Store the current database page-size in bytes in p->nPgsz. ** ** If *pRc is non-zero when this function is called, it is a no-op. ** Otherwise, if an error occurs, an SQLite error code is stored in *pRc ** before returning. */ static void fts3DatabasePageSize(int *pRc, Fts3Table *p){ if( *pRc==SQLITE_OK ){ int rc; /* Return code */ char *zSql; /* SQL text "PRAGMA %Q.page_size" */ sqlite3_stmt *pStmt; /* Compiled "PRAGMA %Q.page_size" statement */ zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_step(pStmt); p->nPgsz = sqlite3_column_int(pStmt, 0); rc = sqlite3_finalize(pStmt); }else if( rc==SQLITE_AUTH ){ p->nPgsz = 1024; rc = SQLITE_OK; } } assert( p->nPgsz>0 || rc!=SQLITE_OK ); sqlite3_free(zSql); *pRc = rc; } } /* ** "Special" FTS4 arguments are column specifications of the following form: ** ** = ** ** There may not be whitespace surrounding the "=" character. The ** term may be quoted, but the may not. */ static int fts3IsSpecialColumn( const char *z, int *pnKey, char **pzValue ){ char *zValue; const char *zCsr = z; while( *zCsr!='=' ){ if( *zCsr=='\0' ) return 0; zCsr++; } *pnKey = (int)(zCsr-z); zValue = sqlite3_mprintf("%s", &zCsr[1]); if( zValue ){ sqlite3Fts3Dequote(zValue); } *pzValue = zValue; return 1; } /* ** Append the output of a printf() style formatting to an existing string. */ static void fts3Appendf( int *pRc, /* IN/OUT: Error code */ char **pz, /* IN/OUT: Pointer to string buffer */ const char *zFormat, /* Printf format string to append */ ... /* Arguments for printf format string */ ){ if( *pRc==SQLITE_OK ){ va_list ap; char *z; va_start(ap, zFormat); z = sqlite3_vmprintf(zFormat, ap); va_end(ap); if( z && *pz ){ char *z2 = sqlite3_mprintf("%s%s", *pz, z); sqlite3_free(z); z = z2; } if( z==0 ) *pRc = SQLITE_NOMEM; sqlite3_free(*pz); *pz = z; } } /* ** Return a copy of input string zInput enclosed in double-quotes (") and ** with all double quote characters escaped. For example: ** ** fts3QuoteId("un \"zip\"") -> "un \"\"zip\"\"" ** ** The pointer returned points to memory obtained from sqlite3_malloc(). It ** is the callers responsibility to call sqlite3_free() to release this ** memory. */ static char *fts3QuoteId(char const *zInput){ sqlite3_int64 nRet; char *zRet; nRet = 2 + (int)strlen(zInput)*2 + 1; zRet = sqlite3_malloc64(nRet); if( zRet ){ int i; char *z = zRet; *(z++) = '"'; for(i=0; zInput[i]; i++){ if( zInput[i]=='"' ) *(z++) = '"'; *(z++) = zInput[i]; } *(z++) = '"'; *(z++) = '\0'; } return zRet; } /* ** Return a list of comma separated SQL expressions and a FROM clause that ** could be used in a SELECT statement such as the following: ** ** SELECT FROM %_content AS x ... ** ** to return the docid, followed by each column of text data in order ** from left to write. If parameter zFunc is not NULL, then instead of ** being returned directly each column of text data is passed to an SQL ** function named zFunc first. For example, if zFunc is "unzip" and the ** table has the three user-defined columns "a", "b", and "c", the following ** string is returned: ** ** "docid, unzip(x.'a'), unzip(x.'b'), unzip(x.'c') FROM %_content AS x" ** ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It ** is the responsibility of the caller to eventually free it. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op (and ** a NULL pointer is returned). Otherwise, if an OOM error is encountered ** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If ** no error occurs, *pRc is left unmodified. */ static char *fts3ReadExprList(Fts3Table *p, const char *zFunc, int *pRc){ char *zRet = 0; char *zFree = 0; char *zFunction; int i; if( p->zContentTbl==0 ){ if( !zFunc ){ zFunction = ""; }else{ zFree = zFunction = fts3QuoteId(zFunc); } fts3Appendf(pRc, &zRet, "docid"); for(i=0; inColumn; i++){ fts3Appendf(pRc, &zRet, ",%s(x.'c%d%q')", zFunction, i, p->azColumn[i]); } if( p->zLanguageid ){ fts3Appendf(pRc, &zRet, ", x.%Q", "langid"); } sqlite3_free(zFree); }else{ fts3Appendf(pRc, &zRet, "rowid"); for(i=0; inColumn; i++){ fts3Appendf(pRc, &zRet, ", x.'%q'", p->azColumn[i]); } if( p->zLanguageid ){ fts3Appendf(pRc, &zRet, ", x.%Q", p->zLanguageid); } } fts3Appendf(pRc, &zRet, " FROM '%q'.'%q%s' AS x", p->zDb, (p->zContentTbl ? p->zContentTbl : p->zName), (p->zContentTbl ? "" : "_content") ); return zRet; } /* ** Return a list of N comma separated question marks, where N is the number ** of columns in the %_content table (one for the docid plus one for each ** user-defined text column). ** ** If argument zFunc is not NULL, then all but the first question mark ** is preceded by zFunc and an open bracket, and followed by a closed ** bracket. For example, if zFunc is "zip" and the FTS3 table has three ** user-defined text columns, the following string is returned: ** ** "?, zip(?), zip(?), zip(?)" ** ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It ** is the responsibility of the caller to eventually free it. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op (and ** a NULL pointer is returned). Otherwise, if an OOM error is encountered ** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If ** no error occurs, *pRc is left unmodified. */ static char *fts3WriteExprList(Fts3Table *p, const char *zFunc, int *pRc){ char *zRet = 0; char *zFree = 0; char *zFunction; int i; if( !zFunc ){ zFunction = ""; }else{ zFree = zFunction = fts3QuoteId(zFunc); } fts3Appendf(pRc, &zRet, "?"); for(i=0; inColumn; i++){ fts3Appendf(pRc, &zRet, ",%s(?)", zFunction); } if( p->zLanguageid ){ fts3Appendf(pRc, &zRet, ", ?"); } sqlite3_free(zFree); return zRet; } /* ** Buffer z contains a positive integer value encoded as utf-8 text. ** Decode this value and store it in *pnOut, returning the number of bytes ** consumed. If an overflow error occurs return a negative value. */ SQLITE_PRIVATE int sqlite3Fts3ReadInt(const char *z, int *pnOut){ u64 iVal = 0; int i; for(i=0; z[i]>='0' && z[i]<='9'; i++){ iVal = iVal*10 + (z[i] - '0'); if( iVal>0x7FFFFFFF ) return -1; } *pnOut = (int)iVal; return i; } /* ** This function interprets the string at (*pp) as a non-negative integer ** value. It reads the integer and sets *pnOut to the value read, then ** sets *pp to point to the byte immediately following the last byte of ** the integer value. ** ** Only decimal digits ('0'..'9') may be part of an integer value. ** ** If *pp does not being with a decimal digit SQLITE_ERROR is returned and ** the output value undefined. Otherwise SQLITE_OK is returned. ** ** This function is used when parsing the "prefix=" FTS4 parameter. */ static int fts3GobbleInt(const char **pp, int *pnOut){ const int MAX_NPREFIX = 10000000; int nInt = 0; /* Output value */ int nByte; nByte = sqlite3Fts3ReadInt(*pp, &nInt); if( nInt>MAX_NPREFIX ){ nInt = 0; } if( nByte==0 ){ return SQLITE_ERROR; } *pnOut = nInt; *pp += nByte; return SQLITE_OK; } /* ** This function is called to allocate an array of Fts3Index structures ** representing the indexes maintained by the current FTS table. FTS tables ** always maintain the main "terms" index, but may also maintain one or ** more "prefix" indexes, depending on the value of the "prefix=" parameter ** (if any) specified as part of the CREATE VIRTUAL TABLE statement. ** ** Argument zParam is passed the value of the "prefix=" option if one was ** specified, or NULL otherwise. ** ** If no error occurs, SQLITE_OK is returned and *apIndex set to point to ** the allocated array. *pnIndex is set to the number of elements in the ** array. If an error does occur, an SQLite error code is returned. ** ** Regardless of whether or not an error is returned, it is the responsibility ** of the caller to call sqlite3_free() on the output array to free it. */ static int fts3PrefixParameter( const char *zParam, /* ABC in prefix=ABC parameter to parse */ int *pnIndex, /* OUT: size of *apIndex[] array */ struct Fts3Index **apIndex /* OUT: Array of indexes for this table */ ){ struct Fts3Index *aIndex; /* Allocated array */ int nIndex = 1; /* Number of entries in array */ if( zParam && zParam[0] ){ const char *p; nIndex++; for(p=zParam; *p; p++){ if( *p==',' ) nIndex++; } } aIndex = sqlite3_malloc64(sizeof(struct Fts3Index) * nIndex); *apIndex = aIndex; if( !aIndex ){ return SQLITE_NOMEM; } memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex); if( zParam ){ const char *p = zParam; int i; for(i=1; i=0 ); if( nPrefix==0 ){ nIndex--; i--; }else{ aIndex[i].nPrefix = nPrefix; } p++; } } *pnIndex = nIndex; return SQLITE_OK; } /* ** This function is called when initializing an FTS4 table that uses the ** content=xxx option. It determines the number of and names of the columns ** of the new FTS4 table. ** ** The third argument passed to this function is the value passed to the ** config=xxx option (i.e. "xxx"). This function queries the database for ** a table of that name. If found, the output variables are populated ** as follows: ** ** *pnCol: Set to the number of columns table xxx has, ** ** *pnStr: Set to the total amount of space required to store a copy ** of each columns name, including the nul-terminator. ** ** *pazCol: Set to point to an array of *pnCol strings. Each string is ** the name of the corresponding column in table xxx. The array ** and its contents are allocated using a single allocation. It ** is the responsibility of the caller to free this allocation ** by eventually passing the *pazCol value to sqlite3_free(). ** ** If the table cannot be found, an error code is returned and the output ** variables are undefined. Or, if an OOM is encountered, SQLITE_NOMEM is ** returned (and the output variables are undefined). */ static int fts3ContentColumns( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of db (i.e. "main", "temp" etc.) */ const char *zTbl, /* Name of content table */ const char ***pazCol, /* OUT: Malloc'd array of column names */ int *pnCol, /* OUT: Size of array *pazCol */ int *pnStr, /* OUT: Bytes of string content */ char **pzErr /* OUT: error message */ ){ int rc = SQLITE_OK; /* Return code */ char *zSql; /* "SELECT *" statement on zTbl */ sqlite3_stmt *pStmt = 0; /* Compiled version of zSql */ zSql = sqlite3_mprintf("SELECT * FROM %Q.%Q", zDb, zTbl); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ sqlite3Fts3ErrMsg(pzErr, "%s", sqlite3_errmsg(db)); } } sqlite3_free(zSql); if( rc==SQLITE_OK ){ const char **azCol; /* Output array */ sqlite3_int64 nStr = 0; /* Size of all column names (incl. 0x00) */ int nCol; /* Number of table columns */ int i; /* Used to iterate through columns */ /* Loop through the returned columns. Set nStr to the number of bytes of ** space required to store a copy of each column name, including the ** nul-terminator byte. */ nCol = sqlite3_column_count(pStmt); for(i=0; i module name ("fts3" or "fts4") ** argv[1] -> database name ** argv[2] -> table name ** argv[...] -> "column name" and other module argument fields. */ static int fts3InitVtab( int isCreate, /* True for xCreate, false for xConnect */ sqlite3 *db, /* The SQLite database connection */ void *pAux, /* Hash table containing tokenizers */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ char **pzErr /* Write any error message here */ ){ Fts3Hash *pHash = &((Fts3HashWrapper*)pAux)->hash; Fts3Table *p = 0; /* Pointer to allocated vtab */ int rc = SQLITE_OK; /* Return code */ int i; /* Iterator variable */ sqlite3_int64 nByte; /* Size of allocation used for *p */ int iCol; /* Column index */ int nString = 0; /* Bytes required to hold all column names */ int nCol = 0; /* Number of columns in the FTS table */ char *zCsr; /* Space for holding column names */ int nDb; /* Bytes required to hold database name */ int nName; /* Bytes required to hold table name */ int isFts4 = (argv[0][3]=='4'); /* True for FTS4, false for FTS3 */ const char **aCol; /* Array of column names */ sqlite3_tokenizer *pTokenizer = 0; /* Tokenizer for this table */ int nIndex = 0; /* Size of aIndex[] array */ struct Fts3Index *aIndex = 0; /* Array of indexes for this table */ /* The results of parsing supported FTS4 key=value options: */ int bNoDocsize = 0; /* True to omit %_docsize table */ int bDescIdx = 0; /* True to store descending indexes */ char *zPrefix = 0; /* Prefix parameter value (or NULL) */ char *zCompress = 0; /* compress=? parameter (or NULL) */ char *zUncompress = 0; /* uncompress=? parameter (or NULL) */ char *zContent = 0; /* content=? parameter (or NULL) */ char *zLanguageid = 0; /* languageid=? parameter (or NULL) */ char **azNotindexed = 0; /* The set of notindexed= columns */ int nNotindexed = 0; /* Size of azNotindexed[] array */ assert( strlen(argv[0])==4 ); assert( (sqlite3_strnicmp(argv[0], "fts4", 4)==0 && isFts4) || (sqlite3_strnicmp(argv[0], "fts3", 4)==0 && !isFts4) ); nDb = (int)strlen(argv[1]) + 1; nName = (int)strlen(argv[2]) + 1; nByte = sizeof(const char *) * (argc-2); aCol = (const char **)sqlite3_malloc64(nByte); if( aCol ){ memset((void*)aCol, 0, nByte); azNotindexed = (char **)sqlite3_malloc64(nByte); } if( azNotindexed ){ memset(azNotindexed, 0, nByte); } if( !aCol || !azNotindexed ){ rc = SQLITE_NOMEM; goto fts3_init_out; } /* Loop through all of the arguments passed by the user to the FTS3/4 ** module (i.e. all the column names and special arguments). This loop ** does the following: ** ** + Figures out the number of columns the FTSX table will have, and ** the number of bytes of space that must be allocated to store copies ** of the column names. ** ** + If there is a tokenizer specification included in the arguments, ** initializes the tokenizer pTokenizer. */ for(i=3; rc==SQLITE_OK && i8 && 0==sqlite3_strnicmp(z, "tokenize", 8) && 0==sqlite3Fts3IsIdChar(z[8]) ){ rc = sqlite3Fts3InitTokenizer(pHash, &z[9], &pTokenizer, pzErr); } /* Check if it is an FTS4 special argument. */ else if( isFts4 && fts3IsSpecialColumn(z, &nKey, &zVal) ){ struct Fts4Option { const char *zOpt; int nOpt; } aFts4Opt[] = { { "matchinfo", 9 }, /* 0 -> MATCHINFO */ { "prefix", 6 }, /* 1 -> PREFIX */ { "compress", 8 }, /* 2 -> COMPRESS */ { "uncompress", 10 }, /* 3 -> UNCOMPRESS */ { "order", 5 }, /* 4 -> ORDER */ { "content", 7 }, /* 5 -> CONTENT */ { "languageid", 10 }, /* 6 -> LANGUAGEID */ { "notindexed", 10 } /* 7 -> NOTINDEXED */ }; int iOpt; if( !zVal ){ rc = SQLITE_NOMEM; }else{ for(iOpt=0; iOptnOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){ break; } } switch( iOpt ){ case 0: /* MATCHINFO */ if( strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "fts3", 4) ){ sqlite3Fts3ErrMsg(pzErr, "unrecognized matchinfo: %s", zVal); rc = SQLITE_ERROR; } bNoDocsize = 1; break; case 1: /* PREFIX */ sqlite3_free(zPrefix); zPrefix = zVal; zVal = 0; break; case 2: /* COMPRESS */ sqlite3_free(zCompress); zCompress = zVal; zVal = 0; break; case 3: /* UNCOMPRESS */ sqlite3_free(zUncompress); zUncompress = zVal; zVal = 0; break; case 4: /* ORDER */ if( (strlen(zVal)!=3 || sqlite3_strnicmp(zVal, "asc", 3)) && (strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "desc", 4)) ){ sqlite3Fts3ErrMsg(pzErr, "unrecognized order: %s", zVal); rc = SQLITE_ERROR; } bDescIdx = (zVal[0]=='d' || zVal[0]=='D'); break; case 5: /* CONTENT */ sqlite3_free(zContent); zContent = zVal; zVal = 0; break; case 6: /* LANGUAGEID */ assert( iOpt==6 ); sqlite3_free(zLanguageid); zLanguageid = zVal; zVal = 0; break; case 7: /* NOTINDEXED */ azNotindexed[nNotindexed++] = zVal; zVal = 0; break; default: assert( iOpt==SizeofArray(aFts4Opt) ); sqlite3Fts3ErrMsg(pzErr, "unrecognized parameter: %s", z); rc = SQLITE_ERROR; break; } sqlite3_free(zVal); } } /* Otherwise, the argument is a column name. */ else { nString += (int)(strlen(z) + 1); aCol[nCol++] = z; } } /* If a content=xxx option was specified, the following: ** ** 1. Ignore any compress= and uncompress= options. ** ** 2. If no column names were specified as part of the CREATE VIRTUAL ** TABLE statement, use all columns from the content table. */ if( rc==SQLITE_OK && zContent ){ sqlite3_free(zCompress); sqlite3_free(zUncompress); zCompress = 0; zUncompress = 0; if( nCol==0 ){ sqlite3_free((void*)aCol); aCol = 0; rc = fts3ContentColumns(db, argv[1], zContent,&aCol,&nCol,&nString,pzErr); /* If a languageid= option was specified, remove the language id ** column from the aCol[] array. */ if( rc==SQLITE_OK && zLanguageid ){ int j; for(j=0; jdb = db; p->nColumn = nCol; p->nPendingData = 0; p->azColumn = (char **)&p[1]; p->pTokenizer = pTokenizer; p->nMaxPendingData = FTS3_MAX_PENDING_DATA; p->bHasDocsize = (isFts4 && bNoDocsize==0); p->bHasStat = (u8)isFts4; p->bFts4 = (u8)isFts4; p->bDescIdx = (u8)bDescIdx; p->nAutoincrmerge = 0xff; /* 0xff means setting unknown */ p->zContentTbl = zContent; p->zLanguageid = zLanguageid; zContent = 0; zLanguageid = 0; TESTONLY( p->inTransaction = -1 ); TESTONLY( p->mxSavepoint = -1 ); p->aIndex = (struct Fts3Index *)&p->azColumn[nCol]; memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex); p->nIndex = nIndex; for(i=0; iaIndex[i].hPending, FTS3_HASH_STRING, 1); } p->abNotindexed = (u8 *)&p->aIndex[nIndex]; /* Fill in the zName and zDb fields of the vtab structure. */ zCsr = (char *)&p->abNotindexed[nCol]; p->zName = zCsr; memcpy(zCsr, argv[2], nName); zCsr += nName; p->zDb = zCsr; memcpy(zCsr, argv[1], nDb); zCsr += nDb; /* Fill in the azColumn array */ for(iCol=0; iCol0 ){ memcpy(zCsr, z, n); } zCsr[n] = '\0'; sqlite3Fts3Dequote(zCsr); p->azColumn[iCol] = zCsr; zCsr += n+1; assert( zCsr <= &((char *)p)[nByte] ); } /* Fill in the abNotindexed array */ for(iCol=0; iColazColumn[iCol]); for(i=0; iazColumn[iCol], zNot, n) ){ p->abNotindexed[iCol] = 1; sqlite3_free(zNot); azNotindexed[i] = 0; } } } for(i=0; izReadExprlist = fts3ReadExprList(p, zUncompress, &rc); p->zWriteExprlist = fts3WriteExprList(p, zCompress, &rc); if( rc!=SQLITE_OK ) goto fts3_init_out; /* If this is an xCreate call, create the underlying tables in the ** database. TODO: For xConnect(), it could verify that said tables exist. */ if( isCreate ){ rc = fts3CreateTables(p); } /* Check to see if a legacy fts3 table has been "upgraded" by the ** addition of a %_stat table so that it can use incremental merge. */ if( !isFts4 && !isCreate ){ p->bHasStat = 2; } /* Figure out the page-size for the database. This is required in order to ** estimate the cost of loading large doclists from the database. */ fts3DatabasePageSize(&rc, p); p->nNodeSize = p->nPgsz-35; #if defined(SQLITE_DEBUG)||defined(SQLITE_TEST) p->nMergeCount = FTS3_MERGE_COUNT; #endif /* Declare the table schema to SQLite. */ fts3DeclareVtab(&rc, p); fts3_init_out: sqlite3_free(zPrefix); sqlite3_free(aIndex); sqlite3_free(zCompress); sqlite3_free(zUncompress); sqlite3_free(zContent); sqlite3_free(zLanguageid); for(i=0; ipModule->xDestroy(pTokenizer); } }else{ assert( p->pSegments==0 ); *ppVTab = &p->base; } return rc; } /* ** The xConnect() and xCreate() methods for the virtual table. All the ** work is done in function fts3InitVtab(). */ static int fts3ConnectMethod( sqlite3 *db, /* Database connection */ void *pAux, /* Pointer to tokenizer hash table */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ char **pzErr /* OUT: sqlite3_malloc'd error message */ ){ return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr); } static int fts3CreateMethod( sqlite3 *db, /* Database connection */ void *pAux, /* Pointer to tokenizer hash table */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ char **pzErr /* OUT: sqlite3_malloc'd error message */ ){ return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr); } /* ** Set the pIdxInfo->estimatedRows variable to nRow. Unless this ** extension is currently being used by a version of SQLite too old to ** support estimatedRows. In that case this function is a no-op. */ static void fts3SetEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){ #if SQLITE_VERSION_NUMBER>=3008002 if( sqlite3_libversion_number()>=3008002 ){ pIdxInfo->estimatedRows = nRow; } #endif } /* ** Set the SQLITE_INDEX_SCAN_UNIQUE flag in pIdxInfo->flags. Unless this ** extension is currently being used by a version of SQLite too old to ** support index-info flags. In that case this function is a no-op. */ static void fts3SetUniqueFlag(sqlite3_index_info *pIdxInfo){ #if SQLITE_VERSION_NUMBER>=3008012 if( sqlite3_libversion_number()>=3008012 ){ pIdxInfo->idxFlags |= SQLITE_INDEX_SCAN_UNIQUE; } #endif } /* ** Implementation of the xBestIndex method for FTS3 tables. There ** are three possible strategies, in order of preference: ** ** 1. Direct lookup by rowid or docid. ** 2. Full-text search using a MATCH operator on a non-docid column. ** 3. Linear scan of %_content table. */ static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ Fts3Table *p = (Fts3Table *)pVTab; int i; /* Iterator variable */ int iCons = -1; /* Index of constraint to use */ int iLangidCons = -1; /* Index of langid=x constraint, if present */ int iDocidGe = -1; /* Index of docid>=x constraint, if present */ int iDocidLe = -1; /* Index of docid<=x constraint, if present */ int iIdx; if( p->bLock ){ return SQLITE_ERROR; } /* By default use a full table scan. This is an expensive option, ** so search through the constraints to see if a more efficient ** strategy is possible. */ pInfo->idxNum = FTS3_FULLSCAN_SEARCH; pInfo->estimatedCost = 5000000; for(i=0; inConstraint; i++){ int bDocid; /* True if this constraint is on docid */ struct sqlite3_index_constraint *pCons = &pInfo->aConstraint[i]; if( pCons->usable==0 ){ if( pCons->op==SQLITE_INDEX_CONSTRAINT_MATCH ){ /* There exists an unusable MATCH constraint. This means that if ** the planner does elect to use the results of this call as part ** of the overall query plan the user will see an "unable to use ** function MATCH in the requested context" error. To discourage ** this, return a very high cost here. */ pInfo->idxNum = FTS3_FULLSCAN_SEARCH; pInfo->estimatedCost = 1e50; fts3SetEstimatedRows(pInfo, ((sqlite3_int64)1) << 50); return SQLITE_OK; } continue; } bDocid = (pCons->iColumn<0 || pCons->iColumn==p->nColumn+1); /* A direct lookup on the rowid or docid column. Assign a cost of 1.0. */ if( iCons<0 && pCons->op==SQLITE_INDEX_CONSTRAINT_EQ && bDocid ){ pInfo->idxNum = FTS3_DOCID_SEARCH; pInfo->estimatedCost = 1.0; iCons = i; } /* A MATCH constraint. Use a full-text search. ** ** If there is more than one MATCH constraint available, use the first ** one encountered. If there is both a MATCH constraint and a direct ** rowid/docid lookup, prefer the MATCH strategy. This is done even ** though the rowid/docid lookup is faster than a MATCH query, selecting ** it would lead to an "unable to use function MATCH in the requested ** context" error. */ if( pCons->op==SQLITE_INDEX_CONSTRAINT_MATCH && pCons->iColumn>=0 && pCons->iColumn<=p->nColumn ){ pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn; pInfo->estimatedCost = 2.0; iCons = i; } /* Equality constraint on the langid column */ if( pCons->op==SQLITE_INDEX_CONSTRAINT_EQ && pCons->iColumn==p->nColumn + 2 ){ iLangidCons = i; } if( bDocid ){ switch( pCons->op ){ case SQLITE_INDEX_CONSTRAINT_GE: case SQLITE_INDEX_CONSTRAINT_GT: iDocidGe = i; break; case SQLITE_INDEX_CONSTRAINT_LE: case SQLITE_INDEX_CONSTRAINT_LT: iDocidLe = i; break; } } } /* If using a docid=? or rowid=? strategy, set the UNIQUE flag. */ if( pInfo->idxNum==FTS3_DOCID_SEARCH ) fts3SetUniqueFlag(pInfo); iIdx = 1; if( iCons>=0 ){ pInfo->aConstraintUsage[iCons].argvIndex = iIdx++; pInfo->aConstraintUsage[iCons].omit = 1; } if( iLangidCons>=0 ){ pInfo->idxNum |= FTS3_HAVE_LANGID; pInfo->aConstraintUsage[iLangidCons].argvIndex = iIdx++; } if( iDocidGe>=0 ){ pInfo->idxNum |= FTS3_HAVE_DOCID_GE; pInfo->aConstraintUsage[iDocidGe].argvIndex = iIdx++; } if( iDocidLe>=0 ){ pInfo->idxNum |= FTS3_HAVE_DOCID_LE; pInfo->aConstraintUsage[iDocidLe].argvIndex = iIdx++; } /* Regardless of the strategy selected, FTS can deliver rows in rowid (or ** docid) order. Both ascending and descending are possible. */ if( pInfo->nOrderBy==1 ){ struct sqlite3_index_orderby *pOrder = &pInfo->aOrderBy[0]; if( pOrder->iColumn<0 || pOrder->iColumn==p->nColumn+1 ){ if( pOrder->desc ){ pInfo->idxStr = "DESC"; }else{ pInfo->idxStr = "ASC"; } pInfo->orderByConsumed = 1; } } assert( p->pSegments==0 ); return SQLITE_OK; } /* ** Implementation of xOpen method. */ static int fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ sqlite3_vtab_cursor *pCsr; /* Allocated cursor */ UNUSED_PARAMETER(pVTab); /* Allocate a buffer large enough for an Fts3Cursor structure. If the ** allocation succeeds, zero it and return SQLITE_OK. Otherwise, ** if the allocation fails, return SQLITE_NOMEM. */ *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor)); if( !pCsr ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(Fts3Cursor)); return SQLITE_OK; } /* ** Finalize the statement handle at pCsr->pStmt. ** ** Or, if that statement handle is one created by fts3CursorSeekStmt(), ** and the Fts3Table.pSeekStmt slot is currently NULL, save the statement ** pointer there instead of finalizing it. */ static void fts3CursorFinalizeStmt(Fts3Cursor *pCsr){ if( pCsr->bSeekStmt ){ Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; if( p->pSeekStmt==0 ){ p->pSeekStmt = pCsr->pStmt; sqlite3_reset(pCsr->pStmt); pCsr->pStmt = 0; } pCsr->bSeekStmt = 0; } sqlite3_finalize(pCsr->pStmt); } /* ** Free all resources currently held by the cursor passed as the only ** argument. */ static void fts3ClearCursor(Fts3Cursor *pCsr){ fts3CursorFinalizeStmt(pCsr); sqlite3Fts3FreeDeferredTokens(pCsr); sqlite3_free(pCsr->aDoclist); sqlite3Fts3MIBufferFree(pCsr->pMIBuffer); sqlite3Fts3ExprFree(pCsr->pExpr); memset(&(&pCsr->base)[1], 0, sizeof(Fts3Cursor)-sizeof(sqlite3_vtab_cursor)); } /* ** Close the cursor. For additional information see the documentation ** on the xClose method of the virtual table interface. */ static int fts3CloseMethod(sqlite3_vtab_cursor *pCursor){ Fts3Cursor *pCsr = (Fts3Cursor *)pCursor; assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); fts3ClearCursor(pCsr); assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); sqlite3_free(pCsr); return SQLITE_OK; } /* ** If pCsr->pStmt has not been prepared (i.e. if pCsr->pStmt==0), then ** compose and prepare an SQL statement of the form: ** ** "SELECT FROM %_content WHERE rowid = ?" ** ** (or the equivalent for a content=xxx table) and set pCsr->pStmt to ** it. If an error occurs, return an SQLite error code. */ static int fts3CursorSeekStmt(Fts3Cursor *pCsr){ int rc = SQLITE_OK; if( pCsr->pStmt==0 ){ Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; char *zSql; if( p->pSeekStmt ){ pCsr->pStmt = p->pSeekStmt; p->pSeekStmt = 0; }else{ zSql = sqlite3_mprintf("SELECT %s WHERE rowid = ?", p->zReadExprlist); if( !zSql ) return SQLITE_NOMEM; p->bLock++; rc = sqlite3_prepare_v3( p->db, zSql,-1,SQLITE_PREPARE_PERSISTENT,&pCsr->pStmt,0 ); p->bLock--; sqlite3_free(zSql); } if( rc==SQLITE_OK ) pCsr->bSeekStmt = 1; } return rc; } /* ** Position the pCsr->pStmt statement so that it is on the row ** of the %_content table that contains the last match. Return ** SQLITE_OK on success. */ static int fts3CursorSeek(sqlite3_context *pContext, Fts3Cursor *pCsr){ int rc = SQLITE_OK; if( pCsr->isRequireSeek ){ rc = fts3CursorSeekStmt(pCsr); if( rc==SQLITE_OK ){ Fts3Table *pTab = (Fts3Table*)pCsr->base.pVtab; pTab->bLock++; sqlite3_bind_int64(pCsr->pStmt, 1, pCsr->iPrevId); pCsr->isRequireSeek = 0; if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){ pTab->bLock--; return SQLITE_OK; }else{ pTab->bLock--; rc = sqlite3_reset(pCsr->pStmt); if( rc==SQLITE_OK && ((Fts3Table *)pCsr->base.pVtab)->zContentTbl==0 ){ /* If no row was found and no error has occurred, then the %_content ** table is missing a row that is present in the full-text index. ** The data structures are corrupt. */ rc = FTS_CORRUPT_VTAB; pCsr->isEof = 1; } } } } if( rc!=SQLITE_OK && pContext ){ sqlite3_result_error_code(pContext, rc); } return rc; } /* ** This function is used to process a single interior node when searching ** a b-tree for a term or term prefix. The node data is passed to this ** function via the zNode/nNode parameters. The term to search for is ** passed in zTerm/nTerm. ** ** If piFirst is not NULL, then this function sets *piFirst to the blockid ** of the child node that heads the sub-tree that may contain the term. ** ** If piLast is not NULL, then *piLast is set to the right-most child node ** that heads a sub-tree that may contain a term for which zTerm/nTerm is ** a prefix. ** ** If an OOM error occurs, SQLITE_NOMEM is returned. Otherwise, SQLITE_OK. */ static int fts3ScanInteriorNode( const char *zTerm, /* Term to select leaves for */ int nTerm, /* Size of term zTerm in bytes */ const char *zNode, /* Buffer containing segment interior node */ int nNode, /* Size of buffer at zNode */ sqlite3_int64 *piFirst, /* OUT: Selected child node */ sqlite3_int64 *piLast /* OUT: Selected child node */ ){ int rc = SQLITE_OK; /* Return code */ const char *zCsr = zNode; /* Cursor to iterate through node */ const char *zEnd = &zCsr[nNode];/* End of interior node buffer */ char *zBuffer = 0; /* Buffer to load terms into */ i64 nAlloc = 0; /* Size of allocated buffer */ int isFirstTerm = 1; /* True when processing first term on page */ u64 iChild; /* Block id of child node to descend to */ int nBuffer = 0; /* Total term size */ /* Skip over the 'height' varint that occurs at the start of every ** interior node. Then load the blockid of the left-child of the b-tree ** node into variable iChild. ** ** Even if the data structure on disk is corrupted, this (reading two ** varints from the buffer) does not risk an overread. If zNode is a ** root node, then the buffer comes from a SELECT statement. SQLite does ** not make this guarantee explicitly, but in practice there are always ** either more than 20 bytes of allocated space following the nNode bytes of ** contents, or two zero bytes. Or, if the node is read from the %_segments ** table, then there are always 20 bytes of zeroed padding following the ** nNode bytes of content (see sqlite3Fts3ReadBlock() for details). */ zCsr += sqlite3Fts3GetVarintU(zCsr, &iChild); zCsr += sqlite3Fts3GetVarintU(zCsr, &iChild); if( zCsr>zEnd ){ return FTS_CORRUPT_VTAB; } while( zCsrnBuffer ){ rc = FTS_CORRUPT_VTAB; goto finish_scan; } } isFirstTerm = 0; zCsr += fts3GetVarint32(zCsr, &nSuffix); assert( nPrefix>=0 && nSuffix>=0 ); if( nPrefix>zCsr-zNode || nSuffix>zEnd-zCsr || nSuffix==0 ){ rc = FTS_CORRUPT_VTAB; goto finish_scan; } if( (i64)nPrefix+nSuffix>nAlloc ){ char *zNew; nAlloc = ((i64)nPrefix+nSuffix) * 2; zNew = (char *)sqlite3_realloc64(zBuffer, nAlloc); if( !zNew ){ rc = SQLITE_NOMEM; goto finish_scan; } zBuffer = zNew; } assert( zBuffer ); memcpy(&zBuffer[nPrefix], zCsr, nSuffix); nBuffer = nPrefix + nSuffix; zCsr += nSuffix; /* Compare the term we are searching for with the term just loaded from ** the interior node. If the specified term is greater than or equal ** to the term from the interior node, then all terms on the sub-tree ** headed by node iChild are smaller than zTerm. No need to search ** iChild. ** ** If the interior node term is larger than the specified term, then ** the tree headed by iChild may contain the specified term. */ cmp = memcmp(zTerm, zBuffer, (nBuffer>nTerm ? nTerm : nBuffer)); if( piFirst && (cmp<0 || (cmp==0 && nBuffer>nTerm)) ){ *piFirst = (i64)iChild; piFirst = 0; } if( piLast && cmp<0 ){ *piLast = (i64)iChild; piLast = 0; } iChild++; }; if( piFirst ) *piFirst = (i64)iChild; if( piLast ) *piLast = (i64)iChild; finish_scan: sqlite3_free(zBuffer); return rc; } /* ** The buffer pointed to by argument zNode (size nNode bytes) contains an ** interior node of a b-tree segment. The zTerm buffer (size nTerm bytes) ** contains a term. This function searches the sub-tree headed by the zNode ** node for the range of leaf nodes that may contain the specified term ** or terms for which the specified term is a prefix. ** ** If piLeaf is not NULL, then *piLeaf is set to the blockid of the ** left-most leaf node in the tree that may contain the specified term. ** If piLeaf2 is not NULL, then *piLeaf2 is set to the blockid of the ** right-most leaf node that may contain a term for which the specified ** term is a prefix. ** ** It is possible that the range of returned leaf nodes does not contain ** the specified term or any terms for which it is a prefix. However, if the ** segment does contain any such terms, they are stored within the identified ** range. Because this function only inspects interior segment nodes (and ** never loads leaf nodes into memory), it is not possible to be sure. ** ** If an error occurs, an error code other than SQLITE_OK is returned. */ static int fts3SelectLeaf( Fts3Table *p, /* Virtual table handle */ const char *zTerm, /* Term to select leaves for */ int nTerm, /* Size of term zTerm in bytes */ const char *zNode, /* Buffer containing segment interior node */ int nNode, /* Size of buffer at zNode */ sqlite3_int64 *piLeaf, /* Selected leaf node */ sqlite3_int64 *piLeaf2 /* Selected leaf node */ ){ int rc = SQLITE_OK; /* Return code */ int iHeight; /* Height of this node in tree */ assert( piLeaf || piLeaf2 ); fts3GetVarint32(zNode, &iHeight); rc = fts3ScanInteriorNode(zTerm, nTerm, zNode, nNode, piLeaf, piLeaf2); assert_fts3_nc( !piLeaf2 || !piLeaf || rc!=SQLITE_OK || (*piLeaf<=*piLeaf2) ); if( rc==SQLITE_OK && iHeight>1 ){ char *zBlob = 0; /* Blob read from %_segments table */ int nBlob = 0; /* Size of zBlob in bytes */ if( piLeaf && piLeaf2 && (*piLeaf!=*piLeaf2) ){ rc = sqlite3Fts3ReadBlock(p, *piLeaf, &zBlob, &nBlob, 0); if( rc==SQLITE_OK ){ rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, 0); } sqlite3_free(zBlob); piLeaf = 0; zBlob = 0; } if( rc==SQLITE_OK ){ rc = sqlite3Fts3ReadBlock(p, piLeaf?*piLeaf:*piLeaf2, &zBlob, &nBlob, 0); } if( rc==SQLITE_OK ){ int iNewHeight = 0; fts3GetVarint32(zBlob, &iNewHeight); if( iNewHeight>=iHeight ){ rc = FTS_CORRUPT_VTAB; }else{ rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, piLeaf2); } } sqlite3_free(zBlob); } return rc; } /* ** This function is used to create delta-encoded serialized lists of FTS3 ** varints. Each call to this function appends a single varint to a list. */ static void fts3PutDeltaVarint( char **pp, /* IN/OUT: Output pointer */ sqlite3_int64 *piPrev, /* IN/OUT: Previous value written to list */ sqlite3_int64 iVal /* Write this value to the list */ ){ assert_fts3_nc( iVal-*piPrev > 0 || (*piPrev==0 && iVal==0) ); *pp += sqlite3Fts3PutVarint(*pp, iVal-*piPrev); *piPrev = iVal; } /* ** When this function is called, *ppPoslist is assumed to point to the ** start of a position-list. After it returns, *ppPoslist points to the ** first byte after the position-list. ** ** A position list is list of positions (delta encoded) and columns for ** a single document record of a doclist. So, in other words, this ** routine advances *ppPoslist so that it points to the next docid in ** the doclist, or to the first byte past the end of the doclist. ** ** If pp is not NULL, then the contents of the position list are copied ** to *pp. *pp is set to point to the first byte past the last byte copied ** before this function returns. */ static void fts3PoslistCopy(char **pp, char **ppPoslist){ char *pEnd = *ppPoslist; char c = 0; /* The end of a position list is marked by a zero encoded as an FTS3 ** varint. A single POS_END (0) byte. Except, if the 0 byte is preceded by ** a byte with the 0x80 bit set, then it is not a varint 0, but the tail ** of some other, multi-byte, value. ** ** The following while-loop moves pEnd to point to the first byte that is not ** immediately preceded by a byte with the 0x80 bit set. Then increments ** pEnd once more so that it points to the byte immediately following the ** last byte in the position-list. */ while( *pEnd | c ){ c = *pEnd++ & 0x80; testcase( c!=0 && (*pEnd)==0 ); } pEnd++; /* Advance past the POS_END terminator byte */ if( pp ){ int n = (int)(pEnd - *ppPoslist); char *p = *pp; memcpy(p, *ppPoslist, n); p += n; *pp = p; } *ppPoslist = pEnd; } /* ** When this function is called, *ppPoslist is assumed to point to the ** start of a column-list. After it returns, *ppPoslist points to the ** to the terminator (POS_COLUMN or POS_END) byte of the column-list. ** ** A column-list is list of delta-encoded positions for a single column ** within a single document within a doclist. ** ** The column-list is terminated either by a POS_COLUMN varint (1) or ** a POS_END varint (0). This routine leaves *ppPoslist pointing to ** the POS_COLUMN or POS_END that terminates the column-list. ** ** If pp is not NULL, then the contents of the column-list are copied ** to *pp. *pp is set to point to the first byte past the last byte copied ** before this function returns. The POS_COLUMN or POS_END terminator ** is not copied into *pp. */ static void fts3ColumnlistCopy(char **pp, char **ppPoslist){ char *pEnd = *ppPoslist; char c = 0; /* A column-list is terminated by either a 0x01 or 0x00 byte that is ** not part of a multi-byte varint. */ while( 0xFE & (*pEnd | c) ){ c = *pEnd++ & 0x80; testcase( c!=0 && ((*pEnd)&0xfe)==0 ); } if( pp ){ int n = (int)(pEnd - *ppPoslist); char *p = *pp; memcpy(p, *ppPoslist, n); p += n; *pp = p; } *ppPoslist = pEnd; } /* ** Value used to signify the end of an position-list. This must be ** as large or larger than any value that might appear on the ** position-list, even a position list that has been corrupted. */ #define POSITION_LIST_END LARGEST_INT64 /* ** This function is used to help parse position-lists. When this function is ** called, *pp may point to the start of the next varint in the position-list ** being parsed, or it may point to 1 byte past the end of the position-list ** (in which case **pp will be a terminator bytes POS_END (0) or ** (1)). ** ** If *pp points past the end of the current position-list, set *pi to ** POSITION_LIST_END and return. Otherwise, read the next varint from *pp, ** increment the current value of *pi by the value read, and set *pp to ** point to the next value before returning. ** ** Before calling this routine *pi must be initialized to the value of ** the previous position, or zero if we are reading the first position ** in the position-list. Because positions are delta-encoded, the value ** of the previous position is needed in order to compute the value of ** the next position. */ static void fts3ReadNextPos( char **pp, /* IN/OUT: Pointer into position-list buffer */ sqlite3_int64 *pi /* IN/OUT: Value read from position-list */ ){ if( (**pp)&0xFE ){ int iVal; *pp += fts3GetVarint32((*pp), &iVal); *pi += iVal; *pi -= 2; }else{ *pi = POSITION_LIST_END; } } /* ** If parameter iCol is not 0, write an POS_COLUMN (1) byte followed by ** the value of iCol encoded as a varint to *pp. This will start a new ** column list. ** ** Set *pp to point to the byte just after the last byte written before ** returning (do not modify it if iCol==0). Return the total number of bytes ** written (0 if iCol==0). */ static int fts3PutColNumber(char **pp, int iCol){ int n = 0; /* Number of bytes written */ if( iCol ){ char *p = *pp; /* Output pointer */ n = 1 + sqlite3Fts3PutVarint(&p[1], iCol); *p = 0x01; *pp = &p[n]; } return n; } /* ** Compute the union of two position lists. The output written ** into *pp contains all positions of both *pp1 and *pp2 in sorted ** order and with any duplicates removed. All pointers are ** updated appropriately. The caller is responsible for insuring ** that there is enough space in *pp to hold the complete output. */ static int fts3PoslistMerge( char **pp, /* Output buffer */ char **pp1, /* Left input list */ char **pp2 /* Right input list */ ){ char *p = *pp; char *p1 = *pp1; char *p2 = *pp2; while( *p1 || *p2 ){ int iCol1; /* The current column index in pp1 */ int iCol2; /* The current column index in pp2 */ if( *p1==POS_COLUMN ){ fts3GetVarint32(&p1[1], &iCol1); if( iCol1==0 ) return FTS_CORRUPT_VTAB; } else if( *p1==POS_END ) iCol1 = 0x7fffffff; else iCol1 = 0; if( *p2==POS_COLUMN ){ fts3GetVarint32(&p2[1], &iCol2); if( iCol2==0 ) return FTS_CORRUPT_VTAB; } else if( *p2==POS_END ) iCol2 = 0x7fffffff; else iCol2 = 0; if( iCol1==iCol2 ){ sqlite3_int64 i1 = 0; /* Last position from pp1 */ sqlite3_int64 i2 = 0; /* Last position from pp2 */ sqlite3_int64 iPrev = 0; int n = fts3PutColNumber(&p, iCol1); p1 += n; p2 += n; /* At this point, both p1 and p2 point to the start of column-lists ** for the same column (the column with index iCol1 and iCol2). ** A column-list is a list of non-negative delta-encoded varints, each ** incremented by 2 before being stored. Each list is terminated by a ** POS_END (0) or POS_COLUMN (1). The following block merges the two lists ** and writes the results to buffer p. p is left pointing to the byte ** after the list written. No terminator (POS_END or POS_COLUMN) is ** written to the output. */ fts3GetDeltaVarint(&p1, &i1); fts3GetDeltaVarint(&p2, &i2); if( i1<2 || i2<2 ){ break; } do { fts3PutDeltaVarint(&p, &iPrev, (i1pos(*pp1) && pos(*pp2)-pos(*pp1)<=nToken). i.e. ** when the *pp1 token appears before the *pp2 token, but not more than nToken ** slots before it. ** ** e.g. nToken==1 searches for adjacent positions. */ static int fts3PoslistPhraseMerge( char **pp, /* IN/OUT: Preallocated output buffer */ int nToken, /* Maximum difference in token positions */ int isSaveLeft, /* Save the left position */ int isExact, /* If *pp1 is exactly nTokens before *pp2 */ char **pp1, /* IN/OUT: Left input list */ char **pp2 /* IN/OUT: Right input list */ ){ char *p = *pp; char *p1 = *pp1; char *p2 = *pp2; int iCol1 = 0; int iCol2 = 0; /* Never set both isSaveLeft and isExact for the same invocation. */ assert( isSaveLeft==0 || isExact==0 ); assert_fts3_nc( p!=0 && *p1!=0 && *p2!=0 ); if( *p1==POS_COLUMN ){ p1++; p1 += fts3GetVarint32(p1, &iCol1); } if( *p2==POS_COLUMN ){ p2++; p2 += fts3GetVarint32(p2, &iCol2); } while( 1 ){ if( iCol1==iCol2 ){ char *pSave = p; sqlite3_int64 iPrev = 0; sqlite3_int64 iPos1 = 0; sqlite3_int64 iPos2 = 0; if( iCol1 ){ *p++ = POS_COLUMN; p += sqlite3Fts3PutVarint(p, iCol1); } fts3GetDeltaVarint(&p1, &iPos1); iPos1 -= 2; fts3GetDeltaVarint(&p2, &iPos2); iPos2 -= 2; if( iPos1<0 || iPos2<0 ) break; while( 1 ){ if( iPos2==iPos1+nToken || (isExact==0 && iPos2>iPos1 && iPos2<=iPos1+nToken) ){ sqlite3_int64 iSave; iSave = isSaveLeft ? iPos1 : iPos2; fts3PutDeltaVarint(&p, &iPrev, iSave+2); iPrev -= 2; pSave = 0; assert( p ); } if( (!isSaveLeft && iPos2<=(iPos1+nToken)) || iPos2<=iPos1 ){ if( (*p2&0xFE)==0 ) break; fts3GetDeltaVarint(&p2, &iPos2); iPos2 -= 2; }else{ if( (*p1&0xFE)==0 ) break; fts3GetDeltaVarint(&p1, &iPos1); iPos1 -= 2; } } if( pSave ){ assert( pp && p ); p = pSave; } fts3ColumnlistCopy(0, &p1); fts3ColumnlistCopy(0, &p2); assert( (*p1&0xFE)==0 && (*p2&0xFE)==0 ); if( 0==*p1 || 0==*p2 ) break; p1++; p1 += fts3GetVarint32(p1, &iCol1); p2++; p2 += fts3GetVarint32(p2, &iCol2); } /* Advance pointer p1 or p2 (whichever corresponds to the smaller of ** iCol1 and iCol2) so that it points to either the 0x00 that marks the ** end of the position list, or the 0x01 that precedes the next ** column-number in the position list. */ else if( iCol1=pEnd ){ *pp = 0; }else{ u64 iVal; *pp += sqlite3Fts3GetVarintU(*pp, &iVal); if( bDescIdx ){ *pVal = (i64)((u64)*pVal - iVal); }else{ *pVal = (i64)((u64)*pVal + iVal); } } } /* ** This function is used to write a single varint to a buffer. The varint ** is written to *pp. Before returning, *pp is set to point 1 byte past the ** end of the value written. ** ** If *pbFirst is zero when this function is called, the value written to ** the buffer is that of parameter iVal. ** ** If *pbFirst is non-zero when this function is called, then the value ** written is either (iVal-*piPrev) (if bDescIdx is zero) or (*piPrev-iVal) ** (if bDescIdx is non-zero). ** ** Before returning, this function always sets *pbFirst to 1 and *piPrev ** to the value of parameter iVal. */ static void fts3PutDeltaVarint3( char **pp, /* IN/OUT: Output pointer */ int bDescIdx, /* True for descending docids */ sqlite3_int64 *piPrev, /* IN/OUT: Previous value written to list */ int *pbFirst, /* IN/OUT: True after first int written */ sqlite3_int64 iVal /* Write this value to the list */ ){ sqlite3_uint64 iWrite; if( bDescIdx==0 || *pbFirst==0 ){ assert_fts3_nc( *pbFirst==0 || iVal>=*piPrev ); iWrite = (u64)iVal - (u64)*piPrev; }else{ assert_fts3_nc( *piPrev>=iVal ); iWrite = (u64)*piPrev - (u64)iVal; } assert( *pbFirst || *piPrev==0 ); assert_fts3_nc( *pbFirst==0 || iWrite>0 ); *pp += sqlite3Fts3PutVarint(*pp, iWrite); *piPrev = iVal; *pbFirst = 1; } /* ** This macro is used by various functions that merge doclists. The two ** arguments are 64-bit docid values. If the value of the stack variable ** bDescDoclist is 0 when this macro is invoked, then it returns (i1-i2). ** Otherwise, (i2-i1). ** ** Using this makes it easier to write code that can merge doclists that are ** sorted in either ascending or descending order. */ /* #define DOCID_CMP(i1, i2) ((bDescDoclist?-1:1) * (i64)((u64)i1-i2)) */ #define DOCID_CMP(i1, i2) ((bDescDoclist?-1:1) * (i1>i2?1:((i1==i2)?0:-1))) /* ** This function does an "OR" merge of two doclists (output contains all ** positions contained in either argument doclist). If the docids in the ** input doclists are sorted in ascending order, parameter bDescDoclist ** should be false. If they are sorted in ascending order, it should be ** passed a non-zero value. ** ** If no error occurs, *paOut is set to point at an sqlite3_malloc'd buffer ** containing the output doclist and SQLITE_OK is returned. In this case ** *pnOut is set to the number of bytes in the output doclist. ** ** If an error occurs, an SQLite error code is returned. The output values ** are undefined in this case. */ static int fts3DoclistOrMerge( int bDescDoclist, /* True if arguments are desc */ char *a1, int n1, /* First doclist */ char *a2, int n2, /* Second doclist */ char **paOut, int *pnOut /* OUT: Malloc'd doclist */ ){ int rc = SQLITE_OK; sqlite3_int64 i1 = 0; sqlite3_int64 i2 = 0; sqlite3_int64 iPrev = 0; char *pEnd1 = &a1[n1]; char *pEnd2 = &a2[n2]; char *p1 = a1; char *p2 = a2; char *p; char *aOut; int bFirstOut = 0; *paOut = 0; *pnOut = 0; /* Allocate space for the output. Both the input and output doclists ** are delta encoded. If they are in ascending order (bDescDoclist==0), ** then the first docid in each list is simply encoded as a varint. For ** each subsequent docid, the varint stored is the difference between the ** current and previous docid (a positive number - since the list is in ** ascending order). ** ** The first docid written to the output is therefore encoded using the ** same number of bytes as it is in whichever of the input lists it is ** read from. And each subsequent docid read from the same input list ** consumes either the same or less bytes as it did in the input (since ** the difference between it and the previous value in the output must ** be a positive value less than or equal to the delta value read from ** the input list). The same argument applies to all but the first docid ** read from the 'other' list. And to the contents of all position lists ** that will be copied and merged from the input to the output. ** ** However, if the first docid copied to the output is a negative number, ** then the encoding of the first docid from the 'other' input list may ** be larger in the output than it was in the input (since the delta value ** may be a larger positive integer than the actual docid). ** ** The space required to store the output is therefore the sum of the ** sizes of the two inputs, plus enough space for exactly one of the input ** docids to grow. ** ** A symetric argument may be made if the doclists are in descending ** order. */ aOut = sqlite3_malloc64((i64)n1+n2+FTS3_VARINT_MAX-1+FTS3_BUFFER_PADDING); if( !aOut ) return SQLITE_NOMEM; p = aOut; fts3GetDeltaVarint3(&p1, pEnd1, 0, &i1); fts3GetDeltaVarint3(&p2, pEnd2, 0, &i2); while( p1 || p2 ){ sqlite3_int64 iDiff = DOCID_CMP(i1, i2); if( p2 && p1 && iDiff==0 ){ fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); rc = fts3PoslistMerge(&p, &p1, &p2); if( rc ) break; fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); }else if( !p2 || (p1 && iDiff<0) ){ fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); fts3PoslistCopy(&p, &p1); fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); }else{ fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i2); fts3PoslistCopy(&p, &p2); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); } assert( (p-aOut)<=((p1?(p1-a1):n1)+(p2?(p2-a2):n2)+FTS3_VARINT_MAX-1) ); } if( rc!=SQLITE_OK ){ sqlite3_free(aOut); p = aOut = 0; }else{ assert( (p-aOut)<=n1+n2+FTS3_VARINT_MAX-1 ); memset(&aOut[(p-aOut)], 0, FTS3_BUFFER_PADDING); } *paOut = aOut; *pnOut = (int)(p-aOut); return rc; } /* ** This function does a "phrase" merge of two doclists. In a phrase merge, ** the output contains a copy of each position from the right-hand input ** doclist for which there is a position in the left-hand input doclist ** exactly nDist tokens before it. ** ** If the docids in the input doclists are sorted in ascending order, ** parameter bDescDoclist should be false. If they are sorted in ascending ** order, it should be passed a non-zero value. ** ** The right-hand input doclist is overwritten by this function. */ static int fts3DoclistPhraseMerge( int bDescDoclist, /* True if arguments are desc */ int nDist, /* Distance from left to right (1=adjacent) */ char *aLeft, int nLeft, /* Left doclist */ char **paRight, int *pnRight /* IN/OUT: Right/output doclist */ ){ sqlite3_int64 i1 = 0; sqlite3_int64 i2 = 0; sqlite3_int64 iPrev = 0; char *aRight = *paRight; char *pEnd1 = &aLeft[nLeft]; char *pEnd2 = &aRight[*pnRight]; char *p1 = aLeft; char *p2 = aRight; char *p; int bFirstOut = 0; char *aOut; assert( nDist>0 ); if( bDescDoclist ){ aOut = sqlite3_malloc64((sqlite3_int64)*pnRight + FTS3_VARINT_MAX); if( aOut==0 ) return SQLITE_NOMEM; }else{ aOut = aRight; } p = aOut; fts3GetDeltaVarint3(&p1, pEnd1, 0, &i1); fts3GetDeltaVarint3(&p2, pEnd2, 0, &i2); while( p1 && p2 ){ sqlite3_int64 iDiff = DOCID_CMP(i1, i2); if( iDiff==0 ){ char *pSave = p; sqlite3_int64 iPrevSave = iPrev; int bFirstOutSave = bFirstOut; fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); if( 0==fts3PoslistPhraseMerge(&p, nDist, 0, 1, &p1, &p2) ){ p = pSave; iPrev = iPrevSave; bFirstOut = bFirstOutSave; } fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); }else if( iDiff<0 ){ fts3PoslistCopy(0, &p1); fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); }else{ fts3PoslistCopy(0, &p2); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); } } *pnRight = (int)(p - aOut); if( bDescDoclist ){ sqlite3_free(aRight); *paRight = aOut; } return SQLITE_OK; } /* ** Argument pList points to a position list nList bytes in size. This ** function checks to see if the position list contains any entries for ** a token in position 0 (of any column). If so, it writes argument iDelta ** to the output buffer pOut, followed by a position list consisting only ** of the entries from pList at position 0, and terminated by an 0x00 byte. ** The value returned is the number of bytes written to pOut (if any). */ SQLITE_PRIVATE int sqlite3Fts3FirstFilter( sqlite3_int64 iDelta, /* Varint that may be written to pOut */ char *pList, /* Position list (no 0x00 term) */ int nList, /* Size of pList in bytes */ char *pOut /* Write output here */ ){ int nOut = 0; int bWritten = 0; /* True once iDelta has been written */ char *p = pList; char *pEnd = &pList[nList]; if( *p!=0x01 ){ if( *p==0x02 ){ nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta); pOut[nOut++] = 0x02; bWritten = 1; } fts3ColumnlistCopy(0, &p); } while( paaOutput); i++){ if( pTS->aaOutput[i] ){ if( !aOut ){ aOut = pTS->aaOutput[i]; nOut = pTS->anOutput[i]; pTS->aaOutput[i] = 0; }else{ int nNew; char *aNew; int rc = fts3DoclistOrMerge(p->bDescIdx, pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew ); if( rc!=SQLITE_OK ){ sqlite3_free(aOut); return rc; } sqlite3_free(pTS->aaOutput[i]); sqlite3_free(aOut); pTS->aaOutput[i] = 0; aOut = aNew; nOut = nNew; } } } pTS->aaOutput[0] = aOut; pTS->anOutput[0] = nOut; return SQLITE_OK; } /* ** Merge the doclist aDoclist/nDoclist into the TermSelect object passed ** as the first argument. The merge is an "OR" merge (see function ** fts3DoclistOrMerge() for details). ** ** This function is called with the doclist for each term that matches ** a queried prefix. It merges all these doclists into one, the doclist ** for the specified prefix. Since there can be a very large number of ** doclists to merge, the merging is done pair-wise using the TermSelect ** object. ** ** This function returns SQLITE_OK if the merge is successful, or an ** SQLite error code (SQLITE_NOMEM) if an error occurs. */ static int fts3TermSelectMerge( Fts3Table *p, /* FTS table handle */ TermSelect *pTS, /* TermSelect object to merge into */ char *aDoclist, /* Pointer to doclist */ int nDoclist /* Size of aDoclist in bytes */ ){ if( pTS->aaOutput[0]==0 ){ /* If this is the first term selected, copy the doclist to the output ** buffer using memcpy(). ** ** Add FTS3_VARINT_MAX bytes of unused space to the end of the ** allocation. This is so as to ensure that the buffer is big enough ** to hold the current doclist AND'd with any other doclist. If the ** doclists are stored in order=ASC order, this padding would not be ** required (since the size of [doclistA AND doclistB] is always less ** than or equal to the size of [doclistA] in that case). But this is ** not true for order=DESC. For example, a doclist containing (1, -1) ** may be smaller than (-1), as in the first example the -1 may be stored ** as a single-byte delta, whereas in the second it must be stored as a ** FTS3_VARINT_MAX byte varint. ** ** Similar padding is added in the fts3DoclistOrMerge() function. */ pTS->aaOutput[0] = sqlite3_malloc(nDoclist + FTS3_VARINT_MAX + 1); pTS->anOutput[0] = nDoclist; if( pTS->aaOutput[0] ){ memcpy(pTS->aaOutput[0], aDoclist, nDoclist); memset(&pTS->aaOutput[0][nDoclist], 0, FTS3_VARINT_MAX); }else{ return SQLITE_NOMEM; } }else{ char *aMerge = aDoclist; int nMerge = nDoclist; int iOut; for(iOut=0; iOutaaOutput); iOut++){ if( pTS->aaOutput[iOut]==0 ){ assert( iOut>0 ); pTS->aaOutput[iOut] = aMerge; pTS->anOutput[iOut] = nMerge; break; }else{ char *aNew; int nNew; int rc = fts3DoclistOrMerge(p->bDescIdx, aMerge, nMerge, pTS->aaOutput[iOut], pTS->anOutput[iOut], &aNew, &nNew ); if( rc!=SQLITE_OK ){ if( aMerge!=aDoclist ) sqlite3_free(aMerge); return rc; } if( aMerge!=aDoclist ) sqlite3_free(aMerge); sqlite3_free(pTS->aaOutput[iOut]); pTS->aaOutput[iOut] = 0; aMerge = aNew; nMerge = nNew; if( (iOut+1)==SizeofArray(pTS->aaOutput) ){ pTS->aaOutput[iOut] = aMerge; pTS->anOutput[iOut] = nMerge; } } } } return SQLITE_OK; } /* ** Append SegReader object pNew to the end of the pCsr->apSegment[] array. */ static int fts3SegReaderCursorAppend( Fts3MultiSegReader *pCsr, Fts3SegReader *pNew ){ if( (pCsr->nSegment%16)==0 ){ Fts3SegReader **apNew; sqlite3_int64 nByte = (pCsr->nSegment + 16)*sizeof(Fts3SegReader*); apNew = (Fts3SegReader **)sqlite3_realloc64(pCsr->apSegment, nByte); if( !apNew ){ sqlite3Fts3SegReaderFree(pNew); return SQLITE_NOMEM; } pCsr->apSegment = apNew; } pCsr->apSegment[pCsr->nSegment++] = pNew; return SQLITE_OK; } /* ** Add seg-reader objects to the Fts3MultiSegReader object passed as the ** 8th argument. ** ** This function returns SQLITE_OK if successful, or an SQLite error code ** otherwise. */ static int fts3SegReaderCursor( Fts3Table *p, /* FTS3 table handle */ int iLangid, /* Language id */ int iIndex, /* Index to search (from 0 to p->nIndex-1) */ int iLevel, /* Level of segments to scan */ const char *zTerm, /* Term to query for */ int nTerm, /* Size of zTerm in bytes */ int isPrefix, /* True for a prefix search */ int isScan, /* True to scan from zTerm to EOF */ Fts3MultiSegReader *pCsr /* Cursor object to populate */ ){ int rc = SQLITE_OK; /* Error code */ sqlite3_stmt *pStmt = 0; /* Statement to iterate through segments */ int rc2; /* Result of sqlite3_reset() */ /* If iLevel is less than 0 and this is not a scan, include a seg-reader ** for the pending-terms. If this is a scan, then this call must be being ** made by an fts4aux module, not an FTS table. In this case calling ** Fts3SegReaderPending might segfault, as the data structures used by ** fts4aux are not completely populated. So it's easiest to filter these ** calls out here. */ if( iLevel<0 && p->aIndex && p->iPrevLangid==iLangid ){ Fts3SegReader *pSeg = 0; rc = sqlite3Fts3SegReaderPending(p, iIndex, zTerm, nTerm, isPrefix||isScan, &pSeg); if( rc==SQLITE_OK && pSeg ){ rc = fts3SegReaderCursorAppend(pCsr, pSeg); } } if( iLevel!=FTS3_SEGCURSOR_PENDING ){ if( rc==SQLITE_OK ){ rc = sqlite3Fts3AllSegdirs(p, iLangid, iIndex, iLevel, &pStmt); } while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){ Fts3SegReader *pSeg = 0; /* Read the values returned by the SELECT into local variables. */ sqlite3_int64 iStartBlock = sqlite3_column_int64(pStmt, 1); sqlite3_int64 iLeavesEndBlock = sqlite3_column_int64(pStmt, 2); sqlite3_int64 iEndBlock = sqlite3_column_int64(pStmt, 3); int nRoot = sqlite3_column_bytes(pStmt, 4); char const *zRoot = sqlite3_column_blob(pStmt, 4); /* If zTerm is not NULL, and this segment is not stored entirely on its ** root node, the range of leaves scanned can be reduced. Do this. */ if( iStartBlock && zTerm && zRoot ){ sqlite3_int64 *pi = (isPrefix ? &iLeavesEndBlock : 0); rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi); if( rc!=SQLITE_OK ) goto finished; if( isPrefix==0 && isScan==0 ) iLeavesEndBlock = iStartBlock; } rc = sqlite3Fts3SegReaderNew(pCsr->nSegment+1, (isPrefix==0 && isScan==0), iStartBlock, iLeavesEndBlock, iEndBlock, zRoot, nRoot, &pSeg ); if( rc!=SQLITE_OK ) goto finished; rc = fts3SegReaderCursorAppend(pCsr, pSeg); } } finished: rc2 = sqlite3_reset(pStmt); if( rc==SQLITE_DONE ) rc = rc2; return rc; } /* ** Set up a cursor object for iterating through a full-text index or a ** single level therein. */ SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor( Fts3Table *p, /* FTS3 table handle */ int iLangid, /* Language-id to search */ int iIndex, /* Index to search (from 0 to p->nIndex-1) */ int iLevel, /* Level of segments to scan */ const char *zTerm, /* Term to query for */ int nTerm, /* Size of zTerm in bytes */ int isPrefix, /* True for a prefix search */ int isScan, /* True to scan from zTerm to EOF */ Fts3MultiSegReader *pCsr /* Cursor object to populate */ ){ assert( iIndex>=0 && iIndexnIndex ); assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel==FTS3_SEGCURSOR_PENDING || iLevel>=0 ); assert( iLevelbase.pVtab; if( isPrefix ){ for(i=1; bFound==0 && inIndex; i++){ if( p->aIndex[i].nPrefix==nTerm ){ bFound = 1; rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, i, FTS3_SEGCURSOR_ALL, zTerm, nTerm, 0, 0, pSegcsr ); pSegcsr->bLookup = 1; } } for(i=1; bFound==0 && inIndex; i++){ if( p->aIndex[i].nPrefix==nTerm+1 ){ bFound = 1; rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, i, FTS3_SEGCURSOR_ALL, zTerm, nTerm, 1, 0, pSegcsr ); if( rc==SQLITE_OK ){ rc = fts3SegReaderCursorAddZero( p, pCsr->iLangid, zTerm, nTerm, pSegcsr ); } } } } if( bFound==0 ){ rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, 0, FTS3_SEGCURSOR_ALL, zTerm, nTerm, isPrefix, 0, pSegcsr ); pSegcsr->bLookup = !isPrefix; } } *ppSegcsr = pSegcsr; return rc; } /* ** Free an Fts3MultiSegReader allocated by fts3TermSegReaderCursor(). */ static void fts3SegReaderCursorFree(Fts3MultiSegReader *pSegcsr){ sqlite3Fts3SegReaderFinish(pSegcsr); sqlite3_free(pSegcsr); } /* ** This function retrieves the doclist for the specified term (or term ** prefix) from the database. */ static int fts3TermSelect( Fts3Table *p, /* Virtual table handle */ Fts3PhraseToken *pTok, /* Token to query for */ int iColumn, /* Column to query (or -ve for all columns) */ int *pnOut, /* OUT: Size of buffer at *ppOut */ char **ppOut /* OUT: Malloced result buffer */ ){ int rc; /* Return code */ Fts3MultiSegReader *pSegcsr; /* Seg-reader cursor for this term */ TermSelect tsc; /* Object for pair-wise doclist merging */ Fts3SegFilter filter; /* Segment term filter configuration */ pSegcsr = pTok->pSegcsr; memset(&tsc, 0, sizeof(TermSelect)); filter.flags = FTS3_SEGMENT_IGNORE_EMPTY | FTS3_SEGMENT_REQUIRE_POS | (pTok->isPrefix ? FTS3_SEGMENT_PREFIX : 0) | (pTok->bFirst ? FTS3_SEGMENT_FIRST : 0) | (iColumnnColumn ? FTS3_SEGMENT_COLUMN_FILTER : 0); filter.iCol = iColumn; filter.zTerm = pTok->z; filter.nTerm = pTok->n; rc = sqlite3Fts3SegReaderStart(p, pSegcsr, &filter); while( SQLITE_OK==rc && SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, pSegcsr)) ){ rc = fts3TermSelectMerge(p, &tsc, pSegcsr->aDoclist, pSegcsr->nDoclist); } if( rc==SQLITE_OK ){ rc = fts3TermSelectFinishMerge(p, &tsc); } if( rc==SQLITE_OK ){ *ppOut = tsc.aaOutput[0]; *pnOut = tsc.anOutput[0]; }else{ int i; for(i=0; ipSegcsr = 0; return rc; } /* ** This function counts the total number of docids in the doclist stored ** in buffer aList[], size nList bytes. ** ** If the isPoslist argument is true, then it is assumed that the doclist ** contains a position-list following each docid. Otherwise, it is assumed ** that the doclist is simply a list of docids stored as delta encoded ** varints. */ static int fts3DoclistCountDocids(char *aList, int nList){ int nDoc = 0; /* Return value */ if( aList ){ char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ char *p = aList; /* Cursor */ while( peSearch==FTS3_DOCID_SEARCH || pCsr->eSearch==FTS3_FULLSCAN_SEARCH ){ Fts3Table *pTab = (Fts3Table*)pCursor->pVtab; pTab->bLock++; if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){ pCsr->isEof = 1; rc = sqlite3_reset(pCsr->pStmt); }else{ pCsr->iPrevId = sqlite3_column_int64(pCsr->pStmt, 0); rc = SQLITE_OK; } pTab->bLock--; }else{ rc = fts3EvalNext((Fts3Cursor *)pCursor); } assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); return rc; } /* ** If the numeric type of argument pVal is "integer", then return it ** converted to a 64-bit signed integer. Otherwise, return a copy of ** the second parameter, iDefault. */ static sqlite3_int64 fts3DocidRange(sqlite3_value *pVal, i64 iDefault){ if( pVal ){ int eType = sqlite3_value_numeric_type(pVal); if( eType==SQLITE_INTEGER ){ return sqlite3_value_int64(pVal); } } return iDefault; } /* ** This is the xFilter interface for the virtual table. See ** the virtual table xFilter method documentation for additional ** information. ** ** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against ** the %_content table. ** ** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry ** in the %_content table. ** ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The ** column on the left-hand side of the MATCH operator is column ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand ** side of the MATCH operator. */ static int fts3FilterMethod( sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ int idxNum, /* Strategy index */ const char *idxStr, /* Unused */ int nVal, /* Number of elements in apVal */ sqlite3_value **apVal /* Arguments for the indexing scheme */ ){ int rc = SQLITE_OK; char *zSql; /* SQL statement used to access %_content */ int eSearch; Fts3Table *p = (Fts3Table *)pCursor->pVtab; Fts3Cursor *pCsr = (Fts3Cursor *)pCursor; sqlite3_value *pCons = 0; /* The MATCH or rowid constraint, if any */ sqlite3_value *pLangid = 0; /* The "langid = ?" constraint, if any */ sqlite3_value *pDocidGe = 0; /* The "docid >= ?" constraint, if any */ sqlite3_value *pDocidLe = 0; /* The "docid <= ?" constraint, if any */ int iIdx; UNUSED_PARAMETER(idxStr); UNUSED_PARAMETER(nVal); if( p->bLock ){ return SQLITE_ERROR; } eSearch = (idxNum & 0x0000FFFF); assert( eSearch>=0 && eSearch<=(FTS3_FULLTEXT_SEARCH+p->nColumn) ); assert( p->pSegments==0 ); /* Collect arguments into local variables */ iIdx = 0; if( eSearch!=FTS3_FULLSCAN_SEARCH ) pCons = apVal[iIdx++]; if( idxNum & FTS3_HAVE_LANGID ) pLangid = apVal[iIdx++]; if( idxNum & FTS3_HAVE_DOCID_GE ) pDocidGe = apVal[iIdx++]; if( idxNum & FTS3_HAVE_DOCID_LE ) pDocidLe = apVal[iIdx++]; assert( iIdx==nVal ); /* In case the cursor has been used before, clear it now. */ fts3ClearCursor(pCsr); /* Set the lower and upper bounds on docids to return */ pCsr->iMinDocid = fts3DocidRange(pDocidGe, SMALLEST_INT64); pCsr->iMaxDocid = fts3DocidRange(pDocidLe, LARGEST_INT64); if( idxStr ){ pCsr->bDesc = (idxStr[0]=='D'); }else{ pCsr->bDesc = p->bDescIdx; } pCsr->eSearch = (i16)eSearch; if( eSearch!=FTS3_DOCID_SEARCH && eSearch!=FTS3_FULLSCAN_SEARCH ){ int iCol = eSearch-FTS3_FULLTEXT_SEARCH; const char *zQuery = (const char *)sqlite3_value_text(pCons); if( zQuery==0 && sqlite3_value_type(pCons)!=SQLITE_NULL ){ return SQLITE_NOMEM; } pCsr->iLangid = 0; if( pLangid ) pCsr->iLangid = sqlite3_value_int(pLangid); assert( p->base.zErrMsg==0 ); rc = sqlite3Fts3ExprParse(p->pTokenizer, pCsr->iLangid, p->azColumn, p->bFts4, p->nColumn, iCol, zQuery, -1, &pCsr->pExpr, &p->base.zErrMsg ); if( rc!=SQLITE_OK ){ return rc; } rc = fts3EvalStart(pCsr); sqlite3Fts3SegmentsClose(p); if( rc!=SQLITE_OK ) return rc; pCsr->pNextId = pCsr->aDoclist; pCsr->iPrevId = 0; } /* Compile a SELECT statement for this cursor. For a full-table-scan, the ** statement loops through all rows of the %_content table. For a ** full-text query or docid lookup, the statement retrieves a single ** row by docid. */ if( eSearch==FTS3_FULLSCAN_SEARCH ){ if( pDocidGe || pDocidLe ){ zSql = sqlite3_mprintf( "SELECT %s WHERE rowid BETWEEN %lld AND %lld ORDER BY rowid %s", p->zReadExprlist, pCsr->iMinDocid, pCsr->iMaxDocid, (pCsr->bDesc ? "DESC" : "ASC") ); }else{ zSql = sqlite3_mprintf("SELECT %s ORDER BY rowid %s", p->zReadExprlist, (pCsr->bDesc ? "DESC" : "ASC") ); } if( zSql ){ p->bLock++; rc = sqlite3_prepare_v3( p->db,zSql,-1,SQLITE_PREPARE_PERSISTENT,&pCsr->pStmt,0 ); p->bLock--; sqlite3_free(zSql); }else{ rc = SQLITE_NOMEM; } }else if( eSearch==FTS3_DOCID_SEARCH ){ rc = fts3CursorSeekStmt(pCsr); if( rc==SQLITE_OK ){ rc = sqlite3_bind_value(pCsr->pStmt, 1, pCons); } } if( rc!=SQLITE_OK ) return rc; return fts3NextMethod(pCursor); } /* ** This is the xEof method of the virtual table. SQLite calls this ** routine to find out if it has reached the end of a result set. */ static int fts3EofMethod(sqlite3_vtab_cursor *pCursor){ Fts3Cursor *pCsr = (Fts3Cursor*)pCursor; if( pCsr->isEof ){ fts3ClearCursor(pCsr); pCsr->isEof = 1; } return pCsr->isEof; } /* ** This is the xRowid method. The SQLite core calls this routine to ** retrieve the rowid for the current row of the result set. fts3 ** exposes %_content.docid as the rowid for the virtual table. The ** rowid should be written to *pRowid. */ static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ Fts3Cursor *pCsr = (Fts3Cursor *) pCursor; *pRowid = pCsr->iPrevId; return SQLITE_OK; } /* ** This is the xColumn method, called by SQLite to request a value from ** the row that the supplied cursor currently points to. ** ** If: ** ** (iCol < p->nColumn) -> The value of the iCol'th user column. ** (iCol == p->nColumn) -> Magic column with the same name as the table. ** (iCol == p->nColumn+1) -> Docid column ** (iCol == p->nColumn+2) -> Langid column */ static int fts3ColumnMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ int iCol /* Index of column to read value from */ ){ int rc = SQLITE_OK; /* Return Code */ Fts3Cursor *pCsr = (Fts3Cursor *) pCursor; Fts3Table *p = (Fts3Table *)pCursor->pVtab; /* The column value supplied by SQLite must be in range. */ assert( iCol>=0 && iCol<=p->nColumn+2 ); switch( iCol-p->nColumn ){ case 0: /* The special 'table-name' column */ sqlite3_result_pointer(pCtx, pCsr, "fts3cursor", 0); break; case 1: /* The docid column */ sqlite3_result_int64(pCtx, pCsr->iPrevId); break; case 2: if( pCsr->pExpr ){ sqlite3_result_int64(pCtx, pCsr->iLangid); break; }else if( p->zLanguageid==0 ){ sqlite3_result_int(pCtx, 0); break; }else{ iCol = p->nColumn; /* no break */ deliberate_fall_through } default: /* A user column. Or, if this is a full-table scan, possibly the ** language-id column. Seek the cursor. */ rc = fts3CursorSeek(0, pCsr); if( rc==SQLITE_OK && sqlite3_data_count(pCsr->pStmt)-1>iCol ){ sqlite3_result_value(pCtx, sqlite3_column_value(pCsr->pStmt, iCol+1)); } break; } assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); return rc; } /* ** This function is the implementation of the xUpdate callback used by ** FTS3 virtual tables. It is invoked by SQLite each time a row is to be ** inserted, updated or deleted. */ static int fts3UpdateMethod( sqlite3_vtab *pVtab, /* Virtual table handle */ int nArg, /* Size of argument array */ sqlite3_value **apVal, /* Array of arguments */ sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */ ){ return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid); } /* ** Implementation of xSync() method. Flush the contents of the pending-terms ** hash-table to the database. */ static int fts3SyncMethod(sqlite3_vtab *pVtab){ /* Following an incremental-merge operation, assuming that the input ** segments are not completely consumed (the usual case), they are updated ** in place to remove the entries that have already been merged. This ** involves updating the leaf block that contains the smallest unmerged ** entry and each block (if any) between the leaf and the root node. So ** if the height of the input segment b-trees is N, and input segments ** are merged eight at a time, updating the input segments at the end ** of an incremental-merge requires writing (8*(1+N)) blocks. N is usually ** small - often between 0 and 2. So the overhead of the incremental ** merge is somewhere between 8 and 24 blocks. To avoid this overhead ** dwarfing the actual productive work accomplished, the incremental merge ** is only attempted if it will write at least 64 leaf blocks. Hence ** nMinMerge. ** ** Of course, updating the input segments also involves deleting a bunch ** of blocks from the segments table. But this is not considered overhead ** as it would also be required by a crisis-merge that used the same input ** segments. */ const u32 nMinMerge = 64; /* Minimum amount of incr-merge work to do */ Fts3Table *p = (Fts3Table*)pVtab; int rc; i64 iLastRowid = sqlite3_last_insert_rowid(p->db); rc = sqlite3Fts3PendingTermsFlush(p); if( rc==SQLITE_OK && p->nLeafAdd>(nMinMerge/16) && p->nAutoincrmerge && p->nAutoincrmerge!=0xff ){ int mxLevel = 0; /* Maximum relative level value in db */ int A; /* Incr-merge parameter A */ rc = sqlite3Fts3MaxLevel(p, &mxLevel); assert( rc==SQLITE_OK || mxLevel==0 ); A = p->nLeafAdd * mxLevel; A += (A/2); if( A>(int)nMinMerge ) rc = sqlite3Fts3Incrmerge(p, A, p->nAutoincrmerge); } sqlite3Fts3SegmentsClose(p); sqlite3_set_last_insert_rowid(p->db, iLastRowid); return rc; } /* ** If it is currently unknown whether or not the FTS table has an %_stat ** table (if p->bHasStat==2), attempt to determine this (set p->bHasStat ** to 0 or 1). Return SQLITE_OK if successful, or an SQLite error code ** if an error occurs. */ static int fts3SetHasStat(Fts3Table *p){ int rc = SQLITE_OK; if( p->bHasStat==2 ){ char *zTbl = sqlite3_mprintf("%s_stat", p->zName); if( zTbl ){ int res = sqlite3_table_column_metadata(p->db, p->zDb, zTbl, 0,0,0,0,0,0); sqlite3_free(zTbl); p->bHasStat = (res==SQLITE_OK); }else{ rc = SQLITE_NOMEM; } } return rc; } /* ** Implementation of xBegin() method. */ static int fts3BeginMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table*)pVtab; int rc; UNUSED_PARAMETER(pVtab); assert( p->pSegments==0 ); assert( p->nPendingData==0 ); assert( p->inTransaction!=1 ); p->nLeafAdd = 0; rc = fts3SetHasStat(p); #ifdef SQLITE_DEBUG if( rc==SQLITE_OK ){ p->inTransaction = 1; p->mxSavepoint = -1; } #endif return rc; } /* ** Implementation of xCommit() method. This is a no-op. The contents of ** the pending-terms hash-table have already been flushed into the database ** by fts3SyncMethod(). */ static int fts3CommitMethod(sqlite3_vtab *pVtab){ TESTONLY( Fts3Table *p = (Fts3Table*)pVtab ); UNUSED_PARAMETER(pVtab); assert( p->nPendingData==0 ); assert( p->inTransaction!=0 ); assert( p->pSegments==0 ); TESTONLY( p->inTransaction = 0 ); TESTONLY( p->mxSavepoint = -1; ); return SQLITE_OK; } /* ** Implementation of xRollback(). Discard the contents of the pending-terms ** hash-table. Any changes made to the database are reverted by SQLite. */ static int fts3RollbackMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table*)pVtab; sqlite3Fts3PendingTermsClear(p); assert( p->inTransaction!=0 ); TESTONLY( p->inTransaction = 0 ); TESTONLY( p->mxSavepoint = -1; ); return SQLITE_OK; } /* ** When called, *ppPoslist must point to the byte immediately following the ** end of a position-list. i.e. ( (*ppPoslist)[-1]==POS_END ). This function ** moves *ppPoslist so that it instead points to the first byte of the ** same position list. */ static void fts3ReversePoslist(char *pStart, char **ppPoslist){ char *p = &(*ppPoslist)[-2]; char c = 0; /* Skip backwards passed any trailing 0x00 bytes added by NearTrim() */ while( p>pStart && (c=*p--)==0 ); /* Search backwards for a varint with value zero (the end of the previous ** poslist). This is an 0x00 byte preceded by some byte that does not ** have the 0x80 bit set. */ while( p>pStart && (*p & 0x80) | c ){ c = *p--; } assert( p==pStart || c==0 ); /* At this point p points to that preceding byte without the 0x80 bit ** set. So to find the start of the poslist, skip forward 2 bytes then ** over a varint. ** ** Normally. The other case is that p==pStart and the poslist to return ** is the first in the doclist. In this case do not skip forward 2 bytes. ** The second part of the if condition (c==0 && *ppPoslist>&p[2]) ** is required for cases where the first byte of a doclist and the ** doclist is empty. For example, if the first docid is 10, a doclist ** that begins with: ** ** 0x0A 0x00 */ if( p>pStart || (c==0 && *ppPoslist>&p[2]) ){ p = &p[2]; } while( *p++&0x80 ); *ppPoslist = p; } /* ** Helper function used by the implementation of the overloaded snippet(), ** offsets() and optimize() SQL functions. ** ** If the value passed as the third argument is a blob of size ** sizeof(Fts3Cursor*), then the blob contents are copied to the ** output variable *ppCsr and SQLITE_OK is returned. Otherwise, an error ** message is written to context pContext and SQLITE_ERROR returned. The ** string passed via zFunc is used as part of the error message. */ static int fts3FunctionArg( sqlite3_context *pContext, /* SQL function call context */ const char *zFunc, /* Function name */ sqlite3_value *pVal, /* argv[0] passed to function */ Fts3Cursor **ppCsr /* OUT: Store cursor handle here */ ){ int rc; *ppCsr = (Fts3Cursor*)sqlite3_value_pointer(pVal, "fts3cursor"); if( (*ppCsr)!=0 ){ rc = SQLITE_OK; }else{ char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc); sqlite3_result_error(pContext, zErr, -1); sqlite3_free(zErr); rc = SQLITE_ERROR; } return rc; } /* ** Implementation of the snippet() function for FTS3 */ static void fts3SnippetFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of apVal[] array */ sqlite3_value **apVal /* Array of arguments */ ){ Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ const char *zStart = ""; const char *zEnd = ""; const char *zEllipsis = "..."; int iCol = -1; int nToken = 15; /* Default number of tokens in snippet */ /* There must be at least one argument passed to this function (otherwise ** the non-overloaded version would have been called instead of this one). */ assert( nVal>=1 ); if( nVal>6 ){ sqlite3_result_error(pContext, "wrong number of arguments to function snippet()", -1); return; } if( fts3FunctionArg(pContext, "snippet", apVal[0], &pCsr) ) return; switch( nVal ){ case 6: nToken = sqlite3_value_int(apVal[5]); /* no break */ deliberate_fall_through case 5: iCol = sqlite3_value_int(apVal[4]); /* no break */ deliberate_fall_through case 4: zEllipsis = (const char*)sqlite3_value_text(apVal[3]); /* no break */ deliberate_fall_through case 3: zEnd = (const char*)sqlite3_value_text(apVal[2]); /* no break */ deliberate_fall_through case 2: zStart = (const char*)sqlite3_value_text(apVal[1]); } if( !zEllipsis || !zEnd || !zStart ){ sqlite3_result_error_nomem(pContext); }else if( nToken==0 ){ sqlite3_result_text(pContext, "", -1, SQLITE_STATIC); }else if( SQLITE_OK==fts3CursorSeek(pContext, pCsr) ){ sqlite3Fts3Snippet(pContext, pCsr, zStart, zEnd, zEllipsis, iCol, nToken); } } /* ** Implementation of the offsets() function for FTS3 */ static void fts3OffsetsFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of argument array */ sqlite3_value **apVal /* Array of arguments */ ){ Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ UNUSED_PARAMETER(nVal); assert( nVal==1 ); if( fts3FunctionArg(pContext, "offsets", apVal[0], &pCsr) ) return; assert( pCsr ); if( SQLITE_OK==fts3CursorSeek(pContext, pCsr) ){ sqlite3Fts3Offsets(pContext, pCsr); } } /* ** Implementation of the special optimize() function for FTS3. This ** function merges all segments in the database to a single segment. ** Example usage is: ** ** SELECT optimize(t) FROM t LIMIT 1; ** ** where 't' is the name of an FTS3 table. */ static void fts3OptimizeFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of argument array */ sqlite3_value **apVal /* Array of arguments */ ){ int rc; /* Return code */ Fts3Table *p; /* Virtual table handle */ Fts3Cursor *pCursor; /* Cursor handle passed through apVal[0] */ UNUSED_PARAMETER(nVal); assert( nVal==1 ); if( fts3FunctionArg(pContext, "optimize", apVal[0], &pCursor) ) return; p = (Fts3Table *)pCursor->base.pVtab; assert( p ); rc = sqlite3Fts3Optimize(p); switch( rc ){ case SQLITE_OK: sqlite3_result_text(pContext, "Index optimized", -1, SQLITE_STATIC); break; case SQLITE_DONE: sqlite3_result_text(pContext, "Index already optimal", -1, SQLITE_STATIC); break; default: sqlite3_result_error_code(pContext, rc); break; } } /* ** Implementation of the matchinfo() function for FTS3 */ static void fts3MatchinfoFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of argument array */ sqlite3_value **apVal /* Array of arguments */ ){ Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ assert( nVal==1 || nVal==2 ); if( SQLITE_OK==fts3FunctionArg(pContext, "matchinfo", apVal[0], &pCsr) ){ const char *zArg = 0; if( nVal>1 ){ zArg = (const char *)sqlite3_value_text(apVal[1]); } sqlite3Fts3Matchinfo(pContext, pCsr, zArg); } } /* ** This routine implements the xFindFunction method for the FTS3 ** virtual table. */ static int fts3FindFunctionMethod( sqlite3_vtab *pVtab, /* Virtual table handle */ int nArg, /* Number of SQL function arguments */ const char *zName, /* Name of SQL function */ void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ void **ppArg /* Unused */ ){ struct Overloaded { const char *zName; void (*xFunc)(sqlite3_context*,int,sqlite3_value**); } aOverload[] = { { "snippet", fts3SnippetFunc }, { "offsets", fts3OffsetsFunc }, { "optimize", fts3OptimizeFunc }, { "matchinfo", fts3MatchinfoFunc }, }; int i; /* Iterator variable */ UNUSED_PARAMETER(pVtab); UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(ppArg); for(i=0; idb; /* Database connection */ int rc; /* Return Code */ /* At this point it must be known if the %_stat table exists or not. ** So bHasStat may not be 2. */ rc = fts3SetHasStat(p); /* As it happens, the pending terms table is always empty here. This is ** because an "ALTER TABLE RENAME TABLE" statement inside a transaction ** always opens a savepoint transaction. And the xSavepoint() method ** flushes the pending terms table. But leave the (no-op) call to ** PendingTermsFlush() in in case that changes. */ assert( p->nPendingData==0 ); if( rc==SQLITE_OK ){ rc = sqlite3Fts3PendingTermsFlush(p); } if( p->zContentTbl==0 ){ fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_content' RENAME TO '%q_content';", p->zDb, p->zName, zName ); } if( p->bHasDocsize ){ fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_docsize' RENAME TO '%q_docsize';", p->zDb, p->zName, zName ); } if( p->bHasStat ){ fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_stat' RENAME TO '%q_stat';", p->zDb, p->zName, zName ); } fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_segments' RENAME TO '%q_segments';", p->zDb, p->zName, zName ); fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_segdir' RENAME TO '%q_segdir';", p->zDb, p->zName, zName ); return rc; } /* ** The xSavepoint() method. ** ** Flush the contents of the pending-terms table to disk. */ static int fts3SavepointMethod(sqlite3_vtab *pVtab, int iSavepoint){ int rc = SQLITE_OK; UNUSED_PARAMETER(iSavepoint); assert( ((Fts3Table *)pVtab)->inTransaction ); assert( ((Fts3Table *)pVtab)->mxSavepoint <= iSavepoint ); TESTONLY( ((Fts3Table *)pVtab)->mxSavepoint = iSavepoint ); if( ((Fts3Table *)pVtab)->bIgnoreSavepoint==0 ){ rc = fts3SyncMethod(pVtab); } return rc; } /* ** The xRelease() method. ** ** This is a no-op. */ static int fts3ReleaseMethod(sqlite3_vtab *pVtab, int iSavepoint){ TESTONLY( Fts3Table *p = (Fts3Table*)pVtab ); UNUSED_PARAMETER(iSavepoint); UNUSED_PARAMETER(pVtab); assert( p->inTransaction ); assert( p->mxSavepoint >= iSavepoint ); TESTONLY( p->mxSavepoint = iSavepoint-1 ); return SQLITE_OK; } /* ** The xRollbackTo() method. ** ** Discard the contents of the pending terms table. */ static int fts3RollbackToMethod(sqlite3_vtab *pVtab, int iSavepoint){ Fts3Table *p = (Fts3Table*)pVtab; UNUSED_PARAMETER(iSavepoint); assert( p->inTransaction ); TESTONLY( p->mxSavepoint = iSavepoint ); sqlite3Fts3PendingTermsClear(p); return SQLITE_OK; } /* ** Return true if zName is the extension on one of the shadow tables used ** by this module. */ static int fts3ShadowName(const char *zName){ static const char *azName[] = { "content", "docsize", "segdir", "segments", "stat", }; unsigned int i; for(i=0; inRef--; if( pHash->nRef<=0 ){ sqlite3Fts3HashClear(&pHash->hash); sqlite3_free(pHash); } } /* ** The fts3 built-in tokenizers - "simple", "porter" and "icu"- are ** implemented in files fts3_tokenizer1.c, fts3_porter.c and fts3_icu.c ** respectively. The following three forward declarations are for functions ** declared in these files used to retrieve the respective implementations. ** ** Calling sqlite3Fts3SimpleTokenizerModule() sets the value pointed ** to by the argument to point to the "simple" tokenizer implementation. ** And so on. */ SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module const**ppModule); SQLITE_PRIVATE void sqlite3Fts3PorterTokenizerModule(sqlite3_tokenizer_module const**ppModule); #ifndef SQLITE_DISABLE_FTS3_UNICODE SQLITE_PRIVATE void sqlite3Fts3UnicodeTokenizer(sqlite3_tokenizer_module const**ppModule); #endif #ifdef SQLITE_ENABLE_ICU SQLITE_PRIVATE void sqlite3Fts3IcuTokenizerModule(sqlite3_tokenizer_module const**ppModule); #endif /* ** Initialize the fts3 extension. If this extension is built as part ** of the sqlite library, then this function is called directly by ** SQLite. If fts3 is built as a dynamically loadable extension, this ** function is called by the sqlite3_extension_init() entry point. */ SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db){ int rc = SQLITE_OK; Fts3HashWrapper *pHash = 0; const sqlite3_tokenizer_module *pSimple = 0; const sqlite3_tokenizer_module *pPorter = 0; #ifndef SQLITE_DISABLE_FTS3_UNICODE const sqlite3_tokenizer_module *pUnicode = 0; #endif #ifdef SQLITE_ENABLE_ICU const sqlite3_tokenizer_module *pIcu = 0; sqlite3Fts3IcuTokenizerModule(&pIcu); #endif #ifndef SQLITE_DISABLE_FTS3_UNICODE sqlite3Fts3UnicodeTokenizer(&pUnicode); #endif #ifdef SQLITE_TEST rc = sqlite3Fts3InitTerm(db); if( rc!=SQLITE_OK ) return rc; #endif rc = sqlite3Fts3InitAux(db); if( rc!=SQLITE_OK ) return rc; sqlite3Fts3SimpleTokenizerModule(&pSimple); sqlite3Fts3PorterTokenizerModule(&pPorter); /* Allocate and initialize the hash-table used to store tokenizers. */ pHash = sqlite3_malloc(sizeof(Fts3HashWrapper)); if( !pHash ){ rc = SQLITE_NOMEM; }else{ sqlite3Fts3HashInit(&pHash->hash, FTS3_HASH_STRING, 1); pHash->nRef = 0; } /* Load the built-in tokenizers into the hash table */ if( rc==SQLITE_OK ){ if( sqlite3Fts3HashInsert(&pHash->hash, "simple", 7, (void *)pSimple) || sqlite3Fts3HashInsert(&pHash->hash, "porter", 7, (void *)pPorter) #ifndef SQLITE_DISABLE_FTS3_UNICODE || sqlite3Fts3HashInsert(&pHash->hash, "unicode61", 10, (void *)pUnicode) #endif #ifdef SQLITE_ENABLE_ICU || (pIcu && sqlite3Fts3HashInsert(&pHash->hash, "icu", 4, (void *)pIcu)) #endif ){ rc = SQLITE_NOMEM; } } #ifdef SQLITE_TEST if( rc==SQLITE_OK ){ rc = sqlite3Fts3ExprInitTestInterface(db, &pHash->hash); } #endif /* Create the virtual table wrapper around the hash-table and overload ** the four scalar functions. If this is successful, register the ** module with sqlite. */ if( SQLITE_OK==rc && SQLITE_OK==(rc=sqlite3Fts3InitHashTable(db,&pHash->hash,"fts3_tokenizer")) && SQLITE_OK==(rc = sqlite3_overload_function(db, "snippet", -1)) && SQLITE_OK==(rc = sqlite3_overload_function(db, "offsets", 1)) && SQLITE_OK==(rc = sqlite3_overload_function(db, "matchinfo", 1)) && SQLITE_OK==(rc = sqlite3_overload_function(db, "matchinfo", 2)) && SQLITE_OK==(rc = sqlite3_overload_function(db, "optimize", 1)) ){ pHash->nRef++; rc = sqlite3_create_module_v2( db, "fts3", &fts3Module, (void *)pHash, hashDestroy ); if( rc==SQLITE_OK ){ pHash->nRef++; rc = sqlite3_create_module_v2( db, "fts4", &fts3Module, (void *)pHash, hashDestroy ); } if( rc==SQLITE_OK ){ pHash->nRef++; rc = sqlite3Fts3InitTok(db, (void *)pHash, hashDestroy); } return rc; } /* An error has occurred. Delete the hash table and return the error code. */ assert( rc!=SQLITE_OK ); if( pHash ){ sqlite3Fts3HashClear(&pHash->hash); sqlite3_free(pHash); } return rc; } /* ** Allocate an Fts3MultiSegReader for each token in the expression headed ** by pExpr. ** ** An Fts3SegReader object is a cursor that can seek or scan a range of ** entries within a single segment b-tree. An Fts3MultiSegReader uses multiple ** Fts3SegReader objects internally to provide an interface to seek or scan ** within the union of all segments of a b-tree. Hence the name. ** ** If the allocated Fts3MultiSegReader just seeks to a single entry in a ** segment b-tree (if the term is not a prefix or it is a prefix for which ** there exists prefix b-tree of the right length) then it may be traversed ** and merged incrementally. Otherwise, it has to be merged into an in-memory ** doclist and then traversed. */ static void fts3EvalAllocateReaders( Fts3Cursor *pCsr, /* FTS cursor handle */ Fts3Expr *pExpr, /* Allocate readers for this expression */ int *pnToken, /* OUT: Total number of tokens in phrase. */ int *pnOr, /* OUT: Total number of OR nodes in expr. */ int *pRc /* IN/OUT: Error code */ ){ if( pExpr && SQLITE_OK==*pRc ){ if( pExpr->eType==FTSQUERY_PHRASE ){ int i; int nToken = pExpr->pPhrase->nToken; *pnToken += nToken; for(i=0; ipPhrase->aToken[i]; int rc = fts3TermSegReaderCursor(pCsr, pToken->z, pToken->n, pToken->isPrefix, &pToken->pSegcsr ); if( rc!=SQLITE_OK ){ *pRc = rc; return; } } assert( pExpr->pPhrase->iDoclistToken==0 ); pExpr->pPhrase->iDoclistToken = -1; }else{ *pnOr += (pExpr->eType==FTSQUERY_OR); fts3EvalAllocateReaders(pCsr, pExpr->pLeft, pnToken, pnOr, pRc); fts3EvalAllocateReaders(pCsr, pExpr->pRight, pnToken, pnOr, pRc); } } } /* ** Arguments pList/nList contain the doclist for token iToken of phrase p. ** It is merged into the main doclist stored in p->doclist.aAll/nAll. ** ** This function assumes that pList points to a buffer allocated using ** sqlite3_malloc(). This function takes responsibility for eventually ** freeing the buffer. ** ** SQLITE_OK is returned if successful, or SQLITE_NOMEM if an error occurs. */ static int fts3EvalPhraseMergeToken( Fts3Table *pTab, /* FTS Table pointer */ Fts3Phrase *p, /* Phrase to merge pList/nList into */ int iToken, /* Token pList/nList corresponds to */ char *pList, /* Pointer to doclist */ int nList /* Number of bytes in pList */ ){ int rc = SQLITE_OK; assert( iToken!=p->iDoclistToken ); if( pList==0 ){ sqlite3_free(p->doclist.aAll); p->doclist.aAll = 0; p->doclist.nAll = 0; } else if( p->iDoclistToken<0 ){ p->doclist.aAll = pList; p->doclist.nAll = nList; } else if( p->doclist.aAll==0 ){ sqlite3_free(pList); } else { char *pLeft; char *pRight; int nLeft; int nRight; int nDiff; if( p->iDoclistTokendoclist.aAll; nLeft = p->doclist.nAll; pRight = pList; nRight = nList; nDiff = iToken - p->iDoclistToken; }else{ pRight = p->doclist.aAll; nRight = p->doclist.nAll; pLeft = pList; nLeft = nList; nDiff = p->iDoclistToken - iToken; } rc = fts3DoclistPhraseMerge( pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight ); sqlite3_free(pLeft); p->doclist.aAll = pRight; p->doclist.nAll = nRight; } if( iToken>p->iDoclistToken ) p->iDoclistToken = iToken; return rc; } /* ** Load the doclist for phrase p into p->doclist.aAll/nAll. The loaded doclist ** does not take deferred tokens into account. ** ** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. */ static int fts3EvalPhraseLoad( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Phrase *p /* Phrase object */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int iToken; int rc = SQLITE_OK; for(iToken=0; rc==SQLITE_OK && iTokennToken; iToken++){ Fts3PhraseToken *pToken = &p->aToken[iToken]; assert( pToken->pDeferred==0 || pToken->pSegcsr==0 ); if( pToken->pSegcsr ){ int nThis = 0; char *pThis = 0; rc = fts3TermSelect(pTab, pToken, p->iColumn, &nThis, &pThis); if( rc==SQLITE_OK ){ rc = fts3EvalPhraseMergeToken(pTab, p, iToken, pThis, nThis); } } assert( pToken->pSegcsr==0 ); } return rc; } #ifndef SQLITE_DISABLE_FTS4_DEFERRED /* ** This function is called on each phrase after the position lists for ** any deferred tokens have been loaded into memory. It updates the phrases ** current position list to include only those positions that are really ** instances of the phrase (after considering deferred tokens). If this ** means that the phrase does not appear in the current row, doclist.pList ** and doclist.nList are both zeroed. ** ** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. */ static int fts3EvalDeferredPhrase(Fts3Cursor *pCsr, Fts3Phrase *pPhrase){ int iToken; /* Used to iterate through phrase tokens */ char *aPoslist = 0; /* Position list for deferred tokens */ int nPoslist = 0; /* Number of bytes in aPoslist */ int iPrev = -1; /* Token number of previous deferred token */ assert( pPhrase->doclist.bFreeList==0 ); for(iToken=0; iTokennToken; iToken++){ Fts3PhraseToken *pToken = &pPhrase->aToken[iToken]; Fts3DeferredToken *pDeferred = pToken->pDeferred; if( pDeferred ){ char *pList; int nList; int rc = sqlite3Fts3DeferredTokenList(pDeferred, &pList, &nList); if( rc!=SQLITE_OK ) return rc; if( pList==0 ){ sqlite3_free(aPoslist); pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; return SQLITE_OK; }else if( aPoslist==0 ){ aPoslist = pList; nPoslist = nList; }else{ char *aOut = pList; char *p1 = aPoslist; char *p2 = aOut; assert( iPrev>=0 ); fts3PoslistPhraseMerge(&aOut, iToken-iPrev, 0, 1, &p1, &p2); sqlite3_free(aPoslist); aPoslist = pList; nPoslist = (int)(aOut - aPoslist); if( nPoslist==0 ){ sqlite3_free(aPoslist); pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; return SQLITE_OK; } } iPrev = iToken; } } if( iPrev>=0 ){ int nMaxUndeferred = pPhrase->iDoclistToken; if( nMaxUndeferred<0 ){ pPhrase->doclist.pList = aPoslist; pPhrase->doclist.nList = nPoslist; pPhrase->doclist.iDocid = pCsr->iPrevId; pPhrase->doclist.bFreeList = 1; }else{ int nDistance; char *p1; char *p2; char *aOut; if( nMaxUndeferred>iPrev ){ p1 = aPoslist; p2 = pPhrase->doclist.pList; nDistance = nMaxUndeferred - iPrev; }else{ p1 = pPhrase->doclist.pList; p2 = aPoslist; nDistance = iPrev - nMaxUndeferred; } aOut = (char *)sqlite3_malloc(nPoslist+8); if( !aOut ){ sqlite3_free(aPoslist); return SQLITE_NOMEM; } pPhrase->doclist.pList = aOut; if( fts3PoslistPhraseMerge(&aOut, nDistance, 0, 1, &p1, &p2) ){ pPhrase->doclist.bFreeList = 1; pPhrase->doclist.nList = (int)(aOut - pPhrase->doclist.pList); }else{ sqlite3_free(aOut); pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; } sqlite3_free(aPoslist); } } return SQLITE_OK; } #endif /* SQLITE_DISABLE_FTS4_DEFERRED */ /* ** Maximum number of tokens a phrase may have to be considered for the ** incremental doclists strategy. */ #define MAX_INCR_PHRASE_TOKENS 4 /* ** This function is called for each Fts3Phrase in a full-text query ** expression to initialize the mechanism for returning rows. Once this ** function has been called successfully on an Fts3Phrase, it may be ** used with fts3EvalPhraseNext() to iterate through the matching docids. ** ** If parameter bOptOk is true, then the phrase may (or may not) use the ** incremental loading strategy. Otherwise, the entire doclist is loaded into ** memory within this call. ** ** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. */ static int fts3EvalPhraseStart(Fts3Cursor *pCsr, int bOptOk, Fts3Phrase *p){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; /* Error code */ int i; /* Determine if doclists may be loaded from disk incrementally. This is ** possible if the bOptOk argument is true, the FTS doclists will be ** scanned in forward order, and the phrase consists of ** MAX_INCR_PHRASE_TOKENS or fewer tokens, none of which are are "^first" ** tokens or prefix tokens that cannot use a prefix-index. */ int bHaveIncr = 0; int bIncrOk = (bOptOk && pCsr->bDesc==pTab->bDescIdx && p->nToken<=MAX_INCR_PHRASE_TOKENS && p->nToken>0 #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) && pTab->bNoIncrDoclist==0 #endif ); for(i=0; bIncrOk==1 && inToken; i++){ Fts3PhraseToken *pToken = &p->aToken[i]; if( pToken->bFirst || (pToken->pSegcsr!=0 && !pToken->pSegcsr->bLookup) ){ bIncrOk = 0; } if( pToken->pSegcsr ) bHaveIncr = 1; } if( bIncrOk && bHaveIncr ){ /* Use the incremental approach. */ int iCol = (p->iColumn >= pTab->nColumn ? -1 : p->iColumn); for(i=0; rc==SQLITE_OK && inToken; i++){ Fts3PhraseToken *pToken = &p->aToken[i]; Fts3MultiSegReader *pSegcsr = pToken->pSegcsr; if( pSegcsr ){ rc = sqlite3Fts3MsrIncrStart(pTab, pSegcsr, iCol, pToken->z, pToken->n); } } p->bIncr = 1; }else{ /* Load the full doclist for the phrase into memory. */ rc = fts3EvalPhraseLoad(pCsr, p); p->bIncr = 0; } assert( rc!=SQLITE_OK || p->nToken<1 || p->aToken[0].pSegcsr==0 || p->bIncr ); return rc; } /* ** This function is used to iterate backwards (from the end to start) ** through doclists. It is used by this module to iterate through phrase ** doclists in reverse and by the fts3_write.c module to iterate through ** pending-terms lists when writing to databases with "order=desc". ** ** The doclist may be sorted in ascending (parameter bDescIdx==0) or ** descending (parameter bDescIdx==1) order of docid. Regardless, this ** function iterates from the end of the doclist to the beginning. */ SQLITE_PRIVATE void sqlite3Fts3DoclistPrev( int bDescIdx, /* True if the doclist is desc */ char *aDoclist, /* Pointer to entire doclist */ int nDoclist, /* Length of aDoclist in bytes */ char **ppIter, /* IN/OUT: Iterator pointer */ sqlite3_int64 *piDocid, /* IN/OUT: Docid pointer */ int *pnList, /* OUT: List length pointer */ u8 *pbEof /* OUT: End-of-file flag */ ){ char *p = *ppIter; assert( nDoclist>0 ); assert( *pbEof==0 ); assert_fts3_nc( p || *piDocid==0 ); assert( !p || (p>aDoclist && p<&aDoclist[nDoclist]) ); if( p==0 ){ sqlite3_int64 iDocid = 0; char *pNext = 0; char *pDocid = aDoclist; char *pEnd = &aDoclist[nDoclist]; int iMul = 1; while( pDocid0 ); assert( *pbEof==0 ); assert_fts3_nc( p || *piDocid==0 ); assert( !p || (p>=aDoclist && p<=&aDoclist[nDoclist]) ); if( p==0 ){ p = aDoclist; p += sqlite3Fts3GetVarint(p, piDocid); }else{ fts3PoslistCopy(0, &p); while( p<&aDoclist[nDoclist] && *p==0 ) p++; if( p>=&aDoclist[nDoclist] ){ *pbEof = 1; }else{ sqlite3_int64 iVar; p += sqlite3Fts3GetVarint(p, &iVar); *piDocid += ((bDescIdx ? -1 : 1) * iVar); } } *ppIter = p; } /* ** Advance the iterator pDL to the next entry in pDL->aAll/nAll. Set *pbEof ** to true if EOF is reached. */ static void fts3EvalDlPhraseNext( Fts3Table *pTab, Fts3Doclist *pDL, u8 *pbEof ){ char *pIter; /* Used to iterate through aAll */ char *pEnd; /* 1 byte past end of aAll */ if( pDL->pNextDocid ){ pIter = pDL->pNextDocid; assert( pDL->aAll!=0 || pIter==0 ); }else{ pIter = pDL->aAll; } if( pIter==0 || pIter>=(pEnd = pDL->aAll + pDL->nAll) ){ /* We have already reached the end of this doclist. EOF. */ *pbEof = 1; }else{ sqlite3_int64 iDelta; pIter += sqlite3Fts3GetVarint(pIter, &iDelta); if( pTab->bDescIdx==0 || pDL->pNextDocid==0 ){ pDL->iDocid += iDelta; }else{ pDL->iDocid -= iDelta; } pDL->pList = pIter; fts3PoslistCopy(0, &pIter); pDL->nList = (int)(pIter - pDL->pList); /* pIter now points just past the 0x00 that terminates the position- ** list for document pDL->iDocid. However, if this position-list was ** edited in place by fts3EvalNearTrim(), then pIter may not actually ** point to the start of the next docid value. The following line deals ** with this case by advancing pIter past the zero-padding added by ** fts3EvalNearTrim(). */ while( pIterpNextDocid = pIter; assert( pIter>=&pDL->aAll[pDL->nAll] || *pIter ); *pbEof = 0; } } /* ** Helper type used by fts3EvalIncrPhraseNext() and incrPhraseTokenNext(). */ typedef struct TokenDoclist TokenDoclist; struct TokenDoclist { int bIgnore; sqlite3_int64 iDocid; char *pList; int nList; }; /* ** Token pToken is an incrementally loaded token that is part of a ** multi-token phrase. Advance it to the next matching document in the ** database and populate output variable *p with the details of the new ** entry. Or, if the iterator has reached EOF, set *pbEof to true. ** ** If an error occurs, return an SQLite error code. Otherwise, return ** SQLITE_OK. */ static int incrPhraseTokenNext( Fts3Table *pTab, /* Virtual table handle */ Fts3Phrase *pPhrase, /* Phrase to advance token of */ int iToken, /* Specific token to advance */ TokenDoclist *p, /* OUT: Docid and doclist for new entry */ u8 *pbEof /* OUT: True if iterator is at EOF */ ){ int rc = SQLITE_OK; if( pPhrase->iDoclistToken==iToken ){ assert( p->bIgnore==0 ); assert( pPhrase->aToken[iToken].pSegcsr==0 ); fts3EvalDlPhraseNext(pTab, &pPhrase->doclist, pbEof); p->pList = pPhrase->doclist.pList; p->nList = pPhrase->doclist.nList; p->iDocid = pPhrase->doclist.iDocid; }else{ Fts3PhraseToken *pToken = &pPhrase->aToken[iToken]; assert( pToken->pDeferred==0 ); assert( pToken->pSegcsr || pPhrase->iDoclistToken>=0 ); if( pToken->pSegcsr ){ assert( p->bIgnore==0 ); rc = sqlite3Fts3MsrIncrNext( pTab, pToken->pSegcsr, &p->iDocid, &p->pList, &p->nList ); if( p->pList==0 ) *pbEof = 1; }else{ p->bIgnore = 1; } } return rc; } /* ** The phrase iterator passed as the second argument: ** ** * features at least one token that uses an incremental doclist, and ** ** * does not contain any deferred tokens. ** ** Advance it to the next matching documnent in the database and populate ** the Fts3Doclist.pList and nList fields. ** ** If there is no "next" entry and no error occurs, then *pbEof is set to ** 1 before returning. Otherwise, if no error occurs and the iterator is ** successfully advanced, *pbEof is set to 0. ** ** If an error occurs, return an SQLite error code. Otherwise, return ** SQLITE_OK. */ static int fts3EvalIncrPhraseNext( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Phrase *p, /* Phrase object to advance to next docid */ u8 *pbEof /* OUT: Set to 1 if EOF */ ){ int rc = SQLITE_OK; Fts3Doclist *pDL = &p->doclist; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; u8 bEof = 0; /* This is only called if it is guaranteed that the phrase has at least ** one incremental token. In which case the bIncr flag is set. */ assert( p->bIncr==1 ); if( p->nToken==1 ){ rc = sqlite3Fts3MsrIncrNext(pTab, p->aToken[0].pSegcsr, &pDL->iDocid, &pDL->pList, &pDL->nList ); if( pDL->pList==0 ) bEof = 1; }else{ int bDescDoclist = pCsr->bDesc; struct TokenDoclist a[MAX_INCR_PHRASE_TOKENS]; memset(a, 0, sizeof(a)); assert( p->nToken<=MAX_INCR_PHRASE_TOKENS ); assert( p->iDoclistTokennToken && bEof==0; i++){ rc = incrPhraseTokenNext(pTab, p, i, &a[i], &bEof); if( a[i].bIgnore==0 && (bMaxSet==0 || DOCID_CMP(iMax, a[i].iDocid)<0) ){ iMax = a[i].iDocid; bMaxSet = 1; } } assert( rc!=SQLITE_OK || (p->nToken>=1 && a[p->nToken-1].bIgnore==0) ); assert( rc!=SQLITE_OK || bMaxSet ); /* Keep advancing iterators until they all point to the same document */ for(i=0; inToken; i++){ while( rc==SQLITE_OK && bEof==0 && a[i].bIgnore==0 && DOCID_CMP(a[i].iDocid, iMax)<0 ){ rc = incrPhraseTokenNext(pTab, p, i, &a[i], &bEof); if( DOCID_CMP(a[i].iDocid, iMax)>0 ){ iMax = a[i].iDocid; i = 0; } } } /* Check if the current entries really are a phrase match */ if( bEof==0 ){ int nList = 0; int nByte = a[p->nToken-1].nList; char *aDoclist = sqlite3_malloc(nByte+FTS3_BUFFER_PADDING); if( !aDoclist ) return SQLITE_NOMEM; memcpy(aDoclist, a[p->nToken-1].pList, nByte+1); memset(&aDoclist[nByte], 0, FTS3_BUFFER_PADDING); for(i=0; i<(p->nToken-1); i++){ if( a[i].bIgnore==0 ){ char *pL = a[i].pList; char *pR = aDoclist; char *pOut = aDoclist; int nDist = p->nToken-1-i; int res = fts3PoslistPhraseMerge(&pOut, nDist, 0, 1, &pL, &pR); if( res==0 ) break; nList = (int)(pOut - aDoclist); } } if( i==(p->nToken-1) ){ pDL->iDocid = iMax; pDL->pList = aDoclist; pDL->nList = nList; pDL->bFreeList = 1; break; } sqlite3_free(aDoclist); } } } *pbEof = bEof; return rc; } /* ** Attempt to move the phrase iterator to point to the next matching docid. ** If an error occurs, return an SQLite error code. Otherwise, return ** SQLITE_OK. ** ** If there is no "next" entry and no error occurs, then *pbEof is set to ** 1 before returning. Otherwise, if no error occurs and the iterator is ** successfully advanced, *pbEof is set to 0. */ static int fts3EvalPhraseNext( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Phrase *p, /* Phrase object to advance to next docid */ u8 *pbEof /* OUT: Set to 1 if EOF */ ){ int rc = SQLITE_OK; Fts3Doclist *pDL = &p->doclist; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; if( p->bIncr ){ rc = fts3EvalIncrPhraseNext(pCsr, p, pbEof); }else if( pCsr->bDesc!=pTab->bDescIdx && pDL->nAll ){ sqlite3Fts3DoclistPrev(pTab->bDescIdx, pDL->aAll, pDL->nAll, &pDL->pNextDocid, &pDL->iDocid, &pDL->nList, pbEof ); pDL->pList = pDL->pNextDocid; }else{ fts3EvalDlPhraseNext(pTab, pDL, pbEof); } return rc; } /* ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, fts3EvalPhraseStart() is called on all phrases within the ** expression. Also the Fts3Expr.bDeferred variable is set to true for any ** expressions for which all descendent tokens are deferred. ** ** If parameter bOptOk is zero, then it is guaranteed that the ** Fts3Phrase.doclist.aAll/nAll variables contain the entire doclist for ** each phrase in the expression (subject to deferred token processing). ** Or, if bOptOk is non-zero, then one or more tokens within the expression ** may be loaded incrementally, meaning doclist.aAll/nAll is not available. ** ** If an error occurs within this function, *pRc is set to an SQLite error ** code before returning. */ static void fts3EvalStartReaders( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pExpr, /* Expression to initialize phrases in */ int *pRc /* IN/OUT: Error code */ ){ if( pExpr && SQLITE_OK==*pRc ){ if( pExpr->eType==FTSQUERY_PHRASE ){ int nToken = pExpr->pPhrase->nToken; if( nToken ){ int i; for(i=0; ipPhrase->aToken[i].pDeferred==0 ) break; } pExpr->bDeferred = (i==nToken); } *pRc = fts3EvalPhraseStart(pCsr, 1, pExpr->pPhrase); }else{ fts3EvalStartReaders(pCsr, pExpr->pLeft, pRc); fts3EvalStartReaders(pCsr, pExpr->pRight, pRc); pExpr->bDeferred = (pExpr->pLeft->bDeferred && pExpr->pRight->bDeferred); } } } /* ** An array of the following structures is assembled as part of the process ** of selecting tokens to defer before the query starts executing (as part ** of the xFilter() method). There is one element in the array for each ** token in the FTS expression. ** ** Tokens are divided into AND/NEAR clusters. All tokens in a cluster belong ** to phrases that are connected only by AND and NEAR operators (not OR or ** NOT). When determining tokens to defer, each AND/NEAR cluster is considered ** separately. The root of a tokens AND/NEAR cluster is stored in ** Fts3TokenAndCost.pRoot. */ typedef struct Fts3TokenAndCost Fts3TokenAndCost; struct Fts3TokenAndCost { Fts3Phrase *pPhrase; /* The phrase the token belongs to */ int iToken; /* Position of token in phrase */ Fts3PhraseToken *pToken; /* The token itself */ Fts3Expr *pRoot; /* Root of NEAR/AND cluster */ int nOvfl; /* Number of overflow pages to load doclist */ int iCol; /* The column the token must match */ }; /* ** This function is used to populate an allocated Fts3TokenAndCost array. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, if an error occurs during execution, *pRc is set to an ** SQLite error code. */ static void fts3EvalTokenCosts( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pRoot, /* Root of current AND/NEAR cluster */ Fts3Expr *pExpr, /* Expression to consider */ Fts3TokenAndCost **ppTC, /* Write new entries to *(*ppTC)++ */ Fts3Expr ***ppOr, /* Write new OR root to *(*ppOr)++ */ int *pRc /* IN/OUT: Error code */ ){ if( *pRc==SQLITE_OK ){ if( pExpr->eType==FTSQUERY_PHRASE ){ Fts3Phrase *pPhrase = pExpr->pPhrase; int i; for(i=0; *pRc==SQLITE_OK && inToken; i++){ Fts3TokenAndCost *pTC = (*ppTC)++; pTC->pPhrase = pPhrase; pTC->iToken = i; pTC->pRoot = pRoot; pTC->pToken = &pPhrase->aToken[i]; pTC->iCol = pPhrase->iColumn; *pRc = sqlite3Fts3MsrOvfl(pCsr, pTC->pToken->pSegcsr, &pTC->nOvfl); } }else if( pExpr->eType!=FTSQUERY_NOT ){ assert( pExpr->eType==FTSQUERY_OR || pExpr->eType==FTSQUERY_AND || pExpr->eType==FTSQUERY_NEAR ); assert( pExpr->pLeft && pExpr->pRight ); if( pExpr->eType==FTSQUERY_OR ){ pRoot = pExpr->pLeft; **ppOr = pRoot; (*ppOr)++; } fts3EvalTokenCosts(pCsr, pRoot, pExpr->pLeft, ppTC, ppOr, pRc); if( pExpr->eType==FTSQUERY_OR ){ pRoot = pExpr->pRight; **ppOr = pRoot; (*ppOr)++; } fts3EvalTokenCosts(pCsr, pRoot, pExpr->pRight, ppTC, ppOr, pRc); } } } /* ** Determine the average document (row) size in pages. If successful, ** write this value to *pnPage and return SQLITE_OK. Otherwise, return ** an SQLite error code. ** ** The average document size in pages is calculated by first calculating ** determining the average size in bytes, B. If B is less than the amount ** of data that will fit on a single leaf page of an intkey table in ** this database, then the average docsize is 1. Otherwise, it is 1 plus ** the number of overflow pages consumed by a record B bytes in size. */ static int fts3EvalAverageDocsize(Fts3Cursor *pCsr, int *pnPage){ int rc = SQLITE_OK; if( pCsr->nRowAvg==0 ){ /* The average document size, which is required to calculate the cost ** of each doclist, has not yet been determined. Read the required ** data from the %_stat table to calculate it. ** ** Entry 0 of the %_stat table is a blob containing (nCol+1) FTS3 ** varints, where nCol is the number of columns in the FTS3 table. ** The first varint is the number of documents currently stored in ** the table. The following nCol varints contain the total amount of ** data stored in all rows of each column of the table, from left ** to right. */ Fts3Table *p = (Fts3Table*)pCsr->base.pVtab; sqlite3_stmt *pStmt; sqlite3_int64 nDoc = 0; sqlite3_int64 nByte = 0; const char *pEnd; const char *a; rc = sqlite3Fts3SelectDoctotal(p, &pStmt); if( rc!=SQLITE_OK ) return rc; a = sqlite3_column_blob(pStmt, 0); testcase( a==0 ); /* If %_stat.value set to X'' */ if( a ){ pEnd = &a[sqlite3_column_bytes(pStmt, 0)]; a += sqlite3Fts3GetVarintBounded(a, pEnd, &nDoc); while( anDoc = nDoc; pCsr->nRowAvg = (int)(((nByte / nDoc) + p->nPgsz) / p->nPgsz); assert( pCsr->nRowAvg>0 ); rc = sqlite3_reset(pStmt); } *pnPage = pCsr->nRowAvg; return rc; } /* ** This function is called to select the tokens (if any) that will be ** deferred. The array aTC[] has already been populated when this is ** called. ** ** This function is called once for each AND/NEAR cluster in the ** expression. Each invocation determines which tokens to defer within ** the cluster with root node pRoot. See comments above the definition ** of struct Fts3TokenAndCost for more details. ** ** If no error occurs, SQLITE_OK is returned and sqlite3Fts3DeferToken() ** called on each token to defer. Otherwise, an SQLite error code is ** returned. */ static int fts3EvalSelectDeferred( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pRoot, /* Consider tokens with this root node */ Fts3TokenAndCost *aTC, /* Array of expression tokens and costs */ int nTC /* Number of entries in aTC[] */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int nDocSize = 0; /* Number of pages per doc loaded */ int rc = SQLITE_OK; /* Return code */ int ii; /* Iterator variable for various purposes */ int nOvfl = 0; /* Total overflow pages used by doclists */ int nToken = 0; /* Total number of tokens in cluster */ int nMinEst = 0; /* The minimum count for any phrase so far. */ int nLoad4 = 1; /* (Phrases that will be loaded)^4. */ /* Tokens are never deferred for FTS tables created using the content=xxx ** option. The reason being that it is not guaranteed that the content ** table actually contains the same data as the index. To prevent this from ** causing any problems, the deferred token optimization is completely ** disabled for content=xxx tables. */ if( pTab->zContentTbl ){ return SQLITE_OK; } /* Count the tokens in this AND/NEAR cluster. If none of the doclists ** associated with the tokens spill onto overflow pages, or if there is ** only 1 token, exit early. No tokens to defer in this case. */ for(ii=0; ii0 ); /* Iterate through all tokens in this AND/NEAR cluster, in ascending order ** of the number of overflow pages that will be loaded by the pager layer ** to retrieve the entire doclist for the token from the full-text index. ** Load the doclists for tokens that are either: ** ** a. The cheapest token in the entire query (i.e. the one visited by the ** first iteration of this loop), or ** ** b. Part of a multi-token phrase. ** ** After each token doclist is loaded, merge it with the others from the ** same phrase and count the number of documents that the merged doclist ** contains. Set variable "nMinEst" to the smallest number of documents in ** any phrase doclist for which 1 or more token doclists have been loaded. ** Let nOther be the number of other phrases for which it is certain that ** one or more tokens will not be deferred. ** ** Then, for each token, defer it if loading the doclist would result in ** loading N or more overflow pages into memory, where N is computed as: ** ** (nMinEst + 4^nOther - 1) / (4^nOther) */ for(ii=0; iinOvfl) ){ pTC = &aTC[iTC]; } } assert( pTC ); if( ii && pTC->nOvfl>=((nMinEst+(nLoad4/4)-1)/(nLoad4/4))*nDocSize ){ /* The number of overflow pages to load for this (and therefore all ** subsequent) tokens is greater than the estimated number of pages ** that will be loaded if all subsequent tokens are deferred. */ Fts3PhraseToken *pToken = pTC->pToken; rc = sqlite3Fts3DeferToken(pCsr, pToken, pTC->iCol); fts3SegReaderCursorFree(pToken->pSegcsr); pToken->pSegcsr = 0; }else{ /* Set nLoad4 to the value of (4^nOther) for the next iteration of the ** for-loop. Except, limit the value to 2^24 to prevent it from ** overflowing the 32-bit integer it is stored in. */ if( ii<12 ) nLoad4 = nLoad4*4; if( ii==0 || (pTC->pPhrase->nToken>1 && ii!=nToken-1) ){ /* Either this is the cheapest token in the entire query, or it is ** part of a multi-token phrase. Either way, the entire doclist will ** (eventually) be loaded into memory. It may as well be now. */ Fts3PhraseToken *pToken = pTC->pToken; int nList = 0; char *pList = 0; rc = fts3TermSelect(pTab, pToken, pTC->iCol, &nList, &pList); assert( rc==SQLITE_OK || pList==0 ); if( rc==SQLITE_OK ){ rc = fts3EvalPhraseMergeToken( pTab, pTC->pPhrase, pTC->iToken,pList,nList ); } if( rc==SQLITE_OK ){ int nCount; nCount = fts3DoclistCountDocids( pTC->pPhrase->doclist.aAll, pTC->pPhrase->doclist.nAll ); if( ii==0 || nCountpToken = 0; } return rc; } /* ** This function is called from within the xFilter method. It initializes ** the full-text query currently stored in pCsr->pExpr. To iterate through ** the results of a query, the caller does: ** ** fts3EvalStart(pCsr); ** while( 1 ){ ** fts3EvalNext(pCsr); ** if( pCsr->bEof ) break; ** ... return row pCsr->iPrevId to the caller ... ** } */ static int fts3EvalStart(Fts3Cursor *pCsr){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int nToken = 0; int nOr = 0; /* Allocate a MultiSegReader for each token in the expression. */ fts3EvalAllocateReaders(pCsr, pCsr->pExpr, &nToken, &nOr, &rc); /* Determine which, if any, tokens in the expression should be deferred. */ #ifndef SQLITE_DISABLE_FTS4_DEFERRED if( rc==SQLITE_OK && nToken>1 && pTab->bFts4 ){ Fts3TokenAndCost *aTC; aTC = (Fts3TokenAndCost *)sqlite3_malloc64( sizeof(Fts3TokenAndCost) * nToken + sizeof(Fts3Expr *) * nOr * 2 ); if( !aTC ){ rc = SQLITE_NOMEM; }else{ Fts3Expr **apOr = (Fts3Expr **)&aTC[nToken]; int ii; Fts3TokenAndCost *pTC = aTC; Fts3Expr **ppOr = apOr; fts3EvalTokenCosts(pCsr, 0, pCsr->pExpr, &pTC, &ppOr, &rc); nToken = (int)(pTC-aTC); nOr = (int)(ppOr-apOr); if( rc==SQLITE_OK ){ rc = fts3EvalSelectDeferred(pCsr, 0, aTC, nToken); for(ii=0; rc==SQLITE_OK && iipExpr, &rc); return rc; } /* ** Invalidate the current position list for phrase pPhrase. */ static void fts3EvalInvalidatePoslist(Fts3Phrase *pPhrase){ if( pPhrase->doclist.bFreeList ){ sqlite3_free(pPhrase->doclist.pList); } pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; pPhrase->doclist.bFreeList = 0; } /* ** This function is called to edit the position list associated with ** the phrase object passed as the fifth argument according to a NEAR ** condition. For example: ** ** abc NEAR/5 "def ghi" ** ** Parameter nNear is passed the NEAR distance of the expression (5 in ** the example above). When this function is called, *paPoslist points to ** the position list, and *pnToken is the number of phrase tokens in the ** phrase on the other side of the NEAR operator to pPhrase. For example, ** if pPhrase refers to the "def ghi" phrase, then *paPoslist points to ** the position list associated with phrase "abc". ** ** All positions in the pPhrase position list that are not sufficiently ** close to a position in the *paPoslist position list are removed. If this ** leaves 0 positions, zero is returned. Otherwise, non-zero. ** ** Before returning, *paPoslist is set to point to the position lsit ** associated with pPhrase. And *pnToken is set to the number of tokens in ** pPhrase. */ static int fts3EvalNearTrim( int nNear, /* NEAR distance. As in "NEAR/nNear". */ char *aTmp, /* Temporary space to use */ char **paPoslist, /* IN/OUT: Position list */ int *pnToken, /* IN/OUT: Tokens in phrase of *paPoslist */ Fts3Phrase *pPhrase /* The phrase object to trim the doclist of */ ){ int nParam1 = nNear + pPhrase->nToken; int nParam2 = nNear + *pnToken; int nNew; char *p2; char *pOut; int res; assert( pPhrase->doclist.pList ); p2 = pOut = pPhrase->doclist.pList; res = fts3PoslistNearMerge( &pOut, aTmp, nParam1, nParam2, paPoslist, &p2 ); if( res ){ nNew = (int)(pOut - pPhrase->doclist.pList) - 1; assert_fts3_nc( nNew<=pPhrase->doclist.nList && nNew>0 ); if( nNew>=0 && nNew<=pPhrase->doclist.nList ){ assert( pPhrase->doclist.pList[nNew]=='\0' ); memset(&pPhrase->doclist.pList[nNew], 0, pPhrase->doclist.nList - nNew); pPhrase->doclist.nList = nNew; } *paPoslist = pPhrase->doclist.pList; *pnToken = pPhrase->nToken; } return res; } /* ** This function is a no-op if *pRc is other than SQLITE_OK when it is called. ** Otherwise, it advances the expression passed as the second argument to ** point to the next matching row in the database. Expressions iterate through ** matching rows in docid order. Ascending order if Fts3Cursor.bDesc is zero, ** or descending if it is non-zero. ** ** If an error occurs, *pRc is set to an SQLite error code. Otherwise, if ** successful, the following variables in pExpr are set: ** ** Fts3Expr.bEof (non-zero if EOF - there is no next row) ** Fts3Expr.iDocid (valid if bEof==0. The docid of the next row) ** ** If the expression is of type FTSQUERY_PHRASE, and the expression is not ** at EOF, then the following variables are populated with the position list ** for the phrase for the visited row: ** ** FTs3Expr.pPhrase->doclist.nList (length of pList in bytes) ** FTs3Expr.pPhrase->doclist.pList (pointer to position list) ** ** It says above that this function advances the expression to the next ** matching row. This is usually true, but there are the following exceptions: ** ** 1. Deferred tokens are not taken into account. If a phrase consists ** entirely of deferred tokens, it is assumed to match every row in ** the db. In this case the position-list is not populated at all. ** ** Or, if a phrase contains one or more deferred tokens and one or ** more non-deferred tokens, then the expression is advanced to the ** next possible match, considering only non-deferred tokens. In other ** words, if the phrase is "A B C", and "B" is deferred, the expression ** is advanced to the next row that contains an instance of "A * C", ** where "*" may match any single token. The position list in this case ** is populated as for "A * C" before returning. ** ** 2. NEAR is treated as AND. If the expression is "x NEAR y", it is ** advanced to point to the next row that matches "x AND y". ** ** See sqlite3Fts3EvalTestDeferred() for details on testing if a row is ** really a match, taking into account deferred tokens and NEAR operators. */ static void fts3EvalNextRow( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pExpr, /* Expr. to advance to next matching row */ int *pRc /* IN/OUT: Error code */ ){ if( *pRc==SQLITE_OK ){ int bDescDoclist = pCsr->bDesc; /* Used by DOCID_CMP() macro */ assert( pExpr->bEof==0 ); pExpr->bStart = 1; switch( pExpr->eType ){ case FTSQUERY_NEAR: case FTSQUERY_AND: { Fts3Expr *pLeft = pExpr->pLeft; Fts3Expr *pRight = pExpr->pRight; assert( !pLeft->bDeferred || !pRight->bDeferred ); if( pLeft->bDeferred ){ /* LHS is entirely deferred. So we assume it matches every row. ** Advance the RHS iterator to find the next row visited. */ fts3EvalNextRow(pCsr, pRight, pRc); pExpr->iDocid = pRight->iDocid; pExpr->bEof = pRight->bEof; }else if( pRight->bDeferred ){ /* RHS is entirely deferred. So we assume it matches every row. ** Advance the LHS iterator to find the next row visited. */ fts3EvalNextRow(pCsr, pLeft, pRc); pExpr->iDocid = pLeft->iDocid; pExpr->bEof = pLeft->bEof; }else{ /* Neither the RHS or LHS are deferred. */ fts3EvalNextRow(pCsr, pLeft, pRc); fts3EvalNextRow(pCsr, pRight, pRc); while( !pLeft->bEof && !pRight->bEof && *pRc==SQLITE_OK ){ sqlite3_int64 iDiff = DOCID_CMP(pLeft->iDocid, pRight->iDocid); if( iDiff==0 ) break; if( iDiff<0 ){ fts3EvalNextRow(pCsr, pLeft, pRc); }else{ fts3EvalNextRow(pCsr, pRight, pRc); } } pExpr->iDocid = pLeft->iDocid; pExpr->bEof = (pLeft->bEof || pRight->bEof); if( pExpr->eType==FTSQUERY_NEAR && pExpr->bEof ){ assert( pRight->eType==FTSQUERY_PHRASE ); if( pRight->pPhrase->doclist.aAll ){ Fts3Doclist *pDl = &pRight->pPhrase->doclist; while( *pRc==SQLITE_OK && pRight->bEof==0 ){ memset(pDl->pList, 0, pDl->nList); fts3EvalNextRow(pCsr, pRight, pRc); } } if( pLeft->pPhrase && pLeft->pPhrase->doclist.aAll ){ Fts3Doclist *pDl = &pLeft->pPhrase->doclist; while( *pRc==SQLITE_OK && pLeft->bEof==0 ){ memset(pDl->pList, 0, pDl->nList); fts3EvalNextRow(pCsr, pLeft, pRc); } } pRight->bEof = pLeft->bEof = 1; } } break; } case FTSQUERY_OR: { Fts3Expr *pLeft = pExpr->pLeft; Fts3Expr *pRight = pExpr->pRight; sqlite3_int64 iCmp = DOCID_CMP(pLeft->iDocid, pRight->iDocid); assert_fts3_nc( pLeft->bStart || pLeft->iDocid==pRight->iDocid ); assert_fts3_nc( pRight->bStart || pLeft->iDocid==pRight->iDocid ); if( pRight->bEof || (pLeft->bEof==0 && iCmp<0) ){ fts3EvalNextRow(pCsr, pLeft, pRc); }else if( pLeft->bEof || iCmp>0 ){ fts3EvalNextRow(pCsr, pRight, pRc); }else{ fts3EvalNextRow(pCsr, pLeft, pRc); fts3EvalNextRow(pCsr, pRight, pRc); } pExpr->bEof = (pLeft->bEof && pRight->bEof); iCmp = DOCID_CMP(pLeft->iDocid, pRight->iDocid); if( pRight->bEof || (pLeft->bEof==0 && iCmp<0) ){ pExpr->iDocid = pLeft->iDocid; }else{ pExpr->iDocid = pRight->iDocid; } break; } case FTSQUERY_NOT: { Fts3Expr *pLeft = pExpr->pLeft; Fts3Expr *pRight = pExpr->pRight; if( pRight->bStart==0 ){ fts3EvalNextRow(pCsr, pRight, pRc); assert( *pRc!=SQLITE_OK || pRight->bStart ); } fts3EvalNextRow(pCsr, pLeft, pRc); if( pLeft->bEof==0 ){ while( !*pRc && !pRight->bEof && DOCID_CMP(pLeft->iDocid, pRight->iDocid)>0 ){ fts3EvalNextRow(pCsr, pRight, pRc); } } pExpr->iDocid = pLeft->iDocid; pExpr->bEof = pLeft->bEof; break; } default: { Fts3Phrase *pPhrase = pExpr->pPhrase; fts3EvalInvalidatePoslist(pPhrase); *pRc = fts3EvalPhraseNext(pCsr, pPhrase, &pExpr->bEof); pExpr->iDocid = pPhrase->doclist.iDocid; break; } } } } /* ** If *pRc is not SQLITE_OK, or if pExpr is not the root node of a NEAR ** cluster, then this function returns 1 immediately. ** ** Otherwise, it checks if the current row really does match the NEAR ** expression, using the data currently stored in the position lists ** (Fts3Expr->pPhrase.doclist.pList/nList) for each phrase in the expression. ** ** If the current row is a match, the position list associated with each ** phrase in the NEAR expression is edited in place to contain only those ** phrase instances sufficiently close to their peers to satisfy all NEAR ** constraints. In this case it returns 1. If the NEAR expression does not ** match the current row, 0 is returned. The position lists may or may not ** be edited if 0 is returned. */ static int fts3EvalNearTest(Fts3Expr *pExpr, int *pRc){ int res = 1; /* The following block runs if pExpr is the root of a NEAR query. ** For example, the query: ** ** "w" NEAR "x" NEAR "y" NEAR "z" ** ** which is represented in tree form as: ** ** | ** +--NEAR--+ <-- root of NEAR query ** | | ** +--NEAR--+ "z" ** | | ** +--NEAR--+ "y" ** | | ** "w" "x" ** ** The right-hand child of a NEAR node is always a phrase. The ** left-hand child may be either a phrase or a NEAR node. There are ** no exceptions to this - it's the way the parser in fts3_expr.c works. */ if( *pRc==SQLITE_OK && pExpr->eType==FTSQUERY_NEAR && (pExpr->pParent==0 || pExpr->pParent->eType!=FTSQUERY_NEAR) ){ Fts3Expr *p; sqlite3_int64 nTmp = 0; /* Bytes of temp space */ char *aTmp; /* Temp space for PoslistNearMerge() */ /* Allocate temporary working space. */ for(p=pExpr; p->pLeft; p=p->pLeft){ assert( p->pRight->pPhrase->doclist.nList>0 ); nTmp += p->pRight->pPhrase->doclist.nList; } nTmp += p->pPhrase->doclist.nList; aTmp = sqlite3_malloc64(nTmp*2); if( !aTmp ){ *pRc = SQLITE_NOMEM; res = 0; }else{ char *aPoslist = p->pPhrase->doclist.pList; int nToken = p->pPhrase->nToken; for(p=p->pParent;res && p && p->eType==FTSQUERY_NEAR; p=p->pParent){ Fts3Phrase *pPhrase = p->pRight->pPhrase; int nNear = p->nNear; res = fts3EvalNearTrim(nNear, aTmp, &aPoslist, &nToken, pPhrase); } aPoslist = pExpr->pRight->pPhrase->doclist.pList; nToken = pExpr->pRight->pPhrase->nToken; for(p=pExpr->pLeft; p && res; p=p->pLeft){ int nNear; Fts3Phrase *pPhrase; assert( p->pParent && p->pParent->pLeft==p ); nNear = p->pParent->nNear; pPhrase = ( p->eType==FTSQUERY_NEAR ? p->pRight->pPhrase : p->pPhrase ); res = fts3EvalNearTrim(nNear, aTmp, &aPoslist, &nToken, pPhrase); } } sqlite3_free(aTmp); } return res; } /* ** This function is a helper function for sqlite3Fts3EvalTestDeferred(). ** Assuming no error occurs or has occurred, It returns non-zero if the ** expression passed as the second argument matches the row that pCsr ** currently points to, or zero if it does not. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** If an error occurs during execution of this function, *pRc is set to ** the appropriate SQLite error code. In this case the returned value is ** undefined. */ static int fts3EvalTestExpr( Fts3Cursor *pCsr, /* FTS cursor handle */ Fts3Expr *pExpr, /* Expr to test. May or may not be root. */ int *pRc /* IN/OUT: Error code */ ){ int bHit = 1; /* Return value */ if( *pRc==SQLITE_OK ){ switch( pExpr->eType ){ case FTSQUERY_NEAR: case FTSQUERY_AND: bHit = ( fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc) && fts3EvalTestExpr(pCsr, pExpr->pRight, pRc) && fts3EvalNearTest(pExpr, pRc) ); /* If the NEAR expression does not match any rows, zero the doclist for ** all phrases involved in the NEAR. This is because the snippet(), ** offsets() and matchinfo() functions are not supposed to recognize ** any instances of phrases that are part of unmatched NEAR queries. ** For example if this expression: ** ** ... MATCH 'a OR (b NEAR c)' ** ** is matched against a row containing: ** ** 'a b d e' ** ** then any snippet() should ony highlight the "a" term, not the "b" ** (as "b" is part of a non-matching NEAR clause). */ if( bHit==0 && pExpr->eType==FTSQUERY_NEAR && (pExpr->pParent==0 || pExpr->pParent->eType!=FTSQUERY_NEAR) ){ Fts3Expr *p; for(p=pExpr; p->pPhrase==0; p=p->pLeft){ if( p->pRight->iDocid==pCsr->iPrevId ){ fts3EvalInvalidatePoslist(p->pRight->pPhrase); } } if( p->iDocid==pCsr->iPrevId ){ fts3EvalInvalidatePoslist(p->pPhrase); } } break; case FTSQUERY_OR: { int bHit1 = fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc); int bHit2 = fts3EvalTestExpr(pCsr, pExpr->pRight, pRc); bHit = bHit1 || bHit2; break; } case FTSQUERY_NOT: bHit = ( fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc) && !fts3EvalTestExpr(pCsr, pExpr->pRight, pRc) ); break; default: { #ifndef SQLITE_DISABLE_FTS4_DEFERRED if( pCsr->pDeferred && (pExpr->iDocid==pCsr->iPrevId || pExpr->bDeferred) ){ Fts3Phrase *pPhrase = pExpr->pPhrase; assert( pExpr->bDeferred || pPhrase->doclist.bFreeList==0 ); if( pExpr->bDeferred ){ fts3EvalInvalidatePoslist(pPhrase); } *pRc = fts3EvalDeferredPhrase(pCsr, pPhrase); bHit = (pPhrase->doclist.pList!=0); pExpr->iDocid = pCsr->iPrevId; }else #endif { bHit = ( pExpr->bEof==0 && pExpr->iDocid==pCsr->iPrevId && pExpr->pPhrase->doclist.nList>0 ); } break; } } } return bHit; } /* ** This function is called as the second part of each xNext operation when ** iterating through the results of a full-text query. At this point the ** cursor points to a row that matches the query expression, with the ** following caveats: ** ** * Up until this point, "NEAR" operators in the expression have been ** treated as "AND". ** ** * Deferred tokens have not yet been considered. ** ** If *pRc is not SQLITE_OK when this function is called, it immediately ** returns 0. Otherwise, it tests whether or not after considering NEAR ** operators and deferred tokens the current row is still a match for the ** expression. It returns 1 if both of the following are true: ** ** 1. *pRc is SQLITE_OK when this function returns, and ** ** 2. After scanning the current FTS table row for the deferred tokens, ** it is determined that the row does *not* match the query. ** ** Or, if no error occurs and it seems the current row does match the FTS ** query, return 0. */ SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc){ int rc = *pRc; int bMiss = 0; if( rc==SQLITE_OK ){ /* If there are one or more deferred tokens, load the current row into ** memory and scan it to determine the position list for each deferred ** token. Then, see if this row is really a match, considering deferred ** tokens and NEAR operators (neither of which were taken into account ** earlier, by fts3EvalNextRow()). */ if( pCsr->pDeferred ){ rc = fts3CursorSeek(0, pCsr); if( rc==SQLITE_OK ){ rc = sqlite3Fts3CacheDeferredDoclists(pCsr); } } bMiss = (0==fts3EvalTestExpr(pCsr, pCsr->pExpr, &rc)); /* Free the position-lists accumulated for each deferred token above. */ sqlite3Fts3FreeDeferredDoclists(pCsr); *pRc = rc; } return (rc==SQLITE_OK && bMiss); } /* ** Advance to the next document that matches the FTS expression in ** Fts3Cursor.pExpr. */ static int fts3EvalNext(Fts3Cursor *pCsr){ int rc = SQLITE_OK; /* Return Code */ Fts3Expr *pExpr = pCsr->pExpr; assert( pCsr->isEof==0 ); if( pExpr==0 ){ pCsr->isEof = 1; }else{ do { if( pCsr->isRequireSeek==0 ){ sqlite3_reset(pCsr->pStmt); } assert( sqlite3_data_count(pCsr->pStmt)==0 ); fts3EvalNextRow(pCsr, pExpr, &rc); pCsr->isEof = pExpr->bEof; pCsr->isRequireSeek = 1; pCsr->isMatchinfoNeeded = 1; pCsr->iPrevId = pExpr->iDocid; }while( pCsr->isEof==0 && sqlite3Fts3EvalTestDeferred(pCsr, &rc) ); } /* Check if the cursor is past the end of the docid range specified ** by Fts3Cursor.iMinDocid/iMaxDocid. If so, set the EOF flag. */ if( rc==SQLITE_OK && ( (pCsr->bDesc==0 && pCsr->iPrevId>pCsr->iMaxDocid) || (pCsr->bDesc!=0 && pCsr->iPrevIdiMinDocid) )){ pCsr->isEof = 1; } return rc; } /* ** Restart interation for expression pExpr so that the next call to ** fts3EvalNext() visits the first row. Do not allow incremental ** loading or merging of phrase doclists for this iteration. ** ** If *pRc is other than SQLITE_OK when this function is called, it is ** a no-op. If an error occurs within this function, *pRc is set to an ** SQLite error code before returning. */ static void fts3EvalRestart( Fts3Cursor *pCsr, Fts3Expr *pExpr, int *pRc ){ if( pExpr && *pRc==SQLITE_OK ){ Fts3Phrase *pPhrase = pExpr->pPhrase; if( pPhrase ){ fts3EvalInvalidatePoslist(pPhrase); if( pPhrase->bIncr ){ int i; for(i=0; inToken; i++){ Fts3PhraseToken *pToken = &pPhrase->aToken[i]; assert( pToken->pDeferred==0 ); if( pToken->pSegcsr ){ sqlite3Fts3MsrIncrRestart(pToken->pSegcsr); } } *pRc = fts3EvalPhraseStart(pCsr, 0, pPhrase); } pPhrase->doclist.pNextDocid = 0; pPhrase->doclist.iDocid = 0; pPhrase->pOrPoslist = 0; } pExpr->iDocid = 0; pExpr->bEof = 0; pExpr->bStart = 0; fts3EvalRestart(pCsr, pExpr->pLeft, pRc); fts3EvalRestart(pCsr, pExpr->pRight, pRc); } } /* ** After allocating the Fts3Expr.aMI[] array for each phrase in the ** expression rooted at pExpr, the cursor iterates through all rows matched ** by pExpr, calling this function for each row. This function increments ** the values in Fts3Expr.aMI[] according to the position-list currently ** found in Fts3Expr.pPhrase->doclist.pList for each of the phrase ** expression nodes. */ static void fts3EvalUpdateCounts(Fts3Expr *pExpr, int nCol){ if( pExpr ){ Fts3Phrase *pPhrase = pExpr->pPhrase; if( pPhrase && pPhrase->doclist.pList ){ int iCol = 0; char *p = pPhrase->doclist.pList; do{ u8 c = 0; int iCnt = 0; while( 0xFE & (*p | c) ){ if( (c&0x80)==0 ) iCnt++; c = *p++ & 0x80; } /* aMI[iCol*3 + 1] = Number of occurrences ** aMI[iCol*3 + 2] = Number of rows containing at least one instance */ pExpr->aMI[iCol*3 + 1] += iCnt; pExpr->aMI[iCol*3 + 2] += (iCnt>0); if( *p==0x00 ) break; p++; p += fts3GetVarint32(p, &iCol); }while( iColpLeft, nCol); fts3EvalUpdateCounts(pExpr->pRight, nCol); } } /* ** Expression pExpr must be of type FTSQUERY_PHRASE. ** ** If it is not already allocated and populated, this function allocates and ** populates the Fts3Expr.aMI[] array for expression pExpr. If pExpr is part ** of a NEAR expression, then it also allocates and populates the same array ** for all other phrases that are part of the NEAR expression. ** ** SQLITE_OK is returned if the aMI[] array is successfully allocated and ** populated. Otherwise, if an error occurs, an SQLite error code is returned. */ static int fts3EvalGatherStats( Fts3Cursor *pCsr, /* Cursor object */ Fts3Expr *pExpr /* FTSQUERY_PHRASE expression */ ){ int rc = SQLITE_OK; /* Return code */ assert( pExpr->eType==FTSQUERY_PHRASE ); if( pExpr->aMI==0 ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; Fts3Expr *pRoot; /* Root of NEAR expression */ Fts3Expr *p; /* Iterator used for several purposes */ sqlite3_int64 iPrevId = pCsr->iPrevId; sqlite3_int64 iDocid; u8 bEof; /* Find the root of the NEAR expression */ pRoot = pExpr; while( pRoot->pParent && pRoot->pParent->eType==FTSQUERY_NEAR ){ pRoot = pRoot->pParent; } iDocid = pRoot->iDocid; bEof = pRoot->bEof; assert( pRoot->bStart ); /* Allocate space for the aMSI[] array of each FTSQUERY_PHRASE node */ for(p=pRoot; p; p=p->pLeft){ Fts3Expr *pE = (p->eType==FTSQUERY_PHRASE?p:p->pRight); assert( pE->aMI==0 ); pE->aMI = (u32 *)sqlite3_malloc64(pTab->nColumn * 3 * sizeof(u32)); if( !pE->aMI ) return SQLITE_NOMEM; memset(pE->aMI, 0, pTab->nColumn * 3 * sizeof(u32)); } fts3EvalRestart(pCsr, pRoot, &rc); while( pCsr->isEof==0 && rc==SQLITE_OK ){ do { /* Ensure the %_content statement is reset. */ if( pCsr->isRequireSeek==0 ) sqlite3_reset(pCsr->pStmt); assert( sqlite3_data_count(pCsr->pStmt)==0 ); /* Advance to the next document */ fts3EvalNextRow(pCsr, pRoot, &rc); pCsr->isEof = pRoot->bEof; pCsr->isRequireSeek = 1; pCsr->isMatchinfoNeeded = 1; pCsr->iPrevId = pRoot->iDocid; }while( pCsr->isEof==0 && pRoot->eType==FTSQUERY_NEAR && sqlite3Fts3EvalTestDeferred(pCsr, &rc) ); if( rc==SQLITE_OK && pCsr->isEof==0 ){ fts3EvalUpdateCounts(pRoot, pTab->nColumn); } } pCsr->isEof = 0; pCsr->iPrevId = iPrevId; if( bEof ){ pRoot->bEof = bEof; }else{ /* Caution: pRoot may iterate through docids in ascending or descending ** order. For this reason, even though it seems more defensive, the ** do loop can not be written: ** ** do {...} while( pRoot->iDocidbEof==0 ); if( pRoot->bEof ) rc = FTS_CORRUPT_VTAB; }while( pRoot->iDocid!=iDocid && rc==SQLITE_OK ); } } return rc; } /* ** This function is used by the matchinfo() module to query a phrase ** expression node for the following information: ** ** 1. The total number of occurrences of the phrase in each column of ** the FTS table (considering all rows), and ** ** 2. For each column, the number of rows in the table for which the ** column contains at least one instance of the phrase. ** ** If no error occurs, SQLITE_OK is returned and the values for each column ** written into the array aiOut as follows: ** ** aiOut[iCol*3 + 1] = Number of occurrences ** aiOut[iCol*3 + 2] = Number of rows containing at least one instance ** ** Caveats: ** ** * If a phrase consists entirely of deferred tokens, then all output ** values are set to the number of documents in the table. In other ** words we assume that very common tokens occur exactly once in each ** column of each row of the table. ** ** * If a phrase contains some deferred tokens (and some non-deferred ** tokens), count the potential occurrence identified by considering ** the non-deferred tokens instead of actual phrase occurrences. ** ** * If the phrase is part of a NEAR expression, then only phrase instances ** that meet the NEAR constraint are included in the counts. */ SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats( Fts3Cursor *pCsr, /* FTS cursor handle */ Fts3Expr *pExpr, /* Phrase expression */ u32 *aiOut /* Array to write results into (see above) */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int iCol; if( pExpr->bDeferred && pExpr->pParent->eType!=FTSQUERY_NEAR ){ assert( pCsr->nDoc>0 ); for(iCol=0; iColnColumn; iCol++){ aiOut[iCol*3 + 1] = (u32)pCsr->nDoc; aiOut[iCol*3 + 2] = (u32)pCsr->nDoc; } }else{ rc = fts3EvalGatherStats(pCsr, pExpr); if( rc==SQLITE_OK ){ assert( pExpr->aMI ); for(iCol=0; iColnColumn; iCol++){ aiOut[iCol*3 + 1] = pExpr->aMI[iCol*3 + 1]; aiOut[iCol*3 + 2] = pExpr->aMI[iCol*3 + 2]; } } } return rc; } /* ** The expression pExpr passed as the second argument to this function ** must be of type FTSQUERY_PHRASE. ** ** The returned value is either NULL or a pointer to a buffer containing ** a position-list indicating the occurrences of the phrase in column iCol ** of the current row. ** ** More specifically, the returned buffer contains 1 varint for each ** occurrence of the phrase in the column, stored using the normal (delta+2) ** compression and is terminated by either an 0x01 or 0x00 byte. For example, ** if the requested column contains "a b X c d X X" and the position-list ** for 'X' is requested, the buffer returned may contain: ** ** 0x04 0x05 0x03 0x01 or 0x04 0x05 0x03 0x00 ** ** This function works regardless of whether or not the phrase is deferred, ** incremental, or neither. */ SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist( Fts3Cursor *pCsr, /* FTS3 cursor object */ Fts3Expr *pExpr, /* Phrase to return doclist for */ int iCol, /* Column to return position list for */ char **ppOut /* OUT: Pointer to position list */ ){ Fts3Phrase *pPhrase = pExpr->pPhrase; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; char *pIter; int iThis; sqlite3_int64 iDocid; /* If this phrase is applies specifically to some column other than ** column iCol, return a NULL pointer. */ *ppOut = 0; assert( iCol>=0 && iColnColumn ); if( (pPhrase->iColumnnColumn && pPhrase->iColumn!=iCol) ){ return SQLITE_OK; } iDocid = pExpr->iDocid; pIter = pPhrase->doclist.pList; if( iDocid!=pCsr->iPrevId || pExpr->bEof ){ int rc = SQLITE_OK; int bDescDoclist = pTab->bDescIdx; /* For DOCID_CMP macro */ int bOr = 0; u8 bTreeEof = 0; Fts3Expr *p; /* Used to iterate from pExpr to root */ Fts3Expr *pNear; /* Most senior NEAR ancestor (or pExpr) */ int bMatch; /* Check if this phrase descends from an OR expression node. If not, ** return NULL. Otherwise, the entry that corresponds to docid ** pCsr->iPrevId may lie earlier in the doclist buffer. Or, if the ** tree that the node is part of has been marked as EOF, but the node ** itself is not EOF, then it may point to an earlier entry. */ pNear = pExpr; for(p=pExpr->pParent; p; p=p->pParent){ if( p->eType==FTSQUERY_OR ) bOr = 1; if( p->eType==FTSQUERY_NEAR ) pNear = p; if( p->bEof ) bTreeEof = 1; } if( bOr==0 ) return SQLITE_OK; /* This is the descendent of an OR node. In this case we cannot use ** an incremental phrase. Load the entire doclist for the phrase ** into memory in this case. */ if( pPhrase->bIncr ){ int bEofSave = pNear->bEof; fts3EvalRestart(pCsr, pNear, &rc); while( rc==SQLITE_OK && !pNear->bEof ){ fts3EvalNextRow(pCsr, pNear, &rc); if( bEofSave==0 && pNear->iDocid==iDocid ) break; } assert( rc!=SQLITE_OK || pPhrase->bIncr==0 ); if( rc==SQLITE_OK && pNear->bEof!=bEofSave ){ rc = FTS_CORRUPT_VTAB; } } if( bTreeEof ){ while( rc==SQLITE_OK && !pNear->bEof ){ fts3EvalNextRow(pCsr, pNear, &rc); } } if( rc!=SQLITE_OK ) return rc; bMatch = 1; for(p=pNear; p; p=p->pLeft){ u8 bEof = 0; Fts3Expr *pTest = p; Fts3Phrase *pPh; assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE ); if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight; assert( pTest->eType==FTSQUERY_PHRASE ); pPh = pTest->pPhrase; pIter = pPh->pOrPoslist; iDocid = pPh->iOrDocid; if( pCsr->bDesc==bDescDoclist ){ bEof = !pPh->doclist.nAll || (pIter >= (pPh->doclist.aAll + pPh->doclist.nAll)); while( (pIter==0 || DOCID_CMP(iDocid, pCsr->iPrevId)<0 ) && bEof==0 ){ sqlite3Fts3DoclistNext( bDescDoclist, pPh->doclist.aAll, pPh->doclist.nAll, &pIter, &iDocid, &bEof ); } }else{ bEof = !pPh->doclist.nAll || (pIter && pIter<=pPh->doclist.aAll); while( (pIter==0 || DOCID_CMP(iDocid, pCsr->iPrevId)>0 ) && bEof==0 ){ int dummy; sqlite3Fts3DoclistPrev( bDescDoclist, pPh->doclist.aAll, pPh->doclist.nAll, &pIter, &iDocid, &dummy, &bEof ); } } pPh->pOrPoslist = pIter; pPh->iOrDocid = iDocid; if( bEof || iDocid!=pCsr->iPrevId ) bMatch = 0; } if( bMatch ){ pIter = pPhrase->pOrPoslist; }else{ pIter = 0; } } if( pIter==0 ) return SQLITE_OK; if( *pIter==0x01 ){ pIter++; pIter += fts3GetVarint32(pIter, &iThis); }else{ iThis = 0; } while( iThisdoclist, and ** * any Fts3MultiSegReader objects held by phrase tokens. */ SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *pPhrase){ if( pPhrase ){ int i; sqlite3_free(pPhrase->doclist.aAll); fts3EvalInvalidatePoslist(pPhrase); memset(&pPhrase->doclist, 0, sizeof(Fts3Doclist)); for(i=0; inToken; i++){ fts3SegReaderCursorFree(pPhrase->aToken[i].pSegcsr); pPhrase->aToken[i].pSegcsr = 0; } } } /* ** Return SQLITE_CORRUPT_VTAB. */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3Fts3Corrupt(){ return SQLITE_CORRUPT_VTAB; } #endif #if !SQLITE_CORE /* ** Initialize API pointer table, if required. */ #ifdef _WIN32 __declspec(dllexport) #endif SQLITE_API int sqlite3_fts3_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ SQLITE_EXTENSION_INIT2(pApi) return sqlite3Fts3Init(db); } #endif #endif /************** End of fts3.c ************************************************/ /************** Begin file fts3_aux.c ****************************************/ /* ** 2011 Jan 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ typedef struct Fts3auxTable Fts3auxTable; typedef struct Fts3auxCursor Fts3auxCursor; struct Fts3auxTable { sqlite3_vtab base; /* Base class used by SQLite core */ Fts3Table *pFts3Tab; }; struct Fts3auxCursor { sqlite3_vtab_cursor base; /* Base class used by SQLite core */ Fts3MultiSegReader csr; /* Must be right after "base" */ Fts3SegFilter filter; char *zStop; int nStop; /* Byte-length of string zStop */ int iLangid; /* Language id to query */ int isEof; /* True if cursor is at EOF */ sqlite3_int64 iRowid; /* Current rowid */ int iCol; /* Current value of 'col' column */ int nStat; /* Size of aStat[] array */ struct Fts3auxColstats { sqlite3_int64 nDoc; /* 'documents' values for current csr row */ sqlite3_int64 nOcc; /* 'occurrences' values for current csr row */ } *aStat; }; /* ** Schema of the terms table. */ #define FTS3_AUX_SCHEMA \ "CREATE TABLE x(term, col, documents, occurrences, languageid HIDDEN)" /* ** This function does all the work for both the xConnect and xCreate methods. ** These tables have no persistent representation of their own, so xConnect ** and xCreate are identical operations. */ static int fts3auxConnectMethod( sqlite3 *db, /* Database connection */ void *pUnused, /* Unused */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ char **pzErr /* OUT: sqlite3_malloc'd error message */ ){ char const *zDb; /* Name of database (e.g. "main") */ char const *zFts3; /* Name of fts3 table */ int nDb; /* Result of strlen(zDb) */ int nFts3; /* Result of strlen(zFts3) */ sqlite3_int64 nByte; /* Bytes of space to allocate here */ int rc; /* value returned by declare_vtab() */ Fts3auxTable *p; /* Virtual table object to return */ UNUSED_PARAMETER(pUnused); /* The user should invoke this in one of two forms: ** ** CREATE VIRTUAL TABLE xxx USING fts4aux(fts4-table); ** CREATE VIRTUAL TABLE xxx USING fts4aux(fts4-table-db, fts4-table); */ if( argc!=4 && argc!=5 ) goto bad_args; zDb = argv[1]; nDb = (int)strlen(zDb); if( argc==5 ){ if( nDb==4 && 0==sqlite3_strnicmp("temp", zDb, 4) ){ zDb = argv[3]; nDb = (int)strlen(zDb); zFts3 = argv[4]; }else{ goto bad_args; } }else{ zFts3 = argv[3]; } nFts3 = (int)strlen(zFts3); rc = sqlite3_declare_vtab(db, FTS3_AUX_SCHEMA); if( rc!=SQLITE_OK ) return rc; nByte = sizeof(Fts3auxTable) + sizeof(Fts3Table) + nDb + nFts3 + 2; p = (Fts3auxTable *)sqlite3_malloc64(nByte); if( !p ) return SQLITE_NOMEM; memset(p, 0, nByte); p->pFts3Tab = (Fts3Table *)&p[1]; p->pFts3Tab->zDb = (char *)&p->pFts3Tab[1]; p->pFts3Tab->zName = &p->pFts3Tab->zDb[nDb+1]; p->pFts3Tab->db = db; p->pFts3Tab->nIndex = 1; memcpy((char *)p->pFts3Tab->zDb, zDb, nDb); memcpy((char *)p->pFts3Tab->zName, zFts3, nFts3); sqlite3Fts3Dequote((char *)p->pFts3Tab->zName); *ppVtab = (sqlite3_vtab *)p; return SQLITE_OK; bad_args: sqlite3Fts3ErrMsg(pzErr, "invalid arguments to fts4aux constructor"); return SQLITE_ERROR; } /* ** This function does the work for both the xDisconnect and xDestroy methods. ** These tables have no persistent representation of their own, so xDisconnect ** and xDestroy are identical operations. */ static int fts3auxDisconnectMethod(sqlite3_vtab *pVtab){ Fts3auxTable *p = (Fts3auxTable *)pVtab; Fts3Table *pFts3 = p->pFts3Tab; int i; /* Free any prepared statements held */ for(i=0; iaStmt); i++){ sqlite3_finalize(pFts3->aStmt[i]); } sqlite3_free(pFts3->zSegmentsTbl); sqlite3_free(p); return SQLITE_OK; } #define FTS4AUX_EQ_CONSTRAINT 1 #define FTS4AUX_GE_CONSTRAINT 2 #define FTS4AUX_LE_CONSTRAINT 4 /* ** xBestIndex - Analyze a WHERE and ORDER BY clause. */ static int fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ){ int i; int iEq = -1; int iGe = -1; int iLe = -1; int iLangid = -1; int iNext = 1; /* Next free argvIndex value */ UNUSED_PARAMETER(pVTab); /* This vtab delivers always results in "ORDER BY term ASC" order. */ if( pInfo->nOrderBy==1 && pInfo->aOrderBy[0].iColumn==0 && pInfo->aOrderBy[0].desc==0 ){ pInfo->orderByConsumed = 1; } /* Search for equality and range constraints on the "term" column. ** And equality constraints on the hidden "languageid" column. */ for(i=0; inConstraint; i++){ if( pInfo->aConstraint[i].usable ){ int op = pInfo->aConstraint[i].op; int iCol = pInfo->aConstraint[i].iColumn; if( iCol==0 ){ if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iEq = i; if( op==SQLITE_INDEX_CONSTRAINT_LT ) iLe = i; if( op==SQLITE_INDEX_CONSTRAINT_LE ) iLe = i; if( op==SQLITE_INDEX_CONSTRAINT_GT ) iGe = i; if( op==SQLITE_INDEX_CONSTRAINT_GE ) iGe = i; } if( iCol==4 ){ if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iLangid = i; } } } if( iEq>=0 ){ pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT; pInfo->aConstraintUsage[iEq].argvIndex = iNext++; pInfo->estimatedCost = 5; }else{ pInfo->idxNum = 0; pInfo->estimatedCost = 20000; if( iGe>=0 ){ pInfo->idxNum += FTS4AUX_GE_CONSTRAINT; pInfo->aConstraintUsage[iGe].argvIndex = iNext++; pInfo->estimatedCost /= 2; } if( iLe>=0 ){ pInfo->idxNum += FTS4AUX_LE_CONSTRAINT; pInfo->aConstraintUsage[iLe].argvIndex = iNext++; pInfo->estimatedCost /= 2; } } if( iLangid>=0 ){ pInfo->aConstraintUsage[iLangid].argvIndex = iNext++; pInfo->estimatedCost--; } return SQLITE_OK; } /* ** xOpen - Open a cursor. */ static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ Fts3auxCursor *pCsr; /* Pointer to cursor object to return */ UNUSED_PARAMETER(pVTab); pCsr = (Fts3auxCursor *)sqlite3_malloc(sizeof(Fts3auxCursor)); if( !pCsr ) return SQLITE_NOMEM; memset(pCsr, 0, sizeof(Fts3auxCursor)); *ppCsr = (sqlite3_vtab_cursor *)pCsr; return SQLITE_OK; } /* ** xClose - Close a cursor. */ static int fts3auxCloseMethod(sqlite3_vtab_cursor *pCursor){ Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; sqlite3Fts3SegmentsClose(pFts3); sqlite3Fts3SegReaderFinish(&pCsr->csr); sqlite3_free((void *)pCsr->filter.zTerm); sqlite3_free(pCsr->zStop); sqlite3_free(pCsr->aStat); sqlite3_free(pCsr); return SQLITE_OK; } static int fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize){ if( nSize>pCsr->nStat ){ struct Fts3auxColstats *aNew; aNew = (struct Fts3auxColstats *)sqlite3_realloc64(pCsr->aStat, sizeof(struct Fts3auxColstats) * nSize ); if( aNew==0 ) return SQLITE_NOMEM; memset(&aNew[pCsr->nStat], 0, sizeof(struct Fts3auxColstats) * (nSize - pCsr->nStat) ); pCsr->aStat = aNew; pCsr->nStat = nSize; } return SQLITE_OK; } /* ** xNext - Advance the cursor to the next row, if any. */ static int fts3auxNextMethod(sqlite3_vtab_cursor *pCursor){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; int rc; /* Increment our pretend rowid value. */ pCsr->iRowid++; for(pCsr->iCol++; pCsr->iColnStat; pCsr->iCol++){ if( pCsr->aStat[pCsr->iCol].nDoc>0 ) return SQLITE_OK; } rc = sqlite3Fts3SegReaderStep(pFts3, &pCsr->csr); if( rc==SQLITE_ROW ){ int i = 0; int nDoclist = pCsr->csr.nDoclist; char *aDoclist = pCsr->csr.aDoclist; int iCol; int eState = 0; if( pCsr->zStop ){ int n = (pCsr->nStopcsr.nTerm) ? pCsr->nStop : pCsr->csr.nTerm; int mc = memcmp(pCsr->zStop, pCsr->csr.zTerm, n); if( mc<0 || (mc==0 && pCsr->csr.nTerm>pCsr->nStop) ){ pCsr->isEof = 1; return SQLITE_OK; } } if( fts3auxGrowStatArray(pCsr, 2) ) return SQLITE_NOMEM; memset(pCsr->aStat, 0, sizeof(struct Fts3auxColstats) * pCsr->nStat); iCol = 0; rc = SQLITE_OK; while( iaStat[0].nDoc++; eState = 1; iCol = 0; break; /* State 1. In this state we are expecting either a 1, indicating ** that the following integer will be a column number, or the ** start of a position list for column 0. ** ** The only difference between state 1 and state 2 is that if the ** integer encountered in state 1 is not 0 or 1, then we need to ** increment the column 0 "nDoc" count for this term. */ case 1: assert( iCol==0 ); if( v>1 ){ pCsr->aStat[1].nDoc++; } eState = 2; /* fall through */ case 2: if( v==0 ){ /* 0x00. Next integer will be a docid. */ eState = 0; }else if( v==1 ){ /* 0x01. Next integer will be a column number. */ eState = 3; }else{ /* 2 or greater. A position. */ pCsr->aStat[iCol+1].nOcc++; pCsr->aStat[0].nOcc++; } break; /* State 3. The integer just read is a column number. */ default: assert( eState==3 ); iCol = (int)v; if( iCol<1 ){ rc = SQLITE_CORRUPT_VTAB; break; } if( fts3auxGrowStatArray(pCsr, iCol+2) ) return SQLITE_NOMEM; pCsr->aStat[iCol+1].nDoc++; eState = 2; break; } } pCsr->iCol = 0; }else{ pCsr->isEof = 1; } return rc; } /* ** xFilter - Initialize a cursor to point at the start of its data. */ static int fts3auxFilterMethod( sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ int idxNum, /* Strategy index */ const char *idxStr, /* Unused */ int nVal, /* Number of elements in apVal */ sqlite3_value **apVal /* Arguments for the indexing scheme */ ){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; int rc; int isScan = 0; int iLangVal = 0; /* Language id to query */ int iEq = -1; /* Index of term=? value in apVal */ int iGe = -1; /* Index of term>=? value in apVal */ int iLe = -1; /* Index of term<=? value in apVal */ int iLangid = -1; /* Index of languageid=? value in apVal */ int iNext = 0; UNUSED_PARAMETER(nVal); UNUSED_PARAMETER(idxStr); assert( idxStr==0 ); assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0 || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT) ); if( idxNum==FTS4AUX_EQ_CONSTRAINT ){ iEq = iNext++; }else{ isScan = 1; if( idxNum & FTS4AUX_GE_CONSTRAINT ){ iGe = iNext++; } if( idxNum & FTS4AUX_LE_CONSTRAINT ){ iLe = iNext++; } } if( iNextfilter.zTerm); sqlite3Fts3SegReaderFinish(&pCsr->csr); sqlite3_free((void *)pCsr->filter.zTerm); sqlite3_free(pCsr->aStat); sqlite3_free(pCsr->zStop); memset(&pCsr->csr, 0, ((u8*)&pCsr[1]) - (u8*)&pCsr->csr); pCsr->filter.flags = FTS3_SEGMENT_REQUIRE_POS|FTS3_SEGMENT_IGNORE_EMPTY; if( isScan ) pCsr->filter.flags |= FTS3_SEGMENT_SCAN; if( iEq>=0 || iGe>=0 ){ const unsigned char *zStr = sqlite3_value_text(apVal[0]); assert( (iEq==0 && iGe==-1) || (iEq==-1 && iGe==0) ); if( zStr ){ pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr); if( pCsr->filter.zTerm==0 ) return SQLITE_NOMEM; pCsr->filter.nTerm = (int)strlen(pCsr->filter.zTerm); } } if( iLe>=0 ){ pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iLe])); if( pCsr->zStop==0 ) return SQLITE_NOMEM; pCsr->nStop = (int)strlen(pCsr->zStop); } if( iLangid>=0 ){ iLangVal = sqlite3_value_int(apVal[iLangid]); /* If the user specified a negative value for the languageid, use zero ** instead. This works, as the "languageid=?" constraint will also ** be tested by the VDBE layer. The test will always be false (since ** this module will not return a row with a negative languageid), and ** so the overall query will return zero rows. */ if( iLangVal<0 ) iLangVal = 0; } pCsr->iLangid = iLangVal; rc = sqlite3Fts3SegReaderCursor(pFts3, iLangVal, 0, FTS3_SEGCURSOR_ALL, pCsr->filter.zTerm, pCsr->filter.nTerm, 0, isScan, &pCsr->csr ); if( rc==SQLITE_OK ){ rc = sqlite3Fts3SegReaderStart(pFts3, &pCsr->csr, &pCsr->filter); } if( rc==SQLITE_OK ) rc = fts3auxNextMethod(pCursor); return rc; } /* ** xEof - Return true if the cursor is at EOF, or false otherwise. */ static int fts3auxEofMethod(sqlite3_vtab_cursor *pCursor){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; return pCsr->isEof; } /* ** xColumn - Return a column value. */ static int fts3auxColumnMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ int iCol /* Index of column to read value from */ ){ Fts3auxCursor *p = (Fts3auxCursor *)pCursor; assert( p->isEof==0 ); switch( iCol ){ case 0: /* term */ sqlite3_result_text(pCtx, p->csr.zTerm, p->csr.nTerm, SQLITE_TRANSIENT); break; case 1: /* col */ if( p->iCol ){ sqlite3_result_int(pCtx, p->iCol-1); }else{ sqlite3_result_text(pCtx, "*", -1, SQLITE_STATIC); } break; case 2: /* documents */ sqlite3_result_int64(pCtx, p->aStat[p->iCol].nDoc); break; case 3: /* occurrences */ sqlite3_result_int64(pCtx, p->aStat[p->iCol].nOcc); break; default: /* languageid */ assert( iCol==4 ); sqlite3_result_int(pCtx, p->iLangid); break; } return SQLITE_OK; } /* ** xRowid - Return the current rowid for the cursor. */ static int fts3auxRowidMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite_int64 *pRowid /* OUT: Rowid value */ ){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; *pRowid = pCsr->iRowid; return SQLITE_OK; } /* ** Register the fts3aux module with database connection db. Return SQLITE_OK ** if successful or an error code if sqlite3_create_module() fails. */ SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db){ static const sqlite3_module fts3aux_module = { 0, /* iVersion */ fts3auxConnectMethod, /* xCreate */ fts3auxConnectMethod, /* xConnect */ fts3auxBestIndexMethod, /* xBestIndex */ fts3auxDisconnectMethod, /* xDisconnect */ fts3auxDisconnectMethod, /* xDestroy */ fts3auxOpenMethod, /* xOpen */ fts3auxCloseMethod, /* xClose */ fts3auxFilterMethod, /* xFilter */ fts3auxNextMethod, /* xNext */ fts3auxEofMethod, /* xEof */ fts3auxColumnMethod, /* xColumn */ fts3auxRowidMethod, /* xRowid */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindFunction */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; int rc; /* Return code */ rc = sqlite3_create_module(db, "fts4aux", &fts3aux_module, 0); return rc; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_aux.c ********************************************/ /************** Begin file fts3_expr.c ***************************************/ /* ** 2008 Nov 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This module contains code that implements a parser for fts3 query strings ** (the right-hand argument to the MATCH operator). Because the supported ** syntax is relatively simple, the whole tokenizer/parser system is ** hand-coded. */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* ** By default, this module parses the legacy syntax that has been ** traditionally used by fts3. Or, if SQLITE_ENABLE_FTS3_PARENTHESIS ** is defined, then it uses the new syntax. The differences between ** the new and the old syntaxes are: ** ** a) The new syntax supports parenthesis. The old does not. ** ** b) The new syntax supports the AND and NOT operators. The old does not. ** ** c) The old syntax supports the "-" token qualifier. This is not ** supported by the new syntax (it is replaced by the NOT operator). ** ** d) When using the old syntax, the OR operator has a greater precedence ** than an implicit AND. When using the new, both implicity and explicit ** AND operators have a higher precedence than OR. ** ** If compiled with SQLITE_TEST defined, then this module exports the ** symbol "int sqlite3_fts3_enable_parentheses". Setting this variable ** to zero causes the module to use the old syntax. If it is set to ** non-zero the new syntax is activated. This is so both syntaxes can ** be tested using a single build of testfixture. ** ** The following describes the syntax supported by the fts3 MATCH ** operator in a similar format to that used by the lemon parser ** generator. This module does not use actually lemon, it uses a ** custom parser. ** ** query ::= andexpr (OR andexpr)*. ** ** andexpr ::= notexpr (AND? notexpr)*. ** ** notexpr ::= nearexpr (NOT nearexpr|-TOKEN)*. ** notexpr ::= LP query RP. ** ** nearexpr ::= phrase (NEAR distance_opt nearexpr)*. ** ** distance_opt ::= . ** distance_opt ::= / INTEGER. ** ** phrase ::= TOKEN. ** phrase ::= COLUMN:TOKEN. ** phrase ::= "TOKEN TOKEN TOKEN...". */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_fts3_enable_parentheses = 0; #else # ifdef SQLITE_ENABLE_FTS3_PARENTHESIS # define sqlite3_fts3_enable_parentheses 1 # else # define sqlite3_fts3_enable_parentheses 0 # endif #endif /* ** Default span for NEAR operators. */ #define SQLITE_FTS3_DEFAULT_NEAR_PARAM 10 /* #include */ /* #include */ /* ** isNot: ** This variable is used by function getNextNode(). When getNextNode() is ** called, it sets ParseContext.isNot to true if the 'next node' is a ** FTSQUERY_PHRASE with a unary "-" attached to it. i.e. "mysql" in the ** FTS3 query "sqlite -mysql". Otherwise, ParseContext.isNot is set to ** zero. */ typedef struct ParseContext ParseContext; struct ParseContext { sqlite3_tokenizer *pTokenizer; /* Tokenizer module */ int iLangid; /* Language id used with tokenizer */ const char **azCol; /* Array of column names for fts3 table */ int bFts4; /* True to allow FTS4-only syntax */ int nCol; /* Number of entries in azCol[] */ int iDefaultCol; /* Default column to query */ int isNot; /* True if getNextNode() sees a unary - */ sqlite3_context *pCtx; /* Write error message here */ int nNest; /* Number of nested brackets */ }; /* ** This function is equivalent to the standard isspace() function. ** ** The standard isspace() can be awkward to use safely, because although it ** is defined to accept an argument of type int, its behavior when passed ** an integer that falls outside of the range of the unsigned char type ** is undefined (and sometimes, "undefined" means segfault). This wrapper ** is defined to accept an argument of type char, and always returns 0 for ** any values that fall outside of the range of the unsigned char type (i.e. ** negative values). */ static int fts3isspace(char c){ return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; } /* ** Allocate nByte bytes of memory using sqlite3_malloc(). If successful, ** zero the memory before returning a pointer to it. If unsuccessful, ** return NULL. */ SQLITE_PRIVATE void *sqlite3Fts3MallocZero(sqlite3_int64 nByte){ void *pRet = sqlite3_malloc64(nByte); if( pRet ) memset(pRet, 0, nByte); return pRet; } SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer( sqlite3_tokenizer *pTokenizer, int iLangid, const char *z, int n, sqlite3_tokenizer_cursor **ppCsr ){ sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; sqlite3_tokenizer_cursor *pCsr = 0; int rc; rc = pModule->xOpen(pTokenizer, z, n, &pCsr); assert( rc==SQLITE_OK || pCsr==0 ); if( rc==SQLITE_OK ){ pCsr->pTokenizer = pTokenizer; if( pModule->iVersion>=1 ){ rc = pModule->xLanguageid(pCsr, iLangid); if( rc!=SQLITE_OK ){ pModule->xClose(pCsr); pCsr = 0; } } } *ppCsr = pCsr; return rc; } /* ** Function getNextNode(), which is called by fts3ExprParse(), may itself ** call fts3ExprParse(). So this forward declaration is required. */ static int fts3ExprParse(ParseContext *, const char *, int, Fts3Expr **, int *); /* ** Extract the next token from buffer z (length n) using the tokenizer ** and other information (column names etc.) in pParse. Create an Fts3Expr ** structure of type FTSQUERY_PHRASE containing a phrase consisting of this ** single token and set *ppExpr to point to it. If the end of the buffer is ** reached before a token is found, set *ppExpr to zero. It is the ** responsibility of the caller to eventually deallocate the allocated ** Fts3Expr structure (if any) by passing it to sqlite3_free(). ** ** Return SQLITE_OK if successful, or SQLITE_NOMEM if a memory allocation ** fails. */ static int getNextToken( ParseContext *pParse, /* fts3 query parse context */ int iCol, /* Value for Fts3Phrase.iColumn */ const char *z, int n, /* Input string */ Fts3Expr **ppExpr, /* OUT: expression */ int *pnConsumed /* OUT: Number of bytes consumed */ ){ sqlite3_tokenizer *pTokenizer = pParse->pTokenizer; sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; int rc; sqlite3_tokenizer_cursor *pCursor; Fts3Expr *pRet = 0; int i = 0; /* Set variable i to the maximum number of bytes of input to tokenize. */ for(i=0; iiLangid, z, i, &pCursor); if( rc==SQLITE_OK ){ const char *zToken; int nToken = 0, iStart = 0, iEnd = 0, iPosition = 0; sqlite3_int64 nByte; /* total space to allocate */ rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition); if( rc==SQLITE_OK ){ nByte = sizeof(Fts3Expr) + sizeof(Fts3Phrase) + nToken; pRet = (Fts3Expr *)sqlite3Fts3MallocZero(nByte); if( !pRet ){ rc = SQLITE_NOMEM; }else{ pRet->eType = FTSQUERY_PHRASE; pRet->pPhrase = (Fts3Phrase *)&pRet[1]; pRet->pPhrase->nToken = 1; pRet->pPhrase->iColumn = iCol; pRet->pPhrase->aToken[0].n = nToken; pRet->pPhrase->aToken[0].z = (char *)&pRet->pPhrase[1]; memcpy(pRet->pPhrase->aToken[0].z, zToken, nToken); if( iEndpPhrase->aToken[0].isPrefix = 1; iEnd++; } while( 1 ){ if( !sqlite3_fts3_enable_parentheses && iStart>0 && z[iStart-1]=='-' ){ pParse->isNot = 1; iStart--; }else if( pParse->bFts4 && iStart>0 && z[iStart-1]=='^' ){ pRet->pPhrase->aToken[0].bFirst = 1; iStart--; }else{ break; } } } *pnConsumed = iEnd; }else if( i && rc==SQLITE_DONE ){ rc = SQLITE_OK; } pModule->xClose(pCursor); } *ppExpr = pRet; return rc; } /* ** Enlarge a memory allocation. If an out-of-memory allocation occurs, ** then free the old allocation. */ static void *fts3ReallocOrFree(void *pOrig, sqlite3_int64 nNew){ void *pRet = sqlite3_realloc64(pOrig, nNew); if( !pRet ){ sqlite3_free(pOrig); } return pRet; } /* ** Buffer zInput, length nInput, contains the contents of a quoted string ** that appeared as part of an fts3 query expression. Neither quote character ** is included in the buffer. This function attempts to tokenize the entire ** input buffer and create an Fts3Expr structure of type FTSQUERY_PHRASE ** containing the results. ** ** If successful, SQLITE_OK is returned and *ppExpr set to point at the ** allocated Fts3Expr structure. Otherwise, either SQLITE_NOMEM (out of memory ** error) or SQLITE_ERROR (tokenization error) is returned and *ppExpr set ** to 0. */ static int getNextString( ParseContext *pParse, /* fts3 query parse context */ const char *zInput, int nInput, /* Input string */ Fts3Expr **ppExpr /* OUT: expression */ ){ sqlite3_tokenizer *pTokenizer = pParse->pTokenizer; sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; int rc; Fts3Expr *p = 0; sqlite3_tokenizer_cursor *pCursor = 0; char *zTemp = 0; int nTemp = 0; const int nSpace = sizeof(Fts3Expr) + sizeof(Fts3Phrase); int nToken = 0; /* The final Fts3Expr data structure, including the Fts3Phrase, ** Fts3PhraseToken structures token buffers are all stored as a single ** allocation so that the expression can be freed with a single call to ** sqlite3_free(). Setting this up requires a two pass approach. ** ** The first pass, in the block below, uses a tokenizer cursor to iterate ** through the tokens in the expression. This pass uses fts3ReallocOrFree() ** to assemble data in two dynamic buffers: ** ** Buffer p: Points to the Fts3Expr structure, followed by the Fts3Phrase ** structure, followed by the array of Fts3PhraseToken ** structures. This pass only populates the Fts3PhraseToken array. ** ** Buffer zTemp: Contains copies of all tokens. ** ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below, ** appends buffer zTemp to buffer p, and fills in the Fts3Expr and Fts3Phrase ** structures. */ rc = sqlite3Fts3OpenTokenizer( pTokenizer, pParse->iLangid, zInput, nInput, &pCursor); if( rc==SQLITE_OK ){ int ii; for(ii=0; rc==SQLITE_OK; ii++){ const char *zByte; int nByte = 0, iBegin = 0, iEnd = 0, iPos = 0; rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos); if( rc==SQLITE_OK ){ Fts3PhraseToken *pToken; p = fts3ReallocOrFree(p, nSpace + ii*sizeof(Fts3PhraseToken)); if( !p ) goto no_mem; zTemp = fts3ReallocOrFree(zTemp, nTemp + nByte); if( !zTemp ) goto no_mem; assert( nToken==ii ); pToken = &((Fts3Phrase *)(&p[1]))->aToken[ii]; memset(pToken, 0, sizeof(Fts3PhraseToken)); memcpy(&zTemp[nTemp], zByte, nByte); nTemp += nByte; pToken->n = nByte; pToken->isPrefix = (iEndbFirst = (iBegin>0 && zInput[iBegin-1]=='^'); nToken = ii+1; } } pModule->xClose(pCursor); pCursor = 0; } if( rc==SQLITE_DONE ){ int jj; char *zBuf = 0; p = fts3ReallocOrFree(p, nSpace + nToken*sizeof(Fts3PhraseToken) + nTemp); if( !p ) goto no_mem; memset(p, 0, (char *)&(((Fts3Phrase *)&p[1])->aToken[0])-(char *)p); p->eType = FTSQUERY_PHRASE; p->pPhrase = (Fts3Phrase *)&p[1]; p->pPhrase->iColumn = pParse->iDefaultCol; p->pPhrase->nToken = nToken; zBuf = (char *)&p->pPhrase->aToken[nToken]; if( zTemp ){ memcpy(zBuf, zTemp, nTemp); sqlite3_free(zTemp); }else{ assert( nTemp==0 ); } for(jj=0; jjpPhrase->nToken; jj++){ p->pPhrase->aToken[jj].z = zBuf; zBuf += p->pPhrase->aToken[jj].n; } rc = SQLITE_OK; } *ppExpr = p; return rc; no_mem: if( pCursor ){ pModule->xClose(pCursor); } sqlite3_free(zTemp); sqlite3_free(p); *ppExpr = 0; return SQLITE_NOMEM; } /* ** The output variable *ppExpr is populated with an allocated Fts3Expr ** structure, or set to 0 if the end of the input buffer is reached. ** ** Returns an SQLite error code. SQLITE_OK if everything works, SQLITE_NOMEM ** if a malloc failure occurs, or SQLITE_ERROR if a parse error is encountered. ** If SQLITE_ERROR is returned, pContext is populated with an error message. */ static int getNextNode( ParseContext *pParse, /* fts3 query parse context */ const char *z, int n, /* Input string */ Fts3Expr **ppExpr, /* OUT: expression */ int *pnConsumed /* OUT: Number of bytes consumed */ ){ static const struct Fts3Keyword { char *z; /* Keyword text */ unsigned char n; /* Length of the keyword */ unsigned char parenOnly; /* Only valid in paren mode */ unsigned char eType; /* Keyword code */ } aKeyword[] = { { "OR" , 2, 0, FTSQUERY_OR }, { "AND", 3, 1, FTSQUERY_AND }, { "NOT", 3, 1, FTSQUERY_NOT }, { "NEAR", 4, 0, FTSQUERY_NEAR } }; int ii; int iCol; int iColLen; int rc; Fts3Expr *pRet = 0; const char *zInput = z; int nInput = n; pParse->isNot = 0; /* Skip over any whitespace before checking for a keyword, an open or ** close bracket, or a quoted string. */ while( nInput>0 && fts3isspace(*zInput) ){ nInput--; zInput++; } if( nInput==0 ){ return SQLITE_DONE; } /* See if we are dealing with a keyword. */ for(ii=0; ii<(int)(sizeof(aKeyword)/sizeof(struct Fts3Keyword)); ii++){ const struct Fts3Keyword *pKey = &aKeyword[ii]; if( (pKey->parenOnly & ~sqlite3_fts3_enable_parentheses)!=0 ){ continue; } if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){ int nNear = SQLITE_FTS3_DEFAULT_NEAR_PARAM; int nKey = pKey->n; char cNext; /* If this is a "NEAR" keyword, check for an explicit nearness. */ if( pKey->eType==FTSQUERY_NEAR ){ assert( nKey==4 ); if( zInput[4]=='/' && zInput[5]>='0' && zInput[5]<='9' ){ nKey += 1+sqlite3Fts3ReadInt(&zInput[nKey+1], &nNear); } } /* At this point this is probably a keyword. But for that to be true, ** the next byte must contain either whitespace, an open or close ** parenthesis, a quote character, or EOF. */ cNext = zInput[nKey]; if( fts3isspace(cNext) || cNext=='"' || cNext=='(' || cNext==')' || cNext==0 ){ pRet = (Fts3Expr *)sqlite3Fts3MallocZero(sizeof(Fts3Expr)); if( !pRet ){ return SQLITE_NOMEM; } pRet->eType = pKey->eType; pRet->nNear = nNear; *ppExpr = pRet; *pnConsumed = (int)((zInput - z) + nKey); return SQLITE_OK; } /* Turns out that wasn't a keyword after all. This happens if the ** user has supplied a token such as "ORacle". Continue. */ } } /* See if we are dealing with a quoted phrase. If this is the case, then ** search for the closing quote and pass the whole string to getNextString() ** for processing. This is easy to do, as fts3 has no syntax for escaping ** a quote character embedded in a string. */ if( *zInput=='"' ){ for(ii=1; iinNest++; #if !defined(SQLITE_MAX_EXPR_DEPTH) if( pParse->nNest>1000 ) return SQLITE_ERROR; #elif SQLITE_MAX_EXPR_DEPTH>0 if( pParse->nNest>SQLITE_MAX_EXPR_DEPTH ) return SQLITE_ERROR; #endif rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed); *pnConsumed = (int)(zInput - z) + 1 + nConsumed; return rc; }else if( *zInput==')' ){ pParse->nNest--; *pnConsumed = (int)((zInput - z) + 1); *ppExpr = 0; return SQLITE_DONE; } } /* If control flows to this point, this must be a regular token, or ** the end of the input. Read a regular token using the sqlite3_tokenizer ** interface. Before doing so, figure out if there is an explicit ** column specifier for the token. ** ** TODO: Strangely, it is not possible to associate a column specifier ** with a quoted phrase, only with a single token. Not sure if this was ** an implementation artifact or an intentional decision when fts3 was ** first implemented. Whichever it was, this module duplicates the ** limitation. */ iCol = pParse->iDefaultCol; iColLen = 0; for(ii=0; iinCol; ii++){ const char *zStr = pParse->azCol[ii]; int nStr = (int)strlen(zStr); if( nInput>nStr && zInput[nStr]==':' && sqlite3_strnicmp(zStr, zInput, nStr)==0 ){ iCol = ii; iColLen = (int)((zInput - z) + nStr + 1); break; } } rc = getNextToken(pParse, iCol, &z[iColLen], n-iColLen, ppExpr, pnConsumed); *pnConsumed += iColLen; return rc; } /* ** The argument is an Fts3Expr structure for a binary operator (any type ** except an FTSQUERY_PHRASE). Return an integer value representing the ** precedence of the operator. Lower values have a higher precedence (i.e. ** group more tightly). For example, in the C language, the == operator ** groups more tightly than ||, and would therefore have a higher precedence. ** ** When using the new fts3 query syntax (when SQLITE_ENABLE_FTS3_PARENTHESIS ** is defined), the order of the operators in precedence from highest to ** lowest is: ** ** NEAR ** NOT ** AND (including implicit ANDs) ** OR ** ** Note that when using the old query syntax, the OR operator has a higher ** precedence than the AND operator. */ static int opPrecedence(Fts3Expr *p){ assert( p->eType!=FTSQUERY_PHRASE ); if( sqlite3_fts3_enable_parentheses ){ return p->eType; }else if( p->eType==FTSQUERY_NEAR ){ return 1; }else if( p->eType==FTSQUERY_OR ){ return 2; } assert( p->eType==FTSQUERY_AND ); return 3; } /* ** Argument ppHead contains a pointer to the current head of a query ** expression tree being parsed. pPrev is the expression node most recently ** inserted into the tree. This function adds pNew, which is always a binary ** operator node, into the expression tree based on the relative precedence ** of pNew and the existing nodes of the tree. This may result in the head ** of the tree changing, in which case *ppHead is set to the new root node. */ static void insertBinaryOperator( Fts3Expr **ppHead, /* Pointer to the root node of a tree */ Fts3Expr *pPrev, /* Node most recently inserted into the tree */ Fts3Expr *pNew /* New binary node to insert into expression tree */ ){ Fts3Expr *pSplit = pPrev; while( pSplit->pParent && opPrecedence(pSplit->pParent)<=opPrecedence(pNew) ){ pSplit = pSplit->pParent; } if( pSplit->pParent ){ assert( pSplit->pParent->pRight==pSplit ); pSplit->pParent->pRight = pNew; pNew->pParent = pSplit->pParent; }else{ *ppHead = pNew; } pNew->pLeft = pSplit; pSplit->pParent = pNew; } /* ** Parse the fts3 query expression found in buffer z, length n. This function ** returns either when the end of the buffer is reached or an unmatched ** closing bracket - ')' - is encountered. ** ** If successful, SQLITE_OK is returned, *ppExpr is set to point to the ** parsed form of the expression and *pnConsumed is set to the number of ** bytes read from buffer z. Otherwise, *ppExpr is set to 0 and SQLITE_NOMEM ** (out of memory error) or SQLITE_ERROR (parse error) is returned. */ static int fts3ExprParse( ParseContext *pParse, /* fts3 query parse context */ const char *z, int n, /* Text of MATCH query */ Fts3Expr **ppExpr, /* OUT: Parsed query structure */ int *pnConsumed /* OUT: Number of bytes consumed */ ){ Fts3Expr *pRet = 0; Fts3Expr *pPrev = 0; Fts3Expr *pNotBranch = 0; /* Only used in legacy parse mode */ int nIn = n; const char *zIn = z; int rc = SQLITE_OK; int isRequirePhrase = 1; while( rc==SQLITE_OK ){ Fts3Expr *p = 0; int nByte = 0; rc = getNextNode(pParse, zIn, nIn, &p, &nByte); assert( nByte>0 || (rc!=SQLITE_OK && p==0) ); if( rc==SQLITE_OK ){ if( p ){ int isPhrase; if( !sqlite3_fts3_enable_parentheses && p->eType==FTSQUERY_PHRASE && pParse->isNot ){ /* Create an implicit NOT operator. */ Fts3Expr *pNot = sqlite3Fts3MallocZero(sizeof(Fts3Expr)); if( !pNot ){ sqlite3Fts3ExprFree(p); rc = SQLITE_NOMEM; goto exprparse_out; } pNot->eType = FTSQUERY_NOT; pNot->pRight = p; p->pParent = pNot; if( pNotBranch ){ pNot->pLeft = pNotBranch; pNotBranch->pParent = pNot; } pNotBranch = pNot; p = pPrev; }else{ int eType = p->eType; isPhrase = (eType==FTSQUERY_PHRASE || p->pLeft); /* The isRequirePhrase variable is set to true if a phrase or ** an expression contained in parenthesis is required. If a ** binary operator (AND, OR, NOT or NEAR) is encounted when ** isRequirePhrase is set, this is a syntax error. */ if( !isPhrase && isRequirePhrase ){ sqlite3Fts3ExprFree(p); rc = SQLITE_ERROR; goto exprparse_out; } if( isPhrase && !isRequirePhrase ){ /* Insert an implicit AND operator. */ Fts3Expr *pAnd; assert( pRet && pPrev ); pAnd = sqlite3Fts3MallocZero(sizeof(Fts3Expr)); if( !pAnd ){ sqlite3Fts3ExprFree(p); rc = SQLITE_NOMEM; goto exprparse_out; } pAnd->eType = FTSQUERY_AND; insertBinaryOperator(&pRet, pPrev, pAnd); pPrev = pAnd; } /* This test catches attempts to make either operand of a NEAR ** operator something other than a phrase. For example, either of ** the following: ** ** (bracketed expression) NEAR phrase ** phrase NEAR (bracketed expression) ** ** Return an error in either case. */ if( pPrev && ( (eType==FTSQUERY_NEAR && !isPhrase && pPrev->eType!=FTSQUERY_PHRASE) || (eType!=FTSQUERY_PHRASE && isPhrase && pPrev->eType==FTSQUERY_NEAR) )){ sqlite3Fts3ExprFree(p); rc = SQLITE_ERROR; goto exprparse_out; } if( isPhrase ){ if( pRet ){ assert( pPrev && pPrev->pLeft && pPrev->pRight==0 ); pPrev->pRight = p; p->pParent = pPrev; }else{ pRet = p; } }else{ insertBinaryOperator(&pRet, pPrev, p); } isRequirePhrase = !isPhrase; } pPrev = p; } assert( nByte>0 ); } assert( rc!=SQLITE_OK || (nByte>0 && nByte<=nIn) ); nIn -= nByte; zIn += nByte; } if( rc==SQLITE_DONE && pRet && isRequirePhrase ){ rc = SQLITE_ERROR; } if( rc==SQLITE_DONE ){ rc = SQLITE_OK; if( !sqlite3_fts3_enable_parentheses && pNotBranch ){ if( !pRet ){ rc = SQLITE_ERROR; }else{ Fts3Expr *pIter = pNotBranch; while( pIter->pLeft ){ pIter = pIter->pLeft; } pIter->pLeft = pRet; pRet->pParent = pIter; pRet = pNotBranch; } } } *pnConsumed = n - nIn; exprparse_out: if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(pRet); sqlite3Fts3ExprFree(pNotBranch); pRet = 0; } *ppExpr = pRet; return rc; } /* ** Return SQLITE_ERROR if the maximum depth of the expression tree passed ** as the only argument is more than nMaxDepth. */ static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){ int rc = SQLITE_OK; if( p ){ if( nMaxDepth<0 ){ rc = SQLITE_TOOBIG; }else{ rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1); if( rc==SQLITE_OK ){ rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1); } } } return rc; } /* ** This function attempts to transform the expression tree at (*pp) to ** an equivalent but more balanced form. The tree is modified in place. ** If successful, SQLITE_OK is returned and (*pp) set to point to the ** new root expression node. ** ** nMaxDepth is the maximum allowable depth of the balanced sub-tree. ** ** Otherwise, if an error occurs, an SQLite error code is returned and ** expression (*pp) freed. */ static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){ int rc = SQLITE_OK; /* Return code */ Fts3Expr *pRoot = *pp; /* Initial root node */ Fts3Expr *pFree = 0; /* List of free nodes. Linked by pParent. */ int eType = pRoot->eType; /* Type of node in this tree */ if( nMaxDepth==0 ){ rc = SQLITE_ERROR; } if( rc==SQLITE_OK ){ if( (eType==FTSQUERY_AND || eType==FTSQUERY_OR) ){ Fts3Expr **apLeaf; apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth); if( 0==apLeaf ){ rc = SQLITE_NOMEM; }else{ memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth); } if( rc==SQLITE_OK ){ int i; Fts3Expr *p; /* Set $p to point to the left-most leaf in the tree of eType nodes. */ for(p=pRoot; p->eType==eType; p=p->pLeft){ assert( p->pParent==0 || p->pParent->pLeft==p ); assert( p->pLeft && p->pRight ); } /* This loop runs once for each leaf in the tree of eType nodes. */ while( 1 ){ int iLvl; Fts3Expr *pParent = p->pParent; /* Current parent of p */ assert( pParent==0 || pParent->pLeft==p ); p->pParent = 0; if( pParent ){ pParent->pLeft = 0; }else{ pRoot = 0; } rc = fts3ExprBalance(&p, nMaxDepth-1); if( rc!=SQLITE_OK ) break; for(iLvl=0; p && iLvlpLeft = apLeaf[iLvl]; pFree->pRight = p; pFree->pLeft->pParent = pFree; pFree->pRight->pParent = pFree; p = pFree; pFree = pFree->pParent; p->pParent = 0; apLeaf[iLvl] = 0; } } if( p ){ sqlite3Fts3ExprFree(p); rc = SQLITE_TOOBIG; break; } /* If that was the last leaf node, break out of the loop */ if( pParent==0 ) break; /* Set $p to point to the next leaf in the tree of eType nodes */ for(p=pParent->pRight; p->eType==eType; p=p->pLeft); /* Remove pParent from the original tree. */ assert( pParent->pParent==0 || pParent->pParent->pLeft==pParent ); pParent->pRight->pParent = pParent->pParent; if( pParent->pParent ){ pParent->pParent->pLeft = pParent->pRight; }else{ assert( pParent==pRoot ); pRoot = pParent->pRight; } /* Link pParent into the free node list. It will be used as an ** internal node of the new tree. */ pParent->pParent = pFree; pFree = pParent; } if( rc==SQLITE_OK ){ p = 0; for(i=0; ipParent = 0; }else{ assert( pFree!=0 ); pFree->pRight = p; pFree->pLeft = apLeaf[i]; pFree->pLeft->pParent = pFree; pFree->pRight->pParent = pFree; p = pFree; pFree = pFree->pParent; p->pParent = 0; } } } pRoot = p; }else{ /* An error occurred. Delete the contents of the apLeaf[] array ** and pFree list. Everything else is cleaned up by the call to ** sqlite3Fts3ExprFree(pRoot) below. */ Fts3Expr *pDel; for(i=0; ipParent; sqlite3_free(pDel); } } assert( pFree==0 ); sqlite3_free( apLeaf ); } }else if( eType==FTSQUERY_NOT ){ Fts3Expr *pLeft = pRoot->pLeft; Fts3Expr *pRight = pRoot->pRight; pRoot->pLeft = 0; pRoot->pRight = 0; pLeft->pParent = 0; pRight->pParent = 0; rc = fts3ExprBalance(&pLeft, nMaxDepth-1); if( rc==SQLITE_OK ){ rc = fts3ExprBalance(&pRight, nMaxDepth-1); } if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(pRight); sqlite3Fts3ExprFree(pLeft); }else{ assert( pLeft && pRight ); pRoot->pLeft = pLeft; pLeft->pParent = pRoot; pRoot->pRight = pRight; pRight->pParent = pRoot; } } } if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(pRoot); pRoot = 0; } *pp = pRoot; return rc; } /* ** This function is similar to sqlite3Fts3ExprParse(), with the following ** differences: ** ** 1. It does not do expression rebalancing. ** 2. It does not check that the expression does not exceed the ** maximum allowable depth. ** 3. Even if it fails, *ppExpr may still be set to point to an ** expression tree. It should be deleted using sqlite3Fts3ExprFree() ** in this case. */ static int fts3ExprParseUnbalanced( sqlite3_tokenizer *pTokenizer, /* Tokenizer module */ int iLangid, /* Language id for tokenizer */ char **azCol, /* Array of column names for fts3 table */ int bFts4, /* True to allow FTS4-only syntax */ int nCol, /* Number of entries in azCol[] */ int iDefaultCol, /* Default column to query */ const char *z, int n, /* Text of MATCH query */ Fts3Expr **ppExpr /* OUT: Parsed query structure */ ){ int nParsed; int rc; ParseContext sParse; memset(&sParse, 0, sizeof(ParseContext)); sParse.pTokenizer = pTokenizer; sParse.iLangid = iLangid; sParse.azCol = (const char **)azCol; sParse.nCol = nCol; sParse.iDefaultCol = iDefaultCol; sParse.bFts4 = bFts4; if( z==0 ){ *ppExpr = 0; return SQLITE_OK; } if( n<0 ){ n = (int)strlen(z); } rc = fts3ExprParse(&sParse, z, n, ppExpr, &nParsed); assert( rc==SQLITE_OK || *ppExpr==0 ); /* Check for mismatched parenthesis */ if( rc==SQLITE_OK && sParse.nNest ){ rc = SQLITE_ERROR; } return rc; } /* ** Parameters z and n contain a pointer to and length of a buffer containing ** an fts3 query expression, respectively. This function attempts to parse the ** query expression and create a tree of Fts3Expr structures representing the ** parsed expression. If successful, *ppExpr is set to point to the head ** of the parsed expression tree and SQLITE_OK is returned. If an error ** occurs, either SQLITE_NOMEM (out-of-memory error) or SQLITE_ERROR (parse ** error) is returned and *ppExpr is set to 0. ** ** If parameter n is a negative number, then z is assumed to point to a ** nul-terminated string and the length is determined using strlen(). ** ** The first parameter, pTokenizer, is passed the fts3 tokenizer module to ** use to normalize query tokens while parsing the expression. The azCol[] ** array, which is assumed to contain nCol entries, should contain the names ** of each column in the target fts3 table, in order from left to right. ** Column names must be nul-terminated strings. ** ** The iDefaultCol parameter should be passed the index of the table column ** that appears on the left-hand-side of the MATCH operator (the default ** column to match against for tokens for which a column name is not explicitly ** specified as part of the query string), or -1 if tokens may by default ** match any table column. */ SQLITE_PRIVATE int sqlite3Fts3ExprParse( sqlite3_tokenizer *pTokenizer, /* Tokenizer module */ int iLangid, /* Language id for tokenizer */ char **azCol, /* Array of column names for fts3 table */ int bFts4, /* True to allow FTS4-only syntax */ int nCol, /* Number of entries in azCol[] */ int iDefaultCol, /* Default column to query */ const char *z, int n, /* Text of MATCH query */ Fts3Expr **ppExpr, /* OUT: Parsed query structure */ char **pzErr /* OUT: Error message (sqlite3_malloc) */ ){ int rc = fts3ExprParseUnbalanced( pTokenizer, iLangid, azCol, bFts4, nCol, iDefaultCol, z, n, ppExpr ); /* Rebalance the expression. And check that its depth does not exceed ** SQLITE_FTS3_MAX_EXPR_DEPTH. */ if( rc==SQLITE_OK && *ppExpr ){ rc = fts3ExprBalance(ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); if( rc==SQLITE_OK ){ rc = fts3ExprCheckDepth(*ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); } } if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(*ppExpr); *ppExpr = 0; if( rc==SQLITE_TOOBIG ){ sqlite3Fts3ErrMsg(pzErr, "FTS expression tree is too large (maximum depth %d)", SQLITE_FTS3_MAX_EXPR_DEPTH ); rc = SQLITE_ERROR; }else if( rc==SQLITE_ERROR ){ sqlite3Fts3ErrMsg(pzErr, "malformed MATCH expression: [%s]", z); } } return rc; } /* ** Free a single node of an expression tree. */ static void fts3FreeExprNode(Fts3Expr *p){ assert( p->eType==FTSQUERY_PHRASE || p->pPhrase==0 ); sqlite3Fts3EvalPhraseCleanup(p->pPhrase); sqlite3_free(p->aMI); sqlite3_free(p); } /* ** Free a parsed fts3 query expression allocated by sqlite3Fts3ExprParse(). ** ** This function would be simpler if it recursively called itself. But ** that would mean passing a sufficiently large expression to ExprParse() ** could cause a stack overflow. */ SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *pDel){ Fts3Expr *p; assert( pDel==0 || pDel->pParent==0 ); for(p=pDel; p && (p->pLeft||p->pRight); p=(p->pLeft ? p->pLeft : p->pRight)){ assert( p->pParent==0 || p==p->pParent->pRight || p==p->pParent->pLeft ); } while( p ){ Fts3Expr *pParent = p->pParent; fts3FreeExprNode(p); if( pParent && p==pParent->pLeft && pParent->pRight ){ p = pParent->pRight; while( p && (p->pLeft || p->pRight) ){ assert( p==p->pParent->pRight || p==p->pParent->pLeft ); p = (p->pLeft ? p->pLeft : p->pRight); } }else{ p = pParent; } } } /**************************************************************************** ***************************************************************************** ** Everything after this point is just test code. */ #ifdef SQLITE_TEST /* #include */ /* ** Return a pointer to a buffer containing a text representation of the ** expression passed as the first argument. The buffer is obtained from ** sqlite3_malloc(). It is the responsibility of the caller to use ** sqlite3_free() to release the memory. If an OOM condition is encountered, ** NULL is returned. ** ** If the second argument is not NULL, then its contents are prepended to ** the returned expression text and then freed using sqlite3_free(). */ static char *exprToString(Fts3Expr *pExpr, char *zBuf){ if( pExpr==0 ){ return sqlite3_mprintf(""); } switch( pExpr->eType ){ case FTSQUERY_PHRASE: { Fts3Phrase *pPhrase = pExpr->pPhrase; int i; zBuf = sqlite3_mprintf( "%zPHRASE %d 0", zBuf, pPhrase->iColumn); for(i=0; zBuf && inToken; i++){ zBuf = sqlite3_mprintf("%z %.*s%s", zBuf, pPhrase->aToken[i].n, pPhrase->aToken[i].z, (pPhrase->aToken[i].isPrefix?"+":"") ); } return zBuf; } case FTSQUERY_NEAR: zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear); break; case FTSQUERY_NOT: zBuf = sqlite3_mprintf("%zNOT ", zBuf); break; case FTSQUERY_AND: zBuf = sqlite3_mprintf("%zAND ", zBuf); break; case FTSQUERY_OR: zBuf = sqlite3_mprintf("%zOR ", zBuf); break; } if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf); if( zBuf ) zBuf = exprToString(pExpr->pLeft, zBuf); if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf); if( zBuf ) zBuf = exprToString(pExpr->pRight, zBuf); if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf); return zBuf; } /* ** This is the implementation of a scalar SQL function used to test the ** expression parser. It should be called as follows: ** ** fts3_exprtest(, , , ...); ** ** The first argument, , is the name of the fts3 tokenizer used ** to parse the query expression (see README.tokenizers). The second argument ** is the query expression to parse. Each subsequent argument is the name ** of a column of the fts3 table that the query expression may refer to. ** For example: ** ** SELECT fts3_exprtest('simple', 'Bill col2:Bloggs', 'col1', 'col2'); */ static void fts3ExprTestCommon( int bRebalance, sqlite3_context *context, int argc, sqlite3_value **argv ){ sqlite3_tokenizer *pTokenizer = 0; int rc; char **azCol = 0; const char *zExpr; int nExpr; int nCol; int ii; Fts3Expr *pExpr; char *zBuf = 0; Fts3Hash *pHash = (Fts3Hash*)sqlite3_user_data(context); const char *zTokenizer = 0; char *zErr = 0; if( argc<3 ){ sqlite3_result_error(context, "Usage: fts3_exprtest(tokenizer, expr, col1, ...", -1 ); return; } zTokenizer = (const char*)sqlite3_value_text(argv[0]); rc = sqlite3Fts3InitTokenizer(pHash, zTokenizer, &pTokenizer, &zErr); if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_error(context, zErr, -1); } sqlite3_free(zErr); return; } zExpr = (const char *)sqlite3_value_text(argv[1]); nExpr = sqlite3_value_bytes(argv[1]); nCol = argc-2; azCol = (char **)sqlite3_malloc64(nCol*sizeof(char *)); if( !azCol ){ sqlite3_result_error_nomem(context); goto exprtest_out; } for(ii=0; iipModule->xDestroy(pTokenizer); } sqlite3_free(azCol); } static void fts3ExprTest( sqlite3_context *context, int argc, sqlite3_value **argv ){ fts3ExprTestCommon(0, context, argc, argv); } static void fts3ExprTestRebalance( sqlite3_context *context, int argc, sqlite3_value **argv ){ fts3ExprTestCommon(1, context, argc, argv); } /* ** Register the query expression parser test function fts3_exprtest() ** with database connection db. */ SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3 *db, Fts3Hash *pHash){ int rc = sqlite3_create_function( db, "fts3_exprtest", -1, SQLITE_UTF8, (void*)pHash, fts3ExprTest, 0, 0 ); if( rc==SQLITE_OK ){ rc = sqlite3_create_function(db, "fts3_exprtest_rebalance", -1, SQLITE_UTF8, (void*)pHash, fts3ExprTestRebalance, 0, 0 ); } return rc; } #endif #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_expr.c *******************************************/ /************** Begin file fts3_hash.c ***************************************/ /* ** 2001 September 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the implementation of generic hash-tables used in SQLite. ** We've modified it slightly to serve as a standalone hash table ** implementation for the full-text indexing module. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include "fts3_hash.h" */ /* ** Malloc and Free functions */ static void *fts3HashMalloc(sqlite3_int64 n){ void *p = sqlite3_malloc64(n); if( p ){ memset(p, 0, n); } return p; } static void fts3HashFree(void *p){ sqlite3_free(p); } /* Turn bulk memory into a hash table object by initializing the ** fields of the Hash structure. ** ** "pNew" is a pointer to the hash table that is to be initialized. ** keyClass is one of the constants ** FTS3_HASH_BINARY or FTS3_HASH_STRING. The value of keyClass ** determines what kind of key the hash table will use. "copyKey" is ** true if the hash table should make its own private copy of keys and ** false if it should just use the supplied pointer. */ SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey){ assert( pNew!=0 ); assert( keyClass>=FTS3_HASH_STRING && keyClass<=FTS3_HASH_BINARY ); pNew->keyClass = keyClass; pNew->copyKey = copyKey; pNew->first = 0; pNew->count = 0; pNew->htsize = 0; pNew->ht = 0; } /* Remove all entries from a hash table. Reclaim all memory. ** Call this routine to delete a hash table or to reset a hash table ** to the empty state. */ SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash *pH){ Fts3HashElem *elem; /* For looping over all elements of the table */ assert( pH!=0 ); elem = pH->first; pH->first = 0; fts3HashFree(pH->ht); pH->ht = 0; pH->htsize = 0; while( elem ){ Fts3HashElem *next_elem = elem->next; if( pH->copyKey && elem->pKey ){ fts3HashFree(elem->pKey); } fts3HashFree(elem); elem = next_elem; } pH->count = 0; } /* ** Hash and comparison functions when the mode is FTS3_HASH_STRING */ static int fts3StrHash(const void *pKey, int nKey){ const char *z = (const char *)pKey; unsigned h = 0; if( nKey<=0 ) nKey = (int) strlen(z); while( nKey > 0 ){ h = (h<<3) ^ h ^ *z++; nKey--; } return (int)(h & 0x7fffffff); } static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){ if( n1!=n2 ) return 1; return strncmp((const char*)pKey1,(const char*)pKey2,n1); } /* ** Hash and comparison functions when the mode is FTS3_HASH_BINARY */ static int fts3BinHash(const void *pKey, int nKey){ int h = 0; const char *z = (const char *)pKey; while( nKey-- > 0 ){ h = (h<<3) ^ h ^ *(z++); } return h & 0x7fffffff; } static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){ if( n1!=n2 ) return 1; return memcmp(pKey1,pKey2,n1); } /* ** Return a pointer to the appropriate hash function given the key class. ** ** The C syntax in this function definition may be unfamilar to some ** programmers, so we provide the following additional explanation: ** ** The name of the function is "ftsHashFunction". The function takes a ** single parameter "keyClass". The return value of ftsHashFunction() ** is a pointer to another function. Specifically, the return value ** of ftsHashFunction() is a pointer to a function that takes two parameters ** with types "const void*" and "int" and returns an "int". */ static int (*ftsHashFunction(int keyClass))(const void*,int){ if( keyClass==FTS3_HASH_STRING ){ return &fts3StrHash; }else{ assert( keyClass==FTS3_HASH_BINARY ); return &fts3BinHash; } } /* ** Return a pointer to the appropriate hash function given the key class. ** ** For help in interpreted the obscure C code in the function definition, ** see the header comment on the previous function. */ static int (*ftsCompareFunction(int keyClass))(const void*,int,const void*,int){ if( keyClass==FTS3_HASH_STRING ){ return &fts3StrCompare; }else{ assert( keyClass==FTS3_HASH_BINARY ); return &fts3BinCompare; } } /* Link an element into the hash table */ static void fts3HashInsertElement( Fts3Hash *pH, /* The complete hash table */ struct _fts3ht *pEntry, /* The entry into which pNew is inserted */ Fts3HashElem *pNew /* The element to be inserted */ ){ Fts3HashElem *pHead; /* First element already in pEntry */ pHead = pEntry->chain; if( pHead ){ pNew->next = pHead; pNew->prev = pHead->prev; if( pHead->prev ){ pHead->prev->next = pNew; } else { pH->first = pNew; } pHead->prev = pNew; }else{ pNew->next = pH->first; if( pH->first ){ pH->first->prev = pNew; } pNew->prev = 0; pH->first = pNew; } pEntry->count++; pEntry->chain = pNew; } /* Resize the hash table so that it cantains "new_size" buckets. ** "new_size" must be a power of 2. The hash table might fail ** to resize if sqliteMalloc() fails. ** ** Return non-zero if a memory allocation error occurs. */ static int fts3Rehash(Fts3Hash *pH, int new_size){ struct _fts3ht *new_ht; /* The new hash table */ Fts3HashElem *elem, *next_elem; /* For looping over existing elements */ int (*xHash)(const void*,int); /* The hash function */ assert( (new_size & (new_size-1))==0 ); new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) ); if( new_ht==0 ) return 1; fts3HashFree(pH->ht); pH->ht = new_ht; pH->htsize = new_size; xHash = ftsHashFunction(pH->keyClass); for(elem=pH->first, pH->first=0; elem; elem = next_elem){ int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); next_elem = elem->next; fts3HashInsertElement(pH, &new_ht[h], elem); } return 0; } /* This function (for internal use only) locates an element in an ** hash table that matches the given key. The hash for this key has ** already been computed and is passed as the 4th parameter. */ static Fts3HashElem *fts3FindElementByHash( const Fts3Hash *pH, /* The pH to be searched */ const void *pKey, /* The key we are searching for */ int nKey, int h /* The hash for this key. */ ){ Fts3HashElem *elem; /* Used to loop thru the element list */ int count; /* Number of elements left to test */ int (*xCompare)(const void*,int,const void*,int); /* comparison function */ if( pH->ht ){ struct _fts3ht *pEntry = &pH->ht[h]; elem = pEntry->chain; count = pEntry->count; xCompare = ftsCompareFunction(pH->keyClass); while( count-- && elem ){ if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ return elem; } elem = elem->next; } } return 0; } /* Remove a single entry from the hash table given a pointer to that ** element and a hash on the element's key. */ static void fts3RemoveElementByHash( Fts3Hash *pH, /* The pH containing "elem" */ Fts3HashElem* elem, /* The element to be removed from the pH */ int h /* Hash value for the element */ ){ struct _fts3ht *pEntry; if( elem->prev ){ elem->prev->next = elem->next; }else{ pH->first = elem->next; } if( elem->next ){ elem->next->prev = elem->prev; } pEntry = &pH->ht[h]; if( pEntry->chain==elem ){ pEntry->chain = elem->next; } pEntry->count--; if( pEntry->count<=0 ){ pEntry->chain = 0; } if( pH->copyKey && elem->pKey ){ fts3HashFree(elem->pKey); } fts3HashFree( elem ); pH->count--; if( pH->count<=0 ){ assert( pH->first==0 ); assert( pH->count==0 ); fts3HashClear(pH); } } SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem( const Fts3Hash *pH, const void *pKey, int nKey ){ int h; /* A hash on key */ int (*xHash)(const void*,int); /* The hash function */ if( pH==0 || pH->ht==0 ) return 0; xHash = ftsHashFunction(pH->keyClass); assert( xHash!=0 ); h = (*xHash)(pKey,nKey); assert( (pH->htsize & (pH->htsize-1))==0 ); return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1)); } /* ** Attempt to locate an element of the hash table pH with a key ** that matches pKey,nKey. Return the data for this element if it is ** found, or NULL if there is no match. */ SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash *pH, const void *pKey, int nKey){ Fts3HashElem *pElem; /* The element that matches key (if any) */ pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey); return pElem ? pElem->data : 0; } /* Insert an element into the hash table pH. The key is pKey,nKey ** and the data is "data". ** ** If no element exists with a matching key, then a new ** element is created. A copy of the key is made if the copyKey ** flag is set. NULL is returned. ** ** If another element already exists with the same key, then the ** new data replaces the old data and the old data is returned. ** The key is not copied in this instance. If a malloc fails, then ** the new data is returned and the hash table is unchanged. ** ** If the "data" parameter to this function is NULL, then the ** element corresponding to "key" is removed from the hash table. */ SQLITE_PRIVATE void *sqlite3Fts3HashInsert( Fts3Hash *pH, /* The hash table to insert into */ const void *pKey, /* The key */ int nKey, /* Number of bytes in the key */ void *data /* The data */ ){ int hraw; /* Raw hash value of the key */ int h; /* the hash of the key modulo hash table size */ Fts3HashElem *elem; /* Used to loop thru the element list */ Fts3HashElem *new_elem; /* New element added to the pH */ int (*xHash)(const void*,int); /* The hash function */ assert( pH!=0 ); xHash = ftsHashFunction(pH->keyClass); assert( xHash!=0 ); hraw = (*xHash)(pKey, nKey); assert( (pH->htsize & (pH->htsize-1))==0 ); h = hraw & (pH->htsize-1); elem = fts3FindElementByHash(pH,pKey,nKey,h); if( elem ){ void *old_data = elem->data; if( data==0 ){ fts3RemoveElementByHash(pH,elem,h); }else{ elem->data = data; } return old_data; } if( data==0 ) return 0; if( (pH->htsize==0 && fts3Rehash(pH,8)) || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2)) ){ pH->count = 0; return data; } assert( pH->htsize>0 ); new_elem = (Fts3HashElem*)fts3HashMalloc( sizeof(Fts3HashElem) ); if( new_elem==0 ) return data; if( pH->copyKey && pKey!=0 ){ new_elem->pKey = fts3HashMalloc( nKey ); if( new_elem->pKey==0 ){ fts3HashFree(new_elem); return data; } memcpy((void*)new_elem->pKey, pKey, nKey); }else{ new_elem->pKey = (void*)pKey; } new_elem->nKey = nKey; pH->count++; assert( pH->htsize>0 ); assert( (pH->htsize & (pH->htsize-1))==0 ); h = hraw & (pH->htsize-1); fts3HashInsertElement(pH, &pH->ht[h], new_elem); new_elem->data = data; return 0; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_hash.c *******************************************/ /************** Begin file fts3_porter.c *************************************/ /* ** 2006 September 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Implementation of the full-text-search tokenizer that implements ** a Porter stemmer. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ /* ** Class derived from sqlite3_tokenizer */ typedef struct porter_tokenizer { sqlite3_tokenizer base; /* Base class */ } porter_tokenizer; /* ** Class derived from sqlite3_tokenizer_cursor */ typedef struct porter_tokenizer_cursor { sqlite3_tokenizer_cursor base; const char *zInput; /* input we are tokenizing */ int nInput; /* size of the input */ int iOffset; /* current position in zInput */ int iToken; /* index of next token to be returned */ char *zToken; /* storage for current token */ int nAllocated; /* space allocated to zToken buffer */ } porter_tokenizer_cursor; /* ** Create a new tokenizer instance. */ static int porterCreate( int argc, const char * const *argv, sqlite3_tokenizer **ppTokenizer ){ porter_tokenizer *t; UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t)); if( t==NULL ) return SQLITE_NOMEM; memset(t, 0, sizeof(*t)); *ppTokenizer = &t->base; return SQLITE_OK; } /* ** Destroy a tokenizer */ static int porterDestroy(sqlite3_tokenizer *pTokenizer){ sqlite3_free(pTokenizer); return SQLITE_OK; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is zInput[0..nInput-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int porterOpen( sqlite3_tokenizer *pTokenizer, /* The tokenizer */ const char *zInput, int nInput, /* String to be tokenized */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ ){ porter_tokenizer_cursor *c; UNUSED_PARAMETER(pTokenizer); c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); if( c==NULL ) return SQLITE_NOMEM; c->zInput = zInput; if( zInput==0 ){ c->nInput = 0; }else if( nInput<0 ){ c->nInput = (int)strlen(zInput); }else{ c->nInput = nInput; } c->iOffset = 0; /* start tokenizing at the beginning */ c->iToken = 0; c->zToken = NULL; /* no space allocated, yet. */ c->nAllocated = 0; *ppCursor = &c->base; return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to ** porterOpen() above. */ static int porterClose(sqlite3_tokenizer_cursor *pCursor){ porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; sqlite3_free(c->zToken); sqlite3_free(c); return SQLITE_OK; } /* ** Vowel or consonant */ static const char cType[] = { 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1 }; /* ** isConsonant() and isVowel() determine if their first character in ** the string they point to is a consonant or a vowel, according ** to Porter ruls. ** ** A consonate is any letter other than 'a', 'e', 'i', 'o', or 'u'. ** 'Y' is a consonant unless it follows another consonant, ** in which case it is a vowel. ** ** In these routine, the letters are in reverse order. So the 'y' rule ** is that 'y' is a consonant unless it is followed by another ** consonent. */ static int isVowel(const char*); static int isConsonant(const char *z){ int j; char x = *z; if( x==0 ) return 0; assert( x>='a' && x<='z' ); j = cType[x-'a']; if( j<2 ) return j; return z[1]==0 || isVowel(z + 1); } static int isVowel(const char *z){ int j; char x = *z; if( x==0 ) return 0; assert( x>='a' && x<='z' ); j = cType[x-'a']; if( j<2 ) return 1-j; return isConsonant(z + 1); } /* ** Let any sequence of one or more vowels be represented by V and let ** C be sequence of one or more consonants. Then every word can be ** represented as: ** ** [C] (VC){m} [V] ** ** In prose: A word is an optional consonant followed by zero or ** vowel-consonant pairs followed by an optional vowel. "m" is the ** number of vowel consonant pairs. This routine computes the value ** of m for the first i bytes of a word. ** ** Return true if the m-value for z is 1 or more. In other words, ** return true if z contains at least one vowel that is followed ** by a consonant. ** ** In this routine z[] is in reverse order. So we are really looking ** for an instance of a consonant followed by a vowel. */ static int m_gt_0(const char *z){ while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } return *z!=0; } /* Like mgt0 above except we are looking for a value of m which is ** exactly 1 */ static int m_eq_1(const char *z){ while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } if( *z==0 ) return 0; while( isVowel(z) ){ z++; } if( *z==0 ) return 1; while( isConsonant(z) ){ z++; } return *z==0; } /* Like mgt0 above except we are looking for a value of m>1 instead ** or m>0 */ static int m_gt_1(const char *z){ while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } if( *z==0 ) return 0; while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } return *z!=0; } /* ** Return TRUE if there is a vowel anywhere within z[0..n-1] */ static int hasVowel(const char *z){ while( isConsonant(z) ){ z++; } return *z!=0; } /* ** Return TRUE if the word ends in a double consonant. ** ** The text is reversed here. So we are really looking at ** the first two characters of z[]. */ static int doubleConsonant(const char *z){ return isConsonant(z) && z[0]==z[1]; } /* ** Return TRUE if the word ends with three letters which ** are consonant-vowel-consonent and where the final consonant ** is not 'w', 'x', or 'y'. ** ** The word is reversed here. So we are really checking the ** first three letters and the first one cannot be in [wxy]. */ static int star_oh(const char *z){ return isConsonant(z) && z[0]!='w' && z[0]!='x' && z[0]!='y' && isVowel(z+1) && isConsonant(z+2); } /* ** If the word ends with zFrom and xCond() is true for the stem ** of the word that preceeds the zFrom ending, then change the ** ending to zTo. ** ** The input word *pz and zFrom are both in reverse order. zTo ** is in normal order. ** ** Return TRUE if zFrom matches. Return FALSE if zFrom does not ** match. Not that TRUE is returned even if xCond() fails and ** no substitution occurs. */ static int stem( char **pz, /* The word being stemmed (Reversed) */ const char *zFrom, /* If the ending matches this... (Reversed) */ const char *zTo, /* ... change the ending to this (not reversed) */ int (*xCond)(const char*) /* Condition that must be true */ ){ char *z = *pz; while( *zFrom && *zFrom==*z ){ z++; zFrom++; } if( *zFrom!=0 ) return 0; if( xCond && !xCond(z) ) return 1; while( *zTo ){ *(--z) = *(zTo++); } *pz = z; return 1; } /* ** This is the fallback stemmer used when the porter stemmer is ** inappropriate. The input word is copied into the output with ** US-ASCII case folding. If the input word is too long (more ** than 20 bytes if it contains no digits or more than 6 bytes if ** it contains digits) then word is truncated to 20 or 6 bytes ** by taking 10 or 3 bytes from the beginning and end. */ static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ int i, mx, j; int hasDigit = 0; for(i=0; i='A' && c<='Z' ){ zOut[i] = c - 'A' + 'a'; }else{ if( c>='0' && c<='9' ) hasDigit = 1; zOut[i] = c; } } mx = hasDigit ? 3 : 10; if( nIn>mx*2 ){ for(j=mx, i=nIn-mx; i=(int)sizeof(zReverse)-7 ){ /* The word is too big or too small for the porter stemmer. ** Fallback to the copy stemmer */ copy_stemmer(zIn, nIn, zOut, pnOut); return; } for(i=0, j=sizeof(zReverse)-6; i='A' && c<='Z' ){ zReverse[j] = c + 'a' - 'A'; }else if( c>='a' && c<='z' ){ zReverse[j] = c; }else{ /* The use of a character not in [a-zA-Z] means that we fallback ** to the copy stemmer */ copy_stemmer(zIn, nIn, zOut, pnOut); return; } } memset(&zReverse[sizeof(zReverse)-5], 0, 5); z = &zReverse[j+1]; /* Step 1a */ if( z[0]=='s' ){ if( !stem(&z, "sess", "ss", 0) && !stem(&z, "sei", "i", 0) && !stem(&z, "ss", "ss", 0) ){ z++; } } /* Step 1b */ z2 = z; if( stem(&z, "dee", "ee", m_gt_0) ){ /* Do nothing. The work was all in the test */ }else if( (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel)) && z!=z2 ){ if( stem(&z, "ta", "ate", 0) || stem(&z, "lb", "ble", 0) || stem(&z, "zi", "ize", 0) ){ /* Do nothing. The work was all in the test */ }else if( doubleConsonant(z) && (*z!='l' && *z!='s' && *z!='z') ){ z++; }else if( m_eq_1(z) && star_oh(z) ){ *(--z) = 'e'; } } /* Step 1c */ if( z[0]=='y' && hasVowel(z+1) ){ z[0] = 'i'; } /* Step 2 */ switch( z[1] ){ case 'a': if( !stem(&z, "lanoita", "ate", m_gt_0) ){ stem(&z, "lanoit", "tion", m_gt_0); } break; case 'c': if( !stem(&z, "icne", "ence", m_gt_0) ){ stem(&z, "icna", "ance", m_gt_0); } break; case 'e': stem(&z, "rezi", "ize", m_gt_0); break; case 'g': stem(&z, "igol", "log", m_gt_0); break; case 'l': if( !stem(&z, "ilb", "ble", m_gt_0) && !stem(&z, "illa", "al", m_gt_0) && !stem(&z, "iltne", "ent", m_gt_0) && !stem(&z, "ile", "e", m_gt_0) ){ stem(&z, "ilsuo", "ous", m_gt_0); } break; case 'o': if( !stem(&z, "noitazi", "ize", m_gt_0) && !stem(&z, "noita", "ate", m_gt_0) ){ stem(&z, "rota", "ate", m_gt_0); } break; case 's': if( !stem(&z, "msila", "al", m_gt_0) && !stem(&z, "ssenevi", "ive", m_gt_0) && !stem(&z, "ssenluf", "ful", m_gt_0) ){ stem(&z, "ssensuo", "ous", m_gt_0); } break; case 't': if( !stem(&z, "itila", "al", m_gt_0) && !stem(&z, "itivi", "ive", m_gt_0) ){ stem(&z, "itilib", "ble", m_gt_0); } break; } /* Step 3 */ switch( z[0] ){ case 'e': if( !stem(&z, "etaci", "ic", m_gt_0) && !stem(&z, "evita", "", m_gt_0) ){ stem(&z, "ezila", "al", m_gt_0); } break; case 'i': stem(&z, "itici", "ic", m_gt_0); break; case 'l': if( !stem(&z, "laci", "ic", m_gt_0) ){ stem(&z, "luf", "", m_gt_0); } break; case 's': stem(&z, "ssen", "", m_gt_0); break; } /* Step 4 */ switch( z[1] ){ case 'a': if( z[0]=='l' && m_gt_1(z+2) ){ z += 2; } break; case 'c': if( z[0]=='e' && z[2]=='n' && (z[3]=='a' || z[3]=='e') && m_gt_1(z+4) ){ z += 4; } break; case 'e': if( z[0]=='r' && m_gt_1(z+2) ){ z += 2; } break; case 'i': if( z[0]=='c' && m_gt_1(z+2) ){ z += 2; } break; case 'l': if( z[0]=='e' && z[2]=='b' && (z[3]=='a' || z[3]=='i') && m_gt_1(z+4) ){ z += 4; } break; case 'n': if( z[0]=='t' ){ if( z[2]=='a' ){ if( m_gt_1(z+3) ){ z += 3; } }else if( z[2]=='e' ){ if( !stem(&z, "tneme", "", m_gt_1) && !stem(&z, "tnem", "", m_gt_1) ){ stem(&z, "tne", "", m_gt_1); } } } break; case 'o': if( z[0]=='u' ){ if( m_gt_1(z+2) ){ z += 2; } }else if( z[3]=='s' || z[3]=='t' ){ stem(&z, "noi", "", m_gt_1); } break; case 's': if( z[0]=='m' && z[2]=='i' && m_gt_1(z+3) ){ z += 3; } break; case 't': if( !stem(&z, "eta", "", m_gt_1) ){ stem(&z, "iti", "", m_gt_1); } break; case 'u': if( z[0]=='s' && z[2]=='o' && m_gt_1(z+3) ){ z += 3; } break; case 'v': case 'z': if( z[0]=='e' && z[2]=='i' && m_gt_1(z+3) ){ z += 3; } break; } /* Step 5a */ if( z[0]=='e' ){ if( m_gt_1(z+1) ){ z++; }else if( m_eq_1(z+1) && !star_oh(z+1) ){ z++; } } /* Step 5b */ if( m_gt_1(z) && z[0]=='l' && z[1]=='l' ){ z++; } /* z[] is now the stemmed word in reverse order. Flip it back ** around into forward order and return. */ *pnOut = i = (int)strlen(z); zOut[i] = 0; while( *z ){ zOut[--i] = *(z++); } } /* ** Characters that can be part of a token. We assume any character ** whose value is greater than 0x80 (any UTF character) can be ** part of a token. In other words, delimiters all must have ** values of 0x7f or lower. */ static const char porterIdChar[] = { /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */ }; #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) /* ** Extract the next token from a tokenization cursor. The cursor must ** have been opened by a prior call to porterOpen(). */ static int porterNext( sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by porterOpen */ const char **pzToken, /* OUT: *pzToken is the token text */ int *pnBytes, /* OUT: Number of bytes in token */ int *piStartOffset, /* OUT: Starting offset of token */ int *piEndOffset, /* OUT: Ending offset of token */ int *piPosition /* OUT: Position integer of token */ ){ porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; const char *z = c->zInput; while( c->iOffsetnInput ){ int iStartOffset, ch; /* Scan past delimiter characters */ while( c->iOffsetnInput && isDelim(z[c->iOffset]) ){ c->iOffset++; } /* Count non-delimiter characters. */ iStartOffset = c->iOffset; while( c->iOffsetnInput && !isDelim(z[c->iOffset]) ){ c->iOffset++; } if( c->iOffset>iStartOffset ){ int n = c->iOffset-iStartOffset; if( n>c->nAllocated ){ char *pNew; c->nAllocated = n+20; pNew = sqlite3_realloc(c->zToken, c->nAllocated); if( !pNew ) return SQLITE_NOMEM; c->zToken = pNew; } porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); *pzToken = c->zToken; *piStartOffset = iStartOffset; *piEndOffset = c->iOffset; *piPosition = c->iToken++; return SQLITE_OK; } } return SQLITE_DONE; } /* ** The set of routines that implement the porter-stemmer tokenizer */ static const sqlite3_tokenizer_module porterTokenizerModule = { 0, porterCreate, porterDestroy, porterOpen, porterClose, porterNext, 0 }; /* ** Allocate a new porter tokenizer. Return a pointer to the new ** tokenizer in *ppModule */ SQLITE_PRIVATE void sqlite3Fts3PorterTokenizerModule( sqlite3_tokenizer_module const**ppModule ){ *ppModule = &porterTokenizerModule; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_porter.c *****************************************/ /************** Begin file fts3_tokenizer.c **********************************/ /* ** 2007 June 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This is part of an SQLite module implementing full-text search. ** This particular file implements the generic tokenizer interface. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* ** Return true if the two-argument version of fts3_tokenizer() ** has been activated via a prior call to sqlite3_db_config(db, ** SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, 1, 0); */ static int fts3TokenizerEnabled(sqlite3_context *context){ sqlite3 *db = sqlite3_context_db_handle(context); int isEnabled = 0; sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER,-1,&isEnabled); return isEnabled; } /* ** Implementation of the SQL scalar function for accessing the underlying ** hash table. This function may be called as follows: ** ** SELECT (); ** SELECT (, ); ** ** where is the name passed as the second argument ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer'). ** ** If the argument is specified, it must be a blob value ** containing a pointer to be stored as the hash data corresponding ** to the string . If is not specified, then ** the string must already exist in the has table. Otherwise, ** an error is returned. ** ** Whether or not the argument is specified, the value returned ** is a blob containing the pointer stored as the hash data corresponding ** to string (after the hash-table is updated, if applicable). */ static void fts3TokenizerFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ Fts3Hash *pHash; void *pPtr = 0; const unsigned char *zName; int nName; assert( argc==1 || argc==2 ); pHash = (Fts3Hash *)sqlite3_user_data(context); zName = sqlite3_value_text(argv[0]); nName = sqlite3_value_bytes(argv[0])+1; if( argc==2 ){ if( fts3TokenizerEnabled(context) || sqlite3_value_frombind(argv[1]) ){ void *pOld; int n = sqlite3_value_bytes(argv[1]); if( zName==0 || n!=sizeof(pPtr) ){ sqlite3_result_error(context, "argument type mismatch", -1); return; } pPtr = *(void **)sqlite3_value_blob(argv[1]); pOld = sqlite3Fts3HashInsert(pHash, (void *)zName, nName, pPtr); if( pOld==pPtr ){ sqlite3_result_error(context, "out of memory", -1); } }else{ sqlite3_result_error(context, "fts3tokenize disabled", -1); return; } }else{ if( zName ){ pPtr = sqlite3Fts3HashFind(pHash, zName, nName); } if( !pPtr ){ char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); sqlite3_result_error(context, zErr, -1); sqlite3_free(zErr); return; } } if( fts3TokenizerEnabled(context) || sqlite3_value_frombind(argv[0]) ){ sqlite3_result_blob(context, (void *)&pPtr, sizeof(pPtr), SQLITE_TRANSIENT); } } SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char c){ static const char isFtsIdChar[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */ }; return (c&0x80 || isFtsIdChar[(int)(c)]); } SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *zStr, int *pn){ const char *z1; const char *z2 = 0; /* Find the start of the next token. */ z1 = zStr; while( z2==0 ){ char c = *z1; switch( c ){ case '\0': return 0; /* No more tokens here */ case '\'': case '"': case '`': { z2 = z1; while( *++z2 && (*z2!=c || *++z2==c) ); break; } case '[': z2 = &z1[1]; while( *z2 && z2[0]!=']' ) z2++; if( *z2 ) z2++; break; default: if( sqlite3Fts3IsIdChar(*z1) ){ z2 = &z1[1]; while( sqlite3Fts3IsIdChar(*z2) ) z2++; }else{ z1++; } } } *pn = (int)(z2-z1); return z1; } SQLITE_PRIVATE int sqlite3Fts3InitTokenizer( Fts3Hash *pHash, /* Tokenizer hash table */ const char *zArg, /* Tokenizer name */ sqlite3_tokenizer **ppTok, /* OUT: Tokenizer (if applicable) */ char **pzErr /* OUT: Set to malloced error message */ ){ int rc; char *z = (char *)zArg; int n = 0; char *zCopy; char *zEnd; /* Pointer to nul-term of zCopy */ sqlite3_tokenizer_module *m; zCopy = sqlite3_mprintf("%s", zArg); if( !zCopy ) return SQLITE_NOMEM; zEnd = &zCopy[strlen(zCopy)]; z = (char *)sqlite3Fts3NextToken(zCopy, &n); if( z==0 ){ assert( n==0 ); z = zCopy; } z[n] = '\0'; sqlite3Fts3Dequote(z); m = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash,z,(int)strlen(z)+1); if( !m ){ sqlite3Fts3ErrMsg(pzErr, "unknown tokenizer: %s", z); rc = SQLITE_ERROR; }else{ char const **aArg = 0; int iArg = 0; z = &z[n+1]; while( zxCreate(iArg, aArg, ppTok); assert( rc!=SQLITE_OK || *ppTok ); if( rc!=SQLITE_OK ){ sqlite3Fts3ErrMsg(pzErr, "unknown tokenizer"); }else{ (*ppTok)->pModule = m; } sqlite3_free((void *)aArg); } sqlite3_free(zCopy); return rc; } #ifdef SQLITE_TEST #if defined(INCLUDE_SQLITE_TCL_H) # include "sqlite_tcl.h" #else # include "tcl.h" #endif /* #include */ /* ** Implementation of a special SQL scalar function for testing tokenizers ** designed to be used in concert with the Tcl testing framework. This ** function must be called with two or more arguments: ** ** SELECT (, ..., ); ** ** where is the name passed as the second argument ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer') ** concatenated with the string '_test' (e.g. 'fts3_tokenizer_test'). ** ** The return value is a string that may be interpreted as a Tcl ** list. For each token in the , three elements are ** added to the returned list. The first is the token position, the ** second is the token text (folded, stemmed, etc.) and the third is the ** substring of associated with the token. For example, ** using the built-in "simple" tokenizer: ** ** SELECT fts_tokenizer_test('simple', 'I don't see how'); ** ** will return the string: ** ** "{0 i I 1 dont don't 2 see see 3 how how}" ** */ static void testFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ Fts3Hash *pHash; sqlite3_tokenizer_module *p; sqlite3_tokenizer *pTokenizer = 0; sqlite3_tokenizer_cursor *pCsr = 0; const char *zErr = 0; const char *zName; int nName; const char *zInput; int nInput; const char *azArg[64]; const char *zToken; int nToken = 0; int iStart = 0; int iEnd = 0; int iPos = 0; int i; Tcl_Obj *pRet; if( argc<2 ){ sqlite3_result_error(context, "insufficient arguments", -1); return; } nName = sqlite3_value_bytes(argv[0]); zName = (const char *)sqlite3_value_text(argv[0]); nInput = sqlite3_value_bytes(argv[argc-1]); zInput = (const char *)sqlite3_value_text(argv[argc-1]); pHash = (Fts3Hash *)sqlite3_user_data(context); p = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash, zName, nName+1); if( !p ){ char *zErr2 = sqlite3_mprintf("unknown tokenizer: %s", zName); sqlite3_result_error(context, zErr2, -1); sqlite3_free(zErr2); return; } pRet = Tcl_NewObj(); Tcl_IncrRefCount(pRet); for(i=1; ixCreate(argc-2, azArg, &pTokenizer) ){ zErr = "error in xCreate()"; goto finish; } pTokenizer->pModule = p; if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){ zErr = "error in xOpen()"; goto finish; } while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){ Tcl_ListObjAppendElement(0, pRet, Tcl_NewIntObj(iPos)); Tcl_ListObjAppendElement(0, pRet, Tcl_NewStringObj(zToken, nToken)); zToken = &zInput[iStart]; nToken = iEnd-iStart; Tcl_ListObjAppendElement(0, pRet, Tcl_NewStringObj(zToken, nToken)); } if( SQLITE_OK!=p->xClose(pCsr) ){ zErr = "error in xClose()"; goto finish; } if( SQLITE_OK!=p->xDestroy(pTokenizer) ){ zErr = "error in xDestroy()"; goto finish; } finish: if( zErr ){ sqlite3_result_error(context, zErr, -1); }else{ sqlite3_result_text(context, Tcl_GetString(pRet), -1, SQLITE_TRANSIENT); } Tcl_DecrRefCount(pRet); } static int registerTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module *p ){ int rc; sqlite3_stmt *pStmt; const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ return rc; } sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); sqlite3_bind_blob(pStmt, 2, &p, sizeof(p), SQLITE_STATIC); sqlite3_step(pStmt); return sqlite3_finalize(pStmt); } static int queryTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module **pp ){ int rc; sqlite3_stmt *pStmt; const char zSql[] = "SELECT fts3_tokenizer(?)"; *pp = 0; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ return rc; } sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); if( SQLITE_ROW==sqlite3_step(pStmt) ){ if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB && sqlite3_column_bytes(pStmt, 0)==sizeof(*pp) ){ memcpy((void *)pp, sqlite3_column_blob(pStmt, 0), sizeof(*pp)); } } return sqlite3_finalize(pStmt); } SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module const**ppModule); /* ** Implementation of the scalar function fts3_tokenizer_internal_test(). ** This function is used for testing only, it is not included in the ** build unless SQLITE_TEST is defined. ** ** The purpose of this is to test that the fts3_tokenizer() function ** can be used as designed by the C-code in the queryTokenizer and ** registerTokenizer() functions above. These two functions are repeated ** in the README.tokenizer file as an example, so it is important to ** test them. ** ** To run the tests, evaluate the fts3_tokenizer_internal_test() scalar ** function with no arguments. An assert() will fail if a problem is ** detected. i.e.: ** ** SELECT fts3_tokenizer_internal_test(); ** */ static void intTestFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int rc; const sqlite3_tokenizer_module *p1; const sqlite3_tokenizer_module *p2; sqlite3 *db = (sqlite3 *)sqlite3_user_data(context); UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); /* Test the query function */ sqlite3Fts3SimpleTokenizerModule(&p1); rc = queryTokenizer(db, "simple", &p2); assert( rc==SQLITE_OK ); assert( p1==p2 ); rc = queryTokenizer(db, "nosuchtokenizer", &p2); assert( rc==SQLITE_ERROR ); assert( p2==0 ); assert( 0==strcmp(sqlite3_errmsg(db), "unknown tokenizer: nosuchtokenizer") ); /* Test the storage function */ if( fts3TokenizerEnabled(context) ){ rc = registerTokenizer(db, "nosuchtokenizer", p1); assert( rc==SQLITE_OK ); rc = queryTokenizer(db, "nosuchtokenizer", &p2); assert( rc==SQLITE_OK ); assert( p2==p1 ); } sqlite3_result_text(context, "ok", -1, SQLITE_STATIC); } #endif /* ** Set up SQL objects in database db used to access the contents of ** the hash table pointed to by argument pHash. The hash table must ** been initialized to use string keys, and to take a private copy ** of the key when a value is inserted. i.e. by a call similar to: ** ** sqlite3Fts3HashInit(pHash, FTS3_HASH_STRING, 1); ** ** This function adds a scalar function (see header comment above ** fts3TokenizerFunc() in this file for details) and, if ENABLE_TABLE is ** defined at compilation time, a temporary virtual table (see header ** comment above struct HashTableVtab) to the database schema. Both ** provide read/write access to the contents of *pHash. ** ** The third argument to this function, zName, is used as the name ** of both the scalar and, if created, the virtual table. */ SQLITE_PRIVATE int sqlite3Fts3InitHashTable( sqlite3 *db, Fts3Hash *pHash, const char *zName ){ int rc = SQLITE_OK; void *p = (void *)pHash; const int any = SQLITE_UTF8|SQLITE_DIRECTONLY; #ifdef SQLITE_TEST char *zTest = 0; char *zTest2 = 0; void *pdb = (void *)db; zTest = sqlite3_mprintf("%s_test", zName); zTest2 = sqlite3_mprintf("%s_internal_test", zName); if( !zTest || !zTest2 ){ rc = SQLITE_NOMEM; } #endif if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zName, 1, any, p, fts3TokenizerFunc, 0, 0); } if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zName, 2, any, p, fts3TokenizerFunc, 0, 0); } #ifdef SQLITE_TEST if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zTest, -1, any, p, testFunc, 0, 0); } if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0); } #endif #ifdef SQLITE_TEST sqlite3_free(zTest); sqlite3_free(zTest2); #endif return rc; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_tokenizer.c **************************************/ /************** Begin file fts3_tokenizer1.c *********************************/ /* ** 2006 Oct 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** Implementation of the "simple" full-text-search tokenizer. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ typedef struct simple_tokenizer { sqlite3_tokenizer base; char delim[128]; /* flag ASCII delimiters */ } simple_tokenizer; typedef struct simple_tokenizer_cursor { sqlite3_tokenizer_cursor base; const char *pInput; /* input we are tokenizing */ int nBytes; /* size of the input */ int iOffset; /* current position in pInput */ int iToken; /* index of next token to be returned */ char *pToken; /* storage for current token */ int nTokenAllocated; /* space allocated to zToken buffer */ } simple_tokenizer_cursor; static int simpleDelim(simple_tokenizer *t, unsigned char c){ return c<0x80 && t->delim[c]; } static int fts3_isalnum(int x){ return (x>='0' && x<='9') || (x>='A' && x<='Z') || (x>='a' && x<='z'); } /* ** Create a new tokenizer instance. */ static int simpleCreate( int argc, const char * const *argv, sqlite3_tokenizer **ppTokenizer ){ simple_tokenizer *t; t = (simple_tokenizer *) sqlite3_malloc(sizeof(*t)); if( t==NULL ) return SQLITE_NOMEM; memset(t, 0, sizeof(*t)); /* TODO(shess) Delimiters need to remain the same from run to run, ** else we need to reindex. One solution would be a meta-table to ** track such information in the database, then we'd only want this ** information on the initial create. */ if( argc>1 ){ int i, n = (int)strlen(argv[1]); for(i=0; i=0x80 ){ sqlite3_free(t); return SQLITE_ERROR; } t->delim[ch] = 1; } } else { /* Mark non-alphanumeric ASCII characters as delimiters */ int i; for(i=1; i<0x80; i++){ t->delim[i] = !fts3_isalnum(i) ? -1 : 0; } } *ppTokenizer = &t->base; return SQLITE_OK; } /* ** Destroy a tokenizer */ static int simpleDestroy(sqlite3_tokenizer *pTokenizer){ sqlite3_free(pTokenizer); return SQLITE_OK; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is pInput[0..nBytes-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int simpleOpen( sqlite3_tokenizer *pTokenizer, /* The tokenizer */ const char *pInput, int nBytes, /* String to be tokenized */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ ){ simple_tokenizer_cursor *c; UNUSED_PARAMETER(pTokenizer); c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); if( c==NULL ) return SQLITE_NOMEM; c->pInput = pInput; if( pInput==0 ){ c->nBytes = 0; }else if( nBytes<0 ){ c->nBytes = (int)strlen(pInput); }else{ c->nBytes = nBytes; } c->iOffset = 0; /* start tokenizing at the beginning */ c->iToken = 0; c->pToken = NULL; /* no space allocated, yet. */ c->nTokenAllocated = 0; *ppCursor = &c->base; return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to ** simpleOpen() above. */ static int simpleClose(sqlite3_tokenizer_cursor *pCursor){ simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; sqlite3_free(c->pToken); sqlite3_free(c); return SQLITE_OK; } /* ** Extract the next token from a tokenization cursor. The cursor must ** have been opened by a prior call to simpleOpen(). */ static int simpleNext( sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by simpleOpen */ const char **ppToken, /* OUT: *ppToken is the token text */ int *pnBytes, /* OUT: Number of bytes in token */ int *piStartOffset, /* OUT: Starting offset of token */ int *piEndOffset, /* OUT: Ending offset of token */ int *piPosition /* OUT: Position integer of token */ ){ simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; simple_tokenizer *t = (simple_tokenizer *) pCursor->pTokenizer; unsigned char *p = (unsigned char *)c->pInput; while( c->iOffsetnBytes ){ int iStartOffset; /* Scan past delimiter characters */ while( c->iOffsetnBytes && simpleDelim(t, p[c->iOffset]) ){ c->iOffset++; } /* Count non-delimiter characters. */ iStartOffset = c->iOffset; while( c->iOffsetnBytes && !simpleDelim(t, p[c->iOffset]) ){ c->iOffset++; } if( c->iOffset>iStartOffset ){ int i, n = c->iOffset-iStartOffset; if( n>c->nTokenAllocated ){ char *pNew; c->nTokenAllocated = n+20; pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated); if( !pNew ) return SQLITE_NOMEM; c->pToken = pNew; } for(i=0; ipToken[i] = (char)((ch>='A' && ch<='Z') ? ch-'A'+'a' : ch); } *ppToken = c->pToken; *pnBytes = n; *piStartOffset = iStartOffset; *piEndOffset = c->iOffset; *piPosition = c->iToken++; return SQLITE_OK; } } return SQLITE_DONE; } /* ** The set of routines that implement the simple tokenizer */ static const sqlite3_tokenizer_module simpleTokenizerModule = { 0, simpleCreate, simpleDestroy, simpleOpen, simpleClose, simpleNext, 0, }; /* ** Allocate a new simple tokenizer. Return a pointer to the new ** tokenizer in *ppModule */ SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule( sqlite3_tokenizer_module const**ppModule ){ *ppModule = &simpleTokenizerModule; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_tokenizer1.c *************************************/ /************** Begin file fts3_tokenize_vtab.c ******************************/ /* ** 2013 Apr 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code for the "fts3tokenize" virtual table module. ** An fts3tokenize virtual table is created as follows: ** ** CREATE VIRTUAL TABLE USING fts3tokenize( ** , , ... ** ); ** ** The table created has the following schema: ** ** CREATE TABLE (input, token, start, end, position) ** ** When queried, the query must include a WHERE clause of type: ** ** input = ** ** The virtual table module tokenizes this , using the FTS3 ** tokenizer specified by the arguments to the CREATE VIRTUAL TABLE ** statement and returns one row for each token in the result. With ** fields set as follows: ** ** input: Always set to a copy of ** token: A token from the input. ** start: Byte offset of the token within the input . ** end: Byte offset of the byte immediately following the end of the ** token within the input string. ** pos: Token offset of token within input. ** */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ typedef struct Fts3tokTable Fts3tokTable; typedef struct Fts3tokCursor Fts3tokCursor; /* ** Virtual table structure. */ struct Fts3tokTable { sqlite3_vtab base; /* Base class used by SQLite core */ const sqlite3_tokenizer_module *pMod; sqlite3_tokenizer *pTok; }; /* ** Virtual table cursor structure. */ struct Fts3tokCursor { sqlite3_vtab_cursor base; /* Base class used by SQLite core */ char *zInput; /* Input string */ sqlite3_tokenizer_cursor *pCsr; /* Cursor to iterate through zInput */ int iRowid; /* Current 'rowid' value */ const char *zToken; /* Current 'token' value */ int nToken; /* Size of zToken in bytes */ int iStart; /* Current 'start' value */ int iEnd; /* Current 'end' value */ int iPos; /* Current 'pos' value */ }; /* ** Query FTS for the tokenizer implementation named zName. */ static int fts3tokQueryTokenizer( Fts3Hash *pHash, const char *zName, const sqlite3_tokenizer_module **pp, char **pzErr ){ sqlite3_tokenizer_module *p; int nName = (int)strlen(zName); p = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash, zName, nName+1); if( !p ){ sqlite3Fts3ErrMsg(pzErr, "unknown tokenizer: %s", zName); return SQLITE_ERROR; } *pp = p; return SQLITE_OK; } /* ** The second argument, argv[], is an array of pointers to nul-terminated ** strings. This function makes a copy of the array and strings into a ** single block of memory. It then dequotes any of the strings that appear ** to be quoted. ** ** If successful, output parameter *pazDequote is set to point at the ** array of dequoted strings and SQLITE_OK is returned. The caller is ** responsible for eventually calling sqlite3_free() to free the array ** in this case. Or, if an error occurs, an SQLite error code is returned. ** The final value of *pazDequote is undefined in this case. */ static int fts3tokDequoteArray( int argc, /* Number of elements in argv[] */ const char * const *argv, /* Input array */ char ***pazDequote /* Output array */ ){ int rc = SQLITE_OK; /* Return code */ if( argc==0 ){ *pazDequote = 0; }else{ int i; int nByte = 0; char **azDequote; for(i=0; i1 ) azArg = (const char * const *)&azDequote[1]; rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok); } if( rc==SQLITE_OK ){ pTab = (Fts3tokTable *)sqlite3_malloc(sizeof(Fts3tokTable)); if( pTab==0 ){ rc = SQLITE_NOMEM; } } if( rc==SQLITE_OK ){ memset(pTab, 0, sizeof(Fts3tokTable)); pTab->pMod = pMod; pTab->pTok = pTok; *ppVtab = &pTab->base; }else{ if( pTok ){ pMod->xDestroy(pTok); } } sqlite3_free(azDequote); return rc; } /* ** This function does the work for both the xDisconnect and xDestroy methods. ** These tables have no persistent representation of their own, so xDisconnect ** and xDestroy are identical operations. */ static int fts3tokDisconnectMethod(sqlite3_vtab *pVtab){ Fts3tokTable *pTab = (Fts3tokTable *)pVtab; pTab->pMod->xDestroy(pTab->pTok); sqlite3_free(pTab); return SQLITE_OK; } /* ** xBestIndex - Analyze a WHERE and ORDER BY clause. */ static int fts3tokBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ){ int i; UNUSED_PARAMETER(pVTab); for(i=0; inConstraint; i++){ if( pInfo->aConstraint[i].usable && pInfo->aConstraint[i].iColumn==0 && pInfo->aConstraint[i].op==SQLITE_INDEX_CONSTRAINT_EQ ){ pInfo->idxNum = 1; pInfo->aConstraintUsage[i].argvIndex = 1; pInfo->aConstraintUsage[i].omit = 1; pInfo->estimatedCost = 1; return SQLITE_OK; } } pInfo->idxNum = 0; assert( pInfo->estimatedCost>1000000.0 ); return SQLITE_OK; } /* ** xOpen - Open a cursor. */ static int fts3tokOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ Fts3tokCursor *pCsr; UNUSED_PARAMETER(pVTab); pCsr = (Fts3tokCursor *)sqlite3_malloc(sizeof(Fts3tokCursor)); if( pCsr==0 ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(Fts3tokCursor)); *ppCsr = (sqlite3_vtab_cursor *)pCsr; return SQLITE_OK; } /* ** Reset the tokenizer cursor passed as the only argument. As if it had ** just been returned by fts3tokOpenMethod(). */ static void fts3tokResetCursor(Fts3tokCursor *pCsr){ if( pCsr->pCsr ){ Fts3tokTable *pTab = (Fts3tokTable *)(pCsr->base.pVtab); pTab->pMod->xClose(pCsr->pCsr); pCsr->pCsr = 0; } sqlite3_free(pCsr->zInput); pCsr->zInput = 0; pCsr->zToken = 0; pCsr->nToken = 0; pCsr->iStart = 0; pCsr->iEnd = 0; pCsr->iPos = 0; pCsr->iRowid = 0; } /* ** xClose - Close a cursor. */ static int fts3tokCloseMethod(sqlite3_vtab_cursor *pCursor){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; fts3tokResetCursor(pCsr); sqlite3_free(pCsr); return SQLITE_OK; } /* ** xNext - Advance the cursor to the next row, if any. */ static int fts3tokNextMethod(sqlite3_vtab_cursor *pCursor){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); int rc; /* Return code */ pCsr->iRowid++; rc = pTab->pMod->xNext(pCsr->pCsr, &pCsr->zToken, &pCsr->nToken, &pCsr->iStart, &pCsr->iEnd, &pCsr->iPos ); if( rc!=SQLITE_OK ){ fts3tokResetCursor(pCsr); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } return rc; } /* ** xFilter - Initialize a cursor to point at the start of its data. */ static int fts3tokFilterMethod( sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ int idxNum, /* Strategy index */ const char *idxStr, /* Unused */ int nVal, /* Number of elements in apVal */ sqlite3_value **apVal /* Arguments for the indexing scheme */ ){ int rc = SQLITE_ERROR; Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); UNUSED_PARAMETER(idxStr); UNUSED_PARAMETER(nVal); fts3tokResetCursor(pCsr); if( idxNum==1 ){ const char *zByte = (const char *)sqlite3_value_text(apVal[0]); int nByte = sqlite3_value_bytes(apVal[0]); pCsr->zInput = sqlite3_malloc64(nByte+1); if( pCsr->zInput==0 ){ rc = SQLITE_NOMEM; }else{ if( nByte>0 ) memcpy(pCsr->zInput, zByte, nByte); pCsr->zInput[nByte] = 0; rc = pTab->pMod->xOpen(pTab->pTok, pCsr->zInput, nByte, &pCsr->pCsr); if( rc==SQLITE_OK ){ pCsr->pCsr->pTokenizer = pTab->pTok; } } } if( rc!=SQLITE_OK ) return rc; return fts3tokNextMethod(pCursor); } /* ** xEof - Return true if the cursor is at EOF, or false otherwise. */ static int fts3tokEofMethod(sqlite3_vtab_cursor *pCursor){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; return (pCsr->zToken==0); } /* ** xColumn - Return a column value. */ static int fts3tokColumnMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ int iCol /* Index of column to read value from */ ){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; /* CREATE TABLE x(input, token, start, end, position) */ switch( iCol ){ case 0: sqlite3_result_text(pCtx, pCsr->zInput, -1, SQLITE_TRANSIENT); break; case 1: sqlite3_result_text(pCtx, pCsr->zToken, pCsr->nToken, SQLITE_TRANSIENT); break; case 2: sqlite3_result_int(pCtx, pCsr->iStart); break; case 3: sqlite3_result_int(pCtx, pCsr->iEnd); break; default: assert( iCol==4 ); sqlite3_result_int(pCtx, pCsr->iPos); break; } return SQLITE_OK; } /* ** xRowid - Return the current rowid for the cursor. */ static int fts3tokRowidMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite_int64 *pRowid /* OUT: Rowid value */ ){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; *pRowid = (sqlite3_int64)pCsr->iRowid; return SQLITE_OK; } /* ** Register the fts3tok module with database connection db. Return SQLITE_OK ** if successful or an error code if sqlite3_create_module() fails. */ SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3 *db, Fts3Hash *pHash, void(*xDestroy)(void*)){ static const sqlite3_module fts3tok_module = { 0, /* iVersion */ fts3tokConnectMethod, /* xCreate */ fts3tokConnectMethod, /* xConnect */ fts3tokBestIndexMethod, /* xBestIndex */ fts3tokDisconnectMethod, /* xDisconnect */ fts3tokDisconnectMethod, /* xDestroy */ fts3tokOpenMethod, /* xOpen */ fts3tokCloseMethod, /* xClose */ fts3tokFilterMethod, /* xFilter */ fts3tokNextMethod, /* xNext */ fts3tokEofMethod, /* xEof */ fts3tokColumnMethod, /* xColumn */ fts3tokRowidMethod, /* xRowid */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindFunction */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; int rc; /* Return code */ rc = sqlite3_create_module_v2( db, "fts3tokenize", &fts3tok_module, (void*)pHash, xDestroy ); return rc; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_tokenize_vtab.c **********************************/ /************** Begin file fts3_write.c **************************************/ /* ** 2009 Oct 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file is part of the SQLite FTS3 extension module. Specifically, ** this file contains code to insert, update and delete rows from FTS3 ** tables. It also contains code to merge FTS3 b-tree segments. Some ** of the sub-routines used to merge segments are also used by the query ** code in fts3.c. */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ #define FTS_MAX_APPENDABLE_HEIGHT 16 /* ** When full-text index nodes are loaded from disk, the buffer that they ** are loaded into has the following number of bytes of padding at the end ** of it. i.e. if a full-text index node is 900 bytes in size, then a buffer ** of 920 bytes is allocated for it. ** ** This means that if we have a pointer into a buffer containing node data, ** it is always safe to read up to two varints from it without risking an ** overread, even if the node data is corrupted. */ #define FTS3_NODE_PADDING (FTS3_VARINT_MAX*2) /* ** Under certain circumstances, b-tree nodes (doclists) can be loaded into ** memory incrementally instead of all at once. This can be a big performance ** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext() ** method before retrieving all query results (as may happen, for example, ** if a query has a LIMIT clause). ** ** Incremental loading is used for b-tree nodes FTS3_NODE_CHUNK_THRESHOLD ** bytes and larger. Nodes are loaded in chunks of FTS3_NODE_CHUNKSIZE bytes. ** The code is written so that the hard lower-limit for each of these values ** is 1. Clearly such small values would be inefficient, but can be useful ** for testing purposes. ** ** If this module is built with SQLITE_TEST defined, these constants may ** be overridden at runtime for testing purposes. File fts3_test.c contains ** a Tcl interface to read and write the values. */ #ifdef SQLITE_TEST int test_fts3_node_chunksize = (4*1024); int test_fts3_node_chunk_threshold = (4*1024)*4; # define FTS3_NODE_CHUNKSIZE test_fts3_node_chunksize # define FTS3_NODE_CHUNK_THRESHOLD test_fts3_node_chunk_threshold #else # define FTS3_NODE_CHUNKSIZE (4*1024) # define FTS3_NODE_CHUNK_THRESHOLD (FTS3_NODE_CHUNKSIZE*4) #endif /* ** The values that may be meaningfully bound to the :1 parameter in ** statements SQL_REPLACE_STAT and SQL_SELECT_STAT. */ #define FTS_STAT_DOCTOTAL 0 #define FTS_STAT_INCRMERGEHINT 1 #define FTS_STAT_AUTOINCRMERGE 2 /* ** If FTS_LOG_MERGES is defined, call sqlite3_log() to report each automatic ** and incremental merge operation that takes place. This is used for ** debugging FTS only, it should not usually be turned on in production ** systems. */ #ifdef FTS3_LOG_MERGES static void fts3LogMerge(int nMerge, sqlite3_int64 iAbsLevel){ sqlite3_log(SQLITE_OK, "%d-way merge from level %d", nMerge, (int)iAbsLevel); } #else #define fts3LogMerge(x, y) #endif typedef struct PendingList PendingList; typedef struct SegmentNode SegmentNode; typedef struct SegmentWriter SegmentWriter; /* ** An instance of the following data structure is used to build doclists ** incrementally. See function fts3PendingListAppend() for details. */ struct PendingList { int nData; char *aData; int nSpace; sqlite3_int64 iLastDocid; sqlite3_int64 iLastCol; sqlite3_int64 iLastPos; }; /* ** Each cursor has a (possibly empty) linked list of the following objects. */ struct Fts3DeferredToken { Fts3PhraseToken *pToken; /* Pointer to corresponding expr token */ int iCol; /* Column token must occur in */ Fts3DeferredToken *pNext; /* Next in list of deferred tokens */ PendingList *pList; /* Doclist is assembled here */ }; /* ** An instance of this structure is used to iterate through the terms on ** a contiguous set of segment b-tree leaf nodes. Although the details of ** this structure are only manipulated by code in this file, opaque handles ** of type Fts3SegReader* are also used by code in fts3.c to iterate through ** terms when querying the full-text index. See functions: ** ** sqlite3Fts3SegReaderNew() ** sqlite3Fts3SegReaderFree() ** sqlite3Fts3SegReaderIterate() ** ** Methods used to manipulate Fts3SegReader structures: ** ** fts3SegReaderNext() ** fts3SegReaderFirstDocid() ** fts3SegReaderNextDocid() */ struct Fts3SegReader { int iIdx; /* Index within level, or 0x7FFFFFFF for PT */ u8 bLookup; /* True for a lookup only */ u8 rootOnly; /* True for a root-only reader */ sqlite3_int64 iStartBlock; /* Rowid of first leaf block to traverse */ sqlite3_int64 iLeafEndBlock; /* Rowid of final leaf block to traverse */ sqlite3_int64 iEndBlock; /* Rowid of final block in segment (or 0) */ sqlite3_int64 iCurrentBlock; /* Current leaf block (or 0) */ char *aNode; /* Pointer to node data (or NULL) */ int nNode; /* Size of buffer at aNode (or 0) */ int nPopulate; /* If >0, bytes of buffer aNode[] loaded */ sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ Fts3HashElem **ppNextElem; /* Variables set by fts3SegReaderNext(). These may be read directly ** by the caller. They are valid from the time SegmentReaderNew() returns ** until SegmentReaderNext() returns something other than SQLITE_OK ** (i.e. SQLITE_DONE). */ int nTerm; /* Number of bytes in current term */ char *zTerm; /* Pointer to current term */ int nTermAlloc; /* Allocated size of zTerm buffer */ char *aDoclist; /* Pointer to doclist of current entry */ int nDoclist; /* Size of doclist in current entry */ /* The following variables are used by fts3SegReaderNextDocid() to iterate ** through the current doclist (aDoclist/nDoclist). */ char *pOffsetList; int nOffsetList; /* For descending pending seg-readers only */ sqlite3_int64 iDocid; }; #define fts3SegReaderIsPending(p) ((p)->ppNextElem!=0) #define fts3SegReaderIsRootOnly(p) ((p)->rootOnly!=0) /* ** An instance of this structure is used to create a segment b-tree in the ** database. The internal details of this type are only accessed by the ** following functions: ** ** fts3SegWriterAdd() ** fts3SegWriterFlush() ** fts3SegWriterFree() */ struct SegmentWriter { SegmentNode *pTree; /* Pointer to interior tree structure */ sqlite3_int64 iFirst; /* First slot in %_segments written */ sqlite3_int64 iFree; /* Next free slot in %_segments */ char *zTerm; /* Pointer to previous term buffer */ int nTerm; /* Number of bytes in zTerm */ int nMalloc; /* Size of malloc'd buffer at zMalloc */ char *zMalloc; /* Malloc'd space (possibly) used for zTerm */ int nSize; /* Size of allocation at aData */ int nData; /* Bytes of data in aData */ char *aData; /* Pointer to block from malloc() */ i64 nLeafData; /* Number of bytes of leaf data written */ }; /* ** Type SegmentNode is used by the following three functions to create ** the interior part of the segment b+-tree structures (everything except ** the leaf nodes). These functions and type are only ever used by code ** within the fts3SegWriterXXX() family of functions described above. ** ** fts3NodeAddTerm() ** fts3NodeWrite() ** fts3NodeFree() ** ** When a b+tree is written to the database (either as a result of a merge ** or the pending-terms table being flushed), leaves are written into the ** database file as soon as they are completely populated. The interior of ** the tree is assembled in memory and written out only once all leaves have ** been populated and stored. This is Ok, as the b+-tree fanout is usually ** very large, meaning that the interior of the tree consumes relatively ** little memory. */ struct SegmentNode { SegmentNode *pParent; /* Parent node (or NULL for root node) */ SegmentNode *pRight; /* Pointer to right-sibling */ SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ int nEntry; /* Number of terms written to node so far */ char *zTerm; /* Pointer to previous term buffer */ int nTerm; /* Number of bytes in zTerm */ int nMalloc; /* Size of malloc'd buffer at zMalloc */ char *zMalloc; /* Malloc'd space (possibly) used for zTerm */ int nData; /* Bytes of valid data so far */ char *aData; /* Node data */ }; /* ** Valid values for the second argument to fts3SqlStmt(). */ #define SQL_DELETE_CONTENT 0 #define SQL_IS_EMPTY 1 #define SQL_DELETE_ALL_CONTENT 2 #define SQL_DELETE_ALL_SEGMENTS 3 #define SQL_DELETE_ALL_SEGDIR 4 #define SQL_DELETE_ALL_DOCSIZE 5 #define SQL_DELETE_ALL_STAT 6 #define SQL_SELECT_CONTENT_BY_ROWID 7 #define SQL_NEXT_SEGMENT_INDEX 8 #define SQL_INSERT_SEGMENTS 9 #define SQL_NEXT_SEGMENTS_ID 10 #define SQL_INSERT_SEGDIR 11 #define SQL_SELECT_LEVEL 12 #define SQL_SELECT_LEVEL_RANGE 13 #define SQL_SELECT_LEVEL_COUNT 14 #define SQL_SELECT_SEGDIR_MAX_LEVEL 15 #define SQL_DELETE_SEGDIR_LEVEL 16 #define SQL_DELETE_SEGMENTS_RANGE 17 #define SQL_CONTENT_INSERT 18 #define SQL_DELETE_DOCSIZE 19 #define SQL_REPLACE_DOCSIZE 20 #define SQL_SELECT_DOCSIZE 21 #define SQL_SELECT_STAT 22 #define SQL_REPLACE_STAT 23 #define SQL_SELECT_ALL_PREFIX_LEVEL 24 #define SQL_DELETE_ALL_TERMS_SEGDIR 25 #define SQL_DELETE_SEGDIR_RANGE 26 #define SQL_SELECT_ALL_LANGID 27 #define SQL_FIND_MERGE_LEVEL 28 #define SQL_MAX_LEAF_NODE_ESTIMATE 29 #define SQL_DELETE_SEGDIR_ENTRY 30 #define SQL_SHIFT_SEGDIR_ENTRY 31 #define SQL_SELECT_SEGDIR 32 #define SQL_CHOMP_SEGDIR 33 #define SQL_SEGMENT_IS_APPENDABLE 34 #define SQL_SELECT_INDEXES 35 #define SQL_SELECT_MXLEVEL 36 #define SQL_SELECT_LEVEL_RANGE2 37 #define SQL_UPDATE_LEVEL_IDX 38 #define SQL_UPDATE_LEVEL 39 /* ** This function is used to obtain an SQLite prepared statement handle ** for the statement identified by the second argument. If successful, ** *pp is set to the requested statement handle and SQLITE_OK returned. ** Otherwise, an SQLite error code is returned and *pp is set to 0. ** ** If argument apVal is not NULL, then it must point to an array with ** at least as many entries as the requested statement has bound ** parameters. The values are bound to the statements parameters before ** returning. */ static int fts3SqlStmt( Fts3Table *p, /* Virtual table handle */ int eStmt, /* One of the SQL_XXX constants above */ sqlite3_stmt **pp, /* OUT: Statement handle */ sqlite3_value **apVal /* Values to bind to statement */ ){ const char *azSql[] = { /* 0 */ "DELETE FROM %Q.'%q_content' WHERE rowid = ?", /* 1 */ "SELECT NOT EXISTS(SELECT docid FROM %Q.'%q_content' WHERE rowid!=?)", /* 2 */ "DELETE FROM %Q.'%q_content'", /* 3 */ "DELETE FROM %Q.'%q_segments'", /* 4 */ "DELETE FROM %Q.'%q_segdir'", /* 5 */ "DELETE FROM %Q.'%q_docsize'", /* 6 */ "DELETE FROM %Q.'%q_stat'", /* 7 */ "SELECT %s WHERE rowid=?", /* 8 */ "SELECT (SELECT max(idx) FROM %Q.'%q_segdir' WHERE level = ?) + 1", /* 9 */ "REPLACE INTO %Q.'%q_segments'(blockid, block) VALUES(?, ?)", /* 10 */ "SELECT coalesce((SELECT max(blockid) FROM %Q.'%q_segments') + 1, 1)", /* 11 */ "REPLACE INTO %Q.'%q_segdir' VALUES(?,?,?,?,?,?)", /* Return segments in order from oldest to newest.*/ /* 12 */ "SELECT idx, start_block, leaves_end_block, end_block, root " "FROM %Q.'%q_segdir' WHERE level = ? ORDER BY idx ASC", /* 13 */ "SELECT idx, start_block, leaves_end_block, end_block, root " "FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?" "ORDER BY level DESC, idx ASC", /* 14 */ "SELECT count(*) FROM %Q.'%q_segdir' WHERE level = ?", /* 15 */ "SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?", /* 16 */ "DELETE FROM %Q.'%q_segdir' WHERE level = ?", /* 17 */ "DELETE FROM %Q.'%q_segments' WHERE blockid BETWEEN ? AND ?", /* 18 */ "INSERT INTO %Q.'%q_content' VALUES(%s)", /* 19 */ "DELETE FROM %Q.'%q_docsize' WHERE docid = ?", /* 20 */ "REPLACE INTO %Q.'%q_docsize' VALUES(?,?)", /* 21 */ "SELECT size FROM %Q.'%q_docsize' WHERE docid=?", /* 22 */ "SELECT value FROM %Q.'%q_stat' WHERE id=?", /* 23 */ "REPLACE INTO %Q.'%q_stat' VALUES(?,?)", /* 24 */ "", /* 25 */ "", /* 26 */ "DELETE FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?", /* 27 */ "SELECT ? UNION SELECT level / (1024 * ?) FROM %Q.'%q_segdir'", /* This statement is used to determine which level to read the input from ** when performing an incremental merge. It returns the absolute level number ** of the oldest level in the db that contains at least ? segments. Or, ** if no level in the FTS index contains more than ? segments, the statement ** returns zero rows. */ /* 28 */ "SELECT level, count(*) AS cnt FROM %Q.'%q_segdir' " " GROUP BY level HAVING cnt>=?" " ORDER BY (level %% 1024) ASC, 2 DESC LIMIT 1", /* Estimate the upper limit on the number of leaf nodes in a new segment ** created by merging the oldest :2 segments from absolute level :1. See ** function sqlite3Fts3Incrmerge() for details. */ /* 29 */ "SELECT 2 * total(1 + leaves_end_block - start_block) " " FROM (SELECT * FROM %Q.'%q_segdir' " " WHERE level = ? ORDER BY idx ASC LIMIT ?" " )", /* SQL_DELETE_SEGDIR_ENTRY ** Delete the %_segdir entry on absolute level :1 with index :2. */ /* 30 */ "DELETE FROM %Q.'%q_segdir' WHERE level = ? AND idx = ?", /* SQL_SHIFT_SEGDIR_ENTRY ** Modify the idx value for the segment with idx=:3 on absolute level :2 ** to :1. */ /* 31 */ "UPDATE %Q.'%q_segdir' SET idx = ? WHERE level=? AND idx=?", /* SQL_SELECT_SEGDIR ** Read a single entry from the %_segdir table. The entry from absolute ** level :1 with index value :2. */ /* 32 */ "SELECT idx, start_block, leaves_end_block, end_block, root " "FROM %Q.'%q_segdir' WHERE level = ? AND idx = ?", /* SQL_CHOMP_SEGDIR ** Update the start_block (:1) and root (:2) fields of the %_segdir ** entry located on absolute level :3 with index :4. */ /* 33 */ "UPDATE %Q.'%q_segdir' SET start_block = ?, root = ?" "WHERE level = ? AND idx = ?", /* SQL_SEGMENT_IS_APPENDABLE ** Return a single row if the segment with end_block=? is appendable. Or ** no rows otherwise. */ /* 34 */ "SELECT 1 FROM %Q.'%q_segments' WHERE blockid=? AND block IS NULL", /* SQL_SELECT_INDEXES ** Return the list of valid segment indexes for absolute level ? */ /* 35 */ "SELECT idx FROM %Q.'%q_segdir' WHERE level=? ORDER BY 1 ASC", /* SQL_SELECT_MXLEVEL ** Return the largest relative level in the FTS index or indexes. */ /* 36 */ "SELECT max( level %% 1024 ) FROM %Q.'%q_segdir'", /* Return segments in order from oldest to newest.*/ /* 37 */ "SELECT level, idx, end_block " "FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? " "ORDER BY level DESC, idx ASC", /* Update statements used while promoting segments */ /* 38 */ "UPDATE OR FAIL %Q.'%q_segdir' SET level=-1,idx=? " "WHERE level=? AND idx=?", /* 39 */ "UPDATE OR FAIL %Q.'%q_segdir' SET level=? WHERE level=-1" }; int rc = SQLITE_OK; sqlite3_stmt *pStmt; assert( SizeofArray(azSql)==SizeofArray(p->aStmt) ); assert( eStmt=0 ); pStmt = p->aStmt[eStmt]; if( !pStmt ){ int f = SQLITE_PREPARE_PERSISTENT|SQLITE_PREPARE_NO_VTAB; char *zSql; if( eStmt==SQL_CONTENT_INSERT ){ zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist); }else if( eStmt==SQL_SELECT_CONTENT_BY_ROWID ){ f &= ~SQLITE_PREPARE_NO_VTAB; zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist); }else{ zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName); } if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v3(p->db, zSql, -1, f, &pStmt, NULL); sqlite3_free(zSql); assert( rc==SQLITE_OK || pStmt==0 ); p->aStmt[eStmt] = pStmt; } } if( apVal ){ int i; int nParam = sqlite3_bind_parameter_count(pStmt); for(i=0; rc==SQLITE_OK && inPendingData==0 ){ sqlite3_stmt *pStmt; rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_null(pStmt, 1); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); } } return rc; } /* ** FTS maintains a separate indexes for each language-id (a 32-bit integer). ** Within each language id, a separate index is maintained to store the ** document terms, and each configured prefix size (configured the FTS ** "prefix=" option). And each index consists of multiple levels ("relative ** levels"). ** ** All three of these values (the language id, the specific index and the ** level within the index) are encoded in 64-bit integer values stored ** in the %_segdir table on disk. This function is used to convert three ** separate component values into the single 64-bit integer value that ** can be used to query the %_segdir table. ** ** Specifically, each language-id/index combination is allocated 1024 ** 64-bit integer level values ("absolute levels"). The main terms index ** for language-id 0 is allocate values 0-1023. The first prefix index ** (if any) for language-id 0 is allocated values 1024-2047. And so on. ** Language 1 indexes are allocated immediately following language 0. ** ** So, for a system with nPrefix prefix indexes configured, the block of ** absolute levels that corresponds to language-id iLangid and index ** iIndex starts at absolute level ((iLangid * (nPrefix+1) + iIndex) * 1024). */ static sqlite3_int64 getAbsoluteLevel( Fts3Table *p, /* FTS3 table handle */ int iLangid, /* Language id */ int iIndex, /* Index in p->aIndex[] */ int iLevel /* Level of segments */ ){ sqlite3_int64 iBase; /* First absolute level for iLangid/iIndex */ assert_fts3_nc( iLangid>=0 ); assert( p->nIndex>0 ); assert( iIndex>=0 && iIndexnIndex ); iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL; return iBase + iLevel; } /* ** Set *ppStmt to a statement handle that may be used to iterate through ** all rows in the %_segdir table, from oldest to newest. If successful, ** return SQLITE_OK. If an error occurs while preparing the statement, ** return an SQLite error code. ** ** There is only ever one instance of this SQL statement compiled for ** each FTS3 table. ** ** The statement returns the following columns from the %_segdir table: ** ** 0: idx ** 1: start_block ** 2: leaves_end_block ** 3: end_block ** 4: root */ SQLITE_PRIVATE int sqlite3Fts3AllSegdirs( Fts3Table *p, /* FTS3 table */ int iLangid, /* Language being queried */ int iIndex, /* Index for p->aIndex[] */ int iLevel, /* Level to select (relative level) */ sqlite3_stmt **ppStmt /* OUT: Compiled statement */ ){ int rc; sqlite3_stmt *pStmt = 0; assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel>=0 ); assert( iLevel=0 && iIndexnIndex ); if( iLevel<0 ){ /* "SELECT * FROM %_segdir WHERE level BETWEEN ? AND ? ORDER BY ..." */ rc = fts3SqlStmt(p, SQL_SELECT_LEVEL_RANGE, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); sqlite3_bind_int64(pStmt, 2, getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) ); } }else{ /* "SELECT * FROM %_segdir WHERE level = ? ORDER BY ..." */ rc = fts3SqlStmt(p, SQL_SELECT_LEVEL, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex,iLevel)); } } *ppStmt = pStmt; return rc; } /* ** Append a single varint to a PendingList buffer. SQLITE_OK is returned ** if successful, or an SQLite error code otherwise. ** ** This function also serves to allocate the PendingList structure itself. ** For example, to create a new PendingList structure containing two ** varints: ** ** PendingList *p = 0; ** fts3PendingListAppendVarint(&p, 1); ** fts3PendingListAppendVarint(&p, 2); */ static int fts3PendingListAppendVarint( PendingList **pp, /* IN/OUT: Pointer to PendingList struct */ sqlite3_int64 i /* Value to append to data */ ){ PendingList *p = *pp; /* Allocate or grow the PendingList as required. */ if( !p ){ p = sqlite3_malloc(sizeof(*p) + 100); if( !p ){ return SQLITE_NOMEM; } p->nSpace = 100; p->aData = (char *)&p[1]; p->nData = 0; } else if( p->nData+FTS3_VARINT_MAX+1>p->nSpace ){ int nNew = p->nSpace * 2; p = sqlite3_realloc(p, sizeof(*p) + nNew); if( !p ){ sqlite3_free(*pp); *pp = 0; return SQLITE_NOMEM; } p->nSpace = nNew; p->aData = (char *)&p[1]; } /* Append the new serialized varint to the end of the list. */ p->nData += sqlite3Fts3PutVarint(&p->aData[p->nData], i); p->aData[p->nData] = '\0'; *pp = p; return SQLITE_OK; } /* ** Add a docid/column/position entry to a PendingList structure. Non-zero ** is returned if the structure is sqlite3_realloced as part of adding ** the entry. Otherwise, zero. ** ** If an OOM error occurs, *pRc is set to SQLITE_NOMEM before returning. ** Zero is always returned in this case. Otherwise, if no OOM error occurs, ** it is set to SQLITE_OK. */ static int fts3PendingListAppend( PendingList **pp, /* IN/OUT: PendingList structure */ sqlite3_int64 iDocid, /* Docid for entry to add */ sqlite3_int64 iCol, /* Column for entry to add */ sqlite3_int64 iPos, /* Position of term for entry to add */ int *pRc /* OUT: Return code */ ){ PendingList *p = *pp; int rc = SQLITE_OK; assert( !p || p->iLastDocid<=iDocid ); if( !p || p->iLastDocid!=iDocid ){ u64 iDelta = (u64)iDocid - (u64)(p ? p->iLastDocid : 0); if( p ){ assert( p->nDatanSpace ); assert( p->aData[p->nData]==0 ); p->nData++; } if( SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, iDelta)) ){ goto pendinglistappend_out; } p->iLastCol = -1; p->iLastPos = 0; p->iLastDocid = iDocid; } if( iCol>0 && p->iLastCol!=iCol ){ if( SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, 1)) || SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, iCol)) ){ goto pendinglistappend_out; } p->iLastCol = iCol; p->iLastPos = 0; } if( iCol>=0 ){ assert( iPos>p->iLastPos || (iPos==0 && p->iLastPos==0) ); rc = fts3PendingListAppendVarint(&p, 2+iPos-p->iLastPos); if( rc==SQLITE_OK ){ p->iLastPos = iPos; } } pendinglistappend_out: *pRc = rc; if( p!=*pp ){ *pp = p; return 1; } return 0; } /* ** Free a PendingList object allocated by fts3PendingListAppend(). */ static void fts3PendingListDelete(PendingList *pList){ sqlite3_free(pList); } /* ** Add an entry to one of the pending-terms hash tables. */ static int fts3PendingTermsAddOne( Fts3Table *p, int iCol, int iPos, Fts3Hash *pHash, /* Pending terms hash table to add entry to */ const char *zToken, int nToken ){ PendingList *pList; int rc = SQLITE_OK; pList = (PendingList *)fts3HashFind(pHash, zToken, nToken); if( pList ){ p->nPendingData -= (pList->nData + nToken + sizeof(Fts3HashElem)); } if( fts3PendingListAppend(&pList, p->iPrevDocid, iCol, iPos, &rc) ){ if( pList==fts3HashInsert(pHash, zToken, nToken, pList) ){ /* Malloc failed while inserting the new entry. This can only ** happen if there was no previous entry for this token. */ assert( 0==fts3HashFind(pHash, zToken, nToken) ); sqlite3_free(pList); rc = SQLITE_NOMEM; } } if( rc==SQLITE_OK ){ p->nPendingData += (pList->nData + nToken + sizeof(Fts3HashElem)); } return rc; } /* ** Tokenize the nul-terminated string zText and add all tokens to the ** pending-terms hash-table. The docid used is that currently stored in ** p->iPrevDocid, and the column is specified by argument iCol. ** ** If successful, SQLITE_OK is returned. Otherwise, an SQLite error code. */ static int fts3PendingTermsAdd( Fts3Table *p, /* Table into which text will be inserted */ int iLangid, /* Language id to use */ const char *zText, /* Text of document to be inserted */ int iCol, /* Column into which text is being inserted */ u32 *pnWord /* IN/OUT: Incr. by number tokens inserted */ ){ int rc; int iStart = 0; int iEnd = 0; int iPos = 0; int nWord = 0; char const *zToken; int nToken = 0; sqlite3_tokenizer *pTokenizer = p->pTokenizer; sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; sqlite3_tokenizer_cursor *pCsr; int (*xNext)(sqlite3_tokenizer_cursor *pCursor, const char**,int*,int*,int*,int*); assert( pTokenizer && pModule ); /* If the user has inserted a NULL value, this function may be called with ** zText==0. In this case, add zero token entries to the hash table and ** return early. */ if( zText==0 ){ *pnWord = 0; return SQLITE_OK; } rc = sqlite3Fts3OpenTokenizer(pTokenizer, iLangid, zText, -1, &pCsr); if( rc!=SQLITE_OK ){ return rc; } xNext = pModule->xNext; while( SQLITE_OK==rc && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos)) ){ int i; if( iPos>=nWord ) nWord = iPos+1; /* Positions cannot be negative; we use -1 as a terminator internally. ** Tokens must have a non-zero length. */ if( iPos<0 || !zToken || nToken<=0 ){ rc = SQLITE_ERROR; break; } /* Add the term to the terms index */ rc = fts3PendingTermsAddOne( p, iCol, iPos, &p->aIndex[0].hPending, zToken, nToken ); /* Add the term to each of the prefix indexes that it is not too ** short for. */ for(i=1; rc==SQLITE_OK && inIndex; i++){ struct Fts3Index *pIndex = &p->aIndex[i]; if( nTokennPrefix ) continue; rc = fts3PendingTermsAddOne( p, iCol, iPos, &pIndex->hPending, zToken, pIndex->nPrefix ); } } pModule->xClose(pCsr); *pnWord += nWord; return (rc==SQLITE_DONE ? SQLITE_OK : rc); } /* ** Calling this function indicates that subsequent calls to ** fts3PendingTermsAdd() are to add term/position-list pairs for the ** contents of the document with docid iDocid. */ static int fts3PendingTermsDocid( Fts3Table *p, /* Full-text table handle */ int bDelete, /* True if this op is a delete */ int iLangid, /* Language id of row being written */ sqlite_int64 iDocid /* Docid of row being written */ ){ assert( iLangid>=0 ); assert( bDelete==1 || bDelete==0 ); /* TODO(shess) Explore whether partially flushing the buffer on ** forced-flush would provide better performance. I suspect that if ** we ordered the doclists by size and flushed the largest until the ** buffer was half empty, that would let the less frequent terms ** generate longer doclists. */ if( iDocidiPrevDocid || (iDocid==p->iPrevDocid && p->bPrevDelete==0) || p->iPrevLangid!=iLangid || p->nPendingData>p->nMaxPendingData ){ int rc = sqlite3Fts3PendingTermsFlush(p); if( rc!=SQLITE_OK ) return rc; } p->iPrevDocid = iDocid; p->iPrevLangid = iLangid; p->bPrevDelete = bDelete; return SQLITE_OK; } /* ** Discard the contents of the pending-terms hash tables. */ SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *p){ int i; for(i=0; inIndex; i++){ Fts3HashElem *pElem; Fts3Hash *pHash = &p->aIndex[i].hPending; for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){ PendingList *pList = (PendingList *)fts3HashData(pElem); fts3PendingListDelete(pList); } fts3HashClear(pHash); } p->nPendingData = 0; } /* ** This function is called by the xUpdate() method as part of an INSERT ** operation. It adds entries for each term in the new record to the ** pendingTerms hash table. ** ** Argument apVal is the same as the similarly named argument passed to ** fts3InsertData(). Parameter iDocid is the docid of the new row. */ static int fts3InsertTerms( Fts3Table *p, int iLangid, sqlite3_value **apVal, u32 *aSz ){ int i; /* Iterator variable */ for(i=2; inColumn+2; i++){ int iCol = i-2; if( p->abNotindexed[iCol]==0 ){ const char *zText = (const char *)sqlite3_value_text(apVal[i]); int rc = fts3PendingTermsAdd(p, iLangid, zText, iCol, &aSz[iCol]); if( rc!=SQLITE_OK ){ return rc; } aSz[p->nColumn] += sqlite3_value_bytes(apVal[i]); } } return SQLITE_OK; } /* ** This function is called by the xUpdate() method for an INSERT operation. ** The apVal parameter is passed a copy of the apVal argument passed by ** SQLite to the xUpdate() method. i.e: ** ** apVal[0] Not used for INSERT. ** apVal[1] rowid ** apVal[2] Left-most user-defined column ** ... ** apVal[p->nColumn+1] Right-most user-defined column ** apVal[p->nColumn+2] Hidden column with same name as table ** apVal[p->nColumn+3] Hidden "docid" column (alias for rowid) ** apVal[p->nColumn+4] Hidden languageid column */ static int fts3InsertData( Fts3Table *p, /* Full-text table */ sqlite3_value **apVal, /* Array of values to insert */ sqlite3_int64 *piDocid /* OUT: Docid for row just inserted */ ){ int rc; /* Return code */ sqlite3_stmt *pContentInsert; /* INSERT INTO %_content VALUES(...) */ if( p->zContentTbl ){ sqlite3_value *pRowid = apVal[p->nColumn+3]; if( sqlite3_value_type(pRowid)==SQLITE_NULL ){ pRowid = apVal[1]; } if( sqlite3_value_type(pRowid)!=SQLITE_INTEGER ){ return SQLITE_CONSTRAINT; } *piDocid = sqlite3_value_int64(pRowid); return SQLITE_OK; } /* Locate the statement handle used to insert data into the %_content ** table. The SQL for this statement is: ** ** INSERT INTO %_content VALUES(?, ?, ?, ...) ** ** The statement features N '?' variables, where N is the number of user ** defined columns in the FTS3 table, plus one for the docid field. */ rc = fts3SqlStmt(p, SQL_CONTENT_INSERT, &pContentInsert, &apVal[1]); if( rc==SQLITE_OK && p->zLanguageid ){ rc = sqlite3_bind_int( pContentInsert, p->nColumn+2, sqlite3_value_int(apVal[p->nColumn+4]) ); } if( rc!=SQLITE_OK ) return rc; /* There is a quirk here. The users INSERT statement may have specified ** a value for the "rowid" field, for the "docid" field, or for both. ** Which is a problem, since "rowid" and "docid" are aliases for the ** same value. For example: ** ** INSERT INTO fts3tbl(rowid, docid) VALUES(1, 2); ** ** In FTS3, this is an error. It is an error to specify non-NULL values ** for both docid and some other rowid alias. */ if( SQLITE_NULL!=sqlite3_value_type(apVal[3+p->nColumn]) ){ if( SQLITE_NULL==sqlite3_value_type(apVal[0]) && SQLITE_NULL!=sqlite3_value_type(apVal[1]) ){ /* A rowid/docid conflict. */ return SQLITE_ERROR; } rc = sqlite3_bind_value(pContentInsert, 1, apVal[3+p->nColumn]); if( rc!=SQLITE_OK ) return rc; } /* Execute the statement to insert the record. Set *piDocid to the ** new docid value. */ sqlite3_step(pContentInsert); rc = sqlite3_reset(pContentInsert); *piDocid = sqlite3_last_insert_rowid(p->db); return rc; } /* ** Remove all data from the FTS3 table. Clear the hash table containing ** pending terms. */ static int fts3DeleteAll(Fts3Table *p, int bContent){ int rc = SQLITE_OK; /* Return code */ /* Discard the contents of the pending-terms hash table. */ sqlite3Fts3PendingTermsClear(p); /* Delete everything from the shadow tables. Except, leave %_content as ** is if bContent is false. */ assert( p->zContentTbl==0 || bContent==0 ); if( bContent ) fts3SqlExec(&rc, p, SQL_DELETE_ALL_CONTENT, 0); fts3SqlExec(&rc, p, SQL_DELETE_ALL_SEGMENTS, 0); fts3SqlExec(&rc, p, SQL_DELETE_ALL_SEGDIR, 0); if( p->bHasDocsize ){ fts3SqlExec(&rc, p, SQL_DELETE_ALL_DOCSIZE, 0); } if( p->bHasStat ){ fts3SqlExec(&rc, p, SQL_DELETE_ALL_STAT, 0); } return rc; } /* ** */ static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){ int iLangid = 0; if( p->zLanguageid ) iLangid = sqlite3_column_int(pSelect, p->nColumn+1); return iLangid; } /* ** The first element in the apVal[] array is assumed to contain the docid ** (an integer) of a row about to be deleted. Remove all terms from the ** full-text index. */ static void fts3DeleteTerms( int *pRC, /* Result code */ Fts3Table *p, /* The FTS table to delete from */ sqlite3_value *pRowid, /* The docid to be deleted */ u32 *aSz, /* Sizes of deleted document written here */ int *pbFound /* OUT: Set to true if row really does exist */ ){ int rc; sqlite3_stmt *pSelect; assert( *pbFound==0 ); if( *pRC ) return; rc = fts3SqlStmt(p, SQL_SELECT_CONTENT_BY_ROWID, &pSelect, &pRowid); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pSelect) ){ int i; int iLangid = langidFromSelect(p, pSelect); i64 iDocid = sqlite3_column_int64(pSelect, 0); rc = fts3PendingTermsDocid(p, 1, iLangid, iDocid); for(i=1; rc==SQLITE_OK && i<=p->nColumn; i++){ int iCol = i-1; if( p->abNotindexed[iCol]==0 ){ const char *zText = (const char *)sqlite3_column_text(pSelect, i); rc = fts3PendingTermsAdd(p, iLangid, zText, -1, &aSz[iCol]); aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i); } } if( rc!=SQLITE_OK ){ sqlite3_reset(pSelect); *pRC = rc; return; } *pbFound = 1; } rc = sqlite3_reset(pSelect); }else{ sqlite3_reset(pSelect); } *pRC = rc; } /* ** Forward declaration to account for the circular dependency between ** functions fts3SegmentMerge() and fts3AllocateSegdirIdx(). */ static int fts3SegmentMerge(Fts3Table *, int, int, int); /* ** This function allocates a new level iLevel index in the segdir table. ** Usually, indexes are allocated within a level sequentially starting ** with 0, so the allocated index is one greater than the value returned ** by: ** ** SELECT max(idx) FROM %_segdir WHERE level = :iLevel ** ** However, if there are already FTS3_MERGE_COUNT indexes at the requested ** level, they are merged into a single level (iLevel+1) segment and the ** allocated index is 0. ** ** If successful, *piIdx is set to the allocated index slot and SQLITE_OK ** returned. Otherwise, an SQLite error code is returned. */ static int fts3AllocateSegdirIdx( Fts3Table *p, int iLangid, /* Language id */ int iIndex, /* Index for p->aIndex */ int iLevel, int *piIdx ){ int rc; /* Return Code */ sqlite3_stmt *pNextIdx; /* Query for next idx at level iLevel */ int iNext = 0; /* Result of query pNextIdx */ assert( iLangid>=0 ); assert( p->nIndex>=1 ); /* Set variable iNext to the next available segdir index at level iLevel. */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &pNextIdx, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64( pNextIdx, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel) ); if( SQLITE_ROW==sqlite3_step(pNextIdx) ){ iNext = sqlite3_column_int(pNextIdx, 0); } rc = sqlite3_reset(pNextIdx); } if( rc==SQLITE_OK ){ /* If iNext is FTS3_MERGE_COUNT, indicating that level iLevel is already ** full, merge all segments in level iLevel into a single iLevel+1 ** segment and allocate (newly freed) index 0 at level iLevel. Otherwise, ** if iNext is less than FTS3_MERGE_COUNT, allocate index iNext. */ if( iNext>=MergeCount(p) ){ fts3LogMerge(16, getAbsoluteLevel(p, iLangid, iIndex, iLevel)); rc = fts3SegmentMerge(p, iLangid, iIndex, iLevel); *piIdx = 0; }else{ *piIdx = iNext; } } return rc; } /* ** The %_segments table is declared as follows: ** ** CREATE TABLE %_segments(blockid INTEGER PRIMARY KEY, block BLOB) ** ** This function reads data from a single row of the %_segments table. The ** specific row is identified by the iBlockid parameter. If paBlob is not ** NULL, then a buffer is allocated using sqlite3_malloc() and populated ** with the contents of the blob stored in the "block" column of the ** identified table row is. Whether or not paBlob is NULL, *pnBlob is set ** to the size of the blob in bytes before returning. ** ** If an error occurs, or the table does not contain the specified row, ** an SQLite error code is returned. Otherwise, SQLITE_OK is returned. If ** paBlob is non-NULL, then it is the responsibility of the caller to ** eventually free the returned buffer. ** ** This function may leave an open sqlite3_blob* handle in the ** Fts3Table.pSegments variable. This handle is reused by subsequent calls ** to this function. The handle may be closed by calling the ** sqlite3Fts3SegmentsClose() function. Reusing a blob handle is a handy ** performance improvement, but the blob handle should always be closed ** before control is returned to the user (to prevent a lock being held ** on the database file for longer than necessary). Thus, any virtual table ** method (xFilter etc.) that may directly or indirectly call this function ** must call sqlite3Fts3SegmentsClose() before returning. */ SQLITE_PRIVATE int sqlite3Fts3ReadBlock( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iBlockid, /* Access the row with blockid=$iBlockid */ char **paBlob, /* OUT: Blob data in malloc'd buffer */ int *pnBlob, /* OUT: Size of blob data */ int *pnLoad /* OUT: Bytes actually loaded */ ){ int rc; /* Return code */ /* pnBlob must be non-NULL. paBlob may be NULL or non-NULL. */ assert( pnBlob ); if( p->pSegments ){ rc = sqlite3_blob_reopen(p->pSegments, iBlockid); }else{ if( 0==p->zSegmentsTbl ){ p->zSegmentsTbl = sqlite3_mprintf("%s_segments", p->zName); if( 0==p->zSegmentsTbl ) return SQLITE_NOMEM; } rc = sqlite3_blob_open( p->db, p->zDb, p->zSegmentsTbl, "block", iBlockid, 0, &p->pSegments ); } if( rc==SQLITE_OK ){ int nByte = sqlite3_blob_bytes(p->pSegments); *pnBlob = nByte; if( paBlob ){ char *aByte = sqlite3_malloc(nByte + FTS3_NODE_PADDING); if( !aByte ){ rc = SQLITE_NOMEM; }else{ if( pnLoad && nByte>(FTS3_NODE_CHUNK_THRESHOLD) ){ nByte = FTS3_NODE_CHUNKSIZE; *pnLoad = nByte; } rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); memset(&aByte[nByte], 0, FTS3_NODE_PADDING); if( rc!=SQLITE_OK ){ sqlite3_free(aByte); aByte = 0; } } *paBlob = aByte; } }else if( rc==SQLITE_ERROR ){ rc = FTS_CORRUPT_VTAB; } return rc; } /* ** Close the blob handle at p->pSegments, if it is open. See comments above ** the sqlite3Fts3ReadBlock() function for details. */ SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *p){ sqlite3_blob_close(p->pSegments); p->pSegments = 0; } static int fts3SegReaderIncrRead(Fts3SegReader *pReader){ int nRead; /* Number of bytes to read */ int rc; /* Return code */ nRead = MIN(pReader->nNode - pReader->nPopulate, FTS3_NODE_CHUNKSIZE); rc = sqlite3_blob_read( pReader->pBlob, &pReader->aNode[pReader->nPopulate], nRead, pReader->nPopulate ); if( rc==SQLITE_OK ){ pReader->nPopulate += nRead; memset(&pReader->aNode[pReader->nPopulate], 0, FTS3_NODE_PADDING); if( pReader->nPopulate==pReader->nNode ){ sqlite3_blob_close(pReader->pBlob); pReader->pBlob = 0; pReader->nPopulate = 0; } } return rc; } static int fts3SegReaderRequire(Fts3SegReader *pReader, char *pFrom, int nByte){ int rc = SQLITE_OK; assert( !pReader->pBlob || (pFrom>=pReader->aNode && pFrom<&pReader->aNode[pReader->nNode]) ); while( pReader->pBlob && rc==SQLITE_OK && (pFrom - pReader->aNode + nByte)>pReader->nPopulate ){ rc = fts3SegReaderIncrRead(pReader); } return rc; } /* ** Set an Fts3SegReader cursor to point at EOF. */ static void fts3SegReaderSetEof(Fts3SegReader *pSeg){ if( !fts3SegReaderIsRootOnly(pSeg) ){ sqlite3_free(pSeg->aNode); sqlite3_blob_close(pSeg->pBlob); pSeg->pBlob = 0; } pSeg->aNode = 0; } /* ** Move the iterator passed as the first argument to the next term in the ** segment. If successful, SQLITE_OK is returned. If there is no next term, ** SQLITE_DONE. Otherwise, an SQLite error code. */ static int fts3SegReaderNext( Fts3Table *p, Fts3SegReader *pReader, int bIncr ){ int rc; /* Return code of various sub-routines */ char *pNext; /* Cursor variable */ int nPrefix; /* Number of bytes in term prefix */ int nSuffix; /* Number of bytes in term suffix */ if( !pReader->aDoclist ){ pNext = pReader->aNode; }else{ pNext = &pReader->aDoclist[pReader->nDoclist]; } if( !pNext || pNext>=&pReader->aNode[pReader->nNode] ){ if( fts3SegReaderIsPending(pReader) ){ Fts3HashElem *pElem = *(pReader->ppNextElem); sqlite3_free(pReader->aNode); pReader->aNode = 0; if( pElem ){ char *aCopy; PendingList *pList = (PendingList *)fts3HashData(pElem); int nCopy = pList->nData+1; int nTerm = fts3HashKeysize(pElem); if( (nTerm+1)>pReader->nTermAlloc ){ sqlite3_free(pReader->zTerm); pReader->zTerm = (char*)sqlite3_malloc((nTerm+1)*2); if( !pReader->zTerm ) return SQLITE_NOMEM; pReader->nTermAlloc = (nTerm+1)*2; } memcpy(pReader->zTerm, fts3HashKey(pElem), nTerm); pReader->zTerm[nTerm] = '\0'; pReader->nTerm = nTerm; aCopy = (char*)sqlite3_malloc(nCopy); if( !aCopy ) return SQLITE_NOMEM; memcpy(aCopy, pList->aData, nCopy); pReader->nNode = pReader->nDoclist = nCopy; pReader->aNode = pReader->aDoclist = aCopy; pReader->ppNextElem++; assert( pReader->aNode ); } return SQLITE_OK; } fts3SegReaderSetEof(pReader); /* If iCurrentBlock>=iLeafEndBlock, this is an EOF condition. All leaf ** blocks have already been traversed. */ #ifdef CORRUPT_DB assert( pReader->iCurrentBlock<=pReader->iLeafEndBlock || CORRUPT_DB ); #endif if( pReader->iCurrentBlock>=pReader->iLeafEndBlock ){ return SQLITE_OK; } rc = sqlite3Fts3ReadBlock( p, ++pReader->iCurrentBlock, &pReader->aNode, &pReader->nNode, (bIncr ? &pReader->nPopulate : 0) ); if( rc!=SQLITE_OK ) return rc; assert( pReader->pBlob==0 ); if( bIncr && pReader->nPopulatenNode ){ pReader->pBlob = p->pSegments; p->pSegments = 0; } pNext = pReader->aNode; } assert( !fts3SegReaderIsPending(pReader) ); rc = fts3SegReaderRequire(pReader, pNext, FTS3_VARINT_MAX*2); if( rc!=SQLITE_OK ) return rc; /* Because of the FTS3_NODE_PADDING bytes of padding, the following is ** safe (no risk of overread) even if the node data is corrupted. */ pNext += fts3GetVarint32(pNext, &nPrefix); pNext += fts3GetVarint32(pNext, &nSuffix); if( nSuffix<=0 || (&pReader->aNode[pReader->nNode] - pNext)pReader->nTerm ){ return FTS_CORRUPT_VTAB; } /* Both nPrefix and nSuffix were read by fts3GetVarint32() and so are ** between 0 and 0x7FFFFFFF. But the sum of the two may cause integer ** overflow - hence the (i64) casts. */ if( (i64)nPrefix+nSuffix>(i64)pReader->nTermAlloc ){ i64 nNew = ((i64)nPrefix+nSuffix)*2; char *zNew = sqlite3_realloc64(pReader->zTerm, nNew); if( !zNew ){ return SQLITE_NOMEM; } pReader->zTerm = zNew; pReader->nTermAlloc = nNew; } rc = fts3SegReaderRequire(pReader, pNext, nSuffix+FTS3_VARINT_MAX); if( rc!=SQLITE_OK ) return rc; memcpy(&pReader->zTerm[nPrefix], pNext, nSuffix); pReader->nTerm = nPrefix+nSuffix; pNext += nSuffix; pNext += fts3GetVarint32(pNext, &pReader->nDoclist); pReader->aDoclist = pNext; pReader->pOffsetList = 0; /* Check that the doclist does not appear to extend past the end of the ** b-tree node. And that the final byte of the doclist is 0x00. If either ** of these statements is untrue, then the data structure is corrupt. */ if( pReader->nDoclist > pReader->nNode-(pReader->aDoclist-pReader->aNode) || (pReader->nPopulate==0 && pReader->aDoclist[pReader->nDoclist-1]) || pReader->nDoclist==0 ){ return FTS_CORRUPT_VTAB; } return SQLITE_OK; } /* ** Set the SegReader to point to the first docid in the doclist associated ** with the current term. */ static int fts3SegReaderFirstDocid(Fts3Table *pTab, Fts3SegReader *pReader){ int rc = SQLITE_OK; assert( pReader->aDoclist ); assert( !pReader->pOffsetList ); if( pTab->bDescIdx && fts3SegReaderIsPending(pReader) ){ u8 bEof = 0; pReader->iDocid = 0; pReader->nOffsetList = 0; sqlite3Fts3DoclistPrev(0, pReader->aDoclist, pReader->nDoclist, &pReader->pOffsetList, &pReader->iDocid, &pReader->nOffsetList, &bEof ); }else{ rc = fts3SegReaderRequire(pReader, pReader->aDoclist, FTS3_VARINT_MAX); if( rc==SQLITE_OK ){ int n = sqlite3Fts3GetVarint(pReader->aDoclist, &pReader->iDocid); pReader->pOffsetList = &pReader->aDoclist[n]; } } return rc; } /* ** Advance the SegReader to point to the next docid in the doclist ** associated with the current term. ** ** If arguments ppOffsetList and pnOffsetList are not NULL, then ** *ppOffsetList is set to point to the first column-offset list ** in the doclist entry (i.e. immediately past the docid varint). ** *pnOffsetList is set to the length of the set of column-offset ** lists, not including the nul-terminator byte. For example: */ static int fts3SegReaderNextDocid( Fts3Table *pTab, Fts3SegReader *pReader, /* Reader to advance to next docid */ char **ppOffsetList, /* OUT: Pointer to current position-list */ int *pnOffsetList /* OUT: Length of *ppOffsetList in bytes */ ){ int rc = SQLITE_OK; char *p = pReader->pOffsetList; char c = 0; assert( p ); if( pTab->bDescIdx && fts3SegReaderIsPending(pReader) ){ /* A pending-terms seg-reader for an FTS4 table that uses order=desc. ** Pending-terms doclists are always built up in ascending order, so ** we have to iterate through them backwards here. */ u8 bEof = 0; if( ppOffsetList ){ *ppOffsetList = pReader->pOffsetList; *pnOffsetList = pReader->nOffsetList - 1; } sqlite3Fts3DoclistPrev(0, pReader->aDoclist, pReader->nDoclist, &p, &pReader->iDocid, &pReader->nOffsetList, &bEof ); if( bEof ){ pReader->pOffsetList = 0; }else{ pReader->pOffsetList = p; } }else{ char *pEnd = &pReader->aDoclist[pReader->nDoclist]; /* Pointer p currently points at the first byte of an offset list. The ** following block advances it to point one byte past the end of ** the same offset list. */ while( 1 ){ /* The following line of code (and the "p++" below the while() loop) is ** normally all that is required to move pointer p to the desired ** position. The exception is if this node is being loaded from disk ** incrementally and pointer "p" now points to the first byte past ** the populated part of pReader->aNode[]. */ while( *p | c ) c = *p++ & 0x80; assert( *p==0 ); if( pReader->pBlob==0 || p<&pReader->aNode[pReader->nPopulate] ) break; rc = fts3SegReaderIncrRead(pReader); if( rc!=SQLITE_OK ) return rc; } p++; /* If required, populate the output variables with a pointer to and the ** size of the previous offset-list. */ if( ppOffsetList ){ *ppOffsetList = pReader->pOffsetList; *pnOffsetList = (int)(p - pReader->pOffsetList - 1); } /* List may have been edited in place by fts3EvalNearTrim() */ while( p=pEnd ){ pReader->pOffsetList = 0; }else{ rc = fts3SegReaderRequire(pReader, p, FTS3_VARINT_MAX); if( rc==SQLITE_OK ){ u64 iDelta; pReader->pOffsetList = p + sqlite3Fts3GetVarintU(p, &iDelta); if( pTab->bDescIdx ){ pReader->iDocid = (i64)((u64)pReader->iDocid - iDelta); }else{ pReader->iDocid = (i64)((u64)pReader->iDocid + iDelta); } } } } return rc; } SQLITE_PRIVATE int sqlite3Fts3MsrOvfl( Fts3Cursor *pCsr, Fts3MultiSegReader *pMsr, int *pnOvfl ){ Fts3Table *p = (Fts3Table*)pCsr->base.pVtab; int nOvfl = 0; int ii; int rc = SQLITE_OK; int pgsz = p->nPgsz; assert( p->bFts4 ); assert( pgsz>0 ); for(ii=0; rc==SQLITE_OK && iinSegment; ii++){ Fts3SegReader *pReader = pMsr->apSegment[ii]; if( !fts3SegReaderIsPending(pReader) && !fts3SegReaderIsRootOnly(pReader) ){ sqlite3_int64 jj; for(jj=pReader->iStartBlock; jj<=pReader->iLeafEndBlock; jj++){ int nBlob; rc = sqlite3Fts3ReadBlock(p, jj, 0, &nBlob, 0); if( rc!=SQLITE_OK ) break; if( (nBlob+35)>pgsz ){ nOvfl += (nBlob + 34)/pgsz; } } } } *pnOvfl = nOvfl; return rc; } /* ** Free all allocations associated with the iterator passed as the ** second argument. */ SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *pReader){ if( pReader ){ sqlite3_free(pReader->zTerm); if( !fts3SegReaderIsRootOnly(pReader) ){ sqlite3_free(pReader->aNode); } sqlite3_blob_close(pReader->pBlob); } sqlite3_free(pReader); } /* ** Allocate a new SegReader object. */ SQLITE_PRIVATE int sqlite3Fts3SegReaderNew( int iAge, /* Segment "age". */ int bLookup, /* True for a lookup only */ sqlite3_int64 iStartLeaf, /* First leaf to traverse */ sqlite3_int64 iEndLeaf, /* Final leaf to traverse */ sqlite3_int64 iEndBlock, /* Final block of segment */ const char *zRoot, /* Buffer containing root node */ int nRoot, /* Size of buffer containing root node */ Fts3SegReader **ppReader /* OUT: Allocated Fts3SegReader */ ){ Fts3SegReader *pReader; /* Newly allocated SegReader object */ int nExtra = 0; /* Bytes to allocate segment root node */ assert( zRoot!=0 || nRoot==0 ); #ifdef CORRUPT_DB assert( zRoot!=0 || CORRUPT_DB ); #endif if( iStartLeaf==0 ){ if( iEndLeaf!=0 ) return FTS_CORRUPT_VTAB; nExtra = nRoot + FTS3_NODE_PADDING; } pReader = (Fts3SegReader *)sqlite3_malloc(sizeof(Fts3SegReader) + nExtra); if( !pReader ){ return SQLITE_NOMEM; } memset(pReader, 0, sizeof(Fts3SegReader)); pReader->iIdx = iAge; pReader->bLookup = bLookup!=0; pReader->iStartBlock = iStartLeaf; pReader->iLeafEndBlock = iEndLeaf; pReader->iEndBlock = iEndBlock; if( nExtra ){ /* The entire segment is stored in the root node. */ pReader->aNode = (char *)&pReader[1]; pReader->rootOnly = 1; pReader->nNode = nRoot; if( nRoot ) memcpy(pReader->aNode, zRoot, nRoot); memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING); }else{ pReader->iCurrentBlock = iStartLeaf-1; } *ppReader = pReader; return SQLITE_OK; } /* ** This is a comparison function used as a qsort() callback when sorting ** an array of pending terms by term. This occurs as part of flushing ** the contents of the pending-terms hash table to the database. */ static int SQLITE_CDECL fts3CompareElemByTerm( const void *lhs, const void *rhs ){ char *z1 = fts3HashKey(*(Fts3HashElem **)lhs); char *z2 = fts3HashKey(*(Fts3HashElem **)rhs); int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs); int n2 = fts3HashKeysize(*(Fts3HashElem **)rhs); int n = (n1aIndex */ const char *zTerm, /* Term to search for */ int nTerm, /* Size of buffer zTerm */ int bPrefix, /* True for a prefix iterator */ Fts3SegReader **ppReader /* OUT: SegReader for pending-terms */ ){ Fts3SegReader *pReader = 0; /* Fts3SegReader object to return */ Fts3HashElem *pE; /* Iterator variable */ Fts3HashElem **aElem = 0; /* Array of term hash entries to scan */ int nElem = 0; /* Size of array at aElem */ int rc = SQLITE_OK; /* Return Code */ Fts3Hash *pHash; pHash = &p->aIndex[iIndex].hPending; if( bPrefix ){ int nAlloc = 0; /* Size of allocated array at aElem */ for(pE=fts3HashFirst(pHash); pE; pE=fts3HashNext(pE)){ char *zKey = (char *)fts3HashKey(pE); int nKey = fts3HashKeysize(pE); if( nTerm==0 || (nKey>=nTerm && 0==memcmp(zKey, zTerm, nTerm)) ){ if( nElem==nAlloc ){ Fts3HashElem **aElem2; nAlloc += 16; aElem2 = (Fts3HashElem **)sqlite3_realloc( aElem, nAlloc*sizeof(Fts3HashElem *) ); if( !aElem2 ){ rc = SQLITE_NOMEM; nElem = 0; break; } aElem = aElem2; } aElem[nElem++] = pE; } } /* If more than one term matches the prefix, sort the Fts3HashElem ** objects in term order using qsort(). This uses the same comparison ** callback as is used when flushing terms to disk. */ if( nElem>1 ){ qsort(aElem, nElem, sizeof(Fts3HashElem *), fts3CompareElemByTerm); } }else{ /* The query is a simple term lookup that matches at most one term in ** the index. All that is required is a straight hash-lookup. ** ** Because the stack address of pE may be accessed via the aElem pointer ** below, the "Fts3HashElem *pE" must be declared so that it is valid ** within this entire function, not just this "else{...}" block. */ pE = fts3HashFindElem(pHash, zTerm, nTerm); if( pE ){ aElem = &pE; nElem = 1; } } if( nElem>0 ){ sqlite3_int64 nByte; nByte = sizeof(Fts3SegReader) + (nElem+1)*sizeof(Fts3HashElem *); pReader = (Fts3SegReader *)sqlite3_malloc64(nByte); if( !pReader ){ rc = SQLITE_NOMEM; }else{ memset(pReader, 0, nByte); pReader->iIdx = 0x7FFFFFFF; pReader->ppNextElem = (Fts3HashElem **)&pReader[1]; memcpy(pReader->ppNextElem, aElem, nElem*sizeof(Fts3HashElem *)); } } if( bPrefix ){ sqlite3_free(aElem); } *ppReader = pReader; return rc; } /* ** Compare the entries pointed to by two Fts3SegReader structures. ** Comparison is as follows: ** ** 1) EOF is greater than not EOF. ** ** 2) The current terms (if any) are compared using memcmp(). If one ** term is a prefix of another, the longer term is considered the ** larger. ** ** 3) By segment age. An older segment is considered larger. */ static int fts3SegReaderCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ int rc; if( pLhs->aNode && pRhs->aNode ){ int rc2 = pLhs->nTerm - pRhs->nTerm; if( rc2<0 ){ rc = memcmp(pLhs->zTerm, pRhs->zTerm, pLhs->nTerm); }else{ rc = memcmp(pLhs->zTerm, pRhs->zTerm, pRhs->nTerm); } if( rc==0 ){ rc = rc2; } }else{ rc = (pLhs->aNode==0) - (pRhs->aNode==0); } if( rc==0 ){ rc = pRhs->iIdx - pLhs->iIdx; } assert_fts3_nc( rc!=0 ); return rc; } /* ** A different comparison function for SegReader structures. In this ** version, it is assumed that each SegReader points to an entry in ** a doclist for identical terms. Comparison is made as follows: ** ** 1) EOF (end of doclist in this case) is greater than not EOF. ** ** 2) By current docid. ** ** 3) By segment age. An older segment is considered larger. */ static int fts3SegReaderDoclistCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0); if( rc==0 ){ if( pLhs->iDocid==pRhs->iDocid ){ rc = pRhs->iIdx - pLhs->iIdx; }else{ rc = (pLhs->iDocid > pRhs->iDocid) ? 1 : -1; } } assert( pLhs->aNode && pRhs->aNode ); return rc; } static int fts3SegReaderDoclistCmpRev(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0); if( rc==0 ){ if( pLhs->iDocid==pRhs->iDocid ){ rc = pRhs->iIdx - pLhs->iIdx; }else{ rc = (pLhs->iDocid < pRhs->iDocid) ? 1 : -1; } } assert( pLhs->aNode && pRhs->aNode ); return rc; } /* ** Compare the term that the Fts3SegReader object passed as the first argument ** points to with the term specified by arguments zTerm and nTerm. ** ** If the pSeg iterator is already at EOF, return 0. Otherwise, return ** -ve if the pSeg term is less than zTerm/nTerm, 0 if the two terms are ** equal, or +ve if the pSeg term is greater than zTerm/nTerm. */ static int fts3SegReaderTermCmp( Fts3SegReader *pSeg, /* Segment reader object */ const char *zTerm, /* Term to compare to */ int nTerm /* Size of term zTerm in bytes */ ){ int res = 0; if( pSeg->aNode ){ if( pSeg->nTerm>nTerm ){ res = memcmp(pSeg->zTerm, zTerm, nTerm); }else{ res = memcmp(pSeg->zTerm, zTerm, pSeg->nTerm); } if( res==0 ){ res = pSeg->nTerm-nTerm; } } return res; } /* ** Argument apSegment is an array of nSegment elements. It is known that ** the final (nSegment-nSuspect) members are already in sorted order ** (according to the comparison function provided). This function shuffles ** the array around until all entries are in sorted order. */ static void fts3SegReaderSort( Fts3SegReader **apSegment, /* Array to sort entries of */ int nSegment, /* Size of apSegment array */ int nSuspect, /* Unsorted entry count */ int (*xCmp)(Fts3SegReader *, Fts3SegReader *) /* Comparison function */ ){ int i; /* Iterator variable */ assert( nSuspect<=nSegment ); if( nSuspect==nSegment ) nSuspect--; for(i=nSuspect-1; i>=0; i--){ int j; for(j=i; j<(nSegment-1); j++){ Fts3SegReader *pTmp; if( xCmp(apSegment[j], apSegment[j+1])<0 ) break; pTmp = apSegment[j+1]; apSegment[j+1] = apSegment[j]; apSegment[j] = pTmp; } } #ifndef NDEBUG /* Check that the list really is sorted now. */ for(i=0; i<(nSuspect-1); i++){ assert( xCmp(apSegment[i], apSegment[i+1])<0 ); } #endif } /* ** Insert a record into the %_segments table. */ static int fts3WriteSegment( Fts3Table *p, /* Virtual table handle */ sqlite3_int64 iBlock, /* Block id for new block */ char *z, /* Pointer to buffer containing block data */ int n /* Size of buffer z in bytes */ ){ sqlite3_stmt *pStmt; int rc = fts3SqlStmt(p, SQL_INSERT_SEGMENTS, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, iBlock); sqlite3_bind_blob(pStmt, 2, z, n, SQLITE_STATIC); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); sqlite3_bind_null(pStmt, 2); } return rc; } /* ** Find the largest relative level number in the table. If successful, set ** *pnMax to this value and return SQLITE_OK. Otherwise, if an error occurs, ** set *pnMax to zero and return an SQLite error code. */ SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *p, int *pnMax){ int rc; int mxLevel = 0; sqlite3_stmt *pStmt = 0; rc = fts3SqlStmt(p, SQL_SELECT_MXLEVEL, &pStmt, 0); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pStmt) ){ mxLevel = sqlite3_column_int(pStmt, 0); } rc = sqlite3_reset(pStmt); } *pnMax = mxLevel; return rc; } /* ** Insert a record into the %_segdir table. */ static int fts3WriteSegdir( Fts3Table *p, /* Virtual table handle */ sqlite3_int64 iLevel, /* Value for "level" field (absolute level) */ int iIdx, /* Value for "idx" field */ sqlite3_int64 iStartBlock, /* Value for "start_block" field */ sqlite3_int64 iLeafEndBlock, /* Value for "leaves_end_block" field */ sqlite3_int64 iEndBlock, /* Value for "end_block" field */ sqlite3_int64 nLeafData, /* Bytes of leaf data in segment */ char *zRoot, /* Blob value for "root" field */ int nRoot /* Number of bytes in buffer zRoot */ ){ sqlite3_stmt *pStmt; int rc = fts3SqlStmt(p, SQL_INSERT_SEGDIR, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, iLevel); sqlite3_bind_int(pStmt, 2, iIdx); sqlite3_bind_int64(pStmt, 3, iStartBlock); sqlite3_bind_int64(pStmt, 4, iLeafEndBlock); if( nLeafData==0 ){ sqlite3_bind_int64(pStmt, 5, iEndBlock); }else{ char *zEnd = sqlite3_mprintf("%lld %lld", iEndBlock, nLeafData); if( !zEnd ) return SQLITE_NOMEM; sqlite3_bind_text(pStmt, 5, zEnd, -1, sqlite3_free); } sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); sqlite3_bind_null(pStmt, 6); } return rc; } /* ** Return the size of the common prefix (if any) shared by zPrev and ** zNext, in bytes. For example, ** ** fts3PrefixCompress("abc", 3, "abcdef", 6) // returns 3 ** fts3PrefixCompress("abX", 3, "abcdef", 6) // returns 2 ** fts3PrefixCompress("abX", 3, "Xbcdef", 6) // returns 0 */ static int fts3PrefixCompress( const char *zPrev, /* Buffer containing previous term */ int nPrev, /* Size of buffer zPrev in bytes */ const char *zNext, /* Buffer containing next term */ int nNext /* Size of buffer zNext in bytes */ ){ int n; for(n=0; nnData; /* Current size of node in bytes */ int nReq = nData; /* Required space after adding zTerm */ int nPrefix; /* Number of bytes of prefix compression */ int nSuffix; /* Suffix length */ nPrefix = fts3PrefixCompress(pTree->zTerm, pTree->nTerm, zTerm, nTerm); nSuffix = nTerm-nPrefix; /* If nSuffix is zero or less, then zTerm/nTerm must be a prefix of ** pWriter->zTerm/pWriter->nTerm. i.e. must be equal to or less than when ** compared with BINARY collation. This indicates corruption. */ if( nSuffix<=0 ) return FTS_CORRUPT_VTAB; nReq += sqlite3Fts3VarintLen(nPrefix)+sqlite3Fts3VarintLen(nSuffix)+nSuffix; if( nReq<=p->nNodeSize || !pTree->zTerm ){ if( nReq>p->nNodeSize ){ /* An unusual case: this is the first term to be added to the node ** and the static node buffer (p->nNodeSize bytes) is not large ** enough. Use a separately malloced buffer instead This wastes ** p->nNodeSize bytes, but since this scenario only comes about when ** the database contain two terms that share a prefix of almost 2KB, ** this is not expected to be a serious problem. */ assert( pTree->aData==(char *)&pTree[1] ); pTree->aData = (char *)sqlite3_malloc(nReq); if( !pTree->aData ){ return SQLITE_NOMEM; } } if( pTree->zTerm ){ /* There is no prefix-length field for first term in a node */ nData += sqlite3Fts3PutVarint(&pTree->aData[nData], nPrefix); } nData += sqlite3Fts3PutVarint(&pTree->aData[nData], nSuffix); memcpy(&pTree->aData[nData], &zTerm[nPrefix], nSuffix); pTree->nData = nData + nSuffix; pTree->nEntry++; if( isCopyTerm ){ if( pTree->nMalloczMalloc, nTerm*2); if( !zNew ){ return SQLITE_NOMEM; } pTree->nMalloc = nTerm*2; pTree->zMalloc = zNew; } pTree->zTerm = pTree->zMalloc; memcpy(pTree->zTerm, zTerm, nTerm); pTree->nTerm = nTerm; }else{ pTree->zTerm = (char *)zTerm; pTree->nTerm = nTerm; } return SQLITE_OK; } } /* If control flows to here, it was not possible to append zTerm to the ** current node. Create a new node (a right-sibling of the current node). ** If this is the first node in the tree, the term is added to it. ** ** Otherwise, the term is not added to the new node, it is left empty for ** now. Instead, the term is inserted into the parent of pTree. If pTree ** has no parent, one is created here. */ pNew = (SegmentNode *)sqlite3_malloc(sizeof(SegmentNode) + p->nNodeSize); if( !pNew ){ return SQLITE_NOMEM; } memset(pNew, 0, sizeof(SegmentNode)); pNew->nData = 1 + FTS3_VARINT_MAX; pNew->aData = (char *)&pNew[1]; if( pTree ){ SegmentNode *pParent = pTree->pParent; rc = fts3NodeAddTerm(p, &pParent, isCopyTerm, zTerm, nTerm); if( pTree->pParent==0 ){ pTree->pParent = pParent; } pTree->pRight = pNew; pNew->pLeftmost = pTree->pLeftmost; pNew->pParent = pParent; pNew->zMalloc = pTree->zMalloc; pNew->nMalloc = pTree->nMalloc; pTree->zMalloc = 0; }else{ pNew->pLeftmost = pNew; rc = fts3NodeAddTerm(p, &pNew, isCopyTerm, zTerm, nTerm); } *ppTree = pNew; return rc; } /* ** Helper function for fts3NodeWrite(). */ static int fts3TreeFinishNode( SegmentNode *pTree, int iHeight, sqlite3_int64 iLeftChild ){ int nStart; assert( iHeight>=1 && iHeight<128 ); nStart = FTS3_VARINT_MAX - sqlite3Fts3VarintLen(iLeftChild); pTree->aData[nStart] = (char)iHeight; sqlite3Fts3PutVarint(&pTree->aData[nStart+1], iLeftChild); return nStart; } /* ** Write the buffer for the segment node pTree and all of its peers to the ** database. Then call this function recursively to write the parent of ** pTree and its peers to the database. ** ** Except, if pTree is a root node, do not write it to the database. Instead, ** set output variables *paRoot and *pnRoot to contain the root node. ** ** If successful, SQLITE_OK is returned and output variable *piLast is ** set to the largest blockid written to the database (or zero if no ** blocks were written to the db). Otherwise, an SQLite error code is ** returned. */ static int fts3NodeWrite( Fts3Table *p, /* Virtual table handle */ SegmentNode *pTree, /* SegmentNode handle */ int iHeight, /* Height of this node in tree */ sqlite3_int64 iLeaf, /* Block id of first leaf node */ sqlite3_int64 iFree, /* Block id of next free slot in %_segments */ sqlite3_int64 *piLast, /* OUT: Block id of last entry written */ char **paRoot, /* OUT: Data for root node */ int *pnRoot /* OUT: Size of root node in bytes */ ){ int rc = SQLITE_OK; if( !pTree->pParent ){ /* Root node of the tree. */ int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf); *piLast = iFree-1; *pnRoot = pTree->nData - nStart; *paRoot = &pTree->aData[nStart]; }else{ SegmentNode *pIter; sqlite3_int64 iNextFree = iFree; sqlite3_int64 iNextLeaf = iLeaf; for(pIter=pTree->pLeftmost; pIter && rc==SQLITE_OK; pIter=pIter->pRight){ int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf); int nWrite = pIter->nData - nStart; rc = fts3WriteSegment(p, iNextFree, &pIter->aData[nStart], nWrite); iNextFree++; iNextLeaf += (pIter->nEntry+1); } if( rc==SQLITE_OK ){ assert( iNextLeaf==iFree ); rc = fts3NodeWrite( p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot ); } } return rc; } /* ** Free all memory allocations associated with the tree pTree. */ static void fts3NodeFree(SegmentNode *pTree){ if( pTree ){ SegmentNode *p = pTree->pLeftmost; fts3NodeFree(p->pParent); while( p ){ SegmentNode *pRight = p->pRight; if( p->aData!=(char *)&p[1] ){ sqlite3_free(p->aData); } assert( pRight==0 || p->zMalloc==0 ); sqlite3_free(p->zMalloc); sqlite3_free(p); p = pRight; } } } /* ** Add a term to the segment being constructed by the SegmentWriter object ** *ppWriter. When adding the first term to a segment, *ppWriter should ** be passed NULL. This function will allocate a new SegmentWriter object ** and return it via the input/output variable *ppWriter in this case. ** ** If successful, SQLITE_OK is returned. Otherwise, an SQLite error code. */ static int fts3SegWriterAdd( Fts3Table *p, /* Virtual table handle */ SegmentWriter **ppWriter, /* IN/OUT: SegmentWriter handle */ int isCopyTerm, /* True if buffer zTerm must be copied */ const char *zTerm, /* Pointer to buffer containing term */ int nTerm, /* Size of term in bytes */ const char *aDoclist, /* Pointer to buffer containing doclist */ int nDoclist /* Size of doclist in bytes */ ){ int nPrefix; /* Size of term prefix in bytes */ int nSuffix; /* Size of term suffix in bytes */ int nReq; /* Number of bytes required on leaf page */ int nData; SegmentWriter *pWriter = *ppWriter; if( !pWriter ){ int rc; sqlite3_stmt *pStmt; /* Allocate the SegmentWriter structure */ pWriter = (SegmentWriter *)sqlite3_malloc(sizeof(SegmentWriter)); if( !pWriter ) return SQLITE_NOMEM; memset(pWriter, 0, sizeof(SegmentWriter)); *ppWriter = pWriter; /* Allocate a buffer in which to accumulate data */ pWriter->aData = (char *)sqlite3_malloc(p->nNodeSize); if( !pWriter->aData ) return SQLITE_NOMEM; pWriter->nSize = p->nNodeSize; /* Find the next free blockid in the %_segments table */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENTS_ID, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; if( SQLITE_ROW==sqlite3_step(pStmt) ){ pWriter->iFree = sqlite3_column_int64(pStmt, 0); pWriter->iFirst = pWriter->iFree; } rc = sqlite3_reset(pStmt); if( rc!=SQLITE_OK ) return rc; } nData = pWriter->nData; nPrefix = fts3PrefixCompress(pWriter->zTerm, pWriter->nTerm, zTerm, nTerm); nSuffix = nTerm-nPrefix; /* If nSuffix is zero or less, then zTerm/nTerm must be a prefix of ** pWriter->zTerm/pWriter->nTerm. i.e. must be equal to or less than when ** compared with BINARY collation. This indicates corruption. */ if( nSuffix<=0 ) return FTS_CORRUPT_VTAB; /* Figure out how many bytes are required by this new entry */ nReq = sqlite3Fts3VarintLen(nPrefix) + /* varint containing prefix size */ sqlite3Fts3VarintLen(nSuffix) + /* varint containing suffix size */ nSuffix + /* Term suffix */ sqlite3Fts3VarintLen(nDoclist) + /* Size of doclist */ nDoclist; /* Doclist data */ if( nData>0 && nData+nReq>p->nNodeSize ){ int rc; /* The current leaf node is full. Write it out to the database. */ if( pWriter->iFree==LARGEST_INT64 ) return FTS_CORRUPT_VTAB; rc = fts3WriteSegment(p, pWriter->iFree++, pWriter->aData, nData); if( rc!=SQLITE_OK ) return rc; p->nLeafAdd++; /* Add the current term to the interior node tree. The term added to ** the interior tree must: ** ** a) be greater than the largest term on the leaf node just written ** to the database (still available in pWriter->zTerm), and ** ** b) be less than or equal to the term about to be added to the new ** leaf node (zTerm/nTerm). ** ** In other words, it must be the prefix of zTerm 1 byte longer than ** the common prefix (if any) of zTerm and pWriter->zTerm. */ assert( nPrefixpTree, isCopyTerm, zTerm, nPrefix+1); if( rc!=SQLITE_OK ) return rc; nData = 0; pWriter->nTerm = 0; nPrefix = 0; nSuffix = nTerm; nReq = 1 + /* varint containing prefix size */ sqlite3Fts3VarintLen(nTerm) + /* varint containing suffix size */ nTerm + /* Term suffix */ sqlite3Fts3VarintLen(nDoclist) + /* Size of doclist */ nDoclist; /* Doclist data */ } /* Increase the total number of bytes written to account for the new entry. */ pWriter->nLeafData += nReq; /* If the buffer currently allocated is too small for this entry, realloc ** the buffer to make it large enough. */ if( nReq>pWriter->nSize ){ char *aNew = sqlite3_realloc(pWriter->aData, nReq); if( !aNew ) return SQLITE_NOMEM; pWriter->aData = aNew; pWriter->nSize = nReq; } assert( nData+nReq<=pWriter->nSize ); /* Append the prefix-compressed term and doclist to the buffer. */ nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nPrefix); nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nSuffix); assert( nSuffix>0 ); memcpy(&pWriter->aData[nData], &zTerm[nPrefix], nSuffix); nData += nSuffix; nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nDoclist); assert( nDoclist>0 ); memcpy(&pWriter->aData[nData], aDoclist, nDoclist); pWriter->nData = nData + nDoclist; /* Save the current term so that it can be used to prefix-compress the next. ** If the isCopyTerm parameter is true, then the buffer pointed to by ** zTerm is transient, so take a copy of the term data. Otherwise, just ** store a copy of the pointer. */ if( isCopyTerm ){ if( nTerm>pWriter->nMalloc ){ char *zNew = sqlite3_realloc(pWriter->zMalloc, nTerm*2); if( !zNew ){ return SQLITE_NOMEM; } pWriter->nMalloc = nTerm*2; pWriter->zMalloc = zNew; pWriter->zTerm = zNew; } assert( pWriter->zTerm==pWriter->zMalloc ); assert( nTerm>0 ); memcpy(pWriter->zTerm, zTerm, nTerm); }else{ pWriter->zTerm = (char *)zTerm; } pWriter->nTerm = nTerm; return SQLITE_OK; } /* ** Flush all data associated with the SegmentWriter object pWriter to the ** database. This function must be called after all terms have been added ** to the segment using fts3SegWriterAdd(). If successful, SQLITE_OK is ** returned. Otherwise, an SQLite error code. */ static int fts3SegWriterFlush( Fts3Table *p, /* Virtual table handle */ SegmentWriter *pWriter, /* SegmentWriter to flush to the db */ sqlite3_int64 iLevel, /* Value for 'level' column of %_segdir */ int iIdx /* Value for 'idx' column of %_segdir */ ){ int rc; /* Return code */ if( pWriter->pTree ){ sqlite3_int64 iLast = 0; /* Largest block id written to database */ sqlite3_int64 iLastLeaf; /* Largest leaf block id written to db */ char *zRoot = NULL; /* Pointer to buffer containing root node */ int nRoot = 0; /* Size of buffer zRoot */ iLastLeaf = pWriter->iFree; rc = fts3WriteSegment(p, pWriter->iFree++, pWriter->aData, pWriter->nData); if( rc==SQLITE_OK ){ rc = fts3NodeWrite(p, pWriter->pTree, 1, pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot); } if( rc==SQLITE_OK ){ rc = fts3WriteSegdir(p, iLevel, iIdx, pWriter->iFirst, iLastLeaf, iLast, pWriter->nLeafData, zRoot, nRoot); } }else{ /* The entire tree fits on the root node. Write it to the segdir table. */ rc = fts3WriteSegdir(p, iLevel, iIdx, 0, 0, 0, pWriter->nLeafData, pWriter->aData, pWriter->nData); } p->nLeafAdd++; return rc; } /* ** Release all memory held by the SegmentWriter object passed as the ** first argument. */ static void fts3SegWriterFree(SegmentWriter *pWriter){ if( pWriter ){ sqlite3_free(pWriter->aData); sqlite3_free(pWriter->zMalloc); fts3NodeFree(pWriter->pTree); sqlite3_free(pWriter); } } /* ** The first value in the apVal[] array is assumed to contain an integer. ** This function tests if there exist any documents with docid values that ** are different from that integer. i.e. if deleting the document with docid ** pRowid would mean the FTS3 table were empty. ** ** If successful, *pisEmpty is set to true if the table is empty except for ** document pRowid, or false otherwise, and SQLITE_OK is returned. If an ** error occurs, an SQLite error code is returned. */ static int fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty){ sqlite3_stmt *pStmt; int rc; if( p->zContentTbl ){ /* If using the content=xxx option, assume the table is never empty */ *pisEmpty = 0; rc = SQLITE_OK; }else{ rc = fts3SqlStmt(p, SQL_IS_EMPTY, &pStmt, &pRowid); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pStmt) ){ *pisEmpty = sqlite3_column_int(pStmt, 0); } rc = sqlite3_reset(pStmt); } } return rc; } /* ** Set *pnMax to the largest segment level in the database for the index ** iIndex. ** ** Segment levels are stored in the 'level' column of the %_segdir table. ** ** Return SQLITE_OK if successful, or an SQLite error code if not. */ static int fts3SegmentMaxLevel( Fts3Table *p, int iLangid, int iIndex, sqlite3_int64 *pnMax ){ sqlite3_stmt *pStmt; int rc; assert( iIndex>=0 && iIndexnIndex ); /* Set pStmt to the compiled version of: ** ** SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? ** ** (1024 is actually the value of macro FTS3_SEGDIR_PREFIXLEVEL_STR). */ rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR_MAX_LEVEL, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); sqlite3_bind_int64(pStmt, 2, getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) ); if( SQLITE_ROW==sqlite3_step(pStmt) ){ *pnMax = sqlite3_column_int64(pStmt, 0); } return sqlite3_reset(pStmt); } /* ** iAbsLevel is an absolute level that may be assumed to exist within ** the database. This function checks if it is the largest level number ** within its index. Assuming no error occurs, *pbMax is set to 1 if ** iAbsLevel is indeed the largest level, or 0 otherwise, and SQLITE_OK ** is returned. If an error occurs, an error code is returned and the ** final value of *pbMax is undefined. */ static int fts3SegmentIsMaxLevel(Fts3Table *p, i64 iAbsLevel, int *pbMax){ /* Set pStmt to the compiled version of: ** ** SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? ** ** (1024 is actually the value of macro FTS3_SEGDIR_PREFIXLEVEL_STR). */ sqlite3_stmt *pStmt; int rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR_MAX_LEVEL, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; sqlite3_bind_int64(pStmt, 1, iAbsLevel+1); sqlite3_bind_int64(pStmt, 2, (((u64)iAbsLevel/FTS3_SEGDIR_MAXLEVEL)+1) * FTS3_SEGDIR_MAXLEVEL ); *pbMax = 0; if( SQLITE_ROW==sqlite3_step(pStmt) ){ *pbMax = sqlite3_column_type(pStmt, 0)==SQLITE_NULL; } return sqlite3_reset(pStmt); } /* ** Delete all entries in the %_segments table associated with the segment ** opened with seg-reader pSeg. This function does not affect the contents ** of the %_segdir table. */ static int fts3DeleteSegment( Fts3Table *p, /* FTS table handle */ Fts3SegReader *pSeg /* Segment to delete */ ){ int rc = SQLITE_OK; /* Return code */ if( pSeg->iStartBlock ){ sqlite3_stmt *pDelete; /* SQL statement to delete rows */ rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDelete, 1, pSeg->iStartBlock); sqlite3_bind_int64(pDelete, 2, pSeg->iEndBlock); sqlite3_step(pDelete); rc = sqlite3_reset(pDelete); } } return rc; } /* ** This function is used after merging multiple segments into a single large ** segment to delete the old, now redundant, segment b-trees. Specifically, ** it: ** ** 1) Deletes all %_segments entries for the segments associated with ** each of the SegReader objects in the array passed as the third ** argument, and ** ** 2) deletes all %_segdir entries with level iLevel, or all %_segdir ** entries regardless of level if (iLevel<0). ** ** SQLITE_OK is returned if successful, otherwise an SQLite error code. */ static int fts3DeleteSegdir( Fts3Table *p, /* Virtual table handle */ int iLangid, /* Language id */ int iIndex, /* Index for p->aIndex */ int iLevel, /* Level of %_segdir entries to delete */ Fts3SegReader **apSegment, /* Array of SegReader objects */ int nReader /* Size of array apSegment */ ){ int rc = SQLITE_OK; /* Return Code */ int i; /* Iterator variable */ sqlite3_stmt *pDelete = 0; /* SQL statement to delete rows */ for(i=0; rc==SQLITE_OK && i=0 || iLevel==FTS3_SEGCURSOR_ALL ); if( iLevel==FTS3_SEGCURSOR_ALL ){ rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_RANGE, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); sqlite3_bind_int64(pDelete, 2, getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) ); } }else{ rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64( pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel) ); } } if( rc==SQLITE_OK ){ sqlite3_step(pDelete); rc = sqlite3_reset(pDelete); } return rc; } /* ** When this function is called, buffer *ppList (size *pnList bytes) contains ** a position list that may (or may not) feature multiple columns. This ** function adjusts the pointer *ppList and the length *pnList so that they ** identify the subset of the position list that corresponds to column iCol. ** ** If there are no entries in the input position list for column iCol, then ** *pnList is set to zero before returning. ** ** If parameter bZero is non-zero, then any part of the input list following ** the end of the output list is zeroed before returning. */ static void fts3ColumnFilter( int iCol, /* Column to filter on */ int bZero, /* Zero out anything following *ppList */ char **ppList, /* IN/OUT: Pointer to position list */ int *pnList /* IN/OUT: Size of buffer *ppList in bytes */ ){ char *pList = *ppList; int nList = *pnList; char *pEnd = &pList[nList]; int iCurrent = 0; char *p = pList; assert( iCol>=0 ); while( 1 ){ char c = 0; while( p0){ memset(&pList[nList], 0, pEnd - &pList[nList]); } *ppList = pList; *pnList = nList; } /* ** Cache data in the Fts3MultiSegReader.aBuffer[] buffer (overwriting any ** existing data). Grow the buffer if required. ** ** If successful, return SQLITE_OK. Otherwise, if an OOM error is encountered ** trying to resize the buffer, return SQLITE_NOMEM. */ static int fts3MsrBufferData( Fts3MultiSegReader *pMsr, /* Multi-segment-reader handle */ char *pList, int nList ){ if( nList>pMsr->nBuffer ){ char *pNew; pMsr->nBuffer = nList*2; pNew = (char *)sqlite3_realloc(pMsr->aBuffer, pMsr->nBuffer); if( !pNew ) return SQLITE_NOMEM; pMsr->aBuffer = pNew; } assert( nList>0 ); memcpy(pMsr->aBuffer, pList, nList); return SQLITE_OK; } SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pMsr, /* Multi-segment-reader handle */ sqlite3_int64 *piDocid, /* OUT: Docid value */ char **paPoslist, /* OUT: Pointer to position list */ int *pnPoslist /* OUT: Size of position list in bytes */ ){ int nMerge = pMsr->nAdvance; Fts3SegReader **apSegment = pMsr->apSegment; int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp ); if( nMerge==0 ){ *paPoslist = 0; return SQLITE_OK; } while( 1 ){ Fts3SegReader *pSeg; pSeg = pMsr->apSegment[0]; if( pSeg->pOffsetList==0 ){ *paPoslist = 0; break; }else{ int rc; char *pList; int nList; int j; sqlite3_int64 iDocid = apSegment[0]->iDocid; rc = fts3SegReaderNextDocid(p, apSegment[0], &pList, &nList); j = 1; while( rc==SQLITE_OK && jpOffsetList && apSegment[j]->iDocid==iDocid ){ rc = fts3SegReaderNextDocid(p, apSegment[j], 0, 0); j++; } if( rc!=SQLITE_OK ) return rc; fts3SegReaderSort(pMsr->apSegment, nMerge, j, xCmp); if( nList>0 && fts3SegReaderIsPending(apSegment[0]) ){ rc = fts3MsrBufferData(pMsr, pList, nList+1); if( rc!=SQLITE_OK ) return rc; assert( (pMsr->aBuffer[nList] & 0xFE)==0x00 ); pList = pMsr->aBuffer; } if( pMsr->iColFilter>=0 ){ fts3ColumnFilter(pMsr->iColFilter, 1, &pList, &nList); } if( nList>0 ){ *paPoslist = pList; *piDocid = iDocid; *pnPoslist = nList; break; } } } return SQLITE_OK; } static int fts3SegReaderStart( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr, /* Cursor object */ const char *zTerm, /* Term searched for (or NULL) */ int nTerm /* Length of zTerm in bytes */ ){ int i; int nSeg = pCsr->nSegment; /* If the Fts3SegFilter defines a specific term (or term prefix) to search ** for, then advance each segment iterator until it points to a term of ** equal or greater value than the specified term. This prevents many ** unnecessary merge/sort operations for the case where single segment ** b-tree leaf nodes contain more than one term. */ for(i=0; pCsr->bRestart==0 && inSegment; i++){ int res = 0; Fts3SegReader *pSeg = pCsr->apSegment[i]; do { int rc = fts3SegReaderNext(p, pSeg, 0); if( rc!=SQLITE_OK ) return rc; }while( zTerm && (res = fts3SegReaderTermCmp(pSeg, zTerm, nTerm))<0 ); if( pSeg->bLookup && res!=0 ){ fts3SegReaderSetEof(pSeg); } } fts3SegReaderSort(pCsr->apSegment, nSeg, nSeg, fts3SegReaderCmp); return SQLITE_OK; } SQLITE_PRIVATE int sqlite3Fts3SegReaderStart( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr, /* Cursor object */ Fts3SegFilter *pFilter /* Restrictions on range of iteration */ ){ pCsr->pFilter = pFilter; return fts3SegReaderStart(p, pCsr, pFilter->zTerm, pFilter->nTerm); } SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr, /* Cursor object */ int iCol, /* Column to match on. */ const char *zTerm, /* Term to iterate through a doclist for */ int nTerm /* Number of bytes in zTerm */ ){ int i; int rc; int nSegment = pCsr->nSegment; int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp ); assert( pCsr->pFilter==0 ); assert( zTerm && nTerm>0 ); /* Advance each segment iterator until it points to the term zTerm/nTerm. */ rc = fts3SegReaderStart(p, pCsr, zTerm, nTerm); if( rc!=SQLITE_OK ) return rc; /* Determine how many of the segments actually point to zTerm/nTerm. */ for(i=0; iapSegment[i]; if( !pSeg->aNode || fts3SegReaderTermCmp(pSeg, zTerm, nTerm) ){ break; } } pCsr->nAdvance = i; /* Advance each of the segments to point to the first docid. */ for(i=0; inAdvance; i++){ rc = fts3SegReaderFirstDocid(p, pCsr->apSegment[i]); if( rc!=SQLITE_OK ) return rc; } fts3SegReaderSort(pCsr->apSegment, i, i, xCmp); assert( iCol<0 || iColnColumn ); pCsr->iColFilter = iCol; return SQLITE_OK; } /* ** This function is called on a MultiSegReader that has been started using ** sqlite3Fts3MsrIncrStart(). One or more calls to MsrIncrNext() may also ** have been made. Calling this function puts the MultiSegReader in such ** a state that if the next two calls are: ** ** sqlite3Fts3SegReaderStart() ** sqlite3Fts3SegReaderStep() ** ** then the entire doclist for the term is available in ** MultiSegReader.aDoclist/nDoclist. */ SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr){ int i; /* Used to iterate through segment-readers */ assert( pCsr->zTerm==0 ); assert( pCsr->nTerm==0 ); assert( pCsr->aDoclist==0 ); assert( pCsr->nDoclist==0 ); pCsr->nAdvance = 0; pCsr->bRestart = 1; for(i=0; inSegment; i++){ pCsr->apSegment[i]->pOffsetList = 0; pCsr->apSegment[i]->nOffsetList = 0; pCsr->apSegment[i]->iDocid = 0; } return SQLITE_OK; } static int fts3GrowSegReaderBuffer(Fts3MultiSegReader *pCsr, int nReq){ if( nReq>pCsr->nBuffer ){ char *aNew; pCsr->nBuffer = nReq*2; aNew = sqlite3_realloc(pCsr->aBuffer, pCsr->nBuffer); if( !aNew ){ return SQLITE_NOMEM; } pCsr->aBuffer = aNew; } return SQLITE_OK; } SQLITE_PRIVATE int sqlite3Fts3SegReaderStep( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr /* Cursor object */ ){ int rc = SQLITE_OK; int isIgnoreEmpty = (pCsr->pFilter->flags & FTS3_SEGMENT_IGNORE_EMPTY); int isRequirePos = (pCsr->pFilter->flags & FTS3_SEGMENT_REQUIRE_POS); int isColFilter = (pCsr->pFilter->flags & FTS3_SEGMENT_COLUMN_FILTER); int isPrefix = (pCsr->pFilter->flags & FTS3_SEGMENT_PREFIX); int isScan = (pCsr->pFilter->flags & FTS3_SEGMENT_SCAN); int isFirst = (pCsr->pFilter->flags & FTS3_SEGMENT_FIRST); Fts3SegReader **apSegment = pCsr->apSegment; int nSegment = pCsr->nSegment; Fts3SegFilter *pFilter = pCsr->pFilter; int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp ); if( pCsr->nSegment==0 ) return SQLITE_OK; do { int nMerge; int i; /* Advance the first pCsr->nAdvance entries in the apSegment[] array ** forward. Then sort the list in order of current term again. */ for(i=0; inAdvance; i++){ Fts3SegReader *pSeg = apSegment[i]; if( pSeg->bLookup ){ fts3SegReaderSetEof(pSeg); }else{ rc = fts3SegReaderNext(p, pSeg, 0); } if( rc!=SQLITE_OK ) return rc; } fts3SegReaderSort(apSegment, nSegment, pCsr->nAdvance, fts3SegReaderCmp); pCsr->nAdvance = 0; /* If all the seg-readers are at EOF, we're finished. return SQLITE_OK. */ assert( rc==SQLITE_OK ); if( apSegment[0]->aNode==0 ) break; pCsr->nTerm = apSegment[0]->nTerm; pCsr->zTerm = apSegment[0]->zTerm; /* If this is a prefix-search, and if the term that apSegment[0] points ** to does not share a suffix with pFilter->zTerm/nTerm, then all ** required callbacks have been made. In this case exit early. ** ** Similarly, if this is a search for an exact match, and the first term ** of segment apSegment[0] is not a match, exit early. */ if( pFilter->zTerm && !isScan ){ if( pCsr->nTermnTerm || (!isPrefix && pCsr->nTerm>pFilter->nTerm) || memcmp(pCsr->zTerm, pFilter->zTerm, pFilter->nTerm) ){ break; } } nMerge = 1; while( nMergeaNode && apSegment[nMerge]->nTerm==pCsr->nTerm && 0==memcmp(pCsr->zTerm, apSegment[nMerge]->zTerm, pCsr->nTerm) ){ nMerge++; } assert( isIgnoreEmpty || (isRequirePos && !isColFilter) ); if( nMerge==1 && !isIgnoreEmpty && !isFirst && (p->bDescIdx==0 || fts3SegReaderIsPending(apSegment[0])==0) ){ pCsr->nDoclist = apSegment[0]->nDoclist; if( fts3SegReaderIsPending(apSegment[0]) ){ rc = fts3MsrBufferData(pCsr, apSegment[0]->aDoclist, pCsr->nDoclist); pCsr->aDoclist = pCsr->aBuffer; }else{ pCsr->aDoclist = apSegment[0]->aDoclist; } if( rc==SQLITE_OK ) rc = SQLITE_ROW; }else{ int nDoclist = 0; /* Size of doclist */ sqlite3_int64 iPrev = 0; /* Previous docid stored in doclist */ /* The current term of the first nMerge entries in the array ** of Fts3SegReader objects is the same. The doclists must be merged ** and a single term returned with the merged doclist. */ for(i=0; ipOffsetList ){ int j; /* Number of segments that share a docid */ char *pList = 0; int nList = 0; int nByte; sqlite3_int64 iDocid = apSegment[0]->iDocid; fts3SegReaderNextDocid(p, apSegment[0], &pList, &nList); j = 1; while( jpOffsetList && apSegment[j]->iDocid==iDocid ){ fts3SegReaderNextDocid(p, apSegment[j], 0, 0); j++; } if( isColFilter ){ fts3ColumnFilter(pFilter->iCol, 0, &pList, &nList); } if( !isIgnoreEmpty || nList>0 ){ /* Calculate the 'docid' delta value to write into the merged ** doclist. */ sqlite3_int64 iDelta; if( p->bDescIdx && nDoclist>0 ){ if( iPrev<=iDocid ) return FTS_CORRUPT_VTAB; iDelta = (i64)((u64)iPrev - (u64)iDocid); }else{ if( nDoclist>0 && iPrev>=iDocid ) return FTS_CORRUPT_VTAB; iDelta = (i64)((u64)iDocid - (u64)iPrev); } nByte = sqlite3Fts3VarintLen(iDelta) + (isRequirePos?nList+1:0); rc = fts3GrowSegReaderBuffer(pCsr, nByte+nDoclist+FTS3_NODE_PADDING); if( rc ) return rc; if( isFirst ){ char *a = &pCsr->aBuffer[nDoclist]; int nWrite; nWrite = sqlite3Fts3FirstFilter(iDelta, pList, nList, a); if( nWrite ){ iPrev = iDocid; nDoclist += nWrite; } }else{ nDoclist += sqlite3Fts3PutVarint(&pCsr->aBuffer[nDoclist], iDelta); iPrev = iDocid; if( isRequirePos ){ memcpy(&pCsr->aBuffer[nDoclist], pList, nList); nDoclist += nList; pCsr->aBuffer[nDoclist++] = '\0'; } } } fts3SegReaderSort(apSegment, nMerge, j, xCmp); } if( nDoclist>0 ){ rc = fts3GrowSegReaderBuffer(pCsr, nDoclist+FTS3_NODE_PADDING); if( rc ) return rc; memset(&pCsr->aBuffer[nDoclist], 0, FTS3_NODE_PADDING); pCsr->aDoclist = pCsr->aBuffer; pCsr->nDoclist = nDoclist; rc = SQLITE_ROW; } } pCsr->nAdvance = nMerge; }while( rc==SQLITE_OK ); return rc; } SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish( Fts3MultiSegReader *pCsr /* Cursor object */ ){ if( pCsr ){ int i; for(i=0; inSegment; i++){ sqlite3Fts3SegReaderFree(pCsr->apSegment[i]); } sqlite3_free(pCsr->apSegment); sqlite3_free(pCsr->aBuffer); pCsr->nSegment = 0; pCsr->apSegment = 0; pCsr->aBuffer = 0; } } /* ** Decode the "end_block" field, selected by column iCol of the SELECT ** statement passed as the first argument. ** ** The "end_block" field may contain either an integer, or a text field ** containing the text representation of two non-negative integers separated ** by one or more space (0x20) characters. In the first case, set *piEndBlock ** to the integer value and *pnByte to zero before returning. In the second, ** set *piEndBlock to the first value and *pnByte to the second. */ static void fts3ReadEndBlockField( sqlite3_stmt *pStmt, int iCol, i64 *piEndBlock, i64 *pnByte ){ const unsigned char *zText = sqlite3_column_text(pStmt, iCol); if( zText ){ int i; int iMul = 1; u64 iVal = 0; for(i=0; zText[i]>='0' && zText[i]<='9'; i++){ iVal = iVal*10 + (zText[i] - '0'); } *piEndBlock = (i64)iVal; while( zText[i]==' ' ) i++; iVal = 0; if( zText[i]=='-' ){ i++; iMul = -1; } for(/* no-op */; zText[i]>='0' && zText[i]<='9'; i++){ iVal = iVal*10 + (zText[i] - '0'); } *pnByte = ((i64)iVal * (i64)iMul); } } /* ** A segment of size nByte bytes has just been written to absolute level ** iAbsLevel. Promote any segments that should be promoted as a result. */ static int fts3PromoteSegments( Fts3Table *p, /* FTS table handle */ sqlite3_int64 iAbsLevel, /* Absolute level just updated */ sqlite3_int64 nByte /* Size of new segment at iAbsLevel */ ){ int rc = SQLITE_OK; sqlite3_stmt *pRange; rc = fts3SqlStmt(p, SQL_SELECT_LEVEL_RANGE2, &pRange, 0); if( rc==SQLITE_OK ){ int bOk = 0; i64 iLast = (iAbsLevel/FTS3_SEGDIR_MAXLEVEL + 1) * FTS3_SEGDIR_MAXLEVEL - 1; i64 nLimit = (nByte*3)/2; /* Loop through all entries in the %_segdir table corresponding to ** segments in this index on levels greater than iAbsLevel. If there is ** at least one such segment, and it is possible to determine that all ** such segments are smaller than nLimit bytes in size, they will be ** promoted to level iAbsLevel. */ sqlite3_bind_int64(pRange, 1, iAbsLevel+1); sqlite3_bind_int64(pRange, 2, iLast); while( SQLITE_ROW==sqlite3_step(pRange) ){ i64 nSize = 0, dummy; fts3ReadEndBlockField(pRange, 2, &dummy, &nSize); if( nSize<=0 || nSize>nLimit ){ /* If nSize==0, then the %_segdir.end_block field does not not ** contain a size value. This happens if it was written by an ** old version of FTS. In this case it is not possible to determine ** the size of the segment, and so segment promotion does not ** take place. */ bOk = 0; break; } bOk = 1; } rc = sqlite3_reset(pRange); if( bOk ){ int iIdx = 0; sqlite3_stmt *pUpdate1 = 0; sqlite3_stmt *pUpdate2 = 0; if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_UPDATE_LEVEL_IDX, &pUpdate1, 0); } if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_UPDATE_LEVEL, &pUpdate2, 0); } if( rc==SQLITE_OK ){ /* Loop through all %_segdir entries for segments in this index with ** levels equal to or greater than iAbsLevel. As each entry is visited, ** updated it to set (level = -1) and (idx = N), where N is 0 for the ** oldest segment in the range, 1 for the next oldest, and so on. ** ** In other words, move all segments being promoted to level -1, ** setting the "idx" fields as appropriate to keep them in the same ** order. The contents of level -1 (which is never used, except ** transiently here), will be moved back to level iAbsLevel below. */ sqlite3_bind_int64(pRange, 1, iAbsLevel); while( SQLITE_ROW==sqlite3_step(pRange) ){ sqlite3_bind_int(pUpdate1, 1, iIdx++); sqlite3_bind_int(pUpdate1, 2, sqlite3_column_int(pRange, 0)); sqlite3_bind_int(pUpdate1, 3, sqlite3_column_int(pRange, 1)); sqlite3_step(pUpdate1); rc = sqlite3_reset(pUpdate1); if( rc!=SQLITE_OK ){ sqlite3_reset(pRange); break; } } } if( rc==SQLITE_OK ){ rc = sqlite3_reset(pRange); } /* Move level -1 to level iAbsLevel */ if( rc==SQLITE_OK ){ sqlite3_bind_int64(pUpdate2, 1, iAbsLevel); sqlite3_step(pUpdate2); rc = sqlite3_reset(pUpdate2); } } } return rc; } /* ** Merge all level iLevel segments in the database into a single ** iLevel+1 segment. Or, if iLevel<0, merge all segments into a ** single segment with a level equal to the numerically largest level ** currently present in the database. ** ** If this function is called with iLevel<0, but there is only one ** segment in the database, SQLITE_DONE is returned immediately. ** Otherwise, if successful, SQLITE_OK is returned. If an error occurs, ** an SQLite error code is returned. */ static int fts3SegmentMerge( Fts3Table *p, int iLangid, /* Language id to merge */ int iIndex, /* Index in p->aIndex[] to merge */ int iLevel /* Level to merge */ ){ int rc; /* Return code */ int iIdx = 0; /* Index of new segment */ sqlite3_int64 iNewLevel = 0; /* Level/index to create new segment at */ SegmentWriter *pWriter = 0; /* Used to write the new, merged, segment */ Fts3SegFilter filter; /* Segment term filter condition */ Fts3MultiSegReader csr; /* Cursor to iterate through level(s) */ int bIgnoreEmpty = 0; /* True to ignore empty segments */ i64 iMaxLevel = 0; /* Max level number for this index/langid */ assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel==FTS3_SEGCURSOR_PENDING || iLevel>=0 ); assert( iLevel=0 && iIndexnIndex ); rc = sqlite3Fts3SegReaderCursor(p, iLangid, iIndex, iLevel, 0, 0, 1, 0, &csr); if( rc!=SQLITE_OK || csr.nSegment==0 ) goto finished; if( iLevel!=FTS3_SEGCURSOR_PENDING ){ rc = fts3SegmentMaxLevel(p, iLangid, iIndex, &iMaxLevel); if( rc!=SQLITE_OK ) goto finished; } if( iLevel==FTS3_SEGCURSOR_ALL ){ /* This call is to merge all segments in the database to a single ** segment. The level of the new segment is equal to the numerically ** greatest segment level currently present in the database for this ** index. The idx of the new segment is always 0. */ if( csr.nSegment==1 && 0==fts3SegReaderIsPending(csr.apSegment[0]) ){ rc = SQLITE_DONE; goto finished; } iNewLevel = iMaxLevel; bIgnoreEmpty = 1; }else{ /* This call is to merge all segments at level iLevel. find the next ** available segment index at level iLevel+1. The call to ** fts3AllocateSegdirIdx() will merge the segments at level iLevel+1 to ** a single iLevel+2 segment if necessary. */ assert( FTS3_SEGCURSOR_PENDING==-1 ); iNewLevel = getAbsoluteLevel(p, iLangid, iIndex, iLevel+1); rc = fts3AllocateSegdirIdx(p, iLangid, iIndex, iLevel+1, &iIdx); bIgnoreEmpty = (iLevel!=FTS3_SEGCURSOR_PENDING) && (iNewLevel>iMaxLevel); } if( rc!=SQLITE_OK ) goto finished; assert( csr.nSegment>0 ); assert_fts3_nc( iNewLevel>=getAbsoluteLevel(p, iLangid, iIndex, 0) ); assert_fts3_nc( iNewLevelnLeafData); } } } finished: fts3SegWriterFree(pWriter); sqlite3Fts3SegReaderFinish(&csr); return rc; } /* ** Flush the contents of pendingTerms to level 0 segments. */ SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *p){ int rc = SQLITE_OK; int i; for(i=0; rc==SQLITE_OK && inIndex; i++){ rc = fts3SegmentMerge(p, p->iPrevLangid, i, FTS3_SEGCURSOR_PENDING); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } sqlite3Fts3PendingTermsClear(p); /* Determine the auto-incr-merge setting if unknown. If enabled, ** estimate the number of leaf blocks of content to be written */ if( rc==SQLITE_OK && p->bHasStat && p->nAutoincrmerge==0xff && p->nLeafAdd>0 ){ sqlite3_stmt *pStmt = 0; rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int(pStmt, 1, FTS_STAT_AUTOINCRMERGE); rc = sqlite3_step(pStmt); if( rc==SQLITE_ROW ){ p->nAutoincrmerge = sqlite3_column_int(pStmt, 0); if( p->nAutoincrmerge==1 ) p->nAutoincrmerge = 8; }else if( rc==SQLITE_DONE ){ p->nAutoincrmerge = 0; } rc = sqlite3_reset(pStmt); } } return rc; } /* ** Encode N integers as varints into a blob. */ static void fts3EncodeIntArray( int N, /* The number of integers to encode */ u32 *a, /* The integer values */ char *zBuf, /* Write the BLOB here */ int *pNBuf /* Write number of bytes if zBuf[] used here */ ){ int i, j; for(i=j=0; iiPrevDocid. The sizes are encoded as ** a blob of varints. */ static void fts3InsertDocsize( int *pRC, /* Result code */ Fts3Table *p, /* Table into which to insert */ u32 *aSz /* Sizes of each column, in tokens */ ){ char *pBlob; /* The BLOB encoding of the document size */ int nBlob; /* Number of bytes in the BLOB */ sqlite3_stmt *pStmt; /* Statement used to insert the encoding */ int rc; /* Result code from subfunctions */ if( *pRC ) return; pBlob = sqlite3_malloc64( 10*(sqlite3_int64)p->nColumn ); if( pBlob==0 ){ *pRC = SQLITE_NOMEM; return; } fts3EncodeIntArray(p->nColumn, aSz, pBlob, &nBlob); rc = fts3SqlStmt(p, SQL_REPLACE_DOCSIZE, &pStmt, 0); if( rc ){ sqlite3_free(pBlob); *pRC = rc; return; } sqlite3_bind_int64(pStmt, 1, p->iPrevDocid); sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, sqlite3_free); sqlite3_step(pStmt); *pRC = sqlite3_reset(pStmt); } /* ** Record 0 of the %_stat table contains a blob consisting of N varints, ** where N is the number of user defined columns in the fts3 table plus ** two. If nCol is the number of user defined columns, then values of the ** varints are set as follows: ** ** Varint 0: Total number of rows in the table. ** ** Varint 1..nCol: For each column, the total number of tokens stored in ** the column for all rows of the table. ** ** Varint 1+nCol: The total size, in bytes, of all text values in all ** columns of all rows of the table. ** */ static void fts3UpdateDocTotals( int *pRC, /* The result code */ Fts3Table *p, /* Table being updated */ u32 *aSzIns, /* Size increases */ u32 *aSzDel, /* Size decreases */ int nChng /* Change in the number of documents */ ){ char *pBlob; /* Storage for BLOB written into %_stat */ int nBlob; /* Size of BLOB written into %_stat */ u32 *a; /* Array of integers that becomes the BLOB */ sqlite3_stmt *pStmt; /* Statement for reading and writing */ int i; /* Loop counter */ int rc; /* Result code from subfunctions */ const int nStat = p->nColumn+2; if( *pRC ) return; a = sqlite3_malloc64( (sizeof(u32)+10)*(sqlite3_int64)nStat ); if( a==0 ){ *pRC = SQLITE_NOMEM; return; } pBlob = (char*)&a[nStat]; rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pStmt, 0); if( rc ){ sqlite3_free(a); *pRC = rc; return; } sqlite3_bind_int(pStmt, 1, FTS_STAT_DOCTOTAL); if( sqlite3_step(pStmt)==SQLITE_ROW ){ fts3DecodeIntArray(nStat, a, sqlite3_column_blob(pStmt, 0), sqlite3_column_bytes(pStmt, 0)); }else{ memset(a, 0, sizeof(u32)*(nStat) ); } rc = sqlite3_reset(pStmt); if( rc!=SQLITE_OK ){ sqlite3_free(a); *pRC = rc; return; } if( nChng<0 && a[0]<(u32)(-nChng) ){ a[0] = 0; }else{ a[0] += nChng; } for(i=0; inColumn+1; i++){ u32 x = a[i+1]; if( x+aSzIns[i] < aSzDel[i] ){ x = 0; }else{ x = x + aSzIns[i] - aSzDel[i]; } a[i+1] = x; } fts3EncodeIntArray(nStat, a, pBlob, &nBlob); rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pStmt, 0); if( rc ){ sqlite3_free(a); *pRC = rc; return; } sqlite3_bind_int(pStmt, 1, FTS_STAT_DOCTOTAL); sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, SQLITE_STATIC); sqlite3_step(pStmt); *pRC = sqlite3_reset(pStmt); sqlite3_bind_null(pStmt, 2); sqlite3_free(a); } /* ** Merge the entire database so that there is one segment for each ** iIndex/iLangid combination. */ static int fts3DoOptimize(Fts3Table *p, int bReturnDone){ int bSeenDone = 0; int rc; sqlite3_stmt *pAllLangid = 0; rc = sqlite3Fts3PendingTermsFlush(p); if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_SELECT_ALL_LANGID, &pAllLangid, 0); } if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int(pAllLangid, 1, p->iPrevLangid); sqlite3_bind_int(pAllLangid, 2, p->nIndex); while( sqlite3_step(pAllLangid)==SQLITE_ROW ){ int i; int iLangid = sqlite3_column_int(pAllLangid, 0); for(i=0; rc==SQLITE_OK && inIndex; i++){ rc = fts3SegmentMerge(p, iLangid, i, FTS3_SEGCURSOR_ALL); if( rc==SQLITE_DONE ){ bSeenDone = 1; rc = SQLITE_OK; } } } rc2 = sqlite3_reset(pAllLangid); if( rc==SQLITE_OK ) rc = rc2; } sqlite3Fts3SegmentsClose(p); return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc; } /* ** This function is called when the user executes the following statement: ** ** INSERT INTO () VALUES('rebuild'); ** ** The entire FTS index is discarded and rebuilt. If the table is one ** created using the content=xxx option, then the new index is based on ** the current contents of the xxx table. Otherwise, it is rebuilt based ** on the contents of the %_content table. */ static int fts3DoRebuild(Fts3Table *p){ int rc; /* Return Code */ rc = fts3DeleteAll(p, 0); if( rc==SQLITE_OK ){ u32 *aSz = 0; u32 *aSzIns = 0; u32 *aSzDel = 0; sqlite3_stmt *pStmt = 0; int nEntry = 0; /* Compose and prepare an SQL statement to loop through the content table */ char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); } if( rc==SQLITE_OK ){ sqlite3_int64 nByte = sizeof(u32) * ((sqlite3_int64)p->nColumn+1)*3; aSz = (u32 *)sqlite3_malloc64(nByte); if( aSz==0 ){ rc = SQLITE_NOMEM; }else{ memset(aSz, 0, nByte); aSzIns = &aSz[p->nColumn+1]; aSzDel = &aSzIns[p->nColumn+1]; } } while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ int iCol; int iLangid = langidFromSelect(p, pStmt); rc = fts3PendingTermsDocid(p, 0, iLangid, sqlite3_column_int64(pStmt, 0)); memset(aSz, 0, sizeof(aSz[0]) * (p->nColumn+1)); for(iCol=0; rc==SQLITE_OK && iColnColumn; iCol++){ if( p->abNotindexed[iCol]==0 ){ const char *z = (const char *) sqlite3_column_text(pStmt, iCol+1); rc = fts3PendingTermsAdd(p, iLangid, z, iCol, &aSz[iCol]); aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1); } } if( p->bHasDocsize ){ fts3InsertDocsize(&rc, p, aSz); } if( rc!=SQLITE_OK ){ sqlite3_finalize(pStmt); pStmt = 0; }else{ nEntry++; for(iCol=0; iCol<=p->nColumn; iCol++){ aSzIns[iCol] += aSz[iCol]; } } } if( p->bFts4 ){ fts3UpdateDocTotals(&rc, p, aSzIns, aSzDel, nEntry); } sqlite3_free(aSz); if( pStmt ){ int rc2 = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ){ rc = rc2; } } } return rc; } /* ** This function opens a cursor used to read the input data for an ** incremental merge operation. Specifically, it opens a cursor to scan ** the oldest nSeg segments (idx=0 through idx=(nSeg-1)) in absolute ** level iAbsLevel. */ static int fts3IncrmergeCsr( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level to open */ int nSeg, /* Number of segments to merge */ Fts3MultiSegReader *pCsr /* Cursor object to populate */ ){ int rc; /* Return Code */ sqlite3_stmt *pStmt = 0; /* Statement used to read %_segdir entry */ sqlite3_int64 nByte; /* Bytes allocated at pCsr->apSegment[] */ /* Allocate space for the Fts3MultiSegReader.aCsr[] array */ memset(pCsr, 0, sizeof(*pCsr)); nByte = sizeof(Fts3SegReader *) * nSeg; pCsr->apSegment = (Fts3SegReader **)sqlite3_malloc64(nByte); if( pCsr->apSegment==0 ){ rc = SQLITE_NOMEM; }else{ memset(pCsr->apSegment, 0, nByte); rc = fts3SqlStmt(p, SQL_SELECT_LEVEL, &pStmt, 0); } if( rc==SQLITE_OK ){ int i; int rc2; sqlite3_bind_int64(pStmt, 1, iAbsLevel); assert( pCsr->nSegment==0 ); for(i=0; rc==SQLITE_OK && sqlite3_step(pStmt)==SQLITE_ROW && iapSegment[i] ); pCsr->nSegment++; } rc2 = sqlite3_reset(pStmt); if( rc==SQLITE_OK ) rc = rc2; } return rc; } typedef struct IncrmergeWriter IncrmergeWriter; typedef struct NodeWriter NodeWriter; typedef struct Blob Blob; typedef struct NodeReader NodeReader; /* ** An instance of the following structure is used as a dynamic buffer ** to build up nodes or other blobs of data in. ** ** The function blobGrowBuffer() is used to extend the allocation. */ struct Blob { char *a; /* Pointer to allocation */ int n; /* Number of valid bytes of data in a[] */ int nAlloc; /* Allocated size of a[] (nAlloc>=n) */ }; /* ** This structure is used to build up buffers containing segment b-tree ** nodes (blocks). */ struct NodeWriter { sqlite3_int64 iBlock; /* Current block id */ Blob key; /* Last key written to the current block */ Blob block; /* Current block image */ }; /* ** An object of this type contains the state required to create or append ** to an appendable b-tree segment. */ struct IncrmergeWriter { int nLeafEst; /* Space allocated for leaf blocks */ int nWork; /* Number of leaf pages flushed */ sqlite3_int64 iAbsLevel; /* Absolute level of input segments */ int iIdx; /* Index of *output* segment in iAbsLevel+1 */ sqlite3_int64 iStart; /* Block number of first allocated block */ sqlite3_int64 iEnd; /* Block number of last allocated block */ sqlite3_int64 nLeafData; /* Bytes of leaf page data so far */ u8 bNoLeafData; /* If true, store 0 for segment size */ NodeWriter aNodeWriter[FTS_MAX_APPENDABLE_HEIGHT]; }; /* ** An object of the following type is used to read data from a single ** FTS segment node. See the following functions: ** ** nodeReaderInit() ** nodeReaderNext() ** nodeReaderRelease() */ struct NodeReader { const char *aNode; int nNode; int iOff; /* Current offset within aNode[] */ /* Output variables. Containing the current node entry. */ sqlite3_int64 iChild; /* Pointer to child node */ Blob term; /* Current term */ const char *aDoclist; /* Pointer to doclist */ int nDoclist; /* Size of doclist in bytes */ }; /* ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, if the allocation at pBlob->a is not already at least nMin ** bytes in size, extend (realloc) it to be so. ** ** If an OOM error occurs, set *pRc to SQLITE_NOMEM and leave pBlob->a ** unmodified. Otherwise, if the allocation succeeds, update pBlob->nAlloc ** to reflect the new size of the pBlob->a[] buffer. */ static void blobGrowBuffer(Blob *pBlob, int nMin, int *pRc){ if( *pRc==SQLITE_OK && nMin>pBlob->nAlloc ){ int nAlloc = nMin; char *a = (char *)sqlite3_realloc(pBlob->a, nAlloc); if( a ){ pBlob->nAlloc = nAlloc; pBlob->a = a; }else{ *pRc = SQLITE_NOMEM; } } } /* ** Attempt to advance the node-reader object passed as the first argument to ** the next entry on the node. ** ** Return an error code if an error occurs (SQLITE_NOMEM is possible). ** Otherwise return SQLITE_OK. If there is no next entry on the node ** (e.g. because the current entry is the last) set NodeReader->aNode to ** NULL to indicate EOF. Otherwise, populate the NodeReader structure output ** variables for the new entry. */ static int nodeReaderNext(NodeReader *p){ int bFirst = (p->term.n==0); /* True for first term on the node */ int nPrefix = 0; /* Bytes to copy from previous term */ int nSuffix = 0; /* Bytes to append to the prefix */ int rc = SQLITE_OK; /* Return code */ assert( p->aNode ); if( p->iChild && bFirst==0 ) p->iChild++; if( p->iOff>=p->nNode ){ /* EOF */ p->aNode = 0; }else{ if( bFirst==0 ){ p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &nPrefix); } p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &nSuffix); if( nPrefix>p->term.n || nSuffix>p->nNode-p->iOff || nSuffix==0 ){ return FTS_CORRUPT_VTAB; } blobGrowBuffer(&p->term, nPrefix+nSuffix, &rc); if( rc==SQLITE_OK && ALWAYS(p->term.a!=0) ){ memcpy(&p->term.a[nPrefix], &p->aNode[p->iOff], nSuffix); p->term.n = nPrefix+nSuffix; p->iOff += nSuffix; if( p->iChild==0 ){ p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &p->nDoclist); if( (p->nNode-p->iOff)nDoclist ){ return FTS_CORRUPT_VTAB; } p->aDoclist = &p->aNode[p->iOff]; p->iOff += p->nDoclist; } } } assert_fts3_nc( p->iOff<=p->nNode ); return rc; } /* ** Release all dynamic resources held by node-reader object *p. */ static void nodeReaderRelease(NodeReader *p){ sqlite3_free(p->term.a); } /* ** Initialize a node-reader object to read the node in buffer aNode/nNode. ** ** If successful, SQLITE_OK is returned and the NodeReader object set to ** point to the first entry on the node (if any). Otherwise, an SQLite ** error code is returned. */ static int nodeReaderInit(NodeReader *p, const char *aNode, int nNode){ memset(p, 0, sizeof(NodeReader)); p->aNode = aNode; p->nNode = nNode; /* Figure out if this is a leaf or an internal node. */ if( aNode && aNode[0] ){ /* An internal node. */ p->iOff = 1 + sqlite3Fts3GetVarint(&p->aNode[1], &p->iChild); }else{ p->iOff = 1; } return aNode ? nodeReaderNext(p) : SQLITE_OK; } /* ** This function is called while writing an FTS segment each time a leaf o ** node is finished and written to disk. The key (zTerm/nTerm) is guaranteed ** to be greater than the largest key on the node just written, but smaller ** than or equal to the first key that will be written to the next leaf ** node. ** ** The block id of the leaf node just written to disk may be found in ** (pWriter->aNodeWriter[0].iBlock) when this function is called. */ static int fts3IncrmergePush( Fts3Table *p, /* Fts3 table handle */ IncrmergeWriter *pWriter, /* Writer object */ const char *zTerm, /* Term to write to internal node */ int nTerm /* Bytes at zTerm */ ){ sqlite3_int64 iPtr = pWriter->aNodeWriter[0].iBlock; int iLayer; assert( nTerm>0 ); for(iLayer=1; ALWAYS(iLayeraNodeWriter[iLayer]; int rc = SQLITE_OK; int nPrefix; int nSuffix; int nSpace; /* Figure out how much space the key will consume if it is written to ** the current node of layer iLayer. Due to the prefix compression, ** the space required changes depending on which node the key is to ** be added to. */ nPrefix = fts3PrefixCompress(pNode->key.a, pNode->key.n, zTerm, nTerm); nSuffix = nTerm - nPrefix; if(nSuffix<=0 ) return FTS_CORRUPT_VTAB; nSpace = sqlite3Fts3VarintLen(nPrefix); nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; if( pNode->key.n==0 || (pNode->block.n + nSpace)<=p->nNodeSize ){ /* If the current node of layer iLayer contains zero keys, or if adding ** the key to it will not cause it to grow to larger than nNodeSize ** bytes in size, write the key here. */ Blob *pBlk = &pNode->block; if( pBlk->n==0 ){ blobGrowBuffer(pBlk, p->nNodeSize, &rc); if( rc==SQLITE_OK ){ pBlk->a[0] = (char)iLayer; pBlk->n = 1 + sqlite3Fts3PutVarint(&pBlk->a[1], iPtr); } } blobGrowBuffer(pBlk, pBlk->n + nSpace, &rc); blobGrowBuffer(&pNode->key, nTerm, &rc); if( rc==SQLITE_OK ){ if( pNode->key.n ){ pBlk->n += sqlite3Fts3PutVarint(&pBlk->a[pBlk->n], nPrefix); } pBlk->n += sqlite3Fts3PutVarint(&pBlk->a[pBlk->n], nSuffix); memcpy(&pBlk->a[pBlk->n], &zTerm[nPrefix], nSuffix); pBlk->n += nSuffix; memcpy(pNode->key.a, zTerm, nTerm); pNode->key.n = nTerm; } }else{ /* Otherwise, flush the current node of layer iLayer to disk. ** Then allocate a new, empty sibling node. The key will be written ** into the parent of this node. */ rc = fts3WriteSegment(p, pNode->iBlock, pNode->block.a, pNode->block.n); assert( pNode->block.nAlloc>=p->nNodeSize ); pNode->block.a[0] = (char)iLayer; pNode->block.n = 1 + sqlite3Fts3PutVarint(&pNode->block.a[1], iPtr+1); iNextPtr = pNode->iBlock; pNode->iBlock++; pNode->key.n = 0; } if( rc!=SQLITE_OK || iNextPtr==0 ) return rc; iPtr = iNextPtr; } assert( 0 ); return 0; } /* ** Append a term and (optionally) doclist to the FTS segment node currently ** stored in blob *pNode. The node need not contain any terms, but the ** header must be written before this function is called. ** ** A node header is a single 0x00 byte for a leaf node, or a height varint ** followed by the left-hand-child varint for an internal node. ** ** The term to be appended is passed via arguments zTerm/nTerm. For a ** leaf node, the doclist is passed as aDoclist/nDoclist. For an internal ** node, both aDoclist and nDoclist must be passed 0. ** ** If the size of the value in blob pPrev is zero, then this is the first ** term written to the node. Otherwise, pPrev contains a copy of the ** previous term. Before this function returns, it is updated to contain a ** copy of zTerm/nTerm. ** ** It is assumed that the buffer associated with pNode is already large ** enough to accommodate the new entry. The buffer associated with pPrev ** is extended by this function if requrired. ** ** If an error (i.e. OOM condition) occurs, an SQLite error code is ** returned. Otherwise, SQLITE_OK. */ static int fts3AppendToNode( Blob *pNode, /* Current node image to append to */ Blob *pPrev, /* Buffer containing previous term written */ const char *zTerm, /* New term to write */ int nTerm, /* Size of zTerm in bytes */ const char *aDoclist, /* Doclist (or NULL) to write */ int nDoclist /* Size of aDoclist in bytes */ ){ int rc = SQLITE_OK; /* Return code */ int bFirst = (pPrev->n==0); /* True if this is the first term written */ int nPrefix; /* Size of term prefix in bytes */ int nSuffix; /* Size of term suffix in bytes */ /* Node must have already been started. There must be a doclist for a ** leaf node, and there must not be a doclist for an internal node. */ assert( pNode->n>0 ); assert_fts3_nc( (pNode->a[0]=='\0')==(aDoclist!=0) ); blobGrowBuffer(pPrev, nTerm, &rc); if( rc!=SQLITE_OK ) return rc; nPrefix = fts3PrefixCompress(pPrev->a, pPrev->n, zTerm, nTerm); nSuffix = nTerm - nPrefix; if( nSuffix<=0 ) return FTS_CORRUPT_VTAB; memcpy(pPrev->a, zTerm, nTerm); pPrev->n = nTerm; if( bFirst==0 ){ pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nPrefix); } pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nSuffix); memcpy(&pNode->a[pNode->n], &zTerm[nPrefix], nSuffix); pNode->n += nSuffix; if( aDoclist ){ pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nDoclist); memcpy(&pNode->a[pNode->n], aDoclist, nDoclist); pNode->n += nDoclist; } assert( pNode->n<=pNode->nAlloc ); return SQLITE_OK; } /* ** Append the current term and doclist pointed to by cursor pCsr to the ** appendable b-tree segment opened for writing by pWriter. ** ** Return SQLITE_OK if successful, or an SQLite error code otherwise. */ static int fts3IncrmergeAppend( Fts3Table *p, /* Fts3 table handle */ IncrmergeWriter *pWriter, /* Writer object */ Fts3MultiSegReader *pCsr /* Cursor containing term and doclist */ ){ const char *zTerm = pCsr->zTerm; int nTerm = pCsr->nTerm; const char *aDoclist = pCsr->aDoclist; int nDoclist = pCsr->nDoclist; int rc = SQLITE_OK; /* Return code */ int nSpace; /* Total space in bytes required on leaf */ int nPrefix; /* Size of prefix shared with previous term */ int nSuffix; /* Size of suffix (nTerm - nPrefix) */ NodeWriter *pLeaf; /* Object used to write leaf nodes */ pLeaf = &pWriter->aNodeWriter[0]; nPrefix = fts3PrefixCompress(pLeaf->key.a, pLeaf->key.n, zTerm, nTerm); nSuffix = nTerm - nPrefix; nSpace = sqlite3Fts3VarintLen(nPrefix); nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; nSpace += sqlite3Fts3VarintLen(nDoclist) + nDoclist; /* If the current block is not empty, and if adding this term/doclist ** to the current block would make it larger than Fts3Table.nNodeSize ** bytes, write this block out to the database. */ if( pLeaf->block.n>0 && (pLeaf->block.n + nSpace)>p->nNodeSize ){ rc = fts3WriteSegment(p, pLeaf->iBlock, pLeaf->block.a, pLeaf->block.n); pWriter->nWork++; /* Add the current term to the parent node. The term added to the ** parent must: ** ** a) be greater than the largest term on the leaf node just written ** to the database (still available in pLeaf->key), and ** ** b) be less than or equal to the term about to be added to the new ** leaf node (zTerm/nTerm). ** ** In other words, it must be the prefix of zTerm 1 byte longer than ** the common prefix (if any) of zTerm and pWriter->zTerm. */ if( rc==SQLITE_OK ){ rc = fts3IncrmergePush(p, pWriter, zTerm, nPrefix+1); } /* Advance to the next output block */ pLeaf->iBlock++; pLeaf->key.n = 0; pLeaf->block.n = 0; nSuffix = nTerm; nSpace = 1; nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; nSpace += sqlite3Fts3VarintLen(nDoclist) + nDoclist; } pWriter->nLeafData += nSpace; blobGrowBuffer(&pLeaf->block, pLeaf->block.n + nSpace, &rc); if( rc==SQLITE_OK ){ if( pLeaf->block.n==0 ){ pLeaf->block.n = 1; pLeaf->block.a[0] = '\0'; } rc = fts3AppendToNode( &pLeaf->block, &pLeaf->key, zTerm, nTerm, aDoclist, nDoclist ); } return rc; } /* ** This function is called to release all dynamic resources held by the ** merge-writer object pWriter, and if no error has occurred, to flush ** all outstanding node buffers held by pWriter to disk. ** ** If *pRc is not SQLITE_OK when this function is called, then no attempt ** is made to write any data to disk. Instead, this function serves only ** to release outstanding resources. ** ** Otherwise, if *pRc is initially SQLITE_OK and an error occurs while ** flushing buffers to disk, *pRc is set to an SQLite error code before ** returning. */ static void fts3IncrmergeRelease( Fts3Table *p, /* FTS3 table handle */ IncrmergeWriter *pWriter, /* Merge-writer object */ int *pRc /* IN/OUT: Error code */ ){ int i; /* Used to iterate through non-root layers */ int iRoot; /* Index of root in pWriter->aNodeWriter */ NodeWriter *pRoot; /* NodeWriter for root node */ int rc = *pRc; /* Error code */ /* Set iRoot to the index in pWriter->aNodeWriter[] of the output segment ** root node. If the segment fits entirely on a single leaf node, iRoot ** will be set to 0. If the root node is the parent of the leaves, iRoot ** will be 1. And so on. */ for(iRoot=FTS_MAX_APPENDABLE_HEIGHT-1; iRoot>=0; iRoot--){ NodeWriter *pNode = &pWriter->aNodeWriter[iRoot]; if( pNode->block.n>0 ) break; assert( *pRc || pNode->block.nAlloc==0 ); assert( *pRc || pNode->key.nAlloc==0 ); sqlite3_free(pNode->block.a); sqlite3_free(pNode->key.a); } /* Empty output segment. This is a no-op. */ if( iRoot<0 ) return; /* The entire output segment fits on a single node. Normally, this means ** the node would be stored as a blob in the "root" column of the %_segdir ** table. However, this is not permitted in this case. The problem is that ** space has already been reserved in the %_segments table, and so the ** start_block and end_block fields of the %_segdir table must be populated. ** And, by design or by accident, released versions of FTS cannot handle ** segments that fit entirely on the root node with start_block!=0. ** ** Instead, create a synthetic root node that contains nothing but a ** pointer to the single content node. So that the segment consists of a ** single leaf and a single interior (root) node. ** ** Todo: Better might be to defer allocating space in the %_segments ** table until we are sure it is needed. */ if( iRoot==0 ){ Blob *pBlock = &pWriter->aNodeWriter[1].block; blobGrowBuffer(pBlock, 1 + FTS3_VARINT_MAX, &rc); if( rc==SQLITE_OK ){ pBlock->a[0] = 0x01; pBlock->n = 1 + sqlite3Fts3PutVarint( &pBlock->a[1], pWriter->aNodeWriter[0].iBlock ); } iRoot = 1; } pRoot = &pWriter->aNodeWriter[iRoot]; /* Flush all currently outstanding nodes to disk. */ for(i=0; iaNodeWriter[i]; if( pNode->block.n>0 && rc==SQLITE_OK ){ rc = fts3WriteSegment(p, pNode->iBlock, pNode->block.a, pNode->block.n); } sqlite3_free(pNode->block.a); sqlite3_free(pNode->key.a); } /* Write the %_segdir record. */ if( rc==SQLITE_OK ){ rc = fts3WriteSegdir(p, pWriter->iAbsLevel+1, /* level */ pWriter->iIdx, /* idx */ pWriter->iStart, /* start_block */ pWriter->aNodeWriter[0].iBlock, /* leaves_end_block */ pWriter->iEnd, /* end_block */ (pWriter->bNoLeafData==0 ? pWriter->nLeafData : 0), /* end_block */ pRoot->block.a, pRoot->block.n /* root */ ); } sqlite3_free(pRoot->block.a); sqlite3_free(pRoot->key.a); *pRc = rc; } /* ** Compare the term in buffer zLhs (size in bytes nLhs) with that in ** zRhs (size in bytes nRhs) using memcmp. If one term is a prefix of ** the other, it is considered to be smaller than the other. ** ** Return -ve if zLhs is smaller than zRhs, 0 if it is equal, or +ve ** if it is greater. */ static int fts3TermCmp( const char *zLhs, int nLhs, /* LHS of comparison */ const char *zRhs, int nRhs /* RHS of comparison */ ){ int nCmp = MIN(nLhs, nRhs); int res; if( nCmp && ALWAYS(zLhs) && ALWAYS(zRhs) ){ res = memcmp(zLhs, zRhs, nCmp); }else{ res = 0; } if( res==0 ) res = nLhs - nRhs; return res; } /* ** Query to see if the entry in the %_segments table with blockid iEnd is ** NULL. If no error occurs and the entry is NULL, set *pbRes 1 before ** returning. Otherwise, set *pbRes to 0. ** ** Or, if an error occurs while querying the database, return an SQLite ** error code. The final value of *pbRes is undefined in this case. ** ** This is used to test if a segment is an "appendable" segment. If it ** is, then a NULL entry has been inserted into the %_segments table ** with blockid %_segdir.end_block. */ static int fts3IsAppendable(Fts3Table *p, sqlite3_int64 iEnd, int *pbRes){ int bRes = 0; /* Result to set *pbRes to */ sqlite3_stmt *pCheck = 0; /* Statement to query database with */ int rc; /* Return code */ rc = fts3SqlStmt(p, SQL_SEGMENT_IS_APPENDABLE, &pCheck, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pCheck, 1, iEnd); if( SQLITE_ROW==sqlite3_step(pCheck) ) bRes = 1; rc = sqlite3_reset(pCheck); } *pbRes = bRes; return rc; } /* ** This function is called when initializing an incremental-merge operation. ** It checks if the existing segment with index value iIdx at absolute level ** (iAbsLevel+1) can be appended to by the incremental merge. If it can, the ** merge-writer object *pWriter is initialized to write to it. ** ** An existing segment can be appended to by an incremental merge if: ** ** * It was initially created as an appendable segment (with all required ** space pre-allocated), and ** ** * The first key read from the input (arguments zKey and nKey) is ** greater than the largest key currently stored in the potential ** output segment. */ static int fts3IncrmergeLoad( Fts3Table *p, /* Fts3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level of input segments */ int iIdx, /* Index of candidate output segment */ const char *zKey, /* First key to write */ int nKey, /* Number of bytes in nKey */ IncrmergeWriter *pWriter /* Populate this object */ ){ int rc; /* Return code */ sqlite3_stmt *pSelect = 0; /* SELECT to read %_segdir entry */ rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pSelect, 0); if( rc==SQLITE_OK ){ sqlite3_int64 iStart = 0; /* Value of %_segdir.start_block */ sqlite3_int64 iLeafEnd = 0; /* Value of %_segdir.leaves_end_block */ sqlite3_int64 iEnd = 0; /* Value of %_segdir.end_block */ const char *aRoot = 0; /* Pointer to %_segdir.root buffer */ int nRoot = 0; /* Size of aRoot[] in bytes */ int rc2; /* Return code from sqlite3_reset() */ int bAppendable = 0; /* Set to true if segment is appendable */ /* Read the %_segdir entry for index iIdx absolute level (iAbsLevel+1) */ sqlite3_bind_int64(pSelect, 1, iAbsLevel+1); sqlite3_bind_int(pSelect, 2, iIdx); if( sqlite3_step(pSelect)==SQLITE_ROW ){ iStart = sqlite3_column_int64(pSelect, 1); iLeafEnd = sqlite3_column_int64(pSelect, 2); fts3ReadEndBlockField(pSelect, 3, &iEnd, &pWriter->nLeafData); if( pWriter->nLeafData<0 ){ pWriter->nLeafData = pWriter->nLeafData * -1; } pWriter->bNoLeafData = (pWriter->nLeafData==0); nRoot = sqlite3_column_bytes(pSelect, 4); aRoot = sqlite3_column_blob(pSelect, 4); if( aRoot==0 ){ sqlite3_reset(pSelect); return nRoot ? SQLITE_NOMEM : FTS_CORRUPT_VTAB; } }else{ return sqlite3_reset(pSelect); } /* Check for the zero-length marker in the %_segments table */ rc = fts3IsAppendable(p, iEnd, &bAppendable); /* Check that zKey/nKey is larger than the largest key the candidate */ if( rc==SQLITE_OK && bAppendable ){ char *aLeaf = 0; int nLeaf = 0; rc = sqlite3Fts3ReadBlock(p, iLeafEnd, &aLeaf, &nLeaf, 0); if( rc==SQLITE_OK ){ NodeReader reader; for(rc = nodeReaderInit(&reader, aLeaf, nLeaf); rc==SQLITE_OK && reader.aNode; rc = nodeReaderNext(&reader) ){ assert( reader.aNode ); } if( fts3TermCmp(zKey, nKey, reader.term.a, reader.term.n)<=0 ){ bAppendable = 0; } nodeReaderRelease(&reader); } sqlite3_free(aLeaf); } if( rc==SQLITE_OK && bAppendable ){ /* It is possible to append to this segment. Set up the IncrmergeWriter ** object to do so. */ int i; int nHeight = (int)aRoot[0]; NodeWriter *pNode; if( nHeight<1 || nHeight>=FTS_MAX_APPENDABLE_HEIGHT ){ sqlite3_reset(pSelect); return FTS_CORRUPT_VTAB; } pWriter->nLeafEst = (int)((iEnd - iStart) + 1)/FTS_MAX_APPENDABLE_HEIGHT; pWriter->iStart = iStart; pWriter->iEnd = iEnd; pWriter->iAbsLevel = iAbsLevel; pWriter->iIdx = iIdx; for(i=nHeight+1; iaNodeWriter[i].iBlock = pWriter->iStart + i*pWriter->nLeafEst; } pNode = &pWriter->aNodeWriter[nHeight]; pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight; blobGrowBuffer(&pNode->block, MAX(nRoot, p->nNodeSize)+FTS3_NODE_PADDING, &rc ); if( rc==SQLITE_OK ){ memcpy(pNode->block.a, aRoot, nRoot); pNode->block.n = nRoot; memset(&pNode->block.a[nRoot], 0, FTS3_NODE_PADDING); } for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){ NodeReader reader; pNode = &pWriter->aNodeWriter[i]; if( pNode->block.a){ rc = nodeReaderInit(&reader, pNode->block.a, pNode->block.n); while( reader.aNode && rc==SQLITE_OK ) rc = nodeReaderNext(&reader); blobGrowBuffer(&pNode->key, reader.term.n, &rc); if( rc==SQLITE_OK ){ assert_fts3_nc( reader.term.n>0 || reader.aNode==0 ); if( reader.term.n>0 ){ memcpy(pNode->key.a, reader.term.a, reader.term.n); } pNode->key.n = reader.term.n; if( i>0 ){ char *aBlock = 0; int nBlock = 0; pNode = &pWriter->aNodeWriter[i-1]; pNode->iBlock = reader.iChild; rc = sqlite3Fts3ReadBlock(p, reader.iChild, &aBlock, &nBlock,0); blobGrowBuffer(&pNode->block, MAX(nBlock, p->nNodeSize)+FTS3_NODE_PADDING, &rc ); if( rc==SQLITE_OK ){ memcpy(pNode->block.a, aBlock, nBlock); pNode->block.n = nBlock; memset(&pNode->block.a[nBlock], 0, FTS3_NODE_PADDING); } sqlite3_free(aBlock); } } } nodeReaderRelease(&reader); } } rc2 = sqlite3_reset(pSelect); if( rc==SQLITE_OK ) rc = rc2; } return rc; } /* ** Determine the largest segment index value that exists within absolute ** level iAbsLevel+1. If no error occurs, set *piIdx to this value plus ** one before returning SQLITE_OK. Or, if there are no segments at all ** within level iAbsLevel, set *piIdx to zero. ** ** If an error occurs, return an SQLite error code. The final value of ** *piIdx is undefined in this case. */ static int fts3IncrmergeOutputIdx( Fts3Table *p, /* FTS Table handle */ sqlite3_int64 iAbsLevel, /* Absolute index of input segments */ int *piIdx /* OUT: Next free index at iAbsLevel+1 */ ){ int rc; sqlite3_stmt *pOutputIdx = 0; /* SQL used to find output index */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &pOutputIdx, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pOutputIdx, 1, iAbsLevel+1); sqlite3_step(pOutputIdx); *piIdx = sqlite3_column_int(pOutputIdx, 0); rc = sqlite3_reset(pOutputIdx); } return rc; } /* ** Allocate an appendable output segment on absolute level iAbsLevel+1 ** with idx value iIdx. ** ** In the %_segdir table, a segment is defined by the values in three ** columns: ** ** start_block ** leaves_end_block ** end_block ** ** When an appendable segment is allocated, it is estimated that the ** maximum number of leaf blocks that may be required is the sum of the ** number of leaf blocks consumed by the input segments, plus the number ** of input segments, multiplied by two. This value is stored in stack ** variable nLeafEst. ** ** A total of 16*nLeafEst blocks are allocated when an appendable segment ** is created ((1 + end_block - start_block)==16*nLeafEst). The contiguous ** array of leaf nodes starts at the first block allocated. The array ** of interior nodes that are parents of the leaf nodes start at block ** (start_block + (1 + end_block - start_block) / 16). And so on. ** ** In the actual code below, the value "16" is replaced with the ** pre-processor macro FTS_MAX_APPENDABLE_HEIGHT. */ static int fts3IncrmergeWriter( Fts3Table *p, /* Fts3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level of input segments */ int iIdx, /* Index of new output segment */ Fts3MultiSegReader *pCsr, /* Cursor that data will be read from */ IncrmergeWriter *pWriter /* Populate this object */ ){ int rc; /* Return Code */ int i; /* Iterator variable */ int nLeafEst = 0; /* Blocks allocated for leaf nodes */ sqlite3_stmt *pLeafEst = 0; /* SQL used to determine nLeafEst */ sqlite3_stmt *pFirstBlock = 0; /* SQL used to determine first block */ /* Calculate nLeafEst. */ rc = fts3SqlStmt(p, SQL_MAX_LEAF_NODE_ESTIMATE, &pLeafEst, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pLeafEst, 1, iAbsLevel); sqlite3_bind_int64(pLeafEst, 2, pCsr->nSegment); if( SQLITE_ROW==sqlite3_step(pLeafEst) ){ nLeafEst = sqlite3_column_int(pLeafEst, 0); } rc = sqlite3_reset(pLeafEst); } if( rc!=SQLITE_OK ) return rc; /* Calculate the first block to use in the output segment */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENTS_ID, &pFirstBlock, 0); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pFirstBlock) ){ pWriter->iStart = sqlite3_column_int64(pFirstBlock, 0); pWriter->iEnd = pWriter->iStart - 1; pWriter->iEnd += nLeafEst * FTS_MAX_APPENDABLE_HEIGHT; } rc = sqlite3_reset(pFirstBlock); } if( rc!=SQLITE_OK ) return rc; /* Insert the marker in the %_segments table to make sure nobody tries ** to steal the space just allocated. This is also used to identify ** appendable segments. */ rc = fts3WriteSegment(p, pWriter->iEnd, 0, 0); if( rc!=SQLITE_OK ) return rc; pWriter->iAbsLevel = iAbsLevel; pWriter->nLeafEst = nLeafEst; pWriter->iIdx = iIdx; /* Set up the array of NodeWriter objects */ for(i=0; iaNodeWriter[i].iBlock = pWriter->iStart + i*pWriter->nLeafEst; } return SQLITE_OK; } /* ** Remove an entry from the %_segdir table. This involves running the ** following two statements: ** ** DELETE FROM %_segdir WHERE level = :iAbsLevel AND idx = :iIdx ** UPDATE %_segdir SET idx = idx - 1 WHERE level = :iAbsLevel AND idx > :iIdx ** ** The DELETE statement removes the specific %_segdir level. The UPDATE ** statement ensures that the remaining segments have contiguously allocated ** idx values. */ static int fts3RemoveSegdirEntry( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level to delete from */ int iIdx /* Index of %_segdir entry to delete */ ){ int rc; /* Return code */ sqlite3_stmt *pDelete = 0; /* DELETE statement */ rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_ENTRY, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDelete, 1, iAbsLevel); sqlite3_bind_int(pDelete, 2, iIdx); sqlite3_step(pDelete); rc = sqlite3_reset(pDelete); } return rc; } /* ** One or more segments have just been removed from absolute level iAbsLevel. ** Update the 'idx' values of the remaining segments in the level so that ** the idx values are a contiguous sequence starting from 0. */ static int fts3RepackSegdirLevel( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel /* Absolute level to repack */ ){ int rc; /* Return code */ int *aIdx = 0; /* Array of remaining idx values */ int nIdx = 0; /* Valid entries in aIdx[] */ int nAlloc = 0; /* Allocated size of aIdx[] */ int i; /* Iterator variable */ sqlite3_stmt *pSelect = 0; /* Select statement to read idx values */ sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ rc = fts3SqlStmt(p, SQL_SELECT_INDEXES, &pSelect, 0); if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int64(pSelect, 1, iAbsLevel); while( SQLITE_ROW==sqlite3_step(pSelect) ){ if( nIdx>=nAlloc ){ int *aNew; nAlloc += 16; aNew = sqlite3_realloc(aIdx, nAlloc*sizeof(int)); if( !aNew ){ rc = SQLITE_NOMEM; break; } aIdx = aNew; } aIdx[nIdx++] = sqlite3_column_int(pSelect, 0); } rc2 = sqlite3_reset(pSelect); if( rc==SQLITE_OK ) rc = rc2; } if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_SHIFT_SEGDIR_ENTRY, &pUpdate, 0); } if( rc==SQLITE_OK ){ sqlite3_bind_int64(pUpdate, 2, iAbsLevel); } assert( p->bIgnoreSavepoint==0 ); p->bIgnoreSavepoint = 1; for(i=0; rc==SQLITE_OK && ibIgnoreSavepoint = 0; sqlite3_free(aIdx); return rc; } static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){ pNode->a[0] = (char)iHeight; if( iChild ){ assert( pNode->nAlloc>=1+sqlite3Fts3VarintLen(iChild) ); pNode->n = 1 + sqlite3Fts3PutVarint(&pNode->a[1], iChild); }else{ assert( pNode->nAlloc>=1 ); pNode->n = 1; } } /* ** The first two arguments are a pointer to and the size of a segment b-tree ** node. The node may be a leaf or an internal node. ** ** This function creates a new node image in blob object *pNew by copying ** all terms that are greater than or equal to zTerm/nTerm (for leaf nodes) ** or greater than zTerm/nTerm (for internal nodes) from aNode/nNode. */ static int fts3TruncateNode( const char *aNode, /* Current node image */ int nNode, /* Size of aNode in bytes */ Blob *pNew, /* OUT: Write new node image here */ const char *zTerm, /* Omit all terms smaller than this */ int nTerm, /* Size of zTerm in bytes */ sqlite3_int64 *piBlock /* OUT: Block number in next layer down */ ){ NodeReader reader; /* Reader object */ Blob prev = {0, 0, 0}; /* Previous term written to new node */ int rc = SQLITE_OK; /* Return code */ int bLeaf; /* True for a leaf node */ if( nNode<1 ) return FTS_CORRUPT_VTAB; bLeaf = aNode[0]=='\0'; /* Allocate required output space */ blobGrowBuffer(pNew, nNode, &rc); if( rc!=SQLITE_OK ) return rc; pNew->n = 0; /* Populate new node buffer */ for(rc = nodeReaderInit(&reader, aNode, nNode); rc==SQLITE_OK && reader.aNode; rc = nodeReaderNext(&reader) ){ if( pNew->n==0 ){ int res = fts3TermCmp(reader.term.a, reader.term.n, zTerm, nTerm); if( res<0 || (bLeaf==0 && res==0) ) continue; fts3StartNode(pNew, (int)aNode[0], reader.iChild); *piBlock = reader.iChild; } rc = fts3AppendToNode( pNew, &prev, reader.term.a, reader.term.n, reader.aDoclist, reader.nDoclist ); if( rc!=SQLITE_OK ) break; } if( pNew->n==0 ){ fts3StartNode(pNew, (int)aNode[0], reader.iChild); *piBlock = reader.iChild; } assert( pNew->n<=pNew->nAlloc ); nodeReaderRelease(&reader); sqlite3_free(prev.a); return rc; } /* ** Remove all terms smaller than zTerm/nTerm from segment iIdx in absolute ** level iAbsLevel. This may involve deleting entries from the %_segments ** table, and modifying existing entries in both the %_segments and %_segdir ** tables. ** ** SQLITE_OK is returned if the segment is updated successfully. Or an ** SQLite error code otherwise. */ static int fts3TruncateSegment( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level of segment to modify */ int iIdx, /* Index within level of segment to modify */ const char *zTerm, /* Remove terms smaller than this */ int nTerm /* Number of bytes in buffer zTerm */ ){ int rc = SQLITE_OK; /* Return code */ Blob root = {0,0,0}; /* New root page image */ Blob block = {0,0,0}; /* Buffer used for any other block */ sqlite3_int64 iBlock = 0; /* Block id */ sqlite3_int64 iNewStart = 0; /* New value for iStartBlock */ sqlite3_int64 iOldStart = 0; /* Old value for iStartBlock */ sqlite3_stmt *pFetch = 0; /* Statement used to fetch segdir */ rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pFetch, 0); if( rc==SQLITE_OK ){ int rc2; /* sqlite3_reset() return code */ sqlite3_bind_int64(pFetch, 1, iAbsLevel); sqlite3_bind_int(pFetch, 2, iIdx); if( SQLITE_ROW==sqlite3_step(pFetch) ){ const char *aRoot = sqlite3_column_blob(pFetch, 4); int nRoot = sqlite3_column_bytes(pFetch, 4); iOldStart = sqlite3_column_int64(pFetch, 1); rc = fts3TruncateNode(aRoot, nRoot, &root, zTerm, nTerm, &iBlock); } rc2 = sqlite3_reset(pFetch); if( rc==SQLITE_OK ) rc = rc2; } while( rc==SQLITE_OK && iBlock ){ char *aBlock = 0; int nBlock = 0; iNewStart = iBlock; rc = sqlite3Fts3ReadBlock(p, iBlock, &aBlock, &nBlock, 0); if( rc==SQLITE_OK ){ rc = fts3TruncateNode(aBlock, nBlock, &block, zTerm, nTerm, &iBlock); } if( rc==SQLITE_OK ){ rc = fts3WriteSegment(p, iNewStart, block.a, block.n); } sqlite3_free(aBlock); } /* Variable iNewStart now contains the first valid leaf node. */ if( rc==SQLITE_OK && iNewStart ){ sqlite3_stmt *pDel = 0; rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDel, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDel, 1, iOldStart); sqlite3_bind_int64(pDel, 2, iNewStart-1); sqlite3_step(pDel); rc = sqlite3_reset(pDel); } } if( rc==SQLITE_OK ){ sqlite3_stmt *pChomp = 0; rc = fts3SqlStmt(p, SQL_CHOMP_SEGDIR, &pChomp, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pChomp, 1, iNewStart); sqlite3_bind_blob(pChomp, 2, root.a, root.n, SQLITE_STATIC); sqlite3_bind_int64(pChomp, 3, iAbsLevel); sqlite3_bind_int(pChomp, 4, iIdx); sqlite3_step(pChomp); rc = sqlite3_reset(pChomp); sqlite3_bind_null(pChomp, 2); } } sqlite3_free(root.a); sqlite3_free(block.a); return rc; } /* ** This function is called after an incrmental-merge operation has run to ** merge (or partially merge) two or more segments from absolute level ** iAbsLevel. ** ** Each input segment is either removed from the db completely (if all of ** its data was copied to the output segment by the incrmerge operation) ** or modified in place so that it no longer contains those entries that ** have been duplicated in the output segment. */ static int fts3IncrmergeChomp( Fts3Table *p, /* FTS table handle */ sqlite3_int64 iAbsLevel, /* Absolute level containing segments */ Fts3MultiSegReader *pCsr, /* Chomp all segments opened by this cursor */ int *pnRem /* Number of segments not deleted */ ){ int i; int nRem = 0; int rc = SQLITE_OK; for(i=pCsr->nSegment-1; i>=0 && rc==SQLITE_OK; i--){ Fts3SegReader *pSeg = 0; int j; /* Find the Fts3SegReader object with Fts3SegReader.iIdx==i. It is hiding ** somewhere in the pCsr->apSegment[] array. */ for(j=0; ALWAYS(jnSegment); j++){ pSeg = pCsr->apSegment[j]; if( pSeg->iIdx==i ) break; } assert( jnSegment && pSeg->iIdx==i ); if( pSeg->aNode==0 ){ /* Seg-reader is at EOF. Remove the entire input segment. */ rc = fts3DeleteSegment(p, pSeg); if( rc==SQLITE_OK ){ rc = fts3RemoveSegdirEntry(p, iAbsLevel, pSeg->iIdx); } *pnRem = 0; }else{ /* The incremental merge did not copy all the data from this ** segment to the upper level. The segment is modified in place ** so that it contains no keys smaller than zTerm/nTerm. */ const char *zTerm = pSeg->zTerm; int nTerm = pSeg->nTerm; rc = fts3TruncateSegment(p, iAbsLevel, pSeg->iIdx, zTerm, nTerm); nRem++; } } if( rc==SQLITE_OK && nRem!=pCsr->nSegment ){ rc = fts3RepackSegdirLevel(p, iAbsLevel); } *pnRem = nRem; return rc; } /* ** Store an incr-merge hint in the database. */ static int fts3IncrmergeHintStore(Fts3Table *p, Blob *pHint){ sqlite3_stmt *pReplace = 0; int rc; /* Return code */ rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pReplace, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int(pReplace, 1, FTS_STAT_INCRMERGEHINT); sqlite3_bind_blob(pReplace, 2, pHint->a, pHint->n, SQLITE_STATIC); sqlite3_step(pReplace); rc = sqlite3_reset(pReplace); sqlite3_bind_null(pReplace, 2); } return rc; } /* ** Load an incr-merge hint from the database. The incr-merge hint, if one ** exists, is stored in the rowid==1 row of the %_stat table. ** ** If successful, populate blob *pHint with the value read from the %_stat ** table and return SQLITE_OK. Otherwise, if an error occurs, return an ** SQLite error code. */ static int fts3IncrmergeHintLoad(Fts3Table *p, Blob *pHint){ sqlite3_stmt *pSelect = 0; int rc; pHint->n = 0; rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pSelect, 0); if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int(pSelect, 1, FTS_STAT_INCRMERGEHINT); if( SQLITE_ROW==sqlite3_step(pSelect) ){ const char *aHint = sqlite3_column_blob(pSelect, 0); int nHint = sqlite3_column_bytes(pSelect, 0); if( aHint ){ blobGrowBuffer(pHint, nHint, &rc); if( rc==SQLITE_OK ){ if( ALWAYS(pHint->a!=0) ) memcpy(pHint->a, aHint, nHint); pHint->n = nHint; } } } rc2 = sqlite3_reset(pSelect); if( rc==SQLITE_OK ) rc = rc2; } return rc; } /* ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, append an entry to the hint stored in blob *pHint. Each entry ** consists of two varints, the absolute level number of the input segments ** and the number of input segments. ** ** If successful, leave *pRc set to SQLITE_OK and return. If an error occurs, ** set *pRc to an SQLite error code before returning. */ static void fts3IncrmergeHintPush( Blob *pHint, /* Hint blob to append to */ i64 iAbsLevel, /* First varint to store in hint */ int nInput, /* Second varint to store in hint */ int *pRc /* IN/OUT: Error code */ ){ blobGrowBuffer(pHint, pHint->n + 2*FTS3_VARINT_MAX, pRc); if( *pRc==SQLITE_OK ){ pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], iAbsLevel); pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput); } } /* ** Read the last entry (most recently pushed) from the hint blob *pHint ** and then remove the entry. Write the two values read to *piAbsLevel and ** *pnInput before returning. ** ** If no error occurs, return SQLITE_OK. If the hint blob in *pHint does ** not contain at least two valid varints, return SQLITE_CORRUPT_VTAB. */ static int fts3IncrmergeHintPop(Blob *pHint, i64 *piAbsLevel, int *pnInput){ const int nHint = pHint->n; int i; i = pHint->n-1; if( (pHint->a[i] & 0x80) ) return FTS_CORRUPT_VTAB; while( i>0 && (pHint->a[i-1] & 0x80) ) i--; if( i==0 ) return FTS_CORRUPT_VTAB; i--; while( i>0 && (pHint->a[i-1] & 0x80) ) i--; pHint->n = i; i += sqlite3Fts3GetVarint(&pHint->a[i], piAbsLevel); i += fts3GetVarint32(&pHint->a[i], pnInput); assert( i<=nHint ); if( i!=nHint ) return FTS_CORRUPT_VTAB; return SQLITE_OK; } /* ** Attempt an incremental merge that writes nMerge leaf blocks. ** ** Incremental merges happen nMin segments at a time. The segments ** to be merged are the nMin oldest segments (the ones with the smallest ** values for the _segdir.idx field) in the highest level that contains ** at least nMin segments. Multiple merges might occur in an attempt to ** write the quota of nMerge leaf blocks. */ SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table *p, int nMerge, int nMin){ int rc; /* Return code */ int nRem = nMerge; /* Number of leaf pages yet to be written */ Fts3MultiSegReader *pCsr; /* Cursor used to read input data */ Fts3SegFilter *pFilter; /* Filter used with cursor pCsr */ IncrmergeWriter *pWriter; /* Writer object */ int nSeg = 0; /* Number of input segments */ sqlite3_int64 iAbsLevel = 0; /* Absolute level number to work on */ Blob hint = {0, 0, 0}; /* Hint read from %_stat table */ int bDirtyHint = 0; /* True if blob 'hint' has been modified */ /* Allocate space for the cursor, filter and writer objects */ const int nAlloc = sizeof(*pCsr) + sizeof(*pFilter) + sizeof(*pWriter); pWriter = (IncrmergeWriter *)sqlite3_malloc(nAlloc); if( !pWriter ) return SQLITE_NOMEM; pFilter = (Fts3SegFilter *)&pWriter[1]; pCsr = (Fts3MultiSegReader *)&pFilter[1]; rc = fts3IncrmergeHintLoad(p, &hint); while( rc==SQLITE_OK && nRem>0 ){ const i64 nMod = FTS3_SEGDIR_MAXLEVEL * p->nIndex; sqlite3_stmt *pFindLevel = 0; /* SQL used to determine iAbsLevel */ int bUseHint = 0; /* True if attempting to append */ int iIdx = 0; /* Largest idx in level (iAbsLevel+1) */ /* Search the %_segdir table for the absolute level with the smallest ** relative level number that contains at least nMin segments, if any. ** If one is found, set iAbsLevel to the absolute level number and ** nSeg to nMin. If no level with at least nMin segments can be found, ** set nSeg to -1. */ rc = fts3SqlStmt(p, SQL_FIND_MERGE_LEVEL, &pFindLevel, 0); sqlite3_bind_int(pFindLevel, 1, MAX(2, nMin)); if( sqlite3_step(pFindLevel)==SQLITE_ROW ){ iAbsLevel = sqlite3_column_int64(pFindLevel, 0); nSeg = sqlite3_column_int(pFindLevel, 1); assert( nSeg>=2 ); }else{ nSeg = -1; } rc = sqlite3_reset(pFindLevel); /* If the hint read from the %_stat table is not empty, check if the ** last entry in it specifies a relative level smaller than or equal ** to the level identified by the block above (if any). If so, this ** iteration of the loop will work on merging at the hinted level. */ if( rc==SQLITE_OK && hint.n ){ int nHint = hint.n; sqlite3_int64 iHintAbsLevel = 0; /* Hint level */ int nHintSeg = 0; /* Hint number of segments */ rc = fts3IncrmergeHintPop(&hint, &iHintAbsLevel, &nHintSeg); if( nSeg<0 || (iAbsLevel % nMod) >= (iHintAbsLevel % nMod) ){ /* Based on the scan in the block above, it is known that there ** are no levels with a relative level smaller than that of ** iAbsLevel with more than nSeg segments, or if nSeg is -1, ** no levels with more than nMin segments. Use this to limit the ** value of nHintSeg to avoid a large memory allocation in case the ** merge-hint is corrupt*/ iAbsLevel = iHintAbsLevel; nSeg = MIN(MAX(nMin,nSeg), nHintSeg); bUseHint = 1; bDirtyHint = 1; }else{ /* This undoes the effect of the HintPop() above - so that no entry ** is removed from the hint blob. */ hint.n = nHint; } } /* If nSeg is less that zero, then there is no level with at least ** nMin segments and no hint in the %_stat table. No work to do. ** Exit early in this case. */ if( nSeg<=0 ) break; assert( nMod<=0x7FFFFFFF ); if( iAbsLevel<0 || iAbsLevel>(nMod<<32) ){ rc = FTS_CORRUPT_VTAB; break; } /* Open a cursor to iterate through the contents of the oldest nSeg ** indexes of absolute level iAbsLevel. If this cursor is opened using ** the 'hint' parameters, it is possible that there are less than nSeg ** segments available in level iAbsLevel. In this case, no work is ** done on iAbsLevel - fall through to the next iteration of the loop ** to start work on some other level. */ memset(pWriter, 0, nAlloc); pFilter->flags = FTS3_SEGMENT_REQUIRE_POS; if( rc==SQLITE_OK ){ rc = fts3IncrmergeOutputIdx(p, iAbsLevel, &iIdx); assert( bUseHint==1 || bUseHint==0 ); if( iIdx==0 || (bUseHint && iIdx==1) ){ int bIgnore = 0; rc = fts3SegmentIsMaxLevel(p, iAbsLevel+1, &bIgnore); if( bIgnore ){ pFilter->flags |= FTS3_SEGMENT_IGNORE_EMPTY; } } } if( rc==SQLITE_OK ){ rc = fts3IncrmergeCsr(p, iAbsLevel, nSeg, pCsr); } if( SQLITE_OK==rc && pCsr->nSegment==nSeg && SQLITE_OK==(rc = sqlite3Fts3SegReaderStart(p, pCsr, pFilter)) ){ int bEmpty = 0; rc = sqlite3Fts3SegReaderStep(p, pCsr); if( rc==SQLITE_OK ){ bEmpty = 1; }else if( rc!=SQLITE_ROW ){ sqlite3Fts3SegReaderFinish(pCsr); break; } if( bUseHint && iIdx>0 ){ const char *zKey = pCsr->zTerm; int nKey = pCsr->nTerm; rc = fts3IncrmergeLoad(p, iAbsLevel, iIdx-1, zKey, nKey, pWriter); }else{ rc = fts3IncrmergeWriter(p, iAbsLevel, iIdx, pCsr, pWriter); } if( rc==SQLITE_OK && pWriter->nLeafEst ){ fts3LogMerge(nSeg, iAbsLevel); if( bEmpty==0 ){ do { rc = fts3IncrmergeAppend(p, pWriter, pCsr); if( rc==SQLITE_OK ) rc = sqlite3Fts3SegReaderStep(p, pCsr); if( pWriter->nWork>=nRem && rc==SQLITE_ROW ) rc = SQLITE_OK; }while( rc==SQLITE_ROW ); } /* Update or delete the input segments */ if( rc==SQLITE_OK ){ nRem -= (1 + pWriter->nWork); rc = fts3IncrmergeChomp(p, iAbsLevel, pCsr, &nSeg); if( nSeg!=0 ){ bDirtyHint = 1; fts3IncrmergeHintPush(&hint, iAbsLevel, nSeg, &rc); } } } if( nSeg!=0 ){ pWriter->nLeafData = pWriter->nLeafData * -1; } fts3IncrmergeRelease(p, pWriter, &rc); if( nSeg==0 && pWriter->bNoLeafData==0 ){ fts3PromoteSegments(p, iAbsLevel+1, pWriter->nLeafData); } } sqlite3Fts3SegReaderFinish(pCsr); } /* Write the hint values into the %_stat table for the next incr-merger */ if( bDirtyHint && rc==SQLITE_OK ){ rc = fts3IncrmergeHintStore(p, &hint); } sqlite3_free(pWriter); sqlite3_free(hint.a); return rc; } /* ** Convert the text beginning at *pz into an integer and return ** its value. Advance *pz to point to the first character past ** the integer. ** ** This function used for parameters to merge= and incrmerge= ** commands. */ static int fts3Getint(const char **pz){ const char *z = *pz; int i = 0; while( (*z)>='0' && (*z)<='9' && i<214748363 ) i = 10*i + *(z++) - '0'; *pz = z; return i; } /* ** Process statements of the form: ** ** INSERT INTO table(table) VALUES('merge=A,B'); ** ** A and B are integers that decode to be the number of leaf pages ** written for the merge, and the minimum number of segments on a level ** before it will be selected for a merge, respectively. */ static int fts3DoIncrmerge( Fts3Table *p, /* FTS3 table handle */ const char *zParam /* Nul-terminated string containing "A,B" */ ){ int rc; int nMin = (MergeCount(p) / 2); int nMerge = 0; const char *z = zParam; /* Read the first integer value */ nMerge = fts3Getint(&z); /* If the first integer value is followed by a ',', read the second ** integer value. */ if( z[0]==',' && z[1]!='\0' ){ z++; nMin = fts3Getint(&z); } if( z[0]!='\0' || nMin<2 ){ rc = SQLITE_ERROR; }else{ rc = SQLITE_OK; if( !p->bHasStat ){ assert( p->bFts4==0 ); sqlite3Fts3CreateStatTable(&rc, p); } if( rc==SQLITE_OK ){ rc = sqlite3Fts3Incrmerge(p, nMerge, nMin); } sqlite3Fts3SegmentsClose(p); } return rc; } /* ** Process statements of the form: ** ** INSERT INTO table(table) VALUES('automerge=X'); ** ** where X is an integer. X==0 means to turn automerge off. X!=0 means ** turn it on. The setting is persistent. */ static int fts3DoAutoincrmerge( Fts3Table *p, /* FTS3 table handle */ const char *zParam /* Nul-terminated string containing boolean */ ){ int rc = SQLITE_OK; sqlite3_stmt *pStmt = 0; p->nAutoincrmerge = fts3Getint(&zParam); if( p->nAutoincrmerge==1 || p->nAutoincrmerge>MergeCount(p) ){ p->nAutoincrmerge = 8; } if( !p->bHasStat ){ assert( p->bFts4==0 ); sqlite3Fts3CreateStatTable(&rc, p); if( rc ) return rc; } rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pStmt, 0); if( rc ) return rc; sqlite3_bind_int(pStmt, 1, FTS_STAT_AUTOINCRMERGE); sqlite3_bind_int(pStmt, 2, p->nAutoincrmerge); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); return rc; } /* ** Return a 64-bit checksum for the FTS index entry specified by the ** arguments to this function. */ static u64 fts3ChecksumEntry( const char *zTerm, /* Pointer to buffer containing term */ int nTerm, /* Size of zTerm in bytes */ int iLangid, /* Language id for current row */ int iIndex, /* Index (0..Fts3Table.nIndex-1) */ i64 iDocid, /* Docid for current row. */ int iCol, /* Column number */ int iPos /* Position */ ){ int i; u64 ret = (u64)iDocid; ret += (ret<<3) + iLangid; ret += (ret<<3) + iIndex; ret += (ret<<3) + iCol; ret += (ret<<3) + iPos; for(i=0; inIndex-1) */ int *pRc /* OUT: Return code */ ){ Fts3SegFilter filter; Fts3MultiSegReader csr; int rc; u64 cksum = 0; assert( *pRc==SQLITE_OK ); memset(&filter, 0, sizeof(filter)); memset(&csr, 0, sizeof(csr)); filter.flags = FTS3_SEGMENT_REQUIRE_POS|FTS3_SEGMENT_IGNORE_EMPTY; filter.flags |= FTS3_SEGMENT_SCAN; rc = sqlite3Fts3SegReaderCursor( p, iLangid, iIndex, FTS3_SEGCURSOR_ALL, 0, 0, 0, 1,&csr ); if( rc==SQLITE_OK ){ rc = sqlite3Fts3SegReaderStart(p, &csr, &filter); } if( rc==SQLITE_OK ){ while( SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, &csr)) ){ char *pCsr = csr.aDoclist; char *pEnd = &pCsr[csr.nDoclist]; i64 iDocid = 0; i64 iCol = 0; u64 iPos = 0; pCsr += sqlite3Fts3GetVarint(pCsr, &iDocid); while( pCsrbDescIdx ){ iDocid = (i64)((u64)iDocid - iVal); }else{ iDocid = (i64)((u64)iDocid + iVal); } } }else{ iPos += (iVal - 2); cksum = cksum ^ fts3ChecksumEntry( csr.zTerm, csr.nTerm, iLangid, iIndex, iDocid, (int)iCol, (int)iPos ); } } } } } sqlite3Fts3SegReaderFinish(&csr); *pRc = rc; return cksum; } /* ** Check if the contents of the FTS index match the current contents of the ** content table. If no error occurs and the contents do match, set *pbOk ** to true and return SQLITE_OK. Or if the contents do not match, set *pbOk ** to false before returning. ** ** If an error occurs (e.g. an OOM or IO error), return an SQLite error ** code. The final value of *pbOk is undefined in this case. */ static int fts3IntegrityCheck(Fts3Table *p, int *pbOk){ int rc = SQLITE_OK; /* Return code */ u64 cksum1 = 0; /* Checksum based on FTS index contents */ u64 cksum2 = 0; /* Checksum based on %_content contents */ sqlite3_stmt *pAllLangid = 0; /* Statement to return all language-ids */ /* This block calculates the checksum according to the FTS index. */ rc = fts3SqlStmt(p, SQL_SELECT_ALL_LANGID, &pAllLangid, 0); if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int(pAllLangid, 1, p->iPrevLangid); sqlite3_bind_int(pAllLangid, 2, p->nIndex); while( rc==SQLITE_OK && sqlite3_step(pAllLangid)==SQLITE_ROW ){ int iLangid = sqlite3_column_int(pAllLangid, 0); int i; for(i=0; inIndex; i++){ cksum1 = cksum1 ^ fts3ChecksumIndex(p, iLangid, i, &rc); } } rc2 = sqlite3_reset(pAllLangid); if( rc==SQLITE_OK ) rc = rc2; } /* This block calculates the checksum according to the %_content table */ if( rc==SQLITE_OK ){ sqlite3_tokenizer_module const *pModule = p->pTokenizer->pModule; sqlite3_stmt *pStmt = 0; char *zSql; zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); } while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ i64 iDocid = sqlite3_column_int64(pStmt, 0); int iLang = langidFromSelect(p, pStmt); int iCol; for(iCol=0; rc==SQLITE_OK && iColnColumn; iCol++){ if( p->abNotindexed[iCol]==0 ){ const char *zText = (const char *)sqlite3_column_text(pStmt, iCol+1); sqlite3_tokenizer_cursor *pT = 0; rc = sqlite3Fts3OpenTokenizer(p->pTokenizer, iLang, zText, -1, &pT); while( rc==SQLITE_OK ){ char const *zToken; /* Buffer containing token */ int nToken = 0; /* Number of bytes in token */ int iDum1 = 0, iDum2 = 0; /* Dummy variables */ int iPos = 0; /* Position of token in zText */ rc = pModule->xNext(pT, &zToken, &nToken, &iDum1, &iDum2, &iPos); if( rc==SQLITE_OK ){ int i; cksum2 = cksum2 ^ fts3ChecksumEntry( zToken, nToken, iLang, 0, iDocid, iCol, iPos ); for(i=1; inIndex; i++){ if( p->aIndex[i].nPrefix<=nToken ){ cksum2 = cksum2 ^ fts3ChecksumEntry( zToken, p->aIndex[i].nPrefix, iLang, i, iDocid, iCol, iPos ); } } } } if( pT ) pModule->xClose(pT); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } } } sqlite3_finalize(pStmt); } *pbOk = (cksum1==cksum2); return rc; } /* ** Run the integrity-check. If no error occurs and the current contents of ** the FTS index are correct, return SQLITE_OK. Or, if the contents of the ** FTS index are incorrect, return SQLITE_CORRUPT_VTAB. ** ** Or, if an error (e.g. an OOM or IO error) occurs, return an SQLite ** error code. ** ** The integrity-check works as follows. For each token and indexed token ** prefix in the document set, a 64-bit checksum is calculated (by code ** in fts3ChecksumEntry()) based on the following: ** ** + The index number (0 for the main index, 1 for the first prefix ** index etc.), ** + The token (or token prefix) text itself, ** + The language-id of the row it appears in, ** + The docid of the row it appears in, ** + The column it appears in, and ** + The tokens position within that column. ** ** The checksums for all entries in the index are XORed together to create ** a single checksum for the entire index. ** ** The integrity-check code calculates the same checksum in two ways: ** ** 1. By scanning the contents of the FTS index, and ** 2. By scanning and tokenizing the content table. ** ** If the two checksums are identical, the integrity-check is deemed to have ** passed. */ static int fts3DoIntegrityCheck( Fts3Table *p /* FTS3 table handle */ ){ int rc; int bOk = 0; rc = fts3IntegrityCheck(p, &bOk); if( rc==SQLITE_OK && bOk==0 ) rc = FTS_CORRUPT_VTAB; return rc; } /* ** Handle a 'special' INSERT of the form: ** ** "INSERT INTO tbl(tbl) VALUES()" ** ** Argument pVal contains the result of . Currently the only ** meaningful value to insert is the text 'optimize'. */ static int fts3SpecialInsert(Fts3Table *p, sqlite3_value *pVal){ int rc = SQLITE_ERROR; /* Return Code */ const char *zVal = (const char *)sqlite3_value_text(pVal); int nVal = sqlite3_value_bytes(pVal); if( !zVal ){ return SQLITE_NOMEM; }else if( nVal==8 && 0==sqlite3_strnicmp(zVal, "optimize", 8) ){ rc = fts3DoOptimize(p, 0); }else if( nVal==7 && 0==sqlite3_strnicmp(zVal, "rebuild", 7) ){ rc = fts3DoRebuild(p); }else if( nVal==15 && 0==sqlite3_strnicmp(zVal, "integrity-check", 15) ){ rc = fts3DoIntegrityCheck(p); }else if( nVal>6 && 0==sqlite3_strnicmp(zVal, "merge=", 6) ){ rc = fts3DoIncrmerge(p, &zVal[6]); }else if( nVal>10 && 0==sqlite3_strnicmp(zVal, "automerge=", 10) ){ rc = fts3DoAutoincrmerge(p, &zVal[10]); #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) }else{ int v; if( nVal>9 && 0==sqlite3_strnicmp(zVal, "nodesize=", 9) ){ v = atoi(&zVal[9]); if( v>=24 && v<=p->nPgsz-35 ) p->nNodeSize = v; rc = SQLITE_OK; }else if( nVal>11 && 0==sqlite3_strnicmp(zVal, "maxpending=", 9) ){ v = atoi(&zVal[11]); if( v>=64 && v<=FTS3_MAX_PENDING_DATA ) p->nMaxPendingData = v; rc = SQLITE_OK; }else if( nVal>21 && 0==sqlite3_strnicmp(zVal,"test-no-incr-doclist=",21) ){ p->bNoIncrDoclist = atoi(&zVal[21]); rc = SQLITE_OK; }else if( nVal>11 && 0==sqlite3_strnicmp(zVal,"mergecount=",11) ){ v = atoi(&zVal[11]); if( v>=4 && v<=FTS3_MERGE_COUNT && (v&1)==0 ) p->nMergeCount = v; rc = SQLITE_OK; } #endif } return rc; } #ifndef SQLITE_DISABLE_FTS4_DEFERRED /* ** Delete all cached deferred doclists. Deferred doclists are cached ** (allocated) by the sqlite3Fts3CacheDeferredDoclists() function. */ SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *pCsr){ Fts3DeferredToken *pDef; for(pDef=pCsr->pDeferred; pDef; pDef=pDef->pNext){ fts3PendingListDelete(pDef->pList); pDef->pList = 0; } } /* ** Free all entries in the pCsr->pDeffered list. Entries are added to ** this list using sqlite3Fts3DeferToken(). */ SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *pCsr){ Fts3DeferredToken *pDef; Fts3DeferredToken *pNext; for(pDef=pCsr->pDeferred; pDef; pDef=pNext){ pNext = pDef->pNext; fts3PendingListDelete(pDef->pList); sqlite3_free(pDef); } pCsr->pDeferred = 0; } /* ** Generate deferred-doclists for all tokens in the pCsr->pDeferred list ** based on the row that pCsr currently points to. ** ** A deferred-doclist is like any other doclist with position information ** included, except that it only contains entries for a single row of the ** table, not for all rows. */ SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *pCsr){ int rc = SQLITE_OK; /* Return code */ if( pCsr->pDeferred ){ int i; /* Used to iterate through table columns */ sqlite3_int64 iDocid; /* Docid of the row pCsr points to */ Fts3DeferredToken *pDef; /* Used to iterate through deferred tokens */ Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; sqlite3_tokenizer *pT = p->pTokenizer; sqlite3_tokenizer_module const *pModule = pT->pModule; assert( pCsr->isRequireSeek==0 ); iDocid = sqlite3_column_int64(pCsr->pStmt, 0); for(i=0; inColumn && rc==SQLITE_OK; i++){ if( p->abNotindexed[i]==0 ){ const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1); sqlite3_tokenizer_cursor *pTC = 0; rc = sqlite3Fts3OpenTokenizer(pT, pCsr->iLangid, zText, -1, &pTC); while( rc==SQLITE_OK ){ char const *zToken; /* Buffer containing token */ int nToken = 0; /* Number of bytes in token */ int iDum1 = 0, iDum2 = 0; /* Dummy variables */ int iPos = 0; /* Position of token in zText */ rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos); for(pDef=pCsr->pDeferred; pDef && rc==SQLITE_OK; pDef=pDef->pNext){ Fts3PhraseToken *pPT = pDef->pToken; if( (pDef->iCol>=p->nColumn || pDef->iCol==i) && (pPT->bFirst==0 || iPos==0) && (pPT->n==nToken || (pPT->isPrefix && pPT->nz, pPT->n)) ){ fts3PendingListAppend(&pDef->pList, iDocid, i, iPos, &rc); } } } if( pTC ) pModule->xClose(pTC); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } } for(pDef=pCsr->pDeferred; pDef && rc==SQLITE_OK; pDef=pDef->pNext){ if( pDef->pList ){ rc = fts3PendingListAppendVarint(&pDef->pList, 0); } } } return rc; } SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList( Fts3DeferredToken *p, char **ppData, int *pnData ){ char *pRet; int nSkip; sqlite3_int64 dummy; *ppData = 0; *pnData = 0; if( p->pList==0 ){ return SQLITE_OK; } pRet = (char *)sqlite3_malloc(p->pList->nData); if( !pRet ) return SQLITE_NOMEM; nSkip = sqlite3Fts3GetVarint(p->pList->aData, &dummy); *pnData = p->pList->nData - nSkip; *ppData = pRet; memcpy(pRet, &p->pList->aData[nSkip], *pnData); return SQLITE_OK; } /* ** Add an entry for token pToken to the pCsr->pDeferred list. */ SQLITE_PRIVATE int sqlite3Fts3DeferToken( Fts3Cursor *pCsr, /* Fts3 table cursor */ Fts3PhraseToken *pToken, /* Token to defer */ int iCol /* Column that token must appear in (or -1) */ ){ Fts3DeferredToken *pDeferred; pDeferred = sqlite3_malloc(sizeof(*pDeferred)); if( !pDeferred ){ return SQLITE_NOMEM; } memset(pDeferred, 0, sizeof(*pDeferred)); pDeferred->pToken = pToken; pDeferred->pNext = pCsr->pDeferred; pDeferred->iCol = iCol; pCsr->pDeferred = pDeferred; assert( pToken->pDeferred==0 ); pToken->pDeferred = pDeferred; return SQLITE_OK; } #endif /* ** SQLite value pRowid contains the rowid of a row that may or may not be ** present in the FTS3 table. If it is, delete it and adjust the contents ** of subsiduary data structures accordingly. */ static int fts3DeleteByRowid( Fts3Table *p, sqlite3_value *pRowid, int *pnChng, /* IN/OUT: Decrement if row is deleted */ u32 *aSzDel ){ int rc = SQLITE_OK; /* Return code */ int bFound = 0; /* True if *pRowid really is in the table */ fts3DeleteTerms(&rc, p, pRowid, aSzDel, &bFound); if( bFound && rc==SQLITE_OK ){ int isEmpty = 0; /* Deleting *pRowid leaves the table empty */ rc = fts3IsEmpty(p, pRowid, &isEmpty); if( rc==SQLITE_OK ){ if( isEmpty ){ /* Deleting this row means the whole table is empty. In this case ** delete the contents of all three tables and throw away any ** data in the pendingTerms hash table. */ rc = fts3DeleteAll(p, 1); *pnChng = 0; memset(aSzDel, 0, sizeof(u32) * (p->nColumn+1) * 2); }else{ *pnChng = *pnChng - 1; if( p->zContentTbl==0 ){ fts3SqlExec(&rc, p, SQL_DELETE_CONTENT, &pRowid); } if( p->bHasDocsize ){ fts3SqlExec(&rc, p, SQL_DELETE_DOCSIZE, &pRowid); } } } } return rc; } /* ** This function does the work for the xUpdate method of FTS3 virtual ** tables. The schema of the virtual table being: ** ** CREATE TABLE
    ( ** , **
    HIDDEN, ** docid HIDDEN, ** HIDDEN ** ); ** ** */ SQLITE_PRIVATE int sqlite3Fts3UpdateMethod( sqlite3_vtab *pVtab, /* FTS3 vtab object */ int nArg, /* Size of argument array */ sqlite3_value **apVal, /* Array of arguments */ sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */ ){ Fts3Table *p = (Fts3Table *)pVtab; int rc = SQLITE_OK; /* Return Code */ u32 *aSzIns = 0; /* Sizes of inserted documents */ u32 *aSzDel = 0; /* Sizes of deleted documents */ int nChng = 0; /* Net change in number of documents */ int bInsertDone = 0; /* At this point it must be known if the %_stat table exists or not. ** So bHasStat may not be 2. */ assert( p->bHasStat==0 || p->bHasStat==1 ); assert( p->pSegments==0 ); assert( nArg==1 /* DELETE operations */ || nArg==(2 + p->nColumn + 3) /* INSERT or UPDATE operations */ ); /* Check for a "special" INSERT operation. One of the form: ** ** INSERT INTO xyz(xyz) VALUES('command'); */ if( nArg>1 && sqlite3_value_type(apVal[0])==SQLITE_NULL && sqlite3_value_type(apVal[p->nColumn+2])!=SQLITE_NULL ){ rc = fts3SpecialInsert(p, apVal[p->nColumn+2]); goto update_out; } if( nArg>1 && sqlite3_value_int(apVal[2 + p->nColumn + 2])<0 ){ rc = SQLITE_CONSTRAINT; goto update_out; } /* Allocate space to hold the change in document sizes */ aSzDel = sqlite3_malloc64(sizeof(aSzDel[0])*((sqlite3_int64)p->nColumn+1)*2); if( aSzDel==0 ){ rc = SQLITE_NOMEM; goto update_out; } aSzIns = &aSzDel[p->nColumn+1]; memset(aSzDel, 0, sizeof(aSzDel[0])*(p->nColumn+1)*2); rc = fts3Writelock(p); if( rc!=SQLITE_OK ) goto update_out; /* If this is an INSERT operation, or an UPDATE that modifies the rowid ** value, then this operation requires constraint handling. ** ** If the on-conflict mode is REPLACE, this means that the existing row ** should be deleted from the database before inserting the new row. Or, ** if the on-conflict mode is other than REPLACE, then this method must ** detect the conflict and return SQLITE_CONSTRAINT before beginning to ** modify the database file. */ if( nArg>1 && p->zContentTbl==0 ){ /* Find the value object that holds the new rowid value. */ sqlite3_value *pNewRowid = apVal[3+p->nColumn]; if( sqlite3_value_type(pNewRowid)==SQLITE_NULL ){ pNewRowid = apVal[1]; } if( sqlite3_value_type(pNewRowid)!=SQLITE_NULL && ( sqlite3_value_type(apVal[0])==SQLITE_NULL || sqlite3_value_int64(apVal[0])!=sqlite3_value_int64(pNewRowid) )){ /* The new rowid is not NULL (in this case the rowid will be ** automatically assigned and there is no chance of a conflict), and ** the statement is either an INSERT or an UPDATE that modifies the ** rowid column. So if the conflict mode is REPLACE, then delete any ** existing row with rowid=pNewRowid. ** ** Or, if the conflict mode is not REPLACE, insert the new record into ** the %_content table. If we hit the duplicate rowid constraint (or any ** other error) while doing so, return immediately. ** ** This branch may also run if pNewRowid contains a value that cannot ** be losslessly converted to an integer. In this case, the eventual ** call to fts3InsertData() (either just below or further on in this ** function) will return SQLITE_MISMATCH. If fts3DeleteByRowid is ** invoked, it will delete zero rows (since no row will have ** docid=$pNewRowid if $pNewRowid is not an integer value). */ if( sqlite3_vtab_on_conflict(p->db)==SQLITE_REPLACE ){ rc = fts3DeleteByRowid(p, pNewRowid, &nChng, aSzDel); }else{ rc = fts3InsertData(p, apVal, pRowid); bInsertDone = 1; } } } if( rc!=SQLITE_OK ){ goto update_out; } /* If this is a DELETE or UPDATE operation, remove the old record. */ if( sqlite3_value_type(apVal[0])!=SQLITE_NULL ){ assert( sqlite3_value_type(apVal[0])==SQLITE_INTEGER ); rc = fts3DeleteByRowid(p, apVal[0], &nChng, aSzDel); } /* If this is an INSERT or UPDATE operation, insert the new record. */ if( nArg>1 && rc==SQLITE_OK ){ int iLangid = sqlite3_value_int(apVal[2 + p->nColumn + 2]); if( bInsertDone==0 ){ rc = fts3InsertData(p, apVal, pRowid); if( rc==SQLITE_CONSTRAINT && p->zContentTbl==0 ){ rc = FTS_CORRUPT_VTAB; } } if( rc==SQLITE_OK ){ rc = fts3PendingTermsDocid(p, 0, iLangid, *pRowid); } if( rc==SQLITE_OK ){ assert( p->iPrevDocid==*pRowid ); rc = fts3InsertTerms(p, iLangid, apVal, aSzIns); } if( p->bHasDocsize ){ fts3InsertDocsize(&rc, p, aSzIns); } nChng++; } if( p->bFts4 ){ fts3UpdateDocTotals(&rc, p, aSzIns, aSzDel, nChng); } update_out: sqlite3_free(aSzDel); sqlite3Fts3SegmentsClose(p); return rc; } /* ** Flush any data in the pending-terms hash table to disk. If successful, ** merge all segments in the database (including the new segment, if ** there was any data to flush) into a single segment. */ SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *p){ int rc; rc = sqlite3_exec(p->db, "SAVEPOINT fts3", 0, 0, 0); if( rc==SQLITE_OK ){ rc = fts3DoOptimize(p, 1); if( rc==SQLITE_OK || rc==SQLITE_DONE ){ int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0); if( rc2!=SQLITE_OK ) rc = rc2; }else{ sqlite3_exec(p->db, "ROLLBACK TO fts3", 0, 0, 0); sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0); } } sqlite3Fts3SegmentsClose(p); return rc; } #endif /************** End of fts3_write.c ******************************************/ /************** Begin file fts3_snippet.c ************************************/ /* ** 2009 Oct 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ #ifndef SQLITE_AMALGAMATION typedef sqlite3_int64 i64; #endif /* ** Characters that may appear in the second argument to matchinfo(). */ #define FTS3_MATCHINFO_NPHRASE 'p' /* 1 value */ #define FTS3_MATCHINFO_NCOL 'c' /* 1 value */ #define FTS3_MATCHINFO_NDOC 'n' /* 1 value */ #define FTS3_MATCHINFO_AVGLENGTH 'a' /* nCol values */ #define FTS3_MATCHINFO_LENGTH 'l' /* nCol values */ #define FTS3_MATCHINFO_LCS 's' /* nCol values */ #define FTS3_MATCHINFO_HITS 'x' /* 3*nCol*nPhrase values */ #define FTS3_MATCHINFO_LHITS 'y' /* nCol*nPhrase values */ #define FTS3_MATCHINFO_LHITS_BM 'b' /* nCol*nPhrase values */ /* ** The default value for the second argument to matchinfo(). */ #define FTS3_MATCHINFO_DEFAULT "pcx" /* ** Used as an fts3ExprIterate() context when loading phrase doclists to ** Fts3Expr.aDoclist[]/nDoclist. */ typedef struct LoadDoclistCtx LoadDoclistCtx; struct LoadDoclistCtx { Fts3Cursor *pCsr; /* FTS3 Cursor */ int nPhrase; /* Number of phrases seen so far */ int nToken; /* Number of tokens seen so far */ }; /* ** The following types are used as part of the implementation of the ** fts3BestSnippet() routine. */ typedef struct SnippetIter SnippetIter; typedef struct SnippetPhrase SnippetPhrase; typedef struct SnippetFragment SnippetFragment; struct SnippetIter { Fts3Cursor *pCsr; /* Cursor snippet is being generated from */ int iCol; /* Extract snippet from this column */ int nSnippet; /* Requested snippet length (in tokens) */ int nPhrase; /* Number of phrases in query */ SnippetPhrase *aPhrase; /* Array of size nPhrase */ int iCurrent; /* First token of current snippet */ }; struct SnippetPhrase { int nToken; /* Number of tokens in phrase */ char *pList; /* Pointer to start of phrase position list */ i64 iHead; /* Next value in position list */ char *pHead; /* Position list data following iHead */ i64 iTail; /* Next value in trailing position list */ char *pTail; /* Position list data following iTail */ }; struct SnippetFragment { int iCol; /* Column snippet is extracted from */ int iPos; /* Index of first token in snippet */ u64 covered; /* Mask of query phrases covered */ u64 hlmask; /* Mask of snippet terms to highlight */ }; /* ** This type is used as an fts3ExprIterate() context object while ** accumulating the data returned by the matchinfo() function. */ typedef struct MatchInfo MatchInfo; struct MatchInfo { Fts3Cursor *pCursor; /* FTS3 Cursor */ int nCol; /* Number of columns in table */ int nPhrase; /* Number of matchable phrases in query */ sqlite3_int64 nDoc; /* Number of docs in database */ char flag; u32 *aMatchinfo; /* Pre-allocated buffer */ }; /* ** An instance of this structure is used to manage a pair of buffers, each ** (nElem * sizeof(u32)) bytes in size. See the MatchinfoBuffer code below ** for details. */ struct MatchinfoBuffer { u8 aRef[3]; int nElem; int bGlobal; /* Set if global data is loaded */ char *zMatchinfo; u32 aMatchinfo[1]; }; /* ** The snippet() and offsets() functions both return text values. An instance ** of the following structure is used to accumulate those values while the ** functions are running. See fts3StringAppend() for details. */ typedef struct StrBuffer StrBuffer; struct StrBuffer { char *z; /* Pointer to buffer containing string */ int n; /* Length of z in bytes (excl. nul-term) */ int nAlloc; /* Allocated size of buffer z in bytes */ }; /************************************************************************* ** Start of MatchinfoBuffer code. */ /* ** Allocate a two-slot MatchinfoBuffer object. */ static MatchinfoBuffer *fts3MIBufferNew(size_t nElem, const char *zMatchinfo){ MatchinfoBuffer *pRet; sqlite3_int64 nByte = sizeof(u32) * (2*(sqlite3_int64)nElem + 1) + sizeof(MatchinfoBuffer); sqlite3_int64 nStr = strlen(zMatchinfo); pRet = sqlite3Fts3MallocZero(nByte + nStr+1); if( pRet ){ pRet->aMatchinfo[0] = (u8*)(&pRet->aMatchinfo[1]) - (u8*)pRet; pRet->aMatchinfo[1+nElem] = pRet->aMatchinfo[0] + sizeof(u32)*((int)nElem+1); pRet->nElem = (int)nElem; pRet->zMatchinfo = ((char*)pRet) + nByte; memcpy(pRet->zMatchinfo, zMatchinfo, nStr+1); pRet->aRef[0] = 1; } return pRet; } static void fts3MIBufferFree(void *p){ MatchinfoBuffer *pBuf = (MatchinfoBuffer*)((u8*)p - ((u32*)p)[-1]); assert( (u32*)p==&pBuf->aMatchinfo[1] || (u32*)p==&pBuf->aMatchinfo[pBuf->nElem+2] ); if( (u32*)p==&pBuf->aMatchinfo[1] ){ pBuf->aRef[1] = 0; }else{ pBuf->aRef[2] = 0; } if( pBuf->aRef[0]==0 && pBuf->aRef[1]==0 && pBuf->aRef[2]==0 ){ sqlite3_free(pBuf); } } static void (*fts3MIBufferAlloc(MatchinfoBuffer *p, u32 **paOut))(void*){ void (*xRet)(void*) = 0; u32 *aOut = 0; if( p->aRef[1]==0 ){ p->aRef[1] = 1; aOut = &p->aMatchinfo[1]; xRet = fts3MIBufferFree; } else if( p->aRef[2]==0 ){ p->aRef[2] = 1; aOut = &p->aMatchinfo[p->nElem+2]; xRet = fts3MIBufferFree; }else{ aOut = (u32*)sqlite3_malloc64(p->nElem * sizeof(u32)); if( aOut ){ xRet = sqlite3_free; if( p->bGlobal ) memcpy(aOut, &p->aMatchinfo[1], p->nElem*sizeof(u32)); } } *paOut = aOut; return xRet; } static void fts3MIBufferSetGlobal(MatchinfoBuffer *p){ p->bGlobal = 1; memcpy(&p->aMatchinfo[2+p->nElem], &p->aMatchinfo[1], p->nElem*sizeof(u32)); } /* ** Free a MatchinfoBuffer object allocated using fts3MIBufferNew() */ SQLITE_PRIVATE void sqlite3Fts3MIBufferFree(MatchinfoBuffer *p){ if( p ){ assert( p->aRef[0]==1 ); p->aRef[0] = 0; if( p->aRef[0]==0 && p->aRef[1]==0 && p->aRef[2]==0 ){ sqlite3_free(p); } } } /* ** End of MatchinfoBuffer code. *************************************************************************/ /* ** This function is used to help iterate through a position-list. A position ** list is a list of unique integers, sorted from smallest to largest. Each ** element of the list is represented by an FTS3 varint that takes the value ** of the difference between the current element and the previous one plus ** two. For example, to store the position-list: ** ** 4 9 113 ** ** the three varints: ** ** 6 7 106 ** ** are encoded. ** ** When this function is called, *pp points to the start of an element of ** the list. *piPos contains the value of the previous entry in the list. ** After it returns, *piPos contains the value of the next element of the ** list and *pp is advanced to the following varint. */ static void fts3GetDeltaPosition(char **pp, i64 *piPos){ int iVal; *pp += fts3GetVarint32(*pp, &iVal); *piPos += (iVal-2); } /* ** Helper function for fts3ExprIterate() (see below). */ static int fts3ExprIterate2( Fts3Expr *pExpr, /* Expression to iterate phrases of */ int *piPhrase, /* Pointer to phrase counter */ int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ void *pCtx /* Second argument to pass to callback */ ){ int rc; /* Return code */ int eType = pExpr->eType; /* Type of expression node pExpr */ if( eType!=FTSQUERY_PHRASE ){ assert( pExpr->pLeft && pExpr->pRight ); rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx); if( rc==SQLITE_OK && eType!=FTSQUERY_NOT ){ rc = fts3ExprIterate2(pExpr->pRight, piPhrase, x, pCtx); } }else{ rc = x(pExpr, *piPhrase, pCtx); (*piPhrase)++; } return rc; } /* ** Iterate through all phrase nodes in an FTS3 query, except those that ** are part of a sub-tree that is the right-hand-side of a NOT operator. ** For each phrase node found, the supplied callback function is invoked. ** ** If the callback function returns anything other than SQLITE_OK, ** the iteration is abandoned and the error code returned immediately. ** Otherwise, SQLITE_OK is returned after a callback has been made for ** all eligible phrase nodes. */ static int fts3ExprIterate( Fts3Expr *pExpr, /* Expression to iterate phrases of */ int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ void *pCtx /* Second argument to pass to callback */ ){ int iPhrase = 0; /* Variable used as the phrase counter */ return fts3ExprIterate2(pExpr, &iPhrase, x, pCtx); } /* ** This is an fts3ExprIterate() callback used while loading the doclists ** for each phrase into Fts3Expr.aDoclist[]/nDoclist. See also ** fts3ExprLoadDoclists(). */ static int fts3ExprLoadDoclistsCb(Fts3Expr *pExpr, int iPhrase, void *ctx){ int rc = SQLITE_OK; Fts3Phrase *pPhrase = pExpr->pPhrase; LoadDoclistCtx *p = (LoadDoclistCtx *)ctx; UNUSED_PARAMETER(iPhrase); p->nPhrase++; p->nToken += pPhrase->nToken; return rc; } /* ** Load the doclists for each phrase in the query associated with FTS3 cursor ** pCsr. ** ** If pnPhrase is not NULL, then *pnPhrase is set to the number of matchable ** phrases in the expression (all phrases except those directly or ** indirectly descended from the right-hand-side of a NOT operator). If ** pnToken is not NULL, then it is set to the number of tokens in all ** matchable phrases of the expression. */ static int fts3ExprLoadDoclists( Fts3Cursor *pCsr, /* Fts3 cursor for current query */ int *pnPhrase, /* OUT: Number of phrases in query */ int *pnToken /* OUT: Number of tokens in query */ ){ int rc; /* Return Code */ LoadDoclistCtx sCtx = {0,0,0}; /* Context for fts3ExprIterate() */ sCtx.pCsr = pCsr; rc = fts3ExprIterate(pCsr->pExpr, fts3ExprLoadDoclistsCb, (void *)&sCtx); if( pnPhrase ) *pnPhrase = sCtx.nPhrase; if( pnToken ) *pnToken = sCtx.nToken; return rc; } static int fts3ExprPhraseCountCb(Fts3Expr *pExpr, int iPhrase, void *ctx){ (*(int *)ctx)++; pExpr->iPhrase = iPhrase; return SQLITE_OK; } static int fts3ExprPhraseCount(Fts3Expr *pExpr){ int nPhrase = 0; (void)fts3ExprIterate(pExpr, fts3ExprPhraseCountCb, (void *)&nPhrase); return nPhrase; } /* ** Advance the position list iterator specified by the first two ** arguments so that it points to the first element with a value greater ** than or equal to parameter iNext. */ static void fts3SnippetAdvance(char **ppIter, i64 *piIter, int iNext){ char *pIter = *ppIter; if( pIter ){ i64 iIter = *piIter; while( iIteriCurrent<0 ){ /* The SnippetIter object has just been initialized. The first snippet ** candidate always starts at offset 0 (even if this candidate has a ** score of 0.0). */ pIter->iCurrent = 0; /* Advance the 'head' iterator of each phrase to the first offset that ** is greater than or equal to (iNext+nSnippet). */ for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, pIter->nSnippet); } }else{ int iStart; int iEnd = 0x7FFFFFFF; for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; if( pPhrase->pHead && pPhrase->iHeadiHead; } } if( iEnd==0x7FFFFFFF ){ return 1; } pIter->iCurrent = iStart = iEnd - pIter->nSnippet + 1; for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, iEnd+1); fts3SnippetAdvance(&pPhrase->pTail, &pPhrase->iTail, iStart); } } return 0; } /* ** Retrieve information about the current candidate snippet of snippet ** iterator pIter. */ static void fts3SnippetDetails( SnippetIter *pIter, /* Snippet iterator */ u64 mCovered, /* Bitmask of phrases already covered */ int *piToken, /* OUT: First token of proposed snippet */ int *piScore, /* OUT: "Score" for this snippet */ u64 *pmCover, /* OUT: Bitmask of phrases covered */ u64 *pmHighlight /* OUT: Bitmask of terms to highlight */ ){ int iStart = pIter->iCurrent; /* First token of snippet */ int iScore = 0; /* Score of this snippet */ int i; /* Loop counter */ u64 mCover = 0; /* Mask of phrases covered by this snippet */ u64 mHighlight = 0; /* Mask of tokens to highlight in snippet */ for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; if( pPhrase->pTail ){ char *pCsr = pPhrase->pTail; i64 iCsr = pPhrase->iTail; while( iCsr<(iStart+pIter->nSnippet) && iCsr>=iStart ){ int j; u64 mPhrase = (u64)1 << (i%64); u64 mPos = (u64)1 << (iCsr - iStart); assert( iCsr>=iStart && (iCsr - iStart)<=64 ); assert( i>=0 ); if( (mCover|mCovered)&mPhrase ){ iScore++; }else{ iScore += 1000; } mCover |= mPhrase; for(j=0; jnToken; j++){ mHighlight |= (mPos>>j); } if( 0==(*pCsr & 0x0FE) ) break; fts3GetDeltaPosition(&pCsr, &iCsr); } } } /* Set the output variables before returning. */ *piToken = iStart; *piScore = iScore; *pmCover = mCover; *pmHighlight = mHighlight; } /* ** This function is an fts3ExprIterate() callback used by fts3BestSnippet(). ** Each invocation populates an element of the SnippetIter.aPhrase[] array. */ static int fts3SnippetFindPositions(Fts3Expr *pExpr, int iPhrase, void *ctx){ SnippetIter *p = (SnippetIter *)ctx; SnippetPhrase *pPhrase = &p->aPhrase[iPhrase]; char *pCsr; int rc; pPhrase->nToken = pExpr->pPhrase->nToken; rc = sqlite3Fts3EvalPhrasePoslist(p->pCsr, pExpr, p->iCol, &pCsr); assert( rc==SQLITE_OK || pCsr==0 ); if( pCsr ){ i64 iFirst = 0; pPhrase->pList = pCsr; fts3GetDeltaPosition(&pCsr, &iFirst); if( iFirst<0 ){ rc = FTS_CORRUPT_VTAB; }else{ pPhrase->pHead = pCsr; pPhrase->pTail = pCsr; pPhrase->iHead = iFirst; pPhrase->iTail = iFirst; } }else{ assert( rc!=SQLITE_OK || ( pPhrase->pList==0 && pPhrase->pHead==0 && pPhrase->pTail==0 )); } return rc; } /* ** Select the fragment of text consisting of nFragment contiguous tokens ** from column iCol that represent the "best" snippet. The best snippet ** is the snippet with the highest score, where scores are calculated ** by adding: ** ** (a) +1 point for each occurrence of a matchable phrase in the snippet. ** ** (b) +1000 points for the first occurrence of each matchable phrase in ** the snippet for which the corresponding mCovered bit is not set. ** ** The selected snippet parameters are stored in structure *pFragment before ** returning. The score of the selected snippet is stored in *piScore ** before returning. */ static int fts3BestSnippet( int nSnippet, /* Desired snippet length */ Fts3Cursor *pCsr, /* Cursor to create snippet for */ int iCol, /* Index of column to create snippet from */ u64 mCovered, /* Mask of phrases already covered */ u64 *pmSeen, /* IN/OUT: Mask of phrases seen */ SnippetFragment *pFragment, /* OUT: Best snippet found */ int *piScore /* OUT: Score of snippet pFragment */ ){ int rc; /* Return Code */ int nList; /* Number of phrases in expression */ SnippetIter sIter; /* Iterates through snippet candidates */ sqlite3_int64 nByte; /* Number of bytes of space to allocate */ int iBestScore = -1; /* Best snippet score found so far */ int i; /* Loop counter */ memset(&sIter, 0, sizeof(sIter)); /* Iterate through the phrases in the expression to count them. The same ** callback makes sure the doclists are loaded for each phrase. */ rc = fts3ExprLoadDoclists(pCsr, &nList, 0); if( rc!=SQLITE_OK ){ return rc; } /* Now that it is known how many phrases there are, allocate and zero ** the required space using malloc(). */ nByte = sizeof(SnippetPhrase) * nList; sIter.aPhrase = (SnippetPhrase *)sqlite3Fts3MallocZero(nByte); if( !sIter.aPhrase ){ return SQLITE_NOMEM; } /* Initialize the contents of the SnippetIter object. Then iterate through ** the set of phrases in the expression to populate the aPhrase[] array. */ sIter.pCsr = pCsr; sIter.iCol = iCol; sIter.nSnippet = nSnippet; sIter.nPhrase = nList; sIter.iCurrent = -1; rc = fts3ExprIterate(pCsr->pExpr, fts3SnippetFindPositions, (void*)&sIter); if( rc==SQLITE_OK ){ /* Set the *pmSeen output variable. */ for(i=0; iiCol = iCol; while( !fts3SnippetNextCandidate(&sIter) ){ int iPos; int iScore; u64 mCover; u64 mHighlite; fts3SnippetDetails(&sIter, mCovered, &iPos, &iScore, &mCover,&mHighlite); assert( iScore>=0 ); if( iScore>iBestScore ){ pFragment->iPos = iPos; pFragment->hlmask = mHighlite; pFragment->covered = mCover; iBestScore = iScore; } } *piScore = iBestScore; } sqlite3_free(sIter.aPhrase); return rc; } /* ** Append a string to the string-buffer passed as the first argument. ** ** If nAppend is negative, then the length of the string zAppend is ** determined using strlen(). */ static int fts3StringAppend( StrBuffer *pStr, /* Buffer to append to */ const char *zAppend, /* Pointer to data to append to buffer */ int nAppend /* Size of zAppend in bytes (or -1) */ ){ if( nAppend<0 ){ nAppend = (int)strlen(zAppend); } /* If there is insufficient space allocated at StrBuffer.z, use realloc() ** to grow the buffer until so that it is big enough to accomadate the ** appended data. */ if( pStr->n+nAppend+1>=pStr->nAlloc ){ sqlite3_int64 nAlloc = pStr->nAlloc+(sqlite3_int64)nAppend+100; char *zNew = sqlite3_realloc64(pStr->z, nAlloc); if( !zNew ){ return SQLITE_NOMEM; } pStr->z = zNew; pStr->nAlloc = nAlloc; } assert( pStr->z!=0 && (pStr->nAlloc >= pStr->n+nAppend+1) ); /* Append the data to the string buffer. */ memcpy(&pStr->z[pStr->n], zAppend, nAppend); pStr->n += nAppend; pStr->z[pStr->n] = '\0'; return SQLITE_OK; } /* ** The fts3BestSnippet() function often selects snippets that end with a ** query term. That is, the final term of the snippet is always a term ** that requires highlighting. For example, if 'X' is a highlighted term ** and '.' is a non-highlighted term, BestSnippet() may select: ** ** ........X.....X ** ** This function "shifts" the beginning of the snippet forward in the ** document so that there are approximately the same number of ** non-highlighted terms to the right of the final highlighted term as there ** are to the left of the first highlighted term. For example, to this: ** ** ....X.....X.... ** ** This is done as part of extracting the snippet text, not when selecting ** the snippet. Snippet selection is done based on doclists only, so there ** is no way for fts3BestSnippet() to know whether or not the document ** actually contains terms that follow the final highlighted term. */ static int fts3SnippetShift( Fts3Table *pTab, /* FTS3 table snippet comes from */ int iLangid, /* Language id to use in tokenizing */ int nSnippet, /* Number of tokens desired for snippet */ const char *zDoc, /* Document text to extract snippet from */ int nDoc, /* Size of buffer zDoc in bytes */ int *piPos, /* IN/OUT: First token of snippet */ u64 *pHlmask /* IN/OUT: Mask of tokens to highlight */ ){ u64 hlmask = *pHlmask; /* Local copy of initial highlight-mask */ if( hlmask ){ int nLeft; /* Tokens to the left of first highlight */ int nRight; /* Tokens to the right of last highlight */ int nDesired; /* Ideal number of tokens to shift forward */ for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++); for(nRight=0; !(hlmask & ((u64)1 << (nSnippet-1-nRight))); nRight++); assert( (nSnippet-1-nRight)<=63 && (nSnippet-1-nRight)>=0 ); nDesired = (nLeft-nRight)/2; /* Ideally, the start of the snippet should be pushed forward in the ** document nDesired tokens. This block checks if there are actually ** nDesired tokens to the right of the snippet. If so, *piPos and ** *pHlMask are updated to shift the snippet nDesired tokens to the ** right. Otherwise, the snippet is shifted by the number of tokens ** available. */ if( nDesired>0 ){ int nShift; /* Number of tokens to shift snippet by */ int iCurrent = 0; /* Token counter */ int rc; /* Return Code */ sqlite3_tokenizer_module *pMod; sqlite3_tokenizer_cursor *pC; pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule; /* Open a cursor on zDoc/nDoc. Check if there are (nSnippet+nDesired) ** or more tokens in zDoc/nDoc. */ rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, iLangid, zDoc, nDoc, &pC); if( rc!=SQLITE_OK ){ return rc; } while( rc==SQLITE_OK && iCurrent<(nSnippet+nDesired) ){ const char *ZDUMMY; int DUMMY1 = 0, DUMMY2 = 0, DUMMY3 = 0; rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent); } pMod->xClose(pC); if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; } nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet; assert( nShift<=nDesired ); if( nShift>0 ){ *piPos += nShift; *pHlmask = hlmask >> nShift; } } } return SQLITE_OK; } /* ** Extract the snippet text for fragment pFragment from cursor pCsr and ** append it to string buffer pOut. */ static int fts3SnippetText( Fts3Cursor *pCsr, /* FTS3 Cursor */ SnippetFragment *pFragment, /* Snippet to extract */ int iFragment, /* Fragment number */ int isLast, /* True for final fragment in snippet */ int nSnippet, /* Number of tokens in extracted snippet */ const char *zOpen, /* String inserted before highlighted term */ const char *zClose, /* String inserted after highlighted term */ const char *zEllipsis, /* String inserted between snippets */ StrBuffer *pOut /* Write output here */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc; /* Return code */ const char *zDoc; /* Document text to extract snippet from */ int nDoc; /* Size of zDoc in bytes */ int iCurrent = 0; /* Current token number of document */ int iEnd = 0; /* Byte offset of end of current token */ int isShiftDone = 0; /* True after snippet is shifted */ int iPos = pFragment->iPos; /* First token of snippet */ u64 hlmask = pFragment->hlmask; /* Highlight-mask for snippet */ int iCol = pFragment->iCol+1; /* Query column to extract text from */ sqlite3_tokenizer_module *pMod; /* Tokenizer module methods object */ sqlite3_tokenizer_cursor *pC; /* Tokenizer cursor open on zDoc/nDoc */ zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol); if( zDoc==0 ){ if( sqlite3_column_type(pCsr->pStmt, iCol)!=SQLITE_NULL ){ return SQLITE_NOMEM; } return SQLITE_OK; } nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol); /* Open a token cursor on the document. */ pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule; rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, pCsr->iLangid, zDoc,nDoc,&pC); if( rc!=SQLITE_OK ){ return rc; } while( rc==SQLITE_OK ){ const char *ZDUMMY; /* Dummy argument used with tokenizer */ int DUMMY1 = -1; /* Dummy argument used with tokenizer */ int iBegin = 0; /* Offset in zDoc of start of token */ int iFin = 0; /* Offset in zDoc of end of token */ int isHighlight = 0; /* True for highlighted terms */ /* Variable DUMMY1 is initialized to a negative value above. Elsewhere ** in the FTS code the variable that the third argument to xNext points to ** is initialized to zero before the first (*but not necessarily ** subsequent*) call to xNext(). This is done for a particular application ** that needs to know whether or not the tokenizer is being used for ** snippet generation or for some other purpose. ** ** Extreme care is required when writing code to depend on this ** initialization. It is not a documented part of the tokenizer interface. ** If a tokenizer is used directly by any code outside of FTS, this ** convention might not be respected. */ rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ /* Special case - the last token of the snippet is also the last token ** of the column. Append any punctuation that occurred between the end ** of the previous token and the end of the document to the output. ** Then break out of the loop. */ rc = fts3StringAppend(pOut, &zDoc[iEnd], -1); } break; } if( iCurrentiLangid, nSnippet, &zDoc[iBegin], n, &iPos, &hlmask ); isShiftDone = 1; /* Now that the shift has been done, check if the initial "..." are ** required. They are required if (a) this is not the first fragment, ** or (b) this fragment does not begin at position 0 of its column. */ if( rc==SQLITE_OK ){ if( iPos>0 || iFragment>0 ){ rc = fts3StringAppend(pOut, zEllipsis, -1); }else if( iBegin ){ rc = fts3StringAppend(pOut, zDoc, iBegin); } } if( rc!=SQLITE_OK || iCurrent=(iPos+nSnippet) ){ if( isLast ){ rc = fts3StringAppend(pOut, zEllipsis, -1); } break; } /* Set isHighlight to true if this term should be highlighted. */ isHighlight = (hlmask & ((u64)1 << (iCurrent-iPos)))!=0; if( iCurrent>iPos ) rc = fts3StringAppend(pOut, &zDoc[iEnd], iBegin-iEnd); if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zOpen, -1); if( rc==SQLITE_OK ) rc = fts3StringAppend(pOut, &zDoc[iBegin], iFin-iBegin); if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zClose, -1); iEnd = iFin; } pMod->xClose(pC); return rc; } /* ** This function is used to count the entries in a column-list (a ** delta-encoded list of term offsets within a single column of a single ** row). When this function is called, *ppCollist should point to the ** beginning of the first varint in the column-list (the varint that ** contains the position of the first matching term in the column data). ** Before returning, *ppCollist is set to point to the first byte after ** the last varint in the column-list (either the 0x00 signifying the end ** of the position-list, or the 0x01 that precedes the column number of ** the next column in the position-list). ** ** The number of elements in the column-list is returned. */ static int fts3ColumnlistCount(char **ppCollist){ char *pEnd = *ppCollist; char c = 0; int nEntry = 0; /* A column-list is terminated by either a 0x01 or 0x00. */ while( 0xFE & (*pEnd | c) ){ c = *pEnd++ & 0x80; if( !c ) nEntry++; } *ppCollist = pEnd; return nEntry; } /* ** This function gathers 'y' or 'b' data for a single phrase. */ static int fts3ExprLHits( Fts3Expr *pExpr, /* Phrase expression node */ MatchInfo *p /* Matchinfo context */ ){ Fts3Table *pTab = (Fts3Table *)p->pCursor->base.pVtab; int iStart; Fts3Phrase *pPhrase = pExpr->pPhrase; char *pIter = pPhrase->doclist.pList; int iCol = 0; assert( p->flag==FTS3_MATCHINFO_LHITS_BM || p->flag==FTS3_MATCHINFO_LHITS ); if( p->flag==FTS3_MATCHINFO_LHITS ){ iStart = pExpr->iPhrase * p->nCol; }else{ iStart = pExpr->iPhrase * ((p->nCol + 31) / 32); } if( pIter ) while( 1 ){ int nHit = fts3ColumnlistCount(&pIter); if( (pPhrase->iColumn>=pTab->nColumn || pPhrase->iColumn==iCol) ){ if( p->flag==FTS3_MATCHINFO_LHITS ){ p->aMatchinfo[iStart + iCol] = (u32)nHit; }else if( nHit ){ p->aMatchinfo[iStart + (iCol+1)/32] |= (1 << (iCol&0x1F)); } } assert( *pIter==0x00 || *pIter==0x01 ); if( *pIter!=0x01 ) break; pIter++; pIter += fts3GetVarint32(pIter, &iCol); if( iCol>=p->nCol ) return FTS_CORRUPT_VTAB; } return SQLITE_OK; } /* ** Gather the results for matchinfo directives 'y' and 'b'. */ static int fts3ExprLHitGather( Fts3Expr *pExpr, MatchInfo *p ){ int rc = SQLITE_OK; assert( (pExpr->pLeft==0)==(pExpr->pRight==0) ); if( pExpr->bEof==0 && pExpr->iDocid==p->pCursor->iPrevId ){ if( pExpr->pLeft ){ rc = fts3ExprLHitGather(pExpr->pLeft, p); if( rc==SQLITE_OK ) rc = fts3ExprLHitGather(pExpr->pRight, p); }else{ rc = fts3ExprLHits(pExpr, p); } } return rc; } /* ** fts3ExprIterate() callback used to collect the "global" matchinfo stats ** for a single query. ** ** fts3ExprIterate() callback to load the 'global' elements of a ** FTS3_MATCHINFO_HITS matchinfo array. The global stats are those elements ** of the matchinfo array that are constant for all rows returned by the ** current query. ** ** Argument pCtx is actually a pointer to a struct of type MatchInfo. This ** function populates Matchinfo.aMatchinfo[] as follows: ** ** for(iCol=0; iColpCursor, pExpr, &p->aMatchinfo[3*iPhrase*p->nCol] ); } /* ** fts3ExprIterate() callback used to collect the "local" part of the ** FTS3_MATCHINFO_HITS array. The local stats are those elements of the ** array that are different for each row returned by the query. */ static int fts3ExprLocalHitsCb( Fts3Expr *pExpr, /* Phrase expression node */ int iPhrase, /* Phrase number */ void *pCtx /* Pointer to MatchInfo structure */ ){ int rc = SQLITE_OK; MatchInfo *p = (MatchInfo *)pCtx; int iStart = iPhrase * p->nCol * 3; int i; for(i=0; inCol && rc==SQLITE_OK; i++){ char *pCsr; rc = sqlite3Fts3EvalPhrasePoslist(p->pCursor, pExpr, i, &pCsr); if( pCsr ){ p->aMatchinfo[iStart+i*3] = fts3ColumnlistCount(&pCsr); }else{ p->aMatchinfo[iStart+i*3] = 0; } } return rc; } static int fts3MatchinfoCheck( Fts3Table *pTab, char cArg, char **pzErr ){ if( (cArg==FTS3_MATCHINFO_NPHRASE) || (cArg==FTS3_MATCHINFO_NCOL) || (cArg==FTS3_MATCHINFO_NDOC && pTab->bFts4) || (cArg==FTS3_MATCHINFO_AVGLENGTH && pTab->bFts4) || (cArg==FTS3_MATCHINFO_LENGTH && pTab->bHasDocsize) || (cArg==FTS3_MATCHINFO_LCS) || (cArg==FTS3_MATCHINFO_HITS) || (cArg==FTS3_MATCHINFO_LHITS) || (cArg==FTS3_MATCHINFO_LHITS_BM) ){ return SQLITE_OK; } sqlite3Fts3ErrMsg(pzErr, "unrecognized matchinfo request: %c", cArg); return SQLITE_ERROR; } static size_t fts3MatchinfoSize(MatchInfo *pInfo, char cArg){ size_t nVal; /* Number of integers output by cArg */ switch( cArg ){ case FTS3_MATCHINFO_NDOC: case FTS3_MATCHINFO_NPHRASE: case FTS3_MATCHINFO_NCOL: nVal = 1; break; case FTS3_MATCHINFO_AVGLENGTH: case FTS3_MATCHINFO_LENGTH: case FTS3_MATCHINFO_LCS: nVal = pInfo->nCol; break; case FTS3_MATCHINFO_LHITS: nVal = pInfo->nCol * pInfo->nPhrase; break; case FTS3_MATCHINFO_LHITS_BM: nVal = pInfo->nPhrase * ((pInfo->nCol + 31) / 32); break; default: assert( cArg==FTS3_MATCHINFO_HITS ); nVal = pInfo->nCol * pInfo->nPhrase * 3; break; } return nVal; } static int fts3MatchinfoSelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt, sqlite3_int64 *pnDoc, const char **paLen, const char **ppEnd ){ sqlite3_stmt *pStmt; const char *a; const char *pEnd; sqlite3_int64 nDoc; int n; if( !*ppStmt ){ int rc = sqlite3Fts3SelectDoctotal(pTab, ppStmt); if( rc!=SQLITE_OK ) return rc; } pStmt = *ppStmt; assert( sqlite3_data_count(pStmt)==1 ); n = sqlite3_column_bytes(pStmt, 0); a = sqlite3_column_blob(pStmt, 0); if( a==0 ){ return FTS_CORRUPT_VTAB; } pEnd = a + n; a += sqlite3Fts3GetVarintBounded(a, pEnd, &nDoc); if( nDoc<=0 || a>pEnd ){ return FTS_CORRUPT_VTAB; } *pnDoc = nDoc; if( paLen ) *paLen = a; if( ppEnd ) *ppEnd = pEnd; return SQLITE_OK; } /* ** An instance of the following structure is used to store state while ** iterating through a multi-column position-list corresponding to the ** hits for a single phrase on a single row in order to calculate the ** values for a matchinfo() FTS3_MATCHINFO_LCS request. */ typedef struct LcsIterator LcsIterator; struct LcsIterator { Fts3Expr *pExpr; /* Pointer to phrase expression */ int iPosOffset; /* Tokens count up to end of this phrase */ char *pRead; /* Cursor used to iterate through aDoclist */ int iPos; /* Current position */ }; /* ** If LcsIterator.iCol is set to the following value, the iterator has ** finished iterating through all offsets for all columns. */ #define LCS_ITERATOR_FINISHED 0x7FFFFFFF; static int fts3MatchinfoLcsCb( Fts3Expr *pExpr, /* Phrase expression node */ int iPhrase, /* Phrase number (numbered from zero) */ void *pCtx /* Pointer to MatchInfo structure */ ){ LcsIterator *aIter = (LcsIterator *)pCtx; aIter[iPhrase].pExpr = pExpr; return SQLITE_OK; } /* ** Advance the iterator passed as an argument to the next position. Return ** 1 if the iterator is at EOF or if it now points to the start of the ** position list for the next column. */ static int fts3LcsIteratorAdvance(LcsIterator *pIter){ char *pRead; sqlite3_int64 iRead; int rc = 0; if( NEVER(pIter==0) ) return 1; pRead = pIter->pRead; pRead += sqlite3Fts3GetVarint(pRead, &iRead); if( iRead==0 || iRead==1 ){ pRead = 0; rc = 1; }else{ pIter->iPos += (int)(iRead-2); } pIter->pRead = pRead; return rc; } /* ** This function implements the FTS3_MATCHINFO_LCS matchinfo() flag. ** ** If the call is successful, the longest-common-substring lengths for each ** column are written into the first nCol elements of the pInfo->aMatchinfo[] ** array before returning. SQLITE_OK is returned in this case. ** ** Otherwise, if an error occurs, an SQLite error code is returned and the ** data written to the first nCol elements of pInfo->aMatchinfo[] is ** undefined. */ static int fts3MatchinfoLcs(Fts3Cursor *pCsr, MatchInfo *pInfo){ LcsIterator *aIter; int i; int iCol; int nToken = 0; int rc = SQLITE_OK; /* Allocate and populate the array of LcsIterator objects. The array ** contains one element for each matchable phrase in the query. **/ aIter = sqlite3Fts3MallocZero(sizeof(LcsIterator) * pCsr->nPhrase); if( !aIter ) return SQLITE_NOMEM; (void)fts3ExprIterate(pCsr->pExpr, fts3MatchinfoLcsCb, (void*)aIter); for(i=0; inPhrase; i++){ LcsIterator *pIter = &aIter[i]; nToken -= pIter->pExpr->pPhrase->nToken; pIter->iPosOffset = nToken; } for(iCol=0; iColnCol; iCol++){ int nLcs = 0; /* LCS value for this column */ int nLive = 0; /* Number of iterators in aIter not at EOF */ for(i=0; inPhrase; i++){ LcsIterator *pIt = &aIter[i]; rc = sqlite3Fts3EvalPhrasePoslist(pCsr, pIt->pExpr, iCol, &pIt->pRead); if( rc!=SQLITE_OK ) goto matchinfo_lcs_out; if( pIt->pRead ){ pIt->iPos = pIt->iPosOffset; fts3LcsIteratorAdvance(pIt); if( pIt->pRead==0 ){ rc = FTS_CORRUPT_VTAB; goto matchinfo_lcs_out; } nLive++; } } while( nLive>0 ){ LcsIterator *pAdv = 0; /* The iterator to advance by one position */ int nThisLcs = 0; /* LCS for the current iterator positions */ for(i=0; inPhrase; i++){ LcsIterator *pIter = &aIter[i]; if( pIter->pRead==0 ){ /* This iterator is already at EOF for this column. */ nThisLcs = 0; }else{ if( pAdv==0 || pIter->iPosiPos ){ pAdv = pIter; } if( nThisLcs==0 || pIter->iPos==pIter[-1].iPos ){ nThisLcs++; }else{ nThisLcs = 1; } if( nThisLcs>nLcs ) nLcs = nThisLcs; } } if( fts3LcsIteratorAdvance(pAdv) ) nLive--; } pInfo->aMatchinfo[iCol] = nLcs; } matchinfo_lcs_out: sqlite3_free(aIter); return rc; } /* ** Populate the buffer pInfo->aMatchinfo[] with an array of integers to ** be returned by the matchinfo() function. Argument zArg contains the ** format string passed as the second argument to matchinfo (or the ** default value "pcx" if no second argument was specified). The format ** string has already been validated and the pInfo->aMatchinfo[] array ** is guaranteed to be large enough for the output. ** ** If bGlobal is true, then populate all fields of the matchinfo() output. ** If it is false, then assume that those fields that do not change between ** rows (i.e. FTS3_MATCHINFO_NPHRASE, NCOL, NDOC, AVGLENGTH and part of HITS) ** have already been populated. ** ** Return SQLITE_OK if successful, or an SQLite error code if an error ** occurs. If a value other than SQLITE_OK is returned, the state the ** pInfo->aMatchinfo[] buffer is left in is undefined. */ static int fts3MatchinfoValues( Fts3Cursor *pCsr, /* FTS3 cursor object */ int bGlobal, /* True to grab the global stats */ MatchInfo *pInfo, /* Matchinfo context object */ const char *zArg /* Matchinfo format string */ ){ int rc = SQLITE_OK; int i; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; sqlite3_stmt *pSelect = 0; for(i=0; rc==SQLITE_OK && zArg[i]; i++){ pInfo->flag = zArg[i]; switch( zArg[i] ){ case FTS3_MATCHINFO_NPHRASE: if( bGlobal ) pInfo->aMatchinfo[0] = pInfo->nPhrase; break; case FTS3_MATCHINFO_NCOL: if( bGlobal ) pInfo->aMatchinfo[0] = pInfo->nCol; break; case FTS3_MATCHINFO_NDOC: if( bGlobal ){ sqlite3_int64 nDoc = 0; rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &nDoc, 0, 0); pInfo->aMatchinfo[0] = (u32)nDoc; } break; case FTS3_MATCHINFO_AVGLENGTH: if( bGlobal ){ sqlite3_int64 nDoc; /* Number of rows in table */ const char *a; /* Aggregate column length array */ const char *pEnd; /* First byte past end of length array */ rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &nDoc, &a, &pEnd); if( rc==SQLITE_OK ){ int iCol; for(iCol=0; iColnCol; iCol++){ u32 iVal; sqlite3_int64 nToken; a += sqlite3Fts3GetVarint(a, &nToken); if( a>pEnd ){ rc = SQLITE_CORRUPT_VTAB; break; } iVal = (u32)(((u32)(nToken&0xffffffff)+nDoc/2)/nDoc); pInfo->aMatchinfo[iCol] = iVal; } } } break; case FTS3_MATCHINFO_LENGTH: { sqlite3_stmt *pSelectDocsize = 0; rc = sqlite3Fts3SelectDocsize(pTab, pCsr->iPrevId, &pSelectDocsize); if( rc==SQLITE_OK ){ int iCol; const char *a = sqlite3_column_blob(pSelectDocsize, 0); const char *pEnd = a + sqlite3_column_bytes(pSelectDocsize, 0); for(iCol=0; iColnCol; iCol++){ sqlite3_int64 nToken; a += sqlite3Fts3GetVarintBounded(a, pEnd, &nToken); if( a>pEnd ){ rc = SQLITE_CORRUPT_VTAB; break; } pInfo->aMatchinfo[iCol] = (u32)nToken; } } sqlite3_reset(pSelectDocsize); break; } case FTS3_MATCHINFO_LCS: rc = fts3ExprLoadDoclists(pCsr, 0, 0); if( rc==SQLITE_OK ){ rc = fts3MatchinfoLcs(pCsr, pInfo); } break; case FTS3_MATCHINFO_LHITS_BM: case FTS3_MATCHINFO_LHITS: { size_t nZero = fts3MatchinfoSize(pInfo, zArg[i]) * sizeof(u32); memset(pInfo->aMatchinfo, 0, nZero); rc = fts3ExprLHitGather(pCsr->pExpr, pInfo); break; } default: { Fts3Expr *pExpr; assert( zArg[i]==FTS3_MATCHINFO_HITS ); pExpr = pCsr->pExpr; rc = fts3ExprLoadDoclists(pCsr, 0, 0); if( rc!=SQLITE_OK ) break; if( bGlobal ){ if( pCsr->pDeferred ){ rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &pInfo->nDoc,0,0); if( rc!=SQLITE_OK ) break; } rc = fts3ExprIterate(pExpr, fts3ExprGlobalHitsCb,(void*)pInfo); sqlite3Fts3EvalTestDeferred(pCsr, &rc); if( rc!=SQLITE_OK ) break; } (void)fts3ExprIterate(pExpr, fts3ExprLocalHitsCb,(void*)pInfo); break; } } pInfo->aMatchinfo += fts3MatchinfoSize(pInfo, zArg[i]); } sqlite3_reset(pSelect); return rc; } /* ** Populate pCsr->aMatchinfo[] with data for the current row. The ** 'matchinfo' data is an array of 32-bit unsigned integers (C type u32). */ static void fts3GetMatchinfo( sqlite3_context *pCtx, /* Return results here */ Fts3Cursor *pCsr, /* FTS3 Cursor object */ const char *zArg /* Second argument to matchinfo() function */ ){ MatchInfo sInfo; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int bGlobal = 0; /* Collect 'global' stats as well as local */ u32 *aOut = 0; void (*xDestroyOut)(void*) = 0; memset(&sInfo, 0, sizeof(MatchInfo)); sInfo.pCursor = pCsr; sInfo.nCol = pTab->nColumn; /* If there is cached matchinfo() data, but the format string for the ** cache does not match the format string for this request, discard ** the cached data. */ if( pCsr->pMIBuffer && strcmp(pCsr->pMIBuffer->zMatchinfo, zArg) ){ sqlite3Fts3MIBufferFree(pCsr->pMIBuffer); pCsr->pMIBuffer = 0; } /* If Fts3Cursor.pMIBuffer is NULL, then this is the first time the ** matchinfo function has been called for this query. In this case ** allocate the array used to accumulate the matchinfo data and ** initialize those elements that are constant for every row. */ if( pCsr->pMIBuffer==0 ){ size_t nMatchinfo = 0; /* Number of u32 elements in match-info */ int i; /* Used to iterate through zArg */ /* Determine the number of phrases in the query */ pCsr->nPhrase = fts3ExprPhraseCount(pCsr->pExpr); sInfo.nPhrase = pCsr->nPhrase; /* Determine the number of integers in the buffer returned by this call. */ for(i=0; zArg[i]; i++){ char *zErr = 0; if( fts3MatchinfoCheck(pTab, zArg[i], &zErr) ){ sqlite3_result_error(pCtx, zErr, -1); sqlite3_free(zErr); return; } nMatchinfo += fts3MatchinfoSize(&sInfo, zArg[i]); } /* Allocate space for Fts3Cursor.aMatchinfo[] and Fts3Cursor.zMatchinfo. */ pCsr->pMIBuffer = fts3MIBufferNew(nMatchinfo, zArg); if( !pCsr->pMIBuffer ) rc = SQLITE_NOMEM; pCsr->isMatchinfoNeeded = 1; bGlobal = 1; } if( rc==SQLITE_OK ){ xDestroyOut = fts3MIBufferAlloc(pCsr->pMIBuffer, &aOut); if( xDestroyOut==0 ){ rc = SQLITE_NOMEM; } } if( rc==SQLITE_OK ){ sInfo.aMatchinfo = aOut; sInfo.nPhrase = pCsr->nPhrase; rc = fts3MatchinfoValues(pCsr, bGlobal, &sInfo, zArg); if( bGlobal ){ fts3MIBufferSetGlobal(pCsr->pMIBuffer); } } if( rc!=SQLITE_OK ){ sqlite3_result_error_code(pCtx, rc); if( xDestroyOut ) xDestroyOut(aOut); }else{ int n = pCsr->pMIBuffer->nElem * sizeof(u32); sqlite3_result_blob(pCtx, aOut, n, xDestroyOut); } } /* ** Implementation of snippet() function. */ SQLITE_PRIVATE void sqlite3Fts3Snippet( sqlite3_context *pCtx, /* SQLite function call context */ Fts3Cursor *pCsr, /* Cursor object */ const char *zStart, /* Snippet start text - "" */ const char *zEnd, /* Snippet end text - "" */ const char *zEllipsis, /* Snippet ellipsis text - "..." */ int iCol, /* Extract snippet from this column */ int nToken /* Approximate number of tokens in snippet */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int i; StrBuffer res = {0, 0, 0}; /* The returned text includes up to four fragments of text extracted from ** the data in the current row. The first iteration of the for(...) loop ** below attempts to locate a single fragment of text nToken tokens in ** size that contains at least one instance of all phrases in the query ** expression that appear in the current row. If such a fragment of text ** cannot be found, the second iteration of the loop attempts to locate ** a pair of fragments, and so on. */ int nSnippet = 0; /* Number of fragments in this snippet */ SnippetFragment aSnippet[4]; /* Maximum of 4 fragments per snippet */ int nFToken = -1; /* Number of tokens in each fragment */ if( !pCsr->pExpr ){ sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); return; } /* Limit the snippet length to 64 tokens. */ if( nToken<-64 ) nToken = -64; if( nToken>+64 ) nToken = +64; for(nSnippet=1; 1; nSnippet++){ int iSnip; /* Loop counter 0..nSnippet-1 */ u64 mCovered = 0; /* Bitmask of phrases covered by snippet */ u64 mSeen = 0; /* Bitmask of phrases seen by BestSnippet() */ if( nToken>=0 ){ nFToken = (nToken+nSnippet-1) / nSnippet; }else{ nFToken = -1 * nToken; } for(iSnip=0; iSnipnColumn; iRead++){ SnippetFragment sF = {0, 0, 0, 0}; int iS = 0; if( iCol>=0 && iRead!=iCol ) continue; /* Find the best snippet of nFToken tokens in column iRead. */ rc = fts3BestSnippet(nFToken, pCsr, iRead, mCovered, &mSeen, &sF, &iS); if( rc!=SQLITE_OK ){ goto snippet_out; } if( iS>iBestScore ){ *pFragment = sF; iBestScore = iS; } } mCovered |= pFragment->covered; } /* If all query phrases seen by fts3BestSnippet() are present in at least ** one of the nSnippet snippet fragments, break out of the loop. */ assert( (mCovered&mSeen)==mCovered ); if( mSeen==mCovered || nSnippet==SizeofArray(aSnippet) ) break; } assert( nFToken>0 ); for(i=0; ipCsr, pExpr, p->iCol, &pList); nTerm = pExpr->pPhrase->nToken; if( pList ){ fts3GetDeltaPosition(&pList, &iPos); assert_fts3_nc( iPos>=0 ); } for(iTerm=0; iTermaTerm[p->iTerm++]; pT->iOff = nTerm-iTerm-1; pT->pList = pList; pT->iPos = iPos; } return rc; } /* ** Implementation of offsets() function. */ SQLITE_PRIVATE void sqlite3Fts3Offsets( sqlite3_context *pCtx, /* SQLite function call context */ Fts3Cursor *pCsr /* Cursor object */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; sqlite3_tokenizer_module const *pMod = pTab->pTokenizer->pModule; int rc; /* Return Code */ int nToken; /* Number of tokens in query */ int iCol; /* Column currently being processed */ StrBuffer res = {0, 0, 0}; /* Result string */ TermOffsetCtx sCtx; /* Context for fts3ExprTermOffsetInit() */ if( !pCsr->pExpr ){ sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); return; } memset(&sCtx, 0, sizeof(sCtx)); assert( pCsr->isRequireSeek==0 ); /* Count the number of terms in the query */ rc = fts3ExprLoadDoclists(pCsr, 0, &nToken); if( rc!=SQLITE_OK ) goto offsets_out; /* Allocate the array of TermOffset iterators. */ sCtx.aTerm = (TermOffset *)sqlite3Fts3MallocZero(sizeof(TermOffset)*nToken); if( 0==sCtx.aTerm ){ rc = SQLITE_NOMEM; goto offsets_out; } sCtx.iDocid = pCsr->iPrevId; sCtx.pCsr = pCsr; /* Loop through the table columns, appending offset information to ** string-buffer res for each column. */ for(iCol=0; iColnColumn; iCol++){ sqlite3_tokenizer_cursor *pC; /* Tokenizer cursor */ const char *ZDUMMY; /* Dummy argument used with xNext() */ int NDUMMY = 0; /* Dummy argument used with xNext() */ int iStart = 0; int iEnd = 0; int iCurrent = 0; const char *zDoc; int nDoc; /* Initialize the contents of sCtx.aTerm[] for column iCol. This ** operation may fail if the database contains corrupt records. */ sCtx.iCol = iCol; sCtx.iTerm = 0; rc = fts3ExprIterate(pCsr->pExpr, fts3ExprTermOffsetInit, (void*)&sCtx); if( rc!=SQLITE_OK ) goto offsets_out; /* Retreive the text stored in column iCol. If an SQL NULL is stored ** in column iCol, jump immediately to the next iteration of the loop. ** If an OOM occurs while retrieving the data (this can happen if SQLite ** needs to transform the data from utf-16 to utf-8), return SQLITE_NOMEM ** to the caller. */ zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1); nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1); if( zDoc==0 ){ if( sqlite3_column_type(pCsr->pStmt, iCol+1)==SQLITE_NULL ){ continue; } rc = SQLITE_NOMEM; goto offsets_out; } /* Initialize a tokenizer iterator to iterate through column iCol. */ rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, pCsr->iLangid, zDoc, nDoc, &pC ); if( rc!=SQLITE_OK ) goto offsets_out; rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent); while( rc==SQLITE_OK ){ int i; /* Used to loop through terms */ int iMinPos = 0x7FFFFFFF; /* Position of next token */ TermOffset *pTerm = 0; /* TermOffset associated with next token */ for(i=0; ipList && (pT->iPos-pT->iOff)iPos-pT->iOff; pTerm = pT; } } if( !pTerm ){ /* All offsets for this column have been gathered. */ rc = SQLITE_DONE; }else{ assert_fts3_nc( iCurrent<=iMinPos ); if( 0==(0xFE&*pTerm->pList) ){ pTerm->pList = 0; }else{ fts3GetDeltaPosition(&pTerm->pList, &pTerm->iPos); } while( rc==SQLITE_OK && iCurrentxNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent); } if( rc==SQLITE_OK ){ char aBuffer[64]; sqlite3_snprintf(sizeof(aBuffer), aBuffer, "%d %d %d %d ", iCol, pTerm-sCtx.aTerm, iStart, iEnd-iStart ); rc = fts3StringAppend(&res, aBuffer, -1); }else if( rc==SQLITE_DONE && pTab->zContentTbl==0 ){ rc = FTS_CORRUPT_VTAB; } } } if( rc==SQLITE_DONE ){ rc = SQLITE_OK; } pMod->xClose(pC); if( rc!=SQLITE_OK ) goto offsets_out; } offsets_out: sqlite3_free(sCtx.aTerm); assert( rc!=SQLITE_DONE ); sqlite3Fts3SegmentsClose(pTab); if( rc!=SQLITE_OK ){ sqlite3_result_error_code(pCtx, rc); sqlite3_free(res.z); }else{ sqlite3_result_text(pCtx, res.z, res.n-1, sqlite3_free); } return; } /* ** Implementation of matchinfo() function. */ SQLITE_PRIVATE void sqlite3Fts3Matchinfo( sqlite3_context *pContext, /* Function call context */ Fts3Cursor *pCsr, /* FTS3 table cursor */ const char *zArg /* Second arg to matchinfo() function */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; const char *zFormat; if( zArg ){ zFormat = zArg; }else{ zFormat = FTS3_MATCHINFO_DEFAULT; } if( !pCsr->pExpr ){ sqlite3_result_blob(pContext, "", 0, SQLITE_STATIC); return; }else{ /* Retrieve matchinfo() data. */ fts3GetMatchinfo(pContext, pCsr, zFormat); sqlite3Fts3SegmentsClose(pTab); } } #endif /************** End of fts3_snippet.c ****************************************/ /************** Begin file fts3_unicode.c ************************************/ /* ** 2012 May 24 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** Implementation of the "unicode" full-text-search tokenizer. */ #ifndef SQLITE_DISABLE_FTS3_UNICODE /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ /* ** The following two macros - READ_UTF8 and WRITE_UTF8 - have been copied ** from the sqlite3 source file utf.c. If this file is compiled as part ** of the amalgamation, they are not required. */ #ifndef SQLITE_AMALGAMATION static const unsigned char sqlite3Utf8Trans1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, }; #define READ_UTF8(zIn, zTerm, c) \ c = *(zIn++); \ if( c>=0xc0 ){ \ c = sqlite3Utf8Trans1[c-0xc0]; \ while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \ c = (c<<6) + (0x3f & *(zIn++)); \ } \ if( c<0x80 \ || (c&0xFFFFF800)==0xD800 \ || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ } #define WRITE_UTF8(zOut, c) { \ if( c<0x00080 ){ \ *zOut++ = (u8)(c&0xFF); \ } \ else if( c<0x00800 ){ \ *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ else if( c<0x10000 ){ \ *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ }else{ \ *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ } #endif /* ifndef SQLITE_AMALGAMATION */ typedef struct unicode_tokenizer unicode_tokenizer; typedef struct unicode_cursor unicode_cursor; struct unicode_tokenizer { sqlite3_tokenizer base; int eRemoveDiacritic; int nException; int *aiException; }; struct unicode_cursor { sqlite3_tokenizer_cursor base; const unsigned char *aInput; /* Input text being tokenized */ int nInput; /* Size of aInput[] in bytes */ int iOff; /* Current offset within aInput[] */ int iToken; /* Index of next token to be returned */ char *zToken; /* storage for current token */ int nAlloc; /* space allocated at zToken */ }; /* ** Destroy a tokenizer allocated by unicodeCreate(). */ static int unicodeDestroy(sqlite3_tokenizer *pTokenizer){ if( pTokenizer ){ unicode_tokenizer *p = (unicode_tokenizer *)pTokenizer; sqlite3_free(p->aiException); sqlite3_free(p); } return SQLITE_OK; } /* ** As part of a tokenchars= or separators= option, the CREATE VIRTUAL TABLE ** statement has specified that the tokenizer for this table shall consider ** all characters in string zIn/nIn to be separators (if bAlnum==0) or ** token characters (if bAlnum==1). ** ** For each codepoint in the zIn/nIn string, this function checks if the ** sqlite3FtsUnicodeIsalnum() function already returns the desired result. ** If so, no action is taken. Otherwise, the codepoint is added to the ** unicode_tokenizer.aiException[] array. For the purposes of tokenization, ** the return value of sqlite3FtsUnicodeIsalnum() is inverted for all ** codepoints in the aiException[] array. ** ** If a standalone diacritic mark (one that sqlite3FtsUnicodeIsdiacritic() ** identifies as a diacritic) occurs in the zIn/nIn string it is ignored. ** It is not possible to change the behavior of the tokenizer with respect ** to these codepoints. */ static int unicodeAddExceptions( unicode_tokenizer *p, /* Tokenizer to add exceptions to */ int bAlnum, /* Replace Isalnum() return value with this */ const char *zIn, /* Array of characters to make exceptions */ int nIn /* Length of z in bytes */ ){ const unsigned char *z = (const unsigned char *)zIn; const unsigned char *zTerm = &z[nIn]; unsigned int iCode; int nEntry = 0; assert( bAlnum==0 || bAlnum==1 ); while( zaiException,(p->nException+nEntry)*sizeof(int)); if( aNew==0 ) return SQLITE_NOMEM; nNew = p->nException; z = (const unsigned char *)zIn; while( zi; j--) aNew[j] = aNew[j-1]; aNew[i] = (int)iCode; nNew++; } } p->aiException = aNew; p->nException = nNew; } return SQLITE_OK; } /* ** Return true if the p->aiException[] array contains the value iCode. */ static int unicodeIsException(unicode_tokenizer *p, int iCode){ if( p->nException>0 ){ int *a = p->aiException; int iLo = 0; int iHi = p->nException-1; while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; if( iCode==a[iTest] ){ return 1; }else if( iCode>a[iTest] ){ iLo = iTest+1; }else{ iHi = iTest-1; } } } return 0; } /* ** Return true if, for the purposes of tokenization, codepoint iCode is ** considered a token character (not a separator). */ static int unicodeIsAlnum(unicode_tokenizer *p, int iCode){ assert( (sqlite3FtsUnicodeIsalnum(iCode) & 0xFFFFFFFE)==0 ); return sqlite3FtsUnicodeIsalnum(iCode) ^ unicodeIsException(p, iCode); } /* ** Create a new tokenizer instance. */ static int unicodeCreate( int nArg, /* Size of array argv[] */ const char * const *azArg, /* Tokenizer creation arguments */ sqlite3_tokenizer **pp /* OUT: New tokenizer handle */ ){ unicode_tokenizer *pNew; /* New tokenizer object */ int i; int rc = SQLITE_OK; pNew = (unicode_tokenizer *) sqlite3_malloc(sizeof(unicode_tokenizer)); if( pNew==NULL ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(unicode_tokenizer)); pNew->eRemoveDiacritic = 1; for(i=0; rc==SQLITE_OK && ieRemoveDiacritic = 1; } else if( n==19 && memcmp("remove_diacritics=0", z, 19)==0 ){ pNew->eRemoveDiacritic = 0; } else if( n==19 && memcmp("remove_diacritics=2", z, 19)==0 ){ pNew->eRemoveDiacritic = 2; } else if( n>=11 && memcmp("tokenchars=", z, 11)==0 ){ rc = unicodeAddExceptions(pNew, 1, &z[11], n-11); } else if( n>=11 && memcmp("separators=", z, 11)==0 ){ rc = unicodeAddExceptions(pNew, 0, &z[11], n-11); } else{ /* Unrecognized argument */ rc = SQLITE_ERROR; } } if( rc!=SQLITE_OK ){ unicodeDestroy((sqlite3_tokenizer *)pNew); pNew = 0; } *pp = (sqlite3_tokenizer *)pNew; return rc; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is pInput[0..nBytes-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int unicodeOpen( sqlite3_tokenizer *p, /* The tokenizer */ const char *aInput, /* Input string */ int nInput, /* Size of string aInput in bytes */ sqlite3_tokenizer_cursor **pp /* OUT: New cursor object */ ){ unicode_cursor *pCsr; pCsr = (unicode_cursor *)sqlite3_malloc(sizeof(unicode_cursor)); if( pCsr==0 ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(unicode_cursor)); pCsr->aInput = (const unsigned char *)aInput; if( aInput==0 ){ pCsr->nInput = 0; pCsr->aInput = (const unsigned char*)""; }else if( nInput<0 ){ pCsr->nInput = (int)strlen(aInput); }else{ pCsr->nInput = nInput; } *pp = &pCsr->base; UNUSED_PARAMETER(p); return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to ** simpleOpen() above. */ static int unicodeClose(sqlite3_tokenizer_cursor *pCursor){ unicode_cursor *pCsr = (unicode_cursor *) pCursor; sqlite3_free(pCsr->zToken); sqlite3_free(pCsr); return SQLITE_OK; } /* ** Extract the next token from a tokenization cursor. The cursor must ** have been opened by a prior call to simpleOpen(). */ static int unicodeNext( sqlite3_tokenizer_cursor *pC, /* Cursor returned by simpleOpen */ const char **paToken, /* OUT: Token text */ int *pnToken, /* OUT: Number of bytes at *paToken */ int *piStart, /* OUT: Starting offset of token */ int *piEnd, /* OUT: Ending offset of token */ int *piPos /* OUT: Position integer of token */ ){ unicode_cursor *pCsr = (unicode_cursor *)pC; unicode_tokenizer *p = ((unicode_tokenizer *)pCsr->base.pTokenizer); unsigned int iCode = 0; char *zOut; const unsigned char *z = &pCsr->aInput[pCsr->iOff]; const unsigned char *zStart = z; const unsigned char *zEnd; const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput]; /* Scan past any delimiter characters before the start of the next token. ** Return SQLITE_DONE early if this takes us all the way to the end of ** the input. */ while( z=zTerm ) return SQLITE_DONE; zOut = pCsr->zToken; do { int iOut; /* Grow the output buffer if required. */ if( (zOut-pCsr->zToken)>=(pCsr->nAlloc-4) ){ char *zNew = sqlite3_realloc64(pCsr->zToken, pCsr->nAlloc+64); if( !zNew ) return SQLITE_NOMEM; zOut = &zNew[zOut - pCsr->zToken]; pCsr->zToken = zNew; pCsr->nAlloc += 64; } /* Write the folded case of the last character read to the output */ zEnd = z; iOut = sqlite3FtsUnicodeFold((int)iCode, p->eRemoveDiacritic); if( iOut ){ WRITE_UTF8(zOut, iOut); } /* If the cursor is not at EOF, read the next character */ if( z>=zTerm ) break; READ_UTF8(z, zTerm, iCode); }while( unicodeIsAlnum(p, (int)iCode) || sqlite3FtsUnicodeIsdiacritic((int)iCode) ); /* Set the output variables and return. */ pCsr->iOff = (int)(z - pCsr->aInput); *paToken = pCsr->zToken; *pnToken = (int)(zOut - pCsr->zToken); *piStart = (int)(zStart - pCsr->aInput); *piEnd = (int)(zEnd - pCsr->aInput); *piPos = pCsr->iToken++; return SQLITE_OK; } /* ** Set *ppModule to a pointer to the sqlite3_tokenizer_module ** structure for the unicode tokenizer. */ SQLITE_PRIVATE void sqlite3Fts3UnicodeTokenizer(sqlite3_tokenizer_module const **ppModule){ static const sqlite3_tokenizer_module module = { 0, unicodeCreate, unicodeDestroy, unicodeOpen, unicodeClose, unicodeNext, 0, }; *ppModule = &module; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ #endif /* ifndef SQLITE_DISABLE_FTS3_UNICODE */ /************** End of fts3_unicode.c ****************************************/ /************** Begin file fts3_unicode2.c ***********************************/ /* ** 2012-05-25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** */ /* ** DO NOT EDIT THIS MACHINE GENERATED FILE. */ #ifndef SQLITE_DISABLE_FTS3_UNICODE #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) /* #include */ /* ** Return true if the argument corresponds to a unicode codepoint ** classified as either a letter or a number. Otherwise false. ** ** The results are undefined if the value passed to this function ** is less than zero. */ SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int c){ /* Each unsigned integer in the following array corresponds to a contiguous ** range of unicode codepoints that are not either letters or numbers (i.e. ** codepoints for which this function should return 0). ** ** The most significant 22 bits in each 32-bit value contain the first ** codepoint in the range. The least significant 10 bits are used to store ** the size of the range (always at least 1). In other words, the value ** ((C<<22) + N) represents a range of N codepoints starting with codepoint ** C. It is not possible to represent a range larger than 1023 codepoints ** using this format. */ static const unsigned int aEntry[] = { 0x00000030, 0x0000E807, 0x00016C06, 0x0001EC2F, 0x0002AC07, 0x0002D001, 0x0002D803, 0x0002EC01, 0x0002FC01, 0x00035C01, 0x0003DC01, 0x000B0804, 0x000B480E, 0x000B9407, 0x000BB401, 0x000BBC81, 0x000DD401, 0x000DF801, 0x000E1002, 0x000E1C01, 0x000FD801, 0x00120808, 0x00156806, 0x00162402, 0x00163C01, 0x00164437, 0x0017CC02, 0x00180005, 0x00181816, 0x00187802, 0x00192C15, 0x0019A804, 0x0019C001, 0x001B5001, 0x001B580F, 0x001B9C07, 0x001BF402, 0x001C000E, 0x001C3C01, 0x001C4401, 0x001CC01B, 0x001E980B, 0x001FAC09, 0x001FD804, 0x00205804, 0x00206C09, 0x00209403, 0x0020A405, 0x0020C00F, 0x00216403, 0x00217801, 0x0023901B, 0x00240004, 0x0024E803, 0x0024F812, 0x00254407, 0x00258804, 0x0025C001, 0x00260403, 0x0026F001, 0x0026F807, 0x00271C02, 0x00272C03, 0x00275C01, 0x00278802, 0x0027C802, 0x0027E802, 0x00280403, 0x0028F001, 0x0028F805, 0x00291C02, 0x00292C03, 0x00294401, 0x0029C002, 0x0029D401, 0x002A0403, 0x002AF001, 0x002AF808, 0x002B1C03, 0x002B2C03, 0x002B8802, 0x002BC002, 0x002C0403, 0x002CF001, 0x002CF807, 0x002D1C02, 0x002D2C03, 0x002D5802, 0x002D8802, 0x002DC001, 0x002E0801, 0x002EF805, 0x002F1803, 0x002F2804, 0x002F5C01, 0x002FCC08, 0x00300403, 0x0030F807, 0x00311803, 0x00312804, 0x00315402, 0x00318802, 0x0031FC01, 0x00320802, 0x0032F001, 0x0032F807, 0x00331803, 0x00332804, 0x00335402, 0x00338802, 0x00340802, 0x0034F807, 0x00351803, 0x00352804, 0x00355C01, 0x00358802, 0x0035E401, 0x00360802, 0x00372801, 0x00373C06, 0x00375801, 0x00376008, 0x0037C803, 0x0038C401, 0x0038D007, 0x0038FC01, 0x00391C09, 0x00396802, 0x003AC401, 0x003AD006, 0x003AEC02, 0x003B2006, 0x003C041F, 0x003CD00C, 0x003DC417, 0x003E340B, 0x003E6424, 0x003EF80F, 0x003F380D, 0x0040AC14, 0x00412806, 0x00415804, 0x00417803, 0x00418803, 0x00419C07, 0x0041C404, 0x0042080C, 0x00423C01, 0x00426806, 0x0043EC01, 0x004D740C, 0x004E400A, 0x00500001, 0x0059B402, 0x005A0001, 0x005A6C02, 0x005BAC03, 0x005C4803, 0x005CC805, 0x005D4802, 0x005DC802, 0x005ED023, 0x005F6004, 0x005F7401, 0x0060000F, 0x0062A401, 0x0064800C, 0x0064C00C, 0x00650001, 0x00651002, 0x0066C011, 0x00672002, 0x00677822, 0x00685C05, 0x00687802, 0x0069540A, 0x0069801D, 0x0069FC01, 0x006A8007, 0x006AA006, 0x006C0005, 0x006CD011, 0x006D6823, 0x006E0003, 0x006E840D, 0x006F980E, 0x006FF004, 0x00709014, 0x0070EC05, 0x0071F802, 0x00730008, 0x00734019, 0x0073B401, 0x0073C803, 0x00770027, 0x0077F004, 0x007EF401, 0x007EFC03, 0x007F3403, 0x007F7403, 0x007FB403, 0x007FF402, 0x00800065, 0x0081A806, 0x0081E805, 0x00822805, 0x0082801A, 0x00834021, 0x00840002, 0x00840C04, 0x00842002, 0x00845001, 0x00845803, 0x00847806, 0x00849401, 0x00849C01, 0x0084A401, 0x0084B801, 0x0084E802, 0x00850005, 0x00852804, 0x00853C01, 0x00864264, 0x00900027, 0x0091000B, 0x0092704E, 0x00940200, 0x009C0475, 0x009E53B9, 0x00AD400A, 0x00B39406, 0x00B3BC03, 0x00B3E404, 0x00B3F802, 0x00B5C001, 0x00B5FC01, 0x00B7804F, 0x00B8C00C, 0x00BA001A, 0x00BA6C59, 0x00BC00D6, 0x00BFC00C, 0x00C00005, 0x00C02019, 0x00C0A807, 0x00C0D802, 0x00C0F403, 0x00C26404, 0x00C28001, 0x00C3EC01, 0x00C64002, 0x00C6580A, 0x00C70024, 0x00C8001F, 0x00C8A81E, 0x00C94001, 0x00C98020, 0x00CA2827, 0x00CB003F, 0x00CC0100, 0x01370040, 0x02924037, 0x0293F802, 0x02983403, 0x0299BC10, 0x029A7C01, 0x029BC008, 0x029C0017, 0x029C8002, 0x029E2402, 0x02A00801, 0x02A01801, 0x02A02C01, 0x02A08C09, 0x02A0D804, 0x02A1D004, 0x02A20002, 0x02A2D011, 0x02A33802, 0x02A38012, 0x02A3E003, 0x02A4980A, 0x02A51C0D, 0x02A57C01, 0x02A60004, 0x02A6CC1B, 0x02A77802, 0x02A8A40E, 0x02A90C01, 0x02A93002, 0x02A97004, 0x02A9DC03, 0x02A9EC01, 0x02AAC001, 0x02AAC803, 0x02AADC02, 0x02AAF802, 0x02AB0401, 0x02AB7802, 0x02ABAC07, 0x02ABD402, 0x02AF8C0B, 0x03600001, 0x036DFC02, 0x036FFC02, 0x037FFC01, 0x03EC7801, 0x03ECA401, 0x03EEC810, 0x03F4F802, 0x03F7F002, 0x03F8001A, 0x03F88007, 0x03F8C023, 0x03F95013, 0x03F9A004, 0x03FBFC01, 0x03FC040F, 0x03FC6807, 0x03FCEC06, 0x03FD6C0B, 0x03FF8007, 0x03FFA007, 0x03FFE405, 0x04040003, 0x0404DC09, 0x0405E411, 0x0406400C, 0x0407402E, 0x040E7C01, 0x040F4001, 0x04215C01, 0x04247C01, 0x0424FC01, 0x04280403, 0x04281402, 0x04283004, 0x0428E003, 0x0428FC01, 0x04294009, 0x0429FC01, 0x042CE407, 0x04400003, 0x0440E016, 0x04420003, 0x0442C012, 0x04440003, 0x04449C0E, 0x04450004, 0x04460003, 0x0446CC0E, 0x04471404, 0x045AAC0D, 0x0491C004, 0x05BD442E, 0x05BE3C04, 0x074000F6, 0x07440027, 0x0744A4B5, 0x07480046, 0x074C0057, 0x075B0401, 0x075B6C01, 0x075BEC01, 0x075C5401, 0x075CD401, 0x075D3C01, 0x075DBC01, 0x075E2401, 0x075EA401, 0x075F0C01, 0x07BBC002, 0x07C0002C, 0x07C0C064, 0x07C2800F, 0x07C2C40E, 0x07C3040F, 0x07C3440F, 0x07C4401F, 0x07C4C03C, 0x07C5C02B, 0x07C7981D, 0x07C8402B, 0x07C90009, 0x07C94002, 0x07CC0021, 0x07CCC006, 0x07CCDC46, 0x07CE0014, 0x07CE8025, 0x07CF1805, 0x07CF8011, 0x07D0003F, 0x07D10001, 0x07D108B6, 0x07D3E404, 0x07D4003E, 0x07D50004, 0x07D54018, 0x07D7EC46, 0x07D9140B, 0x07DA0046, 0x07DC0074, 0x38000401, 0x38008060, 0x380400F0, }; static const unsigned int aAscii[4] = { 0xFFFFFFFF, 0xFC00FFFF, 0xF8000001, 0xF8000001, }; if( (unsigned int)c<128 ){ return ( (aAscii[c >> 5] & ((unsigned int)1 << (c & 0x001F)))==0 ); }else if( (unsigned int)c<(1<<22) ){ unsigned int key = (((unsigned int)c)<<10) | 0x000003FF; int iRes = 0; int iHi = sizeof(aEntry)/sizeof(aEntry[0]) - 1; int iLo = 0; while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; if( key >= aEntry[iTest] ){ iRes = iTest; iLo = iTest+1; }else{ iHi = iTest-1; } } assert( aEntry[0]=aEntry[iRes] ); return (((unsigned int)c) >= ((aEntry[iRes]>>10) + (aEntry[iRes]&0x3FF))); } return 1; } /* ** If the argument is a codepoint corresponding to a lowercase letter ** in the ASCII range with a diacritic added, return the codepoint ** of the ASCII letter only. For example, if passed 235 - "LATIN ** SMALL LETTER E WITH DIAERESIS" - return 65 ("LATIN SMALL LETTER ** E"). The resuls of passing a codepoint that corresponds to an ** uppercase letter are undefined. */ static int remove_diacritic(int c, int bComplex){ unsigned short aDia[] = { 0, 1797, 1848, 1859, 1891, 1928, 1940, 1995, 2024, 2040, 2060, 2110, 2168, 2206, 2264, 2286, 2344, 2383, 2472, 2488, 2516, 2596, 2668, 2732, 2782, 2842, 2894, 2954, 2984, 3000, 3028, 3336, 3456, 3696, 3712, 3728, 3744, 3766, 3832, 3896, 3912, 3928, 3944, 3968, 4008, 4040, 4056, 4106, 4138, 4170, 4202, 4234, 4266, 4296, 4312, 4344, 4408, 4424, 4442, 4472, 4488, 4504, 6148, 6198, 6264, 6280, 6360, 6429, 6505, 6529, 61448, 61468, 61512, 61534, 61592, 61610, 61642, 61672, 61688, 61704, 61726, 61784, 61800, 61816, 61836, 61880, 61896, 61914, 61948, 61998, 62062, 62122, 62154, 62184, 62200, 62218, 62252, 62302, 62364, 62410, 62442, 62478, 62536, 62554, 62584, 62604, 62640, 62648, 62656, 62664, 62730, 62766, 62830, 62890, 62924, 62974, 63032, 63050, 63082, 63118, 63182, 63242, 63274, 63310, 63368, 63390, }; #define HIBIT ((unsigned char)0x80) unsigned char aChar[] = { '\0', 'a', 'c', 'e', 'i', 'n', 'o', 'u', 'y', 'y', 'a', 'c', 'd', 'e', 'e', 'g', 'h', 'i', 'j', 'k', 'l', 'n', 'o', 'r', 's', 't', 'u', 'u', 'w', 'y', 'z', 'o', 'u', 'a', 'i', 'o', 'u', 'u'|HIBIT, 'a'|HIBIT, 'g', 'k', 'o', 'o'|HIBIT, 'j', 'g', 'n', 'a'|HIBIT, 'a', 'e', 'i', 'o', 'r', 'u', 's', 't', 'h', 'a', 'e', 'o'|HIBIT, 'o', 'o'|HIBIT, 'y', '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 'a', 'b', 'c'|HIBIT, 'd', 'd', 'e'|HIBIT, 'e', 'e'|HIBIT, 'f', 'g', 'h', 'h', 'i', 'i'|HIBIT, 'k', 'l', 'l'|HIBIT, 'l', 'm', 'n', 'o'|HIBIT, 'p', 'r', 'r'|HIBIT, 'r', 's', 's'|HIBIT, 't', 'u', 'u'|HIBIT, 'v', 'w', 'w', 'x', 'y', 'z', 'h', 't', 'w', 'y', 'a', 'a'|HIBIT, 'a'|HIBIT, 'a'|HIBIT, 'e', 'e'|HIBIT, 'e'|HIBIT, 'i', 'o', 'o'|HIBIT, 'o'|HIBIT, 'o'|HIBIT, 'u', 'u'|HIBIT, 'u'|HIBIT, 'y', }; unsigned int key = (((unsigned int)c)<<3) | 0x00000007; int iRes = 0; int iHi = sizeof(aDia)/sizeof(aDia[0]) - 1; int iLo = 0; while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; if( key >= aDia[iTest] ){ iRes = iTest; iLo = iTest+1; }else{ iHi = iTest-1; } } assert( key>=aDia[iRes] ); if( bComplex==0 && (aChar[iRes] & 0x80) ) return c; return (c > (aDia[iRes]>>3) + (aDia[iRes]&0x07)) ? c : ((int)aChar[iRes] & 0x7F); } /* ** Return true if the argument interpreted as a unicode codepoint ** is a diacritical modifier character. */ SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int c){ unsigned int mask0 = 0x08029FDF; unsigned int mask1 = 0x000361F8; if( c<768 || c>817 ) return 0; return (c < 768+32) ? (mask0 & ((unsigned int)1 << (c-768))) : (mask1 & ((unsigned int)1 << (c-768-32))); } /* ** Interpret the argument as a unicode codepoint. If the codepoint ** is an upper case character that has a lower case equivalent, ** return the codepoint corresponding to the lower case version. ** Otherwise, return a copy of the argument. ** ** The results are undefined if the value passed to this function ** is less than zero. */ SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int c, int eRemoveDiacritic){ /* Each entry in the following array defines a rule for folding a range ** of codepoints to lower case. The rule applies to a range of nRange ** codepoints starting at codepoint iCode. ** ** If the least significant bit in flags is clear, then the rule applies ** to all nRange codepoints (i.e. all nRange codepoints are upper case and ** need to be folded). Or, if it is set, then the rule only applies to ** every second codepoint in the range, starting with codepoint C. ** ** The 7 most significant bits in flags are an index into the aiOff[] ** array. If a specific codepoint C does require folding, then its lower ** case equivalent is ((C + aiOff[flags>>1]) & 0xFFFF). ** ** The contents of this array are generated by parsing the CaseFolding.txt ** file distributed as part of the "Unicode Character Database". See ** http://www.unicode.org for details. */ static const struct TableEntry { unsigned short iCode; unsigned char flags; unsigned char nRange; } aEntry[] = { {65, 14, 26}, {181, 64, 1}, {192, 14, 23}, {216, 14, 7}, {256, 1, 48}, {306, 1, 6}, {313, 1, 16}, {330, 1, 46}, {376, 116, 1}, {377, 1, 6}, {383, 104, 1}, {385, 50, 1}, {386, 1, 4}, {390, 44, 1}, {391, 0, 1}, {393, 42, 2}, {395, 0, 1}, {398, 32, 1}, {399, 38, 1}, {400, 40, 1}, {401, 0, 1}, {403, 42, 1}, {404, 46, 1}, {406, 52, 1}, {407, 48, 1}, {408, 0, 1}, {412, 52, 1}, {413, 54, 1}, {415, 56, 1}, {416, 1, 6}, {422, 60, 1}, {423, 0, 1}, {425, 60, 1}, {428, 0, 1}, {430, 60, 1}, {431, 0, 1}, {433, 58, 2}, {435, 1, 4}, {439, 62, 1}, {440, 0, 1}, {444, 0, 1}, {452, 2, 1}, {453, 0, 1}, {455, 2, 1}, {456, 0, 1}, {458, 2, 1}, {459, 1, 18}, {478, 1, 18}, {497, 2, 1}, {498, 1, 4}, {502, 122, 1}, {503, 134, 1}, {504, 1, 40}, {544, 110, 1}, {546, 1, 18}, {570, 70, 1}, {571, 0, 1}, {573, 108, 1}, {574, 68, 1}, {577, 0, 1}, {579, 106, 1}, {580, 28, 1}, {581, 30, 1}, {582, 1, 10}, {837, 36, 1}, {880, 1, 4}, {886, 0, 1}, {902, 18, 1}, {904, 16, 3}, {908, 26, 1}, {910, 24, 2}, {913, 14, 17}, {931, 14, 9}, {962, 0, 1}, {975, 4, 1}, {976, 140, 1}, {977, 142, 1}, {981, 146, 1}, {982, 144, 1}, {984, 1, 24}, {1008, 136, 1}, {1009, 138, 1}, {1012, 130, 1}, {1013, 128, 1}, {1015, 0, 1}, {1017, 152, 1}, {1018, 0, 1}, {1021, 110, 3}, {1024, 34, 16}, {1040, 14, 32}, {1120, 1, 34}, {1162, 1, 54}, {1216, 6, 1}, {1217, 1, 14}, {1232, 1, 88}, {1329, 22, 38}, {4256, 66, 38}, {4295, 66, 1}, {4301, 66, 1}, {7680, 1, 150}, {7835, 132, 1}, {7838, 96, 1}, {7840, 1, 96}, {7944, 150, 8}, {7960, 150, 6}, {7976, 150, 8}, {7992, 150, 8}, {8008, 150, 6}, {8025, 151, 8}, {8040, 150, 8}, {8072, 150, 8}, {8088, 150, 8}, {8104, 150, 8}, {8120, 150, 2}, {8122, 126, 2}, {8124, 148, 1}, {8126, 100, 1}, {8136, 124, 4}, {8140, 148, 1}, {8152, 150, 2}, {8154, 120, 2}, {8168, 150, 2}, {8170, 118, 2}, {8172, 152, 1}, {8184, 112, 2}, {8186, 114, 2}, {8188, 148, 1}, {8486, 98, 1}, {8490, 92, 1}, {8491, 94, 1}, {8498, 12, 1}, {8544, 8, 16}, {8579, 0, 1}, {9398, 10, 26}, {11264, 22, 47}, {11360, 0, 1}, {11362, 88, 1}, {11363, 102, 1}, {11364, 90, 1}, {11367, 1, 6}, {11373, 84, 1}, {11374, 86, 1}, {11375, 80, 1}, {11376, 82, 1}, {11378, 0, 1}, {11381, 0, 1}, {11390, 78, 2}, {11392, 1, 100}, {11499, 1, 4}, {11506, 0, 1}, {42560, 1, 46}, {42624, 1, 24}, {42786, 1, 14}, {42802, 1, 62}, {42873, 1, 4}, {42877, 76, 1}, {42878, 1, 10}, {42891, 0, 1}, {42893, 74, 1}, {42896, 1, 4}, {42912, 1, 10}, {42922, 72, 1}, {65313, 14, 26}, }; static const unsigned short aiOff[] = { 1, 2, 8, 15, 16, 26, 28, 32, 37, 38, 40, 48, 63, 64, 69, 71, 79, 80, 116, 202, 203, 205, 206, 207, 209, 210, 211, 213, 214, 217, 218, 219, 775, 7264, 10792, 10795, 23228, 23256, 30204, 54721, 54753, 54754, 54756, 54787, 54793, 54809, 57153, 57274, 57921, 58019, 58363, 61722, 65268, 65341, 65373, 65406, 65408, 65410, 65415, 65424, 65436, 65439, 65450, 65462, 65472, 65476, 65478, 65480, 65482, 65488, 65506, 65511, 65514, 65521, 65527, 65528, 65529, }; int ret = c; assert( sizeof(unsigned short)==2 && sizeof(unsigned char)==1 ); if( c<128 ){ if( c>='A' && c<='Z' ) ret = c + ('a' - 'A'); }else if( c<65536 ){ const struct TableEntry *p; int iHi = sizeof(aEntry)/sizeof(aEntry[0]) - 1; int iLo = 0; int iRes = -1; assert( c>aEntry[0].iCode ); while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; int cmp = (c - aEntry[iTest].iCode); if( cmp>=0 ){ iRes = iTest; iLo = iTest+1; }else{ iHi = iTest-1; } } assert( iRes>=0 && c>=aEntry[iRes].iCode ); p = &aEntry[iRes]; if( c<(p->iCode + p->nRange) && 0==(0x01 & p->flags & (p->iCode ^ c)) ){ ret = (c + (aiOff[p->flags>>1])) & 0x0000FFFF; assert( ret>0 ); } if( eRemoveDiacritic ){ ret = remove_diacritic(ret, eRemoveDiacritic==2); } } else if( c>=66560 && c<66600 ){ ret = c + 40; } return ret; } #endif /* defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) */ #endif /* !defined(SQLITE_DISABLE_FTS3_UNICODE) */ /************** End of fts3_unicode2.c ***************************************/ /************** Begin file json.c ********************************************/ /* ** 2015-08-12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This SQLite JSON functions. ** ** This file began as an extension in ext/misc/json1.c in 2015. That ** extension proved so useful that it has now been moved into the core. ** ** For the time being, all JSON is stored as pure text. (We might add ** a JSONB type in the future which stores a binary encoding of JSON in ** a BLOB, but there is no support for JSONB in the current implementation. ** This implementation parses JSON text at 250 MB/s, so it is hard to see ** how JSONB might improve on that.) */ #ifndef SQLITE_OMIT_JSON /* #include "sqliteInt.h" */ /* ** Growing our own isspace() routine this way is twice as fast as ** the library isspace() function, resulting in a 7% overall performance ** increase for the parser. (Ubuntu14.10 gcc 4.8.4 x64 with -Os). */ static const char jsonIsSpace[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; #define fast_isspace(x) (jsonIsSpace[(unsigned char)x]) #if !defined(SQLITE_DEBUG) && !defined(SQLITE_COVERAGE_TEST) # define VVA(X) #else # define VVA(X) X #endif /* Objects */ typedef struct JsonString JsonString; typedef struct JsonNode JsonNode; typedef struct JsonParse JsonParse; /* An instance of this object represents a JSON string ** under construction. Really, this is a generic string accumulator ** that can be and is used to create strings other than JSON. */ struct JsonString { sqlite3_context *pCtx; /* Function context - put error messages here */ char *zBuf; /* Append JSON content here */ u64 nAlloc; /* Bytes of storage available in zBuf[] */ u64 nUsed; /* Bytes of zBuf[] currently used */ u8 bStatic; /* True if zBuf is static space */ u8 bErr; /* True if an error has been encountered */ char zSpace[100]; /* Initial static space */ }; /* JSON type values */ #define JSON_NULL 0 #define JSON_TRUE 1 #define JSON_FALSE 2 #define JSON_INT 3 #define JSON_REAL 4 #define JSON_STRING 5 #define JSON_ARRAY 6 #define JSON_OBJECT 7 /* The "subtype" set for JSON values */ #define JSON_SUBTYPE 74 /* Ascii for "J" */ /* ** Names of the various JSON types: */ static const char * const jsonType[] = { "null", "true", "false", "integer", "real", "text", "array", "object" }; /* Bit values for the JsonNode.jnFlag field */ #define JNODE_RAW 0x01 /* Content is raw, not JSON encoded */ #define JNODE_ESCAPE 0x02 /* Content is text with \ escapes */ #define JNODE_REMOVE 0x04 /* Do not output */ #define JNODE_REPLACE 0x08 /* Replace with JsonNode.u.iReplace */ #define JNODE_PATCH 0x10 /* Patch with JsonNode.u.pPatch */ #define JNODE_APPEND 0x20 /* More ARRAY/OBJECT entries at u.iAppend */ #define JNODE_LABEL 0x40 /* Is a label of an object */ /* A single node of parsed JSON */ struct JsonNode { u8 eType; /* One of the JSON_ type values */ u8 jnFlags; /* JNODE flags */ u8 eU; /* Which union element to use */ u32 n; /* Bytes of content, or number of sub-nodes */ union { const char *zJContent; /* 1: Content for INT, REAL, and STRING */ u32 iAppend; /* 2: More terms for ARRAY and OBJECT */ u32 iKey; /* 3: Key for ARRAY objects in json_tree() */ u32 iReplace; /* 4: Replacement content for JNODE_REPLACE */ JsonNode *pPatch; /* 5: Node chain of patch for JNODE_PATCH */ } u; }; /* A completely parsed JSON string */ struct JsonParse { u32 nNode; /* Number of slots of aNode[] used */ u32 nAlloc; /* Number of slots of aNode[] allocated */ JsonNode *aNode; /* Array of nodes containing the parse */ const char *zJson; /* Original JSON string */ u32 *aUp; /* Index of parent of each node */ u8 oom; /* Set to true if out of memory */ u8 nErr; /* Number of errors seen */ u16 iDepth; /* Nesting depth */ int nJson; /* Length of the zJson string in bytes */ u32 iHold; /* Replace cache line with the lowest iHold value */ }; /* ** Maximum nesting depth of JSON for this implementation. ** ** This limit is needed to avoid a stack overflow in the recursive ** descent parser. A depth of 2000 is far deeper than any sane JSON ** should go. */ #define JSON_MAX_DEPTH 2000 /************************************************************************** ** Utility routines for dealing with JsonString objects **************************************************************************/ /* Set the JsonString object to an empty string */ static void jsonZero(JsonString *p){ p->zBuf = p->zSpace; p->nAlloc = sizeof(p->zSpace); p->nUsed = 0; p->bStatic = 1; } /* Initialize the JsonString object */ static void jsonInit(JsonString *p, sqlite3_context *pCtx){ p->pCtx = pCtx; p->bErr = 0; jsonZero(p); } /* Free all allocated memory and reset the JsonString object back to its ** initial state. */ static void jsonReset(JsonString *p){ if( !p->bStatic ) sqlite3_free(p->zBuf); jsonZero(p); } /* Report an out-of-memory (OOM) condition */ static void jsonOom(JsonString *p){ p->bErr = 1; sqlite3_result_error_nomem(p->pCtx); jsonReset(p); } /* Enlarge pJson->zBuf so that it can hold at least N more bytes. ** Return zero on success. Return non-zero on an OOM error */ static int jsonGrow(JsonString *p, u32 N){ u64 nTotal = NnAlloc ? p->nAlloc*2 : p->nAlloc+N+10; char *zNew; if( p->bStatic ){ if( p->bErr ) return 1; zNew = sqlite3_malloc64(nTotal); if( zNew==0 ){ jsonOom(p); return SQLITE_NOMEM; } memcpy(zNew, p->zBuf, (size_t)p->nUsed); p->zBuf = zNew; p->bStatic = 0; }else{ zNew = sqlite3_realloc64(p->zBuf, nTotal); if( zNew==0 ){ jsonOom(p); return SQLITE_NOMEM; } p->zBuf = zNew; } p->nAlloc = nTotal; return SQLITE_OK; } /* Append N bytes from zIn onto the end of the JsonString string. */ static void jsonAppendRaw(JsonString *p, const char *zIn, u32 N){ if( N==0 ) return; if( (N+p->nUsed >= p->nAlloc) && jsonGrow(p,N)!=0 ) return; memcpy(p->zBuf+p->nUsed, zIn, N); p->nUsed += N; } /* Append formatted text (not to exceed N bytes) to the JsonString. */ static void jsonPrintf(int N, JsonString *p, const char *zFormat, ...){ va_list ap; if( (p->nUsed + N >= p->nAlloc) && jsonGrow(p, N) ) return; va_start(ap, zFormat); sqlite3_vsnprintf(N, p->zBuf+p->nUsed, zFormat, ap); va_end(ap); p->nUsed += (int)strlen(p->zBuf+p->nUsed); } /* Append a single character */ static void jsonAppendChar(JsonString *p, char c){ if( p->nUsed>=p->nAlloc && jsonGrow(p,1)!=0 ) return; p->zBuf[p->nUsed++] = c; } /* Append a comma separator to the output buffer, if the previous ** character is not '[' or '{'. */ static void jsonAppendSeparator(JsonString *p){ char c; if( p->nUsed==0 ) return; c = p->zBuf[p->nUsed-1]; if( c!='[' && c!='{' ) jsonAppendChar(p, ','); } /* Append the N-byte string in zIn to the end of the JsonString string ** under construction. Enclose the string in "..." and escape ** any double-quotes or backslash characters contained within the ** string. */ static void jsonAppendString(JsonString *p, const char *zIn, u32 N){ u32 i; if( zIn==0 || ((N+p->nUsed+2 >= p->nAlloc) && jsonGrow(p,N+2)!=0) ) return; p->zBuf[p->nUsed++] = '"'; for(i=0; inUsed+N+3-i > p->nAlloc) && jsonGrow(p,N+3-i)!=0 ) return; p->zBuf[p->nUsed++] = '\\'; }else if( c<=0x1f ){ static const char aSpecial[] = { 0, 0, 0, 0, 0, 0, 0, 0, 'b', 't', 'n', 0, 'f', 'r', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; assert( sizeof(aSpecial)==32 ); assert( aSpecial['\b']=='b' ); assert( aSpecial['\f']=='f' ); assert( aSpecial['\n']=='n' ); assert( aSpecial['\r']=='r' ); assert( aSpecial['\t']=='t' ); if( aSpecial[c] ){ c = aSpecial[c]; goto json_simple_escape; } if( (p->nUsed+N+7+i > p->nAlloc) && jsonGrow(p,N+7-i)!=0 ) return; p->zBuf[p->nUsed++] = '\\'; p->zBuf[p->nUsed++] = 'u'; p->zBuf[p->nUsed++] = '0'; p->zBuf[p->nUsed++] = '0'; p->zBuf[p->nUsed++] = '0' + (c>>4); c = "0123456789abcdef"[c&0xf]; } p->zBuf[p->nUsed++] = c; } p->zBuf[p->nUsed++] = '"'; assert( p->nUsednAlloc ); } /* ** Append a function parameter value to the JSON string under ** construction. */ static void jsonAppendValue( JsonString *p, /* Append to this JSON string */ sqlite3_value *pValue /* Value to append */ ){ switch( sqlite3_value_type(pValue) ){ case SQLITE_NULL: { jsonAppendRaw(p, "null", 4); break; } case SQLITE_INTEGER: case SQLITE_FLOAT: { const char *z = (const char*)sqlite3_value_text(pValue); u32 n = (u32)sqlite3_value_bytes(pValue); jsonAppendRaw(p, z, n); break; } case SQLITE_TEXT: { const char *z = (const char*)sqlite3_value_text(pValue); u32 n = (u32)sqlite3_value_bytes(pValue); if( sqlite3_value_subtype(pValue)==JSON_SUBTYPE ){ jsonAppendRaw(p, z, n); }else{ jsonAppendString(p, z, n); } break; } default: { if( p->bErr==0 ){ sqlite3_result_error(p->pCtx, "JSON cannot hold BLOB values", -1); p->bErr = 2; jsonReset(p); } break; } } } /* Make the JSON in p the result of the SQL function. */ static void jsonResult(JsonString *p){ if( p->bErr==0 ){ sqlite3_result_text64(p->pCtx, p->zBuf, p->nUsed, p->bStatic ? SQLITE_TRANSIENT : sqlite3_free, SQLITE_UTF8); jsonZero(p); } assert( p->bStatic ); } /************************************************************************** ** Utility routines for dealing with JsonNode and JsonParse objects **************************************************************************/ /* ** Return the number of consecutive JsonNode slots need to represent ** the parsed JSON at pNode. The minimum answer is 1. For ARRAY and ** OBJECT types, the number might be larger. ** ** Appended elements are not counted. The value returned is the number ** by which the JsonNode counter should increment in order to go to the ** next peer value. */ static u32 jsonNodeSize(JsonNode *pNode){ return pNode->eType>=JSON_ARRAY ? pNode->n+1 : 1; } /* ** Reclaim all memory allocated by a JsonParse object. But do not ** delete the JsonParse object itself. */ static void jsonParseReset(JsonParse *pParse){ sqlite3_free(pParse->aNode); pParse->aNode = 0; pParse->nNode = 0; pParse->nAlloc = 0; sqlite3_free(pParse->aUp); pParse->aUp = 0; } /* ** Free a JsonParse object that was obtained from sqlite3_malloc(). */ static void jsonParseFree(JsonParse *pParse){ jsonParseReset(pParse); sqlite3_free(pParse); } /* ** Convert the JsonNode pNode into a pure JSON string and ** append to pOut. Subsubstructure is also included. Return ** the number of JsonNode objects that are encoded. */ static void jsonRenderNode( JsonNode *pNode, /* The node to render */ JsonString *pOut, /* Write JSON here */ sqlite3_value **aReplace /* Replacement values */ ){ assert( pNode!=0 ); if( pNode->jnFlags & (JNODE_REPLACE|JNODE_PATCH) ){ if( (pNode->jnFlags & JNODE_REPLACE)!=0 && ALWAYS(aReplace!=0) ){ assert( pNode->eU==4 ); jsonAppendValue(pOut, aReplace[pNode->u.iReplace]); return; } assert( pNode->eU==5 ); pNode = pNode->u.pPatch; } switch( pNode->eType ){ default: { assert( pNode->eType==JSON_NULL ); jsonAppendRaw(pOut, "null", 4); break; } case JSON_TRUE: { jsonAppendRaw(pOut, "true", 4); break; } case JSON_FALSE: { jsonAppendRaw(pOut, "false", 5); break; } case JSON_STRING: { if( pNode->jnFlags & JNODE_RAW ){ assert( pNode->eU==1 ); jsonAppendString(pOut, pNode->u.zJContent, pNode->n); break; } /* no break */ deliberate_fall_through } case JSON_REAL: case JSON_INT: { assert( pNode->eU==1 ); jsonAppendRaw(pOut, pNode->u.zJContent, pNode->n); break; } case JSON_ARRAY: { u32 j = 1; jsonAppendChar(pOut, '['); for(;;){ while( j<=pNode->n ){ if( (pNode[j].jnFlags & JNODE_REMOVE)==0 ){ jsonAppendSeparator(pOut); jsonRenderNode(&pNode[j], pOut, aReplace); } j += jsonNodeSize(&pNode[j]); } if( (pNode->jnFlags & JNODE_APPEND)==0 ) break; assert( pNode->eU==2 ); pNode = &pNode[pNode->u.iAppend]; j = 1; } jsonAppendChar(pOut, ']'); break; } case JSON_OBJECT: { u32 j = 1; jsonAppendChar(pOut, '{'); for(;;){ while( j<=pNode->n ){ if( (pNode[j+1].jnFlags & JNODE_REMOVE)==0 ){ jsonAppendSeparator(pOut); jsonRenderNode(&pNode[j], pOut, aReplace); jsonAppendChar(pOut, ':'); jsonRenderNode(&pNode[j+1], pOut, aReplace); } j += 1 + jsonNodeSize(&pNode[j+1]); } if( (pNode->jnFlags & JNODE_APPEND)==0 ) break; assert( pNode->eU==2 ); pNode = &pNode[pNode->u.iAppend]; j = 1; } jsonAppendChar(pOut, '}'); break; } } } /* ** Return a JsonNode and all its descendents as a JSON string. */ static void jsonReturnJson( JsonNode *pNode, /* Node to return */ sqlite3_context *pCtx, /* Return value for this function */ sqlite3_value **aReplace /* Array of replacement values */ ){ JsonString s; jsonInit(&s, pCtx); jsonRenderNode(pNode, &s, aReplace); jsonResult(&s); sqlite3_result_subtype(pCtx, JSON_SUBTYPE); } /* ** Translate a single byte of Hex into an integer. ** This routine only works if h really is a valid hexadecimal ** character: 0..9a..fA..F */ static u8 jsonHexToInt(int h){ assert( (h>='0' && h<='9') || (h>='a' && h<='f') || (h>='A' && h<='F') ); #ifdef SQLITE_EBCDIC h += 9*(1&~(h>>4)); #else h += 9*(1&(h>>6)); #endif return (u8)(h & 0xf); } /* ** Convert a 4-byte hex string into an integer */ static u32 jsonHexToInt4(const char *z){ u32 v; assert( sqlite3Isxdigit(z[0]) ); assert( sqlite3Isxdigit(z[1]) ); assert( sqlite3Isxdigit(z[2]) ); assert( sqlite3Isxdigit(z[3]) ); v = (jsonHexToInt(z[0])<<12) + (jsonHexToInt(z[1])<<8) + (jsonHexToInt(z[2])<<4) + jsonHexToInt(z[3]); return v; } /* ** Make the JsonNode the return value of the function. */ static void jsonReturn( JsonNode *pNode, /* Node to return */ sqlite3_context *pCtx, /* Return value for this function */ sqlite3_value **aReplace /* Array of replacement values */ ){ switch( pNode->eType ){ default: { assert( pNode->eType==JSON_NULL ); sqlite3_result_null(pCtx); break; } case JSON_TRUE: { sqlite3_result_int(pCtx, 1); break; } case JSON_FALSE: { sqlite3_result_int(pCtx, 0); break; } case JSON_INT: { sqlite3_int64 i = 0; const char *z; assert( pNode->eU==1 ); z = pNode->u.zJContent; if( z[0]=='-' ){ z++; } while( z[0]>='0' && z[0]<='9' ){ unsigned v = *(z++) - '0'; if( i>=LARGEST_INT64/10 ){ if( i>LARGEST_INT64/10 ) goto int_as_real; if( z[0]>='0' && z[0]<='9' ) goto int_as_real; if( v==9 ) goto int_as_real; if( v==8 ){ if( pNode->u.zJContent[0]=='-' ){ sqlite3_result_int64(pCtx, SMALLEST_INT64); goto int_done; }else{ goto int_as_real; } } } i = i*10 + v; } if( pNode->u.zJContent[0]=='-' ){ i = -i; } sqlite3_result_int64(pCtx, i); int_done: break; int_as_real: ; /* no break */ deliberate_fall_through } case JSON_REAL: { double r; #ifdef SQLITE_AMALGAMATION const char *z; assert( pNode->eU==1 ); z = pNode->u.zJContent; sqlite3AtoF(z, &r, sqlite3Strlen30(z), SQLITE_UTF8); #else assert( pNode->eU==1 ); r = strtod(pNode->u.zJContent, 0); #endif sqlite3_result_double(pCtx, r); break; } case JSON_STRING: { #if 0 /* Never happens because JNODE_RAW is only set by json_set(), ** json_insert() and json_replace() and those routines do not ** call jsonReturn() */ if( pNode->jnFlags & JNODE_RAW ){ assert( pNode->eU==1 ); sqlite3_result_text(pCtx, pNode->u.zJContent, pNode->n, SQLITE_TRANSIENT); }else #endif assert( (pNode->jnFlags & JNODE_RAW)==0 ); if( (pNode->jnFlags & JNODE_ESCAPE)==0 ){ /* JSON formatted without any backslash-escapes */ assert( pNode->eU==1 ); sqlite3_result_text(pCtx, pNode->u.zJContent+1, pNode->n-2, SQLITE_TRANSIENT); }else{ /* Translate JSON formatted string into raw text */ u32 i; u32 n = pNode->n; const char *z; char *zOut; u32 j; assert( pNode->eU==1 ); z = pNode->u.zJContent; zOut = sqlite3_malloc( n+1 ); if( zOut==0 ){ sqlite3_result_error_nomem(pCtx); break; } for(i=1, j=0; i>6)); zOut[j++] = 0x80 | (v&0x3f); }else{ u32 vlo; if( (v&0xfc00)==0xd800 && i>18); zOut[j++] = 0x80 | ((v>>12)&0x3f); zOut[j++] = 0x80 | ((v>>6)&0x3f); zOut[j++] = 0x80 | (v&0x3f); }else{ zOut[j++] = 0xe0 | (v>>12); zOut[j++] = 0x80 | ((v>>6)&0x3f); zOut[j++] = 0x80 | (v&0x3f); } } }else{ if( c=='b' ){ c = '\b'; }else if( c=='f' ){ c = '\f'; }else if( c=='n' ){ c = '\n'; }else if( c=='r' ){ c = '\r'; }else if( c=='t' ){ c = '\t'; } zOut[j++] = c; } } } zOut[j] = 0; sqlite3_result_text(pCtx, zOut, j, sqlite3_free); } break; } case JSON_ARRAY: case JSON_OBJECT: { jsonReturnJson(pNode, pCtx, aReplace); break; } } } /* Forward reference */ static int jsonParseAddNode(JsonParse*,u32,u32,const char*); /* ** A macro to hint to the compiler that a function should not be ** inlined. */ #if defined(__GNUC__) # define JSON_NOINLINE __attribute__((noinline)) #elif defined(_MSC_VER) && _MSC_VER>=1310 # define JSON_NOINLINE __declspec(noinline) #else # define JSON_NOINLINE #endif static JSON_NOINLINE int jsonParseAddNodeExpand( JsonParse *pParse, /* Append the node to this object */ u32 eType, /* Node type */ u32 n, /* Content size or sub-node count */ const char *zContent /* Content */ ){ u32 nNew; JsonNode *pNew; assert( pParse->nNode>=pParse->nAlloc ); if( pParse->oom ) return -1; nNew = pParse->nAlloc*2 + 10; pNew = sqlite3_realloc64(pParse->aNode, sizeof(JsonNode)*nNew); if( pNew==0 ){ pParse->oom = 1; return -1; } pParse->nAlloc = nNew; pParse->aNode = pNew; assert( pParse->nNodenAlloc ); return jsonParseAddNode(pParse, eType, n, zContent); } /* ** Create a new JsonNode instance based on the arguments and append that ** instance to the JsonParse. Return the index in pParse->aNode[] of the ** new node, or -1 if a memory allocation fails. */ static int jsonParseAddNode( JsonParse *pParse, /* Append the node to this object */ u32 eType, /* Node type */ u32 n, /* Content size or sub-node count */ const char *zContent /* Content */ ){ JsonNode *p; if( pParse->aNode==0 || pParse->nNode>=pParse->nAlloc ){ return jsonParseAddNodeExpand(pParse, eType, n, zContent); } p = &pParse->aNode[pParse->nNode]; p->eType = (u8)eType; p->jnFlags = 0; VVA( p->eU = zContent ? 1 : 0 ); p->n = n; p->u.zJContent = zContent; return pParse->nNode++; } /* ** Return true if z[] begins with 4 (or more) hexadecimal digits */ static int jsonIs4Hex(const char *z){ int i; for(i=0; i<4; i++) if( !sqlite3Isxdigit(z[i]) ) return 0; return 1; } /* ** Parse a single JSON value which begins at pParse->zJson[i]. Return the ** index of the first character past the end of the value parsed. ** ** Return negative for a syntax error. Special cases: return -2 if the ** first non-whitespace character is '}' and return -3 if the first ** non-whitespace character is ']'. */ static int jsonParseValue(JsonParse *pParse, u32 i){ char c; u32 j; int iThis; int x; JsonNode *pNode; const char *z = pParse->zJson; while( fast_isspace(z[i]) ){ i++; } if( (c = z[i])=='{' ){ /* Parse object */ iThis = jsonParseAddNode(pParse, JSON_OBJECT, 0, 0); if( iThis<0 ) return -1; for(j=i+1;;j++){ while( fast_isspace(z[j]) ){ j++; } if( ++pParse->iDepth > JSON_MAX_DEPTH ) return -1; x = jsonParseValue(pParse, j); if( x<0 ){ pParse->iDepth--; if( x==(-2) && pParse->nNode==(u32)iThis+1 ) return j+1; return -1; } if( pParse->oom ) return -1; pNode = &pParse->aNode[pParse->nNode-1]; if( pNode->eType!=JSON_STRING ) return -1; pNode->jnFlags |= JNODE_LABEL; j = x; while( fast_isspace(z[j]) ){ j++; } if( z[j]!=':' ) return -1; j++; x = jsonParseValue(pParse, j); pParse->iDepth--; if( x<0 ) return -1; j = x; while( fast_isspace(z[j]) ){ j++; } c = z[j]; if( c==',' ) continue; if( c!='}' ) return -1; break; } pParse->aNode[iThis].n = pParse->nNode - (u32)iThis - 1; return j+1; }else if( c=='[' ){ /* Parse array */ iThis = jsonParseAddNode(pParse, JSON_ARRAY, 0, 0); if( iThis<0 ) return -1; memset(&pParse->aNode[iThis].u, 0, sizeof(pParse->aNode[iThis].u)); for(j=i+1;;j++){ while( fast_isspace(z[j]) ){ j++; } if( ++pParse->iDepth > JSON_MAX_DEPTH ) return -1; x = jsonParseValue(pParse, j); pParse->iDepth--; if( x<0 ){ if( x==(-3) && pParse->nNode==(u32)iThis+1 ) return j+1; return -1; } j = x; while( fast_isspace(z[j]) ){ j++; } c = z[j]; if( c==',' ) continue; if( c!=']' ) return -1; break; } pParse->aNode[iThis].n = pParse->nNode - (u32)iThis - 1; return j+1; }else if( c=='"' ){ /* Parse string */ u8 jnFlags = 0; j = i+1; for(;;){ c = z[j]; if( (c & ~0x1f)==0 ){ /* Control characters are not allowed in strings */ return -1; } if( c=='\\' ){ c = z[++j]; if( c=='"' || c=='\\' || c=='/' || c=='b' || c=='f' || c=='n' || c=='r' || c=='t' || (c=='u' && jsonIs4Hex(z+j+1)) ){ jnFlags = JNODE_ESCAPE; }else{ return -1; } }else if( c=='"' ){ break; } j++; } jsonParseAddNode(pParse, JSON_STRING, j+1-i, &z[i]); if( !pParse->oom ) pParse->aNode[pParse->nNode-1].jnFlags = jnFlags; return j+1; }else if( c=='n' && strncmp(z+i,"null",4)==0 && !sqlite3Isalnum(z[i+4]) ){ jsonParseAddNode(pParse, JSON_NULL, 0, 0); return i+4; }else if( c=='t' && strncmp(z+i,"true",4)==0 && !sqlite3Isalnum(z[i+4]) ){ jsonParseAddNode(pParse, JSON_TRUE, 0, 0); return i+4; }else if( c=='f' && strncmp(z+i,"false",5)==0 && !sqlite3Isalnum(z[i+5]) ){ jsonParseAddNode(pParse, JSON_FALSE, 0, 0); return i+5; }else if( c=='-' || (c>='0' && c<='9') ){ /* Parse number */ u8 seenDP = 0; u8 seenE = 0; assert( '-' < '0' ); if( c<='0' ){ j = c=='-' ? i+1 : i; if( z[j]=='0' && z[j+1]>='0' && z[j+1]<='9' ) return -1; } j = i+1; for(;; j++){ c = z[j]; if( c>='0' && c<='9' ) continue; if( c=='.' ){ if( z[j-1]=='-' ) return -1; if( seenDP ) return -1; seenDP = 1; continue; } if( c=='e' || c=='E' ){ if( z[j-1]<'0' ) return -1; if( seenE ) return -1; seenDP = seenE = 1; c = z[j+1]; if( c=='+' || c=='-' ){ j++; c = z[j+1]; } if( c<'0' || c>'9' ) return -1; continue; } break; } if( z[j-1]<'0' ) return -1; jsonParseAddNode(pParse, seenDP ? JSON_REAL : JSON_INT, j - i, &z[i]); return j; }else if( c=='}' ){ return -2; /* End of {...} */ }else if( c==']' ){ return -3; /* End of [...] */ }else if( c==0 ){ return 0; /* End of file */ }else{ return -1; /* Syntax error */ } } /* ** Parse a complete JSON string. Return 0 on success or non-zero if there ** are any errors. If an error occurs, free all memory associated with ** pParse. ** ** pParse is uninitialized when this routine is called. */ static int jsonParse( JsonParse *pParse, /* Initialize and fill this JsonParse object */ sqlite3_context *pCtx, /* Report errors here */ const char *zJson /* Input JSON text to be parsed */ ){ int i; memset(pParse, 0, sizeof(*pParse)); if( zJson==0 ) return 1; pParse->zJson = zJson; i = jsonParseValue(pParse, 0); if( pParse->oom ) i = -1; if( i>0 ){ assert( pParse->iDepth==0 ); while( fast_isspace(zJson[i]) ) i++; if( zJson[i] ) i = -1; } if( i<=0 ){ if( pCtx!=0 ){ if( pParse->oom ){ sqlite3_result_error_nomem(pCtx); }else{ sqlite3_result_error(pCtx, "malformed JSON", -1); } } jsonParseReset(pParse); return 1; } return 0; } /* Mark node i of pParse as being a child of iParent. Call recursively ** to fill in all the descendants of node i. */ static void jsonParseFillInParentage(JsonParse *pParse, u32 i, u32 iParent){ JsonNode *pNode = &pParse->aNode[i]; u32 j; pParse->aUp[i] = iParent; switch( pNode->eType ){ case JSON_ARRAY: { for(j=1; j<=pNode->n; j += jsonNodeSize(pNode+j)){ jsonParseFillInParentage(pParse, i+j, i); } break; } case JSON_OBJECT: { for(j=1; j<=pNode->n; j += jsonNodeSize(pNode+j+1)+1){ pParse->aUp[i+j] = i; jsonParseFillInParentage(pParse, i+j+1, i); } break; } default: { break; } } } /* ** Compute the parentage of all nodes in a completed parse. */ static int jsonParseFindParents(JsonParse *pParse){ u32 *aUp; assert( pParse->aUp==0 ); aUp = pParse->aUp = sqlite3_malloc64( sizeof(u32)*pParse->nNode ); if( aUp==0 ){ pParse->oom = 1; return SQLITE_NOMEM; } jsonParseFillInParentage(pParse, 0, 0); return SQLITE_OK; } /* ** Magic number used for the JSON parse cache in sqlite3_get_auxdata() */ #define JSON_CACHE_ID (-429938) /* First cache entry */ #define JSON_CACHE_SZ 4 /* Max number of cache entries */ /* ** Obtain a complete parse of the JSON found in the first argument ** of the argv array. Use the sqlite3_get_auxdata() cache for this ** parse if it is available. If the cache is not available or if it ** is no longer valid, parse the JSON again and return the new parse, ** and also register the new parse so that it will be available for ** future sqlite3_get_auxdata() calls. */ static JsonParse *jsonParseCached( sqlite3_context *pCtx, sqlite3_value **argv, sqlite3_context *pErrCtx ){ const char *zJson = (const char*)sqlite3_value_text(argv[0]); int nJson = sqlite3_value_bytes(argv[0]); JsonParse *p; JsonParse *pMatch = 0; int iKey; int iMinKey = 0; u32 iMinHold = 0xffffffff; u32 iMaxHold = 0; if( zJson==0 ) return 0; for(iKey=0; iKeynJson==nJson && memcmp(p->zJson,zJson,nJson)==0 ){ p->nErr = 0; pMatch = p; }else if( p->iHoldiHold; iMinKey = iKey; } if( p->iHold>iMaxHold ){ iMaxHold = p->iHold; } } if( pMatch ){ pMatch->nErr = 0; pMatch->iHold = iMaxHold+1; return pMatch; } p = sqlite3_malloc64( sizeof(*p) + nJson + 1 ); if( p==0 ){ sqlite3_result_error_nomem(pCtx); return 0; } memset(p, 0, sizeof(*p)); p->zJson = (char*)&p[1]; memcpy((char*)p->zJson, zJson, nJson+1); if( jsonParse(p, pErrCtx, p->zJson) ){ sqlite3_free(p); return 0; } p->nJson = nJson; p->iHold = iMaxHold+1; sqlite3_set_auxdata(pCtx, JSON_CACHE_ID+iMinKey, p, (void(*)(void*))jsonParseFree); return (JsonParse*)sqlite3_get_auxdata(pCtx, JSON_CACHE_ID+iMinKey); } /* ** Compare the OBJECT label at pNode against zKey,nKey. Return true on ** a match. */ static int jsonLabelCompare(JsonNode *pNode, const char *zKey, u32 nKey){ assert( pNode->eU==1 ); if( pNode->jnFlags & JNODE_RAW ){ if( pNode->n!=nKey ) return 0; return strncmp(pNode->u.zJContent, zKey, nKey)==0; }else{ if( pNode->n!=nKey+2 ) return 0; return strncmp(pNode->u.zJContent+1, zKey, nKey)==0; } } /* forward declaration */ static JsonNode *jsonLookupAppend(JsonParse*,const char*,int*,const char**); /* ** Search along zPath to find the node specified. Return a pointer ** to that node, or NULL if zPath is malformed or if there is no such ** node. ** ** If pApnd!=0, then try to append new nodes to complete zPath if it is ** possible to do so and if no existing node corresponds to zPath. If ** new nodes are appended *pApnd is set to 1. */ static JsonNode *jsonLookupStep( JsonParse *pParse, /* The JSON to search */ u32 iRoot, /* Begin the search at this node */ const char *zPath, /* The path to search */ int *pApnd, /* Append nodes to complete path if not NULL */ const char **pzErr /* Make *pzErr point to any syntax error in zPath */ ){ u32 i, j, nKey; const char *zKey; JsonNode *pRoot = &pParse->aNode[iRoot]; if( zPath[0]==0 ) return pRoot; if( pRoot->jnFlags & JNODE_REPLACE ) return 0; if( zPath[0]=='.' ){ if( pRoot->eType!=JSON_OBJECT ) return 0; zPath++; if( zPath[0]=='"' ){ zKey = zPath + 1; for(i=1; zPath[i] && zPath[i]!='"'; i++){} nKey = i-1; if( zPath[i] ){ i++; }else{ *pzErr = zPath; return 0; } }else{ zKey = zPath; for(i=0; zPath[i] && zPath[i]!='.' && zPath[i]!='['; i++){} nKey = i; } if( nKey==0 ){ *pzErr = zPath; return 0; } j = 1; for(;;){ while( j<=pRoot->n ){ if( jsonLabelCompare(pRoot+j, zKey, nKey) ){ return jsonLookupStep(pParse, iRoot+j+1, &zPath[i], pApnd, pzErr); } j++; j += jsonNodeSize(&pRoot[j]); } if( (pRoot->jnFlags & JNODE_APPEND)==0 ) break; assert( pRoot->eU==2 ); iRoot += pRoot->u.iAppend; pRoot = &pParse->aNode[iRoot]; j = 1; } if( pApnd ){ u32 iStart, iLabel; JsonNode *pNode; iStart = jsonParseAddNode(pParse, JSON_OBJECT, 2, 0); iLabel = jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); zPath += i; pNode = jsonLookupAppend(pParse, zPath, pApnd, pzErr); if( pParse->oom ) return 0; if( pNode ){ pRoot = &pParse->aNode[iRoot]; assert( pRoot->eU==0 ); pRoot->u.iAppend = iStart - iRoot; pRoot->jnFlags |= JNODE_APPEND; VVA( pRoot->eU = 2 ); pParse->aNode[iLabel].jnFlags |= JNODE_RAW; } return pNode; } }else if( zPath[0]=='[' ){ i = 0; j = 1; while( sqlite3Isdigit(zPath[j]) ){ i = i*10 + zPath[j] - '0'; j++; } if( j<2 || zPath[j]!=']' ){ if( zPath[1]=='#' ){ JsonNode *pBase = pRoot; int iBase = iRoot; if( pRoot->eType!=JSON_ARRAY ) return 0; for(;;){ while( j<=pBase->n ){ if( (pBase[j].jnFlags & JNODE_REMOVE)==0 ) i++; j += jsonNodeSize(&pBase[j]); } if( (pBase->jnFlags & JNODE_APPEND)==0 ) break; assert( pBase->eU==2 ); iBase += pBase->u.iAppend; pBase = &pParse->aNode[iBase]; j = 1; } j = 2; if( zPath[2]=='-' && sqlite3Isdigit(zPath[3]) ){ unsigned int x = 0; j = 3; do{ x = x*10 + zPath[j] - '0'; j++; }while( sqlite3Isdigit(zPath[j]) ); if( x>i ) return 0; i -= x; } if( zPath[j]!=']' ){ *pzErr = zPath; return 0; } }else{ *pzErr = zPath; return 0; } } if( pRoot->eType!=JSON_ARRAY ) return 0; zPath += j + 1; j = 1; for(;;){ while( j<=pRoot->n && (i>0 || (pRoot[j].jnFlags & JNODE_REMOVE)!=0) ){ if( (pRoot[j].jnFlags & JNODE_REMOVE)==0 ) i--; j += jsonNodeSize(&pRoot[j]); } if( (pRoot->jnFlags & JNODE_APPEND)==0 ) break; assert( pRoot->eU==2 ); iRoot += pRoot->u.iAppend; pRoot = &pParse->aNode[iRoot]; j = 1; } if( j<=pRoot->n ){ return jsonLookupStep(pParse, iRoot+j, zPath, pApnd, pzErr); } if( i==0 && pApnd ){ u32 iStart; JsonNode *pNode; iStart = jsonParseAddNode(pParse, JSON_ARRAY, 1, 0); pNode = jsonLookupAppend(pParse, zPath, pApnd, pzErr); if( pParse->oom ) return 0; if( pNode ){ pRoot = &pParse->aNode[iRoot]; assert( pRoot->eU==0 ); pRoot->u.iAppend = iStart - iRoot; pRoot->jnFlags |= JNODE_APPEND; VVA( pRoot->eU = 2 ); } return pNode; } }else{ *pzErr = zPath; } return 0; } /* ** Append content to pParse that will complete zPath. Return a pointer ** to the inserted node, or return NULL if the append fails. */ static JsonNode *jsonLookupAppend( JsonParse *pParse, /* Append content to the JSON parse */ const char *zPath, /* Description of content to append */ int *pApnd, /* Set this flag to 1 */ const char **pzErr /* Make this point to any syntax error */ ){ *pApnd = 1; if( zPath[0]==0 ){ jsonParseAddNode(pParse, JSON_NULL, 0, 0); return pParse->oom ? 0 : &pParse->aNode[pParse->nNode-1]; } if( zPath[0]=='.' ){ jsonParseAddNode(pParse, JSON_OBJECT, 0, 0); }else if( strncmp(zPath,"[0]",3)==0 ){ jsonParseAddNode(pParse, JSON_ARRAY, 0, 0); }else{ return 0; } if( pParse->oom ) return 0; return jsonLookupStep(pParse, pParse->nNode-1, zPath, pApnd, pzErr); } /* ** Return the text of a syntax error message on a JSON path. Space is ** obtained from sqlite3_malloc(). */ static char *jsonPathSyntaxError(const char *zErr){ return sqlite3_mprintf("JSON path error near '%q'", zErr); } /* ** Do a node lookup using zPath. Return a pointer to the node on success. ** Return NULL if not found or if there is an error. ** ** On an error, write an error message into pCtx and increment the ** pParse->nErr counter. ** ** If pApnd!=NULL then try to append missing nodes and set *pApnd = 1 if ** nodes are appended. */ static JsonNode *jsonLookup( JsonParse *pParse, /* The JSON to search */ const char *zPath, /* The path to search */ int *pApnd, /* Append nodes to complete path if not NULL */ sqlite3_context *pCtx /* Report errors here, if not NULL */ ){ const char *zErr = 0; JsonNode *pNode = 0; char *zMsg; if( zPath==0 ) return 0; if( zPath[0]!='$' ){ zErr = zPath; goto lookup_err; } zPath++; pNode = jsonLookupStep(pParse, 0, zPath, pApnd, &zErr); if( zErr==0 ) return pNode; lookup_err: pParse->nErr++; assert( zErr!=0 && pCtx!=0 ); zMsg = jsonPathSyntaxError(zErr); if( zMsg ){ sqlite3_result_error(pCtx, zMsg, -1); sqlite3_free(zMsg); }else{ sqlite3_result_error_nomem(pCtx); } return 0; } /* ** Report the wrong number of arguments for json_insert(), json_replace() ** or json_set(). */ static void jsonWrongNumArgs( sqlite3_context *pCtx, const char *zFuncName ){ char *zMsg = sqlite3_mprintf("json_%s() needs an odd number of arguments", zFuncName); sqlite3_result_error(pCtx, zMsg, -1); sqlite3_free(zMsg); } /* ** Mark all NULL entries in the Object passed in as JNODE_REMOVE. */ static void jsonRemoveAllNulls(JsonNode *pNode){ int i, n; assert( pNode->eType==JSON_OBJECT ); n = pNode->n; for(i=2; i<=n; i += jsonNodeSize(&pNode[i])+1){ switch( pNode[i].eType ){ case JSON_NULL: pNode[i].jnFlags |= JNODE_REMOVE; break; case JSON_OBJECT: jsonRemoveAllNulls(&pNode[i]); break; } } } /**************************************************************************** ** SQL functions used for testing and debugging ****************************************************************************/ #ifdef SQLITE_DEBUG /* ** The json_parse(JSON) function returns a string which describes ** a parse of the JSON provided. Or it returns NULL if JSON is not ** well-formed. */ static void jsonParseFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonString s; /* Output string - not real JSON */ JsonParse x; /* The parse */ u32 i; assert( argc==1 ); if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; jsonParseFindParents(&x); jsonInit(&s, ctx); for(i=0; inNode ); if( argc==2 ){ const char *zPath = (const char*)sqlite3_value_text(argv[1]); pNode = jsonLookup(p, zPath, 0, ctx); }else{ pNode = p->aNode; } if( pNode==0 ){ return; } if( pNode->eType==JSON_ARRAY ){ assert( (pNode->jnFlags & JNODE_APPEND)==0 ); for(i=1; i<=pNode->n; n++){ i += jsonNodeSize(&pNode[i]); } } sqlite3_result_int64(ctx, n); } /* ** Bit values for the flags passed into jsonExtractFunc() or ** jsonSetFunc() via the user-data value. */ #define JSON_JSON 0x01 /* Result is always JSON */ #define JSON_SQL 0x02 /* Result is always SQL */ #define JSON_ABPATH 0x03 /* Allow abbreviated JSON path specs */ #define JSON_ISSET 0x04 /* json_set(), not json_insert() */ /* ** json_extract(JSON, PATH, ...) ** "->"(JSON,PATH) ** "->>"(JSON,PATH) ** ** Return the element described by PATH. Return NULL if that PATH element ** is not found. ** ** If JSON_JSON is set or if more that one PATH argument is supplied then ** always return a JSON representation of the result. If JSON_SQL is set, ** then always return an SQL representation of the result. If neither flag ** is present and argc==2, then return JSON for objects and arrays and SQL ** for all other values. ** ** When multiple PATH arguments are supplied, the result is a JSON array ** containing the result of each PATH. ** ** Abbreviated JSON path expressions are allows if JSON_ABPATH, for ** compatibility with PG. */ static void jsonExtractFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse *p; /* The parse */ JsonNode *pNode; const char *zPath; int flags = SQLITE_PTR_TO_INT(sqlite3_user_data(ctx)); JsonString jx; if( argc<2 ) return; p = jsonParseCached(ctx, argv, ctx); if( p==0 ) return; if( argc==2 ){ /* With a single PATH argument */ zPath = (const char*)sqlite3_value_text(argv[1]); if( zPath==0 ) return; if( flags & JSON_ABPATH ){ if( zPath[0]!='$' ){ /* The -> and ->> operators accept abbreviated PATH arguments. This ** is mostly for compatibility with PostgreSQL, but also for ** convenience. ** ** NUMBER ==> $[NUMBER] // PG compatible ** LABEL ==> $.LABEL // PG compatible ** [NUMBER] ==> $[NUMBER] // Not PG. Purely for convenience */ jsonInit(&jx, ctx); if( sqlite3Isdigit(zPath[0]) ){ jsonAppendRaw(&jx, "$[", 2); jsonAppendRaw(&jx, zPath, (int)strlen(zPath)); jsonAppendRaw(&jx, "]", 2); }else{ jsonAppendRaw(&jx, "$.", 1 + (zPath[0]!='[')); jsonAppendRaw(&jx, zPath, (int)strlen(zPath)); jsonAppendChar(&jx, 0); } pNode = jx.bErr ? 0 : jsonLookup(p, jx.zBuf, 0, ctx); jsonReset(&jx); }else{ pNode = jsonLookup(p, zPath, 0, ctx); } if( pNode ){ if( flags & JSON_JSON ){ jsonReturnJson(pNode, ctx, 0); }else{ jsonReturn(pNode, ctx, 0); sqlite3_result_subtype(ctx, 0); } } }else{ pNode = jsonLookup(p, zPath, 0, ctx); if( p->nErr==0 && pNode ) jsonReturn(pNode, ctx, 0); } }else{ /* Two or more PATH arguments results in a JSON array with each ** element of the array being the value selected by one of the PATHs */ int i; jsonInit(&jx, ctx); jsonAppendChar(&jx, '['); for(i=1; inErr ) break; jsonAppendSeparator(&jx); if( pNode ){ jsonRenderNode(pNode, &jx, 0); }else{ jsonAppendRaw(&jx, "null", 4); } } if( i==argc ){ jsonAppendChar(&jx, ']'); jsonResult(&jx); sqlite3_result_subtype(ctx, JSON_SUBTYPE); } jsonReset(&jx); } } /* This is the RFC 7396 MergePatch algorithm. */ static JsonNode *jsonMergePatch( JsonParse *pParse, /* The JSON parser that contains the TARGET */ u32 iTarget, /* Node of the TARGET in pParse */ JsonNode *pPatch /* The PATCH */ ){ u32 i, j; u32 iRoot; JsonNode *pTarget; if( pPatch->eType!=JSON_OBJECT ){ return pPatch; } assert( iTarget>=0 && iTargetnNode ); pTarget = &pParse->aNode[iTarget]; assert( (pPatch->jnFlags & JNODE_APPEND)==0 ); if( pTarget->eType!=JSON_OBJECT ){ jsonRemoveAllNulls(pPatch); return pPatch; } iRoot = iTarget; for(i=1; in; i += jsonNodeSize(&pPatch[i+1])+1){ u32 nKey; const char *zKey; assert( pPatch[i].eType==JSON_STRING ); assert( pPatch[i].jnFlags & JNODE_LABEL ); assert( pPatch[i].eU==1 ); nKey = pPatch[i].n; zKey = pPatch[i].u.zJContent; assert( (pPatch[i].jnFlags & JNODE_RAW)==0 ); for(j=1; jn; j += jsonNodeSize(&pTarget[j+1])+1 ){ assert( pTarget[j].eType==JSON_STRING ); assert( pTarget[j].jnFlags & JNODE_LABEL ); assert( (pPatch[i].jnFlags & JNODE_RAW)==0 ); if( pTarget[j].n==nKey && strncmp(pTarget[j].u.zJContent,zKey,nKey)==0 ){ if( pTarget[j+1].jnFlags & (JNODE_REMOVE|JNODE_PATCH) ) break; if( pPatch[i+1].eType==JSON_NULL ){ pTarget[j+1].jnFlags |= JNODE_REMOVE; }else{ JsonNode *pNew = jsonMergePatch(pParse, iTarget+j+1, &pPatch[i+1]); if( pNew==0 ) return 0; pTarget = &pParse->aNode[iTarget]; if( pNew!=&pTarget[j+1] ){ assert( pTarget[j+1].eU==0 || pTarget[j+1].eU==1 || pTarget[j+1].eU==2 ); testcase( pTarget[j+1].eU==1 ); testcase( pTarget[j+1].eU==2 ); VVA( pTarget[j+1].eU = 5 ); pTarget[j+1].u.pPatch = pNew; pTarget[j+1].jnFlags |= JNODE_PATCH; } } break; } } if( j>=pTarget->n && pPatch[i+1].eType!=JSON_NULL ){ int iStart, iPatch; iStart = jsonParseAddNode(pParse, JSON_OBJECT, 2, 0); jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); iPatch = jsonParseAddNode(pParse, JSON_TRUE, 0, 0); if( pParse->oom ) return 0; jsonRemoveAllNulls(pPatch); pTarget = &pParse->aNode[iTarget]; assert( pParse->aNode[iRoot].eU==0 || pParse->aNode[iRoot].eU==2 ); testcase( pParse->aNode[iRoot].eU==2 ); pParse->aNode[iRoot].jnFlags |= JNODE_APPEND; VVA( pParse->aNode[iRoot].eU = 2 ); pParse->aNode[iRoot].u.iAppend = iStart - iRoot; iRoot = iStart; assert( pParse->aNode[iPatch].eU==0 ); VVA( pParse->aNode[iPatch].eU = 5 ); pParse->aNode[iPatch].jnFlags |= JNODE_PATCH; pParse->aNode[iPatch].u.pPatch = &pPatch[i+1]; } } return pTarget; } /* ** Implementation of the json_mergepatch(JSON1,JSON2) function. Return a JSON ** object that is the result of running the RFC 7396 MergePatch() algorithm ** on the two arguments. */ static void jsonPatchFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse x; /* The JSON that is being patched */ JsonParse y; /* The patch */ JsonNode *pResult; /* The result of the merge */ UNUSED_PARAMETER(argc); if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; if( jsonParse(&y, ctx, (const char*)sqlite3_value_text(argv[1])) ){ jsonParseReset(&x); return; } pResult = jsonMergePatch(&x, 0, y.aNode); assert( pResult!=0 || x.oom ); if( pResult ){ jsonReturnJson(pResult, ctx, 0); }else{ sqlite3_result_error_nomem(ctx); } jsonParseReset(&x); jsonParseReset(&y); } /* ** Implementation of the json_object(NAME,VALUE,...) function. Return a JSON ** object that contains all name/value given in arguments. Or if any name ** is not a string or if any value is a BLOB, throw an error. */ static void jsonObjectFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ int i; JsonString jx; const char *z; u32 n; if( argc&1 ){ sqlite3_result_error(ctx, "json_object() requires an even number " "of arguments", -1); return; } jsonInit(&jx, ctx); jsonAppendChar(&jx, '{'); for(i=0; ijnFlags |= JNODE_REMOVE; } if( (x.aNode[0].jnFlags & JNODE_REMOVE)==0 ){ jsonReturnJson(x.aNode, ctx, 0); } remove_done: jsonParseReset(&x); } /* ** json_replace(JSON, PATH, VALUE, ...) ** ** Replace the value at PATH with VALUE. If PATH does not already exist, ** this routine is a no-op. If JSON or PATH is malformed, throw an error. */ static void jsonReplaceFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse x; /* The parse */ JsonNode *pNode; const char *zPath; u32 i; if( argc<1 ) return; if( (argc&1)==0 ) { jsonWrongNumArgs(ctx, "replace"); return; } if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; assert( x.nNode ); for(i=1; i<(u32)argc; i+=2){ zPath = (const char*)sqlite3_value_text(argv[i]); pNode = jsonLookup(&x, zPath, 0, ctx); if( x.nErr ) goto replace_err; if( pNode ){ assert( pNode->eU==0 || pNode->eU==1 || pNode->eU==4 ); testcase( pNode->eU!=0 && pNode->eU!=1 ); pNode->jnFlags |= (u8)JNODE_REPLACE; VVA( pNode->eU = 4 ); pNode->u.iReplace = i + 1; } } if( x.aNode[0].jnFlags & JNODE_REPLACE ){ assert( x.aNode[0].eU==4 ); sqlite3_result_value(ctx, argv[x.aNode[0].u.iReplace]); }else{ jsonReturnJson(x.aNode, ctx, argv); } replace_err: jsonParseReset(&x); } /* ** json_set(JSON, PATH, VALUE, ...) ** ** Set the value at PATH to VALUE. Create the PATH if it does not already ** exist. Overwrite existing values that do exist. ** If JSON or PATH is malformed, throw an error. ** ** json_insert(JSON, PATH, VALUE, ...) ** ** Create PATH and initialize it to VALUE. If PATH already exists, this ** routine is a no-op. If JSON or PATH is malformed, throw an error. */ static void jsonSetFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse x; /* The parse */ JsonNode *pNode; const char *zPath; u32 i; int bApnd; int bIsSet = sqlite3_user_data(ctx)!=0; if( argc<1 ) return; if( (argc&1)==0 ) { jsonWrongNumArgs(ctx, bIsSet ? "set" : "insert"); return; } if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; assert( x.nNode ); for(i=1; i<(u32)argc; i+=2){ zPath = (const char*)sqlite3_value_text(argv[i]); bApnd = 0; pNode = jsonLookup(&x, zPath, &bApnd, ctx); if( x.oom ){ sqlite3_result_error_nomem(ctx); goto jsonSetDone; }else if( x.nErr ){ goto jsonSetDone; }else if( pNode && (bApnd || bIsSet) ){ testcase( pNode->eU!=0 && pNode->eU!=1 ); assert( pNode->eU!=3 && pNode->eU!=5 ); VVA( pNode->eU = 4 ); pNode->jnFlags |= (u8)JNODE_REPLACE; pNode->u.iReplace = i + 1; } } if( x.aNode[0].jnFlags & JNODE_REPLACE ){ assert( x.aNode[0].eU==4 ); sqlite3_result_value(ctx, argv[x.aNode[0].u.iReplace]); }else{ jsonReturnJson(x.aNode, ctx, argv); } jsonSetDone: jsonParseReset(&x); } /* ** json_type(JSON) ** json_type(JSON, PATH) ** ** Return the top-level "type" of a JSON string. json_type() raises an ** error if either the JSON or PATH inputs are not well-formed. */ static void jsonTypeFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse *p; /* The parse */ const char *zPath; JsonNode *pNode; p = jsonParseCached(ctx, argv, ctx); if( p==0 ) return; if( argc==2 ){ zPath = (const char*)sqlite3_value_text(argv[1]); pNode = jsonLookup(p, zPath, 0, ctx); }else{ pNode = p->aNode; } if( pNode ){ sqlite3_result_text(ctx, jsonType[pNode->eType], -1, SQLITE_STATIC); } } /* ** json_valid(JSON) ** ** Return 1 if JSON is a well-formed JSON string according to RFC-7159. ** Return 0 otherwise. */ static void jsonValidFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse *p; /* The parse */ UNUSED_PARAMETER(argc); p = jsonParseCached(ctx, argv, 0); sqlite3_result_int(ctx, p!=0); } /**************************************************************************** ** Aggregate SQL function implementations ****************************************************************************/ /* ** json_group_array(VALUE) ** ** Return a JSON array composed of all values in the aggregate. */ static void jsonArrayStep( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonString *pStr; UNUSED_PARAMETER(argc); pStr = (JsonString*)sqlite3_aggregate_context(ctx, sizeof(*pStr)); if( pStr ){ if( pStr->zBuf==0 ){ jsonInit(pStr, ctx); jsonAppendChar(pStr, '['); }else if( pStr->nUsed>1 ){ jsonAppendChar(pStr, ','); } pStr->pCtx = ctx; jsonAppendValue(pStr, argv[0]); } } static void jsonArrayCompute(sqlite3_context *ctx, int isFinal){ JsonString *pStr; pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); if( pStr ){ pStr->pCtx = ctx; jsonAppendChar(pStr, ']'); if( pStr->bErr ){ if( pStr->bErr==1 ) sqlite3_result_error_nomem(ctx); assert( pStr->bStatic ); }else if( isFinal ){ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, pStr->bStatic ? SQLITE_TRANSIENT : sqlite3_free); pStr->bStatic = 1; }else{ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, SQLITE_TRANSIENT); pStr->nUsed--; } }else{ sqlite3_result_text(ctx, "[]", 2, SQLITE_STATIC); } sqlite3_result_subtype(ctx, JSON_SUBTYPE); } static void jsonArrayValue(sqlite3_context *ctx){ jsonArrayCompute(ctx, 0); } static void jsonArrayFinal(sqlite3_context *ctx){ jsonArrayCompute(ctx, 1); } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** This method works for both json_group_array() and json_group_object(). ** It works by removing the first element of the group by searching forward ** to the first comma (",") that is not within a string and deleting all ** text through that comma. */ static void jsonGroupInverse( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ unsigned int i; int inStr = 0; int nNest = 0; char *z; char c; JsonString *pStr; UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); #ifdef NEVER /* pStr is always non-NULL since jsonArrayStep() or jsonObjectStep() will ** always have been called to initalize it */ if( NEVER(!pStr) ) return; #endif z = pStr->zBuf; for(i=1; inUsed && ((c = z[i])!=',' || inStr || nNest); i++){ if( c=='"' ){ inStr = !inStr; }else if( c=='\\' ){ i++; }else if( !inStr ){ if( c=='{' || c=='[' ) nNest++; if( c=='}' || c==']' ) nNest--; } } if( inUsed ){ pStr->nUsed -= i; memmove(&z[1], &z[i+1], (size_t)pStr->nUsed-1); z[pStr->nUsed] = 0; }else{ pStr->nUsed = 1; } } #else # define jsonGroupInverse 0 #endif /* ** json_group_obj(NAME,VALUE) ** ** Return a JSON object composed of all names and values in the aggregate. */ static void jsonObjectStep( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonString *pStr; const char *z; u32 n; UNUSED_PARAMETER(argc); pStr = (JsonString*)sqlite3_aggregate_context(ctx, sizeof(*pStr)); if( pStr ){ if( pStr->zBuf==0 ){ jsonInit(pStr, ctx); jsonAppendChar(pStr, '{'); }else if( pStr->nUsed>1 ){ jsonAppendChar(pStr, ','); } pStr->pCtx = ctx; z = (const char*)sqlite3_value_text(argv[0]); n = (u32)sqlite3_value_bytes(argv[0]); jsonAppendString(pStr, z, n); jsonAppendChar(pStr, ':'); jsonAppendValue(pStr, argv[1]); } } static void jsonObjectCompute(sqlite3_context *ctx, int isFinal){ JsonString *pStr; pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); if( pStr ){ jsonAppendChar(pStr, '}'); if( pStr->bErr ){ if( pStr->bErr==1 ) sqlite3_result_error_nomem(ctx); assert( pStr->bStatic ); }else if( isFinal ){ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, pStr->bStatic ? SQLITE_TRANSIENT : sqlite3_free); pStr->bStatic = 1; }else{ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, SQLITE_TRANSIENT); pStr->nUsed--; } }else{ sqlite3_result_text(ctx, "{}", 2, SQLITE_STATIC); } sqlite3_result_subtype(ctx, JSON_SUBTYPE); } static void jsonObjectValue(sqlite3_context *ctx){ jsonObjectCompute(ctx, 0); } static void jsonObjectFinal(sqlite3_context *ctx){ jsonObjectCompute(ctx, 1); } #ifndef SQLITE_OMIT_VIRTUALTABLE /**************************************************************************** ** The json_each virtual table ****************************************************************************/ typedef struct JsonEachCursor JsonEachCursor; struct JsonEachCursor { sqlite3_vtab_cursor base; /* Base class - must be first */ u32 iRowid; /* The rowid */ u32 iBegin; /* The first node of the scan */ u32 i; /* Index in sParse.aNode[] of current row */ u32 iEnd; /* EOF when i equals or exceeds this value */ u8 eType; /* Type of top-level element */ u8 bRecursive; /* True for json_tree(). False for json_each() */ char *zJson; /* Input JSON */ char *zRoot; /* Path by which to filter zJson */ JsonParse sParse; /* Parse of the input JSON */ }; /* Constructor for the json_each virtual table */ static int jsonEachConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ sqlite3_vtab *pNew; int rc; /* Column numbers */ #define JEACH_KEY 0 #define JEACH_VALUE 1 #define JEACH_TYPE 2 #define JEACH_ATOM 3 #define JEACH_ID 4 #define JEACH_PARENT 5 #define JEACH_FULLKEY 6 #define JEACH_PATH 7 /* The xBestIndex method assumes that the JSON and ROOT columns are ** the last two columns in the table. Should this ever changes, be ** sure to update the xBestIndex method. */ #define JEACH_JSON 8 #define JEACH_ROOT 9 UNUSED_PARAMETER(pzErr); UNUSED_PARAMETER(argv); UNUSED_PARAMETER(argc); UNUSED_PARAMETER(pAux); rc = sqlite3_declare_vtab(db, "CREATE TABLE x(key,value,type,atom,id,parent,fullkey,path," "json HIDDEN,root HIDDEN)"); if( rc==SQLITE_OK ){ pNew = *ppVtab = sqlite3_malloc( sizeof(*pNew) ); if( pNew==0 ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(*pNew)); sqlite3_vtab_config(db, SQLITE_VTAB_INNOCUOUS); } return rc; } /* destructor for json_each virtual table */ static int jsonEachDisconnect(sqlite3_vtab *pVtab){ sqlite3_free(pVtab); return SQLITE_OK; } /* constructor for a JsonEachCursor object for json_each(). */ static int jsonEachOpenEach(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ JsonEachCursor *pCur; UNUSED_PARAMETER(p); pCur = sqlite3_malloc( sizeof(*pCur) ); if( pCur==0 ) return SQLITE_NOMEM; memset(pCur, 0, sizeof(*pCur)); *ppCursor = &pCur->base; return SQLITE_OK; } /* constructor for a JsonEachCursor object for json_tree(). */ static int jsonEachOpenTree(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ int rc = jsonEachOpenEach(p, ppCursor); if( rc==SQLITE_OK ){ JsonEachCursor *pCur = (JsonEachCursor*)*ppCursor; pCur->bRecursive = 1; } return rc; } /* Reset a JsonEachCursor back to its original state. Free any memory ** held. */ static void jsonEachCursorReset(JsonEachCursor *p){ sqlite3_free(p->zJson); sqlite3_free(p->zRoot); jsonParseReset(&p->sParse); p->iRowid = 0; p->i = 0; p->iEnd = 0; p->eType = 0; p->zJson = 0; p->zRoot = 0; } /* Destructor for a jsonEachCursor object */ static int jsonEachClose(sqlite3_vtab_cursor *cur){ JsonEachCursor *p = (JsonEachCursor*)cur; jsonEachCursorReset(p); sqlite3_free(cur); return SQLITE_OK; } /* Return TRUE if the jsonEachCursor object has been advanced off the end ** of the JSON object */ static int jsonEachEof(sqlite3_vtab_cursor *cur){ JsonEachCursor *p = (JsonEachCursor*)cur; return p->i >= p->iEnd; } /* Advance the cursor to the next element for json_tree() */ static int jsonEachNext(sqlite3_vtab_cursor *cur){ JsonEachCursor *p = (JsonEachCursor*)cur; if( p->bRecursive ){ if( p->sParse.aNode[p->i].jnFlags & JNODE_LABEL ) p->i++; p->i++; p->iRowid++; if( p->iiEnd ){ u32 iUp = p->sParse.aUp[p->i]; JsonNode *pUp = &p->sParse.aNode[iUp]; p->eType = pUp->eType; if( pUp->eType==JSON_ARRAY ){ assert( pUp->eU==0 || pUp->eU==3 ); testcase( pUp->eU==3 ); VVA( pUp->eU = 3 ); if( iUp==p->i-1 ){ pUp->u.iKey = 0; }else{ pUp->u.iKey++; } } } }else{ switch( p->eType ){ case JSON_ARRAY: { p->i += jsonNodeSize(&p->sParse.aNode[p->i]); p->iRowid++; break; } case JSON_OBJECT: { p->i += 1 + jsonNodeSize(&p->sParse.aNode[p->i+1]); p->iRowid++; break; } default: { p->i = p->iEnd; break; } } } return SQLITE_OK; } /* Append the name of the path for element i to pStr */ static void jsonEachComputePath( JsonEachCursor *p, /* The cursor */ JsonString *pStr, /* Write the path here */ u32 i /* Path to this element */ ){ JsonNode *pNode, *pUp; u32 iUp; if( i==0 ){ jsonAppendChar(pStr, '$'); return; } iUp = p->sParse.aUp[i]; jsonEachComputePath(p, pStr, iUp); pNode = &p->sParse.aNode[i]; pUp = &p->sParse.aNode[iUp]; if( pUp->eType==JSON_ARRAY ){ assert( pUp->eU==3 || (pUp->eU==0 && pUp->u.iKey==0) ); testcase( pUp->eU==0 ); jsonPrintf(30, pStr, "[%d]", pUp->u.iKey); }else{ assert( pUp->eType==JSON_OBJECT ); if( (pNode->jnFlags & JNODE_LABEL)==0 ) pNode--; assert( pNode->eType==JSON_STRING ); assert( pNode->jnFlags & JNODE_LABEL ); assert( pNode->eU==1 ); jsonPrintf(pNode->n+1, pStr, ".%.*s", pNode->n-2, pNode->u.zJContent+1); } } /* Return the value of a column */ static int jsonEachColumn( sqlite3_vtab_cursor *cur, /* The cursor */ sqlite3_context *ctx, /* First argument to sqlite3_result_...() */ int i /* Which column to return */ ){ JsonEachCursor *p = (JsonEachCursor*)cur; JsonNode *pThis = &p->sParse.aNode[p->i]; switch( i ){ case JEACH_KEY: { if( p->i==0 ) break; if( p->eType==JSON_OBJECT ){ jsonReturn(pThis, ctx, 0); }else if( p->eType==JSON_ARRAY ){ u32 iKey; if( p->bRecursive ){ if( p->iRowid==0 ) break; assert( p->sParse.aNode[p->sParse.aUp[p->i]].eU==3 ); iKey = p->sParse.aNode[p->sParse.aUp[p->i]].u.iKey; }else{ iKey = p->iRowid; } sqlite3_result_int64(ctx, (sqlite3_int64)iKey); } break; } case JEACH_VALUE: { if( pThis->jnFlags & JNODE_LABEL ) pThis++; jsonReturn(pThis, ctx, 0); break; } case JEACH_TYPE: { if( pThis->jnFlags & JNODE_LABEL ) pThis++; sqlite3_result_text(ctx, jsonType[pThis->eType], -1, SQLITE_STATIC); break; } case JEACH_ATOM: { if( pThis->jnFlags & JNODE_LABEL ) pThis++; if( pThis->eType>=JSON_ARRAY ) break; jsonReturn(pThis, ctx, 0); break; } case JEACH_ID: { sqlite3_result_int64(ctx, (sqlite3_int64)p->i + ((pThis->jnFlags & JNODE_LABEL)!=0)); break; } case JEACH_PARENT: { if( p->i>p->iBegin && p->bRecursive ){ sqlite3_result_int64(ctx, (sqlite3_int64)p->sParse.aUp[p->i]); } break; } case JEACH_FULLKEY: { JsonString x; jsonInit(&x, ctx); if( p->bRecursive ){ jsonEachComputePath(p, &x, p->i); }else{ if( p->zRoot ){ jsonAppendRaw(&x, p->zRoot, (int)strlen(p->zRoot)); }else{ jsonAppendChar(&x, '$'); } if( p->eType==JSON_ARRAY ){ jsonPrintf(30, &x, "[%d]", p->iRowid); }else if( p->eType==JSON_OBJECT ){ assert( pThis->eU==1 ); jsonPrintf(pThis->n, &x, ".%.*s", pThis->n-2, pThis->u.zJContent+1); } } jsonResult(&x); break; } case JEACH_PATH: { if( p->bRecursive ){ JsonString x; jsonInit(&x, ctx); jsonEachComputePath(p, &x, p->sParse.aUp[p->i]); jsonResult(&x); break; } /* For json_each() path and root are the same so fall through ** into the root case */ /* no break */ deliberate_fall_through } default: { const char *zRoot = p->zRoot; if( zRoot==0 ) zRoot = "$"; sqlite3_result_text(ctx, zRoot, -1, SQLITE_STATIC); break; } case JEACH_JSON: { assert( i==JEACH_JSON ); sqlite3_result_text(ctx, p->sParse.zJson, -1, SQLITE_STATIC); break; } } return SQLITE_OK; } /* Return the current rowid value */ static int jsonEachRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ JsonEachCursor *p = (JsonEachCursor*)cur; *pRowid = p->iRowid; return SQLITE_OK; } /* The query strategy is to look for an equality constraint on the json ** column. Without such a constraint, the table cannot operate. idxNum is ** 1 if the constraint is found, 3 if the constraint and zRoot are found, ** and 0 otherwise. */ static int jsonEachBestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo ){ int i; /* Loop counter or computed array index */ int aIdx[2]; /* Index of constraints for JSON and ROOT */ int unusableMask = 0; /* Mask of unusable JSON and ROOT constraints */ int idxMask = 0; /* Mask of usable == constraints JSON and ROOT */ const struct sqlite3_index_constraint *pConstraint; /* This implementation assumes that JSON and ROOT are the last two ** columns in the table */ assert( JEACH_ROOT == JEACH_JSON+1 ); UNUSED_PARAMETER(tab); aIdx[0] = aIdx[1] = -1; pConstraint = pIdxInfo->aConstraint; for(i=0; inConstraint; i++, pConstraint++){ int iCol; int iMask; if( pConstraint->iColumn < JEACH_JSON ) continue; iCol = pConstraint->iColumn - JEACH_JSON; assert( iCol==0 || iCol==1 ); testcase( iCol==0 ); iMask = 1 << iCol; if( pConstraint->usable==0 ){ unusableMask |= iMask; }else if( pConstraint->op==SQLITE_INDEX_CONSTRAINT_EQ ){ aIdx[iCol] = i; idxMask |= iMask; } } if( (unusableMask & ~idxMask)!=0 ){ /* If there are any unusable constraints on JSON or ROOT, then reject ** this entire plan */ return SQLITE_CONSTRAINT; } if( aIdx[0]<0 ){ /* No JSON input. Leave estimatedCost at the huge value that it was ** initialized to to discourage the query planner from selecting this ** plan. */ pIdxInfo->idxNum = 0; }else{ pIdxInfo->estimatedCost = 1.0; i = aIdx[0]; pIdxInfo->aConstraintUsage[i].argvIndex = 1; pIdxInfo->aConstraintUsage[i].omit = 1; if( aIdx[1]<0 ){ pIdxInfo->idxNum = 1; /* Only JSON supplied. Plan 1 */ }else{ i = aIdx[1]; pIdxInfo->aConstraintUsage[i].argvIndex = 2; pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->idxNum = 3; /* Both JSON and ROOT are supplied. Plan 3 */ } } return SQLITE_OK; } /* Start a search on a new JSON string */ static int jsonEachFilter( sqlite3_vtab_cursor *cur, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ JsonEachCursor *p = (JsonEachCursor*)cur; const char *z; const char *zRoot = 0; sqlite3_int64 n; UNUSED_PARAMETER(idxStr); UNUSED_PARAMETER(argc); jsonEachCursorReset(p); if( idxNum==0 ) return SQLITE_OK; z = (const char*)sqlite3_value_text(argv[0]); if( z==0 ) return SQLITE_OK; n = sqlite3_value_bytes(argv[0]); p->zJson = sqlite3_malloc64( n+1 ); if( p->zJson==0 ) return SQLITE_NOMEM; memcpy(p->zJson, z, (size_t)n+1); if( jsonParse(&p->sParse, 0, p->zJson) ){ int rc = SQLITE_NOMEM; if( p->sParse.oom==0 ){ sqlite3_free(cur->pVtab->zErrMsg); cur->pVtab->zErrMsg = sqlite3_mprintf("malformed JSON"); if( cur->pVtab->zErrMsg ) rc = SQLITE_ERROR; } jsonEachCursorReset(p); return rc; }else if( p->bRecursive && jsonParseFindParents(&p->sParse) ){ jsonEachCursorReset(p); return SQLITE_NOMEM; }else{ JsonNode *pNode = 0; if( idxNum==3 ){ const char *zErr = 0; zRoot = (const char*)sqlite3_value_text(argv[1]); if( zRoot==0 ) return SQLITE_OK; n = sqlite3_value_bytes(argv[1]); p->zRoot = sqlite3_malloc64( n+1 ); if( p->zRoot==0 ) return SQLITE_NOMEM; memcpy(p->zRoot, zRoot, (size_t)n+1); if( zRoot[0]!='$' ){ zErr = zRoot; }else{ pNode = jsonLookupStep(&p->sParse, 0, p->zRoot+1, 0, &zErr); } if( zErr ){ sqlite3_free(cur->pVtab->zErrMsg); cur->pVtab->zErrMsg = jsonPathSyntaxError(zErr); jsonEachCursorReset(p); return cur->pVtab->zErrMsg ? SQLITE_ERROR : SQLITE_NOMEM; }else if( pNode==0 ){ return SQLITE_OK; } }else{ pNode = p->sParse.aNode; } p->iBegin = p->i = (int)(pNode - p->sParse.aNode); p->eType = pNode->eType; if( p->eType>=JSON_ARRAY ){ assert( pNode->eU==0 ); VVA( pNode->eU = 3 ); pNode->u.iKey = 0; p->iEnd = p->i + pNode->n + 1; if( p->bRecursive ){ p->eType = p->sParse.aNode[p->sParse.aUp[p->i]].eType; if( p->i>0 && (p->sParse.aNode[p->i-1].jnFlags & JNODE_LABEL)!=0 ){ p->i--; } }else{ p->i++; } }else{ p->iEnd = p->i+1; } } return SQLITE_OK; } /* The methods of the json_each virtual table */ static sqlite3_module jsonEachModule = { 0, /* iVersion */ 0, /* xCreate */ jsonEachConnect, /* xConnect */ jsonEachBestIndex, /* xBestIndex */ jsonEachDisconnect, /* xDisconnect */ 0, /* xDestroy */ jsonEachOpenEach, /* xOpen - open a cursor */ jsonEachClose, /* xClose - close a cursor */ jsonEachFilter, /* xFilter - configure scan constraints */ jsonEachNext, /* xNext - advance a cursor */ jsonEachEof, /* xEof - check for end of scan */ jsonEachColumn, /* xColumn - read data */ jsonEachRowid, /* xRowid - read data */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; /* The methods of the json_tree virtual table. */ static sqlite3_module jsonTreeModule = { 0, /* iVersion */ 0, /* xCreate */ jsonEachConnect, /* xConnect */ jsonEachBestIndex, /* xBestIndex */ jsonEachDisconnect, /* xDisconnect */ 0, /* xDestroy */ jsonEachOpenTree, /* xOpen - open a cursor */ jsonEachClose, /* xClose - close a cursor */ jsonEachFilter, /* xFilter - configure scan constraints */ jsonEachNext, /* xNext - advance a cursor */ jsonEachEof, /* xEof - check for end of scan */ jsonEachColumn, /* xColumn - read data */ jsonEachRowid, /* xRowid - read data */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; #endif /* SQLITE_OMIT_VIRTUALTABLE */ #endif /* !defined(SQLITE_OMIT_JSON) */ /* ** Register JSON functions. */ SQLITE_PRIVATE void sqlite3RegisterJsonFunctions(void){ #ifndef SQLITE_OMIT_JSON static FuncDef aJsonFunc[] = { JFUNCTION(json, 1, 0, jsonRemoveFunc), JFUNCTION(json_array, -1, 0, jsonArrayFunc), JFUNCTION(json_array_length, 1, 0, jsonArrayLengthFunc), JFUNCTION(json_array_length, 2, 0, jsonArrayLengthFunc), JFUNCTION(json_extract, -1, 0, jsonExtractFunc), JFUNCTION(->, 2, JSON_JSON, jsonExtractFunc), JFUNCTION(->>, 2, JSON_SQL, jsonExtractFunc), JFUNCTION(json_insert, -1, 0, jsonSetFunc), JFUNCTION(json_object, -1, 0, jsonObjectFunc), JFUNCTION(json_patch, 2, 0, jsonPatchFunc), JFUNCTION(json_quote, 1, 0, jsonQuoteFunc), JFUNCTION(json_remove, -1, 0, jsonRemoveFunc), JFUNCTION(json_replace, -1, 0, jsonReplaceFunc), JFUNCTION(json_set, -1, JSON_ISSET, jsonSetFunc), JFUNCTION(json_type, 1, 0, jsonTypeFunc), JFUNCTION(json_type, 2, 0, jsonTypeFunc), JFUNCTION(json_valid, 1, 0, jsonValidFunc), #if SQLITE_DEBUG JFUNCTION(json_parse, 1, 0, jsonParseFunc), JFUNCTION(json_test1, 1, 0, jsonTest1Func), #endif WAGGREGATE(json_group_array, 1, 0, 0, jsonArrayStep, jsonArrayFinal, jsonArrayValue, jsonGroupInverse, SQLITE_SUBTYPE|SQLITE_UTF8|SQLITE_DETERMINISTIC|SQLITE_INNOCUOUS), WAGGREGATE(json_group_object, 2, 0, 0, jsonObjectStep, jsonObjectFinal, jsonObjectValue, jsonGroupInverse, SQLITE_SUBTYPE|SQLITE_UTF8|SQLITE_DETERMINISTIC|SQLITE_INNOCUOUS) }; sqlite3InsertBuiltinFuncs(aJsonFunc, ArraySize(aJsonFunc)); #endif } #if !defined(SQLITE_OMIT_VIRTUALTABLE) && !defined(SQLITE_OMIT_JSON) /* ** Register the JSON table-valued functions */ SQLITE_PRIVATE int sqlite3JsonTableFunctions(sqlite3 *db){ int rc = SQLITE_OK; static const struct { const char *zName; sqlite3_module *pModule; } aMod[] = { { "json_each", &jsonEachModule }, { "json_tree", &jsonTreeModule }, }; unsigned int i; for(i=0; i */ /* #include */ /* #include */ /* #include */ /* The following macro is used to suppress compiler warnings. */ #ifndef UNUSED_PARAMETER # define UNUSED_PARAMETER(x) (void)(x) #endif typedef struct Rtree Rtree; typedef struct RtreeCursor RtreeCursor; typedef struct RtreeNode RtreeNode; typedef struct RtreeCell RtreeCell; typedef struct RtreeConstraint RtreeConstraint; typedef struct RtreeMatchArg RtreeMatchArg; typedef struct RtreeGeomCallback RtreeGeomCallback; typedef union RtreeCoord RtreeCoord; typedef struct RtreeSearchPoint RtreeSearchPoint; /* The rtree may have between 1 and RTREE_MAX_DIMENSIONS dimensions. */ #define RTREE_MAX_DIMENSIONS 5 /* Maximum number of auxiliary columns */ #define RTREE_MAX_AUX_COLUMN 100 /* Size of hash table Rtree.aHash. This hash table is not expected to ** ever contain very many entries, so a fixed number of buckets is ** used. */ #define HASHSIZE 97 /* The xBestIndex method of this virtual table requires an estimate of ** the number of rows in the virtual table to calculate the costs of ** various strategies. If possible, this estimate is loaded from the ** sqlite_stat1 table (with RTREE_MIN_ROWEST as a hard-coded minimum). ** Otherwise, if no sqlite_stat1 entry is available, use ** RTREE_DEFAULT_ROWEST. */ #define RTREE_DEFAULT_ROWEST 1048576 #define RTREE_MIN_ROWEST 100 /* ** An rtree virtual-table object. */ struct Rtree { sqlite3_vtab base; /* Base class. Must be first */ sqlite3 *db; /* Host database connection */ int iNodeSize; /* Size in bytes of each node in the node table */ u8 nDim; /* Number of dimensions */ u8 nDim2; /* Twice the number of dimensions */ u8 eCoordType; /* RTREE_COORD_REAL32 or RTREE_COORD_INT32 */ u8 nBytesPerCell; /* Bytes consumed per cell */ u8 inWrTrans; /* True if inside write transaction */ u8 nAux; /* # of auxiliary columns in %_rowid */ #ifdef SQLITE_ENABLE_GEOPOLY u8 nAuxNotNull; /* Number of initial not-null aux columns */ #endif #ifdef SQLITE_DEBUG u8 bCorrupt; /* Shadow table corruption detected */ #endif int iDepth; /* Current depth of the r-tree structure */ char *zDb; /* Name of database containing r-tree table */ char *zName; /* Name of r-tree table */ u32 nBusy; /* Current number of users of this structure */ i64 nRowEst; /* Estimated number of rows in this table */ u32 nCursor; /* Number of open cursors */ u32 nNodeRef; /* Number RtreeNodes with positive nRef */ char *zReadAuxSql; /* SQL for statement to read aux data */ /* List of nodes removed during a CondenseTree operation. List is ** linked together via the pointer normally used for hash chains - ** RtreeNode.pNext. RtreeNode.iNode stores the depth of the sub-tree ** headed by the node (leaf nodes have RtreeNode.iNode==0). */ RtreeNode *pDeleted; int iReinsertHeight; /* Height of sub-trees Reinsert() has run on */ /* Blob I/O on xxx_node */ sqlite3_blob *pNodeBlob; /* Statements to read/write/delete a record from xxx_node */ sqlite3_stmt *pWriteNode; sqlite3_stmt *pDeleteNode; /* Statements to read/write/delete a record from xxx_rowid */ sqlite3_stmt *pReadRowid; sqlite3_stmt *pWriteRowid; sqlite3_stmt *pDeleteRowid; /* Statements to read/write/delete a record from xxx_parent */ sqlite3_stmt *pReadParent; sqlite3_stmt *pWriteParent; sqlite3_stmt *pDeleteParent; /* Statement for writing to the "aux:" fields, if there are any */ sqlite3_stmt *pWriteAux; RtreeNode *aHash[HASHSIZE]; /* Hash table of in-memory nodes. */ }; /* Possible values for Rtree.eCoordType: */ #define RTREE_COORD_REAL32 0 #define RTREE_COORD_INT32 1 /* ** If SQLITE_RTREE_INT_ONLY is defined, then this virtual table will ** only deal with integer coordinates. No floating point operations ** will be done. */ #ifdef SQLITE_RTREE_INT_ONLY typedef sqlite3_int64 RtreeDValue; /* High accuracy coordinate */ typedef int RtreeValue; /* Low accuracy coordinate */ # define RTREE_ZERO 0 #else typedef double RtreeDValue; /* High accuracy coordinate */ typedef float RtreeValue; /* Low accuracy coordinate */ # define RTREE_ZERO 0.0 #endif /* ** Set the Rtree.bCorrupt flag */ #ifdef SQLITE_DEBUG # define RTREE_IS_CORRUPT(X) ((X)->bCorrupt = 1) #else # define RTREE_IS_CORRUPT(X) #endif /* ** When doing a search of an r-tree, instances of the following structure ** record intermediate results from the tree walk. ** ** The id is always a node-id. For iLevel>=1 the id is the node-id of ** the node that the RtreeSearchPoint represents. When iLevel==0, however, ** the id is of the parent node and the cell that RtreeSearchPoint ** represents is the iCell-th entry in the parent node. */ struct RtreeSearchPoint { RtreeDValue rScore; /* The score for this node. Smallest goes first. */ sqlite3_int64 id; /* Node ID */ u8 iLevel; /* 0=entries. 1=leaf node. 2+ for higher */ u8 eWithin; /* PARTLY_WITHIN or FULLY_WITHIN */ u8 iCell; /* Cell index within the node */ }; /* ** The minimum number of cells allowed for a node is a third of the ** maximum. In Gutman's notation: ** ** m = M/3 ** ** If an R*-tree "Reinsert" operation is required, the same number of ** cells are removed from the overfull node and reinserted into the tree. */ #define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3) #define RTREE_REINSERT(p) RTREE_MINCELLS(p) #define RTREE_MAXCELLS 51 /* ** The smallest possible node-size is (512-64)==448 bytes. And the largest ** supported cell size is 48 bytes (8 byte rowid + ten 4 byte coordinates). ** Therefore all non-root nodes must contain at least 3 entries. Since ** 3^40 is greater than 2^64, an r-tree structure always has a depth of ** 40 or less. */ #define RTREE_MAX_DEPTH 40 /* ** Number of entries in the cursor RtreeNode cache. The first entry is ** used to cache the RtreeNode for RtreeCursor.sPoint. The remaining ** entries cache the RtreeNode for the first elements of the priority queue. */ #define RTREE_CACHE_SZ 5 /* ** An rtree cursor object. */ struct RtreeCursor { sqlite3_vtab_cursor base; /* Base class. Must be first */ u8 atEOF; /* True if at end of search */ u8 bPoint; /* True if sPoint is valid */ u8 bAuxValid; /* True if pReadAux is valid */ int iStrategy; /* Copy of idxNum search parameter */ int nConstraint; /* Number of entries in aConstraint */ RtreeConstraint *aConstraint; /* Search constraints. */ int nPointAlloc; /* Number of slots allocated for aPoint[] */ int nPoint; /* Number of slots used in aPoint[] */ int mxLevel; /* iLevel value for root of the tree */ RtreeSearchPoint *aPoint; /* Priority queue for search points */ sqlite3_stmt *pReadAux; /* Statement to read aux-data */ RtreeSearchPoint sPoint; /* Cached next search point */ RtreeNode *aNode[RTREE_CACHE_SZ]; /* Rtree node cache */ u32 anQueue[RTREE_MAX_DEPTH+1]; /* Number of queued entries by iLevel */ }; /* Return the Rtree of a RtreeCursor */ #define RTREE_OF_CURSOR(X) ((Rtree*)((X)->base.pVtab)) /* ** A coordinate can be either a floating point number or a integer. All ** coordinates within a single R-Tree are always of the same time. */ union RtreeCoord { RtreeValue f; /* Floating point value */ int i; /* Integer value */ u32 u; /* Unsigned for byte-order conversions */ }; /* ** The argument is an RtreeCoord. Return the value stored within the RtreeCoord ** formatted as a RtreeDValue (double or int64). This macro assumes that local ** variable pRtree points to the Rtree structure associated with the ** RtreeCoord. */ #ifdef SQLITE_RTREE_INT_ONLY # define DCOORD(coord) ((RtreeDValue)coord.i) #else # define DCOORD(coord) ( \ (pRtree->eCoordType==RTREE_COORD_REAL32) ? \ ((double)coord.f) : \ ((double)coord.i) \ ) #endif /* ** A search constraint. */ struct RtreeConstraint { int iCoord; /* Index of constrained coordinate */ int op; /* Constraining operation */ union { RtreeDValue rValue; /* Constraint value. */ int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*); int (*xQueryFunc)(sqlite3_rtree_query_info*); } u; sqlite3_rtree_query_info *pInfo; /* xGeom and xQueryFunc argument */ }; /* Possible values for RtreeConstraint.op */ #define RTREE_EQ 0x41 /* A */ #define RTREE_LE 0x42 /* B */ #define RTREE_LT 0x43 /* C */ #define RTREE_GE 0x44 /* D */ #define RTREE_GT 0x45 /* E */ #define RTREE_MATCH 0x46 /* F: Old-style sqlite3_rtree_geometry_callback() */ #define RTREE_QUERY 0x47 /* G: New-style sqlite3_rtree_query_callback() */ /* Special operators available only on cursors. Needs to be consecutive ** with the normal values above, but must be less than RTREE_MATCH. These ** are used in the cursor for contraints such as x=NULL (RTREE_FALSE) or ** x<'xyz' (RTREE_TRUE) */ #define RTREE_TRUE 0x3f /* ? */ #define RTREE_FALSE 0x40 /* @ */ /* ** An rtree structure node. */ struct RtreeNode { RtreeNode *pParent; /* Parent node */ i64 iNode; /* The node number */ int nRef; /* Number of references to this node */ int isDirty; /* True if the node needs to be written to disk */ u8 *zData; /* Content of the node, as should be on disk */ RtreeNode *pNext; /* Next node in this hash collision chain */ }; /* Return the number of cells in a node */ #define NCELL(pNode) readInt16(&(pNode)->zData[2]) /* ** A single cell from a node, deserialized */ struct RtreeCell { i64 iRowid; /* Node or entry ID */ RtreeCoord aCoord[RTREE_MAX_DIMENSIONS*2]; /* Bounding box coordinates */ }; /* ** This object becomes the sqlite3_user_data() for the SQL functions ** that are created by sqlite3_rtree_geometry_callback() and ** sqlite3_rtree_query_callback() and which appear on the right of MATCH ** operators in order to constrain a search. ** ** xGeom and xQueryFunc are the callback functions. Exactly one of ** xGeom and xQueryFunc fields is non-NULL, depending on whether the ** SQL function was created using sqlite3_rtree_geometry_callback() or ** sqlite3_rtree_query_callback(). ** ** This object is deleted automatically by the destructor mechanism in ** sqlite3_create_function_v2(). */ struct RtreeGeomCallback { int (*xGeom)(sqlite3_rtree_geometry*, int, RtreeDValue*, int*); int (*xQueryFunc)(sqlite3_rtree_query_info*); void (*xDestructor)(void*); void *pContext; }; /* ** An instance of this structure (in the form of a BLOB) is returned by ** the SQL functions that sqlite3_rtree_geometry_callback() and ** sqlite3_rtree_query_callback() create, and is read as the right-hand ** operand to the MATCH operator of an R-Tree. */ struct RtreeMatchArg { u32 iSize; /* Size of this object */ RtreeGeomCallback cb; /* Info about the callback functions */ int nParam; /* Number of parameters to the SQL function */ sqlite3_value **apSqlParam; /* Original SQL parameter values */ RtreeDValue aParam[1]; /* Values for parameters to the SQL function */ }; #ifndef MAX # define MAX(x,y) ((x) < (y) ? (y) : (x)) #endif #ifndef MIN # define MIN(x,y) ((x) > (y) ? (y) : (x)) #endif /* What version of GCC is being used. 0 means GCC is not being used . ** Note that the GCC_VERSION macro will also be set correctly when using ** clang, since clang works hard to be gcc compatible. So the gcc ** optimizations will also work when compiling with clang. */ #ifndef GCC_VERSION #if defined(__GNUC__) && !defined(SQLITE_DISABLE_INTRINSIC) # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif #endif /* The testcase() macro should already be defined in the amalgamation. If ** it is not, make it a no-op. */ #ifndef SQLITE_AMALGAMATION # if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_DEBUG) unsigned int sqlite3RtreeTestcase = 0; # define testcase(X) if( X ){ sqlite3RtreeTestcase += __LINE__; } # else # define testcase(X) # endif #endif /* ** Make sure that the compiler intrinsics we desire are enabled when ** compiling with an appropriate version of MSVC unless prevented by ** the SQLITE_DISABLE_INTRINSIC define. */ #if !defined(SQLITE_DISABLE_INTRINSIC) # if defined(_MSC_VER) && _MSC_VER>=1400 # if !defined(_WIN32_WCE) /* # include */ # pragma intrinsic(_byteswap_ulong) # pragma intrinsic(_byteswap_uint64) # else /* # include */ # endif # endif #endif /* ** Macros to determine whether the machine is big or little endian, ** and whether or not that determination is run-time or compile-time. ** ** For best performance, an attempt is made to guess at the byte-order ** using C-preprocessor macros. If that is unsuccessful, or if ** -DSQLITE_RUNTIME_BYTEORDER=1 is set, then byte-order is determined ** at run-time. */ #ifndef SQLITE_BYTEORDER #if defined(i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || defined(_M_X64) || \ defined(_M_AMD64) || defined(_M_ARM) || defined(__x86) || \ defined(__arm__) # define SQLITE_BYTEORDER 1234 #elif defined(sparc) || defined(__ppc__) # define SQLITE_BYTEORDER 4321 #else # define SQLITE_BYTEORDER 0 /* 0 means "unknown at compile-time" */ #endif #endif /* What version of MSVC is being used. 0 means MSVC is not being used */ #ifndef MSVC_VERSION #if defined(_MSC_VER) && !defined(SQLITE_DISABLE_INTRINSIC) # define MSVC_VERSION _MSC_VER #else # define MSVC_VERSION 0 #endif #endif /* ** Functions to deserialize a 16 bit integer, 32 bit real number and ** 64 bit integer. The deserialized value is returned. */ static int readInt16(u8 *p){ return (p[0]<<8) + p[1]; } static void readCoord(u8 *p, RtreeCoord *pCoord){ assert( ((((char*)p) - (char*)0)&3)==0 ); /* p is always 4-byte aligned */ #if SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 pCoord->u = _byteswap_ulong(*(u32*)p); #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 pCoord->u = __builtin_bswap32(*(u32*)p); #elif SQLITE_BYTEORDER==4321 pCoord->u = *(u32*)p; #else pCoord->u = ( (((u32)p[0]) << 24) + (((u32)p[1]) << 16) + (((u32)p[2]) << 8) + (((u32)p[3]) << 0) ); #endif } static i64 readInt64(u8 *p){ #if SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 u64 x; memcpy(&x, p, 8); return (i64)_byteswap_uint64(x); #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 u64 x; memcpy(&x, p, 8); return (i64)__builtin_bswap64(x); #elif SQLITE_BYTEORDER==4321 i64 x; memcpy(&x, p, 8); return x; #else return (i64)( (((u64)p[0]) << 56) + (((u64)p[1]) << 48) + (((u64)p[2]) << 40) + (((u64)p[3]) << 32) + (((u64)p[4]) << 24) + (((u64)p[5]) << 16) + (((u64)p[6]) << 8) + (((u64)p[7]) << 0) ); #endif } /* ** Functions to serialize a 16 bit integer, 32 bit real number and ** 64 bit integer. The value returned is the number of bytes written ** to the argument buffer (always 2, 4 and 8 respectively). */ static void writeInt16(u8 *p, int i){ p[0] = (i>> 8)&0xFF; p[1] = (i>> 0)&0xFF; } static int writeCoord(u8 *p, RtreeCoord *pCoord){ u32 i; assert( ((((char*)p) - (char*)0)&3)==0 ); /* p is always 4-byte aligned */ assert( sizeof(RtreeCoord)==4 ); assert( sizeof(u32)==4 ); #if SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 i = __builtin_bswap32(pCoord->u); memcpy(p, &i, 4); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 i = _byteswap_ulong(pCoord->u); memcpy(p, &i, 4); #elif SQLITE_BYTEORDER==4321 i = pCoord->u; memcpy(p, &i, 4); #else i = pCoord->u; p[0] = (i>>24)&0xFF; p[1] = (i>>16)&0xFF; p[2] = (i>> 8)&0xFF; p[3] = (i>> 0)&0xFF; #endif return 4; } static int writeInt64(u8 *p, i64 i){ #if SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 i = (i64)__builtin_bswap64((u64)i); memcpy(p, &i, 8); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 i = (i64)_byteswap_uint64((u64)i); memcpy(p, &i, 8); #elif SQLITE_BYTEORDER==4321 memcpy(p, &i, 8); #else p[0] = (i>>56)&0xFF; p[1] = (i>>48)&0xFF; p[2] = (i>>40)&0xFF; p[3] = (i>>32)&0xFF; p[4] = (i>>24)&0xFF; p[5] = (i>>16)&0xFF; p[6] = (i>> 8)&0xFF; p[7] = (i>> 0)&0xFF; #endif return 8; } /* ** Increment the reference count of node p. */ static void nodeReference(RtreeNode *p){ if( p ){ assert( p->nRef>0 ); p->nRef++; } } /* ** Clear the content of node p (set all bytes to 0x00). */ static void nodeZero(Rtree *pRtree, RtreeNode *p){ memset(&p->zData[2], 0, pRtree->iNodeSize-2); p->isDirty = 1; } /* ** Given a node number iNode, return the corresponding key to use ** in the Rtree.aHash table. */ static unsigned int nodeHash(i64 iNode){ return ((unsigned)iNode) % HASHSIZE; } /* ** Search the node hash table for node iNode. If found, return a pointer ** to it. Otherwise, return 0. */ static RtreeNode *nodeHashLookup(Rtree *pRtree, i64 iNode){ RtreeNode *p; for(p=pRtree->aHash[nodeHash(iNode)]; p && p->iNode!=iNode; p=p->pNext); return p; } /* ** Add node pNode to the node hash table. */ static void nodeHashInsert(Rtree *pRtree, RtreeNode *pNode){ int iHash; assert( pNode->pNext==0 ); iHash = nodeHash(pNode->iNode); pNode->pNext = pRtree->aHash[iHash]; pRtree->aHash[iHash] = pNode; } /* ** Remove node pNode from the node hash table. */ static void nodeHashDelete(Rtree *pRtree, RtreeNode *pNode){ RtreeNode **pp; if( pNode->iNode!=0 ){ pp = &pRtree->aHash[nodeHash(pNode->iNode)]; for( ; (*pp)!=pNode; pp = &(*pp)->pNext){ assert(*pp); } *pp = pNode->pNext; pNode->pNext = 0; } } /* ** Allocate and return new r-tree node. Initially, (RtreeNode.iNode==0), ** indicating that node has not yet been assigned a node number. It is ** assigned a node number when nodeWrite() is called to write the ** node contents out to the database. */ static RtreeNode *nodeNew(Rtree *pRtree, RtreeNode *pParent){ RtreeNode *pNode; pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode) + pRtree->iNodeSize); if( pNode ){ memset(pNode, 0, sizeof(RtreeNode) + pRtree->iNodeSize); pNode->zData = (u8 *)&pNode[1]; pNode->nRef = 1; pRtree->nNodeRef++; pNode->pParent = pParent; pNode->isDirty = 1; nodeReference(pParent); } return pNode; } /* ** Clear the Rtree.pNodeBlob object */ static void nodeBlobReset(Rtree *pRtree){ if( pRtree->pNodeBlob && pRtree->inWrTrans==0 && pRtree->nCursor==0 ){ sqlite3_blob *pBlob = pRtree->pNodeBlob; pRtree->pNodeBlob = 0; sqlite3_blob_close(pBlob); } } /* ** Obtain a reference to an r-tree node. */ static int nodeAcquire( Rtree *pRtree, /* R-tree structure */ i64 iNode, /* Node number to load */ RtreeNode *pParent, /* Either the parent node or NULL */ RtreeNode **ppNode /* OUT: Acquired node */ ){ int rc = SQLITE_OK; RtreeNode *pNode = 0; /* Check if the requested node is already in the hash table. If so, ** increase its reference count and return it. */ if( (pNode = nodeHashLookup(pRtree, iNode))!=0 ){ if( pParent && pParent!=pNode->pParent ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } pNode->nRef++; *ppNode = pNode; return SQLITE_OK; } if( pRtree->pNodeBlob ){ sqlite3_blob *pBlob = pRtree->pNodeBlob; pRtree->pNodeBlob = 0; rc = sqlite3_blob_reopen(pBlob, iNode); pRtree->pNodeBlob = pBlob; if( rc ){ nodeBlobReset(pRtree); if( rc==SQLITE_NOMEM ) return SQLITE_NOMEM; } } if( pRtree->pNodeBlob==0 ){ char *zTab = sqlite3_mprintf("%s_node", pRtree->zName); if( zTab==0 ) return SQLITE_NOMEM; rc = sqlite3_blob_open(pRtree->db, pRtree->zDb, zTab, "data", iNode, 0, &pRtree->pNodeBlob); sqlite3_free(zTab); } if( rc ){ nodeBlobReset(pRtree); *ppNode = 0; /* If unable to open an sqlite3_blob on the desired row, that can only ** be because the shadow tables hold erroneous data. */ if( rc==SQLITE_ERROR ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } }else if( pRtree->iNodeSize==sqlite3_blob_bytes(pRtree->pNodeBlob) ){ pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode)+pRtree->iNodeSize); if( !pNode ){ rc = SQLITE_NOMEM; }else{ pNode->pParent = pParent; pNode->zData = (u8 *)&pNode[1]; pNode->nRef = 1; pRtree->nNodeRef++; pNode->iNode = iNode; pNode->isDirty = 0; pNode->pNext = 0; rc = sqlite3_blob_read(pRtree->pNodeBlob, pNode->zData, pRtree->iNodeSize, 0); } } /* If the root node was just loaded, set pRtree->iDepth to the height ** of the r-tree structure. A height of zero means all data is stored on ** the root node. A height of one means the children of the root node ** are the leaves, and so on. If the depth as specified on the root node ** is greater than RTREE_MAX_DEPTH, the r-tree structure must be corrupt. */ if( rc==SQLITE_OK && pNode && iNode==1 ){ pRtree->iDepth = readInt16(pNode->zData); if( pRtree->iDepth>RTREE_MAX_DEPTH ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } } /* If no error has occurred so far, check if the "number of entries" ** field on the node is too large. If so, set the return code to ** SQLITE_CORRUPT_VTAB. */ if( pNode && rc==SQLITE_OK ){ if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } } if( rc==SQLITE_OK ){ if( pNode!=0 ){ nodeReference(pParent); nodeHashInsert(pRtree, pNode); }else{ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } *ppNode = pNode; }else{ if( pNode ){ pRtree->nNodeRef--; sqlite3_free(pNode); } *ppNode = 0; } return rc; } /* ** Overwrite cell iCell of node pNode with the contents of pCell. */ static void nodeOverwriteCell( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node into which the cell is to be written */ RtreeCell *pCell, /* The cell to write */ int iCell /* Index into pNode into which pCell is written */ ){ int ii; u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell]; p += writeInt64(p, pCell->iRowid); for(ii=0; iinDim2; ii++){ p += writeCoord(p, &pCell->aCoord[ii]); } pNode->isDirty = 1; } /* ** Remove the cell with index iCell from node pNode. */ static void nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell){ u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell]; u8 *pSrc = &pDst[pRtree->nBytesPerCell]; int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell; memmove(pDst, pSrc, nByte); writeInt16(&pNode->zData[2], NCELL(pNode)-1); pNode->isDirty = 1; } /* ** Insert the contents of cell pCell into node pNode. If the insert ** is successful, return SQLITE_OK. ** ** If there is not enough free space in pNode, return SQLITE_FULL. */ static int nodeInsertCell( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* Write new cell into this node */ RtreeCell *pCell /* The cell to be inserted */ ){ int nCell; /* Current number of cells in pNode */ int nMaxCell; /* Maximum number of cells for pNode */ nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell; nCell = NCELL(pNode); assert( nCell<=nMaxCell ); if( nCellzData[2], nCell+1); pNode->isDirty = 1; } return (nCell==nMaxCell); } /* ** If the node is dirty, write it out to the database. */ static int nodeWrite(Rtree *pRtree, RtreeNode *pNode){ int rc = SQLITE_OK; if( pNode->isDirty ){ sqlite3_stmt *p = pRtree->pWriteNode; if( pNode->iNode ){ sqlite3_bind_int64(p, 1, pNode->iNode); }else{ sqlite3_bind_null(p, 1); } sqlite3_bind_blob(p, 2, pNode->zData, pRtree->iNodeSize, SQLITE_STATIC); sqlite3_step(p); pNode->isDirty = 0; rc = sqlite3_reset(p); sqlite3_bind_null(p, 2); if( pNode->iNode==0 && rc==SQLITE_OK ){ pNode->iNode = sqlite3_last_insert_rowid(pRtree->db); nodeHashInsert(pRtree, pNode); } } return rc; } /* ** Release a reference to a node. If the node is dirty and the reference ** count drops to zero, the node data is written to the database. */ static int nodeRelease(Rtree *pRtree, RtreeNode *pNode){ int rc = SQLITE_OK; if( pNode ){ assert( pNode->nRef>0 ); assert( pRtree->nNodeRef>0 ); pNode->nRef--; if( pNode->nRef==0 ){ pRtree->nNodeRef--; if( pNode->iNode==1 ){ pRtree->iDepth = -1; } if( pNode->pParent ){ rc = nodeRelease(pRtree, pNode->pParent); } if( rc==SQLITE_OK ){ rc = nodeWrite(pRtree, pNode); } nodeHashDelete(pRtree, pNode); sqlite3_free(pNode); } } return rc; } /* ** Return the 64-bit integer value associated with cell iCell of ** node pNode. If pNode is a leaf node, this is a rowid. If it is ** an internal node, then the 64-bit integer is a child page number. */ static i64 nodeGetRowid( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node from which to extract the ID */ int iCell /* The cell index from which to extract the ID */ ){ assert( iCellzData[4 + pRtree->nBytesPerCell*iCell]); } /* ** Return coordinate iCoord from cell iCell in node pNode. */ static void nodeGetCoord( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node from which to extract a coordinate */ int iCell, /* The index of the cell within the node */ int iCoord, /* Which coordinate to extract */ RtreeCoord *pCoord /* OUT: Space to write result to */ ){ readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord); } /* ** Deserialize cell iCell of node pNode. Populate the structure pointed ** to by pCell with the results. */ static void nodeGetCell( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node containing the cell to be read */ int iCell, /* Index of the cell within the node */ RtreeCell *pCell /* OUT: Write the cell contents here */ ){ u8 *pData; RtreeCoord *pCoord; int ii = 0; pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell); pData = pNode->zData + (12 + pRtree->nBytesPerCell*iCell); pCoord = pCell->aCoord; do{ readCoord(pData, &pCoord[ii]); readCoord(pData+4, &pCoord[ii+1]); pData += 8; ii += 2; }while( iinDim2 ); } /* Forward declaration for the function that does the work of ** the virtual table module xCreate() and xConnect() methods. */ static int rtreeInit( sqlite3 *, void *, int, const char *const*, sqlite3_vtab **, char **, int ); /* ** Rtree virtual table module xCreate method. */ static int rtreeCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1); } /* ** Rtree virtual table module xConnect method. */ static int rtreeConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0); } /* ** Increment the r-tree reference count. */ static void rtreeReference(Rtree *pRtree){ pRtree->nBusy++; } /* ** Decrement the r-tree reference count. When the reference count reaches ** zero the structure is deleted. */ static void rtreeRelease(Rtree *pRtree){ pRtree->nBusy--; if( pRtree->nBusy==0 ){ pRtree->inWrTrans = 0; assert( pRtree->nCursor==0 ); nodeBlobReset(pRtree); assert( pRtree->nNodeRef==0 || pRtree->bCorrupt ); sqlite3_finalize(pRtree->pWriteNode); sqlite3_finalize(pRtree->pDeleteNode); sqlite3_finalize(pRtree->pReadRowid); sqlite3_finalize(pRtree->pWriteRowid); sqlite3_finalize(pRtree->pDeleteRowid); sqlite3_finalize(pRtree->pReadParent); sqlite3_finalize(pRtree->pWriteParent); sqlite3_finalize(pRtree->pDeleteParent); sqlite3_finalize(pRtree->pWriteAux); sqlite3_free(pRtree->zReadAuxSql); sqlite3_free(pRtree); } } /* ** Rtree virtual table module xDisconnect method. */ static int rtreeDisconnect(sqlite3_vtab *pVtab){ rtreeRelease((Rtree *)pVtab); return SQLITE_OK; } /* ** Rtree virtual table module xDestroy method. */ static int rtreeDestroy(sqlite3_vtab *pVtab){ Rtree *pRtree = (Rtree *)pVtab; int rc; char *zCreate = sqlite3_mprintf( "DROP TABLE '%q'.'%q_node';" "DROP TABLE '%q'.'%q_rowid';" "DROP TABLE '%q'.'%q_parent';", pRtree->zDb, pRtree->zName, pRtree->zDb, pRtree->zName, pRtree->zDb, pRtree->zName ); if( !zCreate ){ rc = SQLITE_NOMEM; }else{ nodeBlobReset(pRtree); rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0); sqlite3_free(zCreate); } if( rc==SQLITE_OK ){ rtreeRelease(pRtree); } return rc; } /* ** Rtree virtual table module xOpen method. */ static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ int rc = SQLITE_NOMEM; Rtree *pRtree = (Rtree *)pVTab; RtreeCursor *pCsr; pCsr = (RtreeCursor *)sqlite3_malloc64(sizeof(RtreeCursor)); if( pCsr ){ memset(pCsr, 0, sizeof(RtreeCursor)); pCsr->base.pVtab = pVTab; rc = SQLITE_OK; pRtree->nCursor++; } *ppCursor = (sqlite3_vtab_cursor *)pCsr; return rc; } /* ** Reset a cursor back to its initial state. */ static void resetCursor(RtreeCursor *pCsr){ Rtree *pRtree = (Rtree *)(pCsr->base.pVtab); int ii; sqlite3_stmt *pStmt; if( pCsr->aConstraint ){ int i; /* Used to iterate through constraint array */ for(i=0; inConstraint; i++){ sqlite3_rtree_query_info *pInfo = pCsr->aConstraint[i].pInfo; if( pInfo ){ if( pInfo->xDelUser ) pInfo->xDelUser(pInfo->pUser); sqlite3_free(pInfo); } } sqlite3_free(pCsr->aConstraint); pCsr->aConstraint = 0; } for(ii=0; iiaNode[ii]); sqlite3_free(pCsr->aPoint); pStmt = pCsr->pReadAux; memset(pCsr, 0, sizeof(RtreeCursor)); pCsr->base.pVtab = (sqlite3_vtab*)pRtree; pCsr->pReadAux = pStmt; } /* ** Rtree virtual table module xClose method. */ static int rtreeClose(sqlite3_vtab_cursor *cur){ Rtree *pRtree = (Rtree *)(cur->pVtab); RtreeCursor *pCsr = (RtreeCursor *)cur; assert( pRtree->nCursor>0 ); resetCursor(pCsr); sqlite3_finalize(pCsr->pReadAux); sqlite3_free(pCsr); pRtree->nCursor--; nodeBlobReset(pRtree); return SQLITE_OK; } /* ** Rtree virtual table module xEof method. ** ** Return non-zero if the cursor does not currently point to a valid ** record (i.e if the scan has finished), or zero otherwise. */ static int rtreeEof(sqlite3_vtab_cursor *cur){ RtreeCursor *pCsr = (RtreeCursor *)cur; return pCsr->atEOF; } /* ** Convert raw bits from the on-disk RTree record into a coordinate value. ** The on-disk format is big-endian and needs to be converted for little- ** endian platforms. The on-disk record stores integer coordinates if ** eInt is true and it stores 32-bit floating point records if eInt is ** false. a[] is the four bytes of the on-disk record to be decoded. ** Store the results in "r". ** ** There are five versions of this macro. The last one is generic. The ** other four are various architectures-specific optimizations. */ #if SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ c.u = _byteswap_ulong(*(u32*)a); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ c.u = __builtin_bswap32(*(u32*)a); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #elif SQLITE_BYTEORDER==1234 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ memcpy(&c.u,a,4); \ c.u = ((c.u>>24)&0xff)|((c.u>>8)&0xff00)| \ ((c.u&0xff)<<24)|((c.u&0xff00)<<8); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #elif SQLITE_BYTEORDER==4321 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ memcpy(&c.u,a,4); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #else #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ c.u = ((u32)a[0]<<24) + ((u32)a[1]<<16) \ +((u32)a[2]<<8) + a[3]; \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #endif /* ** Check the RTree node or entry given by pCellData and p against the MATCH ** constraint pConstraint. */ static int rtreeCallbackConstraint( RtreeConstraint *pConstraint, /* The constraint to test */ int eInt, /* True if RTree holding integer coordinates */ u8 *pCellData, /* Raw cell content */ RtreeSearchPoint *pSearch, /* Container of this cell */ sqlite3_rtree_dbl *prScore, /* OUT: score for the cell */ int *peWithin /* OUT: visibility of the cell */ ){ sqlite3_rtree_query_info *pInfo = pConstraint->pInfo; /* Callback info */ int nCoord = pInfo->nCoord; /* No. of coordinates */ int rc; /* Callback return code */ RtreeCoord c; /* Translator union */ sqlite3_rtree_dbl aCoord[RTREE_MAX_DIMENSIONS*2]; /* Decoded coordinates */ assert( pConstraint->op==RTREE_MATCH || pConstraint->op==RTREE_QUERY ); assert( nCoord==2 || nCoord==4 || nCoord==6 || nCoord==8 || nCoord==10 ); if( pConstraint->op==RTREE_QUERY && pSearch->iLevel==1 ){ pInfo->iRowid = readInt64(pCellData); } pCellData += 8; #ifndef SQLITE_RTREE_INT_ONLY if( eInt==0 ){ switch( nCoord ){ case 10: readCoord(pCellData+36, &c); aCoord[9] = c.f; readCoord(pCellData+32, &c); aCoord[8] = c.f; case 8: readCoord(pCellData+28, &c); aCoord[7] = c.f; readCoord(pCellData+24, &c); aCoord[6] = c.f; case 6: readCoord(pCellData+20, &c); aCoord[5] = c.f; readCoord(pCellData+16, &c); aCoord[4] = c.f; case 4: readCoord(pCellData+12, &c); aCoord[3] = c.f; readCoord(pCellData+8, &c); aCoord[2] = c.f; default: readCoord(pCellData+4, &c); aCoord[1] = c.f; readCoord(pCellData, &c); aCoord[0] = c.f; } }else #endif { switch( nCoord ){ case 10: readCoord(pCellData+36, &c); aCoord[9] = c.i; readCoord(pCellData+32, &c); aCoord[8] = c.i; case 8: readCoord(pCellData+28, &c); aCoord[7] = c.i; readCoord(pCellData+24, &c); aCoord[6] = c.i; case 6: readCoord(pCellData+20, &c); aCoord[5] = c.i; readCoord(pCellData+16, &c); aCoord[4] = c.i; case 4: readCoord(pCellData+12, &c); aCoord[3] = c.i; readCoord(pCellData+8, &c); aCoord[2] = c.i; default: readCoord(pCellData+4, &c); aCoord[1] = c.i; readCoord(pCellData, &c); aCoord[0] = c.i; } } if( pConstraint->op==RTREE_MATCH ){ int eWithin = 0; rc = pConstraint->u.xGeom((sqlite3_rtree_geometry*)pInfo, nCoord, aCoord, &eWithin); if( eWithin==0 ) *peWithin = NOT_WITHIN; *prScore = RTREE_ZERO; }else{ pInfo->aCoord = aCoord; pInfo->iLevel = pSearch->iLevel - 1; pInfo->rScore = pInfo->rParentScore = pSearch->rScore; pInfo->eWithin = pInfo->eParentWithin = pSearch->eWithin; rc = pConstraint->u.xQueryFunc(pInfo); if( pInfo->eWithin<*peWithin ) *peWithin = pInfo->eWithin; if( pInfo->rScore<*prScore || *prScorerScore; } } return rc; } /* ** Check the internal RTree node given by pCellData against constraint p. ** If this constraint cannot be satisfied by any child within the node, ** set *peWithin to NOT_WITHIN. */ static void rtreeNonleafConstraint( RtreeConstraint *p, /* The constraint to test */ int eInt, /* True if RTree holds integer coordinates */ u8 *pCellData, /* Raw cell content as appears on disk */ int *peWithin /* Adjust downward, as appropriate */ ){ sqlite3_rtree_dbl val; /* Coordinate value convert to a double */ /* p->iCoord might point to either a lower or upper bound coordinate ** in a coordinate pair. But make pCellData point to the lower bound. */ pCellData += 8 + 4*(p->iCoord&0xfe); assert(p->op==RTREE_LE || p->op==RTREE_LT || p->op==RTREE_GE || p->op==RTREE_GT || p->op==RTREE_EQ || p->op==RTREE_TRUE || p->op==RTREE_FALSE ); assert( ((((char*)pCellData) - (char*)0)&3)==0 ); /* 4-byte aligned */ switch( p->op ){ case RTREE_TRUE: return; /* Always satisfied */ case RTREE_FALSE: break; /* Never satisfied */ case RTREE_EQ: RTREE_DECODE_COORD(eInt, pCellData, val); /* val now holds the lower bound of the coordinate pair */ if( p->u.rValue>=val ){ pCellData += 4; RTREE_DECODE_COORD(eInt, pCellData, val); /* val now holds the upper bound of the coordinate pair */ if( p->u.rValue<=val ) return; } break; case RTREE_LE: case RTREE_LT: RTREE_DECODE_COORD(eInt, pCellData, val); /* val now holds the lower bound of the coordinate pair */ if( p->u.rValue>=val ) return; break; default: pCellData += 4; RTREE_DECODE_COORD(eInt, pCellData, val); /* val now holds the upper bound of the coordinate pair */ if( p->u.rValue<=val ) return; break; } *peWithin = NOT_WITHIN; } /* ** Check the leaf RTree cell given by pCellData against constraint p. ** If this constraint is not satisfied, set *peWithin to NOT_WITHIN. ** If the constraint is satisfied, leave *peWithin unchanged. ** ** The constraint is of the form: xN op $val ** ** The op is given by p->op. The xN is p->iCoord-th coordinate in ** pCellData. $val is given by p->u.rValue. */ static void rtreeLeafConstraint( RtreeConstraint *p, /* The constraint to test */ int eInt, /* True if RTree holds integer coordinates */ u8 *pCellData, /* Raw cell content as appears on disk */ int *peWithin /* Adjust downward, as appropriate */ ){ RtreeDValue xN; /* Coordinate value converted to a double */ assert(p->op==RTREE_LE || p->op==RTREE_LT || p->op==RTREE_GE || p->op==RTREE_GT || p->op==RTREE_EQ || p->op==RTREE_TRUE || p->op==RTREE_FALSE ); pCellData += 8 + p->iCoord*4; assert( ((((char*)pCellData) - (char*)0)&3)==0 ); /* 4-byte aligned */ RTREE_DECODE_COORD(eInt, pCellData, xN); switch( p->op ){ case RTREE_TRUE: return; /* Always satisfied */ case RTREE_FALSE: break; /* Never satisfied */ case RTREE_LE: if( xN <= p->u.rValue ) return; break; case RTREE_LT: if( xN < p->u.rValue ) return; break; case RTREE_GE: if( xN >= p->u.rValue ) return; break; case RTREE_GT: if( xN > p->u.rValue ) return; break; default: if( xN == p->u.rValue ) return; break; } *peWithin = NOT_WITHIN; } /* ** One of the cells in node pNode is guaranteed to have a 64-bit ** integer value equal to iRowid. Return the index of this cell. */ static int nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ){ int ii; int nCell = NCELL(pNode); assert( nCell<200 ); for(ii=0; iipParent; if( ALWAYS(pParent) ){ return nodeRowidIndex(pRtree, pParent, pNode->iNode, piIndex); }else{ *piIndex = -1; return SQLITE_OK; } } /* ** Compare two search points. Return negative, zero, or positive if the first ** is less than, equal to, or greater than the second. ** ** The rScore is the primary key. Smaller rScore values come first. ** If the rScore is a tie, then use iLevel as the tie breaker with smaller ** iLevel values coming first. In this way, if rScore is the same for all ** SearchPoints, then iLevel becomes the deciding factor and the result ** is a depth-first search, which is the desired default behavior. */ static int rtreeSearchPointCompare( const RtreeSearchPoint *pA, const RtreeSearchPoint *pB ){ if( pA->rScorerScore ) return -1; if( pA->rScore>pB->rScore ) return +1; if( pA->iLeveliLevel ) return -1; if( pA->iLevel>pB->iLevel ) return +1; return 0; } /* ** Interchange two search points in a cursor. */ static void rtreeSearchPointSwap(RtreeCursor *p, int i, int j){ RtreeSearchPoint t = p->aPoint[i]; assert( iaPoint[i] = p->aPoint[j]; p->aPoint[j] = t; i++; j++; if( i=RTREE_CACHE_SZ ){ nodeRelease(RTREE_OF_CURSOR(p), p->aNode[i]); p->aNode[i] = 0; }else{ RtreeNode *pTemp = p->aNode[i]; p->aNode[i] = p->aNode[j]; p->aNode[j] = pTemp; } } } /* ** Return the search point with the lowest current score. */ static RtreeSearchPoint *rtreeSearchPointFirst(RtreeCursor *pCur){ return pCur->bPoint ? &pCur->sPoint : pCur->nPoint ? pCur->aPoint : 0; } /* ** Get the RtreeNode for the search point with the lowest score. */ static RtreeNode *rtreeNodeOfFirstSearchPoint(RtreeCursor *pCur, int *pRC){ sqlite3_int64 id; int ii = 1 - pCur->bPoint; assert( ii==0 || ii==1 ); assert( pCur->bPoint || pCur->nPoint ); if( pCur->aNode[ii]==0 ){ assert( pRC!=0 ); id = ii ? pCur->aPoint[0].id : pCur->sPoint.id; *pRC = nodeAcquire(RTREE_OF_CURSOR(pCur), id, 0, &pCur->aNode[ii]); } return pCur->aNode[ii]; } /* ** Push a new element onto the priority queue */ static RtreeSearchPoint *rtreeEnqueue( RtreeCursor *pCur, /* The cursor */ RtreeDValue rScore, /* Score for the new search point */ u8 iLevel /* Level for the new search point */ ){ int i, j; RtreeSearchPoint *pNew; if( pCur->nPoint>=pCur->nPointAlloc ){ int nNew = pCur->nPointAlloc*2 + 8; pNew = sqlite3_realloc64(pCur->aPoint, nNew*sizeof(pCur->aPoint[0])); if( pNew==0 ) return 0; pCur->aPoint = pNew; pCur->nPointAlloc = nNew; } i = pCur->nPoint++; pNew = pCur->aPoint + i; pNew->rScore = rScore; pNew->iLevel = iLevel; assert( iLevel<=RTREE_MAX_DEPTH ); while( i>0 ){ RtreeSearchPoint *pParent; j = (i-1)/2; pParent = pCur->aPoint + j; if( rtreeSearchPointCompare(pNew, pParent)>=0 ) break; rtreeSearchPointSwap(pCur, j, i); i = j; pNew = pParent; } return pNew; } /* ** Allocate a new RtreeSearchPoint and return a pointer to it. Return ** NULL if malloc fails. */ static RtreeSearchPoint *rtreeSearchPointNew( RtreeCursor *pCur, /* The cursor */ RtreeDValue rScore, /* Score for the new search point */ u8 iLevel /* Level for the new search point */ ){ RtreeSearchPoint *pNew, *pFirst; pFirst = rtreeSearchPointFirst(pCur); pCur->anQueue[iLevel]++; if( pFirst==0 || pFirst->rScore>rScore || (pFirst->rScore==rScore && pFirst->iLevel>iLevel) ){ if( pCur->bPoint ){ int ii; pNew = rtreeEnqueue(pCur, rScore, iLevel); if( pNew==0 ) return 0; ii = (int)(pNew - pCur->aPoint) + 1; assert( ii==1 ); if( ALWAYS(iiaNode[ii]==0 ); pCur->aNode[ii] = pCur->aNode[0]; }else{ nodeRelease(RTREE_OF_CURSOR(pCur), pCur->aNode[0]); } pCur->aNode[0] = 0; *pNew = pCur->sPoint; } pCur->sPoint.rScore = rScore; pCur->sPoint.iLevel = iLevel; pCur->bPoint = 1; return &pCur->sPoint; }else{ return rtreeEnqueue(pCur, rScore, iLevel); } } #if 0 /* Tracing routines for the RtreeSearchPoint queue */ static void tracePoint(RtreeSearchPoint *p, int idx, RtreeCursor *pCur){ if( idx<0 ){ printf(" s"); }else{ printf("%2d", idx); } printf(" %d.%05lld.%02d %g %d", p->iLevel, p->id, p->iCell, p->rScore, p->eWithin ); idx++; if( idxaNode[idx]); }else{ printf("\n"); } } static void traceQueue(RtreeCursor *pCur, const char *zPrefix){ int ii; printf("=== %9s ", zPrefix); if( pCur->bPoint ){ tracePoint(&pCur->sPoint, -1, pCur); } for(ii=0; iinPoint; ii++){ if( ii>0 || pCur->bPoint ) printf(" "); tracePoint(&pCur->aPoint[ii], ii, pCur); } } # define RTREE_QUEUE_TRACE(A,B) traceQueue(A,B) #else # define RTREE_QUEUE_TRACE(A,B) /* no-op */ #endif /* Remove the search point with the lowest current score. */ static void rtreeSearchPointPop(RtreeCursor *p){ int i, j, k, n; i = 1 - p->bPoint; assert( i==0 || i==1 ); if( p->aNode[i] ){ nodeRelease(RTREE_OF_CURSOR(p), p->aNode[i]); p->aNode[i] = 0; } if( p->bPoint ){ p->anQueue[p->sPoint.iLevel]--; p->bPoint = 0; }else if( ALWAYS(p->nPoint) ){ p->anQueue[p->aPoint[0].iLevel]--; n = --p->nPoint; p->aPoint[0] = p->aPoint[n]; if( naNode[1] = p->aNode[n+1]; p->aNode[n+1] = 0; } i = 0; while( (j = i*2+1)aPoint[k], &p->aPoint[j])<0 ){ if( rtreeSearchPointCompare(&p->aPoint[k], &p->aPoint[i])<0 ){ rtreeSearchPointSwap(p, i, k); i = k; }else{ break; } }else{ if( rtreeSearchPointCompare(&p->aPoint[j], &p->aPoint[i])<0 ){ rtreeSearchPointSwap(p, i, j); i = j; }else{ break; } } } } } /* ** Continue the search on cursor pCur until the front of the queue ** contains an entry suitable for returning as a result-set row, ** or until the RtreeSearchPoint queue is empty, indicating that the ** query has completed. */ static int rtreeStepToLeaf(RtreeCursor *pCur){ RtreeSearchPoint *p; Rtree *pRtree = RTREE_OF_CURSOR(pCur); RtreeNode *pNode; int eWithin; int rc = SQLITE_OK; int nCell; int nConstraint = pCur->nConstraint; int ii; int eInt; RtreeSearchPoint x; eInt = pRtree->eCoordType==RTREE_COORD_INT32; while( (p = rtreeSearchPointFirst(pCur))!=0 && p->iLevel>0 ){ u8 *pCellData; pNode = rtreeNodeOfFirstSearchPoint(pCur, &rc); if( rc ) return rc; nCell = NCELL(pNode); assert( nCell<200 ); pCellData = pNode->zData + (4+pRtree->nBytesPerCell*p->iCell); while( p->iCellaConstraint + ii; if( pConstraint->op>=RTREE_MATCH ){ rc = rtreeCallbackConstraint(pConstraint, eInt, pCellData, p, &rScore, &eWithin); if( rc ) return rc; }else if( p->iLevel==1 ){ rtreeLeafConstraint(pConstraint, eInt, pCellData, &eWithin); }else{ rtreeNonleafConstraint(pConstraint, eInt, pCellData, &eWithin); } if( eWithin==NOT_WITHIN ){ p->iCell++; pCellData += pRtree->nBytesPerCell; break; } } if( eWithin==NOT_WITHIN ) continue; p->iCell++; x.iLevel = p->iLevel - 1; if( x.iLevel ){ x.id = readInt64(pCellData); for(ii=0; iinPoint; ii++){ if( pCur->aPoint[ii].id==x.id ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } } x.iCell = 0; }else{ x.id = p->id; x.iCell = p->iCell - 1; } if( p->iCell>=nCell ){ RTREE_QUEUE_TRACE(pCur, "POP-S:"); rtreeSearchPointPop(pCur); } if( rScoreeWithin = (u8)eWithin; p->id = x.id; p->iCell = x.iCell; RTREE_QUEUE_TRACE(pCur, "PUSH-S:"); break; } if( p->iCell>=nCell ){ RTREE_QUEUE_TRACE(pCur, "POP-Se:"); rtreeSearchPointPop(pCur); } } pCur->atEOF = p==0; return SQLITE_OK; } /* ** Rtree virtual table module xNext method. */ static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){ RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; int rc = SQLITE_OK; /* Move to the next entry that matches the configured constraints. */ RTREE_QUEUE_TRACE(pCsr, "POP-Nx:"); if( pCsr->bAuxValid ){ pCsr->bAuxValid = 0; sqlite3_reset(pCsr->pReadAux); } rtreeSearchPointPop(pCsr); rc = rtreeStepToLeaf(pCsr); return rc; } /* ** Rtree virtual table module xRowid method. */ static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){ RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); int rc = SQLITE_OK; RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); if( rc==SQLITE_OK && ALWAYS(p) ){ *pRowid = nodeGetRowid(RTREE_OF_CURSOR(pCsr), pNode, p->iCell); } return rc; } /* ** Rtree virtual table module xColumn method. */ static int rtreeColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ Rtree *pRtree = (Rtree *)cur->pVtab; RtreeCursor *pCsr = (RtreeCursor *)cur; RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); RtreeCoord c; int rc = SQLITE_OK; RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); if( rc ) return rc; if( NEVER(p==0) ) return SQLITE_OK; if( i==0 ){ sqlite3_result_int64(ctx, nodeGetRowid(pRtree, pNode, p->iCell)); }else if( i<=pRtree->nDim2 ){ nodeGetCoord(pRtree, pNode, p->iCell, i-1, &c); #ifndef SQLITE_RTREE_INT_ONLY if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ sqlite3_result_double(ctx, c.f); }else #endif { assert( pRtree->eCoordType==RTREE_COORD_INT32 ); sqlite3_result_int(ctx, c.i); } }else{ if( !pCsr->bAuxValid ){ if( pCsr->pReadAux==0 ){ rc = sqlite3_prepare_v3(pRtree->db, pRtree->zReadAuxSql, -1, 0, &pCsr->pReadAux, 0); if( rc ) return rc; } sqlite3_bind_int64(pCsr->pReadAux, 1, nodeGetRowid(pRtree, pNode, p->iCell)); rc = sqlite3_step(pCsr->pReadAux); if( rc==SQLITE_ROW ){ pCsr->bAuxValid = 1; }else{ sqlite3_reset(pCsr->pReadAux); if( rc==SQLITE_DONE ) rc = SQLITE_OK; return rc; } } sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pReadAux, i - pRtree->nDim2 + 1)); } return SQLITE_OK; } /* ** Use nodeAcquire() to obtain the leaf node containing the record with ** rowid iRowid. If successful, set *ppLeaf to point to the node and ** return SQLITE_OK. If there is no such record in the table, set ** *ppLeaf to 0 and return SQLITE_OK. If an error occurs, set *ppLeaf ** to zero and return an SQLite error code. */ static int findLeafNode( Rtree *pRtree, /* RTree to search */ i64 iRowid, /* The rowid searching for */ RtreeNode **ppLeaf, /* Write the node here */ sqlite3_int64 *piNode /* Write the node-id here */ ){ int rc; *ppLeaf = 0; sqlite3_bind_int64(pRtree->pReadRowid, 1, iRowid); if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){ i64 iNode = sqlite3_column_int64(pRtree->pReadRowid, 0); if( piNode ) *piNode = iNode; rc = nodeAcquire(pRtree, iNode, 0, ppLeaf); sqlite3_reset(pRtree->pReadRowid); }else{ rc = sqlite3_reset(pRtree->pReadRowid); } return rc; } /* ** This function is called to configure the RtreeConstraint object passed ** as the second argument for a MATCH constraint. The value passed as the ** first argument to this function is the right-hand operand to the MATCH ** operator. */ static int deserializeGeometry(sqlite3_value *pValue, RtreeConstraint *pCons){ RtreeMatchArg *pBlob, *pSrc; /* BLOB returned by geometry function */ sqlite3_rtree_query_info *pInfo; /* Callback information */ pSrc = sqlite3_value_pointer(pValue, "RtreeMatchArg"); if( pSrc==0 ) return SQLITE_ERROR; pInfo = (sqlite3_rtree_query_info*) sqlite3_malloc64( sizeof(*pInfo)+pSrc->iSize ); if( !pInfo ) return SQLITE_NOMEM; memset(pInfo, 0, sizeof(*pInfo)); pBlob = (RtreeMatchArg*)&pInfo[1]; memcpy(pBlob, pSrc, pSrc->iSize); pInfo->pContext = pBlob->cb.pContext; pInfo->nParam = pBlob->nParam; pInfo->aParam = pBlob->aParam; pInfo->apSqlParam = pBlob->apSqlParam; if( pBlob->cb.xGeom ){ pCons->u.xGeom = pBlob->cb.xGeom; }else{ pCons->op = RTREE_QUERY; pCons->u.xQueryFunc = pBlob->cb.xQueryFunc; } pCons->pInfo = pInfo; return SQLITE_OK; } /* ** Rtree virtual table module xFilter method. */ static int rtreeFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ Rtree *pRtree = (Rtree *)pVtabCursor->pVtab; RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; RtreeNode *pRoot = 0; int ii; int rc = SQLITE_OK; int iCell = 0; rtreeReference(pRtree); /* Reset the cursor to the same state as rtreeOpen() leaves it in. */ resetCursor(pCsr); pCsr->iStrategy = idxNum; if( idxNum==1 ){ /* Special case - lookup by rowid. */ RtreeNode *pLeaf; /* Leaf on which the required cell resides */ RtreeSearchPoint *p; /* Search point for the leaf */ i64 iRowid = sqlite3_value_int64(argv[0]); i64 iNode = 0; int eType = sqlite3_value_numeric_type(argv[0]); if( eType==SQLITE_INTEGER || (eType==SQLITE_FLOAT && sqlite3_value_double(argv[0])==iRowid) ){ rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode); }else{ rc = SQLITE_OK; pLeaf = 0; } if( rc==SQLITE_OK && pLeaf!=0 ){ p = rtreeSearchPointNew(pCsr, RTREE_ZERO, 0); assert( p!=0 ); /* Always returns pCsr->sPoint */ pCsr->aNode[0] = pLeaf; p->id = iNode; p->eWithin = PARTLY_WITHIN; rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell); p->iCell = (u8)iCell; RTREE_QUEUE_TRACE(pCsr, "PUSH-F1:"); }else{ pCsr->atEOF = 1; } }else{ /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array ** with the configured constraints. */ rc = nodeAcquire(pRtree, 1, 0, &pRoot); if( rc==SQLITE_OK && argc>0 ){ pCsr->aConstraint = sqlite3_malloc64(sizeof(RtreeConstraint)*argc); pCsr->nConstraint = argc; if( !pCsr->aConstraint ){ rc = SQLITE_NOMEM; }else{ memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc); memset(pCsr->anQueue, 0, sizeof(u32)*(pRtree->iDepth + 1)); assert( (idxStr==0 && argc==0) || (idxStr && (int)strlen(idxStr)==argc*2) ); for(ii=0; iiaConstraint[ii]; int eType = sqlite3_value_numeric_type(argv[ii]); p->op = idxStr[ii*2]; p->iCoord = idxStr[ii*2+1]-'0'; if( p->op>=RTREE_MATCH ){ /* A MATCH operator. The right-hand-side must be a blob that ** can be cast into an RtreeMatchArg object. One created using ** an sqlite3_rtree_geometry_callback() SQL user function. */ rc = deserializeGeometry(argv[ii], p); if( rc!=SQLITE_OK ){ break; } p->pInfo->nCoord = pRtree->nDim2; p->pInfo->anQueue = pCsr->anQueue; p->pInfo->mxLevel = pRtree->iDepth + 1; }else if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){ #ifdef SQLITE_RTREE_INT_ONLY p->u.rValue = sqlite3_value_int64(argv[ii]); #else p->u.rValue = sqlite3_value_double(argv[ii]); #endif }else{ p->u.rValue = RTREE_ZERO; if( eType==SQLITE_NULL ){ p->op = RTREE_FALSE; }else if( p->op==RTREE_LT || p->op==RTREE_LE ){ p->op = RTREE_TRUE; }else{ p->op = RTREE_FALSE; } } } } } if( rc==SQLITE_OK ){ RtreeSearchPoint *pNew; assert( pCsr->bPoint==0 ); /* Due to the resetCursor() call above */ pNew = rtreeSearchPointNew(pCsr, RTREE_ZERO, (u8)(pRtree->iDepth+1)); if( NEVER(pNew==0) ){ /* Because pCsr->bPoint was FALSE */ return SQLITE_NOMEM; } pNew->id = 1; pNew->iCell = 0; pNew->eWithin = PARTLY_WITHIN; assert( pCsr->bPoint==1 ); pCsr->aNode[0] = pRoot; pRoot = 0; RTREE_QUEUE_TRACE(pCsr, "PUSH-Fm:"); rc = rtreeStepToLeaf(pCsr); } } nodeRelease(pRtree, pRoot); rtreeRelease(pRtree); return rc; } /* ** Rtree virtual table module xBestIndex method. There are three ** table scan strategies to choose from (in order from most to ** least desirable): ** ** idxNum idxStr Strategy ** ------------------------------------------------ ** 1 Unused Direct lookup by rowid. ** 2 See below R-tree query or full-table scan. ** ------------------------------------------------ ** ** If strategy 1 is used, then idxStr is not meaningful. If strategy ** 2 is used, idxStr is formatted to contain 2 bytes for each ** constraint used. The first two bytes of idxStr correspond to ** the constraint in sqlite3_index_info.aConstraintUsage[] with ** (argvIndex==1) etc. ** ** The first of each pair of bytes in idxStr identifies the constraint ** operator as follows: ** ** Operator Byte Value ** ---------------------- ** = 0x41 ('A') ** <= 0x42 ('B') ** < 0x43 ('C') ** >= 0x44 ('D') ** > 0x45 ('E') ** MATCH 0x46 ('F') ** ---------------------- ** ** The second of each pair of bytes identifies the coordinate column ** to which the constraint applies. The leftmost coordinate column ** is 'a', the second from the left 'b' etc. */ static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ Rtree *pRtree = (Rtree*)tab; int rc = SQLITE_OK; int ii; int bMatch = 0; /* True if there exists a MATCH constraint */ i64 nRow; /* Estimated rows returned by this scan */ int iIdx = 0; char zIdxStr[RTREE_MAX_DIMENSIONS*8+1]; memset(zIdxStr, 0, sizeof(zIdxStr)); /* Check if there exists a MATCH constraint - even an unusable one. If there ** is, do not consider the lookup-by-rowid plan as using such a plan would ** require the VDBE to evaluate the MATCH constraint, which is not currently ** possible. */ for(ii=0; iinConstraint; ii++){ if( pIdxInfo->aConstraint[ii].op==SQLITE_INDEX_CONSTRAINT_MATCH ){ bMatch = 1; } } assert( pIdxInfo->idxStr==0 ); for(ii=0; iinConstraint && iIdx<(int)(sizeof(zIdxStr)-1); ii++){ struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii]; if( bMatch==0 && p->usable && p->iColumn<=0 && p->op==SQLITE_INDEX_CONSTRAINT_EQ ){ /* We have an equality constraint on the rowid. Use strategy 1. */ int jj; for(jj=0; jjaConstraintUsage[jj].argvIndex = 0; pIdxInfo->aConstraintUsage[jj].omit = 0; } pIdxInfo->idxNum = 1; pIdxInfo->aConstraintUsage[ii].argvIndex = 1; pIdxInfo->aConstraintUsage[jj].omit = 1; /* This strategy involves a two rowid lookups on an B-Tree structures ** and then a linear search of an R-Tree node. This should be ** considered almost as quick as a direct rowid lookup (for which ** sqlite uses an internal cost of 0.0). It is expected to return ** a single row. */ pIdxInfo->estimatedCost = 30.0; pIdxInfo->estimatedRows = 1; pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; return SQLITE_OK; } if( p->usable && ((p->iColumn>0 && p->iColumn<=pRtree->nDim2) || p->op==SQLITE_INDEX_CONSTRAINT_MATCH) ){ u8 op; switch( p->op ){ case SQLITE_INDEX_CONSTRAINT_EQ: op = RTREE_EQ; break; case SQLITE_INDEX_CONSTRAINT_GT: op = RTREE_GT; break; case SQLITE_INDEX_CONSTRAINT_LE: op = RTREE_LE; break; case SQLITE_INDEX_CONSTRAINT_LT: op = RTREE_LT; break; case SQLITE_INDEX_CONSTRAINT_GE: op = RTREE_GE; break; case SQLITE_INDEX_CONSTRAINT_MATCH: op = RTREE_MATCH; break; default: op = 0; break; } if( op ){ zIdxStr[iIdx++] = op; zIdxStr[iIdx++] = (char)(p->iColumn - 1 + '0'); pIdxInfo->aConstraintUsage[ii].argvIndex = (iIdx/2); pIdxInfo->aConstraintUsage[ii].omit = 1; } } } pIdxInfo->idxNum = 2; pIdxInfo->needToFreeIdxStr = 1; if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){ return SQLITE_NOMEM; } nRow = pRtree->nRowEst >> (iIdx/2); pIdxInfo->estimatedCost = (double)6.0 * (double)nRow; pIdxInfo->estimatedRows = nRow; return rc; } /* ** Return the N-dimensional volumn of the cell stored in *p. */ static RtreeDValue cellArea(Rtree *pRtree, RtreeCell *p){ RtreeDValue area = (RtreeDValue)1; assert( pRtree->nDim>=1 && pRtree->nDim<=5 ); #ifndef SQLITE_RTREE_INT_ONLY if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ switch( pRtree->nDim ){ case 5: area = p->aCoord[9].f - p->aCoord[8].f; case 4: area *= p->aCoord[7].f - p->aCoord[6].f; case 3: area *= p->aCoord[5].f - p->aCoord[4].f; case 2: area *= p->aCoord[3].f - p->aCoord[2].f; default: area *= p->aCoord[1].f - p->aCoord[0].f; } }else #endif { switch( pRtree->nDim ){ case 5: area = (i64)p->aCoord[9].i - (i64)p->aCoord[8].i; case 4: area *= (i64)p->aCoord[7].i - (i64)p->aCoord[6].i; case 3: area *= (i64)p->aCoord[5].i - (i64)p->aCoord[4].i; case 2: area *= (i64)p->aCoord[3].i - (i64)p->aCoord[2].i; default: area *= (i64)p->aCoord[1].i - (i64)p->aCoord[0].i; } } return area; } /* ** Return the margin length of cell p. The margin length is the sum ** of the objects size in each dimension. */ static RtreeDValue cellMargin(Rtree *pRtree, RtreeCell *p){ RtreeDValue margin = 0; int ii = pRtree->nDim2 - 2; do{ margin += (DCOORD(p->aCoord[ii+1]) - DCOORD(p->aCoord[ii])); ii -= 2; }while( ii>=0 ); return margin; } /* ** Store the union of cells p1 and p2 in p1. */ static void cellUnion(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){ int ii = 0; if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ do{ p1->aCoord[ii].f = MIN(p1->aCoord[ii].f, p2->aCoord[ii].f); p1->aCoord[ii+1].f = MAX(p1->aCoord[ii+1].f, p2->aCoord[ii+1].f); ii += 2; }while( iinDim2 ); }else{ do{ p1->aCoord[ii].i = MIN(p1->aCoord[ii].i, p2->aCoord[ii].i); p1->aCoord[ii+1].i = MAX(p1->aCoord[ii+1].i, p2->aCoord[ii+1].i); ii += 2; }while( iinDim2 ); } } /* ** Return true if the area covered by p2 is a subset of the area covered ** by p1. False otherwise. */ static int cellContains(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){ int ii; int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); for(ii=0; iinDim2; ii+=2){ RtreeCoord *a1 = &p1->aCoord[ii]; RtreeCoord *a2 = &p2->aCoord[ii]; if( (!isInt && (a2[0].fa1[1].f)) || ( isInt && (a2[0].ia1[1].i)) ){ return 0; } } return 1; } /* ** Return the amount cell p would grow by if it were unioned with pCell. */ static RtreeDValue cellGrowth(Rtree *pRtree, RtreeCell *p, RtreeCell *pCell){ RtreeDValue area; RtreeCell cell; memcpy(&cell, p, sizeof(RtreeCell)); area = cellArea(pRtree, &cell); cellUnion(pRtree, &cell, pCell); return (cellArea(pRtree, &cell)-area); } static RtreeDValue cellOverlap( Rtree *pRtree, RtreeCell *p, RtreeCell *aCell, int nCell ){ int ii; RtreeDValue overlap = RTREE_ZERO; for(ii=0; iinDim2; jj+=2){ RtreeDValue x1, x2; x1 = MAX(DCOORD(p->aCoord[jj]), DCOORD(aCell[ii].aCoord[jj])); x2 = MIN(DCOORD(p->aCoord[jj+1]), DCOORD(aCell[ii].aCoord[jj+1])); if( x2iDepth-iHeight); ii++){ int iCell; sqlite3_int64 iBest = 0; RtreeDValue fMinGrowth = RTREE_ZERO; RtreeDValue fMinArea = RTREE_ZERO; int nCell = NCELL(pNode); RtreeCell cell; RtreeNode *pChild = 0; RtreeCell *aCell = 0; /* Select the child node which will be enlarged the least if pCell ** is inserted into it. Resolve ties by choosing the entry with ** the smallest area. */ for(iCell=0; iCellpParent ){ RtreeNode *pParent = p->pParent; RtreeCell cell; int iCell; cnt++; if( NEVER(cnt>100) ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } rc = nodeParentIndex(pRtree, p, &iCell); if( NEVER(rc!=SQLITE_OK) ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } nodeGetCell(pRtree, pParent, iCell, &cell); if( !cellContains(pRtree, &cell, pCell) ){ cellUnion(pRtree, &cell, pCell); nodeOverwriteCell(pRtree, pParent, &cell, iCell); } p = pParent; } return SQLITE_OK; } /* ** Write mapping (iRowid->iNode) to the _rowid table. */ static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){ sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid); sqlite3_bind_int64(pRtree->pWriteRowid, 2, iNode); sqlite3_step(pRtree->pWriteRowid); return sqlite3_reset(pRtree->pWriteRowid); } /* ** Write mapping (iNode->iPar) to the _parent table. */ static int parentWrite(Rtree *pRtree, sqlite3_int64 iNode, sqlite3_int64 iPar){ sqlite3_bind_int64(pRtree->pWriteParent, 1, iNode); sqlite3_bind_int64(pRtree->pWriteParent, 2, iPar); sqlite3_step(pRtree->pWriteParent); return sqlite3_reset(pRtree->pWriteParent); } static int rtreeInsertCell(Rtree *, RtreeNode *, RtreeCell *, int); /* ** Arguments aIdx, aDistance and aSpare all point to arrays of size ** nIdx. The aIdx array contains the set of integers from 0 to ** (nIdx-1) in no particular order. This function sorts the values ** in aIdx according to the indexed values in aDistance. For ** example, assuming the inputs: ** ** aIdx = { 0, 1, 2, 3 } ** aDistance = { 5.0, 2.0, 7.0, 6.0 } ** ** this function sets the aIdx array to contain: ** ** aIdx = { 0, 1, 2, 3 } ** ** The aSpare array is used as temporary working space by the ** sorting algorithm. */ static void SortByDistance( int *aIdx, int nIdx, RtreeDValue *aDistance, int *aSpare ){ if( nIdx>1 ){ int iLeft = 0; int iRight = 0; int nLeft = nIdx/2; int nRight = nIdx-nLeft; int *aLeft = aIdx; int *aRight = &aIdx[nLeft]; SortByDistance(aLeft, nLeft, aDistance, aSpare); SortByDistance(aRight, nRight, aDistance, aSpare); memcpy(aSpare, aLeft, sizeof(int)*nLeft); aLeft = aSpare; while( iLeft1 ){ int iLeft = 0; int iRight = 0; int nLeft = nIdx/2; int nRight = nIdx-nLeft; int *aLeft = aIdx; int *aRight = &aIdx[nLeft]; SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare); SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare); memcpy(aSpare, aLeft, sizeof(int)*nLeft); aLeft = aSpare; while( iLeftnDim+1)*(sizeof(int*)+nCell*sizeof(int)); aaSorted = (int **)sqlite3_malloc64(nByte); if( !aaSorted ){ return SQLITE_NOMEM; } aSpare = &((int *)&aaSorted[pRtree->nDim])[pRtree->nDim*nCell]; memset(aaSorted, 0, nByte); for(ii=0; iinDim; ii++){ int jj; aaSorted[ii] = &((int *)&aaSorted[pRtree->nDim])[ii*nCell]; for(jj=0; jjnDim; ii++){ RtreeDValue margin = RTREE_ZERO; RtreeDValue fBestOverlap = RTREE_ZERO; RtreeDValue fBestArea = RTREE_ZERO; int iBestLeft = 0; int nLeft; for( nLeft=RTREE_MINCELLS(pRtree); nLeft<=(nCell-RTREE_MINCELLS(pRtree)); nLeft++ ){ RtreeCell left; RtreeCell right; int kk; RtreeDValue overlap; RtreeDValue area; memcpy(&left, &aCell[aaSorted[ii][0]], sizeof(RtreeCell)); memcpy(&right, &aCell[aaSorted[ii][nCell-1]], sizeof(RtreeCell)); for(kk=1; kk<(nCell-1); kk++){ if( kk0 ){ RtreeNode *pChild = nodeHashLookup(pRtree, iRowid); RtreeNode *p; for(p=pNode; p; p=p->pParent){ if( p==pChild ) return SQLITE_CORRUPT_VTAB; } if( pChild ){ nodeRelease(pRtree, pChild->pParent); nodeReference(pNode); pChild->pParent = pNode; } } if( NEVER(pNode==0) ) return SQLITE_ERROR; return xSetMapping(pRtree, iRowid, pNode->iNode); } static int SplitNode( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ){ int i; int newCellIsRight = 0; int rc = SQLITE_OK; int nCell = NCELL(pNode); RtreeCell *aCell; int *aiUsed; RtreeNode *pLeft = 0; RtreeNode *pRight = 0; RtreeCell leftbbox; RtreeCell rightbbox; /* Allocate an array and populate it with a copy of pCell and ** all cells from node pLeft. Then zero the original node. */ aCell = sqlite3_malloc64((sizeof(RtreeCell)+sizeof(int))*(nCell+1)); if( !aCell ){ rc = SQLITE_NOMEM; goto splitnode_out; } aiUsed = (int *)&aCell[nCell+1]; memset(aiUsed, 0, sizeof(int)*(nCell+1)); for(i=0; iiNode==1 ){ pRight = nodeNew(pRtree, pNode); pLeft = nodeNew(pRtree, pNode); pRtree->iDepth++; pNode->isDirty = 1; writeInt16(pNode->zData, pRtree->iDepth); }else{ pLeft = pNode; pRight = nodeNew(pRtree, pLeft->pParent); pLeft->nRef++; } if( !pLeft || !pRight ){ rc = SQLITE_NOMEM; goto splitnode_out; } memset(pLeft->zData, 0, pRtree->iNodeSize); memset(pRight->zData, 0, pRtree->iNodeSize); rc = splitNodeStartree(pRtree, aCell, nCell, pLeft, pRight, &leftbbox, &rightbbox); if( rc!=SQLITE_OK ){ goto splitnode_out; } /* Ensure both child nodes have node numbers assigned to them by calling ** nodeWrite(). Node pRight always needs a node number, as it was created ** by nodeNew() above. But node pLeft sometimes already has a node number. ** In this case avoid the all to nodeWrite(). */ if( SQLITE_OK!=(rc = nodeWrite(pRtree, pRight)) || (0==pLeft->iNode && SQLITE_OK!=(rc = nodeWrite(pRtree, pLeft))) ){ goto splitnode_out; } rightbbox.iRowid = pRight->iNode; leftbbox.iRowid = pLeft->iNode; if( pNode->iNode==1 ){ rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1); if( rc!=SQLITE_OK ){ goto splitnode_out; } }else{ RtreeNode *pParent = pLeft->pParent; int iCell; rc = nodeParentIndex(pRtree, pLeft, &iCell); if( ALWAYS(rc==SQLITE_OK) ){ nodeOverwriteCell(pRtree, pParent, &leftbbox, iCell); rc = AdjustTree(pRtree, pParent, &leftbbox); assert( rc==SQLITE_OK ); } if( NEVER(rc!=SQLITE_OK) ){ goto splitnode_out; } } if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){ goto splitnode_out; } for(i=0; iiRowid ){ newCellIsRight = 1; } if( rc!=SQLITE_OK ){ goto splitnode_out; } } if( pNode->iNode==1 ){ for(i=0; iiRowid, pLeft, iHeight); } if( rc==SQLITE_OK ){ rc = nodeRelease(pRtree, pRight); pRight = 0; } if( rc==SQLITE_OK ){ rc = nodeRelease(pRtree, pLeft); pLeft = 0; } splitnode_out: nodeRelease(pRtree, pRight); nodeRelease(pRtree, pLeft); sqlite3_free(aCell); return rc; } /* ** If node pLeaf is not the root of the r-tree and its pParent pointer is ** still NULL, load all ancestor nodes of pLeaf into memory and populate ** the pLeaf->pParent chain all the way up to the root node. ** ** This operation is required when a row is deleted (or updated - an update ** is implemented as a delete followed by an insert). SQLite provides the ** rowid of the row to delete, which can be used to find the leaf on which ** the entry resides (argument pLeaf). Once the leaf is located, this ** function is called to determine its ancestry. */ static int fixLeafParent(Rtree *pRtree, RtreeNode *pLeaf){ int rc = SQLITE_OK; RtreeNode *pChild = pLeaf; while( rc==SQLITE_OK && pChild->iNode!=1 && pChild->pParent==0 ){ int rc2 = SQLITE_OK; /* sqlite3_reset() return code */ sqlite3_bind_int64(pRtree->pReadParent, 1, pChild->iNode); rc = sqlite3_step(pRtree->pReadParent); if( rc==SQLITE_ROW ){ RtreeNode *pTest; /* Used to test for reference loops */ i64 iNode; /* Node number of parent node */ /* Before setting pChild->pParent, test that we are not creating a ** loop of references (as we would if, say, pChild==pParent). We don't ** want to do this as it leads to a memory leak when trying to delete ** the referenced counted node structures. */ iNode = sqlite3_column_int64(pRtree->pReadParent, 0); for(pTest=pLeaf; pTest && pTest->iNode!=iNode; pTest=pTest->pParent); if( pTest==0 ){ rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent); } } rc = sqlite3_reset(pRtree->pReadParent); if( rc==SQLITE_OK ) rc = rc2; if( rc==SQLITE_OK && !pChild->pParent ){ RTREE_IS_CORRUPT(pRtree); rc = SQLITE_CORRUPT_VTAB; } pChild = pChild->pParent; } return rc; } static int deleteCell(Rtree *, RtreeNode *, int, int); static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){ int rc; int rc2; RtreeNode *pParent = 0; int iCell; assert( pNode->nRef==1 ); /* Remove the entry in the parent cell. */ rc = nodeParentIndex(pRtree, pNode, &iCell); if( rc==SQLITE_OK ){ pParent = pNode->pParent; pNode->pParent = 0; rc = deleteCell(pRtree, pParent, iCell, iHeight+1); testcase( rc!=SQLITE_OK ); } rc2 = nodeRelease(pRtree, pParent); if( rc==SQLITE_OK ){ rc = rc2; } if( rc!=SQLITE_OK ){ return rc; } /* Remove the xxx_node entry. */ sqlite3_bind_int64(pRtree->pDeleteNode, 1, pNode->iNode); sqlite3_step(pRtree->pDeleteNode); if( SQLITE_OK!=(rc = sqlite3_reset(pRtree->pDeleteNode)) ){ return rc; } /* Remove the xxx_parent entry. */ sqlite3_bind_int64(pRtree->pDeleteParent, 1, pNode->iNode); sqlite3_step(pRtree->pDeleteParent); if( SQLITE_OK!=(rc = sqlite3_reset(pRtree->pDeleteParent)) ){ return rc; } /* Remove the node from the in-memory hash table and link it into ** the Rtree.pDeleted list. Its contents will be re-inserted later on. */ nodeHashDelete(pRtree, pNode); pNode->iNode = iHeight; pNode->pNext = pRtree->pDeleted; pNode->nRef++; pRtree->pDeleted = pNode; return SQLITE_OK; } static int fixBoundingBox(Rtree *pRtree, RtreeNode *pNode){ RtreeNode *pParent = pNode->pParent; int rc = SQLITE_OK; if( pParent ){ int ii; int nCell = NCELL(pNode); RtreeCell box; /* Bounding box for pNode */ nodeGetCell(pRtree, pNode, 0, &box); for(ii=1; iiiNode; rc = nodeParentIndex(pRtree, pNode, &ii); if( rc==SQLITE_OK ){ nodeOverwriteCell(pRtree, pParent, &box, ii); rc = fixBoundingBox(pRtree, pParent); } } return rc; } /* ** Delete the cell at index iCell of node pNode. After removing the ** cell, adjust the r-tree data structure if required. */ static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){ RtreeNode *pParent; int rc; if( SQLITE_OK!=(rc = fixLeafParent(pRtree, pNode)) ){ return rc; } /* Remove the cell from the node. This call just moves bytes around ** the in-memory node image, so it cannot fail. */ nodeDeleteCell(pRtree, pNode, iCell); /* If the node is not the tree root and now has less than the minimum ** number of cells, remove it from the tree. Otherwise, update the ** cell in the parent node so that it tightly contains the updated ** node. */ pParent = pNode->pParent; assert( pParent || pNode->iNode==1 ); if( pParent ){ if( NCELL(pNode)nDim; iDim++){ aCenterCoord[iDim] += DCOORD(aCell[ii].aCoord[iDim*2]); aCenterCoord[iDim] += DCOORD(aCell[ii].aCoord[iDim*2+1]); } } for(iDim=0; iDimnDim; iDim++){ aCenterCoord[iDim] = (aCenterCoord[iDim]/(nCell*(RtreeDValue)2)); } for(ii=0; iinDim; iDim++){ RtreeDValue coord = (DCOORD(aCell[ii].aCoord[iDim*2+1]) - DCOORD(aCell[ii].aCoord[iDim*2])); aDistance[ii] += (coord-aCenterCoord[iDim])*(coord-aCenterCoord[iDim]); } } SortByDistance(aOrder, nCell, aDistance, aSpare); nodeZero(pRtree, pNode); for(ii=0; rc==SQLITE_OK && ii<(nCell-(RTREE_MINCELLS(pRtree)+1)); ii++){ RtreeCell *p = &aCell[aOrder[ii]]; nodeInsertCell(pRtree, pNode, p); if( p->iRowid==pCell->iRowid ){ if( iHeight==0 ){ rc = rowidWrite(pRtree, p->iRowid, pNode->iNode); }else{ rc = parentWrite(pRtree, p->iRowid, pNode->iNode); } } } if( rc==SQLITE_OK ){ rc = fixBoundingBox(pRtree, pNode); } for(; rc==SQLITE_OK && iiiNode currently contains ** the height of the sub-tree headed by the cell. */ RtreeNode *pInsert; RtreeCell *p = &aCell[aOrder[ii]]; rc = ChooseLeaf(pRtree, p, iHeight, &pInsert); if( rc==SQLITE_OK ){ int rc2; rc = rtreeInsertCell(pRtree, pInsert, p, iHeight); rc2 = nodeRelease(pRtree, pInsert); if( rc==SQLITE_OK ){ rc = rc2; } } } sqlite3_free(aCell); return rc; } /* ** Insert cell pCell into node pNode. Node pNode is the head of a ** subtree iHeight high (leaf nodes have iHeight==0). */ static int rtreeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ){ int rc = SQLITE_OK; if( iHeight>0 ){ RtreeNode *pChild = nodeHashLookup(pRtree, pCell->iRowid); if( pChild ){ nodeRelease(pRtree, pChild->pParent); nodeReference(pNode); pChild->pParent = pNode; } } if( nodeInsertCell(pRtree, pNode, pCell) ){ if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){ rc = SplitNode(pRtree, pNode, pCell, iHeight); }else{ pRtree->iReinsertHeight = iHeight; rc = Reinsert(pRtree, pNode, pCell, iHeight); } }else{ rc = AdjustTree(pRtree, pNode, pCell); if( ALWAYS(rc==SQLITE_OK) ){ if( iHeight==0 ){ rc = rowidWrite(pRtree, pCell->iRowid, pNode->iNode); }else{ rc = parentWrite(pRtree, pCell->iRowid, pNode->iNode); } } } return rc; } static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){ int ii; int rc = SQLITE_OK; int nCell = NCELL(pNode); for(ii=0; rc==SQLITE_OK && iiiNode currently contains ** the height of the sub-tree headed by the cell. */ rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert); if( rc==SQLITE_OK ){ int rc2; rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode); rc2 = nodeRelease(pRtree, pInsert); if( rc==SQLITE_OK ){ rc = rc2; } } } return rc; } /* ** Select a currently unused rowid for a new r-tree record. */ static int rtreeNewRowid(Rtree *pRtree, i64 *piRowid){ int rc; sqlite3_bind_null(pRtree->pWriteRowid, 1); sqlite3_bind_null(pRtree->pWriteRowid, 2); sqlite3_step(pRtree->pWriteRowid); rc = sqlite3_reset(pRtree->pWriteRowid); *piRowid = sqlite3_last_insert_rowid(pRtree->db); return rc; } /* ** Remove the entry with rowid=iDelete from the r-tree structure. */ static int rtreeDeleteRowid(Rtree *pRtree, sqlite3_int64 iDelete){ int rc; /* Return code */ RtreeNode *pLeaf = 0; /* Leaf node containing record iDelete */ int iCell; /* Index of iDelete cell in pLeaf */ RtreeNode *pRoot = 0; /* Root node of rtree structure */ /* Obtain a reference to the root node to initialize Rtree.iDepth */ rc = nodeAcquire(pRtree, 1, 0, &pRoot); /* Obtain a reference to the leaf node that contains the entry ** about to be deleted. */ if( rc==SQLITE_OK ){ rc = findLeafNode(pRtree, iDelete, &pLeaf, 0); } #ifdef CORRUPT_DB assert( pLeaf!=0 || rc!=SQLITE_OK || CORRUPT_DB ); #endif /* Delete the cell in question from the leaf node. */ if( rc==SQLITE_OK && pLeaf ){ int rc2; rc = nodeRowidIndex(pRtree, pLeaf, iDelete, &iCell); if( rc==SQLITE_OK ){ rc = deleteCell(pRtree, pLeaf, iCell, 0); } rc2 = nodeRelease(pRtree, pLeaf); if( rc==SQLITE_OK ){ rc = rc2; } } /* Delete the corresponding entry in the _rowid table. */ if( rc==SQLITE_OK ){ sqlite3_bind_int64(pRtree->pDeleteRowid, 1, iDelete); sqlite3_step(pRtree->pDeleteRowid); rc = sqlite3_reset(pRtree->pDeleteRowid); } /* Check if the root node now has exactly one child. If so, remove ** it, schedule the contents of the child for reinsertion and ** reduce the tree height by one. ** ** This is equivalent to copying the contents of the child into ** the root node (the operation that Gutman's paper says to perform ** in this scenario). */ if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){ int rc2; RtreeNode *pChild = 0; i64 iChild = nodeGetRowid(pRtree, pRoot, 0); rc = nodeAcquire(pRtree, iChild, pRoot, &pChild); /* tag-20210916a */ if( rc==SQLITE_OK ){ rc = removeNode(pRtree, pChild, pRtree->iDepth-1); } rc2 = nodeRelease(pRtree, pChild); if( rc==SQLITE_OK ) rc = rc2; if( rc==SQLITE_OK ){ pRtree->iDepth--; writeInt16(pRoot->zData, pRtree->iDepth); pRoot->isDirty = 1; } } /* Re-insert the contents of any underfull nodes removed from the tree. */ for(pLeaf=pRtree->pDeleted; pLeaf; pLeaf=pRtree->pDeleted){ if( rc==SQLITE_OK ){ rc = reinsertNodeContent(pRtree, pLeaf); } pRtree->pDeleted = pLeaf->pNext; pRtree->nNodeRef--; sqlite3_free(pLeaf); } /* Release the reference to the root node. */ if( rc==SQLITE_OK ){ rc = nodeRelease(pRtree, pRoot); }else{ nodeRelease(pRtree, pRoot); } return rc; } /* ** Rounding constants for float->double conversion. */ #define RNDTOWARDS (1.0 - 1.0/8388608.0) /* Round towards zero */ #define RNDAWAY (1.0 + 1.0/8388608.0) /* Round away from zero */ #if !defined(SQLITE_RTREE_INT_ONLY) /* ** Convert an sqlite3_value into an RtreeValue (presumably a float) ** while taking care to round toward negative or positive, respectively. */ static RtreeValue rtreeValueDown(sqlite3_value *v){ double d = sqlite3_value_double(v); float f = (float)d; if( f>d ){ f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS)); } return f; } static RtreeValue rtreeValueUp(sqlite3_value *v){ double d = sqlite3_value_double(v); float f = (float)d; if( fbase.zErrMsg) to an appropriate value and returns ** SQLITE_CONSTRAINT. ** ** Parameter iCol is the index of the leftmost column involved in the ** constraint failure. If it is 0, then the constraint that failed is ** the unique constraint on the id column. Otherwise, it is the rtree ** (c1<=c2) constraint on columns iCol and iCol+1 that has failed. ** ** If an OOM occurs, SQLITE_NOMEM is returned instead of SQLITE_CONSTRAINT. */ static int rtreeConstraintError(Rtree *pRtree, int iCol){ sqlite3_stmt *pStmt = 0; char *zSql; int rc; assert( iCol==0 || iCol%2 ); zSql = sqlite3_mprintf("SELECT * FROM %Q.%Q", pRtree->zDb, pRtree->zName); if( zSql ){ rc = sqlite3_prepare_v2(pRtree->db, zSql, -1, &pStmt, 0); }else{ rc = SQLITE_NOMEM; } sqlite3_free(zSql); if( rc==SQLITE_OK ){ if( iCol==0 ){ const char *zCol = sqlite3_column_name(pStmt, 0); pRtree->base.zErrMsg = sqlite3_mprintf( "UNIQUE constraint failed: %s.%s", pRtree->zName, zCol ); }else{ const char *zCol1 = sqlite3_column_name(pStmt, iCol); const char *zCol2 = sqlite3_column_name(pStmt, iCol+1); pRtree->base.zErrMsg = sqlite3_mprintf( "rtree constraint failed: %s.(%s<=%s)", pRtree->zName, zCol1, zCol2 ); } } sqlite3_finalize(pStmt); return (rc==SQLITE_OK ? SQLITE_CONSTRAINT : rc); } /* ** The xUpdate method for rtree module virtual tables. */ static int rtreeUpdate( sqlite3_vtab *pVtab, int nData, sqlite3_value **aData, sqlite_int64 *pRowid ){ Rtree *pRtree = (Rtree *)pVtab; int rc = SQLITE_OK; RtreeCell cell; /* New cell to insert if nData>1 */ int bHaveRowid = 0; /* Set to 1 after new rowid is determined */ if( pRtree->nNodeRef ){ /* Unable to write to the btree while another cursor is reading from it, ** since the write might do a rebalance which would disrupt the read ** cursor. */ return SQLITE_LOCKED_VTAB; } rtreeReference(pRtree); assert(nData>=1); cell.iRowid = 0; /* Used only to suppress a compiler warning */ /* Constraint handling. A write operation on an r-tree table may return ** SQLITE_CONSTRAINT for two reasons: ** ** 1. A duplicate rowid value, or ** 2. The supplied data violates the "x2>=x1" constraint. ** ** In the first case, if the conflict-handling mode is REPLACE, then ** the conflicting row can be removed before proceeding. In the second ** case, SQLITE_CONSTRAINT must be returned regardless of the ** conflict-handling mode specified by the user. */ if( nData>1 ){ int ii; int nn = nData - 4; if( nn > pRtree->nDim2 ) nn = pRtree->nDim2; /* Populate the cell.aCoord[] array. The first coordinate is aData[3]. ** ** NB: nData can only be less than nDim*2+3 if the rtree is mis-declared ** with "column" that are interpreted as table constraints. ** Example: CREATE VIRTUAL TABLE bad USING rtree(x,y,CHECK(y>5)); ** This problem was discovered after years of use, so we silently ignore ** these kinds of misdeclared tables to avoid breaking any legacy. */ #ifndef SQLITE_RTREE_INT_ONLY if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ for(ii=0; iicell.aCoord[ii+1].f ){ rc = rtreeConstraintError(pRtree, ii+1); goto constraint; } } }else #endif { for(ii=0; iicell.aCoord[ii+1].i ){ rc = rtreeConstraintError(pRtree, ii+1); goto constraint; } } } /* If a rowid value was supplied, check if it is already present in ** the table. If so, the constraint has failed. */ if( sqlite3_value_type(aData[2])!=SQLITE_NULL ){ cell.iRowid = sqlite3_value_int64(aData[2]); if( sqlite3_value_type(aData[0])==SQLITE_NULL || sqlite3_value_int64(aData[0])!=cell.iRowid ){ int steprc; sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid); steprc = sqlite3_step(pRtree->pReadRowid); rc = sqlite3_reset(pRtree->pReadRowid); if( SQLITE_ROW==steprc ){ if( sqlite3_vtab_on_conflict(pRtree->db)==SQLITE_REPLACE ){ rc = rtreeDeleteRowid(pRtree, cell.iRowid); }else{ rc = rtreeConstraintError(pRtree, 0); goto constraint; } } } bHaveRowid = 1; } } /* If aData[0] is not an SQL NULL value, it is the rowid of a ** record to delete from the r-tree table. The following block does ** just that. */ if( sqlite3_value_type(aData[0])!=SQLITE_NULL ){ rc = rtreeDeleteRowid(pRtree, sqlite3_value_int64(aData[0])); } /* If the aData[] array contains more than one element, elements ** (aData[2]..aData[argc-1]) contain a new record to insert into ** the r-tree structure. */ if( rc==SQLITE_OK && nData>1 ){ /* Insert the new record into the r-tree */ RtreeNode *pLeaf = 0; /* Figure out the rowid of the new row. */ if( bHaveRowid==0 ){ rc = rtreeNewRowid(pRtree, &cell.iRowid); } *pRowid = cell.iRowid; if( rc==SQLITE_OK ){ rc = ChooseLeaf(pRtree, &cell, 0, &pLeaf); } if( rc==SQLITE_OK ){ int rc2; pRtree->iReinsertHeight = -1; rc = rtreeInsertCell(pRtree, pLeaf, &cell, 0); rc2 = nodeRelease(pRtree, pLeaf); if( rc==SQLITE_OK ){ rc = rc2; } } if( rc==SQLITE_OK && pRtree->nAux ){ sqlite3_stmt *pUp = pRtree->pWriteAux; int jj; sqlite3_bind_int64(pUp, 1, *pRowid); for(jj=0; jjnAux; jj++){ sqlite3_bind_value(pUp, jj+2, aData[pRtree->nDim2+3+jj]); } sqlite3_step(pUp); rc = sqlite3_reset(pUp); } } constraint: rtreeRelease(pRtree); return rc; } /* ** Called when a transaction starts. */ static int rtreeBeginTransaction(sqlite3_vtab *pVtab){ Rtree *pRtree = (Rtree *)pVtab; assert( pRtree->inWrTrans==0 ); pRtree->inWrTrans++; return SQLITE_OK; } /* ** Called when a transaction completes (either by COMMIT or ROLLBACK). ** The sqlite3_blob object should be released at this point. */ static int rtreeEndTransaction(sqlite3_vtab *pVtab){ Rtree *pRtree = (Rtree *)pVtab; pRtree->inWrTrans = 0; nodeBlobReset(pRtree); return SQLITE_OK; } /* ** The xRename method for rtree module virtual tables. */ static int rtreeRename(sqlite3_vtab *pVtab, const char *zNewName){ Rtree *pRtree = (Rtree *)pVtab; int rc = SQLITE_NOMEM; char *zSql = sqlite3_mprintf( "ALTER TABLE %Q.'%q_node' RENAME TO \"%w_node\";" "ALTER TABLE %Q.'%q_parent' RENAME TO \"%w_parent\";" "ALTER TABLE %Q.'%q_rowid' RENAME TO \"%w_rowid\";" , pRtree->zDb, pRtree->zName, zNewName , pRtree->zDb, pRtree->zName, zNewName , pRtree->zDb, pRtree->zName, zNewName ); if( zSql ){ nodeBlobReset(pRtree); rc = sqlite3_exec(pRtree->db, zSql, 0, 0, 0); sqlite3_free(zSql); } return rc; } /* ** The xSavepoint method. ** ** This module does not need to do anything to support savepoints. However, ** it uses this hook to close any open blob handle. This is done because a ** DROP TABLE command - which fortunately always opens a savepoint - cannot ** succeed if there are any open blob handles. i.e. if the blob handle were ** not closed here, the following would fail: ** ** BEGIN; ** INSERT INTO rtree... ** DROP TABLE ; -- Would fail with SQLITE_LOCKED ** COMMIT; */ static int rtreeSavepoint(sqlite3_vtab *pVtab, int iSavepoint){ Rtree *pRtree = (Rtree *)pVtab; u8 iwt = pRtree->inWrTrans; UNUSED_PARAMETER(iSavepoint); pRtree->inWrTrans = 0; nodeBlobReset(pRtree); pRtree->inWrTrans = iwt; return SQLITE_OK; } /* ** This function populates the pRtree->nRowEst variable with an estimate ** of the number of rows in the virtual table. If possible, this is based ** on sqlite_stat1 data. Otherwise, use RTREE_DEFAULT_ROWEST. */ static int rtreeQueryStat1(sqlite3 *db, Rtree *pRtree){ const char *zFmt = "SELECT stat FROM %Q.sqlite_stat1 WHERE tbl = '%q_rowid'"; char *zSql; sqlite3_stmt *p; int rc; i64 nRow = RTREE_MIN_ROWEST; rc = sqlite3_table_column_metadata( db, pRtree->zDb, "sqlite_stat1",0,0,0,0,0,0 ); if( rc!=SQLITE_OK ){ pRtree->nRowEst = RTREE_DEFAULT_ROWEST; return rc==SQLITE_ERROR ? SQLITE_OK : rc; } zSql = sqlite3_mprintf(zFmt, pRtree->zDb, pRtree->zName); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(db, zSql, -1, &p, 0); if( rc==SQLITE_OK ){ if( sqlite3_step(p)==SQLITE_ROW ) nRow = sqlite3_column_int64(p, 0); rc = sqlite3_finalize(p); } sqlite3_free(zSql); } pRtree->nRowEst = MAX(nRow, RTREE_MIN_ROWEST); return rc; } /* ** Return true if zName is the extension on one of the shadow tables used ** by this module. */ static int rtreeShadowName(const char *zName){ static const char *azName[] = { "node", "parent", "rowid" }; unsigned int i; for(i=0; idb = db; if( isCreate ){ char *zCreate; sqlite3_str *p = sqlite3_str_new(db); int ii; sqlite3_str_appendf(p, "CREATE TABLE \"%w\".\"%w_rowid\"(rowid INTEGER PRIMARY KEY,nodeno", zDb, zPrefix); for(ii=0; iinAux; ii++){ sqlite3_str_appendf(p,",a%d",ii); } sqlite3_str_appendf(p, ");CREATE TABLE \"%w\".\"%w_node\"(nodeno INTEGER PRIMARY KEY,data);", zDb, zPrefix); sqlite3_str_appendf(p, "CREATE TABLE \"%w\".\"%w_parent\"(nodeno INTEGER PRIMARY KEY,parentnode);", zDb, zPrefix); sqlite3_str_appendf(p, "INSERT INTO \"%w\".\"%w_node\"VALUES(1,zeroblob(%d))", zDb, zPrefix, pRtree->iNodeSize); zCreate = sqlite3_str_finish(p); if( !zCreate ){ return SQLITE_NOMEM; } rc = sqlite3_exec(db, zCreate, 0, 0, 0); sqlite3_free(zCreate); if( rc!=SQLITE_OK ){ return rc; } } appStmt[0] = &pRtree->pWriteNode; appStmt[1] = &pRtree->pDeleteNode; appStmt[2] = &pRtree->pReadRowid; appStmt[3] = &pRtree->pWriteRowid; appStmt[4] = &pRtree->pDeleteRowid; appStmt[5] = &pRtree->pReadParent; appStmt[6] = &pRtree->pWriteParent; appStmt[7] = &pRtree->pDeleteParent; rc = rtreeQueryStat1(db, pRtree); for(i=0; inAux==0 ){ zFormat = azSql[i]; }else { /* An UPSERT is very slightly slower than REPLACE, but it is needed ** if there are auxiliary columns */ zFormat = "INSERT INTO\"%w\".\"%w_rowid\"(rowid,nodeno)VALUES(?1,?2)" "ON CONFLICT(rowid)DO UPDATE SET nodeno=excluded.nodeno"; } zSql = sqlite3_mprintf(zFormat, zDb, zPrefix); if( zSql ){ rc = sqlite3_prepare_v3(db, zSql, -1, f, appStmt[i], 0); }else{ rc = SQLITE_NOMEM; } sqlite3_free(zSql); } if( pRtree->nAux ){ pRtree->zReadAuxSql = sqlite3_mprintf( "SELECT * FROM \"%w\".\"%w_rowid\" WHERE rowid=?1", zDb, zPrefix); if( pRtree->zReadAuxSql==0 ){ rc = SQLITE_NOMEM; }else{ sqlite3_str *p = sqlite3_str_new(db); int ii; char *zSql; sqlite3_str_appendf(p, "UPDATE \"%w\".\"%w_rowid\"SET ", zDb, zPrefix); for(ii=0; iinAux; ii++){ if( ii ) sqlite3_str_append(p, ",", 1); #ifdef SQLITE_ENABLE_GEOPOLY if( iinAuxNotNull ){ sqlite3_str_appendf(p,"a%d=coalesce(?%d,a%d)",ii,ii+2,ii); }else #endif { sqlite3_str_appendf(p,"a%d=?%d",ii,ii+2); } } sqlite3_str_appendf(p, " WHERE rowid=?1"); zSql = sqlite3_str_finish(p); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v3(db, zSql, -1, f, &pRtree->pWriteAux, 0); sqlite3_free(zSql); } } } return rc; } /* ** The second argument to this function contains the text of an SQL statement ** that returns a single integer value. The statement is compiled and executed ** using database connection db. If successful, the integer value returned ** is written to *piVal and SQLITE_OK returned. Otherwise, an SQLite error ** code is returned and the value of *piVal after returning is not defined. */ static int getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal){ int rc = SQLITE_NOMEM; if( zSql ){ sqlite3_stmt *pStmt = 0; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pStmt) ){ *piVal = sqlite3_column_int(pStmt, 0); } rc = sqlite3_finalize(pStmt); } } return rc; } /* ** This function is called from within the xConnect() or xCreate() method to ** determine the node-size used by the rtree table being created or connected ** to. If successful, pRtree->iNodeSize is populated and SQLITE_OK returned. ** Otherwise, an SQLite error code is returned. ** ** If this function is being called as part of an xConnect(), then the rtree ** table already exists. In this case the node-size is determined by inspecting ** the root node of the tree. ** ** Otherwise, for an xCreate(), use 64 bytes less than the database page-size. ** This ensures that each node is stored on a single database page. If the ** database page-size is so large that more than RTREE_MAXCELLS entries ** would fit in a single node, use a smaller node-size. */ static int getNodeSize( sqlite3 *db, /* Database handle */ Rtree *pRtree, /* Rtree handle */ int isCreate, /* True for xCreate, false for xConnect */ char **pzErr /* OUT: Error message, if any */ ){ int rc; char *zSql; if( isCreate ){ int iPageSize = 0; zSql = sqlite3_mprintf("PRAGMA %Q.page_size", pRtree->zDb); rc = getIntFromStmt(db, zSql, &iPageSize); if( rc==SQLITE_OK ){ pRtree->iNodeSize = iPageSize-64; if( (4+pRtree->nBytesPerCell*RTREE_MAXCELLS)iNodeSize ){ pRtree->iNodeSize = 4+pRtree->nBytesPerCell*RTREE_MAXCELLS; } }else{ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } }else{ zSql = sqlite3_mprintf( "SELECT length(data) FROM '%q'.'%q_node' WHERE nodeno = 1", pRtree->zDb, pRtree->zName ); rc = getIntFromStmt(db, zSql, &pRtree->iNodeSize); if( rc!=SQLITE_OK ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); }else if( pRtree->iNodeSize<(512-64) ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); *pzErr = sqlite3_mprintf("undersize RTree blobs in \"%q_node\"", pRtree->zName); } } sqlite3_free(zSql); return rc; } /* ** Return the length of a token */ static int rtreeTokenLength(const char *z){ int dummy = 0; return sqlite3GetToken((const unsigned char*)z,&dummy); } /* ** This function is the implementation of both the xConnect and xCreate ** methods of the r-tree virtual table. ** ** argv[0] -> module name ** argv[1] -> database name ** argv[2] -> table name ** argv[...] -> column names... */ static int rtreeInit( sqlite3 *db, /* Database connection */ void *pAux, /* One of the RTREE_COORD_* constants */ int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */ sqlite3_vtab **ppVtab, /* OUT: New virtual table */ char **pzErr, /* OUT: Error message, if any */ int isCreate /* True for xCreate, false for xConnect */ ){ int rc = SQLITE_OK; Rtree *pRtree; int nDb; /* Length of string argv[1] */ int nName; /* Length of string argv[2] */ int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32); sqlite3_str *pSql; char *zSql; int ii = 4; int iErr; const char *aErrMsg[] = { 0, /* 0 */ "Wrong number of columns for an rtree table", /* 1 */ "Too few columns for an rtree table", /* 2 */ "Too many columns for an rtree table", /* 3 */ "Auxiliary rtree columns must be last" /* 4 */ }; assert( RTREE_MAX_AUX_COLUMN<256 ); /* Aux columns counted by a u8 */ if( argc<6 || argc>RTREE_MAX_AUX_COLUMN+3 ){ *pzErr = sqlite3_mprintf("%s", aErrMsg[2 + (argc>=6)]); return SQLITE_ERROR; } sqlite3_vtab_config(db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); /* Allocate the sqlite3_vtab structure */ nDb = (int)strlen(argv[1]); nName = (int)strlen(argv[2]); pRtree = (Rtree *)sqlite3_malloc64(sizeof(Rtree)+nDb+nName+2); if( !pRtree ){ return SQLITE_NOMEM; } memset(pRtree, 0, sizeof(Rtree)+nDb+nName+2); pRtree->nBusy = 1; pRtree->base.pModule = &rtreeModule; pRtree->zDb = (char *)&pRtree[1]; pRtree->zName = &pRtree->zDb[nDb+1]; pRtree->eCoordType = (u8)eCoordType; memcpy(pRtree->zDb, argv[1], nDb); memcpy(pRtree->zName, argv[2], nName); /* Create/Connect to the underlying relational database schema. If ** that is successful, call sqlite3_declare_vtab() to configure ** the r-tree table schema. */ pSql = sqlite3_str_new(db); sqlite3_str_appendf(pSql, "CREATE TABLE x(%.*s INT", rtreeTokenLength(argv[3]), argv[3]); for(ii=4; iinAux++; sqlite3_str_appendf(pSql, ",%.*s", rtreeTokenLength(zArg+1), zArg+1); }else if( pRtree->nAux>0 ){ break; }else{ static const char *azFormat[] = {",%.*s REAL", ",%.*s INT"}; pRtree->nDim2++; sqlite3_str_appendf(pSql, azFormat[eCoordType], rtreeTokenLength(zArg), zArg); } } sqlite3_str_appendf(pSql, ");"); zSql = sqlite3_str_finish(pSql); if( !zSql ){ rc = SQLITE_NOMEM; }else if( iinDim = pRtree->nDim2/2; if( pRtree->nDim<1 ){ iErr = 2; }else if( pRtree->nDim2>RTREE_MAX_DIMENSIONS*2 ){ iErr = 3; }else if( pRtree->nDim2 % 2 ){ iErr = 1; }else{ iErr = 0; } if( iErr ){ *pzErr = sqlite3_mprintf("%s", aErrMsg[iErr]); goto rtreeInit_fail; } pRtree->nBytesPerCell = 8 + pRtree->nDim2*4; /* Figure out the node size to use. */ rc = getNodeSize(db, pRtree, isCreate, pzErr); if( rc ) goto rtreeInit_fail; rc = rtreeSqlInit(pRtree, db, argv[1], argv[2], isCreate); if( rc ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); goto rtreeInit_fail; } *ppVtab = (sqlite3_vtab *)pRtree; return SQLITE_OK; rtreeInit_fail: if( rc==SQLITE_OK ) rc = SQLITE_ERROR; assert( *ppVtab==0 ); assert( pRtree->nBusy==1 ); rtreeRelease(pRtree); return rc; } /* ** Implementation of a scalar function that decodes r-tree nodes to ** human readable strings. This can be used for debugging and analysis. ** ** The scalar function takes two arguments: (1) the number of dimensions ** to the rtree (between 1 and 5, inclusive) and (2) a blob of data containing ** an r-tree node. For a two-dimensional r-tree structure called "rt", to ** deserialize all nodes, a statement like: ** ** SELECT rtreenode(2, data) FROM rt_node; ** ** The human readable string takes the form of a Tcl list with one ** entry for each cell in the r-tree node. Each entry is itself a ** list, containing the 8-byte rowid/pageno followed by the ** *2 coordinates. */ static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){ RtreeNode node; Rtree tree; int ii; int nData; int errCode; sqlite3_str *pOut; UNUSED_PARAMETER(nArg); memset(&node, 0, sizeof(RtreeNode)); memset(&tree, 0, sizeof(Rtree)); tree.nDim = (u8)sqlite3_value_int(apArg[0]); if( tree.nDim<1 || tree.nDim>5 ) return; tree.nDim2 = tree.nDim*2; tree.nBytesPerCell = 8 + 8 * tree.nDim; node.zData = (u8 *)sqlite3_value_blob(apArg[1]); if( node.zData==0 ) return; nData = sqlite3_value_bytes(apArg[1]); if( nData<4 ) return; if( nData0 ) sqlite3_str_append(pOut, " ", 1); sqlite3_str_appendf(pOut, "{%lld", cell.iRowid); for(jj=0; jjrc==SQLITE_OK ) pCheck->rc = rc; } /* ** The second and subsequent arguments to this function are a format string ** and printf style arguments. This function formats the string and attempts ** to compile it as an SQL statement. ** ** If successful, a pointer to the new SQL statement is returned. Otherwise, ** NULL is returned and an error code left in RtreeCheck.rc. */ static sqlite3_stmt *rtreeCheckPrepare( RtreeCheck *pCheck, /* RtreeCheck object */ const char *zFmt, ... /* Format string and trailing args */ ){ va_list ap; char *z; sqlite3_stmt *pRet = 0; va_start(ap, zFmt); z = sqlite3_vmprintf(zFmt, ap); if( pCheck->rc==SQLITE_OK ){ if( z==0 ){ pCheck->rc = SQLITE_NOMEM; }else{ pCheck->rc = sqlite3_prepare_v2(pCheck->db, z, -1, &pRet, 0); } } sqlite3_free(z); va_end(ap); return pRet; } /* ** The second and subsequent arguments to this function are a printf() ** style format string and arguments. This function formats the string and ** appends it to the report being accumuated in pCheck. */ static void rtreeCheckAppendMsg(RtreeCheck *pCheck, const char *zFmt, ...){ va_list ap; va_start(ap, zFmt); if( pCheck->rc==SQLITE_OK && pCheck->nErrrc = SQLITE_NOMEM; }else{ pCheck->zReport = sqlite3_mprintf("%z%s%z", pCheck->zReport, (pCheck->zReport ? "\n" : ""), z ); if( pCheck->zReport==0 ){ pCheck->rc = SQLITE_NOMEM; } } pCheck->nErr++; } va_end(ap); } /* ** This function is a no-op if there is already an error code stored ** in the RtreeCheck object indicated by the first argument. NULL is ** returned in this case. ** ** Otherwise, the contents of rtree table node iNode are loaded from ** the database and copied into a buffer obtained from sqlite3_malloc(). ** If no error occurs, a pointer to the buffer is returned and (*pnNode) ** is set to the size of the buffer in bytes. ** ** Or, if an error does occur, NULL is returned and an error code left ** in the RtreeCheck object. The final value of *pnNode is undefined in ** this case. */ static u8 *rtreeCheckGetNode(RtreeCheck *pCheck, i64 iNode, int *pnNode){ u8 *pRet = 0; /* Return value */ if( pCheck->rc==SQLITE_OK && pCheck->pGetNode==0 ){ pCheck->pGetNode = rtreeCheckPrepare(pCheck, "SELECT data FROM %Q.'%q_node' WHERE nodeno=?", pCheck->zDb, pCheck->zTab ); } if( pCheck->rc==SQLITE_OK ){ sqlite3_bind_int64(pCheck->pGetNode, 1, iNode); if( sqlite3_step(pCheck->pGetNode)==SQLITE_ROW ){ int nNode = sqlite3_column_bytes(pCheck->pGetNode, 0); const u8 *pNode = (const u8*)sqlite3_column_blob(pCheck->pGetNode, 0); pRet = sqlite3_malloc64(nNode); if( pRet==0 ){ pCheck->rc = SQLITE_NOMEM; }else{ memcpy(pRet, pNode, nNode); *pnNode = nNode; } } rtreeCheckReset(pCheck, pCheck->pGetNode); if( pCheck->rc==SQLITE_OK && pRet==0 ){ rtreeCheckAppendMsg(pCheck, "Node %lld missing from database", iNode); } } return pRet; } /* ** This function is used to check that the %_parent (if bLeaf==0) or %_rowid ** (if bLeaf==1) table contains a specified entry. The schemas of the ** two tables are: ** ** CREATE TABLE %_parent(nodeno INTEGER PRIMARY KEY, parentnode INTEGER) ** CREATE TABLE %_rowid(rowid INTEGER PRIMARY KEY, nodeno INTEGER, ...) ** ** In both cases, this function checks that there exists an entry with ** IPK value iKey and the second column set to iVal. ** */ static void rtreeCheckMapping( RtreeCheck *pCheck, /* RtreeCheck object */ int bLeaf, /* True for a leaf cell, false for interior */ i64 iKey, /* Key for mapping */ i64 iVal /* Expected value for mapping */ ){ int rc; sqlite3_stmt *pStmt; const char *azSql[2] = { "SELECT parentnode FROM %Q.'%q_parent' WHERE nodeno=?1", "SELECT nodeno FROM %Q.'%q_rowid' WHERE rowid=?1" }; assert( bLeaf==0 || bLeaf==1 ); if( pCheck->aCheckMapping[bLeaf]==0 ){ pCheck->aCheckMapping[bLeaf] = rtreeCheckPrepare(pCheck, azSql[bLeaf], pCheck->zDb, pCheck->zTab ); } if( pCheck->rc!=SQLITE_OK ) return; pStmt = pCheck->aCheckMapping[bLeaf]; sqlite3_bind_int64(pStmt, 1, iKey); rc = sqlite3_step(pStmt); if( rc==SQLITE_DONE ){ rtreeCheckAppendMsg(pCheck, "Mapping (%lld -> %lld) missing from %s table", iKey, iVal, (bLeaf ? "%_rowid" : "%_parent") ); }else if( rc==SQLITE_ROW ){ i64 ii = sqlite3_column_int64(pStmt, 0); if( ii!=iVal ){ rtreeCheckAppendMsg(pCheck, "Found (%lld -> %lld) in %s table, expected (%lld -> %lld)", iKey, ii, (bLeaf ? "%_rowid" : "%_parent"), iKey, iVal ); } } rtreeCheckReset(pCheck, pStmt); } /* ** Argument pCell points to an array of coordinates stored on an rtree page. ** This function checks that the coordinates are internally consistent (no ** x1>x2 conditions) and adds an error message to the RtreeCheck object ** if they are not. ** ** Additionally, if pParent is not NULL, then it is assumed to point to ** the array of coordinates on the parent page that bound the page ** containing pCell. In this case it is also verified that the two ** sets of coordinates are mutually consistent and an error message added ** to the RtreeCheck object if they are not. */ static void rtreeCheckCellCoord( RtreeCheck *pCheck, i64 iNode, /* Node id to use in error messages */ int iCell, /* Cell number to use in error messages */ u8 *pCell, /* Pointer to cell coordinates */ u8 *pParent /* Pointer to parent coordinates */ ){ RtreeCoord c1, c2; RtreeCoord p1, p2; int i; for(i=0; inDim; i++){ readCoord(&pCell[4*2*i], &c1); readCoord(&pCell[4*(2*i + 1)], &c2); /* printf("%e, %e\n", c1.u.f, c2.u.f); */ if( pCheck->bInt ? c1.i>c2.i : c1.f>c2.f ){ rtreeCheckAppendMsg(pCheck, "Dimension %d of cell %d on node %lld is corrupt", i, iCell, iNode ); } if( pParent ){ readCoord(&pParent[4*2*i], &p1); readCoord(&pParent[4*(2*i + 1)], &p2); if( (pCheck->bInt ? c1.ibInt ? c2.i>p2.i : c2.f>p2.f) ){ rtreeCheckAppendMsg(pCheck, "Dimension %d of cell %d on node %lld is corrupt relative to parent" , i, iCell, iNode ); } } } } /* ** Run rtreecheck() checks on node iNode, which is at depth iDepth within ** the r-tree structure. Argument aParent points to the array of coordinates ** that bound node iNode on the parent node. ** ** If any problems are discovered, an error message is appended to the ** report accumulated in the RtreeCheck object. */ static void rtreeCheckNode( RtreeCheck *pCheck, int iDepth, /* Depth of iNode (0==leaf) */ u8 *aParent, /* Buffer containing parent coords */ i64 iNode /* Node to check */ ){ u8 *aNode = 0; int nNode = 0; assert( iNode==1 || aParent!=0 ); assert( pCheck->nDim>0 ); aNode = rtreeCheckGetNode(pCheck, iNode, &nNode); if( aNode ){ if( nNode<4 ){ rtreeCheckAppendMsg(pCheck, "Node %lld is too small (%d bytes)", iNode, nNode ); }else{ int nCell; /* Number of cells on page */ int i; /* Used to iterate through cells */ if( aParent==0 ){ iDepth = readInt16(aNode); if( iDepth>RTREE_MAX_DEPTH ){ rtreeCheckAppendMsg(pCheck, "Rtree depth out of range (%d)", iDepth); sqlite3_free(aNode); return; } } nCell = readInt16(&aNode[2]); if( (4 + nCell*(8 + pCheck->nDim*2*4))>nNode ){ rtreeCheckAppendMsg(pCheck, "Node %lld is too small for cell count of %d (%d bytes)", iNode, nCell, nNode ); }else{ for(i=0; inDim*2*4)]; i64 iVal = readInt64(pCell); rtreeCheckCellCoord(pCheck, iNode, i, &pCell[8], aParent); if( iDepth>0 ){ rtreeCheckMapping(pCheck, 0, iVal, iNode); rtreeCheckNode(pCheck, iDepth-1, &pCell[8], iVal); pCheck->nNonLeaf++; }else{ rtreeCheckMapping(pCheck, 1, iVal, iNode); pCheck->nLeaf++; } } } } sqlite3_free(aNode); } } /* ** The second argument to this function must be either "_rowid" or ** "_parent". This function checks that the number of entries in the ** %_rowid or %_parent table is exactly nExpect. If not, it adds ** an error message to the report in the RtreeCheck object indicated ** by the first argument. */ static void rtreeCheckCount(RtreeCheck *pCheck, const char *zTbl, i64 nExpect){ if( pCheck->rc==SQLITE_OK ){ sqlite3_stmt *pCount; pCount = rtreeCheckPrepare(pCheck, "SELECT count(*) FROM %Q.'%q%s'", pCheck->zDb, pCheck->zTab, zTbl ); if( pCount ){ if( sqlite3_step(pCount)==SQLITE_ROW ){ i64 nActual = sqlite3_column_int64(pCount, 0); if( nActual!=nExpect ){ rtreeCheckAppendMsg(pCheck, "Wrong number of entries in %%%s table" " - expected %lld, actual %lld" , zTbl, nExpect, nActual ); } } pCheck->rc = sqlite3_finalize(pCount); } } } /* ** This function does the bulk of the work for the rtree integrity-check. ** It is called by rtreecheck(), which is the SQL function implementation. */ static int rtreeCheckTable( sqlite3 *db, /* Database handle to access db through */ const char *zDb, /* Name of db ("main", "temp" etc.) */ const char *zTab, /* Name of rtree table to check */ char **pzReport /* OUT: sqlite3_malloc'd report text */ ){ RtreeCheck check; /* Common context for various routines */ sqlite3_stmt *pStmt = 0; /* Used to find column count of rtree table */ int bEnd = 0; /* True if transaction should be closed */ int nAux = 0; /* Number of extra columns. */ /* Initialize the context object */ memset(&check, 0, sizeof(check)); check.db = db; check.zDb = zDb; check.zTab = zTab; /* If there is not already an open transaction, open one now. This is ** to ensure that the queries run as part of this integrity-check operate ** on a consistent snapshot. */ if( sqlite3_get_autocommit(db) ){ check.rc = sqlite3_exec(db, "BEGIN", 0, 0, 0); bEnd = 1; } /* Find the number of auxiliary columns */ if( check.rc==SQLITE_OK ){ pStmt = rtreeCheckPrepare(&check, "SELECT * FROM %Q.'%q_rowid'", zDb, zTab); if( pStmt ){ nAux = sqlite3_column_count(pStmt) - 2; sqlite3_finalize(pStmt); }else if( check.rc!=SQLITE_NOMEM ){ check.rc = SQLITE_OK; } } /* Find number of dimensions in the rtree table. */ pStmt = rtreeCheckPrepare(&check, "SELECT * FROM %Q.%Q", zDb, zTab); if( pStmt ){ int rc; check.nDim = (sqlite3_column_count(pStmt) - 1 - nAux) / 2; if( check.nDim<1 ){ rtreeCheckAppendMsg(&check, "Schema corrupt or not an rtree"); }else if( SQLITE_ROW==sqlite3_step(pStmt) ){ check.bInt = (sqlite3_column_type(pStmt, 1)==SQLITE_INTEGER); } rc = sqlite3_finalize(pStmt); if( rc!=SQLITE_CORRUPT ) check.rc = rc; } /* Do the actual integrity-check */ if( check.nDim>=1 ){ if( check.rc==SQLITE_OK ){ rtreeCheckNode(&check, 0, 0, 1); } rtreeCheckCount(&check, "_rowid", check.nLeaf); rtreeCheckCount(&check, "_parent", check.nNonLeaf); } /* Finalize SQL statements used by the integrity-check */ sqlite3_finalize(check.pGetNode); sqlite3_finalize(check.aCheckMapping[0]); sqlite3_finalize(check.aCheckMapping[1]); /* If one was opened, close the transaction */ if( bEnd ){ int rc = sqlite3_exec(db, "END", 0, 0, 0); if( check.rc==SQLITE_OK ) check.rc = rc; } *pzReport = check.zReport; return check.rc; } /* ** Usage: ** ** rtreecheck(); ** rtreecheck(, ); ** ** Invoking this SQL function runs an integrity-check on the named rtree ** table. The integrity-check verifies the following: ** ** 1. For each cell in the r-tree structure (%_node table), that: ** ** a) for each dimension, (coord1 <= coord2). ** ** b) unless the cell is on the root node, that the cell is bounded ** by the parent cell on the parent node. ** ** c) for leaf nodes, that there is an entry in the %_rowid ** table corresponding to the cell's rowid value that ** points to the correct node. ** ** d) for cells on non-leaf nodes, that there is an entry in the ** %_parent table mapping from the cell's child node to the ** node that it resides on. ** ** 2. That there are the same number of entries in the %_rowid table ** as there are leaf cells in the r-tree structure, and that there ** is a leaf cell that corresponds to each entry in the %_rowid table. ** ** 3. That there are the same number of entries in the %_parent table ** as there are non-leaf cells in the r-tree structure, and that ** there is a non-leaf cell that corresponds to each entry in the ** %_parent table. */ static void rtreecheck( sqlite3_context *ctx, int nArg, sqlite3_value **apArg ){ if( nArg!=1 && nArg!=2 ){ sqlite3_result_error(ctx, "wrong number of arguments to function rtreecheck()", -1 ); }else{ int rc; char *zReport = 0; const char *zDb = (const char*)sqlite3_value_text(apArg[0]); const char *zTab; if( nArg==1 ){ zTab = zDb; zDb = "main"; }else{ zTab = (const char*)sqlite3_value_text(apArg[1]); } rc = rtreeCheckTable(sqlite3_context_db_handle(ctx), zDb, zTab, &zReport); if( rc==SQLITE_OK ){ sqlite3_result_text(ctx, zReport ? zReport : "ok", -1, SQLITE_TRANSIENT); }else{ sqlite3_result_error_code(ctx, rc); } sqlite3_free(zReport); } } /* Conditionally include the geopoly code */ #ifdef SQLITE_ENABLE_GEOPOLY /************** Include geopoly.c in the middle of rtree.c *******************/ /************** Begin file geopoly.c *****************************************/ /* ** 2018-05-25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file implements an alternative R-Tree virtual table that ** uses polygons to express the boundaries of 2-dimensional objects. ** ** This file is #include-ed onto the end of "rtree.c" so that it has ** access to all of the R-Tree internals. */ /* #include */ /* Enable -DGEOPOLY_ENABLE_DEBUG for debugging facilities */ #ifdef GEOPOLY_ENABLE_DEBUG static int geo_debug = 0; # define GEODEBUG(X) if(geo_debug)printf X #else # define GEODEBUG(X) #endif /* Character class routines */ #ifdef sqlite3Isdigit /* Use the SQLite core versions if this routine is part of the ** SQLite amalgamation */ # define safe_isdigit(x) sqlite3Isdigit(x) # define safe_isalnum(x) sqlite3Isalnum(x) # define safe_isxdigit(x) sqlite3Isxdigit(x) #else /* Use the standard library for separate compilation */ #include /* amalgamator: keep */ # define safe_isdigit(x) isdigit((unsigned char)(x)) # define safe_isalnum(x) isalnum((unsigned char)(x)) # define safe_isxdigit(x) isxdigit((unsigned char)(x)) #endif #ifndef JSON_NULL /* The following stuff repeats things found in json1 */ /* ** Growing our own isspace() routine this way is twice as fast as ** the library isspace() function. */ static const char geopolyIsSpace[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; #define fast_isspace(x) (geopolyIsSpace[(unsigned char)x]) #endif /* JSON NULL - back to original code */ /* Compiler and version */ #ifndef GCC_VERSION #if defined(__GNUC__) && !defined(SQLITE_DISABLE_INTRINSIC) # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif #endif #ifndef MSVC_VERSION #if defined(_MSC_VER) && !defined(SQLITE_DISABLE_INTRINSIC) # define MSVC_VERSION _MSC_VER #else # define MSVC_VERSION 0 #endif #endif /* Datatype for coordinates */ typedef float GeoCoord; /* ** Internal representation of a polygon. ** ** The polygon consists of a sequence of vertexes. There is a line ** segment between each pair of vertexes, and one final segment from ** the last vertex back to the first. (This differs from the GeoJSON ** standard in which the final vertex is a repeat of the first.) ** ** The polygon follows the right-hand rule. The area to the right of ** each segment is "outside" and the area to the left is "inside". ** ** The on-disk representation consists of a 4-byte header followed by ** the values. The 4-byte header is: ** ** encoding (1 byte) 0=big-endian, 1=little-endian ** nvertex (3 bytes) Number of vertexes as a big-endian integer ** ** Enough space is allocated for 4 coordinates, to work around over-zealous ** warnings coming from some compiler (notably, clang). In reality, the size ** of each GeoPoly memory allocate is adjusted as necessary so that the ** GeoPoly.a[] array at the end is the appropriate size. */ typedef struct GeoPoly GeoPoly; struct GeoPoly { int nVertex; /* Number of vertexes */ unsigned char hdr[4]; /* Header for on-disk representation */ GeoCoord a[8]; /* 2*nVertex values. X (longitude) first, then Y */ }; /* The size of a memory allocation needed for a GeoPoly object sufficient ** to hold N coordinate pairs. */ #define GEOPOLY_SZ(N) (sizeof(GeoPoly) + sizeof(GeoCoord)*2*((N)-4)) /* Macros to access coordinates of a GeoPoly. ** We have to use these macros, rather than just say p->a[i] in order ** to silence (incorrect) UBSAN warnings if the array index is too large. */ #define GeoX(P,I) (((GeoCoord*)(P)->a)[(I)*2]) #define GeoY(P,I) (((GeoCoord*)(P)->a)[(I)*2+1]) /* ** State of a parse of a GeoJSON input. */ typedef struct GeoParse GeoParse; struct GeoParse { const unsigned char *z; /* Unparsed input */ int nVertex; /* Number of vertexes in a[] */ int nAlloc; /* Space allocated to a[] */ int nErr; /* Number of errors encountered */ GeoCoord *a; /* Array of vertexes. From sqlite3_malloc64() */ }; /* Do a 4-byte byte swap */ static void geopolySwab32(unsigned char *a){ unsigned char t = a[0]; a[0] = a[3]; a[3] = t; t = a[1]; a[1] = a[2]; a[2] = t; } /* Skip whitespace. Return the next non-whitespace character. */ static char geopolySkipSpace(GeoParse *p){ while( fast_isspace(p->z[0]) ) p->z++; return p->z[0]; } /* Parse out a number. Write the value into *pVal if pVal!=0. ** return non-zero on success and zero if the next token is not a number. */ static int geopolyParseNumber(GeoParse *p, GeoCoord *pVal){ char c = geopolySkipSpace(p); const unsigned char *z = p->z; int j = 0; int seenDP = 0; int seenE = 0; if( c=='-' ){ j = 1; c = z[j]; } if( c=='0' && z[j+1]>='0' && z[j+1]<='9' ) return 0; for(;; j++){ c = z[j]; if( safe_isdigit(c) ) continue; if( c=='.' ){ if( z[j-1]=='-' ) return 0; if( seenDP ) return 0; seenDP = 1; continue; } if( c=='e' || c=='E' ){ if( z[j-1]<'0' ) return 0; if( seenE ) return -1; seenDP = seenE = 1; c = z[j+1]; if( c=='+' || c=='-' ){ j++; c = z[j+1]; } if( c<'0' || c>'9' ) return 0; continue; } break; } if( z[j-1]<'0' ) return 0; if( pVal ){ #ifdef SQLITE_AMALGAMATION /* The sqlite3AtoF() routine is much much faster than atof(), if it ** is available */ double r; (void)sqlite3AtoF((const char*)p->z, &r, j, SQLITE_UTF8); *pVal = r; #else *pVal = (GeoCoord)atof((const char*)p->z); #endif } p->z += j; return 1; } /* ** If the input is a well-formed JSON array of coordinates with at least ** four coordinates and where each coordinate is itself a two-value array, ** then convert the JSON into a GeoPoly object and return a pointer to ** that object. ** ** If any error occurs, return NULL. */ static GeoPoly *geopolyParseJson(const unsigned char *z, int *pRc){ GeoParse s; int rc = SQLITE_OK; memset(&s, 0, sizeof(s)); s.z = z; if( geopolySkipSpace(&s)=='[' ){ s.z++; while( geopolySkipSpace(&s)=='[' ){ int ii = 0; char c; s.z++; if( s.nVertex>=s.nAlloc ){ GeoCoord *aNew; s.nAlloc = s.nAlloc*2 + 16; aNew = sqlite3_realloc64(s.a, s.nAlloc*sizeof(GeoCoord)*2 ); if( aNew==0 ){ rc = SQLITE_NOMEM; s.nErr++; break; } s.a = aNew; } while( geopolyParseNumber(&s, ii<=1 ? &s.a[s.nVertex*2+ii] : 0) ){ ii++; if( ii==2 ) s.nVertex++; c = geopolySkipSpace(&s); s.z++; if( c==',' ) continue; if( c==']' && ii>=2 ) break; s.nErr++; rc = SQLITE_ERROR; goto parse_json_err; } if( geopolySkipSpace(&s)==',' ){ s.z++; continue; } break; } if( geopolySkipSpace(&s)==']' && s.nVertex>=4 && s.a[0]==s.a[s.nVertex*2-2] && s.a[1]==s.a[s.nVertex*2-1] && (s.z++, geopolySkipSpace(&s)==0) ){ GeoPoly *pOut; int x = 1; s.nVertex--; /* Remove the redundant vertex at the end */ pOut = sqlite3_malloc64( GEOPOLY_SZ((sqlite3_int64)s.nVertex) ); x = 1; if( pOut==0 ) goto parse_json_err; pOut->nVertex = s.nVertex; memcpy(pOut->a, s.a, s.nVertex*2*sizeof(GeoCoord)); pOut->hdr[0] = *(unsigned char*)&x; pOut->hdr[1] = (s.nVertex>>16)&0xff; pOut->hdr[2] = (s.nVertex>>8)&0xff; pOut->hdr[3] = s.nVertex&0xff; sqlite3_free(s.a); if( pRc ) *pRc = SQLITE_OK; return pOut; }else{ s.nErr++; rc = SQLITE_ERROR; } } parse_json_err: if( pRc ) *pRc = rc; sqlite3_free(s.a); return 0; } /* ** Given a function parameter, try to interpret it as a polygon, either ** in the binary format or JSON text. Compute a GeoPoly object and ** return a pointer to that object. Or if the input is not a well-formed ** polygon, put an error message in sqlite3_context and return NULL. */ static GeoPoly *geopolyFuncParam( sqlite3_context *pCtx, /* Context for error messages */ sqlite3_value *pVal, /* The value to decode */ int *pRc /* Write error here */ ){ GeoPoly *p = 0; int nByte; testcase( pCtx==0 ); if( sqlite3_value_type(pVal)==SQLITE_BLOB && (nByte = sqlite3_value_bytes(pVal))>=(4+6*sizeof(GeoCoord)) ){ const unsigned char *a = sqlite3_value_blob(pVal); int nVertex; if( a==0 ){ if( pCtx ) sqlite3_result_error_nomem(pCtx); return 0; } nVertex = (a[1]<<16) + (a[2]<<8) + a[3]; if( (a[0]==0 || a[0]==1) && (nVertex*2*sizeof(GeoCoord) + 4)==(unsigned int)nByte ){ p = sqlite3_malloc64( sizeof(*p) + (nVertex-1)*2*sizeof(GeoCoord) ); if( p==0 ){ if( pRc ) *pRc = SQLITE_NOMEM; if( pCtx ) sqlite3_result_error_nomem(pCtx); }else{ int x = 1; p->nVertex = nVertex; memcpy(p->hdr, a, nByte); if( a[0] != *(unsigned char*)&x ){ int ii; for(ii=0; iihdr[0] ^= 1; } } } if( pRc ) *pRc = SQLITE_OK; return p; }else if( sqlite3_value_type(pVal)==SQLITE_TEXT ){ const unsigned char *zJson = sqlite3_value_text(pVal); if( zJson==0 ){ if( pRc ) *pRc = SQLITE_NOMEM; return 0; } return geopolyParseJson(zJson, pRc); }else{ if( pRc ) *pRc = SQLITE_ERROR; return 0; } } /* ** Implementation of the geopoly_blob(X) function. ** ** If the input is a well-formed Geopoly BLOB or JSON string ** then return the BLOB representation of the polygon. Otherwise ** return NULL. */ static void geopolyBlobFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** SQL function: geopoly_json(X) ** ** Interpret X as a polygon and render it as a JSON array ** of coordinates. Or, if X is not a valid polygon, return NULL. */ static void geopolyJsonFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3 *db = sqlite3_context_db_handle(context); sqlite3_str *x = sqlite3_str_new(db); int i; sqlite3_str_append(x, "[", 1); for(i=0; inVertex; i++){ sqlite3_str_appendf(x, "[%!g,%!g],", GeoX(p,i), GeoY(p,i)); } sqlite3_str_appendf(x, "[%!g,%!g]]", GeoX(p,0), GeoY(p,0)); sqlite3_result_text(context, sqlite3_str_finish(x), -1, sqlite3_free); sqlite3_free(p); } } /* ** SQL function: geopoly_svg(X, ....) ** ** Interpret X as a polygon and render it as a SVG . ** Additional arguments are added as attributes to the . */ static void geopolySvgFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p; if( argc<1 ) return; p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3 *db = sqlite3_context_db_handle(context); sqlite3_str *x = sqlite3_str_new(db); int i; char cSep = '\''; sqlite3_str_appendf(x, ""); sqlite3_result_text(context, sqlite3_str_finish(x), -1, sqlite3_free); sqlite3_free(p); } } /* ** SQL Function: geopoly_xform(poly, A, B, C, D, E, F) ** ** Transform and/or translate a polygon as follows: ** ** x1 = A*x0 + B*y0 + E ** y1 = C*x0 + D*y0 + F ** ** For a translation: ** ** geopoly_xform(poly, 1, 0, 0, 1, x-offset, y-offset) ** ** Rotate by R around the point (0,0): ** ** geopoly_xform(poly, cos(R), sin(R), -sin(R), cos(R), 0, 0) */ static void geopolyXformFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); double A = sqlite3_value_double(argv[1]); double B = sqlite3_value_double(argv[2]); double C = sqlite3_value_double(argv[3]); double D = sqlite3_value_double(argv[4]); double E = sqlite3_value_double(argv[5]); double F = sqlite3_value_double(argv[6]); GeoCoord x1, y1, x0, y0; int ii; if( p ){ for(ii=0; iinVertex; ii++){ x0 = GeoX(p,ii); y0 = GeoY(p,ii); x1 = (GeoCoord)(A*x0 + B*y0 + E); y1 = (GeoCoord)(C*x0 + D*y0 + F); GeoX(p,ii) = x1; GeoY(p,ii) = y1; } sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** Compute the area enclosed by the polygon. ** ** This routine can also be used to detect polygons that rotate in ** the wrong direction. Polygons are suppose to be counter-clockwise (CCW). ** This routine returns a negative value for clockwise (CW) polygons. */ static double geopolyArea(GeoPoly *p){ double rArea = 0.0; int ii; for(ii=0; iinVertex-1; ii++){ rArea += (GeoX(p,ii) - GeoX(p,ii+1)) /* (x0 - x1) */ * (GeoY(p,ii) + GeoY(p,ii+1)) /* (y0 + y1) */ * 0.5; } rArea += (GeoX(p,ii) - GeoX(p,0)) /* (xN - x0) */ * (GeoY(p,ii) + GeoY(p,0)) /* (yN + y0) */ * 0.5; return rArea; } /* ** Implementation of the geopoly_area(X) function. ** ** If the input is a well-formed Geopoly BLOB then return the area ** enclosed by the polygon. If the polygon circulates clockwise instead ** of counterclockwise (as it should) then return the negative of the ** enclosed area. Otherwise return NULL. */ static void geopolyAreaFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3_result_double(context, geopolyArea(p)); sqlite3_free(p); } } /* ** Implementation of the geopoly_ccw(X) function. ** ** If the rotation of polygon X is clockwise (incorrect) instead of ** counter-clockwise (the correct winding order according to RFC7946) ** then reverse the order of the vertexes in polygon X. ** ** In other words, this routine returns a CCW polygon regardless of the ** winding order of its input. ** ** Use this routine to sanitize historical inputs that that sometimes ** contain polygons that wind in the wrong direction. */ static void geopolyCcwFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ if( geopolyArea(p)<0.0 ){ int ii, jj; for(ii=1, jj=p->nVertex-1; iihdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } #define GEOPOLY_PI 3.1415926535897932385 /* Fast approximation for sine(X) for X between -0.5*pi and 2*pi */ static double geopolySine(double r){ assert( r>=-0.5*GEOPOLY_PI && r<=2.0*GEOPOLY_PI ); if( r>=1.5*GEOPOLY_PI ){ r -= 2.0*GEOPOLY_PI; } if( r>=0.5*GEOPOLY_PI ){ return -geopolySine(r-GEOPOLY_PI); }else{ double r2 = r*r; double r3 = r2*r; double r5 = r3*r2; return 0.9996949*r - 0.1656700*r3 + 0.0075134*r5; } } /* ** Function: geopoly_regular(X,Y,R,N) ** ** Construct a simple, convex, regular polygon centered at X, Y ** with circumradius R and with N sides. */ static void geopolyRegularFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ double x = sqlite3_value_double(argv[0]); double y = sqlite3_value_double(argv[1]); double r = sqlite3_value_double(argv[2]); int n = sqlite3_value_int(argv[3]); int i; GeoPoly *p; if( n<3 || r<=0.0 ) return; if( n>1000 ) n = 1000; p = sqlite3_malloc64( sizeof(*p) + (n-1)*2*sizeof(GeoCoord) ); if( p==0 ){ sqlite3_result_error_nomem(context); return; } i = 1; p->hdr[0] = *(unsigned char*)&i; p->hdr[1] = 0; p->hdr[2] = (n>>8)&0xff; p->hdr[3] = n&0xff; for(i=0; ihdr, 4+8*n, SQLITE_TRANSIENT); sqlite3_free(p); } /* ** If pPoly is a polygon, compute its bounding box. Then: ** ** (1) if aCoord!=0 store the bounding box in aCoord, returning NULL ** (2) otherwise, compute a GeoPoly for the bounding box and return the ** new GeoPoly ** ** If pPoly is NULL but aCoord is not NULL, then compute a new GeoPoly from ** the bounding box in aCoord and return a pointer to that GeoPoly. */ static GeoPoly *geopolyBBox( sqlite3_context *context, /* For recording the error */ sqlite3_value *pPoly, /* The polygon */ RtreeCoord *aCoord, /* Results here */ int *pRc /* Error code here */ ){ GeoPoly *pOut = 0; GeoPoly *p; float mnX, mxX, mnY, mxY; if( pPoly==0 && aCoord!=0 ){ p = 0; mnX = aCoord[0].f; mxX = aCoord[1].f; mnY = aCoord[2].f; mxY = aCoord[3].f; goto geopolyBboxFill; }else{ p = geopolyFuncParam(context, pPoly, pRc); } if( p ){ int ii; mnX = mxX = GeoX(p,0); mnY = mxY = GeoY(p,0); for(ii=1; iinVertex; ii++){ double r = GeoX(p,ii); if( rmxX ) mxX = (float)r; r = GeoY(p,ii); if( rmxY ) mxY = (float)r; } if( pRc ) *pRc = SQLITE_OK; if( aCoord==0 ){ geopolyBboxFill: pOut = sqlite3_realloc64(p, GEOPOLY_SZ(4)); if( pOut==0 ){ sqlite3_free(p); if( context ) sqlite3_result_error_nomem(context); if( pRc ) *pRc = SQLITE_NOMEM; return 0; } pOut->nVertex = 4; ii = 1; pOut->hdr[0] = *(unsigned char*)ⅈ pOut->hdr[1] = 0; pOut->hdr[2] = 0; pOut->hdr[3] = 4; GeoX(pOut,0) = mnX; GeoY(pOut,0) = mnY; GeoX(pOut,1) = mxX; GeoY(pOut,1) = mnY; GeoX(pOut,2) = mxX; GeoY(pOut,2) = mxY; GeoX(pOut,3) = mnX; GeoY(pOut,3) = mxY; }else{ sqlite3_free(p); aCoord[0].f = mnX; aCoord[1].f = mxX; aCoord[2].f = mnY; aCoord[3].f = mxY; } }else if( aCoord ){ memset(aCoord, 0, sizeof(RtreeCoord)*4); } return pOut; } /* ** Implementation of the geopoly_bbox(X) SQL function. */ static void geopolyBBoxFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyBBox(context, argv[0], 0, 0); if( p ){ sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** State vector for the geopoly_group_bbox() aggregate function. */ typedef struct GeoBBox GeoBBox; struct GeoBBox { int isInit; RtreeCoord a[4]; }; /* ** Implementation of the geopoly_group_bbox(X) aggregate SQL function. */ static void geopolyBBoxStep( sqlite3_context *context, int argc, sqlite3_value **argv ){ RtreeCoord a[4]; int rc = SQLITE_OK; (void)geopolyBBox(context, argv[0], a, &rc); if( rc==SQLITE_OK ){ GeoBBox *pBBox; pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); if( pBBox==0 ) return; if( pBBox->isInit==0 ){ pBBox->isInit = 1; memcpy(pBBox->a, a, sizeof(RtreeCoord)*4); }else{ if( a[0].f < pBBox->a[0].f ) pBBox->a[0] = a[0]; if( a[1].f > pBBox->a[1].f ) pBBox->a[1] = a[1]; if( a[2].f < pBBox->a[2].f ) pBBox->a[2] = a[2]; if( a[3].f > pBBox->a[3].f ) pBBox->a[3] = a[3]; } } } static void geopolyBBoxFinal( sqlite3_context *context ){ GeoPoly *p; GeoBBox *pBBox; pBBox = (GeoBBox*)sqlite3_aggregate_context(context, 0); if( pBBox==0 ) return; p = geopolyBBox(context, 0, pBBox->a, 0); if( p ){ sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** Determine if point (x0,y0) is beneath line segment (x1,y1)->(x2,y2). ** Returns: ** ** +2 x0,y0 is on the line segement ** ** +1 x0,y0 is beneath line segment ** ** 0 x0,y0 is not on or beneath the line segment or the line segment ** is vertical and x0,y0 is not on the line segment ** ** The left-most coordinate min(x1,x2) is not considered to be part of ** the line segment for the purposes of this analysis. */ static int pointBeneathLine( double x0, double y0, double x1, double y1, double x2, double y2 ){ double y; if( x0==x1 && y0==y1 ) return 2; if( x1x2 ) return 0; }else if( x1>x2 ){ if( x0<=x2 || x0>x1 ) return 0; }else{ /* Vertical line segment */ if( x0!=x1 ) return 0; if( y0y1 && y0>y2 ) return 0; return 2; } y = y1 + (y2-y1)*(x0-x1)/(x2-x1); if( y0==y ) return 2; if( y0nVertex-1; ii++){ v = pointBeneathLine(x0,y0,GeoX(p1,ii), GeoY(p1,ii), GeoX(p1,ii+1),GeoY(p1,ii+1)); if( v==2 ) break; cnt += v; } if( v!=2 ){ v = pointBeneathLine(x0,y0,GeoX(p1,ii), GeoY(p1,ii), GeoX(p1,0), GeoY(p1,0)); } if( v==2 ){ sqlite3_result_int(context, 1); }else if( ((v+cnt)&1)==0 ){ sqlite3_result_int(context, 0); }else{ sqlite3_result_int(context, 2); } sqlite3_free(p1); } /* Forward declaration */ static int geopolyOverlap(GeoPoly *p1, GeoPoly *p2); /* ** SQL function: geopoly_within(P1,P2) ** ** Return +2 if P1 and P2 are the same polygon ** Return +1 if P2 is contained within P1 ** Return 0 if any part of P2 is on the outside of P1 ** */ static void geopolyWithinFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p1 = geopolyFuncParam(context, argv[0], 0); GeoPoly *p2 = geopolyFuncParam(context, argv[1], 0); if( p1 && p2 ){ int x = geopolyOverlap(p1, p2); if( x<0 ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_int(context, x==2 ? 1 : x==4 ? 2 : 0); } } sqlite3_free(p1); sqlite3_free(p2); } /* Objects used by the overlap algorihm. */ typedef struct GeoEvent GeoEvent; typedef struct GeoSegment GeoSegment; typedef struct GeoOverlap GeoOverlap; struct GeoEvent { double x; /* X coordinate at which event occurs */ int eType; /* 0 for ADD, 1 for REMOVE */ GeoSegment *pSeg; /* The segment to be added or removed */ GeoEvent *pNext; /* Next event in the sorted list */ }; struct GeoSegment { double C, B; /* y = C*x + B */ double y; /* Current y value */ float y0; /* Initial y value */ unsigned char side; /* 1 for p1, 2 for p2 */ unsigned int idx; /* Which segment within the side */ GeoSegment *pNext; /* Next segment in a list sorted by y */ }; struct GeoOverlap { GeoEvent *aEvent; /* Array of all events */ GeoSegment *aSegment; /* Array of all segments */ int nEvent; /* Number of events */ int nSegment; /* Number of segments */ }; /* ** Add a single segment and its associated events. */ static void geopolyAddOneSegment( GeoOverlap *p, GeoCoord x0, GeoCoord y0, GeoCoord x1, GeoCoord y1, unsigned char side, unsigned int idx ){ GeoSegment *pSeg; GeoEvent *pEvent; if( x0==x1 ) return; /* Ignore vertical segments */ if( x0>x1 ){ GeoCoord t = x0; x0 = x1; x1 = t; t = y0; y0 = y1; y1 = t; } pSeg = p->aSegment + p->nSegment; p->nSegment++; pSeg->C = (y1-y0)/(x1-x0); pSeg->B = y1 - x1*pSeg->C; pSeg->y0 = y0; pSeg->side = side; pSeg->idx = idx; pEvent = p->aEvent + p->nEvent; p->nEvent++; pEvent->x = x0; pEvent->eType = 0; pEvent->pSeg = pSeg; pEvent = p->aEvent + p->nEvent; p->nEvent++; pEvent->x = x1; pEvent->eType = 1; pEvent->pSeg = pSeg; } /* ** Insert all segments and events for polygon pPoly. */ static void geopolyAddSegments( GeoOverlap *p, /* Add segments to this Overlap object */ GeoPoly *pPoly, /* Take all segments from this polygon */ unsigned char side /* The side of pPoly */ ){ unsigned int i; GeoCoord *x; for(i=0; i<(unsigned)pPoly->nVertex-1; i++){ x = &GeoX(pPoly,i); geopolyAddOneSegment(p, x[0], x[1], x[2], x[3], side, i); } x = &GeoX(pPoly,i); geopolyAddOneSegment(p, x[0], x[1], pPoly->a[0], pPoly->a[1], side, i); } /* ** Merge two lists of sorted events by X coordinate */ static GeoEvent *geopolyEventMerge(GeoEvent *pLeft, GeoEvent *pRight){ GeoEvent head, *pLast; head.pNext = 0; pLast = &head; while( pRight && pLeft ){ if( pRight->x <= pLeft->x ){ pLast->pNext = pRight; pLast = pRight; pRight = pRight->pNext; }else{ pLast->pNext = pLeft; pLast = pLeft; pLeft = pLeft->pNext; } } pLast->pNext = pRight ? pRight : pLeft; return head.pNext; } /* ** Sort an array of nEvent event objects into a list. */ static GeoEvent *geopolySortEventsByX(GeoEvent *aEvent, int nEvent){ int mx = 0; int i, j; GeoEvent *p; GeoEvent *a[50]; for(i=0; ipNext = 0; for(j=0; j=mx ) mx = j+1; } p = 0; for(i=0; iy - pLeft->y; if( r==0.0 ) r = pRight->C - pLeft->C; if( r<0.0 ){ pLast->pNext = pRight; pLast = pRight; pRight = pRight->pNext; }else{ pLast->pNext = pLeft; pLast = pLeft; pLeft = pLeft->pNext; } } pLast->pNext = pRight ? pRight : pLeft; return head.pNext; } /* ** Sort a list of GeoSegments in order of increasing Y and in the event of ** a tie, increasing C (slope). */ static GeoSegment *geopolySortSegmentsByYAndC(GeoSegment *pList){ int mx = 0; int i; GeoSegment *p; GeoSegment *a[50]; while( pList ){ p = pList; pList = pList->pNext; p->pNext = 0; for(i=0; i=mx ) mx = i+1; } p = 0; for(i=0; inVertex + p2->nVertex + 2; GeoOverlap *p; sqlite3_int64 nByte; GeoEvent *pThisEvent; double rX; int rc = 0; int needSort = 0; GeoSegment *pActive = 0; GeoSegment *pSeg; unsigned char aOverlap[4]; nByte = sizeof(GeoEvent)*nVertex*2 + sizeof(GeoSegment)*nVertex + sizeof(GeoOverlap); p = sqlite3_malloc64( nByte ); if( p==0 ) return -1; p->aEvent = (GeoEvent*)&p[1]; p->aSegment = (GeoSegment*)&p->aEvent[nVertex*2]; p->nEvent = p->nSegment = 0; geopolyAddSegments(p, p1, 1); geopolyAddSegments(p, p2, 2); pThisEvent = geopolySortEventsByX(p->aEvent, p->nEvent); rX = pThisEvent && pThisEvent->x==0.0 ? -1.0 : 0.0; memset(aOverlap, 0, sizeof(aOverlap)); while( pThisEvent ){ if( pThisEvent->x!=rX ){ GeoSegment *pPrev = 0; int iMask = 0; GEODEBUG(("Distinct X: %g\n", pThisEvent->x)); rX = pThisEvent->x; if( needSort ){ GEODEBUG(("SORT\n")); pActive = geopolySortSegmentsByYAndC(pActive); needSort = 0; } for(pSeg=pActive; pSeg; pSeg=pSeg->pNext){ if( pPrev ){ if( pPrev->y!=pSeg->y ){ GEODEBUG(("MASK: %d\n", iMask)); aOverlap[iMask] = 1; } } iMask ^= pSeg->side; pPrev = pSeg; } pPrev = 0; for(pSeg=pActive; pSeg; pSeg=pSeg->pNext){ double y = pSeg->C*rX + pSeg->B; GEODEBUG(("Segment %d.%d %g->%g\n", pSeg->side, pSeg->idx, pSeg->y, y)); pSeg->y = y; if( pPrev ){ if( pPrev->y>pSeg->y && pPrev->side!=pSeg->side ){ rc = 1; GEODEBUG(("Crossing: %d.%d and %d.%d\n", pPrev->side, pPrev->idx, pSeg->side, pSeg->idx)); goto geopolyOverlapDone; }else if( pPrev->y!=pSeg->y ){ GEODEBUG(("MASK: %d\n", iMask)); aOverlap[iMask] = 1; } } iMask ^= pSeg->side; pPrev = pSeg; } } GEODEBUG(("%s %d.%d C=%g B=%g\n", pThisEvent->eType ? "RM " : "ADD", pThisEvent->pSeg->side, pThisEvent->pSeg->idx, pThisEvent->pSeg->C, pThisEvent->pSeg->B)); if( pThisEvent->eType==0 ){ /* Add a segment */ pSeg = pThisEvent->pSeg; pSeg->y = pSeg->y0; pSeg->pNext = pActive; pActive = pSeg; needSort = 1; }else{ /* Remove a segment */ if( pActive==pThisEvent->pSeg ){ pActive = ALWAYS(pActive) ? pActive->pNext : 0; }else{ for(pSeg=pActive; pSeg; pSeg=pSeg->pNext){ if( pSeg->pNext==pThisEvent->pSeg ){ pSeg->pNext = ALWAYS(pSeg->pNext) ? pSeg->pNext->pNext : 0; break; } } } } pThisEvent = pThisEvent->pNext; } if( aOverlap[3]==0 ){ rc = 0; }else if( aOverlap[1]!=0 && aOverlap[2]==0 ){ rc = 3; }else if( aOverlap[1]==0 && aOverlap[2]!=0 ){ rc = 2; }else if( aOverlap[1]==0 && aOverlap[2]==0 ){ rc = 4; }else{ rc = 1; } geopolyOverlapDone: sqlite3_free(p); return rc; } /* ** SQL function: geopoly_overlap(P1,P2) ** ** Determine whether or not P1 and P2 overlap. Return value: ** ** 0 The two polygons are disjoint ** 1 They overlap ** 2 P1 is completely contained within P2 ** 3 P2 is completely contained within P1 ** 4 P1 and P2 are the same polygon ** NULL Either P1 or P2 or both are not valid polygons */ static void geopolyOverlapFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p1 = geopolyFuncParam(context, argv[0], 0); GeoPoly *p2 = geopolyFuncParam(context, argv[1], 0); if( p1 && p2 ){ int x = geopolyOverlap(p1, p2); if( x<0 ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_int(context, x); } } sqlite3_free(p1); sqlite3_free(p2); } /* ** Enable or disable debugging output */ static void geopolyDebugFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ #ifdef GEOPOLY_ENABLE_DEBUG geo_debug = sqlite3_value_int(argv[0]); #endif } /* ** This function is the implementation of both the xConnect and xCreate ** methods of the geopoly virtual table. ** ** argv[0] -> module name ** argv[1] -> database name ** argv[2] -> table name ** argv[...] -> column names... */ static int geopolyInit( sqlite3 *db, /* Database connection */ void *pAux, /* One of the RTREE_COORD_* constants */ int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */ sqlite3_vtab **ppVtab, /* OUT: New virtual table */ char **pzErr, /* OUT: Error message, if any */ int isCreate /* True for xCreate, false for xConnect */ ){ int rc = SQLITE_OK; Rtree *pRtree; sqlite3_int64 nDb; /* Length of string argv[1] */ sqlite3_int64 nName; /* Length of string argv[2] */ sqlite3_str *pSql; char *zSql; int ii; sqlite3_vtab_config(db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); /* Allocate the sqlite3_vtab structure */ nDb = strlen(argv[1]); nName = strlen(argv[2]); pRtree = (Rtree *)sqlite3_malloc64(sizeof(Rtree)+nDb+nName+2); if( !pRtree ){ return SQLITE_NOMEM; } memset(pRtree, 0, sizeof(Rtree)+nDb+nName+2); pRtree->nBusy = 1; pRtree->base.pModule = &rtreeModule; pRtree->zDb = (char *)&pRtree[1]; pRtree->zName = &pRtree->zDb[nDb+1]; pRtree->eCoordType = RTREE_COORD_REAL32; pRtree->nDim = 2; pRtree->nDim2 = 4; memcpy(pRtree->zDb, argv[1], nDb); memcpy(pRtree->zName, argv[2], nName); /* Create/Connect to the underlying relational database schema. If ** that is successful, call sqlite3_declare_vtab() to configure ** the r-tree table schema. */ pSql = sqlite3_str_new(db); sqlite3_str_appendf(pSql, "CREATE TABLE x(_shape"); pRtree->nAux = 1; /* Add one for _shape */ pRtree->nAuxNotNull = 1; /* The _shape column is always not-null */ for(ii=3; iinAux++; sqlite3_str_appendf(pSql, ",%s", argv[ii]); } sqlite3_str_appendf(pSql, ");"); zSql = sqlite3_str_finish(pSql); if( !zSql ){ rc = SQLITE_NOMEM; }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } sqlite3_free(zSql); if( rc ) goto geopolyInit_fail; pRtree->nBytesPerCell = 8 + pRtree->nDim2*4; /* Figure out the node size to use. */ rc = getNodeSize(db, pRtree, isCreate, pzErr); if( rc ) goto geopolyInit_fail; rc = rtreeSqlInit(pRtree, db, argv[1], argv[2], isCreate); if( rc ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); goto geopolyInit_fail; } *ppVtab = (sqlite3_vtab *)pRtree; return SQLITE_OK; geopolyInit_fail: if( rc==SQLITE_OK ) rc = SQLITE_ERROR; assert( *ppVtab==0 ); assert( pRtree->nBusy==1 ); rtreeRelease(pRtree); return rc; } /* ** GEOPOLY virtual table module xCreate method. */ static int geopolyCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return geopolyInit(db, pAux, argc, argv, ppVtab, pzErr, 1); } /* ** GEOPOLY virtual table module xConnect method. */ static int geopolyConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return geopolyInit(db, pAux, argc, argv, ppVtab, pzErr, 0); } /* ** GEOPOLY virtual table module xFilter method. ** ** Query plans: ** ** 1 rowid lookup ** 2 search for objects overlapping the same bounding box ** that contains polygon argv[0] ** 3 search for objects overlapping the same bounding box ** that contains polygon argv[0] ** 4 full table scan */ static int geopolyFilter( sqlite3_vtab_cursor *pVtabCursor, /* The cursor to initialize */ int idxNum, /* Query plan */ const char *idxStr, /* Not Used */ int argc, sqlite3_value **argv /* Parameters to the query plan */ ){ Rtree *pRtree = (Rtree *)pVtabCursor->pVtab; RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; RtreeNode *pRoot = 0; int rc = SQLITE_OK; int iCell = 0; rtreeReference(pRtree); /* Reset the cursor to the same state as rtreeOpen() leaves it in. */ resetCursor(pCsr); pCsr->iStrategy = idxNum; if( idxNum==1 ){ /* Special case - lookup by rowid. */ RtreeNode *pLeaf; /* Leaf on which the required cell resides */ RtreeSearchPoint *p; /* Search point for the leaf */ i64 iRowid = sqlite3_value_int64(argv[0]); i64 iNode = 0; rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode); if( rc==SQLITE_OK && pLeaf!=0 ){ p = rtreeSearchPointNew(pCsr, RTREE_ZERO, 0); assert( p!=0 ); /* Always returns pCsr->sPoint */ pCsr->aNode[0] = pLeaf; p->id = iNode; p->eWithin = PARTLY_WITHIN; rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell); p->iCell = (u8)iCell; RTREE_QUEUE_TRACE(pCsr, "PUSH-F1:"); }else{ pCsr->atEOF = 1; } }else{ /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array ** with the configured constraints. */ rc = nodeAcquire(pRtree, 1, 0, &pRoot); if( rc==SQLITE_OK && idxNum<=3 ){ RtreeCoord bbox[4]; RtreeConstraint *p; assert( argc==1 ); assert( argv[0]!=0 ); geopolyBBox(0, argv[0], bbox, &rc); if( rc ){ goto geopoly_filter_end; } pCsr->aConstraint = p = sqlite3_malloc(sizeof(RtreeConstraint)*4); pCsr->nConstraint = 4; if( p==0 ){ rc = SQLITE_NOMEM; }else{ memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*4); memset(pCsr->anQueue, 0, sizeof(u32)*(pRtree->iDepth + 1)); if( idxNum==2 ){ /* Overlap query */ p->op = 'B'; p->iCoord = 0; p->u.rValue = bbox[1].f; p++; p->op = 'D'; p->iCoord = 1; p->u.rValue = bbox[0].f; p++; p->op = 'B'; p->iCoord = 2; p->u.rValue = bbox[3].f; p++; p->op = 'D'; p->iCoord = 3; p->u.rValue = bbox[2].f; }else{ /* Within query */ p->op = 'D'; p->iCoord = 0; p->u.rValue = bbox[0].f; p++; p->op = 'B'; p->iCoord = 1; p->u.rValue = bbox[1].f; p++; p->op = 'D'; p->iCoord = 2; p->u.rValue = bbox[2].f; p++; p->op = 'B'; p->iCoord = 3; p->u.rValue = bbox[3].f; } } } if( rc==SQLITE_OK ){ RtreeSearchPoint *pNew; pNew = rtreeSearchPointNew(pCsr, RTREE_ZERO, (u8)(pRtree->iDepth+1)); if( pNew==0 ){ rc = SQLITE_NOMEM; goto geopoly_filter_end; } pNew->id = 1; pNew->iCell = 0; pNew->eWithin = PARTLY_WITHIN; assert( pCsr->bPoint==1 ); pCsr->aNode[0] = pRoot; pRoot = 0; RTREE_QUEUE_TRACE(pCsr, "PUSH-Fm:"); rc = rtreeStepToLeaf(pCsr); } } geopoly_filter_end: nodeRelease(pRtree, pRoot); rtreeRelease(pRtree); return rc; } /* ** Rtree virtual table module xBestIndex method. There are three ** table scan strategies to choose from (in order from most to ** least desirable): ** ** idxNum idxStr Strategy ** ------------------------------------------------ ** 1 "rowid" Direct lookup by rowid. ** 2 "rtree" R-tree overlap query using geopoly_overlap() ** 3 "rtree" R-tree within query using geopoly_within() ** 4 "fullscan" full-table scan. ** ------------------------------------------------ */ static int geopolyBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ int ii; int iRowidTerm = -1; int iFuncTerm = -1; int idxNum = 0; for(ii=0; iinConstraint; ii++){ struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii]; if( !p->usable ) continue; if( p->iColumn<0 && p->op==SQLITE_INDEX_CONSTRAINT_EQ ){ iRowidTerm = ii; break; } if( p->iColumn==0 && p->op>=SQLITE_INDEX_CONSTRAINT_FUNCTION ){ /* p->op==SQLITE_INDEX_CONSTRAINT_FUNCTION for geopoly_overlap() ** p->op==(SQLITE_INDEX_CONTRAINT_FUNCTION+1) for geopoly_within(). ** See geopolyFindFunction() */ iFuncTerm = ii; idxNum = p->op - SQLITE_INDEX_CONSTRAINT_FUNCTION + 2; } } if( iRowidTerm>=0 ){ pIdxInfo->idxNum = 1; pIdxInfo->idxStr = "rowid"; pIdxInfo->aConstraintUsage[iRowidTerm].argvIndex = 1; pIdxInfo->aConstraintUsage[iRowidTerm].omit = 1; pIdxInfo->estimatedCost = 30.0; pIdxInfo->estimatedRows = 1; pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; return SQLITE_OK; } if( iFuncTerm>=0 ){ pIdxInfo->idxNum = idxNum; pIdxInfo->idxStr = "rtree"; pIdxInfo->aConstraintUsage[iFuncTerm].argvIndex = 1; pIdxInfo->aConstraintUsage[iFuncTerm].omit = 0; pIdxInfo->estimatedCost = 300.0; pIdxInfo->estimatedRows = 10; return SQLITE_OK; } pIdxInfo->idxNum = 4; pIdxInfo->idxStr = "fullscan"; pIdxInfo->estimatedCost = 3000000.0; pIdxInfo->estimatedRows = 100000; return SQLITE_OK; } /* ** GEOPOLY virtual table module xColumn method. */ static int geopolyColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ Rtree *pRtree = (Rtree *)cur->pVtab; RtreeCursor *pCsr = (RtreeCursor *)cur; RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); int rc = SQLITE_OK; RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); if( rc ) return rc; if( p==0 ) return SQLITE_OK; if( i==0 && sqlite3_vtab_nochange(ctx) ) return SQLITE_OK; if( i<=pRtree->nAux ){ if( !pCsr->bAuxValid ){ if( pCsr->pReadAux==0 ){ rc = sqlite3_prepare_v3(pRtree->db, pRtree->zReadAuxSql, -1, 0, &pCsr->pReadAux, 0); if( rc ) return rc; } sqlite3_bind_int64(pCsr->pReadAux, 1, nodeGetRowid(pRtree, pNode, p->iCell)); rc = sqlite3_step(pCsr->pReadAux); if( rc==SQLITE_ROW ){ pCsr->bAuxValid = 1; }else{ sqlite3_reset(pCsr->pReadAux); if( rc==SQLITE_DONE ) rc = SQLITE_OK; return rc; } } sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pReadAux, i+2)); } return SQLITE_OK; } /* ** The xUpdate method for GEOPOLY module virtual tables. ** ** For DELETE: ** ** argv[0] = the rowid to be deleted ** ** For INSERT: ** ** argv[0] = SQL NULL ** argv[1] = rowid to insert, or an SQL NULL to select automatically ** argv[2] = _shape column ** argv[3] = first application-defined column.... ** ** For UPDATE: ** ** argv[0] = rowid to modify. Never NULL ** argv[1] = rowid after the change. Never NULL ** argv[2] = new value for _shape ** argv[3] = new value for first application-defined column.... */ static int geopolyUpdate( sqlite3_vtab *pVtab, int nData, sqlite3_value **aData, sqlite_int64 *pRowid ){ Rtree *pRtree = (Rtree *)pVtab; int rc = SQLITE_OK; RtreeCell cell; /* New cell to insert if nData>1 */ i64 oldRowid; /* The old rowid */ int oldRowidValid; /* True if oldRowid is valid */ i64 newRowid; /* The new rowid */ int newRowidValid; /* True if newRowid is valid */ int coordChange = 0; /* Change in coordinates */ if( pRtree->nNodeRef ){ /* Unable to write to the btree while another cursor is reading from it, ** since the write might do a rebalance which would disrupt the read ** cursor. */ return SQLITE_LOCKED_VTAB; } rtreeReference(pRtree); assert(nData>=1); oldRowidValid = sqlite3_value_type(aData[0])!=SQLITE_NULL;; oldRowid = oldRowidValid ? sqlite3_value_int64(aData[0]) : 0; newRowidValid = nData>1 && sqlite3_value_type(aData[1])!=SQLITE_NULL; newRowid = newRowidValid ? sqlite3_value_int64(aData[1]) : 0; cell.iRowid = newRowid; if( nData>1 /* not a DELETE */ && (!oldRowidValid /* INSERT */ || !sqlite3_value_nochange(aData[2]) /* UPDATE _shape */ || oldRowid!=newRowid) /* Rowid change */ ){ assert( aData[2]!=0 ); geopolyBBox(0, aData[2], cell.aCoord, &rc); if( rc ){ if( rc==SQLITE_ERROR ){ pVtab->zErrMsg = sqlite3_mprintf("_shape does not contain a valid polygon"); } goto geopoly_update_end; } coordChange = 1; /* If a rowid value was supplied, check if it is already present in ** the table. If so, the constraint has failed. */ if( newRowidValid && (!oldRowidValid || oldRowid!=newRowid) ){ int steprc; sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid); steprc = sqlite3_step(pRtree->pReadRowid); rc = sqlite3_reset(pRtree->pReadRowid); if( SQLITE_ROW==steprc ){ if( sqlite3_vtab_on_conflict(pRtree->db)==SQLITE_REPLACE ){ rc = rtreeDeleteRowid(pRtree, cell.iRowid); }else{ rc = rtreeConstraintError(pRtree, 0); } } } } /* If aData[0] is not an SQL NULL value, it is the rowid of a ** record to delete from the r-tree table. The following block does ** just that. */ if( rc==SQLITE_OK && (nData==1 || (coordChange && oldRowidValid)) ){ rc = rtreeDeleteRowid(pRtree, oldRowid); } /* If the aData[] array contains more than one element, elements ** (aData[2]..aData[argc-1]) contain a new record to insert into ** the r-tree structure. */ if( rc==SQLITE_OK && nData>1 && coordChange ){ /* Insert the new record into the r-tree */ RtreeNode *pLeaf = 0; if( !newRowidValid ){ rc = rtreeNewRowid(pRtree, &cell.iRowid); } *pRowid = cell.iRowid; if( rc==SQLITE_OK ){ rc = ChooseLeaf(pRtree, &cell, 0, &pLeaf); } if( rc==SQLITE_OK ){ int rc2; pRtree->iReinsertHeight = -1; rc = rtreeInsertCell(pRtree, pLeaf, &cell, 0); rc2 = nodeRelease(pRtree, pLeaf); if( rc==SQLITE_OK ){ rc = rc2; } } } /* Change the data */ if( rc==SQLITE_OK && nData>1 ){ sqlite3_stmt *pUp = pRtree->pWriteAux; int jj; int nChange = 0; sqlite3_bind_int64(pUp, 1, cell.iRowid); assert( pRtree->nAux>=1 ); if( sqlite3_value_nochange(aData[2]) ){ sqlite3_bind_null(pUp, 2); }else{ GeoPoly *p = 0; if( sqlite3_value_type(aData[2])==SQLITE_TEXT && (p = geopolyFuncParam(0, aData[2], &rc))!=0 && rc==SQLITE_OK ){ sqlite3_bind_blob(pUp, 2, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); }else{ sqlite3_bind_value(pUp, 2, aData[2]); } sqlite3_free(p); nChange = 1; } for(jj=1; jjnAux; jj++){ nChange++; sqlite3_bind_value(pUp, jj+2, aData[jj+2]); } if( nChange ){ sqlite3_step(pUp); rc = sqlite3_reset(pUp); } } geopoly_update_end: rtreeRelease(pRtree); return rc; } /* ** Report that geopoly_overlap() is an overloaded function suitable ** for use in xBestIndex. */ static int geopolyFindFunction( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ){ if( sqlite3_stricmp(zName, "geopoly_overlap")==0 ){ *pxFunc = geopolyOverlapFunc; *ppArg = 0; return SQLITE_INDEX_CONSTRAINT_FUNCTION; } if( sqlite3_stricmp(zName, "geopoly_within")==0 ){ *pxFunc = geopolyWithinFunc; *ppArg = 0; return SQLITE_INDEX_CONSTRAINT_FUNCTION+1; } return 0; } static sqlite3_module geopolyModule = { 3, /* iVersion */ geopolyCreate, /* xCreate - create a table */ geopolyConnect, /* xConnect - connect to an existing table */ geopolyBestIndex, /* xBestIndex - Determine search strategy */ rtreeDisconnect, /* xDisconnect - Disconnect from a table */ rtreeDestroy, /* xDestroy - Drop a table */ rtreeOpen, /* xOpen - open a cursor */ rtreeClose, /* xClose - close a cursor */ geopolyFilter, /* xFilter - configure scan constraints */ rtreeNext, /* xNext - advance a cursor */ rtreeEof, /* xEof */ geopolyColumn, /* xColumn - read data */ rtreeRowid, /* xRowid - read data */ geopolyUpdate, /* xUpdate - write data */ rtreeBeginTransaction, /* xBegin - begin transaction */ rtreeEndTransaction, /* xSync - sync transaction */ rtreeEndTransaction, /* xCommit - commit transaction */ rtreeEndTransaction, /* xRollback - rollback transaction */ geopolyFindFunction, /* xFindFunction - function overloading */ rtreeRename, /* xRename - rename the table */ rtreeSavepoint, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ rtreeShadowName /* xShadowName */ }; static int sqlite3_geopoly_init(sqlite3 *db){ int rc = SQLITE_OK; static const struct { void (*xFunc)(sqlite3_context*,int,sqlite3_value**); signed char nArg; unsigned char bPure; const char *zName; } aFunc[] = { { geopolyAreaFunc, 1, 1, "geopoly_area" }, { geopolyBlobFunc, 1, 1, "geopoly_blob" }, { geopolyJsonFunc, 1, 1, "geopoly_json" }, { geopolySvgFunc, -1, 1, "geopoly_svg" }, { geopolyWithinFunc, 2, 1, "geopoly_within" }, { geopolyContainsPointFunc, 3, 1, "geopoly_contains_point" }, { geopolyOverlapFunc, 2, 1, "geopoly_overlap" }, { geopolyDebugFunc, 1, 0, "geopoly_debug" }, { geopolyBBoxFunc, 1, 1, "geopoly_bbox" }, { geopolyXformFunc, 7, 1, "geopoly_xform" }, { geopolyRegularFunc, 4, 1, "geopoly_regular" }, { geopolyCcwFunc, 1, 1, "geopoly_ccw" }, }; static const struct { void (*xStep)(sqlite3_context*,int,sqlite3_value**); void (*xFinal)(sqlite3_context*); const char *zName; } aAgg[] = { { geopolyBBoxStep, geopolyBBoxFinal, "geopoly_group_bbox" }, }; int i; for(i=0; ixDestructor ) pInfo->xDestructor(pInfo->pContext); sqlite3_free(p); } /* ** This routine frees the BLOB that is returned by geomCallback(). */ static void rtreeMatchArgFree(void *pArg){ int i; RtreeMatchArg *p = (RtreeMatchArg*)pArg; for(i=0; inParam; i++){ sqlite3_value_free(p->apSqlParam[i]); } sqlite3_free(p); } /* ** Each call to sqlite3_rtree_geometry_callback() or ** sqlite3_rtree_query_callback() creates an ordinary SQLite ** scalar function that is implemented by this routine. ** ** All this function does is construct an RtreeMatchArg object that ** contains the geometry-checking callback routines and a list of ** parameters to this function, then return that RtreeMatchArg object ** as a BLOB. ** ** The R-Tree MATCH operator will read the returned BLOB, deserialize ** the RtreeMatchArg object, and use the RtreeMatchArg object to figure ** out which elements of the R-Tree should be returned by the query. */ static void geomCallback(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){ RtreeGeomCallback *pGeomCtx = (RtreeGeomCallback *)sqlite3_user_data(ctx); RtreeMatchArg *pBlob; sqlite3_int64 nBlob; int memErr = 0; nBlob = sizeof(RtreeMatchArg) + (nArg-1)*sizeof(RtreeDValue) + nArg*sizeof(sqlite3_value*); pBlob = (RtreeMatchArg *)sqlite3_malloc64(nBlob); if( !pBlob ){ sqlite3_result_error_nomem(ctx); }else{ int i; pBlob->iSize = nBlob; pBlob->cb = pGeomCtx[0]; pBlob->apSqlParam = (sqlite3_value**)&pBlob->aParam[nArg]; pBlob->nParam = nArg; for(i=0; iapSqlParam[i] = sqlite3_value_dup(aArg[i]); if( pBlob->apSqlParam[i]==0 ) memErr = 1; #ifdef SQLITE_RTREE_INT_ONLY pBlob->aParam[i] = sqlite3_value_int64(aArg[i]); #else pBlob->aParam[i] = sqlite3_value_double(aArg[i]); #endif } if( memErr ){ sqlite3_result_error_nomem(ctx); rtreeMatchArgFree(pBlob); }else{ sqlite3_result_pointer(ctx, pBlob, "RtreeMatchArg", rtreeMatchArgFree); } } } /* ** Register a new geometry function for use with the r-tree MATCH operator. */ SQLITE_API int sqlite3_rtree_geometry_callback( sqlite3 *db, /* Register SQL function on this connection */ const char *zGeom, /* Name of the new SQL function */ int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*), /* Callback */ void *pContext /* Extra data associated with the callback */ ){ RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ /* Allocate and populate the context object. */ pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback)); if( !pGeomCtx ) return SQLITE_NOMEM; pGeomCtx->xGeom = xGeom; pGeomCtx->xQueryFunc = 0; pGeomCtx->xDestructor = 0; pGeomCtx->pContext = pContext; return sqlite3_create_function_v2(db, zGeom, -1, SQLITE_ANY, (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback ); } /* ** Register a new 2nd-generation geometry function for use with the ** r-tree MATCH operator. */ SQLITE_API int sqlite3_rtree_query_callback( sqlite3 *db, /* Register SQL function on this connection */ const char *zQueryFunc, /* Name of new SQL function */ int (*xQueryFunc)(sqlite3_rtree_query_info*), /* Callback */ void *pContext, /* Extra data passed into the callback */ void (*xDestructor)(void*) /* Destructor for the extra data */ ){ RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ /* Allocate and populate the context object. */ pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback)); if( !pGeomCtx ){ if( xDestructor ) xDestructor(pContext); return SQLITE_NOMEM; } pGeomCtx->xGeom = 0; pGeomCtx->xQueryFunc = xQueryFunc; pGeomCtx->xDestructor = xDestructor; pGeomCtx->pContext = pContext; return sqlite3_create_function_v2(db, zQueryFunc, -1, SQLITE_ANY, (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback ); } #if !SQLITE_CORE #ifdef _WIN32 __declspec(dllexport) #endif SQLITE_API int sqlite3_rtree_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ SQLITE_EXTENSION_INIT2(pApi) return sqlite3RtreeInit(db); } #endif #endif /************** End of rtree.c ***********************************************/ /************** Begin file icu.c *********************************************/ /* ** 2007 May 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** $Id: icu.c,v 1.7 2007/12/13 21:54:11 drh Exp $ ** ** This file implements an integration between the ICU library ** ("International Components for Unicode", an open-source library ** for handling unicode data) and SQLite. The integration uses ** ICU to provide the following to SQLite: ** ** * An implementation of the SQL regexp() function (and hence REGEXP ** operator) using the ICU uregex_XX() APIs. ** ** * Implementations of the SQL scalar upper() and lower() functions ** for case mapping. ** ** * Integration of ICU and SQLite collation sequences. ** ** * An implementation of the LIKE operator that uses ICU to ** provide case-independent matching. */ #if !defined(SQLITE_CORE) \ || defined(SQLITE_ENABLE_ICU) \ || defined(SQLITE_ENABLE_ICU_COLLATIONS) /* Include ICU headers */ #include #include #include #include /* #include */ #ifndef SQLITE_CORE /* #include "sqlite3ext.h" */ SQLITE_EXTENSION_INIT1 #else /* #include "sqlite3.h" */ #endif /* ** This function is called when an ICU function called from within ** the implementation of an SQL scalar function returns an error. ** ** The scalar function context passed as the first argument is ** loaded with an error message based on the following two args. */ static void icuFunctionError( sqlite3_context *pCtx, /* SQLite scalar function context */ const char *zName, /* Name of ICU function that failed */ UErrorCode e /* Error code returned by ICU function */ ){ char zBuf[128]; sqlite3_snprintf(128, zBuf, "ICU error: %s(): %s", zName, u_errorName(e)); zBuf[127] = '\0'; sqlite3_result_error(pCtx, zBuf, -1); } #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) /* ** Maximum length (in bytes) of the pattern in a LIKE or GLOB ** operator. */ #ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH # define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000 #endif /* ** Version of sqlite3_free() that is always a function, never a macro. */ static void xFree(void *p){ sqlite3_free(p); } /* ** This lookup table is used to help decode the first byte of ** a multi-byte UTF8 character. It is copied here from SQLite source ** code file utf8.c. */ static const unsigned char icuUtf8Trans1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, }; #define SQLITE_ICU_READ_UTF8(zIn, c) \ c = *(zIn++); \ if( c>=0xc0 ){ \ c = icuUtf8Trans1[c-0xc0]; \ while( (*zIn & 0xc0)==0x80 ){ \ c = (c<<6) + (0x3f & *(zIn++)); \ } \ } #define SQLITE_ICU_SKIP_UTF8(zIn) \ assert( *zIn ); \ if( *(zIn++)>=0xc0 ){ \ while( (*zIn & 0xc0)==0x80 ){zIn++;} \ } /* ** Compare two UTF-8 strings for equality where the first string is ** a "LIKE" expression. Return true (1) if they are the same and ** false (0) if they are different. */ static int icuLikeCompare( const uint8_t *zPattern, /* LIKE pattern */ const uint8_t *zString, /* The UTF-8 string to compare against */ const UChar32 uEsc /* The escape character */ ){ static const uint32_t MATCH_ONE = (uint32_t)'_'; static const uint32_t MATCH_ALL = (uint32_t)'%'; int prevEscape = 0; /* True if the previous character was uEsc */ while( 1 ){ /* Read (and consume) the next character from the input pattern. */ uint32_t uPattern; SQLITE_ICU_READ_UTF8(zPattern, uPattern); if( uPattern==0 ) break; /* There are now 4 possibilities: ** ** 1. uPattern is an unescaped match-all character "%", ** 2. uPattern is an unescaped match-one character "_", ** 3. uPattern is an unescaped escape character, or ** 4. uPattern is to be handled as an ordinary character */ if( uPattern==MATCH_ALL && !prevEscape && uPattern!=(uint32_t)uEsc ){ /* Case 1. */ uint8_t c; /* Skip any MATCH_ALL or MATCH_ONE characters that follow a ** MATCH_ALL. For each MATCH_ONE, skip one character in the ** test string. */ while( (c=*zPattern) == MATCH_ALL || c == MATCH_ONE ){ if( c==MATCH_ONE ){ if( *zString==0 ) return 0; SQLITE_ICU_SKIP_UTF8(zString); } zPattern++; } if( *zPattern==0 ) return 1; while( *zString ){ if( icuLikeCompare(zPattern, zString, uEsc) ){ return 1; } SQLITE_ICU_SKIP_UTF8(zString); } return 0; }else if( uPattern==MATCH_ONE && !prevEscape && uPattern!=(uint32_t)uEsc ){ /* Case 2. */ if( *zString==0 ) return 0; SQLITE_ICU_SKIP_UTF8(zString); }else if( uPattern==(uint32_t)uEsc && !prevEscape ){ /* Case 3. */ prevEscape = 1; }else{ /* Case 4. */ uint32_t uString; SQLITE_ICU_READ_UTF8(zString, uString); uString = (uint32_t)u_foldCase((UChar32)uString, U_FOLD_CASE_DEFAULT); uPattern = (uint32_t)u_foldCase((UChar32)uPattern, U_FOLD_CASE_DEFAULT); if( uString!=uPattern ){ return 0; } prevEscape = 0; } } return *zString==0; } /* ** Implementation of the like() SQL function. This function implements ** the build-in LIKE operator. The first argument to the function is the ** pattern and the second argument is the string. So, the SQL statements: ** ** A LIKE B ** ** is implemented as like(B, A). If there is an escape character E, ** ** A LIKE B ESCAPE E ** ** is mapped to like(B, A, E). */ static void icuLikeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zA = sqlite3_value_text(argv[0]); const unsigned char *zB = sqlite3_value_text(argv[1]); UChar32 uEsc = 0; /* Limit the length of the LIKE or GLOB pattern to avoid problems ** of deep recursion and N*N behavior in patternCompare(). */ if( sqlite3_value_bytes(argv[0])>SQLITE_MAX_LIKE_PATTERN_LENGTH ){ sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1); return; } if( argc==3 ){ /* The escape character string must consist of a single UTF-8 character. ** Otherwise, return an error. */ int nE= sqlite3_value_bytes(argv[2]); const unsigned char *zE = sqlite3_value_text(argv[2]); int i = 0; if( zE==0 ) return; U8_NEXT(zE, i, nE, uEsc); if( i!=nE){ sqlite3_result_error(context, "ESCAPE expression must be a single character", -1); return; } } if( zA && zB ){ sqlite3_result_int(context, icuLikeCompare(zA, zB, uEsc)); } } /* ** Function to delete compiled regexp objects. Registered as ** a destructor function with sqlite3_set_auxdata(). */ static void icuRegexpDelete(void *p){ URegularExpression *pExpr = (URegularExpression *)p; uregex_close(pExpr); } /* ** Implementation of SQLite REGEXP operator. This scalar function takes ** two arguments. The first is a regular expression pattern to compile ** the second is a string to match against that pattern. If either ** argument is an SQL NULL, then NULL Is returned. Otherwise, the result ** is 1 if the string matches the pattern, or 0 otherwise. ** ** SQLite maps the regexp() function to the regexp() operator such ** that the following two are equivalent: ** ** zString REGEXP zPattern ** regexp(zPattern, zString) ** ** Uses the following ICU regexp APIs: ** ** uregex_open() ** uregex_matches() ** uregex_close() */ static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){ UErrorCode status = U_ZERO_ERROR; URegularExpression *pExpr; UBool res; const UChar *zString = sqlite3_value_text16(apArg[1]); (void)nArg; /* Unused parameter */ /* If the left hand side of the regexp operator is NULL, ** then the result is also NULL. */ if( !zString ){ return; } pExpr = sqlite3_get_auxdata(p, 0); if( !pExpr ){ const UChar *zPattern = sqlite3_value_text16(apArg[0]); if( !zPattern ){ return; } pExpr = uregex_open(zPattern, -1, 0, 0, &status); if( U_SUCCESS(status) ){ sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete); }else{ assert(!pExpr); icuFunctionError(p, "uregex_open", status); return; } } /* Configure the text that the regular expression operates on. */ uregex_setText(pExpr, zString, -1, &status); if( !U_SUCCESS(status) ){ icuFunctionError(p, "uregex_setText", status); return; } /* Attempt the match */ res = uregex_matches(pExpr, 0, &status); if( !U_SUCCESS(status) ){ icuFunctionError(p, "uregex_matches", status); return; } /* Set the text that the regular expression operates on to a NULL ** pointer. This is not really necessary, but it is tidier than ** leaving the regular expression object configured with an invalid ** pointer after this function returns. */ uregex_setText(pExpr, 0, 0, &status); /* Return 1 or 0. */ sqlite3_result_int(p, res ? 1 : 0); } /* ** Implementations of scalar functions for case mapping - upper() and ** lower(). Function upper() converts its input to upper-case (ABC). ** Function lower() converts to lower-case (abc). ** ** ICU provides two types of case mapping, "general" case mapping and ** "language specific". Refer to ICU documentation for the differences ** between the two. ** ** To utilise "general" case mapping, the upper() or lower() scalar ** functions are invoked with one argument: ** ** upper('ABC') -> 'abc' ** lower('abc') -> 'ABC' ** ** To access ICU "language specific" case mapping, upper() or lower() ** should be invoked with two arguments. The second argument is the name ** of the locale to use. Passing an empty string ("") or SQL NULL value ** as the second argument is the same as invoking the 1 argument version ** of upper() or lower(). ** ** lower('I', 'en_us') -> 'i' ** lower('I', 'tr_tr') -> '\u131' (small dotless i) ** ** http://www.icu-project.org/userguide/posix.html#case_mappings */ static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){ const UChar *zInput; /* Pointer to input string */ UChar *zOutput = 0; /* Pointer to output buffer */ int nInput; /* Size of utf-16 input string in bytes */ int nOut; /* Size of output buffer in bytes */ int cnt; int bToUpper; /* True for toupper(), false for tolower() */ UErrorCode status; const char *zLocale = 0; assert(nArg==1 || nArg==2); bToUpper = (sqlite3_user_data(p)!=0); if( nArg==2 ){ zLocale = (const char *)sqlite3_value_text(apArg[1]); } zInput = sqlite3_value_text16(apArg[0]); if( !zInput ){ return; } nOut = nInput = sqlite3_value_bytes16(apArg[0]); if( nOut==0 ){ sqlite3_result_text16(p, "", 0, SQLITE_STATIC); return; } for(cnt=0; cnt<2; cnt++){ UChar *zNew = sqlite3_realloc(zOutput, nOut); if( zNew==0 ){ sqlite3_free(zOutput); sqlite3_result_error_nomem(p); return; } zOutput = zNew; status = U_ZERO_ERROR; if( bToUpper ){ nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status); }else{ nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status); } if( U_SUCCESS(status) ){ sqlite3_result_text16(p, zOutput, nOut, xFree); }else if( status==U_BUFFER_OVERFLOW_ERROR ){ assert( cnt==0 ); continue; }else{ icuFunctionError(p, bToUpper ? "u_strToUpper" : "u_strToLower", status); } return; } assert( 0 ); /* Unreachable */ } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) */ /* ** Collation sequence destructor function. The pCtx argument points to ** a UCollator structure previously allocated using ucol_open(). */ static void icuCollationDel(void *pCtx){ UCollator *p = (UCollator *)pCtx; ucol_close(p); } /* ** Collation sequence comparison function. The pCtx argument points to ** a UCollator structure previously allocated using ucol_open(). */ static int icuCollationColl( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ){ UCollationResult res; UCollator *p = (UCollator *)pCtx; res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2); switch( res ){ case UCOL_LESS: return -1; case UCOL_GREATER: return +1; case UCOL_EQUAL: return 0; } assert(!"Unexpected return value from ucol_strcoll()"); return 0; } /* ** Implementation of the scalar function icu_load_collation(). ** ** This scalar function is used to add ICU collation based collation ** types to an SQLite database connection. It is intended to be called ** as follows: ** ** SELECT icu_load_collation(, ); ** ** Where is a string containing an ICU locale identifier (i.e. ** "en_AU", "tr_TR" etc.) and is the name of the ** collation sequence to create. */ static void icuLoadCollation( sqlite3_context *p, int nArg, sqlite3_value **apArg ){ sqlite3 *db = (sqlite3 *)sqlite3_user_data(p); UErrorCode status = U_ZERO_ERROR; const char *zLocale; /* Locale identifier - (eg. "jp_JP") */ const char *zName; /* SQL Collation sequence name (eg. "japanese") */ UCollator *pUCollator; /* ICU library collation object */ int rc; /* Return code from sqlite3_create_collation_x() */ assert(nArg==2); (void)nArg; /* Unused parameter */ zLocale = (const char *)sqlite3_value_text(apArg[0]); zName = (const char *)sqlite3_value_text(apArg[1]); if( !zLocale || !zName ){ return; } pUCollator = ucol_open(zLocale, &status); if( !U_SUCCESS(status) ){ icuFunctionError(p, "ucol_open", status); return; } assert(p); rc = sqlite3_create_collation_v2(db, zName, SQLITE_UTF16, (void *)pUCollator, icuCollationColl, icuCollationDel ); if( rc!=SQLITE_OK ){ ucol_close(pUCollator); sqlite3_result_error(p, "Error registering collation function", -1); } } /* ** Register the ICU extension functions with database db. */ SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db){ # define SQLITEICU_EXTRAFLAGS (SQLITE_DETERMINISTIC|SQLITE_INNOCUOUS) static const struct IcuScalar { const char *zName; /* Function name */ unsigned char nArg; /* Number of arguments */ unsigned int enc; /* Optimal text encoding */ unsigned char iContext; /* sqlite3_user_data() context */ void (*xFunc)(sqlite3_context*,int,sqlite3_value**); } scalars[] = { {"icu_load_collation",2,SQLITE_UTF8|SQLITE_DIRECTONLY,1, icuLoadCollation}, #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) {"regexp", 2, SQLITE_ANY|SQLITEICU_EXTRAFLAGS, 0, icuRegexpFunc}, {"lower", 1, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"lower", 2, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"upper", 1, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"upper", 2, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"lower", 1, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"lower", 2, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"upper", 1, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"upper", 2, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"like", 2, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuLikeFunc}, {"like", 3, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuLikeFunc}, #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) */ }; int rc = SQLITE_OK; int i; for(i=0; rc==SQLITE_OK && i<(int)(sizeof(scalars)/sizeof(scalars[0])); i++){ const struct IcuScalar *p = &scalars[i]; rc = sqlite3_create_function( db, p->zName, p->nArg, p->enc, p->iContext ? (void*)db : (void*)0, p->xFunc, 0, 0 ); } return rc; } #if !SQLITE_CORE #ifdef _WIN32 __declspec(dllexport) #endif SQLITE_API int sqlite3_icu_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ SQLITE_EXTENSION_INIT2(pApi) return sqlite3IcuInit(db); } #endif #endif /************** End of icu.c *************************************************/ /************** Begin file fts3_icu.c ****************************************/ /* ** 2007 June 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements a tokenizer for fts3 based on the ICU library. */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) #ifdef SQLITE_ENABLE_ICU /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ #include /* #include */ /* #include */ #include typedef struct IcuTokenizer IcuTokenizer; typedef struct IcuCursor IcuCursor; struct IcuTokenizer { sqlite3_tokenizer base; char *zLocale; }; struct IcuCursor { sqlite3_tokenizer_cursor base; UBreakIterator *pIter; /* ICU break-iterator object */ int nChar; /* Number of UChar elements in pInput */ UChar *aChar; /* Copy of input using utf-16 encoding */ int *aOffset; /* Offsets of each character in utf-8 input */ int nBuffer; char *zBuffer; int iToken; }; /* ** Create a new tokenizer instance. */ static int icuCreate( int argc, /* Number of entries in argv[] */ const char * const *argv, /* Tokenizer creation arguments */ sqlite3_tokenizer **ppTokenizer /* OUT: Created tokenizer */ ){ IcuTokenizer *p; int n = 0; if( argc>0 ){ n = strlen(argv[0])+1; } p = (IcuTokenizer *)sqlite3_malloc64(sizeof(IcuTokenizer)+n); if( !p ){ return SQLITE_NOMEM; } memset(p, 0, sizeof(IcuTokenizer)); if( n ){ p->zLocale = (char *)&p[1]; memcpy(p->zLocale, argv[0], n); } *ppTokenizer = (sqlite3_tokenizer *)p; return SQLITE_OK; } /* ** Destroy a tokenizer */ static int icuDestroy(sqlite3_tokenizer *pTokenizer){ IcuTokenizer *p = (IcuTokenizer *)pTokenizer; sqlite3_free(p); return SQLITE_OK; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is pInput[0..nBytes-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int icuOpen( sqlite3_tokenizer *pTokenizer, /* The tokenizer */ const char *zInput, /* Input string */ int nInput, /* Length of zInput in bytes */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ ){ IcuTokenizer *p = (IcuTokenizer *)pTokenizer; IcuCursor *pCsr; const int32_t opt = U_FOLD_CASE_DEFAULT; UErrorCode status = U_ZERO_ERROR; int nChar; UChar32 c; int iInput = 0; int iOut = 0; *ppCursor = 0; if( zInput==0 ){ nInput = 0; zInput = ""; }else if( nInput<0 ){ nInput = strlen(zInput); } nChar = nInput+1; pCsr = (IcuCursor *)sqlite3_malloc64( sizeof(IcuCursor) + /* IcuCursor */ ((nChar+3)&~3) * sizeof(UChar) + /* IcuCursor.aChar[] */ (nChar+1) * sizeof(int) /* IcuCursor.aOffset[] */ ); if( !pCsr ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(IcuCursor)); pCsr->aChar = (UChar *)&pCsr[1]; pCsr->aOffset = (int *)&pCsr->aChar[(nChar+3)&~3]; pCsr->aOffset[iOut] = iInput; U8_NEXT(zInput, iInput, nInput, c); while( c>0 ){ int isError = 0; c = u_foldCase(c, opt); U16_APPEND(pCsr->aChar, iOut, nChar, c, isError); if( isError ){ sqlite3_free(pCsr); return SQLITE_ERROR; } pCsr->aOffset[iOut] = iInput; if( iInputpIter = ubrk_open(UBRK_WORD, p->zLocale, pCsr->aChar, iOut, &status); if( !U_SUCCESS(status) ){ sqlite3_free(pCsr); return SQLITE_ERROR; } pCsr->nChar = iOut; ubrk_first(pCsr->pIter); *ppCursor = (sqlite3_tokenizer_cursor *)pCsr; return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to icuOpen(). */ static int icuClose(sqlite3_tokenizer_cursor *pCursor){ IcuCursor *pCsr = (IcuCursor *)pCursor; ubrk_close(pCsr->pIter); sqlite3_free(pCsr->zBuffer); sqlite3_free(pCsr); return SQLITE_OK; } /* ** Extract the next token from a tokenization cursor. */ static int icuNext( sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by simpleOpen */ const char **ppToken, /* OUT: *ppToken is the token text */ int *pnBytes, /* OUT: Number of bytes in token */ int *piStartOffset, /* OUT: Starting offset of token */ int *piEndOffset, /* OUT: Ending offset of token */ int *piPosition /* OUT: Position integer of token */ ){ IcuCursor *pCsr = (IcuCursor *)pCursor; int iStart = 0; int iEnd = 0; int nByte = 0; while( iStart==iEnd ){ UChar32 c; iStart = ubrk_current(pCsr->pIter); iEnd = ubrk_next(pCsr->pIter); if( iEnd==UBRK_DONE ){ return SQLITE_DONE; } while( iStartaChar, iWhite, pCsr->nChar, c); if( u_isspace(c) ){ iStart = iWhite; }else{ break; } } assert(iStart<=iEnd); } do { UErrorCode status = U_ZERO_ERROR; if( nByte ){ char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte); if( !zNew ){ return SQLITE_NOMEM; } pCsr->zBuffer = zNew; pCsr->nBuffer = nByte; } u_strToUTF8( pCsr->zBuffer, pCsr->nBuffer, &nByte, /* Output vars */ &pCsr->aChar[iStart], iEnd-iStart, /* Input vars */ &status /* Output success/failure */ ); } while( nByte>pCsr->nBuffer ); *ppToken = pCsr->zBuffer; *pnBytes = nByte; *piStartOffset = pCsr->aOffset[iStart]; *piEndOffset = pCsr->aOffset[iEnd]; *piPosition = pCsr->iToken++; return SQLITE_OK; } /* ** The set of routines that implement the simple tokenizer */ static const sqlite3_tokenizer_module icuTokenizerModule = { 0, /* iVersion */ icuCreate, /* xCreate */ icuDestroy, /* xCreate */ icuOpen, /* xOpen */ icuClose, /* xClose */ icuNext, /* xNext */ 0, /* xLanguageid */ }; /* ** Set *ppModule to point at the implementation of the ICU tokenizer. */ SQLITE_PRIVATE void sqlite3Fts3IcuTokenizerModule( sqlite3_tokenizer_module const**ppModule ){ *ppModule = &icuTokenizerModule; } #endif /* defined(SQLITE_ENABLE_ICU) */ #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_icu.c ********************************************/ /************** Begin file sqlite3rbu.c **************************************/ /* ** 2014 August 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** ** OVERVIEW ** ** The RBU extension requires that the RBU update be packaged as an ** SQLite database. The tables it expects to find are described in ** sqlite3rbu.h. Essentially, for each table xyz in the target database ** that the user wishes to write to, a corresponding data_xyz table is ** created in the RBU database and populated with one row for each row to ** update, insert or delete from the target table. ** ** The update proceeds in three stages: ** ** 1) The database is updated. The modified database pages are written ** to a *-oal file. A *-oal file is just like a *-wal file, except ** that it is named "-oal" instead of "-wal". ** Because regular SQLite clients do not look for file named ** "-oal", they go on using the original database in ** rollback mode while the *-oal file is being generated. ** ** During this stage RBU does not update the database by writing ** directly to the target tables. Instead it creates "imposter" ** tables using the SQLITE_TESTCTRL_IMPOSTER interface that it uses ** to update each b-tree individually. All updates required by each ** b-tree are completed before moving on to the next, and all ** updates are done in sorted key order. ** ** 2) The "-oal" file is moved to the equivalent "-wal" ** location using a call to rename(2). Before doing this the RBU ** module takes an EXCLUSIVE lock on the database file, ensuring ** that there are no other active readers. ** ** Once the EXCLUSIVE lock is released, any other database readers ** detect the new *-wal file and read the database in wal mode. At ** this point they see the new version of the database - including ** the updates made as part of the RBU update. ** ** 3) The new *-wal file is checkpointed. This proceeds in the same way ** as a regular database checkpoint, except that a single frame is ** checkpointed each time sqlite3rbu_step() is called. If the RBU ** handle is closed before the entire *-wal file is checkpointed, ** the checkpoint progress is saved in the RBU database and the ** checkpoint can be resumed by another RBU client at some point in ** the future. ** ** POTENTIAL PROBLEMS ** ** The rename() call might not be portable. And RBU is not currently ** syncing the directory after renaming the file. ** ** When state is saved, any commit to the *-oal file and the commit to ** the RBU update database are not atomic. So if the power fails at the ** wrong moment they might get out of sync. As the main database will be ** committed before the RBU update database this will likely either just ** pass unnoticed, or result in SQLITE_CONSTRAINT errors (due to UNIQUE ** constraint violations). ** ** If some client does modify the target database mid RBU update, or some ** other error occurs, the RBU extension will keep throwing errors. It's ** not really clear how to get out of this state. The system could just ** by delete the RBU update database and *-oal file and have the device ** download the update again and start over. ** ** At present, for an UPDATE, both the new.* and old.* records are ** collected in the rbu_xyz table. And for both UPDATEs and DELETEs all ** fields are collected. This means we're probably writing a lot more ** data to disk when saving the state of an ongoing update to the RBU ** update database than is strictly necessary. ** */ /* #include */ /* #include */ /* #include */ /* #include "sqlite3.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_RBU) /************** Include sqlite3rbu.h in the middle of sqlite3rbu.c ***********/ /************** Begin file sqlite3rbu.h **************************************/ /* ** 2014 August 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains the public interface for the RBU extension. */ /* ** SUMMARY ** ** Writing a transaction containing a large number of operations on ** b-tree indexes that are collectively larger than the available cache ** memory can be very inefficient. ** ** The problem is that in order to update a b-tree, the leaf page (at least) ** containing the entry being inserted or deleted must be modified. If the ** working set of leaves is larger than the available cache memory, then a ** single leaf that is modified more than once as part of the transaction ** may be loaded from or written to the persistent media multiple times. ** Additionally, because the index updates are likely to be applied in ** random order, access to pages within the database is also likely to be in ** random order, which is itself quite inefficient. ** ** One way to improve the situation is to sort the operations on each index ** by index key before applying them to the b-tree. This leads to an IO ** pattern that resembles a single linear scan through the index b-tree, ** and all but guarantees each modified leaf page is loaded and stored ** exactly once. SQLite uses this trick to improve the performance of ** CREATE INDEX commands. This extension allows it to be used to improve ** the performance of large transactions on existing databases. ** ** Additionally, this extension allows the work involved in writing the ** large transaction to be broken down into sub-transactions performed ** sequentially by separate processes. This is useful if the system cannot ** guarantee that a single update process will run for long enough to apply ** the entire update, for example because the update is being applied on a ** mobile device that is frequently rebooted. Even after the writer process ** has committed one or more sub-transactions, other database clients continue ** to read from the original database snapshot. In other words, partially ** applied transactions are not visible to other clients. ** ** "RBU" stands for "Resumable Bulk Update". As in a large database update ** transmitted via a wireless network to a mobile device. A transaction ** applied using this extension is hence refered to as an "RBU update". ** ** ** LIMITATIONS ** ** An "RBU update" transaction is subject to the following limitations: ** ** * The transaction must consist of INSERT, UPDATE and DELETE operations ** only. ** ** * INSERT statements may not use any default values. ** ** * UPDATE and DELETE statements must identify their target rows by ** non-NULL PRIMARY KEY values. Rows with NULL values stored in PRIMARY ** KEY fields may not be updated or deleted. If the table being written ** has no PRIMARY KEY, affected rows must be identified by rowid. ** ** * UPDATE statements may not modify PRIMARY KEY columns. ** ** * No triggers will be fired. ** ** * No foreign key violations are detected or reported. ** ** * CHECK constraints are not enforced. ** ** * No constraint handling mode except for "OR ROLLBACK" is supported. ** ** ** PREPARATION ** ** An "RBU update" is stored as a separate SQLite database. A database ** containing an RBU update is an "RBU database". For each table in the ** target database to be updated, the RBU database should contain a table ** named "data_" containing the same set of columns as the ** target table, and one more - "rbu_control". The data_% table should ** have no PRIMARY KEY or UNIQUE constraints, but each column should have ** the same type as the corresponding column in the target database. ** The "rbu_control" column should have no type at all. For example, if ** the target database contains: ** ** CREATE TABLE t1(a INTEGER PRIMARY KEY, b TEXT, c UNIQUE); ** ** Then the RBU database should contain: ** ** CREATE TABLE data_t1(a INTEGER, b TEXT, c, rbu_control); ** ** The order of the columns in the data_% table does not matter. ** ** Instead of a regular table, the RBU database may also contain virtual ** tables or view named using the data_ naming scheme. ** ** Instead of the plain data_ naming scheme, RBU database tables ** may also be named data_, where is any sequence ** of zero or more numeric characters (0-9). This can be significant because ** tables within the RBU database are always processed in order sorted by ** name. By judicious selection of the portion of the names ** of the RBU tables the user can therefore control the order in which they ** are processed. This can be useful, for example, to ensure that "external ** content" FTS4 tables are updated before their underlying content tables. ** ** If the target database table is a virtual table or a table that has no ** PRIMARY KEY declaration, the data_% table must also contain a column ** named "rbu_rowid". This column is mapped to the tables implicit primary ** key column - "rowid". Virtual tables for which the "rowid" column does ** not function like a primary key value cannot be updated using RBU. For ** example, if the target db contains either of the following: ** ** CREATE VIRTUAL TABLE x1 USING fts3(a, b); ** CREATE TABLE x1(a, b) ** ** then the RBU database should contain: ** ** CREATE TABLE data_x1(a, b, rbu_rowid, rbu_control); ** ** All non-hidden columns (i.e. all columns matched by "SELECT *") of the ** target table must be present in the input table. For virtual tables, ** hidden columns are optional - they are updated by RBU if present in ** the input table, or not otherwise. For example, to write to an fts4 ** table with a hidden languageid column such as: ** ** CREATE VIRTUAL TABLE ft1 USING fts4(a, b, languageid='langid'); ** ** Either of the following input table schemas may be used: ** ** CREATE TABLE data_ft1(a, b, langid, rbu_rowid, rbu_control); ** CREATE TABLE data_ft1(a, b, rbu_rowid, rbu_control); ** ** For each row to INSERT into the target database as part of the RBU ** update, the corresponding data_% table should contain a single record ** with the "rbu_control" column set to contain integer value 0. The ** other columns should be set to the values that make up the new record ** to insert. ** ** If the target database table has an INTEGER PRIMARY KEY, it is not ** possible to insert a NULL value into the IPK column. Attempting to ** do so results in an SQLITE_MISMATCH error. ** ** For each row to DELETE from the target database as part of the RBU ** update, the corresponding data_% table should contain a single record ** with the "rbu_control" column set to contain integer value 1. The ** real primary key values of the row to delete should be stored in the ** corresponding columns of the data_% table. The values stored in the ** other columns are not used. ** ** For each row to UPDATE from the target database as part of the RBU ** update, the corresponding data_% table should contain a single record ** with the "rbu_control" column set to contain a value of type text. ** The real primary key values identifying the row to update should be ** stored in the corresponding columns of the data_% table row, as should ** the new values of all columns being update. The text value in the ** "rbu_control" column must contain the same number of characters as ** there are columns in the target database table, and must consist entirely ** of 'x' and '.' characters (or in some special cases 'd' - see below). For ** each column that is being updated, the corresponding character is set to ** 'x'. For those that remain as they are, the corresponding character of the ** rbu_control value should be set to '.'. For example, given the tables ** above, the update statement: ** ** UPDATE t1 SET c = 'usa' WHERE a = 4; ** ** is represented by the data_t1 row created by: ** ** INSERT INTO data_t1(a, b, c, rbu_control) VALUES(4, NULL, 'usa', '..x'); ** ** Instead of an 'x' character, characters of the rbu_control value specified ** for UPDATEs may also be set to 'd'. In this case, instead of updating the ** target table with the value stored in the corresponding data_% column, the ** user-defined SQL function "rbu_delta()" is invoked and the result stored in ** the target table column. rbu_delta() is invoked with two arguments - the ** original value currently stored in the target table column and the ** value specified in the data_xxx table. ** ** For example, this row: ** ** INSERT INTO data_t1(a, b, c, rbu_control) VALUES(4, NULL, 'usa', '..d'); ** ** is similar to an UPDATE statement such as: ** ** UPDATE t1 SET c = rbu_delta(c, 'usa') WHERE a = 4; ** ** Finally, if an 'f' character appears in place of a 'd' or 's' in an ** ota_control string, the contents of the data_xxx table column is assumed ** to be a "fossil delta" - a patch to be applied to a blob value in the ** format used by the fossil source-code management system. In this case ** the existing value within the target database table must be of type BLOB. ** It is replaced by the result of applying the specified fossil delta to ** itself. ** ** If the target database table is a virtual table or a table with no PRIMARY ** KEY, the rbu_control value should not include a character corresponding ** to the rbu_rowid value. For example, this: ** ** INSERT INTO data_ft1(a, b, rbu_rowid, rbu_control) ** VALUES(NULL, 'usa', 12, '.x'); ** ** causes a result similar to: ** ** UPDATE ft1 SET b = 'usa' WHERE rowid = 12; ** ** The data_xxx tables themselves should have no PRIMARY KEY declarations. ** However, RBU is more efficient if reading the rows in from each data_xxx ** table in "rowid" order is roughly the same as reading them sorted by ** the PRIMARY KEY of the corresponding target database table. In other ** words, rows should be sorted using the destination table PRIMARY KEY ** fields before they are inserted into the data_xxx tables. ** ** USAGE ** ** The API declared below allows an application to apply an RBU update ** stored on disk to an existing target database. Essentially, the ** application: ** ** 1) Opens an RBU handle using the sqlite3rbu_open() function. ** ** 2) Registers any required virtual table modules with the database ** handle returned by sqlite3rbu_db(). Also, if required, register ** the rbu_delta() implementation. ** ** 3) Calls the sqlite3rbu_step() function one or more times on ** the new handle. Each call to sqlite3rbu_step() performs a single ** b-tree operation, so thousands of calls may be required to apply ** a complete update. ** ** 4) Calls sqlite3rbu_close() to close the RBU update handle. If ** sqlite3rbu_step() has been called enough times to completely ** apply the update to the target database, then the RBU database ** is marked as fully applied. Otherwise, the state of the RBU ** update application is saved in the RBU database for later ** resumption. ** ** See comments below for more detail on APIs. ** ** If an update is only partially applied to the target database by the ** time sqlite3rbu_close() is called, various state information is saved ** within the RBU database. This allows subsequent processes to automatically ** resume the RBU update from where it left off. ** ** To remove all RBU extension state information, returning an RBU database ** to its original contents, it is sufficient to drop all tables that begin ** with the prefix "rbu_" ** ** DATABASE LOCKING ** ** An RBU update may not be applied to a database in WAL mode. Attempting ** to do so is an error (SQLITE_ERROR). ** ** While an RBU handle is open, a SHARED lock may be held on the target ** database file. This means it is possible for other clients to read the ** database, but not to write it. ** ** If an RBU update is started and then suspended before it is completed, ** then an external client writes to the database, then attempting to resume ** the suspended RBU update is also an error (SQLITE_BUSY). */ #ifndef _SQLITE3RBU_H #define _SQLITE3RBU_H /* #include "sqlite3.h" ** Required for error code definitions ** */ #if 0 extern "C" { #endif typedef struct sqlite3rbu sqlite3rbu; /* ** Open an RBU handle. ** ** Argument zTarget is the path to the target database. Argument zRbu is ** the path to the RBU database. Each call to this function must be matched ** by a call to sqlite3rbu_close(). When opening the databases, RBU passes ** the SQLITE_CONFIG_URI flag to sqlite3_open_v2(). So if either zTarget ** or zRbu begin with "file:", it will be interpreted as an SQLite ** database URI, not a regular file name. ** ** If the zState argument is passed a NULL value, the RBU extension stores ** the current state of the update (how many rows have been updated, which ** indexes are yet to be updated etc.) within the RBU database itself. This ** can be convenient, as it means that the RBU application does not need to ** organize removing a separate state file after the update is concluded. ** Or, if zState is non-NULL, it must be a path to a database file in which ** the RBU extension can store the state of the update. ** ** When resuming an RBU update, the zState argument must be passed the same ** value as when the RBU update was started. ** ** Once the RBU update is finished, the RBU extension does not ** automatically remove any zState database file, even if it created it. ** ** By default, RBU uses the default VFS to access the files on disk. To ** use a VFS other than the default, an SQLite "file:" URI containing a ** "vfs=..." option may be passed as the zTarget option. ** ** IMPORTANT NOTE FOR ZIPVFS USERS: The RBU extension works with all of ** SQLite's built-in VFSs, including the multiplexor VFS. However it does ** not work out of the box with zipvfs. Refer to the comment describing ** the zipvfs_create_vfs() API below for details on using RBU with zipvfs. */ SQLITE_API sqlite3rbu *sqlite3rbu_open( const char *zTarget, const char *zRbu, const char *zState ); /* ** Open an RBU handle to perform an RBU vacuum on database file zTarget. ** An RBU vacuum is similar to SQLite's built-in VACUUM command, except ** that it can be suspended and resumed like an RBU update. ** ** The second argument to this function identifies a database in which ** to store the state of the RBU vacuum operation if it is suspended. The ** first time sqlite3rbu_vacuum() is called, to start an RBU vacuum ** operation, the state database should either not exist or be empty ** (contain no tables). If an RBU vacuum is suspended by calling ** sqlite3rbu_close() on the RBU handle before sqlite3rbu_step() has ** returned SQLITE_DONE, the vacuum state is stored in the state database. ** The vacuum can be resumed by calling this function to open a new RBU ** handle specifying the same target and state databases. ** ** If the second argument passed to this function is NULL, then the ** name of the state database is "-vacuum", where ** is the name of the target database file. In this case, on UNIX, if the ** state database is not already present in the file-system, it is created ** with the same permissions as the target db is made. ** ** With an RBU vacuum, it is an SQLITE_MISUSE error if the name of the ** state database ends with "-vactmp". This name is reserved for internal ** use. ** ** This function does not delete the state database after an RBU vacuum ** is completed, even if it created it. However, if the call to ** sqlite3rbu_close() returns any value other than SQLITE_OK, the contents ** of the state tables within the state database are zeroed. This way, ** the next call to sqlite3rbu_vacuum() opens a handle that starts a ** new RBU vacuum operation. ** ** As with sqlite3rbu_open(), Zipvfs users should rever to the comment ** describing the sqlite3rbu_create_vfs() API function below for ** a description of the complications associated with using RBU with ** zipvfs databases. */ SQLITE_API sqlite3rbu *sqlite3rbu_vacuum( const char *zTarget, const char *zState ); /* ** Configure a limit for the amount of temp space that may be used by ** the RBU handle passed as the first argument. The new limit is specified ** in bytes by the second parameter. If it is positive, the limit is updated. ** If the second parameter to this function is passed zero, then the limit ** is removed entirely. If the second parameter is negative, the limit is ** not modified (this is useful for querying the current limit). ** ** In all cases the returned value is the current limit in bytes (zero ** indicates unlimited). ** ** If the temp space limit is exceeded during operation, an SQLITE_FULL ** error is returned. */ SQLITE_API sqlite3_int64 sqlite3rbu_temp_size_limit(sqlite3rbu*, sqlite3_int64); /* ** Return the current amount of temp file space, in bytes, currently used by ** the RBU handle passed as the only argument. */ SQLITE_API sqlite3_int64 sqlite3rbu_temp_size(sqlite3rbu*); /* ** Internally, each RBU connection uses a separate SQLite database ** connection to access the target and rbu update databases. This ** API allows the application direct access to these database handles. ** ** The first argument passed to this function must be a valid, open, RBU ** handle. The second argument should be passed zero to access the target ** database handle, or non-zero to access the rbu update database handle. ** Accessing the underlying database handles may be useful in the ** following scenarios: ** ** * If any target tables are virtual tables, it may be necessary to ** call sqlite3_create_module() on the target database handle to ** register the required virtual table implementations. ** ** * If the data_xxx tables in the RBU source database are virtual ** tables, the application may need to call sqlite3_create_module() on ** the rbu update db handle to any required virtual table ** implementations. ** ** * If the application uses the "rbu_delta()" feature described above, ** it must use sqlite3_create_function() or similar to register the ** rbu_delta() implementation with the target database handle. ** ** If an error has occurred, either while opening or stepping the RBU object, ** this function may return NULL. The error code and message may be collected ** when sqlite3rbu_close() is called. ** ** Database handles returned by this function remain valid until the next ** call to any sqlite3rbu_xxx() function other than sqlite3rbu_db(). */ SQLITE_API sqlite3 *sqlite3rbu_db(sqlite3rbu*, int bRbu); /* ** Do some work towards applying the RBU update to the target db. ** ** Return SQLITE_DONE if the update has been completely applied, or ** SQLITE_OK if no error occurs but there remains work to do to apply ** the RBU update. If an error does occur, some other error code is ** returned. ** ** Once a call to sqlite3rbu_step() has returned a value other than ** SQLITE_OK, all subsequent calls on the same RBU handle are no-ops ** that immediately return the same value. */ SQLITE_API int sqlite3rbu_step(sqlite3rbu *pRbu); /* ** Force RBU to save its state to disk. ** ** If a power failure or application crash occurs during an update, following ** system recovery RBU may resume the update from the point at which the state ** was last saved. In other words, from the most recent successful call to ** sqlite3rbu_close() or this function. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ SQLITE_API int sqlite3rbu_savestate(sqlite3rbu *pRbu); /* ** Close an RBU handle. ** ** If the RBU update has been completely applied, mark the RBU database ** as fully applied. Otherwise, assuming no error has occurred, save the ** current state of the RBU update appliation to the RBU database. ** ** If an error has already occurred as part of an sqlite3rbu_step() ** or sqlite3rbu_open() call, or if one occurs within this function, an ** SQLite error code is returned. Additionally, if pzErrmsg is not NULL, ** *pzErrmsg may be set to point to a buffer containing a utf-8 formatted ** English language error message. It is the responsibility of the caller to ** eventually free any such buffer using sqlite3_free(). ** ** Otherwise, if no error occurs, this function returns SQLITE_OK if the ** update has been partially applied, or SQLITE_DONE if it has been ** completely applied. */ SQLITE_API int sqlite3rbu_close(sqlite3rbu *pRbu, char **pzErrmsg); /* ** Return the total number of key-value operations (inserts, deletes or ** updates) that have been performed on the target database since the ** current RBU update was started. */ SQLITE_API sqlite3_int64 sqlite3rbu_progress(sqlite3rbu *pRbu); /* ** Obtain permyriadage (permyriadage is to 10000 as percentage is to 100) ** progress indications for the two stages of an RBU update. This API may ** be useful for driving GUI progress indicators and similar. ** ** An RBU update is divided into two stages: ** ** * Stage 1, in which changes are accumulated in an oal/wal file, and ** * Stage 2, in which the contents of the wal file are copied into the ** main database. ** ** The update is visible to non-RBU clients during stage 2. During stage 1 ** non-RBU reader clients may see the original database. ** ** If this API is called during stage 2 of the update, output variable ** (*pnOne) is set to 10000 to indicate that stage 1 has finished and (*pnTwo) ** to a value between 0 and 10000 to indicate the permyriadage progress of ** stage 2. A value of 5000 indicates that stage 2 is half finished, ** 9000 indicates that it is 90% finished, and so on. ** ** If this API is called during stage 1 of the update, output variable ** (*pnTwo) is set to 0 to indicate that stage 2 has not yet started. The ** value to which (*pnOne) is set depends on whether or not the RBU ** database contains an "rbu_count" table. The rbu_count table, if it ** exists, must contain the same columns as the following: ** ** CREATE TABLE rbu_count(tbl TEXT PRIMARY KEY, cnt INTEGER) WITHOUT ROWID; ** ** There must be one row in the table for each source (data_xxx) table within ** the RBU database. The 'tbl' column should contain the name of the source ** table. The 'cnt' column should contain the number of rows within the ** source table. ** ** If the rbu_count table is present and populated correctly and this ** API is called during stage 1, the *pnOne output variable is set to the ** permyriadage progress of the same stage. If the rbu_count table does ** not exist, then (*pnOne) is set to -1 during stage 1. If the rbu_count ** table exists but is not correctly populated, the value of the *pnOne ** output variable during stage 1 is undefined. */ SQLITE_API void sqlite3rbu_bp_progress(sqlite3rbu *pRbu, int *pnOne, int*pnTwo); /* ** Obtain an indication as to the current stage of an RBU update or vacuum. ** This function always returns one of the SQLITE_RBU_STATE_XXX constants ** defined in this file. Return values should be interpreted as follows: ** ** SQLITE_RBU_STATE_OAL: ** RBU is currently building a *-oal file. The next call to sqlite3rbu_step() ** may either add further data to the *-oal file, or compute data that will ** be added by a subsequent call. ** ** SQLITE_RBU_STATE_MOVE: ** RBU has finished building the *-oal file. The next call to sqlite3rbu_step() ** will move the *-oal file to the equivalent *-wal path. If the current ** operation is an RBU update, then the updated version of the database ** file will become visible to ordinary SQLite clients following the next ** call to sqlite3rbu_step(). ** ** SQLITE_RBU_STATE_CHECKPOINT: ** RBU is currently performing an incremental checkpoint. The next call to ** sqlite3rbu_step() will copy a page of data from the *-wal file into ** the target database file. ** ** SQLITE_RBU_STATE_DONE: ** The RBU operation has finished. Any subsequent calls to sqlite3rbu_step() ** will immediately return SQLITE_DONE. ** ** SQLITE_RBU_STATE_ERROR: ** An error has occurred. Any subsequent calls to sqlite3rbu_step() will ** immediately return the SQLite error code associated with the error. */ #define SQLITE_RBU_STATE_OAL 1 #define SQLITE_RBU_STATE_MOVE 2 #define SQLITE_RBU_STATE_CHECKPOINT 3 #define SQLITE_RBU_STATE_DONE 4 #define SQLITE_RBU_STATE_ERROR 5 SQLITE_API int sqlite3rbu_state(sqlite3rbu *pRbu); /* ** Create an RBU VFS named zName that accesses the underlying file-system ** via existing VFS zParent. Or, if the zParent parameter is passed NULL, ** then the new RBU VFS uses the default system VFS to access the file-system. ** The new object is registered as a non-default VFS with SQLite before ** returning. ** ** Part of the RBU implementation uses a custom VFS object. Usually, this ** object is created and deleted automatically by RBU. ** ** The exception is for applications that also use zipvfs. In this case, ** the custom VFS must be explicitly created by the user before the RBU ** handle is opened. The RBU VFS should be installed so that the zipvfs ** VFS uses the RBU VFS, which in turn uses any other VFS layers in use ** (for example multiplexor) to access the file-system. For example, ** to assemble an RBU enabled VFS stack that uses both zipvfs and ** multiplexor (error checking omitted): ** ** // Create a VFS named "multiplex" (not the default). ** sqlite3_multiplex_initialize(0, 0); ** ** // Create an rbu VFS named "rbu" that uses multiplexor. If the ** // second argument were replaced with NULL, the "rbu" VFS would ** // access the file-system via the system default VFS, bypassing the ** // multiplexor. ** sqlite3rbu_create_vfs("rbu", "multiplex"); ** ** // Create a zipvfs VFS named "zipvfs" that uses rbu. ** zipvfs_create_vfs_v3("zipvfs", "rbu", 0, xCompressorAlgorithmDetector); ** ** // Make zipvfs the default VFS. ** sqlite3_vfs_register(sqlite3_vfs_find("zipvfs"), 1); ** ** Because the default VFS created above includes a RBU functionality, it ** may be used by RBU clients. Attempting to use RBU with a zipvfs VFS stack ** that does not include the RBU layer results in an error. ** ** The overhead of adding the "rbu" VFS to the system is negligible for ** non-RBU users. There is no harm in an application accessing the ** file-system via "rbu" all the time, even if it only uses RBU functionality ** occasionally. */ SQLITE_API int sqlite3rbu_create_vfs(const char *zName, const char *zParent); /* ** Deregister and destroy an RBU vfs created by an earlier call to ** sqlite3rbu_create_vfs(). ** ** VFS objects are not reference counted. If a VFS object is destroyed ** before all database handles that use it have been closed, the results ** are undefined. */ SQLITE_API void sqlite3rbu_destroy_vfs(const char *zName); #if 0 } /* end of the 'extern "C"' block */ #endif #endif /* _SQLITE3RBU_H */ /************** End of sqlite3rbu.h ******************************************/ /************** Continuing where we left off in sqlite3rbu.c *****************/ #if defined(_WIN32_WCE) /* #include "windows.h" */ #endif /* Maximum number of prepared UPDATE statements held by this module */ #define SQLITE_RBU_UPDATE_CACHESIZE 16 /* Delta checksums disabled by default. Compile with -DRBU_ENABLE_DELTA_CKSUM ** to enable checksum verification. */ #ifndef RBU_ENABLE_DELTA_CKSUM # define RBU_ENABLE_DELTA_CKSUM 0 #endif /* ** Swap two objects of type TYPE. */ #if !defined(SQLITE_AMALGAMATION) # define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;} #endif /* ** Name of the URI option that causes RBU to take an exclusive lock as ** part of the incremental checkpoint operation. */ #define RBU_EXCLUSIVE_CHECKPOINT "rbu_exclusive_checkpoint" /* ** The rbu_state table is used to save the state of a partially applied ** update so that it can be resumed later. The table consists of integer ** keys mapped to values as follows: ** ** RBU_STATE_STAGE: ** May be set to integer values 1, 2, 4 or 5. As follows: ** 1: the *-rbu file is currently under construction. ** 2: the *-rbu file has been constructed, but not yet moved ** to the *-wal path. ** 4: the checkpoint is underway. ** 5: the rbu update has been checkpointed. ** ** RBU_STATE_TBL: ** Only valid if STAGE==1. The target database name of the table ** currently being written. ** ** RBU_STATE_IDX: ** Only valid if STAGE==1. The target database name of the index ** currently being written, or NULL if the main table is currently being ** updated. ** ** RBU_STATE_ROW: ** Only valid if STAGE==1. Number of rows already processed for the current ** table/index. ** ** RBU_STATE_PROGRESS: ** Trbul number of sqlite3rbu_step() calls made so far as part of this ** rbu update. ** ** RBU_STATE_CKPT: ** Valid if STAGE==4. The 64-bit checksum associated with the wal-index ** header created by recovering the *-wal file. This is used to detect ** cases when another client appends frames to the *-wal file in the ** middle of an incremental checkpoint (an incremental checkpoint cannot ** be continued if this happens). ** ** RBU_STATE_COOKIE: ** Valid if STAGE==1. The current change-counter cookie value in the ** target db file. ** ** RBU_STATE_OALSZ: ** Valid if STAGE==1. The size in bytes of the *-oal file. ** ** RBU_STATE_DATATBL: ** Only valid if STAGE==1. The RBU database name of the table ** currently being read. */ #define RBU_STATE_STAGE 1 #define RBU_STATE_TBL 2 #define RBU_STATE_IDX 3 #define RBU_STATE_ROW 4 #define RBU_STATE_PROGRESS 5 #define RBU_STATE_CKPT 6 #define RBU_STATE_COOKIE 7 #define RBU_STATE_OALSZ 8 #define RBU_STATE_PHASEONESTEP 9 #define RBU_STATE_DATATBL 10 #define RBU_STAGE_OAL 1 #define RBU_STAGE_MOVE 2 #define RBU_STAGE_CAPTURE 3 #define RBU_STAGE_CKPT 4 #define RBU_STAGE_DONE 5 #define RBU_CREATE_STATE \ "CREATE TABLE IF NOT EXISTS %s.rbu_state(k INTEGER PRIMARY KEY, v)" typedef struct RbuFrame RbuFrame; typedef struct RbuObjIter RbuObjIter; typedef struct RbuState RbuState; typedef struct RbuSpan RbuSpan; typedef struct rbu_vfs rbu_vfs; typedef struct rbu_file rbu_file; typedef struct RbuUpdateStmt RbuUpdateStmt; #if !defined(SQLITE_AMALGAMATION) typedef unsigned int u32; typedef unsigned short u16; typedef unsigned char u8; typedef sqlite3_int64 i64; #endif /* ** These values must match the values defined in wal.c for the equivalent ** locks. These are not magic numbers as they are part of the SQLite file ** format. */ #define WAL_LOCK_WRITE 0 #define WAL_LOCK_CKPT 1 #define WAL_LOCK_READ0 3 #define SQLITE_FCNTL_RBUCNT 5149216 /* ** A structure to store values read from the rbu_state table in memory. */ struct RbuState { int eStage; char *zTbl; char *zDataTbl; char *zIdx; i64 iWalCksum; int nRow; i64 nProgress; u32 iCookie; i64 iOalSz; i64 nPhaseOneStep; }; struct RbuUpdateStmt { char *zMask; /* Copy of update mask used with pUpdate */ sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */ RbuUpdateStmt *pNext; }; struct RbuSpan { const char *zSpan; int nSpan; }; /* ** An iterator of this type is used to iterate through all objects in ** the target database that require updating. For each such table, the ** iterator visits, in order: ** ** * the table itself, ** * each index of the table (zero or more points to visit), and ** * a special "cleanup table" state. ** ** abIndexed: ** If the table has no indexes on it, abIndexed is set to NULL. Otherwise, ** it points to an array of flags nTblCol elements in size. The flag is ** set for each column that is either a part of the PK or a part of an ** index. Or clear otherwise. ** ** If there are one or more partial indexes on the table, all fields of ** this array set set to 1. This is because in that case, the module has ** no way to tell which fields will be required to add and remove entries ** from the partial indexes. ** */ struct RbuObjIter { sqlite3_stmt *pTblIter; /* Iterate through tables */ sqlite3_stmt *pIdxIter; /* Index iterator */ int nTblCol; /* Size of azTblCol[] array */ char **azTblCol; /* Array of unquoted target column names */ char **azTblType; /* Array of target column types */ int *aiSrcOrder; /* src table col -> target table col */ u8 *abTblPk; /* Array of flags, set on target PK columns */ u8 *abNotNull; /* Array of flags, set on NOT NULL columns */ u8 *abIndexed; /* Array of flags, set on indexed & PK cols */ int eType; /* Table type - an RBU_PK_XXX value */ /* Output variables. zTbl==0 implies EOF. */ int bCleanup; /* True in "cleanup" state */ const char *zTbl; /* Name of target db table */ const char *zDataTbl; /* Name of rbu db table (or null) */ const char *zIdx; /* Name of target db index (or null) */ int iTnum; /* Root page of current object */ int iPkTnum; /* If eType==EXTERNAL, root of PK index */ int bUnique; /* Current index is unique */ int nIndex; /* Number of aux. indexes on table zTbl */ /* Statements created by rbuObjIterPrepareAll() */ int nCol; /* Number of columns in current object */ sqlite3_stmt *pSelect; /* Source data */ sqlite3_stmt *pInsert; /* Statement for INSERT operations */ sqlite3_stmt *pDelete; /* Statement for DELETE ops */ sqlite3_stmt *pTmpInsert; /* Insert into rbu_tmp_$zDataTbl */ int nIdxCol; RbuSpan *aIdxCol; char *zIdxSql; /* Last UPDATE used (for PK b-tree updates only), or NULL. */ RbuUpdateStmt *pRbuUpdate; }; /* ** Values for RbuObjIter.eType ** ** 0: Table does not exist (error) ** 1: Table has an implicit rowid. ** 2: Table has an explicit IPK column. ** 3: Table has an external PK index. ** 4: Table is WITHOUT ROWID. ** 5: Table is a virtual table. */ #define RBU_PK_NOTABLE 0 #define RBU_PK_NONE 1 #define RBU_PK_IPK 2 #define RBU_PK_EXTERNAL 3 #define RBU_PK_WITHOUT_ROWID 4 #define RBU_PK_VTAB 5 /* ** Within the RBU_STAGE_OAL stage, each call to sqlite3rbu_step() performs ** one of the following operations. */ #define RBU_INSERT 1 /* Insert on a main table b-tree */ #define RBU_DELETE 2 /* Delete a row from a main table b-tree */ #define RBU_REPLACE 3 /* Delete and then insert a row */ #define RBU_IDX_DELETE 4 /* Delete a row from an aux. index b-tree */ #define RBU_IDX_INSERT 5 /* Insert on an aux. index b-tree */ #define RBU_UPDATE 6 /* Update a row in a main table b-tree */ /* ** A single step of an incremental checkpoint - frame iWalFrame of the wal ** file should be copied to page iDbPage of the database file. */ struct RbuFrame { u32 iDbPage; u32 iWalFrame; }; /* ** RBU handle. ** ** nPhaseOneStep: ** If the RBU database contains an rbu_count table, this value is set to ** a running estimate of the number of b-tree operations required to ** finish populating the *-oal file. This allows the sqlite3_bp_progress() ** API to calculate the permyriadage progress of populating the *-oal file ** using the formula: ** ** permyriadage = (10000 * nProgress) / nPhaseOneStep ** ** nPhaseOneStep is initialized to the sum of: ** ** nRow * (nIndex + 1) ** ** for all source tables in the RBU database, where nRow is the number ** of rows in the source table and nIndex the number of indexes on the ** corresponding target database table. ** ** This estimate is accurate if the RBU update consists entirely of ** INSERT operations. However, it is inaccurate if: ** ** * the RBU update contains any UPDATE operations. If the PK specified ** for an UPDATE operation does not exist in the target table, then ** no b-tree operations are required on index b-trees. Or if the ** specified PK does exist, then (nIndex*2) such operations are ** required (one delete and one insert on each index b-tree). ** ** * the RBU update contains any DELETE operations for which the specified ** PK does not exist. In this case no operations are required on index ** b-trees. ** ** * the RBU update contains REPLACE operations. These are similar to ** UPDATE operations. ** ** nPhaseOneStep is updated to account for the conditions above during the ** first pass of each source table. The updated nPhaseOneStep value is ** stored in the rbu_state table if the RBU update is suspended. */ struct sqlite3rbu { int eStage; /* Value of RBU_STATE_STAGE field */ sqlite3 *dbMain; /* target database handle */ sqlite3 *dbRbu; /* rbu database handle */ char *zTarget; /* Path to target db */ char *zRbu; /* Path to rbu db */ char *zState; /* Path to state db (or NULL if zRbu) */ char zStateDb[5]; /* Db name for state ("stat" or "main") */ int rc; /* Value returned by last rbu_step() call */ char *zErrmsg; /* Error message if rc!=SQLITE_OK */ int nStep; /* Rows processed for current object */ int nProgress; /* Rows processed for all objects */ RbuObjIter objiter; /* Iterator for skipping through tbl/idx */ const char *zVfsName; /* Name of automatically created rbu vfs */ rbu_file *pTargetFd; /* File handle open on target db */ int nPagePerSector; /* Pages per sector for pTargetFd */ i64 iOalSz; i64 nPhaseOneStep; /* The following state variables are used as part of the incremental ** checkpoint stage (eStage==RBU_STAGE_CKPT). See comments surrounding ** function rbuSetupCheckpoint() for details. */ u32 iMaxFrame; /* Largest iWalFrame value in aFrame[] */ u32 mLock; int nFrame; /* Entries in aFrame[] array */ int nFrameAlloc; /* Allocated size of aFrame[] array */ RbuFrame *aFrame; int pgsz; u8 *aBuf; i64 iWalCksum; i64 szTemp; /* Current size of all temp files in use */ i64 szTempLimit; /* Total size limit for temp files */ /* Used in RBU vacuum mode only */ int nRbu; /* Number of RBU VFS in the stack */ rbu_file *pRbuFd; /* Fd for main db of dbRbu */ }; /* ** An rbu VFS is implemented using an instance of this structure. ** ** Variable pRbu is only non-NULL for automatically created RBU VFS objects. ** It is NULL for RBU VFS objects created explicitly using ** sqlite3rbu_create_vfs(). It is used to track the total amount of temp ** space used by the RBU handle. */ struct rbu_vfs { sqlite3_vfs base; /* rbu VFS shim methods */ sqlite3_vfs *pRealVfs; /* Underlying VFS */ sqlite3_mutex *mutex; /* Mutex to protect pMain */ sqlite3rbu *pRbu; /* Owner RBU object */ rbu_file *pMain; /* List of main db files */ rbu_file *pMainRbu; /* List of main db files with pRbu!=0 */ }; /* ** Each file opened by an rbu VFS is represented by an instance of ** the following structure. ** ** If this is a temporary file (pRbu!=0 && flags&DELETE_ON_CLOSE), variable ** "sz" is set to the current size of the database file. */ struct rbu_file { sqlite3_file base; /* sqlite3_file methods */ sqlite3_file *pReal; /* Underlying file handle */ rbu_vfs *pRbuVfs; /* Pointer to the rbu_vfs object */ sqlite3rbu *pRbu; /* Pointer to rbu object (rbu target only) */ i64 sz; /* Size of file in bytes (temp only) */ int openFlags; /* Flags this file was opened with */ u32 iCookie; /* Cookie value for main db files */ u8 iWriteVer; /* "write-version" value for main db files */ u8 bNolock; /* True to fail EXCLUSIVE locks */ int nShm; /* Number of entries in apShm[] array */ char **apShm; /* Array of mmap'd *-shm regions */ char *zDel; /* Delete this when closing file */ const char *zWal; /* Wal filename for this main db file */ rbu_file *pWalFd; /* Wal file descriptor for this main db */ rbu_file *pMainNext; /* Next MAIN_DB file */ rbu_file *pMainRbuNext; /* Next MAIN_DB file with pRbu!=0 */ }; /* ** True for an RBU vacuum handle, or false otherwise. */ #define rbuIsVacuum(p) ((p)->zTarget==0) /************************************************************************* ** The following three functions, found below: ** ** rbuDeltaGetInt() ** rbuDeltaChecksum() ** rbuDeltaApply() ** ** are lifted from the fossil source code (http://fossil-scm.org). They ** are used to implement the scalar SQL function rbu_fossil_delta(). */ /* ** Read bytes from *pz and convert them into a positive integer. When ** finished, leave *pz pointing to the first character past the end of ** the integer. The *pLen parameter holds the length of the string ** in *pz and is decremented once for each character in the integer. */ static unsigned int rbuDeltaGetInt(const char **pz, int *pLen){ static const signed char zValue[] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, 36, -1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, -1, -1, -1, 63, -1, }; unsigned int v = 0; int c; unsigned char *z = (unsigned char*)*pz; unsigned char *zStart = z; while( (c = zValue[0x7f&*(z++)])>=0 ){ v = (v<<6) + c; } z--; *pLen -= z - zStart; *pz = (char*)z; return v; } #if RBU_ENABLE_DELTA_CKSUM /* ** Compute a 32-bit checksum on the N-byte buffer. Return the result. */ static unsigned int rbuDeltaChecksum(const char *zIn, size_t N){ const unsigned char *z = (const unsigned char *)zIn; unsigned sum0 = 0; unsigned sum1 = 0; unsigned sum2 = 0; unsigned sum3 = 0; while(N >= 16){ sum0 += ((unsigned)z[0] + z[4] + z[8] + z[12]); sum1 += ((unsigned)z[1] + z[5] + z[9] + z[13]); sum2 += ((unsigned)z[2] + z[6] + z[10]+ z[14]); sum3 += ((unsigned)z[3] + z[7] + z[11]+ z[15]); z += 16; N -= 16; } while(N >= 4){ sum0 += z[0]; sum1 += z[1]; sum2 += z[2]; sum3 += z[3]; z += 4; N -= 4; } sum3 += (sum2 << 8) + (sum1 << 16) + (sum0 << 24); switch(N){ case 3: sum3 += (z[2] << 8); case 2: sum3 += (z[1] << 16); case 1: sum3 += (z[0] << 24); default: ; } return sum3; } #endif /* ** Apply a delta. ** ** The output buffer should be big enough to hold the whole output ** file and a NUL terminator at the end. The delta_output_size() ** routine will determine this size for you. ** ** The delta string should be null-terminated. But the delta string ** may contain embedded NUL characters (if the input and output are ** binary files) so we also have to pass in the length of the delta in ** the lenDelta parameter. ** ** This function returns the size of the output file in bytes (excluding ** the final NUL terminator character). Except, if the delta string is ** malformed or intended for use with a source file other than zSrc, ** then this routine returns -1. ** ** Refer to the delta_create() documentation above for a description ** of the delta file format. */ static int rbuDeltaApply( const char *zSrc, /* The source or pattern file */ int lenSrc, /* Length of the source file */ const char *zDelta, /* Delta to apply to the pattern */ int lenDelta, /* Length of the delta */ char *zOut /* Write the output into this preallocated buffer */ ){ unsigned int limit; unsigned int total = 0; #if RBU_ENABLE_DELTA_CKSUM char *zOrigOut = zOut; #endif limit = rbuDeltaGetInt(&zDelta, &lenDelta); if( *zDelta!='\n' ){ /* ERROR: size integer not terminated by "\n" */ return -1; } zDelta++; lenDelta--; while( *zDelta && lenDelta>0 ){ unsigned int cnt, ofst; cnt = rbuDeltaGetInt(&zDelta, &lenDelta); switch( zDelta[0] ){ case '@': { zDelta++; lenDelta--; ofst = rbuDeltaGetInt(&zDelta, &lenDelta); if( lenDelta>0 && zDelta[0]!=',' ){ /* ERROR: copy command not terminated by ',' */ return -1; } zDelta++; lenDelta--; total += cnt; if( total>limit ){ /* ERROR: copy exceeds output file size */ return -1; } if( (int)(ofst+cnt) > lenSrc ){ /* ERROR: copy extends past end of input */ return -1; } memcpy(zOut, &zSrc[ofst], cnt); zOut += cnt; break; } case ':': { zDelta++; lenDelta--; total += cnt; if( total>limit ){ /* ERROR: insert command gives an output larger than predicted */ return -1; } if( (int)cnt>lenDelta ){ /* ERROR: insert count exceeds size of delta */ return -1; } memcpy(zOut, zDelta, cnt); zOut += cnt; zDelta += cnt; lenDelta -= cnt; break; } case ';': { zDelta++; lenDelta--; zOut[0] = 0; #if RBU_ENABLE_DELTA_CKSUM if( cnt!=rbuDeltaChecksum(zOrigOut, total) ){ /* ERROR: bad checksum */ return -1; } #endif if( total!=limit ){ /* ERROR: generated size does not match predicted size */ return -1; } return total; } default: { /* ERROR: unknown delta operator */ return -1; } } } /* ERROR: unterminated delta */ return -1; } static int rbuDeltaOutputSize(const char *zDelta, int lenDelta){ int size; size = rbuDeltaGetInt(&zDelta, &lenDelta); if( *zDelta!='\n' ){ /* ERROR: size integer not terminated by "\n" */ return -1; } return size; } /* ** End of code taken from fossil. *************************************************************************/ /* ** Implementation of SQL scalar function rbu_fossil_delta(). ** ** This function applies a fossil delta patch to a blob. Exactly two ** arguments must be passed to this function. The first is the blob to ** patch and the second the patch to apply. If no error occurs, this ** function returns the patched blob. */ static void rbuFossilDeltaFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *aDelta; int nDelta; const char *aOrig; int nOrig; int nOut; int nOut2; char *aOut; assert( argc==2 ); nOrig = sqlite3_value_bytes(argv[0]); aOrig = (const char*)sqlite3_value_blob(argv[0]); nDelta = sqlite3_value_bytes(argv[1]); aDelta = (const char*)sqlite3_value_blob(argv[1]); /* Figure out the size of the output */ nOut = rbuDeltaOutputSize(aDelta, nDelta); if( nOut<0 ){ sqlite3_result_error(context, "corrupt fossil delta", -1); return; } aOut = sqlite3_malloc(nOut+1); if( aOut==0 ){ sqlite3_result_error_nomem(context); }else{ nOut2 = rbuDeltaApply(aOrig, nOrig, aDelta, nDelta, aOut); if( nOut2!=nOut ){ sqlite3_free(aOut); sqlite3_result_error(context, "corrupt fossil delta", -1); }else{ sqlite3_result_blob(context, aOut, nOut, sqlite3_free); } } } /* ** Prepare the SQL statement in buffer zSql against database handle db. ** If successful, set *ppStmt to point to the new statement and return ** SQLITE_OK. ** ** Otherwise, if an error does occur, set *ppStmt to NULL and return ** an SQLite error code. Additionally, set output variable *pzErrmsg to ** point to a buffer containing an error message. It is the responsibility ** of the caller to (eventually) free this buffer using sqlite3_free(). */ static int prepareAndCollectError( sqlite3 *db, sqlite3_stmt **ppStmt, char **pzErrmsg, const char *zSql ){ int rc = sqlite3_prepare_v2(db, zSql, -1, ppStmt, 0); if( rc!=SQLITE_OK ){ *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); *ppStmt = 0; } return rc; } /* ** Reset the SQL statement passed as the first argument. Return a copy ** of the value returned by sqlite3_reset(). ** ** If an error has occurred, then set *pzErrmsg to point to a buffer ** containing an error message. It is the responsibility of the caller ** to eventually free this buffer using sqlite3_free(). */ static int resetAndCollectError(sqlite3_stmt *pStmt, char **pzErrmsg){ int rc = sqlite3_reset(pStmt); if( rc!=SQLITE_OK ){ *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(sqlite3_db_handle(pStmt))); } return rc; } /* ** Unless it is NULL, argument zSql points to a buffer allocated using ** sqlite3_malloc containing an SQL statement. This function prepares the SQL ** statement against database db and frees the buffer. If statement ** compilation is successful, *ppStmt is set to point to the new statement ** handle and SQLITE_OK is returned. ** ** Otherwise, if an error occurs, *ppStmt is set to NULL and an error code ** returned. In this case, *pzErrmsg may also be set to point to an error ** message. It is the responsibility of the caller to free this error message ** buffer using sqlite3_free(). ** ** If argument zSql is NULL, this function assumes that an OOM has occurred. ** In this case SQLITE_NOMEM is returned and *ppStmt set to NULL. */ static int prepareFreeAndCollectError( sqlite3 *db, sqlite3_stmt **ppStmt, char **pzErrmsg, char *zSql ){ int rc; assert( *pzErrmsg==0 ); if( zSql==0 ){ rc = SQLITE_NOMEM; *ppStmt = 0; }else{ rc = prepareAndCollectError(db, ppStmt, pzErrmsg, zSql); sqlite3_free(zSql); } return rc; } /* ** Free the RbuObjIter.azTblCol[] and RbuObjIter.abTblPk[] arrays allocated ** by an earlier call to rbuObjIterCacheTableInfo(). */ static void rbuObjIterFreeCols(RbuObjIter *pIter){ int i; for(i=0; inTblCol; i++){ sqlite3_free(pIter->azTblCol[i]); sqlite3_free(pIter->azTblType[i]); } sqlite3_free(pIter->azTblCol); pIter->azTblCol = 0; pIter->azTblType = 0; pIter->aiSrcOrder = 0; pIter->abTblPk = 0; pIter->abNotNull = 0; pIter->nTblCol = 0; pIter->eType = 0; /* Invalid value */ } /* ** Finalize all statements and free all allocations that are specific to ** the current object (table/index pair). */ static void rbuObjIterClearStatements(RbuObjIter *pIter){ RbuUpdateStmt *pUp; sqlite3_finalize(pIter->pSelect); sqlite3_finalize(pIter->pInsert); sqlite3_finalize(pIter->pDelete); sqlite3_finalize(pIter->pTmpInsert); pUp = pIter->pRbuUpdate; while( pUp ){ RbuUpdateStmt *pTmp = pUp->pNext; sqlite3_finalize(pUp->pUpdate); sqlite3_free(pUp); pUp = pTmp; } sqlite3_free(pIter->aIdxCol); sqlite3_free(pIter->zIdxSql); pIter->pSelect = 0; pIter->pInsert = 0; pIter->pDelete = 0; pIter->pRbuUpdate = 0; pIter->pTmpInsert = 0; pIter->nCol = 0; pIter->nIdxCol = 0; pIter->aIdxCol = 0; pIter->zIdxSql = 0; } /* ** Clean up any resources allocated as part of the iterator object passed ** as the only argument. */ static void rbuObjIterFinalize(RbuObjIter *pIter){ rbuObjIterClearStatements(pIter); sqlite3_finalize(pIter->pTblIter); sqlite3_finalize(pIter->pIdxIter); rbuObjIterFreeCols(pIter); memset(pIter, 0, sizeof(RbuObjIter)); } /* ** Advance the iterator to the next position. ** ** If no error occurs, SQLITE_OK is returned and the iterator is left ** pointing to the next entry. Otherwise, an error code and message is ** left in the RBU handle passed as the first argument. A copy of the ** error code is returned. */ static int rbuObjIterNext(sqlite3rbu *p, RbuObjIter *pIter){ int rc = p->rc; if( rc==SQLITE_OK ){ /* Free any SQLite statements used while processing the previous object */ rbuObjIterClearStatements(pIter); if( pIter->zIdx==0 ){ rc = sqlite3_exec(p->dbMain, "DROP TRIGGER IF EXISTS temp.rbu_insert_tr;" "DROP TRIGGER IF EXISTS temp.rbu_update1_tr;" "DROP TRIGGER IF EXISTS temp.rbu_update2_tr;" "DROP TRIGGER IF EXISTS temp.rbu_delete_tr;" , 0, 0, &p->zErrmsg ); } if( rc==SQLITE_OK ){ if( pIter->bCleanup ){ rbuObjIterFreeCols(pIter); pIter->bCleanup = 0; rc = sqlite3_step(pIter->pTblIter); if( rc!=SQLITE_ROW ){ rc = resetAndCollectError(pIter->pTblIter, &p->zErrmsg); pIter->zTbl = 0; }else{ pIter->zTbl = (const char*)sqlite3_column_text(pIter->pTblIter, 0); pIter->zDataTbl = (const char*)sqlite3_column_text(pIter->pTblIter,1); rc = (pIter->zDataTbl && pIter->zTbl) ? SQLITE_OK : SQLITE_NOMEM; } }else{ if( pIter->zIdx==0 ){ sqlite3_stmt *pIdx = pIter->pIdxIter; rc = sqlite3_bind_text(pIdx, 1, pIter->zTbl, -1, SQLITE_STATIC); } if( rc==SQLITE_OK ){ rc = sqlite3_step(pIter->pIdxIter); if( rc!=SQLITE_ROW ){ rc = resetAndCollectError(pIter->pIdxIter, &p->zErrmsg); pIter->bCleanup = 1; pIter->zIdx = 0; }else{ pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0); pIter->iTnum = sqlite3_column_int(pIter->pIdxIter, 1); pIter->bUnique = sqlite3_column_int(pIter->pIdxIter, 2); rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM; } } } } } if( rc!=SQLITE_OK ){ rbuObjIterFinalize(pIter); p->rc = rc; } return rc; } /* ** The implementation of the rbu_target_name() SQL function. This function ** accepts one or two arguments. The first argument is the name of a table - ** the name of a table in the RBU database. The second, if it is present, is 1 ** for a view or 0 for a table. ** ** For a non-vacuum RBU handle, if the table name matches the pattern: ** ** data[0-9]_ ** ** where is any sequence of 1 or more characters, is returned. ** Otherwise, if the only argument does not match the above pattern, an SQL ** NULL is returned. ** ** "data_t1" -> "t1" ** "data0123_t2" -> "t2" ** "dataAB_t3" -> NULL ** ** For an rbu vacuum handle, a copy of the first argument is returned if ** the second argument is either missing or 0 (not a view). */ static void rbuTargetNameFunc( sqlite3_context *pCtx, int argc, sqlite3_value **argv ){ sqlite3rbu *p = sqlite3_user_data(pCtx); const char *zIn; assert( argc==1 || argc==2 ); zIn = (const char*)sqlite3_value_text(argv[0]); if( zIn ){ if( rbuIsVacuum(p) ){ assert( argc==2 || argc==1 ); if( argc==1 || 0==sqlite3_value_int(argv[1]) ){ sqlite3_result_text(pCtx, zIn, -1, SQLITE_STATIC); } }else{ if( strlen(zIn)>4 && memcmp("data", zIn, 4)==0 ){ int i; for(i=4; zIn[i]>='0' && zIn[i]<='9'; i++); if( zIn[i]=='_' && zIn[i+1] ){ sqlite3_result_text(pCtx, &zIn[i+1], -1, SQLITE_STATIC); } } } } } /* ** Initialize the iterator structure passed as the second argument. ** ** If no error occurs, SQLITE_OK is returned and the iterator is left ** pointing to the first entry. Otherwise, an error code and message is ** left in the RBU handle passed as the first argument. A copy of the ** error code is returned. */ static int rbuObjIterFirst(sqlite3rbu *p, RbuObjIter *pIter){ int rc; memset(pIter, 0, sizeof(RbuObjIter)); rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pTblIter, &p->zErrmsg, sqlite3_mprintf( "SELECT rbu_target_name(name, type='view') AS target, name " "FROM sqlite_schema " "WHERE type IN ('table', 'view') AND target IS NOT NULL " " %s " "ORDER BY name" , rbuIsVacuum(p) ? "AND rootpage!=0 AND rootpage IS NOT NULL" : "")); if( rc==SQLITE_OK ){ rc = prepareAndCollectError(p->dbMain, &pIter->pIdxIter, &p->zErrmsg, "SELECT name, rootpage, sql IS NULL OR substr(8, 6)=='UNIQUE' " " FROM main.sqlite_schema " " WHERE type='index' AND tbl_name = ?" ); } pIter->bCleanup = 1; p->rc = rc; return rbuObjIterNext(p, pIter); } /* ** This is a wrapper around "sqlite3_mprintf(zFmt, ...)". If an OOM occurs, ** an error code is stored in the RBU handle passed as the first argument. ** ** If an error has already occurred (p->rc is already set to something other ** than SQLITE_OK), then this function returns NULL without modifying the ** stored error code. In this case it still calls sqlite3_free() on any ** printf() parameters associated with %z conversions. */ static char *rbuMPrintf(sqlite3rbu *p, const char *zFmt, ...){ char *zSql = 0; va_list ap; va_start(ap, zFmt); zSql = sqlite3_vmprintf(zFmt, ap); if( p->rc==SQLITE_OK ){ if( zSql==0 ) p->rc = SQLITE_NOMEM; }else{ sqlite3_free(zSql); zSql = 0; } va_end(ap); return zSql; } /* ** Argument zFmt is a sqlite3_mprintf() style format string. The trailing ** arguments are the usual subsitution values. This function performs ** the printf() style substitutions and executes the result as an SQL ** statement on the RBU handles database. ** ** If an error occurs, an error code and error message is stored in the ** RBU handle. If an error has already occurred when this function is ** called, it is a no-op. */ static int rbuMPrintfExec(sqlite3rbu *p, sqlite3 *db, const char *zFmt, ...){ va_list ap; char *zSql; va_start(ap, zFmt); zSql = sqlite3_vmprintf(zFmt, ap); if( p->rc==SQLITE_OK ){ if( zSql==0 ){ p->rc = SQLITE_NOMEM; }else{ p->rc = sqlite3_exec(db, zSql, 0, 0, &p->zErrmsg); } } sqlite3_free(zSql); va_end(ap); return p->rc; } /* ** Attempt to allocate and return a pointer to a zeroed block of nByte ** bytes. ** ** If an error (i.e. an OOM condition) occurs, return NULL and leave an ** error code in the rbu handle passed as the first argument. Or, if an ** error has already occurred when this function is called, return NULL ** immediately without attempting the allocation or modifying the stored ** error code. */ static void *rbuMalloc(sqlite3rbu *p, sqlite3_int64 nByte){ void *pRet = 0; if( p->rc==SQLITE_OK ){ assert( nByte>0 ); pRet = sqlite3_malloc64(nByte); if( pRet==0 ){ p->rc = SQLITE_NOMEM; }else{ memset(pRet, 0, nByte); } } return pRet; } /* ** Allocate and zero the pIter->azTblCol[] and abTblPk[] arrays so that ** there is room for at least nCol elements. If an OOM occurs, store an ** error code in the RBU handle passed as the first argument. */ static void rbuAllocateIterArrays(sqlite3rbu *p, RbuObjIter *pIter, int nCol){ sqlite3_int64 nByte = (2*sizeof(char*) + sizeof(int) + 3*sizeof(u8)) * nCol; char **azNew; azNew = (char**)rbuMalloc(p, nByte); if( azNew ){ pIter->azTblCol = azNew; pIter->azTblType = &azNew[nCol]; pIter->aiSrcOrder = (int*)&pIter->azTblType[nCol]; pIter->abTblPk = (u8*)&pIter->aiSrcOrder[nCol]; pIter->abNotNull = (u8*)&pIter->abTblPk[nCol]; pIter->abIndexed = (u8*)&pIter->abNotNull[nCol]; } } /* ** The first argument must be a nul-terminated string. This function ** returns a copy of the string in memory obtained from sqlite3_malloc(). ** It is the responsibility of the caller to eventually free this memory ** using sqlite3_free(). ** ** If an OOM condition is encountered when attempting to allocate memory, ** output variable (*pRc) is set to SQLITE_NOMEM before returning. Otherwise, ** if the allocation succeeds, (*pRc) is left unchanged. */ static char *rbuStrndup(const char *zStr, int *pRc){ char *zRet = 0; if( *pRc==SQLITE_OK ){ if( zStr ){ size_t nCopy = strlen(zStr) + 1; zRet = (char*)sqlite3_malloc64(nCopy); if( zRet ){ memcpy(zRet, zStr, nCopy); }else{ *pRc = SQLITE_NOMEM; } } } return zRet; } /* ** Finalize the statement passed as the second argument. ** ** If the sqlite3_finalize() call indicates that an error occurs, and the ** rbu handle error code is not already set, set the error code and error ** message accordingly. */ static void rbuFinalize(sqlite3rbu *p, sqlite3_stmt *pStmt){ sqlite3 *db = sqlite3_db_handle(pStmt); int rc = sqlite3_finalize(pStmt); if( p->rc==SQLITE_OK && rc!=SQLITE_OK ){ p->rc = rc; p->zErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } } /* Determine the type of a table. ** ** peType is of type (int*), a pointer to an output parameter of type ** (int). This call sets the output parameter as follows, depending ** on the type of the table specified by parameters dbName and zTbl. ** ** RBU_PK_NOTABLE: No such table. ** RBU_PK_NONE: Table has an implicit rowid. ** RBU_PK_IPK: Table has an explicit IPK column. ** RBU_PK_EXTERNAL: Table has an external PK index. ** RBU_PK_WITHOUT_ROWID: Table is WITHOUT ROWID. ** RBU_PK_VTAB: Table is a virtual table. ** ** Argument *piPk is also of type (int*), and also points to an output ** parameter. Unless the table has an external primary key index ** (i.e. unless *peType is set to 3), then *piPk is set to zero. Or, ** if the table does have an external primary key index, then *piPk ** is set to the root page number of the primary key index before ** returning. ** ** ALGORITHM: ** ** if( no entry exists in sqlite_schema ){ ** return RBU_PK_NOTABLE ** }else if( sql for the entry starts with "CREATE VIRTUAL" ){ ** return RBU_PK_VTAB ** }else if( "PRAGMA index_list()" for the table contains a "pk" index ){ ** if( the index that is the pk exists in sqlite_schema ){ ** *piPK = rootpage of that index. ** return RBU_PK_EXTERNAL ** }else{ ** return RBU_PK_WITHOUT_ROWID ** } ** }else if( "PRAGMA table_info()" lists one or more "pk" columns ){ ** return RBU_PK_IPK ** }else{ ** return RBU_PK_NONE ** } */ static void rbuTableType( sqlite3rbu *p, const char *zTab, int *peType, int *piTnum, int *piPk ){ /* ** 0) SELECT count(*) FROM sqlite_schema where name=%Q AND IsVirtual(%Q) ** 1) PRAGMA index_list = ? ** 2) SELECT count(*) FROM sqlite_schema where name=%Q ** 3) PRAGMA table_info = ? */ sqlite3_stmt *aStmt[4] = {0, 0, 0, 0}; *peType = RBU_PK_NOTABLE; *piPk = 0; assert( p->rc==SQLITE_OK ); p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[0], &p->zErrmsg, sqlite3_mprintf( "SELECT " " (sql COLLATE nocase BETWEEN 'CREATE VIRTUAL' AND 'CREATE VIRTUAM')," " rootpage" " FROM sqlite_schema" " WHERE name=%Q", zTab )); if( p->rc!=SQLITE_OK || sqlite3_step(aStmt[0])!=SQLITE_ROW ){ /* Either an error, or no such table. */ goto rbuTableType_end; } if( sqlite3_column_int(aStmt[0], 0) ){ *peType = RBU_PK_VTAB; /* virtual table */ goto rbuTableType_end; } *piTnum = sqlite3_column_int(aStmt[0], 1); p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[1], &p->zErrmsg, sqlite3_mprintf("PRAGMA index_list=%Q",zTab) ); if( p->rc ) goto rbuTableType_end; while( sqlite3_step(aStmt[1])==SQLITE_ROW ){ const u8 *zOrig = sqlite3_column_text(aStmt[1], 3); const u8 *zIdx = sqlite3_column_text(aStmt[1], 1); if( zOrig && zIdx && zOrig[0]=='p' ){ p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[2], &p->zErrmsg, sqlite3_mprintf( "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx )); if( p->rc==SQLITE_OK ){ if( sqlite3_step(aStmt[2])==SQLITE_ROW ){ *piPk = sqlite3_column_int(aStmt[2], 0); *peType = RBU_PK_EXTERNAL; }else{ *peType = RBU_PK_WITHOUT_ROWID; } } goto rbuTableType_end; } } p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[3], &p->zErrmsg, sqlite3_mprintf("PRAGMA table_info=%Q",zTab) ); if( p->rc==SQLITE_OK ){ while( sqlite3_step(aStmt[3])==SQLITE_ROW ){ if( sqlite3_column_int(aStmt[3],5)>0 ){ *peType = RBU_PK_IPK; /* explicit IPK column */ goto rbuTableType_end; } } *peType = RBU_PK_NONE; } rbuTableType_end: { unsigned int i; for(i=0; iabIndexed[] array. */ static void rbuObjIterCacheIndexedCols(sqlite3rbu *p, RbuObjIter *pIter){ sqlite3_stmt *pList = 0; int bIndex = 0; if( p->rc==SQLITE_OK ){ memcpy(pIter->abIndexed, pIter->abTblPk, sizeof(u8)*pIter->nTblCol); p->rc = prepareFreeAndCollectError(p->dbMain, &pList, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_list = %Q", pIter->zTbl) ); } pIter->nIndex = 0; while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pList) ){ const char *zIdx = (const char*)sqlite3_column_text(pList, 1); int bPartial = sqlite3_column_int(pList, 4); sqlite3_stmt *pXInfo = 0; if( zIdx==0 ) break; if( bPartial ){ memset(pIter->abIndexed, 0x01, sizeof(u8)*pIter->nTblCol); } p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx) ); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int iCid = sqlite3_column_int(pXInfo, 1); if( iCid>=0 ) pIter->abIndexed[iCid] = 1; if( iCid==-2 ){ memset(pIter->abIndexed, 0x01, sizeof(u8)*pIter->nTblCol); } } rbuFinalize(p, pXInfo); bIndex = 1; pIter->nIndex++; } if( pIter->eType==RBU_PK_WITHOUT_ROWID ){ /* "PRAGMA index_list" includes the main PK b-tree */ pIter->nIndex--; } rbuFinalize(p, pList); if( bIndex==0 ) pIter->abIndexed = 0; } /* ** If they are not already populated, populate the pIter->azTblCol[], ** pIter->abTblPk[], pIter->nTblCol and pIter->bRowid variables according to ** the table (not index) that the iterator currently points to. ** ** Return SQLITE_OK if successful, or an SQLite error code otherwise. If ** an error does occur, an error code and error message are also left in ** the RBU handle. */ static int rbuObjIterCacheTableInfo(sqlite3rbu *p, RbuObjIter *pIter){ if( pIter->azTblCol==0 ){ sqlite3_stmt *pStmt = 0; int nCol = 0; int i; /* for() loop iterator variable */ int bRbuRowid = 0; /* If input table has column "rbu_rowid" */ int iOrder = 0; int iTnum = 0; /* Figure out the type of table this step will deal with. */ assert( pIter->eType==0 ); rbuTableType(p, pIter->zTbl, &pIter->eType, &iTnum, &pIter->iPkTnum); if( p->rc==SQLITE_OK && pIter->eType==RBU_PK_NOTABLE ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("no such table: %s", pIter->zTbl); } if( p->rc ) return p->rc; if( pIter->zIdx==0 ) pIter->iTnum = iTnum; assert( pIter->eType==RBU_PK_NONE || pIter->eType==RBU_PK_IPK || pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_WITHOUT_ROWID || pIter->eType==RBU_PK_VTAB ); /* Populate the azTblCol[] and nTblCol variables based on the columns ** of the input table. Ignore any input table columns that begin with ** "rbu_". */ p->rc = prepareFreeAndCollectError(p->dbRbu, &pStmt, &p->zErrmsg, sqlite3_mprintf("SELECT * FROM '%q'", pIter->zDataTbl) ); if( p->rc==SQLITE_OK ){ nCol = sqlite3_column_count(pStmt); rbuAllocateIterArrays(p, pIter, nCol); } for(i=0; p->rc==SQLITE_OK && irc); pIter->aiSrcOrder[pIter->nTblCol] = pIter->nTblCol; pIter->azTblCol[pIter->nTblCol++] = zCopy; } else if( 0==sqlite3_stricmp("rbu_rowid", zName) ){ bRbuRowid = 1; } } sqlite3_finalize(pStmt); pStmt = 0; if( p->rc==SQLITE_OK && rbuIsVacuum(p)==0 && bRbuRowid!=(pIter->eType==RBU_PK_VTAB || pIter->eType==RBU_PK_NONE) ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf( "table %q %s rbu_rowid column", pIter->zDataTbl, (bRbuRowid ? "may not have" : "requires") ); } /* Check that all non-HIDDEN columns in the destination table are also ** present in the input table. Populate the abTblPk[], azTblType[] and ** aiTblOrder[] arrays at the same time. */ if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pStmt, &p->zErrmsg, sqlite3_mprintf("PRAGMA table_info(%Q)", pIter->zTbl) ); } while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ const char *zName = (const char*)sqlite3_column_text(pStmt, 1); if( zName==0 ) break; /* An OOM - finalize() below returns S_NOMEM */ for(i=iOrder; inTblCol; i++){ if( 0==strcmp(zName, pIter->azTblCol[i]) ) break; } if( i==pIter->nTblCol ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("column missing from %q: %s", pIter->zDataTbl, zName ); }else{ int iPk = sqlite3_column_int(pStmt, 5); int bNotNull = sqlite3_column_int(pStmt, 3); const char *zType = (const char*)sqlite3_column_text(pStmt, 2); if( i!=iOrder ){ SWAP(int, pIter->aiSrcOrder[i], pIter->aiSrcOrder[iOrder]); SWAP(char*, pIter->azTblCol[i], pIter->azTblCol[iOrder]); } pIter->azTblType[iOrder] = rbuStrndup(zType, &p->rc); assert( iPk>=0 ); pIter->abTblPk[iOrder] = (u8)iPk; pIter->abNotNull[iOrder] = (u8)bNotNull || (iPk!=0); iOrder++; } } rbuFinalize(p, pStmt); rbuObjIterCacheIndexedCols(p, pIter); assert( pIter->eType!=RBU_PK_VTAB || pIter->abIndexed==0 ); assert( pIter->eType!=RBU_PK_VTAB || pIter->nIndex==0 ); } return p->rc; } /* ** This function constructs and returns a pointer to a nul-terminated ** string containing some SQL clause or list based on one or more of the ** column names currently stored in the pIter->azTblCol[] array. */ static char *rbuObjIterGetCollist( sqlite3rbu *p, /* RBU object */ RbuObjIter *pIter /* Object iterator for column names */ ){ char *zList = 0; const char *zSep = ""; int i; for(i=0; inTblCol; i++){ const char *z = pIter->azTblCol[i]; zList = rbuMPrintf(p, "%z%s\"%w\"", zList, zSep, z); zSep = ", "; } return zList; } /* ** Return a comma separated list of the quoted PRIMARY KEY column names, ** in order, for the current table. Before each column name, add the text ** zPre. After each column name, add the zPost text. Use zSeparator as ** the separator text (usually ", "). */ static char *rbuObjIterGetPkList( sqlite3rbu *p, /* RBU object */ RbuObjIter *pIter, /* Object iterator for column names */ const char *zPre, /* Before each quoted column name */ const char *zSeparator, /* Separator to use between columns */ const char *zPost /* After each quoted column name */ ){ int iPk = 1; char *zRet = 0; const char *zSep = ""; while( 1 ){ int i; for(i=0; inTblCol; i++){ if( (int)pIter->abTblPk[i]==iPk ){ const char *zCol = pIter->azTblCol[i]; zRet = rbuMPrintf(p, "%z%s%s\"%w\"%s", zRet, zSep, zPre, zCol, zPost); zSep = zSeparator; break; } } if( i==pIter->nTblCol ) break; iPk++; } return zRet; } /* ** This function is called as part of restarting an RBU vacuum within ** stage 1 of the process (while the *-oal file is being built) while ** updating a table (not an index). The table may be a rowid table or ** a WITHOUT ROWID table. It queries the target database to find the ** largest key that has already been written to the target table and ** constructs a WHERE clause that can be used to extract the remaining ** rows from the source table. For a rowid table, the WHERE clause ** is of the form: ** ** "WHERE _rowid_ > ?" ** ** and for WITHOUT ROWID tables: ** ** "WHERE (key1, key2) > (?, ?)" ** ** Instead of "?" placeholders, the actual WHERE clauses created by ** this function contain literal SQL values. */ static char *rbuVacuumTableStart( sqlite3rbu *p, /* RBU handle */ RbuObjIter *pIter, /* RBU iterator object */ int bRowid, /* True for a rowid table */ const char *zWrite /* Target table name prefix */ ){ sqlite3_stmt *pMax = 0; char *zRet = 0; if( bRowid ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pMax, &p->zErrmsg, sqlite3_mprintf( "SELECT max(_rowid_) FROM \"%s%w\"", zWrite, pIter->zTbl ) ); if( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pMax) ){ sqlite3_int64 iMax = sqlite3_column_int64(pMax, 0); zRet = rbuMPrintf(p, " WHERE _rowid_ > %lld ", iMax); } rbuFinalize(p, pMax); }else{ char *zOrder = rbuObjIterGetPkList(p, pIter, "", ", ", " DESC"); char *zSelect = rbuObjIterGetPkList(p, pIter, "quote(", "||','||", ")"); char *zList = rbuObjIterGetPkList(p, pIter, "", ", ", ""); if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pMax, &p->zErrmsg, sqlite3_mprintf( "SELECT %s FROM \"%s%w\" ORDER BY %s LIMIT 1", zSelect, zWrite, pIter->zTbl, zOrder ) ); if( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pMax) ){ const char *zVal = (const char*)sqlite3_column_text(pMax, 0); zRet = rbuMPrintf(p, " WHERE (%s) > (%s) ", zList, zVal); } rbuFinalize(p, pMax); } sqlite3_free(zOrder); sqlite3_free(zSelect); sqlite3_free(zList); } return zRet; } /* ** This function is called as part of restating an RBU vacuum when the ** current operation is writing content to an index. If possible, it ** queries the target index b-tree for the largest key already written to ** it, then composes and returns an expression that can be used in a WHERE ** clause to select the remaining required rows from the source table. ** It is only possible to return such an expression if: ** ** * The index contains no DESC columns, and ** * The last key written to the index before the operation was ** suspended does not contain any NULL values. ** ** The expression is of the form: ** ** (index-field1, index-field2, ...) > (?, ?, ...) ** ** except that the "?" placeholders are replaced with literal values. ** ** If the expression cannot be created, NULL is returned. In this case, ** the caller has to use an OFFSET clause to extract only the required ** rows from the sourct table, just as it does for an RBU update operation. */ static char *rbuVacuumIndexStart( sqlite3rbu *p, /* RBU handle */ RbuObjIter *pIter /* RBU iterator object */ ){ char *zOrder = 0; char *zLhs = 0; char *zSelect = 0; char *zVector = 0; char *zRet = 0; int bFailed = 0; const char *zSep = ""; int iCol = 0; sqlite3_stmt *pXInfo = 0; p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", pIter->zIdx) ); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int iCid = sqlite3_column_int(pXInfo, 1); const char *zCollate = (const char*)sqlite3_column_text(pXInfo, 4); const char *zCol; if( sqlite3_column_int(pXInfo, 3) ){ bFailed = 1; break; } if( iCid<0 ){ if( pIter->eType==RBU_PK_IPK ){ int i; for(i=0; pIter->abTblPk[i]==0; i++); assert( inTblCol ); zCol = pIter->azTblCol[i]; }else{ zCol = "_rowid_"; } }else{ zCol = pIter->azTblCol[iCid]; } zLhs = rbuMPrintf(p, "%z%s \"%w\" COLLATE %Q", zLhs, zSep, zCol, zCollate ); zOrder = rbuMPrintf(p, "%z%s \"rbu_imp_%d%w\" COLLATE %Q DESC", zOrder, zSep, iCol, zCol, zCollate ); zSelect = rbuMPrintf(p, "%z%s quote(\"rbu_imp_%d%w\")", zSelect, zSep, iCol, zCol ); zSep = ", "; iCol++; } rbuFinalize(p, pXInfo); if( bFailed ) goto index_start_out; if( p->rc==SQLITE_OK ){ sqlite3_stmt *pSel = 0; p->rc = prepareFreeAndCollectError(p->dbMain, &pSel, &p->zErrmsg, sqlite3_mprintf("SELECT %s FROM \"rbu_imp_%w\" ORDER BY %s LIMIT 1", zSelect, pIter->zTbl, zOrder ) ); if( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSel) ){ zSep = ""; for(iCol=0; iColnCol; iCol++){ const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol); if( zQuoted==0 ){ p->rc = SQLITE_NOMEM; }else if( zQuoted[0]=='N' ){ bFailed = 1; break; } zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted); zSep = ", "; } if( !bFailed ){ zRet = rbuMPrintf(p, "(%s) > (%s)", zLhs, zVector); } } rbuFinalize(p, pSel); } index_start_out: sqlite3_free(zOrder); sqlite3_free(zSelect); sqlite3_free(zVector); sqlite3_free(zLhs); return zRet; } /* ** This function is used to create a SELECT list (the list of SQL ** expressions that follows a SELECT keyword) for a SELECT statement ** used to read from an data_xxx or rbu_tmp_xxx table while updating the ** index object currently indicated by the iterator object passed as the ** second argument. A "PRAGMA index_xinfo = " statement is used ** to obtain the required information. ** ** If the index is of the following form: ** ** CREATE INDEX i1 ON t1(c, b COLLATE nocase); ** ** and "t1" is a table with an explicit INTEGER PRIMARY KEY column ** "ipk", the returned string is: ** ** "`c` COLLATE 'BINARY', `b` COLLATE 'NOCASE', `ipk` COLLATE 'BINARY'" ** ** As well as the returned string, three other malloc'd strings are ** returned via output parameters. As follows: ** ** pzImposterCols: ... ** pzImposterPk: ... ** pzWhere: ... */ static char *rbuObjIterGetIndexCols( sqlite3rbu *p, /* RBU object */ RbuObjIter *pIter, /* Object iterator for column names */ char **pzImposterCols, /* OUT: Columns for imposter table */ char **pzImposterPk, /* OUT: Imposter PK clause */ char **pzWhere, /* OUT: WHERE clause */ int *pnBind /* OUT: Trbul number of columns */ ){ int rc = p->rc; /* Error code */ int rc2; /* sqlite3_finalize() return code */ char *zRet = 0; /* String to return */ char *zImpCols = 0; /* String to return via *pzImposterCols */ char *zImpPK = 0; /* String to return via *pzImposterPK */ char *zWhere = 0; /* String to return via *pzWhere */ int nBind = 0; /* Value to return via *pnBind */ const char *zCom = ""; /* Set to ", " later on */ const char *zAnd = ""; /* Set to " AND " later on */ sqlite3_stmt *pXInfo = 0; /* PRAGMA index_xinfo = ? */ if( rc==SQLITE_OK ){ assert( p->zErrmsg==0 ); rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", pIter->zIdx) ); } while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int iCid = sqlite3_column_int(pXInfo, 1); int bDesc = sqlite3_column_int(pXInfo, 3); const char *zCollate = (const char*)sqlite3_column_text(pXInfo, 4); const char *zCol = 0; const char *zType; if( iCid==-2 ){ int iSeq = sqlite3_column_int(pXInfo, 0); zRet = sqlite3_mprintf("%z%s(%.*s) COLLATE %Q", zRet, zCom, pIter->aIdxCol[iSeq].nSpan, pIter->aIdxCol[iSeq].zSpan, zCollate ); zType = ""; }else { if( iCid<0 ){ /* An integer primary key. If the table has an explicit IPK, use ** its name. Otherwise, use "rbu_rowid". */ if( pIter->eType==RBU_PK_IPK ){ int i; for(i=0; pIter->abTblPk[i]==0; i++); assert( inTblCol ); zCol = pIter->azTblCol[i]; }else if( rbuIsVacuum(p) ){ zCol = "_rowid_"; }else{ zCol = "rbu_rowid"; } zType = "INTEGER"; }else{ zCol = pIter->azTblCol[iCid]; zType = pIter->azTblType[iCid]; } zRet = sqlite3_mprintf("%z%s\"%w\" COLLATE %Q", zRet, zCom,zCol,zCollate); } if( pIter->bUnique==0 || sqlite3_column_int(pXInfo, 5) ){ const char *zOrder = (bDesc ? " DESC" : ""); zImpPK = sqlite3_mprintf("%z%s\"rbu_imp_%d%w\"%s", zImpPK, zCom, nBind, zCol, zOrder ); } zImpCols = sqlite3_mprintf("%z%s\"rbu_imp_%d%w\" %s COLLATE %Q", zImpCols, zCom, nBind, zCol, zType, zCollate ); zWhere = sqlite3_mprintf( "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol ); if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM; zCom = ", "; zAnd = " AND "; nBind++; } rc2 = sqlite3_finalize(pXInfo); if( rc==SQLITE_OK ) rc = rc2; if( rc!=SQLITE_OK ){ sqlite3_free(zRet); sqlite3_free(zImpCols); sqlite3_free(zImpPK); sqlite3_free(zWhere); zRet = 0; zImpCols = 0; zImpPK = 0; zWhere = 0; p->rc = rc; } *pzImposterCols = zImpCols; *pzImposterPk = zImpPK; *pzWhere = zWhere; *pnBind = nBind; return zRet; } /* ** Assuming the current table columns are "a", "b" and "c", and the zObj ** paramter is passed "old", return a string of the form: ** ** "old.a, old.b, old.b" ** ** With the column names escaped. ** ** For tables with implicit rowids - RBU_PK_EXTERNAL and RBU_PK_NONE, append ** the text ", old._rowid_" to the returned value. */ static char *rbuObjIterGetOldlist( sqlite3rbu *p, RbuObjIter *pIter, const char *zObj ){ char *zList = 0; if( p->rc==SQLITE_OK && pIter->abIndexed ){ const char *zS = ""; int i; for(i=0; inTblCol; i++){ if( pIter->abIndexed[i] ){ const char *zCol = pIter->azTblCol[i]; zList = sqlite3_mprintf("%z%s%s.\"%w\"", zList, zS, zObj, zCol); }else{ zList = sqlite3_mprintf("%z%sNULL", zList, zS); } zS = ", "; if( zList==0 ){ p->rc = SQLITE_NOMEM; break; } } /* For a table with implicit rowids, append "old._rowid_" to the list. */ if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ zList = rbuMPrintf(p, "%z, %s._rowid_", zList, zObj); } } return zList; } /* ** Return an expression that can be used in a WHERE clause to match the ** primary key of the current table. For example, if the table is: ** ** CREATE TABLE t1(a, b, c, PRIMARY KEY(b, c)); ** ** Return the string: ** ** "b = ?1 AND c = ?2" */ static char *rbuObjIterGetWhere( sqlite3rbu *p, RbuObjIter *pIter ){ char *zList = 0; if( pIter->eType==RBU_PK_VTAB || pIter->eType==RBU_PK_NONE ){ zList = rbuMPrintf(p, "_rowid_ = ?%d", pIter->nTblCol+1); }else if( pIter->eType==RBU_PK_EXTERNAL ){ const char *zSep = ""; int i; for(i=0; inTblCol; i++){ if( pIter->abTblPk[i] ){ zList = rbuMPrintf(p, "%z%sc%d=?%d", zList, zSep, i, i+1); zSep = " AND "; } } zList = rbuMPrintf(p, "_rowid_ = (SELECT id FROM rbu_imposter2 WHERE %z)", zList ); }else{ const char *zSep = ""; int i; for(i=0; inTblCol; i++){ if( pIter->abTblPk[i] ){ const char *zCol = pIter->azTblCol[i]; zList = rbuMPrintf(p, "%z%s\"%w\"=?%d", zList, zSep, zCol, i+1); zSep = " AND "; } } } return zList; } /* ** The SELECT statement iterating through the keys for the current object ** (p->objiter.pSelect) currently points to a valid row. However, there ** is something wrong with the rbu_control value in the rbu_control value ** stored in the (p->nCol+1)'th column. Set the error code and error message ** of the RBU handle to something reflecting this. */ static void rbuBadControlError(sqlite3rbu *p){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("invalid rbu_control value"); } /* ** Return a nul-terminated string containing the comma separated list of ** assignments that should be included following the "SET" keyword of ** an UPDATE statement used to update the table object that the iterator ** passed as the second argument currently points to if the rbu_control ** column of the data_xxx table entry is set to zMask. ** ** The memory for the returned string is obtained from sqlite3_malloc(). ** It is the responsibility of the caller to eventually free it using ** sqlite3_free(). ** ** If an OOM error is encountered when allocating space for the new ** string, an error code is left in the rbu handle passed as the first ** argument and NULL is returned. Or, if an error has already occurred ** when this function is called, NULL is returned immediately, without ** attempting the allocation or modifying the stored error code. */ static char *rbuObjIterGetSetlist( sqlite3rbu *p, RbuObjIter *pIter, const char *zMask ){ char *zList = 0; if( p->rc==SQLITE_OK ){ int i; if( (int)strlen(zMask)!=pIter->nTblCol ){ rbuBadControlError(p); }else{ const char *zSep = ""; for(i=0; inTblCol; i++){ char c = zMask[pIter->aiSrcOrder[i]]; if( c=='x' ){ zList = rbuMPrintf(p, "%z%s\"%w\"=?%d", zList, zSep, pIter->azTblCol[i], i+1 ); zSep = ", "; } else if( c=='d' ){ zList = rbuMPrintf(p, "%z%s\"%w\"=rbu_delta(\"%w\", ?%d)", zList, zSep, pIter->azTblCol[i], pIter->azTblCol[i], i+1 ); zSep = ", "; } else if( c=='f' ){ zList = rbuMPrintf(p, "%z%s\"%w\"=rbu_fossil_delta(\"%w\", ?%d)", zList, zSep, pIter->azTblCol[i], pIter->azTblCol[i], i+1 ); zSep = ", "; } } } } return zList; } /* ** Return a nul-terminated string consisting of nByte comma separated ** "?" expressions. For example, if nByte is 3, return a pointer to ** a buffer containing the string "?,?,?". ** ** The memory for the returned string is obtained from sqlite3_malloc(). ** It is the responsibility of the caller to eventually free it using ** sqlite3_free(). ** ** If an OOM error is encountered when allocating space for the new ** string, an error code is left in the rbu handle passed as the first ** argument and NULL is returned. Or, if an error has already occurred ** when this function is called, NULL is returned immediately, without ** attempting the allocation or modifying the stored error code. */ static char *rbuObjIterGetBindlist(sqlite3rbu *p, int nBind){ char *zRet = 0; sqlite3_int64 nByte = 2*(sqlite3_int64)nBind + 1; zRet = (char*)rbuMalloc(p, nByte); if( zRet ){ int i; for(i=0; izIdx==0 ); if( p->rc==SQLITE_OK ){ const char *zSep = "PRIMARY KEY("; sqlite3_stmt *pXList = 0; /* PRAGMA index_list = (pIter->zTbl) */ sqlite3_stmt *pXInfo = 0; /* PRAGMA index_xinfo = */ p->rc = prepareFreeAndCollectError(p->dbMain, &pXList, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_list = %Q", pIter->zTbl) ); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXList) ){ const char *zOrig = (const char*)sqlite3_column_text(pXList,3); if( zOrig && strcmp(zOrig, "pk")==0 ){ const char *zIdx = (const char*)sqlite3_column_text(pXList,1); if( zIdx ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx) ); } break; } } rbuFinalize(p, pXList); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ if( sqlite3_column_int(pXInfo, 5) ){ /* int iCid = sqlite3_column_int(pXInfo, 0); */ const char *zCol = (const char*)sqlite3_column_text(pXInfo, 2); const char *zDesc = sqlite3_column_int(pXInfo, 3) ? " DESC" : ""; z = rbuMPrintf(p, "%z%s\"%w\"%s", z, zSep, zCol, zDesc); zSep = ", "; } } z = rbuMPrintf(p, "%z)", z); rbuFinalize(p, pXInfo); } return z; } /* ** This function creates the second imposter table used when writing to ** a table b-tree where the table has an external primary key. If the ** iterator passed as the second argument does not currently point to ** a table (not index) with an external primary key, this function is a ** no-op. ** ** Assuming the iterator does point to a table with an external PK, this ** function creates a WITHOUT ROWID imposter table named "rbu_imposter2" ** used to access that PK index. For example, if the target table is ** declared as follows: ** ** CREATE TABLE t1(a, b TEXT, c REAL, PRIMARY KEY(b, c)); ** ** then the imposter table schema is: ** ** CREATE TABLE rbu_imposter2(c1 TEXT, c2 REAL, id INTEGER) WITHOUT ROWID; ** */ static void rbuCreateImposterTable2(sqlite3rbu *p, RbuObjIter *pIter){ if( p->rc==SQLITE_OK && pIter->eType==RBU_PK_EXTERNAL ){ int tnum = pIter->iPkTnum; /* Root page of PK index */ sqlite3_stmt *pQuery = 0; /* SELECT name ... WHERE rootpage = $tnum */ const char *zIdx = 0; /* Name of PK index */ sqlite3_stmt *pXInfo = 0; /* PRAGMA main.index_xinfo = $zIdx */ const char *zComma = ""; char *zCols = 0; /* Used to build up list of table cols */ char *zPk = 0; /* Used to build up table PK declaration */ /* Figure out the name of the primary key index for the current table. ** This is needed for the argument to "PRAGMA index_xinfo". Set ** zIdx to point to a nul-terminated string containing this name. */ p->rc = prepareAndCollectError(p->dbMain, &pQuery, &p->zErrmsg, "SELECT name FROM sqlite_schema WHERE rootpage = ?" ); if( p->rc==SQLITE_OK ){ sqlite3_bind_int(pQuery, 1, tnum); if( SQLITE_ROW==sqlite3_step(pQuery) ){ zIdx = (const char*)sqlite3_column_text(pQuery, 0); } } if( zIdx ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx) ); } rbuFinalize(p, pQuery); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int bKey = sqlite3_column_int(pXInfo, 5); if( bKey ){ int iCid = sqlite3_column_int(pXInfo, 1); int bDesc = sqlite3_column_int(pXInfo, 3); const char *zCollate = (const char*)sqlite3_column_text(pXInfo, 4); zCols = rbuMPrintf(p, "%z%sc%d %s COLLATE %Q", zCols, zComma, iCid, pIter->azTblType[iCid], zCollate ); zPk = rbuMPrintf(p, "%z%sc%d%s", zPk, zComma, iCid, bDesc?" DESC":""); zComma = ", "; } } zCols = rbuMPrintf(p, "%z, id INTEGER", zCols); rbuFinalize(p, pXInfo); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 1, tnum); rbuMPrintfExec(p, p->dbMain, "CREATE TABLE rbu_imposter2(%z, PRIMARY KEY(%z)) WITHOUT ROWID", zCols, zPk ); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 0); } } /* ** If an error has already occurred when this function is called, it ** immediately returns zero (without doing any work). Or, if an error ** occurs during the execution of this function, it sets the error code ** in the sqlite3rbu object indicated by the first argument and returns ** zero. ** ** The iterator passed as the second argument is guaranteed to point to ** a table (not an index) when this function is called. This function ** attempts to create any imposter table required to write to the main ** table b-tree of the table before returning. Non-zero is returned if ** an imposter table are created, or zero otherwise. ** ** An imposter table is required in all cases except RBU_PK_VTAB. Only ** virtual tables are written to directly. The imposter table has the ** same schema as the actual target table (less any UNIQUE constraints). ** More precisely, the "same schema" means the same columns, types, ** collation sequences. For tables that do not have an external PRIMARY ** KEY, it also means the same PRIMARY KEY declaration. */ static void rbuCreateImposterTable(sqlite3rbu *p, RbuObjIter *pIter){ if( p->rc==SQLITE_OK && pIter->eType!=RBU_PK_VTAB ){ int tnum = pIter->iTnum; const char *zComma = ""; char *zSql = 0; int iCol; sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 1); for(iCol=0; p->rc==SQLITE_OK && iColnTblCol; iCol++){ const char *zPk = ""; const char *zCol = pIter->azTblCol[iCol]; const char *zColl = 0; p->rc = sqlite3_table_column_metadata( p->dbMain, "main", pIter->zTbl, zCol, 0, &zColl, 0, 0, 0 ); if( pIter->eType==RBU_PK_IPK && pIter->abTblPk[iCol] ){ /* If the target table column is an "INTEGER PRIMARY KEY", add ** "PRIMARY KEY" to the imposter table column declaration. */ zPk = "PRIMARY KEY "; } zSql = rbuMPrintf(p, "%z%s\"%w\" %s %sCOLLATE %Q%s", zSql, zComma, zCol, pIter->azTblType[iCol], zPk, zColl, (pIter->abNotNull[iCol] ? " NOT NULL" : "") ); zComma = ", "; } if( pIter->eType==RBU_PK_WITHOUT_ROWID ){ char *zPk = rbuWithoutRowidPK(p, pIter); if( zPk ){ zSql = rbuMPrintf(p, "%z, %z", zSql, zPk); } } sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 1, tnum); rbuMPrintfExec(p, p->dbMain, "CREATE TABLE \"rbu_imp_%w\"(%z)%s", pIter->zTbl, zSql, (pIter->eType==RBU_PK_WITHOUT_ROWID ? " WITHOUT ROWID" : "") ); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 0); } } /* ** Prepare a statement used to insert rows into the "rbu_tmp_xxx" table. ** Specifically a statement of the form: ** ** INSERT INTO rbu_tmp_xxx VALUES(?, ?, ? ...); ** ** The number of bound variables is equal to the number of columns in ** the target table, plus one (for the rbu_control column), plus one more ** (for the rbu_rowid column) if the target table is an implicit IPK or ** virtual table. */ static void rbuObjIterPrepareTmpInsert( sqlite3rbu *p, RbuObjIter *pIter, const char *zCollist, const char *zRbuRowid ){ int bRbuRowid = (pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE); char *zBind = rbuObjIterGetBindlist(p, pIter->nTblCol + 1 + bRbuRowid); if( zBind ){ assert( pIter->pTmpInsert==0 ); p->rc = prepareFreeAndCollectError( p->dbRbu, &pIter->pTmpInsert, &p->zErrmsg, sqlite3_mprintf( "INSERT INTO %s.'rbu_tmp_%q'(rbu_control,%s%s) VALUES(%z)", p->zStateDb, pIter->zDataTbl, zCollist, zRbuRowid, zBind )); } } static void rbuTmpInsertFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ){ sqlite3rbu *p = sqlite3_user_data(pCtx); int rc = SQLITE_OK; int i; assert( sqlite3_value_int(apVal[0])!=0 || p->objiter.eType==RBU_PK_EXTERNAL || p->objiter.eType==RBU_PK_NONE ); if( sqlite3_value_int(apVal[0])!=0 ){ p->nPhaseOneStep += p->objiter.nIndex; } for(i=0; rc==SQLITE_OK && iobjiter.pTmpInsert, i+1, apVal[i]); } if( rc==SQLITE_OK ){ sqlite3_step(p->objiter.pTmpInsert); rc = sqlite3_reset(p->objiter.pTmpInsert); } if( rc!=SQLITE_OK ){ sqlite3_result_error_code(pCtx, rc); } } static char *rbuObjIterGetIndexWhere(sqlite3rbu *p, RbuObjIter *pIter){ sqlite3_stmt *pStmt = 0; int rc = p->rc; char *zRet = 0; assert( pIter->zIdxSql==0 && pIter->nIdxCol==0 && pIter->aIdxCol==0 ); if( rc==SQLITE_OK ){ rc = prepareAndCollectError(p->dbMain, &pStmt, &p->zErrmsg, "SELECT trim(sql) FROM sqlite_schema WHERE type='index' AND name=?" ); } if( rc==SQLITE_OK ){ int rc2; rc = sqlite3_bind_text(pStmt, 1, pIter->zIdx, -1, SQLITE_STATIC); if( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ char *zSql = (char*)sqlite3_column_text(pStmt, 0); if( zSql ){ pIter->zIdxSql = zSql = rbuStrndup(zSql, &rc); } if( zSql ){ int nParen = 0; /* Number of open parenthesis */ int i; int iIdxCol = 0; int nIdxAlloc = 0; for(i=0; zSql[i]; i++){ char c = zSql[i]; /* If necessary, grow the pIter->aIdxCol[] array */ if( iIdxCol==nIdxAlloc ){ RbuSpan *aIdxCol = (RbuSpan*)sqlite3_realloc( pIter->aIdxCol, (nIdxAlloc+16)*sizeof(RbuSpan) ); if( aIdxCol==0 ){ rc = SQLITE_NOMEM; break; } pIter->aIdxCol = aIdxCol; nIdxAlloc += 16; } if( c=='(' ){ if( nParen==0 ){ assert( iIdxCol==0 ); pIter->aIdxCol[0].zSpan = &zSql[i+1]; } nParen++; } else if( c==')' ){ nParen--; if( nParen==0 ){ int nSpan = &zSql[i] - pIter->aIdxCol[iIdxCol].zSpan; pIter->aIdxCol[iIdxCol++].nSpan = nSpan; i++; break; } }else if( c==',' && nParen==1 ){ int nSpan = &zSql[i] - pIter->aIdxCol[iIdxCol].zSpan; pIter->aIdxCol[iIdxCol++].nSpan = nSpan; pIter->aIdxCol[iIdxCol].zSpan = &zSql[i+1]; }else if( c=='"' || c=='\'' || c=='`' ){ for(i++; 1; i++){ if( zSql[i]==c ){ if( zSql[i+1]!=c ) break; i++; } } }else if( c=='[' ){ for(i++; 1; i++){ if( zSql[i]==']' ) break; } }else if( c=='-' && zSql[i+1]=='-' ){ for(i=i+2; zSql[i] && zSql[i]!='\n'; i++); if( zSql[i]=='\0' ) break; }else if( c=='/' && zSql[i+1]=='*' ){ for(i=i+2; zSql[i] && (zSql[i]!='*' || zSql[i+1]!='/'); i++); if( zSql[i]=='\0' ) break; i++; } } if( zSql[i] ){ zRet = rbuStrndup(&zSql[i], &rc); } pIter->nIdxCol = iIdxCol; } } rc2 = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ) rc = rc2; } p->rc = rc; return zRet; } /* ** Ensure that the SQLite statement handles required to update the ** target database object currently indicated by the iterator passed ** as the second argument are available. */ static int rbuObjIterPrepareAll( sqlite3rbu *p, RbuObjIter *pIter, int nOffset /* Add "LIMIT -1 OFFSET $nOffset" to SELECT */ ){ assert( pIter->bCleanup==0 ); if( pIter->pSelect==0 && rbuObjIterCacheTableInfo(p, pIter)==SQLITE_OK ){ const int tnum = pIter->iTnum; char *zCollist = 0; /* List of indexed columns */ char **pz = &p->zErrmsg; const char *zIdx = pIter->zIdx; char *zLimit = 0; if( nOffset ){ zLimit = sqlite3_mprintf(" LIMIT -1 OFFSET %d", nOffset); if( !zLimit ) p->rc = SQLITE_NOMEM; } if( zIdx ){ const char *zTbl = pIter->zTbl; char *zImposterCols = 0; /* Columns for imposter table */ char *zImposterPK = 0; /* Primary key declaration for imposter */ char *zWhere = 0; /* WHERE clause on PK columns */ char *zBind = 0; char *zPart = 0; int nBind = 0; assert( pIter->eType!=RBU_PK_VTAB ); zPart = rbuObjIterGetIndexWhere(p, pIter); zCollist = rbuObjIterGetIndexCols( p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind ); zBind = rbuObjIterGetBindlist(p, nBind); /* Create the imposter table used to write to this index. */ sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 1); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 1,tnum); rbuMPrintfExec(p, p->dbMain, "CREATE TABLE \"rbu_imp_%w\"( %s, PRIMARY KEY( %s ) ) WITHOUT ROWID", zTbl, zImposterCols, zImposterPK ); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 0); /* Create the statement to insert index entries */ pIter->nCol = nBind; if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError( p->dbMain, &pIter->pInsert, &p->zErrmsg, sqlite3_mprintf("INSERT INTO \"rbu_imp_%w\" VALUES(%s)", zTbl, zBind) ); } /* And to delete index entries */ if( rbuIsVacuum(p)==0 && p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError( p->dbMain, &pIter->pDelete, &p->zErrmsg, sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere) ); } /* Create the SELECT statement to read keys in sorted order */ if( p->rc==SQLITE_OK ){ char *zSql; if( rbuIsVacuum(p) ){ char *zStart = 0; if( nOffset ){ zStart = rbuVacuumIndexStart(p, pIter); if( zStart ){ sqlite3_free(zLimit); zLimit = 0; } } zSql = sqlite3_mprintf( "SELECT %s, 0 AS rbu_control FROM '%q' %s %s %s ORDER BY %s%s", zCollist, pIter->zDataTbl, zPart, (zStart ? (zPart ? "AND" : "WHERE") : ""), zStart, zCollist, zLimit ); sqlite3_free(zStart); }else if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ zSql = sqlite3_mprintf( "SELECT %s, rbu_control FROM %s.'rbu_tmp_%q' %s ORDER BY %s%s", zCollist, p->zStateDb, pIter->zDataTbl, zPart, zCollist, zLimit ); }else{ zSql = sqlite3_mprintf( "SELECT %s, rbu_control FROM %s.'rbu_tmp_%q' %s " "UNION ALL " "SELECT %s, rbu_control FROM '%q' " "%s %s typeof(rbu_control)='integer' AND rbu_control!=1 " "ORDER BY %s%s", zCollist, p->zStateDb, pIter->zDataTbl, zPart, zCollist, pIter->zDataTbl, zPart, (zPart ? "AND" : "WHERE"), zCollist, zLimit ); } if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbRbu,&pIter->pSelect,pz,zSql); }else{ sqlite3_free(zSql); } } sqlite3_free(zImposterCols); sqlite3_free(zImposterPK); sqlite3_free(zWhere); sqlite3_free(zBind); sqlite3_free(zPart); }else{ int bRbuRowid = (pIter->eType==RBU_PK_VTAB) ||(pIter->eType==RBU_PK_NONE) ||(pIter->eType==RBU_PK_EXTERNAL && rbuIsVacuum(p)); const char *zTbl = pIter->zTbl; /* Table this step applies to */ const char *zWrite; /* Imposter table name */ char *zBindings = rbuObjIterGetBindlist(p, pIter->nTblCol + bRbuRowid); char *zWhere = rbuObjIterGetWhere(p, pIter); char *zOldlist = rbuObjIterGetOldlist(p, pIter, "old"); char *zNewlist = rbuObjIterGetOldlist(p, pIter, "new"); zCollist = rbuObjIterGetCollist(p, pIter); pIter->nCol = pIter->nTblCol; /* Create the imposter table or tables (if required). */ rbuCreateImposterTable(p, pIter); rbuCreateImposterTable2(p, pIter); zWrite = (pIter->eType==RBU_PK_VTAB ? "" : "rbu_imp_"); /* Create the INSERT statement to write to the target PK b-tree */ if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz, sqlite3_mprintf( "INSERT INTO \"%s%w\"(%s%s) VALUES(%s)", zWrite, zTbl, zCollist, (bRbuRowid ? ", _rowid_" : ""), zBindings ) ); } /* Create the DELETE statement to write to the target PK b-tree. ** Because it only performs INSERT operations, this is not required for ** an rbu vacuum handle. */ if( rbuIsVacuum(p)==0 && p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pDelete, pz, sqlite3_mprintf( "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere ) ); } if( rbuIsVacuum(p)==0 && pIter->abIndexed ){ const char *zRbuRowid = ""; if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ zRbuRowid = ", rbu_rowid"; } /* Create the rbu_tmp_xxx table and the triggers to populate it. */ rbuMPrintfExec(p, p->dbRbu, "CREATE TABLE IF NOT EXISTS %s.'rbu_tmp_%q' AS " "SELECT *%s FROM '%q' WHERE 0;" , p->zStateDb, pIter->zDataTbl , (pIter->eType==RBU_PK_EXTERNAL ? ", 0 AS rbu_rowid" : "") , pIter->zDataTbl ); rbuMPrintfExec(p, p->dbMain, "CREATE TEMP TRIGGER rbu_delete_tr BEFORE DELETE ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(3, %s);" "END;" "CREATE TEMP TRIGGER rbu_update1_tr BEFORE UPDATE ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(3, %s);" "END;" "CREATE TEMP TRIGGER rbu_update2_tr AFTER UPDATE ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(4, %s);" "END;", zWrite, zTbl, zOldlist, zWrite, zTbl, zOldlist, zWrite, zTbl, zNewlist ); if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ rbuMPrintfExec(p, p->dbMain, "CREATE TEMP TRIGGER rbu_insert_tr AFTER INSERT ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(0, %s);" "END;", zWrite, zTbl, zNewlist ); } rbuObjIterPrepareTmpInsert(p, pIter, zCollist, zRbuRowid); } /* Create the SELECT statement to read keys from data_xxx */ if( p->rc==SQLITE_OK ){ const char *zRbuRowid = ""; char *zStart = 0; char *zOrder = 0; if( bRbuRowid ){ zRbuRowid = rbuIsVacuum(p) ? ",_rowid_ " : ",rbu_rowid"; } if( rbuIsVacuum(p) ){ if( nOffset ){ zStart = rbuVacuumTableStart(p, pIter, bRbuRowid, zWrite); if( zStart ){ sqlite3_free(zLimit); zLimit = 0; } } if( bRbuRowid ){ zOrder = rbuMPrintf(p, "_rowid_"); }else{ zOrder = rbuObjIterGetPkList(p, pIter, "", ", ", ""); } } if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz, sqlite3_mprintf( "SELECT %s,%s rbu_control%s FROM '%q'%s %s %s %s", zCollist, (rbuIsVacuum(p) ? "0 AS " : ""), zRbuRowid, pIter->zDataTbl, (zStart ? zStart : ""), (zOrder ? "ORDER BY" : ""), zOrder, zLimit ) ); } sqlite3_free(zStart); sqlite3_free(zOrder); } sqlite3_free(zWhere); sqlite3_free(zOldlist); sqlite3_free(zNewlist); sqlite3_free(zBindings); } sqlite3_free(zCollist); sqlite3_free(zLimit); } return p->rc; } /* ** Set output variable *ppStmt to point to an UPDATE statement that may ** be used to update the imposter table for the main table b-tree of the ** table object that pIter currently points to, assuming that the ** rbu_control column of the data_xyz table contains zMask. ** ** If the zMask string does not specify any columns to update, then this ** is not an error. Output variable *ppStmt is set to NULL in this case. */ static int rbuGetUpdateStmt( sqlite3rbu *p, /* RBU handle */ RbuObjIter *pIter, /* Object iterator */ const char *zMask, /* rbu_control value ('x.x.') */ sqlite3_stmt **ppStmt /* OUT: UPDATE statement handle */ ){ RbuUpdateStmt **pp; RbuUpdateStmt *pUp = 0; int nUp = 0; /* In case an error occurs */ *ppStmt = 0; /* Search for an existing statement. If one is found, shift it to the front ** of the LRU queue and return immediately. Otherwise, leave nUp pointing ** to the number of statements currently in the cache and pUp to the ** last object in the list. */ for(pp=&pIter->pRbuUpdate; *pp; pp=&((*pp)->pNext)){ pUp = *pp; if( strcmp(pUp->zMask, zMask)==0 ){ *pp = pUp->pNext; pUp->pNext = pIter->pRbuUpdate; pIter->pRbuUpdate = pUp; *ppStmt = pUp->pUpdate; return SQLITE_OK; } nUp++; } assert( pUp==0 || pUp->pNext==0 ); if( nUp>=SQLITE_RBU_UPDATE_CACHESIZE ){ for(pp=&pIter->pRbuUpdate; *pp!=pUp; pp=&((*pp)->pNext)); *pp = 0; sqlite3_finalize(pUp->pUpdate); pUp->pUpdate = 0; }else{ pUp = (RbuUpdateStmt*)rbuMalloc(p, sizeof(RbuUpdateStmt)+pIter->nTblCol+1); } if( pUp ){ char *zWhere = rbuObjIterGetWhere(p, pIter); char *zSet = rbuObjIterGetSetlist(p, pIter, zMask); char *zUpdate = 0; pUp->zMask = (char*)&pUp[1]; memcpy(pUp->zMask, zMask, pIter->nTblCol); pUp->pNext = pIter->pRbuUpdate; pIter->pRbuUpdate = pUp; if( zSet ){ const char *zPrefix = ""; if( pIter->eType!=RBU_PK_VTAB ) zPrefix = "rbu_imp_"; zUpdate = sqlite3_mprintf("UPDATE \"%s%w\" SET %s WHERE %s", zPrefix, pIter->zTbl, zSet, zWhere ); p->rc = prepareFreeAndCollectError( p->dbMain, &pUp->pUpdate, &p->zErrmsg, zUpdate ); *ppStmt = pUp->pUpdate; } sqlite3_free(zWhere); sqlite3_free(zSet); } return p->rc; } static sqlite3 *rbuOpenDbhandle( sqlite3rbu *p, const char *zName, int bUseVfs ){ sqlite3 *db = 0; if( p->rc==SQLITE_OK ){ const int flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_URI; p->rc = sqlite3_open_v2(zName, &db, flags, bUseVfs ? p->zVfsName : 0); if( p->rc ){ p->zErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); sqlite3_close(db); db = 0; } } return db; } /* ** Free an RbuState object allocated by rbuLoadState(). */ static void rbuFreeState(RbuState *p){ if( p ){ sqlite3_free(p->zTbl); sqlite3_free(p->zDataTbl); sqlite3_free(p->zIdx); sqlite3_free(p); } } /* ** Allocate an RbuState object and load the contents of the rbu_state ** table into it. Return a pointer to the new object. It is the ** responsibility of the caller to eventually free the object using ** sqlite3_free(). ** ** If an error occurs, leave an error code and message in the rbu handle ** and return NULL. */ static RbuState *rbuLoadState(sqlite3rbu *p){ RbuState *pRet = 0; sqlite3_stmt *pStmt = 0; int rc; int rc2; pRet = (RbuState*)rbuMalloc(p, sizeof(RbuState)); if( pRet==0 ) return 0; rc = prepareFreeAndCollectError(p->dbRbu, &pStmt, &p->zErrmsg, sqlite3_mprintf("SELECT k, v FROM %s.rbu_state", p->zStateDb) ); while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ switch( sqlite3_column_int(pStmt, 0) ){ case RBU_STATE_STAGE: pRet->eStage = sqlite3_column_int(pStmt, 1); if( pRet->eStage!=RBU_STAGE_OAL && pRet->eStage!=RBU_STAGE_MOVE && pRet->eStage!=RBU_STAGE_CKPT ){ p->rc = SQLITE_CORRUPT; } break; case RBU_STATE_TBL: pRet->zTbl = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc); break; case RBU_STATE_IDX: pRet->zIdx = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc); break; case RBU_STATE_ROW: pRet->nRow = sqlite3_column_int(pStmt, 1); break; case RBU_STATE_PROGRESS: pRet->nProgress = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_CKPT: pRet->iWalCksum = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_COOKIE: pRet->iCookie = (u32)sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_OALSZ: pRet->iOalSz = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_PHASEONESTEP: pRet->nPhaseOneStep = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_DATATBL: pRet->zDataTbl = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc); break; default: rc = SQLITE_CORRUPT; break; } } rc2 = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ) rc = rc2; p->rc = rc; return pRet; } /* ** Open the database handle and attach the RBU database as "rbu". If an ** error occurs, leave an error code and message in the RBU handle. ** ** If argument dbMain is not NULL, then it is a database handle already ** open on the target database. Use this handle instead of opening a new ** one. */ static void rbuOpenDatabase(sqlite3rbu *p, sqlite3 *dbMain, int *pbRetry){ assert( p->rc || (p->dbMain==0 && p->dbRbu==0) ); assert( p->rc || rbuIsVacuum(p) || p->zTarget!=0 ); assert( dbMain==0 || rbuIsVacuum(p)==0 ); /* Open the RBU database */ p->dbRbu = rbuOpenDbhandle(p, p->zRbu, 1); p->dbMain = dbMain; if( p->rc==SQLITE_OK && rbuIsVacuum(p) ){ sqlite3_file_control(p->dbRbu, "main", SQLITE_FCNTL_RBUCNT, (void*)p); if( p->zState==0 ){ const char *zFile = sqlite3_db_filename(p->dbRbu, "main"); p->zState = rbuMPrintf(p, "file://%s-vacuum?modeof=%s", zFile, zFile); } } /* If using separate RBU and state databases, attach the state database to ** the RBU db handle now. */ if( p->zState ){ rbuMPrintfExec(p, p->dbRbu, "ATTACH %Q AS stat", p->zState); memcpy(p->zStateDb, "stat", 4); }else{ memcpy(p->zStateDb, "main", 4); } #if 0 if( p->rc==SQLITE_OK && rbuIsVacuum(p) ){ p->rc = sqlite3_exec(p->dbRbu, "BEGIN", 0, 0, 0); } #endif /* If it has not already been created, create the rbu_state table */ rbuMPrintfExec(p, p->dbRbu, RBU_CREATE_STATE, p->zStateDb); #if 0 if( rbuIsVacuum(p) ){ if( p->rc==SQLITE_OK ){ int rc2; int bOk = 0; sqlite3_stmt *pCnt = 0; p->rc = prepareAndCollectError(p->dbRbu, &pCnt, &p->zErrmsg, "SELECT count(*) FROM stat.sqlite_schema" ); if( p->rc==SQLITE_OK && sqlite3_step(pCnt)==SQLITE_ROW && 1==sqlite3_column_int(pCnt, 0) ){ bOk = 1; } rc2 = sqlite3_finalize(pCnt); if( p->rc==SQLITE_OK ) p->rc = rc2; if( p->rc==SQLITE_OK && bOk==0 ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("invalid state database"); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_exec(p->dbRbu, "COMMIT", 0, 0, 0); } } } #endif if( p->rc==SQLITE_OK && rbuIsVacuum(p) ){ int bOpen = 0; int rc; p->nRbu = 0; p->pRbuFd = 0; rc = sqlite3_file_control(p->dbRbu, "main", SQLITE_FCNTL_RBUCNT, (void*)p); if( rc!=SQLITE_NOTFOUND ) p->rc = rc; if( p->eStage>=RBU_STAGE_MOVE ){ bOpen = 1; }else{ RbuState *pState = rbuLoadState(p); if( pState ){ bOpen = (pState->eStage>=RBU_STAGE_MOVE); rbuFreeState(pState); } } if( bOpen ) p->dbMain = rbuOpenDbhandle(p, p->zRbu, p->nRbu<=1); } p->eStage = 0; if( p->rc==SQLITE_OK && p->dbMain==0 ){ if( !rbuIsVacuum(p) ){ p->dbMain = rbuOpenDbhandle(p, p->zTarget, 1); }else if( p->pRbuFd->pWalFd ){ if( pbRetry ){ p->pRbuFd->bNolock = 0; sqlite3_close(p->dbRbu); sqlite3_close(p->dbMain); p->dbMain = 0; p->dbRbu = 0; *pbRetry = 1; return; } p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("cannot vacuum wal mode database"); }else{ char *zTarget; char *zExtra = 0; if( strlen(p->zRbu)>=5 && 0==memcmp("file:", p->zRbu, 5) ){ zExtra = &p->zRbu[5]; while( *zExtra ){ if( *zExtra++=='?' ) break; } if( *zExtra=='\0' ) zExtra = 0; } zTarget = sqlite3_mprintf("file:%s-vactmp?rbu_memory=1%s%s", sqlite3_db_filename(p->dbRbu, "main"), (zExtra==0 ? "" : "&"), (zExtra==0 ? "" : zExtra) ); if( zTarget==0 ){ p->rc = SQLITE_NOMEM; return; } p->dbMain = rbuOpenDbhandle(p, zTarget, p->nRbu<=1); sqlite3_free(zTarget); } } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_create_function(p->dbMain, "rbu_tmp_insert", -1, SQLITE_UTF8, (void*)p, rbuTmpInsertFunc, 0, 0 ); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_create_function(p->dbMain, "rbu_fossil_delta", 2, SQLITE_UTF8, 0, rbuFossilDeltaFunc, 0, 0 ); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_create_function(p->dbRbu, "rbu_target_name", -1, SQLITE_UTF8, (void*)p, rbuTargetNameFunc, 0, 0 ); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_file_control(p->dbMain, "main", SQLITE_FCNTL_RBU, (void*)p); } rbuMPrintfExec(p, p->dbMain, "SELECT * FROM sqlite_schema"); /* Mark the database file just opened as an RBU target database. If ** this call returns SQLITE_NOTFOUND, then the RBU vfs is not in use. ** This is an error. */ if( p->rc==SQLITE_OK ){ p->rc = sqlite3_file_control(p->dbMain, "main", SQLITE_FCNTL_RBU, (void*)p); } if( p->rc==SQLITE_NOTFOUND ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("rbu vfs not found"); } } /* ** This routine is a copy of the sqlite3FileSuffix3() routine from the core. ** It is a no-op unless SQLITE_ENABLE_8_3_NAMES is defined. ** ** If SQLITE_ENABLE_8_3_NAMES is set at compile-time and if the database ** filename in zBaseFilename is a URI with the "8_3_names=1" parameter and ** if filename in z[] has a suffix (a.k.a. "extension") that is longer than ** three characters, then shorten the suffix on z[] to be the last three ** characters of the original suffix. ** ** If SQLITE_ENABLE_8_3_NAMES is set to 2 at compile-time, then always ** do the suffix shortening regardless of URI parameter. ** ** Examples: ** ** test.db-journal => test.nal ** test.db-wal => test.wal ** test.db-shm => test.shm ** test.db-mj7f3319fa => test.9fa */ static void rbuFileSuffix3(const char *zBase, char *z){ #ifdef SQLITE_ENABLE_8_3_NAMES #if SQLITE_ENABLE_8_3_NAMES<2 if( sqlite3_uri_boolean(zBase, "8_3_names", 0) ) #endif { int i, sz; sz = (int)strlen(z)&0xffffff; for(i=sz-1; i>0 && z[i]!='/' && z[i]!='.'; i--){} if( z[i]=='.' && sz>i+4 ) memmove(&z[i+1], &z[sz-3], 4); } #endif } /* ** Return the current wal-index header checksum for the target database ** as a 64-bit integer. ** ** The checksum is store in the first page of xShmMap memory as an 8-byte ** blob starting at byte offset 40. */ static i64 rbuShmChecksum(sqlite3rbu *p){ i64 iRet = 0; if( p->rc==SQLITE_OK ){ sqlite3_file *pDb = p->pTargetFd->pReal; u32 volatile *ptr; p->rc = pDb->pMethods->xShmMap(pDb, 0, 32*1024, 0, (void volatile**)&ptr); if( p->rc==SQLITE_OK ){ iRet = ((i64)ptr[10] << 32) + ptr[11]; } } return iRet; } /* ** This function is called as part of initializing or reinitializing an ** incremental checkpoint. ** ** It populates the sqlite3rbu.aFrame[] array with the set of ** (wal frame -> db page) copy operations required to checkpoint the ** current wal file, and obtains the set of shm locks required to safely ** perform the copy operations directly on the file-system. ** ** If argument pState is not NULL, then the incremental checkpoint is ** being resumed. In this case, if the checksum of the wal-index-header ** following recovery is not the same as the checksum saved in the RbuState ** object, then the rbu handle is set to DONE state. This occurs if some ** other client appends a transaction to the wal file in the middle of ** an incremental checkpoint. */ static void rbuSetupCheckpoint(sqlite3rbu *p, RbuState *pState){ /* If pState is NULL, then the wal file may not have been opened and ** recovered. Running a read-statement here to ensure that doing so ** does not interfere with the "capture" process below. */ if( pState==0 ){ p->eStage = 0; if( p->rc==SQLITE_OK ){ p->rc = sqlite3_exec(p->dbMain, "SELECT * FROM sqlite_schema", 0, 0, 0); } } /* Assuming no error has occurred, run a "restart" checkpoint with the ** sqlite3rbu.eStage variable set to CAPTURE. This turns on the following ** special behaviour in the rbu VFS: ** ** * If the exclusive shm WRITER or READ0 lock cannot be obtained, ** the checkpoint fails with SQLITE_BUSY (normally SQLite would ** proceed with running a passive checkpoint instead of failing). ** ** * Attempts to read from the *-wal file or write to the database file ** do not perform any IO. Instead, the frame/page combinations that ** would be read/written are recorded in the sqlite3rbu.aFrame[] ** array. ** ** * Calls to xShmLock(UNLOCK) to release the exclusive shm WRITER, ** READ0 and CHECKPOINT locks taken as part of the checkpoint are ** no-ops. These locks will not be released until the connection ** is closed. ** ** * Attempting to xSync() the database file causes an SQLITE_INTERNAL ** error. ** ** As a result, unless an error (i.e. OOM or SQLITE_BUSY) occurs, the ** checkpoint below fails with SQLITE_INTERNAL, and leaves the aFrame[] ** array populated with a set of (frame -> page) mappings. Because the ** WRITER, CHECKPOINT and READ0 locks are still held, it is safe to copy ** data from the wal file into the database file according to the ** contents of aFrame[]. */ if( p->rc==SQLITE_OK ){ int rc2; p->eStage = RBU_STAGE_CAPTURE; rc2 = sqlite3_exec(p->dbMain, "PRAGMA main.wal_checkpoint=restart", 0, 0,0); if( rc2!=SQLITE_INTERNAL ) p->rc = rc2; } if( p->rc==SQLITE_OK && p->nFrame>0 ){ p->eStage = RBU_STAGE_CKPT; p->nStep = (pState ? pState->nRow : 0); p->aBuf = rbuMalloc(p, p->pgsz); p->iWalCksum = rbuShmChecksum(p); } if( p->rc==SQLITE_OK ){ if( p->nFrame==0 || (pState && pState->iWalCksum!=p->iWalCksum) ){ p->rc = SQLITE_DONE; p->eStage = RBU_STAGE_DONE; }else{ int nSectorSize; sqlite3_file *pDb = p->pTargetFd->pReal; sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal; assert( p->nPagePerSector==0 ); nSectorSize = pDb->pMethods->xSectorSize(pDb); if( nSectorSize>p->pgsz ){ p->nPagePerSector = nSectorSize / p->pgsz; }else{ p->nPagePerSector = 1; } /* Call xSync() on the wal file. This causes SQLite to sync the ** directory in which the target database and the wal file reside, in ** case it has not been synced since the rename() call in ** rbuMoveOalFile(). */ p->rc = pWal->pMethods->xSync(pWal, SQLITE_SYNC_NORMAL); } } } /* ** Called when iAmt bytes are read from offset iOff of the wal file while ** the rbu object is in capture mode. Record the frame number of the frame ** being read in the aFrame[] array. */ static int rbuCaptureWalRead(sqlite3rbu *pRbu, i64 iOff, int iAmt){ const u32 mReq = (1<mLock!=mReq ){ pRbu->rc = SQLITE_BUSY; return SQLITE_INTERNAL; } pRbu->pgsz = iAmt; if( pRbu->nFrame==pRbu->nFrameAlloc ){ int nNew = (pRbu->nFrameAlloc ? pRbu->nFrameAlloc : 64) * 2; RbuFrame *aNew; aNew = (RbuFrame*)sqlite3_realloc64(pRbu->aFrame, nNew * sizeof(RbuFrame)); if( aNew==0 ) return SQLITE_NOMEM; pRbu->aFrame = aNew; pRbu->nFrameAlloc = nNew; } iFrame = (u32)((iOff-32) / (i64)(iAmt+24)) + 1; if( pRbu->iMaxFrame